diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index cd41905c..04e6f425 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,28 +1,97 @@ name: Go on: [push] + + jobs: - build: - name: Build - runs-on: ubuntu-latest + strategy: + matrix: + os: [ macos-latest, ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} + steps: + - name: Set up Go 1.14 + uses: actions/setup-go@v1 + with: + go-version: 1.14 + id: go - - name: Set up Go 1.13 - uses: actions/setup-go@v1 - with: - go-version: 1.13 - id: go + - name: Check out code into the Go module directory + uses: actions/checkout@v2 - - name: Check out code into the Go module directory - uses: actions/checkout@v2 + - name: Get dependencies + run: | + go get -v -t -d ./... - - name: Get dependencies - run: | - go get -v -t -d ./... - if [ -f Gopkg.toml ]; then - curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh - dep ensure - fi + - name: Build + run: go build -v . - - name: Build - run: go build -v . + + +# +# +# build-macos: +# name: Build macOS +# runs-on: macos-latest +# +# steps: +# - name: Set up Go 1.14 +# uses: actions/setup-go@v1 +# with: +# go-version: 1.14 +# id: go +# +# - name: Check out code into the Go module directory +# uses: actions/checkout@v2 +# +# - name: Get dependencies +# run: | +# go get -v -t -d ./... +# +# - name: Build +# run: go build -v . +# +# +# build-linux: +# name: Build Linux +# runs-on: ubuntu-latest +# +# steps: +# - name: Set up Go 1.14 +# uses: actions/setup-go@v1 +# with: +# go-version: 1.14 +# id: go +# +# - name: Check out code into the Go module directory +# uses: actions/checkout@v2 +# +# - name: Get dependencies +# run: | +# go get -v -t -d ./... +# +# - name: Build +# run: go build -v . +# +# build-windows: +# name: Build Windows +# runs-on: windows-latest +# +# steps: +# - name: Set up Go 1.14 +# uses: actions/setup-go@v1 +# with: +# go-version: 1.14 +# id: go +# +# - name: Check out code into the Go module directory +# uses: actions/checkout@v2 +# +# - name: Get dependencies +# run: | +# go get -v -t -d ./... +# +# - name: Build +# run: go build -v . +# diff --git a/.gitignore b/.gitignore index 1cad72a9..ed13187f 100644 --- a/.gitignore +++ b/.gitignore @@ -23,18 +23,21 @@ _testmain.go *.test *.prof +.DS_Store + /.idea -/misc -/build -/bin -/grammar/*.go -/grammar/*.tokens -/test/grun/java/* -/sq.yml -/sq.log -/xlsx/~$test.xlsx -"sq" +/grammar/build +*/~test$* /dist +/projectFilesBackup +/*.iml +/.swp +/sq +/demo +/scratch +# Some apps create temp files when editing, e.g. Excel with drivers/xlsx/testdata/~$test_header.xlsx +**/testdata/~* - +gorelease-snapshot.sh +magefile_local.go diff --git a/.golangci.yml b/.golangci.yml new file mode 100644 index 00000000..63b016dc --- /dev/null +++ b/.golangci.yml @@ -0,0 +1,134 @@ +linters-settings: + depguard: + list-type: blacklist + packages: + # logging is allowed only by logutils.Log, logrus + # is allowed to use only in logutils package +# - github.com/sirupsen/logrus + packages-with-error-message: +# - github.com/sirupsen/logrus: "logging is allowed only by logutils.Log" + dupl: + threshold: 100 + funlen: + lines: 200 + statements: 100 + goconst: + min-len: 2 + min-occurrences: 3 + gocritic: + enabled-tags: + - diagnostic + - experimental + - opinionated + - performance + - style + disabled-checks: + - dupImport # https://github.com/go-critic/go-critic/issues/845 + - ifElseChain + - octalLiteral + - whyNoLint + - wrapperFunc + gocognit: + # minimal code complexity to report, 30 by default (but we recommend 10-20) + min-complexity: 36 + gocyclo: + min-complexity: 36 + goimports: +# local-prefixes: github.com/golangci/golangci-lint + golint: + min-confidence: 0 + gomnd: + settings: + mnd: + # don't include the "operation" and "assign" + checks: argument,case,condition,return + govet: + check-shadowing: true + settings: + printf: + funcs: + - (github.com/neilotoole/lg.Log).Debugf + - (github.com/neilotoole/lg.Log).Warnf + - (github.com/neilotoole/lg.Log).Errorf + lll: + line-length: 180 + maligned: + suggest-new: true + misspell: + locale: US + +linters: + # please, do not use `enable-all`: it's deprecated and will be removed soon. + # inverted configuration with `enable-all` and `disable` is not scalable during updates of golangci-lint + disable-all: true + enable: + - bodyclose + - deadcode + - depguard + - dogsled + - dupl + - errcheck + - funlen + - gochecknoinits + - goconst + - gocritic + - gocyclo + - gofmt + - goimports + - golint + #- gomnd + - goprintffuncname + - gosec + - gosimple + - govet + - ineffassign + - interfacer + - lll +# - misspell + - nakedret + - rowserrcheck + - scopelint + - staticcheck + - structcheck + - stylecheck + - typecheck + - unconvert + - unparam + - unused + - varcheck + - whitespace +# - gochecknoglobals + - gocognit +# - godox + - maligned + - prealloc + +issues: + # Excluding configuration per-path, per-linter, per-text and per-source + exclude-rules: + - path: _test\.go + linters: + - gomnd + - lll + - maligned + - dupl + - funlen + + - linters: + - gosec + text: "G[202]" + + +run: + skip-dirs: + - testdata +# - internal/cache +# - internal/renameio +# - internal/robustio + +# golangci.com configuration +# https://github.com/golangci/golangci/wiki/Configuration +service: + golangci-lint-version: 1.27.x # use the fixed version to not introduce new linters unexpectedly + prepare: + - echo "here I can run custom commands, but no preparation needed for this repo" \ No newline at end of file diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 00000000..0ed4753a --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,314 @@ +project_name: sq +env: + - GO111MODULE=on + - CGO_ENABLED=1 +before: + hooks: + - go version # prints the Go version used for build (can be seen when --debug flag is passed to goreleaser) + - go mod download + +builds: + - id: build_macos + ldflags: -s -w -X github.com/neilotoole/sq/cli/buildinfo.Version={{.Version}} -X github.com/neilotoole/sq/cli/buildinfo.Timestamp={{.Date}} -X github.com/neilotoole/sq/cli/buildinfo.Commit={{ .ShortCommit }} + binary: sq + env: + - CC=o64-clang + - CXX=o64-clang++ + main: ./main.go + goos: + - darwin + goarch: + - amd64 + + - id: build_linux + binary: sq + main: ./main.go + goos: + - linux + goarch: + - amd64 + # Note the additional ldflags (-linkmode etc), and the "-tags=netgo" in + # flags below. This is to build a static binary. + ldflags: -linkmode external -extldflags -static -s -w -X github.com/neilotoole/sq/cli/buildinfo.Version={{.Version}} -X github.com/neilotoole/sq/cli/buildinfo.Timestamp={{.Date}} -X github.com/neilotoole/sq/cli/buildinfo.Commit={{ .ShortCommit }} + flags: + - -tags=netgo + - -v + + + - id: build_windows + ldflags: -s -w -X github.com/neilotoole/sq/cli/buildinfo.Version={{.Version}} -X github.com/neilotoole/sq/cli/buildinfo.Timestamp={{.Date}} -X github.com/neilotoole/sq/cli/buildinfo.Commit={{ .ShortCommit }} + binary: sq + env: + - CC=x86_64-w64-mingw32-gcc + - CXX=x86_64-w64-mingw32-g++ + main: ./main.go + goos: + - windows + goarch: + - amd64 + +# +#archives: +# - id: sq_macos_archive +# builds: +# - build_macos +# name_template: "{{.ProjectName}}-{{.Version}}-{{.Os}}" +# format: tar.gz +# replacements: +# darwin: macos +# files: +# - README.md +# - LICENSE +# +# - id: sq_linux_archive +# builds: +# - build_linux +# name_template: "{{.ProjectName}}-{{.Version}}-{{.Os}}-{{.Arch}}" +# format: tar.gz +# replacements: +# files: +# - README.md +# - LICENSE +# +# - id: sq_windows_archive +# builds: +# - build_windows +# name_template: "{{.ProjectName}}-{{.Version}}-{{.Os}}-{{.Arch}}" +# format: zip +# replacements: +# files: +# - README.md +# - LICENSE + +archives: + - + builds: ['build_macos', 'build_linux', 'build_windows'] + name_template: "{{.ProjectName}}-{{.Version}}-{{.Os}}-{{.Arch}}" + format: tar.gz + files: + - README.md + - LICENSE + replacements: +# amd64: 64-bit +# 386: 32-bit + darwin: macOS +# linux: Tux + format_overrides: + - goos: windows + format: zip + + +checksum: + name_template: "{{.ProjectName}}-{{.Version}}-checksums.txt" + +snapshot: + name_template: "{{ .Version }}-snapshot" + +changelog: + skip: true + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' + - '^dev:' + - 'README' + - Merge pull request + - Merge branch + + +release: + github: + owner: neilotoole + name: sq-preview + draft: true + prerelease: auto +# +#release: +# # Repo in which the release will be created. +# # We are using neilotoole/sq-preview for now. +# github: +# owner: neilotoole +# name: sq-preview +# +# # IDs of the archives to use. Defaults to all. +# ids: +# - sq_macos_archive +# - sq_linux_archive +# - sq_windows_archive +# +# # If set to true, will not auto-publish the release. Default is false. +# draft: false +# +# # If set to auto, will mark the release as not ready for production +# # in case there is an indicator for this in the tag e.g. v1.0.0-rc1 +# # If set to true, will mark the release as not ready for production. +# # Default is false. +# prerelease: auto +# +# # You can change the name of the GitHub release. +# # Default is `{{.Tag}}` +# # name_template: "{{.ProjectName}}-v{{.Version}} {{.Env.USER}}" +# +# # You can disable this pipe in order to not upload any artifacts to +# # GitHub. Defaults to false. +# disable: false +# +# # You can add extra pre-existing files to the release. +# # The filename on the release will be the last part of the path (base). If +# # another file with the same name exists, the latest one found will be used. +# # Defaults to empty. +# extra_files: +# # - glob: ./path/to/file.txt +# # - glob: ./glob/**/to/**/file/**/* +# # - glob: ./glob/foo/to/bar/file/foobar/override_from_previous + +brews: + - + name: sq + homepage: "https://sq.io" + description: "sq is sed for structured data" + caveats: "This is a preview release of sq. Use with caution." +# ids: +# - sq_macos_archive + + github: + owner: neilotoole + name: homebrew-sq + + url_template: "https://github.com/neilotoole/sq-preview/releases/download/{{ .Tag }}/{{ .ArtifactName }}" + + commit_author: + name: neilotoole + email: neilotoole@apache.org + + folder: Formula + + test: | + system "#{bin}/sq version" + + install: | + bin.install "sq" + # Setting this will prevent goreleaser to actually try to commit the updated + # formula - instead, the formula file will be stored on the dist folder only, + # leaving the responsibility of publishing it to the user. + # If set to auto, the release will not be uploaded to the homebrew tap + # in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1 + # Default is false. + skip_upload: false + + +scoop: + # scoop is a package installer for Windows, like brew for macOS. + # For background, see https://github.com/lukesampson/scoop/wiki/Buckets + url_template: "https://github.com/neilotoole/sq-preview/releases/download/{{ .Tag }}/{{ .ArtifactName }}" + bucket: + owner: neilotoole + name: sq-preview + commit_author: + name: neilotoole + email: neilotoole@apache.org + homepage: "https://sq.io" + description: "sq is sed for structured data" + license: MIT + + +nfpms: + - + builds: ['build_linux'] + file_name_template: "{{.ProjectName}}-{{.Version}}-{{.Os}}-{{.Arch}}" + homepage: https://sq.io + description: sq is sed for structured data + maintainer: Neil O'Toole + license: MIT + vendor: Neil O'Toole + formats: + - deb + - rpm + + +snapcrafts: +# For this to work, snapcraft needs to be installed. +# On macOS, "brew install snapcraft", then "snapcraft login". + + - + # ID of the snapcraft config, must be unique. + # Defaults to "default". + id: neilotoole-sq + + builds: + - build_linux + # The name of the snap. This is optional. + # Default is project name. + name: neilotoole-sq + + +# name_template: '`{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}`' +# name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}" + name_template: "neilotoole-sq-{{ .Version }}-{{ .Os }}-{{ .Arch }}" +# name_template: "neilotoole-sq" + summary: "sq is sed for structured data" + description: | + sq is sed for structured data. See https://sq.io + grade: devel + confinement: devmode + + + # Whether to publish the snap to the snapcraft store. + # Remember you need to `snapcraft login` first. + # Defaults to false. + publish: true + license: MIT + + # A snap of type base to be used as the execution environment for this snap. + # Valid values are: + # * bare - Empty base snap; + # * core - Ubuntu Core 16; + # * core18 - Ubuntu Core 18. + # Default is empty. + base: core18 + + # Each binary built by GoReleaser is an app inside the snap. In this section + # you can declare extra details for those binaries. It is optional. + apps: + + # The name of the app must be the same name as the binary built or the snapcraft name. +# neilotoole-sq: + sq: + # Declare "home" and "network" plugs to grant access to + # the user home dir, and the network + plugs: ["home", "network"] + + # If your app requires extra permissions to work outside of its default + # confined space, declare them here. + # You can read the documentation about the available plugs and the + # things they allow: + # https://snapcraft.io/docs/reference/interfaces. +# plugs: ["home", "network", "personal-files"] + + # If you want your app to be autostarted and to always run in the + # background, you can make it a simple daemon. +# daemon: simple + + # If you any to pass args to your binary, you can add them with the + # args option. +# args: --foo + + # Bash completion snippet. More information about completion here: + # https://docs.snapcraft.io/tab-completion-for-snaps. +# completer: drumroll-completion.bash + + +#name: foo +#... +#plugs: +# config-foo: +# interface: personal-files +# read: +# - $HOME/.config/foo +# +#apps: +# foo: +# plugs: +# - config-foo +# ... diff --git a/.lnav.json b/.lnav.json new file mode 100644 index 00000000..f599ab5b --- /dev/null +++ b/.lnav.json @@ -0,0 +1,65 @@ +{ + "sq_log": { + "title": "sq", + "url": "https://sq,io", + "description": "Log format for sq", + "json": true, + "hide-extra": false, + "file-pattern": "sq.log", + "multiline": true, + "line-format": [ + { + "field": "__timestamp__", + "timestamp-format": "%H:%M:%S.%L" + }, + "\t", + { + "field": "level", + "text-transform": "uppercase" + }, + "\t", + { + "field": "caller", + "max-width": 72, + "min-width": 72, + "overflow": "dot-dot" + }, + " ", + { + "field": "msg" + } + ], + "level-field": "level", + "level": { + "error": "error", + "debug": "debug", + "warning": "warn" + }, + "highlights": { + "caller": { + "pattern": "caller", + "underline": true + } + }, + "timestamp-field": "time", + "body-field": "msg", + "value": { + "time": { + "kind": "string", + "identifier": true + }, + "level": { + "kind": "string", + "identifier": true + }, + "caller": { + "kind": "string", + "identifier": true + }, + "msg": { + "kind": "quoted", + "identifier": false + } + } + } +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 13c72100..00000000 --- a/Dockerfile +++ /dev/null @@ -1,15 +0,0 @@ -FROM golang:1.7.1 - -RUN apt-get update && apt-get install -y --no-install-recommends jq tar zip -RUN rm -rf /var/lib/apt/lists/* - -ENV GOPATH /go -ENV PATH $GOPATH/bin:/usr/local/go/bin:$PATH -RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH" - -ENV REPOPATH $GOPATH/src/github.com/neilotoole/sq -RUN mkdir -p "$REPOPATH" -ADD . "$REPOPATH" -WORKDIR $REPOPATH - -RUN make install-go-tools \ No newline at end of file diff --git a/LICENSE b/LICENSE index c76f822a..890b25dc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,21 +1,3 @@ -The MIT License (MIT) +Copyright (c) 2014-2020 Neil O'Toole -Copyright (c) 2014-2016 Neil O'Toole - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +sq is proprietary software created by Neil O'Toole. diff --git a/Makefile b/Makefile deleted file mode 100644 index ae688526..00000000 --- a/Makefile +++ /dev/null @@ -1,110 +0,0 @@ -# Makefile for sq - simple queryer for structured data -# http://github.com/neilotoole/sq - -BINARY := sq -BUILD_VERSION=0.41.7 -BUILD_TIMESTAMP := $(shell date +'%FT%T%z') - -# SOURCES is the .go files for the project, excluding test files -SOURCES := $(shell find . -name '*.go' ! -name '*_test.go' ! -path "./test/*" ! -path "./tools/*" ! -path "./build/*" ! -path "./vendor/*") -# SOURCES_NO_GENERATED is SOURCES excluding the generated parser files -SOURCES_NO_GENERATED := $(shell find . -name '*.go' ! -name '*_test.go' ! -path "./libsq/slq/*" ! -path "./test/*" ! -path "./tools/*" ! -path "./build/*" ! -path "./vendor/*") - -# LDFLAGS are compiler flags, in this case to strip the binary of unneeded stuff -LDFLAGS="-s -w" - - -default: install - - -install: $(SOURCES) imports build-assets - @go install - - -build-assets: - @mkdir -p ./build/assets - @echo $(BUILD_VERSION) > ./build/assets/build_version.txt - @echo $(BUILD_TIMESTAMP) > ./build/assets/build_timestamp.txt - @cd ./build/assets && go-bindata -pkg assets -o ../../cmd/assets/assets.go . - - -test: $(SOURCES) imports - govendor test -timeout 10s ./libsq/... - govendor test -timeout 10s ./cmd/... - - -testv: $(SOURCES) imports - govendor test -v -timeout 10s ./libsq/... - govendor test -v -timeout 10s ./cmd/... - - -clean: - rm -f ./sq # Delete the sq binary in the project root - rm -vf $(shell which sq) - rm -rf ./bin/* - rm -rf ./build/* - rm -rf ./dist/* - - -imports: - @goimports -w -srcdir ./vendor/github.com/neilotoole/sq/libsq/ ./libsq/ - @goimports -w -srcdir ./vendor/github.com/neilotoole/sq/cmd/ ./cmd/ - - -lint: - - @golint ./cmd/... - @golint ./libsq # Because we want to exclude the generated parser files from linting, we invoke go lint repeatedly (could be doing this wrong) - @golint ./libsq/ast/... - @golint ./libsq/drvr/... - @golint ./libsq/engine - @golint ./libsq/shutdown/... - @golint ./libsq/util/... - - -vet: - @go vet ./libsq/... - @go vet ./cmd/... - - -check: $(SOURCES) imports lint vet - - -install-go-tools: - go get github.com/kardianos/govendor - go get github.com/golang/lint/golint/... - go get github.com/jteeuwen/go-bindata/... - go get golang.org/x/tools/cmd/goimports/... - go get github.com/karalabe/xgo/... - - -list-src: - @echo $(SOURCES) - - -dist: clean test build-assets - xgo -go=1.7.1 -dest=./dist -ldflags=$(LDFLAGS) -targets=darwin/amd64,linux/amd64,windows/amd64 . - - mkdir -p ./dist/darwin64 - mv ./dist/sq-darwin-10.6-amd64 ./dist/darwin64/sq - tar -C ./dist/darwin64 -cvzf ./dist/darwin64/sq-$(BUILD_VERSION)-darwin64.tar.gz sq - - mkdir -p ./dist/linux64 - mv ./dist/sq-linux-amd64 ./dist/linux64/sq - tar -C ./dist/linux64 -cvzf ./dist/linux64/sq-$(BUILD_VERSION)-linux64.tar.gz sq - - mkdir -p ./dist/win64 - mv ./dist/sq-windows-4.0-amd64.exe ./dist/win64/sq.exe - zip -jr ./dist/win64/sq-$(BUILD_VERSION)-win64.zip ./dist/win64/sq.exe - - -smoke: - @./test/smoke/smoke.sh - -generate-parser: - @cd ./tools && ./gen-antlr.sh - -start-test-containers: - cd ./test/mysql && ./start.sh - cd ./test/postgres && ./start.sh - diff --git a/README.md b/README.md index 29a4dd3e..617ea343 100644 --- a/README.md +++ b/README.md @@ -1,96 +1,39 @@ -# sq: simple queryer for structured data +# sq: swiss army knife for data -`sq` is a command-line tool that provides uniform access to structured data sources. -This includes traditional SQL-style databases, or document formats such as JSON, XML, Excel etc. +`sq` is a swiss army knife for data. `sq` provides uniform access to +structured data sources like traditional SQL-style databases, +or document formats such as CSV or Excel. `sq` can perform cross-source joins, execute database-native SQL, and output to a multitude of formats including JSON, Excel, CSV, HTML markdown and XML, or output directly to a SQL database. `sq` can inspect sources to see metadata about the source structure (tables, columns, size) and has commands for frequent database operations such as copying or dropping tables. + +## Installation -``` -> sq '.user | .uid, .username, .email' -``` -```json -[ - { - "uid": 1, - "username": "neilotoole", - "email": "neilotoole@apache.org" - }, - { - "uid": 2, - "username": "ksoze", - "email": "kaiser@soze.org" - }, - { - "uid": 3, - "username": "kubla", - "email": "kubla@khan.mn" - } -] +### From source + +From the `sq` project dir: + +```shell script +> go install ``` -> `sq` defines its own query language, seen above, formally known as `SLQ`. - - -For usage information or to download the binaries, see the `sq` [manual](https://github.com/neilotoole/sq-manual/wiki). - - -## Development - -These steps are for Mac OS X (tested on El Capitan `10.11.16`). The examples assume username `ksoze`. - - -### Prerequisites -- [brew](http://brew.sh/) -- [Xcode](https://itunes.apple.com/us/app/xcode/id497799835?mt=12) dev tools. -- [jq](https://stedolan.github.io/jq/) `brew install jq 1.5` -- [Go](https://golang.org/doc/install) `brew install go 1.7.1` -- [Docker](https://docs.docker.com/docker-for-mac/) -- [Java](http://www.oracle.com/technetwork/java/javase/downloads/index.html) is required if you're working on the *SLQ* grammar. - - - -### Fork -Fork this [repo](https://github.com/neilotoole/sq), e.g. to `https://github.com/ksoze/sq`. - -Clone the forked repo and set the `upstream` remote: +The simple go install does not populate the binary with build info that +is output via the `sq version` command. To do so, use [mage](https://magefile.org/). +```shell script +> brew install mage +> mage install ``` -mkdir -p $GOPATH/src/github.com/neilotoole -cd $GOPATH/src/github.com/neilotoole -git clone https://github.com/ksoze/sq.git -cd ./sq -git remote add upstream https://github.com/neilotoole/sq.git -# verify that the remote was set -git remote -v -``` - -### Make -From `$GOPATH/src/github.com/neilotoole/sq`, run `./test.sh`. This will run `make test` -inside a docker container. -For developing locally, this sequence should get you started: +### Other installation options -``` -make install-go-tools -make start-test-containers -make test -make install -make smoke -make dist -``` - -Note that running these steps may take some time (in particular due the use of -Cgo and cross-compiling distributables). Try `sq ls`. Note that by default `sq` uses `~/.sq/sq.yml` as -its config store, and outputs debug logs to `~/.sq/sq.log`. +For homebrew, scoop, rpm etc, see the [wiki](https://github.com/neilotoole/sq-preview/wiki). -Assuming the test containers are running (`make start-test-containers`), this workflow is suggested: - -- Make your changes -- Run `make test && make install && make smoke` -## Contributing -When your changes are ready and tested, run `make dist` and a final `make smoke`. -Push the changes to your own fork, and then open a PR against the upstream repo. The PR should include a link -to the GitHub issue(s) that it addresses, and it must include the output of `make smoke`. \ No newline at end of file +## Acknowledgements + +- The [_Sakila_](https://dev.mysql.com/doc/sakila/en/) example databases were lifted from [jOOQ](https://github.com/jooq/jooq), which + in turn owe their heritage to earlier work on Sakila. +- The `sq` query language was inspired by [jq](https://stedolan.github.io/jq/). + diff --git a/cli/buildinfo/buildinfo.go b/cli/buildinfo/buildinfo.go new file mode 100644 index 00000000..c9789827 --- /dev/null +++ b/cli/buildinfo/buildinfo.go @@ -0,0 +1,13 @@ +// Package buildinfo hosts build info variables populated via ldflags. +package buildinfo + +var ( + // Version is the build version. + Version string + + // Commit is the commit hash. + Commit string + + // Timestamp is the timestamp of when the cli was built. + Timestamp string +) diff --git a/cli/cli.go b/cli/cli.go new file mode 100644 index 00000000..2fecf2e3 --- /dev/null +++ b/cli/cli.go @@ -0,0 +1,835 @@ +// Package cli implements sq's CLI. The spf13/cobra library +// is used, with some notable modifications. Although cobra +// provides excellent functionality, it has some issues. +// Most prominently, its documentation suggests reliance +// upon package-level constructs for initializing the +// command tree (bad for testing). Also, it doesn't provide support +// for context.Context: see https://github.com/spf13/cobra/pull/893 +// which has been lingering for a while at the time of writing. +// +// Thus, this cmd package deviates from cobra's suggested +// usage pattern by eliminating all pkg-level constructs +// (which makes testing easier), and also replaces cobra's +// Command.RunE func signature with a signature that accepts +// as its first argument the RunContext type. +// +// RunContext is similar to context.Context (and contains +// an instance of that), but also encapsulates injectable +// resources such as config and logging. +// +// The entry point to this pkg is the Execute function. +package cli + +import ( + "context" + "errors" + "fmt" + "io" + "os" + "path/filepath" + "strconv" + "strings" + + "github.com/fatih/color" + "github.com/mattn/go-colorable" + "github.com/mitchellh/go-homedir" + "github.com/spf13/cobra" + "github.com/spf13/pflag" + + "github.com/neilotoole/lg" + "github.com/neilotoole/lg/zaplg" + + "github.com/neilotoole/sq/cli/config" + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/cli/output/csvw" + "github.com/neilotoole/sq/cli/output/htmlw" + "github.com/neilotoole/sq/cli/output/jsonw" + "github.com/neilotoole/sq/cli/output/markdownw" + "github.com/neilotoole/sq/cli/output/raww" + "github.com/neilotoole/sq/cli/output/tablew" + "github.com/neilotoole/sq/cli/output/xlsxw" + "github.com/neilotoole/sq/cli/output/xmlw" + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/drivers/mysql" + "github.com/neilotoole/sq/drivers/postgres" + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/drivers/sqlserver" + "github.com/neilotoole/sq/drivers/userdriver" + "github.com/neilotoole/sq/drivers/userdriver/xmlud" + "github.com/neilotoole/sq/drivers/xlsx" + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// errNoMsg is a sentinel error indicating that a command +// has failed, but that no error message should be printed. +// This is useful in the case where any error information may +// already have been printed as part of the command output. +var errNoMsg = errors.New("") + +// Execute builds a RunContext using ctx and default +// settings, and invokes ExecuteWith. +func Execute(ctx context.Context, stdin *os.File, stdout, stderr io.Writer, args []string) error { + rc, err := newDefaultRunContext(ctx, stdin, stdout, stderr) + if err != nil { + printError(rc, err) + return err + } + + defer rc.Close() // ok to call rc.Close on nil rc + + return ExecuteWith(rc, args) +} + +// ExecuteWith invokes the cobra CLI framework, ultimately +// resulting in a command being executed. The caller must +// invoke rc.Close. +func ExecuteWith(rc *RunContext, args []string) error { + rc.Log.Debugf("EXECUTE: %s", strings.Join(args, " ")) + rc.Log.Debugf("Using config: %s", rc.ConfigStore.Location()) + + rootCmd := newCommandTree(rc) + + // The following is a workaround for the fact that cobra doesn't currently + // support executing the root command with arbitrary args. That is to say, + // if you execute: + // + // sq arg1 arg2 + // + // then cobra will look for a command named "arg1", and when it + // doesn't find such a command, it returns an "unknown command" + // error. + cmd, _, err := rootCmd.Find(args[1:]) + if err != nil { + // This err will be the "unknown command" error. + // cobra still returns cmd though. It should be + // the root cmd. + if cmd == nil || cmd.Name() != rootCmd.Name() { + // should never happen + panic(fmt.Sprintf("bad cobra cmd state: %v", cmd)) + } + + // If we have args [sq, arg1, arg2] the we redirect + // to the "query" command by modifying args to + // look like: [query, arg1, arg2] -- noting that SetArgs + // doesn't want the first args element. + queryCmdArgs := append([]string{"slq"}, args[1:]...) + rootCmd.SetArgs(queryCmdArgs) + } else { + if cmd.Name() == rootCmd.Name() { + // Not sure why we have two paths to this, but it appears + // that we've found the root cmd again, so again + // we redirect to "query" cmd. + + a := append([]string{"slq"}, args[1:]...) + rootCmd.SetArgs(a) + } else { + // It's just a normal command like "sq ls" or such. + + // Explicitly set the args on rootCmd as this makes + // cobra happy when this func is executed via tests. + // Haven't explored the reason why. + rootCmd.SetArgs(args[1:]) + } + } + + // Execute the rootCmd; cobra will find the appropriate + // sub-command, and ultimately execute that command. + err = rootCmd.Execute() + if err != nil { + printError(rc, err) + } + + return err +} + +// newCommandTree builds sq's command tree, returning +// the root cobra command. +func newCommandTree(rc *RunContext) (rootCmd *cobra.Command) { + rootCmd = newRootCmd() + + rootCmd.SetOut(rc.Out) + rootCmd.SetErr(rc.ErrOut) + + // The --help flag must be explicitly added to rootCmd, + // or else cobra tries to do its own (unwanted) thing. + // The behavior of cobra in this regard seems to have + // changed? This particular incantation currently does the trick. + rootCmd.Flags().Bool(flagHelp, false, "Show sq help") + helpCmd := addCmd(rc, rootCmd, newHelpCmd) + rootCmd.SetHelpCommand(helpCmd) + + addCmd(rc, rootCmd, newSLQCmd) + addCmd(rc, rootCmd, newSQLCmd) + + addCmd(rc, rootCmd, newSrcCommand) + addCmd(rc, rootCmd, newSrcAddCmd) + addCmd(rc, rootCmd, newSrcListCmd) + addCmd(rc, rootCmd, newSrcRemoveCmd) + addCmd(rc, rootCmd, newScratchCmd) + + addCmd(rc, rootCmd, newInspectCmd) + addCmd(rc, rootCmd, newPingCmd) + + addCmd(rc, rootCmd, newVersionCmd) + addCmd(rc, rootCmd, newDriversCmd) + + notifyCmd := addCmd(rc, rootCmd, newNotifyCmd) + addCmd(rc, notifyCmd, newNotifyListCmd) + addCmd(rc, notifyCmd, newNotifyRemoveCmd) + notifyAddCmd := addCmd(rc, notifyCmd, newNotifyAddCmd) + addCmd(rc, notifyAddCmd, newNotifyAddSlackCmd) + addCmd(rc, notifyAddCmd, newNotifyAddHipChatCmd) + + tblCmd := addCmd(rc, rootCmd, newTblCmd) + addCmd(rc, tblCmd, newTblCopyCmd) + addCmd(rc, tblCmd, newTblTruncateCmd) + addCmd(rc, tblCmd, newTblDropCmd) + + addCmd(rc, rootCmd, newInstallBashCompletionCmd) + addCmd(rc, rootCmd, newGenerateZshCompletionCmd) + + return rootCmd +} + +// runFunc is an expansion of cobra's RunE func that +// adds a RunContext as the first param. +type runFunc func(rc *RunContext, cmd *cobra.Command, args []string) error + +// addCmd adds the command returned by cmdFn to parentCmd. +func addCmd(rc *RunContext, parentCmd *cobra.Command, cmdFn func() (*cobra.Command, runFunc)) *cobra.Command { + cmd, fn := cmdFn() + + if cmd.Name() != "help" { + // Don't add the --help flag to the help command. + cmd.Flags().Bool(flagHelp, false, "help for "+cmd.Name()) + } + + cmd.PreRunE = func(cmd *cobra.Command, args []string) error { + rc.Cmd = cmd + rc.Args = args + err := rc.preRunE() + return err + } + + cmd.RunE = func(cmd *cobra.Command, args []string) error { + rc.Log.Debugf("sq %s [%s]", cmd.Name(), strings.Join(args, ",")) + if cmd.Flags().Changed(flagVersion) { + // Bit of a hack: flag --version on any command + // results in execVersion being invoked + return execVersion(rc, cmd, args) + } + + return fn(rc, cmd, args) + } + + // We handle the errors ourselves (rather than let cobra do it) + cmd.SilenceErrors = true + cmd.SilenceUsage = true + + parentCmd.AddCommand(cmd) + + return cmd +} + +// RunContext is a container for injectable resources passed +// to all execX funcs. The Close method should be invoked when +// the RunContext is no longer needed. +type RunContext struct { + // Context is the run's context.Context. + Context context.Context + + // Stdin typically is os.Stdin, but can be changed for testing. + Stdin *os.File + + // Out is the output destination. + // If nil, default to stdout. + Out io.Writer + + // ErrOut is the error output destination. + // If nil, default to stderr. + ErrOut io.Writer + + // Cmd is the command instance provided by cobra for + // the currently executing command. This field will + // be set before the command's runFunc is invoked. + Cmd *cobra.Command + + // Args is the arg slice supplied by cobra for + // the currently executing command. This field will + // be set before the command's runFunc is invoked. + Args []string + + // Config is the run's config. + Config *config.Config + + // ConfigStore is run's config store. + ConfigStore config.Store + + // Log is the run's logger. + Log lg.Log + + wrtr *writers + reg *driver.Registry + files *source.Files + dbases *driver.Databases + clnup *cleanup.Cleanup +} + +// newDefaultRunContext returns a RunContext configured +// with standard values for logging, config, etc. This +// effectively is the bootstrap mechanism for sq. +// +// Note: This func always returns a RunContext, even if +// an error occurs during bootstrap of the RunContext (for +// example if there's a config error). We do this to provide +// enough framework so that such an error can be logged or +// printed per the normal mechanisms if at all possible. +func newDefaultRunContext(ctx context.Context, stdin *os.File, stdout, stderr io.Writer) (*RunContext, error) { + rc := &RunContext{ + Context: ctx, + Stdin: stdin, + Out: stdout, + ErrOut: stderr, + } + + log, clnup, loggingErr := defaultLogging() + rc.Log = log + rc.clnup = clnup + + cfg, cfgStore, configErr := defaultConfig() + rc.ConfigStore = cfgStore + rc.Config = cfg + + switch { + case rc.Log == nil: + rc.Log = lg.Discard() + case rc.clnup == nil: + rc.clnup = cleanup.New() + case rc.Config == nil: + rc.Config = config.New() + } + + if configErr != nil { + // configErr is more important, return that first + return rc, configErr + } + + if loggingErr != nil { + return rc, loggingErr + } + + return rc, nil +} + +// preRunE is invoked by cobra prior to the command RunE being +// invoked. It sets up the registry, databases, writer and related +// fundamental components. +func (rc *RunContext) preRunE() error { + rc.clnup = cleanup.New() + log, cfg := rc.Log, rc.Config + + if cmdFlagChanged(rc.Cmd, flagOutput) { + fpath, _ := rc.Cmd.Flags().GetString(flagOutput) + fpath, err := filepath.Abs(fpath) + if err != nil { + return errz.Wrapf(err, "failed to get absolute path for --%s", flagOutput) + } + + f, err := os.Create(fpath) + if err != nil { + return errz.Wrapf(err, "failed to open file specified by flag --%s", flagOutput) + } + + rc.clnup.AddC(f) // Make sure the file gets closed eventually + rc.Out = f + } + + rc.wrtr = newWriters(rc.Log, rc.Cmd, rc.Config.Options, rc.Out, rc.ErrOut) + + var scratchSrcFunc driver.ScratchSrcFunc + + // scratchSrc could be nil, and that's ok + scratchSrc := cfg.Sources.Scratch() + if scratchSrc == nil { + scratchSrcFunc = sqlite3.NewScratchSource + } else { + scratchSrcFunc = func(log lg.Log, name string) (src *source.Source, clnup func() error, err error) { + return scratchSrc, nil, nil + } + } + + rc.reg = driver.NewRegistry(log) + rc.dbases = driver.NewDatabases(log, rc.reg, scratchSrcFunc) + rc.clnup.AddC(rc.dbases) + + var err error + rc.files, err = source.NewFiles(log) + if err != nil { + return err + } + rc.files.AddTypeDetectors(source.DetectMagicNumber) + + rc.reg.AddProvider(sqlite3.Type, &sqlite3.Provider{Log: log}) + rc.reg.AddProvider(postgres.Type, &postgres.Provider{Log: log}) + rc.reg.AddProvider(sqlserver.Type, &sqlserver.Provider{Log: log}) + rc.reg.AddProvider(mysql.Type, &mysql.Provider{Log: log}) + csvp := &csv.Provider{Log: log, Scratcher: rc.dbases, Files: rc.files} + rc.reg.AddProvider(csv.TypeCSV, csvp) + rc.reg.AddProvider(csv.TypeTSV, csvp) + rc.files.AddTypeDetectors(csv.DetectCSV, csv.DetectTSV) + + rc.reg.AddProvider(xlsx.Type, &xlsx.Provider{Log: log, Scratcher: rc.dbases, Files: rc.files}) + rc.files.AddTypeDetectors(xlsx.DetectXLSX) + // One day we may have more supported user driver genres. + userDriverImporters := map[string]userdriver.ImportFunc{ + xmlud.Genre: xmlud.Import, + } + + for i, userDriverDef := range cfg.Ext.UserDrivers { + userDriverDef := userDriverDef + + errs := userdriver.ValidateDriverDef(userDriverDef) + if len(errs) > 0 { + err := errz.Combine(errs...) + err = errz.Wrapf(err, "failed validation of user driver definition [%d] (%q) from config", + i, userDriverDef.Name) + return err + } + + importFn, ok := userDriverImporters[userDriverDef.Genre] + if !ok { + return errz.Errorf("unsupported genre %q for user driver %q specified via config", + userDriverDef.Genre, userDriverDef.Name) + } + + // For each user driver definition, we register a + // distinct userdriver.Provider instance. + udp := &userdriver.Provider{ + Log: log, + DriverDef: userDriverDef, + ImportFn: importFn, + Scratcher: rc.dbases, + Files: rc.files, + } + + rc.reg.AddProvider(source.Type(userDriverDef.Name), udp) + rc.files.AddTypeDetectors(udp.TypeDetectors()...) + } + + return nil +} + +// Close should be invoked to dispose of any open resources +// held by rc. If an error occurs during close and rc.Log +// is not nil, that error is logged at WARN level before +// being returned. +func (rc *RunContext) Close() error { + if rc == nil { + return nil + } + + err := rc.clnup.Run() + if err != nil && rc.Log != nil { + rc.Log.Warnf("failed to close RunContext: %v", err) + } + + return err +} + +// writers returns this run context's writers instance. +func (rc *RunContext) writers() *writers { + return rc.wrtr +} + +// registry returns rc's Registry instance. +func (rc *RunContext) registry() *driver.Registry { + return rc.reg +} + +// registry returns rc's Databases instance. +func (rc *RunContext) databases() *driver.Databases { + return rc.dbases +} + +// writers is a container for the various output writer types. +type writers struct { + fmt *output.Formatting + recordw output.RecordWriter + metaw output.MetadataWriter + srcw output.SourceWriter + notifyw output.NotificationWriter + errw output.ErrorWriter + pingw output.PingWriter +} + +func newWriters(log lg.Log, cmd *cobra.Command, opts config.Options, out, errOut io.Writer) *writers { + fm, out, errOut := getWriterFormatting(cmd, out, errOut) + + // we need to determine --header here because the writer/format + // constructor functions, e.g. table.NewRecordWriter, require it. + hasHeader := false + switch { + case cmdFlagChanged(cmd, flagHeader): + hasHeader = true + case cmdFlagChanged(cmd, flagNoHeader): + hasHeader = false + default: + // get the default --header value from config + hasHeader = opts.Header + } + + verbose := false + if cmdFlagChanged(cmd, flagVerbose) { + verbose, _ = cmd.Flags().GetBool(flagVerbose) + } + + // Package tablew has writer impls for all of the writer interfaces, + // so we use its writers as the baseline. Later we check the format + // flags and set the various writer fields depending upon which + // writers the format implements. + w := &writers{ + fmt: fm, + recordw: tablew.NewRecordWriter(out, fm, hasHeader), + metaw: tablew.NewMetadataWriter(out, fm), + srcw: tablew.NewSourceWriter(out, fm, hasHeader, verbose), + pingw: tablew.NewPingWriter(out, fm), + notifyw: tablew.NewNotifyWriter(out, fm, hasHeader), + errw: tablew.NewErrorWriter(errOut, fm), + } + + // Invoke getFormat to see if the format was specified + // via config or flag. + format := getFormat(cmd, opts) + + switch format { + default: + // No format specified, use JSON + w.recordw = jsonw.NewStdRecordWriter(out, fm) + w.metaw = jsonw.NewMetadataWriter(out, fm) + w.errw = jsonw.NewErrorWriter(log, errOut, fm) + + case config.FormatTable: + // Table is the base format, already set above, no need to do anything. + + case config.FormatTSV: + w.recordw = csvw.NewRecordWriter(out, hasHeader, csvw.Tab) + w.pingw = csvw.NewPingWriter(out, csvw.Tab) + + case config.FormatCSV: + w.recordw = csvw.NewRecordWriter(out, hasHeader, csvw.Comma) + w.pingw = csvw.NewPingWriter(out, csvw.Comma) + + case config.FormatXML: + w.recordw = xmlw.NewRecordWriter(out, fm) + + case config.FormatXLSX: + w.recordw = xlsxw.NewRecordWriter(out, hasHeader) + + case config.FormatRaw: + w.recordw = raww.NewRecordWriter(out) + + case config.FormatHTML: + w.recordw = htmlw.NewRecordWriter(out) + + case config.FormatMarkdown: + w.recordw = markdownw.NewRecordWriter(out) + + case config.FormatJSONA: + w.recordw = jsonw.NewArrayRecordWriter(out, fm) + + case config.FormatJSONL: + w.recordw = jsonw.NewObjectRecordWriter(out, fm) + } + + return w +} + +// getWriterFormatting returns a Formatting instance and +// colorable or non-colorable writers. It is permissible +// for the cmd arg to be nil. +func getWriterFormatting(cmd *cobra.Command, out, errOut io.Writer) (fm *output.Formatting, out2, errOut2 io.Writer) { + fm = output.NewFormatting() + + if cmdFlagChanged(cmd, flagPretty) { + fm.Pretty, _ = cmd.Flags().GetBool(flagPretty) + } + + // TODO: Should get this default value from config + colorize := true + + if cmdFlagChanged(cmd, flagOutput) { + // We're outputting to a file, thus no color. + colorize = false + } else if cmdFlagChanged(cmd, flagMonochrome) { + if mono, _ := cmd.Flags().GetBool(flagMonochrome); mono { + colorize = false + } + } + + if !colorize { + color.NoColor = true // TODO: shouldn't rely on package-level var + fm.EnableColor(false) + out2 = out + errOut2 = errOut + return fm, out2, errOut2 + } + + // We do want to colorize + if !isColorTerminal(out) { + // But out can't be colorized. + color.NoColor = true + fm.EnableColor(false) + out2, errOut2 = out, errOut + return fm, out2, errOut2 + } + + // out can be colorized. + color.NoColor = false + fm.EnableColor(true) + out2 = colorable.NewColorable(out.(*os.File)) + + // Check if we can colorize errOut + if isColorTerminal(errOut) { + errOut2 = colorable.NewColorable(errOut.(*os.File)) + } else { + // errOut2 can't be colorized, but since we're colorizing + // out, we'll apply the non-colorable filter to errOut. + errOut2 = colorable.NewNonColorable(errOut) + } + + return fm, out2, errOut2 +} + +func getFormat(cmd *cobra.Command, opts config.Options) config.Format { + var format config.Format + + switch { + // cascade through the format flags in low-to-high order of precedence. + case cmdFlagChanged(cmd, flagTSV): + format = config.FormatTSV + case cmdFlagChanged(cmd, flagCSV): + format = config.FormatCSV + case cmdFlagChanged(cmd, flagXLSX): + format = config.FormatXLSX + case cmdFlagChanged(cmd, flagXML): + format = config.FormatXML + case cmdFlagChanged(cmd, flagRaw): + format = config.FormatRaw + case cmdFlagChanged(cmd, flagHTML): + format = config.FormatHTML + case cmdFlagChanged(cmd, flagMarkdown): + format = config.FormatMarkdown + case cmdFlagChanged(cmd, flagTable): + format = config.FormatTable + case cmdFlagChanged(cmd, flagJSONL): + format = config.FormatJSONL + case cmdFlagChanged(cmd, flagJSONA): + format = config.FormatJSONA + case cmdFlagChanged(cmd, flagJSON): + format = config.FormatJSON + default: + // no format flag, use the config value + format = opts.Format + } + return format +} + +// defaultLogging returns a log (and its associated closer) if +// logging has been enabled via envars. +func defaultLogging() (lg.Log, *cleanup.Cleanup, error) { + truncate, _ := strconv.ParseBool(os.Getenv(envarLogTruncate)) + + logFilePath, ok := os.LookupEnv(envarLogPath) + if !ok || logFilePath == "" || strings.TrimSpace(logFilePath) == "" { + return lg.Discard(), nil, nil + } + + // Let's try to create the dir holding the logfile... if it already exists, + // then os.MkdirAll will just no-op + parent := filepath.Dir(logFilePath) + err := os.MkdirAll(parent, os.ModePerm) + if err != nil { + return lg.Discard(), nil, errz.Wrapf(err, "failed to create parent dir of log file %s", logFilePath) + } + + flag := os.O_APPEND + if truncate { + flag = os.O_TRUNC + } + + logFile, err := os.OpenFile(logFilePath, os.O_RDWR|os.O_CREATE|flag, 0666) + if err != nil { + return lg.Discard(), nil, errz.Wrapf(err, "unable to open log file %q", logFilePath) + } + clnup := cleanup.New().AddE(logFile.Close) + + log := zaplg.NewWith(logFile, "json", true, true, true, 0) + clnup.AddE(log.Sync) + + return log, clnup, nil +} + +// defaultConfig loads sq config from the default location +// (~/.config/sq/sq.yml) or the location specified in envars. +func defaultConfig() (*config.Config, config.Store, error) { + cfgDir, ok := os.LookupEnv(envarConfigDir) + if !ok { + // envar not set, let's use the default + home, err := homedir.Dir() + if err != nil { + // TODO: we should be able to run without the homedir... revisit this + return nil, nil, errz.Wrap(err, "unable to get user home dir for config purposes") + } + + cfgDir = filepath.Join(home, ".config", "sq") + } + + cfgPath := filepath.Join(cfgDir, "sq.yml") + extDir := filepath.Join(cfgDir, "ext") + cfgStore := &config.YAMLFileStore{Path: cfgPath, ExtPaths: []string{extDir}} + + if !cfgStore.FileExists() { + cfg := config.New() + return cfg, cfgStore, nil + } + + // file does exist, let's try to load it + cfg, err := cfgStore.Load() + if err != nil { + return nil, nil, err + } + + return cfg, cfgStore, nil +} + +// printError is the centralized function for printing +// and logging errors. This func has a lot of (possibly needless) +// redundancy; ultimately err will print if non-nil (even if +// rc or any of its fields are nil). +func printError(rc *RunContext, err error) { + log := lg.Discard() + if rc != nil && rc.Log != nil { + log = rc.Log + } + + if err == nil { + log.Warnf("printError called with nil error") + return + } + + if err == errNoMsg { + // errNoMsg is a sentinel err that sq doesn't want to print + return + } + + switch errz.Cause(err) { + default: + case context.Canceled: + err = errz.New("stopped") + case context.DeadlineExceeded: + err = errz.New("timeout") + } + + var cmd *cobra.Command + if rc != nil { + cmd = rc.Cmd + + cmdName := "unknown" + if cmd != nil { + cmdName = fmt.Sprintf("[cmd:%s] ", cmd.Name()) + } + log.Errorf("%s [%T] %+v", cmdName, err, err) + + wrtrs := rc.writers() + if wrtrs != nil && wrtrs.errw != nil { + // If we have an errorWriter, we print to it + // and return. + wrtrs.errw.Error(err) + return + } + + // Else we don't have an errorWriter, so we fall through + } + + // If we get this far, something went badly wrong in bootstrap + // (probably the config is corrupt). + // At this point, we could just print err to os.Stderr and be done. + // However, our philosophy is to always provide the ability + // to output errors in json if possible. So, even though cobra + // may not have initialized and our own config may be borked, we + // will still try to determine if the user wants the error + // in json, specified via flags (by directly using the pflag + // package) or via sq config's default output format. + + // getWriterFormatting works even if cmd is nil + fm, _, errOut := getWriterFormatting(cmd, os.Stdout, os.Stderr) + + if bootstrapIsFormatJSON(rc) { + // The user wants JSON, either via defaults or flags. + jw := jsonw.NewErrorWriter(log, errOut, fm) + jw.Error(err) + return + } + + // The user didn't want JSON, so we just print to stderr. + if isColorTerminal(os.Stderr) { + fm.Error.Fprintln(os.Stderr, "sq: "+err.Error()) + } else { + fmt.Fprintln(os.Stderr, "sq: "+err.Error()) + } +} + +// cmdFlagChanged returns true if cmd is non-nil and +// has the named flag and that flag been changed. +func cmdFlagChanged(cmd *cobra.Command, name string) bool { + if cmd == nil { + return false + } + + flag := cmd.Flag(name) + if flag == nil { + return false + } + + return flag.Changed +} + +// bootstrapIsFormatJSON is a last-gasp attempt to check if the user +// supplied --json=true on the command line, to determine if a +// bootstrap error (hopefully rare) should be output in JSON. +func bootstrapIsFormatJSON(rc *RunContext) bool { + // If no RunContext, assume false + if rc == nil { + return false + } + + defaultFormat := config.FormatTable + if rc.Config != nil { + defaultFormat = rc.Config.Options.Format + } + + // If args were provided, create a new flag set and check + // for the --json flag. + if len(rc.Args) > 0 { + flags := pflag.NewFlagSet("bootstrap", pflag.ContinueOnError) + + jsonFlag := flags.BoolP(flagJSON, flagJSONShort, false, flagJSONUsage) + err := flags.Parse(rc.Args) + if err != nil { + return false + } + + // No --json flag, return true if the config file default is JSON + if jsonFlag == nil { + return defaultFormat == config.FormatJSON + } + + return *jsonFlag + } + + // No args, return true if the config file default is JSON + return defaultFormat == config.FormatJSON +} diff --git a/cli/cli_test.go b/cli/cli_test.go new file mode 100644 index 00000000..fbc9f4b2 --- /dev/null +++ b/cli/cli_test.go @@ -0,0 +1,162 @@ +package cli_test + +import ( + "bytes" + "fmt" + "image/gif" + "io/ioutil" + "os" + "path/filepath" + "strings" + "testing" + + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestSmoke(t *testing.T) { + t.Parallel() + // Execute a bunch of smoke test cases. + + sqargs := func(a ...string) []string { + return append([]string{"sq"}, a...) + } + + testCases := []struct { + a []string + // errBecause, if non-empty, indicates an error is expected. + errBecause string + }{ + {a: sqargs("ls")}, + {a: sqargs("ls", "-v")}, + {a: sqargs("ls", "--help")}, + {a: sqargs("inspect"), errBecause: "no active data source"}, + {a: sqargs("inspect", "--help")}, + {a: sqargs("version")}, + {a: sqargs("--version")}, + {a: sqargs("help")}, + {a: sqargs("--help")}, + {a: sqargs("ping", "all")}, + {a: sqargs("ping", "--help")}, + {a: sqargs("ping"), errBecause: "no active data source"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(strings.Join(tc.a, "_"), func(t *testing.T) { + t.Parallel() + + rc, out, errOut := newTestRunCtx(testlg.New(t)) + err := cli.ExecuteWith(rc, tc.a) + + // We log sq's output before doing assert, because it reads + // better in testing's output that way. + if out.Len() > 0 { + t.Log(strings.TrimSuffix(out.String(), "\n")) + } + if errOut.Len() > 0 { + t.Log(strings.TrimSuffix(errOut.String(), "\n")) + } + + if tc.errBecause != "" { + assert.Error(t, err, tc.errBecause) + } else { + assert.NoError(t, err, tc.errBecause) + } + }) + } +} + +func TestCreateTblTestBytes(t *testing.T) { + th, src, _, _ := testh.NewWith(t, sakila.Pg9) + th.NoDiff(src) + + tblDef := sqlmodel.NewTableDef( + stringz.UniqTableName("test_bytes"), + []string{"col_name", "col_bytes"}, + []sqlz.Kind{sqlz.KindText, sqlz.KindBytes}, + ) + + fBytes := proj.ReadFile(fixt.GopherPath) + data := []interface{}{fixt.GopherFilename, fBytes} + + require.Equal(t, int64(1), th.CreateTable(true, src, tblDef, data)) +} + +// TestOutputRaw verifies that the raw output format works. +// We're particularly concerned that bytes output is correct. +func TestOutputRaw(t *testing.T) { + for _, handle := range sakila.SQLAll { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + // Sanity check + wantBytes := proj.ReadFile(fixt.GopherPath) + require.Equal(t, fixt.GopherSize, len(wantBytes)) + _, err := gif.Decode(bytes.NewReader(wantBytes)) + require.NoError(t, err) + + tblDef := sqlmodel.NewTableDef( + stringz.UniqTableName("test_bytes"), + []string{"col_name", "col_bytes"}, + []sqlz.Kind{sqlz.KindText, sqlz.KindBytes}, + ) + + th, src, _, _ := testh.NewWith(t, handle) + + // Create the table and insert data + insertRow := []interface{}{fixt.GopherFilename, wantBytes} + require.Equal(t, int64(1), th.CreateTable(true, src, tblDef, insertRow)) + + // 1. Query and check that libsq is returning bytes correctly. + query := fmt.Sprintf("SELECT col_bytes FROM %s WHERE col_name = '%s'", + tblDef.Name, fixt.GopherFilename) + sink, err := th.QuerySQL(src, query) + require.NoError(t, err) + + require.Equal(t, 1, len(sink.Recs)) + require.Equal(t, sqlz.KindBytes, sink.RecMeta[0].Kind()) + dbBytes := *(sink.Recs[0][0].(*[]byte)) + require.Equal(t, fixt.GopherSize, len(dbBytes)) + require.Equal(t, wantBytes, dbBytes) + + // 1. Now that we've verified libsq, we'll test cli. First + // using using --output=/path/to/file + tmpDir, err := ioutil.TempDir("", "") + require.NoError(t, err) + outputPath := filepath.Join(tmpDir, "gopher.gif") + t.Cleanup(func() { + os.RemoveAll(outputPath) + }) + + ru := newRun(t).add(*src).hush() + err = ru.exec("sql", "--raw", "--output="+outputPath, query) + require.NoError(t, err) + + outputBytes, err := ioutil.ReadFile(outputPath) + require.NoError(t, err) + require.Equal(t, fixt.GopherSize, len(outputBytes)) + _, err = gif.Decode(bytes.NewReader(outputBytes)) + require.NoError(t, err) + + // 2. Now test that stdout also gets the same data + ru = newRun(t).add(*src) + err = ru.exec("sql", "--raw", query) + require.NoError(t, err) + require.Equal(t, wantBytes, ru.out.Bytes()) + }) + } +} diff --git a/cli/cmd_add.go b/cli/cmd_add.go new file mode 100644 index 00000000..0e2795c9 --- /dev/null +++ b/cli/cmd_add.go @@ -0,0 +1,192 @@ +package cli + +import ( + "strings" + + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/options" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" +) + +func newSrcAddCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "add [--driver=TYPE] [--handle=@HANDLE] LOCATION", + Example: ` # add a Postgres source; will have generated handle @sakila_pg + sq add 'postgres://user:pass@localhost/sakila?sslmode=disable' + + # same as above, but explicitly setting flags + sq add --handle=@sakila_pg --driver=postgres 'postgres://user:pass@localhost/sakila?sslmode=disable' + + # same as above, but with short flags + sq add -h @sakila_pg --d postgres 'postgres://user:pass@localhost/sakila?sslmode=disable' + + # add a SQL Server source; will have generated handle @sakila_mssql + sq add 'sqlserver://user:pass@localhost?database=sakila' + + # add a sqlite db + sq add ./testdata/sqlite1.db + + # add an Excel spreadsheet, with options + sq add ./testdata/test1.xlsx --opts=header=true + + # add a CSV source, with options + sq add ./testdata/person.csv --opts='header=true' + + # add a CSV source from a server (will be downloaded) + sq add https://sq.io/testdata/actor.csv +`, + Short: "Add data source", + Long: `Add data source specified by LOCATION and optionally identified by @HANDLE. +The format of LOCATION varies, but is generally a DB connection string, a +file path, or a URL. + + DRIVER://USER:PASS@HOST:PORT/DBNAME + /path/to/local/file.ext + https://sq.io/data/test1.xlsx + +If flag --handle is omitted, sq will generate a handle based +on LOCATION and the source driver type. + +If flag --driver is omitted, sq will attempt to determine the +type from LOCATION via file suffix, content type, etc.. If the result +is ambiguous, specify the driver tye type via flag --driver. + +Flag --opts sets source specific options. Generally opts are relevant +to document source types (such as a CSV file). The most common +use is to specify that the document has a header row: + + sq add actor.csv --opts=header=true + +Available source driver types can be listed via "sq drivers". + +At a minimum, the following drivers are bundled: + + sqlite3 SQLite3 + postgres Postgres + sqlserver Microsoft SQL Server + xlsx Microsoft Excel XLSX + mysql MySQL + csv Comma-Separated Values + tsv Tab-Separated Values +`, + } + + cmd.Flags().StringP(flagDriver, flagDriverShort, "", flagDriverUsage) + cmd.Flags().StringP(flagSrcOptions, "", "", flagSrcOptionsUsage) + cmd.Flags().StringP(flagHandle, flagHandleShort, "", flagHandleUsage) + return cmd, execSrcAdd +} + +func execSrcAdd(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) != 1 { + return errz.Errorf(msgInvalidArgs) + } + + cfg := rc.Config + + loc := source.AbsLocation(strings.TrimSpace(args[0])) + + var err error + var typ source.Type + if cmd.Flags().Changed(flagDriver) { + val, _ := cmd.Flags().GetString(flagDriver) + typ = source.Type(strings.TrimSpace(val)) + if !rc.reg.HasProviderFor(typ) { + return errz.Errorf("unsupported source driver type %q", val) + } + } else { + typ, err = rc.files.Type(rc.Context, loc) + if err != nil { + return errz.Errorf("unable to determine source driver type: use --driver flag") + } + } + + var handle string + if cmd.Flags().Changed(flagHandle) { + handle, _ = cmd.Flags().GetString(flagHandle) + } else { + handle, err = source.SuggestHandle(typ, loc, cfg.Sources.Exists) + if err != nil { + return errz.Wrap(err, "unable to suggest a handle: use --handle flag") + } + } + + if stringz.InSlice(source.ReservedHandles(), handle) { + return errz.Errorf("handle reserved for system use: %s", handle) + } + + err = source.VerifyLegalHandle(handle) + if err != nil { + return err + } + + if cfg.Sources.Exists(handle) { + return errz.Errorf("source handle already exists: %s", handle) + } + + var opts options.Options + if cmd.Flags().Changed(flagSrcOptions) { + val, _ := cmd.Flags().GetString(flagSrcOptions) + val = strings.TrimSpace(val) + if val != "" { + opts, err = options.ParseOptions(val) + if err != nil { + return err + } + } + } + + // Special handling for SQLite, because it's a file-based SQL DB + // unlike the other SQL DBs sq supports so far. + // Both of these forms are allowed: + // + // sq add sqlite3:///path/to/sakila.db + // sq add /path/to/sakila.db + // + // The second form is particularly nice for bash completion etc. + if typ == sqlite3.Type { + if !strings.HasPrefix(loc, "sqlite3:") { + loc = "sqlite3:" + loc + } + } + + src, err := newSource(rc.Log, rc.registry(), typ, handle, loc, opts) + if err != nil { + return err + } + + err = cfg.Sources.Add(src) + if err != nil { + return err + } + + if cfg.Sources.Active() == nil { + // If no current active data source, use this one. + _, err = cfg.Sources.SetActive(src.Handle) + if err != nil { + return err + } + } + + drvr, err := rc.registry().DriverFor(src.Type) + if err != nil { + return err + } + + // TODO: should we really be pinging this src right now? + err = drvr.Ping(rc.Context, src) + if err != nil { + return errz.Wrapf(err, "failed to ping %s [%s]", src.Handle, src.RedactedLocation()) + } + + err = rc.ConfigStore.Save(rc.Config) + if err != nil { + return err + } + + return rc.writers().srcw.Source(src) +} diff --git a/cli/cmd_add_test.go b/cli/cmd_add_test.go new file mode 100644 index 00000000..c77af10f --- /dev/null +++ b/cli/cmd_add_test.go @@ -0,0 +1,85 @@ +package cli_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/drivers/mysql" + "github.com/neilotoole/sq/drivers/postgres" + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/drivers/sqlserver" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestCmdAdd(t *testing.T) { + th := testh.New(t) + + testCases := []struct { + loc string // first arg to "add" cmd + driver string // --driver flag + handle string // --handle flag + wantHandle string + wantType source.Type + wantErr bool + }{ + {loc: "", wantErr: true}, + {loc: " ", wantErr: true}, + {loc: "/", wantErr: true}, + {loc: "../../", wantErr: true}, + {loc: "does/not/exist", wantErr: true}, + {loc: "_", wantErr: true}, + {loc: ".", wantErr: true}, + {loc: "/", wantErr: true}, + {loc: "../does/not/exist.csv", wantErr: true}, + {loc: proj.Rel(sakila.PathCSVActor), handle: "@h1", wantHandle: "@h1", wantType: csv.TypeCSV}, // relative path + {loc: proj.Abs(sakila.PathCSVActor), handle: "@h1", wantHandle: "@h1", wantType: csv.TypeCSV}, // absolute path + {loc: proj.Abs(sakila.PathCSVActor), wantHandle: "@actor_csv", wantType: csv.TypeCSV}, + {loc: proj.Abs(sakila.PathCSVActor), driver: "csv", wantHandle: "@actor_csv", wantType: csv.TypeCSV}, + {loc: proj.Abs(sakila.PathCSVActor), driver: "xlsx", wantErr: true}, + // sqlite can be added both with and without the scheme "sqlite://" + {loc: "sqlite3://" + proj.Abs(sakila.PathSL3), wantHandle: "@sakila_sqlite", wantType: sqlite3.Type}, // with scheme + {loc: proj.Abs(sakila.PathSL3), wantHandle: "@sakila_sqlite", wantType: sqlite3.Type}, // without scheme, abs path + {loc: proj.Rel(sakila.PathSL3), wantHandle: "@sakila_sqlite", wantType: sqlite3.Type}, // without scheme, relative path + {loc: th.Source(sakila.Pg).Location, wantHandle: "@sakila_pg", wantType: postgres.Type}, + {loc: th.Source(sakila.MS).Location, wantHandle: "@sakila_mssql", wantType: sqlserver.Type}, + {loc: th.Source(sakila.My).Location, wantHandle: "@sakila_my", wantType: mysql.Type}, + {loc: proj.Abs(sakila.PathCSVActor), handle: source.StdinHandle, wantErr: true}, // reserved handle + {loc: proj.Abs(sakila.PathCSVActor), handle: source.ActiveHandle, wantErr: true}, // reserved handle + {loc: proj.Abs(sakila.PathCSVActor), handle: source.ScratchHandle, wantErr: true}, // reserved handle + {loc: proj.Abs(sakila.PathCSVActor), handle: source.JoinHandle, wantErr: true}, // reserved handle + } + + for _, tc := range testCases { + tc := tc + + t.Run(testh.TName(tc.wantHandle, tc.loc, tc.driver), func(t *testing.T) { + args := []string{"add", tc.loc} + if tc.handle != "" { + args = append(args, "--handle="+tc.handle) + } + if tc.driver != "" { + args = append(args, "--driver="+tc.driver) + } + + ru := newRun(t) + err := ru.exec(args...) + if tc.wantErr { + require.Error(t, err) + return + } + + require.NoError(t, err) + + // Verify that the src was actually added + gotSrc, err := ru.rc.Config.Sources.Get(tc.wantHandle) + require.NoError(t, err) + require.Equal(t, tc.wantHandle, gotSrc.Handle) + require.Equal(t, tc.wantType, gotSrc.Type) + }) + } +} diff --git a/cli/cmd_completion.go b/cli/cmd_completion.go new file mode 100644 index 00000000..deb447e1 --- /dev/null +++ b/cli/cmd_completion.go @@ -0,0 +1,109 @@ +package cli + +import ( + "os" + "runtime" + + "github.com/spf13/cobra" +) + +const bashCompletionFunc = ` + +__sq_list_sources() +{ + local sq_output out + if sq_output=$(sq ls 2>/dev/null); then + out=($(echo "${sq_output}" | awk 'NR > 1 {print $1}')) + COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) ) + fi +} + +__sq_get_resource() +{ + if [[ ${#nouns[@]} -eq 0 ]]; then + return 1 + fi + __sq_list_sources ${nouns[${#nouns[@]} -1]} + if [[ $? -eq 0 ]]; then + return 0 + fi +} + +__custom_func() { + case ${last_command} in + sq_ls | sq_src | sq_rm | sq_inspect ) + __sq_list_sources + return + ;; + *) + ;; + esac +} +` + +func newInstallBashCompletionCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "install-bash-completion", + Short: "Install bash completion script on Unix-ish systems.", + Hidden: true, + } + + return cmd, execInstallBashCompletion +} + +func execInstallBashCompletion(rc *RunContext, cmd *cobra.Command, args []string) error { + log := rc.Log + var path string + + switch runtime.GOOS { + case "windows": + log.Warnf("skipping install bash completion on windows") + return nil + case "darwin": + path = "/usr/local/etc/bash_completion.d/sq" + default: + // it's unixish + path = " /etc/bash_completion.d/sq" + } + + // TODO: only write if necessary (check for version/timestamp/checksum) + err := cmd.Root().GenBashCompletionFile(path) + if err != nil { + log.Warnf("failed to write bash completion to %q: %v", path, err) + return err + } + + return nil +} + +func newGenerateZshCompletionCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "gen-zsh-completion", + Short: "Generate zsh completion script on Unix-ish systems.", + Hidden: true, + } + return cmd, execGenerateZshCompletion +} + +func execGenerateZshCompletion(rc *RunContext, cmd *cobra.Command, args []string) error { + log := rc.Log + var path string + + switch runtime.GOOS { + case "windows": + log.Warnf("skipping install zsh completion on windows") + return nil + case "darwin": + path = "/usr/local/etc/bash_completion.d/sq" + default: + // it's unixish + path = " /etc/bash_completion.d/sq" + } + + err := cmd.Root().GenZshCompletion(os.Stdout) + if err != nil { + log.Warnf("failed to write zsh completion to %q: %v", path, err) + return err + } + return nil +} diff --git a/cli/cmd_drivers.go b/cli/cmd_drivers.go new file mode 100644 index 00000000..3127764d --- /dev/null +++ b/cli/cmd_drivers.go @@ -0,0 +1,31 @@ +package cli + +import ( + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/errz" +) + +func newDriversCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "drivers", + Short: "List available drivers", + } + + cmd.Flags().BoolP(flagJSON, flagJSONShort, false, flagJSONUsage) + cmd.Flags().BoolP(flagTable, flagTableShort, false, flagTableUsage) + cmd.Flags().BoolP(flagHeader, flagHeaderShort, false, flagHeaderUsage) + cmd.Flags().BoolP(flagNoHeader, flagNoHeaderShort, false, flagNoHeaderUsage) + cmd.Flags().BoolP(flagMonochrome, flagMonochromeShort, false, flagMonochromeUsage) + + return cmd, execDrivers +} + +func execDrivers(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) > 0 { + return errz.Errorf("invalid arguments: zero arguments expected") + } + + drvrs := rc.registry().DriversMetadata() + return rc.writers().metaw.DriverMetadata(drvrs) +} diff --git a/cli/cmd_help.go b/cli/cmd_help.go new file mode 100644 index 00000000..9777d078 --- /dev/null +++ b/cli/cmd_help.go @@ -0,0 +1,17 @@ +package cli + +import "github.com/spf13/cobra" + +func newHelpCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "help", + Short: "Show sq help", + Hidden: true, + } + + return cmd, execHelp +} + +func execHelp(rc *RunContext, cmd *cobra.Command, args []string) error { + return cmd.Root().Help() +} diff --git a/cli/cmd_inspect.go b/cli/cmd_inspect.go new file mode 100644 index 00000000..10bfa413 --- /dev/null +++ b/cli/cmd_inspect.go @@ -0,0 +1,137 @@ +package cli + +import ( + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +func newInspectCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "inspect [@HANDLE|@HANDLE.TABLE|.TABLE]", + Example: ` # inspect active data source + sq inspect + + # inspect @pg1 data source + sq inspect @pg1 + + # inspect 'tbluser' in @pg1 data source + sq inspect @pg1.tbluser + + # inspect 'tbluser' in active data source + sq inspect .tbluser + + # inspect piped data + cat data.xlsx | sq inspect`, + Short: "Inspect data source schema and stats", + Long: `Inspect a data source, including table schemata, columns, etc. +If @HANDLE is not provided, use the active data source.`, + } + + cmd.Flags().BoolP(flagJSON, flagJSONShort, false, flagJSONUsage) + cmd.Flags().BoolP(flagTable, flagTableShort, false, flagTableUsage) + cmd.Flags().Bool(flagInspectFull, false, flagInspectFullUsage) + + return cmd, execInspect +} + +func execInspect(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) > 1 { + return errz.Errorf("too many arguments") + } + + srcs := rc.Config.Sources + + var src *source.Source + var table string + var err error + + if len(args) == 0 { + // No args supplied. + + // There are two paths from here: + // - There's input on stdin, which we'll inspect, or + // - We're inspecting the active src + + // check if there's input on stdin + src, err = checkStdinSource(rc) + if err != nil { + return err + } + + if src != nil { + // We have a valid source on stdin. + + // Add the source to the set. + err = srcs.Add(src) + if err != nil { + return err + } + + // Set the stdin pipe data source as the active source, + // as it's commonly the only data source the user is acting upon. + src, err = srcs.SetActive(src.Handle) + if err != nil { + return err + } + } else { + // No source on stdin. Let's see if there's an active source. + src = srcs.Active() + if src == nil { + return errz.Errorf("no data source specified and no active data source") + } + } + } else { + // We received an argument, which can be one of these forms: + // @my1 -- inspect the named source + // @my1.tbluser -- inspect a table of the named source + // .tbluser -- inspect a table from the active source + var handle string + handle, table, err = source.ParseTableHandle(args[0]) + if err != nil { + return errz.Wrap(err, "invalid input") + } + + if handle == "" { + src = srcs.Active() + if src == nil { + return errz.Errorf("no data source specified and no active data source") + } + } else { + src, err = srcs.Get(handle) + if err != nil { + return err + } + } + } + + dbase, err := rc.databases().Open(rc.Context, src) + if err != nil { + return errz.Wrapf(err, "failed to inspect %s", src.Handle) + } + defer rc.Log.WarnIfCloseError(dbase) + + if table != "" { + var tblMeta *source.TableMetadata + tblMeta, err = dbase.TableMetadata(rc.Context, table) + if err != nil { + return err + } + + return rc.writers().metaw.TableMetadata(tblMeta) + } + + meta, err := dbase.SourceMetadata(rc.Context) + if err != nil { + return errz.Wrapf(err, "failed to read %s source metadata", src.Handle) + } + + // This is a bit hacky, but it works... if not "--full", then just zap + // the DBVars, as we usually don't want to see those + if !cmd.Flags().Changed(flagInspectFull) { + meta.DBVars = nil + } + + return rc.writers().metaw.SourceMetadata(meta) +} diff --git a/cli/cmd_inspect_test.go b/cli/cmd_inspect_test.go new file mode 100644 index 00000000..540b3605 --- /dev/null +++ b/cli/cmd_inspect_test.go @@ -0,0 +1,98 @@ +package cli_test + +import ( + "encoding/json" + "os" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/drivers/xlsx" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestCmdInspect(t *testing.T) { + th := testh.New(t) + src := th.Source(sakila.SL3) + ru := newRun(t) + + err := ru.exec("inspect") + require.Error(t, err, "should fail because no active src") + + ru = newRun(t) + ru.add(*src) // now have an active src + + err = ru.exec("inspect", "--json") + require.NoError(t, err, "should pass because there is an active src") + + md := &source.Metadata{} + require.NoError(t, json.Unmarshal(ru.out.Bytes(), md)) + require.Equal(t, sqlite3.Type, md.SourceType) + require.Equal(t, sakila.SL3, md.Handle) + require.Equal(t, src.Location, md.Location) + require.Equal(t, sakila.AllTbls, md.TableNames()) + + // Try one more source for good measure + ru = newRun(t) + src = th.Source(sakila.CSVActor) + ru.add(*src) + + err = ru.exec("inspect", "--json", src.Handle) + require.NoError(t, err) + + md = &source.Metadata{} + require.NoError(t, json.Unmarshal(ru.out.Bytes(), md)) + require.Equal(t, csv.TypeCSV, md.SourceType) + require.Equal(t, sakila.CSVActor, md.Handle) + require.Equal(t, src.Location, md.Location) + require.Equal(t, []string{source.MonotableName}, md.TableNames()) +} + +func TestCmdInspect_Stdin(t *testing.T) { + t.Parallel() + + testCases := []struct { + fpath string + wantErr bool + wantType source.Type + wantTbls []string + }{ + {fpath: proj.Abs(sakila.PathCSVActor), wantType: csv.TypeCSV, wantTbls: []string{source.MonotableName}}, + {fpath: proj.Abs(sakila.PathTSVActor), wantType: csv.TypeTSV, wantTbls: []string{source.MonotableName}}, + {fpath: proj.Abs(sakila.PathXLSX), wantType: xlsx.Type, wantTbls: sakila.AllTbls}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(testh.TName(tc.fpath), func(t *testing.T) { + testh.SkipShort(t, tc.wantType == xlsx.Type) + t.Parallel() + + f, err := os.Open(tc.fpath) + require.NoError(t, err) + ru := newRun(t) + ru.rc.Stdin = f + + err = ru.exec("inspect", "--json") + if tc.wantErr { + require.Error(t, err) + return + } + + require.NoError(t, err, "should read from stdin") + + md := &source.Metadata{} + require.NoError(t, json.Unmarshal(ru.out.Bytes(), md)) + require.Equal(t, tc.wantType, md.SourceType) + require.Equal(t, source.StdinHandle, md.Handle) + require.Equal(t, source.StdinHandle, md.Location) + require.Equal(t, tc.wantTbls, md.TableNames()) + }) + } +} diff --git a/cli/cmd_list.go b/cli/cmd_list.go new file mode 100644 index 00000000..18d8ccf2 --- /dev/null +++ b/cli/cmd_list.go @@ -0,0 +1,27 @@ +package cli + +import ( + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/errz" +) + +func newSrcListCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "ls", + Short: "List data sources", + } + + cmd.Flags().BoolP(flagVerbose, flagVerboseShort, false, flagVerboseUsage) + cmd.Flags().BoolP(flagHeader, flagHeaderShort, false, flagHeaderUsage) + cmd.Flags().BoolP(flagNoHeader, flagNoHeaderShort, false, flagNoHeaderUsage) + return cmd, execSrcList +} + +func execSrcList(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) != 0 { + return errz.Errorf(msgInvalidArgs) + } + + return rc.writers().srcw.SourceSet(rc.Config.Sources) +} diff --git a/cli/cmd_notify.go b/cli/cmd_notify.go new file mode 100644 index 00000000..f8c9f608 --- /dev/null +++ b/cli/cmd_notify.go @@ -0,0 +1,201 @@ +package cli + +import ( + "fmt" + + "strings" + + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/notify" +) + +func newNotifyCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "notify", + Hidden: true, // Not advertising this feature right now + Short: "Manage notification destinations", + Example: `sq notify ls +sq notify add slack devops [...] +sq notify rm devops +sq notify add --help`, + } + + return cmd, func(rc *RunContext, cmd *cobra.Command, args []string) error { + return cmd.Help() + } +} + +func newNotifyListCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "ls", + Aliases: []string{"list"}, + Short: "List notification destinations", + } + + return cmd, execNotifyList +} + +func execNotifyList(rc *RunContext, cmd *cobra.Command, args []string) error { + return rc.writers().notifyw.NotifyDestinations(rc.Config.Notification.Destinations) +} + +func newNotifyRemoveCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "rm", + Aliases: []string{"remove"}, + Short: "Remove notification destination", + } + + return cmd, execNotifyRemove +} + +func execNotifyRemove(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) != 1 { + return errz.Errorf("this command takes exactly one argument") + } + + cfg := rc.Config + + if len(cfg.Notification.Destinations) == 0 { + return errz.Errorf("the notification destination %q does not exist", args[0]) + } + + var dests []notify.Destination + for _, dest := range cfg.Notification.Destinations { + if dest.Label == args[0] { + continue + } + dests = append(dests, dest) + } + + if len(dests) == len(cfg.Notification.Destinations) { + return errz.Errorf("the notification destination %q does not exist", args[0]) + } + + cfg.Notification.Destinations = dests + err := rc.ConfigStore.Save(rc.Config) + if err != nil { + return err + } + + return nil +} + +func newNotifyAddCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "add", + Short: "Add notification destination", + Example: `sq notify add slack #devops xoxp-892529...911b8a +sq notify add slack --help +sq notify add hipchat myteam ABAD098ASDF...99AB +sq notify add hipchat --help +`, + } + + return cmd, nil +} + +func newNotifyAddSlackCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "slack CHANNEL [HANDLE] TOKEN", + Short: "Add Slack channel", + Long: `Add Slack channel. The CHANNEL param should not include the leading '#'. + The HANDLE param is optional; if not provided, a handle +will be generated. To generate the auth token using your browser, login to +https://TEAM.slack.com and then visit https://api.slack.com/custom-integrations/legacy-tokens +and use the "Legacy token generator" to get the token value.`, + Example: `sq notify add slack devops xoxp-892529...911b8a`, + } + + return cmd, execNotifyAddSlack +} + +func execNotifyAddSlack(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) != 2 && len(args) != 3 { + return errz.Errorf(`this command takes either 2 or 3 arguments: see "sq notify add slack --help"`) + } + + cfg := rc.Config + + labelAvailableFn := func(label string) bool { + for _, dest := range cfg.Notification.Destinations { + if dest.Label == label { + return false + } + } + return true + } + + provider, err := notify.ProviderFor("slack") + if err != nil { + return err + } + + target := args[0] + var label string + var token string + + if len(args) == 2 { + token = args[1] + } else { + label = args[1] + token = args[2] + + if !labelAvailableFn(label) { + return errz.Errorf("a notifier with the label %q already exists", label) + } + + err = notify.ValidHandle(label) + if err != nil { + return err + } + } + + dest, err := provider.Destination(notify.DestType("slack"), target, label, token, labelAvailableFn) + if err != nil { + return err + } + + cfg.Notification.Destinations = append(cfg.Notification.Destinations, *dest) + + err = rc.ConfigStore.Save(rc.Config) + if err != nil { + return err + } + + return rc.writers().notifyw.NotifyDestinations([]notify.Destination{*dest}) +} + +func newNotifyAddHipChatCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "hipchat ROOM TOKEN", + Short: "Add HipChat room", + Example: `sq notify add hipchat devops --label="hip_devops" BOuyOe...VRBksq6`, + } + + cmd.Flags().String(flagNotifierLabel, "", flagNotifierLabelUsage) + + return cmd, execNotifyAddHipChat +} + +func execNotifyAddHipChat(rc *RunContext, cmd *cobra.Command, args []string) error { + fmt.Println("Add HipChat room") + fmt.Println(strings.Join(args, " | ")) + + var label string + var err error + if cmd.Flags().Changed(flagNotifierLabel) { + label, err = cmd.Flags().GetString(flagNotifierLabel) + if err != nil { + return errz.Err(err) + } + } + + if label != "" { + fmt.Printf("Label: %s", label) + } + + return nil +} diff --git a/cli/cmd_ping.go b/cli/cmd_ping.go new file mode 100644 index 00000000..3dd406e3 --- /dev/null +++ b/cli/cmd_ping.go @@ -0,0 +1,194 @@ +package cli + +import ( + "context" + "time" + + "github.com/spf13/cobra" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +func newPingCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "ping [@HANDLE|all]", + Example: ` # ping active data source + sq ping + + # ping all data sources + sq ping all + + # ping @my1 with 2s timeout + sq ping @my1 --timeout=2s + + # ping @my1 and @pg1 + sq ping @my1 @pg1 + + # output in TSV format + sq ping --tsv @my1`, + + Short: "Check data source connection health", + Long: `Ping data sources to check connection health. If no arguments provided, the +active data source is pinged. The exit code is 1 if ping fails for any of the sources.`, + } + + cmd.Flags().BoolP(flagTable, flagTableShort, false, flagTableUsage) + cmd.Flags().BoolP(flagCSV, flagCSVShort, false, flagCSVUsage) + cmd.Flags().BoolP(flagTSV, flagTSVShort, false, flagTSVUsage) + cmd.Flags().Duration(flagTimeout, time.Second*10, flagTimeoutPingUsage) + + return cmd, execPing +} + +func execPing(rc *RunContext, cmd *cobra.Command, args []string) error { + cfg := rc.Config + var srcs []*source.Source + var gotAll bool + + // args can be: + // [empty] : ping active source + // all : ping all sources + // @handle1 @handleN: ping multiple sources + if len(args) == 0 { + src := cfg.Sources.Active() + if src == nil { + return errz.New(msgNoActiveSrc) + } + srcs = []*source.Source{src} + } else { + for i, arg := range args { + if arg == "all" { + if gotAll || i != 0 { + // If "all" is an arg, it must the the only one + return errz.New("arg 'all' must be supplied without other args") + } + + gotAll = true + srcs = cfg.Sources.Items() + continue + } + + if gotAll { + // This can happen if arg "all" is mixed in with + // handle args, e.g. [@handle1 all @handle2] + return errz.New("arg 'all' must be supplied without other args") + } + + err := source.VerifyLegalHandle(arg) + if err != nil { + return err + } + + src, err := cfg.Sources.Get(arg) + if err != nil { + return err + } + + srcs = append(srcs, src) + } + } + + timeout := cfg.Options.Timeout + if cmdFlagChanged(cmd, flagTimeout) { + timeout, _ = cmd.Flags().GetDuration(flagTimeout) + } + + rc.Log.Debugf("Using timeout value: %s", timeout) + + return pingSources(rc.Context, rc.Log, rc.registry(), srcs, rc.writers().pingw, timeout) +} + +// pingSources pings each of the sources in srcs, and prints results +// to w. If any error occurs pinging any of srcs, that error is printed +// inline as part of the ping results, and an errNoMsg is returned. +func pingSources(ctx context.Context, log lg.Log, dp driver.Provider, srcs []*source.Source, w output.PingWriter, timeout time.Duration) error { + w.Open(srcs) + defer log.WarnIfFuncError(w.Close) + + resultCh := make(chan pingResult, len(srcs)) + + // pingErrExists is set to true if there was an error for + // any of the pings. This later determines if an error + // is returned from this func. + var pingErrExists bool + + for _, src := range srcs { + go pingSource(ctx, dp, src, timeout, resultCh) + } + + // This func doesn't check for context.Canceled itself; instead + // it checks if any of the goroutines return that value on + // resultCh. + for i := 0; i < len(srcs); i++ { + result := <-resultCh + + switch { + case result.err == context.Canceled: + // If any one of the goroutines have received context.Canceled, + // then we'll bubble that up and ignore the remaining goroutines. + return context.Canceled + + case result.err == context.DeadlineExceeded: + // If timeout occurred, set the duration to timeout. + result.duration = timeout + pingErrExists = true + + case result.err != nil: + pingErrExists = true + } + + w.Result(result.src, result.duration, result.err) + } + + // If there's at least one error, we return the + // sentinel errNoMsg so that sq can os.Exit(1) without printing + // an additional error message (as the error message will already have + // been printed by PingWriter). + if pingErrExists { + return errNoMsg + } + + return nil +} + +// pingSource pings an individual driver.Source. It always returns a +// result on resultCh, even when ctx is done. +func pingSource(ctx context.Context, dp driver.Provider, src *source.Source, timeout time.Duration, resultCh chan<- pingResult) { + drvr, err := dp.DriverFor(src.Type) + if err != nil { + resultCh <- pingResult{src: src, err: err} + return + } + + if timeout > 0 { + var cancelFn context.CancelFunc + ctx, cancelFn = context.WithTimeout(ctx, timeout) + defer cancelFn() + } + + doneCh := make(chan pingResult) + start := time.Now() + + go func() { + err = drvr.Ping(ctx, src) + doneCh <- pingResult{src: src, duration: time.Since(start), err: err} + }() + + select { + case <-ctx.Done(): + resultCh <- pingResult{src: src, err: ctx.Err()} + case result := <-doneCh: + resultCh <- result + } +} + +type pingResult struct { + src *source.Source + duration time.Duration + err error +} diff --git a/cli/cmd_ping_test.go b/cli/cmd_ping_test.go new file mode 100644 index 00000000..45901794 --- /dev/null +++ b/cli/cmd_ping_test.go @@ -0,0 +1,73 @@ +package cli_test + +import ( + "encoding/csv" + "testing" + "time" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestCmdPing(t *testing.T) { + t.Parallel() + + err := newRun(t).exec("ping") + require.Error(t, err, "no active data source") + + err = newRun(t).exec("ping", "invalid_handle") + require.Error(t, err) + + err = newRun(t).exec("ping", "@not_a_handle") + require.Error(t, err) + + var ru *run + + th := testh.New(t) + src1, src2 := th.Source(sakila.CSVActor), th.Source(sakila.CSVActorNoHeader) + + ru = newRun(t).add(*src1) + err = ru.exec("ping", "--csv", src1.Handle) + require.NoError(t, err) + checkPingOutputCSV(t, ru, *src1) + + ru = newRun(t).add(*src2) + err = ru.exec("ping", "--csv", src2.Handle) + require.NoError(t, err) + checkPingOutputCSV(t, ru, *src2) + + ru = newRun(t).add(*src1, *src2) + err = ru.exec("ping", "--csv", src1.Handle, src2.Handle) + require.NoError(t, err) + checkPingOutputCSV(t, ru, *src1, *src2) +} + +// checkPintOutputCSV reads CSV records from h.out, and verifies +// that there's an appropriate record for each of srcs. +func checkPingOutputCSV(t *testing.T, h *run, srcs ...source.Source) { + recs, err := csv.NewReader(h.out).ReadAll() + require.NoError(t, err) + require.Equal(t, len(srcs), len(recs)) + + if len(srcs) > 0 { + require.Equal(t, 3, len(recs[0]), "each ping record should have 3 fields, but got %d fields", len(recs[0])) + } + + handles := make(map[string]bool) + for _, src := range srcs { + handles[src.Handle] = true + } + + for i := 0; i < len(recs); i++ { + recHandle := recs[i][0] + require.True(t, handles[recHandle], "should have handle %q in map", recHandle) + + _, err := time.ParseDuration(recs[i][1]) + require.NoError(t, err, "should be a valid duration value") + + require.Empty(t, recs[i][2], "error field should be empty") + } +} diff --git a/cli/cmd_remove.go b/cli/cmd_remove.go new file mode 100644 index 00000000..33c83ea0 --- /dev/null +++ b/cli/cmd_remove.go @@ -0,0 +1,48 @@ +package cli + +import ( + "fmt" + + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/errz" +) + +func newSrcRemoveCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "rm @HANDLE", + Example: ` sq rm @my1`, + Aliases: []string{"remove"}, + Short: "Remove data source", + } + + return cmd, execSrcRemove +} + +func execSrcRemove(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) != 1 { + return errz.Errorf(msgInvalidArgs) + } + + cfg := rc.Config + src, err := cfg.Sources.Get(args[0]) + if err != nil { + return err + } + + err = cfg.Sources.Remove(src.Handle) + if err != nil { + return err + } + + err = rc.ConfigStore.Save(cfg) + if err != nil { + return err + } + + fmt.Fprintf(rc.Out, "Removed data source ") + _, _ = rc.wrtr.fmt.Hilite.Fprintf(rc.Out, "%s", src.Handle) + fmt.Fprintln(rc.Out) + + return nil +} diff --git a/cli/cmd_remove_test.go b/cli/cmd_remove_test.go new file mode 100644 index 00000000..45ee9287 --- /dev/null +++ b/cli/cmd_remove_test.go @@ -0,0 +1,34 @@ +package cli_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestCmdRemove(t *testing.T) { + th := testh.New(t) + + // 1. Should fail if bad handle + ru := newRun(t) + err := ru.exec("rm", "@not_a_source") + require.Error(t, err) + + // 2. Check normal operation + src := th.Source(sakila.SL3) + ru = newRun(t).add(*src) + + // The src we just added should be the active src + activeSrc := ru.rc.Config.Sources.Active() + require.NotNil(t, activeSrc) + require.Equal(t, src.Handle, activeSrc.Handle) + + err = ru.exec("rm", src.Handle) + require.NoError(t, err) + + activeSrc = ru.rc.Config.Sources.Active() + require.Nil(t, activeSrc, "should be no active src anymore") +} diff --git a/cli/cmd_root.go b/cli/cmd_root.go new file mode 100644 index 00000000..a25b3201 --- /dev/null +++ b/cli/cmd_root.go @@ -0,0 +1,89 @@ +package cli + +import ( + "github.com/spf13/cobra" + + // Import the providers package to initialize provider implementations + _ "github.com/neilotoole/sq/drivers" +) + +func newRootCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: `sq QUERY`, + Short: "sq", + Long: `sq is a swiss army knife for data. + +Use sq to uniformly query Postgres, SQLite, SQLServer, MySQL, CSV, TSV, +Excel (and more), and output in text, JSON, CSV, Excel, etc. + +You can query using sq's own jq-like syntax, or in native SQL. + +More at https://sq.io +`, + Example: ` # pipe an Excel file and output the first 10 rows from sheet1 + cat data.xlsx | sq '.sheet1 | .[0:10]' + + # add Postgres source identified by handle @sakila_pg + sq add --handle=@sakila_pg 'postgres://user:pass@localhost:5432/sakila?sslmode=disable' + + # add SQL Server source; will have generated handle @sakila_mssql + sq add 'sqlserver://user:pass@localhost?database=sakila' + + # list available data sources + sq ls + + # ping all data sources + sq ping all + + # set active data source + sq src @sakila_pg + + # get specified cols from table address in active data source + sq '.address | .address_id, .city, .country' + + # get metadata (schema, stats etc) for data source + sq inspect @sakila_pg + + # get metadata for a table + sq inspect @pg1.person + + # output in JSON + sq -j '.person | .uid, .username, .email' + + # output in table format (with header) + sq -th '.person | .uid, .username, .email' + + # output in table format (no header) + sq -t '.person | .uid, .username, .email' + + # output to a HTML file + sq --html '@sakila_sl3.actor' -o actor.html + + # join across data sources + sq '@my1.person, @pg1.address | join(.uid) | .username, .email, .city' + + # insert query results into a table in another data source + sq --insert=@pg1.person '@my1.person | .username, .email' + + # execute a database-native SQL query, specifying the source + sq sql --src=@pg1 'SELECT uid, username, email FROM person LIMIT 2' + + # copy a table (in the same source) + sq tbl copy @sakila_sl3.actor .actor2 + + # truncate tables + sq tbl truncate @sakila_sl3.actor2 + + # drop table + sq tbl drop @sakila_sl3.actor2 +`, + BashCompletionFunction: bashCompletionFunc, + } + + // the query cmd does the real work when the root cmd is invoked + addQueryCmdFlags(cmd) + cmd.Flags().Bool(flagVersion, false, flagVersionUsage) + cmd.PersistentFlags().BoolP(flagMonochrome, flagMonochromeShort, false, flagMonochromeUsage) + + return cmd +} diff --git a/cli/cmd_scratch.go b/cli/cmd_scratch.go new file mode 100644 index 00000000..8e8900a4 --- /dev/null +++ b/cli/cmd_scratch.go @@ -0,0 +1,83 @@ +package cli + +import ( + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + + "github.com/spf13/cobra" +) + +// TODO: dump all this "internal" stuff: make the options as follows: @HANDLE, file, memory + +func newScratchCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "scratch [@HANDLE|internal|internal:file|internal:mem|@scratch]", + Example: ` # get scratch data source + sq scratch + # set @my1 as scratch data source + sq scratch @my1 + # use the default embedded db + sq scratch internal + # explicitly specify use of embedded file db + sq scratch internal:file + # explicitly specify use of embedded memory db + sq scratch internal:mem + # restore default scratch db (equivalent to "internal") + sq scratch @scratch`, + Short: "Get or set scratch data source", + Long: `Get or set scratch data source. The scratch db is used internally by sq for multiple purposes such as +importing non-SQL data, or cross-database joins. If no argument provided, get the current scratch data +source. Otherwise, set @HANDLE or an internal db as the scratch data source. The reserved handle "@scratch" resets the +`, + } + + return cmd, execScratch +} + +func execScratch(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) > 1 { + return errz.Errorf(msgInvalidArgs) + } + + cfg := rc.Config + + var src *source.Source + var err error + defaultScratch := &source.Source{ + Handle: source.ScratchHandle, + Location: "internal:file", + Type: sqlite3.Type, + } + + if len(args) == 0 { + // Print the scratch src + src = cfg.Sources.Scratch() + if src == nil { + src = defaultScratch + } + + return rc.writers().srcw.Source(src) + } + + // Set the scratch src + + switch args[0] { + case "internal", "internal:file", "internal:mem": + // TODO: currently only supports file sqlite3 db, fairly trivial to do mem as well + _, _ = cfg.Sources.SetScratch("") + src = defaultScratch + default: + src, err = cfg.Sources.SetScratch(args[0]) + if err != nil { + return err + } + } + + err = rc.ConfigStore.Save(rc.Config) + if err != nil { + return err + } + + return rc.writers().srcw.Source(src) +} diff --git a/cli/cmd_slq.go b/cli/cmd_slq.go new file mode 100644 index 00000000..707c0bb7 --- /dev/null +++ b/cli/cmd_slq.go @@ -0,0 +1,307 @@ +package cli + +import ( + "context" + "fmt" + "strings" + + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" +) + +func newSLQCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "slq", + Short: "", + Hidden: true, + } + + addQueryCmdFlags(cmd) + cmd.Flags().Bool(flagVersion, false, flagVersionUsage) + cmd.SetUsageFunc(func(cmd *cobra.Command) error { + return cmd.Root().Help() + }) + + return cmd, execSLQ +} + +func execSLQ(rc *RunContext, cmd *cobra.Command, args []string) error { + srcs := rc.Config.Sources + + // check if there's input on stdin + src, err := checkStdinSource(rc) + if err != nil { + return err + } + + if src != nil { + // We have a valid source on stdin. + + // Add the source to the set. + err = srcs.Add(src) + if err != nil { + return err + } + + // Set the stdin pipe data source as the active source, + // as it's commonly the only data source the user is acting upon. + _, err = srcs.SetActive(src.Handle) + if err != nil { + return err + } + } else { + // No source on stdin, so we're using the source set. + src = srcs.Active() + if src == nil { + // TODO: Should sq be modified to support executing queries + // even when there's no active data source. Probably. + return errz.New(msgNoActiveSrc) + } + } + + if !cmdFlagChanged(cmd, flagInsert) { + // The user didn't specify the --insert=@src.tbl flag, + // so we just want to print the records. + return execSLQPrint(rc) + } + + // Instead of printing the records, they will be + // written to another database + insertTo, _ := cmd.Flags().GetString(flagInsert) + if insertTo == "" { + return errz.Errorf("invalid --%s value: empty", flagInsert) + } + + destHandle, destTbl, err := source.ParseTableHandle(insertTo) + if err != nil { + return errz.Wrapf(err, "invalid --%s value", flagInsert) + } + + destSrc, err := srcs.Get(destHandle) + if err != nil { + return err + } + + return execSLQInsert(rc, destSrc, destTbl) +} + +// execSQLInsert executes the SQL and inserts resulting records +// into destTbl in destSrc. +func execSLQInsert(rc *RunContext, destSrc *source.Source, destTbl string) error { + args, srcs, dbases := rc.Args, rc.Config.Sources, rc.databases() + slq, err := preprocessUserSLQ(rc, args) + if err != nil { + return err + } + + ctx, cancelFn := context.WithCancel(rc.Context) + defer cancelFn() + + destDB, err := dbases.Open(ctx, destSrc) + if err != nil { + return err + } + + // Note: We don't need to worry about closing fromConn and + // destConn because they are closed by databases.Close, which + // is invoked by rc.Close, and rc is closed further up the + // stack. + + inserter := libsq.NewDBWriter(rc.Log, destDB, destTbl, libsq.DefaultRecordChSize) + err = libsq.ExecuteSLQ(ctx, rc.Log, rc.dbases, rc.dbases, srcs, slq, inserter) + if err != nil { + return errz.Wrapf(err, "insert %s.%s failed", destSrc.Handle, destTbl) + } + + affected, err := inserter.Wait() // Wait for the writer to finish processing + if err != nil { + return errz.Wrapf(err, "insert %s.%s failed", destSrc.Handle, destTbl) + } + + fmt.Fprintf(rc.Out, stringz.Plu("Inserted %d row(s) into %s.%s\n", int(affected)), affected, destSrc.Handle, destTbl) + return nil +} + +func execSLQPrint(rc *RunContext) error { + slq, err := preprocessUserSLQ(rc, rc.Args) + if err != nil { + return err + } + + recw := output.NewRecordWriterAdapter(rc.writers().recordw) + err = libsq.ExecuteSLQ(rc.Context, rc.Log, rc.dbases, rc.dbases, rc.Config.Sources, slq, recw) + if err != nil { + return err + } + + _, err = recw.Wait() + if err != nil { + return err + } + + return err +} + +// preprocessUserSLQ does a bit of validation and munging on the +// SLQ input (provided in args), returning the SLQ query. This +// function is something of a hangover from the early days of +// seek and may need to be rethought. +// +// 1. If there's piped input but no query args, the first table +// from the pipe source becomes the query. Invoked like this: +// +// $ cat something.csv | sq +// +// The query effectively becomes: +// +// $ cat something.csv | sq @stdin.data +// +// For non-monotable sources, the first table is used: +// +// $ cat something.xlsx | sq @stdin.sheet1 +// +// 2. If the query doesn't contain a source selector segment +// starting with @HANDLE, the active src handle is prepended +// to the query. This allows a query where the first selector +// segment is the table name. +// +// $ sq '.person' --> sq '@active.person' +func preprocessUserSLQ(rc *RunContext, args []string) (string, error) { + log, reg, dbases, srcs := rc.Log, rc.registry(), rc.databases(), rc.Config.Sources + activeSrc := srcs.Active() + + if len(args) == 0 { + // Special handling for the case where no args are supplied + // but sq is receiving pipe input. Let's say the user does this: + // + // $ cat something.csv | sq # query becomes ".stdin.data" + if activeSrc == nil { + // Piped input would result in an active @stdin src. We don't + // have that; we don't have any active src. + return "", errz.New(msgEmptyQueryString) + } + + if activeSrc.Handle != source.StdinHandle { + // It's not piped input. + return "", errz.New(msgEmptyQueryString) + } + + // We know for sure that we've got pipe input + drvr, err := reg.DriverFor(activeSrc.Type) + if err != nil { + return "", err + } + + tblName := source.MonotableName + + if !drvr.DriverMetadata().Monotable { + // This isn't a monotable src, so we can't + // just select @stdin.data. Instead we'll select + // the first table name, as found in the source meta. + dbase, err := dbases.Open(rc.Context, activeSrc) + if err != nil { + return "", err + } + defer log.WarnIfCloseError(dbase) + + srcMeta, err := dbase.SourceMetadata(rc.Context) + if err != nil { + return "", err + } + + if len(srcMeta.Tables) == 0 { + return "", errz.New(msgSrcNoData) + } + + tblName = srcMeta.Tables[0].Name + if tblName == "" { + return "", errz.New(msgSrcEmptyTableName) + } + + log.Debug("Using first table name from document source metadata as table selector: ", tblName) + } + + selector := source.StdinHandle + "." + tblName + log.Debug("Added selector to argument-less piped query: ", selector) + + return selector, nil + } + + // We have at least one query arg + for i, arg := range args { + args[i] = strings.TrimSpace(arg) + } + + start := strings.TrimSpace(args[0]) + parts := strings.Split(start, " ") + + if parts[0][0] == '@' { + // The query starts with a handle, e.g. sq '@my | .person'. + // Let's perform some basic checks on it. + + // We split on . because both @my1.person and @my1 need to be checked. + dsParts := strings.Split(parts[0], ".") + + handle := dsParts[0] + if len(handle) < 2 { + // handle name is too short + return "", errz.Errorf("invalid data source: %q", handle) + } + + // Check that the handle actual exists + _, err := srcs.Get(handle) + if err != nil { + return "", err + } + + // All is good, return the query. + query := strings.Join(args, " ") + return query, nil + } + + // The query doesn't start with a handle selector; let's prepend + // a handle selector segment. + if activeSrc == nil { + return "", errz.New("no data source provided, and no active data source") + } + + query := strings.Join(args, " ") + query = fmt.Sprintf("%s | %s", activeSrc.Handle, query) + + log.Debug("The query didn't start with @handle, so the active src was prepended: ", query) + + return query, nil +} + +// addQueryCmdFlags sets flags for the slq/sql commands. +func addQueryCmdFlags(cmd *cobra.Command) { + cmd.Flags().StringP(flagOutput, flagOutputShort, "", flagOutputUsage) + + cmd.Flags().BoolP(flagJSON, flagJSONShort, false, flagJSONUsage) + cmd.Flags().BoolP(flagJSONA, flagJSONAShort, false, flagJSONAUsage) + cmd.Flags().BoolP(flagJSONL, flagJSONLShort, false, flagJSONLUsage) + cmd.Flags().BoolP(flagTable, flagTableShort, false, flagTableUsage) + cmd.Flags().BoolP(flagXML, flagXMLShort, false, flagXMLUsage) + cmd.Flags().BoolP(flagXLSX, flagXLSXShort, false, flagXLSXUsage) + cmd.Flags().BoolP(flagCSV, flagCSVShort, false, flagCSVUsage) + cmd.Flags().BoolP(flagTSV, flagTSVShort, false, flagTSVUsage) + cmd.Flags().BoolP(flagRaw, flagRawShort, false, flagRawUsage) + cmd.Flags().Bool(flagHTML, false, flagHTMLUsage) + cmd.Flags().Bool(flagMarkdown, false, flagMarkdownUsage) + + cmd.Flags().BoolP(flagHeader, flagHeaderShort, false, flagHeaderUsage) + cmd.Flags().BoolP(flagNoHeader, flagNoHeaderShort, false, flagNoHeaderUsage) + cmd.Flags().BoolP(flagPretty, "", true, flagPrettyUsage) + + cmd.Flags().StringP(flagInsert, "", "", flagInsertUsage) + cmd.Flags().StringP(flagActiveSrc, "", "", flagActiveSrcUsage) + + // The driver flag can be used if data is piped to sq over stdin + cmd.Flags().StringP(flagDriver, "", "", flagQueryDriverUsage) + cmd.Flags().StringP(flagSrcOptions, "", "", flagQuerySrcOptionsUsage) +} diff --git a/cli/cmd_slq_test.go b/cli/cmd_slq_test.go new file mode 100644 index 00000000..f8d28310 --- /dev/null +++ b/cli/cmd_slq_test.go @@ -0,0 +1,174 @@ +package cli_test + +import ( + "encoding/csv" + "fmt" + "io/ioutil" + "os" + "strconv" + "strings" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestCmdSLQ_Insert_LONG(t *testing.T) { + testh.SkipShort(t, true) + testCmdSLQ_Insert(t, sakila.All, sakila.SQLAll) +} + +func TestCmdSLQ_Insert(t *testing.T) { + testCmdSLQ_Insert(t, sakila.SQLLatest, sakila.SQLLatest) +} + +// testCmdSLQ_Insert tests "sq slq QUERY --insert=dest.tbl". +func testCmdSLQ_Insert(t *testing.T, origins, dests []string) { + for _, origin := range origins { + origin := origin + + t.Run("origin_"+origin, func(t *testing.T) { + testh.SkipShort(t, origin == sakila.XLSX) + + for _, dest := range dests { + dest := dest + + t.Run("dest_"+dest, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + originSrc, destSrc := th.Source(origin), th.Source(dest) + srcTbl := sakila.TblActor + if th.IsMonotable(originSrc) { + srcTbl = source.MonotableName + } + + // To avoid dirtying the destination table, we make a copy + // of it (without data). + actualDestTbl := th.CopyTable(false, destSrc, sakila.TblActor, "", false) + t.Cleanup(func() { th.DropTable(destSrc, actualDestTbl) }) + + ru := newRun(t).add(*originSrc) + if destSrc.Handle != originSrc.Handle { + ru.add(*destSrc) + } + + insertTo := fmt.Sprintf("%s.%s", destSrc.Handle, actualDestTbl) + cols := stringz.PrefixSlice(sakila.TblActorCols, ".") + query := fmt.Sprintf("%s.%s | %s", originSrc.Handle, srcTbl, strings.Join(cols, ", ")) + + err := ru.exec("slq", "--insert="+insertTo, query) + require.NoError(t, err) + + sink, err := th.QuerySQL(destSrc, "select * from "+actualDestTbl) + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } + }) + } +} + +func TestCmdSLQ_CSV(t *testing.T) { + t.Parallel() + + src := testh.New(t).Source(sakila.CSVActor) + ru := newRun(t).add(*src) + err := ru.exec("slq", "--no-header", "--csv", fmt.Sprintf("%s.data", src.Handle)) + require.NoError(t, err) + + recs := ru.mustReadCSV() + require.Equal(t, sakila.TblActorCount, len(recs)) +} + +// TestCmdSLQ_OutputFlag verifies that flag --output= works. +func TestCmdSLQ_OutputFlag(t *testing.T) { + t.Parallel() + + src := testh.New(t).Source(sakila.SL3) + ru := newRun(t).add(*src) + outputFile, err := ioutil.TempFile("", t.Name()) + require.NoError(t, err) + + t.Cleanup(func() { + assert.NoError(t, outputFile.Close()) + assert.NoError(t, os.Remove(outputFile.Name())) + }) + + err = ru.exec("slq", + "--no-header", "--csv", fmt.Sprintf("%s.%s", src.Handle, sakila.TblActor), + "--output", outputFile.Name()) + require.NoError(t, err) + + recs, err := csv.NewReader(outputFile).ReadAll() + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(recs)) +} + +func TestCmdSLQ_Join(t *testing.T) { + const queryTpl = `%s.customer, %s.address | join(.address_id) | .customer_id == %d | .[0] | .customer_id, .email, .city_id` + handles := sakila.SQLAll + + // Attempt to join every SQL test source against every SQL test source. + for _, h1 := range handles { + h1 := h1 + + t.Run("origin_"+h1, func(t *testing.T) { + for _, h2 := range handles { + h2 := h2 + + t.Run("dest_"+h2, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src1, src2 := th.Source(h1), th.Source(h2) + + ru := newRun(t).add(*src1) + if src2.Handle != src1.Handle { + ru.add(*src2) + } + + query := fmt.Sprintf(queryTpl, src1.Handle, src2.Handle, sakila.MillerCustID) + + err := ru.exec("slq", "--no-header", "--csv", query) + require.NoError(t, err) + + recs := ru.mustReadCSV() + require.Equal(t, 1, len(recs), "should only be one matching record") + require.Equal(t, 3, len(recs[0]), "should have three fields") + require.Equal(t, strconv.Itoa(sakila.MillerCustID), recs[0][0]) + require.Equal(t, sakila.MillerEmail, recs[0][1]) + require.Equal(t, strconv.Itoa(sakila.MillerCityID), recs[0][2]) + }) + } + }) + } +} + +// TestCmdSLQ_ActiveSrcHandle verifies that source.ActiveHandle is +// interpreted as the active src in a SLQ query. +func TestCmdSLQ_ActiveSrcHandle(t *testing.T) { + src := testh.New(t).Source(sakila.SL3) + + // 1. Verify that the query works as expected using the actual src handle + ru := newRun(t).add(*src).hush() + + require.Equal(t, src.Handle, ru.rc.Config.Sources.Active().Handle) + err := ru.exec("slq", "--no-header", "--csv", "@sakila_sl3.actor") + require.NoError(t, err) + recs := ru.mustReadCSV() + require.Equal(t, sakila.TblActorCount, len(recs)) + + // 2. Verify that it works using source.ActiveHandle as the src handle + ru = newRun(t).add(*src).hush() + require.Equal(t, src.Handle, ru.rc.Config.Sources.Active().Handle) + err = ru.exec("slq", "--no-header", "--csv", source.ActiveHandle+".actor") + require.NoError(t, err) + recs = ru.mustReadCSV() + require.Equal(t, sakila.TblActorCount, len(recs)) +} diff --git a/cli/cmd_sql.go b/cli/cmd_sql.go new file mode 100644 index 00000000..150add27 --- /dev/null +++ b/cli/cmd_sql.go @@ -0,0 +1,158 @@ +package cli + +import ( + "context" + "fmt" + "strings" + + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq/stringz" +) + +func newSQLCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "sql QUERY|STMT", + Short: "Execute DB-native SQL query or statement", + Long: `Execute a SQL query or statement using the source's SQL dialect +against the active source. Use the --src=@HANDLE to specify +an alternative source. + +If flag --query is set, sq will run the input as a query +(SELECT) and return the query rows. If the --exec flag is set, +sq will execute the input and return the result. If neither +flag is set, sq determines the appropriate mode.`, + Example: ` # Select from active source + sq sql 'SELECT * FROM actor' + + # Select from a specified source + sq sql --src=@sakila_pg12 'SELECT * FROM actor' + + # Drop table @sakila_pg12.actor + sq sql --exec --src=@sakila_pg12 'DROP TABLE actor' + + # Select from active source and write results to @pg1.actor + sq sql 'SELECT * FROM actor' --insert=@sakila_pg12.actor`, + } + + addQueryCmdFlags(cmd) + + // User explicitly wants to execute the SQL using sql.DB.Query + cmd.Flags().Bool(flagSQLQuery, false, flagSQLQueryUsage) + // User explicitly wants to execute the SQL using sql.DB.Exec + cmd.Flags().Bool(flagSQLExec, false, flagSQLExecUsage) + + return cmd, execSQL +} + +func execSQL(rc *RunContext, cmd *cobra.Command, args []string) error { + switch len(args) { + default: + // FIXME: we should allow multiple args and concat them + return errz.New("a single query string is required") + case 0: + return errz.New("empty SQL query string") + case 1: + if strings.TrimSpace(args[0]) == "" { + return errz.New("empty SQL query string") + } + } + + err := determineSources(rc) + if err != nil { + return err + } + + srcs := rc.Config.Sources + // activeSrc is guaranteed to be non-nil after + // determineSources successfully returns. + activeSrc := srcs.Active() + + if !cmdFlagChanged(cmd, flagInsert) { + // The user didn't specify the --insert=@src.tbl flag, + // so we just want to print the records. + return execSQLPrint(rc, activeSrc) + } + + // Instead of printing the records, they will be + // written to another database + insertTo, _ := cmd.Flags().GetString(flagInsert) + if insertTo == "" { + return errz.Errorf("invalid --%s value: empty", flagInsert) + } + + destHandle, destTbl, err := source.ParseTableHandle(insertTo) + if err != nil { + return errz.Wrapf(err, "invalid --%s value", flagInsert) + } + + destSrc, err := srcs.Get(destHandle) + if err != nil { + return err + } + + return execSQLInsert(rc, activeSrc, destSrc, destTbl) +} + +// execSQLPrint executes the SQL and prints resulting records +// to the configured writer. +func execSQLPrint(rc *RunContext, fromSrc *source.Source) error { + args := rc.Args + dbase, err := rc.databases().Open(rc.Context, fromSrc) + if err != nil { + return err + } + + recw := output.NewRecordWriterAdapter(rc.writers().recordw) + err = libsq.QuerySQL(rc.Context, rc.Log, dbase, recw, args[0]) + if err != nil { + return err + } + _, err = recw.Wait() // Wait for the writer to finish processing + return err +} + +// execSQLInsert executes the SQL and inserts resulting records +// into destTbl in destSrc. +func execSQLInsert(rc *RunContext, fromSrc, destSrc *source.Source, destTbl string) error { + args := rc.Args + dbases := rc.databases() + ctx, cancelFn := context.WithCancel(rc.Context) + defer cancelFn() + + fromDB, err := dbases.Open(ctx, fromSrc) + if err != nil { + return err + } + + destDB, err := dbases.Open(ctx, destSrc) + if err != nil { + return err + } + + // Note: We don't need to worry about closing fromDB and + // destDB because they are closed by dbases.Close, which + // is invoked by rc.Close, and rc is closed further up the + // stack. + + inserter := libsq.NewDBWriter(rc.Log, destDB, destTbl, libsq.DefaultRecordChSize) + err = libsq.QuerySQL(ctx, rc.Log, fromDB, inserter, args[0]) + if err != nil { + return errz.Wrapf(err, "insert %s.%s failed", destSrc.Handle, destTbl) + } + + affected, err := inserter.Wait() // Wait for the writer to finish processing + if err != nil { + return errz.Wrapf(err, "insert %s.%s failed", destSrc.Handle, destTbl) + } + + rc.Log.Debugf("Rows affected: %d", affected) + + fmt.Fprintf(rc.Out, stringz.Plu("Inserted %d row(s) into %s.%s\n", int(affected)), affected, destSrc.Handle, destTbl) + return nil +} diff --git a/cli/cmd_sql_test.go b/cli/cmd_sql_test.go new file mode 100644 index 00000000..7ece29d1 --- /dev/null +++ b/cli/cmd_sql_test.go @@ -0,0 +1,156 @@ +package cli_test + +import ( + "fmt" + "os" + "strings" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/userdriver" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" + "github.com/neilotoole/sq/testh/testsrc" +) + +func TestCmdSQL_Insert_LONG(t *testing.T) { + testh.SkipShort(t, true) + testCmdSQL_Insert(t, sakila.All, sakila.All) +} +func TestCmdSQL_Insert(t *testing.T) { + testCmdSQL_Insert(t, sakila.SQLLatest, sakila.SQLLatest) +} + +// testCmdSQL_Insert tests "sq sql QUERY --insert=dest.tbl". +func testCmdSQL_Insert(t *testing.T, origins, dests []string) { + for _, origin := range origins { + origin := origin + + t.Run("origin_"+origin, func(t *testing.T) { + testh.SkipShort(t, origin == sakila.XLSX) + + for _, dest := range dests { + dest := dest + + t.Run("dest_"+dest, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + originSrc, destSrc := th.Source(origin), th.Source(dest) + originTbl := sakila.TblActor + + if th.IsMonotable(originSrc) { + originTbl = source.MonotableName + } + + // To avoid dirtying the destination table, we make a copy + // of it (without data). + actualDestTbl := th.CopyTable(false, destSrc, sakila.TblActor, "", false) + t.Cleanup(func() { th.DropTable(destSrc, actualDestTbl) }) + + ru := newRun(t).add(*originSrc) + if destSrc.Handle != originSrc.Handle { + ru.add(*destSrc) + } + + insertTo := fmt.Sprintf("%s.%s", destSrc.Handle, actualDestTbl) + query := fmt.Sprintf("SELECT %s FROM %s", strings.Join(sakila.TblActorCols, ", "), originTbl) + + err := ru.exec("sql", "--insert="+insertTo, query) + require.NoError(t, err) + + sink, err := th.QuerySQL(destSrc, "select * from "+actualDestTbl) + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } + }) + } +} + +func TestCmdSQL_SelectFromUserDriver(t *testing.T) { + testCases := map[string][]struct { + tblName string + wantRows int + wantCols int + }{ + testsrc.PplUD: { + {tblName: "person", wantRows: 3, wantCols: 7}, + {tblName: "skill", wantRows: 6, wantCols: 3}, + }, + testsrc.RSSNYTLocalUD: { + {tblName: "category", wantRows: 251, wantCols: 4}, + {tblName: "channel", wantRows: 1, wantCols: 7}, + {tblName: "item", wantRows: 45, wantCols: 9}, + }, + } + + for handle, wantTbls := range testCases { + for _, wantTbl := range wantTbls { + handle, wantTbl := handle, wantTbl + t.Run(handle+"__"+wantTbl.tblName, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + + ru := newRun(t).add(*src) + + udDefs := testh.DriverDefsFrom(t, testsrc.PathDriverDefPpl, testsrc.PathDriverDefRSS) + for _, udDef := range udDefs { + require.Empty(t, userdriver.ValidateDriverDef(udDef)) + } + ru.rc.Config.Ext.UserDrivers = append(ru.rc.Config.Ext.UserDrivers, udDefs...) + + err := ru.exec("sql", "--csv", "--no-header", "SELECT * FROM "+wantTbl.tblName) + require.NoError(t, err) + recs := ru.mustReadCSV() + require.Equal(t, wantTbl.wantRows, len(recs), "expected %d rows in tbl %q but got %s", wantTbl.wantRows, wantTbl, len(recs)) + require.Equal(t, wantTbl.wantCols, len(recs[0]), "expected %d cols in tbl %q but got %s", wantTbl.wantCols, wantTbl, len(recs[0])) + }) + } + } +} + +// TestCmdSQL_StdinQuery verifies that cmd sql can read from stdin. +func TestCmdSQL_StdinQuery(t *testing.T) { + t.Parallel() + + testCases := []struct { + fpath string + tbl string + wantCount int + wantErr bool + }{ + {fpath: proj.Abs(sakila.PathCSVActor), tbl: source.MonotableName, wantCount: sakila.TblActorCount + 1}, // +1 is for the header row + {fpath: proj.Abs(sakila.PathXLSXSubset), tbl: sakila.TblActor, wantCount: sakila.TblActorCount + 1}, + {fpath: proj.Abs("README.md"), wantErr: true}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(testh.TName(tc.fpath), func(t *testing.T) { + t.Parallel() + + f, err := os.Open(tc.fpath) + require.NoError(t, err) + + ru := newRun(t).hush() + ru.rc.Stdin = f + + err = ru.exec("sql", "SELECT * FROM "+tc.tbl) + if tc.wantErr { + require.Error(t, err) + return + } + + require.NoError(t, err) + results := ru.mustReadCSV() + require.Equal(t, tc.wantCount, len(results)) + }) + } +} diff --git a/cli/cmd_src.go b/cli/cmd_src.go new file mode 100644 index 00000000..9ff80619 --- /dev/null +++ b/cli/cmd_src.go @@ -0,0 +1,59 @@ +package cli + +import ( + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/errz" +) + +func newSrcCommand() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "src [@HANDLE]", + Example: ` # get active data source + sq src + # set @my1 as active data source + sq src @my1`, + // RunE: execSrc, + Short: "Get or set active data source", + Aliases: []string{"using"}, + Long: `Get or set active data source. If no argument provided, get the active data +source. Otherwise, set @HANDLE as the active data source.`, + } + + cmd.Flags().BoolP(flagJSON, flagJSONShort, false, flagJSONUsage) + cmd.Flags().BoolP(flagTable, flagTableShort, false, flagTableUsage) + cmd.Flags().BoolP(flagHeader, flagHeaderShort, false, flagHeaderUsage) + cmd.Flags().BoolP(flagNoHeader, flagNoHeaderShort, false, flagNoHeaderUsage) + + return cmd, execSrc +} + +func execSrc(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) > 1 { + return errz.Errorf(msgInvalidArgs) + } + + cfg := rc.Config + + if len(args) == 0 { + // Get the active data source + src := cfg.Sources.Active() + if src == nil { + return nil + } + + return rc.writers().srcw.Source(src) + } + + src, err := cfg.Sources.SetActive(args[0]) + if err != nil { + return err + } + + err = rc.ConfigStore.Save(cfg) + if err != nil { + return err + } + + return rc.writers().srcw.Source(src) +} diff --git a/cli/cmd_tbl.go b/cli/cmd_tbl.go new file mode 100644 index 00000000..cb821a5e --- /dev/null +++ b/cli/cmd_tbl.go @@ -0,0 +1,298 @@ +package cli + +import ( + "fmt" + + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" +) + +func newTblCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "tbl", + Short: "Common actions on tables (copy, truncate, drop)", + + Example: ` # Copy table actor to new table actor2 + sq tbl copy @sakila_sl3.actor actor2 + + # Truncate table actor2 + sq tbl truncate @sakila_sl3.actor2 + + # Drop table actor2 + sq tbl drop @sakila_sl3.actor2`, + } + + return cmd, func(rc *RunContext, cmd *cobra.Command, args []string) error { + return cmd.Help() + } +} + +func newTblCopyCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "copy @HANDLE.TABLE NEWTABLE", + Short: "Make a copy of a table", + Long: `Make a copy of a table in the same database. The table data is also copied by default.`, + Example: ` # Copy table "actor" in @sakila_sl3" to new table "actor2" + sq tbl copy @sakila_sl3.actor .actor2 + + # Copy table "actor" in active src to table "actor2" + sq tbl copy .actor .actor2 + + # Copy table "actor" in active src to generated table name (e.g. "@sakila_sl3.actor_copy__1ae03e9b") + sq tbl copy .actor + + # Copy table structure, but don't copy table data + sq tbl copy --data=false .actor +`, + } + + cmd.Flags().BoolP(flagJSON, flagJSONShort, false, flagJSONUsage) + cmd.Flags().Bool(flagTblData, true, flagTblDataUsage) + + return cmd, execTblCopy +} + +func execTblCopy(rc *RunContext, cmd *cobra.Command, args []string) error { + if len(args) == 0 || len(args) > 2 { + return errz.New("one or two table args required") + } + + tblHandles, err := parseTableHandleArgs(rc.reg, rc.Config.Sources, args) + if err != nil { + return err + } + + if tblHandles[0].tbl == "" { + return errz.Errorf("arg %q does not specify a table name") + } + + switch len(tblHandles) { + case 1: + // Make a copy of the first tbl handle + tblHandles = append(tblHandles, tblHandles[0]) + // But we can't copy the table to itself, so we create a new name + tblHandles[1].tbl = stringz.UniqTableName(tblHandles[0].tbl + "_copy") + case 2: + if tblHandles[1].tbl == "" { + tblHandles[1].tbl = stringz.UniqTableName(tblHandles[0].tbl + "_copy") + } + default: + return errz.New("one or two table args required") + } + + if tblHandles[0].src.Handle != tblHandles[1].src.Handle { + return errz.Errorf("tbl copy only works on the same source, but got %s.%s --> %s.%s", + tblHandles[0].handle, tblHandles[0].tbl, + tblHandles[1].handle, tblHandles[1].tbl) + } + + if tblHandles[0].tbl == tblHandles[1].tbl { + return errz.Errorf("cannot copy table %s.%s to itself", tblHandles[0].handle, tblHandles[0].tbl) + } + + sqlDrvr, ok := tblHandles[0].drvr.(driver.SQLDriver) + if !ok { + return errz.Errorf("source type %q (%s) doesn't support dropping tables", tblHandles[0].src.Type, tblHandles[0].src.Handle) + } + + copyData := true // copy data by default + if cmdFlagChanged(cmd, flagTblData) { + copyData, err = cmd.Flags().GetBool(flagTblData) + if err != nil { + return errz.Err(err) + } + } + + var dbase driver.Database + dbase, err = rc.databases().Open(rc.Context, tblHandles[0].src) + if err != nil { + return err + } + + copied, err := sqlDrvr.CopyTable(rc.Context, dbase.DB(), tblHandles[0].tbl, tblHandles[1].tbl, copyData) + if err != nil { + return errz.Wrapf(err, "failed tbl copy %s.%s --> %s.%s", + tblHandles[0].handle, tblHandles[0].tbl, + tblHandles[1].handle, tblHandles[1].tbl) + } + + msg := fmt.Sprintf("Copied table: %s.%s --> %s.%s", + tblHandles[0].handle, tblHandles[0].tbl, + tblHandles[1].handle, tblHandles[1].tbl) + + if copyData { + switch copied { + case 1: + msg += " (1 row copied)" + default: + msg += fmt.Sprintf(" (%d rows copied)", copied) + } + } + + fmt.Fprintln(rc.Out, msg) + return nil +} + +func newTblTruncateCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "truncate @HANDLE.TABLE", + Short: "Truncate one or more tables", + Example: ` # truncate table "actor"" in source @sakila_sl3 + sq tbl truncate @sakila_sl3.actor + + # truncate table "payment"" in the active src + sq tbl truncate .payment + + # truncate multiple tables + sq tbl truncate .payment @sakila_sl3.actor +`, + } + + cmd.Flags().BoolP(flagJSON, flagJSONShort, false, flagJSONUsage) + cmd.Flags().BoolP(flagTable, flagTableShort, false, flagTableUsage) + + return cmd, execTblTruncate +} + +func execTblTruncate(rc *RunContext, cmd *cobra.Command, args []string) (err error) { + var tblHandles []tblHandle + tblHandles, err = parseTableHandleArgs(rc.reg, rc.Config.Sources, args) + if err != nil { + return err + } + + for _, tblH := range tblHandles { + var affected int64 + affected, err = tblH.drvr.Truncate(rc.Context, tblH.src, tblH.tbl, true) + if err != nil { + return err + } + + msg := fmt.Sprintf("Truncated %d row(s) from %s.%s", affected, tblH.src.Handle, tblH.tbl) + msg = stringz.Plu(msg, int(affected)) + fmt.Fprintln(rc.Out, msg) + } + + return nil +} + +func newTblDropCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "drop @HANDLE.TABLE", + Short: "Drop one or more tables", + Example: `# drop table "actor" in src @sakila_sl3 + sq tbl drop @sakila_sl3.actor + + # drop table "payment"" in the active src + sq tbl drop .payment + + # drop multiple tables + sq drop .payment @sakila_sl3.actor +`, + } + + return cmd, execTblDrop +} + +func execTblDrop(rc *RunContext, cmd *cobra.Command, args []string) (err error) { + var tblHandles []tblHandle + tblHandles, err = parseTableHandleArgs(rc.reg, rc.Config.Sources, args) + if err != nil { + return err + } + + for _, tblH := range tblHandles { + sqlDrvr, ok := tblH.drvr.(driver.SQLDriver) + if !ok { + return errz.Errorf("source type %q (%s) doesn't support dropping tables", tblH.src.Type, tblH.src.Handle) + } + + var dbase driver.Database + dbase, err = rc.databases().Open(rc.Context, tblH.src) + if err != nil { + return err + } + err = sqlDrvr.DropTable(rc.Context, dbase.DB(), tblH.tbl, false) + if err != nil { + return err + } + + fmt.Fprintf(rc.Out, "Dropped table %s.%s\n", tblH.src.Handle, tblH.tbl) + } + + return nil +} + +// parseTableHandleArgs parses args of the form: +// +// @HANDLE1.TABLE1 .TABLE2 .TABLE3 @HANDLE2.TABLE4 .TABLEN +// +// It returns a slice of tblHandle, one for each arg. If an arg +// does not have a HANDLE, the active src is assumed: it's an error +// if no active src. It is also an error if len(args) is zero. +func parseTableHandleArgs(dp driver.Provider, srcs *source.Set, args []string) ([]tblHandle, error) { + if len(args) == 0 { + return nil, errz.New(msgInvalidArgs) + } + + var tblHandles []tblHandle + activeSrc := srcs.Active() + + // We iterate over the args several times, because we want + // to present error checks consistently. + for _, arg := range args { + handle, tbl, err := source.ParseTableHandle(arg) + if err != nil { + return nil, err + } + + tblHandles = append(tblHandles, tblHandle{ + handle: handle, + tbl: tbl, + }) + } + + for i := range tblHandles { + if tblHandles[i].tbl == "" { + return nil, errz.Errorf("arg[%d] %q doesn't specify a table", i, args[i]) + } + + if tblHandles[i].handle == "" { + // It's a table name without a handle, so we use the active src + if activeSrc == nil { + return nil, errz.Errorf("arg[%d] %q doesn't specify a handle and there's no active source", + i, args[i]) + } + + tblHandles[i].handle = activeSrc.Handle + } + + src, err := srcs.Get(tblHandles[i].handle) + if err != nil { + return nil, err + } + + drvr, err := dp.DriverFor(src.Type) + if err != nil { + return nil, err + } + + tblHandles[i].src = src + tblHandles[i].drvr = drvr + } + + return tblHandles, nil +} + +// tblHandle represents a @HANDLE.TABLE, with the handle's associated +// src and driver. +type tblHandle struct { + handle string + tbl string + src *source.Source + drvr driver.Driver +} diff --git a/cli/cmd_tbl_test.go b/cli/cmd_tbl_test.go new file mode 100644 index 00000000..275bf589 --- /dev/null +++ b/cli/cmd_tbl_test.go @@ -0,0 +1,96 @@ +package cli_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestCmdTblCopy(t *testing.T) { + t.Parallel() + + for _, handle := range sakila.SQLAll { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + srcTblHandle := src.Handle + "." + sakila.TblActor + destTblName := stringz.UniqTableName(sakila.TblActor) + + ru := newRun(t).add(*src) + err := ru.exec("tbl", "copy", "--data=false", srcTblHandle, src.Handle+"."+destTblName) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, destTblName) }) + require.Equal(t, int64(0), th.RowCount(src, destTblName), "should not have copied any rows because --data=false") + + destTblName = stringz.UniqTableName(sakila.TblActor) + err = ru.exec("tbl", "copy", "--data=true", srcTblHandle, src.Handle+"."+destTblName) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, destTblName) }) + require.Equal(t, int64(sakila.TblActorCount), th.RowCount(src, destTblName), "should have copied rows because --data=true") + }) + } +} + +func TestCmdTblDrop(t *testing.T) { + t.Parallel() + + for _, handle := range sakila.SQLAll { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + destTblName := th.CopyTable(false, src, sakila.TblActor, "", true) + t.Cleanup(func() { th.DropTable(src, destTblName) }) + + tblMeta, err := th.Open(src).TableMetadata(th.Context, destTblName) + require.NoError(t, err) // verify that the table exists + require.Equal(t, destTblName, tblMeta.Name) + require.Equal(t, int64(sakila.TblActorCount), tblMeta.RowCount) + + err = newRun(t).add(*src).exec("tbl", "drop", src.Handle+"."+destTblName) + require.NoError(t, err) + tblMeta, err = th.Open(src).TableMetadata(th.Context, destTblName) + require.Error(t, err, "should get an error because the table was dropped") + require.Nil(t, tblMeta) + }) + } +} + +func TestCmdTblTruncate(t *testing.T) { + t.Parallel() + + for _, handle := range sakila.SQLAll { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + destTblName := th.CopyTable(false, src, sakila.TblActor, "", true) + t.Cleanup(func() { th.DropTable(src, destTblName) }) + + tblMeta, err := th.Open(src).TableMetadata(th.Context, destTblName) + require.NoError(t, err) // verify that the table exists + require.Equal(t, destTblName, tblMeta.Name) + require.Equal(t, int64(sakila.TblActorCount), tblMeta.RowCount) + + err = newRun(t).add(*src).exec("tbl", "truncate", src.Handle+"."+destTblName) + require.NoError(t, err) + tblMeta, err = th.Open(src).TableMetadata(th.Context, destTblName) + require.NoError(t, err) + require.Equal(t, int64(0), tblMeta.RowCount) + }) + } +} diff --git a/cli/cmd_version.go b/cli/cmd_version.go new file mode 100644 index 00000000..d5848ffa --- /dev/null +++ b/cli/cmd_version.go @@ -0,0 +1,43 @@ +package cli + +import ( + "fmt" + + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/cli/buildinfo" +) + +func newVersionCmd() (*cobra.Command, runFunc) { + cmd := &cobra.Command{ + Use: "version", + Short: "Print sq version", + } + + return cmd, execVersion +} + +func execVersion(rc *RunContext, cmd *cobra.Command, args []string) error { + version := buildinfo.Version + + // If buildinfo.Version is not set (building without ldflags), + // then we set a dummy version. + if version == "" { + version = "0.0.0.dev" + } + + rc.wrtr.fmt.Hilite.Fprintf(rc.Out, "sq %s", version) + + if len(buildinfo.Commit) > 0 { + fmt.Fprintf(rc.Out, " ") + rc.wrtr.fmt.Faint.Fprintf(rc.Out, "#"+buildinfo.Commit) + } + + if len(buildinfo.Timestamp) > 0 { + fmt.Fprintf(rc.Out, " ") + rc.wrtr.fmt.Faint.Fprintf(rc.Out, buildinfo.Timestamp) + } + + fmt.Fprintln(rc.Out) + return nil +} diff --git a/cli/config/config.go b/cli/config/config.go new file mode 100644 index 00000000..998b67d2 --- /dev/null +++ b/cli/config/config.go @@ -0,0 +1,109 @@ +// Package config holds CLI configuration. +package config + +import ( + "time" + + "github.com/neilotoole/sq/drivers/userdriver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/notify" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" +) + +// Config holds application config/session data. +type Config struct { + Options Options `yaml:"options" json:"options"` + Sources *source.Set `yaml:"sources" json:"sources"` + Notification *Notification `yaml:"notification" json:"notification"` + + // Ext holds sq config extensions, such as user driver config. + Ext Ext `yaml:"-" json:"-"` +} + +func (c *Config) String() string { + return stringz.SprintJSON(c) +} + +// Ext holds additional config (extensions) loaded from other +// config files, e.g. ~/.config/sq/ext/*.sq.yml +type Ext struct { + UserDrivers []*userdriver.DriverDef `yaml:"user_drivers" json:"user_drivers"` +} + +// Options contains sq default values. +type Options struct { + Timeout time.Duration `yaml:"timeout" json:"timeout"` + Format Format `yaml:"output_format" json:"output_format"` + Header bool `yaml:"output_header" json:"output_header"` +} + +// Notification holds notification configuration. +type Notification struct { + Enabled []string `yaml:"enabled" json:"enabled"` + Destinations []notify.Destination `yaml:"destinations" json:"destinations"` +} + +// New returns a config instance with default options set. +func New() *Config { + cfg := &Config{} + + // By default, we want header to be true; this is + // ugly wrt applyDefaults, as the zero value of a bool + // is false, but we actually want it to be true for Header. + cfg.Options.Header = true + + applyDefaults(cfg) + return cfg +} + +// applyDefaults checks if required values are present, and if not, sets them. +func applyDefaults(cfg *Config) { + if cfg.Sources == nil { + cfg.Sources = &source.Set{} + } + + if cfg.Notification == nil { + cfg.Notification = &Notification{} + } + + if cfg.Options.Format == "" { + cfg.Options.Format = FormatTable + } + + if cfg.Options.Timeout == 0 { + cfg.Options.Timeout = 10 * time.Second + } +} + +// Format is a sq output format such as json or xml. +type Format string + +// UnmarshalText implements encoding.TextUnmarshaler. +func (f *Format) UnmarshalText(text []byte) error { + switch Format(text) { + default: + return errz.Errorf("unknown output format %q", string(text)) + case FormatJSON, FormatJSONA, FormatJSONL, FormatTable, FormatGrid, FormatRaw, + FormatHTML, FormatMarkdown, FormatXLSX, FormatXML, FormatCSV, FormatTSV: + } + + *f = Format(text) + return nil +} + +// Constants +const ( + FormatJSON Format = "json" + FormatJSONL Format = "jsonl" + FormatJSONA Format = "jsona" + FormatTable Format = "table" // FIXME: rename to FormatText + FormatGrid Format = "grid" + FormatRaw Format = "raw" + FormatHTML Format = "html" + FormatMarkdown Format = "markdown" + FormatXLSX Format = "xlsx" + FormatXML Format = "xml" + FormatCSV Format = "csv" + FormatTSV Format = "tsv" +) diff --git a/cli/config/config_test.go b/cli/config/config_test.go new file mode 100644 index 00000000..6cd3a629 --- /dev/null +++ b/cli/config/config_test.go @@ -0,0 +1,84 @@ +package config_test + +import ( + "io/ioutil" + "path/filepath" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/config" + "github.com/neilotoole/sq/testh/proj" +) + +func TestFileStore_Nil_Save(t *testing.T) { + t.Parallel() + + var f *config.YAMLFileStore + + // noinspection GoNilness + err := f.Save(config.New()) + require.Error(t, err) +} + +func TestFileStore_LoadSaveLoad(t *testing.T) { + t.Parallel() + + // good.01.sq.yml has a bunch of fixtures in it + fs := &config.YAMLFileStore{Path: "testdata/good.01.sq.yml", HookLoad: hookExpand} + const expectGood01SrcCount = 34 + + cfg, err := fs.Load() + require.NoError(t, err) + require.NotNil(t, cfg) + require.NotNil(t, cfg.Sources) + require.Equal(t, expectGood01SrcCount, len(cfg.Sources.Items())) + + f, err := ioutil.TempFile("", "*.sq.yml") + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, f.Close()) }) + + fs.Path = f.Name() + t.Logf("writing to tmp file: %s", fs.Path) + + err = fs.Save(cfg) + require.NoError(t, err) + + cfg2, err := fs.Load() + require.NoError(t, err) + require.NotNil(t, cfg2) + require.Equal(t, expectGood01SrcCount, len(cfg2.Sources.Items())) + require.EqualValues(t, cfg, cfg2) +} + +// hookExpand expands variables in data, e.g. ${SQ_ROOT}. +var hookExpand = func(data []byte) ([]byte, error) { + return []byte(proj.Expand(string(data))), nil +} + +func TestFileStore_Load(t *testing.T) { + t.Parallel() + + good, err := filepath.Glob("testdata/good.*") + require.NoError(t, err) + bad, err := filepath.Glob("testdata/bad.*") + require.NoError(t, err) + + t.Logf("%d good fixtures, %d bad fixtures", len(good), len(bad)) + + fs := &config.YAMLFileStore{HookLoad: hookExpand} + + for _, match := range good { + fs.Path = match + _, err := fs.Load() + require.NoError(t, err, match) + } + + for _, match := range bad { + fs.Path = match + _, err := fs.Load() + require.Error(t, err, match) + t.Logf("got err: %s", err) + } +} diff --git a/cli/config/store.go b/cli/config/store.go new file mode 100644 index 00000000..77643a3a --- /dev/null +++ b/cli/config/store.go @@ -0,0 +1,209 @@ +package config + +import ( + "fmt" + "io/ioutil" + "os" + "path/filepath" + + "strings" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + + "gopkg.in/yaml.v2" +) + +// Store saves and loads config. +type Store interface { + // Save writes config to the store. + Save(cfg *Config) error + + // Load reads config from the store. + Load() (*Config, error) + + // Location returns the location of the store, typically + // a file path. + Location() string +} + +// YAMLFileStore provides persistence of config via YAML file. +type YAMLFileStore struct { + // Path is the location of the config file + Path string + + // If HookLoad is non-nil, it is invoked by Load + // on Path's bytes before the YAML is unmarshaled. + // This allows expansion of variables etc. + HookLoad func(data []byte) ([]byte, error) + + // ExtPaths holds locations of potential ext config, both dirs and files (with suffix ".sq.yml") + ExtPaths []string +} + +func (fs *YAMLFileStore) String() string { + return fmt.Sprintf("config filestore: %v", fs.Path) +} + +// Location implements Store. +func (fs *YAMLFileStore) Location() string { + return fs.Path +} + +// Load reads config from disk. +func (fs *YAMLFileStore) Load() (*Config, error) { + bytes, err := ioutil.ReadFile(fs.Path) + if err != nil { + return nil, errz.Wrapf(err, "config: failed to load file %q", fs.Path) + } + + loadHookFn := fs.HookLoad + if loadHookFn != nil { + bytes, err = loadHookFn(bytes) + if err != nil { + return nil, err + } + } + + cfg := &Config{} + err = yaml.Unmarshal(bytes, cfg) + if err != nil { + return nil, errz.Wrapf(err, "config: %s: failed to unmarshal config YAML", fs.Path) + } + + applyDefaults(cfg) + + err = source.VerifySetIntegrity(cfg.Sources) + if err != nil { + return nil, errz.Wrapf(err, "config: %s", fs.Path) + } + + err = fs.loadExt(cfg) + if err != nil { + return nil, err + } + + return cfg, nil +} + +// loadExt loads extension config files into cfg. +func (fs *YAMLFileStore) loadExt(cfg *Config) error { + const extSuffix = ".sq.yml" + var extCfgCandidates []string + + for _, extPath := range fs.ExtPaths { + // TODO: This seems overly complicated: could just use glob + // for any files in the same or child dir? + if fiExtPath, err := os.Stat(extPath); err == nil { + // path exists + + if fiExtPath.IsDir() { + files, err := ioutil.ReadDir(extPath) + if err != nil { + // just continue; no means of logging this yet (logging may + // not have bootstrapped), and we shouldn't stop bootstrap + // because of bad sqext files. + continue + } + + for _, file := range files { + if file.IsDir() { + // We don't currently descend through sub dirs + continue + } + + if !strings.HasSuffix(file.Name(), extSuffix) { + continue + } + + extCfgCandidates = append(extCfgCandidates, filepath.Join(extPath, file.Name())) + } + + continue + } + + // it's a file + if !strings.HasSuffix(fiExtPath.Name(), extSuffix) { + continue + } + extCfgCandidates = append(extCfgCandidates, filepath.Join(extPath, fiExtPath.Name())) + } else { + continue + // Again, won't stop bootstrap because of sqext failures + // return nil, errz.Wrapf(err, "failed to load ext config from %q", extPath) + } + // else file does not exist + } + + for _, f := range extCfgCandidates { + bytes, err := ioutil.ReadFile(f) + if err != nil { + return errz.Wrapf(err, "error reading config ext file %q", f) + } + ext := &Ext{} + + err = yaml.Unmarshal(bytes, ext) + if err != nil { + return errz.Wrapf(err, "error parsing config ext file %q", f) + } + + cfg.Ext.UserDrivers = append(cfg.Ext.UserDrivers, ext.UserDrivers...) + } + + return nil +} + +// Save writes config to disk. +func (fs *YAMLFileStore) Save(cfg *Config) error { + if fs == nil { + return errz.New("config file store is nil") + } + + bytes, err := yaml.Marshal(cfg) + if err != nil { + return errz.Wrap(err, "failed to marshal config to YAML") + } + + // It's possible that the parent dir of fs.Path doesn't exist. + dir := filepath.Dir(fs.Path) + err = os.MkdirAll(dir, os.ModePerm) + if err != nil { + return errz.Wrapf(err, "failed to make parent dir of sq config file: %s", dir) + } + + err = ioutil.WriteFile(fs.Path, bytes, os.ModePerm) + if err != nil { + return errz.Wrap(err, "failed to save config file") + } + + return nil +} + +// FileExists returns true if the backing file can be accessed, false if it doesn't +// exist or on any error. +func (fs *YAMLFileStore) FileExists() bool { + _, err := os.Stat(fs.Path) + return err == nil +} + +// DiscardStore implements Store but its Save method is no-op +// and Load always returns a new empty Config. Useful for testing. +type DiscardStore struct { +} + +var _ Store = (*DiscardStore)(nil) + +// Load returns a new empty Config. +func (DiscardStore) Load() (*Config, error) { + return New(), nil +} + +// Save is no-op. +func (DiscardStore) Save(*Config) error { + return nil +} + +// Location returns /dev/null +func (DiscardStore) Location() string { + return "/dev/null" +} diff --git a/cli/config/testdata/bad.01.sq.yml b/cli/config/testdata/bad.01.sq.yml new file mode 100644 index 00000000..45c0f7cd --- /dev/null +++ b/cli/config/testdata/bad.01.sq.yml @@ -0,0 +1,2 @@ +options: + timeout: not_a_duration diff --git a/cli/config/testdata/bad.02.sq.yml b/cli/config/testdata/bad.02.sq.yml new file mode 100644 index 00000000..aba6e0c9 --- /dev/null +++ b/cli/config/testdata/bad.02.sq.yml @@ -0,0 +1,2 @@ +options: + output_format: not_a_format \ No newline at end of file diff --git a/cli/config/testdata/bad.03.sq.yml b/cli/config/testdata/bad.03.sq.yml new file mode 100644 index 00000000..b298b7f3 --- /dev/null +++ b/cli/config/testdata/bad.03.sq.yml @@ -0,0 +1,2 @@ +options: + output_header: not_a_bool diff --git a/cli/config/testdata/bad.04.sq.yml b/cli/config/testdata/bad.04.sq.yml new file mode 100644 index 00000000..0b884910 --- /dev/null +++ b/cli/config/testdata/bad.04.sq.yml @@ -0,0 +1,2 @@ +sources: + active: '@does_not_exist' diff --git a/cli/config/testdata/bad.05.sq.yml b/cli/config/testdata/bad.05.sq.yml new file mode 100644 index 00000000..02b3ec16 --- /dev/null +++ b/cli/config/testdata/bad.05.sq.yml @@ -0,0 +1,5 @@ +sources: + items: + - handle: "illegal_handle" + type: sqlite3 + location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtest.db \ No newline at end of file diff --git a/cli/config/testdata/bad.06.sq.yml b/cli/config/testdata/bad.06.sq.yml new file mode 100644 index 00000000..fa0d7dc7 --- /dev/null +++ b/cli/config/testdata/bad.06.sq.yml @@ -0,0 +1,6 @@ +sources: + items: + - handle: "@sl1" + type: sqlite3 + # location is empty: illegal + location: \ No newline at end of file diff --git a/cli/config/testdata/bad.07.sq.yml b/cli/config/testdata/bad.07.sq.yml new file mode 100644 index 00000000..bd40695f --- /dev/null +++ b/cli/config/testdata/bad.07.sq.yml @@ -0,0 +1,6 @@ +sources: + items: + - handle: "@sl1" + # type is empty: illegal + type: + location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtest.db \ No newline at end of file diff --git a/cli/config/testdata/good.01.sq.yml b/cli/config/testdata/good.01.sq.yml new file mode 100644 index 00000000..683e9a16 --- /dev/null +++ b/cli/config/testdata/good.01.sq.yml @@ -0,0 +1,166 @@ +options: + timeout: 10s + output_format: table + output_header: true +sources: + active: '@sl1' + scratch: "" + items: + - handle: '@sl1' + type: sqlite3 + location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtest.db + + - handle: '@xl1' + type: xlsx + location: ${SQ_ROOT}/drivers/xlsx/testdata/test_header.xlsx + options: + header: + - "true" + + - handle: '@csv1' + type: csv + location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_header.csv + options: + header: + - "true" + + - handle: '@ms1' + type: sqlserver + location: sqlserver://sq:p_ssW0rd@localhost?database=sqtest + + - handle: '@my1' + type: mysql + location: mysql://sq:p_ssW0rd@localhost:3306/sqtest + + - handle: '@pg1' + type: postgres + location: postgres://sq:p_ssW0rd@localhost/sqtest?sslmode=disable + + - handle: '@ms_sqtest' + type: sqlserver + location: sqlserver://sq:p_ssW0rd@localhost?database=sqtest + + - handle: '@ms_sqtype' + type: sqlserver + location: sqlserver://sq:p_ssW0rd@localhost?database=sqtype + + - handle: '@pg_sqtest' + type: postgres + location: postgres://sq:p_ssW0rd@localhost/sqtest?sslmode=disable + + - handle: '@pg_sqtype' + type: postgres + location: postgres://sq:p_ssW0rd@localhost/sqtype?sslmode=disable + + - handle: '@sl_sqtest' + type: sqlite3 + location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtest.db + + - handle: '@sl_sqtype' + type: sqlite3 + location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sqtype.db + + - handle: '@my_sqtest' + type: mysql + location: mysql://sq:p_ssW0rd@localhost:3306/sqtest + + - handle: '@my_sqtype' + type: mysql + location: mysql://sq:p_ssW0rd@localhost:3306/sqtype + + - handle: '@xl_header' + type: xlsx + location: ${SQ_ROOT}/drivers/xlsx/testdata/test_header.xlsx + options: + header: + - "true" + + - handle: '@xl_noheader' + type: xlsx + location: ${SQ_ROOT}/drivers/xlsx/testdata/test_noheader.xlsx + + - handle: '@xl_remote' + type: xlsx + location: http://neilotoole.io/sq/test/test1.xlsx + + - handle: '@csv_person_comma_header' + type: csv + location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_header.csv + options: + header: + - "true" + + - handle: '@csv_person_comma_noheader' + type: csv + location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_noheader.csv + + - handle: '@tsv_person_header' + type: tsv + location: ${SQ_ROOT}/drivers/csv/testdata/person_header.tsv + + - handle: '@tsv_person_noheader' + type: tsv + location: ${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv + + - handle: '@tsv_person_noheader_cols' + type: tsv + location: ${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv + options: + cols: + - uid,username,email + + - handle: '@rss_basic' + type: rss + location: ${SQ_ROOT}/libsq/driver/userdriver/testdata/basic.rss.xml + + - handle: '@nytimes' + type: rss + location: http://www.nytimes.com/services/xml/rss/nyt/World.xml + + - handle: '@myfriends' + type: ppl + location: ${SQ_ROOT}/libsq/driver/userdriver/testdata/people.xml + + - handle: '@peeps' + type: ppl + location: ${SQ_ROOT}/libsq/driver/userdriver/testdata/people2.xml + + - handle: '@ds_invalid_creds' + type: mysql + location: mysql://root:badpass@localhost:3306/sqtest + + - handle: '@ds_invalid_port' + type: mysql + location: mysql://root:root@localhost:33661/sqtest + + - handle: '@ds_invalid_host' + type: mysql + location: mysql://root:root@news.google.com:80/sqtest + + - handle: '@ds_invalid_db' + type: mysql + location: mysql://sq:sq@localhost:3306/not_a_db + + - handle: '@csvbig' + type: csv + location: ${SQ_ROOT}/drivers/csv/testdata/person_comma_header_big.csv + options: + header: + - "true" + + - handle: '@sl_sakila' + type: sqlite3 + location: sqlite3://${SQ_ROOT}/examples/sakila/sqlite-sakila-db/sakila.db + + - handle: '@my_sakila' + type: mysql + location: mysql://root:sakila@localhost:33067/sakila + + - handle: '@pg_sakila' + type: postgres + location: postgres://sq:p_ssW0rd@localhost:54321/sakila?sslmode=disable + + +notification: + enabled: [] + destinations: [] diff --git a/cli/config/testdata/good.02.sq.yml b/cli/config/testdata/good.02.sq.yml new file mode 100644 index 00000000..40ccbd94 --- /dev/null +++ b/cli/config/testdata/good.02.sq.yml @@ -0,0 +1,7 @@ +options: + +sources: + active: "" + scratch: "" + items: + diff --git a/cli/config/testdata/good.03.sq.yml b/cli/config/testdata/good.03.sq.yml new file mode 100644 index 00000000..4e0129f3 --- /dev/null +++ b/cli/config/testdata/good.03.sq.yml @@ -0,0 +1,7 @@ + + +sources: + active: "" + scratch: "" + items: + diff --git a/cli/config/testdata/good.04.sq.yml b/cli/config/testdata/good.04.sq.yml new file mode 100644 index 00000000..e3add9e9 --- /dev/null +++ b/cli/config/testdata/good.04.sq.yml @@ -0,0 +1,5 @@ +options: + +sources: + + diff --git a/cli/consts.go b/cli/consts.go new file mode 100644 index 00000000..52cdb99b --- /dev/null +++ b/cli/consts.go @@ -0,0 +1,122 @@ +package cli + +// cli flags +const ( + flagActiveSrc = "src" + flagActiveSrcUsage = "Override the active source for this query" + + flagCSV = "csv" + flagCSVShort = "c" + flagCSVUsage = "CSV output" + + flagDriver = "driver" + flagDriverShort = "d" + flagDriverUsage = "Explicitly specify the data source driver to use" + + flagHTML = "html" + flagHTMLUsage = "HTML table output" + + flagHeader = "header" + flagHeaderShort = "h" + flagHeaderUsage = "Print header row in output" + + flagHandle = "handle" + flagHandleShort = "h" + flagHandleUsage = "Handle for the source" + + flagHelp = "help" + + flagInsert = "insert" + flagInsertUsage = "Insert query results into @HANDLE.TABLE" + + flagInspectFull = "full" + flagInspectFullUsage = "Output full data source details (JSON only)" + + flagJSON = "json" + flagJSONUsage = "JSON output" + flagJSONShort = "j" + flagJSONA = "jsona" + flagJSONAShort = "A" + flagJSONAUsage = "JSON: output each record's values as JSON array on its own line" + flagJSONL = "jsonl" + flagJSONLShort = "l" + flagJSONLUsage = "JSON: output each record as a JSON object on its own line" + + flagMarkdown = "markdown" + flagMarkdownUsage = "Markdown table output" + + flagMonochrome = "monochrome" + flagMonochromeShort = "M" + flagMonochromeUsage = "Don't colorize output" + + flagNoHeader = "no-header" + flagNoHeaderShort = "H" + flagNoHeaderUsage = "Don't print header row in output" + + flagNotifierLabel = "label" + flagNotifierLabelUsage = "Optional label for the notification destination" + + flagOutput = "output" + flagOutputShort = "o" + flagOutputUsage = "Write output to instead of stdout" + + flagPretty = "pretty" + flagPrettyUsage = "Pretty-print output for certain formats such as JSON or XML" + + flagQueryDriverUsage = "Explicitly specify the data source driver to use when piping input" + flagQuerySrcOptionsUsage = "Driver-dependent data source options when piping input" + + flagRaw = "raw" + flagRawShort = "r" + flagRawUsage = "Output each record field in raw format without any encoding or delimiter" + + flagSQLExec = "exec" + flagSQLExecUsage = "Execute the SQL as a statement (as opposed to query)" + + flagSQLQuery = "query" + flagSQLQueryUsage = "Execute the SQL as a query (as opposed to statement)" + + flagSrcOptions = "opts" + flagSrcOptionsUsage = "Driver-dependent data source options" + + flagTSV = "tsv" + flagTSVShort = "T" + flagTSVUsage = "TSV output" + + flagTable = "table" + flagTableShort = "t" + flagTableUsage = "Table output" + + flagTblData = "data" + flagTblDataUsage = "Copy table data (defualt true)" + + flagTimeout = "timeout" + flagTimeoutPingUsage = "Max time to wait for ping" + + flagVerbose = "verbose" + flagVerboseShort = "v" + flagVerboseUsage = "Print verbose data, if applicable" + + flagVersion = "version" + flagVersionUsage = "Print sq version" + + flagXLSX = "xlsx" + flagXLSXShort = "x" + flagXLSXUsage = "Excel XLSX output" + + flagXML = "xml" + flagXMLShort = "X" + flagXMLUsage = "XML output" +) + +const ( + msgInvalidArgs = "invalid args" + msgNoActiveSrc = "no active data source" + msgEmptyQueryString = "query string is empty" + msgSrcNoData = "source has no data" + msgSrcEmptyTableName = "source has empty table name" + + envarLogPath = "SQ_LOGFILE" + envarLogTruncate = "SQ_LOGFILE_TRUNCATE" + envarConfigDir = "SQ_CONFIGDIR" +) diff --git a/cli/ioutilz.go b/cli/ioutilz.go new file mode 100644 index 00000000..c2453b14 --- /dev/null +++ b/cli/ioutilz.go @@ -0,0 +1,45 @@ +package cli + +import ( + "io" + "os" + + "github.com/mattn/go-isatty" + "golang.org/x/crypto/ssh/terminal" +) + +// isTerminal returns true if w is a terminal. +func isTerminal(w io.Writer) bool { + switch v := w.(type) { + case *os.File: + return terminal.IsTerminal(int(v.Fd())) + default: + return false + } +} + +// isColorTerminal returns true if w is a colorable terminal. +func isColorTerminal(w io.Writer) bool { + if w == nil { + return false + } + + if !isTerminal(w) { + return false + } + + if os.Getenv("TERM") == "dumb" { + return false + } + + f, ok := w.(*os.File) + if !ok { + return false + } + + if isatty.IsCygwinTerminal(f.Fd()) { + return false + } + + return true +} diff --git a/cli/output/adapter.go b/cli/output/adapter.go new file mode 100644 index 00000000..2d2cc619 --- /dev/null +++ b/cli/output/adapter.go @@ -0,0 +1,178 @@ +package output + +import ( + "context" + "sync" + "time" + + "go.uber.org/atomic" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// RecordWriterAdapter implements libsq.RecordWriter and +// wraps an output.RecordWriter instance, providing a +// bridge between the asynchronous libsq.RecordWriter and +// synchronous output.RecordWriter interfaces. +// +// Note that a writer implementation such as the JSON or +// CSV writer could directly implement libsq.RecordWriter. +// But that interface is non-trivial to implement, hence +// this bridge type. +// +// The FlushAfterN and FlushAfterDuration fields control +// flushing of the writer. +type RecordWriterAdapter struct { + rw RecordWriter + wg *sync.WaitGroup + recCh chan sqlz.Record + errCh chan error + errs []error + written *atomic.Int64 + cancelFn context.CancelFunc + + // FlushAfterN indicates that the writer's Flush method + // should be invoked after N invocations of WriteRecords. + // A value of 0 will flush every time a record is written. + // Set to -1 to disable. + FlushAfterN int64 + + // FlushAfterDuration controls whether the writer's Flush method + // is invoked periodically. A duration <= 0 disables periodic flushing. + FlushAfterDuration time.Duration +} + +// RecordWriterAdapterChSize is the size of the record chan (effectively +// the buffer) used by RecordWriterAdapter. +// Possibly this value should be user-configurable. +const RecordWriterAdapterChSize = 1000 + +// NewRecordWriterAdapter returns a new RecordWriterAdapter. +func NewRecordWriterAdapter(rw RecordWriter) *RecordWriterAdapter { + recCh := make(chan sqlz.Record, RecordWriterAdapterChSize) + return &RecordWriterAdapter{rw: rw, recCh: recCh, wg: &sync.WaitGroup{}, written: atomic.NewInt64(0)} +} + +// Open implements libsq.RecordWriter. +func (w *RecordWriterAdapter) Open(ctx context.Context, cancelFn context.CancelFunc, recMeta sqlz.RecordMeta) (chan<- sqlz.Record, <-chan error, error) { + w.cancelFn = cancelFn + + err := w.rw.Open(recMeta) + if err != nil { + return nil, nil, err + } + + // errCh has size 2 because that's the maximum number of + // errs that could be sent. Typically only one err is sent, + // but in the case of ctx.Done, we send ctx.Err, followed + // by any error returned by r.rw.Close. + w.errCh = make(chan error, 2) + w.wg.Add(1) + + go func() { + defer func() { + w.wg.Done() + close(w.errCh) + }() + + var lastFlushN, recN int64 + var flushTimer *time.Timer + var flushCh <-chan time.Time + + if w.FlushAfterDuration > 0 { + flushTimer = time.NewTimer(w.FlushAfterDuration) + flushCh = flushTimer.C + defer flushTimer.Stop() + } + + for { + select { + case <-ctx.Done(): + w.addErrs(ctx.Err(), w.rw.Close()) + return + + case <-flushCh: + // The flushTimer has expired, time to flush. + err = w.rw.Flush() + if err != nil { + w.addErrs(err) + return + } + lastFlushN = recN + flushTimer.Reset(w.FlushAfterDuration) + continue + + case rec := <-w.recCh: + if rec == nil { // no more results on recCh, it has been closed + err = w.rw.Close() + if err != nil { + w.addErrs() + } + return + } + + // rec is not nil, therefore we write it out. + + // We could accumulate a bunch of recs into a slice here, + // but we'll worry about that if benchmarking shows it'll matter. + writeErr := w.rw.WriteRecords([]sqlz.Record{rec}) + if writeErr != nil { + w.addErrs(writeErr) + return + } + + recN = w.written.Inc() + + // Check if we should flush + if w.FlushAfterN >= 0 && (recN-lastFlushN >= w.FlushAfterN) { + err = w.rw.Flush() + if err != nil { + w.addErrs(err) + return + } + lastFlushN = recN + + if flushTimer != nil { + // Reset the timer, but we need to stop and drain it first. + // See the timer.Reset docs. + if !flushTimer.Stop() { + <-flushTimer.C + } + + flushTimer.Reset(w.FlushAfterDuration) + } + } + + // If we got this far, we successfully wrote rec to rw. + // Therefore continue to wait/select for the next + // element on recCh (or for recCh to close) + // or for ctx.Done indicating timeout or cancel etc. + continue + } + } + }() + + return w.recCh, w.errCh, nil +} + +// Wait implements libsq.RecordWriter. +func (w *RecordWriterAdapter) Wait() (written int64, err error) { + w.wg.Wait() + if w.cancelFn != nil { + w.cancelFn() + } + + return w.written.Load(), errz.Combine(w.errs...) +} + +// addErrs handles any non-nil err in errs by appending it to w.errs +// and sending it on w.errCh. +func (w *RecordWriterAdapter) addErrs(errs ...error) { + for _, err := range errs { + if err != nil { + w.errs = append(w.errs, err) + w.errCh <- err + } + } +} diff --git a/cli/output/adapter_test.go b/cli/output/adapter_test.go new file mode 100644 index 00000000..c45c95bf --- /dev/null +++ b/cli/output/adapter_test.go @@ -0,0 +1,167 @@ +package output_test + +import ( + "context" + "fmt" + "testing" + "time" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" + "github.com/neilotoole/sq/testh/testsrc" +) + +var _ libsq.RecordWriter = (*output.RecordWriterAdapter)(nil) + +func TestRecordWriterAdapter(t *testing.T) { + t.Parallel() + + testCases := []struct { + handle string + sqlQuery string + wantRowCount int + wantColCount int + }{ + { + handle: sakila.SL3, + sqlQuery: "SELECT * FROM actor", + wantRowCount: sakila.TblActorCount, + wantColCount: len(sakila.TblActorCols), + }, + { + handle: testsrc.CSVPersonBig, + sqlQuery: "SELECT * FROM data", + wantRowCount: 10000, + wantColCount: len(sakila.TblActorCols), + }, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(tc.handle) + dbase := th.Open(src) + + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + err := libsq.QuerySQL(th.Context, th.Log, dbase, recw, tc.sqlQuery) + require.NoError(t, err) + written, err := recw.Wait() + require.NoError(t, err) + require.Equal(t, int64(tc.wantRowCount), written) + + require.True(t, len(sink.Closed) == 1) + require.Equal(t, tc.wantRowCount, len(sink.Recs)) + require.Equal(t, tc.wantColCount, len(sink.Recs[0])) + }) + } +} + +func TestRecordWriterAdapter_FlushAfterN(t *testing.T) { + const writeRecCount = 200 + + testCases := map[int]int{ + -1: 0, + 0: writeRecCount, + 1: writeRecCount, + 2: writeRecCount / 2, + 10: writeRecCount / 10, + 100: writeRecCount / 100, + writeRecCount + 1: 0, + } + // Get some recMeta to feed to RecordWriter.Open. + // In this case, the field is "actor_id", which is an int. + recMeta := testh.NewRecordMeta([]string{"col_int"}, []sqlz.Kind{sqlz.KindInt}) + + for flushAfterN, wantFlushed := range testCases { + flushAfterN, wantFlushed := flushAfterN, wantFlushed + + t.Run(fmt.Sprintf("flustAfter_%d__wantFlushed_%d", flushAfterN, wantFlushed), func(t *testing.T) { + t.Parallel() + + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + + recw.FlushAfterN = int64(flushAfterN) + recw.FlushAfterDuration = -1 // not testing duration + recCh, _, err := recw.Open(context.Background(), nil, recMeta) + require.NoError(t, err) + + // Write some records + for i := 0; i < writeRecCount; i++ { + recCh <- []interface{}{1} + } + close(recCh) + + written, err := recw.Wait() + require.NoError(t, err) + require.Equal(t, int64(writeRecCount), written) + require.Equal(t, writeRecCount, len(sink.Recs)) + + require.Equal(t, wantFlushed, len(sink.Flushed)) + }) + } +} + +func TestRecordWriterAdapter_FlushAfterDuration(t *testing.T) { + // Don't run this as t.Parallel because it's timing sensitive. + const ( + sleepTime = time.Millisecond * 10 + writeRecCount = 10 + ) + + testCases := []struct { + flushAfter time.Duration + wantFlushed int + assertFn testh.AssertCompareFunc + }{ + {flushAfter: -1, wantFlushed: 0, assertFn: require.Equal}, + {flushAfter: 0, wantFlushed: 0, assertFn: require.Equal}, + {flushAfter: 1, wantFlushed: 10, assertFn: require.GreaterOrEqual}, + {flushAfter: time.Millisecond * 20, wantFlushed: 2, assertFn: require.GreaterOrEqual}, + {flushAfter: time.Second, wantFlushed: 0, assertFn: require.Equal}, + } + + // Get some recMeta to feed to RecordWriter.Open. + // In this case, the field is "actor_id", which is an int. + recMeta := testh.NewRecordMeta([]string{"col_int"}, []sqlz.Kind{sqlz.KindInt}) + + for _, tc := range testCases { + tc := tc + t.Run(fmt.Sprintf("flushAfter_%s__wantFlushed_%d", tc.flushAfter, tc.wantFlushed), func(t *testing.T) { + t.Parallel() + + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + + recw.FlushAfterN = -1 // not testing FlushAfterN + recw.FlushAfterDuration = tc.flushAfter + + recCh, _, err := recw.Open(context.Background(), nil, recMeta) + require.NoError(t, err) + + // Write some records + for i := 0; i < writeRecCount; i++ { + recCh <- []interface{}{1} + time.Sleep(sleepTime) + } + close(recCh) + + written, err := recw.Wait() + require.NoError(t, err) + require.Equal(t, int64(writeRecCount), written) + require.Equal(t, writeRecCount, len(sink.Recs)) + + tc.assertFn(t, len(sink.Flushed), tc.wantFlushed) + }) + } +} diff --git a/cli/output/csvw/csvw_test.go b/cli/output/csvw/csvw_test.go new file mode 100644 index 00000000..3760f973 --- /dev/null +++ b/cli/output/csvw/csvw_test.go @@ -0,0 +1,35 @@ +package csvw_test + +import ( + "bytes" + "testing" + "time" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output/csvw" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/testh" +) + +func TestDateTimeHandling(t *testing.T) { + var ( + colNames = []string{"col_datetime", "col_date", "col_time"} + kinds = []sqlz.Kind{sqlz.KindDatetime, sqlz.KindDate, sqlz.KindTime} + when = time.Unix(0, 0).UTC() + ) + const want = "1970-01-01T00:00:00Z\t1970-01-01\t00:00:00\n" + + recMeta := testh.NewRecordMeta(colNames, kinds) + buf := &bytes.Buffer{} + + w := csvw.NewRecordWriter(buf, false, csvw.Tab) + require.NoError(t, w.Open(recMeta)) + + rec := sqlz.Record{&when, &when, &when} + require.NoError(t, w.WriteRecords([]sqlz.Record{rec})) + require.NoError(t, w.Close()) + + require.Equal(t, want, buf.String()) + println(buf.String()) +} diff --git a/cli/output/csvw/csvwriter.go b/cli/output/csvw/csvwriter.go new file mode 100644 index 00000000..6b82b277 --- /dev/null +++ b/cli/output/csvw/csvwriter.go @@ -0,0 +1,108 @@ +// Package csvw implements writers for CSV. +package csvw + +import ( + "encoding/csv" + "fmt" + "io" + "strconv" + "time" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +const ( + // Tab is the tab rune. + Tab = '\t' + + // Comma is the comma rune. + Comma = ',' +) + +// RecordWriter implements output.RecordWriter. +type RecordWriter struct { + recMeta sqlz.RecordMeta + csvW *csv.Writer + needsHeader bool +} + +// NewRecordWriter returns a writer instance. +func NewRecordWriter(out io.Writer, header bool, sep rune) *RecordWriter { + csvW := csv.NewWriter(out) + csvW.Comma = sep + return &RecordWriter{needsHeader: header, csvW: csvW} +} + +// Open implements output.RecordWriter. +func (w *RecordWriter) Open(recMeta sqlz.RecordMeta) error { + w.recMeta = recMeta + return nil +} + +// Flush implements output.RecordWriter. +func (w *RecordWriter) Flush() error { + w.csvW.Flush() + return nil +} + +// Close implements output.RecordWriter. +func (w *RecordWriter) Close() error { + w.csvW.Flush() + return w.csvW.Error() +} + +// WriteRecords implements output.RecordWriter. +func (w *RecordWriter) WriteRecords(recs []sqlz.Record) error { + if w.needsHeader { + headerRow := w.recMeta.Names() + + err := w.csvW.Write(headerRow) + if err != nil { + return errz.Wrap(err, "failed to write header record") + } + w.needsHeader = false + } + + for _, rec := range recs { + fields := make([]string, len(rec)) + + for i, val := range rec { + switch val := val.(type) { + default: + // should never happen + fields[i] = fmt.Sprintf("%v", val) + case nil: + // nil is rendered as empty string, which this cell already is + case *int64: + fields[i] = strconv.FormatInt(*val, 10) + case *string: + fields[i] = *val + case *bool: + fields[i] = strconv.FormatBool(*val) + case *float64: + fields[i] = fmt.Sprintf("%v", *val) + case *[]byte: + fields[i] = fmt.Sprintf("%v", string(*val)) + case *time.Time: + switch w.recMeta[i].Kind() { + default: + fields[i] = val.Format(stringz.DatetimeFormat) + case sqlz.KindTime: + fields[i] = val.Format(stringz.TimeFormat) + case sqlz.KindDate: + fields[i] = val.Format(stringz.DateFormat) + } + } + } + + err := w.csvW.Write(fields) + if err != nil { + return errz.Wrap(err, "failed to write records") + } + } + + w.csvW.Flush() + return w.csvW.Error() +} diff --git a/cli/output/csvw/pingwriter.go b/cli/output/csvw/pingwriter.go new file mode 100644 index 00000000..fa7a528c --- /dev/null +++ b/cli/output/csvw/pingwriter.go @@ -0,0 +1,53 @@ +package csvw + +import ( + "context" + "encoding/csv" + "io" + "time" + + "github.com/neilotoole/sq/libsq/errz" + + "github.com/neilotoole/sq/cli/output" + + "github.com/neilotoole/sq/libsq/source" +) + +// NewPingWriter returns a new instance. +func NewPingWriter(out io.Writer, sep rune) output.PingWriter { + csvw := csv.NewWriter(out) + csvw.Comma = sep + return &pingWriter{csvw: csvw} +} + +// pingWriter implements out.pingWriter. +type pingWriter struct { + csvw *csv.Writer +} + +// Open implements output.PingWriter. +func (p *pingWriter) Open(srcs []*source.Source) { +} + +// Result implements output.PingWriter. +func (p *pingWriter) Result(src *source.Source, d time.Duration, err error) { + rec := make([]string, 3) + rec[0] = src.Handle + rec[1] = d.Truncate(time.Millisecond).String() + if err != nil { + if err == context.DeadlineExceeded { + rec[2] = "timeout exceeded" + } else { + rec[2] = err.Error() + } + } + + _ = p.csvw.Write(rec) + p.csvw.Flush() +} + +// Close implements output.PingWriter. +func (p *pingWriter) Close() error { + p.csvw.Flush() + return errz.Err(p.csvw.Error()) +} diff --git a/cli/output/formatting.go b/cli/output/formatting.go new file mode 100644 index 00000000..1e0e3e21 --- /dev/null +++ b/cli/output/formatting.go @@ -0,0 +1,133 @@ +package output + +import "github.com/fatih/color" + +// Formatting describes color and pretty-printing options. +type Formatting struct { + monochrome bool + + // Pretty indicates that output should be pretty-printed. + // Typically this means indentation, new lines, etc, but + // varies by output format. + Pretty bool + + // Indent is the indent string to use when pretty-printing, + // typically two spaces. + Indent string + + // Bool is the color for boolean values. + Bool *color.Color + + // Bytes is the color for byte / binary values. + Bytes *color.Color + + // Datetime is the color for time-related values. + Datetime *color.Color + + // Null is the color for null. + Null *color.Color + + // Number is the color for number values, including int, + // float, decimal etc. + Number *color.Color + + // String is the color for string values. + String *color.Color + + // Success is the color for success elements. + Success *color.Color + + // Error is the color for error elements such as an error message. + Error *color.Color + + // Handle is the color for source handles such as "@my_db" + Handle *color.Color + + // Header is the color for header elements in a table. + Header *color.Color + + // Hilite is the color for highlighted elements. + Hilite *color.Color + + // Faint is the color for faint elements - the opposite of Hilite. + Faint *color.Color + + // Bold is the color for bold elements. + Bold *color.Color + + // Key is the color for keys such as a JSON field name. + Key *color.Color + + // Punc is the color for punctuation such as colons, braces, etc. + // Frequently Punc will just be color.Bold. + Punc *color.Color +} + +// NewFormatting returns a Formatting instance. Color and pretty-print +// are enabled. The default indent is two spaces. +func NewFormatting() *Formatting { + fm := &Formatting{ + Pretty: true, + monochrome: false, + Indent: " ", + Bool: color.New(color.FgCyan), + Bold: color.New(color.Bold), + Bytes: color.New(color.FgGreen), + Datetime: color.New(color.FgGreen), + Error: color.New(color.FgRed, color.Bold), + Faint: color.New(color.Faint), + Handle: color.New(color.FgBlue), + Header: color.New(color.FgBlue, color.Bold), + Hilite: color.New(color.FgHiBlue), + Key: color.New(color.FgBlue, color.Bold), + Null: color.New(color.FgBlue, color.Faint), + Number: color.New(), + String: color.New(color.FgGreen), + Success: color.New(color.FgGreen, color.Bold), + Punc: color.New(color.Bold), + } + + fm.EnableColor(true) + return fm +} + +// IsMonochrome returns true if in monochrome (no color) mode. +// Default is false (color enabled) for a new instance. +func (f *Formatting) IsMonochrome() bool { + return f.monochrome +} + +// EnableColor enables or disables all colors. +func (f *Formatting) EnableColor(enable bool) { + if enable { + f.monochrome = false + + f.Bool.EnableColor() + f.Bytes.EnableColor() + f.Datetime.EnableColor() + f.Error.EnableColor() + f.Faint.EnableColor() + f.Header.EnableColor() + f.Hilite.EnableColor() + f.Key.EnableColor() + f.Null.EnableColor() + f.Success.EnableColor() + f.Punc.EnableColor() + f.Bold.EnableColor() + } else { + f.monochrome = true + + f.Bool.DisableColor() + f.Bytes.DisableColor() + f.Datetime.DisableColor() + f.Error.DisableColor() + f.Faint.DisableColor() + f.Header.DisableColor() + f.Hilite.DisableColor() + f.Key.DisableColor() + f.Null.DisableColor() + f.Success.DisableColor() + f.Punc.DisableColor() + f.Bold.DisableColor() + } +} diff --git a/cli/output/formatting_test.go b/cli/output/formatting_test.go new file mode 100644 index 00000000..31c246ef --- /dev/null +++ b/cli/output/formatting_test.go @@ -0,0 +1 @@ +package output_test diff --git a/cli/output/htmlw/htmlw.go b/cli/output/htmlw/htmlw.go new file mode 100644 index 00000000..cb28888a --- /dev/null +++ b/cli/output/htmlw/htmlw.go @@ -0,0 +1,142 @@ +// Package htmlw implements a RecordWriter for HTML. +package htmlw + +import ( + "bytes" + "encoding/base64" + "fmt" + "html" + "io" + "strconv" + "time" + + "github.com/neilotoole/sq/cli/output" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// RecordWriter implements output.RecordWriter. +type recordWriter struct { + recMeta sqlz.RecordMeta + out io.Writer + buf *bytes.Buffer +} + +// NewRecordWriter an output.RecordWriter for HTML. +func NewRecordWriter(out io.Writer) output.RecordWriter { + return &recordWriter{out: out} +} + +// Open implements output.RecordWriter. +func (w *recordWriter) Open(recMeta sqlz.RecordMeta) error { + w.recMeta = recMeta + w.buf = &bytes.Buffer{} + + const header = ` + + +sq output + + + + + +` + + w.buf.WriteString(header) + for _, field := range recMeta { + w.buf.WriteString(" \n") + } + w.buf.WriteString(" \n \n \n") + for _, field := range recMeta { + w.buf.WriteString(" \n") + } + w.buf.WriteString(" \n \n \n") + return nil +} + +// Flush implements output.RecordWriter. +func (w *recordWriter) Flush() error { + _, err := w.buf.WriteTo(w.out) // resets buf + return errz.Err(err) +} + +// Close implements output.RecordWriter. +func (w *recordWriter) Close() error { + err := w.Flush() + if err != nil { + return err + } + + const footer = ` +
") + w.buf.WriteString(field.Name()) + w.buf.WriteString("
+ + + +` + + _, err = w.out.Write([]byte(footer)) + return errz.Err(err) +} + +func (w *recordWriter) writeRecord(rec sqlz.Record) error { + w.buf.WriteString(" \n") + + var s string + for i, field := range rec { + w.buf.WriteString(" ") + + switch val := field.(type) { + default: + s = html.EscapeString(fmt.Sprintf("%v", val)) + // should never happen + case nil: + // nil is rendered as empty string, which this cell already is + case *int64: + s = strconv.FormatInt(*val, 10) + case *string: + s = html.EscapeString(*val) + case *bool: + s = strconv.FormatBool(*val) + case *float64: + s = stringz.FormatFloat(*val) + case *[]byte: + s = base64.StdEncoding.EncodeToString(*val) + case *time.Time: + switch w.recMeta[i].Kind() { + default: + s = val.Format(stringz.DatetimeFormat) + case sqlz.KindTime: + s = val.Format(stringz.TimeFormat) + case sqlz.KindDate: + s = val.Format(stringz.DateFormat) + } + } + + w.buf.WriteString(s) + w.buf.WriteString("\n") + } + + w.buf.WriteString(" \n") + + return nil +} + +// WriteRecords implements output.RecordWriter. +func (w *recordWriter) WriteRecords(recs []sqlz.Record) error { + var err error + for _, rec := range recs { + err = w.writeRecord(rec) + if err != nil { + return err + } + } + + return nil +} diff --git a/cli/output/htmlw/htmlw_test.go b/cli/output/htmlw/htmlw_test.go new file mode 100644 index 00000000..1804f4bf --- /dev/null +++ b/cli/output/htmlw/htmlw_test.go @@ -0,0 +1,44 @@ +package htmlw_test + +import ( + "bytes" + "io/ioutil" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output/htmlw" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestRecordWriter(t *testing.T) { + testCases := []struct { + name string + numRecs int + fixtPath string + }{ + {name: "actor_0", numRecs: 0, fixtPath: "testdata/actor_0_rows.html"}, + {name: "actor_3", numRecs: 3, fixtPath: "testdata/actor_3_rows.html"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + recMeta, recs := testh.RecordsFromTbl(t, sakila.SL3, sakila.TblActor) + recs = recs[0:tc.numRecs] + + buf := &bytes.Buffer{} + w := htmlw.NewRecordWriter(buf) + require.NoError(t, w.Open(recMeta)) + + require.NoError(t, w.WriteRecords(recs)) + require.NoError(t, w.Close()) + + want, err := ioutil.ReadFile(tc.fixtPath) + require.NoError(t, err) + require.Equal(t, string(want), buf.String()) + }) + } +} diff --git a/cli/output/htmlw/testdata/actor_0_rows.html b/cli/output/htmlw/testdata/actor_0_rows.html new file mode 100644 index 00000000..fbcff49b --- /dev/null +++ b/cli/output/htmlw/testdata/actor_0_rows.html @@ -0,0 +1,28 @@ + + + +sq output + + + + + + + + + + + + + + + + + + + + +
actor_idfirst_namelast_namelast_update
+ + + diff --git a/cli/output/htmlw/testdata/actor_3_rows.html b/cli/output/htmlw/testdata/actor_3_rows.html new file mode 100644 index 00000000..2fed3038 --- /dev/null +++ b/cli/output/htmlw/testdata/actor_3_rows.html @@ -0,0 +1,46 @@ + + + +sq output + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
actor_idfirst_namelast_namelast_update
1PENELOPEGUINESS2020-06-11T02:50:54Z
2NICKWAHLBERG2020-06-11T02:50:54Z
3EDCHASE2020-06-11T02:50:54Z
+ + + diff --git a/cli/output/jsonw/README.md b/cli/output/jsonw/README.md new file mode 100644 index 00000000..085c7cb6 --- /dev/null +++ b/cli/output/jsonw/README.md @@ -0,0 +1,57 @@ +# Package `jsonw` + +Package `jsonw` implements JSON output writers. + +Note that there are three implementations of `output.RecordWriter`. + +- `NewStdRecordWriter` returns a writer that outputs in "standard" JSON. +- `NewArrayRecordWriter` outputs each record on its own line as an element of a JSON array. +- `NewObjectRecordWriter` outputs each record as a JSON object on its own line. + +These `RecordWriter`s correspond to the `--json`, `--jsona`, and `--jsonl` flags (where `jsonl` means "JSON Lines"). There are also other writer implementations, such as an `output.ErrorWriter` and an `output.MetadataWriter`. + + +#### Standard JSON `--json`: + +```json +[ + { + "actor_id": 1, + "first_name": "PENELOPE", + "last_name": "GUINESS", + "last_update": "2020-06-11T02:50:54Z" + }, + { + "actor_id": 2, + "first_name": "NICK", + "last_name": "WAHLBERG", + "last_update": "2020-06-11T02:50:54Z" + } +] +``` + +#### JSON Array `--jsona`: + +```json +[1, "PENELOPE", "GUINESS", "2020-06-11T02:50:54Z"] +[2, "NICK", "WAHLBERG", "2020-06-11T02:50:54Z"] +``` + +#### Object aka JSON Lines `--jsonl`: + +```json +{"actor_id": 1, "first_name": "PENELOPE", "last_name": "GUINESS", "last_update": "2020-06-11T02:50:54Z"} +{"actor_id": 2, "first_name": "NICK", "last_name": "WAHLBERG", "last_update": "2020-06-11T02:50:54Z"} +``` + +## Notes + +At the time of development there was not a JSON encoder library available that provided the functionality that `sq` required. These requirements: + +- Optional colorization +- Optional pretty-printing (indentation, spacing) +- Preservation of the order of record fields (columns). + +For the `RecordWriter` implementations, given the known "flat" structure of a record, it was relatively straightforward to create custom writers for each type of JSON output. + +For general-purpose JSON output (such as metadata output), it was necessary to modify an existing JSON library to provide colorization (and also on-the-fly indentation). After benchmarking, the [segmentio.io encoder](https://github.com/segmentio/encoding) was selected as the base library. Rather than a separate forked project (which probably would not make sense to ever merge with its parent project), the modified encoder is found in `jsonw/internal/jcolorenc`. diff --git a/cli/output/jsonw/encode.go b/cli/output/jsonw/encode.go new file mode 100644 index 00000000..2be1a67c --- /dev/null +++ b/cli/output/jsonw/encode.go @@ -0,0 +1,397 @@ +package jsonw + +import ( + "encoding/base64" + "strconv" + "time" + "unicode/utf8" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/cli/output/jsonw/internal" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// monoEncoder provides methods for encoding JSON values +// without colorization (that is, in monochrome). +type monoEncoder struct { +} + +func (e monoEncoder) encodeTime(b []byte, v interface{}) ([]byte, error) { + return e.doEncodeTime(b, v, stringz.TimeFormat) +} + +func (e monoEncoder) encodeDatetime(b []byte, v interface{}) ([]byte, error) { + return e.doEncodeTime(b, v, stringz.DatetimeFormat) +} + +func (e monoEncoder) encodeDate(b []byte, v interface{}) ([]byte, error) { + return e.doEncodeTime(b, v, stringz.DateFormat) +} + +func (e monoEncoder) doEncodeTime(b []byte, v interface{}, layout string) ([]byte, error) { + switch v := v.(type) { + case nil: + return append(b, "null"...), nil + case *time.Time: + b = append(b, '"') + b = v.AppendFormat(b, layout) + b = append(b, '"') + return b, nil + case *string: + // If we've got a string, assume it's in the correct format + return encodeString(b, *v, false) + default: + return b, errz.Errorf("unsupported time type %T: %v", v, v) + } +} + +func (e monoEncoder) encodeAny(b []byte, v interface{}) ([]byte, error) { + switch v := v.(type) { + default: + return b, errz.Errorf("unexpected record field type %T: %#v", v, v) + + case nil: + return append(b, "null"...), nil + + case *int64: + return strconv.AppendInt(b, *v, 10), nil + + case *float64: + return append(b, stringz.FormatFloat(*v)...), nil + + case *bool: + return strconv.AppendBool(b, *v), nil + + case *[]byte: + var err error + b, err = encodeBytes(b, *v) + if err != nil { + return b, errz.Err(err) + } + return b, nil + + case *string: + var err error + b, err = encodeString(b, *v, false) + if err != nil { + return b, errz.Err(err) + } + return b, nil + + case *time.Time: + b = append(b, '"') + b = v.AppendFormat(b, stringz.DatetimeFormat) + b = append(b, '"') + return b, nil + } +} + +// colorEncoder provides methods for encoding JSON values +// with color. +type colorEncoder struct { + clrs internal.Colors +} + +func (e *colorEncoder) encodeTime(b []byte, v interface{}) ([]byte, error) { + return e.doEncodeTime(b, v, stringz.TimeFormat) +} + +func (e *colorEncoder) encodeDatetime(b []byte, v interface{}) ([]byte, error) { + return e.doEncodeTime(b, v, stringz.DatetimeFormat) +} + +func (e *colorEncoder) encodeDate(b []byte, v interface{}) ([]byte, error) { + return e.doEncodeTime(b, v, stringz.DateFormat) +} + +func (e *colorEncoder) doEncodeTime(b []byte, v interface{}, layout string) ([]byte, error) { + start := len(b) + + switch v := v.(type) { + case nil: + return e.clrs.AppendNull(b), nil + case *time.Time: + b = append(b, e.clrs.Time.Prefix...) + b = append(b, '"') + b = v.AppendFormat(b, layout) + b = append(b, '"') + b = append(b, e.clrs.Time.Suffix...) + return b, nil + case *string: + // If we've got a string, assume it's in the correct format + b = append(b, e.clrs.Time.Prefix...) + var err error + b, err = encodeString(b, *v, false) + if err != nil { + return b[0:start], err + } + b = append(b, e.clrs.Time.Suffix...) + return b, nil + default: + return b, errz.Errorf("unsupported time type %T: %v", v, v) + } +} + +func (e *colorEncoder) encodeAny(b []byte, v interface{}) ([]byte, error) { + switch v := v.(type) { + default: + return b, errz.Errorf("unexpected record field type %T: %#v", v, v) + + case nil: + return e.clrs.AppendNull(b), nil + + case *int64: + b = append(b, e.clrs.Number.Prefix...) + b = strconv.AppendInt(b, *v, 10) + return append(b, e.clrs.Number.Suffix...), nil + + case *float64: + b = append(b, e.clrs.Number.Prefix...) + b = append(b, stringz.FormatFloat(*v)...) + return append(b, e.clrs.Number.Suffix...), nil + + case *bool: + b = append(b, e.clrs.Bool.Prefix...) + b = strconv.AppendBool(b, *v) + return append(b, e.clrs.Bool.Suffix...), nil + + case *[]byte: + var err error + b = append(b, e.clrs.Bytes.Prefix...) + b, err = encodeBytes(b, *v) + if err != nil { + return b, errz.Err(err) + } + b = append(b, e.clrs.Bytes.Suffix...) + return b, nil + + case *string: + b = append(b, e.clrs.String.Prefix...) + var err error + b, err = encodeString(b, *v, false) + if err != nil { + return b, errz.Err(err) + } + return append(b, e.clrs.String.Suffix...), nil + + case *time.Time: + b = append(b, e.clrs.Time.Prefix...) + b = append(b, '"') + b = v.AppendFormat(b, stringz.DatetimeFormat) + b = append(b, '"') + return append(b, e.clrs.Time.Suffix...), nil + } +} + +// punc holds the byte values of JSON punctuation chars +// like left bracket "[", right brace "}" etc. When +// colorizing, these values will include the terminal color codes. +type punc struct { + comma []byte + colon []byte + lBrace []byte + rBrace []byte + lBracket []byte + rBracket []byte + // null is also included in punc just for convenience + null []byte +} + +func newPunc(fm *output.Formatting) punc { + var p punc + + if fm == nil || fm.IsMonochrome() || !fm.Pretty { + p.comma = append(p.comma, ',') + p.colon = append(p.colon, ':') + p.lBrace = append(p.lBrace, '{') + p.rBrace = append(p.rBrace, '}') + p.lBracket = append(p.lBracket, '[') + p.rBracket = append(p.rBracket, ']') + p.null = append(p.null, "null"...) + return p + } + + clrs := internal.NewColors(fm) + p.comma = clrs.AppendPunc(p.comma, ',') + p.colon = clrs.AppendPunc(p.colon, ':') + p.lBrace = clrs.AppendPunc(p.lBrace, '{') + p.rBrace = clrs.AppendPunc(p.rBrace, '}') + p.lBracket = clrs.AppendPunc(p.lBracket, '[') + p.rBracket = clrs.AppendPunc(p.rBracket, ']') + p.null = clrs.AppendNull(p.null) + return p +} + +func getFieldEncoders(recMeta sqlz.RecordMeta, fm *output.Formatting) []func(b []byte, v interface{}) ([]byte, error) { + encodeFns := make([]func(b []byte, v interface{}) ([]byte, error), len(recMeta)) + + if fm.IsMonochrome() { + enc := monoEncoder{} + + for i := 0; i < len(recMeta); i++ { + switch recMeta[i].Kind() { + case sqlz.KindTime: + encodeFns[i] = enc.encodeTime + case sqlz.KindDate: + encodeFns[i] = enc.encodeDate + case sqlz.KindDatetime: + encodeFns[i] = enc.encodeDatetime + default: + encodeFns[i] = enc.encodeAny + } + } + + return encodeFns + } + + clrs := internal.NewColors(fm) + + // Else, we want color encoders + enc := &colorEncoder{clrs: clrs} + for i := 0; i < len(recMeta); i++ { + switch recMeta[i].Kind() { + case sqlz.KindTime: + encodeFns[i] = enc.encodeTime + case sqlz.KindDate: + encodeFns[i] = enc.encodeDate + case sqlz.KindDatetime: + encodeFns[i] = enc.encodeDatetime + default: + encodeFns[i] = enc.encodeAny + } + } + + return encodeFns +} + +// encodeString encodes s, appending to b and returning +// the resulting []byte. +func encodeString(b []byte, s string, escapeHTML bool) ([]byte, error) { //nolint:unparam + // This function is copied from the segment.io JSON encoder. + const hex = "0123456789abcdef" + + i := 0 + j := 0 + + b = append(b, '"') + + for j < len(s) { + c := s[j] + + if c >= 0x20 && c <= 0x7f && c != '\\' && c != '"' && (!escapeHTML || (c != '<' && c != '>' && c != '&')) { + // fast path: most of the time, printable ascii characters are used + j++ + continue + } + + switch c { + case '\\', '"': + b = append(b, s[i:j]...) + b = append(b, '\\', c) + i = j + 1 + j++ + continue + + case '\n': + b = append(b, s[i:j]...) + b = append(b, '\\', 'n') + i = j + 1 + j++ + continue + + case '\r': + b = append(b, s[i:j]...) + b = append(b, '\\', 'r') + i = j + 1 + j++ + continue + + case '\t': + b = append(b, s[i:j]...) + b = append(b, '\\', 't') + i = j + 1 + j++ + continue + + case '<', '>', '&': + b = append(b, s[i:j]...) + b = append(b, `\u00`...) + b = append(b, hex[c>>4], hex[c&0xF]) + i = j + 1 + j++ + continue + } + + // This encodes bytes < 0x20 except for \t, \n and \r. + if c < 0x20 { + b = append(b, s[i:j]...) + b = append(b, `\u00`...) + b = append(b, hex[c>>4], hex[c&0xF]) + i = j + 1 + j++ + continue + } + + r, size := utf8.DecodeRuneInString(s[j:]) + + if r == utf8.RuneError && size == 1 { + b = append(b, s[i:j]...) + b = append(b, `\ufffd`...) + i = j + size + j += size + continue + } + + switch r { + case '\u2028', '\u2029': + // U+2028 is LINE SEPARATOR. + // U+2029 is PARAGRAPH SEPARATOR. + // They are both technically valid characters in JSON strings, + // but don't work in JSONP, which has to be evaluated as JavaScript, + // and can lead to security holes there. It is valid JSON to + // escape them, so we do so unconditionally. + // See http://timelessrepo.com/json-isnt-a-javascript-subset for discussion. + b = append(b, s[i:j]...) + b = append(b, `\u202`...) + b = append(b, hex[r&0xF]) + i = j + size + j += size + continue + } + + j += size + } + + b = append(b, s[i:]...) + b = append(b, '"') + return b, nil +} + +// encodeBytes encodes v in base64 and appends to b, returning +// the resulting slice. +func encodeBytes(b, v []byte) ([]byte, error) { // nolint:unparam + // This function is copied from the segment.io JSON encoder. + + if v == nil { + return append(b, "null"...), nil + } + + n := base64.StdEncoding.EncodedLen(len(v)) + 2 + + if avail := cap(b) - len(b); avail < n { + newB := make([]byte, cap(b)+(n-avail)) + copy(newB, b) + b = newB[:len(b)] + } + + i := len(b) + j := len(b) + n + + b = b[:j] + b[i] = '"' + base64.StdEncoding.Encode(b[i+1:j-1], v) + b[j-1] = '"' + return b, nil +} diff --git a/cli/output/jsonw/errorw.go b/cli/output/jsonw/errorw.go new file mode 100644 index 00000000..c6b47bc1 --- /dev/null +++ b/cli/output/jsonw/errorw.go @@ -0,0 +1,43 @@ +package jsonw + +import ( + "fmt" + "io" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/cli/output" +) + +// errorWriter implements output.ErrorWriter. +type errorWriter struct { + log lg.Log + out io.Writer + fm *output.Formatting +} + +// NewErrorWriter returns an output.ErrorWriter that outputs in JSON. +func NewErrorWriter(log lg.Log, out io.Writer, fm *output.Formatting) output.ErrorWriter { + return &errorWriter{log: log, out: out, fm: fm} +} + +// Error implements output.ErrorWriter. +func (w *errorWriter) Error(err error) { + const tplNoPretty = "{%s: %s}" + tplPretty := "{\n" + w.fm.Indent + "%s" + ": %s\n}" + + b, err2 := encodeString(nil, err.Error(), false) + w.log.WarnIfError(err2) + + key := w.fm.Key.Sprint(`"error"`) + val := w.fm.Error.Sprint(string(b)) // trim the newline + + var s string + if w.fm.Pretty { + s = fmt.Sprintf(tplPretty, key, val) + } else { + s = fmt.Sprintf(tplNoPretty, key, val) + } + + fmt.Fprintln(w.out, s) +} diff --git a/cli/output/jsonw/internal/benchmark_test.go b/cli/output/jsonw/internal/benchmark_test.go new file mode 100644 index 00000000..b50fa2db --- /dev/null +++ b/cli/output/jsonw/internal/benchmark_test.go @@ -0,0 +1,125 @@ +package internal_test + +import ( + stdj "encoding/json" + "io/ioutil" + "testing" + + segmentj "github.com/segmentio/encoding/json" + + jcolorenc "github.com/neilotoole/sq/cli/output/jsonw/internal/jcolorenc" + + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +// The following benchmarks compare the encoding performance +// of JSON encoders. These are: +// +// - stdj: the std lib json encoder +// - segmentj: the encoder by segment.io +// - jcolorenc: sq's fork of segmentj that supports color + +func BenchmarkStdj(b *testing.B) { + _, recs := testh.RecordsFromTbl(b, sakila.SL3, "payment") + b.ResetTimer() + + for n := 0; n < b.N; n++ { + enc := stdj.NewEncoder(ioutil.Discard) + enc.SetEscapeHTML(false) + + for i := range recs { + err := enc.Encode(recs[i]) + if err != nil { + b.Error(err) + } + } + } +} + +func BenchmarkStdj_Indent(b *testing.B) { + _, recs := testh.RecordsFromTbl(b, sakila.SL3, "payment") + b.ResetTimer() + + for n := 0; n < b.N; n++ { + enc := stdj.NewEncoder(ioutil.Discard) + enc.SetEscapeHTML(false) + enc.SetIndent("", " ") + + for i := range recs { + err := enc.Encode(recs[i]) + if err != nil { + b.Error(err) + } + } + } +} + +func BenchmarkSegmentj(b *testing.B) { + _, recs := testh.RecordsFromTbl(b, sakila.SL3, "payment") + b.ResetTimer() + + for n := 0; n < b.N; n++ { + enc := segmentj.NewEncoder(ioutil.Discard) + enc.SetEscapeHTML(false) + + for i := range recs { + err := enc.Encode(recs[i]) + if err != nil { + b.Error(err) + } + } + } +} + +func BenchmarkSegmentj_Indent(b *testing.B) { + _, recs := testh.RecordsFromTbl(b, sakila.SL3, "payment") + b.ResetTimer() + + for n := 0; n < b.N; n++ { + enc := segmentj.NewEncoder(ioutil.Discard) + enc.SetEscapeHTML(false) + enc.SetIndent("", " ") + + for i := range recs { + err := enc.Encode(recs[i]) + if err != nil { + b.Error(err) + } + } + } +} +func BenchmarkJColorEnc(b *testing.B) { + _, recs := testh.RecordsFromTbl(b, sakila.SL3, "payment") + b.ResetTimer() + + for n := 0; n < b.N; n++ { + enc := jcolorenc.NewEncoder(ioutil.Discard) + enc.SetEscapeHTML(false) + + for i := range recs { + err := enc.Encode(recs[i]) + if err != nil { + b.Error(err) + } + } + } +} + +func BenchmarkJColorEnc_Indent(b *testing.B) { + _, recs := testh.RecordsFromTbl(b, sakila.SL3, "payment") + b.ResetTimer() + + for n := 0; n < b.N; n++ { + enc := jcolorenc.NewEncoder(ioutil.Discard) + enc.SetEscapeHTML(false) + enc.SetIndent("", " ") + + for i := range recs { + err := enc.Encode(recs[i]) + if err != nil { + b.Error(err) + } + } + } +} diff --git a/cli/output/jsonw/internal/internal.go b/cli/output/jsonw/internal/internal.go new file mode 100644 index 00000000..f0c88c4b --- /dev/null +++ b/cli/output/jsonw/internal/internal.go @@ -0,0 +1,122 @@ +package internal + +import ( + "bytes" + "strconv" + + fcolor "github.com/fatih/color" + + "github.com/neilotoole/sq/cli/output" +) + +// Colors encapsulates colorization of JSON output. +type Colors struct { + Null Color + Bool Color + Number Color + String Color + Key Color + Bytes Color + Time Color + Punc Color +} + +// AppendNull appends a colorized "null" to b. +func (c Colors) AppendNull(b []byte) []byte { + b = append(b, c.Null.Prefix...) + b = append(b, "null"...) + return append(b, c.Null.Suffix...) +} + +// AppendBool appends the colorized bool v to b. +func (c Colors) AppendBool(b []byte, v bool) []byte { + b = append(b, c.Bool.Prefix...) + + if v { + b = append(b, "true"...) + } else { + b = append(b, "false"...) + } + + return append(b, c.Bool.Suffix...) +} + +// AppendKey appends the colorized key v to b. +func (c Colors) AppendKey(b []byte, v []byte) []byte { + b = append(b, c.Key.Prefix...) + b = append(b, v...) + return append(b, c.Key.Suffix...) +} + +// AppendInt64 appends the colorized int64 v to b. +func (c Colors) AppendInt64(b []byte, v int64) []byte { + b = append(b, c.Number.Prefix...) + b = strconv.AppendInt(b, v, 10) + return append(b, c.Number.Suffix...) +} + +// AppendUint64 appends the colorized uint64 v to b. +func (c Colors) AppendUint64(b []byte, v uint64) []byte { + b = append(b, c.Number.Prefix...) + b = strconv.AppendUint(b, v, 10) + return append(b, c.Number.Suffix...) +} + +// AppendPunc appends the colorized punctuation mark v to b. +func (c Colors) AppendPunc(b []byte, v byte) []byte { + b = append(b, c.Punc.Prefix...) + b = append(b, v) + return append(b, c.Punc.Suffix...) +} + +// Color is used to render terminal colors. The Prefix +// value is written, then the actual value, then the suffix. +type Color struct { + // Prefix is the terminal color code prefix to print before the value (may be empty). + Prefix []byte + + // Suffix is the terminal color code suffix to print after the value (may be empty). + Suffix []byte +} + +// newColor creates a Color instance from a fatih/color instance. +func newColor(c *fcolor.Color) Color { + // Dirty conversion function ahead: print + // a space using c, then grab the bytes printed + // before and after the space, and those are the + // bytes we need for the prefix and suffix. + + if c == nil { + return Color{} + } + + // Make a copy because the pkg-level color.NoColor could be false. + c2 := *c + c2.EnableColor() + + b := []byte(c2.Sprint(" ")) + i := bytes.IndexByte(b, ' ') + if i <= 0 { + return Color{} + } + + return Color{Prefix: b[:i], Suffix: b[i+1:]} +} + +// NewColors builds a Colors instance from a Formatting instance. +func NewColors(fm *output.Formatting) Colors { + if fm == nil || fm.IsMonochrome() { + return Colors{} + } + + return Colors{ + Null: newColor(fm.Null), + Bool: newColor(fm.Bool), + Bytes: newColor(fm.Bytes), + Number: newColor(fm.Number), + String: newColor(fm.String), + Time: newColor(fm.Datetime), + Key: newColor(fm.Key), + Punc: newColor(fm.Punc), + } +} diff --git a/cli/output/jsonw/internal/internal_test.go b/cli/output/jsonw/internal/internal_test.go new file mode 100644 index 00000000..c2dfe186 --- /dev/null +++ b/cli/output/jsonw/internal/internal_test.go @@ -0,0 +1,497 @@ +package internal_test + +import ( + "bytes" + "fmt" + "testing" + + "github.com/stretchr/testify/require" + + stdjson "encoding/json" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/cli/output/jsonw/internal" + jcolorenc "github.com/neilotoole/sq/cli/output/jsonw/internal/jcolorenc" +) + +// Encoder encapsulates the methods of a JSON encoder. +type Encoder interface { + Encode(v interface{}) error + SetEscapeHTML(on bool) + SetIndent(prefix, indent string) +} + +var _ Encoder = (*jcolorenc.Encoder)(nil) + +func TestEncode(t *testing.T) { + testCases := []struct { + name string + pretty bool + color bool + sortMap bool + v interface{} + want string + }{ + {name: "nil", pretty: true, v: nil, want: "null\n"}, + {name: "slice_empty", pretty: true, v: []int{}, want: "[]\n"}, + {name: "slice_1_pretty", pretty: true, v: []interface{}{1}, want: "[\n 1\n]\n"}, + {name: "slice_1_no_pretty", v: []interface{}{1}, want: "[1]\n"}, + {name: "slice_2_pretty", pretty: true, v: []interface{}{1, true}, want: "[\n 1,\n true\n]\n"}, + {name: "slice_2_no_pretty", v: []interface{}{1, true}, want: "[1,true]\n"}, + {name: "map_int_empty", pretty: true, v: map[string]int{}, want: "{}\n"}, + {name: "map_interface_empty", pretty: true, v: map[string]interface{}{}, want: "{}\n"}, + {name: "map_interface_empty_sorted", pretty: true, sortMap: true, v: map[string]interface{}{}, want: "{}\n"}, + {name: "map_1_pretty", pretty: true, sortMap: true, v: map[string]interface{}{"one": 1}, want: "{\n \"one\": 1\n}\n"}, + {name: "map_1_no_pretty", sortMap: true, v: map[string]interface{}{"one": 1}, want: "{\"one\":1}\n"}, + {name: "map_2_pretty", pretty: true, sortMap: true, v: map[string]interface{}{"one": 1, "two": 2}, want: "{\n \"one\": 1,\n \"two\": 2\n}\n"}, + {name: "map_2_no_pretty", sortMap: true, v: map[string]interface{}{"one": 1, "two": 2}, want: "{\"one\":1,\"two\":2}\n"}, + {name: "tinystruct", pretty: true, v: TinyStruct{FBool: true}, want: "{\n \"f_bool\": true\n}\n"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(tc.sortMap) + enc.SetColors(internal.NewColors(fm)) + + if fm.Pretty { + enc.SetIndent("", fm.Indent) + } + + require.NoError(t, enc.Encode(tc.v)) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +func TestEncode_Slice(t *testing.T) { + testCases := []struct { + name string + pretty bool + color bool + v []interface{} + want string + }{ + {name: "nil", pretty: true, v: nil, want: "null\n"}, + {name: "empty", pretty: true, v: []interface{}{}, want: "[]\n"}, + {name: "one", pretty: true, v: []interface{}{1}, want: "[\n 1\n]\n"}, + {name: "two", pretty: true, v: []interface{}{1, true}, want: "[\n 1,\n true\n]\n"}, + {name: "three", pretty: true, v: []interface{}{1, true, "hello"}, want: "[\n 1,\n true,\n \"hello\"\n]\n"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetColors(internal.NewColors(fm)) + if fm.Pretty { + enc.SetIndent("", " ") + } + + require.NoError(t, enc.Encode(tc.v)) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +func TestEncode_SmallStruct(t *testing.T) { + v := SmallStruct{ + FInt: 7, + FSlice: []interface{}{64, true}, + FMap: map[string]interface{}{ + "m_float64": 64.64, + "m_string": "hello", + }, + FTinyStruct: TinyStruct{FBool: true}, + FString: "hello", + } + + testCases := []struct { + pretty bool + color bool + want string + }{ + {pretty: false, color: false, want: "{\"f_int\":7,\"f_slice\":[64,true],\"f_map\":{\"m_float64\":64.64,\"m_string\":\"hello\"},\"f_tinystruct\":{\"f_bool\":true},\"f_string\":\"hello\"}\n"}, + {pretty: true, color: false, want: "{\n \"f_int\": 7,\n \"f_slice\": [\n 64,\n true\n ],\n \"f_map\": {\n \"m_float64\": 64.64,\n \"m_string\": \"hello\"\n },\n \"f_tinystruct\": {\n \"f_bool\": true\n },\n \"f_string\": \"hello\"\n}\n"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(fmt.Sprintf("pretty_%v__color_%v", tc.pretty, tc.color), func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(true) + enc.SetColors(internal.NewColors(fm)) + + if fm.Pretty { + enc.SetIndent("", " ") + } + + require.NoError(t, enc.Encode(v)) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +func TestEncode_Map_Nested(t *testing.T) { + v := map[string]interface{}{ + "m_bool1": true, + "m_nest1": map[string]interface{}{ + "m_nest1_bool": true, + "m_nest2": map[string]interface{}{ + "m_nest2_bool": true, + "m_nest3": map[string]interface{}{ + "m_nest3_bool": true, + }, + }, + }, + "m_string1": "hello", + } + + testCases := []struct { + pretty bool + color bool + want string + }{ + {pretty: false, want: "{\"m_bool1\":true,\"m_nest1\":{\"m_nest1_bool\":true,\"m_nest2\":{\"m_nest2_bool\":true,\"m_nest3\":{\"m_nest3_bool\":true}}},\"m_string1\":\"hello\"}\n"}, + {pretty: true, want: "{\n \"m_bool1\": true,\n \"m_nest1\": {\n \"m_nest1_bool\": true,\n \"m_nest2\": {\n \"m_nest2_bool\": true,\n \"m_nest3\": {\n \"m_nest3_bool\": true\n }\n }\n },\n \"m_string1\": \"hello\"\n}\n"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(fmt.Sprintf("pretty_%v__color_%v", tc.pretty, tc.color), func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(true) + enc.SetColors(internal.NewColors(fm)) + + if fm.Pretty { + enc.SetIndent("", " ") + } + + require.NoError(t, enc.Encode(v)) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +// TestEncode_Map_StringNotInterface tests maps with a string key +// but the value type is not interface{}. +// For example, map[string]bool. This test is necessary because the +// encoder has a fast path for map[string]interface{} +func TestEncode_Map_StringNotInterface(t *testing.T) { + testCases := []struct { + pretty bool + color bool + sortMap bool + v map[string]bool + want string + }{ + {pretty: false, sortMap: true, v: map[string]bool{}, want: "{}\n"}, + {pretty: false, sortMap: false, v: map[string]bool{}, want: "{}\n"}, + {pretty: true, sortMap: true, v: map[string]bool{}, want: "{}\n"}, + {pretty: true, sortMap: false, v: map[string]bool{}, want: "{}\n"}, + {pretty: false, sortMap: true, v: map[string]bool{"one": true}, want: "{\"one\":true}\n"}, + {pretty: false, sortMap: false, v: map[string]bool{"one": true}, want: "{\"one\":true}\n"}, + {pretty: false, sortMap: true, v: map[string]bool{"one": true, "two": false}, want: "{\"one\":true,\"two\":false}\n"}, + {pretty: true, sortMap: true, v: map[string]bool{"one": true, "two": false}, want: "{\n \"one\": true,\n \"two\": false\n}\n"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(fmt.Sprintf("size_%d__pretty_%v__color_%v", len(tc.v), tc.pretty, tc.color), func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(tc.sortMap) + enc.SetColors(internal.NewColors(fm)) + if fm.Pretty { + enc.SetIndent("", fm.Indent) + } + + require.NoError(t, enc.Encode(tc.v)) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +func TestEncode_RawMessage(t *testing.T) { + type RawStruct struct { + FString string `json:"f_string"` + FRaw jcolorenc.RawMessage `json:"f_raw"` + } + + raw := jcolorenc.RawMessage(`{"one":1,"two":2}`) + + testCases := []struct { + name string + pretty bool + color bool + v interface{} + want string + }{ + {name: "empty", pretty: false, v: jcolorenc.RawMessage(`{}`), want: "{}\n"}, + {name: "no_pretty", pretty: false, v: raw, want: "{\"one\":1,\"two\":2}\n"}, + {name: "pretty", pretty: true, v: raw, want: "{\n \"one\": 1,\n \"two\": 2\n}\n"}, + {name: "pretty_struct", pretty: true, v: RawStruct{FString: "hello", FRaw: raw}, want: "{\n \"f_string\": \"hello\",\n \"f_raw\": {\n \"one\": 1,\n \"two\": 2\n }\n}\n"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(true) + enc.SetColors(internal.NewColors(fm)) + if fm.Pretty { + enc.SetIndent("", fm.Indent) + } + + err := enc.Encode(tc.v) + require.NoError(t, err) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +// TestEncode_Map_StringNotInterface tests map[string]json.RawMessage. +// This test is necessary because the encoder has a fast path +// for map[string]interface{} +func TestEncode_Map_StringRawMessage(t *testing.T) { + raw := jcolorenc.RawMessage(`{"one":1,"two":2}`) + + testCases := []struct { + pretty bool + color bool + sortMap bool + v map[string]jcolorenc.RawMessage + want string + }{ + {pretty: false, sortMap: true, v: map[string]jcolorenc.RawMessage{}, want: "{}\n"}, + {pretty: false, sortMap: false, v: map[string]jcolorenc.RawMessage{}, want: "{}\n"}, + {pretty: true, sortMap: true, v: map[string]jcolorenc.RawMessage{}, want: "{}\n"}, + {pretty: true, sortMap: false, v: map[string]jcolorenc.RawMessage{}, want: "{}\n"}, + {pretty: false, sortMap: true, v: map[string]jcolorenc.RawMessage{"msg1": raw, "msg2": raw}, want: "{\"msg1\":{\"one\":1,\"two\":2},\"msg2\":{\"one\":1,\"two\":2}}\n"}, + {pretty: true, sortMap: true, v: map[string]jcolorenc.RawMessage{"msg1": raw, "msg2": raw}, want: "{\n \"msg1\": {\n \"one\": 1,\n \"two\": 2\n },\n \"msg2\": {\n \"one\": 1,\n \"two\": 2\n }\n}\n"}, + {pretty: true, sortMap: false, v: map[string]jcolorenc.RawMessage{"msg1": raw}, want: "{\n \"msg1\": {\n \"one\": 1,\n \"two\": 2\n }\n}\n"}, + } + + for _, tc := range testCases { + tc := tc + + name := fmt.Sprintf("size_%d__pretty_%v__color_%v__sort_%v", len(tc.v), tc.pretty, tc.color, tc.sortMap) + t.Run(name, func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(tc.sortMap) + enc.SetColors(internal.NewColors(fm)) + if fm.Pretty { + enc.SetIndent("", fm.Indent) + } + + require.NoError(t, enc.Encode(tc.v)) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +func TestEncode_BigStruct(t *testing.T) { + v := newBigStruct() + + testCases := []struct { + pretty bool + color bool + want string + }{ + {pretty: false, want: "{\"f_int\":-7,\"f_int8\":-8,\"f_int16\":-16,\"f_int32\":-32,\"f_int64\":-64,\"f_uint\":7,\"f_uint8\":8,\"f_uint16\":16,\"f_uint32\":32,\"f_uint64\":64,\"f_float32\":32.32,\"f_float64\":64.64,\"f_bool\":true,\"f_bytes\":\"aGVsbG8=\",\"f_nil\":null,\"f_string\":\"hello\",\"f_map\":{\"m_bool\":true,\"m_int64\":64,\"m_nil\":null,\"m_smallstruct\":{\"f_int\":7,\"f_slice\":[64,true],\"f_map\":{\"m_float64\":64.64,\"m_string\":\"hello\"},\"f_tinystruct\":{\"f_bool\":true},\"f_string\":\"hello\"},\"m_string\":\"hello\"},\"f_smallstruct\":{\"f_int\":7,\"f_slice\":[64,true],\"f_map\":{\"m_float64\":64.64,\"m_string\":\"hello\"},\"f_tinystruct\":{\"f_bool\":true},\"f_string\":\"hello\"},\"f_interface\":\"hello\",\"f_interfaces\":[64,\"hello\",true]}\n"}, + {pretty: true, want: "{\n \"f_int\": -7,\n \"f_int8\": -8,\n \"f_int16\": -16,\n \"f_int32\": -32,\n \"f_int64\": -64,\n \"f_uint\": 7,\n \"f_uint8\": 8,\n \"f_uint16\": 16,\n \"f_uint32\": 32,\n \"f_uint64\": 64,\n \"f_float32\": 32.32,\n \"f_float64\": 64.64,\n \"f_bool\": true,\n \"f_bytes\": \"aGVsbG8=\",\n \"f_nil\": null,\n \"f_string\": \"hello\",\n \"f_map\": {\n \"m_bool\": true,\n \"m_int64\": 64,\n \"m_nil\": null,\n \"m_smallstruct\": {\n \"f_int\": 7,\n \"f_slice\": [\n 64,\n true\n ],\n \"f_map\": {\n \"m_float64\": 64.64,\n \"m_string\": \"hello\"\n },\n \"f_tinystruct\": {\n \"f_bool\": true\n },\n \"f_string\": \"hello\"\n },\n \"m_string\": \"hello\"\n },\n \"f_smallstruct\": {\n \"f_int\": 7,\n \"f_slice\": [\n 64,\n true\n ],\n \"f_map\": {\n \"m_float64\": 64.64,\n \"m_string\": \"hello\"\n },\n \"f_tinystruct\": {\n \"f_bool\": true\n },\n \"f_string\": \"hello\"\n },\n \"f_interface\": \"hello\",\n \"f_interfaces\": [\n 64,\n \"hello\",\n true\n ]\n}\n"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(fmt.Sprintf("pretty_%v__color_%v", tc.pretty, tc.color), func(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(true) + enc.SetColors(internal.NewColors(fm)) + + if fm.Pretty { + enc.SetIndent("", " ") + } + + require.NoError(t, enc.Encode(v)) + require.True(t, stdjson.Valid(buf.Bytes())) + require.Equal(t, tc.want, buf.String()) + }) + } +} + +// TestEncode_Map_Not_StringInterface tests map encoding where +// the map is not map[string]interface{} (for which the encoder +// has a fast path). +// +// NOTE: Currently the encoder is broken wrt colors enabled +// for non-string map keys. It's possible we don't actually need +// to address this for sq purposes. +func TestEncode_Map_Not_StringInterface(t *testing.T) { + fm := output.NewFormatting() + fm.Pretty = true + fm.EnableColor(true) + + buf := &bytes.Buffer{} + enc := jcolorenc.NewEncoder(buf) + enc.SetEscapeHTML(false) + enc.SetSortMapKeys(true) + enc.SetColors(internal.NewColors(fm)) + if fm.Pretty { + enc.SetIndent("", " ") + } + + v := map[int32]string{ + 0: "zero", + 1: "one", + 2: "two", + } + + require.NoError(t, enc.Encode(v)) + require.False(t, stdjson.Valid(buf.Bytes()), + "expected to be invalid JSON because the encoder currently doesn't handle maps with non-string keys") +} + +// BigStruct is a big test struct. +type BigStruct struct { + FInt int `json:"f_int"` + FInt8 int8 `json:"f_int8"` + FInt16 int16 `json:"f_int16"` + FInt32 int32 `json:"f_int32"` + FInt64 int64 `json:"f_int64"` + FUint uint `json:"f_uint"` + FUint8 uint8 `json:"f_uint8"` + FUint16 uint16 `json:"f_uint16"` + FUint32 uint32 `json:"f_uint32"` + FUint64 uint64 `json:"f_uint64"` + FFloat32 float32 `json:"f_float32"` + FFloat64 float64 `json:"f_float64"` + FBool bool `json:"f_bool"` + FBytes []byte `json:"f_bytes"` + FNil interface{} `json:"f_nil"` + FString string `json:"f_string"` + FMap map[string]interface{} `json:"f_map"` + FSmallStruct SmallStruct `json:"f_smallstruct"` + FInterface interface{} `json:"f_interface"` + FInterfaces []interface{} `json:"f_interfaces"` +} + +// SmallStruct is a small test struct. +type SmallStruct struct { + FInt int `json:"f_int"` + FSlice []interface{} `json:"f_slice"` + FMap map[string]interface{} `json:"f_map"` + FTinyStruct TinyStruct `json:"f_tinystruct"` + FString string `json:"f_string"` +} + +// Tiny Struct is a tiny test struct. +type TinyStruct struct { + FBool bool `json:"f_bool"` +} + +func newBigStruct() BigStruct { + return BigStruct{ + FInt: -7, + FInt8: -8, + FInt16: -16, + FInt32: -32, + FInt64: -64, + FUint: 7, + FUint8: 8, + FUint16: 16, + FUint32: 32, + FUint64: 64, + FFloat32: 32.32, + FFloat64: 64.64, + FBool: true, + FBytes: []byte("hello"), + FNil: nil, + FString: "hello", + FMap: map[string]interface{}{ + "m_int64": int64(64), + "m_string": "hello", + "m_bool": true, + "m_nil": nil, + "m_smallstruct": newSmallStruct(), + }, + FSmallStruct: newSmallStruct(), + FInterface: interface{}("hello"), + FInterfaces: []interface{}{int64(64), "hello", true}, + } +} + +func newSmallStruct() SmallStruct { + return SmallStruct{ + FInt: 7, + FSlice: []interface{}{64, true}, + FMap: map[string]interface{}{ + "m_float64": 64.64, + "m_string": "hello", + }, + FTinyStruct: TinyStruct{FBool: true}, + FString: "hello", + } +} diff --git a/cli/output/jsonw/internal/jcolorenc/README.md b/cli/output/jsonw/internal/jcolorenc/README.md new file mode 100644 index 00000000..c5ed94b7 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/README.md @@ -0,0 +1,76 @@ +# encoding/json [![GoDoc](https://godoc.org/github.com/segmentio/encoding/json?status.svg)](https://godoc.org/github.com/segmentio/encoding/json) + +Go package offering a replacement implementation of the standard library's +[`encoding/json`](https://golang.org/pkg/encoding/json/) package, with much +better performance. + +## Usage + +The exported API of this package mirrors the standard library's +[`encoding/json`](https://golang.org/pkg/encoding/json/) package, the only +change needed to take advantage of the performance improvements is the import +path of the `json` package, from: +```go +import ( + "encoding/json" +) +``` +to +```go +import ( + "github.com/segmentio/encoding/json" +) +``` + +One way to gain higher encoding throughput is to disable HTML escaping. +It allows the string encoding to use a much more efficient code path which +does not require parsing UTF-8 runes most of the time. + +## Performance Improvements + +The internal implementation uses a fair amount of unsafe operations (untyped +code, pointer arithmetic, etc...) to avoid using reflection as much as possible, +which is often the reason why serialization code has a large CPU and memory +footprint. + +The package aims for zero unnecessary dynamic memory allocations and hot code +paths that are mostly free from calls into the reflect package. + +## Compatibility with encoding/json + +This package aims to be a drop-in replacement, therefore it is tested to behave +exactly like the standard library's package. However, there are still a few +missing features that have not been ported yet: + +- Streaming decoder, currently the `Decoder` implementation offered by the +package does not support progressively reading values from a JSON array (unlike +the standard library). In our experience this is a very rare use-case, if you +need it you're better off sticking to the standard library, or spend a bit of +time implementing it in here ;) + +Note that none of those features should result in performance degradations if +they were implemented in the package, and we welcome contributions! + +## Trade-offs + +As one would expect, we had to make a couple of trade-offs to achieve greater +performance than the standard library, but there were also features that we +did not want to give away. + +Other open-source packages offering a reduced CPU and memory footprint usually +do so by designing a different API, or require code generation (therefore adding +complexity to the build process). These were not acceptable conditions for us, +as we were not willing to trade off developer productivity for better runtime +performance. To achieve this, we chose to exactly replicate the standard +library interfaces and behavior, which meant the package implementation was the +only area that we were able to work with. The internals of this package make +heavy use of unsafe pointer arithmetics and other performance optimizations, +and therefore are not as approachable as typical Go programs. Basically, we put +a bigger burden on maintainers to achieve better runtime cost without +sacrificing developer productivity. + +For these reasons, we also don't believe that this code should be ported upstream +to the standard `encoding/json` package. The standard library has to remain +readable and approachable to maximize stability and maintainability, and make +projects like this one possible because a high quality reference implementation +already exists. diff --git a/cli/output/jsonw/internal/jcolorenc/codec.go b/cli/output/jsonw/internal/jcolorenc/codec.go new file mode 100644 index 00000000..c07a5b03 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/codec.go @@ -0,0 +1,1185 @@ +package json + +import ( + "encoding" + "encoding/json" + "fmt" + "reflect" + "sort" + "strconv" + "strings" + "sync/atomic" + "time" + "unicode" + "unsafe" + + "github.com/neilotoole/sq/cli/output/jsonw/internal" +) + +type codec struct { + encode encodeFunc + decode decodeFunc +} + +type encoder struct { + flags AppendFlags + clrs internal.Colors + indenter *Indenter +} +type decoder struct{ flags ParseFlags } + +type encodeFunc func(encoder, []byte, unsafe.Pointer) ([]byte, error) +type decodeFunc func(decoder, []byte, unsafe.Pointer) ([]byte, error) + +type emptyFunc func(unsafe.Pointer) bool +type sortFunc func([]reflect.Value) + +var ( + // Eventually consistent cache mapping go types to dynamically generated + // codecs. + // + // Note: using a uintptr as key instead of reflect.Type shaved ~15ns off of + // the ~30ns Marhsal/Unmarshal functions which were dominated by the map + // lookup time for simple types like bool, int, etc.. + cache unsafe.Pointer // map[unsafe.Pointer]codec +) + +func cacheLoad() map[unsafe.Pointer]codec { + p := atomic.LoadPointer(&cache) + return *(*map[unsafe.Pointer]codec)(unsafe.Pointer(&p)) +} + +func cacheStore(typ reflect.Type, cod codec, oldCodecs map[unsafe.Pointer]codec) { + newCodecs := make(map[unsafe.Pointer]codec, len(oldCodecs)+1) + newCodecs[typeid(typ)] = cod + + for t, c := range oldCodecs { + newCodecs[t] = c + } + + atomic.StorePointer(&cache, *(*unsafe.Pointer)(unsafe.Pointer(&newCodecs))) +} + +func typeid(t reflect.Type) unsafe.Pointer { + return (*iface)(unsafe.Pointer(&t)).ptr +} + +func constructCachedCodec(t reflect.Type, cache map[unsafe.Pointer]codec) codec { + c := constructCodec(t, map[reflect.Type]*structType{}, t.Kind() == reflect.Ptr) + + if inlined(t) { + c.encode = constructInlineValueEncodeFunc(c.encode) + } + + cacheStore(t, c, cache) + return c +} + +func constructCodec(t reflect.Type, seen map[reflect.Type]*structType, canAddr bool) (c codec) { + switch t { + case nullType, nil: + c = codec{encode: encoder.encodeNull, decode: decoder.decodeNull} + + case numberType: + c = codec{encode: encoder.encodeNumber, decode: decoder.decodeNumber} + + case bytesType: + c = codec{encode: encoder.encodeBytes, decode: decoder.decodeBytes} + + case durationType: + c = codec{encode: encoder.encodeDuration, decode: decoder.decodeDuration} + + case timeType: + c = codec{encode: encoder.encodeTime, decode: decoder.decodeTime} + + case interfaceType: + c = codec{encode: encoder.encodeInterface, decode: decoder.decodeInterface} + + case rawMessageType: + c = codec{encode: encoder.encodeRawMessage, decode: decoder.decodeRawMessage} + + case numberPtrType: + c = constructPointerCodec(numberPtrType, nil) + + case durationPtrType: + c = constructPointerCodec(durationPtrType, nil) + + case timePtrType: + c = constructPointerCodec(timePtrType, nil) + + case rawMessagePtrType: + c = constructPointerCodec(rawMessagePtrType, nil) + } + + if c.encode != nil { + return + } + + switch t.Kind() { + case reflect.Bool: + c = codec{encode: encoder.encodeBool, decode: decoder.decodeBool} + + case reflect.Int: + c = codec{encode: encoder.encodeInt, decode: decoder.decodeInt} + + case reflect.Int8: + c = codec{encode: encoder.encodeInt8, decode: decoder.decodeInt8} + + case reflect.Int16: + c = codec{encode: encoder.encodeInt16, decode: decoder.decodeInt16} + + case reflect.Int32: + c = codec{encode: encoder.encodeInt32, decode: decoder.decodeInt32} + + case reflect.Int64: + c = codec{encode: encoder.encodeInt64, decode: decoder.decodeInt64} + + case reflect.Uint: + c = codec{encode: encoder.encodeUint, decode: decoder.decodeUint} + + case reflect.Uintptr: + c = codec{encode: encoder.encodeUintptr, decode: decoder.decodeUintptr} + + case reflect.Uint8: + c = codec{encode: encoder.encodeUint8, decode: decoder.decodeUint8} + + case reflect.Uint16: + c = codec{encode: encoder.encodeUint16, decode: decoder.decodeUint16} + + case reflect.Uint32: + c = codec{encode: encoder.encodeUint32, decode: decoder.decodeUint32} + + case reflect.Uint64: + c = codec{encode: encoder.encodeUint64, decode: decoder.decodeUint64} + + case reflect.Float32: + c = codec{encode: encoder.encodeFloat32, decode: decoder.decodeFloat32} + + case reflect.Float64: + c = codec{encode: encoder.encodeFloat64, decode: decoder.decodeFloat64} + + case reflect.String: + c = codec{encode: encoder.encodeString, decode: decoder.decodeString} + + case reflect.Interface: + c = constructInterfaceCodec(t) + + case reflect.Array: + c = constructArrayCodec(t, seen, canAddr) + + case reflect.Slice: + c = constructSliceCodec(t, seen) + + case reflect.Map: + c = constructMapCodec(t, seen) + + case reflect.Struct: + c = constructStructCodec(t, seen, canAddr) + + case reflect.Ptr: + c = constructPointerCodec(t, seen) + + default: + c = constructUnsupportedTypeCodec(t) + } + + p := reflect.PtrTo(t) + + if canAddr { + switch { + case p.Implements(jsonMarshalerType): + c.encode = constructJSONMarshalerEncodeFunc(t, true) + case p.Implements(textMarshalerType): + c.encode = constructTextMarshalerEncodeFunc(t, true) + } + } + + switch { + case t.Implements(jsonMarshalerType): + c.encode = constructJSONMarshalerEncodeFunc(t, false) + case t.Implements(textMarshalerType): + c.encode = constructTextMarshalerEncodeFunc(t, false) + } + + switch { + case p.Implements(jsonUnmarshalerType): + c.decode = constructJSONUnmarshalerDecodeFunc(t, true) + case p.Implements(textUnmarshalerType): + c.decode = constructTextUnmarshalerDecodeFunc(t, true) + } + + return +} + +func constructStringCodec(t reflect.Type, seen map[reflect.Type]*structType, canAddr bool) codec { + c := constructCodec(t, seen, canAddr) + return codec{ + encode: constructStringEncodeFunc(c.encode), + decode: constructStringDecodeFunc(c.decode), + } +} + +func constructStringEncodeFunc(encode encodeFunc) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeToString(b, p, encode) + } +} + +func constructStringDecodeFunc(decode decodeFunc) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeFromString(b, p, decode) + } +} + +func constructStringToIntDecodeFunc(t reflect.Type, decode decodeFunc) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeFromStringToInt(b, p, t, decode) + } +} + +func constructArrayCodec(t reflect.Type, seen map[reflect.Type]*structType, canAddr bool) codec { + e := t.Elem() + c := constructCodec(e, seen, canAddr) + s := alignedSize(e) + return codec{ + encode: constructArrayEncodeFunc(s, t, c.encode), + decode: constructArrayDecodeFunc(s, t, c.decode), + } +} + +func constructArrayEncodeFunc(size uintptr, t reflect.Type, encode encodeFunc) encodeFunc { + n := t.Len() + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeArray(b, p, n, size, t, encode) + } +} + +func constructArrayDecodeFunc(size uintptr, t reflect.Type, decode decodeFunc) decodeFunc { + n := t.Len() + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeArray(b, p, n, size, t, decode) + } +} + +func constructSliceCodec(t reflect.Type, seen map[reflect.Type]*structType) codec { + e := t.Elem() + s := alignedSize(e) + + if e.Kind() == reflect.Uint8 { + // Go 1.7+ behavior: slices of byte types (and aliases) may override the + // default encoding and decoding behaviors by implementing marshaler and + // unmarshaler interfaces. + p := reflect.PtrTo(e) + c := codec{} + + switch { + case e.Implements(jsonMarshalerType): + c.encode = constructJSONMarshalerEncodeFunc(e, false) + case e.Implements(textMarshalerType): + c.encode = constructTextMarshalerEncodeFunc(e, false) + case p.Implements(jsonMarshalerType): + c.encode = constructJSONMarshalerEncodeFunc(e, true) + case p.Implements(textMarshalerType): + c.encode = constructTextMarshalerEncodeFunc(e, true) + } + + switch { + case e.Implements(jsonUnmarshalerType): + c.decode = constructJSONUnmarshalerDecodeFunc(e, false) + case e.Implements(textUnmarshalerType): + c.decode = constructTextUnmarshalerDecodeFunc(e, false) + case p.Implements(jsonUnmarshalerType): + c.decode = constructJSONUnmarshalerDecodeFunc(e, true) + case p.Implements(textUnmarshalerType): + c.decode = constructTextUnmarshalerDecodeFunc(e, true) + } + + if c.encode != nil { + c.encode = constructSliceEncodeFunc(s, t, c.encode) + } else { + c.encode = encoder.encodeBytes + } + + if c.decode != nil { + c.decode = constructSliceDecodeFunc(s, t, c.decode) + } else { + c.decode = decoder.decodeBytes + } + + return c + } + + c := constructCodec(e, seen, true) + return codec{ + encode: constructSliceEncodeFunc(s, t, c.encode), + decode: constructSliceDecodeFunc(s, t, c.decode), + } +} + +func constructSliceEncodeFunc(size uintptr, t reflect.Type, encode encodeFunc) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeSlice(b, p, size, t, encode) + } +} + +func constructSliceDecodeFunc(size uintptr, t reflect.Type, decode decodeFunc) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeSlice(b, p, size, t, decode) + } +} + +func constructMapCodec(t reflect.Type, seen map[reflect.Type]*structType) codec { + var sortKeys sortFunc + k := t.Key() + v := t.Elem() + + // Faster implementations for some common cases. + switch { + case k == stringType && v == interfaceType: + return codec{ + encode: encoder.encodeMapStringInterface, + decode: decoder.decodeMapStringInterface, + } + + case k == stringType && v == rawMessageType: + return codec{ + encode: encoder.encodeMapStringRawMessage, + decode: decoder.decodeMapStringRawMessage, + } + } + + kc := codec{} + vc := constructCodec(v, seen, false) + + if k.Implements(textMarshalerType) || reflect.PtrTo(k).Implements(textUnmarshalerType) { + kc.encode = constructTextMarshalerEncodeFunc(k, false) + kc.decode = constructTextUnmarshalerDecodeFunc(k, true) + + sortKeys = func(keys []reflect.Value) { + sort.Slice(keys, func(i, j int) bool { + // This is a performance abomination but the use case is rare + // enough that it shouldn't be a problem in practice. + k1, _ := keys[i].Interface().(encoding.TextMarshaler).MarshalText() + k2, _ := keys[j].Interface().(encoding.TextMarshaler).MarshalText() + return string(k1) < string(k2) + }) + } + } else { + switch k.Kind() { + case reflect.String: + kc.encode = encoder.encodeKey + kc.decode = decoder.decodeString + + sortKeys = func(keys []reflect.Value) { + sort.Slice(keys, func(i, j int) bool { return keys[i].String() < keys[j].String() }) + } + + case reflect.Int, + reflect.Int8, + reflect.Int16, + reflect.Int32, + reflect.Int64: + kc = constructStringCodec(k, seen, false) + + sortKeys = func(keys []reflect.Value) { + sort.Slice(keys, func(i, j int) bool { return intStringsAreSorted(keys[i].Int(), keys[j].Int()) }) + } + + case reflect.Uint, + reflect.Uintptr, + reflect.Uint8, + reflect.Uint16, + reflect.Uint32, + reflect.Uint64: + kc = constructStringCodec(k, seen, false) + + sortKeys = func(keys []reflect.Value) { + sort.Slice(keys, func(i, j int) bool { return uintStringsAreSorted(keys[i].Uint(), keys[j].Uint()) }) + } + + default: + return constructUnsupportedTypeCodec(t) + } + } + + if inlined(v) { + vc.encode = constructInlineValueEncodeFunc(vc.encode) + } + + return codec{ + encode: constructMapEncodeFunc(t, kc.encode, vc.encode, sortKeys), + decode: constructMapDecodeFunc(t, kc.decode, vc.decode), + } +} + +func constructMapEncodeFunc(t reflect.Type, encodeKey, encodeValue encodeFunc, sortKeys sortFunc) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeMap(b, p, t, encodeKey, encodeValue, sortKeys) + } +} + +func constructMapDecodeFunc(t reflect.Type, decodeKey, decodeValue decodeFunc) decodeFunc { + kt := t.Key() + vt := t.Elem() + kz := reflect.Zero(kt) + vz := reflect.Zero(vt) + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeMap(b, p, t, kt, vt, kz, vz, decodeKey, decodeValue) + } +} + +func constructStructCodec(t reflect.Type, seen map[reflect.Type]*structType, canAddr bool) codec { + st := constructStructType(t, seen, canAddr) + return codec{ + encode: constructStructEncodeFunc(st), + decode: constructStructDecodeFunc(st), + } +} + +func constructStructType(t reflect.Type, seen map[reflect.Type]*structType, canAddr bool) *structType { + // Used for preventing infinite recursion on types that have pointers to + // themselves. + st := seen[t] + + if st == nil { + st = &structType{ + fields: make([]structField, 0, t.NumField()), + fieldsIndex: make(map[string]*structField), + ficaseIndex: make(map[string]*structField), + typ: t, + } + + seen[t] = st + st.fields = appendStructFields(st.fields, t, 0, seen, canAddr) + + for i := range st.fields { + f := &st.fields[i] + s := strings.ToLower(f.name) + st.fieldsIndex[f.name] = f + // When there is ambiguity because multiple fields have the same + // case-insensitive representation, the first field must win. + if _, exists := st.ficaseIndex[s]; !exists { + st.ficaseIndex[s] = f + } + } + } + + return st +} + +func constructStructEncodeFunc(st *structType) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeStruct(b, p, st) + } +} + +func constructStructDecodeFunc(st *structType) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeStruct(b, p, st) + } +} + +func constructEmbeddedStructPointerCodec(t reflect.Type, unexported bool, offset uintptr, field codec) codec { + return codec{ + encode: constructEmbeddedStructPointerEncodeFunc(t, unexported, offset, field.encode), + decode: constructEmbeddedStructPointerDecodeFunc(t, unexported, offset, field.decode), + } +} + +func constructEmbeddedStructPointerEncodeFunc(t reflect.Type, unexported bool, offset uintptr, encode encodeFunc) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeEmbeddedStructPointer(b, p, t, unexported, offset, encode) + } +} + +func constructEmbeddedStructPointerDecodeFunc(t reflect.Type, unexported bool, offset uintptr, decode decodeFunc) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeEmbeddedStructPointer(b, p, t, unexported, offset, decode) + } +} + +func appendStructFields(fields []structField, t reflect.Type, offset uintptr, seen map[reflect.Type]*structType, canAddr bool) []structField { + type embeddedField struct { + index int + offset uintptr + pointer bool + unexported bool + subtype *structType + subfield *structField + } + + names := make(map[string]struct{}) + embedded := make([]embeddedField, 0, 10) + + for i, n := 0, t.NumField(); i < n; i++ { + f := t.Field(i) + + var ( + name = f.Name + anonymous = f.Anonymous + tag = false + omitempty = false + stringify = false + unexported = len(f.PkgPath) != 0 + ) + + if unexported && !anonymous { // unexported + continue + } + + if parts := strings.Split(f.Tag.Get("json"), ","); len(parts) != 0 { + if len(parts[0]) != 0 { + name, tag = parts[0], true + } + + if name == "-" && len(parts) == 1 { // ignored + continue + } + + if !isValidTag(name) { + name = f.Name + } + + for _, tag := range parts[1:] { + switch tag { + case "omitempty": + omitempty = true + case "string": + stringify = true + } + } + } + + if anonymous && !tag { // embedded + typ := f.Type + ptr := f.Type.Kind() == reflect.Ptr + + if ptr { + typ = f.Type.Elem() + } + + if typ.Kind() == reflect.Struct { + // When the embedded fields is inlined the fields can be looked + // up by offset from the address of the wrapping object, so we + // simply add the embedded struct fields to the list of fields + // of the current struct type. + subtype := constructStructType(typ, seen, canAddr) + + for j := range subtype.fields { + embedded = append(embedded, embeddedField{ + index: i<<32 | j, + offset: offset + f.Offset, + pointer: ptr, + unexported: unexported, + subtype: subtype, + subfield: &subtype.fields[j], + }) + } + + continue + } + + if unexported { // ignore unexported non-struct types + continue + } + } + + codec := constructCodec(f.Type, seen, canAddr) + + if stringify { + // https://golang.org/pkg/encoding/json/#Marshal + // + // The "string" option signals that a field is stored as JSON inside + // a JSON-encoded string. It applies only to fields of string, + // floating point, integer, or boolean types. This extra level of + // encoding is sometimes used when communicating with JavaScript + // programs: + typ := f.Type + + if typ.Kind() == reflect.Ptr { + typ = typ.Elem() + } + + switch typ.Kind() { + case reflect.Int, + reflect.Int8, + reflect.Int16, + reflect.Int32, + reflect.Int64, + reflect.Uint, + reflect.Uintptr, + reflect.Uint8, + reflect.Uint16, + reflect.Uint32, + reflect.Uint64: + codec.encode = constructStringEncodeFunc(codec.encode) + codec.decode = constructStringToIntDecodeFunc(typ, codec.decode) + case reflect.Bool, + reflect.Float32, + reflect.Float64, + reflect.String: + codec.encode = constructStringEncodeFunc(codec.encode) + codec.decode = constructStringDecodeFunc(codec.decode) + } + } + + fields = append(fields, structField{ + codec: codec, + offset: offset + f.Offset, + empty: emptyFuncOf(f.Type), + tag: tag, + omitempty: omitempty, + name: name, + index: i << 32, + typ: f.Type, + zero: reflect.Zero(f.Type), + }) + + names[name] = struct{}{} + } + + // Only unambiguous embedded fields must be serialized. + ambiguousNames := make(map[string]int) + ambiguousTags := make(map[string]int) + + // Embedded types can never override a field that was already present at + // the top-level. + for name := range names { + ambiguousNames[name]++ + ambiguousTags[name]++ + } + + for _, embfield := range embedded { + ambiguousNames[embfield.subfield.name]++ + if embfield.subfield.tag { + ambiguousTags[embfield.subfield.name]++ + } + } + + for _, embfield := range embedded { + subfield := *embfield.subfield + + if ambiguousNames[subfield.name] > 1 && !(subfield.tag && ambiguousTags[subfield.name] == 1) { + continue // ambiguous embedded field + } + + if embfield.pointer { + subfield.codec = constructEmbeddedStructPointerCodec(embfield.subtype.typ, embfield.unexported, subfield.offset, subfield.codec) + subfield.offset = embfield.offset + } else { + subfield.offset += embfield.offset + } + + // To prevent dominant flags more than one level below the embedded one. + subfield.tag = false + + // To ensure the order of the fields in the output is the same is in the + // struct type. + subfield.index = embfield.index + + fields = append(fields, subfield) + } + + for i := range fields { + fields[i].json = encodeString(fields[i].name, 0) + fields[i].html = encodeString(fields[i].name, EscapeHTML) + } + + sort.Slice(fields, func(i, j int) bool { return fields[i].index < fields[j].index }) + return fields +} + +func encodeString(s string, flags AppendFlags) string { + b := make([]byte, 0, len(s)+2) + e := encoder{flags: flags} + b, _ = e.doEncodeString(b, unsafe.Pointer(&s)) + return *(*string)(unsafe.Pointer(&b)) +} + +func constructPointerCodec(t reflect.Type, seen map[reflect.Type]*structType) codec { + e := t.Elem() + c := constructCodec(e, seen, true) + return codec{ + encode: constructPointerEncodeFunc(e, c.encode), + decode: constructPointerDecodeFunc(e, c.decode), + } +} + +func constructPointerEncodeFunc(t reflect.Type, encode encodeFunc) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodePointer(b, p, t, encode) + } +} + +func constructPointerDecodeFunc(t reflect.Type, decode decodeFunc) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodePointer(b, p, t, decode) + } +} + +func constructInterfaceCodec(t reflect.Type) codec { + return codec{ + encode: constructMaybeEmptyInterfaceEncoderFunc(t), + decode: constructMaybeEmptyInterfaceDecoderFunc(t), + } +} + +func constructMaybeEmptyInterfaceEncoderFunc(t reflect.Type) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeMaybeEmptyInterface(b, p, t) + } +} + +func constructMaybeEmptyInterfaceDecoderFunc(t reflect.Type) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeMaybeEmptyInterface(b, p, t) + } +} + +func constructUnsupportedTypeCodec(t reflect.Type) codec { + return codec{ + encode: constructUnsupportedTypeEncodeFunc(t), + decode: constructUnsupportedTypeDecodeFunc(t), + } +} + +func constructUnsupportedTypeEncodeFunc(t reflect.Type) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeUnsupportedTypeError(b, p, t) + } +} + +func constructUnsupportedTypeDecodeFunc(t reflect.Type) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeUnmarshalTypeError(b, p, t) + } +} + +func constructJSONMarshalerEncodeFunc(t reflect.Type, pointer bool) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeJSONMarshaler(b, p, t, pointer) + } +} + +func constructJSONUnmarshalerDecodeFunc(t reflect.Type, pointer bool) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeJSONUnmarshaler(b, p, t, pointer) + } +} + +func constructTextMarshalerEncodeFunc(t reflect.Type, pointer bool) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return e.encodeTextMarshaler(b, p, t, pointer) + } +} + +func constructTextUnmarshalerDecodeFunc(t reflect.Type, pointer bool) decodeFunc { + return func(d decoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return d.decodeTextUnmarshaler(b, p, t, pointer) + } +} + +func constructInlineValueEncodeFunc(encode encodeFunc) encodeFunc { + return func(e encoder, b []byte, p unsafe.Pointer) ([]byte, error) { + return encode(e, b, noescape(unsafe.Pointer(&p))) + } +} + +// noescape hides a pointer from escape analysis. noescape is +// the identity function but escape analysis doesn't think the +// output depends on the input. noescape is inlined and currently +// compiles down to zero instructions. +// USE CAREFULLY! +// This was copied from the runtime; see issues 23382 and 7921. +//go:nosplit +func noescape(p unsafe.Pointer) unsafe.Pointer { + x := uintptr(p) + return unsafe.Pointer(x ^ 0) +} + +func alignedSize(t reflect.Type) uintptr { + a := t.Align() + s := t.Size() + return align(uintptr(a), uintptr(s)) +} + +func align(align, size uintptr) uintptr { + if align != 0 && (size%align) != 0 { + size = ((size / align) + 1) * align + } + return size +} + +func inlined(t reflect.Type) bool { + switch t.Kind() { + case reflect.Ptr: + return true + case reflect.Map: + return true + case reflect.Struct: + return t.NumField() == 1 && inlined(t.Field(0).Type) + default: + return false + } +} + +func isValidTag(s string) bool { + if s == "" { + return false + } + for _, c := range s { + switch { + case strings.ContainsRune("!#$%&()*+-./:<=>?@[]^_{|}~ ", c): + // Backslash and quote chars are reserved, but + // otherwise any punctuation chars are allowed + // in a tag name. + default: + if !unicode.IsLetter(c) && !unicode.IsDigit(c) { + return false + } + } + } + return true +} + +func emptyFuncOf(t reflect.Type) emptyFunc { + switch t { + case bytesType, rawMessageType: + return func(p unsafe.Pointer) bool { return (*slice)(p).len == 0 } + } + + switch t.Kind() { + case reflect.Array: + if t.Len() == 0 { + return func(unsafe.Pointer) bool { return true } + } + + case reflect.Map: + return func(p unsafe.Pointer) bool { return reflect.NewAt(t, p).Elem().Len() == 0 } + + case reflect.Slice: + return func(p unsafe.Pointer) bool { return (*slice)(p).len == 0 } + + case reflect.String: + return func(p unsafe.Pointer) bool { return len(*(*string)(p)) == 0 } + + case reflect.Bool: + return func(p unsafe.Pointer) bool { return !*(*bool)(p) } + + case reflect.Int, reflect.Uint: + return func(p unsafe.Pointer) bool { return *(*uint)(p) == 0 } + + case reflect.Uintptr: + return func(p unsafe.Pointer) bool { return *(*uintptr)(p) == 0 } + + case reflect.Int8, reflect.Uint8: + return func(p unsafe.Pointer) bool { return *(*uint8)(p) == 0 } + + case reflect.Int16, reflect.Uint16: + return func(p unsafe.Pointer) bool { return *(*uint16)(p) == 0 } + + case reflect.Int32, reflect.Uint32: + return func(p unsafe.Pointer) bool { return *(*uint32)(p) == 0 } + + case reflect.Int64, reflect.Uint64: + return func(p unsafe.Pointer) bool { return *(*uint64)(p) == 0 } + + case reflect.Float32: + return func(p unsafe.Pointer) bool { return *(*float32)(p) == 0 } + + case reflect.Float64: + return func(p unsafe.Pointer) bool { return *(*float64)(p) == 0 } + + case reflect.Ptr: + return func(p unsafe.Pointer) bool { return *(*unsafe.Pointer)(p) == nil } + + case reflect.Interface: + return func(p unsafe.Pointer) bool { return (*iface)(p).ptr == nil } + } + + return func(unsafe.Pointer) bool { return false } +} + +type iface struct { + typ unsafe.Pointer + ptr unsafe.Pointer +} + +type slice struct { + data unsafe.Pointer + len int + cap int +} + +type structType struct { + fields []structField + fieldsIndex map[string]*structField + ficaseIndex map[string]*structField + typ reflect.Type + inlined bool +} + +type structField struct { + codec codec + offset uintptr + empty emptyFunc + tag bool + omitempty bool + json string + html string + name string + typ reflect.Type + zero reflect.Value + index int +} + +func unmarshalTypeError(b []byte, t reflect.Type) error { + return &UnmarshalTypeError{Value: strconv.Quote(prefix(b)), Type: t} +} + +func unmarshalOverflow(b []byte, t reflect.Type) error { + return &UnmarshalTypeError{Value: "number " + prefix(b) + " overflows", Type: t} +} + +func unexpectedEOF(b []byte) error { + return syntaxError(b, "unexpected end of JSON input") +} + +var syntaxErrorMsgOffset = ^uintptr(0) + +func init() { + t := reflect.TypeOf(SyntaxError{}) + for i, n := 0, t.NumField(); i < n; i++ { + if f := t.Field(i); f.Type.Kind() == reflect.String { + syntaxErrorMsgOffset = f.Offset + } + } +} + +func syntaxError(b []byte, msg string, args ...interface{}) error { + e := new(SyntaxError) + i := syntaxErrorMsgOffset + if i != ^uintptr(0) { + s := "json: " + fmt.Sprintf(msg, args...) + ": " + prefix(b) + p := unsafe.Pointer(e) + // Hack to set the unexported `msg` field. + *(*string)(unsafe.Pointer(uintptr(p) + i)) = s + } + return e +} + +func inputError(b []byte, t reflect.Type) ([]byte, error) { + if len(b) == 0 { + return nil, unexpectedEOF(b) + } + _, r, err := parseValue(b) + if err != nil { + return r, err + } + return skipSpaces(r), unmarshalTypeError(b, t) +} + +func objectKeyError(b []byte, err error) ([]byte, error) { + if len(b) == 0 { + return nil, unexpectedEOF(b) + } + switch err.(type) { + case *UnmarshalTypeError: + err = syntaxError(b, "invalid character '%c' looking for beginning of object key", b[0]) + } + return b, err +} + +func prefix(b []byte) string { + if len(b) < 32 { + return string(b) + } + return string(b[:32]) + "..." +} + +func intStringsAreSorted(i0, i1 int64) bool { + var b0, b1 [32]byte + return string(strconv.AppendInt(b0[:0], i0, 10)) < string(strconv.AppendInt(b1[:0], i1, 10)) +} + +func uintStringsAreSorted(u0, u1 uint64) bool { + var b0, b1 [32]byte + return string(strconv.AppendUint(b0[:0], u0, 10)) < string(strconv.AppendUint(b1[:0], u1, 10)) +} + +//go:nosplit +func stringToBytes(s string) []byte { + return *(*[]byte)(unsafe.Pointer(&reflect.SliceHeader{ + Data: ((*reflect.StringHeader)(unsafe.Pointer(&s))).Data, + Len: len(s), + Cap: len(s), + })) +} + +var ( + nullType = reflect.TypeOf(nil) + boolType = reflect.TypeOf(false) + + intType = reflect.TypeOf(int(0)) + int8Type = reflect.TypeOf(int8(0)) + int16Type = reflect.TypeOf(int16(0)) + int32Type = reflect.TypeOf(int32(0)) + int64Type = reflect.TypeOf(int64(0)) + + uintType = reflect.TypeOf(uint(0)) + uint8Type = reflect.TypeOf(uint8(0)) + uint16Type = reflect.TypeOf(uint16(0)) + uint32Type = reflect.TypeOf(uint32(0)) + uint64Type = reflect.TypeOf(uint64(0)) + uintptrType = reflect.TypeOf(uintptr(0)) + + float32Type = reflect.TypeOf(float32(0)) + float64Type = reflect.TypeOf(float64(0)) + + numberType = reflect.TypeOf(json.Number("")) + stringType = reflect.TypeOf("") + bytesType = reflect.TypeOf(([]byte)(nil)) + durationType = reflect.TypeOf(time.Duration(0)) + timeType = reflect.TypeOf(time.Time{}) + rawMessageType = reflect.TypeOf(RawMessage(nil)) + + numberPtrType = reflect.PtrTo(numberType) + durationPtrType = reflect.PtrTo(durationType) + timePtrType = reflect.PtrTo(timeType) + rawMessagePtrType = reflect.PtrTo(rawMessageType) + + sliceInterfaceType = reflect.TypeOf(([]interface{})(nil)) + mapStringInterfaceType = reflect.TypeOf((map[string]interface{})(nil)) + mapStringRawMessageType = reflect.TypeOf((map[string]RawMessage)(nil)) + + interfaceType = reflect.TypeOf((*interface{})(nil)).Elem() + jsonMarshalerType = reflect.TypeOf((*Marshaler)(nil)).Elem() + jsonUnmarshalerType = reflect.TypeOf((*Unmarshaler)(nil)).Elem() + textMarshalerType = reflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem() + textUnmarshalerType = reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem() +) + +// ============================================================================= +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// appendDuration appends a human-readable representation of d to b. +// +// The function copies the implementation of time.Duration.String but prevents +// Go from making a dynamic memory allocation on the returned value. +func appendDuration(b []byte, d time.Duration) []byte { + // Largest time is 2540400h10m10.000000000s + var buf [32]byte + w := len(buf) + + u := uint64(d) + neg := d < 0 + if neg { + u = -u + } + + if u < uint64(time.Second) { + // Special case: if duration is smaller than a second, + // use smaller units, like 1.2ms + var prec int + w-- + buf[w] = 's' + w-- + switch { + case u == 0: + return append(b, '0', 's') + case u < uint64(time.Microsecond): + // print nanoseconds + prec = 0 + buf[w] = 'n' + case u < uint64(time.Millisecond): + // print microseconds + prec = 3 + // U+00B5 'µ' micro sign == 0xC2 0xB5 + w-- // Need room for two bytes. + copy(buf[w:], "µ") + default: + // print milliseconds + prec = 6 + buf[w] = 'm' + } + w, u = fmtFrac(buf[:w], u, prec) + w = fmtInt(buf[:w], u) + } else { + w-- + buf[w] = 's' + + w, u = fmtFrac(buf[:w], u, 9) + + // u is now integer seconds + w = fmtInt(buf[:w], u%60) + u /= 60 + + // u is now integer minutes + if u > 0 { + w-- + buf[w] = 'm' + w = fmtInt(buf[:w], u%60) + u /= 60 + + // u is now integer hours + // Stop at hours because days can be different lengths. + if u > 0 { + w-- + buf[w] = 'h' + w = fmtInt(buf[:w], u) + } + } + } + + if neg { + w-- + buf[w] = '-' + } + + return append(b, buf[w:]...) +} + +// fmtFrac formats the fraction of v/10**prec (e.g., ".12345") into the +// tail of buf, omitting trailing zeros. it omits the decimal +// point too when the fraction is 0. It returns the index where the +// output bytes begin and the value v/10**prec. +func fmtFrac(buf []byte, v uint64, prec int) (nw int, nv uint64) { + // Omit trailing zeros up to and including decimal point. + w := len(buf) + print := false + for i := 0; i < prec; i++ { + digit := v % 10 + print = print || digit != 0 + if print { + w-- + buf[w] = byte(digit) + '0' + } + v /= 10 + } + if print { + w-- + buf[w] = '.' + } + return w, v +} + +// fmtInt formats v into the tail of buf. +// It returns the index where the output begins. +func fmtInt(buf []byte, v uint64) int { + w := len(buf) + if v == 0 { + w-- + buf[w] = '0' + } else { + for v > 0 { + w-- + buf[w] = byte(v%10) + '0' + v /= 10 + } + } + return w +} + +// ============================================================================= diff --git a/cli/output/jsonw/internal/jcolorenc/decode.go b/cli/output/jsonw/internal/jcolorenc/decode.go new file mode 100644 index 00000000..e01b444c --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/decode.go @@ -0,0 +1,1195 @@ +package json + +import ( + "bytes" + "encoding" + "encoding/base64" + "encoding/json" + "fmt" + "math" + "reflect" + "strconv" + "time" + "unsafe" +) + +func (d decoder) decodeNull(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + return inputError(b, nullType) +} + +func (d decoder) decodeBool(b []byte, p unsafe.Pointer) ([]byte, error) { + switch { + case hasTruePrefix(b): + *(*bool)(p) = true + return b[4:], nil + + case hasFalsePrefix(b): + *(*bool)(p) = false + return b[5:], nil + + case hasNullPrefix(b): + return b[4:], nil + + default: + return inputError(b, boolType) + } +} + +func (d decoder) decodeInt(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseInt(b, intType) + if err != nil { + return r, err + } + + *(*int)(p) = int(v) + return r, nil +} + +func (d decoder) decodeInt8(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseInt(b, int8Type) + if err != nil { + return r, err + } + + if v < math.MinInt8 || v > math.MaxInt8 { + return r, unmarshalOverflow(b[:len(b)-len(r)], int8Type) + } + + *(*int8)(p) = int8(v) + return r, nil +} + +func (d decoder) decodeInt16(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseInt(b, int16Type) + if err != nil { + return r, err + } + + if v < math.MinInt16 || v > math.MaxInt16 { + return r, unmarshalOverflow(b[:len(b)-len(r)], int16Type) + } + + *(*int16)(p) = int16(v) + return r, nil +} + +func (d decoder) decodeInt32(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseInt(b, int32Type) + if err != nil { + return r, err + } + + if v < math.MinInt32 || v > math.MaxInt32 { + return r, unmarshalOverflow(b[:len(b)-len(r)], int32Type) + } + + *(*int32)(p) = int32(v) + return r, nil +} + +func (d decoder) decodeInt64(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseInt(b, int64Type) + if err != nil { + return r, err + } + + *(*int64)(p) = v + return r, nil +} + +func (d decoder) decodeUint(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseUint(b, uintType) + if err != nil { + return r, err + } + + *(*uint)(p) = uint(v) + return r, nil +} + +func (d decoder) decodeUintptr(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseUint(b, uintptrType) + if err != nil { + return r, err + } + + *(*uintptr)(p) = uintptr(v) + return r, nil +} + +func (d decoder) decodeUint8(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseUint(b, uint8Type) + if err != nil { + return r, err + } + + if v > math.MaxUint8 { + return r, unmarshalOverflow(b[:len(b)-len(r)], uint8Type) + } + + *(*uint8)(p) = uint8(v) + return r, nil +} + +func (d decoder) decodeUint16(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseUint(b, uint16Type) + if err != nil { + return r, err + } + + if v > math.MaxUint16 { + return r, unmarshalOverflow(b[:len(b)-len(r)], uint16Type) + } + + *(*uint16)(p) = uint16(v) + return r, nil +} + +func (d decoder) decodeUint32(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseUint(b, uint32Type) + if err != nil { + return r, err + } + + if v > math.MaxUint32 { + return r, unmarshalOverflow(b[:len(b)-len(r)], uint32Type) + } + + *(*uint32)(p) = uint32(v) + return r, nil +} + +func (d decoder) decodeUint64(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseUint(b, uint64Type) + if err != nil { + return r, err + } + + *(*uint64)(p) = v + return r, nil +} + +func (d decoder) decodeFloat32(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseNumber(b) + if err != nil { + return inputError(b, float32Type) + } + + f, err := strconv.ParseFloat(*(*string)(unsafe.Pointer(&v)), 32) + if err != nil { + return inputError(b, float32Type) + } + + *(*float32)(p) = float32(f) + return r, nil +} + +func (d decoder) decodeFloat64(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseNumber(b) + if err != nil { + return inputError(b, float64Type) + } + + f, err := strconv.ParseFloat(*(*string)(unsafe.Pointer(&v)), 64) + if err != nil { + return inputError(b, float64Type) + } + + *(*float64)(p) = f + return r, nil +} + +func (d decoder) decodeNumber(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + v, r, err := parseNumber(b) + if err != nil { + return inputError(b, numberType) + } + + if (d.flags & DontCopyNumber) != 0 { + *(*Number)(p) = *(*Number)(unsafe.Pointer(&v)) + } else { + *(*Number)(p) = Number(v) + } + + return r, nil +} + +func (d decoder) decodeString(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + s, r, new, err := parseStringUnquote(b, nil) + if err != nil { + if len(b) == 0 || b[0] != '"' { + return inputError(b, stringType) + } + return r, err + } + + if new || (d.flags&DontCopyString) != 0 { + *(*string)(p) = *(*string)(unsafe.Pointer(&s)) + } else { + *(*string)(p) = string(s) + } + + return r, nil +} + +func (d decoder) decodeFromString(b []byte, p unsafe.Pointer, decode decodeFunc) ([]byte, error) { + if hasNullPrefix(b) { + return decode(d, b, p) + } + + v, b, _, err := parseStringUnquote(b, nil) + if err != nil { + return inputError(v, stringType) + } + + if v, err = decode(d, v, p); err != nil { + return b, err + } + + if v = skipSpaces(v); len(v) != 0 { + return b, syntaxError(v, "unexpected trailing tokens after string value") + } + + return b, nil +} + +func (d decoder) decodeFromStringToInt(b []byte, p unsafe.Pointer, t reflect.Type, decode decodeFunc) ([]byte, error) { + if hasPrefix(b, "null") { + return decode(d, b, p) + } + + if len(b) > 0 && b[0] != '"' { + v, r, err := parseNumber(b) + if err == nil { + // The encoding/json package will return a *json.UnmarshalTypeError if + // the input was a floating point number representation, even tho a + // string is expected here. + isFloat := true + switch { + case bytes.IndexByte(v, '.') >= 0: + case bytes.IndexByte(v, 'e') >= 0: + case bytes.IndexByte(v, 'E') >= 0: + default: + isFloat = false + } + if isFloat { + _, err := strconv.ParseFloat(*(*string)(unsafe.Pointer(&v)), 64) + if err != nil { + return r, unmarshalTypeError(v, t) + } + } + } + return r, fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal unquoted value into int") + } + + if len(b) > 1 && b[0] == '"' && b[1] == '"' { + return b, fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal \"\" into int") + } + + v, b, _, err := parseStringUnquote(b, nil) + if err != nil { + return inputError(v, t) + } + + if hasLeadingZeroes(v) { + // In this context the encoding/json package accepts leading zeroes because + // it is not constrained by the JSON syntax, remove them so the parsing + // functions don't return syntax errors. + u := make([]byte, 0, len(v)) + i := 0 + + if i < len(v) && v[i] == '-' || v[i] == '+' { + u = append(u, v[i]) + i++ + } + + for (i+1) < len(v) && v[i] == '0' && '0' <= v[i+1] && v[i+1] <= '9' { + i++ + } + + v = append(u, v[i:]...) + } + + if r, err := decode(d, v, p); err != nil { + if _, isSyntaxError := err.(*SyntaxError); isSyntaxError { + if hasPrefix(v, "-") { + // The standard library interprets sequences of '-' characters + // as numbers but still returns type errors in this case... + return b, unmarshalTypeError(v, t) + } + return b, fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into int", prefix(v)) + } + // When the input value was a valid number representation we retain the + // error returned by the decoder. + if _, _, err := parseNumber(v); err != nil { + // When the input value valid JSON we mirror the behavior of the + // encoding/json package and return a generic error. + if _, _, err := parseValue(v); err == nil { + return b, fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into int", prefix(v)) + } + } + return b, err + } else if len(r) != 0 { + return r, unmarshalTypeError(v, t) + } + + return b, nil +} + +func (d decoder) decodeBytes(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + *(*[]byte)(p) = nil + return b[4:], nil + } + + if len(b) < 2 { + return inputError(b, bytesType) + } + + if b[0] != '"' { + // Go 1.7- behavior: bytes slices may be decoded from array of integers. + if len(b) > 0 && b[0] == '[' { + return d.decodeSlice(b, p, 1, bytesType, decoder.decodeUint8) + } + return inputError(b, bytesType) + } + + // The input string contains escaped sequences, we need to parse it before + // decoding it to match the encoding/json package behvaior. + src, r, _, err := parseStringUnquote(b, nil) + if err != nil { + return inputError(b, bytesType) + } + + dst := make([]byte, base64.StdEncoding.DecodedLen(len(src))) + + n, err := base64.StdEncoding.Decode(dst, src) + if err != nil { + return r, err + } + + *(*[]byte)(p) = dst[:n] + return r, nil +} + +func (d decoder) decodeDuration(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + // in order to inter-operate with the stdlib, we must be able to interpret + // durations passed as integer values. there's some discussion about being + // flexible on how durations are formatted, but for the time being, it's + // been punted to go2 at the earliest: https://github.com/golang/go/issues/4712 + if len(b) > 0 && b[0] != '"' { + v, r, err := parseInt(b, durationType) + if err != nil { + return inputError(b, int32Type) + } + + if v < math.MinInt64 || v > math.MaxInt64 { + return r, unmarshalOverflow(b[:len(b)-len(r)], int32Type) + } + + *(*time.Duration)(p) = time.Duration(v) + return r, nil + } + + if len(b) < 2 || b[0] != '"' { + return inputError(b, durationType) + } + + i := bytes.IndexByte(b[1:], '"') + 1 + if i <= 0 { + return inputError(b, durationType) + } + + s := b[1:i] // trim quotes + + v, err := time.ParseDuration(*(*string)(unsafe.Pointer(&s))) + if err != nil { + return inputError(b, durationType) + } + + *(*time.Duration)(p) = v + return b[i+1:], nil +} + +func (d decoder) decodeTime(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + if len(b) < 2 || b[0] != '"' { + return inputError(b, timeType) + } + + i := bytes.IndexByte(b[1:], '"') + 1 + if i <= 0 { + return inputError(b, timeType) + } + + s := b[1:i] // trim quotes + + v, err := time.Parse(time.RFC3339Nano, *(*string)(unsafe.Pointer(&s))) + if err != nil { + return inputError(b, timeType) + } + + *(*time.Time)(p) = v + return b[i+1:], nil +} + +func (d decoder) decodeArray(b []byte, p unsafe.Pointer, n int, size uintptr, t reflect.Type, decode decodeFunc) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + if len(b) < 2 || b[0] != '[' { + return inputError(b, t) + } + b = b[1:] + + var err error + for i := 0; i < n; i++ { + b = skipSpaces(b) + + if i != 0 { + if len(b) == 0 { + return b, syntaxError(b, "unexpected EOF after array element") + } + switch b[0] { + case ',': + b = skipSpaces(b[1:]) + case ']': + return b[1:], nil + default: + return b, syntaxError(b, "expected ',' after array element but found '%c'", b[0]) + } + } + + b, err = decode(d, b, unsafe.Pointer(uintptr(p)+(uintptr(i)*size))) + if err != nil { + if e, ok := err.(*UnmarshalTypeError); ok { + e.Struct = t.String() + e.Struct + e.Field = strconv.Itoa(i) + "." + e.Field + } + return b, err + } + } + + // The encoding/json package ignores extra elements found when decoding into + // array types (which have a fixed size). + for { + b = skipSpaces(b) + + if len(b) == 0 { + return b, syntaxError(b, "missing closing ']' in array value") + } + + switch b[0] { + case ',': + b = skipSpaces(b[1:]) + case ']': + return b[1:], nil + } + + _, b, err = parseValue(b) + if err != nil { + return b, err + } + } +} + +var ( + // This is a placeholder used to consturct non-nil empty slices. + empty struct{} +) + +func (d decoder) decodeSlice(b []byte, p unsafe.Pointer, size uintptr, t reflect.Type, decode decodeFunc) ([]byte, error) { + if hasNullPrefix(b) { + *(*slice)(p) = slice{} + return b[4:], nil + } + + if len(b) < 2 { + return inputError(b, t) + } + + if b[0] != '[' { + // Go 1.7- behavior: fallback to decoding as a []byte if the element + // type is byte; allow conversions from JSON strings even tho the + // underlying type implemented unmarshaler interfaces. + if t.Elem().Kind() == reflect.Uint8 { + return d.decodeBytes(b, p) + } + return inputError(b, t) + } + + input := b + b = b[1:] + + s := (*slice)(p) + s.len = 0 + + var err error + for { + b = skipSpaces(b) + + if len(b) != 0 && b[0] == ']' { + if s.data == nil { + s.data = unsafe.Pointer(&empty) + } + return b[1:], nil + } + + if s.len != 0 { + if len(b) == 0 { + return b, syntaxError(b, "unexpected EOF after array element") + } + if b[0] != ',' { + return b, syntaxError(b, "expected ',' after array element but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + } + + if s.len == s.cap { + c := s.cap + + if c == 0 { + c = 10 + } else { + c *= 2 + } + + *s = extendSlice(t, s, c) + } + + b, err = decode(d, b, unsafe.Pointer(uintptr(s.data)+(uintptr(s.len)*size))) + if err != nil { + if _, r, err := parseValue(input); err != nil { + return r, err + } else { + b = r + } + if e, ok := err.(*UnmarshalTypeError); ok { + e.Struct = t.String() + e.Struct + e.Field = strconv.Itoa(s.len) + "." + e.Field + } + return b, err + } + + s.len++ + } +} + +func (d decoder) decodeMap(b []byte, p unsafe.Pointer, t, kt, vt reflect.Type, kz, vz reflect.Value, decodeKey, decodeValue decodeFunc) ([]byte, error) { + if hasNullPrefix(b) { + *(*unsafe.Pointer)(p) = nil + return b[4:], nil + } + + if len(b) < 2 || b[0] != '{' { + return inputError(b, t) + } + i := 0 + m := reflect.NewAt(t, p).Elem() + + k := reflect.New(kt).Elem() + v := reflect.New(vt).Elem() + + kptr := (*iface)(unsafe.Pointer(&k)).ptr + vptr := (*iface)(unsafe.Pointer(&v)).ptr + input := b + + if m.IsNil() { + m = reflect.MakeMap(t) + } + + var err error + b = b[1:] + for { + k.Set(kz) + v.Set(vz) + b = skipSpaces(b) + + if len(b) != 0 && b[0] == '}' { + *(*unsafe.Pointer)(p) = unsafe.Pointer(m.Pointer()) + return b[1:], nil + } + + if i != 0 { + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JONS input after object field value") + } + if b[0] != ',' { + return b, syntaxError(b, "expected ',' after object field value but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + } + + if hasPrefix(b, "null") { + return b, syntaxError(b, "cannot decode object key string from 'null' value") + } + + if b, err = decodeKey(d, b, kptr); err != nil { + return objectKeyError(b, err) + } + b = skipSpaces(b) + + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JSON input after object field key") + } + if b[0] != ':' { + return b, syntaxError(b, "expected ':' after object field key but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + + if b, err = decodeValue(d, b, vptr); err != nil { + if _, r, err := parseValue(input); err != nil { + return r, err + } else { + b = r + } + if e, ok := err.(*UnmarshalTypeError); ok { + e.Struct = "map[" + kt.String() + "]" + vt.String() + "{" + e.Struct + "}" + e.Field = fmt.Sprint(k.Interface()) + "." + e.Field + } + return b, err + } + + m.SetMapIndex(k, v) + i++ + } +} + +func (d decoder) decodeMapStringInterface(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + *(*unsafe.Pointer)(p) = nil + return b[4:], nil + } + + if len(b) < 2 || b[0] != '{' { + return inputError(b, mapStringInterfaceType) + } + + i := 0 + m := *(*map[string]interface{})(p) + + if m == nil { + m = make(map[string]interface{}, 64) + } + + var err error + var key string + var val interface{} + var input = b + + b = b[1:] + for { + key = "" + val = nil + + b = skipSpaces(b) + + if len(b) != 0 && b[0] == '}' { + *(*unsafe.Pointer)(p) = *(*unsafe.Pointer)(unsafe.Pointer(&m)) + return b[1:], nil + } + + if i != 0 { + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JSON input after object field value") + } + if b[0] != ',' { + return b, syntaxError(b, "expected ',' after object field value but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + } + + if hasPrefix(b, "null") { + return b, syntaxError(b, "cannot decode object key string from 'null' value") + } + + b, err = d.decodeString(b, unsafe.Pointer(&key)) + if err != nil { + return objectKeyError(b, err) + } + b = skipSpaces(b) + + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JSON input after object field key") + } + if b[0] != ':' { + return b, syntaxError(b, "expected ':' after object field key but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + + b, err = d.decodeInterface(b, unsafe.Pointer(&val)) + if err != nil { + if _, r, err := parseValue(input); err != nil { + return r, err + } else { + b = r + } + if e, ok := err.(*UnmarshalTypeError); ok { + e.Struct = mapStringInterfaceType.String() + e.Struct + e.Field = key + "." + e.Field + } + return b, err + } + + m[key] = val + i++ + } +} + +func (d decoder) decodeMapStringRawMessage(b []byte, p unsafe.Pointer) ([]byte, error) { + if hasNullPrefix(b) { + *(*unsafe.Pointer)(p) = nil + return b[4:], nil + } + + if len(b) < 2 || b[0] != '{' { + return inputError(b, mapStringRawMessageType) + } + + i := 0 + m := *(*map[string]RawMessage)(p) + + if m == nil { + m = make(map[string]RawMessage, 64) + } + + var err error + var key string + var val RawMessage + var input = b + + b = b[1:] + for { + key = "" + val = nil + + b = skipSpaces(b) + + if len(b) != 0 && b[0] == '}' { + *(*unsafe.Pointer)(p) = *(*unsafe.Pointer)(unsafe.Pointer(&m)) + return b[1:], nil + } + + if i != 0 { + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JSON input after object field value") + } + if b[0] != ',' { + return b, syntaxError(b, "expected ',' after object field value but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + } + + if hasPrefix(b, "null") { + return b, syntaxError(b, "cannot decode object key string from 'null' value") + } + + b, err = d.decodeString(b, unsafe.Pointer(&key)) + if err != nil { + return objectKeyError(b, err) + } + b = skipSpaces(b) + + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JSON input after object field key") + } + if b[0] != ':' { + return b, syntaxError(b, "expected ':' after object field key but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + + b, err = d.decodeRawMessage(b, unsafe.Pointer(&val)) + if err != nil { + if _, r, err := parseValue(input); err != nil { + return r, err + } else { + b = r + } + if e, ok := err.(*UnmarshalTypeError); ok { + e.Struct = mapStringRawMessageType.String() + e.Struct + e.Field = key + "." + e.Field + } + return b, err + } + + m[key] = val + i++ + } +} + +func (d decoder) decodeStruct(b []byte, p unsafe.Pointer, st *structType) ([]byte, error) { + if hasNullPrefix(b) { + return b[4:], nil + } + + if len(b) < 2 || b[0] != '{' { + return inputError(b, st.typ) + } + + var err error + var k []byte + var i int + + // memory buffer used to convert short field names to lowercase + var buf [64]byte + var key []byte + var input = b + + b = b[1:] + for { + b = skipSpaces(b) + + if len(b) != 0 && b[0] == '}' { + return b[1:], nil + } + + if i != 0 { + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JSON input after object field value") + } + if b[0] != ',' { + return b, syntaxError(b, "expected ',' after object field value but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + } + i++ + + if hasPrefix(b, "null") { + return b, syntaxError(b, "cannot decode object key string from 'null' value") + } + + k, b, _, err = parseStringUnquote(b, nil) + if err != nil { + return objectKeyError(b, err) + } + b = skipSpaces(b) + + if len(b) == 0 { + return b, syntaxError(b, "unexpected end of JSON input after object field key") + } + if b[0] != ':' { + return b, syntaxError(b, "expected ':' after object field key but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + + f := st.fieldsIndex[string(k)] + + if f == nil && (d.flags&DontMatchCaseInsensitiveStructFields) == 0 { + key = appendToLower(buf[:0], k) + f = st.ficaseIndex[string(key)] + } + + if f == nil { + if (d.flags & DisallowUnknownFields) != 0 { + return b, fmt.Errorf("json: unknown field %q", k) + } + if _, b, err = parseValue(b); err != nil { + return b, err + } + continue + } + + if b, err = f.codec.decode(d, b, unsafe.Pointer(uintptr(p)+f.offset)); err != nil { + if _, r, err := parseValue(input); err != nil { + return r, err + } else { + b = r + } + if e, ok := err.(*UnmarshalTypeError); ok { + e.Struct = st.typ.String() + e.Struct + e.Field = string(k) + "." + e.Field + } + return b, err + } + } +} + +func (d decoder) decodeEmbeddedStructPointer(b []byte, p unsafe.Pointer, t reflect.Type, unexported bool, offset uintptr, decode decodeFunc) ([]byte, error) { + v := *(*unsafe.Pointer)(p) + + if v == nil { + if unexported { + return nil, fmt.Errorf("json: cannot set embedded pointer to unexported struct: %s", t) + } + v = unsafe.Pointer(reflect.New(t).Pointer()) + *(*unsafe.Pointer)(p) = v + } + + return decode(d, b, unsafe.Pointer(uintptr(v)+offset)) +} + +func (d decoder) decodePointer(b []byte, p unsafe.Pointer, t reflect.Type, decode decodeFunc) ([]byte, error) { + if hasNullPrefix(b) { + pp := *(*unsafe.Pointer)(p) + if pp != nil && t.Kind() == reflect.Ptr { + return decode(d, b, pp) + } + *(*unsafe.Pointer)(p) = nil + return b[4:], nil + } + + v := *(*unsafe.Pointer)(p) + if v == nil { + v = unsafe.Pointer(reflect.New(t).Pointer()) + *(*unsafe.Pointer)(p) = v + } + + return decode(d, b, v) +} + +func (d decoder) decodeInterface(b []byte, p unsafe.Pointer) ([]byte, error) { + val := *(*interface{})(p) + *(*interface{})(p) = nil + + if t := reflect.TypeOf(val); t != nil && t.Kind() == reflect.Ptr { + if v := reflect.ValueOf(val); v.IsNil() || t.Elem().Kind() != reflect.Ptr { + // If the destination is nil the only value that is OK to decode is + // `null`, and the encoding/json package always nils the destination + // interface value in this case. + if hasNullPrefix(b) { + *(*interface{})(p) = nil + return b[4:], nil + } + } + + b, err := Parse(b, val, d.flags) + if err == nil { + *(*interface{})(p) = val + } + return b, err + } + + v, b, err := parseValue(b) + if err != nil { + return b, err + } + + switch v[0] { + case '{': + m := make(map[string]interface{}) + v, err = d.decodeMapStringInterface(v, unsafe.Pointer(&m)) + val = m + + case '[': + a := make([]interface{}, 0, 10) + v, err = d.decodeSlice(v, unsafe.Pointer(&a), unsafe.Sizeof(a[0]), sliceInterfaceType, decoder.decodeInterface) + val = a + + case '"': + s := "" + v, err = d.decodeString(v, unsafe.Pointer(&s)) + val = s + + case 'n': + v, err = d.decodeNull(v, nil) + val = nil + + case 't', 'f': + x := false + v, err = d.decodeBool(v, unsafe.Pointer(&x)) + val = x + + case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + if (d.flags & UseNumber) != 0 { + n := Number("") + v, err = d.decodeNumber(v, unsafe.Pointer(&n)) + val = n + } else { + f := 0.0 + v, err = d.decodeFloat64(v, unsafe.Pointer(&f)) + val = f + } + + default: + return b, syntaxError(v, "expected token but found '%c'", v[0]) + } + + if err != nil { + return b, err + } + + if v = skipSpaces(v); len(v) != 0 { + return b, syntaxError(v, "unexpected trailing trailing tokens after json value") + } + + *(*interface{})(p) = val + return b, nil +} + +func (d decoder) decodeMaybeEmptyInterface(b []byte, p unsafe.Pointer, t reflect.Type) ([]byte, error) { + if hasNullPrefix(b) { + *(*interface{})(p) = nil + return b[4:], nil + } + + if x := reflect.NewAt(t, p).Elem(); !x.IsNil() { + if e := x.Elem(); e.Kind() == reflect.Ptr { + return Parse(b, e.Interface(), d.flags) + } + } else if t.NumMethod() == 0 { // empty interface + return Parse(b, (*interface{})(p), d.flags) + } + + return d.decodeUnmarshalTypeError(b, p, t) +} + +func (d decoder) decodeUnmarshalTypeError(b []byte, p unsafe.Pointer, t reflect.Type) ([]byte, error) { + v, b, err := parseValue(b) + if err != nil { + return b, err + } + return b, &UnmarshalTypeError{ + Value: string(v), + Type: t, + } +} + +func (d decoder) decodeRawMessage(b []byte, p unsafe.Pointer) ([]byte, error) { + v, r, err := parseValue(b) + if err != nil { + return inputError(b, rawMessageType) + } + + if (d.flags & DontCopyRawMessage) == 0 { + v = append(make([]byte, 0, len(v)), v...) + } + + *(*RawMessage)(p) = json.RawMessage(v) + return r, err +} + +func (d decoder) decodeJSONUnmarshaler(b []byte, p unsafe.Pointer, t reflect.Type, pointer bool) ([]byte, error) { + v, b, err := parseValue(b) + if err != nil { + return b, err + } + + if len(v) != 0 && v[0] == 'n' { // null + return b, nil + } + + u := reflect.NewAt(t, p) + if !pointer { + u = u.Elem() + t = t.Elem() + } + if u.IsNil() { + u.Set(reflect.New(t)) + } + return b, u.Interface().(Unmarshaler).UnmarshalJSON(v) +} + +func (d decoder) decodeTextUnmarshaler(b []byte, p unsafe.Pointer, t reflect.Type, pointer bool) ([]byte, error) { + var value string + + v, b, err := parseValue(b) + if err != nil { + return b, err + } + if len(v) == 0 { + return inputError(v, t) + } + + switch v[0] { + case 'n': + _, _, err := parseNull(v) + return b, err + case '"': + s, _, _, err := parseStringUnquote(v, nil) + if err != nil { + return b, err + } + u := reflect.NewAt(t, p) + if !pointer { + u = u.Elem() + t = t.Elem() + } + if u.IsNil() { + u.Set(reflect.New(t)) + } + return b, u.Interface().(encoding.TextUnmarshaler).UnmarshalText(s) + case '{': + value = "object" + case '[': + value = "array" + case 't': + value = "true" + case 'f': + value = "false" + case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + value = "number" + } + + return b, &UnmarshalTypeError{Value: value, Type: reflect.PtrTo(t)} +} diff --git a/cli/output/jsonw/internal/jcolorenc/encode.go b/cli/output/jsonw/internal/jcolorenc/encode.go new file mode 100644 index 00000000..c22c21d5 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/encode.go @@ -0,0 +1,989 @@ +package json + +import ( + "bytes" + "encoding" + "encoding/base64" + "math" + "reflect" + "sort" + "strconv" + "sync" + "time" + "unicode/utf8" + "unsafe" +) + +const hex = "0123456789abcdef" + +func (e encoder) encodeNull(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendNull(b), nil +} + +func (e encoder) encodeBool(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendBool(b, *(*bool)(p)), nil +} + +func (e encoder) encodeInt(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendInt64(b, int64(*(*int)(p))), nil +} + +func (e encoder) encodeInt8(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendInt64(b, int64(*(*int8)(p))), nil +} + +func (e encoder) encodeInt16(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendInt64(b, int64(*(*int16)(p))), nil +} + +func (e encoder) encodeInt32(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendInt64(b, int64(*(*int32)(p))), nil +} + +func (e encoder) encodeInt64(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendInt64(b, int64(*(*int64)(p))), nil +} + +func (e encoder) encodeUint(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendUint64(b, uint64(*(*uint)(p))), nil +} + +func (e encoder) encodeUintptr(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendUint64(b, uint64(*(*uintptr)(p))), nil +} + +func (e encoder) encodeUint8(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendUint64(b, uint64(*(*uint8)(p))), nil +} + +func (e encoder) encodeUint16(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendUint64(b, uint64(*(*uint16)(p))), nil +} + +func (e encoder) encodeUint32(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendUint64(b, uint64(*(*uint32)(p))), nil +} + +func (e encoder) encodeUint64(b []byte, p unsafe.Pointer) ([]byte, error) { + return e.clrs.AppendUint64(b, uint64(*(*uint64)(p))), nil +} + +func (e encoder) encodeFloat32(b []byte, p unsafe.Pointer) ([]byte, error) { + b = append(b, e.clrs.Number.Prefix...) + var err error + b, err = e.encodeFloat(b, float64(*(*float32)(p)), 32) + b = append(b, e.clrs.Number.Suffix...) + return b, err +} + +func (e encoder) encodeFloat64(b []byte, p unsafe.Pointer) ([]byte, error) { + b = append(b, e.clrs.Number.Prefix...) + var err error + b, err = e.encodeFloat(b, *(*float64)(p), 64) + b = append(b, e.clrs.Number.Suffix...) + return b, err +} + +func (e encoder) encodeFloat(b []byte, f float64, bits int) ([]byte, error) { + switch { + case math.IsNaN(f): + return b, &UnsupportedValueError{Value: reflect.ValueOf(f), Str: "NaN"} + case math.IsInf(f, 0): + return b, &UnsupportedValueError{Value: reflect.ValueOf(f), Str: "inf"} + } + + // Convert as if by ES6 number to string conversion. + // This matches most other JSON generators. + // See golang.org/issue/6384 and golang.org/issue/14135. + // Like fmt %g, but the exponent cutoffs are different + // and exponents themselves are not padded to two digits. + abs := math.Abs(f) + fmt := byte('f') + // Note: Must use float32 comparisons for underlying float32 value to get precise cutoffs right. + if abs != 0 { + if bits == 64 && (abs < 1e-6 || abs >= 1e21) || bits == 32 && (float32(abs) < 1e-6 || float32(abs) >= 1e21) { + fmt = 'e' + } + } + + b = strconv.AppendFloat(b, f, fmt, -1, int(bits)) + + if fmt == 'e' { + // clean up e-09 to e-9 + n := len(b) + if n >= 4 && b[n-4] == 'e' && b[n-3] == '-' && b[n-2] == '0' { + b[n-2] = b[n-1] + b = b[:n-1] + } + } + + return b, nil +} + +func (e encoder) encodeNumber(b []byte, p unsafe.Pointer) ([]byte, error) { + n := *(*Number)(p) + if n == "" { + n = "0" + } + + _, _, err := parseNumber(stringToBytes(string(n))) + if err != nil { + return b, err + } + + b = append(b, e.clrs.Number.Prefix...) + b = append(b, n...) + b = append(b, e.clrs.Number.Suffix...) + return b, nil +} + +func (e encoder) encodeKey(b []byte, p unsafe.Pointer) ([]byte, error) { + b = append(b, e.clrs.Key.Prefix...) + var err error + b, err = e.doEncodeString(b, p) + b = append(b, e.clrs.Key.Suffix...) + return b, err +} + +func (e encoder) encodeString(b []byte, p unsafe.Pointer) ([]byte, error) { + b = append(b, e.clrs.String.Prefix...) + var err error + b, err = e.doEncodeString(b, p) + b = append(b, e.clrs.String.Suffix...) + return b, err +} + +func (e encoder) doEncodeString(b []byte, p unsafe.Pointer) ([]byte, error) { + s := *(*string)(p) + i := 0 + j := 0 + escapeHTML := (e.flags & EscapeHTML) != 0 + + b = append(b, '"') + + for j < len(s) { + c := s[j] + + if c >= 0x20 && c <= 0x7f && c != '\\' && c != '"' && (!escapeHTML || (c != '<' && c != '>' && c != '&')) { + // fast path: most of the time, printable ascii characters are used + j++ + continue + } + + switch c { + case '\\', '"': + b = append(b, s[i:j]...) + b = append(b, '\\', c) + i = j + 1 + j = j + 1 + continue + + case '\n': + b = append(b, s[i:j]...) + b = append(b, '\\', 'n') + i = j + 1 + j = j + 1 + continue + + case '\r': + b = append(b, s[i:j]...) + b = append(b, '\\', 'r') + i = j + 1 + j = j + 1 + continue + + case '\t': + b = append(b, s[i:j]...) + b = append(b, '\\', 't') + i = j + 1 + j = j + 1 + continue + + case '<', '>', '&': + b = append(b, s[i:j]...) + b = append(b, `\u00`...) + b = append(b, hex[c>>4], hex[c&0xF]) + i = j + 1 + j = j + 1 + continue + } + + // This encodes bytes < 0x20 except for \t, \n and \r. + if c < 0x20 { + b = append(b, s[i:j]...) + b = append(b, `\u00`...) + b = append(b, hex[c>>4], hex[c&0xF]) + i = j + 1 + j = j + 1 + continue + } + + r, size := utf8.DecodeRuneInString(s[j:]) + + if r == utf8.RuneError && size == 1 { + b = append(b, s[i:j]...) + b = append(b, `\ufffd`...) + i = j + size + j = j + size + continue + } + + switch r { + case '\u2028', '\u2029': + // U+2028 is LINE SEPARATOR. + // U+2029 is PARAGRAPH SEPARATOR. + // They are both technically valid characters in JSON strings, + // but don't work in JSONP, which has to be evaluated as JavaScript, + // and can lead to security holes there. It is valid JSON to + // escape them, so we do so unconditionally. + // See http://timelessrepo.com/json-isnt-a-javascript-subset for discussion. + b = append(b, s[i:j]...) + b = append(b, `\u202`...) + b = append(b, hex[r&0xF]) + i = j + size + j = j + size + continue + } + + j += size + } + + b = append(b, s[i:]...) + b = append(b, '"') + return b, nil +} + +func (e encoder) encodeToString(b []byte, p unsafe.Pointer, encode encodeFunc) ([]byte, error) { + i := len(b) + + b, err := encode(e, b, p) + if err != nil { + return b, err + } + + j := len(b) + s := b[i:] + + if b, err = e.doEncodeString(b, unsafe.Pointer(&s)); err != nil { + return b, err + } + + n := copy(b[i:], b[j:]) + return b[:i+n], nil +} + +func (e encoder) encodeBytes(b []byte, p unsafe.Pointer) ([]byte, error) { + b = append(b, e.clrs.Bytes.Prefix...) + var err error + b, err = e.doEncodeBytes(b, p) + return append(b, e.clrs.Bytes.Suffix...), err +} + +func (e encoder) doEncodeBytes(b []byte, p unsafe.Pointer) ([]byte, error) { + v := *(*[]byte)(p) + if v == nil { + return e.clrs.AppendNull(b), nil + } + + n := base64.StdEncoding.EncodedLen(len(v)) + 2 + + if avail := cap(b) - len(b); avail < n { + newB := make([]byte, cap(b)+(n-avail)) + copy(newB, b) + b = newB[:len(b)] + } + + i := len(b) + j := len(b) + n + + b = b[:j] + b[i] = '"' + base64.StdEncoding.Encode(b[i+1:j-1], v) + b[j-1] = '"' + return b, nil +} + +func (e encoder) encodeDuration(b []byte, p unsafe.Pointer) ([]byte, error) { + b = append(b, e.clrs.Time.Prefix...) + b = append(b, '"') + b = appendDuration(b, *(*time.Duration)(p)) + b = append(b, '"') + b = append(b, e.clrs.Time.Suffix...) + return b, nil +} + +func (e encoder) encodeTime(b []byte, p unsafe.Pointer) ([]byte, error) { + t := *(*time.Time)(p) + b = append(b, e.clrs.Time.Prefix...) + b = append(b, '"') + b = t.AppendFormat(b, time.RFC3339Nano) + b = append(b, '"') + b = append(b, e.clrs.Time.Suffix...) + return b, nil +} + +func (e encoder) encodeArray(b []byte, p unsafe.Pointer, n int, size uintptr, t reflect.Type, encode encodeFunc) ([]byte, error) { + var start = len(b) + var err error + + b = append(b, '[') + + if n > 0 { + e.indenter.Push() + for i := 0; i < n; i++ { + if i != 0 { + b = append(b, ',') + } + + b = e.indenter.AppendByte(b, '\n') + b = e.indenter.AppendIndent(b) + + if b, err = encode(e, b, unsafe.Pointer(uintptr(p)+(uintptr(i)*size))); err != nil { + return b[:start], err + } + } + e.indenter.Pop() + b = e.indenter.AppendByte(b, '\n') + b = e.indenter.AppendIndent(b) + } + + b = append(b, ']') + + return b, nil +} + +func (e encoder) encodeSlice(b []byte, p unsafe.Pointer, size uintptr, t reflect.Type, encode encodeFunc) ([]byte, error) { + s := (*slice)(p) + + if s.data == nil && s.len == 0 && s.cap == 0 { + return e.clrs.AppendNull(b), nil + } + + return e.encodeArray(b, s.data, s.len, size, t, encode) +} + +func (e encoder) encodeMap(b []byte, p unsafe.Pointer, t reflect.Type, encodeKey, encodeValue encodeFunc, sortKeys sortFunc) ([]byte, error) { + m := reflect.NewAt(t, p).Elem() + if m.IsNil() { + return e.clrs.AppendNull(b), nil + } + + keys := m.MapKeys() + if sortKeys != nil && (e.flags&SortMapKeys) != 0 { + sortKeys(keys) + } + + var start = len(b) + var err error + b = append(b, '{') + + if len(keys) != 0 { + b = e.indenter.AppendByte(b, '\n') + + e.indenter.Push() + for i, k := range keys { + v := m.MapIndex(k) + + if i != 0 { + b = append(b, ',') + b = e.indenter.AppendByte(b, '\n') + } + + b = e.indenter.AppendIndent(b) + if b, err = encodeKey(e, b, (*iface)(unsafe.Pointer(&k)).ptr); err != nil { + return b[:start], err + } + + b = append(b, ':') + b = e.indenter.AppendByte(b, ' ') + + if b, err = encodeValue(e, b, (*iface)(unsafe.Pointer(&v)).ptr); err != nil { + return b[:start], err + } + } + b = e.indenter.AppendByte(b, '\n') + e.indenter.Pop() + b = e.indenter.AppendIndent(b) + } + + b = append(b, '}') + return b, nil +} + +type element struct { + key string + val interface{} + raw RawMessage +} + +type mapslice struct { + elements []element +} + +func (m *mapslice) Len() int { return len(m.elements) } +func (m *mapslice) Less(i, j int) bool { return m.elements[i].key < m.elements[j].key } +func (m *mapslice) Swap(i, j int) { m.elements[i], m.elements[j] = m.elements[j], m.elements[i] } + +var mapslicePool = sync.Pool{ + New: func() interface{} { return new(mapslice) }, +} + +func (e encoder) encodeMapStringInterface(b []byte, p unsafe.Pointer) ([]byte, error) { + m := *(*map[string]interface{})(p) + if m == nil { + return e.clrs.AppendNull(b), nil + } + + if (e.flags & SortMapKeys) == 0 { + // Optimized code path when the program does not need the map keys to be + // sorted. + b = append(b, '{') + + if len(m) != 0 { + b = e.indenter.AppendByte(b, '\n') + + var err error + var i = 0 + + e.indenter.Push() + for k, v := range m { + if i != 0 { + b = append(b, ',') + b = e.indenter.AppendByte(b, '\n') + } + + b = e.indenter.AppendIndent(b) + + b, err = e.encodeKey(b, unsafe.Pointer(&k)) + if err != nil { + return b, err + } + + b = append(b, ':') + b = e.indenter.AppendByte(b, ' ') + + b, err = Append(b, v, e.flags, e.clrs, e.indenter) + if err != nil { + return b, err + } + + i++ + } + b = e.indenter.AppendByte(b, '\n') + e.indenter.Pop() + b = e.indenter.AppendIndent(b) + } + + b = append(b, '}') + return b, nil + } + + s := mapslicePool.Get().(*mapslice) + if cap(s.elements) < len(m) { + s.elements = make([]element, 0, align(10, uintptr(len(m)))) + } + for key, val := range m { + s.elements = append(s.elements, element{key: key, val: val}) + } + sort.Sort(s) + + var start = len(b) + var err error + b = append(b, '{') + + if len(s.elements) > 0 { + b = e.indenter.AppendByte(b, '\n') + + e.indenter.Push() + for i, elem := range s.elements { + if i != 0 { + b = append(b, ',') + b = e.indenter.AppendByte(b, '\n') + } + + b = e.indenter.AppendIndent(b) + + b, _ = e.encodeKey(b, unsafe.Pointer(&elem.key)) + b = append(b, ':') + b = e.indenter.AppendByte(b, ' ') + + b, err = Append(b, elem.val, e.flags, e.clrs, e.indenter) + if err != nil { + break + } + } + b = e.indenter.AppendByte(b, '\n') + e.indenter.Pop() + b = e.indenter.AppendIndent(b) + } + + for i := range s.elements { + s.elements[i] = element{} + } + + s.elements = s.elements[:0] + mapslicePool.Put(s) + + if err != nil { + return b[:start], err + } + + b = append(b, '}') + return b, nil +} + +func (e encoder) encodeMapStringRawMessage(b []byte, p unsafe.Pointer) ([]byte, error) { + m := *(*map[string]RawMessage)(p) + if m == nil { + return e.clrs.AppendNull(b), nil + } + + if (e.flags & SortMapKeys) == 0 { + // Optimized code path when the program does not need the map keys to be + // sorted. + b = append(b, '{') + + if len(m) != 0 { + b = e.indenter.AppendByte(b, '\n') + + var err error + var i = 0 + + e.indenter.Push() + for k, v := range m { + if i != 0 { + b = append(b, ',') + b = e.indenter.AppendByte(b, '\n') + } + + b = e.indenter.AppendIndent(b) + + b, _ = e.encodeKey(b, unsafe.Pointer(&k)) + + b = append(b, ':') + b = e.indenter.AppendByte(b, ' ') + + b, err = e.encodeRawMessage(b, unsafe.Pointer(&v)) + if err != nil { + break + } + + i++ + } + b = e.indenter.AppendByte(b, '\n') + e.indenter.Pop() + b = e.indenter.AppendIndent(b) + } + + b = append(b, '}') + return b, nil + } + + s := mapslicePool.Get().(*mapslice) + if cap(s.elements) < len(m) { + s.elements = make([]element, 0, align(10, uintptr(len(m)))) + } + for key, raw := range m { + s.elements = append(s.elements, element{key: key, raw: raw}) + } + sort.Sort(s) + + var start = len(b) + var err error + b = append(b, '{') + + if len(s.elements) > 0 { + b = e.indenter.AppendByte(b, '\n') + + e.indenter.Push() + + for i, elem := range s.elements { + if i != 0 { + b = append(b, ',') + b = e.indenter.AppendByte(b, '\n') + } + + b = e.indenter.AppendIndent(b) + + b, _ = e.encodeKey(b, unsafe.Pointer(&elem.key)) + b = append(b, ':') + b = e.indenter.AppendByte(b, ' ') + + b, err = e.encodeRawMessage(b, unsafe.Pointer(&elem.raw)) + if err != nil { + break + } + } + b = e.indenter.AppendByte(b, '\n') + e.indenter.Pop() + b = e.indenter.AppendIndent(b) + } + + for i := range s.elements { + s.elements[i] = element{} + } + + s.elements = s.elements[:0] + mapslicePool.Put(s) + + if err != nil { + return b[:start], err + } + + b = append(b, '}') + return b, nil +} + +func (e encoder) encodeStruct(b []byte, p unsafe.Pointer, st *structType) ([]byte, error) { + var start = len(b) + var err error + var k string + var n int + + b = append(b, '{') + + if len(st.fields) > 0 { + b = e.indenter.AppendByte(b, '\n') + } + + e.indenter.Push() + + for i := range st.fields { + f := &st.fields[i] + v := unsafe.Pointer(uintptr(p) + f.offset) + + if f.omitempty && f.empty(v) { + continue + } + + if n != 0 { + b = append(b, ',') + b = e.indenter.AppendByte(b, '\n') + } + + if (e.flags & EscapeHTML) != 0 { + k = f.html + } else { + k = f.json + } + + lengthBeforeKey := len(b) + b = e.indenter.AppendIndent(b) + + b = append(b, e.clrs.Key.Prefix...) + b = append(b, k...) + b = append(b, e.clrs.Key.Suffix...) + b = append(b, ':') + + b = e.indenter.AppendByte(b, ' ') + + if b, err = f.codec.encode(e, b, v); err != nil { + if err == (rollback{}) { + b = b[:lengthBeforeKey] + continue + } + return b[:start], err + } + + n++ + } + + if n > 0 { + b = e.indenter.AppendByte(b, '\n') + } + + e.indenter.Pop() + b = e.indenter.AppendIndent(b) + + b = append(b, '}') + return b, nil +} + +type rollback struct{} + +func (rollback) Error() string { return "rollback" } + +func (e encoder) encodeEmbeddedStructPointer(b []byte, p unsafe.Pointer, t reflect.Type, unexported bool, offset uintptr, encode encodeFunc) ([]byte, error) { + p = *(*unsafe.Pointer)(p) + if p == nil { + return b, rollback{} + } + return encode(e, b, unsafe.Pointer(uintptr(p)+offset)) +} + +func (e encoder) encodePointer(b []byte, p unsafe.Pointer, t reflect.Type, encode encodeFunc) ([]byte, error) { + if p = *(*unsafe.Pointer)(p); p != nil { + return encode(e, b, p) + } + return e.encodeNull(b, nil) +} + +func (e encoder) encodeInterface(b []byte, p unsafe.Pointer) ([]byte, error) { + return Append(b, *(*interface{})(p), e.flags, e.clrs, e.indenter) +} + +func (e encoder) encodeMaybeEmptyInterface(b []byte, p unsafe.Pointer, t reflect.Type) ([]byte, error) { + return Append(b, reflect.NewAt(t, p).Elem().Interface(), e.flags, e.clrs, e.indenter) +} + +func (e encoder) encodeUnsupportedTypeError(b []byte, p unsafe.Pointer, t reflect.Type) ([]byte, error) { + return b, &UnsupportedTypeError{Type: t} +} + +func (e encoder) encodeRawMessage(b []byte, p unsafe.Pointer) ([]byte, error) { + v := *(*RawMessage)(p) + + if v == nil { + + return e.clrs.AppendNull(b), nil + } + + var s []byte + + if (e.flags & TrustRawMessage) != 0 { + s = v + } else { + var err error + s, _, err = parseValue(v) + if err != nil { + return b, &UnsupportedValueError{Value: reflect.ValueOf(v), Str: err.Error()} + } + } + + if e.indenter == nil { + if (e.flags & EscapeHTML) != 0 { + return appendCompactEscapeHTML(b, s), nil + } + + return append(b, s...), nil + } + + // In order to get the tests inherited from the original segmentio + // encoder to work, we need to support indentation. However, due to + // the complexity of parsing and then colorizing, we're not going to + // go to the effort of adding color support for JSONMarshaler right + // now. Possibly revisit this in future if needed. + + // This below is sloppy, but seems to work. + if (e.flags & EscapeHTML) != 0 { + s = appendCompactEscapeHTML(nil, s) + } + + // The "prefix" arg to Indent is the current indentation. + pre := e.indenter.AppendIndent(nil) + + buf := &bytes.Buffer{} + // And now we just make use of the existing Indent function. + err := Indent(buf, s, string(pre), e.indenter.Indent) + if err != nil { + return b, err + } + + s = buf.Bytes() + + return append(b, s...), nil +} + +func (e encoder) encodeJSONMarshaler(b []byte, p unsafe.Pointer, t reflect.Type, pointer bool) ([]byte, error) { + v := reflect.NewAt(t, p) + + if !pointer { + v = v.Elem() + } + + switch v.Kind() { + case reflect.Ptr, reflect.Interface: + if v.IsNil() { + return e.clrs.AppendNull(b), nil + } + } + + j, err := v.Interface().(Marshaler).MarshalJSON() + if err != nil { + return b, err + } + + s, _, err := parseValue(j) + if err != nil { + return b, &MarshalerError{Type: t, Err: err} + } + + if e.indenter == nil { + if (e.flags & EscapeHTML) != 0 { + return appendCompactEscapeHTML(b, s), nil + } + + return append(b, s...), nil + } + + // In order to get the tests inherited from the original segmentio + // encoder to work, we need to support indentation. However, due to + // the complexity of parsing and then colorizing, we're not going to + // go to the effort of supporting color for JSONMarshaler. + // Possibly revisit this in future if needed. + + // This below is sloppy, but seems to work. + if (e.flags & EscapeHTML) != 0 { + s = appendCompactEscapeHTML(nil, s) + } + + // The "prefix" arg to Indent is the current indentation. + pre := e.indenter.AppendIndent(nil) + + buf := &bytes.Buffer{} + // And now we just make use of the existing Indent function. + err = Indent(buf, s, string(pre), e.indenter.Indent) + if err != nil { + return b, err + } + + s = buf.Bytes() + + return append(b, s...), nil + +} + +func (e encoder) encodeTextMarshaler(b []byte, p unsafe.Pointer, t reflect.Type, pointer bool) ([]byte, error) { + v := reflect.NewAt(t, p) + + if !pointer { + v = v.Elem() + } + + switch v.Kind() { + case reflect.Ptr, reflect.Interface: + if v.IsNil() { + return append(b, `null`...), nil + } + } + + s, err := v.Interface().(encoding.TextMarshaler).MarshalText() + if err != nil { + return b, err + } + + return e.doEncodeString(b, unsafe.Pointer(&s)) +} + +func appendCompactEscapeHTML(dst []byte, src []byte) []byte { + start := 0 + escape := false + inString := false + + for i, c := range src { + if !inString { + switch c { + case '"': // enter string + inString = true + case ' ', '\n', '\r', '\t': // skip space + if start < i { + dst = append(dst, src[start:i]...) + } + start = i + 1 + } + continue + } + + if escape { + escape = false + continue + } + + if c == '\\' { + escape = true + continue + } + + if c == '"' { + inString = false + continue + } + + if c == '<' || c == '>' || c == '&' { + if start < i { + dst = append(dst, src[start:i]...) + } + dst = append(dst, `\u00`...) + dst = append(dst, hex[c>>4], hex[c&0xF]) + start = i + 1 + continue + } + + // Convert U+2028 and U+2029 (E2 80 A8 and E2 80 A9). + if c == 0xE2 && i+2 < len(src) && src[i+1] == 0x80 && src[i+2]&^1 == 0xA8 { + if start < i { + dst = append(dst, src[start:i]...) + } + dst = append(dst, `\u202`...) + dst = append(dst, hex[src[i+2]&0xF]) + start = i + 3 + continue + } + } + + if start < len(src) { + dst = append(dst, src[start:]...) + } + + return dst +} + +// Indenter is used to indent JSON. The Push and Pop methods +// change indentation level. The AppendIndent method appends the +// computed indentation. The AppendByte method appends a byte. All +// methods are safe to use with a nil receiver. +type Indenter struct { + disabled bool + Prefix string + Indent string + depth int +} + +// NewIndenter returns a new Indenter instance. If prefix and +// indent are both empty, the indenter is effectively disabled, +// and the AppendIndent and AppendByte methods are no-op. +func NewIndenter(prefix, indent string) *Indenter { + return &Indenter{ + disabled: prefix == "" && indent == "", + Prefix: prefix, + Indent: indent, + } +} + +// Push increases the indentation level. +func (in *Indenter) Push() { + if in != nil { + in.depth++ + } +} + +// Pop decreases the indentation level. +func (in *Indenter) Pop() { + if in != nil { + in.depth-- + } +} + +// AppendByte appends a to b if the indenter is non-nil and enabled. +// Otherwise b is returned unmodified. +func (in *Indenter) AppendByte(b []byte, a byte) []byte { + if in == nil || in.disabled { + return b + } + + return append(b, a) +} + +// AppendIndent writes indentation to b, returning the resulting slice. +// If the indenter is nil or disabled b is returned unchanged. +func (in *Indenter) AppendIndent(b []byte) []byte { + if in == nil || in.disabled { + return b + } + + b = append(b, in.Prefix...) + for i := 0; i < in.depth; i++ { + b = append(b, in.Indent...) + } + return b +} diff --git a/cli/output/jsonw/internal/jcolorenc/golang_bench_test.go b/cli/output/jsonw/internal/jcolorenc/golang_bench_test.go new file mode 100644 index 00000000..07cc378c --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/golang_bench_test.go @@ -0,0 +1,374 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Large data benchmark. +// The JSON data is a summary of agl's changes in the +// go, webkit, and chromium open source projects. +// We benchmark converting between the JSON form +// and in-memory data structures. + +package json + +import ( + "bytes" + "compress/gzip" + "fmt" + "io/ioutil" + "os" + "reflect" + "runtime" + "strings" + "sync" + "testing" +) + +type codeResponse struct { + Tree *codeNode `json:"tree"` + Username string `json:"username"` +} + +type codeNode struct { + Name string `json:"name"` + Kids []*codeNode `json:"kids"` + CLWeight float64 `json:"cl_weight"` + Touches int `json:"touches"` + MinT int64 `json:"min_t"` + MaxT int64 `json:"max_t"` + MeanT int64 `json:"mean_t"` +} + +var codeJSON []byte +var codeStruct codeResponse + +func codeInit() { + f, err := os.Open("testdata/code.json.gz") + if err != nil { + panic(err) + } + defer f.Close() + gz, err := gzip.NewReader(f) + if err != nil { + panic(err) + } + data, err := ioutil.ReadAll(gz) + if err != nil { + panic(err) + } + + codeJSON = data + + if err := Unmarshal(codeJSON, &codeStruct); err != nil { + panic("unmarshal code.json: " + err.Error()) + } + + if data, err = Marshal(&codeStruct); err != nil { + panic("marshal code.json: " + err.Error()) + } + + if !bytes.Equal(data, codeJSON) { + println("different lengths", len(data), len(codeJSON)) + for i := 0; i < len(data) && i < len(codeJSON); i++ { + if data[i] != codeJSON[i] { + println("re-marshal: changed at byte", i) + println("orig: ", string(codeJSON[i-10:i+10])) + println("new: ", string(data[i-10:i+10])) + break + } + } + panic("re-marshal code.json: different result") + } +} + +func BenchmarkCodeEncoder(b *testing.B) { + b.ReportAllocs() + if codeJSON == nil { + b.StopTimer() + codeInit() + b.StartTimer() + } + b.RunParallel(func(pb *testing.PB) { + enc := NewEncoder(ioutil.Discard) + for pb.Next() { + if err := enc.Encode(&codeStruct); err != nil { + b.Fatal("Encode:", err) + } + } + }) + b.SetBytes(int64(len(codeJSON))) +} + +func BenchmarkCodeMarshal(b *testing.B) { + b.ReportAllocs() + if codeJSON == nil { + b.StopTimer() + codeInit() + b.StartTimer() + } + b.RunParallel(func(pb *testing.PB) { + for pb.Next() { + if _, err := Marshal(&codeStruct); err != nil { + b.Fatal("Marshal:", err) + } + } + }) + b.SetBytes(int64(len(codeJSON))) +} + +func benchMarshalBytes(n int) func(*testing.B) { + sample := []byte("hello world") + // Use a struct pointer, to avoid an allocation when passing it as an + // interface parameter to Marshal. + v := &struct { + Bytes []byte + }{ + bytes.Repeat(sample, (n/len(sample))+1)[:n], + } + return func(b *testing.B) { + for i := 0; i < b.N; i++ { + if _, err := Marshal(v); err != nil { + b.Fatal("Marshal:", err) + } + } + } +} + +func BenchmarkMarshalBytes(b *testing.B) { + b.ReportAllocs() + // 32 fits within encodeState.scratch. + b.Run("32", benchMarshalBytes(32)) + // 256 doesn't fit in encodeState.scratch, but is small enough to + // allocate and avoid the slower base64.NewEncoder. + b.Run("256", benchMarshalBytes(256)) + // 4096 is large enough that we want to avoid allocating for it. + b.Run("4096", benchMarshalBytes(4096)) +} + +func BenchmarkCodeDecoder(b *testing.B) { + b.ReportAllocs() + if codeJSON == nil { + b.StopTimer() + codeInit() + b.StartTimer() + } + b.RunParallel(func(pb *testing.PB) { + var buf bytes.Buffer + dec := NewDecoder(&buf) + var r codeResponse + for pb.Next() { + buf.Write(codeJSON) + // hide EOF + buf.WriteByte('\n') + buf.WriteByte('\n') + buf.WriteByte('\n') + if err := dec.Decode(&r); err != nil { + b.Fatal("Decode:", err) + } + } + }) + b.SetBytes(int64(len(codeJSON))) +} + +func BenchmarkUnicodeDecoder(b *testing.B) { + b.ReportAllocs() + j := []byte(`"\uD83D\uDE01"`) + b.SetBytes(int64(len(j))) + r := bytes.NewReader(j) + dec := NewDecoder(r) + var out string + b.ResetTimer() + for i := 0; i < b.N; i++ { + if err := dec.Decode(&out); err != nil { + b.Fatal("Decode:", err) + } + r.Seek(0, 0) + } +} + +func BenchmarkDecoderStream(b *testing.B) { + b.ReportAllocs() + b.StopTimer() + var buf bytes.Buffer + dec := NewDecoder(&buf) + buf.WriteString(`"` + strings.Repeat("x", 1000000) + `"` + "\n\n\n") + var x interface{} + if err := dec.Decode(&x); err != nil { + b.Fatal("Decode:", err) + } + ones := strings.Repeat(" 1\n", 300000) + "\n\n\n" + b.StartTimer() + for i := 0; i < b.N; i++ { + if i%300000 == 0 { + buf.WriteString(ones) + } + x = nil + if err := dec.Decode(&x); err != nil || x != 1.0 { + b.Fatalf("Decode: %v after %d", err, i) + } + } +} + +func BenchmarkCodeUnmarshal(b *testing.B) { + b.ReportAllocs() + if codeJSON == nil { + b.StopTimer() + codeInit() + b.StartTimer() + } + b.RunParallel(func(pb *testing.PB) { + for pb.Next() { + var r codeResponse + if err := Unmarshal(codeJSON, &r); err != nil { + b.Fatal("Unmarshal:", err) + } + } + }) + b.SetBytes(int64(len(codeJSON))) +} + +func BenchmarkCodeUnmarshalReuse(b *testing.B) { + b.ReportAllocs() + if codeJSON == nil { + b.StopTimer() + codeInit() + b.StartTimer() + } + b.RunParallel(func(pb *testing.PB) { + var r codeResponse + for pb.Next() { + if err := Unmarshal(codeJSON, &r); err != nil { + b.Fatal("Unmarshal:", err) + } + } + }) + b.SetBytes(int64(len(codeJSON))) +} + +func BenchmarkUnmarshalString(b *testing.B) { + b.ReportAllocs() + data := []byte(`"hello, world"`) + b.RunParallel(func(pb *testing.PB) { + var s string + for pb.Next() { + if err := Unmarshal(data, &s); err != nil { + b.Fatal("Unmarshal:", err) + } + } + }) +} + +func BenchmarkUnmarshalFloat64(b *testing.B) { + b.ReportAllocs() + data := []byte(`3.14`) + b.RunParallel(func(pb *testing.PB) { + var f float64 + for pb.Next() { + if err := Unmarshal(data, &f); err != nil { + b.Fatal("Unmarshal:", err) + } + } + }) +} + +func BenchmarkUnmarshalInt64(b *testing.B) { + b.ReportAllocs() + data := []byte(`3`) + b.RunParallel(func(pb *testing.PB) { + var x int64 + for pb.Next() { + if err := Unmarshal(data, &x); err != nil { + b.Fatal("Unmarshal:", err) + } + } + }) +} + +func BenchmarkIssue10335(b *testing.B) { + b.ReportAllocs() + j := []byte(`{"a":{ }}`) + b.RunParallel(func(pb *testing.PB) { + var s struct{} + for pb.Next() { + if err := Unmarshal(j, &s); err != nil { + b.Fatal(err) + } + } + }) +} + +func BenchmarkUnmapped(b *testing.B) { + b.ReportAllocs() + j := []byte(`{"s": "hello", "y": 2, "o": {"x": 0}, "a": [1, 99, {"x": 1}]}`) + b.RunParallel(func(pb *testing.PB) { + var s struct{} + for pb.Next() { + if err := Unmarshal(j, &s); err != nil { + b.Fatal(err) + } + } + }) +} + +func BenchmarkTypeFieldsCache(b *testing.B) { + b.ReportAllocs() + var maxTypes int = 1e6 + if testenv.Builder() != "" { + maxTypes = 1e3 // restrict cache sizes on builders + } + + // Dynamically generate many new types. + types := make([]reflect.Type, maxTypes) + fs := []reflect.StructField{{ + Type: reflect.TypeOf(""), + Index: []int{0}, + }} + for i := range types { + fs[0].Name = fmt.Sprintf("TypeFieldsCache%d", i) + types[i] = reflect.StructOf(fs) + } + + // clearClear clears the cache. Other JSON operations, must not be running. + clearCache := func() { + fieldCache = sync.Map{} + } + + // MissTypes tests the performance of repeated cache misses. + // This measures the time to rebuild a cache of size nt. + for nt := 1; nt <= maxTypes; nt *= 10 { + ts := types[:nt] + b.Run(fmt.Sprintf("MissTypes%d", nt), func(b *testing.B) { + nc := runtime.GOMAXPROCS(0) + for i := 0; i < b.N; i++ { + clearCache() + var wg sync.WaitGroup + for j := 0; j < nc; j++ { + wg.Add(1) + go func(j int) { + for _, t := range ts[(j*len(ts))/nc : ((j+1)*len(ts))/nc] { + cachedTypeFields(t) + } + wg.Done() + }(j) + } + wg.Wait() + } + }) + } + + // HitTypes tests the performance of repeated cache hits. + // This measures the average time of each cache lookup. + for nt := 1; nt <= maxTypes; nt *= 10 { + // Pre-warm a cache of size nt. + clearCache() + for _, t := range types[:nt] { + cachedTypeFields(t) + } + b.Run(fmt.Sprintf("HitTypes%d", nt), func(b *testing.B) { + b.RunParallel(func(pb *testing.PB) { + for pb.Next() { + cachedTypeFields(types[0]) + } + }) + }) + } +} diff --git a/cli/output/jsonw/internal/jcolorenc/golang_decode_test.go b/cli/output/jsonw/internal/jcolorenc/golang_decode_test.go new file mode 100644 index 00000000..746887d0 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/golang_decode_test.go @@ -0,0 +1,2346 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package json + +import ( + "bytes" + "encoding" + "errors" + "fmt" + "image" + "math" + "math/big" + "net" + "reflect" + "strconv" + "strings" + "testing" + "time" +) + +type T struct { + X string + Y int + Z int `json:"-"` +} + +type U struct { + Alphabet string `json:"alpha"` +} + +type V struct { + F1 interface{} + F2 int32 + F3 Number + F4 *VOuter +} + +type VOuter struct { + V V +} + +type W struct { + S SS +} + +type P struct { + PP PP +} + +type PP struct { + T T + Ts []T +} + +type SS string + +func (*SS) UnmarshalJSON(data []byte) error { + return &UnmarshalTypeError{Value: "number", Type: reflect.TypeOf(SS(""))} +} + +// ifaceNumAsFloat64/ifaceNumAsNumber are used to test unmarshaling with and +// without UseNumber +var ifaceNumAsFloat64 = map[string]interface{}{ + "k1": float64(1), + "k2": "s", + "k3": []interface{}{float64(1), float64(2.0), float64(3e-3)}, + "k4": map[string]interface{}{"kk1": "s", "kk2": float64(2)}, +} + +var ifaceNumAsNumber = map[string]interface{}{ + "k1": Number("1"), + "k2": "s", + "k3": []interface{}{Number("1"), Number("2.0"), Number("3e-3")}, + "k4": map[string]interface{}{"kk1": "s", "kk2": Number("2")}, +} + +type tx struct { + x int +} + +type u8 uint8 + +// A type that can unmarshal itself. + +type unmarshaler struct { + T bool +} + +func (u *unmarshaler) UnmarshalJSON(b []byte) error { + *u = unmarshaler{true} // All we need to see that UnmarshalJSON is called. + return nil +} + +type ustruct struct { + M unmarshaler +} + +type unmarshalerText struct { + A, B string +} + +// needed for re-marshaling tests +func (u unmarshalerText) MarshalText() ([]byte, error) { + return []byte(u.A + ":" + u.B), nil +} + +func (u *unmarshalerText) UnmarshalText(b []byte) error { + pos := bytes.IndexByte(b, ':') + if pos == -1 { + return errors.New("missing separator") + } + u.A, u.B = string(b[:pos]), string(b[pos+1:]) + return nil +} + +var _ encoding.TextUnmarshaler = (*unmarshalerText)(nil) + +type ustructText struct { + M unmarshalerText +} + +// u8marshal is an integer type that can marshal/unmarshal itself. +type u8marshal uint8 + +func (u8 u8marshal) MarshalText() ([]byte, error) { + return []byte(fmt.Sprintf("u%d", u8)), nil +} + +var errMissingU8Prefix = errors.New("missing 'u' prefix") + +func (u8 *u8marshal) UnmarshalText(b []byte) error { + if !bytes.HasPrefix(b, []byte{'u'}) { + return errMissingU8Prefix + } + n, err := strconv.Atoi(string(b[1:])) + if err != nil { + return err + } + *u8 = u8marshal(n) + return nil +} + +var _ encoding.TextUnmarshaler = (*u8marshal)(nil) + +var ( + um0, um1 unmarshaler // target2 of unmarshaling + ump = &um1 + umtrue = unmarshaler{true} + umslice = []unmarshaler{{true}} + umslicep = new([]unmarshaler) + umstruct = ustruct{unmarshaler{true}} + + um0T, um1T unmarshalerText // target2 of unmarshaling + umpType = &um1T + umtrueXY = unmarshalerText{"x", "y"} + umsliceXY = []unmarshalerText{{"x", "y"}} + umslicepType = new([]unmarshalerText) + umstructType = new(ustructText) + umstructXY = ustructText{unmarshalerText{"x", "y"}} + + ummapType = map[unmarshalerText]bool{} + ummapXY = map[unmarshalerText]bool{{"x", "y"}: true} +) + +// Test data structures for anonymous fields. + +type Point struct { + Z int +} + +type Top struct { + Level0 int + Embed0 + *Embed0a + *Embed0b `json:"e,omitempty"` // treated as named + Embed0c `json:"-"` // ignored + Loop + Embed0p // has Point with X, Y, used + Embed0q // has Point with Z, used + embed // contains exported field +} + +type Embed0 struct { + Level1a int // overridden by Embed0a's Level1a with json tag + Level1b int // used because Embed0a's Level1b is renamed + Level1c int // used because Embed0a's Level1c is ignored + Level1d int // annihilated by Embed0a's Level1d + Level1e int `json:"x"` // annihilated by Embed0a.Level1e +} + +type Embed0a struct { + Level1a int `json:"Level1a,omitempty"` + Level1b int `json:"LEVEL1B,omitempty"` + Level1c int `json:"-"` + Level1d int // annihilated by Embed0's Level1d + Level1f int `json:"x"` // annihilated by Embed0's Level1e +} + +type Embed0b Embed0 + +type Embed0c Embed0 + +type Embed0p struct { + image.Point +} + +type Embed0q struct { + Point +} + +type embed struct { + Q int +} + +type Loop struct { + Loop1 int `json:",omitempty"` + Loop2 int `json:",omitempty"` + *Loop +} + +// From reflect test: +// The X in S6 and S7 annihilate, but they also block the X in S8.S9. +type S5 struct { + S6 + S7 + S8 +} + +type S6 struct { + X int +} + +type S7 S6 + +type S8 struct { + S9 +} + +type S9 struct { + X int + Y int +} + +// From reflect test: +// The X in S11.S6 and S12.S6 annihilate, but they also block the X in S13.S8.S9. +type S10 struct { + S11 + S12 + S13 +} + +type S11 struct { + S6 +} + +type S12 struct { + S6 +} + +type S13 struct { + S8 +} + +type Ambig struct { + // Given "hello", the first match should win. + First int `json:"HELLO"` + Second int `json:"Hello"` +} + +type XYZ struct { + X interface{} + Y interface{} + Z interface{} +} + +type unexportedWithMethods struct{} + +func (unexportedWithMethods) F() {} + +func sliceAddr(x []int) *[]int { return &x } +func mapAddr(x map[string]int) *map[string]int { return &x } + +type byteWithMarshalJSON byte + +func (b byteWithMarshalJSON) MarshalJSON() ([]byte, error) { + return []byte(fmt.Sprintf(`"Z%.2x"`, byte(b))), nil +} + +func (b *byteWithMarshalJSON) UnmarshalJSON(data []byte) error { + if len(data) != 5 || data[0] != '"' || data[1] != 'Z' || data[4] != '"' { + return fmt.Errorf("bad quoted string") + } + i, err := strconv.ParseInt(string(data[2:4]), 16, 8) + if err != nil { + return fmt.Errorf("bad hex") + } + *b = byteWithMarshalJSON(i) + return nil +} + +type byteWithPtrMarshalJSON byte + +func (b *byteWithPtrMarshalJSON) MarshalJSON() ([]byte, error) { + return byteWithMarshalJSON(*b).MarshalJSON() +} + +func (b *byteWithPtrMarshalJSON) UnmarshalJSON(data []byte) error { + return (*byteWithMarshalJSON)(b).UnmarshalJSON(data) +} + +type byteWithMarshalText byte + +func (b byteWithMarshalText) MarshalText() ([]byte, error) { + return []byte(fmt.Sprintf(`Z%.2x`, byte(b))), nil +} + +func (b *byteWithMarshalText) UnmarshalText(data []byte) error { + if len(data) != 3 || data[0] != 'Z' { + return fmt.Errorf("bad quoted string") + } + i, err := strconv.ParseInt(string(data[1:3]), 16, 8) + if err != nil { + return fmt.Errorf("bad hex") + } + *b = byteWithMarshalText(i) + return nil +} + +type byteWithPtrMarshalText byte + +func (b *byteWithPtrMarshalText) MarshalText() ([]byte, error) { + return byteWithMarshalText(*b).MarshalText() +} + +func (b *byteWithPtrMarshalText) UnmarshalText(data []byte) error { + return (*byteWithMarshalText)(b).UnmarshalText(data) +} + +type intWithMarshalJSON int + +func (b intWithMarshalJSON) MarshalJSON() ([]byte, error) { + return []byte(fmt.Sprintf(`"Z%.2x"`, int(b))), nil +} + +func (b *intWithMarshalJSON) UnmarshalJSON(data []byte) error { + if len(data) != 5 || data[0] != '"' || data[1] != 'Z' || data[4] != '"' { + return fmt.Errorf("bad quoted string") + } + i, err := strconv.ParseInt(string(data[2:4]), 16, 8) + if err != nil { + return fmt.Errorf("bad hex") + } + *b = intWithMarshalJSON(i) + return nil +} + +type intWithPtrMarshalJSON int + +func (b *intWithPtrMarshalJSON) MarshalJSON() ([]byte, error) { + return intWithMarshalJSON(*b).MarshalJSON() +} + +func (b *intWithPtrMarshalJSON) UnmarshalJSON(data []byte) error { + return (*intWithMarshalJSON)(b).UnmarshalJSON(data) +} + +type intWithMarshalText int + +func (b intWithMarshalText) MarshalText() ([]byte, error) { + return []byte(fmt.Sprintf(`Z%.2x`, int(b))), nil +} + +func (b *intWithMarshalText) UnmarshalText(data []byte) error { + if len(data) != 3 || data[0] != 'Z' { + return fmt.Errorf("bad quoted string") + } + i, err := strconv.ParseInt(string(data[1:3]), 16, 8) + if err != nil { + return fmt.Errorf("bad hex") + } + *b = intWithMarshalText(i) + return nil +} + +type intWithPtrMarshalText int + +func (b *intWithPtrMarshalText) MarshalText() ([]byte, error) { + return intWithMarshalText(*b).MarshalText() +} + +func (b *intWithPtrMarshalText) UnmarshalText(data []byte) error { + return (*intWithMarshalText)(b).UnmarshalText(data) +} + +type mapStringToStringData struct { + Data map[string]string `json:"data"` +} + +type unmarshalTest struct { + in string + ptr interface{} + out interface{} + err error + useNumber bool + golden bool + disallowUnknownFields bool +} + +type B struct { + B bool `json:",string"` +} + +var unmarshalTests = []unmarshalTest{ + // basic types + {in: `true`, ptr: new(bool), out: true}, + {in: `1`, ptr: new(int), out: 1}, + {in: `1.2`, ptr: new(float64), out: 1.2}, + {in: `-5`, ptr: new(int16), out: int16(-5)}, + {in: `2`, ptr: new(Number), out: Number("2"), useNumber: true}, + {in: `2`, ptr: new(Number), out: Number("2")}, + {in: `2`, ptr: new(interface{}), out: float64(2.0)}, + {in: `2`, ptr: new(interface{}), out: Number("2"), useNumber: true}, + {in: `"a\u1234"`, ptr: new(string), out: "a\u1234"}, + {in: `"http:\/\/"`, ptr: new(string), out: "http://"}, + {in: `"g-clef: \uD834\uDD1E"`, ptr: new(string), out: "g-clef: \U0001D11E"}, + //TODO + //{in: `"invalid: \uD834x\uDD1E"`, ptr: new(string), out: "invalid: \uFFFDx\uFFFD"}, + {in: "null", ptr: new(interface{}), out: nil}, + {in: `{"X": [1,2,3], "Y": 4}`, ptr: new(T), out: T{Y: 4}, err: &UnmarshalTypeError{"array", reflect.TypeOf(""), 7, "T", "X"}}, + {in: `{"X": 23}`, ptr: new(T), out: T{}, err: &UnmarshalTypeError{"number", reflect.TypeOf(""), 8, "T", "X"}}, {in: `{"x": 1}`, ptr: new(tx), out: tx{}}, + {in: `{"x": 1}`, ptr: new(tx), out: tx{}}, + {in: `{"x": 1}`, ptr: new(tx), err: fmt.Errorf("json: unknown field \"x\""), disallowUnknownFields: true}, + {in: `{"S": 23}`, ptr: new(W), out: W{}, err: &UnmarshalTypeError{"number", reflect.TypeOf(SS("")), 0, "W", "S"}}, + {in: `{"F1":1,"F2":2,"F3":3}`, ptr: new(V), out: V{F1: float64(1), F2: int32(2), F3: Number("3")}}, + {in: `{"F1":1,"F2":2,"F3":3}`, ptr: new(V), out: V{F1: Number("1"), F2: int32(2), F3: Number("3")}, useNumber: true}, + {in: `{"k1":1,"k2":"s","k3":[1,2.0,3e-3],"k4":{"kk1":"s","kk2":2}}`, ptr: new(interface{}), out: ifaceNumAsFloat64}, + {in: `{"k1":1,"k2":"s","k3":[1,2.0,3e-3],"k4":{"kk1":"s","kk2":2}}`, ptr: new(interface{}), out: ifaceNumAsNumber, useNumber: true}, + + // raw values with whitespace + {in: "\n true ", ptr: new(bool), out: true}, + {in: "\t 1 ", ptr: new(int), out: 1}, + {in: "\r 1.2 ", ptr: new(float64), out: 1.2}, + {in: "\t -5 \n", ptr: new(int16), out: int16(-5)}, + {in: "\t \"a\\u1234\" \n", ptr: new(string), out: "a\u1234"}, + + // Z has a "-" tag. + {in: `{"Y": 1, "Z": 2}`, ptr: new(T), out: T{Y: 1}}, + {in: `{"Y": 1, "Z": 2}`, ptr: new(T), err: fmt.Errorf("json: unknown field \"Z\""), disallowUnknownFields: true}, + + {in: `{"alpha": "abc", "alphabet": "xyz"}`, ptr: new(U), out: U{Alphabet: "abc"}}, + {in: `{"alpha": "abc", "alphabet": "xyz"}`, ptr: new(U), err: fmt.Errorf("json: unknown field \"alphabet\""), disallowUnknownFields: true}, + {in: `{"alpha": "abc"}`, ptr: new(U), out: U{Alphabet: "abc"}}, + {in: `{"alphabet": "xyz"}`, ptr: new(U), out: U{}}, + {in: `{"alphabet": "xyz"}`, ptr: new(U), err: fmt.Errorf("json: unknown field \"alphabet\""), disallowUnknownFields: true}, + + // syntax errors + {in: `{"X": "foo", "Y"}`, err: &testSyntaxError{"invalid character '}' after object key", 17}}, + {in: `[1, 2, 3+]`, err: &testSyntaxError{"invalid character '+' after array element", 9}}, + {in: `{"X":12x}`, err: &testSyntaxError{"invalid character 'x' after object key:value pair", 8}, useNumber: true}, + {in: `[2, 3`, err: &testSyntaxError{msg: "unexpected end of JSON input", Offset: 5}}, + + // raw value errors + {in: "\x01 42", err: &testSyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, + {in: " 42 \x01", err: &testSyntaxError{"invalid character '\\x01' after top-level value", 5}}, + {in: "\x01 true", err: &testSyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, + {in: " false \x01", err: &testSyntaxError{"invalid character '\\x01' after top-level value", 8}}, + {in: "\x01 1.2", err: &testSyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, + {in: " 3.4 \x01", err: &testSyntaxError{"invalid character '\\x01' after top-level value", 6}}, + {in: "\x01 \"string\"", err: &testSyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, + {in: " \"string\" \x01", err: &testSyntaxError{"invalid character '\\x01' after top-level value", 11}}, + + // array tests + {in: `[1, 2, 3]`, ptr: new([3]int), out: [3]int{1, 2, 3}}, + {in: `[1, 2, 3]`, ptr: new([1]int), out: [1]int{1}}, + {in: `[1, 2, 3]`, ptr: new([5]int), out: [5]int{1, 2, 3, 0, 0}}, + {in: `[1, 2, 3]`, ptr: new(MustNotUnmarshalJSON), err: errors.New("MustNotUnmarshalJSON was used")}, + + // empty array to interface test + {in: `[]`, ptr: new([]interface{}), out: []interface{}{}}, + {in: `null`, ptr: new([]interface{}), out: []interface{}(nil)}, + {in: `{"T":[]}`, ptr: new(map[string]interface{}), out: map[string]interface{}{"T": []interface{}{}}}, + {in: `{"T":null}`, ptr: new(map[string]interface{}), out: map[string]interface{}{"T": interface{}(nil)}}, + + // composite tests + {in: allValueIndent, ptr: new(All), out: allValue}, + {in: allValueCompact, ptr: new(All), out: allValue}, + {in: allValueIndent, ptr: new(*All), out: &allValue}, + {in: allValueCompact, ptr: new(*All), out: &allValue}, + {in: pallValueIndent, ptr: new(All), out: pallValue}, + {in: pallValueCompact, ptr: new(All), out: pallValue}, + {in: pallValueIndent, ptr: new(*All), out: &pallValue}, + {in: pallValueCompact, ptr: new(*All), out: &pallValue}, + + // unmarshal interface test + {in: `{"T":false}`, ptr: &um0, out: umtrue}, // use "false" so test will fail if custom unmarshaler is not called + {in: `{"T":false}`, ptr: &ump, out: &umtrue}, + {in: `[{"T":false}]`, ptr: &umslice, out: umslice}, + {in: `[{"T":false}]`, ptr: &umslicep, out: &umslice}, + {in: `{"M":{"T":"x:y"}}`, ptr: &umstruct, out: umstruct}, + + // UnmarshalText interface test + {in: `"x:y"`, ptr: &um0T, out: umtrueXY}, + {in: `"x:y"`, ptr: &umpType, out: &umtrueXY}, + {in: `["x:y"]`, ptr: &umsliceXY, out: umsliceXY}, + {in: `["x:y"]`, ptr: &umslicepType, out: &umsliceXY}, + {in: `{"M":"x:y"}`, ptr: umstructType, out: umstructXY}, + + // integer-keyed map test + { + in: `{"-1":"a","0":"b","1":"c"}`, + ptr: new(map[int]string), + out: map[int]string{-1: "a", 0: "b", 1: "c"}, + }, + { + in: `{"0":"a","10":"c","9":"b"}`, + ptr: new(map[u8]string), + out: map[u8]string{0: "a", 9: "b", 10: "c"}, + }, + { + in: `{"-9223372036854775808":"min","9223372036854775807":"max"}`, + ptr: new(map[int64]string), + out: map[int64]string{math.MinInt64: "min", math.MaxInt64: "max"}, + }, + { + in: `{"18446744073709551615":"max"}`, + ptr: new(map[uint64]string), + out: map[uint64]string{math.MaxUint64: "max"}, + }, + { + in: `{"0":false,"10":true}`, + ptr: new(map[uintptr]bool), + out: map[uintptr]bool{0: false, 10: true}, + }, + + // Check that MarshalText and UnmarshalText take precedence + // over default integer handling in map keys. + { + in: `{"u2":4}`, + ptr: new(map[u8marshal]int), + out: map[u8marshal]int{2: 4}, + }, + { + in: `{"2":4}`, + ptr: new(map[u8marshal]int), + err: errMissingU8Prefix, + }, + + // integer-keyed map errors + { + in: `{"abc":"abc"}`, + ptr: new(map[int]string), + err: &UnmarshalTypeError{Value: "number abc", Type: reflect.TypeOf(0), Offset: 2}, + }, + { + in: `{"256":"abc"}`, + ptr: new(map[uint8]string), + err: &UnmarshalTypeError{Value: "number 256", Type: reflect.TypeOf(uint8(0)), Offset: 2}, + }, + { + in: `{"128":"abc"}`, + ptr: new(map[int8]string), + err: &UnmarshalTypeError{Value: "number 128", Type: reflect.TypeOf(int8(0)), Offset: 2}, + }, + { + in: `{"-1":"abc"}`, + ptr: new(map[uint8]string), + err: &UnmarshalTypeError{Value: "number -1", Type: reflect.TypeOf(uint8(0)), Offset: 2}, + }, + { + in: `{"F":{"a":2,"3":4}}`, + ptr: new(map[string]map[int]int), + err: &UnmarshalTypeError{Value: "number a", Type: reflect.TypeOf(int(0)), Offset: 7}, + }, + { + in: `{"F":{"a":2,"3":4}}`, + ptr: new(map[string]map[uint]int), + err: &UnmarshalTypeError{Value: "number a", Type: reflect.TypeOf(uint(0)), Offset: 7}, + }, + + // Map keys can be encoding.TextUnmarshalers. + {in: `{"x:y":true}`, ptr: &ummapType, out: ummapXY}, + // If multiple values for the same key exists, only the most recent value is used. + {in: `{"x:y":false,"x:y":true}`, ptr: &ummapType, out: ummapXY}, + + // Overwriting of data. + // This is different from package xml, but it's what we've always done. + // Now documented and tested. + {in: `[2]`, ptr: sliceAddr([]int{1}), out: []int{2}}, + {in: `{"key": 2}`, ptr: mapAddr(map[string]int{"old": 0, "key": 1}), out: map[string]int{"key": 2}}, + + { + in: `{ + "Level0": 1, + "Level1b": 2, + "Level1c": 3, + "x": 4, + "Level1a": 5, + "LEVEL1B": 6, + "e": { + "Level1a": 8, + "Level1b": 9, + "Level1c": 10, + "Level1d": 11, + "x": 12 + }, + "Loop1": 13, + "Loop2": 14, + "X": 15, + "Y": 16, + "Z": 17, + "Q": 18 + }`, + ptr: new(Top), + out: Top{ + Level0: 1, + Embed0: Embed0{ + Level1b: 2, + Level1c: 3, + }, + Embed0a: &Embed0a{ + Level1a: 5, + Level1b: 6, + }, + Embed0b: &Embed0b{ + Level1a: 8, + Level1b: 9, + Level1c: 10, + Level1d: 11, + Level1e: 12, + }, + Loop: Loop{ + Loop1: 13, + Loop2: 14, + }, + Embed0p: Embed0p{ + Point: image.Point{X: 15, Y: 16}, + }, + Embed0q: Embed0q{ + Point: Point{Z: 17}, + }, + embed: embed{ + Q: 18, + }, + }, + }, + { + in: `{"hello": 1}`, + ptr: new(Ambig), + out: Ambig{First: 1}, + }, + { + in: `{"X": 1,"Y":2}`, + ptr: new(S5), + out: S5{S8: S8{S9: S9{Y: 2}}}, + }, + { + in: `{"X": 1,"Y":2}`, + ptr: new(S5), + err: fmt.Errorf("json: unknown field \"X\""), + disallowUnknownFields: true, + }, + { + in: `{"X": 1,"Y":2}`, + ptr: new(S10), + out: S10{S13: S13{S8: S8{S9: S9{Y: 2}}}}, + }, + { + in: `{"X": 1,"Y":2}`, + ptr: new(S10), + err: fmt.Errorf("json: unknown field \"X\""), + disallowUnknownFields: true, + }, + + // invalid UTF-8 is coerced to valid UTF-8. + { + in: "\"hello\xffworld\"", + ptr: new(string), + out: "hello\ufffdworld", + }, + { + in: "\"hello\xc2\xc2world\"", + ptr: new(string), + out: "hello\ufffd\ufffdworld", + }, + { + in: "\"hello\xc2\xffworld\"", + ptr: new(string), + out: "hello\ufffd\ufffdworld", + }, + { + in: "\"hello\\ud800world\"", + ptr: new(string), + out: "hello\ufffdworld", + }, + { + in: "\"hello\\ud800\\ud800world\"", + ptr: new(string), + out: "hello\ufffd\ufffdworld", + }, + { + in: "\"hello\\ud800\\ud800world\"", + ptr: new(string), + out: "hello\ufffd\ufffdworld", + }, + { + in: "\"hello\xed\xa0\x80\xed\xb0\x80world\"", + ptr: new(string), + out: "hello\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdworld", + }, + + // Used to be issue 8305, but time.Time implements encoding.TextUnmarshaler so this works now. + { + in: `{"2009-11-10T23:00:00Z": "hello world"}`, + ptr: &map[time.Time]string{}, + out: map[time.Time]string{time.Date(2009, 11, 10, 23, 0, 0, 0, time.UTC): "hello world"}, + }, + + // issue 8305 + { + in: `{"2009-11-10T23:00:00Z": "hello world"}`, + ptr: &map[Point]string{}, + err: &UnmarshalTypeError{Value: "object", Type: reflect.TypeOf(map[Point]string{}), Offset: 1}, + }, + { + in: `{"asdf": "hello world"}`, + ptr: &map[unmarshaler]string{}, + err: &UnmarshalTypeError{Value: "object", Type: reflect.TypeOf(map[unmarshaler]string{}), Offset: 1}, + }, + + // related to issue 13783. + // Go 1.7 changed marshaling a slice of typed byte to use the methods on the byte type, + // similar to marshaling a slice of typed int. + // These tests check that, assuming the byte type also has valid decoding methods, + // either the old base64 string encoding or the new per-element encoding can be + // successfully unmarshaled. The custom unmarshalers were accessible in earlier + // versions of Go, even though the custom marshaler was not. + { + in: `"AQID"`, + ptr: new([]byteWithMarshalJSON), + out: []byteWithMarshalJSON{1, 2, 3}, + }, + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]byteWithMarshalJSON), + out: []byteWithMarshalJSON{1, 2, 3}, + golden: true, + }, + { + in: `"AQID"`, + ptr: new([]byteWithMarshalText), + out: []byteWithMarshalText{1, 2, 3}, + }, + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]byteWithMarshalText), + out: []byteWithMarshalText{1, 2, 3}, + golden: true, + }, + { + in: `"AQID"`, + ptr: new([]byteWithPtrMarshalJSON), + out: []byteWithPtrMarshalJSON{1, 2, 3}, + }, + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]byteWithPtrMarshalJSON), + out: []byteWithPtrMarshalJSON{1, 2, 3}, + golden: true, + }, + { + in: `"AQID"`, + ptr: new([]byteWithPtrMarshalText), + out: []byteWithPtrMarshalText{1, 2, 3}, + }, + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]byteWithPtrMarshalText), + out: []byteWithPtrMarshalText{1, 2, 3}, + golden: true, + }, + + // ints work with the marshaler but not the base64 []byte case + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]intWithMarshalJSON), + out: []intWithMarshalJSON{1, 2, 3}, + golden: true, + }, + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]intWithMarshalText), + out: []intWithMarshalText{1, 2, 3}, + golden: true, + }, + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]intWithPtrMarshalJSON), + out: []intWithPtrMarshalJSON{1, 2, 3}, + golden: true, + }, + { + in: `["Z01","Z02","Z03"]`, + ptr: new([]intWithPtrMarshalText), + out: []intWithPtrMarshalText{1, 2, 3}, + golden: true, + }, + + {in: `0.000001`, ptr: new(float64), out: 0.000001, golden: true}, + {in: `1e-7`, ptr: new(float64), out: 1e-7, golden: true}, + {in: `100000000000000000000`, ptr: new(float64), out: 100000000000000000000.0, golden: true}, + {in: `1e+21`, ptr: new(float64), out: 1e21, golden: true}, + {in: `-0.000001`, ptr: new(float64), out: -0.000001, golden: true}, + {in: `-1e-7`, ptr: new(float64), out: -1e-7, golden: true}, + {in: `-100000000000000000000`, ptr: new(float64), out: -100000000000000000000.0, golden: true}, + {in: `-1e+21`, ptr: new(float64), out: -1e21, golden: true}, + {in: `999999999999999900000`, ptr: new(float64), out: 999999999999999900000.0, golden: true}, + {in: `9007199254740992`, ptr: new(float64), out: 9007199254740992.0, golden: true}, + {in: `9007199254740993`, ptr: new(float64), out: 9007199254740992.0, golden: false}, + + { + in: `{"V": {"F2": "hello"}}`, + ptr: new(VOuter), + err: &UnmarshalTypeError{ + Value: "string", + Struct: "V", + Field: "V.F2", + Type: reflect.TypeOf(int32(0)), + Offset: 20, + }, + }, + { + in: `{"V": {"F4": {}, "F2": "hello"}}`, + ptr: new(VOuter), + err: &UnmarshalTypeError{ + Value: "string", + Struct: "V", + Field: "V.F2", + Type: reflect.TypeOf(int32(0)), + Offset: 30, + }, + }, + + // issue 15146. + // invalid inputs in wrongStringTests below. + {in: `{"B":"true"}`, ptr: new(B), out: B{true}, golden: true}, + {in: `{"B":"false"}`, ptr: new(B), out: B{false}, golden: true}, + {in: `{"B": "maybe"}`, ptr: new(B), err: errors.New(`json: invalid use of ,string struct tag, trying to unmarshal "maybe" into bool`)}, + {in: `{"B": "tru"}`, ptr: new(B), err: errors.New(`json: invalid use of ,string struct tag, trying to unmarshal "tru" into bool`)}, + {in: `{"B": "False"}`, ptr: new(B), err: errors.New(`json: invalid use of ,string struct tag, trying to unmarshal "False" into bool`)}, + {in: `{"B": "null"}`, ptr: new(B), out: B{false}}, + {in: `{"B": "nul"}`, ptr: new(B), err: errors.New(`json: invalid use of ,string struct tag, trying to unmarshal "nul" into bool`)}, + {in: `{"B": [2, 3]}`, ptr: new(B), err: errors.New(`json: invalid use of ,string struct tag, trying to unmarshal unquoted value into bool`)}, + + // additional tests for disallowUnknownFields + { + in: `{ + "Level0": 1, + "Level1b": 2, + "Level1c": 3, + "x": 4, + "Level1a": 5, + "LEVEL1B": 6, + "e": { + "Level1a": 8, + "Level1b": 9, + "Level1c": 10, + "Level1d": 11, + "x": 12 + }, + "Loop1": 13, + "Loop2": 14, + "X": 15, + "Y": 16, + "Z": 17, + "Q": 18, + "extra": true + }`, + ptr: new(Top), + err: fmt.Errorf("json: unknown field \"extra\""), + disallowUnknownFields: true, + }, + { + in: `{ + "Level0": 1, + "Level1b": 2, + "Level1c": 3, + "x": 4, + "Level1a": 5, + "LEVEL1B": 6, + "e": { + "Level1a": 8, + "Level1b": 9, + "Level1c": 10, + "Level1d": 11, + "x": 12, + "extra": null + }, + "Loop1": 13, + "Loop2": 14, + "X": 15, + "Y": 16, + "Z": 17, + "Q": 18 + }`, + ptr: new(Top), + err: fmt.Errorf("json: unknown field \"extra\""), + disallowUnknownFields: true, + }, + // issue 26444 + // UnmarshalTypeError without field & struct values + { + in: `{"data":{"test1": "bob", "test2": 123}}`, + ptr: new(mapStringToStringData), + err: &UnmarshalTypeError{Value: "number", Type: reflect.TypeOf(""), Offset: 37, Struct: "mapStringToStringData", Field: "data"}, + }, + { + in: `{"data":{"test1": 123, "test2": "bob"}}`, + ptr: new(mapStringToStringData), + err: &UnmarshalTypeError{Value: "number", Type: reflect.TypeOf(""), Offset: 21, Struct: "mapStringToStringData", Field: "data"}, + }, + + // trying to decode JSON arrays or objects via TextUnmarshaler + { + in: `[1, 2, 3]`, + ptr: new(MustNotUnmarshalText), + err: &UnmarshalTypeError{Value: "array", Type: reflect.TypeOf(&MustNotUnmarshalText{}), Offset: 1}, + }, + { + in: `{"foo": "bar"}`, + ptr: new(MustNotUnmarshalText), + err: &UnmarshalTypeError{Value: "object", Type: reflect.TypeOf(&MustNotUnmarshalText{}), Offset: 1}, + }, + // #22369 + { + in: `{"PP": {"T": {"Y": "bad-type"}}}`, + ptr: new(P), + err: &UnmarshalTypeError{ + Value: "string", + Struct: "T", + Field: "PP.T.Y", + Type: reflect.TypeOf(int(0)), + Offset: 29, + }, + }, + { + in: `{"Ts": [{"Y": 1}, {"Y": 2}, {"Y": "bad-type"}]}`, + ptr: new(PP), + err: &UnmarshalTypeError{ + Value: "string", + Struct: "T", + Field: "Ts.Y", + Type: reflect.TypeOf(int(0)), + Offset: 29, + }, + }, +} + +func TestMarshal(t *testing.T) { + b, err := Marshal(allValue) + if err != nil { + t.Fatalf("Marshal allValue: %v", err) + } + if string(b) != allValueCompact { + t.Errorf("Marshal allValueCompact") + diff(t, b, []byte(allValueCompact)) + return + } + + b, err = Marshal(pallValue) + if err != nil { + t.Fatalf("Marshal pallValue: %v", err) + } + if string(b) != pallValueCompact { + t.Errorf("Marshal pallValueCompact") + diff(t, b, []byte(pallValueCompact)) + return + } +} + +var badUTF8 = []struct { + in, out string +}{ + {"hello\xffworld", `"hello\ufffdworld"`}, + {"", `""`}, + {"\xff", `"\ufffd"`}, + {"\xff\xff", `"\ufffd\ufffd"`}, + {"a\xffb", `"a\ufffdb"`}, + {"\xe6\x97\xa5\xe6\x9c\xac\xff\xaa\x9e", `"日本\ufffd\ufffd\ufffd"`}, +} + +func TestMarshalBadUTF8(t *testing.T) { + for _, tt := range badUTF8 { + b, err := Marshal(tt.in) + if string(b) != tt.out || err != nil { + t.Errorf("Marshal(%q) = %#q, %v, want %#q, nil", tt.in, b, err, tt.out) + } + } +} + +func TestMarshalNumberZeroVal(t *testing.T) { + var n Number + out, err := Marshal(n) + if err != nil { + t.Fatal(err) + } + outStr := string(out) + if outStr != "0" { + t.Fatalf("Invalid zero val for Number: %q", outStr) + } +} + +func TestMarshalEmbeds(t *testing.T) { + top := &Top{ + Level0: 1, + Embed0: Embed0{ + Level1b: 2, + Level1c: 3, + }, + Embed0a: &Embed0a{ + Level1a: 5, + Level1b: 6, + }, + Embed0b: &Embed0b{ + Level1a: 8, + Level1b: 9, + Level1c: 10, + Level1d: 11, + Level1e: 12, + }, + Loop: Loop{ + Loop1: 13, + Loop2: 14, + }, + Embed0p: Embed0p{ + Point: image.Point{X: 15, Y: 16}, + }, + Embed0q: Embed0q{ + Point: Point{Z: 17}, + }, + embed: embed{ + Q: 18, + }, + } + b, err := Marshal(top) + if err != nil { + t.Fatal(err) + } + want := "{\"Level0\":1,\"Level1b\":2,\"Level1c\":3,\"Level1a\":5,\"LEVEL1B\":6,\"e\":{\"Level1a\":8,\"Level1b\":9,\"Level1c\":10,\"Level1d\":11,\"x\":12},\"Loop1\":13,\"Loop2\":14,\"X\":15,\"Y\":16,\"Z\":17,\"Q\":18}" + if string(b) != want { + t.Errorf("Wrong marshal result.\n got: %q\nwant: %q", b, want) + } +} + +func equalError(a, b error) bool { + if a == nil { + return b == nil + } + if b == nil { + return a == nil + } + return a.Error() == b.Error() +} + +func TestUnmarshal(t *testing.T) { + for i, tt := range unmarshalTests { + var scan scanner + in := []byte(tt.in) + if err := checkValid(in, &scan); err != nil { + if !equalError(err, tt.err) { + t.Errorf("#%d: checkValid: %#v", i, err) + continue + } + } + if tt.ptr == nil { + continue + } + + // v = new(right-type) + v := reflect.New(reflect.TypeOf(tt.ptr).Elem()) + dec := NewDecoder(bytes.NewReader(in)) + if tt.useNumber { + dec.UseNumber() + } + if tt.disallowUnknownFields { + dec.DisallowUnknownFields() + } + err := dec.Decode(v.Interface()) + assertErrorPresence(t, tt.err, err, "testUnmarshal", i, tt.in) + if err != nil { + continue + } + if !reflect.DeepEqual(v.Elem().Interface(), tt.out) { + t.Errorf("#%d: mismatch\n%v\nhave: %#+v\nwant: %#+v", i, tt.in, v.Elem().Interface(), tt.out) + data, _ := Marshal(v.Elem().Interface()) + println(string(data)) + data, _ = Marshal(tt.out) + println(string(data)) + continue + } + + // Check round trip also decodes correctly. + if tt.err == nil { + enc, err := Marshal(v.Interface()) + if err != nil { + t.Errorf("#%d: error re-marshaling: %v", i, err) + continue + } + if tt.golden && !bytes.Equal(enc, in) { + t.Errorf("#%d: remarshal mismatch:\nhave: %s\nwant: %s", i, enc, in) + } + vv := reflect.New(reflect.TypeOf(tt.ptr).Elem()) + dec = NewDecoder(bytes.NewReader(enc)) + if tt.useNumber { + dec.UseNumber() + } + if err := dec.Decode(vv.Interface()); err != nil { + t.Errorf("#%d: error re-unmarshaling %#q: %v", i, enc, err) + continue + } + if !reflect.DeepEqual(v.Elem().Interface(), vv.Elem().Interface()) { + t.Errorf("#%d: mismatch\nhave: %#+v\nwant: %#+v", i, v.Elem().Interface(), vv.Elem().Interface()) + t.Errorf(" In: %q", strings.Map(noSpace, string(in))) + t.Errorf("Marshal: %q", strings.Map(noSpace, string(enc))) + continue + } + } + } +} + +func TestUnmarshalMarshal(t *testing.T) { + initBig() + var v interface{} + if err := Unmarshal(jsonBig, &v); err != nil { + t.Fatalf("Unmarshal: %v", err) + } + b, err := Marshal(v) + if err != nil { + t.Fatalf("Marshal: %v", err) + } + if !bytes.Equal(jsonBig, b) { + t.Errorf("Marshal jsonBig") + diff(t, b, jsonBig) + return + } +} + +var numberTests = []struct { + in string + i int64 + intErr string + f float64 + floatErr string +}{ + {in: "-1.23e1", intErr: "strconv.ParseInt: parsing \"-1.23e1\": invalid syntax", f: -1.23e1}, + {in: "-12", i: -12, f: -12.0}, + {in: "1e1000", intErr: "strconv.ParseInt: parsing \"1e1000\": invalid syntax", floatErr: "strconv.ParseFloat: parsing \"1e1000\": value out of range"}, +} + +// Independent of Decode, basic coverage of the accessors in Number +func TestNumberAccessors(t *testing.T) { + for _, tt := range numberTests { + n := Number(tt.in) + if s := n.String(); s != tt.in { + t.Errorf("Number(%q).String() is %q", tt.in, s) + } + if i, err := n.Int64(); err == nil && tt.intErr == "" && i != tt.i { + t.Errorf("Number(%q).Int64() is %d", tt.in, i) + } else if (err == nil && tt.intErr != "") || (err != nil && err.Error() != tt.intErr) { + t.Errorf("Number(%q).Int64() wanted error %q but got: %v", tt.in, tt.intErr, err) + } + if f, err := n.Float64(); err == nil && tt.floatErr == "" && f != tt.f { + t.Errorf("Number(%q).Float64() is %g", tt.in, f) + } else if (err == nil && tt.floatErr != "") || (err != nil && err.Error() != tt.floatErr) { + t.Errorf("Number(%q).Float64() wanted error %q but got: %v", tt.in, tt.floatErr, err) + } + } +} + +func TestLargeByteSlice(t *testing.T) { + s0 := make([]byte, 2000) + for i := range s0 { + s0[i] = byte(i) + } + b, err := Marshal(s0) + if err != nil { + t.Fatalf("Marshal: %v", err) + } + var s1 []byte + if err := Unmarshal(b, &s1); err != nil { + t.Fatalf("Unmarshal: %v", err) + } + if !bytes.Equal(s0, s1) { + t.Errorf("Marshal large byte slice") + diff(t, s0, s1) + } +} + +type Xint struct { + X int +} + +func TestUnmarshalInterface(t *testing.T) { + var xint Xint + var i interface{} = &xint + if err := Unmarshal([]byte(`{"X":1}`), &i); err != nil { + t.Fatalf("Unmarshal: %v", err) + } + if xint.X != 1 { + t.Fatalf("Did not write to xint") + } +} + +func TestUnmarshalPtrPtr(t *testing.T) { + var xint Xint + pxint := &xint + if err := Unmarshal([]byte(`{"X":1}`), &pxint); err != nil { + t.Fatalf("Unmarshal: %v", err) + } + if xint.X != 1 { + t.Fatalf("Did not write to xint") + } +} + +func TestEscape(t *testing.T) { + const input = `"foobar"` + " [\u2028 \u2029]" + const expected = `"\"foobar\"\u003chtml\u003e [\u2028 \u2029]"` + b, err := Marshal(input) + if err != nil { + t.Fatalf("Marshal error: %v", err) + } + if s := string(b); s != expected { + t.Errorf("Encoding of [%s]:\n got [%s]\nwant [%s]", input, s, expected) + } +} + +// WrongString is a struct that's misusing the ,string modifier. +type WrongString struct { + Message string `json:"result,string"` +} + +type wrongStringTest struct { + in, err string +} + +var wrongStringTests = []wrongStringTest{ + {`{"result":"x"}`, `json: invalid use of ,string struct tag, trying to unmarshal "x" into string`}, + {`{"result":"foo"}`, `json: invalid use of ,string struct tag, trying to unmarshal "foo" into string`}, + {`{"result":"123"}`, `json: invalid use of ,string struct tag, trying to unmarshal "123" into string`}, + {`{"result":123}`, `json: invalid use of ,string struct tag, trying to unmarshal unquoted value into string`}, + {`{"result":"\""}`, `json: invalid use of ,string struct tag, trying to unmarshal "\"" into string`}, + {`{"result":"\"foo"}`, `json: invalid use of ,string struct tag, trying to unmarshal "\"foo" into string`}, +} + +// If people misuse the ,string modifier, the error message should be +// helpful, telling the user that they're doing it wrong. +func TestErrorMessageFromMisusedString(t *testing.T) { + for n, tt := range wrongStringTests { + r := strings.NewReader(tt.in) + var s WrongString + err := NewDecoder(r).Decode(&s) + assertErrorPresence(t, errors.New(tt.err), err, n) + } +} + +func noSpace(c rune) rune { + if isSpace(byte(c)) { //only used for ascii + return -1 + } + return c +} + +type All struct { + Bool bool + Int int + Int8 int8 + Int16 int16 + Int32 int32 + Int64 int64 + Uint uint + Uint8 uint8 + Uint16 uint16 + Uint32 uint32 + Uint64 uint64 + Uintptr uintptr + Float32 float32 + Float64 float64 + + Foo string `json:"bar"` + Foo2 string `json:"bar2,dummyopt"` + + IntStr int64 `json:",string"` + UintptrStr uintptr `json:",string"` + + PBool *bool + PInt *int + PInt8 *int8 + PInt16 *int16 + PInt32 *int32 + PInt64 *int64 + PUint *uint + PUint8 *uint8 + PUint16 *uint16 + PUint32 *uint32 + PUint64 *uint64 + PUintptr *uintptr + PFloat32 *float32 + PFloat64 *float64 + + String string + PString *string + + Map map[string]Small + MapP map[string]*Small + PMap *map[string]Small + PMapP *map[string]*Small + + EmptyMap map[string]Small + NilMap map[string]Small + + Slice []Small + SliceP []*Small + PSlice *[]Small + PSliceP *[]*Small + + EmptySlice []Small + NilSlice []Small + + StringSlice []string + ByteSlice []byte + + Small Small + PSmall *Small + PPSmall **Small + + Interface interface{} + PInterface *interface{} + + unexported int +} + +type Small struct { + Tag string +} + +var allValue = All{ + Bool: true, + Int: 2, + Int8: 3, + Int16: 4, + Int32: 5, + Int64: 6, + Uint: 7, + Uint8: 8, + Uint16: 9, + Uint32: 10, + Uint64: 11, + Uintptr: 12, + Float32: 14.1, + Float64: 15.1, + Foo: "foo", + Foo2: "foo2", + IntStr: 42, + UintptrStr: 44, + String: "16", + Map: map[string]Small{ + "17": {Tag: "tag17"}, + "18": {Tag: "tag18"}, + }, + MapP: map[string]*Small{ + "19": {Tag: "tag19"}, + "20": nil, + }, + EmptyMap: map[string]Small{}, + Slice: []Small{{Tag: "tag20"}, {Tag: "tag21"}}, + SliceP: []*Small{{Tag: "tag22"}, nil, {Tag: "tag23"}}, + EmptySlice: []Small{}, + StringSlice: []string{"str24", "str25", "str26"}, + ByteSlice: []byte{27, 28, 29}, + Small: Small{Tag: "tag30"}, + PSmall: &Small{Tag: "tag31"}, + Interface: 5.2, +} + +var pallValue = All{ + PBool: &allValue.Bool, + PInt: &allValue.Int, + PInt8: &allValue.Int8, + PInt16: &allValue.Int16, + PInt32: &allValue.Int32, + PInt64: &allValue.Int64, + PUint: &allValue.Uint, + PUint8: &allValue.Uint8, + PUint16: &allValue.Uint16, + PUint32: &allValue.Uint32, + PUint64: &allValue.Uint64, + PUintptr: &allValue.Uintptr, + PFloat32: &allValue.Float32, + PFloat64: &allValue.Float64, + PString: &allValue.String, + PMap: &allValue.Map, + PMapP: &allValue.MapP, + PSlice: &allValue.Slice, + PSliceP: &allValue.SliceP, + PPSmall: &allValue.PSmall, + PInterface: &allValue.Interface, +} + +var allValueIndent = `{ + "Bool": true, + "Int": 2, + "Int8": 3, + "Int16": 4, + "Int32": 5, + "Int64": 6, + "Uint": 7, + "Uint8": 8, + "Uint16": 9, + "Uint32": 10, + "Uint64": 11, + "Uintptr": 12, + "Float32": 14.1, + "Float64": 15.1, + "bar": "foo", + "bar2": "foo2", + "IntStr": "42", + "UintptrStr": "44", + "PBool": null, + "PInt": null, + "PInt8": null, + "PInt16": null, + "PInt32": null, + "PInt64": null, + "PUint": null, + "PUint8": null, + "PUint16": null, + "PUint32": null, + "PUint64": null, + "PUintptr": null, + "PFloat32": null, + "PFloat64": null, + "String": "16", + "PString": null, + "Map": { + "17": { + "Tag": "tag17" + }, + "18": { + "Tag": "tag18" + } + }, + "MapP": { + "19": { + "Tag": "tag19" + }, + "20": null + }, + "PMap": null, + "PMapP": null, + "EmptyMap": {}, + "NilMap": null, + "Slice": [ + { + "Tag": "tag20" + }, + { + "Tag": "tag21" + } + ], + "SliceP": [ + { + "Tag": "tag22" + }, + null, + { + "Tag": "tag23" + } + ], + "PSlice": null, + "PSliceP": null, + "EmptySlice": [], + "NilSlice": null, + "StringSlice": [ + "str24", + "str25", + "str26" + ], + "ByteSlice": "Gxwd", + "Small": { + "Tag": "tag30" + }, + "PSmall": { + "Tag": "tag31" + }, + "PPSmall": null, + "Interface": 5.2, + "PInterface": null +}` + +var allValueCompact = strings.Map(noSpace, allValueIndent) + +var pallValueIndent = `{ + "Bool": false, + "Int": 0, + "Int8": 0, + "Int16": 0, + "Int32": 0, + "Int64": 0, + "Uint": 0, + "Uint8": 0, + "Uint16": 0, + "Uint32": 0, + "Uint64": 0, + "Uintptr": 0, + "Float32": 0, + "Float64": 0, + "bar": "", + "bar2": "", + "IntStr": "0", + "UintptrStr": "0", + "PBool": true, + "PInt": 2, + "PInt8": 3, + "PInt16": 4, + "PInt32": 5, + "PInt64": 6, + "PUint": 7, + "PUint8": 8, + "PUint16": 9, + "PUint32": 10, + "PUint64": 11, + "PUintptr": 12, + "PFloat32": 14.1, + "PFloat64": 15.1, + "String": "", + "PString": "16", + "Map": null, + "MapP": null, + "PMap": { + "17": { + "Tag": "tag17" + }, + "18": { + "Tag": "tag18" + } + }, + "PMapP": { + "19": { + "Tag": "tag19" + }, + "20": null + }, + "EmptyMap": null, + "NilMap": null, + "Slice": null, + "SliceP": null, + "PSlice": [ + { + "Tag": "tag20" + }, + { + "Tag": "tag21" + } + ], + "PSliceP": [ + { + "Tag": "tag22" + }, + null, + { + "Tag": "tag23" + } + ], + "EmptySlice": null, + "NilSlice": null, + "StringSlice": null, + "ByteSlice": null, + "Small": { + "Tag": "" + }, + "PSmall": null, + "PPSmall": { + "Tag": "tag31" + }, + "Interface": null, + "PInterface": 5.2 +}` + +var pallValueCompact = strings.Map(noSpace, pallValueIndent) + +func TestRefUnmarshal(t *testing.T) { + type S struct { + // Ref is defined in encode_test.go. + R0 Ref + R1 *Ref + R2 RefText + R3 *RefText + } + want := S{ + R0: 12, + R1: new(Ref), + R2: 13, + R3: new(RefText), + } + *want.R1 = 12 + *want.R3 = 13 + + var got S + if err := Unmarshal([]byte(`{"R0":"ref","R1":"ref","R2":"ref","R3":"ref"}`), &got); err != nil { + t.Fatalf("Unmarshal: %v", err) + } + if !reflect.DeepEqual(got, want) { + t.Errorf("got %+v, want %+v", got, want) + } +} + +// Test that the empty string doesn't panic decoding when ,string is specified +// Issue 3450 +func TestEmptyString(t *testing.T) { + type T2 struct { + Number1 int `json:",string"` + Number2 int `json:",string"` + } + data := `{"Number1":"1", "Number2":""}` + dec := NewDecoder(strings.NewReader(data)) + var t2 T2 + err := dec.Decode(&t2) + if err == nil { + t.Fatal("Decode: did not return error") + } + if t2.Number1 != 1 { + t.Fatal("Decode: did not set Number1") + } +} + +// Test that a null for ,string is not replaced with the previous quoted string (issue 7046). +// It should also not be an error (issue 2540, issue 8587). +func TestNullString(t *testing.T) { + type T struct { + A int `json:",string"` + B int `json:",string"` + C *int `json:",string"` + } + data := []byte(`{"A": "1", "B": null, "C": null}`) + var s T + s.B = 1 + s.C = new(int) + *s.C = 2 + err := Unmarshal(data, &s) + if err != nil { + t.Fatalf("Unmarshal: %v", err) + } + if s.B != 1 || s.C != nil { + t.Fatalf("after Unmarshal, s.B=%d, s.C=%p, want 1, nil", s.B, s.C) + } +} + +func intp(x int) *int { + p := new(int) + *p = x + return p +} + +func intpp(x *int) **int { + pp := new(*int) + *pp = x + return pp +} + +var interfaceSetTests = []struct { + pre interface{} + json string + post interface{} +}{ + {"foo", `"bar"`, "bar"}, + {"foo", `2`, 2.0}, + {"foo", `true`, true}, + {"foo", `null`, nil}, + + {nil, `null`, nil}, + {new(int), `null`, nil}, + {(*int)(nil), `null`, nil}, + {new(*int), `null`, new(*int)}, + {(**int)(nil), `null`, nil}, + {intp(1), `null`, nil}, + {intpp(nil), `null`, intpp(nil)}, + {intpp(intp(1)), `null`, intpp(nil)}, +} + +func TestInterfaceSet(t *testing.T) { + for _, tt := range interfaceSetTests { + b := struct{ X interface{} }{tt.pre} + blob := `{"X":` + tt.json + `}` + if err := Unmarshal([]byte(blob), &b); err != nil { + t.Errorf("Unmarshal %#q: %v", blob, err) + continue + } + if !reflect.DeepEqual(b.X, tt.post) { + t.Errorf("Unmarshal %#q into %#v: X=%#v, want %#v", blob, tt.pre, b.X, tt.post) + } + } +} + +type NullTest struct { + Bool bool + Int int + Int8 int8 + Int16 int16 + Int32 int32 + Int64 int64 + Uint uint + Uint8 uint8 + Uint16 uint16 + Uint32 uint32 + Uint64 uint64 + Float32 float32 + Float64 float64 + String string + PBool *bool + Map map[string]string + Slice []string + Interface interface{} + + PRaw *RawMessage + PTime *time.Time + PBigInt *big.Int + PText *MustNotUnmarshalText + PBuffer *bytes.Buffer // has methods, just not relevant ones + PStruct *struct{} + + Raw RawMessage + Time time.Time + BigInt big.Int + Text MustNotUnmarshalText + Buffer bytes.Buffer + Struct struct{} +} + +type NullTestStrings struct { + Bool bool `json:",string"` + Int int `json:",string"` + Int8 int8 `json:",string"` + Int16 int16 `json:",string"` + Int32 int32 `json:",string"` + Int64 int64 `json:",string"` + Uint uint `json:",string"` + Uint8 uint8 `json:",string"` + Uint16 uint16 `json:",string"` + Uint32 uint32 `json:",string"` + Uint64 uint64 `json:",string"` + Float32 float32 `json:",string"` + Float64 float64 `json:",string"` + String string `json:",string"` + PBool *bool `json:",string"` + Map map[string]string `json:",string"` + Slice []string `json:",string"` + Interface interface{} `json:",string"` + + PRaw *RawMessage `json:",string"` + PTime *time.Time `json:",string"` + PBigInt *big.Int `json:",string"` + PText *MustNotUnmarshalText `json:",string"` + PBuffer *bytes.Buffer `json:",string"` + PStruct *struct{} `json:",string"` + + Raw RawMessage `json:",string"` + Time time.Time `json:",string"` + BigInt big.Int `json:",string"` + Text MustNotUnmarshalText `json:",string"` + Buffer bytes.Buffer `json:",string"` + Struct struct{} `json:",string"` +} + +// JSON null values should be ignored for primitives and string values instead of resulting in an error. +// Issue 2540 +func TestUnmarshalNulls(t *testing.T) { + // Unmarshal docs: + // The JSON null value unmarshals into an interface, map, pointer, or slice + // by setting that Go value to nil. Because null is often used in JSON to mean + // ``not present,'' unmarshaling a JSON null into any other Go type has no effect + // on the value and produces no error. + + jsonData := []byte(`{ + "Bool" : null, + "Int" : null, + "Int8" : null, + "Int16" : null, + "Int32" : null, + "Int64" : null, + "Uint" : null, + "Uint8" : null, + "Uint16" : null, + "Uint32" : null, + "Uint64" : null, + "Float32" : null, + "Float64" : null, + "String" : null, + "PBool": null, + "Map": null, + "Slice": null, + "Interface": null, + "PRaw": null, + "PTime": null, + "PBigInt": null, + "PText": null, + "PBuffer": null, + "PStruct": null, + "Raw": null, + "Time": null, + "BigInt": null, + "Text": null, + "Buffer": null, + "Struct": null + }`) + nulls := NullTest{ + Bool: true, + Int: 2, + Int8: 3, + Int16: 4, + Int32: 5, + Int64: 6, + Uint: 7, + Uint8: 8, + Uint16: 9, + Uint32: 10, + Uint64: 11, + Float32: 12.1, + Float64: 13.1, + String: "14", + PBool: new(bool), + Map: map[string]string{}, + Slice: []string{}, + Interface: new(MustNotUnmarshalJSON), + PRaw: new(RawMessage), + PTime: new(time.Time), + PBigInt: new(big.Int), + PText: new(MustNotUnmarshalText), + PStruct: new(struct{}), + PBuffer: new(bytes.Buffer), + Raw: RawMessage("123"), + Time: time.Unix(123456789, 0), + BigInt: *big.NewInt(123), + } + + before := nulls.Time.String() + + err := Unmarshal(jsonData, &nulls) + if err != nil { + t.Errorf("Unmarshal of null values failed: %v", err) + } + if !nulls.Bool || nulls.Int != 2 || nulls.Int8 != 3 || nulls.Int16 != 4 || nulls.Int32 != 5 || nulls.Int64 != 6 || + nulls.Uint != 7 || nulls.Uint8 != 8 || nulls.Uint16 != 9 || nulls.Uint32 != 10 || nulls.Uint64 != 11 || + nulls.Float32 != 12.1 || nulls.Float64 != 13.1 || nulls.String != "14" { + t.Errorf("Unmarshal of null values affected primitives") + } + + if nulls.PBool != nil { + t.Errorf("Unmarshal of null did not clear nulls.PBool") + } + if nulls.Map != nil { + t.Errorf("Unmarshal of null did not clear nulls.Map") + } + if nulls.Slice != nil { + t.Errorf("Unmarshal of null did not clear nulls.Slice") + } + if nulls.Interface != nil { + t.Errorf("Unmarshal of null did not clear nulls.Interface") + } + if nulls.PRaw != nil { + t.Errorf("Unmarshal of null did not clear nulls.PRaw") + } + if nulls.PTime != nil { + t.Errorf("Unmarshal of null did not clear nulls.PTime") + } + if nulls.PBigInt != nil { + t.Errorf("Unmarshal of null did not clear nulls.PBigInt") + } + if nulls.PText != nil { + t.Errorf("Unmarshal of null did not clear nulls.PText") + } + if nulls.PBuffer != nil { + t.Errorf("Unmarshal of null did not clear nulls.PBuffer") + } + if nulls.PStruct != nil { + t.Errorf("Unmarshal of null did not clear nulls.PStruct") + } + + if string(nulls.Raw) != "null" { + t.Errorf("Unmarshal of RawMessage null did not record null: %v", string(nulls.Raw)) + } + if nulls.Time.String() != before { + t.Errorf("Unmarshal of time.Time null set time to %v", nulls.Time.String()) + } + if nulls.BigInt.String() != "123" { + t.Errorf("Unmarshal of big.Int null set int to %v", nulls.BigInt.String()) + } +} + +type MustNotUnmarshalJSON struct{} + +func (x MustNotUnmarshalJSON) UnmarshalJSON(data []byte) error { + return errors.New("MustNotUnmarshalJSON was used") +} + +type MustNotUnmarshalText struct{} + +func (x MustNotUnmarshalText) UnmarshalText(text []byte) error { + return errors.New("MustNotUnmarshalText was used") +} + +func TestStringKind(t *testing.T) { + type stringKind string + + var m1, m2 map[stringKind]int + m1 = map[stringKind]int{ + "foo": 42, + } + + data, err := Marshal(m1) + if err != nil { + t.Errorf("Unexpected error marshaling: %v", err) + } + + err = Unmarshal(data, &m2) + if err != nil { + t.Errorf("Unexpected error unmarshaling: %v", err) + } + + if !reflect.DeepEqual(m1, m2) { + t.Error("Items should be equal after encoding and then decoding") + } +} + +// Custom types with []byte as underlying type could not be marshaled +// and then unmarshaled. +// Issue 8962. +func TestByteKind(t *testing.T) { + type byteKind []byte + + a := byteKind("hello") + + data, err := Marshal(a) + if err != nil { + t.Error(err) + } + var b byteKind + err = Unmarshal(data, &b) + if err != nil { + t.Fatal(err) + } + if !reflect.DeepEqual(a, b) { + t.Errorf("expected %v == %v", a, b) + } +} + +// The fix for issue 8962 introduced a regression. +// Issue 12921. +func TestSliceOfCustomByte(t *testing.T) { + type Uint8 uint8 + + a := []Uint8("hello") + + data, err := Marshal(a) + if err != nil { + t.Fatal(err) + } + var b []Uint8 + err = Unmarshal(data, &b) + if err != nil { + t.Fatal(err) + } + if !reflect.DeepEqual(a, b) { + t.Fatalf("expected %v == %v", a, b) + } +} + +var decodeTypeErrorTests = []struct { + dest interface{} + src string +}{ + {new(string), `{"user": "name"}`}, // issue 4628. + {new(error), `{}`}, // issue 4222 + {new(error), `[]`}, + {new(error), `""`}, + {new(error), `123`}, + {new(error), `true`}, +} + +func TestUnmarshalTypeError(t *testing.T) { + for _, item := range decodeTypeErrorTests { + err := Unmarshal([]byte(item.src), item.dest) + if _, ok := err.(*UnmarshalTypeError); !ok { + t.Errorf("expected type error for Unmarshal(%q, type %T): got %T", + item.src, item.dest, err) + } + } +} + +var unmarshalSyntaxTests = []string{ + "tru", + "fals", + "nul", + "123e", + `"hello`, + `[1,2,3`, + `{"key":1`, + `{"key":1,`, +} + +func TestUnmarshalSyntax(t *testing.T) { + var x interface{} + for _, src := range unmarshalSyntaxTests { + err := Unmarshal([]byte(src), &x) + if _, ok := err.(*SyntaxError); !ok { + t.Errorf("expected syntax error for Unmarshal(%q): got %T", src, err) + } + } +} + +// Test handling of unexported fields that should be ignored. +// Issue 4660 +type unexportedFields struct { + Name string + m map[string]interface{} `json:"-"` + m2 map[string]interface{} `json:"abcd"` + + s []int `json:"-"` +} + +func TestUnmarshalUnexported(t *testing.T) { + input := `{"Name": "Bob", "m": {"x": 123}, "m2": {"y": 456}, "abcd": {"z": 789}, "s": [2, 3]}` + want := &unexportedFields{Name: "Bob"} + + out := &unexportedFields{} + err := Unmarshal([]byte(input), out) + if err != nil { + t.Errorf("got error %v, expected nil", err) + } + if !reflect.DeepEqual(out, want) { + t.Errorf("got %q, want %q", out, want) + } +} + +// Time3339 is a time.Time which encodes to and from JSON +// as an RFC 3339 time in UTC. +type Time3339 time.Time + +func (t *Time3339) UnmarshalJSON(b []byte) error { + if len(b) < 2 || b[0] != '"' || b[len(b)-1] != '"' { + return fmt.Errorf("types: failed to unmarshal non-string value %q as an RFC 3339 time", b) + } + tm, err := time.Parse(time.RFC3339, string(b[1:len(b)-1])) + if err != nil { + return err + } + *t = Time3339(tm) + return nil +} + +func TestUnmarshalJSONLiteralError(t *testing.T) { + var t3 Time3339 + err := Unmarshal([]byte(`"0000-00-00T00:00:00Z"`), &t3) + if err == nil { + t.Fatalf("expected error; got time %v", time.Time(t3)) + } + if !strings.Contains(err.Error(), "range") { + t.Errorf("got err = %v; want out of range error", err) + } +} + +// Test that extra object elements in an array do not result in a +// "data changing underfoot" error. +// Issue 3717 +func TestSkipArrayObjects(t *testing.T) { + json := `[{}]` + var dest [0]interface{} + + err := Unmarshal([]byte(json), &dest) + if err != nil { + t.Errorf("got error %q, want nil", err) + } +} + +// Test semantics of AppendPre-filled struct fields and AppendPre-filled map fields. +// Issue 4900. +func TestPrefilled(t *testing.T) { + ptrToMap := func(m map[string]interface{}) *map[string]interface{} { return &m } + + // Values here change, cannot reuse table across runs. + var prefillTests = []struct { + in string + ptr interface{} + out interface{} + }{ + { + in: `{"X": 1, "Y": 2}`, + ptr: &XYZ{X: float32(3), Y: int16(4), Z: 1.5}, + out: &XYZ{X: float64(1), Y: float64(2), Z: 1.5}, + }, + { + in: `{"X": 1, "Y": 2}`, + ptr: ptrToMap(map[string]interface{}{"X": float32(3), "Y": int16(4), "Z": 1.5}), + out: ptrToMap(map[string]interface{}{"X": float64(1), "Y": float64(2), "Z": 1.5}), + }, + } + + for _, tt := range prefillTests { + ptrstr := fmt.Sprintf("%v", tt.ptr) + err := Unmarshal([]byte(tt.in), tt.ptr) // tt.ptr edited here + if err != nil { + t.Errorf("Unmarshal: %v", err) + } + if !reflect.DeepEqual(tt.ptr, tt.out) { + t.Errorf("Unmarshal(%#q, %s): have %v, want %v", tt.in, ptrstr, tt.ptr, tt.out) + } + } +} + +var invalidUnmarshalTests = []struct { + v interface{} + want string +}{ + {nil, "json: Unmarshal(nil)"}, + {struct{}{}, "json: Unmarshal(non-pointer struct {})"}, + {(*int)(nil), "json: Unmarshal(nil *int)"}, +} + +func TestInvalidUnmarshal(t *testing.T) { + buf := []byte(`{"a":"1"}`) + for _, tt := range invalidUnmarshalTests { + err := Unmarshal(buf, tt.v) + if err == nil { + t.Errorf("Unmarshal expecting error, got nil") + continue + } + if got := err.Error(); got != tt.want { + t.Errorf("Unmarshal = %q; want %q", got, tt.want) + } + } +} + +var invalidUnmarshalTextTests = []struct { + v interface{} + want string +}{ + {nil, "json: Unmarshal(nil)"}, + {struct{}{}, "json: Unmarshal(non-pointer struct {})"}, + {(*int)(nil), "json: Unmarshal(nil *int)"}, + {new(net.IP), "json: cannot unmarshal number into Go value of type *net.IP"}, +} + +func TestInvalidUnmarshalText(t *testing.T) { + buf := []byte(`123`) + for _, tt := range invalidUnmarshalTextTests { + err := Unmarshal(buf, tt.v) + if err == nil { + t.Errorf("Unmarshal expecting error, got nil") + continue + } + if got := err.Error(); got != tt.want { + t.Errorf("Unmarshal = %q; want %q", got, tt.want) + } + } +} + +// Test that string option is ignored for invalid types. +// Issue 9812. +func TestInvalidStringOption(t *testing.T) { + num := 0 + item := struct { + T time.Time `json:",string"` + M map[string]string `json:",string"` + S []string `json:",string"` + A [1]string `json:",string"` + I interface{} `json:",string"` + P *int `json:",string"` + }{M: make(map[string]string), S: make([]string, 0), I: num, P: &num} + + data, err := Marshal(item) + if err != nil { + t.Fatalf("Marshal: %v", err) + } + + err = Unmarshal(data, &item) + if err != nil { + t.Fatalf("Unmarshal: %v", err) + } +} + +// Test unmarshal behavior with regards to embedded unexported structs. +// +// (Issue 21357) If the embedded struct is a pointer and is unallocated, +// this returns an error because unmarshal cannot set the field. +// +// (Issue 24152) If the embedded struct is given an explicit name, +// ensure that the normal unmarshal logic does not panic in reflect. +// +// (Issue 28145) If the embedded struct is given an explicit name and has +// exported methods, don't cause a panic trying to get its value. +func TestUnmarshalEmbeddedUnexported(t *testing.T) { + type ( + embed1 struct{ Q int } + embed2 struct{ Q int } + embed3 struct { + Q int64 `json:",string"` + } + S1 struct { + *embed1 + R int + } + S2 struct { + *embed1 + Q int + } + S3 struct { + embed1 + R int + } + S4 struct { + *embed1 + embed2 + } + S5 struct { + *embed3 + R int + } + S6 struct { + embed1 `json:"embed1"` + } + S7 struct { + embed1 `json:"embed1"` + embed2 + } + S8 struct { + embed1 `json:"embed1"` + embed2 `json:"embed2"` + Q int + } + S9 struct { + unexportedWithMethods `json:"embed"` + } + ) + + tests := []struct { + in string + ptr interface{} + out interface{} + err error + }{{ + // Error since we cannot set S1.embed1, but still able to set S1.R. + in: `{"R":2,"Q":1}`, + ptr: new(S1), + out: &S1{R: 2}, + err: fmt.Errorf("json: cannot set embedded pointer to unexported struct: json.embed1"), + }, { + // The top level Q field takes precedence. + in: `{"Q":1}`, + ptr: new(S2), + out: &S2{Q: 1}, + }, { + // No issue with non-pointer variant. + in: `{"R":2,"Q":1}`, + ptr: new(S3), + out: &S3{embed1: embed1{Q: 1}, R: 2}, + }, { + // No error since both embedded structs have field R, which annihilate each other. + // Thus, no attempt is made at setting S4.embed1. + in: `{"R":2}`, + ptr: new(S4), + out: new(S4), + }, { + // Error since we cannot set S5.embed1, but still able to set S5.R. + in: `{"R":2,"Q":1}`, + ptr: new(S5), + out: &S5{R: 2}, + err: fmt.Errorf("json: cannot set embedded pointer to unexported struct: json.embed3"), + }, { + // Issue 24152, ensure decodeState.indirect does not panic. + in: `{"embed1": {"Q": 1}}`, + ptr: new(S6), + out: &S6{embed1{1}}, + }, { + // Issue 24153, check that we can still set forwarded fields even in + // the presence of a name conflict. + // + // This relies on obscure behavior of reflect where it is possible + // to set a forwarded exported field on an unexported embedded struct + // even though there is a name conflict, even when it would have been + // impossible to do so according to Go visibility rules. + // Go forbids this because it is ambiguous whether S7.Q refers to + // S7.embed1.Q or S7.embed2.Q. Since embed1 and embed2 are unexported, + // it should be impossible for an external package to set either Q. + // + // It is probably okay for a future reflect change to break this. + in: `{"embed1": {"Q": 1}, "Q": 2}`, + ptr: new(S7), + out: &S7{embed1{1}, embed2{2}}, + }, { + // Issue 24153, similar to the S7 case. + in: `{"embed1": {"Q": 1}, "embed2": {"Q": 2}, "Q": 3}`, + ptr: new(S8), + out: &S8{embed1{1}, embed2{2}, 3}, + }, { + // Issue 228145, similar to the cases above. + in: `{"embed": {}}`, + ptr: new(S9), + out: &S9{}, + }} + + for i, tt := range tests { + err := Unmarshal([]byte(tt.in), tt.ptr) + if !equalError(err, tt.err) { + t.Errorf("#%d: %v, want %v", i, err, tt.err) + } + if !reflect.DeepEqual(tt.ptr, tt.out) { + t.Errorf("#%d: mismatch\ngot: %#+v\nwant: %#+v", i, tt.ptr, tt.out) + } + } +} + +type unmarshalPanic struct{} + +func (unmarshalPanic) UnmarshalJSON([]byte) error { panic(0xdead) } + +func TestUnmarshalPanic(t *testing.T) { + defer func() { + if got := recover(); !reflect.DeepEqual(got, 0xdead) { + t.Errorf("panic() = (%T)(%v), want 0xdead", got, got) + } + }() + Unmarshal([]byte("{}"), &unmarshalPanic{}) + t.Fatalf("Unmarshal should have panicked") +} + +// The decoder used to hang if decoding into an interface pointing to its own address. +// See golang.org/issues/31740. +func TestUnmarshalRecursivePointer(t *testing.T) { + var v interface{} + v = &v + data := []byte(`{"a": "b"}`) + + if err := Unmarshal(data, v); err != nil { + t.Fatal(err) + } +} diff --git a/cli/output/jsonw/internal/jcolorenc/golang_encode_test.go b/cli/output/jsonw/internal/jcolorenc/golang_encode_test.go new file mode 100644 index 00000000..b31b6a47 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/golang_encode_test.go @@ -0,0 +1,1033 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package json + +import ( + "bytes" + "fmt" + "log" + "math" + "reflect" + "regexp" + "strconv" + "testing" + "unicode" +) + +type Optionals struct { + Sr string `json:"sr"` + So string `json:"so,omitempty"` + Sw string `json:"-"` + + Ir int `json:"omitempty"` // actually named omitempty, not an option + Io int `json:"io,omitempty"` + + Slr []string `json:"slr,random"` + Slo []string `json:"slo,omitempty"` + + Mr map[string]interface{} `json:"mr"` + Mo map[string]interface{} `json:",omitempty"` + + Fr float64 `json:"fr"` + Fo float64 `json:"fo,omitempty"` + + Br bool `json:"br"` + Bo bool `json:"bo,omitempty"` + + Ur uint `json:"ur"` + Uo uint `json:"uo,omitempty"` + + Str struct{} `json:"str"` + Sto struct{} `json:"sto,omitempty"` +} + +var optionalsExpected = `{ + "sr": "", + "omitempty": 0, + "slr": null, + "mr": {}, + "fr": 0, + "br": false, + "ur": 0, + "str": {}, + "sto": {} +}` + +func TestOmitEmpty(t *testing.T) { + var o Optionals + o.Sw = "something" + o.Mr = map[string]interface{}{} + o.Mo = map[string]interface{}{} + + got, err := MarshalIndent(&o, "", " ") + if err != nil { + t.Fatal(err) + } + if got := string(got); got != optionalsExpected { + t.Errorf(" got: %s\nwant: %s\n", got, optionalsExpected) + } +} + +type StringTag struct { + BoolStr bool `json:",string"` + IntStr int64 `json:",string"` + UintptrStr uintptr `json:",string"` + StrStr string `json:",string"` +} + +var stringTagExpected = `{ + "BoolStr": "true", + "IntStr": "42", + "UintptrStr": "44", + "StrStr": "\"xzbit\"" +}` + +func TestStringTag(t *testing.T) { + var s StringTag + s.BoolStr = true + s.IntStr = 42 + s.UintptrStr = 44 + s.StrStr = "xzbit" + got, err := MarshalIndent(&s, "", " ") + if err != nil { + t.Fatal(err) + } + if got := string(got); got != stringTagExpected { + t.Fatalf(" got: %s\nwant: %s\n", got, stringTagExpected) + } + + // Verify that it round-trips. + var s2 StringTag + err = NewDecoder(bytes.NewReader(got)).Decode(&s2) + if err != nil { + t.Fatalf("Decode: %v", err) + } + if !reflect.DeepEqual(s, s2) { + t.Fatalf("decode didn't match.\nsource: %#v\nEncoded as:\n%s\ndecode: %#v", s, string(got), s2) + } +} + +// byte slices are special even if they're renamed types. +type renamedByte byte +type renamedByteSlice []byte +type renamedRenamedByteSlice []renamedByte + +func TestEncodeRenamedByteSlice(t *testing.T) { + s := renamedByteSlice("abc") + result, err := Marshal(s) + if err != nil { + t.Fatal(err) + } + expect := `"YWJj"` + if string(result) != expect { + t.Errorf(" got %s want %s", result, expect) + } + r := renamedRenamedByteSlice("abc") + result, err = Marshal(r) + if err != nil { + t.Fatal(err) + } + if string(result) != expect { + t.Errorf(" got %s want %s", result, expect) + } +} + +var unsupportedValues = []interface{}{ + math.NaN(), + math.Inf(-1), + math.Inf(1), +} + +func TestUnsupportedValues(t *testing.T) { + for _, v := range unsupportedValues { + if _, err := Marshal(v); err != nil { + if _, ok := err.(*UnsupportedValueError); !ok { + t.Errorf("for %v, got %T want UnsupportedValueError", v, err) + } + } else { + t.Errorf("for %v, expected error", v) + } + } +} + +// Ref has Marshaler and Unmarshaler methods with pointer receiver. +type Ref int + +func (*Ref) MarshalJSON() ([]byte, error) { + return []byte(`"ref"`), nil +} + +func (r *Ref) UnmarshalJSON([]byte) error { + *r = 12 + return nil +} + +// Val has Marshaler methods with value receiver. +type Val int + +func (Val) MarshalJSON() ([]byte, error) { + return []byte(`"val"`), nil +} + +// RefText has Marshaler and Unmarshaler methods with pointer receiver. +type RefText int + +func (*RefText) MarshalText() ([]byte, error) { + return []byte(`"ref"`), nil +} + +func (r *RefText) UnmarshalText([]byte) error { + *r = 13 + return nil +} + +// ValText has Marshaler methods with value receiver. +type ValText int + +func (ValText) MarshalText() ([]byte, error) { + return []byte(`"val"`), nil +} + +func TestRefValMarshal(t *testing.T) { + var s = struct { + R0 Ref + R1 *Ref + R2 RefText + R3 *RefText + V0 Val + V1 *Val + V2 ValText + V3 *ValText + }{ + R0: 12, + R1: new(Ref), + R2: 14, + R3: new(RefText), + V0: 13, + V1: new(Val), + V2: 15, + V3: new(ValText), + } + const want = `{"R0":"ref","R1":"ref","R2":"\"ref\"","R3":"\"ref\"","V0":"val","V1":"val","V2":"\"val\"","V3":"\"val\""}` + b, err := Marshal(&s) + if err != nil { + t.Fatalf("Marshal: %v", err) + } + if got := string(b); got != want { + t.Errorf("got %q, want %q", got, want) + } +} + +// C implements Marshaler and returns unescaped JSON. +type C int + +func (C) MarshalJSON() ([]byte, error) { + return []byte(`"<&>"`), nil +} + +// CText implements Marshaler and returns unescaped text. +type CText int + +func (CText) MarshalText() ([]byte, error) { + return []byte(`"<&>"`), nil +} + +func TestMarshalerEscaping(t *testing.T) { + var c C + want := `"\u003c\u0026\u003e"` + b, err := Marshal(c) + if err != nil { + t.Fatalf("Marshal(c): %v", err) + } + if got := string(b); got != want { + t.Errorf("Marshal(c) = %#q, want %#q", got, want) + } + + var ct CText + want = `"\"\u003c\u0026\u003e\""` + b, err = Marshal(ct) + if err != nil { + t.Fatalf("Marshal(ct): %v", err) + } + if got := string(b); got != want { + t.Errorf("Marshal(ct) = %#q, want %#q", got, want) + } +} + +func TestAnonymousFields(t *testing.T) { + tests := []struct { + label string // Test name + makeInput func() interface{} // Function to create input value + want string // Expected JSON output + }{{ + // Both S1 and S2 have a field named X. From the perspective of S, + // it is ambiguous which one X refers to. + // This should not serialize either field. + label: "AmbiguousField", + makeInput: func() interface{} { + type ( + S1 struct{ x, X int } + S2 struct{ x, X int } + S struct { + S1 + S2 + } + ) + return S{S1{1, 2}, S2{3, 4}} + }, + want: `{}`, + }, { + label: "DominantField", + // Both S1 and S2 have a field named X, but since S has an X field as + // well, it takes precedence over S1.X and S2.X. + makeInput: func() interface{} { + type ( + S1 struct{ x, X int } + S2 struct{ x, X int } + S struct { + S1 + S2 + x, X int + } + ) + return S{S1{1, 2}, S2{3, 4}, 5, 6} + }, + want: `{"X":6}`, + }, { + // Unexported embedded field of non-struct type should not be serialized. + label: "UnexportedEmbeddedInt", + makeInput: func() interface{} { + type ( + myInt int + S struct{ myInt } + ) + return S{5} + }, + want: `{}`, + }, { + // Exported embedded field of non-struct type should be serialized. + label: "ExportedEmbeddedInt", + makeInput: func() interface{} { + type ( + MyInt int + S struct{ MyInt } + ) + return S{5} + }, + want: `{"MyInt":5}`, + }, { + // Unexported embedded field of pointer to non-struct type + // should not be serialized. + label: "UnexportedEmbeddedIntPointer", + makeInput: func() interface{} { + type ( + myInt int + S struct{ *myInt } + ) + s := S{new(myInt)} + *s.myInt = 5 + return s + }, + want: `{}`, + }, { + // Exported embedded field of pointer to non-struct type + // should be serialized. + label: "ExportedEmbeddedIntPointer", + makeInput: func() interface{} { + type ( + MyInt int + S struct{ *MyInt } + ) + s := S{new(MyInt)} + *s.MyInt = 5 + return s + }, + want: `{"MyInt":5}`, + }, { + // Exported fields of embedded structs should have their + // exported fields be serialized regardless of whether the struct types + // themselves are exported. + label: "EmbeddedStruct", + makeInput: func() interface{} { + type ( + s1 struct{ x, X int } + S2 struct{ y, Y int } + S struct { + s1 + S2 + } + ) + return S{s1{1, 2}, S2{3, 4}} + }, + want: `{"X":2,"Y":4}`, + }, { + // Exported fields of pointers to embedded structs should have their + // exported fields be serialized regardless of whether the struct types + // themselves are exported. + label: "EmbeddedStructPointer", + makeInput: func() interface{} { + type ( + s1 struct{ x, X int } + S2 struct{ y, Y int } + S struct { + *s1 + *S2 + } + ) + return S{&s1{1, 2}, &S2{3, 4}} + }, + want: `{"X":2,"Y":4}`, + }, { + // Exported fields on embedded unexported structs at multiple levels + // of nesting should still be serialized. + label: "NestedStructAndInts", + makeInput: func() interface{} { + type ( + MyInt1 int + MyInt2 int + myInt int + s2 struct { + MyInt2 + myInt + } + s1 struct { + MyInt1 + myInt + s2 + } + S struct { + s1 + myInt + } + ) + return S{s1{1, 2, s2{3, 4}}, 6} + }, + want: `{"MyInt1":1,"MyInt2":3}`, + }, + { + // If an anonymous struct pointer field is nil, we should ignore + // the embedded fields behind it. Not properly doing so may + // result in the wrong output or reflect panics. + label: "EmbeddedFieldBehindNilPointer", + makeInput: func() interface{} { + type ( + S2 struct{ Field string } + S struct{ *S2 } + ) + return S{} + }, + want: `{}`, + }, + } + + for _, tt := range tests { + t.Run(tt.label, func(t *testing.T) { + b, err := Marshal(tt.makeInput()) + if err != nil { + t.Fatalf("Marshal() = %v, want nil error", err) + } + if string(b) != tt.want { + t.Fatalf("Marshal() = %q, want %q", b, tt.want) + } + }) + } +} + +type BugA struct { + S string +} + +type BugB struct { + BugA + S string +} + +type BugC struct { + S string +} + +// Legal Go: We never use the repeated embedded field (S). +type BugX struct { + A int + BugA + BugB +} + +// Issue 16042. Even if a nil interface value is passed in +// as long as it implements MarshalJSON, it should be marshaled. +type nilMarshaler string + +func (nm *nilMarshaler) MarshalJSON() ([]byte, error) { + if nm == nil { + return Marshal("0zenil0") + } + return Marshal("zenil:" + string(*nm)) +} + +// Issue 16042. +func TestNilMarshal(t *testing.T) { + testCases := []struct { + v interface{} + want string + }{ + {v: nil, want: `null`}, + {v: new(float64), want: `0`}, + {v: []interface{}(nil), want: `null`}, + {v: []string(nil), want: `null`}, + {v: map[string]string(nil), want: `null`}, + {v: []byte(nil), want: `null`}, + {v: struct{ M string }{"gopher"}, want: `{"M":"gopher"}`}, + {v: struct{ M Marshaler }{}, want: `{"M":null}`}, + {v: struct{ M Marshaler }{(*nilMarshaler)(nil)}, want: `{"M":"0zenil0"}`}, + {v: struct{ M interface{} }{(*nilMarshaler)(nil)}, want: `{"M":null}`}, + } + + for _, tt := range testCases { + out, err := Marshal(tt.v) + if err != nil || string(out) != tt.want { + t.Errorf("Marshal(%#v) = %#q, %#v, want %#q, nil", tt.v, out, err, tt.want) + continue + } + } +} + +// Issue 5245. +func TestEmbeddedBug(t *testing.T) { + v := BugB{ + BugA{"A"}, + "B", + } + b, err := Marshal(v) + if err != nil { + t.Fatal("Marshal:", err) + } + want := `{"S":"B"}` + got := string(b) + if got != want { + t.Fatalf("Marshal: got %s want %s", got, want) + } + // Now check that the duplicate field, S, does not appear. + x := BugX{ + A: 23, + } + b, err = Marshal(x) + if err != nil { + t.Fatal("Marshal:", err) + } + want = `{"A":23}` + got = string(b) + if got != want { + t.Fatalf("Marshal: got %s want %s", got, want) + } +} + +type BugD struct { // Same as BugA after tagging. + XXX string `json:"S"` +} + +// BugD's tagged S field should dominate BugA's. +type BugY struct { + BugA + BugD +} + +// Test that a field with a tag dominates untagged fields. +func TestTaggedFieldDominates(t *testing.T) { + v := BugY{ + BugA{"BugA"}, + BugD{"BugD"}, + } + b, err := Marshal(v) + if err != nil { + t.Fatal("Marshal:", err) + } + want := `{"S":"BugD"}` + got := string(b) + if got != want { + t.Fatalf("Marshal: got %s want %s", got, want) + } +} + +// There are no tags here, so S should not appear. +type BugZ struct { + BugA + BugC + BugY // Contains a tagged S field through BugD; should not dominate. +} + +func TestDuplicatedFieldDisappears(t *testing.T) { + v := BugZ{ + BugA{"BugA"}, + BugC{"BugC"}, + BugY{ + BugA{"nested BugA"}, + BugD{"nested BugD"}, + }, + } + b, err := Marshal(v) + if err != nil { + t.Fatal("Marshal:", err) + } + want := `{}` + got := string(b) + if got != want { + t.Fatalf("Marshal: got %s want %s", got, want) + } +} + +func TestStringBytes(t *testing.T) { + t.Parallel() + // Test that encodeState.stringBytes and encodeState.string use the same encoding. + var r []rune + for i := '\u0000'; i <= unicode.MaxRune; i++ { + if testing.Short() && i > 1000 { + i = unicode.MaxRune + } + r = append(r, i) + } + s := string(r) + "\xff\xff\xffhello" // some invalid UTF-8 too + + for _, escapeHTML := range []bool{true, false} { + es := &encodeState{} + es.string(s, escapeHTML) + + esBytes := &encodeState{} + esBytes.stringBytes([]byte(s), escapeHTML) + + enc := es.Buffer.String() + encBytes := esBytes.Buffer.String() + if enc != encBytes { + i := 0 + for i < len(enc) && i < len(encBytes) && enc[i] == encBytes[i] { + i++ + } + enc = enc[i:] + encBytes = encBytes[i:] + i = 0 + for i < len(enc) && i < len(encBytes) && enc[len(enc)-i-1] == encBytes[len(encBytes)-i-1] { + i++ + } + enc = enc[:len(enc)-i] + encBytes = encBytes[:len(encBytes)-i] + + if len(enc) > 20 { + enc = enc[:20] + "..." + } + if len(encBytes) > 20 { + encBytes = encBytes[:20] + "..." + } + + t.Errorf("with escapeHTML=%t, encodings differ at %#q vs %#q", + escapeHTML, enc, encBytes) + } + } +} + +func TestIssue10281(t *testing.T) { + type Foo struct { + N Number + } + x := Foo{Number(`invalid`)} + + b, err := Marshal(&x) + if err == nil { + t.Errorf("Marshal(&x) = %#q; want error", b) + } +} + +func TestHTMLEscape(t *testing.T) { + var b, want bytes.Buffer + m := `{"M":"foo &` + "\xe2\x80\xa8 \xe2\x80\xa9" + `"}` + want.Write([]byte(`{"M":"\u003chtml\u003efoo \u0026\u2028 \u2029\u003c/html\u003e"}`)) + HTMLEscape(&b, []byte(m)) + if !bytes.Equal(b.Bytes(), want.Bytes()) { + t.Errorf("HTMLEscape(&b, []byte(m)) = %s; want %s", b.Bytes(), want.Bytes()) + } +} + +// golang.org/issue/8582 +func TestEncodePointerString(t *testing.T) { + type stringPointer struct { + N *int64 `json:"n,string"` + } + var n int64 = 42 + b, err := Marshal(stringPointer{N: &n}) + if err != nil { + t.Fatalf("Marshal: %v", err) + } + if got, want := string(b), `{"n":"42"}`; got != want { + t.Errorf("Marshal = %s, want %s", got, want) + } + var back stringPointer + err = Unmarshal(b, &back) + if err != nil { + t.Fatalf("Unmarshal: %v", err) + } + if back.N == nil { + t.Fatalf("Unmarshaled nil N field") + } + if *back.N != 42 { + t.Fatalf("*N = %d; want 42", *back.N) + } +} + +var encodeStringTests = []struct { + in string + out string +}{ + {"\x00", `"\u0000"`}, + {"\x01", `"\u0001"`}, + {"\x02", `"\u0002"`}, + {"\x03", `"\u0003"`}, + {"\x04", `"\u0004"`}, + {"\x05", `"\u0005"`}, + {"\x06", `"\u0006"`}, + {"\x07", `"\u0007"`}, + {"\x08", `"\u0008"`}, + {"\x09", `"\t"`}, + {"\x0a", `"\n"`}, + {"\x0b", `"\u000b"`}, + {"\x0c", `"\u000c"`}, + {"\x0d", `"\r"`}, + {"\x0e", `"\u000e"`}, + {"\x0f", `"\u000f"`}, + {"\x10", `"\u0010"`}, + {"\x11", `"\u0011"`}, + {"\x12", `"\u0012"`}, + {"\x13", `"\u0013"`}, + {"\x14", `"\u0014"`}, + {"\x15", `"\u0015"`}, + {"\x16", `"\u0016"`}, + {"\x17", `"\u0017"`}, + {"\x18", `"\u0018"`}, + {"\x19", `"\u0019"`}, + {"\x1a", `"\u001a"`}, + {"\x1b", `"\u001b"`}, + {"\x1c", `"\u001c"`}, + {"\x1d", `"\u001d"`}, + {"\x1e", `"\u001e"`}, + {"\x1f", `"\u001f"`}, +} + +func TestEncodeString(t *testing.T) { + for _, tt := range encodeStringTests { + b, err := Marshal(tt.in) + if err != nil { + t.Errorf("Marshal(%q): %v", tt.in, err) + continue + } + out := string(b) + if out != tt.out { + t.Errorf("Marshal(%q) = %#q, want %#q", tt.in, out, tt.out) + } + } +} + +type jsonbyte byte + +func (b jsonbyte) MarshalJSON() ([]byte, error) { return tenc(`{"JB":%d}`, b) } + +type textbyte byte + +func (b textbyte) MarshalText() ([]byte, error) { return tenc(`TB:%d`, b) } + +type jsonint int + +func (i jsonint) MarshalJSON() ([]byte, error) { return tenc(`{"JI":%d}`, i) } + +type textint int + +func (i textint) MarshalText() ([]byte, error) { return tenc(`TI:%d`, i) } + +func tenc(format string, a ...interface{}) ([]byte, error) { + var buf bytes.Buffer + fmt.Fprintf(&buf, format, a...) + return buf.Bytes(), nil +} + +// Issue 13783 +func TestEncodeBytekind(t *testing.T) { + testdata := []struct { + data interface{} + want string + }{ + {byte(7), "7"}, + {jsonbyte(7), `{"JB":7}`}, + {textbyte(4), `"TB:4"`}, + {jsonint(5), `{"JI":5}`}, + {textint(1), `"TI:1"`}, + {[]byte{0, 1}, `"AAE="`}, + {[]jsonbyte{0, 1}, `[{"JB":0},{"JB":1}]`}, + {[][]jsonbyte{{0, 1}, {3}}, `[[{"JB":0},{"JB":1}],[{"JB":3}]]`}, + {[]textbyte{2, 3}, `["TB:2","TB:3"]`}, + {[]jsonint{5, 4}, `[{"JI":5},{"JI":4}]`}, + {[]textint{9, 3}, `["TI:9","TI:3"]`}, + {[]int{9, 3}, `[9,3]`}, + } + for _, d := range testdata { + js, err := Marshal(d.data) + if err != nil { + t.Error(err) + continue + } + got, want := string(js), d.want + if got != want { + t.Errorf("got %s, want %s", got, want) + } + } +} + +func TestTextMarshalerMapKeysAreSorted(t *testing.T) { + b, err := Marshal(map[unmarshalerText]int{ + {"x", "y"}: 1, + {"y", "x"}: 2, + {"a", "z"}: 3, + {"z", "a"}: 4, + }) + if err != nil { + t.Fatalf("Failed to Marshal text.Marshaler: %v", err) + } + const want = `{"a:z":3,"x:y":1,"y:x":2,"z:a":4}` + if string(b) != want { + t.Errorf("Marshal map with text.Marshaler keys: got %#q, want %#q", b, want) + } +} + +var re = regexp.MustCompile + +// syntactic checks on form of marshaled floating point numbers. +var badFloatREs = []*regexp.Regexp{ + re(`p`), // no binary exponential notation + re(`^\+`), // no leading + sign + re(`^-?0[^.]`), // no unnecessary leading zeros + re(`^-?\.`), // leading zero required before decimal point + re(`\.(e|$)`), // no trailing decimal + re(`\.[0-9]+0(e|$)`), // no trailing zero in fraction + re(`^-?(0|[0-9]{2,})\..*e`), // exponential notation must have normalized mantissa + re(`e[0-9]`), // positive exponent must be signed + re(`e[+-]0`), // exponent must not have leading zeros + re(`e-[1-6]$`), // not tiny enough for exponential notation + re(`e+(.|1.|20)$`), // not big enough for exponential notation + re(`^-?0\.0000000`), // too tiny, should use exponential notation + re(`^-?[0-9]{22}`), // too big, should use exponential notation + re(`[1-9][0-9]{16}[1-9]`), // too many significant digits in integer + re(`[1-9][0-9.]{17}[1-9]`), // too many significant digits in decimal + // below here for float32 only + re(`[1-9][0-9]{8}[1-9]`), // too many significant digits in integer + re(`[1-9][0-9.]{9}[1-9]`), // too many significant digits in decimal +} + +func TestMarshalFloat(t *testing.T) { + t.Parallel() + nfail := 0 + test := func(f float64, bits int) { + vf := interface{}(f) + if bits == 32 { + f = float64(float32(f)) // round + vf = float32(f) + } + bout, err := Marshal(vf) + if err != nil { + t.Errorf("Marshal(%T(%g)): %v", vf, vf, err) + nfail++ + return + } + out := string(bout) + + // result must convert back to the same float + g, err := strconv.ParseFloat(out, bits) + if err != nil { + t.Errorf("Marshal(%T(%g)) = %q, cannot parse back: %v", vf, vf, out, err) + nfail++ + return + } + if f != g || fmt.Sprint(f) != fmt.Sprint(g) { // fmt.Sprint handles ±0 + t.Errorf("Marshal(%T(%g)) = %q (is %g, not %g)", vf, vf, out, float32(g), vf) + nfail++ + return + } + + bad := badFloatREs + if bits == 64 { + bad = bad[:len(bad)-2] + } + for _, re := range bad { + if re.MatchString(out) { + t.Errorf("Marshal(%T(%g)) = %q, must not match /%s/", vf, vf, out, re) + nfail++ + return + } + } + } + + var ( + bigger = math.Inf(+1) + smaller = math.Inf(-1) + ) + + var digits = "1.2345678901234567890123" + for i := len(digits); i >= 2; i-- { + if testing.Short() && i < len(digits)-4 { + break + } + for exp := -30; exp <= 30; exp++ { + for _, sign := range "+-" { + for bits := 32; bits <= 64; bits += 32 { + s := fmt.Sprintf("%c%se%d", sign, digits[:i], exp) + f, err := strconv.ParseFloat(s, bits) + if err != nil { + log.Fatal(err) + } + next := math.Nextafter + if bits == 32 { + next = func(g, h float64) float64 { + return float64(math.Nextafter32(float32(g), float32(h))) + } + } + test(f, bits) + test(next(f, bigger), bits) + test(next(f, smaller), bits) + if nfail > 50 { + t.Fatalf("stopping test early") + } + } + } + } + } + test(0, 64) + test(math.Copysign(0, -1), 64) + test(0, 32) + test(math.Copysign(0, -1), 32) +} + +func TestMarshalRawMessageValue(t *testing.T) { + type ( + T1 struct { + M RawMessage `json:",omitempty"` + } + T2 struct { + M *RawMessage `json:",omitempty"` + } + ) + + var ( + rawNil = RawMessage(nil) + rawEmpty = RawMessage([]byte{}) + rawText = RawMessage([]byte(`"foo"`)) + ) + + tests := []struct { + in interface{} + want string + ok bool + }{ + // Test with nil RawMessage. + {rawNil, "null", true}, + {&rawNil, "null", true}, + {[]interface{}{rawNil}, "[null]", true}, + {&[]interface{}{rawNil}, "[null]", true}, + {[]interface{}{&rawNil}, "[null]", true}, + {&[]interface{}{&rawNil}, "[null]", true}, + {struct{ M RawMessage }{rawNil}, `{"M":null}`, true}, + {&struct{ M RawMessage }{rawNil}, `{"M":null}`, true}, + {struct{ M *RawMessage }{&rawNil}, `{"M":null}`, true}, + {&struct{ M *RawMessage }{&rawNil}, `{"M":null}`, true}, + {map[string]interface{}{"M": rawNil}, `{"M":null}`, true}, + {&map[string]interface{}{"M": rawNil}, `{"M":null}`, true}, + {map[string]interface{}{"M": &rawNil}, `{"M":null}`, true}, + {&map[string]interface{}{"M": &rawNil}, `{"M":null}`, true}, + {T1{rawNil}, "{}", true}, + {T2{&rawNil}, `{"M":null}`, true}, + {&T1{rawNil}, "{}", true}, + {&T2{&rawNil}, `{"M":null}`, true}, + + // Test with empty, but non-nil, RawMessage. + {rawEmpty, "", false}, + {&rawEmpty, "", false}, + {[]interface{}{rawEmpty}, "", false}, + {&[]interface{}{rawEmpty}, "", false}, + {[]interface{}{&rawEmpty}, "", false}, + {&[]interface{}{&rawEmpty}, "", false}, + {struct{ X RawMessage }{rawEmpty}, "", false}, + {&struct{ X RawMessage }{rawEmpty}, "", false}, + {struct{ X *RawMessage }{&rawEmpty}, "", false}, + {&struct{ X *RawMessage }{&rawEmpty}, "", false}, + {map[string]interface{}{"nil": rawEmpty}, "", false}, + {&map[string]interface{}{"nil": rawEmpty}, "", false}, + {map[string]interface{}{"nil": &rawEmpty}, "", false}, + {&map[string]interface{}{"nil": &rawEmpty}, "", false}, + {T1{rawEmpty}, "{}", true}, + {T2{&rawEmpty}, "", false}, + {&T1{rawEmpty}, "{}", true}, + {&T2{&rawEmpty}, "", false}, + + // Test with RawMessage with some text. + // + // The tests below marked with Issue6458 used to generate "ImZvbyI=" instead "foo". + // This behavior was intentionally changed in Go 1.8. + // See https://golang.org/issues/14493#issuecomment-255857318 + {rawText, `"foo"`, true}, // Issue6458 + {&rawText, `"foo"`, true}, + {[]interface{}{rawText}, `["foo"]`, true}, // Issue6458 + {&[]interface{}{rawText}, `["foo"]`, true}, // Issue6458 + {[]interface{}{&rawText}, `["foo"]`, true}, + {&[]interface{}{&rawText}, `["foo"]`, true}, + {struct{ M RawMessage }{rawText}, `{"M":"foo"}`, true}, // Issue6458 + {&struct{ M RawMessage }{rawText}, `{"M":"foo"}`, true}, + {struct{ M *RawMessage }{&rawText}, `{"M":"foo"}`, true}, + {&struct{ M *RawMessage }{&rawText}, `{"M":"foo"}`, true}, + {map[string]interface{}{"M": rawText}, `{"M":"foo"}`, true}, // Issue6458 + {&map[string]interface{}{"M": rawText}, `{"M":"foo"}`, true}, // Issue6458 + {map[string]interface{}{"M": &rawText}, `{"M":"foo"}`, true}, + {&map[string]interface{}{"M": &rawText}, `{"M":"foo"}`, true}, + {T1{rawText}, `{"M":"foo"}`, true}, // Issue6458 + {T2{&rawText}, `{"M":"foo"}`, true}, + {&T1{rawText}, `{"M":"foo"}`, true}, + {&T2{&rawText}, `{"M":"foo"}`, true}, + } + + for i, tt := range tests { + b, err := Marshal(tt.in) + if ok := (err == nil); ok != tt.ok { + if err != nil { + t.Errorf("test %d, unexpected failure: %v", i, err) + } else { + t.Errorf("test %d, unexpected success", i) + } + } + if got := string(b); got != tt.want { + t.Errorf("test %d, Marshal(%#v) = %q, want %q", i, tt.in, got, tt.want) + } + } +} + +type marshalPanic struct{} + +func (marshalPanic) MarshalJSON() ([]byte, error) { panic(0xdead) } + +func TestMarshalPanic(t *testing.T) { + defer func() { + if got := recover(); !reflect.DeepEqual(got, 0xdead) { + t.Errorf("panic() = (%T)(%v), want 0xdead", got, got) + } + }() + Marshal(&marshalPanic{}) + t.Error("Marshal should have panicked") +} + +func TestMarshalUncommonFieldNames(t *testing.T) { + v := struct { + A0, À, Aβ int + }{} + b, err := Marshal(v) + if err != nil { + t.Fatal("Marshal:", err) + } + want := `{"A0":0,"À":0,"Aβ":0}` + got := string(b) + if got != want { + t.Fatalf("Marshal: got %s want %s", got, want) + } +} diff --git a/cli/output/jsonw/internal/jcolorenc/golang_example_marshaling_test.go b/cli/output/jsonw/internal/jcolorenc/golang_example_marshaling_test.go new file mode 100644 index 00000000..7f15c742 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/golang_example_marshaling_test.go @@ -0,0 +1,73 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package json_test + +import ( + "encoding/json" + "fmt" + "log" + "strings" +) + +type Animal int + +const ( + Unknown Animal = iota + Gopher + Zebra +) + +func (a *Animal) UnmarshalJSON(b []byte) error { + var s string + if err := json.Unmarshal(b, &s); err != nil { + return err + } + switch strings.ToLower(s) { + default: + *a = Unknown + case "gopher": + *a = Gopher + case "zebra": + *a = Zebra + } + + return nil +} + +func (a Animal) MarshalJSON() ([]byte, error) { + var s string + switch a { + default: + s = "unknown" + case Gopher: + s = "gopher" + case Zebra: + s = "zebra" + } + + return json.Marshal(s) +} + +func Example_customMarshalJSON() { + blob := `["gopher","armadillo","zebra","unknown","gopher","bee","gopher","zebra"]` + var zoo []Animal + if err := json.Unmarshal([]byte(blob), &zoo); err != nil { + log.Fatal(err) + } + + census := make(map[Animal]int) + for _, animal := range zoo { + census[animal] += 1 + } + + fmt.Printf("Zoo Census:\n* Gophers: %d\n* Zebras: %d\n* Unknown: %d\n", + census[Gopher], census[Zebra], census[Unknown]) + + // Output: + // Zoo Census: + // * Gophers: 3 + // * Zebras: 2 + // * Unknown: 3 +} diff --git a/cli/output/jsonw/internal/jcolorenc/golang_example_test.go b/cli/output/jsonw/internal/jcolorenc/golang_example_test.go new file mode 100644 index 00000000..2088c342 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/golang_example_test.go @@ -0,0 +1,310 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package json_test + +import ( + "bytes" + "encoding/json" + "fmt" + "io" + "log" + "os" + "strings" +) + +func ExampleMarshal() { + type ColorGroup struct { + ID int + Name string + Colors []string + } + group := ColorGroup{ + ID: 1, + Name: "Reds", + Colors: []string{"Crimson", "Red", "Ruby", "Maroon"}, + } + b, err := json.Marshal(group) + if err != nil { + fmt.Println("error:", err) + } + os.Stdout.Write(b) + // Output: + // {"ID":1,"Name":"Reds","Colors":["Crimson","Red","Ruby","Maroon"]} +} + +func ExampleUnmarshal() { + var jsonBlob = []byte(`[ + {"Name": "Platypus", "Order": "Monotremata"}, + {"Name": "Quoll", "Order": "Dasyuromorphia"} +]`) + type Animal struct { + Name string + Order string + } + var animals []Animal + err := json.Unmarshal(jsonBlob, &animals) + if err != nil { + fmt.Println("error:", err) + } + fmt.Printf("%+v", animals) + // Output: + // [{Name:Platypus Order:Monotremata} {Name:Quoll Order:Dasyuromorphia}] +} + +// This example uses a Decoder to decode a stream of distinct JSON values. +func ExampleDecoder() { + const jsonStream = ` + {"Name": "Ed", "Text": "Knock knock."} + {"Name": "Sam", "Text": "Who's there?"} + {"Name": "Ed", "Text": "Go fmt."} + {"Name": "Sam", "Text": "Go fmt who?"} + {"Name": "Ed", "Text": "Go fmt yourself!"} +` + type Message struct { + Name, Text string + } + dec := json.NewDecoder(strings.NewReader(jsonStream)) + for { + var m Message + if err := dec.Decode(&m); err == io.EOF { + break + } else if err != nil { + log.Fatal(err) + } + fmt.Printf("%s: %s\n", m.Name, m.Text) + } + // Output: + // Ed: Knock knock. + // Sam: Who's there? + // Ed: Go fmt. + // Sam: Go fmt who? + // Ed: Go fmt yourself! +} + +// This example uses a Decoder to decode a stream of distinct JSON values. +func ExampleDecoder_Token() { + const jsonStream = ` + {"Message": "Hello", "Array": [1, 2, 3], "Null": null, "Number": 1.234} +` + dec := json.NewDecoder(strings.NewReader(jsonStream)) + for { + t, err := dec.Token() + if err == io.EOF { + break + } + if err != nil { + log.Fatal(err) + } + fmt.Printf("%T: %v", t, t) + if dec.More() { + fmt.Printf(" (more)") + } + fmt.Printf("\n") + } + // Output: + // json.Delim: { (more) + // string: Message (more) + // string: Hello (more) + // string: Array (more) + // json.Delim: [ (more) + // float64: 1 (more) + // float64: 2 (more) + // float64: 3 + // json.Delim: ] (more) + // string: Null (more) + // : (more) + // string: Number (more) + // float64: 1.234 + // json.Delim: } +} + +// This example uses a Decoder to decode a streaming array of JSON objects. +func ExampleDecoder_Decode_stream() { + const jsonStream = ` + [ + {"Name": "Ed", "Text": "Knock knock."}, + {"Name": "Sam", "Text": "Who's there?"}, + {"Name": "Ed", "Text": "Go fmt."}, + {"Name": "Sam", "Text": "Go fmt who?"}, + {"Name": "Ed", "Text": "Go fmt yourself!"} + ] +` + type Message struct { + Name, Text string + } + dec := json.NewDecoder(strings.NewReader(jsonStream)) + + // read open bracket + t, err := dec.Token() + if err != nil { + log.Fatal(err) + } + fmt.Printf("%T: %v\n", t, t) + + // while the array contains values + for dec.More() { + var m Message + // decode an array value (Message) + err := dec.Decode(&m) + if err != nil { + log.Fatal(err) + } + + fmt.Printf("%v: %v\n", m.Name, m.Text) + } + + // read closing bracket + t, err = dec.Token() + if err != nil { + log.Fatal(err) + } + fmt.Printf("%T: %v\n", t, t) + + // Output: + // json.Delim: [ + // Ed: Knock knock. + // Sam: Who's there? + // Ed: Go fmt. + // Sam: Go fmt who? + // Ed: Go fmt yourself! + // json.Delim: ] +} + +// This example uses RawMessage to delay parsing part of a JSON message. +func ExampleRawMessage_unmarshal() { + type Color struct { + Space string + Point json.RawMessage // delay parsing until we know the color space + } + type RGB struct { + R uint8 + G uint8 + B uint8 + } + type YCbCr struct { + Y uint8 + Cb int8 + Cr int8 + } + + var j = []byte(`[ + {"Space": "YCbCr", "Point": {"Y": 255, "Cb": 0, "Cr": -10}}, + {"Space": "RGB", "Point": {"R": 98, "G": 218, "B": 255}} +]`) + var colors []Color + err := json.Unmarshal(j, &colors) + if err != nil { + log.Fatalln("error:", err) + } + + for _, c := range colors { + var dst interface{} + switch c.Space { + case "RGB": + dst = new(RGB) + case "YCbCr": + dst = new(YCbCr) + } + err := json.Unmarshal(c.Point, dst) + if err != nil { + log.Fatalln("error:", err) + } + fmt.Println(c.Space, dst) + } + // Output: + // YCbCr &{255 0 -10} + // RGB &{98 218 255} +} + +// This example uses RawMessage to use a precomputed JSON during marshal. +func ExampleRawMessage_marshal() { + h := json.RawMessage(`{"precomputed": true}`) + + c := struct { + Header *json.RawMessage `json:"header"` + Body string `json:"body"` + }{Header: &h, Body: "Hello Gophers!"} + + b, err := json.MarshalIndent(&c, "", "\t") + if err != nil { + fmt.Println("error:", err) + } + os.Stdout.Write(b) + + // Output: + // { + // "header": { + // "precomputed": true + // }, + // "body": "Hello Gophers!" + // } +} + +func ExampleIndent() { + type Road struct { + Name string + Number int + } + roads := []Road{ + {"Diamond Fork", 29}, + {"Sheep Creek", 51}, + } + + b, err := json.Marshal(roads) + if err != nil { + log.Fatal(err) + } + + var out bytes.Buffer + json.Indent(&out, b, "=", "\t") + out.WriteTo(os.Stdout) + // Output: + // [ + // = { + // = "Name": "Diamond Fork", + // = "Number": 29 + // = }, + // = { + // = "Name": "Sheep Creek", + // = "Number": 51 + // = } + // =] +} + +func ExampleMarshalIndent() { + data := map[string]int{ + "a": 1, + "b": 2, + } + + json, err := json.MarshalIndent(data, "", "") + if err != nil { + log.Fatal(err) + } + + fmt.Println(string(json)) + // Output: + // { + // "a": 1, + // "b": 2 + // } +} + +func ExampleValid() { + goodJSON := `{"example": 1}` + badJSON := `{"example":2:]}}` + + fmt.Println(json.Valid([]byte(goodJSON)), json.Valid([]byte(badJSON))) + // Output: + // true false +} + +func ExampleHTMLEscape() { + var out bytes.Buffer + json.HTMLEscape(&out, []byte(`{"Name":"HTML content"}`)) + out.WriteTo(os.Stdout) + // Output: + //{"Name":"\u003cb\u003eHTML content\u003c/b\u003e"} +} diff --git a/cli/output/jsonw/internal/jcolorenc/golang_number_test.go b/cli/output/jsonw/internal/jcolorenc/golang_number_test.go new file mode 100644 index 00000000..f89ac8b3 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/golang_number_test.go @@ -0,0 +1,129 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package json + +import ( + "regexp" + "testing" +) + +func TestNumberIsValid(t *testing.T) { + // From: https://stackoverflow.com/a/13340826 + var jsonNumberRegexp = regexp.MustCompile(`^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?$`) + + validTests := []string{ + "0", + "-0", + "1", + "-1", + "0.1", + "-0.1", + "1234", + "-1234", + "12.34", + "-12.34", + "12E0", + "12E1", + "12e34", + "12E-0", + "12e+1", + "12e-34", + "-12E0", + "-12E1", + "-12e34", + "-12E-0", + "-12e+1", + "-12e-34", + "1.2E0", + "1.2E1", + "1.2e34", + "1.2E-0", + "1.2e+1", + "1.2e-34", + "-1.2E0", + "-1.2E1", + "-1.2e34", + "-1.2E-0", + "-1.2e+1", + "-1.2e-34", + "0E0", + "0E1", + "0e34", + "0E-0", + "0e+1", + "0e-34", + "-0E0", + "-0E1", + "-0e34", + "-0E-0", + "-0e+1", + "-0e-34", + } + + for _, test := range validTests { + if !isValidNumber(test) { + t.Errorf("%s should be valid", test) + } + + var f float64 + if err := Unmarshal([]byte(test), &f); err != nil { + t.Errorf("%s should be valid but Unmarshal failed: %v", test, err) + } + + if !jsonNumberRegexp.MatchString(test) { + t.Errorf("%s should be valid but regexp does not match", test) + } + } + + invalidTests := []string{ + "", + "invalid", + "1.0.1", + "1..1", + "-1-2", + "012a42", + "01.2", + "012", + "12E12.12", + "1e2e3", + "1e+-2", + "1e--23", + "1e", + "e1", + "1e+", + "1ea", + "1a", + "1.a", + "1.", + "01", + "1.e1", + } + + for _, test := range invalidTests { + var f float64 + if err := Unmarshal([]byte(test), &f); err == nil { + t.Errorf("%s should be invalid but unmarshal wrote %v", test, f) + } + + if jsonNumberRegexp.MatchString(test) { + t.Errorf("%s should be invalid but matches regexp", test) + } + } +} + +func BenchmarkNumberIsValid(b *testing.B) { + s := "-61657.61667E+61673" + for i := 0; i < b.N; i++ { + isValidNumber(s) + } +} + +func BenchmarkNumberIsValidRegexp(b *testing.B) { + var jsonNumberRegexp = regexp.MustCompile(`^-?(?:0|[1-9]\d*)(?:\.\d+)?(?:[eE][+-]?\d+)?$`) + s := "-61657.61667E+61673" + for i := 0; i < b.N; i++ { + jsonNumberRegexp.MatchString(s) + } +} diff --git a/vendor/github.com/dustin/gojson/scanner_test.go b/cli/output/jsonw/internal/jcolorenc/golang_scanner_test.go similarity index 80% rename from vendor/github.com/dustin/gojson/scanner_test.go rename to cli/output/jsonw/internal/jcolorenc/golang_scanner_test.go index 3e3d2690..a26bacee 100644 --- a/vendor/github.com/dustin/gojson/scanner_test.go +++ b/cli/output/jsonw/internal/jcolorenc/golang_scanner_test.go @@ -1,4 +1,4 @@ -// Copyright 2010 The Go Authors. All rights reserved. +// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. @@ -8,10 +8,29 @@ import ( "bytes" "math" "math/rand" - "reflect" "testing" ) +var validTests = []struct { + data string + ok bool +}{ + {`foo`, false}, + {`}{`, false}, + {`{]`, false}, + {`{}`, true}, + {`{"foo":"bar"}`, true}, + {`{"foo":"bar","bar":{"baz":["qux"]}}`, true}, +} + +func TestValid(t *testing.T) { + for _, tt := range validTests { + if ok := Valid([]byte(tt.data)); ok != tt.ok { + t.Errorf("Valid(%#q) = %v, want %v", tt.data, ok, tt.ok) + } + } +} + // Tests of simple examples. type example struct { @@ -28,6 +47,7 @@ var examples = []example{ {`[1,2,3]`, "[\n\t1,\n\t2,\n\t3\n]"}, {`{"x":1}`, "{\n\t\"x\": 1\n}"}, {ex1, ex1i}, + {"{\"\":\"<>&\u2028\u2029\"}", "{\n\t\"\": \"<>&\u2028\u2029\"\n}"}, // See golang.org/issue/34070 } var ex1 = `[true,false,null,"x",1,1.5,0,-5e+2]` @@ -69,8 +89,8 @@ func TestCompactSeparators(t *testing.T) { tests := []struct { in, compact string }{ - {"{\"\u2028\": 1}", `{"\u2028":1}`}, - {"{\"\u2029\" :2}", `{"\u2029":2}`}, + {"{\"\u2028\": 1}", "{\"\u2028\":1}"}, + {"{\"\u2029\" :2}", "{\"\u2029\":2}"}, } for _, tt := range tests { var buf bytes.Buffer @@ -119,6 +139,7 @@ func TestCompactBig(t *testing.T) { } func TestIndentBig(t *testing.T) { + t.Parallel() initBig() var buf bytes.Buffer if err := Indent(&buf, jsonBig, "", "\t"); err != nil { @@ -162,59 +183,19 @@ type indentErrorTest struct { } var indentErrorTests = []indentErrorTest{ - {`{"X": "foo", "Y"}`, &SyntaxError{"invalid character '}' after object key", 17}}, - {`{"X": "foo" "Y": "bar"}`, &SyntaxError{"invalid character '\"' after object key:value pair", 13}}, + {`{"X": "foo", "Y"}`, &testSyntaxError{"invalid character '}' after object key", 17}}, + {`{"X": "foo" "Y": "bar"}`, &testSyntaxError{"invalid character '\"' after object key:value pair", 13}}, } func TestIndentErrors(t *testing.T) { for i, tt := range indentErrorTests { slice := make([]uint8, 0) buf := bytes.NewBuffer(slice) - if err := Indent(buf, []uint8(tt.in), "", ""); err != nil { - if !reflect.DeepEqual(err, tt.err) { - t.Errorf("#%d: Indent: %#v", i, err) - continue - } - } + err := Indent(buf, []uint8(tt.in), "", "") + assertErrorPresence(t, tt.err, err, i) } } -func TestNextValueBig(t *testing.T) { - initBig() - var scan Scanner - item, rest, err := NextValue(jsonBig, &scan) - if err != nil { - t.Fatalf("NextValue: %s", err) - } - if len(item) != len(jsonBig) || &item[0] != &jsonBig[0] { - t.Errorf("invalid item: %d %d", len(item), len(jsonBig)) - } - if len(rest) != 0 { - t.Errorf("invalid rest: %d", len(rest)) - } - - item, rest, err = NextValue(append(jsonBig, "HELLO WORLD"...), &scan) - if err != nil { - t.Fatalf("NextValue extra: %s", err) - } - if len(item) != len(jsonBig) { - t.Errorf("invalid item: %d %d", len(item), len(jsonBig)) - } - if string(rest) != "HELLO WORLD" { - t.Errorf("invalid rest: %d", len(rest)) - } -} - -var benchScan Scanner - -func BenchmarkSkipValue(b *testing.B) { - initBig() - for i := 0; i < b.N; i++ { - NextValue(jsonBig, &benchScan) - } - b.SetBytes(int64(len(jsonBig))) -} - func diff(t *testing.T, a, b []byte) { for i := 0; ; i++ { if i >= len(a) || i >= len(b) || a[i] != b[i] { diff --git a/cli/output/jsonw/internal/jcolorenc/golang_shim_test.go b/cli/output/jsonw/internal/jcolorenc/golang_shim_test.go new file mode 100644 index 00000000..b615e360 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/golang_shim_test.go @@ -0,0 +1,72 @@ +// This file is a shim for dependencies of golang_*_test.go files that are normally provided by the standard library. +// It helps importing those files with minimal changes. +package json + +import ( + "bytes" + "reflect" + "sync" + "testing" +) + +// Field cache used in golang_bench_test.go +var fieldCache = sync.Map{} + +func cachedTypeFields(reflect.Type) {} + +// Fake test env for golang_bench_test.go +type testenvShim struct { +} + +func (ts testenvShim) Builder() string { + return "" +} + +var testenv testenvShim + +// Fake scanner for golang_decode_test.go +type scanner struct { +} + +func checkValid(in []byte, scan *scanner) error { + return nil +} + +// Actual isSpace implementation +func isSpace(c byte) bool { + return c == ' ' || c == '\t' || c == '\r' || c == '\n' +} + +// Fake encoder for golang_encode_test.go +type encodeState struct { + Buffer bytes.Buffer +} + +func (es *encodeState) string(s string, escapeHTML bool) { +} + +func (es *encodeState) stringBytes(b []byte, escapeHTML bool) { +} + +// Fake number test +func isValidNumber(n string) bool { + return true +} + +func assertErrorPresence(t *testing.T, expected error, actual error, prefixes ...interface{}) { + if expected != nil && actual == nil { + errorWithPrefixes(t, prefixes, "expected error, but did not get an error") + } else if expected == nil && actual != nil { + errorWithPrefixes(t, prefixes, "did not expect error but got %v", actual) + } +} + +func errorWithPrefixes(t *testing.T, prefixes []interface{}, format string, elements ...interface{}) { + fullFormat := format + allElements := append(prefixes, elements...) + + for range prefixes { + fullFormat = "%v: " + fullFormat + } + t.Errorf(fullFormat, allElements...) +} diff --git a/vendor/github.com/dustin/gojson/tagkey_test.go b/cli/output/jsonw/internal/jcolorenc/golang_tagkey_test.go similarity index 89% rename from vendor/github.com/dustin/gojson/tagkey_test.go rename to cli/output/jsonw/internal/jcolorenc/golang_tagkey_test.go index 23e71c75..f77c49c7 100644 --- a/vendor/github.com/dustin/gojson/tagkey_test.go +++ b/cli/output/jsonw/internal/jcolorenc/golang_tagkey_test.go @@ -1,4 +1,4 @@ -// Copyright 2011 The Go Authors. All rights reserved. +// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. @@ -37,11 +37,15 @@ type miscPlaneTag struct { } type percentSlashTag struct { - V string `json:"text/html%"` // http://golang.org/issue/2718 + V string `json:"text/html%"` // https://golang.org/issue/2718 } type punctuationTag struct { - V string `json:"!#$%&()*+-./:<=>?@[]^_{|}~"` // http://golang.org/issue/3546 + V string `json:"!#$%&()*+-./:<=>?@[]^_{|}~"` // https://golang.org/issue/3546 +} + +type dashTag struct { + V string `json:"-,"` } type emptyTag struct { @@ -80,6 +84,7 @@ var structTagObjectKeyTests = []struct { {basicLatin6xTag{"6x"}, "6x", "abcdefghijklmno"}, {basicLatin7xTag{"7x"}, "7x", "pqrstuvwxyz"}, {miscPlaneTag{"いろはにほへと"}, "いろはにほへと", "色は匂へど"}, + {dashTag{"foo"}, "foo", "-"}, {emptyTag{"Pour Moi"}, "Pour Moi", "W"}, {misnamedTag{"Animal Kingdom"}, "Animal Kingdom", "X"}, {badFormatTag{"Orfevre"}, "Orfevre", "Y"}, diff --git a/cli/output/jsonw/internal/jcolorenc/json.go b/cli/output/jsonw/internal/jcolorenc/json.go new file mode 100644 index 00000000..81bd3aa6 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/json.go @@ -0,0 +1,460 @@ +package json + +import ( + "bytes" + "encoding/json" + "io" + "reflect" + "runtime" + "sync" + "unsafe" + + "github.com/neilotoole/sq/cli/output/jsonw/internal" +) + +// Delim is documented at https://golang.org/pkg/encoding/json/#Delim +type Delim = json.Delim + +// InvalidUTF8Error is documented at https://golang.org/pkg/encoding/json/#InvalidUTF8Error +type InvalidUTF8Error = json.InvalidUTF8Error + +// InvalidUnmarshalError is documented at https://golang.org/pkg/encoding/json/#InvalidUnmarshalError +type InvalidUnmarshalError = json.InvalidUnmarshalError + +// Marshaler is documented at https://golang.org/pkg/encoding/json/#Marshaler +type Marshaler = json.Marshaler + +// MarshalerError is documented at https://golang.org/pkg/encoding/json/#MarshalerError +type MarshalerError = json.MarshalerError + +// Number is documented at https://golang.org/pkg/encoding/json/#Number +type Number = json.Number + +// RawMessage is documented at https://golang.org/pkg/encoding/json/#RawMessage +type RawMessage = json.RawMessage + +// A SyntaxError is a description of a JSON syntax error. +type SyntaxError = json.SyntaxError + +// Token is documented at https://golang.org/pkg/encoding/json/#Token +type Token = json.Token + +// UnmarshalFieldError is documented at https://golang.org/pkg/encoding/json/#UnmarshalFieldError +type UnmarshalFieldError = json.UnmarshalFieldError + +// UnmarshalTypeError is documented at https://golang.org/pkg/encoding/json/#UnmarshalTypeError +type UnmarshalTypeError = json.UnmarshalTypeError + +// Unmarshaler is documented at https://golang.org/pkg/encoding/json/#Unmarshaler +type Unmarshaler = json.Unmarshaler + +// UnsupportedTypeError is documented at https://golang.org/pkg/encoding/json/#UnsupportedTypeError +type UnsupportedTypeError = json.UnsupportedTypeError + +// UnsupportedValueError is documented at https://golang.org/pkg/encoding/json/#UnsupportedValueError +type UnsupportedValueError = json.UnsupportedValueError + +// AppendFlags is a type used to represent configuration options that can be +// applied when formatting json output. +type AppendFlags int + +const ( + // EscapeHTML is a formatting flag used to to escape HTML in json strings. + EscapeHTML AppendFlags = 1 << iota + + // SortMapKeys is formatting flag used to enable sorting of map keys when + // encoding JSON (this matches the behavior of the standard encoding/json + // package). + SortMapKeys + + // TrustRawMessage is a performance optimization flag to skip value + // checking of raw messages. It should only be used if the values are + // known to be valid json (e.g., they were created by json.Unmarshal). + TrustRawMessage +) + +// ParseFlags is a type used to represent configuration options that can be +// applied when parsing json input. +type ParseFlags int + +const ( + // DisallowUnknownFields is a parsing flag used to prevent decoding of + // objects to Go struct values when a field of the input does not match + // with any of the struct fields. + DisallowUnknownFields ParseFlags = 1 << iota + + // UseNumber is a parsing flag used to load numeric values as Number + // instead of float64. + UseNumber + + // DontCopyString is a parsing flag used to provide zero-copy support when + // loading string values from a json payload. It is not always possible to + // avoid dynamic memory allocations, for example when a string is escaped in + // the json data a new buffer has to be allocated, but when the `wire` value + // can be used as content of a Go value the decoder will simply point into + // the input buffer. + DontCopyString + + // DontCopyNumber is a parsing flag used to provide zero-copy support when + // loading Number values (see DontCopyString and DontCopyRawMessage). + DontCopyNumber + + // DontCopyRawMessage is a parsing flag used to provide zero-copy support + // when loading RawMessage values from a json payload. When used, the + // RawMessage values will not be allocated into new memory buffers and + // will instead point directly to the area of the input buffer where the + // value was found. + DontCopyRawMessage + + // DontMatchCaseInsensitiveStructFields is a parsing flag used to prevent + // matching fields in a case-insensitive way. This can prevent degrading + // performance on case conversions, and can also act as a stricter decoding + // mode. + DontMatchCaseInsensitiveStructFields + + // ZeroCopy is a parsing flag that combines all the copy optimizations + // available in the package. + // + // The zero-copy optimizations are better used in request-handler style + // code where none of the values are retained after the handler returns. + ZeroCopy = DontCopyString | DontCopyNumber | DontCopyRawMessage +) + +// Append acts like Marshal but appends the json representation to b instead of +// always reallocating a new slice. +func Append(b []byte, x interface{}, flags AppendFlags, clrs internal.Colors, indenter *Indenter) ([]byte, error) { + if x == nil { + // Special case for nil values because it makes the rest of the code + // simpler to assume that it won't be seeing nil pointers. + return clrs.AppendNull(b), nil + } + + t := reflect.TypeOf(x) + p := (*iface)(unsafe.Pointer(&x)).ptr + + cache := cacheLoad() + c, found := cache[typeid(t)] + + if !found { + c = constructCachedCodec(t, cache) + } + + b, err := c.encode(encoder{flags: flags, clrs: clrs, indenter: indenter}, b, p) + runtime.KeepAlive(x) + return b, err +} + +// Compact is documented at https://golang.org/pkg/encoding/json/#Compact +func Compact(dst *bytes.Buffer, src []byte) error { + return json.Compact(dst, src) +} + +// HTMLEscape is documented at https://golang.org/pkg/encoding/json/#HTMLEscape +func HTMLEscape(dst *bytes.Buffer, src []byte) { + json.HTMLEscape(dst, src) +} + +// Indent is documented at https://golang.org/pkg/encoding/json/#Indent +func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error { + return json.Indent(dst, src, prefix, indent) +} + +// Marshal is documented at https://golang.org/pkg/encoding/json/#Marshal +func Marshal(x interface{}) ([]byte, error) { + var err error + var buf = encoderBufferPool.Get().(*encoderBuffer) + + if buf.data, err = Append(buf.data[:0], x, EscapeHTML|SortMapKeys, internal.Colors{}, nil); err != nil { + return nil, err + } + + b := make([]byte, len(buf.data)) + copy(b, buf.data) + encoderBufferPool.Put(buf) + return b, nil +} + +// MarshalIndent is documented at https://golang.org/pkg/encoding/json/#MarshalIndent +func MarshalIndent(x interface{}, prefix, indent string) ([]byte, error) { + b, err := Marshal(x) + + if err == nil { + tmp := &bytes.Buffer{} + tmp.Grow(2 * len(b)) + + Indent(tmp, b, prefix, indent) + b = tmp.Bytes() + } + + return b, err +} + +// Unmarshal is documented at https://golang.org/pkg/encoding/json/#Unmarshal +func Unmarshal(b []byte, x interface{}) error { + r, err := Parse(b, x, 0) + if len(r) != 0 { + if _, ok := err.(*SyntaxError); !ok { + // The encoding/json package prioritizes reporting errors caused by + // unexpected trailing bytes over other issues; here we emulate this + // behavior by overriding the error. + err = syntaxError(r, "invalid character '%c' after top-level value", r[0]) + } + } + return err +} + +// Parse behaves like Unmarshal but the caller can pass a set of flags to +// configure the parsing behavior. +func Parse(b []byte, x interface{}, flags ParseFlags) ([]byte, error) { + t := reflect.TypeOf(x) + p := (*iface)(unsafe.Pointer(&x)).ptr + + if t == nil || p == nil || t.Kind() != reflect.Ptr { + _, r, err := parseValue(skipSpaces(b)) + r = skipSpaces(r) + if err != nil { + return r, err + } + return r, &InvalidUnmarshalError{Type: t} + } + t = t.Elem() + + cache := cacheLoad() + c, found := cache[typeid(t)] + + if !found { + c = constructCachedCodec(t, cache) + } + + r, err := c.decode(decoder{flags: flags}, skipSpaces(b), p) + return skipSpaces(r), err +} + +// Valid is documented at https://golang.org/pkg/encoding/json/#Valid +func Valid(data []byte) bool { + _, data, err := parseValue(skipSpaces(data)) + if err != nil { + return false + } + return len(skipSpaces(data)) == 0 +} + +// Decoder is documented at https://golang.org/pkg/encoding/json/#Decoder +type Decoder struct { + reader io.Reader + buffer []byte + remain []byte + inputOffset int64 + err error + flags ParseFlags +} + +// NewDecoder is documented at https://golang.org/pkg/encoding/json/#NewDecoder +func NewDecoder(r io.Reader) *Decoder { return &Decoder{reader: r} } + +// Buffered is documented at https://golang.org/pkg/encoding/json/#Decoder.Buffered +func (dec *Decoder) Buffered() io.Reader { + return bytes.NewReader(dec.remain) +} + +// Decode is documented at https://golang.org/pkg/encoding/json/#Decoder.Decode +func (dec *Decoder) Decode(v interface{}) error { + raw, err := dec.readValue() + if err != nil { + return err + } + _, err = Parse(raw, v, dec.flags) + return err +} + +const ( + minBufferSize = 32768 + minReadSize = 4096 +) + +// readValue reads one JSON value from the buffer and returns its raw bytes. It +// is optimized for the "one JSON value per line" case. +func (dec *Decoder) readValue() (v []byte, err error) { + var n int + var r []byte + + for { + if len(dec.remain) != 0 { + v, r, err = parseValue(dec.remain) + if err == nil { + dec.remain, n = skipSpacesN(r) + dec.inputOffset += int64(len(v) + n) + return + } + if len(r) != 0 { + // Parsing of the next JSON value stopped at a position other + // than the end of the input buffer, which indicaates that a + // syntax error was encountered. + return + } + } + + if err = dec.err; err != nil { + if len(dec.remain) != 0 && err == io.EOF { + err = io.ErrUnexpectedEOF + } + return + } + + if dec.buffer == nil { + dec.buffer = make([]byte, 0, minBufferSize) + } else { + dec.buffer = dec.buffer[:copy(dec.buffer[:cap(dec.buffer)], dec.remain)] + dec.remain = nil + } + + if (cap(dec.buffer) - len(dec.buffer)) < minReadSize { + buf := make([]byte, len(dec.buffer), 2*cap(dec.buffer)) + copy(buf, dec.buffer) + dec.buffer = buf + } + + n, err = io.ReadFull(dec.reader, dec.buffer[len(dec.buffer):cap(dec.buffer)]) + if n > 0 { + dec.buffer = dec.buffer[:len(dec.buffer)+n] + if err != nil { + err = nil + } + } else if err == io.ErrUnexpectedEOF { + err = io.EOF + } + dec.remain, n = skipSpacesN(dec.buffer) + dec.inputOffset += int64(n) + dec.err = err + } +} + +// DisallowUnknownFields is documented at https://golang.org/pkg/encoding/json/#Decoder.DisallowUnknownFields +func (dec *Decoder) DisallowUnknownFields() { dec.flags |= DisallowUnknownFields } + +// UseNumber is documented at https://golang.org/pkg/encoding/json/#Decoder.UseNumber +func (dec *Decoder) UseNumber() { dec.flags |= UseNumber } + +// DontCopyString is an extension to the standard encoding/json package +// which instructs the decoder to not copy strings loaded from the json +// payloads when possible. +func (dec *Decoder) DontCopyString() { dec.flags |= DontCopyString } + +// DontCopyNumber is an extension to the standard encoding/json package +// which instructs the decoder to not copy numbers loaded from the json +// payloads. +func (dec *Decoder) DontCopyNumber() { dec.flags |= DontCopyNumber } + +// DontCopyRawMessage is an extension to the standard encoding/json package +// which instructs the decoder to not allocate RawMessage values in separate +// memory buffers (see the documentation of the DontcopyRawMessage flag for +// more detais). +func (dec *Decoder) DontCopyRawMessage() { dec.flags |= DontCopyRawMessage } + +// DontMatchCaseInsensitiveStructFields is an extension to the standard +// encoding/json package which instructs the decoder to not match object fields +// against struct fields in a case-insensitive way, the field names have to +// match exactly to be decoded into the struct field values. +func (dec *Decoder) DontMatchCaseInsensitiveStructFields() { + dec.flags |= DontMatchCaseInsensitiveStructFields +} + +// ZeroCopy is an extension to the standard encoding/json package which enables +// all the copy optimizations of the decoder. +func (dec *Decoder) ZeroCopy() { dec.flags |= ZeroCopy } + +// InputOffset returns the input stream byte offset of the current decoder position. +// The offset gives the location of the end of the most recently returned token +// and the beginning of the next token. +func (dec *Decoder) InputOffset() int64 { + return dec.inputOffset +} + +// Encoder is documented at https://golang.org/pkg/encoding/json/#Encoder +type Encoder struct { + writer io.Writer + // prefix string + // indent string + buffer *bytes.Buffer + err error + flags AppendFlags + clrs internal.Colors + indenter *Indenter +} + +// NewEncoder is documented at https://golang.org/pkg/encoding/json/#NewEncoder +func NewEncoder(w io.Writer) *Encoder { return &Encoder{writer: w, flags: EscapeHTML | SortMapKeys} } + +// SetColors sets the colors for the encoder to use. +func (enc *Encoder) SetColors(c internal.Colors) { + enc.clrs = c +} + +// Encode is documented at https://golang.org/pkg/encoding/json/#Encoder.Encode +func (enc *Encoder) Encode(v interface{}) error { + if enc.err != nil { + return enc.err + } + + var err error + var buf = encoderBufferPool.Get().(*encoderBuffer) + + // Note: unlike the original segmentio encoder, indentation is + // performed via the Append function. + buf.data, err = Append(buf.data[:0], v, enc.flags, enc.clrs, enc.indenter) + if err != nil { + encoderBufferPool.Put(buf) + return err + } + + buf.data = append(buf.data, '\n') + b := buf.data + + if _, err := enc.writer.Write(b); err != nil { + enc.err = err + } + + encoderBufferPool.Put(buf) + return err +} + +// SetEscapeHTML is documented at https://golang.org/pkg/encoding/json/#Encoder.SetEscapeHTML +func (enc *Encoder) SetEscapeHTML(on bool) { + if on { + enc.flags |= EscapeHTML + } else { + enc.flags &= ^EscapeHTML + } +} + +// SetIndent is documented at https://golang.org/pkg/encoding/json/#Encoder.SetIndent +func (enc *Encoder) SetIndent(prefix, indent string) { + enc.indenter = NewIndenter(prefix, indent) +} + +// SetSortMapKeys is an extension to the standard encoding/json package which +// allows the program to toggle sorting of map keys on and off. +func (enc *Encoder) SetSortMapKeys(on bool) { + if on { + enc.flags |= SortMapKeys + } else { + enc.flags &= ^SortMapKeys + } +} + +// SetTrustRawMessage skips value checking when encoding a raw json message. It should only +// be used if the values are known to be valid json, e.g. because they were originally created +// by json.Unmarshal. +func (enc *Encoder) SetTrustRawMessage(on bool) { + if on { + enc.flags |= TrustRawMessage + } else { + enc.flags &= ^TrustRawMessage + } +} + +var encoderBufferPool = sync.Pool{ + New: func() interface{} { return &encoderBuffer{data: make([]byte, 0, 4096)} }, +} + +type encoderBuffer struct{ data []byte } diff --git a/cli/output/jsonw/internal/jcolorenc/json_test.go b/cli/output/jsonw/internal/jcolorenc/json_test.go new file mode 100644 index 00000000..2a7a7e27 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/json_test.go @@ -0,0 +1,1584 @@ +package json + +import ( + "bytes" + "compress/gzip" + "encoding" + "encoding/json" + "errors" + "flag" + "fmt" + "io" + "io/ioutil" + "math" + "os" + "path/filepath" + "reflect" + "runtime" + "strconv" + "strings" + "testing" + "time" + + "github.com/neilotoole/sq/cli/output/jsonw/internal" +) + +// The encoding/json package does not export the msg field of json.SyntaxError, +// so we use this replacement type in tests. +type testSyntaxError struct { + msg string + Offset int64 +} + +func (e *testSyntaxError) Error() string { return e.msg } + +var ( + marshal func([]byte, interface{}) ([]byte, error) + unmarshal func([]byte, interface{}) error + escapeHTML bool +) + +func TestMain(m *testing.M) { + var pkg string + flag.StringVar(&pkg, "package", ".", "The name of the package to test (encoding/json, or default to this package)") + flag.BoolVar(&escapeHTML, "escapehtml", false, "Whether to enable HTML escaping or not") + flag.Parse() + + switch pkg { + case "encoding/json": + buf := &buffer{} + enc := json.NewEncoder(buf) + enc.SetEscapeHTML(escapeHTML) + + marshal = func(b []byte, v interface{}) ([]byte, error) { + buf.data = b + err := enc.Encode(v) + return buf.data, err + } + + unmarshal = json.Unmarshal + + default: + flags := AppendFlags(0) + if escapeHTML { + flags |= EscapeHTML + } + + marshal = func(b []byte, v interface{}) ([]byte, error) { + return Append(b, v, flags, internal.Colors{}, nil) + } + + unmarshal = func(b []byte, v interface{}) error { + _, err := Parse(b, v, ZeroCopy) + return err + } + } + + os.Exit(m.Run()) +} + +type point struct { + X int `json:"x"` + Y int `json:"y"` +} + +type tree struct { + Value string + Left *tree + Right *tree +} + +var testValues = [...]interface{}{ + // constants + nil, + false, + true, + + // int + int(0), + int(1), + int(42), + int(-1), + int(-42), + int8(math.MaxInt8), + int8(math.MinInt8), + int16(math.MaxInt16), + int16(math.MinInt16), + int32(math.MaxInt32), + int32(math.MinInt32), + int64(math.MaxInt64), + int64(math.MinInt64), + + // uint + uint(0), + uint(1), + uintptr(0), + uintptr(1), + uint8(math.MaxUint8), + uint16(math.MaxUint16), + uint32(math.MaxUint32), + uint64(math.MaxUint64), + + // float + float32(0), + float32(0.5), + float32(math.SmallestNonzeroFloat32), + float32(math.MaxFloat32), + float64(0), + float64(0.5), + float64(math.SmallestNonzeroFloat64), + float64(math.MaxFloat64), + + // number + Number("0"), + Number("1234567890"), + Number("-0.5"), + Number("-1e+2"), + + // string + "", + "Hello World!", + "Hello\"World!", + "Hello\\World!", + "Hello\nWorld!", + "Hello\rWorld!", + "Hello\tWorld!", + "Hello\bWorld!", + "Hello\fWorld!", + "你好", + "<", + ">", + "&", + "\u001944", + "\u00c2e>", + "\u00c2V?", + "\u000e=8", + "\u001944\u00c2e>\u00c2V?\u000e=8", + "ir\u001bQJ\u007f\u0007y\u0015)", + strings.Repeat("A", 32), + strings.Repeat("A", 250), + strings.Repeat("A", 1020), + + // bytes + []byte(""), + []byte("Hello World!"), + bytes.Repeat([]byte("A"), 250), + bytes.Repeat([]byte("A"), 1020), + + // time + time.Unix(0, 0).In(time.UTC), + time.Unix(1, 42).In(time.UTC), + time.Unix(17179869184, 999999999).In(time.UTC), + time.Date(2016, 12, 20, 0, 20, 1, 0, time.UTC), + + // array + [...]int{}, + [...]int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, + + // slice + []int{}, + []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}, + makeSlice(250), + makeSlice(1020), + []string{"A", "B", "C"}, + []interface{}{nil, true, false, 0.5, "Hello World!"}, + + // map + makeMapStringBool(0), + makeMapStringBool(15), + makeMapStringBool(1020), + makeMapStringInterface(0), + makeMapStringInterface(15), + makeMapStringInterface(1020), + map[int]bool{1: false, 42: true}, + map[textValue]bool{{1, 2}: true, {3, 4}: false}, + map[string]*point{ + "A": {1, 2}, + "B": {3, 4}, + "C": {5, 6}, + }, + map[string]RawMessage{ + "A": RawMessage(`{}`), + "B": RawMessage(`null`), + "C": RawMessage(`42`), + }, + + // struct + struct{}{}, + struct{ A int }{42}, + struct{ A, B, C int }{1, 2, 3}, + struct { + A int + T time.Time + S string + }{42, time.Date(2016, 12, 20, 0, 20, 1, 0, time.UTC), "Hello World!"}, + // These types are interesting because they fit in a pointer so the compiler + // puts their value directly into the pointer field of the interface{} that + // is passed to Marshal. + struct{ X *int }{}, + struct{ X *int }{new(int)}, + struct{ X **int }{}, + // Struct types with more than one pointer, those exercise the regular + // pointer handling with code that dereferences the fields. + struct{ X, Y *int }{}, + struct{ X, Y *int }{new(int), new(int)}, + struct { + A string `json:"name"` + B string `json:"-"` + C string `json:",omitempty"` + D map[string]interface{} `json:",string"` + e string + }{A: "Luke", D: map[string]interface{}{"answer": float64(42)}}, + struct{ point }{point{1, 2}}, + tree{ + Value: "T", + Left: &tree{Value: "L"}, + Right: &tree{Value: "R", Left: &tree{Value: "R-L"}}, + }, + + // pointer + (*string)(nil), + new(int), + + // Marshaler/Unmarshaler + jsonValue{}, + jsonValue{1, 2}, + + // encoding.TextMarshaler/encoding.TextUnmarshaler + textValue{}, + textValue{1, 2}, + + // RawMessage + RawMessage(`{ + "answer": 42, + "hello": "world" +}`), + + // fixtures + loadTestdata(filepath.Join(runtime.GOROOT(), "src/encoding/json/testdata/code.json.gz")), +} + +var durationTestValues = []interface{}{ + // duration + time.Nanosecond, + time.Microsecond, + time.Millisecond, + time.Second, + time.Minute, + time.Hour, + + // struct with duration + struct{ D1, D2 time.Duration }{time.Millisecond, time.Hour}, +} + +func makeSlice(n int) []int { + s := make([]int, n) + for i := range s { + s[i] = i + } + return s +} + +func makeMapStringBool(n int) map[string]bool { + m := make(map[string]bool, n) + for i := 0; i != n; i++ { + m[strconv.Itoa(i)] = true + } + return m +} + +func makeMapStringInterface(n int) map[string]interface{} { + m := make(map[string]interface{}, n) + for i := 0; i != n; i++ { + m[strconv.Itoa(i)] = nil + } + return m +} + +func testName(v interface{}) string { + return fmt.Sprintf("%T", v) +} + +type codeResponse2 struct { + Tree *codeNode2 `json:"tree"` + Username string `json:"username"` +} + +type codeNode2 struct { + Name string `json:"name"` + Kids []*codeNode `json:"kids"` + CLWeight float64 `json:"cl_weight"` + Touches int `json:"touches"` + MinT int64 `json:"min_t"` + MaxT int64 `json:"max_t"` + MeanT int64 `json:"mean_t"` +} + +func loadTestdata(path string) interface{} { + f, err := os.Open(path) + if err != nil { + return err.Error() + } + defer f.Close() + + r, err := gzip.NewReader(f) + if err != nil { + return err.Error() + } + defer r.Close() + + testdata := new(codeResponse2) + if err := json.NewDecoder(r).Decode(testdata); err != nil { + return err.Error() + } + return testdata +} + +func TestCodec(t *testing.T) { + for _, v1 := range testValues { + t.Run(testName(v1), func(t *testing.T) { + v2 := newValue(v1) + + a, err := json.MarshalIndent(v1, "", "\t") + if err != nil { + t.Error(err) + return + } + a = append(a, '\n') + + buf := &bytes.Buffer{} + enc := NewEncoder(buf) + enc.SetIndent("", "\t") + + if err := enc.Encode(v1); err != nil { + t.Error(err) + return + } + b := buf.Bytes() + + if !Valid(b) { + t.Error("invalid JSON representation") + } + + if !bytes.Equal(a, b) { + t.Error("JSON representations mismatch") + t.Log("expected:", string(a)) + t.Log("found: ", string(b)) + } + + dec := NewDecoder(bytes.NewBuffer(b)) + + if err := dec.Decode(v2.Interface()); err != nil { + t.Errorf("%T: %v", err, err) + return + } + + x1 := v1 + x2 := v2.Elem().Interface() + + if !reflect.DeepEqual(x1, x2) { + t.Error("values mismatch") + t.Logf("expected: %#v", x1) + t.Logf("found: %#v", x2) + } + + if b, err := ioutil.ReadAll(dec.Buffered()); err != nil { + t.Error(err) + } else if len(b) != 0 { + t.Errorf("leftover trailing bytes in the decoder: %q", b) + } + }) + } +} + +// TestCodecDuration isolates testing of time.Duration. The stdlib un/marshals +// this type as integers whereas this library un/marshals formatted string +// values. Therefore, plugging durations into TestCodec would cause fail since +// it checks equality on the marshaled strings from the two libraries. +func TestCodecDuration(t *testing.T) { + for _, v1 := range durationTestValues { + t.Run(testName(v1), func(t *testing.T) { + v2 := newValue(v1) + + // encode using stdlib. (will be an int) + std, err := json.MarshalIndent(v1, "", "\t") + if err != nil { + t.Error(err) + return + } + std = append(std, '\n') + + // decode using our decoder. (reads int to duration) + dec := NewDecoder(bytes.NewBuffer([]byte(std))) + + if err := dec.Decode(v2.Interface()); err != nil { + t.Errorf("%T: %v", err, err) + return + } + + x1 := v1 + x2 := v2.Elem().Interface() + + if !reflect.DeepEqual(x1, x2) { + t.Error("values mismatch") + t.Logf("expected: %#v", x1) + t.Logf("found: %#v", x2) + } + + // encoding using our encoder. (writes duration as string) + buf := &bytes.Buffer{} + enc := NewEncoder(buf) + enc.SetIndent("", "\t") + + if err := enc.Encode(v1); err != nil { + t.Error(err) + return + } + b := buf.Bytes() + + if !Valid(b) { + t.Error("invalid JSON representation") + } + + if reflect.DeepEqual(std, b) { + t.Error("encoded durations should not match stdlib") + t.Logf("got: %s", b) + } + + // decode using our decoder. (reads string to duration) + dec = NewDecoder(bytes.NewBuffer([]byte(std))) + + if err := dec.Decode(v2.Interface()); err != nil { + t.Errorf("%T: %v", err, err) + return + } + + x1 = v1 + x2 = v2.Elem().Interface() + + if !reflect.DeepEqual(x1, x2) { + t.Error("values mismatch") + t.Logf("expected: %#v", x1) + t.Logf("found: %#v", x2) + } + }) + } +} + +func newValue(model interface{}) reflect.Value { + if model == nil { + return reflect.New(reflect.TypeOf(&model).Elem()) + } + return reflect.New(reflect.TypeOf(model)) +} + +func BenchmarkMarshal(b *testing.B) { + j := make([]byte, 0, 128*1024) + + for _, v := range testValues { + b.Run(testName(v), func(b *testing.B) { + if marshal == nil { + return + } + + for i := 0; i != b.N; i++ { + j, _ = marshal(j[:0], v) + } + + b.SetBytes(int64(len(j))) + }) + } +} + +func BenchmarkUnmarshal(b *testing.B) { + for _, v := range testValues { + b.Run(testName(v), func(b *testing.B) { + if unmarshal == nil { + return + } + + x := v + if d, ok := x.(time.Duration); ok { + x = duration(d) + } + + j, _ := json.Marshal(x) + x = newValue(v).Interface() + + for i := 0; i != b.N; i++ { + unmarshal(j, x) + } + + b.SetBytes(int64(len(j))) + }) + } +} + +type buffer struct{ data []byte } + +func (buf *buffer) Write(b []byte) (int, error) { + buf.data = append(buf.data, b...) + return len(b), nil +} + +func (buf *buffer) WriteString(s string) (int, error) { + buf.data = append(buf.data, s...) + return len(s), nil +} + +type jsonValue struct { + x int32 + y int32 +} + +func (v jsonValue) MarshalJSON() ([]byte, error) { + return Marshal([2]int32{v.x, v.y}) +} + +func (v *jsonValue) UnmarshalJSON(b []byte) error { + var a [2]int32 + err := Unmarshal(b, &a) + v.x = a[0] + v.y = a[1] + return err +} + +type textValue struct { + x int32 + y int32 +} + +func (v textValue) MarshalText() ([]byte, error) { + return []byte(fmt.Sprintf("(%d,%d)", v.x, v.y)), nil +} + +func (v *textValue) UnmarshalText(b []byte) error { + _, err := fmt.Sscanf(string(b), "(%d,%d)", &v.x, &v.y) + return err +} + +type duration time.Duration + +func (d duration) MarshalJSON() ([]byte, error) { + return []byte(`"` + time.Duration(d).String() + `"`), nil +} + +func (d *duration) UnmarshalJSON(b []byte) error { + var s string + if err := json.Unmarshal(b, &s); err != nil { + return err + } + x, err := time.ParseDuration(s) + *d = duration(x) + return err +} + +var ( + _ Marshaler = jsonValue{} + _ Marshaler = duration(0) + + _ encoding.TextMarshaler = textValue{} + + _ Unmarshaler = (*jsonValue)(nil) + _ Unmarshaler = (*duration)(nil) + + _ encoding.TextUnmarshaler = (*textValue)(nil) +) + +func TestDecodeStructFieldCaseInsensitive(t *testing.T) { + b := []byte(`{ "type": "changed" }`) + s := struct { + Type string + }{"unchanged"} + + if err := Unmarshal(b, &s); err != nil { + t.Error(err) + } + + if s.Type != "changed" { + t.Error("s.Type: expected to be changed but found", s.Type) + } +} + +func TestDecodeLines(t *testing.T) { + tests := []struct { + desc string + reader io.Reader + expectCount int + }{ + + // simple + + { + desc: "bare object", + reader: strings.NewReader("{\"Good\":true}"), + expectCount: 1, + }, + { + desc: "multiple objects on one line", + reader: strings.NewReader("{\"Good\":true}{\"Good\":true}\n"), + expectCount: 2, + }, + { + desc: "object spanning multiple lines", + reader: strings.NewReader("{\n\"Good\":true\n}\n"), + expectCount: 1, + }, + + // whitespace handling + + { + desc: "trailing newline", + reader: strings.NewReader("{\"Good\":true}\n{\"Good\":true}\n"), + expectCount: 2, + }, + { + desc: "multiple trailing newlines", + reader: strings.NewReader("{\"Good\":true}\n{\"Good\":true}\n\n"), + expectCount: 2, + }, + { + desc: "blank lines", + reader: strings.NewReader("{\"Good\":true}\n\n{\"Good\":true}"), + expectCount: 2, + }, + { + desc: "no trailing newline", + reader: strings.NewReader("{\"Good\":true}\n{\"Good\":true}"), + expectCount: 2, + }, + { + desc: "leading whitespace", + reader: strings.NewReader(" {\"Good\":true}\n\t{\"Good\":true}"), + expectCount: 2, + }, + + // multiple reads + + { + desc: "one object, multiple reads", + reader: io.MultiReader( + strings.NewReader("{"), + strings.NewReader("\"Good\": true"), + strings.NewReader("}\n"), + ), + expectCount: 1, + }, + + // EOF reads + + { + desc: "one object + EOF", + reader: &eofReader{"{\"Good\":true}\n"}, + expectCount: 1, + }, + { + desc: "leading whitespace + EOF", + reader: &eofReader{"\n{\"Good\":true}\n"}, + expectCount: 1, + }, + { + desc: "multiple objects + EOF", + reader: &eofReader{"{\"Good\":true}\n{\"Good\":true}\n"}, + expectCount: 2, + }, + { + desc: "one object + multiple reads + EOF", + reader: io.MultiReader( + strings.NewReader("{"), + strings.NewReader(" \"Good\": true"), + &eofReader{"}\n"}, + ), + expectCount: 1, + }, + { + desc: "multiple objects + multiple reads + EOF", + reader: io.MultiReader( + strings.NewReader("{"), + strings.NewReader(" \"Good\": true}{\"Good\": true}"), + &eofReader{"\n"}, + ), + expectCount: 2, + }, + + { + // the 2nd object should be discarded, as 42 cannot be cast to bool + desc: "unmarshal error while decoding", + reader: strings.NewReader("{\"Good\":true}\n{\"Good\":42}\n{\"Good\":true}\n"), + expectCount: 2, + }, + { + // the 2nd object should be discarded, as 42 cannot be cast to bool + desc: "unmarshal error while decoding last object", + reader: strings.NewReader("{\"Good\":true}\n{\"Good\":42}\n"), + expectCount: 1, + }, + } + + type obj struct { + Good bool + } + + for _, test := range tests { + t.Run(test.desc, func(t *testing.T) { + d := NewDecoder(test.reader) + var count int + var err error + for { + var o obj + err = d.Decode(&o) + if err != nil { + if err == io.EOF { + break + } + + switch err.(type) { + case *SyntaxError, *UnmarshalTypeError, *UnmarshalFieldError: + t.Log("unmarshal error", err) + continue + } + + t.Error("decode error", err) + break + } + if !o.Good { + t.Errorf("object was not unmarshaled correctly: %#v", o) + } + count++ + } + + if err != nil && err != io.EOF { + t.Error(err) + } + + if count != test.expectCount { + t.Errorf("expected %d objects, got %d", test.expectCount, count) + } + }) + } +} + +// eofReader is a simple io.Reader that reads its full contents _and_ returns +// and EOF in the first call. Subsequent Read calls only return EOF. +type eofReader struct { + s string +} + +func (r *eofReader) Read(p []byte) (n int, err error) { + n = copy(p, r.s) + r.s = r.s[n:] + if r.s == "" { + err = io.EOF + } + return +} + +func TestDontMatchCaseIncensitiveStructFields(t *testing.T) { + b := []byte(`{ "type": "changed" }`) + s := struct { + Type string + }{"unchanged"} + + if _, err := Parse(b, &s, DontMatchCaseInsensitiveStructFields); err != nil { + t.Error(err) + } + + if s.Type != "unchanged" { + t.Error("s.Type: expected to be unchanged but found", s.Type) + } +} + +func TestMarshalFuzzBugs(t *testing.T) { + tests := []struct { + value interface{} + output string + }{ + { // html sequences are escaped even in RawMessage + value: struct { + P RawMessage + }{P: RawMessage(`"<"`)}, + output: "{\"P\":\"\\u003c\"}", + }, + { // raw message output is compacted + value: struct { + P RawMessage + }{P: RawMessage(`{"" :{}}`)}, + output: "{\"P\":{\"\":{}}}", + }, + } + + for _, test := range tests { + t.Run("", func(t *testing.T) { + b, err := Marshal(test.value) + if err != nil { + t.Fatal(err) + } + + if string(b) != test.output { + t.Error("values mismatch") + t.Logf("expected: %#v", test.output) + t.Logf("found: %#v", string(b)) + } + }) + } +} + +func TestUnmarshalFuzzBugs(t *testing.T) { + tests := []struct { + input string + value interface{} + }{ + { // non-UTF8 sequences must be converted to the utf8.RuneError character. + input: "[\"00000\xef\"]", + value: []interface{}{"00000�"}, + }, + { // UTF16 surrogate followed by null character + input: "[\"\\ud800\\u0000\"]", + value: []interface{}{"�\x00"}, + }, + { // UTF16 surrogate followed by ascii character + input: "[\"\\uDF00\\u000e\"]", + value: []interface{}{"�\x0e"}, + }, + { // UTF16 surrogate followed by unicode character + input: "[[\"\\uDF00\\u0800\"]]", + value: []interface{}{[]interface{}{"�ࠀ"}}, + }, + { // invalid UTF16 surrogate sequenced followed by a valid UTF16 surrogate sequence + input: "[\"\\udf00\\udb00\\udf00\"]", + value: []interface{}{"�\U000d0300"}, + }, + { // decode single-element slice into []byte field + input: "{\"f\":[0],\"0\":[0]}", + value: struct{ F []byte }{F: []byte{0}}, + }, + { // decode multi-element slice into []byte field + input: "{\"F\":[3,1,1,1,9,9]}", + value: struct{ F []byte }{F: []byte{3, 1, 1, 1, 9, 9}}, + }, + { // decode string with escape sequence into []byte field + input: "{\"F\":\"0p00\\r\"}", + value: struct{ F []byte }{F: []byte("ҝ4")}, + }, + { // decode unicode code points which fold into ascii characters + input: "{\"ſ\":\"8\"}", + value: struct { + S int `json:",string"` + }{S: 8}, + }, + { // decode unicode code points which don't fold into ascii characters + input: "{\"İ\":\"\"}", + value: struct{ I map[string]string }{I: nil}, + }, + { // override pointer-to-pointer field clears the inner pointer only + input: "{\"o\":0,\"o\":null}", + value: struct{ O **int }{O: new(*int)}, + }, + { // subsequent occurrences of a map field retain keys previously loaded + input: "{\"i\":{\"\":null},\"i\":{}}", + value: struct{ I map[string]string }{I: map[string]string{"": ""}}, + }, + { // an empty string is an invalid JSON input + input: "", + }, + { // ASCII character below 0x20 are invalid JSON input + input: "[\"\b\"]", + }, + { // random byte before any value + input: "\xad", + }, + { // cloud be the beginning of a false value but not + input: "f", + value: false, + }, + { // random ASCII character + input: "}", + value: []interface{}{}, + }, + { // random byte after valid JSON, decoded to a nil type + input: "0\x93", + }, + { // random byte after valid JSON, decoded to a int type + input: "0\x93", + value: 0, + }, + { // random byte after valid JSON, decoded to a slice type + input: "0\x93", + value: []interface{}{}, + }, + { // decode integer into slice + input: "0", + value: []interface{}{}, + }, + { // decode integer with trailing space into slice + input: "0\t", + value: []interface{}{}, + }, + { // decode integer with leading random bytes into slice + input: "\b0", + value: []interface{}{}, + }, + { // decode string into slice followed by number + input: "\"\"0", + value: []interface{}{}, + }, + { // decode what looks like an object followed by a number into a string + input: "{0", + value: "", + }, + { // decode what looks like an object followed by a number into a map + input: "{0", + value: map[string]string{}, + }, + { // decode string into string with trailing random byte + input: "\"\"\f", + value: "", + }, + { // decode weird number value into nil + input: "-00", + }, + { // decode an invalid escaped sequence + input: "\"\\0\"", + value: "", + }, + { // decode what looks like an array followed by a number into a slice + input: "[9E600", + value: []interface{}{}, + }, + { // decode a number which is too large to fit in a float64 + input: "[1e900]", + value: []interface{}{}, + }, + { // many nested arrays openings + input: "[[[[[[", + value: []interface{}{}, + }, + { // decode a map with value type mismatch and missing closing character + input: "{\"\":0", + value: map[string]string{}, + }, + { // decode a struct with value type mismatch and missing closing character + input: "{\"E\":\"\"", + value: struct{ E uint8 }{}, + }, + { // decode a map with value type mismatch + input: "{\"\":0}", + value: map[string]string{}, + }, + { // decode number with exponent into integer field + input: "{\"e\":0e0}", + value: struct{ E uint8 }{}, + }, + { // decode invalid integer representation into integer field + input: "{\"e\":00}", + value: struct{ E uint8 }{}, + }, + { // decode unterminated array into byte slice + input: "{\"F\":[", + value: struct{ F []byte }{}, + }, + { // attempt to decode string into in + input: "{\"S\":\"\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode object with null key into map + input: "{null:0}", + value: map[string]interface{}{}, + }, + { // decode unquoted integer into struct field with string tag + input: "{\"S\":0}", + value: struct { + S int `json:",string"` + }{}, + }, + { // invalid base64 content when decoding string into byte slice + input: "{\"F\":\"0\"}", + value: struct{ F []byte }{}, + }, + { // decode an object with a "null" string as key + input: "{\"null\":null}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode an invalid floating point number representation into an integer field with string tag + input: "{\"s\":8e800}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode a string with leading zeroes into an integer field with string tag + input: "{\"S\":\"00\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode a string with invalid leading sign and zeroes into an integer field with string tag + input: "{\"S\":\"+00\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode a string with valid leading sign and zeroes into an integer field with string tag + input: "{\"S\":\"-00\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode non-ascii string into integer field with string tag + input: "{\"ſ\":\"\xbf\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode a valid floating point number representation into an integer field with string tag + input: "{\"S\":0.0}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode string with invalid leading sign to integer field with string tag + input: "{\"S\":\"+0\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode string with valid leading sign to integer field with string tag + input: "{\"S\":\"-0\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode string with object representation to integer field with string tag + input: "{\"s\":{}}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decoding integer with leading zeroes + input: "{\"o\":00}", + value: struct{ O **int }{}, + }, + { // codeding string with invalid float representation into integer field with string tag + input: "{\"s\":\"0.\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // malformed negative integer in object value + input: "{\"N\":-00}", + value: struct{ N *int }{}, + }, + { // integer overflow + input: "{\"a\":9223372036854775808}", + value: struct { + A int `json:",omitempty"` + }{}, + }, + { // decode string with number followed by random byte into integer field with string tag + input: "{\"s\":\"0]\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode object into integer field + input: "{\"n\":{}}", + value: struct{ N *int }{}, + }, + { // decode negative integer into unsigned type + input: "{\"E\":-0}", + value: struct{ E uint8 }{}, + }, + { // decode string with number followed by random byte into integer field with string tag + input: "{\"s\":\"03�\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode string with leading zeroes into integer field with string tag + input: "{\"s\":\"03\"}", + value: struct { + S int `json:",string"` + }{S: 3}, + }, + { // decode string containing what looks like an object into integer field with string tag + input: "{\"S\":\"{}\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode an empty string followed by the same field with a null value into a byte slice + input: "{\"F\":\"\",\"F\":null}", + value: struct{ F []byte }{}, + }, + { // decode string containing a float into an integer field with string tag + input: "{\"S\":\"0e0\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode string with negative sign into a an integer field with string tag + input: "{\"s\":\"-\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode string with positive sign into a an integer field with string tag + input: "{\"s\":\"+\"}", + value: struct { + S int `json:",string"` + }{}, + }, + { // decode an integer into a json unmarshaler + input: "{\"q\":0}", + value: struct { + Q testMarshaller + }{}, + }, + // This test fails because it appears that the encoding/json package + // will decode "q" before "s", so it returns an error about "q" being of + // the wrong type while this package will prase object keys in the order + // that they appear in the JSON input, so it detects the error from "s" + // first. + // + //{ + // input: "{\"s\":0,\"q\":0}", + // value: struct { + // Q testMarshaller + // S int `json:",string"` + // }{}, + //}, + } + + for _, test := range tests { + t.Run("", func(t *testing.T) { + var ptr1 interface{} + var ptr2 interface{} + + if test.value != nil { + ptr1 = reflect.New(reflect.TypeOf(test.value)).Interface() + ptr2 = reflect.New(reflect.TypeOf(test.value)).Interface() + } + + err1 := json.Unmarshal([]byte(test.input), ptr1) + err2 := Unmarshal([]byte(test.input), ptr2) + + if reflect.TypeOf(err1) != reflect.TypeOf(err2) { + t.Error("errors mismatch") + t.Logf("expected: %T: %v", err1, err1) + t.Logf("found: %T: %v", err2, err2) + } else if err1 == nil && test.value != nil { + if value := reflect.ValueOf(ptr2).Elem().Interface(); !reflect.DeepEqual(test.value, value) { + t.Error("values mismatch") + t.Logf("expected: %#v", test.value) + t.Logf("found: %#v", value) + } + } + }) + } +} + +func BenchmarkEasyjsonUnmarshalSmallStruct(b *testing.B) { + type Hashtag struct { + Indices []int `json:"indices"` + Text string `json:"text"` + } + + //easyjson:json + type Entities struct { + Hashtags []Hashtag `json:"hashtags"` + Urls []*string `json:"urls"` + UserMentions []*string `json:"user_mentions"` + } + + var json = []byte(`{"hashtags":[{"indices":[5, 10],"text":"some-text"}],"urls":[],"user_mentions":[]}`) + + for i := 0; i < b.N; i++ { + var value Entities + if err := Unmarshal(json, &value); err != nil { + b.Fatal(err) + } + } +} + +type testMarshaller struct { + v string +} + +func (m *testMarshaller) MarshalJSON() ([]byte, error) { + return Marshal(m.v) +} + +func (m *testMarshaller) UnmarshalJSON(data []byte) error { + return Unmarshal(data, &m.v) +} + +func TestGithubIssue11(t *testing.T) { + // https://github.com/segmentio/encoding/issues/11 + v := struct{ F float64 }{ + F: math.NaN(), + } + + _, err := Marshal(v) + if err == nil { + t.Error("no error returned when marshalling NaN value") + } else if s := err.Error(); !strings.Contains(s, "NaN") { + t.Error("error returned when marshalling NaN value does not mention 'NaN':", s) + } else { + t.Log(s) + } +} + +type Issue13 struct { + Stringer fmt.Stringer + Field int `json:"MyInt"` +} + +type S string + +func (s S) String() string { return string(s) } + +func TestGithubIssue13(t *testing.T) { + // https://github.com/segmentio/encoding/issues/13 + v := Issue13{} + + b, err := Marshal(v) + if err != nil { + t.Error("unexpected errror:", err) + } else { + t.Log(string(b)) + } + + v = Issue13{Stringer: S("")} + if err := Unmarshal([]byte(`{"Stringer":null}`), &v); err != nil { + t.Error("unexpected error:", err) + } + if v.Stringer != nil { + t.Error("Stringer field was not overwritten") + } + + v = Issue13{} + if err := Unmarshal([]byte(`{"Stringer":"whatever"}`), &v); err == nil { + t.Error("expected error but decoding string value into nil fmt.Stringer but got ") + } + + v = Issue13{Stringer: S("")} + if err := Unmarshal([]byte(`{"Stringer":"whatever"}`), &v); err == nil { + t.Error("expected error but decoding string value into non-pointer fmt.Stringer but got ") + } + + s := S("") + v = Issue13{Stringer: &s} + if err := Unmarshal([]byte(`{"Stringer":"whatever"}`), &v); err != nil { + t.Error("unexpected error decoding string value into pointer fmt.Stringer:", err) + } +} + +func TestGithubIssue15(t *testing.T) { + // https://github.com/segmentio/encoding/issues/15 + tests := []struct { + m interface{} + s string + }{ + { + m: map[uint]bool{1: true, 123: true, 333: true, 42: true}, + s: `{"1":true,"123":true,"333":true,"42":true}`, + }, + { + m: map[int]bool{-1: true, -123: true, 333: true, 42: true}, + s: `{"-1":true,"-123":true,"333":true,"42":true}`, + }, + } + + for _, test := range tests { + b, _ := Marshal(test.m) + + if string(b) != test.s { + t.Error("map with integer keys must be ordered by their string representation, got", string(b)) + } + + } +} + +type sliceA []byte + +func (sliceA) MarshalJSON() ([]byte, error) { + return []byte(`"A"`), nil +} + +type sliceB []byte + +func (sliceB) MarshalText() ([]byte, error) { + return []byte("B"), nil +} + +type mapA map[string]string + +func (mapA) MarshalJSON() ([]byte, error) { + return []byte(`"A"`), nil +} + +type mapB map[string]string + +func (mapB) MarshalText() ([]byte, error) { + return []byte("B"), nil +} + +type intPtrA int + +func (*intPtrA) MarshalJSON() ([]byte, error) { + return []byte(`"A"`), nil +} + +type intPtrB int + +func (*intPtrB) MarshalText() ([]byte, error) { + return []byte("B"), nil +} + +type structA struct{ I intPtrA } +type structB struct{ I intPtrB } +type structC struct{ M Marshaler } +type structD struct{ M encoding.TextMarshaler } + +func TestGithubIssue16(t *testing.T) { + // https://github.com/segmentio/encoding/issues/16 + tests := []struct { + value interface{} + output string + }{ + {value: sliceA(nil), output: `"A"`}, + {value: sliceB(nil), output: `"B"`}, + {value: mapA(nil), output: `"A"`}, + {value: mapB(nil), output: `"B"`}, + {value: intPtrA(1), output: `1`}, + {value: intPtrB(2), output: `2`}, + {value: new(intPtrA), output: `"A"`}, + {value: new(intPtrB), output: `"B"`}, + {value: (*intPtrA)(nil), output: `null`}, + {value: (*intPtrB)(nil), output: `null`}, + {value: structA{I: 1}, output: `{"I":1}`}, + {value: structB{I: 2}, output: `{"I":2}`}, + {value: structC{}, output: `{"M":null}`}, + {value: structD{}, output: `{"M":null}`}, + {value: &structA{I: 1}, output: `{"I":"A"}`}, + {value: &structB{I: 2}, output: `{"I":"B"}`}, + {value: &structC{}, output: `{"M":null}`}, + {value: &structD{}, output: `{"M":null}`}, + } + + for _, test := range tests { + t.Run(fmt.Sprintf("%T", test.value), func(t *testing.T) { + if b, _ := Marshal(test.value); string(b) != test.output { + t.Errorf(`%s != %s`, string(b), test.output) + } + }) + } +} + +func TestDecoderInputOffset(t *testing.T) { + checkOffset := func(o, expected int64) { + if o != expected { + t.Error("unexpected input offset", o, expected) + } + } + + b := []byte(`{"userId": "blah"}{"userId": "blah"} + {"userId": "blah"}{"num": 0}`) + d := NewDecoder(bytes.NewReader(b)) + + var expected int64 + checkOffset(d.InputOffset(), expected) + + var a struct { + UserId string `json:"userId"` + } + + if err := d.Decode(&a); err != nil { + t.Error("unexpected decode error", err) + } + expected = int64(18) + checkOffset(d.InputOffset(), expected) + + if err := d.Decode(&a); err != nil { + t.Error("unexpected decode error", err) + } + expected = int64(38) + checkOffset(d.InputOffset(), expected) + + if err := d.Decode(&a); err != nil { + t.Error("unexpected decode error", err) + } + expected = int64(56) + checkOffset(d.InputOffset(), expected) + + var z struct { + Num int64 `json:"num"` + } + if err := d.Decode(&z); err != nil { + t.Error("unexpected decode error", err) + } + expected = int64(66) + checkOffset(d.InputOffset(), expected) +} + +func TestGithubIssue18(t *testing.T) { + // https://github.com/segmentio/encoding/issues/18 + b := []byte(`{ + "userId": "blah", + }`) + + d := NewDecoder(bytes.NewReader(b)) + + var a struct { + UserId string `json:"userId"` + } + switch err := d.Decode(&a).(type) { + case *SyntaxError: + default: + t.Error("expected syntax error but found:", err) + } + + for i := 1; i <= 18; i++ { // up to the invalid ',' character + d := NewDecoder(bytes.NewReader(b[:i])) // cut somewhere in the middle + switch err := d.Decode(&a); err { + case io.ErrUnexpectedEOF: + default: + t.Error("expected 'unexpected EOF' error but found:", err) + } + } +} + +func TestGithubIssue23(t *testing.T) { + t.Run("marshal-1", func(t *testing.T) { + type d struct{ S map[string]string } + + b, _ := Marshal(map[string]d{"1": {S: map[string]string{"2": "3"}}}) + if string(b) != `{"1":{"S":{"2":"3"}}}` { + t.Error(string(b)) + } + }) + + t.Run("marshal-2", func(t *testing.T) { + type testInner struct { + InnerMap map[string]string `json:"inner_map"` + } + + type testOuter struct { + OuterMap map[string]testInner `json:"outer_map"` + } + + b, _ := Marshal(testOuter{ + OuterMap: map[string]testInner{ + "outer": { + InnerMap: map[string]string{"inner": "value"}, + }, + }, + }) + + if string(b) != `{"outer_map":{"outer":{"inner_map":{"inner":"value"}}}}` { + t.Error(string(b)) + } + }) + + t.Run("marshal-3", func(t *testing.T) { + type A struct{ A map[string]string } + type B struct{ B map[string]A } + type C struct{ C map[string]B } + + b, _ := Marshal(C{ + C: map[string]B{ + "1": B{ + B: map[string]A{ + "2": A{ + A: map[string]string{"3": "!"}, + }, + }, + }, + }, + }) + + if string(b) != `{"C":{"1":{"B":{"2":{"A":{"3":"!"}}}}}}` { + t.Error(string(b)) + } + }) + + t.Run("unmarshal-1", func(t *testing.T) { + var d struct{ S map[string]string } + + if err := Unmarshal([]byte(`{"1":{"S":{"2":"3"}}}`), &d); err != nil { + t.Error(err) + } + }) +} + +func TestGithubIssue26(t *testing.T) { + type interfaceType interface{} + + var value interfaceType + var data = []byte(`{}`) + + if err := Unmarshal(data, &value); err != nil { + t.Error(err) + } +} + +func TestGithubIssue28(t *testing.T) { + type A struct { + Err error `json:"err"` + } + + if b, err := Marshal(&A{Err: errors.New("ABC")}); err != nil { + t.Error(err) + } else if string(b) != `{"err":{}}` { + t.Error(string(b)) + } + +} + +func TestSetTrustRawMessage(t *testing.T) { + buf := &bytes.Buffer{} + enc := NewEncoder(buf) + enc.SetTrustRawMessage(true) + + // "Good" values are encoded in the regular way + m := map[string]json.RawMessage{ + "k": json.RawMessage(`"value"`), + } + if err := enc.Encode(m); err != nil { + t.Error(err) + } + + b := buf.Bytes() + exp := []byte(`{"k":"value"}`) + exp = append(exp, '\n') + if bytes.Compare(exp, b) != 0 { + t.Error( + "unexpected encoding:", + "expected", exp, + "got", b, + ) + } + + // "Bad" values are encoded without checking and throwing an error + buf.Reset() + m = map[string]json.RawMessage{ + "k": json.RawMessage(`bad"value`), + } + if err := enc.Encode(m); err != nil { + t.Error(err) + } + + b = buf.Bytes() + exp = []byte(`{"k":bad"value}`) + exp = append(exp, '\n') + if bytes.Compare(exp, b) != 0 { + t.Error( + "unexpected encoding:", + "expected", exp, + "got", b, + ) + } +} diff --git a/cli/output/jsonw/internal/jcolorenc/parse.go b/cli/output/jsonw/internal/jcolorenc/parse.go new file mode 100644 index 00000000..47357afb --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/parse.go @@ -0,0 +1,737 @@ +package json + +import ( + "bytes" + "math" + "reflect" + "unicode" + "unicode/utf16" + "unicode/utf8" + + "github.com/segmentio/encoding/ascii" +) + +// All spaces characters defined in the json specification. +const ( + sp = ' ' + ht = '\t' + nl = '\n' + cr = '\r' +) + +const ( + escape = '\\' + quote = '"' +) + +func skipSpaces(b []byte) []byte { + b, _ = skipSpacesN(b) + return b +} + +func skipSpacesN(b []byte) ([]byte, int) { + for i := range b { + switch b[i] { + case sp, ht, nl, cr: + default: + return b[i:], i + } + } + return nil, 0 +} + +// parseInt parses a decimanl representation of an int64 from b. +// +// The function is equivalent to calling strconv.ParseInt(string(b), 10, 64) but +// it prevents Go from making a memory allocation for converting a byte slice to +// a string (escape analysis fails due to the error returned by strconv.ParseInt). +// +// Because it only works with base 10 the function is also significantly faster +// than strconv.ParseInt. +func parseInt(b []byte, t reflect.Type) (int64, []byte, error) { + var value int64 + var count int + + if len(b) == 0 { + return 0, b, syntaxError(b, "cannot decode integer from an empty input") + } + + if b[0] == '-' { + const max = math.MinInt64 + const lim = max / 10 + + if len(b) == 1 { + return 0, b, syntaxError(b, "cannot decode integer from '-'") + } + + if len(b) > 2 && b[1] == '0' && '0' <= b[2] && b[2] <= '9' { + return 0, b, syntaxError(b, "invalid leading character '0' in integer") + } + + for _, d := range b[1:] { + if !(d >= '0' && d <= '9') { + if count == 0 { + b, err := inputError(b, t) + return 0, b, err + } + break + } + + if value < lim { + return 0, b, unmarshalOverflow(b, t) + } + + value *= 10 + x := int64(d - '0') + + if value < (max + x) { + return 0, b, unmarshalOverflow(b, t) + } + + value -= x + count++ + } + + count++ + } else { + const max = math.MaxInt64 + const lim = max / 10 + + if len(b) > 1 && b[0] == '0' && '0' <= b[1] && b[1] <= '9' { + return 0, b, syntaxError(b, "invalid leading character '0' in integer") + } + + for _, d := range b { + if !(d >= '0' && d <= '9') { + if count == 0 { + b, err := inputError(b, t) + return 0, b, err + } + break + } + x := int64(d - '0') + + if value > lim { + return 0, b, unmarshalOverflow(b, t) + } + + if value *= 10; value > (max - x) { + return 0, b, unmarshalOverflow(b, t) + } + + value += x + count++ + } + } + + if count < len(b) { + switch b[count] { + case '.', 'e', 'E': // was this actually a float? + v, r, err := parseNumber(b) + if err != nil { + v, r = b[:count+1], b[count+1:] + } + return 0, r, unmarshalTypeError(v, t) + } + } + + return value, b[count:], nil +} + +// parseUint is like parseInt but for unsigned integers. +func parseUint(b []byte, t reflect.Type) (uint64, []byte, error) { + const max = math.MaxUint64 + const lim = max / 10 + + var value uint64 + var count int + + if len(b) == 0 { + return 0, b, syntaxError(b, "cannot decode integer value from an empty input") + } + + if len(b) > 1 && b[0] == '0' && '0' <= b[1] && b[1] <= '9' { + return 0, b, syntaxError(b, "invalid leading character '0' in integer") + } + + for _, d := range b { + if !(d >= '0' && d <= '9') { + if count == 0 { + b, err := inputError(b, t) + return 0, b, err + } + break + } + x := uint64(d - '0') + + if value > lim { + return 0, b, unmarshalOverflow(b, t) + } + + if value *= 10; value > (max - x) { + return 0, b, unmarshalOverflow(b, t) + } + + value += x + count++ + } + + if count < len(b) { + switch b[count] { + case '.', 'e', 'E': // was this actually a float? + v, r, err := parseNumber(b) + if err != nil { + v, r = b[:count+1], b[count+1:] + } + return 0, r, unmarshalTypeError(v, t) + } + } + + return value, b[count:], nil +} + +// parseUintHex parses a hexadecimanl representation of a uint64 from b. +// +// The function is equivalent to calling strconv.ParseUint(string(b), 16, 64) but +// it prevents Go from making a memory allocation for converting a byte slice to +// a string (escape analysis fails due to the error returned by strconv.ParseUint). +// +// Because it only works with base 16 the function is also significantly faster +// than strconv.ParseUint. +func parseUintHex(b []byte) (uint64, []byte, error) { + const max = math.MaxUint64 + const lim = max / 0x10 + + var value uint64 + var count int + + if len(b) == 0 { + return 0, b, syntaxError(b, "cannot decode hexadecimal value from an empty input") + } + +parseLoop: + for i, d := range b { + var x uint64 + + switch { + case d >= '0' && d <= '9': + x = uint64(d - '0') + + case d >= 'A' && d <= 'F': + x = uint64(d-'A') + 0xA + + case d >= 'a' && d <= 'f': + x = uint64(d-'a') + 0xA + + default: + if i == 0 { + return 0, b, syntaxError(b, "expected hexadecimal digit but found '%c'", d) + } + break parseLoop + } + + if value > lim { + return 0, b, syntaxError(b, "hexadecimal value out of range") + } + + if value *= 0x10; value > (max - x) { + return 0, b, syntaxError(b, "hexadecimal value out of range") + } + + value += x + count++ + } + + return value, b[count:], nil +} + +func parseNull(b []byte) ([]byte, []byte, error) { + if hasNullPrefix(b) { + return b[:4], b[4:], nil + } + if len(b) < 4 { + return nil, b[len(b):], unexpectedEOF(b) + } + return nil, b, syntaxError(b, "expected 'null' but found invalid token") +} + +func parseTrue(b []byte) ([]byte, []byte, error) { + if hasTruePrefix(b) { + return b[:4], b[4:], nil + } + if len(b) < 4 { + return nil, b[len(b):], unexpectedEOF(b) + } + return nil, b, syntaxError(b, "expected 'true' but found invalid token") +} + +func parseFalse(b []byte) ([]byte, []byte, error) { + if hasFalsePrefix(b) { + return b[:5], b[5:], nil + } + if len(b) < 5 { + return nil, b[len(b):], unexpectedEOF(b) + } + return nil, b, syntaxError(b, "expected 'false' but found invalid token") +} + +func parseNumber(b []byte) (v, r []byte, err error) { + if len(b) == 0 { + r, err = b, unexpectedEOF(b) + return + } + + i := 0 + // sign + if b[i] == '-' { + i++ + } + + if i == len(b) { + r, err = b[i:], syntaxError(b, "missing number value after sign") + return + } + + if b[i] < '0' || b[i] > '9' { + r, err = b[i:], syntaxError(b, "expected digit but got '%c'", b[i]) + return + } + + // integer part + if b[i] == '0' { + i++ + if i == len(b) || (b[i] != '.' && b[i] != 'e' && b[i] != 'E') { + v, r = b[:i], b[i:] + return + } + if '0' <= b[i] && b[i] <= '9' { + r, err = b[i:], syntaxError(b, "cannot decode number with leading '0' character") + return + } + } + + for i < len(b) && '0' <= b[i] && b[i] <= '9' { + i++ + } + + // decimal part + if i < len(b) && b[i] == '.' { + i++ + decimalStart := i + + for i < len(b) { + if c := b[i]; !('0' <= c && c <= '9') { + if i == decimalStart { + r, err = b[i:], syntaxError(b, "expected digit but found '%c'", c) + return + } + break + } + i++ + } + + if i == decimalStart { + r, err = b[i:], syntaxError(b, "expected decimal part after '.'") + return + } + } + + // exponent part + if i < len(b) && (b[i] == 'e' || b[i] == 'E') { + i++ + + if i < len(b) { + if c := b[i]; c == '+' || c == '-' { + i++ + } + } + + if i == len(b) { + r, err = b[i:], syntaxError(b, "missing exponent in number") + return + } + + exponentStart := i + + for i < len(b) { + if c := b[i]; !('0' <= c && c <= '9') { + if i == exponentStart { + err = syntaxError(b, "expected digit but found '%c'", c) + return + } + break + } + i++ + } + } + + v, r = b[:i], b[i:] + return +} + +func parseUnicode(b []byte) (rune, int, error) { + if len(b) < 4 { + return 0, 0, syntaxError(b, "unicode code point must have at least 4 characters") + } + + u, r, err := parseUintHex(b[:4]) + if err != nil { + return 0, 0, syntaxError(b, "parsing unicode code point: %s", err) + } + + if len(r) != 0 { + return 0, 0, syntaxError(b, "invalid unicode code point") + } + + return rune(u), 4, nil +} + +func parseStringFast(b []byte) ([]byte, []byte, bool, error) { + if len(b) < 2 { + return nil, b[len(b):], false, unexpectedEOF(b) + } + if b[0] != '"' { + return nil, b, false, syntaxError(b, "expected '\"' at the beginning of a string value") + } + + n := bytes.IndexByte(b[1:], '"') + 2 + if n <= 1 { + return nil, b[len(b):], false, syntaxError(b, "missing '\"' at the end of a string value") + } + if bytes.IndexByte(b[1:n], '\\') < 0 && ascii.ValidPrint(b[1:n]) { + return b[:n], b[n:], false, nil + } + + for i := 1; i < len(b); i++ { + switch b[i] { + case '\\': + if i++; i < len(b) { + switch b[i] { + case '"', '\\', '/', 'n', 'r', 't', 'f', 'b': + case 'u': + _, n, err := parseUnicode(b[i+1:]) + if err != nil { + return nil, b, false, err + } + i += n + default: + return nil, b, false, syntaxError(b, "invalid character '%c' in string escape code", b[i]) + } + } + + case '"': + return b[:i+1], b[i+1:], true, nil + + default: + if b[i] < 0x20 { + return nil, b, false, syntaxError(b, "invalid character '%c' in string escape code", b[i]) + } + } + } + + return nil, b[len(b):], false, syntaxError(b, "missing '\"' at the end of a string value") +} + +func parseString(b []byte) ([]byte, []byte, error) { + s, b, _, err := parseStringFast(b) + return s, b, err +} + +func parseStringUnquote(b []byte, r []byte) ([]byte, []byte, bool, error) { + s, b, escaped, err := parseStringFast(b) + if err != nil { + return s, b, false, err + } + + s = s[1 : len(s)-1] // trim the quotes + + if !escaped { + return s, b, false, nil + } + + if r == nil { + r = make([]byte, 0, len(s)) + } + + for len(s) != 0 { + i := bytes.IndexByte(s, '\\') + + if i < 0 { + r = appendCoerceInvalidUTF8(r, s) + break + } + + r = appendCoerceInvalidUTF8(r, s[:i]) + s = s[i+1:] + + c := s[0] + switch c { + case '"', '\\', '/': + // simple escaped character + case 'n': + c = '\n' + + case 'r': + c = '\r' + + case 't': + c = '\t' + + case 'b': + c = '\b' + + case 'f': + c = '\f' + + case 'u': + s = s[1:] + + r1, n1, err := parseUnicode(s) + if err != nil { + return r, b, true, err + } + s = s[n1:] + + if utf16.IsSurrogate(r1) { + if !hasPrefix(s, `\u`) { + r1 = unicode.ReplacementChar + } else { + r2, n2, err := parseUnicode(s[2:]) + if err != nil { + return r, b, true, err + } + if r1 = utf16.DecodeRune(r1, r2); r1 != unicode.ReplacementChar { + s = s[2+n2:] + } + } + } + + r = appendRune(r, r1) + continue + + default: // not sure what this escape sequence is + return r, b, false, syntaxError(s, "invalid character '%c' in string escape code", c) + } + + r = append(r, c) + s = s[1:] + } + + return r, b, true, nil +} + +func appendRune(b []byte, r rune) []byte { + n := len(b) + b = append(b, 0, 0, 0, 0) + return b[:n+utf8.EncodeRune(b[n:], r)] +} + +func appendCoerceInvalidUTF8(b []byte, s []byte) []byte { + c := [4]byte{} + + for _, r := range string(s) { + b = append(b, c[:utf8.EncodeRune(c[:], r)]...) + } + + return b +} + +func parseObject(b []byte) ([]byte, []byte, error) { + if len(b) < 2 { + return nil, b[len(b):], unexpectedEOF(b) + } + + if b[0] != '{' { + return nil, b, syntaxError(b, "expected '{' at the beginning of an object value") + } + + var err error + var a = b + var n = len(b) + var i = 0 + + b = b[1:] + for { + b = skipSpaces(b) + + if len(b) == 0 { + return nil, b, syntaxError(b, "cannot decode object from empty input") + } + + if b[0] == '}' { + j := (n - len(b)) + 1 + return a[:j], a[j:], nil + } + + if i != 0 { + if len(b) == 0 { + return nil, b, syntaxError(b, "unexpected EOF after object field value") + } + if b[0] != ',' { + return nil, b, syntaxError(b, "expected ',' after object field value but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + if len(b) == 0 { + return nil, b, unexpectedEOF(b) + } + if b[0] == '}' { + return nil, b, syntaxError(b, "unexpected trailing comma after object field") + } + } + + _, b, err = parseString(b) + if err != nil { + return nil, b, err + } + b = skipSpaces(b) + + if len(b) == 0 { + return nil, b, syntaxError(b, "unexpected EOF after object field key") + } + if b[0] != ':' { + return nil, b, syntaxError(b, "expected ':' after object field key but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + + _, b, err = parseValue(b) + if err != nil { + return nil, b, err + } + + i++ + } +} + +func parseArray(b []byte) ([]byte, []byte, error) { + if len(b) < 2 { + return nil, b[len(b):], unexpectedEOF(b) + } + + if b[0] != '[' { + return nil, b, syntaxError(b, "expected '[' at the beginning of array value") + } + + var err error + var a = b + var n = len(b) + var i = 0 + + b = b[1:] + for { + b = skipSpaces(b) + + if len(b) == 0 { + return nil, b, syntaxError(b, "missing closing ']' after array value") + } + + if b[0] == ']' { + j := (n - len(b)) + 1 + return a[:j], a[j:], nil + } + + if i != 0 { + if len(b) == 0 { + return nil, b, syntaxError(b, "unexpected EOF after array element") + } + if b[0] != ',' { + return nil, b, syntaxError(b, "expected ',' after array element but found '%c'", b[0]) + } + b = skipSpaces(b[1:]) + if len(b) == 0 { + return nil, b, unexpectedEOF(b) + } + if b[0] == ']' { + return nil, b, syntaxError(b, "unexpected trailing comma after object field") + } + } + + _, b, err = parseValue(b) + if err != nil { + return nil, b, err + } + + i++ + } +} + +func parseValue(b []byte) ([]byte, []byte, error) { + if len(b) != 0 { + switch b[0] { + case '{': + return parseObject(b) + case '[': + return parseArray(b) + case '"': + return parseString(b) + case 'n': + return parseNull(b) + case 't': + return parseTrue(b) + case 'f': + return parseFalse(b) + case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + return parseNumber(b) + default: + return nil, b, syntaxError(b, "invalid character '%c' looking for beginning of value", b[0]) + } + } + return nil, b, syntaxError(b, "unexpected end of JSON input") +} + +func hasNullPrefix(b []byte) bool { + return len(b) >= 4 && string(b[:4]) == "null" +} + +func hasTruePrefix(b []byte) bool { + return len(b) >= 4 && string(b[:4]) == "true" +} + +func hasFalsePrefix(b []byte) bool { + return len(b) >= 5 && string(b[:5]) == "false" +} + +func hasPrefix(b []byte, s string) bool { + return len(b) >= len(s) && s == string(b[:len(s)]) +} + +func hasLeadingSign(b []byte) bool { + return len(b) > 0 && (b[0] == '+' || b[0] == '-') +} + +func hasLeadingZeroes(b []byte) bool { + if hasLeadingSign(b) { + b = b[1:] + } + return len(b) > 1 && b[0] == '0' && '0' <= b[1] && b[1] <= '9' +} + +func appendToLower(b, s []byte) []byte { + if ascii.Valid(s) { // fast path for ascii strings + i := 0 + + for j := range s { + c := s[j] + + if 'A' <= c && c <= 'Z' { + b = append(b, s[i:j]...) + b = append(b, c+('a'-'A')) + i = j + 1 + } + } + + return append(b, s[i:]...) + } + + for _, r := range string(s) { + b = appendRune(b, foldRune(r)) + } + + return b +} + +func foldRune(r rune) rune { + if r = unicode.SimpleFold(r); 'A' <= r && r <= 'Z' { + r = r + ('a' - 'A') + } + return r +} diff --git a/cli/output/jsonw/internal/jcolorenc/parse_test.go b/cli/output/jsonw/internal/jcolorenc/parse_test.go new file mode 100644 index 00000000..7fd1b53a --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/parse_test.go @@ -0,0 +1,174 @@ +package json + +import ( + "bytes" + "strings" + "testing" +) + +func TestParseString(t *testing.T) { + tests := []struct { + in string + out string + ext string + }{ + {`""`, `""`, ``}, + {`"1234567890"`, `"1234567890"`, ``}, + {`"Hello World!"`, `"Hello World!"`, ``}, + {`"Hello\"World!"`, `"Hello\"World!"`, ``}, + {`"\\"`, `"\\"`, ``}, + } + + for _, test := range tests { + t.Run(test.in, func(t *testing.T) { + out, ext, err := parseString([]byte(test.in)) + + if err != nil { + t.Errorf("%s => %s", test.in, err) + return + } + + if s := string(out); s != test.out { + t.Error("invalid output") + t.Logf("expected: %s", test.out) + t.Logf("found: %s", s) + } + + if s := string(ext); s != test.ext { + t.Error("invalid extra bytes") + t.Logf("expected: %s", test.ext) + t.Logf("found: %s", s) + } + }) + } +} + +func TestAppendToLower(t *testing.T) { + tests := []string{ + "", + "A", + "a", + "__segment_internal", + "someFieldWithALongBName", + "Hello World!", + "Hello\"World!", + "Hello\\World!", + "Hello\nWorld!", + "Hello\rWorld!", + "Hello\tWorld!", + "Hello\bWorld!", + "Hello\fWorld!", + "你好", + "<", + ">", + "&", + "\u001944", + "\u00c2e>", + "\u00c2V?", + "\u000e=8", + "\u001944\u00c2e>\u00c2V?\u000e=8", + "ir\u001bQJ\u007f\u0007y\u0015)", + } + + for _, test := range tests { + s1 := strings.ToLower(test) + s2 := string(appendToLower(nil, []byte(test))) + + if s1 != s2 { + t.Error("lowercase values mismatch") + t.Log("expected:", s1) + t.Log("found: ", s2) + } + } +} + +func BenchmarkParseString(b *testing.B) { + s := []byte(`"__segment_internal"`) + + for i := 0; i != b.N; i++ { + parseString(s) + } +} + +func BenchmarkToLower(b *testing.B) { + s := []byte("someFieldWithALongName") + + for i := 0; i != b.N; i++ { + bytes.ToLower(s) + } +} + +func BenchmarkAppendToLower(b *testing.B) { + a := []byte(nil) + s := []byte("someFieldWithALongName") + + for i := 0; i != b.N; i++ { + a = appendToLower(a[:0], s) + } +} + +var benchmarkHasPrefixString = []byte("some random string") +var benchmarkHasPrefixResult = false + +func BenchmarkHasPrefix(b *testing.B) { + for i := 0; i < b.N; i++ { + benchmarkHasPrefixResult = hasPrefix(benchmarkHasPrefixString, "null") + } +} + +func BenchmarkHasNullPrefix(b *testing.B) { + for i := 0; i < b.N; i++ { + benchmarkHasPrefixResult = hasNullPrefix(benchmarkHasPrefixString) + } +} + +func BenchmarkHasTruePrefix(b *testing.B) { + for i := 0; i < b.N; i++ { + benchmarkHasPrefixResult = hasTruePrefix(benchmarkHasPrefixString) + } +} + +func BenchmarkHasFalsePrefix(b *testing.B) { + for i := 0; i < b.N; i++ { + benchmarkHasPrefixResult = hasFalsePrefix(benchmarkHasPrefixString) + } +} + +func BenchmarkParseStringEscapeNone(b *testing.B) { + var j = []byte(`"` + strings.Repeat(`a`, 1000) + `"`) + var s string + b.SetBytes(int64(len(j))) + + for i := 0; i < b.N; i++ { + if err := Unmarshal(j, &s); err != nil { + b.Fatal(err) + } + s = "" + } +} + +func BenchmarkParseStringEscapeOne(b *testing.B) { + var j = []byte(`"` + strings.Repeat(`a`, 998) + `\n"`) + var s string + b.SetBytes(int64(len(j))) + + for i := 0; i < b.N; i++ { + if err := Unmarshal(j, &s); err != nil { + b.Fatal(err) + } + s = "" + } +} + +func BenchmarkParseStringEscapeAll(b *testing.B) { + var j = []byte(`"` + strings.Repeat(`\`, 1000) + `"`) + var s string + b.SetBytes(int64(len(j))) + + for i := 0; i < b.N; i++ { + if err := Unmarshal(j, &s); err != nil { + b.Fatal(err) + } + s = "" + } +} diff --git a/cli/output/jsonw/internal/jcolorenc/reflect.go b/cli/output/jsonw/internal/jcolorenc/reflect.go new file mode 100644 index 00000000..3f852f1c --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/reflect.go @@ -0,0 +1,19 @@ +// +build go1.15 + +package json + +import ( + "reflect" + "unsafe" +) + +func extendSlice(t reflect.Type, s *slice, n int) slice { + arrayType := reflect.ArrayOf(n, t.Elem()) + arrayData := reflect.New(arrayType) + reflect.Copy(arrayData.Elem(), reflect.NewAt(t, unsafe.Pointer(s)).Elem()) + return slice{ + data: unsafe.Pointer(arrayData.Pointer()), + len: s.len, + cap: n, + } +} diff --git a/cli/output/jsonw/internal/jcolorenc/reflect_optimize.go b/cli/output/jsonw/internal/jcolorenc/reflect_optimize.go new file mode 100644 index 00000000..ab8fc9ee --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/reflect_optimize.go @@ -0,0 +1,29 @@ +// +build !go1.15 + +package json + +import ( + "reflect" + "unsafe" +) + +//go:linkname unsafe_NewArray reflect.unsafe_NewArray +func unsafe_NewArray(rtype unsafe.Pointer, length int) unsafe.Pointer + +//go:linkname typedslicecopy reflect.typedslicecopy +//go:noescape +func typedslicecopy(elemType unsafe.Pointer, dst, src slice) int + +func extendSlice(t reflect.Type, s *slice, n int) slice { + elemTypeRef := t.Elem() + elemTypePtr := ((*iface)(unsafe.Pointer(&elemTypeRef))).ptr + + d := slice{ + data: unsafe_NewArray(elemTypePtr, n), + len: s.len, + cap: n, + } + + typedslicecopy(elemTypePtr, d, *s) + return d +} diff --git a/cli/output/jsonw/internal/jcolorenc/testdata/code.json.gz b/cli/output/jsonw/internal/jcolorenc/testdata/code.json.gz new file mode 100644 index 00000000..028c3f9d Binary files /dev/null and b/cli/output/jsonw/internal/jcolorenc/testdata/code.json.gz differ diff --git a/cli/output/jsonw/internal/jcolorenc/testdata/msgs.json.gz b/cli/output/jsonw/internal/jcolorenc/testdata/msgs.json.gz new file mode 100644 index 00000000..e5c87dac Binary files /dev/null and b/cli/output/jsonw/internal/jcolorenc/testdata/msgs.json.gz differ diff --git a/cli/output/jsonw/internal/jcolorenc/token.go b/cli/output/jsonw/internal/jcolorenc/token.go new file mode 100644 index 00000000..18a48169 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/token.go @@ -0,0 +1,286 @@ +package json + +// Tokenizer is an iterator-style type which can be used to progressively parse +// through a json input. +// +// Tokenizing json is useful to build highly efficient parsing operations, for +// example when doing tranformations on-the-fly where as the program reads the +// input and produces the transformed json to an output buffer. +// +// Here is a common pattern to use a tokenizer: +// +// for t := json.NewTokenizer(b); t.Next(); { +// switch t.Delim { +// case '{': +// ... +// case '}': +// ... +// case '[': +// ... +// case ']': +// ... +// case ':': +// ... +// case ',': +// ... +// } +// +// switch { +// case t.Value.String(): +// ... +// case t.Value.Null(): +// ... +// case t.Value.True(): +// ... +// case t.Value.False(): +// ... +// case t.Value.Number(): +// ... +// } +// } +// +type Tokenizer struct { + // When the tokenizer is positioned on a json delimiter this field is not + // zero. In this case the possible values are '{', '}', '[', ']', ':', and + // ','. + Delim Delim + + // This field contains the raw json token that the tokenizer is pointing at. + // When Delim is not zero, this field is a single-element byte slice + // continaing the delimiter value. Otherwise, this field holds values like + // null, true, false, numbers, or quoted strings. + Value RawValue + + // When the tokenizer has encountered invalid content this field is not nil. + Err error + + // When the value is in an array or an object, this field contains the depth + // at which it was found. + Depth int + + // When the value is in an array or an object, this field contains the + // position at which it was found. + Index int + + // This field is true when the value is the key of an object. + IsKey bool + + // Tells whether the next value read from the tokenizer is a key. + isKey bool + + // json input for the tokenizer, pointing at data right after the last token + // that was parsed. + json []byte + + // Stack used to track entering and leaving arrays, objects, and keys. The + // buffer is used as a AppendPre-allocated space to + stack []state + buffer [8]state +} + +type state struct { + typ scope + len int +} + +type scope int + +const ( + inArray scope = iota + inObject +) + +// NewTokenizer constructs a new Tokenizer which reads its json input from b. +func NewTokenizer(b []byte) *Tokenizer { return &Tokenizer{json: b} } + +// Reset erases the state of t and re-initializes it with the json input from b. +func (t *Tokenizer) Reset(b []byte) { + // This code is similar to: + // + // *t = Tokenizer{json: b} + // + // However, it does not compile down to an invocation of duff-copy, which + // ends up being slower and prevents the code from being inlined. + t.Delim = 0 + t.Value = nil + t.Err = nil + t.Depth = 0 + t.Index = 0 + t.IsKey = false + t.isKey = false + t.json = b + t.stack = nil +} + +// Next returns a new tokenizer pointing at the next token, or the zero-value of +// Tokenizer if the end of the json input has been reached. +// +// If the tokenizer encounters malformed json while reading the input the method +// sets t.Err to an error describing the issue, and returns false. Once an error +// has been encountered, the tokenizer will always fail until its input is +// cleared by a call to its Reset method. +func (t *Tokenizer) Next() bool { + if t.Err != nil { + return false + } + + // Inlined code of the skipSpaces function, this give a ~15% speed boost. + i := 0 +skipLoop: + for _, c := range t.json { + switch c { + case sp, ht, nl, cr: + i++ + default: + break skipLoop + } + } + + if t.json = t.json[i:]; len(t.json) == 0 { + t.Reset(nil) + return false + } + + var d Delim + var v []byte + var b []byte + var err error + + switch t.json[0] { + case '"': + v, b, err = parseString(t.json) + case 'n': + v, b, err = parseNull(t.json) + case 't': + v, b, err = parseTrue(t.json) + case 'f': + v, b, err = parseFalse(t.json) + case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + v, b, err = parseNumber(t.json) + case '{', '}', '[', ']', ':', ',': + d, v, b = Delim(t.json[0]), t.json[:1], t.json[1:] + default: + v, b, err = t.json[:1], t.json[1:], syntaxError(t.json, "expected token but found '%c'", t.json[0]) + } + + t.Delim = d + t.Value = RawValue(v) + t.Err = err + t.Depth = t.depth() + t.Index = t.index() + t.IsKey = d == 0 && t.isKey + t.json = b + + if d != 0 { + switch d { + case '{': + t.isKey = true + t.push(inObject) + case '[': + t.push(inArray) + case '}': + err = t.pop(inObject) + t.Depth-- + t.Index = t.index() + case ']': + err = t.pop(inArray) + t.Depth-- + t.Index = t.index() + case ':': + t.isKey = false + case ',': + if t.is(inObject) { + t.isKey = true + } + t.stack[len(t.stack)-1].len++ + } + } + + return (d != 0 || len(v) != 0) && err == nil +} + +func (t *Tokenizer) push(typ scope) { + if t.stack == nil { + t.stack = t.buffer[:0] + } + t.stack = append(t.stack, state{typ: typ, len: 1}) +} + +func (t *Tokenizer) pop(expect scope) error { + i := len(t.stack) - 1 + + if i < 0 { + return syntaxError(t.json, "found unexpected character while tokenizing json input") + } + + if found := t.stack[i]; expect != found.typ { + return syntaxError(t.json, "found unexpected character while tokenizing json input") + } + + t.stack = t.stack[:i] + return nil +} + +func (t *Tokenizer) is(typ scope) bool { + return len(t.stack) != 0 && t.stack[len(t.stack)-1].typ == typ +} + +func (t *Tokenizer) depth() int { + return len(t.stack) +} + +func (t *Tokenizer) index() int { + if len(t.stack) == 0 { + return 0 + } + return t.stack[len(t.stack)-1].len - 1 +} + +// RawValue represents a raw json value, it is intended to carry null, true, +// false, number, and string values only. +type RawValue []byte + +// String returns true if v contains a string value. +func (v RawValue) String() bool { return len(v) != 0 && v[0] == '"' } + +// Null returns true if v contains a null value. +func (v RawValue) Null() bool { return len(v) != 0 && v[0] == 'n' } + +// True returns true if v contains a true value. +func (v RawValue) True() bool { return len(v) != 0 && v[0] == 't' } + +// False returns true if v contains a false value. +func (v RawValue) False() bool { return len(v) != 0 && v[0] == 'f' } + +// Number returns true if v contains a number value. +func (v RawValue) Number() bool { + if len(v) != 0 { + switch v[0] { + case '-', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9': + return true + } + } + return false +} + +// AppendUnquote writes the unquoted version of the string value in v into b. +func (v RawValue) AppendUnquote(b []byte) []byte { + s, r, new, err := parseStringUnquote([]byte(v), b) + if err != nil { + panic(err) + } + if len(r) != 0 { + panic(syntaxError(r, "unexpected trailing tokens after json value")) + } + if new { + b = s + } else { + b = append(b, s...) + } + return b +} + +// Unquote returns the unquoted version of the string value in v. +func (v RawValue) Unquote() []byte { + return v.AppendUnquote(nil) +} diff --git a/cli/output/jsonw/internal/jcolorenc/token_test.go b/cli/output/jsonw/internal/jcolorenc/token_test.go new file mode 100644 index 00000000..69759a33 --- /dev/null +++ b/cli/output/jsonw/internal/jcolorenc/token_test.go @@ -0,0 +1,287 @@ +package json + +import ( + "reflect" + "testing" +) + +type token struct { + delim Delim + value RawValue + err error + depth int + index int + isKey bool +} + +func delim(s string, depth, index int) token { + return token{ + delim: Delim(s[0]), + value: RawValue(s), + depth: depth, + index: index, + } +} + +func key(v string, depth, index int) token { + return token{ + value: RawValue(v), + depth: depth, + index: index, + isKey: true, + } +} + +func value(v string, depth, index int) token { + return token{ + value: RawValue(v), + depth: depth, + index: index, + } +} + +func tokenize(b []byte) (tokens []token) { + t := NewTokenizer(b) + + for t.Next() { + tokens = append(tokens, token{ + delim: t.Delim, + value: t.Value, + err: t.Err, + depth: t.Depth, + index: t.Index, + isKey: t.IsKey, + }) + } + + if t.Err != nil { + panic(t.Err) + } + + return +} + +func TestTokenizer(t *testing.T) { + tests := []struct { + input []byte + tokens []token + }{ + { + input: []byte(`null`), + tokens: []token{ + value(`null`, 0, 0), + }, + }, + + { + input: []byte(`true`), + tokens: []token{ + value(`true`, 0, 0), + }, + }, + + { + input: []byte(`false`), + tokens: []token{ + value(`false`, 0, 0), + }, + }, + + { + input: []byte(`""`), + tokens: []token{ + value(`""`, 0, 0), + }, + }, + + { + input: []byte(`"Hello World!"`), + tokens: []token{ + value(`"Hello World!"`, 0, 0), + }, + }, + + { + input: []byte(`-0.1234`), + tokens: []token{ + value(`-0.1234`, 0, 0), + }, + }, + + { + input: []byte(` { } `), + tokens: []token{ + delim(`{`, 0, 0), + delim(`}`, 0, 0), + }, + }, + + { + input: []byte(`{ "answer": 42 }`), + tokens: []token{ + delim(`{`, 0, 0), + key(`"answer"`, 1, 0), + delim(`:`, 1, 0), + value(`42`, 1, 0), + delim(`}`, 0, 0), + }, + }, + + { + input: []byte(`{ "sub": { "key-A": 1, "key-B": 2, "key-C": 3 } }`), + tokens: []token{ + delim(`{`, 0, 0), + key(`"sub"`, 1, 0), + delim(`:`, 1, 0), + delim(`{`, 1, 0), + key(`"key-A"`, 2, 0), + delim(`:`, 2, 0), + value(`1`, 2, 0), + delim(`,`, 2, 0), + key(`"key-B"`, 2, 1), + delim(`:`, 2, 1), + value(`2`, 2, 1), + delim(`,`, 2, 1), + key(`"key-C"`, 2, 2), + delim(`:`, 2, 2), + value(`3`, 2, 2), + delim(`}`, 1, 0), + delim(`}`, 0, 0), + }, + }, + + { + input: []byte(` [ ] `), + tokens: []token{ + delim(`[`, 0, 0), + delim(`]`, 0, 0), + }, + }, + + { + input: []byte(`[1, 2, 3]`), + tokens: []token{ + delim(`[`, 0, 0), + value(`1`, 1, 0), + delim(`,`, 1, 0), + value(`2`, 1, 1), + delim(`,`, 1, 1), + value(`3`, 1, 2), + delim(`]`, 0, 0), + }, + }, + } + + for _, test := range tests { + t.Run(string(test.input), func(t *testing.T) { + tokens := tokenize(test.input) + + if !reflect.DeepEqual(tokens, test.tokens) { + t.Error("tokens mismatch") + t.Logf("expected: %+v", test.tokens) + t.Logf("found: %+v", tokens) + } + }) + } +} + +func BenchmarkTokenizer(b *testing.B) { + values := []struct { + scenario string + payload []byte + }{ + { + scenario: "null", + payload: []byte(`null`), + }, + + { + scenario: "true", + payload: []byte(`true`), + }, + + { + scenario: "false", + payload: []byte(`false`), + }, + + { + scenario: "number", + payload: []byte(`-1.23456789`), + }, + + { + scenario: "string", + payload: []byte(`"1234567890"`), + }, + + { + scenario: "object", + payload: []byte(`{ + "timestamp": "2019-01-09T18:59:57.456Z", + "channel": "server", + "type": "track", + "event": "Test", + "userId": "test-user-whatever", + "messageId": "test-message-whatever", + "integrations": { + "whatever": { + "debugMode": false + }, + "myIntegration": { + "debugMode": true + } + }, + "properties": { + "trait1": 1, + "trait2": "test", + "trait3": true + }, + "settings": { + "apiKey": "1234567890", + "debugMode": false, + "directChannels": [ + "server", + "client" + ], + "endpoint": "https://somewhere.com/v1/integrations/segment" + } +}`), + }, + } + + benchmarks := []struct { + scenario string + function func(*testing.B, []byte) + }{ + { + scenario: "github.com/segmentio/encoding/json", + function: func(b *testing.B, json []byte) { + t := NewTokenizer(nil) + + for i := 0; i < b.N; i++ { + t.Reset(json) + + for t.Next() { + // Does nothing other than iterating over each token to measure the + // CPU and memory footprint. + } + + if t.Err != nil { + b.Error(t.Err) + } + } + }, + }, + } + + for _, bechmark := range benchmarks { + b.Run(bechmark.scenario, func(b *testing.B) { + for _, value := range values { + b.Run(value.scenario, func(b *testing.B) { + bechmark.function(b, value.payload) + }) + } + }) + } +} diff --git a/cli/output/jsonw/jsonw.go b/cli/output/jsonw/jsonw.go new file mode 100644 index 00000000..d6799822 --- /dev/null +++ b/cli/output/jsonw/jsonw.go @@ -0,0 +1,435 @@ +// Package jsonw implements output writers for JSON. +package jsonw + +import ( + "bytes" + "io" + "strings" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/cli/output/jsonw/internal" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// NewStdRecordWriter returns a record writer that outputs each +// record as a JSON object that is an element of JSON array. This is +// to say, standard JSON. For example: +// +// [ +// { +// "actor_id": 1, +// "first_name": "PENELOPE", +// "last_name": "GUINESS", +// "last_update": "2020-06-11T02:50:54Z" +// }, +// { +// "actor_id": 2, +// "first_name": "NICK", +// "last_name": "WAHLBERG", +// "last_update": "2020-06-11T02:50:54Z" +// } +// ] +func NewStdRecordWriter(out io.Writer, fm *output.Formatting) output.RecordWriter { + return &stdWriter{ + out: out, + fm: fm, + } +} + +// stdWriter outputs records in standard JSON format. +type stdWriter struct { + err error + out io.Writer + fm *output.Formatting + + // b is used as a buffer by writeRecord + b []byte + + // outBuf is used to hold output prior to flushing. + outBuf *bytes.Buffer + + recMeta sqlz.RecordMeta + recsWritten bool + + tpl *stdTemplate + encodeFns []func(b []byte, v interface{}) ([]byte, error) +} + +// Open implements output.RecordWriter. +func (w *stdWriter) Open(recMeta sqlz.RecordMeta) error { + if w.err != nil { + return w.err + } + + w.outBuf = &bytes.Buffer{} + w.recMeta = recMeta + + if len(recMeta) == 0 { + // should never happen + return errz.New("empty record metadata") + } + + w.encodeFns = getFieldEncoders(recMeta, w.fm) + + tpl, err := newStdTemplate(recMeta, w.fm) + if err != nil { + w.err = err + return err + } + + w.outBuf.Write(tpl.header) + w.tpl = tpl + + return nil +} + +// WriteRecords implements output.RecordWriter. +func (w *stdWriter) WriteRecords(recs []sqlz.Record) error { + if w.err != nil { + return w.err + } + + var err error + for i := range recs { + err = w.writeRecord(recs[i]) + if err != nil { + w.err = err + return err + } + } + return nil +} + +func (w *stdWriter) writeRecord(rec sqlz.Record) error { + var err error + + if w.recsWritten { + // we need to add the separator + w.b = append(w.b, w.tpl.recSep...) + } else { + // This is the first record: we'll need the separator next time. + w.recsWritten = true + } + + for i := range w.recMeta { + w.b = append(w.b, w.tpl.recTpl[i]...) + w.b, err = w.encodeFns[i](w.b, rec[i]) + if err != nil { + return errz.Err(err) + } + } + + w.b = append(w.b, w.tpl.recTpl[len(w.recMeta)]...) + w.outBuf.Write(w.b) + w.b = w.b[:0] + + if w.outBuf.Len() > output.FlushThreshold { + return w.Flush() + } + + return nil +} + +// Flush implements output.RecordWriter. +func (w *stdWriter) Flush() error { + if w.err != nil { + return w.err + } + _, err := w.outBuf.WriteTo(w.out) + if err != nil { + return errz.Err(err) + } + return nil +} + +// Close implements output.RecordWriter. +func (w *stdWriter) Close() error { + if w.err != nil { + return w.err + } + + if w.recsWritten && w.fm.Pretty { + w.outBuf.WriteRune('\n') + } + + w.outBuf.Write(w.tpl.footer) + return w.Flush() +} + +// stdTemplate holds the various parts of the output template +// used by stdWriter. +type stdTemplate struct { + header []byte + recTpl [][]byte + recSep []byte + footer []byte +} + +func newStdTemplate(recMeta sqlz.RecordMeta, fm *output.Formatting) (*stdTemplate, error) { + tpl := make([][]byte, len(recMeta)+1) + clrs := internal.NewColors(fm) + pnc := newPunc(fm) + + fieldNames := make([][]byte, len(recMeta)) + + var err error + for i := range recMeta { + fieldNames[i], err = encodeString(nil, recMeta[i].Name(), false) + if err != nil { + return nil, errz.Err(err) + } + if !fm.IsMonochrome() { + fieldNames[i] = clrs.AppendKey(nil, fieldNames[i]) + } + } + + if !fm.Pretty { + tpl[0] = append(tpl[0], pnc.lBrace...) + tpl[0] = append(tpl[0], fieldNames[0]...) + tpl[0] = append(tpl[0], pnc.colon...) + + for i := 1; i < len(fieldNames); i++ { + tpl[i] = append(tpl[i], pnc.comma...) + tpl[i] = append(tpl[i], fieldNames[i]...) + tpl[i] = append(tpl[i], pnc.colon...) + } + + tpl[len(recMeta)] = append(tpl[len(recMeta)], pnc.rBrace...) + + stdTpl := &stdTemplate{recTpl: tpl} + + stdTpl.header = append(stdTpl.header, pnc.lBracket...) + stdTpl.footer = append(stdTpl.footer, pnc.rBracket...) + stdTpl.footer = append(stdTpl.footer, '\n') + stdTpl.recSep = append(stdTpl.recSep, pnc.comma...) + + return stdTpl, nil + } + + // Else we're doing pretty printing + tpl[0] = append(tpl[0], []byte("\n"+fm.Indent)...) + tpl[0] = append(tpl[0], pnc.lBrace...) + tpl[0] = append(tpl[0], '\n') + tpl[0] = append(tpl[0], strings.Repeat(fm.Indent, 2)...) + + tpl[0] = append(tpl[0], fieldNames[0]...) + tpl[0] = append(tpl[0], pnc.colon...) + tpl[0] = append(tpl[0], ' ') + + for i := 1; i < len(fieldNames); i++ { + tpl[i] = append(tpl[i], pnc.comma...) + tpl[i] = append(tpl[i], '\n') + tpl[i] = append(tpl[i], strings.Repeat(fm.Indent, 2)...) + tpl[i] = append(tpl[i], fieldNames[i]...) + tpl[i] = append(tpl[i], pnc.colon...) + tpl[i] = append(tpl[i], ' ') + } + + last := len(recMeta) + + tpl[last] = append(tpl[last], '\n') + tpl[last] = append(tpl[last], fm.Indent...) + tpl[last] = append(tpl[last], pnc.rBrace...) + + stdTpl := &stdTemplate{recTpl: tpl} + stdTpl.header = append(stdTpl.header, pnc.lBracket...) + stdTpl.footer = append(stdTpl.footer, pnc.rBracket...) + stdTpl.footer = append(stdTpl.footer, '\n') + stdTpl.recSep = append(stdTpl.recSep, pnc.comma...) + return stdTpl, nil +} + +// NewObjectRecordWriter writes out each record as a JSON object +// on its own line. For example: +// +// {"actor_id": 1, "first_name": "PENELOPE", "last_name": "GUINESS", "last_update": "2020-06-11T02:50:54Z"} +// {"actor_id": 2, "first_name": "NICK", "last_name": "WAHLBERG", "last_update": "2020-06-11T02:50:54Z"} +func NewObjectRecordWriter(out io.Writer, fm *output.Formatting) output.RecordWriter { + return &lineRecordWriter{ + out: out, + fm: fm, + newTplFn: newJSONObjectsTemplate, + } +} + +// NewArrayRecordWriter returns a RecordWriter that outputs each +// record as a JSON array on its own line. For example: +// +// [1, "PENELOPE", "GUINESS", "2020-06-11T02:50:54Z"] +// [2, "NICK", "WAHLBERG", "2020-06-11T02:50:54Z"] +func NewArrayRecordWriter(out io.Writer, fm *output.Formatting) output.RecordWriter { + return &lineRecordWriter{ + out: out, + fm: fm, + newTplFn: newJSONArrayTemplate, + } +} + +// lineRecordWriter is an output.RecordWriter that outputs each +// record as its own line. This type is used to generate +// both the "json array" and "json lines" output formats. +// +// For each element of a record, there is an encoding function in +// w.encodeFns. So, there's len(rec) encode fns. The elements of w.tpl +// surround the output of each encode func. Therefore there +// are len(rec)+1 tpl elements. +type lineRecordWriter struct { + err error + out io.Writer + fm *output.Formatting + recMeta sqlz.RecordMeta + + // outBuf holds the output of the writer prior to flushing. + outBuf *bytes.Buffer + + // newTplFn is invoked during open to get the "template" for + // generating output. + newTplFn func(sqlz.RecordMeta, *output.Formatting) ([][]byte, error) + + // tpl is a slice of []byte, where len(tpl) == len(recMeta) + 1. + tpl [][]byte + + // encodeFns holds an encoder func for each element of the record. + encodeFns []func(b []byte, v interface{}) ([]byte, error) +} + +// Open implements output.RecordWriter. +func (w *lineRecordWriter) Open(recMeta sqlz.RecordMeta) error { + if w.err != nil { + return w.err + } + + w.outBuf = &bytes.Buffer{} + w.recMeta = recMeta + + w.tpl, w.err = w.newTplFn(recMeta, w.fm) + if w.err != nil { + return w.err + } + w.encodeFns = getFieldEncoders(recMeta, w.fm) + return nil +} + +// WriteRecords implements output.RecordWriter. +func (w *lineRecordWriter) WriteRecords(recs []sqlz.Record) error { + if w.err != nil { + return w.err + } + + var err error + for i := range recs { + err = w.writeRecord(recs[i]) + if err != nil { + w.err = err + return err + } + } + return nil +} + +func (w *lineRecordWriter) writeRecord(rec sqlz.Record) error { + var err error + b := make([]byte, 0, 10) + + for i := range w.recMeta { + b = append(b, w.tpl[i]...) + b, err = w.encodeFns[i](b, rec[i]) + if err != nil { + return errz.Err(err) + } + } + + b = append(b, w.tpl[len(w.recMeta)]...) + w.outBuf.Write(b) + + if w.outBuf.Len() > output.FlushThreshold { + return w.Flush() + } + + return nil +} + +// Flush implements output.RecordWriter. +func (w *lineRecordWriter) Flush() error { + if w.err != nil { + return w.err + } + _, err := w.outBuf.WriteTo(w.out) + if err != nil { + return errz.Err(err) + } + return nil +} + +// Close implements output.RecordWriter. +func (w *lineRecordWriter) Close() error { + if w.err != nil { + return w.err + } + + return w.Flush() +} + +func newJSONObjectsTemplate(recMeta sqlz.RecordMeta, fm *output.Formatting) ([][]byte, error) { + tpl := make([][]byte, len(recMeta)+1) + clrs := internal.NewColors(fm) + pnc := newPunc(fm) + + fieldNames := make([][]byte, len(recMeta)) + var err error + for i := range recMeta { + fieldNames[i], err = encodeString(nil, recMeta[i].Name(), false) + if err != nil { + return nil, errz.Err(err) + } + if !fm.IsMonochrome() { + fieldNames[i] = clrs.AppendKey(nil, fieldNames[i]) + } + } + + tpl[0] = append(tpl[0], pnc.lBrace...) + tpl[0] = append(tpl[0], fieldNames[0]...) + tpl[0] = append(tpl[0], pnc.colon...) + if fm.Pretty { + tpl[0] = append(tpl[0], ' ') + } + + for i := 1; i < len(fieldNames); i++ { + tpl[i] = append(tpl[i], pnc.comma...) + if fm.Pretty { + tpl[i] = append(tpl[i], ' ') + } + + tpl[i] = append(tpl[i], fieldNames[i]...) + + tpl[i] = append(tpl[i], pnc.colon...) + if fm.Pretty { + tpl[i] = append(tpl[i], ' ') + } + } + + tpl[len(recMeta)] = append(tpl[len(recMeta)], pnc.rBrace...) + tpl[len(recMeta)] = append(tpl[len(recMeta)], '\n') + + return tpl, nil +} + +func newJSONArrayTemplate(recMeta sqlz.RecordMeta, fm *output.Formatting) ([][]byte, error) { + tpl := make([][]byte, len(recMeta)+1) + pnc := newPunc(fm) + + tpl[0] = append(tpl[0], pnc.lBracket...) + + for i := 1; i < len(recMeta); i++ { + tpl[i] = append(tpl[i], pnc.comma...) + if fm.Pretty { + tpl[i] = append(tpl[i], ' ') + } + } + + tpl[len(recMeta)] = append(tpl[len(recMeta)], pnc.rBracket...) + tpl[len(recMeta)] = append(tpl[len(recMeta)], '\n') + + return tpl, nil +} diff --git a/cli/output/jsonw/jsonw_test.go b/cli/output/jsonw/jsonw_test.go new file mode 100644 index 00000000..c8ddba7b --- /dev/null +++ b/cli/output/jsonw/jsonw_test.go @@ -0,0 +1,214 @@ +package jsonw_test + +import ( + "bytes" + "encoding/json" + "io" + "strings" + "testing" + "time" + + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/cli/output/jsonw" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" +) + +func TestRecordWriters(t *testing.T) { + const ( + wantStdJSONNoPretty = `[{"col_int":64,"col_float":64.64,"col_decimal":"10000000000000000.99","col_bool":true,"col_text":"hello","col_datetime":"1970-01-01T00:00:00Z","col_date":"1970-01-01","col_time":"00:00:00","col_bytes":"aGVsbG8="},{"col_int":null,"col_float":null,"col_decimal":null,"col_bool":null,"col_text":null,"col_datetime":null,"col_date":null,"col_time":null,"col_bytes":null},{"col_int":64,"col_float":64.64,"col_decimal":"10000000000000000.99","col_bool":true,"col_text":"hello","col_datetime":"1970-01-01T00:00:00Z","col_date":"1970-01-01","col_time":"00:00:00","col_bytes":"aGVsbG8="}] +` + wantStdJSONPretty = `[ + { + "col_int": 64, + "col_float": 64.64, + "col_decimal": "10000000000000000.99", + "col_bool": true, + "col_text": "hello", + "col_datetime": "1970-01-01T00:00:00Z", + "col_date": "1970-01-01", + "col_time": "00:00:00", + "col_bytes": "aGVsbG8=" + }, + { + "col_int": null, + "col_float": null, + "col_decimal": null, + "col_bool": null, + "col_text": null, + "col_datetime": null, + "col_date": null, + "col_time": null, + "col_bytes": null + }, + { + "col_int": 64, + "col_float": 64.64, + "col_decimal": "10000000000000000.99", + "col_bool": true, + "col_text": "hello", + "col_datetime": "1970-01-01T00:00:00Z", + "col_date": "1970-01-01", + "col_time": "00:00:00", + "col_bytes": "aGVsbG8=" + } +] +` + wantArrayNoPretty = `[64,64.64,"10000000000000000.99",true,"hello","1970-01-01T00:00:00Z","1970-01-01","00:00:00","aGVsbG8="] +[null,null,null,null,null,null,null,null,null] +[64,64.64,"10000000000000000.99",true,"hello","1970-01-01T00:00:00Z","1970-01-01","00:00:00","aGVsbG8="] +` + wantArrayPretty = `[64, 64.64, "10000000000000000.99", true, "hello", "1970-01-01T00:00:00Z", "1970-01-01", "00:00:00", "aGVsbG8="] +[null, null, null, null, null, null, null, null, null] +[64, 64.64, "10000000000000000.99", true, "hello", "1970-01-01T00:00:00Z", "1970-01-01", "00:00:00", "aGVsbG8="] +` + wantObjectsNoPretty = `{"col_int":64,"col_float":64.64,"col_decimal":"10000000000000000.99","col_bool":true,"col_text":"hello","col_datetime":"1970-01-01T00:00:00Z","col_date":"1970-01-01","col_time":"00:00:00","col_bytes":"aGVsbG8="} +{"col_int":null,"col_float":null,"col_decimal":null,"col_bool":null,"col_text":null,"col_datetime":null,"col_date":null,"col_time":null,"col_bytes":null} +{"col_int":64,"col_float":64.64,"col_decimal":"10000000000000000.99","col_bool":true,"col_text":"hello","col_datetime":"1970-01-01T00:00:00Z","col_date":"1970-01-01","col_time":"00:00:00","col_bytes":"aGVsbG8="} +` + wantObjectsPretty = `{"col_int": 64, "col_float": 64.64, "col_decimal": "10000000000000000.99", "col_bool": true, "col_text": "hello", "col_datetime": "1970-01-01T00:00:00Z", "col_date": "1970-01-01", "col_time": "00:00:00", "col_bytes": "aGVsbG8="} +{"col_int": null, "col_float": null, "col_decimal": null, "col_bool": null, "col_text": null, "col_datetime": null, "col_date": null, "col_time": null, "col_bytes": null} +{"col_int": 64, "col_float": 64.64, "col_decimal": "10000000000000000.99", "col_bool": true, "col_text": "hello", "col_datetime": "1970-01-01T00:00:00Z", "col_date": "1970-01-01", "col_time": "00:00:00", "col_bytes": "aGVsbG8="} +` + ) + + testCases := []struct { + name string + pretty bool + color bool + factoryFn func(io.Writer, *output.Formatting) output.RecordWriter + multiline bool + want string + }{ + { + name: "std_no_pretty", + pretty: false, + color: false, + factoryFn: jsonw.NewStdRecordWriter, + want: wantStdJSONNoPretty, + }, + { + name: "std_pretty", + pretty: true, + color: false, + factoryFn: jsonw.NewStdRecordWriter, + want: wantStdJSONPretty, + }, + { + name: "array_no_pretty", + pretty: false, + color: false, + multiline: true, + factoryFn: jsonw.NewArrayRecordWriter, + want: wantArrayNoPretty, + }, + { + name: "array_pretty", + pretty: true, + color: false, + multiline: true, + factoryFn: jsonw.NewArrayRecordWriter, + want: wantArrayPretty, + }, + { + name: "object_no_pretty", + pretty: false, + color: false, + multiline: true, + factoryFn: jsonw.NewObjectRecordWriter, + want: wantObjectsNoPretty, + }, + { + name: "object_pretty", + pretty: true, + color: false, + multiline: true, + factoryFn: jsonw.NewObjectRecordWriter, + want: wantObjectsPretty, + }, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + colNames, kinds := fixt.ColNamePerKind(false, false, false) + recMeta := testh.NewRecordMeta(colNames, kinds) + + v0, v1, v2, v3, v4, v5, v6, v7, v8 := int64(64), float64(64.64), "10000000000000000.99", true, "hello", time.Unix(0, 0).UTC(), time.Unix(0, 0).UTC(), time.Unix(0, 0).UTC(), []byte("hello") + + recs := []sqlz.Record{ + {&v0, &v1, &v2, &v3, &v4, &v5, &v6, &v7, &v8}, + {nil, nil, nil, nil, nil, nil, nil, nil, nil}, + {&v0, &v1, &v2, &v3, &v4, &v5, &v6, &v7, &v8}, + } + + buf := &bytes.Buffer{} + fm := output.NewFormatting() + fm.EnableColor(tc.color) + fm.Pretty = tc.pretty + + w := tc.factoryFn(buf, fm) + + require.NoError(t, w.Open(recMeta)) + require.NoError(t, w.WriteRecords(recs)) + require.NoError(t, w.Close()) + require.Equal(t, tc.want, buf.String()) + + if !tc.multiline { + require.True(t, json.Valid(buf.Bytes())) + return + } + + lines := strings.Split(strings.TrimSpace(buf.String()), "\n") + require.Equal(t, len(recs), len(lines)) + for _, line := range lines { + require.True(t, json.Valid([]byte(line))) + } + }) + } +} + +func TestErrorWriter(t *testing.T) { + testCases := []struct { + name string + pretty bool + color bool + want string + }{ + { + name: "no_pretty", + pretty: false, + color: false, + want: "{\"error\": \"err1\"}\n", + }, + { + name: "pretty", + pretty: true, + color: false, + want: "{\n \"error\": \"err1\"\n}\n", + }, + } + + for _, tc := range testCases { + tc := tc + + t.Run(t.Name(), func(t *testing.T) { + buf := &bytes.Buffer{} + fm := output.NewFormatting() + fm.Pretty = tc.pretty + fm.EnableColor(tc.color) + + errw := jsonw.NewErrorWriter(testlg.New(t), buf, fm) + errw.Error(errz.New("err1")) + got := buf.String() + + require.Equal(t, tc.want, got) + }) + } +} diff --git a/cli/output/jsonw/metadataw.go b/cli/output/jsonw/metadataw.go new file mode 100644 index 00000000..c4850cde --- /dev/null +++ b/cli/output/jsonw/metadataw.go @@ -0,0 +1,64 @@ +package jsonw + +import ( + "bytes" + "fmt" + "io" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/cli/output/jsonw/internal" + jcolorenc "github.com/neilotoole/sq/cli/output/jsonw/internal/jcolorenc" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// mdWriter implements output.MetadataWriter for JSON. +type mdWriter struct { + out io.Writer + fm *output.Formatting +} + +// NewMetadataWriter returns a new output.MetadataWriter instance +// that outputs metadata in JSON. +func NewMetadataWriter(out io.Writer, fm *output.Formatting) output.MetadataWriter { + return &mdWriter{out: out, fm: fm} +} + +func (w *mdWriter) write(v interface{}) error { + buf := &bytes.Buffer{} + + enc := jcolorenc.NewEncoder(buf) + enc.SetColors(internal.NewColors(w.fm)) + enc.SetEscapeHTML(false) + if w.fm.Pretty { + enc.SetIndent("", w.fm.Indent) + } + + err := enc.Encode(v) + if err != nil { + return errz.Err(err) + } + + _, err = fmt.Fprint(w.out, buf.String()) + if err != nil { + return errz.Err(err) + } + + return nil +} + +// DriverMetadata implements output.MetadataWriter. +func (w *mdWriter) DriverMetadata(md []driver.Metadata) error { + return w.write(md) +} + +// TableMetadata implements output.MetadataWriter. +func (w *mdWriter) TableMetadata(md *source.TableMetadata) error { + return w.write(md) +} + +// SourceMetadata implements output.MetadataWriter. +func (w *mdWriter) SourceMetadata(md *source.Metadata) error { + return w.write(md) +} diff --git a/cli/output/markdownw/markdownw.go b/cli/output/markdownw/markdownw.go new file mode 100644 index 00000000..1fdcd7ac --- /dev/null +++ b/cli/output/markdownw/markdownw.go @@ -0,0 +1,130 @@ +// Package markdownw implements writers for Markdown. +package markdownw + +import ( + "bytes" + "encoding/base64" + "fmt" + "html" + "io" + "strconv" + "strings" + "time" + + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// RecordWriter implements output.RecordWriter. +type RecordWriter struct { + recMeta sqlz.RecordMeta + out io.Writer + buf *bytes.Buffer +} + +// NewRecordWriter returns a writer instance. +func NewRecordWriter(out io.Writer) *RecordWriter { + return &RecordWriter{out: out} +} + +// Open implements output.RecordWriter. +func (w *RecordWriter) Open(recMeta sqlz.RecordMeta) error { + w.recMeta = recMeta + w.buf = &bytes.Buffer{} + + // Write the header + for i, field := range recMeta { + w.buf.WriteString("| ") + w.buf.WriteString(field.Name() + " ") + + if i == len(recMeta)-1 { + w.buf.WriteString("|\n") + } + } + + // Write the header separator row + for i := range recMeta { + w.buf.WriteString("| --- ") + + if i == len(recMeta)-1 { + w.buf.WriteString("|\n") + } + } + + return nil +} + +// Flush implements output.RecordWriter. +func (w *RecordWriter) Flush() error { + _, err := w.buf.WriteTo(w.out) // resets buf + return err +} + +// Close implements output.RecordWriter. +func (w *RecordWriter) Close() error { + return w.Flush() +} + +func (w *RecordWriter) writeRecord(rec sqlz.Record) error { + var s string + for i, field := range rec { + w.buf.WriteString("| ") + + switch val := field.(type) { + default: + // should never happen + s = escapeMarkdown(fmt.Sprintf("%v", val)) + + case nil: + // nil is rendered as empty string, which this cell already is + case *int64: + s = strconv.FormatInt(*val, 10) + case *string: + s = escapeMarkdown(*val) + case *bool: + s = strconv.FormatBool(*val) + case *float64: + s = stringz.FormatFloat(*val) + case *[]byte: + s = base64.StdEncoding.EncodeToString(*val) + case *time.Time: + switch w.recMeta[i].Kind() { + default: + s = val.Format(stringz.DatetimeFormat) + case sqlz.KindTime: + s = val.Format(stringz.TimeFormat) + case sqlz.KindDate: + s = val.Format(stringz.DateFormat) + } + } + + w.buf.WriteString(s + " ") + } + + w.buf.WriteString("|\n") + return nil +} + +// WriteRecords implements output.RecordWriter. +func (w *RecordWriter) WriteRecords(recs []sqlz.Record) error { + var err error + for _, rec := range recs { + err = w.writeRecord(rec) + if err != nil { + return err + } + } + + return nil +} + +// escapeMarkdown is quick effort at escaping markdown +// table cell text. It is not at all tested. Replace this +// function with a real library call at the earliest opportunity. +func escapeMarkdown(s string) string { + s = html.EscapeString(s) + s = strings.Replace(s, "|", "|", -1) + s = strings.Replace(s, "\r\n", "
", -1) + s = strings.Replace(s, "\n", "
", -1) + return s +} diff --git a/cli/output/markdownw/markdownw_test.go b/cli/output/markdownw/markdownw_test.go new file mode 100644 index 00000000..34530dd3 --- /dev/null +++ b/cli/output/markdownw/markdownw_test.go @@ -0,0 +1,52 @@ +package markdownw_test + +import ( + "bytes" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output/markdownw" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestRecordWriter(t *testing.T) { + const ( + want0 = `| actor_id | first_name | last_name | last_update | +| --- | --- | --- | --- | +` + want3 = `| actor_id | first_name | last_name | last_update | +| --- | --- | --- | --- | +| 1 | PENELOPE | GUINESS | 2020-06-11T02:50:54Z | +| 2 | NICK | WAHLBERG | 2020-06-11T02:50:54Z | +| 3 | ED | CHASE | 2020-06-11T02:50:54Z | +` + ) + + testCases := []struct { + name string + numRecs int + want string + }{ + {name: "actor_0", numRecs: 0, want: want0}, + {name: "actor_3", numRecs: 3, want: want3}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + recMeta, recs := testh.RecordsFromTbl(t, sakila.SL3, sakila.TblActor) + recs = recs[0:tc.numRecs] + + buf := &bytes.Buffer{} + w := markdownw.NewRecordWriter(buf) + require.NoError(t, w.Open(recMeta)) + + require.NoError(t, w.WriteRecords(recs)) + require.NoError(t, w.Close()) + require.Equal(t, tc.want, buf.String()) + }) + } +} diff --git a/cli/output/raww/raww.go b/cli/output/raww/raww.go new file mode 100644 index 00000000..24ec49e1 --- /dev/null +++ b/cli/output/raww/raww.go @@ -0,0 +1,88 @@ +package raww + +import ( + "fmt" + "io" + "strconv" + "time" + + "github.com/neilotoole/sq/libsq/stringz" + + "github.com/neilotoole/sq/cli/output" + + "github.com/neilotoole/sq/libsq/sqlz" +) + +// recordWriter implements output.RecordWriter for raw output. +// This is typically used to output a single blob result, such +// as a gif etc. The elements of each record are directly +// written to the backing writer without any separator, or +// encoding, etc. +type recordWriter struct { + out io.Writer + recMeta sqlz.RecordMeta +} + +// NewRecordWriter returns an output.RecordWriter instance for +// raw output. This is typically used to output a single blob result, +// such as a gif etc. The elements of each record are directly +// written to the backing writer without any separator, or +// encoding, etc.. +func NewRecordWriter(out io.Writer) output.RecordWriter { + return &recordWriter{out: out} +} + +// Open implements output.RecordWriter. +func (w *recordWriter) Open(recMeta sqlz.RecordMeta) error { + w.recMeta = recMeta + return nil +} + +// WriteRecords implements output.RecordWriter. +func (w *recordWriter) WriteRecords(recs []sqlz.Record) error { + if len(recs) == 0 { + return nil + } + + for _, rec := range recs { + for i, val := range rec { + switch val := val.(type) { + case nil: + case *[]byte: + _, _ = w.out.Write(*val) + case *string: + _, _ = w.out.Write([]byte(*val)) + case *bool: + fmt.Fprint(w.out, strconv.FormatBool(*val)) + case *int64: + fmt.Fprint(w.out, strconv.FormatInt(*val, 10)) + case *float64: + fmt.Fprint(w.out, stringz.FormatFloat(*val)) + case *time.Time: + switch w.recMeta[i].Kind() { + default: + fmt.Fprint(w.out, val.Format(stringz.DatetimeFormat)) + case sqlz.KindTime: + fmt.Fprint(w.out, val.Format(stringz.TimeFormat)) + case sqlz.KindDate: + fmt.Fprint(w.out, val.Format(stringz.DateFormat)) + } + default: + // should never happen + fmt.Fprintf(w.out, "%s", val) + } + } + } + + return nil +} + +// Flush implements output.RecordWriter. +func (w *recordWriter) Flush() error { + return nil +} + +// Close implements output.RecordWriter. +func (w *recordWriter) Close() error { + return nil +} diff --git a/cli/output/raww/raww_test.go b/cli/output/raww/raww_test.go new file mode 100644 index 00000000..cc1a48e1 --- /dev/null +++ b/cli/output/raww/raww_test.go @@ -0,0 +1,67 @@ +package raww_test + +import ( + "bytes" + "image/gif" + "testing" + + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/proj" + + "github.com/neilotoole/lg" + "github.com/neilotoole/sq/testh/testsrc" + + "github.com/neilotoole/sq/cli/output/raww" + + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" + "github.com/stretchr/testify/require" +) + +func TestRecordWriter_TblActor(t *testing.T) { + testCases := []struct { + name string + numRecs int + want []byte + }{ + {name: "actor_0", numRecs: 0, want: nil}, + {name: "actor_3", numRecs: 3, want: []byte("1PENELOPEGUINESS2020-06-11T02:50:54Z2NICKWAHLBERG2020-06-11T02:50:54Z3EDCHASE2020-06-11T02:50:54Z")}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + recMeta, recs := testh.RecordsFromTbl(t, sakila.SL3, sakila.TblActor) + recs = recs[0:tc.numRecs] + + buf := &bytes.Buffer{} + w := raww.NewRecordWriter(buf) + require.NoError(t, w.Open(recMeta)) + require.NoError(t, w.WriteRecords(recs)) + require.NoError(t, w.Close()) + require.Equal(t, tc.want, buf.Bytes()) + }) + } +} + +func TestRecordWriter_TblBytes(t *testing.T) { + th := testh.New(t) + th.Log = lg.Discard() + src := th.Source(testsrc.MiscDB) + sink, err := th.QuerySQL(src, "SELECT col_bytes FROM tbl_bytes WHERE col_name='gopher.gif'") + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) + + fBytes := proj.ReadFile(fixt.GopherPath) + + buf := &bytes.Buffer{} + w := raww.NewRecordWriter(buf) + require.NoError(t, w.Open(sink.RecMeta)) + require.NoError(t, w.WriteRecords(sink.Recs)) + require.NoError(t, w.Close()) + + require.Equal(t, fBytes, buf.Bytes()) + _, err = gif.Decode(bytes.NewReader(buf.Bytes())) + require.NoError(t, err) +} diff --git a/cli/output/tablew/README.md b/cli/output/tablew/README.md new file mode 100644 index 00000000..f6d5010e --- /dev/null +++ b/cli/output/tablew/README.md @@ -0,0 +1,15 @@ +# Package `tablew` + +Package `tablew` implements text table output writers. + +The actual rendering of the text table is handled by a modified version of +[`olekukonko/tablewriter`](https://github.com/olekukonko/tablewriter), +which can be found in the `internal` sub-package. At the time, `tablewriter` +didn't provide all the functionality that sq required. However, +that package has been significantly developed since then +fork, and it may be possible that we could dispense with the forked +version entirely and directly use a newer version of `tablewriter`. + +This entire package could use a rewrite, a lot has changed with sq +since this package was first created. So, if you see code in here +that doesn't make sense to you, you're probably judging it correctly. diff --git a/cli/output/tablew/errorwriter.go b/cli/output/tablew/errorwriter.go new file mode 100644 index 00000000..776329ae --- /dev/null +++ b/cli/output/tablew/errorwriter.go @@ -0,0 +1,25 @@ +package tablew + +import ( + "fmt" + "io" + + "github.com/neilotoole/sq/cli/output" +) + +// errorWriter implements output.ErrorWriter. +type errorWriter struct { + w io.Writer + f *output.Formatting +} + +// NewErrorWriter returns an output.ErrorWriter that +// outputs in text format. +func NewErrorWriter(w io.Writer, f *output.Formatting) output.ErrorWriter { + return &errorWriter{w: w, f: f} +} + +// Error implements output.ErrorWriter. +func (w *errorWriter) Error(err error) { + fmt.Fprintln(w.w, w.f.Error.Sprintf("sq: %v", err)) +} diff --git a/cmd/out/table/internal/texttable.go b/cli/output/tablew/internal/texttable.go similarity index 78% rename from cmd/out/table/internal/texttable.go rename to cli/output/tablew/internal/texttable.go index 6b6da5fc..9bdc9e3a 100644 --- a/cmd/out/table/internal/texttable.go +++ b/cli/output/tablew/internal/texttable.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a MIT // license that can be found in the LICENSE file. -// This module is a Table Writer API for the Go Programming Language. +// This module is a Table writer API for the Go Programming Language. // The protocols were written in pure Go and works on windows and unix systems // Package tablewriter creates & generates text based table @@ -13,8 +13,6 @@ import ( "io" "regexp" "strings" - - "github.com/neilotoole/sq/cmd/out" ) // MaxRowWidth defines maximum row width @@ -58,77 +56,83 @@ type Border struct { // Table struct type Table struct { - out io.Writer - rows [][]string - lines [][][]string - cs map[int]int - rs map[int]int - headers []string - footers []string - autoFmt bool - autoWrap bool - mW int - pCenter string - pRow string - pColumn string - tColumn int - tRow int - hAlign int - fAlign int - align int - rowLine bool - hdrLine bool - hdrDisable bool - borders Border - colSize int - colTrans map[int]out.TextTransformer - cellTrans map[string]out.TextTransformer + out io.Writer + rows [][]string + lines [][][]string + cs map[int]int + rs map[int]int + headers []string + footers []string + autoFmt bool + autoWrap bool + mW int + pCenter string + pRow string + pColumn string + tColumn int + tRow int + hAlign int + fAlign int + align int + rowLine bool + hdrLine bool + hdrDisable bool + borders Border + colSize int + colTrans map[int]textTransFunc + cellTrans map[string]textTransFunc + headerTrans textTransFunc } -// NewWriter returns a new table that writes to writer. -func NewWriter(writer io.Writer) *Table { +// NewTable returns a new table that writes to writer. +func NewTable(writer io.Writer) *Table { t := &Table{ - out: writer, - rows: [][]string{}, - lines: [][][]string{}, - cs: make(map[int]int), - rs: make(map[int]int), - headers: []string{}, - footers: []string{}, - autoFmt: true, - autoWrap: true, - mW: MaxRowWidth, - pCenter: BorderCenterChar, - pRow: BorderRowChar, - pColumn: BorderColumnChar, - tColumn: -1, - tRow: -1, - hAlign: AlignDefault, - fAlign: AlignDefault, - align: AlignDefault, - rowLine: false, - hdrLine: false, - hdrDisable: false, - borders: Border{Left: true, Right: true, Bottom: true, Top: true}, - colSize: -1, - colTrans: make(map[int]out.TextTransformer), - cellTrans: make(map[string]out.TextTransformer), + out: writer, + rows: [][]string{}, + lines: [][][]string{}, + cs: make(map[int]int), + rs: make(map[int]int), + headers: []string{}, + footers: []string{}, + autoFmt: true, + autoWrap: true, + mW: MaxRowWidth, + pCenter: BorderCenterChar, + pRow: BorderRowChar, + pColumn: BorderColumnChar, + tColumn: -1, + tRow: -1, + hAlign: AlignDefault, + fAlign: AlignDefault, + align: AlignDefault, + rowLine: false, + hdrLine: false, + hdrDisable: false, + borders: Border{Left: true, Right: true, Bottom: true, Top: true}, + colSize: -1, + colTrans: make(map[int]textTransFunc), + cellTrans: make(map[string]textTransFunc), + headerTrans: fmt.Sprint, } return t } // SetColTrans sets the column transformer. -func (t *Table) SetColTrans(col int, transform out.TextTransformer) { - t.colTrans[col] = transform +func (t *Table) SetColTrans(col int, trans textTransFunc) { + t.colTrans[col] = trans } // SetCellTrans sets the cell transformer. -func (t *Table) SetCellTrans(row int, col int, transform out.TextTransformer) { - t.cellTrans[fmt.Sprintf("[%v][%v]", row, col)] = transform +func (t *Table) SetCellTrans(row int, col int, trans textTransFunc) { + t.cellTrans[fmt.Sprintf("[%v][%v]", row, col)] = trans } -func (t *Table) getCellTrans(row int, col int) out.TextTransformer { +// SetHeaderTrans sets the transformer for the header row. +func (t *Table) SetHeaderTrans(trans textTransFunc) { + t.headerTrans = trans +} +func (t *Table) getCellTrans(row int, col int) textTransFunc { colTrans := t.getColTrans(col) key := fmt.Sprintf("[%v][%v]", row, col) cellTrans := t.cellTrans[key] @@ -144,7 +148,7 @@ func (t *Table) getCellTrans(row int, col int) out.TextTransformer { } } -func (t Table) getColTrans(col int) out.TextTransformer { +func (t *Table) getColTrans(col int) textTransFunc { trans := t.colTrans[col] if trans != nil { @@ -156,8 +160,8 @@ func (t Table) getColTrans(col int) out.TextTransformer { } } -// Render table output -func (t Table) Render() { +// renderAll table output +func (t *Table) RenderAll() { if t.borders.Top { t.printLine(true) } @@ -290,7 +294,7 @@ func (t *Table) AppendBulk(rows [][]string) { } // Print line based on row width -func (t Table) printLine(nl bool) { +func (t *Table) printLine(nl bool) { fmt.Fprint(t.out, t.pCenter) for i := 0; i < len(t.cs); i++ { v := t.cs[i] @@ -319,7 +323,7 @@ func pad(align int) func(string, string, int) string { } // Print heading information -func (t Table) printHeading() { +func (t *Table) printHeading() { // Check if headers is available if len(t.headers) < 1 || t.hdrDisable { return @@ -342,15 +346,11 @@ func (t Table) printHeading() { if t.autoFmt { h = Title(h) } - pad := ConditionString((i == end && !t.borders.Left), Space, t.pColumn) + pad := ConditionString(i == end && !t.borders.Left, Space, t.pColumn) - out.Color.Header.Printf("%s %s ", padFunc(h, Space, v), pad) + head := t.headerTrans(fmt.Sprintf("%s %s ", padFunc(h, Space, v), pad)) + fmt.Print(head) - //color.Set(out.Attrs.Header) - //fmt.Fprintf(t.out, "%s %s ", - // padFunc(h, Space, v), - // pad) - //color.Unset() } // Next line fmt.Fprintln(t.out) @@ -360,7 +360,7 @@ func (t Table) printHeading() { } // Print heading information -func (t Table) printFooter() { +func (t *Table) printFooter() { // Check if headers is available if len(t.footers) < 1 { return @@ -387,7 +387,7 @@ func (t Table) printFooter() { if t.autoFmt { f = Title(f) } - pad := ConditionString((i == end && !t.borders.Top), Space, t.pColumn) + pad := ConditionString(i == end && !t.borders.Top, Space, t.pColumn) if len(t.footers[i]) == 0 { pad = Space @@ -451,7 +451,7 @@ func (t Table) printFooter() { } -func (t Table) printRows() { +func (t *Table) printRows() { for i, lines := range t.lines { t.printRow(lines, i) } @@ -459,7 +459,7 @@ func (t Table) printRows() { } // Print Row Information -func (t Table) printRow(columns [][]string, colKey int) { +func (t *Table) printRow(columns [][]string, colKey int) { // Get Maximum Height max := t.rs[colKey] total := len(columns) @@ -480,7 +480,7 @@ func (t Table) printRow(columns [][]string, colKey int) { for y := 0; y < total; y++ { // Check if border is set - fmt.Fprint(t.out, ConditionString((!t.borders.Left && y == 0), Empty, t.pColumn)) + fmt.Fprint(t.out, ConditionString(!t.borders.Left && y == 0, Empty, t.pColumn)) text := columns[y][x] @@ -568,3 +568,7 @@ func (t *Table) parseDimension(str string, colKey, rowKey int) []string { } return raw } + +// textTransFunc is a function that can transform text, typically +// to add color. +type textTransFunc func(a ...interface{}) string diff --git a/cmd/out/table/internal/util.go b/cli/output/tablew/internal/util.go similarity index 96% rename from cmd/out/table/internal/util.go rename to cli/output/tablew/internal/util.go index 80547f00..356508c5 100644 --- a/cmd/out/table/internal/util.go +++ b/cli/output/tablew/internal/util.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a MIT // license that can be found in the LICENSE file. -// This module is a Table Writer API for the Go Programming Language. +// This module is a Table writer API for the Go Programming Language. // The protocols were written in pure Go and works on windows and unix systems package internal diff --git a/cmd/out/table/internal/wrap.go b/cli/output/tablew/internal/wrap.go similarity index 97% rename from cmd/out/table/internal/wrap.go rename to cli/output/tablew/internal/wrap.go index 9895eb7f..95b6ffb2 100644 --- a/cmd/out/table/internal/wrap.go +++ b/cli/output/tablew/internal/wrap.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a MIT // license that can be found in the LICENSE file. -// This module is a Table Writer API for the Go Programming Language. +// This module is a Table writer API for the Go Programming Language. // The protocols were written in pure Go and works on windows and unix systems package internal diff --git a/cli/output/tablew/metadatawriter.go b/cli/output/tablew/metadatawriter.go new file mode 100644 index 00000000..fdf03a22 --- /dev/null +++ b/cli/output/tablew/metadatawriter.go @@ -0,0 +1,153 @@ +package tablew + +import ( + "fmt" + "io" + "strconv" + "strings" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" +) + +type mdWriter struct { + tbl *table +} + +// NewMetadataWriter returns a new output.MetadataWriter instance +// that outputs metadata in table format. +func NewMetadataWriter(out io.Writer, fm *output.Formatting) output.MetadataWriter { + tbl := &table{out: out, fm: fm, header: true} + w := &mdWriter{tbl: tbl} + w.tbl.reset() + return w +} + +// DriverMetadata implements output.MetadataWriter. +func (w *mdWriter) DriverMetadata(drvrs []driver.Metadata) error { + headers := []string{"DRIVER", "DESCRIPTION", "USER-DEFINED", "DOC"} + w.tbl.tblImpl.SetHeader(headers) + w.tbl.tblImpl.SetColTrans(2, w.tbl.fm.Bool.SprintFunc()) + + var rows [][]string + for _, md := range drvrs { + row := []string{string(md.Type), md.Description, strconv.FormatBool(md.UserDefined), md.Doc} + rows = append(rows, row) + } + w.tbl.appendRowsAndRenderAll(rows) + return nil +} + +// TableMetadata implements output.MetadataWriter. +func (w *mdWriter) TableMetadata(tblMeta *source.TableMetadata) error { + headers := []string{"TABLE", "ROWS", "SIZE", "NUM COLS", "COL NAMES", "COL TYPES"} + + var rows [][]string + + colNames := make([]string, len(tblMeta.Columns)) + colTypes := make([]string, len(tblMeta.Columns)) + + for i, col := range tblMeta.Columns { + colNames[i] = col.Name + colTypes[i] = col.ColumnType + } + + size := "-" + if tblMeta.Size != -1 { + size = stringz.ByteSized(tblMeta.Size, 1, "") + } + + row := []string{ + tblMeta.Name, + fmt.Sprintf("%d", tblMeta.RowCount), + size, + fmt.Sprintf("%d", len(tblMeta.Columns)), + strings.Join(colNames, ", "), + strings.Join(colTypes, ", "), + } + rows = append(rows, row) + + w.tbl.tblImpl.SetHeader(headers) + w.tbl.tblImpl.SetColTrans(1, w.tbl.fm.Number.SprintFunc()) + w.tbl.tblImpl.SetColTrans(3, w.tbl.fm.Number.SprintFunc()) + + w.tbl.appendRowsAndRenderAll(rows) + return nil +} + +// SourceMetadata implements output.MetadataWriter. +func (w *mdWriter) SourceMetadata(meta *source.Metadata) error { + var headers []string + var row []string + + if meta.Name == meta.FQName { + headers = []string{"HANDLE", "DRIVER", "NAME", "SIZE", "TABLES", "LOCATION"} + w.tbl.tblImpl.SetColTrans(3, w.tbl.fm.Number.SprintFunc()) + w.tbl.tblImpl.SetColTrans(4, w.tbl.fm.Number.SprintFunc()) + row = []string{ + meta.Handle, + meta.SourceType.String(), + meta.Name, + stringz.ByteSized(meta.Size, 1, ""), + fmt.Sprintf("%d", len(meta.Tables)), + meta.Location, + } + } else { + headers = []string{"HANDLE", "DRIVER", "NAME", "FQ NAME", "SIZE", "TABLES", "LOCATION"} + w.tbl.tblImpl.SetColTrans(4, w.tbl.fm.Number.SprintFunc()) + w.tbl.tblImpl.SetColTrans(5, w.tbl.fm.Number.SprintFunc()) + row = []string{ + meta.Handle, + meta.SourceType.String(), + meta.Name, + meta.FQName, + stringz.ByteSized(meta.Size, 1, ""), + fmt.Sprintf("%d", len(meta.Tables)), + meta.Location, + } + } + + w.tbl.tblImpl.SetHeader(headers) + w.tbl.renderRow(row) + w.tbl.reset() + fmt.Fprintln(w.tbl.out) + + headers = []string{"TABLE", "ROWS", "SIZE", "NUM COLS", "COL NAMES", "COL TYPES"} + + var rows [][]string + + for _, tbl := range meta.Tables { + + colNames := make([]string, len(tbl.Columns)) + colTypes := make([]string, len(tbl.Columns)) + + for i, col := range tbl.Columns { + colNames[i] = col.Name + colTypes[i] = col.ColumnType + } + + size := "-" + if tbl.Size != -1 { + size = stringz.ByteSized(tbl.Size, 1, "") + } + + row := []string{ + tbl.Name, + fmt.Sprintf("%d", tbl.RowCount), + size, + fmt.Sprintf("%d", len(tbl.Columns)), + strings.Join(colNames, ", "), + strings.Join(colTypes, ", "), + } + rows = append(rows, row) + } + + w.tbl.tblImpl.SetHeader(headers) + w.tbl.tblImpl.SetColTrans(1, w.tbl.fm.Number.SprintFunc()) + w.tbl.tblImpl.SetColTrans(3, w.tbl.fm.Number.SprintFunc()) + + w.tbl.appendRowsAndRenderAll(rows) + return nil +} diff --git a/cli/output/tablew/notifywriter.go b/cli/output/tablew/notifywriter.go new file mode 100644 index 00000000..e55d3523 --- /dev/null +++ b/cli/output/tablew/notifywriter.go @@ -0,0 +1,32 @@ +package tablew + +import ( + "io" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq/notify" +) + +type NotifyWriter struct { + tbl *table +} + +func NewNotifyWriter(out io.Writer, fm *output.Formatting, header bool) *NotifyWriter { + tbl := &table{out: out, header: header, fm: fm} + w := &NotifyWriter{tbl: tbl} + w.tbl.reset() + return w +} + +func (w *NotifyWriter) NotifyDestinations(dests []notify.Destination) error { + w.tbl.tblImpl.SetHeader([]string{"NOTIFIER", "TYPE", "TARGET"}) + var rows [][]string + + for _, dest := range dests { + row := []string{dest.Label, string(dest.Type), dest.Target} + rows = append(rows, row) + } + + w.tbl.appendRowsAndRenderAll(rows) + return nil +} diff --git a/cli/output/tablew/pingwriter.go b/cli/output/tablew/pingwriter.go new file mode 100644 index 00000000..a52cf20c --- /dev/null +++ b/cli/output/tablew/pingwriter.go @@ -0,0 +1,66 @@ +package tablew + +import ( + "context" + "fmt" + "io" + "strconv" + "time" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq/source" +) + +// NewPingWriter returns a new instance. It is not safe for +// concurrent use. +func NewPingWriter(out io.Writer, fm *output.Formatting) *PingWriter { + return &PingWriter{out: out, fm: fm} +} + +// PingWriter implements output.PingWriter. +type PingWriter struct { + out io.Writer + fm *output.Formatting + + // handleLenMax is the maximum width of any of + // the sources' handles. + handleWidthMax int +} + +func (w *PingWriter) Open(srcs []*source.Source) { + for _, src := range srcs { + if len(src.Handle) > w.handleWidthMax { + w.handleWidthMax = len(src.Handle) + } + } +} + +func (w *PingWriter) Result(src *source.Source, d time.Duration, err error) { + w.fm.Number.Fprintf(w.out, "%-"+strconv.Itoa(w.handleWidthMax)+"s", src.Handle) + fmt.Fprintf(w.out, "%10s ", d.Truncate(time.Millisecond).String()) + + // The ping result is one of: + // - success + // - timeout + // - some other error + + switch { + case err == nil: + w.fm.Success.Fprintf(w.out, "pong") + + case err == context.DeadlineExceeded: + w.fm.Error.Fprintf(w.out, "fail") + // Special rendering for timeout error + fmt.Fprint(w.out, " timeout exceeded") + + default: // err other than timeout err + w.fm.Error.Fprintf(w.out, "fail") + fmt.Fprintf(w.out, " %s", err) + } + + fmt.Fprintf(w.out, "\n") +} + +func (w *PingWriter) Close() error { + return nil +} diff --git a/cli/output/tablew/recordwriter.go b/cli/output/tablew/recordwriter.go new file mode 100644 index 00000000..ee1cc1d9 --- /dev/null +++ b/cli/output/tablew/recordwriter.go @@ -0,0 +1,64 @@ +package tablew + +import ( + "io" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// RecordWriter implements several of pkg out's writer interfaces. +type RecordWriter struct { + tbl *table + recMeta sqlz.RecordMeta + rowCount int +} + +func NewRecordWriter(out io.Writer, fm *output.Formatting, header bool) *RecordWriter { + tbl := &table{out: out, fm: fm, header: header} + w := &RecordWriter{tbl: tbl} + w.tbl.reset() + return w +} + +func (w *RecordWriter) Open(recMeta sqlz.RecordMeta) error { + w.recMeta = recMeta + return nil +} + +func (w *RecordWriter) Flush() error { + return nil +} + +func (w *RecordWriter) Close() error { + if w.rowCount == 0 { + // no data to write + return nil + } + + w.tbl.tblImpl.SetAutoWrapText(false) + header := w.recMeta.Names() + w.tbl.tblImpl.SetHeader(header) + + w.tbl.renderAll() + return nil +} + +func (w *RecordWriter) WriteRecords(recs []sqlz.Record) error { + kinds := w.recMeta.Kinds() + + var tblRows [][]string + for _, rec := range recs { + tblRow := make([]string, len(rec)) + + for i, val := range rec { + tblRow[i] = w.tbl.renderResultCell(kinds[i], val) + } + + tblRows = append(tblRows, tblRow) + w.rowCount++ + } + + w.tbl.appendRows(tblRows) + return nil +} diff --git a/cli/output/tablew/sourcewriter.go b/cli/output/tablew/sourcewriter.go new file mode 100644 index 00000000..5a2cc93f --- /dev/null +++ b/cli/output/tablew/sourcewriter.go @@ -0,0 +1,133 @@ +package tablew + +import ( + "fmt" + "io" + "strings" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq/source" +) + +type sourceWriter struct { + tbl *table + verbose bool +} + +// NewSourceWriter returns a source writer that outputs source +// details in text table format. +func NewSourceWriter(out io.Writer, fm *output.Formatting, header, verbose bool) output.SourceWriter { + tbl := &table{out: out, fm: fm, header: header} + w := &sourceWriter{tbl: tbl, verbose: verbose} + w.tbl.reset() + return w +} + +// SourceSet implements output.SourceWriter. +func (w *sourceWriter) SourceSet(ss *source.Set) error { + if !w.verbose { + // Print the short version + var rows [][]string + + for i, src := range ss.Items() { + row := []string{ + src.Handle, + string(src.Type), + source.ShortLocation(src.Location), + } + + if ss.Active() != nil && ss.Active().Handle == src.Handle { + row[0] = w.tbl.fm.Handle.Sprintf(row[0]) + "*" // add the star to indicate active src + + w.tbl.tblImpl.SetCellTrans(i, 0, w.tbl.fm.Bold.SprintFunc()) + w.tbl.tblImpl.SetCellTrans(i, 1, w.tbl.fm.Bold.SprintFunc()) + w.tbl.tblImpl.SetCellTrans(i, 2, w.tbl.fm.Bold.SprintFunc()) + } + + rows = append(rows, row) + } + + w.tbl.tblImpl.SetHeaderDisable(true) + w.tbl.tblImpl.SetColTrans(0, w.tbl.fm.Handle.SprintFunc()) + w.tbl.appendRowsAndRenderAll(rows) + return nil + } + + // Else print verbose + + // "HANDLE", "DRIVER", "LOCATION", "OPTIONS" + var rows [][]string + for i, src := range ss.Items() { + row := []string{ + src.Handle, + string(src.Type), + src.RedactedLocation(), + renderSrcOptions(src)} + + if ss.Active() != nil && ss.Active().Handle == src.Handle { + row[0] = w.tbl.fm.Handle.Sprintf(row[0]) + "*" // add the star to indicate active src + + w.tbl.tblImpl.SetCellTrans(i, 0, w.tbl.fm.Bold.SprintFunc()) + w.tbl.tblImpl.SetCellTrans(i, 1, w.tbl.fm.Bold.SprintFunc()) + w.tbl.tblImpl.SetCellTrans(i, 2, w.tbl.fm.Bold.SprintFunc()) + w.tbl.tblImpl.SetCellTrans(i, 3, w.tbl.fm.Bold.SprintFunc()) + w.tbl.tblImpl.SetCellTrans(i, 4, w.tbl.fm.Bold.SprintFunc()) + } + + rows = append(rows, row) + } + + w.tbl.tblImpl.SetHeaderDisable(!w.tbl.header) + w.tbl.tblImpl.SetColTrans(0, w.tbl.fm.Number.SprintFunc()) + w.tbl.tblImpl.SetHeader([]string{"HANDLE", "DRIVER", "LOCATION", "OPTIONS"}) + w.tbl.appendRowsAndRenderAll(rows) + return nil +} + +// Source implements output.SourceWriter. +func (w *sourceWriter) Source(src *source.Source) error { + if !w.verbose { + var rows [][]string + row := []string{ + src.Handle, + string(src.Type), + source.ShortLocation(src.Location), + } + rows = append(rows, row) + w.tbl.tblImpl.SetColTrans(0, w.tbl.fm.Number.SprintFunc()) + w.tbl.tblImpl.SetHeaderDisable(true) + w.tbl.appendRowsAndRenderAll(rows) + return nil + } + + var rows [][]string + row := []string{ + src.Handle, + string(src.Type), + src.RedactedLocation(), + renderSrcOptions(src)} + rows = append(rows, row) + + w.tbl.tblImpl.SetColTrans(0, w.tbl.fm.Number.SprintFunc()) + w.tbl.tblImpl.SetHeaderDisable(true) + w.tbl.appendRowsAndRenderAll(rows) + return nil +} + +func renderSrcOptions(src *source.Source) string { + if src == nil || src.Options == nil || len(src.Options) == 0 { + return "" + } + + opts := make([]string, 0, len(src.Options)) + + for key, vals := range src.Options { + if key == "" { + continue + } + v := strings.Join(vals, ",") + // TODO: add color here to distinguish the keys/values + opts = append(opts, fmt.Sprintf("%s=%s", key, v)) + } + return strings.Join(opts, " ") +} diff --git a/cli/output/tablew/table.go b/cli/output/tablew/table.go new file mode 100644 index 00000000..ab8328d8 --- /dev/null +++ b/cli/output/tablew/table.go @@ -0,0 +1,215 @@ +package tablew + +import ( + "database/sql" + "fmt" + "io" + "strconv" + "time" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/cli/output/tablew/internal" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +type table struct { + fm *output.Formatting + out io.Writer + header bool + + tblImpl *internal.Table +} + +func (t *table) renderResultCell(kind sqlz.Kind, val interface{}) string { + switch val := val.(type) { + case string: + return val + case *sql.NullString: + if !val.Valid { + return t.sprintNull() + } + return t.fm.String.Sprint(val.String) + case *string: + if val == nil { + return t.sprintNull() + } + return *val + case float64: + return t.sprintFloat64(val) + case *float64: + if val == nil { + return t.sprintNull() + } + return t.sprintFloat64(*val) + case *sql.NullFloat64: + if !val.Valid { + return t.sprintNull() + } + return t.sprintFloat64(val.Float64) + case float32: + return t.sprintFloat64(float64(val)) + case *float32: + if val == nil { + return t.sprintNull() + } + return t.sprintFloat64(float64(*val)) + case int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64: + s := fmt.Sprintf("%d", val) + return t.fm.Number.Sprint(s) + case *int: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *int8: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *int16: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *int32: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *int64: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(*val) + case *uint: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *uint8: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *uint16: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *uint32: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *uint64: + if val == nil { + return t.sprintNull() + } + return t.sprintInt64(int64(*val)) + case *sql.NullInt64: + if !val.Valid { + return t.sprintNull() + } + return t.sprintInt64(val.Int64) + case bool: + return t.fm.Bool.Sprint(strconv.FormatBool(val)) + case *bool: + if val == nil { + return t.sprintNull() + } + return t.fm.Bool.Sprint(strconv.FormatBool(*val)) + case *time.Time: + if val == nil { + return t.sprintNull() + } + return t.sprintTime(val) + case *sql.NullBool: + if !val.Valid { + return t.sprintNull() + } + return t.fm.Bool.Sprint(strconv.FormatBool(val.Bool)) + case nil: + return t.sprintNull() + case []byte: + return t.sprintBytes(val) + case *[]byte: + if val == nil || *val == nil { + return t.sprintNull() + } + return t.sprintBytes(*val) + case *sql.RawBytes: + if val == nil || *val == nil { + return t.sprintNull() + } + if kind == sqlz.KindText { + return fmt.Sprintf("%s", *val) + } + return t.sprintBytes(*val) + } + return "" +} + +func (t *table) sprintBytes(b []byte) string { + s := fmt.Sprintf("[%d]", len(b)) + return t.fm.Bytes.Sprint(s) +} + +func (t *table) sprintNull() string { + return t.fm.Null.Sprint("NULL") +} +func (t *table) sprintTime(tm *time.Time) string { + s := fmt.Sprintf("%v", *tm) + return t.fm.Datetime.Sprint(s) +} + +func (t *table) sprintInt64(num int64) string { + s := fmt.Sprintf("%d", num) + return t.fm.Number.Sprint(s) +} +func (t *table) sprintFloat64(num float64) string { + return t.fm.Number.Sprint(stringz.FormatFloat(num)) +} + +func (t *table) reset() { + t.tblImpl = internal.NewTable(t.out) + t.setTableWriterOptions() + t.tblImpl.SetAutoFormatHeaders(false) + t.tblImpl.SetAutoWrapText(false) +} + +func (t *table) setTableWriterOptions() { + t.tblImpl.SetAlignment(internal.AlignLeft) + t.tblImpl.SetAutoWrapText(true) + t.tblImpl.SetBorder(false) + t.tblImpl.SetHeaderAlignment(internal.AlignLeft) + t.tblImpl.SetCenterSeparator("") + t.tblImpl.SetColumnSeparator("") + t.tblImpl.SetRowSeparator("") + t.tblImpl.SetBorders(internal.Border{Left: false, Top: false, Right: false, Bottom: false}) + t.tblImpl.SetAutoFormatHeaders(false) + t.tblImpl.SetHeaderDisable(!t.header) + t.tblImpl.SetHeaderTrans(t.fm.Header.SprintFunc()) +} + +func (t *table) appendRowsAndRenderAll(rows [][]string) { + for _, v := range rows { + t.tblImpl.Append(v) + } + t.tblImpl.RenderAll() +} + +func (t *table) appendRows(rows [][]string) { + for _, v := range rows { + t.tblImpl.Append(v) + } +} + +func (t *table) renderAll() { + t.tblImpl.RenderAll() +} + +func (t *table) renderRow(row []string) { + t.tblImpl.Append(row) + t.tblImpl.RenderAll() // Send output +} diff --git a/cli/output/writers.go b/cli/output/writers.go new file mode 100644 index 00000000..fc60209f --- /dev/null +++ b/cli/output/writers.go @@ -0,0 +1,94 @@ +// Package output provides interfaces and implementations for +// outputting data and messages. All sq command output should be +// via one of the writer interfaces defined in this package. +// The RecordWriterAdapter type provides a bridge between the +// asynchronous libsq.RecordWriter interface and the simpler +// synchronous RecordWriter interface defined here. +package output + +import ( + "time" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/notify" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// RecordWriter is an interface for writing records to a destination. +// In effect it is a synchronous counterpart to the asynchronous +// libsq.RecordWriter interface. Being a synchronous interface, it is +// less tricky to implement than libsq.RecordWriter. The RecordWriterAdapter +// type defined in this package bridges the two interfaces. +// +// The Open method must be invoked before WriteRecords. Close must be +// invoked when all records are written. The Flush method advises the +// writer to flush any internal buffers. +type RecordWriter interface { + // Open instructs the writer to prepare to write records + // described by recMeta. + Open(recMeta sqlz.RecordMeta) error + + // WriteRecords writes rec to the destination. + WriteRecords(recs []sqlz.Record) error + + // Flush advises the writer to flush any internal + // buffer. Note that the writer may implement an independent + // flushing strategy, or may not buffer at all. + Flush() error + + // Close closes the writer after flushing any internal buffer. + Close() error +} + +// MetadataWriter can output metadata. +type MetadataWriter interface { + // TableMetadata writes the table metadata. + TableMetadata(tblMeta *source.TableMetadata) error + + // SourceMetadata writes the source metadata. + SourceMetadata(srcMeta *source.Metadata) error + + // DriverMetadata writes the metadata for the drivers. + DriverMetadata(drvrs []driver.Metadata) error +} + +// SourceWriter can output data source details. +type SourceWriter interface { + // SourceSet outputs details of the source set. + SourceSet(srcs *source.Set) error + + // Source outputs details of the source. + Source(src *source.Source) error +} + +// NotificationWriter outputs notification destination details. +type NotificationWriter interface { + // NotifyDestinations outputs details of the notification + // destinations. + NotifyDestinations(dests []notify.Destination) error +} + +// ErrorWriter outputs errors. +type ErrorWriter interface { + // Error outputs err. + Error(err error) +} + +// PingWriter writes ping results. +type PingWriter interface { + // Open opens the writer to write the supplied sources. + Open(srcs []*source.Source) + + // Result prints a ping result. The ping succeeded if + // err is nil. If err is context.DeadlineExceeded, the d + // arg will be the timeout value. + Result(src *source.Source, d time.Duration, err error) + + // Close is called after all results have been received. + Close() error +} + +// FlushThreshold is the size in bytes after which a writer +// should flush any internal buffer. +const FlushThreshold = 1000 diff --git a/cli/output/xlsxw/testdata/actor_0_rows.xlsx b/cli/output/xlsxw/testdata/actor_0_rows.xlsx new file mode 100644 index 00000000..0dcddf83 Binary files /dev/null and b/cli/output/xlsxw/testdata/actor_0_rows.xlsx differ diff --git a/cli/output/xlsxw/testdata/actor_3_rows.xlsx b/cli/output/xlsxw/testdata/actor_3_rows.xlsx new file mode 100644 index 00000000..b441a849 Binary files /dev/null and b/cli/output/xlsxw/testdata/actor_3_rows.xlsx differ diff --git a/cli/output/xlsxw/testdata/miscdb_tbl_types.xlsx b/cli/output/xlsxw/testdata/miscdb_tbl_types.xlsx new file mode 100644 index 00000000..50a3e6c7 Binary files /dev/null and b/cli/output/xlsxw/testdata/miscdb_tbl_types.xlsx differ diff --git a/cli/output/xlsxw/xlsxw.go b/cli/output/xlsxw/xlsxw.go new file mode 100644 index 00000000..eab4cbbd --- /dev/null +++ b/cli/output/xlsxw/xlsxw.go @@ -0,0 +1,109 @@ +// Package xlsxw implements output writers for Microsoft Excel. +package xlsxw + +import ( + "io" + "time" + + "github.com/neilotoole/sq/libsq/stringz" + + "github.com/neilotoole/sq/cli/output" + + "github.com/tealeg/xlsx/v2" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" +) + +type recordWriter struct { + recMeta sqlz.RecordMeta + out io.Writer + header bool + xfile *xlsx.File + sheet *xlsx.Sheet +} + +// NewRecordWriter returns an output.RecordWriter instance for XLSX. +func NewRecordWriter(out io.Writer, header bool) output.RecordWriter { + return &recordWriter{out: out, header: header} +} + +// Open implements output.RecordWriter. +func (w *recordWriter) Open(recMeta sqlz.RecordMeta) error { + w.recMeta = recMeta + w.xfile = xlsx.NewFile() + + sheet, err := w.xfile.AddSheet("data") + if err != nil { + return errz.Wrap(err, "unable to create XLSX sheet") + } + + w.sheet = sheet + + if w.header { + headerRow := w.sheet.AddRow() + + for _, colName := range w.recMeta.Names() { + cell := headerRow.AddCell() + cell.SetString(colName) + } + } + + return nil +} + +// Flush implements output.RecordWriter. +func (w *recordWriter) Flush() error { + return nil +} + +// Close implements output.RecordWriter. +func (w *recordWriter) Close() error { + err := w.xfile.Write(w.out) + if err != nil { + return errz.Wrap(err, "unable to write XLSX") + } + return nil +} + +// WriteRecords implements output.RecordWriter. +func (w *recordWriter) WriteRecords(recs []sqlz.Record) error { + for _, rec := range recs { + row := w.sheet.AddRow() + + for i, val := range rec { + cell := row.AddCell() + + switch val := val.(type) { + case nil: + case *[]byte: + cell.SetValue(*val) + case *string: + cell.SetString(*val) + case *bool: + cell.SetBool(*val) + case *int64: + cell.SetInt64(*val) + case *float64: + cell.SetFloat(*val) + case *time.Time: + switch w.recMeta[i].Kind() { + default: + cell.SetDateTime(*val) + case sqlz.KindDate: + cell.SetDate(*val) + case sqlz.KindTime: + // TODO: Maybe there's a way of setting a specific + // time (as opposed to date or datetime) value, but + // for now we just use a string. + cell.SetValue(val.Format(stringz.TimeFormat)) + } + default: + // should never happen + cell.SetValue(val) + } + } + } + + return nil +} diff --git a/cli/output/xlsxw/xlsxw_test.go b/cli/output/xlsxw/xlsxw_test.go new file mode 100644 index 00000000..110a4b3b --- /dev/null +++ b/cli/output/xlsxw/xlsxw_test.go @@ -0,0 +1,83 @@ +package xlsxw_test + +import ( + "bytes" + "io/ioutil" + "testing" + + "github.com/neilotoole/sq/testh/testsrc" + + "github.com/neilotoole/sq/cli/output/xlsxw" + + "github.com/tealeg/xlsx/v2" + + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" + "github.com/stretchr/testify/require" +) + +func TestRecordWriter(t *testing.T) { + testCases := []struct { + name string + handle string + tbl string + numRecs int + fixtPath string + }{ + {name: "actor_0", handle: sakila.SL3, tbl: sakila.TblActor, numRecs: 0, fixtPath: "testdata/actor_0_rows.xlsx"}, + {name: "actor_3", handle: sakila.SL3, tbl: sakila.TblActor, numRecs: 3, fixtPath: "testdata/actor_3_rows.xlsx"}, + {name: "tbl_types_3", handle: testsrc.MiscDB, tbl: testsrc.TblTypes, numRecs: -1, fixtPath: "testdata/miscdb_tbl_types.xlsx"}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + recMeta, recs := testh.RecordsFromTbl(t, tc.handle, tc.tbl) + if tc.numRecs >= 0 { + recs = recs[0:tc.numRecs] + } + + buf := &bytes.Buffer{} + w := xlsxw.NewRecordWriter(buf, true) + require.NoError(t, w.Open(recMeta)) + + require.NoError(t, w.WriteRecords(recs)) + require.NoError(t, w.Close()) + + want, err := ioutil.ReadFile(tc.fixtPath) + require.NoError(t, err) + requireEqualXLSX(t, want, buf.Bytes()) + }) + } +} + +func requireEqualXLSX(t *testing.T, data1, data2 []byte) { + xl1, err := xlsx.OpenBinary(data1) + require.NoError(t, err) + xl2, err := xlsx.OpenBinary(data2) + require.NoError(t, err) + + parts1, err := xl1.MarshallParts() + require.NoError(t, err) + parts2, err := xl2.MarshallParts() + require.NoError(t, err) + + for k1, v1 := range parts1 { + v2, ok := parts2[k1] + require.True(t, ok) + require.Equal(t, v1, v2) + } + + for k2 := range parts2 { + _, ok := parts1[k2] + require.True(t, ok) + } + + vals1, err := xl1.ToSlice() + require.NoError(t, err) + vals2, err := xl2.ToSlice() + require.NoError(t, err) + + require.Equal(t, vals1, vals2) +} diff --git a/cli/output/xmlw/testdata/tbl_types.xml b/cli/output/xmlw/testdata/tbl_types.xml new file mode 100644 index 00000000..2f060a0b --- /dev/null +++ b/cli/output/xmlw/testdata/tbl_types.xml @@ -0,0 +1,57 @@ + + + + 1 + 0 + 0 + 0 + 0 + false + false + + + + + 1989-11-09T00:00:00Z + 1989-11-09T00:00:00Z + 1989-11-09 + 1989-11-09 + 00:00:00 + 00:00:00 + 0 + 0 + + + 2 + 7 + 7 + 7.7 + 7.7 + true + true + seven + seven + c2V2ZW4= + c2V2ZW4= + 2017-07-07T07:07:07Z + 2017-07-07T07:07:07Z + 2017-07-07 + 2017-07-07 + 07:07:07 + 07:07:07 + 77.77 + 77.77 + + + 3 + 7 + 7.7 + true + seven + c2V2ZW4= + 2017-07-07T07:07:07Z + 2017-07-07 + 07:07:07 + 77.77 + + diff --git a/cli/output/xmlw/xmlw.go b/cli/output/xmlw/xmlw.go new file mode 100644 index 00000000..b6731b8e --- /dev/null +++ b/cli/output/xmlw/xmlw.go @@ -0,0 +1,220 @@ +// Package xmlw implements output writers for XML. +package xmlw + +import ( + "bytes" + "encoding/base64" + "encoding/xml" + "fmt" + "io" + "strconv" + "time" + + "github.com/fatih/color" + + "github.com/neilotoole/sq/libsq/stringz" + + "github.com/neilotoole/sq/cli/output" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// recordWriter implements output.RecordWriter. +type recordWriter struct { + out io.Writer + fm *output.Formatting + + recMeta sqlz.RecordMeta + + // outBuf holds output prior to flushing. + outBuf *bytes.Buffer + + // recWritten indicates that at least one record has been written + // to outBuf. + recsWritten bool + + elemColor *color.Color + + tplRecStart string + tplRecEnd string + tplFieldStart []string + tplFieldEnd []string + + fieldPrintFns []func(w io.Writer, a ...interface{}) +} + +const ( + decl = "" + recsElementName = "records" + recElemName = "record" +) + +// NewRecordWriter returns an output.RecordWriter instance for XML. +func NewRecordWriter(out io.Writer, fm *output.Formatting) output.RecordWriter { + return &recordWriter{out: out, fm: fm, elemColor: fm.Key.Add(color.Faint)} +} + +// Open implements output.RecordWriter. +func (w *recordWriter) Open(recMeta sqlz.RecordMeta) error { + w.recMeta = recMeta + + var indent, newline string + if w.fm.Pretty { + indent = w.fm.Indent + newline = "\n" + } + + w.fieldPrintFns = make([]func(w io.Writer, a ...interface{}), len(recMeta)) + + w.tplFieldStart = make([]string, len(recMeta)) + w.tplFieldEnd = make([]string, len(recMeta)) + + w.tplRecStart = "\n" + indent + w.elemColor.Sprintf("<%s>", recElemName) + w.tplRecEnd = newline + indent + w.elemColor.Sprintf("", recElemName) + + for i, name := range recMeta.Names() { + elementName := stringz.SanitizeAlphaNumeric(name, '_') + w.tplFieldStart[i] = newline + indent + indent + w.elemColor.Sprintf("<%s>", elementName) + w.tplFieldEnd[i] = w.elemColor.Sprintf("", elementName) + + if w.fm.IsMonochrome() { + w.fieldPrintFns[i] = monoPrint + continue + } + + switch w.recMeta[i].Kind() { + default: + w.fieldPrintFns[i] = monoPrint + case sqlz.KindDatetime, sqlz.KindDate, sqlz.KindTime: + w.fieldPrintFns[i] = w.fm.Datetime.FprintFunc() + case sqlz.KindInt, sqlz.KindDecimal, sqlz.KindFloat: + w.fieldPrintFns[i] = w.fm.Number.FprintFunc() + case sqlz.KindBool: + w.fieldPrintFns[i] = w.fm.Bool.FprintFunc() + case sqlz.KindBytes: + w.fieldPrintFns[i] = w.fm.Bytes.FprintFunc() + case sqlz.KindText: + w.fieldPrintFns[i] = w.fm.String.FprintFunc() + } + } + + w.outBuf = &bytes.Buffer{} + w.outBuf.WriteString(w.fm.Faint.Sprint(decl)) + return nil +} + +// monoPrint delegates to fmt.Fprint, for +// monochrome (non-color) printing. +func monoPrint(w io.Writer, a ...interface{}) { + _, _ = fmt.Fprint(w, a...) +} + +// Flush implements output.RecordWriter. +func (w *recordWriter) Flush() error { + _, err := w.outBuf.WriteTo(w.out) // resets buf + return errz.Err(err) +} + +// Close implements output.RecordWriter. +func (w *recordWriter) Close() error { + w.outBuf.WriteByte('\n') + + if w.recsWritten { + w.outBuf.WriteString(w.elemColor.Sprintf("", recsElementName)) + } else { + // empty element: + w.outBuf.WriteString(w.elemColor.Sprintf("<%s />", recsElementName)) + } + + w.outBuf.WriteByte('\n') + + return w.Flush() +} + +// WriteRecords implements output.RecordWriter. +// Note that (by design) the XML element is omitted for any nil value +// in a record. +func (w *recordWriter) WriteRecords(recs []sqlz.Record) error { + if len(recs) == 0 { + return nil + } + + if !w.recsWritten { + w.outBuf.WriteByte('\n') + w.outBuf.WriteString(w.elemColor.Sprintf("<%s>", recsElementName)) + w.recsWritten = true + } + + var err error + for _, rec := range recs { + err = w.writeRecord(rec) + if err != nil { + return err + } + } + + return nil +} + +func (w *recordWriter) writeRecord(rec sqlz.Record) error { + var err error + tmpBuf := &bytes.Buffer{} + + w.outBuf.WriteString(w.tplRecStart) + + for i, val := range rec { + if val == nil { + continue // omit the element if val is nil + } + + w.outBuf.WriteString(w.tplFieldStart[i]) + + switch val := val.(type) { + default: + // should never happen + err = xml.EscapeText(tmpBuf, []byte(fmt.Sprintf("%v", val))) + if err != nil { + return errz.Err(err) + } + w.fieldPrintFns[i](w.outBuf, tmpBuf.String()) + tmpBuf.Reset() + case nil: + // should never happen + case *string: + err = xml.EscapeText(tmpBuf, []byte(*val)) + if err != nil { + return errz.Err(err) + } + w.fieldPrintFns[i](w.outBuf, tmpBuf.String()) + tmpBuf.Reset() + case *[]byte: + w.fieldPrintFns[i](w.outBuf, base64.StdEncoding.EncodeToString(*val)) + case *bool: + w.fieldPrintFns[i](w.outBuf, strconv.FormatBool(*val)) + case *int64: + w.fieldPrintFns[i](w.outBuf, strconv.FormatInt(*val, 10)) + case *float64: + w.fieldPrintFns[i](w.outBuf, stringz.FormatFloat(*val)) + case *time.Time: + switch w.recMeta[i].Kind() { + default: + w.fieldPrintFns[i](w.outBuf, val.Format(stringz.DatetimeFormat)) + case sqlz.KindTime: + w.fieldPrintFns[i](w.outBuf, val.Format(stringz.TimeFormat)) + case sqlz.KindDate: + w.fieldPrintFns[i](w.outBuf, val.Format(stringz.DateFormat)) + } + } + + w.outBuf.WriteString(w.tplFieldEnd[i]) + } + + w.outBuf.WriteString(w.tplRecEnd) + + if w.outBuf.Len() > output.FlushThreshold { + return w.Flush() + } + + return nil +} diff --git a/cli/output/xmlw/xmlw_test.go b/cli/output/xmlw/xmlw_test.go new file mode 100644 index 00000000..c9e35ce0 --- /dev/null +++ b/cli/output/xmlw/xmlw_test.go @@ -0,0 +1,107 @@ +package xmlw_test + +import ( + "bytes" + "io/ioutil" + "testing" + + "github.com/neilotoole/sq/testh/testsrc" + + "github.com/neilotoole/sq/cli/output" + + "github.com/neilotoole/sq/cli/output/xmlw" + + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" + "github.com/stretchr/testify/require" +) + +func TestRecordWriter_Actor(t *testing.T) { + const ( + want0 = ` + +` + want3Pretty = ` + + + 1 + PENELOPE + GUINESS + 2020-06-11T02:50:54Z + + + 2 + NICK + WAHLBERG + 2020-06-11T02:50:54Z + + + 3 + ED + CHASE + 2020-06-11T02:50:54Z + + +` + + want3NoPretty = ` + +1PENELOPEGUINESS2020-06-11T02:50:54Z +2NICKWAHLBERG2020-06-11T02:50:54Z +3EDCHASE2020-06-11T02:50:54Z + +` + ) + + testCases := []struct { + name string + color bool + pretty bool + numRecs int + want string + }{ + {name: "actor_0_pretty", color: false, pretty: true, numRecs: 0, want: want0}, + {name: "actor_0_no_pretty", color: false, pretty: false, numRecs: 0, want: want0}, + {name: "actor_3_pretty", color: false, pretty: true, numRecs: 3, want: want3Pretty}, + {name: "actor_3_no_pretty", color: false, pretty: false, numRecs: 3, want: want3NoPretty}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.name, func(t *testing.T) { + fm := output.NewFormatting() + fm.EnableColor(tc.color) + fm.Pretty = tc.pretty + + recMeta, recs := testh.RecordsFromTbl(t, sakila.SL3, sakila.TblActor) + recs = recs[0:tc.numRecs] + + buf := &bytes.Buffer{} + + w := xmlw.NewRecordWriter(buf, fm) + require.NoError(t, w.Open(recMeta)) + require.NoError(t, w.WriteRecords(recs)) + require.NoError(t, w.Close()) + + require.Equal(t, tc.want, buf.String()) + }) + } +} + +func TestRecordWriter_TblTypes(t *testing.T) { + fm := output.NewFormatting() + fm.EnableColor(false) + + recMeta, recs := testh.RecordsFromTbl(t, testsrc.MiscDB, testsrc.TblTypes) + buf := &bytes.Buffer{} + + w := xmlw.NewRecordWriter(buf, fm) + require.NoError(t, w.Open(recMeta)) + require.NoError(t, w.WriteRecords(recs)) + require.NoError(t, w.Close()) + + want, err := ioutil.ReadFile("testdata/tbl_types.xml") + require.NoError(t, err) + require.Equal(t, want, buf.Bytes()) +} diff --git a/cli/run_test.go b/cli/run_test.go new file mode 100644 index 00000000..fddb6b01 --- /dev/null +++ b/cli/run_test.go @@ -0,0 +1,149 @@ +package cli_test + +import ( + "bytes" + "context" + "encoding/csv" + "os" + "strings" + "sync" + "testing" + + "github.com/neilotoole/lg" + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli" + "github.com/neilotoole/sq/cli/config" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// newTestRunCtx returns a RunContext for testing, along +// with buffers for out and errOut (instead of the +// rc writing to stdout and stderr). The contents of +// these buffers can be written to t.Log() if desired. +// The srcs args are added to rc.Config.Set. +func newTestRunCtx(log lg.Log) (rc *cli.RunContext, out, errOut *bytes.Buffer) { + out = &bytes.Buffer{} + errOut = &bytes.Buffer{} + + rc = &cli.RunContext{ + Context: context.Background(), + Stdin: os.Stdin, + Out: out, + ErrOut: errOut, + Log: log, + Config: config.New(), + ConfigStore: config.DiscardStore{}, + } + + return rc, out, errOut +} + +// run is a helper for testing sq commands. +type run struct { + t *testing.T + mu sync.Mutex + rc *cli.RunContext + out *bytes.Buffer + errOut *bytes.Buffer + used bool + + // When true, out and errOut are not logged. + hushOutput bool +} + +// newRun returns a new run instance for testing sq commands. +func newRun(t *testing.T) *run { + ru := &run{t: t} + ru.rc, ru.out, ru.errOut = newTestRunCtx(testlg.New(t)) + return ru +} + +// add adds srcs to ru.rc.Config.Set. If the source set +// does not already have an active source, the first element +// of srcs is used. +func (ru *run) add(srcs ...source.Source) *run { + ru.mu.Lock() + defer ru.mu.Unlock() + + if len(srcs) == 0 { + return ru + } + + ss := ru.rc.Config.Sources + hasActive := ru.rc.Config.Sources.Active() != nil + + for _, src := range srcs { + src := src + require.NoError(ru.t, ss.Add(&src)) + } + + if !hasActive { + _, err := ss.SetActive(srcs[0].Handle) + require.NoError(ru.t, err) + } + + return ru +} + +// exec executes the sq command specified by args. If the first +// element of args is not "sq", that value is prepended to the +// args for execution. This method may only be invoked once. +// The backing RunContext will also be closed. +func (ru *run) exec(args ...string) error { + ru.mu.Lock() + defer ru.mu.Unlock() + + if ru.used { + err := errz.New("run instance must only be used once") + ru.t.Fatal(err) + return err + } + + if len(args) > 0 && args[0] != "sq" { + args = append([]string{"sq"}, args...) + } + + execErr := cli.ExecuteWith(ru.rc, args) + + if !ru.hushOutput { + // We log sq's output now (before calling rc.Close) because + // it reads better in testing's output that way. + if ru.out.Len() > 0 { + ru.t.Log(strings.TrimSuffix(ru.out.String(), "\n")) + } + if ru.errOut.Len() > 0 { + ru.t.Log(strings.TrimSuffix(ru.errOut.String(), "\n")) + } + } + + closeErr := ru.rc.Close() + if execErr != nil { + // We return the ExecuteWith err first + return execErr + } + + // Return the closeErr (hopefully is nil) + return closeErr +} + +// mustReadCSV reads CSV from ru.out and returns all records, +// failing the testing on any problem. +func (ru *run) mustReadCSV() [][]string { + ru.mu.Lock() + defer ru.mu.Unlock() + + recs, err := csv.NewReader(ru.out).ReadAll() + require.NoError(ru.t, err) + return recs +} + +// hush suppresses the printing of output collected in out +// and errOut to t.Log. Set to true for tests +// that output excessive content, binary files, etc. +func (ru *run) hush() *run { + ru.hushOutput = true + return ru +} diff --git a/cli/source.go b/cli/source.go new file mode 100644 index 00000000..a95e3b43 --- /dev/null +++ b/cli/source.go @@ -0,0 +1,185 @@ +package cli + +import ( + "strings" + + "github.com/neilotoole/lg" + "github.com/spf13/cobra" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/options" + "github.com/neilotoole/sq/libsq/source" +) + +// determineSources figures out what the active source is +// from any combination of stdin, flags or cfg. It will +// mutate rc.Config.Sources as necessary. If no error +// is returned, it is guaranteed that there's an active +// source on the source set. +func determineSources(rc *RunContext) error { + cmd, srcs := rc.Cmd, rc.Config.Sources + activeSrc, err := activeSrcFromFlagsOrConfig(cmd, srcs) + if err != nil { + return err + } + // Note: ^ activeSrc could still be nil + + // check if there's input on stdin + stdinSrc, err := checkStdinSource(rc) + if err != nil { + return err + } + + if stdinSrc != nil { + // We have a valid source on stdin. + + // Add the stdin source to the set. + err = srcs.Add(stdinSrc) + if err != nil { + return err + } + + if !cmdFlagChanged(cmd, flagActiveSrc) { + // If the user has not explicitly set an active + // source via flag, then we set the stdin pipe data + // source as the active source. + // We do this because the @stdin src is commonly the + // only data source the user cares about in a pipe + // situation. + _, err = srcs.SetActive(stdinSrc.Handle) + if err != nil { + return err + } + activeSrc = stdinSrc + } + } + + if activeSrc == nil { + return errz.New(msgNoActiveSrc) + } + + return nil +} + +// activeSrcFromFlagsOrConfig gets the active source, either +// from flagActiveSrc or from srcs.Active. An error is returned +// if the flag src is not found: if the flag src is found, +// it is set as the active src on srcs. If the flag was not +// set and there is no active src in srcs, (nil, nil) is +// returned. +func activeSrcFromFlagsOrConfig(cmd *cobra.Command, srcs *source.Set) (*source.Source, error) { + var activeSrc *source.Source + + if cmdFlagChanged(cmd, flagActiveSrc) { + // The user explicitly wants to set an active source + // just for this query. + + handle, _ := cmd.Flags().GetString(flagActiveSrc) + s, err := srcs.Get(handle) + if err != nil { + return nil, errz.Wrapf(err, "flag --%s", flagActiveSrc) + } + + activeSrc, err = srcs.SetActive(s.Handle) + if err != nil { + return nil, err + } + } else { + activeSrc = srcs.Active() + } + return activeSrc, nil +} + +// checkStdinSource checks if there's stdin data (on pipe/redirect). +// If there is, that pipe is inspected, and if it has recognizable +// input, a new source instance with handle @stdin is constructed +// and returned. +func checkStdinSource(rc *RunContext) (*source.Source, error) { + cmd := rc.Cmd + reg := rc.registry() + + f := rc.Stdin + info, err := f.Stat() + if err != nil { + return nil, errz.Wrap(err, "failed to get stat on stdin") + } + + if info.Size() <= 0 { + // Doesn't make sense to have zero-data pipe? just ignore. + return nil, nil + } + + // If we got this far, we have pipe input + + // It's possible the user supplied source options + var opts options.Options + if cmd.Flags().Changed(flagSrcOptions) { + val, _ := cmd.Flags().GetString(flagSrcOptions) + val = strings.TrimSpace(val) + + if val != "" { + opts, err = options.ParseOptions(val) + if err != nil { + return nil, err + } + } + } + + typ := source.TypeNone + if cmd.Flags().Changed(flagDriver) { + val, _ := cmd.Flags().GetString(flagDriver) + typ = source.Type(val) + if !reg.HasProviderFor(typ) { + return nil, errz.Errorf("unknown driver type: %s", typ) + } + } + + err = rc.files.AddStdin(f) + if err != nil { + return nil, err + } + + if typ == source.TypeNone { + typ, err = rc.files.TypeStdin(rc.Context) + if err != nil { + return nil, err + } + if typ == source.TypeNone { + return nil, errz.New("unable to detect type of stdin: use flag --driver") + } + } + + return newSource(rc.Log, reg, typ, source.StdinHandle, source.StdinHandle, opts) +} + +// newSource creates a new Source instance where the +// driver type is known. Opts may be nil. +func newSource(log lg.Log, dp driver.Provider, typ source.Type, handle, location string, opts options.Options) (*source.Source, error) { + if opts == nil { + log.Debugf("create new data source %q [%s] from %q", + handle, typ, location) + } else { + log.Debugf("create new data source %q [%s] from %q with opts %s", + handle, typ, location, opts.Encode()) + } + + err := source.VerifyLegalHandle(handle) + if err != nil { + return nil, err + } + + drvr, err := dp.DriverFor(typ) + if err != nil { + return nil, err + } + + src := &source.Source{Handle: handle, Location: location, Type: typ, Options: opts} + + log.Debugf("validating provisional new data source: %q", src) + canonicalSrc, err := drvr.ValidateSource(src) + if err != nil { + return nil, err + } + return canonicalSrc, nil +} diff --git a/cmd/assets/assets.go b/cmd/assets/assets.go deleted file mode 100644 index 437a493b..00000000 --- a/cmd/assets/assets.go +++ /dev/null @@ -1,258 +0,0 @@ -// Code generated by go-bindata. -// sources: -// build_timestamp.txt -// build_version.txt -// DO NOT EDIT! - -package assets - -import ( - "bytes" - "compress/gzip" - "fmt" - "io" - "io/ioutil" - "os" - "path/filepath" - "strings" - "time" -) - -func bindataRead(data []byte, name string) ([]byte, error) { - gz, err := gzip.NewReader(bytes.NewBuffer(data)) - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - - var buf bytes.Buffer - _, err = io.Copy(&buf, gz) - clErr := gz.Close() - - if err != nil { - return nil, fmt.Errorf("Read %q: %v", name, err) - } - if clErr != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -type asset struct { - bytes []byte - info os.FileInfo -} - -type bindataFileInfo struct { - name string - size int64 - mode os.FileMode - modTime time.Time -} - -func (fi bindataFileInfo) Name() string { - return fi.name -} -func (fi bindataFileInfo) Size() int64 { - return fi.size -} -func (fi bindataFileInfo) Mode() os.FileMode { - return fi.mode -} -func (fi bindataFileInfo) ModTime() time.Time { - return fi.modTime -} -func (fi bindataFileInfo) IsDir() bool { - return false -} -func (fi bindataFileInfo) Sys() interface{} { - return nil -} - -var _build_timestampTxt = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x32\x32\x30\x34\xd3\x35\x34\xd0\x35\x32\x0c\x31\x32\xb0\x32\x35\xb3\x32\x36\xd7\x35\x30\x33\x30\xe0\x02\x04\x00\x00\xff\xff\x72\x0d\x59\xd0\x19\x00\x00\x00") - -func build_timestampTxtBytes() ([]byte, error) { - return bindataRead( - _build_timestampTxt, - "build_timestamp.txt", - ) -} - -func build_timestampTxt() (*asset, error) { - bytes, err := build_timestampTxtBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "build_timestamp.txt", size: 25, mode: os.FileMode(420), modTime: time.Unix(1477104997, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _build_versionTxt = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x32\xd0\x33\x31\xd4\x33\xe7\x02\x04\x00\x00\xff\xff\x28\xbd\x9e\x56\x07\x00\x00\x00") - -func build_versionTxtBytes() ([]byte, error) { - return bindataRead( - _build_versionTxt, - "build_version.txt", - ) -} - -func build_versionTxt() (*asset, error) { - bytes, err := build_versionTxtBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "build_version.txt", size: 7, mode: os.FileMode(420), modTime: time.Unix(1477104997, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -// Asset loads and returns the asset for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func Asset(name string) ([]byte, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) - } - return a.bytes, nil - } - return nil, fmt.Errorf("Asset %s not found", name) -} - -// MustAsset is like Asset but panics when Asset would return an error. -// It simplifies safe initialization of global variables. -func MustAsset(name string) []byte { - a, err := Asset(name) - if err != nil { - panic("asset: Asset(" + name + "): " + err.Error()) - } - - return a -} - -// AssetInfo loads and returns the asset info for the given name. -// It returns an error if the asset could not be found or -// could not be loaded. -func AssetInfo(name string) (os.FileInfo, error) { - cannonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[cannonicalName]; ok { - a, err := f() - if err != nil { - return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) - } - return a.info, nil - } - return nil, fmt.Errorf("AssetInfo %s not found", name) -} - -// AssetNames returns the names of the assets. -func AssetNames() []string { - names := make([]string, 0, len(_bindata)) - for name := range _bindata { - names = append(names, name) - } - return names -} - -// _bindata is a table, holding each asset generator, mapped to its name. -var _bindata = map[string]func() (*asset, error){ - "build_timestamp.txt": build_timestampTxt, - "build_version.txt": build_versionTxt, -} - -// AssetDir returns the file names below a certain -// directory embedded in the file by go-bindata. -// For example if you run go-bindata on data/... and data contains the -// following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png -// then AssetDir("data") would return []string{"foo.txt", "img"} -// AssetDir("data/img") would return []string{"a.png", "b.png"} -// AssetDir("foo.txt") and AssetDir("notexist") would return an error -// AssetDir("") will return []string{"data"}. -func AssetDir(name string) ([]string, error) { - node := _bintree - if len(name) != 0 { - cannonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(cannonicalName, "/") - for _, p := range pathList { - node = node.Children[p] - if node == nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - } - } - if node.Func != nil { - return nil, fmt.Errorf("Asset %s not found", name) - } - rv := make([]string, 0, len(node.Children)) - for childName := range node.Children { - rv = append(rv, childName) - } - return rv, nil -} - -type bintree struct { - Func func() (*asset, error) - Children map[string]*bintree -} - -var _bintree = &bintree{nil, map[string]*bintree{ - "build_timestamp.txt": &bintree{build_timestampTxt, map[string]*bintree{}}, - "build_version.txt": &bintree{build_versionTxt, map[string]*bintree{}}, -}} - -// RestoreAsset restores an asset under the given directory -func RestoreAsset(dir, name string) error { - data, err := Asset(name) - if err != nil { - return err - } - info, err := AssetInfo(name) - if err != nil { - return err - } - err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) - if err != nil { - return err - } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) - if err != nil { - return err - } - err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) - if err != nil { - return err - } - return nil -} - -// RestoreAssets restores an asset under the given directory recursively -func RestoreAssets(dir, name string) error { - children, err := AssetDir(name) - // File - if err != nil { - return RestoreAsset(dir, name) - } - // Dir - for _, child := range children { - err = RestoreAssets(dir, filepath.Join(name, child)) - if err != nil { - return err - } - } - return nil -} - -func _filePath(dir, name string) string { - cannonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) -} diff --git a/cmd/bash_completion.go b/cmd/bash_completion.go deleted file mode 100644 index 3cd2ce74..00000000 --- a/cmd/bash_completion.go +++ /dev/null @@ -1,37 +0,0 @@ -package cmd - -const ( - bash_completion_func = ` - -__sq_list_sources() -{ - local sq_output out - if sq_output=$(sq ls 2>/dev/null); then - out=($(echo "${sq_output}" | awk 'NR > 1 {print $1}')) - COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) ) - fi -} - -__sq_get_resource() -{ - if [[ ${#nouns[@]} -eq 0 ]]; then - return 1 - fi - __sq_list_sources ${nouns[${#nouns[@]} -1]} - if [[ $? -eq 0 ]]; then - return 0 - fi -} - -__custom_func() { - case ${last_command} in - sq_ls | sq_src | sq_rm | sq_inspect ) - __sq_list_sources - return - ;; - *) - ;; - esac -} -` -) diff --git a/cmd/bootstrap/bootstrap.go b/cmd/bootstrap/bootstrap.go deleted file mode 100644 index 90765665..00000000 --- a/cmd/bootstrap/bootstrap.go +++ /dev/null @@ -1,48 +0,0 @@ -// Package bootstrap is intended such that its init() method runs early in the -// program execution, so that it can initialize critical infrastructure such -// as logging and config, as these (logging in particular) can be used by the -// other packages' init functions. Someday I'll untangle this dependency graph -// and get rid of this abomination. -package bootstrap - -import ( - "fmt" - "os" - "path/filepath" - - "github.com/mitchellh/go-homedir" -) - -func init() { - - cfgDir := configDir() - - // The location of the log file can be specified via an envar. - path, ok := os.LookupEnv("SQ_LOGFILE") - if !ok { - // If the envar does not exist, we set it ourselves. - path = filepath.Join(cfgDir, "sq.log") - } - - os.Setenv("__LG_LOG_FILEPATH", path) - - // The location of the config file can be specified via an envar. - _, ok = os.LookupEnv("SQ_CONFIGFILE") - if !ok { - // If the envar does not exist, we set it ourselves. - path := filepath.Join(cfgDir, "sq.yml") - os.Setenv("SQ_CONFIGFILE", path) - } -} - -// configDir returns the absolute path of "~/.sq/". -func configDir() string { - - home, err := homedir.Dir() - if err != nil { - fmt.Fprintf(os.Stderr, "unable to get user homedir: %v", err) - os.Exit(1) - } - - return filepath.Join(home, ".sq") -} diff --git a/cmd/config/config.go b/cmd/config/config.go deleted file mode 100644 index 00a0c551..00000000 --- a/cmd/config/config.go +++ /dev/null @@ -1,86 +0,0 @@ -package config - -import ( - "time" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/drvr" -) - -type QueryMode string - -const ModeSLQ QueryMode = "slq" -const ModeNativeSQL QueryMode = "native" - -type Format string - -const FormatJSON Format = "json" -const FormatTable Format = "table" -const FormatGrid Format = "grid" -const FormatRaw Format = "raw" -const FormatXLSX Format = "xlsx" -const FormatXML Format = "xml" -const FormatCSV Format = "csv" -const FormatTSV Format = "tsv" - -// Config holds application config/session data. -type Config struct { - cfgDir string - Options Options `yaml:"options"` - Log Log `yaml:"log"` - SourceSet *drvr.SourceSet `yaml:"sources"` -} - -type Options struct { - Timeout time.Duration `yaml:"timeout"` - QueryMode QueryMode `yaml:"query_mode"` - Format Format `yaml:"output_format"` - Header bool `yaml:"output_header"` -} - -type Log struct { - Enabled bool `yaml:"enabled"` - Filepath string `yaml:"filepath"` - Levels []string `yaml:"levels"` - ExcludePkgs []string `yaml:"exclude_pkgs"` -} - -// New returns a config instance with default options set. -func New() *Config { - lg.Debugf("new config instance") - cfg := &Config{} - applyDefaults(cfg) - return cfg - -} - -// applyDefaults checks if required values are present, and if not, sets them. -func applyDefaults(cfg *Config) { - - if cfg.SourceSet == nil { - cfg.SourceSet = drvr.NewSourceSet() - } - - if cfg.Options.QueryMode == "" { - cfg.Options.QueryMode = defaults.QueryMode - } - - if cfg.Options.Format == "" { - cfg.Options.Format = defaults.Format - } - - if cfg.Options.Timeout == 0 { - cfg.Options.Timeout = defaults.Timeout - } -} - -// Defaults contains the (factory-supplied) config defaults. -var defaults = struct { - Timeout time.Duration - QueryMode QueryMode - Format Format -}{ - 10 * time.Second, - ModeSLQ, - FormatJSON, -} diff --git a/cmd/config/config_test.go b/cmd/config/config_test.go deleted file mode 100644 index 4a4573b8..00000000 --- a/cmd/config/config_test.go +++ /dev/null @@ -1,20 +0,0 @@ -package config - -import ( - "testing" - "time" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" -) - -func TestTimeout(t *testing.T) { - - text := "5s" - - d, err := time.ParseDuration(text) - require.Nil(t, err) - - assert.Equal(t, time.Second*5, d) - -} diff --git a/cmd/config/store.go b/cmd/config/store.go deleted file mode 100644 index f0fd5a86..00000000 --- a/cmd/config/store.go +++ /dev/null @@ -1,131 +0,0 @@ -package config - -import ( - "fmt" - "io/ioutil" - "os" - "path/filepath" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" - "gopkg.in/yaml.v2" -) - -// Store saves and loads config. -type Store interface { - // Save writes config to the store. - Save(cfg *Config) error - // Load reads config from the store. - Load() (*Config, error) -} - -// FileStore provides file-based persistence of config. -type FileStore struct { - Path string -} - -func NewFileStore(path string) (*FileStore, error) { - - fs := &FileStore{path} - err := fs.checkFile() - if err != nil { - return nil, err - } - - return fs, nil -} - -func (f *FileStore) String() string { - return fmt.Sprintf("config filestore: %v", f.Path) -} - -// Load reads config from disk. -func (f *FileStore) Load() (*Config, error) { - lg.Debugf("attempting to load config from %q", f.Path) - bytes, err := ioutil.ReadFile(f.Path) - if err != nil { - return nil, err - } - - cfg := &Config{} - err = yaml.Unmarshal(bytes, cfg) - if err != nil { - return nil, err - } - - applyDefaults(cfg) - - if cfg.SourceSet == nil { - cfg.SourceSet = drvr.NewSourceSet() - } - - return cfg, nil -} - -// Save writes config to disk. -func (f *FileStore) Save(cfg *Config) error { - lg.Debugf("attempting to save config to %q", f.Path) - bytes, err := yaml.Marshal(cfg) - if err != nil { - return err - } - - err = ioutil.WriteFile(f.Path, bytes, os.ModePerm) - if err != nil { - return err - } - - return nil -} - -// FileExists returns true if the backing file can be accessed, false if it doesn't -// exist or on any error. -func (f *FileStore) FileExists() bool { - _, err := os.Stat(f.Path) - return err == nil -} - -// checkFile verifies that the file at f.Path exists, and if not, creates it etc. -func (f *FileStore) checkFile() error { - _, err := os.Stat(f.Path) - if err == nil { - // File exists - return nil - } - - if !os.IsNotExist(err) { - // some other kind of error, return it - return util.Errorf("config: error with backing file '%v': %v", f.Path, err) - } - - // File doesn't exist, create it. - - // Create the path - parent := filepath.Dir(f.Path) - err = os.MkdirAll(parent, os.ModePerm) - if err != nil { - return util.Errorf("config: backing file not created '%v': %v", f.Path, err) - } - - conf := New() - return f.Save(conf) -} - -// InMemoryStore is a memory-based impl of Store. Useful for testing. -type InMemoryStore struct { -} - -func (f *InMemoryStore) String() string { - return "in-memory config store" -} - -// Load returns a new config -func (f *InMemoryStore) Load() (*Config, error) { - return New(), nil -} - -// Save is a no-op -func (f *InMemoryStore) Save(cfg *Config) error { - return nil -} diff --git a/cmd/constants.go b/cmd/constants.go deleted file mode 100644 index af005b60..00000000 --- a/cmd/constants.go +++ /dev/null @@ -1,126 +0,0 @@ -package cmd - -// FlagJSON specifies JSON output -const FlagJSON string = "json" - -// FlagJSONShort is shorthand for FlagJSON -const FlagJSONShort string = "j" - -// FlagJSONUsage is usage for FlagJSON -const FlagJSONUsage string = "JSON output" - -// FlagRaw specifies raw output -const FlagRaw string = "raw" - -// FlagRawShort is shorthand for FlagRaw -const FlagRawShort string = "r" - -// FlagRawUsage is usage for FlagRaw -const FlagRawUsage string = "Output the raw data of each result" - -// FlagTable specifies Table output -const FlagTable string = "table" - -// FlagTableShort is shorthand for FlagTable -const FlagTableShort string = "t" - -// FlagTableUsage is usage for FlagTable -const FlagTableUsage string = "Table output" - -// FlagXLSX specifies XLSX output -const FlagXLSX string = "xlsx" - -// FlagXLSXShort is shorthand for FlagXLSX -const FlagXLSXShort string = "x" - -// FlagXLSXUsage is usage for FlagXLSX -const FlagXLSXUsage string = "XLSX (Excel) output" - -// FlagCSV specifies CSV output -const FlagCSV string = "csv" - -// FlagCSVShort is shorthand for FlagCSV -const FlagCSVShort string = "c" - -// FlagCSVUsage is usage for FlagCSV -const FlagCSVUsage string = "CSV output" - -// FlagTSV specifies TSV output -const FlagTSV string = "tsv" - -// FlagTSVShort is shorthand for FlagTSV -const FlagTSVShort string = "T" - -// FlagTSVUsage is usage for FlagTSV -const FlagTSVUsage string = "TSV output" - -// FlagXML specifies XML output -const FlagXML string = "xml" - -// FlagXMLShort is shorthand for FlagXML -const FlagXMLShort string = "X" - -// FlagXMLUsage is usage for FlagXML -const FlagXMLUsage string = "XML output" - -// FlagMonochrome specifies raw output -const FlagMonochrome string = "monochrome" - -// FlagMonochromeShort is shorthand for FlagMonochrome -const FlagMonochromeShort string = "M" - -// FlagMonochromeUsage is usage for FlagMonochrome -const FlagMonochromeUsage string = "Don't colorize output" - -// FlagHeader specifies that the output should include header information (where applicable) -const FlagHeader string = "header" - -// FlagHeaderShort is shorthand for FlagHeader -const FlagHeaderShort string = "h" - -// FlagHeaderUsage is usage for FlagHeader -const FlagHeaderUsage string = "Print header" - -// FlagNoHeader specifies that the output should not include header information (where applicable) -const FlagNoHeader string = "no-header" - -// FlagNoHeaderShort is shorthand for FlagHeader -const FlagNoHeaderShort string = "H" - -// FlagNoHeaderUsage is usage for FlagNoHeader -const FlagNoHeaderUsage string = "Don't print header" - -// FlagModeNativeSQL specifies SQL mode -const FlagModeNativeSQL string = "native" - -// FlagModeNativeSQLShort is shorthand for FlagModeNativeSQL -const FlagModeNativeSQLShort string = "n" - -// FlagModeNativeSQLUsage is usage for FlagModeNativeSQL -const FlagModeNativeSQLUsage string = "Database-native SQL query mode" - -// FlagModeSLQ specifies SLQ mode -const FlagModeSLQ string = "slq" - -// FlagModeSLQShort is shorthand for FlagModeSLQ -const FlagModeSLQShort string = "s" - -// FlagModeSLQUsage is usage for FlagModeSLQ -const FlagModeSLQUsage string = "SLQ mode (default)" - -// FlagPingAll indicates to ping all data sources -const FlagPingAll string = "all" - -// FlagPingAllShort is shorthand for FlagPingAll -const FlagPingAllShort string = "a" - -// FlagPingAllUsage is usage for FlagPingAllShort -const FlagPingAllUsage string = "Ping all data sources" - -const FlagDriver string = "driver" - -const FlagDriverUsage string = "Explicitly specify the data source driver to use" - -const FlagSrcAddOptions string = "opts" - -const FlagSrcAddOptionsUsage string = "Driver-dependent data source options" diff --git a/cmd/help.go b/cmd/help.go deleted file mode 100644 index 33e25fe0..00000000 --- a/cmd/help.go +++ /dev/null @@ -1,20 +0,0 @@ -package cmd - -import "github.com/spf13/cobra" - -var helpCmd = &cobra.Command{ - Use: "help", - RunE: execHelp, - Short: "Display sq help", - Hidden: true, -} - -func init() { - RootCmd.AddCommand(helpCmd) - -} - -func execHelp(cmd *cobra.Command, args []string) error { - - return RootCmd.Help() -} diff --git a/cmd/inspect.go b/cmd/inspect.go deleted file mode 100644 index 9ff09c01..00000000 --- a/cmd/inspect.go +++ /dev/null @@ -1,65 +0,0 @@ -package cmd - -import ( - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -var inspectCmd = &cobra.Command{ - Use: "inspect [@HANDLE]", - Example: ` # inspect active data source - sq inspect - - # inspect @pg1 and output in table format - sq inspect --th @pg1`, - Short: "Inspect data source schema and stats", - Long: `Inspect a data source, including table schemata, columns, etc. -If @HANDLE is not provided, use the active data source.`, - Aliases: []string{"info"}, - RunE: inspect, -} - -func init() { - preprocessCmd(inspectCmd) - inspectCmd.Flags().BoolP(FlagJSON, FlagJSONShort, false, FlagJSONUsage) - inspectCmd.Flags().BoolP(FlagTable, FlagTableShort, false, FlagTableUsage) - inspectCmd.Flags().BoolP(FlagHeader, FlagHeaderShort, false, FlagHeaderUsage) - inspectCmd.Flags().BoolP(FlagNoHeader, FlagNoHeaderShort, false, FlagNoHeaderUsage) - inspectCmd.Flags().BoolP(FlagMonochrome, FlagMonochromeShort, false, FlagMonochromeUsage) - RootCmd.AddCommand(inspectCmd) -} - -func inspect(cmd *cobra.Command, args []string) error { - if len(args) > 1 { - return util.Errorf("invalid arguments") - } - - var src *drvr.Source - if len(args) == 0 { - ok := false - src, ok = cfg.SourceSet.Active() - if !ok { - return util.Errorf("no data source specified and no active data source") - } - } else { - - var err error - src, err = cfg.SourceSet.Get(args[0]) - if err != nil { - return err - } - } - - drv, err := drvr.For(src) - if err != nil { - return err - } - - meta, err := drv.Metadata(src) - if err != nil { - return err - } - - return wrtr.Metadata(meta) -} diff --git a/cmd/install_bash_completion.go b/cmd/install_bash_completion.go deleted file mode 100644 index 4e27eb06..00000000 --- a/cmd/install_bash_completion.go +++ /dev/null @@ -1,51 +0,0 @@ -package cmd - -import ( - "runtime" - - "github.com/neilotoole/go-lg/lg" - "github.com/spf13/cobra" -) - -func init() { - cmd := &cobra.Command{ - Use: "install-bash-completion", - Short: "Install bash completion script to /usr/local/etc/bash_completion.d", - Long: `Note: Mac OS X only`, - RunE: installBashCompletion, - Hidden: true, - } - - preprocessCmd(cmd) - RootCmd.AddCommand(cmd) -} - -func installBashCompletion(cmd *cobra.Command, args []string) error { - - doInstallBashCompletion() - return nil -} - -func doInstallBashCompletion() { - - var path string - - switch runtime.GOOS { - case "windows": - lg.Debugf("skipping install bash completion on windows") - return - case "darwin": - path = "/usr/local/etc/bash_completion.d/sq" - default: - // it's unixish - path = " /etc/bash_completion.d/sq" - } - - // TODO: only write if necessary (check for version/timestamp/checksum) - err := RootCmd.GenBashCompletionFile(path) - if err != nil { - lg.Warnf("failed to write bash completion to %q: %v", path, err) - return - } - -} diff --git a/cmd/out/csv/csvwriter.go b/cmd/out/csv/csvwriter.go deleted file mode 100644 index 9df315a8..00000000 --- a/cmd/out/csv/csvwriter.go +++ /dev/null @@ -1,108 +0,0 @@ -package csv - -import ( - "encoding/csv" - "os" - - "fmt" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/neilotoole/sq/libsq/util" -) - -type CSVWriter struct { - csv *csv.Writer - header bool - needsHeader bool -} - -func NewWriter(header bool, sep rune) *CSVWriter { - - lg.Debugf("header: %v sep: %v", sep) - csv := csv.NewWriter(os.Stdout) - csv.Comma = sep - return &CSVWriter{header: header, needsHeader: header, csv: csv} -} - -func (w *CSVWriter) Metadata(meta *drvr.SourceMetadata) error { - - return util.Errorf("not implemented") -} - -func (w *CSVWriter) Close() error { - - w.csv.Flush() - return nil -} - -func (w *CSVWriter) Records(rows []*sqlh.Record) error { - - lg.Debugf("row count: %v", len(rows)) - for _, row := range rows { - - if w.needsHeader { - - colTypes := row.Fields - - headerRow := make([]string, len(colTypes)) - - for i, colType := range row.Fields { - headerRow[i] = colType.Name - } - - w.csv.Write(headerRow) - w.needsHeader = false - } - - vals := row.Values - - cells := make([]string, len(vals)) - - for i, val := range vals { - - switch val := val.(type) { - case nil: - case *[]byte: - cells[i] = fmt.Sprintf("%v", *val) - case *sql.NullString: - cells[i] = val.String - case *sql.NullBool: - - if val.Valid { - cells[i] = fmt.Sprintf("%v", val.Bool) - } - - case *sql.NullInt64: - - if val.Valid { - cells[i] = fmt.Sprintf("%v", val.Int64) - - } - case *sql.NullFloat64: - - if val.Valid { - cells[i] = fmt.Sprintf("%v", val.Float64) - } - // TODO: support datetime - - default: - cells[i] = fmt.Sprintf("%v", val) - lg.Debugf("unexpected column value type, treating as default: %T(%v)", val, val) - } - - } - - lg.Debugf("writing cells: %v", cells) - err := w.csv.Write(cells) - if err != nil { - return util.WrapError(err) - } - - } - - w.csv.Flush() - return nil -} diff --git a/cmd/out/json/jsonwriter.go b/cmd/out/json/jsonwriter.go deleted file mode 100644 index e40164fe..00000000 --- a/cmd/out/json/jsonwriter.go +++ /dev/null @@ -1,53 +0,0 @@ -package json - -import ( - "fmt" - - "github.com/neilotoole/sq/cmd/out/json/pretty" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" -) - -type JSONWriter struct { - formatter *pretty.Formatter -} - -func NewWriter() *JSONWriter { - - j := &JSONWriter{} - j.formatter = pretty.NewFormatter() - return j -} - -func (w *JSONWriter) Records(rows []*sqlh.Record) error { - - bytes, err := w.formatter.FormatRecords(rows) - if err != nil { - return err - } - - fmt.Println(string(bytes)) - return nil -} - -func (w *JSONWriter) Metadata(meta *drvr.SourceMetadata) error { - - //om := &common.OrderedMap{} - - // TODO: convert this to use an ordered map - bytes, err := w.formatter.Marshal(meta) - if err != nil { - return err - } - - fmt.Println(string(bytes)) - return nil -} - -func (rw *JSONWriter) Open() error { - return nil -} - -func (rw *JSONWriter) Close() error { - return nil -} diff --git a/cmd/out/json/pretty/orderedmap.go b/cmd/out/json/pretty/orderedmap.go deleted file mode 100644 index 2cf0da6f..00000000 --- a/cmd/out/json/pretty/orderedmap.go +++ /dev/null @@ -1,68 +0,0 @@ -package pretty - -type keyval struct { - key string - val interface{} -} - -// An ordered map -// TODO: At some point in time omap was actually more like a map, but -// functionality has slowly been stripped away, hopefully this will go away -// entirely at some point. -type omap struct { - kvs []keyval -} - -func (m *omap) entries() []keyval { - return m.kvs -} - -func (m *omap) len() int { - return len(m.kvs) -} - -// Put adds a key/val to the ordered map, returning any existing value (which is -// overwritten). -func (m *omap) put(key string, val interface{}) interface{} { - - kv := keyval{key: key, val: val} - - for i, item := range m.kvs { - if item.key == key { - m.kvs[i] = kv - return item.val - } - } - - m.kvs = append(m.kvs, kv) - return nil -} - -// -//// Implement the json.Marshaler interface -//func (m *Map) MarshalJSON() ([]byte, error) { -// var buf bytes.Buffer -// -// buf.WriteString("{") -// for i, kv := range m.items { -// if i != 0 { -// buf.WriteString(",") -// } -// // marshal key -// key, err := json.Marshal(kv.Key) -// if err != nil { -// return nil, err -// } -// buf.Write(key) -// buf.WriteString(":") -// // marshal value -// val, err := json.Marshal(kv.Val) -// if err != nil { -// return nil, err -// } -// buf.Write(val) -// } -// -// buf.WriteString("}") -// return buf.Bytes(), nil -//} diff --git a/cmd/out/json/pretty/prettyjson.go b/cmd/out/json/pretty/prettyjson.go deleted file mode 100644 index 784a8417..00000000 --- a/cmd/out/json/pretty/prettyjson.go +++ /dev/null @@ -1,337 +0,0 @@ -// Package out provides JSON pretty print. -package pretty - -import ( - "encoding/json" - "fmt" - "sort" - "strconv" - "strings" - - "github.com/fatih/color" - "github.com/neilotoole/sq-driver/hackery/database/sql/driver" - "github.com/neilotoole/sq/libsq/drvr/sqlh" -) - -// Formatter is a struct to format JSON data. `color` is github.com/fatih/color: https://github.com/fatih/color -type Formatter struct { - // JSON key color. Default is `color.New(color.FgBlue, color.Bold)`. - KeyColor *color.Color - - // JSON string value color. Default is `color.New(color.FgGreen, color.Bold)`. - StringColor *color.Color - - // Binary data is output as a JSON string. - BinaryColor *color.Color - - // JSON boolean value color. Default is `color.New(color.FgYellow, color.Bold)`. - BoolColor *color.Color - - // JSON number value color. Default is `color.New(color.FgCyan, color.Bold)`. - NumberColor *color.Color - - // JSON null value color. Default is `color.New(color.FgBlack, color.Bold)`. - NullColor *color.Color - - // Max length of JSON string value. When the value is 1 and over, string is truncated to length of the value. Default is 0 (not truncated). - StringMaxLength int - - // Boolean to disable color. Default is false. - DisabledColor bool - - // Indent space number. Default is 2. - Indent int -} - -// NewFormatter returns a new formatter with following default values. -func NewFormatter() *Formatter { - return &Formatter{ - KeyColor: color.New(color.FgBlue, color.Bold), - StringColor: color.New(color.FgGreen, color.Bold), - BinaryColor: color.New(color.FgCyan), - BoolColor: color.New(color.FgYellow, color.Bold), - NumberColor: color.New(color.FgCyan, color.Bold), - NullColor: color.New(color.FgBlack, color.Bold), - StringMaxLength: 0, - DisabledColor: false, - Indent: 2, - } -} - -// Marshals and formats JSON data. -func (f *Formatter) Marshal(v interface{}) ([]byte, error) { - data, err := json.Marshal(v) - - if err != nil { - return nil, err - } - - return f.Format(data) -} - -// Formats JSON string. -func (f *Formatter) Format(data []byte) ([]byte, error) { - var v interface{} - err := json.Unmarshal(data, &v) - - if err != nil { - return nil, err - } - - s := f.pretty(v, 1) - - return []byte(s), nil -} - -func (f *Formatter) FormatRecords(rows []*sqlh.Record) ([]byte, error) { - - items := make([]interface{}, len(rows)) - - for i, row := range rows { - items[i] = recordToOMap(row) - } - - s := f.pretty(items, 1) - - return []byte(s), nil - -} - -func recordToOMap(r *sqlh.Record) *omap { - - m := &omap{} - for i := 0; i < len(r.Values); i++ { - - if r.Values[i] == nil { - m.put(r.Fields[i].Name, nil) - //m = append(m, KeyVal{Key: r.Fields[i].Name, Val: nil}) - continue - } - - if value, ok := r.Values[i].(driver.Valuer); ok { - val, _ := value.Value() - m.put(r.Fields[i].Name, val) - //m = append(m, KeyVal{Key: r.Fields[i].Name, Val: val}) - continue - } - - m.put(r.Fields[i].Name, r.Values[i]) - - //m = append(m, KeyVal{Key: r.Fields[i].Name, Val: r.Values[i]}) - } - return m -} - -func (f *Formatter) FormatOrderedMap(m omap) ([]byte, error) { - //var v interface{} - //err := json.Unmarshal(data, &v) - // - //if err != nil { - // return nil, err - //} - - s := f.pretty(m, 1) - - return []byte(s), nil -} - -func (f *Formatter) SprintfColor(c *color.Color, format string, args ...interface{}) string { - if f.DisabledColor || c == nil { - return fmt.Sprintf(format, args...) - } else { - return c.SprintfFunc()(format, args...) - } -} - -func (f *Formatter) pretty(v interface{}, depth int) string { - switch val := v.(type) { - case string: - return f.processString(val) - case *string: - return f.processString(*val) - case float64: - return f.SprintfColor(f.NumberColor, strconv.FormatFloat(val, 'f', -1, 64)) - case *float64: - return f.SprintfColor(f.NumberColor, strconv.FormatFloat(*val, 'f', -1, 64)) - case float32: - return f.SprintfColor(f.NumberColor, strconv.FormatFloat(float64(val), 'f', -1, 32)) - case *float32: - return f.SprintfColor(f.NumberColor, strconv.FormatFloat(float64(*val), 'f', -1, 32)) - case int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", val)) - case *int: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *int8: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *int16: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *int32: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *int64: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *uint: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *uint8: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *uint16: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *uint32: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case *uint64: - return f.SprintfColor(f.NumberColor, fmt.Sprintf("%d", *val)) - case bool: - return f.SprintfColor(f.BoolColor, strconv.FormatBool(val)) - case *bool: - return f.SprintfColor(f.BoolColor, strconv.FormatBool(*val)) - case nil: - return f.SprintfColor(f.NullColor, "null") - case omap: - return f.processOrderedMap(&val, depth) - case *omap: - return f.processOrderedMap(val, depth) - case map[string]interface{}: - return f.processMap(val, depth) - case []byte: - return f.processBinary(val) - case *[]byte: - if val == nil { - return f.SprintfColor(f.NullColor, "null") - } - return f.processBinary(*val) - case []interface{}: - return f.processArray(val, depth) - } - - return "" -} - -func (f *Formatter) processString(s string) string { - r := []rune(s) - - if f.StringMaxLength != 0 && len(r) >= f.StringMaxLength { - s = string(r[0:f.StringMaxLength]) + "..." - } - - b, _ := json.Marshal(s) - - return f.SprintfColor(f.StringColor, string(b)) -} - -func (f *Formatter) processBinary(data []byte) string { - - b, _ := json.Marshal(data) - - return f.SprintfColor(f.BinaryColor, string(b)) -} - -func (f *Formatter) processMap(m map[string]interface{}, depth int) string { - currentIndent := f.generateIndent(depth - 1) - nextIndent := f.generateIndent(depth) - rows := []string{} - keys := []string{} - - if len(m) == 0 { - return "{}" - } - - for key, _ := range m { - keys = append(keys, key) - } - - sort.Strings(keys) - - for _, key := range keys { - val := m[key] - k := f.SprintfColor(f.KeyColor, `"%s"`, key) - v := f.pretty(val, depth+1) - row := fmt.Sprintf("%s%s: %s", nextIndent, k, v) - rows = append(rows, row) - } - - return fmt.Sprintf("{\n%s\n%s}", strings.Join(rows, ",\n"), currentIndent) -} - -func (f *Formatter) processOrderedMap(m *omap, depth int) string { - currentIndent := f.generateIndent(depth - 1) - nextIndent := f.generateIndent(depth) - rows := []string{} - //keys := []string{} - - if m.len() == 0 { - return "{}" - } - - //for key, _ := range m { - // keys = append(keys, key) - //} - // - //sort.Strings(keys) - - for _, kv := range m.entries() { - //val := kv.Val - k := f.SprintfColor(f.KeyColor, `"%s"`, kv.key) - - //rv := reflect.ValueOf(kv.Val) - //rt := reflect.TypeOf(kv.Val) - ////elem := rv.Elem() - // - //log.Printf("val: %T(%v)", kv.Val, kv.Val) - //log.Printf("rv: %T(%v)", rv, rv) - //log.Printf("rt: %T(%v)", rt, rt) - ////log.Printf("elem: %T(%v)", elem, elem) - //log.Println() - // - //switch val := kv.Val.(type) { - //default: - // v := f.pretty(val, depth+1) - // row := fmt.Sprintf("%s%s: %s", nextIndent, k, v) - // rows = append(rows, row) - //} - v := f.pretty(kv.val, depth+1) - - row := fmt.Sprintf("%s%s: %s", nextIndent, k, v) - rows = append(rows, row) - } - - //for _, key := range keys { - // val := m[key] - // k := f.sprintfColor(f.KeyColor, `"%s"`, key) - // v := f.Pretty(val, depth+1) - // row := fmt.Sprintf("%s%s: %s", nextIndent, k, v) - // rows = append(rows, row) - //} - - return fmt.Sprintf("{\n%s\n%s}", strings.Join(rows, ",\n"), currentIndent) -} - -func (f *Formatter) processArray(a []interface{}, depth int) string { - currentIndent := f.generateIndent(depth - 1) - nextIndent := f.generateIndent(depth) - rows := []string{} - - if len(a) == 0 { - return "[]" - } - - for _, val := range a { - c := f.pretty(val, depth+1) - row := nextIndent + c - rows = append(rows, row) - } - - return fmt.Sprintf("[\n%s\n%s]", strings.Join(rows, ",\n"), currentIndent) -} - -func (f *Formatter) generateIndent(depth int) string { - return strings.Join(make([]string, f.Indent*depth+1), " ") -} - -// Marshal JSON data with default options. -func Marshal(v interface{}) ([]byte, error) { - return NewFormatter().Marshal(v) -} - -// Format JSON string with default options. -func Format(data []byte) ([]byte, error) { - return NewFormatter().Format(data) -} diff --git a/cmd/out/out.go b/cmd/out/out.go deleted file mode 100644 index ea2bb763..00000000 --- a/cmd/out/out.go +++ /dev/null @@ -1,58 +0,0 @@ -package out - -import "github.com/fatih/color" - -// TextTransformer is a function that can transform text. -type TextTransformer func(a ...interface{}) string - -var Trans = struct { - Error TextTransformer - Number TextTransformer - Bold TextTransformer -}{ - Error: func(a ...interface{}) string { - return Color.Error.SprintFunc()(a...) - }, - Number: func(a ...interface{}) string { - return Color.Number.SprintFunc()(a...) - }, - Bold: func(a ...interface{}) string { - return color.New(color.Bold).SprintFunc()(a...) - }, -} - -//func Colorize(val string, colors ...color.Attribute) string { -// return color.New(colors...).SprintFunc()(val) -// -// color.New().Print() -//} - -var Color = struct { - Header *color.Color - Hilite *color.Color - Faint *color.Color - Error *color.Color - Success *color.Color - Datasource *color.Color - Active *color.Color - Key *color.Color - String *color.Color - Binary *color.Color - Bool *color.Color - Number *color.Color - Null *color.Color -}{ - Header: color.New(color.FgHiBlue), - Hilite: color.New(color.FgHiBlue), - Faint: color.New(color.Faint), - Error: color.New(color.FgRed, color.Bold), - Success: color.New(color.FgGreen, color.Bold), - Datasource: color.New(color.FgCyan), - Active: color.New(color.Bold), - Key: color.New(color.FgBlue, color.Bold), - String: color.New(color.FgGreen, color.Bold), - Binary: color.New(color.FgCyan), - Bool: color.New(color.FgYellow, color.Bold), - Number: color.New(color.FgBlue, color.Bold), - Null: color.New(color.FgBlack, color.Bold), -} diff --git a/cmd/out/raw/rawwriter.go b/cmd/out/raw/rawwriter.go deleted file mode 100644 index 644d2c73..00000000 --- a/cmd/out/raw/rawwriter.go +++ /dev/null @@ -1,77 +0,0 @@ -package raw - -import ( - "fmt" - "io" - "os" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/neilotoole/sq/libsq/util" -) - -var w io.Writer = os.Stdout - -type RawWriter struct { -} - -func NewWriter() *RawWriter { - - return &RawWriter{} -} - -func (rw *RawWriter) Metadata(meta *drvr.SourceMetadata) error { - return util.Errorf("not implemented") -} - -func (rw *RawWriter) Close() error { - return nil -} - -func (rw *RawWriter) Records(rows []*sqlh.Record) error { - - if len(rows) == 0 { - return nil - } - - for _, row := range rows { - - for _, val := range row.Values { - switch val := val.(type) { - case nil: - case *[]byte: - w.Write(*val) - case *sql.NullString: - if val.Valid { - fmt.Fprintf(w, val.String) - } - case *sql.NullBool: - - if val.Valid { - fmt.Fprintf(w, "%t", val.Bool) - } - - case *sql.NullInt64: - - if val.Valid { - fmt.Fprintf(w, "%d", val.Int64) - } - case *sql.NullFloat64: - - if val.Valid { - fmt.Fprintf(w, "%f", val.Float64) - } - - default: - lg.Debugf("unexpected column value type, treating as default: %T(%v)", val, val) - fmt.Fprintf(w, "%v", val) - } - fmt.Fprintln(w) // Add the new line - } - - } - - return nil -} diff --git a/cmd/out/table/tablewriter.go b/cmd/out/table/tablewriter.go deleted file mode 100644 index 45073bf8..00000000 --- a/cmd/out/table/tablewriter.go +++ /dev/null @@ -1,425 +0,0 @@ -package table - -import ( - "fmt" - "os" - - "strconv" - - "strings" - - "github.com/fatih/color" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/cmd/out" - "github.com/neilotoole/sq/cmd/out/json/pretty" - "github.com/neilotoole/sq/cmd/out/table/internal" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/neilotoole/sq/libsq/util" -) - -type TextWriter struct { - tbl *internal.Table - f *pretty.Formatter - header bool -} - -func NewWriter(header bool) *TextWriter { - - t := &TextWriter{ - header: header, - } - - t.Reset() - return t -} - -func (t *TextWriter) Reset() { - - t.tbl = internal.NewWriter(os.Stdout) - t.setTableWriterOptions() - t.f = pretty.NewFormatter() - t.tbl.SetAutoFormatHeaders(false) - t.tbl.SetAutoWrapText(false) -} - -func (t *TextWriter) setTableWriterOptions() { - t.tbl.SetAlignment(internal.AlignLeft) - t.tbl.SetAutoWrapText(true) - t.tbl.SetBorder(false) - t.tbl.SetHeaderAlignment(internal.AlignLeft) - t.tbl.SetCenterSeparator("") - t.tbl.SetColumnSeparator("") - t.tbl.SetRowSeparator("") - t.tbl.SetBorders(internal.Border{Left: false, Top: false, Right: false, Bottom: false}) - t.tbl.SetAutoFormatHeaders(false) - t.tbl.SetHeaderDisable(!t.header) -} - -func (t *TextWriter) Value(message string, key string, value interface{}) { - - if message == "" { - fmt.Printf("%v\n", value) - return - } - - fmt.Printf("%v: %v\n", message, value) -} - -func (t *TextWriter) SourceSet(ss *drvr.SourceSet, active *drvr.Source) error { - var rows [][]string - - for i, src := range ss.Items { - - row := []string{ - src.Handle, - string(src.Type), - src.Location, - t.renderSrcOptions(src)} - - if active != nil && src.Handle == active.Handle { - // TODO: Add "SetRowTrans" or AddRowTrans - t.tbl.SetCellTrans(i, 0, out.Trans.Bold) - t.tbl.SetCellTrans(i, 1, out.Trans.Bold) - t.tbl.SetCellTrans(i, 2, out.Trans.Bold) - t.tbl.SetCellTrans(i, 3, out.Trans.Bold) - t.tbl.SetCellTrans(i, 4, out.Trans.Bold) - } - - rows = append(rows, row) - } - - // TODO: currently we always output headers for sources - t.tbl.SetHeaderDisable(false) - t.tbl.SetColTrans(0, out.Trans.Number) - t.tbl.SetHeader([]string{"HANDLE", "DRIVER", "LOCATION", "OPTIONS"}) - t.renderRows(rows) - t.tbl.SetHeaderDisable(t.header) - return nil -} - -func (t *TextWriter) renderSrcOptions(src *drvr.Source) string { - if src == nil || src.Options == nil || len(src.Options) == 0 { - return "" - } - - opts := make([]string, 0, len(src.Options)) - - for key, vals := range src.Options { - if key == "" { - continue - } - v := strings.Join(vals, ",") - // TODO: add color here to distinguish the keys/values - opts = append(opts, fmt.Sprintf("%s=%s", key, v)) - } - return strings.Join(opts, " ") -} - -func (t *TextWriter) Source(src *drvr.Source) error { - - var rows [][]string - - row := []string{ - src.Handle, - string(src.Type), - src.Location, - t.renderSrcOptions(src)} - rows = append(rows, row) - - t.tbl.SetColTrans(0, out.Trans.Number) - // TODO: currently we always output headers for sources - t.tbl.SetHeaderDisable(false) - t.tbl.SetHeader([]string{"HANDLE", "DRIVER", "LOCATION", "OPTIONS"}) - t.renderRows(rows) - t.tbl.SetHeaderDisable(t.header) - return nil -} - -// Write out a set of generic rows. Optional provide an array of column transformers. -//func (t *TextWriter) Rows(rows [][]string, colTrans []out.TextTransformer) { -// -// if len(rows) == 0 { -// return -// } -// -// if colTrans != nil && len(colTrans) > 0 { -// for i := 0; i < len(rows[0]); i++ { -// if i < len(colTrans) && colTrans[i] != nil { -// t.tbl.SetColTrans(i, colTrans[i]) -// } -// } -// } -// -// t.renderRows(rows) -//} - -func (t *TextWriter) Error(err error) { - fmt.Println(out.Trans.Error(fmt.Sprintf("Error: %v", err))) -} - -func (t *TextWriter) Help(text string) error { - fmt.Println(text) - return nil -} - -func (t *TextWriter) renderRows(rows [][]string) { - for _, v := range rows { - t.tbl.Append(v) - } - t.tbl.Render() -} - -func (t *TextWriter) renderRow(row []string) { - t.tbl.Append(row) - t.tbl.Render() // Send output -} - -func (t *TextWriter) Metadata(meta *drvr.SourceMetadata) error { - - var headers []string - var row []string - - if meta.Name == meta.FullyQualifiedName { - headers = []string{"HANDLE", "NAME", "SIZE", "TABLES", "LOCATION"} - t.tbl.SetColTrans(3, out.Trans.Number) - row = []string{ - meta.Handle, - meta.Name, - util.ByteSized(meta.Size, 1, ""), - fmt.Sprintf("%d", len(meta.Tables)), - meta.Location, - } - - } else { - headers = []string{"HANDLE", "NAME", "FQ NAME", "SIZE", "TABLES", "LOCATION"} - t.tbl.SetColTrans(4, out.Trans.Number) - row = []string{ - meta.Handle, - meta.Name, - meta.FullyQualifiedName, - util.ByteSized(meta.Size, 1, ""), - fmt.Sprintf("%d", len(meta.Tables)), - meta.Location, - } - } - - t.tbl.SetHeader(headers) - //t.tbl.SetColTrans(4, out.Trans.Number) - t.renderRow(row) - t.Reset() - fmt.Println() - - headers = []string{"TABLE", "ROWS", "SIZE", "NUM COLS", "COL NAMES", "COL TYPES"} - - var rows [][]string - - for _, tbl := range meta.Tables { - - colNames := make([]string, len(tbl.Columns)) - colTypes := make([]string, len(tbl.Columns)) - - for i, col := range tbl.Columns { - colNames[i] = col.Name - colTypes[i] = col.ColType - } - - size := "-" - if tbl.Size != -1 { - size = util.ByteSized(tbl.Size, 1, "") - } - - row := []string{ - tbl.Name, - fmt.Sprintf("%d", tbl.RowCount), - size, - fmt.Sprintf("%d", len(tbl.Columns)), - strings.Join(colNames, ", "), - strings.Join(colTypes, ", "), - } - rows = append(rows, row) - } - - t.tbl.SetHeader(headers) - t.tbl.SetColTrans(1, out.Trans.Number) - t.tbl.SetColTrans(3, out.Trans.Number) - - t.renderRows(rows) - return nil -} - -func (rw *TextWriter) Close() error { - return nil -} - -func (t *TextWriter) Records(records []*sqlh.Record) error { - if len(records) == 0 { - fmt.Println() - return nil - } - - t.tbl.SetAutoWrapText(false) - - var rows [][]string - - for _, rsRow := range records { - - row := make([]string, len(rsRow.Values)) - - for i, val := range rsRow.Values { - row[i] = t.renderResultCell(val) - } - - rows = append(rows, row) - } - - header := make([]string, len(records[0].Fields)) - for i, field := range records[0].Fields { - header[i] = field.Name - } - - t.tbl.SetHeader(header) - t.renderRows(rows) - - return nil -} - -func (t *TextWriter) renderResultCell(val interface{}) string { - - switch val := val.(type) { - case string: - return val - case *sql.NullString: - if !val.Valid { - return t.sprintNull() - } - return fmt.Sprintf("%s", val.String) - case *string: - if val == nil { - return t.sprintNull() - } - return *val - case float64: - return strconv.FormatFloat(val, 'f', -1, 64) - case *float64: - if val == nil { - return t.sprintNull() - } - //return strconv.FormatFloat(*val, 'f', -1, 64) - return t.sprintFloat64(*val) - case *sql.NullFloat64: - if !val.Valid { - return t.sprintNull() - } - //return strconv.FormatFloat(val.Float64, 'f', -1, 32) - return t.sprintFloat64(val.Float64) - case float32: - return strconv.FormatFloat(float64(val), 'f', -1, 32) - case *float32: - if val == nil { - return t.sprintNull() - } - return strconv.FormatFloat(float64(*val), 'f', -1, 32) - case int, int8, int16, int32, int64, uint, uint8, uint16, uint32, uint64: - return fmt.Sprintf("%d", val) - case *int: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *int8: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *int16: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *int32: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *int64: - if val == nil { - return t.sprintNull() - } - return t.sprintInt(*val) - case *uint: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *uint8: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *uint16: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *uint32: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *uint64: - if val == nil { - return t.sprintNull() - } - return fmt.Sprintf("%d", *val) - case *sql.NullInt64: - if !val.Valid { - return t.sprintNull() - } - return t.sprintInt(val.Int64) - case bool: - return t.f.SprintfColor(t.f.BoolColor, strconv.FormatBool(val)) - case *bool: - if val == nil { - return t.sprintNull() - } - return t.f.SprintfColor(t.f.BoolColor, strconv.FormatBool(*val)) - case *sql.NullBool: - if !val.Valid { - return t.sprintNull() - } - return t.f.SprintfColor(t.f.BoolColor, strconv.FormatBool(val.Bool)) - case nil: - return t.sprintNull() - case []byte: - if val == nil { - t.sprintNull() - } - return t.processBinary(val) - case *[]byte: - if val == nil || *val == nil { - return t.sprintNull() - } - return t.processBinary(*val) - } - return "" - -} - -func (t *TextWriter) processBinary(bytes []byte) string { - s := fmt.Sprintf("[%d]", len(bytes)) - c := color.New(color.Faint) - return c.SprintFunc()(s) -} - -func (t *TextWriter) sprintNull() string { - return t.f.SprintfColor(t.f.NullColor, "null") -} - -func (t *TextWriter) sprintInt(num int64) string { - return t.f.SprintfColor(t.f.NumberColor, "%d", num) -} -func (t *TextWriter) sprintFloat64(num float64) string { - s := strconv.FormatFloat(num, 'f', -1, 64) - return t.f.SprintfColor(t.f.NumberColor, "%s", s) -} diff --git a/cmd/out/writer.go b/cmd/out/writer.go deleted file mode 100644 index 5e0ccd7c..00000000 --- a/cmd/out/writer.go +++ /dev/null @@ -1,34 +0,0 @@ -package out - -import ( - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" -) - -// RecordWriter outputs query results. The caller must invoke Close() when -// all records are written. -type RecordWriter interface { - Records(records []*sqlh.Record) error - Close() error -} - -// MetadataWriter can output data source metadata. -type MetadataWriter interface { - Metadata(meta *drvr.SourceMetadata) error -} - -// SourceWriter can output data source details. -type SourceWriter interface { - SourceSet(srcs *drvr.SourceSet, active *drvr.Source) error - Source(src *drvr.Source) error -} - -// ErrorWriter can output errors. -type ErrorWriter interface { - Error(err error) -} - -// HelpWriter can output user help. -type HelpWriter interface { - Help(help string) error -} diff --git a/cmd/out/xlsx/xlsxwriter.go b/cmd/out/xlsx/xlsxwriter.go deleted file mode 100644 index 43f3b3ec..00000000 --- a/cmd/out/xlsx/xlsxwriter.go +++ /dev/null @@ -1,122 +0,0 @@ -package xlsx - -import ( - "io" - "os" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/neilotoole/sq/libsq/util" - "github.com/tealeg/xlsx" -) - -var w io.Writer = os.Stdout - -type XLSXWriter struct { - header bool - needsHeader bool - xfile *xlsx.File - sheet *xlsx.Sheet -} - -func NewWriter(header bool) *XLSXWriter { - - return &XLSXWriter{header: header, needsHeader: header} -} - -func (w *XLSXWriter) Metadata(meta *drvr.SourceMetadata) error { - return util.Errorf("not implemented") -} - -func (w *XLSXWriter) Open() error { - - w.xfile = xlsx.NewFile() - - sheet, err := w.xfile.AddSheet("Sheet1") - if err != nil { - return util.Errorf("unable to create XLSX sheet: %v", err) - } - - w.sheet = sheet - - return nil -} -func (w *XLSXWriter) Close() error { - - if w.xfile == nil { - return util.Errorf("unable to write nil XLSX: must be opened first") - } - - err := w.xfile.Write(os.Stdout) - if err != nil { - return util.Errorf("unable to write XLSX: %v", err) - } - return nil -} - -func (w *XLSXWriter) Records(rows []*sqlh.Record) error { - - if w.xfile == nil || w.sheet == nil { - return util.Errorf("unable to write nil XLSX file: must be opened first") - } - - for _, row := range rows { - - if w.needsHeader { - - headerRow := w.sheet.AddRow() - - for _, colType := range row.Fields { - cell := headerRow.AddCell() - cell.SetString(colType.Name) - } - - w.needsHeader = false - } - - xrow := w.sheet.AddRow() - - for _, val := range row.Values { - - cell := xrow.AddCell() - - switch val := val.(type) { - case nil: - case *[]byte: - cell.SetValue(*val) - case *sql.NullString: - if val.Valid { - cell.SetString(val.String) - } - case *sql.NullBool: - - if val.Valid { - cell.SetBool(val.Bool) - } - - case *sql.NullInt64: - - if val.Valid { - cell.SetInt64(val.Int64) - - } - case *sql.NullFloat64: - - if val.Valid { - cell.SetFloat(val.Float64) - } - // TODO: support datetime - - default: - cell.SetValue(val) - lg.Debugf("unexpected column value type, treating as default: %T(%v)", val, val) - } - - } - - } - - return nil -} diff --git a/cmd/out/xml/xmlwriter.go b/cmd/out/xml/xmlwriter.go deleted file mode 100644 index 668038f2..00000000 --- a/cmd/out/xml/xmlwriter.go +++ /dev/null @@ -1,187 +0,0 @@ -package xml - -import ( - "fmt" - - "bytes" - - "encoding/base64" - - "github.com/clbanning/mxj" - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/neilotoole/sq/libsq/util" -) - -type XMLWriter struct { - buf *bytes.Buffer -} - -func NewWriter() *XMLWriter { - - return &XMLWriter{buf: &bytes.Buffer{}} - -} - -func (w *XMLWriter) Metadata(meta *drvr.SourceMetadata) error { - - return util.Errorf("not implemented") -} - -func (w *XMLWriter) Open() error { - - return nil -} -func (w *XMLWriter) Close() error { - - w.buf.WriteString("") - - _, err := fmt.Println(w.buf.String()) - return err -} - -func (w *XMLWriter) Records(rows []*sqlh.Record) error { - - if w.buf.Len() == 0 { - w.buf.WriteString("\n") - } - - // REVISIT (neilotoole): the library used for marshalling is a bit non-go-like. - // Consider changing it in future. - - // TODO (neilotoole): the output should be colorized - - for _, row := range rows { - - m := make(map[string]interface{}) - - vals := row.Values - - cells := make([]string, len(vals)) - - colTypes := row.Fields - - for i, val := range vals { - - switch val := val.(type) { - case nil: - m[colTypes[i].Name] = "" - case *[]byte: - // do some base64 on this shit - m[colTypes[i].Name] = base64.StdEncoding.EncodeToString(*val) - case *sql.NullString: - m[colTypes[i].Name] = val.String - case *sql.NullBool: - - if val.Valid { - cells[i] = fmt.Sprintf("%v", val.Bool) - } else { - cells[i] = "" - } - - case *sql.NullInt64: - - if val.Valid { - m[colTypes[i].Name] = fmt.Sprintf("%v", val.Int64) - } else { - m[colTypes[i].Name] = "" - } - case *sql.NullFloat64: - - if val.Valid { - m[colTypes[i].Name] = fmt.Sprintf("%v", val.Float64) - } else { - m[colTypes[i].Name] = "" - } - // TODO: support datetime - - default: - - m[colTypes[i].Name] = fmt.Sprintf("%v", val) - lg.Debugf("unexpected column value type, treating as default: %T(%v)", val, val) - } - - } - - item := mxj.Map(m) - bytes, err := item.XmlIndent(" ", " ", "row") - if err != nil { - return util.Errorf("unable to marshall XML: %v", err) - } - - w.buf.WriteString(string(bytes) + "\n") - } - - //w.csv.Flush() - return nil -} - -// -//func main() { -// -// //type doc struct { -// // rows []map[string]interface{} -// //} -// // -// //d := &doc{} -// -// buf := &bytes.Buffer{} -// buf.WriteString("\n") -// -// items := []mxj.Map{} -// -// m1 := make(map[string]interface{}) -// m1["uid"] = 1 -// m1["username"] = "neilotoole" -// -// m2 := make(map[string]interface{}) -// m2["uid"] = 2 -// m2["username"] = "ksoze" -// -// items = append(items, mxj.Map(m1)) -// items = append(items, mxj.Map(m2)) -// -// for _, item := range items { -// bytes, err := item.XmlIndent(" ", " ", "row") -// -// //bytes, err := xml.MarshalIndent(m, "", " ") -// if err != nil { -// panic(err) -// } -// -// buf.WriteString(string(bytes) + "\n") -// -// } -// -// //d.rows = append(d.rows, m1) -// //d.rows = append(d.rows, m2) -// // -// //mxStruct, err := mxj.NewMapStruct(d) -// //if err != nil { -// // panic(err) -// //} -// // -// //bytes, err := mxStruct.XmlIndent("", " ", "rows") -// -// //mxMap := mxj.Map(m1) -// //// -// //////mx, err := mxj.NewMapStruct(m) -// //////if err != nil { -// ////// panic(err) -// //////} -// //// -// //bytes, err := mxMap.XmlIndent("", " ", "row") -// // -// ////bytes, err := xml.MarshalIndent(m, "", " ") -// //if err != nil { -// // panic(err) -// //} -// // -// //buf.WriteString(string(bytes)) -// -// buf.WriteString("") -// -// fmt.Println(buf.String()) -//} diff --git a/cmd/ping.go b/cmd/ping.go deleted file mode 100644 index 9c78ea80..00000000 --- a/cmd/ping.go +++ /dev/null @@ -1,177 +0,0 @@ -package cmd - -import ( - "fmt" - - "sync" - "time" - - "strconv" - - "github.com/emirpasic/gods/sets/hashset" - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/cmd/out" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/engine" - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -// pingCmd represents the ping command -var pingCmd = &cobra.Command{ - Use: "ping [@HANDLE]", - Example: ` # ping active data source - sq ping - - # ping all data sources - sq ping --all - - # ping @my1 data source - sq ping @my1`, - Short: "Check data source connection health", - Long: `Ping data source to check connection health. If no arguments provided, the -active data source is pinged.`, - RunE: execPing, -} - -func init() { - preprocessCmd(pingCmd) - pingCmd.Flags().BoolP(FlagPingAll, FlagPingAllShort, false, FlagPingAllUsage) - RootCmd.AddCommand(pingCmd) - -} - -func execPing(cmd *cobra.Command, args []string) error { - - if len(args) > 1 { - return util.Errorf("invalid arguments") - } - - var srcs []*drvr.Source - - if cmd.Flags().Changed(FlagPingAll) { - srcs = cfg.SourceSet.Items - } else { - var err error - var src *drvr.Source - if len(args) == 0 { - ok := false - src, ok = cfg.SourceSet.Active() - if !ok { - return util.Errorf("can't get active data source") - } - } else { - - src, err = cfg.SourceSet.Get(args[0]) - if err != nil { - return err - } - } - - srcs = []*drvr.Source{src} - } - - lg.Debugf("got srcs: %d", len(srcs)) - doPing(srcs, cfg.Options.Timeout) - return nil -} - -func doPing(srcs []*drvr.Source, timeout time.Duration) { - - //timeout := 5 - mu := &sync.Mutex{} - wg := &sync.WaitGroup{} - - // maxLen is max length of the datasource name - maxNameLen := 0 - unfinishedSrcs := hashset.New() - for _, src := range srcs { - unfinishedSrcs.Add(src) - if len(src.Handle) > maxNameLen { - maxNameLen = len(src.Handle) - } - } - - wg.Add(len(srcs)) - for _, src := range srcs { - - go doPingOne(src, maxNameLen, unfinishedSrcs, mu, wg) - - } - - //wg.Wait() - done := make(chan struct{}) - go func() { - wg.Wait() - close(done) - }() - - lg.Debugf("using ping timeout: %s", timeout) - - select { - case <-done: - // All done! - case <-time.After(timeout): - // Hit timeout. - //fmt.Printf("hit the timeout yo\n") - } - - //fmt.Printf("Num unfinished: %d\n", unfinishedSrcs.Size()) - for _, val := range unfinishedSrcs.Values() { - src := val.(*drvr.Source) - - out.Color.Number.Printf("%-"+strconv.Itoa(maxNameLen)+"s", src.Handle) - //color.Set(out.Attrs.Number) - //fmt.Printf("%-"+strconv.Itoa(maxNameLen)+"s", src.Ref) - //color.Unset() - fmt.Printf(" - ") - - out.Color.Error.Printf("no pong!") - - //color.Set(out.Attrs.Error) - //fmt.Printf("no pong!") - //color.Unset() - fmt.Printf(" exceeded timeout of %s", timeout) - fmt.Printf("\n") - // TODO: move to using getWriter() mechanism - - } -} - -func doPingOne(src *drvr.Source, maxNameLen int, unfinishedSrcs *hashset.Set, mu *sync.Mutex, wg *sync.WaitGroup) { - lg.Debugf("starting...") - defer wg.Done() - start := time.Now() - - var err error - var database *engine.Database - database, err = engine.NewDatabase(src) - if err == nil { - err = database.Ping() - } - - finish := time.Now() - duration := finish.Sub(start) - - mu.Lock() - defer mu.Unlock() - - unfinishedSrcs.Remove(src) - - out.Color.Number.Printf("%-"+strconv.Itoa(maxNameLen)+"s", src.Handle) - - fmt.Printf(" %4dms ", duration/time.Millisecond) - - if err != nil { - - out.Color.Error.Printf("no pong!") - fmt.Printf(" %s", err) - fmt.Printf("\n") - return - } - - out.Color.Success.Printf("pong!") - fmt.Printf("\n") - // TODO: move to using getWriter() mechanism - -} diff --git a/cmd/query.go b/cmd/query.go deleted file mode 100644 index 3bfcf22e..00000000 --- a/cmd/query.go +++ /dev/null @@ -1,139 +0,0 @@ -package cmd - -import ( - "fmt" - - "strings" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/cmd/config" - "github.com/neilotoole/sq/libsq" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -var queryCmd = &cobra.Command{ - Use: "query", - Short: "", - RunE: execQuery, - Hidden: true, -} - -func init() { - preprocessCmd(queryCmd) - addQueryCmdFlags(queryCmd) - queryCmd.SetUsageFunc(func(cmd *cobra.Command) error { - RootCmd.Help() - return nil - }) - RootCmd.AddCommand(queryCmd) -} - -func execQuery(cmd *cobra.Command, args []string) error { - if len(args) == 0 { - return util.Errorf("no arguments provided") - } - - for i, arg := range args { - args[i] = strings.TrimSpace(arg) - } - qry := strings.Join(args, " ") - - if getQueryMode(cmd, cfg) == config.ModeSLQ { - - lg.Debugf("using sq mode") - _, slq, err := processUserQuery(cfg, args) - if err != nil { - return err - } - err = libsq.Execute(*cfg.SourceSet, slq, wrtr) - return err - } - - lg.Debugf("using database native SQL mode") - // else it's a traditional database-native SQL query - src, ok := cfg.SourceSet.Active() - if !ok || src == nil { - return util.Errorf("no active data source") - } - - return libsq.ExecuteSQL(*src, qry, wrtr) -} - -// processUserQuery does a bit of validation and munging on the SLQ input. If the query -// doesn't contain a @HANDLE, the active src handle is prepended to the query. -// Otherwise the function performs some basic sanity checking on SLQ input. On success -// the function returns the first referenced src, and the (potentially modified) SLQ string. -func processUserQuery(cfg *config.Config, args []string) (src *drvr.Source, slq string, err error) { - start := strings.TrimSpace(args[0]) - parts := strings.Split(start, " ") - - if parts[0][0] == '@' { - // the args already start with a datasource - dsParts := strings.Split(parts[0], ".") - - dsName := dsParts[0] - if len(dsName) < 2 { - // DS name is too short - return nil, "", util.Errorf("invalid data source: %q", dsName) - } - - // strip the leading @ - dsName = dsName[1:] - - src, err = cfg.SourceSet.Get(dsName) - if err != nil { - return nil, "", err - } - - // we now know the DS to use - slq = strings.Join(args, " ") - return src, slq, nil - } - - // no datasource provided as part of the args, use the active source - src, ok := cfg.SourceSet.Active() - if !ok { - return nil, "", util.Errorf("no data source provided, and no active data source") - } - - q := strings.Join(args, " ") - slq = fmt.Sprintf("%s | %s", src.Handle, q) - - return src, slq, nil -} - -// addQueryCmdFlags sets all the flags on the query command. -func addQueryCmdFlags(cmd *cobra.Command) { - cmd.Flags().BoolP(FlagModeSLQ, FlagModeSLQShort, false, FlagModeSLQUsage) - cmd.Flags().BoolP(FlagModeNativeSQL, FlagModeNativeSQLShort, false, FlagModeNativeSQLUsage) - - cmd.Flags().BoolP(FlagJSON, FlagJSONShort, false, FlagJSONUsage) - cmd.Flags().BoolP(FlagTable, FlagTableShort, false, FlagTableUsage) - cmd.Flags().BoolP(FlagXML, FlagXMLShort, false, FlagXMLUsage) - cmd.Flags().BoolP(FlagXLSX, FlagXLSXShort, false, FlagXLSXUsage) - cmd.Flags().BoolP(FlagCSV, FlagCSVShort, false, FlagCSVUsage) - cmd.Flags().BoolP(FlagTSV, FlagTSVShort, false, FlagTSVUsage) - cmd.Flags().BoolP(FlagRaw, FlagRawShort, false, FlagRawUsage) - - cmd.Flags().BoolP(FlagHeader, FlagHeaderShort, false, FlagHeaderUsage) - cmd.Flags().BoolP(FlagNoHeader, FlagNoHeaderShort, false, FlagNoHeaderUsage) - cmd.Flags().BoolP(FlagMonochrome, FlagMonochromeShort, false, FlagMonochromeUsage) -} - -func getQueryMode(cmd *cobra.Command, cfg *config.Config) config.QueryMode { - mode := cfg.Options.QueryMode - if mode != config.ModeSLQ && mode != config.ModeNativeSQL { - mode = config.ModeSLQ - } - - if cmd.Flags().Changed(FlagModeNativeSQL) { - mode = config.ModeNativeSQL - } - if cmd.Flags().Changed(FlagModeSLQ) { - mode = config.ModeSLQ - } - - return mode -} diff --git a/cmd/root.go b/cmd/root.go deleted file mode 100644 index 3e33e39a..00000000 --- a/cmd/root.go +++ /dev/null @@ -1,221 +0,0 @@ -package cmd - -import ( - "fmt" - "os" - - "path/filepath" - - "github.com/mitchellh/go-homedir" - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/cmd/config" - _ "github.com/neilotoole/sq/libsq/drvr/impl" - "github.com/neilotoole/sq/libsq/shutdown" - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -// RootCmd represents the base command when called without any subcommands -var RootCmd = &cobra.Command{ - Use: `sq QUERY`, - Example: ` # get specified cols from tbladdress in active data source - sq '.tbladdress | .address_id, .city, .country' - - # register data source - sq add 'mysql://user:pass@localhost:3306/mydb1' @my1 - - # list available data sources - sq ls - - # set active data source - sq src @my1 - - # get schema etc for data source - sq inspect @my1 - - # output in table format (with header) - sq -th '.user | .uid, .username, .email' - - # join across data sources - sq '@my1.user, @pg1.tbladdress | join(.uid) | .username, .email, .city' - - # native (SQL) query: - sq -n 'SELECT uid, username, email FROM user'`, - Short: "sq - simple queryer for structured data", - Long: `sq - simple queryer for structured data - provides simple, uniform access to -structured data across many common data sources. Results are output in JSON by -default, but several output formats are available. sq uses a simple universal -query language (aka "SLQ"), inspired by the excellent "jq" utility, but -traditional database-native SQL queries are also supported. - -For full usage, see the online manual: http://neilotoole.io/sq -`, - BashCompletionFunction: bash_completion_func, - //Uncomment the following line if your bare application - //has an action associated with it: - Run: func(cmd *cobra.Command, args []string) { - panic("root.go: should never be executed") - }, -} - -// Execute adds all child commands to the root command sets flags appropriately. -// This is called by main.main(). It only needs to happen once to the rootCmd. -func Execute() { - - // HACK: This is a workaround for the fact that cobra doesn't currently - // support executing the root command with arbitrary args. That is to say, - // if you execute: - // - // sq arg1 arg2 - // - // then cobra will look for a command named "arg1", and when it - // doesn't find such a command, it returns an "unknown command" - // error. - // There are currently a number of open PRs for this issue, but - // none have been merged into cobra's master yet (2016/07/28) - - cmd, _, _ := RootCmd.Find(os.Args[1:]) - - // We determine it's the root command if there's an err returned from - // Find(), and the cmd.Name is the program name (usually 'sq', but the - // user could rename it). - // TODO: need to check for user renaming the command? - //if (cmdArgs == nil || len(cmdArgs) == 0) || (err != nil && cmd != nil && cmd.Name() == "sq") { - if cmd != nil && cmd.Name() == "sq" { // REVISIT: note that when run from debugger, that os.Args[0] can be weird text - - // Basically, if we have os.Args: [sq, arg1, arg2] - // We redirect to the "query" command by changing os.Args to - // look like: [sq, query, arg1, arg2] - hackArgs := []string{os.Args[0], "query"} - hackArgs = append(hackArgs, os.Args[1:]...) - os.Args = hackArgs - } - - if err := RootCmd.Execute(); err != nil { - - cmd, _, _ := RootCmd.Find(os.Args[1:]) - handleError(cmd, err) - } - - shutdown.Shutdown(0) -} - -func init() { - cobra.OnInitialize(doInstallBashCompletion) - addQueryCmdFlags(RootCmd) - preprocessCmd(RootCmd) -} - -// cfg is the package-level Config instance. By the time the body of a command -// executes, cfg will have been initialized. -var cfg *config.Config - -// cfgStore is the package-level config.Store instance. By the time the body of a command -// executes, cfgStore will have been initialized. -var cfgStore *config.FileStore - -// initConfig ensures that the package's cfg and store variables are initialized. -func initConfig(cmd *cobra.Command) (*config.Config, config.Store, error) { - if cfg != nil { - return cfg, cfgStore, nil - } - - // cfg isn't loaded yet - envar := "SQ_CONFIGFILE" - cfgPath, ok := os.LookupEnv(envar) - if !ok { - // envar not set, let's use the user homedir - dir, err := homedir.Dir() - if err != nil { - // really shouldn't happen - lg.Errorf("failed to get home dir: %v", err) - lg.Warnf("failing back to current working dir") - dir, err = os.Getwd() - if err != nil { - // also should not happen - return nil, nil, util.WrapError(err) - } - - } - cfgPath = filepath.Join(dir, "sq.yml") - } - - cfgStore = &config.FileStore{cfgPath} - lg.Debugf("attempting to use config file %q", cfgStore.Path) - if !cfgStore.FileExists() { - lg.Debugf("config file does not exist: %v", cfgStore.Path) - cfg = config.New() - return cfg, cfgStore, nil - } - - // file does exist, let's try to load it - conf, err := cfgStore.Load() - if err != nil { - return nil, nil, err - } - lg.Debugf("loaded config file %q", cfgStore.Path) - cfg = conf - return cfg, cfgStore, nil -} - -// preprocessCmd should be run on all commands before they are added to to cobra. -func preprocessCmd(cmd *cobra.Command) { - cmd.Flags().BoolP("help", "", false, "Help for "+cmd.Name()) - - if cmd.RunE != nil { - // Wrap the cmd run function in the decorator below, enabling - // centralized error handling and what not. - execFn := cmd.RunE - cmd.RunE = func(cmd *cobra.Command, args []string) error { - lg.Debugf("invoking cmd %q: %v", cmd.Name(), args) - err := execFn(cmd, args) - if err != nil { - handleError(cmd, err) - } - return nil - } - } - - if cmd.PreRunE == nil { - cmd.PreRunE = preExec - } - - // We handle the errors ourselves (rather than let cobra do it) - cmd.SilenceErrors = true - cmd.SilenceUsage = true -} - -// preExec is called before a cmd is executed. -func preExec(cmd *cobra.Command, args []string) error { - - lg.Debugf("executing command %q: %v", cmd.Name(), args) - _, _, err := initConfig(cmd) - if err != nil { - return err - } - - initWriter(cmd, cfg) - return nil -} - -// handleError is the centralized function for handling CLI errors. It prints -// the error, invokes the shutdown mechanism, and ultimately invokes os.Exit(1). -func handleError(cmd *cobra.Command, err error) { - if err == nil { - return - } - - cmdName := "" - if cmd != nil { - cmdName = fmt.Sprintf("[cmd:%s] ", cmd.Name()) - } - - lg.Depth(1).Errorf(fmt.Sprintf("%s%v", cmdName, err)) - - if wrtr == nil { - initWriter(cmd, cfg) - } - - wrtr.Error(err) - shutdown.Shutdown(1) -} diff --git a/cmd/src_add.go b/cmd/src_add.go deleted file mode 100644 index d0c833a0..00000000 --- a/cmd/src_add.go +++ /dev/null @@ -1,120 +0,0 @@ -package cmd - -import ( - "strings" - - "net/url" - - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -// addCmd represents the add command -var srcAddCmd = &cobra.Command{ - Use: "add LOCATION @HANDLE", - Example: ` sq add 'mysql://user:pass@tcp(localhost:3306)/mydb1' @my1 - sq add 'postgres://user:pass@localhost/pgdb1?sslmode=disable' @pg1 - sq add '/testdata/sqlite1.db' @sl1 --driver=sqlite3 - sq add /testdata/test1.xlsx @excel1 --opts='header=true' - sq add http://neilotoole.io/sq/test/test1.xlsx @excel2 - sq add /testdata/user_comma_header.csv @csv1 --opts='header=true'`, - Short: "Add data source", - Long: `Add data source specified by LOCATION and identified by @HANDLE. The -format of LOCATION varies, but is generally a DB connection string, a file path, -or a URL. - - DRIVER://CONNECTION_STRING - /path/to/local/file.suf - https://neilotoole.io/data/test1.xlsx - -If LOCATION is a file path or URL, sq will attempt to determine the driver type -from the file suffix or URL Content-Type. If the result is ambiguous, you -must specify the driver via the --driver=X flag. - -Available drivers: - - mysql MySQL - postgres Postgres - sqlite3 SQLite3 - xlsx Microsoft Excel XLSX - csv Comma-Separated Values - tsv Tab-Separated Values - -Additional help: http://neilotoole.io/sq`, - RunE: execSrcAdd, -} - -func init() { - preprocessCmd(srcAddCmd) - - srcAddCmd.Flags().StringP(FlagDriver, "", "", FlagDriverUsage) - srcAddCmd.Flags().StringP(FlagSrcAddOptions, "", "", FlagSrcAddOptionsUsage) - RootCmd.AddCommand(srcAddCmd) - - // TODO: add flag --active to immediately set added src as active -} - -func execSrcAdd(cmd *cobra.Command, args []string) error { - if len(args) == 1 { - return util.Errorf("sorry, the @HANDLE argument is currently required, we'll fix that soon") - } - - if len(args) != 2 { - return util.Errorf("invalid arguments") - } - - location := strings.TrimSpace(args[0]) - handle := strings.TrimSpace(args[1]) - - err := drvr.CheckHandleValue(handle) - if err != nil { - return err - } - - i, _ := cfg.SourceSet.IndexOf(handle) - if i != -1 { - return util.Errorf("data source handle %q already exists", handle) - } - - driverName := "" - if cmd.Flags().Changed(FlagDriver) { - driverName, _ = cmd.Flags().GetString(FlagDriver) - } - - var opts url.Values - if cmd.Flags().Changed(FlagSrcAddOptions) { - val, _ := cmd.Flags().GetString(FlagSrcAddOptions) - - val = strings.TrimSpace(val) - - if val != "" { - vals, err := url.ParseQuery(val) - if err != nil { - return util.Errorf("unable to parse options string (should be in URL-encoded query format): %v", err) - } - opts = vals - } - } - - src, err := drvr.AddSource(handle, location, driverName, opts) - if err != nil { - return err - } - - err = cfg.SourceSet.Add(src) - if err != nil { - return err - } - if len(cfg.SourceSet.Items) == 1 { - // If this is the first DS, make it current - cfg.SourceSet.SetActive(src.Handle) - } - - err = cfgStore.Save(cfg) - if err != nil { - return err - } - - return wrtr.Source(src) -} diff --git a/cmd/src_list.go b/cmd/src_list.go deleted file mode 100644 index faeb1b05..00000000 --- a/cmd/src_list.go +++ /dev/null @@ -1,36 +0,0 @@ -package cmd - -import ( - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -var srcListCmd = &cobra.Command{ - Use: "ls", - Aliases: []string{"list"}, - Short: "List data sources", - RunE: execSrcList, -} - -func init() { - preprocessCmd(srcListCmd) - RootCmd.AddCommand(srcListCmd) -} - -func execSrcList(cmd *cobra.Command, args []string) error { - - if len(args) != 0 { - return util.Errorf("invalid arguments") - } - - //cfg, _, w, err := ioFor(cmd, args) - //if err != nil { - // return err - //} - //if cfg.SourceSet == nil { - // return nil - //} - - active, _ := cfg.SourceSet.Active() - return wrtr.SourceSet(cfg.SourceSet, active) -} diff --git a/cmd/src_remove.go b/cmd/src_remove.go deleted file mode 100644 index 599acce7..00000000 --- a/cmd/src_remove.go +++ /dev/null @@ -1,52 +0,0 @@ -package cmd - -import ( - "fmt" - - "github.com/neilotoole/sq/cmd/out" - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -// srcRemoveCmd represents the remove command -var srcRemoveCmd = &cobra.Command{ - Use: "rm @HANDLE", - Example: ` sq rm @my1`, - Aliases: []string{"remove"}, - Short: "Remove data source", - RunE: execSrcRemove, -} - -func init() { - preprocessCmd(srcRemoveCmd) - RootCmd.AddCommand(srcRemoveCmd) - -} - -func execSrcRemove(cmd *cobra.Command, args []string) error { - if len(args) != 1 { - return util.Errorf("invalid arguments") - } - - src, err := cfg.SourceSet.Get(args[0]) - if err != nil { - return err - } - - err = cfg.SourceSet.Remove(src.Handle) - if err != nil { - return err - } - - err = cfgStore.Save(cfg) - if err != nil { - return err - } - - // TODO: move to using getWriter() mechanism - fmt.Printf("Removed data source ") - out.Color.Hilite.Printf("%s", src.Handle) - fmt.Println() - - return nil -} diff --git a/cmd/src_use.go b/cmd/src_use.go deleted file mode 100644 index 25d22a7b..00000000 --- a/cmd/src_use.go +++ /dev/null @@ -1,53 +0,0 @@ -package cmd - -import ( - "github.com/neilotoole/sq/libsq/util" - "github.com/spf13/cobra" -) - -var srcCmd = &cobra.Command{ - Use: "src [@HANDLE]", - Example: ` # get active data source - sq src - # set @my1 as active data source - sq src @my1`, - RunE: execUse, - Short: "Get or set active data source", - Aliases: []string{"using"}, - Long: `Get or set active data source. If no argument provided, get the active data -source. Otherwise, set @HANDLE as the active data source.`, -} - -func init() { - preprocessCmd(srcCmd) - RootCmd.AddCommand(srcCmd) - -} - -func execUse(cmd *cobra.Command, args []string) error { - if len(args) > 1 { - return util.Errorf("invalid arguments") - } - - if len(args) == 0 { - // Get the active data source - src, ok := cfg.SourceSet.Active() - if !ok { - return nil - } - - return wrtr.Source(src) - } - - src, err := cfg.SourceSet.SetActive(args[0]) - if err != nil { - return err - } - - err = cfgStore.Save(cfg) - if err != nil { - return err - } - - return wrtr.Source(src) -} diff --git a/cmd/tester.go b/cmd/tester.go deleted file mode 100644 index f058d843..00000000 --- a/cmd/tester.go +++ /dev/null @@ -1,37 +0,0 @@ -package cmd - -import ( - "fmt" - - "strconv" - - "github.com/spf13/cobra" -) - -var testerCmd = &cobra.Command{ - Use: "tester", - Hidden: true, - Short: "[DEV] This cmd is here for executing code under debug", - RunE: execTester, -} - -func init() { - preprocessCmd(testerCmd) - RootCmd.AddCommand(testerCmd) - -} - -func execTester(cmd *cobra.Command, args []string) error { - fmt.Println("execTest") - - names := []string{"one", "fourteen", "nineteeneightyfour"} - maxLen := 18 - - tpl := "%" + strconv.Itoa(maxLen) + "s wubble\n" - - for _, name := range names { - fmt.Printf(tpl, name) - } - - return nil -} diff --git a/cmd/version.go b/cmd/version.go deleted file mode 100644 index c1234e03..00000000 --- a/cmd/version.go +++ /dev/null @@ -1,55 +0,0 @@ -package cmd - -import ( - "fmt" - - "strings" - - "github.com/neilotoole/sq/cmd/assets" - "github.com/neilotoole/sq/cmd/out" - "github.com/spf13/cobra" -) - -var versionCmd = &cobra.Command{ - Use: "version", - Short: "Print sq version", - RunE: execVersion, -} - -func init() { - preprocessCmd(versionCmd) - RootCmd.AddCommand(versionCmd) -} - -func execVersion(cmd *cobra.Command, args []string) error { - - version, timestamp := getBuildInfo() - - // TODO: move to using getWriter() mechanism - out.Color.Hilite.Printf("sq %s", version) - fmt.Printf(" ") - out.Color.Faint.Printf(timestamp) - fmt.Println() - fmt.Printf("simple queryer for structured data ") - out.Color.Faint.Printf("http://neilotoole.io/sq") - fmt.Println() - - return nil -} - -func getBuildInfo() (version string, timestamp string) { - - bytes, err := assets.Asset("build_version.txt") - if err != nil { - panic(err) - } - version = strings.TrimSpace(string(bytes)) - - bytes, err = assets.Asset("build_timestamp.txt") - if err != nil { - panic(err) - } - timestamp = strings.TrimSpace(string(bytes)) - return - -} diff --git a/cmd/writer.go b/cmd/writer.go deleted file mode 100644 index 8b0ebfae..00000000 --- a/cmd/writer.go +++ /dev/null @@ -1,162 +0,0 @@ -package cmd - -import ( - "github.com/neilotoole/sq/cmd/config" - "github.com/neilotoole/sq/cmd/out" - "github.com/neilotoole/sq/cmd/out/raw" - "github.com/neilotoole/sq/cmd/out/table" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/spf13/cobra" - - "runtime" - - "github.com/fatih/color" - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/cmd/out/csv" - "github.com/neilotoole/sq/cmd/out/json" - "github.com/neilotoole/sq/cmd/out/xlsx" - "github.com/neilotoole/sq/cmd/out/xml" -) - -// wrtr caches the writer instance for use by the CLI. -var wrtr *writer - -// writer implements all of the possible out.*Writer interfaces. The CLI should -// write user/program output only via this object. -type writer struct { - cmd *cobra.Command - recw out.RecordWriter - metaw out.MetadataWriter - srcw out.SourceWriter - errw out.ErrorWriter - helpw out.HelpWriter -} - -func (w *writer) Records(records []*sqlh.Record) error { - return w.recw.Records(records) -} -func (w *writer) Close() error { - return w.recw.Close() -} -func (w *writer) Metadata(meta *drvr.SourceMetadata) error { - return w.metaw.Metadata(meta) -} -func (w *writer) SourceSet(srcs *drvr.SourceSet, active *drvr.Source) error { - return w.srcw.SourceSet(srcs, active) -} -func (w *writer) Source(src *drvr.Source) error { - return w.srcw.Source(src) -} -func (w *writer) Error(err error) { - w.errw.Error(err) -} -func (w *writer) Help(help string) error { - return w.helpw.Help(help) -} - -// initWriter ensures that the cmd.wrtr var is available (as configured by the flags -// on cmd, defaults in cfg, etc). It is permissible for cmd and/or cfg to be nil. -func initWriter(cmd *cobra.Command, cfg *config.Config) { - - if wrtr != nil { - lg.Warnf("cmd.wrtr is already initalized") - return - } - - if runtime.GOOS == "windows" { - lg.Debugf("Windows OS detected: disabling colorized output") - // TODO: at some point need to look into handling windows color support - color.NoColor = true - } - - if cfg == nil { - // Create a default Config (for the duration of this function, - // we don't overwrite the package-level cfg var) - cfg = config.New() - } - - if cmd == nil { - // this shouldn't happen, but let's play it safe - tblw := table.NewWriter(cfg.Options.Header) - wrtr = &writer{cmd: cmd, recw: tblw, metaw: tblw, srcw: tblw, errw: tblw, helpw: tblw} - return - } - - // we need to determine --header here because the writer/format constructor - // functions (e.g. table.NewWriter()) currently require it. - hasHeader := false - switch { - case cmdFlagChanged(cmd, FlagHeader): - hasHeader = true - case cmdFlagChanged(cmd, FlagNoHeader): - hasHeader = false - default: - // get the default --header value from config - hasHeader = cfg.Options.Header - } - - // table.NewWriter implements all sq's writer interfaces, so we set - // that as default. Later we check the format flags and set the - // various wi fields depending upon what functionality the format - // implements. - tblw := table.NewWriter(hasHeader) - w := &writer{cmd: cmd, recw: tblw, metaw: tblw, srcw: tblw, errw: tblw, helpw: tblw} - - var format config.Format - - switch { - // cascade through the format flags in low-to-high order of precedence. - case cmdFlagChanged(cmd, FlagTSV): - format = config.FormatTSV - case cmdFlagChanged(cmd, FlagCSV): - format = config.FormatCSV - case cmdFlagChanged(cmd, FlagXLSX): - format = config.FormatXLSX - case cmdFlagChanged(cmd, FlagXML): - format = config.FormatXML - case cmdFlagChanged(cmd, FlagRaw): - format = config.FormatRaw - case cmdFlagChanged(cmd, FlagTable): - format = config.FormatTable - case cmdFlagChanged(cmd, FlagJSON): - format = config.FormatJSON - default: - // no format flag, use the config value (which itself defaults to JSON) - format = cfg.Options.Format - } - - switch format { - case config.FormatTSV: - w.recw = csv.NewWriter(hasHeader, '\t') - case config.FormatCSV: - w.recw = csv.NewWriter(hasHeader, ',') - case config.FormatXML: - w.recw = xml.NewWriter() - case config.FormatXLSX: - w.recw = xlsx.NewWriter(hasHeader) - case config.FormatRaw: - w.recw = raw.NewWriter() - case config.FormatTable: - tw := table.NewWriter(hasHeader) - w.recw = tw - w.metaw = tw - default: - jw := json.NewWriter() - w.recw = jw - w.metaw = jw - } - - wrtr = w - return -} - -// cmdFlagChanged returns true if cmd has the named flag and it has been changed. -func cmdFlagChanged(cmd *cobra.Command, name string) bool { - flag := cmd.Flag(name) - if flag == nil { - return false - } - - return flag.Changed -} diff --git a/drivers/csv/crfilter.go b/drivers/csv/crfilter.go new file mode 100644 index 00000000..7aa3a1a0 --- /dev/null +++ b/drivers/csv/crfilter.go @@ -0,0 +1,28 @@ +package csv + +import "io" + +// crFilterReader is a reader whose Read method converts +// standalone carriage return '\r' bytes to newline '\n'. +// CRLF "\r\n" sequences are untouched. +// This is useful for reading from DOS format, e.g. a TSV +// file exported by Microsoft Excel. +type crFilterReader struct { + r io.Reader +} + +func (r *crFilterReader) Read(p []byte) (n int, err error) { + n, err = r.r.Read(p) + + for i := 0; i < n; i++ { + if p[i] == 13 { + if i+1 < n && p[i+1] == 10 { + continue // it's \r\n + } + // it's just \r by itself, replace + p[i] = 10 + } + } + + return n, err +} diff --git a/libsq/util/util_test.go b/drivers/csv/crfilter_test.go similarity index 63% rename from libsq/util/util_test.go rename to drivers/csv/crfilter_test.go index a23699fb..203760aa 100644 --- a/libsq/util/util_test.go +++ b/drivers/csv/crfilter_test.go @@ -1,4 +1,4 @@ -package util +package csv import ( "bytes" @@ -8,8 +8,10 @@ import ( "github.com/stretchr/testify/require" ) -func TestNewCRFilterReader(t *testing.T) { - tests := []struct { +func Test_crFilterReader(t *testing.T) { + t.Parallel() + + testCases := []struct { in string want string }{ @@ -25,10 +27,10 @@ func TestNewCRFilterReader(t *testing.T) { {"abc\r\n\r", "abc\r\n\n"}, } - for _, test := range tests { - filter := NewCRFilterReader(bytes.NewReader([]byte(test.in))) + for _, tc := range testCases { + filter := &crFilterReader{r: bytes.NewReader([]byte(tc.in))} actual, err := ioutil.ReadAll(filter) require.Nil(t, err) - require.Equal(t, test.want, string(actual)) + require.Equal(t, tc.want, string(actual)) } } diff --git a/drivers/csv/csv.go b/drivers/csv/csv.go new file mode 100644 index 00000000..e2eea7d6 --- /dev/null +++ b/drivers/csv/csv.go @@ -0,0 +1,243 @@ +// Package csv implements the sq driver for CSV/TSV et al. +package csv + +import ( + "context" + "encoding/csv" + "io" + "io/ioutil" + "strconv" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/cli/output/csvw" + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +const ( + // TypeCSV is the CSV driver type. + TypeCSV = source.Type("csv") + + // TypeTSV is the TSV driver type. + TypeTSV = source.Type("tsv") +) + +// Provider implements driver.Provider. +type Provider struct { + Log lg.Log + Scratcher driver.ScratchDatabaseOpener + Files *source.Files +} + +// DriverFor implements driver.Provider. +func (d *Provider) DriverFor(typ source.Type) (driver.Driver, error) { + switch typ { + case TypeCSV: + return &drvr{log: d.Log, typ: TypeCSV, scratcher: d.Scratcher, files: d.Files}, nil + case TypeTSV: + return &drvr{log: d.Log, typ: TypeTSV, scratcher: d.Scratcher, files: d.Files}, nil + } + + return nil, errz.Errorf("unsupported driver type %q", typ) +} + +// DetectCSV implements source.TypeDetectorFunc. +func DetectCSV(ctx context.Context, r io.Reader) (detected source.Type, score float32, err error) { + return detectType(ctx, TypeCSV, r) +} + +// DetectTSV implements source.TypeDetectorFunc. +func DetectTSV(ctx context.Context, r io.Reader) (detected source.Type, score float32, err error) { + return detectType(ctx, TypeTSV, r) +} + +func detectType(ctx context.Context, typ source.Type, r io.Reader) (detected source.Type, score float32, err error) { + var delim = csvw.Comma + if typ == TypeTSV { + delim = csvw.Tab + } + + cr := csv.NewReader(&crFilterReader{r: r}) + cr.Comma = delim + cr.FieldsPerRecord = -1 + + score = isCSV(ctx, cr) + if score > 0 { + return typ, score, nil + } + + return source.TypeNone, 0, nil +} + +// Driver implements driver.Driver. +type drvr struct { + log lg.Log + typ source.Type + scratcher driver.ScratchDatabaseOpener + files *source.Files +} + +// DriverMetadata implements driver.Driver. +func (d *drvr) DriverMetadata() driver.Metadata { + md := driver.Metadata{Type: d.typ, Monotable: true} + if d.typ == TypeCSV { + md.Description = "Comma-Separated Values" + md.Doc = "https://en.wikipedia.org/wiki/Comma-separated_values" + } else { + md.Description = "Tab-Separated Values" + md.Doc = "https://en.wikipedia.org/wiki/Tab-separated_values" + } + return md +} + +// Open implements driver.Driver. +func (d *drvr) Open(ctx context.Context, src *source.Source) (driver.Database, error) { + dbase := &database{log: d.log, src: src, clnup: cleanup.New(), files: d.files} + + r, err := d.files.NewReader(ctx, src) + if err != nil { + return nil, err + } + + dbase.impl, err = d.scratcher.OpenScratch(ctx, src.Handle) + if err != nil { + d.log.WarnIfCloseError(r) + d.log.WarnIfFuncError(dbase.clnup.Run) + return nil, err + } + + err = d.csvToScratch(ctx, src, r, dbase.impl) + if err != nil { + d.log.WarnIfCloseError(r) + d.log.WarnIfFuncError(dbase.clnup.Run) + return nil, err + } + + err = r.Close() + if err != nil { + return nil, err + } + + return dbase, nil +} + +// Truncate implements driver.Driver. +func (d *drvr) Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (int64, error) { + // TODO: CSV could support Truncate for local files + return 0, errz.Errorf("truncate not supported for %s", d.DriverMetadata().Type) +} + +// ValidateSource implements driver.Driver. +func (d *drvr) ValidateSource(src *source.Source) (*source.Source, error) { + d.log.Debugf("validating source: %q", src.Location) + + if src.Type != d.typ { + return nil, errz.Errorf("expected source type %q but got %q", d.typ, src.Type) + } + + if src.Options != nil || len(src.Options) > 0 { + d.log.Debugf("opts: %v", src.Options.Encode()) + + key := "header" + v := src.Options.Get(key) + + if v != "" { + _, err := strconv.ParseBool(v) + if err != nil { + return nil, errz.Errorf(`unable to parse option %q: %v`, key, err) + } + } + } + + return src, nil +} + +// Ping implements driver.Driver. +func (d *drvr) Ping(ctx context.Context, src *source.Source) error { + d.log.Debugf("driver %q attempting to ping %q", d.typ, src) + + r, err := d.files.NewReader(ctx, src) + if err != nil { + return err + } + defer d.log.WarnIfCloseError(r) + + // FIXME: this is a poor version of ping, but for now we just read the entire thing + // Ultimately we should execute isCSV to verify that the src is indeed CSV. + _, err = ioutil.ReadAll(r) + if err != nil { + return err + } + + return nil +} + +const ( + scoreNo float32 = 0 + scoreMaybe float32 = 0.1 + scoreProbably float32 = 0.2 + // scoreYes is less than 1.0 because other detectors + // (e.g. XLSX) can be more confident + scoreYes float32 = 0.9 +) + +// isCSV returns a score indicating the +// the confidence that cr is reading legitimate CSV, where +// a score <= 0 is not CSV, a score >= 1 is definitely CSV. +func isCSV(ctx context.Context, cr *csv.Reader) (score float32) { + const ( + maxRecords int = 100 + ) + + var recordCount, totalFieldCount int + var avgFields float32 + + for i := 0; i < maxRecords; i++ { + select { + case <-ctx.Done(): + return 0 + default: + } + + rec, err := cr.Read() + + if err != nil { + if err == io.EOF && rec == nil { + // This means end of data + break + } + + // It's a genuine error + return scoreNo + } + totalFieldCount += len(rec) + recordCount++ + } + + if recordCount == 0 { + return scoreNo + } + + avgFields = float32(totalFieldCount) / float32(recordCount) + + if recordCount == 1 { + if avgFields <= 2 { + return scoreMaybe + } + return scoreProbably + } + + // recordCount >= 2 + switch { + case avgFields <= 1: + return scoreMaybe + case avgFields <= 2: + return scoreProbably + default: + // avgFields > 2 + return scoreYes + } +} diff --git a/drivers/csv/csv_test.go b/drivers/csv/csv_test.go new file mode 100644 index 00000000..5ceb3622 --- /dev/null +++ b/drivers/csv/csv_test.go @@ -0,0 +1,57 @@ +package csv_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestSmoke(t *testing.T) { + t.Parallel() + testCases := []string{sakila.CSVActor, sakila.TSVActor, sakila.CSVActorHTTP} + + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(sakila.CSVActor) + + sink, err := th.QuerySQL(src, "SELECT * FROM data") + require.NoError(t, err) + require.Equal(t, len(sakila.TblActorCols), len(sink.RecMeta)) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } +} + +func TestQuerySQL_Count(t *testing.T) { + t.Parallel() + + testCases := []string{sakila.CSVActor, sakila.TSVActor} + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + + sink, err := th.QuerySQL(src, "SELECT * FROM data") + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + + sink, err = th.QuerySQL(src, "SELECT COUNT(*) FROM data") + require.NoError(t, err) + count, ok := sink.Recs[0][0].(*int64) + require.True(t, ok) + require.Equal(t, int64(sakila.TblActorCount), *count) + }) + } +} diff --git a/drivers/csv/database.go b/drivers/csv/database.go new file mode 100644 index 00000000..1bb6aee7 --- /dev/null +++ b/drivers/csv/database.go @@ -0,0 +1,85 @@ +package csv + +import ( + "context" + "database/sql" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// database implements driver.Database. +type database struct { + log lg.Log + src *source.Source + impl driver.Database + clnup *cleanup.Cleanup + files *source.Files +} + +// DB implements driver.Database. +func (d *database) DB() *sql.DB { + return d.impl.DB() +} + +// SQLDriver implements driver.Database. +func (d *database) SQLDriver() driver.SQLDriver { + return d.impl.SQLDriver() +} + +// Source implements driver.Database. +func (d *database) Source() *source.Source { + return d.src +} + +// TableMetadata implements driver.Database. +func (d *database) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + if tblName != source.MonotableName { + return nil, errz.Errorf("table name should be %s for CSV/TSV etc., but got: %s", + source.MonotableName, tblName) + } + + srcMeta, err := d.SourceMetadata(ctx) + if err != nil { + return nil, err + } + + // There will only ever be one table for CSV. + return srcMeta.Tables[0], nil +} + +// SourceMetadata implements driver.Database. +func (d *database) SourceMetadata(ctx context.Context) (*source.Metadata, error) { + md, err := d.impl.SourceMetadata(ctx) + if err != nil { + return nil, err + } + + md.Handle = d.src.Handle + md.Location = d.src.Location + md.SourceType = d.src.Type + + md.Name, err = source.LocationFileName(d.src) + if err != nil { + return nil, err + } + + md.Size, err = d.files.Size(d.src) + if err != nil { + return nil, err + } + + md.FQName = md.Name + return md, nil +} + +// Close implements driver.Database. +func (d *database) Close() error { + d.log.Debugf("Close database: %s", d.src) + + return errz.Combine(d.impl.Close(), d.clnup.Run()) +} diff --git a/drivers/csv/insert.go b/drivers/csv/insert.go new file mode 100644 index 00000000..6995c926 --- /dev/null +++ b/drivers/csv/insert.go @@ -0,0 +1,438 @@ +package csv + +import ( + "context" + "encoding/csv" + "io" + "strconv" + "unicode/utf8" + + "github.com/shopspring/decimal" + + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/options" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +const ( + insertChSize = 1000 + readAheadBufferSize = 100 +) + +// csvToScratch loads the src CSV data to scratchDB. +func (d *drvr) csvToScratch(ctx context.Context, src *source.Source, r io.Reader, scratchDB driver.Database) error { + // TODO: optPredictKind should be read from src.Options. + const optPredictKind bool = true + + // We add the CR filter reader to deal with CSV files exported + // from Excel which can have the DOS-style \r EOL markers. + cr := csv.NewReader(&crFilterReader{r: r}) + var err error + cr.Comma, err = getDelimiter(src) + if err != nil { + return err + } + + // readAheadRecs temporarily holds records read from r for the purpose + // of determining CSV metadata such as column headers, data kind etc. + // These records will later be written to recordCh. + readAheadRecs := make([][]string, 0, readAheadBufferSize) + + colNames, err := getColNames(cr, src, &readAheadRecs) + if err != nil { + return err + } + + var expectFieldCount = len(colNames) + + var colKinds []sqlz.Kind + if optPredictKind { + colKinds, err = predictColKinds(expectFieldCount, cr, &readAheadRecs, readAheadBufferSize) + if err != nil { + return err + } + } else { + // If we're not predicting col kind, then we use KindText. + colKinds = make([]sqlz.Kind, expectFieldCount) + for i := range colKinds { + colKinds[i] = sqlz.KindText + } + } + + // And now we need to create the dest table in scratchDB + tblDef := createTblDef(source.MonotableName, colNames, colKinds) + + err = scratchDB.SQLDriver().CreateTable(ctx, scratchDB.DB(), tblDef) + if err != nil { + return errz.Wrap(err, "csv: failed to create dest scratch table") + } + + recMeta, err := getRecMeta(ctx, scratchDB, tblDef) + if err != nil { + return err + } + + insertWriter := libsq.NewDBWriter(d.log, scratchDB, tblDef.Name, insertChSize) + err = execInsert(ctx, insertWriter, recMeta, readAheadRecs, cr) + if err != nil { + return err + } + + inserted, err := insertWriter.Wait() + if err != nil { + return err + } + + d.log.Debugf("Inserted %d rows to %s.%s", inserted, scratchDB.Source().Handle, tblDef.Name) + return nil +} + +// execInsert inserts the CSV records in readAheadRecs (followed by records +// from the csv.Reader) via recw. The caller should wait on recw to complete. +func execInsert(ctx context.Context, recw libsq.RecordWriter, recMeta sqlz.RecordMeta, readAheadRecs [][]string, r *csv.Reader) error { + ctx, cancelFn := context.WithCancel(ctx) + + recordCh, errCh, err := recw.Open(ctx, cancelFn, recMeta) + if err != nil { + return err + } + defer close(recordCh) + + // Before we continue reading from CSV, we first write out + // any CSV records we read earlier. + for i := range readAheadRecs { + rec := mungeCSV2InsertRecord(readAheadRecs[i]) + + select { + case err = <-errCh: + cancelFn() + return err + case <-ctx.Done(): + cancelFn() + return ctx.Err() + case recordCh <- rec: + } + } + + var csvRecord []string + for { + csvRecord, err = r.Read() + if err == io.EOF { + // We're done reading + return nil + } + if err != nil { + cancelFn() + return errz.Wrap(err, "read from CSV data source") + } + + rec := mungeCSV2InsertRecord(csvRecord) + + select { + case err = <-errCh: + cancelFn() + return err + case <-ctx.Done(): + cancelFn() + return ctx.Err() + case recordCh <- rec: + } + } +} + +// mungeCSV2InsertRecord returns a new []interface{} containing +// the values of the csvRec []string. +func mungeCSV2InsertRecord(csvRec []string) []interface{} { + a := make([]interface{}, len(csvRec)) + for i := range csvRec { + a[i] = csvRec[i] + } + return a +} + +// getRecMeta returns RecordMeta to use with RecordWriter.Open. +func getRecMeta(ctx context.Context, scratchDB driver.Database, tblDef *sqlmodel.TableDef) (sqlz.RecordMeta, error) { + colTypes, err := scratchDB.SQLDriver().TableColumnTypes(ctx, scratchDB.DB(), tblDef.Name, tblDef.ColNames()) + if err != nil { + return nil, err + } + + destMeta, _, err := scratchDB.SQLDriver().RecordMeta(colTypes) + if err != nil { + return nil, err + } + + return destMeta, nil +} + +func createTblDef(tblName string, colNames []string, kinds []sqlz.Kind) *sqlmodel.TableDef { + tbl := &sqlmodel.TableDef{Name: tblName} + + cols := make([]*sqlmodel.ColDef, len(colNames)) + for i := range colNames { + cols[i] = &sqlmodel.ColDef{Table: tbl, Name: colNames[i], Kind: kinds[i]} + } + + tbl.Cols = cols + return tbl +} + +// predictColKinds examines up to maxExamine records in readAheadRecs +// and those returned by r to guess the kind of each field. +// Any additional records read from r are appended to readAheadRecs. +// +// This func considers these candidate kinds, in order of +// precedence: KindInt, KindBool, KindDecimal. +// +// KindDecimal is chosen over KindFloat due to its greater flexibility. +// NOTE: Currently KindTime and KindDatetime are not examined. +// +// If any field (string) value cannot be parsed into a particular kind, that +// kind is excluded from the list of candidate kinds. The first of any +// remaining candidate kinds for each field is returned, or KindText if +// no candidate kinds. +func predictColKinds(expectFieldCount int, r *csv.Reader, readAheadRecs *[][]string, maxExamine int) ([]sqlz.Kind, error) { + candidateKinds := newCandidateFieldKinds(expectFieldCount) + var examineCount int + + // First, read any records from the readAheadRecs buffer + for recIndex := 0; recIndex < len(*readAheadRecs) && examineCount < maxExamine; recIndex++ { + for fieldIndex := 0; fieldIndex < expectFieldCount; fieldIndex++ { + candidateKinds[fieldIndex] = excludeFieldKinds(candidateKinds[fieldIndex], (*readAheadRecs)[recIndex][fieldIndex]) + } + examineCount++ + } + + // Next, continue to read from r until we reach maxExamine records. + for ; examineCount < maxExamine; examineCount++ { + rec, err := r.Read() + if err == io.EOF { + break + } + if err != nil { + return nil, errz.Err(err) + } + + if len(rec) != expectFieldCount { + // safety check + return nil, errz.Errorf("expected %d fields in CSV record but got %d", examineCount, len(rec)) + } + + for fieldIndex, fieldValue := range rec { + candidateKinds[fieldIndex] = excludeFieldKinds(candidateKinds[fieldIndex], fieldValue) + } + + // Add the recently read record to readAheadRecs so that + // it's not lost. + *readAheadRecs = append(*readAheadRecs, rec) + } + + resultKinds := make([]sqlz.Kind, expectFieldCount) + for i := range resultKinds { + switch len(candidateKinds[i]) { + case 0: + // If all candidate kinds have been excluded, KindText is + // the fallback option. + resultKinds[i] = sqlz.KindText + default: + // If there's one or more candidate kinds remaining, pick the first + // one available, as it should be the most specific kind. + resultKinds[i] = candidateKinds[i][0] + } + } + return resultKinds, nil +} + +// newCandidateFieldKinds returns a new slice of sqlz.Kind containing +// potential kinds for a field/column. The kinds are in an order of +// precedence. +func newCandidateFieldKinds(n int) [][]sqlz.Kind { + kinds := make([][]sqlz.Kind, n) + for i := range kinds { + k := []sqlz.Kind{ + sqlz.KindInt, + sqlz.KindBool, + sqlz.KindDecimal, + } + kinds[i] = k + } + + return kinds +} + +// excludeFieldKinds returns a filter of fieldCandidateKinds, removing those +// kinds which fieldVal cannot be converted to. +func excludeFieldKinds(fieldCandidateKinds []sqlz.Kind, fieldVal string) []sqlz.Kind { + var resultCandidateKinds []sqlz.Kind + + if fieldVal == "" { + // If the field is empty string, this could indicate a NULL value + // for any kind. That is, we don't exclude a candidate kind due + // to empty string. + return fieldCandidateKinds + } + + for _, kind := range fieldCandidateKinds { + var err error + + switch kind { + case sqlz.KindInt: + _, err = strconv.Atoi(fieldVal) + + case sqlz.KindBool: + _, err = strconv.ParseBool(fieldVal) + + case sqlz.KindDecimal: + _, err = decimal.NewFromString(fieldVal) + default: + } + + if err == nil { + resultCandidateKinds = append(resultCandidateKinds, kind) + } + } + + return resultCandidateKinds +} + +// getColNames determines column names. The col names are determined +// as follows: +// +// - Col names can be explicitly specified in src.Options +// - If the source CSV has a header record, the fields of the +// header record are returned. +// - Otherwise, the first data record is read, and col names are generated +// based on the number of fields [A,B,C...] etc. That first data record +// is appended to readAheadRecs so that it's not lost. +// +// Note that cr must not have been previously read. +func getColNames(cr *csv.Reader, src *source.Source, readAheadRecs *[][]string) ([]string, error) { + // If col names are explicitly provided in opts, we + // will be returning them. + explicitColNames, err := options.GetColNames(src.Options) + if err != nil { + return nil, err + } + + optHasHeaderRecord, _, err := options.HasHeader(src.Options) + if err != nil { + return nil, err + } + + if optHasHeaderRecord { + // The CSV file has a header record, we need to consume it. + var headerRec []string + headerRec, err = cr.Read() + if err == io.EOF { + return nil, errz.Errorf("data source %s has no data", src.Handle) + } + if err != nil { + return nil, errz.Err(err) + } + + if len(explicitColNames) > 0 { + // If col names were explicitly specified via options, return + // those col names, as explicit option col names have precedence + // over the header record col names. + return explicitColNames, nil + } + + // Otherwise return the header record col names. + return headerRec, nil + } + + // The CSV file does not have a header record. We will generate + // col names [A,B,C...]. To do so, we need to know how many fields + // there are in the first record. + firstDataRecord, err := cr.Read() + if err == io.EOF { + return nil, errz.Errorf("data source %s is empty", src.Handle) + } + if err != nil { + return nil, errz.Wrapf(err, "read from data source %s", src.Handle) + } + + // firstRecord contains actual data, so append it to initialRecs. + *readAheadRecs = append(*readAheadRecs, firstDataRecord) + + // If no column names yet, we generate them based on the number + // of fields in firstDataRecord. + generatedColNames := make([]string, len(firstDataRecord)) + for i := range firstDataRecord { + generatedColNames[i] = stringz.GenerateAlphaColName(i) + } + + return generatedColNames, nil +} + +// namedDelimiters is map of named delimiter strings to +// rune value. For example, "comma" maps to ',' and "pipe" maps to '|'. +var namedDelimiters = map[string]rune{ + "comma": ',', + "space": ' ', + "pipe": '|', + "tab": '\t', + "colon": ':', + "semi": ';', + "period": '.', +} + +// getDelimiter returns the delimiter for src. An explicit +// delimiter value may be set in src.Options; otherwise +// the default for the source is returned. +func getDelimiter(src *source.Source) (rune, error) { + delim, ok, err := getDelimFromOptions(src.Options) + if err != nil { + return 0, err + } + + if ok { + return delim, nil + } + + if src.Type == TypeTSV { + return '\t', nil + } + + // default is comma + return ',', nil +} + +// getDelimFromOptions returns ok as true and the delimiter rune if a +// valid value is provided in src.Options, returns ok as false if +// no valid value provided, and an error if the provided value is invalid. +func getDelimFromOptions(opts options.Options) (r rune, ok bool, err error) { + if len(opts) == 0 { + return 0, false, nil + } + + const key = "delim" + _, ok = opts[key] + if !ok { + return 0, false, nil + } + + val := opts.Get(key) + if val == "" { + return 0, false, nil + } + + if len(val) == 1 { + r, _ = utf8.DecodeRuneInString(val) + return r, true, nil + } + + r, ok = namedDelimiters[val] + + if !ok { + err = errz.Errorf("unknown delimiter constant %q", val) + return 0, false, err + } + + return r, true, nil +} diff --git a/drivers/csv/internal_test.go b/drivers/csv/internal_test.go new file mode 100644 index 00000000..1b6cc7f6 --- /dev/null +++ b/drivers/csv/internal_test.go @@ -0,0 +1,102 @@ +package csv + +import ( + "context" + "encoding/csv" + "fmt" + "strconv" + "strings" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/sqlz" +) + +func Test_isCSV(t *testing.T) { + t.Parallel() + + const ( + comma = ',' + tab = '\t' + ) + + testCases := []struct { + delim rune + want float32 + input string + }{ + {delim: comma, input: "", want: scoreNo}, + {delim: comma, input: "a", want: scoreMaybe}, + {delim: comma, input: "a,b", want: scoreMaybe}, + {delim: comma, input: "a,b\n", want: scoreMaybe}, + {delim: comma, input: "a,b\na,b", want: scoreProbably}, + {delim: comma, input: "a,b,c\na,b,c\na,b,c", want: scoreYes}, + {delim: comma, input: "a,b\na,b,c", want: scoreNo}, // Fields per record not equal + {delim: tab, input: "", want: scoreNo}, + {delim: tab, input: "a", want: scoreMaybe}, + {delim: tab, input: "a\tb", want: scoreMaybe}, + {delim: tab, input: "a\tb\n", want: scoreMaybe}, + {delim: tab, input: "a\tb\na\tb", want: scoreProbably}, + {delim: tab, input: "a\tb\tc\na\tb\tc\na\tb\tc", want: scoreYes}, + {delim: tab, input: "a\tb\na\tb\tc", want: scoreNo}, // Fields per record not equal + } + + for i, tc := range testCases { + tc := tc + + t.Run(fmt.Sprintf("%d %s", i, tc.input), func(t *testing.T) { + t.Parallel() + + cr := csv.NewReader(&crFilterReader{r: strings.NewReader(tc.input)}) + cr.Comma = tc.delim + + got := isCSV(context.Background(), cr) + require.Equal(t, tc.want, got) + }) + } +} + +func Test_predictColKinds(t *testing.T) { + const maxExamine = 100 + + testCases := []struct { + wantKinds []sqlz.Kind + readAheadInput [][]string + readerInput string + }{ + { + readAheadInput: [][]string{}, + readerInput: "", + wantKinds: []sqlz.Kind{}, + }, + { + readAheadInput: [][]string{ + {"1", "true", "hello", "0.0"}, + {"2", "false", "world", "1"}, + {"3", "true", "", "7.7"}, + {"", "", "", ""}, + }, + wantKinds: []sqlz.Kind{sqlz.KindInt, sqlz.KindBool, sqlz.KindText, sqlz.KindDecimal}, + }, + { + readAheadInput: [][]string{}, + readerInput: "1,true,hello,0.0\n2,false,world,1\n3,true,,7.7\n,,,", + wantKinds: []sqlz.Kind{sqlz.KindInt, sqlz.KindBool, sqlz.KindText, sqlz.KindDecimal}, + }, + } + + for i, tc := range testCases { + tc := tc + t.Run(strconv.Itoa(i), func(t *testing.T) { + gotKinds, err := predictColKinds( + len(tc.wantKinds), + csv.NewReader(strings.NewReader(tc.readerInput)), + &tc.readAheadInput, + maxExamine) + + require.NoError(t, err) + require.Equal(t, tc.wantKinds, gotKinds) + }) + } +} diff --git a/drivers/csv/testdata/generate-sakila.sh b/drivers/csv/testdata/generate-sakila.sh new file mode 100755 index 00000000..0dd32bbd --- /dev/null +++ b/drivers/csv/testdata/generate-sakila.sh @@ -0,0 +1,18 @@ +#!/usr/bin/env bash + +set -e +# This script shows how to generate CSV/TSV files for each table in a data source. + +# Source: @sakila_sqlite3 from ${SQ_ROOT}/drivers/sqlite3/testdata/sakila.db +# CSV files are output into ./sakila-csv and ./sakila-csv-noheader +# TSV files are output into ./sakila-tsv and ./sakila-tsv-noheader + +mkdir -p sakila-csv +sq inspect @sakila_sqlite3 -j | jq -r '.tables[] | .name' | xargs -I % sq @sakila_sqlite3.% --csv --output ./sakila-csv/%.csv +mkdir -p sakila-csv-noheader +sq inspect @sakila_sqlite3 -j | jq -r '.tables[] | .name' | xargs -I % sq @sakila_sqlite3.% --csv --no-header --output ./sakila-csv-noheader/%.csv + +mkdir -p sakila-tsv +sq inspect @sakila_sqlite3 -j | jq -r '.tables[] | .name' | xargs -I % sq @sakila_sqlite3.% --tsv --output ./sakila-tsv/%.tsv +mkdir -p sakila-tsv-noheader +sq inspect @sakila_sqlite3 -j | jq -r '.tables[] | .name' | xargs -I % sq @sakila_sqlite3.% --tsv --no-header --output ./sakila-tsv-noheader/%.tsv diff --git a/drivers/csv/testdata/person.csv b/drivers/csv/testdata/person.csv new file mode 100644 index 00000000..cb508e2d --- /dev/null +++ b/drivers/csv/testdata/person.csv @@ -0,0 +1,8 @@ +uid,username,email,address_id +1,neilotoole,neilotoole@apache.org,1 +2,ksoze,kaiser@soze.org,2 +3,kubla,kubla@khan.mn, +4,tesla,nikola@tesla.rs,1 +5,augustus,augustus@caesar.org,2 +6,julius,julius@caesar.org, +7,plato,plato@athens.gr,1 diff --git a/drivers/csv/testdata/person.tsv b/drivers/csv/testdata/person.tsv new file mode 100644 index 00000000..94da476d --- /dev/null +++ b/drivers/csv/testdata/person.tsv @@ -0,0 +1 @@ +uid username email address_id 1 neilotoole neilotoole@apache.org 1 2 ksoze kaiser@soze.org 2 3 kubla kubla@khan.mn 4 tesla nikola@tesla.rs 1 5 augustus augustus@caesar.org 2 6 julius julius@caesar.org 7 plato plato@athens.gr 1 \ No newline at end of file diff --git a/drivers/csv/testdata/person_big.csv b/drivers/csv/testdata/person_big.csv new file mode 100644 index 00000000..98f80a87 --- /dev/null +++ b/drivers/csv/testdata/person_big.csv @@ -0,0 +1,10001 @@ +uid,username,email,address_id +0,user_000000,user_000000@example.com,1 +1,user_000001,user_000001@example.com,2 +2,user_000002,user_000002@example.com, +3,user_000003,user_000003@example.com,1 +4,user_000004,user_000004@example.com,2 +5,user_000005,user_000005@example.com, +6,user_000006,user_000006@example.com,1 +7,user_000007,user_000007@example.com,2 +8,user_000008,user_000008@example.com, +9,user_000009,user_000009@example.com,1 +10,user_000010,user_000010@example.com,2 +11,user_000011,user_000011@example.com, +12,user_000012,user_000012@example.com,1 +13,user_000013,user_000013@example.com,2 +14,user_000014,user_000014@example.com, +15,user_000015,user_000015@example.com,1 +16,user_000016,user_000016@example.com,2 +17,user_000017,user_000017@example.com, +18,user_000018,user_000018@example.com,1 +19,user_000019,user_000019@example.com,2 +20,user_000020,user_000020@example.com, +21,user_000021,user_000021@example.com,1 +22,user_000022,user_000022@example.com,2 +23,user_000023,user_000023@example.com, +24,user_000024,user_000024@example.com,1 +25,user_000025,user_000025@example.com,2 +26,user_000026,user_000026@example.com, +27,user_000027,user_000027@example.com,1 +28,user_000028,user_000028@example.com,2 +29,user_000029,user_000029@example.com, +30,user_000030,user_000030@example.com,1 +31,user_000031,user_000031@example.com,2 +32,user_000032,user_000032@example.com, +33,user_000033,user_000033@example.com,1 +34,user_000034,user_000034@example.com,2 +35,user_000035,user_000035@example.com, +36,user_000036,user_000036@example.com,1 +37,user_000037,user_000037@example.com,2 +38,user_000038,user_000038@example.com, +39,user_000039,user_000039@example.com,1 +40,user_000040,user_000040@example.com,2 +41,user_000041,user_000041@example.com, +42,user_000042,user_000042@example.com,1 +43,user_000043,user_000043@example.com,2 +44,user_000044,user_000044@example.com, +45,user_000045,user_000045@example.com,1 +46,user_000046,user_000046@example.com,2 +47,user_000047,user_000047@example.com, +48,user_000048,user_000048@example.com,1 +49,user_000049,user_000049@example.com,2 +50,user_000050,user_000050@example.com, +51,user_000051,user_000051@example.com,1 +52,user_000052,user_000052@example.com,2 +53,user_000053,user_000053@example.com, +54,user_000054,user_000054@example.com,1 +55,user_000055,user_000055@example.com,2 +56,user_000056,user_000056@example.com, +57,user_000057,user_000057@example.com,1 +58,user_000058,user_000058@example.com,2 +59,user_000059,user_000059@example.com, +60,user_000060,user_000060@example.com,1 +61,user_000061,user_000061@example.com,2 +62,user_000062,user_000062@example.com, +63,user_000063,user_000063@example.com,1 +64,user_000064,user_000064@example.com,2 +65,user_000065,user_000065@example.com, +66,user_000066,user_000066@example.com,1 +67,user_000067,user_000067@example.com,2 +68,user_000068,user_000068@example.com, +69,user_000069,user_000069@example.com,1 +70,user_000070,user_000070@example.com,2 +71,user_000071,user_000071@example.com, +72,user_000072,user_000072@example.com,1 +73,user_000073,user_000073@example.com,2 +74,user_000074,user_000074@example.com, +75,user_000075,user_000075@example.com,1 +76,user_000076,user_000076@example.com,2 +77,user_000077,user_000077@example.com, +78,user_000078,user_000078@example.com,1 +79,user_000079,user_000079@example.com,2 +80,user_000080,user_000080@example.com, +81,user_000081,user_000081@example.com,1 +82,user_000082,user_000082@example.com,2 +83,user_000083,user_000083@example.com, +84,user_000084,user_000084@example.com,1 +85,user_000085,user_000085@example.com,2 +86,user_000086,user_000086@example.com, +87,user_000087,user_000087@example.com,1 +88,user_000088,user_000088@example.com,2 +89,user_000089,user_000089@example.com, +90,user_000090,user_000090@example.com,1 +91,user_000091,user_000091@example.com,2 +92,user_000092,user_000092@example.com, +93,user_000093,user_000093@example.com,1 +94,user_000094,user_000094@example.com,2 +95,user_000095,user_000095@example.com, +96,user_000096,user_000096@example.com,1 +97,user_000097,user_000097@example.com,2 +98,user_000098,user_000098@example.com, +99,user_000099,user_000099@example.com,1 +100,user_000100,user_000100@example.com,2 +101,user_000101,user_000101@example.com, +102,user_000102,user_000102@example.com,1 +103,user_000103,user_000103@example.com,2 +104,user_000104,user_000104@example.com, +105,user_000105,user_000105@example.com,1 +106,user_000106,user_000106@example.com,2 +107,user_000107,user_000107@example.com, +108,user_000108,user_000108@example.com,1 +109,user_000109,user_000109@example.com,2 +110,user_000110,user_000110@example.com, +111,user_000111,user_000111@example.com,1 +112,user_000112,user_000112@example.com,2 +113,user_000113,user_000113@example.com, +114,user_000114,user_000114@example.com,1 +115,user_000115,user_000115@example.com,2 +116,user_000116,user_000116@example.com, +117,user_000117,user_000117@example.com,1 +118,user_000118,user_000118@example.com,2 +119,user_000119,user_000119@example.com, +120,user_000120,user_000120@example.com,1 +121,user_000121,user_000121@example.com,2 +122,user_000122,user_000122@example.com, +123,user_000123,user_000123@example.com,1 +124,user_000124,user_000124@example.com,2 +125,user_000125,user_000125@example.com, +126,user_000126,user_000126@example.com,1 +127,user_000127,user_000127@example.com,2 +128,user_000128,user_000128@example.com, +129,user_000129,user_000129@example.com,1 +130,user_000130,user_000130@example.com,2 +131,user_000131,user_000131@example.com, +132,user_000132,user_000132@example.com,1 +133,user_000133,user_000133@example.com,2 +134,user_000134,user_000134@example.com, +135,user_000135,user_000135@example.com,1 +136,user_000136,user_000136@example.com,2 +137,user_000137,user_000137@example.com, +138,user_000138,user_000138@example.com,1 +139,user_000139,user_000139@example.com,2 +140,user_000140,user_000140@example.com, +141,user_000141,user_000141@example.com,1 +142,user_000142,user_000142@example.com,2 +143,user_000143,user_000143@example.com, +144,user_000144,user_000144@example.com,1 +145,user_000145,user_000145@example.com,2 +146,user_000146,user_000146@example.com, +147,user_000147,user_000147@example.com,1 +148,user_000148,user_000148@example.com,2 +149,user_000149,user_000149@example.com, +150,user_000150,user_000150@example.com,1 +151,user_000151,user_000151@example.com,2 +152,user_000152,user_000152@example.com, +153,user_000153,user_000153@example.com,1 +154,user_000154,user_000154@example.com,2 +155,user_000155,user_000155@example.com, +156,user_000156,user_000156@example.com,1 +157,user_000157,user_000157@example.com,2 +158,user_000158,user_000158@example.com, +159,user_000159,user_000159@example.com,1 +160,user_000160,user_000160@example.com,2 +161,user_000161,user_000161@example.com, +162,user_000162,user_000162@example.com,1 +163,user_000163,user_000163@example.com,2 +164,user_000164,user_000164@example.com, +165,user_000165,user_000165@example.com,1 +166,user_000166,user_000166@example.com,2 +167,user_000167,user_000167@example.com, +168,user_000168,user_000168@example.com,1 +169,user_000169,user_000169@example.com,2 +170,user_000170,user_000170@example.com, +171,user_000171,user_000171@example.com,1 +172,user_000172,user_000172@example.com,2 +173,user_000173,user_000173@example.com, +174,user_000174,user_000174@example.com,1 +175,user_000175,user_000175@example.com,2 +176,user_000176,user_000176@example.com, +177,user_000177,user_000177@example.com,1 +178,user_000178,user_000178@example.com,2 +179,user_000179,user_000179@example.com, +180,user_000180,user_000180@example.com,1 +181,user_000181,user_000181@example.com,2 +182,user_000182,user_000182@example.com, +183,user_000183,user_000183@example.com,1 +184,user_000184,user_000184@example.com,2 +185,user_000185,user_000185@example.com, +186,user_000186,user_000186@example.com,1 +187,user_000187,user_000187@example.com,2 +188,user_000188,user_000188@example.com, +189,user_000189,user_000189@example.com,1 +190,user_000190,user_000190@example.com,2 +191,user_000191,user_000191@example.com, +192,user_000192,user_000192@example.com,1 +193,user_000193,user_000193@example.com,2 +194,user_000194,user_000194@example.com, +195,user_000195,user_000195@example.com,1 +196,user_000196,user_000196@example.com,2 +197,user_000197,user_000197@example.com, +198,user_000198,user_000198@example.com,1 +199,user_000199,user_000199@example.com,2 +200,user_000200,user_000200@example.com, +201,user_000201,user_000201@example.com,1 +202,user_000202,user_000202@example.com,2 +203,user_000203,user_000203@example.com, +204,user_000204,user_000204@example.com,1 +205,user_000205,user_000205@example.com,2 +206,user_000206,user_000206@example.com, +207,user_000207,user_000207@example.com,1 +208,user_000208,user_000208@example.com,2 +209,user_000209,user_000209@example.com, +210,user_000210,user_000210@example.com,1 +211,user_000211,user_000211@example.com,2 +212,user_000212,user_000212@example.com, +213,user_000213,user_000213@example.com,1 +214,user_000214,user_000214@example.com,2 +215,user_000215,user_000215@example.com, +216,user_000216,user_000216@example.com,1 +217,user_000217,user_000217@example.com,2 +218,user_000218,user_000218@example.com, +219,user_000219,user_000219@example.com,1 +220,user_000220,user_000220@example.com,2 +221,user_000221,user_000221@example.com, +222,user_000222,user_000222@example.com,1 +223,user_000223,user_000223@example.com,2 +224,user_000224,user_000224@example.com, +225,user_000225,user_000225@example.com,1 +226,user_000226,user_000226@example.com,2 +227,user_000227,user_000227@example.com, +228,user_000228,user_000228@example.com,1 +229,user_000229,user_000229@example.com,2 +230,user_000230,user_000230@example.com, +231,user_000231,user_000231@example.com,1 +232,user_000232,user_000232@example.com,2 +233,user_000233,user_000233@example.com, +234,user_000234,user_000234@example.com,1 +235,user_000235,user_000235@example.com,2 +236,user_000236,user_000236@example.com, +237,user_000237,user_000237@example.com,1 +238,user_000238,user_000238@example.com,2 +239,user_000239,user_000239@example.com, +240,user_000240,user_000240@example.com,1 +241,user_000241,user_000241@example.com,2 +242,user_000242,user_000242@example.com, +243,user_000243,user_000243@example.com,1 +244,user_000244,user_000244@example.com,2 +245,user_000245,user_000245@example.com, +246,user_000246,user_000246@example.com,1 +247,user_000247,user_000247@example.com,2 +248,user_000248,user_000248@example.com, +249,user_000249,user_000249@example.com,1 +250,user_000250,user_000250@example.com,2 +251,user_000251,user_000251@example.com, +252,user_000252,user_000252@example.com,1 +253,user_000253,user_000253@example.com,2 +254,user_000254,user_000254@example.com, +255,user_000255,user_000255@example.com,1 +256,user_000256,user_000256@example.com,2 +257,user_000257,user_000257@example.com, +258,user_000258,user_000258@example.com,1 +259,user_000259,user_000259@example.com,2 +260,user_000260,user_000260@example.com, +261,user_000261,user_000261@example.com,1 +262,user_000262,user_000262@example.com,2 +263,user_000263,user_000263@example.com, +264,user_000264,user_000264@example.com,1 +265,user_000265,user_000265@example.com,2 +266,user_000266,user_000266@example.com, +267,user_000267,user_000267@example.com,1 +268,user_000268,user_000268@example.com,2 +269,user_000269,user_000269@example.com, +270,user_000270,user_000270@example.com,1 +271,user_000271,user_000271@example.com,2 +272,user_000272,user_000272@example.com, +273,user_000273,user_000273@example.com,1 +274,user_000274,user_000274@example.com,2 +275,user_000275,user_000275@example.com, +276,user_000276,user_000276@example.com,1 +277,user_000277,user_000277@example.com,2 +278,user_000278,user_000278@example.com, +279,user_000279,user_000279@example.com,1 +280,user_000280,user_000280@example.com,2 +281,user_000281,user_000281@example.com, +282,user_000282,user_000282@example.com,1 +283,user_000283,user_000283@example.com,2 +284,user_000284,user_000284@example.com, +285,user_000285,user_000285@example.com,1 +286,user_000286,user_000286@example.com,2 +287,user_000287,user_000287@example.com, +288,user_000288,user_000288@example.com,1 +289,user_000289,user_000289@example.com,2 +290,user_000290,user_000290@example.com, +291,user_000291,user_000291@example.com,1 +292,user_000292,user_000292@example.com,2 +293,user_000293,user_000293@example.com, +294,user_000294,user_000294@example.com,1 +295,user_000295,user_000295@example.com,2 +296,user_000296,user_000296@example.com, +297,user_000297,user_000297@example.com,1 +298,user_000298,user_000298@example.com,2 +299,user_000299,user_000299@example.com, +300,user_000300,user_000300@example.com,1 +301,user_000301,user_000301@example.com,2 +302,user_000302,user_000302@example.com, +303,user_000303,user_000303@example.com,1 +304,user_000304,user_000304@example.com,2 +305,user_000305,user_000305@example.com, +306,user_000306,user_000306@example.com,1 +307,user_000307,user_000307@example.com,2 +308,user_000308,user_000308@example.com, +309,user_000309,user_000309@example.com,1 +310,user_000310,user_000310@example.com,2 +311,user_000311,user_000311@example.com, +312,user_000312,user_000312@example.com,1 +313,user_000313,user_000313@example.com,2 +314,user_000314,user_000314@example.com, +315,user_000315,user_000315@example.com,1 +316,user_000316,user_000316@example.com,2 +317,user_000317,user_000317@example.com, +318,user_000318,user_000318@example.com,1 +319,user_000319,user_000319@example.com,2 +320,user_000320,user_000320@example.com, +321,user_000321,user_000321@example.com,1 +322,user_000322,user_000322@example.com,2 +323,user_000323,user_000323@example.com, +324,user_000324,user_000324@example.com,1 +325,user_000325,user_000325@example.com,2 +326,user_000326,user_000326@example.com, +327,user_000327,user_000327@example.com,1 +328,user_000328,user_000328@example.com,2 +329,user_000329,user_000329@example.com, +330,user_000330,user_000330@example.com,1 +331,user_000331,user_000331@example.com,2 +332,user_000332,user_000332@example.com, +333,user_000333,user_000333@example.com,1 +334,user_000334,user_000334@example.com,2 +335,user_000335,user_000335@example.com, +336,user_000336,user_000336@example.com,1 +337,user_000337,user_000337@example.com,2 +338,user_000338,user_000338@example.com, +339,user_000339,user_000339@example.com,1 +340,user_000340,user_000340@example.com,2 +341,user_000341,user_000341@example.com, +342,user_000342,user_000342@example.com,1 +343,user_000343,user_000343@example.com,2 +344,user_000344,user_000344@example.com, +345,user_000345,user_000345@example.com,1 +346,user_000346,user_000346@example.com,2 +347,user_000347,user_000347@example.com, +348,user_000348,user_000348@example.com,1 +349,user_000349,user_000349@example.com,2 +350,user_000350,user_000350@example.com, +351,user_000351,user_000351@example.com,1 +352,user_000352,user_000352@example.com,2 +353,user_000353,user_000353@example.com, +354,user_000354,user_000354@example.com,1 +355,user_000355,user_000355@example.com,2 +356,user_000356,user_000356@example.com, +357,user_000357,user_000357@example.com,1 +358,user_000358,user_000358@example.com,2 +359,user_000359,user_000359@example.com, +360,user_000360,user_000360@example.com,1 +361,user_000361,user_000361@example.com,2 +362,user_000362,user_000362@example.com, +363,user_000363,user_000363@example.com,1 +364,user_000364,user_000364@example.com,2 +365,user_000365,user_000365@example.com, +366,user_000366,user_000366@example.com,1 +367,user_000367,user_000367@example.com,2 +368,user_000368,user_000368@example.com, +369,user_000369,user_000369@example.com,1 +370,user_000370,user_000370@example.com,2 +371,user_000371,user_000371@example.com, +372,user_000372,user_000372@example.com,1 +373,user_000373,user_000373@example.com,2 +374,user_000374,user_000374@example.com, +375,user_000375,user_000375@example.com,1 +376,user_000376,user_000376@example.com,2 +377,user_000377,user_000377@example.com, +378,user_000378,user_000378@example.com,1 +379,user_000379,user_000379@example.com,2 +380,user_000380,user_000380@example.com, +381,user_000381,user_000381@example.com,1 +382,user_000382,user_000382@example.com,2 +383,user_000383,user_000383@example.com, +384,user_000384,user_000384@example.com,1 +385,user_000385,user_000385@example.com,2 +386,user_000386,user_000386@example.com, +387,user_000387,user_000387@example.com,1 +388,user_000388,user_000388@example.com,2 +389,user_000389,user_000389@example.com, +390,user_000390,user_000390@example.com,1 +391,user_000391,user_000391@example.com,2 +392,user_000392,user_000392@example.com, +393,user_000393,user_000393@example.com,1 +394,user_000394,user_000394@example.com,2 +395,user_000395,user_000395@example.com, +396,user_000396,user_000396@example.com,1 +397,user_000397,user_000397@example.com,2 +398,user_000398,user_000398@example.com, +399,user_000399,user_000399@example.com,1 +400,user_000400,user_000400@example.com,2 +401,user_000401,user_000401@example.com, +402,user_000402,user_000402@example.com,1 +403,user_000403,user_000403@example.com,2 +404,user_000404,user_000404@example.com, +405,user_000405,user_000405@example.com,1 +406,user_000406,user_000406@example.com,2 +407,user_000407,user_000407@example.com, +408,user_000408,user_000408@example.com,1 +409,user_000409,user_000409@example.com,2 +410,user_000410,user_000410@example.com, +411,user_000411,user_000411@example.com,1 +412,user_000412,user_000412@example.com,2 +413,user_000413,user_000413@example.com, +414,user_000414,user_000414@example.com,1 +415,user_000415,user_000415@example.com,2 +416,user_000416,user_000416@example.com, +417,user_000417,user_000417@example.com,1 +418,user_000418,user_000418@example.com,2 +419,user_000419,user_000419@example.com, +420,user_000420,user_000420@example.com,1 +421,user_000421,user_000421@example.com,2 +422,user_000422,user_000422@example.com, +423,user_000423,user_000423@example.com,1 +424,user_000424,user_000424@example.com,2 +425,user_000425,user_000425@example.com, +426,user_000426,user_000426@example.com,1 +427,user_000427,user_000427@example.com,2 +428,user_000428,user_000428@example.com, +429,user_000429,user_000429@example.com,1 +430,user_000430,user_000430@example.com,2 +431,user_000431,user_000431@example.com, +432,user_000432,user_000432@example.com,1 +433,user_000433,user_000433@example.com,2 +434,user_000434,user_000434@example.com, +435,user_000435,user_000435@example.com,1 +436,user_000436,user_000436@example.com,2 +437,user_000437,user_000437@example.com, +438,user_000438,user_000438@example.com,1 +439,user_000439,user_000439@example.com,2 +440,user_000440,user_000440@example.com, +441,user_000441,user_000441@example.com,1 +442,user_000442,user_000442@example.com,2 +443,user_000443,user_000443@example.com, +444,user_000444,user_000444@example.com,1 +445,user_000445,user_000445@example.com,2 +446,user_000446,user_000446@example.com, +447,user_000447,user_000447@example.com,1 +448,user_000448,user_000448@example.com,2 +449,user_000449,user_000449@example.com, +450,user_000450,user_000450@example.com,1 +451,user_000451,user_000451@example.com,2 +452,user_000452,user_000452@example.com, +453,user_000453,user_000453@example.com,1 +454,user_000454,user_000454@example.com,2 +455,user_000455,user_000455@example.com, +456,user_000456,user_000456@example.com,1 +457,user_000457,user_000457@example.com,2 +458,user_000458,user_000458@example.com, +459,user_000459,user_000459@example.com,1 +460,user_000460,user_000460@example.com,2 +461,user_000461,user_000461@example.com, +462,user_000462,user_000462@example.com,1 +463,user_000463,user_000463@example.com,2 +464,user_000464,user_000464@example.com, +465,user_000465,user_000465@example.com,1 +466,user_000466,user_000466@example.com,2 +467,user_000467,user_000467@example.com, +468,user_000468,user_000468@example.com,1 +469,user_000469,user_000469@example.com,2 +470,user_000470,user_000470@example.com, +471,user_000471,user_000471@example.com,1 +472,user_000472,user_000472@example.com,2 +473,user_000473,user_000473@example.com, +474,user_000474,user_000474@example.com,1 +475,user_000475,user_000475@example.com,2 +476,user_000476,user_000476@example.com, +477,user_000477,user_000477@example.com,1 +478,user_000478,user_000478@example.com,2 +479,user_000479,user_000479@example.com, +480,user_000480,user_000480@example.com,1 +481,user_000481,user_000481@example.com,2 +482,user_000482,user_000482@example.com, +483,user_000483,user_000483@example.com,1 +484,user_000484,user_000484@example.com,2 +485,user_000485,user_000485@example.com, +486,user_000486,user_000486@example.com,1 +487,user_000487,user_000487@example.com,2 +488,user_000488,user_000488@example.com, +489,user_000489,user_000489@example.com,1 +490,user_000490,user_000490@example.com,2 +491,user_000491,user_000491@example.com, +492,user_000492,user_000492@example.com,1 +493,user_000493,user_000493@example.com,2 +494,user_000494,user_000494@example.com, +495,user_000495,user_000495@example.com,1 +496,user_000496,user_000496@example.com,2 +497,user_000497,user_000497@example.com, +498,user_000498,user_000498@example.com,1 +499,user_000499,user_000499@example.com,2 +500,user_000500,user_000500@example.com, +501,user_000501,user_000501@example.com,1 +502,user_000502,user_000502@example.com,2 +503,user_000503,user_000503@example.com, +504,user_000504,user_000504@example.com,1 +505,user_000505,user_000505@example.com,2 +506,user_000506,user_000506@example.com, +507,user_000507,user_000507@example.com,1 +508,user_000508,user_000508@example.com,2 +509,user_000509,user_000509@example.com, +510,user_000510,user_000510@example.com,1 +511,user_000511,user_000511@example.com,2 +512,user_000512,user_000512@example.com, +513,user_000513,user_000513@example.com,1 +514,user_000514,user_000514@example.com,2 +515,user_000515,user_000515@example.com, +516,user_000516,user_000516@example.com,1 +517,user_000517,user_000517@example.com,2 +518,user_000518,user_000518@example.com, +519,user_000519,user_000519@example.com,1 +520,user_000520,user_000520@example.com,2 +521,user_000521,user_000521@example.com, +522,user_000522,user_000522@example.com,1 +523,user_000523,user_000523@example.com,2 +524,user_000524,user_000524@example.com, +525,user_000525,user_000525@example.com,1 +526,user_000526,user_000526@example.com,2 +527,user_000527,user_000527@example.com, +528,user_000528,user_000528@example.com,1 +529,user_000529,user_000529@example.com,2 +530,user_000530,user_000530@example.com, +531,user_000531,user_000531@example.com,1 +532,user_000532,user_000532@example.com,2 +533,user_000533,user_000533@example.com, +534,user_000534,user_000534@example.com,1 +535,user_000535,user_000535@example.com,2 +536,user_000536,user_000536@example.com, +537,user_000537,user_000537@example.com,1 +538,user_000538,user_000538@example.com,2 +539,user_000539,user_000539@example.com, +540,user_000540,user_000540@example.com,1 +541,user_000541,user_000541@example.com,2 +542,user_000542,user_000542@example.com, +543,user_000543,user_000543@example.com,1 +544,user_000544,user_000544@example.com,2 +545,user_000545,user_000545@example.com, +546,user_000546,user_000546@example.com,1 +547,user_000547,user_000547@example.com,2 +548,user_000548,user_000548@example.com, +549,user_000549,user_000549@example.com,1 +550,user_000550,user_000550@example.com,2 +551,user_000551,user_000551@example.com, +552,user_000552,user_000552@example.com,1 +553,user_000553,user_000553@example.com,2 +554,user_000554,user_000554@example.com, +555,user_000555,user_000555@example.com,1 +556,user_000556,user_000556@example.com,2 +557,user_000557,user_000557@example.com, +558,user_000558,user_000558@example.com,1 +559,user_000559,user_000559@example.com,2 +560,user_000560,user_000560@example.com, +561,user_000561,user_000561@example.com,1 +562,user_000562,user_000562@example.com,2 +563,user_000563,user_000563@example.com, +564,user_000564,user_000564@example.com,1 +565,user_000565,user_000565@example.com,2 +566,user_000566,user_000566@example.com, +567,user_000567,user_000567@example.com,1 +568,user_000568,user_000568@example.com,2 +569,user_000569,user_000569@example.com, +570,user_000570,user_000570@example.com,1 +571,user_000571,user_000571@example.com,2 +572,user_000572,user_000572@example.com, +573,user_000573,user_000573@example.com,1 +574,user_000574,user_000574@example.com,2 +575,user_000575,user_000575@example.com, +576,user_000576,user_000576@example.com,1 +577,user_000577,user_000577@example.com,2 +578,user_000578,user_000578@example.com, +579,user_000579,user_000579@example.com,1 +580,user_000580,user_000580@example.com,2 +581,user_000581,user_000581@example.com, +582,user_000582,user_000582@example.com,1 +583,user_000583,user_000583@example.com,2 +584,user_000584,user_000584@example.com, +585,user_000585,user_000585@example.com,1 +586,user_000586,user_000586@example.com,2 +587,user_000587,user_000587@example.com, +588,user_000588,user_000588@example.com,1 +589,user_000589,user_000589@example.com,2 +590,user_000590,user_000590@example.com, +591,user_000591,user_000591@example.com,1 +592,user_000592,user_000592@example.com,2 +593,user_000593,user_000593@example.com, +594,user_000594,user_000594@example.com,1 +595,user_000595,user_000595@example.com,2 +596,user_000596,user_000596@example.com, +597,user_000597,user_000597@example.com,1 +598,user_000598,user_000598@example.com,2 +599,user_000599,user_000599@example.com, +600,user_000600,user_000600@example.com,1 +601,user_000601,user_000601@example.com,2 +602,user_000602,user_000602@example.com, +603,user_000603,user_000603@example.com,1 +604,user_000604,user_000604@example.com,2 +605,user_000605,user_000605@example.com, +606,user_000606,user_000606@example.com,1 +607,user_000607,user_000607@example.com,2 +608,user_000608,user_000608@example.com, +609,user_000609,user_000609@example.com,1 +610,user_000610,user_000610@example.com,2 +611,user_000611,user_000611@example.com, +612,user_000612,user_000612@example.com,1 +613,user_000613,user_000613@example.com,2 +614,user_000614,user_000614@example.com, +615,user_000615,user_000615@example.com,1 +616,user_000616,user_000616@example.com,2 +617,user_000617,user_000617@example.com, +618,user_000618,user_000618@example.com,1 +619,user_000619,user_000619@example.com,2 +620,user_000620,user_000620@example.com, +621,user_000621,user_000621@example.com,1 +622,user_000622,user_000622@example.com,2 +623,user_000623,user_000623@example.com, +624,user_000624,user_000624@example.com,1 +625,user_000625,user_000625@example.com,2 +626,user_000626,user_000626@example.com, +627,user_000627,user_000627@example.com,1 +628,user_000628,user_000628@example.com,2 +629,user_000629,user_000629@example.com, +630,user_000630,user_000630@example.com,1 +631,user_000631,user_000631@example.com,2 +632,user_000632,user_000632@example.com, +633,user_000633,user_000633@example.com,1 +634,user_000634,user_000634@example.com,2 +635,user_000635,user_000635@example.com, +636,user_000636,user_000636@example.com,1 +637,user_000637,user_000637@example.com,2 +638,user_000638,user_000638@example.com, +639,user_000639,user_000639@example.com,1 +640,user_000640,user_000640@example.com,2 +641,user_000641,user_000641@example.com, +642,user_000642,user_000642@example.com,1 +643,user_000643,user_000643@example.com,2 +644,user_000644,user_000644@example.com, +645,user_000645,user_000645@example.com,1 +646,user_000646,user_000646@example.com,2 +647,user_000647,user_000647@example.com, +648,user_000648,user_000648@example.com,1 +649,user_000649,user_000649@example.com,2 +650,user_000650,user_000650@example.com, +651,user_000651,user_000651@example.com,1 +652,user_000652,user_000652@example.com,2 +653,user_000653,user_000653@example.com, +654,user_000654,user_000654@example.com,1 +655,user_000655,user_000655@example.com,2 +656,user_000656,user_000656@example.com, +657,user_000657,user_000657@example.com,1 +658,user_000658,user_000658@example.com,2 +659,user_000659,user_000659@example.com, +660,user_000660,user_000660@example.com,1 +661,user_000661,user_000661@example.com,2 +662,user_000662,user_000662@example.com, +663,user_000663,user_000663@example.com,1 +664,user_000664,user_000664@example.com,2 +665,user_000665,user_000665@example.com, +666,user_000666,user_000666@example.com,1 +667,user_000667,user_000667@example.com,2 +668,user_000668,user_000668@example.com, +669,user_000669,user_000669@example.com,1 +670,user_000670,user_000670@example.com,2 +671,user_000671,user_000671@example.com, +672,user_000672,user_000672@example.com,1 +673,user_000673,user_000673@example.com,2 +674,user_000674,user_000674@example.com, +675,user_000675,user_000675@example.com,1 +676,user_000676,user_000676@example.com,2 +677,user_000677,user_000677@example.com, +678,user_000678,user_000678@example.com,1 +679,user_000679,user_000679@example.com,2 +680,user_000680,user_000680@example.com, +681,user_000681,user_000681@example.com,1 +682,user_000682,user_000682@example.com,2 +683,user_000683,user_000683@example.com, +684,user_000684,user_000684@example.com,1 +685,user_000685,user_000685@example.com,2 +686,user_000686,user_000686@example.com, +687,user_000687,user_000687@example.com,1 +688,user_000688,user_000688@example.com,2 +689,user_000689,user_000689@example.com, +690,user_000690,user_000690@example.com,1 +691,user_000691,user_000691@example.com,2 +692,user_000692,user_000692@example.com, +693,user_000693,user_000693@example.com,1 +694,user_000694,user_000694@example.com,2 +695,user_000695,user_000695@example.com, +696,user_000696,user_000696@example.com,1 +697,user_000697,user_000697@example.com,2 +698,user_000698,user_000698@example.com, +699,user_000699,user_000699@example.com,1 +700,user_000700,user_000700@example.com,2 +701,user_000701,user_000701@example.com, +702,user_000702,user_000702@example.com,1 +703,user_000703,user_000703@example.com,2 +704,user_000704,user_000704@example.com, +705,user_000705,user_000705@example.com,1 +706,user_000706,user_000706@example.com,2 +707,user_000707,user_000707@example.com, +708,user_000708,user_000708@example.com,1 +709,user_000709,user_000709@example.com,2 +710,user_000710,user_000710@example.com, +711,user_000711,user_000711@example.com,1 +712,user_000712,user_000712@example.com,2 +713,user_000713,user_000713@example.com, +714,user_000714,user_000714@example.com,1 +715,user_000715,user_000715@example.com,2 +716,user_000716,user_000716@example.com, +717,user_000717,user_000717@example.com,1 +718,user_000718,user_000718@example.com,2 +719,user_000719,user_000719@example.com, +720,user_000720,user_000720@example.com,1 +721,user_000721,user_000721@example.com,2 +722,user_000722,user_000722@example.com, +723,user_000723,user_000723@example.com,1 +724,user_000724,user_000724@example.com,2 +725,user_000725,user_000725@example.com, +726,user_000726,user_000726@example.com,1 +727,user_000727,user_000727@example.com,2 +728,user_000728,user_000728@example.com, +729,user_000729,user_000729@example.com,1 +730,user_000730,user_000730@example.com,2 +731,user_000731,user_000731@example.com, +732,user_000732,user_000732@example.com,1 +733,user_000733,user_000733@example.com,2 +734,user_000734,user_000734@example.com, +735,user_000735,user_000735@example.com,1 +736,user_000736,user_000736@example.com,2 +737,user_000737,user_000737@example.com, +738,user_000738,user_000738@example.com,1 +739,user_000739,user_000739@example.com,2 +740,user_000740,user_000740@example.com, +741,user_000741,user_000741@example.com,1 +742,user_000742,user_000742@example.com,2 +743,user_000743,user_000743@example.com, +744,user_000744,user_000744@example.com,1 +745,user_000745,user_000745@example.com,2 +746,user_000746,user_000746@example.com, +747,user_000747,user_000747@example.com,1 +748,user_000748,user_000748@example.com,2 +749,user_000749,user_000749@example.com, +750,user_000750,user_000750@example.com,1 +751,user_000751,user_000751@example.com,2 +752,user_000752,user_000752@example.com, +753,user_000753,user_000753@example.com,1 +754,user_000754,user_000754@example.com,2 +755,user_000755,user_000755@example.com, +756,user_000756,user_000756@example.com,1 +757,user_000757,user_000757@example.com,2 +758,user_000758,user_000758@example.com, +759,user_000759,user_000759@example.com,1 +760,user_000760,user_000760@example.com,2 +761,user_000761,user_000761@example.com, +762,user_000762,user_000762@example.com,1 +763,user_000763,user_000763@example.com,2 +764,user_000764,user_000764@example.com, +765,user_000765,user_000765@example.com,1 +766,user_000766,user_000766@example.com,2 +767,user_000767,user_000767@example.com, +768,user_000768,user_000768@example.com,1 +769,user_000769,user_000769@example.com,2 +770,user_000770,user_000770@example.com, +771,user_000771,user_000771@example.com,1 +772,user_000772,user_000772@example.com,2 +773,user_000773,user_000773@example.com, +774,user_000774,user_000774@example.com,1 +775,user_000775,user_000775@example.com,2 +776,user_000776,user_000776@example.com, +777,user_000777,user_000777@example.com,1 +778,user_000778,user_000778@example.com,2 +779,user_000779,user_000779@example.com, +780,user_000780,user_000780@example.com,1 +781,user_000781,user_000781@example.com,2 +782,user_000782,user_000782@example.com, +783,user_000783,user_000783@example.com,1 +784,user_000784,user_000784@example.com,2 +785,user_000785,user_000785@example.com, +786,user_000786,user_000786@example.com,1 +787,user_000787,user_000787@example.com,2 +788,user_000788,user_000788@example.com, +789,user_000789,user_000789@example.com,1 +790,user_000790,user_000790@example.com,2 +791,user_000791,user_000791@example.com, +792,user_000792,user_000792@example.com,1 +793,user_000793,user_000793@example.com,2 +794,user_000794,user_000794@example.com, +795,user_000795,user_000795@example.com,1 +796,user_000796,user_000796@example.com,2 +797,user_000797,user_000797@example.com, +798,user_000798,user_000798@example.com,1 +799,user_000799,user_000799@example.com,2 +800,user_000800,user_000800@example.com, +801,user_000801,user_000801@example.com,1 +802,user_000802,user_000802@example.com,2 +803,user_000803,user_000803@example.com, +804,user_000804,user_000804@example.com,1 +805,user_000805,user_000805@example.com,2 +806,user_000806,user_000806@example.com, +807,user_000807,user_000807@example.com,1 +808,user_000808,user_000808@example.com,2 +809,user_000809,user_000809@example.com, +810,user_000810,user_000810@example.com,1 +811,user_000811,user_000811@example.com,2 +812,user_000812,user_000812@example.com, +813,user_000813,user_000813@example.com,1 +814,user_000814,user_000814@example.com,2 +815,user_000815,user_000815@example.com, +816,user_000816,user_000816@example.com,1 +817,user_000817,user_000817@example.com,2 +818,user_000818,user_000818@example.com, +819,user_000819,user_000819@example.com,1 +820,user_000820,user_000820@example.com,2 +821,user_000821,user_000821@example.com, +822,user_000822,user_000822@example.com,1 +823,user_000823,user_000823@example.com,2 +824,user_000824,user_000824@example.com, +825,user_000825,user_000825@example.com,1 +826,user_000826,user_000826@example.com,2 +827,user_000827,user_000827@example.com, +828,user_000828,user_000828@example.com,1 +829,user_000829,user_000829@example.com,2 +830,user_000830,user_000830@example.com, +831,user_000831,user_000831@example.com,1 +832,user_000832,user_000832@example.com,2 +833,user_000833,user_000833@example.com, +834,user_000834,user_000834@example.com,1 +835,user_000835,user_000835@example.com,2 +836,user_000836,user_000836@example.com, +837,user_000837,user_000837@example.com,1 +838,user_000838,user_000838@example.com,2 +839,user_000839,user_000839@example.com, +840,user_000840,user_000840@example.com,1 +841,user_000841,user_000841@example.com,2 +842,user_000842,user_000842@example.com, +843,user_000843,user_000843@example.com,1 +844,user_000844,user_000844@example.com,2 +845,user_000845,user_000845@example.com, +846,user_000846,user_000846@example.com,1 +847,user_000847,user_000847@example.com,2 +848,user_000848,user_000848@example.com, +849,user_000849,user_000849@example.com,1 +850,user_000850,user_000850@example.com,2 +851,user_000851,user_000851@example.com, +852,user_000852,user_000852@example.com,1 +853,user_000853,user_000853@example.com,2 +854,user_000854,user_000854@example.com, +855,user_000855,user_000855@example.com,1 +856,user_000856,user_000856@example.com,2 +857,user_000857,user_000857@example.com, +858,user_000858,user_000858@example.com,1 +859,user_000859,user_000859@example.com,2 +860,user_000860,user_000860@example.com, +861,user_000861,user_000861@example.com,1 +862,user_000862,user_000862@example.com,2 +863,user_000863,user_000863@example.com, +864,user_000864,user_000864@example.com,1 +865,user_000865,user_000865@example.com,2 +866,user_000866,user_000866@example.com, +867,user_000867,user_000867@example.com,1 +868,user_000868,user_000868@example.com,2 +869,user_000869,user_000869@example.com, +870,user_000870,user_000870@example.com,1 +871,user_000871,user_000871@example.com,2 +872,user_000872,user_000872@example.com, +873,user_000873,user_000873@example.com,1 +874,user_000874,user_000874@example.com,2 +875,user_000875,user_000875@example.com, +876,user_000876,user_000876@example.com,1 +877,user_000877,user_000877@example.com,2 +878,user_000878,user_000878@example.com, +879,user_000879,user_000879@example.com,1 +880,user_000880,user_000880@example.com,2 +881,user_000881,user_000881@example.com, +882,user_000882,user_000882@example.com,1 +883,user_000883,user_000883@example.com,2 +884,user_000884,user_000884@example.com, +885,user_000885,user_000885@example.com,1 +886,user_000886,user_000886@example.com,2 +887,user_000887,user_000887@example.com, +888,user_000888,user_000888@example.com,1 +889,user_000889,user_000889@example.com,2 +890,user_000890,user_000890@example.com, +891,user_000891,user_000891@example.com,1 +892,user_000892,user_000892@example.com,2 +893,user_000893,user_000893@example.com, +894,user_000894,user_000894@example.com,1 +895,user_000895,user_000895@example.com,2 +896,user_000896,user_000896@example.com, +897,user_000897,user_000897@example.com,1 +898,user_000898,user_000898@example.com,2 +899,user_000899,user_000899@example.com, +900,user_000900,user_000900@example.com,1 +901,user_000901,user_000901@example.com,2 +902,user_000902,user_000902@example.com, +903,user_000903,user_000903@example.com,1 +904,user_000904,user_000904@example.com,2 +905,user_000905,user_000905@example.com, +906,user_000906,user_000906@example.com,1 +907,user_000907,user_000907@example.com,2 +908,user_000908,user_000908@example.com, +909,user_000909,user_000909@example.com,1 +910,user_000910,user_000910@example.com,2 +911,user_000911,user_000911@example.com, +912,user_000912,user_000912@example.com,1 +913,user_000913,user_000913@example.com,2 +914,user_000914,user_000914@example.com, +915,user_000915,user_000915@example.com,1 +916,user_000916,user_000916@example.com,2 +917,user_000917,user_000917@example.com, +918,user_000918,user_000918@example.com,1 +919,user_000919,user_000919@example.com,2 +920,user_000920,user_000920@example.com, +921,user_000921,user_000921@example.com,1 +922,user_000922,user_000922@example.com,2 +923,user_000923,user_000923@example.com, +924,user_000924,user_000924@example.com,1 +925,user_000925,user_000925@example.com,2 +926,user_000926,user_000926@example.com, +927,user_000927,user_000927@example.com,1 +928,user_000928,user_000928@example.com,2 +929,user_000929,user_000929@example.com, +930,user_000930,user_000930@example.com,1 +931,user_000931,user_000931@example.com,2 +932,user_000932,user_000932@example.com, +933,user_000933,user_000933@example.com,1 +934,user_000934,user_000934@example.com,2 +935,user_000935,user_000935@example.com, +936,user_000936,user_000936@example.com,1 +937,user_000937,user_000937@example.com,2 +938,user_000938,user_000938@example.com, +939,user_000939,user_000939@example.com,1 +940,user_000940,user_000940@example.com,2 +941,user_000941,user_000941@example.com, +942,user_000942,user_000942@example.com,1 +943,user_000943,user_000943@example.com,2 +944,user_000944,user_000944@example.com, +945,user_000945,user_000945@example.com,1 +946,user_000946,user_000946@example.com,2 +947,user_000947,user_000947@example.com, +948,user_000948,user_000948@example.com,1 +949,user_000949,user_000949@example.com,2 +950,user_000950,user_000950@example.com, +951,user_000951,user_000951@example.com,1 +952,user_000952,user_000952@example.com,2 +953,user_000953,user_000953@example.com, +954,user_000954,user_000954@example.com,1 +955,user_000955,user_000955@example.com,2 +956,user_000956,user_000956@example.com, +957,user_000957,user_000957@example.com,1 +958,user_000958,user_000958@example.com,2 +959,user_000959,user_000959@example.com, +960,user_000960,user_000960@example.com,1 +961,user_000961,user_000961@example.com,2 +962,user_000962,user_000962@example.com, +963,user_000963,user_000963@example.com,1 +964,user_000964,user_000964@example.com,2 +965,user_000965,user_000965@example.com, +966,user_000966,user_000966@example.com,1 +967,user_000967,user_000967@example.com,2 +968,user_000968,user_000968@example.com, +969,user_000969,user_000969@example.com,1 +970,user_000970,user_000970@example.com,2 +971,user_000971,user_000971@example.com, +972,user_000972,user_000972@example.com,1 +973,user_000973,user_000973@example.com,2 +974,user_000974,user_000974@example.com, +975,user_000975,user_000975@example.com,1 +976,user_000976,user_000976@example.com,2 +977,user_000977,user_000977@example.com, +978,user_000978,user_000978@example.com,1 +979,user_000979,user_000979@example.com,2 +980,user_000980,user_000980@example.com, +981,user_000981,user_000981@example.com,1 +982,user_000982,user_000982@example.com,2 +983,user_000983,user_000983@example.com, +984,user_000984,user_000984@example.com,1 +985,user_000985,user_000985@example.com,2 +986,user_000986,user_000986@example.com, +987,user_000987,user_000987@example.com,1 +988,user_000988,user_000988@example.com,2 +989,user_000989,user_000989@example.com, +990,user_000990,user_000990@example.com,1 +991,user_000991,user_000991@example.com,2 +992,user_000992,user_000992@example.com, +993,user_000993,user_000993@example.com,1 +994,user_000994,user_000994@example.com,2 +995,user_000995,user_000995@example.com, +996,user_000996,user_000996@example.com,1 +997,user_000997,user_000997@example.com,2 +998,user_000998,user_000998@example.com, +999,user_000999,user_000999@example.com,1 +1000,user_001000,user_001000@example.com,2 +1001,user_001001,user_001001@example.com, +1002,user_001002,user_001002@example.com,1 +1003,user_001003,user_001003@example.com,2 +1004,user_001004,user_001004@example.com, +1005,user_001005,user_001005@example.com,1 +1006,user_001006,user_001006@example.com,2 +1007,user_001007,user_001007@example.com, +1008,user_001008,user_001008@example.com,1 +1009,user_001009,user_001009@example.com,2 +1010,user_001010,user_001010@example.com, +1011,user_001011,user_001011@example.com,1 +1012,user_001012,user_001012@example.com,2 +1013,user_001013,user_001013@example.com, +1014,user_001014,user_001014@example.com,1 +1015,user_001015,user_001015@example.com,2 +1016,user_001016,user_001016@example.com, +1017,user_001017,user_001017@example.com,1 +1018,user_001018,user_001018@example.com,2 +1019,user_001019,user_001019@example.com, +1020,user_001020,user_001020@example.com,1 +1021,user_001021,user_001021@example.com,2 +1022,user_001022,user_001022@example.com, +1023,user_001023,user_001023@example.com,1 +1024,user_001024,user_001024@example.com,2 +1025,user_001025,user_001025@example.com, +1026,user_001026,user_001026@example.com,1 +1027,user_001027,user_001027@example.com,2 +1028,user_001028,user_001028@example.com, +1029,user_001029,user_001029@example.com,1 +1030,user_001030,user_001030@example.com,2 +1031,user_001031,user_001031@example.com, +1032,user_001032,user_001032@example.com,1 +1033,user_001033,user_001033@example.com,2 +1034,user_001034,user_001034@example.com, +1035,user_001035,user_001035@example.com,1 +1036,user_001036,user_001036@example.com,2 +1037,user_001037,user_001037@example.com, +1038,user_001038,user_001038@example.com,1 +1039,user_001039,user_001039@example.com,2 +1040,user_001040,user_001040@example.com, +1041,user_001041,user_001041@example.com,1 +1042,user_001042,user_001042@example.com,2 +1043,user_001043,user_001043@example.com, +1044,user_001044,user_001044@example.com,1 +1045,user_001045,user_001045@example.com,2 +1046,user_001046,user_001046@example.com, +1047,user_001047,user_001047@example.com,1 +1048,user_001048,user_001048@example.com,2 +1049,user_001049,user_001049@example.com, +1050,user_001050,user_001050@example.com,1 +1051,user_001051,user_001051@example.com,2 +1052,user_001052,user_001052@example.com, +1053,user_001053,user_001053@example.com,1 +1054,user_001054,user_001054@example.com,2 +1055,user_001055,user_001055@example.com, +1056,user_001056,user_001056@example.com,1 +1057,user_001057,user_001057@example.com,2 +1058,user_001058,user_001058@example.com, +1059,user_001059,user_001059@example.com,1 +1060,user_001060,user_001060@example.com,2 +1061,user_001061,user_001061@example.com, +1062,user_001062,user_001062@example.com,1 +1063,user_001063,user_001063@example.com,2 +1064,user_001064,user_001064@example.com, +1065,user_001065,user_001065@example.com,1 +1066,user_001066,user_001066@example.com,2 +1067,user_001067,user_001067@example.com, +1068,user_001068,user_001068@example.com,1 +1069,user_001069,user_001069@example.com,2 +1070,user_001070,user_001070@example.com, +1071,user_001071,user_001071@example.com,1 +1072,user_001072,user_001072@example.com,2 +1073,user_001073,user_001073@example.com, +1074,user_001074,user_001074@example.com,1 +1075,user_001075,user_001075@example.com,2 +1076,user_001076,user_001076@example.com, +1077,user_001077,user_001077@example.com,1 +1078,user_001078,user_001078@example.com,2 +1079,user_001079,user_001079@example.com, +1080,user_001080,user_001080@example.com,1 +1081,user_001081,user_001081@example.com,2 +1082,user_001082,user_001082@example.com, +1083,user_001083,user_001083@example.com,1 +1084,user_001084,user_001084@example.com,2 +1085,user_001085,user_001085@example.com, +1086,user_001086,user_001086@example.com,1 +1087,user_001087,user_001087@example.com,2 +1088,user_001088,user_001088@example.com, +1089,user_001089,user_001089@example.com,1 +1090,user_001090,user_001090@example.com,2 +1091,user_001091,user_001091@example.com, +1092,user_001092,user_001092@example.com,1 +1093,user_001093,user_001093@example.com,2 +1094,user_001094,user_001094@example.com, +1095,user_001095,user_001095@example.com,1 +1096,user_001096,user_001096@example.com,2 +1097,user_001097,user_001097@example.com, +1098,user_001098,user_001098@example.com,1 +1099,user_001099,user_001099@example.com,2 +1100,user_001100,user_001100@example.com, +1101,user_001101,user_001101@example.com,1 +1102,user_001102,user_001102@example.com,2 +1103,user_001103,user_001103@example.com, +1104,user_001104,user_001104@example.com,1 +1105,user_001105,user_001105@example.com,2 +1106,user_001106,user_001106@example.com, +1107,user_001107,user_001107@example.com,1 +1108,user_001108,user_001108@example.com,2 +1109,user_001109,user_001109@example.com, +1110,user_001110,user_001110@example.com,1 +1111,user_001111,user_001111@example.com,2 +1112,user_001112,user_001112@example.com, +1113,user_001113,user_001113@example.com,1 +1114,user_001114,user_001114@example.com,2 +1115,user_001115,user_001115@example.com, +1116,user_001116,user_001116@example.com,1 +1117,user_001117,user_001117@example.com,2 +1118,user_001118,user_001118@example.com, +1119,user_001119,user_001119@example.com,1 +1120,user_001120,user_001120@example.com,2 +1121,user_001121,user_001121@example.com, +1122,user_001122,user_001122@example.com,1 +1123,user_001123,user_001123@example.com,2 +1124,user_001124,user_001124@example.com, +1125,user_001125,user_001125@example.com,1 +1126,user_001126,user_001126@example.com,2 +1127,user_001127,user_001127@example.com, +1128,user_001128,user_001128@example.com,1 +1129,user_001129,user_001129@example.com,2 +1130,user_001130,user_001130@example.com, +1131,user_001131,user_001131@example.com,1 +1132,user_001132,user_001132@example.com,2 +1133,user_001133,user_001133@example.com, +1134,user_001134,user_001134@example.com,1 +1135,user_001135,user_001135@example.com,2 +1136,user_001136,user_001136@example.com, +1137,user_001137,user_001137@example.com,1 +1138,user_001138,user_001138@example.com,2 +1139,user_001139,user_001139@example.com, +1140,user_001140,user_001140@example.com,1 +1141,user_001141,user_001141@example.com,2 +1142,user_001142,user_001142@example.com, +1143,user_001143,user_001143@example.com,1 +1144,user_001144,user_001144@example.com,2 +1145,user_001145,user_001145@example.com, +1146,user_001146,user_001146@example.com,1 +1147,user_001147,user_001147@example.com,2 +1148,user_001148,user_001148@example.com, +1149,user_001149,user_001149@example.com,1 +1150,user_001150,user_001150@example.com,2 +1151,user_001151,user_001151@example.com, +1152,user_001152,user_001152@example.com,1 +1153,user_001153,user_001153@example.com,2 +1154,user_001154,user_001154@example.com, +1155,user_001155,user_001155@example.com,1 +1156,user_001156,user_001156@example.com,2 +1157,user_001157,user_001157@example.com, +1158,user_001158,user_001158@example.com,1 +1159,user_001159,user_001159@example.com,2 +1160,user_001160,user_001160@example.com, +1161,user_001161,user_001161@example.com,1 +1162,user_001162,user_001162@example.com,2 +1163,user_001163,user_001163@example.com, +1164,user_001164,user_001164@example.com,1 +1165,user_001165,user_001165@example.com,2 +1166,user_001166,user_001166@example.com, +1167,user_001167,user_001167@example.com,1 +1168,user_001168,user_001168@example.com,2 +1169,user_001169,user_001169@example.com, +1170,user_001170,user_001170@example.com,1 +1171,user_001171,user_001171@example.com,2 +1172,user_001172,user_001172@example.com, +1173,user_001173,user_001173@example.com,1 +1174,user_001174,user_001174@example.com,2 +1175,user_001175,user_001175@example.com, +1176,user_001176,user_001176@example.com,1 +1177,user_001177,user_001177@example.com,2 +1178,user_001178,user_001178@example.com, +1179,user_001179,user_001179@example.com,1 +1180,user_001180,user_001180@example.com,2 +1181,user_001181,user_001181@example.com, +1182,user_001182,user_001182@example.com,1 +1183,user_001183,user_001183@example.com,2 +1184,user_001184,user_001184@example.com, +1185,user_001185,user_001185@example.com,1 +1186,user_001186,user_001186@example.com,2 +1187,user_001187,user_001187@example.com, +1188,user_001188,user_001188@example.com,1 +1189,user_001189,user_001189@example.com,2 +1190,user_001190,user_001190@example.com, +1191,user_001191,user_001191@example.com,1 +1192,user_001192,user_001192@example.com,2 +1193,user_001193,user_001193@example.com, +1194,user_001194,user_001194@example.com,1 +1195,user_001195,user_001195@example.com,2 +1196,user_001196,user_001196@example.com, +1197,user_001197,user_001197@example.com,1 +1198,user_001198,user_001198@example.com,2 +1199,user_001199,user_001199@example.com, +1200,user_001200,user_001200@example.com,1 +1201,user_001201,user_001201@example.com,2 +1202,user_001202,user_001202@example.com, +1203,user_001203,user_001203@example.com,1 +1204,user_001204,user_001204@example.com,2 +1205,user_001205,user_001205@example.com, +1206,user_001206,user_001206@example.com,1 +1207,user_001207,user_001207@example.com,2 +1208,user_001208,user_001208@example.com, +1209,user_001209,user_001209@example.com,1 +1210,user_001210,user_001210@example.com,2 +1211,user_001211,user_001211@example.com, +1212,user_001212,user_001212@example.com,1 +1213,user_001213,user_001213@example.com,2 +1214,user_001214,user_001214@example.com, +1215,user_001215,user_001215@example.com,1 +1216,user_001216,user_001216@example.com,2 +1217,user_001217,user_001217@example.com, +1218,user_001218,user_001218@example.com,1 +1219,user_001219,user_001219@example.com,2 +1220,user_001220,user_001220@example.com, +1221,user_001221,user_001221@example.com,1 +1222,user_001222,user_001222@example.com,2 +1223,user_001223,user_001223@example.com, +1224,user_001224,user_001224@example.com,1 +1225,user_001225,user_001225@example.com,2 +1226,user_001226,user_001226@example.com, +1227,user_001227,user_001227@example.com,1 +1228,user_001228,user_001228@example.com,2 +1229,user_001229,user_001229@example.com, +1230,user_001230,user_001230@example.com,1 +1231,user_001231,user_001231@example.com,2 +1232,user_001232,user_001232@example.com, +1233,user_001233,user_001233@example.com,1 +1234,user_001234,user_001234@example.com,2 +1235,user_001235,user_001235@example.com, +1236,user_001236,user_001236@example.com,1 +1237,user_001237,user_001237@example.com,2 +1238,user_001238,user_001238@example.com, +1239,user_001239,user_001239@example.com,1 +1240,user_001240,user_001240@example.com,2 +1241,user_001241,user_001241@example.com, +1242,user_001242,user_001242@example.com,1 +1243,user_001243,user_001243@example.com,2 +1244,user_001244,user_001244@example.com, +1245,user_001245,user_001245@example.com,1 +1246,user_001246,user_001246@example.com,2 +1247,user_001247,user_001247@example.com, +1248,user_001248,user_001248@example.com,1 +1249,user_001249,user_001249@example.com,2 +1250,user_001250,user_001250@example.com, +1251,user_001251,user_001251@example.com,1 +1252,user_001252,user_001252@example.com,2 +1253,user_001253,user_001253@example.com, +1254,user_001254,user_001254@example.com,1 +1255,user_001255,user_001255@example.com,2 +1256,user_001256,user_001256@example.com, +1257,user_001257,user_001257@example.com,1 +1258,user_001258,user_001258@example.com,2 +1259,user_001259,user_001259@example.com, +1260,user_001260,user_001260@example.com,1 +1261,user_001261,user_001261@example.com,2 +1262,user_001262,user_001262@example.com, +1263,user_001263,user_001263@example.com,1 +1264,user_001264,user_001264@example.com,2 +1265,user_001265,user_001265@example.com, +1266,user_001266,user_001266@example.com,1 +1267,user_001267,user_001267@example.com,2 +1268,user_001268,user_001268@example.com, +1269,user_001269,user_001269@example.com,1 +1270,user_001270,user_001270@example.com,2 +1271,user_001271,user_001271@example.com, +1272,user_001272,user_001272@example.com,1 +1273,user_001273,user_001273@example.com,2 +1274,user_001274,user_001274@example.com, +1275,user_001275,user_001275@example.com,1 +1276,user_001276,user_001276@example.com,2 +1277,user_001277,user_001277@example.com, +1278,user_001278,user_001278@example.com,1 +1279,user_001279,user_001279@example.com,2 +1280,user_001280,user_001280@example.com, +1281,user_001281,user_001281@example.com,1 +1282,user_001282,user_001282@example.com,2 +1283,user_001283,user_001283@example.com, +1284,user_001284,user_001284@example.com,1 +1285,user_001285,user_001285@example.com,2 +1286,user_001286,user_001286@example.com, +1287,user_001287,user_001287@example.com,1 +1288,user_001288,user_001288@example.com,2 +1289,user_001289,user_001289@example.com, +1290,user_001290,user_001290@example.com,1 +1291,user_001291,user_001291@example.com,2 +1292,user_001292,user_001292@example.com, +1293,user_001293,user_001293@example.com,1 +1294,user_001294,user_001294@example.com,2 +1295,user_001295,user_001295@example.com, +1296,user_001296,user_001296@example.com,1 +1297,user_001297,user_001297@example.com,2 +1298,user_001298,user_001298@example.com, +1299,user_001299,user_001299@example.com,1 +1300,user_001300,user_001300@example.com,2 +1301,user_001301,user_001301@example.com, +1302,user_001302,user_001302@example.com,1 +1303,user_001303,user_001303@example.com,2 +1304,user_001304,user_001304@example.com, +1305,user_001305,user_001305@example.com,1 +1306,user_001306,user_001306@example.com,2 +1307,user_001307,user_001307@example.com, +1308,user_001308,user_001308@example.com,1 +1309,user_001309,user_001309@example.com,2 +1310,user_001310,user_001310@example.com, +1311,user_001311,user_001311@example.com,1 +1312,user_001312,user_001312@example.com,2 +1313,user_001313,user_001313@example.com, +1314,user_001314,user_001314@example.com,1 +1315,user_001315,user_001315@example.com,2 +1316,user_001316,user_001316@example.com, +1317,user_001317,user_001317@example.com,1 +1318,user_001318,user_001318@example.com,2 +1319,user_001319,user_001319@example.com, +1320,user_001320,user_001320@example.com,1 +1321,user_001321,user_001321@example.com,2 +1322,user_001322,user_001322@example.com, +1323,user_001323,user_001323@example.com,1 +1324,user_001324,user_001324@example.com,2 +1325,user_001325,user_001325@example.com, +1326,user_001326,user_001326@example.com,1 +1327,user_001327,user_001327@example.com,2 +1328,user_001328,user_001328@example.com, +1329,user_001329,user_001329@example.com,1 +1330,user_001330,user_001330@example.com,2 +1331,user_001331,user_001331@example.com, +1332,user_001332,user_001332@example.com,1 +1333,user_001333,user_001333@example.com,2 +1334,user_001334,user_001334@example.com, +1335,user_001335,user_001335@example.com,1 +1336,user_001336,user_001336@example.com,2 +1337,user_001337,user_001337@example.com, +1338,user_001338,user_001338@example.com,1 +1339,user_001339,user_001339@example.com,2 +1340,user_001340,user_001340@example.com, +1341,user_001341,user_001341@example.com,1 +1342,user_001342,user_001342@example.com,2 +1343,user_001343,user_001343@example.com, +1344,user_001344,user_001344@example.com,1 +1345,user_001345,user_001345@example.com,2 +1346,user_001346,user_001346@example.com, +1347,user_001347,user_001347@example.com,1 +1348,user_001348,user_001348@example.com,2 +1349,user_001349,user_001349@example.com, +1350,user_001350,user_001350@example.com,1 +1351,user_001351,user_001351@example.com,2 +1352,user_001352,user_001352@example.com, +1353,user_001353,user_001353@example.com,1 +1354,user_001354,user_001354@example.com,2 +1355,user_001355,user_001355@example.com, +1356,user_001356,user_001356@example.com,1 +1357,user_001357,user_001357@example.com,2 +1358,user_001358,user_001358@example.com, +1359,user_001359,user_001359@example.com,1 +1360,user_001360,user_001360@example.com,2 +1361,user_001361,user_001361@example.com, +1362,user_001362,user_001362@example.com,1 +1363,user_001363,user_001363@example.com,2 +1364,user_001364,user_001364@example.com, +1365,user_001365,user_001365@example.com,1 +1366,user_001366,user_001366@example.com,2 +1367,user_001367,user_001367@example.com, +1368,user_001368,user_001368@example.com,1 +1369,user_001369,user_001369@example.com,2 +1370,user_001370,user_001370@example.com, +1371,user_001371,user_001371@example.com,1 +1372,user_001372,user_001372@example.com,2 +1373,user_001373,user_001373@example.com, +1374,user_001374,user_001374@example.com,1 +1375,user_001375,user_001375@example.com,2 +1376,user_001376,user_001376@example.com, +1377,user_001377,user_001377@example.com,1 +1378,user_001378,user_001378@example.com,2 +1379,user_001379,user_001379@example.com, +1380,user_001380,user_001380@example.com,1 +1381,user_001381,user_001381@example.com,2 +1382,user_001382,user_001382@example.com, +1383,user_001383,user_001383@example.com,1 +1384,user_001384,user_001384@example.com,2 +1385,user_001385,user_001385@example.com, +1386,user_001386,user_001386@example.com,1 +1387,user_001387,user_001387@example.com,2 +1388,user_001388,user_001388@example.com, +1389,user_001389,user_001389@example.com,1 +1390,user_001390,user_001390@example.com,2 +1391,user_001391,user_001391@example.com, +1392,user_001392,user_001392@example.com,1 +1393,user_001393,user_001393@example.com,2 +1394,user_001394,user_001394@example.com, +1395,user_001395,user_001395@example.com,1 +1396,user_001396,user_001396@example.com,2 +1397,user_001397,user_001397@example.com, +1398,user_001398,user_001398@example.com,1 +1399,user_001399,user_001399@example.com,2 +1400,user_001400,user_001400@example.com, +1401,user_001401,user_001401@example.com,1 +1402,user_001402,user_001402@example.com,2 +1403,user_001403,user_001403@example.com, +1404,user_001404,user_001404@example.com,1 +1405,user_001405,user_001405@example.com,2 +1406,user_001406,user_001406@example.com, +1407,user_001407,user_001407@example.com,1 +1408,user_001408,user_001408@example.com,2 +1409,user_001409,user_001409@example.com, +1410,user_001410,user_001410@example.com,1 +1411,user_001411,user_001411@example.com,2 +1412,user_001412,user_001412@example.com, +1413,user_001413,user_001413@example.com,1 +1414,user_001414,user_001414@example.com,2 +1415,user_001415,user_001415@example.com, +1416,user_001416,user_001416@example.com,1 +1417,user_001417,user_001417@example.com,2 +1418,user_001418,user_001418@example.com, +1419,user_001419,user_001419@example.com,1 +1420,user_001420,user_001420@example.com,2 +1421,user_001421,user_001421@example.com, +1422,user_001422,user_001422@example.com,1 +1423,user_001423,user_001423@example.com,2 +1424,user_001424,user_001424@example.com, +1425,user_001425,user_001425@example.com,1 +1426,user_001426,user_001426@example.com,2 +1427,user_001427,user_001427@example.com, +1428,user_001428,user_001428@example.com,1 +1429,user_001429,user_001429@example.com,2 +1430,user_001430,user_001430@example.com, +1431,user_001431,user_001431@example.com,1 +1432,user_001432,user_001432@example.com,2 +1433,user_001433,user_001433@example.com, +1434,user_001434,user_001434@example.com,1 +1435,user_001435,user_001435@example.com,2 +1436,user_001436,user_001436@example.com, +1437,user_001437,user_001437@example.com,1 +1438,user_001438,user_001438@example.com,2 +1439,user_001439,user_001439@example.com, +1440,user_001440,user_001440@example.com,1 +1441,user_001441,user_001441@example.com,2 +1442,user_001442,user_001442@example.com, +1443,user_001443,user_001443@example.com,1 +1444,user_001444,user_001444@example.com,2 +1445,user_001445,user_001445@example.com, +1446,user_001446,user_001446@example.com,1 +1447,user_001447,user_001447@example.com,2 +1448,user_001448,user_001448@example.com, +1449,user_001449,user_001449@example.com,1 +1450,user_001450,user_001450@example.com,2 +1451,user_001451,user_001451@example.com, +1452,user_001452,user_001452@example.com,1 +1453,user_001453,user_001453@example.com,2 +1454,user_001454,user_001454@example.com, +1455,user_001455,user_001455@example.com,1 +1456,user_001456,user_001456@example.com,2 +1457,user_001457,user_001457@example.com, +1458,user_001458,user_001458@example.com,1 +1459,user_001459,user_001459@example.com,2 +1460,user_001460,user_001460@example.com, +1461,user_001461,user_001461@example.com,1 +1462,user_001462,user_001462@example.com,2 +1463,user_001463,user_001463@example.com, +1464,user_001464,user_001464@example.com,1 +1465,user_001465,user_001465@example.com,2 +1466,user_001466,user_001466@example.com, +1467,user_001467,user_001467@example.com,1 +1468,user_001468,user_001468@example.com,2 +1469,user_001469,user_001469@example.com, +1470,user_001470,user_001470@example.com,1 +1471,user_001471,user_001471@example.com,2 +1472,user_001472,user_001472@example.com, +1473,user_001473,user_001473@example.com,1 +1474,user_001474,user_001474@example.com,2 +1475,user_001475,user_001475@example.com, +1476,user_001476,user_001476@example.com,1 +1477,user_001477,user_001477@example.com,2 +1478,user_001478,user_001478@example.com, +1479,user_001479,user_001479@example.com,1 +1480,user_001480,user_001480@example.com,2 +1481,user_001481,user_001481@example.com, +1482,user_001482,user_001482@example.com,1 +1483,user_001483,user_001483@example.com,2 +1484,user_001484,user_001484@example.com, +1485,user_001485,user_001485@example.com,1 +1486,user_001486,user_001486@example.com,2 +1487,user_001487,user_001487@example.com, +1488,user_001488,user_001488@example.com,1 +1489,user_001489,user_001489@example.com,2 +1490,user_001490,user_001490@example.com, +1491,user_001491,user_001491@example.com,1 +1492,user_001492,user_001492@example.com,2 +1493,user_001493,user_001493@example.com, +1494,user_001494,user_001494@example.com,1 +1495,user_001495,user_001495@example.com,2 +1496,user_001496,user_001496@example.com, +1497,user_001497,user_001497@example.com,1 +1498,user_001498,user_001498@example.com,2 +1499,user_001499,user_001499@example.com, +1500,user_001500,user_001500@example.com,1 +1501,user_001501,user_001501@example.com,2 +1502,user_001502,user_001502@example.com, +1503,user_001503,user_001503@example.com,1 +1504,user_001504,user_001504@example.com,2 +1505,user_001505,user_001505@example.com, +1506,user_001506,user_001506@example.com,1 +1507,user_001507,user_001507@example.com,2 +1508,user_001508,user_001508@example.com, +1509,user_001509,user_001509@example.com,1 +1510,user_001510,user_001510@example.com,2 +1511,user_001511,user_001511@example.com, +1512,user_001512,user_001512@example.com,1 +1513,user_001513,user_001513@example.com,2 +1514,user_001514,user_001514@example.com, +1515,user_001515,user_001515@example.com,1 +1516,user_001516,user_001516@example.com,2 +1517,user_001517,user_001517@example.com, +1518,user_001518,user_001518@example.com,1 +1519,user_001519,user_001519@example.com,2 +1520,user_001520,user_001520@example.com, +1521,user_001521,user_001521@example.com,1 +1522,user_001522,user_001522@example.com,2 +1523,user_001523,user_001523@example.com, +1524,user_001524,user_001524@example.com,1 +1525,user_001525,user_001525@example.com,2 +1526,user_001526,user_001526@example.com, +1527,user_001527,user_001527@example.com,1 +1528,user_001528,user_001528@example.com,2 +1529,user_001529,user_001529@example.com, +1530,user_001530,user_001530@example.com,1 +1531,user_001531,user_001531@example.com,2 +1532,user_001532,user_001532@example.com, +1533,user_001533,user_001533@example.com,1 +1534,user_001534,user_001534@example.com,2 +1535,user_001535,user_001535@example.com, +1536,user_001536,user_001536@example.com,1 +1537,user_001537,user_001537@example.com,2 +1538,user_001538,user_001538@example.com, +1539,user_001539,user_001539@example.com,1 +1540,user_001540,user_001540@example.com,2 +1541,user_001541,user_001541@example.com, +1542,user_001542,user_001542@example.com,1 +1543,user_001543,user_001543@example.com,2 +1544,user_001544,user_001544@example.com, +1545,user_001545,user_001545@example.com,1 +1546,user_001546,user_001546@example.com,2 +1547,user_001547,user_001547@example.com, +1548,user_001548,user_001548@example.com,1 +1549,user_001549,user_001549@example.com,2 +1550,user_001550,user_001550@example.com, +1551,user_001551,user_001551@example.com,1 +1552,user_001552,user_001552@example.com,2 +1553,user_001553,user_001553@example.com, +1554,user_001554,user_001554@example.com,1 +1555,user_001555,user_001555@example.com,2 +1556,user_001556,user_001556@example.com, +1557,user_001557,user_001557@example.com,1 +1558,user_001558,user_001558@example.com,2 +1559,user_001559,user_001559@example.com, +1560,user_001560,user_001560@example.com,1 +1561,user_001561,user_001561@example.com,2 +1562,user_001562,user_001562@example.com, +1563,user_001563,user_001563@example.com,1 +1564,user_001564,user_001564@example.com,2 +1565,user_001565,user_001565@example.com, +1566,user_001566,user_001566@example.com,1 +1567,user_001567,user_001567@example.com,2 +1568,user_001568,user_001568@example.com, +1569,user_001569,user_001569@example.com,1 +1570,user_001570,user_001570@example.com,2 +1571,user_001571,user_001571@example.com, +1572,user_001572,user_001572@example.com,1 +1573,user_001573,user_001573@example.com,2 +1574,user_001574,user_001574@example.com, +1575,user_001575,user_001575@example.com,1 +1576,user_001576,user_001576@example.com,2 +1577,user_001577,user_001577@example.com, +1578,user_001578,user_001578@example.com,1 +1579,user_001579,user_001579@example.com,2 +1580,user_001580,user_001580@example.com, +1581,user_001581,user_001581@example.com,1 +1582,user_001582,user_001582@example.com,2 +1583,user_001583,user_001583@example.com, +1584,user_001584,user_001584@example.com,1 +1585,user_001585,user_001585@example.com,2 +1586,user_001586,user_001586@example.com, +1587,user_001587,user_001587@example.com,1 +1588,user_001588,user_001588@example.com,2 +1589,user_001589,user_001589@example.com, +1590,user_001590,user_001590@example.com,1 +1591,user_001591,user_001591@example.com,2 +1592,user_001592,user_001592@example.com, +1593,user_001593,user_001593@example.com,1 +1594,user_001594,user_001594@example.com,2 +1595,user_001595,user_001595@example.com, +1596,user_001596,user_001596@example.com,1 +1597,user_001597,user_001597@example.com,2 +1598,user_001598,user_001598@example.com, +1599,user_001599,user_001599@example.com,1 +1600,user_001600,user_001600@example.com,2 +1601,user_001601,user_001601@example.com, +1602,user_001602,user_001602@example.com,1 +1603,user_001603,user_001603@example.com,2 +1604,user_001604,user_001604@example.com, +1605,user_001605,user_001605@example.com,1 +1606,user_001606,user_001606@example.com,2 +1607,user_001607,user_001607@example.com, +1608,user_001608,user_001608@example.com,1 +1609,user_001609,user_001609@example.com,2 +1610,user_001610,user_001610@example.com, +1611,user_001611,user_001611@example.com,1 +1612,user_001612,user_001612@example.com,2 +1613,user_001613,user_001613@example.com, +1614,user_001614,user_001614@example.com,1 +1615,user_001615,user_001615@example.com,2 +1616,user_001616,user_001616@example.com, +1617,user_001617,user_001617@example.com,1 +1618,user_001618,user_001618@example.com,2 +1619,user_001619,user_001619@example.com, +1620,user_001620,user_001620@example.com,1 +1621,user_001621,user_001621@example.com,2 +1622,user_001622,user_001622@example.com, +1623,user_001623,user_001623@example.com,1 +1624,user_001624,user_001624@example.com,2 +1625,user_001625,user_001625@example.com, +1626,user_001626,user_001626@example.com,1 +1627,user_001627,user_001627@example.com,2 +1628,user_001628,user_001628@example.com, +1629,user_001629,user_001629@example.com,1 +1630,user_001630,user_001630@example.com,2 +1631,user_001631,user_001631@example.com, +1632,user_001632,user_001632@example.com,1 +1633,user_001633,user_001633@example.com,2 +1634,user_001634,user_001634@example.com, +1635,user_001635,user_001635@example.com,1 +1636,user_001636,user_001636@example.com,2 +1637,user_001637,user_001637@example.com, +1638,user_001638,user_001638@example.com,1 +1639,user_001639,user_001639@example.com,2 +1640,user_001640,user_001640@example.com, +1641,user_001641,user_001641@example.com,1 +1642,user_001642,user_001642@example.com,2 +1643,user_001643,user_001643@example.com, +1644,user_001644,user_001644@example.com,1 +1645,user_001645,user_001645@example.com,2 +1646,user_001646,user_001646@example.com, +1647,user_001647,user_001647@example.com,1 +1648,user_001648,user_001648@example.com,2 +1649,user_001649,user_001649@example.com, +1650,user_001650,user_001650@example.com,1 +1651,user_001651,user_001651@example.com,2 +1652,user_001652,user_001652@example.com, +1653,user_001653,user_001653@example.com,1 +1654,user_001654,user_001654@example.com,2 +1655,user_001655,user_001655@example.com, +1656,user_001656,user_001656@example.com,1 +1657,user_001657,user_001657@example.com,2 +1658,user_001658,user_001658@example.com, +1659,user_001659,user_001659@example.com,1 +1660,user_001660,user_001660@example.com,2 +1661,user_001661,user_001661@example.com, +1662,user_001662,user_001662@example.com,1 +1663,user_001663,user_001663@example.com,2 +1664,user_001664,user_001664@example.com, +1665,user_001665,user_001665@example.com,1 +1666,user_001666,user_001666@example.com,2 +1667,user_001667,user_001667@example.com, +1668,user_001668,user_001668@example.com,1 +1669,user_001669,user_001669@example.com,2 +1670,user_001670,user_001670@example.com, +1671,user_001671,user_001671@example.com,1 +1672,user_001672,user_001672@example.com,2 +1673,user_001673,user_001673@example.com, +1674,user_001674,user_001674@example.com,1 +1675,user_001675,user_001675@example.com,2 +1676,user_001676,user_001676@example.com, +1677,user_001677,user_001677@example.com,1 +1678,user_001678,user_001678@example.com,2 +1679,user_001679,user_001679@example.com, +1680,user_001680,user_001680@example.com,1 +1681,user_001681,user_001681@example.com,2 +1682,user_001682,user_001682@example.com, +1683,user_001683,user_001683@example.com,1 +1684,user_001684,user_001684@example.com,2 +1685,user_001685,user_001685@example.com, +1686,user_001686,user_001686@example.com,1 +1687,user_001687,user_001687@example.com,2 +1688,user_001688,user_001688@example.com, +1689,user_001689,user_001689@example.com,1 +1690,user_001690,user_001690@example.com,2 +1691,user_001691,user_001691@example.com, +1692,user_001692,user_001692@example.com,1 +1693,user_001693,user_001693@example.com,2 +1694,user_001694,user_001694@example.com, +1695,user_001695,user_001695@example.com,1 +1696,user_001696,user_001696@example.com,2 +1697,user_001697,user_001697@example.com, +1698,user_001698,user_001698@example.com,1 +1699,user_001699,user_001699@example.com,2 +1700,user_001700,user_001700@example.com, +1701,user_001701,user_001701@example.com,1 +1702,user_001702,user_001702@example.com,2 +1703,user_001703,user_001703@example.com, +1704,user_001704,user_001704@example.com,1 +1705,user_001705,user_001705@example.com,2 +1706,user_001706,user_001706@example.com, +1707,user_001707,user_001707@example.com,1 +1708,user_001708,user_001708@example.com,2 +1709,user_001709,user_001709@example.com, +1710,user_001710,user_001710@example.com,1 +1711,user_001711,user_001711@example.com,2 +1712,user_001712,user_001712@example.com, +1713,user_001713,user_001713@example.com,1 +1714,user_001714,user_001714@example.com,2 +1715,user_001715,user_001715@example.com, +1716,user_001716,user_001716@example.com,1 +1717,user_001717,user_001717@example.com,2 +1718,user_001718,user_001718@example.com, +1719,user_001719,user_001719@example.com,1 +1720,user_001720,user_001720@example.com,2 +1721,user_001721,user_001721@example.com, +1722,user_001722,user_001722@example.com,1 +1723,user_001723,user_001723@example.com,2 +1724,user_001724,user_001724@example.com, +1725,user_001725,user_001725@example.com,1 +1726,user_001726,user_001726@example.com,2 +1727,user_001727,user_001727@example.com, +1728,user_001728,user_001728@example.com,1 +1729,user_001729,user_001729@example.com,2 +1730,user_001730,user_001730@example.com, +1731,user_001731,user_001731@example.com,1 +1732,user_001732,user_001732@example.com,2 +1733,user_001733,user_001733@example.com, +1734,user_001734,user_001734@example.com,1 +1735,user_001735,user_001735@example.com,2 +1736,user_001736,user_001736@example.com, +1737,user_001737,user_001737@example.com,1 +1738,user_001738,user_001738@example.com,2 +1739,user_001739,user_001739@example.com, +1740,user_001740,user_001740@example.com,1 +1741,user_001741,user_001741@example.com,2 +1742,user_001742,user_001742@example.com, +1743,user_001743,user_001743@example.com,1 +1744,user_001744,user_001744@example.com,2 +1745,user_001745,user_001745@example.com, +1746,user_001746,user_001746@example.com,1 +1747,user_001747,user_001747@example.com,2 +1748,user_001748,user_001748@example.com, +1749,user_001749,user_001749@example.com,1 +1750,user_001750,user_001750@example.com,2 +1751,user_001751,user_001751@example.com, +1752,user_001752,user_001752@example.com,1 +1753,user_001753,user_001753@example.com,2 +1754,user_001754,user_001754@example.com, +1755,user_001755,user_001755@example.com,1 +1756,user_001756,user_001756@example.com,2 +1757,user_001757,user_001757@example.com, +1758,user_001758,user_001758@example.com,1 +1759,user_001759,user_001759@example.com,2 +1760,user_001760,user_001760@example.com, +1761,user_001761,user_001761@example.com,1 +1762,user_001762,user_001762@example.com,2 +1763,user_001763,user_001763@example.com, +1764,user_001764,user_001764@example.com,1 +1765,user_001765,user_001765@example.com,2 +1766,user_001766,user_001766@example.com, +1767,user_001767,user_001767@example.com,1 +1768,user_001768,user_001768@example.com,2 +1769,user_001769,user_001769@example.com, +1770,user_001770,user_001770@example.com,1 +1771,user_001771,user_001771@example.com,2 +1772,user_001772,user_001772@example.com, +1773,user_001773,user_001773@example.com,1 +1774,user_001774,user_001774@example.com,2 +1775,user_001775,user_001775@example.com, +1776,user_001776,user_001776@example.com,1 +1777,user_001777,user_001777@example.com,2 +1778,user_001778,user_001778@example.com, +1779,user_001779,user_001779@example.com,1 +1780,user_001780,user_001780@example.com,2 +1781,user_001781,user_001781@example.com, +1782,user_001782,user_001782@example.com,1 +1783,user_001783,user_001783@example.com,2 +1784,user_001784,user_001784@example.com, +1785,user_001785,user_001785@example.com,1 +1786,user_001786,user_001786@example.com,2 +1787,user_001787,user_001787@example.com, +1788,user_001788,user_001788@example.com,1 +1789,user_001789,user_001789@example.com,2 +1790,user_001790,user_001790@example.com, +1791,user_001791,user_001791@example.com,1 +1792,user_001792,user_001792@example.com,2 +1793,user_001793,user_001793@example.com, +1794,user_001794,user_001794@example.com,1 +1795,user_001795,user_001795@example.com,2 +1796,user_001796,user_001796@example.com, +1797,user_001797,user_001797@example.com,1 +1798,user_001798,user_001798@example.com,2 +1799,user_001799,user_001799@example.com, +1800,user_001800,user_001800@example.com,1 +1801,user_001801,user_001801@example.com,2 +1802,user_001802,user_001802@example.com, +1803,user_001803,user_001803@example.com,1 +1804,user_001804,user_001804@example.com,2 +1805,user_001805,user_001805@example.com, +1806,user_001806,user_001806@example.com,1 +1807,user_001807,user_001807@example.com,2 +1808,user_001808,user_001808@example.com, +1809,user_001809,user_001809@example.com,1 +1810,user_001810,user_001810@example.com,2 +1811,user_001811,user_001811@example.com, +1812,user_001812,user_001812@example.com,1 +1813,user_001813,user_001813@example.com,2 +1814,user_001814,user_001814@example.com, +1815,user_001815,user_001815@example.com,1 +1816,user_001816,user_001816@example.com,2 +1817,user_001817,user_001817@example.com, +1818,user_001818,user_001818@example.com,1 +1819,user_001819,user_001819@example.com,2 +1820,user_001820,user_001820@example.com, +1821,user_001821,user_001821@example.com,1 +1822,user_001822,user_001822@example.com,2 +1823,user_001823,user_001823@example.com, +1824,user_001824,user_001824@example.com,1 +1825,user_001825,user_001825@example.com,2 +1826,user_001826,user_001826@example.com, +1827,user_001827,user_001827@example.com,1 +1828,user_001828,user_001828@example.com,2 +1829,user_001829,user_001829@example.com, +1830,user_001830,user_001830@example.com,1 +1831,user_001831,user_001831@example.com,2 +1832,user_001832,user_001832@example.com, +1833,user_001833,user_001833@example.com,1 +1834,user_001834,user_001834@example.com,2 +1835,user_001835,user_001835@example.com, +1836,user_001836,user_001836@example.com,1 +1837,user_001837,user_001837@example.com,2 +1838,user_001838,user_001838@example.com, +1839,user_001839,user_001839@example.com,1 +1840,user_001840,user_001840@example.com,2 +1841,user_001841,user_001841@example.com, +1842,user_001842,user_001842@example.com,1 +1843,user_001843,user_001843@example.com,2 +1844,user_001844,user_001844@example.com, +1845,user_001845,user_001845@example.com,1 +1846,user_001846,user_001846@example.com,2 +1847,user_001847,user_001847@example.com, +1848,user_001848,user_001848@example.com,1 +1849,user_001849,user_001849@example.com,2 +1850,user_001850,user_001850@example.com, +1851,user_001851,user_001851@example.com,1 +1852,user_001852,user_001852@example.com,2 +1853,user_001853,user_001853@example.com, +1854,user_001854,user_001854@example.com,1 +1855,user_001855,user_001855@example.com,2 +1856,user_001856,user_001856@example.com, +1857,user_001857,user_001857@example.com,1 +1858,user_001858,user_001858@example.com,2 +1859,user_001859,user_001859@example.com, +1860,user_001860,user_001860@example.com,1 +1861,user_001861,user_001861@example.com,2 +1862,user_001862,user_001862@example.com, +1863,user_001863,user_001863@example.com,1 +1864,user_001864,user_001864@example.com,2 +1865,user_001865,user_001865@example.com, +1866,user_001866,user_001866@example.com,1 +1867,user_001867,user_001867@example.com,2 +1868,user_001868,user_001868@example.com, +1869,user_001869,user_001869@example.com,1 +1870,user_001870,user_001870@example.com,2 +1871,user_001871,user_001871@example.com, +1872,user_001872,user_001872@example.com,1 +1873,user_001873,user_001873@example.com,2 +1874,user_001874,user_001874@example.com, +1875,user_001875,user_001875@example.com,1 +1876,user_001876,user_001876@example.com,2 +1877,user_001877,user_001877@example.com, +1878,user_001878,user_001878@example.com,1 +1879,user_001879,user_001879@example.com,2 +1880,user_001880,user_001880@example.com, +1881,user_001881,user_001881@example.com,1 +1882,user_001882,user_001882@example.com,2 +1883,user_001883,user_001883@example.com, +1884,user_001884,user_001884@example.com,1 +1885,user_001885,user_001885@example.com,2 +1886,user_001886,user_001886@example.com, +1887,user_001887,user_001887@example.com,1 +1888,user_001888,user_001888@example.com,2 +1889,user_001889,user_001889@example.com, +1890,user_001890,user_001890@example.com,1 +1891,user_001891,user_001891@example.com,2 +1892,user_001892,user_001892@example.com, +1893,user_001893,user_001893@example.com,1 +1894,user_001894,user_001894@example.com,2 +1895,user_001895,user_001895@example.com, +1896,user_001896,user_001896@example.com,1 +1897,user_001897,user_001897@example.com,2 +1898,user_001898,user_001898@example.com, +1899,user_001899,user_001899@example.com,1 +1900,user_001900,user_001900@example.com,2 +1901,user_001901,user_001901@example.com, +1902,user_001902,user_001902@example.com,1 +1903,user_001903,user_001903@example.com,2 +1904,user_001904,user_001904@example.com, +1905,user_001905,user_001905@example.com,1 +1906,user_001906,user_001906@example.com,2 +1907,user_001907,user_001907@example.com, +1908,user_001908,user_001908@example.com,1 +1909,user_001909,user_001909@example.com,2 +1910,user_001910,user_001910@example.com, +1911,user_001911,user_001911@example.com,1 +1912,user_001912,user_001912@example.com,2 +1913,user_001913,user_001913@example.com, +1914,user_001914,user_001914@example.com,1 +1915,user_001915,user_001915@example.com,2 +1916,user_001916,user_001916@example.com, +1917,user_001917,user_001917@example.com,1 +1918,user_001918,user_001918@example.com,2 +1919,user_001919,user_001919@example.com, +1920,user_001920,user_001920@example.com,1 +1921,user_001921,user_001921@example.com,2 +1922,user_001922,user_001922@example.com, +1923,user_001923,user_001923@example.com,1 +1924,user_001924,user_001924@example.com,2 +1925,user_001925,user_001925@example.com, +1926,user_001926,user_001926@example.com,1 +1927,user_001927,user_001927@example.com,2 +1928,user_001928,user_001928@example.com, +1929,user_001929,user_001929@example.com,1 +1930,user_001930,user_001930@example.com,2 +1931,user_001931,user_001931@example.com, +1932,user_001932,user_001932@example.com,1 +1933,user_001933,user_001933@example.com,2 +1934,user_001934,user_001934@example.com, +1935,user_001935,user_001935@example.com,1 +1936,user_001936,user_001936@example.com,2 +1937,user_001937,user_001937@example.com, +1938,user_001938,user_001938@example.com,1 +1939,user_001939,user_001939@example.com,2 +1940,user_001940,user_001940@example.com, +1941,user_001941,user_001941@example.com,1 +1942,user_001942,user_001942@example.com,2 +1943,user_001943,user_001943@example.com, +1944,user_001944,user_001944@example.com,1 +1945,user_001945,user_001945@example.com,2 +1946,user_001946,user_001946@example.com, +1947,user_001947,user_001947@example.com,1 +1948,user_001948,user_001948@example.com,2 +1949,user_001949,user_001949@example.com, +1950,user_001950,user_001950@example.com,1 +1951,user_001951,user_001951@example.com,2 +1952,user_001952,user_001952@example.com, +1953,user_001953,user_001953@example.com,1 +1954,user_001954,user_001954@example.com,2 +1955,user_001955,user_001955@example.com, +1956,user_001956,user_001956@example.com,1 +1957,user_001957,user_001957@example.com,2 +1958,user_001958,user_001958@example.com, +1959,user_001959,user_001959@example.com,1 +1960,user_001960,user_001960@example.com,2 +1961,user_001961,user_001961@example.com, +1962,user_001962,user_001962@example.com,1 +1963,user_001963,user_001963@example.com,2 +1964,user_001964,user_001964@example.com, +1965,user_001965,user_001965@example.com,1 +1966,user_001966,user_001966@example.com,2 +1967,user_001967,user_001967@example.com, +1968,user_001968,user_001968@example.com,1 +1969,user_001969,user_001969@example.com,2 +1970,user_001970,user_001970@example.com, +1971,user_001971,user_001971@example.com,1 +1972,user_001972,user_001972@example.com,2 +1973,user_001973,user_001973@example.com, +1974,user_001974,user_001974@example.com,1 +1975,user_001975,user_001975@example.com,2 +1976,user_001976,user_001976@example.com, +1977,user_001977,user_001977@example.com,1 +1978,user_001978,user_001978@example.com,2 +1979,user_001979,user_001979@example.com, +1980,user_001980,user_001980@example.com,1 +1981,user_001981,user_001981@example.com,2 +1982,user_001982,user_001982@example.com, +1983,user_001983,user_001983@example.com,1 +1984,user_001984,user_001984@example.com,2 +1985,user_001985,user_001985@example.com, +1986,user_001986,user_001986@example.com,1 +1987,user_001987,user_001987@example.com,2 +1988,user_001988,user_001988@example.com, +1989,user_001989,user_001989@example.com,1 +1990,user_001990,user_001990@example.com,2 +1991,user_001991,user_001991@example.com, +1992,user_001992,user_001992@example.com,1 +1993,user_001993,user_001993@example.com,2 +1994,user_001994,user_001994@example.com, +1995,user_001995,user_001995@example.com,1 +1996,user_001996,user_001996@example.com,2 +1997,user_001997,user_001997@example.com, +1998,user_001998,user_001998@example.com,1 +1999,user_001999,user_001999@example.com,2 +2000,user_002000,user_002000@example.com, +2001,user_002001,user_002001@example.com,1 +2002,user_002002,user_002002@example.com,2 +2003,user_002003,user_002003@example.com, +2004,user_002004,user_002004@example.com,1 +2005,user_002005,user_002005@example.com,2 +2006,user_002006,user_002006@example.com, +2007,user_002007,user_002007@example.com,1 +2008,user_002008,user_002008@example.com,2 +2009,user_002009,user_002009@example.com, +2010,user_002010,user_002010@example.com,1 +2011,user_002011,user_002011@example.com,2 +2012,user_002012,user_002012@example.com, +2013,user_002013,user_002013@example.com,1 +2014,user_002014,user_002014@example.com,2 +2015,user_002015,user_002015@example.com, +2016,user_002016,user_002016@example.com,1 +2017,user_002017,user_002017@example.com,2 +2018,user_002018,user_002018@example.com, +2019,user_002019,user_002019@example.com,1 +2020,user_002020,user_002020@example.com,2 +2021,user_002021,user_002021@example.com, +2022,user_002022,user_002022@example.com,1 +2023,user_002023,user_002023@example.com,2 +2024,user_002024,user_002024@example.com, +2025,user_002025,user_002025@example.com,1 +2026,user_002026,user_002026@example.com,2 +2027,user_002027,user_002027@example.com, +2028,user_002028,user_002028@example.com,1 +2029,user_002029,user_002029@example.com,2 +2030,user_002030,user_002030@example.com, +2031,user_002031,user_002031@example.com,1 +2032,user_002032,user_002032@example.com,2 +2033,user_002033,user_002033@example.com, +2034,user_002034,user_002034@example.com,1 +2035,user_002035,user_002035@example.com,2 +2036,user_002036,user_002036@example.com, +2037,user_002037,user_002037@example.com,1 +2038,user_002038,user_002038@example.com,2 +2039,user_002039,user_002039@example.com, +2040,user_002040,user_002040@example.com,1 +2041,user_002041,user_002041@example.com,2 +2042,user_002042,user_002042@example.com, +2043,user_002043,user_002043@example.com,1 +2044,user_002044,user_002044@example.com,2 +2045,user_002045,user_002045@example.com, +2046,user_002046,user_002046@example.com,1 +2047,user_002047,user_002047@example.com,2 +2048,user_002048,user_002048@example.com, +2049,user_002049,user_002049@example.com,1 +2050,user_002050,user_002050@example.com,2 +2051,user_002051,user_002051@example.com, +2052,user_002052,user_002052@example.com,1 +2053,user_002053,user_002053@example.com,2 +2054,user_002054,user_002054@example.com, +2055,user_002055,user_002055@example.com,1 +2056,user_002056,user_002056@example.com,2 +2057,user_002057,user_002057@example.com, +2058,user_002058,user_002058@example.com,1 +2059,user_002059,user_002059@example.com,2 +2060,user_002060,user_002060@example.com, +2061,user_002061,user_002061@example.com,1 +2062,user_002062,user_002062@example.com,2 +2063,user_002063,user_002063@example.com, +2064,user_002064,user_002064@example.com,1 +2065,user_002065,user_002065@example.com,2 +2066,user_002066,user_002066@example.com, +2067,user_002067,user_002067@example.com,1 +2068,user_002068,user_002068@example.com,2 +2069,user_002069,user_002069@example.com, +2070,user_002070,user_002070@example.com,1 +2071,user_002071,user_002071@example.com,2 +2072,user_002072,user_002072@example.com, +2073,user_002073,user_002073@example.com,1 +2074,user_002074,user_002074@example.com,2 +2075,user_002075,user_002075@example.com, +2076,user_002076,user_002076@example.com,1 +2077,user_002077,user_002077@example.com,2 +2078,user_002078,user_002078@example.com, +2079,user_002079,user_002079@example.com,1 +2080,user_002080,user_002080@example.com,2 +2081,user_002081,user_002081@example.com, +2082,user_002082,user_002082@example.com,1 +2083,user_002083,user_002083@example.com,2 +2084,user_002084,user_002084@example.com, +2085,user_002085,user_002085@example.com,1 +2086,user_002086,user_002086@example.com,2 +2087,user_002087,user_002087@example.com, +2088,user_002088,user_002088@example.com,1 +2089,user_002089,user_002089@example.com,2 +2090,user_002090,user_002090@example.com, +2091,user_002091,user_002091@example.com,1 +2092,user_002092,user_002092@example.com,2 +2093,user_002093,user_002093@example.com, +2094,user_002094,user_002094@example.com,1 +2095,user_002095,user_002095@example.com,2 +2096,user_002096,user_002096@example.com, +2097,user_002097,user_002097@example.com,1 +2098,user_002098,user_002098@example.com,2 +2099,user_002099,user_002099@example.com, +2100,user_002100,user_002100@example.com,1 +2101,user_002101,user_002101@example.com,2 +2102,user_002102,user_002102@example.com, +2103,user_002103,user_002103@example.com,1 +2104,user_002104,user_002104@example.com,2 +2105,user_002105,user_002105@example.com, +2106,user_002106,user_002106@example.com,1 +2107,user_002107,user_002107@example.com,2 +2108,user_002108,user_002108@example.com, +2109,user_002109,user_002109@example.com,1 +2110,user_002110,user_002110@example.com,2 +2111,user_002111,user_002111@example.com, +2112,user_002112,user_002112@example.com,1 +2113,user_002113,user_002113@example.com,2 +2114,user_002114,user_002114@example.com, +2115,user_002115,user_002115@example.com,1 +2116,user_002116,user_002116@example.com,2 +2117,user_002117,user_002117@example.com, +2118,user_002118,user_002118@example.com,1 +2119,user_002119,user_002119@example.com,2 +2120,user_002120,user_002120@example.com, +2121,user_002121,user_002121@example.com,1 +2122,user_002122,user_002122@example.com,2 +2123,user_002123,user_002123@example.com, +2124,user_002124,user_002124@example.com,1 +2125,user_002125,user_002125@example.com,2 +2126,user_002126,user_002126@example.com, +2127,user_002127,user_002127@example.com,1 +2128,user_002128,user_002128@example.com,2 +2129,user_002129,user_002129@example.com, +2130,user_002130,user_002130@example.com,1 +2131,user_002131,user_002131@example.com,2 +2132,user_002132,user_002132@example.com, +2133,user_002133,user_002133@example.com,1 +2134,user_002134,user_002134@example.com,2 +2135,user_002135,user_002135@example.com, +2136,user_002136,user_002136@example.com,1 +2137,user_002137,user_002137@example.com,2 +2138,user_002138,user_002138@example.com, +2139,user_002139,user_002139@example.com,1 +2140,user_002140,user_002140@example.com,2 +2141,user_002141,user_002141@example.com, +2142,user_002142,user_002142@example.com,1 +2143,user_002143,user_002143@example.com,2 +2144,user_002144,user_002144@example.com, +2145,user_002145,user_002145@example.com,1 +2146,user_002146,user_002146@example.com,2 +2147,user_002147,user_002147@example.com, +2148,user_002148,user_002148@example.com,1 +2149,user_002149,user_002149@example.com,2 +2150,user_002150,user_002150@example.com, +2151,user_002151,user_002151@example.com,1 +2152,user_002152,user_002152@example.com,2 +2153,user_002153,user_002153@example.com, +2154,user_002154,user_002154@example.com,1 +2155,user_002155,user_002155@example.com,2 +2156,user_002156,user_002156@example.com, +2157,user_002157,user_002157@example.com,1 +2158,user_002158,user_002158@example.com,2 +2159,user_002159,user_002159@example.com, +2160,user_002160,user_002160@example.com,1 +2161,user_002161,user_002161@example.com,2 +2162,user_002162,user_002162@example.com, +2163,user_002163,user_002163@example.com,1 +2164,user_002164,user_002164@example.com,2 +2165,user_002165,user_002165@example.com, +2166,user_002166,user_002166@example.com,1 +2167,user_002167,user_002167@example.com,2 +2168,user_002168,user_002168@example.com, +2169,user_002169,user_002169@example.com,1 +2170,user_002170,user_002170@example.com,2 +2171,user_002171,user_002171@example.com, +2172,user_002172,user_002172@example.com,1 +2173,user_002173,user_002173@example.com,2 +2174,user_002174,user_002174@example.com, +2175,user_002175,user_002175@example.com,1 +2176,user_002176,user_002176@example.com,2 +2177,user_002177,user_002177@example.com, +2178,user_002178,user_002178@example.com,1 +2179,user_002179,user_002179@example.com,2 +2180,user_002180,user_002180@example.com, +2181,user_002181,user_002181@example.com,1 +2182,user_002182,user_002182@example.com,2 +2183,user_002183,user_002183@example.com, +2184,user_002184,user_002184@example.com,1 +2185,user_002185,user_002185@example.com,2 +2186,user_002186,user_002186@example.com, +2187,user_002187,user_002187@example.com,1 +2188,user_002188,user_002188@example.com,2 +2189,user_002189,user_002189@example.com, +2190,user_002190,user_002190@example.com,1 +2191,user_002191,user_002191@example.com,2 +2192,user_002192,user_002192@example.com, +2193,user_002193,user_002193@example.com,1 +2194,user_002194,user_002194@example.com,2 +2195,user_002195,user_002195@example.com, +2196,user_002196,user_002196@example.com,1 +2197,user_002197,user_002197@example.com,2 +2198,user_002198,user_002198@example.com, +2199,user_002199,user_002199@example.com,1 +2200,user_002200,user_002200@example.com,2 +2201,user_002201,user_002201@example.com, +2202,user_002202,user_002202@example.com,1 +2203,user_002203,user_002203@example.com,2 +2204,user_002204,user_002204@example.com, +2205,user_002205,user_002205@example.com,1 +2206,user_002206,user_002206@example.com,2 +2207,user_002207,user_002207@example.com, +2208,user_002208,user_002208@example.com,1 +2209,user_002209,user_002209@example.com,2 +2210,user_002210,user_002210@example.com, +2211,user_002211,user_002211@example.com,1 +2212,user_002212,user_002212@example.com,2 +2213,user_002213,user_002213@example.com, +2214,user_002214,user_002214@example.com,1 +2215,user_002215,user_002215@example.com,2 +2216,user_002216,user_002216@example.com, +2217,user_002217,user_002217@example.com,1 +2218,user_002218,user_002218@example.com,2 +2219,user_002219,user_002219@example.com, +2220,user_002220,user_002220@example.com,1 +2221,user_002221,user_002221@example.com,2 +2222,user_002222,user_002222@example.com, +2223,user_002223,user_002223@example.com,1 +2224,user_002224,user_002224@example.com,2 +2225,user_002225,user_002225@example.com, +2226,user_002226,user_002226@example.com,1 +2227,user_002227,user_002227@example.com,2 +2228,user_002228,user_002228@example.com, +2229,user_002229,user_002229@example.com,1 +2230,user_002230,user_002230@example.com,2 +2231,user_002231,user_002231@example.com, +2232,user_002232,user_002232@example.com,1 +2233,user_002233,user_002233@example.com,2 +2234,user_002234,user_002234@example.com, +2235,user_002235,user_002235@example.com,1 +2236,user_002236,user_002236@example.com,2 +2237,user_002237,user_002237@example.com, +2238,user_002238,user_002238@example.com,1 +2239,user_002239,user_002239@example.com,2 +2240,user_002240,user_002240@example.com, +2241,user_002241,user_002241@example.com,1 +2242,user_002242,user_002242@example.com,2 +2243,user_002243,user_002243@example.com, +2244,user_002244,user_002244@example.com,1 +2245,user_002245,user_002245@example.com,2 +2246,user_002246,user_002246@example.com, +2247,user_002247,user_002247@example.com,1 +2248,user_002248,user_002248@example.com,2 +2249,user_002249,user_002249@example.com, +2250,user_002250,user_002250@example.com,1 +2251,user_002251,user_002251@example.com,2 +2252,user_002252,user_002252@example.com, +2253,user_002253,user_002253@example.com,1 +2254,user_002254,user_002254@example.com,2 +2255,user_002255,user_002255@example.com, +2256,user_002256,user_002256@example.com,1 +2257,user_002257,user_002257@example.com,2 +2258,user_002258,user_002258@example.com, +2259,user_002259,user_002259@example.com,1 +2260,user_002260,user_002260@example.com,2 +2261,user_002261,user_002261@example.com, +2262,user_002262,user_002262@example.com,1 +2263,user_002263,user_002263@example.com,2 +2264,user_002264,user_002264@example.com, +2265,user_002265,user_002265@example.com,1 +2266,user_002266,user_002266@example.com,2 +2267,user_002267,user_002267@example.com, +2268,user_002268,user_002268@example.com,1 +2269,user_002269,user_002269@example.com,2 +2270,user_002270,user_002270@example.com, +2271,user_002271,user_002271@example.com,1 +2272,user_002272,user_002272@example.com,2 +2273,user_002273,user_002273@example.com, +2274,user_002274,user_002274@example.com,1 +2275,user_002275,user_002275@example.com,2 +2276,user_002276,user_002276@example.com, +2277,user_002277,user_002277@example.com,1 +2278,user_002278,user_002278@example.com,2 +2279,user_002279,user_002279@example.com, +2280,user_002280,user_002280@example.com,1 +2281,user_002281,user_002281@example.com,2 +2282,user_002282,user_002282@example.com, +2283,user_002283,user_002283@example.com,1 +2284,user_002284,user_002284@example.com,2 +2285,user_002285,user_002285@example.com, +2286,user_002286,user_002286@example.com,1 +2287,user_002287,user_002287@example.com,2 +2288,user_002288,user_002288@example.com, +2289,user_002289,user_002289@example.com,1 +2290,user_002290,user_002290@example.com,2 +2291,user_002291,user_002291@example.com, +2292,user_002292,user_002292@example.com,1 +2293,user_002293,user_002293@example.com,2 +2294,user_002294,user_002294@example.com, +2295,user_002295,user_002295@example.com,1 +2296,user_002296,user_002296@example.com,2 +2297,user_002297,user_002297@example.com, +2298,user_002298,user_002298@example.com,1 +2299,user_002299,user_002299@example.com,2 +2300,user_002300,user_002300@example.com, +2301,user_002301,user_002301@example.com,1 +2302,user_002302,user_002302@example.com,2 +2303,user_002303,user_002303@example.com, +2304,user_002304,user_002304@example.com,1 +2305,user_002305,user_002305@example.com,2 +2306,user_002306,user_002306@example.com, +2307,user_002307,user_002307@example.com,1 +2308,user_002308,user_002308@example.com,2 +2309,user_002309,user_002309@example.com, +2310,user_002310,user_002310@example.com,1 +2311,user_002311,user_002311@example.com,2 +2312,user_002312,user_002312@example.com, +2313,user_002313,user_002313@example.com,1 +2314,user_002314,user_002314@example.com,2 +2315,user_002315,user_002315@example.com, +2316,user_002316,user_002316@example.com,1 +2317,user_002317,user_002317@example.com,2 +2318,user_002318,user_002318@example.com, +2319,user_002319,user_002319@example.com,1 +2320,user_002320,user_002320@example.com,2 +2321,user_002321,user_002321@example.com, +2322,user_002322,user_002322@example.com,1 +2323,user_002323,user_002323@example.com,2 +2324,user_002324,user_002324@example.com, +2325,user_002325,user_002325@example.com,1 +2326,user_002326,user_002326@example.com,2 +2327,user_002327,user_002327@example.com, +2328,user_002328,user_002328@example.com,1 +2329,user_002329,user_002329@example.com,2 +2330,user_002330,user_002330@example.com, +2331,user_002331,user_002331@example.com,1 +2332,user_002332,user_002332@example.com,2 +2333,user_002333,user_002333@example.com, +2334,user_002334,user_002334@example.com,1 +2335,user_002335,user_002335@example.com,2 +2336,user_002336,user_002336@example.com, +2337,user_002337,user_002337@example.com,1 +2338,user_002338,user_002338@example.com,2 +2339,user_002339,user_002339@example.com, +2340,user_002340,user_002340@example.com,1 +2341,user_002341,user_002341@example.com,2 +2342,user_002342,user_002342@example.com, +2343,user_002343,user_002343@example.com,1 +2344,user_002344,user_002344@example.com,2 +2345,user_002345,user_002345@example.com, +2346,user_002346,user_002346@example.com,1 +2347,user_002347,user_002347@example.com,2 +2348,user_002348,user_002348@example.com, +2349,user_002349,user_002349@example.com,1 +2350,user_002350,user_002350@example.com,2 +2351,user_002351,user_002351@example.com, +2352,user_002352,user_002352@example.com,1 +2353,user_002353,user_002353@example.com,2 +2354,user_002354,user_002354@example.com, +2355,user_002355,user_002355@example.com,1 +2356,user_002356,user_002356@example.com,2 +2357,user_002357,user_002357@example.com, +2358,user_002358,user_002358@example.com,1 +2359,user_002359,user_002359@example.com,2 +2360,user_002360,user_002360@example.com, +2361,user_002361,user_002361@example.com,1 +2362,user_002362,user_002362@example.com,2 +2363,user_002363,user_002363@example.com, +2364,user_002364,user_002364@example.com,1 +2365,user_002365,user_002365@example.com,2 +2366,user_002366,user_002366@example.com, +2367,user_002367,user_002367@example.com,1 +2368,user_002368,user_002368@example.com,2 +2369,user_002369,user_002369@example.com, +2370,user_002370,user_002370@example.com,1 +2371,user_002371,user_002371@example.com,2 +2372,user_002372,user_002372@example.com, +2373,user_002373,user_002373@example.com,1 +2374,user_002374,user_002374@example.com,2 +2375,user_002375,user_002375@example.com, +2376,user_002376,user_002376@example.com,1 +2377,user_002377,user_002377@example.com,2 +2378,user_002378,user_002378@example.com, +2379,user_002379,user_002379@example.com,1 +2380,user_002380,user_002380@example.com,2 +2381,user_002381,user_002381@example.com, +2382,user_002382,user_002382@example.com,1 +2383,user_002383,user_002383@example.com,2 +2384,user_002384,user_002384@example.com, +2385,user_002385,user_002385@example.com,1 +2386,user_002386,user_002386@example.com,2 +2387,user_002387,user_002387@example.com, +2388,user_002388,user_002388@example.com,1 +2389,user_002389,user_002389@example.com,2 +2390,user_002390,user_002390@example.com, +2391,user_002391,user_002391@example.com,1 +2392,user_002392,user_002392@example.com,2 +2393,user_002393,user_002393@example.com, +2394,user_002394,user_002394@example.com,1 +2395,user_002395,user_002395@example.com,2 +2396,user_002396,user_002396@example.com, +2397,user_002397,user_002397@example.com,1 +2398,user_002398,user_002398@example.com,2 +2399,user_002399,user_002399@example.com, +2400,user_002400,user_002400@example.com,1 +2401,user_002401,user_002401@example.com,2 +2402,user_002402,user_002402@example.com, +2403,user_002403,user_002403@example.com,1 +2404,user_002404,user_002404@example.com,2 +2405,user_002405,user_002405@example.com, +2406,user_002406,user_002406@example.com,1 +2407,user_002407,user_002407@example.com,2 +2408,user_002408,user_002408@example.com, +2409,user_002409,user_002409@example.com,1 +2410,user_002410,user_002410@example.com,2 +2411,user_002411,user_002411@example.com, +2412,user_002412,user_002412@example.com,1 +2413,user_002413,user_002413@example.com,2 +2414,user_002414,user_002414@example.com, +2415,user_002415,user_002415@example.com,1 +2416,user_002416,user_002416@example.com,2 +2417,user_002417,user_002417@example.com, +2418,user_002418,user_002418@example.com,1 +2419,user_002419,user_002419@example.com,2 +2420,user_002420,user_002420@example.com, +2421,user_002421,user_002421@example.com,1 +2422,user_002422,user_002422@example.com,2 +2423,user_002423,user_002423@example.com, +2424,user_002424,user_002424@example.com,1 +2425,user_002425,user_002425@example.com,2 +2426,user_002426,user_002426@example.com, +2427,user_002427,user_002427@example.com,1 +2428,user_002428,user_002428@example.com,2 +2429,user_002429,user_002429@example.com, +2430,user_002430,user_002430@example.com,1 +2431,user_002431,user_002431@example.com,2 +2432,user_002432,user_002432@example.com, +2433,user_002433,user_002433@example.com,1 +2434,user_002434,user_002434@example.com,2 +2435,user_002435,user_002435@example.com, +2436,user_002436,user_002436@example.com,1 +2437,user_002437,user_002437@example.com,2 +2438,user_002438,user_002438@example.com, +2439,user_002439,user_002439@example.com,1 +2440,user_002440,user_002440@example.com,2 +2441,user_002441,user_002441@example.com, +2442,user_002442,user_002442@example.com,1 +2443,user_002443,user_002443@example.com,2 +2444,user_002444,user_002444@example.com, +2445,user_002445,user_002445@example.com,1 +2446,user_002446,user_002446@example.com,2 +2447,user_002447,user_002447@example.com, +2448,user_002448,user_002448@example.com,1 +2449,user_002449,user_002449@example.com,2 +2450,user_002450,user_002450@example.com, +2451,user_002451,user_002451@example.com,1 +2452,user_002452,user_002452@example.com,2 +2453,user_002453,user_002453@example.com, +2454,user_002454,user_002454@example.com,1 +2455,user_002455,user_002455@example.com,2 +2456,user_002456,user_002456@example.com, +2457,user_002457,user_002457@example.com,1 +2458,user_002458,user_002458@example.com,2 +2459,user_002459,user_002459@example.com, +2460,user_002460,user_002460@example.com,1 +2461,user_002461,user_002461@example.com,2 +2462,user_002462,user_002462@example.com, +2463,user_002463,user_002463@example.com,1 +2464,user_002464,user_002464@example.com,2 +2465,user_002465,user_002465@example.com, +2466,user_002466,user_002466@example.com,1 +2467,user_002467,user_002467@example.com,2 +2468,user_002468,user_002468@example.com, +2469,user_002469,user_002469@example.com,1 +2470,user_002470,user_002470@example.com,2 +2471,user_002471,user_002471@example.com, +2472,user_002472,user_002472@example.com,1 +2473,user_002473,user_002473@example.com,2 +2474,user_002474,user_002474@example.com, +2475,user_002475,user_002475@example.com,1 +2476,user_002476,user_002476@example.com,2 +2477,user_002477,user_002477@example.com, +2478,user_002478,user_002478@example.com,1 +2479,user_002479,user_002479@example.com,2 +2480,user_002480,user_002480@example.com, +2481,user_002481,user_002481@example.com,1 +2482,user_002482,user_002482@example.com,2 +2483,user_002483,user_002483@example.com, +2484,user_002484,user_002484@example.com,1 +2485,user_002485,user_002485@example.com,2 +2486,user_002486,user_002486@example.com, +2487,user_002487,user_002487@example.com,1 +2488,user_002488,user_002488@example.com,2 +2489,user_002489,user_002489@example.com, +2490,user_002490,user_002490@example.com,1 +2491,user_002491,user_002491@example.com,2 +2492,user_002492,user_002492@example.com, +2493,user_002493,user_002493@example.com,1 +2494,user_002494,user_002494@example.com,2 +2495,user_002495,user_002495@example.com, +2496,user_002496,user_002496@example.com,1 +2497,user_002497,user_002497@example.com,2 +2498,user_002498,user_002498@example.com, +2499,user_002499,user_002499@example.com,1 +2500,user_002500,user_002500@example.com,2 +2501,user_002501,user_002501@example.com, +2502,user_002502,user_002502@example.com,1 +2503,user_002503,user_002503@example.com,2 +2504,user_002504,user_002504@example.com, +2505,user_002505,user_002505@example.com,1 +2506,user_002506,user_002506@example.com,2 +2507,user_002507,user_002507@example.com, +2508,user_002508,user_002508@example.com,1 +2509,user_002509,user_002509@example.com,2 +2510,user_002510,user_002510@example.com, +2511,user_002511,user_002511@example.com,1 +2512,user_002512,user_002512@example.com,2 +2513,user_002513,user_002513@example.com, +2514,user_002514,user_002514@example.com,1 +2515,user_002515,user_002515@example.com,2 +2516,user_002516,user_002516@example.com, +2517,user_002517,user_002517@example.com,1 +2518,user_002518,user_002518@example.com,2 +2519,user_002519,user_002519@example.com, +2520,user_002520,user_002520@example.com,1 +2521,user_002521,user_002521@example.com,2 +2522,user_002522,user_002522@example.com, +2523,user_002523,user_002523@example.com,1 +2524,user_002524,user_002524@example.com,2 +2525,user_002525,user_002525@example.com, +2526,user_002526,user_002526@example.com,1 +2527,user_002527,user_002527@example.com,2 +2528,user_002528,user_002528@example.com, +2529,user_002529,user_002529@example.com,1 +2530,user_002530,user_002530@example.com,2 +2531,user_002531,user_002531@example.com, +2532,user_002532,user_002532@example.com,1 +2533,user_002533,user_002533@example.com,2 +2534,user_002534,user_002534@example.com, +2535,user_002535,user_002535@example.com,1 +2536,user_002536,user_002536@example.com,2 +2537,user_002537,user_002537@example.com, +2538,user_002538,user_002538@example.com,1 +2539,user_002539,user_002539@example.com,2 +2540,user_002540,user_002540@example.com, +2541,user_002541,user_002541@example.com,1 +2542,user_002542,user_002542@example.com,2 +2543,user_002543,user_002543@example.com, +2544,user_002544,user_002544@example.com,1 +2545,user_002545,user_002545@example.com,2 +2546,user_002546,user_002546@example.com, +2547,user_002547,user_002547@example.com,1 +2548,user_002548,user_002548@example.com,2 +2549,user_002549,user_002549@example.com, +2550,user_002550,user_002550@example.com,1 +2551,user_002551,user_002551@example.com,2 +2552,user_002552,user_002552@example.com, +2553,user_002553,user_002553@example.com,1 +2554,user_002554,user_002554@example.com,2 +2555,user_002555,user_002555@example.com, +2556,user_002556,user_002556@example.com,1 +2557,user_002557,user_002557@example.com,2 +2558,user_002558,user_002558@example.com, +2559,user_002559,user_002559@example.com,1 +2560,user_002560,user_002560@example.com,2 +2561,user_002561,user_002561@example.com, +2562,user_002562,user_002562@example.com,1 +2563,user_002563,user_002563@example.com,2 +2564,user_002564,user_002564@example.com, +2565,user_002565,user_002565@example.com,1 +2566,user_002566,user_002566@example.com,2 +2567,user_002567,user_002567@example.com, +2568,user_002568,user_002568@example.com,1 +2569,user_002569,user_002569@example.com,2 +2570,user_002570,user_002570@example.com, +2571,user_002571,user_002571@example.com,1 +2572,user_002572,user_002572@example.com,2 +2573,user_002573,user_002573@example.com, +2574,user_002574,user_002574@example.com,1 +2575,user_002575,user_002575@example.com,2 +2576,user_002576,user_002576@example.com, +2577,user_002577,user_002577@example.com,1 +2578,user_002578,user_002578@example.com,2 +2579,user_002579,user_002579@example.com, +2580,user_002580,user_002580@example.com,1 +2581,user_002581,user_002581@example.com,2 +2582,user_002582,user_002582@example.com, +2583,user_002583,user_002583@example.com,1 +2584,user_002584,user_002584@example.com,2 +2585,user_002585,user_002585@example.com, +2586,user_002586,user_002586@example.com,1 +2587,user_002587,user_002587@example.com,2 +2588,user_002588,user_002588@example.com, +2589,user_002589,user_002589@example.com,1 +2590,user_002590,user_002590@example.com,2 +2591,user_002591,user_002591@example.com, +2592,user_002592,user_002592@example.com,1 +2593,user_002593,user_002593@example.com,2 +2594,user_002594,user_002594@example.com, +2595,user_002595,user_002595@example.com,1 +2596,user_002596,user_002596@example.com,2 +2597,user_002597,user_002597@example.com, +2598,user_002598,user_002598@example.com,1 +2599,user_002599,user_002599@example.com,2 +2600,user_002600,user_002600@example.com, +2601,user_002601,user_002601@example.com,1 +2602,user_002602,user_002602@example.com,2 +2603,user_002603,user_002603@example.com, +2604,user_002604,user_002604@example.com,1 +2605,user_002605,user_002605@example.com,2 +2606,user_002606,user_002606@example.com, +2607,user_002607,user_002607@example.com,1 +2608,user_002608,user_002608@example.com,2 +2609,user_002609,user_002609@example.com, +2610,user_002610,user_002610@example.com,1 +2611,user_002611,user_002611@example.com,2 +2612,user_002612,user_002612@example.com, +2613,user_002613,user_002613@example.com,1 +2614,user_002614,user_002614@example.com,2 +2615,user_002615,user_002615@example.com, +2616,user_002616,user_002616@example.com,1 +2617,user_002617,user_002617@example.com,2 +2618,user_002618,user_002618@example.com, +2619,user_002619,user_002619@example.com,1 +2620,user_002620,user_002620@example.com,2 +2621,user_002621,user_002621@example.com, +2622,user_002622,user_002622@example.com,1 +2623,user_002623,user_002623@example.com,2 +2624,user_002624,user_002624@example.com, +2625,user_002625,user_002625@example.com,1 +2626,user_002626,user_002626@example.com,2 +2627,user_002627,user_002627@example.com, +2628,user_002628,user_002628@example.com,1 +2629,user_002629,user_002629@example.com,2 +2630,user_002630,user_002630@example.com, +2631,user_002631,user_002631@example.com,1 +2632,user_002632,user_002632@example.com,2 +2633,user_002633,user_002633@example.com, +2634,user_002634,user_002634@example.com,1 +2635,user_002635,user_002635@example.com,2 +2636,user_002636,user_002636@example.com, +2637,user_002637,user_002637@example.com,1 +2638,user_002638,user_002638@example.com,2 +2639,user_002639,user_002639@example.com, +2640,user_002640,user_002640@example.com,1 +2641,user_002641,user_002641@example.com,2 +2642,user_002642,user_002642@example.com, +2643,user_002643,user_002643@example.com,1 +2644,user_002644,user_002644@example.com,2 +2645,user_002645,user_002645@example.com, +2646,user_002646,user_002646@example.com,1 +2647,user_002647,user_002647@example.com,2 +2648,user_002648,user_002648@example.com, +2649,user_002649,user_002649@example.com,1 +2650,user_002650,user_002650@example.com,2 +2651,user_002651,user_002651@example.com, +2652,user_002652,user_002652@example.com,1 +2653,user_002653,user_002653@example.com,2 +2654,user_002654,user_002654@example.com, +2655,user_002655,user_002655@example.com,1 +2656,user_002656,user_002656@example.com,2 +2657,user_002657,user_002657@example.com, +2658,user_002658,user_002658@example.com,1 +2659,user_002659,user_002659@example.com,2 +2660,user_002660,user_002660@example.com, +2661,user_002661,user_002661@example.com,1 +2662,user_002662,user_002662@example.com,2 +2663,user_002663,user_002663@example.com, +2664,user_002664,user_002664@example.com,1 +2665,user_002665,user_002665@example.com,2 +2666,user_002666,user_002666@example.com, +2667,user_002667,user_002667@example.com,1 +2668,user_002668,user_002668@example.com,2 +2669,user_002669,user_002669@example.com, +2670,user_002670,user_002670@example.com,1 +2671,user_002671,user_002671@example.com,2 +2672,user_002672,user_002672@example.com, +2673,user_002673,user_002673@example.com,1 +2674,user_002674,user_002674@example.com,2 +2675,user_002675,user_002675@example.com, +2676,user_002676,user_002676@example.com,1 +2677,user_002677,user_002677@example.com,2 +2678,user_002678,user_002678@example.com, +2679,user_002679,user_002679@example.com,1 +2680,user_002680,user_002680@example.com,2 +2681,user_002681,user_002681@example.com, +2682,user_002682,user_002682@example.com,1 +2683,user_002683,user_002683@example.com,2 +2684,user_002684,user_002684@example.com, +2685,user_002685,user_002685@example.com,1 +2686,user_002686,user_002686@example.com,2 +2687,user_002687,user_002687@example.com, +2688,user_002688,user_002688@example.com,1 +2689,user_002689,user_002689@example.com,2 +2690,user_002690,user_002690@example.com, +2691,user_002691,user_002691@example.com,1 +2692,user_002692,user_002692@example.com,2 +2693,user_002693,user_002693@example.com, +2694,user_002694,user_002694@example.com,1 +2695,user_002695,user_002695@example.com,2 +2696,user_002696,user_002696@example.com, +2697,user_002697,user_002697@example.com,1 +2698,user_002698,user_002698@example.com,2 +2699,user_002699,user_002699@example.com, +2700,user_002700,user_002700@example.com,1 +2701,user_002701,user_002701@example.com,2 +2702,user_002702,user_002702@example.com, +2703,user_002703,user_002703@example.com,1 +2704,user_002704,user_002704@example.com,2 +2705,user_002705,user_002705@example.com, +2706,user_002706,user_002706@example.com,1 +2707,user_002707,user_002707@example.com,2 +2708,user_002708,user_002708@example.com, +2709,user_002709,user_002709@example.com,1 +2710,user_002710,user_002710@example.com,2 +2711,user_002711,user_002711@example.com, +2712,user_002712,user_002712@example.com,1 +2713,user_002713,user_002713@example.com,2 +2714,user_002714,user_002714@example.com, +2715,user_002715,user_002715@example.com,1 +2716,user_002716,user_002716@example.com,2 +2717,user_002717,user_002717@example.com, +2718,user_002718,user_002718@example.com,1 +2719,user_002719,user_002719@example.com,2 +2720,user_002720,user_002720@example.com, +2721,user_002721,user_002721@example.com,1 +2722,user_002722,user_002722@example.com,2 +2723,user_002723,user_002723@example.com, +2724,user_002724,user_002724@example.com,1 +2725,user_002725,user_002725@example.com,2 +2726,user_002726,user_002726@example.com, +2727,user_002727,user_002727@example.com,1 +2728,user_002728,user_002728@example.com,2 +2729,user_002729,user_002729@example.com, +2730,user_002730,user_002730@example.com,1 +2731,user_002731,user_002731@example.com,2 +2732,user_002732,user_002732@example.com, +2733,user_002733,user_002733@example.com,1 +2734,user_002734,user_002734@example.com,2 +2735,user_002735,user_002735@example.com, +2736,user_002736,user_002736@example.com,1 +2737,user_002737,user_002737@example.com,2 +2738,user_002738,user_002738@example.com, +2739,user_002739,user_002739@example.com,1 +2740,user_002740,user_002740@example.com,2 +2741,user_002741,user_002741@example.com, +2742,user_002742,user_002742@example.com,1 +2743,user_002743,user_002743@example.com,2 +2744,user_002744,user_002744@example.com, +2745,user_002745,user_002745@example.com,1 +2746,user_002746,user_002746@example.com,2 +2747,user_002747,user_002747@example.com, +2748,user_002748,user_002748@example.com,1 +2749,user_002749,user_002749@example.com,2 +2750,user_002750,user_002750@example.com, +2751,user_002751,user_002751@example.com,1 +2752,user_002752,user_002752@example.com,2 +2753,user_002753,user_002753@example.com, +2754,user_002754,user_002754@example.com,1 +2755,user_002755,user_002755@example.com,2 +2756,user_002756,user_002756@example.com, +2757,user_002757,user_002757@example.com,1 +2758,user_002758,user_002758@example.com,2 +2759,user_002759,user_002759@example.com, +2760,user_002760,user_002760@example.com,1 +2761,user_002761,user_002761@example.com,2 +2762,user_002762,user_002762@example.com, +2763,user_002763,user_002763@example.com,1 +2764,user_002764,user_002764@example.com,2 +2765,user_002765,user_002765@example.com, +2766,user_002766,user_002766@example.com,1 +2767,user_002767,user_002767@example.com,2 +2768,user_002768,user_002768@example.com, +2769,user_002769,user_002769@example.com,1 +2770,user_002770,user_002770@example.com,2 +2771,user_002771,user_002771@example.com, +2772,user_002772,user_002772@example.com,1 +2773,user_002773,user_002773@example.com,2 +2774,user_002774,user_002774@example.com, +2775,user_002775,user_002775@example.com,1 +2776,user_002776,user_002776@example.com,2 +2777,user_002777,user_002777@example.com, +2778,user_002778,user_002778@example.com,1 +2779,user_002779,user_002779@example.com,2 +2780,user_002780,user_002780@example.com, +2781,user_002781,user_002781@example.com,1 +2782,user_002782,user_002782@example.com,2 +2783,user_002783,user_002783@example.com, +2784,user_002784,user_002784@example.com,1 +2785,user_002785,user_002785@example.com,2 +2786,user_002786,user_002786@example.com, +2787,user_002787,user_002787@example.com,1 +2788,user_002788,user_002788@example.com,2 +2789,user_002789,user_002789@example.com, +2790,user_002790,user_002790@example.com,1 +2791,user_002791,user_002791@example.com,2 +2792,user_002792,user_002792@example.com, +2793,user_002793,user_002793@example.com,1 +2794,user_002794,user_002794@example.com,2 +2795,user_002795,user_002795@example.com, +2796,user_002796,user_002796@example.com,1 +2797,user_002797,user_002797@example.com,2 +2798,user_002798,user_002798@example.com, +2799,user_002799,user_002799@example.com,1 +2800,user_002800,user_002800@example.com,2 +2801,user_002801,user_002801@example.com, +2802,user_002802,user_002802@example.com,1 +2803,user_002803,user_002803@example.com,2 +2804,user_002804,user_002804@example.com, +2805,user_002805,user_002805@example.com,1 +2806,user_002806,user_002806@example.com,2 +2807,user_002807,user_002807@example.com, +2808,user_002808,user_002808@example.com,1 +2809,user_002809,user_002809@example.com,2 +2810,user_002810,user_002810@example.com, +2811,user_002811,user_002811@example.com,1 +2812,user_002812,user_002812@example.com,2 +2813,user_002813,user_002813@example.com, +2814,user_002814,user_002814@example.com,1 +2815,user_002815,user_002815@example.com,2 +2816,user_002816,user_002816@example.com, +2817,user_002817,user_002817@example.com,1 +2818,user_002818,user_002818@example.com,2 +2819,user_002819,user_002819@example.com, +2820,user_002820,user_002820@example.com,1 +2821,user_002821,user_002821@example.com,2 +2822,user_002822,user_002822@example.com, +2823,user_002823,user_002823@example.com,1 +2824,user_002824,user_002824@example.com,2 +2825,user_002825,user_002825@example.com, +2826,user_002826,user_002826@example.com,1 +2827,user_002827,user_002827@example.com,2 +2828,user_002828,user_002828@example.com, +2829,user_002829,user_002829@example.com,1 +2830,user_002830,user_002830@example.com,2 +2831,user_002831,user_002831@example.com, +2832,user_002832,user_002832@example.com,1 +2833,user_002833,user_002833@example.com,2 +2834,user_002834,user_002834@example.com, +2835,user_002835,user_002835@example.com,1 +2836,user_002836,user_002836@example.com,2 +2837,user_002837,user_002837@example.com, +2838,user_002838,user_002838@example.com,1 +2839,user_002839,user_002839@example.com,2 +2840,user_002840,user_002840@example.com, +2841,user_002841,user_002841@example.com,1 +2842,user_002842,user_002842@example.com,2 +2843,user_002843,user_002843@example.com, +2844,user_002844,user_002844@example.com,1 +2845,user_002845,user_002845@example.com,2 +2846,user_002846,user_002846@example.com, +2847,user_002847,user_002847@example.com,1 +2848,user_002848,user_002848@example.com,2 +2849,user_002849,user_002849@example.com, +2850,user_002850,user_002850@example.com,1 +2851,user_002851,user_002851@example.com,2 +2852,user_002852,user_002852@example.com, +2853,user_002853,user_002853@example.com,1 +2854,user_002854,user_002854@example.com,2 +2855,user_002855,user_002855@example.com, +2856,user_002856,user_002856@example.com,1 +2857,user_002857,user_002857@example.com,2 +2858,user_002858,user_002858@example.com, +2859,user_002859,user_002859@example.com,1 +2860,user_002860,user_002860@example.com,2 +2861,user_002861,user_002861@example.com, +2862,user_002862,user_002862@example.com,1 +2863,user_002863,user_002863@example.com,2 +2864,user_002864,user_002864@example.com, +2865,user_002865,user_002865@example.com,1 +2866,user_002866,user_002866@example.com,2 +2867,user_002867,user_002867@example.com, +2868,user_002868,user_002868@example.com,1 +2869,user_002869,user_002869@example.com,2 +2870,user_002870,user_002870@example.com, +2871,user_002871,user_002871@example.com,1 +2872,user_002872,user_002872@example.com,2 +2873,user_002873,user_002873@example.com, +2874,user_002874,user_002874@example.com,1 +2875,user_002875,user_002875@example.com,2 +2876,user_002876,user_002876@example.com, +2877,user_002877,user_002877@example.com,1 +2878,user_002878,user_002878@example.com,2 +2879,user_002879,user_002879@example.com, +2880,user_002880,user_002880@example.com,1 +2881,user_002881,user_002881@example.com,2 +2882,user_002882,user_002882@example.com, +2883,user_002883,user_002883@example.com,1 +2884,user_002884,user_002884@example.com,2 +2885,user_002885,user_002885@example.com, +2886,user_002886,user_002886@example.com,1 +2887,user_002887,user_002887@example.com,2 +2888,user_002888,user_002888@example.com, +2889,user_002889,user_002889@example.com,1 +2890,user_002890,user_002890@example.com,2 +2891,user_002891,user_002891@example.com, +2892,user_002892,user_002892@example.com,1 +2893,user_002893,user_002893@example.com,2 +2894,user_002894,user_002894@example.com, +2895,user_002895,user_002895@example.com,1 +2896,user_002896,user_002896@example.com,2 +2897,user_002897,user_002897@example.com, +2898,user_002898,user_002898@example.com,1 +2899,user_002899,user_002899@example.com,2 +2900,user_002900,user_002900@example.com, +2901,user_002901,user_002901@example.com,1 +2902,user_002902,user_002902@example.com,2 +2903,user_002903,user_002903@example.com, +2904,user_002904,user_002904@example.com,1 +2905,user_002905,user_002905@example.com,2 +2906,user_002906,user_002906@example.com, +2907,user_002907,user_002907@example.com,1 +2908,user_002908,user_002908@example.com,2 +2909,user_002909,user_002909@example.com, +2910,user_002910,user_002910@example.com,1 +2911,user_002911,user_002911@example.com,2 +2912,user_002912,user_002912@example.com, +2913,user_002913,user_002913@example.com,1 +2914,user_002914,user_002914@example.com,2 +2915,user_002915,user_002915@example.com, +2916,user_002916,user_002916@example.com,1 +2917,user_002917,user_002917@example.com,2 +2918,user_002918,user_002918@example.com, +2919,user_002919,user_002919@example.com,1 +2920,user_002920,user_002920@example.com,2 +2921,user_002921,user_002921@example.com, +2922,user_002922,user_002922@example.com,1 +2923,user_002923,user_002923@example.com,2 +2924,user_002924,user_002924@example.com, +2925,user_002925,user_002925@example.com,1 +2926,user_002926,user_002926@example.com,2 +2927,user_002927,user_002927@example.com, +2928,user_002928,user_002928@example.com,1 +2929,user_002929,user_002929@example.com,2 +2930,user_002930,user_002930@example.com, +2931,user_002931,user_002931@example.com,1 +2932,user_002932,user_002932@example.com,2 +2933,user_002933,user_002933@example.com, +2934,user_002934,user_002934@example.com,1 +2935,user_002935,user_002935@example.com,2 +2936,user_002936,user_002936@example.com, +2937,user_002937,user_002937@example.com,1 +2938,user_002938,user_002938@example.com,2 +2939,user_002939,user_002939@example.com, +2940,user_002940,user_002940@example.com,1 +2941,user_002941,user_002941@example.com,2 +2942,user_002942,user_002942@example.com, +2943,user_002943,user_002943@example.com,1 +2944,user_002944,user_002944@example.com,2 +2945,user_002945,user_002945@example.com, +2946,user_002946,user_002946@example.com,1 +2947,user_002947,user_002947@example.com,2 +2948,user_002948,user_002948@example.com, +2949,user_002949,user_002949@example.com,1 +2950,user_002950,user_002950@example.com,2 +2951,user_002951,user_002951@example.com, +2952,user_002952,user_002952@example.com,1 +2953,user_002953,user_002953@example.com,2 +2954,user_002954,user_002954@example.com, +2955,user_002955,user_002955@example.com,1 +2956,user_002956,user_002956@example.com,2 +2957,user_002957,user_002957@example.com, +2958,user_002958,user_002958@example.com,1 +2959,user_002959,user_002959@example.com,2 +2960,user_002960,user_002960@example.com, +2961,user_002961,user_002961@example.com,1 +2962,user_002962,user_002962@example.com,2 +2963,user_002963,user_002963@example.com, +2964,user_002964,user_002964@example.com,1 +2965,user_002965,user_002965@example.com,2 +2966,user_002966,user_002966@example.com, +2967,user_002967,user_002967@example.com,1 +2968,user_002968,user_002968@example.com,2 +2969,user_002969,user_002969@example.com, +2970,user_002970,user_002970@example.com,1 +2971,user_002971,user_002971@example.com,2 +2972,user_002972,user_002972@example.com, +2973,user_002973,user_002973@example.com,1 +2974,user_002974,user_002974@example.com,2 +2975,user_002975,user_002975@example.com, +2976,user_002976,user_002976@example.com,1 +2977,user_002977,user_002977@example.com,2 +2978,user_002978,user_002978@example.com, +2979,user_002979,user_002979@example.com,1 +2980,user_002980,user_002980@example.com,2 +2981,user_002981,user_002981@example.com, +2982,user_002982,user_002982@example.com,1 +2983,user_002983,user_002983@example.com,2 +2984,user_002984,user_002984@example.com, +2985,user_002985,user_002985@example.com,1 +2986,user_002986,user_002986@example.com,2 +2987,user_002987,user_002987@example.com, +2988,user_002988,user_002988@example.com,1 +2989,user_002989,user_002989@example.com,2 +2990,user_002990,user_002990@example.com, +2991,user_002991,user_002991@example.com,1 +2992,user_002992,user_002992@example.com,2 +2993,user_002993,user_002993@example.com, +2994,user_002994,user_002994@example.com,1 +2995,user_002995,user_002995@example.com,2 +2996,user_002996,user_002996@example.com, +2997,user_002997,user_002997@example.com,1 +2998,user_002998,user_002998@example.com,2 +2999,user_002999,user_002999@example.com, +3000,user_003000,user_003000@example.com,1 +3001,user_003001,user_003001@example.com,2 +3002,user_003002,user_003002@example.com, +3003,user_003003,user_003003@example.com,1 +3004,user_003004,user_003004@example.com,2 +3005,user_003005,user_003005@example.com, +3006,user_003006,user_003006@example.com,1 +3007,user_003007,user_003007@example.com,2 +3008,user_003008,user_003008@example.com, +3009,user_003009,user_003009@example.com,1 +3010,user_003010,user_003010@example.com,2 +3011,user_003011,user_003011@example.com, +3012,user_003012,user_003012@example.com,1 +3013,user_003013,user_003013@example.com,2 +3014,user_003014,user_003014@example.com, +3015,user_003015,user_003015@example.com,1 +3016,user_003016,user_003016@example.com,2 +3017,user_003017,user_003017@example.com, +3018,user_003018,user_003018@example.com,1 +3019,user_003019,user_003019@example.com,2 +3020,user_003020,user_003020@example.com, +3021,user_003021,user_003021@example.com,1 +3022,user_003022,user_003022@example.com,2 +3023,user_003023,user_003023@example.com, +3024,user_003024,user_003024@example.com,1 +3025,user_003025,user_003025@example.com,2 +3026,user_003026,user_003026@example.com, +3027,user_003027,user_003027@example.com,1 +3028,user_003028,user_003028@example.com,2 +3029,user_003029,user_003029@example.com, +3030,user_003030,user_003030@example.com,1 +3031,user_003031,user_003031@example.com,2 +3032,user_003032,user_003032@example.com, +3033,user_003033,user_003033@example.com,1 +3034,user_003034,user_003034@example.com,2 +3035,user_003035,user_003035@example.com, +3036,user_003036,user_003036@example.com,1 +3037,user_003037,user_003037@example.com,2 +3038,user_003038,user_003038@example.com, +3039,user_003039,user_003039@example.com,1 +3040,user_003040,user_003040@example.com,2 +3041,user_003041,user_003041@example.com, +3042,user_003042,user_003042@example.com,1 +3043,user_003043,user_003043@example.com,2 +3044,user_003044,user_003044@example.com, +3045,user_003045,user_003045@example.com,1 +3046,user_003046,user_003046@example.com,2 +3047,user_003047,user_003047@example.com, +3048,user_003048,user_003048@example.com,1 +3049,user_003049,user_003049@example.com,2 +3050,user_003050,user_003050@example.com, +3051,user_003051,user_003051@example.com,1 +3052,user_003052,user_003052@example.com,2 +3053,user_003053,user_003053@example.com, +3054,user_003054,user_003054@example.com,1 +3055,user_003055,user_003055@example.com,2 +3056,user_003056,user_003056@example.com, +3057,user_003057,user_003057@example.com,1 +3058,user_003058,user_003058@example.com,2 +3059,user_003059,user_003059@example.com, +3060,user_003060,user_003060@example.com,1 +3061,user_003061,user_003061@example.com,2 +3062,user_003062,user_003062@example.com, +3063,user_003063,user_003063@example.com,1 +3064,user_003064,user_003064@example.com,2 +3065,user_003065,user_003065@example.com, +3066,user_003066,user_003066@example.com,1 +3067,user_003067,user_003067@example.com,2 +3068,user_003068,user_003068@example.com, +3069,user_003069,user_003069@example.com,1 +3070,user_003070,user_003070@example.com,2 +3071,user_003071,user_003071@example.com, +3072,user_003072,user_003072@example.com,1 +3073,user_003073,user_003073@example.com,2 +3074,user_003074,user_003074@example.com, +3075,user_003075,user_003075@example.com,1 +3076,user_003076,user_003076@example.com,2 +3077,user_003077,user_003077@example.com, +3078,user_003078,user_003078@example.com,1 +3079,user_003079,user_003079@example.com,2 +3080,user_003080,user_003080@example.com, +3081,user_003081,user_003081@example.com,1 +3082,user_003082,user_003082@example.com,2 +3083,user_003083,user_003083@example.com, +3084,user_003084,user_003084@example.com,1 +3085,user_003085,user_003085@example.com,2 +3086,user_003086,user_003086@example.com, +3087,user_003087,user_003087@example.com,1 +3088,user_003088,user_003088@example.com,2 +3089,user_003089,user_003089@example.com, +3090,user_003090,user_003090@example.com,1 +3091,user_003091,user_003091@example.com,2 +3092,user_003092,user_003092@example.com, +3093,user_003093,user_003093@example.com,1 +3094,user_003094,user_003094@example.com,2 +3095,user_003095,user_003095@example.com, +3096,user_003096,user_003096@example.com,1 +3097,user_003097,user_003097@example.com,2 +3098,user_003098,user_003098@example.com, +3099,user_003099,user_003099@example.com,1 +3100,user_003100,user_003100@example.com,2 +3101,user_003101,user_003101@example.com, +3102,user_003102,user_003102@example.com,1 +3103,user_003103,user_003103@example.com,2 +3104,user_003104,user_003104@example.com, +3105,user_003105,user_003105@example.com,1 +3106,user_003106,user_003106@example.com,2 +3107,user_003107,user_003107@example.com, +3108,user_003108,user_003108@example.com,1 +3109,user_003109,user_003109@example.com,2 +3110,user_003110,user_003110@example.com, +3111,user_003111,user_003111@example.com,1 +3112,user_003112,user_003112@example.com,2 +3113,user_003113,user_003113@example.com, +3114,user_003114,user_003114@example.com,1 +3115,user_003115,user_003115@example.com,2 +3116,user_003116,user_003116@example.com, +3117,user_003117,user_003117@example.com,1 +3118,user_003118,user_003118@example.com,2 +3119,user_003119,user_003119@example.com, +3120,user_003120,user_003120@example.com,1 +3121,user_003121,user_003121@example.com,2 +3122,user_003122,user_003122@example.com, +3123,user_003123,user_003123@example.com,1 +3124,user_003124,user_003124@example.com,2 +3125,user_003125,user_003125@example.com, +3126,user_003126,user_003126@example.com,1 +3127,user_003127,user_003127@example.com,2 +3128,user_003128,user_003128@example.com, +3129,user_003129,user_003129@example.com,1 +3130,user_003130,user_003130@example.com,2 +3131,user_003131,user_003131@example.com, +3132,user_003132,user_003132@example.com,1 +3133,user_003133,user_003133@example.com,2 +3134,user_003134,user_003134@example.com, +3135,user_003135,user_003135@example.com,1 +3136,user_003136,user_003136@example.com,2 +3137,user_003137,user_003137@example.com, +3138,user_003138,user_003138@example.com,1 +3139,user_003139,user_003139@example.com,2 +3140,user_003140,user_003140@example.com, +3141,user_003141,user_003141@example.com,1 +3142,user_003142,user_003142@example.com,2 +3143,user_003143,user_003143@example.com, +3144,user_003144,user_003144@example.com,1 +3145,user_003145,user_003145@example.com,2 +3146,user_003146,user_003146@example.com, +3147,user_003147,user_003147@example.com,1 +3148,user_003148,user_003148@example.com,2 +3149,user_003149,user_003149@example.com, +3150,user_003150,user_003150@example.com,1 +3151,user_003151,user_003151@example.com,2 +3152,user_003152,user_003152@example.com, +3153,user_003153,user_003153@example.com,1 +3154,user_003154,user_003154@example.com,2 +3155,user_003155,user_003155@example.com, +3156,user_003156,user_003156@example.com,1 +3157,user_003157,user_003157@example.com,2 +3158,user_003158,user_003158@example.com, +3159,user_003159,user_003159@example.com,1 +3160,user_003160,user_003160@example.com,2 +3161,user_003161,user_003161@example.com, +3162,user_003162,user_003162@example.com,1 +3163,user_003163,user_003163@example.com,2 +3164,user_003164,user_003164@example.com, +3165,user_003165,user_003165@example.com,1 +3166,user_003166,user_003166@example.com,2 +3167,user_003167,user_003167@example.com, +3168,user_003168,user_003168@example.com,1 +3169,user_003169,user_003169@example.com,2 +3170,user_003170,user_003170@example.com, +3171,user_003171,user_003171@example.com,1 +3172,user_003172,user_003172@example.com,2 +3173,user_003173,user_003173@example.com, +3174,user_003174,user_003174@example.com,1 +3175,user_003175,user_003175@example.com,2 +3176,user_003176,user_003176@example.com, +3177,user_003177,user_003177@example.com,1 +3178,user_003178,user_003178@example.com,2 +3179,user_003179,user_003179@example.com, +3180,user_003180,user_003180@example.com,1 +3181,user_003181,user_003181@example.com,2 +3182,user_003182,user_003182@example.com, +3183,user_003183,user_003183@example.com,1 +3184,user_003184,user_003184@example.com,2 +3185,user_003185,user_003185@example.com, +3186,user_003186,user_003186@example.com,1 +3187,user_003187,user_003187@example.com,2 +3188,user_003188,user_003188@example.com, +3189,user_003189,user_003189@example.com,1 +3190,user_003190,user_003190@example.com,2 +3191,user_003191,user_003191@example.com, +3192,user_003192,user_003192@example.com,1 +3193,user_003193,user_003193@example.com,2 +3194,user_003194,user_003194@example.com, +3195,user_003195,user_003195@example.com,1 +3196,user_003196,user_003196@example.com,2 +3197,user_003197,user_003197@example.com, +3198,user_003198,user_003198@example.com,1 +3199,user_003199,user_003199@example.com,2 +3200,user_003200,user_003200@example.com, +3201,user_003201,user_003201@example.com,1 +3202,user_003202,user_003202@example.com,2 +3203,user_003203,user_003203@example.com, +3204,user_003204,user_003204@example.com,1 +3205,user_003205,user_003205@example.com,2 +3206,user_003206,user_003206@example.com, +3207,user_003207,user_003207@example.com,1 +3208,user_003208,user_003208@example.com,2 +3209,user_003209,user_003209@example.com, +3210,user_003210,user_003210@example.com,1 +3211,user_003211,user_003211@example.com,2 +3212,user_003212,user_003212@example.com, +3213,user_003213,user_003213@example.com,1 +3214,user_003214,user_003214@example.com,2 +3215,user_003215,user_003215@example.com, +3216,user_003216,user_003216@example.com,1 +3217,user_003217,user_003217@example.com,2 +3218,user_003218,user_003218@example.com, +3219,user_003219,user_003219@example.com,1 +3220,user_003220,user_003220@example.com,2 +3221,user_003221,user_003221@example.com, +3222,user_003222,user_003222@example.com,1 +3223,user_003223,user_003223@example.com,2 +3224,user_003224,user_003224@example.com, +3225,user_003225,user_003225@example.com,1 +3226,user_003226,user_003226@example.com,2 +3227,user_003227,user_003227@example.com, +3228,user_003228,user_003228@example.com,1 +3229,user_003229,user_003229@example.com,2 +3230,user_003230,user_003230@example.com, +3231,user_003231,user_003231@example.com,1 +3232,user_003232,user_003232@example.com,2 +3233,user_003233,user_003233@example.com, +3234,user_003234,user_003234@example.com,1 +3235,user_003235,user_003235@example.com,2 +3236,user_003236,user_003236@example.com, +3237,user_003237,user_003237@example.com,1 +3238,user_003238,user_003238@example.com,2 +3239,user_003239,user_003239@example.com, +3240,user_003240,user_003240@example.com,1 +3241,user_003241,user_003241@example.com,2 +3242,user_003242,user_003242@example.com, +3243,user_003243,user_003243@example.com,1 +3244,user_003244,user_003244@example.com,2 +3245,user_003245,user_003245@example.com, +3246,user_003246,user_003246@example.com,1 +3247,user_003247,user_003247@example.com,2 +3248,user_003248,user_003248@example.com, +3249,user_003249,user_003249@example.com,1 +3250,user_003250,user_003250@example.com,2 +3251,user_003251,user_003251@example.com, +3252,user_003252,user_003252@example.com,1 +3253,user_003253,user_003253@example.com,2 +3254,user_003254,user_003254@example.com, +3255,user_003255,user_003255@example.com,1 +3256,user_003256,user_003256@example.com,2 +3257,user_003257,user_003257@example.com, +3258,user_003258,user_003258@example.com,1 +3259,user_003259,user_003259@example.com,2 +3260,user_003260,user_003260@example.com, +3261,user_003261,user_003261@example.com,1 +3262,user_003262,user_003262@example.com,2 +3263,user_003263,user_003263@example.com, +3264,user_003264,user_003264@example.com,1 +3265,user_003265,user_003265@example.com,2 +3266,user_003266,user_003266@example.com, +3267,user_003267,user_003267@example.com,1 +3268,user_003268,user_003268@example.com,2 +3269,user_003269,user_003269@example.com, +3270,user_003270,user_003270@example.com,1 +3271,user_003271,user_003271@example.com,2 +3272,user_003272,user_003272@example.com, +3273,user_003273,user_003273@example.com,1 +3274,user_003274,user_003274@example.com,2 +3275,user_003275,user_003275@example.com, +3276,user_003276,user_003276@example.com,1 +3277,user_003277,user_003277@example.com,2 +3278,user_003278,user_003278@example.com, +3279,user_003279,user_003279@example.com,1 +3280,user_003280,user_003280@example.com,2 +3281,user_003281,user_003281@example.com, +3282,user_003282,user_003282@example.com,1 +3283,user_003283,user_003283@example.com,2 +3284,user_003284,user_003284@example.com, +3285,user_003285,user_003285@example.com,1 +3286,user_003286,user_003286@example.com,2 +3287,user_003287,user_003287@example.com, +3288,user_003288,user_003288@example.com,1 +3289,user_003289,user_003289@example.com,2 +3290,user_003290,user_003290@example.com, +3291,user_003291,user_003291@example.com,1 +3292,user_003292,user_003292@example.com,2 +3293,user_003293,user_003293@example.com, +3294,user_003294,user_003294@example.com,1 +3295,user_003295,user_003295@example.com,2 +3296,user_003296,user_003296@example.com, +3297,user_003297,user_003297@example.com,1 +3298,user_003298,user_003298@example.com,2 +3299,user_003299,user_003299@example.com, +3300,user_003300,user_003300@example.com,1 +3301,user_003301,user_003301@example.com,2 +3302,user_003302,user_003302@example.com, +3303,user_003303,user_003303@example.com,1 +3304,user_003304,user_003304@example.com,2 +3305,user_003305,user_003305@example.com, +3306,user_003306,user_003306@example.com,1 +3307,user_003307,user_003307@example.com,2 +3308,user_003308,user_003308@example.com, +3309,user_003309,user_003309@example.com,1 +3310,user_003310,user_003310@example.com,2 +3311,user_003311,user_003311@example.com, +3312,user_003312,user_003312@example.com,1 +3313,user_003313,user_003313@example.com,2 +3314,user_003314,user_003314@example.com, +3315,user_003315,user_003315@example.com,1 +3316,user_003316,user_003316@example.com,2 +3317,user_003317,user_003317@example.com, +3318,user_003318,user_003318@example.com,1 +3319,user_003319,user_003319@example.com,2 +3320,user_003320,user_003320@example.com, +3321,user_003321,user_003321@example.com,1 +3322,user_003322,user_003322@example.com,2 +3323,user_003323,user_003323@example.com, +3324,user_003324,user_003324@example.com,1 +3325,user_003325,user_003325@example.com,2 +3326,user_003326,user_003326@example.com, +3327,user_003327,user_003327@example.com,1 +3328,user_003328,user_003328@example.com,2 +3329,user_003329,user_003329@example.com, +3330,user_003330,user_003330@example.com,1 +3331,user_003331,user_003331@example.com,2 +3332,user_003332,user_003332@example.com, +3333,user_003333,user_003333@example.com,1 +3334,user_003334,user_003334@example.com,2 +3335,user_003335,user_003335@example.com, +3336,user_003336,user_003336@example.com,1 +3337,user_003337,user_003337@example.com,2 +3338,user_003338,user_003338@example.com, +3339,user_003339,user_003339@example.com,1 +3340,user_003340,user_003340@example.com,2 +3341,user_003341,user_003341@example.com, +3342,user_003342,user_003342@example.com,1 +3343,user_003343,user_003343@example.com,2 +3344,user_003344,user_003344@example.com, +3345,user_003345,user_003345@example.com,1 +3346,user_003346,user_003346@example.com,2 +3347,user_003347,user_003347@example.com, +3348,user_003348,user_003348@example.com,1 +3349,user_003349,user_003349@example.com,2 +3350,user_003350,user_003350@example.com, +3351,user_003351,user_003351@example.com,1 +3352,user_003352,user_003352@example.com,2 +3353,user_003353,user_003353@example.com, +3354,user_003354,user_003354@example.com,1 +3355,user_003355,user_003355@example.com,2 +3356,user_003356,user_003356@example.com, +3357,user_003357,user_003357@example.com,1 +3358,user_003358,user_003358@example.com,2 +3359,user_003359,user_003359@example.com, +3360,user_003360,user_003360@example.com,1 +3361,user_003361,user_003361@example.com,2 +3362,user_003362,user_003362@example.com, +3363,user_003363,user_003363@example.com,1 +3364,user_003364,user_003364@example.com,2 +3365,user_003365,user_003365@example.com, +3366,user_003366,user_003366@example.com,1 +3367,user_003367,user_003367@example.com,2 +3368,user_003368,user_003368@example.com, +3369,user_003369,user_003369@example.com,1 +3370,user_003370,user_003370@example.com,2 +3371,user_003371,user_003371@example.com, +3372,user_003372,user_003372@example.com,1 +3373,user_003373,user_003373@example.com,2 +3374,user_003374,user_003374@example.com, +3375,user_003375,user_003375@example.com,1 +3376,user_003376,user_003376@example.com,2 +3377,user_003377,user_003377@example.com, +3378,user_003378,user_003378@example.com,1 +3379,user_003379,user_003379@example.com,2 +3380,user_003380,user_003380@example.com, +3381,user_003381,user_003381@example.com,1 +3382,user_003382,user_003382@example.com,2 +3383,user_003383,user_003383@example.com, +3384,user_003384,user_003384@example.com,1 +3385,user_003385,user_003385@example.com,2 +3386,user_003386,user_003386@example.com, +3387,user_003387,user_003387@example.com,1 +3388,user_003388,user_003388@example.com,2 +3389,user_003389,user_003389@example.com, +3390,user_003390,user_003390@example.com,1 +3391,user_003391,user_003391@example.com,2 +3392,user_003392,user_003392@example.com, +3393,user_003393,user_003393@example.com,1 +3394,user_003394,user_003394@example.com,2 +3395,user_003395,user_003395@example.com, +3396,user_003396,user_003396@example.com,1 +3397,user_003397,user_003397@example.com,2 +3398,user_003398,user_003398@example.com, +3399,user_003399,user_003399@example.com,1 +3400,user_003400,user_003400@example.com,2 +3401,user_003401,user_003401@example.com, +3402,user_003402,user_003402@example.com,1 +3403,user_003403,user_003403@example.com,2 +3404,user_003404,user_003404@example.com, +3405,user_003405,user_003405@example.com,1 +3406,user_003406,user_003406@example.com,2 +3407,user_003407,user_003407@example.com, +3408,user_003408,user_003408@example.com,1 +3409,user_003409,user_003409@example.com,2 +3410,user_003410,user_003410@example.com, +3411,user_003411,user_003411@example.com,1 +3412,user_003412,user_003412@example.com,2 +3413,user_003413,user_003413@example.com, +3414,user_003414,user_003414@example.com,1 +3415,user_003415,user_003415@example.com,2 +3416,user_003416,user_003416@example.com, +3417,user_003417,user_003417@example.com,1 +3418,user_003418,user_003418@example.com,2 +3419,user_003419,user_003419@example.com, +3420,user_003420,user_003420@example.com,1 +3421,user_003421,user_003421@example.com,2 +3422,user_003422,user_003422@example.com, +3423,user_003423,user_003423@example.com,1 +3424,user_003424,user_003424@example.com,2 +3425,user_003425,user_003425@example.com, +3426,user_003426,user_003426@example.com,1 +3427,user_003427,user_003427@example.com,2 +3428,user_003428,user_003428@example.com, +3429,user_003429,user_003429@example.com,1 +3430,user_003430,user_003430@example.com,2 +3431,user_003431,user_003431@example.com, +3432,user_003432,user_003432@example.com,1 +3433,user_003433,user_003433@example.com,2 +3434,user_003434,user_003434@example.com, +3435,user_003435,user_003435@example.com,1 +3436,user_003436,user_003436@example.com,2 +3437,user_003437,user_003437@example.com, +3438,user_003438,user_003438@example.com,1 +3439,user_003439,user_003439@example.com,2 +3440,user_003440,user_003440@example.com, +3441,user_003441,user_003441@example.com,1 +3442,user_003442,user_003442@example.com,2 +3443,user_003443,user_003443@example.com, +3444,user_003444,user_003444@example.com,1 +3445,user_003445,user_003445@example.com,2 +3446,user_003446,user_003446@example.com, +3447,user_003447,user_003447@example.com,1 +3448,user_003448,user_003448@example.com,2 +3449,user_003449,user_003449@example.com, +3450,user_003450,user_003450@example.com,1 +3451,user_003451,user_003451@example.com,2 +3452,user_003452,user_003452@example.com, +3453,user_003453,user_003453@example.com,1 +3454,user_003454,user_003454@example.com,2 +3455,user_003455,user_003455@example.com, +3456,user_003456,user_003456@example.com,1 +3457,user_003457,user_003457@example.com,2 +3458,user_003458,user_003458@example.com, +3459,user_003459,user_003459@example.com,1 +3460,user_003460,user_003460@example.com,2 +3461,user_003461,user_003461@example.com, +3462,user_003462,user_003462@example.com,1 +3463,user_003463,user_003463@example.com,2 +3464,user_003464,user_003464@example.com, +3465,user_003465,user_003465@example.com,1 +3466,user_003466,user_003466@example.com,2 +3467,user_003467,user_003467@example.com, +3468,user_003468,user_003468@example.com,1 +3469,user_003469,user_003469@example.com,2 +3470,user_003470,user_003470@example.com, +3471,user_003471,user_003471@example.com,1 +3472,user_003472,user_003472@example.com,2 +3473,user_003473,user_003473@example.com, +3474,user_003474,user_003474@example.com,1 +3475,user_003475,user_003475@example.com,2 +3476,user_003476,user_003476@example.com, +3477,user_003477,user_003477@example.com,1 +3478,user_003478,user_003478@example.com,2 +3479,user_003479,user_003479@example.com, +3480,user_003480,user_003480@example.com,1 +3481,user_003481,user_003481@example.com,2 +3482,user_003482,user_003482@example.com, +3483,user_003483,user_003483@example.com,1 +3484,user_003484,user_003484@example.com,2 +3485,user_003485,user_003485@example.com, +3486,user_003486,user_003486@example.com,1 +3487,user_003487,user_003487@example.com,2 +3488,user_003488,user_003488@example.com, +3489,user_003489,user_003489@example.com,1 +3490,user_003490,user_003490@example.com,2 +3491,user_003491,user_003491@example.com, +3492,user_003492,user_003492@example.com,1 +3493,user_003493,user_003493@example.com,2 +3494,user_003494,user_003494@example.com, +3495,user_003495,user_003495@example.com,1 +3496,user_003496,user_003496@example.com,2 +3497,user_003497,user_003497@example.com, +3498,user_003498,user_003498@example.com,1 +3499,user_003499,user_003499@example.com,2 +3500,user_003500,user_003500@example.com, +3501,user_003501,user_003501@example.com,1 +3502,user_003502,user_003502@example.com,2 +3503,user_003503,user_003503@example.com, +3504,user_003504,user_003504@example.com,1 +3505,user_003505,user_003505@example.com,2 +3506,user_003506,user_003506@example.com, +3507,user_003507,user_003507@example.com,1 +3508,user_003508,user_003508@example.com,2 +3509,user_003509,user_003509@example.com, +3510,user_003510,user_003510@example.com,1 +3511,user_003511,user_003511@example.com,2 +3512,user_003512,user_003512@example.com, +3513,user_003513,user_003513@example.com,1 +3514,user_003514,user_003514@example.com,2 +3515,user_003515,user_003515@example.com, +3516,user_003516,user_003516@example.com,1 +3517,user_003517,user_003517@example.com,2 +3518,user_003518,user_003518@example.com, +3519,user_003519,user_003519@example.com,1 +3520,user_003520,user_003520@example.com,2 +3521,user_003521,user_003521@example.com, +3522,user_003522,user_003522@example.com,1 +3523,user_003523,user_003523@example.com,2 +3524,user_003524,user_003524@example.com, +3525,user_003525,user_003525@example.com,1 +3526,user_003526,user_003526@example.com,2 +3527,user_003527,user_003527@example.com, +3528,user_003528,user_003528@example.com,1 +3529,user_003529,user_003529@example.com,2 +3530,user_003530,user_003530@example.com, +3531,user_003531,user_003531@example.com,1 +3532,user_003532,user_003532@example.com,2 +3533,user_003533,user_003533@example.com, +3534,user_003534,user_003534@example.com,1 +3535,user_003535,user_003535@example.com,2 +3536,user_003536,user_003536@example.com, +3537,user_003537,user_003537@example.com,1 +3538,user_003538,user_003538@example.com,2 +3539,user_003539,user_003539@example.com, +3540,user_003540,user_003540@example.com,1 +3541,user_003541,user_003541@example.com,2 +3542,user_003542,user_003542@example.com, +3543,user_003543,user_003543@example.com,1 +3544,user_003544,user_003544@example.com,2 +3545,user_003545,user_003545@example.com, +3546,user_003546,user_003546@example.com,1 +3547,user_003547,user_003547@example.com,2 +3548,user_003548,user_003548@example.com, +3549,user_003549,user_003549@example.com,1 +3550,user_003550,user_003550@example.com,2 +3551,user_003551,user_003551@example.com, +3552,user_003552,user_003552@example.com,1 +3553,user_003553,user_003553@example.com,2 +3554,user_003554,user_003554@example.com, +3555,user_003555,user_003555@example.com,1 +3556,user_003556,user_003556@example.com,2 +3557,user_003557,user_003557@example.com, +3558,user_003558,user_003558@example.com,1 +3559,user_003559,user_003559@example.com,2 +3560,user_003560,user_003560@example.com, +3561,user_003561,user_003561@example.com,1 +3562,user_003562,user_003562@example.com,2 +3563,user_003563,user_003563@example.com, +3564,user_003564,user_003564@example.com,1 +3565,user_003565,user_003565@example.com,2 +3566,user_003566,user_003566@example.com, +3567,user_003567,user_003567@example.com,1 +3568,user_003568,user_003568@example.com,2 +3569,user_003569,user_003569@example.com, +3570,user_003570,user_003570@example.com,1 +3571,user_003571,user_003571@example.com,2 +3572,user_003572,user_003572@example.com, +3573,user_003573,user_003573@example.com,1 +3574,user_003574,user_003574@example.com,2 +3575,user_003575,user_003575@example.com, +3576,user_003576,user_003576@example.com,1 +3577,user_003577,user_003577@example.com,2 +3578,user_003578,user_003578@example.com, +3579,user_003579,user_003579@example.com,1 +3580,user_003580,user_003580@example.com,2 +3581,user_003581,user_003581@example.com, +3582,user_003582,user_003582@example.com,1 +3583,user_003583,user_003583@example.com,2 +3584,user_003584,user_003584@example.com, +3585,user_003585,user_003585@example.com,1 +3586,user_003586,user_003586@example.com,2 +3587,user_003587,user_003587@example.com, +3588,user_003588,user_003588@example.com,1 +3589,user_003589,user_003589@example.com,2 +3590,user_003590,user_003590@example.com, +3591,user_003591,user_003591@example.com,1 +3592,user_003592,user_003592@example.com,2 +3593,user_003593,user_003593@example.com, +3594,user_003594,user_003594@example.com,1 +3595,user_003595,user_003595@example.com,2 +3596,user_003596,user_003596@example.com, +3597,user_003597,user_003597@example.com,1 +3598,user_003598,user_003598@example.com,2 +3599,user_003599,user_003599@example.com, +3600,user_003600,user_003600@example.com,1 +3601,user_003601,user_003601@example.com,2 +3602,user_003602,user_003602@example.com, +3603,user_003603,user_003603@example.com,1 +3604,user_003604,user_003604@example.com,2 +3605,user_003605,user_003605@example.com, +3606,user_003606,user_003606@example.com,1 +3607,user_003607,user_003607@example.com,2 +3608,user_003608,user_003608@example.com, +3609,user_003609,user_003609@example.com,1 +3610,user_003610,user_003610@example.com,2 +3611,user_003611,user_003611@example.com, +3612,user_003612,user_003612@example.com,1 +3613,user_003613,user_003613@example.com,2 +3614,user_003614,user_003614@example.com, +3615,user_003615,user_003615@example.com,1 +3616,user_003616,user_003616@example.com,2 +3617,user_003617,user_003617@example.com, +3618,user_003618,user_003618@example.com,1 +3619,user_003619,user_003619@example.com,2 +3620,user_003620,user_003620@example.com, +3621,user_003621,user_003621@example.com,1 +3622,user_003622,user_003622@example.com,2 +3623,user_003623,user_003623@example.com, +3624,user_003624,user_003624@example.com,1 +3625,user_003625,user_003625@example.com,2 +3626,user_003626,user_003626@example.com, +3627,user_003627,user_003627@example.com,1 +3628,user_003628,user_003628@example.com,2 +3629,user_003629,user_003629@example.com, +3630,user_003630,user_003630@example.com,1 +3631,user_003631,user_003631@example.com,2 +3632,user_003632,user_003632@example.com, +3633,user_003633,user_003633@example.com,1 +3634,user_003634,user_003634@example.com,2 +3635,user_003635,user_003635@example.com, +3636,user_003636,user_003636@example.com,1 +3637,user_003637,user_003637@example.com,2 +3638,user_003638,user_003638@example.com, +3639,user_003639,user_003639@example.com,1 +3640,user_003640,user_003640@example.com,2 +3641,user_003641,user_003641@example.com, +3642,user_003642,user_003642@example.com,1 +3643,user_003643,user_003643@example.com,2 +3644,user_003644,user_003644@example.com, +3645,user_003645,user_003645@example.com,1 +3646,user_003646,user_003646@example.com,2 +3647,user_003647,user_003647@example.com, +3648,user_003648,user_003648@example.com,1 +3649,user_003649,user_003649@example.com,2 +3650,user_003650,user_003650@example.com, +3651,user_003651,user_003651@example.com,1 +3652,user_003652,user_003652@example.com,2 +3653,user_003653,user_003653@example.com, +3654,user_003654,user_003654@example.com,1 +3655,user_003655,user_003655@example.com,2 +3656,user_003656,user_003656@example.com, +3657,user_003657,user_003657@example.com,1 +3658,user_003658,user_003658@example.com,2 +3659,user_003659,user_003659@example.com, +3660,user_003660,user_003660@example.com,1 +3661,user_003661,user_003661@example.com,2 +3662,user_003662,user_003662@example.com, +3663,user_003663,user_003663@example.com,1 +3664,user_003664,user_003664@example.com,2 +3665,user_003665,user_003665@example.com, +3666,user_003666,user_003666@example.com,1 +3667,user_003667,user_003667@example.com,2 +3668,user_003668,user_003668@example.com, +3669,user_003669,user_003669@example.com,1 +3670,user_003670,user_003670@example.com,2 +3671,user_003671,user_003671@example.com, +3672,user_003672,user_003672@example.com,1 +3673,user_003673,user_003673@example.com,2 +3674,user_003674,user_003674@example.com, +3675,user_003675,user_003675@example.com,1 +3676,user_003676,user_003676@example.com,2 +3677,user_003677,user_003677@example.com, +3678,user_003678,user_003678@example.com,1 +3679,user_003679,user_003679@example.com,2 +3680,user_003680,user_003680@example.com, +3681,user_003681,user_003681@example.com,1 +3682,user_003682,user_003682@example.com,2 +3683,user_003683,user_003683@example.com, +3684,user_003684,user_003684@example.com,1 +3685,user_003685,user_003685@example.com,2 +3686,user_003686,user_003686@example.com, +3687,user_003687,user_003687@example.com,1 +3688,user_003688,user_003688@example.com,2 +3689,user_003689,user_003689@example.com, +3690,user_003690,user_003690@example.com,1 +3691,user_003691,user_003691@example.com,2 +3692,user_003692,user_003692@example.com, +3693,user_003693,user_003693@example.com,1 +3694,user_003694,user_003694@example.com,2 +3695,user_003695,user_003695@example.com, +3696,user_003696,user_003696@example.com,1 +3697,user_003697,user_003697@example.com,2 +3698,user_003698,user_003698@example.com, +3699,user_003699,user_003699@example.com,1 +3700,user_003700,user_003700@example.com,2 +3701,user_003701,user_003701@example.com, +3702,user_003702,user_003702@example.com,1 +3703,user_003703,user_003703@example.com,2 +3704,user_003704,user_003704@example.com, +3705,user_003705,user_003705@example.com,1 +3706,user_003706,user_003706@example.com,2 +3707,user_003707,user_003707@example.com, +3708,user_003708,user_003708@example.com,1 +3709,user_003709,user_003709@example.com,2 +3710,user_003710,user_003710@example.com, +3711,user_003711,user_003711@example.com,1 +3712,user_003712,user_003712@example.com,2 +3713,user_003713,user_003713@example.com, +3714,user_003714,user_003714@example.com,1 +3715,user_003715,user_003715@example.com,2 +3716,user_003716,user_003716@example.com, +3717,user_003717,user_003717@example.com,1 +3718,user_003718,user_003718@example.com,2 +3719,user_003719,user_003719@example.com, +3720,user_003720,user_003720@example.com,1 +3721,user_003721,user_003721@example.com,2 +3722,user_003722,user_003722@example.com, +3723,user_003723,user_003723@example.com,1 +3724,user_003724,user_003724@example.com,2 +3725,user_003725,user_003725@example.com, +3726,user_003726,user_003726@example.com,1 +3727,user_003727,user_003727@example.com,2 +3728,user_003728,user_003728@example.com, +3729,user_003729,user_003729@example.com,1 +3730,user_003730,user_003730@example.com,2 +3731,user_003731,user_003731@example.com, +3732,user_003732,user_003732@example.com,1 +3733,user_003733,user_003733@example.com,2 +3734,user_003734,user_003734@example.com, +3735,user_003735,user_003735@example.com,1 +3736,user_003736,user_003736@example.com,2 +3737,user_003737,user_003737@example.com, +3738,user_003738,user_003738@example.com,1 +3739,user_003739,user_003739@example.com,2 +3740,user_003740,user_003740@example.com, +3741,user_003741,user_003741@example.com,1 +3742,user_003742,user_003742@example.com,2 +3743,user_003743,user_003743@example.com, +3744,user_003744,user_003744@example.com,1 +3745,user_003745,user_003745@example.com,2 +3746,user_003746,user_003746@example.com, +3747,user_003747,user_003747@example.com,1 +3748,user_003748,user_003748@example.com,2 +3749,user_003749,user_003749@example.com, +3750,user_003750,user_003750@example.com,1 +3751,user_003751,user_003751@example.com,2 +3752,user_003752,user_003752@example.com, +3753,user_003753,user_003753@example.com,1 +3754,user_003754,user_003754@example.com,2 +3755,user_003755,user_003755@example.com, +3756,user_003756,user_003756@example.com,1 +3757,user_003757,user_003757@example.com,2 +3758,user_003758,user_003758@example.com, +3759,user_003759,user_003759@example.com,1 +3760,user_003760,user_003760@example.com,2 +3761,user_003761,user_003761@example.com, +3762,user_003762,user_003762@example.com,1 +3763,user_003763,user_003763@example.com,2 +3764,user_003764,user_003764@example.com, +3765,user_003765,user_003765@example.com,1 +3766,user_003766,user_003766@example.com,2 +3767,user_003767,user_003767@example.com, +3768,user_003768,user_003768@example.com,1 +3769,user_003769,user_003769@example.com,2 +3770,user_003770,user_003770@example.com, +3771,user_003771,user_003771@example.com,1 +3772,user_003772,user_003772@example.com,2 +3773,user_003773,user_003773@example.com, +3774,user_003774,user_003774@example.com,1 +3775,user_003775,user_003775@example.com,2 +3776,user_003776,user_003776@example.com, +3777,user_003777,user_003777@example.com,1 +3778,user_003778,user_003778@example.com,2 +3779,user_003779,user_003779@example.com, +3780,user_003780,user_003780@example.com,1 +3781,user_003781,user_003781@example.com,2 +3782,user_003782,user_003782@example.com, +3783,user_003783,user_003783@example.com,1 +3784,user_003784,user_003784@example.com,2 +3785,user_003785,user_003785@example.com, +3786,user_003786,user_003786@example.com,1 +3787,user_003787,user_003787@example.com,2 +3788,user_003788,user_003788@example.com, +3789,user_003789,user_003789@example.com,1 +3790,user_003790,user_003790@example.com,2 +3791,user_003791,user_003791@example.com, +3792,user_003792,user_003792@example.com,1 +3793,user_003793,user_003793@example.com,2 +3794,user_003794,user_003794@example.com, +3795,user_003795,user_003795@example.com,1 +3796,user_003796,user_003796@example.com,2 +3797,user_003797,user_003797@example.com, +3798,user_003798,user_003798@example.com,1 +3799,user_003799,user_003799@example.com,2 +3800,user_003800,user_003800@example.com, +3801,user_003801,user_003801@example.com,1 +3802,user_003802,user_003802@example.com,2 +3803,user_003803,user_003803@example.com, +3804,user_003804,user_003804@example.com,1 +3805,user_003805,user_003805@example.com,2 +3806,user_003806,user_003806@example.com, +3807,user_003807,user_003807@example.com,1 +3808,user_003808,user_003808@example.com,2 +3809,user_003809,user_003809@example.com, +3810,user_003810,user_003810@example.com,1 +3811,user_003811,user_003811@example.com,2 +3812,user_003812,user_003812@example.com, +3813,user_003813,user_003813@example.com,1 +3814,user_003814,user_003814@example.com,2 +3815,user_003815,user_003815@example.com, +3816,user_003816,user_003816@example.com,1 +3817,user_003817,user_003817@example.com,2 +3818,user_003818,user_003818@example.com, +3819,user_003819,user_003819@example.com,1 +3820,user_003820,user_003820@example.com,2 +3821,user_003821,user_003821@example.com, +3822,user_003822,user_003822@example.com,1 +3823,user_003823,user_003823@example.com,2 +3824,user_003824,user_003824@example.com, +3825,user_003825,user_003825@example.com,1 +3826,user_003826,user_003826@example.com,2 +3827,user_003827,user_003827@example.com, +3828,user_003828,user_003828@example.com,1 +3829,user_003829,user_003829@example.com,2 +3830,user_003830,user_003830@example.com, +3831,user_003831,user_003831@example.com,1 +3832,user_003832,user_003832@example.com,2 +3833,user_003833,user_003833@example.com, +3834,user_003834,user_003834@example.com,1 +3835,user_003835,user_003835@example.com,2 +3836,user_003836,user_003836@example.com, +3837,user_003837,user_003837@example.com,1 +3838,user_003838,user_003838@example.com,2 +3839,user_003839,user_003839@example.com, +3840,user_003840,user_003840@example.com,1 +3841,user_003841,user_003841@example.com,2 +3842,user_003842,user_003842@example.com, +3843,user_003843,user_003843@example.com,1 +3844,user_003844,user_003844@example.com,2 +3845,user_003845,user_003845@example.com, +3846,user_003846,user_003846@example.com,1 +3847,user_003847,user_003847@example.com,2 +3848,user_003848,user_003848@example.com, +3849,user_003849,user_003849@example.com,1 +3850,user_003850,user_003850@example.com,2 +3851,user_003851,user_003851@example.com, +3852,user_003852,user_003852@example.com,1 +3853,user_003853,user_003853@example.com,2 +3854,user_003854,user_003854@example.com, +3855,user_003855,user_003855@example.com,1 +3856,user_003856,user_003856@example.com,2 +3857,user_003857,user_003857@example.com, +3858,user_003858,user_003858@example.com,1 +3859,user_003859,user_003859@example.com,2 +3860,user_003860,user_003860@example.com, +3861,user_003861,user_003861@example.com,1 +3862,user_003862,user_003862@example.com,2 +3863,user_003863,user_003863@example.com, +3864,user_003864,user_003864@example.com,1 +3865,user_003865,user_003865@example.com,2 +3866,user_003866,user_003866@example.com, +3867,user_003867,user_003867@example.com,1 +3868,user_003868,user_003868@example.com,2 +3869,user_003869,user_003869@example.com, +3870,user_003870,user_003870@example.com,1 +3871,user_003871,user_003871@example.com,2 +3872,user_003872,user_003872@example.com, +3873,user_003873,user_003873@example.com,1 +3874,user_003874,user_003874@example.com,2 +3875,user_003875,user_003875@example.com, +3876,user_003876,user_003876@example.com,1 +3877,user_003877,user_003877@example.com,2 +3878,user_003878,user_003878@example.com, +3879,user_003879,user_003879@example.com,1 +3880,user_003880,user_003880@example.com,2 +3881,user_003881,user_003881@example.com, +3882,user_003882,user_003882@example.com,1 +3883,user_003883,user_003883@example.com,2 +3884,user_003884,user_003884@example.com, +3885,user_003885,user_003885@example.com,1 +3886,user_003886,user_003886@example.com,2 +3887,user_003887,user_003887@example.com, +3888,user_003888,user_003888@example.com,1 +3889,user_003889,user_003889@example.com,2 +3890,user_003890,user_003890@example.com, +3891,user_003891,user_003891@example.com,1 +3892,user_003892,user_003892@example.com,2 +3893,user_003893,user_003893@example.com, +3894,user_003894,user_003894@example.com,1 +3895,user_003895,user_003895@example.com,2 +3896,user_003896,user_003896@example.com, +3897,user_003897,user_003897@example.com,1 +3898,user_003898,user_003898@example.com,2 +3899,user_003899,user_003899@example.com, +3900,user_003900,user_003900@example.com,1 +3901,user_003901,user_003901@example.com,2 +3902,user_003902,user_003902@example.com, +3903,user_003903,user_003903@example.com,1 +3904,user_003904,user_003904@example.com,2 +3905,user_003905,user_003905@example.com, +3906,user_003906,user_003906@example.com,1 +3907,user_003907,user_003907@example.com,2 +3908,user_003908,user_003908@example.com, +3909,user_003909,user_003909@example.com,1 +3910,user_003910,user_003910@example.com,2 +3911,user_003911,user_003911@example.com, +3912,user_003912,user_003912@example.com,1 +3913,user_003913,user_003913@example.com,2 +3914,user_003914,user_003914@example.com, +3915,user_003915,user_003915@example.com,1 +3916,user_003916,user_003916@example.com,2 +3917,user_003917,user_003917@example.com, +3918,user_003918,user_003918@example.com,1 +3919,user_003919,user_003919@example.com,2 +3920,user_003920,user_003920@example.com, +3921,user_003921,user_003921@example.com,1 +3922,user_003922,user_003922@example.com,2 +3923,user_003923,user_003923@example.com, +3924,user_003924,user_003924@example.com,1 +3925,user_003925,user_003925@example.com,2 +3926,user_003926,user_003926@example.com, +3927,user_003927,user_003927@example.com,1 +3928,user_003928,user_003928@example.com,2 +3929,user_003929,user_003929@example.com, +3930,user_003930,user_003930@example.com,1 +3931,user_003931,user_003931@example.com,2 +3932,user_003932,user_003932@example.com, +3933,user_003933,user_003933@example.com,1 +3934,user_003934,user_003934@example.com,2 +3935,user_003935,user_003935@example.com, +3936,user_003936,user_003936@example.com,1 +3937,user_003937,user_003937@example.com,2 +3938,user_003938,user_003938@example.com, +3939,user_003939,user_003939@example.com,1 +3940,user_003940,user_003940@example.com,2 +3941,user_003941,user_003941@example.com, +3942,user_003942,user_003942@example.com,1 +3943,user_003943,user_003943@example.com,2 +3944,user_003944,user_003944@example.com, +3945,user_003945,user_003945@example.com,1 +3946,user_003946,user_003946@example.com,2 +3947,user_003947,user_003947@example.com, +3948,user_003948,user_003948@example.com,1 +3949,user_003949,user_003949@example.com,2 +3950,user_003950,user_003950@example.com, +3951,user_003951,user_003951@example.com,1 +3952,user_003952,user_003952@example.com,2 +3953,user_003953,user_003953@example.com, +3954,user_003954,user_003954@example.com,1 +3955,user_003955,user_003955@example.com,2 +3956,user_003956,user_003956@example.com, +3957,user_003957,user_003957@example.com,1 +3958,user_003958,user_003958@example.com,2 +3959,user_003959,user_003959@example.com, +3960,user_003960,user_003960@example.com,1 +3961,user_003961,user_003961@example.com,2 +3962,user_003962,user_003962@example.com, +3963,user_003963,user_003963@example.com,1 +3964,user_003964,user_003964@example.com,2 +3965,user_003965,user_003965@example.com, +3966,user_003966,user_003966@example.com,1 +3967,user_003967,user_003967@example.com,2 +3968,user_003968,user_003968@example.com, +3969,user_003969,user_003969@example.com,1 +3970,user_003970,user_003970@example.com,2 +3971,user_003971,user_003971@example.com, +3972,user_003972,user_003972@example.com,1 +3973,user_003973,user_003973@example.com,2 +3974,user_003974,user_003974@example.com, +3975,user_003975,user_003975@example.com,1 +3976,user_003976,user_003976@example.com,2 +3977,user_003977,user_003977@example.com, +3978,user_003978,user_003978@example.com,1 +3979,user_003979,user_003979@example.com,2 +3980,user_003980,user_003980@example.com, +3981,user_003981,user_003981@example.com,1 +3982,user_003982,user_003982@example.com,2 +3983,user_003983,user_003983@example.com, +3984,user_003984,user_003984@example.com,1 +3985,user_003985,user_003985@example.com,2 +3986,user_003986,user_003986@example.com, +3987,user_003987,user_003987@example.com,1 +3988,user_003988,user_003988@example.com,2 +3989,user_003989,user_003989@example.com, +3990,user_003990,user_003990@example.com,1 +3991,user_003991,user_003991@example.com,2 +3992,user_003992,user_003992@example.com, +3993,user_003993,user_003993@example.com,1 +3994,user_003994,user_003994@example.com,2 +3995,user_003995,user_003995@example.com, +3996,user_003996,user_003996@example.com,1 +3997,user_003997,user_003997@example.com,2 +3998,user_003998,user_003998@example.com, +3999,user_003999,user_003999@example.com,1 +4000,user_004000,user_004000@example.com,2 +4001,user_004001,user_004001@example.com, +4002,user_004002,user_004002@example.com,1 +4003,user_004003,user_004003@example.com,2 +4004,user_004004,user_004004@example.com, +4005,user_004005,user_004005@example.com,1 +4006,user_004006,user_004006@example.com,2 +4007,user_004007,user_004007@example.com, +4008,user_004008,user_004008@example.com,1 +4009,user_004009,user_004009@example.com,2 +4010,user_004010,user_004010@example.com, +4011,user_004011,user_004011@example.com,1 +4012,user_004012,user_004012@example.com,2 +4013,user_004013,user_004013@example.com, +4014,user_004014,user_004014@example.com,1 +4015,user_004015,user_004015@example.com,2 +4016,user_004016,user_004016@example.com, +4017,user_004017,user_004017@example.com,1 +4018,user_004018,user_004018@example.com,2 +4019,user_004019,user_004019@example.com, +4020,user_004020,user_004020@example.com,1 +4021,user_004021,user_004021@example.com,2 +4022,user_004022,user_004022@example.com, +4023,user_004023,user_004023@example.com,1 +4024,user_004024,user_004024@example.com,2 +4025,user_004025,user_004025@example.com, +4026,user_004026,user_004026@example.com,1 +4027,user_004027,user_004027@example.com,2 +4028,user_004028,user_004028@example.com, +4029,user_004029,user_004029@example.com,1 +4030,user_004030,user_004030@example.com,2 +4031,user_004031,user_004031@example.com, +4032,user_004032,user_004032@example.com,1 +4033,user_004033,user_004033@example.com,2 +4034,user_004034,user_004034@example.com, +4035,user_004035,user_004035@example.com,1 +4036,user_004036,user_004036@example.com,2 +4037,user_004037,user_004037@example.com, +4038,user_004038,user_004038@example.com,1 +4039,user_004039,user_004039@example.com,2 +4040,user_004040,user_004040@example.com, +4041,user_004041,user_004041@example.com,1 +4042,user_004042,user_004042@example.com,2 +4043,user_004043,user_004043@example.com, +4044,user_004044,user_004044@example.com,1 +4045,user_004045,user_004045@example.com,2 +4046,user_004046,user_004046@example.com, +4047,user_004047,user_004047@example.com,1 +4048,user_004048,user_004048@example.com,2 +4049,user_004049,user_004049@example.com, +4050,user_004050,user_004050@example.com,1 +4051,user_004051,user_004051@example.com,2 +4052,user_004052,user_004052@example.com, +4053,user_004053,user_004053@example.com,1 +4054,user_004054,user_004054@example.com,2 +4055,user_004055,user_004055@example.com, +4056,user_004056,user_004056@example.com,1 +4057,user_004057,user_004057@example.com,2 +4058,user_004058,user_004058@example.com, +4059,user_004059,user_004059@example.com,1 +4060,user_004060,user_004060@example.com,2 +4061,user_004061,user_004061@example.com, +4062,user_004062,user_004062@example.com,1 +4063,user_004063,user_004063@example.com,2 +4064,user_004064,user_004064@example.com, +4065,user_004065,user_004065@example.com,1 +4066,user_004066,user_004066@example.com,2 +4067,user_004067,user_004067@example.com, +4068,user_004068,user_004068@example.com,1 +4069,user_004069,user_004069@example.com,2 +4070,user_004070,user_004070@example.com, +4071,user_004071,user_004071@example.com,1 +4072,user_004072,user_004072@example.com,2 +4073,user_004073,user_004073@example.com, +4074,user_004074,user_004074@example.com,1 +4075,user_004075,user_004075@example.com,2 +4076,user_004076,user_004076@example.com, +4077,user_004077,user_004077@example.com,1 +4078,user_004078,user_004078@example.com,2 +4079,user_004079,user_004079@example.com, +4080,user_004080,user_004080@example.com,1 +4081,user_004081,user_004081@example.com,2 +4082,user_004082,user_004082@example.com, +4083,user_004083,user_004083@example.com,1 +4084,user_004084,user_004084@example.com,2 +4085,user_004085,user_004085@example.com, +4086,user_004086,user_004086@example.com,1 +4087,user_004087,user_004087@example.com,2 +4088,user_004088,user_004088@example.com, +4089,user_004089,user_004089@example.com,1 +4090,user_004090,user_004090@example.com,2 +4091,user_004091,user_004091@example.com, +4092,user_004092,user_004092@example.com,1 +4093,user_004093,user_004093@example.com,2 +4094,user_004094,user_004094@example.com, +4095,user_004095,user_004095@example.com,1 +4096,user_004096,user_004096@example.com,2 +4097,user_004097,user_004097@example.com, +4098,user_004098,user_004098@example.com,1 +4099,user_004099,user_004099@example.com,2 +4100,user_004100,user_004100@example.com, +4101,user_004101,user_004101@example.com,1 +4102,user_004102,user_004102@example.com,2 +4103,user_004103,user_004103@example.com, +4104,user_004104,user_004104@example.com,1 +4105,user_004105,user_004105@example.com,2 +4106,user_004106,user_004106@example.com, +4107,user_004107,user_004107@example.com,1 +4108,user_004108,user_004108@example.com,2 +4109,user_004109,user_004109@example.com, +4110,user_004110,user_004110@example.com,1 +4111,user_004111,user_004111@example.com,2 +4112,user_004112,user_004112@example.com, +4113,user_004113,user_004113@example.com,1 +4114,user_004114,user_004114@example.com,2 +4115,user_004115,user_004115@example.com, +4116,user_004116,user_004116@example.com,1 +4117,user_004117,user_004117@example.com,2 +4118,user_004118,user_004118@example.com, +4119,user_004119,user_004119@example.com,1 +4120,user_004120,user_004120@example.com,2 +4121,user_004121,user_004121@example.com, +4122,user_004122,user_004122@example.com,1 +4123,user_004123,user_004123@example.com,2 +4124,user_004124,user_004124@example.com, +4125,user_004125,user_004125@example.com,1 +4126,user_004126,user_004126@example.com,2 +4127,user_004127,user_004127@example.com, +4128,user_004128,user_004128@example.com,1 +4129,user_004129,user_004129@example.com,2 +4130,user_004130,user_004130@example.com, +4131,user_004131,user_004131@example.com,1 +4132,user_004132,user_004132@example.com,2 +4133,user_004133,user_004133@example.com, +4134,user_004134,user_004134@example.com,1 +4135,user_004135,user_004135@example.com,2 +4136,user_004136,user_004136@example.com, +4137,user_004137,user_004137@example.com,1 +4138,user_004138,user_004138@example.com,2 +4139,user_004139,user_004139@example.com, +4140,user_004140,user_004140@example.com,1 +4141,user_004141,user_004141@example.com,2 +4142,user_004142,user_004142@example.com, +4143,user_004143,user_004143@example.com,1 +4144,user_004144,user_004144@example.com,2 +4145,user_004145,user_004145@example.com, +4146,user_004146,user_004146@example.com,1 +4147,user_004147,user_004147@example.com,2 +4148,user_004148,user_004148@example.com, +4149,user_004149,user_004149@example.com,1 +4150,user_004150,user_004150@example.com,2 +4151,user_004151,user_004151@example.com, +4152,user_004152,user_004152@example.com,1 +4153,user_004153,user_004153@example.com,2 +4154,user_004154,user_004154@example.com, +4155,user_004155,user_004155@example.com,1 +4156,user_004156,user_004156@example.com,2 +4157,user_004157,user_004157@example.com, +4158,user_004158,user_004158@example.com,1 +4159,user_004159,user_004159@example.com,2 +4160,user_004160,user_004160@example.com, +4161,user_004161,user_004161@example.com,1 +4162,user_004162,user_004162@example.com,2 +4163,user_004163,user_004163@example.com, +4164,user_004164,user_004164@example.com,1 +4165,user_004165,user_004165@example.com,2 +4166,user_004166,user_004166@example.com, +4167,user_004167,user_004167@example.com,1 +4168,user_004168,user_004168@example.com,2 +4169,user_004169,user_004169@example.com, +4170,user_004170,user_004170@example.com,1 +4171,user_004171,user_004171@example.com,2 +4172,user_004172,user_004172@example.com, +4173,user_004173,user_004173@example.com,1 +4174,user_004174,user_004174@example.com,2 +4175,user_004175,user_004175@example.com, +4176,user_004176,user_004176@example.com,1 +4177,user_004177,user_004177@example.com,2 +4178,user_004178,user_004178@example.com, +4179,user_004179,user_004179@example.com,1 +4180,user_004180,user_004180@example.com,2 +4181,user_004181,user_004181@example.com, +4182,user_004182,user_004182@example.com,1 +4183,user_004183,user_004183@example.com,2 +4184,user_004184,user_004184@example.com, +4185,user_004185,user_004185@example.com,1 +4186,user_004186,user_004186@example.com,2 +4187,user_004187,user_004187@example.com, +4188,user_004188,user_004188@example.com,1 +4189,user_004189,user_004189@example.com,2 +4190,user_004190,user_004190@example.com, +4191,user_004191,user_004191@example.com,1 +4192,user_004192,user_004192@example.com,2 +4193,user_004193,user_004193@example.com, +4194,user_004194,user_004194@example.com,1 +4195,user_004195,user_004195@example.com,2 +4196,user_004196,user_004196@example.com, +4197,user_004197,user_004197@example.com,1 +4198,user_004198,user_004198@example.com,2 +4199,user_004199,user_004199@example.com, +4200,user_004200,user_004200@example.com,1 +4201,user_004201,user_004201@example.com,2 +4202,user_004202,user_004202@example.com, +4203,user_004203,user_004203@example.com,1 +4204,user_004204,user_004204@example.com,2 +4205,user_004205,user_004205@example.com, +4206,user_004206,user_004206@example.com,1 +4207,user_004207,user_004207@example.com,2 +4208,user_004208,user_004208@example.com, +4209,user_004209,user_004209@example.com,1 +4210,user_004210,user_004210@example.com,2 +4211,user_004211,user_004211@example.com, +4212,user_004212,user_004212@example.com,1 +4213,user_004213,user_004213@example.com,2 +4214,user_004214,user_004214@example.com, +4215,user_004215,user_004215@example.com,1 +4216,user_004216,user_004216@example.com,2 +4217,user_004217,user_004217@example.com, +4218,user_004218,user_004218@example.com,1 +4219,user_004219,user_004219@example.com,2 +4220,user_004220,user_004220@example.com, +4221,user_004221,user_004221@example.com,1 +4222,user_004222,user_004222@example.com,2 +4223,user_004223,user_004223@example.com, +4224,user_004224,user_004224@example.com,1 +4225,user_004225,user_004225@example.com,2 +4226,user_004226,user_004226@example.com, +4227,user_004227,user_004227@example.com,1 +4228,user_004228,user_004228@example.com,2 +4229,user_004229,user_004229@example.com, +4230,user_004230,user_004230@example.com,1 +4231,user_004231,user_004231@example.com,2 +4232,user_004232,user_004232@example.com, +4233,user_004233,user_004233@example.com,1 +4234,user_004234,user_004234@example.com,2 +4235,user_004235,user_004235@example.com, +4236,user_004236,user_004236@example.com,1 +4237,user_004237,user_004237@example.com,2 +4238,user_004238,user_004238@example.com, +4239,user_004239,user_004239@example.com,1 +4240,user_004240,user_004240@example.com,2 +4241,user_004241,user_004241@example.com, +4242,user_004242,user_004242@example.com,1 +4243,user_004243,user_004243@example.com,2 +4244,user_004244,user_004244@example.com, +4245,user_004245,user_004245@example.com,1 +4246,user_004246,user_004246@example.com,2 +4247,user_004247,user_004247@example.com, +4248,user_004248,user_004248@example.com,1 +4249,user_004249,user_004249@example.com,2 +4250,user_004250,user_004250@example.com, +4251,user_004251,user_004251@example.com,1 +4252,user_004252,user_004252@example.com,2 +4253,user_004253,user_004253@example.com, +4254,user_004254,user_004254@example.com,1 +4255,user_004255,user_004255@example.com,2 +4256,user_004256,user_004256@example.com, +4257,user_004257,user_004257@example.com,1 +4258,user_004258,user_004258@example.com,2 +4259,user_004259,user_004259@example.com, +4260,user_004260,user_004260@example.com,1 +4261,user_004261,user_004261@example.com,2 +4262,user_004262,user_004262@example.com, +4263,user_004263,user_004263@example.com,1 +4264,user_004264,user_004264@example.com,2 +4265,user_004265,user_004265@example.com, +4266,user_004266,user_004266@example.com,1 +4267,user_004267,user_004267@example.com,2 +4268,user_004268,user_004268@example.com, +4269,user_004269,user_004269@example.com,1 +4270,user_004270,user_004270@example.com,2 +4271,user_004271,user_004271@example.com, +4272,user_004272,user_004272@example.com,1 +4273,user_004273,user_004273@example.com,2 +4274,user_004274,user_004274@example.com, +4275,user_004275,user_004275@example.com,1 +4276,user_004276,user_004276@example.com,2 +4277,user_004277,user_004277@example.com, +4278,user_004278,user_004278@example.com,1 +4279,user_004279,user_004279@example.com,2 +4280,user_004280,user_004280@example.com, +4281,user_004281,user_004281@example.com,1 +4282,user_004282,user_004282@example.com,2 +4283,user_004283,user_004283@example.com, +4284,user_004284,user_004284@example.com,1 +4285,user_004285,user_004285@example.com,2 +4286,user_004286,user_004286@example.com, +4287,user_004287,user_004287@example.com,1 +4288,user_004288,user_004288@example.com,2 +4289,user_004289,user_004289@example.com, +4290,user_004290,user_004290@example.com,1 +4291,user_004291,user_004291@example.com,2 +4292,user_004292,user_004292@example.com, +4293,user_004293,user_004293@example.com,1 +4294,user_004294,user_004294@example.com,2 +4295,user_004295,user_004295@example.com, +4296,user_004296,user_004296@example.com,1 +4297,user_004297,user_004297@example.com,2 +4298,user_004298,user_004298@example.com, +4299,user_004299,user_004299@example.com,1 +4300,user_004300,user_004300@example.com,2 +4301,user_004301,user_004301@example.com, +4302,user_004302,user_004302@example.com,1 +4303,user_004303,user_004303@example.com,2 +4304,user_004304,user_004304@example.com, +4305,user_004305,user_004305@example.com,1 +4306,user_004306,user_004306@example.com,2 +4307,user_004307,user_004307@example.com, +4308,user_004308,user_004308@example.com,1 +4309,user_004309,user_004309@example.com,2 +4310,user_004310,user_004310@example.com, +4311,user_004311,user_004311@example.com,1 +4312,user_004312,user_004312@example.com,2 +4313,user_004313,user_004313@example.com, +4314,user_004314,user_004314@example.com,1 +4315,user_004315,user_004315@example.com,2 +4316,user_004316,user_004316@example.com, +4317,user_004317,user_004317@example.com,1 +4318,user_004318,user_004318@example.com,2 +4319,user_004319,user_004319@example.com, +4320,user_004320,user_004320@example.com,1 +4321,user_004321,user_004321@example.com,2 +4322,user_004322,user_004322@example.com, +4323,user_004323,user_004323@example.com,1 +4324,user_004324,user_004324@example.com,2 +4325,user_004325,user_004325@example.com, +4326,user_004326,user_004326@example.com,1 +4327,user_004327,user_004327@example.com,2 +4328,user_004328,user_004328@example.com, +4329,user_004329,user_004329@example.com,1 +4330,user_004330,user_004330@example.com,2 +4331,user_004331,user_004331@example.com, +4332,user_004332,user_004332@example.com,1 +4333,user_004333,user_004333@example.com,2 +4334,user_004334,user_004334@example.com, +4335,user_004335,user_004335@example.com,1 +4336,user_004336,user_004336@example.com,2 +4337,user_004337,user_004337@example.com, +4338,user_004338,user_004338@example.com,1 +4339,user_004339,user_004339@example.com,2 +4340,user_004340,user_004340@example.com, +4341,user_004341,user_004341@example.com,1 +4342,user_004342,user_004342@example.com,2 +4343,user_004343,user_004343@example.com, +4344,user_004344,user_004344@example.com,1 +4345,user_004345,user_004345@example.com,2 +4346,user_004346,user_004346@example.com, +4347,user_004347,user_004347@example.com,1 +4348,user_004348,user_004348@example.com,2 +4349,user_004349,user_004349@example.com, +4350,user_004350,user_004350@example.com,1 +4351,user_004351,user_004351@example.com,2 +4352,user_004352,user_004352@example.com, +4353,user_004353,user_004353@example.com,1 +4354,user_004354,user_004354@example.com,2 +4355,user_004355,user_004355@example.com, +4356,user_004356,user_004356@example.com,1 +4357,user_004357,user_004357@example.com,2 +4358,user_004358,user_004358@example.com, +4359,user_004359,user_004359@example.com,1 +4360,user_004360,user_004360@example.com,2 +4361,user_004361,user_004361@example.com, +4362,user_004362,user_004362@example.com,1 +4363,user_004363,user_004363@example.com,2 +4364,user_004364,user_004364@example.com, +4365,user_004365,user_004365@example.com,1 +4366,user_004366,user_004366@example.com,2 +4367,user_004367,user_004367@example.com, +4368,user_004368,user_004368@example.com,1 +4369,user_004369,user_004369@example.com,2 +4370,user_004370,user_004370@example.com, +4371,user_004371,user_004371@example.com,1 +4372,user_004372,user_004372@example.com,2 +4373,user_004373,user_004373@example.com, +4374,user_004374,user_004374@example.com,1 +4375,user_004375,user_004375@example.com,2 +4376,user_004376,user_004376@example.com, +4377,user_004377,user_004377@example.com,1 +4378,user_004378,user_004378@example.com,2 +4379,user_004379,user_004379@example.com, +4380,user_004380,user_004380@example.com,1 +4381,user_004381,user_004381@example.com,2 +4382,user_004382,user_004382@example.com, +4383,user_004383,user_004383@example.com,1 +4384,user_004384,user_004384@example.com,2 +4385,user_004385,user_004385@example.com, +4386,user_004386,user_004386@example.com,1 +4387,user_004387,user_004387@example.com,2 +4388,user_004388,user_004388@example.com, +4389,user_004389,user_004389@example.com,1 +4390,user_004390,user_004390@example.com,2 +4391,user_004391,user_004391@example.com, +4392,user_004392,user_004392@example.com,1 +4393,user_004393,user_004393@example.com,2 +4394,user_004394,user_004394@example.com, +4395,user_004395,user_004395@example.com,1 +4396,user_004396,user_004396@example.com,2 +4397,user_004397,user_004397@example.com, +4398,user_004398,user_004398@example.com,1 +4399,user_004399,user_004399@example.com,2 +4400,user_004400,user_004400@example.com, +4401,user_004401,user_004401@example.com,1 +4402,user_004402,user_004402@example.com,2 +4403,user_004403,user_004403@example.com, +4404,user_004404,user_004404@example.com,1 +4405,user_004405,user_004405@example.com,2 +4406,user_004406,user_004406@example.com, +4407,user_004407,user_004407@example.com,1 +4408,user_004408,user_004408@example.com,2 +4409,user_004409,user_004409@example.com, +4410,user_004410,user_004410@example.com,1 +4411,user_004411,user_004411@example.com,2 +4412,user_004412,user_004412@example.com, +4413,user_004413,user_004413@example.com,1 +4414,user_004414,user_004414@example.com,2 +4415,user_004415,user_004415@example.com, +4416,user_004416,user_004416@example.com,1 +4417,user_004417,user_004417@example.com,2 +4418,user_004418,user_004418@example.com, +4419,user_004419,user_004419@example.com,1 +4420,user_004420,user_004420@example.com,2 +4421,user_004421,user_004421@example.com, +4422,user_004422,user_004422@example.com,1 +4423,user_004423,user_004423@example.com,2 +4424,user_004424,user_004424@example.com, +4425,user_004425,user_004425@example.com,1 +4426,user_004426,user_004426@example.com,2 +4427,user_004427,user_004427@example.com, +4428,user_004428,user_004428@example.com,1 +4429,user_004429,user_004429@example.com,2 +4430,user_004430,user_004430@example.com, +4431,user_004431,user_004431@example.com,1 +4432,user_004432,user_004432@example.com,2 +4433,user_004433,user_004433@example.com, +4434,user_004434,user_004434@example.com,1 +4435,user_004435,user_004435@example.com,2 +4436,user_004436,user_004436@example.com, +4437,user_004437,user_004437@example.com,1 +4438,user_004438,user_004438@example.com,2 +4439,user_004439,user_004439@example.com, +4440,user_004440,user_004440@example.com,1 +4441,user_004441,user_004441@example.com,2 +4442,user_004442,user_004442@example.com, +4443,user_004443,user_004443@example.com,1 +4444,user_004444,user_004444@example.com,2 +4445,user_004445,user_004445@example.com, +4446,user_004446,user_004446@example.com,1 +4447,user_004447,user_004447@example.com,2 +4448,user_004448,user_004448@example.com, +4449,user_004449,user_004449@example.com,1 +4450,user_004450,user_004450@example.com,2 +4451,user_004451,user_004451@example.com, +4452,user_004452,user_004452@example.com,1 +4453,user_004453,user_004453@example.com,2 +4454,user_004454,user_004454@example.com, +4455,user_004455,user_004455@example.com,1 +4456,user_004456,user_004456@example.com,2 +4457,user_004457,user_004457@example.com, +4458,user_004458,user_004458@example.com,1 +4459,user_004459,user_004459@example.com,2 +4460,user_004460,user_004460@example.com, +4461,user_004461,user_004461@example.com,1 +4462,user_004462,user_004462@example.com,2 +4463,user_004463,user_004463@example.com, +4464,user_004464,user_004464@example.com,1 +4465,user_004465,user_004465@example.com,2 +4466,user_004466,user_004466@example.com, +4467,user_004467,user_004467@example.com,1 +4468,user_004468,user_004468@example.com,2 +4469,user_004469,user_004469@example.com, +4470,user_004470,user_004470@example.com,1 +4471,user_004471,user_004471@example.com,2 +4472,user_004472,user_004472@example.com, +4473,user_004473,user_004473@example.com,1 +4474,user_004474,user_004474@example.com,2 +4475,user_004475,user_004475@example.com, +4476,user_004476,user_004476@example.com,1 +4477,user_004477,user_004477@example.com,2 +4478,user_004478,user_004478@example.com, +4479,user_004479,user_004479@example.com,1 +4480,user_004480,user_004480@example.com,2 +4481,user_004481,user_004481@example.com, +4482,user_004482,user_004482@example.com,1 +4483,user_004483,user_004483@example.com,2 +4484,user_004484,user_004484@example.com, +4485,user_004485,user_004485@example.com,1 +4486,user_004486,user_004486@example.com,2 +4487,user_004487,user_004487@example.com, +4488,user_004488,user_004488@example.com,1 +4489,user_004489,user_004489@example.com,2 +4490,user_004490,user_004490@example.com, +4491,user_004491,user_004491@example.com,1 +4492,user_004492,user_004492@example.com,2 +4493,user_004493,user_004493@example.com, +4494,user_004494,user_004494@example.com,1 +4495,user_004495,user_004495@example.com,2 +4496,user_004496,user_004496@example.com, +4497,user_004497,user_004497@example.com,1 +4498,user_004498,user_004498@example.com,2 +4499,user_004499,user_004499@example.com, +4500,user_004500,user_004500@example.com,1 +4501,user_004501,user_004501@example.com,2 +4502,user_004502,user_004502@example.com, +4503,user_004503,user_004503@example.com,1 +4504,user_004504,user_004504@example.com,2 +4505,user_004505,user_004505@example.com, +4506,user_004506,user_004506@example.com,1 +4507,user_004507,user_004507@example.com,2 +4508,user_004508,user_004508@example.com, +4509,user_004509,user_004509@example.com,1 +4510,user_004510,user_004510@example.com,2 +4511,user_004511,user_004511@example.com, +4512,user_004512,user_004512@example.com,1 +4513,user_004513,user_004513@example.com,2 +4514,user_004514,user_004514@example.com, +4515,user_004515,user_004515@example.com,1 +4516,user_004516,user_004516@example.com,2 +4517,user_004517,user_004517@example.com, +4518,user_004518,user_004518@example.com,1 +4519,user_004519,user_004519@example.com,2 +4520,user_004520,user_004520@example.com, +4521,user_004521,user_004521@example.com,1 +4522,user_004522,user_004522@example.com,2 +4523,user_004523,user_004523@example.com, +4524,user_004524,user_004524@example.com,1 +4525,user_004525,user_004525@example.com,2 +4526,user_004526,user_004526@example.com, +4527,user_004527,user_004527@example.com,1 +4528,user_004528,user_004528@example.com,2 +4529,user_004529,user_004529@example.com, +4530,user_004530,user_004530@example.com,1 +4531,user_004531,user_004531@example.com,2 +4532,user_004532,user_004532@example.com, +4533,user_004533,user_004533@example.com,1 +4534,user_004534,user_004534@example.com,2 +4535,user_004535,user_004535@example.com, +4536,user_004536,user_004536@example.com,1 +4537,user_004537,user_004537@example.com,2 +4538,user_004538,user_004538@example.com, +4539,user_004539,user_004539@example.com,1 +4540,user_004540,user_004540@example.com,2 +4541,user_004541,user_004541@example.com, +4542,user_004542,user_004542@example.com,1 +4543,user_004543,user_004543@example.com,2 +4544,user_004544,user_004544@example.com, +4545,user_004545,user_004545@example.com,1 +4546,user_004546,user_004546@example.com,2 +4547,user_004547,user_004547@example.com, +4548,user_004548,user_004548@example.com,1 +4549,user_004549,user_004549@example.com,2 +4550,user_004550,user_004550@example.com, +4551,user_004551,user_004551@example.com,1 +4552,user_004552,user_004552@example.com,2 +4553,user_004553,user_004553@example.com, +4554,user_004554,user_004554@example.com,1 +4555,user_004555,user_004555@example.com,2 +4556,user_004556,user_004556@example.com, +4557,user_004557,user_004557@example.com,1 +4558,user_004558,user_004558@example.com,2 +4559,user_004559,user_004559@example.com, +4560,user_004560,user_004560@example.com,1 +4561,user_004561,user_004561@example.com,2 +4562,user_004562,user_004562@example.com, +4563,user_004563,user_004563@example.com,1 +4564,user_004564,user_004564@example.com,2 +4565,user_004565,user_004565@example.com, +4566,user_004566,user_004566@example.com,1 +4567,user_004567,user_004567@example.com,2 +4568,user_004568,user_004568@example.com, +4569,user_004569,user_004569@example.com,1 +4570,user_004570,user_004570@example.com,2 +4571,user_004571,user_004571@example.com, +4572,user_004572,user_004572@example.com,1 +4573,user_004573,user_004573@example.com,2 +4574,user_004574,user_004574@example.com, +4575,user_004575,user_004575@example.com,1 +4576,user_004576,user_004576@example.com,2 +4577,user_004577,user_004577@example.com, +4578,user_004578,user_004578@example.com,1 +4579,user_004579,user_004579@example.com,2 +4580,user_004580,user_004580@example.com, +4581,user_004581,user_004581@example.com,1 +4582,user_004582,user_004582@example.com,2 +4583,user_004583,user_004583@example.com, +4584,user_004584,user_004584@example.com,1 +4585,user_004585,user_004585@example.com,2 +4586,user_004586,user_004586@example.com, +4587,user_004587,user_004587@example.com,1 +4588,user_004588,user_004588@example.com,2 +4589,user_004589,user_004589@example.com, +4590,user_004590,user_004590@example.com,1 +4591,user_004591,user_004591@example.com,2 +4592,user_004592,user_004592@example.com, +4593,user_004593,user_004593@example.com,1 +4594,user_004594,user_004594@example.com,2 +4595,user_004595,user_004595@example.com, +4596,user_004596,user_004596@example.com,1 +4597,user_004597,user_004597@example.com,2 +4598,user_004598,user_004598@example.com, +4599,user_004599,user_004599@example.com,1 +4600,user_004600,user_004600@example.com,2 +4601,user_004601,user_004601@example.com, +4602,user_004602,user_004602@example.com,1 +4603,user_004603,user_004603@example.com,2 +4604,user_004604,user_004604@example.com, +4605,user_004605,user_004605@example.com,1 +4606,user_004606,user_004606@example.com,2 +4607,user_004607,user_004607@example.com, +4608,user_004608,user_004608@example.com,1 +4609,user_004609,user_004609@example.com,2 +4610,user_004610,user_004610@example.com, +4611,user_004611,user_004611@example.com,1 +4612,user_004612,user_004612@example.com,2 +4613,user_004613,user_004613@example.com, +4614,user_004614,user_004614@example.com,1 +4615,user_004615,user_004615@example.com,2 +4616,user_004616,user_004616@example.com, +4617,user_004617,user_004617@example.com,1 +4618,user_004618,user_004618@example.com,2 +4619,user_004619,user_004619@example.com, +4620,user_004620,user_004620@example.com,1 +4621,user_004621,user_004621@example.com,2 +4622,user_004622,user_004622@example.com, +4623,user_004623,user_004623@example.com,1 +4624,user_004624,user_004624@example.com,2 +4625,user_004625,user_004625@example.com, +4626,user_004626,user_004626@example.com,1 +4627,user_004627,user_004627@example.com,2 +4628,user_004628,user_004628@example.com, +4629,user_004629,user_004629@example.com,1 +4630,user_004630,user_004630@example.com,2 +4631,user_004631,user_004631@example.com, +4632,user_004632,user_004632@example.com,1 +4633,user_004633,user_004633@example.com,2 +4634,user_004634,user_004634@example.com, +4635,user_004635,user_004635@example.com,1 +4636,user_004636,user_004636@example.com,2 +4637,user_004637,user_004637@example.com, +4638,user_004638,user_004638@example.com,1 +4639,user_004639,user_004639@example.com,2 +4640,user_004640,user_004640@example.com, +4641,user_004641,user_004641@example.com,1 +4642,user_004642,user_004642@example.com,2 +4643,user_004643,user_004643@example.com, +4644,user_004644,user_004644@example.com,1 +4645,user_004645,user_004645@example.com,2 +4646,user_004646,user_004646@example.com, +4647,user_004647,user_004647@example.com,1 +4648,user_004648,user_004648@example.com,2 +4649,user_004649,user_004649@example.com, +4650,user_004650,user_004650@example.com,1 +4651,user_004651,user_004651@example.com,2 +4652,user_004652,user_004652@example.com, +4653,user_004653,user_004653@example.com,1 +4654,user_004654,user_004654@example.com,2 +4655,user_004655,user_004655@example.com, +4656,user_004656,user_004656@example.com,1 +4657,user_004657,user_004657@example.com,2 +4658,user_004658,user_004658@example.com, +4659,user_004659,user_004659@example.com,1 +4660,user_004660,user_004660@example.com,2 +4661,user_004661,user_004661@example.com, +4662,user_004662,user_004662@example.com,1 +4663,user_004663,user_004663@example.com,2 +4664,user_004664,user_004664@example.com, +4665,user_004665,user_004665@example.com,1 +4666,user_004666,user_004666@example.com,2 +4667,user_004667,user_004667@example.com, +4668,user_004668,user_004668@example.com,1 +4669,user_004669,user_004669@example.com,2 +4670,user_004670,user_004670@example.com, +4671,user_004671,user_004671@example.com,1 +4672,user_004672,user_004672@example.com,2 +4673,user_004673,user_004673@example.com, +4674,user_004674,user_004674@example.com,1 +4675,user_004675,user_004675@example.com,2 +4676,user_004676,user_004676@example.com, +4677,user_004677,user_004677@example.com,1 +4678,user_004678,user_004678@example.com,2 +4679,user_004679,user_004679@example.com, +4680,user_004680,user_004680@example.com,1 +4681,user_004681,user_004681@example.com,2 +4682,user_004682,user_004682@example.com, +4683,user_004683,user_004683@example.com,1 +4684,user_004684,user_004684@example.com,2 +4685,user_004685,user_004685@example.com, +4686,user_004686,user_004686@example.com,1 +4687,user_004687,user_004687@example.com,2 +4688,user_004688,user_004688@example.com, +4689,user_004689,user_004689@example.com,1 +4690,user_004690,user_004690@example.com,2 +4691,user_004691,user_004691@example.com, +4692,user_004692,user_004692@example.com,1 +4693,user_004693,user_004693@example.com,2 +4694,user_004694,user_004694@example.com, +4695,user_004695,user_004695@example.com,1 +4696,user_004696,user_004696@example.com,2 +4697,user_004697,user_004697@example.com, +4698,user_004698,user_004698@example.com,1 +4699,user_004699,user_004699@example.com,2 +4700,user_004700,user_004700@example.com, +4701,user_004701,user_004701@example.com,1 +4702,user_004702,user_004702@example.com,2 +4703,user_004703,user_004703@example.com, +4704,user_004704,user_004704@example.com,1 +4705,user_004705,user_004705@example.com,2 +4706,user_004706,user_004706@example.com, +4707,user_004707,user_004707@example.com,1 +4708,user_004708,user_004708@example.com,2 +4709,user_004709,user_004709@example.com, +4710,user_004710,user_004710@example.com,1 +4711,user_004711,user_004711@example.com,2 +4712,user_004712,user_004712@example.com, +4713,user_004713,user_004713@example.com,1 +4714,user_004714,user_004714@example.com,2 +4715,user_004715,user_004715@example.com, +4716,user_004716,user_004716@example.com,1 +4717,user_004717,user_004717@example.com,2 +4718,user_004718,user_004718@example.com, +4719,user_004719,user_004719@example.com,1 +4720,user_004720,user_004720@example.com,2 +4721,user_004721,user_004721@example.com, +4722,user_004722,user_004722@example.com,1 +4723,user_004723,user_004723@example.com,2 +4724,user_004724,user_004724@example.com, +4725,user_004725,user_004725@example.com,1 +4726,user_004726,user_004726@example.com,2 +4727,user_004727,user_004727@example.com, +4728,user_004728,user_004728@example.com,1 +4729,user_004729,user_004729@example.com,2 +4730,user_004730,user_004730@example.com, +4731,user_004731,user_004731@example.com,1 +4732,user_004732,user_004732@example.com,2 +4733,user_004733,user_004733@example.com, +4734,user_004734,user_004734@example.com,1 +4735,user_004735,user_004735@example.com,2 +4736,user_004736,user_004736@example.com, +4737,user_004737,user_004737@example.com,1 +4738,user_004738,user_004738@example.com,2 +4739,user_004739,user_004739@example.com, +4740,user_004740,user_004740@example.com,1 +4741,user_004741,user_004741@example.com,2 +4742,user_004742,user_004742@example.com, +4743,user_004743,user_004743@example.com,1 +4744,user_004744,user_004744@example.com,2 +4745,user_004745,user_004745@example.com, +4746,user_004746,user_004746@example.com,1 +4747,user_004747,user_004747@example.com,2 +4748,user_004748,user_004748@example.com, +4749,user_004749,user_004749@example.com,1 +4750,user_004750,user_004750@example.com,2 +4751,user_004751,user_004751@example.com, +4752,user_004752,user_004752@example.com,1 +4753,user_004753,user_004753@example.com,2 +4754,user_004754,user_004754@example.com, +4755,user_004755,user_004755@example.com,1 +4756,user_004756,user_004756@example.com,2 +4757,user_004757,user_004757@example.com, +4758,user_004758,user_004758@example.com,1 +4759,user_004759,user_004759@example.com,2 +4760,user_004760,user_004760@example.com, +4761,user_004761,user_004761@example.com,1 +4762,user_004762,user_004762@example.com,2 +4763,user_004763,user_004763@example.com, +4764,user_004764,user_004764@example.com,1 +4765,user_004765,user_004765@example.com,2 +4766,user_004766,user_004766@example.com, +4767,user_004767,user_004767@example.com,1 +4768,user_004768,user_004768@example.com,2 +4769,user_004769,user_004769@example.com, +4770,user_004770,user_004770@example.com,1 +4771,user_004771,user_004771@example.com,2 +4772,user_004772,user_004772@example.com, +4773,user_004773,user_004773@example.com,1 +4774,user_004774,user_004774@example.com,2 +4775,user_004775,user_004775@example.com, +4776,user_004776,user_004776@example.com,1 +4777,user_004777,user_004777@example.com,2 +4778,user_004778,user_004778@example.com, +4779,user_004779,user_004779@example.com,1 +4780,user_004780,user_004780@example.com,2 +4781,user_004781,user_004781@example.com, +4782,user_004782,user_004782@example.com,1 +4783,user_004783,user_004783@example.com,2 +4784,user_004784,user_004784@example.com, +4785,user_004785,user_004785@example.com,1 +4786,user_004786,user_004786@example.com,2 +4787,user_004787,user_004787@example.com, +4788,user_004788,user_004788@example.com,1 +4789,user_004789,user_004789@example.com,2 +4790,user_004790,user_004790@example.com, +4791,user_004791,user_004791@example.com,1 +4792,user_004792,user_004792@example.com,2 +4793,user_004793,user_004793@example.com, +4794,user_004794,user_004794@example.com,1 +4795,user_004795,user_004795@example.com,2 +4796,user_004796,user_004796@example.com, +4797,user_004797,user_004797@example.com,1 +4798,user_004798,user_004798@example.com,2 +4799,user_004799,user_004799@example.com, +4800,user_004800,user_004800@example.com,1 +4801,user_004801,user_004801@example.com,2 +4802,user_004802,user_004802@example.com, +4803,user_004803,user_004803@example.com,1 +4804,user_004804,user_004804@example.com,2 +4805,user_004805,user_004805@example.com, +4806,user_004806,user_004806@example.com,1 +4807,user_004807,user_004807@example.com,2 +4808,user_004808,user_004808@example.com, +4809,user_004809,user_004809@example.com,1 +4810,user_004810,user_004810@example.com,2 +4811,user_004811,user_004811@example.com, +4812,user_004812,user_004812@example.com,1 +4813,user_004813,user_004813@example.com,2 +4814,user_004814,user_004814@example.com, +4815,user_004815,user_004815@example.com,1 +4816,user_004816,user_004816@example.com,2 +4817,user_004817,user_004817@example.com, +4818,user_004818,user_004818@example.com,1 +4819,user_004819,user_004819@example.com,2 +4820,user_004820,user_004820@example.com, +4821,user_004821,user_004821@example.com,1 +4822,user_004822,user_004822@example.com,2 +4823,user_004823,user_004823@example.com, +4824,user_004824,user_004824@example.com,1 +4825,user_004825,user_004825@example.com,2 +4826,user_004826,user_004826@example.com, +4827,user_004827,user_004827@example.com,1 +4828,user_004828,user_004828@example.com,2 +4829,user_004829,user_004829@example.com, +4830,user_004830,user_004830@example.com,1 +4831,user_004831,user_004831@example.com,2 +4832,user_004832,user_004832@example.com, +4833,user_004833,user_004833@example.com,1 +4834,user_004834,user_004834@example.com,2 +4835,user_004835,user_004835@example.com, +4836,user_004836,user_004836@example.com,1 +4837,user_004837,user_004837@example.com,2 +4838,user_004838,user_004838@example.com, +4839,user_004839,user_004839@example.com,1 +4840,user_004840,user_004840@example.com,2 +4841,user_004841,user_004841@example.com, +4842,user_004842,user_004842@example.com,1 +4843,user_004843,user_004843@example.com,2 +4844,user_004844,user_004844@example.com, +4845,user_004845,user_004845@example.com,1 +4846,user_004846,user_004846@example.com,2 +4847,user_004847,user_004847@example.com, +4848,user_004848,user_004848@example.com,1 +4849,user_004849,user_004849@example.com,2 +4850,user_004850,user_004850@example.com, +4851,user_004851,user_004851@example.com,1 +4852,user_004852,user_004852@example.com,2 +4853,user_004853,user_004853@example.com, +4854,user_004854,user_004854@example.com,1 +4855,user_004855,user_004855@example.com,2 +4856,user_004856,user_004856@example.com, +4857,user_004857,user_004857@example.com,1 +4858,user_004858,user_004858@example.com,2 +4859,user_004859,user_004859@example.com, +4860,user_004860,user_004860@example.com,1 +4861,user_004861,user_004861@example.com,2 +4862,user_004862,user_004862@example.com, +4863,user_004863,user_004863@example.com,1 +4864,user_004864,user_004864@example.com,2 +4865,user_004865,user_004865@example.com, +4866,user_004866,user_004866@example.com,1 +4867,user_004867,user_004867@example.com,2 +4868,user_004868,user_004868@example.com, +4869,user_004869,user_004869@example.com,1 +4870,user_004870,user_004870@example.com,2 +4871,user_004871,user_004871@example.com, +4872,user_004872,user_004872@example.com,1 +4873,user_004873,user_004873@example.com,2 +4874,user_004874,user_004874@example.com, +4875,user_004875,user_004875@example.com,1 +4876,user_004876,user_004876@example.com,2 +4877,user_004877,user_004877@example.com, +4878,user_004878,user_004878@example.com,1 +4879,user_004879,user_004879@example.com,2 +4880,user_004880,user_004880@example.com, +4881,user_004881,user_004881@example.com,1 +4882,user_004882,user_004882@example.com,2 +4883,user_004883,user_004883@example.com, +4884,user_004884,user_004884@example.com,1 +4885,user_004885,user_004885@example.com,2 +4886,user_004886,user_004886@example.com, +4887,user_004887,user_004887@example.com,1 +4888,user_004888,user_004888@example.com,2 +4889,user_004889,user_004889@example.com, +4890,user_004890,user_004890@example.com,1 +4891,user_004891,user_004891@example.com,2 +4892,user_004892,user_004892@example.com, +4893,user_004893,user_004893@example.com,1 +4894,user_004894,user_004894@example.com,2 +4895,user_004895,user_004895@example.com, +4896,user_004896,user_004896@example.com,1 +4897,user_004897,user_004897@example.com,2 +4898,user_004898,user_004898@example.com, +4899,user_004899,user_004899@example.com,1 +4900,user_004900,user_004900@example.com,2 +4901,user_004901,user_004901@example.com, +4902,user_004902,user_004902@example.com,1 +4903,user_004903,user_004903@example.com,2 +4904,user_004904,user_004904@example.com, +4905,user_004905,user_004905@example.com,1 +4906,user_004906,user_004906@example.com,2 +4907,user_004907,user_004907@example.com, +4908,user_004908,user_004908@example.com,1 +4909,user_004909,user_004909@example.com,2 +4910,user_004910,user_004910@example.com, +4911,user_004911,user_004911@example.com,1 +4912,user_004912,user_004912@example.com,2 +4913,user_004913,user_004913@example.com, +4914,user_004914,user_004914@example.com,1 +4915,user_004915,user_004915@example.com,2 +4916,user_004916,user_004916@example.com, +4917,user_004917,user_004917@example.com,1 +4918,user_004918,user_004918@example.com,2 +4919,user_004919,user_004919@example.com, +4920,user_004920,user_004920@example.com,1 +4921,user_004921,user_004921@example.com,2 +4922,user_004922,user_004922@example.com, +4923,user_004923,user_004923@example.com,1 +4924,user_004924,user_004924@example.com,2 +4925,user_004925,user_004925@example.com, +4926,user_004926,user_004926@example.com,1 +4927,user_004927,user_004927@example.com,2 +4928,user_004928,user_004928@example.com, +4929,user_004929,user_004929@example.com,1 +4930,user_004930,user_004930@example.com,2 +4931,user_004931,user_004931@example.com, +4932,user_004932,user_004932@example.com,1 +4933,user_004933,user_004933@example.com,2 +4934,user_004934,user_004934@example.com, +4935,user_004935,user_004935@example.com,1 +4936,user_004936,user_004936@example.com,2 +4937,user_004937,user_004937@example.com, +4938,user_004938,user_004938@example.com,1 +4939,user_004939,user_004939@example.com,2 +4940,user_004940,user_004940@example.com, +4941,user_004941,user_004941@example.com,1 +4942,user_004942,user_004942@example.com,2 +4943,user_004943,user_004943@example.com, +4944,user_004944,user_004944@example.com,1 +4945,user_004945,user_004945@example.com,2 +4946,user_004946,user_004946@example.com, +4947,user_004947,user_004947@example.com,1 +4948,user_004948,user_004948@example.com,2 +4949,user_004949,user_004949@example.com, +4950,user_004950,user_004950@example.com,1 +4951,user_004951,user_004951@example.com,2 +4952,user_004952,user_004952@example.com, +4953,user_004953,user_004953@example.com,1 +4954,user_004954,user_004954@example.com,2 +4955,user_004955,user_004955@example.com, +4956,user_004956,user_004956@example.com,1 +4957,user_004957,user_004957@example.com,2 +4958,user_004958,user_004958@example.com, +4959,user_004959,user_004959@example.com,1 +4960,user_004960,user_004960@example.com,2 +4961,user_004961,user_004961@example.com, +4962,user_004962,user_004962@example.com,1 +4963,user_004963,user_004963@example.com,2 +4964,user_004964,user_004964@example.com, +4965,user_004965,user_004965@example.com,1 +4966,user_004966,user_004966@example.com,2 +4967,user_004967,user_004967@example.com, +4968,user_004968,user_004968@example.com,1 +4969,user_004969,user_004969@example.com,2 +4970,user_004970,user_004970@example.com, +4971,user_004971,user_004971@example.com,1 +4972,user_004972,user_004972@example.com,2 +4973,user_004973,user_004973@example.com, +4974,user_004974,user_004974@example.com,1 +4975,user_004975,user_004975@example.com,2 +4976,user_004976,user_004976@example.com, +4977,user_004977,user_004977@example.com,1 +4978,user_004978,user_004978@example.com,2 +4979,user_004979,user_004979@example.com, +4980,user_004980,user_004980@example.com,1 +4981,user_004981,user_004981@example.com,2 +4982,user_004982,user_004982@example.com, +4983,user_004983,user_004983@example.com,1 +4984,user_004984,user_004984@example.com,2 +4985,user_004985,user_004985@example.com, +4986,user_004986,user_004986@example.com,1 +4987,user_004987,user_004987@example.com,2 +4988,user_004988,user_004988@example.com, +4989,user_004989,user_004989@example.com,1 +4990,user_004990,user_004990@example.com,2 +4991,user_004991,user_004991@example.com, +4992,user_004992,user_004992@example.com,1 +4993,user_004993,user_004993@example.com,2 +4994,user_004994,user_004994@example.com, +4995,user_004995,user_004995@example.com,1 +4996,user_004996,user_004996@example.com,2 +4997,user_004997,user_004997@example.com, +4998,user_004998,user_004998@example.com,1 +4999,user_004999,user_004999@example.com,2 +5000,user_005000,user_005000@example.com, +5001,user_005001,user_005001@example.com,1 +5002,user_005002,user_005002@example.com,2 +5003,user_005003,user_005003@example.com, +5004,user_005004,user_005004@example.com,1 +5005,user_005005,user_005005@example.com,2 +5006,user_005006,user_005006@example.com, +5007,user_005007,user_005007@example.com,1 +5008,user_005008,user_005008@example.com,2 +5009,user_005009,user_005009@example.com, +5010,user_005010,user_005010@example.com,1 +5011,user_005011,user_005011@example.com,2 +5012,user_005012,user_005012@example.com, +5013,user_005013,user_005013@example.com,1 +5014,user_005014,user_005014@example.com,2 +5015,user_005015,user_005015@example.com, +5016,user_005016,user_005016@example.com,1 +5017,user_005017,user_005017@example.com,2 +5018,user_005018,user_005018@example.com, +5019,user_005019,user_005019@example.com,1 +5020,user_005020,user_005020@example.com,2 +5021,user_005021,user_005021@example.com, +5022,user_005022,user_005022@example.com,1 +5023,user_005023,user_005023@example.com,2 +5024,user_005024,user_005024@example.com, +5025,user_005025,user_005025@example.com,1 +5026,user_005026,user_005026@example.com,2 +5027,user_005027,user_005027@example.com, +5028,user_005028,user_005028@example.com,1 +5029,user_005029,user_005029@example.com,2 +5030,user_005030,user_005030@example.com, +5031,user_005031,user_005031@example.com,1 +5032,user_005032,user_005032@example.com,2 +5033,user_005033,user_005033@example.com, +5034,user_005034,user_005034@example.com,1 +5035,user_005035,user_005035@example.com,2 +5036,user_005036,user_005036@example.com, +5037,user_005037,user_005037@example.com,1 +5038,user_005038,user_005038@example.com,2 +5039,user_005039,user_005039@example.com, +5040,user_005040,user_005040@example.com,1 +5041,user_005041,user_005041@example.com,2 +5042,user_005042,user_005042@example.com, +5043,user_005043,user_005043@example.com,1 +5044,user_005044,user_005044@example.com,2 +5045,user_005045,user_005045@example.com, +5046,user_005046,user_005046@example.com,1 +5047,user_005047,user_005047@example.com,2 +5048,user_005048,user_005048@example.com, +5049,user_005049,user_005049@example.com,1 +5050,user_005050,user_005050@example.com,2 +5051,user_005051,user_005051@example.com, +5052,user_005052,user_005052@example.com,1 +5053,user_005053,user_005053@example.com,2 +5054,user_005054,user_005054@example.com, +5055,user_005055,user_005055@example.com,1 +5056,user_005056,user_005056@example.com,2 +5057,user_005057,user_005057@example.com, +5058,user_005058,user_005058@example.com,1 +5059,user_005059,user_005059@example.com,2 +5060,user_005060,user_005060@example.com, +5061,user_005061,user_005061@example.com,1 +5062,user_005062,user_005062@example.com,2 +5063,user_005063,user_005063@example.com, +5064,user_005064,user_005064@example.com,1 +5065,user_005065,user_005065@example.com,2 +5066,user_005066,user_005066@example.com, +5067,user_005067,user_005067@example.com,1 +5068,user_005068,user_005068@example.com,2 +5069,user_005069,user_005069@example.com, +5070,user_005070,user_005070@example.com,1 +5071,user_005071,user_005071@example.com,2 +5072,user_005072,user_005072@example.com, +5073,user_005073,user_005073@example.com,1 +5074,user_005074,user_005074@example.com,2 +5075,user_005075,user_005075@example.com, +5076,user_005076,user_005076@example.com,1 +5077,user_005077,user_005077@example.com,2 +5078,user_005078,user_005078@example.com, +5079,user_005079,user_005079@example.com,1 +5080,user_005080,user_005080@example.com,2 +5081,user_005081,user_005081@example.com, +5082,user_005082,user_005082@example.com,1 +5083,user_005083,user_005083@example.com,2 +5084,user_005084,user_005084@example.com, +5085,user_005085,user_005085@example.com,1 +5086,user_005086,user_005086@example.com,2 +5087,user_005087,user_005087@example.com, +5088,user_005088,user_005088@example.com,1 +5089,user_005089,user_005089@example.com,2 +5090,user_005090,user_005090@example.com, +5091,user_005091,user_005091@example.com,1 +5092,user_005092,user_005092@example.com,2 +5093,user_005093,user_005093@example.com, +5094,user_005094,user_005094@example.com,1 +5095,user_005095,user_005095@example.com,2 +5096,user_005096,user_005096@example.com, +5097,user_005097,user_005097@example.com,1 +5098,user_005098,user_005098@example.com,2 +5099,user_005099,user_005099@example.com, +5100,user_005100,user_005100@example.com,1 +5101,user_005101,user_005101@example.com,2 +5102,user_005102,user_005102@example.com, +5103,user_005103,user_005103@example.com,1 +5104,user_005104,user_005104@example.com,2 +5105,user_005105,user_005105@example.com, +5106,user_005106,user_005106@example.com,1 +5107,user_005107,user_005107@example.com,2 +5108,user_005108,user_005108@example.com, +5109,user_005109,user_005109@example.com,1 +5110,user_005110,user_005110@example.com,2 +5111,user_005111,user_005111@example.com, +5112,user_005112,user_005112@example.com,1 +5113,user_005113,user_005113@example.com,2 +5114,user_005114,user_005114@example.com, +5115,user_005115,user_005115@example.com,1 +5116,user_005116,user_005116@example.com,2 +5117,user_005117,user_005117@example.com, +5118,user_005118,user_005118@example.com,1 +5119,user_005119,user_005119@example.com,2 +5120,user_005120,user_005120@example.com, +5121,user_005121,user_005121@example.com,1 +5122,user_005122,user_005122@example.com,2 +5123,user_005123,user_005123@example.com, +5124,user_005124,user_005124@example.com,1 +5125,user_005125,user_005125@example.com,2 +5126,user_005126,user_005126@example.com, +5127,user_005127,user_005127@example.com,1 +5128,user_005128,user_005128@example.com,2 +5129,user_005129,user_005129@example.com, +5130,user_005130,user_005130@example.com,1 +5131,user_005131,user_005131@example.com,2 +5132,user_005132,user_005132@example.com, +5133,user_005133,user_005133@example.com,1 +5134,user_005134,user_005134@example.com,2 +5135,user_005135,user_005135@example.com, +5136,user_005136,user_005136@example.com,1 +5137,user_005137,user_005137@example.com,2 +5138,user_005138,user_005138@example.com, +5139,user_005139,user_005139@example.com,1 +5140,user_005140,user_005140@example.com,2 +5141,user_005141,user_005141@example.com, +5142,user_005142,user_005142@example.com,1 +5143,user_005143,user_005143@example.com,2 +5144,user_005144,user_005144@example.com, +5145,user_005145,user_005145@example.com,1 +5146,user_005146,user_005146@example.com,2 +5147,user_005147,user_005147@example.com, +5148,user_005148,user_005148@example.com,1 +5149,user_005149,user_005149@example.com,2 +5150,user_005150,user_005150@example.com, +5151,user_005151,user_005151@example.com,1 +5152,user_005152,user_005152@example.com,2 +5153,user_005153,user_005153@example.com, +5154,user_005154,user_005154@example.com,1 +5155,user_005155,user_005155@example.com,2 +5156,user_005156,user_005156@example.com, +5157,user_005157,user_005157@example.com,1 +5158,user_005158,user_005158@example.com,2 +5159,user_005159,user_005159@example.com, +5160,user_005160,user_005160@example.com,1 +5161,user_005161,user_005161@example.com,2 +5162,user_005162,user_005162@example.com, +5163,user_005163,user_005163@example.com,1 +5164,user_005164,user_005164@example.com,2 +5165,user_005165,user_005165@example.com, +5166,user_005166,user_005166@example.com,1 +5167,user_005167,user_005167@example.com,2 +5168,user_005168,user_005168@example.com, +5169,user_005169,user_005169@example.com,1 +5170,user_005170,user_005170@example.com,2 +5171,user_005171,user_005171@example.com, +5172,user_005172,user_005172@example.com,1 +5173,user_005173,user_005173@example.com,2 +5174,user_005174,user_005174@example.com, +5175,user_005175,user_005175@example.com,1 +5176,user_005176,user_005176@example.com,2 +5177,user_005177,user_005177@example.com, +5178,user_005178,user_005178@example.com,1 +5179,user_005179,user_005179@example.com,2 +5180,user_005180,user_005180@example.com, +5181,user_005181,user_005181@example.com,1 +5182,user_005182,user_005182@example.com,2 +5183,user_005183,user_005183@example.com, +5184,user_005184,user_005184@example.com,1 +5185,user_005185,user_005185@example.com,2 +5186,user_005186,user_005186@example.com, +5187,user_005187,user_005187@example.com,1 +5188,user_005188,user_005188@example.com,2 +5189,user_005189,user_005189@example.com, +5190,user_005190,user_005190@example.com,1 +5191,user_005191,user_005191@example.com,2 +5192,user_005192,user_005192@example.com, +5193,user_005193,user_005193@example.com,1 +5194,user_005194,user_005194@example.com,2 +5195,user_005195,user_005195@example.com, +5196,user_005196,user_005196@example.com,1 +5197,user_005197,user_005197@example.com,2 +5198,user_005198,user_005198@example.com, +5199,user_005199,user_005199@example.com,1 +5200,user_005200,user_005200@example.com,2 +5201,user_005201,user_005201@example.com, +5202,user_005202,user_005202@example.com,1 +5203,user_005203,user_005203@example.com,2 +5204,user_005204,user_005204@example.com, +5205,user_005205,user_005205@example.com,1 +5206,user_005206,user_005206@example.com,2 +5207,user_005207,user_005207@example.com, +5208,user_005208,user_005208@example.com,1 +5209,user_005209,user_005209@example.com,2 +5210,user_005210,user_005210@example.com, +5211,user_005211,user_005211@example.com,1 +5212,user_005212,user_005212@example.com,2 +5213,user_005213,user_005213@example.com, +5214,user_005214,user_005214@example.com,1 +5215,user_005215,user_005215@example.com,2 +5216,user_005216,user_005216@example.com, +5217,user_005217,user_005217@example.com,1 +5218,user_005218,user_005218@example.com,2 +5219,user_005219,user_005219@example.com, +5220,user_005220,user_005220@example.com,1 +5221,user_005221,user_005221@example.com,2 +5222,user_005222,user_005222@example.com, +5223,user_005223,user_005223@example.com,1 +5224,user_005224,user_005224@example.com,2 +5225,user_005225,user_005225@example.com, +5226,user_005226,user_005226@example.com,1 +5227,user_005227,user_005227@example.com,2 +5228,user_005228,user_005228@example.com, +5229,user_005229,user_005229@example.com,1 +5230,user_005230,user_005230@example.com,2 +5231,user_005231,user_005231@example.com, +5232,user_005232,user_005232@example.com,1 +5233,user_005233,user_005233@example.com,2 +5234,user_005234,user_005234@example.com, +5235,user_005235,user_005235@example.com,1 +5236,user_005236,user_005236@example.com,2 +5237,user_005237,user_005237@example.com, +5238,user_005238,user_005238@example.com,1 +5239,user_005239,user_005239@example.com,2 +5240,user_005240,user_005240@example.com, +5241,user_005241,user_005241@example.com,1 +5242,user_005242,user_005242@example.com,2 +5243,user_005243,user_005243@example.com, +5244,user_005244,user_005244@example.com,1 +5245,user_005245,user_005245@example.com,2 +5246,user_005246,user_005246@example.com, +5247,user_005247,user_005247@example.com,1 +5248,user_005248,user_005248@example.com,2 +5249,user_005249,user_005249@example.com, +5250,user_005250,user_005250@example.com,1 +5251,user_005251,user_005251@example.com,2 +5252,user_005252,user_005252@example.com, +5253,user_005253,user_005253@example.com,1 +5254,user_005254,user_005254@example.com,2 +5255,user_005255,user_005255@example.com, +5256,user_005256,user_005256@example.com,1 +5257,user_005257,user_005257@example.com,2 +5258,user_005258,user_005258@example.com, +5259,user_005259,user_005259@example.com,1 +5260,user_005260,user_005260@example.com,2 +5261,user_005261,user_005261@example.com, +5262,user_005262,user_005262@example.com,1 +5263,user_005263,user_005263@example.com,2 +5264,user_005264,user_005264@example.com, +5265,user_005265,user_005265@example.com,1 +5266,user_005266,user_005266@example.com,2 +5267,user_005267,user_005267@example.com, +5268,user_005268,user_005268@example.com,1 +5269,user_005269,user_005269@example.com,2 +5270,user_005270,user_005270@example.com, +5271,user_005271,user_005271@example.com,1 +5272,user_005272,user_005272@example.com,2 +5273,user_005273,user_005273@example.com, +5274,user_005274,user_005274@example.com,1 +5275,user_005275,user_005275@example.com,2 +5276,user_005276,user_005276@example.com, +5277,user_005277,user_005277@example.com,1 +5278,user_005278,user_005278@example.com,2 +5279,user_005279,user_005279@example.com, +5280,user_005280,user_005280@example.com,1 +5281,user_005281,user_005281@example.com,2 +5282,user_005282,user_005282@example.com, +5283,user_005283,user_005283@example.com,1 +5284,user_005284,user_005284@example.com,2 +5285,user_005285,user_005285@example.com, +5286,user_005286,user_005286@example.com,1 +5287,user_005287,user_005287@example.com,2 +5288,user_005288,user_005288@example.com, +5289,user_005289,user_005289@example.com,1 +5290,user_005290,user_005290@example.com,2 +5291,user_005291,user_005291@example.com, +5292,user_005292,user_005292@example.com,1 +5293,user_005293,user_005293@example.com,2 +5294,user_005294,user_005294@example.com, +5295,user_005295,user_005295@example.com,1 +5296,user_005296,user_005296@example.com,2 +5297,user_005297,user_005297@example.com, +5298,user_005298,user_005298@example.com,1 +5299,user_005299,user_005299@example.com,2 +5300,user_005300,user_005300@example.com, +5301,user_005301,user_005301@example.com,1 +5302,user_005302,user_005302@example.com,2 +5303,user_005303,user_005303@example.com, +5304,user_005304,user_005304@example.com,1 +5305,user_005305,user_005305@example.com,2 +5306,user_005306,user_005306@example.com, +5307,user_005307,user_005307@example.com,1 +5308,user_005308,user_005308@example.com,2 +5309,user_005309,user_005309@example.com, +5310,user_005310,user_005310@example.com,1 +5311,user_005311,user_005311@example.com,2 +5312,user_005312,user_005312@example.com, +5313,user_005313,user_005313@example.com,1 +5314,user_005314,user_005314@example.com,2 +5315,user_005315,user_005315@example.com, +5316,user_005316,user_005316@example.com,1 +5317,user_005317,user_005317@example.com,2 +5318,user_005318,user_005318@example.com, +5319,user_005319,user_005319@example.com,1 +5320,user_005320,user_005320@example.com,2 +5321,user_005321,user_005321@example.com, +5322,user_005322,user_005322@example.com,1 +5323,user_005323,user_005323@example.com,2 +5324,user_005324,user_005324@example.com, +5325,user_005325,user_005325@example.com,1 +5326,user_005326,user_005326@example.com,2 +5327,user_005327,user_005327@example.com, +5328,user_005328,user_005328@example.com,1 +5329,user_005329,user_005329@example.com,2 +5330,user_005330,user_005330@example.com, +5331,user_005331,user_005331@example.com,1 +5332,user_005332,user_005332@example.com,2 +5333,user_005333,user_005333@example.com, +5334,user_005334,user_005334@example.com,1 +5335,user_005335,user_005335@example.com,2 +5336,user_005336,user_005336@example.com, +5337,user_005337,user_005337@example.com,1 +5338,user_005338,user_005338@example.com,2 +5339,user_005339,user_005339@example.com, +5340,user_005340,user_005340@example.com,1 +5341,user_005341,user_005341@example.com,2 +5342,user_005342,user_005342@example.com, +5343,user_005343,user_005343@example.com,1 +5344,user_005344,user_005344@example.com,2 +5345,user_005345,user_005345@example.com, +5346,user_005346,user_005346@example.com,1 +5347,user_005347,user_005347@example.com,2 +5348,user_005348,user_005348@example.com, +5349,user_005349,user_005349@example.com,1 +5350,user_005350,user_005350@example.com,2 +5351,user_005351,user_005351@example.com, +5352,user_005352,user_005352@example.com,1 +5353,user_005353,user_005353@example.com,2 +5354,user_005354,user_005354@example.com, +5355,user_005355,user_005355@example.com,1 +5356,user_005356,user_005356@example.com,2 +5357,user_005357,user_005357@example.com, +5358,user_005358,user_005358@example.com,1 +5359,user_005359,user_005359@example.com,2 +5360,user_005360,user_005360@example.com, +5361,user_005361,user_005361@example.com,1 +5362,user_005362,user_005362@example.com,2 +5363,user_005363,user_005363@example.com, +5364,user_005364,user_005364@example.com,1 +5365,user_005365,user_005365@example.com,2 +5366,user_005366,user_005366@example.com, +5367,user_005367,user_005367@example.com,1 +5368,user_005368,user_005368@example.com,2 +5369,user_005369,user_005369@example.com, +5370,user_005370,user_005370@example.com,1 +5371,user_005371,user_005371@example.com,2 +5372,user_005372,user_005372@example.com, +5373,user_005373,user_005373@example.com,1 +5374,user_005374,user_005374@example.com,2 +5375,user_005375,user_005375@example.com, +5376,user_005376,user_005376@example.com,1 +5377,user_005377,user_005377@example.com,2 +5378,user_005378,user_005378@example.com, +5379,user_005379,user_005379@example.com,1 +5380,user_005380,user_005380@example.com,2 +5381,user_005381,user_005381@example.com, +5382,user_005382,user_005382@example.com,1 +5383,user_005383,user_005383@example.com,2 +5384,user_005384,user_005384@example.com, +5385,user_005385,user_005385@example.com,1 +5386,user_005386,user_005386@example.com,2 +5387,user_005387,user_005387@example.com, +5388,user_005388,user_005388@example.com,1 +5389,user_005389,user_005389@example.com,2 +5390,user_005390,user_005390@example.com, +5391,user_005391,user_005391@example.com,1 +5392,user_005392,user_005392@example.com,2 +5393,user_005393,user_005393@example.com, +5394,user_005394,user_005394@example.com,1 +5395,user_005395,user_005395@example.com,2 +5396,user_005396,user_005396@example.com, +5397,user_005397,user_005397@example.com,1 +5398,user_005398,user_005398@example.com,2 +5399,user_005399,user_005399@example.com, +5400,user_005400,user_005400@example.com,1 +5401,user_005401,user_005401@example.com,2 +5402,user_005402,user_005402@example.com, +5403,user_005403,user_005403@example.com,1 +5404,user_005404,user_005404@example.com,2 +5405,user_005405,user_005405@example.com, +5406,user_005406,user_005406@example.com,1 +5407,user_005407,user_005407@example.com,2 +5408,user_005408,user_005408@example.com, +5409,user_005409,user_005409@example.com,1 +5410,user_005410,user_005410@example.com,2 +5411,user_005411,user_005411@example.com, +5412,user_005412,user_005412@example.com,1 +5413,user_005413,user_005413@example.com,2 +5414,user_005414,user_005414@example.com, +5415,user_005415,user_005415@example.com,1 +5416,user_005416,user_005416@example.com,2 +5417,user_005417,user_005417@example.com, +5418,user_005418,user_005418@example.com,1 +5419,user_005419,user_005419@example.com,2 +5420,user_005420,user_005420@example.com, +5421,user_005421,user_005421@example.com,1 +5422,user_005422,user_005422@example.com,2 +5423,user_005423,user_005423@example.com, +5424,user_005424,user_005424@example.com,1 +5425,user_005425,user_005425@example.com,2 +5426,user_005426,user_005426@example.com, +5427,user_005427,user_005427@example.com,1 +5428,user_005428,user_005428@example.com,2 +5429,user_005429,user_005429@example.com, +5430,user_005430,user_005430@example.com,1 +5431,user_005431,user_005431@example.com,2 +5432,user_005432,user_005432@example.com, +5433,user_005433,user_005433@example.com,1 +5434,user_005434,user_005434@example.com,2 +5435,user_005435,user_005435@example.com, +5436,user_005436,user_005436@example.com,1 +5437,user_005437,user_005437@example.com,2 +5438,user_005438,user_005438@example.com, +5439,user_005439,user_005439@example.com,1 +5440,user_005440,user_005440@example.com,2 +5441,user_005441,user_005441@example.com, +5442,user_005442,user_005442@example.com,1 +5443,user_005443,user_005443@example.com,2 +5444,user_005444,user_005444@example.com, +5445,user_005445,user_005445@example.com,1 +5446,user_005446,user_005446@example.com,2 +5447,user_005447,user_005447@example.com, +5448,user_005448,user_005448@example.com,1 +5449,user_005449,user_005449@example.com,2 +5450,user_005450,user_005450@example.com, +5451,user_005451,user_005451@example.com,1 +5452,user_005452,user_005452@example.com,2 +5453,user_005453,user_005453@example.com, +5454,user_005454,user_005454@example.com,1 +5455,user_005455,user_005455@example.com,2 +5456,user_005456,user_005456@example.com, +5457,user_005457,user_005457@example.com,1 +5458,user_005458,user_005458@example.com,2 +5459,user_005459,user_005459@example.com, +5460,user_005460,user_005460@example.com,1 +5461,user_005461,user_005461@example.com,2 +5462,user_005462,user_005462@example.com, +5463,user_005463,user_005463@example.com,1 +5464,user_005464,user_005464@example.com,2 +5465,user_005465,user_005465@example.com, +5466,user_005466,user_005466@example.com,1 +5467,user_005467,user_005467@example.com,2 +5468,user_005468,user_005468@example.com, +5469,user_005469,user_005469@example.com,1 +5470,user_005470,user_005470@example.com,2 +5471,user_005471,user_005471@example.com, +5472,user_005472,user_005472@example.com,1 +5473,user_005473,user_005473@example.com,2 +5474,user_005474,user_005474@example.com, +5475,user_005475,user_005475@example.com,1 +5476,user_005476,user_005476@example.com,2 +5477,user_005477,user_005477@example.com, +5478,user_005478,user_005478@example.com,1 +5479,user_005479,user_005479@example.com,2 +5480,user_005480,user_005480@example.com, +5481,user_005481,user_005481@example.com,1 +5482,user_005482,user_005482@example.com,2 +5483,user_005483,user_005483@example.com, +5484,user_005484,user_005484@example.com,1 +5485,user_005485,user_005485@example.com,2 +5486,user_005486,user_005486@example.com, +5487,user_005487,user_005487@example.com,1 +5488,user_005488,user_005488@example.com,2 +5489,user_005489,user_005489@example.com, +5490,user_005490,user_005490@example.com,1 +5491,user_005491,user_005491@example.com,2 +5492,user_005492,user_005492@example.com, +5493,user_005493,user_005493@example.com,1 +5494,user_005494,user_005494@example.com,2 +5495,user_005495,user_005495@example.com, +5496,user_005496,user_005496@example.com,1 +5497,user_005497,user_005497@example.com,2 +5498,user_005498,user_005498@example.com, +5499,user_005499,user_005499@example.com,1 +5500,user_005500,user_005500@example.com,2 +5501,user_005501,user_005501@example.com, +5502,user_005502,user_005502@example.com,1 +5503,user_005503,user_005503@example.com,2 +5504,user_005504,user_005504@example.com, +5505,user_005505,user_005505@example.com,1 +5506,user_005506,user_005506@example.com,2 +5507,user_005507,user_005507@example.com, +5508,user_005508,user_005508@example.com,1 +5509,user_005509,user_005509@example.com,2 +5510,user_005510,user_005510@example.com, +5511,user_005511,user_005511@example.com,1 +5512,user_005512,user_005512@example.com,2 +5513,user_005513,user_005513@example.com, +5514,user_005514,user_005514@example.com,1 +5515,user_005515,user_005515@example.com,2 +5516,user_005516,user_005516@example.com, +5517,user_005517,user_005517@example.com,1 +5518,user_005518,user_005518@example.com,2 +5519,user_005519,user_005519@example.com, +5520,user_005520,user_005520@example.com,1 +5521,user_005521,user_005521@example.com,2 +5522,user_005522,user_005522@example.com, +5523,user_005523,user_005523@example.com,1 +5524,user_005524,user_005524@example.com,2 +5525,user_005525,user_005525@example.com, +5526,user_005526,user_005526@example.com,1 +5527,user_005527,user_005527@example.com,2 +5528,user_005528,user_005528@example.com, +5529,user_005529,user_005529@example.com,1 +5530,user_005530,user_005530@example.com,2 +5531,user_005531,user_005531@example.com, +5532,user_005532,user_005532@example.com,1 +5533,user_005533,user_005533@example.com,2 +5534,user_005534,user_005534@example.com, +5535,user_005535,user_005535@example.com,1 +5536,user_005536,user_005536@example.com,2 +5537,user_005537,user_005537@example.com, +5538,user_005538,user_005538@example.com,1 +5539,user_005539,user_005539@example.com,2 +5540,user_005540,user_005540@example.com, +5541,user_005541,user_005541@example.com,1 +5542,user_005542,user_005542@example.com,2 +5543,user_005543,user_005543@example.com, +5544,user_005544,user_005544@example.com,1 +5545,user_005545,user_005545@example.com,2 +5546,user_005546,user_005546@example.com, +5547,user_005547,user_005547@example.com,1 +5548,user_005548,user_005548@example.com,2 +5549,user_005549,user_005549@example.com, +5550,user_005550,user_005550@example.com,1 +5551,user_005551,user_005551@example.com,2 +5552,user_005552,user_005552@example.com, +5553,user_005553,user_005553@example.com,1 +5554,user_005554,user_005554@example.com,2 +5555,user_005555,user_005555@example.com, +5556,user_005556,user_005556@example.com,1 +5557,user_005557,user_005557@example.com,2 +5558,user_005558,user_005558@example.com, +5559,user_005559,user_005559@example.com,1 +5560,user_005560,user_005560@example.com,2 +5561,user_005561,user_005561@example.com, +5562,user_005562,user_005562@example.com,1 +5563,user_005563,user_005563@example.com,2 +5564,user_005564,user_005564@example.com, +5565,user_005565,user_005565@example.com,1 +5566,user_005566,user_005566@example.com,2 +5567,user_005567,user_005567@example.com, +5568,user_005568,user_005568@example.com,1 +5569,user_005569,user_005569@example.com,2 +5570,user_005570,user_005570@example.com, +5571,user_005571,user_005571@example.com,1 +5572,user_005572,user_005572@example.com,2 +5573,user_005573,user_005573@example.com, +5574,user_005574,user_005574@example.com,1 +5575,user_005575,user_005575@example.com,2 +5576,user_005576,user_005576@example.com, +5577,user_005577,user_005577@example.com,1 +5578,user_005578,user_005578@example.com,2 +5579,user_005579,user_005579@example.com, +5580,user_005580,user_005580@example.com,1 +5581,user_005581,user_005581@example.com,2 +5582,user_005582,user_005582@example.com, +5583,user_005583,user_005583@example.com,1 +5584,user_005584,user_005584@example.com,2 +5585,user_005585,user_005585@example.com, +5586,user_005586,user_005586@example.com,1 +5587,user_005587,user_005587@example.com,2 +5588,user_005588,user_005588@example.com, +5589,user_005589,user_005589@example.com,1 +5590,user_005590,user_005590@example.com,2 +5591,user_005591,user_005591@example.com, +5592,user_005592,user_005592@example.com,1 +5593,user_005593,user_005593@example.com,2 +5594,user_005594,user_005594@example.com, +5595,user_005595,user_005595@example.com,1 +5596,user_005596,user_005596@example.com,2 +5597,user_005597,user_005597@example.com, +5598,user_005598,user_005598@example.com,1 +5599,user_005599,user_005599@example.com,2 +5600,user_005600,user_005600@example.com, +5601,user_005601,user_005601@example.com,1 +5602,user_005602,user_005602@example.com,2 +5603,user_005603,user_005603@example.com, +5604,user_005604,user_005604@example.com,1 +5605,user_005605,user_005605@example.com,2 +5606,user_005606,user_005606@example.com, +5607,user_005607,user_005607@example.com,1 +5608,user_005608,user_005608@example.com,2 +5609,user_005609,user_005609@example.com, +5610,user_005610,user_005610@example.com,1 +5611,user_005611,user_005611@example.com,2 +5612,user_005612,user_005612@example.com, +5613,user_005613,user_005613@example.com,1 +5614,user_005614,user_005614@example.com,2 +5615,user_005615,user_005615@example.com, +5616,user_005616,user_005616@example.com,1 +5617,user_005617,user_005617@example.com,2 +5618,user_005618,user_005618@example.com, +5619,user_005619,user_005619@example.com,1 +5620,user_005620,user_005620@example.com,2 +5621,user_005621,user_005621@example.com, +5622,user_005622,user_005622@example.com,1 +5623,user_005623,user_005623@example.com,2 +5624,user_005624,user_005624@example.com, +5625,user_005625,user_005625@example.com,1 +5626,user_005626,user_005626@example.com,2 +5627,user_005627,user_005627@example.com, +5628,user_005628,user_005628@example.com,1 +5629,user_005629,user_005629@example.com,2 +5630,user_005630,user_005630@example.com, +5631,user_005631,user_005631@example.com,1 +5632,user_005632,user_005632@example.com,2 +5633,user_005633,user_005633@example.com, +5634,user_005634,user_005634@example.com,1 +5635,user_005635,user_005635@example.com,2 +5636,user_005636,user_005636@example.com, +5637,user_005637,user_005637@example.com,1 +5638,user_005638,user_005638@example.com,2 +5639,user_005639,user_005639@example.com, +5640,user_005640,user_005640@example.com,1 +5641,user_005641,user_005641@example.com,2 +5642,user_005642,user_005642@example.com, +5643,user_005643,user_005643@example.com,1 +5644,user_005644,user_005644@example.com,2 +5645,user_005645,user_005645@example.com, +5646,user_005646,user_005646@example.com,1 +5647,user_005647,user_005647@example.com,2 +5648,user_005648,user_005648@example.com, +5649,user_005649,user_005649@example.com,1 +5650,user_005650,user_005650@example.com,2 +5651,user_005651,user_005651@example.com, +5652,user_005652,user_005652@example.com,1 +5653,user_005653,user_005653@example.com,2 +5654,user_005654,user_005654@example.com, +5655,user_005655,user_005655@example.com,1 +5656,user_005656,user_005656@example.com,2 +5657,user_005657,user_005657@example.com, +5658,user_005658,user_005658@example.com,1 +5659,user_005659,user_005659@example.com,2 +5660,user_005660,user_005660@example.com, +5661,user_005661,user_005661@example.com,1 +5662,user_005662,user_005662@example.com,2 +5663,user_005663,user_005663@example.com, +5664,user_005664,user_005664@example.com,1 +5665,user_005665,user_005665@example.com,2 +5666,user_005666,user_005666@example.com, +5667,user_005667,user_005667@example.com,1 +5668,user_005668,user_005668@example.com,2 +5669,user_005669,user_005669@example.com, +5670,user_005670,user_005670@example.com,1 +5671,user_005671,user_005671@example.com,2 +5672,user_005672,user_005672@example.com, +5673,user_005673,user_005673@example.com,1 +5674,user_005674,user_005674@example.com,2 +5675,user_005675,user_005675@example.com, +5676,user_005676,user_005676@example.com,1 +5677,user_005677,user_005677@example.com,2 +5678,user_005678,user_005678@example.com, +5679,user_005679,user_005679@example.com,1 +5680,user_005680,user_005680@example.com,2 +5681,user_005681,user_005681@example.com, +5682,user_005682,user_005682@example.com,1 +5683,user_005683,user_005683@example.com,2 +5684,user_005684,user_005684@example.com, +5685,user_005685,user_005685@example.com,1 +5686,user_005686,user_005686@example.com,2 +5687,user_005687,user_005687@example.com, +5688,user_005688,user_005688@example.com,1 +5689,user_005689,user_005689@example.com,2 +5690,user_005690,user_005690@example.com, +5691,user_005691,user_005691@example.com,1 +5692,user_005692,user_005692@example.com,2 +5693,user_005693,user_005693@example.com, +5694,user_005694,user_005694@example.com,1 +5695,user_005695,user_005695@example.com,2 +5696,user_005696,user_005696@example.com, +5697,user_005697,user_005697@example.com,1 +5698,user_005698,user_005698@example.com,2 +5699,user_005699,user_005699@example.com, +5700,user_005700,user_005700@example.com,1 +5701,user_005701,user_005701@example.com,2 +5702,user_005702,user_005702@example.com, +5703,user_005703,user_005703@example.com,1 +5704,user_005704,user_005704@example.com,2 +5705,user_005705,user_005705@example.com, +5706,user_005706,user_005706@example.com,1 +5707,user_005707,user_005707@example.com,2 +5708,user_005708,user_005708@example.com, +5709,user_005709,user_005709@example.com,1 +5710,user_005710,user_005710@example.com,2 +5711,user_005711,user_005711@example.com, +5712,user_005712,user_005712@example.com,1 +5713,user_005713,user_005713@example.com,2 +5714,user_005714,user_005714@example.com, +5715,user_005715,user_005715@example.com,1 +5716,user_005716,user_005716@example.com,2 +5717,user_005717,user_005717@example.com, +5718,user_005718,user_005718@example.com,1 +5719,user_005719,user_005719@example.com,2 +5720,user_005720,user_005720@example.com, +5721,user_005721,user_005721@example.com,1 +5722,user_005722,user_005722@example.com,2 +5723,user_005723,user_005723@example.com, +5724,user_005724,user_005724@example.com,1 +5725,user_005725,user_005725@example.com,2 +5726,user_005726,user_005726@example.com, +5727,user_005727,user_005727@example.com,1 +5728,user_005728,user_005728@example.com,2 +5729,user_005729,user_005729@example.com, +5730,user_005730,user_005730@example.com,1 +5731,user_005731,user_005731@example.com,2 +5732,user_005732,user_005732@example.com, +5733,user_005733,user_005733@example.com,1 +5734,user_005734,user_005734@example.com,2 +5735,user_005735,user_005735@example.com, +5736,user_005736,user_005736@example.com,1 +5737,user_005737,user_005737@example.com,2 +5738,user_005738,user_005738@example.com, +5739,user_005739,user_005739@example.com,1 +5740,user_005740,user_005740@example.com,2 +5741,user_005741,user_005741@example.com, +5742,user_005742,user_005742@example.com,1 +5743,user_005743,user_005743@example.com,2 +5744,user_005744,user_005744@example.com, +5745,user_005745,user_005745@example.com,1 +5746,user_005746,user_005746@example.com,2 +5747,user_005747,user_005747@example.com, +5748,user_005748,user_005748@example.com,1 +5749,user_005749,user_005749@example.com,2 +5750,user_005750,user_005750@example.com, +5751,user_005751,user_005751@example.com,1 +5752,user_005752,user_005752@example.com,2 +5753,user_005753,user_005753@example.com, +5754,user_005754,user_005754@example.com,1 +5755,user_005755,user_005755@example.com,2 +5756,user_005756,user_005756@example.com, +5757,user_005757,user_005757@example.com,1 +5758,user_005758,user_005758@example.com,2 +5759,user_005759,user_005759@example.com, +5760,user_005760,user_005760@example.com,1 +5761,user_005761,user_005761@example.com,2 +5762,user_005762,user_005762@example.com, +5763,user_005763,user_005763@example.com,1 +5764,user_005764,user_005764@example.com,2 +5765,user_005765,user_005765@example.com, +5766,user_005766,user_005766@example.com,1 +5767,user_005767,user_005767@example.com,2 +5768,user_005768,user_005768@example.com, +5769,user_005769,user_005769@example.com,1 +5770,user_005770,user_005770@example.com,2 +5771,user_005771,user_005771@example.com, +5772,user_005772,user_005772@example.com,1 +5773,user_005773,user_005773@example.com,2 +5774,user_005774,user_005774@example.com, +5775,user_005775,user_005775@example.com,1 +5776,user_005776,user_005776@example.com,2 +5777,user_005777,user_005777@example.com, +5778,user_005778,user_005778@example.com,1 +5779,user_005779,user_005779@example.com,2 +5780,user_005780,user_005780@example.com, +5781,user_005781,user_005781@example.com,1 +5782,user_005782,user_005782@example.com,2 +5783,user_005783,user_005783@example.com, +5784,user_005784,user_005784@example.com,1 +5785,user_005785,user_005785@example.com,2 +5786,user_005786,user_005786@example.com, +5787,user_005787,user_005787@example.com,1 +5788,user_005788,user_005788@example.com,2 +5789,user_005789,user_005789@example.com, +5790,user_005790,user_005790@example.com,1 +5791,user_005791,user_005791@example.com,2 +5792,user_005792,user_005792@example.com, +5793,user_005793,user_005793@example.com,1 +5794,user_005794,user_005794@example.com,2 +5795,user_005795,user_005795@example.com, +5796,user_005796,user_005796@example.com,1 +5797,user_005797,user_005797@example.com,2 +5798,user_005798,user_005798@example.com, +5799,user_005799,user_005799@example.com,1 +5800,user_005800,user_005800@example.com,2 +5801,user_005801,user_005801@example.com, +5802,user_005802,user_005802@example.com,1 +5803,user_005803,user_005803@example.com,2 +5804,user_005804,user_005804@example.com, +5805,user_005805,user_005805@example.com,1 +5806,user_005806,user_005806@example.com,2 +5807,user_005807,user_005807@example.com, +5808,user_005808,user_005808@example.com,1 +5809,user_005809,user_005809@example.com,2 +5810,user_005810,user_005810@example.com, +5811,user_005811,user_005811@example.com,1 +5812,user_005812,user_005812@example.com,2 +5813,user_005813,user_005813@example.com, +5814,user_005814,user_005814@example.com,1 +5815,user_005815,user_005815@example.com,2 +5816,user_005816,user_005816@example.com, +5817,user_005817,user_005817@example.com,1 +5818,user_005818,user_005818@example.com,2 +5819,user_005819,user_005819@example.com, +5820,user_005820,user_005820@example.com,1 +5821,user_005821,user_005821@example.com,2 +5822,user_005822,user_005822@example.com, +5823,user_005823,user_005823@example.com,1 +5824,user_005824,user_005824@example.com,2 +5825,user_005825,user_005825@example.com, +5826,user_005826,user_005826@example.com,1 +5827,user_005827,user_005827@example.com,2 +5828,user_005828,user_005828@example.com, +5829,user_005829,user_005829@example.com,1 +5830,user_005830,user_005830@example.com,2 +5831,user_005831,user_005831@example.com, +5832,user_005832,user_005832@example.com,1 +5833,user_005833,user_005833@example.com,2 +5834,user_005834,user_005834@example.com, +5835,user_005835,user_005835@example.com,1 +5836,user_005836,user_005836@example.com,2 +5837,user_005837,user_005837@example.com, +5838,user_005838,user_005838@example.com,1 +5839,user_005839,user_005839@example.com,2 +5840,user_005840,user_005840@example.com, +5841,user_005841,user_005841@example.com,1 +5842,user_005842,user_005842@example.com,2 +5843,user_005843,user_005843@example.com, +5844,user_005844,user_005844@example.com,1 +5845,user_005845,user_005845@example.com,2 +5846,user_005846,user_005846@example.com, +5847,user_005847,user_005847@example.com,1 +5848,user_005848,user_005848@example.com,2 +5849,user_005849,user_005849@example.com, +5850,user_005850,user_005850@example.com,1 +5851,user_005851,user_005851@example.com,2 +5852,user_005852,user_005852@example.com, +5853,user_005853,user_005853@example.com,1 +5854,user_005854,user_005854@example.com,2 +5855,user_005855,user_005855@example.com, +5856,user_005856,user_005856@example.com,1 +5857,user_005857,user_005857@example.com,2 +5858,user_005858,user_005858@example.com, +5859,user_005859,user_005859@example.com,1 +5860,user_005860,user_005860@example.com,2 +5861,user_005861,user_005861@example.com, +5862,user_005862,user_005862@example.com,1 +5863,user_005863,user_005863@example.com,2 +5864,user_005864,user_005864@example.com, +5865,user_005865,user_005865@example.com,1 +5866,user_005866,user_005866@example.com,2 +5867,user_005867,user_005867@example.com, +5868,user_005868,user_005868@example.com,1 +5869,user_005869,user_005869@example.com,2 +5870,user_005870,user_005870@example.com, +5871,user_005871,user_005871@example.com,1 +5872,user_005872,user_005872@example.com,2 +5873,user_005873,user_005873@example.com, +5874,user_005874,user_005874@example.com,1 +5875,user_005875,user_005875@example.com,2 +5876,user_005876,user_005876@example.com, +5877,user_005877,user_005877@example.com,1 +5878,user_005878,user_005878@example.com,2 +5879,user_005879,user_005879@example.com, +5880,user_005880,user_005880@example.com,1 +5881,user_005881,user_005881@example.com,2 +5882,user_005882,user_005882@example.com, +5883,user_005883,user_005883@example.com,1 +5884,user_005884,user_005884@example.com,2 +5885,user_005885,user_005885@example.com, +5886,user_005886,user_005886@example.com,1 +5887,user_005887,user_005887@example.com,2 +5888,user_005888,user_005888@example.com, +5889,user_005889,user_005889@example.com,1 +5890,user_005890,user_005890@example.com,2 +5891,user_005891,user_005891@example.com, +5892,user_005892,user_005892@example.com,1 +5893,user_005893,user_005893@example.com,2 +5894,user_005894,user_005894@example.com, +5895,user_005895,user_005895@example.com,1 +5896,user_005896,user_005896@example.com,2 +5897,user_005897,user_005897@example.com, +5898,user_005898,user_005898@example.com,1 +5899,user_005899,user_005899@example.com,2 +5900,user_005900,user_005900@example.com, +5901,user_005901,user_005901@example.com,1 +5902,user_005902,user_005902@example.com,2 +5903,user_005903,user_005903@example.com, +5904,user_005904,user_005904@example.com,1 +5905,user_005905,user_005905@example.com,2 +5906,user_005906,user_005906@example.com, +5907,user_005907,user_005907@example.com,1 +5908,user_005908,user_005908@example.com,2 +5909,user_005909,user_005909@example.com, +5910,user_005910,user_005910@example.com,1 +5911,user_005911,user_005911@example.com,2 +5912,user_005912,user_005912@example.com, +5913,user_005913,user_005913@example.com,1 +5914,user_005914,user_005914@example.com,2 +5915,user_005915,user_005915@example.com, +5916,user_005916,user_005916@example.com,1 +5917,user_005917,user_005917@example.com,2 +5918,user_005918,user_005918@example.com, +5919,user_005919,user_005919@example.com,1 +5920,user_005920,user_005920@example.com,2 +5921,user_005921,user_005921@example.com, +5922,user_005922,user_005922@example.com,1 +5923,user_005923,user_005923@example.com,2 +5924,user_005924,user_005924@example.com, +5925,user_005925,user_005925@example.com,1 +5926,user_005926,user_005926@example.com,2 +5927,user_005927,user_005927@example.com, +5928,user_005928,user_005928@example.com,1 +5929,user_005929,user_005929@example.com,2 +5930,user_005930,user_005930@example.com, +5931,user_005931,user_005931@example.com,1 +5932,user_005932,user_005932@example.com,2 +5933,user_005933,user_005933@example.com, +5934,user_005934,user_005934@example.com,1 +5935,user_005935,user_005935@example.com,2 +5936,user_005936,user_005936@example.com, +5937,user_005937,user_005937@example.com,1 +5938,user_005938,user_005938@example.com,2 +5939,user_005939,user_005939@example.com, +5940,user_005940,user_005940@example.com,1 +5941,user_005941,user_005941@example.com,2 +5942,user_005942,user_005942@example.com, +5943,user_005943,user_005943@example.com,1 +5944,user_005944,user_005944@example.com,2 +5945,user_005945,user_005945@example.com, +5946,user_005946,user_005946@example.com,1 +5947,user_005947,user_005947@example.com,2 +5948,user_005948,user_005948@example.com, +5949,user_005949,user_005949@example.com,1 +5950,user_005950,user_005950@example.com,2 +5951,user_005951,user_005951@example.com, +5952,user_005952,user_005952@example.com,1 +5953,user_005953,user_005953@example.com,2 +5954,user_005954,user_005954@example.com, +5955,user_005955,user_005955@example.com,1 +5956,user_005956,user_005956@example.com,2 +5957,user_005957,user_005957@example.com, +5958,user_005958,user_005958@example.com,1 +5959,user_005959,user_005959@example.com,2 +5960,user_005960,user_005960@example.com, +5961,user_005961,user_005961@example.com,1 +5962,user_005962,user_005962@example.com,2 +5963,user_005963,user_005963@example.com, +5964,user_005964,user_005964@example.com,1 +5965,user_005965,user_005965@example.com,2 +5966,user_005966,user_005966@example.com, +5967,user_005967,user_005967@example.com,1 +5968,user_005968,user_005968@example.com,2 +5969,user_005969,user_005969@example.com, +5970,user_005970,user_005970@example.com,1 +5971,user_005971,user_005971@example.com,2 +5972,user_005972,user_005972@example.com, +5973,user_005973,user_005973@example.com,1 +5974,user_005974,user_005974@example.com,2 +5975,user_005975,user_005975@example.com, +5976,user_005976,user_005976@example.com,1 +5977,user_005977,user_005977@example.com,2 +5978,user_005978,user_005978@example.com, +5979,user_005979,user_005979@example.com,1 +5980,user_005980,user_005980@example.com,2 +5981,user_005981,user_005981@example.com, +5982,user_005982,user_005982@example.com,1 +5983,user_005983,user_005983@example.com,2 +5984,user_005984,user_005984@example.com, +5985,user_005985,user_005985@example.com,1 +5986,user_005986,user_005986@example.com,2 +5987,user_005987,user_005987@example.com, +5988,user_005988,user_005988@example.com,1 +5989,user_005989,user_005989@example.com,2 +5990,user_005990,user_005990@example.com, +5991,user_005991,user_005991@example.com,1 +5992,user_005992,user_005992@example.com,2 +5993,user_005993,user_005993@example.com, +5994,user_005994,user_005994@example.com,1 +5995,user_005995,user_005995@example.com,2 +5996,user_005996,user_005996@example.com, +5997,user_005997,user_005997@example.com,1 +5998,user_005998,user_005998@example.com,2 +5999,user_005999,user_005999@example.com, +6000,user_006000,user_006000@example.com,1 +6001,user_006001,user_006001@example.com,2 +6002,user_006002,user_006002@example.com, +6003,user_006003,user_006003@example.com,1 +6004,user_006004,user_006004@example.com,2 +6005,user_006005,user_006005@example.com, +6006,user_006006,user_006006@example.com,1 +6007,user_006007,user_006007@example.com,2 +6008,user_006008,user_006008@example.com, +6009,user_006009,user_006009@example.com,1 +6010,user_006010,user_006010@example.com,2 +6011,user_006011,user_006011@example.com, +6012,user_006012,user_006012@example.com,1 +6013,user_006013,user_006013@example.com,2 +6014,user_006014,user_006014@example.com, +6015,user_006015,user_006015@example.com,1 +6016,user_006016,user_006016@example.com,2 +6017,user_006017,user_006017@example.com, +6018,user_006018,user_006018@example.com,1 +6019,user_006019,user_006019@example.com,2 +6020,user_006020,user_006020@example.com, +6021,user_006021,user_006021@example.com,1 +6022,user_006022,user_006022@example.com,2 +6023,user_006023,user_006023@example.com, +6024,user_006024,user_006024@example.com,1 +6025,user_006025,user_006025@example.com,2 +6026,user_006026,user_006026@example.com, +6027,user_006027,user_006027@example.com,1 +6028,user_006028,user_006028@example.com,2 +6029,user_006029,user_006029@example.com, +6030,user_006030,user_006030@example.com,1 +6031,user_006031,user_006031@example.com,2 +6032,user_006032,user_006032@example.com, +6033,user_006033,user_006033@example.com,1 +6034,user_006034,user_006034@example.com,2 +6035,user_006035,user_006035@example.com, +6036,user_006036,user_006036@example.com,1 +6037,user_006037,user_006037@example.com,2 +6038,user_006038,user_006038@example.com, +6039,user_006039,user_006039@example.com,1 +6040,user_006040,user_006040@example.com,2 +6041,user_006041,user_006041@example.com, +6042,user_006042,user_006042@example.com,1 +6043,user_006043,user_006043@example.com,2 +6044,user_006044,user_006044@example.com, +6045,user_006045,user_006045@example.com,1 +6046,user_006046,user_006046@example.com,2 +6047,user_006047,user_006047@example.com, +6048,user_006048,user_006048@example.com,1 +6049,user_006049,user_006049@example.com,2 +6050,user_006050,user_006050@example.com, +6051,user_006051,user_006051@example.com,1 +6052,user_006052,user_006052@example.com,2 +6053,user_006053,user_006053@example.com, +6054,user_006054,user_006054@example.com,1 +6055,user_006055,user_006055@example.com,2 +6056,user_006056,user_006056@example.com, +6057,user_006057,user_006057@example.com,1 +6058,user_006058,user_006058@example.com,2 +6059,user_006059,user_006059@example.com, +6060,user_006060,user_006060@example.com,1 +6061,user_006061,user_006061@example.com,2 +6062,user_006062,user_006062@example.com, +6063,user_006063,user_006063@example.com,1 +6064,user_006064,user_006064@example.com,2 +6065,user_006065,user_006065@example.com, +6066,user_006066,user_006066@example.com,1 +6067,user_006067,user_006067@example.com,2 +6068,user_006068,user_006068@example.com, +6069,user_006069,user_006069@example.com,1 +6070,user_006070,user_006070@example.com,2 +6071,user_006071,user_006071@example.com, +6072,user_006072,user_006072@example.com,1 +6073,user_006073,user_006073@example.com,2 +6074,user_006074,user_006074@example.com, +6075,user_006075,user_006075@example.com,1 +6076,user_006076,user_006076@example.com,2 +6077,user_006077,user_006077@example.com, +6078,user_006078,user_006078@example.com,1 +6079,user_006079,user_006079@example.com,2 +6080,user_006080,user_006080@example.com, +6081,user_006081,user_006081@example.com,1 +6082,user_006082,user_006082@example.com,2 +6083,user_006083,user_006083@example.com, +6084,user_006084,user_006084@example.com,1 +6085,user_006085,user_006085@example.com,2 +6086,user_006086,user_006086@example.com, +6087,user_006087,user_006087@example.com,1 +6088,user_006088,user_006088@example.com,2 +6089,user_006089,user_006089@example.com, +6090,user_006090,user_006090@example.com,1 +6091,user_006091,user_006091@example.com,2 +6092,user_006092,user_006092@example.com, +6093,user_006093,user_006093@example.com,1 +6094,user_006094,user_006094@example.com,2 +6095,user_006095,user_006095@example.com, +6096,user_006096,user_006096@example.com,1 +6097,user_006097,user_006097@example.com,2 +6098,user_006098,user_006098@example.com, +6099,user_006099,user_006099@example.com,1 +6100,user_006100,user_006100@example.com,2 +6101,user_006101,user_006101@example.com, +6102,user_006102,user_006102@example.com,1 +6103,user_006103,user_006103@example.com,2 +6104,user_006104,user_006104@example.com, +6105,user_006105,user_006105@example.com,1 +6106,user_006106,user_006106@example.com,2 +6107,user_006107,user_006107@example.com, +6108,user_006108,user_006108@example.com,1 +6109,user_006109,user_006109@example.com,2 +6110,user_006110,user_006110@example.com, +6111,user_006111,user_006111@example.com,1 +6112,user_006112,user_006112@example.com,2 +6113,user_006113,user_006113@example.com, +6114,user_006114,user_006114@example.com,1 +6115,user_006115,user_006115@example.com,2 +6116,user_006116,user_006116@example.com, +6117,user_006117,user_006117@example.com,1 +6118,user_006118,user_006118@example.com,2 +6119,user_006119,user_006119@example.com, +6120,user_006120,user_006120@example.com,1 +6121,user_006121,user_006121@example.com,2 +6122,user_006122,user_006122@example.com, +6123,user_006123,user_006123@example.com,1 +6124,user_006124,user_006124@example.com,2 +6125,user_006125,user_006125@example.com, +6126,user_006126,user_006126@example.com,1 +6127,user_006127,user_006127@example.com,2 +6128,user_006128,user_006128@example.com, +6129,user_006129,user_006129@example.com,1 +6130,user_006130,user_006130@example.com,2 +6131,user_006131,user_006131@example.com, +6132,user_006132,user_006132@example.com,1 +6133,user_006133,user_006133@example.com,2 +6134,user_006134,user_006134@example.com, +6135,user_006135,user_006135@example.com,1 +6136,user_006136,user_006136@example.com,2 +6137,user_006137,user_006137@example.com, +6138,user_006138,user_006138@example.com,1 +6139,user_006139,user_006139@example.com,2 +6140,user_006140,user_006140@example.com, +6141,user_006141,user_006141@example.com,1 +6142,user_006142,user_006142@example.com,2 +6143,user_006143,user_006143@example.com, +6144,user_006144,user_006144@example.com,1 +6145,user_006145,user_006145@example.com,2 +6146,user_006146,user_006146@example.com, +6147,user_006147,user_006147@example.com,1 +6148,user_006148,user_006148@example.com,2 +6149,user_006149,user_006149@example.com, +6150,user_006150,user_006150@example.com,1 +6151,user_006151,user_006151@example.com,2 +6152,user_006152,user_006152@example.com, +6153,user_006153,user_006153@example.com,1 +6154,user_006154,user_006154@example.com,2 +6155,user_006155,user_006155@example.com, +6156,user_006156,user_006156@example.com,1 +6157,user_006157,user_006157@example.com,2 +6158,user_006158,user_006158@example.com, +6159,user_006159,user_006159@example.com,1 +6160,user_006160,user_006160@example.com,2 +6161,user_006161,user_006161@example.com, +6162,user_006162,user_006162@example.com,1 +6163,user_006163,user_006163@example.com,2 +6164,user_006164,user_006164@example.com, +6165,user_006165,user_006165@example.com,1 +6166,user_006166,user_006166@example.com,2 +6167,user_006167,user_006167@example.com, +6168,user_006168,user_006168@example.com,1 +6169,user_006169,user_006169@example.com,2 +6170,user_006170,user_006170@example.com, +6171,user_006171,user_006171@example.com,1 +6172,user_006172,user_006172@example.com,2 +6173,user_006173,user_006173@example.com, +6174,user_006174,user_006174@example.com,1 +6175,user_006175,user_006175@example.com,2 +6176,user_006176,user_006176@example.com, +6177,user_006177,user_006177@example.com,1 +6178,user_006178,user_006178@example.com,2 +6179,user_006179,user_006179@example.com, +6180,user_006180,user_006180@example.com,1 +6181,user_006181,user_006181@example.com,2 +6182,user_006182,user_006182@example.com, +6183,user_006183,user_006183@example.com,1 +6184,user_006184,user_006184@example.com,2 +6185,user_006185,user_006185@example.com, +6186,user_006186,user_006186@example.com,1 +6187,user_006187,user_006187@example.com,2 +6188,user_006188,user_006188@example.com, +6189,user_006189,user_006189@example.com,1 +6190,user_006190,user_006190@example.com,2 +6191,user_006191,user_006191@example.com, +6192,user_006192,user_006192@example.com,1 +6193,user_006193,user_006193@example.com,2 +6194,user_006194,user_006194@example.com, +6195,user_006195,user_006195@example.com,1 +6196,user_006196,user_006196@example.com,2 +6197,user_006197,user_006197@example.com, +6198,user_006198,user_006198@example.com,1 +6199,user_006199,user_006199@example.com,2 +6200,user_006200,user_006200@example.com, +6201,user_006201,user_006201@example.com,1 +6202,user_006202,user_006202@example.com,2 +6203,user_006203,user_006203@example.com, +6204,user_006204,user_006204@example.com,1 +6205,user_006205,user_006205@example.com,2 +6206,user_006206,user_006206@example.com, +6207,user_006207,user_006207@example.com,1 +6208,user_006208,user_006208@example.com,2 +6209,user_006209,user_006209@example.com, +6210,user_006210,user_006210@example.com,1 +6211,user_006211,user_006211@example.com,2 +6212,user_006212,user_006212@example.com, +6213,user_006213,user_006213@example.com,1 +6214,user_006214,user_006214@example.com,2 +6215,user_006215,user_006215@example.com, +6216,user_006216,user_006216@example.com,1 +6217,user_006217,user_006217@example.com,2 +6218,user_006218,user_006218@example.com, +6219,user_006219,user_006219@example.com,1 +6220,user_006220,user_006220@example.com,2 +6221,user_006221,user_006221@example.com, +6222,user_006222,user_006222@example.com,1 +6223,user_006223,user_006223@example.com,2 +6224,user_006224,user_006224@example.com, +6225,user_006225,user_006225@example.com,1 +6226,user_006226,user_006226@example.com,2 +6227,user_006227,user_006227@example.com, +6228,user_006228,user_006228@example.com,1 +6229,user_006229,user_006229@example.com,2 +6230,user_006230,user_006230@example.com, +6231,user_006231,user_006231@example.com,1 +6232,user_006232,user_006232@example.com,2 +6233,user_006233,user_006233@example.com, +6234,user_006234,user_006234@example.com,1 +6235,user_006235,user_006235@example.com,2 +6236,user_006236,user_006236@example.com, +6237,user_006237,user_006237@example.com,1 +6238,user_006238,user_006238@example.com,2 +6239,user_006239,user_006239@example.com, +6240,user_006240,user_006240@example.com,1 +6241,user_006241,user_006241@example.com,2 +6242,user_006242,user_006242@example.com, +6243,user_006243,user_006243@example.com,1 +6244,user_006244,user_006244@example.com,2 +6245,user_006245,user_006245@example.com, +6246,user_006246,user_006246@example.com,1 +6247,user_006247,user_006247@example.com,2 +6248,user_006248,user_006248@example.com, +6249,user_006249,user_006249@example.com,1 +6250,user_006250,user_006250@example.com,2 +6251,user_006251,user_006251@example.com, +6252,user_006252,user_006252@example.com,1 +6253,user_006253,user_006253@example.com,2 +6254,user_006254,user_006254@example.com, +6255,user_006255,user_006255@example.com,1 +6256,user_006256,user_006256@example.com,2 +6257,user_006257,user_006257@example.com, +6258,user_006258,user_006258@example.com,1 +6259,user_006259,user_006259@example.com,2 +6260,user_006260,user_006260@example.com, +6261,user_006261,user_006261@example.com,1 +6262,user_006262,user_006262@example.com,2 +6263,user_006263,user_006263@example.com, +6264,user_006264,user_006264@example.com,1 +6265,user_006265,user_006265@example.com,2 +6266,user_006266,user_006266@example.com, +6267,user_006267,user_006267@example.com,1 +6268,user_006268,user_006268@example.com,2 +6269,user_006269,user_006269@example.com, +6270,user_006270,user_006270@example.com,1 +6271,user_006271,user_006271@example.com,2 +6272,user_006272,user_006272@example.com, +6273,user_006273,user_006273@example.com,1 +6274,user_006274,user_006274@example.com,2 +6275,user_006275,user_006275@example.com, +6276,user_006276,user_006276@example.com,1 +6277,user_006277,user_006277@example.com,2 +6278,user_006278,user_006278@example.com, +6279,user_006279,user_006279@example.com,1 +6280,user_006280,user_006280@example.com,2 +6281,user_006281,user_006281@example.com, +6282,user_006282,user_006282@example.com,1 +6283,user_006283,user_006283@example.com,2 +6284,user_006284,user_006284@example.com, +6285,user_006285,user_006285@example.com,1 +6286,user_006286,user_006286@example.com,2 +6287,user_006287,user_006287@example.com, +6288,user_006288,user_006288@example.com,1 +6289,user_006289,user_006289@example.com,2 +6290,user_006290,user_006290@example.com, +6291,user_006291,user_006291@example.com,1 +6292,user_006292,user_006292@example.com,2 +6293,user_006293,user_006293@example.com, +6294,user_006294,user_006294@example.com,1 +6295,user_006295,user_006295@example.com,2 +6296,user_006296,user_006296@example.com, +6297,user_006297,user_006297@example.com,1 +6298,user_006298,user_006298@example.com,2 +6299,user_006299,user_006299@example.com, +6300,user_006300,user_006300@example.com,1 +6301,user_006301,user_006301@example.com,2 +6302,user_006302,user_006302@example.com, +6303,user_006303,user_006303@example.com,1 +6304,user_006304,user_006304@example.com,2 +6305,user_006305,user_006305@example.com, +6306,user_006306,user_006306@example.com,1 +6307,user_006307,user_006307@example.com,2 +6308,user_006308,user_006308@example.com, +6309,user_006309,user_006309@example.com,1 +6310,user_006310,user_006310@example.com,2 +6311,user_006311,user_006311@example.com, +6312,user_006312,user_006312@example.com,1 +6313,user_006313,user_006313@example.com,2 +6314,user_006314,user_006314@example.com, +6315,user_006315,user_006315@example.com,1 +6316,user_006316,user_006316@example.com,2 +6317,user_006317,user_006317@example.com, +6318,user_006318,user_006318@example.com,1 +6319,user_006319,user_006319@example.com,2 +6320,user_006320,user_006320@example.com, +6321,user_006321,user_006321@example.com,1 +6322,user_006322,user_006322@example.com,2 +6323,user_006323,user_006323@example.com, +6324,user_006324,user_006324@example.com,1 +6325,user_006325,user_006325@example.com,2 +6326,user_006326,user_006326@example.com, +6327,user_006327,user_006327@example.com,1 +6328,user_006328,user_006328@example.com,2 +6329,user_006329,user_006329@example.com, +6330,user_006330,user_006330@example.com,1 +6331,user_006331,user_006331@example.com,2 +6332,user_006332,user_006332@example.com, +6333,user_006333,user_006333@example.com,1 +6334,user_006334,user_006334@example.com,2 +6335,user_006335,user_006335@example.com, +6336,user_006336,user_006336@example.com,1 +6337,user_006337,user_006337@example.com,2 +6338,user_006338,user_006338@example.com, +6339,user_006339,user_006339@example.com,1 +6340,user_006340,user_006340@example.com,2 +6341,user_006341,user_006341@example.com, +6342,user_006342,user_006342@example.com,1 +6343,user_006343,user_006343@example.com,2 +6344,user_006344,user_006344@example.com, +6345,user_006345,user_006345@example.com,1 +6346,user_006346,user_006346@example.com,2 +6347,user_006347,user_006347@example.com, +6348,user_006348,user_006348@example.com,1 +6349,user_006349,user_006349@example.com,2 +6350,user_006350,user_006350@example.com, +6351,user_006351,user_006351@example.com,1 +6352,user_006352,user_006352@example.com,2 +6353,user_006353,user_006353@example.com, +6354,user_006354,user_006354@example.com,1 +6355,user_006355,user_006355@example.com,2 +6356,user_006356,user_006356@example.com, +6357,user_006357,user_006357@example.com,1 +6358,user_006358,user_006358@example.com,2 +6359,user_006359,user_006359@example.com, +6360,user_006360,user_006360@example.com,1 +6361,user_006361,user_006361@example.com,2 +6362,user_006362,user_006362@example.com, +6363,user_006363,user_006363@example.com,1 +6364,user_006364,user_006364@example.com,2 +6365,user_006365,user_006365@example.com, +6366,user_006366,user_006366@example.com,1 +6367,user_006367,user_006367@example.com,2 +6368,user_006368,user_006368@example.com, +6369,user_006369,user_006369@example.com,1 +6370,user_006370,user_006370@example.com,2 +6371,user_006371,user_006371@example.com, +6372,user_006372,user_006372@example.com,1 +6373,user_006373,user_006373@example.com,2 +6374,user_006374,user_006374@example.com, +6375,user_006375,user_006375@example.com,1 +6376,user_006376,user_006376@example.com,2 +6377,user_006377,user_006377@example.com, +6378,user_006378,user_006378@example.com,1 +6379,user_006379,user_006379@example.com,2 +6380,user_006380,user_006380@example.com, +6381,user_006381,user_006381@example.com,1 +6382,user_006382,user_006382@example.com,2 +6383,user_006383,user_006383@example.com, +6384,user_006384,user_006384@example.com,1 +6385,user_006385,user_006385@example.com,2 +6386,user_006386,user_006386@example.com, +6387,user_006387,user_006387@example.com,1 +6388,user_006388,user_006388@example.com,2 +6389,user_006389,user_006389@example.com, +6390,user_006390,user_006390@example.com,1 +6391,user_006391,user_006391@example.com,2 +6392,user_006392,user_006392@example.com, +6393,user_006393,user_006393@example.com,1 +6394,user_006394,user_006394@example.com,2 +6395,user_006395,user_006395@example.com, +6396,user_006396,user_006396@example.com,1 +6397,user_006397,user_006397@example.com,2 +6398,user_006398,user_006398@example.com, +6399,user_006399,user_006399@example.com,1 +6400,user_006400,user_006400@example.com,2 +6401,user_006401,user_006401@example.com, +6402,user_006402,user_006402@example.com,1 +6403,user_006403,user_006403@example.com,2 +6404,user_006404,user_006404@example.com, +6405,user_006405,user_006405@example.com,1 +6406,user_006406,user_006406@example.com,2 +6407,user_006407,user_006407@example.com, +6408,user_006408,user_006408@example.com,1 +6409,user_006409,user_006409@example.com,2 +6410,user_006410,user_006410@example.com, +6411,user_006411,user_006411@example.com,1 +6412,user_006412,user_006412@example.com,2 +6413,user_006413,user_006413@example.com, +6414,user_006414,user_006414@example.com,1 +6415,user_006415,user_006415@example.com,2 +6416,user_006416,user_006416@example.com, +6417,user_006417,user_006417@example.com,1 +6418,user_006418,user_006418@example.com,2 +6419,user_006419,user_006419@example.com, +6420,user_006420,user_006420@example.com,1 +6421,user_006421,user_006421@example.com,2 +6422,user_006422,user_006422@example.com, +6423,user_006423,user_006423@example.com,1 +6424,user_006424,user_006424@example.com,2 +6425,user_006425,user_006425@example.com, +6426,user_006426,user_006426@example.com,1 +6427,user_006427,user_006427@example.com,2 +6428,user_006428,user_006428@example.com, +6429,user_006429,user_006429@example.com,1 +6430,user_006430,user_006430@example.com,2 +6431,user_006431,user_006431@example.com, +6432,user_006432,user_006432@example.com,1 +6433,user_006433,user_006433@example.com,2 +6434,user_006434,user_006434@example.com, +6435,user_006435,user_006435@example.com,1 +6436,user_006436,user_006436@example.com,2 +6437,user_006437,user_006437@example.com, +6438,user_006438,user_006438@example.com,1 +6439,user_006439,user_006439@example.com,2 +6440,user_006440,user_006440@example.com, +6441,user_006441,user_006441@example.com,1 +6442,user_006442,user_006442@example.com,2 +6443,user_006443,user_006443@example.com, +6444,user_006444,user_006444@example.com,1 +6445,user_006445,user_006445@example.com,2 +6446,user_006446,user_006446@example.com, +6447,user_006447,user_006447@example.com,1 +6448,user_006448,user_006448@example.com,2 +6449,user_006449,user_006449@example.com, +6450,user_006450,user_006450@example.com,1 +6451,user_006451,user_006451@example.com,2 +6452,user_006452,user_006452@example.com, +6453,user_006453,user_006453@example.com,1 +6454,user_006454,user_006454@example.com,2 +6455,user_006455,user_006455@example.com, +6456,user_006456,user_006456@example.com,1 +6457,user_006457,user_006457@example.com,2 +6458,user_006458,user_006458@example.com, +6459,user_006459,user_006459@example.com,1 +6460,user_006460,user_006460@example.com,2 +6461,user_006461,user_006461@example.com, +6462,user_006462,user_006462@example.com,1 +6463,user_006463,user_006463@example.com,2 +6464,user_006464,user_006464@example.com, +6465,user_006465,user_006465@example.com,1 +6466,user_006466,user_006466@example.com,2 +6467,user_006467,user_006467@example.com, +6468,user_006468,user_006468@example.com,1 +6469,user_006469,user_006469@example.com,2 +6470,user_006470,user_006470@example.com, +6471,user_006471,user_006471@example.com,1 +6472,user_006472,user_006472@example.com,2 +6473,user_006473,user_006473@example.com, +6474,user_006474,user_006474@example.com,1 +6475,user_006475,user_006475@example.com,2 +6476,user_006476,user_006476@example.com, +6477,user_006477,user_006477@example.com,1 +6478,user_006478,user_006478@example.com,2 +6479,user_006479,user_006479@example.com, +6480,user_006480,user_006480@example.com,1 +6481,user_006481,user_006481@example.com,2 +6482,user_006482,user_006482@example.com, +6483,user_006483,user_006483@example.com,1 +6484,user_006484,user_006484@example.com,2 +6485,user_006485,user_006485@example.com, +6486,user_006486,user_006486@example.com,1 +6487,user_006487,user_006487@example.com,2 +6488,user_006488,user_006488@example.com, +6489,user_006489,user_006489@example.com,1 +6490,user_006490,user_006490@example.com,2 +6491,user_006491,user_006491@example.com, +6492,user_006492,user_006492@example.com,1 +6493,user_006493,user_006493@example.com,2 +6494,user_006494,user_006494@example.com, +6495,user_006495,user_006495@example.com,1 +6496,user_006496,user_006496@example.com,2 +6497,user_006497,user_006497@example.com, +6498,user_006498,user_006498@example.com,1 +6499,user_006499,user_006499@example.com,2 +6500,user_006500,user_006500@example.com, +6501,user_006501,user_006501@example.com,1 +6502,user_006502,user_006502@example.com,2 +6503,user_006503,user_006503@example.com, +6504,user_006504,user_006504@example.com,1 +6505,user_006505,user_006505@example.com,2 +6506,user_006506,user_006506@example.com, +6507,user_006507,user_006507@example.com,1 +6508,user_006508,user_006508@example.com,2 +6509,user_006509,user_006509@example.com, +6510,user_006510,user_006510@example.com,1 +6511,user_006511,user_006511@example.com,2 +6512,user_006512,user_006512@example.com, +6513,user_006513,user_006513@example.com,1 +6514,user_006514,user_006514@example.com,2 +6515,user_006515,user_006515@example.com, +6516,user_006516,user_006516@example.com,1 +6517,user_006517,user_006517@example.com,2 +6518,user_006518,user_006518@example.com, +6519,user_006519,user_006519@example.com,1 +6520,user_006520,user_006520@example.com,2 +6521,user_006521,user_006521@example.com, +6522,user_006522,user_006522@example.com,1 +6523,user_006523,user_006523@example.com,2 +6524,user_006524,user_006524@example.com, +6525,user_006525,user_006525@example.com,1 +6526,user_006526,user_006526@example.com,2 +6527,user_006527,user_006527@example.com, +6528,user_006528,user_006528@example.com,1 +6529,user_006529,user_006529@example.com,2 +6530,user_006530,user_006530@example.com, +6531,user_006531,user_006531@example.com,1 +6532,user_006532,user_006532@example.com,2 +6533,user_006533,user_006533@example.com, +6534,user_006534,user_006534@example.com,1 +6535,user_006535,user_006535@example.com,2 +6536,user_006536,user_006536@example.com, +6537,user_006537,user_006537@example.com,1 +6538,user_006538,user_006538@example.com,2 +6539,user_006539,user_006539@example.com, +6540,user_006540,user_006540@example.com,1 +6541,user_006541,user_006541@example.com,2 +6542,user_006542,user_006542@example.com, +6543,user_006543,user_006543@example.com,1 +6544,user_006544,user_006544@example.com,2 +6545,user_006545,user_006545@example.com, +6546,user_006546,user_006546@example.com,1 +6547,user_006547,user_006547@example.com,2 +6548,user_006548,user_006548@example.com, +6549,user_006549,user_006549@example.com,1 +6550,user_006550,user_006550@example.com,2 +6551,user_006551,user_006551@example.com, +6552,user_006552,user_006552@example.com,1 +6553,user_006553,user_006553@example.com,2 +6554,user_006554,user_006554@example.com, +6555,user_006555,user_006555@example.com,1 +6556,user_006556,user_006556@example.com,2 +6557,user_006557,user_006557@example.com, +6558,user_006558,user_006558@example.com,1 +6559,user_006559,user_006559@example.com,2 +6560,user_006560,user_006560@example.com, +6561,user_006561,user_006561@example.com,1 +6562,user_006562,user_006562@example.com,2 +6563,user_006563,user_006563@example.com, +6564,user_006564,user_006564@example.com,1 +6565,user_006565,user_006565@example.com,2 +6566,user_006566,user_006566@example.com, +6567,user_006567,user_006567@example.com,1 +6568,user_006568,user_006568@example.com,2 +6569,user_006569,user_006569@example.com, +6570,user_006570,user_006570@example.com,1 +6571,user_006571,user_006571@example.com,2 +6572,user_006572,user_006572@example.com, +6573,user_006573,user_006573@example.com,1 +6574,user_006574,user_006574@example.com,2 +6575,user_006575,user_006575@example.com, +6576,user_006576,user_006576@example.com,1 +6577,user_006577,user_006577@example.com,2 +6578,user_006578,user_006578@example.com, +6579,user_006579,user_006579@example.com,1 +6580,user_006580,user_006580@example.com,2 +6581,user_006581,user_006581@example.com, +6582,user_006582,user_006582@example.com,1 +6583,user_006583,user_006583@example.com,2 +6584,user_006584,user_006584@example.com, +6585,user_006585,user_006585@example.com,1 +6586,user_006586,user_006586@example.com,2 +6587,user_006587,user_006587@example.com, +6588,user_006588,user_006588@example.com,1 +6589,user_006589,user_006589@example.com,2 +6590,user_006590,user_006590@example.com, +6591,user_006591,user_006591@example.com,1 +6592,user_006592,user_006592@example.com,2 +6593,user_006593,user_006593@example.com, +6594,user_006594,user_006594@example.com,1 +6595,user_006595,user_006595@example.com,2 +6596,user_006596,user_006596@example.com, +6597,user_006597,user_006597@example.com,1 +6598,user_006598,user_006598@example.com,2 +6599,user_006599,user_006599@example.com, +6600,user_006600,user_006600@example.com,1 +6601,user_006601,user_006601@example.com,2 +6602,user_006602,user_006602@example.com, +6603,user_006603,user_006603@example.com,1 +6604,user_006604,user_006604@example.com,2 +6605,user_006605,user_006605@example.com, +6606,user_006606,user_006606@example.com,1 +6607,user_006607,user_006607@example.com,2 +6608,user_006608,user_006608@example.com, +6609,user_006609,user_006609@example.com,1 +6610,user_006610,user_006610@example.com,2 +6611,user_006611,user_006611@example.com, +6612,user_006612,user_006612@example.com,1 +6613,user_006613,user_006613@example.com,2 +6614,user_006614,user_006614@example.com, +6615,user_006615,user_006615@example.com,1 +6616,user_006616,user_006616@example.com,2 +6617,user_006617,user_006617@example.com, +6618,user_006618,user_006618@example.com,1 +6619,user_006619,user_006619@example.com,2 +6620,user_006620,user_006620@example.com, +6621,user_006621,user_006621@example.com,1 +6622,user_006622,user_006622@example.com,2 +6623,user_006623,user_006623@example.com, +6624,user_006624,user_006624@example.com,1 +6625,user_006625,user_006625@example.com,2 +6626,user_006626,user_006626@example.com, +6627,user_006627,user_006627@example.com,1 +6628,user_006628,user_006628@example.com,2 +6629,user_006629,user_006629@example.com, +6630,user_006630,user_006630@example.com,1 +6631,user_006631,user_006631@example.com,2 +6632,user_006632,user_006632@example.com, +6633,user_006633,user_006633@example.com,1 +6634,user_006634,user_006634@example.com,2 +6635,user_006635,user_006635@example.com, +6636,user_006636,user_006636@example.com,1 +6637,user_006637,user_006637@example.com,2 +6638,user_006638,user_006638@example.com, +6639,user_006639,user_006639@example.com,1 +6640,user_006640,user_006640@example.com,2 +6641,user_006641,user_006641@example.com, +6642,user_006642,user_006642@example.com,1 +6643,user_006643,user_006643@example.com,2 +6644,user_006644,user_006644@example.com, +6645,user_006645,user_006645@example.com,1 +6646,user_006646,user_006646@example.com,2 +6647,user_006647,user_006647@example.com, +6648,user_006648,user_006648@example.com,1 +6649,user_006649,user_006649@example.com,2 +6650,user_006650,user_006650@example.com, +6651,user_006651,user_006651@example.com,1 +6652,user_006652,user_006652@example.com,2 +6653,user_006653,user_006653@example.com, +6654,user_006654,user_006654@example.com,1 +6655,user_006655,user_006655@example.com,2 +6656,user_006656,user_006656@example.com, +6657,user_006657,user_006657@example.com,1 +6658,user_006658,user_006658@example.com,2 +6659,user_006659,user_006659@example.com, +6660,user_006660,user_006660@example.com,1 +6661,user_006661,user_006661@example.com,2 +6662,user_006662,user_006662@example.com, +6663,user_006663,user_006663@example.com,1 +6664,user_006664,user_006664@example.com,2 +6665,user_006665,user_006665@example.com, +6666,user_006666,user_006666@example.com,1 +6667,user_006667,user_006667@example.com,2 +6668,user_006668,user_006668@example.com, +6669,user_006669,user_006669@example.com,1 +6670,user_006670,user_006670@example.com,2 +6671,user_006671,user_006671@example.com, +6672,user_006672,user_006672@example.com,1 +6673,user_006673,user_006673@example.com,2 +6674,user_006674,user_006674@example.com, +6675,user_006675,user_006675@example.com,1 +6676,user_006676,user_006676@example.com,2 +6677,user_006677,user_006677@example.com, +6678,user_006678,user_006678@example.com,1 +6679,user_006679,user_006679@example.com,2 +6680,user_006680,user_006680@example.com, +6681,user_006681,user_006681@example.com,1 +6682,user_006682,user_006682@example.com,2 +6683,user_006683,user_006683@example.com, +6684,user_006684,user_006684@example.com,1 +6685,user_006685,user_006685@example.com,2 +6686,user_006686,user_006686@example.com, +6687,user_006687,user_006687@example.com,1 +6688,user_006688,user_006688@example.com,2 +6689,user_006689,user_006689@example.com, +6690,user_006690,user_006690@example.com,1 +6691,user_006691,user_006691@example.com,2 +6692,user_006692,user_006692@example.com, +6693,user_006693,user_006693@example.com,1 +6694,user_006694,user_006694@example.com,2 +6695,user_006695,user_006695@example.com, +6696,user_006696,user_006696@example.com,1 +6697,user_006697,user_006697@example.com,2 +6698,user_006698,user_006698@example.com, +6699,user_006699,user_006699@example.com,1 +6700,user_006700,user_006700@example.com,2 +6701,user_006701,user_006701@example.com, +6702,user_006702,user_006702@example.com,1 +6703,user_006703,user_006703@example.com,2 +6704,user_006704,user_006704@example.com, +6705,user_006705,user_006705@example.com,1 +6706,user_006706,user_006706@example.com,2 +6707,user_006707,user_006707@example.com, +6708,user_006708,user_006708@example.com,1 +6709,user_006709,user_006709@example.com,2 +6710,user_006710,user_006710@example.com, +6711,user_006711,user_006711@example.com,1 +6712,user_006712,user_006712@example.com,2 +6713,user_006713,user_006713@example.com, +6714,user_006714,user_006714@example.com,1 +6715,user_006715,user_006715@example.com,2 +6716,user_006716,user_006716@example.com, +6717,user_006717,user_006717@example.com,1 +6718,user_006718,user_006718@example.com,2 +6719,user_006719,user_006719@example.com, +6720,user_006720,user_006720@example.com,1 +6721,user_006721,user_006721@example.com,2 +6722,user_006722,user_006722@example.com, +6723,user_006723,user_006723@example.com,1 +6724,user_006724,user_006724@example.com,2 +6725,user_006725,user_006725@example.com, +6726,user_006726,user_006726@example.com,1 +6727,user_006727,user_006727@example.com,2 +6728,user_006728,user_006728@example.com, +6729,user_006729,user_006729@example.com,1 +6730,user_006730,user_006730@example.com,2 +6731,user_006731,user_006731@example.com, +6732,user_006732,user_006732@example.com,1 +6733,user_006733,user_006733@example.com,2 +6734,user_006734,user_006734@example.com, +6735,user_006735,user_006735@example.com,1 +6736,user_006736,user_006736@example.com,2 +6737,user_006737,user_006737@example.com, +6738,user_006738,user_006738@example.com,1 +6739,user_006739,user_006739@example.com,2 +6740,user_006740,user_006740@example.com, +6741,user_006741,user_006741@example.com,1 +6742,user_006742,user_006742@example.com,2 +6743,user_006743,user_006743@example.com, +6744,user_006744,user_006744@example.com,1 +6745,user_006745,user_006745@example.com,2 +6746,user_006746,user_006746@example.com, +6747,user_006747,user_006747@example.com,1 +6748,user_006748,user_006748@example.com,2 +6749,user_006749,user_006749@example.com, +6750,user_006750,user_006750@example.com,1 +6751,user_006751,user_006751@example.com,2 +6752,user_006752,user_006752@example.com, +6753,user_006753,user_006753@example.com,1 +6754,user_006754,user_006754@example.com,2 +6755,user_006755,user_006755@example.com, +6756,user_006756,user_006756@example.com,1 +6757,user_006757,user_006757@example.com,2 +6758,user_006758,user_006758@example.com, +6759,user_006759,user_006759@example.com,1 +6760,user_006760,user_006760@example.com,2 +6761,user_006761,user_006761@example.com, +6762,user_006762,user_006762@example.com,1 +6763,user_006763,user_006763@example.com,2 +6764,user_006764,user_006764@example.com, +6765,user_006765,user_006765@example.com,1 +6766,user_006766,user_006766@example.com,2 +6767,user_006767,user_006767@example.com, +6768,user_006768,user_006768@example.com,1 +6769,user_006769,user_006769@example.com,2 +6770,user_006770,user_006770@example.com, +6771,user_006771,user_006771@example.com,1 +6772,user_006772,user_006772@example.com,2 +6773,user_006773,user_006773@example.com, +6774,user_006774,user_006774@example.com,1 +6775,user_006775,user_006775@example.com,2 +6776,user_006776,user_006776@example.com, +6777,user_006777,user_006777@example.com,1 +6778,user_006778,user_006778@example.com,2 +6779,user_006779,user_006779@example.com, +6780,user_006780,user_006780@example.com,1 +6781,user_006781,user_006781@example.com,2 +6782,user_006782,user_006782@example.com, +6783,user_006783,user_006783@example.com,1 +6784,user_006784,user_006784@example.com,2 +6785,user_006785,user_006785@example.com, +6786,user_006786,user_006786@example.com,1 +6787,user_006787,user_006787@example.com,2 +6788,user_006788,user_006788@example.com, +6789,user_006789,user_006789@example.com,1 +6790,user_006790,user_006790@example.com,2 +6791,user_006791,user_006791@example.com, +6792,user_006792,user_006792@example.com,1 +6793,user_006793,user_006793@example.com,2 +6794,user_006794,user_006794@example.com, +6795,user_006795,user_006795@example.com,1 +6796,user_006796,user_006796@example.com,2 +6797,user_006797,user_006797@example.com, +6798,user_006798,user_006798@example.com,1 +6799,user_006799,user_006799@example.com,2 +6800,user_006800,user_006800@example.com, +6801,user_006801,user_006801@example.com,1 +6802,user_006802,user_006802@example.com,2 +6803,user_006803,user_006803@example.com, +6804,user_006804,user_006804@example.com,1 +6805,user_006805,user_006805@example.com,2 +6806,user_006806,user_006806@example.com, +6807,user_006807,user_006807@example.com,1 +6808,user_006808,user_006808@example.com,2 +6809,user_006809,user_006809@example.com, +6810,user_006810,user_006810@example.com,1 +6811,user_006811,user_006811@example.com,2 +6812,user_006812,user_006812@example.com, +6813,user_006813,user_006813@example.com,1 +6814,user_006814,user_006814@example.com,2 +6815,user_006815,user_006815@example.com, +6816,user_006816,user_006816@example.com,1 +6817,user_006817,user_006817@example.com,2 +6818,user_006818,user_006818@example.com, +6819,user_006819,user_006819@example.com,1 +6820,user_006820,user_006820@example.com,2 +6821,user_006821,user_006821@example.com, +6822,user_006822,user_006822@example.com,1 +6823,user_006823,user_006823@example.com,2 +6824,user_006824,user_006824@example.com, +6825,user_006825,user_006825@example.com,1 +6826,user_006826,user_006826@example.com,2 +6827,user_006827,user_006827@example.com, +6828,user_006828,user_006828@example.com,1 +6829,user_006829,user_006829@example.com,2 +6830,user_006830,user_006830@example.com, +6831,user_006831,user_006831@example.com,1 +6832,user_006832,user_006832@example.com,2 +6833,user_006833,user_006833@example.com, +6834,user_006834,user_006834@example.com,1 +6835,user_006835,user_006835@example.com,2 +6836,user_006836,user_006836@example.com, +6837,user_006837,user_006837@example.com,1 +6838,user_006838,user_006838@example.com,2 +6839,user_006839,user_006839@example.com, +6840,user_006840,user_006840@example.com,1 +6841,user_006841,user_006841@example.com,2 +6842,user_006842,user_006842@example.com, +6843,user_006843,user_006843@example.com,1 +6844,user_006844,user_006844@example.com,2 +6845,user_006845,user_006845@example.com, +6846,user_006846,user_006846@example.com,1 +6847,user_006847,user_006847@example.com,2 +6848,user_006848,user_006848@example.com, +6849,user_006849,user_006849@example.com,1 +6850,user_006850,user_006850@example.com,2 +6851,user_006851,user_006851@example.com, +6852,user_006852,user_006852@example.com,1 +6853,user_006853,user_006853@example.com,2 +6854,user_006854,user_006854@example.com, +6855,user_006855,user_006855@example.com,1 +6856,user_006856,user_006856@example.com,2 +6857,user_006857,user_006857@example.com, +6858,user_006858,user_006858@example.com,1 +6859,user_006859,user_006859@example.com,2 +6860,user_006860,user_006860@example.com, +6861,user_006861,user_006861@example.com,1 +6862,user_006862,user_006862@example.com,2 +6863,user_006863,user_006863@example.com, +6864,user_006864,user_006864@example.com,1 +6865,user_006865,user_006865@example.com,2 +6866,user_006866,user_006866@example.com, +6867,user_006867,user_006867@example.com,1 +6868,user_006868,user_006868@example.com,2 +6869,user_006869,user_006869@example.com, +6870,user_006870,user_006870@example.com,1 +6871,user_006871,user_006871@example.com,2 +6872,user_006872,user_006872@example.com, +6873,user_006873,user_006873@example.com,1 +6874,user_006874,user_006874@example.com,2 +6875,user_006875,user_006875@example.com, +6876,user_006876,user_006876@example.com,1 +6877,user_006877,user_006877@example.com,2 +6878,user_006878,user_006878@example.com, +6879,user_006879,user_006879@example.com,1 +6880,user_006880,user_006880@example.com,2 +6881,user_006881,user_006881@example.com, +6882,user_006882,user_006882@example.com,1 +6883,user_006883,user_006883@example.com,2 +6884,user_006884,user_006884@example.com, +6885,user_006885,user_006885@example.com,1 +6886,user_006886,user_006886@example.com,2 +6887,user_006887,user_006887@example.com, +6888,user_006888,user_006888@example.com,1 +6889,user_006889,user_006889@example.com,2 +6890,user_006890,user_006890@example.com, +6891,user_006891,user_006891@example.com,1 +6892,user_006892,user_006892@example.com,2 +6893,user_006893,user_006893@example.com, +6894,user_006894,user_006894@example.com,1 +6895,user_006895,user_006895@example.com,2 +6896,user_006896,user_006896@example.com, +6897,user_006897,user_006897@example.com,1 +6898,user_006898,user_006898@example.com,2 +6899,user_006899,user_006899@example.com, +6900,user_006900,user_006900@example.com,1 +6901,user_006901,user_006901@example.com,2 +6902,user_006902,user_006902@example.com, +6903,user_006903,user_006903@example.com,1 +6904,user_006904,user_006904@example.com,2 +6905,user_006905,user_006905@example.com, +6906,user_006906,user_006906@example.com,1 +6907,user_006907,user_006907@example.com,2 +6908,user_006908,user_006908@example.com, +6909,user_006909,user_006909@example.com,1 +6910,user_006910,user_006910@example.com,2 +6911,user_006911,user_006911@example.com, +6912,user_006912,user_006912@example.com,1 +6913,user_006913,user_006913@example.com,2 +6914,user_006914,user_006914@example.com, +6915,user_006915,user_006915@example.com,1 +6916,user_006916,user_006916@example.com,2 +6917,user_006917,user_006917@example.com, +6918,user_006918,user_006918@example.com,1 +6919,user_006919,user_006919@example.com,2 +6920,user_006920,user_006920@example.com, +6921,user_006921,user_006921@example.com,1 +6922,user_006922,user_006922@example.com,2 +6923,user_006923,user_006923@example.com, +6924,user_006924,user_006924@example.com,1 +6925,user_006925,user_006925@example.com,2 +6926,user_006926,user_006926@example.com, +6927,user_006927,user_006927@example.com,1 +6928,user_006928,user_006928@example.com,2 +6929,user_006929,user_006929@example.com, +6930,user_006930,user_006930@example.com,1 +6931,user_006931,user_006931@example.com,2 +6932,user_006932,user_006932@example.com, +6933,user_006933,user_006933@example.com,1 +6934,user_006934,user_006934@example.com,2 +6935,user_006935,user_006935@example.com, +6936,user_006936,user_006936@example.com,1 +6937,user_006937,user_006937@example.com,2 +6938,user_006938,user_006938@example.com, +6939,user_006939,user_006939@example.com,1 +6940,user_006940,user_006940@example.com,2 +6941,user_006941,user_006941@example.com, +6942,user_006942,user_006942@example.com,1 +6943,user_006943,user_006943@example.com,2 +6944,user_006944,user_006944@example.com, +6945,user_006945,user_006945@example.com,1 +6946,user_006946,user_006946@example.com,2 +6947,user_006947,user_006947@example.com, +6948,user_006948,user_006948@example.com,1 +6949,user_006949,user_006949@example.com,2 +6950,user_006950,user_006950@example.com, +6951,user_006951,user_006951@example.com,1 +6952,user_006952,user_006952@example.com,2 +6953,user_006953,user_006953@example.com, +6954,user_006954,user_006954@example.com,1 +6955,user_006955,user_006955@example.com,2 +6956,user_006956,user_006956@example.com, +6957,user_006957,user_006957@example.com,1 +6958,user_006958,user_006958@example.com,2 +6959,user_006959,user_006959@example.com, +6960,user_006960,user_006960@example.com,1 +6961,user_006961,user_006961@example.com,2 +6962,user_006962,user_006962@example.com, +6963,user_006963,user_006963@example.com,1 +6964,user_006964,user_006964@example.com,2 +6965,user_006965,user_006965@example.com, +6966,user_006966,user_006966@example.com,1 +6967,user_006967,user_006967@example.com,2 +6968,user_006968,user_006968@example.com, +6969,user_006969,user_006969@example.com,1 +6970,user_006970,user_006970@example.com,2 +6971,user_006971,user_006971@example.com, +6972,user_006972,user_006972@example.com,1 +6973,user_006973,user_006973@example.com,2 +6974,user_006974,user_006974@example.com, +6975,user_006975,user_006975@example.com,1 +6976,user_006976,user_006976@example.com,2 +6977,user_006977,user_006977@example.com, +6978,user_006978,user_006978@example.com,1 +6979,user_006979,user_006979@example.com,2 +6980,user_006980,user_006980@example.com, +6981,user_006981,user_006981@example.com,1 +6982,user_006982,user_006982@example.com,2 +6983,user_006983,user_006983@example.com, +6984,user_006984,user_006984@example.com,1 +6985,user_006985,user_006985@example.com,2 +6986,user_006986,user_006986@example.com, +6987,user_006987,user_006987@example.com,1 +6988,user_006988,user_006988@example.com,2 +6989,user_006989,user_006989@example.com, +6990,user_006990,user_006990@example.com,1 +6991,user_006991,user_006991@example.com,2 +6992,user_006992,user_006992@example.com, +6993,user_006993,user_006993@example.com,1 +6994,user_006994,user_006994@example.com,2 +6995,user_006995,user_006995@example.com, +6996,user_006996,user_006996@example.com,1 +6997,user_006997,user_006997@example.com,2 +6998,user_006998,user_006998@example.com, +6999,user_006999,user_006999@example.com,1 +7000,user_007000,user_007000@example.com,2 +7001,user_007001,user_007001@example.com, +7002,user_007002,user_007002@example.com,1 +7003,user_007003,user_007003@example.com,2 +7004,user_007004,user_007004@example.com, +7005,user_007005,user_007005@example.com,1 +7006,user_007006,user_007006@example.com,2 +7007,user_007007,user_007007@example.com, +7008,user_007008,user_007008@example.com,1 +7009,user_007009,user_007009@example.com,2 +7010,user_007010,user_007010@example.com, +7011,user_007011,user_007011@example.com,1 +7012,user_007012,user_007012@example.com,2 +7013,user_007013,user_007013@example.com, +7014,user_007014,user_007014@example.com,1 +7015,user_007015,user_007015@example.com,2 +7016,user_007016,user_007016@example.com, +7017,user_007017,user_007017@example.com,1 +7018,user_007018,user_007018@example.com,2 +7019,user_007019,user_007019@example.com, +7020,user_007020,user_007020@example.com,1 +7021,user_007021,user_007021@example.com,2 +7022,user_007022,user_007022@example.com, +7023,user_007023,user_007023@example.com,1 +7024,user_007024,user_007024@example.com,2 +7025,user_007025,user_007025@example.com, +7026,user_007026,user_007026@example.com,1 +7027,user_007027,user_007027@example.com,2 +7028,user_007028,user_007028@example.com, +7029,user_007029,user_007029@example.com,1 +7030,user_007030,user_007030@example.com,2 +7031,user_007031,user_007031@example.com, +7032,user_007032,user_007032@example.com,1 +7033,user_007033,user_007033@example.com,2 +7034,user_007034,user_007034@example.com, +7035,user_007035,user_007035@example.com,1 +7036,user_007036,user_007036@example.com,2 +7037,user_007037,user_007037@example.com, +7038,user_007038,user_007038@example.com,1 +7039,user_007039,user_007039@example.com,2 +7040,user_007040,user_007040@example.com, +7041,user_007041,user_007041@example.com,1 +7042,user_007042,user_007042@example.com,2 +7043,user_007043,user_007043@example.com, +7044,user_007044,user_007044@example.com,1 +7045,user_007045,user_007045@example.com,2 +7046,user_007046,user_007046@example.com, +7047,user_007047,user_007047@example.com,1 +7048,user_007048,user_007048@example.com,2 +7049,user_007049,user_007049@example.com, +7050,user_007050,user_007050@example.com,1 +7051,user_007051,user_007051@example.com,2 +7052,user_007052,user_007052@example.com, +7053,user_007053,user_007053@example.com,1 +7054,user_007054,user_007054@example.com,2 +7055,user_007055,user_007055@example.com, +7056,user_007056,user_007056@example.com,1 +7057,user_007057,user_007057@example.com,2 +7058,user_007058,user_007058@example.com, +7059,user_007059,user_007059@example.com,1 +7060,user_007060,user_007060@example.com,2 +7061,user_007061,user_007061@example.com, +7062,user_007062,user_007062@example.com,1 +7063,user_007063,user_007063@example.com,2 +7064,user_007064,user_007064@example.com, +7065,user_007065,user_007065@example.com,1 +7066,user_007066,user_007066@example.com,2 +7067,user_007067,user_007067@example.com, +7068,user_007068,user_007068@example.com,1 +7069,user_007069,user_007069@example.com,2 +7070,user_007070,user_007070@example.com, +7071,user_007071,user_007071@example.com,1 +7072,user_007072,user_007072@example.com,2 +7073,user_007073,user_007073@example.com, +7074,user_007074,user_007074@example.com,1 +7075,user_007075,user_007075@example.com,2 +7076,user_007076,user_007076@example.com, +7077,user_007077,user_007077@example.com,1 +7078,user_007078,user_007078@example.com,2 +7079,user_007079,user_007079@example.com, +7080,user_007080,user_007080@example.com,1 +7081,user_007081,user_007081@example.com,2 +7082,user_007082,user_007082@example.com, +7083,user_007083,user_007083@example.com,1 +7084,user_007084,user_007084@example.com,2 +7085,user_007085,user_007085@example.com, +7086,user_007086,user_007086@example.com,1 +7087,user_007087,user_007087@example.com,2 +7088,user_007088,user_007088@example.com, +7089,user_007089,user_007089@example.com,1 +7090,user_007090,user_007090@example.com,2 +7091,user_007091,user_007091@example.com, +7092,user_007092,user_007092@example.com,1 +7093,user_007093,user_007093@example.com,2 +7094,user_007094,user_007094@example.com, +7095,user_007095,user_007095@example.com,1 +7096,user_007096,user_007096@example.com,2 +7097,user_007097,user_007097@example.com, +7098,user_007098,user_007098@example.com,1 +7099,user_007099,user_007099@example.com,2 +7100,user_007100,user_007100@example.com, +7101,user_007101,user_007101@example.com,1 +7102,user_007102,user_007102@example.com,2 +7103,user_007103,user_007103@example.com, +7104,user_007104,user_007104@example.com,1 +7105,user_007105,user_007105@example.com,2 +7106,user_007106,user_007106@example.com, +7107,user_007107,user_007107@example.com,1 +7108,user_007108,user_007108@example.com,2 +7109,user_007109,user_007109@example.com, +7110,user_007110,user_007110@example.com,1 +7111,user_007111,user_007111@example.com,2 +7112,user_007112,user_007112@example.com, +7113,user_007113,user_007113@example.com,1 +7114,user_007114,user_007114@example.com,2 +7115,user_007115,user_007115@example.com, +7116,user_007116,user_007116@example.com,1 +7117,user_007117,user_007117@example.com,2 +7118,user_007118,user_007118@example.com, +7119,user_007119,user_007119@example.com,1 +7120,user_007120,user_007120@example.com,2 +7121,user_007121,user_007121@example.com, +7122,user_007122,user_007122@example.com,1 +7123,user_007123,user_007123@example.com,2 +7124,user_007124,user_007124@example.com, +7125,user_007125,user_007125@example.com,1 +7126,user_007126,user_007126@example.com,2 +7127,user_007127,user_007127@example.com, +7128,user_007128,user_007128@example.com,1 +7129,user_007129,user_007129@example.com,2 +7130,user_007130,user_007130@example.com, +7131,user_007131,user_007131@example.com,1 +7132,user_007132,user_007132@example.com,2 +7133,user_007133,user_007133@example.com, +7134,user_007134,user_007134@example.com,1 +7135,user_007135,user_007135@example.com,2 +7136,user_007136,user_007136@example.com, +7137,user_007137,user_007137@example.com,1 +7138,user_007138,user_007138@example.com,2 +7139,user_007139,user_007139@example.com, +7140,user_007140,user_007140@example.com,1 +7141,user_007141,user_007141@example.com,2 +7142,user_007142,user_007142@example.com, +7143,user_007143,user_007143@example.com,1 +7144,user_007144,user_007144@example.com,2 +7145,user_007145,user_007145@example.com, +7146,user_007146,user_007146@example.com,1 +7147,user_007147,user_007147@example.com,2 +7148,user_007148,user_007148@example.com, +7149,user_007149,user_007149@example.com,1 +7150,user_007150,user_007150@example.com,2 +7151,user_007151,user_007151@example.com, +7152,user_007152,user_007152@example.com,1 +7153,user_007153,user_007153@example.com,2 +7154,user_007154,user_007154@example.com, +7155,user_007155,user_007155@example.com,1 +7156,user_007156,user_007156@example.com,2 +7157,user_007157,user_007157@example.com, +7158,user_007158,user_007158@example.com,1 +7159,user_007159,user_007159@example.com,2 +7160,user_007160,user_007160@example.com, +7161,user_007161,user_007161@example.com,1 +7162,user_007162,user_007162@example.com,2 +7163,user_007163,user_007163@example.com, +7164,user_007164,user_007164@example.com,1 +7165,user_007165,user_007165@example.com,2 +7166,user_007166,user_007166@example.com, +7167,user_007167,user_007167@example.com,1 +7168,user_007168,user_007168@example.com,2 +7169,user_007169,user_007169@example.com, +7170,user_007170,user_007170@example.com,1 +7171,user_007171,user_007171@example.com,2 +7172,user_007172,user_007172@example.com, +7173,user_007173,user_007173@example.com,1 +7174,user_007174,user_007174@example.com,2 +7175,user_007175,user_007175@example.com, +7176,user_007176,user_007176@example.com,1 +7177,user_007177,user_007177@example.com,2 +7178,user_007178,user_007178@example.com, +7179,user_007179,user_007179@example.com,1 +7180,user_007180,user_007180@example.com,2 +7181,user_007181,user_007181@example.com, +7182,user_007182,user_007182@example.com,1 +7183,user_007183,user_007183@example.com,2 +7184,user_007184,user_007184@example.com, +7185,user_007185,user_007185@example.com,1 +7186,user_007186,user_007186@example.com,2 +7187,user_007187,user_007187@example.com, +7188,user_007188,user_007188@example.com,1 +7189,user_007189,user_007189@example.com,2 +7190,user_007190,user_007190@example.com, +7191,user_007191,user_007191@example.com,1 +7192,user_007192,user_007192@example.com,2 +7193,user_007193,user_007193@example.com, +7194,user_007194,user_007194@example.com,1 +7195,user_007195,user_007195@example.com,2 +7196,user_007196,user_007196@example.com, +7197,user_007197,user_007197@example.com,1 +7198,user_007198,user_007198@example.com,2 +7199,user_007199,user_007199@example.com, +7200,user_007200,user_007200@example.com,1 +7201,user_007201,user_007201@example.com,2 +7202,user_007202,user_007202@example.com, +7203,user_007203,user_007203@example.com,1 +7204,user_007204,user_007204@example.com,2 +7205,user_007205,user_007205@example.com, +7206,user_007206,user_007206@example.com,1 +7207,user_007207,user_007207@example.com,2 +7208,user_007208,user_007208@example.com, +7209,user_007209,user_007209@example.com,1 +7210,user_007210,user_007210@example.com,2 +7211,user_007211,user_007211@example.com, +7212,user_007212,user_007212@example.com,1 +7213,user_007213,user_007213@example.com,2 +7214,user_007214,user_007214@example.com, +7215,user_007215,user_007215@example.com,1 +7216,user_007216,user_007216@example.com,2 +7217,user_007217,user_007217@example.com, +7218,user_007218,user_007218@example.com,1 +7219,user_007219,user_007219@example.com,2 +7220,user_007220,user_007220@example.com, +7221,user_007221,user_007221@example.com,1 +7222,user_007222,user_007222@example.com,2 +7223,user_007223,user_007223@example.com, +7224,user_007224,user_007224@example.com,1 +7225,user_007225,user_007225@example.com,2 +7226,user_007226,user_007226@example.com, +7227,user_007227,user_007227@example.com,1 +7228,user_007228,user_007228@example.com,2 +7229,user_007229,user_007229@example.com, +7230,user_007230,user_007230@example.com,1 +7231,user_007231,user_007231@example.com,2 +7232,user_007232,user_007232@example.com, +7233,user_007233,user_007233@example.com,1 +7234,user_007234,user_007234@example.com,2 +7235,user_007235,user_007235@example.com, +7236,user_007236,user_007236@example.com,1 +7237,user_007237,user_007237@example.com,2 +7238,user_007238,user_007238@example.com, +7239,user_007239,user_007239@example.com,1 +7240,user_007240,user_007240@example.com,2 +7241,user_007241,user_007241@example.com, +7242,user_007242,user_007242@example.com,1 +7243,user_007243,user_007243@example.com,2 +7244,user_007244,user_007244@example.com, +7245,user_007245,user_007245@example.com,1 +7246,user_007246,user_007246@example.com,2 +7247,user_007247,user_007247@example.com, +7248,user_007248,user_007248@example.com,1 +7249,user_007249,user_007249@example.com,2 +7250,user_007250,user_007250@example.com, +7251,user_007251,user_007251@example.com,1 +7252,user_007252,user_007252@example.com,2 +7253,user_007253,user_007253@example.com, +7254,user_007254,user_007254@example.com,1 +7255,user_007255,user_007255@example.com,2 +7256,user_007256,user_007256@example.com, +7257,user_007257,user_007257@example.com,1 +7258,user_007258,user_007258@example.com,2 +7259,user_007259,user_007259@example.com, +7260,user_007260,user_007260@example.com,1 +7261,user_007261,user_007261@example.com,2 +7262,user_007262,user_007262@example.com, +7263,user_007263,user_007263@example.com,1 +7264,user_007264,user_007264@example.com,2 +7265,user_007265,user_007265@example.com, +7266,user_007266,user_007266@example.com,1 +7267,user_007267,user_007267@example.com,2 +7268,user_007268,user_007268@example.com, +7269,user_007269,user_007269@example.com,1 +7270,user_007270,user_007270@example.com,2 +7271,user_007271,user_007271@example.com, +7272,user_007272,user_007272@example.com,1 +7273,user_007273,user_007273@example.com,2 +7274,user_007274,user_007274@example.com, +7275,user_007275,user_007275@example.com,1 +7276,user_007276,user_007276@example.com,2 +7277,user_007277,user_007277@example.com, +7278,user_007278,user_007278@example.com,1 +7279,user_007279,user_007279@example.com,2 +7280,user_007280,user_007280@example.com, +7281,user_007281,user_007281@example.com,1 +7282,user_007282,user_007282@example.com,2 +7283,user_007283,user_007283@example.com, +7284,user_007284,user_007284@example.com,1 +7285,user_007285,user_007285@example.com,2 +7286,user_007286,user_007286@example.com, +7287,user_007287,user_007287@example.com,1 +7288,user_007288,user_007288@example.com,2 +7289,user_007289,user_007289@example.com, +7290,user_007290,user_007290@example.com,1 +7291,user_007291,user_007291@example.com,2 +7292,user_007292,user_007292@example.com, +7293,user_007293,user_007293@example.com,1 +7294,user_007294,user_007294@example.com,2 +7295,user_007295,user_007295@example.com, +7296,user_007296,user_007296@example.com,1 +7297,user_007297,user_007297@example.com,2 +7298,user_007298,user_007298@example.com, +7299,user_007299,user_007299@example.com,1 +7300,user_007300,user_007300@example.com,2 +7301,user_007301,user_007301@example.com, +7302,user_007302,user_007302@example.com,1 +7303,user_007303,user_007303@example.com,2 +7304,user_007304,user_007304@example.com, +7305,user_007305,user_007305@example.com,1 +7306,user_007306,user_007306@example.com,2 +7307,user_007307,user_007307@example.com, +7308,user_007308,user_007308@example.com,1 +7309,user_007309,user_007309@example.com,2 +7310,user_007310,user_007310@example.com, +7311,user_007311,user_007311@example.com,1 +7312,user_007312,user_007312@example.com,2 +7313,user_007313,user_007313@example.com, +7314,user_007314,user_007314@example.com,1 +7315,user_007315,user_007315@example.com,2 +7316,user_007316,user_007316@example.com, +7317,user_007317,user_007317@example.com,1 +7318,user_007318,user_007318@example.com,2 +7319,user_007319,user_007319@example.com, +7320,user_007320,user_007320@example.com,1 +7321,user_007321,user_007321@example.com,2 +7322,user_007322,user_007322@example.com, +7323,user_007323,user_007323@example.com,1 +7324,user_007324,user_007324@example.com,2 +7325,user_007325,user_007325@example.com, +7326,user_007326,user_007326@example.com,1 +7327,user_007327,user_007327@example.com,2 +7328,user_007328,user_007328@example.com, +7329,user_007329,user_007329@example.com,1 +7330,user_007330,user_007330@example.com,2 +7331,user_007331,user_007331@example.com, +7332,user_007332,user_007332@example.com,1 +7333,user_007333,user_007333@example.com,2 +7334,user_007334,user_007334@example.com, +7335,user_007335,user_007335@example.com,1 +7336,user_007336,user_007336@example.com,2 +7337,user_007337,user_007337@example.com, +7338,user_007338,user_007338@example.com,1 +7339,user_007339,user_007339@example.com,2 +7340,user_007340,user_007340@example.com, +7341,user_007341,user_007341@example.com,1 +7342,user_007342,user_007342@example.com,2 +7343,user_007343,user_007343@example.com, +7344,user_007344,user_007344@example.com,1 +7345,user_007345,user_007345@example.com,2 +7346,user_007346,user_007346@example.com, +7347,user_007347,user_007347@example.com,1 +7348,user_007348,user_007348@example.com,2 +7349,user_007349,user_007349@example.com, +7350,user_007350,user_007350@example.com,1 +7351,user_007351,user_007351@example.com,2 +7352,user_007352,user_007352@example.com, +7353,user_007353,user_007353@example.com,1 +7354,user_007354,user_007354@example.com,2 +7355,user_007355,user_007355@example.com, +7356,user_007356,user_007356@example.com,1 +7357,user_007357,user_007357@example.com,2 +7358,user_007358,user_007358@example.com, +7359,user_007359,user_007359@example.com,1 +7360,user_007360,user_007360@example.com,2 +7361,user_007361,user_007361@example.com, +7362,user_007362,user_007362@example.com,1 +7363,user_007363,user_007363@example.com,2 +7364,user_007364,user_007364@example.com, +7365,user_007365,user_007365@example.com,1 +7366,user_007366,user_007366@example.com,2 +7367,user_007367,user_007367@example.com, +7368,user_007368,user_007368@example.com,1 +7369,user_007369,user_007369@example.com,2 +7370,user_007370,user_007370@example.com, +7371,user_007371,user_007371@example.com,1 +7372,user_007372,user_007372@example.com,2 +7373,user_007373,user_007373@example.com, +7374,user_007374,user_007374@example.com,1 +7375,user_007375,user_007375@example.com,2 +7376,user_007376,user_007376@example.com, +7377,user_007377,user_007377@example.com,1 +7378,user_007378,user_007378@example.com,2 +7379,user_007379,user_007379@example.com, +7380,user_007380,user_007380@example.com,1 +7381,user_007381,user_007381@example.com,2 +7382,user_007382,user_007382@example.com, +7383,user_007383,user_007383@example.com,1 +7384,user_007384,user_007384@example.com,2 +7385,user_007385,user_007385@example.com, +7386,user_007386,user_007386@example.com,1 +7387,user_007387,user_007387@example.com,2 +7388,user_007388,user_007388@example.com, +7389,user_007389,user_007389@example.com,1 +7390,user_007390,user_007390@example.com,2 +7391,user_007391,user_007391@example.com, +7392,user_007392,user_007392@example.com,1 +7393,user_007393,user_007393@example.com,2 +7394,user_007394,user_007394@example.com, +7395,user_007395,user_007395@example.com,1 +7396,user_007396,user_007396@example.com,2 +7397,user_007397,user_007397@example.com, +7398,user_007398,user_007398@example.com,1 +7399,user_007399,user_007399@example.com,2 +7400,user_007400,user_007400@example.com, +7401,user_007401,user_007401@example.com,1 +7402,user_007402,user_007402@example.com,2 +7403,user_007403,user_007403@example.com, +7404,user_007404,user_007404@example.com,1 +7405,user_007405,user_007405@example.com,2 +7406,user_007406,user_007406@example.com, +7407,user_007407,user_007407@example.com,1 +7408,user_007408,user_007408@example.com,2 +7409,user_007409,user_007409@example.com, +7410,user_007410,user_007410@example.com,1 +7411,user_007411,user_007411@example.com,2 +7412,user_007412,user_007412@example.com, +7413,user_007413,user_007413@example.com,1 +7414,user_007414,user_007414@example.com,2 +7415,user_007415,user_007415@example.com, +7416,user_007416,user_007416@example.com,1 +7417,user_007417,user_007417@example.com,2 +7418,user_007418,user_007418@example.com, +7419,user_007419,user_007419@example.com,1 +7420,user_007420,user_007420@example.com,2 +7421,user_007421,user_007421@example.com, +7422,user_007422,user_007422@example.com,1 +7423,user_007423,user_007423@example.com,2 +7424,user_007424,user_007424@example.com, +7425,user_007425,user_007425@example.com,1 +7426,user_007426,user_007426@example.com,2 +7427,user_007427,user_007427@example.com, +7428,user_007428,user_007428@example.com,1 +7429,user_007429,user_007429@example.com,2 +7430,user_007430,user_007430@example.com, +7431,user_007431,user_007431@example.com,1 +7432,user_007432,user_007432@example.com,2 +7433,user_007433,user_007433@example.com, +7434,user_007434,user_007434@example.com,1 +7435,user_007435,user_007435@example.com,2 +7436,user_007436,user_007436@example.com, +7437,user_007437,user_007437@example.com,1 +7438,user_007438,user_007438@example.com,2 +7439,user_007439,user_007439@example.com, +7440,user_007440,user_007440@example.com,1 +7441,user_007441,user_007441@example.com,2 +7442,user_007442,user_007442@example.com, +7443,user_007443,user_007443@example.com,1 +7444,user_007444,user_007444@example.com,2 +7445,user_007445,user_007445@example.com, +7446,user_007446,user_007446@example.com,1 +7447,user_007447,user_007447@example.com,2 +7448,user_007448,user_007448@example.com, +7449,user_007449,user_007449@example.com,1 +7450,user_007450,user_007450@example.com,2 +7451,user_007451,user_007451@example.com, +7452,user_007452,user_007452@example.com,1 +7453,user_007453,user_007453@example.com,2 +7454,user_007454,user_007454@example.com, +7455,user_007455,user_007455@example.com,1 +7456,user_007456,user_007456@example.com,2 +7457,user_007457,user_007457@example.com, +7458,user_007458,user_007458@example.com,1 +7459,user_007459,user_007459@example.com,2 +7460,user_007460,user_007460@example.com, +7461,user_007461,user_007461@example.com,1 +7462,user_007462,user_007462@example.com,2 +7463,user_007463,user_007463@example.com, +7464,user_007464,user_007464@example.com,1 +7465,user_007465,user_007465@example.com,2 +7466,user_007466,user_007466@example.com, +7467,user_007467,user_007467@example.com,1 +7468,user_007468,user_007468@example.com,2 +7469,user_007469,user_007469@example.com, +7470,user_007470,user_007470@example.com,1 +7471,user_007471,user_007471@example.com,2 +7472,user_007472,user_007472@example.com, +7473,user_007473,user_007473@example.com,1 +7474,user_007474,user_007474@example.com,2 +7475,user_007475,user_007475@example.com, +7476,user_007476,user_007476@example.com,1 +7477,user_007477,user_007477@example.com,2 +7478,user_007478,user_007478@example.com, +7479,user_007479,user_007479@example.com,1 +7480,user_007480,user_007480@example.com,2 +7481,user_007481,user_007481@example.com, +7482,user_007482,user_007482@example.com,1 +7483,user_007483,user_007483@example.com,2 +7484,user_007484,user_007484@example.com, +7485,user_007485,user_007485@example.com,1 +7486,user_007486,user_007486@example.com,2 +7487,user_007487,user_007487@example.com, +7488,user_007488,user_007488@example.com,1 +7489,user_007489,user_007489@example.com,2 +7490,user_007490,user_007490@example.com, +7491,user_007491,user_007491@example.com,1 +7492,user_007492,user_007492@example.com,2 +7493,user_007493,user_007493@example.com, +7494,user_007494,user_007494@example.com,1 +7495,user_007495,user_007495@example.com,2 +7496,user_007496,user_007496@example.com, +7497,user_007497,user_007497@example.com,1 +7498,user_007498,user_007498@example.com,2 +7499,user_007499,user_007499@example.com, +7500,user_007500,user_007500@example.com,1 +7501,user_007501,user_007501@example.com,2 +7502,user_007502,user_007502@example.com, +7503,user_007503,user_007503@example.com,1 +7504,user_007504,user_007504@example.com,2 +7505,user_007505,user_007505@example.com, +7506,user_007506,user_007506@example.com,1 +7507,user_007507,user_007507@example.com,2 +7508,user_007508,user_007508@example.com, +7509,user_007509,user_007509@example.com,1 +7510,user_007510,user_007510@example.com,2 +7511,user_007511,user_007511@example.com, +7512,user_007512,user_007512@example.com,1 +7513,user_007513,user_007513@example.com,2 +7514,user_007514,user_007514@example.com, +7515,user_007515,user_007515@example.com,1 +7516,user_007516,user_007516@example.com,2 +7517,user_007517,user_007517@example.com, +7518,user_007518,user_007518@example.com,1 +7519,user_007519,user_007519@example.com,2 +7520,user_007520,user_007520@example.com, +7521,user_007521,user_007521@example.com,1 +7522,user_007522,user_007522@example.com,2 +7523,user_007523,user_007523@example.com, +7524,user_007524,user_007524@example.com,1 +7525,user_007525,user_007525@example.com,2 +7526,user_007526,user_007526@example.com, +7527,user_007527,user_007527@example.com,1 +7528,user_007528,user_007528@example.com,2 +7529,user_007529,user_007529@example.com, +7530,user_007530,user_007530@example.com,1 +7531,user_007531,user_007531@example.com,2 +7532,user_007532,user_007532@example.com, +7533,user_007533,user_007533@example.com,1 +7534,user_007534,user_007534@example.com,2 +7535,user_007535,user_007535@example.com, +7536,user_007536,user_007536@example.com,1 +7537,user_007537,user_007537@example.com,2 +7538,user_007538,user_007538@example.com, +7539,user_007539,user_007539@example.com,1 +7540,user_007540,user_007540@example.com,2 +7541,user_007541,user_007541@example.com, +7542,user_007542,user_007542@example.com,1 +7543,user_007543,user_007543@example.com,2 +7544,user_007544,user_007544@example.com, +7545,user_007545,user_007545@example.com,1 +7546,user_007546,user_007546@example.com,2 +7547,user_007547,user_007547@example.com, +7548,user_007548,user_007548@example.com,1 +7549,user_007549,user_007549@example.com,2 +7550,user_007550,user_007550@example.com, +7551,user_007551,user_007551@example.com,1 +7552,user_007552,user_007552@example.com,2 +7553,user_007553,user_007553@example.com, +7554,user_007554,user_007554@example.com,1 +7555,user_007555,user_007555@example.com,2 +7556,user_007556,user_007556@example.com, +7557,user_007557,user_007557@example.com,1 +7558,user_007558,user_007558@example.com,2 +7559,user_007559,user_007559@example.com, +7560,user_007560,user_007560@example.com,1 +7561,user_007561,user_007561@example.com,2 +7562,user_007562,user_007562@example.com, +7563,user_007563,user_007563@example.com,1 +7564,user_007564,user_007564@example.com,2 +7565,user_007565,user_007565@example.com, +7566,user_007566,user_007566@example.com,1 +7567,user_007567,user_007567@example.com,2 +7568,user_007568,user_007568@example.com, +7569,user_007569,user_007569@example.com,1 +7570,user_007570,user_007570@example.com,2 +7571,user_007571,user_007571@example.com, +7572,user_007572,user_007572@example.com,1 +7573,user_007573,user_007573@example.com,2 +7574,user_007574,user_007574@example.com, +7575,user_007575,user_007575@example.com,1 +7576,user_007576,user_007576@example.com,2 +7577,user_007577,user_007577@example.com, +7578,user_007578,user_007578@example.com,1 +7579,user_007579,user_007579@example.com,2 +7580,user_007580,user_007580@example.com, +7581,user_007581,user_007581@example.com,1 +7582,user_007582,user_007582@example.com,2 +7583,user_007583,user_007583@example.com, +7584,user_007584,user_007584@example.com,1 +7585,user_007585,user_007585@example.com,2 +7586,user_007586,user_007586@example.com, +7587,user_007587,user_007587@example.com,1 +7588,user_007588,user_007588@example.com,2 +7589,user_007589,user_007589@example.com, +7590,user_007590,user_007590@example.com,1 +7591,user_007591,user_007591@example.com,2 +7592,user_007592,user_007592@example.com, +7593,user_007593,user_007593@example.com,1 +7594,user_007594,user_007594@example.com,2 +7595,user_007595,user_007595@example.com, +7596,user_007596,user_007596@example.com,1 +7597,user_007597,user_007597@example.com,2 +7598,user_007598,user_007598@example.com, +7599,user_007599,user_007599@example.com,1 +7600,user_007600,user_007600@example.com,2 +7601,user_007601,user_007601@example.com, +7602,user_007602,user_007602@example.com,1 +7603,user_007603,user_007603@example.com,2 +7604,user_007604,user_007604@example.com, +7605,user_007605,user_007605@example.com,1 +7606,user_007606,user_007606@example.com,2 +7607,user_007607,user_007607@example.com, +7608,user_007608,user_007608@example.com,1 +7609,user_007609,user_007609@example.com,2 +7610,user_007610,user_007610@example.com, +7611,user_007611,user_007611@example.com,1 +7612,user_007612,user_007612@example.com,2 +7613,user_007613,user_007613@example.com, +7614,user_007614,user_007614@example.com,1 +7615,user_007615,user_007615@example.com,2 +7616,user_007616,user_007616@example.com, +7617,user_007617,user_007617@example.com,1 +7618,user_007618,user_007618@example.com,2 +7619,user_007619,user_007619@example.com, +7620,user_007620,user_007620@example.com,1 +7621,user_007621,user_007621@example.com,2 +7622,user_007622,user_007622@example.com, +7623,user_007623,user_007623@example.com,1 +7624,user_007624,user_007624@example.com,2 +7625,user_007625,user_007625@example.com, +7626,user_007626,user_007626@example.com,1 +7627,user_007627,user_007627@example.com,2 +7628,user_007628,user_007628@example.com, +7629,user_007629,user_007629@example.com,1 +7630,user_007630,user_007630@example.com,2 +7631,user_007631,user_007631@example.com, +7632,user_007632,user_007632@example.com,1 +7633,user_007633,user_007633@example.com,2 +7634,user_007634,user_007634@example.com, +7635,user_007635,user_007635@example.com,1 +7636,user_007636,user_007636@example.com,2 +7637,user_007637,user_007637@example.com, +7638,user_007638,user_007638@example.com,1 +7639,user_007639,user_007639@example.com,2 +7640,user_007640,user_007640@example.com, +7641,user_007641,user_007641@example.com,1 +7642,user_007642,user_007642@example.com,2 +7643,user_007643,user_007643@example.com, +7644,user_007644,user_007644@example.com,1 +7645,user_007645,user_007645@example.com,2 +7646,user_007646,user_007646@example.com, +7647,user_007647,user_007647@example.com,1 +7648,user_007648,user_007648@example.com,2 +7649,user_007649,user_007649@example.com, +7650,user_007650,user_007650@example.com,1 +7651,user_007651,user_007651@example.com,2 +7652,user_007652,user_007652@example.com, +7653,user_007653,user_007653@example.com,1 +7654,user_007654,user_007654@example.com,2 +7655,user_007655,user_007655@example.com, +7656,user_007656,user_007656@example.com,1 +7657,user_007657,user_007657@example.com,2 +7658,user_007658,user_007658@example.com, +7659,user_007659,user_007659@example.com,1 +7660,user_007660,user_007660@example.com,2 +7661,user_007661,user_007661@example.com, +7662,user_007662,user_007662@example.com,1 +7663,user_007663,user_007663@example.com,2 +7664,user_007664,user_007664@example.com, +7665,user_007665,user_007665@example.com,1 +7666,user_007666,user_007666@example.com,2 +7667,user_007667,user_007667@example.com, +7668,user_007668,user_007668@example.com,1 +7669,user_007669,user_007669@example.com,2 +7670,user_007670,user_007670@example.com, +7671,user_007671,user_007671@example.com,1 +7672,user_007672,user_007672@example.com,2 +7673,user_007673,user_007673@example.com, +7674,user_007674,user_007674@example.com,1 +7675,user_007675,user_007675@example.com,2 +7676,user_007676,user_007676@example.com, +7677,user_007677,user_007677@example.com,1 +7678,user_007678,user_007678@example.com,2 +7679,user_007679,user_007679@example.com, +7680,user_007680,user_007680@example.com,1 +7681,user_007681,user_007681@example.com,2 +7682,user_007682,user_007682@example.com, +7683,user_007683,user_007683@example.com,1 +7684,user_007684,user_007684@example.com,2 +7685,user_007685,user_007685@example.com, +7686,user_007686,user_007686@example.com,1 +7687,user_007687,user_007687@example.com,2 +7688,user_007688,user_007688@example.com, +7689,user_007689,user_007689@example.com,1 +7690,user_007690,user_007690@example.com,2 +7691,user_007691,user_007691@example.com, +7692,user_007692,user_007692@example.com,1 +7693,user_007693,user_007693@example.com,2 +7694,user_007694,user_007694@example.com, +7695,user_007695,user_007695@example.com,1 +7696,user_007696,user_007696@example.com,2 +7697,user_007697,user_007697@example.com, +7698,user_007698,user_007698@example.com,1 +7699,user_007699,user_007699@example.com,2 +7700,user_007700,user_007700@example.com, +7701,user_007701,user_007701@example.com,1 +7702,user_007702,user_007702@example.com,2 +7703,user_007703,user_007703@example.com, +7704,user_007704,user_007704@example.com,1 +7705,user_007705,user_007705@example.com,2 +7706,user_007706,user_007706@example.com, +7707,user_007707,user_007707@example.com,1 +7708,user_007708,user_007708@example.com,2 +7709,user_007709,user_007709@example.com, +7710,user_007710,user_007710@example.com,1 +7711,user_007711,user_007711@example.com,2 +7712,user_007712,user_007712@example.com, +7713,user_007713,user_007713@example.com,1 +7714,user_007714,user_007714@example.com,2 +7715,user_007715,user_007715@example.com, +7716,user_007716,user_007716@example.com,1 +7717,user_007717,user_007717@example.com,2 +7718,user_007718,user_007718@example.com, +7719,user_007719,user_007719@example.com,1 +7720,user_007720,user_007720@example.com,2 +7721,user_007721,user_007721@example.com, +7722,user_007722,user_007722@example.com,1 +7723,user_007723,user_007723@example.com,2 +7724,user_007724,user_007724@example.com, +7725,user_007725,user_007725@example.com,1 +7726,user_007726,user_007726@example.com,2 +7727,user_007727,user_007727@example.com, +7728,user_007728,user_007728@example.com,1 +7729,user_007729,user_007729@example.com,2 +7730,user_007730,user_007730@example.com, +7731,user_007731,user_007731@example.com,1 +7732,user_007732,user_007732@example.com,2 +7733,user_007733,user_007733@example.com, +7734,user_007734,user_007734@example.com,1 +7735,user_007735,user_007735@example.com,2 +7736,user_007736,user_007736@example.com, +7737,user_007737,user_007737@example.com,1 +7738,user_007738,user_007738@example.com,2 +7739,user_007739,user_007739@example.com, +7740,user_007740,user_007740@example.com,1 +7741,user_007741,user_007741@example.com,2 +7742,user_007742,user_007742@example.com, +7743,user_007743,user_007743@example.com,1 +7744,user_007744,user_007744@example.com,2 +7745,user_007745,user_007745@example.com, +7746,user_007746,user_007746@example.com,1 +7747,user_007747,user_007747@example.com,2 +7748,user_007748,user_007748@example.com, +7749,user_007749,user_007749@example.com,1 +7750,user_007750,user_007750@example.com,2 +7751,user_007751,user_007751@example.com, +7752,user_007752,user_007752@example.com,1 +7753,user_007753,user_007753@example.com,2 +7754,user_007754,user_007754@example.com, +7755,user_007755,user_007755@example.com,1 +7756,user_007756,user_007756@example.com,2 +7757,user_007757,user_007757@example.com, +7758,user_007758,user_007758@example.com,1 +7759,user_007759,user_007759@example.com,2 +7760,user_007760,user_007760@example.com, +7761,user_007761,user_007761@example.com,1 +7762,user_007762,user_007762@example.com,2 +7763,user_007763,user_007763@example.com, +7764,user_007764,user_007764@example.com,1 +7765,user_007765,user_007765@example.com,2 +7766,user_007766,user_007766@example.com, +7767,user_007767,user_007767@example.com,1 +7768,user_007768,user_007768@example.com,2 +7769,user_007769,user_007769@example.com, +7770,user_007770,user_007770@example.com,1 +7771,user_007771,user_007771@example.com,2 +7772,user_007772,user_007772@example.com, +7773,user_007773,user_007773@example.com,1 +7774,user_007774,user_007774@example.com,2 +7775,user_007775,user_007775@example.com, +7776,user_007776,user_007776@example.com,1 +7777,user_007777,user_007777@example.com,2 +7778,user_007778,user_007778@example.com, +7779,user_007779,user_007779@example.com,1 +7780,user_007780,user_007780@example.com,2 +7781,user_007781,user_007781@example.com, +7782,user_007782,user_007782@example.com,1 +7783,user_007783,user_007783@example.com,2 +7784,user_007784,user_007784@example.com, +7785,user_007785,user_007785@example.com,1 +7786,user_007786,user_007786@example.com,2 +7787,user_007787,user_007787@example.com, +7788,user_007788,user_007788@example.com,1 +7789,user_007789,user_007789@example.com,2 +7790,user_007790,user_007790@example.com, +7791,user_007791,user_007791@example.com,1 +7792,user_007792,user_007792@example.com,2 +7793,user_007793,user_007793@example.com, +7794,user_007794,user_007794@example.com,1 +7795,user_007795,user_007795@example.com,2 +7796,user_007796,user_007796@example.com, +7797,user_007797,user_007797@example.com,1 +7798,user_007798,user_007798@example.com,2 +7799,user_007799,user_007799@example.com, +7800,user_007800,user_007800@example.com,1 +7801,user_007801,user_007801@example.com,2 +7802,user_007802,user_007802@example.com, +7803,user_007803,user_007803@example.com,1 +7804,user_007804,user_007804@example.com,2 +7805,user_007805,user_007805@example.com, +7806,user_007806,user_007806@example.com,1 +7807,user_007807,user_007807@example.com,2 +7808,user_007808,user_007808@example.com, +7809,user_007809,user_007809@example.com,1 +7810,user_007810,user_007810@example.com,2 +7811,user_007811,user_007811@example.com, +7812,user_007812,user_007812@example.com,1 +7813,user_007813,user_007813@example.com,2 +7814,user_007814,user_007814@example.com, +7815,user_007815,user_007815@example.com,1 +7816,user_007816,user_007816@example.com,2 +7817,user_007817,user_007817@example.com, +7818,user_007818,user_007818@example.com,1 +7819,user_007819,user_007819@example.com,2 +7820,user_007820,user_007820@example.com, +7821,user_007821,user_007821@example.com,1 +7822,user_007822,user_007822@example.com,2 +7823,user_007823,user_007823@example.com, +7824,user_007824,user_007824@example.com,1 +7825,user_007825,user_007825@example.com,2 +7826,user_007826,user_007826@example.com, +7827,user_007827,user_007827@example.com,1 +7828,user_007828,user_007828@example.com,2 +7829,user_007829,user_007829@example.com, +7830,user_007830,user_007830@example.com,1 +7831,user_007831,user_007831@example.com,2 +7832,user_007832,user_007832@example.com, +7833,user_007833,user_007833@example.com,1 +7834,user_007834,user_007834@example.com,2 +7835,user_007835,user_007835@example.com, +7836,user_007836,user_007836@example.com,1 +7837,user_007837,user_007837@example.com,2 +7838,user_007838,user_007838@example.com, +7839,user_007839,user_007839@example.com,1 +7840,user_007840,user_007840@example.com,2 +7841,user_007841,user_007841@example.com, +7842,user_007842,user_007842@example.com,1 +7843,user_007843,user_007843@example.com,2 +7844,user_007844,user_007844@example.com, +7845,user_007845,user_007845@example.com,1 +7846,user_007846,user_007846@example.com,2 +7847,user_007847,user_007847@example.com, +7848,user_007848,user_007848@example.com,1 +7849,user_007849,user_007849@example.com,2 +7850,user_007850,user_007850@example.com, +7851,user_007851,user_007851@example.com,1 +7852,user_007852,user_007852@example.com,2 +7853,user_007853,user_007853@example.com, +7854,user_007854,user_007854@example.com,1 +7855,user_007855,user_007855@example.com,2 +7856,user_007856,user_007856@example.com, +7857,user_007857,user_007857@example.com,1 +7858,user_007858,user_007858@example.com,2 +7859,user_007859,user_007859@example.com, +7860,user_007860,user_007860@example.com,1 +7861,user_007861,user_007861@example.com,2 +7862,user_007862,user_007862@example.com, +7863,user_007863,user_007863@example.com,1 +7864,user_007864,user_007864@example.com,2 +7865,user_007865,user_007865@example.com, +7866,user_007866,user_007866@example.com,1 +7867,user_007867,user_007867@example.com,2 +7868,user_007868,user_007868@example.com, +7869,user_007869,user_007869@example.com,1 +7870,user_007870,user_007870@example.com,2 +7871,user_007871,user_007871@example.com, +7872,user_007872,user_007872@example.com,1 +7873,user_007873,user_007873@example.com,2 +7874,user_007874,user_007874@example.com, +7875,user_007875,user_007875@example.com,1 +7876,user_007876,user_007876@example.com,2 +7877,user_007877,user_007877@example.com, +7878,user_007878,user_007878@example.com,1 +7879,user_007879,user_007879@example.com,2 +7880,user_007880,user_007880@example.com, +7881,user_007881,user_007881@example.com,1 +7882,user_007882,user_007882@example.com,2 +7883,user_007883,user_007883@example.com, +7884,user_007884,user_007884@example.com,1 +7885,user_007885,user_007885@example.com,2 +7886,user_007886,user_007886@example.com, +7887,user_007887,user_007887@example.com,1 +7888,user_007888,user_007888@example.com,2 +7889,user_007889,user_007889@example.com, +7890,user_007890,user_007890@example.com,1 +7891,user_007891,user_007891@example.com,2 +7892,user_007892,user_007892@example.com, +7893,user_007893,user_007893@example.com,1 +7894,user_007894,user_007894@example.com,2 +7895,user_007895,user_007895@example.com, +7896,user_007896,user_007896@example.com,1 +7897,user_007897,user_007897@example.com,2 +7898,user_007898,user_007898@example.com, +7899,user_007899,user_007899@example.com,1 +7900,user_007900,user_007900@example.com,2 +7901,user_007901,user_007901@example.com, +7902,user_007902,user_007902@example.com,1 +7903,user_007903,user_007903@example.com,2 +7904,user_007904,user_007904@example.com, +7905,user_007905,user_007905@example.com,1 +7906,user_007906,user_007906@example.com,2 +7907,user_007907,user_007907@example.com, +7908,user_007908,user_007908@example.com,1 +7909,user_007909,user_007909@example.com,2 +7910,user_007910,user_007910@example.com, +7911,user_007911,user_007911@example.com,1 +7912,user_007912,user_007912@example.com,2 +7913,user_007913,user_007913@example.com, +7914,user_007914,user_007914@example.com,1 +7915,user_007915,user_007915@example.com,2 +7916,user_007916,user_007916@example.com, +7917,user_007917,user_007917@example.com,1 +7918,user_007918,user_007918@example.com,2 +7919,user_007919,user_007919@example.com, +7920,user_007920,user_007920@example.com,1 +7921,user_007921,user_007921@example.com,2 +7922,user_007922,user_007922@example.com, +7923,user_007923,user_007923@example.com,1 +7924,user_007924,user_007924@example.com,2 +7925,user_007925,user_007925@example.com, +7926,user_007926,user_007926@example.com,1 +7927,user_007927,user_007927@example.com,2 +7928,user_007928,user_007928@example.com, +7929,user_007929,user_007929@example.com,1 +7930,user_007930,user_007930@example.com,2 +7931,user_007931,user_007931@example.com, +7932,user_007932,user_007932@example.com,1 +7933,user_007933,user_007933@example.com,2 +7934,user_007934,user_007934@example.com, +7935,user_007935,user_007935@example.com,1 +7936,user_007936,user_007936@example.com,2 +7937,user_007937,user_007937@example.com, +7938,user_007938,user_007938@example.com,1 +7939,user_007939,user_007939@example.com,2 +7940,user_007940,user_007940@example.com, +7941,user_007941,user_007941@example.com,1 +7942,user_007942,user_007942@example.com,2 +7943,user_007943,user_007943@example.com, +7944,user_007944,user_007944@example.com,1 +7945,user_007945,user_007945@example.com,2 +7946,user_007946,user_007946@example.com, +7947,user_007947,user_007947@example.com,1 +7948,user_007948,user_007948@example.com,2 +7949,user_007949,user_007949@example.com, +7950,user_007950,user_007950@example.com,1 +7951,user_007951,user_007951@example.com,2 +7952,user_007952,user_007952@example.com, +7953,user_007953,user_007953@example.com,1 +7954,user_007954,user_007954@example.com,2 +7955,user_007955,user_007955@example.com, +7956,user_007956,user_007956@example.com,1 +7957,user_007957,user_007957@example.com,2 +7958,user_007958,user_007958@example.com, +7959,user_007959,user_007959@example.com,1 +7960,user_007960,user_007960@example.com,2 +7961,user_007961,user_007961@example.com, +7962,user_007962,user_007962@example.com,1 +7963,user_007963,user_007963@example.com,2 +7964,user_007964,user_007964@example.com, +7965,user_007965,user_007965@example.com,1 +7966,user_007966,user_007966@example.com,2 +7967,user_007967,user_007967@example.com, +7968,user_007968,user_007968@example.com,1 +7969,user_007969,user_007969@example.com,2 +7970,user_007970,user_007970@example.com, +7971,user_007971,user_007971@example.com,1 +7972,user_007972,user_007972@example.com,2 +7973,user_007973,user_007973@example.com, +7974,user_007974,user_007974@example.com,1 +7975,user_007975,user_007975@example.com,2 +7976,user_007976,user_007976@example.com, +7977,user_007977,user_007977@example.com,1 +7978,user_007978,user_007978@example.com,2 +7979,user_007979,user_007979@example.com, +7980,user_007980,user_007980@example.com,1 +7981,user_007981,user_007981@example.com,2 +7982,user_007982,user_007982@example.com, +7983,user_007983,user_007983@example.com,1 +7984,user_007984,user_007984@example.com,2 +7985,user_007985,user_007985@example.com, +7986,user_007986,user_007986@example.com,1 +7987,user_007987,user_007987@example.com,2 +7988,user_007988,user_007988@example.com, +7989,user_007989,user_007989@example.com,1 +7990,user_007990,user_007990@example.com,2 +7991,user_007991,user_007991@example.com, +7992,user_007992,user_007992@example.com,1 +7993,user_007993,user_007993@example.com,2 +7994,user_007994,user_007994@example.com, +7995,user_007995,user_007995@example.com,1 +7996,user_007996,user_007996@example.com,2 +7997,user_007997,user_007997@example.com, +7998,user_007998,user_007998@example.com,1 +7999,user_007999,user_007999@example.com,2 +8000,user_008000,user_008000@example.com, +8001,user_008001,user_008001@example.com,1 +8002,user_008002,user_008002@example.com,2 +8003,user_008003,user_008003@example.com, +8004,user_008004,user_008004@example.com,1 +8005,user_008005,user_008005@example.com,2 +8006,user_008006,user_008006@example.com, +8007,user_008007,user_008007@example.com,1 +8008,user_008008,user_008008@example.com,2 +8009,user_008009,user_008009@example.com, +8010,user_008010,user_008010@example.com,1 +8011,user_008011,user_008011@example.com,2 +8012,user_008012,user_008012@example.com, +8013,user_008013,user_008013@example.com,1 +8014,user_008014,user_008014@example.com,2 +8015,user_008015,user_008015@example.com, +8016,user_008016,user_008016@example.com,1 +8017,user_008017,user_008017@example.com,2 +8018,user_008018,user_008018@example.com, +8019,user_008019,user_008019@example.com,1 +8020,user_008020,user_008020@example.com,2 +8021,user_008021,user_008021@example.com, +8022,user_008022,user_008022@example.com,1 +8023,user_008023,user_008023@example.com,2 +8024,user_008024,user_008024@example.com, +8025,user_008025,user_008025@example.com,1 +8026,user_008026,user_008026@example.com,2 +8027,user_008027,user_008027@example.com, +8028,user_008028,user_008028@example.com,1 +8029,user_008029,user_008029@example.com,2 +8030,user_008030,user_008030@example.com, +8031,user_008031,user_008031@example.com,1 +8032,user_008032,user_008032@example.com,2 +8033,user_008033,user_008033@example.com, +8034,user_008034,user_008034@example.com,1 +8035,user_008035,user_008035@example.com,2 +8036,user_008036,user_008036@example.com, +8037,user_008037,user_008037@example.com,1 +8038,user_008038,user_008038@example.com,2 +8039,user_008039,user_008039@example.com, +8040,user_008040,user_008040@example.com,1 +8041,user_008041,user_008041@example.com,2 +8042,user_008042,user_008042@example.com, +8043,user_008043,user_008043@example.com,1 +8044,user_008044,user_008044@example.com,2 +8045,user_008045,user_008045@example.com, +8046,user_008046,user_008046@example.com,1 +8047,user_008047,user_008047@example.com,2 +8048,user_008048,user_008048@example.com, +8049,user_008049,user_008049@example.com,1 +8050,user_008050,user_008050@example.com,2 +8051,user_008051,user_008051@example.com, +8052,user_008052,user_008052@example.com,1 +8053,user_008053,user_008053@example.com,2 +8054,user_008054,user_008054@example.com, +8055,user_008055,user_008055@example.com,1 +8056,user_008056,user_008056@example.com,2 +8057,user_008057,user_008057@example.com, +8058,user_008058,user_008058@example.com,1 +8059,user_008059,user_008059@example.com,2 +8060,user_008060,user_008060@example.com, +8061,user_008061,user_008061@example.com,1 +8062,user_008062,user_008062@example.com,2 +8063,user_008063,user_008063@example.com, +8064,user_008064,user_008064@example.com,1 +8065,user_008065,user_008065@example.com,2 +8066,user_008066,user_008066@example.com, +8067,user_008067,user_008067@example.com,1 +8068,user_008068,user_008068@example.com,2 +8069,user_008069,user_008069@example.com, +8070,user_008070,user_008070@example.com,1 +8071,user_008071,user_008071@example.com,2 +8072,user_008072,user_008072@example.com, +8073,user_008073,user_008073@example.com,1 +8074,user_008074,user_008074@example.com,2 +8075,user_008075,user_008075@example.com, +8076,user_008076,user_008076@example.com,1 +8077,user_008077,user_008077@example.com,2 +8078,user_008078,user_008078@example.com, +8079,user_008079,user_008079@example.com,1 +8080,user_008080,user_008080@example.com,2 +8081,user_008081,user_008081@example.com, +8082,user_008082,user_008082@example.com,1 +8083,user_008083,user_008083@example.com,2 +8084,user_008084,user_008084@example.com, +8085,user_008085,user_008085@example.com,1 +8086,user_008086,user_008086@example.com,2 +8087,user_008087,user_008087@example.com, +8088,user_008088,user_008088@example.com,1 +8089,user_008089,user_008089@example.com,2 +8090,user_008090,user_008090@example.com, +8091,user_008091,user_008091@example.com,1 +8092,user_008092,user_008092@example.com,2 +8093,user_008093,user_008093@example.com, +8094,user_008094,user_008094@example.com,1 +8095,user_008095,user_008095@example.com,2 +8096,user_008096,user_008096@example.com, +8097,user_008097,user_008097@example.com,1 +8098,user_008098,user_008098@example.com,2 +8099,user_008099,user_008099@example.com, +8100,user_008100,user_008100@example.com,1 +8101,user_008101,user_008101@example.com,2 +8102,user_008102,user_008102@example.com, +8103,user_008103,user_008103@example.com,1 +8104,user_008104,user_008104@example.com,2 +8105,user_008105,user_008105@example.com, +8106,user_008106,user_008106@example.com,1 +8107,user_008107,user_008107@example.com,2 +8108,user_008108,user_008108@example.com, +8109,user_008109,user_008109@example.com,1 +8110,user_008110,user_008110@example.com,2 +8111,user_008111,user_008111@example.com, +8112,user_008112,user_008112@example.com,1 +8113,user_008113,user_008113@example.com,2 +8114,user_008114,user_008114@example.com, +8115,user_008115,user_008115@example.com,1 +8116,user_008116,user_008116@example.com,2 +8117,user_008117,user_008117@example.com, +8118,user_008118,user_008118@example.com,1 +8119,user_008119,user_008119@example.com,2 +8120,user_008120,user_008120@example.com, +8121,user_008121,user_008121@example.com,1 +8122,user_008122,user_008122@example.com,2 +8123,user_008123,user_008123@example.com, +8124,user_008124,user_008124@example.com,1 +8125,user_008125,user_008125@example.com,2 +8126,user_008126,user_008126@example.com, +8127,user_008127,user_008127@example.com,1 +8128,user_008128,user_008128@example.com,2 +8129,user_008129,user_008129@example.com, +8130,user_008130,user_008130@example.com,1 +8131,user_008131,user_008131@example.com,2 +8132,user_008132,user_008132@example.com, +8133,user_008133,user_008133@example.com,1 +8134,user_008134,user_008134@example.com,2 +8135,user_008135,user_008135@example.com, +8136,user_008136,user_008136@example.com,1 +8137,user_008137,user_008137@example.com,2 +8138,user_008138,user_008138@example.com, +8139,user_008139,user_008139@example.com,1 +8140,user_008140,user_008140@example.com,2 +8141,user_008141,user_008141@example.com, +8142,user_008142,user_008142@example.com,1 +8143,user_008143,user_008143@example.com,2 +8144,user_008144,user_008144@example.com, +8145,user_008145,user_008145@example.com,1 +8146,user_008146,user_008146@example.com,2 +8147,user_008147,user_008147@example.com, +8148,user_008148,user_008148@example.com,1 +8149,user_008149,user_008149@example.com,2 +8150,user_008150,user_008150@example.com, +8151,user_008151,user_008151@example.com,1 +8152,user_008152,user_008152@example.com,2 +8153,user_008153,user_008153@example.com, +8154,user_008154,user_008154@example.com,1 +8155,user_008155,user_008155@example.com,2 +8156,user_008156,user_008156@example.com, +8157,user_008157,user_008157@example.com,1 +8158,user_008158,user_008158@example.com,2 +8159,user_008159,user_008159@example.com, +8160,user_008160,user_008160@example.com,1 +8161,user_008161,user_008161@example.com,2 +8162,user_008162,user_008162@example.com, +8163,user_008163,user_008163@example.com,1 +8164,user_008164,user_008164@example.com,2 +8165,user_008165,user_008165@example.com, +8166,user_008166,user_008166@example.com,1 +8167,user_008167,user_008167@example.com,2 +8168,user_008168,user_008168@example.com, +8169,user_008169,user_008169@example.com,1 +8170,user_008170,user_008170@example.com,2 +8171,user_008171,user_008171@example.com, +8172,user_008172,user_008172@example.com,1 +8173,user_008173,user_008173@example.com,2 +8174,user_008174,user_008174@example.com, +8175,user_008175,user_008175@example.com,1 +8176,user_008176,user_008176@example.com,2 +8177,user_008177,user_008177@example.com, +8178,user_008178,user_008178@example.com,1 +8179,user_008179,user_008179@example.com,2 +8180,user_008180,user_008180@example.com, +8181,user_008181,user_008181@example.com,1 +8182,user_008182,user_008182@example.com,2 +8183,user_008183,user_008183@example.com, +8184,user_008184,user_008184@example.com,1 +8185,user_008185,user_008185@example.com,2 +8186,user_008186,user_008186@example.com, +8187,user_008187,user_008187@example.com,1 +8188,user_008188,user_008188@example.com,2 +8189,user_008189,user_008189@example.com, +8190,user_008190,user_008190@example.com,1 +8191,user_008191,user_008191@example.com,2 +8192,user_008192,user_008192@example.com, +8193,user_008193,user_008193@example.com,1 +8194,user_008194,user_008194@example.com,2 +8195,user_008195,user_008195@example.com, +8196,user_008196,user_008196@example.com,1 +8197,user_008197,user_008197@example.com,2 +8198,user_008198,user_008198@example.com, +8199,user_008199,user_008199@example.com,1 +8200,user_008200,user_008200@example.com,2 +8201,user_008201,user_008201@example.com, +8202,user_008202,user_008202@example.com,1 +8203,user_008203,user_008203@example.com,2 +8204,user_008204,user_008204@example.com, +8205,user_008205,user_008205@example.com,1 +8206,user_008206,user_008206@example.com,2 +8207,user_008207,user_008207@example.com, +8208,user_008208,user_008208@example.com,1 +8209,user_008209,user_008209@example.com,2 +8210,user_008210,user_008210@example.com, +8211,user_008211,user_008211@example.com,1 +8212,user_008212,user_008212@example.com,2 +8213,user_008213,user_008213@example.com, +8214,user_008214,user_008214@example.com,1 +8215,user_008215,user_008215@example.com,2 +8216,user_008216,user_008216@example.com, +8217,user_008217,user_008217@example.com,1 +8218,user_008218,user_008218@example.com,2 +8219,user_008219,user_008219@example.com, +8220,user_008220,user_008220@example.com,1 +8221,user_008221,user_008221@example.com,2 +8222,user_008222,user_008222@example.com, +8223,user_008223,user_008223@example.com,1 +8224,user_008224,user_008224@example.com,2 +8225,user_008225,user_008225@example.com, +8226,user_008226,user_008226@example.com,1 +8227,user_008227,user_008227@example.com,2 +8228,user_008228,user_008228@example.com, +8229,user_008229,user_008229@example.com,1 +8230,user_008230,user_008230@example.com,2 +8231,user_008231,user_008231@example.com, +8232,user_008232,user_008232@example.com,1 +8233,user_008233,user_008233@example.com,2 +8234,user_008234,user_008234@example.com, +8235,user_008235,user_008235@example.com,1 +8236,user_008236,user_008236@example.com,2 +8237,user_008237,user_008237@example.com, +8238,user_008238,user_008238@example.com,1 +8239,user_008239,user_008239@example.com,2 +8240,user_008240,user_008240@example.com, +8241,user_008241,user_008241@example.com,1 +8242,user_008242,user_008242@example.com,2 +8243,user_008243,user_008243@example.com, +8244,user_008244,user_008244@example.com,1 +8245,user_008245,user_008245@example.com,2 +8246,user_008246,user_008246@example.com, +8247,user_008247,user_008247@example.com,1 +8248,user_008248,user_008248@example.com,2 +8249,user_008249,user_008249@example.com, +8250,user_008250,user_008250@example.com,1 +8251,user_008251,user_008251@example.com,2 +8252,user_008252,user_008252@example.com, +8253,user_008253,user_008253@example.com,1 +8254,user_008254,user_008254@example.com,2 +8255,user_008255,user_008255@example.com, +8256,user_008256,user_008256@example.com,1 +8257,user_008257,user_008257@example.com,2 +8258,user_008258,user_008258@example.com, +8259,user_008259,user_008259@example.com,1 +8260,user_008260,user_008260@example.com,2 +8261,user_008261,user_008261@example.com, +8262,user_008262,user_008262@example.com,1 +8263,user_008263,user_008263@example.com,2 +8264,user_008264,user_008264@example.com, +8265,user_008265,user_008265@example.com,1 +8266,user_008266,user_008266@example.com,2 +8267,user_008267,user_008267@example.com, +8268,user_008268,user_008268@example.com,1 +8269,user_008269,user_008269@example.com,2 +8270,user_008270,user_008270@example.com, +8271,user_008271,user_008271@example.com,1 +8272,user_008272,user_008272@example.com,2 +8273,user_008273,user_008273@example.com, +8274,user_008274,user_008274@example.com,1 +8275,user_008275,user_008275@example.com,2 +8276,user_008276,user_008276@example.com, +8277,user_008277,user_008277@example.com,1 +8278,user_008278,user_008278@example.com,2 +8279,user_008279,user_008279@example.com, +8280,user_008280,user_008280@example.com,1 +8281,user_008281,user_008281@example.com,2 +8282,user_008282,user_008282@example.com, +8283,user_008283,user_008283@example.com,1 +8284,user_008284,user_008284@example.com,2 +8285,user_008285,user_008285@example.com, +8286,user_008286,user_008286@example.com,1 +8287,user_008287,user_008287@example.com,2 +8288,user_008288,user_008288@example.com, +8289,user_008289,user_008289@example.com,1 +8290,user_008290,user_008290@example.com,2 +8291,user_008291,user_008291@example.com, +8292,user_008292,user_008292@example.com,1 +8293,user_008293,user_008293@example.com,2 +8294,user_008294,user_008294@example.com, +8295,user_008295,user_008295@example.com,1 +8296,user_008296,user_008296@example.com,2 +8297,user_008297,user_008297@example.com, +8298,user_008298,user_008298@example.com,1 +8299,user_008299,user_008299@example.com,2 +8300,user_008300,user_008300@example.com, +8301,user_008301,user_008301@example.com,1 +8302,user_008302,user_008302@example.com,2 +8303,user_008303,user_008303@example.com, +8304,user_008304,user_008304@example.com,1 +8305,user_008305,user_008305@example.com,2 +8306,user_008306,user_008306@example.com, +8307,user_008307,user_008307@example.com,1 +8308,user_008308,user_008308@example.com,2 +8309,user_008309,user_008309@example.com, +8310,user_008310,user_008310@example.com,1 +8311,user_008311,user_008311@example.com,2 +8312,user_008312,user_008312@example.com, +8313,user_008313,user_008313@example.com,1 +8314,user_008314,user_008314@example.com,2 +8315,user_008315,user_008315@example.com, +8316,user_008316,user_008316@example.com,1 +8317,user_008317,user_008317@example.com,2 +8318,user_008318,user_008318@example.com, +8319,user_008319,user_008319@example.com,1 +8320,user_008320,user_008320@example.com,2 +8321,user_008321,user_008321@example.com, +8322,user_008322,user_008322@example.com,1 +8323,user_008323,user_008323@example.com,2 +8324,user_008324,user_008324@example.com, +8325,user_008325,user_008325@example.com,1 +8326,user_008326,user_008326@example.com,2 +8327,user_008327,user_008327@example.com, +8328,user_008328,user_008328@example.com,1 +8329,user_008329,user_008329@example.com,2 +8330,user_008330,user_008330@example.com, +8331,user_008331,user_008331@example.com,1 +8332,user_008332,user_008332@example.com,2 +8333,user_008333,user_008333@example.com, +8334,user_008334,user_008334@example.com,1 +8335,user_008335,user_008335@example.com,2 +8336,user_008336,user_008336@example.com, +8337,user_008337,user_008337@example.com,1 +8338,user_008338,user_008338@example.com,2 +8339,user_008339,user_008339@example.com, +8340,user_008340,user_008340@example.com,1 +8341,user_008341,user_008341@example.com,2 +8342,user_008342,user_008342@example.com, +8343,user_008343,user_008343@example.com,1 +8344,user_008344,user_008344@example.com,2 +8345,user_008345,user_008345@example.com, +8346,user_008346,user_008346@example.com,1 +8347,user_008347,user_008347@example.com,2 +8348,user_008348,user_008348@example.com, +8349,user_008349,user_008349@example.com,1 +8350,user_008350,user_008350@example.com,2 +8351,user_008351,user_008351@example.com, +8352,user_008352,user_008352@example.com,1 +8353,user_008353,user_008353@example.com,2 +8354,user_008354,user_008354@example.com, +8355,user_008355,user_008355@example.com,1 +8356,user_008356,user_008356@example.com,2 +8357,user_008357,user_008357@example.com, +8358,user_008358,user_008358@example.com,1 +8359,user_008359,user_008359@example.com,2 +8360,user_008360,user_008360@example.com, +8361,user_008361,user_008361@example.com,1 +8362,user_008362,user_008362@example.com,2 +8363,user_008363,user_008363@example.com, +8364,user_008364,user_008364@example.com,1 +8365,user_008365,user_008365@example.com,2 +8366,user_008366,user_008366@example.com, +8367,user_008367,user_008367@example.com,1 +8368,user_008368,user_008368@example.com,2 +8369,user_008369,user_008369@example.com, +8370,user_008370,user_008370@example.com,1 +8371,user_008371,user_008371@example.com,2 +8372,user_008372,user_008372@example.com, +8373,user_008373,user_008373@example.com,1 +8374,user_008374,user_008374@example.com,2 +8375,user_008375,user_008375@example.com, +8376,user_008376,user_008376@example.com,1 +8377,user_008377,user_008377@example.com,2 +8378,user_008378,user_008378@example.com, +8379,user_008379,user_008379@example.com,1 +8380,user_008380,user_008380@example.com,2 +8381,user_008381,user_008381@example.com, +8382,user_008382,user_008382@example.com,1 +8383,user_008383,user_008383@example.com,2 +8384,user_008384,user_008384@example.com, +8385,user_008385,user_008385@example.com,1 +8386,user_008386,user_008386@example.com,2 +8387,user_008387,user_008387@example.com, +8388,user_008388,user_008388@example.com,1 +8389,user_008389,user_008389@example.com,2 +8390,user_008390,user_008390@example.com, +8391,user_008391,user_008391@example.com,1 +8392,user_008392,user_008392@example.com,2 +8393,user_008393,user_008393@example.com, +8394,user_008394,user_008394@example.com,1 +8395,user_008395,user_008395@example.com,2 +8396,user_008396,user_008396@example.com, +8397,user_008397,user_008397@example.com,1 +8398,user_008398,user_008398@example.com,2 +8399,user_008399,user_008399@example.com, +8400,user_008400,user_008400@example.com,1 +8401,user_008401,user_008401@example.com,2 +8402,user_008402,user_008402@example.com, +8403,user_008403,user_008403@example.com,1 +8404,user_008404,user_008404@example.com,2 +8405,user_008405,user_008405@example.com, +8406,user_008406,user_008406@example.com,1 +8407,user_008407,user_008407@example.com,2 +8408,user_008408,user_008408@example.com, +8409,user_008409,user_008409@example.com,1 +8410,user_008410,user_008410@example.com,2 +8411,user_008411,user_008411@example.com, +8412,user_008412,user_008412@example.com,1 +8413,user_008413,user_008413@example.com,2 +8414,user_008414,user_008414@example.com, +8415,user_008415,user_008415@example.com,1 +8416,user_008416,user_008416@example.com,2 +8417,user_008417,user_008417@example.com, +8418,user_008418,user_008418@example.com,1 +8419,user_008419,user_008419@example.com,2 +8420,user_008420,user_008420@example.com, +8421,user_008421,user_008421@example.com,1 +8422,user_008422,user_008422@example.com,2 +8423,user_008423,user_008423@example.com, +8424,user_008424,user_008424@example.com,1 +8425,user_008425,user_008425@example.com,2 +8426,user_008426,user_008426@example.com, +8427,user_008427,user_008427@example.com,1 +8428,user_008428,user_008428@example.com,2 +8429,user_008429,user_008429@example.com, +8430,user_008430,user_008430@example.com,1 +8431,user_008431,user_008431@example.com,2 +8432,user_008432,user_008432@example.com, +8433,user_008433,user_008433@example.com,1 +8434,user_008434,user_008434@example.com,2 +8435,user_008435,user_008435@example.com, +8436,user_008436,user_008436@example.com,1 +8437,user_008437,user_008437@example.com,2 +8438,user_008438,user_008438@example.com, +8439,user_008439,user_008439@example.com,1 +8440,user_008440,user_008440@example.com,2 +8441,user_008441,user_008441@example.com, +8442,user_008442,user_008442@example.com,1 +8443,user_008443,user_008443@example.com,2 +8444,user_008444,user_008444@example.com, +8445,user_008445,user_008445@example.com,1 +8446,user_008446,user_008446@example.com,2 +8447,user_008447,user_008447@example.com, +8448,user_008448,user_008448@example.com,1 +8449,user_008449,user_008449@example.com,2 +8450,user_008450,user_008450@example.com, +8451,user_008451,user_008451@example.com,1 +8452,user_008452,user_008452@example.com,2 +8453,user_008453,user_008453@example.com, +8454,user_008454,user_008454@example.com,1 +8455,user_008455,user_008455@example.com,2 +8456,user_008456,user_008456@example.com, +8457,user_008457,user_008457@example.com,1 +8458,user_008458,user_008458@example.com,2 +8459,user_008459,user_008459@example.com, +8460,user_008460,user_008460@example.com,1 +8461,user_008461,user_008461@example.com,2 +8462,user_008462,user_008462@example.com, +8463,user_008463,user_008463@example.com,1 +8464,user_008464,user_008464@example.com,2 +8465,user_008465,user_008465@example.com, +8466,user_008466,user_008466@example.com,1 +8467,user_008467,user_008467@example.com,2 +8468,user_008468,user_008468@example.com, +8469,user_008469,user_008469@example.com,1 +8470,user_008470,user_008470@example.com,2 +8471,user_008471,user_008471@example.com, +8472,user_008472,user_008472@example.com,1 +8473,user_008473,user_008473@example.com,2 +8474,user_008474,user_008474@example.com, +8475,user_008475,user_008475@example.com,1 +8476,user_008476,user_008476@example.com,2 +8477,user_008477,user_008477@example.com, +8478,user_008478,user_008478@example.com,1 +8479,user_008479,user_008479@example.com,2 +8480,user_008480,user_008480@example.com, +8481,user_008481,user_008481@example.com,1 +8482,user_008482,user_008482@example.com,2 +8483,user_008483,user_008483@example.com, +8484,user_008484,user_008484@example.com,1 +8485,user_008485,user_008485@example.com,2 +8486,user_008486,user_008486@example.com, +8487,user_008487,user_008487@example.com,1 +8488,user_008488,user_008488@example.com,2 +8489,user_008489,user_008489@example.com, +8490,user_008490,user_008490@example.com,1 +8491,user_008491,user_008491@example.com,2 +8492,user_008492,user_008492@example.com, +8493,user_008493,user_008493@example.com,1 +8494,user_008494,user_008494@example.com,2 +8495,user_008495,user_008495@example.com, +8496,user_008496,user_008496@example.com,1 +8497,user_008497,user_008497@example.com,2 +8498,user_008498,user_008498@example.com, +8499,user_008499,user_008499@example.com,1 +8500,user_008500,user_008500@example.com,2 +8501,user_008501,user_008501@example.com, +8502,user_008502,user_008502@example.com,1 +8503,user_008503,user_008503@example.com,2 +8504,user_008504,user_008504@example.com, +8505,user_008505,user_008505@example.com,1 +8506,user_008506,user_008506@example.com,2 +8507,user_008507,user_008507@example.com, +8508,user_008508,user_008508@example.com,1 +8509,user_008509,user_008509@example.com,2 +8510,user_008510,user_008510@example.com, +8511,user_008511,user_008511@example.com,1 +8512,user_008512,user_008512@example.com,2 +8513,user_008513,user_008513@example.com, +8514,user_008514,user_008514@example.com,1 +8515,user_008515,user_008515@example.com,2 +8516,user_008516,user_008516@example.com, +8517,user_008517,user_008517@example.com,1 +8518,user_008518,user_008518@example.com,2 +8519,user_008519,user_008519@example.com, +8520,user_008520,user_008520@example.com,1 +8521,user_008521,user_008521@example.com,2 +8522,user_008522,user_008522@example.com, +8523,user_008523,user_008523@example.com,1 +8524,user_008524,user_008524@example.com,2 +8525,user_008525,user_008525@example.com, +8526,user_008526,user_008526@example.com,1 +8527,user_008527,user_008527@example.com,2 +8528,user_008528,user_008528@example.com, +8529,user_008529,user_008529@example.com,1 +8530,user_008530,user_008530@example.com,2 +8531,user_008531,user_008531@example.com, +8532,user_008532,user_008532@example.com,1 +8533,user_008533,user_008533@example.com,2 +8534,user_008534,user_008534@example.com, +8535,user_008535,user_008535@example.com,1 +8536,user_008536,user_008536@example.com,2 +8537,user_008537,user_008537@example.com, +8538,user_008538,user_008538@example.com,1 +8539,user_008539,user_008539@example.com,2 +8540,user_008540,user_008540@example.com, +8541,user_008541,user_008541@example.com,1 +8542,user_008542,user_008542@example.com,2 +8543,user_008543,user_008543@example.com, +8544,user_008544,user_008544@example.com,1 +8545,user_008545,user_008545@example.com,2 +8546,user_008546,user_008546@example.com, +8547,user_008547,user_008547@example.com,1 +8548,user_008548,user_008548@example.com,2 +8549,user_008549,user_008549@example.com, +8550,user_008550,user_008550@example.com,1 +8551,user_008551,user_008551@example.com,2 +8552,user_008552,user_008552@example.com, +8553,user_008553,user_008553@example.com,1 +8554,user_008554,user_008554@example.com,2 +8555,user_008555,user_008555@example.com, +8556,user_008556,user_008556@example.com,1 +8557,user_008557,user_008557@example.com,2 +8558,user_008558,user_008558@example.com, +8559,user_008559,user_008559@example.com,1 +8560,user_008560,user_008560@example.com,2 +8561,user_008561,user_008561@example.com, +8562,user_008562,user_008562@example.com,1 +8563,user_008563,user_008563@example.com,2 +8564,user_008564,user_008564@example.com, +8565,user_008565,user_008565@example.com,1 +8566,user_008566,user_008566@example.com,2 +8567,user_008567,user_008567@example.com, +8568,user_008568,user_008568@example.com,1 +8569,user_008569,user_008569@example.com,2 +8570,user_008570,user_008570@example.com, +8571,user_008571,user_008571@example.com,1 +8572,user_008572,user_008572@example.com,2 +8573,user_008573,user_008573@example.com, +8574,user_008574,user_008574@example.com,1 +8575,user_008575,user_008575@example.com,2 +8576,user_008576,user_008576@example.com, +8577,user_008577,user_008577@example.com,1 +8578,user_008578,user_008578@example.com,2 +8579,user_008579,user_008579@example.com, +8580,user_008580,user_008580@example.com,1 +8581,user_008581,user_008581@example.com,2 +8582,user_008582,user_008582@example.com, +8583,user_008583,user_008583@example.com,1 +8584,user_008584,user_008584@example.com,2 +8585,user_008585,user_008585@example.com, +8586,user_008586,user_008586@example.com,1 +8587,user_008587,user_008587@example.com,2 +8588,user_008588,user_008588@example.com, +8589,user_008589,user_008589@example.com,1 +8590,user_008590,user_008590@example.com,2 +8591,user_008591,user_008591@example.com, +8592,user_008592,user_008592@example.com,1 +8593,user_008593,user_008593@example.com,2 +8594,user_008594,user_008594@example.com, +8595,user_008595,user_008595@example.com,1 +8596,user_008596,user_008596@example.com,2 +8597,user_008597,user_008597@example.com, +8598,user_008598,user_008598@example.com,1 +8599,user_008599,user_008599@example.com,2 +8600,user_008600,user_008600@example.com, +8601,user_008601,user_008601@example.com,1 +8602,user_008602,user_008602@example.com,2 +8603,user_008603,user_008603@example.com, +8604,user_008604,user_008604@example.com,1 +8605,user_008605,user_008605@example.com,2 +8606,user_008606,user_008606@example.com, +8607,user_008607,user_008607@example.com,1 +8608,user_008608,user_008608@example.com,2 +8609,user_008609,user_008609@example.com, +8610,user_008610,user_008610@example.com,1 +8611,user_008611,user_008611@example.com,2 +8612,user_008612,user_008612@example.com, +8613,user_008613,user_008613@example.com,1 +8614,user_008614,user_008614@example.com,2 +8615,user_008615,user_008615@example.com, +8616,user_008616,user_008616@example.com,1 +8617,user_008617,user_008617@example.com,2 +8618,user_008618,user_008618@example.com, +8619,user_008619,user_008619@example.com,1 +8620,user_008620,user_008620@example.com,2 +8621,user_008621,user_008621@example.com, +8622,user_008622,user_008622@example.com,1 +8623,user_008623,user_008623@example.com,2 +8624,user_008624,user_008624@example.com, +8625,user_008625,user_008625@example.com,1 +8626,user_008626,user_008626@example.com,2 +8627,user_008627,user_008627@example.com, +8628,user_008628,user_008628@example.com,1 +8629,user_008629,user_008629@example.com,2 +8630,user_008630,user_008630@example.com, +8631,user_008631,user_008631@example.com,1 +8632,user_008632,user_008632@example.com,2 +8633,user_008633,user_008633@example.com, +8634,user_008634,user_008634@example.com,1 +8635,user_008635,user_008635@example.com,2 +8636,user_008636,user_008636@example.com, +8637,user_008637,user_008637@example.com,1 +8638,user_008638,user_008638@example.com,2 +8639,user_008639,user_008639@example.com, +8640,user_008640,user_008640@example.com,1 +8641,user_008641,user_008641@example.com,2 +8642,user_008642,user_008642@example.com, +8643,user_008643,user_008643@example.com,1 +8644,user_008644,user_008644@example.com,2 +8645,user_008645,user_008645@example.com, +8646,user_008646,user_008646@example.com,1 +8647,user_008647,user_008647@example.com,2 +8648,user_008648,user_008648@example.com, +8649,user_008649,user_008649@example.com,1 +8650,user_008650,user_008650@example.com,2 +8651,user_008651,user_008651@example.com, +8652,user_008652,user_008652@example.com,1 +8653,user_008653,user_008653@example.com,2 +8654,user_008654,user_008654@example.com, +8655,user_008655,user_008655@example.com,1 +8656,user_008656,user_008656@example.com,2 +8657,user_008657,user_008657@example.com, +8658,user_008658,user_008658@example.com,1 +8659,user_008659,user_008659@example.com,2 +8660,user_008660,user_008660@example.com, +8661,user_008661,user_008661@example.com,1 +8662,user_008662,user_008662@example.com,2 +8663,user_008663,user_008663@example.com, +8664,user_008664,user_008664@example.com,1 +8665,user_008665,user_008665@example.com,2 +8666,user_008666,user_008666@example.com, +8667,user_008667,user_008667@example.com,1 +8668,user_008668,user_008668@example.com,2 +8669,user_008669,user_008669@example.com, +8670,user_008670,user_008670@example.com,1 +8671,user_008671,user_008671@example.com,2 +8672,user_008672,user_008672@example.com, +8673,user_008673,user_008673@example.com,1 +8674,user_008674,user_008674@example.com,2 +8675,user_008675,user_008675@example.com, +8676,user_008676,user_008676@example.com,1 +8677,user_008677,user_008677@example.com,2 +8678,user_008678,user_008678@example.com, +8679,user_008679,user_008679@example.com,1 +8680,user_008680,user_008680@example.com,2 +8681,user_008681,user_008681@example.com, +8682,user_008682,user_008682@example.com,1 +8683,user_008683,user_008683@example.com,2 +8684,user_008684,user_008684@example.com, +8685,user_008685,user_008685@example.com,1 +8686,user_008686,user_008686@example.com,2 +8687,user_008687,user_008687@example.com, +8688,user_008688,user_008688@example.com,1 +8689,user_008689,user_008689@example.com,2 +8690,user_008690,user_008690@example.com, +8691,user_008691,user_008691@example.com,1 +8692,user_008692,user_008692@example.com,2 +8693,user_008693,user_008693@example.com, +8694,user_008694,user_008694@example.com,1 +8695,user_008695,user_008695@example.com,2 +8696,user_008696,user_008696@example.com, +8697,user_008697,user_008697@example.com,1 +8698,user_008698,user_008698@example.com,2 +8699,user_008699,user_008699@example.com, +8700,user_008700,user_008700@example.com,1 +8701,user_008701,user_008701@example.com,2 +8702,user_008702,user_008702@example.com, +8703,user_008703,user_008703@example.com,1 +8704,user_008704,user_008704@example.com,2 +8705,user_008705,user_008705@example.com, +8706,user_008706,user_008706@example.com,1 +8707,user_008707,user_008707@example.com,2 +8708,user_008708,user_008708@example.com, +8709,user_008709,user_008709@example.com,1 +8710,user_008710,user_008710@example.com,2 +8711,user_008711,user_008711@example.com, +8712,user_008712,user_008712@example.com,1 +8713,user_008713,user_008713@example.com,2 +8714,user_008714,user_008714@example.com, +8715,user_008715,user_008715@example.com,1 +8716,user_008716,user_008716@example.com,2 +8717,user_008717,user_008717@example.com, +8718,user_008718,user_008718@example.com,1 +8719,user_008719,user_008719@example.com,2 +8720,user_008720,user_008720@example.com, +8721,user_008721,user_008721@example.com,1 +8722,user_008722,user_008722@example.com,2 +8723,user_008723,user_008723@example.com, +8724,user_008724,user_008724@example.com,1 +8725,user_008725,user_008725@example.com,2 +8726,user_008726,user_008726@example.com, +8727,user_008727,user_008727@example.com,1 +8728,user_008728,user_008728@example.com,2 +8729,user_008729,user_008729@example.com, +8730,user_008730,user_008730@example.com,1 +8731,user_008731,user_008731@example.com,2 +8732,user_008732,user_008732@example.com, +8733,user_008733,user_008733@example.com,1 +8734,user_008734,user_008734@example.com,2 +8735,user_008735,user_008735@example.com, +8736,user_008736,user_008736@example.com,1 +8737,user_008737,user_008737@example.com,2 +8738,user_008738,user_008738@example.com, +8739,user_008739,user_008739@example.com,1 +8740,user_008740,user_008740@example.com,2 +8741,user_008741,user_008741@example.com, +8742,user_008742,user_008742@example.com,1 +8743,user_008743,user_008743@example.com,2 +8744,user_008744,user_008744@example.com, +8745,user_008745,user_008745@example.com,1 +8746,user_008746,user_008746@example.com,2 +8747,user_008747,user_008747@example.com, +8748,user_008748,user_008748@example.com,1 +8749,user_008749,user_008749@example.com,2 +8750,user_008750,user_008750@example.com, +8751,user_008751,user_008751@example.com,1 +8752,user_008752,user_008752@example.com,2 +8753,user_008753,user_008753@example.com, +8754,user_008754,user_008754@example.com,1 +8755,user_008755,user_008755@example.com,2 +8756,user_008756,user_008756@example.com, +8757,user_008757,user_008757@example.com,1 +8758,user_008758,user_008758@example.com,2 +8759,user_008759,user_008759@example.com, +8760,user_008760,user_008760@example.com,1 +8761,user_008761,user_008761@example.com,2 +8762,user_008762,user_008762@example.com, +8763,user_008763,user_008763@example.com,1 +8764,user_008764,user_008764@example.com,2 +8765,user_008765,user_008765@example.com, +8766,user_008766,user_008766@example.com,1 +8767,user_008767,user_008767@example.com,2 +8768,user_008768,user_008768@example.com, +8769,user_008769,user_008769@example.com,1 +8770,user_008770,user_008770@example.com,2 +8771,user_008771,user_008771@example.com, +8772,user_008772,user_008772@example.com,1 +8773,user_008773,user_008773@example.com,2 +8774,user_008774,user_008774@example.com, +8775,user_008775,user_008775@example.com,1 +8776,user_008776,user_008776@example.com,2 +8777,user_008777,user_008777@example.com, +8778,user_008778,user_008778@example.com,1 +8779,user_008779,user_008779@example.com,2 +8780,user_008780,user_008780@example.com, +8781,user_008781,user_008781@example.com,1 +8782,user_008782,user_008782@example.com,2 +8783,user_008783,user_008783@example.com, +8784,user_008784,user_008784@example.com,1 +8785,user_008785,user_008785@example.com,2 +8786,user_008786,user_008786@example.com, +8787,user_008787,user_008787@example.com,1 +8788,user_008788,user_008788@example.com,2 +8789,user_008789,user_008789@example.com, +8790,user_008790,user_008790@example.com,1 +8791,user_008791,user_008791@example.com,2 +8792,user_008792,user_008792@example.com, +8793,user_008793,user_008793@example.com,1 +8794,user_008794,user_008794@example.com,2 +8795,user_008795,user_008795@example.com, +8796,user_008796,user_008796@example.com,1 +8797,user_008797,user_008797@example.com,2 +8798,user_008798,user_008798@example.com, +8799,user_008799,user_008799@example.com,1 +8800,user_008800,user_008800@example.com,2 +8801,user_008801,user_008801@example.com, +8802,user_008802,user_008802@example.com,1 +8803,user_008803,user_008803@example.com,2 +8804,user_008804,user_008804@example.com, +8805,user_008805,user_008805@example.com,1 +8806,user_008806,user_008806@example.com,2 +8807,user_008807,user_008807@example.com, +8808,user_008808,user_008808@example.com,1 +8809,user_008809,user_008809@example.com,2 +8810,user_008810,user_008810@example.com, +8811,user_008811,user_008811@example.com,1 +8812,user_008812,user_008812@example.com,2 +8813,user_008813,user_008813@example.com, +8814,user_008814,user_008814@example.com,1 +8815,user_008815,user_008815@example.com,2 +8816,user_008816,user_008816@example.com, +8817,user_008817,user_008817@example.com,1 +8818,user_008818,user_008818@example.com,2 +8819,user_008819,user_008819@example.com, +8820,user_008820,user_008820@example.com,1 +8821,user_008821,user_008821@example.com,2 +8822,user_008822,user_008822@example.com, +8823,user_008823,user_008823@example.com,1 +8824,user_008824,user_008824@example.com,2 +8825,user_008825,user_008825@example.com, +8826,user_008826,user_008826@example.com,1 +8827,user_008827,user_008827@example.com,2 +8828,user_008828,user_008828@example.com, +8829,user_008829,user_008829@example.com,1 +8830,user_008830,user_008830@example.com,2 +8831,user_008831,user_008831@example.com, +8832,user_008832,user_008832@example.com,1 +8833,user_008833,user_008833@example.com,2 +8834,user_008834,user_008834@example.com, +8835,user_008835,user_008835@example.com,1 +8836,user_008836,user_008836@example.com,2 +8837,user_008837,user_008837@example.com, +8838,user_008838,user_008838@example.com,1 +8839,user_008839,user_008839@example.com,2 +8840,user_008840,user_008840@example.com, +8841,user_008841,user_008841@example.com,1 +8842,user_008842,user_008842@example.com,2 +8843,user_008843,user_008843@example.com, +8844,user_008844,user_008844@example.com,1 +8845,user_008845,user_008845@example.com,2 +8846,user_008846,user_008846@example.com, +8847,user_008847,user_008847@example.com,1 +8848,user_008848,user_008848@example.com,2 +8849,user_008849,user_008849@example.com, +8850,user_008850,user_008850@example.com,1 +8851,user_008851,user_008851@example.com,2 +8852,user_008852,user_008852@example.com, +8853,user_008853,user_008853@example.com,1 +8854,user_008854,user_008854@example.com,2 +8855,user_008855,user_008855@example.com, +8856,user_008856,user_008856@example.com,1 +8857,user_008857,user_008857@example.com,2 +8858,user_008858,user_008858@example.com, +8859,user_008859,user_008859@example.com,1 +8860,user_008860,user_008860@example.com,2 +8861,user_008861,user_008861@example.com, +8862,user_008862,user_008862@example.com,1 +8863,user_008863,user_008863@example.com,2 +8864,user_008864,user_008864@example.com, +8865,user_008865,user_008865@example.com,1 +8866,user_008866,user_008866@example.com,2 +8867,user_008867,user_008867@example.com, +8868,user_008868,user_008868@example.com,1 +8869,user_008869,user_008869@example.com,2 +8870,user_008870,user_008870@example.com, +8871,user_008871,user_008871@example.com,1 +8872,user_008872,user_008872@example.com,2 +8873,user_008873,user_008873@example.com, +8874,user_008874,user_008874@example.com,1 +8875,user_008875,user_008875@example.com,2 +8876,user_008876,user_008876@example.com, +8877,user_008877,user_008877@example.com,1 +8878,user_008878,user_008878@example.com,2 +8879,user_008879,user_008879@example.com, +8880,user_008880,user_008880@example.com,1 +8881,user_008881,user_008881@example.com,2 +8882,user_008882,user_008882@example.com, +8883,user_008883,user_008883@example.com,1 +8884,user_008884,user_008884@example.com,2 +8885,user_008885,user_008885@example.com, +8886,user_008886,user_008886@example.com,1 +8887,user_008887,user_008887@example.com,2 +8888,user_008888,user_008888@example.com, +8889,user_008889,user_008889@example.com,1 +8890,user_008890,user_008890@example.com,2 +8891,user_008891,user_008891@example.com, +8892,user_008892,user_008892@example.com,1 +8893,user_008893,user_008893@example.com,2 +8894,user_008894,user_008894@example.com, +8895,user_008895,user_008895@example.com,1 +8896,user_008896,user_008896@example.com,2 +8897,user_008897,user_008897@example.com, +8898,user_008898,user_008898@example.com,1 +8899,user_008899,user_008899@example.com,2 +8900,user_008900,user_008900@example.com, +8901,user_008901,user_008901@example.com,1 +8902,user_008902,user_008902@example.com,2 +8903,user_008903,user_008903@example.com, +8904,user_008904,user_008904@example.com,1 +8905,user_008905,user_008905@example.com,2 +8906,user_008906,user_008906@example.com, +8907,user_008907,user_008907@example.com,1 +8908,user_008908,user_008908@example.com,2 +8909,user_008909,user_008909@example.com, +8910,user_008910,user_008910@example.com,1 +8911,user_008911,user_008911@example.com,2 +8912,user_008912,user_008912@example.com, +8913,user_008913,user_008913@example.com,1 +8914,user_008914,user_008914@example.com,2 +8915,user_008915,user_008915@example.com, +8916,user_008916,user_008916@example.com,1 +8917,user_008917,user_008917@example.com,2 +8918,user_008918,user_008918@example.com, +8919,user_008919,user_008919@example.com,1 +8920,user_008920,user_008920@example.com,2 +8921,user_008921,user_008921@example.com, +8922,user_008922,user_008922@example.com,1 +8923,user_008923,user_008923@example.com,2 +8924,user_008924,user_008924@example.com, +8925,user_008925,user_008925@example.com,1 +8926,user_008926,user_008926@example.com,2 +8927,user_008927,user_008927@example.com, +8928,user_008928,user_008928@example.com,1 +8929,user_008929,user_008929@example.com,2 +8930,user_008930,user_008930@example.com, +8931,user_008931,user_008931@example.com,1 +8932,user_008932,user_008932@example.com,2 +8933,user_008933,user_008933@example.com, +8934,user_008934,user_008934@example.com,1 +8935,user_008935,user_008935@example.com,2 +8936,user_008936,user_008936@example.com, +8937,user_008937,user_008937@example.com,1 +8938,user_008938,user_008938@example.com,2 +8939,user_008939,user_008939@example.com, +8940,user_008940,user_008940@example.com,1 +8941,user_008941,user_008941@example.com,2 +8942,user_008942,user_008942@example.com, +8943,user_008943,user_008943@example.com,1 +8944,user_008944,user_008944@example.com,2 +8945,user_008945,user_008945@example.com, +8946,user_008946,user_008946@example.com,1 +8947,user_008947,user_008947@example.com,2 +8948,user_008948,user_008948@example.com, +8949,user_008949,user_008949@example.com,1 +8950,user_008950,user_008950@example.com,2 +8951,user_008951,user_008951@example.com, +8952,user_008952,user_008952@example.com,1 +8953,user_008953,user_008953@example.com,2 +8954,user_008954,user_008954@example.com, +8955,user_008955,user_008955@example.com,1 +8956,user_008956,user_008956@example.com,2 +8957,user_008957,user_008957@example.com, +8958,user_008958,user_008958@example.com,1 +8959,user_008959,user_008959@example.com,2 +8960,user_008960,user_008960@example.com, +8961,user_008961,user_008961@example.com,1 +8962,user_008962,user_008962@example.com,2 +8963,user_008963,user_008963@example.com, +8964,user_008964,user_008964@example.com,1 +8965,user_008965,user_008965@example.com,2 +8966,user_008966,user_008966@example.com, +8967,user_008967,user_008967@example.com,1 +8968,user_008968,user_008968@example.com,2 +8969,user_008969,user_008969@example.com, +8970,user_008970,user_008970@example.com,1 +8971,user_008971,user_008971@example.com,2 +8972,user_008972,user_008972@example.com, +8973,user_008973,user_008973@example.com,1 +8974,user_008974,user_008974@example.com,2 +8975,user_008975,user_008975@example.com, +8976,user_008976,user_008976@example.com,1 +8977,user_008977,user_008977@example.com,2 +8978,user_008978,user_008978@example.com, +8979,user_008979,user_008979@example.com,1 +8980,user_008980,user_008980@example.com,2 +8981,user_008981,user_008981@example.com, +8982,user_008982,user_008982@example.com,1 +8983,user_008983,user_008983@example.com,2 +8984,user_008984,user_008984@example.com, +8985,user_008985,user_008985@example.com,1 +8986,user_008986,user_008986@example.com,2 +8987,user_008987,user_008987@example.com, +8988,user_008988,user_008988@example.com,1 +8989,user_008989,user_008989@example.com,2 +8990,user_008990,user_008990@example.com, +8991,user_008991,user_008991@example.com,1 +8992,user_008992,user_008992@example.com,2 +8993,user_008993,user_008993@example.com, +8994,user_008994,user_008994@example.com,1 +8995,user_008995,user_008995@example.com,2 +8996,user_008996,user_008996@example.com, +8997,user_008997,user_008997@example.com,1 +8998,user_008998,user_008998@example.com,2 +8999,user_008999,user_008999@example.com, +9000,user_009000,user_009000@example.com,1 +9001,user_009001,user_009001@example.com,2 +9002,user_009002,user_009002@example.com, +9003,user_009003,user_009003@example.com,1 +9004,user_009004,user_009004@example.com,2 +9005,user_009005,user_009005@example.com, +9006,user_009006,user_009006@example.com,1 +9007,user_009007,user_009007@example.com,2 +9008,user_009008,user_009008@example.com, +9009,user_009009,user_009009@example.com,1 +9010,user_009010,user_009010@example.com,2 +9011,user_009011,user_009011@example.com, +9012,user_009012,user_009012@example.com,1 +9013,user_009013,user_009013@example.com,2 +9014,user_009014,user_009014@example.com, +9015,user_009015,user_009015@example.com,1 +9016,user_009016,user_009016@example.com,2 +9017,user_009017,user_009017@example.com, +9018,user_009018,user_009018@example.com,1 +9019,user_009019,user_009019@example.com,2 +9020,user_009020,user_009020@example.com, +9021,user_009021,user_009021@example.com,1 +9022,user_009022,user_009022@example.com,2 +9023,user_009023,user_009023@example.com, +9024,user_009024,user_009024@example.com,1 +9025,user_009025,user_009025@example.com,2 +9026,user_009026,user_009026@example.com, +9027,user_009027,user_009027@example.com,1 +9028,user_009028,user_009028@example.com,2 +9029,user_009029,user_009029@example.com, +9030,user_009030,user_009030@example.com,1 +9031,user_009031,user_009031@example.com,2 +9032,user_009032,user_009032@example.com, +9033,user_009033,user_009033@example.com,1 +9034,user_009034,user_009034@example.com,2 +9035,user_009035,user_009035@example.com, +9036,user_009036,user_009036@example.com,1 +9037,user_009037,user_009037@example.com,2 +9038,user_009038,user_009038@example.com, +9039,user_009039,user_009039@example.com,1 +9040,user_009040,user_009040@example.com,2 +9041,user_009041,user_009041@example.com, +9042,user_009042,user_009042@example.com,1 +9043,user_009043,user_009043@example.com,2 +9044,user_009044,user_009044@example.com, +9045,user_009045,user_009045@example.com,1 +9046,user_009046,user_009046@example.com,2 +9047,user_009047,user_009047@example.com, +9048,user_009048,user_009048@example.com,1 +9049,user_009049,user_009049@example.com,2 +9050,user_009050,user_009050@example.com, +9051,user_009051,user_009051@example.com,1 +9052,user_009052,user_009052@example.com,2 +9053,user_009053,user_009053@example.com, +9054,user_009054,user_009054@example.com,1 +9055,user_009055,user_009055@example.com,2 +9056,user_009056,user_009056@example.com, +9057,user_009057,user_009057@example.com,1 +9058,user_009058,user_009058@example.com,2 +9059,user_009059,user_009059@example.com, +9060,user_009060,user_009060@example.com,1 +9061,user_009061,user_009061@example.com,2 +9062,user_009062,user_009062@example.com, +9063,user_009063,user_009063@example.com,1 +9064,user_009064,user_009064@example.com,2 +9065,user_009065,user_009065@example.com, +9066,user_009066,user_009066@example.com,1 +9067,user_009067,user_009067@example.com,2 +9068,user_009068,user_009068@example.com, +9069,user_009069,user_009069@example.com,1 +9070,user_009070,user_009070@example.com,2 +9071,user_009071,user_009071@example.com, +9072,user_009072,user_009072@example.com,1 +9073,user_009073,user_009073@example.com,2 +9074,user_009074,user_009074@example.com, +9075,user_009075,user_009075@example.com,1 +9076,user_009076,user_009076@example.com,2 +9077,user_009077,user_009077@example.com, +9078,user_009078,user_009078@example.com,1 +9079,user_009079,user_009079@example.com,2 +9080,user_009080,user_009080@example.com, +9081,user_009081,user_009081@example.com,1 +9082,user_009082,user_009082@example.com,2 +9083,user_009083,user_009083@example.com, +9084,user_009084,user_009084@example.com,1 +9085,user_009085,user_009085@example.com,2 +9086,user_009086,user_009086@example.com, +9087,user_009087,user_009087@example.com,1 +9088,user_009088,user_009088@example.com,2 +9089,user_009089,user_009089@example.com, +9090,user_009090,user_009090@example.com,1 +9091,user_009091,user_009091@example.com,2 +9092,user_009092,user_009092@example.com, +9093,user_009093,user_009093@example.com,1 +9094,user_009094,user_009094@example.com,2 +9095,user_009095,user_009095@example.com, +9096,user_009096,user_009096@example.com,1 +9097,user_009097,user_009097@example.com,2 +9098,user_009098,user_009098@example.com, +9099,user_009099,user_009099@example.com,1 +9100,user_009100,user_009100@example.com,2 +9101,user_009101,user_009101@example.com, +9102,user_009102,user_009102@example.com,1 +9103,user_009103,user_009103@example.com,2 +9104,user_009104,user_009104@example.com, +9105,user_009105,user_009105@example.com,1 +9106,user_009106,user_009106@example.com,2 +9107,user_009107,user_009107@example.com, +9108,user_009108,user_009108@example.com,1 +9109,user_009109,user_009109@example.com,2 +9110,user_009110,user_009110@example.com, +9111,user_009111,user_009111@example.com,1 +9112,user_009112,user_009112@example.com,2 +9113,user_009113,user_009113@example.com, +9114,user_009114,user_009114@example.com,1 +9115,user_009115,user_009115@example.com,2 +9116,user_009116,user_009116@example.com, +9117,user_009117,user_009117@example.com,1 +9118,user_009118,user_009118@example.com,2 +9119,user_009119,user_009119@example.com, +9120,user_009120,user_009120@example.com,1 +9121,user_009121,user_009121@example.com,2 +9122,user_009122,user_009122@example.com, +9123,user_009123,user_009123@example.com,1 +9124,user_009124,user_009124@example.com,2 +9125,user_009125,user_009125@example.com, +9126,user_009126,user_009126@example.com,1 +9127,user_009127,user_009127@example.com,2 +9128,user_009128,user_009128@example.com, +9129,user_009129,user_009129@example.com,1 +9130,user_009130,user_009130@example.com,2 +9131,user_009131,user_009131@example.com, +9132,user_009132,user_009132@example.com,1 +9133,user_009133,user_009133@example.com,2 +9134,user_009134,user_009134@example.com, +9135,user_009135,user_009135@example.com,1 +9136,user_009136,user_009136@example.com,2 +9137,user_009137,user_009137@example.com, +9138,user_009138,user_009138@example.com,1 +9139,user_009139,user_009139@example.com,2 +9140,user_009140,user_009140@example.com, +9141,user_009141,user_009141@example.com,1 +9142,user_009142,user_009142@example.com,2 +9143,user_009143,user_009143@example.com, +9144,user_009144,user_009144@example.com,1 +9145,user_009145,user_009145@example.com,2 +9146,user_009146,user_009146@example.com, +9147,user_009147,user_009147@example.com,1 +9148,user_009148,user_009148@example.com,2 +9149,user_009149,user_009149@example.com, +9150,user_009150,user_009150@example.com,1 +9151,user_009151,user_009151@example.com,2 +9152,user_009152,user_009152@example.com, +9153,user_009153,user_009153@example.com,1 +9154,user_009154,user_009154@example.com,2 +9155,user_009155,user_009155@example.com, +9156,user_009156,user_009156@example.com,1 +9157,user_009157,user_009157@example.com,2 +9158,user_009158,user_009158@example.com, +9159,user_009159,user_009159@example.com,1 +9160,user_009160,user_009160@example.com,2 +9161,user_009161,user_009161@example.com, +9162,user_009162,user_009162@example.com,1 +9163,user_009163,user_009163@example.com,2 +9164,user_009164,user_009164@example.com, +9165,user_009165,user_009165@example.com,1 +9166,user_009166,user_009166@example.com,2 +9167,user_009167,user_009167@example.com, +9168,user_009168,user_009168@example.com,1 +9169,user_009169,user_009169@example.com,2 +9170,user_009170,user_009170@example.com, +9171,user_009171,user_009171@example.com,1 +9172,user_009172,user_009172@example.com,2 +9173,user_009173,user_009173@example.com, +9174,user_009174,user_009174@example.com,1 +9175,user_009175,user_009175@example.com,2 +9176,user_009176,user_009176@example.com, +9177,user_009177,user_009177@example.com,1 +9178,user_009178,user_009178@example.com,2 +9179,user_009179,user_009179@example.com, +9180,user_009180,user_009180@example.com,1 +9181,user_009181,user_009181@example.com,2 +9182,user_009182,user_009182@example.com, +9183,user_009183,user_009183@example.com,1 +9184,user_009184,user_009184@example.com,2 +9185,user_009185,user_009185@example.com, +9186,user_009186,user_009186@example.com,1 +9187,user_009187,user_009187@example.com,2 +9188,user_009188,user_009188@example.com, +9189,user_009189,user_009189@example.com,1 +9190,user_009190,user_009190@example.com,2 +9191,user_009191,user_009191@example.com, +9192,user_009192,user_009192@example.com,1 +9193,user_009193,user_009193@example.com,2 +9194,user_009194,user_009194@example.com, +9195,user_009195,user_009195@example.com,1 +9196,user_009196,user_009196@example.com,2 +9197,user_009197,user_009197@example.com, +9198,user_009198,user_009198@example.com,1 +9199,user_009199,user_009199@example.com,2 +9200,user_009200,user_009200@example.com, +9201,user_009201,user_009201@example.com,1 +9202,user_009202,user_009202@example.com,2 +9203,user_009203,user_009203@example.com, +9204,user_009204,user_009204@example.com,1 +9205,user_009205,user_009205@example.com,2 +9206,user_009206,user_009206@example.com, +9207,user_009207,user_009207@example.com,1 +9208,user_009208,user_009208@example.com,2 +9209,user_009209,user_009209@example.com, +9210,user_009210,user_009210@example.com,1 +9211,user_009211,user_009211@example.com,2 +9212,user_009212,user_009212@example.com, +9213,user_009213,user_009213@example.com,1 +9214,user_009214,user_009214@example.com,2 +9215,user_009215,user_009215@example.com, +9216,user_009216,user_009216@example.com,1 +9217,user_009217,user_009217@example.com,2 +9218,user_009218,user_009218@example.com, +9219,user_009219,user_009219@example.com,1 +9220,user_009220,user_009220@example.com,2 +9221,user_009221,user_009221@example.com, +9222,user_009222,user_009222@example.com,1 +9223,user_009223,user_009223@example.com,2 +9224,user_009224,user_009224@example.com, +9225,user_009225,user_009225@example.com,1 +9226,user_009226,user_009226@example.com,2 +9227,user_009227,user_009227@example.com, +9228,user_009228,user_009228@example.com,1 +9229,user_009229,user_009229@example.com,2 +9230,user_009230,user_009230@example.com, +9231,user_009231,user_009231@example.com,1 +9232,user_009232,user_009232@example.com,2 +9233,user_009233,user_009233@example.com, +9234,user_009234,user_009234@example.com,1 +9235,user_009235,user_009235@example.com,2 +9236,user_009236,user_009236@example.com, +9237,user_009237,user_009237@example.com,1 +9238,user_009238,user_009238@example.com,2 +9239,user_009239,user_009239@example.com, +9240,user_009240,user_009240@example.com,1 +9241,user_009241,user_009241@example.com,2 +9242,user_009242,user_009242@example.com, +9243,user_009243,user_009243@example.com,1 +9244,user_009244,user_009244@example.com,2 +9245,user_009245,user_009245@example.com, +9246,user_009246,user_009246@example.com,1 +9247,user_009247,user_009247@example.com,2 +9248,user_009248,user_009248@example.com, +9249,user_009249,user_009249@example.com,1 +9250,user_009250,user_009250@example.com,2 +9251,user_009251,user_009251@example.com, +9252,user_009252,user_009252@example.com,1 +9253,user_009253,user_009253@example.com,2 +9254,user_009254,user_009254@example.com, +9255,user_009255,user_009255@example.com,1 +9256,user_009256,user_009256@example.com,2 +9257,user_009257,user_009257@example.com, +9258,user_009258,user_009258@example.com,1 +9259,user_009259,user_009259@example.com,2 +9260,user_009260,user_009260@example.com, +9261,user_009261,user_009261@example.com,1 +9262,user_009262,user_009262@example.com,2 +9263,user_009263,user_009263@example.com, +9264,user_009264,user_009264@example.com,1 +9265,user_009265,user_009265@example.com,2 +9266,user_009266,user_009266@example.com, +9267,user_009267,user_009267@example.com,1 +9268,user_009268,user_009268@example.com,2 +9269,user_009269,user_009269@example.com, +9270,user_009270,user_009270@example.com,1 +9271,user_009271,user_009271@example.com,2 +9272,user_009272,user_009272@example.com, +9273,user_009273,user_009273@example.com,1 +9274,user_009274,user_009274@example.com,2 +9275,user_009275,user_009275@example.com, +9276,user_009276,user_009276@example.com,1 +9277,user_009277,user_009277@example.com,2 +9278,user_009278,user_009278@example.com, +9279,user_009279,user_009279@example.com,1 +9280,user_009280,user_009280@example.com,2 +9281,user_009281,user_009281@example.com, +9282,user_009282,user_009282@example.com,1 +9283,user_009283,user_009283@example.com,2 +9284,user_009284,user_009284@example.com, +9285,user_009285,user_009285@example.com,1 +9286,user_009286,user_009286@example.com,2 +9287,user_009287,user_009287@example.com, +9288,user_009288,user_009288@example.com,1 +9289,user_009289,user_009289@example.com,2 +9290,user_009290,user_009290@example.com, +9291,user_009291,user_009291@example.com,1 +9292,user_009292,user_009292@example.com,2 +9293,user_009293,user_009293@example.com, +9294,user_009294,user_009294@example.com,1 +9295,user_009295,user_009295@example.com,2 +9296,user_009296,user_009296@example.com, +9297,user_009297,user_009297@example.com,1 +9298,user_009298,user_009298@example.com,2 +9299,user_009299,user_009299@example.com, +9300,user_009300,user_009300@example.com,1 +9301,user_009301,user_009301@example.com,2 +9302,user_009302,user_009302@example.com, +9303,user_009303,user_009303@example.com,1 +9304,user_009304,user_009304@example.com,2 +9305,user_009305,user_009305@example.com, +9306,user_009306,user_009306@example.com,1 +9307,user_009307,user_009307@example.com,2 +9308,user_009308,user_009308@example.com, +9309,user_009309,user_009309@example.com,1 +9310,user_009310,user_009310@example.com,2 +9311,user_009311,user_009311@example.com, +9312,user_009312,user_009312@example.com,1 +9313,user_009313,user_009313@example.com,2 +9314,user_009314,user_009314@example.com, +9315,user_009315,user_009315@example.com,1 +9316,user_009316,user_009316@example.com,2 +9317,user_009317,user_009317@example.com, +9318,user_009318,user_009318@example.com,1 +9319,user_009319,user_009319@example.com,2 +9320,user_009320,user_009320@example.com, +9321,user_009321,user_009321@example.com,1 +9322,user_009322,user_009322@example.com,2 +9323,user_009323,user_009323@example.com, +9324,user_009324,user_009324@example.com,1 +9325,user_009325,user_009325@example.com,2 +9326,user_009326,user_009326@example.com, +9327,user_009327,user_009327@example.com,1 +9328,user_009328,user_009328@example.com,2 +9329,user_009329,user_009329@example.com, +9330,user_009330,user_009330@example.com,1 +9331,user_009331,user_009331@example.com,2 +9332,user_009332,user_009332@example.com, +9333,user_009333,user_009333@example.com,1 +9334,user_009334,user_009334@example.com,2 +9335,user_009335,user_009335@example.com, +9336,user_009336,user_009336@example.com,1 +9337,user_009337,user_009337@example.com,2 +9338,user_009338,user_009338@example.com, +9339,user_009339,user_009339@example.com,1 +9340,user_009340,user_009340@example.com,2 +9341,user_009341,user_009341@example.com, +9342,user_009342,user_009342@example.com,1 +9343,user_009343,user_009343@example.com,2 +9344,user_009344,user_009344@example.com, +9345,user_009345,user_009345@example.com,1 +9346,user_009346,user_009346@example.com,2 +9347,user_009347,user_009347@example.com, +9348,user_009348,user_009348@example.com,1 +9349,user_009349,user_009349@example.com,2 +9350,user_009350,user_009350@example.com, +9351,user_009351,user_009351@example.com,1 +9352,user_009352,user_009352@example.com,2 +9353,user_009353,user_009353@example.com, +9354,user_009354,user_009354@example.com,1 +9355,user_009355,user_009355@example.com,2 +9356,user_009356,user_009356@example.com, +9357,user_009357,user_009357@example.com,1 +9358,user_009358,user_009358@example.com,2 +9359,user_009359,user_009359@example.com, +9360,user_009360,user_009360@example.com,1 +9361,user_009361,user_009361@example.com,2 +9362,user_009362,user_009362@example.com, +9363,user_009363,user_009363@example.com,1 +9364,user_009364,user_009364@example.com,2 +9365,user_009365,user_009365@example.com, +9366,user_009366,user_009366@example.com,1 +9367,user_009367,user_009367@example.com,2 +9368,user_009368,user_009368@example.com, +9369,user_009369,user_009369@example.com,1 +9370,user_009370,user_009370@example.com,2 +9371,user_009371,user_009371@example.com, +9372,user_009372,user_009372@example.com,1 +9373,user_009373,user_009373@example.com,2 +9374,user_009374,user_009374@example.com, +9375,user_009375,user_009375@example.com,1 +9376,user_009376,user_009376@example.com,2 +9377,user_009377,user_009377@example.com, +9378,user_009378,user_009378@example.com,1 +9379,user_009379,user_009379@example.com,2 +9380,user_009380,user_009380@example.com, +9381,user_009381,user_009381@example.com,1 +9382,user_009382,user_009382@example.com,2 +9383,user_009383,user_009383@example.com, +9384,user_009384,user_009384@example.com,1 +9385,user_009385,user_009385@example.com,2 +9386,user_009386,user_009386@example.com, +9387,user_009387,user_009387@example.com,1 +9388,user_009388,user_009388@example.com,2 +9389,user_009389,user_009389@example.com, +9390,user_009390,user_009390@example.com,1 +9391,user_009391,user_009391@example.com,2 +9392,user_009392,user_009392@example.com, +9393,user_009393,user_009393@example.com,1 +9394,user_009394,user_009394@example.com,2 +9395,user_009395,user_009395@example.com, +9396,user_009396,user_009396@example.com,1 +9397,user_009397,user_009397@example.com,2 +9398,user_009398,user_009398@example.com, +9399,user_009399,user_009399@example.com,1 +9400,user_009400,user_009400@example.com,2 +9401,user_009401,user_009401@example.com, +9402,user_009402,user_009402@example.com,1 +9403,user_009403,user_009403@example.com,2 +9404,user_009404,user_009404@example.com, +9405,user_009405,user_009405@example.com,1 +9406,user_009406,user_009406@example.com,2 +9407,user_009407,user_009407@example.com, +9408,user_009408,user_009408@example.com,1 +9409,user_009409,user_009409@example.com,2 +9410,user_009410,user_009410@example.com, +9411,user_009411,user_009411@example.com,1 +9412,user_009412,user_009412@example.com,2 +9413,user_009413,user_009413@example.com, +9414,user_009414,user_009414@example.com,1 +9415,user_009415,user_009415@example.com,2 +9416,user_009416,user_009416@example.com, +9417,user_009417,user_009417@example.com,1 +9418,user_009418,user_009418@example.com,2 +9419,user_009419,user_009419@example.com, +9420,user_009420,user_009420@example.com,1 +9421,user_009421,user_009421@example.com,2 +9422,user_009422,user_009422@example.com, +9423,user_009423,user_009423@example.com,1 +9424,user_009424,user_009424@example.com,2 +9425,user_009425,user_009425@example.com, +9426,user_009426,user_009426@example.com,1 +9427,user_009427,user_009427@example.com,2 +9428,user_009428,user_009428@example.com, +9429,user_009429,user_009429@example.com,1 +9430,user_009430,user_009430@example.com,2 +9431,user_009431,user_009431@example.com, +9432,user_009432,user_009432@example.com,1 +9433,user_009433,user_009433@example.com,2 +9434,user_009434,user_009434@example.com, +9435,user_009435,user_009435@example.com,1 +9436,user_009436,user_009436@example.com,2 +9437,user_009437,user_009437@example.com, +9438,user_009438,user_009438@example.com,1 +9439,user_009439,user_009439@example.com,2 +9440,user_009440,user_009440@example.com, +9441,user_009441,user_009441@example.com,1 +9442,user_009442,user_009442@example.com,2 +9443,user_009443,user_009443@example.com, +9444,user_009444,user_009444@example.com,1 +9445,user_009445,user_009445@example.com,2 +9446,user_009446,user_009446@example.com, +9447,user_009447,user_009447@example.com,1 +9448,user_009448,user_009448@example.com,2 +9449,user_009449,user_009449@example.com, +9450,user_009450,user_009450@example.com,1 +9451,user_009451,user_009451@example.com,2 +9452,user_009452,user_009452@example.com, +9453,user_009453,user_009453@example.com,1 +9454,user_009454,user_009454@example.com,2 +9455,user_009455,user_009455@example.com, +9456,user_009456,user_009456@example.com,1 +9457,user_009457,user_009457@example.com,2 +9458,user_009458,user_009458@example.com, +9459,user_009459,user_009459@example.com,1 +9460,user_009460,user_009460@example.com,2 +9461,user_009461,user_009461@example.com, +9462,user_009462,user_009462@example.com,1 +9463,user_009463,user_009463@example.com,2 +9464,user_009464,user_009464@example.com, +9465,user_009465,user_009465@example.com,1 +9466,user_009466,user_009466@example.com,2 +9467,user_009467,user_009467@example.com, +9468,user_009468,user_009468@example.com,1 +9469,user_009469,user_009469@example.com,2 +9470,user_009470,user_009470@example.com, +9471,user_009471,user_009471@example.com,1 +9472,user_009472,user_009472@example.com,2 +9473,user_009473,user_009473@example.com, +9474,user_009474,user_009474@example.com,1 +9475,user_009475,user_009475@example.com,2 +9476,user_009476,user_009476@example.com, +9477,user_009477,user_009477@example.com,1 +9478,user_009478,user_009478@example.com,2 +9479,user_009479,user_009479@example.com, +9480,user_009480,user_009480@example.com,1 +9481,user_009481,user_009481@example.com,2 +9482,user_009482,user_009482@example.com, +9483,user_009483,user_009483@example.com,1 +9484,user_009484,user_009484@example.com,2 +9485,user_009485,user_009485@example.com, +9486,user_009486,user_009486@example.com,1 +9487,user_009487,user_009487@example.com,2 +9488,user_009488,user_009488@example.com, +9489,user_009489,user_009489@example.com,1 +9490,user_009490,user_009490@example.com,2 +9491,user_009491,user_009491@example.com, +9492,user_009492,user_009492@example.com,1 +9493,user_009493,user_009493@example.com,2 +9494,user_009494,user_009494@example.com, +9495,user_009495,user_009495@example.com,1 +9496,user_009496,user_009496@example.com,2 +9497,user_009497,user_009497@example.com, +9498,user_009498,user_009498@example.com,1 +9499,user_009499,user_009499@example.com,2 +9500,user_009500,user_009500@example.com, +9501,user_009501,user_009501@example.com,1 +9502,user_009502,user_009502@example.com,2 +9503,user_009503,user_009503@example.com, +9504,user_009504,user_009504@example.com,1 +9505,user_009505,user_009505@example.com,2 +9506,user_009506,user_009506@example.com, +9507,user_009507,user_009507@example.com,1 +9508,user_009508,user_009508@example.com,2 +9509,user_009509,user_009509@example.com, +9510,user_009510,user_009510@example.com,1 +9511,user_009511,user_009511@example.com,2 +9512,user_009512,user_009512@example.com, +9513,user_009513,user_009513@example.com,1 +9514,user_009514,user_009514@example.com,2 +9515,user_009515,user_009515@example.com, +9516,user_009516,user_009516@example.com,1 +9517,user_009517,user_009517@example.com,2 +9518,user_009518,user_009518@example.com, +9519,user_009519,user_009519@example.com,1 +9520,user_009520,user_009520@example.com,2 +9521,user_009521,user_009521@example.com, +9522,user_009522,user_009522@example.com,1 +9523,user_009523,user_009523@example.com,2 +9524,user_009524,user_009524@example.com, +9525,user_009525,user_009525@example.com,1 +9526,user_009526,user_009526@example.com,2 +9527,user_009527,user_009527@example.com, +9528,user_009528,user_009528@example.com,1 +9529,user_009529,user_009529@example.com,2 +9530,user_009530,user_009530@example.com, +9531,user_009531,user_009531@example.com,1 +9532,user_009532,user_009532@example.com,2 +9533,user_009533,user_009533@example.com, +9534,user_009534,user_009534@example.com,1 +9535,user_009535,user_009535@example.com,2 +9536,user_009536,user_009536@example.com, +9537,user_009537,user_009537@example.com,1 +9538,user_009538,user_009538@example.com,2 +9539,user_009539,user_009539@example.com, +9540,user_009540,user_009540@example.com,1 +9541,user_009541,user_009541@example.com,2 +9542,user_009542,user_009542@example.com, +9543,user_009543,user_009543@example.com,1 +9544,user_009544,user_009544@example.com,2 +9545,user_009545,user_009545@example.com, +9546,user_009546,user_009546@example.com,1 +9547,user_009547,user_009547@example.com,2 +9548,user_009548,user_009548@example.com, +9549,user_009549,user_009549@example.com,1 +9550,user_009550,user_009550@example.com,2 +9551,user_009551,user_009551@example.com, +9552,user_009552,user_009552@example.com,1 +9553,user_009553,user_009553@example.com,2 +9554,user_009554,user_009554@example.com, +9555,user_009555,user_009555@example.com,1 +9556,user_009556,user_009556@example.com,2 +9557,user_009557,user_009557@example.com, +9558,user_009558,user_009558@example.com,1 +9559,user_009559,user_009559@example.com,2 +9560,user_009560,user_009560@example.com, +9561,user_009561,user_009561@example.com,1 +9562,user_009562,user_009562@example.com,2 +9563,user_009563,user_009563@example.com, +9564,user_009564,user_009564@example.com,1 +9565,user_009565,user_009565@example.com,2 +9566,user_009566,user_009566@example.com, +9567,user_009567,user_009567@example.com,1 +9568,user_009568,user_009568@example.com,2 +9569,user_009569,user_009569@example.com, +9570,user_009570,user_009570@example.com,1 +9571,user_009571,user_009571@example.com,2 +9572,user_009572,user_009572@example.com, +9573,user_009573,user_009573@example.com,1 +9574,user_009574,user_009574@example.com,2 +9575,user_009575,user_009575@example.com, +9576,user_009576,user_009576@example.com,1 +9577,user_009577,user_009577@example.com,2 +9578,user_009578,user_009578@example.com, +9579,user_009579,user_009579@example.com,1 +9580,user_009580,user_009580@example.com,2 +9581,user_009581,user_009581@example.com, +9582,user_009582,user_009582@example.com,1 +9583,user_009583,user_009583@example.com,2 +9584,user_009584,user_009584@example.com, +9585,user_009585,user_009585@example.com,1 +9586,user_009586,user_009586@example.com,2 +9587,user_009587,user_009587@example.com, +9588,user_009588,user_009588@example.com,1 +9589,user_009589,user_009589@example.com,2 +9590,user_009590,user_009590@example.com, +9591,user_009591,user_009591@example.com,1 +9592,user_009592,user_009592@example.com,2 +9593,user_009593,user_009593@example.com, +9594,user_009594,user_009594@example.com,1 +9595,user_009595,user_009595@example.com,2 +9596,user_009596,user_009596@example.com, +9597,user_009597,user_009597@example.com,1 +9598,user_009598,user_009598@example.com,2 +9599,user_009599,user_009599@example.com, +9600,user_009600,user_009600@example.com,1 +9601,user_009601,user_009601@example.com,2 +9602,user_009602,user_009602@example.com, +9603,user_009603,user_009603@example.com,1 +9604,user_009604,user_009604@example.com,2 +9605,user_009605,user_009605@example.com, +9606,user_009606,user_009606@example.com,1 +9607,user_009607,user_009607@example.com,2 +9608,user_009608,user_009608@example.com, +9609,user_009609,user_009609@example.com,1 +9610,user_009610,user_009610@example.com,2 +9611,user_009611,user_009611@example.com, +9612,user_009612,user_009612@example.com,1 +9613,user_009613,user_009613@example.com,2 +9614,user_009614,user_009614@example.com, +9615,user_009615,user_009615@example.com,1 +9616,user_009616,user_009616@example.com,2 +9617,user_009617,user_009617@example.com, +9618,user_009618,user_009618@example.com,1 +9619,user_009619,user_009619@example.com,2 +9620,user_009620,user_009620@example.com, +9621,user_009621,user_009621@example.com,1 +9622,user_009622,user_009622@example.com,2 +9623,user_009623,user_009623@example.com, +9624,user_009624,user_009624@example.com,1 +9625,user_009625,user_009625@example.com,2 +9626,user_009626,user_009626@example.com, +9627,user_009627,user_009627@example.com,1 +9628,user_009628,user_009628@example.com,2 +9629,user_009629,user_009629@example.com, +9630,user_009630,user_009630@example.com,1 +9631,user_009631,user_009631@example.com,2 +9632,user_009632,user_009632@example.com, +9633,user_009633,user_009633@example.com,1 +9634,user_009634,user_009634@example.com,2 +9635,user_009635,user_009635@example.com, +9636,user_009636,user_009636@example.com,1 +9637,user_009637,user_009637@example.com,2 +9638,user_009638,user_009638@example.com, +9639,user_009639,user_009639@example.com,1 +9640,user_009640,user_009640@example.com,2 +9641,user_009641,user_009641@example.com, +9642,user_009642,user_009642@example.com,1 +9643,user_009643,user_009643@example.com,2 +9644,user_009644,user_009644@example.com, +9645,user_009645,user_009645@example.com,1 +9646,user_009646,user_009646@example.com,2 +9647,user_009647,user_009647@example.com, +9648,user_009648,user_009648@example.com,1 +9649,user_009649,user_009649@example.com,2 +9650,user_009650,user_009650@example.com, +9651,user_009651,user_009651@example.com,1 +9652,user_009652,user_009652@example.com,2 +9653,user_009653,user_009653@example.com, +9654,user_009654,user_009654@example.com,1 +9655,user_009655,user_009655@example.com,2 +9656,user_009656,user_009656@example.com, +9657,user_009657,user_009657@example.com,1 +9658,user_009658,user_009658@example.com,2 +9659,user_009659,user_009659@example.com, +9660,user_009660,user_009660@example.com,1 +9661,user_009661,user_009661@example.com,2 +9662,user_009662,user_009662@example.com, +9663,user_009663,user_009663@example.com,1 +9664,user_009664,user_009664@example.com,2 +9665,user_009665,user_009665@example.com, +9666,user_009666,user_009666@example.com,1 +9667,user_009667,user_009667@example.com,2 +9668,user_009668,user_009668@example.com, +9669,user_009669,user_009669@example.com,1 +9670,user_009670,user_009670@example.com,2 +9671,user_009671,user_009671@example.com, +9672,user_009672,user_009672@example.com,1 +9673,user_009673,user_009673@example.com,2 +9674,user_009674,user_009674@example.com, +9675,user_009675,user_009675@example.com,1 +9676,user_009676,user_009676@example.com,2 +9677,user_009677,user_009677@example.com, +9678,user_009678,user_009678@example.com,1 +9679,user_009679,user_009679@example.com,2 +9680,user_009680,user_009680@example.com, +9681,user_009681,user_009681@example.com,1 +9682,user_009682,user_009682@example.com,2 +9683,user_009683,user_009683@example.com, +9684,user_009684,user_009684@example.com,1 +9685,user_009685,user_009685@example.com,2 +9686,user_009686,user_009686@example.com, +9687,user_009687,user_009687@example.com,1 +9688,user_009688,user_009688@example.com,2 +9689,user_009689,user_009689@example.com, +9690,user_009690,user_009690@example.com,1 +9691,user_009691,user_009691@example.com,2 +9692,user_009692,user_009692@example.com, +9693,user_009693,user_009693@example.com,1 +9694,user_009694,user_009694@example.com,2 +9695,user_009695,user_009695@example.com, +9696,user_009696,user_009696@example.com,1 +9697,user_009697,user_009697@example.com,2 +9698,user_009698,user_009698@example.com, +9699,user_009699,user_009699@example.com,1 +9700,user_009700,user_009700@example.com,2 +9701,user_009701,user_009701@example.com, +9702,user_009702,user_009702@example.com,1 +9703,user_009703,user_009703@example.com,2 +9704,user_009704,user_009704@example.com, +9705,user_009705,user_009705@example.com,1 +9706,user_009706,user_009706@example.com,2 +9707,user_009707,user_009707@example.com, +9708,user_009708,user_009708@example.com,1 +9709,user_009709,user_009709@example.com,2 +9710,user_009710,user_009710@example.com, +9711,user_009711,user_009711@example.com,1 +9712,user_009712,user_009712@example.com,2 +9713,user_009713,user_009713@example.com, +9714,user_009714,user_009714@example.com,1 +9715,user_009715,user_009715@example.com,2 +9716,user_009716,user_009716@example.com, +9717,user_009717,user_009717@example.com,1 +9718,user_009718,user_009718@example.com,2 +9719,user_009719,user_009719@example.com, +9720,user_009720,user_009720@example.com,1 +9721,user_009721,user_009721@example.com,2 +9722,user_009722,user_009722@example.com, +9723,user_009723,user_009723@example.com,1 +9724,user_009724,user_009724@example.com,2 +9725,user_009725,user_009725@example.com, +9726,user_009726,user_009726@example.com,1 +9727,user_009727,user_009727@example.com,2 +9728,user_009728,user_009728@example.com, +9729,user_009729,user_009729@example.com,1 +9730,user_009730,user_009730@example.com,2 +9731,user_009731,user_009731@example.com, +9732,user_009732,user_009732@example.com,1 +9733,user_009733,user_009733@example.com,2 +9734,user_009734,user_009734@example.com, +9735,user_009735,user_009735@example.com,1 +9736,user_009736,user_009736@example.com,2 +9737,user_009737,user_009737@example.com, +9738,user_009738,user_009738@example.com,1 +9739,user_009739,user_009739@example.com,2 +9740,user_009740,user_009740@example.com, +9741,user_009741,user_009741@example.com,1 +9742,user_009742,user_009742@example.com,2 +9743,user_009743,user_009743@example.com, +9744,user_009744,user_009744@example.com,1 +9745,user_009745,user_009745@example.com,2 +9746,user_009746,user_009746@example.com, +9747,user_009747,user_009747@example.com,1 +9748,user_009748,user_009748@example.com,2 +9749,user_009749,user_009749@example.com, +9750,user_009750,user_009750@example.com,1 +9751,user_009751,user_009751@example.com,2 +9752,user_009752,user_009752@example.com, +9753,user_009753,user_009753@example.com,1 +9754,user_009754,user_009754@example.com,2 +9755,user_009755,user_009755@example.com, +9756,user_009756,user_009756@example.com,1 +9757,user_009757,user_009757@example.com,2 +9758,user_009758,user_009758@example.com, +9759,user_009759,user_009759@example.com,1 +9760,user_009760,user_009760@example.com,2 +9761,user_009761,user_009761@example.com, +9762,user_009762,user_009762@example.com,1 +9763,user_009763,user_009763@example.com,2 +9764,user_009764,user_009764@example.com, +9765,user_009765,user_009765@example.com,1 +9766,user_009766,user_009766@example.com,2 +9767,user_009767,user_009767@example.com, +9768,user_009768,user_009768@example.com,1 +9769,user_009769,user_009769@example.com,2 +9770,user_009770,user_009770@example.com, +9771,user_009771,user_009771@example.com,1 +9772,user_009772,user_009772@example.com,2 +9773,user_009773,user_009773@example.com, +9774,user_009774,user_009774@example.com,1 +9775,user_009775,user_009775@example.com,2 +9776,user_009776,user_009776@example.com, +9777,user_009777,user_009777@example.com,1 +9778,user_009778,user_009778@example.com,2 +9779,user_009779,user_009779@example.com, +9780,user_009780,user_009780@example.com,1 +9781,user_009781,user_009781@example.com,2 +9782,user_009782,user_009782@example.com, +9783,user_009783,user_009783@example.com,1 +9784,user_009784,user_009784@example.com,2 +9785,user_009785,user_009785@example.com, +9786,user_009786,user_009786@example.com,1 +9787,user_009787,user_009787@example.com,2 +9788,user_009788,user_009788@example.com, +9789,user_009789,user_009789@example.com,1 +9790,user_009790,user_009790@example.com,2 +9791,user_009791,user_009791@example.com, +9792,user_009792,user_009792@example.com,1 +9793,user_009793,user_009793@example.com,2 +9794,user_009794,user_009794@example.com, +9795,user_009795,user_009795@example.com,1 +9796,user_009796,user_009796@example.com,2 +9797,user_009797,user_009797@example.com, +9798,user_009798,user_009798@example.com,1 +9799,user_009799,user_009799@example.com,2 +9800,user_009800,user_009800@example.com, +9801,user_009801,user_009801@example.com,1 +9802,user_009802,user_009802@example.com,2 +9803,user_009803,user_009803@example.com, +9804,user_009804,user_009804@example.com,1 +9805,user_009805,user_009805@example.com,2 +9806,user_009806,user_009806@example.com, +9807,user_009807,user_009807@example.com,1 +9808,user_009808,user_009808@example.com,2 +9809,user_009809,user_009809@example.com, +9810,user_009810,user_009810@example.com,1 +9811,user_009811,user_009811@example.com,2 +9812,user_009812,user_009812@example.com, +9813,user_009813,user_009813@example.com,1 +9814,user_009814,user_009814@example.com,2 +9815,user_009815,user_009815@example.com, +9816,user_009816,user_009816@example.com,1 +9817,user_009817,user_009817@example.com,2 +9818,user_009818,user_009818@example.com, +9819,user_009819,user_009819@example.com,1 +9820,user_009820,user_009820@example.com,2 +9821,user_009821,user_009821@example.com, +9822,user_009822,user_009822@example.com,1 +9823,user_009823,user_009823@example.com,2 +9824,user_009824,user_009824@example.com, +9825,user_009825,user_009825@example.com,1 +9826,user_009826,user_009826@example.com,2 +9827,user_009827,user_009827@example.com, +9828,user_009828,user_009828@example.com,1 +9829,user_009829,user_009829@example.com,2 +9830,user_009830,user_009830@example.com, +9831,user_009831,user_009831@example.com,1 +9832,user_009832,user_009832@example.com,2 +9833,user_009833,user_009833@example.com, +9834,user_009834,user_009834@example.com,1 +9835,user_009835,user_009835@example.com,2 +9836,user_009836,user_009836@example.com, +9837,user_009837,user_009837@example.com,1 +9838,user_009838,user_009838@example.com,2 +9839,user_009839,user_009839@example.com, +9840,user_009840,user_009840@example.com,1 +9841,user_009841,user_009841@example.com,2 +9842,user_009842,user_009842@example.com, +9843,user_009843,user_009843@example.com,1 +9844,user_009844,user_009844@example.com,2 +9845,user_009845,user_009845@example.com, +9846,user_009846,user_009846@example.com,1 +9847,user_009847,user_009847@example.com,2 +9848,user_009848,user_009848@example.com, +9849,user_009849,user_009849@example.com,1 +9850,user_009850,user_009850@example.com,2 +9851,user_009851,user_009851@example.com, +9852,user_009852,user_009852@example.com,1 +9853,user_009853,user_009853@example.com,2 +9854,user_009854,user_009854@example.com, +9855,user_009855,user_009855@example.com,1 +9856,user_009856,user_009856@example.com,2 +9857,user_009857,user_009857@example.com, +9858,user_009858,user_009858@example.com,1 +9859,user_009859,user_009859@example.com,2 +9860,user_009860,user_009860@example.com, +9861,user_009861,user_009861@example.com,1 +9862,user_009862,user_009862@example.com,2 +9863,user_009863,user_009863@example.com, +9864,user_009864,user_009864@example.com,1 +9865,user_009865,user_009865@example.com,2 +9866,user_009866,user_009866@example.com, +9867,user_009867,user_009867@example.com,1 +9868,user_009868,user_009868@example.com,2 +9869,user_009869,user_009869@example.com, +9870,user_009870,user_009870@example.com,1 +9871,user_009871,user_009871@example.com,2 +9872,user_009872,user_009872@example.com, +9873,user_009873,user_009873@example.com,1 +9874,user_009874,user_009874@example.com,2 +9875,user_009875,user_009875@example.com, +9876,user_009876,user_009876@example.com,1 +9877,user_009877,user_009877@example.com,2 +9878,user_009878,user_009878@example.com, +9879,user_009879,user_009879@example.com,1 +9880,user_009880,user_009880@example.com,2 +9881,user_009881,user_009881@example.com, +9882,user_009882,user_009882@example.com,1 +9883,user_009883,user_009883@example.com,2 +9884,user_009884,user_009884@example.com, +9885,user_009885,user_009885@example.com,1 +9886,user_009886,user_009886@example.com,2 +9887,user_009887,user_009887@example.com, +9888,user_009888,user_009888@example.com,1 +9889,user_009889,user_009889@example.com,2 +9890,user_009890,user_009890@example.com, +9891,user_009891,user_009891@example.com,1 +9892,user_009892,user_009892@example.com,2 +9893,user_009893,user_009893@example.com, +9894,user_009894,user_009894@example.com,1 +9895,user_009895,user_009895@example.com,2 +9896,user_009896,user_009896@example.com, +9897,user_009897,user_009897@example.com,1 +9898,user_009898,user_009898@example.com,2 +9899,user_009899,user_009899@example.com, +9900,user_009900,user_009900@example.com,1 +9901,user_009901,user_009901@example.com,2 +9902,user_009902,user_009902@example.com, +9903,user_009903,user_009903@example.com,1 +9904,user_009904,user_009904@example.com,2 +9905,user_009905,user_009905@example.com, +9906,user_009906,user_009906@example.com,1 +9907,user_009907,user_009907@example.com,2 +9908,user_009908,user_009908@example.com, +9909,user_009909,user_009909@example.com,1 +9910,user_009910,user_009910@example.com,2 +9911,user_009911,user_009911@example.com, +9912,user_009912,user_009912@example.com,1 +9913,user_009913,user_009913@example.com,2 +9914,user_009914,user_009914@example.com, +9915,user_009915,user_009915@example.com,1 +9916,user_009916,user_009916@example.com,2 +9917,user_009917,user_009917@example.com, +9918,user_009918,user_009918@example.com,1 +9919,user_009919,user_009919@example.com,2 +9920,user_009920,user_009920@example.com, +9921,user_009921,user_009921@example.com,1 +9922,user_009922,user_009922@example.com,2 +9923,user_009923,user_009923@example.com, +9924,user_009924,user_009924@example.com,1 +9925,user_009925,user_009925@example.com,2 +9926,user_009926,user_009926@example.com, +9927,user_009927,user_009927@example.com,1 +9928,user_009928,user_009928@example.com,2 +9929,user_009929,user_009929@example.com, +9930,user_009930,user_009930@example.com,1 +9931,user_009931,user_009931@example.com,2 +9932,user_009932,user_009932@example.com, +9933,user_009933,user_009933@example.com,1 +9934,user_009934,user_009934@example.com,2 +9935,user_009935,user_009935@example.com, +9936,user_009936,user_009936@example.com,1 +9937,user_009937,user_009937@example.com,2 +9938,user_009938,user_009938@example.com, +9939,user_009939,user_009939@example.com,1 +9940,user_009940,user_009940@example.com,2 +9941,user_009941,user_009941@example.com, +9942,user_009942,user_009942@example.com,1 +9943,user_009943,user_009943@example.com,2 +9944,user_009944,user_009944@example.com, +9945,user_009945,user_009945@example.com,1 +9946,user_009946,user_009946@example.com,2 +9947,user_009947,user_009947@example.com, +9948,user_009948,user_009948@example.com,1 +9949,user_009949,user_009949@example.com,2 +9950,user_009950,user_009950@example.com, +9951,user_009951,user_009951@example.com,1 +9952,user_009952,user_009952@example.com,2 +9953,user_009953,user_009953@example.com, +9954,user_009954,user_009954@example.com,1 +9955,user_009955,user_009955@example.com,2 +9956,user_009956,user_009956@example.com, +9957,user_009957,user_009957@example.com,1 +9958,user_009958,user_009958@example.com,2 +9959,user_009959,user_009959@example.com, +9960,user_009960,user_009960@example.com,1 +9961,user_009961,user_009961@example.com,2 +9962,user_009962,user_009962@example.com, +9963,user_009963,user_009963@example.com,1 +9964,user_009964,user_009964@example.com,2 +9965,user_009965,user_009965@example.com, +9966,user_009966,user_009966@example.com,1 +9967,user_009967,user_009967@example.com,2 +9968,user_009968,user_009968@example.com, +9969,user_009969,user_009969@example.com,1 +9970,user_009970,user_009970@example.com,2 +9971,user_009971,user_009971@example.com, +9972,user_009972,user_009972@example.com,1 +9973,user_009973,user_009973@example.com,2 +9974,user_009974,user_009974@example.com, +9975,user_009975,user_009975@example.com,1 +9976,user_009976,user_009976@example.com,2 +9977,user_009977,user_009977@example.com, +9978,user_009978,user_009978@example.com,1 +9979,user_009979,user_009979@example.com,2 +9980,user_009980,user_009980@example.com, +9981,user_009981,user_009981@example.com,1 +9982,user_009982,user_009982@example.com,2 +9983,user_009983,user_009983@example.com, +9984,user_009984,user_009984@example.com,1 +9985,user_009985,user_009985@example.com,2 +9986,user_009986,user_009986@example.com, +9987,user_009987,user_009987@example.com,1 +9988,user_009988,user_009988@example.com,2 +9989,user_009989,user_009989@example.com, +9990,user_009990,user_009990@example.com,1 +9991,user_009991,user_009991@example.com,2 +9992,user_009992,user_009992@example.com, +9993,user_009993,user_009993@example.com,1 +9994,user_009994,user_009994@example.com,2 +9995,user_009995,user_009995@example.com, +9996,user_009996,user_009996@example.com,1 +9997,user_009997,user_009997@example.com,2 +9998,user_009998,user_009998@example.com, +9999,user_009999,user_009999@example.com,1 diff --git a/drivers/csv/testdata/person_csv b/drivers/csv/testdata/person_csv new file mode 100644 index 00000000..cb508e2d --- /dev/null +++ b/drivers/csv/testdata/person_csv @@ -0,0 +1,8 @@ +uid,username,email,address_id +1,neilotoole,neilotoole@apache.org,1 +2,ksoze,kaiser@soze.org,2 +3,kubla,kubla@khan.mn, +4,tesla,nikola@tesla.rs,1 +5,augustus,augustus@caesar.org,2 +6,julius,julius@caesar.org, +7,plato,plato@athens.gr,1 diff --git a/drivers/csv/testdata/person_noheader.csv b/drivers/csv/testdata/person_noheader.csv new file mode 100644 index 00000000..88ebbaaf --- /dev/null +++ b/drivers/csv/testdata/person_noheader.csv @@ -0,0 +1,7 @@ +1,neilotoole,neilotoole@apache.org,1 +2,ksoze,kaiser@soze.org,2 +3,kubla,kubla@khan.mn, +4,tesla,nikola@tesla.rs,1 +5,augustus,augustus@caesar.org,2 +6,julius,julius@caesar.org, +7,plato,plato@athens.gr,1 diff --git a/drivers/csv/testdata/person_noheader.tsv b/drivers/csv/testdata/person_noheader.tsv new file mode 100644 index 00000000..3887c90b --- /dev/null +++ b/drivers/csv/testdata/person_noheader.tsv @@ -0,0 +1 @@ +1 neilotoole neilotoole@apache.org 1 2 ksoze kaiser@soze.org 2 3 kubla kubla@khan.mn 4 tesla nikola@tesla.rs 1 5 augustus augustus@caesar.org 2 6 julius julius@caesar.org 7 plato plato@athens.gr 1 \ No newline at end of file diff --git a/drivers/csv/testdata/person_pipe.csv b/drivers/csv/testdata/person_pipe.csv new file mode 100644 index 00000000..6fd1538f --- /dev/null +++ b/drivers/csv/testdata/person_pipe.csv @@ -0,0 +1,8 @@ +uid|username|email|address_id +1|neilotoole|neilotoole@apache.org|1 +2|ksoze|kaiser@soze.org|2 +3|kubla|kubla@khan.mn| +4|tesla|nikola@tesla.rs|1 +5|augustus|augustus@caesar.org|2 +6|julius|julius@caesar.org| +7|plato|plato@athens.gr|1 diff --git a/drivers/csv/testdata/person_semicolon.csv b/drivers/csv/testdata/person_semicolon.csv new file mode 100644 index 00000000..21c74df1 --- /dev/null +++ b/drivers/csv/testdata/person_semicolon.csv @@ -0,0 +1,8 @@ +uid;username;email:address_id +1;neilotoole;neilotoole@apache.org;1 +2;ksoze;kaiser@soze.org;2 +3;kubla;kubla@khan.mn; +4;tesla;nikola@tesla.rs;1 +5;augustus;augustus@caesar.org;2 +6;julius;julius@caesar.org; +7;plato;plato@athens.gr;1 diff --git a/drivers/csv/testdata/person_tsv b/drivers/csv/testdata/person_tsv new file mode 100644 index 00000000..13fd4ced --- /dev/null +++ b/drivers/csv/testdata/person_tsv @@ -0,0 +1 @@ +uid username email address_id 1 neilotoole neilotoole@apache.org 1 2 ksoze kaiser@soze.org 2 3 kubla kubla@khan.mn 4 tesla nikola@tesla.rs 1 5 augustus augustus@caesar.org 2 6 julius julius@caesar.org 7 plato plato@athens.gr 1 \ No newline at end of file diff --git a/drivers/csv/testdata/sakila-csv-noheader/actor.csv b/drivers/csv/testdata/sakila-csv-noheader/actor.csv new file mode 100644 index 00000000..a830f476 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/actor.csv @@ -0,0 +1,200 @@ +1,PENELOPE,GUINESS,2020-02-15T06:59:28Z +2,NICK,WAHLBERG,2020-02-15T06:59:28Z +3,ED,CHASE,2020-02-15T06:59:28Z +4,JENNIFER,DAVIS,2020-02-15T06:59:28Z +5,JOHNNY,LOLLOBRIGIDA,2020-02-15T06:59:28Z +6,BETTE,NICHOLSON,2020-02-15T06:59:28Z +7,GRACE,MOSTEL,2020-02-15T06:59:28Z +8,MATTHEW,JOHANSSON,2020-02-15T06:59:28Z +9,JOE,SWANK,2020-02-15T06:59:28Z +10,CHRISTIAN,GABLE,2020-02-15T06:59:28Z +11,ZERO,CAGE,2020-02-15T06:59:28Z +12,KARL,BERRY,2020-02-15T06:59:28Z +13,UMA,WOOD,2020-02-15T06:59:28Z +14,VIVIEN,BERGEN,2020-02-15T06:59:28Z +15,CUBA,OLIVIER,2020-02-15T06:59:28Z +16,FRED,COSTNER,2020-02-15T06:59:28Z +17,HELEN,VOIGHT,2020-02-15T06:59:28Z +18,DAN,TORN,2020-02-15T06:59:28Z +19,BOB,FAWCETT,2020-02-15T06:59:28Z +20,LUCILLE,TRACY,2020-02-15T06:59:28Z +21,KIRSTEN,PALTROW,2020-02-15T06:59:28Z +22,ELVIS,MARX,2020-02-15T06:59:28Z +23,SANDRA,KILMER,2020-02-15T06:59:28Z +24,CAMERON,STREEP,2020-02-15T06:59:28Z +25,KEVIN,BLOOM,2020-02-15T06:59:28Z +26,RIP,CRAWFORD,2020-02-15T06:59:28Z +27,JULIA,MCQUEEN,2020-02-15T06:59:28Z +28,WOODY,HOFFMAN,2020-02-15T06:59:28Z +29,ALEC,WAYNE,2020-02-15T06:59:28Z +30,SANDRA,PECK,2020-02-15T06:59:28Z +31,SISSY,SOBIESKI,2020-02-15T06:59:28Z +32,TIM,HACKMAN,2020-02-15T06:59:28Z +33,MILLA,PECK,2020-02-15T06:59:28Z +34,AUDREY,OLIVIER,2020-02-15T06:59:28Z +35,JUDY,DEAN,2020-02-15T06:59:28Z +36,BURT,DUKAKIS,2020-02-15T06:59:28Z +37,VAL,BOLGER,2020-02-15T06:59:28Z +38,TOM,MCKELLEN,2020-02-15T06:59:28Z +39,GOLDIE,BRODY,2020-02-15T06:59:28Z +40,JOHNNY,CAGE,2020-02-15T06:59:28Z +41,JODIE,DEGENERES,2020-02-15T06:59:28Z +42,TOM,MIRANDA,2020-02-15T06:59:28Z +43,KIRK,JOVOVICH,2020-02-15T06:59:28Z +44,NICK,STALLONE,2020-02-15T06:59:28Z +45,REESE,KILMER,2020-02-15T06:59:28Z +46,PARKER,GOLDBERG,2020-02-15T06:59:28Z +47,JULIA,BARRYMORE,2020-02-15T06:59:28Z +48,FRANCES,DAY-LEWIS,2020-02-15T06:59:28Z +49,ANNE,CRONYN,2020-02-15T06:59:28Z +50,NATALIE,HOPKINS,2020-02-15T06:59:28Z +51,GARY,PHOENIX,2020-02-15T06:59:28Z +52,CARMEN,HUNT,2020-02-15T06:59:28Z +53,MENA,TEMPLE,2020-02-15T06:59:28Z +54,PENELOPE,PINKETT,2020-02-15T06:59:28Z +55,FAY,KILMER,2020-02-15T06:59:28Z +56,DAN,HARRIS,2020-02-15T06:59:28Z +57,JUDE,CRUISE,2020-02-15T06:59:28Z +58,CHRISTIAN,AKROYD,2020-02-15T06:59:28Z +59,DUSTIN,TAUTOU,2020-02-15T06:59:28Z +60,HENRY,BERRY,2020-02-15T06:59:28Z +61,CHRISTIAN,NEESON,2020-02-15T06:59:28Z +62,JAYNE,NEESON,2020-02-15T06:59:28Z +63,CAMERON,WRAY,2020-02-15T06:59:28Z +64,RAY,JOHANSSON,2020-02-15T06:59:28Z +65,ANGELA,HUDSON,2020-02-15T06:59:28Z +66,MARY,TANDY,2020-02-15T06:59:28Z +67,JESSICA,BAILEY,2020-02-15T06:59:28Z +68,RIP,WINSLET,2020-02-15T06:59:28Z +69,KENNETH,PALTROW,2020-02-15T06:59:28Z +70,MICHELLE,MCCONAUGHEY,2020-02-15T06:59:28Z +71,ADAM,GRANT,2020-02-15T06:59:28Z +72,SEAN,WILLIAMS,2020-02-15T06:59:28Z +73,GARY,PENN,2020-02-15T06:59:28Z +74,MILLA,KEITEL,2020-02-15T06:59:28Z +75,BURT,POSEY,2020-02-15T06:59:28Z +76,ANGELINA,ASTAIRE,2020-02-15T06:59:28Z +77,CARY,MCCONAUGHEY,2020-02-15T06:59:28Z +78,GROUCHO,SINATRA,2020-02-15T06:59:28Z +79,MAE,HOFFMAN,2020-02-15T06:59:28Z +80,RALPH,CRUZ,2020-02-15T06:59:28Z +81,SCARLETT,DAMON,2020-02-15T06:59:28Z +82,WOODY,JOLIE,2020-02-15T06:59:28Z +83,BEN,WILLIS,2020-02-15T06:59:28Z +84,JAMES,PITT,2020-02-15T06:59:28Z +85,MINNIE,ZELLWEGER,2020-02-15T06:59:28Z +86,GREG,CHAPLIN,2020-02-15T06:59:28Z +87,SPENCER,PECK,2020-02-15T06:59:28Z +88,KENNETH,PESCI,2020-02-15T06:59:28Z +89,CHARLIZE,DENCH,2020-02-15T06:59:28Z +90,SEAN,GUINESS,2020-02-15T06:59:28Z +91,CHRISTOPHER,BERRY,2020-02-15T06:59:28Z +92,KIRSTEN,AKROYD,2020-02-15T06:59:28Z +93,ELLEN,PRESLEY,2020-02-15T06:59:28Z +94,KENNETH,TORN,2020-02-15T06:59:28Z +95,DARYL,WAHLBERG,2020-02-15T06:59:28Z +96,GENE,WILLIS,2020-02-15T06:59:28Z +97,MEG,HAWKE,2020-02-15T06:59:28Z +98,CHRIS,BRIDGES,2020-02-15T06:59:28Z +99,JIM,MOSTEL,2020-02-15T06:59:28Z +100,SPENCER,DEPP,2020-02-15T06:59:28Z +101,SUSAN,DAVIS,2020-02-15T06:59:28Z +102,WALTER,TORN,2020-02-15T06:59:28Z +103,MATTHEW,LEIGH,2020-02-15T06:59:28Z +104,PENELOPE,CRONYN,2020-02-15T06:59:28Z +105,SIDNEY,CROWE,2020-02-15T06:59:28Z +106,GROUCHO,DUNST,2020-02-15T06:59:28Z +107,GINA,DEGENERES,2020-02-15T06:59:28Z +108,WARREN,NOLTE,2020-02-15T06:59:28Z +109,SYLVESTER,DERN,2020-02-15T06:59:28Z +110,SUSAN,DAVIS,2020-02-15T06:59:28Z +111,CAMERON,ZELLWEGER,2020-02-15T06:59:28Z +112,RUSSELL,BACALL,2020-02-15T06:59:28Z +113,MORGAN,HOPKINS,2020-02-15T06:59:28Z +114,MORGAN,MCDORMAND,2020-02-15T06:59:28Z +115,HARRISON,BALE,2020-02-15T06:59:28Z +116,DAN,STREEP,2020-02-15T06:59:28Z +117,RENEE,TRACY,2020-02-15T06:59:28Z +118,CUBA,ALLEN,2020-02-15T06:59:28Z +119,WARREN,JACKMAN,2020-02-15T06:59:28Z +120,PENELOPE,MONROE,2020-02-15T06:59:28Z +121,LIZA,BERGMAN,2020-02-15T06:59:28Z +122,SALMA,NOLTE,2020-02-15T06:59:28Z +123,JULIANNE,DENCH,2020-02-15T06:59:28Z +124,SCARLETT,BENING,2020-02-15T06:59:28Z +125,ALBERT,NOLTE,2020-02-15T06:59:28Z +126,FRANCES,TOMEI,2020-02-15T06:59:28Z +127,KEVIN,GARLAND,2020-02-15T06:59:28Z +128,CATE,MCQUEEN,2020-02-15T06:59:28Z +129,DARYL,CRAWFORD,2020-02-15T06:59:28Z +130,GRETA,KEITEL,2020-02-15T06:59:28Z +131,JANE,JACKMAN,2020-02-15T06:59:28Z +132,ADAM,HOPPER,2020-02-15T06:59:28Z +133,RICHARD,PENN,2020-02-15T06:59:28Z +134,GENE,HOPKINS,2020-02-15T06:59:28Z +135,RITA,REYNOLDS,2020-02-15T06:59:28Z +136,ED,MANSFIELD,2020-02-15T06:59:28Z +137,MORGAN,WILLIAMS,2020-02-15T06:59:28Z +138,LUCILLE,DEE,2020-02-15T06:59:28Z +139,EWAN,GOODING,2020-02-15T06:59:28Z +140,WHOOPI,HURT,2020-02-15T06:59:28Z +141,CATE,HARRIS,2020-02-15T06:59:28Z +142,JADA,RYDER,2020-02-15T06:59:28Z +143,RIVER,DEAN,2020-02-15T06:59:28Z +144,ANGELA,WITHERSPOON,2020-02-15T06:59:28Z +145,KIM,ALLEN,2020-02-15T06:59:28Z +146,ALBERT,JOHANSSON,2020-02-15T06:59:28Z +147,FAY,WINSLET,2020-02-15T06:59:28Z +148,EMILY,DEE,2020-02-15T06:59:28Z +149,RUSSELL,TEMPLE,2020-02-15T06:59:28Z +150,JAYNE,NOLTE,2020-02-15T06:59:28Z +151,GEOFFREY,HESTON,2020-02-15T06:59:28Z +152,BEN,HARRIS,2020-02-15T06:59:28Z +153,MINNIE,KILMER,2020-02-15T06:59:28Z +154,MERYL,GIBSON,2020-02-15T06:59:28Z +155,IAN,TANDY,2020-02-15T06:59:28Z +156,FAY,WOOD,2020-02-15T06:59:28Z +157,GRETA,MALDEN,2020-02-15T06:59:28Z +158,VIVIEN,BASINGER,2020-02-15T06:59:28Z +159,LAURA,BRODY,2020-02-15T06:59:28Z +160,CHRIS,DEPP,2020-02-15T06:59:28Z +161,HARVEY,HOPE,2020-02-15T06:59:28Z +162,OPRAH,KILMER,2020-02-15T06:59:28Z +163,CHRISTOPHER,WEST,2020-02-15T06:59:28Z +164,HUMPHREY,WILLIS,2020-02-15T06:59:28Z +165,AL,GARLAND,2020-02-15T06:59:28Z +166,NICK,DEGENERES,2020-02-15T06:59:28Z +167,LAURENCE,BULLOCK,2020-02-15T06:59:28Z +168,WILL,WILSON,2020-02-15T06:59:28Z +169,KENNETH,HOFFMAN,2020-02-15T06:59:28Z +170,MENA,HOPPER,2020-02-15T06:59:28Z +171,OLYMPIA,PFEIFFER,2020-02-15T06:59:28Z +172,GROUCHO,WILLIAMS,2020-02-15T06:59:28Z +173,ALAN,DREYFUSS,2020-02-15T06:59:28Z +174,MICHAEL,BENING,2020-02-15T06:59:28Z +175,WILLIAM,HACKMAN,2020-02-15T06:59:28Z +176,JON,CHASE,2020-02-15T06:59:28Z +177,GENE,MCKELLEN,2020-02-15T06:59:28Z +178,LISA,MONROE,2020-02-15T06:59:28Z +179,ED,GUINESS,2020-02-15T06:59:28Z +180,JEFF,SILVERSTONE,2020-02-15T06:59:28Z +181,MATTHEW,CARREY,2020-02-15T06:59:28Z +182,DEBBIE,AKROYD,2020-02-15T06:59:28Z +183,RUSSELL,CLOSE,2020-02-15T06:59:28Z +184,HUMPHREY,GARLAND,2020-02-15T06:59:28Z +185,MICHAEL,BOLGER,2020-02-15T06:59:28Z +186,JULIA,ZELLWEGER,2020-02-15T06:59:28Z +187,RENEE,BALL,2020-02-15T06:59:28Z +188,ROCK,DUKAKIS,2020-02-15T06:59:28Z +189,CUBA,BIRCH,2020-02-15T06:59:28Z +190,AUDREY,BAILEY,2020-02-15T06:59:28Z +191,GREGORY,GOODING,2020-02-15T06:59:28Z +192,JOHN,SUVARI,2020-02-15T06:59:28Z +193,BURT,TEMPLE,2020-02-15T06:59:28Z +194,MERYL,ALLEN,2020-02-15T06:59:28Z +195,JAYNE,SILVERSTONE,2020-02-15T06:59:28Z +196,BELA,WALKEN,2020-02-15T06:59:28Z +197,REESE,WEST,2020-02-15T06:59:28Z +198,MARY,KEITEL,2020-02-15T06:59:28Z +199,JULIA,FAWCETT,2020-02-15T06:59:28Z +200,THORA,TEMPLE,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/address.csv b/drivers/csv/testdata/sakila-csv-noheader/address.csv new file mode 100644 index 00000000..c33c641e --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/address.csv @@ -0,0 +1,603 @@ +1,47 MySakila Drive,," ",300,," ",2020-02-15T06:59:28Z +2,28 MySQL Boulevard,," ",576,," ",2020-02-15T06:59:28Z +3,23 Workhaven Lane,," ",300,," ",2020-02-15T06:59:28Z +4,1411 Lillydale Drive,," ",576,," ",2020-02-15T06:59:28Z +5,1913 Hanoi Way,," ",463,35200," ",2020-02-15T06:59:28Z +6,1121 Loja Avenue,," ",449,17886," ",2020-02-15T06:59:28Z +7,692 Joliet Street,," ",38,83579," ",2020-02-15T06:59:28Z +8,1566 Inegl Manor,," ",349,53561," ",2020-02-15T06:59:28Z +9,53 Idfu Parkway,," ",361,42399," ",2020-02-15T06:59:28Z +10,1795 Santiago de Compostela Way,," ",295,18743," ",2020-02-15T06:59:28Z +11,900 Santiago de Compostela Parkway,," ",280,93896," ",2020-02-15T06:59:28Z +12,478 Joliet Way,," ",200,77948," ",2020-02-15T06:59:28Z +13,613 Korolev Drive,," ",329,45844," ",2020-02-15T06:59:28Z +14,1531 Sal Drive,," ",162,53628," ",2020-02-15T06:59:28Z +15,1542 Tarlac Parkway,," ",440,1027," ",2020-02-15T06:59:28Z +16,808 Bhopal Manor,," ",582,10672," ",2020-02-15T06:59:28Z +17,270 Amroha Parkway,," ",384,29610," ",2020-02-15T06:59:28Z +18,770 Bydgoszcz Avenue,," ",120,16266," ",2020-02-15T06:59:28Z +19,419 Iligan Lane,," ",76,72878," ",2020-02-15T06:59:28Z +20,360 Toulouse Parkway,," ",495,54308," ",2020-02-15T06:59:28Z +21,270 Toulon Boulevard,," ",156,81766," ",2020-02-15T06:59:28Z +22,320 Brest Avenue,," ",252,43331," ",2020-02-15T06:59:28Z +23,1417 Lancaster Avenue,," ",267,72192," ",2020-02-15T06:59:28Z +24,1688 Okara Way,," ",327,21954," ",2020-02-15T06:59:28Z +25,262 A Corua (La Corua) Parkway,," ",525,34418," ",2020-02-15T06:59:28Z +26,28 Charlotte Amalie Street,," ",443,37551," ",2020-02-15T06:59:28Z +27,1780 Hino Boulevard,," ",303,7716," ",2020-02-15T06:59:28Z +28,96 Tafuna Way,," ",128,99865," ",2020-02-15T06:59:28Z +29,934 San Felipe de Puerto Plata Street,," ",472,99780," ",2020-02-15T06:59:28Z +30,18 Duisburg Boulevard,," ",121,58327," ",2020-02-15T06:59:28Z +31,217 Botshabelo Place,," ",138,49521," ",2020-02-15T06:59:28Z +32,1425 Shikarpur Manor,," ",346,65599," ",2020-02-15T06:59:28Z +33,786 Aurora Avenue,," ",474,65750," ",2020-02-15T06:59:28Z +34,1668 Anpolis Street,," ",316,50199," ",2020-02-15T06:59:28Z +35,33 Gorontalo Way,," ",257,30348," ",2020-02-15T06:59:28Z +36,176 Mandaluyong Place,," ",239,65213," ",2020-02-15T06:59:28Z +37,127 Purnea (Purnia) Manor,," ",17,79388," ",2020-02-15T06:59:28Z +38,61 Tama Street,," ",284,94065," ",2020-02-15T06:59:28Z +39,391 Callao Drive,," ",544,34021," ",2020-02-15T06:59:28Z +40,334 Munger (Monghyr) Lane,," ",31,38145," ",2020-02-15T06:59:28Z +41,1440 Fukuyama Loop,," ",362,47929," ",2020-02-15T06:59:28Z +42,269 Cam Ranh Parkway,," ",115,34689," ",2020-02-15T06:59:28Z +43,306 Antofagasta Place,," ",569,3989," ",2020-02-15T06:59:28Z +44,671 Graz Street,," ",353,94399," ",2020-02-15T06:59:28Z +45,42 Brindisi Place,," ",586,16744," ",2020-02-15T06:59:28Z +46,1632 Bislig Avenue,," ",394,61117," ",2020-02-15T06:59:28Z +47,1447 Imus Way,," ",167,48942," ",2020-02-15T06:59:28Z +48,1998 Halifax Drive,," ",308,76022," ",2020-02-15T06:59:28Z +49,1718 Valencia Street,," ",27,37359," ",2020-02-15T06:59:28Z +50,46 Pjatigorsk Lane,," ",343,23616," ",2020-02-15T06:59:28Z +51,686 Garland Manor,," ",247,52535," ",2020-02-15T06:59:28Z +52,909 Garland Manor,," ",367,69367," ",2020-02-15T06:59:28Z +53,725 Isesaki Place,," ",237,74428," ",2020-02-15T06:59:28Z +54,115 Hidalgo Parkway,," ",379,80168," ",2020-02-15T06:59:28Z +55,1135 Izumisano Parkway,," ",171,48150," ",2020-02-15T06:59:28Z +56,939 Probolinggo Loop,," ",1,4166," ",2020-02-15T06:59:28Z +57,17 Kabul Boulevard,," ",355,38594," ",2020-02-15T06:59:28Z +58,1964 Allappuzha (Alleppey) Street,," ",227,48980," ",2020-02-15T06:59:28Z +59,1697 Kowloon and New Kowloon Loop,," ",49,57807," ",2020-02-15T06:59:28Z +60,1668 Saint Louis Place,," ",397,39072," ",2020-02-15T06:59:28Z +61,943 Tokat Street,," ",560,45428," ",2020-02-15T06:59:28Z +62,1114 Liepaja Street,," ",282,69226," ",2020-02-15T06:59:28Z +63,1213 Ranchi Parkway,," ",350,94352," ",2020-02-15T06:59:28Z +64,81 Hodeida Way,," ",231,55561," ",2020-02-15T06:59:28Z +65,915 Ponce Place,," ",56,83980," ",2020-02-15T06:59:28Z +66,1717 Guadalajara Lane,," ",441,85505," ",2020-02-15T06:59:28Z +67,1214 Hanoi Way,," ",306,67055," ",2020-02-15T06:59:28Z +68,1966 Amroha Avenue,," ",139,70385," ",2020-02-15T06:59:28Z +69,698 Otsu Street,," ",105,71110," ",2020-02-15T06:59:28Z +70,1150 Kimchon Manor,," ",321,96109," ",2020-02-15T06:59:28Z +71,1586 Guaruj Place,," ",579,5135," ",2020-02-15T06:59:28Z +72,57 Arlington Manor,," ",475,48960," ",2020-02-15T06:59:28Z +73,1031 Daugavpils Parkway,," ",63,59025," ",2020-02-15T06:59:28Z +74,1124 Buenaventura Drive,," ",13,6856," ",2020-02-15T06:59:28Z +75,492 Cam Ranh Street,," ",61,50805," ",2020-02-15T06:59:28Z +76,89 Allappuzha (Alleppey) Manor,," ",517,75444," ",2020-02-15T06:59:28Z +77,1947 Poos de Caldas Boulevard,," ",114,60951," ",2020-02-15T06:59:28Z +78,1206 Dos Quebradas Place,," ",431,20207," ",2020-02-15T06:59:28Z +79,1551 Rampur Lane,," ",108,72394," ",2020-02-15T06:59:28Z +80,602 Paarl Street,," ",402,98889," ",2020-02-15T06:59:28Z +81,1692 Ede Loop,," ",30,9223," ",2020-02-15T06:59:28Z +82,936 Salzburg Lane,," ",425,96709," ",2020-02-15T06:59:28Z +83,586 Tete Way,," ",256,1079," ",2020-02-15T06:59:28Z +84,1888 Kabul Drive,," ",217,20936," ",2020-02-15T06:59:28Z +85,320 Baiyin Parkway,," ",319,37307," ",2020-02-15T06:59:28Z +86,927 Baha Blanca Parkway,," ",479,9495," ",2020-02-15T06:59:28Z +87,929 Tallahassee Loop,," ",497,74671," ",2020-02-15T06:59:28Z +88,125 Citt del Vaticano Boulevard,," ",40,67912," ",2020-02-15T06:59:28Z +89,1557 Ktahya Boulevard,," ",88,88002," ",2020-02-15T06:59:28Z +90,870 Ashqelon Loop,," ",489,84931," ",2020-02-15T06:59:28Z +91,1740 Portoviejo Avenue,," ",480,29932," ",2020-02-15T06:59:28Z +92,1942 Ciparay Parkway,," ",113,82624," ",2020-02-15T06:59:28Z +93,1926 El Alto Avenue,," ",289,75543," ",2020-02-15T06:59:28Z +94,1952 Chatsworth Drive,," ",332,25958," ",2020-02-15T06:59:28Z +95,1370 Le Mans Avenue,," ",53,52163," ",2020-02-15T06:59:28Z +96,984 Effon-Alaiye Avenue,," ",183,17119," ",2020-02-15T06:59:28Z +97,832 Nakhon Sawan Manor,," ",592,49021," ",2020-02-15T06:59:28Z +98,152 Kitwe Parkway,," ",82,53182," ",2020-02-15T06:59:28Z +99,1697 Tanauan Lane,," ",399,22870," ",2020-02-15T06:59:28Z +100,1308 Arecibo Way,," ",41,30695," ",2020-02-15T06:59:28Z +101,1599 Plock Drive,," ",534,71986," ",2020-02-15T06:59:28Z +102,669 Firozabad Loop,," ",12,92265," ",2020-02-15T06:59:28Z +103,588 Vila Velha Manor,," ",268,51540," ",2020-02-15T06:59:28Z +104,1913 Kamakura Place,," ",238,97287," ",2020-02-15T06:59:28Z +105,733 Mandaluyong Place,," ",2,77459," ",2020-02-15T06:59:28Z +106,659 Vaduz Drive,," ",34,49708," ",2020-02-15T06:59:28Z +107,1177 Jelets Way,," ",220,3305," ",2020-02-15T06:59:28Z +108,1386 Yangor Avenue,," ",543,80720," ",2020-02-15T06:59:28Z +109,454 Nakhon Sawan Boulevard,," ",173,76383," ",2020-02-15T06:59:28Z +110,1867 San Juan Bautista Tuxtepec Avenue,," ",225,78311," ",2020-02-15T06:59:28Z +111,1532 Dzerzinsk Way,," ",334,9599," ",2020-02-15T06:59:28Z +112,1002 Ahmadnagar Manor,," ",213,93026," ",2020-02-15T06:59:28Z +113,682 Junan Way,," ",273,30418," ",2020-02-15T06:59:28Z +114,804 Elista Drive,," ",159,61069," ",2020-02-15T06:59:28Z +115,1378 Alvorada Avenue,," ",102,75834," ",2020-02-15T06:59:28Z +116,793 Cam Ranh Avenue,," ",292,87057," ",2020-02-15T06:59:28Z +117,1079 Tel Aviv-Jaffa Boulevard,," ",132,10885," ",2020-02-15T06:59:28Z +118,442 Rae Bareli Place,," ",148,24321," ",2020-02-15T06:59:28Z +119,1107 Nakhon Sawan Avenue,," ",365,75149," ",2020-02-15T06:59:28Z +120,544 Malm Parkway,," ",403,63502," ",2020-02-15T06:59:28Z +121,1967 Sincelejo Place,," ",176,73644," ",2020-02-15T06:59:28Z +122,333 Goinia Way,," ",185,78625," ",2020-02-15T06:59:28Z +123,1987 Coacalco de Berriozbal Loop,," ",476,96065," ",2020-02-15T06:59:28Z +124,241 Mosul Lane,," ",147,76157," ",2020-02-15T06:59:28Z +125,211 Chiayi Drive,," ",164,58186," ",2020-02-15T06:59:28Z +126,1175 Tanauan Way,," ",305,64615," ",2020-02-15T06:59:28Z +127,117 Boa Vista Way,," ",566,6804," ",2020-02-15T06:59:28Z +128,848 Tafuna Manor,," ",281,45142," ",2020-02-15T06:59:28Z +129,569 Baicheng Lane,," ",85,60304," ",2020-02-15T06:59:28Z +130,1666 Qomsheh Drive,," ",410,66255," ",2020-02-15T06:59:28Z +131,801 Hagonoy Drive,," ",484,8439," ",2020-02-15T06:59:28Z +132,1050 Garden Grove Avenue,," ",236,4999," ",2020-02-15T06:59:28Z +133,1854 Tieli Street,," ",302,15819," ",2020-02-15T06:59:28Z +134,758 Junan Lane,," ",190,82639," ",2020-02-15T06:59:28Z +135,1752 So Leopoldo Parkway,," ",345,14014," ",2020-02-15T06:59:28Z +136,898 Belm Manor,," ",87,49757," ",2020-02-15T06:59:28Z +137,261 Saint Louis Way,," ",541,83401," ",2020-02-15T06:59:28Z +138,765 Southampton Drive,," ",421,4285," ",2020-02-15T06:59:28Z +139,943 Johannesburg Avenue,," ",417,5892," ",2020-02-15T06:59:28Z +140,788 Atinsk Street,," ",211,81691," ",2020-02-15T06:59:28Z +141,1749 Daxian Place,," ",29,11044," ",2020-02-15T06:59:28Z +142,1587 Sullana Lane,," ",207,85769," ",2020-02-15T06:59:28Z +143,1029 Dzerzinsk Manor,," ",542,57519," ",2020-02-15T06:59:28Z +144,1666 Beni-Mellal Place,," ",123,13377," ",2020-02-15T06:59:28Z +145,928 Jaffna Loop,," ",172,93762," ",2020-02-15T06:59:28Z +146,483 Ljubertsy Parkway,," ",149,60562," ",2020-02-15T06:59:28Z +147,374 Bat Yam Boulevard,," ",266,97700," ",2020-02-15T06:59:28Z +148,1027 Songkhla Manor,," ",340,30861," ",2020-02-15T06:59:28Z +149,999 Sanaa Loop,," ",491,3439," ",2020-02-15T06:59:28Z +150,879 Newcastle Way,," ",499,90732," ",2020-02-15T06:59:28Z +151,1337 Lincoln Parkway,," ",555,99457," ",2020-02-15T06:59:28Z +152,1952 Pune Lane,," ",442,92150," ",2020-02-15T06:59:28Z +153,782 Mosul Street,," ",94,25545," ",2020-02-15T06:59:28Z +154,781 Shimonoseki Drive,," ",202,95444," ",2020-02-15T06:59:28Z +155,1560 Jelets Boulevard,," ",291,77777," ",2020-02-15T06:59:28Z +156,1963 Moscow Place,," ",354,64863," ",2020-02-15T06:59:28Z +157,456 Escobar Way,," ",232,36061," ",2020-02-15T06:59:28Z +158,798 Cianjur Avenue,," ",590,76990," ",2020-02-15T06:59:28Z +159,185 Novi Sad Place,," ",72,41778," ",2020-02-15T06:59:28Z +160,1367 Yantai Manor,," ",381,21294," ",2020-02-15T06:59:28Z +161,1386 Nakhon Sawan Boulevard,," ",420,53502," ",2020-02-15T06:59:28Z +162,369 Papeete Way,," ",187,66639," ",2020-02-15T06:59:28Z +163,1440 Compton Place,," ",307,81037," ",2020-02-15T06:59:28Z +164,1623 Baha Blanca Manor,," ",310,81511," ",2020-02-15T06:59:28Z +165,97 Shimoga Avenue,," ",533,44660," ",2020-02-15T06:59:28Z +166,1740 Le Mans Loop,," ",297,22853," ",2020-02-15T06:59:28Z +167,1287 Xiangfan Boulevard,," ",253,57844," ",2020-02-15T06:59:28Z +168,842 Salzburg Lane,," ",529,3313," ",2020-02-15T06:59:28Z +169,154 Tallahassee Loop,," ",199,62250," ",2020-02-15T06:59:28Z +170,710 San Felipe del Progreso Avenue,," ",304,76901," ",2020-02-15T06:59:28Z +171,1540 Wroclaw Drive,," ",107,62686," ",2020-02-15T06:59:28Z +172,475 Atinsk Way,," ",240,59571," ",2020-02-15T06:59:28Z +173,1294 Firozabad Drive,," ",407,70618," ",2020-02-15T06:59:28Z +174,1877 Ezhou Lane,," ",550,63337," ",2020-02-15T06:59:28Z +175,316 Uruapan Street,," ",223,58194," ",2020-02-15T06:59:28Z +176,29 Pyongyang Loop,," ",58,47753," ",2020-02-15T06:59:28Z +177,1010 Klerksdorp Way,," ",186,6802," ",2020-02-15T06:59:28Z +178,1848 Salala Boulevard,," ",373,25220," ",2020-02-15T06:59:28Z +179,431 Xiangtan Avenue,," ",18,4854," ",2020-02-15T06:59:28Z +180,757 Rustenburg Avenue,," ",483,89668," ",2020-02-15T06:59:28Z +181,146 Johannesburg Way,," ",330,54132," ",2020-02-15T06:59:28Z +182,1891 Rizhao Boulevard,," ",456,47288," ",2020-02-15T06:59:28Z +183,1089 Iwatsuki Avenue,," ",270,35109," ",2020-02-15T06:59:28Z +184,1410 Benin City Parkway,," ",405,29747," ",2020-02-15T06:59:28Z +185,682 Garden Grove Place,," ",333,67497," ",2020-02-15T06:59:28Z +186,533 al-Ayn Boulevard,," ",126,8862," ",2020-02-15T06:59:28Z +187,1839 Szkesfehrvr Parkway,," ",317,55709," ",2020-02-15T06:59:28Z +188,741 Ambattur Manor,," ",438,43310," ",2020-02-15T06:59:28Z +189,927 Barcelona Street,," ",467,65121," ",2020-02-15T06:59:28Z +190,435 0 Way,," ",195,74750," ",2020-02-15T06:59:28Z +191,140 Chiayi Parkway,," ",506,38982," ",2020-02-15T06:59:28Z +192,1166 Changhwa Street,," ",62,58852," ",2020-02-15T06:59:28Z +193,891 Novi Sad Manor,," ",383,5379," ",2020-02-15T06:59:28Z +194,605 Rio Claro Parkway,," ",513,49348," ",2020-02-15T06:59:28Z +195,1077 San Felipe de Puerto Plata Place,," ",369,65387," ",2020-02-15T06:59:28Z +196,9 San Miguel de Tucumn Manor,," ",169,90845," ",2020-02-15T06:59:28Z +197,447 Surakarta Loop,," ",271,10428," ",2020-02-15T06:59:28Z +198,345 Oshawa Boulevard,," ",204,32114," ",2020-02-15T06:59:28Z +199,1792 Valle de la Pascua Place,," ",477,15540," ",2020-02-15T06:59:28Z +200,1074 Binzhou Manor,," ",325,36490," ",2020-02-15T06:59:28Z +201,817 Bradford Loop,," ",109,89459," ",2020-02-15T06:59:28Z +202,955 Bamenda Way,," ",218,1545," ",2020-02-15T06:59:28Z +203,1149 A Corua (La Corua) Boulevard,," ",194,95824," ",2020-02-15T06:59:28Z +204,387 Mwene-Ditu Drive,," ",35,8073," ",2020-02-15T06:59:28Z +205,68 Molodetno Manor,," ",575,4662," ",2020-02-15T06:59:28Z +206,642 Nador Drive,," ",77,3924," ",2020-02-15T06:59:28Z +207,1688 Nador Lane,," ",184,61613," ",2020-02-15T06:59:28Z +208,1215 Pyongyang Parkway,," ",557,25238," ",2020-02-15T06:59:28Z +209,1679 Antofagasta Street,," ",122,86599," ",2020-02-15T06:59:28Z +210,1304 s-Hertogenbosch Way,," ",83,10925," ",2020-02-15T06:59:28Z +211,850 Salala Loop,," ",371,10800," ",2020-02-15T06:59:28Z +212,624 Oshawa Boulevard,," ",51,89959," ",2020-02-15T06:59:28Z +213,43 Dadu Avenue,," ",74,4855," ",2020-02-15T06:59:28Z +214,751 Lima Loop,," ",7,99405," ",2020-02-15T06:59:28Z +215,1333 Haldia Street,," ",174,82161," ",2020-02-15T06:59:28Z +216,660 Jedda Boulevard,," ",65,25053," ",2020-02-15T06:59:28Z +217,1001 Miyakonojo Lane,," ",518,67924," ",2020-02-15T06:59:28Z +218,226 Brest Manor,," ",508,2299," ",2020-02-15T06:59:28Z +219,1229 Valencia Parkway,," ",498,99124," ",2020-02-15T06:59:28Z +220,1201 Qomsheh Manor,," ",28,21464," ",2020-02-15T06:59:28Z +221,866 Shivapuri Manor,," ",448,22474," ",2020-02-15T06:59:28Z +222,1168 Najafabad Parkway,," ",251,40301," ",2020-02-15T06:59:28Z +223,1244 Allappuzha (Alleppey) Place,," ",567,20657," ",2020-02-15T06:59:28Z +224,1842 Luzinia Boulevard,," ",593,94420," ",2020-02-15T06:59:28Z +225,1926 Gingoog Street,," ",511,22824," ",2020-02-15T06:59:28Z +226,810 Palghat (Palakkad) Boulevard,," ",235,73431," ",2020-02-15T06:59:28Z +227,1820 Maring Parkway,," ",324,88307," ",2020-02-15T06:59:28Z +228,60 Poos de Caldas Street,," ",243,82338," ",2020-02-15T06:59:28Z +229,1014 Loja Manor,," ",22,66851," ",2020-02-15T06:59:28Z +230,201 Effon-Alaiye Way,," ",37,64344," ",2020-02-15T06:59:28Z +231,430 Alessandria Loop,," ",439,47446," ",2020-02-15T06:59:28Z +232,754 Valencia Place,," ",406,87911," ",2020-02-15T06:59:28Z +233,356 Olomouc Manor,," ",26,93323," ",2020-02-15T06:59:28Z +234,1256 Bislig Boulevard,," ",86,50598," ",2020-02-15T06:59:28Z +235,954 Kimchon Place,," ",559,42420," ",2020-02-15T06:59:28Z +236,885 Yingkou Manor,," ",596,31390," ",2020-02-15T06:59:28Z +237,1736 Cavite Place,," ",216,98775," ",2020-02-15T06:59:28Z +238,346 Skikda Parkway,," ",233,90628," ",2020-02-15T06:59:28Z +239,98 Stara Zagora Boulevard,," ",96,76448," ",2020-02-15T06:59:28Z +240,1479 Rustenburg Boulevard,," ",527,18727," ",2020-02-15T06:59:28Z +241,647 A Corua (La Corua) Street,," ",357,36971," ",2020-02-15T06:59:28Z +242,1964 Gijn Manor,," ",473,14408," ",2020-02-15T06:59:28Z +243,47 Syktyvkar Lane,," ",118,22236," ",2020-02-15T06:59:28Z +244,1148 Saarbrcken Parkway,," ",226,1921," ",2020-02-15T06:59:28Z +245,1103 Bilbays Parkway,," ",578,87660," ",2020-02-15T06:59:28Z +246,1246 Boksburg Parkway,," ",422,28349," ",2020-02-15T06:59:28Z +247,1483 Pathankot Street,," ",454,37288," ",2020-02-15T06:59:28Z +248,582 Papeete Loop,," ",294,27722," ",2020-02-15T06:59:28Z +249,300 Junan Street,," ",553,81314," ",2020-02-15T06:59:28Z +250,829 Grand Prairie Way,," ",328,6461," ",2020-02-15T06:59:28Z +251,1473 Changhwa Parkway,," ",124,75933," ",2020-02-15T06:59:28Z +252,1309 Weifang Street,," ",520,57338," ",2020-02-15T06:59:28Z +253,1760 Oshawa Manor,," ",535,38140," ",2020-02-15T06:59:28Z +254,786 Stara Zagora Way,," ",390,98332," ",2020-02-15T06:59:28Z +255,1966 Tonghae Street,," ",198,36481," ",2020-02-15T06:59:28Z +256,1497 Yuzhou Drive,," ",312,3433," ",2020-02-15T06:59:28Z +258,752 Ondo Loop,," ",338,32474," ",2020-02-15T06:59:28Z +259,1338 Zalantun Lane,," ",413,45403," ",2020-02-15T06:59:28Z +260,127 Iwakuni Boulevard,," ",192,20777," ",2020-02-15T06:59:28Z +261,51 Laredo Avenue,," ",342,68146," ",2020-02-15T06:59:28Z +262,771 Yaound Manor,," ",64,86768," ",2020-02-15T06:59:28Z +263,532 Toulon Street,," ",460,69517," ",2020-02-15T06:59:28Z +264,1027 Banjul Place,," ",197,50390," ",2020-02-15T06:59:28Z +265,1158 Mandi Bahauddin Parkway,," ",136,98484," ",2020-02-15T06:59:28Z +266,862 Xintai Lane,," ",548,30065," ",2020-02-15T06:59:28Z +267,816 Cayenne Parkway,," ",414,93629," ",2020-02-15T06:59:28Z +268,1831 Nam Dinh Loop,," ",323,51990," ",2020-02-15T06:59:28Z +269,446 Kirovo-Tepetsk Lane,," ",203,19428," ",2020-02-15T06:59:28Z +270,682 Halisahar Place,," ",378,20536," ",2020-02-15T06:59:28Z +271,1587 Loja Manor,," ",447,5410," ",2020-02-15T06:59:28Z +272,1762 Paarl Parkway,," ",298,53928," ",2020-02-15T06:59:28Z +273,1519 Ilorin Place,," ",395,49298," ",2020-02-15T06:59:28Z +274,920 Kumbakonam Loop,," ",446,75090," ",2020-02-15T06:59:28Z +275,906 Goinia Way,," ",255,83565," ",2020-02-15T06:59:28Z +276,1675 Xiangfan Manor,," ",283,11763," ",2020-02-15T06:59:28Z +277,85 San Felipe de Puerto Plata Drive,," ",584,46063," ",2020-02-15T06:59:28Z +278,144 South Hill Loop,," ",445,2012," ",2020-02-15T06:59:28Z +279,1884 Shikarpur Avenue,," ",263,85548," ",2020-02-15T06:59:28Z +280,1980 Kamjanets-Podilskyi Street,," ",404,89502," ",2020-02-15T06:59:28Z +281,1944 Bamenda Way,," ",573,24645," ",2020-02-15T06:59:28Z +282,556 Baybay Manor,," ",374,55802," ",2020-02-15T06:59:28Z +283,457 Tongliao Loop,," ",222,56254," ",2020-02-15T06:59:28Z +284,600 Bradford Street,," ",514,96204," ",2020-02-15T06:59:28Z +285,1006 Santa Brbara dOeste Manor,," ",389,36229," ",2020-02-15T06:59:28Z +286,1308 Sumy Loop,," ",175,30657," ",2020-02-15T06:59:28Z +287,1405 Chisinau Place,," ",411,8160," ",2020-02-15T06:59:28Z +288,226 Halifax Street,," ",277,58492," ",2020-02-15T06:59:28Z +289,1279 Udine Parkway,," ",69,75860," ",2020-02-15T06:59:28Z +290,1336 Benin City Drive,," ",386,46044," ",2020-02-15T06:59:28Z +291,1155 Liaocheng Place,," ",152,22650," ",2020-02-15T06:59:28Z +292,1993 Tabuk Lane,," ",522,64221," ",2020-02-15T06:59:28Z +293,86 Higashiosaka Lane,," ",563,33768," ",2020-02-15T06:59:28Z +294,1912 Allende Manor,," ",279,58124," ",2020-02-15T06:59:28Z +295,544 Tarsus Boulevard,," ",562,53145," ",2020-02-15T06:59:28Z +296,1936 Cuman Avenue,," ",433,61195," ",2020-02-15T06:59:28Z +297,1192 Tongliao Street,," ",470,19065," ",2020-02-15T06:59:28Z +298,44 Najafabad Way,," ",146,61391," ",2020-02-15T06:59:28Z +299,32 Pudukkottai Lane,," ",140,38834," ",2020-02-15T06:59:28Z +300,661 Chisinau Lane,," ",274,8856," ",2020-02-15T06:59:28Z +301,951 Stara Zagora Manor,," ",400,98573," ",2020-02-15T06:59:28Z +302,922 Vila Velha Loop,," ",9,4085," ",2020-02-15T06:59:28Z +303,898 Jining Lane,," ",387,40070," ",2020-02-15T06:59:28Z +304,1635 Kuwana Boulevard,," ",205,52137," ",2020-02-15T06:59:28Z +305,41 El Alto Parkway,," ",398,56883," ",2020-02-15T06:59:28Z +306,1883 Maikop Lane,," ",254,68469," ",2020-02-15T06:59:28Z +307,1908 Gaziantep Place,," ",536,58979," ",2020-02-15T06:59:28Z +308,687 Alessandria Parkway,," ",455,57587," ",2020-02-15T06:59:28Z +309,827 Yuncheng Drive,," ",99,79047," ",2020-02-15T06:59:28Z +310,913 Coacalco de Berriozbal Loop,," ",33,42141," ",2020-02-15T06:59:28Z +311,715 So Bernardo do Campo Lane,," ",507,84804," ",2020-02-15T06:59:28Z +312,1354 Siegen Street,," ",25,80184," ",2020-02-15T06:59:28Z +313,1191 Sungai Petani Boulevard,," ",262,9668," ",2020-02-15T06:59:28Z +314,1224 Huejutla de Reyes Boulevard,," ",91,70923," ",2020-02-15T06:59:28Z +315,543 Bergamo Avenue,," ",215,59686," ",2020-02-15T06:59:28Z +316,746 Joliet Lane,," ",286,94878," ",2020-02-15T06:59:28Z +317,780 Kimberley Way,," ",515,17032," ",2020-02-15T06:59:28Z +318,1774 Yaound Place,," ",166,91400," ",2020-02-15T06:59:28Z +319,1957 Yantai Lane,," ",490,59255," ",2020-02-15T06:59:28Z +320,1542 Lubumbashi Boulevard,," ",57,62472," ",2020-02-15T06:59:28Z +321,651 Pathankot Loop,," ",336,59811," ",2020-02-15T06:59:28Z +322,1359 Zhoushan Parkway,," ",545,29763," ",2020-02-15T06:59:28Z +323,1769 Iwaki Lane,," ",97,25787," ",2020-02-15T06:59:28Z +324,1145 Vilnius Manor,," ",451,73170," ",2020-02-15T06:59:28Z +325,1892 Nabereznyje Telny Lane,," ",516,28396," ",2020-02-15T06:59:28Z +326,470 Boksburg Street,," ",81,97960," ",2020-02-15T06:59:28Z +327,1427 A Corua (La Corua) Place,," ",45,85799," ",2020-02-15T06:59:28Z +328,479 San Felipe del Progreso Avenue,," ",130,54949," ",2020-02-15T06:59:28Z +329,867 Benin City Avenue,," ",591,78543," ",2020-02-15T06:59:28Z +330,981 Kumbakonam Place,," ",89,87611," ",2020-02-15T06:59:28Z +331,1016 Iwakuni Street,," ",269,49833," ",2020-02-15T06:59:28Z +332,663 Baha Blanca Parkway,," ",5,33463," ",2020-02-15T06:59:28Z +333,1860 Taguig Loop,," ",119,59550," ",2020-02-15T06:59:28Z +334,1816 Bydgoszcz Loop,," ",234,64308," ",2020-02-15T06:59:28Z +335,587 Benguela Manor,," ",42,91590," ",2020-02-15T06:59:28Z +336,430 Kumbakonam Drive,," ",457,28814," ",2020-02-15T06:59:28Z +337,1838 Tabriz Lane,," ",143,1195," ",2020-02-15T06:59:28Z +338,431 Szkesfehrvr Avenue,," ",48,57828," ",2020-02-15T06:59:28Z +339,503 Sogamoso Loop,," ",505,49812," ",2020-02-15T06:59:28Z +340,507 Smolensk Loop,," ",492,22971," ",2020-02-15T06:59:28Z +341,1920 Weifang Avenue,," ",427,15643," ",2020-02-15T06:59:28Z +342,124 al-Manama Way,," ",382,52368," ",2020-02-15T06:59:28Z +343,1443 Mardan Street,," ",392,31483," ",2020-02-15T06:59:28Z +344,1909 Benguela Lane,," ",581,19913," ",2020-02-15T06:59:28Z +345,68 Ponce Parkway,," ",201,85926," ",2020-02-15T06:59:28Z +346,1217 Konotop Avenue,," ",151,504," ",2020-02-15T06:59:28Z +347,1293 Nam Dinh Way,," ",84,71583," ",2020-02-15T06:59:28Z +348,785 Vaduz Street,," ",335,36170," ",2020-02-15T06:59:28Z +349,1516 Escobar Drive,," ",370,46069," ",2020-02-15T06:59:28Z +350,1628 Nagareyama Lane,," ",453,60079," ",2020-02-15T06:59:28Z +351,1157 Nyeri Loop,," ",320,56380," ",2020-02-15T06:59:28Z +352,1673 Tangail Drive,," ",137,26857," ",2020-02-15T06:59:28Z +353,381 Kabul Way,," ",209,87272," ",2020-02-15T06:59:28Z +354,953 Hodeida Street,," ",221,18841," ",2020-02-15T06:59:28Z +355,469 Nakhon Sawan Street,," ",531,58866," ",2020-02-15T06:59:28Z +356,1378 Beira Loop,," ",597,40792," ",2020-02-15T06:59:28Z +357,1641 Changhwa Place,," ",52,37636," ",2020-02-15T06:59:28Z +358,1698 Southport Loop,," ",393,49009," ",2020-02-15T06:59:28Z +359,519 Nyeri Manor,," ",461,37650," ",2020-02-15T06:59:28Z +360,619 Hunuco Avenue,," ",331,81508," ",2020-02-15T06:59:28Z +361,45 Aparecida de Goinia Place,," ",464,7431," ",2020-02-15T06:59:28Z +362,482 Kowloon and New Kowloon Manor,," ",90,97056," ",2020-02-15T06:59:28Z +363,604 Bern Place,," ",429,5373," ",2020-02-15T06:59:28Z +364,1623 Kingstown Drive,," ",20,91299," ",2020-02-15T06:59:28Z +365,1009 Zanzibar Lane,," ",32,64875," ",2020-02-15T06:59:28Z +366,114 Jalib al-Shuyukh Manor,," ",585,60440," ",2020-02-15T06:59:28Z +367,1163 London Parkway,," ",66,6066," ",2020-02-15T06:59:28Z +368,1658 Jastrzebie-Zdrj Loop,," ",372,96584," ",2020-02-15T06:59:28Z +369,817 Laredo Avenue,," ",188,77449," ",2020-02-15T06:59:28Z +370,1565 Tangail Manor,," ",377,45750," ",2020-02-15T06:59:28Z +371,1912 Emeishan Drive,," ",50,33050," ",2020-02-15T06:59:28Z +372,230 Urawa Drive,," ",8,2738," ",2020-02-15T06:59:28Z +373,1922 Miraj Way,," ",356,13203," ",2020-02-15T06:59:28Z +374,433 Florencia Street,," ",250,91330," ",2020-02-15T06:59:28Z +375,1049 Matamoros Parkway,," ",191,69640," ",2020-02-15T06:59:28Z +376,1061 Ede Avenue,," ",98,57810," ",2020-02-15T06:59:28Z +377,154 Oshawa Manor,," ",415,72771," ",2020-02-15T06:59:28Z +378,1191 Tandil Drive,," ",523,6362," ",2020-02-15T06:59:28Z +379,1133 Rizhao Avenue,," ",572,2800," ",2020-02-15T06:59:28Z +380,1519 Santiago de los Caballeros Loop,," ",348,22025," ",2020-02-15T06:59:28Z +381,1618 Olomouc Manor,," ",285,26385," ",2020-02-15T06:59:28Z +382,220 Hidalgo Drive,," ",265,45298," ",2020-02-15T06:59:28Z +383,686 Donostia-San Sebastin Lane,," ",471,97390," ",2020-02-15T06:59:28Z +384,97 Mogiljov Lane,," ",73,89294," ",2020-02-15T06:59:28Z +385,1642 Charlotte Amalie Drive,," ",549,75442," ",2020-02-15T06:59:28Z +386,1368 Maracabo Boulevard,," ",493,32716," ",2020-02-15T06:59:28Z +387,401 Sucre Boulevard,," ",322,25007," ",2020-02-15T06:59:28Z +388,368 Hunuco Boulevard,," ",360,17165," ",2020-02-15T06:59:28Z +389,500 Lincoln Parkway,," ",210,95509," ",2020-02-15T06:59:28Z +390,102 Chapra Drive,," ",521,14073," ",2020-02-15T06:59:28Z +391,1793 Meixian Place,," ",258,33535," ",2020-02-15T06:59:28Z +392,514 Ife Way,," ",315,69973," ",2020-02-15T06:59:28Z +393,717 Changzhou Lane,," ",104,21615," ",2020-02-15T06:59:28Z +394,753 Ilorin Avenue,," ",157,3656," ",2020-02-15T06:59:28Z +395,1337 Mit Ghamr Avenue,," ",358,29810," ",2020-02-15T06:59:28Z +396,767 Pyongyang Drive,," ",229,83536," ",2020-02-15T06:59:28Z +397,614 Pak Kret Street,," ",6,27796," ",2020-02-15T06:59:28Z +398,954 Lapu-Lapu Way,," ",278,8816," ",2020-02-15T06:59:28Z +399,331 Bydgoszcz Parkway,," ",181,966," ",2020-02-15T06:59:28Z +400,1152 Citrus Heights Manor,," ",15,5239," ",2020-02-15T06:59:28Z +401,168 Cianjur Manor,," ",228,73824," ",2020-02-15T06:59:28Z +402,616 Hagonoy Avenue,," ",39,46043," ",2020-02-15T06:59:28Z +403,1190 0 Place,," ",44,10417," ",2020-02-15T06:59:28Z +404,734 Bchar Place,," ",375,30586," ",2020-02-15T06:59:28Z +405,530 Lausanne Lane,," ",135,11067," ",2020-02-15T06:59:28Z +406,454 Patiala Lane,," ",276,13496," ",2020-02-15T06:59:28Z +407,1346 Mysore Drive,," ",92,61507," ",2020-02-15T06:59:28Z +408,990 Etawah Loop,," ",564,79940," ",2020-02-15T06:59:28Z +409,1266 Laredo Parkway,," ",380,7664," ",2020-02-15T06:59:28Z +410,88 Nagaon Manor,," ",524,86868," ",2020-02-15T06:59:28Z +411,264 Bhimavaram Manor,," ",111,54749," ",2020-02-15T06:59:28Z +412,1639 Saarbrcken Drive,," ",437,9827," ",2020-02-15T06:59:28Z +413,692 Amroha Drive,," ",230,35575," ",2020-02-15T06:59:28Z +414,1936 Lapu-Lapu Parkway,," ",141,7122," ",2020-02-15T06:59:28Z +415,432 Garden Grove Street,," ",430,65630," ",2020-02-15T06:59:28Z +416,1445 Carmen Parkway,," ",117,70809," ",2020-02-15T06:59:28Z +417,791 Salinas Street,," ",208,40509," ",2020-02-15T06:59:28Z +418,126 Acua Parkway,," ",71,58888," ",2020-02-15T06:59:28Z +419,397 Sunnyvale Avenue,," ",19,55566," ",2020-02-15T06:59:28Z +420,992 Klerksdorp Loop,," ",23,33711," ",2020-02-15T06:59:28Z +421,966 Arecibo Loop,," ",134,94018," ",2020-02-15T06:59:28Z +422,289 Santo Andr Manor,," ",16,72410," ",2020-02-15T06:59:28Z +423,437 Chungho Drive,," ",450,59489," ",2020-02-15T06:59:28Z +424,1948 Bayugan Parkway,," ",264,60622," ",2020-02-15T06:59:28Z +425,1866 al-Qatif Avenue,," ",155,89420," ",2020-02-15T06:59:28Z +426,1661 Abha Drive,," ",416,14400," ",2020-02-15T06:59:28Z +427,1557 Cape Coral Parkway,," ",293,46875," ",2020-02-15T06:59:28Z +428,1727 Matamoros Place,," ",465,78813," ",2020-02-15T06:59:28Z +429,1269 Botosani Manor,," ",468,47394," ",2020-02-15T06:59:28Z +430,355 Vitria de Santo Anto Way,," ",452,81758," ",2020-02-15T06:59:28Z +431,1596 Acua Parkway,," ",418,70425," ",2020-02-15T06:59:28Z +432,259 Ipoh Drive,," ",189,64964," ",2020-02-15T06:59:28Z +433,1823 Hoshiarpur Lane,," ",510,33191," ",2020-02-15T06:59:28Z +434,1404 Taguig Drive,," ",547,87212," ",2020-02-15T06:59:28Z +435,740 Udaipur Lane,," ",150,33505," ",2020-02-15T06:59:28Z +436,287 Cuautla Boulevard,," ",501,72736," ",2020-02-15T06:59:28Z +437,1766 Almirante Brown Street,," ",364,63104," ",2020-02-15T06:59:28Z +438,596 Huixquilucan Place,," ",351,65892," ",2020-02-15T06:59:28Z +439,1351 Aparecida de Goinia Parkway,," ",391,41775," ",2020-02-15T06:59:28Z +440,722 Bradford Lane,," ",249,90920," ",2020-02-15T06:59:28Z +441,983 Santa F Way,," ",565,47472," ",2020-02-15T06:59:28Z +442,1245 Ibirit Way,," ",290,40926," ",2020-02-15T06:59:28Z +443,1836 Korla Parkway,," ",272,55405," ",2020-02-15T06:59:28Z +444,231 Kaliningrad Place,," ",70,57833," ",2020-02-15T06:59:28Z +445,495 Bhimavaram Lane,," ",144,3," ",2020-02-15T06:59:28Z +446,1924 Shimonoseki Drive,," ",59,52625," ",2020-02-15T06:59:28Z +447,105 Dzerzinsk Manor,," ",540,48570," ",2020-02-15T06:59:28Z +448,614 Denizli Parkway,," ",486,29444," ",2020-02-15T06:59:28Z +449,1289 Belm Boulevard,," ",530,88306," ",2020-02-15T06:59:28Z +450,203 Tambaram Street,," ",161,73942," ",2020-02-15T06:59:28Z +451,1704 Tambaram Manor,," ",554,2834," ",2020-02-15T06:59:28Z +452,207 Cuernavaca Loop,," ",352,52671," ",2020-02-15T06:59:28Z +453,319 Springs Loop,," ",160,99552," ",2020-02-15T06:59:28Z +454,956 Nam Dinh Manor,," ",481,21872," ",2020-02-15T06:59:28Z +455,1947 Paarl Way,," ",509,23636," ",2020-02-15T06:59:28Z +456,814 Simferopol Loop,," ",154,48745," ",2020-02-15T06:59:28Z +457,535 Ahmadnagar Manor,," ",3,41136," ",2020-02-15T06:59:28Z +458,138 Caracas Boulevard,," ",326,16790," ",2020-02-15T06:59:28Z +459,251 Florencia Drive,," ",556,16119," ",2020-02-15T06:59:28Z +460,659 Gatineau Boulevard,," ",153,28587," ",2020-02-15T06:59:28Z +461,1889 Valparai Way,," ",600,75559," ",2020-02-15T06:59:28Z +462,1485 Bratislava Place,," ",435,83183," ",2020-02-15T06:59:28Z +463,935 Aden Boulevard,," ",532,64709," ",2020-02-15T06:59:28Z +464,76 Kermanshah Manor,," ",423,23343," ",2020-02-15T06:59:28Z +465,734 Tanshui Avenue,," ",170,70664," ",2020-02-15T06:59:28Z +466,118 Jaffna Loop,," ",182,10447," ",2020-02-15T06:59:28Z +467,1621 Tongliao Avenue,," ",558,22173," ",2020-02-15T06:59:28Z +468,1844 Usak Avenue,," ",196,84461," ",2020-02-15T06:59:28Z +469,1872 Toulon Loop,," ",428,7939," ",2020-02-15T06:59:28Z +470,1088 Ibirit Place,," ",595,88502," ",2020-02-15T06:59:28Z +471,1322 Mosul Parkway,," ",145,95400," ",2020-02-15T06:59:28Z +472,1447 Chatsworth Place,," ",129,41545," ",2020-02-15T06:59:28Z +473,1257 Guadalajara Street,," ",78,33599," ",2020-02-15T06:59:28Z +474,1469 Plock Lane,," ",388,95835," ",2020-02-15T06:59:28Z +475,434 Ourense (Orense) Manor,," ",206,14122," ",2020-02-15T06:59:28Z +476,270 Tambaram Parkway,," ",244,9668," ",2020-02-15T06:59:28Z +477,1786 Salinas Place,," ",359,66546," ",2020-02-15T06:59:28Z +478,1078 Stara Zagora Drive,," ",301,69221," ",2020-02-15T06:59:28Z +479,1854 Okara Boulevard,," ",158,42123," ",2020-02-15T06:59:28Z +480,421 Yaound Street,," ",385,11363," ",2020-02-15T06:59:28Z +481,1153 Allende Way,," ",179,20336," ",2020-02-15T06:59:28Z +482,808 Naala-Porto Parkway,," ",500,41060," ",2020-02-15T06:59:28Z +483,632 Usolje-Sibirskoje Parkway,," ",36,73085," ",2020-02-15T06:59:28Z +484,98 Pyongyang Boulevard,," ",11,88749," ",2020-02-15T06:59:28Z +485,984 Novoterkassk Loop,," ",180,28165," ",2020-02-15T06:59:28Z +486,64 Korla Street,," ",347,25145," ",2020-02-15T06:59:28Z +487,1785 So Bernardo do Campo Street,," ",125,71182," ",2020-02-15T06:59:28Z +488,698 Jelets Boulevard,," ",142,2596," ",2020-02-15T06:59:28Z +489,1297 Alvorada Parkway,," ",587,11839," ",2020-02-15T06:59:28Z +490,1909 Dayton Avenue,," ",469,88513," ",2020-02-15T06:59:28Z +491,1789 Saint-Denis Parkway,," ",4,8268," ",2020-02-15T06:59:28Z +492,185 Mannheim Lane,," ",408,23661," ",2020-02-15T06:59:28Z +493,184 Mandaluyong Street,," ",288,94239," ",2020-02-15T06:59:28Z +494,591 Sungai Petani Drive,," ",376,46400," ",2020-02-15T06:59:28Z +495,656 Matamoros Drive,," ",487,19489," ",2020-02-15T06:59:28Z +496,775 ostka Drive,," ",337,22358," ",2020-02-15T06:59:28Z +497,1013 Tabuk Boulevard,," ",261,96203," ",2020-02-15T06:59:28Z +498,319 Plock Parkway,," ",504,26101," ",2020-02-15T06:59:28Z +499,1954 Kowloon and New Kowloon Way,," ",434,63667," ",2020-02-15T06:59:28Z +500,362 Rajkot Lane,," ",47,98030," ",2020-02-15T06:59:28Z +501,1060 Tandil Lane,," ",432,72349," ",2020-02-15T06:59:28Z +502,1515 Korla Way,," ",589,57197," ",2020-02-15T06:59:28Z +503,1416 San Juan Bautista Tuxtepec Avenue,," ",444,50592," ",2020-02-15T06:59:28Z +504,1 Valle de Santiago Avenue,," ",93,86208," ",2020-02-15T06:59:28Z +505,519 Brescia Parkway,," ",318,69504," ",2020-02-15T06:59:28Z +506,414 Mandaluyong Street,," ",314,16370," ",2020-02-15T06:59:28Z +507,1197 Sokoto Boulevard,," ",478,87687," ",2020-02-15T06:59:28Z +508,496 Celaya Drive,," ",552,90797," ",2020-02-15T06:59:28Z +509,786 Matsue Way,," ",245,37469," ",2020-02-15T06:59:28Z +510,48 Maracabo Place,," ",519,1570," ",2020-02-15T06:59:28Z +511,1152 al-Qatif Lane,," ",412,44816," ",2020-02-15T06:59:28Z +512,1269 Ipoh Avenue,," ",163,54674," ",2020-02-15T06:59:28Z +513,758 Korolev Parkway,," ",568,75474," ",2020-02-15T06:59:28Z +514,1747 Rustenburg Place,," ",110,51369," ",2020-02-15T06:59:28Z +515,886 Tonghae Place,," ",259,19450," ",2020-02-15T06:59:28Z +516,1574 Goinia Boulevard,," ",502,39529," ",2020-02-15T06:59:28Z +517,548 Uruapan Street,," ",312,35653," ",2020-02-15T06:59:28Z +519,962 Tama Loop,," ",583,65952," ",2020-02-15T06:59:28Z +520,1778 Gijn Manor,," ",594,35156," ",2020-02-15T06:59:28Z +521,568 Dhule (Dhulia) Loop,," ",127,92568," ",2020-02-15T06:59:28Z +522,1768 Udine Loop,," ",60,32347," ",2020-02-15T06:59:28Z +523,608 Birgunj Parkway,," ",116,400," ",2020-02-15T06:59:28Z +524,680 A Corua (La Corua) Manor,," ",482,49806," ",2020-02-15T06:59:28Z +525,1949 Sanya Street,," ",224,61244," ",2020-02-15T06:59:28Z +526,617 Klerksdorp Place,," ",366,94707," ",2020-02-15T06:59:28Z +527,1993 0 Loop,," ",588,41214," ",2020-02-15T06:59:28Z +528,1176 Southend-on-Sea Manor,," ",458,81651," ",2020-02-15T06:59:28Z +529,600 Purnea (Purnia) Avenue,," ",571,18043," ",2020-02-15T06:59:28Z +530,1003 Qinhuangdao Street,," ",419,25972," ",2020-02-15T06:59:28Z +531,1986 Sivas Place,," ",551,95775," ",2020-02-15T06:59:28Z +532,1427 Tabuk Place,," ",101,31342," ",2020-02-15T06:59:28Z +533,556 Asuncin Way,," ",339,35364," ",2020-02-15T06:59:28Z +534,486 Ondo Parkway,," ",67,35202," ",2020-02-15T06:59:28Z +535,635 Brest Manor,," ",75,40899," ",2020-02-15T06:59:28Z +536,166 Jinchang Street,," ",165,86760," ",2020-02-15T06:59:28Z +537,958 Sagamihara Lane,," ",287,88408," ",2020-02-15T06:59:28Z +538,1817 Livorno Way,," ",100,79401," ",2020-02-15T06:59:28Z +539,1332 Gaziantep Lane,," ",80,22813," ",2020-02-15T06:59:28Z +540,949 Allende Lane,," ",24,67521," ",2020-02-15T06:59:28Z +541,195 Ilorin Street,," ",363,49250," ",2020-02-15T06:59:28Z +542,193 Bhusawal Place,," ",539,9750," ",2020-02-15T06:59:28Z +543,43 Vilnius Manor,," ",42,79814," ",2020-02-15T06:59:28Z +544,183 Haiphong Street,," ",46,69953," ",2020-02-15T06:59:28Z +545,163 Augusta-Richmond County Loop,," ",561,33030," ",2020-02-15T06:59:28Z +546,191 Jos Azueta Parkway,," ",436,13629," ",2020-02-15T06:59:28Z +547,379 Lublin Parkway,," ",309,74568," ",2020-02-15T06:59:28Z +548,1658 Cuman Loop,," ",396,51309," ",2020-02-15T06:59:28Z +549,454 Qinhuangdao Drive,," ",68,25866," ",2020-02-15T06:59:28Z +550,1715 Okayama Street,," ",485,55676," ",2020-02-15T06:59:28Z +551,182 Nukualofa Drive,," ",275,15414," ",2020-02-15T06:59:28Z +552,390 Wroclaw Way,," ",462,5753," ",2020-02-15T06:59:28Z +553,1421 Quilmes Lane,," ",260,19151," ",2020-02-15T06:59:28Z +554,947 Trshavn Place,," ",528,841," ",2020-02-15T06:59:28Z +555,1764 Jalib al-Shuyukh Parkway,," ",459,77642," ",2020-02-15T06:59:28Z +556,346 Cam Ranh Avenue,," ",599,39976," ",2020-02-15T06:59:28Z +557,1407 Pachuca de Soto Place,," ",21,26284," ",2020-02-15T06:59:28Z +558,904 Clarksville Drive,," ",193,52234," ",2020-02-15T06:59:28Z +559,1917 Kumbakonam Parkway,," ",368,11892," ",2020-02-15T06:59:28Z +560,1447 Imus Place,," ",426,12905," ",2020-02-15T06:59:28Z +561,1497 Fengshan Drive,," ",112,63022," ",2020-02-15T06:59:28Z +562,869 Shikarpur Way,," ",496,57380," ",2020-02-15T06:59:28Z +563,1059 Yuncheng Avenue,," ",570,47498," ",2020-02-15T06:59:28Z +564,505 Madiun Boulevard,," ",577,97271," ",2020-02-15T06:59:28Z +565,1741 Hoshiarpur Boulevard,," ",79,22372," ",2020-02-15T06:59:28Z +566,1229 Varanasi (Benares) Manor,," ",43,40195," ",2020-02-15T06:59:28Z +567,1894 Boa Vista Way,," ",178,77464," ",2020-02-15T06:59:28Z +568,1342 Sharja Way,," ",488,93655," ",2020-02-15T06:59:28Z +569,1342 Abha Boulevard,," ",95,10714," ",2020-02-15T06:59:28Z +570,415 Pune Avenue,," ",580,44274," ",2020-02-15T06:59:28Z +571,1746 Faaa Way,," ",214,32515," ",2020-02-15T06:59:28Z +572,539 Hami Way,," ",538,52196," ",2020-02-15T06:59:28Z +573,1407 Surakarta Manor,," ",466,33224," ",2020-02-15T06:59:28Z +574,502 Mandi Bahauddin Parkway,," ",55,15992," ",2020-02-15T06:59:28Z +575,1052 Pathankot Avenue,," ",299,77397," ",2020-02-15T06:59:28Z +576,1351 Sousse Lane,," ",341,37815," ",2020-02-15T06:59:28Z +577,1501 Pangkal Pinang Avenue,," ",409,943," ",2020-02-15T06:59:28Z +578,1405 Hagonoy Avenue,," ",133,86587," ",2020-02-15T06:59:28Z +579,521 San Juan Bautista Tuxtepec Place,," ",598,95093," ",2020-02-15T06:59:28Z +580,923 Tangail Boulevard,," ",10,33384," ",2020-02-15T06:59:28Z +581,186 Skikda Lane,," ",131,89422," ",2020-02-15T06:59:28Z +582,1568 Celaya Parkway,," ",168,34750," ",2020-02-15T06:59:28Z +583,1489 Kakamigahara Lane,," ",526,98883," ",2020-02-15T06:59:28Z +584,1819 Alessandria Loop,," ",103,53829," ",2020-02-15T06:59:28Z +585,1208 Tama Loop,," ",344,73605," ",2020-02-15T06:59:28Z +586,951 Springs Lane,," ",219,96115," ",2020-02-15T06:59:28Z +587,760 Miyakonojo Drive,," ",246,64682," ",2020-02-15T06:59:28Z +588,966 Asuncin Way,," ",212,62703," ",2020-02-15T06:59:28Z +589,1584 Ljubertsy Lane,," ",494,22954," ",2020-02-15T06:59:28Z +590,247 Jining Parkway,," ",54,53446," ",2020-02-15T06:59:28Z +591,773 Dallas Manor,," ",424,12664," ",2020-02-15T06:59:28Z +592,1923 Stara Zagora Lane,," ",546,95179," ",2020-02-15T06:59:28Z +593,1402 Zanzibar Boulevard,," ",106,71102," ",2020-02-15T06:59:28Z +594,1464 Kursk Parkway,," ",574,17381," ",2020-02-15T06:59:28Z +595,1074 Sanaa Parkway,," ",311,22474," ",2020-02-15T06:59:28Z +596,1759 Niznekamsk Avenue,," ",14,39414," ",2020-02-15T06:59:28Z +597,32 Liaocheng Way,," ",248,1944," ",2020-02-15T06:59:28Z +598,42 Fontana Avenue,," ",512,14684," ",2020-02-15T06:59:28Z +599,1895 Zhezqazghan Drive,," ",177,36693," ",2020-02-15T06:59:28Z +600,1837 Kaduna Parkway,," ",241,82580," ",2020-02-15T06:59:28Z +601,844 Bucuresti Place,," ",242,36603," ",2020-02-15T06:59:28Z +602,1101 Bucuresti Boulevard,," ",401,97661," ",2020-02-15T06:59:28Z +603,1103 Quilmes Boulevard,," ",503,52137," ",2020-02-15T06:59:28Z +604,1331 Usak Boulevard,," ",296,61960," ",2020-02-15T06:59:28Z +605,1325 Fukuyama Street,," ",537,27107," ",2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/category.csv b/drivers/csv/testdata/sakila-csv-noheader/category.csv new file mode 100644 index 00000000..c69ca67f --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/category.csv @@ -0,0 +1,16 @@ +1,Action,2020-02-15T06:59:28Z +2,Animation,2020-02-15T06:59:28Z +3,Children,2020-02-15T06:59:28Z +4,Classics,2020-02-15T06:59:28Z +5,Comedy,2020-02-15T06:59:28Z +6,Documentary,2020-02-15T06:59:28Z +7,Drama,2020-02-15T06:59:28Z +8,Family,2020-02-15T06:59:28Z +9,Foreign,2020-02-15T06:59:28Z +10,Games,2020-02-15T06:59:28Z +11,Horror,2020-02-15T06:59:28Z +12,Music,2020-02-15T06:59:28Z +13,New,2020-02-15T06:59:28Z +14,Sci-Fi,2020-02-15T06:59:28Z +15,Sports,2020-02-15T06:59:28Z +16,Travel,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/city.csv b/drivers/csv/testdata/sakila-csv-noheader/city.csv new file mode 100644 index 00000000..97ebc6ef --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/city.csv @@ -0,0 +1,600 @@ +1,A Corua (La Corua),87,2020-02-15T06:59:28Z +2,Abha,82,2020-02-15T06:59:28Z +3,Abu Dhabi,101,2020-02-15T06:59:28Z +4,Acua,60,2020-02-15T06:59:28Z +5,Adana,97,2020-02-15T06:59:28Z +6,Addis Abeba,31,2020-02-15T06:59:28Z +7,Aden,107,2020-02-15T06:59:28Z +8,Adoni,44,2020-02-15T06:59:28Z +9,Ahmadnagar,44,2020-02-15T06:59:28Z +10,Akishima,50,2020-02-15T06:59:28Z +11,Akron,103,2020-02-15T06:59:28Z +12,al-Ayn,101,2020-02-15T06:59:28Z +13,al-Hawiya,82,2020-02-15T06:59:28Z +14,al-Manama,11,2020-02-15T06:59:28Z +15,al-Qadarif,89,2020-02-15T06:59:28Z +16,al-Qatif,82,2020-02-15T06:59:28Z +17,Alessandria,49,2020-02-15T06:59:28Z +18,Allappuzha (Alleppey),44,2020-02-15T06:59:28Z +19,Allende,60,2020-02-15T06:59:28Z +20,Almirante Brown,6,2020-02-15T06:59:28Z +21,Alvorada,15,2020-02-15T06:59:28Z +22,Ambattur,44,2020-02-15T06:59:28Z +23,Amersfoort,67,2020-02-15T06:59:28Z +24,Amroha,44,2020-02-15T06:59:28Z +25,Angra dos Reis,15,2020-02-15T06:59:28Z +26,Anpolis,15,2020-02-15T06:59:28Z +27,Antofagasta,22,2020-02-15T06:59:28Z +28,Aparecida de Goinia,15,2020-02-15T06:59:28Z +29,Apeldoorn,67,2020-02-15T06:59:28Z +30,Araatuba,15,2020-02-15T06:59:28Z +31,Arak,46,2020-02-15T06:59:28Z +32,Arecibo,77,2020-02-15T06:59:28Z +33,Arlington,103,2020-02-15T06:59:28Z +34,Ashdod,48,2020-02-15T06:59:28Z +35,Ashgabat,98,2020-02-15T06:59:28Z +36,Ashqelon,48,2020-02-15T06:59:28Z +37,Asuncin,73,2020-02-15T06:59:28Z +38,Athenai,39,2020-02-15T06:59:28Z +39,Atinsk,80,2020-02-15T06:59:28Z +40,Atlixco,60,2020-02-15T06:59:28Z +41,Augusta-Richmond County,103,2020-02-15T06:59:28Z +42,Aurora,103,2020-02-15T06:59:28Z +43,Avellaneda,6,2020-02-15T06:59:28Z +44,Bag,15,2020-02-15T06:59:28Z +45,Baha Blanca,6,2020-02-15T06:59:28Z +46,Baicheng,23,2020-02-15T06:59:28Z +47,Baiyin,23,2020-02-15T06:59:28Z +48,Baku,10,2020-02-15T06:59:28Z +49,Balaiha,80,2020-02-15T06:59:28Z +50,Balikesir,97,2020-02-15T06:59:28Z +51,Balurghat,44,2020-02-15T06:59:28Z +52,Bamenda,19,2020-02-15T06:59:28Z +53,Bandar Seri Begawan,16,2020-02-15T06:59:28Z +54,Banjul,37,2020-02-15T06:59:28Z +55,Barcelona,104,2020-02-15T06:59:28Z +56,Basel,91,2020-02-15T06:59:28Z +57,Bat Yam,48,2020-02-15T06:59:28Z +58,Batman,97,2020-02-15T06:59:28Z +59,Batna,2,2020-02-15T06:59:28Z +60,Battambang,18,2020-02-15T06:59:28Z +61,Baybay,75,2020-02-15T06:59:28Z +62,Bayugan,75,2020-02-15T06:59:28Z +63,Bchar,2,2020-02-15T06:59:28Z +64,Beira,63,2020-02-15T06:59:28Z +65,Bellevue,103,2020-02-15T06:59:28Z +66,Belm,15,2020-02-15T06:59:28Z +67,Benguela,4,2020-02-15T06:59:28Z +68,Beni-Mellal,62,2020-02-15T06:59:28Z +69,Benin City,69,2020-02-15T06:59:28Z +70,Bergamo,49,2020-02-15T06:59:28Z +71,Berhampore (Baharampur),44,2020-02-15T06:59:28Z +72,Bern,91,2020-02-15T06:59:28Z +73,Bhavnagar,44,2020-02-15T06:59:28Z +74,Bhilwara,44,2020-02-15T06:59:28Z +75,Bhimavaram,44,2020-02-15T06:59:28Z +76,Bhopal,44,2020-02-15T06:59:28Z +77,Bhusawal,44,2020-02-15T06:59:28Z +78,Bijapur,44,2020-02-15T06:59:28Z +79,Bilbays,29,2020-02-15T06:59:28Z +80,Binzhou,23,2020-02-15T06:59:28Z +81,Birgunj,66,2020-02-15T06:59:28Z +82,Bislig,75,2020-02-15T06:59:28Z +83,Blumenau,15,2020-02-15T06:59:28Z +84,Boa Vista,15,2020-02-15T06:59:28Z +85,Boksburg,85,2020-02-15T06:59:28Z +86,Botosani,78,2020-02-15T06:59:28Z +87,Botshabelo,85,2020-02-15T06:59:28Z +88,Bradford,102,2020-02-15T06:59:28Z +89,Braslia,15,2020-02-15T06:59:28Z +90,Bratislava,84,2020-02-15T06:59:28Z +91,Brescia,49,2020-02-15T06:59:28Z +92,Brest,34,2020-02-15T06:59:28Z +93,Brindisi,49,2020-02-15T06:59:28Z +94,Brockton,103,2020-02-15T06:59:28Z +95,Bucuresti,78,2020-02-15T06:59:28Z +96,Buenaventura,24,2020-02-15T06:59:28Z +97,Bydgoszcz,76,2020-02-15T06:59:28Z +98,Cabuyao,75,2020-02-15T06:59:28Z +99,Callao,74,2020-02-15T06:59:28Z +100,Cam Ranh,105,2020-02-15T06:59:28Z +101,Cape Coral,103,2020-02-15T06:59:28Z +102,Caracas,104,2020-02-15T06:59:28Z +103,Carmen,60,2020-02-15T06:59:28Z +104,Cavite,75,2020-02-15T06:59:28Z +105,Cayenne,35,2020-02-15T06:59:28Z +106,Celaya,60,2020-02-15T06:59:28Z +107,Chandrapur,44,2020-02-15T06:59:28Z +108,Changhwa,92,2020-02-15T06:59:28Z +109,Changzhou,23,2020-02-15T06:59:28Z +110,Chapra,44,2020-02-15T06:59:28Z +111,Charlotte Amalie,106,2020-02-15T06:59:28Z +112,Chatsworth,85,2020-02-15T06:59:28Z +113,Cheju,86,2020-02-15T06:59:28Z +114,Chiayi,92,2020-02-15T06:59:28Z +115,Chisinau,61,2020-02-15T06:59:28Z +116,Chungho,92,2020-02-15T06:59:28Z +117,Cianjur,45,2020-02-15T06:59:28Z +118,Ciomas,45,2020-02-15T06:59:28Z +119,Ciparay,45,2020-02-15T06:59:28Z +120,Citrus Heights,103,2020-02-15T06:59:28Z +121,Citt del Vaticano,41,2020-02-15T06:59:28Z +122,Ciudad del Este,73,2020-02-15T06:59:28Z +123,Clarksville,103,2020-02-15T06:59:28Z +124,Coacalco de Berriozbal,60,2020-02-15T06:59:28Z +125,Coatzacoalcos,60,2020-02-15T06:59:28Z +126,Compton,103,2020-02-15T06:59:28Z +127,Coquimbo,22,2020-02-15T06:59:28Z +128,Crdoba,6,2020-02-15T06:59:28Z +129,Cuauhtmoc,60,2020-02-15T06:59:28Z +130,Cuautla,60,2020-02-15T06:59:28Z +131,Cuernavaca,60,2020-02-15T06:59:28Z +132,Cuman,104,2020-02-15T06:59:28Z +133,Czestochowa,76,2020-02-15T06:59:28Z +134,Dadu,72,2020-02-15T06:59:28Z +135,Dallas,103,2020-02-15T06:59:28Z +136,Datong,23,2020-02-15T06:59:28Z +137,Daugavpils,54,2020-02-15T06:59:28Z +138,Davao,75,2020-02-15T06:59:28Z +139,Daxian,23,2020-02-15T06:59:28Z +140,Dayton,103,2020-02-15T06:59:28Z +141,Deba Habe,69,2020-02-15T06:59:28Z +142,Denizli,97,2020-02-15T06:59:28Z +143,Dhaka,12,2020-02-15T06:59:28Z +144,Dhule (Dhulia),44,2020-02-15T06:59:28Z +145,Dongying,23,2020-02-15T06:59:28Z +146,Donostia-San Sebastin,87,2020-02-15T06:59:28Z +147,Dos Quebradas,24,2020-02-15T06:59:28Z +148,Duisburg,38,2020-02-15T06:59:28Z +149,Dundee,102,2020-02-15T06:59:28Z +150,Dzerzinsk,80,2020-02-15T06:59:28Z +151,Ede,67,2020-02-15T06:59:28Z +152,Effon-Alaiye,69,2020-02-15T06:59:28Z +153,El Alto,14,2020-02-15T06:59:28Z +154,El Fuerte,60,2020-02-15T06:59:28Z +155,El Monte,103,2020-02-15T06:59:28Z +156,Elista,80,2020-02-15T06:59:28Z +157,Emeishan,23,2020-02-15T06:59:28Z +158,Emmen,67,2020-02-15T06:59:28Z +159,Enshi,23,2020-02-15T06:59:28Z +160,Erlangen,38,2020-02-15T06:59:28Z +161,Escobar,6,2020-02-15T06:59:28Z +162,Esfahan,46,2020-02-15T06:59:28Z +163,Eskisehir,97,2020-02-15T06:59:28Z +164,Etawah,44,2020-02-15T06:59:28Z +165,Ezeiza,6,2020-02-15T06:59:28Z +166,Ezhou,23,2020-02-15T06:59:28Z +167,Faaa,36,2020-02-15T06:59:28Z +168,Fengshan,92,2020-02-15T06:59:28Z +169,Firozabad,44,2020-02-15T06:59:28Z +170,Florencia,24,2020-02-15T06:59:28Z +171,Fontana,103,2020-02-15T06:59:28Z +172,Fukuyama,50,2020-02-15T06:59:28Z +173,Funafuti,99,2020-02-15T06:59:28Z +174,Fuyu,23,2020-02-15T06:59:28Z +175,Fuzhou,23,2020-02-15T06:59:28Z +176,Gandhinagar,44,2020-02-15T06:59:28Z +177,Garden Grove,103,2020-02-15T06:59:28Z +178,Garland,103,2020-02-15T06:59:28Z +179,Gatineau,20,2020-02-15T06:59:28Z +180,Gaziantep,97,2020-02-15T06:59:28Z +181,Gijn,87,2020-02-15T06:59:28Z +182,Gingoog,75,2020-02-15T06:59:28Z +183,Goinia,15,2020-02-15T06:59:28Z +184,Gorontalo,45,2020-02-15T06:59:28Z +185,Grand Prairie,103,2020-02-15T06:59:28Z +186,Graz,9,2020-02-15T06:59:28Z +187,Greensboro,103,2020-02-15T06:59:28Z +188,Guadalajara,60,2020-02-15T06:59:28Z +189,Guaruj,15,2020-02-15T06:59:28Z +190,guas Lindas de Gois,15,2020-02-15T06:59:28Z +191,Gulbarga,44,2020-02-15T06:59:28Z +192,Hagonoy,75,2020-02-15T06:59:28Z +193,Haining,23,2020-02-15T06:59:28Z +194,Haiphong,105,2020-02-15T06:59:28Z +195,Haldia,44,2020-02-15T06:59:28Z +196,Halifax,20,2020-02-15T06:59:28Z +197,Halisahar,44,2020-02-15T06:59:28Z +198,Halle/Saale,38,2020-02-15T06:59:28Z +199,Hami,23,2020-02-15T06:59:28Z +200,Hamilton,68,2020-02-15T06:59:28Z +201,Hanoi,105,2020-02-15T06:59:28Z +202,Hidalgo,60,2020-02-15T06:59:28Z +203,Higashiosaka,50,2020-02-15T06:59:28Z +204,Hino,50,2020-02-15T06:59:28Z +205,Hiroshima,50,2020-02-15T06:59:28Z +206,Hodeida,107,2020-02-15T06:59:28Z +207,Hohhot,23,2020-02-15T06:59:28Z +208,Hoshiarpur,44,2020-02-15T06:59:28Z +209,Hsichuh,92,2020-02-15T06:59:28Z +210,Huaian,23,2020-02-15T06:59:28Z +211,Hubli-Dharwad,44,2020-02-15T06:59:28Z +212,Huejutla de Reyes,60,2020-02-15T06:59:28Z +213,Huixquilucan,60,2020-02-15T06:59:28Z +214,Hunuco,74,2020-02-15T06:59:28Z +215,Ibirit,15,2020-02-15T06:59:28Z +216,Idfu,29,2020-02-15T06:59:28Z +217,Ife,69,2020-02-15T06:59:28Z +218,Ikerre,69,2020-02-15T06:59:28Z +219,Iligan,75,2020-02-15T06:59:28Z +220,Ilorin,69,2020-02-15T06:59:28Z +221,Imus,75,2020-02-15T06:59:28Z +222,Inegl,97,2020-02-15T06:59:28Z +223,Ipoh,59,2020-02-15T06:59:28Z +224,Isesaki,50,2020-02-15T06:59:28Z +225,Ivanovo,80,2020-02-15T06:59:28Z +226,Iwaki,50,2020-02-15T06:59:28Z +227,Iwakuni,50,2020-02-15T06:59:28Z +228,Iwatsuki,50,2020-02-15T06:59:28Z +229,Izumisano,50,2020-02-15T06:59:28Z +230,Jaffna,88,2020-02-15T06:59:28Z +231,Jaipur,44,2020-02-15T06:59:28Z +232,Jakarta,45,2020-02-15T06:59:28Z +233,Jalib al-Shuyukh,53,2020-02-15T06:59:28Z +234,Jamalpur,12,2020-02-15T06:59:28Z +235,Jaroslavl,80,2020-02-15T06:59:28Z +236,Jastrzebie-Zdrj,76,2020-02-15T06:59:28Z +237,Jedda,82,2020-02-15T06:59:28Z +238,Jelets,80,2020-02-15T06:59:28Z +239,Jhansi,44,2020-02-15T06:59:28Z +240,Jinchang,23,2020-02-15T06:59:28Z +241,Jining,23,2020-02-15T06:59:28Z +242,Jinzhou,23,2020-02-15T06:59:28Z +243,Jodhpur,44,2020-02-15T06:59:28Z +244,Johannesburg,85,2020-02-15T06:59:28Z +245,Joliet,103,2020-02-15T06:59:28Z +246,Jos Azueta,60,2020-02-15T06:59:28Z +247,Juazeiro do Norte,15,2020-02-15T06:59:28Z +248,Juiz de Fora,15,2020-02-15T06:59:28Z +249,Junan,23,2020-02-15T06:59:28Z +250,Jurez,60,2020-02-15T06:59:28Z +251,Kabul,1,2020-02-15T06:59:28Z +252,Kaduna,69,2020-02-15T06:59:28Z +253,Kakamigahara,50,2020-02-15T06:59:28Z +254,Kaliningrad,80,2020-02-15T06:59:28Z +255,Kalisz,76,2020-02-15T06:59:28Z +256,Kamakura,50,2020-02-15T06:59:28Z +257,Kamarhati,44,2020-02-15T06:59:28Z +258,Kamjanets-Podilskyi,100,2020-02-15T06:59:28Z +259,Kamyin,80,2020-02-15T06:59:28Z +260,Kanazawa,50,2020-02-15T06:59:28Z +261,Kanchrapara,44,2020-02-15T06:59:28Z +262,Kansas City,103,2020-02-15T06:59:28Z +263,Karnal,44,2020-02-15T06:59:28Z +264,Katihar,44,2020-02-15T06:59:28Z +265,Kermanshah,46,2020-02-15T06:59:28Z +266,Kilis,97,2020-02-15T06:59:28Z +267,Kimberley,85,2020-02-15T06:59:28Z +268,Kimchon,86,2020-02-15T06:59:28Z +269,Kingstown,81,2020-02-15T06:59:28Z +270,Kirovo-Tepetsk,80,2020-02-15T06:59:28Z +271,Kisumu,52,2020-02-15T06:59:28Z +272,Kitwe,109,2020-02-15T06:59:28Z +273,Klerksdorp,85,2020-02-15T06:59:28Z +274,Kolpino,80,2020-02-15T06:59:28Z +275,Konotop,100,2020-02-15T06:59:28Z +276,Koriyama,50,2020-02-15T06:59:28Z +277,Korla,23,2020-02-15T06:59:28Z +278,Korolev,80,2020-02-15T06:59:28Z +279,Kowloon and New Kowloon,42,2020-02-15T06:59:28Z +280,Kragujevac,108,2020-02-15T06:59:28Z +281,Ktahya,97,2020-02-15T06:59:28Z +282,Kuching,59,2020-02-15T06:59:28Z +283,Kumbakonam,44,2020-02-15T06:59:28Z +284,Kurashiki,50,2020-02-15T06:59:28Z +285,Kurgan,80,2020-02-15T06:59:28Z +286,Kursk,80,2020-02-15T06:59:28Z +287,Kuwana,50,2020-02-15T06:59:28Z +288,La Paz,60,2020-02-15T06:59:28Z +289,La Plata,6,2020-02-15T06:59:28Z +290,La Romana,27,2020-02-15T06:59:28Z +291,Laiwu,23,2020-02-15T06:59:28Z +292,Lancaster,103,2020-02-15T06:59:28Z +293,Laohekou,23,2020-02-15T06:59:28Z +294,Lapu-Lapu,75,2020-02-15T06:59:28Z +295,Laredo,103,2020-02-15T06:59:28Z +296,Lausanne,91,2020-02-15T06:59:28Z +297,Le Mans,34,2020-02-15T06:59:28Z +298,Lengshuijiang,23,2020-02-15T06:59:28Z +299,Leshan,23,2020-02-15T06:59:28Z +300,Lethbridge,20,2020-02-15T06:59:28Z +301,Lhokseumawe,45,2020-02-15T06:59:28Z +302,Liaocheng,23,2020-02-15T06:59:28Z +303,Liepaja,54,2020-02-15T06:59:28Z +304,Lilongwe,58,2020-02-15T06:59:28Z +305,Lima,74,2020-02-15T06:59:28Z +306,Lincoln,103,2020-02-15T06:59:28Z +307,Linz,9,2020-02-15T06:59:28Z +308,Lipetsk,80,2020-02-15T06:59:28Z +309,Livorno,49,2020-02-15T06:59:28Z +310,Ljubertsy,80,2020-02-15T06:59:28Z +311,Loja,28,2020-02-15T06:59:28Z +312,London,102,2020-02-15T06:59:28Z +313,London,20,2020-02-15T06:59:28Z +314,Lublin,76,2020-02-15T06:59:28Z +315,Lubumbashi,25,2020-02-15T06:59:28Z +316,Lungtan,92,2020-02-15T06:59:28Z +317,Luzinia,15,2020-02-15T06:59:28Z +318,Madiun,45,2020-02-15T06:59:28Z +319,Mahajanga,57,2020-02-15T06:59:28Z +320,Maikop,80,2020-02-15T06:59:28Z +321,Malm,90,2020-02-15T06:59:28Z +322,Manchester,103,2020-02-15T06:59:28Z +323,Mandaluyong,75,2020-02-15T06:59:28Z +324,Mandi Bahauddin,72,2020-02-15T06:59:28Z +325,Mannheim,38,2020-02-15T06:59:28Z +326,Maracabo,104,2020-02-15T06:59:28Z +327,Mardan,72,2020-02-15T06:59:28Z +328,Maring,15,2020-02-15T06:59:28Z +329,Masqat,71,2020-02-15T06:59:28Z +330,Matamoros,60,2020-02-15T06:59:28Z +331,Matsue,50,2020-02-15T06:59:28Z +332,Meixian,23,2020-02-15T06:59:28Z +333,Memphis,103,2020-02-15T06:59:28Z +334,Merlo,6,2020-02-15T06:59:28Z +335,Mexicali,60,2020-02-15T06:59:28Z +336,Miraj,44,2020-02-15T06:59:28Z +337,Mit Ghamr,29,2020-02-15T06:59:28Z +338,Miyakonojo,50,2020-02-15T06:59:28Z +339,Mogiljov,13,2020-02-15T06:59:28Z +340,Molodetno,13,2020-02-15T06:59:28Z +341,Monclova,60,2020-02-15T06:59:28Z +342,Monywa,64,2020-02-15T06:59:28Z +343,Moscow,80,2020-02-15T06:59:28Z +344,Mosul,47,2020-02-15T06:59:28Z +345,Mukateve,100,2020-02-15T06:59:28Z +346,Munger (Monghyr),44,2020-02-15T06:59:28Z +347,Mwanza,93,2020-02-15T06:59:28Z +348,Mwene-Ditu,25,2020-02-15T06:59:28Z +349,Myingyan,64,2020-02-15T06:59:28Z +350,Mysore,44,2020-02-15T06:59:28Z +351,Naala-Porto,63,2020-02-15T06:59:28Z +352,Nabereznyje Telny,80,2020-02-15T06:59:28Z +353,Nador,62,2020-02-15T06:59:28Z +354,Nagaon,44,2020-02-15T06:59:28Z +355,Nagareyama,50,2020-02-15T06:59:28Z +356,Najafabad,46,2020-02-15T06:59:28Z +357,Naju,86,2020-02-15T06:59:28Z +358,Nakhon Sawan,94,2020-02-15T06:59:28Z +359,Nam Dinh,105,2020-02-15T06:59:28Z +360,Namibe,4,2020-02-15T06:59:28Z +361,Nantou,92,2020-02-15T06:59:28Z +362,Nanyang,23,2020-02-15T06:59:28Z +363,NDjamna,21,2020-02-15T06:59:28Z +364,Newcastle,85,2020-02-15T06:59:28Z +365,Nezahualcyotl,60,2020-02-15T06:59:28Z +366,Nha Trang,105,2020-02-15T06:59:28Z +367,Niznekamsk,80,2020-02-15T06:59:28Z +368,Novi Sad,108,2020-02-15T06:59:28Z +369,Novoterkassk,80,2020-02-15T06:59:28Z +370,Nukualofa,95,2020-02-15T06:59:28Z +371,Nuuk,40,2020-02-15T06:59:28Z +372,Nyeri,52,2020-02-15T06:59:28Z +373,Ocumare del Tuy,104,2020-02-15T06:59:28Z +374,Ogbomosho,69,2020-02-15T06:59:28Z +375,Okara,72,2020-02-15T06:59:28Z +376,Okayama,50,2020-02-15T06:59:28Z +377,Okinawa,50,2020-02-15T06:59:28Z +378,Olomouc,26,2020-02-15T06:59:28Z +379,Omdurman,89,2020-02-15T06:59:28Z +380,Omiya,50,2020-02-15T06:59:28Z +381,Ondo,69,2020-02-15T06:59:28Z +382,Onomichi,50,2020-02-15T06:59:28Z +383,Oshawa,20,2020-02-15T06:59:28Z +384,Osmaniye,97,2020-02-15T06:59:28Z +385,ostka,100,2020-02-15T06:59:28Z +386,Otsu,50,2020-02-15T06:59:28Z +387,Oulu,33,2020-02-15T06:59:28Z +388,Ourense (Orense),87,2020-02-15T06:59:28Z +389,Owo,69,2020-02-15T06:59:28Z +390,Oyo,69,2020-02-15T06:59:28Z +391,Ozamis,75,2020-02-15T06:59:28Z +392,Paarl,85,2020-02-15T06:59:28Z +393,Pachuca de Soto,60,2020-02-15T06:59:28Z +394,Pak Kret,94,2020-02-15T06:59:28Z +395,Palghat (Palakkad),44,2020-02-15T06:59:28Z +396,Pangkal Pinang,45,2020-02-15T06:59:28Z +397,Papeete,36,2020-02-15T06:59:28Z +398,Parbhani,44,2020-02-15T06:59:28Z +399,Pathankot,44,2020-02-15T06:59:28Z +400,Patiala,44,2020-02-15T06:59:28Z +401,Patras,39,2020-02-15T06:59:28Z +402,Pavlodar,51,2020-02-15T06:59:28Z +403,Pemalang,45,2020-02-15T06:59:28Z +404,Peoria,103,2020-02-15T06:59:28Z +405,Pereira,24,2020-02-15T06:59:28Z +406,Phnom Penh,18,2020-02-15T06:59:28Z +407,Pingxiang,23,2020-02-15T06:59:28Z +408,Pjatigorsk,80,2020-02-15T06:59:28Z +409,Plock,76,2020-02-15T06:59:28Z +410,Po,15,2020-02-15T06:59:28Z +411,Ponce,77,2020-02-15T06:59:28Z +412,Pontianak,45,2020-02-15T06:59:28Z +413,Poos de Caldas,15,2020-02-15T06:59:28Z +414,Portoviejo,28,2020-02-15T06:59:28Z +415,Probolinggo,45,2020-02-15T06:59:28Z +416,Pudukkottai,44,2020-02-15T06:59:28Z +417,Pune,44,2020-02-15T06:59:28Z +418,Purnea (Purnia),44,2020-02-15T06:59:28Z +419,Purwakarta,45,2020-02-15T06:59:28Z +420,Pyongyang,70,2020-02-15T06:59:28Z +421,Qalyub,29,2020-02-15T06:59:28Z +422,Qinhuangdao,23,2020-02-15T06:59:28Z +423,Qomsheh,46,2020-02-15T06:59:28Z +424,Quilmes,6,2020-02-15T06:59:28Z +425,Rae Bareli,44,2020-02-15T06:59:28Z +426,Rajkot,44,2020-02-15T06:59:28Z +427,Rampur,44,2020-02-15T06:59:28Z +428,Rancagua,22,2020-02-15T06:59:28Z +429,Ranchi,44,2020-02-15T06:59:28Z +430,Richmond Hill,20,2020-02-15T06:59:28Z +431,Rio Claro,15,2020-02-15T06:59:28Z +432,Rizhao,23,2020-02-15T06:59:28Z +433,Roanoke,103,2020-02-15T06:59:28Z +434,Robamba,28,2020-02-15T06:59:28Z +435,Rockford,103,2020-02-15T06:59:28Z +436,Ruse,17,2020-02-15T06:59:28Z +437,Rustenburg,85,2020-02-15T06:59:28Z +438,s-Hertogenbosch,67,2020-02-15T06:59:28Z +439,Saarbrcken,38,2020-02-15T06:59:28Z +440,Sagamihara,50,2020-02-15T06:59:28Z +441,Saint Louis,103,2020-02-15T06:59:28Z +442,Saint-Denis,79,2020-02-15T06:59:28Z +443,Sal,62,2020-02-15T06:59:28Z +444,Salala,71,2020-02-15T06:59:28Z +445,Salamanca,60,2020-02-15T06:59:28Z +446,Salinas,103,2020-02-15T06:59:28Z +447,Salzburg,9,2020-02-15T06:59:28Z +448,Sambhal,44,2020-02-15T06:59:28Z +449,San Bernardino,103,2020-02-15T06:59:28Z +450,San Felipe de Puerto Plata,27,2020-02-15T06:59:28Z +451,San Felipe del Progreso,60,2020-02-15T06:59:28Z +452,San Juan Bautista Tuxtepec,60,2020-02-15T06:59:28Z +453,San Lorenzo,73,2020-02-15T06:59:28Z +454,San Miguel de Tucumn,6,2020-02-15T06:59:28Z +455,Sanaa,107,2020-02-15T06:59:28Z +456,Santa Brbara dOeste,15,2020-02-15T06:59:28Z +457,Santa F,6,2020-02-15T06:59:28Z +458,Santa Rosa,75,2020-02-15T06:59:28Z +459,Santiago de Compostela,87,2020-02-15T06:59:28Z +460,Santiago de los Caballeros,27,2020-02-15T06:59:28Z +461,Santo Andr,15,2020-02-15T06:59:28Z +462,Sanya,23,2020-02-15T06:59:28Z +463,Sasebo,50,2020-02-15T06:59:28Z +464,Satna,44,2020-02-15T06:59:28Z +465,Sawhaj,29,2020-02-15T06:59:28Z +466,Serpuhov,80,2020-02-15T06:59:28Z +467,Shahr-e Kord,46,2020-02-15T06:59:28Z +468,Shanwei,23,2020-02-15T06:59:28Z +469,Shaoguan,23,2020-02-15T06:59:28Z +470,Sharja,101,2020-02-15T06:59:28Z +471,Shenzhen,23,2020-02-15T06:59:28Z +472,Shikarpur,72,2020-02-15T06:59:28Z +473,Shimoga,44,2020-02-15T06:59:28Z +474,Shimonoseki,50,2020-02-15T06:59:28Z +475,Shivapuri,44,2020-02-15T06:59:28Z +476,Shubra al-Khayma,29,2020-02-15T06:59:28Z +477,Siegen,38,2020-02-15T06:59:28Z +478,Siliguri (Shiliguri),44,2020-02-15T06:59:28Z +479,Simferopol,100,2020-02-15T06:59:28Z +480,Sincelejo,24,2020-02-15T06:59:28Z +481,Sirjan,46,2020-02-15T06:59:28Z +482,Sivas,97,2020-02-15T06:59:28Z +483,Skikda,2,2020-02-15T06:59:28Z +484,Smolensk,80,2020-02-15T06:59:28Z +485,So Bernardo do Campo,15,2020-02-15T06:59:28Z +486,So Leopoldo,15,2020-02-15T06:59:28Z +487,Sogamoso,24,2020-02-15T06:59:28Z +488,Sokoto,69,2020-02-15T06:59:28Z +489,Songkhla,94,2020-02-15T06:59:28Z +490,Sorocaba,15,2020-02-15T06:59:28Z +491,Soshanguve,85,2020-02-15T06:59:28Z +492,Sousse,96,2020-02-15T06:59:28Z +493,South Hill,5,2020-02-15T06:59:28Z +494,Southampton,102,2020-02-15T06:59:28Z +495,Southend-on-Sea,102,2020-02-15T06:59:28Z +496,Southport,102,2020-02-15T06:59:28Z +497,Springs,85,2020-02-15T06:59:28Z +498,Stara Zagora,17,2020-02-15T06:59:28Z +499,Sterling Heights,103,2020-02-15T06:59:28Z +500,Stockport,102,2020-02-15T06:59:28Z +501,Sucre,14,2020-02-15T06:59:28Z +502,Suihua,23,2020-02-15T06:59:28Z +503,Sullana,74,2020-02-15T06:59:28Z +504,Sultanbeyli,97,2020-02-15T06:59:28Z +505,Sumqayit,10,2020-02-15T06:59:28Z +506,Sumy,100,2020-02-15T06:59:28Z +507,Sungai Petani,59,2020-02-15T06:59:28Z +508,Sunnyvale,103,2020-02-15T06:59:28Z +509,Surakarta,45,2020-02-15T06:59:28Z +510,Syktyvkar,80,2020-02-15T06:59:28Z +511,Syrakusa,49,2020-02-15T06:59:28Z +512,Szkesfehrvr,43,2020-02-15T06:59:28Z +513,Tabora,93,2020-02-15T06:59:28Z +514,Tabriz,46,2020-02-15T06:59:28Z +515,Tabuk,82,2020-02-15T06:59:28Z +516,Tafuna,3,2020-02-15T06:59:28Z +517,Taguig,75,2020-02-15T06:59:28Z +518,Taizz,107,2020-02-15T06:59:28Z +519,Talavera,75,2020-02-15T06:59:28Z +520,Tallahassee,103,2020-02-15T06:59:28Z +521,Tama,50,2020-02-15T06:59:28Z +522,Tambaram,44,2020-02-15T06:59:28Z +523,Tanauan,75,2020-02-15T06:59:28Z +524,Tandil,6,2020-02-15T06:59:28Z +525,Tangail,12,2020-02-15T06:59:28Z +526,Tanshui,92,2020-02-15T06:59:28Z +527,Tanza,75,2020-02-15T06:59:28Z +528,Tarlac,75,2020-02-15T06:59:28Z +529,Tarsus,97,2020-02-15T06:59:28Z +530,Tartu,30,2020-02-15T06:59:28Z +531,Teboksary,80,2020-02-15T06:59:28Z +532,Tegal,45,2020-02-15T06:59:28Z +533,Tel Aviv-Jaffa,48,2020-02-15T06:59:28Z +534,Tete,63,2020-02-15T06:59:28Z +535,Tianjin,23,2020-02-15T06:59:28Z +536,Tiefa,23,2020-02-15T06:59:28Z +537,Tieli,23,2020-02-15T06:59:28Z +538,Tokat,97,2020-02-15T06:59:28Z +539,Tonghae,86,2020-02-15T06:59:28Z +540,Tongliao,23,2020-02-15T06:59:28Z +541,Torren,60,2020-02-15T06:59:28Z +542,Touliu,92,2020-02-15T06:59:28Z +543,Toulon,34,2020-02-15T06:59:28Z +544,Toulouse,34,2020-02-15T06:59:28Z +545,Trshavn,32,2020-02-15T06:59:28Z +546,Tsaotun,92,2020-02-15T06:59:28Z +547,Tsuyama,50,2020-02-15T06:59:28Z +548,Tuguegarao,75,2020-02-15T06:59:28Z +549,Tychy,76,2020-02-15T06:59:28Z +550,Udaipur,44,2020-02-15T06:59:28Z +551,Udine,49,2020-02-15T06:59:28Z +552,Ueda,50,2020-02-15T06:59:28Z +553,Uijongbu,86,2020-02-15T06:59:28Z +554,Uluberia,44,2020-02-15T06:59:28Z +555,Urawa,50,2020-02-15T06:59:28Z +556,Uruapan,60,2020-02-15T06:59:28Z +557,Usak,97,2020-02-15T06:59:28Z +558,Usolje-Sibirskoje,80,2020-02-15T06:59:28Z +559,Uttarpara-Kotrung,44,2020-02-15T06:59:28Z +560,Vaduz,55,2020-02-15T06:59:28Z +561,Valencia,104,2020-02-15T06:59:28Z +562,Valle de la Pascua,104,2020-02-15T06:59:28Z +563,Valle de Santiago,60,2020-02-15T06:59:28Z +564,Valparai,44,2020-02-15T06:59:28Z +565,Vancouver,20,2020-02-15T06:59:28Z +566,Varanasi (Benares),44,2020-02-15T06:59:28Z +567,Vicente Lpez,6,2020-02-15T06:59:28Z +568,Vijayawada,44,2020-02-15T06:59:28Z +569,Vila Velha,15,2020-02-15T06:59:28Z +570,Vilnius,56,2020-02-15T06:59:28Z +571,Vinh,105,2020-02-15T06:59:28Z +572,Vitria de Santo Anto,15,2020-02-15T06:59:28Z +573,Warren,103,2020-02-15T06:59:28Z +574,Weifang,23,2020-02-15T06:59:28Z +575,Witten,38,2020-02-15T06:59:28Z +576,Woodridge,8,2020-02-15T06:59:28Z +577,Wroclaw,76,2020-02-15T06:59:28Z +578,Xiangfan,23,2020-02-15T06:59:28Z +579,Xiangtan,23,2020-02-15T06:59:28Z +580,Xintai,23,2020-02-15T06:59:28Z +581,Xinxiang,23,2020-02-15T06:59:28Z +582,Yamuna Nagar,44,2020-02-15T06:59:28Z +583,Yangor,65,2020-02-15T06:59:28Z +584,Yantai,23,2020-02-15T06:59:28Z +585,Yaound,19,2020-02-15T06:59:28Z +586,Yerevan,7,2020-02-15T06:59:28Z +587,Yinchuan,23,2020-02-15T06:59:28Z +588,Yingkou,23,2020-02-15T06:59:28Z +589,York,102,2020-02-15T06:59:28Z +590,Yuncheng,23,2020-02-15T06:59:28Z +591,Yuzhou,23,2020-02-15T06:59:28Z +592,Zalantun,23,2020-02-15T06:59:28Z +593,Zanzibar,93,2020-02-15T06:59:28Z +594,Zaoyang,23,2020-02-15T06:59:28Z +595,Zapopan,60,2020-02-15T06:59:28Z +596,Zaria,69,2020-02-15T06:59:28Z +597,Zeleznogorsk,80,2020-02-15T06:59:28Z +598,Zhezqazghan,51,2020-02-15T06:59:28Z +599,Zhoushan,23,2020-02-15T06:59:28Z +600,Ziguinchor,83,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/country.csv b/drivers/csv/testdata/sakila-csv-noheader/country.csv new file mode 100644 index 00000000..9dbb0395 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/country.csv @@ -0,0 +1,109 @@ +1,Afghanistan,2020-02-15T06:59:27Z +2,Algeria,2020-02-15T06:59:27Z +3,American Samoa,2020-02-15T06:59:27Z +4,Angola,2020-02-15T06:59:27Z +5,Anguilla,2020-02-15T06:59:27Z +6,Argentina,2020-02-15T06:59:27Z +7,Armenia,2020-02-15T06:59:27Z +8,Australia,2020-02-15T06:59:27Z +9,Austria,2020-02-15T06:59:27Z +10,Azerbaijan,2020-02-15T06:59:27Z +11,Bahrain,2020-02-15T06:59:27Z +12,Bangladesh,2020-02-15T06:59:27Z +13,Belarus,2020-02-15T06:59:27Z +14,Bolivia,2020-02-15T06:59:27Z +15,Brazil,2020-02-15T06:59:27Z +16,Brunei,2020-02-15T06:59:27Z +17,Bulgaria,2020-02-15T06:59:27Z +18,Cambodia,2020-02-15T06:59:27Z +19,Cameroon,2020-02-15T06:59:27Z +20,Canada,2020-02-15T06:59:27Z +21,Chad,2020-02-15T06:59:27Z +22,Chile,2020-02-15T06:59:27Z +23,China,2020-02-15T06:59:27Z +24,Colombia,2020-02-15T06:59:27Z +25,"Congo, The Democratic Republic of the",2020-02-15T06:59:27Z +26,Czech Republic,2020-02-15T06:59:27Z +27,Dominican Republic,2020-02-15T06:59:27Z +28,Ecuador,2020-02-15T06:59:27Z +29,Egypt,2020-02-15T06:59:27Z +30,Estonia,2020-02-15T06:59:27Z +31,Ethiopia,2020-02-15T06:59:27Z +32,Faroe Islands,2020-02-15T06:59:27Z +33,Finland,2020-02-15T06:59:27Z +34,France,2020-02-15T06:59:27Z +35,French Guiana,2020-02-15T06:59:27Z +36,French Polynesia,2020-02-15T06:59:27Z +37,Gambia,2020-02-15T06:59:27Z +38,Germany,2020-02-15T06:59:27Z +39,Greece,2020-02-15T06:59:27Z +40,Greenland,2020-02-15T06:59:27Z +41,Holy See (Vatican City State),2020-02-15T06:59:28Z +42,Hong Kong,2020-02-15T06:59:28Z +43,Hungary,2020-02-15T06:59:28Z +44,India,2020-02-15T06:59:28Z +45,Indonesia,2020-02-15T06:59:28Z +46,Iran,2020-02-15T06:59:28Z +47,Iraq,2020-02-15T06:59:28Z +48,Israel,2020-02-15T06:59:28Z +49,Italy,2020-02-15T06:59:28Z +50,Japan,2020-02-15T06:59:28Z +51,Kazakstan,2020-02-15T06:59:28Z +52,Kenya,2020-02-15T06:59:28Z +53,Kuwait,2020-02-15T06:59:28Z +54,Latvia,2020-02-15T06:59:28Z +55,Liechtenstein,2020-02-15T06:59:28Z +56,Lithuania,2020-02-15T06:59:28Z +57,Madagascar,2020-02-15T06:59:28Z +58,Malawi,2020-02-15T06:59:28Z +59,Malaysia,2020-02-15T06:59:28Z +60,Mexico,2020-02-15T06:59:28Z +61,Moldova,2020-02-15T06:59:28Z +62,Morocco,2020-02-15T06:59:28Z +63,Mozambique,2020-02-15T06:59:28Z +64,Myanmar,2020-02-15T06:59:28Z +65,Nauru,2020-02-15T06:59:28Z +66,Nepal,2020-02-15T06:59:28Z +67,Netherlands,2020-02-15T06:59:28Z +68,New Zealand,2020-02-15T06:59:28Z +69,Nigeria,2020-02-15T06:59:28Z +70,North Korea,2020-02-15T06:59:28Z +71,Oman,2020-02-15T06:59:28Z +72,Pakistan,2020-02-15T06:59:28Z +73,Paraguay,2020-02-15T06:59:28Z +74,Peru,2020-02-15T06:59:28Z +75,Philippines,2020-02-15T06:59:28Z +76,Poland,2020-02-15T06:59:28Z +77,Puerto Rico,2020-02-15T06:59:28Z +78,Romania,2020-02-15T06:59:28Z +79,Runion,2020-02-15T06:59:28Z +80,Russian Federation,2020-02-15T06:59:28Z +81,Saint Vincent and the Grenadines,2020-02-15T06:59:28Z +82,Saudi Arabia,2020-02-15T06:59:28Z +83,Senegal,2020-02-15T06:59:28Z +84,Slovakia,2020-02-15T06:59:28Z +85,South Africa,2020-02-15T06:59:28Z +86,South Korea,2020-02-15T06:59:28Z +87,Spain,2020-02-15T06:59:28Z +88,Sri Lanka,2020-02-15T06:59:28Z +89,Sudan,2020-02-15T06:59:28Z +90,Sweden,2020-02-15T06:59:28Z +91,Switzerland,2020-02-15T06:59:28Z +92,Taiwan,2020-02-15T06:59:28Z +93,Tanzania,2020-02-15T06:59:28Z +94,Thailand,2020-02-15T06:59:28Z +95,Tonga,2020-02-15T06:59:28Z +96,Tunisia,2020-02-15T06:59:28Z +97,Turkey,2020-02-15T06:59:28Z +98,Turkmenistan,2020-02-15T06:59:28Z +99,Tuvalu,2020-02-15T06:59:28Z +100,Ukraine,2020-02-15T06:59:28Z +101,United Arab Emirates,2020-02-15T06:59:28Z +102,United Kingdom,2020-02-15T06:59:28Z +103,United States,2020-02-15T06:59:28Z +104,Venezuela,2020-02-15T06:59:28Z +105,Vietnam,2020-02-15T06:59:28Z +106,"Virgin Islands, U.S.",2020-02-15T06:59:28Z +107,Yemen,2020-02-15T06:59:28Z +108,Yugoslavia,2020-02-15T06:59:28Z +109,Zambia,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/customer.csv b/drivers/csv/testdata/sakila-csv-noheader/customer.csv new file mode 100644 index 00000000..3a7faf05 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/customer.csv @@ -0,0 +1,599 @@ +1,1,MARY,SMITH,MARY.SMITH@sakilacustomer.org,5,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +2,1,PATRICIA,JOHNSON,PATRICIA.JOHNSON@sakilacustomer.org,6,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +3,1,LINDA,WILLIAMS,LINDA.WILLIAMS@sakilacustomer.org,7,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +4,2,BARBARA,JONES,BARBARA.JONES@sakilacustomer.org,8,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +5,1,ELIZABETH,BROWN,ELIZABETH.BROWN@sakilacustomer.org,9,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +6,2,JENNIFER,DAVIS,JENNIFER.DAVIS@sakilacustomer.org,10,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +7,1,MARIA,MILLER,MARIA.MILLER@sakilacustomer.org,11,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +8,2,SUSAN,WILSON,SUSAN.WILSON@sakilacustomer.org,12,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +9,2,MARGARET,MOORE,MARGARET.MOORE@sakilacustomer.org,13,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +10,1,DOROTHY,TAYLOR,DOROTHY.TAYLOR@sakilacustomer.org,14,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +11,2,LISA,ANDERSON,LISA.ANDERSON@sakilacustomer.org,15,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +12,1,NANCY,THOMAS,NANCY.THOMAS@sakilacustomer.org,16,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +13,2,KAREN,JACKSON,KAREN.JACKSON@sakilacustomer.org,17,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +14,2,BETTY,WHITE,BETTY.WHITE@sakilacustomer.org,18,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +15,1,HELEN,HARRIS,HELEN.HARRIS@sakilacustomer.org,19,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +16,2,SANDRA,MARTIN,SANDRA.MARTIN@sakilacustomer.org,20,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +17,1,DONNA,THOMPSON,DONNA.THOMPSON@sakilacustomer.org,21,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +18,2,CAROL,GARCIA,CAROL.GARCIA@sakilacustomer.org,22,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +19,1,RUTH,MARTINEZ,RUTH.MARTINEZ@sakilacustomer.org,23,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +20,2,SHARON,ROBINSON,SHARON.ROBINSON@sakilacustomer.org,24,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +21,1,MICHELLE,CLARK,MICHELLE.CLARK@sakilacustomer.org,25,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +22,1,LAURA,RODRIGUEZ,LAURA.RODRIGUEZ@sakilacustomer.org,26,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +23,2,SARAH,LEWIS,SARAH.LEWIS@sakilacustomer.org,27,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +24,2,KIMBERLY,LEE,KIMBERLY.LEE@sakilacustomer.org,28,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +25,1,DEBORAH,WALKER,DEBORAH.WALKER@sakilacustomer.org,29,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +26,2,JESSICA,HALL,JESSICA.HALL@sakilacustomer.org,30,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +27,2,SHIRLEY,ALLEN,SHIRLEY.ALLEN@sakilacustomer.org,31,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +28,1,CYNTHIA,YOUNG,CYNTHIA.YOUNG@sakilacustomer.org,32,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +29,2,ANGELA,HERNANDEZ,ANGELA.HERNANDEZ@sakilacustomer.org,33,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +30,1,MELISSA,KING,MELISSA.KING@sakilacustomer.org,34,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +31,2,BRENDA,WRIGHT,BRENDA.WRIGHT@sakilacustomer.org,35,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +32,1,AMY,LOPEZ,AMY.LOPEZ@sakilacustomer.org,36,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +33,2,ANNA,HILL,ANNA.HILL@sakilacustomer.org,37,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +34,2,REBECCA,SCOTT,REBECCA.SCOTT@sakilacustomer.org,38,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +35,2,VIRGINIA,GREEN,VIRGINIA.GREEN@sakilacustomer.org,39,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +36,2,KATHLEEN,ADAMS,KATHLEEN.ADAMS@sakilacustomer.org,40,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +37,1,PAMELA,BAKER,PAMELA.BAKER@sakilacustomer.org,41,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +38,1,MARTHA,GONZALEZ,MARTHA.GONZALEZ@sakilacustomer.org,42,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +39,1,DEBRA,NELSON,DEBRA.NELSON@sakilacustomer.org,43,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +40,2,AMANDA,CARTER,AMANDA.CARTER@sakilacustomer.org,44,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +41,1,STEPHANIE,MITCHELL,STEPHANIE.MITCHELL@sakilacustomer.org,45,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +42,2,CAROLYN,PEREZ,CAROLYN.PEREZ@sakilacustomer.org,46,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +43,2,CHRISTINE,ROBERTS,CHRISTINE.ROBERTS@sakilacustomer.org,47,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +44,1,MARIE,TURNER,MARIE.TURNER@sakilacustomer.org,48,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +45,1,JANET,PHILLIPS,JANET.PHILLIPS@sakilacustomer.org,49,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +46,2,CATHERINE,CAMPBELL,CATHERINE.CAMPBELL@sakilacustomer.org,50,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +47,1,FRANCES,PARKER,FRANCES.PARKER@sakilacustomer.org,51,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +48,1,ANN,EVANS,ANN.EVANS@sakilacustomer.org,52,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +49,2,JOYCE,EDWARDS,JOYCE.EDWARDS@sakilacustomer.org,53,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +50,1,DIANE,COLLINS,DIANE.COLLINS@sakilacustomer.org,54,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +51,1,ALICE,STEWART,ALICE.STEWART@sakilacustomer.org,55,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +52,1,JULIE,SANCHEZ,JULIE.SANCHEZ@sakilacustomer.org,56,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +53,1,HEATHER,MORRIS,HEATHER.MORRIS@sakilacustomer.org,57,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +54,1,TERESA,ROGERS,TERESA.ROGERS@sakilacustomer.org,58,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +55,2,DORIS,REED,DORIS.REED@sakilacustomer.org,59,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +56,1,GLORIA,COOK,GLORIA.COOK@sakilacustomer.org,60,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +57,2,EVELYN,MORGAN,EVELYN.MORGAN@sakilacustomer.org,61,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +58,1,JEAN,BELL,JEAN.BELL@sakilacustomer.org,62,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +59,1,CHERYL,MURPHY,CHERYL.MURPHY@sakilacustomer.org,63,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +60,1,MILDRED,BAILEY,MILDRED.BAILEY@sakilacustomer.org,64,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +61,2,KATHERINE,RIVERA,KATHERINE.RIVERA@sakilacustomer.org,65,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +62,1,JOAN,COOPER,JOAN.COOPER@sakilacustomer.org,66,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +63,1,ASHLEY,RICHARDSON,ASHLEY.RICHARDSON@sakilacustomer.org,67,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +64,2,JUDITH,COX,JUDITH.COX@sakilacustomer.org,68,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +65,2,ROSE,HOWARD,ROSE.HOWARD@sakilacustomer.org,69,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +66,2,JANICE,WARD,JANICE.WARD@sakilacustomer.org,70,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +67,1,KELLY,TORRES,KELLY.TORRES@sakilacustomer.org,71,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +68,1,NICOLE,PETERSON,NICOLE.PETERSON@sakilacustomer.org,72,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +69,2,JUDY,GRAY,JUDY.GRAY@sakilacustomer.org,73,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +70,2,CHRISTINA,RAMIREZ,CHRISTINA.RAMIREZ@sakilacustomer.org,74,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +71,1,KATHY,JAMES,KATHY.JAMES@sakilacustomer.org,75,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +72,2,THERESA,WATSON,THERESA.WATSON@sakilacustomer.org,76,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +73,2,BEVERLY,BROOKS,BEVERLY.BROOKS@sakilacustomer.org,77,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +74,1,DENISE,KELLY,DENISE.KELLY@sakilacustomer.org,78,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +75,2,TAMMY,SANDERS,TAMMY.SANDERS@sakilacustomer.org,79,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +76,2,IRENE,PRICE,IRENE.PRICE@sakilacustomer.org,80,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +77,2,JANE,BENNETT,JANE.BENNETT@sakilacustomer.org,81,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +78,1,LORI,WOOD,LORI.WOOD@sakilacustomer.org,82,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +79,1,RACHEL,BARNES,RACHEL.BARNES@sakilacustomer.org,83,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +80,1,MARILYN,ROSS,MARILYN.ROSS@sakilacustomer.org,84,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +81,1,ANDREA,HENDERSON,ANDREA.HENDERSON@sakilacustomer.org,85,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +82,1,KATHRYN,COLEMAN,KATHRYN.COLEMAN@sakilacustomer.org,86,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +83,1,LOUISE,JENKINS,LOUISE.JENKINS@sakilacustomer.org,87,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +84,2,SARA,PERRY,SARA.PERRY@sakilacustomer.org,88,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +85,2,ANNE,POWELL,ANNE.POWELL@sakilacustomer.org,89,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +86,2,JACQUELINE,LONG,JACQUELINE.LONG@sakilacustomer.org,90,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +87,1,WANDA,PATTERSON,WANDA.PATTERSON@sakilacustomer.org,91,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +88,2,BONNIE,HUGHES,BONNIE.HUGHES@sakilacustomer.org,92,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +89,1,JULIA,FLORES,JULIA.FLORES@sakilacustomer.org,93,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +90,2,RUBY,WASHINGTON,RUBY.WASHINGTON@sakilacustomer.org,94,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +91,2,LOIS,BUTLER,LOIS.BUTLER@sakilacustomer.org,95,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +92,2,TINA,SIMMONS,TINA.SIMMONS@sakilacustomer.org,96,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +93,1,PHYLLIS,FOSTER,PHYLLIS.FOSTER@sakilacustomer.org,97,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +94,1,NORMA,GONZALES,NORMA.GONZALES@sakilacustomer.org,98,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +95,2,PAULA,BRYANT,PAULA.BRYANT@sakilacustomer.org,99,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +96,1,DIANA,ALEXANDER,DIANA.ALEXANDER@sakilacustomer.org,100,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +97,2,ANNIE,RUSSELL,ANNIE.RUSSELL@sakilacustomer.org,101,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +98,1,LILLIAN,GRIFFIN,LILLIAN.GRIFFIN@sakilacustomer.org,102,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +99,2,EMILY,DIAZ,EMILY.DIAZ@sakilacustomer.org,103,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +100,1,ROBIN,HAYES,ROBIN.HAYES@sakilacustomer.org,104,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +101,1,PEGGY,MYERS,PEGGY.MYERS@sakilacustomer.org,105,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +102,1,CRYSTAL,FORD,CRYSTAL.FORD@sakilacustomer.org,106,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +103,1,GLADYS,HAMILTON,GLADYS.HAMILTON@sakilacustomer.org,107,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +104,1,RITA,GRAHAM,RITA.GRAHAM@sakilacustomer.org,108,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +105,1,DAWN,SULLIVAN,DAWN.SULLIVAN@sakilacustomer.org,109,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +106,1,CONNIE,WALLACE,CONNIE.WALLACE@sakilacustomer.org,110,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +107,1,FLORENCE,WOODS,FLORENCE.WOODS@sakilacustomer.org,111,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +108,1,TRACY,COLE,TRACY.COLE@sakilacustomer.org,112,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +109,2,EDNA,WEST,EDNA.WEST@sakilacustomer.org,113,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +110,2,TIFFANY,JORDAN,TIFFANY.JORDAN@sakilacustomer.org,114,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +111,1,CARMEN,OWENS,CARMEN.OWENS@sakilacustomer.org,115,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +112,2,ROSA,REYNOLDS,ROSA.REYNOLDS@sakilacustomer.org,116,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +113,2,CINDY,FISHER,CINDY.FISHER@sakilacustomer.org,117,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +114,2,GRACE,ELLIS,GRACE.ELLIS@sakilacustomer.org,118,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +115,1,WENDY,HARRISON,WENDY.HARRISON@sakilacustomer.org,119,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +116,1,VICTORIA,GIBSON,VICTORIA.GIBSON@sakilacustomer.org,120,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +117,1,EDITH,MCDONALD,EDITH.MCDONALD@sakilacustomer.org,121,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +118,1,KIM,CRUZ,KIM.CRUZ@sakilacustomer.org,122,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +119,1,SHERRY,MARSHALL,SHERRY.MARSHALL@sakilacustomer.org,123,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +120,2,SYLVIA,ORTIZ,SYLVIA.ORTIZ@sakilacustomer.org,124,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +121,1,JOSEPHINE,GOMEZ,JOSEPHINE.GOMEZ@sakilacustomer.org,125,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +122,1,THELMA,MURRAY,THELMA.MURRAY@sakilacustomer.org,126,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +123,2,SHANNON,FREEMAN,SHANNON.FREEMAN@sakilacustomer.org,127,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +124,1,SHEILA,WELLS,SHEILA.WELLS@sakilacustomer.org,128,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +125,1,ETHEL,WEBB,ETHEL.WEBB@sakilacustomer.org,129,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +126,1,ELLEN,SIMPSON,ELLEN.SIMPSON@sakilacustomer.org,130,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +127,2,ELAINE,STEVENS,ELAINE.STEVENS@sakilacustomer.org,131,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +128,1,MARJORIE,TUCKER,MARJORIE.TUCKER@sakilacustomer.org,132,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +129,1,CARRIE,PORTER,CARRIE.PORTER@sakilacustomer.org,133,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +130,1,CHARLOTTE,HUNTER,CHARLOTTE.HUNTER@sakilacustomer.org,134,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +131,2,MONICA,HICKS,MONICA.HICKS@sakilacustomer.org,135,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +132,2,ESTHER,CRAWFORD,ESTHER.CRAWFORD@sakilacustomer.org,136,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +133,1,PAULINE,HENRY,PAULINE.HENRY@sakilacustomer.org,137,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +134,1,EMMA,BOYD,EMMA.BOYD@sakilacustomer.org,138,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +135,2,JUANITA,MASON,JUANITA.MASON@sakilacustomer.org,139,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +136,2,ANITA,MORALES,ANITA.MORALES@sakilacustomer.org,140,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +137,2,RHONDA,KENNEDY,RHONDA.KENNEDY@sakilacustomer.org,141,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +138,1,HAZEL,WARREN,HAZEL.WARREN@sakilacustomer.org,142,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +139,1,AMBER,DIXON,AMBER.DIXON@sakilacustomer.org,143,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +140,1,EVA,RAMOS,EVA.RAMOS@sakilacustomer.org,144,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +141,1,DEBBIE,REYES,DEBBIE.REYES@sakilacustomer.org,145,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +142,1,APRIL,BURNS,APRIL.BURNS@sakilacustomer.org,146,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +143,1,LESLIE,GORDON,LESLIE.GORDON@sakilacustomer.org,147,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +144,1,CLARA,SHAW,CLARA.SHAW@sakilacustomer.org,148,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +145,1,LUCILLE,HOLMES,LUCILLE.HOLMES@sakilacustomer.org,149,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +146,1,JAMIE,RICE,JAMIE.RICE@sakilacustomer.org,150,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +147,2,JOANNE,ROBERTSON,JOANNE.ROBERTSON@sakilacustomer.org,151,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +148,1,ELEANOR,HUNT,ELEANOR.HUNT@sakilacustomer.org,152,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +149,1,VALERIE,BLACK,VALERIE.BLACK@sakilacustomer.org,153,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +150,2,DANIELLE,DANIELS,DANIELLE.DANIELS@sakilacustomer.org,154,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +151,2,MEGAN,PALMER,MEGAN.PALMER@sakilacustomer.org,155,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +152,1,ALICIA,MILLS,ALICIA.MILLS@sakilacustomer.org,156,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +153,2,SUZANNE,NICHOLS,SUZANNE.NICHOLS@sakilacustomer.org,157,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +154,2,MICHELE,GRANT,MICHELE.GRANT@sakilacustomer.org,158,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +155,1,GAIL,KNIGHT,GAIL.KNIGHT@sakilacustomer.org,159,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +156,1,BERTHA,FERGUSON,BERTHA.FERGUSON@sakilacustomer.org,160,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +157,2,DARLENE,ROSE,DARLENE.ROSE@sakilacustomer.org,161,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +158,1,VERONICA,STONE,VERONICA.STONE@sakilacustomer.org,162,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +159,1,JILL,HAWKINS,JILL.HAWKINS@sakilacustomer.org,163,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +160,2,ERIN,DUNN,ERIN.DUNN@sakilacustomer.org,164,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +161,1,GERALDINE,PERKINS,GERALDINE.PERKINS@sakilacustomer.org,165,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +162,2,LAUREN,HUDSON,LAUREN.HUDSON@sakilacustomer.org,166,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +163,1,CATHY,SPENCER,CATHY.SPENCER@sakilacustomer.org,167,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +164,2,JOANN,GARDNER,JOANN.GARDNER@sakilacustomer.org,168,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +165,2,LORRAINE,STEPHENS,LORRAINE.STEPHENS@sakilacustomer.org,169,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +166,1,LYNN,PAYNE,LYNN.PAYNE@sakilacustomer.org,170,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +167,2,SALLY,PIERCE,SALLY.PIERCE@sakilacustomer.org,171,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +168,1,REGINA,BERRY,REGINA.BERRY@sakilacustomer.org,172,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +169,2,ERICA,MATTHEWS,ERICA.MATTHEWS@sakilacustomer.org,173,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +170,1,BEATRICE,ARNOLD,BEATRICE.ARNOLD@sakilacustomer.org,174,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +171,2,DOLORES,WAGNER,DOLORES.WAGNER@sakilacustomer.org,175,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +172,1,BERNICE,WILLIS,BERNICE.WILLIS@sakilacustomer.org,176,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +173,1,AUDREY,RAY,AUDREY.RAY@sakilacustomer.org,177,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +174,2,YVONNE,WATKINS,YVONNE.WATKINS@sakilacustomer.org,178,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +175,1,ANNETTE,OLSON,ANNETTE.OLSON@sakilacustomer.org,179,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +176,1,JUNE,CARROLL,JUNE.CARROLL@sakilacustomer.org,180,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +177,2,SAMANTHA,DUNCAN,SAMANTHA.DUNCAN@sakilacustomer.org,181,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +178,2,MARION,SNYDER,MARION.SNYDER@sakilacustomer.org,182,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +179,1,DANA,HART,DANA.HART@sakilacustomer.org,183,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +180,2,STACY,CUNNINGHAM,STACY.CUNNINGHAM@sakilacustomer.org,184,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +181,2,ANA,BRADLEY,ANA.BRADLEY@sakilacustomer.org,185,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +182,1,RENEE,LANE,RENEE.LANE@sakilacustomer.org,186,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +183,2,IDA,ANDREWS,IDA.ANDREWS@sakilacustomer.org,187,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +184,1,VIVIAN,RUIZ,VIVIAN.RUIZ@sakilacustomer.org,188,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +185,1,ROBERTA,HARPER,ROBERTA.HARPER@sakilacustomer.org,189,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +186,2,HOLLY,FOX,HOLLY.FOX@sakilacustomer.org,190,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +187,2,BRITTANY,RILEY,BRITTANY.RILEY@sakilacustomer.org,191,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +188,1,MELANIE,ARMSTRONG,MELANIE.ARMSTRONG@sakilacustomer.org,192,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +189,1,LORETTA,CARPENTER,LORETTA.CARPENTER@sakilacustomer.org,193,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +190,2,YOLANDA,WEAVER,YOLANDA.WEAVER@sakilacustomer.org,194,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +191,1,JEANETTE,GREENE,JEANETTE.GREENE@sakilacustomer.org,195,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +192,1,LAURIE,LAWRENCE,LAURIE.LAWRENCE@sakilacustomer.org,196,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +193,2,KATIE,ELLIOTT,KATIE.ELLIOTT@sakilacustomer.org,197,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +194,2,KRISTEN,CHAVEZ,KRISTEN.CHAVEZ@sakilacustomer.org,198,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +195,1,VANESSA,SIMS,VANESSA.SIMS@sakilacustomer.org,199,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +196,1,ALMA,AUSTIN,ALMA.AUSTIN@sakilacustomer.org,200,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +197,2,SUE,PETERS,SUE.PETERS@sakilacustomer.org,201,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +198,2,ELSIE,KELLEY,ELSIE.KELLEY@sakilacustomer.org,202,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +199,2,BETH,FRANKLIN,BETH.FRANKLIN@sakilacustomer.org,203,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +200,2,JEANNE,LAWSON,JEANNE.LAWSON@sakilacustomer.org,204,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +201,1,VICKI,FIELDS,VICKI.FIELDS@sakilacustomer.org,205,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +202,2,CARLA,GUTIERREZ,CARLA.GUTIERREZ@sakilacustomer.org,206,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +203,1,TARA,RYAN,TARA.RYAN@sakilacustomer.org,207,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +204,1,ROSEMARY,SCHMIDT,ROSEMARY.SCHMIDT@sakilacustomer.org,208,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +205,2,EILEEN,CARR,EILEEN.CARR@sakilacustomer.org,209,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +206,1,TERRI,VASQUEZ,TERRI.VASQUEZ@sakilacustomer.org,210,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +207,1,GERTRUDE,CASTILLO,GERTRUDE.CASTILLO@sakilacustomer.org,211,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +208,1,LUCY,WHEELER,LUCY.WHEELER@sakilacustomer.org,212,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +209,2,TONYA,CHAPMAN,TONYA.CHAPMAN@sakilacustomer.org,213,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +210,2,ELLA,OLIVER,ELLA.OLIVER@sakilacustomer.org,214,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +211,1,STACEY,MONTGOMERY,STACEY.MONTGOMERY@sakilacustomer.org,215,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +212,2,WILMA,RICHARDS,WILMA.RICHARDS@sakilacustomer.org,216,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +213,1,GINA,WILLIAMSON,GINA.WILLIAMSON@sakilacustomer.org,217,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +214,1,KRISTIN,JOHNSTON,KRISTIN.JOHNSTON@sakilacustomer.org,218,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +215,2,JESSIE,BANKS,JESSIE.BANKS@sakilacustomer.org,219,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +216,1,NATALIE,MEYER,NATALIE.MEYER@sakilacustomer.org,220,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +217,2,AGNES,BISHOP,AGNES.BISHOP@sakilacustomer.org,221,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +218,1,VERA,MCCOY,VERA.MCCOY@sakilacustomer.org,222,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +219,2,WILLIE,HOWELL,WILLIE.HOWELL@sakilacustomer.org,223,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +220,2,CHARLENE,ALVAREZ,CHARLENE.ALVAREZ@sakilacustomer.org,224,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +221,1,BESSIE,MORRISON,BESSIE.MORRISON@sakilacustomer.org,225,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +222,2,DELORES,HANSEN,DELORES.HANSEN@sakilacustomer.org,226,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +223,1,MELINDA,FERNANDEZ,MELINDA.FERNANDEZ@sakilacustomer.org,227,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +224,2,PEARL,GARZA,PEARL.GARZA@sakilacustomer.org,228,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +225,1,ARLENE,HARVEY,ARLENE.HARVEY@sakilacustomer.org,229,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +226,2,MAUREEN,LITTLE,MAUREEN.LITTLE@sakilacustomer.org,230,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +227,1,COLLEEN,BURTON,COLLEEN.BURTON@sakilacustomer.org,231,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +228,2,ALLISON,STANLEY,ALLISON.STANLEY@sakilacustomer.org,232,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +229,1,TAMARA,NGUYEN,TAMARA.NGUYEN@sakilacustomer.org,233,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +230,2,JOY,GEORGE,JOY.GEORGE@sakilacustomer.org,234,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +231,1,GEORGIA,JACOBS,GEORGIA.JACOBS@sakilacustomer.org,235,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +232,2,CONSTANCE,REID,CONSTANCE.REID@sakilacustomer.org,236,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +233,2,LILLIE,KIM,LILLIE.KIM@sakilacustomer.org,237,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +234,1,CLAUDIA,FULLER,CLAUDIA.FULLER@sakilacustomer.org,238,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +235,1,JACKIE,LYNCH,JACKIE.LYNCH@sakilacustomer.org,239,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +236,1,MARCIA,DEAN,MARCIA.DEAN@sakilacustomer.org,240,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +237,1,TANYA,GILBERT,TANYA.GILBERT@sakilacustomer.org,241,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +238,1,NELLIE,GARRETT,NELLIE.GARRETT@sakilacustomer.org,242,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +239,2,MINNIE,ROMERO,MINNIE.ROMERO@sakilacustomer.org,243,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +240,1,MARLENE,WELCH,MARLENE.WELCH@sakilacustomer.org,244,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +241,2,HEIDI,LARSON,HEIDI.LARSON@sakilacustomer.org,245,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +242,1,GLENDA,FRAZIER,GLENDA.FRAZIER@sakilacustomer.org,246,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +243,1,LYDIA,BURKE,LYDIA.BURKE@sakilacustomer.org,247,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +244,2,VIOLA,HANSON,VIOLA.HANSON@sakilacustomer.org,248,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +245,1,COURTNEY,DAY,COURTNEY.DAY@sakilacustomer.org,249,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +246,1,MARIAN,MENDOZA,MARIAN.MENDOZA@sakilacustomer.org,250,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +247,1,STELLA,MORENO,STELLA.MORENO@sakilacustomer.org,251,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +248,1,CAROLINE,BOWMAN,CAROLINE.BOWMAN@sakilacustomer.org,252,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +249,2,DORA,MEDINA,DORA.MEDINA@sakilacustomer.org,253,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +250,2,JO,FOWLER,JO.FOWLER@sakilacustomer.org,254,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +251,2,VICKIE,BREWER,VICKIE.BREWER@sakilacustomer.org,255,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +252,2,MATTIE,HOFFMAN,MATTIE.HOFFMAN@sakilacustomer.org,256,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +253,1,TERRY,CARLSON,TERRY.CARLSON@sakilacustomer.org,258,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +254,2,MAXINE,SILVA,MAXINE.SILVA@sakilacustomer.org,259,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +255,2,IRMA,PEARSON,IRMA.PEARSON@sakilacustomer.org,260,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +256,2,MABEL,HOLLAND,MABEL.HOLLAND@sakilacustomer.org,261,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +257,2,MARSHA,DOUGLAS,MARSHA.DOUGLAS@sakilacustomer.org,262,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +258,1,MYRTLE,FLEMING,MYRTLE.FLEMING@sakilacustomer.org,263,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +259,2,LENA,JENSEN,LENA.JENSEN@sakilacustomer.org,264,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +260,1,CHRISTY,VARGAS,CHRISTY.VARGAS@sakilacustomer.org,265,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +261,1,DEANNA,BYRD,DEANNA.BYRD@sakilacustomer.org,266,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +262,2,PATSY,DAVIDSON,PATSY.DAVIDSON@sakilacustomer.org,267,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +263,1,HILDA,HOPKINS,HILDA.HOPKINS@sakilacustomer.org,268,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +264,1,GWENDOLYN,MAY,GWENDOLYN.MAY@sakilacustomer.org,269,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +265,2,JENNIE,TERRY,JENNIE.TERRY@sakilacustomer.org,270,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +266,2,NORA,HERRERA,NORA.HERRERA@sakilacustomer.org,271,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +267,1,MARGIE,WADE,MARGIE.WADE@sakilacustomer.org,272,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +268,1,NINA,SOTO,NINA.SOTO@sakilacustomer.org,273,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +269,1,CASSANDRA,WALTERS,CASSANDRA.WALTERS@sakilacustomer.org,274,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +270,1,LEAH,CURTIS,LEAH.CURTIS@sakilacustomer.org,275,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +271,1,PENNY,NEAL,PENNY.NEAL@sakilacustomer.org,276,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +272,1,KAY,CALDWELL,KAY.CALDWELL@sakilacustomer.org,277,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +273,2,PRISCILLA,LOWE,PRISCILLA.LOWE@sakilacustomer.org,278,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +274,1,NAOMI,JENNINGS,NAOMI.JENNINGS@sakilacustomer.org,279,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +275,2,CAROLE,BARNETT,CAROLE.BARNETT@sakilacustomer.org,280,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +276,1,BRANDY,GRAVES,BRANDY.GRAVES@sakilacustomer.org,281,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +277,2,OLGA,JIMENEZ,OLGA.JIMENEZ@sakilacustomer.org,282,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +278,2,BILLIE,HORTON,BILLIE.HORTON@sakilacustomer.org,283,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +279,2,DIANNE,SHELTON,DIANNE.SHELTON@sakilacustomer.org,284,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +280,2,TRACEY,BARRETT,TRACEY.BARRETT@sakilacustomer.org,285,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +281,2,LEONA,OBRIEN,LEONA.OBRIEN@sakilacustomer.org,286,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +282,2,JENNY,CASTRO,JENNY.CASTRO@sakilacustomer.org,287,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +283,1,FELICIA,SUTTON,FELICIA.SUTTON@sakilacustomer.org,288,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +284,1,SONIA,GREGORY,SONIA.GREGORY@sakilacustomer.org,289,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +285,1,MIRIAM,MCKINNEY,MIRIAM.MCKINNEY@sakilacustomer.org,290,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +286,1,VELMA,LUCAS,VELMA.LUCAS@sakilacustomer.org,291,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +287,2,BECKY,MILES,BECKY.MILES@sakilacustomer.org,292,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +288,1,BOBBIE,CRAIG,BOBBIE.CRAIG@sakilacustomer.org,293,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +289,1,VIOLET,RODRIQUEZ,VIOLET.RODRIQUEZ@sakilacustomer.org,294,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +290,1,KRISTINA,CHAMBERS,KRISTINA.CHAMBERS@sakilacustomer.org,295,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +291,1,TONI,HOLT,TONI.HOLT@sakilacustomer.org,296,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +292,2,MISTY,LAMBERT,MISTY.LAMBERT@sakilacustomer.org,297,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +293,2,MAE,FLETCHER,MAE.FLETCHER@sakilacustomer.org,298,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +294,2,SHELLY,WATTS,SHELLY.WATTS@sakilacustomer.org,299,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +295,1,DAISY,BATES,DAISY.BATES@sakilacustomer.org,300,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +296,2,RAMONA,HALE,RAMONA.HALE@sakilacustomer.org,301,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +297,1,SHERRI,RHODES,SHERRI.RHODES@sakilacustomer.org,302,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +298,1,ERIKA,PENA,ERIKA.PENA@sakilacustomer.org,303,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +299,2,JAMES,GANNON,JAMES.GANNON@sakilacustomer.org,304,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +300,1,JOHN,FARNSWORTH,JOHN.FARNSWORTH@sakilacustomer.org,305,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +301,2,ROBERT,BAUGHMAN,ROBERT.BAUGHMAN@sakilacustomer.org,306,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +302,1,MICHAEL,SILVERMAN,MICHAEL.SILVERMAN@sakilacustomer.org,307,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +303,2,WILLIAM,SATTERFIELD,WILLIAM.SATTERFIELD@sakilacustomer.org,308,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +304,2,DAVID,ROYAL,DAVID.ROYAL@sakilacustomer.org,309,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +305,1,RICHARD,MCCRARY,RICHARD.MCCRARY@sakilacustomer.org,310,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +306,1,CHARLES,KOWALSKI,CHARLES.KOWALSKI@sakilacustomer.org,311,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +307,2,JOSEPH,JOY,JOSEPH.JOY@sakilacustomer.org,312,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +308,1,THOMAS,GRIGSBY,THOMAS.GRIGSBY@sakilacustomer.org,313,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +309,1,CHRISTOPHER,GRECO,CHRISTOPHER.GRECO@sakilacustomer.org,314,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +310,2,DANIEL,CABRAL,DANIEL.CABRAL@sakilacustomer.org,315,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +311,2,PAUL,TROUT,PAUL.TROUT@sakilacustomer.org,316,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +312,2,MARK,RINEHART,MARK.RINEHART@sakilacustomer.org,317,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +313,2,DONALD,MAHON,DONALD.MAHON@sakilacustomer.org,318,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +314,1,GEORGE,LINTON,GEORGE.LINTON@sakilacustomer.org,319,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +315,2,KENNETH,GOODEN,KENNETH.GOODEN@sakilacustomer.org,320,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +316,1,STEVEN,CURLEY,STEVEN.CURLEY@sakilacustomer.org,321,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +317,2,EDWARD,BAUGH,EDWARD.BAUGH@sakilacustomer.org,322,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +318,1,BRIAN,WYMAN,BRIAN.WYMAN@sakilacustomer.org,323,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +319,2,RONALD,WEINER,RONALD.WEINER@sakilacustomer.org,324,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +320,2,ANTHONY,SCHWAB,ANTHONY.SCHWAB@sakilacustomer.org,325,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +321,1,KEVIN,SCHULER,KEVIN.SCHULER@sakilacustomer.org,326,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +322,1,JASON,MORRISSEY,JASON.MORRISSEY@sakilacustomer.org,327,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +323,2,MATTHEW,MAHAN,MATTHEW.MAHAN@sakilacustomer.org,328,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +324,2,GARY,COY,GARY.COY@sakilacustomer.org,329,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +325,1,TIMOTHY,BUNN,TIMOTHY.BUNN@sakilacustomer.org,330,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +326,1,JOSE,ANDREW,JOSE.ANDREW@sakilacustomer.org,331,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +327,2,LARRY,THRASHER,LARRY.THRASHER@sakilacustomer.org,332,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +328,2,JEFFREY,SPEAR,JEFFREY.SPEAR@sakilacustomer.org,333,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +329,2,FRANK,WAGGONER,FRANK.WAGGONER@sakilacustomer.org,334,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +330,1,SCOTT,SHELLEY,SCOTT.SHELLEY@sakilacustomer.org,335,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +331,1,ERIC,ROBERT,ERIC.ROBERT@sakilacustomer.org,336,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +332,1,STEPHEN,QUALLS,STEPHEN.QUALLS@sakilacustomer.org,337,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +333,2,ANDREW,PURDY,ANDREW.PURDY@sakilacustomer.org,338,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +334,2,RAYMOND,MCWHORTER,RAYMOND.MCWHORTER@sakilacustomer.org,339,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +335,1,GREGORY,MAULDIN,GREGORY.MAULDIN@sakilacustomer.org,340,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +336,1,JOSHUA,MARK,JOSHUA.MARK@sakilacustomer.org,341,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +337,1,JERRY,JORDON,JERRY.JORDON@sakilacustomer.org,342,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +338,1,DENNIS,GILMAN,DENNIS.GILMAN@sakilacustomer.org,343,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +339,2,WALTER,PERRYMAN,WALTER.PERRYMAN@sakilacustomer.org,344,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +340,1,PATRICK,NEWSOM,PATRICK.NEWSOM@sakilacustomer.org,345,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +341,1,PETER,MENARD,PETER.MENARD@sakilacustomer.org,346,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +342,1,HAROLD,MARTINO,HAROLD.MARTINO@sakilacustomer.org,347,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +343,1,DOUGLAS,GRAF,DOUGLAS.GRAF@sakilacustomer.org,348,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +344,1,HENRY,BILLINGSLEY,HENRY.BILLINGSLEY@sakilacustomer.org,349,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +345,1,CARL,ARTIS,CARL.ARTIS@sakilacustomer.org,350,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +346,1,ARTHUR,SIMPKINS,ARTHUR.SIMPKINS@sakilacustomer.org,351,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +347,2,RYAN,SALISBURY,RYAN.SALISBURY@sakilacustomer.org,352,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +348,2,ROGER,QUINTANILLA,ROGER.QUINTANILLA@sakilacustomer.org,353,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +349,2,JOE,GILLILAND,JOE.GILLILAND@sakilacustomer.org,354,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +350,1,JUAN,FRALEY,JUAN.FRALEY@sakilacustomer.org,355,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +351,1,JACK,FOUST,JACK.FOUST@sakilacustomer.org,356,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +352,1,ALBERT,CROUSE,ALBERT.CROUSE@sakilacustomer.org,357,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +353,1,JONATHAN,SCARBOROUGH,JONATHAN.SCARBOROUGH@sakilacustomer.org,358,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +354,2,JUSTIN,NGO,JUSTIN.NGO@sakilacustomer.org,359,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +355,2,TERRY,GRISSOM,TERRY.GRISSOM@sakilacustomer.org,360,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +356,2,GERALD,FULTZ,GERALD.FULTZ@sakilacustomer.org,361,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +357,1,KEITH,RICO,KEITH.RICO@sakilacustomer.org,362,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +358,2,SAMUEL,MARLOW,SAMUEL.MARLOW@sakilacustomer.org,363,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +359,2,WILLIE,MARKHAM,WILLIE.MARKHAM@sakilacustomer.org,364,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +360,2,RALPH,MADRIGAL,RALPH.MADRIGAL@sakilacustomer.org,365,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +361,2,LAWRENCE,LAWTON,LAWRENCE.LAWTON@sakilacustomer.org,366,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +362,1,NICHOLAS,BARFIELD,NICHOLAS.BARFIELD@sakilacustomer.org,367,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +363,2,ROY,WHITING,ROY.WHITING@sakilacustomer.org,368,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +364,1,BENJAMIN,VARNEY,BENJAMIN.VARNEY@sakilacustomer.org,369,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +365,2,BRUCE,SCHWARZ,BRUCE.SCHWARZ@sakilacustomer.org,370,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +366,1,BRANDON,HUEY,BRANDON.HUEY@sakilacustomer.org,371,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +367,1,ADAM,GOOCH,ADAM.GOOCH@sakilacustomer.org,372,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +368,1,HARRY,ARCE,HARRY.ARCE@sakilacustomer.org,373,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +369,2,FRED,WHEAT,FRED.WHEAT@sakilacustomer.org,374,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +370,2,WAYNE,TRUONG,WAYNE.TRUONG@sakilacustomer.org,375,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +371,1,BILLY,POULIN,BILLY.POULIN@sakilacustomer.org,376,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +372,2,STEVE,MACKENZIE,STEVE.MACKENZIE@sakilacustomer.org,377,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +373,1,LOUIS,LEONE,LOUIS.LEONE@sakilacustomer.org,378,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +374,2,JEREMY,HURTADO,JEREMY.HURTADO@sakilacustomer.org,379,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +375,2,AARON,SELBY,AARON.SELBY@sakilacustomer.org,380,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +376,1,RANDY,GAITHER,RANDY.GAITHER@sakilacustomer.org,381,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +377,1,HOWARD,FORTNER,HOWARD.FORTNER@sakilacustomer.org,382,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +378,1,EUGENE,CULPEPPER,EUGENE.CULPEPPER@sakilacustomer.org,383,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +379,1,CARLOS,COUGHLIN,CARLOS.COUGHLIN@sakilacustomer.org,384,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +380,1,RUSSELL,BRINSON,RUSSELL.BRINSON@sakilacustomer.org,385,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +381,2,BOBBY,BOUDREAU,BOBBY.BOUDREAU@sakilacustomer.org,386,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +382,2,VICTOR,BARKLEY,VICTOR.BARKLEY@sakilacustomer.org,387,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +383,1,MARTIN,BALES,MARTIN.BALES@sakilacustomer.org,388,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +384,2,ERNEST,STEPP,ERNEST.STEPP@sakilacustomer.org,389,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +385,1,PHILLIP,HOLM,PHILLIP.HOLM@sakilacustomer.org,390,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +386,1,TODD,TAN,TODD.TAN@sakilacustomer.org,391,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +387,2,JESSE,SCHILLING,JESSE.SCHILLING@sakilacustomer.org,392,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +388,2,CRAIG,MORRELL,CRAIG.MORRELL@sakilacustomer.org,393,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +389,1,ALAN,KAHN,ALAN.KAHN@sakilacustomer.org,394,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +390,1,SHAWN,HEATON,SHAWN.HEATON@sakilacustomer.org,395,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +391,1,CLARENCE,GAMEZ,CLARENCE.GAMEZ@sakilacustomer.org,396,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +392,2,SEAN,DOUGLASS,SEAN.DOUGLASS@sakilacustomer.org,397,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +393,1,PHILIP,CAUSEY,PHILIP.CAUSEY@sakilacustomer.org,398,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +394,2,CHRIS,BROTHERS,CHRIS.BROTHERS@sakilacustomer.org,399,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +395,2,JOHNNY,TURPIN,JOHNNY.TURPIN@sakilacustomer.org,400,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +396,1,EARL,SHANKS,EARL.SHANKS@sakilacustomer.org,401,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +397,1,JIMMY,SCHRADER,JIMMY.SCHRADER@sakilacustomer.org,402,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +398,1,ANTONIO,MEEK,ANTONIO.MEEK@sakilacustomer.org,403,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +399,1,DANNY,ISOM,DANNY.ISOM@sakilacustomer.org,404,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +400,2,BRYAN,HARDISON,BRYAN.HARDISON@sakilacustomer.org,405,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +401,2,TONY,CARRANZA,TONY.CARRANZA@sakilacustomer.org,406,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +402,1,LUIS,YANEZ,LUIS.YANEZ@sakilacustomer.org,407,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +403,1,MIKE,WAY,MIKE.WAY@sakilacustomer.org,408,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +404,2,STANLEY,SCROGGINS,STANLEY.SCROGGINS@sakilacustomer.org,409,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +405,1,LEONARD,SCHOFIELD,LEONARD.SCHOFIELD@sakilacustomer.org,410,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +406,1,NATHAN,RUNYON,NATHAN.RUNYON@sakilacustomer.org,411,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +407,1,DALE,RATCLIFF,DALE.RATCLIFF@sakilacustomer.org,412,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +408,1,MANUEL,MURRELL,MANUEL.MURRELL@sakilacustomer.org,413,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +409,2,RODNEY,MOELLER,RODNEY.MOELLER@sakilacustomer.org,414,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +410,2,CURTIS,IRBY,CURTIS.IRBY@sakilacustomer.org,415,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +411,1,NORMAN,CURRIER,NORMAN.CURRIER@sakilacustomer.org,416,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +412,2,ALLEN,BUTTERFIELD,ALLEN.BUTTERFIELD@sakilacustomer.org,417,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +413,2,MARVIN,YEE,MARVIN.YEE@sakilacustomer.org,418,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +414,1,VINCENT,RALSTON,VINCENT.RALSTON@sakilacustomer.org,419,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +415,1,GLENN,PULLEN,GLENN.PULLEN@sakilacustomer.org,420,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +416,2,JEFFERY,PINSON,JEFFERY.PINSON@sakilacustomer.org,421,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +417,1,TRAVIS,ESTEP,TRAVIS.ESTEP@sakilacustomer.org,422,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +418,2,JEFF,EAST,JEFF.EAST@sakilacustomer.org,423,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +419,1,CHAD,CARBONE,CHAD.CARBONE@sakilacustomer.org,424,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +420,1,JACOB,LANCE,JACOB.LANCE@sakilacustomer.org,425,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +421,1,LEE,HAWKS,LEE.HAWKS@sakilacustomer.org,426,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +422,1,MELVIN,ELLINGTON,MELVIN.ELLINGTON@sakilacustomer.org,427,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +423,2,ALFRED,CASILLAS,ALFRED.CASILLAS@sakilacustomer.org,428,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +424,2,KYLE,SPURLOCK,KYLE.SPURLOCK@sakilacustomer.org,429,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +425,2,FRANCIS,SIKES,FRANCIS.SIKES@sakilacustomer.org,430,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +426,1,BRADLEY,MOTLEY,BRADLEY.MOTLEY@sakilacustomer.org,431,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +427,2,JESUS,MCCARTNEY,JESUS.MCCARTNEY@sakilacustomer.org,432,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +428,2,HERBERT,KRUGER,HERBERT.KRUGER@sakilacustomer.org,433,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +429,2,FREDERICK,ISBELL,FREDERICK.ISBELL@sakilacustomer.org,434,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +430,1,RAY,HOULE,RAY.HOULE@sakilacustomer.org,435,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +431,2,JOEL,FRANCISCO,JOEL.FRANCISCO@sakilacustomer.org,436,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +432,1,EDWIN,BURK,EDWIN.BURK@sakilacustomer.org,437,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +433,1,DON,BONE,DON.BONE@sakilacustomer.org,438,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +434,1,EDDIE,TOMLIN,EDDIE.TOMLIN@sakilacustomer.org,439,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +435,2,RICKY,SHELBY,RICKY.SHELBY@sakilacustomer.org,440,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +436,1,TROY,QUIGLEY,TROY.QUIGLEY@sakilacustomer.org,441,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +437,2,RANDALL,NEUMANN,RANDALL.NEUMANN@sakilacustomer.org,442,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +438,1,BARRY,LOVELACE,BARRY.LOVELACE@sakilacustomer.org,443,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +439,2,ALEXANDER,FENNELL,ALEXANDER.FENNELL@sakilacustomer.org,444,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +440,1,BERNARD,COLBY,BERNARD.COLBY@sakilacustomer.org,445,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +441,1,MARIO,CHEATHAM,MARIO.CHEATHAM@sakilacustomer.org,446,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +442,1,LEROY,BUSTAMANTE,LEROY.BUSTAMANTE@sakilacustomer.org,447,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +443,2,FRANCISCO,SKIDMORE,FRANCISCO.SKIDMORE@sakilacustomer.org,448,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +444,2,MARCUS,HIDALGO,MARCUS.HIDALGO@sakilacustomer.org,449,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +445,1,MICHEAL,FORMAN,MICHEAL.FORMAN@sakilacustomer.org,450,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +446,2,THEODORE,CULP,THEODORE.CULP@sakilacustomer.org,451,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +447,1,CLIFFORD,BOWENS,CLIFFORD.BOWENS@sakilacustomer.org,452,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +448,1,MIGUEL,BETANCOURT,MIGUEL.BETANCOURT@sakilacustomer.org,453,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +449,2,OSCAR,AQUINO,OSCAR.AQUINO@sakilacustomer.org,454,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +450,1,JAY,ROBB,JAY.ROBB@sakilacustomer.org,455,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +451,1,JIM,REA,JIM.REA@sakilacustomer.org,456,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +452,1,TOM,MILNER,TOM.MILNER@sakilacustomer.org,457,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +453,1,CALVIN,MARTEL,CALVIN.MARTEL@sakilacustomer.org,458,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +454,2,ALEX,GRESHAM,ALEX.GRESHAM@sakilacustomer.org,459,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +455,2,JON,WILES,JON.WILES@sakilacustomer.org,460,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +456,2,RONNIE,RICKETTS,RONNIE.RICKETTS@sakilacustomer.org,461,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +457,2,BILL,GAVIN,BILL.GAVIN@sakilacustomer.org,462,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +458,1,LLOYD,DOWD,LLOYD.DOWD@sakilacustomer.org,463,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +459,1,TOMMY,COLLAZO,TOMMY.COLLAZO@sakilacustomer.org,464,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +460,1,LEON,BOSTIC,LEON.BOSTIC@sakilacustomer.org,465,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +461,1,DEREK,BLAKELY,DEREK.BLAKELY@sakilacustomer.org,466,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +462,2,WARREN,SHERROD,WARREN.SHERROD@sakilacustomer.org,467,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +463,2,DARRELL,POWER,DARRELL.POWER@sakilacustomer.org,468,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +464,1,JEROME,KENYON,JEROME.KENYON@sakilacustomer.org,469,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +465,1,FLOYD,GANDY,FLOYD.GANDY@sakilacustomer.org,470,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +466,1,LEO,EBERT,LEO.EBERT@sakilacustomer.org,471,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +467,2,ALVIN,DELOACH,ALVIN.DELOACH@sakilacustomer.org,472,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +468,1,TIM,CARY,TIM.CARY@sakilacustomer.org,473,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +469,2,WESLEY,BULL,WESLEY.BULL@sakilacustomer.org,474,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +470,1,GORDON,ALLARD,GORDON.ALLARD@sakilacustomer.org,475,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +471,1,DEAN,SAUER,DEAN.SAUER@sakilacustomer.org,476,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +472,1,GREG,ROBINS,GREG.ROBINS@sakilacustomer.org,477,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +473,2,JORGE,OLIVARES,JORGE.OLIVARES@sakilacustomer.org,478,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +474,2,DUSTIN,GILLETTE,DUSTIN.GILLETTE@sakilacustomer.org,479,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +475,2,PEDRO,CHESTNUT,PEDRO.CHESTNUT@sakilacustomer.org,480,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +476,1,DERRICK,BOURQUE,DERRICK.BOURQUE@sakilacustomer.org,481,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +477,1,DAN,PAINE,DAN.PAINE@sakilacustomer.org,482,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +478,1,LEWIS,LYMAN,LEWIS.LYMAN@sakilacustomer.org,483,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +479,1,ZACHARY,HITE,ZACHARY.HITE@sakilacustomer.org,484,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +480,1,COREY,HAUSER,COREY.HAUSER@sakilacustomer.org,485,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +481,1,HERMAN,DEVORE,HERMAN.DEVORE@sakilacustomer.org,486,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +482,1,MAURICE,CRAWLEY,MAURICE.CRAWLEY@sakilacustomer.org,487,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +483,2,VERNON,CHAPA,VERNON.CHAPA@sakilacustomer.org,488,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +484,1,ROBERTO,VU,ROBERTO.VU@sakilacustomer.org,489,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +485,1,CLYDE,TOBIAS,CLYDE.TOBIAS@sakilacustomer.org,490,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +486,1,GLEN,TALBERT,GLEN.TALBERT@sakilacustomer.org,491,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +487,2,HECTOR,POINDEXTER,HECTOR.POINDEXTER@sakilacustomer.org,492,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +488,2,SHANE,MILLARD,SHANE.MILLARD@sakilacustomer.org,493,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +489,1,RICARDO,MEADOR,RICARDO.MEADOR@sakilacustomer.org,494,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +490,1,SAM,MCDUFFIE,SAM.MCDUFFIE@sakilacustomer.org,495,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +491,2,RICK,MATTOX,RICK.MATTOX@sakilacustomer.org,496,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +492,2,LESTER,KRAUS,LESTER.KRAUS@sakilacustomer.org,497,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +493,1,BRENT,HARKINS,BRENT.HARKINS@sakilacustomer.org,498,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +494,2,RAMON,CHOATE,RAMON.CHOATE@sakilacustomer.org,499,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +495,2,CHARLIE,BESS,CHARLIE.BESS@sakilacustomer.org,500,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +496,2,TYLER,WREN,TYLER.WREN@sakilacustomer.org,501,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +497,2,GILBERT,SLEDGE,GILBERT.SLEDGE@sakilacustomer.org,502,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +498,1,GENE,SANBORN,GENE.SANBORN@sakilacustomer.org,503,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +499,2,MARC,OUTLAW,MARC.OUTLAW@sakilacustomer.org,504,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +500,1,REGINALD,KINDER,REGINALD.KINDER@sakilacustomer.org,505,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +501,1,RUBEN,GEARY,RUBEN.GEARY@sakilacustomer.org,506,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +502,1,BRETT,CORNWELL,BRETT.CORNWELL@sakilacustomer.org,507,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +503,1,ANGEL,BARCLAY,ANGEL.BARCLAY@sakilacustomer.org,508,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +504,1,NATHANIEL,ADAM,NATHANIEL.ADAM@sakilacustomer.org,509,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +505,1,RAFAEL,ABNEY,RAFAEL.ABNEY@sakilacustomer.org,510,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +506,2,LESLIE,SEWARD,LESLIE.SEWARD@sakilacustomer.org,511,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +507,2,EDGAR,RHOADS,EDGAR.RHOADS@sakilacustomer.org,512,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +508,2,MILTON,HOWLAND,MILTON.HOWLAND@sakilacustomer.org,513,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +509,1,RAUL,FORTIER,RAUL.FORTIER@sakilacustomer.org,514,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +510,2,BEN,EASTER,BEN.EASTER@sakilacustomer.org,515,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +511,1,CHESTER,BENNER,CHESTER.BENNER@sakilacustomer.org,516,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +512,1,CECIL,VINES,CECIL.VINES@sakilacustomer.org,517,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +513,2,DUANE,TUBBS,DUANE.TUBBS@sakilacustomer.org,519,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +514,2,FRANKLIN,TROUTMAN,FRANKLIN.TROUTMAN@sakilacustomer.org,520,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +515,1,ANDRE,RAPP,ANDRE.RAPP@sakilacustomer.org,521,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +516,2,ELMER,NOE,ELMER.NOE@sakilacustomer.org,522,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +517,2,BRAD,MCCURDY,BRAD.MCCURDY@sakilacustomer.org,523,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +518,1,GABRIEL,HARDER,GABRIEL.HARDER@sakilacustomer.org,524,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +519,2,RON,DELUCA,RON.DELUCA@sakilacustomer.org,525,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +520,2,MITCHELL,WESTMORELAND,MITCHELL.WESTMORELAND@sakilacustomer.org,526,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +521,2,ROLAND,SOUTH,ROLAND.SOUTH@sakilacustomer.org,527,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +522,2,ARNOLD,HAVENS,ARNOLD.HAVENS@sakilacustomer.org,528,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +523,1,HARVEY,GUAJARDO,HARVEY.GUAJARDO@sakilacustomer.org,529,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +524,1,JARED,ELY,JARED.ELY@sakilacustomer.org,530,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +525,2,ADRIAN,CLARY,ADRIAN.CLARY@sakilacustomer.org,531,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +526,2,KARL,SEAL,KARL.SEAL@sakilacustomer.org,532,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +527,1,CORY,MEEHAN,CORY.MEEHAN@sakilacustomer.org,533,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +528,1,CLAUDE,HERZOG,CLAUDE.HERZOG@sakilacustomer.org,534,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +529,2,ERIK,GUILLEN,ERIK.GUILLEN@sakilacustomer.org,535,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +530,2,DARRYL,ASHCRAFT,DARRYL.ASHCRAFT@sakilacustomer.org,536,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +531,2,JAMIE,WAUGH,JAMIE.WAUGH@sakilacustomer.org,537,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +532,2,NEIL,RENNER,NEIL.RENNER@sakilacustomer.org,538,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +533,1,JESSIE,MILAM,JESSIE.MILAM@sakilacustomer.org,539,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +534,1,CHRISTIAN,JUNG,CHRISTIAN.JUNG@sakilacustomer.org,540,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +535,1,JAVIER,ELROD,JAVIER.ELROD@sakilacustomer.org,541,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +536,2,FERNANDO,CHURCHILL,FERNANDO.CHURCHILL@sakilacustomer.org,542,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +537,2,CLINTON,BUFORD,CLINTON.BUFORD@sakilacustomer.org,543,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +538,2,TED,BREAUX,TED.BREAUX@sakilacustomer.org,544,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +539,1,MATHEW,BOLIN,MATHEW.BOLIN@sakilacustomer.org,545,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +540,1,TYRONE,ASHER,TYRONE.ASHER@sakilacustomer.org,546,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +541,2,DARREN,WINDHAM,DARREN.WINDHAM@sakilacustomer.org,547,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +542,2,LONNIE,TIRADO,LONNIE.TIRADO@sakilacustomer.org,548,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +543,1,LANCE,PEMBERTON,LANCE.PEMBERTON@sakilacustomer.org,549,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +544,2,CODY,NOLEN,CODY.NOLEN@sakilacustomer.org,550,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +545,2,JULIO,NOLAND,JULIO.NOLAND@sakilacustomer.org,551,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +546,1,KELLY,KNOTT,KELLY.KNOTT@sakilacustomer.org,552,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +547,1,KURT,EMMONS,KURT.EMMONS@sakilacustomer.org,553,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +548,1,ALLAN,CORNISH,ALLAN.CORNISH@sakilacustomer.org,554,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +549,1,NELSON,CHRISTENSON,NELSON.CHRISTENSON@sakilacustomer.org,555,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +550,2,GUY,BROWNLEE,GUY.BROWNLEE@sakilacustomer.org,556,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +551,2,CLAYTON,BARBEE,CLAYTON.BARBEE@sakilacustomer.org,557,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +552,2,HUGH,WALDROP,HUGH.WALDROP@sakilacustomer.org,558,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +553,1,MAX,PITT,MAX.PITT@sakilacustomer.org,559,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +554,1,DWAYNE,OLVERA,DWAYNE.OLVERA@sakilacustomer.org,560,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +555,1,DWIGHT,LOMBARDI,DWIGHT.LOMBARDI@sakilacustomer.org,561,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +556,2,ARMANDO,GRUBER,ARMANDO.GRUBER@sakilacustomer.org,562,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +557,1,FELIX,GAFFNEY,FELIX.GAFFNEY@sakilacustomer.org,563,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +558,1,JIMMIE,EGGLESTON,JIMMIE.EGGLESTON@sakilacustomer.org,564,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +559,2,EVERETT,BANDA,EVERETT.BANDA@sakilacustomer.org,565,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +560,1,JORDAN,ARCHULETA,JORDAN.ARCHULETA@sakilacustomer.org,566,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +561,2,IAN,STILL,IAN.STILL@sakilacustomer.org,567,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +562,1,WALLACE,SLONE,WALLACE.SLONE@sakilacustomer.org,568,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +563,2,KEN,PREWITT,KEN.PREWITT@sakilacustomer.org,569,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +564,2,BOB,PFEIFFER,BOB.PFEIFFER@sakilacustomer.org,570,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +565,2,JAIME,NETTLES,JAIME.NETTLES@sakilacustomer.org,571,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +566,1,CASEY,MENA,CASEY.MENA@sakilacustomer.org,572,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +567,2,ALFREDO,MCADAMS,ALFREDO.MCADAMS@sakilacustomer.org,573,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +568,2,ALBERTO,HENNING,ALBERTO.HENNING@sakilacustomer.org,574,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +569,2,DAVE,GARDINER,DAVE.GARDINER@sakilacustomer.org,575,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +570,2,IVAN,CROMWELL,IVAN.CROMWELL@sakilacustomer.org,576,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +571,2,JOHNNIE,CHISHOLM,JOHNNIE.CHISHOLM@sakilacustomer.org,577,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +572,1,SIDNEY,BURLESON,SIDNEY.BURLESON@sakilacustomer.org,578,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +573,1,BYRON,BOX,BYRON.BOX@sakilacustomer.org,579,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +574,2,JULIAN,VEST,JULIAN.VEST@sakilacustomer.org,580,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +575,2,ISAAC,OGLESBY,ISAAC.OGLESBY@sakilacustomer.org,581,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +576,2,MORRIS,MCCARTER,MORRIS.MCCARTER@sakilacustomer.org,582,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +577,2,CLIFTON,MALCOLM,CLIFTON.MALCOLM@sakilacustomer.org,583,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +578,2,WILLARD,LUMPKIN,WILLARD.LUMPKIN@sakilacustomer.org,584,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +579,2,DARYL,LARUE,DARYL.LARUE@sakilacustomer.org,585,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +580,1,ROSS,GREY,ROSS.GREY@sakilacustomer.org,586,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +581,1,VIRGIL,WOFFORD,VIRGIL.WOFFORD@sakilacustomer.org,587,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +582,2,ANDY,VANHORN,ANDY.VANHORN@sakilacustomer.org,588,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +583,1,MARSHALL,THORN,MARSHALL.THORN@sakilacustomer.org,589,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +584,2,SALVADOR,TEEL,SALVADOR.TEEL@sakilacustomer.org,590,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +585,1,PERRY,SWAFFORD,PERRY.SWAFFORD@sakilacustomer.org,591,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +586,1,KIRK,STCLAIR,KIRK.STCLAIR@sakilacustomer.org,592,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +587,1,SERGIO,STANFIELD,SERGIO.STANFIELD@sakilacustomer.org,593,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +588,1,MARION,OCAMPO,MARION.OCAMPO@sakilacustomer.org,594,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +589,1,TRACY,HERRMANN,TRACY.HERRMANN@sakilacustomer.org,595,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +590,2,SETH,HANNON,SETH.HANNON@sakilacustomer.org,596,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +591,1,KENT,ARSENAULT,KENT.ARSENAULT@sakilacustomer.org,597,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +592,1,TERRANCE,ROUSH,TERRANCE.ROUSH@sakilacustomer.org,598,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +593,2,RENE,MCALISTER,RENE.MCALISTER@sakilacustomer.org,599,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +594,1,EDUARDO,HIATT,EDUARDO.HIATT@sakilacustomer.org,600,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +595,1,TERRENCE,GUNDERSON,TERRENCE.GUNDERSON@sakilacustomer.org,601,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +596,1,ENRIQUE,FORSYTHE,ENRIQUE.FORSYTHE@sakilacustomer.org,602,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +597,1,FREDDIE,DUGGAN,FREDDIE.DUGGAN@sakilacustomer.org,603,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +598,1,WADE,DELVALLE,WADE.DELVALLE@sakilacustomer.org,604,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +599,2,AUSTIN,CINTRON,AUSTIN.CINTRON@sakilacustomer.org,605,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/film.csv b/drivers/csv/testdata/sakila-csv-noheader/film.csv new file mode 100644 index 00000000..caa6d700 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/film.csv @@ -0,0 +1,1000 @@ +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/film_actor.csv b/drivers/csv/testdata/sakila-csv-noheader/film_actor.csv new file mode 100644 index 00000000..c0e7a92a --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/film_actor.csv @@ -0,0 +1,5462 @@ +1,1,2020-02-15T06:59:32Z +1,23,2020-02-15T06:59:32Z +1,25,2020-02-15T06:59:32Z +1,106,2020-02-15T06:59:32Z +1,140,2020-02-15T06:59:32Z +1,166,2020-02-15T06:59:32Z +1,277,2020-02-15T06:59:32Z +1,361,2020-02-15T06:59:32Z +1,438,2020-02-15T06:59:32Z +1,499,2020-02-15T06:59:32Z +1,506,2020-02-15T06:59:32Z +1,509,2020-02-15T06:59:32Z +1,605,2020-02-15T06:59:32Z +1,635,2020-02-15T06:59:32Z +1,749,2020-02-15T06:59:32Z +1,832,2020-02-15T06:59:32Z +1,939,2020-02-15T06:59:32Z +1,970,2020-02-15T06:59:32Z +1,980,2020-02-15T06:59:32Z +2,3,2020-02-15T06:59:32Z +2,31,2020-02-15T06:59:32Z +2,47,2020-02-15T06:59:32Z +2,105,2020-02-15T06:59:32Z +2,132,2020-02-15T06:59:32Z +2,145,2020-02-15T06:59:32Z +2,226,2020-02-15T06:59:32Z +2,249,2020-02-15T06:59:32Z +2,314,2020-02-15T06:59:32Z +2,321,2020-02-15T06:59:32Z +2,357,2020-02-15T06:59:32Z +2,369,2020-02-15T06:59:32Z +2,399,2020-02-15T06:59:32Z +2,458,2020-02-15T06:59:32Z +2,481,2020-02-15T06:59:32Z +2,485,2020-02-15T06:59:32Z +2,518,2020-02-15T06:59:32Z +2,540,2020-02-15T06:59:32Z +2,550,2020-02-15T06:59:32Z +2,555,2020-02-15T06:59:32Z +2,561,2020-02-15T06:59:32Z +2,742,2020-02-15T06:59:32Z +2,754,2020-02-15T06:59:32Z +2,811,2020-02-15T06:59:32Z +2,958,2020-02-15T06:59:32Z +3,17,2020-02-15T06:59:32Z +3,40,2020-02-15T06:59:32Z +3,42,2020-02-15T06:59:32Z +3,87,2020-02-15T06:59:32Z +3,111,2020-02-15T06:59:32Z +3,185,2020-02-15T06:59:32Z +3,289,2020-02-15T06:59:32Z +3,329,2020-02-15T06:59:32Z +3,336,2020-02-15T06:59:32Z +3,341,2020-02-15T06:59:32Z +3,393,2020-02-15T06:59:32Z +3,441,2020-02-15T06:59:32Z +3,453,2020-02-15T06:59:32Z +3,480,2020-02-15T06:59:32Z +3,539,2020-02-15T06:59:32Z +3,618,2020-02-15T06:59:32Z +3,685,2020-02-15T06:59:32Z +3,827,2020-02-15T06:59:32Z +3,966,2020-02-15T06:59:32Z +3,967,2020-02-15T06:59:32Z +3,971,2020-02-15T06:59:32Z +3,996,2020-02-15T06:59:32Z +4,23,2020-02-15T06:59:32Z +4,25,2020-02-15T06:59:32Z +4,56,2020-02-15T06:59:32Z +4,62,2020-02-15T06:59:32Z +4,79,2020-02-15T06:59:32Z +4,87,2020-02-15T06:59:32Z +4,355,2020-02-15T06:59:32Z +4,379,2020-02-15T06:59:32Z +4,398,2020-02-15T06:59:32Z +4,463,2020-02-15T06:59:32Z +4,490,2020-02-15T06:59:32Z +4,616,2020-02-15T06:59:32Z +4,635,2020-02-15T06:59:32Z +4,691,2020-02-15T06:59:32Z +4,712,2020-02-15T06:59:32Z +4,714,2020-02-15T06:59:32Z +4,721,2020-02-15T06:59:32Z +4,798,2020-02-15T06:59:32Z +4,832,2020-02-15T06:59:32Z +4,858,2020-02-15T06:59:32Z +4,909,2020-02-15T06:59:32Z +4,924,2020-02-15T06:59:32Z +5,19,2020-02-15T06:59:32Z +5,54,2020-02-15T06:59:32Z +5,85,2020-02-15T06:59:32Z +5,146,2020-02-15T06:59:32Z +5,171,2020-02-15T06:59:32Z +5,172,2020-02-15T06:59:32Z +5,202,2020-02-15T06:59:32Z +5,203,2020-02-15T06:59:32Z +5,286,2020-02-15T06:59:32Z +5,288,2020-02-15T06:59:32Z +5,316,2020-02-15T06:59:32Z +5,340,2020-02-15T06:59:32Z +5,369,2020-02-15T06:59:32Z +5,375,2020-02-15T06:59:32Z +5,383,2020-02-15T06:59:32Z +5,392,2020-02-15T06:59:32Z +5,411,2020-02-15T06:59:32Z +5,503,2020-02-15T06:59:32Z +5,535,2020-02-15T06:59:32Z +5,571,2020-02-15T06:59:32Z +5,650,2020-02-15T06:59:32Z +5,665,2020-02-15T06:59:32Z +5,687,2020-02-15T06:59:32Z +5,730,2020-02-15T06:59:32Z +5,732,2020-02-15T06:59:32Z +5,811,2020-02-15T06:59:32Z +5,817,2020-02-15T06:59:32Z +5,841,2020-02-15T06:59:32Z +5,865,2020-02-15T06:59:32Z +6,29,2020-02-15T06:59:32Z +6,53,2020-02-15T06:59:32Z +6,60,2020-02-15T06:59:32Z +6,70,2020-02-15T06:59:32Z +6,112,2020-02-15T06:59:32Z +6,164,2020-02-15T06:59:32Z +6,165,2020-02-15T06:59:32Z +6,193,2020-02-15T06:59:32Z +6,256,2020-02-15T06:59:32Z +6,451,2020-02-15T06:59:32Z +6,503,2020-02-15T06:59:32Z +6,509,2020-02-15T06:59:32Z +6,517,2020-02-15T06:59:32Z +6,519,2020-02-15T06:59:32Z +6,605,2020-02-15T06:59:32Z +6,692,2020-02-15T06:59:32Z +6,826,2020-02-15T06:59:32Z +6,892,2020-02-15T06:59:32Z +6,902,2020-02-15T06:59:32Z +6,994,2020-02-15T06:59:32Z +7,25,2020-02-15T06:59:32Z +7,27,2020-02-15T06:59:32Z +7,35,2020-02-15T06:59:32Z +7,67,2020-02-15T06:59:32Z +7,96,2020-02-15T06:59:32Z +7,170,2020-02-15T06:59:32Z +7,173,2020-02-15T06:59:32Z +7,217,2020-02-15T06:59:32Z +7,218,2020-02-15T06:59:32Z +7,225,2020-02-15T06:59:32Z +7,292,2020-02-15T06:59:32Z +7,351,2020-02-15T06:59:32Z +7,414,2020-02-15T06:59:32Z +7,463,2020-02-15T06:59:32Z +7,554,2020-02-15T06:59:32Z +7,618,2020-02-15T06:59:32Z +7,633,2020-02-15T06:59:32Z +7,637,2020-02-15T06:59:32Z +7,691,2020-02-15T06:59:32Z +7,758,2020-02-15T06:59:32Z +7,766,2020-02-15T06:59:32Z +7,770,2020-02-15T06:59:32Z +7,805,2020-02-15T06:59:32Z +7,806,2020-02-15T06:59:32Z +7,846,2020-02-15T06:59:32Z +7,900,2020-02-15T06:59:32Z +7,901,2020-02-15T06:59:32Z +7,910,2020-02-15T06:59:32Z +7,957,2020-02-15T06:59:32Z +7,959,2020-02-15T06:59:32Z +8,47,2020-02-15T06:59:32Z +8,115,2020-02-15T06:59:32Z +8,158,2020-02-15T06:59:32Z +8,179,2020-02-15T06:59:32Z +8,195,2020-02-15T06:59:32Z +8,205,2020-02-15T06:59:32Z +8,255,2020-02-15T06:59:32Z +8,263,2020-02-15T06:59:32Z +8,321,2020-02-15T06:59:32Z +8,396,2020-02-15T06:59:32Z +8,458,2020-02-15T06:59:32Z +8,523,2020-02-15T06:59:32Z +8,532,2020-02-15T06:59:32Z +8,554,2020-02-15T06:59:32Z +8,752,2020-02-15T06:59:32Z +8,769,2020-02-15T06:59:32Z +8,771,2020-02-15T06:59:32Z +8,859,2020-02-15T06:59:32Z +8,895,2020-02-15T06:59:32Z +8,936,2020-02-15T06:59:32Z +9,30,2020-02-15T06:59:32Z +9,74,2020-02-15T06:59:32Z +9,147,2020-02-15T06:59:32Z +9,148,2020-02-15T06:59:32Z +9,191,2020-02-15T06:59:32Z +9,200,2020-02-15T06:59:32Z +9,204,2020-02-15T06:59:32Z +9,434,2020-02-15T06:59:32Z +9,510,2020-02-15T06:59:32Z +9,514,2020-02-15T06:59:32Z +9,552,2020-02-15T06:59:32Z +9,650,2020-02-15T06:59:32Z +9,671,2020-02-15T06:59:32Z +9,697,2020-02-15T06:59:32Z +9,722,2020-02-15T06:59:32Z +9,752,2020-02-15T06:59:32Z +9,811,2020-02-15T06:59:32Z +9,815,2020-02-15T06:59:32Z +9,865,2020-02-15T06:59:32Z +9,873,2020-02-15T06:59:32Z +9,889,2020-02-15T06:59:32Z +9,903,2020-02-15T06:59:32Z +9,926,2020-02-15T06:59:32Z +9,964,2020-02-15T06:59:32Z +9,974,2020-02-15T06:59:32Z +10,1,2020-02-15T06:59:32Z +10,9,2020-02-15T06:59:32Z +10,191,2020-02-15T06:59:32Z +10,236,2020-02-15T06:59:32Z +10,251,2020-02-15T06:59:32Z +10,366,2020-02-15T06:59:32Z +10,477,2020-02-15T06:59:32Z +10,480,2020-02-15T06:59:32Z +10,522,2020-02-15T06:59:32Z +10,530,2020-02-15T06:59:32Z +10,587,2020-02-15T06:59:32Z +10,694,2020-02-15T06:59:32Z +10,703,2020-02-15T06:59:32Z +10,716,2020-02-15T06:59:32Z +10,782,2020-02-15T06:59:32Z +10,914,2020-02-15T06:59:32Z +10,929,2020-02-15T06:59:32Z +10,930,2020-02-15T06:59:32Z +10,964,2020-02-15T06:59:32Z +10,966,2020-02-15T06:59:32Z +10,980,2020-02-15T06:59:32Z +10,983,2020-02-15T06:59:32Z +11,118,2020-02-15T06:59:32Z +11,205,2020-02-15T06:59:32Z +11,281,2020-02-15T06:59:32Z +11,283,2020-02-15T06:59:32Z +11,348,2020-02-15T06:59:32Z +11,364,2020-02-15T06:59:32Z +11,395,2020-02-15T06:59:32Z +11,429,2020-02-15T06:59:32Z +11,433,2020-02-15T06:59:32Z +11,453,2020-02-15T06:59:32Z +11,485,2020-02-15T06:59:32Z +11,532,2020-02-15T06:59:32Z +11,567,2020-02-15T06:59:32Z +11,587,2020-02-15T06:59:32Z +11,597,2020-02-15T06:59:32Z +11,636,2020-02-15T06:59:32Z +11,709,2020-02-15T06:59:32Z +11,850,2020-02-15T06:59:32Z +11,854,2020-02-15T06:59:32Z +11,888,2020-02-15T06:59:32Z +11,896,2020-02-15T06:59:32Z +11,928,2020-02-15T06:59:32Z +11,938,2020-02-15T06:59:32Z +11,969,2020-02-15T06:59:32Z +11,988,2020-02-15T06:59:32Z +12,16,2020-02-15T06:59:32Z +12,17,2020-02-15T06:59:32Z +12,34,2020-02-15T06:59:32Z +12,37,2020-02-15T06:59:32Z +12,91,2020-02-15T06:59:32Z +12,92,2020-02-15T06:59:32Z +12,107,2020-02-15T06:59:32Z +12,155,2020-02-15T06:59:32Z +12,177,2020-02-15T06:59:32Z +12,208,2020-02-15T06:59:32Z +12,213,2020-02-15T06:59:32Z +12,216,2020-02-15T06:59:32Z +12,243,2020-02-15T06:59:32Z +12,344,2020-02-15T06:59:32Z +12,400,2020-02-15T06:59:32Z +12,416,2020-02-15T06:59:32Z +12,420,2020-02-15T06:59:32Z +12,457,2020-02-15T06:59:32Z +12,513,2020-02-15T06:59:32Z +12,540,2020-02-15T06:59:32Z +12,593,2020-02-15T06:59:32Z +12,631,2020-02-15T06:59:32Z +12,635,2020-02-15T06:59:32Z +12,672,2020-02-15T06:59:32Z +12,716,2020-02-15T06:59:32Z +12,728,2020-02-15T06:59:32Z +12,812,2020-02-15T06:59:32Z +12,838,2020-02-15T06:59:32Z +12,871,2020-02-15T06:59:32Z +12,880,2020-02-15T06:59:32Z +12,945,2020-02-15T06:59:32Z +13,17,2020-02-15T06:59:32Z +13,29,2020-02-15T06:59:32Z +13,45,2020-02-15T06:59:32Z +13,87,2020-02-15T06:59:32Z +13,110,2020-02-15T06:59:32Z +13,144,2020-02-15T06:59:32Z +13,154,2020-02-15T06:59:32Z +13,162,2020-02-15T06:59:32Z +13,203,2020-02-15T06:59:32Z +13,254,2020-02-15T06:59:32Z +13,337,2020-02-15T06:59:32Z +13,346,2020-02-15T06:59:32Z +13,381,2020-02-15T06:59:32Z +13,385,2020-02-15T06:59:32Z +13,427,2020-02-15T06:59:32Z +13,456,2020-02-15T06:59:32Z +13,513,2020-02-15T06:59:32Z +13,515,2020-02-15T06:59:32Z +13,522,2020-02-15T06:59:32Z +13,524,2020-02-15T06:59:32Z +13,528,2020-02-15T06:59:32Z +13,571,2020-02-15T06:59:32Z +13,588,2020-02-15T06:59:32Z +13,597,2020-02-15T06:59:32Z +13,600,2020-02-15T06:59:32Z +13,718,2020-02-15T06:59:32Z +13,729,2020-02-15T06:59:32Z +13,816,2020-02-15T06:59:32Z +13,817,2020-02-15T06:59:32Z +13,832,2020-02-15T06:59:32Z +13,833,2020-02-15T06:59:32Z +13,843,2020-02-15T06:59:32Z +13,897,2020-02-15T06:59:32Z +13,966,2020-02-15T06:59:32Z +13,998,2020-02-15T06:59:32Z +14,154,2020-02-15T06:59:32Z +14,187,2020-02-15T06:59:32Z +14,232,2020-02-15T06:59:32Z +14,241,2020-02-15T06:59:32Z +14,253,2020-02-15T06:59:32Z +14,255,2020-02-15T06:59:32Z +14,258,2020-02-15T06:59:32Z +14,284,2020-02-15T06:59:32Z +14,292,2020-02-15T06:59:32Z +14,370,2020-02-15T06:59:32Z +14,415,2020-02-15T06:59:32Z +14,417,2020-02-15T06:59:32Z +14,418,2020-02-15T06:59:32Z +14,454,2020-02-15T06:59:32Z +14,472,2020-02-15T06:59:32Z +14,475,2020-02-15T06:59:32Z +14,495,2020-02-15T06:59:32Z +14,536,2020-02-15T06:59:32Z +14,537,2020-02-15T06:59:32Z +14,612,2020-02-15T06:59:32Z +14,688,2020-02-15T06:59:32Z +14,759,2020-02-15T06:59:32Z +14,764,2020-02-15T06:59:32Z +14,847,2020-02-15T06:59:32Z +14,856,2020-02-15T06:59:32Z +14,890,2020-02-15T06:59:32Z +14,908,2020-02-15T06:59:32Z +14,919,2020-02-15T06:59:32Z +14,948,2020-02-15T06:59:32Z +14,970,2020-02-15T06:59:32Z +15,31,2020-02-15T06:59:32Z +15,89,2020-02-15T06:59:32Z +15,91,2020-02-15T06:59:32Z +15,108,2020-02-15T06:59:32Z +15,125,2020-02-15T06:59:32Z +15,236,2020-02-15T06:59:32Z +15,275,2020-02-15T06:59:32Z +15,280,2020-02-15T06:59:32Z +15,326,2020-02-15T06:59:32Z +15,342,2020-02-15T06:59:32Z +15,414,2020-02-15T06:59:32Z +15,445,2020-02-15T06:59:32Z +15,500,2020-02-15T06:59:32Z +15,502,2020-02-15T06:59:32Z +15,541,2020-02-15T06:59:32Z +15,553,2020-02-15T06:59:32Z +15,594,2020-02-15T06:59:32Z +15,626,2020-02-15T06:59:32Z +15,635,2020-02-15T06:59:32Z +15,745,2020-02-15T06:59:32Z +15,783,2020-02-15T06:59:32Z +15,795,2020-02-15T06:59:32Z +15,817,2020-02-15T06:59:32Z +15,886,2020-02-15T06:59:32Z +15,924,2020-02-15T06:59:32Z +15,949,2020-02-15T06:59:32Z +15,968,2020-02-15T06:59:32Z +15,985,2020-02-15T06:59:32Z +16,80,2020-02-15T06:59:32Z +16,87,2020-02-15T06:59:32Z +16,101,2020-02-15T06:59:32Z +16,121,2020-02-15T06:59:32Z +16,155,2020-02-15T06:59:32Z +16,177,2020-02-15T06:59:32Z +16,218,2020-02-15T06:59:32Z +16,221,2020-02-15T06:59:32Z +16,267,2020-02-15T06:59:32Z +16,269,2020-02-15T06:59:32Z +16,271,2020-02-15T06:59:32Z +16,280,2020-02-15T06:59:32Z +16,287,2020-02-15T06:59:32Z +16,345,2020-02-15T06:59:32Z +16,438,2020-02-15T06:59:32Z +16,453,2020-02-15T06:59:32Z +16,455,2020-02-15T06:59:32Z +16,456,2020-02-15T06:59:32Z +16,503,2020-02-15T06:59:32Z +16,548,2020-02-15T06:59:32Z +16,582,2020-02-15T06:59:32Z +16,583,2020-02-15T06:59:32Z +16,717,2020-02-15T06:59:32Z +16,758,2020-02-15T06:59:32Z +16,779,2020-02-15T06:59:32Z +16,886,2020-02-15T06:59:32Z +16,967,2020-02-15T06:59:32Z +17,96,2020-02-15T06:59:32Z +17,119,2020-02-15T06:59:32Z +17,124,2020-02-15T06:59:32Z +17,127,2020-02-15T06:59:32Z +17,154,2020-02-15T06:59:32Z +17,199,2020-02-15T06:59:32Z +17,201,2020-02-15T06:59:32Z +17,236,2020-02-15T06:59:32Z +17,280,2020-02-15T06:59:32Z +17,310,2020-02-15T06:59:32Z +17,313,2020-02-15T06:59:32Z +17,378,2020-02-15T06:59:32Z +17,457,2020-02-15T06:59:32Z +17,469,2020-02-15T06:59:32Z +17,478,2020-02-15T06:59:32Z +17,500,2020-02-15T06:59:32Z +17,515,2020-02-15T06:59:32Z +17,521,2020-02-15T06:59:32Z +17,573,2020-02-15T06:59:32Z +17,603,2020-02-15T06:59:32Z +17,606,2020-02-15T06:59:32Z +17,734,2020-02-15T06:59:32Z +17,770,2020-02-15T06:59:32Z +17,794,2020-02-15T06:59:32Z +17,800,2020-02-15T06:59:32Z +17,853,2020-02-15T06:59:32Z +17,873,2020-02-15T06:59:32Z +17,874,2020-02-15T06:59:32Z +17,880,2020-02-15T06:59:32Z +17,948,2020-02-15T06:59:32Z +17,957,2020-02-15T06:59:32Z +17,959,2020-02-15T06:59:32Z +18,44,2020-02-15T06:59:32Z +18,84,2020-02-15T06:59:32Z +18,144,2020-02-15T06:59:32Z +18,172,2020-02-15T06:59:32Z +18,268,2020-02-15T06:59:32Z +18,279,2020-02-15T06:59:32Z +18,280,2020-02-15T06:59:32Z +18,321,2020-02-15T06:59:32Z +18,386,2020-02-15T06:59:32Z +18,460,2020-02-15T06:59:32Z +18,462,2020-02-15T06:59:32Z +18,484,2020-02-15T06:59:32Z +18,536,2020-02-15T06:59:32Z +18,561,2020-02-15T06:59:32Z +18,612,2020-02-15T06:59:32Z +18,717,2020-02-15T06:59:32Z +18,808,2020-02-15T06:59:32Z +18,842,2020-02-15T06:59:32Z +18,863,2020-02-15T06:59:32Z +18,883,2020-02-15T06:59:32Z +18,917,2020-02-15T06:59:32Z +18,944,2020-02-15T06:59:32Z +19,2,2020-02-15T06:59:32Z +19,3,2020-02-15T06:59:32Z +19,144,2020-02-15T06:59:32Z +19,152,2020-02-15T06:59:32Z +19,182,2020-02-15T06:59:32Z +19,208,2020-02-15T06:59:32Z +19,212,2020-02-15T06:59:32Z +19,217,2020-02-15T06:59:32Z +19,266,2020-02-15T06:59:32Z +19,404,2020-02-15T06:59:32Z +19,428,2020-02-15T06:59:32Z +19,473,2020-02-15T06:59:32Z +19,490,2020-02-15T06:59:32Z +19,510,2020-02-15T06:59:32Z +19,513,2020-02-15T06:59:32Z +19,644,2020-02-15T06:59:32Z +19,670,2020-02-15T06:59:32Z +19,673,2020-02-15T06:59:32Z +19,711,2020-02-15T06:59:32Z +19,750,2020-02-15T06:59:32Z +19,752,2020-02-15T06:59:32Z +19,756,2020-02-15T06:59:32Z +19,771,2020-02-15T06:59:32Z +19,785,2020-02-15T06:59:32Z +19,877,2020-02-15T06:59:32Z +20,1,2020-02-15T06:59:32Z +20,54,2020-02-15T06:59:32Z +20,63,2020-02-15T06:59:32Z +20,140,2020-02-15T06:59:32Z +20,146,2020-02-15T06:59:32Z +20,165,2020-02-15T06:59:32Z +20,231,2020-02-15T06:59:32Z +20,243,2020-02-15T06:59:32Z +20,269,2020-02-15T06:59:32Z +20,274,2020-02-15T06:59:32Z +20,348,2020-02-15T06:59:32Z +20,366,2020-02-15T06:59:32Z +20,445,2020-02-15T06:59:32Z +20,478,2020-02-15T06:59:32Z +20,492,2020-02-15T06:59:32Z +20,499,2020-02-15T06:59:32Z +20,527,2020-02-15T06:59:32Z +20,531,2020-02-15T06:59:32Z +20,538,2020-02-15T06:59:32Z +20,589,2020-02-15T06:59:32Z +20,643,2020-02-15T06:59:32Z +20,652,2020-02-15T06:59:32Z +20,663,2020-02-15T06:59:32Z +20,714,2020-02-15T06:59:32Z +20,717,2020-02-15T06:59:32Z +20,757,2020-02-15T06:59:32Z +20,784,2020-02-15T06:59:32Z +20,863,2020-02-15T06:59:32Z +20,962,2020-02-15T06:59:32Z +20,977,2020-02-15T06:59:32Z +21,6,2020-02-15T06:59:32Z +21,87,2020-02-15T06:59:32Z +21,88,2020-02-15T06:59:32Z +21,142,2020-02-15T06:59:32Z +21,159,2020-02-15T06:59:32Z +21,179,2020-02-15T06:59:32Z +21,253,2020-02-15T06:59:32Z +21,281,2020-02-15T06:59:32Z +21,321,2020-02-15T06:59:32Z +21,398,2020-02-15T06:59:32Z +21,426,2020-02-15T06:59:32Z +21,429,2020-02-15T06:59:32Z +21,497,2020-02-15T06:59:32Z +21,507,2020-02-15T06:59:32Z +21,530,2020-02-15T06:59:32Z +21,680,2020-02-15T06:59:32Z +21,686,2020-02-15T06:59:32Z +21,700,2020-02-15T06:59:32Z +21,702,2020-02-15T06:59:32Z +21,733,2020-02-15T06:59:32Z +21,734,2020-02-15T06:59:32Z +21,798,2020-02-15T06:59:32Z +21,804,2020-02-15T06:59:32Z +21,887,2020-02-15T06:59:32Z +21,893,2020-02-15T06:59:32Z +21,920,2020-02-15T06:59:32Z +21,983,2020-02-15T06:59:32Z +22,9,2020-02-15T06:59:32Z +22,23,2020-02-15T06:59:32Z +22,56,2020-02-15T06:59:32Z +22,89,2020-02-15T06:59:32Z +22,111,2020-02-15T06:59:32Z +22,146,2020-02-15T06:59:32Z +22,291,2020-02-15T06:59:32Z +22,294,2020-02-15T06:59:32Z +22,349,2020-02-15T06:59:32Z +22,369,2020-02-15T06:59:32Z +22,418,2020-02-15T06:59:32Z +22,430,2020-02-15T06:59:32Z +22,483,2020-02-15T06:59:32Z +22,491,2020-02-15T06:59:32Z +22,495,2020-02-15T06:59:32Z +22,536,2020-02-15T06:59:32Z +22,600,2020-02-15T06:59:32Z +22,634,2020-02-15T06:59:32Z +22,648,2020-02-15T06:59:32Z +22,688,2020-02-15T06:59:32Z +22,731,2020-02-15T06:59:32Z +22,742,2020-02-15T06:59:32Z +22,775,2020-02-15T06:59:32Z +22,802,2020-02-15T06:59:32Z +22,912,2020-02-15T06:59:32Z +22,964,2020-02-15T06:59:32Z +23,6,2020-02-15T06:59:32Z +23,42,2020-02-15T06:59:32Z +23,78,2020-02-15T06:59:32Z +23,105,2020-02-15T06:59:32Z +23,116,2020-02-15T06:59:32Z +23,117,2020-02-15T06:59:32Z +23,125,2020-02-15T06:59:32Z +23,212,2020-02-15T06:59:32Z +23,226,2020-02-15T06:59:32Z +23,235,2020-02-15T06:59:32Z +23,254,2020-02-15T06:59:32Z +23,367,2020-02-15T06:59:32Z +23,370,2020-02-15T06:59:32Z +23,414,2020-02-15T06:59:32Z +23,419,2020-02-15T06:59:32Z +23,435,2020-02-15T06:59:32Z +23,449,2020-02-15T06:59:32Z +23,491,2020-02-15T06:59:32Z +23,536,2020-02-15T06:59:32Z +23,549,2020-02-15T06:59:32Z +23,636,2020-02-15T06:59:32Z +23,649,2020-02-15T06:59:32Z +23,673,2020-02-15T06:59:32Z +23,691,2020-02-15T06:59:32Z +23,766,2020-02-15T06:59:32Z +23,782,2020-02-15T06:59:32Z +23,804,2020-02-15T06:59:32Z +23,820,2020-02-15T06:59:32Z +23,826,2020-02-15T06:59:32Z +23,833,2020-02-15T06:59:32Z +23,842,2020-02-15T06:59:32Z +23,853,2020-02-15T06:59:32Z +23,855,2020-02-15T06:59:32Z +23,856,2020-02-15T06:59:32Z +23,935,2020-02-15T06:59:32Z +23,981,2020-02-15T06:59:32Z +23,997,2020-02-15T06:59:32Z +24,3,2020-02-15T06:59:32Z +24,83,2020-02-15T06:59:32Z +24,112,2020-02-15T06:59:32Z +24,126,2020-02-15T06:59:32Z +24,148,2020-02-15T06:59:32Z +24,164,2020-02-15T06:59:32Z +24,178,2020-02-15T06:59:32Z +24,194,2020-02-15T06:59:32Z +24,199,2020-02-15T06:59:32Z +24,242,2020-02-15T06:59:32Z +24,256,2020-02-15T06:59:32Z +24,277,2020-02-15T06:59:32Z +24,335,2020-02-15T06:59:32Z +24,405,2020-02-15T06:59:32Z +24,463,2020-02-15T06:59:32Z +24,515,2020-02-15T06:59:32Z +24,585,2020-02-15T06:59:32Z +24,603,2020-02-15T06:59:32Z +24,653,2020-02-15T06:59:32Z +24,704,2020-02-15T06:59:32Z +24,781,2020-02-15T06:59:32Z +24,829,2020-02-15T06:59:32Z +24,832,2020-02-15T06:59:32Z +24,969,2020-02-15T06:59:32Z +25,21,2020-02-15T06:59:32Z +25,86,2020-02-15T06:59:32Z +25,153,2020-02-15T06:59:32Z +25,179,2020-02-15T06:59:32Z +25,204,2020-02-15T06:59:32Z +25,213,2020-02-15T06:59:32Z +25,226,2020-02-15T06:59:32Z +25,245,2020-02-15T06:59:32Z +25,311,2020-02-15T06:59:32Z +25,404,2020-02-15T06:59:32Z +25,411,2020-02-15T06:59:32Z +25,420,2020-02-15T06:59:32Z +25,538,2020-02-15T06:59:32Z +25,564,2020-02-15T06:59:32Z +25,583,2020-02-15T06:59:32Z +25,606,2020-02-15T06:59:32Z +25,688,2020-02-15T06:59:32Z +25,697,2020-02-15T06:59:32Z +25,755,2020-02-15T06:59:32Z +25,871,2020-02-15T06:59:32Z +25,914,2020-02-15T06:59:32Z +26,9,2020-02-15T06:59:32Z +26,21,2020-02-15T06:59:32Z +26,34,2020-02-15T06:59:32Z +26,90,2020-02-15T06:59:32Z +26,93,2020-02-15T06:59:32Z +26,103,2020-02-15T06:59:32Z +26,147,2020-02-15T06:59:32Z +26,186,2020-02-15T06:59:32Z +26,201,2020-02-15T06:59:32Z +26,225,2020-02-15T06:59:32Z +26,241,2020-02-15T06:59:32Z +26,327,2020-02-15T06:59:32Z +26,329,2020-02-15T06:59:32Z +26,340,2020-02-15T06:59:32Z +26,345,2020-02-15T06:59:32Z +26,390,2020-02-15T06:59:32Z +26,392,2020-02-15T06:59:32Z +26,529,2020-02-15T06:59:32Z +26,544,2020-02-15T06:59:32Z +26,564,2020-02-15T06:59:32Z +26,635,2020-02-15T06:59:32Z +26,644,2020-02-15T06:59:32Z +26,682,2020-02-15T06:59:32Z +26,688,2020-02-15T06:59:32Z +26,715,2020-02-15T06:59:32Z +26,732,2020-02-15T06:59:32Z +26,758,2020-02-15T06:59:32Z +26,764,2020-02-15T06:59:32Z +26,795,2020-02-15T06:59:32Z +26,821,2020-02-15T06:59:32Z +26,885,2020-02-15T06:59:32Z +26,904,2020-02-15T06:59:32Z +26,906,2020-02-15T06:59:32Z +27,19,2020-02-15T06:59:32Z +27,34,2020-02-15T06:59:32Z +27,85,2020-02-15T06:59:32Z +27,150,2020-02-15T06:59:32Z +27,172,2020-02-15T06:59:32Z +27,273,2020-02-15T06:59:32Z +27,334,2020-02-15T06:59:32Z +27,347,2020-02-15T06:59:32Z +27,359,2020-02-15T06:59:32Z +27,398,2020-02-15T06:59:32Z +27,415,2020-02-15T06:59:32Z +27,462,2020-02-15T06:59:32Z +27,477,2020-02-15T06:59:32Z +27,500,2020-02-15T06:59:32Z +27,503,2020-02-15T06:59:32Z +27,540,2020-02-15T06:59:32Z +27,586,2020-02-15T06:59:32Z +27,593,2020-02-15T06:59:32Z +27,637,2020-02-15T06:59:32Z +27,679,2020-02-15T06:59:32Z +27,682,2020-02-15T06:59:32Z +27,695,2020-02-15T06:59:32Z +27,771,2020-02-15T06:59:32Z +27,805,2020-02-15T06:59:32Z +27,830,2020-02-15T06:59:32Z +27,854,2020-02-15T06:59:32Z +27,873,2020-02-15T06:59:32Z +27,880,2020-02-15T06:59:32Z +27,889,2020-02-15T06:59:32Z +27,904,2020-02-15T06:59:32Z +27,967,2020-02-15T06:59:32Z +27,986,2020-02-15T06:59:32Z +27,996,2020-02-15T06:59:32Z +28,14,2020-02-15T06:59:32Z +28,43,2020-02-15T06:59:32Z +28,58,2020-02-15T06:59:32Z +28,74,2020-02-15T06:59:32Z +28,96,2020-02-15T06:59:32Z +28,107,2020-02-15T06:59:32Z +28,259,2020-02-15T06:59:32Z +28,263,2020-02-15T06:59:32Z +28,287,2020-02-15T06:59:32Z +28,358,2020-02-15T06:59:32Z +28,502,2020-02-15T06:59:32Z +28,508,2020-02-15T06:59:32Z +28,532,2020-02-15T06:59:32Z +28,551,2020-02-15T06:59:32Z +28,574,2020-02-15T06:59:32Z +28,597,2020-02-15T06:59:32Z +28,619,2020-02-15T06:59:32Z +28,625,2020-02-15T06:59:32Z +28,652,2020-02-15T06:59:32Z +28,679,2020-02-15T06:59:32Z +28,743,2020-02-15T06:59:32Z +28,790,2020-02-15T06:59:32Z +28,793,2020-02-15T06:59:32Z +28,816,2020-02-15T06:59:32Z +28,827,2020-02-15T06:59:32Z +28,835,2020-02-15T06:59:32Z +28,879,2020-02-15T06:59:32Z +28,908,2020-02-15T06:59:32Z +28,953,2020-02-15T06:59:32Z +28,973,2020-02-15T06:59:32Z +28,994,2020-02-15T06:59:32Z +29,10,2020-02-15T06:59:32Z +29,79,2020-02-15T06:59:32Z +29,105,2020-02-15T06:59:32Z +29,110,2020-02-15T06:59:32Z +29,131,2020-02-15T06:59:32Z +29,133,2020-02-15T06:59:32Z +29,172,2020-02-15T06:59:32Z +29,226,2020-02-15T06:59:32Z +29,273,2020-02-15T06:59:32Z +29,282,2020-02-15T06:59:32Z +29,296,2020-02-15T06:59:32Z +29,311,2020-02-15T06:59:32Z +29,335,2020-02-15T06:59:32Z +29,342,2020-02-15T06:59:32Z +29,436,2020-02-15T06:59:32Z +29,444,2020-02-15T06:59:32Z +29,449,2020-02-15T06:59:32Z +29,462,2020-02-15T06:59:32Z +29,482,2020-02-15T06:59:32Z +29,488,2020-02-15T06:59:32Z +29,519,2020-02-15T06:59:32Z +29,547,2020-02-15T06:59:32Z +29,590,2020-02-15T06:59:32Z +29,646,2020-02-15T06:59:32Z +29,723,2020-02-15T06:59:32Z +29,812,2020-02-15T06:59:32Z +29,862,2020-02-15T06:59:32Z +29,928,2020-02-15T06:59:32Z +29,944,2020-02-15T06:59:32Z +30,1,2020-02-15T06:59:32Z +30,53,2020-02-15T06:59:32Z +30,64,2020-02-15T06:59:32Z +30,69,2020-02-15T06:59:32Z +30,77,2020-02-15T06:59:32Z +30,87,2020-02-15T06:59:32Z +30,260,2020-02-15T06:59:32Z +30,262,2020-02-15T06:59:32Z +30,286,2020-02-15T06:59:32Z +30,292,2020-02-15T06:59:32Z +30,301,2020-02-15T06:59:32Z +30,318,2020-02-15T06:59:32Z +30,321,2020-02-15T06:59:32Z +30,357,2020-02-15T06:59:32Z +30,565,2020-02-15T06:59:32Z +30,732,2020-02-15T06:59:32Z +30,797,2020-02-15T06:59:32Z +30,838,2020-02-15T06:59:32Z +30,945,2020-02-15T06:59:32Z +31,88,2020-02-15T06:59:32Z +31,146,2020-02-15T06:59:32Z +31,163,2020-02-15T06:59:32Z +31,164,2020-02-15T06:59:32Z +31,188,2020-02-15T06:59:32Z +31,299,2020-02-15T06:59:32Z +31,308,2020-02-15T06:59:32Z +31,368,2020-02-15T06:59:32Z +31,380,2020-02-15T06:59:32Z +31,431,2020-02-15T06:59:32Z +31,585,2020-02-15T06:59:32Z +31,637,2020-02-15T06:59:32Z +31,700,2020-02-15T06:59:32Z +31,739,2020-02-15T06:59:32Z +31,793,2020-02-15T06:59:32Z +31,802,2020-02-15T06:59:32Z +31,880,2020-02-15T06:59:32Z +31,978,2020-02-15T06:59:32Z +32,65,2020-02-15T06:59:32Z +32,84,2020-02-15T06:59:32Z +32,103,2020-02-15T06:59:32Z +32,112,2020-02-15T06:59:32Z +32,136,2020-02-15T06:59:32Z +32,197,2020-02-15T06:59:32Z +32,199,2020-02-15T06:59:32Z +32,219,2020-02-15T06:59:32Z +32,309,2020-02-15T06:59:32Z +32,312,2020-02-15T06:59:32Z +32,401,2020-02-15T06:59:32Z +32,427,2020-02-15T06:59:32Z +32,431,2020-02-15T06:59:32Z +32,523,2020-02-15T06:59:32Z +32,567,2020-02-15T06:59:32Z +32,585,2020-02-15T06:59:32Z +32,606,2020-02-15T06:59:32Z +32,651,2020-02-15T06:59:32Z +32,667,2020-02-15T06:59:32Z +32,669,2020-02-15T06:59:32Z +32,815,2020-02-15T06:59:32Z +32,928,2020-02-15T06:59:32Z +32,980,2020-02-15T06:59:32Z +33,56,2020-02-15T06:59:32Z +33,112,2020-02-15T06:59:32Z +33,135,2020-02-15T06:59:32Z +33,154,2020-02-15T06:59:32Z +33,214,2020-02-15T06:59:32Z +33,252,2020-02-15T06:59:32Z +33,305,2020-02-15T06:59:32Z +33,306,2020-02-15T06:59:32Z +33,473,2020-02-15T06:59:32Z +33,489,2020-02-15T06:59:32Z +33,574,2020-02-15T06:59:32Z +33,618,2020-02-15T06:59:32Z +33,667,2020-02-15T06:59:32Z +33,694,2020-02-15T06:59:32Z +33,712,2020-02-15T06:59:32Z +33,735,2020-02-15T06:59:32Z +33,737,2020-02-15T06:59:32Z +33,754,2020-02-15T06:59:32Z +33,775,2020-02-15T06:59:32Z +33,878,2020-02-15T06:59:32Z +33,881,2020-02-15T06:59:32Z +33,965,2020-02-15T06:59:32Z +33,972,2020-02-15T06:59:32Z +33,993,2020-02-15T06:59:32Z +34,43,2020-02-15T06:59:32Z +34,90,2020-02-15T06:59:32Z +34,119,2020-02-15T06:59:32Z +34,125,2020-02-15T06:59:32Z +34,172,2020-02-15T06:59:32Z +34,182,2020-02-15T06:59:32Z +34,244,2020-02-15T06:59:32Z +34,336,2020-02-15T06:59:32Z +34,389,2020-02-15T06:59:32Z +34,393,2020-02-15T06:59:32Z +34,438,2020-02-15T06:59:32Z +34,493,2020-02-15T06:59:32Z +34,502,2020-02-15T06:59:32Z +34,525,2020-02-15T06:59:32Z +34,668,2020-02-15T06:59:32Z +34,720,2020-02-15T06:59:32Z +34,779,2020-02-15T06:59:32Z +34,788,2020-02-15T06:59:32Z +34,794,2020-02-15T06:59:32Z +34,836,2020-02-15T06:59:32Z +34,846,2020-02-15T06:59:32Z +34,853,2020-02-15T06:59:32Z +34,929,2020-02-15T06:59:32Z +34,950,2020-02-15T06:59:32Z +34,971,2020-02-15T06:59:32Z +35,10,2020-02-15T06:59:32Z +35,35,2020-02-15T06:59:32Z +35,52,2020-02-15T06:59:32Z +35,201,2020-02-15T06:59:32Z +35,256,2020-02-15T06:59:32Z +35,389,2020-02-15T06:59:32Z +35,589,2020-02-15T06:59:32Z +35,612,2020-02-15T06:59:32Z +35,615,2020-02-15T06:59:32Z +35,707,2020-02-15T06:59:32Z +35,732,2020-02-15T06:59:32Z +35,738,2020-02-15T06:59:32Z +35,748,2020-02-15T06:59:32Z +35,817,2020-02-15T06:59:32Z +35,914,2020-02-15T06:59:32Z +36,15,2020-02-15T06:59:32Z +36,81,2020-02-15T06:59:32Z +36,171,2020-02-15T06:59:32Z +36,231,2020-02-15T06:59:32Z +36,245,2020-02-15T06:59:32Z +36,283,2020-02-15T06:59:32Z +36,380,2020-02-15T06:59:32Z +36,381,2020-02-15T06:59:32Z +36,387,2020-02-15T06:59:32Z +36,390,2020-02-15T06:59:32Z +36,410,2020-02-15T06:59:32Z +36,426,2020-02-15T06:59:32Z +36,427,2020-02-15T06:59:32Z +36,453,2020-02-15T06:59:32Z +36,466,2020-02-15T06:59:32Z +36,484,2020-02-15T06:59:32Z +36,493,2020-02-15T06:59:32Z +36,499,2020-02-15T06:59:32Z +36,569,2020-02-15T06:59:32Z +36,590,2020-02-15T06:59:32Z +36,600,2020-02-15T06:59:32Z +36,714,2020-02-15T06:59:32Z +36,715,2020-02-15T06:59:32Z +36,716,2020-02-15T06:59:32Z +36,731,2020-02-15T06:59:32Z +36,875,2020-02-15T06:59:32Z +36,915,2020-02-15T06:59:32Z +36,931,2020-02-15T06:59:32Z +36,956,2020-02-15T06:59:32Z +37,10,2020-02-15T06:59:32Z +37,12,2020-02-15T06:59:32Z +37,19,2020-02-15T06:59:32Z +37,118,2020-02-15T06:59:32Z +37,119,2020-02-15T06:59:32Z +37,122,2020-02-15T06:59:32Z +37,146,2020-02-15T06:59:32Z +37,204,2020-02-15T06:59:32Z +37,253,2020-02-15T06:59:32Z +37,260,2020-02-15T06:59:32Z +37,277,2020-02-15T06:59:32Z +37,317,2020-02-15T06:59:32Z +37,467,2020-02-15T06:59:32Z +37,477,2020-02-15T06:59:32Z +37,485,2020-02-15T06:59:32Z +37,508,2020-02-15T06:59:32Z +37,529,2020-02-15T06:59:32Z +37,553,2020-02-15T06:59:32Z +37,555,2020-02-15T06:59:32Z +37,572,2020-02-15T06:59:32Z +37,588,2020-02-15T06:59:32Z +37,662,2020-02-15T06:59:32Z +37,663,2020-02-15T06:59:32Z +37,694,2020-02-15T06:59:32Z +37,697,2020-02-15T06:59:32Z +37,785,2020-02-15T06:59:32Z +37,839,2020-02-15T06:59:32Z +37,840,2020-02-15T06:59:32Z +37,853,2020-02-15T06:59:32Z +37,900,2020-02-15T06:59:32Z +37,925,2020-02-15T06:59:32Z +37,963,2020-02-15T06:59:32Z +37,966,2020-02-15T06:59:32Z +37,989,2020-02-15T06:59:32Z +37,997,2020-02-15T06:59:32Z +38,24,2020-02-15T06:59:32Z +38,111,2020-02-15T06:59:32Z +38,160,2020-02-15T06:59:32Z +38,176,2020-02-15T06:59:32Z +38,223,2020-02-15T06:59:32Z +38,241,2020-02-15T06:59:32Z +38,274,2020-02-15T06:59:32Z +38,335,2020-02-15T06:59:32Z +38,338,2020-02-15T06:59:32Z +38,353,2020-02-15T06:59:32Z +38,448,2020-02-15T06:59:32Z +38,450,2020-02-15T06:59:32Z +38,458,2020-02-15T06:59:32Z +38,501,2020-02-15T06:59:32Z +38,516,2020-02-15T06:59:32Z +38,547,2020-02-15T06:59:32Z +38,583,2020-02-15T06:59:32Z +38,618,2020-02-15T06:59:32Z +38,619,2020-02-15T06:59:32Z +38,705,2020-02-15T06:59:32Z +38,793,2020-02-15T06:59:32Z +38,827,2020-02-15T06:59:32Z +38,839,2020-02-15T06:59:32Z +38,853,2020-02-15T06:59:32Z +38,876,2020-02-15T06:59:32Z +39,71,2020-02-15T06:59:32Z +39,73,2020-02-15T06:59:32Z +39,168,2020-02-15T06:59:32Z +39,203,2020-02-15T06:59:32Z +39,222,2020-02-15T06:59:32Z +39,290,2020-02-15T06:59:32Z +39,293,2020-02-15T06:59:32Z +39,320,2020-02-15T06:59:32Z +39,415,2020-02-15T06:59:32Z +39,425,2020-02-15T06:59:32Z +39,431,2020-02-15T06:59:32Z +39,456,2020-02-15T06:59:32Z +39,476,2020-02-15T06:59:32Z +39,559,2020-02-15T06:59:32Z +39,587,2020-02-15T06:59:32Z +39,598,2020-02-15T06:59:32Z +39,606,2020-02-15T06:59:32Z +39,648,2020-02-15T06:59:32Z +39,683,2020-02-15T06:59:32Z +39,689,2020-02-15T06:59:32Z +39,696,2020-02-15T06:59:32Z +39,700,2020-02-15T06:59:32Z +39,703,2020-02-15T06:59:32Z +39,736,2020-02-15T06:59:32Z +39,772,2020-02-15T06:59:32Z +39,815,2020-02-15T06:59:32Z +39,831,2020-02-15T06:59:32Z +39,920,2020-02-15T06:59:32Z +40,1,2020-02-15T06:59:32Z +40,11,2020-02-15T06:59:32Z +40,34,2020-02-15T06:59:32Z +40,107,2020-02-15T06:59:32Z +40,128,2020-02-15T06:59:32Z +40,163,2020-02-15T06:59:32Z +40,177,2020-02-15T06:59:32Z +40,223,2020-02-15T06:59:32Z +40,233,2020-02-15T06:59:32Z +40,326,2020-02-15T06:59:32Z +40,374,2020-02-15T06:59:32Z +40,394,2020-02-15T06:59:32Z +40,396,2020-02-15T06:59:32Z +40,463,2020-02-15T06:59:32Z +40,466,2020-02-15T06:59:32Z +40,494,2020-02-15T06:59:32Z +40,521,2020-02-15T06:59:32Z +40,723,2020-02-15T06:59:32Z +40,737,2020-02-15T06:59:32Z +40,744,2020-02-15T06:59:32Z +40,747,2020-02-15T06:59:32Z +40,754,2020-02-15T06:59:32Z +40,799,2020-02-15T06:59:32Z +40,835,2020-02-15T06:59:32Z +40,868,2020-02-15T06:59:32Z +40,869,2020-02-15T06:59:32Z +40,887,2020-02-15T06:59:32Z +40,933,2020-02-15T06:59:32Z +40,938,2020-02-15T06:59:32Z +41,4,2020-02-15T06:59:32Z +41,60,2020-02-15T06:59:32Z +41,69,2020-02-15T06:59:32Z +41,86,2020-02-15T06:59:32Z +41,100,2020-02-15T06:59:32Z +41,150,2020-02-15T06:59:32Z +41,159,2020-02-15T06:59:32Z +41,194,2020-02-15T06:59:32Z +41,203,2020-02-15T06:59:32Z +41,212,2020-02-15T06:59:32Z +41,230,2020-02-15T06:59:32Z +41,249,2020-02-15T06:59:32Z +41,252,2020-02-15T06:59:32Z +41,305,2020-02-15T06:59:32Z +41,336,2020-02-15T06:59:32Z +41,383,2020-02-15T06:59:32Z +41,544,2020-02-15T06:59:32Z +41,596,2020-02-15T06:59:32Z +41,657,2020-02-15T06:59:32Z +41,674,2020-02-15T06:59:32Z +41,678,2020-02-15T06:59:32Z +41,721,2020-02-15T06:59:32Z +41,724,2020-02-15T06:59:32Z +41,779,2020-02-15T06:59:32Z +41,784,2020-02-15T06:59:32Z +41,799,2020-02-15T06:59:32Z +41,894,2020-02-15T06:59:32Z +41,912,2020-02-15T06:59:32Z +41,942,2020-02-15T06:59:32Z +42,24,2020-02-15T06:59:32Z +42,139,2020-02-15T06:59:32Z +42,309,2020-02-15T06:59:32Z +42,320,2020-02-15T06:59:32Z +42,333,2020-02-15T06:59:32Z +42,500,2020-02-15T06:59:32Z +42,502,2020-02-15T06:59:32Z +42,505,2020-02-15T06:59:32Z +42,527,2020-02-15T06:59:32Z +42,535,2020-02-15T06:59:32Z +42,546,2020-02-15T06:59:32Z +42,568,2020-02-15T06:59:32Z +42,648,2020-02-15T06:59:32Z +42,665,2020-02-15T06:59:32Z +42,673,2020-02-15T06:59:32Z +42,687,2020-02-15T06:59:32Z +42,713,2020-02-15T06:59:32Z +42,738,2020-02-15T06:59:32Z +42,798,2020-02-15T06:59:32Z +42,861,2020-02-15T06:59:33Z +42,865,2020-02-15T06:59:33Z +42,867,2020-02-15T06:59:33Z +42,876,2020-02-15T06:59:33Z +42,890,2020-02-15T06:59:33Z +42,907,2020-02-15T06:59:33Z +42,922,2020-02-15T06:59:33Z +42,932,2020-02-15T06:59:33Z +43,19,2020-02-15T06:59:33Z +43,42,2020-02-15T06:59:33Z +43,56,2020-02-15T06:59:33Z +43,89,2020-02-15T06:59:33Z +43,105,2020-02-15T06:59:33Z +43,147,2020-02-15T06:59:33Z +43,161,2020-02-15T06:59:33Z +43,180,2020-02-15T06:59:33Z +43,239,2020-02-15T06:59:33Z +43,276,2020-02-15T06:59:33Z +43,330,2020-02-15T06:59:33Z +43,344,2020-02-15T06:59:33Z +43,359,2020-02-15T06:59:33Z +43,377,2020-02-15T06:59:33Z +43,410,2020-02-15T06:59:33Z +43,462,2020-02-15T06:59:33Z +43,533,2020-02-15T06:59:33Z +43,598,2020-02-15T06:59:33Z +43,605,2020-02-15T06:59:33Z +43,608,2020-02-15T06:59:33Z +43,621,2020-02-15T06:59:33Z +43,753,2020-02-15T06:59:33Z +43,827,2020-02-15T06:59:33Z +43,833,2020-02-15T06:59:33Z +43,917,2020-02-15T06:59:33Z +43,958,2020-02-15T06:59:33Z +44,58,2020-02-15T06:59:33Z +44,84,2020-02-15T06:59:33Z +44,88,2020-02-15T06:59:33Z +44,94,2020-02-15T06:59:33Z +44,109,2020-02-15T06:59:33Z +44,176,2020-02-15T06:59:33Z +44,242,2020-02-15T06:59:33Z +44,273,2020-02-15T06:59:33Z +44,322,2020-02-15T06:59:33Z +44,420,2020-02-15T06:59:33Z +44,434,2020-02-15T06:59:33Z +44,490,2020-02-15T06:59:33Z +44,591,2020-02-15T06:59:33Z +44,598,2020-02-15T06:59:33Z +44,604,2020-02-15T06:59:33Z +44,699,2020-02-15T06:59:33Z +44,751,2020-02-15T06:59:33Z +44,784,2020-02-15T06:59:33Z +44,825,2020-02-15T06:59:33Z +44,854,2020-02-15T06:59:33Z +44,875,2020-02-15T06:59:33Z +44,878,2020-02-15T06:59:33Z +44,883,2020-02-15T06:59:33Z +44,896,2020-02-15T06:59:33Z +44,902,2020-02-15T06:59:33Z +44,937,2020-02-15T06:59:33Z +44,944,2020-02-15T06:59:33Z +44,952,2020-02-15T06:59:33Z +44,982,2020-02-15T06:59:33Z +44,998,2020-02-15T06:59:33Z +45,18,2020-02-15T06:59:33Z +45,65,2020-02-15T06:59:33Z +45,66,2020-02-15T06:59:33Z +45,115,2020-02-15T06:59:33Z +45,117,2020-02-15T06:59:33Z +45,164,2020-02-15T06:59:33Z +45,187,2020-02-15T06:59:33Z +45,198,2020-02-15T06:59:33Z +45,219,2020-02-15T06:59:33Z +45,330,2020-02-15T06:59:33Z +45,407,2020-02-15T06:59:33Z +45,416,2020-02-15T06:59:33Z +45,463,2020-02-15T06:59:33Z +45,467,2020-02-15T06:59:33Z +45,484,2020-02-15T06:59:33Z +45,502,2020-02-15T06:59:33Z +45,503,2020-02-15T06:59:33Z +45,508,2020-02-15T06:59:33Z +45,537,2020-02-15T06:59:33Z +45,680,2020-02-15T06:59:33Z +45,714,2020-02-15T06:59:33Z +45,767,2020-02-15T06:59:33Z +45,778,2020-02-15T06:59:33Z +45,797,2020-02-15T06:59:33Z +45,810,2020-02-15T06:59:33Z +45,895,2020-02-15T06:59:33Z +45,900,2020-02-15T06:59:33Z +45,901,2020-02-15T06:59:33Z +45,920,2020-02-15T06:59:33Z +45,925,2020-02-15T06:59:33Z +45,975,2020-02-15T06:59:33Z +45,978,2020-02-15T06:59:33Z +46,38,2020-02-15T06:59:33Z +46,51,2020-02-15T06:59:33Z +46,174,2020-02-15T06:59:33Z +46,254,2020-02-15T06:59:33Z +46,296,2020-02-15T06:59:33Z +46,319,2020-02-15T06:59:33Z +46,407,2020-02-15T06:59:33Z +46,448,2020-02-15T06:59:33Z +46,456,2020-02-15T06:59:33Z +46,463,2020-02-15T06:59:33Z +46,478,2020-02-15T06:59:33Z +46,538,2020-02-15T06:59:33Z +46,540,2020-02-15T06:59:33Z +46,567,2020-02-15T06:59:33Z +46,731,2020-02-15T06:59:33Z +46,766,2020-02-15T06:59:33Z +46,768,2020-02-15T06:59:33Z +46,820,2020-02-15T06:59:33Z +46,829,2020-02-15T06:59:33Z +46,830,2020-02-15T06:59:33Z +46,836,2020-02-15T06:59:33Z +46,889,2020-02-15T06:59:33Z +46,980,2020-02-15T06:59:33Z +46,991,2020-02-15T06:59:33Z +47,25,2020-02-15T06:59:33Z +47,36,2020-02-15T06:59:33Z +47,53,2020-02-15T06:59:33Z +47,67,2020-02-15T06:59:33Z +47,172,2020-02-15T06:59:33Z +47,233,2020-02-15T06:59:33Z +47,273,2020-02-15T06:59:33Z +47,351,2020-02-15T06:59:33Z +47,385,2020-02-15T06:59:33Z +47,484,2020-02-15T06:59:33Z +47,508,2020-02-15T06:59:33Z +47,576,2020-02-15T06:59:33Z +47,670,2020-02-15T06:59:33Z +47,734,2020-02-15T06:59:33Z +47,737,2020-02-15T06:59:33Z +47,770,2020-02-15T06:59:33Z +47,777,2020-02-15T06:59:33Z +47,787,2020-02-15T06:59:33Z +47,790,2020-02-15T06:59:33Z +47,913,2020-02-15T06:59:33Z +47,923,2020-02-15T06:59:33Z +47,924,2020-02-15T06:59:33Z +47,944,2020-02-15T06:59:33Z +47,973,2020-02-15T06:59:33Z +48,99,2020-02-15T06:59:33Z +48,101,2020-02-15T06:59:33Z +48,134,2020-02-15T06:59:33Z +48,150,2020-02-15T06:59:33Z +48,164,2020-02-15T06:59:33Z +48,211,2020-02-15T06:59:33Z +48,245,2020-02-15T06:59:33Z +48,267,2020-02-15T06:59:33Z +48,287,2020-02-15T06:59:33Z +48,295,2020-02-15T06:59:33Z +48,312,2020-02-15T06:59:33Z +48,315,2020-02-15T06:59:33Z +48,345,2020-02-15T06:59:33Z +48,349,2020-02-15T06:59:33Z +48,428,2020-02-15T06:59:33Z +48,506,2020-02-15T06:59:33Z +48,545,2020-02-15T06:59:33Z +48,559,2020-02-15T06:59:33Z +48,570,2020-02-15T06:59:33Z +48,599,2020-02-15T06:59:33Z +48,645,2020-02-15T06:59:33Z +48,705,2020-02-15T06:59:33Z +48,757,2020-02-15T06:59:33Z +48,792,2020-02-15T06:59:33Z +48,922,2020-02-15T06:59:33Z +48,926,2020-02-15T06:59:33Z +49,31,2020-02-15T06:59:33Z +49,151,2020-02-15T06:59:33Z +49,195,2020-02-15T06:59:33Z +49,207,2020-02-15T06:59:33Z +49,250,2020-02-15T06:59:33Z +49,282,2020-02-15T06:59:33Z +49,348,2020-02-15T06:59:33Z +49,391,2020-02-15T06:59:33Z +49,400,2020-02-15T06:59:33Z +49,407,2020-02-15T06:59:33Z +49,423,2020-02-15T06:59:33Z +49,433,2020-02-15T06:59:33Z +49,469,2020-02-15T06:59:33Z +49,506,2020-02-15T06:59:33Z +49,542,2020-02-15T06:59:33Z +49,558,2020-02-15T06:59:33Z +49,579,2020-02-15T06:59:33Z +49,595,2020-02-15T06:59:33Z +49,662,2020-02-15T06:59:33Z +49,709,2020-02-15T06:59:33Z +49,716,2020-02-15T06:59:33Z +49,725,2020-02-15T06:59:33Z +49,729,2020-02-15T06:59:33Z +49,811,2020-02-15T06:59:33Z +49,927,2020-02-15T06:59:33Z +49,977,2020-02-15T06:59:33Z +49,980,2020-02-15T06:59:33Z +50,111,2020-02-15T06:59:33Z +50,178,2020-02-15T06:59:33Z +50,243,2020-02-15T06:59:33Z +50,248,2020-02-15T06:59:33Z +50,274,2020-02-15T06:59:33Z +50,288,2020-02-15T06:59:33Z +50,303,2020-02-15T06:59:33Z +50,306,2020-02-15T06:59:33Z +50,327,2020-02-15T06:59:33Z +50,372,2020-02-15T06:59:33Z +50,401,2020-02-15T06:59:33Z +50,417,2020-02-15T06:59:33Z +50,420,2020-02-15T06:59:33Z +50,437,2020-02-15T06:59:33Z +50,476,2020-02-15T06:59:33Z +50,504,2020-02-15T06:59:33Z +50,520,2020-02-15T06:59:33Z +50,552,2020-02-15T06:59:33Z +50,591,2020-02-15T06:59:33Z +50,621,2020-02-15T06:59:33Z +50,632,2020-02-15T06:59:33Z +50,645,2020-02-15T06:59:33Z +50,672,2020-02-15T06:59:33Z +50,717,2020-02-15T06:59:33Z +50,732,2020-02-15T06:59:33Z +50,795,2020-02-15T06:59:33Z +50,829,2020-02-15T06:59:33Z +50,840,2020-02-15T06:59:33Z +50,897,2020-02-15T06:59:33Z +50,918,2020-02-15T06:59:33Z +50,924,2020-02-15T06:59:33Z +50,957,2020-02-15T06:59:33Z +51,5,2020-02-15T06:59:33Z +51,63,2020-02-15T06:59:33Z +51,103,2020-02-15T06:59:33Z +51,112,2020-02-15T06:59:33Z +51,121,2020-02-15T06:59:33Z +51,153,2020-02-15T06:59:33Z +51,395,2020-02-15T06:59:33Z +51,408,2020-02-15T06:59:33Z +51,420,2020-02-15T06:59:33Z +51,461,2020-02-15T06:59:33Z +51,490,2020-02-15T06:59:33Z +51,525,2020-02-15T06:59:33Z +51,627,2020-02-15T06:59:33Z +51,678,2020-02-15T06:59:33Z +51,733,2020-02-15T06:59:33Z +51,734,2020-02-15T06:59:33Z +51,737,2020-02-15T06:59:33Z +51,750,2020-02-15T06:59:33Z +51,847,2020-02-15T06:59:33Z +51,891,2020-02-15T06:59:33Z +51,895,2020-02-15T06:59:33Z +51,940,2020-02-15T06:59:33Z +51,974,2020-02-15T06:59:33Z +51,990,2020-02-15T06:59:33Z +51,993,2020-02-15T06:59:33Z +52,20,2020-02-15T06:59:33Z +52,92,2020-02-15T06:59:33Z +52,96,2020-02-15T06:59:33Z +52,108,2020-02-15T06:59:33Z +52,203,2020-02-15T06:59:33Z +52,249,2020-02-15T06:59:33Z +52,341,2020-02-15T06:59:33Z +52,376,2020-02-15T06:59:33Z +52,388,2020-02-15T06:59:33Z +52,407,2020-02-15T06:59:33Z +52,424,2020-02-15T06:59:33Z +52,474,2020-02-15T06:59:33Z +52,515,2020-02-15T06:59:33Z +52,517,2020-02-15T06:59:33Z +52,584,2020-02-15T06:59:33Z +52,596,2020-02-15T06:59:33Z +52,664,2020-02-15T06:59:33Z +52,675,2020-02-15T06:59:33Z +52,689,2020-02-15T06:59:33Z +52,714,2020-02-15T06:59:33Z +52,812,2020-02-15T06:59:33Z +52,878,2020-02-15T06:59:33Z +52,879,2020-02-15T06:59:33Z +52,915,2020-02-15T06:59:33Z +52,951,2020-02-15T06:59:33Z +52,999,2020-02-15T06:59:33Z +53,1,2020-02-15T06:59:33Z +53,9,2020-02-15T06:59:33Z +53,51,2020-02-15T06:59:33Z +53,58,2020-02-15T06:59:33Z +53,109,2020-02-15T06:59:33Z +53,122,2020-02-15T06:59:33Z +53,126,2020-02-15T06:59:33Z +53,181,2020-02-15T06:59:33Z +53,256,2020-02-15T06:59:33Z +53,268,2020-02-15T06:59:33Z +53,285,2020-02-15T06:59:33Z +53,307,2020-02-15T06:59:33Z +53,358,2020-02-15T06:59:33Z +53,386,2020-02-15T06:59:33Z +53,447,2020-02-15T06:59:33Z +53,465,2020-02-15T06:59:33Z +53,490,2020-02-15T06:59:33Z +53,492,2020-02-15T06:59:33Z +53,508,2020-02-15T06:59:33Z +53,518,2020-02-15T06:59:33Z +53,573,2020-02-15T06:59:33Z +53,576,2020-02-15T06:59:33Z +53,577,2020-02-15T06:59:33Z +53,697,2020-02-15T06:59:33Z +53,725,2020-02-15T06:59:33Z +53,727,2020-02-15T06:59:33Z +53,937,2020-02-15T06:59:33Z +53,947,2020-02-15T06:59:33Z +53,961,2020-02-15T06:59:33Z +53,980,2020-02-15T06:59:33Z +54,84,2020-02-15T06:59:33Z +54,129,2020-02-15T06:59:33Z +54,150,2020-02-15T06:59:33Z +54,184,2020-02-15T06:59:33Z +54,285,2020-02-15T06:59:33Z +54,292,2020-02-15T06:59:33Z +54,301,2020-02-15T06:59:33Z +54,348,2020-02-15T06:59:33Z +54,489,2020-02-15T06:59:33Z +54,510,2020-02-15T06:59:33Z +54,524,2020-02-15T06:59:33Z +54,546,2020-02-15T06:59:33Z +54,600,2020-02-15T06:59:33Z +54,636,2020-02-15T06:59:33Z +54,649,2020-02-15T06:59:33Z +54,658,2020-02-15T06:59:33Z +54,754,2020-02-15T06:59:33Z +54,764,2020-02-15T06:59:33Z +54,842,2020-02-15T06:59:33Z +54,858,2020-02-15T06:59:33Z +54,861,2020-02-15T06:59:33Z +54,913,2020-02-15T06:59:33Z +54,970,2020-02-15T06:59:33Z +54,988,2020-02-15T06:59:33Z +54,990,2020-02-15T06:59:33Z +55,8,2020-02-15T06:59:33Z +55,27,2020-02-15T06:59:33Z +55,75,2020-02-15T06:59:33Z +55,197,2020-02-15T06:59:33Z +55,307,2020-02-15T06:59:33Z +55,320,2020-02-15T06:59:33Z +55,340,2020-02-15T06:59:33Z +55,403,2020-02-15T06:59:33Z +55,485,2020-02-15T06:59:33Z +55,486,2020-02-15T06:59:33Z +55,603,2020-02-15T06:59:33Z +55,612,2020-02-15T06:59:33Z +55,620,2020-02-15T06:59:33Z +55,709,2020-02-15T06:59:33Z +55,776,2020-02-15T06:59:33Z +55,790,2020-02-15T06:59:33Z +55,815,2020-02-15T06:59:33Z +55,827,2020-02-15T06:59:33Z +55,930,2020-02-15T06:59:33Z +55,963,2020-02-15T06:59:33Z +56,63,2020-02-15T06:59:33Z +56,87,2020-02-15T06:59:33Z +56,226,2020-02-15T06:59:33Z +56,236,2020-02-15T06:59:33Z +56,298,2020-02-15T06:59:33Z +56,307,2020-02-15T06:59:33Z +56,354,2020-02-15T06:59:33Z +56,383,2020-02-15T06:59:33Z +56,417,2020-02-15T06:59:33Z +56,421,2020-02-15T06:59:33Z +56,457,2020-02-15T06:59:33Z +56,462,2020-02-15T06:59:33Z +56,474,2020-02-15T06:59:33Z +56,521,2020-02-15T06:59:33Z +56,593,2020-02-15T06:59:33Z +56,728,2020-02-15T06:59:33Z +56,750,2020-02-15T06:59:33Z +56,769,2020-02-15T06:59:33Z +56,781,2020-02-15T06:59:33Z +56,795,2020-02-15T06:59:33Z +56,844,2020-02-15T06:59:33Z +56,851,2020-02-15T06:59:33Z +56,862,2020-02-15T06:59:33Z +56,868,2020-02-15T06:59:33Z +56,892,2020-02-15T06:59:33Z +56,893,2020-02-15T06:59:33Z +56,936,2020-02-15T06:59:33Z +56,965,2020-02-15T06:59:33Z +57,16,2020-02-15T06:59:33Z +57,34,2020-02-15T06:59:33Z +57,101,2020-02-15T06:59:33Z +57,114,2020-02-15T06:59:33Z +57,122,2020-02-15T06:59:33Z +57,134,2020-02-15T06:59:33Z +57,144,2020-02-15T06:59:33Z +57,153,2020-02-15T06:59:33Z +57,192,2020-02-15T06:59:33Z +57,213,2020-02-15T06:59:33Z +57,258,2020-02-15T06:59:33Z +57,267,2020-02-15T06:59:33Z +57,317,2020-02-15T06:59:33Z +57,340,2020-02-15T06:59:33Z +57,393,2020-02-15T06:59:33Z +57,437,2020-02-15T06:59:33Z +57,447,2020-02-15T06:59:33Z +57,502,2020-02-15T06:59:33Z +57,592,2020-02-15T06:59:33Z +57,605,2020-02-15T06:59:33Z +57,637,2020-02-15T06:59:33Z +57,685,2020-02-15T06:59:33Z +57,707,2020-02-15T06:59:33Z +57,714,2020-02-15T06:59:33Z +57,717,2020-02-15T06:59:33Z +57,737,2020-02-15T06:59:33Z +57,767,2020-02-15T06:59:33Z +57,852,2020-02-15T06:59:33Z +57,891,2020-02-15T06:59:33Z +57,918,2020-02-15T06:59:33Z +58,48,2020-02-15T06:59:33Z +58,68,2020-02-15T06:59:33Z +58,119,2020-02-15T06:59:33Z +58,128,2020-02-15T06:59:33Z +58,135,2020-02-15T06:59:33Z +58,175,2020-02-15T06:59:33Z +58,199,2020-02-15T06:59:33Z +58,235,2020-02-15T06:59:33Z +58,242,2020-02-15T06:59:33Z +58,243,2020-02-15T06:59:33Z +58,254,2020-02-15T06:59:33Z +58,306,2020-02-15T06:59:33Z +58,316,2020-02-15T06:59:33Z +58,417,2020-02-15T06:59:33Z +58,426,2020-02-15T06:59:33Z +58,460,2020-02-15T06:59:33Z +58,477,2020-02-15T06:59:33Z +58,541,2020-02-15T06:59:33Z +58,549,2020-02-15T06:59:33Z +58,551,2020-02-15T06:59:33Z +58,553,2020-02-15T06:59:33Z +58,578,2020-02-15T06:59:33Z +58,602,2020-02-15T06:59:33Z +58,632,2020-02-15T06:59:33Z +58,635,2020-02-15T06:59:33Z +58,638,2020-02-15T06:59:33Z +58,698,2020-02-15T06:59:33Z +58,726,2020-02-15T06:59:33Z +58,755,2020-02-15T06:59:33Z +58,800,2020-02-15T06:59:33Z +58,856,2020-02-15T06:59:33Z +58,858,2020-02-15T06:59:33Z +59,5,2020-02-15T06:59:33Z +59,46,2020-02-15T06:59:33Z +59,54,2020-02-15T06:59:33Z +59,72,2020-02-15T06:59:33Z +59,88,2020-02-15T06:59:33Z +59,121,2020-02-15T06:59:33Z +59,129,2020-02-15T06:59:33Z +59,130,2020-02-15T06:59:33Z +59,183,2020-02-15T06:59:33Z +59,210,2020-02-15T06:59:33Z +59,241,2020-02-15T06:59:33Z +59,295,2020-02-15T06:59:33Z +59,418,2020-02-15T06:59:33Z +59,572,2020-02-15T06:59:33Z +59,644,2020-02-15T06:59:33Z +59,650,2020-02-15T06:59:33Z +59,689,2020-02-15T06:59:33Z +59,694,2020-02-15T06:59:33Z +59,702,2020-02-15T06:59:33Z +59,713,2020-02-15T06:59:33Z +59,749,2020-02-15T06:59:33Z +59,772,2020-02-15T06:59:33Z +59,853,2020-02-15T06:59:33Z +59,862,2020-02-15T06:59:33Z +59,943,2020-02-15T06:59:33Z +59,946,2020-02-15T06:59:33Z +59,984,2020-02-15T06:59:33Z +60,31,2020-02-15T06:59:33Z +60,85,2020-02-15T06:59:33Z +60,133,2020-02-15T06:59:33Z +60,142,2020-02-15T06:59:33Z +60,177,2020-02-15T06:59:33Z +60,179,2020-02-15T06:59:33Z +60,186,2020-02-15T06:59:33Z +60,222,2020-02-15T06:59:33Z +60,235,2020-02-15T06:59:33Z +60,239,2020-02-15T06:59:33Z +60,253,2020-02-15T06:59:33Z +60,262,2020-02-15T06:59:33Z +60,297,2020-02-15T06:59:33Z +60,299,2020-02-15T06:59:33Z +60,334,2020-02-15T06:59:33Z +60,376,2020-02-15T06:59:33Z +60,423,2020-02-15T06:59:33Z +60,436,2020-02-15T06:59:33Z +60,493,2020-02-15T06:59:33Z +60,534,2020-02-15T06:59:33Z +60,551,2020-02-15T06:59:33Z +60,658,2020-02-15T06:59:33Z +60,665,2020-02-15T06:59:33Z +60,679,2020-02-15T06:59:33Z +60,754,2020-02-15T06:59:33Z +60,771,2020-02-15T06:59:33Z +60,783,2020-02-15T06:59:33Z +60,784,2020-02-15T06:59:33Z +60,805,2020-02-15T06:59:33Z +60,830,2020-02-15T06:59:33Z +60,835,2020-02-15T06:59:33Z +60,928,2020-02-15T06:59:33Z +60,952,2020-02-15T06:59:33Z +60,971,2020-02-15T06:59:33Z +60,986,2020-02-15T06:59:33Z +61,235,2020-02-15T06:59:33Z +61,237,2020-02-15T06:59:33Z +61,307,2020-02-15T06:59:33Z +61,362,2020-02-15T06:59:33Z +61,372,2020-02-15T06:59:33Z +61,374,2020-02-15T06:59:33Z +61,423,2020-02-15T06:59:33Z +61,433,2020-02-15T06:59:33Z +61,508,2020-02-15T06:59:33Z +61,518,2020-02-15T06:59:33Z +61,519,2020-02-15T06:59:33Z +61,535,2020-02-15T06:59:33Z +61,537,2020-02-15T06:59:33Z +61,585,2020-02-15T06:59:33Z +61,639,2020-02-15T06:59:33Z +61,648,2020-02-15T06:59:33Z +61,649,2020-02-15T06:59:33Z +61,703,2020-02-15T06:59:33Z +61,752,2020-02-15T06:59:33Z +61,766,2020-02-15T06:59:33Z +61,767,2020-02-15T06:59:33Z +61,780,2020-02-15T06:59:33Z +61,831,2020-02-15T06:59:33Z +61,832,2020-02-15T06:59:33Z +61,990,2020-02-15T06:59:33Z +62,6,2020-02-15T06:59:33Z +62,42,2020-02-15T06:59:33Z +62,54,2020-02-15T06:59:33Z +62,100,2020-02-15T06:59:33Z +62,101,2020-02-15T06:59:33Z +62,129,2020-02-15T06:59:33Z +62,198,2020-02-15T06:59:33Z +62,211,2020-02-15T06:59:33Z +62,231,2020-02-15T06:59:33Z +62,272,2020-02-15T06:59:33Z +62,295,2020-02-15T06:59:33Z +62,337,2020-02-15T06:59:33Z +62,375,2020-02-15T06:59:33Z +62,385,2020-02-15T06:59:33Z +62,393,2020-02-15T06:59:33Z +62,398,2020-02-15T06:59:33Z +62,406,2020-02-15T06:59:33Z +62,413,2020-02-15T06:59:33Z +62,428,2020-02-15T06:59:33Z +62,445,2020-02-15T06:59:33Z +62,457,2020-02-15T06:59:33Z +62,465,2020-02-15T06:59:33Z +62,688,2020-02-15T06:59:33Z +62,707,2020-02-15T06:59:33Z +62,719,2020-02-15T06:59:33Z +62,951,2020-02-15T06:59:33Z +62,981,2020-02-15T06:59:33Z +62,988,2020-02-15T06:59:33Z +62,990,2020-02-15T06:59:33Z +63,73,2020-02-15T06:59:33Z +63,134,2020-02-15T06:59:33Z +63,167,2020-02-15T06:59:33Z +63,208,2020-02-15T06:59:33Z +63,225,2020-02-15T06:59:33Z +63,248,2020-02-15T06:59:33Z +63,249,2020-02-15T06:59:33Z +63,278,2020-02-15T06:59:33Z +63,392,2020-02-15T06:59:33Z +63,517,2020-02-15T06:59:33Z +63,633,2020-02-15T06:59:33Z +63,763,2020-02-15T06:59:33Z +63,781,2020-02-15T06:59:33Z +63,809,2020-02-15T06:59:33Z +63,893,2020-02-15T06:59:33Z +63,932,2020-02-15T06:59:33Z +63,944,2020-02-15T06:59:33Z +63,945,2020-02-15T06:59:33Z +63,981,2020-02-15T06:59:33Z +64,3,2020-02-15T06:59:33Z +64,10,2020-02-15T06:59:33Z +64,37,2020-02-15T06:59:33Z +64,87,2020-02-15T06:59:33Z +64,88,2020-02-15T06:59:33Z +64,124,2020-02-15T06:59:33Z +64,197,2020-02-15T06:59:33Z +64,280,2020-02-15T06:59:33Z +64,291,2020-02-15T06:59:33Z +64,307,2020-02-15T06:59:33Z +64,335,2020-02-15T06:59:33Z +64,345,2020-02-15T06:59:33Z +64,448,2020-02-15T06:59:33Z +64,469,2020-02-15T06:59:33Z +64,471,2020-02-15T06:59:33Z +64,506,2020-02-15T06:59:33Z +64,543,2020-02-15T06:59:33Z +64,557,2020-02-15T06:59:33Z +64,569,2020-02-15T06:59:33Z +64,572,2020-02-15T06:59:33Z +64,597,2020-02-15T06:59:33Z +64,616,2020-02-15T06:59:33Z +64,646,2020-02-15T06:59:33Z +64,694,2020-02-15T06:59:33Z +64,832,2020-02-15T06:59:33Z +64,852,2020-02-15T06:59:33Z +64,860,2020-02-15T06:59:33Z +64,921,2020-02-15T06:59:33Z +64,925,2020-02-15T06:59:33Z +64,980,2020-02-15T06:59:33Z +65,39,2020-02-15T06:59:33Z +65,46,2020-02-15T06:59:33Z +65,97,2020-02-15T06:59:33Z +65,106,2020-02-15T06:59:33Z +65,117,2020-02-15T06:59:33Z +65,125,2020-02-15T06:59:33Z +65,158,2020-02-15T06:59:33Z +65,276,2020-02-15T06:59:33Z +65,305,2020-02-15T06:59:33Z +65,338,2020-02-15T06:59:33Z +65,347,2020-02-15T06:59:33Z +65,371,2020-02-15T06:59:33Z +65,398,2020-02-15T06:59:33Z +65,471,2020-02-15T06:59:33Z +65,475,2020-02-15T06:59:33Z +65,476,2020-02-15T06:59:33Z +65,491,2020-02-15T06:59:33Z +65,496,2020-02-15T06:59:33Z +65,516,2020-02-15T06:59:33Z +65,517,2020-02-15T06:59:33Z +65,541,2020-02-15T06:59:33Z +65,556,2020-02-15T06:59:33Z +65,571,2020-02-15T06:59:33Z +65,577,2020-02-15T06:59:33Z +65,615,2020-02-15T06:59:33Z +65,658,2020-02-15T06:59:33Z +65,683,2020-02-15T06:59:33Z +65,694,2020-02-15T06:59:33Z +65,714,2020-02-15T06:59:33Z +65,735,2020-02-15T06:59:33Z +65,852,2020-02-15T06:59:33Z +65,938,2020-02-15T06:59:33Z +65,951,2020-02-15T06:59:33Z +65,965,2020-02-15T06:59:33Z +66,55,2020-02-15T06:59:33Z +66,143,2020-02-15T06:59:33Z +66,207,2020-02-15T06:59:33Z +66,226,2020-02-15T06:59:33Z +66,229,2020-02-15T06:59:33Z +66,230,2020-02-15T06:59:33Z +66,283,2020-02-15T06:59:33Z +66,300,2020-02-15T06:59:33Z +66,342,2020-02-15T06:59:33Z +66,350,2020-02-15T06:59:33Z +66,361,2020-02-15T06:59:33Z +66,376,2020-02-15T06:59:33Z +66,424,2020-02-15T06:59:33Z +66,434,2020-02-15T06:59:33Z +66,553,2020-02-15T06:59:33Z +66,608,2020-02-15T06:59:33Z +66,676,2020-02-15T06:59:33Z +66,697,2020-02-15T06:59:33Z +66,706,2020-02-15T06:59:33Z +66,725,2020-02-15T06:59:33Z +66,769,2020-02-15T06:59:33Z +66,793,2020-02-15T06:59:33Z +66,829,2020-02-15T06:59:33Z +66,871,2020-02-15T06:59:33Z +66,909,2020-02-15T06:59:33Z +66,915,2020-02-15T06:59:33Z +66,928,2020-02-15T06:59:33Z +66,951,2020-02-15T06:59:33Z +66,957,2020-02-15T06:59:33Z +66,960,2020-02-15T06:59:33Z +66,999,2020-02-15T06:59:33Z +67,24,2020-02-15T06:59:33Z +67,57,2020-02-15T06:59:33Z +67,67,2020-02-15T06:59:33Z +67,144,2020-02-15T06:59:33Z +67,242,2020-02-15T06:59:33Z +67,244,2020-02-15T06:59:33Z +67,256,2020-02-15T06:59:33Z +67,408,2020-02-15T06:59:33Z +67,477,2020-02-15T06:59:33Z +67,496,2020-02-15T06:59:33Z +67,512,2020-02-15T06:59:33Z +67,576,2020-02-15T06:59:33Z +67,601,2020-02-15T06:59:33Z +67,725,2020-02-15T06:59:33Z +67,726,2020-02-15T06:59:33Z +67,731,2020-02-15T06:59:33Z +67,766,2020-02-15T06:59:33Z +67,861,2020-02-15T06:59:33Z +67,870,2020-02-15T06:59:33Z +67,915,2020-02-15T06:59:33Z +67,945,2020-02-15T06:59:33Z +67,972,2020-02-15T06:59:33Z +67,981,2020-02-15T06:59:33Z +68,9,2020-02-15T06:59:33Z +68,45,2020-02-15T06:59:33Z +68,133,2020-02-15T06:59:33Z +68,161,2020-02-15T06:59:33Z +68,205,2020-02-15T06:59:33Z +68,213,2020-02-15T06:59:33Z +68,215,2020-02-15T06:59:33Z +68,255,2020-02-15T06:59:33Z +68,296,2020-02-15T06:59:33Z +68,315,2020-02-15T06:59:33Z +68,325,2020-02-15T06:59:33Z +68,331,2020-02-15T06:59:33Z +68,347,2020-02-15T06:59:33Z +68,357,2020-02-15T06:59:33Z +68,378,2020-02-15T06:59:33Z +68,380,2020-02-15T06:59:33Z +68,386,2020-02-15T06:59:33Z +68,396,2020-02-15T06:59:33Z +68,435,2020-02-15T06:59:33Z +68,497,2020-02-15T06:59:33Z +68,607,2020-02-15T06:59:33Z +68,654,2020-02-15T06:59:33Z +68,665,2020-02-15T06:59:33Z +68,671,2020-02-15T06:59:33Z +68,706,2020-02-15T06:59:33Z +68,747,2020-02-15T06:59:33Z +68,834,2020-02-15T06:59:33Z +68,839,2020-02-15T06:59:33Z +68,840,2020-02-15T06:59:33Z +68,971,2020-02-15T06:59:33Z +69,15,2020-02-15T06:59:33Z +69,88,2020-02-15T06:59:33Z +69,111,2020-02-15T06:59:33Z +69,202,2020-02-15T06:59:33Z +69,236,2020-02-15T06:59:33Z +69,292,2020-02-15T06:59:33Z +69,300,2020-02-15T06:59:33Z +69,306,2020-02-15T06:59:33Z +69,374,2020-02-15T06:59:33Z +69,396,2020-02-15T06:59:33Z +69,452,2020-02-15T06:59:33Z +69,466,2020-02-15T06:59:33Z +69,529,2020-02-15T06:59:33Z +69,612,2020-02-15T06:59:33Z +69,720,2020-02-15T06:59:33Z +69,722,2020-02-15T06:59:33Z +69,761,2020-02-15T06:59:33Z +69,791,2020-02-15T06:59:33Z +69,864,2020-02-15T06:59:33Z +69,877,2020-02-15T06:59:33Z +69,914,2020-02-15T06:59:33Z +70,50,2020-02-15T06:59:33Z +70,53,2020-02-15T06:59:33Z +70,92,2020-02-15T06:59:33Z +70,202,2020-02-15T06:59:33Z +70,227,2020-02-15T06:59:33Z +70,249,2020-02-15T06:59:33Z +70,290,2020-02-15T06:59:33Z +70,304,2020-02-15T06:59:33Z +70,343,2020-02-15T06:59:33Z +70,414,2020-02-15T06:59:33Z +70,453,2020-02-15T06:59:33Z +70,466,2020-02-15T06:59:33Z +70,504,2020-02-15T06:59:33Z +70,584,2020-02-15T06:59:33Z +70,628,2020-02-15T06:59:33Z +70,654,2020-02-15T06:59:33Z +70,725,2020-02-15T06:59:33Z +70,823,2020-02-15T06:59:33Z +70,834,2020-02-15T06:59:33Z +70,856,2020-02-15T06:59:33Z +70,869,2020-02-15T06:59:33Z +70,953,2020-02-15T06:59:33Z +70,964,2020-02-15T06:59:33Z +71,26,2020-02-15T06:59:33Z +71,52,2020-02-15T06:59:33Z +71,233,2020-02-15T06:59:33Z +71,317,2020-02-15T06:59:33Z +71,359,2020-02-15T06:59:33Z +71,362,2020-02-15T06:59:33Z +71,385,2020-02-15T06:59:33Z +71,399,2020-02-15T06:59:33Z +71,450,2020-02-15T06:59:33Z +71,532,2020-02-15T06:59:33Z +71,560,2020-02-15T06:59:33Z +71,574,2020-02-15T06:59:33Z +71,638,2020-02-15T06:59:33Z +71,773,2020-02-15T06:59:33Z +71,833,2020-02-15T06:59:33Z +71,874,2020-02-15T06:59:33Z +71,918,2020-02-15T06:59:33Z +71,956,2020-02-15T06:59:33Z +72,34,2020-02-15T06:59:33Z +72,144,2020-02-15T06:59:33Z +72,237,2020-02-15T06:59:33Z +72,249,2020-02-15T06:59:33Z +72,286,2020-02-15T06:59:33Z +72,296,2020-02-15T06:59:33Z +72,325,2020-02-15T06:59:33Z +72,331,2020-02-15T06:59:33Z +72,405,2020-02-15T06:59:33Z +72,450,2020-02-15T06:59:33Z +72,550,2020-02-15T06:59:33Z +72,609,2020-02-15T06:59:33Z +72,623,2020-02-15T06:59:33Z +72,636,2020-02-15T06:59:33Z +72,640,2020-02-15T06:59:33Z +72,665,2020-02-15T06:59:33Z +72,718,2020-02-15T06:59:33Z +72,743,2020-02-15T06:59:33Z +72,757,2020-02-15T06:59:33Z +72,773,2020-02-15T06:59:33Z +72,854,2020-02-15T06:59:33Z +72,865,2020-02-15T06:59:33Z +72,938,2020-02-15T06:59:33Z +72,956,2020-02-15T06:59:33Z +72,964,2020-02-15T06:59:33Z +72,969,2020-02-15T06:59:33Z +73,36,2020-02-15T06:59:33Z +73,45,2020-02-15T06:59:33Z +73,51,2020-02-15T06:59:33Z +73,77,2020-02-15T06:59:33Z +73,148,2020-02-15T06:59:33Z +73,245,2020-02-15T06:59:33Z +73,275,2020-02-15T06:59:33Z +73,322,2020-02-15T06:59:33Z +73,374,2020-02-15T06:59:33Z +73,379,2020-02-15T06:59:33Z +73,467,2020-02-15T06:59:33Z +73,548,2020-02-15T06:59:33Z +73,561,2020-02-15T06:59:33Z +73,562,2020-02-15T06:59:33Z +73,565,2020-02-15T06:59:33Z +73,627,2020-02-15T06:59:33Z +73,666,2020-02-15T06:59:33Z +73,667,2020-02-15T06:59:33Z +73,707,2020-02-15T06:59:33Z +73,748,2020-02-15T06:59:33Z +73,772,2020-02-15T06:59:33Z +73,823,2020-02-15T06:59:33Z +73,936,2020-02-15T06:59:33Z +73,946,2020-02-15T06:59:33Z +73,950,2020-02-15T06:59:33Z +73,998,2020-02-15T06:59:33Z +74,28,2020-02-15T06:59:33Z +74,44,2020-02-15T06:59:33Z +74,117,2020-02-15T06:59:33Z +74,185,2020-02-15T06:59:33Z +74,192,2020-02-15T06:59:33Z +74,203,2020-02-15T06:59:33Z +74,263,2020-02-15T06:59:33Z +74,321,2020-02-15T06:59:33Z +74,415,2020-02-15T06:59:33Z +74,484,2020-02-15T06:59:33Z +74,503,2020-02-15T06:59:33Z +74,537,2020-02-15T06:59:33Z +74,543,2020-02-15T06:59:33Z +74,617,2020-02-15T06:59:33Z +74,626,2020-02-15T06:59:33Z +74,637,2020-02-15T06:59:33Z +74,663,2020-02-15T06:59:33Z +74,704,2020-02-15T06:59:33Z +74,720,2020-02-15T06:59:33Z +74,747,2020-02-15T06:59:33Z +74,780,2020-02-15T06:59:33Z +74,804,2020-02-15T06:59:33Z +74,834,2020-02-15T06:59:33Z +74,836,2020-02-15T06:59:33Z +74,848,2020-02-15T06:59:33Z +74,872,2020-02-15T06:59:33Z +74,902,2020-02-15T06:59:33Z +74,956,2020-02-15T06:59:33Z +75,12,2020-02-15T06:59:33Z +75,34,2020-02-15T06:59:33Z +75,143,2020-02-15T06:59:33Z +75,170,2020-02-15T06:59:33Z +75,222,2020-02-15T06:59:33Z +75,301,2020-02-15T06:59:33Z +75,347,2020-02-15T06:59:33Z +75,372,2020-02-15T06:59:33Z +75,436,2020-02-15T06:59:33Z +75,445,2020-02-15T06:59:33Z +75,446,2020-02-15T06:59:33Z +75,492,2020-02-15T06:59:33Z +75,498,2020-02-15T06:59:33Z +75,508,2020-02-15T06:59:33Z +75,541,2020-02-15T06:59:33Z +75,547,2020-02-15T06:59:33Z +75,579,2020-02-15T06:59:33Z +75,645,2020-02-15T06:59:33Z +75,667,2020-02-15T06:59:33Z +75,744,2020-02-15T06:59:33Z +75,764,2020-02-15T06:59:33Z +75,780,2020-02-15T06:59:33Z +75,870,2020-02-15T06:59:33Z +75,920,2020-02-15T06:59:33Z +76,60,2020-02-15T06:59:33Z +76,66,2020-02-15T06:59:33Z +76,68,2020-02-15T06:59:33Z +76,95,2020-02-15T06:59:33Z +76,122,2020-02-15T06:59:33Z +76,187,2020-02-15T06:59:33Z +76,223,2020-02-15T06:59:33Z +76,234,2020-02-15T06:59:33Z +76,251,2020-02-15T06:59:33Z +76,348,2020-02-15T06:59:33Z +76,444,2020-02-15T06:59:33Z +76,464,2020-02-15T06:59:33Z +76,474,2020-02-15T06:59:33Z +76,498,2020-02-15T06:59:33Z +76,568,2020-02-15T06:59:33Z +76,604,2020-02-15T06:59:33Z +76,606,2020-02-15T06:59:33Z +76,642,2020-02-15T06:59:33Z +76,648,2020-02-15T06:59:33Z +76,650,2020-02-15T06:59:33Z +76,709,2020-02-15T06:59:33Z +76,760,2020-02-15T06:59:33Z +76,765,2020-02-15T06:59:33Z +76,781,2020-02-15T06:59:33Z +76,850,2020-02-15T06:59:33Z +76,862,2020-02-15T06:59:33Z +76,866,2020-02-15T06:59:33Z +76,870,2020-02-15T06:59:33Z +76,912,2020-02-15T06:59:33Z +76,935,2020-02-15T06:59:33Z +76,958,2020-02-15T06:59:33Z +77,13,2020-02-15T06:59:33Z +77,22,2020-02-15T06:59:33Z +77,40,2020-02-15T06:59:33Z +77,73,2020-02-15T06:59:33Z +77,78,2020-02-15T06:59:33Z +77,153,2020-02-15T06:59:33Z +77,224,2020-02-15T06:59:33Z +77,240,2020-02-15T06:59:33Z +77,245,2020-02-15T06:59:33Z +77,261,2020-02-15T06:59:33Z +77,343,2020-02-15T06:59:33Z +77,442,2020-02-15T06:59:33Z +77,458,2020-02-15T06:59:33Z +77,538,2020-02-15T06:59:33Z +77,566,2020-02-15T06:59:33Z +77,612,2020-02-15T06:59:33Z +77,635,2020-02-15T06:59:33Z +77,694,2020-02-15T06:59:33Z +77,749,2020-02-15T06:59:33Z +77,938,2020-02-15T06:59:33Z +77,943,2020-02-15T06:59:33Z +77,963,2020-02-15T06:59:33Z +77,969,2020-02-15T06:59:33Z +77,993,2020-02-15T06:59:33Z +78,86,2020-02-15T06:59:33Z +78,239,2020-02-15T06:59:33Z +78,260,2020-02-15T06:59:33Z +78,261,2020-02-15T06:59:33Z +78,265,2020-02-15T06:59:33Z +78,301,2020-02-15T06:59:33Z +78,387,2020-02-15T06:59:33Z +78,393,2020-02-15T06:59:33Z +78,428,2020-02-15T06:59:33Z +78,457,2020-02-15T06:59:33Z +78,505,2020-02-15T06:59:33Z +78,520,2020-02-15T06:59:33Z +78,530,2020-02-15T06:59:33Z +78,549,2020-02-15T06:59:33Z +78,552,2020-02-15T06:59:33Z +78,599,2020-02-15T06:59:33Z +78,670,2020-02-15T06:59:33Z +78,674,2020-02-15T06:59:33Z +78,689,2020-02-15T06:59:33Z +78,762,2020-02-15T06:59:33Z +78,767,2020-02-15T06:59:33Z +78,811,2020-02-15T06:59:33Z +78,852,2020-02-15T06:59:33Z +78,880,2020-02-15T06:59:33Z +78,963,2020-02-15T06:59:33Z +78,968,2020-02-15T06:59:33Z +79,32,2020-02-15T06:59:33Z +79,33,2020-02-15T06:59:33Z +79,40,2020-02-15T06:59:33Z +79,141,2020-02-15T06:59:33Z +79,205,2020-02-15T06:59:33Z +79,230,2020-02-15T06:59:33Z +79,242,2020-02-15T06:59:33Z +79,262,2020-02-15T06:59:33Z +79,267,2020-02-15T06:59:33Z +79,269,2020-02-15T06:59:33Z +79,299,2020-02-15T06:59:33Z +79,367,2020-02-15T06:59:33Z +79,428,2020-02-15T06:59:33Z +79,430,2020-02-15T06:59:33Z +79,473,2020-02-15T06:59:33Z +79,607,2020-02-15T06:59:33Z +79,628,2020-02-15T06:59:33Z +79,634,2020-02-15T06:59:33Z +79,646,2020-02-15T06:59:33Z +79,727,2020-02-15T06:59:33Z +79,750,2020-02-15T06:59:33Z +79,753,2020-02-15T06:59:33Z +79,769,2020-02-15T06:59:33Z +79,776,2020-02-15T06:59:33Z +79,788,2020-02-15T06:59:33Z +79,840,2020-02-15T06:59:33Z +79,853,2020-02-15T06:59:33Z +79,916,2020-02-15T06:59:33Z +80,69,2020-02-15T06:59:33Z +80,118,2020-02-15T06:59:33Z +80,124,2020-02-15T06:59:33Z +80,175,2020-02-15T06:59:33Z +80,207,2020-02-15T06:59:33Z +80,212,2020-02-15T06:59:33Z +80,260,2020-02-15T06:59:33Z +80,262,2020-02-15T06:59:33Z +80,280,2020-02-15T06:59:33Z +80,341,2020-02-15T06:59:33Z +80,342,2020-02-15T06:59:33Z +80,343,2020-02-15T06:59:33Z +80,362,2020-02-15T06:59:33Z +80,436,2020-02-15T06:59:33Z +80,475,2020-02-15T06:59:33Z +80,553,2020-02-15T06:59:33Z +80,619,2020-02-15T06:59:33Z +80,622,2020-02-15T06:59:33Z +80,680,2020-02-15T06:59:33Z +80,687,2020-02-15T06:59:33Z +80,688,2020-02-15T06:59:33Z +80,709,2020-02-15T06:59:33Z +80,788,2020-02-15T06:59:33Z +80,807,2020-02-15T06:59:33Z +80,858,2020-02-15T06:59:33Z +80,888,2020-02-15T06:59:33Z +80,941,2020-02-15T06:59:33Z +80,979,2020-02-15T06:59:33Z +81,4,2020-02-15T06:59:33Z +81,11,2020-02-15T06:59:33Z +81,59,2020-02-15T06:59:33Z +81,89,2020-02-15T06:59:33Z +81,178,2020-02-15T06:59:33Z +81,186,2020-02-15T06:59:33Z +81,194,2020-02-15T06:59:33Z +81,215,2020-02-15T06:59:33Z +81,219,2020-02-15T06:59:33Z +81,232,2020-02-15T06:59:33Z +81,260,2020-02-15T06:59:33Z +81,267,2020-02-15T06:59:33Z +81,268,2020-02-15T06:59:33Z +81,304,2020-02-15T06:59:33Z +81,332,2020-02-15T06:59:33Z +81,389,2020-02-15T06:59:33Z +81,398,2020-02-15T06:59:33Z +81,453,2020-02-15T06:59:33Z +81,458,2020-02-15T06:59:33Z +81,465,2020-02-15T06:59:33Z +81,505,2020-02-15T06:59:33Z +81,508,2020-02-15T06:59:33Z +81,527,2020-02-15T06:59:33Z +81,545,2020-02-15T06:59:33Z +81,564,2020-02-15T06:59:33Z +81,578,2020-02-15T06:59:33Z +81,579,2020-02-15T06:59:33Z +81,613,2020-02-15T06:59:33Z +81,619,2020-02-15T06:59:33Z +81,643,2020-02-15T06:59:33Z +81,692,2020-02-15T06:59:33Z +81,710,2020-02-15T06:59:33Z +81,729,2020-02-15T06:59:33Z +81,761,2020-02-15T06:59:33Z +81,827,2020-02-15T06:59:33Z +81,910,2020-02-15T06:59:33Z +82,17,2020-02-15T06:59:33Z +82,33,2020-02-15T06:59:33Z +82,104,2020-02-15T06:59:33Z +82,143,2020-02-15T06:59:33Z +82,188,2020-02-15T06:59:33Z +82,242,2020-02-15T06:59:33Z +82,247,2020-02-15T06:59:33Z +82,290,2020-02-15T06:59:33Z +82,306,2020-02-15T06:59:33Z +82,316,2020-02-15T06:59:33Z +82,344,2020-02-15T06:59:33Z +82,453,2020-02-15T06:59:33Z +82,468,2020-02-15T06:59:33Z +82,480,2020-02-15T06:59:33Z +82,497,2020-02-15T06:59:33Z +82,503,2020-02-15T06:59:33Z +82,527,2020-02-15T06:59:33Z +82,551,2020-02-15T06:59:33Z +82,561,2020-02-15T06:59:33Z +82,750,2020-02-15T06:59:33Z +82,787,2020-02-15T06:59:33Z +82,802,2020-02-15T06:59:33Z +82,838,2020-02-15T06:59:33Z +82,839,2020-02-15T06:59:33Z +82,870,2020-02-15T06:59:33Z +82,877,2020-02-15T06:59:33Z +82,893,2020-02-15T06:59:33Z +82,911,2020-02-15T06:59:33Z +82,954,2020-02-15T06:59:33Z +82,978,2020-02-15T06:59:33Z +82,985,2020-02-15T06:59:33Z +83,49,2020-02-15T06:59:33Z +83,52,2020-02-15T06:59:33Z +83,58,2020-02-15T06:59:33Z +83,110,2020-02-15T06:59:33Z +83,120,2020-02-15T06:59:33Z +83,121,2020-02-15T06:59:33Z +83,135,2020-02-15T06:59:33Z +83,165,2020-02-15T06:59:33Z +83,217,2020-02-15T06:59:33Z +83,247,2020-02-15T06:59:33Z +83,249,2020-02-15T06:59:33Z +83,263,2020-02-15T06:59:33Z +83,268,2020-02-15T06:59:33Z +83,279,2020-02-15T06:59:33Z +83,281,2020-02-15T06:59:33Z +83,339,2020-02-15T06:59:33Z +83,340,2020-02-15T06:59:33Z +83,369,2020-02-15T06:59:33Z +83,412,2020-02-15T06:59:33Z +83,519,2020-02-15T06:59:33Z +83,529,2020-02-15T06:59:33Z +83,615,2020-02-15T06:59:33Z +83,631,2020-02-15T06:59:33Z +83,655,2020-02-15T06:59:33Z +83,672,2020-02-15T06:59:33Z +83,686,2020-02-15T06:59:33Z +83,719,2020-02-15T06:59:33Z +83,764,2020-02-15T06:59:33Z +83,777,2020-02-15T06:59:33Z +83,784,2020-02-15T06:59:33Z +83,833,2020-02-15T06:59:33Z +83,873,2020-02-15T06:59:33Z +83,932,2020-02-15T06:59:33Z +84,19,2020-02-15T06:59:33Z +84,39,2020-02-15T06:59:33Z +84,46,2020-02-15T06:59:33Z +84,175,2020-02-15T06:59:33Z +84,238,2020-02-15T06:59:33Z +84,281,2020-02-15T06:59:33Z +84,290,2020-02-15T06:59:33Z +84,312,2020-02-15T06:59:33Z +84,317,2020-02-15T06:59:33Z +84,413,2020-02-15T06:59:33Z +84,414,2020-02-15T06:59:33Z +84,460,2020-02-15T06:59:33Z +84,479,2020-02-15T06:59:33Z +84,491,2020-02-15T06:59:33Z +84,529,2020-02-15T06:59:33Z +84,540,2020-02-15T06:59:33Z +84,566,2020-02-15T06:59:33Z +84,574,2020-02-15T06:59:33Z +84,589,2020-02-15T06:59:33Z +84,616,2020-02-15T06:59:33Z +84,646,2020-02-15T06:59:33Z +84,703,2020-02-15T06:59:33Z +84,729,2020-02-15T06:59:33Z +84,764,2020-02-15T06:59:33Z +84,782,2020-02-15T06:59:33Z +84,809,2020-02-15T06:59:33Z +84,830,2020-02-15T06:59:33Z +84,843,2020-02-15T06:59:33Z +84,887,2020-02-15T06:59:33Z +84,975,2020-02-15T06:59:33Z +84,996,2020-02-15T06:59:33Z +85,2,2020-02-15T06:59:33Z +85,14,2020-02-15T06:59:33Z +85,72,2020-02-15T06:59:33Z +85,85,2020-02-15T06:59:33Z +85,92,2020-02-15T06:59:33Z +85,148,2020-02-15T06:59:33Z +85,216,2020-02-15T06:59:33Z +85,290,2020-02-15T06:59:33Z +85,296,2020-02-15T06:59:33Z +85,297,2020-02-15T06:59:33Z +85,337,2020-02-15T06:59:33Z +85,383,2020-02-15T06:59:33Z +85,421,2020-02-15T06:59:33Z +85,446,2020-02-15T06:59:33Z +85,461,2020-02-15T06:59:33Z +85,475,2020-02-15T06:59:33Z +85,478,2020-02-15T06:59:33Z +85,522,2020-02-15T06:59:33Z +85,543,2020-02-15T06:59:33Z +85,558,2020-02-15T06:59:33Z +85,591,2020-02-15T06:59:33Z +85,630,2020-02-15T06:59:33Z +85,678,2020-02-15T06:59:33Z +85,711,2020-02-15T06:59:33Z +85,761,2020-02-15T06:59:33Z +85,812,2020-02-15T06:59:33Z +85,869,2020-02-15T06:59:33Z +85,875,2020-02-15T06:59:33Z +85,895,2020-02-15T06:59:33Z +85,957,2020-02-15T06:59:33Z +85,960,2020-02-15T06:59:33Z +86,137,2020-02-15T06:59:33Z +86,163,2020-02-15T06:59:33Z +86,196,2020-02-15T06:59:33Z +86,216,2020-02-15T06:59:33Z +86,249,2020-02-15T06:59:33Z +86,303,2020-02-15T06:59:33Z +86,331,2020-02-15T06:59:33Z +86,364,2020-02-15T06:59:33Z +86,391,2020-02-15T06:59:33Z +86,432,2020-02-15T06:59:33Z +86,482,2020-02-15T06:59:33Z +86,486,2020-02-15T06:59:33Z +86,519,2020-02-15T06:59:33Z +86,520,2020-02-15T06:59:33Z +86,548,2020-02-15T06:59:33Z +86,623,2020-02-15T06:59:33Z +86,631,2020-02-15T06:59:33Z +86,636,2020-02-15T06:59:33Z +86,752,2020-02-15T06:59:33Z +86,760,2020-02-15T06:59:33Z +86,808,2020-02-15T06:59:33Z +86,857,2020-02-15T06:59:33Z +86,878,2020-02-15T06:59:33Z +86,893,2020-02-15T06:59:33Z +86,905,2020-02-15T06:59:33Z +86,923,2020-02-15T06:59:33Z +86,929,2020-02-15T06:59:33Z +87,48,2020-02-15T06:59:33Z +87,157,2020-02-15T06:59:33Z +87,161,2020-02-15T06:59:33Z +87,199,2020-02-15T06:59:33Z +87,207,2020-02-15T06:59:33Z +87,250,2020-02-15T06:59:33Z +87,253,2020-02-15T06:59:33Z +87,312,2020-02-15T06:59:33Z +87,421,2020-02-15T06:59:33Z +87,570,2020-02-15T06:59:33Z +87,599,2020-02-15T06:59:33Z +87,606,2020-02-15T06:59:33Z +87,654,2020-02-15T06:59:33Z +87,679,2020-02-15T06:59:33Z +87,706,2020-02-15T06:59:33Z +87,718,2020-02-15T06:59:33Z +87,721,2020-02-15T06:59:33Z +87,830,2020-02-15T06:59:33Z +87,870,2020-02-15T06:59:33Z +87,952,2020-02-15T06:59:33Z +87,961,2020-02-15T06:59:33Z +88,4,2020-02-15T06:59:33Z +88,76,2020-02-15T06:59:33Z +88,87,2020-02-15T06:59:33Z +88,128,2020-02-15T06:59:33Z +88,170,2020-02-15T06:59:33Z +88,193,2020-02-15T06:59:33Z +88,234,2020-02-15T06:59:33Z +88,304,2020-02-15T06:59:33Z +88,602,2020-02-15T06:59:33Z +88,620,2020-02-15T06:59:33Z +88,668,2020-02-15T06:59:33Z +88,717,2020-02-15T06:59:33Z +88,785,2020-02-15T06:59:33Z +88,819,2020-02-15T06:59:33Z +88,839,2020-02-15T06:59:33Z +88,881,2020-02-15T06:59:33Z +88,908,2020-02-15T06:59:33Z +88,929,2020-02-15T06:59:33Z +88,940,2020-02-15T06:59:33Z +88,968,2020-02-15T06:59:33Z +89,47,2020-02-15T06:59:33Z +89,103,2020-02-15T06:59:33Z +89,117,2020-02-15T06:59:33Z +89,162,2020-02-15T06:59:33Z +89,182,2020-02-15T06:59:33Z +89,187,2020-02-15T06:59:33Z +89,212,2020-02-15T06:59:33Z +89,254,2020-02-15T06:59:33Z +89,266,2020-02-15T06:59:33Z +89,306,2020-02-15T06:59:33Z +89,342,2020-02-15T06:59:33Z +89,406,2020-02-15T06:59:33Z +89,410,2020-02-15T06:59:33Z +89,446,2020-02-15T06:59:33Z +89,473,2020-02-15T06:59:33Z +89,488,2020-02-15T06:59:33Z +89,529,2020-02-15T06:59:33Z +89,542,2020-02-15T06:59:33Z +89,564,2020-02-15T06:59:33Z +89,697,2020-02-15T06:59:33Z +89,833,2020-02-15T06:59:33Z +89,864,2020-02-15T06:59:33Z +89,970,2020-02-15T06:59:33Z +89,976,2020-02-15T06:59:33Z +90,2,2020-02-15T06:59:33Z +90,11,2020-02-15T06:59:33Z +90,100,2020-02-15T06:59:33Z +90,197,2020-02-15T06:59:33Z +90,212,2020-02-15T06:59:33Z +90,262,2020-02-15T06:59:33Z +90,303,2020-02-15T06:59:33Z +90,330,2020-02-15T06:59:33Z +90,363,2020-02-15T06:59:33Z +90,374,2020-02-15T06:59:33Z +90,384,2020-02-15T06:59:33Z +90,385,2020-02-15T06:59:33Z +90,391,2020-02-15T06:59:33Z +90,406,2020-02-15T06:59:33Z +90,433,2020-02-15T06:59:33Z +90,442,2020-02-15T06:59:33Z +90,451,2020-02-15T06:59:33Z +90,520,2020-02-15T06:59:33Z +90,529,2020-02-15T06:59:33Z +90,542,2020-02-15T06:59:33Z +90,586,2020-02-15T06:59:33Z +90,633,2020-02-15T06:59:33Z +90,663,2020-02-15T06:59:33Z +90,676,2020-02-15T06:59:33Z +90,771,2020-02-15T06:59:33Z +90,817,2020-02-15T06:59:33Z +90,838,2020-02-15T06:59:33Z +90,855,2020-02-15T06:59:33Z +90,858,2020-02-15T06:59:33Z +90,868,2020-02-15T06:59:33Z +90,880,2020-02-15T06:59:33Z +90,901,2020-02-15T06:59:33Z +90,925,2020-02-15T06:59:33Z +91,13,2020-02-15T06:59:33Z +91,25,2020-02-15T06:59:33Z +91,48,2020-02-15T06:59:33Z +91,176,2020-02-15T06:59:33Z +91,181,2020-02-15T06:59:33Z +91,190,2020-02-15T06:59:33Z +91,335,2020-02-15T06:59:33Z +91,416,2020-02-15T06:59:33Z +91,447,2020-02-15T06:59:33Z +91,480,2020-02-15T06:59:33Z +91,493,2020-02-15T06:59:33Z +91,509,2020-02-15T06:59:33Z +91,511,2020-02-15T06:59:33Z +91,608,2020-02-15T06:59:33Z +91,807,2020-02-15T06:59:33Z +91,829,2020-02-15T06:59:33Z +91,849,2020-02-15T06:59:33Z +91,859,2020-02-15T06:59:33Z +91,941,2020-02-15T06:59:33Z +91,982,2020-02-15T06:59:33Z +92,90,2020-02-15T06:59:33Z +92,94,2020-02-15T06:59:33Z +92,103,2020-02-15T06:59:33Z +92,104,2020-02-15T06:59:33Z +92,123,2020-02-15T06:59:33Z +92,137,2020-02-15T06:59:33Z +92,207,2020-02-15T06:59:33Z +92,229,2020-02-15T06:59:33Z +92,338,2020-02-15T06:59:33Z +92,381,2020-02-15T06:59:33Z +92,436,2020-02-15T06:59:33Z +92,443,2020-02-15T06:59:33Z +92,453,2020-02-15T06:59:33Z +92,470,2020-02-15T06:59:33Z +92,505,2020-02-15T06:59:33Z +92,512,2020-02-15T06:59:33Z +92,543,2020-02-15T06:59:33Z +92,545,2020-02-15T06:59:33Z +92,547,2020-02-15T06:59:33Z +92,553,2020-02-15T06:59:33Z +92,564,2020-02-15T06:59:33Z +92,568,2020-02-15T06:59:33Z +92,618,2020-02-15T06:59:33Z +92,662,2020-02-15T06:59:33Z +92,686,2020-02-15T06:59:33Z +92,699,2020-02-15T06:59:33Z +92,712,2020-02-15T06:59:33Z +92,728,2020-02-15T06:59:33Z +92,802,2020-02-15T06:59:33Z +92,825,2020-02-15T06:59:33Z +92,838,2020-02-15T06:59:33Z +92,889,2020-02-15T06:59:33Z +92,929,2020-02-15T06:59:33Z +92,991,2020-02-15T06:59:33Z +93,71,2020-02-15T06:59:33Z +93,120,2020-02-15T06:59:33Z +93,124,2020-02-15T06:59:33Z +93,280,2020-02-15T06:59:33Z +93,325,2020-02-15T06:59:33Z +93,339,2020-02-15T06:59:33Z +93,427,2020-02-15T06:59:33Z +93,445,2020-02-15T06:59:33Z +93,453,2020-02-15T06:59:33Z +93,473,2020-02-15T06:59:33Z +93,573,2020-02-15T06:59:33Z +93,621,2020-02-15T06:59:33Z +93,644,2020-02-15T06:59:33Z +93,678,2020-02-15T06:59:33Z +93,680,2020-02-15T06:59:33Z +93,699,2020-02-15T06:59:33Z +93,744,2020-02-15T06:59:33Z +93,768,2020-02-15T06:59:33Z +93,777,2020-02-15T06:59:33Z +93,835,2020-02-15T06:59:33Z +93,856,2020-02-15T06:59:33Z +93,874,2020-02-15T06:59:33Z +93,909,2020-02-15T06:59:33Z +93,916,2020-02-15T06:59:33Z +93,982,2020-02-15T06:59:33Z +94,13,2020-02-15T06:59:33Z +94,60,2020-02-15T06:59:33Z +94,76,2020-02-15T06:59:33Z +94,122,2020-02-15T06:59:33Z +94,153,2020-02-15T06:59:33Z +94,193,2020-02-15T06:59:33Z +94,206,2020-02-15T06:59:33Z +94,228,2020-02-15T06:59:33Z +94,270,2020-02-15T06:59:33Z +94,275,2020-02-15T06:59:33Z +94,320,2020-02-15T06:59:33Z +94,322,2020-02-15T06:59:33Z +94,337,2020-02-15T06:59:33Z +94,354,2020-02-15T06:59:33Z +94,402,2020-02-15T06:59:33Z +94,428,2020-02-15T06:59:33Z +94,457,2020-02-15T06:59:33Z +94,473,2020-02-15T06:59:33Z +94,475,2020-02-15T06:59:33Z +94,512,2020-02-15T06:59:33Z +94,517,2020-02-15T06:59:33Z +94,521,2020-02-15T06:59:33Z +94,533,2020-02-15T06:59:33Z +94,540,2020-02-15T06:59:33Z +94,548,2020-02-15T06:59:33Z +94,551,2020-02-15T06:59:33Z +94,712,2020-02-15T06:59:33Z +94,713,2020-02-15T06:59:33Z +94,724,2020-02-15T06:59:33Z +94,775,2020-02-15T06:59:33Z +94,788,2020-02-15T06:59:33Z +94,950,2020-02-15T06:59:33Z +94,989,2020-02-15T06:59:33Z +95,22,2020-02-15T06:59:33Z +95,35,2020-02-15T06:59:33Z +95,47,2020-02-15T06:59:33Z +95,52,2020-02-15T06:59:33Z +95,65,2020-02-15T06:59:33Z +95,74,2020-02-15T06:59:33Z +95,126,2020-02-15T06:59:33Z +95,207,2020-02-15T06:59:33Z +95,245,2020-02-15T06:59:33Z +95,294,2020-02-15T06:59:33Z +95,301,2020-02-15T06:59:33Z +95,312,2020-02-15T06:59:33Z +95,329,2020-02-15T06:59:33Z +95,353,2020-02-15T06:59:33Z +95,375,2020-02-15T06:59:33Z +95,420,2020-02-15T06:59:33Z +95,424,2020-02-15T06:59:33Z +95,431,2020-02-15T06:59:33Z +95,498,2020-02-15T06:59:33Z +95,522,2020-02-15T06:59:33Z +95,546,2020-02-15T06:59:33Z +95,551,2020-02-15T06:59:33Z +95,619,2020-02-15T06:59:33Z +95,627,2020-02-15T06:59:33Z +95,690,2020-02-15T06:59:33Z +95,748,2020-02-15T06:59:33Z +95,813,2020-02-15T06:59:33Z +95,828,2020-02-15T06:59:33Z +95,855,2020-02-15T06:59:33Z +95,903,2020-02-15T06:59:33Z +95,923,2020-02-15T06:59:33Z +96,8,2020-02-15T06:59:33Z +96,36,2020-02-15T06:59:33Z +96,40,2020-02-15T06:59:33Z +96,54,2020-02-15T06:59:33Z +96,58,2020-02-15T06:59:33Z +96,66,2020-02-15T06:59:33Z +96,134,2020-02-15T06:59:33Z +96,209,2020-02-15T06:59:33Z +96,244,2020-02-15T06:59:33Z +96,320,2020-02-15T06:59:33Z +96,430,2020-02-15T06:59:33Z +96,452,2020-02-15T06:59:33Z +96,486,2020-02-15T06:59:33Z +96,572,2020-02-15T06:59:33Z +96,590,2020-02-15T06:59:33Z +96,661,2020-02-15T06:59:33Z +96,778,2020-02-15T06:59:33Z +96,832,2020-02-15T06:59:33Z +96,846,2020-02-15T06:59:33Z +96,874,2020-02-15T06:59:33Z +96,945,2020-02-15T06:59:33Z +96,968,2020-02-15T06:59:33Z +96,987,2020-02-15T06:59:33Z +97,143,2020-02-15T06:59:33Z +97,177,2020-02-15T06:59:33Z +97,188,2020-02-15T06:59:33Z +97,197,2020-02-15T06:59:33Z +97,256,2020-02-15T06:59:33Z +97,312,2020-02-15T06:59:33Z +97,342,2020-02-15T06:59:33Z +97,348,2020-02-15T06:59:33Z +97,358,2020-02-15T06:59:33Z +97,370,2020-02-15T06:59:33Z +97,437,2020-02-15T06:59:33Z +97,446,2020-02-15T06:59:33Z +97,466,2020-02-15T06:59:33Z +97,518,2020-02-15T06:59:33Z +97,553,2020-02-15T06:59:33Z +97,561,2020-02-15T06:59:33Z +97,641,2020-02-15T06:59:33Z +97,656,2020-02-15T06:59:33Z +97,728,2020-02-15T06:59:33Z +97,755,2020-02-15T06:59:33Z +97,757,2020-02-15T06:59:33Z +97,826,2020-02-15T06:59:33Z +97,862,2020-02-15T06:59:33Z +97,930,2020-02-15T06:59:33Z +97,933,2020-02-15T06:59:33Z +97,947,2020-02-15T06:59:33Z +97,951,2020-02-15T06:59:33Z +98,66,2020-02-15T06:59:33Z +98,72,2020-02-15T06:59:33Z +98,81,2020-02-15T06:59:33Z +98,87,2020-02-15T06:59:33Z +98,107,2020-02-15T06:59:33Z +98,120,2020-02-15T06:59:33Z +98,183,2020-02-15T06:59:33Z +98,194,2020-02-15T06:59:33Z +98,212,2020-02-15T06:59:33Z +98,297,2020-02-15T06:59:33Z +98,607,2020-02-15T06:59:33Z +98,634,2020-02-15T06:59:33Z +98,686,2020-02-15T06:59:33Z +98,705,2020-02-15T06:59:33Z +98,710,2020-02-15T06:59:33Z +98,721,2020-02-15T06:59:33Z +98,725,2020-02-15T06:59:33Z +98,734,2020-02-15T06:59:33Z +98,738,2020-02-15T06:59:33Z +98,765,2020-02-15T06:59:33Z +98,782,2020-02-15T06:59:33Z +98,824,2020-02-15T06:59:33Z +98,829,2020-02-15T06:59:33Z +98,912,2020-02-15T06:59:33Z +98,955,2020-02-15T06:59:33Z +98,985,2020-02-15T06:59:33Z +98,990,2020-02-15T06:59:33Z +99,7,2020-02-15T06:59:33Z +99,27,2020-02-15T06:59:33Z +99,84,2020-02-15T06:59:33Z +99,250,2020-02-15T06:59:33Z +99,322,2020-02-15T06:59:33Z +99,325,2020-02-15T06:59:33Z +99,381,2020-02-15T06:59:33Z +99,414,2020-02-15T06:59:33Z +99,475,2020-02-15T06:59:33Z +99,490,2020-02-15T06:59:33Z +99,512,2020-02-15T06:59:33Z +99,540,2020-02-15T06:59:33Z +99,572,2020-02-15T06:59:33Z +99,600,2020-02-15T06:59:33Z +99,618,2020-02-15T06:59:33Z +99,620,2020-02-15T06:59:33Z +99,622,2020-02-15T06:59:33Z +99,636,2020-02-15T06:59:33Z +99,672,2020-02-15T06:59:33Z +99,726,2020-02-15T06:59:33Z +99,741,2020-02-15T06:59:33Z +99,796,2020-02-15T06:59:33Z +99,835,2020-02-15T06:59:33Z +99,967,2020-02-15T06:59:33Z +99,978,2020-02-15T06:59:33Z +99,982,2020-02-15T06:59:33Z +100,17,2020-02-15T06:59:33Z +100,118,2020-02-15T06:59:33Z +100,250,2020-02-15T06:59:33Z +100,411,2020-02-15T06:59:33Z +100,414,2020-02-15T06:59:33Z +100,513,2020-02-15T06:59:33Z +100,563,2020-02-15T06:59:33Z +100,642,2020-02-15T06:59:33Z +100,714,2020-02-15T06:59:33Z +100,718,2020-02-15T06:59:33Z +100,759,2020-02-15T06:59:33Z +100,779,2020-02-15T06:59:33Z +100,815,2020-02-15T06:59:33Z +100,846,2020-02-15T06:59:33Z +100,850,2020-02-15T06:59:33Z +100,872,2020-02-15T06:59:33Z +100,877,2020-02-15T06:59:33Z +100,909,2020-02-15T06:59:33Z +100,919,2020-02-15T06:59:33Z +100,944,2020-02-15T06:59:33Z +100,967,2020-02-15T06:59:33Z +100,979,2020-02-15T06:59:33Z +100,991,2020-02-15T06:59:33Z +100,992,2020-02-15T06:59:33Z +101,60,2020-02-15T06:59:33Z +101,66,2020-02-15T06:59:33Z +101,85,2020-02-15T06:59:33Z +101,146,2020-02-15T06:59:33Z +101,189,2020-02-15T06:59:33Z +101,250,2020-02-15T06:59:33Z +101,255,2020-02-15T06:59:33Z +101,263,2020-02-15T06:59:33Z +101,275,2020-02-15T06:59:33Z +101,289,2020-02-15T06:59:33Z +101,491,2020-02-15T06:59:33Z +101,494,2020-02-15T06:59:33Z +101,511,2020-02-15T06:59:33Z +101,568,2020-02-15T06:59:33Z +101,608,2020-02-15T06:59:33Z +101,617,2020-02-15T06:59:33Z +101,655,2020-02-15T06:59:33Z +101,662,2020-02-15T06:59:33Z +101,700,2020-02-15T06:59:33Z +101,702,2020-02-15T06:59:33Z +101,758,2020-02-15T06:59:33Z +101,774,2020-02-15T06:59:33Z +101,787,2020-02-15T06:59:33Z +101,828,2020-02-15T06:59:33Z +101,841,2020-02-15T06:59:33Z +101,928,2020-02-15T06:59:33Z +101,932,2020-02-15T06:59:33Z +101,936,2020-02-15T06:59:33Z +101,941,2020-02-15T06:59:33Z +101,978,2020-02-15T06:59:33Z +101,980,2020-02-15T06:59:33Z +101,984,2020-02-15T06:59:33Z +101,988,2020-02-15T06:59:33Z +102,20,2020-02-15T06:59:33Z +102,34,2020-02-15T06:59:33Z +102,53,2020-02-15T06:59:33Z +102,123,2020-02-15T06:59:33Z +102,124,2020-02-15T06:59:33Z +102,194,2020-02-15T06:59:33Z +102,200,2020-02-15T06:59:33Z +102,205,2020-02-15T06:59:33Z +102,268,2020-02-15T06:59:34Z +102,326,2020-02-15T06:59:34Z +102,329,2020-02-15T06:59:34Z +102,334,2020-02-15T06:59:34Z +102,351,2020-02-15T06:59:34Z +102,418,2020-02-15T06:59:34Z +102,431,2020-02-15T06:59:34Z +102,446,2020-02-15T06:59:34Z +102,485,2020-02-15T06:59:34Z +102,508,2020-02-15T06:59:34Z +102,517,2020-02-15T06:59:34Z +102,521,2020-02-15T06:59:34Z +102,526,2020-02-15T06:59:34Z +102,529,2020-02-15T06:59:34Z +102,544,2020-02-15T06:59:34Z +102,600,2020-02-15T06:59:34Z +102,605,2020-02-15T06:59:34Z +102,606,2020-02-15T06:59:34Z +102,624,2020-02-15T06:59:34Z +102,631,2020-02-15T06:59:34Z +102,712,2020-02-15T06:59:34Z +102,728,2020-02-15T06:59:34Z +102,744,2020-02-15T06:59:34Z +102,796,2020-02-15T06:59:34Z +102,802,2020-02-15T06:59:34Z +102,810,2020-02-15T06:59:34Z +102,828,2020-02-15T06:59:34Z +102,837,2020-02-15T06:59:34Z +102,845,2020-02-15T06:59:34Z +102,852,2020-02-15T06:59:34Z +102,958,2020-02-15T06:59:34Z +102,979,2020-02-15T06:59:34Z +102,980,2020-02-15T06:59:34Z +103,5,2020-02-15T06:59:34Z +103,118,2020-02-15T06:59:34Z +103,130,2020-02-15T06:59:34Z +103,197,2020-02-15T06:59:34Z +103,199,2020-02-15T06:59:34Z +103,206,2020-02-15T06:59:34Z +103,215,2020-02-15T06:59:34Z +103,221,2020-02-15T06:59:34Z +103,271,2020-02-15T06:59:34Z +103,285,2020-02-15T06:59:34Z +103,315,2020-02-15T06:59:34Z +103,318,2020-02-15T06:59:34Z +103,333,2020-02-15T06:59:34Z +103,347,2020-02-15T06:59:34Z +103,356,2020-02-15T06:59:34Z +103,360,2020-02-15T06:59:34Z +103,378,2020-02-15T06:59:34Z +103,437,2020-02-15T06:59:34Z +103,585,2020-02-15T06:59:34Z +103,609,2020-02-15T06:59:34Z +103,639,2020-02-15T06:59:34Z +103,643,2020-02-15T06:59:34Z +103,692,2020-02-15T06:59:34Z +103,735,2020-02-15T06:59:34Z +103,822,2020-02-15T06:59:34Z +103,895,2020-02-15T06:59:34Z +103,903,2020-02-15T06:59:34Z +103,912,2020-02-15T06:59:34Z +103,942,2020-02-15T06:59:34Z +103,956,2020-02-15T06:59:34Z +104,19,2020-02-15T06:59:34Z +104,39,2020-02-15T06:59:34Z +104,40,2020-02-15T06:59:34Z +104,59,2020-02-15T06:59:34Z +104,70,2020-02-15T06:59:34Z +104,136,2020-02-15T06:59:34Z +104,156,2020-02-15T06:59:34Z +104,184,2020-02-15T06:59:34Z +104,198,2020-02-15T06:59:34Z +104,233,2020-02-15T06:59:34Z +104,259,2020-02-15T06:59:34Z +104,287,2020-02-15T06:59:34Z +104,309,2020-02-15T06:59:34Z +104,313,2020-02-15T06:59:34Z +104,394,2020-02-15T06:59:34Z +104,401,2020-02-15T06:59:34Z +104,463,2020-02-15T06:59:34Z +104,506,2020-02-15T06:59:34Z +104,516,2020-02-15T06:59:34Z +104,583,2020-02-15T06:59:34Z +104,600,2020-02-15T06:59:34Z +104,607,2020-02-15T06:59:34Z +104,657,2020-02-15T06:59:34Z +104,677,2020-02-15T06:59:34Z +104,739,2020-02-15T06:59:34Z +104,892,2020-02-15T06:59:34Z +104,904,2020-02-15T06:59:34Z +104,926,2020-02-15T06:59:34Z +104,945,2020-02-15T06:59:34Z +104,984,2020-02-15T06:59:34Z +104,999,2020-02-15T06:59:34Z +105,12,2020-02-15T06:59:34Z +105,15,2020-02-15T06:59:34Z +105,21,2020-02-15T06:59:34Z +105,29,2020-02-15T06:59:34Z +105,42,2020-02-15T06:59:34Z +105,116,2020-02-15T06:59:34Z +105,158,2020-02-15T06:59:34Z +105,239,2020-02-15T06:59:34Z +105,280,2020-02-15T06:59:34Z +105,283,2020-02-15T06:59:34Z +105,315,2020-02-15T06:59:34Z +105,333,2020-02-15T06:59:34Z +105,372,2020-02-15T06:59:34Z +105,377,2020-02-15T06:59:34Z +105,530,2020-02-15T06:59:34Z +105,558,2020-02-15T06:59:34Z +105,561,2020-02-15T06:59:34Z +105,606,2020-02-15T06:59:34Z +105,649,2020-02-15T06:59:34Z +105,686,2020-02-15T06:59:34Z +105,750,2020-02-15T06:59:34Z +105,795,2020-02-15T06:59:34Z +105,831,2020-02-15T06:59:34Z +105,835,2020-02-15T06:59:34Z +105,858,2020-02-15T06:59:34Z +105,864,2020-02-15T06:59:34Z +105,893,2020-02-15T06:59:34Z +105,906,2020-02-15T06:59:34Z +105,910,2020-02-15T06:59:34Z +105,915,2020-02-15T06:59:34Z +105,954,2020-02-15T06:59:34Z +105,990,2020-02-15T06:59:34Z +105,993,2020-02-15T06:59:34Z +105,994,2020-02-15T06:59:34Z +106,44,2020-02-15T06:59:34Z +106,83,2020-02-15T06:59:34Z +106,108,2020-02-15T06:59:34Z +106,126,2020-02-15T06:59:34Z +106,136,2020-02-15T06:59:34Z +106,166,2020-02-15T06:59:34Z +106,189,2020-02-15T06:59:34Z +106,194,2020-02-15T06:59:34Z +106,204,2020-02-15T06:59:34Z +106,229,2020-02-15T06:59:34Z +106,241,2020-02-15T06:59:34Z +106,345,2020-02-15T06:59:34Z +106,365,2020-02-15T06:59:34Z +106,399,2020-02-15T06:59:34Z +106,439,2020-02-15T06:59:34Z +106,457,2020-02-15T06:59:34Z +106,469,2020-02-15T06:59:34Z +106,500,2020-02-15T06:59:34Z +106,505,2020-02-15T06:59:34Z +106,559,2020-02-15T06:59:34Z +106,566,2020-02-15T06:59:34Z +106,585,2020-02-15T06:59:34Z +106,639,2020-02-15T06:59:34Z +106,654,2020-02-15T06:59:34Z +106,659,2020-02-15T06:59:34Z +106,675,2020-02-15T06:59:34Z +106,687,2020-02-15T06:59:34Z +106,752,2020-02-15T06:59:34Z +106,763,2020-02-15T06:59:34Z +106,780,2020-02-15T06:59:34Z +106,858,2020-02-15T06:59:34Z +106,866,2020-02-15T06:59:34Z +106,881,2020-02-15T06:59:34Z +106,894,2020-02-15T06:59:34Z +106,934,2020-02-15T06:59:34Z +107,62,2020-02-15T06:59:34Z +107,112,2020-02-15T06:59:34Z +107,133,2020-02-15T06:59:34Z +107,136,2020-02-15T06:59:34Z +107,138,2020-02-15T06:59:34Z +107,162,2020-02-15T06:59:34Z +107,165,2020-02-15T06:59:34Z +107,172,2020-02-15T06:59:34Z +107,209,2020-02-15T06:59:34Z +107,220,2020-02-15T06:59:34Z +107,239,2020-02-15T06:59:34Z +107,277,2020-02-15T06:59:34Z +107,292,2020-02-15T06:59:34Z +107,338,2020-02-15T06:59:34Z +107,348,2020-02-15T06:59:34Z +107,369,2020-02-15T06:59:34Z +107,388,2020-02-15T06:59:34Z +107,392,2020-02-15T06:59:34Z +107,409,2020-02-15T06:59:34Z +107,430,2020-02-15T06:59:34Z +107,445,2020-02-15T06:59:34Z +107,454,2020-02-15T06:59:34Z +107,458,2020-02-15T06:59:34Z +107,467,2020-02-15T06:59:34Z +107,520,2020-02-15T06:59:34Z +107,534,2020-02-15T06:59:34Z +107,548,2020-02-15T06:59:34Z +107,571,2020-02-15T06:59:34Z +107,574,2020-02-15T06:59:34Z +107,603,2020-02-15T06:59:34Z +107,606,2020-02-15T06:59:34Z +107,637,2020-02-15T06:59:34Z +107,774,2020-02-15T06:59:34Z +107,781,2020-02-15T06:59:34Z +107,796,2020-02-15T06:59:34Z +107,831,2020-02-15T06:59:34Z +107,849,2020-02-15T06:59:34Z +107,859,2020-02-15T06:59:34Z +107,879,2020-02-15T06:59:34Z +107,905,2020-02-15T06:59:34Z +107,973,2020-02-15T06:59:34Z +107,977,2020-02-15T06:59:34Z +108,1,2020-02-15T06:59:34Z +108,6,2020-02-15T06:59:34Z +108,9,2020-02-15T06:59:34Z +108,137,2020-02-15T06:59:34Z +108,208,2020-02-15T06:59:34Z +108,219,2020-02-15T06:59:34Z +108,242,2020-02-15T06:59:34Z +108,278,2020-02-15T06:59:34Z +108,302,2020-02-15T06:59:34Z +108,350,2020-02-15T06:59:34Z +108,378,2020-02-15T06:59:34Z +108,379,2020-02-15T06:59:34Z +108,495,2020-02-15T06:59:34Z +108,507,2020-02-15T06:59:34Z +108,517,2020-02-15T06:59:34Z +108,561,2020-02-15T06:59:34Z +108,567,2020-02-15T06:59:34Z +108,648,2020-02-15T06:59:34Z +108,652,2020-02-15T06:59:34Z +108,655,2020-02-15T06:59:34Z +108,673,2020-02-15T06:59:34Z +108,693,2020-02-15T06:59:34Z +108,696,2020-02-15T06:59:34Z +108,702,2020-02-15T06:59:34Z +108,721,2020-02-15T06:59:34Z +108,733,2020-02-15T06:59:34Z +108,741,2020-02-15T06:59:34Z +108,744,2020-02-15T06:59:34Z +108,887,2020-02-15T06:59:34Z +108,892,2020-02-15T06:59:34Z +108,894,2020-02-15T06:59:34Z +108,920,2020-02-15T06:59:34Z +108,958,2020-02-15T06:59:34Z +108,966,2020-02-15T06:59:34Z +109,12,2020-02-15T06:59:34Z +109,48,2020-02-15T06:59:34Z +109,77,2020-02-15T06:59:34Z +109,157,2020-02-15T06:59:34Z +109,174,2020-02-15T06:59:34Z +109,190,2020-02-15T06:59:34Z +109,243,2020-02-15T06:59:34Z +109,281,2020-02-15T06:59:34Z +109,393,2020-02-15T06:59:34Z +109,463,2020-02-15T06:59:34Z +109,622,2020-02-15T06:59:34Z +109,657,2020-02-15T06:59:34Z +109,694,2020-02-15T06:59:34Z +109,700,2020-02-15T06:59:34Z +109,732,2020-02-15T06:59:34Z +109,753,2020-02-15T06:59:34Z +109,785,2020-02-15T06:59:34Z +109,786,2020-02-15T06:59:34Z +109,863,2020-02-15T06:59:34Z +109,885,2020-02-15T06:59:34Z +109,955,2020-02-15T06:59:34Z +109,967,2020-02-15T06:59:34Z +110,8,2020-02-15T06:59:34Z +110,27,2020-02-15T06:59:34Z +110,62,2020-02-15T06:59:34Z +110,120,2020-02-15T06:59:34Z +110,126,2020-02-15T06:59:34Z +110,156,2020-02-15T06:59:34Z +110,292,2020-02-15T06:59:34Z +110,343,2020-02-15T06:59:34Z +110,360,2020-02-15T06:59:34Z +110,369,2020-02-15T06:59:34Z +110,435,2020-02-15T06:59:34Z +110,513,2020-02-15T06:59:34Z +110,525,2020-02-15T06:59:34Z +110,539,2020-02-15T06:59:34Z +110,545,2020-02-15T06:59:34Z +110,625,2020-02-15T06:59:34Z +110,650,2020-02-15T06:59:34Z +110,801,2020-02-15T06:59:34Z +110,912,2020-02-15T06:59:34Z +110,961,2020-02-15T06:59:34Z +110,987,2020-02-15T06:59:34Z +111,61,2020-02-15T06:59:34Z +111,78,2020-02-15T06:59:34Z +111,98,2020-02-15T06:59:34Z +111,162,2020-02-15T06:59:34Z +111,179,2020-02-15T06:59:34Z +111,194,2020-02-15T06:59:34Z +111,325,2020-02-15T06:59:34Z +111,359,2020-02-15T06:59:34Z +111,382,2020-02-15T06:59:34Z +111,403,2020-02-15T06:59:34Z +111,407,2020-02-15T06:59:34Z +111,414,2020-02-15T06:59:34Z +111,474,2020-02-15T06:59:34Z +111,489,2020-02-15T06:59:34Z +111,508,2020-02-15T06:59:34Z +111,555,2020-02-15T06:59:34Z +111,603,2020-02-15T06:59:34Z +111,608,2020-02-15T06:59:34Z +111,643,2020-02-15T06:59:34Z +111,669,2020-02-15T06:59:34Z +111,679,2020-02-15T06:59:34Z +111,680,2020-02-15T06:59:34Z +111,699,2020-02-15T06:59:34Z +111,731,2020-02-15T06:59:34Z +111,732,2020-02-15T06:59:34Z +111,737,2020-02-15T06:59:34Z +111,744,2020-02-15T06:59:34Z +111,777,2020-02-15T06:59:34Z +111,847,2020-02-15T06:59:34Z +111,894,2020-02-15T06:59:34Z +111,919,2020-02-15T06:59:34Z +111,962,2020-02-15T06:59:34Z +111,973,2020-02-15T06:59:34Z +112,34,2020-02-15T06:59:34Z +112,37,2020-02-15T06:59:34Z +112,151,2020-02-15T06:59:34Z +112,173,2020-02-15T06:59:34Z +112,188,2020-02-15T06:59:34Z +112,231,2020-02-15T06:59:34Z +112,312,2020-02-15T06:59:34Z +112,322,2020-02-15T06:59:34Z +112,443,2020-02-15T06:59:34Z +112,450,2020-02-15T06:59:34Z +112,565,2020-02-15T06:59:34Z +112,603,2020-02-15T06:59:34Z +112,606,2020-02-15T06:59:34Z +112,654,2020-02-15T06:59:34Z +112,666,2020-02-15T06:59:34Z +112,700,2020-02-15T06:59:34Z +112,728,2020-02-15T06:59:34Z +112,772,2020-02-15T06:59:34Z +112,796,2020-02-15T06:59:34Z +112,817,2020-02-15T06:59:34Z +112,829,2020-02-15T06:59:34Z +112,856,2020-02-15T06:59:34Z +112,865,2020-02-15T06:59:34Z +112,869,2020-02-15T06:59:34Z +112,988,2020-02-15T06:59:34Z +113,35,2020-02-15T06:59:34Z +113,84,2020-02-15T06:59:34Z +113,116,2020-02-15T06:59:34Z +113,181,2020-02-15T06:59:34Z +113,218,2020-02-15T06:59:34Z +113,249,2020-02-15T06:59:34Z +113,258,2020-02-15T06:59:34Z +113,292,2020-02-15T06:59:34Z +113,322,2020-02-15T06:59:34Z +113,353,2020-02-15T06:59:34Z +113,403,2020-02-15T06:59:34Z +113,525,2020-02-15T06:59:34Z +113,642,2020-02-15T06:59:34Z +113,656,2020-02-15T06:59:34Z +113,674,2020-02-15T06:59:34Z +113,680,2020-02-15T06:59:34Z +113,700,2020-02-15T06:59:34Z +113,719,2020-02-15T06:59:34Z +113,723,2020-02-15T06:59:34Z +113,726,2020-02-15T06:59:34Z +113,732,2020-02-15T06:59:34Z +113,748,2020-02-15T06:59:34Z +113,838,2020-02-15T06:59:34Z +113,890,2020-02-15T06:59:34Z +113,921,2020-02-15T06:59:34Z +113,969,2020-02-15T06:59:34Z +113,981,2020-02-15T06:59:34Z +114,13,2020-02-15T06:59:34Z +114,68,2020-02-15T06:59:34Z +114,90,2020-02-15T06:59:34Z +114,162,2020-02-15T06:59:34Z +114,188,2020-02-15T06:59:34Z +114,194,2020-02-15T06:59:34Z +114,210,2020-02-15T06:59:34Z +114,237,2020-02-15T06:59:34Z +114,254,2020-02-15T06:59:34Z +114,305,2020-02-15T06:59:34Z +114,339,2020-02-15T06:59:34Z +114,420,2020-02-15T06:59:34Z +114,425,2020-02-15T06:59:34Z +114,452,2020-02-15T06:59:34Z +114,538,2020-02-15T06:59:34Z +114,619,2020-02-15T06:59:34Z +114,757,2020-02-15T06:59:34Z +114,807,2020-02-15T06:59:34Z +114,827,2020-02-15T06:59:34Z +114,841,2020-02-15T06:59:34Z +114,861,2020-02-15T06:59:34Z +114,866,2020-02-15T06:59:34Z +114,913,2020-02-15T06:59:34Z +114,961,2020-02-15T06:59:34Z +114,993,2020-02-15T06:59:34Z +115,49,2020-02-15T06:59:34Z +115,52,2020-02-15T06:59:34Z +115,245,2020-02-15T06:59:34Z +115,246,2020-02-15T06:59:34Z +115,277,2020-02-15T06:59:34Z +115,302,2020-02-15T06:59:34Z +115,379,2020-02-15T06:59:34Z +115,383,2020-02-15T06:59:34Z +115,391,2020-02-15T06:59:34Z +115,428,2020-02-15T06:59:34Z +115,506,2020-02-15T06:59:34Z +115,531,2020-02-15T06:59:34Z +115,607,2020-02-15T06:59:34Z +115,615,2020-02-15T06:59:34Z +115,661,2020-02-15T06:59:34Z +115,671,2020-02-15T06:59:34Z +115,686,2020-02-15T06:59:34Z +115,703,2020-02-15T06:59:34Z +115,714,2020-02-15T06:59:34Z +115,740,2020-02-15T06:59:34Z +115,754,2020-02-15T06:59:34Z +115,846,2020-02-15T06:59:34Z +115,887,2020-02-15T06:59:34Z +115,952,2020-02-15T06:59:34Z +115,955,2020-02-15T06:59:34Z +115,966,2020-02-15T06:59:34Z +115,985,2020-02-15T06:59:34Z +115,994,2020-02-15T06:59:34Z +116,36,2020-02-15T06:59:34Z +116,48,2020-02-15T06:59:34Z +116,88,2020-02-15T06:59:34Z +116,90,2020-02-15T06:59:34Z +116,105,2020-02-15T06:59:34Z +116,128,2020-02-15T06:59:34Z +116,336,2020-02-15T06:59:34Z +116,338,2020-02-15T06:59:34Z +116,384,2020-02-15T06:59:34Z +116,412,2020-02-15T06:59:34Z +116,420,2020-02-15T06:59:34Z +116,451,2020-02-15T06:59:34Z +116,481,2020-02-15T06:59:34Z +116,492,2020-02-15T06:59:34Z +116,584,2020-02-15T06:59:34Z +116,606,2020-02-15T06:59:34Z +116,622,2020-02-15T06:59:34Z +116,647,2020-02-15T06:59:34Z +116,653,2020-02-15T06:59:34Z +116,742,2020-02-15T06:59:34Z +116,784,2020-02-15T06:59:34Z +116,844,2020-02-15T06:59:34Z +116,939,2020-02-15T06:59:34Z +116,956,2020-02-15T06:59:34Z +117,10,2020-02-15T06:59:34Z +117,15,2020-02-15T06:59:34Z +117,42,2020-02-15T06:59:34Z +117,167,2020-02-15T06:59:34Z +117,178,2020-02-15T06:59:34Z +117,190,2020-02-15T06:59:34Z +117,197,2020-02-15T06:59:34Z +117,224,2020-02-15T06:59:34Z +117,246,2020-02-15T06:59:34Z +117,273,2020-02-15T06:59:34Z +117,298,2020-02-15T06:59:34Z +117,316,2020-02-15T06:59:34Z +117,337,2020-02-15T06:59:34Z +117,395,2020-02-15T06:59:34Z +117,423,2020-02-15T06:59:34Z +117,432,2020-02-15T06:59:34Z +117,459,2020-02-15T06:59:34Z +117,468,2020-02-15T06:59:34Z +117,550,2020-02-15T06:59:34Z +117,578,2020-02-15T06:59:34Z +117,707,2020-02-15T06:59:34Z +117,710,2020-02-15T06:59:34Z +117,738,2020-02-15T06:59:34Z +117,739,2020-02-15T06:59:34Z +117,778,2020-02-15T06:59:34Z +117,783,2020-02-15T06:59:34Z +117,785,2020-02-15T06:59:34Z +117,797,2020-02-15T06:59:34Z +117,812,2020-02-15T06:59:34Z +117,831,2020-02-15T06:59:34Z +117,864,2020-02-15T06:59:34Z +117,887,2020-02-15T06:59:34Z +117,926,2020-02-15T06:59:34Z +118,35,2020-02-15T06:59:34Z +118,39,2020-02-15T06:59:34Z +118,41,2020-02-15T06:59:34Z +118,49,2020-02-15T06:59:34Z +118,55,2020-02-15T06:59:34Z +118,136,2020-02-15T06:59:34Z +118,141,2020-02-15T06:59:34Z +118,151,2020-02-15T06:59:34Z +118,311,2020-02-15T06:59:34Z +118,384,2020-02-15T06:59:34Z +118,399,2020-02-15T06:59:34Z +118,499,2020-02-15T06:59:34Z +118,517,2020-02-15T06:59:34Z +118,553,2020-02-15T06:59:34Z +118,558,2020-02-15T06:59:34Z +118,572,2020-02-15T06:59:34Z +118,641,2020-02-15T06:59:34Z +118,656,2020-02-15T06:59:34Z +118,695,2020-02-15T06:59:34Z +118,735,2020-02-15T06:59:34Z +118,788,2020-02-15T06:59:34Z +118,852,2020-02-15T06:59:34Z +118,938,2020-02-15T06:59:34Z +118,957,2020-02-15T06:59:34Z +118,969,2020-02-15T06:59:34Z +119,21,2020-02-15T06:59:34Z +119,49,2020-02-15T06:59:34Z +119,64,2020-02-15T06:59:34Z +119,87,2020-02-15T06:59:34Z +119,143,2020-02-15T06:59:34Z +119,171,2020-02-15T06:59:34Z +119,172,2020-02-15T06:59:34Z +119,173,2020-02-15T06:59:34Z +119,381,2020-02-15T06:59:34Z +119,394,2020-02-15T06:59:34Z +119,412,2020-02-15T06:59:34Z +119,418,2020-02-15T06:59:34Z +119,454,2020-02-15T06:59:34Z +119,509,2020-02-15T06:59:34Z +119,521,2020-02-15T06:59:34Z +119,567,2020-02-15T06:59:34Z +119,570,2020-02-15T06:59:34Z +119,592,2020-02-15T06:59:34Z +119,614,2020-02-15T06:59:34Z +119,636,2020-02-15T06:59:34Z +119,649,2020-02-15T06:59:34Z +119,693,2020-02-15T06:59:34Z +119,738,2020-02-15T06:59:34Z +119,751,2020-02-15T06:59:34Z +119,782,2020-02-15T06:59:34Z +119,786,2020-02-15T06:59:34Z +119,788,2020-02-15T06:59:34Z +119,802,2020-02-15T06:59:34Z +119,858,2020-02-15T06:59:34Z +119,868,2020-02-15T06:59:34Z +119,900,2020-02-15T06:59:34Z +119,939,2020-02-15T06:59:34Z +120,57,2020-02-15T06:59:34Z +120,63,2020-02-15T06:59:34Z +120,144,2020-02-15T06:59:34Z +120,149,2020-02-15T06:59:34Z +120,208,2020-02-15T06:59:34Z +120,231,2020-02-15T06:59:34Z +120,238,2020-02-15T06:59:34Z +120,255,2020-02-15T06:59:34Z +120,414,2020-02-15T06:59:34Z +120,424,2020-02-15T06:59:34Z +120,489,2020-02-15T06:59:34Z +120,513,2020-02-15T06:59:34Z +120,590,2020-02-15T06:59:34Z +120,641,2020-02-15T06:59:34Z +120,642,2020-02-15T06:59:34Z +120,659,2020-02-15T06:59:34Z +120,682,2020-02-15T06:59:34Z +120,691,2020-02-15T06:59:34Z +120,715,2020-02-15T06:59:34Z +120,717,2020-02-15T06:59:34Z +120,722,2020-02-15T06:59:34Z +120,746,2020-02-15T06:59:34Z +120,830,2020-02-15T06:59:34Z +120,894,2020-02-15T06:59:34Z +120,898,2020-02-15T06:59:34Z +120,911,2020-02-15T06:59:34Z +120,994,2020-02-15T06:59:34Z +121,141,2020-02-15T06:59:34Z +121,154,2020-02-15T06:59:34Z +121,161,2020-02-15T06:59:34Z +121,170,2020-02-15T06:59:34Z +121,186,2020-02-15T06:59:34Z +121,198,2020-02-15T06:59:34Z +121,220,2020-02-15T06:59:34Z +121,222,2020-02-15T06:59:34Z +121,284,2020-02-15T06:59:34Z +121,297,2020-02-15T06:59:34Z +121,338,2020-02-15T06:59:34Z +121,353,2020-02-15T06:59:34Z +121,449,2020-02-15T06:59:34Z +121,479,2020-02-15T06:59:34Z +121,517,2020-02-15T06:59:34Z +121,633,2020-02-15T06:59:34Z +121,654,2020-02-15T06:59:34Z +121,658,2020-02-15T06:59:34Z +121,666,2020-02-15T06:59:34Z +121,771,2020-02-15T06:59:34Z +121,780,2020-02-15T06:59:34Z +121,847,2020-02-15T06:59:34Z +121,884,2020-02-15T06:59:34Z +121,885,2020-02-15T06:59:34Z +121,966,2020-02-15T06:59:34Z +122,22,2020-02-15T06:59:34Z +122,29,2020-02-15T06:59:34Z +122,76,2020-02-15T06:59:34Z +122,83,2020-02-15T06:59:34Z +122,157,2020-02-15T06:59:34Z +122,158,2020-02-15T06:59:34Z +122,166,2020-02-15T06:59:34Z +122,227,2020-02-15T06:59:34Z +122,238,2020-02-15T06:59:34Z +122,300,2020-02-15T06:59:34Z +122,307,2020-02-15T06:59:34Z +122,363,2020-02-15T06:59:34Z +122,470,2020-02-15T06:59:34Z +122,489,2020-02-15T06:59:34Z +122,491,2020-02-15T06:59:34Z +122,542,2020-02-15T06:59:34Z +122,620,2020-02-15T06:59:34Z +122,649,2020-02-15T06:59:34Z +122,654,2020-02-15T06:59:34Z +122,673,2020-02-15T06:59:34Z +122,718,2020-02-15T06:59:34Z +122,795,2020-02-15T06:59:34Z +122,957,2020-02-15T06:59:34Z +122,961,2020-02-15T06:59:34Z +122,998,2020-02-15T06:59:34Z +123,3,2020-02-15T06:59:34Z +123,43,2020-02-15T06:59:34Z +123,67,2020-02-15T06:59:34Z +123,105,2020-02-15T06:59:34Z +123,148,2020-02-15T06:59:34Z +123,151,2020-02-15T06:59:34Z +123,185,2020-02-15T06:59:34Z +123,223,2020-02-15T06:59:34Z +123,234,2020-02-15T06:59:34Z +123,245,2020-02-15T06:59:34Z +123,246,2020-02-15T06:59:34Z +123,266,2020-02-15T06:59:34Z +123,286,2020-02-15T06:59:34Z +123,429,2020-02-15T06:59:34Z +123,442,2020-02-15T06:59:34Z +123,446,2020-02-15T06:59:34Z +123,479,2020-02-15T06:59:34Z +123,480,2020-02-15T06:59:34Z +123,494,2020-02-15T06:59:34Z +123,503,2020-02-15T06:59:34Z +123,530,2020-02-15T06:59:34Z +123,576,2020-02-15T06:59:34Z +123,577,2020-02-15T06:59:34Z +123,589,2020-02-15T06:59:34Z +123,593,2020-02-15T06:59:34Z +123,725,2020-02-15T06:59:34Z +123,730,2020-02-15T06:59:34Z +123,786,2020-02-15T06:59:34Z +123,860,2020-02-15T06:59:34Z +123,892,2020-02-15T06:59:34Z +123,926,2020-02-15T06:59:34Z +123,988,2020-02-15T06:59:34Z +124,22,2020-02-15T06:59:34Z +124,64,2020-02-15T06:59:34Z +124,106,2020-02-15T06:59:34Z +124,113,2020-02-15T06:59:34Z +124,190,2020-02-15T06:59:34Z +124,246,2020-02-15T06:59:34Z +124,260,2020-02-15T06:59:34Z +124,263,2020-02-15T06:59:34Z +124,289,2020-02-15T06:59:34Z +124,306,2020-02-15T06:59:34Z +124,312,2020-02-15T06:59:34Z +124,322,2020-02-15T06:59:34Z +124,343,2020-02-15T06:59:34Z +124,449,2020-02-15T06:59:34Z +124,468,2020-02-15T06:59:34Z +124,539,2020-02-15T06:59:34Z +124,601,2020-02-15T06:59:34Z +124,726,2020-02-15T06:59:34Z +124,742,2020-02-15T06:59:34Z +124,775,2020-02-15T06:59:34Z +124,785,2020-02-15T06:59:34Z +124,814,2020-02-15T06:59:34Z +124,858,2020-02-15T06:59:34Z +124,882,2020-02-15T06:59:34Z +124,987,2020-02-15T06:59:34Z +124,997,2020-02-15T06:59:34Z +125,62,2020-02-15T06:59:34Z +125,98,2020-02-15T06:59:34Z +125,100,2020-02-15T06:59:34Z +125,114,2020-02-15T06:59:34Z +125,175,2020-02-15T06:59:34Z +125,188,2020-02-15T06:59:34Z +125,204,2020-02-15T06:59:34Z +125,238,2020-02-15T06:59:34Z +125,250,2020-02-15T06:59:34Z +125,324,2020-02-15T06:59:34Z +125,338,2020-02-15T06:59:34Z +125,361,2020-02-15T06:59:34Z +125,367,2020-02-15T06:59:34Z +125,395,2020-02-15T06:59:34Z +125,414,2020-02-15T06:59:34Z +125,428,2020-02-15T06:59:34Z +125,429,2020-02-15T06:59:34Z +125,450,2020-02-15T06:59:34Z +125,497,2020-02-15T06:59:34Z +125,557,2020-02-15T06:59:34Z +125,568,2020-02-15T06:59:34Z +125,584,2020-02-15T06:59:34Z +125,602,2020-02-15T06:59:34Z +125,623,2020-02-15T06:59:34Z +125,664,2020-02-15T06:59:34Z +125,683,2020-02-15T06:59:34Z +125,710,2020-02-15T06:59:34Z +125,877,2020-02-15T06:59:34Z +125,908,2020-02-15T06:59:34Z +125,949,2020-02-15T06:59:34Z +125,965,2020-02-15T06:59:34Z +126,21,2020-02-15T06:59:34Z +126,34,2020-02-15T06:59:34Z +126,43,2020-02-15T06:59:34Z +126,58,2020-02-15T06:59:34Z +126,85,2020-02-15T06:59:34Z +126,96,2020-02-15T06:59:34Z +126,193,2020-02-15T06:59:34Z +126,194,2020-02-15T06:59:34Z +126,199,2020-02-15T06:59:34Z +126,256,2020-02-15T06:59:34Z +126,263,2020-02-15T06:59:34Z +126,288,2020-02-15T06:59:34Z +126,317,2020-02-15T06:59:34Z +126,347,2020-02-15T06:59:34Z +126,369,2020-02-15T06:59:34Z +126,370,2020-02-15T06:59:34Z +126,419,2020-02-15T06:59:34Z +126,468,2020-02-15T06:59:34Z +126,469,2020-02-15T06:59:34Z +126,545,2020-02-15T06:59:34Z +126,685,2020-02-15T06:59:34Z +126,836,2020-02-15T06:59:34Z +126,860,2020-02-15T06:59:34Z +127,36,2020-02-15T06:59:34Z +127,47,2020-02-15T06:59:34Z +127,48,2020-02-15T06:59:34Z +127,79,2020-02-15T06:59:34Z +127,119,2020-02-15T06:59:34Z +127,141,2020-02-15T06:59:34Z +127,157,2020-02-15T06:59:34Z +127,202,2020-02-15T06:59:34Z +127,286,2020-02-15T06:59:34Z +127,333,2020-02-15T06:59:34Z +127,354,2020-02-15T06:59:34Z +127,366,2020-02-15T06:59:34Z +127,382,2020-02-15T06:59:34Z +127,388,2020-02-15T06:59:34Z +127,411,2020-02-15T06:59:34Z +127,459,2020-02-15T06:59:34Z +127,553,2020-02-15T06:59:34Z +127,573,2020-02-15T06:59:34Z +127,613,2020-02-15T06:59:34Z +127,617,2020-02-15T06:59:34Z +127,641,2020-02-15T06:59:34Z +127,710,2020-02-15T06:59:34Z +127,727,2020-02-15T06:59:34Z +127,749,2020-02-15T06:59:34Z +127,763,2020-02-15T06:59:34Z +127,771,2020-02-15T06:59:34Z +127,791,2020-02-15T06:59:34Z +127,819,2020-02-15T06:59:34Z +127,839,2020-02-15T06:59:34Z +127,846,2020-02-15T06:59:34Z +127,911,2020-02-15T06:59:34Z +127,953,2020-02-15T06:59:34Z +127,970,2020-02-15T06:59:34Z +128,26,2020-02-15T06:59:34Z +128,82,2020-02-15T06:59:34Z +128,119,2020-02-15T06:59:34Z +128,168,2020-02-15T06:59:34Z +128,212,2020-02-15T06:59:34Z +128,238,2020-02-15T06:59:34Z +128,299,2020-02-15T06:59:34Z +128,312,2020-02-15T06:59:34Z +128,326,2020-02-15T06:59:34Z +128,336,2020-02-15T06:59:34Z +128,345,2020-02-15T06:59:34Z +128,407,2020-02-15T06:59:34Z +128,462,2020-02-15T06:59:34Z +128,485,2020-02-15T06:59:34Z +128,516,2020-02-15T06:59:34Z +128,564,2020-02-15T06:59:34Z +128,614,2020-02-15T06:59:34Z +128,650,2020-02-15T06:59:34Z +128,665,2020-02-15T06:59:34Z +128,671,2020-02-15T06:59:34Z +128,693,2020-02-15T06:59:34Z +128,696,2020-02-15T06:59:34Z +128,759,2020-02-15T06:59:34Z +128,774,2020-02-15T06:59:34Z +128,814,2020-02-15T06:59:34Z +128,899,2020-02-15T06:59:34Z +128,912,2020-02-15T06:59:34Z +128,944,2020-02-15T06:59:34Z +128,949,2020-02-15T06:59:34Z +128,965,2020-02-15T06:59:34Z +129,56,2020-02-15T06:59:34Z +129,89,2020-02-15T06:59:34Z +129,101,2020-02-15T06:59:34Z +129,166,2020-02-15T06:59:34Z +129,202,2020-02-15T06:59:34Z +129,230,2020-02-15T06:59:34Z +129,247,2020-02-15T06:59:34Z +129,249,2020-02-15T06:59:34Z +129,348,2020-02-15T06:59:34Z +129,367,2020-02-15T06:59:34Z +129,391,2020-02-15T06:59:34Z +129,418,2020-02-15T06:59:34Z +129,431,2020-02-15T06:59:34Z +129,452,2020-02-15T06:59:34Z +129,471,2020-02-15T06:59:34Z +129,520,2020-02-15T06:59:34Z +129,597,2020-02-15T06:59:34Z +129,602,2020-02-15T06:59:34Z +129,640,2020-02-15T06:59:34Z +129,669,2020-02-15T06:59:34Z +129,684,2020-02-15T06:59:34Z +129,705,2020-02-15T06:59:34Z +129,805,2020-02-15T06:59:34Z +129,826,2020-02-15T06:59:34Z +129,834,2020-02-15T06:59:34Z +129,857,2020-02-15T06:59:34Z +129,910,2020-02-15T06:59:34Z +129,920,2020-02-15T06:59:34Z +129,938,2020-02-15T06:59:34Z +129,962,2020-02-15T06:59:34Z +130,9,2020-02-15T06:59:34Z +130,26,2020-02-15T06:59:34Z +130,37,2020-02-15T06:59:34Z +130,43,2020-02-15T06:59:34Z +130,49,2020-02-15T06:59:34Z +130,57,2020-02-15T06:59:34Z +130,107,2020-02-15T06:59:34Z +130,112,2020-02-15T06:59:34Z +130,208,2020-02-15T06:59:34Z +130,326,2020-02-15T06:59:34Z +130,375,2020-02-15T06:59:34Z +130,416,2020-02-15T06:59:34Z +130,431,2020-02-15T06:59:34Z +130,452,2020-02-15T06:59:34Z +130,453,2020-02-15T06:59:34Z +130,478,2020-02-15T06:59:34Z +130,507,2020-02-15T06:59:34Z +130,525,2020-02-15T06:59:34Z +130,549,2020-02-15T06:59:34Z +130,592,2020-02-15T06:59:34Z +130,702,2020-02-15T06:59:34Z +130,725,2020-02-15T06:59:34Z +130,764,2020-02-15T06:59:34Z +130,809,2020-02-15T06:59:34Z +130,869,2020-02-15T06:59:34Z +130,930,2020-02-15T06:59:34Z +130,981,2020-02-15T06:59:34Z +131,48,2020-02-15T06:59:34Z +131,66,2020-02-15T06:59:34Z +131,94,2020-02-15T06:59:34Z +131,120,2020-02-15T06:59:34Z +131,147,2020-02-15T06:59:34Z +131,206,2020-02-15T06:59:34Z +131,320,2020-02-15T06:59:34Z +131,383,2020-02-15T06:59:34Z +131,432,2020-02-15T06:59:34Z +131,436,2020-02-15T06:59:34Z +131,450,2020-02-15T06:59:34Z +131,479,2020-02-15T06:59:34Z +131,494,2020-02-15T06:59:34Z +131,515,2020-02-15T06:59:34Z +131,539,2020-02-15T06:59:34Z +131,590,2020-02-15T06:59:34Z +131,647,2020-02-15T06:59:34Z +131,693,2020-02-15T06:59:34Z +131,713,2020-02-15T06:59:34Z +131,770,2020-02-15T06:59:34Z +131,798,2020-02-15T06:59:34Z +131,809,2020-02-15T06:59:34Z +131,875,2020-02-15T06:59:34Z +131,881,2020-02-15T06:59:34Z +131,921,2020-02-15T06:59:34Z +132,81,2020-02-15T06:59:34Z +132,82,2020-02-15T06:59:34Z +132,133,2020-02-15T06:59:34Z +132,156,2020-02-15T06:59:34Z +132,162,2020-02-15T06:59:34Z +132,311,2020-02-15T06:59:34Z +132,345,2020-02-15T06:59:34Z +132,377,2020-02-15T06:59:34Z +132,410,2020-02-15T06:59:34Z +132,538,2020-02-15T06:59:34Z +132,562,2020-02-15T06:59:34Z +132,586,2020-02-15T06:59:34Z +132,626,2020-02-15T06:59:34Z +132,637,2020-02-15T06:59:34Z +132,698,2020-02-15T06:59:34Z +132,756,2020-02-15T06:59:34Z +132,806,2020-02-15T06:59:34Z +132,897,2020-02-15T06:59:34Z +132,899,2020-02-15T06:59:34Z +132,904,2020-02-15T06:59:34Z +132,930,2020-02-15T06:59:34Z +132,987,2020-02-15T06:59:34Z +133,7,2020-02-15T06:59:34Z +133,51,2020-02-15T06:59:34Z +133,133,2020-02-15T06:59:34Z +133,172,2020-02-15T06:59:34Z +133,210,2020-02-15T06:59:34Z +133,270,2020-02-15T06:59:34Z +133,280,2020-02-15T06:59:34Z +133,286,2020-02-15T06:59:34Z +133,338,2020-02-15T06:59:34Z +133,342,2020-02-15T06:59:34Z +133,351,2020-02-15T06:59:34Z +133,368,2020-02-15T06:59:34Z +133,385,2020-02-15T06:59:34Z +133,390,2020-02-15T06:59:34Z +133,397,2020-02-15T06:59:34Z +133,410,2020-02-15T06:59:34Z +133,452,2020-02-15T06:59:34Z +133,463,2020-02-15T06:59:34Z +133,514,2020-02-15T06:59:34Z +133,588,2020-02-15T06:59:34Z +133,594,2020-02-15T06:59:34Z +133,635,2020-02-15T06:59:34Z +133,652,2020-02-15T06:59:34Z +133,727,2020-02-15T06:59:34Z +133,806,2020-02-15T06:59:34Z +133,868,2020-02-15T06:59:34Z +133,882,2020-02-15T06:59:34Z +133,894,2020-02-15T06:59:34Z +133,933,2020-02-15T06:59:34Z +133,952,2020-02-15T06:59:34Z +134,132,2020-02-15T06:59:34Z +134,145,2020-02-15T06:59:34Z +134,161,2020-02-15T06:59:34Z +134,219,2020-02-15T06:59:34Z +134,243,2020-02-15T06:59:34Z +134,250,2020-02-15T06:59:34Z +134,278,2020-02-15T06:59:34Z +134,341,2020-02-15T06:59:34Z +134,386,2020-02-15T06:59:34Z +134,413,2020-02-15T06:59:34Z +134,558,2020-02-15T06:59:34Z +134,588,2020-02-15T06:59:34Z +134,624,2020-02-15T06:59:34Z +134,655,2020-02-15T06:59:34Z +134,683,2020-02-15T06:59:34Z +134,690,2020-02-15T06:59:34Z +134,861,2020-02-15T06:59:34Z +134,896,2020-02-15T06:59:34Z +134,897,2020-02-15T06:59:34Z +134,915,2020-02-15T06:59:34Z +134,927,2020-02-15T06:59:34Z +134,936,2020-02-15T06:59:34Z +135,35,2020-02-15T06:59:34Z +135,41,2020-02-15T06:59:34Z +135,65,2020-02-15T06:59:34Z +135,88,2020-02-15T06:59:34Z +135,170,2020-02-15T06:59:34Z +135,269,2020-02-15T06:59:34Z +135,320,2020-02-15T06:59:34Z +135,353,2020-02-15T06:59:34Z +135,357,2020-02-15T06:59:34Z +135,364,2020-02-15T06:59:34Z +135,455,2020-02-15T06:59:34Z +135,458,2020-02-15T06:59:34Z +135,484,2020-02-15T06:59:34Z +135,541,2020-02-15T06:59:34Z +135,553,2020-02-15T06:59:34Z +135,616,2020-02-15T06:59:34Z +135,628,2020-02-15T06:59:34Z +135,719,2020-02-15T06:59:34Z +135,814,2020-02-15T06:59:34Z +135,905,2020-02-15T06:59:34Z +136,20,2020-02-15T06:59:34Z +136,25,2020-02-15T06:59:34Z +136,33,2020-02-15T06:59:34Z +136,56,2020-02-15T06:59:34Z +136,61,2020-02-15T06:59:34Z +136,193,2020-02-15T06:59:34Z +136,214,2020-02-15T06:59:34Z +136,229,2020-02-15T06:59:34Z +136,243,2020-02-15T06:59:34Z +136,256,2020-02-15T06:59:34Z +136,262,2020-02-15T06:59:34Z +136,271,2020-02-15T06:59:34Z +136,288,2020-02-15T06:59:34Z +136,300,2020-02-15T06:59:34Z +136,364,2020-02-15T06:59:34Z +136,401,2020-02-15T06:59:34Z +136,414,2020-02-15T06:59:34Z +136,420,2020-02-15T06:59:34Z +136,474,2020-02-15T06:59:34Z +136,485,2020-02-15T06:59:34Z +136,542,2020-02-15T06:59:34Z +136,552,2020-02-15T06:59:34Z +136,620,2020-02-15T06:59:34Z +136,649,2020-02-15T06:59:34Z +136,686,2020-02-15T06:59:34Z +136,781,2020-02-15T06:59:34Z +136,806,2020-02-15T06:59:34Z +136,808,2020-02-15T06:59:34Z +136,818,2020-02-15T06:59:34Z +136,842,2020-02-15T06:59:34Z +136,933,2020-02-15T06:59:34Z +136,993,2020-02-15T06:59:34Z +137,6,2020-02-15T06:59:34Z +137,14,2020-02-15T06:59:34Z +137,56,2020-02-15T06:59:34Z +137,96,2020-02-15T06:59:34Z +137,160,2020-02-15T06:59:34Z +137,224,2020-02-15T06:59:34Z +137,249,2020-02-15T06:59:34Z +137,254,2020-02-15T06:59:34Z +137,263,2020-02-15T06:59:34Z +137,268,2020-02-15T06:59:34Z +137,304,2020-02-15T06:59:34Z +137,390,2020-02-15T06:59:34Z +137,410,2020-02-15T06:59:34Z +137,433,2020-02-15T06:59:34Z +137,446,2020-02-15T06:59:34Z +137,489,2020-02-15T06:59:34Z +137,530,2020-02-15T06:59:34Z +137,564,2020-02-15T06:59:34Z +137,603,2020-02-15T06:59:34Z +137,610,2020-02-15T06:59:34Z +137,688,2020-02-15T06:59:34Z +137,703,2020-02-15T06:59:34Z +137,745,2020-02-15T06:59:34Z +137,758,2020-02-15T06:59:34Z +137,832,2020-02-15T06:59:34Z +137,841,2020-02-15T06:59:34Z +137,917,2020-02-15T06:59:34Z +138,8,2020-02-15T06:59:34Z +138,52,2020-02-15T06:59:34Z +138,61,2020-02-15T06:59:34Z +138,125,2020-02-15T06:59:34Z +138,157,2020-02-15T06:59:34Z +138,214,2020-02-15T06:59:34Z +138,258,2020-02-15T06:59:34Z +138,376,2020-02-15T06:59:34Z +138,403,2020-02-15T06:59:34Z +138,446,2020-02-15T06:59:34Z +138,453,2020-02-15T06:59:34Z +138,508,2020-02-15T06:59:34Z +138,553,2020-02-15T06:59:34Z +138,561,2020-02-15T06:59:34Z +138,583,2020-02-15T06:59:34Z +138,627,2020-02-15T06:59:34Z +138,639,2020-02-15T06:59:34Z +138,695,2020-02-15T06:59:34Z +138,747,2020-02-15T06:59:34Z +138,879,2020-02-15T06:59:34Z +138,885,2020-02-15T06:59:34Z +138,923,2020-02-15T06:59:34Z +138,970,2020-02-15T06:59:34Z +138,989,2020-02-15T06:59:34Z +139,20,2020-02-15T06:59:34Z +139,35,2020-02-15T06:59:34Z +139,57,2020-02-15T06:59:34Z +139,74,2020-02-15T06:59:34Z +139,90,2020-02-15T06:59:34Z +139,107,2020-02-15T06:59:34Z +139,155,2020-02-15T06:59:34Z +139,170,2020-02-15T06:59:34Z +139,181,2020-02-15T06:59:34Z +139,200,2020-02-15T06:59:34Z +139,229,2020-02-15T06:59:34Z +139,233,2020-02-15T06:59:34Z +139,261,2020-02-15T06:59:34Z +139,262,2020-02-15T06:59:34Z +139,266,2020-02-15T06:59:34Z +139,282,2020-02-15T06:59:34Z +139,284,2020-02-15T06:59:34Z +139,373,2020-02-15T06:59:34Z +139,447,2020-02-15T06:59:34Z +139,489,2020-02-15T06:59:34Z +139,529,2020-02-15T06:59:34Z +139,540,2020-02-15T06:59:34Z +139,570,2020-02-15T06:59:34Z +139,602,2020-02-15T06:59:34Z +139,605,2020-02-15T06:59:34Z +139,636,2020-02-15T06:59:34Z +139,691,2020-02-15T06:59:34Z +139,706,2020-02-15T06:59:34Z +139,719,2020-02-15T06:59:34Z +139,744,2020-02-15T06:59:34Z +139,746,2020-02-15T06:59:34Z +139,862,2020-02-15T06:59:34Z +139,892,2020-02-15T06:59:34Z +140,27,2020-02-15T06:59:34Z +140,77,2020-02-15T06:59:34Z +140,112,2020-02-15T06:59:34Z +140,135,2020-02-15T06:59:34Z +140,185,2020-02-15T06:59:34Z +140,258,2020-02-15T06:59:34Z +140,370,2020-02-15T06:59:34Z +140,373,2020-02-15T06:59:34Z +140,498,2020-02-15T06:59:34Z +140,509,2020-02-15T06:59:34Z +140,576,2020-02-15T06:59:34Z +140,587,2020-02-15T06:59:34Z +140,599,2020-02-15T06:59:34Z +140,608,2020-02-15T06:59:34Z +140,647,2020-02-15T06:59:34Z +140,665,2020-02-15T06:59:34Z +140,670,2020-02-15T06:59:34Z +140,693,2020-02-15T06:59:34Z +140,702,2020-02-15T06:59:34Z +140,729,2020-02-15T06:59:34Z +140,730,2020-02-15T06:59:34Z +140,731,2020-02-15T06:59:34Z +140,736,2020-02-15T06:59:34Z +140,742,2020-02-15T06:59:34Z +140,778,2020-02-15T06:59:34Z +140,820,2020-02-15T06:59:34Z +140,830,2020-02-15T06:59:34Z +140,835,2020-02-15T06:59:34Z +140,857,2020-02-15T06:59:34Z +140,923,2020-02-15T06:59:34Z +140,934,2020-02-15T06:59:34Z +140,999,2020-02-15T06:59:34Z +141,43,2020-02-15T06:59:34Z +141,67,2020-02-15T06:59:34Z +141,188,2020-02-15T06:59:34Z +141,191,2020-02-15T06:59:34Z +141,207,2020-02-15T06:59:34Z +141,223,2020-02-15T06:59:34Z +141,341,2020-02-15T06:59:34Z +141,358,2020-02-15T06:59:34Z +141,380,2020-02-15T06:59:34Z +141,395,2020-02-15T06:59:34Z +141,467,2020-02-15T06:59:34Z +141,491,2020-02-15T06:59:34Z +141,589,2020-02-15T06:59:34Z +141,607,2020-02-15T06:59:34Z +141,673,2020-02-15T06:59:34Z +141,740,2020-02-15T06:59:34Z +141,752,2020-02-15T06:59:34Z +141,768,2020-02-15T06:59:34Z +141,772,2020-02-15T06:59:34Z +141,787,2020-02-15T06:59:34Z +141,821,2020-02-15T06:59:34Z +141,829,2020-02-15T06:59:34Z +141,840,2020-02-15T06:59:34Z +141,849,2020-02-15T06:59:34Z +141,862,2020-02-15T06:59:34Z +141,863,2020-02-15T06:59:34Z +141,909,2020-02-15T06:59:34Z +141,992,2020-02-15T06:59:34Z +142,10,2020-02-15T06:59:34Z +142,18,2020-02-15T06:59:34Z +142,107,2020-02-15T06:59:34Z +142,139,2020-02-15T06:59:34Z +142,186,2020-02-15T06:59:34Z +142,199,2020-02-15T06:59:34Z +142,248,2020-02-15T06:59:34Z +142,328,2020-02-15T06:59:34Z +142,350,2020-02-15T06:59:34Z +142,371,2020-02-15T06:59:34Z +142,470,2020-02-15T06:59:34Z +142,481,2020-02-15T06:59:34Z +142,494,2020-02-15T06:59:34Z +142,501,2020-02-15T06:59:34Z +142,504,2020-02-15T06:59:34Z +142,540,2020-02-15T06:59:34Z +142,554,2020-02-15T06:59:34Z +142,575,2020-02-15T06:59:34Z +142,608,2020-02-15T06:59:34Z +142,710,2020-02-15T06:59:34Z +142,712,2020-02-15T06:59:34Z +142,735,2020-02-15T06:59:34Z +142,759,2020-02-15T06:59:34Z +142,794,2020-02-15T06:59:34Z +142,842,2020-02-15T06:59:34Z +142,859,2020-02-15T06:59:34Z +142,863,2020-02-15T06:59:34Z +142,875,2020-02-15T06:59:34Z +142,906,2020-02-15T06:59:34Z +142,914,2020-02-15T06:59:34Z +142,999,2020-02-15T06:59:34Z +143,47,2020-02-15T06:59:34Z +143,79,2020-02-15T06:59:34Z +143,141,2020-02-15T06:59:34Z +143,175,2020-02-15T06:59:34Z +143,232,2020-02-15T06:59:34Z +143,239,2020-02-15T06:59:34Z +143,316,2020-02-15T06:59:34Z +143,339,2020-02-15T06:59:34Z +143,361,2020-02-15T06:59:34Z +143,386,2020-02-15T06:59:34Z +143,404,2020-02-15T06:59:34Z +143,457,2020-02-15T06:59:34Z +143,485,2020-02-15T06:59:34Z +143,497,2020-02-15T06:59:34Z +143,560,2020-02-15T06:59:34Z +143,576,2020-02-15T06:59:34Z +143,603,2020-02-15T06:59:34Z +143,613,2020-02-15T06:59:34Z +143,659,2020-02-15T06:59:34Z +143,660,2020-02-15T06:59:34Z +143,680,2020-02-15T06:59:34Z +143,687,2020-02-15T06:59:34Z +143,690,2020-02-15T06:59:34Z +143,706,2020-02-15T06:59:34Z +143,792,2020-02-15T06:59:34Z +143,821,2020-02-15T06:59:34Z +143,830,2020-02-15T06:59:34Z +143,872,2020-02-15T06:59:34Z +143,878,2020-02-15T06:59:34Z +143,906,2020-02-15T06:59:34Z +143,958,2020-02-15T06:59:34Z +144,18,2020-02-15T06:59:34Z +144,67,2020-02-15T06:59:34Z +144,79,2020-02-15T06:59:34Z +144,90,2020-02-15T06:59:34Z +144,99,2020-02-15T06:59:34Z +144,105,2020-02-15T06:59:34Z +144,123,2020-02-15T06:59:34Z +144,125,2020-02-15T06:59:34Z +144,127,2020-02-15T06:59:34Z +144,130,2020-02-15T06:59:34Z +144,135,2020-02-15T06:59:34Z +144,164,2020-02-15T06:59:34Z +144,184,2020-02-15T06:59:34Z +144,216,2020-02-15T06:59:34Z +144,228,2020-02-15T06:59:34Z +144,260,2020-02-15T06:59:34Z +144,272,2020-02-15T06:59:34Z +144,291,2020-02-15T06:59:34Z +144,293,2020-02-15T06:59:34Z +144,312,2020-02-15T06:59:34Z +144,393,2020-02-15T06:59:34Z +144,396,2020-02-15T06:59:34Z +144,473,2020-02-15T06:59:34Z +144,504,2020-02-15T06:59:34Z +144,540,2020-02-15T06:59:34Z +144,599,2020-02-15T06:59:34Z +144,668,2020-02-15T06:59:34Z +144,702,2020-02-15T06:59:34Z +144,753,2020-02-15T06:59:34Z +144,762,2020-02-15T06:59:34Z +144,776,2020-02-15T06:59:34Z +144,785,2020-02-15T06:59:34Z +144,845,2020-02-15T06:59:34Z +144,894,2020-02-15T06:59:34Z +144,953,2020-02-15T06:59:34Z +145,39,2020-02-15T06:59:34Z +145,109,2020-02-15T06:59:34Z +145,120,2020-02-15T06:59:34Z +145,154,2020-02-15T06:59:34Z +145,155,2020-02-15T06:59:34Z +145,243,2020-02-15T06:59:34Z +145,293,2020-02-15T06:59:34Z +145,402,2020-02-15T06:59:34Z +145,409,2020-02-15T06:59:34Z +145,457,2020-02-15T06:59:34Z +145,475,2020-02-15T06:59:34Z +145,487,2020-02-15T06:59:34Z +145,494,2020-02-15T06:59:34Z +145,527,2020-02-15T06:59:34Z +145,592,2020-02-15T06:59:34Z +145,625,2020-02-15T06:59:34Z +145,629,2020-02-15T06:59:34Z +145,641,2020-02-15T06:59:34Z +145,661,2020-02-15T06:59:34Z +145,664,2020-02-15T06:59:34Z +145,692,2020-02-15T06:59:34Z +145,713,2020-02-15T06:59:34Z +145,726,2020-02-15T06:59:34Z +145,748,2020-02-15T06:59:34Z +145,822,2020-02-15T06:59:34Z +145,893,2020-02-15T06:59:34Z +145,923,2020-02-15T06:59:34Z +145,953,2020-02-15T06:59:34Z +146,12,2020-02-15T06:59:34Z +146,16,2020-02-15T06:59:34Z +146,33,2020-02-15T06:59:34Z +146,117,2020-02-15T06:59:34Z +146,177,2020-02-15T06:59:34Z +146,191,2020-02-15T06:59:34Z +146,197,2020-02-15T06:59:34Z +146,207,2020-02-15T06:59:34Z +146,218,2020-02-15T06:59:34Z +146,278,2020-02-15T06:59:34Z +146,296,2020-02-15T06:59:34Z +146,314,2020-02-15T06:59:34Z +146,320,2020-02-15T06:59:34Z +146,372,2020-02-15T06:59:34Z +146,384,2020-02-15T06:59:34Z +146,402,2020-02-15T06:59:34Z +146,410,2020-02-15T06:59:34Z +146,427,2020-02-15T06:59:34Z +146,429,2020-02-15T06:59:34Z +146,512,2020-02-15T06:59:34Z +146,514,2020-02-15T06:59:34Z +146,571,2020-02-15T06:59:34Z +146,591,2020-02-15T06:59:34Z +146,720,2020-02-15T06:59:34Z +146,731,2020-02-15T06:59:34Z +146,734,2020-02-15T06:59:34Z +146,871,2020-02-15T06:59:34Z +146,909,2020-02-15T06:59:34Z +146,922,2020-02-15T06:59:34Z +146,945,2020-02-15T06:59:34Z +146,955,2020-02-15T06:59:34Z +146,966,2020-02-15T06:59:34Z +146,969,2020-02-15T06:59:34Z +147,4,2020-02-15T06:59:34Z +147,85,2020-02-15T06:59:34Z +147,131,2020-02-15T06:59:34Z +147,139,2020-02-15T06:59:34Z +147,145,2020-02-15T06:59:34Z +147,178,2020-02-15T06:59:34Z +147,251,2020-02-15T06:59:34Z +147,254,2020-02-15T06:59:34Z +147,295,2020-02-15T06:59:34Z +147,298,2020-02-15T06:59:34Z +147,305,2020-02-15T06:59:34Z +147,310,2020-02-15T06:59:34Z +147,318,2020-02-15T06:59:34Z +147,333,2020-02-15T06:59:34Z +147,341,2020-02-15T06:59:34Z +147,351,2020-02-15T06:59:34Z +147,394,2020-02-15T06:59:34Z +147,402,2020-02-15T06:59:34Z +147,405,2020-02-15T06:59:34Z +147,410,2020-02-15T06:59:34Z +147,431,2020-02-15T06:59:34Z +147,443,2020-02-15T06:59:34Z +147,508,2020-02-15T06:59:34Z +147,554,2020-02-15T06:59:34Z +147,563,2020-02-15T06:59:34Z +147,649,2020-02-15T06:59:34Z +147,688,2020-02-15T06:59:34Z +147,708,2020-02-15T06:59:34Z +147,864,2020-02-15T06:59:34Z +147,957,2020-02-15T06:59:34Z +147,987,2020-02-15T06:59:34Z +148,27,2020-02-15T06:59:34Z +148,57,2020-02-15T06:59:34Z +148,133,2020-02-15T06:59:34Z +148,149,2020-02-15T06:59:34Z +148,226,2020-02-15T06:59:34Z +148,342,2020-02-15T06:59:34Z +148,368,2020-02-15T06:59:34Z +148,422,2020-02-15T06:59:34Z +148,468,2020-02-15T06:59:34Z +148,633,2020-02-15T06:59:34Z +148,718,2020-02-15T06:59:34Z +148,768,2020-02-15T06:59:34Z +148,772,2020-02-15T06:59:34Z +148,792,2020-02-15T06:59:34Z +149,53,2020-02-15T06:59:34Z +149,72,2020-02-15T06:59:34Z +149,95,2020-02-15T06:59:34Z +149,118,2020-02-15T06:59:34Z +149,139,2020-02-15T06:59:34Z +149,146,2020-02-15T06:59:34Z +149,153,2020-02-15T06:59:34Z +149,159,2020-02-15T06:59:34Z +149,169,2020-02-15T06:59:34Z +149,178,2020-02-15T06:59:34Z +149,188,2020-02-15T06:59:34Z +149,193,2020-02-15T06:59:34Z +149,339,2020-02-15T06:59:34Z +149,354,2020-02-15T06:59:34Z +149,362,2020-02-15T06:59:34Z +149,365,2020-02-15T06:59:34Z +149,458,2020-02-15T06:59:34Z +149,631,2020-02-15T06:59:34Z +149,670,2020-02-15T06:59:34Z +149,685,2020-02-15T06:59:34Z +149,761,2020-02-15T06:59:34Z +149,782,2020-02-15T06:59:34Z +149,810,2020-02-15T06:59:34Z +149,811,2020-02-15T06:59:34Z +149,899,2020-02-15T06:59:34Z +149,905,2020-02-15T06:59:34Z +149,913,2020-02-15T06:59:34Z +149,921,2020-02-15T06:59:34Z +149,947,2020-02-15T06:59:34Z +149,949,2020-02-15T06:59:34Z +149,992,2020-02-15T06:59:34Z +150,23,2020-02-15T06:59:34Z +150,63,2020-02-15T06:59:34Z +150,75,2020-02-15T06:59:34Z +150,94,2020-02-15T06:59:34Z +150,105,2020-02-15T06:59:34Z +150,168,2020-02-15T06:59:34Z +150,190,2020-02-15T06:59:34Z +150,206,2020-02-15T06:59:34Z +150,233,2020-02-15T06:59:34Z +150,270,2020-02-15T06:59:34Z +150,285,2020-02-15T06:59:34Z +150,306,2020-02-15T06:59:34Z +150,386,2020-02-15T06:59:34Z +150,433,2020-02-15T06:59:34Z +150,446,2020-02-15T06:59:34Z +150,447,2020-02-15T06:59:34Z +150,468,2020-02-15T06:59:34Z +150,508,2020-02-15T06:59:34Z +150,542,2020-02-15T06:59:34Z +150,551,2020-02-15T06:59:34Z +150,629,2020-02-15T06:59:34Z +150,647,2020-02-15T06:59:34Z +150,672,2020-02-15T06:59:34Z +150,697,2020-02-15T06:59:34Z +150,728,2020-02-15T06:59:34Z +150,777,2020-02-15T06:59:34Z +150,854,2020-02-15T06:59:34Z +150,873,2020-02-15T06:59:34Z +150,880,2020-02-15T06:59:34Z +150,887,2020-02-15T06:59:34Z +150,889,2020-02-15T06:59:34Z +150,892,2020-02-15T06:59:34Z +150,953,2020-02-15T06:59:34Z +150,962,2020-02-15T06:59:34Z +151,131,2020-02-15T06:59:34Z +151,144,2020-02-15T06:59:34Z +151,167,2020-02-15T06:59:34Z +151,170,2020-02-15T06:59:34Z +151,217,2020-02-15T06:59:34Z +151,232,2020-02-15T06:59:34Z +151,342,2020-02-15T06:59:34Z +151,367,2020-02-15T06:59:34Z +151,370,2020-02-15T06:59:34Z +151,382,2020-02-15T06:59:34Z +151,451,2020-02-15T06:59:34Z +151,463,2020-02-15T06:59:34Z +151,482,2020-02-15T06:59:34Z +151,501,2020-02-15T06:59:34Z +151,527,2020-02-15T06:59:34Z +151,539,2020-02-15T06:59:34Z +151,570,2020-02-15T06:59:34Z +151,574,2020-02-15T06:59:34Z +151,634,2020-02-15T06:59:34Z +151,658,2020-02-15T06:59:34Z +151,665,2020-02-15T06:59:34Z +151,703,2020-02-15T06:59:34Z +151,880,2020-02-15T06:59:34Z +151,892,2020-02-15T06:59:34Z +151,895,2020-02-15T06:59:34Z +151,989,2020-02-15T06:59:34Z +152,59,2020-02-15T06:59:34Z +152,153,2020-02-15T06:59:34Z +152,217,2020-02-15T06:59:34Z +152,248,2020-02-15T06:59:34Z +152,318,2020-02-15T06:59:34Z +152,332,2020-02-15T06:59:34Z +152,475,2020-02-15T06:59:34Z +152,476,2020-02-15T06:59:34Z +152,578,2020-02-15T06:59:34Z +152,607,2020-02-15T06:59:34Z +152,611,2020-02-15T06:59:34Z +152,615,2020-02-15T06:59:34Z +152,674,2020-02-15T06:59:34Z +152,680,2020-02-15T06:59:34Z +152,729,2020-02-15T06:59:34Z +152,768,2020-02-15T06:59:34Z +152,821,2020-02-15T06:59:34Z +152,846,2020-02-15T06:59:34Z +152,891,2020-02-15T06:59:34Z +152,898,2020-02-15T06:59:34Z +152,927,2020-02-15T06:59:34Z +152,964,2020-02-15T06:59:34Z +152,968,2020-02-15T06:59:34Z +153,47,2020-02-15T06:59:34Z +153,64,2020-02-15T06:59:34Z +153,136,2020-02-15T06:59:34Z +153,180,2020-02-15T06:59:34Z +153,203,2020-02-15T06:59:34Z +153,231,2020-02-15T06:59:34Z +153,444,2020-02-15T06:59:34Z +153,476,2020-02-15T06:59:34Z +153,480,2020-02-15T06:59:34Z +153,486,2020-02-15T06:59:34Z +153,536,2020-02-15T06:59:34Z +153,627,2020-02-15T06:59:34Z +153,732,2020-02-15T06:59:34Z +153,756,2020-02-15T06:59:34Z +153,766,2020-02-15T06:59:34Z +153,817,2020-02-15T06:59:34Z +153,847,2020-02-15T06:59:34Z +153,919,2020-02-15T06:59:34Z +153,938,2020-02-15T06:59:34Z +153,988,2020-02-15T06:59:34Z +154,27,2020-02-15T06:59:34Z +154,111,2020-02-15T06:59:34Z +154,141,2020-02-15T06:59:34Z +154,158,2020-02-15T06:59:34Z +154,169,2020-02-15T06:59:34Z +154,170,2020-02-15T06:59:34Z +154,193,2020-02-15T06:59:34Z +154,208,2020-02-15T06:59:34Z +154,274,2020-02-15T06:59:34Z +154,276,2020-02-15T06:59:34Z +154,282,2020-02-15T06:59:34Z +154,299,2020-02-15T06:59:34Z +154,314,2020-02-15T06:59:34Z +154,396,2020-02-15T06:59:34Z +154,399,2020-02-15T06:59:34Z +154,421,2020-02-15T06:59:34Z +154,440,2020-02-15T06:59:34Z +154,467,2020-02-15T06:59:34Z +154,474,2020-02-15T06:59:34Z +154,489,2020-02-15T06:59:34Z +154,588,2020-02-15T06:59:34Z +154,602,2020-02-15T06:59:34Z +154,680,2020-02-15T06:59:34Z +154,698,2020-02-15T06:59:34Z +154,802,2020-02-15T06:59:34Z +154,842,2020-02-15T06:59:34Z +154,954,2020-02-15T06:59:34Z +154,988,2020-02-15T06:59:34Z +155,20,2020-02-15T06:59:34Z +155,67,2020-02-15T06:59:34Z +155,128,2020-02-15T06:59:34Z +155,153,2020-02-15T06:59:34Z +155,220,2020-02-15T06:59:34Z +155,249,2020-02-15T06:59:34Z +155,303,2020-02-15T06:59:34Z +155,312,2020-02-15T06:59:34Z +155,359,2020-02-15T06:59:34Z +155,361,2020-02-15T06:59:34Z +155,383,2020-02-15T06:59:34Z +155,387,2020-02-15T06:59:34Z +155,407,2020-02-15T06:59:34Z +155,427,2020-02-15T06:59:34Z +155,459,2020-02-15T06:59:34Z +155,513,2020-02-15T06:59:34Z +155,584,2020-02-15T06:59:34Z +155,590,2020-02-15T06:59:34Z +155,630,2020-02-15T06:59:34Z +155,688,2020-02-15T06:59:34Z +155,757,2020-02-15T06:59:34Z +155,768,2020-02-15T06:59:34Z +155,785,2020-02-15T06:59:34Z +155,849,2020-02-15T06:59:34Z +155,885,2020-02-15T06:59:34Z +155,890,2020-02-15T06:59:34Z +155,941,2020-02-15T06:59:34Z +155,966,2020-02-15T06:59:34Z +155,987,2020-02-15T06:59:34Z +155,997,2020-02-15T06:59:34Z +155,1000,2020-02-15T06:59:34Z +156,53,2020-02-15T06:59:34Z +156,155,2020-02-15T06:59:34Z +156,198,2020-02-15T06:59:34Z +156,244,2020-02-15T06:59:34Z +156,262,2020-02-15T06:59:34Z +156,263,2020-02-15T06:59:34Z +156,285,2020-02-15T06:59:34Z +156,297,2020-02-15T06:59:34Z +156,301,2020-02-15T06:59:34Z +156,349,2020-02-15T06:59:34Z +156,379,2020-02-15T06:59:34Z +156,448,2020-02-15T06:59:34Z +156,462,2020-02-15T06:59:34Z +156,467,2020-02-15T06:59:34Z +156,504,2020-02-15T06:59:34Z +156,518,2020-02-15T06:59:34Z +156,593,2020-02-15T06:59:34Z +156,646,2020-02-15T06:59:34Z +156,705,2020-02-15T06:59:34Z +156,754,2020-02-15T06:59:34Z +156,775,2020-02-15T06:59:34Z +156,844,2020-02-15T06:59:34Z +157,10,2020-02-15T06:59:34Z +157,24,2020-02-15T06:59:34Z +157,34,2020-02-15T06:59:34Z +157,122,2020-02-15T06:59:34Z +157,159,2020-02-15T06:59:34Z +157,183,2020-02-15T06:59:34Z +157,210,2020-02-15T06:59:34Z +157,217,2020-02-15T06:59:34Z +157,291,2020-02-15T06:59:34Z +157,303,2020-02-15T06:59:34Z +157,321,2020-02-15T06:59:34Z +157,326,2020-02-15T06:59:35Z +157,353,2020-02-15T06:59:35Z +157,400,2020-02-15T06:59:35Z +157,406,2020-02-15T06:59:35Z +157,431,2020-02-15T06:59:35Z +157,496,2020-02-15T06:59:35Z +157,535,2020-02-15T06:59:35Z +157,573,2020-02-15T06:59:35Z +157,574,2020-02-15T06:59:35Z +157,604,2020-02-15T06:59:35Z +157,616,2020-02-15T06:59:35Z +157,642,2020-02-15T06:59:35Z +157,661,2020-02-15T06:59:35Z +157,696,2020-02-15T06:59:35Z +157,713,2020-02-15T06:59:35Z +157,802,2020-02-15T06:59:35Z +157,835,2020-02-15T06:59:35Z +157,874,2020-02-15T06:59:35Z +157,913,2020-02-15T06:59:35Z +157,967,2020-02-15T06:59:35Z +157,973,2020-02-15T06:59:35Z +158,32,2020-02-15T06:59:35Z +158,47,2020-02-15T06:59:35Z +158,64,2020-02-15T06:59:35Z +158,66,2020-02-15T06:59:35Z +158,102,2020-02-15T06:59:35Z +158,121,2020-02-15T06:59:35Z +158,177,2020-02-15T06:59:35Z +158,178,2020-02-15T06:59:35Z +158,188,2020-02-15T06:59:35Z +158,215,2020-02-15T06:59:35Z +158,241,2020-02-15T06:59:35Z +158,293,2020-02-15T06:59:35Z +158,437,2020-02-15T06:59:35Z +158,473,2020-02-15T06:59:35Z +158,483,2020-02-15T06:59:35Z +158,532,2020-02-15T06:59:35Z +158,555,2020-02-15T06:59:35Z +158,581,2020-02-15T06:59:35Z +158,601,2020-02-15T06:59:35Z +158,616,2020-02-15T06:59:35Z +158,626,2020-02-15T06:59:35Z +158,637,2020-02-15T06:59:35Z +158,799,2020-02-15T06:59:35Z +158,812,2020-02-15T06:59:35Z +158,824,2020-02-15T06:59:35Z +158,830,2020-02-15T06:59:35Z +158,840,2020-02-15T06:59:35Z +158,869,2020-02-15T06:59:35Z +158,879,2020-02-15T06:59:35Z +158,880,2020-02-15T06:59:35Z +158,894,2020-02-15T06:59:35Z +158,896,2020-02-15T06:59:35Z +158,967,2020-02-15T06:59:35Z +158,968,2020-02-15T06:59:35Z +158,990,2020-02-15T06:59:35Z +159,20,2020-02-15T06:59:35Z +159,82,2020-02-15T06:59:35Z +159,127,2020-02-15T06:59:35Z +159,187,2020-02-15T06:59:35Z +159,206,2020-02-15T06:59:35Z +159,208,2020-02-15T06:59:35Z +159,223,2020-02-15T06:59:35Z +159,248,2020-02-15T06:59:35Z +159,342,2020-02-15T06:59:35Z +159,343,2020-02-15T06:59:35Z +159,344,2020-02-15T06:59:35Z +159,364,2020-02-15T06:59:35Z +159,418,2020-02-15T06:59:35Z +159,549,2020-02-15T06:59:35Z +159,561,2020-02-15T06:59:35Z +159,600,2020-02-15T06:59:35Z +159,674,2020-02-15T06:59:35Z +159,680,2020-02-15T06:59:35Z +159,784,2020-02-15T06:59:35Z +159,789,2020-02-15T06:59:35Z +159,800,2020-02-15T06:59:35Z +159,802,2020-02-15T06:59:35Z +159,818,2020-02-15T06:59:35Z +159,876,2020-02-15T06:59:35Z +159,907,2020-02-15T06:59:35Z +159,978,2020-02-15T06:59:35Z +160,2,2020-02-15T06:59:35Z +160,17,2020-02-15T06:59:35Z +160,43,2020-02-15T06:59:35Z +160,242,2020-02-15T06:59:35Z +160,267,2020-02-15T06:59:35Z +160,275,2020-02-15T06:59:35Z +160,368,2020-02-15T06:59:35Z +160,455,2020-02-15T06:59:35Z +160,469,2020-02-15T06:59:35Z +160,484,2020-02-15T06:59:35Z +160,579,2020-02-15T06:59:35Z +160,660,2020-02-15T06:59:35Z +160,755,2020-02-15T06:59:35Z +160,767,2020-02-15T06:59:35Z +160,769,2020-02-15T06:59:35Z +160,794,2020-02-15T06:59:35Z +160,826,2020-02-15T06:59:35Z +160,883,2020-02-15T06:59:35Z +160,950,2020-02-15T06:59:35Z +160,954,2020-02-15T06:59:35Z +161,43,2020-02-15T06:59:35Z +161,58,2020-02-15T06:59:35Z +161,89,2020-02-15T06:59:35Z +161,90,2020-02-15T06:59:35Z +161,120,2020-02-15T06:59:35Z +161,188,2020-02-15T06:59:35Z +161,247,2020-02-15T06:59:35Z +161,269,2020-02-15T06:59:35Z +161,281,2020-02-15T06:59:35Z +161,340,2020-02-15T06:59:35Z +161,353,2020-02-15T06:59:35Z +161,401,2020-02-15T06:59:35Z +161,414,2020-02-15T06:59:35Z +161,425,2020-02-15T06:59:35Z +161,469,2020-02-15T06:59:35Z +161,526,2020-02-15T06:59:35Z +161,588,2020-02-15T06:59:35Z +161,644,2020-02-15T06:59:35Z +161,653,2020-02-15T06:59:35Z +161,655,2020-02-15T06:59:35Z +161,669,2020-02-15T06:59:35Z +161,684,2020-02-15T06:59:35Z +161,714,2020-02-15T06:59:35Z +161,749,2020-02-15T06:59:35Z +161,807,2020-02-15T06:59:35Z +161,825,2020-02-15T06:59:35Z +161,850,2020-02-15T06:59:35Z +161,880,2020-02-15T06:59:35Z +161,920,2020-02-15T06:59:35Z +161,921,2020-02-15T06:59:35Z +161,924,2020-02-15T06:59:35Z +161,927,2020-02-15T06:59:35Z +162,1,2020-02-15T06:59:35Z +162,4,2020-02-15T06:59:35Z +162,7,2020-02-15T06:59:35Z +162,18,2020-02-15T06:59:35Z +162,28,2020-02-15T06:59:35Z +162,32,2020-02-15T06:59:35Z +162,33,2020-02-15T06:59:35Z +162,41,2020-02-15T06:59:35Z +162,85,2020-02-15T06:59:35Z +162,121,2020-02-15T06:59:35Z +162,164,2020-02-15T06:59:35Z +162,274,2020-02-15T06:59:35Z +162,279,2020-02-15T06:59:35Z +162,409,2020-02-15T06:59:35Z +162,410,2020-02-15T06:59:35Z +162,415,2020-02-15T06:59:35Z +162,500,2020-02-15T06:59:35Z +162,574,2020-02-15T06:59:35Z +162,612,2020-02-15T06:59:35Z +162,636,2020-02-15T06:59:35Z +162,659,2020-02-15T06:59:35Z +162,786,2020-02-15T06:59:35Z +162,844,2020-02-15T06:59:35Z +162,909,2020-02-15T06:59:35Z +162,968,2020-02-15T06:59:35Z +163,30,2020-02-15T06:59:35Z +163,45,2020-02-15T06:59:35Z +163,166,2020-02-15T06:59:35Z +163,180,2020-02-15T06:59:35Z +163,239,2020-02-15T06:59:35Z +163,283,2020-02-15T06:59:35Z +163,303,2020-02-15T06:59:35Z +163,304,2020-02-15T06:59:35Z +163,307,2020-02-15T06:59:35Z +163,394,2020-02-15T06:59:35Z +163,409,2020-02-15T06:59:35Z +163,434,2020-02-15T06:59:35Z +163,444,2020-02-15T06:59:35Z +163,522,2020-02-15T06:59:35Z +163,719,2020-02-15T06:59:35Z +163,785,2020-02-15T06:59:35Z +163,833,2020-02-15T06:59:35Z +163,881,2020-02-15T06:59:35Z +163,891,2020-02-15T06:59:35Z +163,947,2020-02-15T06:59:35Z +163,996,2020-02-15T06:59:35Z +164,15,2020-02-15T06:59:35Z +164,23,2020-02-15T06:59:35Z +164,148,2020-02-15T06:59:35Z +164,169,2020-02-15T06:59:35Z +164,252,2020-02-15T06:59:35Z +164,324,2020-02-15T06:59:35Z +164,347,2020-02-15T06:59:35Z +164,367,2020-02-15T06:59:35Z +164,431,2020-02-15T06:59:35Z +164,448,2020-02-15T06:59:35Z +164,469,2020-02-15T06:59:35Z +164,545,2020-02-15T06:59:35Z +164,610,2020-02-15T06:59:35Z +164,613,2020-02-15T06:59:35Z +164,673,2020-02-15T06:59:35Z +164,681,2020-02-15T06:59:35Z +164,698,2020-02-15T06:59:35Z +164,801,2020-02-15T06:59:35Z +164,820,2020-02-15T06:59:35Z +164,832,2020-02-15T06:59:35Z +164,834,2020-02-15T06:59:35Z +164,851,2020-02-15T06:59:35Z +164,884,2020-02-15T06:59:35Z +164,908,2020-02-15T06:59:35Z +164,957,2020-02-15T06:59:35Z +164,984,2020-02-15T06:59:35Z +165,72,2020-02-15T06:59:35Z +165,95,2020-02-15T06:59:35Z +165,146,2020-02-15T06:59:35Z +165,204,2020-02-15T06:59:35Z +165,253,2020-02-15T06:59:35Z +165,286,2020-02-15T06:59:35Z +165,360,2020-02-15T06:59:35Z +165,375,2020-02-15T06:59:35Z +165,395,2020-02-15T06:59:35Z +165,421,2020-02-15T06:59:35Z +165,437,2020-02-15T06:59:35Z +165,473,2020-02-15T06:59:35Z +165,607,2020-02-15T06:59:35Z +165,644,2020-02-15T06:59:35Z +165,659,2020-02-15T06:59:35Z +165,693,2020-02-15T06:59:35Z +165,737,2020-02-15T06:59:35Z +165,779,2020-02-15T06:59:35Z +165,798,2020-02-15T06:59:35Z +165,807,2020-02-15T06:59:35Z +165,809,2020-02-15T06:59:35Z +165,832,2020-02-15T06:59:35Z +165,833,2020-02-15T06:59:35Z +165,947,2020-02-15T06:59:35Z +165,948,2020-02-15T06:59:35Z +165,962,2020-02-15T06:59:35Z +166,25,2020-02-15T06:59:35Z +166,38,2020-02-15T06:59:35Z +166,55,2020-02-15T06:59:35Z +166,61,2020-02-15T06:59:35Z +166,68,2020-02-15T06:59:35Z +166,86,2020-02-15T06:59:35Z +166,146,2020-02-15T06:59:35Z +166,255,2020-02-15T06:59:35Z +166,297,2020-02-15T06:59:35Z +166,306,2020-02-15T06:59:35Z +166,326,2020-02-15T06:59:35Z +166,361,2020-02-15T06:59:35Z +166,366,2020-02-15T06:59:35Z +166,426,2020-02-15T06:59:35Z +166,580,2020-02-15T06:59:35Z +166,622,2020-02-15T06:59:35Z +166,674,2020-02-15T06:59:35Z +166,714,2020-02-15T06:59:35Z +166,788,2020-02-15T06:59:35Z +166,867,2020-02-15T06:59:35Z +166,944,2020-02-15T06:59:35Z +166,1000,2020-02-15T06:59:35Z +167,17,2020-02-15T06:59:35Z +167,25,2020-02-15T06:59:35Z +167,63,2020-02-15T06:59:35Z +167,72,2020-02-15T06:59:35Z +167,107,2020-02-15T06:59:35Z +167,120,2020-02-15T06:59:35Z +167,191,2020-02-15T06:59:35Z +167,294,2020-02-15T06:59:35Z +167,319,2020-02-15T06:59:35Z +167,339,2020-02-15T06:59:35Z +167,341,2020-02-15T06:59:35Z +167,496,2020-02-15T06:59:35Z +167,554,2020-02-15T06:59:35Z +167,626,2020-02-15T06:59:35Z +167,628,2020-02-15T06:59:35Z +167,672,2020-02-15T06:59:35Z +167,692,2020-02-15T06:59:35Z +167,717,2020-02-15T06:59:35Z +167,734,2020-02-15T06:59:35Z +167,794,2020-02-15T06:59:35Z +167,800,2020-02-15T06:59:35Z +167,802,2020-02-15T06:59:35Z +167,856,2020-02-15T06:59:35Z +167,864,2020-02-15T06:59:35Z +167,882,2020-02-15T06:59:35Z +167,923,2020-02-15T06:59:35Z +168,32,2020-02-15T06:59:35Z +168,56,2020-02-15T06:59:35Z +168,92,2020-02-15T06:59:35Z +168,115,2020-02-15T06:59:35Z +168,188,2020-02-15T06:59:35Z +168,196,2020-02-15T06:59:35Z +168,208,2020-02-15T06:59:35Z +168,237,2020-02-15T06:59:35Z +168,241,2020-02-15T06:59:35Z +168,255,2020-02-15T06:59:35Z +168,305,2020-02-15T06:59:35Z +168,336,2020-02-15T06:59:35Z +168,387,2020-02-15T06:59:35Z +168,433,2020-02-15T06:59:35Z +168,438,2020-02-15T06:59:35Z +168,519,2020-02-15T06:59:35Z +168,602,2020-02-15T06:59:35Z +168,619,2020-02-15T06:59:35Z +168,626,2020-02-15T06:59:35Z +168,652,2020-02-15T06:59:35Z +168,678,2020-02-15T06:59:35Z +168,685,2020-02-15T06:59:35Z +168,804,2020-02-15T06:59:35Z +168,807,2020-02-15T06:59:35Z +168,826,2020-02-15T06:59:35Z +168,841,2020-02-15T06:59:35Z +168,886,2020-02-15T06:59:35Z +168,889,2020-02-15T06:59:35Z +168,892,2020-02-15T06:59:35Z +168,927,2020-02-15T06:59:35Z +168,959,2020-02-15T06:59:35Z +169,6,2020-02-15T06:59:35Z +169,78,2020-02-15T06:59:35Z +169,93,2020-02-15T06:59:35Z +169,246,2020-02-15T06:59:35Z +169,248,2020-02-15T06:59:35Z +169,289,2020-02-15T06:59:35Z +169,301,2020-02-15T06:59:35Z +169,326,2020-02-15T06:59:35Z +169,349,2020-02-15T06:59:35Z +169,372,2020-02-15T06:59:35Z +169,398,2020-02-15T06:59:35Z +169,434,2020-02-15T06:59:35Z +169,505,2020-02-15T06:59:35Z +169,564,2020-02-15T06:59:35Z +169,571,2020-02-15T06:59:35Z +169,634,2020-02-15T06:59:35Z +169,642,2020-02-15T06:59:35Z +169,673,2020-02-15T06:59:35Z +169,694,2020-02-15T06:59:35Z +169,727,2020-02-15T06:59:35Z +169,778,2020-02-15T06:59:35Z +169,815,2020-02-15T06:59:35Z +169,847,2020-02-15T06:59:35Z +169,849,2020-02-15T06:59:35Z +169,894,2020-02-15T06:59:35Z +169,897,2020-02-15T06:59:35Z +169,954,2020-02-15T06:59:35Z +169,992,2020-02-15T06:59:35Z +169,998,2020-02-15T06:59:35Z +170,7,2020-02-15T06:59:35Z +170,15,2020-02-15T06:59:35Z +170,27,2020-02-15T06:59:35Z +170,33,2020-02-15T06:59:35Z +170,102,2020-02-15T06:59:35Z +170,139,2020-02-15T06:59:35Z +170,180,2020-02-15T06:59:35Z +170,184,2020-02-15T06:59:35Z +170,212,2020-02-15T06:59:35Z +170,299,2020-02-15T06:59:35Z +170,322,2020-02-15T06:59:35Z +170,358,2020-02-15T06:59:35Z +170,416,2020-02-15T06:59:35Z +170,508,2020-02-15T06:59:35Z +170,537,2020-02-15T06:59:35Z +170,705,2020-02-15T06:59:35Z +170,758,2020-02-15T06:59:35Z +170,764,2020-02-15T06:59:35Z +170,868,2020-02-15T06:59:35Z +170,877,2020-02-15T06:59:35Z +170,886,2020-02-15T06:59:35Z +170,925,2020-02-15T06:59:35Z +170,993,2020-02-15T06:59:35Z +170,996,2020-02-15T06:59:35Z +171,49,2020-02-15T06:59:35Z +171,146,2020-02-15T06:59:35Z +171,166,2020-02-15T06:59:35Z +171,181,2020-02-15T06:59:35Z +171,219,2020-02-15T06:59:35Z +171,273,2020-02-15T06:59:35Z +171,296,2020-02-15T06:59:35Z +171,318,2020-02-15T06:59:35Z +171,342,2020-02-15T06:59:35Z +171,397,2020-02-15T06:59:35Z +171,447,2020-02-15T06:59:35Z +171,450,2020-02-15T06:59:35Z +171,466,2020-02-15T06:59:35Z +171,549,2020-02-15T06:59:35Z +171,560,2020-02-15T06:59:35Z +171,566,2020-02-15T06:59:35Z +171,608,2020-02-15T06:59:35Z +171,625,2020-02-15T06:59:35Z +171,645,2020-02-15T06:59:35Z +171,701,2020-02-15T06:59:35Z +171,761,2020-02-15T06:59:35Z +171,779,2020-02-15T06:59:35Z +171,849,2020-02-15T06:59:35Z +171,872,2020-02-15T06:59:35Z +171,892,2020-02-15T06:59:35Z +171,898,2020-02-15T06:59:35Z +171,903,2020-02-15T06:59:35Z +171,953,2020-02-15T06:59:35Z +172,57,2020-02-15T06:59:35Z +172,100,2020-02-15T06:59:35Z +172,148,2020-02-15T06:59:35Z +172,215,2020-02-15T06:59:35Z +172,302,2020-02-15T06:59:35Z +172,345,2020-02-15T06:59:35Z +172,368,2020-02-15T06:59:35Z +172,385,2020-02-15T06:59:35Z +172,423,2020-02-15T06:59:35Z +172,487,2020-02-15T06:59:35Z +172,493,2020-02-15T06:59:35Z +172,529,2020-02-15T06:59:35Z +172,538,2020-02-15T06:59:35Z +172,567,2020-02-15T06:59:35Z +172,609,2020-02-15T06:59:35Z +172,639,2020-02-15T06:59:35Z +172,649,2020-02-15T06:59:35Z +172,661,2020-02-15T06:59:35Z +172,667,2020-02-15T06:59:35Z +172,710,2020-02-15T06:59:35Z +172,744,2020-02-15T06:59:35Z +172,758,2020-02-15T06:59:35Z +172,771,2020-02-15T06:59:35Z +172,833,2020-02-15T06:59:35Z +172,959,2020-02-15T06:59:35Z +173,49,2020-02-15T06:59:35Z +173,55,2020-02-15T06:59:35Z +173,74,2020-02-15T06:59:35Z +173,80,2020-02-15T06:59:35Z +173,106,2020-02-15T06:59:35Z +173,154,2020-02-15T06:59:35Z +173,162,2020-02-15T06:59:35Z +173,188,2020-02-15T06:59:35Z +173,235,2020-02-15T06:59:35Z +173,313,2020-02-15T06:59:35Z +173,379,2020-02-15T06:59:35Z +173,405,2020-02-15T06:59:35Z +173,491,2020-02-15T06:59:35Z +173,496,2020-02-15T06:59:35Z +173,529,2020-02-15T06:59:35Z +173,550,2020-02-15T06:59:35Z +173,564,2020-02-15T06:59:35Z +173,571,2020-02-15T06:59:35Z +173,592,2020-02-15T06:59:35Z +173,688,2020-02-15T06:59:35Z +173,753,2020-02-15T06:59:35Z +173,757,2020-02-15T06:59:35Z +173,852,2020-02-15T06:59:35Z +173,857,2020-02-15T06:59:35Z +173,921,2020-02-15T06:59:35Z +173,928,2020-02-15T06:59:35Z +173,933,2020-02-15T06:59:35Z +174,11,2020-02-15T06:59:35Z +174,61,2020-02-15T06:59:35Z +174,168,2020-02-15T06:59:35Z +174,298,2020-02-15T06:59:35Z +174,352,2020-02-15T06:59:35Z +174,442,2020-02-15T06:59:35Z +174,451,2020-02-15T06:59:35Z +174,496,2020-02-15T06:59:35Z +174,610,2020-02-15T06:59:35Z +174,618,2020-02-15T06:59:35Z +174,622,2020-02-15T06:59:35Z +174,659,2020-02-15T06:59:35Z +174,677,2020-02-15T06:59:35Z +174,705,2020-02-15T06:59:35Z +174,722,2020-02-15T06:59:35Z +174,780,2020-02-15T06:59:35Z +174,797,2020-02-15T06:59:35Z +174,809,2020-02-15T06:59:35Z +174,827,2020-02-15T06:59:35Z +174,830,2020-02-15T06:59:35Z +174,852,2020-02-15T06:59:35Z +174,853,2020-02-15T06:59:35Z +174,879,2020-02-15T06:59:35Z +174,982,2020-02-15T06:59:35Z +175,9,2020-02-15T06:59:35Z +175,29,2020-02-15T06:59:35Z +175,67,2020-02-15T06:59:35Z +175,129,2020-02-15T06:59:35Z +175,155,2020-02-15T06:59:35Z +175,190,2020-02-15T06:59:35Z +175,191,2020-02-15T06:59:35Z +175,362,2020-02-15T06:59:35Z +175,405,2020-02-15T06:59:35Z +175,424,2020-02-15T06:59:35Z +175,439,2020-02-15T06:59:35Z +175,442,2020-02-15T06:59:35Z +175,483,2020-02-15T06:59:35Z +175,591,2020-02-15T06:59:35Z +175,596,2020-02-15T06:59:35Z +175,616,2020-02-15T06:59:35Z +175,719,2020-02-15T06:59:35Z +175,729,2020-02-15T06:59:35Z +175,772,2020-02-15T06:59:35Z +175,778,2020-02-15T06:59:35Z +175,828,2020-02-15T06:59:35Z +175,842,2020-02-15T06:59:35Z +175,890,2020-02-15T06:59:35Z +175,908,2020-02-15T06:59:35Z +175,977,2020-02-15T06:59:35Z +175,978,2020-02-15T06:59:35Z +175,998,2020-02-15T06:59:35Z +176,13,2020-02-15T06:59:35Z +176,73,2020-02-15T06:59:35Z +176,89,2020-02-15T06:59:35Z +176,150,2020-02-15T06:59:35Z +176,162,2020-02-15T06:59:35Z +176,238,2020-02-15T06:59:35Z +176,252,2020-02-15T06:59:35Z +176,303,2020-02-15T06:59:35Z +176,320,2020-02-15T06:59:35Z +176,401,2020-02-15T06:59:35Z +176,417,2020-02-15T06:59:35Z +176,441,2020-02-15T06:59:35Z +176,458,2020-02-15T06:59:35Z +176,461,2020-02-15T06:59:35Z +176,517,2020-02-15T06:59:35Z +176,521,2020-02-15T06:59:35Z +176,543,2020-02-15T06:59:35Z +176,573,2020-02-15T06:59:35Z +176,699,2020-02-15T06:59:35Z +176,726,2020-02-15T06:59:35Z +176,740,2020-02-15T06:59:35Z +176,746,2020-02-15T06:59:35Z +176,758,2020-02-15T06:59:35Z +176,802,2020-02-15T06:59:35Z +176,827,2020-02-15T06:59:35Z +176,839,2020-02-15T06:59:35Z +176,859,2020-02-15T06:59:35Z +176,872,2020-02-15T06:59:35Z +176,946,2020-02-15T06:59:35Z +177,12,2020-02-15T06:59:35Z +177,39,2020-02-15T06:59:35Z +177,52,2020-02-15T06:59:35Z +177,55,2020-02-15T06:59:35Z +177,86,2020-02-15T06:59:35Z +177,175,2020-02-15T06:59:35Z +177,188,2020-02-15T06:59:35Z +177,235,2020-02-15T06:59:35Z +177,237,2020-02-15T06:59:35Z +177,289,2020-02-15T06:59:35Z +177,363,2020-02-15T06:59:35Z +177,401,2020-02-15T06:59:35Z +177,433,2020-02-15T06:59:35Z +177,458,2020-02-15T06:59:35Z +177,522,2020-02-15T06:59:35Z +177,543,2020-02-15T06:59:35Z +177,563,2020-02-15T06:59:35Z +177,649,2020-02-15T06:59:35Z +177,683,2020-02-15T06:59:35Z +177,684,2020-02-15T06:59:35Z +177,726,2020-02-15T06:59:35Z +177,751,2020-02-15T06:59:35Z +177,763,2020-02-15T06:59:35Z +177,764,2020-02-15T06:59:35Z +177,827,2020-02-15T06:59:35Z +177,910,2020-02-15T06:59:35Z +177,956,2020-02-15T06:59:35Z +178,30,2020-02-15T06:59:35Z +178,34,2020-02-15T06:59:35Z +178,109,2020-02-15T06:59:35Z +178,146,2020-02-15T06:59:35Z +178,160,2020-02-15T06:59:35Z +178,164,2020-02-15T06:59:35Z +178,194,2020-02-15T06:59:35Z +178,197,2020-02-15T06:59:35Z +178,273,2020-02-15T06:59:35Z +178,311,2020-02-15T06:59:35Z +178,397,2020-02-15T06:59:35Z +178,483,2020-02-15T06:59:35Z +178,517,2020-02-15T06:59:35Z +178,537,2020-02-15T06:59:35Z +178,587,2020-02-15T06:59:35Z +178,708,2020-02-15T06:59:35Z +178,733,2020-02-15T06:59:35Z +178,744,2020-02-15T06:59:35Z +178,762,2020-02-15T06:59:35Z +178,930,2020-02-15T06:59:35Z +178,974,2020-02-15T06:59:35Z +178,983,2020-02-15T06:59:35Z +178,1000,2020-02-15T06:59:35Z +179,24,2020-02-15T06:59:35Z +179,27,2020-02-15T06:59:35Z +179,65,2020-02-15T06:59:35Z +179,85,2020-02-15T06:59:35Z +179,109,2020-02-15T06:59:35Z +179,131,2020-02-15T06:59:35Z +179,159,2020-02-15T06:59:35Z +179,193,2020-02-15T06:59:35Z +179,250,2020-02-15T06:59:35Z +179,291,2020-02-15T06:59:35Z +179,353,2020-02-15T06:59:35Z +179,415,2020-02-15T06:59:35Z +179,463,2020-02-15T06:59:35Z +179,468,2020-02-15T06:59:35Z +179,489,2020-02-15T06:59:35Z +179,566,2020-02-15T06:59:35Z +179,588,2020-02-15T06:59:35Z +179,650,2020-02-15T06:59:35Z +179,698,2020-02-15T06:59:35Z +179,732,2020-02-15T06:59:35Z +179,737,2020-02-15T06:59:35Z +179,769,2020-02-15T06:59:35Z +179,811,2020-02-15T06:59:35Z +179,817,2020-02-15T06:59:35Z +179,852,2020-02-15T06:59:35Z +179,924,2020-02-15T06:59:35Z +179,931,2020-02-15T06:59:35Z +179,960,2020-02-15T06:59:35Z +179,976,2020-02-15T06:59:35Z +180,12,2020-02-15T06:59:35Z +180,33,2020-02-15T06:59:35Z +180,144,2020-02-15T06:59:35Z +180,195,2020-02-15T06:59:35Z +180,258,2020-02-15T06:59:35Z +180,441,2020-02-15T06:59:35Z +180,506,2020-02-15T06:59:35Z +180,561,2020-02-15T06:59:35Z +180,609,2020-02-15T06:59:35Z +180,622,2020-02-15T06:59:35Z +180,628,2020-02-15T06:59:35Z +180,657,2020-02-15T06:59:35Z +180,724,2020-02-15T06:59:35Z +180,729,2020-02-15T06:59:35Z +180,732,2020-02-15T06:59:35Z +180,777,2020-02-15T06:59:35Z +180,809,2020-02-15T06:59:35Z +180,811,2020-02-15T06:59:35Z +180,820,2020-02-15T06:59:35Z +180,824,2020-02-15T06:59:35Z +180,847,2020-02-15T06:59:35Z +180,869,2020-02-15T06:59:35Z +180,874,2020-02-15T06:59:35Z +180,955,2020-02-15T06:59:35Z +180,963,2020-02-15T06:59:35Z +181,5,2020-02-15T06:59:35Z +181,40,2020-02-15T06:59:35Z +181,74,2020-02-15T06:59:35Z +181,78,2020-02-15T06:59:35Z +181,83,2020-02-15T06:59:35Z +181,152,2020-02-15T06:59:35Z +181,195,2020-02-15T06:59:35Z +181,233,2020-02-15T06:59:35Z +181,286,2020-02-15T06:59:35Z +181,301,2020-02-15T06:59:35Z +181,311,2020-02-15T06:59:35Z +181,381,2020-02-15T06:59:35Z +181,387,2020-02-15T06:59:35Z +181,403,2020-02-15T06:59:35Z +181,409,2020-02-15T06:59:35Z +181,420,2020-02-15T06:59:35Z +181,437,2020-02-15T06:59:35Z +181,456,2020-02-15T06:59:35Z +181,507,2020-02-15T06:59:35Z +181,522,2020-02-15T06:59:35Z +181,539,2020-02-15T06:59:35Z +181,542,2020-02-15T06:59:35Z +181,546,2020-02-15T06:59:35Z +181,579,2020-02-15T06:59:35Z +181,596,2020-02-15T06:59:35Z +181,604,2020-02-15T06:59:35Z +181,609,2020-02-15T06:59:35Z +181,625,2020-02-15T06:59:35Z +181,744,2020-02-15T06:59:35Z +181,816,2020-02-15T06:59:35Z +181,836,2020-02-15T06:59:35Z +181,868,2020-02-15T06:59:35Z +181,870,2020-02-15T06:59:35Z +181,874,2020-02-15T06:59:35Z +181,892,2020-02-15T06:59:35Z +181,907,2020-02-15T06:59:35Z +181,911,2020-02-15T06:59:35Z +181,921,2020-02-15T06:59:35Z +181,991,2020-02-15T06:59:35Z +182,33,2020-02-15T06:59:35Z +182,160,2020-02-15T06:59:35Z +182,301,2020-02-15T06:59:35Z +182,324,2020-02-15T06:59:35Z +182,346,2020-02-15T06:59:35Z +182,362,2020-02-15T06:59:35Z +182,391,2020-02-15T06:59:35Z +182,413,2020-02-15T06:59:35Z +182,421,2020-02-15T06:59:35Z +182,437,2020-02-15T06:59:35Z +182,590,2020-02-15T06:59:35Z +182,639,2020-02-15T06:59:35Z +182,668,2020-02-15T06:59:35Z +182,677,2020-02-15T06:59:35Z +182,679,2020-02-15T06:59:35Z +182,695,2020-02-15T06:59:35Z +182,714,2020-02-15T06:59:35Z +182,720,2020-02-15T06:59:35Z +182,819,2020-02-15T06:59:35Z +182,828,2020-02-15T06:59:35Z +182,845,2020-02-15T06:59:35Z +182,864,2020-02-15T06:59:35Z +182,940,2020-02-15T06:59:35Z +182,990,2020-02-15T06:59:35Z +183,32,2020-02-15T06:59:35Z +183,40,2020-02-15T06:59:35Z +183,71,2020-02-15T06:59:35Z +183,113,2020-02-15T06:59:35Z +183,313,2020-02-15T06:59:35Z +183,388,2020-02-15T06:59:35Z +183,389,2020-02-15T06:59:35Z +183,390,2020-02-15T06:59:35Z +183,495,2020-02-15T06:59:35Z +183,520,2020-02-15T06:59:35Z +183,576,2020-02-15T06:59:35Z +183,636,2020-02-15T06:59:35Z +183,715,2020-02-15T06:59:35Z +183,850,2020-02-15T06:59:35Z +183,862,2020-02-15T06:59:35Z +183,914,2020-02-15T06:59:35Z +183,941,2020-02-15T06:59:35Z +183,949,2020-02-15T06:59:35Z +183,983,2020-02-15T06:59:35Z +184,35,2020-02-15T06:59:35Z +184,87,2020-02-15T06:59:35Z +184,146,2020-02-15T06:59:35Z +184,169,2020-02-15T06:59:35Z +184,221,2020-02-15T06:59:35Z +184,336,2020-02-15T06:59:35Z +184,371,2020-02-15T06:59:35Z +184,452,2020-02-15T06:59:35Z +184,486,2020-02-15T06:59:35Z +184,492,2020-02-15T06:59:35Z +184,500,2020-02-15T06:59:35Z +184,574,2020-02-15T06:59:35Z +184,580,2020-02-15T06:59:35Z +184,597,2020-02-15T06:59:35Z +184,615,2020-02-15T06:59:35Z +184,640,2020-02-15T06:59:35Z +184,642,2020-02-15T06:59:35Z +184,650,2020-02-15T06:59:35Z +184,661,2020-02-15T06:59:35Z +184,684,2020-02-15T06:59:35Z +184,745,2020-02-15T06:59:35Z +184,772,2020-02-15T06:59:35Z +184,787,2020-02-15T06:59:35Z +184,867,2020-02-15T06:59:35Z +184,959,2020-02-15T06:59:35Z +184,966,2020-02-15T06:59:35Z +184,967,2020-02-15T06:59:35Z +184,969,2020-02-15T06:59:35Z +184,985,2020-02-15T06:59:35Z +185,7,2020-02-15T06:59:35Z +185,95,2020-02-15T06:59:35Z +185,138,2020-02-15T06:59:35Z +185,265,2020-02-15T06:59:35Z +185,286,2020-02-15T06:59:35Z +185,360,2020-02-15T06:59:35Z +185,411,2020-02-15T06:59:35Z +185,427,2020-02-15T06:59:35Z +185,437,2020-02-15T06:59:35Z +185,448,2020-02-15T06:59:35Z +185,494,2020-02-15T06:59:35Z +185,510,2020-02-15T06:59:35Z +185,518,2020-02-15T06:59:35Z +185,554,2020-02-15T06:59:35Z +185,560,2020-02-15T06:59:35Z +185,571,2020-02-15T06:59:35Z +185,584,2020-02-15T06:59:35Z +185,631,2020-02-15T06:59:35Z +185,665,2020-02-15T06:59:35Z +185,694,2020-02-15T06:59:35Z +185,730,2020-02-15T06:59:35Z +185,761,2020-02-15T06:59:35Z +185,818,2020-02-15T06:59:35Z +185,845,2020-02-15T06:59:35Z +185,880,2020-02-15T06:59:35Z +185,882,2020-02-15T06:59:35Z +185,919,2020-02-15T06:59:35Z +185,920,2020-02-15T06:59:35Z +185,965,2020-02-15T06:59:35Z +185,973,2020-02-15T06:59:35Z +186,95,2020-02-15T06:59:35Z +186,187,2020-02-15T06:59:35Z +186,208,2020-02-15T06:59:35Z +186,228,2020-02-15T06:59:35Z +186,237,2020-02-15T06:59:35Z +186,422,2020-02-15T06:59:35Z +186,482,2020-02-15T06:59:35Z +186,508,2020-02-15T06:59:35Z +186,552,2020-02-15T06:59:35Z +186,579,2020-02-15T06:59:35Z +186,637,2020-02-15T06:59:35Z +186,648,2020-02-15T06:59:35Z +186,654,2020-02-15T06:59:35Z +186,729,2020-02-15T06:59:35Z +186,983,2020-02-15T06:59:35Z +186,994,2020-02-15T06:59:35Z +187,17,2020-02-15T06:59:35Z +187,25,2020-02-15T06:59:35Z +187,29,2020-02-15T06:59:35Z +187,51,2020-02-15T06:59:35Z +187,73,2020-02-15T06:59:35Z +187,76,2020-02-15T06:59:35Z +187,98,2020-02-15T06:59:35Z +187,110,2020-02-15T06:59:35Z +187,127,2020-02-15T06:59:35Z +187,168,2020-02-15T06:59:35Z +187,222,2020-02-15T06:59:35Z +187,224,2020-02-15T06:59:35Z +187,297,2020-02-15T06:59:35Z +187,354,2020-02-15T06:59:35Z +187,379,2020-02-15T06:59:35Z +187,417,2020-02-15T06:59:35Z +187,435,2020-02-15T06:59:35Z +187,441,2020-02-15T06:59:35Z +187,474,2020-02-15T06:59:35Z +187,499,2020-02-15T06:59:35Z +187,538,2020-02-15T06:59:35Z +187,548,2020-02-15T06:59:35Z +187,561,2020-02-15T06:59:35Z +187,617,2020-02-15T06:59:35Z +187,625,2020-02-15T06:59:35Z +187,664,2020-02-15T06:59:35Z +187,671,2020-02-15T06:59:35Z +187,768,2020-02-15T06:59:35Z +187,779,2020-02-15T06:59:35Z +187,906,2020-02-15T06:59:35Z +187,914,2020-02-15T06:59:35Z +187,923,2020-02-15T06:59:35Z +187,976,2020-02-15T06:59:35Z +188,1,2020-02-15T06:59:35Z +188,10,2020-02-15T06:59:35Z +188,14,2020-02-15T06:59:35Z +188,51,2020-02-15T06:59:35Z +188,102,2020-02-15T06:59:35Z +188,111,2020-02-15T06:59:35Z +188,146,2020-02-15T06:59:35Z +188,206,2020-02-15T06:59:35Z +188,223,2020-02-15T06:59:35Z +188,289,2020-02-15T06:59:35Z +188,311,2020-02-15T06:59:35Z +188,322,2020-02-15T06:59:35Z +188,338,2020-02-15T06:59:35Z +188,396,2020-02-15T06:59:35Z +188,412,2020-02-15T06:59:35Z +188,506,2020-02-15T06:59:35Z +188,517,2020-02-15T06:59:35Z +188,529,2020-02-15T06:59:35Z +188,566,2020-02-15T06:59:35Z +188,593,2020-02-15T06:59:35Z +188,606,2020-02-15T06:59:35Z +188,662,2020-02-15T06:59:35Z +188,770,2020-02-15T06:59:35Z +188,773,2020-02-15T06:59:35Z +188,774,2020-02-15T06:59:35Z +188,815,2020-02-15T06:59:35Z +188,849,2020-02-15T06:59:35Z +188,925,2020-02-15T06:59:35Z +188,988,2020-02-15T06:59:35Z +188,989,2020-02-15T06:59:35Z +189,43,2020-02-15T06:59:35Z +189,82,2020-02-15T06:59:35Z +189,171,2020-02-15T06:59:35Z +189,266,2020-02-15T06:59:35Z +189,272,2020-02-15T06:59:35Z +189,315,2020-02-15T06:59:35Z +189,378,2020-02-15T06:59:35Z +189,492,2020-02-15T06:59:35Z +189,509,2020-02-15T06:59:35Z +189,512,2020-02-15T06:59:35Z +189,519,2020-02-15T06:59:35Z +189,533,2020-02-15T06:59:35Z +189,548,2020-02-15T06:59:35Z +189,560,2020-02-15T06:59:35Z +189,628,2020-02-15T06:59:35Z +189,734,2020-02-15T06:59:35Z +189,748,2020-02-15T06:59:35Z +189,788,2020-02-15T06:59:35Z +189,820,2020-02-15T06:59:35Z +189,853,2020-02-15T06:59:35Z +189,882,2020-02-15T06:59:35Z +189,896,2020-02-15T06:59:35Z +189,899,2020-02-15T06:59:35Z +189,940,2020-02-15T06:59:35Z +190,38,2020-02-15T06:59:35Z +190,54,2020-02-15T06:59:35Z +190,62,2020-02-15T06:59:35Z +190,87,2020-02-15T06:59:35Z +190,173,2020-02-15T06:59:35Z +190,234,2020-02-15T06:59:35Z +190,253,2020-02-15T06:59:35Z +190,278,2020-02-15T06:59:35Z +190,310,2020-02-15T06:59:35Z +190,374,2020-02-15T06:59:35Z +190,411,2020-02-15T06:59:35Z +190,426,2020-02-15T06:59:35Z +190,472,2020-02-15T06:59:35Z +190,549,2020-02-15T06:59:35Z +190,562,2020-02-15T06:59:35Z +190,606,2020-02-15T06:59:35Z +190,623,2020-02-15T06:59:35Z +190,679,2020-02-15T06:59:35Z +190,682,2020-02-15T06:59:35Z +190,693,2020-02-15T06:59:35Z +190,695,2020-02-15T06:59:35Z +190,705,2020-02-15T06:59:35Z +190,708,2020-02-15T06:59:35Z +190,802,2020-02-15T06:59:35Z +190,806,2020-02-15T06:59:35Z +190,874,2020-02-15T06:59:35Z +190,959,2020-02-15T06:59:35Z +191,16,2020-02-15T06:59:35Z +191,39,2020-02-15T06:59:35Z +191,84,2020-02-15T06:59:35Z +191,185,2020-02-15T06:59:35Z +191,219,2020-02-15T06:59:35Z +191,293,2020-02-15T06:59:35Z +191,296,2020-02-15T06:59:35Z +191,378,2020-02-15T06:59:35Z +191,410,2020-02-15T06:59:35Z +191,420,2020-02-15T06:59:35Z +191,461,2020-02-15T06:59:35Z +191,544,2020-02-15T06:59:35Z +191,551,2020-02-15T06:59:35Z +191,596,2020-02-15T06:59:35Z +191,638,2020-02-15T06:59:35Z +191,668,2020-02-15T06:59:35Z +191,692,2020-02-15T06:59:35Z +191,775,2020-02-15T06:59:35Z +191,801,2020-02-15T06:59:35Z +191,819,2020-02-15T06:59:35Z +191,827,2020-02-15T06:59:35Z +191,830,2020-02-15T06:59:35Z +191,834,2020-02-15T06:59:35Z +191,849,2020-02-15T06:59:35Z +191,858,2020-02-15T06:59:35Z +191,914,2020-02-15T06:59:35Z +191,958,2020-02-15T06:59:35Z +191,969,2020-02-15T06:59:35Z +191,971,2020-02-15T06:59:35Z +191,993,2020-02-15T06:59:35Z +192,16,2020-02-15T06:59:35Z +192,69,2020-02-15T06:59:35Z +192,117,2020-02-15T06:59:35Z +192,155,2020-02-15T06:59:35Z +192,166,2020-02-15T06:59:35Z +192,179,2020-02-15T06:59:35Z +192,214,2020-02-15T06:59:35Z +192,361,2020-02-15T06:59:35Z +192,367,2020-02-15T06:59:35Z +192,426,2020-02-15T06:59:35Z +192,465,2020-02-15T06:59:35Z +192,470,2020-02-15T06:59:35Z +192,475,2020-02-15T06:59:35Z +192,485,2020-02-15T06:59:35Z +192,541,2020-02-15T06:59:35Z +192,578,2020-02-15T06:59:35Z +192,592,2020-02-15T06:59:35Z +192,614,2020-02-15T06:59:35Z +192,618,2020-02-15T06:59:35Z +192,622,2020-02-15T06:59:35Z +192,674,2020-02-15T06:59:35Z +192,677,2020-02-15T06:59:35Z +192,680,2020-02-15T06:59:35Z +192,682,2020-02-15T06:59:35Z +192,708,2020-02-15T06:59:35Z +192,711,2020-02-15T06:59:35Z +192,747,2020-02-15T06:59:35Z +192,763,2020-02-15T06:59:35Z +192,819,2020-02-15T06:59:35Z +193,44,2020-02-15T06:59:35Z +193,80,2020-02-15T06:59:35Z +193,103,2020-02-15T06:59:35Z +193,109,2020-02-15T06:59:35Z +193,119,2020-02-15T06:59:35Z +193,141,2020-02-15T06:59:35Z +193,164,2020-02-15T06:59:35Z +193,291,2020-02-15T06:59:35Z +193,352,2020-02-15T06:59:35Z +193,358,2020-02-15T06:59:35Z +193,376,2020-02-15T06:59:35Z +193,412,2020-02-15T06:59:35Z +193,462,2020-02-15T06:59:35Z +193,689,2020-02-15T06:59:35Z +193,709,2020-02-15T06:59:35Z +193,745,2020-02-15T06:59:35Z +193,807,2020-02-15T06:59:35Z +193,828,2020-02-15T06:59:35Z +193,834,2020-02-15T06:59:35Z +193,851,2020-02-15T06:59:35Z +193,937,2020-02-15T06:59:35Z +193,953,2020-02-15T06:59:35Z +193,960,2020-02-15T06:59:35Z +194,9,2020-02-15T06:59:35Z +194,42,2020-02-15T06:59:35Z +194,67,2020-02-15T06:59:35Z +194,86,2020-02-15T06:59:35Z +194,88,2020-02-15T06:59:35Z +194,98,2020-02-15T06:59:35Z +194,135,2020-02-15T06:59:35Z +194,161,2020-02-15T06:59:35Z +194,163,2020-02-15T06:59:35Z +194,215,2020-02-15T06:59:35Z +194,232,2020-02-15T06:59:35Z +194,352,2020-02-15T06:59:35Z +194,415,2020-02-15T06:59:35Z +194,486,2020-02-15T06:59:35Z +194,498,2020-02-15T06:59:35Z +194,531,2020-02-15T06:59:35Z +194,719,2020-02-15T06:59:35Z +194,738,2020-02-15T06:59:35Z +194,786,2020-02-15T06:59:35Z +194,872,2020-02-15T06:59:35Z +194,938,2020-02-15T06:59:35Z +194,940,2020-02-15T06:59:35Z +195,129,2020-02-15T06:59:35Z +195,130,2020-02-15T06:59:35Z +195,141,2020-02-15T06:59:35Z +195,144,2020-02-15T06:59:35Z +195,298,2020-02-15T06:59:35Z +195,359,2020-02-15T06:59:35Z +195,361,2020-02-15T06:59:35Z +195,392,2020-02-15T06:59:35Z +195,403,2020-02-15T06:59:35Z +195,494,2020-02-15T06:59:35Z +195,520,2020-02-15T06:59:35Z +195,534,2020-02-15T06:59:35Z +195,560,2020-02-15T06:59:35Z +195,592,2020-02-15T06:59:35Z +195,649,2020-02-15T06:59:35Z +195,658,2020-02-15T06:59:35Z +195,673,2020-02-15T06:59:35Z +195,677,2020-02-15T06:59:35Z +195,706,2020-02-15T06:59:35Z +195,738,2020-02-15T06:59:35Z +195,769,2020-02-15T06:59:35Z +195,781,2020-02-15T06:59:35Z +195,794,2020-02-15T06:59:35Z +195,813,2020-02-15T06:59:35Z +195,869,2020-02-15T06:59:35Z +195,885,2020-02-15T06:59:35Z +195,962,2020-02-15T06:59:35Z +196,64,2020-02-15T06:59:35Z +196,122,2020-02-15T06:59:35Z +196,156,2020-02-15T06:59:35Z +196,169,2020-02-15T06:59:35Z +196,276,2020-02-15T06:59:35Z +196,284,2020-02-15T06:59:35Z +196,303,2020-02-15T06:59:35Z +196,324,2020-02-15T06:59:35Z +196,423,2020-02-15T06:59:35Z +196,473,2020-02-15T06:59:35Z +196,484,2020-02-15T06:59:35Z +196,515,2020-02-15T06:59:35Z +196,524,2020-02-15T06:59:35Z +196,541,2020-02-15T06:59:35Z +196,560,2020-02-15T06:59:35Z +196,575,2020-02-15T06:59:35Z +196,576,2020-02-15T06:59:35Z +196,587,2020-02-15T06:59:35Z +196,615,2020-02-15T06:59:35Z +196,635,2020-02-15T06:59:35Z +196,684,2020-02-15T06:59:35Z +196,795,2020-02-15T06:59:35Z +196,815,2020-02-15T06:59:35Z +196,833,2020-02-15T06:59:35Z +196,837,2020-02-15T06:59:35Z +196,906,2020-02-15T06:59:35Z +196,908,2020-02-15T06:59:35Z +196,919,2020-02-15T06:59:35Z +196,939,2020-02-15T06:59:35Z +196,972,2020-02-15T06:59:35Z +197,6,2020-02-15T06:59:35Z +197,29,2020-02-15T06:59:35Z +197,63,2020-02-15T06:59:35Z +197,123,2020-02-15T06:59:35Z +197,129,2020-02-15T06:59:35Z +197,147,2020-02-15T06:59:35Z +197,164,2020-02-15T06:59:35Z +197,189,2020-02-15T06:59:35Z +197,243,2020-02-15T06:59:35Z +197,249,2020-02-15T06:59:35Z +197,258,2020-02-15T06:59:35Z +197,364,2020-02-15T06:59:35Z +197,369,2020-02-15T06:59:35Z +197,370,2020-02-15T06:59:35Z +197,418,2020-02-15T06:59:35Z +197,522,2020-02-15T06:59:35Z +197,531,2020-02-15T06:59:35Z +197,554,2020-02-15T06:59:35Z +197,598,2020-02-15T06:59:35Z +197,628,2020-02-15T06:59:35Z +197,691,2020-02-15T06:59:35Z +197,724,2020-02-15T06:59:35Z +197,746,2020-02-15T06:59:35Z +197,752,2020-02-15T06:59:35Z +197,758,2020-02-15T06:59:35Z +197,769,2020-02-15T06:59:35Z +197,815,2020-02-15T06:59:35Z +197,916,2020-02-15T06:59:35Z +197,950,2020-02-15T06:59:35Z +197,967,2020-02-15T06:59:35Z +197,974,2020-02-15T06:59:35Z +197,979,2020-02-15T06:59:35Z +197,995,2020-02-15T06:59:35Z +198,1,2020-02-15T06:59:35Z +198,109,2020-02-15T06:59:35Z +198,125,2020-02-15T06:59:35Z +198,186,2020-02-15T06:59:35Z +198,262,2020-02-15T06:59:35Z +198,264,2020-02-15T06:59:35Z +198,303,2020-02-15T06:59:35Z +198,309,2020-02-15T06:59:35Z +198,311,2020-02-15T06:59:35Z +198,329,2020-02-15T06:59:35Z +198,347,2020-02-15T06:59:35Z +198,379,2020-02-15T06:59:35Z +198,395,2020-02-15T06:59:35Z +198,406,2020-02-15T06:59:35Z +198,450,2020-02-15T06:59:35Z +198,464,2020-02-15T06:59:35Z +198,482,2020-02-15T06:59:35Z +198,499,2020-02-15T06:59:35Z +198,536,2020-02-15T06:59:35Z +198,541,2020-02-15T06:59:35Z +198,545,2020-02-15T06:59:35Z +198,555,2020-02-15T06:59:35Z +198,568,2020-02-15T06:59:35Z +198,570,2020-02-15T06:59:35Z +198,588,2020-02-15T06:59:35Z +198,597,2020-02-15T06:59:35Z +198,628,2020-02-15T06:59:35Z +198,745,2020-02-15T06:59:35Z +198,758,2020-02-15T06:59:35Z +198,796,2020-02-15T06:59:35Z +198,806,2020-02-15T06:59:35Z +198,817,2020-02-15T06:59:35Z +198,843,2020-02-15T06:59:35Z +198,858,2020-02-15T06:59:35Z +198,871,2020-02-15T06:59:35Z +198,886,2020-02-15T06:59:35Z +198,892,2020-02-15T06:59:35Z +198,924,2020-02-15T06:59:35Z +198,952,2020-02-15T06:59:35Z +198,997,2020-02-15T06:59:35Z +199,67,2020-02-15T06:59:35Z +199,84,2020-02-15T06:59:35Z +199,145,2020-02-15T06:59:35Z +199,159,2020-02-15T06:59:35Z +199,216,2020-02-15T06:59:35Z +199,432,2020-02-15T06:59:35Z +199,541,2020-02-15T06:59:35Z +199,604,2020-02-15T06:59:35Z +199,640,2020-02-15T06:59:35Z +199,689,2020-02-15T06:59:35Z +199,730,2020-02-15T06:59:35Z +199,784,2020-02-15T06:59:35Z +199,785,2020-02-15T06:59:35Z +199,886,2020-02-15T06:59:35Z +199,953,2020-02-15T06:59:35Z +200,5,2020-02-15T06:59:35Z +200,49,2020-02-15T06:59:35Z +200,80,2020-02-15T06:59:35Z +200,116,2020-02-15T06:59:35Z +200,121,2020-02-15T06:59:35Z +200,149,2020-02-15T06:59:35Z +200,346,2020-02-15T06:59:35Z +200,419,2020-02-15T06:59:35Z +200,462,2020-02-15T06:59:35Z +200,465,2020-02-15T06:59:35Z +200,474,2020-02-15T06:59:35Z +200,537,2020-02-15T06:59:35Z +200,538,2020-02-15T06:59:35Z +200,544,2020-02-15T06:59:35Z +200,714,2020-02-15T06:59:35Z +200,879,2020-02-15T06:59:35Z +200,912,2020-02-15T06:59:35Z +200,945,2020-02-15T06:59:35Z +200,958,2020-02-15T06:59:35Z +200,993,2020-02-15T06:59:35Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/film_category.csv b/drivers/csv/testdata/sakila-csv-noheader/film_category.csv new file mode 100644 index 00000000..09af7836 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/film_category.csv @@ -0,0 +1,1000 @@ +1,6,2020-02-15T06:59:35Z +2,11,2020-02-15T06:59:35Z +3,6,2020-02-15T06:59:35Z +4,11,2020-02-15T06:59:35Z +5,8,2020-02-15T06:59:35Z +6,9,2020-02-15T06:59:35Z +7,5,2020-02-15T06:59:35Z +8,11,2020-02-15T06:59:35Z +9,11,2020-02-15T06:59:35Z +10,15,2020-02-15T06:59:35Z +11,9,2020-02-15T06:59:35Z +12,12,2020-02-15T06:59:35Z +13,11,2020-02-15T06:59:35Z +14,4,2020-02-15T06:59:35Z +15,9,2020-02-15T06:59:35Z +16,9,2020-02-15T06:59:35Z +17,12,2020-02-15T06:59:35Z +18,2,2020-02-15T06:59:35Z +19,1,2020-02-15T06:59:35Z +20,12,2020-02-15T06:59:35Z +21,1,2020-02-15T06:59:35Z +22,13,2020-02-15T06:59:35Z +23,2,2020-02-15T06:59:35Z +24,11,2020-02-15T06:59:35Z +25,13,2020-02-15T06:59:35Z +26,14,2020-02-15T06:59:35Z +27,15,2020-02-15T06:59:35Z +28,5,2020-02-15T06:59:35Z +29,1,2020-02-15T06:59:35Z +30,11,2020-02-15T06:59:35Z +31,8,2020-02-15T06:59:35Z +32,13,2020-02-15T06:59:35Z +33,7,2020-02-15T06:59:35Z +34,11,2020-02-15T06:59:35Z +35,11,2020-02-15T06:59:35Z +36,2,2020-02-15T06:59:35Z +37,4,2020-02-15T06:59:35Z +38,1,2020-02-15T06:59:35Z +39,14,2020-02-15T06:59:35Z +40,6,2020-02-15T06:59:35Z +41,16,2020-02-15T06:59:35Z +42,15,2020-02-15T06:59:35Z +43,8,2020-02-15T06:59:35Z +44,14,2020-02-15T06:59:35Z +45,13,2020-02-15T06:59:35Z +46,10,2020-02-15T06:59:35Z +47,9,2020-02-15T06:59:35Z +48,3,2020-02-15T06:59:35Z +49,14,2020-02-15T06:59:35Z +50,8,2020-02-15T06:59:35Z +51,12,2020-02-15T06:59:35Z +52,9,2020-02-15T06:59:35Z +53,8,2020-02-15T06:59:35Z +54,12,2020-02-15T06:59:35Z +55,14,2020-02-15T06:59:35Z +56,1,2020-02-15T06:59:35Z +57,16,2020-02-15T06:59:35Z +58,6,2020-02-15T06:59:35Z +59,3,2020-02-15T06:59:35Z +60,4,2020-02-15T06:59:35Z +61,7,2020-02-15T06:59:35Z +62,6,2020-02-15T06:59:35Z +63,8,2020-02-15T06:59:35Z +64,7,2020-02-15T06:59:35Z +65,11,2020-02-15T06:59:35Z +66,3,2020-02-15T06:59:35Z +67,1,2020-02-15T06:59:35Z +68,3,2020-02-15T06:59:35Z +69,14,2020-02-15T06:59:35Z +70,2,2020-02-15T06:59:35Z +71,8,2020-02-15T06:59:35Z +72,6,2020-02-15T06:59:35Z +73,14,2020-02-15T06:59:35Z +74,12,2020-02-15T06:59:35Z +75,16,2020-02-15T06:59:35Z +76,12,2020-02-15T06:59:35Z +77,13,2020-02-15T06:59:35Z +78,2,2020-02-15T06:59:35Z +79,7,2020-02-15T06:59:35Z +80,8,2020-02-15T06:59:35Z +81,14,2020-02-15T06:59:35Z +82,8,2020-02-15T06:59:35Z +83,8,2020-02-15T06:59:35Z +84,16,2020-02-15T06:59:35Z +85,6,2020-02-15T06:59:35Z +86,12,2020-02-15T06:59:35Z +87,16,2020-02-15T06:59:35Z +88,16,2020-02-15T06:59:35Z +89,2,2020-02-15T06:59:35Z +90,13,2020-02-15T06:59:35Z +91,4,2020-02-15T06:59:35Z +92,11,2020-02-15T06:59:35Z +93,13,2020-02-15T06:59:35Z +94,8,2020-02-15T06:59:35Z +95,13,2020-02-15T06:59:35Z +96,13,2020-02-15T06:59:35Z +97,1,2020-02-15T06:59:35Z +98,7,2020-02-15T06:59:35Z +99,5,2020-02-15T06:59:35Z +100,9,2020-02-15T06:59:35Z +101,6,2020-02-15T06:59:35Z +102,15,2020-02-15T06:59:35Z +103,16,2020-02-15T06:59:35Z +104,9,2020-02-15T06:59:35Z +105,1,2020-02-15T06:59:35Z +106,10,2020-02-15T06:59:35Z +107,7,2020-02-15T06:59:35Z +108,13,2020-02-15T06:59:35Z +109,13,2020-02-15T06:59:35Z +110,3,2020-02-15T06:59:35Z +111,1,2020-02-15T06:59:35Z +112,9,2020-02-15T06:59:35Z +113,15,2020-02-15T06:59:35Z +114,14,2020-02-15T06:59:35Z +115,1,2020-02-15T06:59:35Z +116,4,2020-02-15T06:59:35Z +117,10,2020-02-15T06:59:35Z +118,2,2020-02-15T06:59:35Z +119,5,2020-02-15T06:59:35Z +120,15,2020-02-15T06:59:35Z +121,2,2020-02-15T06:59:35Z +122,11,2020-02-15T06:59:35Z +123,16,2020-02-15T06:59:35Z +124,3,2020-02-15T06:59:35Z +125,16,2020-02-15T06:59:35Z +126,1,2020-02-15T06:59:35Z +127,5,2020-02-15T06:59:35Z +128,9,2020-02-15T06:59:35Z +129,6,2020-02-15T06:59:35Z +130,1,2020-02-15T06:59:35Z +131,4,2020-02-15T06:59:35Z +132,14,2020-02-15T06:59:35Z +133,12,2020-02-15T06:59:35Z +134,2,2020-02-15T06:59:35Z +135,15,2020-02-15T06:59:35Z +136,13,2020-02-15T06:59:35Z +137,14,2020-02-15T06:59:35Z +138,14,2020-02-15T06:59:35Z +139,8,2020-02-15T06:59:35Z +140,14,2020-02-15T06:59:35Z +141,10,2020-02-15T06:59:35Z +142,6,2020-02-15T06:59:35Z +143,7,2020-02-15T06:59:35Z +144,13,2020-02-15T06:59:35Z +145,8,2020-02-15T06:59:35Z +146,7,2020-02-15T06:59:35Z +147,8,2020-02-15T06:59:35Z +148,9,2020-02-15T06:59:35Z +149,3,2020-02-15T06:59:35Z +150,6,2020-02-15T06:59:35Z +151,14,2020-02-15T06:59:35Z +152,3,2020-02-15T06:59:35Z +153,14,2020-02-15T06:59:35Z +154,2,2020-02-15T06:59:35Z +155,13,2020-02-15T06:59:35Z +156,6,2020-02-15T06:59:35Z +157,3,2020-02-15T06:59:35Z +158,12,2020-02-15T06:59:35Z +159,5,2020-02-15T06:59:35Z +160,2,2020-02-15T06:59:35Z +161,12,2020-02-15T06:59:35Z +162,1,2020-02-15T06:59:35Z +163,13,2020-02-15T06:59:35Z +164,6,2020-02-15T06:59:35Z +165,14,2020-02-15T06:59:35Z +166,4,2020-02-15T06:59:35Z +167,16,2020-02-15T06:59:35Z +168,3,2020-02-15T06:59:35Z +169,16,2020-02-15T06:59:35Z +170,9,2020-02-15T06:59:35Z +171,11,2020-02-15T06:59:35Z +172,7,2020-02-15T06:59:35Z +173,7,2020-02-15T06:59:35Z +174,12,2020-02-15T06:59:35Z +175,8,2020-02-15T06:59:35Z +176,15,2020-02-15T06:59:35Z +177,14,2020-02-15T06:59:35Z +178,5,2020-02-15T06:59:35Z +179,7,2020-02-15T06:59:35Z +180,4,2020-02-15T06:59:35Z +181,16,2020-02-15T06:59:35Z +182,5,2020-02-15T06:59:35Z +183,8,2020-02-15T06:59:35Z +184,4,2020-02-15T06:59:35Z +185,9,2020-02-15T06:59:35Z +186,7,2020-02-15T06:59:35Z +187,15,2020-02-15T06:59:35Z +188,5,2020-02-15T06:59:35Z +189,10,2020-02-15T06:59:35Z +190,4,2020-02-15T06:59:35Z +191,3,2020-02-15T06:59:35Z +192,9,2020-02-15T06:59:35Z +193,2,2020-02-15T06:59:35Z +194,1,2020-02-15T06:59:35Z +195,14,2020-02-15T06:59:35Z +196,4,2020-02-15T06:59:35Z +197,15,2020-02-15T06:59:35Z +198,9,2020-02-15T06:59:35Z +199,6,2020-02-15T06:59:35Z +200,10,2020-02-15T06:59:35Z +201,9,2020-02-15T06:59:35Z +202,5,2020-02-15T06:59:35Z +203,14,2020-02-15T06:59:35Z +204,7,2020-02-15T06:59:35Z +205,1,2020-02-15T06:59:35Z +206,6,2020-02-15T06:59:35Z +207,9,2020-02-15T06:59:35Z +208,2,2020-02-15T06:59:35Z +209,7,2020-02-15T06:59:35Z +210,1,2020-02-15T06:59:35Z +211,10,2020-02-15T06:59:35Z +212,1,2020-02-15T06:59:35Z +213,8,2020-02-15T06:59:35Z +214,3,2020-02-15T06:59:35Z +215,10,2020-02-15T06:59:35Z +216,13,2020-02-15T06:59:35Z +217,10,2020-02-15T06:59:35Z +218,7,2020-02-15T06:59:35Z +219,6,2020-02-15T06:59:35Z +220,12,2020-02-15T06:59:35Z +221,6,2020-02-15T06:59:35Z +222,11,2020-02-15T06:59:35Z +223,2,2020-02-15T06:59:35Z +224,16,2020-02-15T06:59:35Z +225,7,2020-02-15T06:59:35Z +226,13,2020-02-15T06:59:35Z +227,10,2020-02-15T06:59:35Z +228,4,2020-02-15T06:59:35Z +229,1,2020-02-15T06:59:35Z +230,7,2020-02-15T06:59:35Z +231,8,2020-02-15T06:59:35Z +232,10,2020-02-15T06:59:35Z +233,16,2020-02-15T06:59:35Z +234,14,2020-02-15T06:59:35Z +235,14,2020-02-15T06:59:35Z +236,10,2020-02-15T06:59:35Z +237,15,2020-02-15T06:59:35Z +238,3,2020-02-15T06:59:35Z +239,2,2020-02-15T06:59:35Z +240,14,2020-02-15T06:59:35Z +241,2,2020-02-15T06:59:35Z +242,5,2020-02-15T06:59:35Z +243,2,2020-02-15T06:59:35Z +244,12,2020-02-15T06:59:35Z +245,2,2020-02-15T06:59:35Z +246,9,2020-02-15T06:59:35Z +247,5,2020-02-15T06:59:35Z +248,6,2020-02-15T06:59:35Z +249,4,2020-02-15T06:59:35Z +250,1,2020-02-15T06:59:35Z +251,13,2020-02-15T06:59:35Z +252,1,2020-02-15T06:59:35Z +253,1,2020-02-15T06:59:35Z +254,15,2020-02-15T06:59:35Z +255,12,2020-02-15T06:59:35Z +256,15,2020-02-15T06:59:35Z +257,16,2020-02-15T06:59:35Z +258,11,2020-02-15T06:59:35Z +259,2,2020-02-15T06:59:35Z +260,15,2020-02-15T06:59:35Z +261,6,2020-02-15T06:59:35Z +262,8,2020-02-15T06:59:35Z +263,15,2020-02-15T06:59:35Z +264,10,2020-02-15T06:59:35Z +265,5,2020-02-15T06:59:35Z +266,4,2020-02-15T06:59:35Z +267,13,2020-02-15T06:59:35Z +268,2,2020-02-15T06:59:35Z +269,8,2020-02-15T06:59:35Z +270,13,2020-02-15T06:59:35Z +271,1,2020-02-15T06:59:35Z +272,7,2020-02-15T06:59:35Z +273,8,2020-02-15T06:59:35Z +274,6,2020-02-15T06:59:35Z +275,11,2020-02-15T06:59:35Z +276,5,2020-02-15T06:59:35Z +277,11,2020-02-15T06:59:35Z +278,12,2020-02-15T06:59:35Z +279,15,2020-02-15T06:59:35Z +280,3,2020-02-15T06:59:35Z +281,10,2020-02-15T06:59:35Z +282,7,2020-02-15T06:59:35Z +283,13,2020-02-15T06:59:35Z +284,12,2020-02-15T06:59:35Z +285,14,2020-02-15T06:59:35Z +286,16,2020-02-15T06:59:35Z +287,1,2020-02-15T06:59:35Z +288,16,2020-02-15T06:59:35Z +289,13,2020-02-15T06:59:35Z +290,9,2020-02-15T06:59:35Z +291,15,2020-02-15T06:59:35Z +292,1,2020-02-15T06:59:35Z +293,15,2020-02-15T06:59:35Z +294,16,2020-02-15T06:59:35Z +295,6,2020-02-15T06:59:35Z +296,14,2020-02-15T06:59:35Z +297,4,2020-02-15T06:59:35Z +298,14,2020-02-15T06:59:35Z +299,16,2020-02-15T06:59:35Z +300,2,2020-02-15T06:59:35Z +301,11,2020-02-15T06:59:35Z +302,10,2020-02-15T06:59:35Z +303,1,2020-02-15T06:59:35Z +304,3,2020-02-15T06:59:35Z +305,13,2020-02-15T06:59:35Z +306,10,2020-02-15T06:59:35Z +307,16,2020-02-15T06:59:35Z +308,5,2020-02-15T06:59:35Z +309,8,2020-02-15T06:59:35Z +310,10,2020-02-15T06:59:35Z +311,9,2020-02-15T06:59:35Z +312,14,2020-02-15T06:59:35Z +313,11,2020-02-15T06:59:35Z +314,2,2020-02-15T06:59:35Z +315,8,2020-02-15T06:59:35Z +316,10,2020-02-15T06:59:35Z +317,5,2020-02-15T06:59:35Z +318,1,2020-02-15T06:59:35Z +319,14,2020-02-15T06:59:35Z +320,13,2020-02-15T06:59:35Z +321,13,2020-02-15T06:59:35Z +322,15,2020-02-15T06:59:35Z +323,15,2020-02-15T06:59:35Z +324,5,2020-02-15T06:59:35Z +325,2,2020-02-15T06:59:35Z +326,2,2020-02-15T06:59:35Z +327,1,2020-02-15T06:59:35Z +328,3,2020-02-15T06:59:35Z +329,1,2020-02-15T06:59:35Z +330,2,2020-02-15T06:59:35Z +331,10,2020-02-15T06:59:35Z +332,5,2020-02-15T06:59:35Z +333,12,2020-02-15T06:59:35Z +334,11,2020-02-15T06:59:35Z +335,5,2020-02-15T06:59:35Z +336,6,2020-02-15T06:59:35Z +337,9,2020-02-15T06:59:35Z +338,14,2020-02-15T06:59:35Z +339,16,2020-02-15T06:59:35Z +340,13,2020-02-15T06:59:35Z +341,4,2020-02-15T06:59:35Z +342,16,2020-02-15T06:59:35Z +343,3,2020-02-15T06:59:35Z +344,3,2020-02-15T06:59:35Z +345,8,2020-02-15T06:59:35Z +346,4,2020-02-15T06:59:35Z +347,16,2020-02-15T06:59:35Z +348,8,2020-02-15T06:59:35Z +349,2,2020-02-15T06:59:35Z +350,14,2020-02-15T06:59:35Z +351,11,2020-02-15T06:59:35Z +352,10,2020-02-15T06:59:35Z +353,9,2020-02-15T06:59:35Z +354,3,2020-02-15T06:59:35Z +355,2,2020-02-15T06:59:35Z +356,3,2020-02-15T06:59:35Z +357,4,2020-02-15T06:59:35Z +358,4,2020-02-15T06:59:35Z +359,8,2020-02-15T06:59:35Z +360,1,2020-02-15T06:59:35Z +361,15,2020-02-15T06:59:35Z +362,10,2020-02-15T06:59:35Z +363,12,2020-02-15T06:59:35Z +364,13,2020-02-15T06:59:35Z +365,5,2020-02-15T06:59:35Z +366,7,2020-02-15T06:59:35Z +367,14,2020-02-15T06:59:35Z +368,7,2020-02-15T06:59:35Z +369,14,2020-02-15T06:59:35Z +370,3,2020-02-15T06:59:35Z +371,1,2020-02-15T06:59:35Z +372,15,2020-02-15T06:59:35Z +373,3,2020-02-15T06:59:35Z +374,14,2020-02-15T06:59:35Z +375,1,2020-02-15T06:59:35Z +376,9,2020-02-15T06:59:35Z +377,8,2020-02-15T06:59:35Z +378,12,2020-02-15T06:59:35Z +379,7,2020-02-15T06:59:35Z +380,9,2020-02-15T06:59:35Z +381,10,2020-02-15T06:59:35Z +382,10,2020-02-15T06:59:35Z +383,15,2020-02-15T06:59:35Z +384,12,2020-02-15T06:59:35Z +385,5,2020-02-15T06:59:35Z +386,16,2020-02-15T06:59:35Z +387,10,2020-02-15T06:59:35Z +388,5,2020-02-15T06:59:35Z +389,15,2020-02-15T06:59:35Z +390,14,2020-02-15T06:59:35Z +391,8,2020-02-15T06:59:35Z +392,3,2020-02-15T06:59:35Z +393,6,2020-02-15T06:59:35Z +394,14,2020-02-15T06:59:35Z +395,1,2020-02-15T06:59:35Z +396,7,2020-02-15T06:59:35Z +397,14,2020-02-15T06:59:35Z +398,12,2020-02-15T06:59:35Z +399,9,2020-02-15T06:59:35Z +400,6,2020-02-15T06:59:35Z +401,7,2020-02-15T06:59:35Z +402,2,2020-02-15T06:59:35Z +403,7,2020-02-15T06:59:35Z +404,5,2020-02-15T06:59:35Z +405,16,2020-02-15T06:59:35Z +406,10,2020-02-15T06:59:35Z +407,6,2020-02-15T06:59:35Z +408,10,2020-02-15T06:59:35Z +409,3,2020-02-15T06:59:35Z +410,5,2020-02-15T06:59:35Z +411,12,2020-02-15T06:59:35Z +412,6,2020-02-15T06:59:35Z +413,5,2020-02-15T06:59:35Z +414,9,2020-02-15T06:59:35Z +415,11,2020-02-15T06:59:35Z +416,9,2020-02-15T06:59:35Z +417,1,2020-02-15T06:59:35Z +418,7,2020-02-15T06:59:35Z +419,8,2020-02-15T06:59:35Z +420,15,2020-02-15T06:59:35Z +421,9,2020-02-15T06:59:35Z +422,14,2020-02-15T06:59:35Z +423,3,2020-02-15T06:59:35Z +424,3,2020-02-15T06:59:35Z +425,4,2020-02-15T06:59:35Z +426,12,2020-02-15T06:59:35Z +427,6,2020-02-15T06:59:35Z +428,8,2020-02-15T06:59:35Z +429,15,2020-02-15T06:59:35Z +430,2,2020-02-15T06:59:35Z +431,9,2020-02-15T06:59:35Z +432,4,2020-02-15T06:59:35Z +433,2,2020-02-15T06:59:35Z +434,16,2020-02-15T06:59:35Z +435,9,2020-02-15T06:59:35Z +436,13,2020-02-15T06:59:35Z +437,8,2020-02-15T06:59:35Z +438,10,2020-02-15T06:59:35Z +439,7,2020-02-15T06:59:35Z +440,9,2020-02-15T06:59:35Z +441,6,2020-02-15T06:59:35Z +442,8,2020-02-15T06:59:35Z +443,5,2020-02-15T06:59:35Z +444,5,2020-02-15T06:59:35Z +445,4,2020-02-15T06:59:35Z +446,15,2020-02-15T06:59:35Z +447,10,2020-02-15T06:59:35Z +448,13,2020-02-15T06:59:35Z +449,14,2020-02-15T06:59:35Z +450,3,2020-02-15T06:59:35Z +451,16,2020-02-15T06:59:35Z +452,9,2020-02-15T06:59:35Z +453,15,2020-02-15T06:59:35Z +454,12,2020-02-15T06:59:35Z +455,9,2020-02-15T06:59:35Z +456,2,2020-02-15T06:59:35Z +457,6,2020-02-15T06:59:35Z +458,8,2020-02-15T06:59:35Z +459,9,2020-02-15T06:59:35Z +460,9,2020-02-15T06:59:35Z +461,2,2020-02-15T06:59:35Z +462,12,2020-02-15T06:59:35Z +463,15,2020-02-15T06:59:35Z +464,2,2020-02-15T06:59:35Z +465,13,2020-02-15T06:59:35Z +466,6,2020-02-15T06:59:35Z +467,9,2020-02-15T06:59:35Z +468,3,2020-02-15T06:59:35Z +469,4,2020-02-15T06:59:35Z +470,2,2020-02-15T06:59:35Z +471,4,2020-02-15T06:59:35Z +472,16,2020-02-15T06:59:35Z +473,7,2020-02-15T06:59:35Z +474,15,2020-02-15T06:59:35Z +475,11,2020-02-15T06:59:35Z +476,8,2020-02-15T06:59:35Z +477,12,2020-02-15T06:59:35Z +478,5,2020-02-15T06:59:35Z +479,8,2020-02-15T06:59:35Z +480,4,2020-02-15T06:59:35Z +481,13,2020-02-15T06:59:35Z +482,4,2020-02-15T06:59:35Z +483,10,2020-02-15T06:59:35Z +484,4,2020-02-15T06:59:35Z +485,3,2020-02-15T06:59:35Z +486,9,2020-02-15T06:59:35Z +487,4,2020-02-15T06:59:35Z +488,15,2020-02-15T06:59:35Z +489,2,2020-02-15T06:59:35Z +490,13,2020-02-15T06:59:35Z +491,3,2020-02-15T06:59:35Z +492,13,2020-02-15T06:59:35Z +493,9,2020-02-15T06:59:36Z +494,11,2020-02-15T06:59:36Z +495,11,2020-02-15T06:59:36Z +496,16,2020-02-15T06:59:36Z +497,6,2020-02-15T06:59:36Z +498,8,2020-02-15T06:59:36Z +499,8,2020-02-15T06:59:36Z +500,9,2020-02-15T06:59:36Z +501,1,2020-02-15T06:59:36Z +502,5,2020-02-15T06:59:36Z +503,15,2020-02-15T06:59:36Z +504,7,2020-02-15T06:59:36Z +505,3,2020-02-15T06:59:36Z +506,11,2020-02-15T06:59:36Z +507,10,2020-02-15T06:59:36Z +508,10,2020-02-15T06:59:36Z +509,3,2020-02-15T06:59:36Z +510,2,2020-02-15T06:59:36Z +511,1,2020-02-15T06:59:36Z +512,4,2020-02-15T06:59:36Z +513,16,2020-02-15T06:59:36Z +514,7,2020-02-15T06:59:36Z +515,3,2020-02-15T06:59:36Z +516,12,2020-02-15T06:59:36Z +517,15,2020-02-15T06:59:36Z +518,16,2020-02-15T06:59:36Z +519,15,2020-02-15T06:59:36Z +520,14,2020-02-15T06:59:36Z +521,7,2020-02-15T06:59:36Z +522,5,2020-02-15T06:59:36Z +523,4,2020-02-15T06:59:36Z +524,5,2020-02-15T06:59:36Z +525,4,2020-02-15T06:59:36Z +526,16,2020-02-15T06:59:36Z +527,11,2020-02-15T06:59:36Z +528,8,2020-02-15T06:59:36Z +529,5,2020-02-15T06:59:36Z +530,1,2020-02-15T06:59:36Z +531,9,2020-02-15T06:59:36Z +532,15,2020-02-15T06:59:36Z +533,9,2020-02-15T06:59:36Z +534,8,2020-02-15T06:59:36Z +535,11,2020-02-15T06:59:36Z +536,4,2020-02-15T06:59:36Z +537,4,2020-02-15T06:59:36Z +538,13,2020-02-15T06:59:36Z +539,7,2020-02-15T06:59:36Z +540,12,2020-02-15T06:59:36Z +541,2,2020-02-15T06:59:36Z +542,1,2020-02-15T06:59:36Z +543,16,2020-02-15T06:59:36Z +544,6,2020-02-15T06:59:36Z +545,9,2020-02-15T06:59:36Z +546,10,2020-02-15T06:59:36Z +547,3,2020-02-15T06:59:36Z +548,4,2020-02-15T06:59:36Z +549,1,2020-02-15T06:59:36Z +550,8,2020-02-15T06:59:36Z +551,13,2020-02-15T06:59:36Z +552,6,2020-02-15T06:59:36Z +553,3,2020-02-15T06:59:36Z +554,4,2020-02-15T06:59:36Z +555,5,2020-02-15T06:59:36Z +556,10,2020-02-15T06:59:36Z +557,8,2020-02-15T06:59:36Z +558,13,2020-02-15T06:59:36Z +559,14,2020-02-15T06:59:36Z +560,10,2020-02-15T06:59:36Z +561,13,2020-02-15T06:59:36Z +562,12,2020-02-15T06:59:36Z +563,10,2020-02-15T06:59:36Z +564,2,2020-02-15T06:59:36Z +565,9,2020-02-15T06:59:36Z +566,9,2020-02-15T06:59:36Z +567,9,2020-02-15T06:59:36Z +568,5,2020-02-15T06:59:36Z +569,2,2020-02-15T06:59:36Z +570,15,2020-02-15T06:59:36Z +571,6,2020-02-15T06:59:36Z +572,14,2020-02-15T06:59:36Z +573,3,2020-02-15T06:59:36Z +574,1,2020-02-15T06:59:36Z +575,6,2020-02-15T06:59:36Z +576,6,2020-02-15T06:59:36Z +577,15,2020-02-15T06:59:36Z +578,4,2020-02-15T06:59:36Z +579,1,2020-02-15T06:59:36Z +580,13,2020-02-15T06:59:36Z +581,12,2020-02-15T06:59:36Z +582,2,2020-02-15T06:59:36Z +583,2,2020-02-15T06:59:36Z +584,9,2020-02-15T06:59:36Z +585,7,2020-02-15T06:59:36Z +586,1,2020-02-15T06:59:36Z +587,6,2020-02-15T06:59:36Z +588,3,2020-02-15T06:59:36Z +589,6,2020-02-15T06:59:36Z +590,13,2020-02-15T06:59:36Z +591,10,2020-02-15T06:59:36Z +592,12,2020-02-15T06:59:36Z +593,11,2020-02-15T06:59:36Z +594,1,2020-02-15T06:59:36Z +595,9,2020-02-15T06:59:36Z +596,10,2020-02-15T06:59:36Z +597,10,2020-02-15T06:59:36Z +598,15,2020-02-15T06:59:36Z +599,15,2020-02-15T06:59:36Z +600,11,2020-02-15T06:59:36Z +601,16,2020-02-15T06:59:36Z +602,14,2020-02-15T06:59:36Z +603,8,2020-02-15T06:59:36Z +604,5,2020-02-15T06:59:36Z +605,9,2020-02-15T06:59:36Z +606,15,2020-02-15T06:59:36Z +607,9,2020-02-15T06:59:36Z +608,3,2020-02-15T06:59:36Z +609,16,2020-02-15T06:59:36Z +610,8,2020-02-15T06:59:36Z +611,4,2020-02-15T06:59:36Z +612,15,2020-02-15T06:59:36Z +613,5,2020-02-15T06:59:36Z +614,10,2020-02-15T06:59:36Z +615,2,2020-02-15T06:59:36Z +616,6,2020-02-15T06:59:36Z +617,8,2020-02-15T06:59:36Z +618,7,2020-02-15T06:59:36Z +619,15,2020-02-15T06:59:36Z +620,14,2020-02-15T06:59:36Z +621,8,2020-02-15T06:59:36Z +622,6,2020-02-15T06:59:36Z +623,9,2020-02-15T06:59:36Z +624,10,2020-02-15T06:59:36Z +625,14,2020-02-15T06:59:36Z +626,3,2020-02-15T06:59:36Z +627,6,2020-02-15T06:59:36Z +628,15,2020-02-15T06:59:36Z +629,6,2020-02-15T06:59:36Z +630,7,2020-02-15T06:59:36Z +631,15,2020-02-15T06:59:36Z +632,13,2020-02-15T06:59:36Z +633,4,2020-02-15T06:59:36Z +634,8,2020-02-15T06:59:36Z +635,13,2020-02-15T06:59:36Z +636,12,2020-02-15T06:59:36Z +637,14,2020-02-15T06:59:36Z +638,5,2020-02-15T06:59:36Z +639,8,2020-02-15T06:59:36Z +640,9,2020-02-15T06:59:36Z +641,9,2020-02-15T06:59:36Z +642,16,2020-02-15T06:59:36Z +643,7,2020-02-15T06:59:36Z +644,2,2020-02-15T06:59:36Z +645,16,2020-02-15T06:59:36Z +646,10,2020-02-15T06:59:36Z +647,12,2020-02-15T06:59:36Z +648,16,2020-02-15T06:59:36Z +649,2,2020-02-15T06:59:36Z +650,6,2020-02-15T06:59:36Z +651,2,2020-02-15T06:59:36Z +652,4,2020-02-15T06:59:36Z +653,11,2020-02-15T06:59:36Z +654,10,2020-02-15T06:59:36Z +655,14,2020-02-15T06:59:36Z +656,16,2020-02-15T06:59:36Z +657,5,2020-02-15T06:59:36Z +658,11,2020-02-15T06:59:36Z +659,1,2020-02-15T06:59:36Z +660,5,2020-02-15T06:59:36Z +661,9,2020-02-15T06:59:36Z +662,7,2020-02-15T06:59:36Z +663,4,2020-02-15T06:59:36Z +664,1,2020-02-15T06:59:36Z +665,11,2020-02-15T06:59:36Z +666,7,2020-02-15T06:59:36Z +667,15,2020-02-15T06:59:36Z +668,15,2020-02-15T06:59:36Z +669,9,2020-02-15T06:59:36Z +670,6,2020-02-15T06:59:36Z +671,15,2020-02-15T06:59:36Z +672,5,2020-02-15T06:59:36Z +673,12,2020-02-15T06:59:36Z +674,9,2020-02-15T06:59:36Z +675,13,2020-02-15T06:59:36Z +676,15,2020-02-15T06:59:36Z +677,13,2020-02-15T06:59:36Z +678,15,2020-02-15T06:59:36Z +679,8,2020-02-15T06:59:36Z +680,5,2020-02-15T06:59:36Z +681,15,2020-02-15T06:59:36Z +682,8,2020-02-15T06:59:36Z +683,7,2020-02-15T06:59:36Z +684,10,2020-02-15T06:59:36Z +685,13,2020-02-15T06:59:36Z +686,13,2020-02-15T06:59:36Z +687,6,2020-02-15T06:59:36Z +688,3,2020-02-15T06:59:36Z +689,9,2020-02-15T06:59:36Z +690,2,2020-02-15T06:59:36Z +691,15,2020-02-15T06:59:36Z +692,2,2020-02-15T06:59:36Z +693,2,2020-02-15T06:59:36Z +694,4,2020-02-15T06:59:36Z +695,8,2020-02-15T06:59:36Z +696,2,2020-02-15T06:59:36Z +697,1,2020-02-15T06:59:36Z +698,6,2020-02-15T06:59:36Z +699,10,2020-02-15T06:59:36Z +700,8,2020-02-15T06:59:36Z +701,10,2020-02-15T06:59:36Z +702,11,2020-02-15T06:59:36Z +703,2,2020-02-15T06:59:36Z +704,5,2020-02-15T06:59:36Z +705,9,2020-02-15T06:59:36Z +706,7,2020-02-15T06:59:36Z +707,1,2020-02-15T06:59:36Z +708,6,2020-02-15T06:59:36Z +709,7,2020-02-15T06:59:36Z +710,8,2020-02-15T06:59:36Z +711,14,2020-02-15T06:59:36Z +712,6,2020-02-15T06:59:36Z +713,6,2020-02-15T06:59:36Z +714,14,2020-02-15T06:59:36Z +715,8,2020-02-15T06:59:36Z +716,11,2020-02-15T06:59:36Z +717,1,2020-02-15T06:59:36Z +718,12,2020-02-15T06:59:36Z +719,15,2020-02-15T06:59:36Z +720,13,2020-02-15T06:59:36Z +721,12,2020-02-15T06:59:36Z +722,11,2020-02-15T06:59:36Z +723,14,2020-02-15T06:59:36Z +724,8,2020-02-15T06:59:36Z +725,4,2020-02-15T06:59:36Z +726,9,2020-02-15T06:59:36Z +727,8,2020-02-15T06:59:36Z +728,7,2020-02-15T06:59:36Z +729,15,2020-02-15T06:59:36Z +730,13,2020-02-15T06:59:36Z +731,4,2020-02-15T06:59:36Z +732,1,2020-02-15T06:59:36Z +733,15,2020-02-15T06:59:36Z +734,6,2020-02-15T06:59:36Z +735,3,2020-02-15T06:59:36Z +736,8,2020-02-15T06:59:36Z +737,11,2020-02-15T06:59:36Z +738,9,2020-02-15T06:59:36Z +739,7,2020-02-15T06:59:36Z +740,11,2020-02-15T06:59:36Z +741,12,2020-02-15T06:59:36Z +742,10,2020-02-15T06:59:36Z +743,2,2020-02-15T06:59:36Z +744,4,2020-02-15T06:59:36Z +745,15,2020-02-15T06:59:36Z +746,10,2020-02-15T06:59:36Z +747,10,2020-02-15T06:59:36Z +748,1,2020-02-15T06:59:36Z +749,11,2020-02-15T06:59:36Z +750,13,2020-02-15T06:59:36Z +751,13,2020-02-15T06:59:36Z +752,12,2020-02-15T06:59:36Z +753,8,2020-02-15T06:59:36Z +754,5,2020-02-15T06:59:36Z +755,3,2020-02-15T06:59:36Z +756,5,2020-02-15T06:59:36Z +757,6,2020-02-15T06:59:36Z +758,7,2020-02-15T06:59:36Z +759,13,2020-02-15T06:59:36Z +760,13,2020-02-15T06:59:36Z +761,3,2020-02-15T06:59:36Z +762,10,2020-02-15T06:59:36Z +763,15,2020-02-15T06:59:36Z +764,15,2020-02-15T06:59:36Z +765,5,2020-02-15T06:59:36Z +766,7,2020-02-15T06:59:36Z +767,12,2020-02-15T06:59:36Z +768,3,2020-02-15T06:59:36Z +769,9,2020-02-15T06:59:36Z +770,9,2020-02-15T06:59:36Z +771,7,2020-02-15T06:59:36Z +772,7,2020-02-15T06:59:36Z +773,15,2020-02-15T06:59:36Z +774,5,2020-02-15T06:59:36Z +775,7,2020-02-15T06:59:36Z +776,6,2020-02-15T06:59:36Z +777,15,2020-02-15T06:59:36Z +778,8,2020-02-15T06:59:36Z +779,15,2020-02-15T06:59:36Z +780,8,2020-02-15T06:59:36Z +781,10,2020-02-15T06:59:36Z +782,15,2020-02-15T06:59:36Z +783,16,2020-02-15T06:59:36Z +784,16,2020-02-15T06:59:36Z +785,16,2020-02-15T06:59:36Z +786,3,2020-02-15T06:59:36Z +787,16,2020-02-15T06:59:36Z +788,6,2020-02-15T06:59:36Z +789,9,2020-02-15T06:59:36Z +790,7,2020-02-15T06:59:36Z +791,6,2020-02-15T06:59:36Z +792,9,2020-02-15T06:59:36Z +793,1,2020-02-15T06:59:36Z +794,1,2020-02-15T06:59:36Z +795,8,2020-02-15T06:59:36Z +796,15,2020-02-15T06:59:36Z +797,12,2020-02-15T06:59:36Z +798,14,2020-02-15T06:59:36Z +799,11,2020-02-15T06:59:36Z +800,11,2020-02-15T06:59:36Z +801,3,2020-02-15T06:59:36Z +802,1,2020-02-15T06:59:36Z +803,7,2020-02-15T06:59:36Z +804,11,2020-02-15T06:59:36Z +805,2,2020-02-15T06:59:36Z +806,13,2020-02-15T06:59:36Z +807,10,2020-02-15T06:59:36Z +808,4,2020-02-15T06:59:36Z +809,15,2020-02-15T06:59:36Z +810,8,2020-02-15T06:59:36Z +811,16,2020-02-15T06:59:36Z +812,6,2020-02-15T06:59:36Z +813,15,2020-02-15T06:59:36Z +814,5,2020-02-15T06:59:36Z +815,4,2020-02-15T06:59:36Z +816,2,2020-02-15T06:59:36Z +817,14,2020-02-15T06:59:36Z +818,7,2020-02-15T06:59:36Z +819,12,2020-02-15T06:59:36Z +820,2,2020-02-15T06:59:36Z +821,9,2020-02-15T06:59:36Z +822,8,2020-02-15T06:59:36Z +823,1,2020-02-15T06:59:36Z +824,8,2020-02-15T06:59:36Z +825,1,2020-02-15T06:59:36Z +826,16,2020-02-15T06:59:36Z +827,7,2020-02-15T06:59:36Z +828,4,2020-02-15T06:59:36Z +829,8,2020-02-15T06:59:36Z +830,11,2020-02-15T06:59:36Z +831,14,2020-02-15T06:59:36Z +832,8,2020-02-15T06:59:36Z +833,3,2020-02-15T06:59:36Z +834,6,2020-02-15T06:59:36Z +835,10,2020-02-15T06:59:36Z +836,15,2020-02-15T06:59:36Z +837,5,2020-02-15T06:59:36Z +838,1,2020-02-15T06:59:36Z +839,14,2020-02-15T06:59:36Z +840,10,2020-02-15T06:59:36Z +841,15,2020-02-15T06:59:36Z +842,10,2020-02-15T06:59:36Z +843,4,2020-02-15T06:59:36Z +844,15,2020-02-15T06:59:36Z +845,9,2020-02-15T06:59:36Z +846,13,2020-02-15T06:59:36Z +847,13,2020-02-15T06:59:36Z +848,16,2020-02-15T06:59:36Z +849,2,2020-02-15T06:59:36Z +850,1,2020-02-15T06:59:36Z +851,15,2020-02-15T06:59:36Z +852,3,2020-02-15T06:59:36Z +853,3,2020-02-15T06:59:36Z +854,11,2020-02-15T06:59:36Z +855,6,2020-02-15T06:59:36Z +856,11,2020-02-15T06:59:36Z +857,5,2020-02-15T06:59:36Z +858,5,2020-02-15T06:59:36Z +859,2,2020-02-15T06:59:36Z +860,14,2020-02-15T06:59:36Z +861,10,2020-02-15T06:59:36Z +862,4,2020-02-15T06:59:36Z +863,14,2020-02-15T06:59:36Z +864,3,2020-02-15T06:59:36Z +865,2,2020-02-15T06:59:36Z +866,8,2020-02-15T06:59:36Z +867,8,2020-02-15T06:59:36Z +868,16,2020-02-15T06:59:36Z +869,1,2020-02-15T06:59:36Z +870,11,2020-02-15T06:59:36Z +871,5,2020-02-15T06:59:36Z +872,16,2020-02-15T06:59:36Z +873,3,2020-02-15T06:59:36Z +874,4,2020-02-15T06:59:36Z +875,15,2020-02-15T06:59:36Z +876,11,2020-02-15T06:59:36Z +877,12,2020-02-15T06:59:36Z +878,16,2020-02-15T06:59:36Z +879,12,2020-02-15T06:59:36Z +880,2,2020-02-15T06:59:36Z +881,11,2020-02-15T06:59:36Z +882,7,2020-02-15T06:59:36Z +883,3,2020-02-15T06:59:36Z +884,12,2020-02-15T06:59:36Z +885,11,2020-02-15T06:59:36Z +886,2,2020-02-15T06:59:36Z +887,2,2020-02-15T06:59:36Z +888,6,2020-02-15T06:59:36Z +889,3,2020-02-15T06:59:36Z +890,15,2020-02-15T06:59:36Z +891,4,2020-02-15T06:59:36Z +892,2,2020-02-15T06:59:36Z +893,14,2020-02-15T06:59:36Z +894,16,2020-02-15T06:59:36Z +895,4,2020-02-15T06:59:36Z +896,3,2020-02-15T06:59:36Z +897,7,2020-02-15T06:59:36Z +898,15,2020-02-15T06:59:36Z +899,4,2020-02-15T06:59:36Z +900,9,2020-02-15T06:59:36Z +901,2,2020-02-15T06:59:36Z +902,15,2020-02-15T06:59:36Z +903,16,2020-02-15T06:59:36Z +904,11,2020-02-15T06:59:36Z +905,5,2020-02-15T06:59:36Z +906,5,2020-02-15T06:59:36Z +907,7,2020-02-15T06:59:36Z +908,9,2020-02-15T06:59:36Z +909,11,2020-02-15T06:59:36Z +910,7,2020-02-15T06:59:36Z +911,1,2020-02-15T06:59:36Z +912,14,2020-02-15T06:59:36Z +913,13,2020-02-15T06:59:36Z +914,16,2020-02-15T06:59:36Z +915,1,2020-02-15T06:59:36Z +916,2,2020-02-15T06:59:36Z +917,15,2020-02-15T06:59:36Z +918,3,2020-02-15T06:59:36Z +919,10,2020-02-15T06:59:36Z +920,13,2020-02-15T06:59:36Z +921,12,2020-02-15T06:59:36Z +922,11,2020-02-15T06:59:36Z +923,7,2020-02-15T06:59:36Z +924,14,2020-02-15T06:59:36Z +925,6,2020-02-15T06:59:36Z +926,6,2020-02-15T06:59:36Z +927,1,2020-02-15T06:59:36Z +928,3,2020-02-15T06:59:36Z +929,9,2020-02-15T06:59:36Z +930,14,2020-02-15T06:59:36Z +931,16,2020-02-15T06:59:36Z +932,5,2020-02-15T06:59:36Z +933,13,2020-02-15T06:59:36Z +934,10,2020-02-15T06:59:36Z +935,13,2020-02-15T06:59:36Z +936,12,2020-02-15T06:59:36Z +937,13,2020-02-15T06:59:36Z +938,5,2020-02-15T06:59:36Z +939,5,2020-02-15T06:59:36Z +940,15,2020-02-15T06:59:36Z +941,10,2020-02-15T06:59:36Z +942,7,2020-02-15T06:59:36Z +943,6,2020-02-15T06:59:36Z +944,7,2020-02-15T06:59:36Z +945,6,2020-02-15T06:59:36Z +946,8,2020-02-15T06:59:36Z +947,9,2020-02-15T06:59:36Z +948,13,2020-02-15T06:59:36Z +949,10,2020-02-15T06:59:36Z +950,4,2020-02-15T06:59:36Z +951,4,2020-02-15T06:59:36Z +952,6,2020-02-15T06:59:36Z +953,2,2020-02-15T06:59:36Z +954,13,2020-02-15T06:59:36Z +955,3,2020-02-15T06:59:36Z +956,10,2020-02-15T06:59:36Z +957,9,2020-02-15T06:59:36Z +958,7,2020-02-15T06:59:36Z +959,3,2020-02-15T06:59:36Z +960,6,2020-02-15T06:59:36Z +961,9,2020-02-15T06:59:36Z +962,4,2020-02-15T06:59:36Z +963,2,2020-02-15T06:59:36Z +964,1,2020-02-15T06:59:36Z +965,11,2020-02-15T06:59:36Z +966,6,2020-02-15T06:59:36Z +967,14,2020-02-15T06:59:36Z +968,1,2020-02-15T06:59:36Z +969,7,2020-02-15T06:59:36Z +970,4,2020-02-15T06:59:36Z +971,9,2020-02-15T06:59:36Z +972,14,2020-02-15T06:59:36Z +973,6,2020-02-15T06:59:36Z +974,13,2020-02-15T06:59:36Z +975,8,2020-02-15T06:59:36Z +976,10,2020-02-15T06:59:36Z +977,16,2020-02-15T06:59:36Z +978,5,2020-02-15T06:59:36Z +979,7,2020-02-15T06:59:36Z +980,12,2020-02-15T06:59:36Z +981,16,2020-02-15T06:59:36Z +982,1,2020-02-15T06:59:36Z +983,12,2020-02-15T06:59:36Z +984,9,2020-02-15T06:59:36Z +985,14,2020-02-15T06:59:36Z +986,2,2020-02-15T06:59:36Z +987,12,2020-02-15T06:59:36Z +988,16,2020-02-15T06:59:36Z +989,16,2020-02-15T06:59:36Z +990,11,2020-02-15T06:59:36Z +991,1,2020-02-15T06:59:36Z +992,6,2020-02-15T06:59:36Z +993,3,2020-02-15T06:59:36Z +994,13,2020-02-15T06:59:36Z +995,11,2020-02-15T06:59:36Z +996,6,2020-02-15T06:59:36Z +997,12,2020-02-15T06:59:36Z +998,11,2020-02-15T06:59:36Z +999,3,2020-02-15T06:59:36Z +1000,5,2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/film_text.csv b/drivers/csv/testdata/sakila-csv-noheader/film_text.csv new file mode 100644 index 00000000..e69de29b diff --git a/drivers/csv/testdata/sakila-csv-noheader/inventory.csv b/drivers/csv/testdata/sakila-csv-noheader/inventory.csv new file mode 100644 index 00000000..26504209 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/inventory.csv @@ -0,0 +1,4581 @@ +1,1,1,2020-02-15T06:59:29Z +2,1,1,2020-02-15T06:59:29Z +3,1,1,2020-02-15T06:59:29Z +4,1,1,2020-02-15T06:59:29Z +5,1,2,2020-02-15T06:59:29Z +6,1,2,2020-02-15T06:59:29Z +7,1,2,2020-02-15T06:59:29Z +8,1,2,2020-02-15T06:59:29Z +9,2,2,2020-02-15T06:59:29Z +10,2,2,2020-02-15T06:59:29Z +11,2,2,2020-02-15T06:59:29Z +12,3,2,2020-02-15T06:59:29Z +13,3,2,2020-02-15T06:59:29Z +14,3,2,2020-02-15T06:59:29Z +15,3,2,2020-02-15T06:59:29Z +16,4,1,2020-02-15T06:59:29Z +17,4,1,2020-02-15T06:59:29Z +18,4,1,2020-02-15T06:59:29Z +19,4,1,2020-02-15T06:59:29Z +20,4,2,2020-02-15T06:59:29Z +21,4,2,2020-02-15T06:59:29Z +22,4,2,2020-02-15T06:59:29Z +23,5,2,2020-02-15T06:59:29Z +24,5,2,2020-02-15T06:59:29Z +25,5,2,2020-02-15T06:59:29Z +26,6,1,2020-02-15T06:59:29Z +27,6,1,2020-02-15T06:59:29Z +28,6,1,2020-02-15T06:59:29Z +29,6,2,2020-02-15T06:59:29Z +30,6,2,2020-02-15T06:59:29Z +31,6,2,2020-02-15T06:59:29Z +32,7,1,2020-02-15T06:59:29Z +33,7,1,2020-02-15T06:59:29Z +34,7,2,2020-02-15T06:59:29Z +35,7,2,2020-02-15T06:59:29Z +36,7,2,2020-02-15T06:59:29Z +37,8,2,2020-02-15T06:59:29Z +38,8,2,2020-02-15T06:59:29Z +39,8,2,2020-02-15T06:59:29Z +40,8,2,2020-02-15T06:59:29Z +41,9,1,2020-02-15T06:59:29Z +42,9,1,2020-02-15T06:59:29Z +43,9,1,2020-02-15T06:59:29Z +44,9,2,2020-02-15T06:59:29Z +45,9,2,2020-02-15T06:59:29Z +46,10,1,2020-02-15T06:59:29Z +47,10,1,2020-02-15T06:59:29Z +48,10,1,2020-02-15T06:59:29Z +49,10,1,2020-02-15T06:59:29Z +50,10,2,2020-02-15T06:59:29Z +51,10,2,2020-02-15T06:59:29Z +52,10,2,2020-02-15T06:59:29Z +53,11,1,2020-02-15T06:59:29Z +54,11,1,2020-02-15T06:59:29Z +55,11,1,2020-02-15T06:59:29Z +56,11,1,2020-02-15T06:59:29Z +57,11,2,2020-02-15T06:59:29Z +58,11,2,2020-02-15T06:59:29Z +59,11,2,2020-02-15T06:59:29Z +60,12,1,2020-02-15T06:59:29Z +61,12,1,2020-02-15T06:59:29Z +62,12,1,2020-02-15T06:59:29Z +63,12,2,2020-02-15T06:59:29Z +64,12,2,2020-02-15T06:59:29Z +65,12,2,2020-02-15T06:59:29Z +66,12,2,2020-02-15T06:59:29Z +67,13,2,2020-02-15T06:59:29Z +68,13,2,2020-02-15T06:59:29Z +69,13,2,2020-02-15T06:59:29Z +70,13,2,2020-02-15T06:59:29Z +71,15,1,2020-02-15T06:59:29Z +72,15,1,2020-02-15T06:59:29Z +73,15,2,2020-02-15T06:59:29Z +74,15,2,2020-02-15T06:59:29Z +75,15,2,2020-02-15T06:59:29Z +76,15,2,2020-02-15T06:59:29Z +77,16,1,2020-02-15T06:59:29Z +78,16,1,2020-02-15T06:59:29Z +79,16,2,2020-02-15T06:59:29Z +80,16,2,2020-02-15T06:59:29Z +81,17,1,2020-02-15T06:59:29Z +82,17,1,2020-02-15T06:59:29Z +83,17,1,2020-02-15T06:59:29Z +84,17,2,2020-02-15T06:59:29Z +85,17,2,2020-02-15T06:59:29Z +86,17,2,2020-02-15T06:59:29Z +87,18,1,2020-02-15T06:59:29Z +88,18,1,2020-02-15T06:59:29Z +89,18,1,2020-02-15T06:59:29Z +90,18,2,2020-02-15T06:59:29Z +91,18,2,2020-02-15T06:59:29Z +92,18,2,2020-02-15T06:59:29Z +93,19,1,2020-02-15T06:59:29Z +94,19,1,2020-02-15T06:59:29Z +95,19,1,2020-02-15T06:59:29Z +96,19,1,2020-02-15T06:59:29Z +97,19,2,2020-02-15T06:59:29Z +98,19,2,2020-02-15T06:59:29Z +99,20,1,2020-02-15T06:59:29Z +100,20,1,2020-02-15T06:59:29Z +101,20,1,2020-02-15T06:59:29Z +102,21,1,2020-02-15T06:59:29Z +103,21,1,2020-02-15T06:59:29Z +104,21,2,2020-02-15T06:59:29Z +105,21,2,2020-02-15T06:59:29Z +106,21,2,2020-02-15T06:59:29Z +107,21,2,2020-02-15T06:59:29Z +108,22,1,2020-02-15T06:59:29Z +109,22,1,2020-02-15T06:59:29Z +110,22,1,2020-02-15T06:59:29Z +111,22,1,2020-02-15T06:59:29Z +112,22,2,2020-02-15T06:59:29Z +113,22,2,2020-02-15T06:59:29Z +114,22,2,2020-02-15T06:59:29Z +115,23,1,2020-02-15T06:59:29Z +116,23,1,2020-02-15T06:59:29Z +117,23,1,2020-02-15T06:59:29Z +118,23,2,2020-02-15T06:59:29Z +119,23,2,2020-02-15T06:59:29Z +120,24,1,2020-02-15T06:59:29Z +121,24,1,2020-02-15T06:59:29Z +122,24,1,2020-02-15T06:59:29Z +123,24,1,2020-02-15T06:59:29Z +124,25,1,2020-02-15T06:59:29Z +125,25,1,2020-02-15T06:59:29Z +126,25,1,2020-02-15T06:59:29Z +127,25,1,2020-02-15T06:59:29Z +128,25,2,2020-02-15T06:59:29Z +129,25,2,2020-02-15T06:59:29Z +130,26,1,2020-02-15T06:59:29Z +131,26,1,2020-02-15T06:59:29Z +132,26,2,2020-02-15T06:59:29Z +133,26,2,2020-02-15T06:59:29Z +134,26,2,2020-02-15T06:59:29Z +135,27,1,2020-02-15T06:59:29Z +136,27,1,2020-02-15T06:59:29Z +137,27,1,2020-02-15T06:59:29Z +138,27,1,2020-02-15T06:59:29Z +139,28,1,2020-02-15T06:59:29Z +140,28,1,2020-02-15T06:59:29Z +141,28,1,2020-02-15T06:59:29Z +142,29,1,2020-02-15T06:59:29Z +143,29,1,2020-02-15T06:59:29Z +144,30,1,2020-02-15T06:59:29Z +145,30,1,2020-02-15T06:59:29Z +146,31,1,2020-02-15T06:59:29Z +147,31,1,2020-02-15T06:59:29Z +148,31,1,2020-02-15T06:59:29Z +149,31,1,2020-02-15T06:59:29Z +150,31,2,2020-02-15T06:59:29Z +151,31,2,2020-02-15T06:59:29Z +152,31,2,2020-02-15T06:59:29Z +153,31,2,2020-02-15T06:59:29Z +154,32,2,2020-02-15T06:59:29Z +155,32,2,2020-02-15T06:59:29Z +156,34,2,2020-02-15T06:59:29Z +157,34,2,2020-02-15T06:59:29Z +158,34,2,2020-02-15T06:59:29Z +159,34,2,2020-02-15T06:59:29Z +160,35,1,2020-02-15T06:59:29Z +161,35,1,2020-02-15T06:59:29Z +162,35,1,2020-02-15T06:59:29Z +163,35,1,2020-02-15T06:59:29Z +164,35,2,2020-02-15T06:59:29Z +165,35,2,2020-02-15T06:59:29Z +166,35,2,2020-02-15T06:59:29Z +167,37,1,2020-02-15T06:59:29Z +168,37,1,2020-02-15T06:59:29Z +169,37,1,2020-02-15T06:59:29Z +170,37,1,2020-02-15T06:59:29Z +171,37,2,2020-02-15T06:59:29Z +172,37,2,2020-02-15T06:59:29Z +173,37,2,2020-02-15T06:59:29Z +174,39,1,2020-02-15T06:59:29Z +175,39,1,2020-02-15T06:59:29Z +176,39,1,2020-02-15T06:59:29Z +177,39,2,2020-02-15T06:59:29Z +178,39,2,2020-02-15T06:59:29Z +179,39,2,2020-02-15T06:59:29Z +180,39,2,2020-02-15T06:59:29Z +181,40,2,2020-02-15T06:59:29Z +182,40,2,2020-02-15T06:59:29Z +183,40,2,2020-02-15T06:59:29Z +184,40,2,2020-02-15T06:59:29Z +185,42,2,2020-02-15T06:59:29Z +186,42,2,2020-02-15T06:59:29Z +187,42,2,2020-02-15T06:59:29Z +188,42,2,2020-02-15T06:59:29Z +189,43,1,2020-02-15T06:59:29Z +190,43,1,2020-02-15T06:59:29Z +191,43,1,2020-02-15T06:59:29Z +192,43,2,2020-02-15T06:59:29Z +193,43,2,2020-02-15T06:59:29Z +194,43,2,2020-02-15T06:59:29Z +195,43,2,2020-02-15T06:59:29Z +196,44,1,2020-02-15T06:59:29Z +197,44,1,2020-02-15T06:59:29Z +198,44,2,2020-02-15T06:59:29Z +199,44,2,2020-02-15T06:59:29Z +200,44,2,2020-02-15T06:59:29Z +201,45,1,2020-02-15T06:59:29Z +202,45,1,2020-02-15T06:59:29Z +203,45,1,2020-02-15T06:59:29Z +204,45,1,2020-02-15T06:59:29Z +205,45,2,2020-02-15T06:59:29Z +206,45,2,2020-02-15T06:59:29Z +207,46,2,2020-02-15T06:59:29Z +208,46,2,2020-02-15T06:59:29Z +209,46,2,2020-02-15T06:59:29Z +210,47,2,2020-02-15T06:59:29Z +211,47,2,2020-02-15T06:59:29Z +212,48,1,2020-02-15T06:59:29Z +213,48,1,2020-02-15T06:59:29Z +214,48,2,2020-02-15T06:59:29Z +215,48,2,2020-02-15T06:59:29Z +216,49,1,2020-02-15T06:59:29Z +217,49,1,2020-02-15T06:59:29Z +218,49,1,2020-02-15T06:59:29Z +219,49,2,2020-02-15T06:59:29Z +220,49,2,2020-02-15T06:59:29Z +221,49,2,2020-02-15T06:59:29Z +222,50,1,2020-02-15T06:59:29Z +223,50,1,2020-02-15T06:59:29Z +224,50,1,2020-02-15T06:59:29Z +225,50,2,2020-02-15T06:59:29Z +226,50,2,2020-02-15T06:59:29Z +227,51,1,2020-02-15T06:59:29Z +228,51,1,2020-02-15T06:59:29Z +229,51,2,2020-02-15T06:59:29Z +230,51,2,2020-02-15T06:59:29Z +231,51,2,2020-02-15T06:59:29Z +232,51,2,2020-02-15T06:59:29Z +233,52,2,2020-02-15T06:59:29Z +234,52,2,2020-02-15T06:59:29Z +235,53,1,2020-02-15T06:59:29Z +236,53,1,2020-02-15T06:59:29Z +237,54,1,2020-02-15T06:59:29Z +238,54,1,2020-02-15T06:59:29Z +239,54,1,2020-02-15T06:59:29Z +240,54,2,2020-02-15T06:59:29Z +241,54,2,2020-02-15T06:59:29Z +242,55,1,2020-02-15T06:59:29Z +243,55,1,2020-02-15T06:59:29Z +244,55,1,2020-02-15T06:59:29Z +245,55,1,2020-02-15T06:59:29Z +246,55,2,2020-02-15T06:59:29Z +247,55,2,2020-02-15T06:59:29Z +248,56,1,2020-02-15T06:59:29Z +249,56,1,2020-02-15T06:59:29Z +250,56,1,2020-02-15T06:59:29Z +251,56,2,2020-02-15T06:59:29Z +252,56,2,2020-02-15T06:59:29Z +253,57,1,2020-02-15T06:59:29Z +254,57,1,2020-02-15T06:59:29Z +255,57,1,2020-02-15T06:59:29Z +256,57,1,2020-02-15T06:59:29Z +257,57,2,2020-02-15T06:59:29Z +258,57,2,2020-02-15T06:59:29Z +259,57,2,2020-02-15T06:59:29Z +260,58,2,2020-02-15T06:59:29Z +261,58,2,2020-02-15T06:59:29Z +262,58,2,2020-02-15T06:59:29Z +263,58,2,2020-02-15T06:59:29Z +264,59,1,2020-02-15T06:59:29Z +265,59,1,2020-02-15T06:59:29Z +266,59,1,2020-02-15T06:59:29Z +267,59,2,2020-02-15T06:59:29Z +268,59,2,2020-02-15T06:59:29Z +269,60,1,2020-02-15T06:59:29Z +270,60,1,2020-02-15T06:59:29Z +271,60,1,2020-02-15T06:59:29Z +272,61,1,2020-02-15T06:59:29Z +273,61,1,2020-02-15T06:59:29Z +274,61,1,2020-02-15T06:59:29Z +275,61,1,2020-02-15T06:59:29Z +276,61,2,2020-02-15T06:59:29Z +277,61,2,2020-02-15T06:59:29Z +278,62,2,2020-02-15T06:59:29Z +279,62,2,2020-02-15T06:59:29Z +280,63,1,2020-02-15T06:59:29Z +281,63,1,2020-02-15T06:59:29Z +282,63,2,2020-02-15T06:59:29Z +283,63,2,2020-02-15T06:59:29Z +284,64,2,2020-02-15T06:59:29Z +285,64,2,2020-02-15T06:59:29Z +286,64,2,2020-02-15T06:59:29Z +287,65,2,2020-02-15T06:59:29Z +288,65,2,2020-02-15T06:59:29Z +289,65,2,2020-02-15T06:59:29Z +290,65,2,2020-02-15T06:59:29Z +291,66,1,2020-02-15T06:59:29Z +292,66,1,2020-02-15T06:59:29Z +293,66,1,2020-02-15T06:59:29Z +294,67,1,2020-02-15T06:59:29Z +295,67,1,2020-02-15T06:59:29Z +296,67,2,2020-02-15T06:59:29Z +297,67,2,2020-02-15T06:59:29Z +298,67,2,2020-02-15T06:59:29Z +299,67,2,2020-02-15T06:59:29Z +300,68,1,2020-02-15T06:59:29Z +301,68,1,2020-02-15T06:59:29Z +302,68,2,2020-02-15T06:59:29Z +303,68,2,2020-02-15T06:59:29Z +304,69,1,2020-02-15T06:59:29Z +305,69,1,2020-02-15T06:59:29Z +306,69,1,2020-02-15T06:59:29Z +307,69,1,2020-02-15T06:59:29Z +308,69,2,2020-02-15T06:59:29Z +309,69,2,2020-02-15T06:59:29Z +310,69,2,2020-02-15T06:59:29Z +311,69,2,2020-02-15T06:59:29Z +312,70,1,2020-02-15T06:59:29Z +313,70,1,2020-02-15T06:59:29Z +314,70,2,2020-02-15T06:59:29Z +315,70,2,2020-02-15T06:59:29Z +316,71,2,2020-02-15T06:59:29Z +317,71,2,2020-02-15T06:59:29Z +318,71,2,2020-02-15T06:59:29Z +319,71,2,2020-02-15T06:59:29Z +320,72,1,2020-02-15T06:59:29Z +321,72,1,2020-02-15T06:59:29Z +322,72,1,2020-02-15T06:59:29Z +323,72,1,2020-02-15T06:59:29Z +324,72,2,2020-02-15T06:59:29Z +325,72,2,2020-02-15T06:59:29Z +326,73,1,2020-02-15T06:59:29Z +327,73,1,2020-02-15T06:59:29Z +328,73,1,2020-02-15T06:59:29Z +329,73,1,2020-02-15T06:59:29Z +330,73,2,2020-02-15T06:59:29Z +331,73,2,2020-02-15T06:59:29Z +332,73,2,2020-02-15T06:59:29Z +333,73,2,2020-02-15T06:59:29Z +334,74,1,2020-02-15T06:59:29Z +335,74,1,2020-02-15T06:59:29Z +336,74,1,2020-02-15T06:59:29Z +337,74,2,2020-02-15T06:59:29Z +338,74,2,2020-02-15T06:59:29Z +339,75,2,2020-02-15T06:59:29Z +340,75,2,2020-02-15T06:59:29Z +341,75,2,2020-02-15T06:59:29Z +342,76,1,2020-02-15T06:59:29Z +343,76,1,2020-02-15T06:59:29Z +344,76,1,2020-02-15T06:59:29Z +345,77,1,2020-02-15T06:59:29Z +346,77,1,2020-02-15T06:59:29Z +347,77,1,2020-02-15T06:59:29Z +348,77,1,2020-02-15T06:59:29Z +349,77,2,2020-02-15T06:59:29Z +350,77,2,2020-02-15T06:59:29Z +351,78,1,2020-02-15T06:59:29Z +352,78,1,2020-02-15T06:59:29Z +353,78,1,2020-02-15T06:59:29Z +354,78,2,2020-02-15T06:59:29Z +355,78,2,2020-02-15T06:59:29Z +356,78,2,2020-02-15T06:59:29Z +357,78,2,2020-02-15T06:59:29Z +358,79,1,2020-02-15T06:59:29Z +359,79,1,2020-02-15T06:59:29Z +360,79,1,2020-02-15T06:59:29Z +361,79,2,2020-02-15T06:59:29Z +362,79,2,2020-02-15T06:59:29Z +363,79,2,2020-02-15T06:59:29Z +364,80,1,2020-02-15T06:59:29Z +365,80,1,2020-02-15T06:59:29Z +366,80,1,2020-02-15T06:59:29Z +367,80,1,2020-02-15T06:59:29Z +368,81,1,2020-02-15T06:59:29Z +369,81,1,2020-02-15T06:59:29Z +370,81,1,2020-02-15T06:59:29Z +371,81,1,2020-02-15T06:59:29Z +372,82,1,2020-02-15T06:59:29Z +373,82,1,2020-02-15T06:59:29Z +374,83,1,2020-02-15T06:59:29Z +375,83,1,2020-02-15T06:59:29Z +376,83,1,2020-02-15T06:59:29Z +377,83,2,2020-02-15T06:59:29Z +378,83,2,2020-02-15T06:59:29Z +379,84,1,2020-02-15T06:59:29Z +380,84,1,2020-02-15T06:59:29Z +381,84,1,2020-02-15T06:59:29Z +382,84,1,2020-02-15T06:59:29Z +383,85,2,2020-02-15T06:59:29Z +384,85,2,2020-02-15T06:59:29Z +385,85,2,2020-02-15T06:59:29Z +386,85,2,2020-02-15T06:59:29Z +387,86,1,2020-02-15T06:59:29Z +388,86,1,2020-02-15T06:59:29Z +389,86,1,2020-02-15T06:59:29Z +390,86,1,2020-02-15T06:59:29Z +391,86,2,2020-02-15T06:59:29Z +392,86,2,2020-02-15T06:59:29Z +393,86,2,2020-02-15T06:59:29Z +394,86,2,2020-02-15T06:59:29Z +395,88,2,2020-02-15T06:59:29Z +396,88,2,2020-02-15T06:59:29Z +397,88,2,2020-02-15T06:59:29Z +398,88,2,2020-02-15T06:59:29Z +399,89,1,2020-02-15T06:59:29Z +400,89,1,2020-02-15T06:59:29Z +401,89,1,2020-02-15T06:59:29Z +402,89,2,2020-02-15T06:59:29Z +403,89,2,2020-02-15T06:59:29Z +404,89,2,2020-02-15T06:59:29Z +405,90,1,2020-02-15T06:59:29Z +406,90,1,2020-02-15T06:59:29Z +407,90,1,2020-02-15T06:59:29Z +408,90,2,2020-02-15T06:59:29Z +409,90,2,2020-02-15T06:59:29Z +410,90,2,2020-02-15T06:59:29Z +411,91,1,2020-02-15T06:59:29Z +412,91,1,2020-02-15T06:59:29Z +413,91,1,2020-02-15T06:59:29Z +414,91,1,2020-02-15T06:59:29Z +415,91,2,2020-02-15T06:59:29Z +416,91,2,2020-02-15T06:59:29Z +417,91,2,2020-02-15T06:59:29Z +418,91,2,2020-02-15T06:59:29Z +419,92,1,2020-02-15T06:59:29Z +420,92,1,2020-02-15T06:59:29Z +421,92,2,2020-02-15T06:59:29Z +422,92,2,2020-02-15T06:59:29Z +423,93,2,2020-02-15T06:59:29Z +424,93,2,2020-02-15T06:59:29Z +425,93,2,2020-02-15T06:59:29Z +426,94,1,2020-02-15T06:59:29Z +427,94,1,2020-02-15T06:59:29Z +428,95,1,2020-02-15T06:59:29Z +429,95,1,2020-02-15T06:59:29Z +430,95,2,2020-02-15T06:59:29Z +431,95,2,2020-02-15T06:59:29Z +432,95,2,2020-02-15T06:59:29Z +433,96,1,2020-02-15T06:59:29Z +434,96,1,2020-02-15T06:59:29Z +435,96,1,2020-02-15T06:59:29Z +436,97,1,2020-02-15T06:59:29Z +437,97,1,2020-02-15T06:59:29Z +438,97,1,2020-02-15T06:59:29Z +439,97,1,2020-02-15T06:59:29Z +440,97,2,2020-02-15T06:59:29Z +441,97,2,2020-02-15T06:59:29Z +442,98,1,2020-02-15T06:59:29Z +443,98,1,2020-02-15T06:59:29Z +444,98,1,2020-02-15T06:59:29Z +445,99,1,2020-02-15T06:59:29Z +446,99,1,2020-02-15T06:59:29Z +447,99,1,2020-02-15T06:59:29Z +448,99,2,2020-02-15T06:59:29Z +449,99,2,2020-02-15T06:59:29Z +450,99,2,2020-02-15T06:59:29Z +451,100,1,2020-02-15T06:59:29Z +452,100,1,2020-02-15T06:59:29Z +453,100,1,2020-02-15T06:59:29Z +454,100,1,2020-02-15T06:59:29Z +455,100,2,2020-02-15T06:59:29Z +456,100,2,2020-02-15T06:59:29Z +457,101,1,2020-02-15T06:59:29Z +458,101,1,2020-02-15T06:59:29Z +459,101,1,2020-02-15T06:59:29Z +460,101,1,2020-02-15T06:59:29Z +461,101,2,2020-02-15T06:59:29Z +462,101,2,2020-02-15T06:59:29Z +463,102,2,2020-02-15T06:59:29Z +464,102,2,2020-02-15T06:59:29Z +465,103,1,2020-02-15T06:59:29Z +466,103,1,2020-02-15T06:59:29Z +467,103,1,2020-02-15T06:59:29Z +468,103,1,2020-02-15T06:59:29Z +469,103,2,2020-02-15T06:59:29Z +470,103,2,2020-02-15T06:59:29Z +471,103,2,2020-02-15T06:59:29Z +472,103,2,2020-02-15T06:59:29Z +473,104,2,2020-02-15T06:59:29Z +474,104,2,2020-02-15T06:59:29Z +475,104,2,2020-02-15T06:59:29Z +476,105,1,2020-02-15T06:59:29Z +477,105,1,2020-02-15T06:59:29Z +478,105,2,2020-02-15T06:59:29Z +479,105,2,2020-02-15T06:59:29Z +480,105,2,2020-02-15T06:59:29Z +481,106,1,2020-02-15T06:59:29Z +482,106,1,2020-02-15T06:59:29Z +483,107,2,2020-02-15T06:59:29Z +484,107,2,2020-02-15T06:59:29Z +485,109,1,2020-02-15T06:59:29Z +486,109,1,2020-02-15T06:59:29Z +487,109,1,2020-02-15T06:59:29Z +488,109,1,2020-02-15T06:59:29Z +489,109,2,2020-02-15T06:59:29Z +490,109,2,2020-02-15T06:59:29Z +491,109,2,2020-02-15T06:59:29Z +492,109,2,2020-02-15T06:59:29Z +493,110,1,2020-02-15T06:59:29Z +494,110,1,2020-02-15T06:59:29Z +495,110,1,2020-02-15T06:59:29Z +496,110,1,2020-02-15T06:59:29Z +497,111,2,2020-02-15T06:59:29Z +498,111,2,2020-02-15T06:59:29Z +499,111,2,2020-02-15T06:59:29Z +500,111,2,2020-02-15T06:59:29Z +501,112,1,2020-02-15T06:59:29Z +502,112,1,2020-02-15T06:59:29Z +503,112,1,2020-02-15T06:59:29Z +504,112,1,2020-02-15T06:59:29Z +505,112,2,2020-02-15T06:59:29Z +506,112,2,2020-02-15T06:59:29Z +507,112,2,2020-02-15T06:59:29Z +508,113,2,2020-02-15T06:59:29Z +509,113,2,2020-02-15T06:59:29Z +510,113,2,2020-02-15T06:59:29Z +511,113,2,2020-02-15T06:59:29Z +512,114,1,2020-02-15T06:59:29Z +513,114,1,2020-02-15T06:59:29Z +514,114,1,2020-02-15T06:59:29Z +515,114,1,2020-02-15T06:59:29Z +516,114,2,2020-02-15T06:59:29Z +517,114,2,2020-02-15T06:59:29Z +518,114,2,2020-02-15T06:59:29Z +519,115,1,2020-02-15T06:59:29Z +520,115,1,2020-02-15T06:59:29Z +521,115,1,2020-02-15T06:59:29Z +522,115,2,2020-02-15T06:59:29Z +523,115,2,2020-02-15T06:59:29Z +524,115,2,2020-02-15T06:59:29Z +525,115,2,2020-02-15T06:59:29Z +526,116,1,2020-02-15T06:59:29Z +527,116,1,2020-02-15T06:59:29Z +528,116,2,2020-02-15T06:59:29Z +529,116,2,2020-02-15T06:59:29Z +530,116,2,2020-02-15T06:59:29Z +531,116,2,2020-02-15T06:59:29Z +532,117,1,2020-02-15T06:59:29Z +533,117,1,2020-02-15T06:59:29Z +534,117,1,2020-02-15T06:59:29Z +535,117,1,2020-02-15T06:59:29Z +536,117,2,2020-02-15T06:59:29Z +537,117,2,2020-02-15T06:59:29Z +538,118,1,2020-02-15T06:59:29Z +539,118,1,2020-02-15T06:59:29Z +540,118,1,2020-02-15T06:59:29Z +541,118,1,2020-02-15T06:59:29Z +542,118,2,2020-02-15T06:59:29Z +543,118,2,2020-02-15T06:59:29Z +544,119,1,2020-02-15T06:59:29Z +545,119,1,2020-02-15T06:59:29Z +546,119,1,2020-02-15T06:59:29Z +547,119,2,2020-02-15T06:59:29Z +548,119,2,2020-02-15T06:59:29Z +549,119,2,2020-02-15T06:59:29Z +550,119,2,2020-02-15T06:59:29Z +551,120,1,2020-02-15T06:59:29Z +552,120,1,2020-02-15T06:59:29Z +553,120,1,2020-02-15T06:59:29Z +554,121,1,2020-02-15T06:59:29Z +555,121,1,2020-02-15T06:59:29Z +556,121,1,2020-02-15T06:59:29Z +557,121,2,2020-02-15T06:59:29Z +558,121,2,2020-02-15T06:59:29Z +559,121,2,2020-02-15T06:59:29Z +560,122,1,2020-02-15T06:59:29Z +561,122,1,2020-02-15T06:59:29Z +562,122,1,2020-02-15T06:59:29Z +563,122,1,2020-02-15T06:59:29Z +564,122,2,2020-02-15T06:59:29Z +565,122,2,2020-02-15T06:59:29Z +566,122,2,2020-02-15T06:59:29Z +567,123,1,2020-02-15T06:59:29Z +568,123,1,2020-02-15T06:59:29Z +569,123,2,2020-02-15T06:59:29Z +570,123,2,2020-02-15T06:59:29Z +571,123,2,2020-02-15T06:59:29Z +572,124,2,2020-02-15T06:59:29Z +573,124,2,2020-02-15T06:59:29Z +574,124,2,2020-02-15T06:59:29Z +575,125,2,2020-02-15T06:59:29Z +576,125,2,2020-02-15T06:59:29Z +577,126,2,2020-02-15T06:59:29Z +578,126,2,2020-02-15T06:59:29Z +579,126,2,2020-02-15T06:59:29Z +580,127,1,2020-02-15T06:59:29Z +581,127,1,2020-02-15T06:59:29Z +582,127,1,2020-02-15T06:59:29Z +583,127,1,2020-02-15T06:59:29Z +584,127,2,2020-02-15T06:59:29Z +585,127,2,2020-02-15T06:59:29Z +586,127,2,2020-02-15T06:59:29Z +587,127,2,2020-02-15T06:59:29Z +588,129,1,2020-02-15T06:59:29Z +589,129,1,2020-02-15T06:59:29Z +590,129,1,2020-02-15T06:59:29Z +591,129,2,2020-02-15T06:59:29Z +592,129,2,2020-02-15T06:59:29Z +593,129,2,2020-02-15T06:59:29Z +594,130,1,2020-02-15T06:59:29Z +595,130,1,2020-02-15T06:59:29Z +596,130,2,2020-02-15T06:59:29Z +597,130,2,2020-02-15T06:59:29Z +598,130,2,2020-02-15T06:59:29Z +599,130,2,2020-02-15T06:59:29Z +600,131,1,2020-02-15T06:59:29Z +601,131,1,2020-02-15T06:59:29Z +602,131,1,2020-02-15T06:59:29Z +603,131,1,2020-02-15T06:59:29Z +604,131,2,2020-02-15T06:59:29Z +605,131,2,2020-02-15T06:59:29Z +606,132,1,2020-02-15T06:59:29Z +607,132,1,2020-02-15T06:59:29Z +608,132,1,2020-02-15T06:59:29Z +609,132,1,2020-02-15T06:59:29Z +610,132,2,2020-02-15T06:59:29Z +611,132,2,2020-02-15T06:59:29Z +612,133,1,2020-02-15T06:59:29Z +613,133,1,2020-02-15T06:59:29Z +614,133,2,2020-02-15T06:59:29Z +615,133,2,2020-02-15T06:59:29Z +616,134,2,2020-02-15T06:59:29Z +617,134,2,2020-02-15T06:59:29Z +618,134,2,2020-02-15T06:59:29Z +619,135,1,2020-02-15T06:59:29Z +620,135,1,2020-02-15T06:59:29Z +621,135,1,2020-02-15T06:59:29Z +622,135,2,2020-02-15T06:59:29Z +623,135,2,2020-02-15T06:59:29Z +624,135,2,2020-02-15T06:59:29Z +625,135,2,2020-02-15T06:59:29Z +626,136,1,2020-02-15T06:59:29Z +627,136,1,2020-02-15T06:59:29Z +628,136,1,2020-02-15T06:59:29Z +629,137,2,2020-02-15T06:59:29Z +630,137,2,2020-02-15T06:59:29Z +631,137,2,2020-02-15T06:59:29Z +632,137,2,2020-02-15T06:59:29Z +633,138,1,2020-02-15T06:59:29Z +634,138,1,2020-02-15T06:59:29Z +635,138,2,2020-02-15T06:59:29Z +636,138,2,2020-02-15T06:59:29Z +637,138,2,2020-02-15T06:59:29Z +638,139,1,2020-02-15T06:59:29Z +639,139,1,2020-02-15T06:59:29Z +640,139,1,2020-02-15T06:59:29Z +641,139,1,2020-02-15T06:59:29Z +642,139,2,2020-02-15T06:59:29Z +643,139,2,2020-02-15T06:59:29Z +644,140,1,2020-02-15T06:59:29Z +645,140,1,2020-02-15T06:59:29Z +646,140,2,2020-02-15T06:59:29Z +647,140,2,2020-02-15T06:59:29Z +648,140,2,2020-02-15T06:59:29Z +649,141,1,2020-02-15T06:59:29Z +650,141,1,2020-02-15T06:59:29Z +651,141,1,2020-02-15T06:59:29Z +652,141,2,2020-02-15T06:59:29Z +653,141,2,2020-02-15T06:59:29Z +654,142,1,2020-02-15T06:59:29Z +655,142,1,2020-02-15T06:59:29Z +656,142,1,2020-02-15T06:59:29Z +657,142,2,2020-02-15T06:59:29Z +658,142,2,2020-02-15T06:59:29Z +659,143,1,2020-02-15T06:59:29Z +660,143,1,2020-02-15T06:59:29Z +661,143,1,2020-02-15T06:59:29Z +662,143,1,2020-02-15T06:59:29Z +663,143,2,2020-02-15T06:59:29Z +664,143,2,2020-02-15T06:59:29Z +665,143,2,2020-02-15T06:59:29Z +666,145,2,2020-02-15T06:59:29Z +667,145,2,2020-02-15T06:59:29Z +668,145,2,2020-02-15T06:59:29Z +669,146,1,2020-02-15T06:59:29Z +670,146,1,2020-02-15T06:59:29Z +671,146,1,2020-02-15T06:59:29Z +672,147,1,2020-02-15T06:59:29Z +673,147,1,2020-02-15T06:59:29Z +674,147,1,2020-02-15T06:59:29Z +675,147,2,2020-02-15T06:59:29Z +676,147,2,2020-02-15T06:59:29Z +677,147,2,2020-02-15T06:59:29Z +678,149,1,2020-02-15T06:59:29Z +679,149,1,2020-02-15T06:59:29Z +680,149,1,2020-02-15T06:59:29Z +681,149,2,2020-02-15T06:59:29Z +682,149,2,2020-02-15T06:59:29Z +683,149,2,2020-02-15T06:59:29Z +684,150,1,2020-02-15T06:59:29Z +685,150,1,2020-02-15T06:59:29Z +686,150,2,2020-02-15T06:59:29Z +687,150,2,2020-02-15T06:59:29Z +688,150,2,2020-02-15T06:59:29Z +689,150,2,2020-02-15T06:59:29Z +690,151,1,2020-02-15T06:59:29Z +691,151,1,2020-02-15T06:59:29Z +692,151,2,2020-02-15T06:59:29Z +693,151,2,2020-02-15T06:59:29Z +694,152,1,2020-02-15T06:59:29Z +695,152,1,2020-02-15T06:59:29Z +696,152,1,2020-02-15T06:59:29Z +697,152,1,2020-02-15T06:59:29Z +698,153,1,2020-02-15T06:59:29Z +699,153,1,2020-02-15T06:59:29Z +700,153,1,2020-02-15T06:59:29Z +701,153,1,2020-02-15T06:59:29Z +702,154,1,2020-02-15T06:59:29Z +703,154,1,2020-02-15T06:59:29Z +704,154,1,2020-02-15T06:59:29Z +705,154,2,2020-02-15T06:59:29Z +706,154,2,2020-02-15T06:59:29Z +707,154,2,2020-02-15T06:59:29Z +708,154,2,2020-02-15T06:59:29Z +709,155,1,2020-02-15T06:59:29Z +710,155,1,2020-02-15T06:59:29Z +711,155,2,2020-02-15T06:59:29Z +712,155,2,2020-02-15T06:59:29Z +713,155,2,2020-02-15T06:59:29Z +714,156,2,2020-02-15T06:59:29Z +715,156,2,2020-02-15T06:59:29Z +716,157,2,2020-02-15T06:59:29Z +717,157,2,2020-02-15T06:59:29Z +718,157,2,2020-02-15T06:59:29Z +719,158,1,2020-02-15T06:59:29Z +720,158,1,2020-02-15T06:59:29Z +721,158,2,2020-02-15T06:59:29Z +722,158,2,2020-02-15T06:59:29Z +723,158,2,2020-02-15T06:59:29Z +724,159,1,2020-02-15T06:59:29Z +725,159,1,2020-02-15T06:59:29Z +726,159,1,2020-02-15T06:59:29Z +727,159,1,2020-02-15T06:59:29Z +728,159,2,2020-02-15T06:59:29Z +729,159,2,2020-02-15T06:59:29Z +730,159,2,2020-02-15T06:59:29Z +731,160,1,2020-02-15T06:59:29Z +732,160,1,2020-02-15T06:59:29Z +733,160,2,2020-02-15T06:59:29Z +734,160,2,2020-02-15T06:59:29Z +735,160,2,2020-02-15T06:59:29Z +736,161,1,2020-02-15T06:59:29Z +737,161,1,2020-02-15T06:59:29Z +738,162,1,2020-02-15T06:59:29Z +739,162,1,2020-02-15T06:59:29Z +740,162,1,2020-02-15T06:59:29Z +741,162,2,2020-02-15T06:59:29Z +742,162,2,2020-02-15T06:59:29Z +743,162,2,2020-02-15T06:59:29Z +744,162,2,2020-02-15T06:59:29Z +745,163,2,2020-02-15T06:59:29Z +746,163,2,2020-02-15T06:59:29Z +747,163,2,2020-02-15T06:59:29Z +748,164,1,2020-02-15T06:59:29Z +749,164,1,2020-02-15T06:59:29Z +750,164,2,2020-02-15T06:59:29Z +751,164,2,2020-02-15T06:59:29Z +752,164,2,2020-02-15T06:59:29Z +753,165,1,2020-02-15T06:59:29Z +754,165,1,2020-02-15T06:59:29Z +755,165,1,2020-02-15T06:59:29Z +756,165,2,2020-02-15T06:59:29Z +757,165,2,2020-02-15T06:59:29Z +758,166,1,2020-02-15T06:59:29Z +759,166,1,2020-02-15T06:59:29Z +760,166,1,2020-02-15T06:59:29Z +761,166,1,2020-02-15T06:59:29Z +762,166,2,2020-02-15T06:59:29Z +763,166,2,2020-02-15T06:59:29Z +764,167,1,2020-02-15T06:59:29Z +765,167,1,2020-02-15T06:59:29Z +766,167,1,2020-02-15T06:59:29Z +767,167,1,2020-02-15T06:59:29Z +768,167,2,2020-02-15T06:59:29Z +769,167,2,2020-02-15T06:59:29Z +770,167,2,2020-02-15T06:59:29Z +771,168,1,2020-02-15T06:59:30Z +772,168,1,2020-02-15T06:59:30Z +773,169,1,2020-02-15T06:59:30Z +774,169,1,2020-02-15T06:59:30Z +775,169,2,2020-02-15T06:59:30Z +776,169,2,2020-02-15T06:59:30Z +777,170,1,2020-02-15T06:59:30Z +778,170,1,2020-02-15T06:59:30Z +779,170,2,2020-02-15T06:59:30Z +780,170,2,2020-02-15T06:59:30Z +781,170,2,2020-02-15T06:59:30Z +782,170,2,2020-02-15T06:59:30Z +783,172,1,2020-02-15T06:59:30Z +784,172,1,2020-02-15T06:59:30Z +785,172,1,2020-02-15T06:59:30Z +786,172,1,2020-02-15T06:59:30Z +787,172,2,2020-02-15T06:59:30Z +788,172,2,2020-02-15T06:59:30Z +789,172,2,2020-02-15T06:59:30Z +790,173,1,2020-02-15T06:59:30Z +791,173,1,2020-02-15T06:59:30Z +792,173,1,2020-02-15T06:59:30Z +793,173,2,2020-02-15T06:59:30Z +794,173,2,2020-02-15T06:59:30Z +795,174,1,2020-02-15T06:59:30Z +796,174,1,2020-02-15T06:59:30Z +797,174,1,2020-02-15T06:59:30Z +798,174,1,2020-02-15T06:59:30Z +799,174,2,2020-02-15T06:59:30Z +800,174,2,2020-02-15T06:59:30Z +801,174,2,2020-02-15T06:59:30Z +802,174,2,2020-02-15T06:59:30Z +803,175,1,2020-02-15T06:59:30Z +804,175,1,2020-02-15T06:59:30Z +805,175,2,2020-02-15T06:59:30Z +806,175,2,2020-02-15T06:59:30Z +807,175,2,2020-02-15T06:59:30Z +808,176,1,2020-02-15T06:59:30Z +809,176,1,2020-02-15T06:59:30Z +810,176,2,2020-02-15T06:59:30Z +811,176,2,2020-02-15T06:59:30Z +812,176,2,2020-02-15T06:59:30Z +813,176,2,2020-02-15T06:59:30Z +814,177,2,2020-02-15T06:59:30Z +815,177,2,2020-02-15T06:59:30Z +816,177,2,2020-02-15T06:59:30Z +817,178,1,2020-02-15T06:59:30Z +818,178,1,2020-02-15T06:59:30Z +819,179,1,2020-02-15T06:59:30Z +820,179,1,2020-02-15T06:59:30Z +821,179,1,2020-02-15T06:59:30Z +822,179,1,2020-02-15T06:59:30Z +823,180,2,2020-02-15T06:59:30Z +824,180,2,2020-02-15T06:59:30Z +825,181,1,2020-02-15T06:59:30Z +826,181,1,2020-02-15T06:59:30Z +827,181,1,2020-02-15T06:59:30Z +828,181,2,2020-02-15T06:59:30Z +829,181,2,2020-02-15T06:59:30Z +830,181,2,2020-02-15T06:59:30Z +831,181,2,2020-02-15T06:59:30Z +832,182,1,2020-02-15T06:59:30Z +833,182,1,2020-02-15T06:59:30Z +834,183,1,2020-02-15T06:59:30Z +835,183,1,2020-02-15T06:59:30Z +836,183,1,2020-02-15T06:59:30Z +837,183,2,2020-02-15T06:59:30Z +838,183,2,2020-02-15T06:59:30Z +839,183,2,2020-02-15T06:59:30Z +840,184,1,2020-02-15T06:59:30Z +841,184,1,2020-02-15T06:59:30Z +842,184,2,2020-02-15T06:59:30Z +843,184,2,2020-02-15T06:59:30Z +844,184,2,2020-02-15T06:59:30Z +845,185,1,2020-02-15T06:59:30Z +846,185,1,2020-02-15T06:59:30Z +847,186,1,2020-02-15T06:59:30Z +848,186,1,2020-02-15T06:59:30Z +849,186,2,2020-02-15T06:59:30Z +850,186,2,2020-02-15T06:59:30Z +851,187,2,2020-02-15T06:59:30Z +852,187,2,2020-02-15T06:59:30Z +853,187,2,2020-02-15T06:59:30Z +854,188,1,2020-02-15T06:59:30Z +855,188,1,2020-02-15T06:59:30Z +856,188,1,2020-02-15T06:59:30Z +857,189,1,2020-02-15T06:59:30Z +858,189,1,2020-02-15T06:59:30Z +859,189,2,2020-02-15T06:59:30Z +860,189,2,2020-02-15T06:59:30Z +861,189,2,2020-02-15T06:59:30Z +862,189,2,2020-02-15T06:59:30Z +863,190,2,2020-02-15T06:59:30Z +864,190,2,2020-02-15T06:59:30Z +865,190,2,2020-02-15T06:59:30Z +866,190,2,2020-02-15T06:59:30Z +867,191,1,2020-02-15T06:59:30Z +868,191,1,2020-02-15T06:59:30Z +869,191,1,2020-02-15T06:59:30Z +870,191,2,2020-02-15T06:59:30Z +871,191,2,2020-02-15T06:59:30Z +872,191,2,2020-02-15T06:59:30Z +873,193,1,2020-02-15T06:59:30Z +874,193,1,2020-02-15T06:59:30Z +875,193,1,2020-02-15T06:59:30Z +876,193,1,2020-02-15T06:59:30Z +877,193,2,2020-02-15T06:59:30Z +878,193,2,2020-02-15T06:59:30Z +879,193,2,2020-02-15T06:59:30Z +880,193,2,2020-02-15T06:59:30Z +881,194,1,2020-02-15T06:59:30Z +882,194,1,2020-02-15T06:59:30Z +883,194,2,2020-02-15T06:59:30Z +884,194,2,2020-02-15T06:59:30Z +885,196,1,2020-02-15T06:59:30Z +886,196,1,2020-02-15T06:59:30Z +887,197,1,2020-02-15T06:59:30Z +888,197,1,2020-02-15T06:59:30Z +889,199,1,2020-02-15T06:59:30Z +890,199,1,2020-02-15T06:59:30Z +891,199,1,2020-02-15T06:59:30Z +892,199,1,2020-02-15T06:59:30Z +893,199,2,2020-02-15T06:59:30Z +894,199,2,2020-02-15T06:59:30Z +895,199,2,2020-02-15T06:59:30Z +896,199,2,2020-02-15T06:59:30Z +897,200,1,2020-02-15T06:59:30Z +898,200,1,2020-02-15T06:59:30Z +899,200,1,2020-02-15T06:59:30Z +900,200,1,2020-02-15T06:59:30Z +901,200,2,2020-02-15T06:59:30Z +902,200,2,2020-02-15T06:59:30Z +903,200,2,2020-02-15T06:59:30Z +904,200,2,2020-02-15T06:59:30Z +905,201,1,2020-02-15T06:59:30Z +906,201,1,2020-02-15T06:59:30Z +907,201,1,2020-02-15T06:59:30Z +908,201,1,2020-02-15T06:59:30Z +909,202,1,2020-02-15T06:59:30Z +910,202,1,2020-02-15T06:59:30Z +911,202,1,2020-02-15T06:59:30Z +912,203,2,2020-02-15T06:59:30Z +913,203,2,2020-02-15T06:59:30Z +914,203,2,2020-02-15T06:59:30Z +915,203,2,2020-02-15T06:59:30Z +916,204,1,2020-02-15T06:59:30Z +917,204,1,2020-02-15T06:59:30Z +918,204,1,2020-02-15T06:59:30Z +919,204,1,2020-02-15T06:59:30Z +920,204,2,2020-02-15T06:59:30Z +921,204,2,2020-02-15T06:59:30Z +922,205,1,2020-02-15T06:59:30Z +923,205,1,2020-02-15T06:59:30Z +924,205,1,2020-02-15T06:59:30Z +925,205,1,2020-02-15T06:59:30Z +926,206,1,2020-02-15T06:59:30Z +927,206,1,2020-02-15T06:59:30Z +928,206,1,2020-02-15T06:59:30Z +929,206,1,2020-02-15T06:59:30Z +930,206,2,2020-02-15T06:59:30Z +931,206,2,2020-02-15T06:59:30Z +932,206,2,2020-02-15T06:59:30Z +933,206,2,2020-02-15T06:59:30Z +934,207,1,2020-02-15T06:59:30Z +935,207,1,2020-02-15T06:59:30Z +936,207,1,2020-02-15T06:59:30Z +937,207,1,2020-02-15T06:59:30Z +938,208,1,2020-02-15T06:59:30Z +939,208,1,2020-02-15T06:59:30Z +940,208,1,2020-02-15T06:59:30Z +941,209,1,2020-02-15T06:59:30Z +942,209,1,2020-02-15T06:59:30Z +943,209,1,2020-02-15T06:59:30Z +944,209,1,2020-02-15T06:59:30Z +945,210,2,2020-02-15T06:59:30Z +946,210,2,2020-02-15T06:59:30Z +947,210,2,2020-02-15T06:59:30Z +948,211,1,2020-02-15T06:59:30Z +949,211,1,2020-02-15T06:59:30Z +950,212,1,2020-02-15T06:59:30Z +951,212,1,2020-02-15T06:59:30Z +952,212,1,2020-02-15T06:59:30Z +953,212,2,2020-02-15T06:59:30Z +954,212,2,2020-02-15T06:59:30Z +955,213,1,2020-02-15T06:59:30Z +956,213,1,2020-02-15T06:59:30Z +957,213,1,2020-02-15T06:59:30Z +958,213,1,2020-02-15T06:59:30Z +959,214,2,2020-02-15T06:59:30Z +960,214,2,2020-02-15T06:59:30Z +961,214,2,2020-02-15T06:59:30Z +962,214,2,2020-02-15T06:59:30Z +963,215,1,2020-02-15T06:59:30Z +964,215,1,2020-02-15T06:59:30Z +965,215,1,2020-02-15T06:59:30Z +966,215,2,2020-02-15T06:59:30Z +967,215,2,2020-02-15T06:59:30Z +968,215,2,2020-02-15T06:59:30Z +969,216,1,2020-02-15T06:59:30Z +970,216,1,2020-02-15T06:59:30Z +971,216,2,2020-02-15T06:59:30Z +972,216,2,2020-02-15T06:59:30Z +973,216,2,2020-02-15T06:59:30Z +974,218,1,2020-02-15T06:59:30Z +975,218,1,2020-02-15T06:59:30Z +976,218,1,2020-02-15T06:59:30Z +977,218,1,2020-02-15T06:59:30Z +978,218,2,2020-02-15T06:59:30Z +979,218,2,2020-02-15T06:59:30Z +980,218,2,2020-02-15T06:59:30Z +981,219,1,2020-02-15T06:59:30Z +982,219,1,2020-02-15T06:59:30Z +983,219,1,2020-02-15T06:59:30Z +984,219,1,2020-02-15T06:59:30Z +985,220,1,2020-02-15T06:59:30Z +986,220,1,2020-02-15T06:59:30Z +987,220,1,2020-02-15T06:59:30Z +988,220,1,2020-02-15T06:59:30Z +989,220,2,2020-02-15T06:59:30Z +990,220,2,2020-02-15T06:59:30Z +991,220,2,2020-02-15T06:59:30Z +992,220,2,2020-02-15T06:59:30Z +993,222,1,2020-02-15T06:59:30Z +994,222,1,2020-02-15T06:59:30Z +995,222,2,2020-02-15T06:59:30Z +996,222,2,2020-02-15T06:59:30Z +997,222,2,2020-02-15T06:59:30Z +998,222,2,2020-02-15T06:59:30Z +999,223,2,2020-02-15T06:59:30Z +1000,223,2,2020-02-15T06:59:30Z +1001,224,1,2020-02-15T06:59:30Z +1002,224,1,2020-02-15T06:59:30Z +1003,225,1,2020-02-15T06:59:30Z +1004,225,1,2020-02-15T06:59:30Z +1005,225,1,2020-02-15T06:59:30Z +1006,226,1,2020-02-15T06:59:30Z +1007,226,1,2020-02-15T06:59:30Z +1008,226,2,2020-02-15T06:59:30Z +1009,226,2,2020-02-15T06:59:30Z +1010,226,2,2020-02-15T06:59:30Z +1011,227,1,2020-02-15T06:59:30Z +1012,227,1,2020-02-15T06:59:30Z +1013,227,1,2020-02-15T06:59:30Z +1014,227,2,2020-02-15T06:59:30Z +1015,227,2,2020-02-15T06:59:30Z +1016,228,1,2020-02-15T06:59:30Z +1017,228,1,2020-02-15T06:59:30Z +1018,228,1,2020-02-15T06:59:30Z +1019,228,2,2020-02-15T06:59:30Z +1020,228,2,2020-02-15T06:59:30Z +1021,228,2,2020-02-15T06:59:30Z +1022,228,2,2020-02-15T06:59:30Z +1023,229,1,2020-02-15T06:59:30Z +1024,229,1,2020-02-15T06:59:30Z +1025,229,2,2020-02-15T06:59:30Z +1026,229,2,2020-02-15T06:59:30Z +1027,230,1,2020-02-15T06:59:30Z +1028,230,1,2020-02-15T06:59:30Z +1029,231,1,2020-02-15T06:59:30Z +1030,231,1,2020-02-15T06:59:30Z +1031,231,1,2020-02-15T06:59:30Z +1032,231,1,2020-02-15T06:59:30Z +1033,231,2,2020-02-15T06:59:30Z +1034,231,2,2020-02-15T06:59:30Z +1035,231,2,2020-02-15T06:59:30Z +1036,231,2,2020-02-15T06:59:30Z +1037,232,1,2020-02-15T06:59:30Z +1038,232,1,2020-02-15T06:59:30Z +1039,232,1,2020-02-15T06:59:30Z +1040,232,2,2020-02-15T06:59:30Z +1041,232,2,2020-02-15T06:59:30Z +1042,233,1,2020-02-15T06:59:30Z +1043,233,1,2020-02-15T06:59:30Z +1044,233,1,2020-02-15T06:59:30Z +1045,233,1,2020-02-15T06:59:30Z +1046,233,2,2020-02-15T06:59:30Z +1047,233,2,2020-02-15T06:59:30Z +1048,234,1,2020-02-15T06:59:30Z +1049,234,1,2020-02-15T06:59:30Z +1050,234,1,2020-02-15T06:59:30Z +1051,234,1,2020-02-15T06:59:30Z +1052,234,2,2020-02-15T06:59:30Z +1053,234,2,2020-02-15T06:59:30Z +1054,234,2,2020-02-15T06:59:30Z +1055,235,1,2020-02-15T06:59:30Z +1056,235,1,2020-02-15T06:59:30Z +1057,235,2,2020-02-15T06:59:30Z +1058,235,2,2020-02-15T06:59:30Z +1059,235,2,2020-02-15T06:59:30Z +1060,235,2,2020-02-15T06:59:30Z +1061,236,2,2020-02-15T06:59:30Z +1062,236,2,2020-02-15T06:59:30Z +1063,236,2,2020-02-15T06:59:30Z +1064,236,2,2020-02-15T06:59:30Z +1065,237,1,2020-02-15T06:59:30Z +1066,237,1,2020-02-15T06:59:30Z +1067,238,1,2020-02-15T06:59:30Z +1068,238,1,2020-02-15T06:59:30Z +1069,239,1,2020-02-15T06:59:30Z +1070,239,1,2020-02-15T06:59:30Z +1071,239,1,2020-02-15T06:59:30Z +1072,239,1,2020-02-15T06:59:30Z +1073,239,2,2020-02-15T06:59:30Z +1074,239,2,2020-02-15T06:59:30Z +1075,239,2,2020-02-15T06:59:30Z +1076,239,2,2020-02-15T06:59:30Z +1077,240,2,2020-02-15T06:59:30Z +1078,240,2,2020-02-15T06:59:30Z +1079,240,2,2020-02-15T06:59:30Z +1080,241,1,2020-02-15T06:59:30Z +1081,241,1,2020-02-15T06:59:30Z +1082,241,1,2020-02-15T06:59:30Z +1083,241,1,2020-02-15T06:59:30Z +1084,242,1,2020-02-15T06:59:30Z +1085,242,1,2020-02-15T06:59:30Z +1086,242,2,2020-02-15T06:59:30Z +1087,242,2,2020-02-15T06:59:30Z +1088,242,2,2020-02-15T06:59:30Z +1089,243,1,2020-02-15T06:59:30Z +1090,243,1,2020-02-15T06:59:30Z +1091,243,2,2020-02-15T06:59:30Z +1092,243,2,2020-02-15T06:59:30Z +1093,243,2,2020-02-15T06:59:30Z +1094,243,2,2020-02-15T06:59:30Z +1095,244,1,2020-02-15T06:59:30Z +1096,244,1,2020-02-15T06:59:30Z +1097,244,1,2020-02-15T06:59:30Z +1098,244,1,2020-02-15T06:59:30Z +1099,244,2,2020-02-15T06:59:30Z +1100,244,2,2020-02-15T06:59:30Z +1101,244,2,2020-02-15T06:59:30Z +1102,245,1,2020-02-15T06:59:30Z +1103,245,1,2020-02-15T06:59:30Z +1104,245,1,2020-02-15T06:59:30Z +1105,245,2,2020-02-15T06:59:30Z +1106,245,2,2020-02-15T06:59:30Z +1107,245,2,2020-02-15T06:59:30Z +1108,245,2,2020-02-15T06:59:30Z +1109,246,2,2020-02-15T06:59:30Z +1110,246,2,2020-02-15T06:59:30Z +1111,246,2,2020-02-15T06:59:30Z +1112,247,1,2020-02-15T06:59:30Z +1113,247,1,2020-02-15T06:59:30Z +1114,247,1,2020-02-15T06:59:30Z +1115,247,2,2020-02-15T06:59:30Z +1116,247,2,2020-02-15T06:59:30Z +1117,247,2,2020-02-15T06:59:30Z +1118,247,2,2020-02-15T06:59:30Z +1119,248,2,2020-02-15T06:59:30Z +1120,248,2,2020-02-15T06:59:30Z +1121,249,1,2020-02-15T06:59:30Z +1122,249,1,2020-02-15T06:59:30Z +1123,249,2,2020-02-15T06:59:30Z +1124,249,2,2020-02-15T06:59:30Z +1125,249,2,2020-02-15T06:59:30Z +1126,249,2,2020-02-15T06:59:30Z +1127,250,2,2020-02-15T06:59:30Z +1128,250,2,2020-02-15T06:59:30Z +1129,250,2,2020-02-15T06:59:30Z +1130,250,2,2020-02-15T06:59:30Z +1131,251,1,2020-02-15T06:59:30Z +1132,251,1,2020-02-15T06:59:30Z +1133,251,2,2020-02-15T06:59:30Z +1134,251,2,2020-02-15T06:59:30Z +1135,251,2,2020-02-15T06:59:30Z +1136,252,1,2020-02-15T06:59:30Z +1137,252,1,2020-02-15T06:59:30Z +1138,252,1,2020-02-15T06:59:30Z +1139,252,2,2020-02-15T06:59:30Z +1140,252,2,2020-02-15T06:59:30Z +1141,252,2,2020-02-15T06:59:30Z +1142,253,1,2020-02-15T06:59:30Z +1143,253,1,2020-02-15T06:59:30Z +1144,253,1,2020-02-15T06:59:30Z +1145,253,1,2020-02-15T06:59:30Z +1146,253,2,2020-02-15T06:59:30Z +1147,253,2,2020-02-15T06:59:30Z +1148,254,1,2020-02-15T06:59:30Z +1149,254,1,2020-02-15T06:59:30Z +1150,254,2,2020-02-15T06:59:30Z +1151,254,2,2020-02-15T06:59:30Z +1152,254,2,2020-02-15T06:59:30Z +1153,255,1,2020-02-15T06:59:30Z +1154,255,1,2020-02-15T06:59:30Z +1155,255,1,2020-02-15T06:59:30Z +1156,255,1,2020-02-15T06:59:30Z +1157,255,2,2020-02-15T06:59:30Z +1158,255,2,2020-02-15T06:59:30Z +1159,256,2,2020-02-15T06:59:30Z +1160,256,2,2020-02-15T06:59:30Z +1161,256,2,2020-02-15T06:59:30Z +1162,257,2,2020-02-15T06:59:30Z +1163,257,2,2020-02-15T06:59:30Z +1164,257,2,2020-02-15T06:59:30Z +1165,258,2,2020-02-15T06:59:30Z +1166,258,2,2020-02-15T06:59:30Z +1167,258,2,2020-02-15T06:59:30Z +1168,258,2,2020-02-15T06:59:30Z +1169,259,1,2020-02-15T06:59:30Z +1170,259,1,2020-02-15T06:59:30Z +1171,260,2,2020-02-15T06:59:30Z +1172,260,2,2020-02-15T06:59:30Z +1173,260,2,2020-02-15T06:59:30Z +1174,260,2,2020-02-15T06:59:30Z +1175,261,1,2020-02-15T06:59:30Z +1176,261,1,2020-02-15T06:59:30Z +1177,262,2,2020-02-15T06:59:30Z +1178,262,2,2020-02-15T06:59:30Z +1179,263,1,2020-02-15T06:59:30Z +1180,263,1,2020-02-15T06:59:30Z +1181,263,1,2020-02-15T06:59:30Z +1182,263,1,2020-02-15T06:59:30Z +1183,263,2,2020-02-15T06:59:30Z +1184,263,2,2020-02-15T06:59:30Z +1185,263,2,2020-02-15T06:59:30Z +1186,264,2,2020-02-15T06:59:30Z +1187,264,2,2020-02-15T06:59:30Z +1188,265,1,2020-02-15T06:59:30Z +1189,265,1,2020-02-15T06:59:30Z +1190,265,1,2020-02-15T06:59:30Z +1191,265,1,2020-02-15T06:59:30Z +1192,266,1,2020-02-15T06:59:30Z +1193,266,1,2020-02-15T06:59:30Z +1194,266,1,2020-02-15T06:59:30Z +1195,266,1,2020-02-15T06:59:30Z +1196,266,2,2020-02-15T06:59:30Z +1197,266,2,2020-02-15T06:59:30Z +1198,266,2,2020-02-15T06:59:30Z +1199,266,2,2020-02-15T06:59:30Z +1200,267,1,2020-02-15T06:59:30Z +1201,267,1,2020-02-15T06:59:30Z +1202,267,1,2020-02-15T06:59:30Z +1203,267,1,2020-02-15T06:59:30Z +1204,267,2,2020-02-15T06:59:30Z +1205,267,2,2020-02-15T06:59:30Z +1206,268,2,2020-02-15T06:59:30Z +1207,268,2,2020-02-15T06:59:30Z +1208,269,1,2020-02-15T06:59:30Z +1209,269,1,2020-02-15T06:59:30Z +1210,269,2,2020-02-15T06:59:30Z +1211,269,2,2020-02-15T06:59:30Z +1212,269,2,2020-02-15T06:59:30Z +1213,269,2,2020-02-15T06:59:30Z +1214,270,1,2020-02-15T06:59:30Z +1215,270,1,2020-02-15T06:59:30Z +1216,270,1,2020-02-15T06:59:30Z +1217,270,2,2020-02-15T06:59:30Z +1218,270,2,2020-02-15T06:59:30Z +1219,270,2,2020-02-15T06:59:30Z +1220,270,2,2020-02-15T06:59:30Z +1221,271,1,2020-02-15T06:59:30Z +1222,271,1,2020-02-15T06:59:30Z +1223,271,1,2020-02-15T06:59:30Z +1224,271,2,2020-02-15T06:59:30Z +1225,271,2,2020-02-15T06:59:30Z +1226,272,1,2020-02-15T06:59:30Z +1227,272,1,2020-02-15T06:59:30Z +1228,272,1,2020-02-15T06:59:30Z +1229,272,1,2020-02-15T06:59:30Z +1230,273,1,2020-02-15T06:59:30Z +1231,273,1,2020-02-15T06:59:30Z +1232,273,1,2020-02-15T06:59:30Z +1233,273,1,2020-02-15T06:59:30Z +1234,273,2,2020-02-15T06:59:30Z +1235,273,2,2020-02-15T06:59:30Z +1236,273,2,2020-02-15T06:59:30Z +1237,274,1,2020-02-15T06:59:30Z +1238,274,1,2020-02-15T06:59:30Z +1239,274,1,2020-02-15T06:59:30Z +1240,274,2,2020-02-15T06:59:30Z +1241,274,2,2020-02-15T06:59:30Z +1242,274,2,2020-02-15T06:59:30Z +1243,274,2,2020-02-15T06:59:30Z +1244,275,1,2020-02-15T06:59:30Z +1245,275,1,2020-02-15T06:59:30Z +1246,275,1,2020-02-15T06:59:30Z +1247,275,2,2020-02-15T06:59:30Z +1248,275,2,2020-02-15T06:59:30Z +1249,276,1,2020-02-15T06:59:30Z +1250,276,1,2020-02-15T06:59:30Z +1251,276,1,2020-02-15T06:59:30Z +1252,276,1,2020-02-15T06:59:30Z +1253,277,1,2020-02-15T06:59:30Z +1254,277,1,2020-02-15T06:59:30Z +1255,277,1,2020-02-15T06:59:30Z +1256,278,1,2020-02-15T06:59:30Z +1257,278,1,2020-02-15T06:59:30Z +1258,279,1,2020-02-15T06:59:30Z +1259,279,1,2020-02-15T06:59:30Z +1260,280,1,2020-02-15T06:59:30Z +1261,280,1,2020-02-15T06:59:30Z +1262,280,1,2020-02-15T06:59:30Z +1263,280,1,2020-02-15T06:59:30Z +1264,280,2,2020-02-15T06:59:30Z +1265,280,2,2020-02-15T06:59:30Z +1266,281,1,2020-02-15T06:59:30Z +1267,281,1,2020-02-15T06:59:30Z +1268,281,2,2020-02-15T06:59:30Z +1269,281,2,2020-02-15T06:59:30Z +1270,281,2,2020-02-15T06:59:30Z +1271,281,2,2020-02-15T06:59:30Z +1272,282,1,2020-02-15T06:59:30Z +1273,282,1,2020-02-15T06:59:30Z +1274,282,1,2020-02-15T06:59:30Z +1275,282,2,2020-02-15T06:59:30Z +1276,282,2,2020-02-15T06:59:30Z +1277,282,2,2020-02-15T06:59:30Z +1278,283,1,2020-02-15T06:59:30Z +1279,283,1,2020-02-15T06:59:30Z +1280,283,1,2020-02-15T06:59:30Z +1281,284,1,2020-02-15T06:59:30Z +1282,284,1,2020-02-15T06:59:30Z +1283,284,1,2020-02-15T06:59:30Z +1284,284,2,2020-02-15T06:59:30Z +1285,284,2,2020-02-15T06:59:30Z +1286,284,2,2020-02-15T06:59:30Z +1287,284,2,2020-02-15T06:59:30Z +1288,285,1,2020-02-15T06:59:30Z +1289,285,1,2020-02-15T06:59:30Z +1290,285,1,2020-02-15T06:59:30Z +1291,285,2,2020-02-15T06:59:30Z +1292,285,2,2020-02-15T06:59:30Z +1293,285,2,2020-02-15T06:59:30Z +1294,285,2,2020-02-15T06:59:30Z +1295,286,1,2020-02-15T06:59:30Z +1296,286,1,2020-02-15T06:59:30Z +1297,286,2,2020-02-15T06:59:30Z +1298,286,2,2020-02-15T06:59:30Z +1299,286,2,2020-02-15T06:59:30Z +1300,287,1,2020-02-15T06:59:30Z +1301,287,1,2020-02-15T06:59:30Z +1302,287,2,2020-02-15T06:59:30Z +1303,287,2,2020-02-15T06:59:30Z +1304,288,1,2020-02-15T06:59:30Z +1305,288,1,2020-02-15T06:59:30Z +1306,288,2,2020-02-15T06:59:30Z +1307,288,2,2020-02-15T06:59:30Z +1308,288,2,2020-02-15T06:59:30Z +1309,288,2,2020-02-15T06:59:30Z +1310,289,1,2020-02-15T06:59:30Z +1311,289,1,2020-02-15T06:59:30Z +1312,290,1,2020-02-15T06:59:30Z +1313,290,1,2020-02-15T06:59:30Z +1314,290,1,2020-02-15T06:59:30Z +1315,291,1,2020-02-15T06:59:30Z +1316,291,1,2020-02-15T06:59:30Z +1317,291,1,2020-02-15T06:59:30Z +1318,291,1,2020-02-15T06:59:30Z +1319,292,1,2020-02-15T06:59:30Z +1320,292,1,2020-02-15T06:59:30Z +1321,292,1,2020-02-15T06:59:30Z +1322,292,2,2020-02-15T06:59:30Z +1323,292,2,2020-02-15T06:59:30Z +1324,292,2,2020-02-15T06:59:30Z +1325,293,1,2020-02-15T06:59:30Z +1326,293,1,2020-02-15T06:59:30Z +1327,293,2,2020-02-15T06:59:30Z +1328,293,2,2020-02-15T06:59:30Z +1329,293,2,2020-02-15T06:59:30Z +1330,294,1,2020-02-15T06:59:30Z +1331,294,1,2020-02-15T06:59:30Z +1332,294,2,2020-02-15T06:59:30Z +1333,294,2,2020-02-15T06:59:30Z +1334,294,2,2020-02-15T06:59:30Z +1335,295,1,2020-02-15T06:59:30Z +1336,295,1,2020-02-15T06:59:30Z +1337,295,1,2020-02-15T06:59:30Z +1338,295,1,2020-02-15T06:59:30Z +1339,295,2,2020-02-15T06:59:30Z +1340,295,2,2020-02-15T06:59:30Z +1341,295,2,2020-02-15T06:59:30Z +1342,295,2,2020-02-15T06:59:30Z +1343,296,1,2020-02-15T06:59:30Z +1344,296,1,2020-02-15T06:59:30Z +1345,296,1,2020-02-15T06:59:30Z +1346,296,1,2020-02-15T06:59:30Z +1347,297,2,2020-02-15T06:59:30Z +1348,297,2,2020-02-15T06:59:30Z +1349,298,1,2020-02-15T06:59:30Z +1350,298,1,2020-02-15T06:59:30Z +1351,298,2,2020-02-15T06:59:30Z +1352,298,2,2020-02-15T06:59:30Z +1353,298,2,2020-02-15T06:59:30Z +1354,299,1,2020-02-15T06:59:30Z +1355,299,1,2020-02-15T06:59:30Z +1356,299,1,2020-02-15T06:59:30Z +1357,299,1,2020-02-15T06:59:30Z +1358,300,1,2020-02-15T06:59:30Z +1359,300,1,2020-02-15T06:59:30Z +1360,300,2,2020-02-15T06:59:30Z +1361,300,2,2020-02-15T06:59:30Z +1362,300,2,2020-02-15T06:59:30Z +1363,300,2,2020-02-15T06:59:30Z +1364,301,1,2020-02-15T06:59:30Z +1365,301,1,2020-02-15T06:59:30Z +1366,301,1,2020-02-15T06:59:30Z +1367,301,1,2020-02-15T06:59:30Z +1368,301,2,2020-02-15T06:59:30Z +1369,301,2,2020-02-15T06:59:30Z +1370,301,2,2020-02-15T06:59:30Z +1371,301,2,2020-02-15T06:59:30Z +1372,302,1,2020-02-15T06:59:30Z +1373,302,1,2020-02-15T06:59:30Z +1374,302,2,2020-02-15T06:59:30Z +1375,302,2,2020-02-15T06:59:30Z +1376,302,2,2020-02-15T06:59:30Z +1377,302,2,2020-02-15T06:59:30Z +1378,303,1,2020-02-15T06:59:30Z +1379,303,1,2020-02-15T06:59:30Z +1380,303,1,2020-02-15T06:59:30Z +1381,303,1,2020-02-15T06:59:30Z +1382,303,2,2020-02-15T06:59:30Z +1383,303,2,2020-02-15T06:59:30Z +1384,304,1,2020-02-15T06:59:30Z +1385,304,1,2020-02-15T06:59:30Z +1386,304,1,2020-02-15T06:59:30Z +1387,304,1,2020-02-15T06:59:30Z +1388,304,2,2020-02-15T06:59:30Z +1389,304,2,2020-02-15T06:59:30Z +1390,305,1,2020-02-15T06:59:30Z +1391,305,1,2020-02-15T06:59:30Z +1392,305,1,2020-02-15T06:59:30Z +1393,305,1,2020-02-15T06:59:30Z +1394,305,2,2020-02-15T06:59:30Z +1395,305,2,2020-02-15T06:59:30Z +1396,305,2,2020-02-15T06:59:30Z +1397,306,1,2020-02-15T06:59:30Z +1398,306,1,2020-02-15T06:59:30Z +1399,306,1,2020-02-15T06:59:30Z +1400,307,1,2020-02-15T06:59:30Z +1401,307,1,2020-02-15T06:59:30Z +1402,307,1,2020-02-15T06:59:30Z +1403,307,2,2020-02-15T06:59:30Z +1404,307,2,2020-02-15T06:59:30Z +1405,307,2,2020-02-15T06:59:30Z +1406,308,1,2020-02-15T06:59:30Z +1407,308,1,2020-02-15T06:59:30Z +1408,308,2,2020-02-15T06:59:30Z +1409,308,2,2020-02-15T06:59:30Z +1410,309,1,2020-02-15T06:59:30Z +1411,309,1,2020-02-15T06:59:30Z +1412,309,2,2020-02-15T06:59:30Z +1413,309,2,2020-02-15T06:59:30Z +1414,309,2,2020-02-15T06:59:30Z +1415,309,2,2020-02-15T06:59:30Z +1416,310,1,2020-02-15T06:59:30Z +1417,310,1,2020-02-15T06:59:30Z +1418,311,1,2020-02-15T06:59:30Z +1419,311,1,2020-02-15T06:59:30Z +1420,311,1,2020-02-15T06:59:30Z +1421,311,2,2020-02-15T06:59:30Z +1422,311,2,2020-02-15T06:59:30Z +1423,311,2,2020-02-15T06:59:30Z +1424,311,2,2020-02-15T06:59:30Z +1425,312,2,2020-02-15T06:59:30Z +1426,312,2,2020-02-15T06:59:30Z +1427,312,2,2020-02-15T06:59:30Z +1428,313,1,2020-02-15T06:59:30Z +1429,313,1,2020-02-15T06:59:30Z +1430,313,1,2020-02-15T06:59:30Z +1431,313,1,2020-02-15T06:59:30Z +1432,313,2,2020-02-15T06:59:30Z +1433,313,2,2020-02-15T06:59:30Z +1434,314,1,2020-02-15T06:59:30Z +1435,314,1,2020-02-15T06:59:30Z +1436,314,2,2020-02-15T06:59:30Z +1437,314,2,2020-02-15T06:59:30Z +1438,314,2,2020-02-15T06:59:30Z +1439,314,2,2020-02-15T06:59:30Z +1440,315,2,2020-02-15T06:59:30Z +1441,315,2,2020-02-15T06:59:30Z +1442,315,2,2020-02-15T06:59:30Z +1443,316,2,2020-02-15T06:59:30Z +1444,316,2,2020-02-15T06:59:30Z +1445,317,1,2020-02-15T06:59:30Z +1446,317,1,2020-02-15T06:59:30Z +1447,317,1,2020-02-15T06:59:30Z +1448,317,1,2020-02-15T06:59:30Z +1449,317,2,2020-02-15T06:59:30Z +1450,317,2,2020-02-15T06:59:30Z +1451,317,2,2020-02-15T06:59:30Z +1452,319,1,2020-02-15T06:59:30Z +1453,319,1,2020-02-15T06:59:30Z +1454,319,1,2020-02-15T06:59:30Z +1455,319,2,2020-02-15T06:59:30Z +1456,319,2,2020-02-15T06:59:30Z +1457,319,2,2020-02-15T06:59:30Z +1458,319,2,2020-02-15T06:59:30Z +1459,320,1,2020-02-15T06:59:30Z +1460,320,1,2020-02-15T06:59:30Z +1461,320,1,2020-02-15T06:59:30Z +1462,320,2,2020-02-15T06:59:30Z +1463,320,2,2020-02-15T06:59:30Z +1464,320,2,2020-02-15T06:59:30Z +1465,320,2,2020-02-15T06:59:30Z +1466,321,1,2020-02-15T06:59:30Z +1467,321,1,2020-02-15T06:59:30Z +1468,321,1,2020-02-15T06:59:30Z +1469,321,1,2020-02-15T06:59:30Z +1470,322,1,2020-02-15T06:59:30Z +1471,322,1,2020-02-15T06:59:30Z +1472,322,1,2020-02-15T06:59:30Z +1473,322,1,2020-02-15T06:59:30Z +1474,322,2,2020-02-15T06:59:30Z +1475,322,2,2020-02-15T06:59:30Z +1476,323,2,2020-02-15T06:59:30Z +1477,323,2,2020-02-15T06:59:30Z +1478,323,2,2020-02-15T06:59:30Z +1479,323,2,2020-02-15T06:59:30Z +1480,324,1,2020-02-15T06:59:30Z +1481,324,1,2020-02-15T06:59:30Z +1482,324,1,2020-02-15T06:59:30Z +1483,324,2,2020-02-15T06:59:30Z +1484,324,2,2020-02-15T06:59:30Z +1485,326,1,2020-02-15T06:59:30Z +1486,326,1,2020-02-15T06:59:30Z +1487,326,2,2020-02-15T06:59:30Z +1488,326,2,2020-02-15T06:59:30Z +1489,326,2,2020-02-15T06:59:30Z +1490,326,2,2020-02-15T06:59:30Z +1491,327,1,2020-02-15T06:59:30Z +1492,327,1,2020-02-15T06:59:30Z +1493,327,1,2020-02-15T06:59:30Z +1494,327,1,2020-02-15T06:59:30Z +1495,327,2,2020-02-15T06:59:30Z +1496,327,2,2020-02-15T06:59:30Z +1497,328,2,2020-02-15T06:59:30Z +1498,328,2,2020-02-15T06:59:30Z +1499,328,2,2020-02-15T06:59:30Z +1500,328,2,2020-02-15T06:59:30Z +1501,329,1,2020-02-15T06:59:30Z +1502,329,1,2020-02-15T06:59:30Z +1503,329,1,2020-02-15T06:59:30Z +1504,329,2,2020-02-15T06:59:30Z +1505,329,2,2020-02-15T06:59:30Z +1506,329,2,2020-02-15T06:59:30Z +1507,330,1,2020-02-15T06:59:30Z +1508,330,1,2020-02-15T06:59:30Z +1509,330,1,2020-02-15T06:59:30Z +1510,330,1,2020-02-15T06:59:30Z +1511,330,2,2020-02-15T06:59:30Z +1512,330,2,2020-02-15T06:59:30Z +1513,330,2,2020-02-15T06:59:30Z +1514,331,1,2020-02-15T06:59:30Z +1515,331,1,2020-02-15T06:59:30Z +1516,331,1,2020-02-15T06:59:30Z +1517,331,1,2020-02-15T06:59:30Z +1518,331,2,2020-02-15T06:59:30Z +1519,331,2,2020-02-15T06:59:30Z +1520,331,2,2020-02-15T06:59:30Z +1521,331,2,2020-02-15T06:59:30Z +1522,333,1,2020-02-15T06:59:30Z +1523,333,1,2020-02-15T06:59:30Z +1524,333,2,2020-02-15T06:59:30Z +1525,333,2,2020-02-15T06:59:30Z +1526,334,1,2020-02-15T06:59:30Z +1527,334,1,2020-02-15T06:59:30Z +1528,334,2,2020-02-15T06:59:30Z +1529,334,2,2020-02-15T06:59:30Z +1530,334,2,2020-02-15T06:59:30Z +1531,334,2,2020-02-15T06:59:30Z +1532,335,1,2020-02-15T06:59:30Z +1533,335,1,2020-02-15T06:59:30Z +1534,336,1,2020-02-15T06:59:30Z +1535,336,1,2020-02-15T06:59:30Z +1536,336,1,2020-02-15T06:59:30Z +1537,336,2,2020-02-15T06:59:30Z +1538,336,2,2020-02-15T06:59:30Z +1539,337,1,2020-02-15T06:59:30Z +1540,337,1,2020-02-15T06:59:30Z +1541,337,2,2020-02-15T06:59:30Z +1542,337,2,2020-02-15T06:59:30Z +1543,338,2,2020-02-15T06:59:30Z +1544,338,2,2020-02-15T06:59:30Z +1545,338,2,2020-02-15T06:59:30Z +1546,339,2,2020-02-15T06:59:30Z +1547,339,2,2020-02-15T06:59:30Z +1548,339,2,2020-02-15T06:59:30Z +1549,340,1,2020-02-15T06:59:30Z +1550,340,1,2020-02-15T06:59:30Z +1551,341,1,2020-02-15T06:59:30Z +1552,341,1,2020-02-15T06:59:30Z +1553,341,1,2020-02-15T06:59:30Z +1554,341,1,2020-02-15T06:59:30Z +1555,341,2,2020-02-15T06:59:30Z +1556,341,2,2020-02-15T06:59:30Z +1557,341,2,2020-02-15T06:59:30Z +1558,341,2,2020-02-15T06:59:30Z +1559,342,1,2020-02-15T06:59:30Z +1560,342,1,2020-02-15T06:59:30Z +1561,342,1,2020-02-15T06:59:30Z +1562,342,1,2020-02-15T06:59:30Z +1563,343,1,2020-02-15T06:59:30Z +1564,343,1,2020-02-15T06:59:30Z +1565,344,1,2020-02-15T06:59:30Z +1566,344,1,2020-02-15T06:59:30Z +1567,344,1,2020-02-15T06:59:30Z +1568,344,2,2020-02-15T06:59:30Z +1569,344,2,2020-02-15T06:59:30Z +1570,345,1,2020-02-15T06:59:30Z +1571,345,1,2020-02-15T06:59:30Z +1572,345,1,2020-02-15T06:59:30Z +1573,345,2,2020-02-15T06:59:30Z +1574,345,2,2020-02-15T06:59:30Z +1575,346,1,2020-02-15T06:59:30Z +1576,346,1,2020-02-15T06:59:30Z +1577,346,2,2020-02-15T06:59:30Z +1578,346,2,2020-02-15T06:59:30Z +1579,346,2,2020-02-15T06:59:30Z +1580,346,2,2020-02-15T06:59:30Z +1581,347,1,2020-02-15T06:59:30Z +1582,347,1,2020-02-15T06:59:30Z +1583,347,1,2020-02-15T06:59:30Z +1584,347,1,2020-02-15T06:59:30Z +1585,348,2,2020-02-15T06:59:30Z +1586,348,2,2020-02-15T06:59:30Z +1587,348,2,2020-02-15T06:59:30Z +1588,348,2,2020-02-15T06:59:30Z +1589,349,1,2020-02-15T06:59:30Z +1590,349,1,2020-02-15T06:59:30Z +1591,349,1,2020-02-15T06:59:30Z +1592,349,1,2020-02-15T06:59:30Z +1593,349,2,2020-02-15T06:59:30Z +1594,349,2,2020-02-15T06:59:30Z +1595,349,2,2020-02-15T06:59:30Z +1596,350,1,2020-02-15T06:59:30Z +1597,350,1,2020-02-15T06:59:30Z +1598,350,1,2020-02-15T06:59:30Z +1599,350,1,2020-02-15T06:59:30Z +1600,350,2,2020-02-15T06:59:30Z +1601,350,2,2020-02-15T06:59:30Z +1602,350,2,2020-02-15T06:59:30Z +1603,350,2,2020-02-15T06:59:30Z +1604,351,1,2020-02-15T06:59:30Z +1605,351,1,2020-02-15T06:59:30Z +1606,351,1,2020-02-15T06:59:30Z +1607,351,2,2020-02-15T06:59:30Z +1608,351,2,2020-02-15T06:59:30Z +1609,351,2,2020-02-15T06:59:30Z +1610,352,2,2020-02-15T06:59:30Z +1611,352,2,2020-02-15T06:59:30Z +1612,352,2,2020-02-15T06:59:30Z +1613,352,2,2020-02-15T06:59:30Z +1614,353,1,2020-02-15T06:59:30Z +1615,353,1,2020-02-15T06:59:30Z +1616,353,2,2020-02-15T06:59:30Z +1617,353,2,2020-02-15T06:59:30Z +1618,353,2,2020-02-15T06:59:30Z +1619,353,2,2020-02-15T06:59:30Z +1620,354,1,2020-02-15T06:59:30Z +1621,354,1,2020-02-15T06:59:30Z +1622,354,1,2020-02-15T06:59:30Z +1623,354,2,2020-02-15T06:59:30Z +1624,354,2,2020-02-15T06:59:30Z +1625,355,2,2020-02-15T06:59:30Z +1626,355,2,2020-02-15T06:59:30Z +1627,356,1,2020-02-15T06:59:30Z +1628,356,1,2020-02-15T06:59:30Z +1629,356,1,2020-02-15T06:59:30Z +1630,356,1,2020-02-15T06:59:30Z +1631,356,2,2020-02-15T06:59:30Z +1632,356,2,2020-02-15T06:59:30Z +1633,356,2,2020-02-15T06:59:30Z +1634,356,2,2020-02-15T06:59:30Z +1635,357,2,2020-02-15T06:59:30Z +1636,357,2,2020-02-15T06:59:30Z +1637,357,2,2020-02-15T06:59:30Z +1638,357,2,2020-02-15T06:59:30Z +1639,358,1,2020-02-15T06:59:30Z +1640,358,1,2020-02-15T06:59:30Z +1641,358,1,2020-02-15T06:59:30Z +1642,358,1,2020-02-15T06:59:30Z +1643,358,2,2020-02-15T06:59:30Z +1644,358,2,2020-02-15T06:59:30Z +1645,358,2,2020-02-15T06:59:30Z +1646,358,2,2020-02-15T06:59:30Z +1647,360,1,2020-02-15T06:59:30Z +1648,360,1,2020-02-15T06:59:30Z +1649,360,1,2020-02-15T06:59:30Z +1650,360,1,2020-02-15T06:59:30Z +1651,361,1,2020-02-15T06:59:30Z +1652,361,1,2020-02-15T06:59:30Z +1653,361,1,2020-02-15T06:59:30Z +1654,361,1,2020-02-15T06:59:30Z +1655,361,2,2020-02-15T06:59:30Z +1656,361,2,2020-02-15T06:59:30Z +1657,361,2,2020-02-15T06:59:30Z +1658,361,2,2020-02-15T06:59:30Z +1659,362,1,2020-02-15T06:59:30Z +1660,362,1,2020-02-15T06:59:30Z +1661,363,1,2020-02-15T06:59:30Z +1662,363,1,2020-02-15T06:59:30Z +1663,363,1,2020-02-15T06:59:30Z +1664,363,2,2020-02-15T06:59:30Z +1665,363,2,2020-02-15T06:59:30Z +1666,363,2,2020-02-15T06:59:30Z +1667,364,1,2020-02-15T06:59:30Z +1668,364,1,2020-02-15T06:59:30Z +1669,364,1,2020-02-15T06:59:30Z +1670,365,1,2020-02-15T06:59:30Z +1671,365,1,2020-02-15T06:59:30Z +1672,365,2,2020-02-15T06:59:30Z +1673,365,2,2020-02-15T06:59:30Z +1674,366,1,2020-02-15T06:59:30Z +1675,366,1,2020-02-15T06:59:30Z +1676,366,1,2020-02-15T06:59:30Z +1677,366,1,2020-02-15T06:59:30Z +1678,366,2,2020-02-15T06:59:30Z +1679,366,2,2020-02-15T06:59:30Z +1680,366,2,2020-02-15T06:59:30Z +1681,367,1,2020-02-15T06:59:30Z +1682,367,1,2020-02-15T06:59:30Z +1683,367,1,2020-02-15T06:59:30Z +1684,367,1,2020-02-15T06:59:30Z +1685,367,2,2020-02-15T06:59:30Z +1686,367,2,2020-02-15T06:59:30Z +1687,367,2,2020-02-15T06:59:30Z +1688,368,1,2020-02-15T06:59:30Z +1689,368,1,2020-02-15T06:59:30Z +1690,369,1,2020-02-15T06:59:30Z +1691,369,1,2020-02-15T06:59:30Z +1692,369,1,2020-02-15T06:59:30Z +1693,369,1,2020-02-15T06:59:30Z +1694,369,2,2020-02-15T06:59:30Z +1695,369,2,2020-02-15T06:59:30Z +1696,369,2,2020-02-15T06:59:30Z +1697,369,2,2020-02-15T06:59:30Z +1698,370,1,2020-02-15T06:59:30Z +1699,370,1,2020-02-15T06:59:30Z +1700,370,1,2020-02-15T06:59:30Z +1701,370,2,2020-02-15T06:59:30Z +1702,370,2,2020-02-15T06:59:30Z +1703,371,1,2020-02-15T06:59:30Z +1704,371,1,2020-02-15T06:59:30Z +1705,371,1,2020-02-15T06:59:30Z +1706,372,1,2020-02-15T06:59:30Z +1707,372,1,2020-02-15T06:59:30Z +1708,373,1,2020-02-15T06:59:30Z +1709,373,1,2020-02-15T06:59:30Z +1710,373,1,2020-02-15T06:59:30Z +1711,373,2,2020-02-15T06:59:30Z +1712,373,2,2020-02-15T06:59:30Z +1713,374,1,2020-02-15T06:59:30Z +1714,374,1,2020-02-15T06:59:30Z +1715,374,1,2020-02-15T06:59:30Z +1716,374,2,2020-02-15T06:59:30Z +1717,374,2,2020-02-15T06:59:30Z +1718,374,2,2020-02-15T06:59:30Z +1719,374,2,2020-02-15T06:59:30Z +1720,375,1,2020-02-15T06:59:30Z +1721,375,1,2020-02-15T06:59:30Z +1722,376,1,2020-02-15T06:59:30Z +1723,376,1,2020-02-15T06:59:30Z +1724,376,1,2020-02-15T06:59:30Z +1725,376,1,2020-02-15T06:59:30Z +1726,376,2,2020-02-15T06:59:30Z +1727,376,2,2020-02-15T06:59:30Z +1728,376,2,2020-02-15T06:59:30Z +1729,377,1,2020-02-15T06:59:30Z +1730,377,1,2020-02-15T06:59:30Z +1731,377,1,2020-02-15T06:59:30Z +1732,377,2,2020-02-15T06:59:30Z +1733,377,2,2020-02-15T06:59:30Z +1734,377,2,2020-02-15T06:59:30Z +1735,378,1,2020-02-15T06:59:30Z +1736,378,1,2020-02-15T06:59:30Z +1737,378,1,2020-02-15T06:59:30Z +1738,378,1,2020-02-15T06:59:30Z +1739,378,2,2020-02-15T06:59:30Z +1740,378,2,2020-02-15T06:59:30Z +1741,378,2,2020-02-15T06:59:30Z +1742,378,2,2020-02-15T06:59:30Z +1743,379,2,2020-02-15T06:59:30Z +1744,379,2,2020-02-15T06:59:30Z +1745,379,2,2020-02-15T06:59:30Z +1746,379,2,2020-02-15T06:59:30Z +1747,380,1,2020-02-15T06:59:30Z +1748,380,1,2020-02-15T06:59:30Z +1749,380,2,2020-02-15T06:59:30Z +1750,380,2,2020-02-15T06:59:30Z +1751,380,2,2020-02-15T06:59:30Z +1752,381,1,2020-02-15T06:59:30Z +1753,381,1,2020-02-15T06:59:30Z +1754,381,2,2020-02-15T06:59:30Z +1755,381,2,2020-02-15T06:59:30Z +1756,381,2,2020-02-15T06:59:30Z +1757,382,1,2020-02-15T06:59:30Z +1758,382,1,2020-02-15T06:59:30Z +1759,382,1,2020-02-15T06:59:30Z +1760,382,1,2020-02-15T06:59:30Z +1761,382,2,2020-02-15T06:59:30Z +1762,382,2,2020-02-15T06:59:30Z +1763,382,2,2020-02-15T06:59:30Z +1764,382,2,2020-02-15T06:59:30Z +1765,383,1,2020-02-15T06:59:30Z +1766,383,1,2020-02-15T06:59:30Z +1767,383,1,2020-02-15T06:59:30Z +1768,383,2,2020-02-15T06:59:30Z +1769,383,2,2020-02-15T06:59:30Z +1770,384,2,2020-02-15T06:59:30Z +1771,384,2,2020-02-15T06:59:30Z +1772,384,2,2020-02-15T06:59:30Z +1773,385,1,2020-02-15T06:59:30Z +1774,385,1,2020-02-15T06:59:30Z +1775,385,2,2020-02-15T06:59:30Z +1776,385,2,2020-02-15T06:59:30Z +1777,385,2,2020-02-15T06:59:30Z +1778,387,1,2020-02-15T06:59:30Z +1779,387,1,2020-02-15T06:59:30Z +1780,387,1,2020-02-15T06:59:30Z +1781,387,2,2020-02-15T06:59:30Z +1782,387,2,2020-02-15T06:59:30Z +1783,387,2,2020-02-15T06:59:30Z +1784,388,1,2020-02-15T06:59:30Z +1785,388,1,2020-02-15T06:59:30Z +1786,388,1,2020-02-15T06:59:30Z +1787,388,2,2020-02-15T06:59:30Z +1788,388,2,2020-02-15T06:59:30Z +1789,388,2,2020-02-15T06:59:30Z +1790,389,1,2020-02-15T06:59:30Z +1791,389,1,2020-02-15T06:59:30Z +1792,389,2,2020-02-15T06:59:30Z +1793,389,2,2020-02-15T06:59:30Z +1794,390,1,2020-02-15T06:59:30Z +1795,390,1,2020-02-15T06:59:30Z +1796,390,1,2020-02-15T06:59:30Z +1797,391,1,2020-02-15T06:59:30Z +1798,391,1,2020-02-15T06:59:30Z +1799,391,1,2020-02-15T06:59:30Z +1800,391,1,2020-02-15T06:59:30Z +1801,391,2,2020-02-15T06:59:30Z +1802,391,2,2020-02-15T06:59:30Z +1803,391,2,2020-02-15T06:59:30Z +1804,392,1,2020-02-15T06:59:30Z +1805,392,1,2020-02-15T06:59:30Z +1806,392,1,2020-02-15T06:59:30Z +1807,392,1,2020-02-15T06:59:30Z +1808,392,2,2020-02-15T06:59:30Z +1809,392,2,2020-02-15T06:59:30Z +1810,393,1,2020-02-15T06:59:30Z +1811,393,1,2020-02-15T06:59:30Z +1812,394,1,2020-02-15T06:59:30Z +1813,394,1,2020-02-15T06:59:30Z +1814,394,1,2020-02-15T06:59:30Z +1815,394,1,2020-02-15T06:59:30Z +1816,395,1,2020-02-15T06:59:30Z +1817,395,1,2020-02-15T06:59:30Z +1818,395,1,2020-02-15T06:59:30Z +1819,395,2,2020-02-15T06:59:30Z +1820,395,2,2020-02-15T06:59:30Z +1821,395,2,2020-02-15T06:59:30Z +1822,396,2,2020-02-15T06:59:30Z +1823,396,2,2020-02-15T06:59:30Z +1824,396,2,2020-02-15T06:59:30Z +1825,396,2,2020-02-15T06:59:30Z +1826,397,1,2020-02-15T06:59:30Z +1827,397,1,2020-02-15T06:59:30Z +1828,397,1,2020-02-15T06:59:30Z +1829,397,2,2020-02-15T06:59:30Z +1830,397,2,2020-02-15T06:59:30Z +1831,397,2,2020-02-15T06:59:30Z +1832,397,2,2020-02-15T06:59:30Z +1833,398,2,2020-02-15T06:59:30Z +1834,398,2,2020-02-15T06:59:30Z +1835,398,2,2020-02-15T06:59:30Z +1836,398,2,2020-02-15T06:59:30Z +1837,399,2,2020-02-15T06:59:30Z +1838,399,2,2020-02-15T06:59:30Z +1839,400,1,2020-02-15T06:59:30Z +1840,400,1,2020-02-15T06:59:30Z +1841,401,1,2020-02-15T06:59:30Z +1842,401,1,2020-02-15T06:59:30Z +1843,402,1,2020-02-15T06:59:30Z +1844,402,1,2020-02-15T06:59:30Z +1845,402,1,2020-02-15T06:59:30Z +1846,402,2,2020-02-15T06:59:30Z +1847,402,2,2020-02-15T06:59:30Z +1848,402,2,2020-02-15T06:59:30Z +1849,403,1,2020-02-15T06:59:30Z +1850,403,1,2020-02-15T06:59:30Z +1851,403,1,2020-02-15T06:59:30Z +1852,403,1,2020-02-15T06:59:30Z +1853,403,2,2020-02-15T06:59:30Z +1854,403,2,2020-02-15T06:59:30Z +1855,403,2,2020-02-15T06:59:30Z +1856,403,2,2020-02-15T06:59:30Z +1857,405,2,2020-02-15T06:59:30Z +1858,405,2,2020-02-15T06:59:30Z +1859,406,1,2020-02-15T06:59:30Z +1860,406,1,2020-02-15T06:59:30Z +1861,406,2,2020-02-15T06:59:30Z +1862,406,2,2020-02-15T06:59:30Z +1863,406,2,2020-02-15T06:59:30Z +1864,406,2,2020-02-15T06:59:30Z +1865,407,1,2020-02-15T06:59:30Z +1866,407,1,2020-02-15T06:59:30Z +1867,408,1,2020-02-15T06:59:30Z +1868,408,1,2020-02-15T06:59:30Z +1869,408,1,2020-02-15T06:59:30Z +1870,408,1,2020-02-15T06:59:30Z +1871,408,2,2020-02-15T06:59:30Z +1872,408,2,2020-02-15T06:59:30Z +1873,408,2,2020-02-15T06:59:30Z +1874,409,1,2020-02-15T06:59:30Z +1875,409,1,2020-02-15T06:59:30Z +1876,409,1,2020-02-15T06:59:30Z +1877,409,1,2020-02-15T06:59:30Z +1878,409,2,2020-02-15T06:59:30Z +1879,409,2,2020-02-15T06:59:30Z +1880,409,2,2020-02-15T06:59:30Z +1881,410,1,2020-02-15T06:59:30Z +1882,410,1,2020-02-15T06:59:30Z +1883,410,1,2020-02-15T06:59:30Z +1884,410,2,2020-02-15T06:59:30Z +1885,410,2,2020-02-15T06:59:30Z +1886,411,1,2020-02-15T06:59:30Z +1887,411,1,2020-02-15T06:59:30Z +1888,412,1,2020-02-15T06:59:30Z +1889,412,1,2020-02-15T06:59:30Z +1890,412,1,2020-02-15T06:59:30Z +1891,412,1,2020-02-15T06:59:30Z +1892,412,2,2020-02-15T06:59:30Z +1893,412,2,2020-02-15T06:59:30Z +1894,412,2,2020-02-15T06:59:30Z +1895,412,2,2020-02-15T06:59:30Z +1896,413,1,2020-02-15T06:59:30Z +1897,413,1,2020-02-15T06:59:30Z +1898,413,1,2020-02-15T06:59:30Z +1899,414,1,2020-02-15T06:59:30Z +1900,414,1,2020-02-15T06:59:30Z +1901,414,1,2020-02-15T06:59:30Z +1902,414,2,2020-02-15T06:59:30Z +1903,414,2,2020-02-15T06:59:30Z +1904,414,2,2020-02-15T06:59:30Z +1905,415,1,2020-02-15T06:59:30Z +1906,415,1,2020-02-15T06:59:30Z +1907,415,1,2020-02-15T06:59:30Z +1908,415,2,2020-02-15T06:59:30Z +1909,415,2,2020-02-15T06:59:30Z +1910,415,2,2020-02-15T06:59:30Z +1911,416,1,2020-02-15T06:59:30Z +1912,416,1,2020-02-15T06:59:30Z +1913,416,2,2020-02-15T06:59:30Z +1914,416,2,2020-02-15T06:59:30Z +1915,416,2,2020-02-15T06:59:30Z +1916,416,2,2020-02-15T06:59:30Z +1917,417,1,2020-02-15T06:59:30Z +1918,417,1,2020-02-15T06:59:30Z +1919,417,1,2020-02-15T06:59:30Z +1920,417,1,2020-02-15T06:59:30Z +1921,417,2,2020-02-15T06:59:30Z +1922,417,2,2020-02-15T06:59:30Z +1923,418,1,2020-02-15T06:59:30Z +1924,418,1,2020-02-15T06:59:30Z +1925,418,1,2020-02-15T06:59:30Z +1926,418,1,2020-02-15T06:59:30Z +1927,418,2,2020-02-15T06:59:30Z +1928,418,2,2020-02-15T06:59:30Z +1929,418,2,2020-02-15T06:59:30Z +1930,418,2,2020-02-15T06:59:30Z +1931,420,1,2020-02-15T06:59:30Z +1932,420,1,2020-02-15T06:59:30Z +1933,420,2,2020-02-15T06:59:30Z +1934,420,2,2020-02-15T06:59:30Z +1935,420,2,2020-02-15T06:59:30Z +1936,421,2,2020-02-15T06:59:30Z +1937,421,2,2020-02-15T06:59:30Z +1938,421,2,2020-02-15T06:59:30Z +1939,421,2,2020-02-15T06:59:30Z +1940,422,2,2020-02-15T06:59:30Z +1941,422,2,2020-02-15T06:59:30Z +1942,423,1,2020-02-15T06:59:30Z +1943,423,1,2020-02-15T06:59:30Z +1944,423,2,2020-02-15T06:59:30Z +1945,423,2,2020-02-15T06:59:30Z +1946,424,1,2020-02-15T06:59:30Z +1947,424,1,2020-02-15T06:59:30Z +1948,424,1,2020-02-15T06:59:30Z +1949,424,2,2020-02-15T06:59:30Z +1950,424,2,2020-02-15T06:59:30Z +1951,425,2,2020-02-15T06:59:30Z +1952,425,2,2020-02-15T06:59:30Z +1953,426,2,2020-02-15T06:59:30Z +1954,426,2,2020-02-15T06:59:30Z +1955,426,2,2020-02-15T06:59:30Z +1956,427,1,2020-02-15T06:59:30Z +1957,427,1,2020-02-15T06:59:30Z +1958,427,1,2020-02-15T06:59:30Z +1959,427,1,2020-02-15T06:59:30Z +1960,428,1,2020-02-15T06:59:30Z +1961,428,1,2020-02-15T06:59:30Z +1962,428,1,2020-02-15T06:59:30Z +1963,428,1,2020-02-15T06:59:30Z +1964,428,2,2020-02-15T06:59:30Z +1965,428,2,2020-02-15T06:59:30Z +1966,429,1,2020-02-15T06:59:30Z +1967,429,1,2020-02-15T06:59:30Z +1968,429,2,2020-02-15T06:59:30Z +1969,429,2,2020-02-15T06:59:30Z +1970,429,2,2020-02-15T06:59:30Z +1971,429,2,2020-02-15T06:59:30Z +1972,430,2,2020-02-15T06:59:30Z +1973,430,2,2020-02-15T06:59:30Z +1974,430,2,2020-02-15T06:59:30Z +1975,430,2,2020-02-15T06:59:30Z +1976,431,2,2020-02-15T06:59:30Z +1977,431,2,2020-02-15T06:59:30Z +1978,431,2,2020-02-15T06:59:30Z +1979,432,1,2020-02-15T06:59:30Z +1980,432,1,2020-02-15T06:59:30Z +1981,432,1,2020-02-15T06:59:30Z +1982,432,2,2020-02-15T06:59:30Z +1983,432,2,2020-02-15T06:59:30Z +1984,433,1,2020-02-15T06:59:30Z +1985,433,1,2020-02-15T06:59:30Z +1986,433,1,2020-02-15T06:59:30Z +1987,433,1,2020-02-15T06:59:30Z +1988,433,2,2020-02-15T06:59:30Z +1989,433,2,2020-02-15T06:59:30Z +1990,434,1,2020-02-15T06:59:30Z +1991,434,1,2020-02-15T06:59:30Z +1992,434,1,2020-02-15T06:59:30Z +1993,434,1,2020-02-15T06:59:30Z +1994,434,2,2020-02-15T06:59:30Z +1995,434,2,2020-02-15T06:59:30Z +1996,434,2,2020-02-15T06:59:30Z +1997,434,2,2020-02-15T06:59:30Z +1998,435,1,2020-02-15T06:59:30Z +1999,435,1,2020-02-15T06:59:30Z +2000,436,1,2020-02-15T06:59:30Z +2001,436,1,2020-02-15T06:59:30Z +2002,436,1,2020-02-15T06:59:30Z +2003,436,2,2020-02-15T06:59:30Z +2004,436,2,2020-02-15T06:59:30Z +2005,436,2,2020-02-15T06:59:30Z +2006,437,1,2020-02-15T06:59:30Z +2007,437,1,2020-02-15T06:59:30Z +2008,437,2,2020-02-15T06:59:30Z +2009,437,2,2020-02-15T06:59:30Z +2010,437,2,2020-02-15T06:59:30Z +2011,437,2,2020-02-15T06:59:30Z +2012,438,1,2020-02-15T06:59:30Z +2013,438,1,2020-02-15T06:59:30Z +2014,438,2,2020-02-15T06:59:30Z +2015,438,2,2020-02-15T06:59:30Z +2016,438,2,2020-02-15T06:59:30Z +2017,439,1,2020-02-15T06:59:30Z +2018,439,1,2020-02-15T06:59:30Z +2019,439,1,2020-02-15T06:59:30Z +2020,439,1,2020-02-15T06:59:30Z +2021,439,2,2020-02-15T06:59:30Z +2022,439,2,2020-02-15T06:59:30Z +2023,440,1,2020-02-15T06:59:30Z +2024,440,1,2020-02-15T06:59:30Z +2025,440,2,2020-02-15T06:59:30Z +2026,440,2,2020-02-15T06:59:30Z +2027,441,1,2020-02-15T06:59:30Z +2028,441,1,2020-02-15T06:59:30Z +2029,442,1,2020-02-15T06:59:30Z +2030,442,1,2020-02-15T06:59:30Z +2031,442,1,2020-02-15T06:59:30Z +2032,443,1,2020-02-15T06:59:30Z +2033,443,1,2020-02-15T06:59:30Z +2034,443,1,2020-02-15T06:59:30Z +2035,443,2,2020-02-15T06:59:30Z +2036,443,2,2020-02-15T06:59:30Z +2037,443,2,2020-02-15T06:59:30Z +2038,443,2,2020-02-15T06:59:30Z +2039,444,1,2020-02-15T06:59:30Z +2040,444,1,2020-02-15T06:59:30Z +2041,444,1,2020-02-15T06:59:30Z +2042,444,1,2020-02-15T06:59:30Z +2043,444,2,2020-02-15T06:59:30Z +2044,444,2,2020-02-15T06:59:30Z +2045,444,2,2020-02-15T06:59:30Z +2046,444,2,2020-02-15T06:59:30Z +2047,445,1,2020-02-15T06:59:30Z +2048,445,1,2020-02-15T06:59:30Z +2049,445,1,2020-02-15T06:59:30Z +2050,445,2,2020-02-15T06:59:30Z +2051,445,2,2020-02-15T06:59:30Z +2052,445,2,2020-02-15T06:59:30Z +2053,446,1,2020-02-15T06:59:30Z +2054,446,1,2020-02-15T06:59:30Z +2055,446,2,2020-02-15T06:59:30Z +2056,446,2,2020-02-15T06:59:30Z +2057,447,1,2020-02-15T06:59:30Z +2058,447,1,2020-02-15T06:59:30Z +2059,447,1,2020-02-15T06:59:30Z +2060,447,1,2020-02-15T06:59:30Z +2061,447,2,2020-02-15T06:59:30Z +2062,447,2,2020-02-15T06:59:30Z +2063,447,2,2020-02-15T06:59:30Z +2064,448,1,2020-02-15T06:59:30Z +2065,448,1,2020-02-15T06:59:30Z +2066,448,2,2020-02-15T06:59:30Z +2067,448,2,2020-02-15T06:59:30Z +2068,448,2,2020-02-15T06:59:30Z +2069,449,2,2020-02-15T06:59:30Z +2070,449,2,2020-02-15T06:59:30Z +2071,449,2,2020-02-15T06:59:30Z +2072,449,2,2020-02-15T06:59:30Z +2073,450,1,2020-02-15T06:59:30Z +2074,450,1,2020-02-15T06:59:30Z +2075,450,1,2020-02-15T06:59:30Z +2076,450,2,2020-02-15T06:59:30Z +2077,450,2,2020-02-15T06:59:30Z +2078,450,2,2020-02-15T06:59:30Z +2079,450,2,2020-02-15T06:59:30Z +2080,451,1,2020-02-15T06:59:30Z +2081,451,1,2020-02-15T06:59:30Z +2082,451,2,2020-02-15T06:59:30Z +2083,451,2,2020-02-15T06:59:30Z +2084,451,2,2020-02-15T06:59:30Z +2085,452,2,2020-02-15T06:59:30Z +2086,452,2,2020-02-15T06:59:30Z +2087,452,2,2020-02-15T06:59:30Z +2088,452,2,2020-02-15T06:59:30Z +2089,453,1,2020-02-15T06:59:30Z +2090,453,1,2020-02-15T06:59:30Z +2091,453,1,2020-02-15T06:59:30Z +2092,453,2,2020-02-15T06:59:30Z +2093,453,2,2020-02-15T06:59:30Z +2094,454,1,2020-02-15T06:59:30Z +2095,454,1,2020-02-15T06:59:30Z +2096,455,1,2020-02-15T06:59:30Z +2097,455,1,2020-02-15T06:59:30Z +2098,455,1,2020-02-15T06:59:30Z +2099,455,1,2020-02-15T06:59:30Z +2100,456,1,2020-02-15T06:59:30Z +2101,456,1,2020-02-15T06:59:30Z +2102,456,2,2020-02-15T06:59:30Z +2103,456,2,2020-02-15T06:59:30Z +2104,456,2,2020-02-15T06:59:30Z +2105,456,2,2020-02-15T06:59:30Z +2106,457,1,2020-02-15T06:59:30Z +2107,457,1,2020-02-15T06:59:30Z +2108,457,2,2020-02-15T06:59:30Z +2109,457,2,2020-02-15T06:59:30Z +2110,457,2,2020-02-15T06:59:30Z +2111,457,2,2020-02-15T06:59:30Z +2112,458,1,2020-02-15T06:59:30Z +2113,458,1,2020-02-15T06:59:30Z +2114,458,2,2020-02-15T06:59:30Z +2115,458,2,2020-02-15T06:59:30Z +2116,458,2,2020-02-15T06:59:30Z +2117,458,2,2020-02-15T06:59:30Z +2118,459,2,2020-02-15T06:59:30Z +2119,459,2,2020-02-15T06:59:30Z +2120,460,1,2020-02-15T06:59:30Z +2121,460,1,2020-02-15T06:59:30Z +2122,460,1,2020-02-15T06:59:30Z +2123,460,1,2020-02-15T06:59:30Z +2124,460,2,2020-02-15T06:59:30Z +2125,460,2,2020-02-15T06:59:30Z +2126,460,2,2020-02-15T06:59:30Z +2127,460,2,2020-02-15T06:59:30Z +2128,461,1,2020-02-15T06:59:30Z +2129,461,1,2020-02-15T06:59:30Z +2130,461,2,2020-02-15T06:59:30Z +2131,461,2,2020-02-15T06:59:30Z +2132,461,2,2020-02-15T06:59:30Z +2133,461,2,2020-02-15T06:59:30Z +2134,462,1,2020-02-15T06:59:30Z +2135,462,1,2020-02-15T06:59:30Z +2136,462,2,2020-02-15T06:59:30Z +2137,462,2,2020-02-15T06:59:30Z +2138,462,2,2020-02-15T06:59:30Z +2139,463,1,2020-02-15T06:59:30Z +2140,463,1,2020-02-15T06:59:30Z +2141,463,1,2020-02-15T06:59:30Z +2142,463,2,2020-02-15T06:59:30Z +2143,463,2,2020-02-15T06:59:30Z +2144,464,1,2020-02-15T06:59:30Z +2145,464,1,2020-02-15T06:59:30Z +2146,464,1,2020-02-15T06:59:30Z +2147,464,1,2020-02-15T06:59:30Z +2148,464,2,2020-02-15T06:59:30Z +2149,464,2,2020-02-15T06:59:30Z +2150,464,2,2020-02-15T06:59:30Z +2151,465,1,2020-02-15T06:59:30Z +2152,465,1,2020-02-15T06:59:30Z +2153,465,2,2020-02-15T06:59:30Z +2154,465,2,2020-02-15T06:59:30Z +2155,465,2,2020-02-15T06:59:30Z +2156,466,1,2020-02-15T06:59:30Z +2157,466,1,2020-02-15T06:59:30Z +2158,467,1,2020-02-15T06:59:30Z +2159,467,1,2020-02-15T06:59:30Z +2160,467,1,2020-02-15T06:59:30Z +2161,467,1,2020-02-15T06:59:30Z +2162,467,2,2020-02-15T06:59:30Z +2163,467,2,2020-02-15T06:59:30Z +2164,467,2,2020-02-15T06:59:30Z +2165,468,1,2020-02-15T06:59:30Z +2166,468,1,2020-02-15T06:59:30Z +2167,468,1,2020-02-15T06:59:30Z +2168,468,1,2020-02-15T06:59:30Z +2169,468,2,2020-02-15T06:59:30Z +2170,468,2,2020-02-15T06:59:30Z +2171,468,2,2020-02-15T06:59:30Z +2172,468,2,2020-02-15T06:59:30Z +2173,469,2,2020-02-15T06:59:30Z +2174,469,2,2020-02-15T06:59:30Z +2175,469,2,2020-02-15T06:59:30Z +2176,470,1,2020-02-15T06:59:30Z +2177,470,1,2020-02-15T06:59:30Z +2178,471,1,2020-02-15T06:59:30Z +2179,471,1,2020-02-15T06:59:30Z +2180,471,1,2020-02-15T06:59:30Z +2181,471,2,2020-02-15T06:59:30Z +2182,471,2,2020-02-15T06:59:30Z +2183,471,2,2020-02-15T06:59:30Z +2184,471,2,2020-02-15T06:59:30Z +2185,472,2,2020-02-15T06:59:30Z +2186,472,2,2020-02-15T06:59:30Z +2187,473,1,2020-02-15T06:59:30Z +2188,473,1,2020-02-15T06:59:30Z +2189,473,2,2020-02-15T06:59:30Z +2190,473,2,2020-02-15T06:59:30Z +2191,473,2,2020-02-15T06:59:30Z +2192,474,2,2020-02-15T06:59:30Z +2193,474,2,2020-02-15T06:59:30Z +2194,474,2,2020-02-15T06:59:30Z +2195,474,2,2020-02-15T06:59:30Z +2196,475,2,2020-02-15T06:59:30Z +2197,475,2,2020-02-15T06:59:30Z +2198,476,1,2020-02-15T06:59:30Z +2199,476,1,2020-02-15T06:59:30Z +2200,476,1,2020-02-15T06:59:30Z +2201,476,2,2020-02-15T06:59:30Z +2202,476,2,2020-02-15T06:59:30Z +2203,476,2,2020-02-15T06:59:30Z +2204,476,2,2020-02-15T06:59:30Z +2205,477,2,2020-02-15T06:59:30Z +2206,477,2,2020-02-15T06:59:30Z +2207,477,2,2020-02-15T06:59:30Z +2208,478,1,2020-02-15T06:59:30Z +2209,478,1,2020-02-15T06:59:30Z +2210,478,2,2020-02-15T06:59:30Z +2211,478,2,2020-02-15T06:59:30Z +2212,478,2,2020-02-15T06:59:30Z +2213,479,1,2020-02-15T06:59:30Z +2214,479,1,2020-02-15T06:59:30Z +2215,479,2,2020-02-15T06:59:30Z +2216,479,2,2020-02-15T06:59:30Z +2217,479,2,2020-02-15T06:59:30Z +2218,480,1,2020-02-15T06:59:30Z +2219,480,1,2020-02-15T06:59:30Z +2220,480,2,2020-02-15T06:59:30Z +2221,480,2,2020-02-15T06:59:30Z +2222,481,1,2020-02-15T06:59:30Z +2223,481,1,2020-02-15T06:59:30Z +2224,481,1,2020-02-15T06:59:30Z +2225,481,2,2020-02-15T06:59:30Z +2226,481,2,2020-02-15T06:59:30Z +2227,481,2,2020-02-15T06:59:30Z +2228,482,1,2020-02-15T06:59:30Z +2229,482,1,2020-02-15T06:59:30Z +2230,482,1,2020-02-15T06:59:30Z +2231,483,1,2020-02-15T06:59:30Z +2232,483,1,2020-02-15T06:59:30Z +2233,483,1,2020-02-15T06:59:30Z +2234,483,2,2020-02-15T06:59:30Z +2235,483,2,2020-02-15T06:59:30Z +2236,484,1,2020-02-15T06:59:30Z +2237,484,1,2020-02-15T06:59:30Z +2238,484,1,2020-02-15T06:59:30Z +2239,484,1,2020-02-15T06:59:30Z +2240,484,2,2020-02-15T06:59:30Z +2241,484,2,2020-02-15T06:59:30Z +2242,484,2,2020-02-15T06:59:30Z +2243,485,2,2020-02-15T06:59:30Z +2244,485,2,2020-02-15T06:59:30Z +2245,485,2,2020-02-15T06:59:30Z +2246,486,1,2020-02-15T06:59:30Z +2247,486,1,2020-02-15T06:59:30Z +2248,486,1,2020-02-15T06:59:30Z +2249,486,1,2020-02-15T06:59:30Z +2250,486,2,2020-02-15T06:59:30Z +2251,486,2,2020-02-15T06:59:30Z +2252,487,2,2020-02-15T06:59:30Z +2253,487,2,2020-02-15T06:59:30Z +2254,487,2,2020-02-15T06:59:30Z +2255,488,1,2020-02-15T06:59:30Z +2256,488,1,2020-02-15T06:59:30Z +2257,488,2,2020-02-15T06:59:30Z +2258,488,2,2020-02-15T06:59:30Z +2259,488,2,2020-02-15T06:59:30Z +2260,489,1,2020-02-15T06:59:30Z +2261,489,1,2020-02-15T06:59:30Z +2262,489,1,2020-02-15T06:59:30Z +2263,489,1,2020-02-15T06:59:30Z +2264,489,2,2020-02-15T06:59:30Z +2265,489,2,2020-02-15T06:59:30Z +2266,489,2,2020-02-15T06:59:30Z +2267,489,2,2020-02-15T06:59:30Z +2268,490,1,2020-02-15T06:59:30Z +2269,490,1,2020-02-15T06:59:30Z +2270,491,1,2020-02-15T06:59:30Z +2271,491,1,2020-02-15T06:59:30Z +2272,491,2,2020-02-15T06:59:30Z +2273,491,2,2020-02-15T06:59:30Z +2274,491,2,2020-02-15T06:59:30Z +2275,491,2,2020-02-15T06:59:30Z +2276,492,1,2020-02-15T06:59:30Z +2277,492,1,2020-02-15T06:59:30Z +2278,493,2,2020-02-15T06:59:30Z +2279,493,2,2020-02-15T06:59:30Z +2280,493,2,2020-02-15T06:59:30Z +2281,494,1,2020-02-15T06:59:30Z +2282,494,1,2020-02-15T06:59:30Z +2283,494,1,2020-02-15T06:59:30Z +2284,494,1,2020-02-15T06:59:30Z +2285,494,2,2020-02-15T06:59:30Z +2286,494,2,2020-02-15T06:59:30Z +2287,496,1,2020-02-15T06:59:30Z +2288,496,1,2020-02-15T06:59:30Z +2289,496,2,2020-02-15T06:59:30Z +2290,496,2,2020-02-15T06:59:30Z +2291,496,2,2020-02-15T06:59:30Z +2292,498,1,2020-02-15T06:59:30Z +2293,498,1,2020-02-15T06:59:30Z +2294,499,1,2020-02-15T06:59:30Z +2295,499,1,2020-02-15T06:59:30Z +2296,500,1,2020-02-15T06:59:30Z +2297,500,1,2020-02-15T06:59:30Z +2298,500,1,2020-02-15T06:59:30Z +2299,500,1,2020-02-15T06:59:30Z +2300,500,2,2020-02-15T06:59:30Z +2301,500,2,2020-02-15T06:59:30Z +2302,500,2,2020-02-15T06:59:30Z +2303,500,2,2020-02-15T06:59:30Z +2304,501,1,2020-02-15T06:59:30Z +2305,501,1,2020-02-15T06:59:30Z +2306,501,1,2020-02-15T06:59:30Z +2307,501,2,2020-02-15T06:59:30Z +2308,501,2,2020-02-15T06:59:30Z +2309,502,1,2020-02-15T06:59:30Z +2310,502,1,2020-02-15T06:59:30Z +2311,502,1,2020-02-15T06:59:30Z +2312,502,1,2020-02-15T06:59:30Z +2313,502,2,2020-02-15T06:59:30Z +2314,502,2,2020-02-15T06:59:30Z +2315,502,2,2020-02-15T06:59:30Z +2316,503,1,2020-02-15T06:59:30Z +2317,503,1,2020-02-15T06:59:30Z +2318,503,1,2020-02-15T06:59:30Z +2319,504,1,2020-02-15T06:59:30Z +2320,504,1,2020-02-15T06:59:30Z +2321,504,1,2020-02-15T06:59:30Z +2322,504,1,2020-02-15T06:59:30Z +2323,504,2,2020-02-15T06:59:30Z +2324,504,2,2020-02-15T06:59:30Z +2325,505,2,2020-02-15T06:59:30Z +2326,505,2,2020-02-15T06:59:30Z +2327,505,2,2020-02-15T06:59:30Z +2328,505,2,2020-02-15T06:59:30Z +2329,506,1,2020-02-15T06:59:30Z +2330,506,1,2020-02-15T06:59:30Z +2331,506,1,2020-02-15T06:59:30Z +2332,506,1,2020-02-15T06:59:30Z +2333,506,2,2020-02-15T06:59:30Z +2334,506,2,2020-02-15T06:59:30Z +2335,507,2,2020-02-15T06:59:30Z +2336,507,2,2020-02-15T06:59:30Z +2337,508,2,2020-02-15T06:59:30Z +2338,508,2,2020-02-15T06:59:30Z +2339,508,2,2020-02-15T06:59:30Z +2340,509,2,2020-02-15T06:59:30Z +2341,509,2,2020-02-15T06:59:30Z +2342,509,2,2020-02-15T06:59:30Z +2343,510,1,2020-02-15T06:59:30Z +2344,510,1,2020-02-15T06:59:30Z +2345,510,1,2020-02-15T06:59:30Z +2346,510,1,2020-02-15T06:59:30Z +2347,511,1,2020-02-15T06:59:30Z +2348,511,1,2020-02-15T06:59:30Z +2349,511,2,2020-02-15T06:59:30Z +2350,511,2,2020-02-15T06:59:30Z +2351,511,2,2020-02-15T06:59:30Z +2352,512,1,2020-02-15T06:59:30Z +2353,512,1,2020-02-15T06:59:30Z +2354,512,2,2020-02-15T06:59:30Z +2355,512,2,2020-02-15T06:59:30Z +2356,512,2,2020-02-15T06:59:30Z +2357,512,2,2020-02-15T06:59:30Z +2358,513,2,2020-02-15T06:59:30Z +2359,513,2,2020-02-15T06:59:30Z +2360,514,1,2020-02-15T06:59:30Z +2361,514,1,2020-02-15T06:59:30Z +2362,514,2,2020-02-15T06:59:30Z +2363,514,2,2020-02-15T06:59:30Z +2364,514,2,2020-02-15T06:59:30Z +2365,514,2,2020-02-15T06:59:30Z +2366,515,2,2020-02-15T06:59:30Z +2367,515,2,2020-02-15T06:59:30Z +2368,516,2,2020-02-15T06:59:30Z +2369,516,2,2020-02-15T06:59:30Z +2370,516,2,2020-02-15T06:59:30Z +2371,517,2,2020-02-15T06:59:30Z +2372,517,2,2020-02-15T06:59:30Z +2373,518,1,2020-02-15T06:59:30Z +2374,518,1,2020-02-15T06:59:30Z +2375,518,2,2020-02-15T06:59:30Z +2376,518,2,2020-02-15T06:59:30Z +2377,518,2,2020-02-15T06:59:30Z +2378,518,2,2020-02-15T06:59:30Z +2379,519,2,2020-02-15T06:59:30Z +2380,519,2,2020-02-15T06:59:30Z +2381,519,2,2020-02-15T06:59:30Z +2382,519,2,2020-02-15T06:59:30Z +2383,520,1,2020-02-15T06:59:30Z +2384,520,1,2020-02-15T06:59:30Z +2385,521,1,2020-02-15T06:59:30Z +2386,521,1,2020-02-15T06:59:30Z +2387,521,1,2020-02-15T06:59:30Z +2388,521,1,2020-02-15T06:59:30Z +2389,521,2,2020-02-15T06:59:30Z +2390,521,2,2020-02-15T06:59:30Z +2391,521,2,2020-02-15T06:59:30Z +2392,522,2,2020-02-15T06:59:30Z +2393,522,2,2020-02-15T06:59:30Z +2394,523,1,2020-02-15T06:59:30Z +2395,523,1,2020-02-15T06:59:30Z +2396,524,1,2020-02-15T06:59:30Z +2397,524,1,2020-02-15T06:59:30Z +2398,524,2,2020-02-15T06:59:30Z +2399,524,2,2020-02-15T06:59:30Z +2400,524,2,2020-02-15T06:59:30Z +2401,524,2,2020-02-15T06:59:30Z +2402,525,1,2020-02-15T06:59:30Z +2403,525,1,2020-02-15T06:59:30Z +2404,525,1,2020-02-15T06:59:30Z +2405,525,1,2020-02-15T06:59:30Z +2406,525,2,2020-02-15T06:59:30Z +2407,525,2,2020-02-15T06:59:30Z +2408,525,2,2020-02-15T06:59:30Z +2409,525,2,2020-02-15T06:59:30Z +2410,526,2,2020-02-15T06:59:30Z +2411,526,2,2020-02-15T06:59:30Z +2412,526,2,2020-02-15T06:59:30Z +2413,526,2,2020-02-15T06:59:30Z +2414,527,1,2020-02-15T06:59:30Z +2415,527,1,2020-02-15T06:59:30Z +2416,527,2,2020-02-15T06:59:30Z +2417,527,2,2020-02-15T06:59:30Z +2418,527,2,2020-02-15T06:59:30Z +2419,527,2,2020-02-15T06:59:30Z +2420,528,1,2020-02-15T06:59:30Z +2421,528,1,2020-02-15T06:59:30Z +2422,528,1,2020-02-15T06:59:30Z +2423,529,1,2020-02-15T06:59:30Z +2424,529,1,2020-02-15T06:59:30Z +2425,529,1,2020-02-15T06:59:30Z +2426,529,1,2020-02-15T06:59:30Z +2427,530,1,2020-02-15T06:59:30Z +2428,530,1,2020-02-15T06:59:30Z +2429,530,1,2020-02-15T06:59:30Z +2430,531,1,2020-02-15T06:59:30Z +2431,531,1,2020-02-15T06:59:30Z +2432,531,1,2020-02-15T06:59:30Z +2433,531,1,2020-02-15T06:59:30Z +2434,531,2,2020-02-15T06:59:30Z +2435,531,2,2020-02-15T06:59:30Z +2436,531,2,2020-02-15T06:59:30Z +2437,531,2,2020-02-15T06:59:30Z +2438,532,2,2020-02-15T06:59:30Z +2439,532,2,2020-02-15T06:59:30Z +2440,532,2,2020-02-15T06:59:30Z +2441,532,2,2020-02-15T06:59:30Z +2442,533,1,2020-02-15T06:59:30Z +2443,533,1,2020-02-15T06:59:30Z +2444,533,1,2020-02-15T06:59:30Z +2445,534,1,2020-02-15T06:59:30Z +2446,534,1,2020-02-15T06:59:30Z +2447,534,2,2020-02-15T06:59:30Z +2448,534,2,2020-02-15T06:59:30Z +2449,534,2,2020-02-15T06:59:31Z +2450,535,1,2020-02-15T06:59:31Z +2451,535,1,2020-02-15T06:59:31Z +2452,535,1,2020-02-15T06:59:31Z +2453,535,1,2020-02-15T06:59:31Z +2454,536,1,2020-02-15T06:59:31Z +2455,536,1,2020-02-15T06:59:31Z +2456,536,1,2020-02-15T06:59:31Z +2457,536,2,2020-02-15T06:59:31Z +2458,536,2,2020-02-15T06:59:31Z +2459,537,2,2020-02-15T06:59:31Z +2460,537,2,2020-02-15T06:59:31Z +2461,537,2,2020-02-15T06:59:31Z +2462,538,2,2020-02-15T06:59:31Z +2463,538,2,2020-02-15T06:59:31Z +2464,538,2,2020-02-15T06:59:31Z +2465,539,1,2020-02-15T06:59:31Z +2466,539,1,2020-02-15T06:59:31Z +2467,540,1,2020-02-15T06:59:31Z +2468,540,1,2020-02-15T06:59:31Z +2469,540,1,2020-02-15T06:59:31Z +2470,541,2,2020-02-15T06:59:31Z +2471,541,2,2020-02-15T06:59:31Z +2472,542,1,2020-02-15T06:59:31Z +2473,542,1,2020-02-15T06:59:31Z +2474,542,1,2020-02-15T06:59:31Z +2475,542,1,2020-02-15T06:59:31Z +2476,542,2,2020-02-15T06:59:31Z +2477,542,2,2020-02-15T06:59:31Z +2478,543,1,2020-02-15T06:59:31Z +2479,543,1,2020-02-15T06:59:31Z +2480,544,1,2020-02-15T06:59:31Z +2481,544,1,2020-02-15T06:59:31Z +2482,544,2,2020-02-15T06:59:31Z +2483,544,2,2020-02-15T06:59:31Z +2484,545,1,2020-02-15T06:59:31Z +2485,545,1,2020-02-15T06:59:31Z +2486,545,1,2020-02-15T06:59:31Z +2487,545,1,2020-02-15T06:59:31Z +2488,545,2,2020-02-15T06:59:31Z +2489,545,2,2020-02-15T06:59:31Z +2490,546,2,2020-02-15T06:59:31Z +2491,546,2,2020-02-15T06:59:31Z +2492,546,2,2020-02-15T06:59:31Z +2493,546,2,2020-02-15T06:59:31Z +2494,547,2,2020-02-15T06:59:31Z +2495,547,2,2020-02-15T06:59:31Z +2496,548,1,2020-02-15T06:59:31Z +2497,548,1,2020-02-15T06:59:31Z +2498,549,1,2020-02-15T06:59:31Z +2499,549,1,2020-02-15T06:59:31Z +2500,549,2,2020-02-15T06:59:31Z +2501,549,2,2020-02-15T06:59:31Z +2502,550,1,2020-02-15T06:59:31Z +2503,550,1,2020-02-15T06:59:31Z +2504,550,1,2020-02-15T06:59:31Z +2505,551,1,2020-02-15T06:59:31Z +2506,551,1,2020-02-15T06:59:31Z +2507,551,1,2020-02-15T06:59:31Z +2508,551,2,2020-02-15T06:59:31Z +2509,551,2,2020-02-15T06:59:31Z +2510,551,2,2020-02-15T06:59:31Z +2511,552,2,2020-02-15T06:59:31Z +2512,552,2,2020-02-15T06:59:31Z +2513,552,2,2020-02-15T06:59:31Z +2514,552,2,2020-02-15T06:59:31Z +2515,553,2,2020-02-15T06:59:31Z +2516,553,2,2020-02-15T06:59:31Z +2517,553,2,2020-02-15T06:59:31Z +2518,554,1,2020-02-15T06:59:31Z +2519,554,1,2020-02-15T06:59:31Z +2520,554,1,2020-02-15T06:59:31Z +2521,554,1,2020-02-15T06:59:31Z +2522,554,2,2020-02-15T06:59:31Z +2523,554,2,2020-02-15T06:59:31Z +2524,554,2,2020-02-15T06:59:31Z +2525,555,1,2020-02-15T06:59:31Z +2526,555,1,2020-02-15T06:59:31Z +2527,555,1,2020-02-15T06:59:31Z +2528,555,2,2020-02-15T06:59:31Z +2529,555,2,2020-02-15T06:59:31Z +2530,555,2,2020-02-15T06:59:31Z +2531,555,2,2020-02-15T06:59:31Z +2532,556,1,2020-02-15T06:59:31Z +2533,556,1,2020-02-15T06:59:31Z +2534,556,1,2020-02-15T06:59:31Z +2535,556,2,2020-02-15T06:59:31Z +2536,556,2,2020-02-15T06:59:31Z +2537,556,2,2020-02-15T06:59:31Z +2538,556,2,2020-02-15T06:59:31Z +2539,557,1,2020-02-15T06:59:31Z +2540,557,1,2020-02-15T06:59:31Z +2541,557,2,2020-02-15T06:59:31Z +2542,557,2,2020-02-15T06:59:31Z +2543,557,2,2020-02-15T06:59:31Z +2544,558,2,2020-02-15T06:59:31Z +2545,558,2,2020-02-15T06:59:31Z +2546,559,1,2020-02-15T06:59:31Z +2547,559,1,2020-02-15T06:59:31Z +2548,559,1,2020-02-15T06:59:31Z +2549,559,1,2020-02-15T06:59:31Z +2550,559,2,2020-02-15T06:59:31Z +2551,559,2,2020-02-15T06:59:31Z +2552,559,2,2020-02-15T06:59:31Z +2553,559,2,2020-02-15T06:59:31Z +2554,560,1,2020-02-15T06:59:31Z +2555,560,1,2020-02-15T06:59:31Z +2556,560,1,2020-02-15T06:59:31Z +2557,560,2,2020-02-15T06:59:31Z +2558,560,2,2020-02-15T06:59:31Z +2559,561,1,2020-02-15T06:59:31Z +2560,561,1,2020-02-15T06:59:31Z +2561,561,1,2020-02-15T06:59:31Z +2562,561,1,2020-02-15T06:59:31Z +2563,562,1,2020-02-15T06:59:31Z +2564,562,1,2020-02-15T06:59:31Z +2565,562,1,2020-02-15T06:59:31Z +2566,562,1,2020-02-15T06:59:31Z +2567,562,2,2020-02-15T06:59:31Z +2568,562,2,2020-02-15T06:59:31Z +2569,563,1,2020-02-15T06:59:31Z +2570,563,1,2020-02-15T06:59:31Z +2571,563,1,2020-02-15T06:59:31Z +2572,563,1,2020-02-15T06:59:31Z +2573,563,2,2020-02-15T06:59:31Z +2574,563,2,2020-02-15T06:59:31Z +2575,563,2,2020-02-15T06:59:31Z +2576,564,2,2020-02-15T06:59:31Z +2577,564,2,2020-02-15T06:59:31Z +2578,564,2,2020-02-15T06:59:31Z +2579,565,1,2020-02-15T06:59:31Z +2580,565,1,2020-02-15T06:59:31Z +2581,566,1,2020-02-15T06:59:31Z +2582,566,1,2020-02-15T06:59:31Z +2583,567,1,2020-02-15T06:59:31Z +2584,567,1,2020-02-15T06:59:31Z +2585,567,2,2020-02-15T06:59:31Z +2586,567,2,2020-02-15T06:59:31Z +2587,568,1,2020-02-15T06:59:31Z +2588,568,1,2020-02-15T06:59:31Z +2589,568,2,2020-02-15T06:59:31Z +2590,568,2,2020-02-15T06:59:31Z +2591,569,1,2020-02-15T06:59:31Z +2592,569,1,2020-02-15T06:59:31Z +2593,570,1,2020-02-15T06:59:31Z +2594,570,1,2020-02-15T06:59:31Z +2595,570,2,2020-02-15T06:59:31Z +2596,570,2,2020-02-15T06:59:31Z +2597,570,2,2020-02-15T06:59:31Z +2598,571,1,2020-02-15T06:59:31Z +2599,571,1,2020-02-15T06:59:31Z +2600,571,2,2020-02-15T06:59:31Z +2601,571,2,2020-02-15T06:59:31Z +2602,571,2,2020-02-15T06:59:31Z +2603,571,2,2020-02-15T06:59:31Z +2604,572,1,2020-02-15T06:59:31Z +2605,572,1,2020-02-15T06:59:31Z +2606,572,1,2020-02-15T06:59:31Z +2607,572,1,2020-02-15T06:59:31Z +2608,572,2,2020-02-15T06:59:31Z +2609,572,2,2020-02-15T06:59:31Z +2610,572,2,2020-02-15T06:59:31Z +2611,572,2,2020-02-15T06:59:31Z +2612,573,1,2020-02-15T06:59:31Z +2613,573,1,2020-02-15T06:59:31Z +2614,573,1,2020-02-15T06:59:31Z +2615,573,1,2020-02-15T06:59:31Z +2616,574,1,2020-02-15T06:59:31Z +2617,574,1,2020-02-15T06:59:31Z +2618,574,2,2020-02-15T06:59:31Z +2619,574,2,2020-02-15T06:59:31Z +2620,574,2,2020-02-15T06:59:31Z +2621,575,1,2020-02-15T06:59:31Z +2622,575,1,2020-02-15T06:59:31Z +2623,575,2,2020-02-15T06:59:31Z +2624,575,2,2020-02-15T06:59:31Z +2625,575,2,2020-02-15T06:59:31Z +2626,575,2,2020-02-15T06:59:31Z +2627,576,2,2020-02-15T06:59:31Z +2628,576,2,2020-02-15T06:59:31Z +2629,576,2,2020-02-15T06:59:31Z +2630,577,1,2020-02-15T06:59:31Z +2631,577,1,2020-02-15T06:59:31Z +2632,577,1,2020-02-15T06:59:31Z +2633,578,1,2020-02-15T06:59:31Z +2634,578,1,2020-02-15T06:59:31Z +2635,578,2,2020-02-15T06:59:31Z +2636,578,2,2020-02-15T06:59:31Z +2637,578,2,2020-02-15T06:59:31Z +2638,579,1,2020-02-15T06:59:31Z +2639,579,1,2020-02-15T06:59:31Z +2640,579,1,2020-02-15T06:59:31Z +2641,579,1,2020-02-15T06:59:31Z +2642,579,2,2020-02-15T06:59:31Z +2643,579,2,2020-02-15T06:59:31Z +2644,579,2,2020-02-15T06:59:31Z +2645,580,1,2020-02-15T06:59:31Z +2646,580,1,2020-02-15T06:59:31Z +2647,580,1,2020-02-15T06:59:31Z +2648,580,1,2020-02-15T06:59:31Z +2649,580,2,2020-02-15T06:59:31Z +2650,580,2,2020-02-15T06:59:31Z +2651,581,1,2020-02-15T06:59:31Z +2652,581,1,2020-02-15T06:59:31Z +2653,581,1,2020-02-15T06:59:31Z +2654,582,2,2020-02-15T06:59:31Z +2655,582,2,2020-02-15T06:59:31Z +2656,583,1,2020-02-15T06:59:31Z +2657,583,1,2020-02-15T06:59:31Z +2658,583,1,2020-02-15T06:59:31Z +2659,583,2,2020-02-15T06:59:31Z +2660,583,2,2020-02-15T06:59:31Z +2661,584,1,2020-02-15T06:59:31Z +2662,584,1,2020-02-15T06:59:31Z +2663,585,2,2020-02-15T06:59:31Z +2664,585,2,2020-02-15T06:59:31Z +2665,585,2,2020-02-15T06:59:31Z +2666,585,2,2020-02-15T06:59:31Z +2667,586,1,2020-02-15T06:59:31Z +2668,586,1,2020-02-15T06:59:31Z +2669,586,1,2020-02-15T06:59:31Z +2670,586,1,2020-02-15T06:59:31Z +2671,586,2,2020-02-15T06:59:31Z +2672,586,2,2020-02-15T06:59:31Z +2673,586,2,2020-02-15T06:59:31Z +2674,586,2,2020-02-15T06:59:31Z +2675,587,1,2020-02-15T06:59:31Z +2676,587,1,2020-02-15T06:59:31Z +2677,587,1,2020-02-15T06:59:31Z +2678,588,2,2020-02-15T06:59:31Z +2679,588,2,2020-02-15T06:59:31Z +2680,588,2,2020-02-15T06:59:31Z +2681,588,2,2020-02-15T06:59:31Z +2682,589,2,2020-02-15T06:59:31Z +2683,589,2,2020-02-15T06:59:31Z +2684,589,2,2020-02-15T06:59:31Z +2685,589,2,2020-02-15T06:59:31Z +2686,590,1,2020-02-15T06:59:31Z +2687,590,1,2020-02-15T06:59:31Z +2688,590,1,2020-02-15T06:59:31Z +2689,590,2,2020-02-15T06:59:31Z +2690,590,2,2020-02-15T06:59:31Z +2691,590,2,2020-02-15T06:59:31Z +2692,590,2,2020-02-15T06:59:31Z +2693,591,2,2020-02-15T06:59:31Z +2694,591,2,2020-02-15T06:59:31Z +2695,591,2,2020-02-15T06:59:31Z +2696,592,1,2020-02-15T06:59:31Z +2697,592,1,2020-02-15T06:59:31Z +2698,592,2,2020-02-15T06:59:31Z +2699,592,2,2020-02-15T06:59:31Z +2700,593,2,2020-02-15T06:59:31Z +2701,593,2,2020-02-15T06:59:31Z +2702,593,2,2020-02-15T06:59:31Z +2703,593,2,2020-02-15T06:59:31Z +2704,594,1,2020-02-15T06:59:31Z +2705,594,1,2020-02-15T06:59:31Z +2706,594,1,2020-02-15T06:59:31Z +2707,595,1,2020-02-15T06:59:31Z +2708,595,1,2020-02-15T06:59:31Z +2709,595,1,2020-02-15T06:59:31Z +2710,595,1,2020-02-15T06:59:31Z +2711,595,2,2020-02-15T06:59:31Z +2712,595,2,2020-02-15T06:59:31Z +2713,595,2,2020-02-15T06:59:31Z +2714,595,2,2020-02-15T06:59:31Z +2715,596,1,2020-02-15T06:59:31Z +2716,596,1,2020-02-15T06:59:31Z +2717,596,2,2020-02-15T06:59:31Z +2718,596,2,2020-02-15T06:59:31Z +2719,596,2,2020-02-15T06:59:31Z +2720,596,2,2020-02-15T06:59:31Z +2721,597,2,2020-02-15T06:59:31Z +2722,597,2,2020-02-15T06:59:31Z +2723,597,2,2020-02-15T06:59:31Z +2724,597,2,2020-02-15T06:59:31Z +2725,598,1,2020-02-15T06:59:31Z +2726,598,1,2020-02-15T06:59:31Z +2727,598,1,2020-02-15T06:59:31Z +2728,598,1,2020-02-15T06:59:31Z +2729,599,1,2020-02-15T06:59:31Z +2730,599,1,2020-02-15T06:59:31Z +2731,599,1,2020-02-15T06:59:31Z +2732,599,2,2020-02-15T06:59:31Z +2733,599,2,2020-02-15T06:59:31Z +2734,600,1,2020-02-15T06:59:31Z +2735,600,1,2020-02-15T06:59:31Z +2736,600,2,2020-02-15T06:59:31Z +2737,600,2,2020-02-15T06:59:31Z +2738,601,1,2020-02-15T06:59:31Z +2739,601,1,2020-02-15T06:59:31Z +2740,601,1,2020-02-15T06:59:31Z +2741,601,2,2020-02-15T06:59:31Z +2742,601,2,2020-02-15T06:59:31Z +2743,602,1,2020-02-15T06:59:31Z +2744,602,1,2020-02-15T06:59:31Z +2745,602,2,2020-02-15T06:59:31Z +2746,602,2,2020-02-15T06:59:31Z +2747,602,2,2020-02-15T06:59:31Z +2748,603,1,2020-02-15T06:59:31Z +2749,603,1,2020-02-15T06:59:31Z +2750,603,1,2020-02-15T06:59:31Z +2751,603,1,2020-02-15T06:59:31Z +2752,603,2,2020-02-15T06:59:31Z +2753,603,2,2020-02-15T06:59:31Z +2754,604,2,2020-02-15T06:59:31Z +2755,604,2,2020-02-15T06:59:31Z +2756,604,2,2020-02-15T06:59:31Z +2757,605,2,2020-02-15T06:59:31Z +2758,605,2,2020-02-15T06:59:31Z +2759,606,1,2020-02-15T06:59:31Z +2760,606,1,2020-02-15T06:59:31Z +2761,606,2,2020-02-15T06:59:31Z +2762,606,2,2020-02-15T06:59:31Z +2763,606,2,2020-02-15T06:59:31Z +2764,606,2,2020-02-15T06:59:31Z +2765,608,1,2020-02-15T06:59:31Z +2766,608,1,2020-02-15T06:59:31Z +2767,608,2,2020-02-15T06:59:31Z +2768,608,2,2020-02-15T06:59:31Z +2769,608,2,2020-02-15T06:59:31Z +2770,608,2,2020-02-15T06:59:31Z +2771,609,1,2020-02-15T06:59:31Z +2772,609,1,2020-02-15T06:59:31Z +2773,609,1,2020-02-15T06:59:31Z +2774,609,1,2020-02-15T06:59:31Z +2775,609,2,2020-02-15T06:59:31Z +2776,609,2,2020-02-15T06:59:31Z +2777,609,2,2020-02-15T06:59:31Z +2778,609,2,2020-02-15T06:59:31Z +2779,610,1,2020-02-15T06:59:31Z +2780,610,1,2020-02-15T06:59:31Z +2781,610,2,2020-02-15T06:59:31Z +2782,610,2,2020-02-15T06:59:31Z +2783,610,2,2020-02-15T06:59:31Z +2784,611,1,2020-02-15T06:59:31Z +2785,611,1,2020-02-15T06:59:31Z +2786,611,1,2020-02-15T06:59:31Z +2787,611,1,2020-02-15T06:59:31Z +2788,611,2,2020-02-15T06:59:31Z +2789,611,2,2020-02-15T06:59:31Z +2790,612,2,2020-02-15T06:59:31Z +2791,612,2,2020-02-15T06:59:31Z +2792,613,1,2020-02-15T06:59:31Z +2793,613,1,2020-02-15T06:59:31Z +2794,614,1,2020-02-15T06:59:31Z +2795,614,1,2020-02-15T06:59:31Z +2796,614,1,2020-02-15T06:59:31Z +2797,614,2,2020-02-15T06:59:31Z +2798,614,2,2020-02-15T06:59:31Z +2799,614,2,2020-02-15T06:59:31Z +2800,615,2,2020-02-15T06:59:31Z +2801,615,2,2020-02-15T06:59:31Z +2802,615,2,2020-02-15T06:59:31Z +2803,615,2,2020-02-15T06:59:31Z +2804,616,1,2020-02-15T06:59:31Z +2805,616,1,2020-02-15T06:59:31Z +2806,616,2,2020-02-15T06:59:31Z +2807,616,2,2020-02-15T06:59:31Z +2808,616,2,2020-02-15T06:59:31Z +2809,616,2,2020-02-15T06:59:31Z +2810,617,1,2020-02-15T06:59:31Z +2811,617,1,2020-02-15T06:59:31Z +2812,617,1,2020-02-15T06:59:31Z +2813,618,2,2020-02-15T06:59:31Z +2814,618,2,2020-02-15T06:59:31Z +2815,618,2,2020-02-15T06:59:31Z +2816,618,2,2020-02-15T06:59:31Z +2817,619,1,2020-02-15T06:59:31Z +2818,619,1,2020-02-15T06:59:31Z +2819,619,2,2020-02-15T06:59:31Z +2820,619,2,2020-02-15T06:59:31Z +2821,619,2,2020-02-15T06:59:31Z +2822,619,2,2020-02-15T06:59:31Z +2823,620,1,2020-02-15T06:59:31Z +2824,620,1,2020-02-15T06:59:31Z +2825,620,2,2020-02-15T06:59:31Z +2826,620,2,2020-02-15T06:59:31Z +2827,620,2,2020-02-15T06:59:31Z +2828,621,1,2020-02-15T06:59:31Z +2829,621,1,2020-02-15T06:59:31Z +2830,621,1,2020-02-15T06:59:31Z +2831,621,1,2020-02-15T06:59:31Z +2832,621,2,2020-02-15T06:59:31Z +2833,621,2,2020-02-15T06:59:31Z +2834,621,2,2020-02-15T06:59:31Z +2835,621,2,2020-02-15T06:59:31Z +2836,622,2,2020-02-15T06:59:31Z +2837,622,2,2020-02-15T06:59:31Z +2838,623,1,2020-02-15T06:59:31Z +2839,623,1,2020-02-15T06:59:31Z +2840,623,2,2020-02-15T06:59:31Z +2841,623,2,2020-02-15T06:59:31Z +2842,623,2,2020-02-15T06:59:31Z +2843,624,1,2020-02-15T06:59:31Z +2844,624,1,2020-02-15T06:59:31Z +2845,624,1,2020-02-15T06:59:31Z +2846,624,2,2020-02-15T06:59:31Z +2847,624,2,2020-02-15T06:59:31Z +2848,624,2,2020-02-15T06:59:31Z +2849,624,2,2020-02-15T06:59:31Z +2850,625,1,2020-02-15T06:59:31Z +2851,625,1,2020-02-15T06:59:31Z +2852,625,1,2020-02-15T06:59:31Z +2853,625,2,2020-02-15T06:59:31Z +2854,625,2,2020-02-15T06:59:31Z +2855,625,2,2020-02-15T06:59:31Z +2856,625,2,2020-02-15T06:59:31Z +2857,626,2,2020-02-15T06:59:31Z +2858,626,2,2020-02-15T06:59:31Z +2859,626,2,2020-02-15T06:59:31Z +2860,626,2,2020-02-15T06:59:31Z +2861,627,2,2020-02-15T06:59:31Z +2862,627,2,2020-02-15T06:59:31Z +2863,627,2,2020-02-15T06:59:31Z +2864,628,1,2020-02-15T06:59:31Z +2865,628,1,2020-02-15T06:59:31Z +2866,628,1,2020-02-15T06:59:31Z +2867,628,2,2020-02-15T06:59:31Z +2868,628,2,2020-02-15T06:59:31Z +2869,629,2,2020-02-15T06:59:31Z +2870,629,2,2020-02-15T06:59:31Z +2871,629,2,2020-02-15T06:59:31Z +2872,629,2,2020-02-15T06:59:31Z +2873,630,2,2020-02-15T06:59:31Z +2874,630,2,2020-02-15T06:59:31Z +2875,630,2,2020-02-15T06:59:31Z +2876,631,1,2020-02-15T06:59:31Z +2877,631,1,2020-02-15T06:59:31Z +2878,631,1,2020-02-15T06:59:31Z +2879,631,2,2020-02-15T06:59:31Z +2880,631,2,2020-02-15T06:59:31Z +2881,632,1,2020-02-15T06:59:31Z +2882,632,1,2020-02-15T06:59:31Z +2883,632,1,2020-02-15T06:59:31Z +2884,633,2,2020-02-15T06:59:31Z +2885,633,2,2020-02-15T06:59:31Z +2886,633,2,2020-02-15T06:59:31Z +2887,634,2,2020-02-15T06:59:31Z +2888,634,2,2020-02-15T06:59:31Z +2889,634,2,2020-02-15T06:59:31Z +2890,634,2,2020-02-15T06:59:31Z +2891,635,2,2020-02-15T06:59:31Z +2892,635,2,2020-02-15T06:59:31Z +2893,636,1,2020-02-15T06:59:31Z +2894,636,1,2020-02-15T06:59:31Z +2895,636,1,2020-02-15T06:59:31Z +2896,637,1,2020-02-15T06:59:31Z +2897,637,1,2020-02-15T06:59:31Z +2898,637,2,2020-02-15T06:59:31Z +2899,637,2,2020-02-15T06:59:31Z +2900,637,2,2020-02-15T06:59:31Z +2901,638,1,2020-02-15T06:59:31Z +2902,638,1,2020-02-15T06:59:31Z +2903,638,1,2020-02-15T06:59:31Z +2904,638,1,2020-02-15T06:59:31Z +2905,638,2,2020-02-15T06:59:31Z +2906,638,2,2020-02-15T06:59:31Z +2907,638,2,2020-02-15T06:59:31Z +2908,638,2,2020-02-15T06:59:31Z +2909,639,2,2020-02-15T06:59:31Z +2910,639,2,2020-02-15T06:59:31Z +2911,639,2,2020-02-15T06:59:31Z +2912,640,2,2020-02-15T06:59:31Z +2913,640,2,2020-02-15T06:59:31Z +2914,640,2,2020-02-15T06:59:31Z +2915,641,1,2020-02-15T06:59:31Z +2916,641,1,2020-02-15T06:59:31Z +2917,641,1,2020-02-15T06:59:31Z +2918,641,2,2020-02-15T06:59:31Z +2919,641,2,2020-02-15T06:59:31Z +2920,641,2,2020-02-15T06:59:31Z +2921,641,2,2020-02-15T06:59:31Z +2922,643,1,2020-02-15T06:59:31Z +2923,643,1,2020-02-15T06:59:31Z +2924,643,1,2020-02-15T06:59:31Z +2925,643,2,2020-02-15T06:59:31Z +2926,643,2,2020-02-15T06:59:31Z +2927,643,2,2020-02-15T06:59:31Z +2928,644,1,2020-02-15T06:59:31Z +2929,644,1,2020-02-15T06:59:31Z +2930,644,1,2020-02-15T06:59:31Z +2931,644,2,2020-02-15T06:59:31Z +2932,644,2,2020-02-15T06:59:31Z +2933,644,2,2020-02-15T06:59:31Z +2934,644,2,2020-02-15T06:59:31Z +2935,645,1,2020-02-15T06:59:31Z +2936,645,1,2020-02-15T06:59:31Z +2937,645,1,2020-02-15T06:59:31Z +2938,645,2,2020-02-15T06:59:31Z +2939,645,2,2020-02-15T06:59:31Z +2940,645,2,2020-02-15T06:59:31Z +2941,646,1,2020-02-15T06:59:31Z +2942,646,1,2020-02-15T06:59:31Z +2943,646,1,2020-02-15T06:59:31Z +2944,646,2,2020-02-15T06:59:31Z +2945,646,2,2020-02-15T06:59:31Z +2946,647,1,2020-02-15T06:59:31Z +2947,647,1,2020-02-15T06:59:31Z +2948,647,1,2020-02-15T06:59:31Z +2949,647,2,2020-02-15T06:59:31Z +2950,647,2,2020-02-15T06:59:31Z +2951,647,2,2020-02-15T06:59:31Z +2952,648,1,2020-02-15T06:59:31Z +2953,648,1,2020-02-15T06:59:31Z +2954,648,1,2020-02-15T06:59:31Z +2955,648,1,2020-02-15T06:59:31Z +2956,648,2,2020-02-15T06:59:31Z +2957,648,2,2020-02-15T06:59:31Z +2958,649,1,2020-02-15T06:59:31Z +2959,649,1,2020-02-15T06:59:31Z +2960,649,2,2020-02-15T06:59:31Z +2961,649,2,2020-02-15T06:59:31Z +2962,649,2,2020-02-15T06:59:31Z +2963,649,2,2020-02-15T06:59:31Z +2964,650,1,2020-02-15T06:59:31Z +2965,650,1,2020-02-15T06:59:31Z +2966,650,2,2020-02-15T06:59:31Z +2967,650,2,2020-02-15T06:59:31Z +2968,650,2,2020-02-15T06:59:31Z +2969,650,2,2020-02-15T06:59:31Z +2970,651,1,2020-02-15T06:59:31Z +2971,651,1,2020-02-15T06:59:31Z +2972,651,2,2020-02-15T06:59:31Z +2973,651,2,2020-02-15T06:59:31Z +2974,651,2,2020-02-15T06:59:31Z +2975,651,2,2020-02-15T06:59:31Z +2976,652,1,2020-02-15T06:59:31Z +2977,652,1,2020-02-15T06:59:31Z +2978,652,1,2020-02-15T06:59:31Z +2979,652,1,2020-02-15T06:59:31Z +2980,653,1,2020-02-15T06:59:31Z +2981,653,1,2020-02-15T06:59:31Z +2982,654,1,2020-02-15T06:59:31Z +2983,654,1,2020-02-15T06:59:31Z +2984,654,2,2020-02-15T06:59:31Z +2985,654,2,2020-02-15T06:59:31Z +2986,655,1,2020-02-15T06:59:31Z +2987,655,1,2020-02-15T06:59:31Z +2988,655,1,2020-02-15T06:59:31Z +2989,655,2,2020-02-15T06:59:31Z +2990,655,2,2020-02-15T06:59:31Z +2991,655,2,2020-02-15T06:59:31Z +2992,656,2,2020-02-15T06:59:31Z +2993,656,2,2020-02-15T06:59:31Z +2994,657,1,2020-02-15T06:59:31Z +2995,657,1,2020-02-15T06:59:31Z +2996,657,1,2020-02-15T06:59:31Z +2997,657,1,2020-02-15T06:59:31Z +2998,657,2,2020-02-15T06:59:31Z +2999,657,2,2020-02-15T06:59:31Z +3000,658,2,2020-02-15T06:59:31Z +3001,658,2,2020-02-15T06:59:31Z +3002,658,2,2020-02-15T06:59:31Z +3003,658,2,2020-02-15T06:59:31Z +3004,659,2,2020-02-15T06:59:31Z +3005,659,2,2020-02-15T06:59:31Z +3006,660,1,2020-02-15T06:59:31Z +3007,660,1,2020-02-15T06:59:31Z +3008,660,2,2020-02-15T06:59:31Z +3009,660,2,2020-02-15T06:59:31Z +3010,661,1,2020-02-15T06:59:31Z +3011,661,1,2020-02-15T06:59:31Z +3012,661,1,2020-02-15T06:59:31Z +3013,661,1,2020-02-15T06:59:31Z +3014,662,1,2020-02-15T06:59:31Z +3015,662,1,2020-02-15T06:59:31Z +3016,662,2,2020-02-15T06:59:31Z +3017,662,2,2020-02-15T06:59:31Z +3018,663,1,2020-02-15T06:59:31Z +3019,663,1,2020-02-15T06:59:31Z +3020,663,1,2020-02-15T06:59:31Z +3021,663,2,2020-02-15T06:59:31Z +3022,663,2,2020-02-15T06:59:31Z +3023,664,1,2020-02-15T06:59:31Z +3024,664,1,2020-02-15T06:59:31Z +3025,664,2,2020-02-15T06:59:31Z +3026,664,2,2020-02-15T06:59:31Z +3027,664,2,2020-02-15T06:59:31Z +3028,665,1,2020-02-15T06:59:31Z +3029,665,1,2020-02-15T06:59:31Z +3030,665,1,2020-02-15T06:59:31Z +3031,665,1,2020-02-15T06:59:31Z +3032,665,2,2020-02-15T06:59:31Z +3033,665,2,2020-02-15T06:59:31Z +3034,665,2,2020-02-15T06:59:31Z +3035,666,1,2020-02-15T06:59:31Z +3036,666,1,2020-02-15T06:59:31Z +3037,666,1,2020-02-15T06:59:31Z +3038,666,2,2020-02-15T06:59:31Z +3039,666,2,2020-02-15T06:59:31Z +3040,667,1,2020-02-15T06:59:31Z +3041,667,1,2020-02-15T06:59:31Z +3042,667,2,2020-02-15T06:59:31Z +3043,667,2,2020-02-15T06:59:31Z +3044,668,1,2020-02-15T06:59:31Z +3045,668,1,2020-02-15T06:59:31Z +3046,668,2,2020-02-15T06:59:31Z +3047,668,2,2020-02-15T06:59:31Z +3048,668,2,2020-02-15T06:59:31Z +3049,670,1,2020-02-15T06:59:31Z +3050,670,1,2020-02-15T06:59:31Z +3051,670,1,2020-02-15T06:59:31Z +3052,670,1,2020-02-15T06:59:31Z +3053,670,2,2020-02-15T06:59:31Z +3054,670,2,2020-02-15T06:59:31Z +3055,670,2,2020-02-15T06:59:31Z +3056,672,1,2020-02-15T06:59:31Z +3057,672,1,2020-02-15T06:59:31Z +3058,672,2,2020-02-15T06:59:31Z +3059,672,2,2020-02-15T06:59:31Z +3060,672,2,2020-02-15T06:59:31Z +3061,672,2,2020-02-15T06:59:31Z +3062,673,1,2020-02-15T06:59:31Z +3063,673,1,2020-02-15T06:59:31Z +3064,673,2,2020-02-15T06:59:31Z +3065,673,2,2020-02-15T06:59:31Z +3066,674,1,2020-02-15T06:59:31Z +3067,674,1,2020-02-15T06:59:31Z +3068,674,1,2020-02-15T06:59:31Z +3069,675,1,2020-02-15T06:59:31Z +3070,675,1,2020-02-15T06:59:31Z +3071,676,1,2020-02-15T06:59:31Z +3072,676,1,2020-02-15T06:59:31Z +3073,676,2,2020-02-15T06:59:31Z +3074,676,2,2020-02-15T06:59:31Z +3075,676,2,2020-02-15T06:59:31Z +3076,676,2,2020-02-15T06:59:31Z +3077,677,1,2020-02-15T06:59:31Z +3078,677,1,2020-02-15T06:59:31Z +3079,677,1,2020-02-15T06:59:31Z +3080,677,2,2020-02-15T06:59:31Z +3081,677,2,2020-02-15T06:59:31Z +3082,677,2,2020-02-15T06:59:31Z +3083,677,2,2020-02-15T06:59:31Z +3084,678,1,2020-02-15T06:59:31Z +3085,678,1,2020-02-15T06:59:31Z +3086,678,1,2020-02-15T06:59:31Z +3087,678,1,2020-02-15T06:59:31Z +3088,679,1,2020-02-15T06:59:31Z +3089,679,1,2020-02-15T06:59:31Z +3090,679,2,2020-02-15T06:59:31Z +3091,679,2,2020-02-15T06:59:31Z +3092,680,1,2020-02-15T06:59:31Z +3093,680,1,2020-02-15T06:59:31Z +3094,680,2,2020-02-15T06:59:31Z +3095,680,2,2020-02-15T06:59:31Z +3096,680,2,2020-02-15T06:59:31Z +3097,680,2,2020-02-15T06:59:31Z +3098,681,1,2020-02-15T06:59:31Z +3099,681,1,2020-02-15T06:59:31Z +3100,681,1,2020-02-15T06:59:31Z +3101,681,2,2020-02-15T06:59:31Z +3102,681,2,2020-02-15T06:59:31Z +3103,681,2,2020-02-15T06:59:31Z +3104,682,1,2020-02-15T06:59:31Z +3105,682,1,2020-02-15T06:59:31Z +3106,682,1,2020-02-15T06:59:31Z +3107,683,1,2020-02-15T06:59:31Z +3108,683,1,2020-02-15T06:59:31Z +3109,683,1,2020-02-15T06:59:31Z +3110,683,1,2020-02-15T06:59:31Z +3111,683,2,2020-02-15T06:59:31Z +3112,683,2,2020-02-15T06:59:31Z +3113,683,2,2020-02-15T06:59:31Z +3114,683,2,2020-02-15T06:59:31Z +3115,684,2,2020-02-15T06:59:31Z +3116,684,2,2020-02-15T06:59:31Z +3117,685,2,2020-02-15T06:59:31Z +3118,685,2,2020-02-15T06:59:31Z +3119,686,1,2020-02-15T06:59:31Z +3120,686,1,2020-02-15T06:59:31Z +3121,686,1,2020-02-15T06:59:31Z +3122,686,1,2020-02-15T06:59:31Z +3123,687,1,2020-02-15T06:59:31Z +3124,687,1,2020-02-15T06:59:31Z +3125,687,1,2020-02-15T06:59:31Z +3126,687,2,2020-02-15T06:59:31Z +3127,687,2,2020-02-15T06:59:31Z +3128,687,2,2020-02-15T06:59:31Z +3129,687,2,2020-02-15T06:59:31Z +3130,688,2,2020-02-15T06:59:31Z +3131,688,2,2020-02-15T06:59:31Z +3132,688,2,2020-02-15T06:59:31Z +3133,688,2,2020-02-15T06:59:31Z +3134,689,1,2020-02-15T06:59:31Z +3135,689,1,2020-02-15T06:59:31Z +3136,689,1,2020-02-15T06:59:31Z +3137,689,1,2020-02-15T06:59:31Z +3138,689,2,2020-02-15T06:59:31Z +3139,689,2,2020-02-15T06:59:31Z +3140,690,1,2020-02-15T06:59:31Z +3141,690,1,2020-02-15T06:59:31Z +3142,690,1,2020-02-15T06:59:31Z +3143,690,1,2020-02-15T06:59:31Z +3144,690,2,2020-02-15T06:59:31Z +3145,690,2,2020-02-15T06:59:31Z +3146,691,1,2020-02-15T06:59:31Z +3147,691,1,2020-02-15T06:59:31Z +3148,691,1,2020-02-15T06:59:31Z +3149,691,2,2020-02-15T06:59:31Z +3150,691,2,2020-02-15T06:59:31Z +3151,692,2,2020-02-15T06:59:31Z +3152,692,2,2020-02-15T06:59:31Z +3153,692,2,2020-02-15T06:59:31Z +3154,693,1,2020-02-15T06:59:31Z +3155,693,1,2020-02-15T06:59:31Z +3156,693,2,2020-02-15T06:59:31Z +3157,693,2,2020-02-15T06:59:31Z +3158,693,2,2020-02-15T06:59:31Z +3159,694,1,2020-02-15T06:59:31Z +3160,694,1,2020-02-15T06:59:31Z +3161,694,1,2020-02-15T06:59:31Z +3162,694,1,2020-02-15T06:59:31Z +3163,694,2,2020-02-15T06:59:31Z +3164,694,2,2020-02-15T06:59:31Z +3165,695,1,2020-02-15T06:59:31Z +3166,695,1,2020-02-15T06:59:31Z +3167,696,1,2020-02-15T06:59:31Z +3168,696,1,2020-02-15T06:59:31Z +3169,696,2,2020-02-15T06:59:31Z +3170,696,2,2020-02-15T06:59:31Z +3171,696,2,2020-02-15T06:59:31Z +3172,697,1,2020-02-15T06:59:31Z +3173,697,1,2020-02-15T06:59:31Z +3174,697,1,2020-02-15T06:59:31Z +3175,697,1,2020-02-15T06:59:31Z +3176,697,2,2020-02-15T06:59:31Z +3177,697,2,2020-02-15T06:59:31Z +3178,697,2,2020-02-15T06:59:31Z +3179,697,2,2020-02-15T06:59:31Z +3180,698,1,2020-02-15T06:59:31Z +3181,698,1,2020-02-15T06:59:31Z +3182,698,1,2020-02-15T06:59:31Z +3183,698,1,2020-02-15T06:59:31Z +3184,698,2,2020-02-15T06:59:31Z +3185,698,2,2020-02-15T06:59:31Z +3186,698,2,2020-02-15T06:59:31Z +3187,699,1,2020-02-15T06:59:31Z +3188,699,1,2020-02-15T06:59:31Z +3189,700,2,2020-02-15T06:59:31Z +3190,700,2,2020-02-15T06:59:31Z +3191,700,2,2020-02-15T06:59:31Z +3192,702,1,2020-02-15T06:59:31Z +3193,702,1,2020-02-15T06:59:31Z +3194,702,1,2020-02-15T06:59:31Z +3195,702,1,2020-02-15T06:59:31Z +3196,702,2,2020-02-15T06:59:31Z +3197,702,2,2020-02-15T06:59:31Z +3198,702,2,2020-02-15T06:59:31Z +3199,702,2,2020-02-15T06:59:31Z +3200,703,2,2020-02-15T06:59:31Z +3201,703,2,2020-02-15T06:59:31Z +3202,704,1,2020-02-15T06:59:31Z +3203,704,1,2020-02-15T06:59:31Z +3204,704,2,2020-02-15T06:59:31Z +3205,704,2,2020-02-15T06:59:31Z +3206,704,2,2020-02-15T06:59:31Z +3207,705,1,2020-02-15T06:59:31Z +3208,705,1,2020-02-15T06:59:31Z +3209,705,1,2020-02-15T06:59:31Z +3210,705,1,2020-02-15T06:59:31Z +3211,706,1,2020-02-15T06:59:31Z +3212,706,1,2020-02-15T06:59:31Z +3213,706,2,2020-02-15T06:59:31Z +3214,706,2,2020-02-15T06:59:31Z +3215,706,2,2020-02-15T06:59:31Z +3216,706,2,2020-02-15T06:59:31Z +3217,707,1,2020-02-15T06:59:31Z +3218,707,1,2020-02-15T06:59:31Z +3219,707,2,2020-02-15T06:59:31Z +3220,707,2,2020-02-15T06:59:31Z +3221,707,2,2020-02-15T06:59:31Z +3222,707,2,2020-02-15T06:59:31Z +3223,708,1,2020-02-15T06:59:31Z +3224,708,1,2020-02-15T06:59:31Z +3225,708,2,2020-02-15T06:59:31Z +3226,708,2,2020-02-15T06:59:31Z +3227,709,1,2020-02-15T06:59:31Z +3228,709,1,2020-02-15T06:59:31Z +3229,709,2,2020-02-15T06:59:31Z +3230,709,2,2020-02-15T06:59:31Z +3231,709,2,2020-02-15T06:59:31Z +3232,709,2,2020-02-15T06:59:31Z +3233,710,1,2020-02-15T06:59:31Z +3234,710,1,2020-02-15T06:59:31Z +3235,710,1,2020-02-15T06:59:31Z +3236,710,1,2020-02-15T06:59:31Z +3237,710,2,2020-02-15T06:59:31Z +3238,710,2,2020-02-15T06:59:31Z +3239,711,2,2020-02-15T06:59:31Z +3240,711,2,2020-02-15T06:59:31Z +3241,711,2,2020-02-15T06:59:31Z +3242,711,2,2020-02-15T06:59:31Z +3243,714,2,2020-02-15T06:59:31Z +3244,714,2,2020-02-15T06:59:31Z +3245,714,2,2020-02-15T06:59:31Z +3246,715,1,2020-02-15T06:59:31Z +3247,715,1,2020-02-15T06:59:31Z +3248,715,1,2020-02-15T06:59:31Z +3249,715,1,2020-02-15T06:59:31Z +3250,715,2,2020-02-15T06:59:31Z +3251,715,2,2020-02-15T06:59:31Z +3252,715,2,2020-02-15T06:59:31Z +3253,716,1,2020-02-15T06:59:31Z +3254,716,1,2020-02-15T06:59:31Z +3255,716,2,2020-02-15T06:59:31Z +3256,716,2,2020-02-15T06:59:31Z +3257,716,2,2020-02-15T06:59:31Z +3258,717,1,2020-02-15T06:59:31Z +3259,717,1,2020-02-15T06:59:31Z +3260,717,2,2020-02-15T06:59:31Z +3261,717,2,2020-02-15T06:59:31Z +3262,718,2,2020-02-15T06:59:31Z +3263,718,2,2020-02-15T06:59:31Z +3264,719,1,2020-02-15T06:59:31Z +3265,719,1,2020-02-15T06:59:31Z +3266,720,1,2020-02-15T06:59:31Z +3267,720,1,2020-02-15T06:59:31Z +3268,720,1,2020-02-15T06:59:31Z +3269,720,2,2020-02-15T06:59:31Z +3270,720,2,2020-02-15T06:59:31Z +3271,720,2,2020-02-15T06:59:31Z +3272,720,2,2020-02-15T06:59:31Z +3273,721,1,2020-02-15T06:59:31Z +3274,721,1,2020-02-15T06:59:31Z +3275,722,1,2020-02-15T06:59:31Z +3276,722,1,2020-02-15T06:59:31Z +3277,722,2,2020-02-15T06:59:31Z +3278,722,2,2020-02-15T06:59:31Z +3279,723,1,2020-02-15T06:59:31Z +3280,723,1,2020-02-15T06:59:31Z +3281,723,1,2020-02-15T06:59:31Z +3282,723,1,2020-02-15T06:59:31Z +3283,723,2,2020-02-15T06:59:31Z +3284,723,2,2020-02-15T06:59:31Z +3285,723,2,2020-02-15T06:59:31Z +3286,724,1,2020-02-15T06:59:31Z +3287,724,1,2020-02-15T06:59:31Z +3288,724,2,2020-02-15T06:59:31Z +3289,724,2,2020-02-15T06:59:31Z +3290,724,2,2020-02-15T06:59:31Z +3291,724,2,2020-02-15T06:59:31Z +3292,725,1,2020-02-15T06:59:31Z +3293,725,1,2020-02-15T06:59:31Z +3294,725,1,2020-02-15T06:59:31Z +3295,725,2,2020-02-15T06:59:31Z +3296,725,2,2020-02-15T06:59:31Z +3297,725,2,2020-02-15T06:59:31Z +3298,726,2,2020-02-15T06:59:31Z +3299,726,2,2020-02-15T06:59:31Z +3300,726,2,2020-02-15T06:59:31Z +3301,727,1,2020-02-15T06:59:31Z +3302,727,1,2020-02-15T06:59:31Z +3303,727,2,2020-02-15T06:59:31Z +3304,727,2,2020-02-15T06:59:31Z +3305,727,2,2020-02-15T06:59:31Z +3306,728,1,2020-02-15T06:59:31Z +3307,728,1,2020-02-15T06:59:31Z +3308,728,1,2020-02-15T06:59:31Z +3309,728,2,2020-02-15T06:59:31Z +3310,728,2,2020-02-15T06:59:31Z +3311,729,2,2020-02-15T06:59:31Z +3312,729,2,2020-02-15T06:59:31Z +3313,729,2,2020-02-15T06:59:31Z +3314,729,2,2020-02-15T06:59:31Z +3315,730,1,2020-02-15T06:59:31Z +3316,730,1,2020-02-15T06:59:31Z +3317,730,1,2020-02-15T06:59:31Z +3318,730,1,2020-02-15T06:59:31Z +3319,730,2,2020-02-15T06:59:31Z +3320,730,2,2020-02-15T06:59:31Z +3321,730,2,2020-02-15T06:59:31Z +3322,730,2,2020-02-15T06:59:31Z +3323,731,2,2020-02-15T06:59:31Z +3324,731,2,2020-02-15T06:59:31Z +3325,731,2,2020-02-15T06:59:31Z +3326,732,1,2020-02-15T06:59:31Z +3327,732,1,2020-02-15T06:59:31Z +3328,732,1,2020-02-15T06:59:31Z +3329,732,1,2020-02-15T06:59:31Z +3330,733,1,2020-02-15T06:59:31Z +3331,733,1,2020-02-15T06:59:31Z +3332,733,1,2020-02-15T06:59:31Z +3333,733,1,2020-02-15T06:59:31Z +3334,733,2,2020-02-15T06:59:31Z +3335,733,2,2020-02-15T06:59:31Z +3336,733,2,2020-02-15T06:59:31Z +3337,734,1,2020-02-15T06:59:31Z +3338,734,1,2020-02-15T06:59:31Z +3339,734,2,2020-02-15T06:59:31Z +3340,734,2,2020-02-15T06:59:31Z +3341,734,2,2020-02-15T06:59:31Z +3342,734,2,2020-02-15T06:59:31Z +3343,735,1,2020-02-15T06:59:31Z +3344,735,1,2020-02-15T06:59:31Z +3345,735,1,2020-02-15T06:59:31Z +3346,735,2,2020-02-15T06:59:31Z +3347,735,2,2020-02-15T06:59:31Z +3348,735,2,2020-02-15T06:59:31Z +3349,735,2,2020-02-15T06:59:31Z +3350,736,1,2020-02-15T06:59:31Z +3351,736,1,2020-02-15T06:59:31Z +3352,736,1,2020-02-15T06:59:31Z +3353,736,1,2020-02-15T06:59:31Z +3354,737,1,2020-02-15T06:59:31Z +3355,737,1,2020-02-15T06:59:31Z +3356,737,2,2020-02-15T06:59:31Z +3357,737,2,2020-02-15T06:59:31Z +3358,737,2,2020-02-15T06:59:31Z +3359,737,2,2020-02-15T06:59:31Z +3360,738,1,2020-02-15T06:59:31Z +3361,738,1,2020-02-15T06:59:31Z +3362,738,1,2020-02-15T06:59:31Z +3363,738,1,2020-02-15T06:59:31Z +3364,738,2,2020-02-15T06:59:31Z +3365,738,2,2020-02-15T06:59:31Z +3366,738,2,2020-02-15T06:59:31Z +3367,738,2,2020-02-15T06:59:31Z +3368,739,1,2020-02-15T06:59:31Z +3369,739,1,2020-02-15T06:59:31Z +3370,739,2,2020-02-15T06:59:31Z +3371,739,2,2020-02-15T06:59:31Z +3372,739,2,2020-02-15T06:59:31Z +3373,740,2,2020-02-15T06:59:31Z +3374,740,2,2020-02-15T06:59:31Z +3375,740,2,2020-02-15T06:59:31Z +3376,741,1,2020-02-15T06:59:31Z +3377,741,1,2020-02-15T06:59:31Z +3378,741,1,2020-02-15T06:59:31Z +3379,741,1,2020-02-15T06:59:31Z +3380,741,2,2020-02-15T06:59:31Z +3381,741,2,2020-02-15T06:59:31Z +3382,743,1,2020-02-15T06:59:31Z +3383,743,1,2020-02-15T06:59:31Z +3384,743,2,2020-02-15T06:59:31Z +3385,743,2,2020-02-15T06:59:31Z +3386,743,2,2020-02-15T06:59:31Z +3387,743,2,2020-02-15T06:59:31Z +3388,744,1,2020-02-15T06:59:31Z +3389,744,1,2020-02-15T06:59:31Z +3390,744,2,2020-02-15T06:59:31Z +3391,744,2,2020-02-15T06:59:31Z +3392,744,2,2020-02-15T06:59:31Z +3393,745,1,2020-02-15T06:59:31Z +3394,745,1,2020-02-15T06:59:31Z +3395,745,1,2020-02-15T06:59:31Z +3396,745,1,2020-02-15T06:59:31Z +3397,745,2,2020-02-15T06:59:31Z +3398,745,2,2020-02-15T06:59:31Z +3399,745,2,2020-02-15T06:59:31Z +3400,745,2,2020-02-15T06:59:31Z +3401,746,1,2020-02-15T06:59:31Z +3402,746,1,2020-02-15T06:59:31Z +3403,746,2,2020-02-15T06:59:31Z +3404,746,2,2020-02-15T06:59:31Z +3405,746,2,2020-02-15T06:59:31Z +3406,747,1,2020-02-15T06:59:31Z +3407,747,1,2020-02-15T06:59:31Z +3408,747,2,2020-02-15T06:59:31Z +3409,747,2,2020-02-15T06:59:31Z +3410,747,2,2020-02-15T06:59:31Z +3411,748,1,2020-02-15T06:59:31Z +3412,748,1,2020-02-15T06:59:31Z +3413,748,1,2020-02-15T06:59:31Z +3414,748,1,2020-02-15T06:59:31Z +3415,748,2,2020-02-15T06:59:31Z +3416,748,2,2020-02-15T06:59:31Z +3417,748,2,2020-02-15T06:59:31Z +3418,748,2,2020-02-15T06:59:31Z +3419,749,1,2020-02-15T06:59:31Z +3420,749,1,2020-02-15T06:59:31Z +3421,749,2,2020-02-15T06:59:31Z +3422,749,2,2020-02-15T06:59:31Z +3423,750,1,2020-02-15T06:59:31Z +3424,750,1,2020-02-15T06:59:31Z +3425,750,1,2020-02-15T06:59:31Z +3426,751,2,2020-02-15T06:59:31Z +3427,751,2,2020-02-15T06:59:31Z +3428,752,2,2020-02-15T06:59:31Z +3429,752,2,2020-02-15T06:59:31Z +3430,752,2,2020-02-15T06:59:31Z +3431,753,1,2020-02-15T06:59:31Z +3432,753,1,2020-02-15T06:59:31Z +3433,753,1,2020-02-15T06:59:31Z +3434,753,1,2020-02-15T06:59:31Z +3435,753,2,2020-02-15T06:59:31Z +3436,753,2,2020-02-15T06:59:31Z +3437,753,2,2020-02-15T06:59:31Z +3438,753,2,2020-02-15T06:59:31Z +3439,754,2,2020-02-15T06:59:31Z +3440,754,2,2020-02-15T06:59:31Z +3441,755,1,2020-02-15T06:59:31Z +3442,755,1,2020-02-15T06:59:31Z +3443,755,1,2020-02-15T06:59:31Z +3444,755,1,2020-02-15T06:59:31Z +3445,755,2,2020-02-15T06:59:31Z +3446,755,2,2020-02-15T06:59:31Z +3447,755,2,2020-02-15T06:59:31Z +3448,756,2,2020-02-15T06:59:31Z +3449,756,2,2020-02-15T06:59:31Z +3450,756,2,2020-02-15T06:59:31Z +3451,757,1,2020-02-15T06:59:31Z +3452,757,1,2020-02-15T06:59:31Z +3453,757,1,2020-02-15T06:59:31Z +3454,757,2,2020-02-15T06:59:31Z +3455,757,2,2020-02-15T06:59:31Z +3456,758,2,2020-02-15T06:59:31Z +3457,758,2,2020-02-15T06:59:31Z +3458,758,2,2020-02-15T06:59:31Z +3459,759,1,2020-02-15T06:59:31Z +3460,759,1,2020-02-15T06:59:31Z +3461,759,2,2020-02-15T06:59:31Z +3462,759,2,2020-02-15T06:59:31Z +3463,759,2,2020-02-15T06:59:31Z +3464,759,2,2020-02-15T06:59:31Z +3465,760,1,2020-02-15T06:59:31Z +3466,760,1,2020-02-15T06:59:31Z +3467,760,1,2020-02-15T06:59:31Z +3468,760,2,2020-02-15T06:59:31Z +3469,760,2,2020-02-15T06:59:31Z +3470,760,2,2020-02-15T06:59:31Z +3471,760,2,2020-02-15T06:59:31Z +3472,761,2,2020-02-15T06:59:31Z +3473,761,2,2020-02-15T06:59:31Z +3474,761,2,2020-02-15T06:59:31Z +3475,762,2,2020-02-15T06:59:31Z +3476,762,2,2020-02-15T06:59:31Z +3477,762,2,2020-02-15T06:59:31Z +3478,762,2,2020-02-15T06:59:31Z +3479,763,1,2020-02-15T06:59:31Z +3480,763,1,2020-02-15T06:59:31Z +3481,763,1,2020-02-15T06:59:31Z +3482,763,2,2020-02-15T06:59:31Z +3483,763,2,2020-02-15T06:59:31Z +3484,764,1,2020-02-15T06:59:31Z +3485,764,1,2020-02-15T06:59:31Z +3486,764,1,2020-02-15T06:59:31Z +3487,764,1,2020-02-15T06:59:31Z +3488,764,2,2020-02-15T06:59:31Z +3489,764,2,2020-02-15T06:59:31Z +3490,764,2,2020-02-15T06:59:31Z +3491,764,2,2020-02-15T06:59:31Z +3492,765,1,2020-02-15T06:59:31Z +3493,765,1,2020-02-15T06:59:31Z +3494,765,1,2020-02-15T06:59:31Z +3495,765,1,2020-02-15T06:59:31Z +3496,766,1,2020-02-15T06:59:31Z +3497,766,1,2020-02-15T06:59:31Z +3498,766,1,2020-02-15T06:59:31Z +3499,767,1,2020-02-15T06:59:31Z +3500,767,1,2020-02-15T06:59:31Z +3501,767,1,2020-02-15T06:59:31Z +3502,767,1,2020-02-15T06:59:31Z +3503,767,2,2020-02-15T06:59:31Z +3504,767,2,2020-02-15T06:59:31Z +3505,767,2,2020-02-15T06:59:31Z +3506,767,2,2020-02-15T06:59:31Z +3507,768,1,2020-02-15T06:59:31Z +3508,768,1,2020-02-15T06:59:31Z +3509,768,1,2020-02-15T06:59:31Z +3510,768,2,2020-02-15T06:59:31Z +3511,768,2,2020-02-15T06:59:31Z +3512,768,2,2020-02-15T06:59:31Z +3513,769,2,2020-02-15T06:59:31Z +3514,769,2,2020-02-15T06:59:31Z +3515,770,2,2020-02-15T06:59:31Z +3516,770,2,2020-02-15T06:59:31Z +3517,770,2,2020-02-15T06:59:31Z +3518,771,1,2020-02-15T06:59:31Z +3519,771,1,2020-02-15T06:59:31Z +3520,771,1,2020-02-15T06:59:31Z +3521,771,2,2020-02-15T06:59:31Z +3522,771,2,2020-02-15T06:59:31Z +3523,771,2,2020-02-15T06:59:31Z +3524,771,2,2020-02-15T06:59:31Z +3525,772,1,2020-02-15T06:59:31Z +3526,772,1,2020-02-15T06:59:31Z +3527,772,1,2020-02-15T06:59:31Z +3528,772,1,2020-02-15T06:59:31Z +3529,772,2,2020-02-15T06:59:31Z +3530,772,2,2020-02-15T06:59:31Z +3531,773,1,2020-02-15T06:59:31Z +3532,773,1,2020-02-15T06:59:31Z +3533,773,1,2020-02-15T06:59:31Z +3534,773,1,2020-02-15T06:59:31Z +3535,773,2,2020-02-15T06:59:31Z +3536,773,2,2020-02-15T06:59:31Z +3537,773,2,2020-02-15T06:59:31Z +3538,773,2,2020-02-15T06:59:31Z +3539,774,1,2020-02-15T06:59:31Z +3540,774,1,2020-02-15T06:59:31Z +3541,774,1,2020-02-15T06:59:31Z +3542,774,1,2020-02-15T06:59:31Z +3543,775,1,2020-02-15T06:59:31Z +3544,775,1,2020-02-15T06:59:31Z +3545,775,1,2020-02-15T06:59:31Z +3546,775,2,2020-02-15T06:59:31Z +3547,775,2,2020-02-15T06:59:31Z +3548,776,1,2020-02-15T06:59:31Z +3549,776,1,2020-02-15T06:59:31Z +3550,776,2,2020-02-15T06:59:31Z +3551,776,2,2020-02-15T06:59:31Z +3552,776,2,2020-02-15T06:59:31Z +3553,777,1,2020-02-15T06:59:31Z +3554,777,1,2020-02-15T06:59:31Z +3555,777,1,2020-02-15T06:59:31Z +3556,777,2,2020-02-15T06:59:31Z +3557,777,2,2020-02-15T06:59:31Z +3558,777,2,2020-02-15T06:59:31Z +3559,778,1,2020-02-15T06:59:31Z +3560,778,1,2020-02-15T06:59:31Z +3561,778,1,2020-02-15T06:59:31Z +3562,778,1,2020-02-15T06:59:31Z +3563,778,2,2020-02-15T06:59:31Z +3564,778,2,2020-02-15T06:59:31Z +3565,779,2,2020-02-15T06:59:31Z +3566,779,2,2020-02-15T06:59:31Z +3567,780,2,2020-02-15T06:59:31Z +3568,780,2,2020-02-15T06:59:31Z +3569,780,2,2020-02-15T06:59:31Z +3570,781,2,2020-02-15T06:59:31Z +3571,781,2,2020-02-15T06:59:31Z +3572,782,1,2020-02-15T06:59:31Z +3573,782,1,2020-02-15T06:59:31Z +3574,782,1,2020-02-15T06:59:31Z +3575,782,2,2020-02-15T06:59:31Z +3576,782,2,2020-02-15T06:59:31Z +3577,782,2,2020-02-15T06:59:31Z +3578,783,1,2020-02-15T06:59:31Z +3579,783,1,2020-02-15T06:59:31Z +3580,783,1,2020-02-15T06:59:31Z +3581,783,1,2020-02-15T06:59:31Z +3582,784,1,2020-02-15T06:59:31Z +3583,784,1,2020-02-15T06:59:31Z +3584,784,1,2020-02-15T06:59:31Z +3585,784,2,2020-02-15T06:59:31Z +3586,784,2,2020-02-15T06:59:31Z +3587,784,2,2020-02-15T06:59:31Z +3588,785,1,2020-02-15T06:59:31Z +3589,785,1,2020-02-15T06:59:31Z +3590,785,1,2020-02-15T06:59:31Z +3591,785,1,2020-02-15T06:59:31Z +3592,785,2,2020-02-15T06:59:31Z +3593,785,2,2020-02-15T06:59:31Z +3594,786,1,2020-02-15T06:59:31Z +3595,786,1,2020-02-15T06:59:31Z +3596,786,1,2020-02-15T06:59:31Z +3597,786,2,2020-02-15T06:59:31Z +3598,786,2,2020-02-15T06:59:31Z +3599,786,2,2020-02-15T06:59:31Z +3600,786,2,2020-02-15T06:59:31Z +3601,787,1,2020-02-15T06:59:31Z +3602,787,1,2020-02-15T06:59:31Z +3603,787,1,2020-02-15T06:59:31Z +3604,788,1,2020-02-15T06:59:31Z +3605,788,1,2020-02-15T06:59:31Z +3606,788,2,2020-02-15T06:59:31Z +3607,788,2,2020-02-15T06:59:31Z +3608,789,1,2020-02-15T06:59:31Z +3609,789,1,2020-02-15T06:59:31Z +3610,789,1,2020-02-15T06:59:31Z +3611,789,1,2020-02-15T06:59:31Z +3612,789,2,2020-02-15T06:59:31Z +3613,789,2,2020-02-15T06:59:31Z +3614,789,2,2020-02-15T06:59:31Z +3615,789,2,2020-02-15T06:59:31Z +3616,790,1,2020-02-15T06:59:31Z +3617,790,1,2020-02-15T06:59:31Z +3618,790,1,2020-02-15T06:59:31Z +3619,790,1,2020-02-15T06:59:31Z +3620,790,2,2020-02-15T06:59:31Z +3621,790,2,2020-02-15T06:59:31Z +3622,790,2,2020-02-15T06:59:31Z +3623,791,1,2020-02-15T06:59:31Z +3624,791,1,2020-02-15T06:59:31Z +3625,791,2,2020-02-15T06:59:31Z +3626,791,2,2020-02-15T06:59:31Z +3627,791,2,2020-02-15T06:59:31Z +3628,791,2,2020-02-15T06:59:31Z +3629,792,2,2020-02-15T06:59:31Z +3630,792,2,2020-02-15T06:59:31Z +3631,792,2,2020-02-15T06:59:31Z +3632,793,1,2020-02-15T06:59:31Z +3633,793,1,2020-02-15T06:59:31Z +3634,793,1,2020-02-15T06:59:31Z +3635,793,1,2020-02-15T06:59:31Z +3636,794,1,2020-02-15T06:59:31Z +3637,794,1,2020-02-15T06:59:31Z +3638,794,2,2020-02-15T06:59:31Z +3639,794,2,2020-02-15T06:59:31Z +3640,795,1,2020-02-15T06:59:31Z +3641,795,1,2020-02-15T06:59:31Z +3642,795,1,2020-02-15T06:59:31Z +3643,795,1,2020-02-15T06:59:31Z +3644,796,1,2020-02-15T06:59:31Z +3645,796,1,2020-02-15T06:59:31Z +3646,796,2,2020-02-15T06:59:31Z +3647,796,2,2020-02-15T06:59:31Z +3648,796,2,2020-02-15T06:59:31Z +3649,797,1,2020-02-15T06:59:31Z +3650,797,1,2020-02-15T06:59:31Z +3651,797,2,2020-02-15T06:59:31Z +3652,797,2,2020-02-15T06:59:31Z +3653,797,2,2020-02-15T06:59:31Z +3654,798,1,2020-02-15T06:59:31Z +3655,798,1,2020-02-15T06:59:31Z +3656,798,2,2020-02-15T06:59:31Z +3657,798,2,2020-02-15T06:59:31Z +3658,799,1,2020-02-15T06:59:31Z +3659,799,1,2020-02-15T06:59:31Z +3660,800,1,2020-02-15T06:59:31Z +3661,800,1,2020-02-15T06:59:31Z +3662,800,2,2020-02-15T06:59:31Z +3663,800,2,2020-02-15T06:59:31Z +3664,800,2,2020-02-15T06:59:31Z +3665,800,2,2020-02-15T06:59:31Z +3666,803,1,2020-02-15T06:59:31Z +3667,803,1,2020-02-15T06:59:31Z +3668,803,1,2020-02-15T06:59:31Z +3669,803,1,2020-02-15T06:59:31Z +3670,803,2,2020-02-15T06:59:31Z +3671,803,2,2020-02-15T06:59:31Z +3672,804,1,2020-02-15T06:59:31Z +3673,804,1,2020-02-15T06:59:31Z +3674,804,1,2020-02-15T06:59:31Z +3675,804,1,2020-02-15T06:59:31Z +3676,804,2,2020-02-15T06:59:31Z +3677,804,2,2020-02-15T06:59:31Z +3678,804,2,2020-02-15T06:59:31Z +3679,805,1,2020-02-15T06:59:31Z +3680,805,1,2020-02-15T06:59:31Z +3681,805,2,2020-02-15T06:59:31Z +3682,805,2,2020-02-15T06:59:31Z +3683,805,2,2020-02-15T06:59:31Z +3684,806,1,2020-02-15T06:59:31Z +3685,806,1,2020-02-15T06:59:31Z +3686,806,1,2020-02-15T06:59:31Z +3687,806,2,2020-02-15T06:59:31Z +3688,806,2,2020-02-15T06:59:31Z +3689,807,1,2020-02-15T06:59:31Z +3690,807,1,2020-02-15T06:59:31Z +3691,807,1,2020-02-15T06:59:31Z +3692,807,2,2020-02-15T06:59:31Z +3693,807,2,2020-02-15T06:59:31Z +3694,808,2,2020-02-15T06:59:31Z +3695,808,2,2020-02-15T06:59:31Z +3696,809,2,2020-02-15T06:59:31Z +3697,809,2,2020-02-15T06:59:31Z +3698,809,2,2020-02-15T06:59:31Z +3699,809,2,2020-02-15T06:59:31Z +3700,810,1,2020-02-15T06:59:31Z +3701,810,1,2020-02-15T06:59:31Z +3702,810,1,2020-02-15T06:59:31Z +3703,810,1,2020-02-15T06:59:31Z +3704,810,2,2020-02-15T06:59:31Z +3705,810,2,2020-02-15T06:59:31Z +3706,810,2,2020-02-15T06:59:31Z +3707,811,1,2020-02-15T06:59:31Z +3708,811,1,2020-02-15T06:59:31Z +3709,811,1,2020-02-15T06:59:31Z +3710,812,1,2020-02-15T06:59:31Z +3711,812,1,2020-02-15T06:59:31Z +3712,812,1,2020-02-15T06:59:31Z +3713,812,2,2020-02-15T06:59:31Z +3714,812,2,2020-02-15T06:59:31Z +3715,812,2,2020-02-15T06:59:31Z +3716,813,2,2020-02-15T06:59:31Z +3717,813,2,2020-02-15T06:59:31Z +3718,813,2,2020-02-15T06:59:31Z +3719,813,2,2020-02-15T06:59:31Z +3720,814,1,2020-02-15T06:59:31Z +3721,814,1,2020-02-15T06:59:31Z +3722,814,1,2020-02-15T06:59:31Z +3723,814,2,2020-02-15T06:59:31Z +3724,814,2,2020-02-15T06:59:31Z +3725,814,2,2020-02-15T06:59:31Z +3726,814,2,2020-02-15T06:59:31Z +3727,815,1,2020-02-15T06:59:31Z +3728,815,1,2020-02-15T06:59:31Z +3729,815,1,2020-02-15T06:59:31Z +3730,816,1,2020-02-15T06:59:31Z +3731,816,1,2020-02-15T06:59:31Z +3732,816,1,2020-02-15T06:59:31Z +3733,816,1,2020-02-15T06:59:31Z +3734,816,2,2020-02-15T06:59:31Z +3735,816,2,2020-02-15T06:59:31Z +3736,816,2,2020-02-15T06:59:31Z +3737,817,1,2020-02-15T06:59:31Z +3738,817,1,2020-02-15T06:59:31Z +3739,818,1,2020-02-15T06:59:31Z +3740,818,1,2020-02-15T06:59:31Z +3741,818,1,2020-02-15T06:59:31Z +3742,818,2,2020-02-15T06:59:31Z +3743,818,2,2020-02-15T06:59:31Z +3744,819,1,2020-02-15T06:59:31Z +3745,819,1,2020-02-15T06:59:31Z +3746,819,1,2020-02-15T06:59:31Z +3747,820,1,2020-02-15T06:59:31Z +3748,820,1,2020-02-15T06:59:31Z +3749,820,1,2020-02-15T06:59:31Z +3750,820,1,2020-02-15T06:59:31Z +3751,820,2,2020-02-15T06:59:31Z +3752,820,2,2020-02-15T06:59:31Z +3753,821,2,2020-02-15T06:59:31Z +3754,821,2,2020-02-15T06:59:31Z +3755,821,2,2020-02-15T06:59:31Z +3756,821,2,2020-02-15T06:59:31Z +3757,822,2,2020-02-15T06:59:31Z +3758,822,2,2020-02-15T06:59:31Z +3759,823,1,2020-02-15T06:59:31Z +3760,823,1,2020-02-15T06:59:31Z +3761,823,1,2020-02-15T06:59:31Z +3762,823,2,2020-02-15T06:59:31Z +3763,823,2,2020-02-15T06:59:31Z +3764,823,2,2020-02-15T06:59:31Z +3765,823,2,2020-02-15T06:59:31Z +3766,824,2,2020-02-15T06:59:31Z +3767,824,2,2020-02-15T06:59:31Z +3768,824,2,2020-02-15T06:59:31Z +3769,824,2,2020-02-15T06:59:31Z +3770,825,1,2020-02-15T06:59:31Z +3771,825,1,2020-02-15T06:59:31Z +3772,825,1,2020-02-15T06:59:31Z +3773,826,2,2020-02-15T06:59:31Z +3774,826,2,2020-02-15T06:59:31Z +3775,827,1,2020-02-15T06:59:31Z +3776,827,1,2020-02-15T06:59:31Z +3777,827,2,2020-02-15T06:59:31Z +3778,827,2,2020-02-15T06:59:31Z +3779,827,2,2020-02-15T06:59:31Z +3780,827,2,2020-02-15T06:59:31Z +3781,828,2,2020-02-15T06:59:31Z +3782,828,2,2020-02-15T06:59:31Z +3783,828,2,2020-02-15T06:59:31Z +3784,828,2,2020-02-15T06:59:31Z +3785,829,1,2020-02-15T06:59:31Z +3786,829,1,2020-02-15T06:59:31Z +3787,829,2,2020-02-15T06:59:31Z +3788,829,2,2020-02-15T06:59:31Z +3789,829,2,2020-02-15T06:59:31Z +3790,830,2,2020-02-15T06:59:31Z +3791,830,2,2020-02-15T06:59:31Z +3792,830,2,2020-02-15T06:59:31Z +3793,830,2,2020-02-15T06:59:31Z +3794,831,1,2020-02-15T06:59:31Z +3795,831,1,2020-02-15T06:59:31Z +3796,831,1,2020-02-15T06:59:31Z +3797,832,1,2020-02-15T06:59:31Z +3798,832,1,2020-02-15T06:59:31Z +3799,832,1,2020-02-15T06:59:31Z +3800,832,1,2020-02-15T06:59:31Z +3801,833,1,2020-02-15T06:59:31Z +3802,833,1,2020-02-15T06:59:31Z +3803,833,1,2020-02-15T06:59:31Z +3804,833,2,2020-02-15T06:59:31Z +3805,833,2,2020-02-15T06:59:31Z +3806,833,2,2020-02-15T06:59:31Z +3807,833,2,2020-02-15T06:59:31Z +3808,834,2,2020-02-15T06:59:31Z +3809,834,2,2020-02-15T06:59:31Z +3810,834,2,2020-02-15T06:59:31Z +3811,835,1,2020-02-15T06:59:31Z +3812,835,1,2020-02-15T06:59:31Z +3813,835,1,2020-02-15T06:59:31Z +3814,835,1,2020-02-15T06:59:31Z +3815,835,2,2020-02-15T06:59:31Z +3816,835,2,2020-02-15T06:59:31Z +3817,835,2,2020-02-15T06:59:31Z +3818,835,2,2020-02-15T06:59:31Z +3819,836,1,2020-02-15T06:59:31Z +3820,836,1,2020-02-15T06:59:31Z +3821,836,1,2020-02-15T06:59:31Z +3822,837,2,2020-02-15T06:59:31Z +3823,837,2,2020-02-15T06:59:31Z +3824,837,2,2020-02-15T06:59:31Z +3825,838,1,2020-02-15T06:59:31Z +3826,838,1,2020-02-15T06:59:31Z +3827,838,2,2020-02-15T06:59:31Z +3828,838,2,2020-02-15T06:59:31Z +3829,838,2,2020-02-15T06:59:31Z +3830,838,2,2020-02-15T06:59:31Z +3831,839,2,2020-02-15T06:59:31Z +3832,839,2,2020-02-15T06:59:31Z +3833,840,1,2020-02-15T06:59:31Z +3834,840,1,2020-02-15T06:59:31Z +3835,840,1,2020-02-15T06:59:31Z +3836,840,1,2020-02-15T06:59:31Z +3837,841,1,2020-02-15T06:59:31Z +3838,841,1,2020-02-15T06:59:31Z +3839,841,1,2020-02-15T06:59:31Z +3840,841,2,2020-02-15T06:59:31Z +3841,841,2,2020-02-15T06:59:31Z +3842,841,2,2020-02-15T06:59:31Z +3843,841,2,2020-02-15T06:59:31Z +3844,842,1,2020-02-15T06:59:31Z +3845,842,1,2020-02-15T06:59:31Z +3846,842,2,2020-02-15T06:59:31Z +3847,842,2,2020-02-15T06:59:31Z +3848,843,1,2020-02-15T06:59:31Z +3849,843,1,2020-02-15T06:59:31Z +3850,843,1,2020-02-15T06:59:31Z +3851,843,1,2020-02-15T06:59:31Z +3852,843,2,2020-02-15T06:59:31Z +3853,843,2,2020-02-15T06:59:31Z +3854,843,2,2020-02-15T06:59:31Z +3855,844,1,2020-02-15T06:59:31Z +3856,844,1,2020-02-15T06:59:31Z +3857,844,2,2020-02-15T06:59:31Z +3858,844,2,2020-02-15T06:59:31Z +3859,845,1,2020-02-15T06:59:31Z +3860,845,1,2020-02-15T06:59:31Z +3861,845,1,2020-02-15T06:59:31Z +3862,845,1,2020-02-15T06:59:31Z +3863,845,2,2020-02-15T06:59:31Z +3864,845,2,2020-02-15T06:59:31Z +3865,845,2,2020-02-15T06:59:31Z +3866,846,1,2020-02-15T06:59:31Z +3867,846,1,2020-02-15T06:59:31Z +3868,846,1,2020-02-15T06:59:31Z +3869,846,1,2020-02-15T06:59:31Z +3870,846,2,2020-02-15T06:59:31Z +3871,846,2,2020-02-15T06:59:31Z +3872,846,2,2020-02-15T06:59:31Z +3873,846,2,2020-02-15T06:59:31Z +3874,847,2,2020-02-15T06:59:31Z +3875,847,2,2020-02-15T06:59:31Z +3876,847,2,2020-02-15T06:59:31Z +3877,847,2,2020-02-15T06:59:31Z +3878,848,1,2020-02-15T06:59:31Z +3879,848,1,2020-02-15T06:59:31Z +3880,848,1,2020-02-15T06:59:31Z +3881,849,1,2020-02-15T06:59:31Z +3882,849,1,2020-02-15T06:59:31Z +3883,849,1,2020-02-15T06:59:31Z +3884,849,1,2020-02-15T06:59:31Z +3885,849,2,2020-02-15T06:59:31Z +3886,849,2,2020-02-15T06:59:31Z +3887,849,2,2020-02-15T06:59:31Z +3888,849,2,2020-02-15T06:59:31Z +3889,850,1,2020-02-15T06:59:31Z +3890,850,1,2020-02-15T06:59:31Z +3891,850,1,2020-02-15T06:59:31Z +3892,850,2,2020-02-15T06:59:31Z +3893,850,2,2020-02-15T06:59:31Z +3894,850,2,2020-02-15T06:59:31Z +3895,850,2,2020-02-15T06:59:31Z +3896,851,1,2020-02-15T06:59:31Z +3897,851,1,2020-02-15T06:59:31Z +3898,851,1,2020-02-15T06:59:31Z +3899,851,2,2020-02-15T06:59:31Z +3900,851,2,2020-02-15T06:59:31Z +3901,851,2,2020-02-15T06:59:31Z +3902,852,1,2020-02-15T06:59:31Z +3903,852,1,2020-02-15T06:59:31Z +3904,852,1,2020-02-15T06:59:31Z +3905,852,1,2020-02-15T06:59:31Z +3906,852,2,2020-02-15T06:59:31Z +3907,852,2,2020-02-15T06:59:31Z +3908,852,2,2020-02-15T06:59:31Z +3909,853,1,2020-02-15T06:59:31Z +3910,853,1,2020-02-15T06:59:31Z +3911,853,1,2020-02-15T06:59:31Z +3912,854,2,2020-02-15T06:59:31Z +3913,854,2,2020-02-15T06:59:31Z +3914,854,2,2020-02-15T06:59:31Z +3915,854,2,2020-02-15T06:59:31Z +3916,855,1,2020-02-15T06:59:31Z +3917,855,1,2020-02-15T06:59:31Z +3918,855,2,2020-02-15T06:59:31Z +3919,855,2,2020-02-15T06:59:31Z +3920,856,1,2020-02-15T06:59:31Z +3921,856,1,2020-02-15T06:59:31Z +3922,856,1,2020-02-15T06:59:31Z +3923,856,1,2020-02-15T06:59:31Z +3924,856,2,2020-02-15T06:59:31Z +3925,856,2,2020-02-15T06:59:31Z +3926,856,2,2020-02-15T06:59:31Z +3927,856,2,2020-02-15T06:59:31Z +3928,857,1,2020-02-15T06:59:31Z +3929,857,1,2020-02-15T06:59:31Z +3930,857,1,2020-02-15T06:59:31Z +3931,857,2,2020-02-15T06:59:31Z +3932,857,2,2020-02-15T06:59:31Z +3933,857,2,2020-02-15T06:59:31Z +3934,857,2,2020-02-15T06:59:31Z +3935,858,2,2020-02-15T06:59:31Z +3936,858,2,2020-02-15T06:59:31Z +3937,858,2,2020-02-15T06:59:31Z +3938,858,2,2020-02-15T06:59:31Z +3939,859,1,2020-02-15T06:59:31Z +3940,859,1,2020-02-15T06:59:31Z +3941,859,1,2020-02-15T06:59:31Z +3942,859,2,2020-02-15T06:59:31Z +3943,859,2,2020-02-15T06:59:31Z +3944,859,2,2020-02-15T06:59:31Z +3945,861,1,2020-02-15T06:59:31Z +3946,861,1,2020-02-15T06:59:31Z +3947,861,1,2020-02-15T06:59:31Z +3948,861,2,2020-02-15T06:59:31Z +3949,861,2,2020-02-15T06:59:31Z +3950,861,2,2020-02-15T06:59:31Z +3951,862,1,2020-02-15T06:59:31Z +3952,862,1,2020-02-15T06:59:31Z +3953,862,1,2020-02-15T06:59:31Z +3954,862,2,2020-02-15T06:59:31Z +3955,862,2,2020-02-15T06:59:31Z +3956,863,1,2020-02-15T06:59:31Z +3957,863,1,2020-02-15T06:59:31Z +3958,863,1,2020-02-15T06:59:31Z +3959,863,1,2020-02-15T06:59:31Z +3960,863,2,2020-02-15T06:59:31Z +3961,863,2,2020-02-15T06:59:31Z +3962,863,2,2020-02-15T06:59:31Z +3963,864,1,2020-02-15T06:59:31Z +3964,864,1,2020-02-15T06:59:31Z +3965,864,1,2020-02-15T06:59:31Z +3966,864,1,2020-02-15T06:59:31Z +3967,864,2,2020-02-15T06:59:31Z +3968,864,2,2020-02-15T06:59:31Z +3969,865,1,2020-02-15T06:59:31Z +3970,865,1,2020-02-15T06:59:31Z +3971,865,1,2020-02-15T06:59:31Z +3972,865,1,2020-02-15T06:59:31Z +3973,865,2,2020-02-15T06:59:31Z +3974,865,2,2020-02-15T06:59:31Z +3975,866,2,2020-02-15T06:59:31Z +3976,866,2,2020-02-15T06:59:31Z +3977,867,1,2020-02-15T06:59:31Z +3978,867,1,2020-02-15T06:59:31Z +3979,867,1,2020-02-15T06:59:31Z +3980,867,1,2020-02-15T06:59:31Z +3981,868,1,2020-02-15T06:59:31Z +3982,868,1,2020-02-15T06:59:31Z +3983,868,1,2020-02-15T06:59:31Z +3984,869,1,2020-02-15T06:59:31Z +3985,869,1,2020-02-15T06:59:31Z +3986,869,1,2020-02-15T06:59:31Z +3987,869,1,2020-02-15T06:59:31Z +3988,869,2,2020-02-15T06:59:31Z +3989,869,2,2020-02-15T06:59:31Z +3990,869,2,2020-02-15T06:59:31Z +3991,870,1,2020-02-15T06:59:31Z +3992,870,1,2020-02-15T06:59:31Z +3993,870,1,2020-02-15T06:59:31Z +3994,870,1,2020-02-15T06:59:31Z +3995,870,2,2020-02-15T06:59:31Z +3996,870,2,2020-02-15T06:59:31Z +3997,870,2,2020-02-15T06:59:31Z +3998,870,2,2020-02-15T06:59:31Z +3999,871,1,2020-02-15T06:59:31Z +4000,871,1,2020-02-15T06:59:31Z +4001,871,2,2020-02-15T06:59:31Z +4002,871,2,2020-02-15T06:59:31Z +4003,871,2,2020-02-15T06:59:31Z +4004,872,2,2020-02-15T06:59:31Z +4005,872,2,2020-02-15T06:59:31Z +4006,872,2,2020-02-15T06:59:31Z +4007,873,1,2020-02-15T06:59:31Z +4008,873,1,2020-02-15T06:59:31Z +4009,873,1,2020-02-15T06:59:31Z +4010,873,1,2020-02-15T06:59:31Z +4011,873,2,2020-02-15T06:59:31Z +4012,873,2,2020-02-15T06:59:31Z +4013,873,2,2020-02-15T06:59:31Z +4014,873,2,2020-02-15T06:59:31Z +4015,875,1,2020-02-15T06:59:31Z +4016,875,1,2020-02-15T06:59:31Z +4017,875,1,2020-02-15T06:59:31Z +4018,875,2,2020-02-15T06:59:31Z +4019,875,2,2020-02-15T06:59:31Z +4020,875,2,2020-02-15T06:59:31Z +4021,875,2,2020-02-15T06:59:31Z +4022,876,1,2020-02-15T06:59:31Z +4023,876,1,2020-02-15T06:59:31Z +4024,877,1,2020-02-15T06:59:31Z +4025,877,1,2020-02-15T06:59:31Z +4026,877,1,2020-02-15T06:59:31Z +4027,877,2,2020-02-15T06:59:31Z +4028,877,2,2020-02-15T06:59:31Z +4029,878,2,2020-02-15T06:59:31Z +4030,878,2,2020-02-15T06:59:31Z +4031,878,2,2020-02-15T06:59:31Z +4032,878,2,2020-02-15T06:59:31Z +4033,879,1,2020-02-15T06:59:31Z +4034,879,1,2020-02-15T06:59:31Z +4035,879,1,2020-02-15T06:59:31Z +4036,879,1,2020-02-15T06:59:31Z +4037,879,2,2020-02-15T06:59:31Z +4038,879,2,2020-02-15T06:59:31Z +4039,879,2,2020-02-15T06:59:31Z +4040,880,1,2020-02-15T06:59:31Z +4041,880,1,2020-02-15T06:59:31Z +4042,880,1,2020-02-15T06:59:31Z +4043,880,1,2020-02-15T06:59:31Z +4044,880,2,2020-02-15T06:59:31Z +4045,880,2,2020-02-15T06:59:31Z +4046,880,2,2020-02-15T06:59:31Z +4047,880,2,2020-02-15T06:59:31Z +4048,881,2,2020-02-15T06:59:31Z +4049,881,2,2020-02-15T06:59:31Z +4050,881,2,2020-02-15T06:59:31Z +4051,881,2,2020-02-15T06:59:31Z +4052,882,1,2020-02-15T06:59:31Z +4053,882,1,2020-02-15T06:59:31Z +4054,882,1,2020-02-15T06:59:31Z +4055,882,1,2020-02-15T06:59:31Z +4056,883,2,2020-02-15T06:59:31Z +4057,883,2,2020-02-15T06:59:32Z +4058,884,2,2020-02-15T06:59:32Z +4059,884,2,2020-02-15T06:59:32Z +4060,884,2,2020-02-15T06:59:32Z +4061,885,1,2020-02-15T06:59:32Z +4062,885,1,2020-02-15T06:59:32Z +4063,886,1,2020-02-15T06:59:32Z +4064,886,1,2020-02-15T06:59:32Z +4065,886,1,2020-02-15T06:59:32Z +4066,886,1,2020-02-15T06:59:32Z +4067,887,1,2020-02-15T06:59:32Z +4068,887,1,2020-02-15T06:59:32Z +4069,887,1,2020-02-15T06:59:32Z +4070,887,1,2020-02-15T06:59:32Z +4071,887,2,2020-02-15T06:59:32Z +4072,887,2,2020-02-15T06:59:32Z +4073,888,1,2020-02-15T06:59:32Z +4074,888,1,2020-02-15T06:59:32Z +4075,888,1,2020-02-15T06:59:32Z +4076,888,1,2020-02-15T06:59:32Z +4077,889,1,2020-02-15T06:59:32Z +4078,889,1,2020-02-15T06:59:32Z +4079,889,1,2020-02-15T06:59:32Z +4080,890,1,2020-02-15T06:59:32Z +4081,890,1,2020-02-15T06:59:32Z +4082,890,1,2020-02-15T06:59:32Z +4083,890,2,2020-02-15T06:59:32Z +4084,890,2,2020-02-15T06:59:32Z +4085,890,2,2020-02-15T06:59:32Z +4086,890,2,2020-02-15T06:59:32Z +4087,891,1,2020-02-15T06:59:32Z +4088,891,1,2020-02-15T06:59:32Z +4089,891,1,2020-02-15T06:59:32Z +4090,891,2,2020-02-15T06:59:32Z +4091,891,2,2020-02-15T06:59:32Z +4092,891,2,2020-02-15T06:59:32Z +4093,891,2,2020-02-15T06:59:32Z +4094,892,1,2020-02-15T06:59:32Z +4095,892,1,2020-02-15T06:59:32Z +4096,892,1,2020-02-15T06:59:32Z +4097,892,2,2020-02-15T06:59:32Z +4098,892,2,2020-02-15T06:59:32Z +4099,892,2,2020-02-15T06:59:32Z +4100,892,2,2020-02-15T06:59:32Z +4101,893,1,2020-02-15T06:59:32Z +4102,893,1,2020-02-15T06:59:32Z +4103,893,1,2020-02-15T06:59:32Z +4104,893,1,2020-02-15T06:59:32Z +4105,893,2,2020-02-15T06:59:32Z +4106,893,2,2020-02-15T06:59:32Z +4107,893,2,2020-02-15T06:59:32Z +4108,893,2,2020-02-15T06:59:32Z +4109,894,1,2020-02-15T06:59:32Z +4110,894,1,2020-02-15T06:59:32Z +4111,894,1,2020-02-15T06:59:32Z +4112,894,2,2020-02-15T06:59:32Z +4113,894,2,2020-02-15T06:59:32Z +4114,895,1,2020-02-15T06:59:32Z +4115,895,1,2020-02-15T06:59:32Z +4116,895,1,2020-02-15T06:59:32Z +4117,895,1,2020-02-15T06:59:32Z +4118,895,2,2020-02-15T06:59:32Z +4119,895,2,2020-02-15T06:59:32Z +4120,895,2,2020-02-15T06:59:32Z +4121,896,1,2020-02-15T06:59:32Z +4122,896,1,2020-02-15T06:59:32Z +4123,896,2,2020-02-15T06:59:32Z +4124,896,2,2020-02-15T06:59:32Z +4125,897,1,2020-02-15T06:59:32Z +4126,897,1,2020-02-15T06:59:32Z +4127,897,1,2020-02-15T06:59:32Z +4128,897,1,2020-02-15T06:59:32Z +4129,897,2,2020-02-15T06:59:32Z +4130,897,2,2020-02-15T06:59:32Z +4131,897,2,2020-02-15T06:59:32Z +4132,897,2,2020-02-15T06:59:32Z +4133,898,1,2020-02-15T06:59:32Z +4134,898,1,2020-02-15T06:59:32Z +4135,898,1,2020-02-15T06:59:32Z +4136,898,2,2020-02-15T06:59:32Z +4137,898,2,2020-02-15T06:59:32Z +4138,899,1,2020-02-15T06:59:32Z +4139,899,1,2020-02-15T06:59:32Z +4140,899,1,2020-02-15T06:59:32Z +4141,900,1,2020-02-15T06:59:32Z +4142,900,1,2020-02-15T06:59:32Z +4143,900,2,2020-02-15T06:59:32Z +4144,900,2,2020-02-15T06:59:32Z +4145,901,1,2020-02-15T06:59:32Z +4146,901,1,2020-02-15T06:59:32Z +4147,901,1,2020-02-15T06:59:32Z +4148,901,1,2020-02-15T06:59:32Z +4149,901,2,2020-02-15T06:59:32Z +4150,901,2,2020-02-15T06:59:32Z +4151,901,2,2020-02-15T06:59:32Z +4152,902,1,2020-02-15T06:59:32Z +4153,902,1,2020-02-15T06:59:32Z +4154,902,1,2020-02-15T06:59:32Z +4155,902,1,2020-02-15T06:59:32Z +4156,902,2,2020-02-15T06:59:32Z +4157,902,2,2020-02-15T06:59:32Z +4158,902,2,2020-02-15T06:59:32Z +4159,903,2,2020-02-15T06:59:32Z +4160,903,2,2020-02-15T06:59:32Z +4161,904,1,2020-02-15T06:59:32Z +4162,904,1,2020-02-15T06:59:32Z +4163,905,1,2020-02-15T06:59:32Z +4164,905,1,2020-02-15T06:59:32Z +4165,905,1,2020-02-15T06:59:32Z +4166,906,1,2020-02-15T06:59:32Z +4167,906,1,2020-02-15T06:59:32Z +4168,906,2,2020-02-15T06:59:32Z +4169,906,2,2020-02-15T06:59:32Z +4170,906,2,2020-02-15T06:59:32Z +4171,907,1,2020-02-15T06:59:32Z +4172,907,1,2020-02-15T06:59:32Z +4173,907,1,2020-02-15T06:59:32Z +4174,907,1,2020-02-15T06:59:32Z +4175,908,1,2020-02-15T06:59:32Z +4176,908,1,2020-02-15T06:59:32Z +4177,908,2,2020-02-15T06:59:32Z +4178,908,2,2020-02-15T06:59:32Z +4179,910,2,2020-02-15T06:59:32Z +4180,910,2,2020-02-15T06:59:32Z +4181,911,1,2020-02-15T06:59:32Z +4182,911,1,2020-02-15T06:59:32Z +4183,911,1,2020-02-15T06:59:32Z +4184,911,1,2020-02-15T06:59:32Z +4185,911,2,2020-02-15T06:59:32Z +4186,911,2,2020-02-15T06:59:32Z +4187,911,2,2020-02-15T06:59:32Z +4188,911,2,2020-02-15T06:59:32Z +4189,912,1,2020-02-15T06:59:32Z +4190,912,1,2020-02-15T06:59:32Z +4191,912,1,2020-02-15T06:59:32Z +4192,912,2,2020-02-15T06:59:32Z +4193,912,2,2020-02-15T06:59:32Z +4194,912,2,2020-02-15T06:59:32Z +4195,913,1,2020-02-15T06:59:32Z +4196,913,1,2020-02-15T06:59:32Z +4197,913,1,2020-02-15T06:59:32Z +4198,913,1,2020-02-15T06:59:32Z +4199,913,2,2020-02-15T06:59:32Z +4200,913,2,2020-02-15T06:59:32Z +4201,914,1,2020-02-15T06:59:32Z +4202,914,1,2020-02-15T06:59:32Z +4203,914,2,2020-02-15T06:59:32Z +4204,914,2,2020-02-15T06:59:32Z +4205,914,2,2020-02-15T06:59:32Z +4206,914,2,2020-02-15T06:59:32Z +4207,915,1,2020-02-15T06:59:32Z +4208,915,1,2020-02-15T06:59:32Z +4209,915,1,2020-02-15T06:59:32Z +4210,915,1,2020-02-15T06:59:32Z +4211,915,2,2020-02-15T06:59:32Z +4212,915,2,2020-02-15T06:59:32Z +4213,916,1,2020-02-15T06:59:32Z +4214,916,1,2020-02-15T06:59:32Z +4215,916,2,2020-02-15T06:59:32Z +4216,916,2,2020-02-15T06:59:32Z +4217,917,1,2020-02-15T06:59:32Z +4218,917,1,2020-02-15T06:59:32Z +4219,917,1,2020-02-15T06:59:32Z +4220,917,2,2020-02-15T06:59:32Z +4221,917,2,2020-02-15T06:59:32Z +4222,918,2,2020-02-15T06:59:32Z +4223,918,2,2020-02-15T06:59:32Z +4224,918,2,2020-02-15T06:59:32Z +4225,918,2,2020-02-15T06:59:32Z +4226,919,1,2020-02-15T06:59:32Z +4227,919,1,2020-02-15T06:59:32Z +4228,919,1,2020-02-15T06:59:32Z +4229,919,1,2020-02-15T06:59:32Z +4230,920,1,2020-02-15T06:59:32Z +4231,920,1,2020-02-15T06:59:32Z +4232,920,1,2020-02-15T06:59:32Z +4233,920,2,2020-02-15T06:59:32Z +4234,920,2,2020-02-15T06:59:32Z +4235,921,1,2020-02-15T06:59:32Z +4236,921,1,2020-02-15T06:59:32Z +4237,921,2,2020-02-15T06:59:32Z +4238,921,2,2020-02-15T06:59:32Z +4239,922,1,2020-02-15T06:59:32Z +4240,922,1,2020-02-15T06:59:32Z +4241,922,1,2020-02-15T06:59:32Z +4242,922,2,2020-02-15T06:59:32Z +4243,922,2,2020-02-15T06:59:32Z +4244,922,2,2020-02-15T06:59:32Z +4245,922,2,2020-02-15T06:59:32Z +4246,923,2,2020-02-15T06:59:32Z +4247,923,2,2020-02-15T06:59:32Z +4248,923,2,2020-02-15T06:59:32Z +4249,924,1,2020-02-15T06:59:32Z +4250,924,1,2020-02-15T06:59:32Z +4251,924,2,2020-02-15T06:59:32Z +4252,924,2,2020-02-15T06:59:32Z +4253,924,2,2020-02-15T06:59:32Z +4254,925,1,2020-02-15T06:59:32Z +4255,925,1,2020-02-15T06:59:32Z +4256,925,1,2020-02-15T06:59:32Z +4257,925,2,2020-02-15T06:59:32Z +4258,925,2,2020-02-15T06:59:32Z +4259,926,2,2020-02-15T06:59:32Z +4260,926,2,2020-02-15T06:59:32Z +4261,927,1,2020-02-15T06:59:32Z +4262,927,1,2020-02-15T06:59:32Z +4263,927,1,2020-02-15T06:59:32Z +4264,927,1,2020-02-15T06:59:32Z +4265,928,1,2020-02-15T06:59:32Z +4266,928,1,2020-02-15T06:59:32Z +4267,928,1,2020-02-15T06:59:32Z +4268,929,1,2020-02-15T06:59:32Z +4269,929,1,2020-02-15T06:59:32Z +4270,929,1,2020-02-15T06:59:32Z +4271,929,1,2020-02-15T06:59:32Z +4272,930,1,2020-02-15T06:59:32Z +4273,930,1,2020-02-15T06:59:32Z +4274,930,1,2020-02-15T06:59:32Z +4275,930,2,2020-02-15T06:59:32Z +4276,930,2,2020-02-15T06:59:32Z +4277,930,2,2020-02-15T06:59:32Z +4278,931,2,2020-02-15T06:59:32Z +4279,931,2,2020-02-15T06:59:32Z +4280,931,2,2020-02-15T06:59:32Z +4281,932,1,2020-02-15T06:59:32Z +4282,932,1,2020-02-15T06:59:32Z +4283,932,2,2020-02-15T06:59:32Z +4284,932,2,2020-02-15T06:59:32Z +4285,933,1,2020-02-15T06:59:32Z +4286,933,1,2020-02-15T06:59:32Z +4287,933,1,2020-02-15T06:59:32Z +4288,934,2,2020-02-15T06:59:32Z +4289,934,2,2020-02-15T06:59:32Z +4290,934,2,2020-02-15T06:59:32Z +4291,935,2,2020-02-15T06:59:32Z +4292,935,2,2020-02-15T06:59:32Z +4293,936,1,2020-02-15T06:59:32Z +4294,936,1,2020-02-15T06:59:32Z +4295,936,2,2020-02-15T06:59:32Z +4296,936,2,2020-02-15T06:59:32Z +4297,936,2,2020-02-15T06:59:32Z +4298,936,2,2020-02-15T06:59:32Z +4299,937,1,2020-02-15T06:59:32Z +4300,937,1,2020-02-15T06:59:32Z +4301,937,2,2020-02-15T06:59:32Z +4302,937,2,2020-02-15T06:59:32Z +4303,937,2,2020-02-15T06:59:32Z +4304,938,1,2020-02-15T06:59:32Z +4305,938,1,2020-02-15T06:59:32Z +4306,938,1,2020-02-15T06:59:32Z +4307,938,1,2020-02-15T06:59:32Z +4308,938,2,2020-02-15T06:59:32Z +4309,938,2,2020-02-15T06:59:32Z +4310,939,2,2020-02-15T06:59:32Z +4311,939,2,2020-02-15T06:59:32Z +4312,939,2,2020-02-15T06:59:32Z +4313,939,2,2020-02-15T06:59:32Z +4314,940,1,2020-02-15T06:59:32Z +4315,940,1,2020-02-15T06:59:32Z +4316,940,1,2020-02-15T06:59:32Z +4317,941,1,2020-02-15T06:59:32Z +4318,941,1,2020-02-15T06:59:32Z +4319,941,1,2020-02-15T06:59:32Z +4320,941,1,2020-02-15T06:59:32Z +4321,941,2,2020-02-15T06:59:32Z +4322,941,2,2020-02-15T06:59:32Z +4323,941,2,2020-02-15T06:59:32Z +4324,942,1,2020-02-15T06:59:32Z +4325,942,1,2020-02-15T06:59:32Z +4326,942,2,2020-02-15T06:59:32Z +4327,942,2,2020-02-15T06:59:32Z +4328,944,1,2020-02-15T06:59:32Z +4329,944,1,2020-02-15T06:59:32Z +4330,944,2,2020-02-15T06:59:32Z +4331,944,2,2020-02-15T06:59:32Z +4332,944,2,2020-02-15T06:59:32Z +4333,945,1,2020-02-15T06:59:32Z +4334,945,1,2020-02-15T06:59:32Z +4335,945,1,2020-02-15T06:59:32Z +4336,945,1,2020-02-15T06:59:32Z +4337,945,2,2020-02-15T06:59:32Z +4338,945,2,2020-02-15T06:59:32Z +4339,945,2,2020-02-15T06:59:32Z +4340,945,2,2020-02-15T06:59:32Z +4341,946,2,2020-02-15T06:59:32Z +4342,946,2,2020-02-15T06:59:32Z +4343,946,2,2020-02-15T06:59:32Z +4344,946,2,2020-02-15T06:59:32Z +4345,947,1,2020-02-15T06:59:32Z +4346,947,1,2020-02-15T06:59:32Z +4347,948,1,2020-02-15T06:59:32Z +4348,948,1,2020-02-15T06:59:32Z +4349,948,2,2020-02-15T06:59:32Z +4350,948,2,2020-02-15T06:59:32Z +4351,948,2,2020-02-15T06:59:32Z +4352,948,2,2020-02-15T06:59:32Z +4353,949,1,2020-02-15T06:59:32Z +4354,949,1,2020-02-15T06:59:32Z +4355,949,1,2020-02-15T06:59:32Z +4356,949,1,2020-02-15T06:59:32Z +4357,949,2,2020-02-15T06:59:32Z +4358,949,2,2020-02-15T06:59:32Z +4359,951,1,2020-02-15T06:59:32Z +4360,951,1,2020-02-15T06:59:32Z +4361,951,1,2020-02-15T06:59:32Z +4362,951,2,2020-02-15T06:59:32Z +4363,951,2,2020-02-15T06:59:32Z +4364,951,2,2020-02-15T06:59:32Z +4365,951,2,2020-02-15T06:59:32Z +4366,952,1,2020-02-15T06:59:32Z +4367,952,1,2020-02-15T06:59:32Z +4368,952,1,2020-02-15T06:59:32Z +4369,953,1,2020-02-15T06:59:32Z +4370,953,1,2020-02-15T06:59:32Z +4371,953,1,2020-02-15T06:59:32Z +4372,953,1,2020-02-15T06:59:32Z +4373,953,2,2020-02-15T06:59:32Z +4374,953,2,2020-02-15T06:59:32Z +4375,956,1,2020-02-15T06:59:32Z +4376,956,1,2020-02-15T06:59:32Z +4377,956,1,2020-02-15T06:59:32Z +4378,956,1,2020-02-15T06:59:32Z +4379,957,1,2020-02-15T06:59:32Z +4380,957,1,2020-02-15T06:59:32Z +4381,957,1,2020-02-15T06:59:32Z +4382,957,2,2020-02-15T06:59:32Z +4383,957,2,2020-02-15T06:59:32Z +4384,958,1,2020-02-15T06:59:32Z +4385,958,1,2020-02-15T06:59:32Z +4386,958,1,2020-02-15T06:59:32Z +4387,958,2,2020-02-15T06:59:32Z +4388,958,2,2020-02-15T06:59:32Z +4389,958,2,2020-02-15T06:59:32Z +4390,959,1,2020-02-15T06:59:32Z +4391,959,1,2020-02-15T06:59:32Z +4392,960,2,2020-02-15T06:59:32Z +4393,960,2,2020-02-15T06:59:32Z +4394,960,2,2020-02-15T06:59:32Z +4395,961,1,2020-02-15T06:59:32Z +4396,961,1,2020-02-15T06:59:32Z +4397,961,1,2020-02-15T06:59:32Z +4398,961,2,2020-02-15T06:59:32Z +4399,961,2,2020-02-15T06:59:32Z +4400,962,1,2020-02-15T06:59:32Z +4401,962,1,2020-02-15T06:59:32Z +4402,962,1,2020-02-15T06:59:32Z +4403,962,1,2020-02-15T06:59:32Z +4404,963,1,2020-02-15T06:59:32Z +4405,963,1,2020-02-15T06:59:32Z +4406,963,2,2020-02-15T06:59:32Z +4407,963,2,2020-02-15T06:59:32Z +4408,963,2,2020-02-15T06:59:32Z +4409,964,1,2020-02-15T06:59:32Z +4410,964,1,2020-02-15T06:59:32Z +4411,964,1,2020-02-15T06:59:32Z +4412,964,2,2020-02-15T06:59:32Z +4413,964,2,2020-02-15T06:59:32Z +4414,965,1,2020-02-15T06:59:32Z +4415,965,1,2020-02-15T06:59:32Z +4416,966,1,2020-02-15T06:59:32Z +4417,966,1,2020-02-15T06:59:32Z +4418,966,2,2020-02-15T06:59:32Z +4419,966,2,2020-02-15T06:59:32Z +4420,966,2,2020-02-15T06:59:32Z +4421,966,2,2020-02-15T06:59:32Z +4422,967,1,2020-02-15T06:59:32Z +4423,967,1,2020-02-15T06:59:32Z +4424,967,1,2020-02-15T06:59:32Z +4425,967,2,2020-02-15T06:59:32Z +4426,967,2,2020-02-15T06:59:32Z +4427,968,1,2020-02-15T06:59:32Z +4428,968,1,2020-02-15T06:59:32Z +4429,968,1,2020-02-15T06:59:32Z +4430,969,1,2020-02-15T06:59:32Z +4431,969,1,2020-02-15T06:59:32Z +4432,969,1,2020-02-15T06:59:32Z +4433,969,1,2020-02-15T06:59:32Z +4434,970,1,2020-02-15T06:59:32Z +4435,970,1,2020-02-15T06:59:32Z +4436,970,1,2020-02-15T06:59:32Z +4437,970,2,2020-02-15T06:59:32Z +4438,970,2,2020-02-15T06:59:32Z +4439,970,2,2020-02-15T06:59:32Z +4440,970,2,2020-02-15T06:59:32Z +4441,971,1,2020-02-15T06:59:32Z +4442,971,1,2020-02-15T06:59:32Z +4443,971,1,2020-02-15T06:59:32Z +4444,971,1,2020-02-15T06:59:32Z +4445,972,1,2020-02-15T06:59:32Z +4446,972,1,2020-02-15T06:59:32Z +4447,972,1,2020-02-15T06:59:32Z +4448,972,2,2020-02-15T06:59:32Z +4449,972,2,2020-02-15T06:59:32Z +4450,972,2,2020-02-15T06:59:32Z +4451,973,1,2020-02-15T06:59:32Z +4452,973,1,2020-02-15T06:59:32Z +4453,973,1,2020-02-15T06:59:32Z +4454,973,1,2020-02-15T06:59:32Z +4455,973,2,2020-02-15T06:59:32Z +4456,973,2,2020-02-15T06:59:32Z +4457,973,2,2020-02-15T06:59:32Z +4458,973,2,2020-02-15T06:59:32Z +4459,974,1,2020-02-15T06:59:32Z +4460,974,1,2020-02-15T06:59:32Z +4461,975,1,2020-02-15T06:59:32Z +4462,975,1,2020-02-15T06:59:32Z +4463,975,2,2020-02-15T06:59:32Z +4464,975,2,2020-02-15T06:59:32Z +4465,975,2,2020-02-15T06:59:32Z +4466,976,1,2020-02-15T06:59:32Z +4467,976,1,2020-02-15T06:59:32Z +4468,976,2,2020-02-15T06:59:32Z +4469,976,2,2020-02-15T06:59:32Z +4470,976,2,2020-02-15T06:59:32Z +4471,976,2,2020-02-15T06:59:32Z +4472,977,2,2020-02-15T06:59:32Z +4473,977,2,2020-02-15T06:59:32Z +4474,977,2,2020-02-15T06:59:32Z +4475,978,1,2020-02-15T06:59:32Z +4476,978,1,2020-02-15T06:59:32Z +4477,978,1,2020-02-15T06:59:32Z +4478,979,1,2020-02-15T06:59:32Z +4479,979,1,2020-02-15T06:59:32Z +4480,979,1,2020-02-15T06:59:32Z +4481,979,1,2020-02-15T06:59:32Z +4482,979,2,2020-02-15T06:59:32Z +4483,979,2,2020-02-15T06:59:32Z +4484,979,2,2020-02-15T06:59:32Z +4485,980,1,2020-02-15T06:59:32Z +4486,980,1,2020-02-15T06:59:32Z +4487,980,1,2020-02-15T06:59:32Z +4488,980,2,2020-02-15T06:59:32Z +4489,980,2,2020-02-15T06:59:32Z +4490,981,1,2020-02-15T06:59:32Z +4491,981,1,2020-02-15T06:59:32Z +4492,981,1,2020-02-15T06:59:32Z +4493,981,2,2020-02-15T06:59:32Z +4494,981,2,2020-02-15T06:59:32Z +4495,981,2,2020-02-15T06:59:32Z +4496,982,1,2020-02-15T06:59:32Z +4497,982,1,2020-02-15T06:59:32Z +4498,982,1,2020-02-15T06:59:32Z +4499,982,2,2020-02-15T06:59:32Z +4500,982,2,2020-02-15T06:59:32Z +4501,982,2,2020-02-15T06:59:32Z +4502,982,2,2020-02-15T06:59:32Z +4503,983,1,2020-02-15T06:59:32Z +4504,983,1,2020-02-15T06:59:32Z +4505,983,1,2020-02-15T06:59:32Z +4506,984,1,2020-02-15T06:59:32Z +4507,984,1,2020-02-15T06:59:32Z +4508,985,1,2020-02-15T06:59:32Z +4509,985,1,2020-02-15T06:59:32Z +4510,985,1,2020-02-15T06:59:32Z +4511,985,1,2020-02-15T06:59:32Z +4512,985,2,2020-02-15T06:59:32Z +4513,985,2,2020-02-15T06:59:32Z +4514,985,2,2020-02-15T06:59:32Z +4515,986,1,2020-02-15T06:59:32Z +4516,986,1,2020-02-15T06:59:32Z +4517,986,1,2020-02-15T06:59:32Z +4518,986,1,2020-02-15T06:59:32Z +4519,986,2,2020-02-15T06:59:32Z +4520,986,2,2020-02-15T06:59:32Z +4521,987,1,2020-02-15T06:59:32Z +4522,987,1,2020-02-15T06:59:32Z +4523,987,2,2020-02-15T06:59:32Z +4524,987,2,2020-02-15T06:59:32Z +4525,988,1,2020-02-15T06:59:32Z +4526,988,1,2020-02-15T06:59:32Z +4527,988,1,2020-02-15T06:59:32Z +4528,988,2,2020-02-15T06:59:32Z +4529,988,2,2020-02-15T06:59:32Z +4530,989,1,2020-02-15T06:59:32Z +4531,989,1,2020-02-15T06:59:32Z +4532,989,1,2020-02-15T06:59:32Z +4533,989,1,2020-02-15T06:59:32Z +4534,989,2,2020-02-15T06:59:32Z +4535,989,2,2020-02-15T06:59:32Z +4536,990,2,2020-02-15T06:59:32Z +4537,990,2,2020-02-15T06:59:32Z +4538,991,1,2020-02-15T06:59:32Z +4539,991,1,2020-02-15T06:59:32Z +4540,991,2,2020-02-15T06:59:32Z +4541,991,2,2020-02-15T06:59:32Z +4542,991,2,2020-02-15T06:59:32Z +4543,992,2,2020-02-15T06:59:32Z +4544,992,2,2020-02-15T06:59:32Z +4545,992,2,2020-02-15T06:59:32Z +4546,992,2,2020-02-15T06:59:32Z +4547,993,1,2020-02-15T06:59:32Z +4548,993,1,2020-02-15T06:59:32Z +4549,993,1,2020-02-15T06:59:32Z +4550,993,1,2020-02-15T06:59:32Z +4551,993,2,2020-02-15T06:59:32Z +4552,993,2,2020-02-15T06:59:32Z +4553,993,2,2020-02-15T06:59:32Z +4554,994,1,2020-02-15T06:59:32Z +4555,994,1,2020-02-15T06:59:32Z +4556,994,1,2020-02-15T06:59:32Z +4557,995,1,2020-02-15T06:59:32Z +4558,995,1,2020-02-15T06:59:32Z +4559,995,1,2020-02-15T06:59:32Z +4560,995,1,2020-02-15T06:59:32Z +4561,995,2,2020-02-15T06:59:32Z +4562,995,2,2020-02-15T06:59:32Z +4563,996,1,2020-02-15T06:59:32Z +4564,996,1,2020-02-15T06:59:32Z +4565,997,1,2020-02-15T06:59:32Z +4566,997,1,2020-02-15T06:59:32Z +4567,998,2,2020-02-15T06:59:32Z +4568,998,2,2020-02-15T06:59:32Z +4569,999,1,2020-02-15T06:59:32Z +4570,999,1,2020-02-15T06:59:32Z +4571,999,2,2020-02-15T06:59:32Z +4572,999,2,2020-02-15T06:59:32Z +4573,999,2,2020-02-15T06:59:32Z +4574,1000,1,2020-02-15T06:59:32Z +4575,1000,1,2020-02-15T06:59:32Z +4576,1000,1,2020-02-15T06:59:32Z +4577,1000,1,2020-02-15T06:59:32Z +4578,1000,2,2020-02-15T06:59:32Z +4579,1000,2,2020-02-15T06:59:32Z +4580,1000,2,2020-02-15T06:59:32Z +4581,1000,2,2020-02-15T06:59:32Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/language.csv b/drivers/csv/testdata/sakila-csv-noheader/language.csv new file mode 100644 index 00000000..4281e9fd --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/language.csv @@ -0,0 +1,6 @@ +1,English,2020-02-15T06:59:27Z +2,Italian,2020-02-15T06:59:27Z +3,Japanese,2020-02-15T06:59:27Z +4,Mandarin,2020-02-15T06:59:27Z +5,French,2020-02-15T06:59:27Z +6,German,2020-02-15T06:59:27Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/payment.csv b/drivers/csv/testdata/sakila-csv-noheader/payment.csv new file mode 100644 index 00000000..0d154ae2 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/payment.csv @@ -0,0 +1,16049 @@ +1,1,1,76,2.99,2005-05-25T11:30:37Z,2020-02-15T06:59:47Z +2,1,1,573,0.99,2005-05-28T10:35:23Z,2020-02-15T06:59:47Z +3,1,1,1185,5.99,2005-06-15T00:54:12Z,2020-02-15T06:59:47Z +4,1,2,1422,0.99,2005-06-15T18:02:53Z,2020-02-15T06:59:47Z +5,1,2,1476,9.99,2005-06-15T21:08:46Z,2020-02-15T06:59:47Z +6,1,1,1725,4.99,2005-06-16T15:18:57Z,2020-02-15T06:59:47Z +7,1,1,2308,4.99,2005-06-18T08:41:48Z,2020-02-15T06:59:47Z +8,1,2,2363,0.99,2005-06-18T13:33:59Z,2020-02-15T06:59:47Z +9,1,1,3284,3.99,2005-06-21T06:24:45Z,2020-02-15T06:59:47Z +10,1,2,4526,5.99,2005-07-08T03:17:05Z,2020-02-15T06:59:47Z +11,1,1,4611,5.99,2005-07-08T07:33:56Z,2020-02-15T06:59:47Z +12,1,1,5244,4.99,2005-07-09T13:24:07Z,2020-02-15T06:59:47Z +13,1,1,5326,4.99,2005-07-09T16:38:01Z,2020-02-15T06:59:47Z +14,1,1,6163,7.99,2005-07-11T10:13:46Z,2020-02-15T06:59:47Z +15,1,2,7273,2.99,2005-07-27T11:31:22Z,2020-02-15T06:59:47Z +16,1,1,7841,4.99,2005-07-28T09:04:45Z,2020-02-15T06:59:47Z +17,1,2,8033,4.99,2005-07-28T16:18:23Z,2020-02-15T06:59:47Z +18,1,1,8074,0.99,2005-07-28T17:33:39Z,2020-02-15T06:59:47Z +19,1,2,8116,0.99,2005-07-28T19:20:07Z,2020-02-15T06:59:47Z +20,1,2,8326,2.99,2005-07-29T03:58:49Z,2020-02-15T06:59:47Z +21,1,2,9571,2.99,2005-07-31T02:42:18Z,2020-02-15T06:59:47Z +22,1,2,10437,4.99,2005-08-01T08:51:04Z,2020-02-15T06:59:47Z +23,1,2,11299,3.99,2005-08-02T15:36:52Z,2020-02-15T06:59:47Z +24,1,1,11367,0.99,2005-08-02T18:01:38Z,2020-02-15T06:59:47Z +25,1,2,11824,4.99,2005-08-17T12:37:54Z,2020-02-15T06:59:47Z +26,1,1,12250,0.99,2005-08-18T03:57:29Z,2020-02-15T06:59:47Z +27,1,2,13068,0.99,2005-08-19T09:55:16Z,2020-02-15T06:59:47Z +28,1,2,13176,2.99,2005-08-19T13:56:54Z,2020-02-15T06:59:47Z +29,1,1,14762,0.99,2005-08-21T23:33:57Z,2020-02-15T06:59:47Z +30,1,1,14825,1.99,2005-08-22T01:27:57Z,2020-02-15T06:59:47Z +31,1,2,15298,2.99,2005-08-22T19:41:37Z,2020-02-15T06:59:47Z +32,1,1,15315,5.99,2005-08-22T20:03:46Z,2020-02-15T06:59:47Z +33,2,1,320,4.99,2005-05-27T00:09:24Z,2020-02-15T06:59:47Z +34,2,1,2128,2.99,2005-06-17T20:54:58Z,2020-02-15T06:59:47Z +35,2,1,5636,2.99,2005-07-10T06:31:24Z,2020-02-15T06:59:47Z +36,2,1,5755,6.99,2005-07-10T12:38:56Z,2020-02-15T06:59:47Z +37,2,2,7346,4.99,2005-07-27T14:30:42Z,2020-02-15T06:59:47Z +38,2,1,7376,5.99,2005-07-27T15:23:02Z,2020-02-15T06:59:47Z +39,2,2,7459,5.99,2005-07-27T18:40:20Z,2020-02-15T06:59:47Z +40,2,2,8230,5.99,2005-07-29T00:12:59Z,2020-02-15T06:59:47Z +41,2,1,8598,2.99,2005-07-29T12:56:59Z,2020-02-15T06:59:47Z +42,2,2,8705,5.99,2005-07-29T17:14:29Z,2020-02-15T06:59:47Z +43,2,1,9031,4.99,2005-07-30T06:06:10Z,2020-02-15T06:59:47Z +44,2,2,9236,10.99,2005-07-30T13:47:43Z,2020-02-15T06:59:47Z +45,2,2,9248,0.99,2005-07-30T14:14:11Z,2020-02-15T06:59:47Z +46,2,2,9296,6.99,2005-07-30T16:21:13Z,2020-02-15T06:59:47Z +47,2,2,9465,6.99,2005-07-30T22:39:53Z,2020-02-15T06:59:47Z +48,2,1,10136,2.99,2005-07-31T21:58:56Z,2020-02-15T06:59:47Z +49,2,1,10466,0.99,2005-08-01T09:45:26Z,2020-02-15T06:59:47Z +50,2,1,10918,0.99,2005-08-02T02:10:56Z,2020-02-15T06:59:47Z +51,2,1,11087,5.99,2005-08-02T07:41:41Z,2020-02-15T06:59:47Z +52,2,1,11177,6.99,2005-08-02T10:43:48Z,2020-02-15T06:59:47Z +53,2,2,11256,2.99,2005-08-02T13:44:53Z,2020-02-15T06:59:47Z +54,2,1,11614,2.99,2005-08-17T03:52:18Z,2020-02-15T06:59:47Z +55,2,1,12963,2.99,2005-08-19T06:26:04Z,2020-02-15T06:59:47Z +56,2,1,14475,4.99,2005-08-21T13:24:32Z,2020-02-15T06:59:47Z +57,2,2,14743,5.99,2005-08-21T22:41:56Z,2020-02-15T06:59:47Z +58,2,2,15145,4.99,2005-08-22T13:53:04Z,2020-02-15T06:59:47Z +59,2,2,15907,4.99,2005-08-23T17:39:35Z,2020-02-15T06:59:47Z +60,3,1,435,1.99,2005-05-27T17:17:09Z,2020-02-15T06:59:47Z +61,3,1,830,2.99,2005-05-29T22:43:55Z,2020-02-15T06:59:47Z +62,3,1,1546,8.99,2005-06-16T01:34:05Z,2020-02-15T06:59:47Z +63,3,1,1726,6.99,2005-06-16T15:19:10Z,2020-02-15T06:59:47Z +64,3,2,1911,6.99,2005-06-17T05:15:15Z,2020-02-15T06:59:47Z +65,3,1,2628,2.99,2005-06-19T08:34:53Z,2020-02-15T06:59:47Z +66,3,1,4180,4.99,2005-07-07T10:23:25Z,2020-02-15T06:59:47Z +67,3,1,4725,4.99,2005-07-08T12:47:11Z,2020-02-15T06:59:47Z +68,3,1,7096,5.99,2005-07-27T04:54:42Z,2020-02-15T06:59:47Z +69,3,2,7503,10.99,2005-07-27T20:23:12Z,2020-02-15T06:59:47Z +70,3,2,7703,7.99,2005-07-28T03:59:21Z,2020-02-15T06:59:47Z +71,3,2,7724,6.99,2005-07-28T04:46:30Z,2020-02-15T06:59:47Z +72,3,1,7911,4.99,2005-07-28T11:46:45Z,2020-02-15T06:59:47Z +73,3,2,8086,4.99,2005-07-28T18:17:14Z,2020-02-15T06:59:47Z +74,3,1,8545,2.99,2005-07-29T11:07:04Z,2020-02-15T06:59:47Z +75,3,1,9226,1.99,2005-07-30T13:31:20Z,2020-02-15T06:59:47Z +76,3,2,9443,3.99,2005-07-30T21:45:46Z,2020-02-15T06:59:47Z +77,3,1,9595,2.99,2005-07-31T03:27:58Z,2020-02-15T06:59:47Z +78,3,2,9816,4.99,2005-07-31T11:32:58Z,2020-02-15T06:59:47Z +79,3,2,10597,5.99,2005-08-01T14:19:48Z,2020-02-15T06:59:47Z +80,3,2,12556,4.99,2005-08-18T14:49:55Z,2020-02-15T06:59:47Z +81,3,1,13403,8.99,2005-08-19T22:18:07Z,2020-02-15T06:59:47Z +82,3,2,13610,2.99,2005-08-20T06:14:12Z,2020-02-15T06:59:47Z +83,3,2,14699,8.99,2005-08-21T20:50:48Z,2020-02-15T06:59:47Z +84,3,2,15038,0.99,2005-08-22T09:37:27Z,2020-02-15T06:59:47Z +85,3,1,15619,2.99,2005-08-23T07:10:14Z,2020-02-15T06:59:47Z +86,4,1,1297,4.99,2005-06-15T09:31:28Z,2020-02-15T06:59:47Z +87,4,1,1633,0.99,2005-06-16T08:08:40Z,2020-02-15T06:59:47Z +88,4,2,1707,2.99,2005-06-16T14:01:27Z,2020-02-15T06:59:47Z +89,4,2,1735,0.99,2005-06-16T15:51:52Z,2020-02-15T06:59:47Z +90,4,2,2043,0.99,2005-06-17T14:31:12Z,2020-02-15T06:59:47Z +91,4,1,2642,5.99,2005-06-19T09:39:01Z,2020-02-15T06:59:47Z +92,4,1,7660,2.99,2005-07-28T02:10:10Z,2020-02-15T06:59:47Z +93,4,2,7718,2.99,2005-07-28T04:37:59Z,2020-02-15T06:59:47Z +94,4,1,8741,3.99,2005-07-29T18:44:57Z,2020-02-15T06:59:47Z +95,4,1,9100,5.99,2005-07-30T08:46:09Z,2020-02-15T06:59:47Z +96,4,1,9371,5.99,2005-07-30T18:58:00Z,2020-02-15T06:59:47Z +97,4,2,11069,0.99,2005-08-02T07:09:34Z,2020-02-15T06:59:47Z +98,4,1,11110,2.99,2005-08-02T08:20:31Z,2020-02-15T06:59:47Z +99,4,2,11529,4.99,2005-08-17T00:28:01Z,2020-02-15T06:59:47Z +100,4,1,12151,2.99,2005-08-18T00:14:03Z,2020-02-15T06:59:47Z +101,4,2,12294,8.99,2005-08-18T05:14:44Z,2020-02-15T06:59:47Z +102,4,2,12856,1.99,2005-08-19T02:19:13Z,2020-02-15T06:59:47Z +103,4,1,13704,2.99,2005-08-20T09:32:04Z,2020-02-15T06:59:47Z +104,4,1,13807,6.99,2005-08-20T12:55:40Z,2020-02-15T06:59:47Z +105,4,2,14225,4.99,2005-08-21T04:53:37Z,2020-02-15T06:59:47Z +106,4,1,15147,2.99,2005-08-22T13:58:23Z,2020-02-15T06:59:47Z +107,4,2,15635,1.99,2005-08-23T07:43:00Z,2020-02-15T06:59:47Z +108,5,1,731,0.99,2005-05-29T07:25:16Z,2020-02-15T06:59:47Z +109,5,1,1085,6.99,2005-05-31T11:15:43Z,2020-02-15T06:59:47Z +110,5,1,1142,1.99,2005-05-31T19:46:38Z,2020-02-15T06:59:47Z +111,5,1,1502,3.99,2005-06-15T22:03:14Z,2020-02-15T06:59:47Z +112,5,2,1631,2.99,2005-06-16T08:01:02Z,2020-02-15T06:59:47Z +113,5,2,2063,4.99,2005-06-17T15:56:53Z,2020-02-15T06:59:47Z +114,5,2,2570,2.99,2005-06-19T04:20:13Z,2020-02-15T06:59:47Z +115,5,2,3126,4.99,2005-06-20T18:38:22Z,2020-02-15T06:59:47Z +116,5,2,3677,4.99,2005-07-06T09:11:58Z,2020-02-15T06:59:47Z +117,5,2,4889,2.99,2005-07-08T20:04:43Z,2020-02-15T06:59:47Z +118,5,1,5016,4.99,2005-07-09T01:57:57Z,2020-02-15T06:59:47Z +119,5,2,5118,5.99,2005-07-09T07:13:52Z,2020-02-15T06:59:47Z +120,5,2,5156,1.99,2005-07-09T08:51:42Z,2020-02-15T06:59:47Z +121,5,2,5721,0.99,2005-07-10T11:09:35Z,2020-02-15T06:59:47Z +122,5,1,6042,8.99,2005-07-11T03:17:04Z,2020-02-15T06:59:47Z +123,5,1,6663,3.99,2005-07-12T11:27:35Z,2020-02-15T06:59:47Z +124,5,2,6685,4.99,2005-07-12T12:16:28Z,2020-02-15T06:59:47Z +125,5,2,7293,0.99,2005-07-27T12:37:28Z,2020-02-15T06:59:47Z +126,5,2,7652,0.99,2005-07-28T01:50:29Z,2020-02-15T06:59:47Z +127,5,2,7829,3.99,2005-07-28T08:43:39Z,2020-02-15T06:59:47Z +128,5,1,8263,2.99,2005-07-29T01:11:23Z,2020-02-15T06:59:47Z +129,5,1,8978,1.99,2005-07-30T04:14:28Z,2020-02-15T06:59:47Z +130,5,1,9493,4.99,2005-07-30T23:52:30Z,2020-02-15T06:59:47Z +131,5,1,9888,3.99,2005-07-31T14:00:53Z,2020-02-15T06:59:47Z +132,5,2,10609,4.99,2005-08-01T14:48:45Z,2020-02-15T06:59:47Z +133,5,1,10625,0.99,2005-08-01T15:27:10Z,2020-02-15T06:59:47Z +134,5,2,11001,4.99,2005-08-02T04:56:45Z,2020-02-15T06:59:47Z +135,5,1,11179,4.99,2005-08-02T10:50:06Z,2020-02-15T06:59:47Z +136,5,2,11930,3.99,2005-08-17T16:28:53Z,2020-02-15T06:59:47Z +137,5,1,12145,9.99,2005-08-18T00:10:04Z,2020-02-15T06:59:47Z +138,5,1,12797,2.99,2005-08-19T00:24:08Z,2020-02-15T06:59:47Z +139,5,1,13063,1.99,2005-08-19T09:45:41Z,2020-02-15T06:59:47Z +140,5,2,13877,0.99,2005-08-20T15:16:18Z,2020-02-15T06:59:47Z +141,5,2,14053,6.99,2005-08-20T22:13:59Z,2020-02-15T06:59:47Z +142,5,1,14430,6.99,2005-08-21T11:31:11Z,2020-02-15T06:59:47Z +143,5,2,14494,2.99,2005-08-21T14:02:50Z,2020-02-15T06:59:47Z +144,5,2,15232,0.99,2005-08-22T17:37:02Z,2020-02-15T06:59:47Z +145,5,2,13209,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +146,6,2,57,4.99,2005-05-25T08:43:32Z,2020-02-15T06:59:47Z +147,6,1,577,2.99,2005-05-28T11:09:14Z,2020-02-15T06:59:47Z +148,6,2,916,0.99,2005-05-30T11:25:01Z,2020-02-15T06:59:47Z +149,6,1,1575,3.99,2005-06-16T03:41:38Z,2020-02-15T06:59:47Z +150,6,2,1841,2.99,2005-06-16T23:44:13Z,2020-02-15T06:59:47Z +151,6,1,1966,0.99,2005-06-17T09:19:45Z,2020-02-15T06:59:47Z +152,6,1,2345,0.99,2005-06-18T12:03:23Z,2020-02-15T06:59:47Z +153,6,2,3983,0.99,2005-07-06T23:14:21Z,2020-02-15T06:59:47Z +154,6,2,4278,2.99,2005-07-07T14:53:24Z,2020-02-15T06:59:47Z +155,6,1,5553,0.99,2005-07-10T03:03:35Z,2020-02-15T06:59:47Z +156,6,2,6211,5.99,2005-07-11T12:39:01Z,2020-02-15T06:59:47Z +157,6,1,6248,7.99,2005-07-11T15:01:54Z,2020-02-15T06:59:47Z +158,6,2,6686,0.99,2005-07-12T12:18:38Z,2020-02-15T06:59:47Z +159,6,2,7099,2.99,2005-07-27T05:03:44Z,2020-02-15T06:59:47Z +160,6,2,7136,2.99,2005-07-27T06:38:25Z,2020-02-15T06:59:47Z +161,6,1,8101,0.99,2005-07-28T18:47:23Z,2020-02-15T06:59:47Z +162,6,1,10271,2.99,2005-08-01T03:13:39Z,2020-02-15T06:59:47Z +163,6,1,11023,2.99,2005-08-02T05:36:38Z,2020-02-15T06:59:47Z +164,6,1,11398,3.99,2005-08-02T18:55:15Z,2020-02-15T06:59:47Z +165,6,1,11591,6.99,2005-08-17T02:29:41Z,2020-02-15T06:59:47Z +166,6,1,11727,0.99,2005-08-17T08:12:20Z,2020-02-15T06:59:47Z +167,6,1,11853,0.99,2005-08-17T13:39:32Z,2020-02-15T06:59:47Z +168,6,2,12254,2.99,2005-08-18T04:05:29Z,2020-02-15T06:59:47Z +169,6,2,13451,6.99,2005-08-20T00:18:25Z,2020-02-15T06:59:47Z +170,6,1,14329,7.99,2005-08-21T08:22:56Z,2020-02-15T06:59:47Z +171,6,1,14377,4.99,2005-08-21T09:49:28Z,2020-02-15T06:59:47Z +172,6,1,15509,5.99,2005-08-23T02:51:24Z,2020-02-15T06:59:47Z +173,6,2,15603,0.99,2005-08-23T06:41:32Z,2020-02-15T06:59:47Z +174,7,2,46,5.99,2005-05-25T06:04:08Z,2020-02-15T06:59:47Z +175,7,2,117,0.99,2005-05-25T19:30:46Z,2020-02-15T06:59:47Z +176,7,2,748,2.99,2005-05-29T09:27:00Z,2020-02-15T06:59:47Z +177,7,1,975,4.99,2005-05-30T21:07:15Z,2020-02-15T06:59:47Z +178,7,1,1063,5.99,2005-05-31T08:44:29Z,2020-02-15T06:59:47Z +179,7,2,1810,0.99,2005-06-16T21:06:00Z,2020-02-15T06:59:47Z +180,7,1,2250,2.99,2005-06-18T05:03:36Z,2020-02-15T06:59:47Z +181,7,1,2709,0.99,2005-06-19T14:00:26Z,2020-02-15T06:59:47Z +182,7,1,2888,4.99,2005-06-20T01:50:56Z,2020-02-15T06:59:47Z +183,7,1,3007,0.99,2005-06-20T10:11:53Z,2020-02-15T06:59:47Z +184,7,2,3639,5.99,2005-07-06T07:09:17Z,2020-02-15T06:59:47Z +185,7,2,4238,2.99,2005-07-07T13:22:20Z,2020-02-15T06:59:47Z +186,7,2,4787,5.99,2005-07-08T16:16:04Z,2020-02-15T06:59:47Z +187,7,1,4856,4.99,2005-07-08T18:47:38Z,2020-02-15T06:59:47Z +188,7,1,5441,8.99,2005-07-09T21:52:05Z,2020-02-15T06:59:47Z +189,7,1,5921,7.99,2005-07-10T21:35:12Z,2020-02-15T06:59:47Z +190,7,1,6174,1.99,2005-07-11T10:36:28Z,2020-02-15T06:59:47Z +191,7,1,6295,2.99,2005-07-11T17:30:58Z,2020-02-15T06:59:47Z +192,7,2,6761,3.99,2005-07-12T15:17:42Z,2020-02-15T06:59:47Z +193,7,2,8422,5.99,2005-07-29T07:02:55Z,2020-02-15T06:59:47Z +194,7,2,9624,7.99,2005-07-31T04:30:03Z,2020-02-15T06:59:47Z +195,7,2,10330,6.99,2005-08-01T04:57:04Z,2020-02-15T06:59:47Z +196,7,1,10423,5.99,2005-08-01T08:19:53Z,2020-02-15T06:59:47Z +197,7,1,10514,4.99,2005-08-01T11:39:26Z,2020-02-15T06:59:47Z +198,7,2,10644,4.99,2005-08-01T15:52:00Z,2020-02-15T06:59:47Z +199,7,2,10989,3.99,2005-08-02T04:40:54Z,2020-02-15T06:59:47Z +200,7,2,11542,7.99,2005-08-17T00:51:32Z,2020-02-15T06:59:47Z +201,7,1,12367,8.99,2005-08-18T07:57:14Z,2020-02-15T06:59:47Z +202,7,1,12730,2.99,2005-08-18T21:55:01Z,2020-02-15T06:59:47Z +203,7,2,13373,2.99,2005-08-19T21:23:31Z,2020-02-15T06:59:47Z +204,7,1,13476,2.99,2005-08-20T01:06:04Z,2020-02-15T06:59:47Z +205,7,1,13594,0.99,2005-08-20T05:53:31Z,2020-02-15T06:59:47Z +206,7,1,14222,5.99,2005-08-21T04:49:48Z,2020-02-15T06:59:47Z +207,8,2,866,6.99,2005-05-30T03:43:54Z,2020-02-15T06:59:47Z +208,8,2,1305,2.99,2005-06-15T09:59:16Z,2020-02-15T06:59:47Z +209,8,1,2095,5.99,2005-06-17T18:21:35Z,2020-02-15T06:59:47Z +210,8,2,3114,4.99,2005-06-20T17:57:47Z,2020-02-15T06:59:47Z +211,8,1,3475,5.99,2005-07-05T23:01:21Z,2020-02-15T06:59:47Z +212,8,1,4003,0.99,2005-07-07T00:09:02Z,2020-02-15T06:59:47Z +213,8,2,4175,2.99,2005-07-07T10:02:03Z,2020-02-15T06:59:47Z +214,8,2,4409,3.99,2005-07-07T21:47:29Z,2020-02-15T06:59:47Z +215,8,1,4503,3.99,2005-07-08T02:17:12Z,2020-02-15T06:59:47Z +216,8,1,5300,2.99,2005-07-09T15:40:46Z,2020-02-15T06:59:47Z +217,8,2,5341,2.99,2005-07-09T17:13:23Z,2020-02-15T06:59:47Z +218,8,1,6375,4.99,2005-07-11T21:39:46Z,2020-02-15T06:59:47Z +219,8,1,6647,0.99,2005-07-12T10:43:53Z,2020-02-15T06:59:47Z +220,8,1,8809,1.99,2005-07-29T21:42:49Z,2020-02-15T06:59:47Z +221,8,2,9629,2.99,2005-07-31T04:54:43Z,2020-02-15T06:59:47Z +222,8,2,10141,0.99,2005-07-31T22:08:29Z,2020-02-15T06:59:47Z +223,8,2,10561,2.99,2005-08-01T13:05:35Z,2020-02-15T06:59:47Z +224,8,1,11232,9.99,2005-08-02T13:04:12Z,2020-02-15T06:59:47Z +225,8,2,11284,2.99,2005-08-02T14:42:45Z,2020-02-15T06:59:47Z +226,8,1,12613,2.99,2005-08-18T17:16:01Z,2020-02-15T06:59:47Z +227,8,1,14114,0.99,2005-08-21T01:07:11Z,2020-02-15T06:59:47Z +228,8,1,15374,7.99,2005-08-22T22:09:09Z,2020-02-15T06:59:47Z +229,8,1,15764,2.99,2005-08-23T13:05:10Z,2020-02-15T06:59:47Z +230,8,1,15805,4.99,2005-08-23T14:31:19Z,2020-02-15T06:59:47Z +231,9,2,350,4.99,2005-05-27T05:01:28Z,2020-02-15T06:59:47Z +232,9,2,877,0.99,2005-05-30T05:48:59Z,2020-02-15T06:59:47Z +233,9,2,1075,4.99,2005-05-31T10:13:34Z,2020-02-15T06:59:47Z +234,9,2,3142,7.99,2005-06-20T19:59:28Z,2020-02-15T06:59:47Z +235,9,2,3262,4.99,2005-06-21T04:08:43Z,2020-02-15T06:59:47Z +236,9,1,4454,2.99,2005-07-07T23:37:00Z,2020-02-15T06:59:47Z +237,9,2,4748,0.99,2005-07-08T13:59:38Z,2020-02-15T06:59:47Z +238,9,1,4796,1.99,2005-07-08T16:35:44Z,2020-02-15T06:59:47Z +239,9,1,5659,2.99,2005-07-10T07:45:40Z,2020-02-15T06:59:47Z +240,9,2,6019,4.99,2005-07-11T02:08:29Z,2020-02-15T06:59:47Z +241,9,1,6165,5.99,2005-07-11T10:17:29Z,2020-02-15T06:59:47Z +242,9,2,7616,0.99,2005-07-28T00:15:26Z,2020-02-15T06:59:47Z +243,9,1,7801,2.99,2005-07-28T07:51:56Z,2020-02-15T06:59:47Z +244,9,1,9043,4.99,2005-07-30T06:34:07Z,2020-02-15T06:59:47Z +245,9,1,10451,0.99,2005-08-01T09:11:25Z,2020-02-15T06:59:47Z +246,9,1,10454,4.99,2005-08-01T09:14:00Z,2020-02-15T06:59:47Z +247,9,2,11400,5.99,2005-08-02T19:00:52Z,2020-02-15T06:59:47Z +248,9,1,11556,0.99,2005-08-17T01:11:53Z,2020-02-15T06:59:47Z +249,9,1,12228,2.99,2005-08-18T03:08:10Z,2020-02-15T06:59:47Z +250,9,1,12309,2.99,2005-08-18T05:58:40Z,2020-02-15T06:59:47Z +251,9,2,12652,4.99,2005-08-18T18:48:58Z,2020-02-15T06:59:47Z +252,9,2,14489,7.99,2005-08-21T13:53:59Z,2020-02-15T06:59:47Z +253,9,1,15813,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +254,10,2,1140,4.99,2005-05-31T19:36:30Z,2020-02-15T06:59:47Z +255,10,1,1801,4.99,2005-06-16T20:21:53Z,2020-02-15T06:59:47Z +256,10,1,1995,4.99,2005-06-17T11:11:14Z,2020-02-15T06:59:47Z +257,10,2,2222,3.99,2005-06-18T03:26:23Z,2020-02-15T06:59:47Z +258,10,1,2814,0.99,2005-06-19T20:01:59Z,2020-02-15T06:59:47Z +259,10,1,2865,0.99,2005-06-20T00:00:55Z,2020-02-15T06:59:47Z +260,10,2,3790,3.99,2005-07-06T14:13:45Z,2020-02-15T06:59:47Z +261,10,2,4042,4.99,2005-07-07T03:06:40Z,2020-02-15T06:59:47Z +262,10,1,4255,1.99,2005-07-07T14:14:13Z,2020-02-15T06:59:47Z +263,10,1,5038,7.99,2005-07-09T03:12:52Z,2020-02-15T06:59:47Z +264,10,2,5068,2.99,2005-07-09T04:53:18Z,2020-02-15T06:59:47Z +265,10,1,5444,0.99,2005-07-09T21:58:57Z,2020-02-15T06:59:47Z +266,10,1,5905,2.99,2005-07-10T20:41:09Z,2020-02-15T06:59:47Z +267,10,1,7738,2.99,2005-07-28T05:21:42Z,2020-02-15T06:59:47Z +268,10,2,8001,6.99,2005-07-28T15:10:55Z,2020-02-15T06:59:47Z +269,10,2,8188,4.99,2005-07-28T22:34:12Z,2020-02-15T06:59:47Z +270,10,1,9935,4.99,2005-07-31T15:27:07Z,2020-02-15T06:59:47Z +271,10,2,10671,8.99,2005-08-01T17:09:59Z,2020-02-15T06:59:47Z +272,10,2,11289,2.99,2005-08-02T14:55:00Z,2020-02-15T06:59:47Z +273,10,1,11405,0.99,2005-08-02T19:13:39Z,2020-02-15T06:59:47Z +274,10,2,12031,2.99,2005-08-17T20:11:35Z,2020-02-15T06:59:47Z +275,10,2,12400,2.99,2005-08-18T09:19:12Z,2020-02-15T06:59:47Z +276,10,2,13316,4.99,2005-08-19T19:23:30Z,2020-02-15T06:59:47Z +277,10,2,13917,2.99,2005-08-20T16:43:28Z,2020-02-15T06:59:47Z +278,10,1,15370,5.99,2005-08-22T21:59:29Z,2020-02-15T06:59:47Z +279,11,1,987,6.99,2005-05-30T22:59:12Z,2020-02-15T06:59:47Z +280,11,1,1470,6.99,2005-06-15T20:53:07Z,2020-02-15T06:59:47Z +281,11,1,1939,7.99,2005-06-17T07:26:45Z,2020-02-15T06:59:47Z +282,11,1,3192,0.99,2005-06-20T23:49:12Z,2020-02-15T06:59:47Z +283,11,2,4608,2.99,2005-07-08T07:19:11Z,2020-02-15T06:59:47Z +284,11,1,4943,4.99,2005-07-08T22:43:05Z,2020-02-15T06:59:47Z +285,11,2,5835,5.99,2005-07-10T16:44:58Z,2020-02-15T06:59:47Z +286,11,2,6146,6.99,2005-07-11T09:09:59Z,2020-02-15T06:59:47Z +287,11,1,7314,4.99,2005-07-27T13:13:32Z,2020-02-15T06:59:47Z +288,11,1,8014,4.99,2005-07-28T15:32:07Z,2020-02-15T06:59:47Z +289,11,2,8100,2.99,2005-07-28T18:43:11Z,2020-02-15T06:59:47Z +290,11,2,8447,1.99,2005-07-29T07:38:14Z,2020-02-15T06:59:47Z +291,11,1,8715,0.99,2005-07-29T17:33:45Z,2020-02-15T06:59:47Z +292,11,1,8950,9.99,2005-07-30T03:17:13Z,2020-02-15T06:59:47Z +293,11,2,9292,6.99,2005-07-30T16:08:21Z,2020-02-15T06:59:47Z +294,11,1,10812,4.99,2005-08-01T22:41:16Z,2020-02-15T06:59:47Z +295,11,2,11166,6.99,2005-08-02T10:14:58Z,2020-02-15T06:59:47Z +296,11,2,11502,0.99,2005-08-16T23:06:30Z,2020-02-15T06:59:47Z +297,11,2,12015,5.99,2005-08-17T19:32:44Z,2020-02-15T06:59:47Z +298,11,2,13572,0.99,2005-08-20T05:07:27Z,2020-02-15T06:59:47Z +299,11,1,13790,4.99,2005-08-20T12:17:27Z,2020-02-15T06:59:47Z +300,11,1,15120,0.99,2005-08-22T12:42:47Z,2020-02-15T06:59:47Z +301,11,2,15240,2.99,2005-08-22T17:46:41Z,2020-02-15T06:59:47Z +302,11,1,11646,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +303,12,1,988,4.99,2005-05-30T23:08:03Z,2020-02-15T06:59:47Z +304,12,1,1084,4.99,2005-05-31T11:10:17Z,2020-02-15T06:59:47Z +305,12,2,1752,5.99,2005-06-16T17:02:55Z,2020-02-15T06:59:47Z +306,12,2,2434,5.99,2005-06-18T18:11:51Z,2020-02-15T06:59:47Z +307,12,2,2500,5.99,2005-06-18T23:07:12Z,2020-02-15T06:59:47Z +308,12,2,2623,4.99,2005-06-19T08:11:51Z,2020-02-15T06:59:47Z +309,12,2,3135,2.99,2005-06-20T19:33:52Z,2020-02-15T06:59:47Z +310,12,1,3411,0.99,2005-06-21T16:31:27Z,2020-02-15T06:59:47Z +311,12,1,3870,3.99,2005-07-06T17:57:54Z,2020-02-15T06:59:47Z +312,12,1,5071,0.99,2005-07-09T05:00:39Z,2020-02-15T06:59:47Z +313,12,1,5074,0.99,2005-07-09T05:06:24Z,2020-02-15T06:59:47Z +314,12,2,5111,0.99,2005-07-09T07:02:19Z,2020-02-15T06:59:47Z +315,12,2,5242,3.99,2005-07-09T13:20:25Z,2020-02-15T06:59:47Z +316,12,1,6773,2.99,2005-07-12T15:55:39Z,2020-02-15T06:59:47Z +317,12,2,7008,0.99,2005-07-27T01:44:03Z,2020-02-15T06:59:47Z +318,12,2,7279,0.99,2005-07-27T11:50:47Z,2020-02-15T06:59:47Z +319,12,2,8985,0.99,2005-07-30T04:34:51Z,2020-02-15T06:59:47Z +320,12,2,9166,4.99,2005-07-30T11:26:28Z,2020-02-15T06:59:47Z +321,12,2,9238,5.99,2005-07-30T13:49:43Z,2020-02-15T06:59:47Z +322,12,1,9627,5.99,2005-07-31T04:42:46Z,2020-02-15T06:59:47Z +323,12,2,9708,5.99,2005-07-31T07:45:33Z,2020-02-15T06:59:47Z +324,12,2,10392,10.99,2005-08-01T06:50:26Z,2020-02-15T06:59:47Z +325,12,2,11497,0.99,2005-08-16T22:52:30Z,2020-02-15T06:59:47Z +326,12,1,12604,4.99,2005-08-18T16:58:48Z,2020-02-15T06:59:47Z +327,12,2,13519,0.99,2005-08-20T02:37:07Z,2020-02-15T06:59:47Z +328,12,2,13895,2.99,2005-08-20T15:58:28Z,2020-02-15T06:59:47Z +329,12,2,14240,4.99,2005-08-21T05:19:39Z,2020-02-15T06:59:47Z +330,12,1,15993,0.99,2005-08-23T20:28:44Z,2020-02-15T06:59:47Z +331,13,1,1933,2.99,2005-06-17T06:54:42Z,2020-02-15T06:59:47Z +332,13,1,2209,4.99,2005-06-18T02:24:01Z,2020-02-15T06:59:47Z +333,13,1,2952,2.99,2005-06-20T06:26:57Z,2020-02-15T06:59:47Z +334,13,1,3047,8.99,2005-06-20T12:45:33Z,2020-02-15T06:59:47Z +335,13,2,3946,2.99,2005-07-06T21:39:24Z,2020-02-15T06:59:47Z +336,13,1,6118,8.99,2005-07-11T07:43:08Z,2020-02-15T06:59:47Z +337,13,1,6568,2.99,2005-07-12T05:45:47Z,2020-02-15T06:59:47Z +338,13,1,6870,0.99,2005-07-12T20:13:45Z,2020-02-15T06:59:47Z +339,13,1,6897,2.99,2005-07-12T21:30:41Z,2020-02-15T06:59:47Z +340,13,1,7916,2.99,2005-07-28T11:49:53Z,2020-02-15T06:59:47Z +341,13,1,8277,2.99,2005-07-29T01:38:53Z,2020-02-15T06:59:47Z +342,13,2,8831,11.99,2005-07-29T22:37:41Z,2020-02-15T06:59:47Z +343,13,2,9260,9.99,2005-07-30T14:38:22Z,2020-02-15T06:59:47Z +344,13,2,9434,0.99,2005-07-30T21:29:41Z,2020-02-15T06:59:47Z +345,13,1,9664,0.99,2005-07-31T06:12:08Z,2020-02-15T06:59:47Z +346,13,1,9736,7.99,2005-07-31T08:58:40Z,2020-02-15T06:59:47Z +347,13,1,10003,4.99,2005-07-31T17:48:51Z,2020-02-15T06:59:47Z +348,13,1,11292,4.99,2005-08-02T14:58:41Z,2020-02-15T06:59:47Z +349,13,2,11315,0.99,2005-08-02T16:05:17Z,2020-02-15T06:59:47Z +350,13,2,11761,5.99,2005-08-17T09:44:59Z,2020-02-15T06:59:47Z +351,13,2,12918,7.99,2005-08-19T04:31:36Z,2020-02-15T06:59:47Z +352,13,2,13096,4.99,2005-08-19T10:49:03Z,2020-02-15T06:59:47Z +353,13,2,13213,0.99,2005-08-19T15:25:48Z,2020-02-15T06:59:47Z +354,13,1,13456,0.99,2005-08-20T00:33:19Z,2020-02-15T06:59:47Z +355,13,1,14252,9.99,2005-08-21T05:44:07Z,2020-02-15T06:59:47Z +356,13,2,14545,7.99,2005-08-21T15:44:23Z,2020-02-15T06:59:47Z +357,13,1,15338,4.99,2005-08-22T20:51:24Z,2020-02-15T06:59:47Z +358,14,1,151,0.99,2005-05-26T00:37:28Z,2020-02-15T06:59:47Z +359,14,1,346,9.99,2005-05-27T04:34:41Z,2020-02-15T06:59:47Z +360,14,1,525,5.99,2005-05-28T04:25:33Z,2020-02-15T06:59:47Z +361,14,1,671,2.99,2005-05-28T22:04:30Z,2020-02-15T06:59:47Z +362,14,2,815,0.99,2005-05-29T20:24:28Z,2020-02-15T06:59:47Z +363,14,2,1360,4.99,2005-06-15T13:32:15Z,2020-02-15T06:59:47Z +364,14,1,3707,2.99,2005-07-06T10:21:49Z,2020-02-15T06:59:47Z +365,14,1,4952,0.99,2005-07-08T23:00:07Z,2020-02-15T06:59:47Z +366,14,1,5104,0.99,2005-07-09T06:37:07Z,2020-02-15T06:59:47Z +367,14,2,5317,7.99,2005-07-09T16:10:25Z,2020-02-15T06:59:47Z +368,14,1,5383,4.99,2005-07-09T19:14:32Z,2020-02-15T06:59:47Z +369,14,1,5565,7.99,2005-07-10T03:29:48Z,2020-02-15T06:59:47Z +370,14,1,8035,6.99,2005-07-28T16:23:01Z,2020-02-15T06:59:47Z +371,14,1,8042,0.99,2005-07-28T16:45:11Z,2020-02-15T06:59:47Z +372,14,1,8548,3.99,2005-07-29T11:11:33Z,2020-02-15T06:59:47Z +373,14,2,8836,4.99,2005-07-29T22:46:08Z,2020-02-15T06:59:47Z +374,14,2,9438,4.99,2005-07-30T21:36:15Z,2020-02-15T06:59:47Z +375,14,1,9592,2.99,2005-07-31T03:21:16Z,2020-02-15T06:59:47Z +376,14,1,10348,2.99,2005-08-01T05:23:00Z,2020-02-15T06:59:47Z +377,14,2,10526,6.99,2005-08-01T11:55:33Z,2020-02-15T06:59:47Z +378,14,1,11480,4.99,2005-08-02T22:18:24Z,2020-02-15T06:59:47Z +379,14,2,11528,3.99,2005-08-17T00:27:23Z,2020-02-15T06:59:47Z +380,14,1,12668,2.99,2005-08-18T19:16:47Z,2020-02-15T06:59:47Z +381,14,1,13757,4.99,2005-08-20T11:20:12Z,2020-02-15T06:59:47Z +382,14,2,15015,6.99,2005-08-22T08:43:50Z,2020-02-15T06:59:47Z +383,14,1,15373,0.99,2005-08-22T22:08:11Z,2020-02-15T06:59:47Z +384,14,1,16045,0.99,2005-08-23T22:25:26Z,2020-02-15T06:59:47Z +385,14,1,13780,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +386,15,1,2486,2.99,2005-06-18T21:26:56Z,2020-02-15T06:59:47Z +387,15,1,2937,5.99,2005-06-20T05:15:37Z,2020-02-15T06:59:47Z +388,15,2,3182,0.99,2005-06-20T22:52:18Z,2020-02-15T06:59:47Z +389,15,1,3550,7.99,2005-07-06T02:29:21Z,2020-02-15T06:59:47Z +390,15,1,4127,5.99,2005-07-07T07:26:19Z,2020-02-15T06:59:47Z +391,15,1,5717,2.99,2005-07-10T11:02:03Z,2020-02-15T06:59:47Z +392,15,2,5975,2.99,2005-07-11T00:14:19Z,2020-02-15T06:59:47Z +393,15,1,7105,4.99,2005-07-27T05:15:37Z,2020-02-15T06:59:47Z +394,15,1,8193,0.99,2005-07-28T22:50:50Z,2020-02-15T06:59:47Z +395,15,2,8615,6.99,2005-07-29T13:36:01Z,2020-02-15T06:59:47Z +396,15,2,8927,4.99,2005-07-30T02:13:31Z,2020-02-15T06:59:47Z +397,15,1,9987,2.99,2005-07-31T17:22:35Z,2020-02-15T06:59:47Z +398,15,1,11118,2.99,2005-08-02T08:44:18Z,2020-02-15T06:59:47Z +399,15,1,11141,2.99,2005-08-02T09:29:11Z,2020-02-15T06:59:47Z +400,15,2,11307,2.99,2005-08-02T15:48:08Z,2020-02-15T06:59:47Z +401,15,2,11341,2.99,2005-08-02T17:09:24Z,2020-02-15T06:59:47Z +402,15,1,11922,7.99,2005-08-17T16:20:37Z,2020-02-15T06:59:47Z +403,15,2,12272,2.99,2005-08-18T04:39:10Z,2020-02-15T06:59:47Z +404,15,2,12551,2.99,2005-08-18T14:46:26Z,2020-02-15T06:59:47Z +405,15,1,12635,2.99,2005-08-18T18:00:23Z,2020-02-15T06:59:47Z +406,15,2,13339,8.99,2005-08-19T20:18:36Z,2020-02-15T06:59:47Z +407,15,1,13393,5.99,2005-08-19T22:03:46Z,2020-02-15T06:59:47Z +408,15,2,13503,5.99,2005-08-20T02:00:33Z,2020-02-15T06:59:47Z +409,15,1,13541,4.99,2005-08-20T03:41:41Z,2020-02-15T06:59:47Z +410,15,2,13677,3.99,2005-08-20T08:34:41Z,2020-02-15T06:59:47Z +411,15,2,14569,0.99,2005-08-21T16:31:22Z,2020-02-15T06:59:47Z +412,15,2,14776,4.99,2005-08-21T23:53:35Z,2020-02-15T06:59:47Z +413,15,2,14872,8.99,2005-08-22T03:23:41Z,2020-02-15T06:59:47Z +414,15,1,15178,0.99,2005-08-22T15:36:04Z,2020-02-15T06:59:47Z +415,15,1,15897,4.99,2005-08-23T17:12:31Z,2020-02-15T06:59:47Z +416,15,1,13798,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +417,15,2,13968,0,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +418,16,1,335,3.99,2005-05-27T03:07:10Z,2020-02-15T06:59:47Z +419,16,1,593,2.99,2005-05-28T13:33:23Z,2020-02-15T06:59:47Z +420,16,2,887,0.99,2005-05-30T07:10:00Z,2020-02-15T06:59:47Z +421,16,1,1017,2.99,2005-05-31T02:53:36Z,2020-02-15T06:59:47Z +422,16,2,1934,6.99,2005-06-17T07:04:57Z,2020-02-15T06:59:47Z +423,16,1,1944,7.99,2005-06-17T07:50:53Z,2020-02-15T06:59:47Z +424,16,1,,1.99,2005-06-18T04:56:12Z,2020-02-15T06:59:47Z +425,16,1,2960,7.99,2005-06-20T07:10:09Z,2020-02-15T06:59:47Z +426,16,2,3348,0.99,2005-06-21T11:16:42Z,2020-02-15T06:59:47Z +427,16,1,3548,0.99,2005-07-06T02:23:39Z,2020-02-15T06:59:47Z +428,16,2,4219,2.99,2005-07-07T12:11:22Z,2020-02-15T06:59:47Z +429,16,2,4263,3.99,2005-07-07T14:24:44Z,2020-02-15T06:59:47Z +430,16,2,4517,4.99,2005-07-08T02:45:19Z,2020-02-15T06:59:47Z +431,16,1,6100,4.99,2005-07-11T06:40:31Z,2020-02-15T06:59:47Z +432,16,2,7489,0.99,2005-07-27T19:39:38Z,2020-02-15T06:59:47Z +433,16,2,7552,2.99,2005-07-27T22:03:41Z,2020-02-15T06:59:47Z +434,16,2,8452,5.99,2005-07-29T07:45:00Z,2020-02-15T06:59:47Z +435,16,2,9158,0.99,2005-07-30T11:12:03Z,2020-02-15T06:59:47Z +436,16,2,9610,5.99,2005-07-31T03:54:05Z,2020-02-15T06:59:47Z +437,16,2,10687,2.99,2005-08-01T17:53:02Z,2020-02-15T06:59:47Z +438,16,2,10727,2.99,2005-08-01T19:15:08Z,2020-02-15T06:59:47Z +439,16,2,11308,0.99,2005-08-02T15:50:44Z,2020-02-15T06:59:47Z +440,16,2,12104,2.99,2005-08-17T22:53:00Z,2020-02-15T06:59:47Z +441,16,1,12358,4.99,2005-08-18T07:41:43Z,2020-02-15T06:59:47Z +442,16,1,12577,7.99,2005-08-18T15:39:46Z,2020-02-15T06:59:47Z +443,16,2,13151,4.99,2005-08-19T13:08:23Z,2020-02-15T06:59:47Z +444,16,1,13391,4.99,2005-08-19T22:01:42Z,2020-02-15T06:59:47Z +445,16,1,13480,6.99,2005-08-20T01:10:27Z,2020-02-15T06:59:47Z +446,16,1,14511,8.99,2005-08-21T14:45:34Z,2020-02-15T06:59:47Z +447,17,2,287,2.99,2005-05-26T19:44:54Z,2020-02-15T06:59:47Z +448,17,1,580,2.99,2005-05-28T11:19:53Z,2020-02-15T06:59:47Z +449,17,2,884,4.99,2005-05-30T06:41:32Z,2020-02-15T06:59:47Z +450,17,2,2175,5.99,2005-06-18T00:17:58Z,2020-02-15T06:59:47Z +451,17,1,2684,8.99,2005-06-19T12:29:08Z,2020-02-15T06:59:47Z +452,17,2,3269,5.99,2005-06-21T05:06:30Z,2020-02-15T06:59:47Z +453,17,1,5714,3.99,2005-07-10T10:46:57Z,2020-02-15T06:59:47Z +454,17,1,5883,3.99,2005-07-10T19:25:21Z,2020-02-15T06:59:47Z +455,17,2,6884,1.99,2005-07-12T20:52:41Z,2020-02-15T06:59:47Z +456,17,2,8076,8.99,2005-07-28T17:45:58Z,2020-02-15T06:59:47Z +457,17,1,8213,2.99,2005-07-28T23:37:33Z,2020-02-15T06:59:47Z +458,17,2,9092,8.99,2005-07-30T08:30:56Z,2020-02-15T06:59:47Z +459,17,1,9138,2.99,2005-07-30T10:11:52Z,2020-02-15T06:59:47Z +460,17,2,9382,8.99,2005-07-30T19:23:44Z,2020-02-15T06:59:47Z +461,17,1,9489,0.99,2005-07-30T23:43:32Z,2020-02-15T06:59:47Z +462,17,2,11990,4.99,2005-08-17T18:26:22Z,2020-02-15T06:59:47Z +463,17,1,13732,2.99,2005-08-20T10:24:41Z,2020-02-15T06:59:47Z +464,17,1,14040,2.99,2005-08-20T21:43:44Z,2020-02-15T06:59:47Z +465,17,2,14326,2.99,2005-08-21T08:15:41Z,2020-02-15T06:59:47Z +466,17,1,14346,2.99,2005-08-21T08:42:26Z,2020-02-15T06:59:47Z +467,17,2,15752,5.99,2005-08-23T12:41:38Z,2020-02-15T06:59:47Z +468,18,1,50,2.99,2005-05-25T06:44:53Z,2020-02-15T06:59:47Z +469,18,1,116,4.99,2005-05-25T19:27:51Z,2020-02-15T06:59:47Z +470,18,1,692,4.99,2005-05-29T01:32:10Z,2020-02-15T06:59:47Z +471,18,2,1451,5.99,2005-06-15T19:30:18Z,2020-02-15T06:59:47Z +472,18,2,1783,4.99,2005-06-16T19:23:23Z,2020-02-15T06:59:47Z +473,18,2,2112,5.99,2005-06-17T19:52:42Z,2020-02-15T06:59:47Z +474,18,1,2990,8.99,2005-06-20T09:02:51Z,2020-02-15T06:59:47Z +475,18,2,4672,3.99,2005-07-08T10:15:38Z,2020-02-15T06:59:47Z +476,18,2,4724,3.99,2005-07-08T12:46:30Z,2020-02-15T06:59:47Z +477,18,2,4923,3.99,2005-07-08T21:44:39Z,2020-02-15T06:59:47Z +478,18,2,6128,2.99,2005-07-11T08:15:08Z,2020-02-15T06:59:47Z +479,18,1,6846,0.99,2005-07-12T19:20:45Z,2020-02-15T06:59:47Z +480,18,2,8122,2.99,2005-07-28T19:27:37Z,2020-02-15T06:59:47Z +481,18,1,8555,4.99,2005-07-29T11:18:01Z,2020-02-15T06:59:47Z +482,18,1,9036,4.99,2005-07-30T06:18:38Z,2020-02-15T06:59:47Z +483,18,2,9114,4.99,2005-07-30T09:13:21Z,2020-02-15T06:59:47Z +484,18,1,10682,4.99,2005-08-01T17:32:53Z,2020-02-15T06:59:47Z +485,18,2,10721,1.99,2005-08-01T19:05:18Z,2020-02-15T06:59:47Z +486,18,2,11094,4.99,2005-08-02T08:03:02Z,2020-02-15T06:59:47Z +487,18,2,11439,4.99,2005-08-02T20:22:45Z,2020-02-15T06:59:47Z +488,18,2,12333,0.99,2005-08-18T06:51:39Z,2020-02-15T06:59:47Z +489,18,2,13490,0.99,2005-08-20T01:29:29Z,2020-02-15T06:59:47Z +490,19,2,18,0.99,2005-05-25T01:10:47Z,2020-02-15T06:59:47Z +491,19,2,110,9.99,2005-05-25T18:43:49Z,2020-02-15T06:59:47Z +492,19,1,179,6.99,2005-05-26T04:26:06Z,2020-02-15T06:59:47Z +493,19,1,337,2.99,2005-05-27T03:22:30Z,2020-02-15T06:59:47Z +494,19,2,591,2.99,2005-05-28T13:11:04Z,2020-02-15T06:59:47Z +495,19,2,696,2.99,2005-05-29T01:59:10Z,2020-02-15T06:59:47Z +496,19,1,2657,2.99,2005-06-19T10:42:59Z,2020-02-15T06:59:47Z +497,19,1,2848,2.99,2005-06-19T22:55:37Z,2020-02-15T06:59:47Z +498,19,2,3423,2.99,2005-06-21T17:38:02Z,2020-02-15T06:59:47Z +499,19,2,3549,4.99,2005-07-06T02:24:55Z,2020-02-15T06:59:47Z +500,19,2,6495,4.99,2005-07-12T02:57:02Z,2020-02-15T06:59:47Z +501,19,1,9157,5.99,2005-07-30T11:06:23Z,2020-02-15T06:59:47Z +502,19,1,9256,0.99,2005-07-30T14:29:29Z,2020-02-15T06:59:47Z +503,19,2,10077,9.99,2005-07-31T20:01:06Z,2020-02-15T06:59:47Z +504,19,1,10176,7.99,2005-07-31T23:40:35Z,2020-02-15T06:59:47Z +505,19,2,11508,8.99,2005-08-16T23:27:36Z,2020-02-15T06:59:47Z +506,19,1,11869,5.99,2005-08-17T14:10:22Z,2020-02-15T06:59:47Z +507,19,1,12211,9.99,2005-08-18T02:31:18Z,2020-02-15T06:59:47Z +508,19,2,12357,2.99,2005-08-18T07:40:52Z,2020-02-15T06:59:47Z +509,19,1,13718,8.99,2005-08-20T09:53:44Z,2020-02-15T06:59:47Z +510,19,2,13804,8.99,2005-08-20T12:46:32Z,2020-02-15T06:59:47Z +511,19,1,14101,4.99,2005-08-21T00:33:03Z,2020-02-15T06:59:47Z +512,19,1,15047,2.99,2005-08-22T09:57:16Z,2020-02-15T06:59:47Z +513,19,2,15529,0.99,2005-08-23T03:46:47Z,2020-02-15T06:59:47Z +514,20,2,202,2.99,2005-05-26T07:27:36Z,2020-02-15T06:59:47Z +515,20,2,497,6.99,2005-05-28T00:54:39Z,2020-02-15T06:59:47Z +516,20,2,546,1.99,2005-05-28T07:16:25Z,2020-02-15T06:59:47Z +517,20,2,1558,0.99,2005-06-16T02:33:53Z,2020-02-15T06:59:47Z +518,20,2,2136,3.99,2005-06-17T21:16:41Z,2020-02-15T06:59:47Z +519,20,2,2343,4.99,2005-06-18T11:46:26Z,2020-02-15T06:59:47Z +520,20,1,3350,4.99,2005-06-21T11:21:38Z,2020-02-15T06:59:47Z +521,20,2,4011,3.99,2005-07-07T00:48:25Z,2020-02-15T06:59:47Z +522,20,1,4407,2.99,2005-07-07T21:39:45Z,2020-02-15T06:59:47Z +523,20,1,5718,2.99,2005-07-10T11:03:20Z,2020-02-15T06:59:47Z +524,20,1,6254,2.99,2005-07-11T15:10:18Z,2020-02-15T06:59:47Z +525,20,2,6267,6.99,2005-07-11T15:53:00Z,2020-02-15T06:59:47Z +526,20,2,7217,4.99,2005-07-27T09:31:44Z,2020-02-15T06:59:47Z +527,20,2,7864,5.99,2005-07-28T10:06:10Z,2020-02-15T06:59:47Z +528,20,2,8127,2.99,2005-07-28T19:45:19Z,2020-02-15T06:59:47Z +529,20,2,9075,4.99,2005-07-30T07:55:14Z,2020-02-15T06:59:47Z +530,20,2,9468,3.99,2005-07-30T22:53:52Z,2020-02-15T06:59:47Z +531,20,2,10284,4.99,2005-08-01T03:33:19Z,2020-02-15T06:59:47Z +532,20,1,10616,7.99,2005-08-01T14:59:50Z,2020-02-15T06:59:47Z +533,20,1,10954,1.99,2005-08-02T03:30:24Z,2020-02-15T06:59:47Z +534,20,1,11821,0.99,2005-08-17T12:27:55Z,2020-02-15T06:59:47Z +535,20,1,12180,0.99,2005-08-18T01:28:15Z,2020-02-15T06:59:47Z +536,20,2,13036,4.99,2005-08-19T08:48:37Z,2020-02-15T06:59:47Z +537,20,1,13137,4.99,2005-08-19T12:26:32Z,2020-02-15T06:59:47Z +538,20,2,13317,2.99,2005-08-19T19:25:42Z,2020-02-15T06:59:47Z +539,20,2,14613,2.99,2005-08-21T18:03:20Z,2020-02-15T06:59:47Z +540,20,2,15057,6.99,2005-08-22T10:19:58Z,2020-02-15T06:59:47Z +541,20,1,15161,1.99,2005-08-22T14:37:22Z,2020-02-15T06:59:47Z +542,20,2,15248,0.99,2005-08-22T17:53:06Z,2020-02-15T06:59:47Z +543,20,1,15460,2.99,2005-08-23T01:10:42Z,2020-02-15T06:59:47Z +544,21,1,260,3.99,2005-05-26T15:42:20Z,2020-02-15T06:59:47Z +545,21,2,463,3.99,2005-05-27T20:11:47Z,2020-02-15T06:59:47Z +546,21,1,570,0.99,2005-05-28T10:15:04Z,2020-02-15T06:59:47Z +547,21,2,2235,7.99,2005-06-18T04:08:50Z,2020-02-15T06:59:47Z +548,21,1,2268,4.99,2005-06-18T06:13:41Z,2020-02-15T06:59:47Z +549,21,1,2393,2.99,2005-06-18T15:37:55Z,2020-02-15T06:59:47Z +550,21,2,2830,4.99,2005-06-19T21:14:33Z,2020-02-15T06:59:47Z +551,21,1,3212,10.99,2005-06-21T01:04:35Z,2020-02-15T06:59:47Z +552,21,2,5107,4.99,2005-07-09T06:42:32Z,2020-02-15T06:59:47Z +553,21,1,5772,3.99,2005-07-10T13:27:40Z,2020-02-15T06:59:47Z +554,21,1,5961,2.99,2005-07-10T23:43:23Z,2020-02-15T06:59:47Z +555,21,2,6943,1.99,2005-07-26T23:28:13Z,2020-02-15T06:59:47Z +556,21,1,7994,0.99,2005-07-28T14:56:54Z,2020-02-15T06:59:47Z +557,21,2,8196,6.99,2005-07-28T22:56:11Z,2020-02-15T06:59:47Z +558,21,2,8862,2.99,2005-07-29T23:49:23Z,2020-02-15T06:59:47Z +559,21,2,9149,0.99,2005-07-30T10:45:12Z,2020-02-15T06:59:47Z +560,21,1,9699,5.99,2005-07-31T07:29:25Z,2020-02-15T06:59:47Z +561,21,2,10570,4.99,2005-08-01T13:23:06Z,2020-02-15T06:59:47Z +562,21,1,10734,0.99,2005-08-01T19:28:47Z,2020-02-15T06:59:47Z +563,21,2,11072,0.99,2005-08-02T07:10:57Z,2020-02-15T06:59:47Z +564,21,2,11970,0.99,2005-08-17T17:53:09Z,2020-02-15T06:59:47Z +565,21,2,12131,2.99,2005-08-17T23:34:16Z,2020-02-15T06:59:47Z +566,21,2,12660,4.99,2005-08-18T19:07:23Z,2020-02-15T06:59:47Z +567,21,1,12774,6.99,2005-08-18T23:34:22Z,2020-02-15T06:59:47Z +568,21,1,13381,2.99,2005-08-19T21:37:57Z,2020-02-15T06:59:47Z +569,21,2,13399,4.99,2005-08-19T22:09:28Z,2020-02-15T06:59:47Z +570,21,1,13411,4.99,2005-08-19T22:43:38Z,2020-02-15T06:59:47Z +571,21,1,13463,8.99,2005-08-20T00:50:54Z,2020-02-15T06:59:47Z +572,21,1,13699,9.99,2005-08-20T09:26:14Z,2020-02-15T06:59:47Z +573,21,1,13740,4.99,2005-08-20T10:48:43Z,2020-02-15T06:59:47Z +574,21,2,14077,8.99,2005-08-20T23:24:07Z,2020-02-15T06:59:47Z +575,21,2,14161,2.99,2005-08-21T02:51:59Z,2020-02-15T06:59:47Z +576,21,2,14446,2.99,2005-08-21T12:10:41Z,2020-02-15T06:59:47Z +577,21,1,14869,4.99,2005-08-22T03:20:26Z,2020-02-15T06:59:47Z +578,21,1,14933,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +579,22,1,370,4.99,2005-05-27T07:49:43Z,2020-02-15T06:59:47Z +580,22,1,556,4.99,2005-05-28T08:31:36Z,2020-02-15T06:59:47Z +581,22,2,820,8.99,2005-05-29T21:07:22Z,2020-02-15T06:59:47Z +582,22,1,3419,2.99,2005-06-21T17:18:01Z,2020-02-15T06:59:47Z +583,22,2,4215,2.99,2005-07-07T12:00:52Z,2020-02-15T06:59:47Z +584,22,1,5294,6.99,2005-07-09T15:23:42Z,2020-02-15T06:59:47Z +585,22,1,5815,2.99,2005-07-10T15:48:19Z,2020-02-15T06:59:47Z +586,22,1,7087,4.99,2005-07-27T04:42:08Z,2020-02-15T06:59:47Z +587,22,1,7705,7.99,2005-07-28T04:02:58Z,2020-02-15T06:59:47Z +588,22,2,9410,0.99,2005-07-30T20:38:05Z,2020-02-15T06:59:47Z +589,22,1,9580,4.99,2005-07-31T03:01:11Z,2020-02-15T06:59:47Z +590,22,1,12023,5.99,2005-08-17T19:54:54Z,2020-02-15T06:59:47Z +591,22,1,12124,2.99,2005-08-17T23:22:46Z,2020-02-15T06:59:47Z +592,22,2,12809,0.99,2005-08-19T00:42:24Z,2020-02-15T06:59:47Z +593,22,2,13060,9.99,2005-08-19T09:43:25Z,2020-02-15T06:59:47Z +594,22,1,14056,2.99,2005-08-20T22:18:53Z,2020-02-15T06:59:47Z +595,22,1,14564,6.99,2005-08-21T16:24:43Z,2020-02-15T06:59:47Z +596,22,1,15134,7.99,2005-08-22T13:18:25Z,2020-02-15T06:59:47Z +597,22,1,15589,6.99,2005-08-23T06:03:31Z,2020-02-15T06:59:47Z +598,22,1,15658,4.99,2005-08-23T08:48:43Z,2020-02-15T06:59:47Z +599,22,1,15793,4.99,2005-08-23T14:06:19Z,2020-02-15T06:59:47Z +600,22,1,12222,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +601,23,1,129,8.99,2005-05-25T21:20:03Z,2020-02-15T06:59:47Z +602,23,1,654,2.99,2005-05-28T20:15:30Z,2020-02-15T06:59:47Z +603,23,2,1090,0.99,2005-05-31T12:03:44Z,2020-02-15T06:59:47Z +604,23,1,2753,1.99,2005-06-19T16:44:35Z,2020-02-15T06:59:47Z +605,23,1,2827,0.99,2005-06-19T20:50:01Z,2020-02-15T06:59:47Z +606,23,1,3015,5.99,2005-06-20T10:48:56Z,2020-02-15T06:59:47Z +607,23,1,3055,4.99,2005-06-20T13:19:58Z,2020-02-15T06:59:47Z +608,23,1,3461,2.99,2005-06-21T21:49:18Z,2020-02-15T06:59:47Z +609,23,2,3736,3.99,2005-07-06T11:43:44Z,2020-02-15T06:59:47Z +610,23,2,3781,2.99,2005-07-06T13:53:41Z,2020-02-15T06:59:47Z +611,23,2,4853,2.99,2005-07-08T18:43:18Z,2020-02-15T06:59:47Z +612,23,1,6213,2.99,2005-07-11T12:43:07Z,2020-02-15T06:59:47Z +613,23,1,6238,2.99,2005-07-11T14:20:18Z,2020-02-15T06:59:47Z +614,23,2,6917,5.99,2005-07-12T22:30:15Z,2020-02-15T06:59:47Z +615,23,1,7155,7.99,2005-07-27T07:18:46Z,2020-02-15T06:59:47Z +616,23,1,8015,2.99,2005-07-28T15:33:03Z,2020-02-15T06:59:47Z +617,23,2,8718,0.99,2005-07-29T17:41:14Z,2020-02-15T06:59:47Z +618,23,2,9209,5.99,2005-07-30T12:55:36Z,2020-02-15T06:59:47Z +619,23,2,9255,9.99,2005-07-30T14:26:46Z,2020-02-15T06:59:47Z +620,23,2,9718,3.99,2005-07-31T08:25:03Z,2020-02-15T06:59:47Z +621,23,1,10132,6.99,2005-07-31T21:50:24Z,2020-02-15T06:59:47Z +622,23,1,10898,2.99,2005-08-02T01:29:57Z,2020-02-15T06:59:47Z +623,23,2,11501,2.99,2005-08-16T23:04:53Z,2020-02-15T06:59:47Z +624,23,2,13290,2.99,2005-08-19T18:31:50Z,2020-02-15T06:59:47Z +625,23,2,13331,4.99,2005-08-19T20:00:25Z,2020-02-15T06:59:47Z +626,23,2,13429,6.99,2005-08-19T23:25:37Z,2020-02-15T06:59:47Z +627,23,2,13511,0.99,2005-08-20T02:21:40Z,2020-02-15T06:59:47Z +628,23,2,13557,0.99,2005-08-20T04:12:41Z,2020-02-15T06:59:47Z +629,23,2,14482,2.99,2005-08-21T13:42:45Z,2020-02-15T06:59:47Z +630,23,2,15532,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +631,24,2,1007,6.99,2005-05-31T01:02:28Z,2020-02-15T06:59:47Z +632,24,2,1077,2.99,2005-05-31T10:22:54Z,2020-02-15T06:59:47Z +633,24,1,1716,2.99,2005-06-16T14:39:31Z,2020-02-15T06:59:47Z +634,24,1,2070,2.99,2005-06-17T16:27:51Z,2020-02-15T06:59:47Z +635,24,2,2116,4.99,2005-06-17T20:16:12Z,2020-02-15T06:59:47Z +636,24,1,2451,5.99,2005-06-18T19:28:02Z,2020-02-15T06:59:47Z +637,24,2,2963,7.99,2005-06-20T07:33:09Z,2020-02-15T06:59:47Z +638,24,2,3649,7.99,2005-07-06T07:32:42Z,2020-02-15T06:59:47Z +639,24,2,4378,2.99,2005-07-07T20:29:08Z,2020-02-15T06:59:47Z +640,24,1,5310,0.99,2005-07-09T16:00:34Z,2020-02-15T06:59:47Z +641,24,2,5648,0.99,2005-07-10T07:09:21Z,2020-02-15T06:59:47Z +642,24,1,6855,4.99,2005-07-12T19:46:29Z,2020-02-15T06:59:47Z +643,24,1,7266,1.99,2005-07-27T11:22:17Z,2020-02-15T06:59:47Z +644,24,1,8947,4.99,2005-07-30T03:15:37Z,2020-02-15T06:59:47Z +645,24,1,9723,0.99,2005-07-31T08:31:18Z,2020-02-15T06:59:47Z +646,24,2,9925,0.99,2005-07-31T15:08:47Z,2020-02-15T06:59:47Z +647,24,2,10491,2.99,2005-08-01T10:38:27Z,2020-02-15T06:59:47Z +648,24,1,11209,2.99,2005-08-02T12:09:45Z,2020-02-15T06:59:47Z +649,24,2,11546,2.99,2005-08-17T00:57:36Z,2020-02-15T06:59:47Z +650,24,2,12165,8.99,2005-08-18T00:53:37Z,2020-02-15T06:59:47Z +651,24,1,12745,2.99,2005-08-18T22:22:45Z,2020-02-15T06:59:47Z +652,24,1,12999,1.99,2005-08-19T07:34:53Z,2020-02-15T06:59:47Z +653,24,2,13058,4.99,2005-08-19T09:40:53Z,2020-02-15T06:59:47Z +654,24,1,13247,0.99,2005-08-19T16:45:59Z,2020-02-15T06:59:47Z +655,24,2,15357,4.99,2005-08-22T21:28:59Z,2020-02-15T06:59:47Z +656,25,1,90,7.99,2005-05-25T14:31:25Z,2020-02-15T06:59:47Z +657,25,2,1033,2.99,2005-05-31T04:50:07Z,2020-02-15T06:59:47Z +658,25,1,1338,4.99,2005-06-15T12:17:34Z,2020-02-15T06:59:47Z +659,25,1,1365,2.99,2005-06-15T14:09:55Z,2020-02-15T06:59:47Z +660,25,2,1754,6.99,2005-06-16T17:13:23Z,2020-02-15T06:59:47Z +661,25,2,2625,8.99,2005-06-19T08:23:11Z,2020-02-15T06:59:47Z +662,25,1,2901,4.99,2005-06-20T02:41:28Z,2020-02-15T06:59:47Z +663,25,1,3447,4.99,2005-06-21T20:53:31Z,2020-02-15T06:59:47Z +664,25,1,4282,2.99,2005-07-07T15:26:31Z,2020-02-15T06:59:47Z +665,25,1,4319,0.99,2005-07-07T17:50:27Z,2020-02-15T06:59:47Z +666,25,2,4404,2.99,2005-07-07T21:31:53Z,2020-02-15T06:59:47Z +667,25,1,5881,2.99,2005-07-10T19:19:43Z,2020-02-15T06:59:47Z +668,25,1,6653,4.99,2005-07-12T11:06:17Z,2020-02-15T06:59:47Z +669,25,2,6905,2.99,2005-07-12T22:02:18Z,2020-02-15T06:59:47Z +670,25,2,8667,2.99,2005-07-29T15:40:57Z,2020-02-15T06:59:47Z +671,25,2,8878,0.99,2005-07-30T00:15:57Z,2020-02-15T06:59:47Z +672,25,1,9140,8.99,2005-07-30T10:12:01Z,2020-02-15T06:59:47Z +673,25,2,9334,2.99,2005-07-30T17:56:38Z,2020-02-15T06:59:47Z +674,25,2,9922,2.99,2005-07-31T14:59:37Z,2020-02-15T06:59:47Z +675,25,2,10103,2.99,2005-07-31T20:49:13Z,2020-02-15T06:59:47Z +676,25,1,10324,5.99,2005-08-01T04:49:06Z,2020-02-15T06:59:47Z +677,25,2,10860,2.99,2005-08-02T00:12:32Z,2020-02-15T06:59:47Z +678,25,1,10916,2.99,2005-08-02T02:05:59Z,2020-02-15T06:59:47Z +679,25,1,11642,0.99,2005-08-17T04:48:05Z,2020-02-15T06:59:47Z +680,25,1,12922,0.99,2005-08-19T04:48:48Z,2020-02-15T06:59:47Z +681,25,1,14193,4.99,2005-08-21T03:38:27Z,2020-02-15T06:59:47Z +682,25,1,14236,4.99,2005-08-21T05:13:16Z,2020-02-15T06:59:47Z +683,25,1,15512,0.99,2005-08-23T02:57:30Z,2020-02-15T06:59:47Z +684,25,1,15972,5.99,2005-08-23T20:00:30Z,2020-02-15T06:59:47Z +685,26,1,796,2.99,2005-05-29T16:59:44Z,2020-02-15T06:59:47Z +686,26,2,1105,2.99,2005-05-31T14:33:56Z,2020-02-15T06:59:47Z +687,26,1,1440,5.99,2005-06-15T18:53:14Z,2020-02-15T06:59:47Z +688,26,2,1706,4.99,2005-06-16T14:01:02Z,2020-02-15T06:59:47Z +689,26,1,2093,9.99,2005-06-17T18:14:08Z,2020-02-15T06:59:47Z +690,26,2,2416,3.99,2005-06-18T17:07:34Z,2020-02-15T06:59:47Z +691,26,2,2421,6.99,2005-06-18T17:25:05Z,2020-02-15T06:59:47Z +692,26,1,2532,4.99,2005-06-19T01:27:46Z,2020-02-15T06:59:47Z +693,26,1,2745,4.99,2005-06-19T16:21:19Z,2020-02-15T06:59:47Z +694,26,1,4065,2.99,2005-07-07T04:32:28Z,2020-02-15T06:59:47Z +695,26,1,4274,4.99,2005-07-07T14:42:04Z,2020-02-15T06:59:47Z +696,26,1,4382,4.99,2005-07-07T20:41:03Z,2020-02-15T06:59:47Z +697,26,2,4402,0.99,2005-07-07T21:28:46Z,2020-02-15T06:59:47Z +698,26,1,4431,6.99,2005-07-07T22:39:02Z,2020-02-15T06:59:47Z +699,26,1,4536,3.99,2005-07-08T03:43:22Z,2020-02-15T06:59:47Z +700,26,1,4641,6.99,2005-07-08T09:09:46Z,2020-02-15T06:59:47Z +701,26,1,5437,2.99,2005-07-09T21:32:29Z,2020-02-15T06:59:47Z +702,26,1,6149,1.99,2005-07-11T09:19:31Z,2020-02-15T06:59:47Z +703,26,2,6243,2.99,2005-07-11T14:53:25Z,2020-02-15T06:59:47Z +704,26,2,7328,0.99,2005-07-27T13:55:18Z,2020-02-15T06:59:47Z +705,26,1,8241,4.99,2005-07-29T00:33:36Z,2020-02-15T06:59:47Z +706,26,1,9484,0.99,2005-07-30T23:31:40Z,2020-02-15T06:59:47Z +707,26,1,10386,3.99,2005-08-01T06:42:20Z,2020-02-15T06:59:47Z +708,26,1,10996,3.99,2005-08-02T04:48:11Z,2020-02-15T06:59:47Z +709,26,2,11314,2.99,2005-08-02T16:04:08Z,2020-02-15T06:59:47Z +710,26,1,11338,0.99,2005-08-02T17:00:12Z,2020-02-15T06:59:47Z +711,26,1,11744,5.99,2005-08-17T08:54:30Z,2020-02-15T06:59:47Z +712,26,2,13111,4.99,2005-08-19T11:25:10Z,2020-02-15T06:59:47Z +713,26,2,14183,4.99,2005-08-21T03:24:29Z,2020-02-15T06:59:47Z +714,26,2,14192,8.99,2005-08-21T03:37:42Z,2020-02-15T06:59:47Z +715,26,2,14603,1.99,2005-08-21T17:51:06Z,2020-02-15T06:59:47Z +716,26,1,14677,7.99,2005-08-21T20:12:30Z,2020-02-15T06:59:47Z +717,26,1,15384,2.99,2005-08-22T22:34:44Z,2020-02-15T06:59:47Z +718,26,1,15722,7.99,2005-08-23T11:16:29Z,2020-02-15T06:59:47Z +719,27,2,787,2.99,2005-05-29T16:03:03Z,2020-02-15T06:59:47Z +720,27,1,1310,4.99,2005-06-15T10:11:42Z,2020-02-15T06:59:47Z +721,27,2,1480,4.99,2005-06-15T21:17:17Z,2020-02-15T06:59:47Z +722,27,2,1699,2.99,2005-06-16T13:05:09Z,2020-02-15T06:59:47Z +723,27,2,1960,3.99,2005-06-17T08:59:57Z,2020-02-15T06:59:47Z +724,27,2,2512,2.99,2005-06-18T23:48:47Z,2020-02-15T06:59:47Z +725,27,1,2815,4.99,2005-06-19T20:03:29Z,2020-02-15T06:59:47Z +726,27,1,3038,1.99,2005-06-20T12:28:59Z,2020-02-15T06:59:47Z +727,27,2,3420,3.99,2005-06-21T17:22:36Z,2020-02-15T06:59:47Z +728,27,2,4038,0.99,2005-07-07T02:52:53Z,2020-02-15T06:59:47Z +729,27,1,4510,5.99,2005-07-08T02:34:51Z,2020-02-15T06:59:47Z +730,27,1,5552,0.99,2005-07-10T03:01:19Z,2020-02-15T06:59:47Z +731,27,1,5736,4.99,2005-07-10T11:45:48Z,2020-02-15T06:59:47Z +732,27,2,6115,0.99,2005-07-11T07:36:50Z,2020-02-15T06:59:47Z +733,27,2,6562,5.99,2005-07-12T05:26:26Z,2020-02-15T06:59:47Z +734,27,2,6658,4.99,2005-07-12T11:13:21Z,2020-02-15T06:59:47Z +735,27,1,7927,1.99,2005-07-28T12:13:42Z,2020-02-15T06:59:47Z +736,27,2,9244,0.99,2005-07-30T14:06:53Z,2020-02-15T06:59:47Z +737,27,2,9636,5.99,2005-07-31T05:12:59Z,2020-02-15T06:59:47Z +738,27,1,9673,7.99,2005-07-31T06:34:55Z,2020-02-15T06:59:47Z +739,27,1,9908,4.99,2005-07-31T14:39:52Z,2020-02-15T06:59:47Z +740,27,1,10794,7.99,2005-08-01T21:51:15Z,2020-02-15T06:59:47Z +741,27,1,10852,4.99,2005-08-02T00:00:33Z,2020-02-15T06:59:47Z +742,27,1,11234,0.99,2005-08-02T13:12:17Z,2020-02-15T06:59:47Z +743,27,1,11661,8.99,2005-08-17T05:25:57Z,2020-02-15T06:59:47Z +744,27,2,11740,6.99,2005-08-17T08:48:31Z,2020-02-15T06:59:47Z +745,27,2,12021,5.99,2005-08-17T19:52:43Z,2020-02-15T06:59:47Z +746,27,2,12461,0.99,2005-08-18T11:28:14Z,2020-02-15T06:59:47Z +747,27,1,12531,2.99,2005-08-18T13:57:50Z,2020-02-15T06:59:47Z +748,27,2,13816,4.99,2005-08-20T13:13:56Z,2020-02-15T06:59:47Z +749,27,1,15048,0.99,2005-08-22T10:00:04Z,2020-02-15T06:59:47Z +750,28,2,388,2.99,2005-05-27T10:37:27Z,2020-02-15T06:59:47Z +751,28,1,868,2.99,2005-05-30T04:19:55Z,2020-02-15T06:59:47Z +752,28,2,1240,2.99,2005-06-15T04:58:07Z,2020-02-15T06:59:47Z +753,28,1,1543,4.99,2005-06-16T01:24:08Z,2020-02-15T06:59:47Z +754,28,2,2299,3.99,2005-06-18T08:18:52Z,2020-02-15T06:59:47Z +755,28,2,2604,0.99,2005-06-19T06:30:10Z,2020-02-15T06:59:47Z +756,28,1,3231,0.99,2005-06-21T02:25:00Z,2020-02-15T06:59:47Z +757,28,1,3845,0.99,2005-07-06T16:38:14Z,2020-02-15T06:59:47Z +758,28,2,4704,0.99,2005-07-08T11:45:35Z,2020-02-15T06:59:47Z +759,28,2,4951,4.99,2005-07-08T22:58:21Z,2020-02-15T06:59:47Z +760,28,2,5653,2.99,2005-07-10T07:21:27Z,2020-02-15T06:59:47Z +761,28,1,5817,5.99,2005-07-10T15:49:12Z,2020-02-15T06:59:47Z +762,28,2,6032,0.99,2005-07-11T02:49:01Z,2020-02-15T06:59:47Z +763,28,2,6476,0.99,2005-07-12T01:37:48Z,2020-02-15T06:59:47Z +764,28,1,7580,9.99,2005-07-27T23:07:40Z,2020-02-15T06:59:47Z +765,28,1,8464,4.99,2005-07-29T08:18:20Z,2020-02-15T06:59:47Z +766,28,1,8901,2.99,2005-07-30T01:07:12Z,2020-02-15T06:59:47Z +767,28,2,9544,2.99,2005-07-31T01:44:51Z,2020-02-15T06:59:47Z +768,28,2,9593,4.99,2005-07-31T03:22:30Z,2020-02-15T06:59:47Z +769,28,2,9705,4.99,2005-07-31T07:40:33Z,2020-02-15T06:59:47Z +770,28,2,10116,2.99,2005-07-31T21:14:02Z,2020-02-15T06:59:47Z +771,28,2,10294,6.99,2005-08-01T03:48:12Z,2020-02-15T06:59:47Z +772,28,1,11444,2.99,2005-08-02T20:32:55Z,2020-02-15T06:59:47Z +773,28,1,11856,3.99,2005-08-17T13:44:49Z,2020-02-15T06:59:47Z +774,28,2,12190,2.99,2005-08-18T01:54:44Z,2020-02-15T06:59:47Z +775,28,1,12359,0.99,2005-08-18T07:44:05Z,2020-02-15T06:59:47Z +776,28,1,12708,2.99,2005-08-18T20:59:17Z,2020-02-15T06:59:47Z +777,28,2,13783,4.99,2005-08-20T12:11:03Z,2020-02-15T06:59:47Z +778,28,2,14540,2.99,2005-08-21T15:34:23Z,2020-02-15T06:59:47Z +779,28,1,15445,4.99,2005-08-23T00:48:29Z,2020-02-15T06:59:47Z +780,28,1,15491,2.99,2005-08-23T02:08:40Z,2020-02-15T06:59:47Z +781,28,2,12938,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +782,29,2,194,1.99,2005-05-26T06:52:33Z,2020-02-15T06:59:47Z +783,29,1,2655,0.99,2005-06-19T10:38:42Z,2020-02-15T06:59:47Z +784,29,1,2673,0.99,2005-06-19T11:42:20Z,2020-02-15T06:59:47Z +785,29,1,2701,7.99,2005-06-19T13:33:06Z,2020-02-15T06:59:47Z +786,29,1,2735,2.99,2005-06-19T15:42:07Z,2020-02-15T06:59:47Z +787,29,2,2801,2.99,2005-06-19T19:18:09Z,2020-02-15T06:59:47Z +788,29,2,2923,2.99,2005-06-20T04:16:07Z,2020-02-15T06:59:47Z +789,29,1,3324,2.99,2005-06-21T08:49:16Z,2020-02-15T06:59:47Z +790,29,2,4262,6.99,2005-07-07T14:24:30Z,2020-02-15T06:59:47Z +791,29,1,4313,0.99,2005-07-07T17:36:56Z,2020-02-15T06:59:47Z +792,29,2,4535,0.99,2005-07-08T03:40:46Z,2020-02-15T06:59:47Z +793,29,2,5442,10.99,2005-07-09T21:55:19Z,2020-02-15T06:59:47Z +794,29,1,5857,1.99,2005-07-10T17:59:29Z,2020-02-15T06:59:47Z +795,29,2,7237,3.99,2005-07-27T10:12:36Z,2020-02-15T06:59:47Z +796,29,1,7451,6.99,2005-07-27T18:18:41Z,2020-02-15T06:59:47Z +797,29,1,7453,0.99,2005-07-27T18:27:13Z,2020-02-15T06:59:47Z +798,29,2,8673,2.99,2005-07-29T15:50:14Z,2020-02-15T06:59:47Z +799,29,2,9392,4.99,2005-07-30T19:50:13Z,2020-02-15T06:59:47Z +800,29,1,9946,4.99,2005-07-31T15:48:54Z,2020-02-15T06:59:47Z +801,29,1,10543,5.99,2005-08-01T12:36:09Z,2020-02-15T06:59:47Z +802,29,2,10899,1.99,2005-08-02T01:30:21Z,2020-02-15T06:59:47Z +803,29,1,11079,4.99,2005-08-02T07:29:10Z,2020-02-15T06:59:47Z +804,29,2,11962,2.99,2005-08-17T17:34:38Z,2020-02-15T06:59:47Z +805,29,1,12488,4.99,2005-08-18T12:48:22Z,2020-02-15T06:59:47Z +806,29,1,12508,2.99,2005-08-18T13:20:13Z,2020-02-15T06:59:47Z +807,29,2,12569,6.99,2005-08-18T15:20:46Z,2020-02-15T06:59:47Z +808,29,2,12615,6.99,2005-08-18T17:16:07Z,2020-02-15T06:59:47Z +809,29,2,13173,2.99,2005-08-19T13:50:36Z,2020-02-15T06:59:47Z +810,29,1,13436,0.99,2005-08-19T23:36:25Z,2020-02-15T06:59:47Z +811,29,2,13777,2.99,2005-08-20T12:03:35Z,2020-02-15T06:59:47Z +812,29,1,13832,3.99,2005-08-20T14:00:25Z,2020-02-15T06:59:47Z +813,29,1,14174,0.99,2005-08-21T03:01:45Z,2020-02-15T06:59:47Z +814,29,1,14703,4.99,2005-08-21T21:01:19Z,2020-02-15T06:59:47Z +815,29,1,14985,7.99,2005-08-22T07:35:56Z,2020-02-15T06:59:47Z +816,29,1,14997,5.99,2005-08-22T07:53:00Z,2020-02-15T06:59:47Z +817,29,2,15577,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +818,30,2,1874,1.99,2005-06-17T02:39:20Z,2020-02-15T06:59:47Z +819,30,2,1895,2.99,2005-06-17T04:25:12Z,2020-02-15T06:59:47Z +820,30,2,2154,4.99,2005-06-17T22:59:42Z,2020-02-15T06:59:47Z +821,30,2,2730,2.99,2005-06-19T15:10:09Z,2020-02-15T06:59:47Z +822,30,1,3964,4.99,2005-07-06T22:23:02Z,2020-02-15T06:59:47Z +823,30,2,4471,2.99,2005-07-08T00:21:29Z,2020-02-15T06:59:47Z +824,30,2,4642,2.99,2005-07-08T09:13:28Z,2020-02-15T06:59:47Z +825,30,2,5028,5.99,2005-07-09T02:34:45Z,2020-02-15T06:59:47Z +826,30,1,5108,9.99,2005-07-09T06:44:30Z,2020-02-15T06:59:47Z +827,30,1,5289,0.99,2005-07-09T15:14:08Z,2020-02-15T06:59:47Z +828,30,2,5972,7.99,2005-07-11T00:08:54Z,2020-02-15T06:59:47Z +829,30,1,6249,0.99,2005-07-11T15:02:02Z,2020-02-15T06:59:47Z +830,30,2,6359,2.99,2005-07-11T21:06:17Z,2020-02-15T06:59:47Z +831,30,2,7394,2.99,2005-07-27T16:03:08Z,2020-02-15T06:59:47Z +832,30,2,7769,4.99,2005-07-28T06:45:23Z,2020-02-15T06:59:47Z +833,30,1,8030,4.99,2005-07-28T16:12:53Z,2020-02-15T06:59:47Z +834,30,2,8038,4.99,2005-07-28T16:32:55Z,2020-02-15T06:59:47Z +835,30,1,8083,4.99,2005-07-28T18:09:48Z,2020-02-15T06:59:47Z +836,30,1,8641,2.99,2005-07-29T14:37:30Z,2020-02-15T06:59:47Z +837,30,2,9309,2.99,2005-07-30T16:55:53Z,2020-02-15T06:59:47Z +838,30,2,9551,0.99,2005-07-31T02:04:58Z,2020-02-15T06:59:47Z +839,30,1,9641,0.99,2005-07-31T05:33:48Z,2020-02-15T06:59:47Z +840,30,1,9998,2.99,2005-07-31T17:40:35Z,2020-02-15T06:59:47Z +841,30,1,10235,6.99,2005-08-01T01:57:48Z,2020-02-15T06:59:47Z +842,30,1,12240,2.99,2005-08-18T03:27:11Z,2020-02-15T06:59:48Z +843,30,1,12546,2.99,2005-08-18T14:29:37Z,2020-02-15T06:59:48Z +844,30,2,12758,0.99,2005-08-18T22:58:34Z,2020-02-15T06:59:48Z +845,30,1,13435,0.99,2005-08-19T23:35:44Z,2020-02-15T06:59:48Z +846,30,1,13682,4.99,2005-08-20T08:50:39Z,2020-02-15T06:59:48Z +847,30,1,14339,0.99,2005-08-21T08:37:15Z,2020-02-15T06:59:48Z +848,30,1,14585,2.99,2005-08-21T17:18:33Z,2020-02-15T06:59:48Z +849,30,1,15063,4.99,2005-08-22T10:39:51Z,2020-02-15T06:59:48Z +850,30,1,15544,4.99,2005-08-23T04:17:56Z,2020-02-15T06:59:48Z +851,30,2,15829,2.99,2005-08-23T15:17:14Z,2020-02-15T06:59:48Z +852,31,2,1656,4.99,2005-06-16T10:05:40Z,2020-02-15T06:59:48Z +853,31,1,1838,1.99,2005-06-16T23:20:16Z,2020-02-15T06:59:48Z +854,31,1,2233,0.99,2005-06-18T03:57:36Z,2020-02-15T06:59:48Z +855,31,2,2341,6.99,2005-06-18T11:35:30Z,2020-02-15T06:59:48Z +856,31,1,2396,7.99,2005-06-18T15:49:48Z,2020-02-15T06:59:48Z +857,31,2,2438,0.99,2005-06-18T18:34:21Z,2020-02-15T06:59:48Z +858,31,1,2530,0.99,2005-06-19T01:20:00Z,2020-02-15T06:59:48Z +859,31,2,2648,4.99,2005-06-19T10:06:20Z,2020-02-15T06:59:48Z +860,31,2,3117,2.99,2005-06-20T18:05:15Z,2020-02-15T06:59:48Z +861,31,2,3172,1.99,2005-06-20T22:19:25Z,2020-02-15T06:59:48Z +862,31,1,3205,0.99,2005-06-21T00:38:47Z,2020-02-15T06:59:48Z +863,31,1,3701,4.99,2005-07-06T10:12:45Z,2020-02-15T06:59:48Z +864,31,2,3967,4.99,2005-07-06T22:45:10Z,2020-02-15T06:59:48Z +865,31,1,4122,6.99,2005-07-07T07:15:35Z,2020-02-15T06:59:48Z +866,31,2,4738,9.99,2005-07-08T13:24:58Z,2020-02-15T06:59:48Z +867,31,1,6208,3.99,2005-07-11T12:34:56Z,2020-02-15T06:59:48Z +868,31,2,6580,4.99,2005-07-12T06:26:10Z,2020-02-15T06:59:48Z +869,31,1,7000,1.99,2005-07-27T01:23:24Z,2020-02-15T06:59:48Z +870,31,2,7138,3.99,2005-07-27T06:47:13Z,2020-02-15T06:59:48Z +871,31,2,7178,2.99,2005-07-27T08:09:25Z,2020-02-15T06:59:48Z +872,31,2,7464,2.99,2005-07-27T18:49:42Z,2020-02-15T06:59:48Z +873,31,2,8997,0.99,2005-07-30T04:53:56Z,2020-02-15T06:59:48Z +874,31,2,12085,4.99,2005-08-17T22:17:09Z,2020-02-15T06:59:48Z +875,31,1,12377,0.99,2005-08-18T08:26:05Z,2020-02-15T06:59:48Z +876,31,2,15682,6.99,2005-08-23T09:37:34Z,2020-02-15T06:59:48Z +877,31,2,15816,6.99,2005-08-23T14:58:06Z,2020-02-15T06:59:48Z +878,32,2,483,4.99,2005-05-27T23:00:25Z,2020-02-15T06:59:48Z +879,32,2,803,4.99,2005-05-29T17:52:30Z,2020-02-15T06:59:48Z +880,32,2,1067,4.99,2005-05-31T09:12:13Z,2020-02-15T06:59:48Z +881,32,2,1887,6.99,2005-06-17T03:53:18Z,2020-02-15T06:59:48Z +882,32,2,2160,0.99,2005-06-17T23:39:11Z,2020-02-15T06:59:48Z +883,32,2,2624,5.99,2005-06-19T08:22:09Z,2020-02-15T06:59:48Z +884,32,2,2891,1.99,2005-06-20T02:02:05Z,2020-02-15T06:59:48Z +885,32,1,3500,2.99,2005-07-06T00:11:13Z,2020-02-15T06:59:48Z +886,32,1,4434,2.99,2005-07-07T22:48:34Z,2020-02-15T06:59:48Z +887,32,2,4771,2.99,2005-07-08T15:33:32Z,2020-02-15T06:59:48Z +888,32,2,4899,0.99,2005-07-08T20:37:11Z,2020-02-15T06:59:48Z +889,32,1,5307,9.99,2005-07-09T15:57:15Z,2020-02-15T06:59:48Z +890,32,1,5767,0.99,2005-07-10T13:13:18Z,2020-02-15T06:59:48Z +891,32,1,5954,2.99,2005-07-10T23:22:01Z,2020-02-15T06:59:48Z +892,32,1,6122,3.99,2005-07-11T07:58:07Z,2020-02-15T06:59:48Z +893,32,2,6450,2.99,2005-07-12T00:49:05Z,2020-02-15T06:59:48Z +894,32,1,7084,6.99,2005-07-27T04:34:07Z,2020-02-15T06:59:48Z +895,32,1,7589,5.99,2005-07-27T23:23:36Z,2020-02-15T06:59:48Z +896,32,1,7793,2.99,2005-07-28T07:26:14Z,2020-02-15T06:59:48Z +897,32,2,8390,5.99,2005-07-29T05:52:26Z,2020-02-15T06:59:48Z +898,32,2,8453,2.99,2005-07-29T07:46:29Z,2020-02-15T06:59:48Z +899,32,2,8914,2.99,2005-07-30T01:42:03Z,2020-02-15T06:59:48Z +900,32,1,11135,4.99,2005-08-02T09:22:25Z,2020-02-15T06:59:48Z +901,32,2,11831,4.99,2005-08-17T12:54:47Z,2020-02-15T06:59:48Z +902,32,2,12414,9.99,2005-08-18T09:50:40Z,2020-02-15T06:59:48Z +903,32,1,13736,8.99,2005-08-20T10:31:23Z,2020-02-15T06:59:48Z +904,32,1,13931,1.99,2005-08-20T17:16:10Z,2020-02-15T06:59:48Z +905,32,1,14075,0.99,2005-08-20T23:18:54Z,2020-02-15T06:59:48Z +906,32,2,14570,5.99,2005-08-21T16:32:32Z,2020-02-15T06:59:48Z +907,33,1,165,2.99,2005-05-26T02:28:36Z,2020-02-15T06:59:48Z +908,33,1,1301,10.99,2005-06-15T09:46:33Z,2020-02-15T06:59:48Z +909,33,2,3173,8.99,2005-06-20T22:21:10Z,2020-02-15T06:59:48Z +910,33,1,4095,5.99,2005-07-07T06:01:48Z,2020-02-15T06:59:48Z +911,33,1,5421,0.99,2005-07-09T20:49:12Z,2020-02-15T06:59:48Z +912,33,1,5723,4.99,2005-07-10T11:14:48Z,2020-02-15T06:59:48Z +913,33,2,6280,0.99,2005-07-11T16:36:17Z,2020-02-15T06:59:48Z +914,33,1,7992,4.99,2005-07-28T14:53:06Z,2020-02-15T06:59:48Z +915,33,1,9040,4.99,2005-07-30T06:31:45Z,2020-02-15T06:59:48Z +916,33,2,9085,4.99,2005-07-30T08:17:24Z,2020-02-15T06:59:48Z +917,33,1,9254,1.99,2005-07-30T14:26:11Z,2020-02-15T06:59:48Z +918,33,2,10335,2.99,2005-08-01T04:59:30Z,2020-02-15T06:59:48Z +919,33,1,10870,4.99,2005-08-02T00:27:12Z,2020-02-15T06:59:48Z +920,33,1,13241,7.99,2005-08-19T16:25:00Z,2020-02-15T06:59:48Z +921,33,1,13858,2.99,2005-08-20T14:50:57Z,2020-02-15T06:59:48Z +922,33,1,13958,7.99,2005-08-20T18:11:44Z,2020-02-15T06:59:48Z +923,33,1,14002,0.99,2005-08-20T20:12:19Z,2020-02-15T06:59:48Z +924,33,1,14623,0.99,2005-08-21T18:29:13Z,2020-02-15T06:59:48Z +925,33,1,15096,5.99,2005-08-22T11:43:04Z,2020-02-15T06:59:48Z +926,33,2,15115,2.99,2005-08-22T12:28:01Z,2020-02-15T06:59:48Z +927,33,1,12277,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +928,34,1,1900,4.99,2005-06-17T04:29:58Z,2020-02-15T06:59:48Z +929,34,2,2257,5.99,2005-06-18T05:29:52Z,2020-02-15T06:59:48Z +930,34,1,3150,0.99,2005-06-20T20:35:28Z,2020-02-15T06:59:48Z +931,34,2,3508,3.99,2005-07-06T00:24:25Z,2020-02-15T06:59:48Z +932,34,1,3911,2.99,2005-07-06T20:09:11Z,2020-02-15T06:59:48Z +933,34,1,5188,4.99,2005-07-09T10:22:31Z,2020-02-15T06:59:48Z +934,34,2,5643,4.99,2005-07-10T06:49:00Z,2020-02-15T06:59:48Z +935,34,2,5918,5.99,2005-07-10T21:32:06Z,2020-02-15T06:59:48Z +936,34,2,7015,2.99,2005-07-27T02:15:01Z,2020-02-15T06:59:48Z +937,34,2,7124,2.99,2005-07-27T06:09:30Z,2020-02-15T06:59:48Z +938,34,1,7532,0.99,2005-07-27T21:20:52Z,2020-02-15T06:59:48Z +939,34,1,9160,3.99,2005-07-30T11:17:33Z,2020-02-15T06:59:48Z +940,34,1,10523,0.99,2005-08-01T11:52:32Z,2020-02-15T06:59:48Z +941,34,1,10615,4.99,2005-08-01T14:58:14Z,2020-02-15T06:59:48Z +942,34,2,11096,0.99,2005-08-02T08:05:19Z,2020-02-15T06:59:48Z +943,34,1,11505,2.99,2005-08-16T23:18:47Z,2020-02-15T06:59:48Z +944,34,2,11701,4.99,2005-08-17T07:15:47Z,2020-02-15T06:59:48Z +945,34,2,12286,2.99,2005-08-18T04:57:59Z,2020-02-15T06:59:48Z +946,34,1,12599,2.99,2005-08-18T16:42:45Z,2020-02-15T06:59:48Z +947,34,1,12651,0.99,2005-08-18T18:36:16Z,2020-02-15T06:59:48Z +948,34,1,13371,4.99,2005-08-19T21:21:47Z,2020-02-15T06:59:48Z +949,34,2,13949,2.99,2005-08-20T17:55:13Z,2020-02-15T06:59:48Z +950,34,1,14686,5.99,2005-08-21T20:32:08Z,2020-02-15T06:59:48Z +951,34,2,14701,7.99,2005-08-21T20:54:32Z,2020-02-15T06:59:48Z +952,35,2,47,3.99,2005-05-25T06:05:20Z,2020-02-15T06:59:48Z +953,35,1,424,6.99,2005-05-27T15:34:01Z,2020-02-15T06:59:48Z +954,35,1,1579,0.99,2005-06-16T04:09:08Z,2020-02-15T06:59:48Z +955,35,1,1989,2.99,2005-06-17T10:47:24Z,2020-02-15T06:59:48Z +956,35,1,2229,4.99,2005-06-18T03:50:18Z,2020-02-15T06:59:48Z +957,35,1,2231,0.99,2005-06-18T03:52:14Z,2020-02-15T06:59:48Z +958,35,1,2743,2.99,2005-06-19T16:15:56Z,2020-02-15T06:59:48Z +959,35,2,3112,4.99,2005-06-20T17:53:30Z,2020-02-15T06:59:48Z +960,35,2,3597,2.99,2005-07-06T05:03:59Z,2020-02-15T06:59:48Z +961,35,2,4098,4.99,2005-07-07T06:14:51Z,2020-02-15T06:59:48Z +962,35,2,4990,0.99,2005-07-09T00:48:49Z,2020-02-15T06:59:48Z +963,35,1,5013,2.99,2005-07-09T01:46:45Z,2020-02-15T06:59:48Z +964,35,2,5323,0.99,2005-07-09T16:34:07Z,2020-02-15T06:59:48Z +965,35,1,5916,5.99,2005-07-10T21:26:31Z,2020-02-15T06:59:48Z +966,35,1,5963,0.99,2005-07-10T23:47:08Z,2020-02-15T06:59:48Z +967,35,1,6147,5.99,2005-07-11T09:13:08Z,2020-02-15T06:59:48Z +968,35,1,6401,4.99,2005-07-11T22:44:34Z,2020-02-15T06:59:48Z +969,35,1,6565,4.99,2005-07-12T05:39:50Z,2020-02-15T06:59:48Z +970,35,1,6572,4.99,2005-07-12T05:56:38Z,2020-02-15T06:59:48Z +971,35,1,7140,4.99,2005-07-27T06:54:12Z,2020-02-15T06:59:48Z +972,35,1,8822,6.99,2005-07-29T22:20:21Z,2020-02-15T06:59:48Z +973,35,1,8971,5.99,2005-07-30T04:03:58Z,2020-02-15T06:59:48Z +974,35,2,9033,2.99,2005-07-30T06:07:42Z,2020-02-15T06:59:48Z +975,35,1,9579,6.99,2005-07-31T02:59:20Z,2020-02-15T06:59:48Z +976,35,1,11298,1.99,2005-08-02T15:32:32Z,2020-02-15T06:59:48Z +977,35,1,11452,7.99,2005-08-02T20:59:52Z,2020-02-15T06:59:48Z +978,35,1,11645,4.99,2005-08-17T04:50:56Z,2020-02-15T06:59:48Z +979,35,1,12055,4.99,2005-08-17T21:02:19Z,2020-02-15T06:59:48Z +980,35,1,13735,2.99,2005-08-20T10:31:01Z,2020-02-15T06:59:48Z +981,35,1,14110,0.99,2005-08-21T00:53:09Z,2020-02-15T06:59:48Z +982,35,2,14124,2.99,2005-08-21T01:31:51Z,2020-02-15T06:59:48Z +983,35,2,14735,4.99,2005-08-21T22:25:09Z,2020-02-15T06:59:48Z +984,36,1,349,0.99,2005-05-27T04:53:11Z,2020-02-15T06:59:48Z +985,36,1,716,0.99,2005-05-29T04:35:29Z,2020-02-15T06:59:48Z +986,36,2,2741,0.99,2005-06-19T16:05:41Z,2020-02-15T06:59:48Z +987,36,2,4135,0.99,2005-07-07T08:15:03Z,2020-02-15T06:59:48Z +988,36,2,4560,4.99,2005-07-08T04:58:48Z,2020-02-15T06:59:48Z +989,36,2,4762,4.99,2005-07-08T14:54:42Z,2020-02-15T06:59:48Z +990,36,1,5403,0.99,2005-07-09T20:07:09Z,2020-02-15T06:59:48Z +991,36,2,6030,0.99,2005-07-11T02:37:51Z,2020-02-15T06:59:48Z +992,36,1,7205,6.99,2005-07-27T09:06:13Z,2020-02-15T06:59:48Z +993,36,1,7647,0.99,2005-07-28T01:35:17Z,2020-02-15T06:59:48Z +994,36,2,7919,6.99,2005-07-28T11:59:45Z,2020-02-15T06:59:48Z +995,36,2,8099,0.99,2005-07-28T18:35:12Z,2020-02-15T06:59:48Z +996,36,1,8391,2.99,2005-07-29T05:52:50Z,2020-02-15T06:59:48Z +997,36,1,8952,4.99,2005-07-30T03:20:38Z,2020-02-15T06:59:48Z +998,36,1,9369,2.99,2005-07-30T18:52:19Z,2020-02-15T06:59:48Z +999,36,2,9805,0.99,2005-07-31T11:11:10Z,2020-02-15T06:59:48Z +1000,36,2,10525,2.99,2005-08-01T11:53:17Z,2020-02-15T06:59:48Z +1001,36,2,10761,2.99,2005-08-01T20:25:35Z,2020-02-15T06:59:48Z +1002,36,1,10963,0.99,2005-08-02T03:48:17Z,2020-02-15T06:59:48Z +1003,36,2,10964,6.99,2005-08-02T03:56:23Z,2020-02-15T06:59:48Z +1004,36,2,11616,4.99,2005-08-17T04:00:01Z,2020-02-15T06:59:48Z +1005,36,1,11813,4.99,2005-08-17T12:06:54Z,2020-02-15T06:59:48Z +1006,36,2,13562,2.99,2005-08-20T04:31:45Z,2020-02-15T06:59:48Z +1007,36,2,13564,1.99,2005-08-20T04:34:46Z,2020-02-15T06:59:48Z +1008,36,1,13674,4.99,2005-08-20T08:30:54Z,2020-02-15T06:59:48Z +1009,36,1,14647,9.99,2005-08-21T19:15:33Z,2020-02-15T06:59:48Z +1010,36,2,15657,4.99,2005-08-23T08:42:40Z,2020-02-15T06:59:48Z +1011,37,1,25,0.99,2005-05-25T03:21:20Z,2020-02-15T06:59:48Z +1012,37,1,923,2.99,2005-05-30T11:58:50Z,2020-02-15T06:59:48Z +1013,37,1,1583,4.99,2005-06-16T04:44:23Z,2020-02-15T06:59:48Z +1014,37,2,1812,1.99,2005-06-16T21:08:46Z,2020-02-15T06:59:48Z +1015,37,2,1854,3.99,2005-06-17T00:43:57Z,2020-02-15T06:59:48Z +1016,37,2,3472,7.99,2005-07-05T22:56:33Z,2020-02-15T06:59:48Z +1017,37,1,3734,5.99,2005-07-06T11:40:27Z,2020-02-15T06:59:48Z +1018,37,1,5425,5.99,2005-07-09T21:02:26Z,2020-02-15T06:59:48Z +1019,37,2,7939,0.99,2005-07-28T12:45:47Z,2020-02-15T06:59:48Z +1020,37,1,8419,9.99,2005-07-29T06:54:48Z,2020-02-15T06:59:48Z +1021,37,1,9567,5.99,2005-07-31T02:36:11Z,2020-02-15T06:59:48Z +1022,37,1,10538,2.99,2005-08-01T12:22:41Z,2020-02-15T06:59:48Z +1023,37,1,11176,3.99,2005-08-02T10:39:43Z,2020-02-15T06:59:48Z +1024,37,1,13046,7.99,2005-08-19T09:21:10Z,2020-02-15T06:59:48Z +1025,37,2,13147,4.99,2005-08-19T12:55:09Z,2020-02-15T06:59:48Z +1026,37,2,13444,0.99,2005-08-20T00:00:24Z,2020-02-15T06:59:48Z +1027,37,2,13493,3.99,2005-08-20T01:33:36Z,2020-02-15T06:59:48Z +1028,37,2,14025,8.99,2005-08-20T21:19:36Z,2020-02-15T06:59:48Z +1029,37,1,14084,0.99,2005-08-20T23:42:46Z,2020-02-15T06:59:48Z +1030,37,2,14532,2.99,2005-08-21T15:15:03Z,2020-02-15T06:59:48Z +1031,37,1,15028,3.99,2005-08-22T09:03:44Z,2020-02-15T06:59:48Z +1032,37,1,15904,0.99,2005-08-23T17:32:19Z,2020-02-15T06:59:48Z +1033,37,2,16035,0.99,2005-08-23T22:08:04Z,2020-02-15T06:59:48Z +1034,38,2,1250,2.99,2005-06-15T05:55:40Z,2020-02-15T06:59:48Z +1035,38,1,2550,1.99,2005-06-19T02:49:55Z,2020-02-15T06:59:48Z +1036,38,2,2605,1.99,2005-06-19T06:48:01Z,2020-02-15T06:59:48Z +1037,38,2,3003,4.99,2005-06-20T10:00:51Z,2020-02-15T06:59:48Z +1038,38,2,3392,3.99,2005-06-21T15:12:44Z,2020-02-15T06:59:48Z +1039,38,1,4202,5.99,2005-07-07T11:23:48Z,2020-02-15T06:59:48Z +1040,38,2,4228,1.99,2005-07-07T12:42:02Z,2020-02-15T06:59:48Z +1041,38,1,4300,4.99,2005-07-07T16:36:16Z,2020-02-15T06:59:48Z +1042,38,2,4644,4.99,2005-07-08T09:14:29Z,2020-02-15T06:59:48Z +1043,38,1,5273,2.99,2005-07-09T14:31:24Z,2020-02-15T06:59:48Z +1044,38,2,5460,2.99,2005-07-09T22:46:14Z,2020-02-15T06:59:48Z +1045,38,1,5822,2.99,2005-07-10T16:10:39Z,2020-02-15T06:59:48Z +1046,38,1,6864,5.99,2005-07-12T19:59:25Z,2020-02-15T06:59:48Z +1047,38,1,6961,0.99,2005-07-27T00:10:49Z,2020-02-15T06:59:48Z +1048,38,2,7158,4.99,2005-07-27T07:23:58Z,2020-02-15T06:59:48Z +1049,38,2,7163,5.99,2005-07-27T07:36:11Z,2020-02-15T06:59:48Z +1050,38,2,7321,5.99,2005-07-27T13:33:38Z,2020-02-15T06:59:48Z +1051,38,1,7795,0.99,2005-07-28T07:28:16Z,2020-02-15T06:59:48Z +1052,38,2,8924,3.99,2005-07-30T02:08:58Z,2020-02-15T06:59:48Z +1053,38,2,9216,0.99,2005-07-30T13:11:19Z,2020-02-15T06:59:48Z +1054,38,1,9284,0.99,2005-07-30T15:25:19Z,2020-02-15T06:59:48Z +1055,38,1,9621,4.99,2005-07-31T04:21:08Z,2020-02-15T06:59:48Z +1056,38,2,10111,2.99,2005-07-31T21:08:33Z,2020-02-15T06:59:48Z +1057,38,2,10524,6.99,2005-08-01T11:53:12Z,2020-02-15T06:59:48Z +1058,38,2,11049,3.99,2005-08-02T06:15:40Z,2020-02-15T06:59:48Z +1059,38,1,11344,2.99,2005-08-02T17:13:26Z,2020-02-15T06:59:48Z +1060,38,1,11817,4.99,2005-08-17T12:20:01Z,2020-02-15T06:59:48Z +1061,38,2,12092,0.99,2005-08-17T22:28:15Z,2020-02-15T06:59:48Z +1062,38,2,12187,1.99,2005-08-18T01:45:50Z,2020-02-15T06:59:48Z +1063,38,1,14554,4.99,2005-08-21T16:03:01Z,2020-02-15T06:59:48Z +1064,38,2,14632,2.99,2005-08-21T18:48:06Z,2020-02-15T06:59:48Z +1065,38,1,14787,6.99,2005-08-22T00:25:59Z,2020-02-15T06:59:48Z +1066,38,1,15668,2.99,2005-08-23T09:02:04Z,2020-02-15T06:59:48Z +1067,38,1,15738,5.99,2005-08-23T11:55:50Z,2020-02-15T06:59:48Z +1068,39,1,1625,5.99,2005-06-16T07:49:08Z,2020-02-15T06:59:48Z +1069,39,1,1905,4.99,2005-06-17T04:51:43Z,2020-02-15T06:59:48Z +1070,39,2,2135,0.99,2005-06-17T21:14:02Z,2020-02-15T06:59:48Z +1071,39,2,2439,4.99,2005-06-18T18:35:04Z,2020-02-15T06:59:48Z +1072,39,1,2631,4.99,2005-06-19T08:49:53Z,2020-02-15T06:59:48Z +1073,39,1,2876,4.99,2005-06-20T01:06:34Z,2020-02-15T06:59:48Z +1074,39,1,4419,5.99,2005-07-07T22:06:24Z,2020-02-15T06:59:48Z +1075,39,2,4695,8.99,2005-07-08T11:07:59Z,2020-02-15T06:59:48Z +1076,39,2,4712,6.99,2005-07-08T12:10:50Z,2020-02-15T06:59:48Z +1077,39,2,4727,7.99,2005-07-08T12:54:15Z,2020-02-15T06:59:48Z +1078,39,1,5451,4.99,2005-07-09T22:22:10Z,2020-02-15T06:59:48Z +1079,39,2,5515,2.99,2005-07-10T01:12:44Z,2020-02-15T06:59:48Z +1080,39,1,6045,2.99,2005-07-11T03:21:05Z,2020-02-15T06:59:48Z +1081,39,2,8307,6.99,2005-07-29T03:18:34Z,2020-02-15T06:59:48Z +1082,39,2,8366,1.99,2005-07-29T05:11:14Z,2020-02-15T06:59:48Z +1083,39,2,8723,7.99,2005-07-29T18:03:47Z,2020-02-15T06:59:48Z +1084,39,1,8805,2.99,2005-07-29T21:29:58Z,2020-02-15T06:59:48Z +1085,39,1,9431,1.99,2005-07-30T21:24:22Z,2020-02-15T06:59:48Z +1086,39,1,9656,4.99,2005-07-31T06:00:21Z,2020-02-15T06:59:48Z +1087,39,2,10052,4.99,2005-07-31T19:15:13Z,2020-02-15T06:59:48Z +1088,39,1,10126,0.99,2005-07-31T21:36:07Z,2020-02-15T06:59:48Z +1089,39,1,10251,4.99,2005-08-01T02:39:12Z,2020-02-15T06:59:48Z +1090,39,2,10269,4.99,2005-08-01T03:09:26Z,2020-02-15T06:59:48Z +1091,39,2,10630,0.99,2005-08-01T15:34:46Z,2020-02-15T06:59:48Z +1092,39,1,10639,9.99,2005-08-01T15:44:43Z,2020-02-15T06:59:48Z +1093,39,2,12268,0.99,2005-08-18T04:26:54Z,2020-02-15T06:59:48Z +1094,39,2,12459,4.99,2005-08-18T11:25:11Z,2020-02-15T06:59:48Z +1095,39,2,13101,7.99,2005-08-19T11:01:54Z,2020-02-15T06:59:48Z +1096,39,2,15124,5.99,2005-08-22T12:51:38Z,2020-02-15T06:59:48Z +1097,40,1,128,4.99,2005-05-25T21:19:53Z,2020-02-15T06:59:48Z +1098,40,2,2470,7.99,2005-06-18T20:28:31Z,2020-02-15T06:59:48Z +1099,40,2,2896,2.99,2005-06-20T02:33:42Z,2020-02-15T06:59:48Z +1100,40,1,2993,4.99,2005-06-20T09:12:12Z,2020-02-15T06:59:48Z +1101,40,1,3428,0.99,2005-06-21T18:39:34Z,2020-02-15T06:59:48Z +1102,40,2,5001,1.99,2005-07-09T01:17:04Z,2020-02-15T06:59:48Z +1103,40,2,5777,2.99,2005-07-10T13:38:41Z,2020-02-15T06:59:48Z +1104,40,1,5869,5.99,2005-07-10T18:40:09Z,2020-02-15T06:59:48Z +1105,40,1,6502,0.99,2005-07-12T03:15:45Z,2020-02-15T06:59:48Z +1106,40,2,7684,0.99,2005-07-28T03:11:54Z,2020-02-15T06:59:48Z +1107,40,2,8031,0.99,2005-07-28T16:15:49Z,2020-02-15T06:59:48Z +1108,40,2,8170,3.99,2005-07-28T21:32:29Z,2020-02-15T06:59:48Z +1109,40,1,9050,8.99,2005-07-30T06:59:55Z,2020-02-15T06:59:48Z +1110,40,2,9700,4.99,2005-07-31T07:29:59Z,2020-02-15T06:59:48Z +1111,40,2,9961,6.99,2005-07-31T16:07:50Z,2020-02-15T06:59:48Z +1112,40,1,9975,1.99,2005-07-31T16:53:43Z,2020-02-15T06:59:48Z +1113,40,1,10442,2.99,2005-08-01T08:58:08Z,2020-02-15T06:59:48Z +1114,40,2,11919,0.99,2005-08-17T16:08:49Z,2020-02-15T06:59:48Z +1115,40,2,11948,3.99,2005-08-17T17:11:05Z,2020-02-15T06:59:48Z +1116,40,2,12396,9.99,2005-08-18T09:11:23Z,2020-02-15T06:59:48Z +1117,40,2,12877,2.99,2005-08-19T03:16:58Z,2020-02-15T06:59:48Z +1118,40,1,13149,6.99,2005-08-19T13:07:12Z,2020-02-15T06:59:48Z +1119,40,1,13376,0.99,2005-08-19T21:31:45Z,2020-02-15T06:59:48Z +1120,40,1,13840,5.99,2005-08-20T14:23:20Z,2020-02-15T06:59:48Z +1121,40,1,13951,2.99,2005-08-20T17:58:11Z,2020-02-15T06:59:48Z +1122,40,1,14260,6.99,2005-08-21T06:01:08Z,2020-02-15T06:59:48Z +1123,40,1,15193,2.99,2005-08-22T16:06:49Z,2020-02-15T06:59:48Z +1124,41,1,2563,4.99,2005-06-19T03:24:17Z,2020-02-15T06:59:48Z +1125,41,2,3246,7.99,2005-06-21T03:10:01Z,2020-02-15T06:59:48Z +1126,41,2,3827,2.99,2005-07-06T15:52:03Z,2020-02-15T06:59:48Z +1127,41,2,4294,9.99,2005-07-07T15:56:23Z,2020-02-15T06:59:48Z +1128,41,1,4543,4.99,2005-07-08T04:06:55Z,2020-02-15T06:59:48Z +1129,41,1,4575,2.99,2005-07-08T05:49:14Z,2020-02-15T06:59:48Z +1130,41,1,6976,4.99,2005-07-27T00:40:01Z,2020-02-15T06:59:48Z +1131,41,2,7153,4.99,2005-07-27T07:15:38Z,2020-02-15T06:59:48Z +1132,41,1,7517,1.99,2005-07-27T20:57:07Z,2020-02-15T06:59:48Z +1133,41,2,8008,6.99,2005-07-28T15:25:55Z,2020-02-15T06:59:48Z +1134,41,1,8098,0.99,2005-07-28T18:34:20Z,2020-02-15T06:59:48Z +1135,41,1,8134,6.99,2005-07-28T20:01:23Z,2020-02-15T06:59:48Z +1136,41,2,8225,2.99,2005-07-28T23:59:29Z,2020-02-15T06:59:48Z +1137,41,1,8712,2.99,2005-07-29T17:30:06Z,2020-02-15T06:59:48Z +1138,41,2,9313,5.99,2005-07-30T16:59:43Z,2020-02-15T06:59:48Z +1139,41,1,10064,2.99,2005-07-31T19:27:02Z,2020-02-15T06:59:48Z +1140,41,1,10170,7.99,2005-07-31T23:27:31Z,2020-02-15T06:59:48Z +1141,41,2,10495,4.99,2005-08-01T10:45:51Z,2020-02-15T06:59:48Z +1142,41,1,10853,5.99,2005-08-02T00:00:54Z,2020-02-15T06:59:48Z +1143,41,2,12147,2.99,2005-08-18T00:10:20Z,2020-02-15T06:59:48Z +1144,41,2,12173,3.99,2005-08-18T01:08:34Z,2020-02-15T06:59:48Z +1145,41,2,12821,0.99,2005-08-19T01:07:02Z,2020-02-15T06:59:48Z +1146,41,2,14539,7.99,2005-08-21T15:29:47Z,2020-02-15T06:59:48Z +1147,41,2,15860,4.99,2005-08-23T16:08:40Z,2020-02-15T06:59:48Z +1148,41,1,15875,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1149,42,1,635,5.99,2005-05-28T17:46:57Z,2020-02-15T06:59:48Z +1150,42,2,1534,0.99,2005-06-16T00:49:32Z,2020-02-15T06:59:48Z +1151,42,2,2056,2.99,2005-06-17T15:27:33Z,2020-02-15T06:59:48Z +1152,42,1,2170,3.99,2005-06-17T23:57:34Z,2020-02-15T06:59:48Z +1153,42,1,2302,4.99,2005-06-18T08:27:33Z,2020-02-15T06:59:48Z +1154,42,2,4391,2.99,2005-07-07T21:09:38Z,2020-02-15T06:59:48Z +1155,42,2,5199,4.99,2005-07-09T10:50:56Z,2020-02-15T06:59:48Z +1156,42,2,5517,5.99,2005-07-10T01:15:00Z,2020-02-15T06:59:48Z +1157,42,2,5652,3.99,2005-07-10T07:18:58Z,2020-02-15T06:59:48Z +1158,42,1,6179,2.99,2005-07-11T10:59:59Z,2020-02-15T06:59:48Z +1159,42,1,6799,2.99,2005-07-12T16:52:13Z,2020-02-15T06:59:48Z +1160,42,1,6925,0.99,2005-07-26T22:52:32Z,2020-02-15T06:59:48Z +1161,42,1,7405,3.99,2005-07-27T16:25:11Z,2020-02-15T06:59:48Z +1162,42,1,8049,0.99,2005-07-28T16:51:58Z,2020-02-15T06:59:48Z +1163,42,1,8095,6.99,2005-07-28T18:32:40Z,2020-02-15T06:59:48Z +1164,42,1,8166,2.99,2005-07-28T21:23:33Z,2020-02-15T06:59:48Z +1165,42,1,8499,3.99,2005-07-29T09:10:41Z,2020-02-15T06:59:48Z +1166,42,2,8785,2.99,2005-07-29T20:36:26Z,2020-02-15T06:59:48Z +1167,42,2,8852,3.99,2005-07-29T23:30:03Z,2020-02-15T06:59:48Z +1168,42,2,8915,3.99,2005-07-30T01:42:09Z,2020-02-15T06:59:48Z +1169,42,2,10060,6.99,2005-07-31T19:23:00Z,2020-02-15T06:59:48Z +1170,42,2,10345,2.99,2005-08-01T05:18:56Z,2020-02-15T06:59:48Z +1171,42,2,10845,2.99,2005-08-01T23:47:03Z,2020-02-15T06:59:48Z +1172,42,1,10935,5.99,2005-08-02T02:54:53Z,2020-02-15T06:59:48Z +1173,42,1,12478,4.99,2005-08-18T12:25:16Z,2020-02-15T06:59:48Z +1174,42,2,12499,2.99,2005-08-18T13:05:37Z,2020-02-15T06:59:48Z +1175,42,1,14461,7.99,2005-08-21T12:50:33Z,2020-02-15T06:59:48Z +1176,42,1,15442,2.99,2005-08-23T00:42:49Z,2020-02-15T06:59:48Z +1177,42,1,13351,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1178,42,1,15407,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1179,43,2,123,4.99,2005-05-25T20:26:42Z,2020-02-15T06:59:48Z +1180,43,1,652,4.99,2005-05-28T20:08:47Z,2020-02-15T06:59:48Z +1181,43,2,1544,4.99,2005-06-16T01:28:22Z,2020-02-15T06:59:48Z +1182,43,2,3683,1.99,2005-07-06T09:25:56Z,2020-02-15T06:59:48Z +1183,43,1,4498,2.99,2005-07-08T02:07:50Z,2020-02-15T06:59:48Z +1184,43,1,5162,4.99,2005-07-09T09:00:11Z,2020-02-15T06:59:48Z +1185,43,1,5401,4.99,2005-07-09T19:59:10Z,2020-02-15T06:59:48Z +1186,43,1,5831,2.99,2005-07-10T16:34:02Z,2020-02-15T06:59:48Z +1187,43,2,5941,4.99,2005-07-10T22:40:47Z,2020-02-15T06:59:48Z +1188,43,1,6474,3.99,2005-07-12T01:36:46Z,2020-02-15T06:59:48Z +1189,43,2,6680,0.99,2005-07-12T12:01:56Z,2020-02-15T06:59:48Z +1190,43,1,7348,4.99,2005-07-27T14:32:32Z,2020-02-15T06:59:48Z +1191,43,2,7868,4.99,2005-07-28T10:08:55Z,2020-02-15T06:59:48Z +1192,43,2,8376,4.99,2005-07-29T05:25:32Z,2020-02-15T06:59:48Z +1193,43,1,9204,4.99,2005-07-30T12:43:58Z,2020-02-15T06:59:48Z +1194,43,1,11753,4.99,2005-08-17T09:11:52Z,2020-02-15T06:59:48Z +1195,43,1,14244,2.99,2005-08-21T05:29:55Z,2020-02-15T06:59:48Z +1196,43,1,14649,4.99,2005-08-21T19:19:21Z,2020-02-15T06:59:48Z +1197,43,2,14837,4.99,2005-08-22T01:54:52Z,2020-02-15T06:59:48Z +1198,43,2,15155,4.99,2005-08-22T14:27:46Z,2020-02-15T06:59:48Z +1199,43,2,15800,6.99,2005-08-23T14:23:44Z,2020-02-15T06:59:48Z +1200,43,2,15945,2.99,2005-08-23T18:51:41Z,2020-02-15T06:59:48Z +1201,43,2,15644,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1202,43,1,15745,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1203,44,1,29,0.99,2005-05-25T03:47:12Z,2020-02-15T06:59:48Z +1204,44,1,99,4.99,2005-05-25T16:50:20Z,2020-02-15T06:59:48Z +1205,44,1,407,2.99,2005-05-27T13:57:38Z,2020-02-15T06:59:48Z +1206,44,2,721,0.99,2005-05-29T05:28:47Z,2020-02-15T06:59:48Z +1207,44,1,904,2.99,2005-05-30T10:19:42Z,2020-02-15T06:59:48Z +1208,44,1,1497,3.99,2005-06-15T21:56:39Z,2020-02-15T06:59:48Z +1209,44,1,2369,2.99,2005-06-18T14:25:29Z,2020-02-15T06:59:48Z +1210,44,1,2809,3.99,2005-06-19T19:40:27Z,2020-02-15T06:59:48Z +1211,44,2,2866,4.99,2005-06-20T00:01:36Z,2020-02-15T06:59:48Z +1212,44,2,4390,0.99,2005-07-07T20:59:06Z,2020-02-15T06:59:48Z +1213,44,2,4723,9.99,2005-07-08T12:44:59Z,2020-02-15T06:59:48Z +1214,44,1,5551,3.99,2005-07-10T03:01:09Z,2020-02-15T06:59:48Z +1215,44,1,5787,8.99,2005-07-10T14:08:49Z,2020-02-15T06:59:48Z +1216,44,2,5849,6.99,2005-07-10T17:32:33Z,2020-02-15T06:59:48Z +1217,44,2,5909,4.99,2005-07-10T20:46:13Z,2020-02-15T06:59:48Z +1218,44,1,7514,0.99,2005-07-27T20:51:49Z,2020-02-15T06:59:48Z +1219,44,2,7526,6.99,2005-07-27T21:13:47Z,2020-02-15T06:59:48Z +1220,44,2,8775,4.99,2005-07-29T20:05:38Z,2020-02-15T06:59:48Z +1221,44,1,8866,4.99,2005-07-29T23:58:19Z,2020-02-15T06:59:48Z +1222,44,1,11364,2.99,2005-08-02T17:53:36Z,2020-02-15T06:59:48Z +1223,44,2,12345,3.99,2005-08-18T07:16:58Z,2020-02-15T06:59:48Z +1224,44,1,12504,4.99,2005-08-18T13:17:07Z,2020-02-15T06:59:48Z +1225,44,1,12790,6.99,2005-08-19T00:16:54Z,2020-02-15T06:59:48Z +1226,44,2,12982,4.99,2005-08-19T07:06:34Z,2020-02-15T06:59:48Z +1227,44,2,15054,2.99,2005-08-22T10:14:33Z,2020-02-15T06:59:48Z +1228,44,2,13428,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1229,45,2,277,2.99,2005-05-26T17:32:11Z,2020-02-15T06:59:48Z +1230,45,1,1806,4.99,2005-06-16T20:41:57Z,2020-02-15T06:59:48Z +1231,45,2,1979,2.99,2005-06-17T09:45:30Z,2020-02-15T06:59:48Z +1232,45,2,2722,4.99,2005-06-19T14:55:17Z,2020-02-15T06:59:48Z +1233,45,1,3391,3.99,2005-06-21T15:11:02Z,2020-02-15T06:59:48Z +1234,45,2,3444,0.99,2005-06-21T20:39:39Z,2020-02-15T06:59:48Z +1235,45,1,4843,0.99,2005-07-08T18:27:28Z,2020-02-15T06:59:48Z +1236,45,1,5181,6.99,2005-07-09T10:07:27Z,2020-02-15T06:59:48Z +1237,45,1,5405,7.99,2005-07-09T20:11:49Z,2020-02-15T06:59:48Z +1238,45,1,5637,0.99,2005-07-10T06:31:37Z,2020-02-15T06:59:48Z +1239,45,2,6001,0.99,2005-07-11T01:24:44Z,2020-02-15T06:59:48Z +1240,45,2,6002,2.99,2005-07-11T01:27:49Z,2020-02-15T06:59:48Z +1241,45,1,6966,9.99,2005-07-27T00:15:35Z,2020-02-15T06:59:48Z +1242,45,1,7436,2.99,2005-07-27T17:39:12Z,2020-02-15T06:59:48Z +1243,45,1,7961,3.99,2005-07-28T13:47:21Z,2020-02-15T06:59:48Z +1244,45,1,10507,2.99,2005-08-01T11:22:20Z,2020-02-15T06:59:48Z +1245,45,2,10878,6.99,2005-08-02T00:33:12Z,2020-02-15T06:59:48Z +1246,45,1,11004,8.99,2005-08-02T05:04:18Z,2020-02-15T06:59:48Z +1247,45,1,11029,4.99,2005-08-02T05:51:10Z,2020-02-15T06:59:48Z +1248,45,2,11483,2.99,2005-08-02T22:28:22Z,2020-02-15T06:59:48Z +1249,45,2,11488,3.99,2005-08-02T22:35:15Z,2020-02-15T06:59:48Z +1250,45,1,11725,2.99,2005-08-17T08:09:00Z,2020-02-15T06:59:48Z +1251,45,1,13340,3.99,2005-08-19T20:18:39Z,2020-02-15T06:59:48Z +1252,45,2,13394,4.99,2005-08-19T22:05:19Z,2020-02-15T06:59:48Z +1253,45,1,14576,6.99,2005-08-21T16:52:03Z,2020-02-15T06:59:48Z +1254,45,1,15812,10.99,2005-08-23T14:47:26Z,2020-02-15T06:59:48Z +1255,45,2,16037,7.99,2005-08-23T22:13:04Z,2020-02-15T06:59:48Z +1256,46,2,401,2.99,2005-05-27T12:57:55Z,2020-02-15T06:59:48Z +1257,46,2,432,4.99,2005-05-27T16:40:29Z,2020-02-15T06:59:48Z +1258,46,1,938,2.99,2005-05-30T14:47:31Z,2020-02-15T06:59:48Z +1259,46,1,1166,4.99,2005-06-14T23:17:03Z,2020-02-15T06:59:48Z +1260,46,2,1214,4.99,2005-06-15T03:18:40Z,2020-02-15T06:59:48Z +1261,46,2,2144,0.99,2005-06-17T22:05:40Z,2020-02-15T06:59:48Z +1262,46,1,2203,2.99,2005-06-18T02:10:42Z,2020-02-15T06:59:48Z +1263,46,2,2965,8.99,2005-06-20T07:33:38Z,2020-02-15T06:59:48Z +1264,46,2,2975,4.99,2005-06-20T08:06:18Z,2020-02-15T06:59:48Z +1265,46,2,3439,4.99,2005-06-21T19:36:15Z,2020-02-15T06:59:48Z +1266,46,2,3855,2.99,2005-07-06T17:03:48Z,2020-02-15T06:59:48Z +1267,46,1,3916,4.99,2005-07-06T20:18:50Z,2020-02-15T06:59:48Z +1268,46,2,5698,4.99,2005-07-10T09:47:00Z,2020-02-15T06:59:48Z +1269,46,1,7336,0.99,2005-07-27T14:11:45Z,2020-02-15T06:59:48Z +1270,46,2,8152,3.99,2005-07-28T20:53:05Z,2020-02-15T06:59:48Z +1271,46,2,9045,8.99,2005-07-30T06:36:57Z,2020-02-15T06:59:48Z +1272,46,2,9806,2.99,2005-07-31T11:13:49Z,2020-02-15T06:59:48Z +1273,46,1,10088,2.99,2005-07-31T20:16:21Z,2020-02-15T06:59:48Z +1274,46,2,10428,4.99,2005-08-01T08:30:11Z,2020-02-15T06:59:48Z +1275,46,1,10803,4.99,2005-08-01T22:22:07Z,2020-02-15T06:59:48Z +1276,46,1,10827,5.99,2005-08-01T23:13:00Z,2020-02-15T06:59:48Z +1277,46,1,11721,0.99,2005-08-17T07:49:17Z,2020-02-15T06:59:48Z +1278,46,2,12095,4.99,2005-08-17T22:32:37Z,2020-02-15T06:59:48Z +1279,46,2,12238,2.99,2005-08-18T03:25:08Z,2020-02-15T06:59:48Z +1280,46,2,12280,4.99,2005-08-18T04:49:27Z,2020-02-15T06:59:48Z +1281,46,1,12298,2.99,2005-08-18T05:30:31Z,2020-02-15T06:59:48Z +1282,46,2,12455,4.99,2005-08-18T11:19:47Z,2020-02-15T06:59:48Z +1283,46,1,13226,0.99,2005-08-19T16:05:36Z,2020-02-15T06:59:48Z +1284,46,2,14144,4.99,2005-08-21T02:10:57Z,2020-02-15T06:59:48Z +1285,46,2,14528,6.99,2005-08-21T15:08:05Z,2020-02-15T06:59:48Z +1286,46,1,14940,4.99,2005-08-22T05:54:03Z,2020-02-15T06:59:48Z +1287,46,1,15438,2.99,2005-08-23T00:31:57Z,2020-02-15T06:59:48Z +1288,46,1,15708,0.99,2005-08-23T10:35:51Z,2020-02-15T06:59:48Z +1289,46,1,15758,5.99,2005-08-23T12:47:26Z,2020-02-15T06:59:48Z +1290,47,2,175,3.99,2005-05-26T03:46:26Z,2020-02-15T06:59:48Z +1291,47,2,207,4.99,2005-05-26T08:04:38Z,2020-02-15T06:59:48Z +1292,47,1,300,6.99,2005-05-26T20:57:00Z,2020-02-15T06:59:48Z +1293,47,1,1882,4.99,2005-06-17T03:17:21Z,2020-02-15T06:59:48Z +1294,47,1,2307,6.99,2005-06-18T08:34:59Z,2020-02-15T06:59:48Z +1295,47,2,3320,5.99,2005-06-21T08:29:41Z,2020-02-15T06:59:48Z +1296,47,1,3631,4.99,2005-07-06T06:36:53Z,2020-02-15T06:59:48Z +1297,47,2,4064,5.99,2005-07-07T04:29:20Z,2020-02-15T06:59:48Z +1298,47,1,5174,0.99,2005-07-09T09:31:59Z,2020-02-15T06:59:48Z +1299,47,2,6153,9.99,2005-07-11T09:31:04Z,2020-02-15T06:59:48Z +1300,47,2,6164,0.99,2005-07-11T10:16:23Z,2020-02-15T06:59:48Z +1301,47,1,6337,3.99,2005-07-11T19:30:47Z,2020-02-15T06:59:48Z +1302,47,2,8159,4.99,2005-07-28T21:09:28Z,2020-02-15T06:59:48Z +1303,47,2,8402,6.99,2005-07-29T06:25:45Z,2020-02-15T06:59:48Z +1304,47,1,8863,3.99,2005-07-29T23:52:01Z,2020-02-15T06:59:48Z +1305,47,2,9274,4.99,2005-07-30T15:07:04Z,2020-02-15T06:59:48Z +1306,47,1,11126,0.99,2005-08-02T08:59:04Z,2020-02-15T06:59:48Z +1307,47,2,11477,5.99,2005-08-02T22:09:01Z,2020-02-15T06:59:48Z +1308,47,1,12215,7.99,2005-08-18T02:35:39Z,2020-02-15T06:59:48Z +1309,47,2,12274,7.99,2005-08-18T04:41:47Z,2020-02-15T06:59:48Z +1310,47,1,14397,0.99,2005-08-21T10:25:56Z,2020-02-15T06:59:48Z +1311,47,2,15846,2.99,2005-08-23T15:39:18Z,2020-02-15T06:59:48Z +1312,48,2,72,0.99,2005-05-25T10:52:13Z,2020-02-15T06:59:48Z +1313,48,1,297,2.99,2005-05-26T20:48:48Z,2020-02-15T06:59:48Z +1314,48,1,390,4.99,2005-05-27T11:02:26Z,2020-02-15T06:59:48Z +1315,48,2,1689,9.99,2005-06-16T12:18:41Z,2020-02-15T06:59:48Z +1316,48,2,2822,0.99,2005-06-19T20:29:24Z,2020-02-15T06:59:48Z +1317,48,2,3758,4.99,2005-07-06T12:43:11Z,2020-02-15T06:59:48Z +1318,48,1,4367,2.99,2005-07-07T19:52:01Z,2020-02-15T06:59:48Z +1319,48,2,5148,6.99,2005-07-09T08:22:46Z,2020-02-15T06:59:48Z +1320,48,2,6498,3.99,2005-07-12T03:05:38Z,2020-02-15T06:59:48Z +1321,48,1,7920,2.99,2005-07-28T12:01:19Z,2020-02-15T06:59:48Z +1322,48,1,8716,6.99,2005-07-29T17:39:09Z,2020-02-15T06:59:48Z +1323,48,1,9402,7.99,2005-07-30T20:18:27Z,2020-02-15T06:59:48Z +1324,48,2,9742,7.99,2005-07-31T09:10:20Z,2020-02-15T06:59:48Z +1325,48,2,10276,2.99,2005-08-01T03:22:23Z,2020-02-15T06:59:48Z +1326,48,2,14450,1.99,2005-08-21T12:21:25Z,2020-02-15T06:59:48Z +1327,48,2,14536,2.99,2005-08-21T15:22:50Z,2020-02-15T06:59:48Z +1328,48,1,15228,3.99,2005-08-22T17:27:23Z,2020-02-15T06:59:48Z +1329,49,2,96,1.99,2005-05-25T16:32:19Z,2020-02-15T06:59:48Z +1330,49,1,239,3.99,2005-05-26T12:30:26Z,2020-02-15T06:59:48Z +1331,49,2,846,2.99,2005-05-30T01:17:45Z,2020-02-15T06:59:48Z +1332,49,2,1010,4.99,2005-05-31T01:57:32Z,2020-02-15T06:59:48Z +1333,49,1,1164,0.99,2005-06-14T23:16:26Z,2020-02-15T06:59:48Z +1334,49,2,1237,9.99,2005-06-15T04:44:10Z,2020-02-15T06:59:48Z +1335,49,2,1688,0.99,2005-06-16T12:11:20Z,2020-02-15T06:59:48Z +1336,49,2,1777,6.99,2005-06-16T18:52:12Z,2020-02-15T06:59:48Z +1337,49,2,3235,4.99,2005-06-21T02:46:17Z,2020-02-15T06:59:48Z +1338,49,2,3575,4.99,2005-07-06T03:36:19Z,2020-02-15T06:59:48Z +1339,49,2,3615,0.99,2005-07-06T05:47:47Z,2020-02-15T06:59:48Z +1340,49,1,5491,2.99,2005-07-10T00:09:45Z,2020-02-15T06:59:48Z +1341,49,1,6214,4.99,2005-07-11T12:49:48Z,2020-02-15T06:59:48Z +1342,49,1,6279,6.99,2005-07-11T16:26:07Z,2020-02-15T06:59:48Z +1343,49,1,6521,7.99,2005-07-12T04:06:11Z,2020-02-15T06:59:48Z +1344,49,2,6759,4.99,2005-07-12T15:14:48Z,2020-02-15T06:59:48Z +1345,49,2,7209,4.99,2005-07-27T09:16:53Z,2020-02-15T06:59:48Z +1346,49,2,7742,8.99,2005-07-28T05:33:16Z,2020-02-15T06:59:48Z +1347,49,2,8553,10.99,2005-07-29T11:15:36Z,2020-02-15T06:59:48Z +1348,49,2,9006,0.99,2005-07-30T05:06:32Z,2020-02-15T06:59:48Z +1349,49,1,9851,4.99,2005-07-31T12:50:24Z,2020-02-15T06:59:48Z +1350,49,1,10144,4.99,2005-07-31T22:13:52Z,2020-02-15T06:59:48Z +1351,49,1,10266,0.99,2005-08-01T03:05:59Z,2020-02-15T06:59:48Z +1352,49,1,10588,2.99,2005-08-01T14:10:21Z,2020-02-15T06:59:48Z +1353,49,1,10814,2.99,2005-08-01T22:43:12Z,2020-02-15T06:59:48Z +1354,49,2,14168,5.99,2005-08-21T03:00:03Z,2020-02-15T06:59:48Z +1355,49,1,14627,6.99,2005-08-21T18:35:54Z,2020-02-15T06:59:48Z +1356,49,1,14676,2.99,2005-08-21T20:02:18Z,2020-02-15T06:59:48Z +1357,50,1,763,4.99,2005-05-29T11:32:15Z,2020-02-15T06:59:48Z +1358,50,1,794,4.99,2005-05-29T16:44:11Z,2020-02-15T06:59:48Z +1359,50,1,905,4.99,2005-05-30T10:25:00Z,2020-02-15T06:59:48Z +1360,50,1,1029,4.99,2005-05-31T03:52:02Z,2020-02-15T06:59:48Z +1361,50,2,1136,4.99,2005-05-31T19:19:36Z,2020-02-15T06:59:48Z +1362,50,1,1223,2.99,2005-06-15T03:38:53Z,2020-02-15T06:59:48Z +1363,50,1,1785,4.99,2005-06-16T19:27:12Z,2020-02-15T06:59:48Z +1364,50,2,3000,0.99,2005-06-20T09:32:33Z,2020-02-15T06:59:48Z +1365,50,2,3169,2.99,2005-06-20T21:55:54Z,2020-02-15T06:59:48Z +1366,50,2,4149,2.99,2005-07-07T08:40:17Z,2020-02-15T06:59:48Z +1367,50,2,5290,4.99,2005-07-09T15:14:47Z,2020-02-15T06:59:48Z +1368,50,2,5641,4.99,2005-07-10T06:43:43Z,2020-02-15T06:59:48Z +1369,50,2,5681,9.99,2005-07-10T08:48:39Z,2020-02-15T06:59:48Z +1370,50,1,5928,6.99,2005-07-10T21:58:30Z,2020-02-15T06:59:48Z +1371,50,2,6634,0.99,2005-07-12T09:37:18Z,2020-02-15T06:59:48Z +1372,50,1,6667,8.99,2005-07-12T11:36:22Z,2020-02-15T06:59:48Z +1373,50,1,7383,4.99,2005-07-27T15:46:53Z,2020-02-15T06:59:48Z +1374,50,1,8089,0.99,2005-07-28T18:26:47Z,2020-02-15T06:59:48Z +1375,50,1,8261,0.99,2005-07-29T01:11:05Z,2020-02-15T06:59:48Z +1376,50,1,8619,5.99,2005-07-29T13:50:08Z,2020-02-15T06:59:48Z +1377,50,2,9179,0.99,2005-07-30T12:02:41Z,2020-02-15T06:59:48Z +1378,50,1,9615,4.99,2005-07-31T03:59:56Z,2020-02-15T06:59:48Z +1379,50,2,9691,10.99,2005-07-31T07:09:55Z,2020-02-15T06:59:48Z +1380,50,2,10046,2.99,2005-07-31T19:07:11Z,2020-02-15T06:59:48Z +1381,50,2,10165,0.99,2005-07-31T23:21:23Z,2020-02-15T06:59:48Z +1382,50,2,10180,6.99,2005-07-31T23:57:43Z,2020-02-15T06:59:48Z +1383,50,2,10261,4.99,2005-08-01T02:58:27Z,2020-02-15T06:59:48Z +1384,50,2,10485,7.99,2005-08-01T10:20:34Z,2020-02-15T06:59:48Z +1385,50,2,11053,3.99,2005-08-02T06:27:13Z,2020-02-15T06:59:48Z +1386,50,1,12766,6.99,2005-08-18T23:25:20Z,2020-02-15T06:59:48Z +1387,50,2,13136,7.99,2005-08-19T12:24:23Z,2020-02-15T06:59:48Z +1388,50,1,14054,4.99,2005-08-20T22:17:01Z,2020-02-15T06:59:48Z +1389,50,2,15138,2.99,2005-08-22T13:36:30Z,2020-02-15T06:59:48Z +1390,50,2,15388,6.99,2005-08-22T22:49:23Z,2020-02-15T06:59:48Z +1391,50,1,16015,4.99,2005-08-23T21:25:03Z,2020-02-15T06:59:48Z +1392,51,2,119,4.99,2005-05-25T19:37:02Z,2020-02-15T06:59:48Z +1393,51,1,661,4.99,2005-05-28T21:01:25Z,2020-02-15T06:59:48Z +1394,51,2,1028,4.99,2005-05-31T03:48:05Z,2020-02-15T06:59:48Z +1395,51,2,1373,1.99,2005-06-15T14:48:04Z,2020-02-15T06:59:48Z +1396,51,1,1477,0.99,2005-06-15T21:11:18Z,2020-02-15T06:59:48Z +1397,51,1,3525,9.99,2005-07-06T01:02:39Z,2020-02-15T06:59:48Z +1398,51,1,5230,2.99,2005-07-09T12:30:23Z,2020-02-15T06:59:48Z +1399,51,2,5304,5.99,2005-07-09T15:48:06Z,2020-02-15T06:59:48Z +1400,51,1,5473,7.99,2005-07-09T23:19:11Z,2020-02-15T06:59:48Z +1401,51,1,5606,4.99,2005-07-10T05:07:55Z,2020-02-15T06:59:48Z +1402,51,1,7207,5.99,2005-07-27T09:13:26Z,2020-02-15T06:59:48Z +1403,51,1,7398,6.99,2005-07-27T16:07:22Z,2020-02-15T06:59:48Z +1404,51,1,7636,5.99,2005-07-28T01:08:36Z,2020-02-15T06:59:48Z +1405,51,1,8495,4.99,2005-07-29T09:05:06Z,2020-02-15T06:59:48Z +1406,51,1,8693,0.99,2005-07-29T16:44:13Z,2020-02-15T06:59:48Z +1407,51,1,8880,0.99,2005-07-30T00:16:55Z,2020-02-15T06:59:48Z +1408,51,2,9649,0.99,2005-07-31T05:46:54Z,2020-02-15T06:59:48Z +1409,51,2,10244,4.99,2005-08-01T02:20:01Z,2020-02-15T06:59:48Z +1410,51,1,10780,2.99,2005-08-01T21:14:24Z,2020-02-15T06:59:48Z +1411,51,1,10894,0.99,2005-08-02T01:12:35Z,2020-02-15T06:59:48Z +1412,51,1,11302,2.99,2005-08-02T15:38:03Z,2020-02-15T06:59:48Z +1413,51,2,11685,4.99,2005-08-17T06:39:16Z,2020-02-15T06:59:48Z +1414,51,2,11751,6.99,2005-08-17T09:07:56Z,2020-02-15T06:59:48Z +1415,51,1,12184,0.99,2005-08-18T01:36:00Z,2020-02-15T06:59:48Z +1416,51,1,12725,4.99,2005-08-18T21:43:09Z,2020-02-15T06:59:48Z +1417,51,2,13098,2.99,2005-08-19T10:51:59Z,2020-02-15T06:59:48Z +1418,51,1,13302,2.99,2005-08-19T18:54:26Z,2020-02-15T06:59:48Z +1419,51,1,13868,0.99,2005-08-20T15:06:26Z,2020-02-15T06:59:48Z +1420,51,2,13882,2.99,2005-08-20T15:23:26Z,2020-02-15T06:59:48Z +1421,51,2,14221,6.99,2005-08-21T04:49:41Z,2020-02-15T06:59:48Z +1422,51,2,14512,4.99,2005-08-21T14:47:09Z,2020-02-15T06:59:48Z +1423,51,1,14617,4.99,2005-08-21T18:07:40Z,2020-02-15T06:59:48Z +1424,51,1,14903,4.99,2005-08-22T04:31:50Z,2020-02-15T06:59:48Z +1425,52,1,874,0.99,2005-05-30T05:36:21Z,2020-02-15T06:59:48Z +1426,52,1,1196,4.99,2005-06-15T01:38:31Z,2020-02-15T06:59:48Z +1427,52,2,2232,0.99,2005-06-18T03:54:31Z,2020-02-15T06:59:48Z +1428,52,1,2862,2.99,2005-06-19T23:47:24Z,2020-02-15T06:59:48Z +1429,52,2,3196,4.99,2005-06-21T00:02:28Z,2020-02-15T06:59:48Z +1430,52,1,3997,1.99,2005-07-06T23:46:52Z,2020-02-15T06:59:48Z +1431,52,1,5308,0.99,2005-07-09T15:58:38Z,2020-02-15T06:59:48Z +1432,52,2,5313,3.99,2005-07-09T16:04:45Z,2020-02-15T06:59:48Z +1433,52,1,5607,2.99,2005-07-10T05:08:10Z,2020-02-15T06:59:48Z +1434,52,1,6394,7.99,2005-07-11T22:29:15Z,2020-02-15T06:59:48Z +1435,52,2,7284,0.99,2005-07-27T12:12:04Z,2020-02-15T06:59:48Z +1436,52,2,7438,5.99,2005-07-27T17:40:40Z,2020-02-15T06:59:48Z +1437,52,2,7627,4.99,2005-07-28T00:56:47Z,2020-02-15T06:59:48Z +1438,52,1,8686,4.99,2005-07-29T16:17:49Z,2020-02-15T06:59:48Z +1439,52,1,9029,4.99,2005-07-30T06:03:11Z,2020-02-15T06:59:48Z +1440,52,2,9749,3.99,2005-07-31T09:18:33Z,2020-02-15T06:59:48Z +1441,52,2,9797,4.99,2005-07-31T10:53:44Z,2020-02-15T06:59:48Z +1442,52,2,10591,0.99,2005-08-01T14:12:29Z,2020-02-15T06:59:48Z +1443,52,1,10635,0.99,2005-08-01T15:37:58Z,2020-02-15T06:59:48Z +1444,52,1,11068,0.99,2005-08-02T07:08:07Z,2020-02-15T06:59:48Z +1445,52,1,11731,3.99,2005-08-17T08:24:35Z,2020-02-15T06:59:48Z +1446,52,2,12200,2.99,2005-08-18T02:12:33Z,2020-02-15T06:59:48Z +1447,52,2,12520,0.99,2005-08-18T13:42:45Z,2020-02-15T06:59:48Z +1448,52,2,13090,5.99,2005-08-19T10:39:54Z,2020-02-15T06:59:48Z +1449,52,2,14820,2.99,2005-08-22T01:18:37Z,2020-02-15T06:59:48Z +1450,52,1,14822,5.99,2005-08-22T01:21:14Z,2020-02-15T06:59:48Z +1451,52,2,14961,6.99,2005-08-22T06:35:50Z,2020-02-15T06:59:48Z +1452,52,2,15891,5.99,2005-08-23T17:00:12Z,2020-02-15T06:59:48Z +1453,52,1,12001,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1454,53,1,88,3.99,2005-05-25T14:13:54Z,2020-02-15T06:59:48Z +1455,53,1,378,2.99,2005-05-27T09:23:22Z,2020-02-15T06:59:48Z +1456,53,1,751,0.99,2005-05-29T09:55:43Z,2020-02-15T06:59:48Z +1457,53,2,783,5.99,2005-05-29T14:41:18Z,2020-02-15T06:59:48Z +1458,53,2,856,9.99,2005-05-30T02:01:21Z,2020-02-15T06:59:48Z +1459,53,1,1107,2.99,2005-05-31T15:04:05Z,2020-02-15T06:59:48Z +1460,53,1,1964,0.99,2005-06-17T09:10:09Z,2020-02-15T06:59:48Z +1461,53,1,2388,2.99,2005-06-18T15:26:30Z,2020-02-15T06:59:48Z +1462,53,1,2903,2.99,2005-06-20T02:49:01Z,2020-02-15T06:59:48Z +1463,53,2,3140,2.99,2005-06-20T19:47:12Z,2020-02-15T06:59:48Z +1464,53,2,3244,0.99,2005-06-21T03:01:10Z,2020-02-15T06:59:48Z +1465,53,2,3591,2.99,2005-07-06T04:37:10Z,2020-02-15T06:59:48Z +1466,53,2,3898,4.99,2005-07-06T19:12:37Z,2020-02-15T06:59:48Z +1467,53,2,5185,2.99,2005-07-09T10:14:39Z,2020-02-15T06:59:48Z +1468,53,2,7466,2.99,2005-07-27T18:51:17Z,2020-02-15T06:59:48Z +1469,53,1,7699,4.99,2005-07-28T03:52:21Z,2020-02-15T06:59:48Z +1470,53,1,9343,4.99,2005-07-30T18:13:13Z,2020-02-15T06:59:48Z +1471,53,1,9928,7.99,2005-07-31T15:13:57Z,2020-02-15T06:59:48Z +1472,53,1,10594,3.99,2005-08-01T14:14:59Z,2020-02-15T06:59:48Z +1473,53,1,12054,5.99,2005-08-17T20:59:56Z,2020-02-15T06:59:48Z +1474,53,1,12580,2.99,2005-08-18T15:49:08Z,2020-02-15T06:59:48Z +1475,53,1,13049,5.99,2005-08-19T09:25:40Z,2020-02-15T06:59:48Z +1476,53,2,13789,2.99,2005-08-20T12:16:38Z,2020-02-15T06:59:48Z +1477,53,1,14061,2.99,2005-08-20T22:32:11Z,2020-02-15T06:59:48Z +1478,53,2,14091,0.99,2005-08-21T00:11:17Z,2020-02-15T06:59:48Z +1479,53,2,14119,5.99,2005-08-21T01:15:59Z,2020-02-15T06:59:48Z +1480,53,1,14671,4.99,2005-08-21T19:59:30Z,2020-02-15T06:59:48Z +1481,53,2,14811,0.99,2005-08-22T01:09:04Z,2020-02-15T06:59:48Z +1482,53,2,11657,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1483,53,1,14137,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1484,54,2,198,4.99,2005-05-26T07:03:49Z,2020-02-15T06:59:48Z +1485,54,2,441,4.99,2005-05-27T18:11:05Z,2020-02-15T06:59:48Z +1486,54,2,545,3.99,2005-05-28T07:10:20Z,2020-02-15T06:59:48Z +1487,54,1,1556,4.99,2005-06-16T02:19:02Z,2020-02-15T06:59:48Z +1488,54,1,1571,2.99,2005-06-16T03:22:00Z,2020-02-15T06:59:48Z +1489,54,2,2323,6.99,2005-06-18T09:55:02Z,2020-02-15T06:59:48Z +1490,54,1,2647,4.99,2005-06-19T09:57:56Z,2020-02-15T06:59:48Z +1491,54,2,4657,4.99,2005-07-08T09:51:02Z,2020-02-15T06:59:48Z +1492,54,2,5055,1.99,2005-07-09T04:05:28Z,2020-02-15T06:59:48Z +1493,54,1,5929,2.99,2005-07-10T21:59:29Z,2020-02-15T06:59:48Z +1494,54,1,5992,2.99,2005-07-11T01:06:21Z,2020-02-15T06:59:48Z +1495,54,1,6338,7.99,2005-07-11T19:39:41Z,2020-02-15T06:59:48Z +1496,54,2,6560,2.99,2005-07-12T05:22:06Z,2020-02-15T06:59:48Z +1497,54,1,6813,0.99,2005-07-12T18:03:50Z,2020-02-15T06:59:48Z +1498,54,2,8992,4.99,2005-07-30T04:44:18Z,2020-02-15T06:59:48Z +1499,54,2,10489,5.99,2005-08-01T10:27:42Z,2020-02-15T06:59:48Z +1500,54,2,10882,5.99,2005-08-02T00:47:16Z,2020-02-15T06:59:48Z +1501,54,1,10956,4.99,2005-08-02T03:33:14Z,2020-02-15T06:59:48Z +1502,54,1,11182,4.99,2005-08-02T10:55:14Z,2020-02-15T06:59:48Z +1503,54,2,11887,2.99,2005-08-17T15:03:13Z,2020-02-15T06:59:48Z +1504,54,1,12526,2.99,2005-08-18T13:48:43Z,2020-02-15T06:59:48Z +1505,54,2,12775,5.99,2005-08-18T23:35:56Z,2020-02-15T06:59:48Z +1506,54,1,12811,4.99,2005-08-19T00:51:28Z,2020-02-15T06:59:48Z +1507,54,2,12872,0.99,2005-08-19T02:57:37Z,2020-02-15T06:59:48Z +1508,54,2,13315,2.99,2005-08-19T19:16:18Z,2020-02-15T06:59:48Z +1509,54,1,13890,0.99,2005-08-20T15:41:00Z,2020-02-15T06:59:48Z +1510,54,1,14215,4.99,2005-08-21T04:34:11Z,2020-02-15T06:59:48Z +1511,54,1,15226,10.99,2005-08-22T17:20:17Z,2020-02-15T06:59:48Z +1512,54,1,15567,4.99,2005-08-23T05:20:36Z,2020-02-15T06:59:48Z +1513,55,1,555,4.99,2005-05-28T08:31:14Z,2020-02-15T06:59:48Z +1514,55,1,1027,9.99,2005-05-31T03:46:19Z,2020-02-15T06:59:48Z +1515,55,1,1048,0.99,2005-05-31T06:49:53Z,2020-02-15T06:59:48Z +1516,55,2,1825,2.99,2005-06-16T21:53:05Z,2020-02-15T06:59:48Z +1517,55,2,2062,2.99,2005-06-17T15:56:43Z,2020-02-15T06:59:48Z +1518,55,1,2904,2.99,2005-06-20T02:54:06Z,2020-02-15T06:59:48Z +1519,55,1,2976,4.99,2005-06-20T08:09:11Z,2020-02-15T06:59:48Z +1520,55,1,3149,4.99,2005-06-20T20:34:55Z,2020-02-15T06:59:48Z +1521,55,1,4671,4.99,2005-07-08T10:15:32Z,2020-02-15T06:59:48Z +1522,55,2,6314,7.99,2005-07-11T18:32:44Z,2020-02-15T06:59:48Z +1523,55,2,7050,4.99,2005-07-27T03:33:17Z,2020-02-15T06:59:48Z +1524,55,2,8288,6.99,2005-07-29T02:04:22Z,2020-02-15T06:59:48Z +1525,55,1,9302,2.99,2005-07-30T16:34:57Z,2020-02-15T06:59:48Z +1526,55,2,9596,5.99,2005-07-31T03:28:47Z,2020-02-15T06:59:48Z +1527,55,2,9798,2.99,2005-07-31T10:55:18Z,2020-02-15T06:59:48Z +1528,55,2,11287,1.99,2005-08-02T14:49:51Z,2020-02-15T06:59:48Z +1529,55,1,12776,4.99,2005-08-18T23:37:33Z,2020-02-15T06:59:48Z +1530,55,1,12808,4.99,2005-08-19T00:40:41Z,2020-02-15T06:59:48Z +1531,55,2,12972,1.99,2005-08-19T06:43:28Z,2020-02-15T06:59:48Z +1532,55,1,13345,6.99,2005-08-19T20:25:24Z,2020-02-15T06:59:48Z +1533,55,1,14667,2.99,2005-08-21T19:51:11Z,2020-02-15T06:59:48Z +1534,55,1,15296,4.99,2005-08-22T19:37:20Z,2020-02-15T06:59:48Z +1535,56,1,130,3.99,2005-05-25T21:21:56Z,2020-02-15T06:59:48Z +1536,56,1,341,5.99,2005-05-27T04:01:42Z,2020-02-15T06:59:48Z +1537,56,1,496,2.99,2005-05-28T00:43:41Z,2020-02-15T06:59:48Z +1538,56,1,569,6.99,2005-05-28T10:12:41Z,2020-02-15T06:59:48Z +1539,56,2,1795,6.99,2005-06-16T20:09:01Z,2020-02-15T06:59:48Z +1540,56,1,2140,0.99,2005-06-17T21:40:29Z,2020-02-15T06:59:48Z +1541,56,1,2485,4.99,2005-06-18T21:26:03Z,2020-02-15T06:59:48Z +1542,56,1,2989,0.99,2005-06-20T08:59:37Z,2020-02-15T06:59:48Z +1543,56,1,3718,7.99,2005-07-06T10:57:56Z,2020-02-15T06:59:48Z +1544,56,2,3771,2.99,2005-07-06T13:19:34Z,2020-02-15T06:59:48Z +1545,56,1,4097,3.99,2005-07-07T06:10:55Z,2020-02-15T06:59:48Z +1546,56,2,4702,4.99,2005-07-08T11:41:36Z,2020-02-15T06:59:48Z +1547,56,1,5142,4.99,2005-07-09T08:05:23Z,2020-02-15T06:59:48Z +1548,56,1,7385,2.99,2005-07-27T15:49:46Z,2020-02-15T06:59:48Z +1549,56,1,7696,7.99,2005-07-28T03:41:35Z,2020-02-15T06:59:48Z +1550,56,2,7942,0.99,2005-07-28T12:49:44Z,2020-02-15T06:59:48Z +1551,56,1,8285,0.99,2005-07-29T02:00:18Z,2020-02-15T06:59:48Z +1552,56,2,10356,6.99,2005-08-01T05:49:17Z,2020-02-15T06:59:48Z +1553,56,2,10678,0.99,2005-08-01T17:26:24Z,2020-02-15T06:59:48Z +1554,56,1,10946,4.99,2005-08-02T03:20:39Z,2020-02-15T06:59:48Z +1555,56,1,11358,5.99,2005-08-02T17:45:02Z,2020-02-15T06:59:48Z +1556,56,1,11656,4.99,2005-08-17T05:11:09Z,2020-02-15T06:59:48Z +1557,56,2,12537,1.99,2005-08-18T14:06:39Z,2020-02-15T06:59:48Z +1558,56,2,12713,4.99,2005-08-18T21:07:28Z,2020-02-15T06:59:48Z +1559,56,2,13560,8.99,2005-08-20T04:17:16Z,2020-02-15T06:59:48Z +1560,56,1,13769,5.99,2005-08-20T11:43:52Z,2020-02-15T06:59:48Z +1561,56,2,14291,3.99,2005-08-21T07:03:05Z,2020-02-15T06:59:48Z +1562,56,2,14534,0.99,2005-08-21T15:16:29Z,2020-02-15T06:59:48Z +1563,56,2,15702,7.99,2005-08-23T10:23:28Z,2020-02-15T06:59:48Z +1564,56,2,15714,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1565,57,2,152,9.99,2005-05-26T00:41:10Z,2020-02-15T06:59:48Z +1566,57,2,943,4.99,2005-05-30T15:20:19Z,2020-02-15T06:59:48Z +1567,57,1,2058,5.99,2005-06-17T15:34:41Z,2020-02-15T06:59:48Z +1568,57,1,2105,0.99,2005-06-17T19:15:45Z,2020-02-15T06:59:48Z +1569,57,1,2360,4.99,2005-06-18T13:11:13Z,2020-02-15T06:59:48Z +1570,57,2,2910,7.99,2005-06-20T03:31:18Z,2020-02-15T06:59:48Z +1571,57,1,3357,0.99,2005-06-21T11:55:42Z,2020-02-15T06:59:48Z +1572,57,1,3727,4.99,2005-07-06T11:16:43Z,2020-02-15T06:59:48Z +1573,57,2,4226,4.99,2005-07-07T12:37:56Z,2020-02-15T06:59:48Z +1574,57,1,5060,4.99,2005-07-09T04:28:03Z,2020-02-15T06:59:48Z +1575,57,1,5694,0.99,2005-07-10T09:40:38Z,2020-02-15T06:59:48Z +1576,57,2,5948,2.99,2005-07-10T23:12:08Z,2020-02-15T06:59:48Z +1577,57,2,6482,4.99,2005-07-12T01:50:21Z,2020-02-15T06:59:48Z +1578,57,1,6494,1.99,2005-07-12T02:42:51Z,2020-02-15T06:59:48Z +1579,57,2,6649,4.99,2005-07-12T10:51:09Z,2020-02-15T06:59:48Z +1580,57,2,8249,5.99,2005-07-29T00:48:44Z,2020-02-15T06:59:48Z +1581,57,1,9086,0.99,2005-07-30T08:18:46Z,2020-02-15T06:59:48Z +1582,57,2,9136,0.99,2005-07-30T10:07:20Z,2020-02-15T06:59:48Z +1583,57,1,9211,1.99,2005-07-30T12:59:45Z,2020-02-15T06:59:48Z +1584,57,1,9703,0.99,2005-07-31T07:34:52Z,2020-02-15T06:59:48Z +1585,57,2,9812,2.99,2005-07-31T11:28:07Z,2020-02-15T06:59:48Z +1586,57,2,10169,4.99,2005-07-31T23:27:13Z,2020-02-15T06:59:48Z +1587,57,2,12925,5.99,2005-08-19T04:59:01Z,2020-02-15T06:59:48Z +1588,57,2,13163,0.99,2005-08-19T13:29:46Z,2020-02-15T06:59:48Z +1589,57,2,13743,0.99,2005-08-20T10:51:27Z,2020-02-15T06:59:48Z +1590,57,2,13929,9.99,2005-08-20T17:13:48Z,2020-02-15T06:59:48Z +1591,57,2,15571,0.99,2005-08-23T05:26:30Z,2020-02-15T06:59:48Z +1592,57,2,15871,9.99,2005-08-23T16:24:24Z,2020-02-15T06:59:48Z +1593,58,1,230,0.99,2005-05-26T11:31:50Z,2020-02-15T06:59:48Z +1594,58,2,276,7.99,2005-05-26T17:16:07Z,2020-02-15T06:59:48Z +1595,58,2,761,0.99,2005-05-29T11:09:01Z,2020-02-15T06:59:48Z +1596,58,1,2191,4.99,2005-06-18T01:33:09Z,2020-02-15T06:59:48Z +1597,58,2,2543,0.99,2005-06-19T02:14:11Z,2020-02-15T06:59:48Z +1598,58,1,2906,0.99,2005-06-20T03:04:56Z,2020-02-15T06:59:48Z +1599,58,1,3685,4.99,2005-07-06T09:30:45Z,2020-02-15T06:59:48Z +1600,58,2,4131,4.99,2005-07-07T07:53:18Z,2020-02-15T06:59:48Z +1601,58,2,5439,1.99,2005-07-09T21:39:35Z,2020-02-15T06:59:48Z +1602,58,1,7063,9.99,2005-07-27T03:52:27Z,2020-02-15T06:59:48Z +1603,58,2,7487,4.99,2005-07-27T19:32:45Z,2020-02-15T06:59:48Z +1604,58,1,8853,0.99,2005-07-29T23:34:21Z,2020-02-15T06:59:48Z +1605,58,2,9561,2.99,2005-07-31T02:22:13Z,2020-02-15T06:59:48Z +1606,58,2,10037,2.99,2005-07-31T18:48:08Z,2020-02-15T06:59:48Z +1607,58,1,10068,4.99,2005-07-31T19:39:38Z,2020-02-15T06:59:48Z +1608,58,2,10256,4.99,2005-08-01T02:47:11Z,2020-02-15T06:59:48Z +1609,58,1,10668,0.99,2005-08-01T17:00:27Z,2020-02-15T06:59:48Z +1610,58,1,11416,6.99,2005-08-02T19:44:04Z,2020-02-15T06:59:48Z +1611,58,2,12292,8.99,2005-08-18T05:08:54Z,2020-02-15T06:59:48Z +1612,58,1,13194,6.99,2005-08-19T14:34:12Z,2020-02-15T06:59:48Z +1613,58,1,13207,3.99,2005-08-19T15:14:38Z,2020-02-15T06:59:48Z +1614,58,1,13930,2.99,2005-08-20T17:15:06Z,2020-02-15T06:59:48Z +1615,58,2,13973,4.99,2005-08-20T18:52:43Z,2020-02-15T06:59:48Z +1616,58,2,14305,5.99,2005-08-21T07:29:05Z,2020-02-15T06:59:48Z +1617,58,1,14665,6.99,2005-08-21T19:49:46Z,2020-02-15T06:59:48Z +1618,58,1,14989,4.99,2005-08-22T07:47:07Z,2020-02-15T06:59:48Z +1619,58,2,15326,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1620,59,2,212,4.99,2005-05-26T08:34:41Z,2020-02-15T06:59:48Z +1621,59,2,951,2.99,2005-05-30T16:10:35Z,2020-02-15T06:59:48Z +1622,59,1,1154,5.99,2005-05-31T21:42:09Z,2020-02-15T06:59:48Z +1623,59,1,1269,2.99,2005-06-15T07:29:59Z,2020-02-15T06:59:48Z +1624,59,1,1728,3.99,2005-06-16T15:29:29Z,2020-02-15T06:59:48Z +1625,59,1,2921,3.99,2005-06-20T04:13:04Z,2020-02-15T06:59:48Z +1626,59,2,4148,2.99,2005-07-07T08:36:58Z,2020-02-15T06:59:48Z +1627,59,1,4384,4.99,2005-07-07T20:46:45Z,2020-02-15T06:59:48Z +1628,59,1,4631,4.99,2005-07-08T08:38:22Z,2020-02-15T06:59:48Z +1629,59,1,4891,3.99,2005-07-08T20:06:19Z,2020-02-15T06:59:48Z +1630,59,2,5195,8.99,2005-07-09T10:39:31Z,2020-02-15T06:59:48Z +1631,59,1,5207,3.99,2005-07-09T11:15:44Z,2020-02-15T06:59:48Z +1632,59,1,5830,4.99,2005-07-10T16:34:00Z,2020-02-15T06:59:48Z +1633,59,1,7991,4.99,2005-07-28T14:45:45Z,2020-02-15T06:59:48Z +1634,59,2,8643,4.99,2005-07-29T14:45:23Z,2020-02-15T06:59:48Z +1635,59,1,9469,8.99,2005-07-30T22:56:34Z,2020-02-15T06:59:48Z +1636,59,2,9573,6.99,2005-07-31T02:45:38Z,2020-02-15T06:59:48Z +1637,59,2,11396,4.99,2005-08-02T18:48:29Z,2020-02-15T06:59:48Z +1638,59,1,12833,5.99,2005-08-19T01:42:28Z,2020-02-15T06:59:48Z +1639,59,2,13282,2.99,2005-08-19T18:08:18Z,2020-02-15T06:59:48Z +1640,59,1,13573,2.99,2005-08-20T05:10:14Z,2020-02-15T06:59:48Z +1641,59,2,13921,4.99,2005-08-20T16:57:11Z,2020-02-15T06:59:48Z +1642,59,1,14135,5.99,2005-08-21T01:53:54Z,2020-02-15T06:59:48Z +1643,59,1,14977,5.99,2005-08-22T07:12:53Z,2020-02-15T06:59:48Z +1644,59,2,15271,5.99,2005-08-22T18:48:48Z,2020-02-15T06:59:48Z +1645,59,2,15744,4.99,2005-08-23T12:15:51Z,2020-02-15T06:59:48Z +1646,59,2,15905,2.99,2005-08-23T17:33:04Z,2020-02-15T06:59:48Z +1647,60,1,318,4.99,2005-05-26T23:37:39Z,2020-02-15T06:59:48Z +1648,60,2,706,1.99,2005-05-29T03:05:49Z,2020-02-15T06:59:48Z +1649,60,2,934,2.99,2005-05-30T13:24:46Z,2020-02-15T06:59:48Z +1650,60,2,1482,4.99,2005-06-15T21:18:16Z,2020-02-15T06:59:48Z +1651,60,2,2394,4.99,2005-06-18T15:42:30Z,2020-02-15T06:59:48Z +1652,60,2,3473,2.99,2005-07-05T22:57:34Z,2020-02-15T06:59:48Z +1653,60,1,3849,2.99,2005-07-06T16:49:43Z,2020-02-15T06:59:48Z +1654,60,1,6282,5.99,2005-07-11T16:46:22Z,2020-02-15T06:59:48Z +1655,60,2,7067,0.99,2005-07-27T03:55:10Z,2020-02-15T06:59:48Z +1656,60,1,7331,3.99,2005-07-27T13:57:50Z,2020-02-15T06:59:48Z +1657,60,1,7494,0.99,2005-07-27T19:56:31Z,2020-02-15T06:59:48Z +1658,60,1,9356,4.99,2005-07-30T18:36:24Z,2020-02-15T06:59:48Z +1659,60,1,9761,4.99,2005-07-31T09:31:54Z,2020-02-15T06:59:48Z +1660,60,2,10680,0.99,2005-08-01T17:28:05Z,2020-02-15T06:59:48Z +1661,60,1,11092,4.99,2005-08-02T07:58:50Z,2020-02-15T06:59:48Z +1662,60,1,11404,8.99,2005-08-02T19:12:40Z,2020-02-15T06:59:48Z +1663,60,1,12084,1.99,2005-08-17T22:16:49Z,2020-02-15T06:59:48Z +1664,60,2,12614,7.99,2005-08-18T17:16:03Z,2020-02-15T06:59:48Z +1665,60,1,15093,2.99,2005-08-22T11:39:03Z,2020-02-15T06:59:48Z +1666,60,1,15318,2.99,2005-08-22T20:15:16Z,2020-02-15T06:59:48Z +1667,60,1,15618,5.99,2005-08-23T07:07:58Z,2020-02-15T06:59:48Z +1668,60,1,15632,0.99,2005-08-23T07:30:26Z,2020-02-15T06:59:48Z +1669,60,1,15649,2.99,2005-08-23T08:28:03Z,2020-02-15T06:59:48Z +1670,60,2,12489,9.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1671,60,2,14741,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1672,61,1,1157,0.99,2005-05-31T22:47:45Z,2020-02-15T06:59:48Z +1673,61,1,7027,7.99,2005-07-27T02:50:15Z,2020-02-15T06:59:48Z +1674,61,2,7071,1.99,2005-07-27T04:01:15Z,2020-02-15T06:59:48Z +1675,61,2,8029,6.99,2005-07-28T16:11:21Z,2020-02-15T06:59:48Z +1676,61,2,8075,4.99,2005-07-28T17:37:28Z,2020-02-15T06:59:48Z +1677,61,1,8651,3.99,2005-07-29T15:02:18Z,2020-02-15T06:59:48Z +1678,61,2,9597,6.99,2005-07-31T03:29:07Z,2020-02-15T06:59:48Z +1679,61,2,10549,0.99,2005-08-01T12:46:39Z,2020-02-15T06:59:48Z +1680,61,2,11379,2.99,2005-08-02T18:16:55Z,2020-02-15T06:59:48Z +1681,61,1,12072,9.99,2005-08-17T21:50:25Z,2020-02-15T06:59:48Z +1682,61,1,13450,0.99,2005-08-20T00:18:15Z,2020-02-15T06:59:48Z +1683,61,1,13830,0.99,2005-08-20T13:57:59Z,2020-02-15T06:59:48Z +1684,61,2,15089,6.99,2005-08-22T11:34:06Z,2020-02-15T06:59:48Z +1685,61,1,15681,1.99,2005-08-23T09:35:34Z,2020-02-15T06:59:48Z +1686,62,2,885,0.99,2005-05-30T06:54:28Z,2020-02-15T06:59:48Z +1687,62,1,947,4.99,2005-05-30T15:36:57Z,2020-02-15T06:59:48Z +1688,62,2,1241,6.99,2005-06-15T04:59:43Z,2020-02-15T06:59:48Z +1689,62,1,1486,0.99,2005-06-15T21:25:30Z,2020-02-15T06:59:48Z +1690,62,1,1587,0.99,2005-06-16T04:52:28Z,2020-02-15T06:59:48Z +1691,62,2,3021,4.99,2005-06-20T11:13:01Z,2020-02-15T06:59:48Z +1692,62,1,3035,5.99,2005-06-20T12:17:03Z,2020-02-15T06:59:48Z +1693,62,1,3287,0.99,2005-06-21T06:32:39Z,2020-02-15T06:59:48Z +1694,62,1,3327,3.99,2005-06-21T09:04:50Z,2020-02-15T06:59:48Z +1695,62,2,3843,2.99,2005-07-06T16:35:40Z,2020-02-15T06:59:48Z +1696,62,2,4159,4.99,2005-07-07T09:10:57Z,2020-02-15T06:59:48Z +1697,62,2,5292,2.99,2005-07-09T15:16:54Z,2020-02-15T06:59:48Z +1698,62,2,8360,4.99,2005-07-29T05:08:00Z,2020-02-15T06:59:48Z +1699,62,2,10080,0.99,2005-07-31T20:07:10Z,2020-02-15T06:59:48Z +1700,62,1,10815,2.99,2005-08-01T22:46:21Z,2020-02-15T06:59:48Z +1701,62,1,11297,5.99,2005-08-02T15:22:47Z,2020-02-15T06:59:48Z +1702,62,1,11988,0.99,2005-08-17T18:23:50Z,2020-02-15T06:59:48Z +1703,62,2,13512,8.99,2005-08-20T02:27:13Z,2020-02-15T06:59:48Z +1704,62,2,14574,1.99,2005-08-21T16:50:34Z,2020-02-15T06:59:48Z +1705,62,2,14594,2.99,2005-08-21T17:34:24Z,2020-02-15T06:59:48Z +1706,62,2,14821,4.99,2005-08-22T01:20:19Z,2020-02-15T06:59:48Z +1707,62,1,15464,6.99,2005-08-23T01:15:18Z,2020-02-15T06:59:48Z +1708,62,1,15591,0.99,2005-08-23T06:11:52Z,2020-02-15T06:59:48Z +1709,63,2,1818,0.99,2005-06-16T21:30:34Z,2020-02-15T06:59:48Z +1710,63,2,3923,8.99,2005-07-06T20:34:10Z,2020-02-15T06:59:48Z +1711,63,1,4587,4.99,2005-07-08T06:16:26Z,2020-02-15T06:59:48Z +1712,63,1,5585,6.99,2005-07-10T04:15:43Z,2020-02-15T06:59:48Z +1713,63,2,5788,4.99,2005-07-10T14:10:22Z,2020-02-15T06:59:48Z +1714,63,2,5832,4.99,2005-07-10T16:34:48Z,2020-02-15T06:59:48Z +1715,63,2,6769,3.99,2005-07-12T15:48:54Z,2020-02-15T06:59:48Z +1716,63,2,6847,8.99,2005-07-12T19:22:37Z,2020-02-15T06:59:48Z +1717,63,2,8311,5.99,2005-07-29T03:26:07Z,2020-02-15T06:59:48Z +1718,63,2,9007,0.99,2005-07-30T05:09:32Z,2020-02-15T06:59:48Z +1719,63,1,9546,4.99,2005-07-31T01:47:40Z,2020-02-15T06:59:48Z +1720,63,2,9549,3.99,2005-07-31T01:57:04Z,2020-02-15T06:59:48Z +1721,63,1,9795,0.99,2005-07-31T10:47:19Z,2020-02-15T06:59:48Z +1722,63,2,9938,2.99,2005-07-31T15:28:47Z,2020-02-15T06:59:48Z +1723,63,2,10148,0.99,2005-07-31T22:19:16Z,2020-02-15T06:59:48Z +1724,63,1,10288,6.99,2005-08-01T03:38:42Z,2020-02-15T06:59:48Z +1725,63,1,11902,4.99,2005-08-17T15:37:34Z,2020-02-15T06:59:48Z +1726,63,2,12342,2.99,2005-08-18T07:12:46Z,2020-02-15T06:59:48Z +1727,63,2,12515,0.99,2005-08-18T13:39:26Z,2020-02-15T06:59:48Z +1728,63,1,12954,7.99,2005-08-19T06:04:34Z,2020-02-15T06:59:48Z +1729,63,1,13089,0.99,2005-08-19T10:38:56Z,2020-02-15T06:59:48Z +1730,63,1,13624,8.99,2005-08-20T06:51:02Z,2020-02-15T06:59:48Z +1731,63,1,14931,3.99,2005-08-22T05:38:55Z,2020-02-15T06:59:48Z +1732,63,1,15060,5.99,2005-08-22T10:24:32Z,2020-02-15T06:59:48Z +1733,63,1,15229,2.99,2005-08-22T17:30:25Z,2020-02-15T06:59:48Z +1734,64,1,494,4.99,2005-05-28T00:39:31Z,2020-02-15T06:59:48Z +1735,64,1,587,0.99,2005-05-28T12:05:33Z,2020-02-15T06:59:48Z +1736,64,1,1001,2.99,2005-05-31T00:46:31Z,2020-02-15T06:59:48Z +1737,64,2,1335,0.99,2005-06-15T11:51:30Z,2020-02-15T06:59:48Z +1738,64,1,2060,2.99,2005-06-17T15:42:42Z,2020-02-15T06:59:48Z +1739,64,2,3982,0.99,2005-07-06T23:14:16Z,2020-02-15T06:59:48Z +1740,64,1,4288,4.99,2005-07-07T15:38:25Z,2020-02-15T06:59:48Z +1741,64,1,4690,1.99,2005-07-08T11:04:02Z,2020-02-15T06:59:48Z +1742,64,2,4819,5.99,2005-07-08T17:19:15Z,2020-02-15T06:59:48Z +1743,64,2,4971,5.99,2005-07-08T23:54:49Z,2020-02-15T06:59:48Z +1744,64,1,5114,3.99,2005-07-09T07:07:05Z,2020-02-15T06:59:48Z +1745,64,2,5279,2.99,2005-07-09T14:46:36Z,2020-02-15T06:59:48Z +1746,64,1,5432,0.99,2005-07-09T21:21:25Z,2020-02-15T06:59:48Z +1747,64,2,6372,2.99,2005-07-11T21:35:06Z,2020-02-15T06:59:48Z +1748,64,2,6457,0.99,2005-07-12T01:06:35Z,2020-02-15T06:59:48Z +1749,64,2,6698,1.99,2005-07-12T12:45:00Z,2020-02-15T06:59:48Z +1750,64,2,6744,0.99,2005-07-12T14:30:28Z,2020-02-15T06:59:48Z +1751,64,2,7045,0.99,2005-07-27T03:27:35Z,2020-02-15T06:59:48Z +1752,64,1,7082,2.99,2005-07-27T04:27:32Z,2020-02-15T06:59:48Z +1753,64,1,7476,1.99,2005-07-27T19:08:56Z,2020-02-15T06:59:48Z +1754,64,2,8602,4.99,2005-07-29T13:04:27Z,2020-02-15T06:59:48Z +1755,64,1,9832,2.99,2005-07-31T12:01:49Z,2020-02-15T06:59:48Z +1756,64,1,9880,6.99,2005-07-31T13:49:02Z,2020-02-15T06:59:48Z +1757,64,1,9924,3.99,2005-07-31T15:04:57Z,2020-02-15T06:59:48Z +1758,64,2,10185,0.99,2005-08-01T00:12:11Z,2020-02-15T06:59:48Z +1759,64,2,10714,4.99,2005-08-01T18:51:29Z,2020-02-15T06:59:48Z +1760,64,1,10889,4.99,2005-08-02T00:54:33Z,2020-02-15T06:59:48Z +1761,64,1,12409,0.99,2005-08-18T09:43:58Z,2020-02-15T06:59:48Z +1762,64,1,13773,2.99,2005-08-20T11:50:14Z,2020-02-15T06:59:48Z +1763,64,1,13971,0.99,2005-08-20T18:44:53Z,2020-02-15T06:59:48Z +1764,64,1,14167,5.99,2005-08-21T02:59:48Z,2020-02-15T06:59:48Z +1765,64,2,14316,0.99,2005-08-21T07:59:47Z,2020-02-15T06:59:48Z +1766,64,2,13333,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1767,65,1,295,4.99,2005-05-26T20:33:20Z,2020-02-15T06:59:48Z +1768,65,2,657,0.99,2005-05-28T20:23:09Z,2020-02-15T06:59:48Z +1769,65,1,2173,7.99,2005-06-18T00:08:20Z,2020-02-15T06:59:48Z +1770,65,1,3051,4.99,2005-06-20T13:06:52Z,2020-02-15T06:59:48Z +1771,65,1,3535,4.99,2005-07-06T01:32:46Z,2020-02-15T06:59:48Z +1772,65,1,4240,4.99,2005-07-07T13:33:12Z,2020-02-15T06:59:48Z +1773,65,2,4635,3.99,2005-07-08T08:42:40Z,2020-02-15T06:59:48Z +1774,65,1,5735,3.99,2005-07-10T11:39:15Z,2020-02-15T06:59:48Z +1775,65,2,6527,0.99,2005-07-12T04:23:06Z,2020-02-15T06:59:48Z +1776,65,1,7877,6.99,2005-07-28T10:25:36Z,2020-02-15T06:59:48Z +1777,65,2,8392,1.99,2005-07-29T06:00:27Z,2020-02-15T06:59:48Z +1778,65,2,8404,5.99,2005-07-29T06:27:01Z,2020-02-15T06:59:48Z +1779,65,1,9293,3.99,2005-07-30T16:12:28Z,2020-02-15T06:59:48Z +1780,65,2,11100,5.99,2005-08-02T08:08:00Z,2020-02-15T06:59:48Z +1781,65,1,11227,8.99,2005-08-02T12:48:05Z,2020-02-15T06:59:48Z +1782,65,2,11461,4.99,2005-08-02T21:35:00Z,2020-02-15T06:59:48Z +1783,65,2,11845,2.99,2005-08-17T13:16:38Z,2020-02-15T06:59:48Z +1784,65,1,12114,7.99,2005-08-17T23:02:00Z,2020-02-15T06:59:48Z +1785,65,1,12688,6.99,2005-08-18T19:59:54Z,2020-02-15T06:59:48Z +1786,65,2,13692,0.99,2005-08-20T09:07:52Z,2020-02-15T06:59:48Z +1787,65,2,14140,6.99,2005-08-21T02:04:57Z,2020-02-15T06:59:48Z +1788,65,1,14356,0.99,2005-08-21T09:08:51Z,2020-02-15T06:59:48Z +1789,66,2,933,4.99,2005-05-30T13:08:45Z,2020-02-15T06:59:48Z +1790,66,1,1236,2.99,2005-06-15T04:34:27Z,2020-02-15T06:59:48Z +1791,66,1,1907,2.99,2005-06-17T05:08:27Z,2020-02-15T06:59:48Z +1792,66,1,2106,4.99,2005-06-17T19:29:03Z,2020-02-15T06:59:48Z +1793,66,2,2571,2.99,2005-06-19T04:20:14Z,2020-02-15T06:59:48Z +1794,66,1,2577,4.99,2005-06-19T04:36:03Z,2020-02-15T06:59:48Z +1795,66,1,3334,3.99,2005-06-21T10:04:33Z,2020-02-15T06:59:48Z +1796,66,2,3395,6.99,2005-06-21T15:19:19Z,2020-02-15T06:59:48Z +1797,66,1,3573,4.99,2005-07-06T03:33:48Z,2020-02-15T06:59:48Z +1798,66,2,3757,2.99,2005-07-06T12:42:26Z,2020-02-15T06:59:48Z +1799,66,2,4088,2.99,2005-07-07T05:31:55Z,2020-02-15T06:59:48Z +1800,66,1,4108,4.99,2005-07-07T06:38:31Z,2020-02-15T06:59:48Z +1801,66,2,4165,6.99,2005-07-07T09:23:27Z,2020-02-15T06:59:48Z +1802,66,2,4911,5.99,2005-07-08T21:20:26Z,2020-02-15T06:59:48Z +1803,66,2,5915,0.99,2005-07-10T21:12:16Z,2020-02-15T06:59:48Z +1804,66,1,6290,8.99,2005-07-11T17:12:42Z,2020-02-15T06:59:48Z +1805,66,2,6348,5.99,2005-07-11T20:21:18Z,2020-02-15T06:59:48Z +1806,66,1,6402,3.99,2005-07-11T22:46:10Z,2020-02-15T06:59:48Z +1807,66,1,6995,2.99,2005-07-27T01:12:13Z,2020-02-15T06:59:48Z +1808,66,1,7872,2.99,2005-07-28T10:18:16Z,2020-02-15T06:59:48Z +1809,66,1,9091,5.99,2005-07-30T08:30:45Z,2020-02-15T06:59:48Z +1810,66,1,10419,0.99,2005-08-01T08:13:22Z,2020-02-15T06:59:48Z +1811,66,2,11028,5.99,2005-08-02T05:48:20Z,2020-02-15T06:59:48Z +1812,66,2,11360,2.99,2005-08-02T17:46:04Z,2020-02-15T06:59:48Z +1813,66,1,11683,5.99,2005-08-17T06:15:17Z,2020-02-15T06:59:48Z +1814,66,1,11935,0.99,2005-08-17T16:42:13Z,2020-02-15T06:59:48Z +1815,66,1,12699,0.99,2005-08-18T20:20:59Z,2020-02-15T06:59:48Z +1816,66,1,13900,2.99,2005-08-20T16:05:41Z,2020-02-15T06:59:48Z +1817,66,2,14123,2.99,2005-08-21T01:31:25Z,2020-02-15T06:59:48Z +1818,66,1,14217,6.99,2005-08-21T04:37:56Z,2020-02-15T06:59:48Z +1819,66,2,14351,2.99,2005-08-21T09:04:20Z,2020-02-15T06:59:48Z +1820,66,2,14429,0.99,2005-08-21T11:29:43Z,2020-02-15T06:59:48Z +1821,66,2,15026,4.99,2005-08-22T09:01:52Z,2020-02-15T06:59:48Z +1822,66,1,15598,8.99,2005-08-23T06:23:26Z,2020-02-15T06:59:48Z +1823,67,2,331,9.99,2005-05-27T02:22:26Z,2020-02-15T06:59:48Z +1824,67,1,767,2.99,2005-05-29T12:20:19Z,2020-02-15T06:59:48Z +1825,67,1,2064,3.99,2005-06-17T15:57:56Z,2020-02-15T06:59:48Z +1826,67,1,2542,3.99,2005-06-19T02:08:39Z,2020-02-15T06:59:48Z +1827,67,2,2810,0.99,2005-06-19T19:44:12Z,2020-02-15T06:59:48Z +1828,67,1,3359,4.99,2005-06-21T12:08:18Z,2020-02-15T06:59:48Z +1829,67,2,4090,4.99,2005-07-07T05:47:33Z,2020-02-15T06:59:48Z +1830,67,2,5399,2.99,2005-07-09T19:52:44Z,2020-02-15T06:59:48Z +1831,67,2,5510,2.99,2005-07-10T00:58:37Z,2020-02-15T06:59:48Z +1832,67,1,6137,2.99,2005-07-11T08:34:20Z,2020-02-15T06:59:48Z +1833,67,2,7277,5.99,2005-07-27T11:48:37Z,2020-02-15T06:59:48Z +1834,67,2,7895,0.99,2005-07-28T10:57:15Z,2020-02-15T06:59:48Z +1835,67,2,8563,1.99,2005-07-29T11:32:58Z,2020-02-15T06:59:48Z +1836,67,1,9640,7.99,2005-07-31T05:33:25Z,2020-02-15T06:59:48Z +1837,67,1,11295,8.99,2005-08-02T15:10:06Z,2020-02-15T06:59:48Z +1838,67,1,11894,8.99,2005-08-17T15:15:01Z,2020-02-15T06:59:48Z +1839,67,2,13437,4.99,2005-08-19T23:37:52Z,2020-02-15T06:59:48Z +1840,67,1,13652,2.99,2005-08-20T07:52:34Z,2020-02-15T06:59:48Z +1841,67,2,13791,4.99,2005-08-20T12:21:05Z,2020-02-15T06:59:48Z +1842,67,2,13837,2.99,2005-08-20T14:19:03Z,2020-02-15T06:59:48Z +1843,67,2,14967,4.99,2005-08-22T06:46:03Z,2020-02-15T06:59:48Z +1844,67,2,15085,2.99,2005-08-22T11:19:22Z,2020-02-15T06:59:48Z +1845,68,2,1828,5.99,2005-06-16T22:04:34Z,2020-02-15T06:59:48Z +1846,68,2,1957,8.99,2005-06-17T08:50:58Z,2020-02-15T06:59:48Z +1847,68,2,2633,2.99,2005-06-19T08:53:10Z,2020-02-15T06:59:48Z +1848,68,2,2662,4.99,2005-06-19T10:53:42Z,2020-02-15T06:59:48Z +1849,68,1,2686,2.99,2005-06-19T12:44:20Z,2020-02-15T06:59:48Z +1850,68,1,3598,0.99,2005-07-06T05:11:04Z,2020-02-15T06:59:48Z +1851,68,2,3801,4.99,2005-07-06T15:05:50Z,2020-02-15T06:59:48Z +1852,68,1,3864,0.99,2005-07-06T17:41:42Z,2020-02-15T06:59:48Z +1853,68,2,4555,6.99,2005-07-08T04:48:36Z,2020-02-15T06:59:48Z +1854,68,1,4925,3.99,2005-07-08T21:56:00Z,2020-02-15T06:59:48Z +1855,68,1,6512,4.99,2005-07-12T03:42:49Z,2020-02-15T06:59:48Z +1856,68,2,9339,3.99,2005-07-30T18:03:28Z,2020-02-15T06:59:48Z +1857,68,1,9538,3.99,2005-07-31T01:25:22Z,2020-02-15T06:59:48Z +1858,68,2,9642,4.99,2005-07-31T05:33:57Z,2020-02-15T06:59:48Z +1859,68,1,10115,7.99,2005-07-31T21:13:47Z,2020-02-15T06:59:48Z +1860,68,1,11277,2.99,2005-08-02T14:28:50Z,2020-02-15T06:59:48Z +1861,68,2,12742,2.99,2005-08-18T22:22:03Z,2020-02-15T06:59:48Z +1862,68,2,13475,4.99,2005-08-20T01:05:05Z,2020-02-15T06:59:48Z +1863,68,2,14242,0.99,2005-08-21T05:25:59Z,2020-02-15T06:59:48Z +1864,68,2,14455,5.99,2005-08-21T12:36:11Z,2020-02-15T06:59:48Z +1865,68,1,14947,1.99,2005-08-22T06:07:52Z,2020-02-15T06:59:48Z +1866,68,1,15524,4.99,2005-08-23T03:36:26Z,2020-02-15T06:59:48Z +1867,69,2,584,4.99,2005-05-28T11:49:00Z,2020-02-15T06:59:48Z +1868,69,2,765,1.99,2005-05-29T11:38:34Z,2020-02-15T06:59:48Z +1869,69,1,1549,2.99,2005-06-16T01:57:15Z,2020-02-15T06:59:48Z +1870,69,1,3358,4.99,2005-06-21T11:56:40Z,2020-02-15T06:59:48Z +1871,69,1,3883,8.99,2005-07-06T18:39:38Z,2020-02-15T06:59:48Z +1872,69,1,4265,0.99,2005-07-07T14:27:51Z,2020-02-15T06:59:48Z +1873,69,1,4427,0.99,2005-07-07T22:28:51Z,2020-02-15T06:59:48Z +1874,69,2,5569,3.99,2005-07-10T03:38:32Z,2020-02-15T06:59:48Z +1875,69,2,6297,4.99,2005-07-11T17:37:22Z,2020-02-15T06:59:48Z +1876,69,1,6385,6.99,2005-07-11T22:07:32Z,2020-02-15T06:59:48Z +1877,69,2,6785,6.99,2005-07-12T16:30:57Z,2020-02-15T06:59:48Z +1878,69,2,8649,6.99,2005-07-29T14:57:33Z,2020-02-15T06:59:48Z +1879,69,2,9193,2.99,2005-07-30T12:28:42Z,2020-02-15T06:59:48Z +1880,69,1,9612,2.99,2005-07-31T03:58:31Z,2020-02-15T06:59:48Z +1881,69,2,10074,0.99,2005-07-31T19:57:16Z,2020-02-15T06:59:48Z +1882,69,1,11943,3.99,2005-08-17T17:00:42Z,2020-02-15T06:59:48Z +1883,69,1,12012,2.99,2005-08-17T19:20:48Z,2020-02-15T06:59:48Z +1884,69,1,12121,2.99,2005-08-17T23:20:40Z,2020-02-15T06:59:48Z +1885,69,1,12966,5.99,2005-08-19T06:37:48Z,2020-02-15T06:59:48Z +1886,69,1,13023,5.99,2005-08-19T08:13:54Z,2020-02-15T06:59:48Z +1887,69,2,14311,3.99,2005-08-21T07:45:47Z,2020-02-15T06:59:48Z +1888,69,2,14685,0.99,2005-08-21T20:31:25Z,2020-02-15T06:59:48Z +1889,69,2,14767,2.99,2005-08-21T23:43:00Z,2020-02-15T06:59:48Z +1890,69,1,15547,2.99,2005-08-23T04:25:50Z,2020-02-15T06:59:48Z +1891,69,2,11995,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1892,70,2,1044,4.99,2005-05-31T06:24:44Z,2020-02-15T06:59:48Z +1893,70,1,2472,4.99,2005-06-18T20:32:40Z,2020-02-15T06:59:48Z +1894,70,1,4061,0.99,2005-07-07T04:13:35Z,2020-02-15T06:59:48Z +1895,70,1,5927,5.99,2005-07-10T21:57:14Z,2020-02-15T06:59:48Z +1896,70,2,7036,4.99,2005-07-27T03:06:12Z,2020-02-15T06:59:48Z +1897,70,2,7421,7.99,2005-07-27T17:10:05Z,2020-02-15T06:59:48Z +1898,70,1,7714,2.99,2005-07-28T04:32:30Z,2020-02-15T06:59:48Z +1899,70,2,8550,0.99,2005-07-29T11:12:37Z,2020-02-15T06:59:48Z +1900,70,1,8747,2.99,2005-07-29T19:07:57Z,2020-02-15T06:59:48Z +1901,70,1,11274,9.99,2005-08-02T14:24:08Z,2020-02-15T06:59:48Z +1902,70,1,11901,2.99,2005-08-17T15:35:47Z,2020-02-15T06:59:48Z +1903,70,1,12003,4.99,2005-08-17T18:56:05Z,2020-02-15T06:59:48Z +1904,70,2,12218,4.99,2005-08-18T02:48:14Z,2020-02-15T06:59:48Z +1905,70,1,12581,6.99,2005-08-18T15:49:15Z,2020-02-15T06:59:48Z +1906,70,1,12951,3.99,2005-08-19T05:56:44Z,2020-02-15T06:59:48Z +1907,70,2,13680,4.99,2005-08-20T08:44:06Z,2020-02-15T06:59:48Z +1908,70,2,15238,0.99,2005-08-22T17:46:12Z,2020-02-15T06:59:48Z +1909,70,1,15616,3.99,2005-08-23T07:06:38Z,2020-02-15T06:59:48Z +1910,71,1,199,2.99,2005-05-26T07:11:58Z,2020-02-15T06:59:48Z +1911,71,1,272,9.99,2005-05-26T16:27:11Z,2020-02-15T06:59:48Z +1912,71,2,1873,2.99,2005-06-17T02:38:28Z,2020-02-15T06:59:48Z +1913,71,1,2374,4.99,2005-06-18T14:44:06Z,2020-02-15T06:59:48Z +1914,71,2,3345,5.99,2005-06-21T11:05:07Z,2020-02-15T06:59:48Z +1915,71,2,4614,4.99,2005-07-08T07:45:17Z,2020-02-15T06:59:48Z +1916,71,2,5281,1.99,2005-07-09T14:55:07Z,2020-02-15T06:59:48Z +1917,71,2,5358,3.99,2005-07-09T18:09:21Z,2020-02-15T06:59:48Z +1918,71,1,5543,8.99,2005-07-10T02:48:03Z,2020-02-15T06:59:48Z +1919,71,1,5770,4.99,2005-07-10T13:21:28Z,2020-02-15T06:59:48Z +1920,71,2,5814,4.99,2005-07-10T15:46:50Z,2020-02-15T06:59:48Z +1921,71,2,6020,0.99,2005-07-11T02:08:55Z,2020-02-15T06:59:48Z +1922,71,1,6739,5.99,2005-07-12T14:22:08Z,2020-02-15T06:59:48Z +1923,71,2,7160,0.99,2005-07-27T07:26:06Z,2020-02-15T06:59:48Z +1924,71,1,7550,4.99,2005-07-27T21:55:07Z,2020-02-15T06:59:48Z +1925,71,2,7982,4.99,2005-07-28T14:19:59Z,2020-02-15T06:59:48Z +1926,71,2,8128,2.99,2005-07-28T19:46:06Z,2020-02-15T06:59:48Z +1927,71,1,8293,2.99,2005-07-29T02:30:50Z,2020-02-15T06:59:48Z +1928,71,1,8574,1.99,2005-07-29T11:51:53Z,2020-02-15T06:59:48Z +1929,71,1,8668,4.99,2005-07-29T15:41:31Z,2020-02-15T06:59:48Z +1930,71,1,8783,3.99,2005-07-29T20:31:28Z,2020-02-15T06:59:48Z +1931,71,1,8789,4.99,2005-07-29T20:47:27Z,2020-02-15T06:59:48Z +1932,71,1,8956,0.99,2005-07-30T03:32:29Z,2020-02-15T06:59:48Z +1933,71,1,12417,4.99,2005-08-18T09:57:00Z,2020-02-15T06:59:48Z +1934,71,1,14105,7.99,2005-08-21T00:44:34Z,2020-02-15T06:59:48Z +1935,71,1,14228,3.99,2005-08-21T04:57:08Z,2020-02-15T06:59:48Z +1936,71,2,14781,4.99,2005-08-22T00:15:12Z,2020-02-15T06:59:48Z +1937,71,2,14904,3.99,2005-08-22T04:32:01Z,2020-02-15T06:59:48Z +1938,71,1,15704,4.99,2005-08-23T10:25:45Z,2020-02-15T06:59:48Z +1939,71,1,16000,0.99,2005-08-23T20:44:36Z,2020-02-15T06:59:48Z +1940,72,2,785,4.99,2005-05-29T15:08:41Z,2020-02-15T06:59:48Z +1941,72,2,845,4.99,2005-05-30T01:17:25Z,2020-02-15T06:59:48Z +1942,72,2,1047,0.99,2005-05-31T06:45:57Z,2020-02-15T06:59:48Z +1943,72,2,2294,4.99,2005-06-18T07:46:34Z,2020-02-15T06:59:48Z +1944,72,1,3700,0.99,2005-07-06T10:12:19Z,2020-02-15T06:59:48Z +1945,72,2,5223,4.99,2005-07-09T12:06:03Z,2020-02-15T06:59:48Z +1946,72,1,5302,4.99,2005-07-09T15:42:36Z,2020-02-15T06:59:48Z +1947,72,1,5424,0.99,2005-07-09T20:59:09Z,2020-02-15T06:59:48Z +1948,72,1,5840,4.99,2005-07-10T17:09:09Z,2020-02-15T06:59:48Z +1949,72,2,6081,0.99,2005-07-11T05:11:09Z,2020-02-15T06:59:48Z +1950,72,2,8228,4.99,2005-07-29T00:08:58Z,2020-02-15T06:59:48Z +1951,72,1,9027,2.99,2005-07-30T05:58:27Z,2020-02-15T06:59:48Z +1952,72,2,9420,5.99,2005-07-30T21:05:18Z,2020-02-15T06:59:48Z +1953,72,2,9648,4.99,2005-07-31T05:46:03Z,2020-02-15T06:59:48Z +1954,72,2,10267,0.99,2005-08-01T03:07:26Z,2020-02-15T06:59:48Z +1955,72,2,11206,6.99,2005-08-02T11:58:03Z,2020-02-15T06:59:48Z +1956,72,2,11422,5.99,2005-08-02T19:52:08Z,2020-02-15T06:59:48Z +1957,72,1,11630,2.99,2005-08-17T04:27:46Z,2020-02-15T06:59:48Z +1958,72,1,11679,4.99,2005-08-17T06:08:54Z,2020-02-15T06:59:48Z +1959,72,1,11923,2.99,2005-08-17T16:21:47Z,2020-02-15T06:59:48Z +1960,72,2,12020,2.99,2005-08-17T19:50:33Z,2020-02-15T06:59:48Z +1961,72,1,12448,0.99,2005-08-18T10:59:04Z,2020-02-15T06:59:48Z +1962,72,2,12593,0.99,2005-08-18T16:17:54Z,2020-02-15T06:59:48Z +1963,72,1,13145,0.99,2005-08-19T12:53:53Z,2020-02-15T06:59:48Z +1964,72,2,13327,4.99,2005-08-19T19:55:45Z,2020-02-15T06:59:48Z +1965,72,2,13597,0.99,2005-08-20T05:59:05Z,2020-02-15T06:59:48Z +1966,72,2,13660,4.99,2005-08-20T08:05:56Z,2020-02-15T06:59:48Z +1967,72,1,14020,0.99,2005-08-20T20:59:43Z,2020-02-15T06:59:48Z +1968,72,2,15110,0.99,2005-08-22T12:16:46Z,2020-02-15T06:59:48Z +1969,72,2,15146,2.99,2005-08-22T13:57:55Z,2020-02-15T06:59:48Z +1970,73,1,70,2.99,2005-05-25T10:15:23Z,2020-02-15T06:59:48Z +1971,73,2,1133,4.99,2005-05-31T19:12:21Z,2020-02-15T06:59:48Z +1972,73,1,1669,0.99,2005-06-16T10:20:20Z,2020-02-15T06:59:48Z +1973,73,2,2940,4.99,2005-06-20T05:20:01Z,2020-02-15T06:59:48Z +1974,73,2,4327,2.99,2005-07-07T18:01:39Z,2020-02-15T06:59:48Z +1975,73,1,4789,4.99,2005-07-08T16:22:01Z,2020-02-15T06:59:48Z +1976,73,2,5021,4.99,2005-07-09T02:09:41Z,2020-02-15T06:59:48Z +1977,73,1,6514,9.99,2005-07-12T03:47:44Z,2020-02-15T06:59:48Z +1978,73,1,6645,2.99,2005-07-12T10:39:55Z,2020-02-15T06:59:48Z +1979,73,1,7590,4.99,2005-07-27T23:24:24Z,2020-02-15T06:59:48Z +1980,73,1,7683,4.99,2005-07-28T03:11:29Z,2020-02-15T06:59:48Z +1981,73,1,8377,4.99,2005-07-29T05:27:40Z,2020-02-15T06:59:48Z +1982,73,1,9212,2.99,2005-07-30T13:03:13Z,2020-02-15T06:59:48Z +1983,73,1,9776,2.99,2005-07-31T10:01:03Z,2020-02-15T06:59:48Z +1984,73,2,10434,4.99,2005-08-01T08:47:00Z,2020-02-15T06:59:48Z +1985,73,1,11102,4.99,2005-08-02T08:08:30Z,2020-02-15T06:59:48Z +1986,73,2,11155,0.99,2005-08-02T09:55:28Z,2020-02-15T06:59:48Z +1987,73,2,11349,4.99,2005-08-02T17:21:49Z,2020-02-15T06:59:48Z +1988,73,2,11609,3.99,2005-08-17T03:41:11Z,2020-02-15T06:59:48Z +1989,73,2,12291,4.99,2005-08-18T05:08:37Z,2020-02-15T06:59:48Z +1990,73,1,13886,4.99,2005-08-20T15:34:43Z,2020-02-15T06:59:48Z +1991,73,1,15667,0.99,2005-08-23T09:02:03Z,2020-02-15T06:59:48Z +1992,73,2,16002,2.99,2005-08-23T20:47:12Z,2020-02-15T06:59:48Z +1993,73,2,13108,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1994,74,2,1121,6.99,2005-05-31T16:37:36Z,2020-02-15T06:59:48Z +1995,74,1,2498,1.99,2005-06-18T22:56:26Z,2020-02-15T06:59:48Z +1996,74,2,2517,0.99,2005-06-19T00:11:26Z,2020-02-15T06:59:48Z +1997,74,1,3020,1.99,2005-06-20T11:12:04Z,2020-02-15T06:59:48Z +1998,74,2,3445,7.99,2005-06-21T20:40:28Z,2020-02-15T06:59:48Z +1999,74,2,3819,3.99,2005-07-06T15:35:06Z,2020-02-15T06:59:48Z +2000,74,1,5530,2.99,2005-07-10T02:13:49Z,2020-02-15T06:59:48Z +2001,74,2,5603,2.99,2005-07-10T05:04:54Z,2020-02-15T06:59:48Z +2002,74,2,5917,4.99,2005-07-10T21:30:22Z,2020-02-15T06:59:48Z +2003,74,1,6241,7.99,2005-07-11T14:40:48Z,2020-02-15T06:59:48Z +2004,74,1,6475,2.99,2005-07-12T01:36:57Z,2020-02-15T06:59:48Z +2005,74,1,7304,6.99,2005-07-27T12:56:56Z,2020-02-15T06:59:48Z +2006,74,2,8796,5.99,2005-07-29T21:09:11Z,2020-02-15T06:59:48Z +2007,74,2,9112,4.99,2005-07-30T09:06:31Z,2020-02-15T06:59:48Z +2008,74,2,10051,3.99,2005-07-31T19:14:20Z,2020-02-15T06:59:48Z +2009,74,1,10624,0.99,2005-08-01T15:27:05Z,2020-02-15T06:59:48Z +2010,74,2,12374,3.99,2005-08-18T08:07:45Z,2020-02-15T06:59:48Z +2011,74,2,12477,3.99,2005-08-18T12:25:01Z,2020-02-15T06:59:48Z +2012,74,2,13335,0.99,2005-08-19T20:03:18Z,2020-02-15T06:59:48Z +2013,74,2,13520,0.99,2005-08-20T02:41:46Z,2020-02-15T06:59:48Z +2014,74,1,13583,1.99,2005-08-20T05:29:45Z,2020-02-15T06:59:48Z +2015,74,2,13747,5.99,2005-08-20T10:56:06Z,2020-02-15T06:59:48Z +2016,74,1,15286,4.99,2005-08-22T19:17:56Z,2020-02-15T06:59:48Z +2017,74,2,15325,4.99,2005-08-22T20:27:38Z,2020-02-15T06:59:48Z +2018,74,2,15500,0.99,2005-08-23T02:39:37Z,2020-02-15T06:59:48Z +2019,74,2,15739,4.99,2005-08-23T11:56:22Z,2020-02-15T06:59:48Z +2020,74,1,16046,0.99,2005-08-23T22:26:47Z,2020-02-15T06:59:48Z +2021,75,1,180,4.99,2005-05-26T04:46:23Z,2020-02-15T06:59:48Z +2022,75,2,268,0.99,2005-05-26T16:19:08Z,2020-02-15T06:59:48Z +2023,75,1,1920,4.99,2005-06-17T06:00:23Z,2020-02-15T06:59:48Z +2024,75,1,2161,7.99,2005-06-17T23:39:50Z,2020-02-15T06:59:48Z +2025,75,2,2738,4.99,2005-06-19T15:56:30Z,2020-02-15T06:59:48Z +2026,75,2,3062,6.99,2005-06-20T13:50:00Z,2020-02-15T06:59:48Z +2027,75,1,3210,4.99,2005-06-21T01:00:25Z,2020-02-15T06:59:48Z +2028,75,1,3711,0.99,2005-07-06T10:46:15Z,2020-02-15T06:59:48Z +2029,75,2,4179,2.99,2005-07-07T10:17:15Z,2020-02-15T06:59:48Z +2030,75,2,4511,0.99,2005-07-08T02:36:21Z,2020-02-15T06:59:48Z +2031,75,1,4639,5.99,2005-07-08T08:57:21Z,2020-02-15T06:59:48Z +2032,75,2,5260,2.99,2005-07-09T14:05:45Z,2020-02-15T06:59:48Z +2033,75,2,6052,0.99,2005-07-11T03:51:27Z,2020-02-15T06:59:48Z +2034,75,1,6092,3.99,2005-07-11T05:51:31Z,2020-02-15T06:59:48Z +2035,75,1,6486,0.99,2005-07-12T02:09:36Z,2020-02-15T06:59:48Z +2036,75,2,6530,0.99,2005-07-12T04:33:19Z,2020-02-15T06:59:48Z +2037,75,2,6852,2.99,2005-07-12T19:33:49Z,2020-02-15T06:59:48Z +2038,75,1,7052,2.99,2005-07-27T03:36:38Z,2020-02-15T06:59:48Z +2039,75,1,7454,4.99,2005-07-27T18:27:26Z,2020-02-15T06:59:48Z +2040,75,1,7843,0.99,2005-07-28T09:10:22Z,2020-02-15T06:59:48Z +2041,75,2,7897,2.99,2005-07-28T11:01:51Z,2020-02-15T06:59:48Z +2042,75,2,8202,1.99,2005-07-28T23:11:45Z,2020-02-15T06:59:48Z +2043,75,1,8823,6.99,2005-07-29T22:22:12Z,2020-02-15T06:59:48Z +2044,75,2,9168,5.99,2005-07-30T11:31:17Z,2020-02-15T06:59:48Z +2045,75,2,9442,4.99,2005-07-30T21:44:31Z,2020-02-15T06:59:48Z +2046,75,2,9501,4.99,2005-07-30T23:59:21Z,2020-02-15T06:59:48Z +2047,75,1,9783,9.99,2005-07-31T10:15:46Z,2020-02-15T06:59:48Z +2048,75,2,10653,5.99,2005-08-01T16:28:07Z,2020-02-15T06:59:48Z +2049,75,1,10726,3.99,2005-08-01T19:14:53Z,2020-02-15T06:59:48Z +2050,75,1,10871,4.99,2005-08-02T00:27:24Z,2020-02-15T06:59:48Z +2051,75,1,11330,0.99,2005-08-02T16:45:33Z,2020-02-15T06:59:48Z +2052,75,1,12002,2.99,2005-08-17T18:56:02Z,2020-02-15T06:59:48Z +2053,75,2,12239,0.99,2005-08-18T03:26:42Z,2020-02-15T06:59:48Z +2054,75,1,12336,1.99,2005-08-18T06:59:41Z,2020-02-15T06:59:48Z +2055,75,1,12412,5.99,2005-08-18T09:49:52Z,2020-02-15T06:59:48Z +2056,75,1,12426,4.99,2005-08-18T10:24:11Z,2020-02-15T06:59:48Z +2057,75,1,12662,0.99,2005-08-18T19:10:41Z,2020-02-15T06:59:48Z +2058,75,2,15928,5.99,2005-08-23T18:23:24Z,2020-02-15T06:59:48Z +2059,75,2,13534,8.97,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2060,75,1,14488,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2061,75,2,15191,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2062,76,2,574,1.99,2005-05-28T10:44:28Z,2020-02-15T06:59:48Z +2063,76,1,926,0.99,2005-05-30T12:15:54Z,2020-02-15T06:59:48Z +2064,76,2,1487,0.99,2005-06-15T21:27:42Z,2020-02-15T06:59:48Z +2065,76,1,1791,6.99,2005-06-16T20:04:28Z,2020-02-15T06:59:48Z +2066,76,2,2111,0.99,2005-06-17T19:47:21Z,2020-02-15T06:59:48Z +2067,76,2,2397,1.99,2005-06-18T15:51:25Z,2020-02-15T06:59:48Z +2068,76,1,2894,0.99,2005-06-20T02:22:42Z,2020-02-15T06:59:48Z +2069,76,2,3416,0.99,2005-06-21T17:05:29Z,2020-02-15T06:59:48Z +2070,76,2,4099,4.99,2005-07-07T06:20:33Z,2020-02-15T06:59:48Z +2071,76,2,5571,0.99,2005-07-10T03:48:20Z,2020-02-15T06:59:48Z +2072,76,2,6789,0.99,2005-07-12T16:34:40Z,2020-02-15T06:59:48Z +2073,76,2,8253,6.99,2005-07-29T00:57:06Z,2020-02-15T06:59:48Z +2074,76,2,8357,2.99,2005-07-29T04:59:44Z,2020-02-15T06:59:48Z +2075,76,2,8405,3.99,2005-07-29T06:28:19Z,2020-02-15T06:59:48Z +2076,76,1,8935,0.99,2005-07-30T02:38:45Z,2020-02-15T06:59:48Z +2077,76,2,9312,2.99,2005-07-30T16:59:17Z,2020-02-15T06:59:48Z +2078,76,2,10082,0.99,2005-07-31T20:09:32Z,2020-02-15T06:59:48Z +2079,76,2,10795,4.99,2005-08-01T21:56:37Z,2020-02-15T06:59:48Z +2080,76,2,11172,7.99,2005-08-02T10:27:52Z,2020-02-15T06:59:48Z +2081,76,2,13697,3.99,2005-08-20T09:21:08Z,2020-02-15T06:59:48Z +2082,76,1,14637,2.99,2005-08-21T19:01:00Z,2020-02-15T06:59:48Z +2083,76,2,15169,4.99,2005-08-22T15:21:56Z,2020-02-15T06:59:48Z +2084,76,1,15566,10.99,2005-08-23T05:17:23Z,2020-02-15T06:59:48Z +2085,77,2,319,2.99,2005-05-26T23:52:13Z,2020-02-15T06:59:48Z +2086,77,1,419,1.99,2005-05-27T15:15:11Z,2020-02-15T06:59:48Z +2087,77,2,561,2.99,2005-05-28T08:54:06Z,2020-02-15T06:59:48Z +2088,77,1,586,0.99,2005-05-28T12:03:00Z,2020-02-15T06:59:48Z +2089,77,1,760,5.99,2005-05-29T11:07:25Z,2020-02-15T06:59:48Z +2090,77,1,1710,4.99,2005-06-16T14:11:24Z,2020-02-15T06:59:48Z +2091,77,1,2354,3.99,2005-06-18T12:54:18Z,2020-02-15T06:59:48Z +2092,77,2,2452,8.99,2005-06-18T19:29:21Z,2020-02-15T06:59:48Z +2093,77,1,3151,2.99,2005-06-20T20:36:53Z,2020-02-15T06:59:48Z +2094,77,2,3238,0.99,2005-06-21T02:48:21Z,2020-02-15T06:59:48Z +2095,77,2,4928,0.99,2005-07-08T22:05:41Z,2020-02-15T06:59:48Z +2096,77,2,6168,0.99,2005-07-11T10:21:38Z,2020-02-15T06:59:48Z +2097,77,2,6390,2.99,2005-07-11T22:19:23Z,2020-02-15T06:59:48Z +2098,77,1,7406,3.99,2005-07-27T16:25:45Z,2020-02-15T06:59:48Z +2099,77,1,7710,0.99,2005-07-28T04:24:07Z,2020-02-15T06:59:48Z +2100,77,2,8942,4.99,2005-07-30T03:01:07Z,2020-02-15T06:59:48Z +2101,77,1,9811,0.99,2005-07-31T11:23:45Z,2020-02-15T06:59:48Z +2102,77,2,10184,4.99,2005-08-01T00:09:33Z,2020-02-15T06:59:48Z +2103,77,1,10886,2.99,2005-08-02T00:52:34Z,2020-02-15T06:59:48Z +2104,77,1,10895,0.99,2005-08-02T01:16:59Z,2020-02-15T06:59:48Z +2105,77,2,10991,0.99,2005-08-02T04:41:12Z,2020-02-15T06:59:48Z +2106,77,1,11469,2.99,2005-08-02T21:48:09Z,2020-02-15T06:59:48Z +2107,77,2,11767,7.99,2005-08-17T10:00:40Z,2020-02-15T06:59:48Z +2108,77,1,12065,6.99,2005-08-17T21:31:46Z,2020-02-15T06:59:48Z +2109,77,2,12328,1.99,2005-08-18T06:43:56Z,2020-02-15T06:59:48Z +2110,77,2,13752,9.99,2005-08-20T11:17:45Z,2020-02-15T06:59:48Z +2111,77,2,14530,4.99,2005-08-21T15:10:50Z,2020-02-15T06:59:48Z +2112,77,2,15359,2.99,2005-08-22T21:34:00Z,2020-02-15T06:59:48Z +2113,78,1,2207,2.99,2005-06-18T02:19:21Z,2020-02-15T06:59:48Z +2114,78,2,2949,6.99,2005-06-20T06:05:53Z,2020-02-15T06:59:48Z +2115,78,2,3248,7.99,2005-06-21T03:12:21Z,2020-02-15T06:59:48Z +2116,78,1,3593,4.99,2005-07-06T04:39:52Z,2020-02-15T06:59:48Z +2117,78,2,4227,5.99,2005-07-07T12:41:36Z,2020-02-15T06:59:48Z +2118,78,2,4627,2.99,2005-07-08T08:24:39Z,2020-02-15T06:59:48Z +2119,78,2,4778,0.99,2005-07-08T15:51:51Z,2020-02-15T06:59:48Z +2120,78,1,5078,1.99,2005-07-09T05:20:24Z,2020-02-15T06:59:48Z +2121,78,2,5604,0.99,2005-07-10T05:05:00Z,2020-02-15T06:59:48Z +2122,78,1,6005,0.99,2005-07-11T01:36:42Z,2020-02-15T06:59:48Z +2123,78,1,6344,4.99,2005-07-11T20:04:43Z,2020-02-15T06:59:48Z +2124,78,2,7200,1.99,2005-07-27T08:57:38Z,2020-02-15T06:59:48Z +2125,78,2,7747,4.99,2005-07-28T05:50:11Z,2020-02-15T06:59:48Z +2126,78,2,7926,3.99,2005-07-28T12:13:02Z,2020-02-15T06:59:48Z +2127,78,1,7957,6.99,2005-07-28T13:34:08Z,2020-02-15T06:59:48Z +2128,78,2,8920,4.99,2005-07-30T01:59:24Z,2020-02-15T06:59:48Z +2129,78,1,9068,5.99,2005-07-30T07:31:45Z,2020-02-15T06:59:48Z +2130,78,2,10350,3.99,2005-08-01T05:30:05Z,2020-02-15T06:59:48Z +2131,78,1,10590,2.99,2005-08-01T14:11:53Z,2020-02-15T06:59:48Z +2132,78,1,10831,7.99,2005-08-01T23:22:45Z,2020-02-15T06:59:48Z +2133,78,1,10942,10.99,2005-08-02T03:16:31Z,2020-02-15T06:59:48Z +2134,78,2,12474,8.99,2005-08-18T12:10:03Z,2020-02-15T06:59:48Z +2135,78,2,12653,4.99,2005-08-18T18:53:17Z,2020-02-15T06:59:48Z +2136,78,2,13124,5.99,2005-08-19T11:55:59Z,2020-02-15T06:59:48Z +2137,78,1,13432,0.99,2005-08-19T23:29:06Z,2020-02-15T06:59:48Z +2138,78,2,13792,5.99,2005-08-20T12:21:37Z,2020-02-15T06:59:48Z +2139,78,2,14620,2.99,2005-08-21T18:10:43Z,2020-02-15T06:59:48Z +2140,78,1,14716,0.99,2005-08-21T21:29:55Z,2020-02-15T06:59:48Z +2141,78,1,14810,2.99,2005-08-22T01:08:34Z,2020-02-15T06:59:48Z +2142,78,2,14862,7.99,2005-08-22T02:51:41Z,2020-02-15T06:59:48Z +2143,78,2,16039,2.99,2005-08-23T22:18:51Z,2020-02-15T06:59:48Z +2144,79,1,840,4.99,2005-05-30T00:28:41Z,2020-02-15T06:59:48Z +2145,79,1,859,2.99,2005-05-30T02:36:20Z,2020-02-15T06:59:48Z +2146,79,1,928,2.99,2005-05-30T12:27:14Z,2020-02-15T06:59:48Z +2147,79,2,3096,4.99,2005-06-20T16:17:56Z,2020-02-15T06:59:48Z +2148,79,2,3178,2.99,2005-06-20T22:35:12Z,2020-02-15T06:59:48Z +2149,79,1,3641,0.99,2005-07-06T07:17:09Z,2020-02-15T06:59:48Z +2150,79,1,3748,2.99,2005-07-06T12:11:22Z,2020-02-15T06:59:48Z +2151,79,2,4049,4.99,2005-07-07T03:34:53Z,2020-02-15T06:59:48Z +2152,79,1,4530,4.99,2005-07-08T03:27:05Z,2020-02-15T06:59:48Z +2153,79,2,4736,4.99,2005-07-08T13:22:55Z,2020-02-15T06:59:48Z +2154,79,2,5205,2.99,2005-07-09T10:56:37Z,2020-02-15T06:59:48Z +2155,79,1,5555,2.99,2005-07-10T03:08:55Z,2020-02-15T06:59:48Z +2156,79,2,6162,5.99,2005-07-11T10:12:30Z,2020-02-15T06:59:48Z +2157,79,1,7220,9.99,2005-07-27T09:35:54Z,2020-02-15T06:59:48Z +2158,79,1,8849,2.99,2005-07-29T23:21:01Z,2020-02-15T06:59:48Z +2159,79,1,9814,1.99,2005-07-31T11:29:46Z,2020-02-15T06:59:48Z +2160,79,2,9845,6.99,2005-07-31T12:28:05Z,2020-02-15T06:59:48Z +2161,79,1,9989,0.99,2005-07-31T17:22:39Z,2020-02-15T06:59:48Z +2162,79,1,10676,2.99,2005-08-01T17:14:15Z,2020-02-15T06:59:48Z +2163,79,2,11641,4.99,2005-08-17T04:45:39Z,2020-02-15T06:59:48Z +2164,79,2,13026,2.99,2005-08-19T08:22:45Z,2020-02-15T06:59:48Z +2165,79,1,14179,0.99,2005-08-21T03:14:27Z,2020-02-15T06:59:48Z +2166,80,1,2596,2.99,2005-06-19T05:48:26Z,2020-02-15T06:59:48Z +2167,80,2,2805,8.99,2005-06-19T19:29:17Z,2020-02-15T06:59:48Z +2168,80,1,3367,3.99,2005-06-21T13:08:21Z,2020-02-15T06:59:48Z +2169,80,2,3623,4.99,2005-07-06T06:05:23Z,2020-02-15T06:59:48Z +2170,80,2,4268,8.99,2005-07-07T14:36:05Z,2020-02-15T06:59:48Z +2171,80,2,4299,3.99,2005-07-07T16:33:48Z,2020-02-15T06:59:48Z +2172,80,1,4688,5.99,2005-07-08T11:03:29Z,2020-02-15T06:59:48Z +2173,80,2,5420,3.99,2005-07-09T20:48:42Z,2020-02-15T06:59:48Z +2174,80,2,5452,4.99,2005-07-09T22:23:21Z,2020-02-15T06:59:48Z +2175,80,1,6199,5.99,2005-07-11T12:16:03Z,2020-02-15T06:59:48Z +2176,80,2,6417,6.99,2005-07-11T23:35:11Z,2020-02-15T06:59:48Z +2177,80,2,6707,1.99,2005-07-12T13:07:55Z,2020-02-15T06:59:48Z +2178,80,2,7558,0.99,2005-07-27T22:19:08Z,2020-02-15T06:59:48Z +2179,80,1,8509,5.99,2005-07-29T09:38:19Z,2020-02-15T06:59:48Z +2180,80,1,8884,6.99,2005-07-30T00:26:22Z,2020-02-15T06:59:48Z +2181,80,1,10313,0.99,2005-08-01T04:29:29Z,2020-02-15T06:59:48Z +2182,80,1,10656,6.99,2005-08-01T16:38:04Z,2020-02-15T06:59:48Z +2183,80,1,10690,8.99,2005-08-01T18:05:54Z,2020-02-15T06:59:48Z +2184,80,2,11101,5.99,2005-08-02T08:08:24Z,2020-02-15T06:59:48Z +2185,80,2,11839,0.99,2005-08-17T13:08:45Z,2020-02-15T06:59:48Z +2186,80,1,11850,1.99,2005-08-17T13:30:15Z,2020-02-15T06:59:48Z +2187,80,2,12468,2.99,2005-08-18T11:41:47Z,2020-02-15T06:59:48Z +2188,80,1,13352,4.99,2005-08-19T20:51:40Z,2020-02-15T06:59:48Z +2189,80,2,13395,0.99,2005-08-19T22:05:40Z,2020-02-15T06:59:48Z +2190,80,1,13724,4.99,2005-08-20T10:07:28Z,2020-02-15T06:59:48Z +2191,80,2,13851,0.99,2005-08-20T14:44:22Z,2020-02-15T06:59:48Z +2192,80,1,14916,0.99,2005-08-22T04:56:57Z,2020-02-15T06:59:48Z +2193,80,1,15648,8.99,2005-08-23T08:27:57Z,2020-02-15T06:59:48Z +2194,80,1,16012,5.99,2005-08-23T21:13:39Z,2020-02-15T06:59:48Z +2195,80,2,12457,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2196,81,1,289,0.99,2005-05-26T20:01:09Z,2020-02-15T06:59:48Z +2197,81,1,2714,1.99,2005-06-19T14:26:09Z,2020-02-15T06:59:48Z +2198,81,1,2854,5.99,2005-06-19T23:11:48Z,2020-02-15T06:59:48Z +2199,81,1,3229,4.99,2005-06-21T02:20:41Z,2020-02-15T06:59:48Z +2200,81,1,3879,2.99,2005-07-06T18:31:20Z,2020-02-15T06:59:48Z +2201,81,2,4983,9.99,2005-07-09T00:34:16Z,2020-02-15T06:59:48Z +2202,81,1,5468,0.99,2005-07-09T23:06:09Z,2020-02-15T06:59:48Z +2203,81,2,7130,4.99,2005-07-27T06:23:36Z,2020-02-15T06:59:48Z +2204,81,1,7709,0.99,2005-07-28T04:22:14Z,2020-02-15T06:59:48Z +2205,81,2,9454,3.99,2005-07-30T22:20:09Z,2020-02-15T06:59:48Z +2206,81,2,10456,0.99,2005-08-01T09:17:21Z,2020-02-15T06:59:48Z +2207,81,1,11837,5.99,2005-08-17T13:04:41Z,2020-02-15T06:59:48Z +2208,81,2,12181,4.99,2005-08-18T01:28:18Z,2020-02-15T06:59:48Z +2209,81,2,13820,5.99,2005-08-20T13:26:37Z,2020-02-15T06:59:48Z +2210,81,1,14128,4.99,2005-08-21T01:35:58Z,2020-02-15T06:59:48Z +2211,81,1,14642,3.99,2005-08-21T19:09:40Z,2020-02-15T06:59:48Z +2212,81,2,14748,7.99,2005-08-21T23:02:02Z,2020-02-15T06:59:48Z +2213,81,1,15224,5.99,2005-08-22T17:18:05Z,2020-02-15T06:59:48Z +2214,81,1,15602,4.99,2005-08-23T06:41:07Z,2020-02-15T06:59:48Z +2215,81,1,15823,4.99,2005-08-23T15:08:00Z,2020-02-15T06:59:48Z +2216,81,1,15858,2.99,2005-08-23T16:07:15Z,2020-02-15T06:59:48Z +2217,81,2,15884,1.99,2005-08-23T16:45:28Z,2020-02-15T06:59:48Z +2218,82,2,145,2.99,2005-05-25T23:59:03Z,2020-02-15T06:59:48Z +2219,82,2,288,8.99,2005-05-26T19:47:49Z,2020-02-15T06:59:48Z +2220,82,1,1438,0.99,2005-06-15T18:38:51Z,2020-02-15T06:59:48Z +2221,82,2,1570,0.99,2005-06-16T03:21:33Z,2020-02-15T06:59:48Z +2222,82,1,2506,8.99,2005-06-18T23:29:53Z,2020-02-15T06:59:48Z +2223,82,1,2819,8.99,2005-06-19T20:13:33Z,2020-02-15T06:59:48Z +2224,82,2,3332,0.99,2005-06-21T09:55:12Z,2020-02-15T06:59:48Z +2225,82,1,3680,2.99,2005-07-06T09:16:10Z,2020-02-15T06:59:48Z +2226,82,1,4598,6.99,2005-07-08T06:46:26Z,2020-02-15T06:59:48Z +2227,82,2,5746,4.99,2005-07-10T12:15:12Z,2020-02-15T06:59:48Z +2228,82,2,6082,6.99,2005-07-11T05:12:41Z,2020-02-15T06:59:48Z +2229,82,2,6708,6.99,2005-07-12T13:10:55Z,2020-02-15T06:59:48Z +2230,82,2,7733,9.99,2005-07-28T05:04:47Z,2020-02-15T06:59:48Z +2231,82,2,7873,0.99,2005-07-28T10:19:46Z,2020-02-15T06:59:48Z +2232,82,1,8487,4.99,2005-07-29T08:53:49Z,2020-02-15T06:59:48Z +2233,82,2,9277,3.99,2005-07-30T15:13:45Z,2020-02-15T06:59:48Z +2234,82,1,9305,8.99,2005-07-30T16:45:56Z,2020-02-15T06:59:48Z +2235,82,1,9447,6.99,2005-07-30T21:54:22Z,2020-02-15T06:59:48Z +2236,82,1,11093,4.99,2005-08-02T07:59:49Z,2020-02-15T06:59:48Z +2237,82,2,11688,5.99,2005-08-17T06:41:58Z,2020-02-15T06:59:48Z +2238,82,1,12470,3.99,2005-08-18T11:55:42Z,2020-02-15T06:59:48Z +2239,82,1,13032,0.99,2005-08-19T08:31:50Z,2020-02-15T06:59:48Z +2240,82,2,13847,6.99,2005-08-20T14:33:59Z,2020-02-15T06:59:48Z +2241,82,2,14518,0.99,2005-08-21T14:58:58Z,2020-02-15T06:59:48Z +2242,82,2,14892,4.99,2005-08-22T04:15:05Z,2020-02-15T06:59:48Z +2243,82,2,15516,3.99,2005-08-23T03:12:54Z,2020-02-15T06:59:48Z +2244,83,2,222,0.99,2005-05-26T10:14:38Z,2020-02-15T06:59:48Z +2245,83,2,950,0.99,2005-05-30T16:06:08Z,2020-02-15T06:59:48Z +2246,83,2,989,2.99,2005-05-30T23:11:51Z,2020-02-15T06:59:48Z +2247,83,1,1354,5.99,2005-06-15T13:13:49Z,2020-02-15T06:59:48Z +2248,83,1,1591,5.99,2005-06-16T05:12:37Z,2020-02-15T06:59:48Z +2249,83,2,1617,3.99,2005-06-16T07:06:06Z,2020-02-15T06:59:48Z +2250,83,2,3230,4.99,2005-06-21T02:23:16Z,2020-02-15T06:59:48Z +2251,83,2,3722,6.99,2005-07-06T11:10:27Z,2020-02-15T06:59:48Z +2252,83,1,3754,2.99,2005-07-06T12:35:44Z,2020-02-15T06:59:48Z +2253,83,1,5218,0.99,2005-07-09T11:57:12Z,2020-02-15T06:59:48Z +2254,83,2,5394,6.99,2005-07-09T19:36:15Z,2020-02-15T06:59:48Z +2255,83,2,6194,2.99,2005-07-11T11:51:00Z,2020-02-15T06:59:48Z +2256,83,2,6861,2.99,2005-07-12T19:56:52Z,2020-02-15T06:59:48Z +2257,83,2,7721,0.99,2005-07-28T04:42:58Z,2020-02-15T06:59:48Z +2258,83,2,8729,4.99,2005-07-29T18:23:02Z,2020-02-15T06:59:48Z +2259,83,1,9867,1.99,2005-07-31T13:17:04Z,2020-02-15T06:59:48Z +2260,83,1,11408,0.99,2005-08-02T19:25:13Z,2020-02-15T06:59:48Z +2261,83,1,11565,5.99,2005-08-17T01:28:05Z,2020-02-15T06:59:48Z +2262,83,2,11777,4.99,2005-08-17T10:27:19Z,2020-02-15T06:59:48Z +2263,83,1,12258,4.99,2005-08-18T04:11:13Z,2020-02-15T06:59:48Z +2264,83,2,12985,5.99,2005-08-19T07:08:05Z,2020-02-15T06:59:48Z +2265,83,1,13875,4.99,2005-08-20T15:13:11Z,2020-02-15T06:59:48Z +2266,83,2,15498,4.99,2005-08-23T02:33:27Z,2020-02-15T06:59:48Z +2267,83,2,15737,5.99,2005-08-23T11:52:18Z,2020-02-15T06:59:48Z +2268,83,2,11563,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2269,84,2,408,0.99,2005-05-27T13:57:39Z,2020-02-15T06:59:48Z +2270,84,1,739,6.99,2005-05-29T08:28:18Z,2020-02-15T06:59:48Z +2271,84,1,834,4.99,2005-05-29T23:24:30Z,2020-02-15T06:59:48Z +2272,84,2,1195,0.99,2005-06-15T01:37:38Z,2020-02-15T06:59:48Z +2273,84,2,1320,4.99,2005-06-15T10:42:13Z,2020-02-15T06:59:48Z +2274,84,2,1815,0.99,2005-06-16T21:16:07Z,2020-02-15T06:59:48Z +2275,84,1,2012,5.99,2005-06-17T11:57:15Z,2020-02-15T06:59:48Z +2276,84,2,2042,0.99,2005-06-17T14:31:02Z,2020-02-15T06:59:48Z +2277,84,2,2409,0.99,2005-06-18T16:53:33Z,2020-02-15T06:59:48Z +2278,84,2,4079,6.99,2005-07-07T05:06:27Z,2020-02-15T06:59:48Z +2279,84,2,4838,6.99,2005-07-08T18:11:00Z,2020-02-15T06:59:48Z +2280,84,1,5221,5.99,2005-07-09T12:02:23Z,2020-02-15T06:59:48Z +2281,84,1,5237,0.99,2005-07-09T12:56:58Z,2020-02-15T06:59:48Z +2282,84,1,5971,5.99,2005-07-11T00:05:58Z,2020-02-15T06:59:48Z +2283,84,2,6259,2.99,2005-07-11T15:25:52Z,2020-02-15T06:59:48Z +2284,84,2,6415,9.99,2005-07-11T23:27:52Z,2020-02-15T06:59:48Z +2285,84,1,7854,2.99,2005-07-28T09:42:31Z,2020-02-15T06:59:48Z +2286,84,2,8019,4.99,2005-07-28T15:37:43Z,2020-02-15T06:59:48Z +2287,84,1,8654,8.99,2005-07-29T15:04:27Z,2020-02-15T06:59:48Z +2288,84,2,9074,2.99,2005-07-30T07:50:10Z,2020-02-15T06:59:48Z +2289,84,2,9680,4.99,2005-07-31T06:41:46Z,2020-02-15T06:59:48Z +2290,84,2,10540,0.99,2005-08-01T12:24:42Z,2020-02-15T06:59:48Z +2291,84,1,10872,2.99,2005-08-02T00:27:50Z,2020-02-15T06:59:48Z +2292,84,2,11220,4.99,2005-08-02T12:31:41Z,2020-02-15T06:59:48Z +2293,84,2,11424,3.99,2005-08-02T19:57:42Z,2020-02-15T06:59:48Z +2294,84,2,11453,7.99,2005-08-02T21:00:05Z,2020-02-15T06:59:48Z +2295,84,2,11899,0.99,2005-08-17T15:29:12Z,2020-02-15T06:59:48Z +2296,84,2,11960,4.99,2005-08-17T17:24:30Z,2020-02-15T06:59:48Z +2297,84,2,12364,4.99,2005-08-18T07:55:09Z,2020-02-15T06:59:48Z +2298,84,2,13115,2.99,2005-08-19T11:27:43Z,2020-02-15T06:59:48Z +2299,84,1,14330,5.99,2005-08-21T08:29:20Z,2020-02-15T06:59:48Z +2300,84,1,15190,4.99,2005-08-22T15:57:38Z,2020-02-15T06:59:48Z +2301,84,1,15255,2.99,2005-08-22T18:16:50Z,2020-02-15T06:59:48Z +2302,85,1,690,9.99,2005-05-29T00:54:53Z,2020-02-15T06:59:48Z +2303,85,2,908,4.99,2005-05-30T10:38:37Z,2020-02-15T06:59:48Z +2304,85,1,1685,1.99,2005-06-16T12:06:57Z,2020-02-15T06:59:48Z +2305,85,1,2131,5.99,2005-06-17T21:02:25Z,2020-02-15T06:59:48Z +2306,85,2,2794,0.99,2005-06-19T18:53:05Z,2020-02-15T06:59:48Z +2307,85,1,3165,4.99,2005-06-20T21:29:17Z,2020-02-15T06:59:48Z +2308,85,1,3307,1.99,2005-06-21T07:52:30Z,2020-02-15T06:59:48Z +2309,85,2,3418,3.99,2005-06-21T17:06:38Z,2020-02-15T06:59:48Z +2310,85,2,4451,0.99,2005-07-07T23:29:54Z,2020-02-15T06:59:48Z +2311,85,1,4705,2.99,2005-07-08T11:50:38Z,2020-02-15T06:59:48Z +2312,85,1,5051,4.99,2005-07-09T03:57:53Z,2020-02-15T06:59:48Z +2313,85,1,5519,0.99,2005-07-10T01:18:32Z,2020-02-15T06:59:48Z +2314,85,2,7906,0.99,2005-07-28T11:31:42Z,2020-02-15T06:59:48Z +2315,85,2,9427,7.99,2005-07-30T21:16:33Z,2020-02-15T06:59:48Z +2316,85,2,9957,4.99,2005-07-31T16:03:55Z,2020-02-15T06:59:48Z +2317,85,1,9985,2.99,2005-07-31T17:14:47Z,2020-02-15T06:59:48Z +2318,85,1,10328,4.99,2005-08-01T04:56:10Z,2020-02-15T06:59:48Z +2319,85,1,10548,0.99,2005-08-01T12:44:32Z,2020-02-15T06:59:48Z +2320,85,2,11067,8.99,2005-08-02T07:03:24Z,2020-02-15T06:59:48Z +2321,85,2,12036,0.99,2005-08-17T20:19:06Z,2020-02-15T06:59:48Z +2322,85,1,12456,4.99,2005-08-18T11:21:51Z,2020-02-15T06:59:48Z +2323,85,1,13727,3.99,2005-08-20T10:08:53Z,2020-02-15T06:59:48Z +2324,85,2,13733,0.99,2005-08-20T10:25:12Z,2020-02-15T06:59:48Z +2325,86,1,66,1.99,2005-05-25T09:35:12Z,2020-02-15T06:59:48Z +2326,86,2,1640,4.99,2005-06-16T08:35:39Z,2020-02-15T06:59:48Z +2327,86,2,1822,0.99,2005-06-16T21:43:45Z,2020-02-15T06:59:48Z +2328,86,2,1924,2.99,2005-06-17T06:13:34Z,2020-02-15T06:59:48Z +2329,86,1,2141,4.99,2005-06-17T21:41:34Z,2020-02-15T06:59:48Z +2330,86,1,2518,4.99,2005-06-19T00:16:23Z,2020-02-15T06:59:48Z +2331,86,1,3207,0.99,2005-06-21T00:43:16Z,2020-02-15T06:59:48Z +2332,86,2,3270,4.99,2005-06-21T05:07:31Z,2020-02-15T06:59:48Z +2333,86,1,3611,0.99,2005-07-06T05:37:18Z,2020-02-15T06:59:48Z +2334,86,2,3945,4.99,2005-07-06T21:35:00Z,2020-02-15T06:59:48Z +2335,86,1,4235,2.99,2005-07-07T13:05:52Z,2020-02-15T06:59:48Z +2336,86,1,4571,9.99,2005-07-08T05:34:41Z,2020-02-15T06:59:48Z +2337,86,2,5295,0.99,2005-07-09T15:25:06Z,2020-02-15T06:59:48Z +2338,86,1,5752,8.99,2005-07-10T12:27:38Z,2020-02-15T06:59:48Z +2339,86,2,6872,7.99,2005-07-12T20:15:04Z,2020-02-15T06:59:48Z +2340,86,1,7231,2.99,2005-07-27T10:01:51Z,2020-02-15T06:59:48Z +2341,86,1,7874,10.99,2005-07-28T10:21:52Z,2020-02-15T06:59:48Z +2342,86,2,8803,5.99,2005-07-29T21:26:24Z,2020-02-15T06:59:48Z +2343,86,1,8850,2.99,2005-07-29T23:24:20Z,2020-02-15T06:59:48Z +2344,86,2,9376,4.99,2005-07-30T19:11:49Z,2020-02-15T06:59:48Z +2345,86,2,10252,8.99,2005-08-01T02:39:39Z,2020-02-15T06:59:48Z +2346,86,2,10536,4.99,2005-08-01T12:21:53Z,2020-02-15T06:59:48Z +2347,86,2,10584,6.99,2005-08-01T13:58:47Z,2020-02-15T06:59:48Z +2348,86,2,11916,0.99,2005-08-17T16:05:51Z,2020-02-15T06:59:48Z +2349,86,1,12198,2.99,2005-08-18T02:09:20Z,2020-02-15T06:59:48Z +2350,86,2,12870,3.99,2005-08-19T02:54:38Z,2020-02-15T06:59:48Z +2351,86,2,13338,4.99,2005-08-19T20:09:59Z,2020-02-15T06:59:48Z +2352,86,1,13535,4.99,2005-08-20T03:30:25Z,2020-02-15T06:59:48Z +2353,86,1,13874,2.99,2005-08-20T15:11:48Z,2020-02-15T06:59:48Z +2354,86,2,14122,1.99,2005-08-21T01:29:01Z,2020-02-15T06:59:48Z +2355,86,2,15099,4.99,2005-08-22T11:49:16Z,2020-02-15T06:59:48Z +2356,86,1,15715,1.99,2005-08-23T10:57:40Z,2020-02-15T06:59:48Z +2357,86,2,15940,5.99,2005-08-23T18:45:06Z,2020-02-15T06:59:48Z +2358,87,2,451,4.99,2005-05-27T19:27:54Z,2020-02-15T06:59:48Z +2359,87,1,674,2.99,2005-05-28T22:11:35Z,2020-02-15T06:59:48Z +2360,87,2,1580,4.99,2005-06-16T04:12:25Z,2020-02-15T06:59:48Z +2361,87,1,1904,2.99,2005-06-17T04:45:41Z,2020-02-15T06:59:48Z +2362,87,2,2408,2.99,2005-06-18T16:50:44Z,2020-02-15T06:59:48Z +2363,87,1,2516,4.99,2005-06-19T00:03:28Z,2020-02-15T06:59:48Z +2364,87,2,3122,9.99,2005-06-20T18:25:57Z,2020-02-15T06:59:48Z +2365,87,1,5084,7.99,2005-07-09T05:33:27Z,2020-02-15T06:59:48Z +2366,87,1,5628,3.99,2005-07-10T05:56:40Z,2020-02-15T06:59:48Z +2367,87,2,5700,4.99,2005-07-10T09:49:42Z,2020-02-15T06:59:48Z +2368,87,1,6638,4.99,2005-07-12T09:58:02Z,2020-02-15T06:59:48Z +2369,87,2,7599,2.99,2005-07-27T23:38:46Z,2020-02-15T06:59:48Z +2370,87,2,8187,7.99,2005-07-28T22:33:53Z,2020-02-15T06:59:48Z +2371,87,1,8286,5.99,2005-07-29T02:02:46Z,2020-02-15T06:59:48Z +2372,87,2,8323,4.99,2005-07-29T03:52:59Z,2020-02-15T06:59:48Z +2373,87,2,9060,0.99,2005-07-30T07:20:36Z,2020-02-15T06:59:48Z +2374,87,1,9348,2.99,2005-07-30T18:17:09Z,2020-02-15T06:59:48Z +2375,87,2,9364,8.99,2005-07-30T18:44:44Z,2020-02-15T06:59:48Z +2376,87,2,10205,4.99,2005-08-01T00:48:24Z,2020-02-15T06:59:48Z +2377,87,1,10387,4.99,2005-08-01T06:42:31Z,2020-02-15T06:59:48Z +2378,87,1,12232,0.99,2005-08-18T03:14:14Z,2020-02-15T06:59:48Z +2379,87,1,12257,8.99,2005-08-18T04:11:03Z,2020-02-15T06:59:48Z +2380,87,1,12264,5.99,2005-08-18T04:17:33Z,2020-02-15T06:59:48Z +2381,87,1,13479,0.99,2005-08-20T01:09:11Z,2020-02-15T06:59:48Z +2382,87,1,13906,0.99,2005-08-20T16:16:03Z,2020-02-15T06:59:48Z +2383,87,2,14024,10.99,2005-08-20T21:13:58Z,2020-02-15T06:59:48Z +2384,87,1,14566,2.99,2005-08-21T16:25:05Z,2020-02-15T06:59:48Z +2385,87,1,15876,2.99,2005-08-23T16:32:10Z,2020-02-15T06:59:48Z +2386,87,2,15890,4.99,2005-08-23T16:58:12Z,2020-02-15T06:59:48Z +2387,87,2,12719,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2388,88,2,36,2.99,2005-05-25T04:36:26Z,2020-02-15T06:59:48Z +2389,88,1,1433,2.99,2005-06-15T18:30:00Z,2020-02-15T06:59:48Z +2390,88,1,2483,7.99,2005-06-18T21:22:23Z,2020-02-15T06:59:48Z +2391,88,1,2878,2.99,2005-06-20T01:09:14Z,2020-02-15T06:59:48Z +2392,88,2,3524,0.99,2005-07-06T01:01:51Z,2020-02-15T06:59:48Z +2393,88,2,3620,0.99,2005-07-06T06:01:50Z,2020-02-15T06:59:48Z +2394,88,2,3673,5.99,2005-07-06T09:02:09Z,2020-02-15T06:59:48Z +2395,88,1,3846,5.99,2005-07-06T16:43:10Z,2020-02-15T06:59:48Z +2396,88,1,6643,1.99,2005-07-12T10:39:22Z,2020-02-15T06:59:48Z +2397,88,1,6916,4.99,2005-07-12T22:29:18Z,2020-02-15T06:59:48Z +2398,88,1,7088,5.99,2005-07-27T04:42:28Z,2020-02-15T06:59:48Z +2399,88,1,7621,8.99,2005-07-28T00:34:06Z,2020-02-15T06:59:48Z +2400,88,1,8296,2.99,2005-07-29T02:43:25Z,2020-02-15T06:59:48Z +2401,88,2,8526,2.99,2005-07-29T10:20:48Z,2020-02-15T06:59:48Z +2402,88,1,8692,2.99,2005-07-29T16:43:39Z,2020-02-15T06:59:48Z +2403,88,1,10424,0.99,2005-08-01T08:22:54Z,2020-02-15T06:59:48Z +2404,88,1,11056,6.99,2005-08-02T06:36:27Z,2020-02-15T06:59:48Z +2405,88,2,14097,2.99,2005-08-21T00:28:48Z,2020-02-15T06:59:48Z +2406,88,2,14827,5.99,2005-08-22T01:32:32Z,2020-02-15T06:59:48Z +2407,88,2,15098,3.99,2005-08-22T11:48:19Z,2020-02-15T06:59:48Z +2408,88,1,15898,4.99,2005-08-23T17:13:01Z,2020-02-15T06:59:48Z +2409,89,2,141,2.99,2005-05-25T23:34:53Z,2020-02-15T06:59:48Z +2410,89,2,588,0.99,2005-05-28T12:08:37Z,2020-02-15T06:59:48Z +2411,89,1,740,5.99,2005-05-29T08:30:36Z,2020-02-15T06:59:48Z +2412,89,1,1252,8.99,2005-06-15T06:05:18Z,2020-02-15T06:59:48Z +2413,89,2,1407,7.99,2005-06-15T16:45:07Z,2020-02-15T06:59:48Z +2414,89,1,1948,4.99,2005-06-17T08:06:53Z,2020-02-15T06:59:48Z +2415,89,1,2523,0.99,2005-06-19T00:45:56Z,2020-02-15T06:59:48Z +2416,89,1,2835,7.99,2005-06-19T21:44:11Z,2020-02-15T06:59:48Z +2417,89,2,4152,4.99,2005-07-07T08:50:33Z,2020-02-15T06:59:48Z +2418,89,1,4488,0.99,2005-07-08T01:22:23Z,2020-02-15T06:59:48Z +2419,89,1,4764,8.99,2005-07-08T15:01:25Z,2020-02-15T06:59:48Z +2420,89,2,5144,7.99,2005-07-09T08:09:53Z,2020-02-15T06:59:48Z +2421,89,2,5436,2.99,2005-07-09T21:31:11Z,2020-02-15T06:59:48Z +2422,89,1,5483,2.99,2005-07-09T23:54:09Z,2020-02-15T06:59:48Z +2423,89,1,6772,2.99,2005-07-12T15:55:35Z,2020-02-15T06:59:48Z +2424,89,2,7370,7.99,2005-07-27T15:15:53Z,2020-02-15T06:59:48Z +2425,89,2,7729,4.99,2005-07-28T04:57:57Z,2020-02-15T06:59:48Z +2426,89,2,7995,4.99,2005-07-28T15:00:09Z,2020-02-15T06:59:48Z +2427,89,1,8003,2.99,2005-07-28T15:11:27Z,2020-02-15T06:59:48Z +2428,89,2,8070,2.99,2005-07-28T17:26:56Z,2020-02-15T06:59:49Z +2429,89,2,8972,0.99,2005-07-30T04:06:25Z,2020-02-15T06:59:49Z +2430,89,1,9328,2.99,2005-07-30T17:32:11Z,2020-02-15T06:59:49Z +2431,89,2,9646,2.99,2005-07-31T05:43:28Z,2020-02-15T06:59:49Z +2432,89,2,9767,0.99,2005-07-31T09:46:49Z,2020-02-15T06:59:49Z +2433,89,2,10164,4.99,2005-07-31T23:17:57Z,2020-02-15T06:59:49Z +2434,89,2,10806,4.99,2005-08-01T22:25:29Z,2020-02-15T06:59:49Z +2435,89,1,11090,3.99,2005-08-02T07:56:40Z,2020-02-15T06:59:49Z +2436,89,1,12118,3.99,2005-08-17T23:14:25Z,2020-02-15T06:59:49Z +2437,89,2,12431,2.99,2005-08-18T10:34:59Z,2020-02-15T06:59:49Z +2438,89,1,12756,2.99,2005-08-18T22:52:13Z,2020-02-15T06:59:49Z +2439,89,1,13823,2.99,2005-08-20T13:42:10Z,2020-02-15T06:59:49Z +2440,89,1,15845,2.99,2005-08-23T15:38:34Z,2020-02-15T06:59:49Z +2441,90,2,2033,0.99,2005-06-17T13:24:43Z,2020-02-15T06:59:49Z +2442,90,2,2584,6.99,2005-06-19T05:02:36Z,2020-02-15T06:59:49Z +2443,90,2,3132,0.99,2005-06-20T19:09:46Z,2020-02-15T06:59:49Z +2444,90,2,3729,3.99,2005-07-06T11:30:29Z,2020-02-15T06:59:49Z +2445,90,2,4371,4.99,2005-07-07T20:06:45Z,2020-02-15T06:59:49Z +2446,90,2,5272,0.99,2005-07-09T14:26:01Z,2020-02-15T06:59:49Z +2447,90,2,5539,3.99,2005-07-10T02:42:58Z,2020-02-15T06:59:49Z +2448,90,2,7035,5.99,2005-07-27T03:06:09Z,2020-02-15T06:59:49Z +2449,90,2,7058,1.99,2005-07-27T03:50:46Z,2020-02-15T06:59:49Z +2450,90,1,7428,5.99,2005-07-27T17:21:52Z,2020-02-15T06:59:49Z +2451,90,1,7946,6.99,2005-07-28T13:01:22Z,2020-02-15T06:59:49Z +2452,90,1,8024,2.99,2005-07-28T15:55:40Z,2020-02-15T06:59:49Z +2453,90,1,8408,0.99,2005-07-29T06:40:40Z,2020-02-15T06:59:49Z +2454,90,2,8870,9.99,2005-07-30T00:08:08Z,2020-02-15T06:59:49Z +2455,90,2,9337,2.99,2005-07-30T18:02:25Z,2020-02-15T06:59:49Z +2456,90,2,10206,7.99,2005-08-01T00:52:40Z,2020-02-15T06:59:49Z +2457,90,1,10722,4.99,2005-08-01T19:07:08Z,2020-02-15T06:59:49Z +2458,90,1,10835,4.99,2005-08-01T23:28:49Z,2020-02-15T06:59:49Z +2459,90,2,11231,4.99,2005-08-02T13:02:11Z,2020-02-15T06:59:49Z +2460,90,1,11516,0.99,2005-08-16T23:54:47Z,2020-02-15T06:59:49Z +2461,90,2,12019,0.99,2005-08-17T19:48:55Z,2020-02-15T06:59:49Z +2462,90,1,12788,2.99,2005-08-19T00:15:09Z,2020-02-15T06:59:49Z +2463,90,1,13051,4.99,2005-08-19T09:31:33Z,2020-02-15T06:59:49Z +2464,90,1,14608,1.99,2005-08-21T17:57:22Z,2020-02-15T06:59:49Z +2465,90,1,14807,4.99,2005-08-22T00:57:43Z,2020-02-15T06:59:49Z +2466,90,2,15061,0.99,2005-08-22T10:29:44Z,2020-02-15T06:59:49Z +2467,90,2,15217,0.99,2005-08-22T16:58:31Z,2020-02-15T06:59:49Z +2468,90,1,15674,7.99,2005-08-23T09:16:39Z,2020-02-15T06:59:49Z +2469,91,2,216,5.99,2005-05-26T09:17:43Z,2020-02-15T06:59:49Z +2470,91,1,1299,4.99,2005-06-15T09:34:50Z,2020-02-15T06:59:49Z +2471,91,1,2457,3.99,2005-06-18T19:38:20Z,2020-02-15T06:59:49Z +2472,91,1,2908,0.99,2005-06-20T03:16:52Z,2020-02-15T06:59:49Z +2473,91,2,3384,2.99,2005-06-21T14:07:35Z,2020-02-15T06:59:49Z +2474,91,2,3802,0.99,2005-07-06T15:06:09Z,2020-02-15T06:59:49Z +2475,91,2,4103,2.99,2005-07-07T06:25:28Z,2020-02-15T06:59:49Z +2476,91,1,4245,4.99,2005-07-07T13:48:33Z,2020-02-15T06:59:49Z +2477,91,1,4321,4.99,2005-07-07T17:52:38Z,2020-02-15T06:59:49Z +2478,91,1,4673,4.99,2005-07-08T10:16:00Z,2020-02-15T06:59:49Z +2479,91,2,5025,4.99,2005-07-09T02:28:24Z,2020-02-15T06:59:49Z +2480,91,2,5187,1.99,2005-07-09T10:19:51Z,2020-02-15T06:59:49Z +2481,91,2,5701,0.99,2005-07-10T09:56:24Z,2020-02-15T06:59:49Z +2482,91,1,6078,4.99,2005-07-11T05:06:52Z,2020-02-15T06:59:49Z +2483,91,1,6178,2.99,2005-07-11T10:59:09Z,2020-02-15T06:59:49Z +2484,91,2,6860,2.99,2005-07-12T19:54:17Z,2020-02-15T06:59:49Z +2485,91,2,7143,0.99,2005-07-27T06:56:31Z,2020-02-15T06:59:49Z +2486,91,2,7637,0.99,2005-07-28T01:12:25Z,2020-02-15T06:59:49Z +2487,91,1,7966,4.99,2005-07-28T13:53:54Z,2020-02-15T06:59:49Z +2488,91,1,8313,0.99,2005-07-29T03:34:21Z,2020-02-15T06:59:49Z +2489,91,2,8873,0.99,2005-07-30T00:14:32Z,2020-02-15T06:59:49Z +2490,91,2,9228,2.99,2005-07-30T13:36:57Z,2020-02-15T06:59:49Z +2491,91,2,9396,4.99,2005-07-30T20:07:24Z,2020-02-15T06:59:49Z +2492,91,2,10008,4.99,2005-07-31T17:59:36Z,2020-02-15T06:59:49Z +2493,91,2,11418,0.99,2005-08-02T19:45:33Z,2020-02-15T06:59:49Z +2494,91,1,12847,0.99,2005-08-19T02:04:07Z,2020-02-15T06:59:49Z +2495,91,2,13222,4.99,2005-08-19T15:47:58Z,2020-02-15T06:59:49Z +2496,91,2,13309,4.99,2005-08-19T19:04:00Z,2020-02-15T06:59:49Z +2497,91,1,14132,0.99,2005-08-21T01:43:58Z,2020-02-15T06:59:49Z +2498,91,2,14888,2.99,2005-08-22T04:09:18Z,2020-02-15T06:59:49Z +2499,91,1,15122,1.99,2005-08-22T12:47:45Z,2020-02-15T06:59:49Z +2500,91,1,15341,4.99,2005-08-22T20:56:31Z,2020-02-15T06:59:49Z +2501,91,1,15707,1.99,2005-08-23T10:35:45Z,2020-02-15T06:59:49Z +2502,91,2,15886,4.99,2005-08-23T16:50:53Z,2020-02-15T06:59:49Z +2503,91,1,12902,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2504,92,1,271,5.99,2005-05-26T16:22:01Z,2020-02-15T06:59:49Z +2505,92,1,456,4.99,2005-05-27T19:50:06Z,2020-02-15T06:59:49Z +2506,92,2,2084,4.99,2005-06-17T17:17:19Z,2020-02-15T06:59:49Z +2507,92,1,2521,0.99,2005-06-19T00:41:08Z,2020-02-15T06:59:49Z +2508,92,1,2740,8.99,2005-06-19T15:59:04Z,2020-02-15T06:59:49Z +2509,92,2,3595,8.99,2005-07-06T04:59:49Z,2020-02-15T06:59:49Z +2510,92,2,3716,7.99,2005-07-06T10:52:32Z,2020-02-15T06:59:49Z +2511,92,1,4360,2.99,2005-07-07T19:31:12Z,2020-02-15T06:59:49Z +2512,92,2,4828,4.99,2005-07-08T17:52:29Z,2020-02-15T06:59:49Z +2513,92,2,5497,5.99,2005-07-10T00:23:23Z,2020-02-15T06:59:49Z +2514,92,2,5620,7.99,2005-07-10T05:30:52Z,2020-02-15T06:59:49Z +2515,92,1,5792,6.99,2005-07-10T14:22:19Z,2020-02-15T06:59:49Z +2516,92,2,5919,2.99,2005-07-10T21:32:14Z,2020-02-15T06:59:49Z +2517,92,1,6158,0.99,2005-07-11T09:50:24Z,2020-02-15T06:59:49Z +2518,92,2,6277,6.99,2005-07-11T16:19:01Z,2020-02-15T06:59:49Z +2519,92,1,7073,4.99,2005-07-27T04:03:26Z,2020-02-15T06:59:49Z +2520,92,1,7832,1.99,2005-07-28T08:46:11Z,2020-02-15T06:59:49Z +2521,92,1,8494,4.99,2005-07-29T09:04:32Z,2020-02-15T06:59:49Z +2522,92,1,8938,4.99,2005-07-30T02:56:08Z,2020-02-15T06:59:49Z +2523,92,1,9240,4.99,2005-07-30T13:57:54Z,2020-02-15T06:59:49Z +2524,92,2,11203,4.99,2005-08-02T11:52:41Z,2020-02-15T06:59:49Z +2525,92,2,11245,2.99,2005-08-02T13:33:50Z,2020-02-15T06:59:49Z +2526,92,1,11849,4.99,2005-08-17T13:24:55Z,2020-02-15T06:59:49Z +2527,92,2,13020,5.99,2005-08-19T08:07:50Z,2020-02-15T06:59:49Z +2528,92,1,13495,0.99,2005-08-20T01:40:25Z,2020-02-15T06:59:49Z +2529,92,1,13620,2.99,2005-08-20T06:41:27Z,2020-02-15T06:59:49Z +2530,92,1,14798,0.99,2005-08-22T00:44:08Z,2020-02-15T06:59:49Z +2531,92,2,14998,4.99,2005-08-22T07:53:14Z,2020-02-15T06:59:49Z +2532,93,2,113,2.99,2005-05-25T19:07:40Z,2020-02-15T06:59:49Z +2533,93,2,420,6.99,2005-05-27T15:19:38Z,2020-02-15T06:59:49Z +2534,93,1,1025,4.99,2005-05-31T03:41:37Z,2020-02-15T06:59:49Z +2535,93,2,2256,4.99,2005-06-18T05:21:56Z,2020-02-15T06:59:49Z +2536,93,1,3109,0.99,2005-06-20T17:33:55Z,2020-02-15T06:59:49Z +2537,93,1,4733,2.99,2005-07-08T13:12:07Z,2020-02-15T06:59:49Z +2538,93,2,5130,4.99,2005-07-09T07:29:45Z,2020-02-15T06:59:49Z +2539,93,2,6287,4.99,2005-07-11T17:00:04Z,2020-02-15T06:59:49Z +2540,93,1,6586,4.99,2005-07-12T06:56:24Z,2020-02-15T06:59:49Z +2541,93,1,7301,2.99,2005-07-27T12:50:23Z,2020-02-15T06:59:49Z +2542,93,1,8233,0.99,2005-07-29T00:16:23Z,2020-02-15T06:59:49Z +2543,93,2,11271,5.99,2005-08-02T14:18:22Z,2020-02-15T06:59:49Z +2544,93,1,12704,4.99,2005-08-18T20:43:00Z,2020-02-15T06:59:49Z +2545,93,1,13555,2.99,2005-08-20T04:09:50Z,2020-02-15T06:59:49Z +2546,93,2,13904,2.99,2005-08-20T16:11:34Z,2020-02-15T06:59:49Z +2547,93,1,13950,8.99,2005-08-20T17:58:00Z,2020-02-15T06:59:49Z +2548,93,1,13993,4.99,2005-08-20T19:32:29Z,2020-02-15T06:59:49Z +2549,93,1,14195,0.99,2005-08-21T03:40:35Z,2020-02-15T06:59:49Z +2550,93,2,14333,4.99,2005-08-21T08:31:03Z,2020-02-15T06:59:49Z +2551,93,2,15324,5.99,2005-08-22T20:23:13Z,2020-02-15T06:59:49Z +2552,93,2,15631,2.99,2005-08-23T07:30:23Z,2020-02-15T06:59:49Z +2553,93,1,15696,0.99,2005-08-23T10:04:17Z,2020-02-15T06:59:49Z +2554,93,2,15913,1.99,2005-08-23T17:48:30Z,2020-02-15T06:59:49Z +2555,94,1,127,2.99,2005-05-25T21:10:40Z,2020-02-15T06:59:49Z +2556,94,2,629,4.99,2005-05-28T17:19:15Z,2020-02-15T06:59:49Z +2557,94,2,1213,2.99,2005-06-15T03:14:05Z,2020-02-15T06:59:49Z +2558,94,1,1367,4.99,2005-06-15T14:25:17Z,2020-02-15T06:59:49Z +2559,94,2,1734,3.99,2005-06-16T15:49:30Z,2020-02-15T06:59:49Z +2560,94,2,2620,4.99,2005-06-19T08:06:29Z,2020-02-15T06:59:49Z +2561,94,1,2816,2.99,2005-06-19T20:04:23Z,2020-02-15T06:59:49Z +2562,94,2,4044,0.99,2005-07-07T03:22:23Z,2020-02-15T06:59:49Z +2563,94,1,4287,8.99,2005-07-07T15:37:31Z,2020-02-15T06:59:49Z +2564,94,2,5719,4.99,2005-07-10T11:07:40Z,2020-02-15T06:59:49Z +2565,94,2,5970,4.99,2005-07-11T00:04:50Z,2020-02-15T06:59:49Z +2566,94,2,7809,2.99,2005-07-28T07:59:46Z,2020-02-15T06:59:49Z +2567,94,2,7979,0.99,2005-07-28T14:16:30Z,2020-02-15T06:59:49Z +2568,94,1,9605,4.99,2005-07-31T03:50:07Z,2020-02-15T06:59:49Z +2569,94,1,12316,2.99,2005-08-18T06:16:09Z,2020-02-15T06:59:49Z +2570,94,1,13786,5.99,2005-08-20T12:13:24Z,2020-02-15T06:59:49Z +2571,94,2,14804,1.99,2005-08-22T00:51:25Z,2020-02-15T06:59:49Z +2572,94,1,14865,4.99,2005-08-22T03:06:38Z,2020-02-15T06:59:49Z +2573,94,1,14978,0.99,2005-08-22T07:13:15Z,2020-02-15T06:59:49Z +2574,94,1,15693,0.99,2005-08-23T10:00:24Z,2020-02-15T06:59:49Z +2575,94,1,15371,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2576,95,1,490,4.99,2005-05-28T00:09:56Z,2020-02-15T06:59:49Z +2577,95,2,1174,2.99,2005-06-15T00:12:51Z,2020-02-15T06:59:49Z +2578,95,2,1261,1.99,2005-06-15T06:52:57Z,2020-02-15T06:59:49Z +2579,95,2,3056,2.99,2005-06-20T13:20:58Z,2020-02-15T06:59:49Z +2580,95,2,3426,0.99,2005-06-21T18:12:10Z,2020-02-15T06:59:49Z +2581,95,1,3633,1.99,2005-07-06T06:43:26Z,2020-02-15T06:59:49Z +2582,95,2,4000,4.99,2005-07-06T23:58:37Z,2020-02-15T06:59:49Z +2583,95,1,4835,5.99,2005-07-08T18:08:13Z,2020-02-15T06:59:49Z +2584,95,2,7245,5.99,2005-07-27T10:29:06Z,2020-02-15T06:59:49Z +2585,95,1,7471,4.99,2005-07-27T19:02:19Z,2020-02-15T06:59:49Z +2586,95,1,9222,6.99,2005-07-30T13:21:08Z,2020-02-15T06:59:49Z +2587,95,1,9695,6.99,2005-07-31T07:13:30Z,2020-02-15T06:59:49Z +2588,95,1,9951,4.99,2005-07-31T15:51:16Z,2020-02-15T06:59:49Z +2589,95,1,10130,0.99,2005-07-31T21:44:30Z,2020-02-15T06:59:49Z +2590,95,2,10446,0.99,2005-08-01T09:02:17Z,2020-02-15T06:59:49Z +2591,95,2,12351,5.99,2005-08-18T07:32:12Z,2020-02-15T06:59:49Z +2592,95,2,13516,7.99,2005-08-20T02:32:45Z,2020-02-15T06:59:49Z +2593,95,2,14203,4.99,2005-08-21T03:51:52Z,2020-02-15T06:59:49Z +2594,96,1,1266,3.99,2005-06-15T07:11:39Z,2020-02-15T06:59:49Z +2595,96,2,1413,7.99,2005-06-15T17:25:07Z,2020-02-15T06:59:49Z +2596,96,2,1437,0.99,2005-06-15T18:37:04Z,2020-02-15T06:59:49Z +2597,96,1,2372,0.99,2005-06-18T14:37:37Z,2020-02-15T06:59:49Z +2598,96,2,2973,5.99,2005-06-20T07:59:27Z,2020-02-15T06:59:49Z +2599,96,1,3308,0.99,2005-06-21T07:58:36Z,2020-02-15T06:59:49Z +2600,96,2,3463,0.99,2005-06-21T22:00:00Z,2020-02-15T06:59:49Z +2601,96,1,3720,2.99,2005-07-06T11:06:57Z,2020-02-15T06:59:49Z +2602,96,2,3742,2.99,2005-07-06T12:01:38Z,2020-02-15T06:59:49Z +2603,96,1,4961,4.99,2005-07-08T23:35:53Z,2020-02-15T06:59:49Z +2604,96,1,5558,0.99,2005-07-10T03:12:08Z,2020-02-15T06:59:49Z +2605,96,1,5678,4.99,2005-07-10T08:42:42Z,2020-02-15T06:59:49Z +2606,96,1,5696,2.99,2005-07-10T09:44:32Z,2020-02-15T06:59:49Z +2607,96,2,8125,4.99,2005-07-28T19:31:48Z,2020-02-15T06:59:49Z +2608,96,1,8437,6.99,2005-07-29T07:23:43Z,2020-02-15T06:59:49Z +2609,96,2,9093,3.99,2005-07-30T08:33:24Z,2020-02-15T06:59:49Z +2610,96,1,9315,4.99,2005-07-30T17:05:29Z,2020-02-15T06:59:49Z +2611,96,1,9662,3.99,2005-07-31T06:09:53Z,2020-02-15T06:59:49Z +2612,96,2,10031,4.99,2005-07-31T18:40:15Z,2020-02-15T06:59:49Z +2613,96,2,11864,4.99,2005-08-17T14:02:01Z,2020-02-15T06:59:49Z +2614,96,1,11984,3.99,2005-08-17T18:16:30Z,2020-02-15T06:59:49Z +2615,96,1,12199,4.99,2005-08-18T02:09:23Z,2020-02-15T06:59:49Z +2616,96,2,12525,4.99,2005-08-18T13:48:31Z,2020-02-15T06:59:49Z +2617,96,1,13514,0.99,2005-08-20T02:28:09Z,2020-02-15T06:59:49Z +2618,96,1,13855,4.99,2005-08-20T14:48:55Z,2020-02-15T06:59:49Z +2619,96,1,14462,3.99,2005-08-21T12:50:57Z,2020-02-15T06:59:49Z +2620,96,2,15989,4.99,2005-08-23T20:24:36Z,2020-02-15T06:59:49Z +2621,97,2,2083,2.99,2005-06-17T17:14:00Z,2020-02-15T06:59:49Z +2622,97,2,2790,4.99,2005-06-19T18:49:45Z,2020-02-15T06:59:49Z +2623,97,1,3459,0.99,2005-06-21T21:45:47Z,2020-02-15T06:59:49Z +2624,97,1,3540,2.99,2005-07-06T01:47:20Z,2020-02-15T06:59:49Z +2625,97,2,3565,0.99,2005-07-06T03:02:58Z,2020-02-15T06:59:49Z +2626,97,2,3818,4.99,2005-07-06T15:33:31Z,2020-02-15T06:59:49Z +2627,97,2,4312,4.99,2005-07-07T17:34:59Z,2020-02-15T06:59:49Z +2628,97,1,4508,4.99,2005-07-08T02:28:41Z,2020-02-15T06:59:49Z +2629,97,2,5454,4.99,2005-07-09T22:24:25Z,2020-02-15T06:59:49Z +2630,97,1,6544,0.99,2005-07-12T04:56:15Z,2020-02-15T06:59:49Z +2631,97,1,6726,0.99,2005-07-12T13:48:14Z,2020-02-15T06:59:49Z +2632,97,2,7182,5.99,2005-07-27T08:15:38Z,2020-02-15T06:59:49Z +2633,97,2,7924,0.99,2005-07-28T12:08:53Z,2020-02-15T06:59:49Z +2634,97,2,8438,2.99,2005-07-29T07:25:42Z,2020-02-15T06:59:49Z +2635,97,1,9591,4.99,2005-07-31T03:19:28Z,2020-02-15T06:59:49Z +2636,97,1,10820,2.99,2005-08-01T22:53:40Z,2020-02-15T06:59:49Z +2637,97,2,14323,4.99,2005-08-21T08:08:43Z,2020-02-15T06:59:49Z +2638,97,1,15006,0.99,2005-08-22T08:20:15Z,2020-02-15T06:59:49Z +2639,98,2,214,3.99,2005-05-26T08:48:49Z,2020-02-15T06:59:49Z +2640,98,1,1362,3.99,2005-06-15T13:53:32Z,2020-02-15T06:59:49Z +2641,98,2,1590,5.99,2005-06-16T05:11:41Z,2020-02-15T06:59:49Z +2642,98,1,2213,4.99,2005-06-18T02:36:47Z,2020-02-15T06:59:49Z +2643,98,1,2445,0.99,2005-06-18T19:02:11Z,2020-02-15T06:59:49Z +2644,98,2,2601,4.99,2005-06-19T06:09:44Z,2020-02-15T06:59:49Z +2645,98,2,3399,4.99,2005-06-21T15:47:48Z,2020-02-15T06:59:49Z +2646,98,2,3682,7.99,2005-07-06T09:22:48Z,2020-02-15T06:59:49Z +2647,98,1,4549,4.99,2005-07-08T04:25:03Z,2020-02-15T06:59:49Z +2648,98,2,6951,2.99,2005-07-26T23:47:31Z,2020-02-15T06:59:49Z +2649,98,2,7120,3.99,2005-07-27T05:56:39Z,2020-02-15T06:59:49Z +2650,98,1,7530,0.99,2005-07-27T21:18:58Z,2020-02-15T06:59:49Z +2651,98,1,8324,5.99,2005-07-29T03:56:05Z,2020-02-15T06:59:49Z +2652,98,2,8622,4.99,2005-07-29T13:53:28Z,2020-02-15T06:59:49Z +2653,98,2,8818,5.99,2005-07-29T22:14:04Z,2020-02-15T06:59:49Z +2654,98,1,9753,2.99,2005-07-31T09:22:38Z,2020-02-15T06:59:49Z +2655,98,2,10694,3.99,2005-08-01T18:15:07Z,2020-02-15T06:59:49Z +2656,98,1,10925,2.99,2005-08-02T02:24:38Z,2020-02-15T06:59:49Z +2657,98,2,11007,0.99,2005-08-02T05:05:53Z,2020-02-15T06:59:49Z +2658,98,2,11200,2.99,2005-08-02T11:48:36Z,2020-02-15T06:59:49Z +2659,98,1,11635,5.99,2005-08-17T04:33:17Z,2020-02-15T06:59:49Z +2660,98,1,11730,2.99,2005-08-17T08:22:00Z,2020-02-15T06:59:49Z +2661,98,2,12221,5.99,2005-08-18T02:50:51Z,2020-02-15T06:59:49Z +2662,98,2,14459,1.99,2005-08-21T12:48:08Z,2020-02-15T06:59:49Z +2663,98,1,15536,7.99,2005-08-23T03:58:28Z,2020-02-15T06:59:49Z +2664,99,2,867,0.99,2005-05-30T03:54:43Z,2020-02-15T06:59:49Z +2665,99,1,1858,4.99,2005-06-17T01:13:11Z,2020-02-15T06:59:49Z +2666,99,1,2368,2.99,2005-06-18T14:10:27Z,2020-02-15T06:59:49Z +2667,99,2,3780,6.99,2005-07-06T13:52:02Z,2020-02-15T06:59:49Z +2668,99,2,4170,2.99,2005-07-07T09:44:36Z,2020-02-15T06:59:49Z +2669,99,2,4344,4.99,2005-07-07T18:50:47Z,2020-02-15T06:59:49Z +2670,99,1,4589,0.99,2005-07-08T06:26:04Z,2020-02-15T06:59:49Z +2671,99,2,4800,4.99,2005-07-08T16:51:08Z,2020-02-15T06:59:49Z +2672,99,2,4954,2.99,2005-07-08T23:14:16Z,2020-02-15T06:59:49Z +2673,99,2,5035,2.99,2005-07-09T02:51:34Z,2020-02-15T06:59:49Z +2674,99,1,5748,2.99,2005-07-10T12:19:59Z,2020-02-15T06:59:49Z +2675,99,1,6289,2.99,2005-07-11T17:06:39Z,2020-02-15T06:59:49Z +2676,99,1,6370,3.99,2005-07-11T21:28:32Z,2020-02-15T06:59:49Z +2677,99,2,6662,4.99,2005-07-12T11:21:06Z,2020-02-15T06:59:49Z +2678,99,1,7039,4.99,2005-07-27T03:11:48Z,2020-02-15T06:59:49Z +2679,99,1,8072,0.99,2005-07-28T17:27:59Z,2020-02-15T06:59:49Z +2680,99,2,8242,7.99,2005-07-29T00:34:27Z,2020-02-15T06:59:49Z +2681,99,2,8514,0.99,2005-07-29T09:53:33Z,2020-02-15T06:59:49Z +2682,99,2,10388,7.99,2005-08-01T06:42:44Z,2020-02-15T06:59:49Z +2683,99,1,10455,1.99,2005-08-01T09:15:00Z,2020-02-15T06:59:49Z +2684,99,2,11266,4.99,2005-08-02T14:07:35Z,2020-02-15T06:59:49Z +2685,99,2,12379,0.99,2005-08-18T08:26:48Z,2020-02-15T06:59:49Z +2686,99,2,12869,8.99,2005-08-19T02:50:36Z,2020-02-15T06:59:49Z +2687,99,1,11593,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2688,100,1,71,0.99,2005-05-25T10:26:39Z,2020-02-15T06:59:49Z +2689,100,2,1216,4.99,2005-06-15T03:23:48Z,2020-02-15T06:59:49Z +2690,100,1,1340,3.99,2005-06-15T12:24:15Z,2020-02-15T06:59:49Z +2691,100,1,1427,2.99,2005-06-15T18:17:28Z,2020-02-15T06:59:49Z +2692,100,2,3468,6.99,2005-06-21T22:43:45Z,2020-02-15T06:59:49Z +2693,100,2,3602,5.99,2005-07-06T05:23:10Z,2020-02-15T06:59:49Z +2694,100,1,3800,8.99,2005-07-06T15:01:27Z,2020-02-15T06:59:49Z +2695,100,1,4209,2.99,2005-07-07T11:35:08Z,2020-02-15T06:59:49Z +2696,100,1,4970,8.99,2005-07-08T23:54:29Z,2020-02-15T06:59:49Z +2697,100,2,4980,6.99,2005-07-09T00:26:59Z,2020-02-15T06:59:49Z +2698,100,2,5238,4.99,2005-07-09T13:11:14Z,2020-02-15T06:59:49Z +2699,100,2,5355,6.99,2005-07-09T18:07:17Z,2020-02-15T06:59:49Z +2700,100,1,6655,4.99,2005-07-12T11:08:32Z,2020-02-15T06:59:49Z +2701,100,2,7819,4.99,2005-07-28T08:27:14Z,2020-02-15T06:59:49Z +2702,100,1,7921,1.99,2005-07-28T12:02:46Z,2020-02-15T06:59:49Z +2703,100,2,8203,0.99,2005-07-28T23:14:56Z,2020-02-15T06:59:49Z +2704,100,2,9048,5.99,2005-07-30T06:57:07Z,2020-02-15T06:59:49Z +2705,100,1,9271,4.99,2005-07-30T15:04:31Z,2020-02-15T06:59:49Z +2706,100,1,11143,0.99,2005-08-02T09:32:54Z,2020-02-15T06:59:49Z +2707,100,2,11346,4.99,2005-08-02T17:15:38Z,2020-02-15T06:59:49Z +2708,100,1,12657,0.99,2005-08-18T19:02:16Z,2020-02-15T06:59:49Z +2709,100,1,15163,0.99,2005-08-22T14:43:13Z,2020-02-15T06:59:49Z +2710,100,2,15246,3.99,2005-08-22T17:50:49Z,2020-02-15T06:59:49Z +2711,100,2,15021,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2712,101,1,468,9.99,2005-05-27T21:13:10Z,2020-02-15T06:59:49Z +2713,101,1,4975,2.99,2005-07-09T00:02:46Z,2020-02-15T06:59:49Z +2714,101,2,5100,2.99,2005-07-09T06:16:03Z,2020-02-15T06:59:49Z +2715,101,1,5132,5.99,2005-07-09T07:40:32Z,2020-02-15T06:59:49Z +2716,101,2,5198,2.99,2005-07-09T10:49:10Z,2020-02-15T06:59:49Z +2717,101,1,5757,2.99,2005-07-10T12:40:17Z,2020-02-15T06:59:49Z +2718,101,2,6433,5.99,2005-07-12T00:12:02Z,2020-02-15T06:59:49Z +2719,101,2,7112,5.99,2005-07-27T05:38:42Z,2020-02-15T06:59:49Z +2720,101,2,7866,8.99,2005-07-28T10:08:01Z,2020-02-15T06:59:49Z +2721,101,1,8301,0.99,2005-07-29T03:00:08Z,2020-02-15T06:59:49Z +2722,101,2,8825,1.99,2005-07-29T22:24:16Z,2020-02-15T06:59:49Z +2723,101,2,8833,4.99,2005-07-29T22:39:36Z,2020-02-15T06:59:49Z +2724,101,2,9965,6.99,2005-07-31T16:19:32Z,2020-02-15T06:59:49Z +2725,101,2,10218,0.99,2005-08-01T01:09:44Z,2020-02-15T06:59:49Z +2726,101,1,10253,6.99,2005-08-01T02:39:49Z,2020-02-15T06:59:49Z +2727,101,1,10407,0.99,2005-08-01T07:38:07Z,2020-02-15T06:59:49Z +2728,101,2,11959,4.99,2005-08-17T17:23:35Z,2020-02-15T06:59:49Z +2729,101,2,12174,2.99,2005-08-18T01:08:53Z,2020-02-15T06:59:49Z +2730,101,1,12471,4.99,2005-08-18T11:57:00Z,2020-02-15T06:59:49Z +2731,101,2,13370,1.99,2005-08-19T21:20:11Z,2020-02-15T06:59:49Z +2732,101,1,14476,0.99,2005-08-21T13:31:07Z,2020-02-15T06:59:49Z +2733,101,2,14542,3.99,2005-08-21T15:36:34Z,2020-02-15T06:59:49Z +2734,101,2,15103,2.99,2005-08-22T12:01:06Z,2020-02-15T06:59:49Z +2735,101,2,12141,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2736,102,1,247,4.99,2005-05-26T14:01:05Z,2020-02-15T06:59:49Z +2737,102,1,358,0.99,2005-05-27T06:43:59Z,2020-02-15T06:59:49Z +2738,102,2,562,1.99,2005-05-28T09:01:21Z,2020-02-15T06:59:49Z +2739,102,2,1215,2.99,2005-06-15T03:21:00Z,2020-02-15T06:59:49Z +2740,102,2,2419,8.99,2005-06-18T17:21:24Z,2020-02-15T06:59:49Z +2741,102,2,3520,1.99,2005-07-06T00:58:27Z,2020-02-15T06:59:49Z +2742,102,2,3630,1.99,2005-07-06T06:27:15Z,2020-02-15T06:59:49Z +2743,102,2,3665,4.99,2005-07-06T08:23:08Z,2020-02-15T06:59:49Z +2744,102,1,4089,6.99,2005-07-07T05:45:59Z,2020-02-15T06:59:49Z +2745,102,2,4777,3.99,2005-07-08T15:48:34Z,2020-02-15T06:59:49Z +2746,102,1,4997,6.99,2005-07-09T01:06:03Z,2020-02-15T06:59:49Z +2747,102,1,5009,5.99,2005-07-09T01:32:17Z,2020-02-15T06:59:49Z +2748,102,1,5109,4.99,2005-07-09T06:48:49Z,2020-02-15T06:59:49Z +2749,102,2,5509,5.99,2005-07-10T00:54:46Z,2020-02-15T06:59:49Z +2750,102,1,5716,2.99,2005-07-10T10:59:23Z,2020-02-15T06:59:49Z +2751,102,2,6434,5.99,2005-07-12T00:14:25Z,2020-02-15T06:59:49Z +2752,102,2,7119,0.99,2005-07-27T05:55:32Z,2020-02-15T06:59:49Z +2753,102,2,7247,0.99,2005-07-27T10:32:58Z,2020-02-15T06:59:49Z +2754,102,2,7439,6.99,2005-07-27T17:42:31Z,2020-02-15T06:59:49Z +2755,102,1,8186,0.99,2005-07-28T22:30:27Z,2020-02-15T06:59:49Z +2756,102,1,8664,5.99,2005-07-29T15:36:27Z,2020-02-15T06:59:49Z +2757,102,2,9151,3.99,2005-07-30T10:50:53Z,2020-02-15T06:59:49Z +2758,102,1,9192,2.99,2005-07-30T12:26:26Z,2020-02-15T06:59:49Z +2759,102,2,9295,0.99,2005-07-30T16:18:39Z,2020-02-15T06:59:49Z +2760,102,2,9617,2.99,2005-07-31T04:15:38Z,2020-02-15T06:59:49Z +2761,102,1,9780,4.99,2005-07-31T10:10:22Z,2020-02-15T06:59:49Z +2762,102,2,10841,1.99,2005-08-01T23:39:21Z,2020-02-15T06:59:49Z +2763,102,2,11099,4.99,2005-08-02T08:07:12Z,2020-02-15T06:59:49Z +2764,102,1,11183,4.99,2005-08-02T11:00:32Z,2020-02-15T06:59:49Z +2765,102,2,12495,4.99,2005-08-18T12:56:37Z,2020-02-15T06:59:49Z +2766,102,1,13420,9.99,2005-08-19T22:57:25Z,2020-02-15T06:59:49Z +2767,102,1,15049,1.99,2005-08-22T10:06:28Z,2020-02-15T06:59:49Z +2768,102,2,16031,3.99,2005-08-23T21:59:26Z,2020-02-15T06:59:49Z +2769,103,1,240,7.99,2005-05-26T12:40:23Z,2020-02-15T06:59:49Z +2770,103,1,658,9.99,2005-05-28T20:23:23Z,2020-02-15T06:59:49Z +2771,103,2,1396,4.99,2005-06-15T16:22:38Z,2020-02-15T06:59:49Z +2772,103,1,2118,0.99,2005-06-17T20:28:29Z,2020-02-15T06:59:49Z +2773,103,1,2197,0.99,2005-06-18T01:50:27Z,2020-02-15T06:59:49Z +2774,103,1,2724,0.99,2005-06-19T14:57:54Z,2020-02-15T06:59:49Z +2775,103,2,3750,6.99,2005-07-06T12:19:28Z,2020-02-15T06:59:49Z +2776,103,1,3850,4.99,2005-07-06T16:51:21Z,2020-02-15T06:59:49Z +2777,103,2,4040,6.99,2005-07-07T03:02:40Z,2020-02-15T06:59:49Z +2778,103,1,4213,2.99,2005-07-07T11:53:49Z,2020-02-15T06:59:49Z +2779,103,1,4357,1.99,2005-07-07T19:24:39Z,2020-02-15T06:59:49Z +2780,103,2,4872,4.99,2005-07-08T19:23:16Z,2020-02-15T06:59:49Z +2781,103,2,5163,4.99,2005-07-09T09:00:28Z,2020-02-15T06:59:49Z +2782,103,1,6525,5.99,2005-07-12T04:17:15Z,2020-02-15T06:59:49Z +2783,103,2,6697,6.99,2005-07-12T12:44:57Z,2020-02-15T06:59:49Z +2784,103,2,6949,2.99,2005-07-26T23:44:12Z,2020-02-15T06:59:49Z +2785,103,1,7310,0.99,2005-07-27T13:00:55Z,2020-02-15T06:59:49Z +2786,103,2,7472,6.99,2005-07-27T19:04:19Z,2020-02-15T06:59:49Z +2787,103,1,8302,0.99,2005-07-29T03:01:24Z,2020-02-15T06:59:49Z +2788,103,1,8520,4.99,2005-07-29T10:10:02Z,2020-02-15T06:59:49Z +2789,103,2,9390,4.99,2005-07-30T19:42:07Z,2020-02-15T06:59:49Z +2790,103,2,12942,7.99,2005-08-19T05:40:36Z,2020-02-15T06:59:49Z +2791,103,1,13676,0.99,2005-08-20T08:33:21Z,2020-02-15T06:59:49Z +2792,103,2,14064,2.99,2005-08-20T22:39:16Z,2020-02-15T06:59:49Z +2793,103,2,14289,4.99,2005-08-21T06:58:49Z,2020-02-15T06:59:49Z +2794,103,2,15401,8.99,2005-08-22T23:13:10Z,2020-02-15T06:59:49Z +2795,103,1,15461,5.99,2005-08-23T01:13:52Z,2020-02-15T06:59:49Z +2796,103,1,15467,3.99,2005-08-23T01:22:12Z,2020-02-15T06:59:49Z +2797,103,1,15599,5.99,2005-08-23T06:25:07Z,2020-02-15T06:59:49Z +2798,103,2,15679,0.99,2005-08-23T09:27:29Z,2020-02-15T06:59:49Z +2799,103,2,16048,8.99,2005-08-23T22:43:07Z,2020-02-15T06:59:49Z +2800,104,1,163,10.99,2005-05-26T02:26:23Z,2020-02-15T06:59:49Z +2801,104,2,808,3.99,2005-05-29T19:08:20Z,2020-02-15T06:59:49Z +2802,104,2,1287,3.99,2005-06-15T08:41:38Z,2020-02-15T06:59:49Z +2803,104,1,2107,0.99,2005-06-17T19:31:16Z,2020-02-15T06:59:49Z +2804,104,2,2928,0.99,2005-06-20T04:43:45Z,2020-02-15T06:59:49Z +2805,104,2,3273,2.99,2005-06-21T05:24:17Z,2020-02-15T06:59:49Z +2806,104,2,4012,4.99,2005-07-07T00:56:09Z,2020-02-15T06:59:49Z +2807,104,2,4438,6.99,2005-07-07T22:56:17Z,2020-02-15T06:59:49Z +2808,104,2,4520,4.99,2005-07-08T02:53:46Z,2020-02-15T06:59:49Z +2809,104,1,4529,7.99,2005-07-08T03:26:20Z,2020-02-15T06:59:49Z +2810,104,1,4917,2.99,2005-07-08T21:32:30Z,2020-02-15T06:59:49Z +2811,104,1,5376,1.99,2005-07-09T18:54:08Z,2020-02-15T06:59:49Z +2812,104,2,7107,2.99,2005-07-27T05:22:04Z,2020-02-15T06:59:49Z +2813,104,1,8413,1.99,2005-07-29T06:47:39Z,2020-02-15T06:59:49Z +2814,104,1,9090,3.99,2005-07-30T08:24:42Z,2020-02-15T06:59:49Z +2815,104,2,9996,5.99,2005-07-31T17:32:03Z,2020-02-15T06:59:49Z +2816,104,1,11700,2.99,2005-08-17T07:12:31Z,2020-02-15T06:59:49Z +2817,104,1,12453,3.99,2005-08-18T11:17:07Z,2020-02-15T06:59:49Z +2818,104,1,13005,0.99,2005-08-19T07:45:42Z,2020-02-15T06:59:49Z +2819,104,1,13017,1.99,2005-08-19T08:02:24Z,2020-02-15T06:59:49Z +2820,104,1,13179,4.99,2005-08-19T13:59:53Z,2020-02-15T06:59:49Z +2821,104,1,13410,3.99,2005-08-19T22:41:44Z,2020-02-15T06:59:49Z +2822,104,1,14218,3.99,2005-08-21T04:43:59Z,2020-02-15T06:59:49Z +2823,104,2,15186,0.99,2005-08-22T15:52:57Z,2020-02-15T06:59:49Z +2824,105,1,327,8.99,2005-05-27T01:18:57Z,2020-02-15T06:59:49Z +2825,105,2,473,7.99,2005-05-27T21:36:34Z,2020-02-15T06:59:49Z +2826,105,1,485,2.99,2005-05-27T23:40:52Z,2020-02-15T06:59:49Z +2827,105,1,779,6.99,2005-05-29T14:17:17Z,2020-02-15T06:59:49Z +2828,105,2,1789,3.99,2005-06-16T19:49:18Z,2020-02-15T06:59:49Z +2829,105,2,1991,3.99,2005-06-17T10:49:23Z,2020-02-15T06:59:49Z +2830,105,2,2635,3.99,2005-06-19T09:08:45Z,2020-02-15T06:59:49Z +2831,105,2,5261,4.99,2005-07-09T14:06:56Z,2020-02-15T06:59:49Z +2832,105,1,5429,4.99,2005-07-09T21:14:03Z,2020-02-15T06:59:49Z +2833,105,2,5542,2.99,2005-07-10T02:45:53Z,2020-02-15T06:59:49Z +2834,105,2,5677,4.99,2005-07-10T08:41:28Z,2020-02-15T06:59:49Z +2835,105,2,6546,4.99,2005-07-12T04:57:17Z,2020-02-15T06:59:49Z +2836,105,1,7442,2.99,2005-07-27T17:47:00Z,2020-02-15T06:59:49Z +2837,105,2,8980,2.99,2005-07-30T04:22:15Z,2020-02-15T06:59:49Z +2838,105,2,9124,3.99,2005-07-30T09:43:12Z,2020-02-15T06:59:49Z +2839,105,2,9198,5.99,2005-07-30T12:37:08Z,2020-02-15T06:59:49Z +2840,105,2,9210,9.99,2005-07-30T12:56:44Z,2020-02-15T06:59:49Z +2841,105,1,10513,4.99,2005-08-01T11:37:34Z,2020-02-15T06:59:49Z +2842,105,1,12217,0.99,2005-08-18T02:44:44Z,2020-02-15T06:59:49Z +2843,105,2,12899,2.99,2005-08-19T04:03:34Z,2020-02-15T06:59:49Z +2844,105,1,13057,6.99,2005-08-19T09:40:05Z,2020-02-15T06:59:49Z +2845,105,1,13751,2.99,2005-08-20T11:17:03Z,2020-02-15T06:59:49Z +2846,105,2,14048,0.99,2005-08-20T22:03:18Z,2020-02-15T06:59:49Z +2847,105,2,15624,4.99,2005-08-23T07:24:27Z,2020-02-15T06:59:49Z +2848,105,2,15688,4.99,2005-08-23T09:48:45Z,2020-02-15T06:59:49Z +2849,105,2,15803,2.99,2005-08-23T14:27:07Z,2020-02-15T06:59:49Z +2850,106,2,552,3.99,2005-05-28T07:53:38Z,2020-02-15T06:59:49Z +2851,106,2,1156,0.99,2005-05-31T22:37:34Z,2020-02-15T06:59:49Z +2852,106,1,2295,4.99,2005-06-18T07:56:18Z,2020-02-15T06:59:49Z +2853,106,1,3023,4.99,2005-06-20T11:18:11Z,2020-02-15T06:59:49Z +2854,106,1,4229,4.99,2005-07-07T12:43:23Z,2020-02-15T06:59:49Z +2855,106,2,4277,2.99,2005-07-07T14:52:12Z,2020-02-15T06:59:49Z +2856,106,1,4665,3.99,2005-07-08T10:04:24Z,2020-02-15T06:59:49Z +2857,106,2,5453,3.99,2005-07-09T22:24:11Z,2020-02-15T06:59:49Z +2858,106,2,6992,0.99,2005-07-27T01:04:45Z,2020-02-15T06:59:49Z +2859,106,1,7224,3.99,2005-07-27T09:44:26Z,2020-02-15T06:59:49Z +2860,106,1,7483,4.99,2005-07-27T19:25:00Z,2020-02-15T06:59:49Z +2861,106,1,8115,4.99,2005-07-28T19:14:17Z,2020-02-15T06:59:49Z +2862,106,2,9072,2.99,2005-07-30T07:45:49Z,2020-02-15T06:59:49Z +2863,106,2,9747,7.99,2005-07-31T09:16:57Z,2020-02-15T06:59:49Z +2864,106,2,10213,8.99,2005-08-01T01:03:18Z,2020-02-15T06:59:49Z +2865,106,1,10228,2.99,2005-08-01T01:43:18Z,2020-02-15T06:59:49Z +2866,106,1,10444,8.99,2005-08-01T09:01:40Z,2020-02-15T06:59:49Z +2867,106,2,11436,0.99,2005-08-02T20:16:06Z,2020-02-15T06:59:49Z +2868,106,1,12159,7.99,2005-08-18T00:36:09Z,2020-02-15T06:59:49Z +2869,106,1,12845,2.99,2005-08-19T02:02:37Z,2020-02-15T06:59:49Z +2870,106,2,14431,2.99,2005-08-21T11:31:15Z,2020-02-15T06:59:49Z +2871,106,1,14920,0.99,2005-08-22T05:08:58Z,2020-02-15T06:59:49Z +2872,106,1,15154,6.99,2005-08-22T14:27:37Z,2020-02-15T06:59:49Z +2873,107,1,170,5.99,2005-05-26T03:11:12Z,2020-02-15T06:59:49Z +2874,107,1,1026,5.99,2005-05-31T03:45:26Z,2020-02-15T06:59:49Z +2875,107,2,1243,2.99,2005-06-15T05:07:32Z,2020-02-15T06:59:49Z +2876,107,2,2693,6.99,2005-06-19T13:11:47Z,2020-02-15T06:59:49Z +2877,107,2,2860,4.99,2005-06-19T23:20:40Z,2020-02-15T06:59:49Z +2878,107,2,2897,3.99,2005-06-20T02:34:23Z,2020-02-15T06:59:49Z +2879,107,1,3033,3.99,2005-06-20T12:02:05Z,2020-02-15T06:59:49Z +2880,107,2,3120,0.99,2005-06-20T18:19:29Z,2020-02-15T06:59:49Z +2881,107,2,3174,0.99,2005-06-20T22:24:00Z,2020-02-15T06:59:49Z +2882,107,2,3824,6.99,2005-07-06T15:43:15Z,2020-02-15T06:59:49Z +2883,107,2,5311,4.99,2005-07-09T16:02:54Z,2020-02-15T06:59:49Z +2884,107,2,5575,2.99,2005-07-10T03:55:50Z,2020-02-15T06:59:49Z +2885,107,2,5798,3.99,2005-07-10T14:45:09Z,2020-02-15T06:59:49Z +2886,107,2,6131,2.99,2005-07-11T08:22:05Z,2020-02-15T06:59:49Z +2887,107,2,6133,0.99,2005-07-11T08:25:22Z,2020-02-15T06:59:49Z +2888,107,1,6811,5.99,2005-07-12T17:54:33Z,2020-02-15T06:59:49Z +2889,107,2,6934,6.99,2005-07-26T23:11:03Z,2020-02-15T06:59:49Z +2890,107,2,7447,4.99,2005-07-27T18:02:08Z,2020-02-15T06:59:49Z +2891,107,1,7600,7.99,2005-07-27T23:41:18Z,2020-02-15T06:59:49Z +2892,107,1,8162,4.99,2005-07-28T21:11:46Z,2020-02-15T06:59:49Z +2893,107,2,8704,1.99,2005-07-29T17:13:45Z,2020-02-15T06:59:49Z +2894,107,1,9155,2.99,2005-07-30T11:00:00Z,2020-02-15T06:59:49Z +2895,107,2,9351,2.99,2005-07-30T18:28:30Z,2020-02-15T06:59:49Z +2896,107,1,10226,4.99,2005-08-01T01:40:04Z,2020-02-15T06:59:49Z +2897,107,2,13361,4.99,2005-08-19T21:07:22Z,2020-02-15T06:59:49Z +2898,107,1,13510,6.99,2005-08-20T02:18:30Z,2020-02-15T06:59:49Z +2899,107,1,14562,4.99,2005-08-21T16:22:59Z,2020-02-15T06:59:49Z +2900,107,1,15560,3.99,2005-08-23T05:01:13Z,2020-02-15T06:59:49Z +2901,107,1,13079,1.98,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2902,107,1,15497,0,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2903,108,1,105,4.99,2005-05-25T17:54:12Z,2020-02-15T06:59:49Z +2904,108,2,1055,0.99,2005-05-31T07:47:18Z,2020-02-15T06:59:49Z +2905,108,2,1372,4.99,2005-06-15T14:45:48Z,2020-02-15T06:59:49Z +2906,108,1,1425,2.99,2005-06-15T18:13:46Z,2020-02-15T06:59:49Z +2907,108,1,2061,8.99,2005-06-17T15:47:00Z,2020-02-15T06:59:49Z +2908,108,1,2210,2.99,2005-06-18T02:27:01Z,2020-02-15T06:59:49Z +2909,108,2,3116,4.99,2005-06-20T18:04:55Z,2020-02-15T06:59:49Z +2910,108,1,3875,0.99,2005-07-06T18:15:39Z,2020-02-15T06:59:49Z +2911,108,2,4082,2.99,2005-07-07T05:11:53Z,2020-02-15T06:59:49Z +2912,108,1,4303,1.99,2005-07-07T16:57:32Z,2020-02-15T06:59:49Z +2913,108,1,4650,4.99,2005-07-08T09:32:08Z,2020-02-15T06:59:49Z +2914,108,1,4754,0.99,2005-07-08T14:20:01Z,2020-02-15T06:59:49Z +2915,108,2,5274,6.99,2005-07-09T14:34:09Z,2020-02-15T06:59:49Z +2916,108,1,5661,5.99,2005-07-10T07:53:51Z,2020-02-15T06:59:49Z +2917,108,2,5806,4.99,2005-07-10T15:11:54Z,2020-02-15T06:59:49Z +2918,108,1,6841,0.99,2005-07-12T19:04:24Z,2020-02-15T06:59:49Z +2919,108,2,8329,5.99,2005-07-29T04:06:33Z,2020-02-15T06:59:49Z +2920,108,2,8587,4.99,2005-07-29T12:18:40Z,2020-02-15T06:59:49Z +2921,108,1,8846,4.99,2005-07-29T23:10:28Z,2020-02-15T06:59:49Z +2922,108,2,9755,4.99,2005-07-31T09:24:55Z,2020-02-15T06:59:49Z +2923,108,1,11316,5.99,2005-08-02T16:07:49Z,2020-02-15T06:59:49Z +2924,108,2,11445,6.99,2005-08-02T20:33:35Z,2020-02-15T06:59:49Z +2925,108,2,11759,2.99,2005-08-17T09:41:23Z,2020-02-15T06:59:49Z +2926,108,1,12583,2.99,2005-08-18T15:51:36Z,2020-02-15T06:59:49Z +2927,108,2,12625,6.99,2005-08-18T17:36:19Z,2020-02-15T06:59:49Z +2928,108,2,13754,2.99,2005-08-20T11:18:08Z,2020-02-15T06:59:49Z +2929,108,2,14635,3.99,2005-08-21T18:51:43Z,2020-02-15T06:59:49Z +2930,108,2,15556,8.99,2005-08-23T04:52:16Z,2020-02-15T06:59:49Z +2931,108,1,16001,2.99,2005-08-23T20:45:53Z,2020-02-15T06:59:49Z +2932,108,1,15294,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2933,109,1,203,5.99,2005-05-26T07:27:57Z,2020-02-15T06:59:49Z +2934,109,1,386,0.99,2005-05-27T10:26:31Z,2020-02-15T06:59:49Z +2935,109,2,622,3.99,2005-05-28T15:58:22Z,2020-02-15T06:59:49Z +2936,109,1,698,0.99,2005-05-29T02:10:52Z,2020-02-15T06:59:49Z +2937,109,1,1061,7.99,2005-05-31T08:27:58Z,2020-02-15T06:59:49Z +2938,109,1,1106,4.99,2005-05-31T14:36:52Z,2020-02-15T06:59:49Z +2939,109,1,1115,2.99,2005-05-31T16:07:09Z,2020-02-15T06:59:49Z +2940,109,2,1581,2.99,2005-06-16T04:28:45Z,2020-02-15T06:59:49Z +2941,109,2,1891,3.99,2005-06-17T04:16:44Z,2020-02-15T06:59:49Z +2942,109,2,2198,6.99,2005-06-18T01:51:22Z,2020-02-15T06:59:49Z +2943,109,2,2679,5.99,2005-06-19T12:12:30Z,2020-02-15T06:59:49Z +2944,109,2,3076,5.99,2005-06-20T15:01:19Z,2020-02-15T06:59:49Z +2945,109,1,4921,4.99,2005-07-08T21:43:21Z,2020-02-15T06:59:49Z +2946,109,1,5027,2.99,2005-07-09T02:32:37Z,2020-02-15T06:59:49Z +2947,109,2,5296,2.99,2005-07-09T15:26:27Z,2020-02-15T06:59:49Z +2948,109,2,6920,6.99,2005-07-12T22:32:58Z,2020-02-15T06:59:49Z +2949,109,2,7145,0.99,2005-07-27T07:01:00Z,2020-02-15T06:59:49Z +2950,109,1,8006,3.99,2005-07-28T15:15:41Z,2020-02-15T06:59:49Z +2951,109,1,9230,0.99,2005-07-30T13:39:42Z,2020-02-15T06:59:49Z +2952,109,1,9871,2.99,2005-07-31T13:25:46Z,2020-02-15T06:59:49Z +2953,109,2,10240,0.99,2005-08-01T02:09:33Z,2020-02-15T06:59:49Z +2954,109,2,10892,3.99,2005-08-02T01:12:06Z,2020-02-15T06:59:49Z +2955,109,2,12137,6.99,2005-08-17T23:52:26Z,2020-02-15T06:59:49Z +2956,109,1,13264,3.99,2005-08-19T17:27:10Z,2020-02-15T06:59:49Z +2957,109,2,15398,7.99,2005-08-22T23:10:49Z,2020-02-15T06:59:49Z +2958,109,2,15677,2.99,2005-08-23T09:23:36Z,2020-02-15T06:59:49Z +2959,110,1,515,7.99,2005-05-28T03:10:10Z,2020-02-15T06:59:49Z +2960,110,2,538,1.99,2005-05-28T06:21:05Z,2020-02-15T06:59:49Z +2961,110,2,1528,8.99,2005-06-16T00:32:52Z,2020-02-15T06:59:49Z +2962,110,1,3587,4.99,2005-07-06T04:27:52Z,2020-02-15T06:59:49Z +2963,110,1,4317,2.99,2005-07-07T17:44:49Z,2020-02-15T06:59:49Z +2964,110,2,4827,4.99,2005-07-08T17:46:30Z,2020-02-15T06:59:49Z +2965,110,1,6160,4.99,2005-07-11T10:08:13Z,2020-02-15T06:59:49Z +2966,110,1,7474,0.99,2005-07-27T19:07:17Z,2020-02-15T06:59:49Z +2967,110,2,7542,0.99,2005-07-27T21:43:04Z,2020-02-15T06:59:49Z +2968,110,1,7570,2.99,2005-07-27T22:40:06Z,2020-02-15T06:59:49Z +2969,110,1,11647,7.99,2005-08-17T04:54:14Z,2020-02-15T06:59:49Z +2970,110,2,12585,3.99,2005-08-18T15:52:12Z,2020-02-15T06:59:49Z +2971,110,1,13723,2.99,2005-08-20T10:05:30Z,2020-02-15T06:59:49Z +2972,110,2,15381,2.99,2005-08-22T22:28:36Z,2020-02-15T06:59:49Z +2973,111,2,505,2.99,2005-05-28T02:06:37Z,2020-02-15T06:59:49Z +2974,111,1,1593,6.99,2005-06-16T05:14:52Z,2020-02-15T06:59:49Z +2975,111,2,1974,2.99,2005-06-17T09:30:05Z,2020-02-15T06:59:49Z +2976,111,2,1999,1.99,2005-06-17T11:30:08Z,2020-02-15T06:59:49Z +2977,111,2,2297,4.99,2005-06-18T08:17:41Z,2020-02-15T06:59:49Z +2978,111,2,3087,2.99,2005-06-20T15:53:59Z,2020-02-15T06:59:49Z +2979,111,2,3333,2.99,2005-06-21T10:01:36Z,2020-02-15T06:59:49Z +2980,111,2,3485,1.99,2005-07-05T23:25:54Z,2020-02-15T06:59:49Z +2981,111,1,3551,3.99,2005-07-06T02:33:48Z,2020-02-15T06:59:49Z +2982,111,2,3963,9.99,2005-07-06T22:19:17Z,2020-02-15T06:59:49Z +2983,111,1,4249,4.99,2005-07-07T14:05:17Z,2020-02-15T06:59:49Z +2984,111,2,4286,0.99,2005-07-07T15:36:44Z,2020-02-15T06:59:49Z +2985,111,1,6896,2.99,2005-07-12T21:25:37Z,2020-02-15T06:59:49Z +2986,111,2,8525,0.99,2005-07-29T10:20:19Z,2020-02-15T06:59:49Z +2987,111,2,9933,0.99,2005-07-31T15:24:46Z,2020-02-15T06:59:49Z +2988,111,2,10039,2.99,2005-07-31T18:50:40Z,2020-02-15T06:59:49Z +2989,111,2,10602,4.99,2005-08-01T14:30:23Z,2020-02-15T06:59:49Z +2990,111,1,10952,4.99,2005-08-02T03:28:21Z,2020-02-15T06:59:49Z +2991,111,2,10990,4.99,2005-08-02T04:41:06Z,2020-02-15T06:59:49Z +2992,111,2,11239,2.99,2005-08-02T13:27:11Z,2020-02-15T06:59:49Z +2993,111,2,12196,3.99,2005-08-18T02:08:48Z,2020-02-15T06:59:49Z +2994,111,2,13251,2.99,2005-08-19T16:48:37Z,2020-02-15T06:59:49Z +2995,111,2,13525,5.99,2005-08-20T02:50:44Z,2020-02-15T06:59:49Z +2996,111,1,14949,0.99,2005-08-22T06:12:16Z,2020-02-15T06:59:49Z +2997,111,2,15174,6.99,2005-08-22T15:26:36Z,2020-02-15T06:59:49Z +2998,111,2,15542,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2999,112,1,396,0.99,2005-05-27T11:47:04Z,2020-02-15T06:59:49Z +3000,112,2,701,2.99,2005-05-29T02:26:27Z,2020-02-15T06:59:49Z +3001,112,1,1835,4.99,2005-06-16T23:05:36Z,2020-02-15T06:59:49Z +3002,112,2,1930,2.99,2005-06-17T06:50:46Z,2020-02-15T06:59:49Z +3003,112,1,2193,4.99,2005-06-18T01:38:45Z,2020-02-15T06:59:49Z +3004,112,2,3018,2.99,2005-06-20T11:10:35Z,2020-02-15T06:59:49Z +3005,112,1,5351,4.99,2005-07-09T17:40:52Z,2020-02-15T06:59:49Z +3006,112,1,5385,2.99,2005-07-09T19:18:11Z,2020-02-15T06:59:49Z +3007,112,2,6550,2.99,2005-07-12T05:03:14Z,2020-02-15T06:59:49Z +3008,112,2,7691,4.99,2005-07-28T03:30:09Z,2020-02-15T06:59:49Z +3009,112,2,7761,4.99,2005-07-28T06:31:45Z,2020-02-15T06:59:49Z +3010,112,1,9217,4.99,2005-07-30T13:13:55Z,2020-02-15T06:59:49Z +3011,112,2,9321,6.99,2005-07-30T17:19:44Z,2020-02-15T06:59:49Z +3012,112,2,9609,4.99,2005-07-31T03:53:24Z,2020-02-15T06:59:49Z +3013,112,1,9830,5.99,2005-07-31T11:59:05Z,2020-02-15T06:59:49Z +3014,112,2,9911,3.99,2005-07-31T14:48:01Z,2020-02-15T06:59:49Z +3015,112,1,10038,2.99,2005-07-31T18:49:12Z,2020-02-15T06:59:49Z +3016,112,2,10596,5.99,2005-08-01T14:18:57Z,2020-02-15T06:59:49Z +3017,112,1,11019,2.99,2005-08-02T05:29:31Z,2020-02-15T06:59:49Z +3018,112,1,11599,7.99,2005-08-17T03:08:10Z,2020-02-15T06:59:49Z +3019,112,2,11659,4.99,2005-08-17T05:20:45Z,2020-02-15T06:59:49Z +3020,112,2,11863,3.99,2005-08-17T13:56:01Z,2020-02-15T06:59:49Z +3021,112,2,13611,8.99,2005-08-20T06:20:42Z,2020-02-15T06:59:49Z +3022,112,2,13879,2.99,2005-08-20T15:18:10Z,2020-02-15T06:59:49Z +3023,112,2,14049,5.99,2005-08-20T22:08:55Z,2020-02-15T06:59:49Z +3024,112,1,14358,0.99,2005-08-21T09:14:28Z,2020-02-15T06:59:49Z +3025,112,2,15304,4.99,2005-08-22T19:45:57Z,2020-02-15T06:59:49Z +3026,112,1,15671,0.99,2005-08-23T09:08:16Z,2020-02-15T06:59:49Z +3027,112,1,15687,8.99,2005-08-23T09:46:33Z,2020-02-15T06:59:49Z +3028,112,1,15756,2.99,2005-08-23T12:47:05Z,2020-02-15T06:59:49Z +3029,113,1,510,0.99,2005-05-28T02:52:14Z,2020-02-15T06:59:49Z +3030,113,2,776,0.99,2005-05-29T13:35:35Z,2020-02-15T06:59:49Z +3031,113,2,2077,4.99,2005-06-17T16:46:11Z,2020-02-15T06:59:49Z +3032,113,1,2282,2.99,2005-06-18T06:48:23Z,2020-02-15T06:59:49Z +3033,113,1,2783,2.99,2005-06-19T18:29:10Z,2020-02-15T06:59:49Z +3034,113,2,3004,0.99,2005-06-20T10:04:36Z,2020-02-15T06:59:49Z +3035,113,1,3124,8.99,2005-06-20T18:28:19Z,2020-02-15T06:59:49Z +3036,113,1,3162,6.99,2005-06-20T21:21:15Z,2020-02-15T06:59:49Z +3037,113,2,3657,5.99,2005-07-06T07:55:30Z,2020-02-15T06:59:49Z +3038,113,1,4333,2.99,2005-07-07T18:31:50Z,2020-02-15T06:59:49Z +3039,113,2,5189,2.99,2005-07-09T10:23:21Z,2020-02-15T06:59:49Z +3040,113,2,5324,2.99,2005-07-09T16:34:18Z,2020-02-15T06:59:49Z +3041,113,2,5655,4.99,2005-07-10T07:31:06Z,2020-02-15T06:59:49Z +3042,113,1,5774,5.99,2005-07-10T13:31:56Z,2020-02-15T06:59:49Z +3043,113,1,6025,0.99,2005-07-11T02:18:13Z,2020-02-15T06:59:49Z +3044,113,1,6836,0.99,2005-07-12T18:58:05Z,2020-02-15T06:59:49Z +3045,113,2,7468,5.99,2005-07-27T18:52:27Z,2020-02-15T06:59:49Z +3046,113,2,7587,2.99,2005-07-27T23:23:03Z,2020-02-15T06:59:49Z +3047,113,2,9221,6.99,2005-07-30T13:20:06Z,2020-02-15T06:59:49Z +3048,113,2,10181,4.99,2005-08-01T00:00:44Z,2020-02-15T06:59:49Z +3049,113,1,10378,0.99,2005-08-01T06:30:04Z,2020-02-15T06:59:49Z +3050,113,2,10578,1.99,2005-08-01T13:48:02Z,2020-02-15T06:59:49Z +3051,113,2,11655,7.99,2005-08-17T05:11:07Z,2020-02-15T06:59:49Z +3052,113,1,11872,5.99,2005-08-17T14:11:45Z,2020-02-15T06:59:49Z +3053,113,1,12392,5.99,2005-08-18T08:57:58Z,2020-02-15T06:59:49Z +3054,113,2,12817,3.99,2005-08-19T01:04:35Z,2020-02-15T06:59:49Z +3055,113,2,13406,2.99,2005-08-19T22:22:01Z,2020-02-15T06:59:49Z +3056,113,1,15600,1.99,2005-08-23T06:31:24Z,2020-02-15T06:59:49Z +3057,113,1,15770,2.99,2005-08-23T13:18:16Z,2020-02-15T06:59:49Z +3058,114,1,205,4.99,2005-05-26T07:59:37Z,2020-02-15T06:59:49Z +3059,114,1,255,4.99,2005-05-26T14:52:15Z,2020-02-15T06:59:49Z +3060,114,2,889,2.99,2005-05-30T07:14:53Z,2020-02-15T06:59:49Z +3061,114,1,2059,2.99,2005-06-17T15:36:12Z,2020-02-15T06:59:49Z +3062,114,2,2680,7.99,2005-06-19T12:13:37Z,2020-02-15T06:59:49Z +3063,114,1,3094,2.99,2005-06-20T16:06:51Z,2020-02-15T06:59:49Z +3064,114,2,3144,5.99,2005-06-20T20:14:20Z,2020-02-15T06:59:49Z +3065,114,1,3484,4.99,2005-07-05T23:23:11Z,2020-02-15T06:59:49Z +3066,114,1,3924,2.99,2005-07-06T20:38:02Z,2020-02-15T06:59:49Z +3067,114,1,4025,0.99,2005-07-07T02:13:24Z,2020-02-15T06:59:49Z +3068,114,1,5418,0.99,2005-07-09T20:41:35Z,2020-02-15T06:59:49Z +3069,114,2,5624,4.99,2005-07-10T05:43:16Z,2020-02-15T06:59:49Z +3070,114,1,5625,2.99,2005-07-10T05:44:02Z,2020-02-15T06:59:49Z +3071,114,1,6188,2.99,2005-07-11T11:31:47Z,2020-02-15T06:59:49Z +3072,114,1,6754,4.99,2005-07-12T14:59:24Z,2020-02-15T06:59:49Z +3073,114,2,7316,2.99,2005-07-27T13:19:03Z,2020-02-15T06:59:49Z +3074,114,2,7462,2.99,2005-07-27T18:47:47Z,2020-02-15T06:59:49Z +3075,114,2,7565,2.99,2005-07-27T22:33:59Z,2020-02-15T06:59:49Z +3076,114,2,7938,5.99,2005-07-28T12:39:11Z,2020-02-15T06:59:49Z +3077,114,2,8496,4.99,2005-07-29T09:05:33Z,2020-02-15T06:59:49Z +3078,114,1,8590,10.99,2005-07-29T12:32:20Z,2020-02-15T06:59:49Z +3079,114,1,9717,4.99,2005-07-31T08:24:41Z,2020-02-15T06:59:49Z +3080,114,1,11547,4.99,2005-08-17T00:59:24Z,2020-02-15T06:59:49Z +3081,114,2,12326,0.99,2005-08-18T06:41:59Z,2020-02-15T06:59:49Z +3082,114,1,12685,6.99,2005-08-18T19:51:29Z,2020-02-15T06:59:49Z +3083,114,2,13459,6.99,2005-08-20T00:45:40Z,2020-02-15T06:59:49Z +3084,114,2,14158,5.99,2005-08-21T02:43:20Z,2020-02-15T06:59:49Z +3085,114,1,14867,4.99,2005-08-22T03:14:46Z,2020-02-15T06:59:49Z +3086,114,1,15485,0.99,2005-08-23T02:04:57Z,2020-02-15T06:59:49Z +3087,114,1,15528,2.99,2005-08-23T03:45:40Z,2020-02-15T06:59:49Z +3088,114,2,15646,3.99,2005-08-23T08:19:55Z,2020-02-15T06:59:49Z +3089,114,1,16047,0.99,2005-08-23T22:42:48Z,2020-02-15T06:59:49Z +3090,114,2,12506,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3091,115,1,915,0.99,2005-05-30T11:20:27Z,2020-02-15T06:59:49Z +3092,115,1,983,0.99,2005-05-30T22:15:51Z,2020-02-15T06:59:49Z +3093,115,1,1102,2.99,2005-05-31T14:20:29Z,2020-02-15T06:59:49Z +3094,115,2,1361,0.99,2005-06-15T13:37:38Z,2020-02-15T06:59:49Z +3095,115,2,1515,2.99,2005-06-15T23:07:50Z,2020-02-15T06:59:49Z +3096,115,1,3289,6.99,2005-06-21T06:41:48Z,2020-02-15T06:59:49Z +3097,115,2,3544,0.99,2005-07-06T02:06:32Z,2020-02-15T06:59:49Z +3098,115,1,3624,0.99,2005-07-06T06:06:27Z,2020-02-15T06:59:49Z +3099,115,1,4780,1.99,2005-07-08T16:06:51Z,2020-02-15T06:59:49Z +3100,115,1,5245,4.99,2005-07-09T13:24:14Z,2020-02-15T06:59:49Z +3101,115,1,6080,2.99,2005-07-11T05:08:11Z,2020-02-15T06:59:49Z +3102,115,2,6113,2.99,2005-07-11T07:31:08Z,2020-02-15T06:59:49Z +3103,115,1,6373,0.99,2005-07-11T21:35:20Z,2020-02-15T06:59:49Z +3104,115,1,6574,5.99,2005-07-12T06:04:22Z,2020-02-15T06:59:49Z +3105,115,1,6798,6.99,2005-07-12T16:49:11Z,2020-02-15T06:59:49Z +3106,115,2,7355,1.99,2005-07-27T14:45:59Z,2020-02-15T06:59:49Z +3107,115,2,7465,4.99,2005-07-27T18:50:30Z,2020-02-15T06:59:49Z +3108,115,1,7983,4.99,2005-07-28T14:23:01Z,2020-02-15T06:59:49Z +3109,115,1,8594,4.99,2005-07-29T12:42:13Z,2020-02-15T06:59:49Z +3110,115,2,9578,0.99,2005-07-31T02:54:31Z,2020-02-15T06:59:49Z +3111,115,2,10022,3.99,2005-07-31T18:25:30Z,2020-02-15T06:59:49Z +3112,115,2,10475,4.99,2005-08-01T10:03:17Z,2020-02-15T06:59:49Z +3113,115,2,10647,2.99,2005-08-01T16:08:46Z,2020-02-15T06:59:49Z +3114,115,2,10919,0.99,2005-08-02T02:11:03Z,2020-02-15T06:59:49Z +3115,115,1,11891,2.99,2005-08-17T15:11:55Z,2020-02-15T06:59:49Z +3116,115,2,12366,0.99,2005-08-18T07:55:14Z,2020-02-15T06:59:49Z +3117,115,2,13977,0.99,2005-08-20T19:02:34Z,2020-02-15T06:59:49Z +3118,115,1,15176,6.99,2005-08-22T15:30:25Z,2020-02-15T06:59:49Z +3119,115,2,15452,0.99,2005-08-23T00:57:12Z,2020-02-15T06:59:49Z +3120,115,2,13056,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3121,116,1,1058,4.99,2005-05-31T08:04:17Z,2020-02-15T06:59:49Z +3122,116,2,1332,0.99,2005-06-15T11:36:01Z,2020-02-15T06:59:49Z +3123,116,2,1533,0.99,2005-06-16T00:46:02Z,2020-02-15T06:59:49Z +3124,116,2,1762,4.99,2005-06-16T17:50:19Z,2020-02-15T06:59:49Z +3125,116,2,1913,4.99,2005-06-17T05:19:47Z,2020-02-15T06:59:49Z +3126,116,1,2639,4.99,2005-06-19T09:24:02Z,2020-02-15T06:59:49Z +3127,116,1,2861,3.99,2005-06-19T23:21:34Z,2020-02-15T06:59:49Z +3128,116,2,3908,6.99,2005-07-06T19:47:26Z,2020-02-15T06:59:49Z +3129,116,2,3940,2.99,2005-07-06T21:16:59Z,2020-02-15T06:59:49Z +3130,116,1,4027,0.99,2005-07-07T02:19:01Z,2020-02-15T06:59:49Z +3131,116,2,4737,4.99,2005-07-08T13:23:53Z,2020-02-15T06:59:49Z +3132,116,2,5169,2.99,2005-07-09T09:22:25Z,2020-02-15T06:59:49Z +3133,116,1,6557,4.99,2005-07-12T05:12:03Z,2020-02-15T06:59:49Z +3134,116,1,7238,0.99,2005-07-27T10:13:41Z,2020-02-15T06:59:49Z +3135,116,2,7763,5.99,2005-07-28T06:35:16Z,2020-02-15T06:59:49Z +3136,116,2,9245,6.99,2005-07-30T14:07:50Z,2020-02-15T06:59:49Z +3137,116,1,9562,3.99,2005-07-31T02:23:20Z,2020-02-15T06:59:49Z +3138,116,2,10250,1.99,2005-08-01T02:38:42Z,2020-02-15T06:59:49Z +3139,116,1,10801,1.99,2005-08-01T22:09:35Z,2020-02-15T06:59:49Z +3140,116,2,11016,4.99,2005-08-02T05:19:13Z,2020-02-15T06:59:49Z +3141,116,2,12376,2.99,2005-08-18T08:20:29Z,2020-02-15T06:59:49Z +3142,116,2,13146,7.99,2005-08-19T12:54:42Z,2020-02-15T06:59:49Z +3143,116,1,13369,0.99,2005-08-19T21:19:47Z,2020-02-15T06:59:49Z +3144,116,1,13474,0.99,2005-08-20T01:04:32Z,2020-02-15T06:59:49Z +3145,116,1,13775,6.99,2005-08-20T11:56:30Z,2020-02-15T06:59:49Z +3146,116,2,14763,11.99,2005-08-21T23:34:00Z,2020-02-15T06:59:49Z +3147,116,1,14907,2.99,2005-08-22T04:44:09Z,2020-02-15T06:59:49Z +3148,117,1,700,0.99,2005-05-29T02:18:54Z,2020-02-15T06:59:49Z +3149,117,2,1114,0.99,2005-05-31T16:00:33Z,2020-02-15T06:59:49Z +3150,117,1,1755,2.99,2005-06-16T17:18:44Z,2020-02-15T06:59:49Z +3151,117,2,3218,2.99,2005-06-21T01:38:09Z,2020-02-15T06:59:49Z +3152,117,2,5506,5.99,2005-07-10T00:45:48Z,2020-02-15T06:59:49Z +3153,117,1,5673,0.99,2005-07-10T08:21:54Z,2020-02-15T06:59:49Z +3154,117,1,6093,9.99,2005-07-11T05:52:50Z,2020-02-15T06:59:49Z +3155,117,1,6449,6.99,2005-07-12T00:48:58Z,2020-02-15T06:59:49Z +3156,117,1,8687,2.99,2005-07-29T16:19:17Z,2020-02-15T06:59:49Z +3157,117,2,10556,2.99,2005-08-01T12:58:42Z,2020-02-15T06:59:49Z +3158,117,1,10558,4.99,2005-08-01T13:00:20Z,2020-02-15T06:59:49Z +3159,117,2,11467,3.99,2005-08-02T21:47:07Z,2020-02-15T06:59:49Z +3160,117,1,12143,2.99,2005-08-18T00:06:26Z,2020-02-15T06:59:49Z +3161,117,1,12337,2.99,2005-08-18T07:02:24Z,2020-02-15T06:59:49Z +3162,117,1,12575,6.99,2005-08-18T15:37:42Z,2020-02-15T06:59:49Z +3163,117,1,12618,4.99,2005-08-18T17:24:02Z,2020-02-15T06:59:49Z +3164,117,1,14784,0.99,2005-08-22T00:23:13Z,2020-02-15T06:59:49Z +3165,117,2,14854,2.99,2005-08-22T02:26:47Z,2020-02-15T06:59:49Z +3166,117,1,15432,2.99,2005-08-23T00:26:52Z,2020-02-15T06:59:49Z +3167,118,2,351,5.99,2005-05-27T05:39:03Z,2020-02-15T06:59:49Z +3168,118,2,1766,4.99,2005-06-16T17:59:37Z,2020-02-15T06:59:49Z +3169,118,2,2217,0.99,2005-06-18T03:12:29Z,2020-02-15T06:59:49Z +3170,118,1,3263,4.99,2005-06-21T04:15:52Z,2020-02-15T06:59:49Z +3171,118,1,4966,0.99,2005-07-08T23:47:25Z,2020-02-15T06:59:49Z +3172,118,1,5829,1.99,2005-07-10T16:29:41Z,2020-02-15T06:59:49Z +3173,118,1,6377,0.99,2005-07-11T21:41:16Z,2020-02-15T06:59:49Z +3174,118,1,6507,1.99,2005-07-12T03:33:12Z,2020-02-15T06:59:49Z +3175,118,1,7196,2.99,2005-07-27T08:49:08Z,2020-02-15T06:59:49Z +3176,118,1,7850,4.99,2005-07-28T09:31:13Z,2020-02-15T06:59:49Z +3177,118,2,7956,4.99,2005-07-28T13:32:17Z,2020-02-15T06:59:49Z +3178,118,1,8314,3.99,2005-07-29T03:35:04Z,2020-02-15T06:59:49Z +3179,118,2,8760,7.99,2005-07-29T19:22:40Z,2020-02-15T06:59:49Z +3180,118,1,8881,4.99,2005-07-30T00:22:31Z,2020-02-15T06:59:49Z +3181,118,2,10045,1.99,2005-07-31T19:04:35Z,2020-02-15T06:59:49Z +3182,118,2,12538,2.99,2005-08-18T14:09:09Z,2020-02-15T06:59:49Z +3183,118,2,13193,6.99,2005-08-19T14:33:45Z,2020-02-15T06:59:49Z +3184,118,2,14394,5.99,2005-08-21T10:23:10Z,2020-02-15T06:59:49Z +3185,118,2,14595,7.99,2005-08-21T17:35:17Z,2020-02-15T06:59:49Z +3186,118,1,14924,2.99,2005-08-22T05:15:17Z,2020-02-15T06:59:49Z +3187,118,1,15731,0.99,2005-08-23T11:33:25Z,2020-02-15T06:59:49Z +3188,119,2,67,0.99,2005-05-25T09:41:01Z,2020-02-15T06:59:49Z +3189,119,1,235,5.99,2005-05-26T11:51:09Z,2020-02-15T06:59:49Z +3190,119,2,540,6.99,2005-05-28T06:40:25Z,2020-02-15T06:59:49Z +3191,119,1,1179,7.99,2005-06-15T00:36:50Z,2020-02-15T06:59:49Z +3192,119,2,2009,2.99,2005-06-17T11:48:31Z,2020-02-15T06:59:49Z +3193,119,2,3388,5.99,2005-06-21T14:34:51Z,2020-02-15T06:59:49Z +3194,119,2,4840,8.99,2005-07-08T18:18:16Z,2020-02-15T06:59:49Z +3195,119,1,5176,5.99,2005-07-09T09:39:31Z,2020-02-15T06:59:49Z +3196,119,1,5268,0.99,2005-07-09T14:22:43Z,2020-02-15T06:59:49Z +3197,119,1,6079,7.99,2005-07-11T05:07:14Z,2020-02-15T06:59:49Z +3198,119,2,6330,0.99,2005-07-11T19:15:42Z,2020-02-15T06:59:49Z +3199,119,2,8140,4.99,2005-07-28T20:17:50Z,2020-02-15T06:59:49Z +3200,119,1,8183,5.99,2005-07-28T22:21:07Z,2020-02-15T06:59:49Z +3201,119,1,8304,4.99,2005-07-29T03:08:30Z,2020-02-15T06:59:49Z +3202,119,2,9028,2.99,2005-07-30T06:00:35Z,2020-02-15T06:59:49Z +3203,119,1,10101,0.99,2005-07-31T20:47:29Z,2020-02-15T06:59:49Z +3204,119,1,10366,3.99,2005-08-01T06:09:37Z,2020-02-15T06:59:49Z +3205,119,2,10552,2.99,2005-08-01T12:49:44Z,2020-02-15T06:59:49Z +3206,119,1,10681,4.99,2005-08-01T17:30:35Z,2020-02-15T06:59:49Z +3207,119,2,11377,2.99,2005-08-02T18:16:47Z,2020-02-15T06:59:49Z +3208,119,1,11520,5.99,2005-08-17T00:04:28Z,2020-02-15T06:59:49Z +3209,119,2,12576,2.99,2005-08-18T15:38:31Z,2020-02-15T06:59:49Z +3210,119,2,12603,3.99,2005-08-18T16:56:20Z,2020-02-15T06:59:49Z +3211,119,2,12842,6.99,2005-08-19T01:57:21Z,2020-02-15T06:59:49Z +3212,119,1,13581,4.99,2005-08-20T05:26:15Z,2020-02-15T06:59:49Z +3213,119,2,14349,3.99,2005-08-21T08:54:53Z,2020-02-15T06:59:49Z +3214,119,2,14382,2.99,2005-08-21T10:01:03Z,2020-02-15T06:59:49Z +3215,119,2,14643,6.99,2005-08-21T19:11:58Z,2020-02-15T06:59:49Z +3216,119,2,14659,0.99,2005-08-21T19:42:36Z,2020-02-15T06:59:49Z +3217,119,1,15111,4.99,2005-08-22T12:21:43Z,2020-02-15T06:59:49Z +3218,119,2,15131,3.99,2005-08-22T13:06:26Z,2020-02-15T06:59:49Z +3219,119,2,15171,6.99,2005-08-22T15:23:59Z,2020-02-15T06:59:49Z +3220,119,1,15844,2.99,2005-08-23T15:38:12Z,2020-02-15T06:59:49Z +3221,119,2,16028,3.99,2005-08-23T21:52:56Z,2020-02-15T06:59:49Z +3222,120,2,68,7.99,2005-05-25T09:47:31Z,2020-02-15T06:59:49Z +3223,120,2,532,0.99,2005-05-28T05:36:58Z,2020-02-15T06:59:49Z +3224,120,1,1374,3.99,2005-06-15T14:49:54Z,2020-02-15T06:59:49Z +3225,120,1,1820,4.99,2005-06-16T21:34:50Z,2020-02-15T06:59:49Z +3226,120,2,1932,2.99,2005-06-17T06:54:41Z,2020-02-15T06:59:49Z +3227,120,1,2169,4.99,2005-06-17T23:57:23Z,2020-02-15T06:59:49Z +3228,120,1,2803,9.99,2005-06-19T19:18:27Z,2020-02-15T06:59:49Z +3229,120,1,3133,2.99,2005-06-20T19:18:32Z,2020-02-15T06:59:49Z +3230,120,1,4001,5.99,2005-07-07T00:07:00Z,2020-02-15T06:59:49Z +3231,120,2,4272,3.99,2005-07-07T14:39:20Z,2020-02-15T06:59:49Z +3232,120,2,4342,0.99,2005-07-07T18:47:03Z,2020-02-15T06:59:49Z +3233,120,2,4666,9.99,2005-07-08T10:05:02Z,2020-02-15T06:59:49Z +3234,120,1,4942,1.99,2005-07-08T22:42:47Z,2020-02-15T06:59:49Z +3235,120,2,5288,1.99,2005-07-09T15:13:07Z,2020-02-15T06:59:49Z +3236,120,2,6503,0.99,2005-07-12T03:18:07Z,2020-02-15T06:59:49Z +3237,120,1,6989,4.99,2005-07-27T01:00:34Z,2020-02-15T06:59:49Z +3238,120,2,8046,0.99,2005-07-28T16:49:41Z,2020-02-15T06:59:49Z +3239,120,2,8756,1.99,2005-07-29T19:18:57Z,2020-02-15T06:59:49Z +3240,120,1,8998,6.99,2005-07-30T04:54:14Z,2020-02-15T06:59:49Z +3241,120,2,9907,6.99,2005-07-31T14:39:50Z,2020-02-15T06:59:49Z +3242,120,2,10161,0.99,2005-07-31T23:09:41Z,2020-02-15T06:59:49Z +3243,120,2,10696,4.99,2005-08-01T18:18:13Z,2020-02-15T06:59:49Z +3244,120,1,10940,3.99,2005-08-02T03:08:29Z,2020-02-15T06:59:49Z +3245,120,2,11133,0.99,2005-08-02T09:15:45Z,2020-02-15T06:59:49Z +3246,120,2,13167,2.99,2005-08-19T13:36:41Z,2020-02-15T06:59:49Z +3247,120,2,13375,7.99,2005-08-19T21:31:31Z,2020-02-15T06:59:49Z +3248,120,1,14001,2.99,2005-08-20T20:07:15Z,2020-02-15T06:59:49Z +3249,120,1,14153,4.99,2005-08-21T02:24:33Z,2020-02-15T06:59:49Z +3250,120,1,14246,4.99,2005-08-21T05:34:09Z,2020-02-15T06:59:49Z +3251,120,2,14460,9.99,2005-08-21T12:48:48Z,2020-02-15T06:59:49Z +3252,120,2,14969,6.99,2005-08-22T06:49:15Z,2020-02-15T06:59:49Z +3253,120,1,15780,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3254,121,1,217,4.99,2005-05-26T09:24:26Z,2020-02-15T06:59:49Z +3255,121,1,1634,2.99,2005-06-16T08:16:05Z,2020-02-15T06:59:49Z +3256,121,1,1833,1.99,2005-06-16T22:45:03Z,2020-02-15T06:59:49Z +3257,121,2,5670,0.99,2005-07-10T08:14:52Z,2020-02-15T06:59:49Z +3258,121,2,6780,4.99,2005-07-12T16:18:12Z,2020-02-15T06:59:49Z +3259,121,2,7114,0.99,2005-07-27T05:42:13Z,2020-02-15T06:59:49Z +3260,121,1,7185,0.99,2005-07-27T08:23:54Z,2020-02-15T06:59:49Z +3261,121,2,7298,2.99,2005-07-27T12:45:14Z,2020-02-15T06:59:49Z +3262,121,1,8370,6.99,2005-07-29T05:16:21Z,2020-02-15T06:59:49Z +3263,121,2,8788,1.99,2005-07-29T20:46:44Z,2020-02-15T06:59:49Z +3264,121,2,8875,2.99,2005-07-30T00:15:09Z,2020-02-15T06:59:49Z +3265,121,2,8969,8.99,2005-07-30T04:00:19Z,2020-02-15T06:59:49Z +3266,121,2,10457,5.99,2005-08-01T09:17:34Z,2020-02-15T06:59:49Z +3267,121,2,11720,8.99,2005-08-17T07:46:54Z,2020-02-15T06:59:49Z +3268,121,2,12242,1.99,2005-08-18T03:37:31Z,2020-02-15T06:59:49Z +3269,121,2,12428,3.99,2005-08-18T10:24:21Z,2020-02-15T06:59:49Z +3270,121,2,12734,1.99,2005-08-18T22:04:52Z,2020-02-15T06:59:49Z +3271,121,1,12881,5.99,2005-08-19T03:28:13Z,2020-02-15T06:59:49Z +3272,121,2,12892,0.99,2005-08-19T03:46:34Z,2020-02-15T06:59:49Z +3273,121,1,14138,7.99,2005-08-21T01:59:37Z,2020-02-15T06:59:49Z +3274,121,1,14177,4.99,2005-08-21T03:11:33Z,2020-02-15T06:59:49Z +3275,121,2,14412,9.99,2005-08-21T11:02:09Z,2020-02-15T06:59:49Z +3276,121,1,14464,2.99,2005-08-21T12:52:54Z,2020-02-15T06:59:49Z +3277,121,2,15114,7.99,2005-08-22T12:24:55Z,2020-02-15T06:59:49Z +3278,121,1,15369,0.99,2005-08-22T21:58:06Z,2020-02-15T06:59:49Z +3279,121,1,16041,2.99,2005-08-23T22:20:26Z,2020-02-15T06:59:49Z +3280,122,2,853,0.99,2005-05-30T01:43:31Z,2020-02-15T06:59:49Z +3281,122,2,1135,4.99,2005-05-31T19:15:11Z,2020-02-15T06:59:49Z +3282,122,1,1211,0.99,2005-06-15T03:01:20Z,2020-02-15T06:59:49Z +3283,122,2,1442,7.99,2005-06-15T18:55:34Z,2020-02-15T06:59:49Z +3284,122,2,2240,3.99,2005-06-18T04:28:27Z,2020-02-15T06:59:49Z +3285,122,1,2253,0.99,2005-06-18T05:11:43Z,2020-02-15T06:59:49Z +3286,122,1,2482,4.99,2005-06-18T21:10:44Z,2020-02-15T06:59:49Z +3287,122,2,2595,4.99,2005-06-19T05:43:55Z,2020-02-15T06:59:49Z +3288,122,2,2834,1.99,2005-06-19T21:41:46Z,2020-02-15T06:59:49Z +3289,122,1,3778,2.99,2005-07-06T13:44:48Z,2020-02-15T06:59:49Z +3290,122,2,3986,4.99,2005-07-06T23:25:13Z,2020-02-15T06:59:49Z +3291,122,1,4239,7.99,2005-07-07T13:23:17Z,2020-02-15T06:59:49Z +3292,122,1,4568,4.99,2005-07-08T05:23:59Z,2020-02-15T06:59:49Z +3293,122,2,5235,6.99,2005-07-09T12:54:25Z,2020-02-15T06:59:49Z +3294,122,2,6231,0.99,2005-07-11T14:02:36Z,2020-02-15T06:59:49Z +3295,122,1,6427,0.99,2005-07-11T23:57:34Z,2020-02-15T06:59:49Z +3296,122,1,6436,0.99,2005-07-12T00:18:42Z,2020-02-15T06:59:49Z +3297,122,2,6974,7.99,2005-07-27T00:39:16Z,2020-02-15T06:59:49Z +3298,122,1,7267,2.99,2005-07-27T11:22:55Z,2020-02-15T06:59:49Z +3299,122,2,7950,4.99,2005-07-28T13:21:00Z,2020-02-15T06:59:49Z +3300,122,1,8077,2.99,2005-07-28T17:54:35Z,2020-02-15T06:59:49Z +3301,122,2,8177,0.99,2005-07-28T21:43:54Z,2020-02-15T06:59:49Z +3302,122,1,8772,5.99,2005-07-29T19:55:25Z,2020-02-15T06:59:49Z +3303,122,2,9910,4.99,2005-07-31T14:47:57Z,2020-02-15T06:59:49Z +3304,122,1,10626,1.99,2005-08-01T15:32:41Z,2020-02-15T06:59:49Z +3305,122,2,11044,3.99,2005-08-02T06:05:27Z,2020-02-15T06:59:49Z +3306,122,2,11197,2.99,2005-08-02T11:45:07Z,2020-02-15T06:59:49Z +3307,122,2,12476,4.99,2005-08-18T12:22:40Z,2020-02-15T06:59:49Z +3308,122,2,12711,4.99,2005-08-18T21:03:32Z,2020-02-15T06:59:49Z +3309,122,1,13171,2.99,2005-08-19T13:48:54Z,2020-02-15T06:59:49Z +3310,122,1,13812,4.99,2005-08-20T13:01:43Z,2020-02-15T06:59:49Z +3311,122,2,14666,5.99,2005-08-21T19:51:09Z,2020-02-15T06:59:49Z +3312,123,1,992,2.99,2005-05-30T23:47:56Z,2020-02-15T06:59:49Z +3313,123,2,1490,4.99,2005-06-15T21:42:17Z,2020-02-15T06:59:49Z +3314,123,1,1751,0.99,2005-06-16T17:00:14Z,2020-02-15T06:59:49Z +3315,123,2,1775,4.99,2005-06-16T18:28:19Z,2020-02-15T06:59:49Z +3316,123,2,1951,0.99,2005-06-17T08:30:35Z,2020-02-15T06:59:49Z +3317,123,1,2594,2.99,2005-06-19T05:43:43Z,2020-02-15T06:59:49Z +3318,123,1,4442,3.99,2005-07-07T23:05:30Z,2020-02-15T06:59:49Z +3319,123,1,4860,8.99,2005-07-08T18:54:07Z,2020-02-15T06:59:49Z +3320,123,2,7535,4.99,2005-07-27T21:32:39Z,2020-02-15T06:59:49Z +3321,123,1,7727,2.99,2005-07-28T04:52:43Z,2020-02-15T06:59:49Z +3322,123,2,7768,0.99,2005-07-28T06:44:03Z,2020-02-15T06:59:49Z +3323,123,1,7852,2.99,2005-07-28T09:34:29Z,2020-02-15T06:59:49Z +3324,123,1,7969,5.99,2005-07-28T13:57:37Z,2020-02-15T06:59:49Z +3325,123,2,8699,4.99,2005-07-29T16:53:00Z,2020-02-15T06:59:49Z +3326,123,2,9529,4.99,2005-07-31T01:05:26Z,2020-02-15T06:59:49Z +3327,123,1,10066,4.99,2005-07-31T19:30:01Z,2020-02-15T06:59:49Z +3328,123,2,10295,8.99,2005-08-01T03:53:49Z,2020-02-15T06:59:49Z +3329,123,1,12360,2.99,2005-08-18T07:46:35Z,2020-02-15T06:59:49Z +3330,123,1,12402,3.99,2005-08-18T09:27:34Z,2020-02-15T06:59:49Z +3331,123,1,13668,2.99,2005-08-20T08:26:06Z,2020-02-15T06:59:49Z +3332,123,2,15152,7.99,2005-08-22T14:25:21Z,2020-02-15T06:59:49Z +3333,123,2,15525,4.99,2005-08-23T03:43:32Z,2020-02-15T06:59:49Z +3334,123,1,15621,1.99,2005-08-23T07:13:43Z,2020-02-15T06:59:49Z +3335,123,2,15787,2.99,2005-08-23T13:51:57Z,2020-02-15T06:59:49Z +3336,124,1,775,0.99,2005-05-29T13:23:26Z,2020-02-15T06:59:49Z +3337,124,2,1039,4.99,2005-05-31T05:32:29Z,2020-02-15T06:59:49Z +3338,124,2,1057,3.99,2005-05-31T07:58:06Z,2020-02-15T06:59:49Z +3339,124,2,1130,5.99,2005-05-31T18:13:57Z,2020-02-15T06:59:49Z +3340,124,2,2336,1.99,2005-06-18T11:00:05Z,2020-02-15T06:59:49Z +3341,124,1,4341,7.99,2005-07-07T18:44:23Z,2020-02-15T06:59:49Z +3342,124,2,4709,2.99,2005-07-08T12:04:34Z,2020-02-15T06:59:49Z +3343,124,1,5566,2.99,2005-07-10T03:30:17Z,2020-02-15T06:59:49Z +3344,124,1,6411,2.99,2005-07-11T23:10:50Z,2020-02-15T06:59:49Z +3345,124,1,7519,6.99,2005-07-27T21:01:41Z,2020-02-15T06:59:49Z +3346,124,2,7700,8.99,2005-07-28T03:54:14Z,2020-02-15T06:59:49Z +3347,124,2,8524,0.99,2005-07-29T10:20:07Z,2020-02-15T06:59:49Z +3348,124,1,9986,3.99,2005-07-31T17:16:50Z,2020-02-15T06:59:49Z +3349,124,2,11493,5.99,2005-08-02T22:47:00Z,2020-02-15T06:59:49Z +3350,124,1,12835,4.99,2005-08-19T01:47:45Z,2020-02-15T06:59:49Z +3351,124,2,14737,0.99,2005-08-21T22:27:11Z,2020-02-15T06:59:49Z +3352,124,2,15266,4.99,2005-08-22T18:37:24Z,2020-02-15T06:59:49Z +3353,124,2,16023,0.99,2005-08-23T21:45:02Z,2020-02-15T06:59:49Z +3354,125,2,185,3.99,2005-05-26T05:30:03Z,2020-02-15T06:59:49Z +3355,125,1,1481,2.99,2005-06-15T21:17:58Z,2020-02-15T06:59:49Z +3356,125,1,2355,3.99,2005-06-18T12:57:06Z,2020-02-15T06:59:49Z +3357,125,1,2826,7.99,2005-06-19T20:41:35Z,2020-02-15T06:59:49Z +3358,125,1,3118,4.99,2005-06-20T18:05:57Z,2020-02-15T06:59:49Z +3359,125,1,3617,4.99,2005-07-06T05:58:06Z,2020-02-15T06:59:49Z +3360,125,1,5200,2.99,2005-07-09T10:52:09Z,2020-02-15T06:59:49Z +3361,125,2,5523,7.99,2005-07-10T01:47:55Z,2020-02-15T06:59:49Z +3362,125,1,6055,0.99,2005-07-11T03:59:08Z,2020-02-15T06:59:49Z +3363,125,2,6268,6.99,2005-07-11T15:55:34Z,2020-02-15T06:59:49Z +3364,125,1,7323,4.99,2005-07-27T13:39:40Z,2020-02-15T06:59:49Z +3365,125,2,7879,0.99,2005-07-28T10:27:46Z,2020-02-15T06:59:49Z +3366,125,2,7922,0.99,2005-07-28T12:05:25Z,2020-02-15T06:59:49Z +3367,125,2,8375,2.99,2005-07-29T05:25:30Z,2020-02-15T06:59:49Z +3368,125,1,8433,2.99,2005-07-29T07:19:16Z,2020-02-15T06:59:49Z +3369,125,1,8832,4.99,2005-07-29T22:37:49Z,2020-02-15T06:59:49Z +3370,125,1,9129,9.99,2005-07-30T09:51:21Z,2020-02-15T06:59:49Z +3371,125,1,9496,4.99,2005-07-30T23:55:20Z,2020-02-15T06:59:49Z +3372,125,2,9504,0.99,2005-07-31T00:09:07Z,2020-02-15T06:59:49Z +3373,125,1,9722,4.99,2005-07-31T08:29:48Z,2020-02-15T06:59:49Z +3374,125,2,9734,2.99,2005-07-31T08:57:45Z,2020-02-15T06:59:49Z +3375,125,1,10583,2.99,2005-08-01T13:54:35Z,2020-02-15T06:59:49Z +3376,125,1,10699,2.99,2005-08-01T18:24:51Z,2020-02-15T06:59:49Z +3377,125,2,11279,7.99,2005-08-02T14:30:03Z,2020-02-15T06:59:49Z +3378,125,1,11806,4.99,2005-08-17T11:49:28Z,2020-02-15T06:59:49Z +3379,125,1,11832,4.99,2005-08-17T12:55:31Z,2020-02-15T06:59:49Z +3380,125,1,11999,0.99,2005-08-17T18:47:07Z,2020-02-15T06:59:49Z +3381,125,1,12075,4.99,2005-08-17T21:54:55Z,2020-02-15T06:59:49Z +3382,125,2,12262,2.99,2005-08-18T04:16:15Z,2020-02-15T06:59:49Z +3383,125,2,13441,6.99,2005-08-19T23:48:23Z,2020-02-15T06:59:49Z +3384,125,2,14456,2.99,2005-08-21T12:38:09Z,2020-02-15T06:59:49Z +3385,125,1,15055,2.99,2005-08-22T10:14:39Z,2020-02-15T06:59:49Z +3386,126,1,9,4.99,2005-05-25T00:00:40Z,2020-02-15T06:59:49Z +3387,126,1,752,4.99,2005-05-29T10:14:15Z,2020-02-15T06:59:49Z +3388,126,2,1054,4.99,2005-05-31T07:33:25Z,2020-02-15T06:59:49Z +3389,126,1,3450,2.99,2005-06-21T21:01:57Z,2020-02-15T06:59:49Z +3390,126,2,3502,5.99,2005-07-06T00:15:06Z,2020-02-15T06:59:49Z +3391,126,1,3725,4.99,2005-07-06T11:15:04Z,2020-02-15T06:59:49Z +3392,126,1,3804,7.99,2005-07-06T15:08:08Z,2020-02-15T06:59:49Z +3393,126,1,4691,0.99,2005-07-08T11:04:53Z,2020-02-15T06:59:49Z +3394,126,2,4730,2.99,2005-07-08T12:59:49Z,2020-02-15T06:59:49Z +3395,126,2,5137,0.99,2005-07-09T08:00:34Z,2020-02-15T06:59:49Z +3396,126,1,5865,0.99,2005-07-10T18:31:05Z,2020-02-15T06:59:49Z +3397,126,1,6747,0.99,2005-07-12T14:33:21Z,2020-02-15T06:59:49Z +3398,126,2,6755,6.99,2005-07-12T15:07:49Z,2020-02-15T06:59:49Z +3399,126,1,7962,0.99,2005-07-28T13:48:09Z,2020-02-15T06:59:49Z +3400,126,1,8091,2.99,2005-07-28T18:27:29Z,2020-02-15T06:59:49Z +3401,126,1,9492,6.99,2005-07-30T23:52:21Z,2020-02-15T06:59:49Z +3402,126,2,10032,4.99,2005-07-31T18:41:55Z,2020-02-15T06:59:49Z +3403,126,1,11196,9.99,2005-08-02T11:42:40Z,2020-02-15T06:59:49Z +3404,126,2,11613,4.99,2005-08-17T03:50:33Z,2020-02-15T06:59:49Z +3405,126,1,11779,3.99,2005-08-17T10:31:58Z,2020-02-15T06:59:49Z +3406,126,1,11801,0.99,2005-08-17T11:30:11Z,2020-02-15T06:59:49Z +3407,126,2,12991,2.99,2005-08-19T07:21:24Z,2020-02-15T06:59:49Z +3408,126,2,13015,7.99,2005-08-19T07:56:51Z,2020-02-15T06:59:49Z +3409,126,2,13177,0.99,2005-08-19T13:56:58Z,2020-02-15T06:59:49Z +3410,126,2,14477,2.99,2005-08-21T13:32:38Z,2020-02-15T06:59:49Z +3411,126,2,14577,2.99,2005-08-21T16:52:29Z,2020-02-15T06:59:49Z +3412,126,2,15741,4.99,2005-08-23T12:10:54Z,2020-02-15T06:59:49Z +3413,126,1,16007,7.99,2005-08-23T21:02:43Z,2020-02-15T06:59:49Z +3414,127,1,452,0.99,2005-05-27T19:30:33Z,2020-02-15T06:59:49Z +3415,127,1,708,0.99,2005-05-29T03:23:47Z,2020-02-15T06:59:49Z +3416,127,1,1293,4.99,2005-06-15T09:06:24Z,2020-02-15T06:59:49Z +3417,127,2,1803,2.99,2005-06-16T20:32:47Z,2020-02-15T06:59:49Z +3418,127,2,2412,3.99,2005-06-18T16:58:58Z,2020-02-15T06:59:49Z +3419,127,1,4652,5.99,2005-07-08T09:47:51Z,2020-02-15T06:59:49Z +3420,127,2,4811,5.99,2005-07-08T17:04:24Z,2020-02-15T06:59:49Z +3421,127,2,5499,2.99,2005-07-10T00:27:45Z,2020-02-15T06:59:49Z +3422,127,2,5983,2.99,2005-07-11T00:34:11Z,2020-02-15T06:59:49Z +3423,127,1,7912,4.99,2005-07-28T11:46:58Z,2020-02-15T06:59:49Z +3424,127,2,8209,6.99,2005-07-28T23:29:28Z,2020-02-15T06:59:49Z +3425,127,1,9859,6.99,2005-07-31T13:02:55Z,2020-02-15T06:59:49Z +3426,127,1,10197,2.99,2005-08-01T00:35:25Z,2020-02-15T06:59:49Z +3427,127,1,10787,10.99,2005-08-01T21:35:01Z,2020-02-15T06:59:49Z +3428,127,1,10973,7.99,2005-08-02T04:09:42Z,2020-02-15T06:59:49Z +3429,127,1,11235,0.99,2005-08-02T13:13:21Z,2020-02-15T06:59:49Z +3430,127,2,12060,4.99,2005-08-17T21:11:57Z,2020-02-15T06:59:49Z +3431,127,2,12820,2.99,2005-08-19T01:05:08Z,2020-02-15T06:59:49Z +3432,127,2,13043,4.99,2005-08-19T09:07:13Z,2020-02-15T06:59:49Z +3433,127,1,13091,2.99,2005-08-19T10:40:10Z,2020-02-15T06:59:49Z +3434,127,2,14030,2.99,2005-08-20T21:23:54Z,2020-02-15T06:59:49Z +3435,127,1,14189,2.99,2005-08-21T03:32:17Z,2020-02-15T06:59:49Z +3436,127,1,15463,5.99,2005-08-23T01:15:07Z,2020-02-15T06:59:49Z +3437,127,2,15736,5.99,2005-08-23T11:40:30Z,2020-02-15T06:59:49Z +3438,128,2,888,5.99,2005-05-30T07:13:14Z,2020-02-15T06:59:49Z +3439,128,2,1131,2.99,2005-05-31T18:44:19Z,2020-02-15T06:59:49Z +3440,128,2,2519,7.99,2005-06-19T00:19:21Z,2020-02-15T06:59:49Z +3441,128,1,2565,0.99,2005-06-19T03:44:03Z,2020-02-15T06:59:49Z +3442,128,1,3751,0.99,2005-07-06T12:23:41Z,2020-02-15T06:59:49Z +3443,128,2,3995,5.99,2005-07-06T23:43:03Z,2020-02-15T06:59:49Z +3444,128,1,5270,2.99,2005-07-09T14:23:46Z,2020-02-15T06:59:49Z +3445,128,1,5647,4.99,2005-07-10T07:08:40Z,2020-02-15T06:59:49Z +3446,128,2,5997,4.99,2005-07-11T01:19:50Z,2020-02-15T06:59:49Z +3447,128,2,6186,2.99,2005-07-11T11:26:41Z,2020-02-15T06:59:49Z +3448,128,2,6481,6.99,2005-07-12T01:50:15Z,2020-02-15T06:59:49Z +3449,128,2,6687,2.99,2005-07-12T12:19:23Z,2020-02-15T06:59:49Z +3450,128,2,7582,4.99,2005-07-27T23:15:14Z,2020-02-15T06:59:49Z +3451,128,2,8415,2.99,2005-07-29T06:52:27Z,2020-02-15T06:59:49Z +3452,128,2,9215,5.99,2005-07-30T13:11:11Z,2020-02-15T06:59:49Z +3453,128,2,9234,2.99,2005-07-30T13:45:54Z,2020-02-15T06:59:49Z +3454,128,1,9433,5.99,2005-07-30T21:28:17Z,2020-02-15T06:59:49Z +3455,128,2,9858,2.99,2005-07-31T13:02:07Z,2020-02-15T06:59:49Z +3456,128,1,9952,3.99,2005-07-31T15:52:37Z,2020-02-15T06:59:49Z +3457,128,1,10011,2.99,2005-07-31T18:02:41Z,2020-02-15T06:59:49Z +3458,128,1,10394,2.99,2005-08-01T06:58:17Z,2020-02-15T06:59:49Z +3459,128,2,12731,2.99,2005-08-18T21:55:38Z,2020-02-15T06:59:49Z +3460,128,2,12843,2.99,2005-08-19T01:58:54Z,2020-02-15T06:59:49Z +3461,128,2,12910,0.99,2005-08-19T04:23:13Z,2020-02-15T06:59:49Z +3462,128,2,13027,0.99,2005-08-19T08:25:16Z,2020-02-15T06:59:49Z +3463,128,2,13181,5.99,2005-08-19T14:00:56Z,2020-02-15T06:59:49Z +3464,128,1,13509,0.99,2005-08-20T02:14:16Z,2020-02-15T06:59:49Z +3465,128,2,13964,2.99,2005-08-20T18:24:26Z,2020-02-15T06:59:49Z +3466,128,2,14157,0.99,2005-08-21T02:43:15Z,2020-02-15T06:59:49Z +3467,128,1,14925,8.99,2005-08-22T05:16:16Z,2020-02-15T06:59:49Z +3468,128,1,15220,3.99,2005-08-22T17:02:23Z,2020-02-15T06:59:49Z +3469,128,1,15835,8.99,2005-08-23T15:25:27Z,2020-02-15T06:59:49Z +3470,129,2,1732,0.99,2005-06-16T15:34:41Z,2020-02-15T06:59:49Z +3471,129,1,2727,3.99,2005-06-19T15:02:39Z,2020-02-15T06:59:49Z +3472,129,2,2768,0.99,2005-06-19T17:46:52Z,2020-02-15T06:59:49Z +3473,129,2,2795,4.99,2005-06-19T18:58:53Z,2020-02-15T06:59:49Z +3474,129,1,3183,4.99,2005-06-20T22:55:55Z,2020-02-15T06:59:49Z +3475,129,1,3219,3.99,2005-06-21T01:43:26Z,2020-02-15T06:59:49Z +3476,129,1,3689,0.99,2005-07-06T09:43:01Z,2020-02-15T06:59:49Z +3477,129,2,3900,4.99,2005-07-06T19:21:28Z,2020-02-15T06:59:49Z +3478,129,2,3936,0.99,2005-07-06T21:15:03Z,2020-02-15T06:59:49Z +3479,129,2,4256,2.99,2005-07-07T14:14:36Z,2020-02-15T06:59:49Z +3480,129,1,4602,0.99,2005-07-08T06:52:40Z,2020-02-15T06:59:49Z +3481,129,1,4896,2.99,2005-07-08T20:23:15Z,2020-02-15T06:59:49Z +3482,129,1,4996,0.99,2005-07-09T00:59:46Z,2020-02-15T06:59:49Z +3483,129,1,5127,0.99,2005-07-09T07:25:47Z,2020-02-15T06:59:49Z +3484,129,2,5350,4.99,2005-07-09T17:39:30Z,2020-02-15T06:59:49Z +3485,129,1,8339,4.99,2005-07-29T04:41:13Z,2020-02-15T06:59:49Z +3486,129,1,8345,2.99,2005-07-29T04:47:37Z,2020-02-15T06:59:49Z +3487,129,2,9823,4.99,2005-07-31T11:49:00Z,2020-02-15T06:59:49Z +3488,129,1,9983,7.99,2005-07-31T17:09:36Z,2020-02-15T06:59:49Z +3489,129,1,10024,7.99,2005-07-31T18:26:36Z,2020-02-15T06:59:49Z +3490,129,2,10167,5.99,2005-07-31T23:24:31Z,2020-02-15T06:59:49Z +3491,129,2,10395,2.99,2005-08-01T07:08:22Z,2020-02-15T06:59:49Z +3492,129,1,10468,0.99,2005-08-01T09:48:29Z,2020-02-15T06:59:49Z +3493,129,1,10483,2.99,2005-08-01T10:19:45Z,2020-02-15T06:59:49Z +3494,129,2,10550,2.99,2005-08-01T12:46:52Z,2020-02-15T06:59:49Z +3495,129,2,10816,4.99,2005-08-01T22:48:57Z,2020-02-15T06:59:49Z +3496,129,2,12612,3.99,2005-08-18T17:10:05Z,2020-02-15T06:59:49Z +3497,129,2,12728,4.99,2005-08-18T21:47:48Z,2020-02-15T06:59:49Z +3498,129,2,13653,10.99,2005-08-20T07:54:54Z,2020-02-15T06:59:49Z +3499,129,1,13915,4.99,2005-08-20T16:42:53Z,2020-02-15T06:59:49Z +3500,129,1,13919,4.99,2005-08-20T16:47:34Z,2020-02-15T06:59:49Z +3501,129,1,13961,0.99,2005-08-20T18:16:34Z,2020-02-15T06:59:49Z +3502,129,1,14353,0.99,2005-08-21T09:07:50Z,2020-02-15T06:59:49Z +3503,129,2,14968,1.99,2005-08-22T06:46:59Z,2020-02-15T06:59:49Z +3504,130,1,1,2.99,2005-05-24T22:53:30Z,2020-02-15T06:59:49Z +3505,130,1,746,2.99,2005-05-29T09:25:10Z,2020-02-15T06:59:49Z +3506,130,1,1630,2.99,2005-06-16T07:55:01Z,2020-02-15T06:59:49Z +3507,130,2,1864,2.99,2005-06-17T01:39:47Z,2020-02-15T06:59:49Z +3508,130,2,2163,2.99,2005-06-17T23:46:16Z,2020-02-15T06:59:49Z +3509,130,2,2292,2.99,2005-06-18T07:37:48Z,2020-02-15T06:59:49Z +3510,130,1,2535,2.99,2005-06-19T01:39:04Z,2020-02-15T06:59:49Z +3511,130,1,2982,6.99,2005-06-20T08:38:29Z,2020-02-15T06:59:49Z +3512,130,2,4339,4.99,2005-07-07T18:41:42Z,2020-02-15T06:59:49Z +3513,130,2,4485,4.99,2005-07-08T01:07:54Z,2020-02-15T06:59:49Z +3514,130,1,6353,3.99,2005-07-11T20:48:56Z,2020-02-15T06:59:49Z +3515,130,1,7181,4.99,2005-07-27T08:14:34Z,2020-02-15T06:59:49Z +3516,130,1,7728,0.99,2005-07-28T04:56:33Z,2020-02-15T06:59:49Z +3517,130,1,9452,0.99,2005-07-30T22:19:16Z,2020-02-15T06:59:49Z +3518,130,2,9637,4.99,2005-07-31T05:18:54Z,2020-02-15T06:59:49Z +3519,130,2,9724,5.99,2005-07-31T08:33:08Z,2020-02-15T06:59:49Z +3520,130,2,10568,2.99,2005-08-01T13:17:28Z,2020-02-15T06:59:49Z +3521,130,2,10645,5.99,2005-08-01T15:52:01Z,2020-02-15T06:59:49Z +3522,130,1,11811,2.99,2005-08-17T11:59:18Z,2020-02-15T06:59:49Z +3523,130,1,12094,2.99,2005-08-17T22:31:04Z,2020-02-15T06:59:49Z +3524,130,1,12777,6.99,2005-08-18T23:39:22Z,2020-02-15T06:59:49Z +3525,130,2,14111,0.99,2005-08-21T00:59:01Z,2020-02-15T06:59:49Z +3526,130,2,15574,5.99,2005-08-23T05:29:32Z,2020-02-15T06:59:49Z +3527,130,1,15777,4.99,2005-08-23T13:29:08Z,2020-02-15T06:59:49Z +3528,131,2,55,2.99,2005-05-25T08:26:13Z,2020-02-15T06:59:49Z +3529,131,1,83,4.99,2005-05-25T12:30:15Z,2020-02-15T06:59:49Z +3530,131,2,944,7.99,2005-05-30T15:26:24Z,2020-02-15T06:59:49Z +3531,131,1,1646,9.99,2005-06-16T09:12:53Z,2020-02-15T06:59:49Z +3532,131,2,1768,4.99,2005-06-16T18:02:06Z,2020-02-15T06:59:49Z +3533,131,1,3515,2.99,2005-07-06T00:48:55Z,2020-02-15T06:59:49Z +3534,131,1,5233,4.99,2005-07-09T12:44:26Z,2020-02-15T06:59:49Z +3535,131,1,5395,4.99,2005-07-09T19:42:37Z,2020-02-15T06:59:49Z +3536,131,1,5610,2.99,2005-07-10T05:09:52Z,2020-02-15T06:59:49Z +3537,131,2,5726,2.99,2005-07-10T11:22:08Z,2020-02-15T06:59:49Z +3538,131,1,5874,3.99,2005-07-10T19:02:51Z,2020-02-15T06:59:49Z +3539,131,1,7557,2.99,2005-07-27T22:18:19Z,2020-02-15T06:59:49Z +3540,131,2,8071,0.99,2005-07-28T17:27:48Z,2020-02-15T06:59:49Z +3541,131,1,8267,6.99,2005-07-29T01:21:02Z,2020-02-15T06:59:49Z +3542,131,1,8570,8.99,2005-07-29T11:40:08Z,2020-02-15T06:59:49Z +3543,131,1,9323,3.99,2005-07-30T17:21:44Z,2020-02-15T06:59:49Z +3544,131,1,10179,2.99,2005-07-31T23:49:54Z,2020-02-15T06:59:49Z +3545,131,1,10459,4.99,2005-08-01T09:20:09Z,2020-02-15T06:59:49Z +3546,131,1,10861,1.99,2005-08-02T00:12:46Z,2020-02-15T06:59:49Z +3547,131,2,11971,0.99,2005-08-17T17:53:42Z,2020-02-15T06:59:49Z +3548,131,1,11973,2.99,2005-08-17T17:55:58Z,2020-02-15T06:59:49Z +3549,131,1,12216,0.99,2005-08-18T02:37:07Z,2020-02-15T06:59:49Z +3550,131,2,12263,0.99,2005-08-18T04:16:18Z,2020-02-15T06:59:49Z +3551,131,1,12372,9.99,2005-08-18T08:04:35Z,2020-02-15T06:59:49Z +3552,131,2,13050,6.99,2005-08-19T09:31:23Z,2020-02-15T06:59:49Z +3553,131,2,13346,7.99,2005-08-19T20:28:21Z,2020-02-15T06:59:49Z +3554,131,2,13353,2.99,2005-08-19T20:53:43Z,2020-02-15T06:59:49Z +3555,131,1,13407,0.99,2005-08-19T22:26:26Z,2020-02-15T06:59:49Z +3556,131,2,15659,2.99,2005-08-23T08:48:43Z,2020-02-15T06:59:49Z +3557,131,1,16042,2.99,2005-08-23T22:20:40Z,2020-02-15T06:59:49Z +3558,132,1,1843,0.99,2005-06-16T23:53:42Z,2020-02-15T06:59:49Z +3559,132,1,2208,4.99,2005-06-18T02:22:07Z,2020-02-15T06:59:49Z +3560,132,1,2384,0.99,2005-06-18T15:18:49Z,2020-02-15T06:59:49Z +3561,132,2,2608,2.99,2005-06-19T07:10:36Z,2020-02-15T06:59:49Z +3562,132,2,2924,4.99,2005-06-20T04:20:14Z,2020-02-15T06:59:49Z +3563,132,1,3121,4.99,2005-06-20T18:23:30Z,2020-02-15T06:59:49Z +3564,132,1,3706,0.99,2005-07-06T10:18:01Z,2020-02-15T06:59:49Z +3565,132,2,3825,2.99,2005-07-06T15:50:03Z,2020-02-15T06:59:49Z +3566,132,1,4168,4.99,2005-07-07T09:37:24Z,2020-02-15T06:59:49Z +3567,132,1,4534,4.99,2005-07-08T03:36:55Z,2020-02-15T06:59:49Z +3568,132,1,4557,5.99,2005-07-08T04:49:15Z,2020-02-15T06:59:49Z +3569,132,2,4903,0.99,2005-07-08T20:50:05Z,2020-02-15T06:59:49Z +3570,132,1,5391,2.99,2005-07-09T19:28:34Z,2020-02-15T06:59:49Z +3571,132,2,5684,5.99,2005-07-10T08:59:03Z,2020-02-15T06:59:49Z +3572,132,1,5703,0.99,2005-07-10T10:04:15Z,2020-02-15T06:59:49Z +3573,132,2,5715,1.99,2005-07-10T10:48:03Z,2020-02-15T06:59:49Z +3574,132,1,6239,6.99,2005-07-11T14:20:48Z,2020-02-15T06:59:49Z +3575,132,1,6978,1.99,2005-07-27T00:47:40Z,2020-02-15T06:59:49Z +3576,132,2,7432,0.99,2005-07-27T17:31:40Z,2020-02-15T06:59:49Z +3577,132,1,7631,1.99,2005-07-28T01:01:15Z,2020-02-15T06:59:49Z +3578,132,2,10243,4.99,2005-08-01T02:18:46Z,2020-02-15T06:59:49Z +3579,132,1,10400,6.99,2005-08-01T07:18:24Z,2020-02-15T06:59:49Z +3580,132,2,10619,3.99,2005-08-01T15:07:04Z,2020-02-15T06:59:49Z +3581,132,1,10638,6.99,2005-08-01T15:44:20Z,2020-02-15T06:59:49Z +3582,132,2,11140,0.99,2005-08-02T09:27:45Z,2020-02-15T06:59:49Z +3583,132,2,11812,0.99,2005-08-17T12:00:54Z,2020-02-15T06:59:49Z +3584,132,2,12133,0.99,2005-08-17T23:47:16Z,2020-02-15T06:59:49Z +3585,132,1,15874,4.99,2005-08-23T16:30:55Z,2020-02-15T06:59:49Z +3586,133,1,275,6.99,2005-05-26T17:09:53Z,2020-02-15T06:59:49Z +3587,133,2,447,2.99,2005-05-27T18:57:02Z,2020-02-15T06:59:49Z +3588,133,2,1522,3.99,2005-06-16T00:17:39Z,2020-02-15T06:59:49Z +3589,133,2,2665,7.99,2005-06-19T11:12:35Z,2020-02-15T06:59:49Z +3590,133,1,3006,0.99,2005-06-20T10:10:29Z,2020-02-15T06:59:49Z +3591,133,2,3365,0.99,2005-06-21T12:55:48Z,2020-02-15T06:59:49Z +3592,133,2,4506,6.99,2005-07-08T02:22:18Z,2020-02-15T06:59:49Z +3593,133,2,4566,2.99,2005-07-08T05:18:50Z,2020-02-15T06:59:49Z +3594,133,1,4681,6.99,2005-07-08T10:36:03Z,2020-02-15T06:59:49Z +3595,133,2,4829,2.99,2005-07-08T17:54:18Z,2020-02-15T06:59:49Z +3596,133,2,5063,2.99,2005-07-09T04:37:31Z,2020-02-15T06:59:49Z +3597,133,1,6157,4.99,2005-07-11T09:48:16Z,2020-02-15T06:59:49Z +3598,133,1,6609,3.99,2005-07-12T08:19:41Z,2020-02-15T06:59:49Z +3599,133,1,7177,2.99,2005-07-27T08:07:39Z,2020-02-15T06:59:49Z +3600,133,1,7400,0.99,2005-07-27T16:16:37Z,2020-02-15T06:59:49Z +3601,133,2,8389,6.99,2005-07-29T05:50:09Z,2020-02-15T06:59:49Z +3602,133,2,9139,2.99,2005-07-30T10:11:52Z,2020-02-15T06:59:49Z +3603,133,1,9175,0.99,2005-07-30T11:47:48Z,2020-02-15T06:59:49Z +3604,133,2,9671,0.99,2005-07-31T06:33:41Z,2020-02-15T06:59:49Z +3605,133,1,10665,0.99,2005-08-01T16:56:17Z,2020-02-15T06:59:49Z +3606,133,1,12419,4.99,2005-08-18T10:01:48Z,2020-02-15T06:59:49Z +3607,133,1,12834,4.99,2005-08-19T01:47:30Z,2020-02-15T06:59:49Z +3608,133,2,13323,2.99,2005-08-19T19:48:07Z,2020-02-15T06:59:49Z +3609,133,1,13455,1.99,2005-08-20T00:32:17Z,2020-02-15T06:59:49Z +3610,133,2,13910,2.99,2005-08-20T16:30:49Z,2020-02-15T06:59:49Z +3611,133,2,15080,0.99,2005-08-22T11:11:51Z,2020-02-15T06:59:49Z +3612,133,1,16009,6.99,2005-08-23T21:07:59Z,2020-02-15T06:59:49Z +3613,134,1,366,3.99,2005-05-27T07:33:54Z,2020-02-15T06:59:49Z +3614,134,2,798,0.99,2005-05-29T17:23:43Z,2020-02-15T06:59:49Z +3615,134,1,814,6.99,2005-05-29T20:16:12Z,2020-02-15T06:59:49Z +3616,134,2,1124,4.99,2005-05-31T16:49:34Z,2020-02-15T06:59:49Z +3617,134,1,1618,9.99,2005-06-16T07:08:38Z,2020-02-15T06:59:49Z +3618,134,2,1784,0.99,2005-06-16T19:25:32Z,2020-02-15T06:59:49Z +3619,134,2,1881,0.99,2005-06-17T03:09:56Z,2020-02-15T06:59:49Z +3620,134,1,3267,5.99,2005-06-21T04:55:21Z,2020-02-15T06:59:49Z +3621,134,1,5315,4.99,2005-07-09T16:09:19Z,2020-02-15T06:59:49Z +3622,134,2,6226,2.99,2005-07-11T13:48:11Z,2020-02-15T06:59:49Z +3623,134,1,6659,0.99,2005-07-12T11:18:05Z,2020-02-15T06:59:49Z +3624,134,2,7516,2.99,2005-07-27T20:55:28Z,2020-02-15T06:59:49Z +3625,134,2,7965,4.99,2005-07-28T13:52:57Z,2020-02-15T06:59:49Z +3626,134,2,8650,1.99,2005-07-29T14:59:04Z,2020-02-15T06:59:49Z +3627,134,1,10864,6.99,2005-08-02T00:18:59Z,2020-02-15T06:59:49Z +3628,134,1,11280,3.99,2005-08-02T14:34:33Z,2020-02-15T06:59:49Z +3629,134,1,11283,4.99,2005-08-02T14:39:46Z,2020-02-15T06:59:49Z +3630,134,2,11482,4.99,2005-08-02T22:24:31Z,2020-02-15T06:59:49Z +3631,134,1,12754,7.99,2005-08-18T22:37:41Z,2020-02-15T06:59:49Z +3632,134,2,12987,2.99,2005-08-19T07:11:44Z,2020-02-15T06:59:49Z +3633,134,2,13006,2.99,2005-08-19T07:47:16Z,2020-02-15T06:59:49Z +3634,134,2,14265,2.99,2005-08-21T06:20:14Z,2020-02-15T06:59:49Z +3635,134,2,15963,2.99,2005-08-23T19:42:46Z,2020-02-15T06:59:49Z +3636,135,1,78,5.99,2005-05-25T11:35:18Z,2020-02-15T06:59:49Z +3637,135,2,753,3.99,2005-05-29T10:16:42Z,2020-02-15T06:59:49Z +3638,135,2,1272,0.99,2005-06-15T07:42:58Z,2020-02-15T06:59:49Z +3639,135,2,1671,1.99,2005-06-16T10:30:22Z,2020-02-15T06:59:49Z +3640,135,2,2941,2.99,2005-06-20T05:22:18Z,2020-02-15T06:59:49Z +3641,135,1,4102,0.99,2005-07-07T06:25:19Z,2020-02-15T06:59:49Z +3642,135,2,5054,7.99,2005-07-09T04:01:02Z,2020-02-15T06:59:49Z +3643,135,1,5541,0.99,2005-07-10T02:44:27Z,2020-02-15T06:59:49Z +3644,135,1,6117,3.99,2005-07-11T07:39:38Z,2020-02-15T06:59:49Z +3645,135,1,6461,3.99,2005-07-12T01:14:03Z,2020-02-15T06:59:49Z +3646,135,1,6817,3.99,2005-07-12T18:19:57Z,2020-02-15T06:59:49Z +3647,135,2,7297,4.99,2005-07-27T12:39:48Z,2020-02-15T06:59:49Z +3648,135,1,7437,0.99,2005-07-27T17:39:18Z,2020-02-15T06:59:49Z +3649,135,1,7554,7.99,2005-07-27T22:12:41Z,2020-02-15T06:59:49Z +3650,135,1,7734,0.99,2005-07-28T05:08:44Z,2020-02-15T06:59:49Z +3651,135,1,8315,0.99,2005-07-29T03:37:07Z,2020-02-15T06:59:49Z +3652,135,2,8885,7.99,2005-07-30T00:36:26Z,2020-02-15T06:59:49Z +3653,135,1,8987,6.99,2005-07-30T04:37:36Z,2020-02-15T06:59:49Z +3654,135,2,10091,4.99,2005-07-31T20:23:13Z,2020-02-15T06:59:49Z +3655,135,2,10471,0.99,2005-08-01T09:52:37Z,2020-02-15T06:59:49Z +3656,135,1,10611,2.99,2005-08-01T14:53:52Z,2020-02-15T06:59:49Z +3657,135,1,10698,3.99,2005-08-01T18:24:41Z,2020-02-15T06:59:49Z +3658,135,2,11194,5.99,2005-08-02T11:35:53Z,2020-02-15T06:59:49Z +3659,135,1,11704,7.99,2005-08-17T07:21:22Z,2020-02-15T06:59:49Z +3660,135,1,12249,2.99,2005-08-18T03:53:34Z,2020-02-15T06:59:49Z +3661,135,1,13035,0.99,2005-08-19T08:46:45Z,2020-02-15T06:59:49Z +3662,135,1,14005,0.99,2005-08-20T20:19:05Z,2020-02-15T06:59:49Z +3663,135,2,14136,5.99,2005-08-21T01:57:26Z,2020-02-15T06:59:49Z +3664,135,2,15908,2.99,2005-08-23T17:42:00Z,2020-02-15T06:59:49Z +3665,135,1,13390,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3666,136,2,1150,2.99,2005-05-31T21:20:09Z,2020-02-15T06:59:49Z +3667,136,2,2104,2.99,2005-06-17T19:14:30Z,2020-02-15T06:59:49Z +3668,136,1,4927,0.99,2005-07-08T22:05:35Z,2020-02-15T06:59:49Z +3669,136,1,5627,3.99,2005-07-10T05:51:12Z,2020-02-15T06:59:49Z +3670,136,2,6142,3.99,2005-07-11T08:54:09Z,2020-02-15T06:59:49Z +3671,136,1,6585,8.99,2005-07-12T06:50:52Z,2020-02-15T06:59:49Z +3672,136,2,9319,0.99,2005-07-30T17:15:27Z,2020-02-15T06:59:49Z +3673,136,2,9764,5.99,2005-07-31T09:42:58Z,2020-02-15T06:59:49Z +3674,136,2,11992,10.99,2005-08-17T18:27:22Z,2020-02-15T06:59:49Z +3675,136,1,12287,5.99,2005-08-18T04:58:06Z,2020-02-15T06:59:49Z +3676,136,2,12539,0.99,2005-08-18T14:10:09Z,2020-02-15T06:59:49Z +3677,136,2,13992,4.99,2005-08-20T19:30:35Z,2020-02-15T06:59:49Z +3678,136,2,14379,0.99,2005-08-21T09:53:03Z,2020-02-15T06:59:49Z +3679,136,1,14437,2.99,2005-08-21T11:48:32Z,2020-02-15T06:59:49Z +3680,136,1,15439,4.99,2005-08-23T00:34:28Z,2020-02-15T06:59:49Z +3681,137,1,925,2.99,2005-05-30T12:13:52Z,2020-02-15T06:59:49Z +3682,137,1,2469,6.99,2005-06-18T20:24:23Z,2020-02-15T06:59:49Z +3683,137,1,2785,2.99,2005-06-19T18:43:57Z,2020-02-15T06:59:49Z +3684,137,2,3058,3.99,2005-06-20T13:28:35Z,2020-02-15T06:59:49Z +3685,137,1,3436,5.99,2005-06-21T19:16:09Z,2020-02-15T06:59:49Z +3686,137,2,3589,4.99,2005-07-06T04:30:18Z,2020-02-15T06:59:49Z +3687,137,2,3676,5.99,2005-07-06T09:10:37Z,2020-02-15T06:59:49Z +3688,137,2,3874,6.99,2005-07-06T18:06:12Z,2020-02-15T06:59:49Z +3689,137,1,4332,6.99,2005-07-07T18:25:26Z,2020-02-15T06:59:49Z +3690,137,2,4474,3.99,2005-07-08T00:26:56Z,2020-02-15T06:59:49Z +3691,137,1,5106,2.99,2005-07-09T06:40:24Z,2020-02-15T06:59:49Z +3692,137,1,5443,3.99,2005-07-09T21:56:09Z,2020-02-15T06:59:49Z +3693,137,1,5804,2.99,2005-07-10T15:06:31Z,2020-02-15T06:59:49Z +3694,137,1,6039,6.99,2005-07-11T03:12:19Z,2020-02-15T06:59:49Z +3695,137,2,6200,0.99,2005-07-11T12:16:42Z,2020-02-15T06:59:49Z +3696,137,1,8028,8.99,2005-07-28T16:11:15Z,2020-02-15T06:59:49Z +3697,137,1,8106,4.99,2005-07-28T19:02:46Z,2020-02-15T06:59:49Z +3698,137,2,8954,2.99,2005-07-30T03:25:51Z,2020-02-15T06:59:49Z +3699,137,1,9002,4.99,2005-07-30T05:02:21Z,2020-02-15T06:59:49Z +3700,137,2,9200,4.99,2005-07-30T12:39:52Z,2020-02-15T06:59:49Z +3701,137,2,9466,7.99,2005-07-30T22:44:36Z,2020-02-15T06:59:49Z +3702,137,1,9709,4.99,2005-07-31T08:04:55Z,2020-02-15T06:59:49Z +3703,137,1,9789,2.99,2005-07-31T10:30:25Z,2020-02-15T06:59:49Z +3704,137,1,10175,6.99,2005-07-31T23:40:11Z,2020-02-15T06:59:49Z +3705,137,2,10595,4.99,2005-08-01T14:16:28Z,2020-02-15T06:59:49Z +3706,137,2,10842,5.99,2005-08-01T23:41:24Z,2020-02-15T06:59:49Z +3707,137,2,11057,4.99,2005-08-02T06:38:19Z,2020-02-15T06:59:49Z +3708,137,1,11281,3.99,2005-08-02T14:35:01Z,2020-02-15T06:59:49Z +3709,137,2,11732,3.99,2005-08-17T08:29:46Z,2020-02-15T06:59:49Z +3710,137,1,12078,2.99,2005-08-17T22:00:22Z,2020-02-15T06:59:49Z +3711,137,1,13148,0.99,2005-08-19T12:55:30Z,2020-02-15T06:59:49Z +3712,137,1,13472,5.99,2005-08-20T01:03:31Z,2020-02-15T06:59:49Z +3713,137,1,13776,5.99,2005-08-20T11:57:06Z,2020-02-15T06:59:49Z +3714,137,1,14754,7.99,2005-08-21T23:17:26Z,2020-02-15T06:59:49Z +3715,137,2,15082,7.99,2005-08-22T11:17:06Z,2020-02-15T06:59:49Z +3716,137,1,15133,0.99,2005-08-22T13:17:43Z,2020-02-15T06:59:49Z +3717,137,2,15537,2.99,2005-08-23T04:00:30Z,2020-02-15T06:59:49Z +3718,137,2,15889,4.99,2005-08-23T16:57:43Z,2020-02-15T06:59:49Z +3719,137,1,16030,9.99,2005-08-23T21:56:04Z,2020-02-15T06:59:49Z +3720,138,1,523,2.99,2005-05-28T03:53:26Z,2020-02-15T06:59:49Z +3721,138,1,1020,0.99,2005-05-31T03:06:08Z,2020-02-15T06:59:49Z +3722,138,2,1316,0.99,2005-06-15T10:26:23Z,2020-02-15T06:59:49Z +3723,138,2,2038,0.99,2005-06-17T14:00:51Z,2020-02-15T06:59:49Z +3724,138,1,2731,7.99,2005-06-19T15:14:55Z,2020-02-15T06:59:49Z +3725,138,2,3481,2.99,2005-07-05T23:13:07Z,2020-02-15T06:59:49Z +3726,138,1,5378,0.99,2005-07-09T19:05:56Z,2020-02-15T06:59:49Z +3727,138,1,5600,1.99,2005-07-10T04:55:45Z,2020-02-15T06:59:49Z +3728,138,1,5679,4.99,2005-07-10T08:44:02Z,2020-02-15T06:59:49Z +3729,138,1,6458,2.99,2005-07-12T01:08:52Z,2020-02-15T06:59:49Z +3730,138,1,6892,0.99,2005-07-12T21:10:04Z,2020-02-15T06:59:49Z +3731,138,1,7208,2.99,2005-07-27T09:16:28Z,2020-02-15T06:59:49Z +3732,138,1,7754,2.99,2005-07-28T06:10:55Z,2020-02-15T06:59:49Z +3733,138,2,8123,4.99,2005-07-28T19:28:23Z,2020-02-15T06:59:49Z +3734,138,2,8160,3.99,2005-07-28T21:10:30Z,2020-02-15T06:59:49Z +3735,138,1,8424,3.99,2005-07-29T07:06:03Z,2020-02-15T06:59:49Z +3736,138,2,9259,1.99,2005-07-30T14:37:44Z,2020-02-15T06:59:49Z +3737,138,1,9619,0.99,2005-07-31T04:17:02Z,2020-02-15T06:59:49Z +3738,138,1,9947,9.99,2005-07-31T15:49:40Z,2020-02-15T06:59:49Z +3739,138,1,10110,0.99,2005-07-31T21:06:12Z,2020-02-15T06:59:49Z +3740,138,2,10190,4.99,2005-08-01T00:27:53Z,2020-02-15T06:59:49Z +3741,138,1,10268,3.99,2005-08-01T03:08:56Z,2020-02-15T06:59:49Z +3742,138,1,10431,5.99,2005-08-01T08:41:54Z,2020-02-15T06:59:49Z +3743,138,1,11015,4.99,2005-08-02T05:13:00Z,2020-02-15T06:59:49Z +3744,138,1,11088,0.99,2005-08-02T07:48:31Z,2020-02-15T06:59:49Z +3745,138,1,11463,0.99,2005-08-02T21:37:36Z,2020-02-15T06:59:49Z +3746,138,2,12550,2.99,2005-08-18T14:40:38Z,2020-02-15T06:59:49Z +3747,138,2,12873,2.99,2005-08-19T03:05:41Z,2020-02-15T06:59:49Z +3748,138,1,14194,1.99,2005-08-21T03:40:11Z,2020-02-15T06:59:49Z +3749,138,2,14432,4.99,2005-08-21T11:36:15Z,2020-02-15T06:59:49Z +3750,138,2,14486,4.99,2005-08-21T13:52:54Z,2020-02-15T06:59:49Z +3751,138,1,14987,4.99,2005-08-22T07:41:08Z,2020-02-15T06:59:49Z +3752,138,1,15424,2.99,2005-08-23T00:03:01Z,2020-02-15T06:59:49Z +3753,138,1,15501,0.99,2005-08-23T02:39:56Z,2020-02-15T06:59:49Z +3754,139,2,1169,2.99,2005-06-14T23:42:56Z,2020-02-15T06:59:49Z +3755,139,1,1736,2.99,2005-06-16T15:52:32Z,2020-02-15T06:59:49Z +3756,139,1,2659,0.99,2005-06-19T10:47:42Z,2020-02-15T06:59:49Z +3757,139,2,2718,7.99,2005-06-19T14:49:42Z,2020-02-15T06:59:49Z +3758,139,2,4660,0.99,2005-07-08T09:54:47Z,2020-02-15T06:59:49Z +3759,139,2,4663,2.99,2005-07-08T09:59:18Z,2020-02-15T06:59:49Z +3760,139,2,5092,2.99,2005-07-09T05:57:39Z,2020-02-15T06:59:49Z +3761,139,2,5265,7.99,2005-07-09T14:15:01Z,2020-02-15T06:59:49Z +3762,139,1,5390,6.99,2005-07-09T19:26:22Z,2020-02-15T06:59:49Z +3763,139,1,5494,6.99,2005-07-10T00:15:00Z,2020-02-15T06:59:49Z +3764,139,1,6496,6.99,2005-07-12T02:57:39Z,2020-02-15T06:59:49Z +3765,139,2,6740,0.99,2005-07-12T14:22:08Z,2020-02-15T06:59:49Z +3766,139,1,7369,0.99,2005-07-27T15:07:58Z,2020-02-15T06:59:49Z +3767,139,2,7767,5.99,2005-07-28T06:42:02Z,2020-02-15T06:59:49Z +3768,139,2,9415,2.99,2005-07-30T20:48:31Z,2020-02-15T06:59:49Z +3769,139,2,9920,4.99,2005-07-31T14:57:13Z,2020-02-15T06:59:49Z +3770,139,1,10900,2.99,2005-08-02T01:34:26Z,2020-02-15T06:59:49Z +3771,139,1,12859,6.99,2005-08-19T02:23:23Z,2020-02-15T06:59:49Z +3772,139,2,13401,3.99,2005-08-19T22:16:16Z,2020-02-15T06:59:49Z +3773,139,2,14736,5.99,2005-08-21T22:25:53Z,2020-02-15T06:59:49Z +3774,139,1,14788,2.99,2005-08-22T00:27:59Z,2020-02-15T06:59:49Z +3775,139,1,15024,2.99,2005-08-22T08:57:10Z,2020-02-15T06:59:49Z +3776,139,2,15029,2.99,2005-08-22T09:04:53Z,2020-02-15T06:59:49Z +3777,139,1,15062,2.99,2005-08-22T10:34:39Z,2020-02-15T06:59:49Z +3778,139,1,15218,9.99,2005-08-22T16:59:05Z,2020-02-15T06:59:49Z +3779,139,1,15471,3.99,2005-08-23T01:38:48Z,2020-02-15T06:59:49Z +3780,139,1,15743,0.99,2005-08-23T12:12:05Z,2020-02-15T06:59:49Z +3781,140,1,1586,4.99,2005-06-16T04:51:18Z,2020-02-15T06:59:49Z +3782,140,1,1687,2.99,2005-06-16T12:09:20Z,2020-02-15T06:59:49Z +3783,140,2,2332,6.99,2005-06-18T10:53:51Z,2020-02-15T06:59:49Z +3784,140,2,3171,0.99,2005-06-20T22:15:47Z,2020-02-15T06:59:49Z +3785,140,1,6286,4.99,2005-07-11T16:55:35Z,2020-02-15T06:59:49Z +3786,140,1,6407,9.99,2005-07-11T23:02:19Z,2020-02-15T06:59:49Z +3787,140,2,6571,0.99,2005-07-12T05:51:47Z,2020-02-15T06:59:49Z +3788,140,1,6918,2.99,2005-07-12T22:30:29Z,2020-02-15T06:59:49Z +3789,140,1,7170,4.99,2005-07-27T07:58:26Z,2020-02-15T06:59:49Z +3790,140,1,9094,4.99,2005-07-30T08:35:10Z,2020-02-15T06:59:49Z +3791,140,1,9404,0.99,2005-07-30T20:21:35Z,2020-02-15T06:59:49Z +3792,140,1,10342,6.99,2005-08-01T05:11:11Z,2020-02-15T06:59:49Z +3793,140,2,11430,3.99,2005-08-02T20:04:36Z,2020-02-15T06:59:49Z +3794,140,1,12086,4.99,2005-08-17T22:20:01Z,2020-02-15T06:59:49Z +3795,140,1,12675,4.99,2005-08-18T19:34:02Z,2020-02-15T06:59:49Z +3796,140,2,13053,10.99,2005-08-19T09:31:48Z,2020-02-15T06:59:49Z +3797,140,1,15261,2.99,2005-08-22T18:24:34Z,2020-02-15T06:59:49Z +3798,140,1,15852,2.99,2005-08-23T15:47:02Z,2020-02-15T06:59:49Z +3799,141,2,930,2.99,2005-05-30T12:44:57Z,2020-02-15T06:59:49Z +3800,141,2,1242,7.99,2005-06-15T05:05:07Z,2020-02-15T06:59:49Z +3801,141,2,2895,7.99,2005-06-20T02:26:31Z,2020-02-15T06:59:49Z +3802,141,1,3434,4.99,2005-06-21T19:08:28Z,2020-02-15T06:59:49Z +3803,141,1,4057,1.99,2005-07-07T04:00:20Z,2020-02-15T06:59:49Z +3804,141,2,4297,0.99,2005-07-07T16:24:09Z,2020-02-15T06:59:49Z +3805,141,1,4656,5.99,2005-07-08T09:50:10Z,2020-02-15T06:59:49Z +3806,141,2,5062,2.99,2005-07-09T04:36:49Z,2020-02-15T06:59:49Z +3807,141,1,5769,0.99,2005-07-10T13:17:58Z,2020-02-15T06:59:49Z +3808,141,2,6979,4.99,2005-07-27T00:49:53Z,2020-02-15T06:59:49Z +3809,141,2,7878,2.99,2005-07-28T10:27:10Z,2020-02-15T06:59:49Z +3810,141,1,8434,4.99,2005-07-29T07:20:14Z,2020-02-15T06:59:49Z +3811,141,2,9073,7.99,2005-07-30T07:49:56Z,2020-02-15T06:59:49Z +3812,141,1,9584,4.99,2005-07-31T03:05:48Z,2020-02-15T06:59:49Z +3813,141,2,9683,2.99,2005-07-31T06:47:13Z,2020-02-15T06:59:49Z +3814,141,1,10287,3.99,2005-08-01T03:37:01Z,2020-02-15T06:59:49Z +3815,141,1,10379,1.99,2005-08-01T06:34:29Z,2020-02-15T06:59:49Z +3816,141,1,10798,4.99,2005-08-01T22:03:10Z,2020-02-15T06:59:49Z +3817,141,1,11411,2.99,2005-08-02T19:29:47Z,2020-02-15T06:59:49Z +3818,141,1,11412,5.99,2005-08-02T19:32:51Z,2020-02-15T06:59:49Z +3819,141,1,12032,5.99,2005-08-17T20:14:26Z,2020-02-15T06:59:49Z +3820,141,1,12093,2.99,2005-08-17T22:28:40Z,2020-02-15T06:59:49Z +3821,141,2,12107,3.99,2005-08-17T22:56:24Z,2020-02-15T06:59:49Z +3822,141,2,12353,2.99,2005-08-18T07:33:08Z,2020-02-15T06:59:49Z +3823,141,1,13000,0.99,2005-08-19T07:36:42Z,2020-02-15T06:59:49Z +3824,141,2,13169,2.99,2005-08-19T13:43:35Z,2020-02-15T06:59:49Z +3825,141,2,13470,4.99,2005-08-20T01:01:16Z,2020-02-15T06:59:49Z +3826,141,2,14059,7.99,2005-08-20T22:24:44Z,2020-02-15T06:59:49Z +3827,141,1,14112,2.99,2005-08-21T01:00:46Z,2020-02-15T06:59:49Z +3828,141,1,15013,4.99,2005-08-22T08:42:45Z,2020-02-15T06:59:49Z +3829,141,1,15309,0.99,2005-08-22T19:54:52Z,2020-02-15T06:59:49Z +3830,141,1,15964,2.99,2005-08-23T19:45:25Z,2020-02-15T06:59:49Z +3831,142,2,11,8.99,2005-05-25T00:09:02Z,2020-02-15T06:59:49Z +3832,142,1,148,0.99,2005-05-26T00:25:23Z,2020-02-15T06:59:49Z +3833,142,1,575,9.99,2005-05-28T10:56:09Z,2020-02-15T06:59:49Z +3834,142,1,1268,1.99,2005-06-15T07:29:30Z,2020-02-15T06:59:49Z +3835,142,1,3214,2.99,2005-06-21T01:08:26Z,2020-02-15T06:59:49Z +3836,142,2,3492,2.99,2005-07-05T23:44:37Z,2020-02-15T06:59:49Z +3837,142,2,4497,4.99,2005-07-08T01:51:32Z,2020-02-15T06:59:49Z +3838,142,1,4531,4.99,2005-07-08T03:27:59Z,2020-02-15T06:59:49Z +3839,142,1,6522,0.99,2005-07-12T04:11:58Z,2020-02-15T06:59:49Z +3840,142,1,7764,2.99,2005-07-28T06:40:05Z,2020-02-15T06:59:49Z +3841,142,2,8513,2.99,2005-07-29T09:52:59Z,2020-02-15T06:59:49Z +3842,142,2,8623,4.99,2005-07-29T13:55:11Z,2020-02-15T06:59:49Z +3843,142,1,9020,7.99,2005-07-30T05:31:27Z,2020-02-15T06:59:49Z +3844,142,1,9131,2.99,2005-07-30T09:55:57Z,2020-02-15T06:59:49Z +3845,142,1,9419,5.99,2005-07-30T21:04:59Z,2020-02-15T06:59:49Z +3846,142,2,10934,5.99,2005-08-02T02:52:18Z,2020-02-15T06:59:49Z +3847,142,2,11244,5.99,2005-08-02T13:33:24Z,2020-02-15T06:59:49Z +3848,142,1,12964,0.99,2005-08-19T06:29:13Z,2020-02-15T06:59:49Z +3849,142,1,13044,0.99,2005-08-19T09:14:31Z,2020-02-15T06:59:49Z +3850,142,2,13745,0.99,2005-08-20T10:53:49Z,2020-02-15T06:59:49Z +3851,142,1,13959,0.99,2005-08-20T18:16:21Z,2020-02-15T06:59:49Z +3852,142,2,14116,4.99,2005-08-21T01:11:17Z,2020-02-15T06:59:49Z +3853,142,2,14813,0.99,2005-08-22T01:11:37Z,2020-02-15T06:59:49Z +3854,142,2,15333,2.99,2005-08-22T20:44:06Z,2020-02-15T06:59:49Z +3855,142,1,15477,1.99,2005-08-23T01:46:35Z,2020-02-15T06:59:49Z +3856,142,1,15454,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3857,143,1,221,2.99,2005-05-26T10:14:09Z,2020-02-15T06:59:49Z +3858,143,1,312,2.99,2005-05-26T22:52:19Z,2020-02-15T06:59:49Z +3859,143,2,1898,1.99,2005-06-17T04:28:11Z,2020-02-15T06:59:49Z +3860,143,1,1942,4.99,2005-06-17T07:43:39Z,2020-02-15T06:59:49Z +3861,143,2,2251,3.99,2005-06-18T05:05:08Z,2020-02-15T06:59:49Z +3862,143,1,2574,0.99,2005-06-19T04:23:52Z,2020-02-15T06:59:49Z +3863,143,1,2588,4.99,2005-06-19T05:20:31Z,2020-02-15T06:59:49Z +3864,143,1,4031,7.99,2005-07-07T02:32:07Z,2020-02-15T06:59:49Z +3865,143,2,4221,0.99,2005-07-07T12:18:57Z,2020-02-15T06:59:49Z +3866,143,1,4585,7.99,2005-07-08T06:11:58Z,2020-02-15T06:59:49Z +3867,143,2,6076,6.99,2005-07-11T05:05:30Z,2020-02-15T06:59:49Z +3868,143,2,6207,4.99,2005-07-11T12:34:24Z,2020-02-15T06:59:49Z +3869,143,1,8312,0.99,2005-07-29T03:32:38Z,2020-02-15T06:59:49Z +3870,143,1,8335,0.99,2005-07-29T04:18:25Z,2020-02-15T06:59:49Z +3871,143,2,9889,1.99,2005-07-31T14:02:50Z,2020-02-15T06:59:49Z +3872,143,1,10118,0.99,2005-07-31T21:16:31Z,2020-02-15T06:59:49Z +3873,143,1,11278,6.99,2005-08-02T14:29:43Z,2020-02-15T06:59:49Z +3874,143,2,11651,6.99,2005-08-17T05:02:25Z,2020-02-15T06:59:49Z +3875,143,1,12408,2.99,2005-08-18T09:40:38Z,2020-02-15T06:59:49Z +3876,143,2,13835,4.99,2005-08-20T14:06:33Z,2020-02-15T06:59:49Z +3877,143,1,15250,5.99,2005-08-22T18:03:11Z,2020-02-15T06:59:49Z +3878,143,1,16029,4.99,2005-08-23T21:54:02Z,2020-02-15T06:59:49Z +3879,144,1,323,2.99,2005-05-27T00:49:27Z,2020-02-15T06:59:49Z +3880,144,2,345,2.99,2005-05-27T04:32:25Z,2020-02-15T06:59:49Z +3881,144,1,1814,5.99,2005-06-16T21:15:22Z,2020-02-15T06:59:49Z +3882,144,1,1943,0.99,2005-06-17T07:49:17Z,2020-02-15T06:59:49Z +3883,144,1,2756,4.99,2005-06-19T16:57:42Z,2020-02-15T06:59:49Z +3884,144,2,3019,4.99,2005-06-20T11:11:52Z,2020-02-15T06:59:49Z +3885,144,1,3145,2.99,2005-06-20T20:21:17Z,2020-02-15T06:59:49Z +3886,144,1,3321,2.99,2005-06-21T08:33:26Z,2020-02-15T06:59:49Z +3887,144,1,4726,6.99,2005-07-08T12:50:54Z,2020-02-15T06:59:49Z +3888,144,2,4818,3.99,2005-07-08T17:18:22Z,2020-02-15T06:59:49Z +3889,144,2,5049,0.99,2005-07-09T03:54:12Z,2020-02-15T06:59:49Z +3890,144,2,5374,8.99,2005-07-09T18:52:08Z,2020-02-15T06:59:49Z +3891,144,2,5408,7.99,2005-07-09T20:16:51Z,2020-02-15T06:59:49Z +3892,144,2,5526,7.99,2005-07-10T02:04:03Z,2020-02-15T06:59:49Z +3893,144,2,6614,7.99,2005-07-12T08:33:49Z,2020-02-15T06:59:49Z +3894,144,2,6791,9.99,2005-07-12T16:35:07Z,2020-02-15T06:59:49Z +3895,144,2,7378,5.99,2005-07-27T15:31:33Z,2020-02-15T06:59:49Z +3896,144,2,7566,2.99,2005-07-27T22:34:45Z,2020-02-15T06:59:49Z +3897,144,1,7830,0.99,2005-07-28T08:43:49Z,2020-02-15T06:59:49Z +3898,144,1,7858,3.99,2005-07-28T09:50:18Z,2020-02-15T06:59:49Z +3899,144,2,8459,5.99,2005-07-29T08:05:40Z,2020-02-15T06:59:49Z +3900,144,1,8983,0.99,2005-07-30T04:31:08Z,2020-02-15T06:59:49Z +3901,144,1,9034,7.99,2005-07-30T06:10:58Z,2020-02-15T06:59:49Z +3902,144,1,9098,3.99,2005-07-30T08:44:21Z,2020-02-15T06:59:49Z +3903,144,2,9174,4.99,2005-07-30T11:42:10Z,2020-02-15T06:59:49Z +3904,144,2,9714,0.99,2005-07-31T08:15:32Z,2020-02-15T06:59:49Z +3905,144,1,10302,0.99,2005-08-01T04:12:08Z,2020-02-15T06:59:49Z +3906,144,1,10593,4.99,2005-08-01T14:13:19Z,2020-02-15T06:59:49Z +3907,144,1,10740,5.99,2005-08-01T19:50:32Z,2020-02-15T06:59:49Z +3908,144,1,10951,4.99,2005-08-02T03:26:35Z,2020-02-15T06:59:49Z +3909,144,1,11228,2.99,2005-08-02T12:55:23Z,2020-02-15T06:59:49Z +3910,144,2,11476,6.99,2005-08-02T22:03:47Z,2020-02-15T06:59:49Z +3911,144,1,11534,7.99,2005-08-17T00:35:27Z,2020-02-15T06:59:49Z +3912,144,1,11859,4.99,2005-08-17T13:51:20Z,2020-02-15T06:59:49Z +3913,144,2,12087,2.99,2005-08-17T22:20:12Z,2020-02-15T06:59:49Z +3914,144,2,12733,2.99,2005-08-18T21:59:00Z,2020-02-15T06:59:49Z +3915,144,1,12858,3.99,2005-08-19T02:22:16Z,2020-02-15T06:59:49Z +3916,144,2,12980,6.99,2005-08-19T07:03:14Z,2020-02-15T06:59:49Z +3917,144,2,13881,2.99,2005-08-20T15:18:55Z,2020-02-15T06:59:49Z +3918,144,2,14159,2.99,2005-08-21T02:45:58Z,2020-02-15T06:59:49Z +3919,144,1,15017,1.99,2005-08-22T08:47:44Z,2020-02-15T06:59:49Z +3920,144,1,15753,7.99,2005-08-23T12:43:30Z,2020-02-15T06:59:49Z +3921,145,1,500,0.99,2005-05-28T01:05:25Z,2020-02-15T06:59:49Z +3922,145,2,2271,4.99,2005-06-18T06:29:52Z,2020-02-15T06:59:49Z +3923,145,2,2614,0.99,2005-06-19T07:28:11Z,2020-02-15T06:59:49Z +3924,145,1,3647,5.99,2005-07-06T07:29:17Z,2020-02-15T06:59:49Z +3925,145,2,4201,8.99,2005-07-07T11:19:51Z,2020-02-15T06:59:49Z +3926,145,1,4364,4.99,2005-07-07T19:46:51Z,2020-02-15T06:59:49Z +3927,145,2,4405,6.99,2005-07-07T21:33:16Z,2020-02-15T06:59:49Z +3928,145,1,4470,2.99,2005-07-08T00:20:57Z,2020-02-15T06:59:49Z +3929,145,2,4817,2.99,2005-07-08T17:17:31Z,2020-02-15T06:59:49Z +3930,145,2,6056,2.99,2005-07-11T04:01:27Z,2020-02-15T06:59:49Z +3931,145,1,6339,1.99,2005-07-11T19:45:32Z,2020-02-15T06:59:49Z +3932,145,2,6378,0.99,2005-07-11T21:45:23Z,2020-02-15T06:59:49Z +3933,145,2,7061,2.99,2005-07-27T03:51:10Z,2020-02-15T06:59:49Z +3934,145,1,7529,7.99,2005-07-27T21:18:08Z,2020-02-15T06:59:49Z +3935,145,2,7954,0.99,2005-07-28T13:25:05Z,2020-02-15T06:59:49Z +3936,145,1,8380,0.99,2005-07-29T05:31:29Z,2020-02-15T06:59:49Z +3937,145,1,9156,2.99,2005-07-30T11:04:55Z,2020-02-15T06:59:49Z +3938,145,2,9576,0.99,2005-07-31T02:52:59Z,2020-02-15T06:59:49Z +3939,145,2,10799,4.99,2005-08-01T22:03:31Z,2020-02-15T06:59:49Z +3940,145,2,11904,5.99,2005-08-17T15:39:26Z,2020-02-15T06:59:49Z +3941,145,2,11954,2.99,2005-08-17T17:18:36Z,2020-02-15T06:59:49Z +3942,145,1,12637,2.99,2005-08-18T18:06:53Z,2020-02-15T06:59:49Z +3943,145,2,12785,2.99,2005-08-19T00:05:49Z,2020-02-15T06:59:49Z +3944,145,2,13012,7.99,2005-08-19T07:54:59Z,2020-02-15T06:59:49Z +3945,145,1,13164,3.99,2005-08-19T13:30:55Z,2020-02-15T06:59:49Z +3946,145,2,13272,0.99,2005-08-19T17:49:13Z,2020-02-15T06:59:49Z +3947,145,2,14044,5.99,2005-08-20T21:48:38Z,2020-02-15T06:59:49Z +3948,145,2,14389,6.99,2005-08-21T10:15:20Z,2020-02-15T06:59:49Z +3949,146,2,762,7.99,2005-05-29T11:15:51Z,2020-02-15T06:59:49Z +3950,146,1,1073,4.99,2005-05-31T09:55:04Z,2020-02-15T06:59:49Z +3951,146,2,1209,7.99,2005-06-15T02:31:12Z,2020-02-15T06:59:49Z +3952,146,2,1724,1.99,2005-06-16T15:15:43Z,2020-02-15T06:59:49Z +3953,146,2,2099,2.99,2005-06-17T18:47:26Z,2020-02-15T06:59:49Z +3954,146,1,2242,3.99,2005-06-18T04:32:28Z,2020-02-15T06:59:49Z +3955,146,1,2342,2.99,2005-06-18T11:42:40Z,2020-02-15T06:59:49Z +3956,146,1,2800,0.99,2005-06-19T19:15:56Z,2020-02-15T06:59:49Z +3957,146,1,3131,4.99,2005-06-20T19:08:00Z,2020-02-15T06:59:49Z +3958,146,1,4849,6.99,2005-07-08T18:34:34Z,2020-02-15T06:59:49Z +3959,146,2,5000,4.99,2005-07-09T01:16:13Z,2020-02-15T06:59:49Z +3960,146,1,6102,7.99,2005-07-11T06:53:09Z,2020-02-15T06:59:49Z +3961,146,2,6184,6.99,2005-07-11T11:19:21Z,2020-02-15T06:59:49Z +3962,146,1,6327,4.99,2005-07-11T19:07:29Z,2020-02-15T06:59:49Z +3963,146,1,6990,0.99,2005-07-27T01:02:46Z,2020-02-15T06:59:49Z +3964,146,2,8246,3.99,2005-07-29T00:38:41Z,2020-02-15T06:59:49Z +3965,146,2,11173,7.99,2005-08-02T10:28:00Z,2020-02-15T06:59:49Z +3966,146,1,11221,2.99,2005-08-02T12:32:12Z,2020-02-15T06:59:49Z +3967,146,2,11370,0.99,2005-08-02T18:06:01Z,2020-02-15T06:59:49Z +3968,146,2,11392,5.99,2005-08-02T18:41:11Z,2020-02-15T06:59:49Z +3969,146,1,11573,4.99,2005-08-17T01:38:18Z,2020-02-15T06:59:49Z +3970,146,1,11857,4.99,2005-08-17T13:48:30Z,2020-02-15T06:59:49Z +3971,146,1,12129,7.99,2005-08-17T23:31:25Z,2020-02-15T06:59:49Z +3972,146,1,12385,2.99,2005-08-18T08:39:33Z,2020-02-15T06:59:49Z +3973,146,1,12888,4.99,2005-08-19T03:41:09Z,2020-02-15T06:59:49Z +3974,146,1,13606,4.99,2005-08-20T06:07:01Z,2020-02-15T06:59:49Z +3975,146,2,13829,4.99,2005-08-20T13:50:17Z,2020-02-15T06:59:49Z +3976,146,2,14143,2.99,2005-08-21T02:10:32Z,2020-02-15T06:59:49Z +3977,146,1,15842,6.99,2005-08-23T15:36:05Z,2020-02-15T06:59:49Z +3978,147,1,362,0.99,2005-05-27T07:10:25Z,2020-02-15T06:59:49Z +3979,147,1,509,0.99,2005-05-28T02:51:12Z,2020-02-15T06:59:49Z +3980,147,1,2171,0.99,2005-06-18T00:06:04Z,2020-02-15T06:59:49Z +3981,147,1,2456,6.99,2005-06-18T19:36:50Z,2020-02-15T06:59:49Z +3982,147,2,2859,2.99,2005-06-19T23:18:42Z,2020-02-15T06:59:49Z +3983,147,2,3011,5.99,2005-06-20T10:39:10Z,2020-02-15T06:59:49Z +3984,147,2,3919,7.99,2005-07-06T20:26:21Z,2020-02-15T06:59:49Z +3985,147,2,3956,2.99,2005-07-06T22:01:51Z,2020-02-15T06:59:49Z +3986,147,2,4792,0.99,2005-07-08T16:29:38Z,2020-02-15T06:59:49Z +3987,147,2,5044,0.99,2005-07-09T03:30:25Z,2020-02-15T06:59:49Z +3988,147,1,5567,2.99,2005-07-10T03:36:46Z,2020-02-15T06:59:49Z +3989,147,1,5844,0.99,2005-07-10T17:14:43Z,2020-02-15T06:59:49Z +3990,147,2,6343,0.99,2005-07-11T19:51:35Z,2020-02-15T06:59:49Z +3991,147,2,6469,4.99,2005-07-12T01:29:27Z,2020-02-15T06:59:49Z +3992,147,2,6753,2.99,2005-07-12T14:55:42Z,2020-02-15T06:59:49Z +3993,147,2,7044,0.99,2005-07-27T03:27:29Z,2020-02-15T06:59:49Z +3994,147,1,7723,0.99,2005-07-28T04:45:37Z,2020-02-15T06:59:49Z +3995,147,1,8893,2.99,2005-07-30T00:48:19Z,2020-02-15T06:59:49Z +3996,147,2,9772,0.99,2005-07-31T09:56:07Z,2020-02-15T06:59:49Z +3997,147,1,10706,7.99,2005-08-01T18:41:28Z,2020-02-15T06:59:49Z +3998,147,2,10752,8.99,2005-08-01T20:08:49Z,2020-02-15T06:59:49Z +3999,147,1,12284,4.99,2005-08-18T04:55:49Z,2020-02-15T06:59:49Z +4000,147,1,12757,4.99,2005-08-18T22:57:45Z,2020-02-15T06:59:49Z +4001,147,2,13542,4.99,2005-08-20T03:41:57Z,2020-02-15T06:59:49Z +4002,147,2,13670,3.99,2005-08-20T08:27:01Z,2020-02-15T06:59:49Z +4003,147,2,14021,4.99,2005-08-20T21:02:12Z,2020-02-15T06:59:49Z +4004,147,1,14156,0.99,2005-08-21T02:35:16Z,2020-02-15T06:59:49Z +4005,147,2,14641,0.99,2005-08-21T19:05:23Z,2020-02-15T06:59:49Z +4006,147,2,14960,4.99,2005-08-22T06:31:36Z,2020-02-15T06:59:49Z +4007,147,1,15052,2.99,2005-08-22T10:09:19Z,2020-02-15T06:59:49Z +4008,147,2,15331,4.99,2005-08-22T20:37:57Z,2020-02-15T06:59:49Z +4009,147,2,15513,4.99,2005-08-23T03:01:56Z,2020-02-15T06:59:49Z +4010,147,1,15730,8.99,2005-08-23T11:32:35Z,2020-02-15T06:59:49Z +4011,147,2,16004,6.99,2005-08-23T20:53:20Z,2020-02-15T06:59:49Z +4012,148,1,682,4.99,2005-05-28T23:53:18Z,2020-02-15T06:59:49Z +4013,148,1,1501,1.99,2005-06-15T22:02:35Z,2020-02-15T06:59:49Z +4014,148,2,1517,6.99,2005-06-15T23:20:26Z,2020-02-15T06:59:49Z +4015,148,2,2751,3.99,2005-06-19T16:39:23Z,2020-02-15T06:59:49Z +4016,148,2,2843,3.99,2005-06-19T22:36:39Z,2020-02-15T06:59:49Z +4017,148,2,2847,5.99,2005-06-19T22:54:01Z,2020-02-15T06:59:49Z +4018,148,1,3653,0.99,2005-07-06T07:45:13Z,2020-02-15T06:59:49Z +4019,148,1,4080,0.99,2005-07-07T05:09:54Z,2020-02-15T06:59:49Z +4020,148,1,4746,2.99,2005-07-08T13:47:55Z,2020-02-15T06:59:49Z +4021,148,1,4950,2.99,2005-07-08T22:58:07Z,2020-02-15T06:59:49Z +4022,148,1,5034,4.99,2005-07-09T02:48:15Z,2020-02-15T06:59:49Z +4023,148,1,5372,4.99,2005-07-09T18:48:39Z,2020-02-15T06:59:49Z +4024,148,1,6169,1.99,2005-07-11T10:25:56Z,2020-02-15T06:59:49Z +4025,148,1,6640,8.99,2005-07-12T10:27:19Z,2020-02-15T06:59:49Z +4026,148,2,6793,10.99,2005-07-12T16:37:55Z,2020-02-15T06:59:49Z +4027,148,1,7656,0.99,2005-07-28T02:07:19Z,2020-02-15T06:59:49Z +4028,148,2,7693,4.99,2005-07-28T03:31:22Z,2020-02-15T06:59:49Z +4029,148,1,7865,9.99,2005-07-28T10:07:04Z,2020-02-15T06:59:49Z +4030,148,2,8111,4.99,2005-07-28T19:10:03Z,2020-02-15T06:59:49Z +4031,148,2,8331,3.99,2005-07-29T04:13:29Z,2020-02-15T06:59:49Z +4032,148,1,8394,4.99,2005-07-29T06:02:14Z,2020-02-15T06:59:49Z +4033,148,2,8578,4.99,2005-07-29T11:58:14Z,2020-02-15T06:59:49Z +4034,148,2,8626,4.99,2005-07-29T14:03:20Z,2020-02-15T06:59:49Z +4035,148,1,9023,5.99,2005-07-30T05:36:40Z,2020-02-15T06:59:49Z +4036,148,1,9106,2.99,2005-07-30T08:52:34Z,2020-02-15T06:59:49Z +4037,148,1,9530,1.99,2005-07-31T01:09:06Z,2020-02-15T06:59:49Z +4038,148,1,9594,4.99,2005-07-31T03:23:52Z,2020-02-15T06:59:49Z +4039,148,2,10067,4.99,2005-07-31T19:37:58Z,2020-02-15T06:59:49Z +4040,148,2,10830,6.99,2005-08-01T23:18:06Z,2020-02-15T06:59:49Z +4041,148,1,11357,10.99,2005-08-02T17:42:49Z,2020-02-15T06:59:49Z +4042,148,1,12029,2.99,2005-08-17T20:07:01Z,2020-02-15T06:59:49Z +4043,148,2,12038,0.99,2005-08-17T20:28:26Z,2020-02-15T06:59:49Z +4044,148,2,12512,3.99,2005-08-18T13:28:27Z,2020-02-15T06:59:50Z +4045,148,1,12944,6.99,2005-08-19T05:48:12Z,2020-02-15T06:59:50Z +4046,148,1,12983,6.99,2005-08-19T07:06:51Z,2020-02-15T06:59:50Z +4047,148,1,14055,0.99,2005-08-20T22:18:00Z,2020-02-15T06:59:50Z +4048,148,1,14155,4.99,2005-08-21T02:31:35Z,2020-02-15T06:59:50Z +4049,148,2,14184,6.99,2005-08-21T03:24:50Z,2020-02-15T06:59:50Z +4050,148,2,14629,2.99,2005-08-21T18:39:52Z,2020-02-15T06:59:50Z +4051,148,2,14713,0.99,2005-08-21T21:27:24Z,2020-02-15T06:59:50Z +4052,148,2,14879,5.99,2005-08-22T03:42:12Z,2020-02-15T06:59:50Z +4053,148,2,14965,2.99,2005-08-22T06:45:53Z,2020-02-15T06:59:50Z +4054,148,2,15237,4.99,2005-08-22T17:44:30Z,2020-02-15T06:59:50Z +4055,148,2,15379,8.99,2005-08-22T22:26:13Z,2020-02-15T06:59:50Z +4056,148,1,15541,3.99,2005-08-23T04:13:53Z,2020-02-15T06:59:50Z +4057,148,2,15586,3.99,2005-08-23T05:57:04Z,2020-02-15T06:59:50Z +4058,149,1,764,4.99,2005-05-29T11:37:35Z,2020-02-15T06:59:50Z +4059,149,2,1521,2.99,2005-06-15T23:58:53Z,2020-02-15T06:59:50Z +4060,149,1,1800,2.99,2005-06-16T20:18:46Z,2020-02-15T06:59:50Z +4061,149,2,1996,6.99,2005-06-17T11:17:45Z,2020-02-15T06:59:50Z +4062,149,2,2194,4.99,2005-06-18T01:41:37Z,2020-02-15T06:59:50Z +4063,149,1,2305,5.99,2005-06-18T08:31:18Z,2020-02-15T06:59:50Z +4064,149,2,2383,7.99,2005-06-18T15:17:59Z,2020-02-15T06:59:50Z +4065,149,1,2752,0.99,2005-06-19T16:44:18Z,2020-02-15T06:59:50Z +4066,149,1,3894,2.99,2005-07-06T19:01:39Z,2020-02-15T06:59:50Z +4067,149,1,3939,6.99,2005-07-06T21:16:32Z,2020-02-15T06:59:50Z +4068,149,1,4766,3.99,2005-07-08T15:16:04Z,2020-02-15T06:59:50Z +4069,149,1,4837,0.99,2005-07-08T18:09:12Z,2020-02-15T06:59:50Z +4070,149,1,5091,2.99,2005-07-09T05:52:54Z,2020-02-15T06:59:50Z +4071,149,1,5298,10.99,2005-07-09T15:36:17Z,2020-02-15T06:59:50Z +4072,149,1,6356,4.99,2005-07-11T20:57:48Z,2020-02-15T06:59:50Z +4073,149,2,6940,5.99,2005-07-26T23:18:35Z,2020-02-15T06:59:50Z +4074,149,2,7559,4.99,2005-07-27T22:20:03Z,2020-02-15T06:59:50Z +4075,149,1,7989,6.99,2005-07-28T14:39:05Z,2020-02-15T06:59:50Z +4076,149,2,10154,2.99,2005-07-31T22:30:49Z,2020-02-15T06:59:50Z +4077,149,2,10737,7.99,2005-08-01T19:31:24Z,2020-02-15T06:59:50Z +4078,149,2,10967,0.99,2005-08-02T04:02:16Z,2020-02-15T06:59:50Z +4079,149,1,11561,2.99,2005-08-17T01:23:09Z,2020-02-15T06:59:50Z +4080,149,1,12000,4.99,2005-08-17T18:49:44Z,2020-02-15T06:59:50Z +4081,149,1,14771,3.99,2005-08-21T23:50:15Z,2020-02-15T06:59:50Z +4082,149,2,15479,4.99,2005-08-23T01:50:53Z,2020-02-15T06:59:50Z +4083,149,2,15562,2.99,2005-08-23T05:04:33Z,2020-02-15T06:59:50Z +4084,150,1,422,3.99,2005-05-27T15:31:55Z,2020-02-15T06:59:50Z +4085,150,1,609,2.99,2005-05-28T15:04:02Z,2020-02-15T06:59:50Z +4086,150,1,995,3.99,2005-05-31T00:06:02Z,2020-02-15T06:59:50Z +4087,150,2,3187,1.99,2005-06-20T23:06:07Z,2020-02-15T06:59:50Z +4088,150,1,3456,5.99,2005-06-21T21:19:47Z,2020-02-15T06:59:50Z +4089,150,1,4271,6.99,2005-07-07T14:38:52Z,2020-02-15T06:59:50Z +4090,150,1,6633,2.99,2005-07-12T09:35:42Z,2020-02-15T06:59:50Z +4091,150,2,7690,4.99,2005-07-28T03:26:21Z,2020-02-15T06:59:50Z +4092,150,1,9121,2.99,2005-07-30T09:36:26Z,2020-02-15T06:59:50Z +4093,150,1,10686,2.99,2005-08-01T17:51:21Z,2020-02-15T06:59:50Z +4094,150,2,11123,2.99,2005-08-02T08:54:17Z,2020-02-15T06:59:50Z +4095,150,2,11789,6.99,2005-08-17T10:59:24Z,2020-02-15T06:59:50Z +4096,150,2,12260,6.99,2005-08-18T04:15:43Z,2020-02-15T06:59:50Z +4097,150,2,12335,2.99,2005-08-18T06:59:15Z,2020-02-15T06:59:50Z +4098,150,2,12627,2.99,2005-08-18T17:37:11Z,2020-02-15T06:59:50Z +4099,150,1,12887,1.99,2005-08-19T03:38:54Z,2020-02-15T06:59:50Z +4100,150,2,12890,0.99,2005-08-19T03:42:08Z,2020-02-15T06:59:50Z +4101,150,1,13116,6.99,2005-08-19T11:31:41Z,2020-02-15T06:59:50Z +4102,150,2,13255,8.99,2005-08-19T16:54:12Z,2020-02-15T06:59:50Z +4103,150,1,13372,2.99,2005-08-19T21:23:19Z,2020-02-15T06:59:50Z +4104,150,2,13599,5.99,2005-08-20T06:00:03Z,2020-02-15T06:59:50Z +4105,150,2,14165,0.99,2005-08-21T02:59:17Z,2020-02-15T06:59:50Z +4106,150,2,14454,2.99,2005-08-21T12:35:49Z,2020-02-15T06:59:50Z +4107,150,2,14520,9.99,2005-08-21T15:00:49Z,2020-02-15T06:59:50Z +4108,150,1,14663,0.99,2005-08-21T19:47:55Z,2020-02-15T06:59:50Z +4109,151,2,164,4.99,2005-05-26T02:26:49Z,2020-02-15T06:59:50Z +4110,151,2,418,5.99,2005-05-27T15:13:17Z,2020-02-15T06:59:50Z +4111,151,2,2474,2.99,2005-06-18T20:51:34Z,2020-02-15T06:59:50Z +4112,151,2,2947,2.99,2005-06-20T06:00:21Z,2020-02-15T06:59:50Z +4113,151,1,3017,3.99,2005-06-20T11:08:56Z,2020-02-15T06:59:50Z +4114,151,2,3089,0.99,2005-06-20T15:57:01Z,2020-02-15T06:59:50Z +4115,151,2,3390,2.99,2005-06-21T15:10:50Z,2020-02-15T06:59:50Z +4116,151,1,4376,2.99,2005-07-07T20:24:33Z,2020-02-15T06:59:50Z +4117,151,2,6720,0.99,2005-07-12T13:41:16Z,2020-02-15T06:59:50Z +4118,151,2,6768,3.99,2005-07-12T15:47:51Z,2020-02-15T06:59:50Z +4119,151,2,6854,0.99,2005-07-12T19:38:57Z,2020-02-15T06:59:50Z +4120,151,1,7189,0.99,2005-07-27T08:35:02Z,2020-02-15T06:59:50Z +4121,151,2,7332,3.99,2005-07-27T13:58:57Z,2020-02-15T06:59:50Z +4122,151,1,9253,4.99,2005-07-30T14:20:12Z,2020-02-15T06:59:50Z +4123,151,1,9890,4.99,2005-07-31T14:04:44Z,2020-02-15T06:59:50Z +4124,151,1,9969,2.99,2005-07-31T16:38:12Z,2020-02-15T06:59:50Z +4125,151,1,10078,2.99,2005-07-31T20:02:02Z,2020-02-15T06:59:50Z +4126,151,1,10311,4.99,2005-08-01T04:27:59Z,2020-02-15T06:59:50Z +4127,151,1,10662,2.99,2005-08-01T16:50:57Z,2020-02-15T06:59:50Z +4128,151,2,11714,2.99,2005-08-17T07:34:55Z,2020-02-15T06:59:50Z +4129,151,2,13230,0.99,2005-08-19T16:12:07Z,2020-02-15T06:59:50Z +4130,151,1,13568,5.99,2005-08-20T05:02:46Z,2020-02-15T06:59:50Z +4131,151,1,14856,4.99,2005-08-22T02:31:51Z,2020-02-15T06:59:50Z +4132,151,2,14922,3.99,2005-08-22T05:13:05Z,2020-02-15T06:59:50Z +4133,151,1,15227,4.99,2005-08-22T17:22:41Z,2020-02-15T06:59:50Z +4134,151,1,15926,2.99,2005-08-23T18:20:56Z,2020-02-15T06:59:50Z +4135,151,2,15996,2.99,2005-08-23T20:31:38Z,2020-02-15T06:59:50Z +4136,152,2,359,4.99,2005-05-27T06:48:33Z,2020-02-15T06:59:50Z +4137,152,1,745,4.99,2005-05-29T09:22:57Z,2020-02-15T06:59:50Z +4138,152,1,2882,4.99,2005-06-20T01:26:26Z,2020-02-15T06:59:50Z +4139,152,2,3577,2.99,2005-07-06T03:40:36Z,2020-02-15T06:59:50Z +4140,152,1,3786,7.99,2005-07-06T14:00:41Z,2020-02-15T06:59:50Z +4141,152,1,4974,4.99,2005-07-09T00:00:36Z,2020-02-15T06:59:50Z +4142,152,1,6273,0.99,2005-07-11T16:08:41Z,2020-02-15T06:59:50Z +4143,152,1,6612,2.99,2005-07-12T08:28:33Z,2020-02-15T06:59:50Z +4144,152,1,9010,5.99,2005-07-30T05:12:04Z,2020-02-15T06:59:50Z +4145,152,1,10320,6.99,2005-08-01T04:39:26Z,2020-02-15T06:59:50Z +4146,152,2,11638,6.99,2005-08-17T04:39:09Z,2020-02-15T06:59:50Z +4147,152,2,11783,0.99,2005-08-17T10:39:24Z,2020-02-15T06:59:50Z +4148,152,1,12697,2.99,2005-08-18T20:14:56Z,2020-02-15T06:59:50Z +4149,152,1,12917,4.99,2005-08-19T04:27:11Z,2020-02-15T06:59:50Z +4150,152,2,12960,1.99,2005-08-19T06:21:52Z,2020-02-15T06:59:50Z +4151,152,1,13204,4.99,2005-08-19T15:02:48Z,2020-02-15T06:59:50Z +4152,152,2,13484,0.99,2005-08-20T01:16:52Z,2020-02-15T06:59:50Z +4153,152,1,13986,0.99,2005-08-20T19:13:23Z,2020-02-15T06:59:50Z +4154,152,1,14173,0.99,2005-08-21T03:01:01Z,2020-02-15T06:59:50Z +4155,152,2,14668,4.99,2005-08-21T19:51:30Z,2020-02-15T06:59:50Z +4156,152,2,11848,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4157,153,1,2224,0.99,2005-06-18T03:33:58Z,2020-02-15T06:59:50Z +4158,153,1,2649,0.99,2005-06-19T10:20:09Z,2020-02-15T06:59:50Z +4159,153,1,2893,4.99,2005-06-20T02:22:08Z,2020-02-15T06:59:50Z +4160,153,1,2945,5.99,2005-06-20T05:49:27Z,2020-02-15T06:59:50Z +4161,153,1,3795,0.99,2005-07-06T14:37:41Z,2020-02-15T06:59:50Z +4162,153,1,3949,0.99,2005-07-06T21:46:36Z,2020-02-15T06:59:50Z +4163,153,1,4194,5.99,2005-07-07T10:59:39Z,2020-02-15T06:59:50Z +4164,153,2,4670,5.99,2005-07-08T10:14:18Z,2020-02-15T06:59:50Z +4165,153,2,5676,0.99,2005-07-10T08:38:32Z,2020-02-15T06:59:50Z +4166,153,2,5771,0.99,2005-07-10T13:26:45Z,2020-02-15T06:59:50Z +4167,153,2,6818,9.99,2005-07-12T18:20:54Z,2020-02-15T06:59:50Z +4168,153,2,7824,7.99,2005-07-28T08:34:47Z,2020-02-15T06:59:50Z +4169,153,2,9936,0.99,2005-07-31T15:27:41Z,2020-02-15T06:59:50Z +4170,153,2,10015,4.99,2005-07-31T18:11:17Z,2020-02-15T06:59:50Z +4171,153,2,11368,4.99,2005-08-02T18:03:05Z,2020-02-15T06:59:50Z +4172,153,1,12103,1.99,2005-08-17T22:49:09Z,2020-02-15T06:59:50Z +4173,153,1,12439,3.99,2005-08-18T10:44:57Z,2020-02-15T06:59:50Z +4174,153,1,12882,4.99,2005-08-19T03:33:46Z,2020-02-15T06:59:50Z +4175,153,1,14664,4.99,2005-08-21T19:48:47Z,2020-02-15T06:59:50Z +4176,153,1,14747,4.99,2005-08-21T23:00:02Z,2020-02-15T06:59:50Z +4177,153,1,14944,4.99,2005-08-22T06:01:26Z,2020-02-15T06:59:50Z +4178,153,2,15267,0.99,2005-08-22T18:37:48Z,2020-02-15T06:59:50Z +4179,153,2,15444,7.99,2005-08-23T00:46:52Z,2020-02-15T06:59:50Z +4180,153,1,15593,1.99,2005-08-23T06:15:09Z,2020-02-15T06:59:50Z +4181,154,1,469,5.99,2005-05-27T21:14:26Z,2020-02-15T06:59:50Z +4182,154,2,865,7.99,2005-05-30T03:39:44Z,2020-02-15T06:59:50Z +4183,154,2,978,5.99,2005-05-30T21:30:52Z,2020-02-15T06:59:50Z +4184,154,1,1963,0.99,2005-06-17T09:09:31Z,2020-02-15T06:59:50Z +4185,154,1,2886,4.99,2005-06-20T01:38:39Z,2020-02-15T06:59:50Z +4186,154,1,2985,2.99,2005-06-20T08:45:08Z,2020-02-15T06:59:50Z +4187,154,2,3806,7.99,2005-07-06T15:09:41Z,2020-02-15T06:59:50Z +4188,154,2,3912,0.99,2005-07-06T20:10:03Z,2020-02-15T06:59:50Z +4189,154,2,4132,4.99,2005-07-07T08:06:07Z,2020-02-15T06:59:50Z +4190,154,1,4252,2.99,2005-07-07T14:13:05Z,2020-02-15T06:59:50Z +4191,154,1,4850,5.99,2005-07-08T18:39:31Z,2020-02-15T06:59:50Z +4192,154,1,5101,0.99,2005-07-09T06:21:29Z,2020-02-15T06:59:50Z +4193,154,2,5760,2.99,2005-07-10T12:44:48Z,2020-02-15T06:59:50Z +4194,154,1,6048,0.99,2005-07-11T03:32:23Z,2020-02-15T06:59:50Z +4195,154,2,6993,4.99,2005-07-27T01:05:24Z,2020-02-15T06:59:50Z +4196,154,1,7055,4.99,2005-07-27T03:45:42Z,2020-02-15T06:59:50Z +4197,154,1,7156,4.99,2005-07-27T07:19:34Z,2020-02-15T06:59:50Z +4198,154,2,7900,1.99,2005-07-28T11:11:33Z,2020-02-15T06:59:50Z +4199,154,2,8334,7.99,2005-07-29T04:18:25Z,2020-02-15T06:59:50Z +4200,154,2,9286,2.99,2005-07-30T15:32:28Z,2020-02-15T06:59:50Z +4201,154,1,10278,6.99,2005-08-01T03:25:27Z,2020-02-15T06:59:50Z +4202,154,1,10851,4.99,2005-08-01T23:58:45Z,2020-02-15T06:59:50Z +4203,154,1,11296,5.99,2005-08-02T15:15:27Z,2020-02-15T06:59:50Z +4204,154,1,12341,0.99,2005-08-18T07:09:27Z,2020-02-15T06:59:50Z +4205,154,2,13861,4.99,2005-08-20T14:56:53Z,2020-02-15T06:59:50Z +4206,154,2,14731,2.99,2005-08-21T22:21:49Z,2020-02-15T06:59:50Z +4207,154,2,14793,7.99,2005-08-22T00:37:57Z,2020-02-15T06:59:50Z +4208,154,1,14918,6.99,2005-08-22T05:06:38Z,2020-02-15T06:59:50Z +4209,154,1,15351,0.99,2005-08-22T21:15:46Z,2020-02-15T06:59:50Z +4210,154,1,15721,2.99,2005-08-23T11:16:16Z,2020-02-15T06:59:50Z +4211,155,1,568,2.99,2005-05-28T09:57:36Z,2020-02-15T06:59:50Z +4212,155,2,1519,1.99,2005-06-15T23:55:27Z,2020-02-15T06:59:50Z +4213,155,1,1554,7.99,2005-06-16T02:16:47Z,2020-02-15T06:59:50Z +4214,155,1,2028,7.99,2005-06-17T13:08:08Z,2020-02-15T06:59:50Z +4215,155,1,2869,4.99,2005-06-20T00:09:25Z,2020-02-15T06:59:50Z +4216,155,2,3405,4.99,2005-06-21T15:58:25Z,2020-02-15T06:59:50Z +4217,155,1,5128,1.99,2005-07-09T07:25:54Z,2020-02-15T06:59:50Z +4218,155,1,6066,5.99,2005-07-11T04:32:42Z,2020-02-15T06:59:50Z +4219,155,1,6085,4.99,2005-07-11T05:24:36Z,2020-02-15T06:59:50Z +4220,155,2,6087,4.99,2005-07-11T05:29:22Z,2020-02-15T06:59:50Z +4221,155,1,6443,2.99,2005-07-12T00:35:51Z,2020-02-15T06:59:50Z +4222,155,1,7077,3.99,2005-07-27T04:13:02Z,2020-02-15T06:59:50Z +4223,155,1,7492,2.99,2005-07-27T19:54:18Z,2020-02-15T06:59:50Z +4224,155,2,7730,5.99,2005-07-28T04:59:48Z,2020-02-15T06:59:50Z +4225,155,2,9781,7.99,2005-07-31T10:13:02Z,2020-02-15T06:59:50Z +4226,155,1,10098,0.99,2005-07-31T20:41:17Z,2020-02-15T06:59:50Z +4227,155,1,11033,4.99,2005-08-02T05:54:17Z,2020-02-15T06:59:50Z +4228,155,2,11951,5.99,2005-08-17T17:14:02Z,2020-02-15T06:59:50Z +4229,155,1,14324,8.99,2005-08-21T08:10:56Z,2020-02-15T06:59:50Z +4230,155,2,14549,2.99,2005-08-21T15:54:21Z,2020-02-15T06:59:50Z +4231,155,1,14753,2.99,2005-08-21T23:11:43Z,2020-02-15T06:59:50Z +4232,155,2,14909,0.99,2005-08-22T04:48:44Z,2020-02-15T06:59:50Z +4233,155,1,15106,0.99,2005-08-22T12:01:48Z,2020-02-15T06:59:50Z +4234,155,2,11496,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4235,155,1,12352,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4236,156,2,899,6.99,2005-05-30T09:29:30Z,2020-02-15T06:59:50Z +4237,156,1,1052,4.99,2005-05-31T07:07:03Z,2020-02-15T06:59:50Z +4238,156,2,2089,9.99,2005-06-17T17:45:09Z,2020-02-15T06:59:50Z +4239,156,2,2221,0.99,2005-06-18T03:24:56Z,2020-02-15T06:59:50Z +4240,156,1,2658,4.99,2005-06-19T10:43:42Z,2020-02-15T06:59:50Z +4241,156,1,2782,0.99,2005-06-19T18:25:07Z,2020-02-15T06:59:50Z +4242,156,2,4394,2.99,2005-07-07T21:12:45Z,2020-02-15T06:59:50Z +4243,156,2,5534,4.99,2005-07-10T02:26:49Z,2020-02-15T06:59:50Z +4244,156,1,5828,2.99,2005-07-10T16:27:25Z,2020-02-15T06:59:50Z +4245,156,2,5908,0.99,2005-07-10T20:44:14Z,2020-02-15T06:59:50Z +4246,156,2,6540,6.99,2005-07-12T04:51:13Z,2020-02-15T06:59:50Z +4247,156,2,7389,2.99,2005-07-27T15:56:15Z,2020-02-15T06:59:50Z +4248,156,2,7822,4.99,2005-07-28T08:31:45Z,2020-02-15T06:59:50Z +4249,156,1,9409,6.99,2005-07-30T20:33:53Z,2020-02-15T06:59:50Z +4250,156,1,9696,0.99,2005-07-31T07:13:46Z,2020-02-15T06:59:50Z +4251,156,2,10309,6.99,2005-08-01T04:24:18Z,2020-02-15T06:59:50Z +4252,156,2,11490,2.99,2005-08-02T22:36:00Z,2020-02-15T06:59:50Z +4253,156,1,11587,5.99,2005-08-17T02:21:03Z,2020-02-15T06:59:50Z +4254,156,2,13530,0.99,2005-08-20T03:12:43Z,2020-02-15T06:59:50Z +4255,156,2,13531,2.99,2005-08-20T03:26:10Z,2020-02-15T06:59:50Z +4256,156,2,13802,2.99,2005-08-20T12:44:53Z,2020-02-15T06:59:50Z +4257,156,1,14794,1.99,2005-08-22T00:39:31Z,2020-02-15T06:59:50Z +4258,156,2,14831,4.99,2005-08-22T01:40:49Z,2020-02-15T06:59:50Z +4259,156,1,14914,0.99,2005-08-22T04:53:35Z,2020-02-15T06:59:50Z +4260,156,1,15408,6.99,2005-08-22T23:26:32Z,2020-02-15T06:59:50Z +4261,157,2,352,0.99,2005-05-27T05:48:19Z,2020-02-15T06:59:50Z +4262,157,1,642,4.99,2005-05-28T18:49:12Z,2020-02-15T06:59:50Z +4263,157,2,2340,0.99,2005-06-18T11:30:56Z,2020-02-15T06:59:50Z +4264,157,1,3739,0.99,2005-07-06T11:54:18Z,2020-02-15T06:59:50Z +4265,157,1,4253,5.99,2005-07-07T14:13:13Z,2020-02-15T06:59:50Z +4266,157,2,4435,3.99,2005-07-07T22:51:04Z,2020-02-15T06:59:50Z +4267,157,1,4919,0.99,2005-07-08T21:41:54Z,2020-02-15T06:59:50Z +4268,157,1,5862,4.99,2005-07-10T18:20:48Z,2020-02-15T06:59:50Z +4269,157,1,7110,2.99,2005-07-27T05:30:48Z,2020-02-15T06:59:50Z +4270,157,2,7195,2.99,2005-07-27T08:47:01Z,2020-02-15T06:59:50Z +4271,157,2,7499,4.99,2005-07-27T20:10:28Z,2020-02-15T06:59:50Z +4272,157,2,8163,0.99,2005-07-28T21:11:48Z,2020-02-15T06:59:50Z +4273,157,2,8337,0.99,2005-07-29T04:31:55Z,2020-02-15T06:59:50Z +4274,157,2,8347,0.99,2005-07-29T04:49:25Z,2020-02-15T06:59:50Z +4275,157,2,8576,4.99,2005-07-29T11:55:01Z,2020-02-15T06:59:50Z +4276,157,1,8707,0.99,2005-07-29T17:21:58Z,2020-02-15T06:59:50Z +4277,157,1,8827,4.99,2005-07-29T22:31:24Z,2020-02-15T06:59:50Z +4278,157,2,9237,2.99,2005-07-30T13:48:17Z,2020-02-15T06:59:50Z +4279,157,2,9264,4.99,2005-07-30T14:51:36Z,2020-02-15T06:59:50Z +4280,157,1,9958,2.99,2005-07-31T16:03:56Z,2020-02-15T06:59:50Z +4281,157,1,10203,4.99,2005-08-01T00:45:27Z,2020-02-15T06:59:50Z +4282,157,2,11249,4.99,2005-08-02T13:35:40Z,2020-02-15T06:59:50Z +4283,157,2,11335,4.99,2005-08-02T16:57:37Z,2020-02-15T06:59:50Z +4284,157,1,12213,5.99,2005-08-18T02:33:55Z,2020-02-15T06:59:50Z +4285,157,1,12464,6.99,2005-08-18T11:33:34Z,2020-02-15T06:59:50Z +4286,157,1,12916,0.99,2005-08-19T04:27:05Z,2020-02-15T06:59:50Z +4287,157,1,13097,4.99,2005-08-19T10:50:43Z,2020-02-15T06:59:50Z +4288,157,1,13214,4.99,2005-08-19T15:31:06Z,2020-02-15T06:59:50Z +4289,157,1,13481,6.99,2005-08-20T01:11:12Z,2020-02-15T06:59:50Z +4290,157,1,13728,2.99,2005-08-20T10:11:07Z,2020-02-15T06:59:50Z +4291,157,2,14974,4.99,2005-08-22T07:04:25Z,2020-02-15T06:59:50Z +4292,158,2,245,4.99,2005-05-26T13:46:59Z,2020-02-15T06:59:50Z +4293,158,1,293,5.99,2005-05-26T20:27:02Z,2020-02-15T06:59:50Z +4294,158,1,1380,0.99,2005-06-15T15:13:10Z,2020-02-15T06:59:50Z +4295,158,2,1790,4.99,2005-06-16T19:58:40Z,2020-02-15T06:59:50Z +4296,158,2,2035,6.99,2005-06-17T13:45:09Z,2020-02-15T06:59:50Z +4297,158,2,3203,8.99,2005-06-21T00:34:56Z,2020-02-15T06:59:50Z +4298,158,1,4117,8.99,2005-07-07T06:58:14Z,2020-02-15T06:59:50Z +4299,158,1,5672,2.99,2005-07-10T08:19:38Z,2020-02-15T06:59:50Z +4300,158,1,5988,4.99,2005-07-11T00:55:38Z,2020-02-15T06:59:50Z +4301,158,1,6416,2.99,2005-07-11T23:29:14Z,2020-02-15T06:59:50Z +4302,158,2,6901,5.99,2005-07-12T21:46:33Z,2020-02-15T06:59:50Z +4303,158,2,7159,2.99,2005-07-27T07:24:00Z,2020-02-15T06:59:50Z +4304,158,1,7732,0.99,2005-07-28T05:03:32Z,2020-02-15T06:59:50Z +4305,158,2,7952,2.99,2005-07-28T13:23:49Z,2020-02-15T06:59:50Z +4306,158,1,8750,2.99,2005-07-29T19:14:21Z,2020-02-15T06:59:50Z +4307,158,1,8957,1.99,2005-07-30T03:34:10Z,2020-02-15T06:59:50Z +4308,158,1,9393,2.99,2005-07-30T20:04:48Z,2020-02-15T06:59:50Z +4309,158,1,9713,1.99,2005-07-31T08:13:28Z,2020-02-15T06:59:50Z +4310,158,1,9801,2.99,2005-07-31T11:03:13Z,2020-02-15T06:59:50Z +4311,158,2,11077,4.99,2005-08-02T07:26:43Z,2020-02-15T06:59:50Z +4312,158,1,11103,6.99,2005-08-02T08:09:54Z,2020-02-15T06:59:50Z +4313,158,1,11272,0.99,2005-08-02T14:20:27Z,2020-02-15T06:59:50Z +4314,158,1,11420,2.99,2005-08-02T19:47:56Z,2020-02-15T06:59:50Z +4315,158,2,12070,1.99,2005-08-17T21:46:47Z,2020-02-15T06:59:50Z +4316,158,2,12421,5.99,2005-08-18T10:04:06Z,2020-02-15T06:59:50Z +4317,158,2,13212,1.99,2005-08-19T15:24:07Z,2020-02-15T06:59:50Z +4318,158,2,13854,2.99,2005-08-20T14:48:42Z,2020-02-15T06:59:50Z +4319,158,1,13926,2.99,2005-08-20T17:09:27Z,2020-02-15T06:59:50Z +4320,158,2,14028,0.99,2005-08-20T21:23:03Z,2020-02-15T06:59:50Z +4321,158,1,15763,2.99,2005-08-23T13:02:59Z,2020-02-15T06:59:50Z +4322,158,1,15796,5.99,2005-08-23T14:12:22Z,2020-02-15T06:59:50Z +4323,158,1,15802,5.99,2005-08-23T14:26:51Z,2020-02-15T06:59:50Z +4324,159,2,475,2.99,2005-05-27T22:16:26Z,2020-02-15T06:59:50Z +4325,159,2,549,1.99,2005-05-28T07:35:37Z,2020-02-15T06:59:50Z +4326,159,1,598,0.99,2005-05-28T14:04:50Z,2020-02-15T06:59:50Z +4327,159,1,832,3.99,2005-05-29T22:51:20Z,2020-02-15T06:59:50Z +4328,159,1,1695,0.99,2005-06-16T12:40:28Z,2020-02-15T06:59:50Z +4329,159,1,2572,0.99,2005-06-19T04:21:26Z,2020-02-15T06:59:50Z +4330,159,2,3914,5.99,2005-07-06T20:11:10Z,2020-02-15T06:59:50Z +4331,159,2,4273,4.99,2005-07-07T14:40:22Z,2020-02-15T06:59:50Z +4332,159,2,5656,0.99,2005-07-10T07:31:07Z,2020-02-15T06:59:50Z +4333,159,2,6885,4.99,2005-07-12T20:56:04Z,2020-02-15T06:59:50Z +4334,159,2,8212,2.99,2005-07-28T23:37:23Z,2020-02-15T06:59:50Z +4335,159,1,8470,0.99,2005-07-29T08:28:50Z,2020-02-15T06:59:50Z +4336,159,2,9022,3.99,2005-07-30T05:34:45Z,2020-02-15T06:59:50Z +4337,159,2,9132,0.99,2005-07-30T09:56:00Z,2020-02-15T06:59:50Z +4338,159,1,9559,7.99,2005-07-31T02:15:53Z,2020-02-15T06:59:50Z +4339,159,1,9917,4.99,2005-07-31T14:55:11Z,2020-02-15T06:59:50Z +4340,159,2,11225,4.99,2005-08-02T12:43:27Z,2020-02-15T06:59:50Z +4341,159,2,13270,1.99,2005-08-19T17:41:16Z,2020-02-15T06:59:50Z +4342,159,1,13933,0.99,2005-08-20T17:17:07Z,2020-02-15T06:59:50Z +4343,159,2,14575,8.99,2005-08-21T16:51:34Z,2020-02-15T06:59:50Z +4344,159,1,15197,0.99,2005-08-22T16:14:25Z,2020-02-15T06:59:50Z +4345,160,2,2314,4.99,2005-06-18T09:03:19Z,2020-02-15T06:59:50Z +4346,160,1,2465,2.99,2005-06-18T20:07:02Z,2020-02-15T06:59:50Z +4347,160,2,2873,2.99,2005-06-20T00:41:25Z,2020-02-15T06:59:50Z +4348,160,1,4842,0.99,2005-07-08T18:21:30Z,2020-02-15T06:59:50Z +4349,160,1,4908,5.99,2005-07-08T21:05:44Z,2020-02-15T06:59:50Z +4350,160,2,6364,6.99,2005-07-11T21:14:48Z,2020-02-15T06:59:50Z +4351,160,2,6448,1.99,2005-07-12T00:45:59Z,2020-02-15T06:59:50Z +4352,160,2,7500,0.99,2005-07-27T20:16:03Z,2020-02-15T06:59:50Z +4353,160,1,8184,4.99,2005-07-28T22:22:35Z,2020-02-15T06:59:50Z +4354,160,1,9681,0.99,2005-07-31T06:42:09Z,2020-02-15T06:59:50Z +4355,160,2,9758,2.99,2005-07-31T09:25:38Z,2020-02-15T06:59:50Z +4356,160,2,10089,2.99,2005-07-31T20:17:09Z,2020-02-15T06:59:50Z +4357,160,1,10305,2.99,2005-08-01T04:16:16Z,2020-02-15T06:59:50Z +4358,160,2,10788,0.99,2005-08-01T21:37:10Z,2020-02-15T06:59:50Z +4359,160,2,10958,4.99,2005-08-02T03:37:13Z,2020-02-15T06:59:50Z +4360,160,2,10979,5.99,2005-08-02T04:16:37Z,2020-02-15T06:59:50Z +4361,160,2,11154,2.99,2005-08-02T09:54:50Z,2020-02-15T06:59:50Z +4362,160,1,11803,2.99,2005-08-17T11:42:08Z,2020-02-15T06:59:50Z +4363,160,1,11888,7.99,2005-08-17T15:04:05Z,2020-02-15T06:59:50Z +4364,160,2,12334,2.99,2005-08-18T06:52:36Z,2020-02-15T06:59:50Z +4365,160,1,12435,7.99,2005-08-18T10:38:31Z,2020-02-15T06:59:50Z +4366,160,2,13093,6.99,2005-08-19T10:46:16Z,2020-02-15T06:59:50Z +4367,160,1,14868,4.99,2005-08-22T03:15:01Z,2020-02-15T06:59:50Z +4368,160,1,15112,2.99,2005-08-22T12:21:49Z,2020-02-15T06:59:50Z +4369,160,2,15642,2.99,2005-08-23T08:09:11Z,2020-02-15T06:59:50Z +4370,160,1,15962,4.99,2005-08-23T19:42:04Z,2020-02-15T06:59:50Z +4371,160,1,16027,3.99,2005-08-23T21:49:33Z,2020-02-15T06:59:50Z +4372,161,2,428,2.99,2005-05-27T16:10:58Z,2020-02-15T06:59:50Z +4373,161,2,477,3.99,2005-05-27T22:33:33Z,2020-02-15T06:59:50Z +4374,161,1,520,5.99,2005-05-28T03:27:37Z,2020-02-15T06:59:50Z +4375,161,2,539,0.99,2005-05-28T06:26:16Z,2020-02-15T06:59:50Z +4376,161,1,612,2.99,2005-05-28T15:24:54Z,2020-02-15T06:59:50Z +4377,161,1,1003,0.99,2005-05-31T00:48:20Z,2020-02-15T06:59:50Z +4378,161,1,1856,2.99,2005-06-17T01:02:00Z,2020-02-15T06:59:50Z +4379,161,1,3075,3.99,2005-06-20T14:52:19Z,2020-02-15T06:59:50Z +4380,161,1,3948,4.99,2005-07-06T21:45:53Z,2020-02-15T06:59:50Z +4381,161,2,4187,0.99,2005-07-07T10:41:31Z,2020-02-15T06:59:50Z +4382,161,2,4248,6.99,2005-07-07T13:59:20Z,2020-02-15T06:59:50Z +4383,161,1,4490,2.99,2005-07-08T01:26:32Z,2020-02-15T06:59:50Z +4384,161,2,5349,6.99,2005-07-09T17:35:35Z,2020-02-15T06:59:50Z +4385,161,2,6873,4.99,2005-07-12T20:20:50Z,2020-02-15T06:59:50Z +4386,161,1,7003,2.99,2005-07-27T01:32:06Z,2020-02-15T06:59:50Z +4387,161,2,8774,4.99,2005-07-29T20:05:04Z,2020-02-15T06:59:50Z +4388,161,1,9135,4.99,2005-07-30T10:06:53Z,2020-02-15T06:59:50Z +4389,161,2,9421,0.99,2005-07-30T21:08:32Z,2020-02-15T06:59:50Z +4390,161,1,10241,5.99,2005-08-01T02:12:25Z,2020-02-15T06:59:50Z +4391,161,1,10355,0.99,2005-08-01T05:47:37Z,2020-02-15T06:59:50Z +4392,161,1,10637,2.99,2005-08-01T15:44:09Z,2020-02-15T06:59:50Z +4393,161,1,10863,6.99,2005-08-02T00:18:07Z,2020-02-15T06:59:50Z +4394,161,2,10939,0.99,2005-08-02T03:06:20Z,2020-02-15T06:59:50Z +4395,161,1,11838,2.99,2005-08-17T13:06:00Z,2020-02-15T06:59:50Z +4396,161,2,14150,0.99,2005-08-21T02:23:03Z,2020-02-15T06:59:50Z +4397,161,1,14370,7.99,2005-08-21T09:35:14Z,2020-02-15T06:59:50Z +4398,161,1,15000,0.99,2005-08-22T07:54:58Z,2020-02-15T06:59:50Z +4399,161,2,15045,5.99,2005-08-22T09:53:23Z,2020-02-15T06:59:50Z +4400,161,2,15150,2.99,2005-08-22T14:12:05Z,2020-02-15T06:59:50Z +4401,161,1,15420,5.99,2005-08-22T23:55:51Z,2020-02-15T06:59:50Z +4402,162,1,285,1.99,2005-05-26T19:41:40Z,2020-02-15T06:59:50Z +4403,162,1,501,4.99,2005-05-28T01:09:36Z,2020-02-15T06:59:50Z +4404,162,1,688,4.99,2005-05-29T00:45:24Z,2020-02-15T06:59:50Z +4405,162,2,1339,4.99,2005-06-15T12:21:56Z,2020-02-15T06:59:50Z +4406,162,1,2366,0.99,2005-06-18T13:46:39Z,2020-02-15T06:59:50Z +4407,162,1,2547,4.99,2005-06-19T02:44:17Z,2020-02-15T06:59:50Z +4408,162,1,3040,0.99,2005-06-20T12:34:13Z,2020-02-15T06:59:50Z +4409,162,2,3180,0.99,2005-06-20T22:48:44Z,2020-02-15T06:59:50Z +4410,162,2,4982,2.99,2005-07-09T00:30:52Z,2020-02-15T06:59:50Z +4411,162,2,8478,4.99,2005-07-29T08:40:36Z,2020-02-15T06:59:50Z +4412,162,1,8582,4.99,2005-07-29T12:03:27Z,2020-02-15T06:59:50Z +4413,162,2,9167,4.99,2005-07-30T11:30:37Z,2020-02-15T06:59:50Z +4414,162,1,9726,7.99,2005-07-31T08:37:07Z,2020-02-15T06:59:50Z +4415,162,1,9775,0.99,2005-07-31T10:00:00Z,2020-02-15T06:59:50Z +4416,162,2,10093,5.99,2005-07-31T20:30:32Z,2020-02-15T06:59:50Z +4417,162,2,11012,0.99,2005-08-02T05:09:42Z,2020-02-15T06:59:50Z +4418,162,1,13288,4.99,2005-08-19T18:30:10Z,2020-02-15T06:59:50Z +4419,162,2,14301,1.99,2005-08-21T07:19:48Z,2020-02-15T06:59:50Z +4420,162,1,15332,4.99,2005-08-22T20:41:53Z,2020-02-15T06:59:50Z +4421,162,1,14220,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4422,163,2,1265,4.99,2005-06-15T07:00:50Z,2020-02-15T06:59:50Z +4423,163,2,2000,2.99,2005-06-17T11:32:30Z,2020-02-15T06:59:50Z +4424,163,2,2110,7.99,2005-06-17T19:45:49Z,2020-02-15T06:59:50Z +4425,163,2,2536,5.99,2005-06-19T01:41:34Z,2020-02-15T06:59:50Z +4426,163,1,2994,6.99,2005-06-20T09:17:05Z,2020-02-15T06:59:50Z +4427,163,1,3179,0.99,2005-06-20T22:37:59Z,2020-02-15T06:59:50Z +4428,163,2,3915,3.99,2005-07-06T20:16:46Z,2020-02-15T06:59:50Z +4429,163,1,4126,1.99,2005-07-07T07:24:11Z,2020-02-15T06:59:50Z +4430,163,2,5549,4.99,2005-07-10T02:58:29Z,2020-02-15T06:59:50Z +4431,163,1,5574,10.99,2005-07-10T03:54:38Z,2020-02-15T06:59:50Z +4432,163,1,6109,0.99,2005-07-11T07:20:57Z,2020-02-15T06:59:50Z +4433,163,1,6831,1.99,2005-07-12T18:44:04Z,2020-02-15T06:59:50Z +4434,163,1,7303,1.99,2005-07-27T12:54:39Z,2020-02-15T06:59:50Z +4435,163,1,7403,2.99,2005-07-27T16:22:09Z,2020-02-15T06:59:50Z +4436,163,2,8040,0.99,2005-07-28T16:39:43Z,2020-02-15T06:59:50Z +4437,163,2,8063,4.99,2005-07-28T17:15:11Z,2020-02-15T06:59:50Z +4438,163,2,8403,4.99,2005-07-29T06:26:39Z,2020-02-15T06:59:50Z +4439,163,2,10245,0.99,2005-08-01T02:24:09Z,2020-02-15T06:59:50Z +4440,163,2,11623,2.99,2005-08-17T04:15:47Z,2020-02-15T06:59:50Z +4441,163,2,11940,4.99,2005-08-17T16:56:28Z,2020-02-15T06:59:50Z +4442,163,1,12154,2.99,2005-08-18T00:23:56Z,2020-02-15T06:59:50Z +4443,163,2,12973,2.99,2005-08-19T06:48:11Z,2020-02-15T06:59:50Z +4444,163,2,13543,7.99,2005-08-20T03:43:13Z,2020-02-15T06:59:50Z +4445,163,2,14275,4.99,2005-08-21T06:30:30Z,2020-02-15T06:59:50Z +4446,163,2,14427,5.99,2005-08-21T11:26:06Z,2020-02-15T06:59:50Z +4447,163,1,15520,8.99,2005-08-23T03:30:45Z,2020-02-15T06:59:50Z +4448,163,1,15847,0.99,2005-08-23T15:39:38Z,2020-02-15T06:59:50Z +4449,163,2,11754,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4450,163,1,15282,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4451,164,2,1011,1.99,2005-05-31T02:05:39Z,2020-02-15T06:59:50Z +4452,164,2,1713,4.99,2005-06-16T14:28:33Z,2020-02-15T06:59:50Z +4453,164,2,2589,2.99,2005-06-19T05:21:27Z,2020-02-15T06:59:50Z +4454,164,1,3082,8.99,2005-06-20T15:32:11Z,2020-02-15T06:59:50Z +4455,164,2,4548,4.99,2005-07-08T04:21:54Z,2020-02-15T06:59:50Z +4456,164,1,5895,3.99,2005-07-10T20:13:19Z,2020-02-15T06:59:50Z +4457,164,1,6393,0.99,2005-07-11T22:28:12Z,2020-02-15T06:59:50Z +4458,164,2,6558,2.99,2005-07-12T05:16:07Z,2020-02-15T06:59:50Z +4459,164,1,6637,4.99,2005-07-12T09:57:39Z,2020-02-15T06:59:50Z +4460,164,2,6702,0.99,2005-07-12T12:48:03Z,2020-02-15T06:59:50Z +4461,164,1,6980,3.99,2005-07-27T00:50:30Z,2020-02-15T06:59:50Z +4462,164,1,7227,6.99,2005-07-27T09:53:43Z,2020-02-15T06:59:50Z +4463,164,2,8135,3.99,2005-07-28T20:03:25Z,2020-02-15T06:59:50Z +4464,164,2,8824,4.99,2005-07-29T22:22:58Z,2020-02-15T06:59:50Z +4465,164,2,11175,2.99,2005-08-02T10:38:47Z,2020-02-15T06:59:50Z +4466,164,2,13453,5.99,2005-08-20T00:30:51Z,2020-02-15T06:59:50Z +4467,165,2,338,4.99,2005-05-27T03:42:52Z,2020-02-15T06:59:50Z +4468,165,1,2013,3.99,2005-06-17T12:03:01Z,2020-02-15T06:59:50Z +4469,165,2,3195,2.99,2005-06-21T00:02:10Z,2020-02-15T06:59:50Z +4470,165,2,3531,4.99,2005-07-06T01:24:08Z,2020-02-15T06:59:50Z +4471,165,1,3784,5.99,2005-07-06T13:57:56Z,2020-02-15T06:59:50Z +4472,165,2,4304,0.99,2005-07-07T17:01:19Z,2020-02-15T06:59:50Z +4473,165,2,4945,2.99,2005-07-08T22:45:02Z,2020-02-15T06:59:50Z +4474,165,1,5472,4.99,2005-07-09T23:16:40Z,2020-02-15T06:59:50Z +4475,165,2,5658,4.99,2005-07-10T07:34:08Z,2020-02-15T06:59:50Z +4476,165,2,5901,6.99,2005-07-10T20:22:12Z,2020-02-15T06:59:50Z +4477,165,1,5973,0.99,2005-07-11T00:09:17Z,2020-02-15T06:59:50Z +4478,165,1,7074,2.99,2005-07-27T04:06:24Z,2020-02-15T06:59:50Z +4479,165,1,8608,0.99,2005-07-29T13:18:52Z,2020-02-15T06:59:50Z +4480,165,2,9182,7.99,2005-07-30T12:06:58Z,2020-02-15T06:59:50Z +4481,165,2,9685,4.99,2005-07-31T06:49:18Z,2020-02-15T06:59:50Z +4482,165,1,10565,4.99,2005-08-01T13:08:27Z,2020-02-15T06:59:50Z +4483,165,1,11484,2.99,2005-08-02T22:28:23Z,2020-02-15T06:59:50Z +4484,165,2,12643,4.99,2005-08-18T18:21:06Z,2020-02-15T06:59:50Z +4485,165,2,15007,1.99,2005-08-22T08:21:21Z,2020-02-15T06:59:50Z +4486,165,1,15801,3.99,2005-08-23T14:26:04Z,2020-02-15T06:59:50Z +4487,165,2,15834,5.99,2005-08-23T15:23:50Z,2020-02-15T06:59:50Z +4488,166,1,662,1.99,2005-05-28T21:09:31Z,2020-02-15T06:59:50Z +4489,166,2,1412,2.99,2005-06-15T17:09:48Z,2020-02-15T06:59:50Z +4490,166,1,2211,3.99,2005-06-18T02:29:10Z,2020-02-15T06:59:50Z +4491,166,1,2874,5.99,2005-06-20T00:42:26Z,2020-02-15T06:59:50Z +4492,166,1,3085,0.99,2005-06-20T15:42:33Z,2020-02-15T06:59:50Z +4493,166,2,3606,2.99,2005-07-06T05:28:02Z,2020-02-15T06:59:50Z +4494,166,1,3642,2.99,2005-07-06T07:18:20Z,2020-02-15T06:59:50Z +4495,166,2,4389,6.99,2005-07-07T20:58:58Z,2020-02-15T06:59:50Z +4496,166,1,4658,0.99,2005-07-08T09:51:11Z,2020-02-15T06:59:50Z +4497,166,1,5184,4.99,2005-07-09T10:14:34Z,2020-02-15T06:59:50Z +4498,166,2,5380,4.99,2005-07-09T19:08:44Z,2020-02-15T06:59:50Z +4499,166,1,5646,2.99,2005-07-10T07:08:09Z,2020-02-15T06:59:50Z +4500,166,1,5855,7.99,2005-07-10T17:54:06Z,2020-02-15T06:59:50Z +4501,166,2,6237,0.99,2005-07-11T14:19:12Z,2020-02-15T06:59:50Z +4502,166,2,6882,2.99,2005-07-12T20:50:39Z,2020-02-15T06:59:50Z +4503,166,1,7581,2.99,2005-07-27T23:14:35Z,2020-02-15T06:59:50Z +4504,166,1,8052,5.99,2005-07-28T16:57:31Z,2020-02-15T06:59:50Z +4505,166,1,9009,8.99,2005-07-30T05:12:01Z,2020-02-15T06:59:50Z +4506,166,2,10422,7.99,2005-08-01T08:17:11Z,2020-02-15T06:59:50Z +4507,166,2,12683,4.99,2005-08-18T19:50:43Z,2020-02-15T06:59:50Z +4508,166,1,12968,4.99,2005-08-19T06:38:18Z,2020-02-15T06:59:50Z +4509,166,2,13582,4.99,2005-08-20T05:28:11Z,2020-02-15T06:59:50Z +4510,166,2,13901,7.99,2005-08-20T16:06:53Z,2020-02-15T06:59:50Z +4511,166,2,14261,5.99,2005-08-21T06:07:24Z,2020-02-15T06:59:50Z +4512,166,2,14281,2.99,2005-08-21T06:40:48Z,2020-02-15T06:59:50Z +4513,166,1,15213,5.99,2005-08-22T16:49:02Z,2020-02-15T06:59:50Z +4514,166,2,15216,2.99,2005-08-22T16:57:02Z,2020-02-15T06:59:50Z +4515,166,2,15806,1.99,2005-08-23T14:31:50Z,2020-02-15T06:59:50Z +4516,167,1,280,2.99,2005-05-26T18:36:58Z,2020-02-15T06:59:50Z +4517,167,1,365,2.99,2005-05-27T07:31:20Z,2020-02-15T06:59:50Z +4518,167,1,927,4.99,2005-05-30T12:16:40Z,2020-02-15T06:59:50Z +4519,167,1,1416,3.99,2005-06-15T17:44:57Z,2020-02-15T06:59:50Z +4520,167,1,1509,5.99,2005-06-15T22:35:53Z,2020-02-15T06:59:50Z +4521,167,2,2381,5.99,2005-06-18T15:00:30Z,2020-02-15T06:59:50Z +4522,167,2,3518,4.99,2005-07-06T00:56:03Z,2020-02-15T06:59:50Z +4523,167,2,4493,0.99,2005-07-08T01:40:24Z,2020-02-15T06:59:50Z +4524,167,2,5131,0.99,2005-07-09T07:35:03Z,2020-02-15T06:59:50Z +4525,167,1,5178,4.99,2005-07-09T09:59:52Z,2020-02-15T06:59:50Z +4526,167,1,5191,0.99,2005-07-09T10:26:48Z,2020-02-15T06:59:50Z +4527,167,1,5413,4.99,2005-07-09T20:28:42Z,2020-02-15T06:59:50Z +4528,167,1,5781,2.99,2005-07-10T13:49:30Z,2020-02-15T06:59:50Z +4529,167,2,6269,4.99,2005-07-11T15:58:43Z,2020-02-15T06:59:50Z +4530,167,1,7608,4.99,2005-07-28T00:08:36Z,2020-02-15T06:59:50Z +4531,167,1,8092,2.99,2005-07-28T18:28:07Z,2020-02-15T06:59:50Z +4532,167,2,8227,4.99,2005-07-29T00:02:22Z,2020-02-15T06:59:50Z +4533,167,1,8318,2.99,2005-07-29T03:44:30Z,2020-02-15T06:59:50Z +4534,167,1,8793,0.99,2005-07-29T20:57:22Z,2020-02-15T06:59:50Z +4535,167,2,8864,0.99,2005-07-29T23:52:12Z,2020-02-15T06:59:50Z +4536,167,2,9563,4.99,2005-07-31T02:28:39Z,2020-02-15T06:59:50Z +4537,167,2,10285,3.99,2005-08-01T03:35:11Z,2020-02-15T06:59:50Z +4538,167,1,12642,4.99,2005-08-18T18:19:16Z,2020-02-15T06:59:50Z +4539,167,2,12717,4.99,2005-08-18T21:15:40Z,2020-02-15T06:59:50Z +4540,167,1,12978,4.99,2005-08-19T06:57:27Z,2020-02-15T06:59:50Z +4541,167,1,13825,6.99,2005-08-20T13:43:22Z,2020-02-15T06:59:50Z +4542,167,1,13870,1.99,2005-08-20T15:09:16Z,2020-02-15T06:59:50Z +4543,167,1,15003,3.99,2005-08-22T08:11:24Z,2020-02-15T06:59:50Z +4544,167,1,15050,0.99,2005-08-22T10:07:52Z,2020-02-15T06:59:50Z +4545,167,2,15478,0.99,2005-08-23T01:50:31Z,2020-02-15T06:59:50Z +4546,167,2,15530,4.99,2005-08-23T03:50:48Z,2020-02-15T06:59:50Z +4547,167,2,15915,4.99,2005-08-23T17:52:01Z,2020-02-15T06:59:50Z +4548,168,2,404,0.99,2005-05-27T13:31:51Z,2020-02-15T06:59:50Z +4549,168,1,488,4.99,2005-05-28T00:07:50Z,2020-02-15T06:59:50Z +4550,168,2,1222,4.99,2005-06-15T03:38:49Z,2020-02-15T06:59:50Z +4551,168,1,3530,2.99,2005-07-06T01:22:45Z,2020-02-15T06:59:50Z +4552,168,1,4308,5.99,2005-07-07T17:29:16Z,2020-02-15T06:59:50Z +4553,168,2,4363,5.99,2005-07-07T19:43:28Z,2020-02-15T06:59:50Z +4554,168,2,4953,2.99,2005-07-08T23:09:48Z,2020-02-15T06:59:50Z +4555,168,1,5459,0.99,2005-07-09T22:43:56Z,2020-02-15T06:59:50Z +4556,168,1,5907,5.99,2005-07-10T20:41:41Z,2020-02-15T06:59:50Z +4557,168,1,6334,5.99,2005-07-11T19:20:44Z,2020-02-15T06:59:50Z +4558,168,2,6444,0.99,2005-07-12T00:36:02Z,2020-02-15T06:59:50Z +4559,168,2,6809,3.99,2005-07-12T17:51:54Z,2020-02-15T06:59:50Z +4560,168,2,8352,1.99,2005-07-29T04:52:01Z,2020-02-15T06:59:50Z +4561,168,1,8527,1.99,2005-07-29T10:21:00Z,2020-02-15T06:59:50Z +4562,168,2,8659,6.99,2005-07-29T15:26:31Z,2020-02-15T06:59:50Z +4563,168,2,8883,1.99,2005-07-30T00:24:48Z,2020-02-15T06:59:50Z +4564,168,2,9197,4.99,2005-07-30T12:31:36Z,2020-02-15T06:59:50Z +4565,168,1,9418,4.99,2005-07-30T21:00:52Z,2020-02-15T06:59:50Z +4566,168,2,9857,6.99,2005-07-31T13:00:53Z,2020-02-15T06:59:50Z +4567,168,2,9899,4.99,2005-07-31T14:12:36Z,2020-02-15T06:59:50Z +4568,168,2,10270,0.99,2005-08-01T03:10:24Z,2020-02-15T06:59:50Z +4569,168,1,11551,0.99,2005-08-17T01:03:49Z,2020-02-15T06:59:50Z +4570,168,1,11627,10.99,2005-08-17T04:25:47Z,2020-02-15T06:59:50Z +4571,168,1,11631,1.99,2005-08-17T04:28:56Z,2020-02-15T06:59:50Z +4572,168,1,12545,6.99,2005-08-18T14:28:00Z,2020-02-15T06:59:50Z +4573,168,1,12781,2.99,2005-08-18T23:50:24Z,2020-02-15T06:59:50Z +4574,168,1,13018,8.99,2005-08-19T08:04:50Z,2020-02-15T06:59:50Z +4575,168,2,13532,4.99,2005-08-20T03:29:28Z,2020-02-15T06:59:50Z +4576,168,2,13811,0.99,2005-08-20T13:00:30Z,2020-02-15T06:59:50Z +4577,168,1,14090,2.99,2005-08-21T00:11:16Z,2020-02-15T06:59:50Z +4578,168,1,15033,3.99,2005-08-22T09:25:24Z,2020-02-15T06:59:50Z +4579,168,1,15165,2.99,2005-08-22T14:59:30Z,2020-02-15T06:59:50Z +4580,168,2,15683,2.99,2005-08-23T09:38:17Z,2020-02-15T06:59:50Z +4581,168,1,15894,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4582,169,2,527,3.99,2005-05-28T04:28:38Z,2020-02-15T06:59:50Z +4583,169,1,1087,4.99,2005-05-31T11:18:08Z,2020-02-15T06:59:50Z +4584,169,1,2023,4.99,2005-06-17T12:52:58Z,2020-02-15T06:59:50Z +4585,169,1,3261,2.99,2005-06-21T04:07:41Z,2020-02-15T06:59:50Z +4586,169,1,3493,8.99,2005-07-05T23:46:19Z,2020-02-15T06:59:50Z +4587,169,1,4687,4.99,2005-07-08T10:54:19Z,2020-02-15T06:59:50Z +4588,169,1,5066,2.99,2005-07-09T04:48:50Z,2020-02-15T06:59:50Z +4589,169,1,6143,3.99,2005-07-11T09:02:37Z,2020-02-15T06:59:50Z +4590,169,2,6453,4.99,2005-07-12T00:59:53Z,2020-02-15T06:59:50Z +4591,169,2,6488,9.99,2005-07-12T02:20:09Z,2020-02-15T06:59:50Z +4592,169,2,7187,6.99,2005-07-27T08:27:58Z,2020-02-15T06:59:50Z +4593,169,1,7597,0.99,2005-07-27T23:35:49Z,2020-02-15T06:59:50Z +4594,169,2,8558,4.99,2005-07-29T11:24:49Z,2020-02-15T06:59:50Z +4595,169,2,9203,0.99,2005-07-30T12:43:40Z,2020-02-15T06:59:50Z +4596,169,2,11687,5.99,2005-08-17T06:39:59Z,2020-02-15T06:59:50Z +4597,169,1,11898,5.99,2005-08-17T15:24:12Z,2020-02-15T06:59:50Z +4598,169,2,13198,2.99,2005-08-19T14:47:18Z,2020-02-15T06:59:50Z +4599,169,2,13237,1.99,2005-08-19T16:18:36Z,2020-02-15T06:59:50Z +4600,169,2,14435,0.99,2005-08-21T11:44:37Z,2020-02-15T06:59:50Z +4601,169,2,14805,4.99,2005-08-22T00:52:01Z,2020-02-15T06:59:50Z +4602,169,2,15534,0.99,2005-08-23T03:55:54Z,2020-02-15T06:59:50Z +4603,169,2,15680,4.99,2005-08-23T09:33:22Z,2020-02-15T06:59:50Z +4604,170,1,211,2.99,2005-05-26T08:33:10Z,2020-02-15T06:59:50Z +4605,170,1,377,5.99,2005-05-27T09:04:05Z,2020-02-15T06:59:50Z +4606,170,2,504,0.99,2005-05-28T02:05:34Z,2020-02-15T06:59:50Z +4607,170,2,2117,0.99,2005-06-17T20:24:00Z,2020-02-15T06:59:50Z +4608,170,2,2413,8.99,2005-06-18T16:59:34Z,2020-02-15T06:59:50Z +4609,170,2,3651,4.99,2005-07-06T07:40:31Z,2020-02-15T06:59:50Z +4610,170,1,3749,4.99,2005-07-06T12:18:03Z,2020-02-15T06:59:50Z +4611,170,2,4113,4.99,2005-07-07T06:49:52Z,2020-02-15T06:59:50Z +4612,170,2,4468,0.99,2005-07-08T00:17:59Z,2020-02-15T06:59:50Z +4613,170,2,5075,0.99,2005-07-09T05:12:07Z,2020-02-15T06:59:50Z +4614,170,1,5573,4.99,2005-07-10T03:50:47Z,2020-02-15T06:59:50Z +4615,170,2,5685,7.99,2005-07-10T09:01:38Z,2020-02-15T06:59:50Z +4616,170,2,5808,2.99,2005-07-10T15:17:33Z,2020-02-15T06:59:50Z +4617,170,1,7999,7.99,2005-07-28T15:10:14Z,2020-02-15T06:59:50Z +4618,170,2,9517,2.99,2005-07-31T00:41:23Z,2020-02-15T06:59:50Z +4619,170,1,9817,2.99,2005-07-31T11:33:31Z,2020-02-15T06:59:50Z +4620,170,1,10102,9.99,2005-07-31T20:49:10Z,2020-02-15T06:59:50Z +4621,170,2,10481,5.99,2005-08-01T10:17:26Z,2020-02-15T06:59:50Z +4622,170,1,11039,0.99,2005-08-02T06:00:53Z,2020-02-15T06:59:50Z +4623,170,2,12706,3.99,2005-08-18T20:44:34Z,2020-02-15T06:59:50Z +4624,170,1,12967,3.99,2005-08-19T06:37:51Z,2020-02-15T06:59:50Z +4625,170,1,13081,0.99,2005-08-19T10:19:06Z,2020-02-15T06:59:50Z +4626,170,2,13862,6.99,2005-08-20T14:57:01Z,2020-02-15T06:59:50Z +4627,170,2,14022,8.99,2005-08-20T21:08:49Z,2020-02-15T06:59:50Z +4628,170,2,14675,2.99,2005-08-21T20:01:51Z,2020-02-15T06:59:50Z +4629,170,1,15549,7.99,2005-08-23T04:27:06Z,2020-02-15T06:59:50Z +4630,171,2,804,9.99,2005-05-29T18:10:24Z,2020-02-15T06:59:50Z +4631,171,2,1676,0.99,2005-06-16T11:06:09Z,2020-02-15T06:59:50Z +4632,171,2,2004,4.99,2005-06-17T11:43:38Z,2020-02-15T06:59:50Z +4633,171,2,2199,5.99,2005-06-18T01:57:56Z,2020-02-15T06:59:50Z +4634,171,1,2497,4.99,2005-06-18T22:50:40Z,2020-02-15T06:59:50Z +4635,171,2,2599,5.99,2005-06-19T06:06:07Z,2020-02-15T06:59:50Z +4636,171,2,2788,2.99,2005-06-19T18:48:11Z,2020-02-15T06:59:50Z +4637,171,2,3338,6.99,2005-06-21T10:27:31Z,2020-02-15T06:59:50Z +4638,171,1,3621,0.99,2005-07-06T06:03:55Z,2020-02-15T06:59:50Z +4639,171,2,3745,2.99,2005-07-06T12:10:32Z,2020-02-15T06:59:50Z +4640,171,1,5660,5.99,2005-07-10T07:46:12Z,2020-02-15T06:59:50Z +4641,171,1,5986,4.99,2005-07-11T00:54:56Z,2020-02-15T06:59:50Z +4642,171,1,6766,2.99,2005-07-12T15:32:01Z,2020-02-15T06:59:50Z +4643,171,2,6774,0.99,2005-07-12T15:56:08Z,2020-02-15T06:59:50Z +4644,171,1,7037,3.99,2005-07-27T03:06:44Z,2020-02-15T06:59:50Z +4645,171,2,9066,4.99,2005-07-30T07:28:54Z,2020-02-15T06:59:50Z +4646,171,2,9084,5.99,2005-07-30T08:14:29Z,2020-02-15T06:59:50Z +4647,171,2,10622,4.99,2005-08-01T15:12:00Z,2020-02-15T06:59:50Z +4648,171,1,12600,4.99,2005-08-18T16:44:24Z,2020-02-15T06:59:50Z +4649,171,1,12962,5.99,2005-08-19T06:22:48Z,2020-02-15T06:59:50Z +4650,171,2,13087,6.99,2005-08-19T10:33:52Z,2020-02-15T06:59:50Z +4651,171,2,13292,0.99,2005-08-19T18:35:32Z,2020-02-15T06:59:50Z +4652,171,2,13433,0.99,2005-08-19T23:30:53Z,2020-02-15T06:59:50Z +4653,171,1,14270,1.99,2005-08-21T06:22:18Z,2020-02-15T06:59:50Z +4654,171,2,14615,9.99,2005-08-21T18:06:32Z,2020-02-15T06:59:50Z +4655,171,2,15810,0.99,2005-08-23T14:43:15Z,2020-02-15T06:59:50Z +4656,172,2,449,3.99,2005-05-27T19:13:15Z,2020-02-15T06:59:50Z +4657,172,1,685,6.99,2005-05-29T00:17:51Z,2020-02-15T06:59:50Z +4658,172,1,837,0.99,2005-05-30T00:02:08Z,2020-02-15T06:59:50Z +4659,172,2,1507,0.99,2005-06-15T22:25:26Z,2020-02-15T06:59:50Z +4660,172,1,2052,0.99,2005-06-17T15:14:43Z,2020-02-15T06:59:50Z +4661,172,2,3032,1.99,2005-06-20T11:58:30Z,2020-02-15T06:59:50Z +4662,172,1,4820,5.99,2005-07-08T17:25:23Z,2020-02-15T06:59:50Z +4663,172,1,4821,4.99,2005-07-08T17:28:08Z,2020-02-15T06:59:50Z +4664,172,2,4878,6.99,2005-07-08T19:33:49Z,2020-02-15T06:59:50Z +4665,172,2,6246,7.99,2005-07-11T14:57:51Z,2020-02-15T06:59:50Z +4666,172,1,6380,0.99,2005-07-11T21:55:40Z,2020-02-15T06:59:50Z +4667,172,1,6875,5.99,2005-07-12T20:23:05Z,2020-02-15T06:59:50Z +4668,172,1,7122,6.99,2005-07-27T06:03:18Z,2020-02-15T06:59:50Z +4669,172,1,7135,2.99,2005-07-27T06:34:32Z,2020-02-15T06:59:50Z +4670,172,1,7194,3.99,2005-07-27T08:39:58Z,2020-02-15T06:59:50Z +4671,172,2,7261,2.99,2005-07-27T11:15:01Z,2020-02-15T06:59:50Z +4672,172,1,7638,4.99,2005-07-28T01:13:26Z,2020-02-15T06:59:50Z +4673,172,2,8944,6.99,2005-07-30T03:11:44Z,2020-02-15T06:59:50Z +4674,172,1,9118,2.99,2005-07-30T09:24:18Z,2020-02-15T06:59:50Z +4675,172,2,9218,5.99,2005-07-30T13:14:35Z,2020-02-15T06:59:50Z +4676,172,1,10312,3.99,2005-08-01T04:29:06Z,2020-02-15T06:59:50Z +4677,172,2,10621,0.99,2005-08-01T15:10:26Z,2020-02-15T06:59:50Z +4678,172,2,11499,6.99,2005-08-16T22:54:12Z,2020-02-15T06:59:50Z +4679,172,2,12350,4.99,2005-08-18T07:29:46Z,2020-02-15T06:59:50Z +4680,172,2,12638,8.99,2005-08-18T18:11:39Z,2020-02-15T06:59:50Z +4681,172,2,13067,5.99,2005-08-19T09:51:17Z,2020-02-15T06:59:50Z +4682,172,2,13320,4.99,2005-08-19T19:35:33Z,2020-02-15T06:59:50Z +4683,172,1,13342,0.99,2005-08-19T20:21:36Z,2020-02-15T06:59:50Z +4684,172,2,13937,4.99,2005-08-20T17:22:51Z,2020-02-15T06:59:50Z +4685,172,1,14991,4.99,2005-08-22T07:50:44Z,2020-02-15T06:59:50Z +4686,172,2,15637,2.99,2005-08-23T07:53:38Z,2020-02-15T06:59:50Z +4687,172,1,15902,3.99,2005-08-23T17:28:03Z,2020-02-15T06:59:50Z +4688,172,2,16038,3.99,2005-08-23T22:14:31Z,2020-02-15T06:59:50Z +4689,173,2,578,2.99,2005-05-28T11:15:48Z,2020-02-15T06:59:50Z +4690,173,1,628,4.99,2005-05-28T17:05:46Z,2020-02-15T06:59:50Z +4691,173,2,1188,2.99,2005-06-15T01:04:07Z,2020-02-15T06:59:50Z +4692,173,2,2435,4.99,2005-06-18T18:12:26Z,2020-02-15T06:59:50Z +4693,173,1,2602,2.99,2005-06-19T06:10:08Z,2020-02-15T06:59:50Z +4694,173,2,3224,0.99,2005-06-21T02:11:36Z,2020-02-15T06:59:50Z +4695,173,1,3336,4.99,2005-06-21T10:14:27Z,2020-02-15T06:59:50Z +4696,173,2,3717,0.99,2005-07-06T10:53:34Z,2020-02-15T06:59:50Z +4697,173,1,4904,7.99,2005-07-08T20:53:27Z,2020-02-15T06:59:50Z +4698,173,2,5430,2.99,2005-07-09T21:19:54Z,2020-02-15T06:59:50Z +4699,173,2,5485,4.99,2005-07-09T23:55:25Z,2020-02-15T06:59:50Z +4700,173,1,5488,2.99,2005-07-10T00:02:06Z,2020-02-15T06:59:50Z +4701,173,2,5531,2.99,2005-07-10T02:13:59Z,2020-02-15T06:59:50Z +4702,173,1,5615,3.99,2005-07-10T05:18:51Z,2020-02-15T06:59:50Z +4703,173,2,6021,4.99,2005-07-11T02:10:18Z,2020-02-15T06:59:50Z +4704,173,1,7644,0.99,2005-07-28T01:27:33Z,2020-02-15T06:59:50Z +4705,173,2,8299,2.99,2005-07-29T02:56:00Z,2020-02-15T06:59:50Z +4706,173,2,8808,4.99,2005-07-29T21:39:07Z,2020-02-15T06:59:50Z +4707,173,2,8829,8.99,2005-07-29T22:33:34Z,2020-02-15T06:59:50Z +4708,173,1,9097,4.99,2005-07-30T08:40:35Z,2020-02-15T06:59:50Z +4709,173,2,9512,2.99,2005-07-31T00:26:30Z,2020-02-15T06:59:50Z +4710,173,1,10351,5.99,2005-08-01T05:32:13Z,2020-02-15T06:59:50Z +4711,173,2,12073,2.99,2005-08-17T21:50:39Z,2020-02-15T06:59:50Z +4712,173,1,12282,6.99,2005-08-18T04:54:20Z,2020-02-15T06:59:50Z +4713,173,2,12501,4.99,2005-08-18T13:13:13Z,2020-02-15T06:59:50Z +4714,173,1,14654,2.99,2005-08-21T19:36:59Z,2020-02-15T06:59:50Z +4715,173,2,15483,0.99,2005-08-23T02:02:53Z,2020-02-15T06:59:50Z +4716,173,1,15775,8.99,2005-08-23T13:25:44Z,2020-02-15T06:59:50Z +4717,173,1,16010,2.99,2005-08-23T21:10:24Z,2020-02-15T06:59:50Z +4718,174,1,41,5.99,2005-05-25T05:12:29Z,2020-02-15T06:59:50Z +4719,174,2,1071,4.99,2005-05-31T09:48:56Z,2020-02-15T06:59:50Z +4720,174,2,1566,7.99,2005-06-16T03:13:20Z,2020-02-15T06:59:50Z +4721,174,1,1609,0.99,2005-06-16T06:34:59Z,2020-02-15T06:59:50Z +4722,174,1,2326,5.99,2005-06-18T10:14:22Z,2020-02-15T06:59:50Z +4723,174,2,3446,1.99,2005-06-21T20:45:51Z,2020-02-15T06:59:50Z +4724,174,2,4803,1.99,2005-07-08T16:56:34Z,2020-02-15T06:59:50Z +4725,174,2,5414,4.99,2005-07-09T20:29:36Z,2020-02-15T06:59:50Z +4726,174,1,6909,4.99,2005-07-12T22:09:30Z,2020-02-15T06:59:50Z +4727,174,2,8348,7.99,2005-07-29T04:49:26Z,2020-02-15T06:59:50Z +4728,174,1,8754,4.99,2005-07-29T19:18:30Z,2020-02-15T06:59:50Z +4729,174,1,9301,4.99,2005-07-30T16:34:29Z,2020-02-15T06:59:50Z +4730,174,1,9847,2.99,2005-07-31T12:33:43Z,2020-02-15T06:59:50Z +4731,174,1,10363,2.99,2005-08-01T06:01:52Z,2020-02-15T06:59:50Z +4732,174,2,10398,4.99,2005-08-01T07:11:49Z,2020-02-15T06:59:50Z +4733,174,1,10559,8.99,2005-08-01T13:02:58Z,2020-02-15T06:59:50Z +4734,174,1,11525,0.99,2005-08-17T00:15:31Z,2020-02-15T06:59:50Z +4735,174,2,12886,5.99,2005-08-19T03:38:32Z,2020-02-15T06:59:50Z +4736,174,1,13185,0.99,2005-08-19T14:22:30Z,2020-02-15T06:59:50Z +4737,174,1,15892,1.99,2005-08-23T17:01:00Z,2020-02-15T06:59:50Z +4738,174,1,15975,4.99,2005-08-23T20:06:23Z,2020-02-15T06:59:50Z +4739,175,2,1495,0.99,2005-06-15T21:54:31Z,2020-02-15T06:59:50Z +4740,175,2,3266,4.99,2005-06-21T04:49:07Z,2020-02-15T06:59:50Z +4741,175,1,3625,4.99,2005-07-06T06:12:52Z,2020-02-15T06:59:50Z +4742,175,2,4167,5.99,2005-07-07T09:37:08Z,2020-02-15T06:59:50Z +4743,175,1,5232,1.99,2005-07-09T12:35:08Z,2020-02-15T06:59:50Z +4744,175,2,6865,7.99,2005-07-12T20:02:40Z,2020-02-15T06:59:50Z +4745,175,1,7448,2.99,2005-07-27T18:06:30Z,2020-02-15T06:59:50Z +4746,175,1,7771,0.99,2005-07-28T06:52:12Z,2020-02-15T06:59:50Z +4747,175,1,8244,2.99,2005-07-29T00:35:34Z,2020-02-15T06:59:50Z +4748,175,1,8264,4.99,2005-07-29T01:18:50Z,2020-02-15T06:59:50Z +4749,175,1,8440,3.99,2005-07-29T07:31:26Z,2020-02-15T06:59:50Z +4750,175,1,8817,4.99,2005-07-29T22:09:08Z,2020-02-15T06:59:50Z +4751,175,2,9941,4.99,2005-07-31T15:31:25Z,2020-02-15T06:59:50Z +4752,175,2,10229,7.99,2005-08-01T01:45:26Z,2020-02-15T06:59:50Z +4753,175,1,10875,0.99,2005-08-02T00:31:44Z,2020-02-15T06:59:50Z +4754,175,2,11618,4.99,2005-08-17T04:01:36Z,2020-02-15T06:59:50Z +4755,175,1,12509,0.99,2005-08-18T13:21:52Z,2020-02-15T06:59:50Z +4756,175,1,13016,4.99,2005-08-19T07:57:14Z,2020-02-15T06:59:50Z +4757,175,2,13833,6.99,2005-08-20T14:00:29Z,2020-02-15T06:59:50Z +4758,175,2,13997,6.99,2005-08-20T19:51:28Z,2020-02-15T06:59:50Z +4759,175,2,14507,4.99,2005-08-21T14:32:45Z,2020-02-15T06:59:50Z +4760,175,2,14897,2.99,2005-08-22T04:22:31Z,2020-02-15T06:59:50Z +4761,175,2,14060,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4762,175,2,13161,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4763,176,1,172,0.99,2005-05-26T03:17:42Z,2020-02-15T06:59:50Z +4764,176,2,380,6.99,2005-05-27T09:34:39Z,2020-02-15T06:59:50Z +4765,176,1,553,3.99,2005-05-28T08:14:44Z,2020-02-15T06:59:50Z +4766,176,1,663,1.99,2005-05-28T21:23:02Z,2020-02-15T06:59:50Z +4767,176,1,1062,7.99,2005-05-31T08:38:20Z,2020-02-15T06:59:50Z +4768,176,1,1291,5.99,2005-06-15T08:55:01Z,2020-02-15T06:59:50Z +4769,176,1,1741,7.99,2005-06-16T16:31:37Z,2020-02-15T06:59:50Z +4770,176,1,1836,6.99,2005-06-16T23:13:05Z,2020-02-15T06:59:50Z +4771,176,1,2181,8.99,2005-06-18T00:48:31Z,2020-02-15T06:59:50Z +4772,176,1,2218,2.99,2005-06-18T03:13:13Z,2020-02-15T06:59:50Z +4773,176,2,2427,2.99,2005-06-18T17:45:00Z,2020-02-15T06:59:50Z +4774,176,2,2503,1.99,2005-06-18T23:17:19Z,2020-02-15T06:59:50Z +4775,176,1,2922,4.99,2005-06-20T04:13:47Z,2020-02-15T06:59:50Z +4776,176,1,3643,4.99,2005-07-06T07:20:08Z,2020-02-15T06:59:50Z +4777,176,2,3931,6.99,2005-07-06T21:03:46Z,2020-02-15T06:59:50Z +4778,176,2,4121,3.99,2005-07-07T07:13:50Z,2020-02-15T06:59:50Z +4779,176,1,6035,2.99,2005-07-11T03:01:45Z,2020-02-15T06:59:50Z +4780,176,1,6354,6.99,2005-07-11T20:54:27Z,2020-02-15T06:59:50Z +4781,176,1,7017,4.99,2005-07-27T02:16:03Z,2020-02-15T06:59:50Z +4782,176,1,7025,2.99,2005-07-27T02:40:29Z,2020-02-15T06:59:50Z +4783,176,1,7210,2.99,2005-07-27T09:19:05Z,2020-02-15T06:59:50Z +4784,176,2,7521,2.99,2005-07-27T21:04:42Z,2020-02-15T06:59:50Z +4785,176,1,7751,5.99,2005-07-28T05:56:13Z,2020-02-15T06:59:50Z +4786,176,1,8279,2.99,2005-07-29T01:43:37Z,2020-02-15T06:59:50Z +4787,176,2,9145,6.99,2005-07-30T10:27:55Z,2020-02-15T06:59:50Z +4788,176,1,10277,2.99,2005-08-01T03:22:41Z,2020-02-15T06:59:50Z +4789,176,2,10441,0.99,2005-08-01T08:55:56Z,2020-02-15T06:59:50Z +4790,176,1,10862,2.99,2005-08-02T00:17:34Z,2020-02-15T06:59:50Z +4791,176,1,11678,5.99,2005-08-17T06:07:39Z,2020-02-15T06:59:50Z +4792,176,1,12299,2.99,2005-08-18T05:32:32Z,2020-02-15T06:59:50Z +4793,176,1,12718,2.99,2005-08-18T21:21:44Z,2020-02-15T06:59:50Z +4794,176,1,13170,7.99,2005-08-19T13:45:48Z,2020-02-15T06:59:50Z +4795,176,2,13186,5.99,2005-08-19T14:23:19Z,2020-02-15T06:59:50Z +4796,176,1,14083,7.99,2005-08-20T23:42:31Z,2020-02-15T06:59:50Z +4797,176,2,14232,1.99,2005-08-21T05:07:02Z,2020-02-15T06:59:50Z +4798,176,2,15311,4.99,2005-08-22T19:56:52Z,2020-02-15T06:59:50Z +4799,176,1,15933,4.99,2005-08-23T18:36:44Z,2020-02-15T06:59:50Z +4800,177,1,1393,2.99,2005-06-15T16:12:50Z,2020-02-15T06:59:50Z +4801,177,1,1524,2.99,2005-06-16T00:25:52Z,2020-02-15T06:59:50Z +4802,177,2,1621,4.99,2005-06-16T07:24:12Z,2020-02-15T06:59:50Z +4803,177,1,1738,0.99,2005-06-16T16:07:27Z,2020-02-15T06:59:50Z +4804,177,2,2467,2.99,2005-06-18T20:20:05Z,2020-02-15T06:59:50Z +4805,177,1,4760,0.99,2005-07-08T14:48:07Z,2020-02-15T06:59:50Z +4806,177,2,6217,9.99,2005-07-11T13:13:45Z,2020-02-15T06:59:50Z +4807,177,1,6284,2.99,2005-07-11T16:51:39Z,2020-02-15T06:59:50Z +4808,177,1,7493,3.99,2005-07-27T19:55:46Z,2020-02-15T06:59:50Z +4809,177,2,7674,1.99,2005-07-28T02:54:30Z,2020-02-15T06:59:50Z +4810,177,1,8139,0.99,2005-07-28T20:16:30Z,2020-02-15T06:59:50Z +4811,177,2,9190,1.99,2005-07-30T12:24:17Z,2020-02-15T06:59:50Z +4812,177,2,10321,4.99,2005-08-01T04:40:02Z,2020-02-15T06:59:50Z +4813,177,1,10661,2.99,2005-08-01T16:48:31Z,2020-02-15T06:59:50Z +4814,177,1,10710,0.99,2005-08-01T18:44:36Z,2020-02-15T06:59:50Z +4815,177,1,11195,0.99,2005-08-02T11:42:23Z,2020-02-15T06:59:50Z +4816,177,1,11376,5.99,2005-08-02T18:16:00Z,2020-02-15T06:59:50Z +4817,177,2,11662,6.99,2005-08-17T05:27:37Z,2020-02-15T06:59:50Z +4818,177,1,12623,4.99,2005-08-18T17:34:19Z,2020-02-15T06:59:50Z +4819,177,2,14093,0.99,2005-08-21T00:21:29Z,2020-02-15T06:59:50Z +4820,177,2,14310,0.99,2005-08-21T07:44:32Z,2020-02-15T06:59:50Z +4821,177,2,14849,2.99,2005-08-22T02:15:26Z,2020-02-15T06:59:50Z +4822,177,2,14883,0.99,2005-08-22T03:55:02Z,2020-02-15T06:59:50Z +4823,178,1,1292,6.99,2005-06-15T09:03:52Z,2020-02-15T06:59:50Z +4824,178,2,1458,6.99,2005-06-15T20:24:05Z,2020-02-15T06:59:50Z +4825,178,2,1568,2.99,2005-06-16T03:14:01Z,2020-02-15T06:59:50Z +4826,178,2,1745,3.99,2005-06-16T16:41:16Z,2020-02-15T06:59:50Z +4827,178,2,2124,1.99,2005-06-17T20:49:14Z,2020-02-15T06:59:50Z +4828,178,1,2293,4.99,2005-06-18T07:45:03Z,2020-02-15T06:59:50Z +4829,178,2,2844,6.99,2005-06-19T22:40:12Z,2020-02-15T06:59:50Z +4830,178,1,2898,9.99,2005-06-20T02:38:06Z,2020-02-15T06:59:50Z +4831,178,1,4915,2.99,2005-07-08T21:31:22Z,2020-02-15T06:59:50Z +4832,178,1,5015,2.99,2005-07-09T01:54:24Z,2020-02-15T06:59:50Z +4833,178,1,5057,4.99,2005-07-09T04:20:29Z,2020-02-15T06:59:50Z +4834,178,1,5094,10.99,2005-07-09T05:59:47Z,2020-02-15T06:59:50Z +4835,178,1,5984,2.99,2005-07-11T00:44:36Z,2020-02-15T06:59:50Z +4836,178,2,6347,4.99,2005-07-11T20:18:53Z,2020-02-15T06:59:50Z +4837,178,1,6554,5.99,2005-07-12T05:07:26Z,2020-02-15T06:59:50Z +4838,178,1,6566,6.99,2005-07-12T05:42:53Z,2020-02-15T06:59:50Z +4839,178,2,6606,2.99,2005-07-12T08:03:40Z,2020-02-15T06:59:50Z +4840,178,1,7959,4.99,2005-07-28T13:43:20Z,2020-02-15T06:59:50Z +4841,178,2,8069,0.99,2005-07-28T17:23:46Z,2020-02-15T06:59:50Z +4842,178,1,8287,3.99,2005-07-29T02:03:58Z,2020-02-15T06:59:50Z +4843,178,2,8388,5.99,2005-07-29T05:48:15Z,2020-02-15T06:59:50Z +4844,178,2,8696,4.99,2005-07-29T16:45:18Z,2020-02-15T06:59:50Z +4845,178,2,9004,4.99,2005-07-30T05:04:27Z,2020-02-15T06:59:50Z +4846,178,1,9311,7.99,2005-07-30T16:58:31Z,2020-02-15T06:59:50Z +4847,178,2,9879,4.99,2005-07-31T13:45:32Z,2020-02-15T06:59:50Z +4848,178,2,10125,0.99,2005-07-31T21:33:03Z,2020-02-15T06:59:50Z +4849,178,2,10562,0.99,2005-08-01T13:05:52Z,2020-02-15T06:59:50Z +4850,178,1,10802,5.99,2005-08-01T22:18:32Z,2020-02-15T06:59:50Z +4851,178,2,11319,6.99,2005-08-02T16:10:09Z,2020-02-15T06:59:50Z +4852,178,2,11884,6.99,2005-08-17T14:43:23Z,2020-02-15T06:59:50Z +4853,178,2,11927,3.99,2005-08-17T16:25:03Z,2020-02-15T06:59:50Z +4854,178,2,12049,6.99,2005-08-17T20:53:27Z,2020-02-15T06:59:50Z +4855,178,2,12727,2.99,2005-08-18T21:45:15Z,2020-02-15T06:59:50Z +4856,178,1,13127,2.99,2005-08-19T12:04:03Z,2020-02-15T06:59:50Z +4857,178,1,14104,4.99,2005-08-21T00:37:44Z,2020-02-15T06:59:50Z +4858,178,1,14257,7.99,2005-08-21T05:52:57Z,2020-02-15T06:59:50Z +4859,178,2,14314,2.99,2005-08-21T07:50:14Z,2020-02-15T06:59:50Z +4860,178,1,15323,4.99,2005-08-22T20:22:40Z,2020-02-15T06:59:50Z +4861,178,1,12897,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4862,179,1,502,0.99,2005-05-28T01:34:43Z,2020-02-15T06:59:50Z +4863,179,1,759,6.99,2005-05-29T10:57:57Z,2020-02-15T06:59:50Z +4864,179,1,1046,4.99,2005-05-31T06:42:30Z,2020-02-15T06:59:50Z +4865,179,2,1286,7.99,2005-06-15T08:41:13Z,2020-02-15T06:59:50Z +4866,179,1,2613,4.99,2005-06-19T07:25:50Z,2020-02-15T06:59:50Z +4867,179,1,3671,6.99,2005-07-06T09:01:29Z,2020-02-15T06:59:50Z +4868,179,1,3844,0.99,2005-07-06T16:37:58Z,2020-02-15T06:59:50Z +4869,179,1,4618,2.99,2005-07-08T08:00:20Z,2020-02-15T06:59:50Z +4870,179,2,6071,6.99,2005-07-11T04:50:03Z,2020-02-15T06:59:50Z +4871,179,1,6616,7.99,2005-07-12T08:37:30Z,2020-02-15T06:59:50Z +4872,179,1,6806,2.99,2005-07-12T17:31:43Z,2020-02-15T06:59:50Z +4873,179,1,7028,6.99,2005-07-27T02:54:25Z,2020-02-15T06:59:50Z +4874,179,1,7054,4.99,2005-07-27T03:43:28Z,2020-02-15T06:59:50Z +4875,179,1,7609,4.99,2005-07-28T00:11:00Z,2020-02-15T06:59:50Z +4876,179,1,8573,2.99,2005-07-29T11:51:25Z,2020-02-15T06:59:50Z +4877,179,1,8731,8.99,2005-07-29T18:23:57Z,2020-02-15T06:59:50Z +4878,179,2,9491,4.99,2005-07-30T23:45:23Z,2020-02-15T06:59:50Z +4879,179,2,9893,0.99,2005-07-31T14:07:21Z,2020-02-15T06:59:50Z +4880,179,1,10156,4.99,2005-07-31T22:36:00Z,2020-02-15T06:59:50Z +4881,179,1,10385,4.99,2005-08-01T06:39:55Z,2020-02-15T06:59:50Z +4882,179,2,10569,3.99,2005-08-01T13:18:23Z,2020-02-15T06:59:50Z +4883,179,1,11342,0.99,2005-08-02T17:11:35Z,2020-02-15T06:59:50Z +4884,179,2,13240,0.99,2005-08-19T16:22:14Z,2020-02-15T06:59:50Z +4885,179,1,13400,4.99,2005-08-19T22:11:44Z,2020-02-15T06:59:50Z +4886,179,2,13844,7.99,2005-08-20T14:30:26Z,2020-02-15T06:59:50Z +4887,179,2,13957,0.99,2005-08-20T18:09:04Z,2020-02-15T06:59:50Z +4888,179,2,14082,7.99,2005-08-20T23:42:00Z,2020-02-15T06:59:50Z +4889,179,1,14589,0.99,2005-08-21T17:28:55Z,2020-02-15T06:59:50Z +4890,179,1,15985,4.99,2005-08-23T20:20:23Z,2020-02-15T06:59:50Z +4891,180,1,1122,2.99,2005-05-31T16:39:33Z,2020-02-15T06:59:50Z +4892,180,2,2700,2.99,2005-06-19T13:31:52Z,2020-02-15T06:59:50Z +4893,180,1,2798,2.99,2005-06-19T19:07:48Z,2020-02-15T06:59:50Z +4894,180,2,4826,7.99,2005-07-08T17:44:25Z,2020-02-15T06:59:50Z +4895,180,1,4924,9.99,2005-07-08T21:55:25Z,2020-02-15T06:59:50Z +4896,180,2,5384,0.99,2005-07-09T19:17:46Z,2020-02-15T06:59:50Z +4897,180,2,5773,0.99,2005-07-10T13:31:09Z,2020-02-15T06:59:50Z +4898,180,1,5860,3.99,2005-07-10T18:08:49Z,2020-02-15T06:59:50Z +4899,180,1,7274,2.99,2005-07-27T11:35:34Z,2020-02-15T06:59:50Z +4900,180,2,8540,2.99,2005-07-29T10:52:51Z,2020-02-15T06:59:50Z +4901,180,2,8720,5.99,2005-07-29T17:48:32Z,2020-02-15T06:59:50Z +4902,180,1,9373,0.99,2005-07-30T19:05:36Z,2020-02-15T06:59:50Z +4903,180,2,9995,3.99,2005-07-31T17:30:47Z,2020-02-15T06:59:50Z +4904,180,1,10576,5.99,2005-08-01T13:46:02Z,2020-02-15T06:59:50Z +4905,180,1,10992,8.99,2005-08-02T04:41:17Z,2020-02-15T06:59:50Z +4906,180,1,12313,8.99,2005-08-18T06:07:31Z,2020-02-15T06:59:50Z +4907,180,1,13283,2.99,2005-08-19T18:10:19Z,2020-02-15T06:59:50Z +4908,180,2,13842,4.99,2005-08-20T14:29:37Z,2020-02-15T06:59:50Z +4909,180,1,13994,2.99,2005-08-20T19:33:21Z,2020-02-15T06:59:50Z +4910,180,1,14109,0.99,2005-08-21T00:52:58Z,2020-02-15T06:59:50Z +4911,180,1,14851,2.99,2005-08-22T02:20:44Z,2020-02-15T06:59:50Z +4912,180,1,15039,4.99,2005-08-22T09:37:54Z,2020-02-15T06:59:50Z +4913,180,1,12901,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4914,181,2,579,6.99,2005-05-28T11:19:23Z,2020-02-15T06:59:50Z +4915,181,1,1638,2.99,2005-06-16T08:32:36Z,2020-02-15T06:59:50Z +4916,181,1,2645,5.99,2005-06-19T09:50:35Z,2020-02-15T06:59:50Z +4917,181,2,3449,5.99,2005-06-21T21:01:27Z,2020-02-15T06:59:50Z +4918,181,2,3469,4.99,2005-06-21T22:48:59Z,2020-02-15T06:59:50Z +4919,181,1,3862,6.99,2005-07-06T17:35:22Z,2020-02-15T06:59:50Z +4920,181,2,4428,4.99,2005-07-07T22:29:40Z,2020-02-15T06:59:50Z +4921,181,2,6477,4.99,2005-07-12T01:38:42Z,2020-02-15T06:59:50Z +4922,181,1,6946,8.99,2005-07-26T23:40:07Z,2020-02-15T06:59:50Z +4923,181,1,7393,0.99,2005-07-27T16:02:52Z,2020-02-15T06:59:50Z +4924,181,1,7632,4.99,2005-07-28T01:02:40Z,2020-02-15T06:59:50Z +4925,181,1,8593,5.99,2005-07-29T12:38:14Z,2020-02-15T06:59:50Z +4926,181,1,8601,9.99,2005-07-29T13:03:31Z,2020-02-15T06:59:50Z +4927,181,2,9214,4.99,2005-07-30T13:10:14Z,2020-02-15T06:59:50Z +4928,181,2,9235,5.99,2005-07-30T13:47:17Z,2020-02-15T06:59:50Z +4929,181,1,9357,8.99,2005-07-30T18:37:00Z,2020-02-15T06:59:50Z +4930,181,1,9844,4.99,2005-07-31T12:26:31Z,2020-02-15T06:59:50Z +4931,181,2,10262,4.99,2005-08-01T03:01:26Z,2020-02-15T06:59:50Z +4932,181,2,10362,6.99,2005-08-01T05:55:13Z,2020-02-15T06:59:50Z +4933,181,2,10703,2.99,2005-08-01T18:37:39Z,2020-02-15T06:59:50Z +4934,181,1,10748,4.99,2005-08-01T20:01:24Z,2020-02-15T06:59:50Z +4935,181,1,10773,6.99,2005-08-01T20:53:45Z,2020-02-15T06:59:50Z +4936,181,2,11224,4.99,2005-08-02T12:40:38Z,2020-02-15T06:59:50Z +4937,181,1,12363,7.99,2005-08-18T07:52:49Z,2020-02-15T06:59:50Z +4938,181,1,12411,0.99,2005-08-18T09:47:57Z,2020-02-15T06:59:50Z +4939,181,1,12678,2.99,2005-08-18T19:41:27Z,2020-02-15T06:59:50Z +4940,181,2,12939,2.99,2005-08-19T05:38:25Z,2020-02-15T06:59:50Z +4941,181,2,13118,4.99,2005-08-19T11:39:58Z,2020-02-15T06:59:50Z +4942,181,2,13405,4.99,2005-08-19T22:20:49Z,2020-02-15T06:59:50Z +4943,181,2,13415,2.99,2005-08-19T22:48:09Z,2020-02-15T06:59:50Z +4944,181,2,14406,3.99,2005-08-21T10:46:35Z,2020-02-15T06:59:50Z +4945,181,2,15196,2.99,2005-08-22T16:11:32Z,2020-02-15T06:59:50Z +4946,181,2,15482,4.99,2005-08-23T02:01:20Z,2020-02-15T06:59:50Z +4947,181,2,13008,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4948,182,2,161,0.99,2005-05-26T01:51:48Z,2020-02-15T06:59:50Z +4949,182,2,425,3.99,2005-05-27T15:51:30Z,2020-02-15T06:59:50Z +4950,182,2,1542,3.99,2005-06-16T01:20:05Z,2020-02-15T06:59:50Z +4951,182,1,2049,2.99,2005-06-17T14:58:36Z,2020-02-15T06:59:50Z +4952,182,2,2120,5.99,2005-06-17T20:36:50Z,2020-02-15T06:59:50Z +4953,182,1,2234,0.99,2005-06-18T04:01:28Z,2020-02-15T06:59:50Z +4954,182,1,3509,2.99,2005-07-06T00:24:57Z,2020-02-15T06:59:50Z +4955,182,1,3697,6.99,2005-07-06T10:07:22Z,2020-02-15T06:59:50Z +4956,182,1,4174,2.99,2005-07-07T09:59:49Z,2020-02-15T06:59:50Z +4957,182,1,4349,0.99,2005-07-07T19:02:37Z,2020-02-15T06:59:50Z +4958,182,2,4513,1.99,2005-07-08T02:39:59Z,2020-02-15T06:59:50Z +4959,182,2,4591,3.99,2005-07-08T06:29:43Z,2020-02-15T06:59:50Z +4960,182,2,4784,0.99,2005-07-08T16:09:56Z,2020-02-15T06:59:50Z +4961,182,1,5521,2.99,2005-07-10T01:31:22Z,2020-02-15T06:59:50Z +4962,182,2,7229,0.99,2005-07-27T10:00:54Z,2020-02-15T06:59:50Z +4963,182,2,7863,0.99,2005-07-28T10:05:46Z,2020-02-15T06:59:50Z +4964,182,2,7880,4.99,2005-07-28T10:30:37Z,2020-02-15T06:59:50Z +4965,182,2,8048,8.99,2005-07-28T16:50:26Z,2020-02-15T06:59:50Z +4966,182,1,11055,4.99,2005-08-02T06:36:05Z,2020-02-15T06:59:50Z +4967,182,2,11785,3.99,2005-08-17T10:54:46Z,2020-02-15T06:59:50Z +4968,182,1,12573,4.99,2005-08-18T15:32:57Z,2020-02-15T06:59:50Z +4969,182,1,12840,6.99,2005-08-19T01:54:11Z,2020-02-15T06:59:50Z +4970,182,1,13285,2.99,2005-08-19T18:18:44Z,2020-02-15T06:59:50Z +4971,182,1,14586,5.99,2005-08-21T17:19:09Z,2020-02-15T06:59:50Z +4972,182,1,14953,6.99,2005-08-22T06:23:54Z,2020-02-15T06:59:50Z +4973,182,1,15043,1.99,2005-08-22T09:49:32Z,2020-02-15T06:59:50Z +4974,183,1,382,0.99,2005-05-27T10:12:00Z,2020-02-15T06:59:50Z +4975,183,1,1279,0.99,2005-06-15T08:13:57Z,2020-02-15T06:59:50Z +4976,183,2,2188,1.99,2005-06-18T01:19:04Z,2020-02-15T06:59:50Z +4977,183,2,2471,5.99,2005-06-18T20:31:00Z,2020-02-15T06:59:50Z +4978,183,1,3381,5.99,2005-06-21T14:02:59Z,2020-02-15T06:59:50Z +4979,183,1,3869,2.99,2005-07-06T17:56:46Z,2020-02-15T06:59:50Z +4980,183,2,4134,0.99,2005-07-07T08:14:24Z,2020-02-15T06:59:50Z +4981,183,2,4157,2.99,2005-07-07T09:04:26Z,2020-02-15T06:59:50Z +4982,183,1,5069,1.99,2005-07-09T04:56:30Z,2020-02-15T06:59:50Z +4983,183,2,5756,0.99,2005-07-10T12:39:28Z,2020-02-15T06:59:50Z +4984,183,1,6472,4.99,2005-07-12T01:33:25Z,2020-02-15T06:59:50Z +4985,183,1,6569,4.99,2005-07-12T05:47:40Z,2020-02-15T06:59:50Z +4986,183,2,7359,0.99,2005-07-27T14:51:04Z,2020-02-15T06:59:50Z +4987,183,2,9672,5.99,2005-07-31T06:34:06Z,2020-02-15T06:59:50Z +4988,183,1,9818,4.99,2005-07-31T11:34:32Z,2020-02-15T06:59:50Z +4989,183,2,9931,2.99,2005-07-31T15:18:19Z,2020-02-15T06:59:50Z +4990,183,2,10620,5.99,2005-08-01T15:09:17Z,2020-02-15T06:59:50Z +4991,183,2,11386,2.99,2005-08-02T18:24:03Z,2020-02-15T06:59:50Z +4992,183,2,12451,0.99,2005-08-18T11:04:42Z,2020-02-15T06:59:50Z +4993,183,2,12764,3.99,2005-08-18T23:14:15Z,2020-02-15T06:59:50Z +4994,183,2,12831,3.99,2005-08-19T01:40:43Z,2020-02-15T06:59:50Z +4995,183,1,13482,2.99,2005-08-20T01:14:30Z,2020-02-15T06:59:50Z +4996,183,1,13536,4.99,2005-08-20T03:35:16Z,2020-02-15T06:59:50Z +4997,184,1,196,2.99,2005-05-26T06:55:58Z,2020-02-15T06:59:50Z +4998,184,2,534,4.99,2005-05-28T06:15:25Z,2020-02-15T06:59:50Z +4999,184,1,567,1.99,2005-05-28T09:56:20Z,2020-02-15T06:59:50Z +5000,184,2,1976,2.99,2005-06-17T09:38:08Z,2020-02-15T06:59:50Z +5001,184,1,2312,0.99,2005-06-18T08:55:46Z,2020-02-15T06:59:50Z +5002,184,1,4314,0.99,2005-07-07T17:38:31Z,2020-02-15T06:59:50Z +5003,184,2,4882,6.99,2005-07-08T19:42:03Z,2020-02-15T06:59:50Z +5004,184,1,5891,0.99,2005-07-10T20:01:17Z,2020-02-15T06:59:50Z +5005,184,2,6493,2.99,2005-07-12T02:40:41Z,2020-02-15T06:59:50Z +5006,184,2,6700,6.99,2005-07-12T12:47:22Z,2020-02-15T06:59:50Z +5007,184,2,7051,4.99,2005-07-27T03:34:37Z,2020-02-15T06:59:50Z +5008,184,2,7686,6.99,2005-07-28T03:19:23Z,2020-02-15T06:59:50Z +5009,184,1,8892,4.99,2005-07-30T00:47:03Z,2020-02-15T06:59:50Z +5010,184,1,9162,0.99,2005-07-30T11:21:56Z,2020-02-15T06:59:50Z +5011,184,2,12166,9.99,2005-08-18T00:57:06Z,2020-02-15T06:59:50Z +5012,184,2,12454,2.99,2005-08-18T11:19:02Z,2020-02-15T06:59:50Z +5013,184,1,12532,2.99,2005-08-18T13:57:58Z,2020-02-15T06:59:50Z +5014,184,1,13134,0.99,2005-08-19T12:14:14Z,2020-02-15T06:59:50Z +5015,184,1,13262,5.99,2005-08-19T17:20:15Z,2020-02-15T06:59:50Z +5016,184,1,13303,4.99,2005-08-19T18:55:21Z,2020-02-15T06:59:50Z +5017,184,2,14472,4.99,2005-08-21T13:13:57Z,2020-02-15T06:59:50Z +5018,184,1,14801,5.99,2005-08-22T00:46:54Z,2020-02-15T06:59:50Z +5019,184,2,15611,0.99,2005-08-23T06:56:18Z,2020-02-15T06:59:50Z +5020,185,2,20,2.99,2005-05-25T01:48:41Z,2020-02-15T06:59:50Z +5021,185,2,154,0.99,2005-05-26T00:55:56Z,2020-02-15T06:59:50Z +5022,185,1,646,0.99,2005-05-28T19:16:14Z,2020-02-15T06:59:50Z +5023,185,1,2459,4.99,2005-06-18T19:44:08Z,2020-02-15T06:59:50Z +5024,185,1,3314,4.99,2005-06-21T08:17:00Z,2020-02-15T06:59:50Z +5025,185,1,3325,4.99,2005-06-21T08:51:44Z,2020-02-15T06:59:50Z +5026,185,1,4186,9.99,2005-07-07T10:32:25Z,2020-02-15T06:59:50Z +5027,185,1,4524,2.99,2005-07-08T03:10:48Z,2020-02-15T06:59:50Z +5028,185,2,4822,7.99,2005-07-08T17:28:47Z,2020-02-15T06:59:50Z +5029,185,2,6106,2.99,2005-07-11T07:05:06Z,2020-02-15T06:59:50Z +5030,185,1,6418,1.99,2005-07-11T23:36:27Z,2020-02-15T06:59:50Z +5031,185,1,6965,2.99,2005-07-27T00:15:18Z,2020-02-15T06:59:50Z +5032,185,1,7066,4.99,2005-07-27T03:53:52Z,2020-02-15T06:59:50Z +5033,185,1,8200,2.99,2005-07-28T23:10:46Z,2020-02-15T06:59:50Z +5034,185,2,8442,0.99,2005-07-29T07:33:07Z,2020-02-15T06:59:50Z +5035,185,1,8684,8.99,2005-07-29T16:16:33Z,2020-02-15T06:59:50Z +5036,185,2,9246,0.99,2005-07-30T14:12:31Z,2020-02-15T06:59:50Z +5037,185,2,9473,2.99,2005-07-30T23:04:13Z,2020-02-15T06:59:50Z +5038,185,2,11355,0.99,2005-08-02T17:37:43Z,2020-02-15T06:59:50Z +5039,185,1,12312,2.99,2005-08-18T06:07:26Z,2020-02-15T06:59:50Z +5040,185,1,12674,5.99,2005-08-18T19:24:56Z,2020-02-15T06:59:50Z +5041,185,1,12885,0.99,2005-08-19T03:37:25Z,2020-02-15T06:59:50Z +5042,185,2,14513,2.99,2005-08-21T14:51:35Z,2020-02-15T06:59:50Z +5043,186,1,581,1.99,2005-05-28T11:20:29Z,2020-02-15T06:59:50Z +5044,186,2,958,0.99,2005-05-30T17:58:03Z,2020-02-15T06:59:50Z +5045,186,1,1192,4.99,2005-06-15T01:18:39Z,2020-02-15T06:59:50Z +5046,186,1,1300,2.99,2005-06-15T09:36:19Z,2020-02-15T06:59:50Z +5047,186,1,1663,2.99,2005-06-16T10:14:15Z,2020-02-15T06:59:50Z +5048,186,2,2132,4.99,2005-06-17T21:05:06Z,2020-02-15T06:59:50Z +5049,186,2,2875,4.99,2005-06-20T00:47:18Z,2020-02-15T06:59:50Z +5050,186,1,3039,4.99,2005-06-20T12:32:30Z,2020-02-15T06:59:50Z +5051,186,2,6067,4.99,2005-07-11T04:34:49Z,2020-02-15T06:59:50Z +5052,186,2,7739,0.99,2005-07-28T05:21:51Z,2020-02-15T06:59:50Z +5053,186,1,7915,3.99,2005-07-28T11:49:46Z,2020-02-15T06:59:50Z +5054,186,1,8483,4.99,2005-07-29T08:50:18Z,2020-02-15T06:59:50Z +5055,186,2,8872,0.99,2005-07-30T00:13:54Z,2020-02-15T06:59:50Z +5056,186,2,9303,2.99,2005-07-30T16:35:59Z,2020-02-15T06:59:50Z +5057,186,2,9360,5.99,2005-07-30T18:39:43Z,2020-02-15T06:59:50Z +5058,186,1,10104,1.99,2005-07-31T20:49:14Z,2020-02-15T06:59:50Z +5059,186,1,10985,0.99,2005-08-02T04:30:19Z,2020-02-15T06:59:50Z +5060,186,1,11982,0.99,2005-08-17T18:13:07Z,2020-02-15T06:59:50Z +5061,186,1,12348,5.99,2005-08-18T07:21:47Z,2020-02-15T06:59:50Z +5062,186,1,12438,8.99,2005-08-18T10:42:52Z,2020-02-15T06:59:50Z +5063,186,1,13168,6.99,2005-08-19T13:37:28Z,2020-02-15T06:59:50Z +5064,186,2,13517,4.99,2005-08-20T02:33:17Z,2020-02-15T06:59:50Z +5065,186,1,13853,3.99,2005-08-20T14:47:02Z,2020-02-15T06:59:50Z +5066,186,1,14006,2.99,2005-08-20T20:21:36Z,2020-02-15T06:59:50Z +5067,186,2,14229,4.99,2005-08-21T04:57:15Z,2020-02-15T06:59:50Z +5068,186,2,14646,4.99,2005-08-21T19:14:48Z,2020-02-15T06:59:50Z +5069,186,2,14988,3.99,2005-08-22T07:46:05Z,2020-02-15T06:59:50Z +5070,186,2,15001,0.99,2005-08-22T08:00:49Z,2020-02-15T06:59:50Z +5071,186,2,15295,3.99,2005-08-22T19:36:21Z,2020-02-15T06:59:50Z +5072,186,1,15596,0.99,2005-08-23T06:19:51Z,2020-02-15T06:59:50Z +5073,186,1,14216,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5074,187,1,252,7.99,2005-05-26T14:39:53Z,2020-02-15T06:59:50Z +5075,187,2,1323,6.99,2005-06-15T10:55:17Z,2020-02-15T06:59:50Z +5076,187,2,1462,4.99,2005-06-15T20:37:40Z,2020-02-15T06:59:50Z +5077,187,2,1592,0.99,2005-06-16T05:14:37Z,2020-02-15T06:59:50Z +5078,187,2,2127,0.99,2005-06-17T20:54:48Z,2020-02-15T06:59:50Z +5079,187,2,2533,0.99,2005-06-19T01:34:26Z,2020-02-15T06:59:50Z +5080,187,1,2742,5.99,2005-06-19T16:05:47Z,2020-02-15T06:59:50Z +5081,187,1,3402,2.99,2005-06-21T15:54:37Z,2020-02-15T06:59:50Z +5082,187,2,3709,10.99,2005-07-06T10:26:56Z,2020-02-15T06:59:50Z +5083,187,1,4429,4.99,2005-07-07T22:32:47Z,2020-02-15T06:59:50Z +5084,187,2,5366,0.99,2005-07-09T18:28:37Z,2020-02-15T06:59:50Z +5085,187,1,5738,8.99,2005-07-10T11:50:51Z,2020-02-15T06:59:50Z +5086,187,2,5833,6.99,2005-07-10T16:39:24Z,2020-02-15T06:59:50Z +5087,187,1,6057,3.99,2005-07-11T04:03:40Z,2020-02-15T06:59:50Z +5088,187,2,6428,2.99,2005-07-12T00:01:51Z,2020-02-15T06:59:50Z +5089,187,2,7289,4.99,2005-07-27T12:26:51Z,2020-02-15T06:59:50Z +5090,187,2,7844,7.99,2005-07-28T09:16:19Z,2020-02-15T06:59:50Z +5091,187,2,7967,7.99,2005-07-28T13:56:51Z,2020-02-15T06:59:50Z +5092,187,1,9241,2.99,2005-07-30T13:58:41Z,2020-02-15T06:59:50Z +5093,187,1,11843,2.99,2005-08-17T13:14:50Z,2020-02-15T06:59:50Z +5094,187,2,12307,8.99,2005-08-18T05:48:23Z,2020-02-15T06:59:50Z +5095,187,2,12490,9.99,2005-08-18T12:48:45Z,2020-02-15T06:59:50Z +5096,187,1,12534,7.99,2005-08-18T14:04:41Z,2020-02-15T06:59:50Z +5097,187,2,13940,8.99,2005-08-20T17:28:57Z,2020-02-15T06:59:50Z +5098,187,2,14855,8.99,2005-08-22T02:27:32Z,2020-02-15T06:59:50Z +5099,187,2,15231,4.99,2005-08-22T17:32:57Z,2020-02-15T06:59:50Z +5100,187,2,15517,2.99,2005-08-23T03:13:01Z,2020-02-15T06:59:50Z +5101,187,2,15971,7.99,2005-08-23T19:59:33Z,2020-02-15T06:59:50Z +5102,188,2,1527,2.99,2005-06-16T00:31:40Z,2020-02-15T06:59:50Z +5103,188,2,1927,0.99,2005-06-17T06:48:19Z,2020-02-15T06:59:50Z +5104,188,1,2515,4.99,2005-06-18T23:57:31Z,2020-02-15T06:59:50Z +5105,188,2,2733,4.99,2005-06-19T15:21:53Z,2020-02-15T06:59:50Z +5106,188,2,3848,3.99,2005-07-06T16:47:32Z,2020-02-15T06:59:50Z +5107,188,2,4150,2.99,2005-07-07T08:43:22Z,2020-02-15T06:59:50Z +5108,188,2,5356,2.99,2005-07-09T18:08:28Z,2020-02-15T06:59:50Z +5109,188,2,5729,5.99,2005-07-10T11:27:25Z,2020-02-15T06:59:50Z +5110,188,2,6555,4.99,2005-07-12T05:08:16Z,2020-02-15T06:59:50Z +5111,188,2,7042,0.99,2005-07-27T03:20:18Z,2020-02-15T06:59:50Z +5112,188,1,7556,4.99,2005-07-27T22:17:17Z,2020-02-15T06:59:50Z +5113,188,2,9613,4.99,2005-07-31T03:58:53Z,2020-02-15T06:59:50Z +5114,188,2,10453,5.99,2005-08-01T09:13:27Z,2020-02-15T06:59:50Z +5115,188,1,10494,0.99,2005-08-01T10:45:21Z,2020-02-15T06:59:50Z +5116,188,2,10719,4.99,2005-08-01T19:00:28Z,2020-02-15T06:59:50Z +5117,188,2,10757,4.99,2005-08-01T20:22:44Z,2020-02-15T06:59:50Z +5118,188,2,11378,2.99,2005-08-02T18:16:52Z,2020-02-15T06:59:50Z +5119,188,1,13570,2.99,2005-08-20T05:04:57Z,2020-02-15T06:59:50Z +5120,188,1,13787,5.99,2005-08-20T12:15:23Z,2020-02-15T06:59:50Z +5121,188,1,14399,2.99,2005-08-21T10:33:23Z,2020-02-15T06:59:50Z +5122,188,2,14809,2.99,2005-08-22T01:00:42Z,2020-02-15T06:59:50Z +5123,188,2,15319,2.99,2005-08-22T20:17:17Z,2020-02-15T06:59:50Z +5124,188,2,15409,0.99,2005-08-22T23:26:32Z,2020-02-15T06:59:50Z +5125,188,2,15474,4.99,2005-08-23T01:39:10Z,2020-02-15T06:59:50Z +5126,188,1,14503,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5127,189,2,1117,5.99,2005-05-31T16:15:31Z,2020-02-15T06:59:50Z +5128,189,1,1541,0.99,2005-06-16T01:15:59Z,2020-02-15T06:59:50Z +5129,189,1,1834,0.99,2005-06-16T22:49:08Z,2020-02-15T06:59:50Z +5130,189,2,2905,1.99,2005-06-20T02:56:16Z,2020-02-15T06:59:50Z +5131,189,1,3108,6.99,2005-06-20T17:28:43Z,2020-02-15T06:59:50Z +5132,189,1,3346,2.99,2005-06-21T11:06:53Z,2020-02-15T06:59:50Z +5133,189,1,3763,0.99,2005-07-06T12:56:31Z,2020-02-15T06:59:50Z +5134,189,2,3813,4.99,2005-07-06T15:23:34Z,2020-02-15T06:59:50Z +5135,189,2,4203,0.99,2005-07-07T11:24:14Z,2020-02-15T06:59:50Z +5136,189,1,6193,5.99,2005-07-11T11:46:57Z,2020-02-15T06:59:50Z +5137,189,1,7469,4.99,2005-07-27T18:57:40Z,2020-02-15T06:59:50Z +5138,189,1,7675,4.99,2005-07-28T02:55:20Z,2020-02-15T06:59:50Z +5139,189,2,7790,2.99,2005-07-28T07:22:35Z,2020-02-15T06:59:50Z +5140,189,2,9171,5.99,2005-07-30T11:36:24Z,2020-02-15T06:59:50Z +5141,189,2,9386,0.99,2005-07-30T19:26:21Z,2020-02-15T06:59:50Z +5142,189,1,9506,4.99,2005-07-31T00:19:01Z,2020-02-15T06:59:50Z +5143,189,1,10247,9.99,2005-08-01T02:34:06Z,2020-02-15T06:59:50Z +5144,189,2,11059,6.99,2005-08-02T06:41:38Z,2020-02-15T06:59:50Z +5145,189,2,13601,6.99,2005-08-20T06:01:15Z,2020-02-15T06:59:50Z +5146,189,1,13766,3.99,2005-08-20T11:42:01Z,2020-02-15T06:59:50Z +5147,189,1,15773,1.99,2005-08-23T13:24:57Z,2020-02-15T06:59:50Z +5148,189,1,16008,5.99,2005-08-23T21:04:51Z,2020-02-15T06:59:50Z +5149,190,2,430,4.99,2005-05-27T16:22:10Z,2020-02-15T06:59:50Z +5150,190,1,693,2.99,2005-05-29T01:42:31Z,2020-02-15T06:59:50Z +5151,190,1,1319,2.99,2005-06-15T10:39:05Z,2020-02-15T06:59:50Z +5152,190,1,1347,2.99,2005-06-15T12:43:43Z,2020-02-15T06:59:50Z +5153,190,1,2057,4.99,2005-06-17T15:31:58Z,2020-02-15T06:59:50Z +5154,190,1,2568,3.99,2005-06-19T04:09:03Z,2020-02-15T06:59:50Z +5155,190,1,3386,4.99,2005-06-21T14:21:06Z,2020-02-15T06:59:50Z +5156,190,2,4005,5.99,2005-07-07T00:22:26Z,2020-02-15T06:59:50Z +5157,190,1,4140,2.99,2005-07-07T08:19:10Z,2020-02-15T06:59:50Z +5158,190,2,6867,3.99,2005-07-12T20:06:47Z,2020-02-15T06:59:50Z +5159,190,1,7175,4.99,2005-07-27T08:03:22Z,2020-02-15T06:59:50Z +5160,190,1,7386,5.99,2005-07-27T15:52:10Z,2020-02-15T06:59:50Z +5161,190,2,7404,2.99,2005-07-27T16:24:43Z,2020-02-15T06:59:50Z +5162,190,1,8498,0.99,2005-07-29T09:07:38Z,2020-02-15T06:59:50Z +5163,190,1,11082,5.99,2005-08-02T07:30:19Z,2020-02-15T06:59:50Z +5164,190,2,11158,6.99,2005-08-02T09:58:28Z,2020-02-15T06:59:50Z +5165,190,2,11276,4.99,2005-08-02T14:28:46Z,2020-02-15T06:59:50Z +5166,190,2,11312,6.99,2005-08-02T15:56:51Z,2020-02-15T06:59:50Z +5167,190,2,11750,0.99,2005-08-17T09:07:00Z,2020-02-15T06:59:50Z +5168,190,2,11950,9.99,2005-08-17T17:13:16Z,2020-02-15T06:59:50Z +5169,190,1,12270,2.99,2005-08-18T04:32:05Z,2020-02-15T06:59:50Z +5170,190,2,12381,0.99,2005-08-18T08:31:43Z,2020-02-15T06:59:50Z +5171,190,2,14065,0.99,2005-08-20T22:40:47Z,2020-02-15T06:59:50Z +5172,190,2,14141,4.99,2005-08-21T02:07:22Z,2020-02-15T06:59:50Z +5173,190,2,14166,2.99,2005-08-21T02:59:31Z,2020-02-15T06:59:50Z +5174,190,2,14650,0.99,2005-08-21T19:24:51Z,2020-02-15T06:59:50Z +5175,190,2,15167,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5176,191,1,1134,2.99,2005-05-31T19:14:15Z,2020-02-15T06:59:50Z +5177,191,2,1152,4.99,2005-05-31T21:32:17Z,2020-02-15T06:59:50Z +5178,191,2,1173,2.99,2005-06-14T23:54:46Z,2020-02-15T06:59:50Z +5179,191,1,1278,0.99,2005-06-15T08:09:12Z,2020-02-15T06:59:50Z +5180,191,1,1677,2.99,2005-06-16T11:07:11Z,2020-02-15T06:59:50Z +5181,191,2,1870,2.99,2005-06-17T02:24:36Z,2020-02-15T06:59:50Z +5182,191,1,2051,4.99,2005-06-17T15:10:16Z,2020-02-15T06:59:50Z +5183,191,2,2555,2.99,2005-06-19T03:07:02Z,2020-02-15T06:59:50Z +5184,191,1,5338,2.99,2005-07-09T17:07:07Z,2020-02-15T06:59:50Z +5185,191,2,5397,5.99,2005-07-09T19:43:51Z,2020-02-15T06:59:50Z +5186,191,1,5924,5.99,2005-07-10T21:41:23Z,2020-02-15T06:59:50Z +5187,191,1,7150,6.99,2005-07-27T07:11:14Z,2020-02-15T06:59:50Z +5188,191,1,7450,3.99,2005-07-27T18:18:35Z,2020-02-15T06:59:50Z +5189,191,1,7520,2.99,2005-07-27T21:02:02Z,2020-02-15T06:59:50Z +5190,191,2,8583,0.99,2005-07-29T12:04:50Z,2020-02-15T06:59:50Z +5191,191,1,9297,4.99,2005-07-30T16:26:29Z,2020-02-15T06:59:50Z +5192,191,1,9964,4.99,2005-07-31T16:17:39Z,2020-02-15T06:59:50Z +5193,191,2,10532,2.99,2005-08-01T12:06:35Z,2020-02-15T06:59:50Z +5194,191,2,15375,4.99,2005-08-22T22:12:02Z,2020-02-15T06:59:50Z +5195,191,1,14361,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5196,192,1,895,1.99,2005-05-30T08:50:43Z,2020-02-15T06:59:50Z +5197,192,1,2760,3.99,2005-06-19T17:16:33Z,2020-02-15T06:59:50Z +5198,192,1,3902,2.99,2005-07-06T19:25:18Z,2020-02-15T06:59:50Z +5199,192,1,4469,4.99,2005-07-08T00:18:32Z,2020-02-15T06:59:50Z +5200,192,1,5400,2.99,2005-07-09T19:56:40Z,2020-02-15T06:59:50Z +5201,192,2,6223,0.99,2005-07-11T13:27:09Z,2020-02-15T06:59:50Z +5202,192,2,6691,0.99,2005-07-12T12:26:38Z,2020-02-15T06:59:50Z +5203,192,2,7147,2.99,2005-07-27T07:02:34Z,2020-02-15T06:59:50Z +5204,192,2,8051,0.99,2005-07-28T16:56:16Z,2020-02-15T06:59:50Z +5205,192,2,8292,7.99,2005-07-29T02:29:36Z,2020-02-15T06:59:50Z +5206,192,1,9462,7.99,2005-07-30T22:30:44Z,2020-02-15T06:59:50Z +5207,192,1,9831,2.99,2005-07-31T11:59:32Z,2020-02-15T06:59:50Z +5208,192,2,10238,0.99,2005-08-01T02:08:05Z,2020-02-15T06:59:50Z +5209,192,1,10843,7.99,2005-08-01T23:43:03Z,2020-02-15T06:59:50Z +5210,192,1,11385,4.99,2005-08-02T18:23:11Z,2020-02-15T06:59:50Z +5211,192,1,11815,4.99,2005-08-17T12:13:26Z,2020-02-15T06:59:50Z +5212,192,1,13125,5.99,2005-08-19T11:57:49Z,2020-02-15T06:59:50Z +5213,192,2,14146,4.99,2005-08-21T02:13:31Z,2020-02-15T06:59:50Z +5214,192,2,14238,7.99,2005-08-21T05:16:40Z,2020-02-15T06:59:50Z +5215,192,1,14404,4.99,2005-08-21T10:43:04Z,2020-02-15T06:59:50Z +5216,192,2,14692,6.99,2005-08-21T20:43:21Z,2020-02-15T06:59:50Z +5217,192,2,15855,2.99,2005-08-23T15:59:01Z,2020-02-15T06:59:50Z +5218,192,1,11611,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5219,193,2,273,2.99,2005-05-26T16:29:36Z,2020-02-15T06:59:50Z +5220,193,2,464,0.99,2005-05-27T20:42:44Z,2020-02-15T06:59:50Z +5221,193,1,1325,4.99,2005-06-15T11:03:24Z,2020-02-15T06:59:50Z +5222,193,2,2377,6.99,2005-06-18T14:56:23Z,2020-02-15T06:59:50Z +5223,193,2,2841,6.99,2005-06-19T22:21:06Z,2020-02-15T06:59:50Z +5224,193,2,2846,4.99,2005-06-19T22:52:14Z,2020-02-15T06:59:50Z +5225,193,2,2880,2.99,2005-06-20T01:24:54Z,2020-02-15T06:59:50Z +5226,193,1,3297,8.99,2005-06-21T07:08:19Z,2020-02-15T06:59:50Z +5227,193,1,4892,6.99,2005-07-08T20:06:25Z,2020-02-15T06:59:50Z +5228,193,1,8211,2.99,2005-07-28T23:34:22Z,2020-02-15T06:59:50Z +5229,193,1,8379,4.99,2005-07-29T05:29:40Z,2020-02-15T06:59:50Z +5230,193,1,8431,4.99,2005-07-29T07:12:48Z,2020-02-15T06:59:50Z +5231,193,1,9079,2.99,2005-07-30T08:02:00Z,2020-02-15T06:59:50Z +5232,193,1,9575,4.99,2005-07-31T02:51:53Z,2020-02-15T06:59:50Z +5233,193,2,10462,2.99,2005-08-01T09:38:28Z,2020-02-15T06:59:50Z +5234,193,2,12384,0.99,2005-08-18T08:36:58Z,2020-02-15T06:59:50Z +5235,193,2,12658,4.99,2005-08-18T19:05:42Z,2020-02-15T06:59:50Z +5236,193,1,13529,2.99,2005-08-20T03:07:47Z,2020-02-15T06:59:50Z +5237,193,1,13608,0.99,2005-08-20T06:10:44Z,2020-02-15T06:59:50Z +5238,193,1,14679,2.99,2005-08-21T20:14:58Z,2020-02-15T06:59:50Z +5239,193,1,14927,4.99,2005-08-22T05:31:53Z,2020-02-15T06:59:50Z +5240,193,2,15164,4.99,2005-08-22T14:47:53Z,2020-02-15T06:59:50Z +5241,193,2,15344,6.99,2005-08-22T21:01:48Z,2020-02-15T06:59:50Z +5242,193,2,15495,5.99,2005-08-23T02:26:10Z,2020-02-15T06:59:50Z +5243,193,2,15729,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5244,194,2,334,4.99,2005-05-27T03:03:07Z,2020-02-15T06:59:50Z +5245,194,2,677,7.99,2005-05-28T23:00:08Z,2020-02-15T06:59:50Z +5246,194,1,1430,0.99,2005-06-15T18:24:55Z,2020-02-15T06:59:50Z +5247,194,1,2245,7.99,2005-06-18T04:52:59Z,2020-02-15T06:59:50Z +5248,194,1,2347,2.99,2005-06-18T12:12:29Z,2020-02-15T06:59:50Z +5249,194,1,2463,3.99,2005-06-18T20:01:43Z,2020-02-15T06:59:50Z +5250,194,1,2807,3.99,2005-06-19T19:32:53Z,2020-02-15T06:59:50Z +5251,194,2,4231,7.99,2005-07-07T12:48:19Z,2020-02-15T06:59:50Z +5252,194,2,5146,2.99,2005-07-09T08:14:58Z,2020-02-15T06:59:50Z +5253,194,1,5291,2.99,2005-07-09T15:15:02Z,2020-02-15T06:59:50Z +5254,194,2,5894,3.99,2005-07-10T20:09:34Z,2020-02-15T06:59:50Z +5255,194,1,9064,7.99,2005-07-30T07:24:55Z,2020-02-15T06:59:50Z +5256,194,2,11475,5.99,2005-08-02T21:55:09Z,2020-02-15T06:59:50Z +5257,194,2,12851,3.99,2005-08-19T02:12:12Z,2020-02-15T06:59:50Z +5258,194,1,13515,0.99,2005-08-20T02:29:47Z,2020-02-15T06:59:50Z +5259,194,2,13616,7.99,2005-08-20T06:30:33Z,2020-02-15T06:59:50Z +5260,194,1,14440,4.99,2005-08-21T11:59:04Z,2020-02-15T06:59:50Z +5261,194,2,15937,4.99,2005-08-23T18:43:22Z,2020-02-15T06:59:50Z +5262,195,1,4234,6.99,2005-07-07T13:01:35Z,2020-02-15T06:59:50Z +5263,195,1,4315,2.99,2005-07-07T17:40:26Z,2020-02-15T06:59:50Z +5264,195,1,5228,4.99,2005-07-09T12:26:01Z,2020-02-15T06:59:50Z +5265,195,1,5536,0.99,2005-07-10T02:29:42Z,2020-02-15T06:59:50Z +5266,195,2,6175,4.99,2005-07-11T10:44:37Z,2020-02-15T06:59:50Z +5267,195,1,7349,2.99,2005-07-27T14:33:00Z,2020-02-15T06:59:50Z +5268,195,2,8280,4.99,2005-07-29T01:45:51Z,2020-02-15T06:59:50Z +5269,195,2,8479,0.99,2005-07-29T08:42:04Z,2020-02-15T06:59:50Z +5270,195,2,9188,6.99,2005-07-30T12:19:54Z,2020-02-15T06:59:50Z +5271,195,1,9870,5.99,2005-07-31T13:22:51Z,2020-02-15T06:59:50Z +5272,195,1,9994,4.99,2005-07-31T17:30:31Z,2020-02-15T06:59:50Z +5273,195,2,10911,4.99,2005-08-02T01:58:36Z,2020-02-15T06:59:50Z +5274,195,1,11201,7.99,2005-08-02T11:49:16Z,2020-02-15T06:59:50Z +5275,195,2,11787,2.99,2005-08-17T10:59:00Z,2020-02-15T06:59:50Z +5276,195,2,12099,0.99,2005-08-17T22:38:54Z,2020-02-15T06:59:50Z +5277,195,2,12941,0.99,2005-08-19T05:39:26Z,2020-02-15T06:59:50Z +5278,195,2,13741,0.99,2005-08-20T10:48:47Z,2020-02-15T06:59:50Z +5279,195,2,14751,7.99,2005-08-21T23:11:23Z,2020-02-15T06:59:50Z +5280,195,2,16040,11.99,2005-08-23T22:19:33Z,2020-02-15T06:59:50Z +5281,196,2,106,11.99,2005-05-25T18:18:19Z,2020-02-15T06:59:50Z +5282,196,2,178,5.99,2005-05-26T04:21:46Z,2020-02-15T06:59:50Z +5283,196,2,491,2.99,2005-05-28T00:13:35Z,2020-02-15T06:59:50Z +5284,196,1,1053,1.99,2005-05-31T07:12:44Z,2020-02-15T06:59:50Z +5285,196,1,1182,5.99,2005-06-15T00:45:21Z,2020-02-15T06:59:50Z +5286,196,1,1348,2.99,2005-06-15T12:45:30Z,2020-02-15T06:59:50Z +5287,196,2,1600,0.99,2005-06-16T06:04:12Z,2020-02-15T06:59:50Z +5288,196,1,2681,0.99,2005-06-19T12:15:27Z,2020-02-15T06:59:50Z +5289,196,2,2912,4.99,2005-06-20T03:32:45Z,2020-02-15T06:59:50Z +5290,196,1,3104,4.99,2005-06-20T17:06:46Z,2020-02-15T06:59:50Z +5291,196,2,3271,5.99,2005-06-21T05:16:10Z,2020-02-15T06:59:50Z +5292,196,2,3342,4.99,2005-06-21T10:46:36Z,2020-02-15T06:59:50Z +5293,196,1,4879,2.99,2005-07-08T19:34:55Z,2020-02-15T06:59:50Z +5294,196,2,4999,4.99,2005-07-09T01:12:57Z,2020-02-15T06:59:50Z +5295,196,2,5143,4.99,2005-07-09T08:07:07Z,2020-02-15T06:59:50Z +5296,196,2,5353,3.99,2005-07-09T18:04:29Z,2020-02-15T06:59:50Z +5297,196,2,5768,4.99,2005-07-10T13:15:26Z,2020-02-15T06:59:50Z +5298,196,2,6857,4.99,2005-07-12T19:53:30Z,2020-02-15T06:59:50Z +5299,196,2,7666,3.99,2005-07-28T02:35:12Z,2020-02-15T06:59:50Z +5300,196,2,8266,0.99,2005-07-29T01:20:16Z,2020-02-15T06:59:50Z +5301,196,2,8472,1.99,2005-07-29T08:36:22Z,2020-02-15T06:59:50Z +5302,196,2,8700,0.99,2005-07-29T16:56:01Z,2020-02-15T06:59:50Z +5303,196,1,9346,5.99,2005-07-30T18:13:52Z,2020-02-15T06:59:50Z +5304,196,1,9721,6.99,2005-07-31T08:28:46Z,2020-02-15T06:59:50Z +5305,196,1,9804,4.99,2005-07-31T11:07:39Z,2020-02-15T06:59:50Z +5306,196,2,10122,10.99,2005-07-31T21:29:28Z,2020-02-15T06:59:50Z +5307,196,1,10191,4.99,2005-08-01T00:28:38Z,2020-02-15T06:59:50Z +5308,196,1,11104,2.99,2005-08-02T08:09:58Z,2020-02-15T06:59:50Z +5309,196,2,12430,0.99,2005-08-18T10:32:41Z,2020-02-15T06:59:50Z +5310,196,2,12684,0.99,2005-08-18T19:51:27Z,2020-02-15T06:59:50Z +5311,196,2,12836,0.99,2005-08-19T01:48:33Z,2020-02-15T06:59:50Z +5312,196,1,13799,8.99,2005-08-20T12:36:42Z,2020-02-15T06:59:50Z +5313,196,2,14410,5.99,2005-08-21T10:54:49Z,2020-02-15T06:59:50Z +5314,196,1,14698,5.99,2005-08-21T20:49:58Z,2020-02-15T06:59:50Z +5315,196,2,15980,0.99,2005-08-23T20:10:13Z,2020-02-15T06:59:50Z +5316,197,2,94,2.99,2005-05-25T16:03:42Z,2020-02-15T06:59:50Z +5317,197,1,215,0.99,2005-05-26T09:02:47Z,2020-02-15T06:59:50Z +5318,197,1,391,2.99,2005-05-27T11:03:55Z,2020-02-15T06:59:50Z +5319,197,2,649,1.99,2005-05-28T19:35:45Z,2020-02-15T06:59:50Z +5320,197,1,683,2.99,2005-05-29T00:09:48Z,2020-02-15T06:59:50Z +5321,197,2,730,3.99,2005-05-29T07:00:59Z,2020-02-15T06:59:50Z +5322,197,1,903,3.99,2005-05-30T10:11:29Z,2020-02-15T06:59:50Z +5323,197,1,918,0.99,2005-05-30T11:32:24Z,2020-02-15T06:59:50Z +5324,197,2,1175,2.99,2005-06-15T00:15:15Z,2020-02-15T06:59:50Z +5325,197,1,1363,0.99,2005-06-15T14:05:11Z,2020-02-15T06:59:50Z +5326,197,1,1503,2.99,2005-06-15T22:07:09Z,2020-02-15T06:59:50Z +5327,197,2,1605,8.99,2005-06-16T06:17:55Z,2020-02-15T06:59:50Z +5328,197,2,1919,4.99,2005-06-17T05:40:52Z,2020-02-15T06:59:50Z +5329,197,1,2090,2.99,2005-06-17T18:06:14Z,2020-02-15T06:59:50Z +5330,197,1,2750,4.99,2005-06-19T16:37:24Z,2020-02-15T06:59:50Z +5331,197,2,2781,2.99,2005-06-19T18:24:42Z,2020-02-15T06:59:50Z +5332,197,1,4486,8.99,2005-07-08T01:09:09Z,2020-02-15T06:59:50Z +5333,197,2,4739,4.99,2005-07-08T13:25:57Z,2020-02-15T06:59:50Z +5334,197,2,5182,6.99,2005-07-09T10:08:10Z,2020-02-15T06:59:50Z +5335,197,2,5344,0.99,2005-07-09T17:27:05Z,2020-02-15T06:59:50Z +5336,197,1,8165,2.99,2005-07-28T21:23:06Z,2020-02-15T06:59:50Z +5337,197,2,9378,4.99,2005-07-30T19:12:54Z,2020-02-15T06:59:50Z +5338,197,1,9476,0.99,2005-07-30T23:06:40Z,2020-02-15T06:59:50Z +5339,197,2,9585,4.99,2005-07-31T03:05:55Z,2020-02-15T06:59:50Z +5340,197,2,10460,3.99,2005-08-01T09:31:00Z,2020-02-15T06:59:50Z +5341,197,2,10666,0.99,2005-08-01T16:56:36Z,2020-02-15T06:59:50Z +5342,197,2,10739,4.99,2005-08-01T19:46:11Z,2020-02-15T06:59:50Z +5343,197,1,10743,2.99,2005-08-01T19:55:09Z,2020-02-15T06:59:50Z +5344,197,1,11018,4.99,2005-08-02T05:27:53Z,2020-02-15T06:59:50Z +5345,197,1,11215,4.99,2005-08-02T12:20:42Z,2020-02-15T06:59:50Z +5346,197,1,11311,4.99,2005-08-02T15:53:48Z,2020-02-15T06:59:50Z +5347,197,1,11478,2.99,2005-08-02T22:09:05Z,2020-02-15T06:59:50Z +5348,197,1,11643,1.99,2005-08-17T04:49:35Z,2020-02-15T06:59:50Z +5349,197,1,12799,0.99,2005-08-19T00:27:01Z,2020-02-15T06:59:50Z +5350,197,2,13913,3.99,2005-08-20T16:37:35Z,2020-02-15T06:59:50Z +5351,197,1,14069,9.99,2005-08-20T22:51:25Z,2020-02-15T06:59:50Z +5352,197,2,14951,4.99,2005-08-22T06:19:37Z,2020-02-15T06:59:50Z +5353,197,1,15078,2.99,2005-08-22T11:09:31Z,2020-02-15T06:59:50Z +5354,197,2,15233,0.99,2005-08-22T17:41:53Z,2020-02-15T06:59:50Z +5355,197,1,15540,8.99,2005-08-23T04:12:52Z,2020-02-15T06:59:50Z +5356,198,1,357,0.99,2005-05-27T06:37:15Z,2020-02-15T06:59:50Z +5357,198,1,582,4.99,2005-05-28T11:33:46Z,2020-02-15T06:59:50Z +5358,198,2,639,2.99,2005-05-28T18:25:02Z,2020-02-15T06:59:50Z +5359,198,1,932,2.99,2005-05-30T12:55:36Z,2020-02-15T06:59:50Z +5360,198,2,1132,4.99,2005-05-31T18:44:53Z,2020-02-15T06:59:50Z +5361,198,2,2185,0.99,2005-06-18T01:12:22Z,2020-02-15T06:59:50Z +5362,198,2,3770,2.99,2005-07-06T13:14:28Z,2020-02-15T06:59:50Z +5363,198,2,4588,2.99,2005-07-08T06:18:01Z,2020-02-15T06:59:50Z +5364,198,2,4750,0.99,2005-07-08T14:07:03Z,2020-02-15T06:59:50Z +5365,198,2,5794,4.99,2005-07-10T14:34:53Z,2020-02-15T06:59:50Z +5366,198,2,6567,4.99,2005-07-12T05:43:09Z,2020-02-15T06:59:50Z +5367,198,1,6819,4.99,2005-07-12T18:21:01Z,2020-02-15T06:59:50Z +5368,198,2,6889,4.99,2005-07-12T21:01:22Z,2020-02-15T06:59:50Z +5369,198,1,7287,0.99,2005-07-27T12:24:12Z,2020-02-15T06:59:50Z +5370,198,1,7441,5.99,2005-07-27T17:46:53Z,2020-02-15T06:59:50Z +5371,198,1,7583,2.99,2005-07-27T23:15:22Z,2020-02-15T06:59:50Z +5372,198,2,7622,0.99,2005-07-28T00:37:34Z,2020-02-15T06:59:50Z +5373,198,1,8145,5.99,2005-07-28T20:34:41Z,2020-02-15T06:59:50Z +5374,198,2,9389,0.99,2005-07-30T19:27:59Z,2020-02-15T06:59:50Z +5375,198,1,10112,4.99,2005-07-31T21:08:56Z,2020-02-15T06:59:50Z +5376,198,1,10147,2.99,2005-07-31T22:18:43Z,2020-02-15T06:59:50Z +5377,198,1,10679,0.99,2005-08-01T17:27:58Z,2020-02-15T06:59:50Z +5378,198,1,11351,3.99,2005-08-02T17:28:07Z,2020-02-15T06:59:50Z +5379,198,1,11594,6.99,2005-08-17T02:47:02Z,2020-02-15T06:59:50Z +5380,198,1,11756,2.99,2005-08-17T09:29:22Z,2020-02-15T06:59:50Z +5381,198,1,11836,4.99,2005-08-17T13:03:36Z,2020-02-15T06:59:50Z +5382,198,2,11949,2.99,2005-08-17T17:12:26Z,2020-02-15T06:59:50Z +5383,198,1,11957,1.99,2005-08-17T17:22:29Z,2020-02-15T06:59:50Z +5384,198,2,11985,2.99,2005-08-17T18:19:44Z,2020-02-15T06:59:50Z +5385,198,2,12594,4.99,2005-08-18T16:24:24Z,2020-02-15T06:59:50Z +5386,198,1,12862,5.99,2005-08-19T02:31:59Z,2020-02-15T06:59:50Z +5387,198,1,13768,5.99,2005-08-20T11:43:43Z,2020-02-15T06:59:50Z +5388,198,1,14214,5.99,2005-08-21T04:30:49Z,2020-02-15T06:59:50Z +5389,198,2,14380,2.99,2005-08-21T09:53:52Z,2020-02-15T06:59:50Z +5390,198,2,14990,4.99,2005-08-22T07:48:01Z,2020-02-15T06:59:50Z +5391,198,1,15256,6.99,2005-08-22T18:20:07Z,2020-02-15T06:59:50Z +5392,198,1,15433,4.99,2005-08-23T00:27:18Z,2020-02-15T06:59:50Z +5393,199,1,499,7.99,2005-05-28T01:05:07Z,2020-02-15T06:59:50Z +5394,199,1,1406,4.99,2005-06-15T16:44:00Z,2020-02-15T06:59:50Z +5395,199,1,1910,2.99,2005-06-17T05:11:27Z,2020-02-15T06:59:50Z +5396,199,1,3299,0.99,2005-06-21T07:23:34Z,2020-02-15T06:59:50Z +5397,199,1,4499,2.99,2005-07-08T02:08:48Z,2020-02-15T06:59:50Z +5398,199,2,4580,8.99,2005-07-08T06:04:23Z,2020-02-15T06:59:50Z +5399,199,1,4976,4.99,2005-07-09T00:03:30Z,2020-02-15T06:59:50Z +5400,199,2,5398,2.99,2005-07-09T19:44:58Z,2020-02-15T06:59:50Z +5401,199,2,5680,5.99,2005-07-10T08:47:36Z,2020-02-15T06:59:50Z +5402,199,2,6668,2.99,2005-07-12T11:37:45Z,2020-02-15T06:59:50Z +5403,199,2,6782,4.99,2005-07-12T16:23:25Z,2020-02-15T06:59:50Z +5404,199,1,7782,4.99,2005-07-28T07:13:40Z,2020-02-15T06:59:50Z +5405,199,1,8709,0.99,2005-07-29T17:25:54Z,2020-02-15T06:59:50Z +5406,199,1,9752,2.99,2005-07-31T09:22:02Z,2020-02-15T06:59:50Z +5407,199,2,9894,4.99,2005-07-31T14:07:44Z,2020-02-15T06:59:50Z +5408,199,1,9959,4.99,2005-07-31T16:04:22Z,2020-02-15T06:59:50Z +5409,199,1,10196,2.99,2005-08-01T00:34:51Z,2020-02-15T06:59:50Z +5410,199,2,10517,4.99,2005-08-01T11:41:57Z,2020-02-15T06:59:50Z +5411,199,1,10850,8.99,2005-08-01T23:53:45Z,2020-02-15T06:59:50Z +5412,199,1,11454,2.99,2005-08-02T21:04:39Z,2020-02-15T06:59:50Z +5413,199,1,12386,0.99,2005-08-18T08:45:57Z,2020-02-15T06:59:50Z +5414,199,2,14320,4.99,2005-08-21T08:04:40Z,2020-02-15T06:59:50Z +5415,199,2,15412,0.99,2005-08-22T23:37:11Z,2020-02-15T06:59:50Z +5416,199,2,15751,3.99,2005-08-23T12:41:07Z,2020-02-15T06:59:50Z +5417,199,2,13952,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5418,200,2,270,9.99,2005-05-26T16:20:56Z,2020-02-15T06:59:50Z +5419,200,2,1296,1.99,2005-06-15T09:23:59Z,2020-02-15T06:59:50Z +5420,200,2,1309,4.99,2005-06-15T10:10:49Z,2020-02-15T06:59:50Z +5421,200,2,1899,6.99,2005-06-17T04:29:15Z,2020-02-15T06:59:50Z +5422,200,1,2227,4.99,2005-06-18T03:43:23Z,2020-02-15T06:59:50Z +5423,200,2,2667,3.99,2005-06-19T11:28:46Z,2020-02-15T06:59:50Z +5424,200,2,2717,4.99,2005-06-19T14:46:10Z,2020-02-15T06:59:50Z +5425,200,1,3190,3.99,2005-06-20T23:27:15Z,2020-02-15T06:59:50Z +5426,200,1,3580,4.99,2005-07-06T03:48:44Z,2020-02-15T06:59:50Z +5427,200,1,5110,2.99,2005-07-09T06:57:25Z,2020-02-15T06:59:50Z +5428,200,1,6123,0.99,2005-07-11T08:02:27Z,2020-02-15T06:59:50Z +5429,200,2,6167,2.99,2005-07-11T10:21:21Z,2020-02-15T06:59:50Z +5430,200,1,6181,4.99,2005-07-11T11:10:11Z,2020-02-15T06:59:50Z +5431,200,1,6947,3.99,2005-07-26T23:42:03Z,2020-02-15T06:59:50Z +5432,200,1,7574,2.99,2005-07-27T22:53:00Z,2020-02-15T06:59:50Z +5433,200,2,8368,3.99,2005-07-29T05:15:41Z,2020-02-15T06:59:50Z +5434,200,2,8462,2.99,2005-07-29T08:15:42Z,2020-02-15T06:59:50Z +5435,200,1,9527,6.99,2005-07-31T01:02:24Z,2020-02-15T06:59:50Z +5436,200,1,10685,2.99,2005-08-01T17:49:38Z,2020-02-15T06:59:50Z +5437,200,1,11356,8.99,2005-08-02T17:42:40Z,2020-02-15T06:59:50Z +5438,200,1,13737,5.99,2005-08-20T10:41:50Z,2020-02-15T06:59:50Z +5439,200,1,14034,10.99,2005-08-20T21:31:52Z,2020-02-15T06:59:50Z +5440,200,2,14521,6.99,2005-08-21T15:01:32Z,2020-02-15T06:59:50Z +5441,200,2,15691,4.99,2005-08-23T09:53:54Z,2020-02-15T06:59:50Z +5442,200,2,15742,5.99,2005-08-23T12:11:37Z,2020-02-15T06:59:50Z +5443,200,1,15961,6.99,2005-08-23T19:35:42Z,2020-02-15T06:59:50Z +5444,200,2,11866,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5445,201,1,311,3.99,2005-05-26T22:51:37Z,2020-02-15T06:59:50Z +5446,201,1,670,6.99,2005-05-28T22:04:03Z,2020-02-15T06:59:50Z +5447,201,2,756,5.99,2005-05-29T10:28:45Z,2020-02-15T06:59:50Z +5448,201,1,2047,1.99,2005-06-17T14:40:58Z,2020-02-15T06:59:50Z +5449,201,1,2157,3.99,2005-06-17T23:30:52Z,2020-02-15T06:59:50Z +5450,201,2,2359,6.99,2005-06-18T13:04:42Z,2020-02-15T06:59:50Z +5451,201,1,3106,4.99,2005-06-20T17:18:06Z,2020-02-15T06:59:50Z +5452,201,1,3364,7.99,2005-06-21T12:37:46Z,2020-02-15T06:59:50Z +5453,201,2,3528,4.99,2005-07-06T01:13:27Z,2020-02-15T06:59:50Z +5454,201,2,3708,6.99,2005-07-06T10:23:27Z,2020-02-15T06:59:50Z +5455,201,1,7106,0.99,2005-07-27T05:21:24Z,2020-02-15T06:59:50Z +5456,201,2,7606,2.99,2005-07-28T00:02:15Z,2020-02-15T06:59:50Z +5457,201,2,9355,0.99,2005-07-30T18:35:25Z,2020-02-15T06:59:50Z +5458,201,2,10750,5.99,2005-08-01T20:06:00Z,2020-02-15T06:59:50Z +5459,201,2,10865,3.99,2005-08-02T00:22:46Z,2020-02-15T06:59:50Z +5460,201,1,10891,0.99,2005-08-02T01:09:55Z,2020-02-15T06:59:50Z +5461,201,2,11807,0.99,2005-08-17T11:51:15Z,2020-02-15T06:59:50Z +5462,201,2,13076,4.99,2005-08-19T10:10:26Z,2020-02-15T06:59:50Z +5463,201,2,13613,9.99,2005-08-20T06:23:53Z,2020-02-15T06:59:50Z +5464,201,2,13671,3.99,2005-08-20T08:27:03Z,2020-02-15T06:59:50Z +5465,201,2,13672,2.99,2005-08-20T08:27:27Z,2020-02-15T06:59:50Z +5466,201,2,14656,2.99,2005-08-21T19:39:28Z,2020-02-15T06:59:50Z +5467,201,1,14973,2.99,2005-08-22T06:59:28Z,2020-02-15T06:59:50Z +5468,201,1,15887,2.99,2005-08-23T16:54:09Z,2020-02-15T06:59:50Z +5469,201,2,15974,5.99,2005-08-23T20:06:04Z,2020-02-15T06:59:50Z +5470,202,1,1474,2.99,2005-06-15T20:55:42Z,2020-02-15T06:59:50Z +5471,202,1,1535,4.99,2005-06-16T00:52:04Z,2020-02-15T06:59:50Z +5472,202,1,3008,0.99,2005-06-20T10:23:25Z,2020-02-15T06:59:50Z +5473,202,2,3148,0.99,2005-06-20T20:27:18Z,2020-02-15T06:59:50Z +5474,202,1,3861,8.99,2005-07-06T17:24:49Z,2020-02-15T06:59:50Z +5475,202,2,4567,4.99,2005-07-08T05:20:04Z,2020-02-15T06:59:50Z +5476,202,2,5194,2.99,2005-07-09T10:31:34Z,2020-02-15T06:59:50Z +5477,202,1,5297,2.99,2005-07-09T15:32:29Z,2020-02-15T06:59:50Z +5478,202,2,5838,2.99,2005-07-10T17:04:56Z,2020-02-15T06:59:50Z +5479,202,1,7613,2.99,2005-07-28T00:13:58Z,2020-02-15T06:59:50Z +5480,202,1,8351,2.99,2005-07-29T04:50:53Z,2020-02-15T06:59:50Z +5481,202,1,8779,2.99,2005-07-29T20:15:00Z,2020-02-15T06:59:50Z +5482,202,1,8830,2.99,2005-07-29T22:34:35Z,2020-02-15T06:59:50Z +5483,202,2,8930,0.99,2005-07-30T02:28:38Z,2020-02-15T06:59:50Z +5484,202,2,9057,2.99,2005-07-30T07:14:18Z,2020-02-15T06:59:50Z +5485,202,2,9467,8.99,2005-07-30T22:45:34Z,2020-02-15T06:59:50Z +5486,202,2,9751,4.99,2005-07-31T09:20:50Z,2020-02-15T06:59:50Z +5487,202,1,10375,2.99,2005-08-01T06:26:22Z,2020-02-15T06:59:50Z +5488,202,1,11210,4.99,2005-08-02T12:15:54Z,2020-02-15T06:59:50Z +5489,202,2,11924,4.99,2005-08-17T16:22:05Z,2020-02-15T06:59:50Z +5490,202,2,12801,8.99,2005-08-19T00:27:19Z,2020-02-15T06:59:50Z +5491,202,1,13196,4.99,2005-08-19T14:40:32Z,2020-02-15T06:59:50Z +5492,202,1,13528,3.99,2005-08-20T03:03:31Z,2020-02-15T06:59:50Z +5493,202,1,14019,3.99,2005-08-20T20:59:15Z,2020-02-15T06:59:50Z +5494,202,1,15095,0.99,2005-08-22T11:41:35Z,2020-02-15T06:59:50Z +5495,202,2,15772,4.99,2005-08-23T13:22:56Z,2020-02-15T06:59:50Z +5496,203,1,314,0.99,2005-05-26T23:09:41Z,2020-02-15T06:59:50Z +5497,203,1,1217,4.99,2005-06-15T03:24:14Z,2020-02-15T06:59:50Z +5498,203,1,1715,2.99,2005-06-16T14:37:12Z,2020-02-15T06:59:50Z +5499,203,2,2939,7.99,2005-06-20T05:18:16Z,2020-02-15T06:59:50Z +5500,203,2,3406,2.99,2005-06-21T16:00:18Z,2020-02-15T06:59:50Z +5501,203,2,4136,2.99,2005-07-07T08:15:52Z,2020-02-15T06:59:50Z +5502,203,2,5579,5.99,2005-07-10T04:04:29Z,2020-02-15T06:59:50Z +5503,203,2,7787,6.99,2005-07-28T07:19:02Z,2020-02-15T06:59:50Z +5504,203,1,8039,0.99,2005-07-28T16:35:16Z,2020-02-15T06:59:50Z +5505,203,1,8463,4.99,2005-07-29T08:17:51Z,2020-02-15T06:59:50Z +5506,203,1,8792,7.99,2005-07-29T20:56:14Z,2020-02-15T06:59:50Z +5507,203,2,9015,10.99,2005-07-30T05:21:32Z,2020-02-15T06:59:50Z +5508,203,2,10700,3.99,2005-08-01T18:26:31Z,2020-02-15T06:59:50Z +5509,203,2,10805,2.99,2005-08-01T22:23:37Z,2020-02-15T06:59:50Z +5510,203,1,11712,2.99,2005-08-17T07:32:51Z,2020-02-15T06:59:50Z +5511,203,1,12519,0.99,2005-08-18T13:42:14Z,2020-02-15T06:59:50Z +5512,203,2,13841,4.99,2005-08-20T14:25:18Z,2020-02-15T06:59:50Z +5513,203,2,14505,5.99,2005-08-21T14:26:28Z,2020-02-15T06:59:50Z +5514,203,2,15798,2.99,2005-08-23T14:23:03Z,2020-02-15T06:59:50Z +5515,203,2,15991,2.99,2005-08-23T20:27:34Z,2020-02-15T06:59:50Z +5516,204,2,251,0.99,2005-05-26T14:35:40Z,2020-02-15T06:59:50Z +5517,204,2,399,4.99,2005-05-27T12:48:38Z,2020-02-15T06:59:50Z +5518,204,2,857,4.99,2005-05-30T02:01:23Z,2020-02-15T06:59:50Z +5519,204,1,1016,1.99,2005-05-31T02:49:43Z,2020-02-15T06:59:50Z +5520,204,1,1321,2.99,2005-06-15T10:49:17Z,2020-02-15T06:59:50Z +5521,204,1,1616,7.99,2005-06-16T07:04:52Z,2020-02-15T06:59:50Z +5522,204,1,1871,4.99,2005-06-17T02:25:12Z,2020-02-15T06:59:50Z +5523,204,2,1894,7.99,2005-06-17T04:18:48Z,2020-02-15T06:59:50Z +5524,204,2,2186,2.99,2005-06-18T01:15:27Z,2020-02-15T06:59:50Z +5525,204,2,2734,4.99,2005-06-19T15:36:27Z,2020-02-15T06:59:50Z +5526,204,1,4043,0.99,2005-07-07T03:09:50Z,2020-02-15T06:59:50Z +5527,204,1,4979,4.99,2005-07-09T00:24:34Z,2020-02-15T06:59:50Z +5528,204,2,5145,0.99,2005-07-09T08:13:25Z,2020-02-15T06:59:50Z +5529,204,1,5619,2.99,2005-07-10T05:29:33Z,2020-02-15T06:59:50Z +5530,204,2,6004,4.99,2005-07-11T01:34:25Z,2020-02-15T06:59:50Z +5531,204,2,6225,2.99,2005-07-11T13:45:14Z,2020-02-15T06:59:50Z +5532,204,2,6631,0.99,2005-07-12T09:31:43Z,2020-02-15T06:59:50Z +5533,204,1,6694,6.99,2005-07-12T12:39:23Z,2020-02-15T06:59:50Z +5534,204,2,6871,2.99,2005-07-12T20:13:49Z,2020-02-15T06:59:50Z +5535,204,1,7392,4.99,2005-07-27T16:01:05Z,2020-02-15T06:59:50Z +5536,204,2,9005,0.99,2005-07-30T05:04:58Z,2020-02-15T06:59:50Z +5537,204,1,9394,5.99,2005-07-30T20:06:24Z,2020-02-15T06:59:50Z +5538,204,2,9906,4.99,2005-07-31T14:38:12Z,2020-02-15T06:59:50Z +5539,204,2,10042,2.99,2005-07-31T19:01:25Z,2020-02-15T06:59:50Z +5540,204,2,10399,5.99,2005-08-01T07:13:39Z,2020-02-15T06:59:50Z +5541,204,1,11261,7.99,2005-08-02T13:54:26Z,2020-02-15T06:59:50Z +5542,204,2,11886,0.99,2005-08-17T14:58:51Z,2020-02-15T06:59:50Z +5543,204,1,12737,6.99,2005-08-18T22:11:37Z,2020-02-15T06:59:50Z +5544,204,1,13084,0.99,2005-08-19T10:27:25Z,2020-02-15T06:59:50Z +5545,204,1,13416,4.99,2005-08-19T22:48:48Z,2020-02-15T06:59:50Z +5546,204,2,13899,2.99,2005-08-20T16:05:11Z,2020-02-15T06:59:50Z +5547,204,2,14163,4.99,2005-08-21T02:56:52Z,2020-02-15T06:59:50Z +5548,204,1,14871,0.99,2005-08-22T03:23:24Z,2020-02-15T06:59:50Z +5549,204,1,15364,4.99,2005-08-22T21:41:41Z,2020-02-15T06:59:50Z +5550,204,2,15415,11.99,2005-08-22T23:48:56Z,2020-02-15T06:59:50Z +5551,205,1,1238,2.99,2005-06-15T04:49:08Z,2020-02-15T06:59:50Z +5552,205,1,1357,4.99,2005-06-15T13:26:23Z,2020-02-15T06:59:50Z +5553,205,1,1767,0.99,2005-06-16T18:01:36Z,2020-02-15T06:59:50Z +5554,205,2,2237,5.99,2005-06-18T04:17:44Z,2020-02-15T06:59:50Z +5555,205,1,3601,7.99,2005-07-06T05:20:25Z,2020-02-15T06:59:50Z +5556,205,2,4230,3.99,2005-07-07T12:46:47Z,2020-02-15T06:59:50Z +5557,205,2,4377,7.99,2005-07-07T20:28:57Z,2020-02-15T06:59:50Z +5558,205,1,4729,4.99,2005-07-08T12:59:40Z,2020-02-15T06:59:50Z +5559,205,1,7736,2.99,2005-07-28T05:12:04Z,2020-02-15T06:59:50Z +5560,205,2,7976,7.99,2005-07-28T14:13:24Z,2020-02-15T06:59:50Z +5561,205,2,8896,4.99,2005-07-30T00:51:21Z,2020-02-15T06:59:50Z +5562,205,2,10086,4.99,2005-07-31T20:14:08Z,2020-02-15T06:59:50Z +5563,205,1,13935,2.99,2005-08-20T17:20:49Z,2020-02-15T06:59:50Z +5564,205,1,14338,0.99,2005-08-21T08:36:03Z,2020-02-15T06:59:50Z +5565,205,2,14391,4.99,2005-08-21T10:16:27Z,2020-02-15T06:59:50Z +5566,205,1,14442,2.99,2005-08-21T12:00:21Z,2020-02-15T06:59:50Z +5567,205,2,14490,6.99,2005-08-21T13:54:15Z,2020-02-15T06:59:50Z +5568,205,2,15418,0.99,2005-08-22T23:54:14Z,2020-02-15T06:59:50Z +5569,206,2,1872,0.99,2005-06-17T02:27:03Z,2020-02-15T06:59:50Z +5570,206,2,2477,5.99,2005-06-18T20:58:46Z,2020-02-15T06:59:50Z +5571,206,2,3012,4.99,2005-06-20T10:43:13Z,2020-02-15T06:59:50Z +5572,206,1,3533,5.99,2005-07-06T01:26:44Z,2020-02-15T06:59:50Z +5573,206,2,3831,0.99,2005-07-06T16:06:35Z,2020-02-15T06:59:50Z +5574,206,1,3847,4.99,2005-07-06T16:44:41Z,2020-02-15T06:59:50Z +5575,206,2,4068,4.99,2005-07-07T04:34:38Z,2020-02-15T06:59:50Z +5576,206,2,4107,4.99,2005-07-07T06:36:32Z,2020-02-15T06:59:50Z +5577,206,2,4823,4.99,2005-07-08T17:28:54Z,2020-02-15T06:59:50Z +5578,206,1,6139,3.99,2005-07-11T08:39:33Z,2020-02-15T06:59:50Z +5579,206,1,6420,6.99,2005-07-11T23:38:49Z,2020-02-15T06:59:50Z +5580,206,1,7222,4.99,2005-07-27T09:38:43Z,2020-02-15T06:59:50Z +5581,206,2,7541,4.99,2005-07-27T21:40:05Z,2020-02-15T06:59:50Z +5582,206,1,8217,5.99,2005-07-28T23:44:13Z,2020-02-15T06:59:50Z +5583,206,1,8549,3.99,2005-07-29T11:12:13Z,2020-02-15T06:59:50Z +5584,206,2,9474,2.99,2005-07-30T23:05:44Z,2020-02-15T06:59:50Z +5585,206,2,10930,3.99,2005-08-02T02:38:07Z,2020-02-15T06:59:50Z +5586,206,1,11022,2.99,2005-08-02T05:35:03Z,2020-02-15T06:59:50Z +5587,206,2,11634,2.99,2005-08-17T04:31:49Z,2020-02-15T06:59:50Z +5588,206,1,13128,4.99,2005-08-19T12:04:16Z,2020-02-15T06:59:50Z +5589,206,2,13232,2.99,2005-08-19T16:13:32Z,2020-02-15T06:59:50Z +5590,206,2,13263,10.99,2005-08-19T17:26:55Z,2020-02-15T06:59:50Z +5591,206,2,13550,9.99,2005-08-20T03:58:51Z,2020-02-15T06:59:50Z +5592,206,2,13696,0.99,2005-08-20T09:16:15Z,2020-02-15T06:59:50Z +5593,206,2,14695,0.99,2005-08-21T20:46:47Z,2020-02-15T06:59:50Z +5594,206,2,15686,7.99,2005-08-23T09:42:21Z,2020-02-15T06:59:50Z +5595,206,1,15709,4.99,2005-08-23T10:36:00Z,2020-02-15T06:59:50Z +5596,207,1,39,0.99,2005-05-25T04:51:46Z,2020-02-15T06:59:50Z +5597,207,1,44,0.99,2005-05-25T05:53:23Z,2020-02-15T06:59:50Z +5598,207,1,659,0.99,2005-05-28T20:27:53Z,2020-02-15T06:59:50Z +5599,207,2,826,6.99,2005-05-29T21:56:15Z,2020-02-15T06:59:50Z +5600,207,2,896,3.99,2005-05-30T09:03:52Z,2020-02-15T06:59:50Z +5601,207,2,1144,3.99,2005-05-31T20:04:10Z,2020-02-15T06:59:50Z +5602,207,2,1945,3.99,2005-06-17T07:51:26Z,2020-02-15T06:59:50Z +5603,207,2,3584,2.99,2005-07-06T04:16:43Z,2020-02-15T06:59:50Z +5604,207,2,3687,9.99,2005-07-06T09:38:33Z,2020-02-15T06:59:50Z +5605,207,1,4018,2.99,2005-07-07T01:10:33Z,2020-02-15T06:59:50Z +5606,207,2,4713,5.99,2005-07-08T12:12:33Z,2020-02-15T06:59:50Z +5607,207,1,4816,0.99,2005-07-08T17:14:14Z,2020-02-15T06:59:50Z +5608,207,2,5007,0.99,2005-07-09T01:26:22Z,2020-02-15T06:59:50Z +5609,207,1,5258,0.99,2005-07-09T13:56:56Z,2020-02-15T06:59:50Z +5610,207,1,5259,4.99,2005-07-09T14:02:50Z,2020-02-15T06:59:50Z +5611,207,2,5939,0.99,2005-07-10T22:30:05Z,2020-02-15T06:59:50Z +5612,207,2,6465,5.99,2005-07-12T01:17:11Z,2020-02-15T06:59:50Z +5613,207,1,6537,0.99,2005-07-12T04:46:30Z,2020-02-15T06:59:50Z +5614,207,2,7306,5.99,2005-07-27T12:57:26Z,2020-02-15T06:59:50Z +5615,207,1,7540,5.99,2005-07-27T21:39:55Z,2020-02-15T06:59:50Z +5616,207,1,8800,5.99,2005-07-29T21:18:59Z,2020-02-15T06:59:50Z +5617,207,2,9652,2.99,2005-07-31T05:49:53Z,2020-02-15T06:59:50Z +5618,207,2,10234,3.99,2005-08-01T01:56:20Z,2020-02-15T06:59:50Z +5619,207,2,10300,0.99,2005-08-01T04:08:11Z,2020-02-15T06:59:50Z +5620,207,1,11112,2.99,2005-08-02T08:25:14Z,2020-02-15T06:59:50Z +5621,207,2,11260,0.99,2005-08-02T13:52:19Z,2020-02-15T06:59:50Z +5622,207,2,11286,5.99,2005-08-02T14:44:22Z,2020-02-15T06:59:50Z +5623,207,1,11724,6.99,2005-08-17T08:04:44Z,2020-02-15T06:59:50Z +5624,207,2,12108,6.99,2005-08-17T22:56:39Z,2020-02-15T06:59:50Z +5625,207,2,13655,2.99,2005-08-20T07:59:13Z,2020-02-15T06:59:50Z +5626,207,2,13809,8.99,2005-08-20T12:56:03Z,2020-02-15T06:59:50Z +5627,207,2,13912,9.99,2005-08-20T16:32:10Z,2020-02-15T06:59:50Z +5628,207,2,13954,3.99,2005-08-20T18:02:41Z,2020-02-15T06:59:50Z +5629,207,1,15625,1.99,2005-08-23T07:25:29Z,2020-02-15T06:59:50Z +5630,208,1,100,4.99,2005-05-25T16:50:28Z,2020-02-15T06:59:50Z +5631,208,1,1805,0.99,2005-06-16T20:36:00Z,2020-02-15T06:59:50Z +5632,208,1,1949,5.99,2005-06-17T08:19:22Z,2020-02-15T06:59:50Z +5633,208,2,2592,0.99,2005-06-19T05:36:54Z,2020-02-15T06:59:50Z +5634,208,1,2695,2.99,2005-06-19T13:25:53Z,2020-02-15T06:59:50Z +5635,208,2,2907,0.99,2005-06-20T03:15:09Z,2020-02-15T06:59:50Z +5636,208,2,3811,2.99,2005-07-06T15:20:37Z,2020-02-15T06:59:50Z +5637,208,1,4354,5.99,2005-07-07T19:21:02Z,2020-02-15T06:59:50Z +5638,208,2,4985,4.99,2005-07-09T00:36:02Z,2020-02-15T06:59:50Z +5639,208,1,5117,2.99,2005-07-09T07:11:22Z,2020-02-15T06:59:50Z +5640,208,2,5693,2.99,2005-07-10T09:35:43Z,2020-02-15T06:59:50Z +5641,208,2,6306,6.99,2005-07-11T18:04:26Z,2020-02-15T06:59:50Z +5642,208,1,6767,1.99,2005-07-12T15:46:55Z,2020-02-15T06:59:50Z +5643,208,1,7315,0.99,2005-07-27T13:14:56Z,2020-02-15T06:59:50Z +5644,208,1,7861,2.99,2005-07-28T10:02:01Z,2020-02-15T06:59:50Z +5645,208,2,7984,2.99,2005-07-28T14:27:51Z,2020-02-15T06:59:50Z +5646,208,1,8742,1.99,2005-07-29T18:56:12Z,2020-02-15T06:59:50Z +5647,208,2,9298,3.99,2005-07-30T16:27:53Z,2020-02-15T06:59:50Z +5648,208,1,9838,4.99,2005-07-31T12:18:49Z,2020-02-15T06:59:50Z +5649,208,2,10762,4.99,2005-08-01T20:28:39Z,2020-02-15T06:59:50Z +5650,208,2,10784,5.99,2005-08-01T21:24:28Z,2020-02-15T06:59:50Z +5651,208,2,11442,2.99,2005-08-02T20:26:19Z,2020-02-15T06:59:50Z +5652,208,2,11805,6.99,2005-08-17T11:48:47Z,2020-02-15T06:59:50Z +5653,208,2,11819,0.99,2005-08-17T12:25:17Z,2020-02-15T06:59:50Z +5654,208,1,13719,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5655,208,1,15717,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5656,209,2,340,9.99,2005-05-27T03:55:25Z,2020-02-15T06:59:50Z +5657,209,1,471,0.99,2005-05-27T21:32:42Z,2020-02-15T06:59:50Z +5658,209,2,1143,2.99,2005-05-31T19:53:03Z,2020-02-15T06:59:50Z +5659,209,2,1201,4.99,2005-06-15T02:06:28Z,2020-02-15T06:59:50Z +5660,209,1,1657,4.99,2005-06-16T10:06:49Z,2020-02-15T06:59:50Z +5661,209,1,2650,4.99,2005-06-19T10:21:45Z,2020-02-15T06:59:50Z +5662,209,1,2796,4.99,2005-06-19T19:00:37Z,2020-02-15T06:59:50Z +5663,209,2,3504,2.99,2005-07-06T00:18:29Z,2020-02-15T06:59:50Z +5664,209,2,4071,5.99,2005-07-07T04:37:26Z,2020-02-15T06:59:50Z +5665,209,1,4309,5.99,2005-07-07T17:29:41Z,2020-02-15T06:59:50Z +5666,209,2,4810,4.99,2005-07-08T17:04:06Z,2020-02-15T06:59:50Z +5667,209,1,4907,4.99,2005-07-08T21:01:41Z,2020-02-15T06:59:50Z +5668,209,2,5170,3.99,2005-07-09T09:24:19Z,2020-02-15T06:59:50Z +5669,209,2,5219,5.99,2005-07-09T11:57:55Z,2020-02-15T06:59:50Z +5670,209,1,6210,0.99,2005-07-11T12:36:43Z,2020-02-15T06:59:50Z +5671,209,1,7116,6.99,2005-07-27T05:46:43Z,2020-02-15T06:59:50Z +5672,209,1,7269,3.99,2005-07-27T11:23:47Z,2020-02-15T06:59:50Z +5673,209,1,7505,4.99,2005-07-27T20:28:03Z,2020-02-15T06:59:50Z +5674,209,2,7752,5.99,2005-07-28T06:01:00Z,2020-02-15T06:59:50Z +5675,209,1,8067,4.99,2005-07-28T17:20:17Z,2020-02-15T06:59:50Z +5676,209,2,8759,8.99,2005-07-29T19:22:37Z,2020-02-15T06:59:51Z +5677,209,2,8816,2.99,2005-07-29T21:53:00Z,2020-02-15T06:59:51Z +5678,209,2,9054,6.99,2005-07-30T07:11:44Z,2020-02-15T06:59:51Z +5679,209,1,9923,0.99,2005-07-31T15:00:15Z,2020-02-15T06:59:51Z +5680,209,2,10554,2.99,2005-08-01T12:56:19Z,2020-02-15T06:59:51Z +5681,209,1,10646,4.99,2005-08-01T15:57:55Z,2020-02-15T06:59:51Z +5682,209,2,10811,6.99,2005-08-01T22:41:15Z,2020-02-15T06:59:51Z +5683,209,1,12025,0.99,2005-08-17T19:59:06Z,2020-02-15T06:59:51Z +5684,209,1,13796,8.99,2005-08-20T12:32:32Z,2020-02-15T06:59:51Z +5685,209,2,14631,6.99,2005-08-21T18:47:49Z,2020-02-15T06:59:51Z +5686,209,1,15254,2.99,2005-08-22T18:13:07Z,2020-02-15T06:59:51Z +5687,209,2,15510,9.99,2005-08-23T02:51:27Z,2020-02-15T06:59:51Z +5688,210,1,953,2.99,2005-05-30T16:34:02Z,2020-02-15T06:59:51Z +5689,210,2,1177,2.99,2005-06-15T00:33:04Z,2020-02-15T06:59:51Z +5690,210,2,2856,0.99,2005-06-19T23:13:04Z,2020-02-15T06:59:51Z +5691,210,2,3563,4.99,2005-07-06T02:57:01Z,2020-02-15T06:59:51Z +5692,210,2,3884,4.99,2005-07-06T18:41:33Z,2020-02-15T06:59:51Z +5693,210,2,4270,0.99,2005-07-07T14:38:41Z,2020-02-15T06:59:51Z +5694,210,1,4306,2.99,2005-07-07T17:12:32Z,2020-02-15T06:59:51Z +5695,210,1,4334,0.99,2005-07-07T18:32:04Z,2020-02-15T06:59:51Z +5696,210,2,4388,7.99,2005-07-07T20:58:03Z,2020-02-15T06:59:51Z +5697,210,1,4620,5.99,2005-07-08T08:01:44Z,2020-02-15T06:59:51Z +5698,210,1,4871,6.99,2005-07-08T19:19:52Z,2020-02-15T06:59:51Z +5699,210,1,4893,4.99,2005-07-08T20:19:55Z,2020-02-15T06:59:51Z +5700,210,1,4989,3.99,2005-07-09T00:46:56Z,2020-02-15T06:59:51Z +5701,210,2,5957,0.99,2005-07-10T23:24:02Z,2020-02-15T06:59:51Z +5702,210,2,6227,4.99,2005-07-11T13:56:46Z,2020-02-15T06:59:51Z +5703,210,1,6564,1.99,2005-07-12T05:34:44Z,2020-02-15T06:59:51Z +5704,210,1,7743,5.99,2005-07-28T05:36:13Z,2020-02-15T06:59:51Z +5705,210,2,7909,0.99,2005-07-28T11:38:08Z,2020-02-15T06:59:51Z +5706,210,2,8336,8.99,2005-07-29T04:20:42Z,2020-02-15T06:59:51Z +5707,210,2,8678,3.99,2005-07-29T16:04:00Z,2020-02-15T06:59:51Z +5708,210,2,8738,0.99,2005-07-29T18:32:47Z,2020-02-15T06:59:51Z +5709,210,2,10890,4.99,2005-08-02T00:58:46Z,2020-02-15T06:59:51Z +5710,210,2,12410,8.99,2005-08-18T09:45:33Z,2020-02-15T06:59:51Z +5711,210,1,12879,4.99,2005-08-19T03:22:55Z,2020-02-15T06:59:51Z +5712,210,2,12909,2.99,2005-08-19T04:20:25Z,2020-02-15T06:59:51Z +5713,210,2,12986,4.99,2005-08-19T07:09:36Z,2020-02-15T06:59:51Z +5714,210,1,14181,7.99,2005-08-21T03:16:30Z,2020-02-15T06:59:51Z +5715,210,2,14639,6.99,2005-08-21T19:01:39Z,2020-02-15T06:59:51Z +5716,210,2,14876,4.99,2005-08-22T03:39:29Z,2020-02-15T06:59:51Z +5717,210,2,15672,0.99,2005-08-23T09:09:18Z,2020-02-15T06:59:51Z +5718,210,2,15942,8.99,2005-08-23T18:48:40Z,2020-02-15T06:59:51Z +5719,211,1,238,4.99,2005-05-26T12:30:22Z,2020-02-15T06:59:51Z +5720,211,2,2812,8.99,2005-06-19T19:58:16Z,2020-02-15T06:59:51Z +5721,211,2,3437,6.99,2005-06-21T19:20:17Z,2020-02-15T06:59:51Z +5722,211,2,3937,8.99,2005-07-06T21:15:38Z,2020-02-15T06:59:51Z +5723,211,2,4060,2.99,2005-07-07T04:10:13Z,2020-02-15T06:59:51Z +5724,211,2,4441,5.99,2005-07-07T23:04:23Z,2020-02-15T06:59:51Z +5725,211,2,4479,2.99,2005-07-08T00:52:35Z,2020-02-15T06:59:51Z +5726,211,1,4857,2.99,2005-07-08T18:52:07Z,2020-02-15T06:59:51Z +5727,211,1,5668,5.99,2005-07-10T08:11:05Z,2020-02-15T06:59:51Z +5728,211,2,5699,3.99,2005-07-10T09:48:04Z,2020-02-15T06:59:51Z +5729,211,2,5785,4.99,2005-07-10T14:06:03Z,2020-02-15T06:59:51Z +5730,211,2,6438,0.99,2005-07-12T00:23:01Z,2020-02-15T06:59:51Z +5731,211,1,6628,4.99,2005-07-12T09:18:08Z,2020-02-15T06:59:51Z +5732,211,1,6722,1.99,2005-07-12T13:44:03Z,2020-02-15T06:59:51Z +5733,211,2,7484,0.99,2005-07-27T19:28:17Z,2020-02-15T06:59:51Z +5734,211,1,7975,2.99,2005-07-28T14:12:47Z,2020-02-15T06:59:51Z +5735,211,2,8961,6.99,2005-07-30T03:43:35Z,2020-02-15T06:59:51Z +5736,211,1,9111,3.99,2005-07-30T09:05:44Z,2020-02-15T06:59:51Z +5737,211,1,9953,0.99,2005-07-31T15:56:35Z,2020-02-15T06:59:51Z +5738,211,1,10445,2.99,2005-08-01T09:02:15Z,2020-02-15T06:59:51Z +5739,211,2,10928,4.99,2005-08-02T02:34:12Z,2020-02-15T06:59:51Z +5740,211,2,11076,8.99,2005-08-02T07:24:47Z,2020-02-15T06:59:51Z +5741,211,2,11963,3.99,2005-08-17T17:35:47Z,2020-02-15T06:59:51Z +5742,211,2,12311,0.99,2005-08-18T06:07:00Z,2020-02-15T06:59:51Z +5743,211,2,12565,4.99,2005-08-18T15:12:17Z,2020-02-15T06:59:51Z +5744,211,2,12570,5.99,2005-08-18T15:23:31Z,2020-02-15T06:59:51Z +5745,211,2,13942,2.99,2005-08-20T17:30:52Z,2020-02-15T06:59:51Z +5746,211,1,13979,2.99,2005-08-20T19:03:49Z,2020-02-15T06:59:51Z +5747,211,2,14782,0.99,2005-08-22T00:17:20Z,2020-02-15T06:59:51Z +5748,211,2,14812,1.99,2005-08-22T01:10:32Z,2020-02-15T06:59:51Z +5749,211,1,15404,7.99,2005-08-22T23:19:44Z,2020-02-15T06:59:51Z +5750,211,2,15538,6.99,2005-08-23T04:07:37Z,2020-02-15T06:59:51Z +5751,211,2,15670,5.99,2005-08-23T09:07:11Z,2020-02-15T06:59:51Z +5752,211,2,12746,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5753,212,1,1356,0.99,2005-06-15T13:17:01Z,2020-02-15T06:59:51Z +5754,212,2,1379,0.99,2005-06-15T15:05:10Z,2020-02-15T06:59:51Z +5755,212,1,1637,2.99,2005-06-16T08:29:58Z,2020-02-15T06:59:51Z +5756,212,2,2739,9.99,2005-06-19T15:58:38Z,2020-02-15T06:59:51Z +5757,212,2,4708,10.99,2005-07-08T11:59:19Z,2020-02-15T06:59:51Z +5758,212,2,4798,3.99,2005-07-08T16:45:16Z,2020-02-15T06:59:51Z +5759,212,2,4916,6.99,2005-07-08T21:32:17Z,2020-02-15T06:59:51Z +5760,212,1,5115,6.99,2005-07-09T07:07:18Z,2020-02-15T06:59:51Z +5761,212,2,7828,2.99,2005-07-28T08:40:46Z,2020-02-15T06:59:51Z +5762,212,2,8000,4.99,2005-07-28T15:10:25Z,2020-02-15T06:59:51Z +5763,212,1,8940,3.99,2005-07-30T02:57:26Z,2020-02-15T06:59:51Z +5764,212,2,10273,4.99,2005-08-01T03:14:47Z,2020-02-15T06:59:51Z +5765,212,2,10567,0.99,2005-08-01T13:16:01Z,2020-02-15T06:59:51Z +5766,212,1,12156,7.99,2005-08-18T00:27:33Z,2020-02-15T06:59:51Z +5767,212,2,12467,0.99,2005-08-18T11:40:09Z,2020-02-15T06:59:51Z +5768,212,2,12562,3.99,2005-08-18T15:00:03Z,2020-02-15T06:59:51Z +5769,212,1,14563,2.99,2005-08-21T16:23:53Z,2020-02-15T06:59:51Z +5770,212,2,14681,5.99,2005-08-21T20:25:13Z,2020-02-15T06:59:51Z +5771,212,1,15872,4.99,2005-08-23T16:27:24Z,2020-02-15T06:59:51Z +5772,212,2,15920,2.99,2005-08-23T18:05:10Z,2020-02-15T06:59:51Z +5773,213,2,385,0.99,2005-05-27T10:23:25Z,2020-02-15T06:59:51Z +5774,213,1,1489,0.99,2005-06-15T21:41:38Z,2020-02-15T06:59:51Z +5775,213,2,1936,4.99,2005-06-17T07:15:41Z,2020-02-15T06:59:51Z +5776,213,1,2322,5.99,2005-06-18T09:44:21Z,2020-02-15T06:59:51Z +5777,213,1,2509,0.99,2005-06-18T23:44:08Z,2020-02-15T06:59:51Z +5778,213,2,2569,6.99,2005-06-19T04:19:04Z,2020-02-15T06:59:51Z +5779,213,1,2889,4.99,2005-06-20T01:54:08Z,2020-02-15T06:59:51Z +5780,213,2,2946,4.99,2005-06-20T05:50:40Z,2020-02-15T06:59:51Z +5781,213,1,3252,2.99,2005-06-21T03:25:26Z,2020-02-15T06:59:51Z +5782,213,1,3313,2.99,2005-06-21T08:11:18Z,2020-02-15T06:59:51Z +5783,213,2,3989,4.99,2005-07-06T23:30:54Z,2020-02-15T06:59:51Z +5784,213,2,4236,4.99,2005-07-07T13:12:07Z,2020-02-15T06:59:51Z +5785,213,1,4655,8.99,2005-07-08T09:49:22Z,2020-02-15T06:59:51Z +5786,213,2,5159,4.99,2005-07-09T08:55:52Z,2020-02-15T06:59:51Z +5787,213,1,5431,0.99,2005-07-09T21:21:11Z,2020-02-15T06:59:51Z +5788,213,2,6725,2.99,2005-07-12T13:47:17Z,2020-02-15T06:59:51Z +5789,213,2,7528,0.99,2005-07-27T21:15:25Z,2020-02-15T06:59:51Z +5790,213,2,8444,2.99,2005-07-29T07:36:13Z,2020-02-15T06:59:51Z +5791,213,2,8542,4.99,2005-07-29T11:01:50Z,2020-02-15T06:59:51Z +5792,213,2,9150,6.99,2005-07-30T10:49:32Z,2020-02-15T06:59:51Z +5793,213,2,9340,2.99,2005-07-30T18:07:16Z,2020-02-15T06:59:51Z +5794,213,1,9477,4.99,2005-07-30T23:07:22Z,2020-02-15T06:59:51Z +5795,213,1,10449,2.99,2005-08-01T09:09:59Z,2020-02-15T06:59:51Z +5796,213,2,11778,3.99,2005-08-17T10:31:40Z,2020-02-15T06:59:51Z +5797,213,1,13354,4.99,2005-08-19T20:55:23Z,2020-02-15T06:59:51Z +5798,213,2,13426,0.99,2005-08-19T23:15:00Z,2020-02-15T06:59:51Z +5799,213,1,14744,6.99,2005-08-21T22:45:21Z,2020-02-15T06:59:51Z +5800,213,2,14374,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5801,214,1,242,1.99,2005-05-26T13:05:08Z,2020-02-15T06:59:51Z +5802,214,1,278,3.99,2005-05-26T17:40:58Z,2020-02-15T06:59:51Z +5803,214,1,1076,2.99,2005-05-31T10:14:31Z,2020-02-15T06:59:51Z +5804,214,2,1093,2.99,2005-05-31T12:32:26Z,2020-02-15T06:59:51Z +5805,214,2,1112,0.99,2005-05-31T15:51:39Z,2020-02-15T06:59:51Z +5806,214,2,1275,4.99,2005-06-15T07:55:43Z,2020-02-15T06:59:51Z +5807,214,2,2085,2.99,2005-06-17T17:30:56Z,2020-02-15T06:59:51Z +5808,214,2,2868,2.99,2005-06-20T00:08:58Z,2020-02-15T06:59:51Z +5809,214,2,4211,0.99,2005-07-07T11:50:41Z,2020-02-15T06:59:51Z +5810,214,1,4783,3.99,2005-07-08T16:09:24Z,2020-02-15T06:59:51Z +5811,214,2,4984,3.99,2005-07-09T00:35:31Z,2020-02-15T06:59:51Z +5812,214,2,5172,2.99,2005-07-09T09:31:27Z,2020-02-15T06:59:51Z +5813,214,1,6602,7.99,2005-07-12T07:50:24Z,2020-02-15T06:59:51Z +5814,214,2,7417,4.99,2005-07-27T16:58:33Z,2020-02-15T06:59:51Z +5815,214,2,7826,5.99,2005-07-28T08:35:51Z,2020-02-15T06:59:51Z +5816,214,1,8663,4.99,2005-07-29T15:33:18Z,2020-02-15T06:59:51Z +5817,214,1,10563,3.99,2005-08-01T13:06:03Z,2020-02-15T06:59:51Z +5818,214,2,10749,4.99,2005-08-01T20:02:01Z,2020-02-15T06:59:51Z +5819,214,2,11450,2.99,2005-08-02T20:45:54Z,2020-02-15T06:59:51Z +5820,214,2,11474,4.99,2005-08-02T21:53:08Z,2020-02-15T06:59:51Z +5821,214,2,12463,4.99,2005-08-18T11:31:34Z,2020-02-15T06:59:51Z +5822,214,2,13138,2.99,2005-08-19T12:30:01Z,2020-02-15T06:59:51Z +5823,214,2,13350,9.99,2005-08-19T20:44:00Z,2020-02-15T06:59:51Z +5824,214,1,13409,2.99,2005-08-19T22:36:26Z,2020-02-15T06:59:51Z +5825,214,1,13565,0.99,2005-08-20T04:38:52Z,2020-02-15T06:59:51Z +5826,214,1,13726,0.99,2005-08-20T10:08:40Z,2020-02-15T06:59:51Z +5827,214,1,13864,4.99,2005-08-20T14:59:55Z,2020-02-15T06:59:51Z +5828,214,2,14347,4.99,2005-08-21T08:42:31Z,2020-02-15T06:59:51Z +5829,214,1,14567,0.99,2005-08-21T16:27:25Z,2020-02-15T06:59:51Z +5830,214,2,15639,2.99,2005-08-23T08:03:25Z,2020-02-15T06:59:51Z +5831,214,2,15645,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5832,215,1,711,4.99,2005-05-29T03:49:03Z,2020-02-15T06:59:51Z +5833,215,2,1080,4.99,2005-05-31T10:55:26Z,2020-02-15T06:59:51Z +5834,215,2,1376,4.99,2005-06-15T14:59:06Z,2020-02-15T06:59:51Z +5835,215,2,1599,4.99,2005-06-16T06:03:33Z,2020-02-15T06:59:51Z +5836,215,2,1845,4.99,2005-06-16T23:56:11Z,2020-02-15T06:59:51Z +5837,215,2,2006,2.99,2005-06-17T11:47:03Z,2020-02-15T06:59:51Z +5838,215,2,2918,2.99,2005-06-20T04:09:04Z,2020-02-15T06:59:51Z +5839,215,1,3143,2.99,2005-06-20T20:01:52Z,2020-02-15T06:59:51Z +5840,215,2,4940,8.99,2005-07-08T22:36:06Z,2020-02-15T06:59:51Z +5841,215,1,5886,2.99,2005-07-10T19:36:25Z,2020-02-15T06:59:51Z +5842,215,2,5967,8.99,2005-07-11T00:02:19Z,2020-02-15T06:59:51Z +5843,215,1,7180,1.99,2005-07-27T08:14:34Z,2020-02-15T06:59:51Z +5844,215,2,9046,2.99,2005-07-30T06:46:55Z,2020-02-15T06:59:51Z +5845,215,1,9518,0.99,2005-07-31T00:43:26Z,2020-02-15T06:59:51Z +5846,215,2,9611,4.99,2005-07-31T03:54:43Z,2020-02-15T06:59:51Z +5847,215,1,11729,2.99,2005-08-17T08:14:41Z,2020-02-15T06:59:51Z +5848,215,2,12285,2.99,2005-08-18T04:56:43Z,2020-02-15T06:59:51Z +5849,215,1,12380,1.99,2005-08-18T08:27:28Z,2020-02-15T06:59:51Z +5850,215,2,13085,0.99,2005-08-19T10:28:22Z,2020-02-15T06:59:51Z +5851,215,2,14126,0.99,2005-08-21T01:32:17Z,2020-02-15T06:59:51Z +5852,215,2,14817,4.99,2005-08-22T01:17:16Z,2020-02-15T06:59:51Z +5853,215,1,15583,2.99,2005-08-23T05:47:55Z,2020-02-15T06:59:51Z +5854,215,2,15610,2.99,2005-08-23T06:56:15Z,2020-02-15T06:59:51Z +5855,215,2,15799,2.99,2005-08-23T14:23:23Z,2020-02-15T06:59:51Z +5856,215,1,15843,0.99,2005-08-23T15:37:31Z,2020-02-15T06:59:51Z +5857,215,2,15862,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5858,216,1,997,4.99,2005-05-31T00:08:25Z,2020-02-15T06:59:51Z +5859,216,2,1461,6.99,2005-06-15T20:32:08Z,2020-02-15T06:59:51Z +5860,216,1,1664,0.99,2005-06-16T10:15:20Z,2020-02-15T06:59:51Z +5861,216,1,1672,3.99,2005-06-16T10:37:34Z,2020-02-15T06:59:51Z +5862,216,2,2351,0.99,2005-06-18T12:27:57Z,2020-02-15T06:59:51Z +5863,216,1,3432,2.99,2005-06-21T19:02:03Z,2020-02-15T06:59:51Z +5864,216,2,4161,2.99,2005-07-07T09:15:11Z,2020-02-15T06:59:51Z +5865,216,1,6008,6.99,2005-07-11T01:51:29Z,2020-02-15T06:59:51Z +5866,216,2,6349,7.99,2005-07-11T20:25:05Z,2020-02-15T06:59:51Z +5867,216,1,8068,4.99,2005-07-28T17:22:28Z,2020-02-15T06:59:51Z +5868,216,2,8859,8.99,2005-07-29T23:44:43Z,2020-02-15T06:59:51Z +5869,216,1,9096,0.99,2005-07-30T08:39:23Z,2020-02-15T06:59:51Z +5870,216,1,10506,4.99,2005-08-01T11:16:05Z,2020-02-15T06:59:51Z +5871,216,1,11005,0.99,2005-08-02T05:05:23Z,2020-02-15T06:59:51Z +5872,216,2,11621,7.99,2005-08-17T04:13:45Z,2020-02-15T06:59:51Z +5873,216,2,13424,0.99,2005-08-19T23:10:09Z,2020-02-15T06:59:51Z +5874,216,2,14638,2.99,2005-08-21T19:01:36Z,2020-02-15T06:59:51Z +5875,216,2,14726,4.99,2005-08-21T22:08:52Z,2020-02-15T06:59:51Z +5876,216,1,15192,4.99,2005-08-22T16:06:23Z,2020-02-15T06:59:51Z +5877,216,2,15199,2.99,2005-08-22T16:17:49Z,2020-02-15T06:59:51Z +5878,216,2,15934,4.99,2005-08-23T18:40:41Z,2020-02-15T06:59:51Z +5879,216,1,12970,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5880,216,1,11676,0,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5881,217,2,828,2.99,2005-05-29T22:14:55Z,2020-02-15T06:59:51Z +5882,217,2,1141,8.99,2005-05-31T19:42:02Z,2020-02-15T06:59:51Z +5883,217,1,1322,2.99,2005-06-15T10:55:09Z,2020-02-15T06:59:51Z +5884,217,1,2076,6.99,2005-06-17T16:43:47Z,2020-02-15T06:59:51Z +5885,217,1,2842,4.99,2005-06-19T22:34:20Z,2020-02-15T06:59:51Z +5886,217,2,5576,2.99,2005-07-10T03:57:05Z,2020-02-15T06:59:51Z +5887,217,2,5762,3.99,2005-07-10T12:48:01Z,2020-02-15T06:59:51Z +5888,217,2,6570,4.99,2005-07-12T05:50:31Z,2020-02-15T06:59:51Z +5889,217,2,7104,2.99,2005-07-27T05:15:25Z,2020-02-15T06:59:51Z +5890,217,2,8332,4.99,2005-07-29T04:16:00Z,2020-02-15T06:59:51Z +5891,217,1,9159,0.99,2005-07-30T11:16:37Z,2020-02-15T06:59:51Z +5892,217,2,9317,2.99,2005-07-30T17:13:37Z,2020-02-15T06:59:51Z +5893,217,2,9632,6.99,2005-07-31T05:02:23Z,2020-02-15T06:59:51Z +5894,217,2,9745,2.99,2005-07-31T09:16:14Z,2020-02-15T06:59:51Z +5895,217,1,10581,5.99,2005-08-01T13:52:30Z,2020-02-15T06:59:51Z +5896,217,1,10836,6.99,2005-08-01T23:29:58Z,2020-02-15T06:59:51Z +5897,217,1,11347,2.99,2005-08-02T17:18:07Z,2020-02-15T06:59:51Z +5898,217,1,11649,2.99,2005-08-17T04:59:26Z,2020-02-15T06:59:51Z +5899,217,1,11958,4.99,2005-08-17T17:23:20Z,2020-02-15T06:59:51Z +5900,217,2,12210,4.99,2005-08-18T02:27:29Z,2020-02-15T06:59:51Z +5901,217,1,12871,4.99,2005-08-19T02:55:36Z,2020-02-15T06:59:51Z +5902,217,2,15116,0.99,2005-08-22T12:35:40Z,2020-02-15T06:59:51Z +5903,217,2,15277,2.99,2005-08-22T19:02:48Z,2020-02-15T06:59:51Z +5904,218,1,1459,2.99,2005-06-15T20:25:53Z,2020-02-15T06:59:51Z +5905,218,1,2262,0.99,2005-06-18T05:49:46Z,2020-02-15T06:59:51Z +5906,218,1,2267,0.99,2005-06-18T06:10:23Z,2020-02-15T06:59:51Z +5907,218,1,4898,6.99,2005-07-08T20:31:43Z,2020-02-15T06:59:51Z +5908,218,1,5226,0.99,2005-07-09T12:10:44Z,2020-02-15T06:59:51Z +5909,218,2,5737,0.99,2005-07-10T11:50:04Z,2020-02-15T06:59:51Z +5910,218,2,7090,4.99,2005-07-27T04:43:53Z,2020-02-15T06:59:51Z +5911,218,1,7236,8.99,2005-07-27T10:09:39Z,2020-02-15T06:59:51Z +5912,218,2,9018,6.99,2005-07-30T05:28:40Z,2020-02-15T06:59:51Z +5913,218,2,9902,6.99,2005-07-31T14:24:33Z,2020-02-15T06:59:51Z +5914,218,1,10114,0.99,2005-07-31T21:12:58Z,2020-02-15T06:59:51Z +5915,218,1,11654,2.99,2005-08-17T05:06:19Z,2020-02-15T06:59:51Z +5916,218,2,12481,2.99,2005-08-18T12:31:34Z,2020-02-15T06:59:51Z +5917,218,1,12974,0.99,2005-08-19T06:51:02Z,2020-02-15T06:59:51Z +5918,218,2,13708,5.99,2005-08-20T09:34:07Z,2020-02-15T06:59:51Z +5919,218,2,13947,5.99,2005-08-20T17:46:06Z,2020-02-15T06:59:51Z +5920,218,2,14848,4.99,2005-08-22T02:14:19Z,2020-02-15T06:59:51Z +5921,218,2,15575,0.99,2005-08-23T05:30:19Z,2020-02-15T06:59:51Z +5922,219,1,414,0.99,2005-05-27T14:48:20Z,2020-02-15T06:59:51Z +5923,219,2,2417,3.99,2005-06-18T17:12:01Z,2020-02-15T06:59:51Z +5924,219,2,2580,0.99,2005-06-19T04:44:30Z,2020-02-15T06:59:51Z +5925,219,2,4678,0.99,2005-07-08T10:30:40Z,2020-02-15T06:59:51Z +5926,219,2,4910,7.99,2005-07-08T21:13:56Z,2020-02-15T06:59:51Z +5927,219,2,5123,0.99,2005-07-09T07:20:30Z,2020-02-15T06:59:51Z +5928,219,2,5416,4.99,2005-07-09T20:33:50Z,2020-02-15T06:59:51Z +5929,219,2,5475,4.99,2005-07-09T23:31:38Z,2020-02-15T06:59:51Z +5930,219,2,5739,7.99,2005-07-10T11:51:50Z,2020-02-15T06:59:51Z +5931,219,2,6172,4.99,2005-07-11T10:32:09Z,2020-02-15T06:59:51Z +5932,219,1,6209,2.99,2005-07-11T12:36:05Z,2020-02-15T06:59:51Z +5933,219,2,6501,1.99,2005-07-12T03:11:55Z,2020-02-15T06:59:51Z +5934,219,2,7335,2.99,2005-07-27T14:06:50Z,2020-02-15T06:59:51Z +5935,219,1,7726,5.99,2005-07-28T04:52:19Z,2020-02-15T06:59:51Z +5936,219,1,8430,0.99,2005-07-29T07:12:17Z,2020-02-15T06:59:51Z +5937,219,2,8536,4.99,2005-07-29T10:37:23Z,2020-02-15T06:59:51Z +5938,219,1,8652,6.99,2005-07-29T15:02:54Z,2020-02-15T06:59:51Z +5939,219,1,9712,4.99,2005-07-31T08:13:11Z,2020-02-15T06:59:51Z +5940,219,1,11328,2.99,2005-08-02T16:42:38Z,2020-02-15T06:59:51Z +5941,219,2,11791,0.99,2005-08-17T11:01:11Z,2020-02-15T06:59:51Z +5942,219,1,13765,4.99,2005-08-20T11:39:00Z,2020-02-15T06:59:51Z +5943,219,2,14029,0.99,2005-08-20T21:23:11Z,2020-02-15T06:59:51Z +5944,219,1,14588,5.99,2005-08-21T17:25:53Z,2020-02-15T06:59:51Z +5945,219,1,14688,4.99,2005-08-21T20:32:37Z,2020-02-15T06:59:51Z +5946,219,1,15283,4.99,2005-08-22T19:16:04Z,2020-02-15T06:59:51Z +5947,219,1,11577,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5948,220,2,409,0.99,2005-05-27T14:10:58Z,2020-02-15T06:59:51Z +5949,220,1,480,3.99,2005-05-27T22:47:39Z,2020-02-15T06:59:51Z +5950,220,1,1832,0.99,2005-06-16T22:35:20Z,2020-02-15T06:59:51Z +5951,220,2,4918,2.99,2005-07-08T21:37:31Z,2020-02-15T06:59:51Z +5952,220,2,5613,2.99,2005-07-10T05:15:43Z,2020-02-15T06:59:51Z +5953,220,2,5847,2.99,2005-07-10T17:27:42Z,2020-02-15T06:59:51Z +5954,220,2,5859,0.99,2005-07-10T18:02:02Z,2020-02-15T06:59:51Z +5955,220,2,6412,0.99,2005-07-11T23:19:21Z,2020-02-15T06:59:51Z +5956,220,2,6832,8.99,2005-07-12T18:51:41Z,2020-02-15T06:59:51Z +5957,220,2,7750,9.99,2005-07-28T05:55:30Z,2020-02-15T06:59:51Z +5958,220,1,8065,2.99,2005-07-28T17:15:48Z,2020-02-15T06:59:51Z +5959,220,1,8398,4.99,2005-07-29T06:12:40Z,2020-02-15T06:59:51Z +5960,220,2,9384,7.99,2005-07-30T19:25:35Z,2020-02-15T06:59:51Z +5961,220,2,9455,10.99,2005-07-30T22:20:29Z,2020-02-15T06:59:51Z +5962,220,1,10099,2.99,2005-07-31T20:47:14Z,2020-02-15T06:59:51Z +5963,220,2,10778,4.99,2005-08-01T21:11:39Z,2020-02-15T06:59:51Z +5964,220,1,10948,4.99,2005-08-02T03:23:23Z,2020-02-15T06:59:51Z +5965,220,1,11037,0.99,2005-08-02T05:58:12Z,2020-02-15T06:59:51Z +5966,220,1,11153,3.99,2005-08-02T09:54:19Z,2020-02-15T06:59:51Z +5967,220,1,11622,4.99,2005-08-17T04:15:46Z,2020-02-15T06:59:51Z +5968,220,2,11947,2.99,2005-08-17T17:08:13Z,2020-02-15T06:59:51Z +5969,220,1,12407,4.99,2005-08-18T09:39:26Z,2020-02-15T06:59:51Z +5970,220,1,12896,4.99,2005-08-19T03:52:44Z,2020-02-15T06:59:51Z +5971,220,2,13123,2.99,2005-08-19T11:55:13Z,2020-02-15T06:59:51Z +5972,220,1,13281,2.99,2005-08-19T18:07:47Z,2020-02-15T06:59:51Z +5973,220,2,14016,4.99,2005-08-20T20:52:03Z,2020-02-15T06:59:51Z +5974,220,2,15706,4.99,2005-08-23T10:32:52Z,2020-02-15T06:59:51Z +5975,221,2,226,4.99,2005-05-26T10:44:04Z,2020-02-15T06:59:51Z +5976,221,1,1369,0.99,2005-06-15T14:29:14Z,2020-02-15T06:59:51Z +5977,221,1,2331,2.99,2005-06-18T10:50:09Z,2020-02-15T06:59:51Z +5978,221,2,2473,2.99,2005-06-18T20:42:45Z,2020-02-15T06:59:51Z +5979,221,1,2660,10.99,2005-06-19T10:50:02Z,2020-02-15T06:59:51Z +5980,221,1,3200,5.99,2005-06-21T00:22:47Z,2020-02-15T06:59:51Z +5981,221,1,4293,4.99,2005-07-07T15:53:47Z,2020-02-15T06:59:51Z +5982,221,2,4649,4.99,2005-07-08T09:32:05Z,2020-02-15T06:59:51Z +5983,221,1,4693,6.99,2005-07-08T11:07:36Z,2020-02-15T06:59:51Z +5984,221,1,5058,5.99,2005-07-09T04:20:35Z,2020-02-15T06:59:51Z +5985,221,2,5920,5.99,2005-07-10T21:33:58Z,2020-02-15T06:59:51Z +5986,221,1,7101,2.99,2005-07-27T05:06:34Z,2020-02-15T06:59:51Z +5987,221,1,7129,0.99,2005-07-27T06:18:01Z,2020-02-15T06:59:51Z +5988,221,2,7531,8.99,2005-07-27T21:19:34Z,2020-02-15T06:59:51Z +5989,221,2,8486,0.99,2005-07-29T08:53:38Z,2020-02-15T06:59:51Z +5990,221,1,9320,6.99,2005-07-30T17:16:39Z,2020-02-15T06:59:51Z +5991,221,1,9453,7.99,2005-07-30T22:20:04Z,2020-02-15T06:59:51Z +5992,221,2,9853,0.99,2005-07-31T12:58:20Z,2020-02-15T06:59:51Z +5993,221,2,11680,4.99,2005-08-17T06:12:27Z,2020-02-15T06:59:51Z +5994,221,1,11693,4.99,2005-08-17T06:56:56Z,2020-02-15T06:59:51Z +5995,221,1,11802,2.99,2005-08-17T11:32:51Z,2020-02-15T06:59:51Z +5996,221,1,12324,0.99,2005-08-18T06:38:20Z,2020-02-15T06:59:51Z +5997,221,2,12620,3.99,2005-08-18T17:26:38Z,2020-02-15T06:59:51Z +5998,221,2,13434,2.99,2005-08-19T23:34:26Z,2020-02-15T06:59:51Z +5999,221,2,14322,5.99,2005-08-21T08:06:30Z,2020-02-15T06:59:51Z +6000,221,2,14371,0.99,2005-08-21T09:37:16Z,2020-02-15T06:59:51Z +6001,221,1,14419,7.99,2005-08-21T11:15:46Z,2020-02-15T06:59:51Z +6002,221,1,15125,8.99,2005-08-22T12:53:22Z,2020-02-15T06:59:51Z +6003,222,1,5,6.99,2005-05-24T23:05:21Z,2020-02-15T06:59:51Z +6004,222,1,134,4.99,2005-05-25T21:48:41Z,2020-02-15T06:59:51Z +6005,222,2,416,0.99,2005-05-27T15:02:10Z,2020-02-15T06:59:51Z +6006,222,2,809,3.99,2005-05-29T19:10:20Z,2020-02-15T06:59:51Z +6007,222,2,1006,2.99,2005-05-31T00:57:08Z,2020-02-15T06:59:51Z +6008,222,1,1368,8.99,2005-06-15T14:27:47Z,2020-02-15T06:59:51Z +6009,222,2,2603,6.99,2005-06-19T06:21:25Z,2020-02-15T06:59:51Z +6010,222,2,5209,8.99,2005-07-09T11:22:39Z,2020-02-15T06:59:51Z +6011,222,1,5266,3.99,2005-07-09T14:17:40Z,2020-02-15T06:59:51Z +6012,222,2,5592,6.99,2005-07-10T04:26:13Z,2020-02-15T06:59:51Z +6013,222,2,5635,5.99,2005-07-10T06:28:39Z,2020-02-15T06:59:51Z +6014,222,2,6129,2.99,2005-07-11T08:15:09Z,2020-02-15T06:59:51Z +6015,222,1,6497,0.99,2005-07-12T03:04:29Z,2020-02-15T06:59:51Z +6016,222,2,7786,0.99,2005-07-28T07:18:26Z,2020-02-15T06:59:51Z +6017,222,1,8300,1.99,2005-07-29T02:57:59Z,2020-02-15T06:59:51Z +6018,222,2,8597,6.99,2005-07-29T12:55:55Z,2020-02-15T06:59:51Z +6019,222,1,8787,4.99,2005-07-29T20:43:49Z,2020-02-15T06:59:51Z +6020,222,2,10043,1.99,2005-07-31T19:02:07Z,2020-02-15T06:59:51Z +6021,222,2,12179,2.99,2005-08-18T01:21:21Z,2020-02-15T06:59:51Z +6022,222,1,13477,2.99,2005-08-20T01:07:00Z,2020-02-15T06:59:51Z +6023,222,2,14350,2.99,2005-08-21T08:58:38Z,2020-02-15T06:59:51Z +6024,223,2,524,2.99,2005-05-28T03:57:28Z,2020-02-15T06:59:51Z +6025,223,2,1839,5.99,2005-06-16T23:22:22Z,2020-02-15T06:59:51Z +6026,223,1,2334,4.99,2005-06-18T10:56:24Z,2020-02-15T06:59:51Z +6027,223,1,3513,5.99,2005-07-06T00:45:57Z,2020-02-15T06:59:51Z +6028,223,1,3705,0.99,2005-07-06T10:17:59Z,2020-02-15T06:59:51Z +6029,223,1,4874,4.99,2005-07-08T19:23:38Z,2020-02-15T06:59:51Z +6030,223,2,5996,2.99,2005-07-11T01:18:33Z,2020-02-15T06:59:51Z +6031,223,2,7085,5.99,2005-07-27T04:35:44Z,2020-02-15T06:59:51Z +6032,223,2,8362,3.99,2005-07-29T05:09:11Z,2020-02-15T06:59:51Z +6033,223,2,10053,7.99,2005-07-31T19:15:39Z,2020-02-15T06:59:51Z +6034,223,2,11040,4.99,2005-08-02T06:03:22Z,2020-02-15T06:59:51Z +6035,223,1,12927,5.99,2005-08-19T05:02:46Z,2020-02-15T06:59:51Z +6036,223,1,13576,0.99,2005-08-20T05:19:56Z,2020-02-15T06:59:51Z +6037,223,2,14496,4.99,2005-08-21T14:07:35Z,2020-02-15T06:59:51Z +6038,223,1,15257,7.99,2005-08-22T18:21:04Z,2020-02-15T06:59:51Z +6039,223,2,15546,5.99,2005-08-23T04:20:38Z,2020-02-15T06:59:51Z +6040,223,1,15662,2.99,2005-08-23T08:52:50Z,2020-02-15T06:59:51Z +6041,224,1,1424,7.99,2005-06-15T18:08:14Z,2020-02-15T06:59:51Z +6042,224,1,2277,2.99,2005-06-18T06:35:03Z,2020-02-15T06:59:51Z +6043,224,2,3282,4.99,2005-06-21T06:18:42Z,2020-02-15T06:59:51Z +6044,224,1,4118,2.99,2005-07-07T07:03:30Z,2020-02-15T06:59:51Z +6045,224,2,4411,3.99,2005-07-07T21:54:58Z,2020-02-15T06:59:51Z +6046,224,1,4697,2.99,2005-07-08T11:19:14Z,2020-02-15T06:59:51Z +6047,224,1,6031,4.99,2005-07-11T02:42:14Z,2020-02-15T06:59:51Z +6048,224,2,6999,2.99,2005-07-27T01:21:19Z,2020-02-15T06:59:51Z +6049,224,2,8255,0.99,2005-07-29T01:02:30Z,2020-02-15T06:59:51Z +6050,224,2,8439,2.99,2005-07-29T07:28:43Z,2020-02-15T06:59:51Z +6051,224,1,8605,4.99,2005-07-29T13:13:34Z,2020-02-15T06:59:51Z +6052,224,1,9181,0.99,2005-07-30T12:05:58Z,2020-02-15T06:59:51Z +6053,224,1,11816,0.99,2005-08-17T12:14:16Z,2020-02-15T06:59:51Z +6054,224,1,12492,4.99,2005-08-18T12:49:04Z,2020-02-15T06:59:51Z +6055,224,1,12969,2.99,2005-08-19T06:38:59Z,2020-02-15T06:59:51Z +6056,224,2,13075,4.99,2005-08-19T10:10:10Z,2020-02-15T06:59:51Z +6057,224,2,14099,0.99,2005-08-21T00:31:03Z,2020-02-15T06:59:51Z +6058,224,2,14271,5.99,2005-08-21T06:23:29Z,2020-02-15T06:59:51Z +6059,224,2,14468,5.99,2005-08-21T13:07:10Z,2020-02-15T06:59:51Z +6060,224,2,14880,2.99,2005-08-22T03:44:36Z,2020-02-15T06:59:51Z +6061,224,1,15225,0.99,2005-08-22T17:18:32Z,2020-02-15T06:59:51Z +6062,224,1,15952,1.99,2005-08-23T19:11:29Z,2020-02-15T06:59:51Z +6063,225,1,812,4.99,2005-05-29T20:00:30Z,2020-02-15T06:59:51Z +6064,225,1,963,3.99,2005-05-30T18:52:53Z,2020-02-15T06:59:51Z +6065,225,2,2226,7.99,2005-06-18T03:39:56Z,2020-02-15T06:59:51Z +6066,225,2,3574,4.99,2005-07-06T03:36:01Z,2020-02-15T06:59:51Z +6067,225,1,4345,7.99,2005-07-07T18:52:57Z,2020-02-15T06:59:51Z +6068,225,1,4824,7.99,2005-07-08T17:37:39Z,2020-02-15T06:59:51Z +6069,225,2,4955,2.99,2005-07-08T23:16:21Z,2020-02-15T06:59:51Z +6070,225,1,5067,4.99,2005-07-09T04:52:35Z,2020-02-15T06:59:51Z +6071,225,1,6159,2.99,2005-07-11T09:55:34Z,2020-02-15T06:59:51Z +6072,225,1,6317,2.99,2005-07-11T18:47:41Z,2020-02-15T06:59:51Z +6073,225,2,6350,2.99,2005-07-11T20:30:15Z,2020-02-15T06:59:51Z +6074,225,1,6526,3.99,2005-07-12T04:21:20Z,2020-02-15T06:59:51Z +6075,225,2,6532,2.99,2005-07-12T04:38:32Z,2020-02-15T06:59:51Z +6076,225,2,7347,4.99,2005-07-27T14:31:24Z,2020-02-15T06:59:51Z +6077,225,1,7524,6.99,2005-07-27T21:11:44Z,2020-02-15T06:59:51Z +6078,225,1,8054,7.99,2005-07-28T17:02:18Z,2020-02-15T06:59:51Z +6079,225,2,8110,4.99,2005-07-28T19:07:45Z,2020-02-15T06:59:51Z +6080,225,1,9980,4.99,2005-07-31T17:02:00Z,2020-02-15T06:59:51Z +6081,225,2,9993,2.99,2005-07-31T17:30:20Z,2020-02-15T06:59:51Z +6082,225,2,10138,2.99,2005-07-31T22:02:09Z,2020-02-15T06:59:51Z +6083,225,1,10793,2.99,2005-08-01T21:48:03Z,2020-02-15T06:59:51Z +6084,225,2,11333,1.99,2005-08-02T16:53:00Z,2020-02-15T06:59:51Z +6085,225,2,11384,0.99,2005-08-02T18:23:01Z,2020-02-15T06:59:51Z +6086,225,2,11395,5.99,2005-08-02T18:47:44Z,2020-02-15T06:59:51Z +6087,225,2,11437,4.99,2005-08-02T20:20:06Z,2020-02-15T06:59:51Z +6088,225,2,14444,5.99,2005-08-21T12:07:25Z,2020-02-15T06:59:51Z +6089,226,2,3414,2.99,2005-06-21T16:58:50Z,2020-02-15T06:59:51Z +6090,226,1,3466,4.99,2005-06-21T22:13:33Z,2020-02-15T06:59:51Z +6091,226,1,3721,4.99,2005-07-06T11:10:09Z,2020-02-15T06:59:51Z +6092,226,1,4324,4.99,2005-07-07T17:57:56Z,2020-02-15T06:59:51Z +6093,226,1,5282,2.99,2005-07-09T15:01:23Z,2020-02-15T06:59:51Z +6094,226,1,5419,2.99,2005-07-09T20:47:36Z,2020-02-15T06:59:51Z +6095,226,1,6712,9.99,2005-07-12T13:24:47Z,2020-02-15T06:59:51Z +6096,226,2,7288,5.99,2005-07-27T12:24:59Z,2020-02-15T06:59:51Z +6097,226,1,7329,3.99,2005-07-27T13:55:34Z,2020-02-15T06:59:51Z +6098,226,2,8600,2.99,2005-07-29T13:01:19Z,2020-02-15T06:59:51Z +6099,226,1,8627,2.99,2005-07-29T14:05:12Z,2020-02-15T06:59:51Z +6100,226,1,12172,1.99,2005-08-18T01:07:00Z,2020-02-15T06:59:51Z +6101,226,1,14491,6.99,2005-08-21T13:55:39Z,2020-02-15T06:59:51Z +6102,226,1,14708,4.99,2005-08-21T21:07:23Z,2020-02-15T06:59:51Z +6103,226,1,14712,0.99,2005-08-21T21:22:56Z,2020-02-15T06:59:51Z +6104,226,2,14739,0.99,2005-08-21T22:33:22Z,2020-02-15T06:59:51Z +6105,226,2,14934,4.99,2005-08-22T05:47:15Z,2020-02-15T06:59:51Z +6106,226,2,15472,2.99,2005-08-23T01:39:05Z,2020-02-15T06:59:51Z +6107,226,1,15901,4.99,2005-08-23T17:19:17Z,2020-02-15T06:59:51Z +6108,226,1,15986,2.99,2005-08-23T20:20:37Z,2020-02-15T06:59:51Z +6109,226,1,16033,5.99,2005-08-23T22:06:15Z,2020-02-15T06:59:51Z +6110,227,1,111,4.99,2005-05-25T18:45:19Z,2020-02-15T06:59:51Z +6111,227,1,1023,3.99,2005-05-31T03:26:50Z,2020-02-15T06:59:51Z +6112,227,1,1679,2.99,2005-06-16T11:11:01Z,2020-02-15T06:59:51Z +6113,227,2,2155,1.99,2005-06-17T23:07:29Z,2020-02-15T06:59:51Z +6114,227,1,2164,6.99,2005-06-17T23:46:21Z,2020-02-15T06:59:51Z +6115,227,2,3065,0.99,2005-06-20T13:53:53Z,2020-02-15T06:59:51Z +6116,227,1,3576,5.99,2005-07-06T03:40:01Z,2020-02-15T06:59:51Z +6117,227,2,4340,2.99,2005-07-07T18:41:46Z,2020-02-15T06:59:51Z +6118,227,2,4459,4.99,2005-07-07T23:48:52Z,2020-02-15T06:59:51Z +6119,227,1,4680,2.99,2005-07-08T10:35:28Z,2020-02-15T06:59:51Z +6120,227,1,5046,3.99,2005-07-09T03:34:57Z,2020-02-15T06:59:51Z +6121,227,1,7132,7.99,2005-07-27T06:28:34Z,2020-02-15T06:59:51Z +6122,227,1,8219,2.99,2005-07-28T23:46:31Z,2020-02-15T06:59:51Z +6123,227,1,8234,0.99,2005-07-29T00:19:20Z,2020-02-15T06:59:51Z +6124,227,1,8384,0.99,2005-07-29T05:38:43Z,2020-02-15T06:59:51Z +6125,227,2,8417,4.99,2005-07-29T06:53:36Z,2020-02-15T06:59:51Z +6126,227,1,8936,2.99,2005-07-30T02:47:13Z,2020-02-15T06:59:51Z +6127,227,2,9521,2.99,2005-07-31T00:52:24Z,2020-02-15T06:59:51Z +6128,227,2,10999,3.99,2005-08-02T04:53:13Z,2020-02-15T06:59:51Z +6129,227,2,11892,0.99,2005-08-17T15:13:21Z,2020-02-15T06:59:51Z +6130,227,2,13379,4.99,2005-08-19T21:33:39Z,2020-02-15T06:59:51Z +6131,227,2,15406,0.99,2005-08-22T23:21:22Z,2020-02-15T06:59:51Z +6132,227,2,15976,4.99,2005-08-23T20:07:08Z,2020-02-15T06:59:51Z +6133,227,2,13374,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6134,228,2,492,4.99,2005-05-28T00:24:58Z,2020-02-15T06:59:51Z +6135,228,2,1070,0.99,2005-05-31T09:39:56Z,2020-02-15T06:59:51Z +6136,228,2,2284,3.99,2005-06-18T06:59:51Z,2020-02-15T06:59:51Z +6137,228,2,2863,2.99,2005-06-19T23:58:38Z,2020-02-15T06:59:51Z +6138,228,2,2934,2.99,2005-06-20T05:05:53Z,2020-02-15T06:59:51Z +6139,228,2,3433,3.99,2005-06-21T19:07:19Z,2020-02-15T06:59:51Z +6140,228,2,3538,0.99,2005-07-06T01:37:07Z,2020-02-15T06:59:51Z +6141,228,2,3710,8.99,2005-07-06T10:28:53Z,2020-02-15T06:59:51Z +6142,228,1,3715,6.99,2005-07-06T10:51:48Z,2020-02-15T06:59:51Z +6143,228,2,3796,0.99,2005-07-06T14:45:22Z,2020-02-15T06:59:51Z +6144,228,1,4217,3.99,2005-07-07T12:08:59Z,2020-02-15T06:59:51Z +6145,228,1,4636,4.99,2005-07-08T08:44:32Z,2020-02-15T06:59:51Z +6146,228,1,4909,0.99,2005-07-08T21:07:24Z,2020-02-15T06:59:51Z +6147,228,1,5151,2.99,2005-07-09T08:31:03Z,2020-02-15T06:59:51Z +6148,228,1,5320,4.99,2005-07-09T16:23:32Z,2020-02-15T06:59:51Z +6149,228,2,5902,0.99,2005-07-10T20:31:24Z,2020-02-15T06:59:51Z +6150,228,2,6141,1.99,2005-07-11T08:52:16Z,2020-02-15T06:59:51Z +6151,228,1,6948,2.99,2005-07-26T23:43:49Z,2020-02-15T06:59:51Z +6152,228,2,7509,8.99,2005-07-27T20:37:19Z,2020-02-15T06:59:51Z +6153,228,1,7601,0.99,2005-07-27T23:48:15Z,2020-02-15T06:59:51Z +6154,228,1,8147,2.99,2005-07-28T20:37:56Z,2020-02-15T06:59:51Z +6155,228,1,10585,4.99,2005-08-01T14:00:42Z,2020-02-15T06:59:51Z +6156,228,1,12304,0.99,2005-08-18T05:44:29Z,2020-02-15T06:59:51Z +6157,228,2,12952,2.99,2005-08-19T06:00:52Z,2020-02-15T06:59:51Z +6158,228,2,13458,4.99,2005-08-20T00:35:30Z,2020-02-15T06:59:51Z +6159,228,2,12672,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6160,228,1,15234,0,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6161,229,1,2200,4.99,2005-06-18T01:59:16Z,2020-02-15T06:59:51Z +6162,229,1,3208,0.99,2005-06-21T00:50:03Z,2020-02-15T06:59:51Z +6163,229,1,3277,7.99,2005-06-21T05:36:37Z,2020-02-15T06:59:51Z +6164,229,2,3280,0.99,2005-06-21T06:08:12Z,2020-02-15T06:59:51Z +6165,229,2,3933,4.99,2005-07-06T21:06:37Z,2020-02-15T06:59:51Z +6166,229,2,4458,2.99,2005-07-07T23:47:47Z,2020-02-15T06:59:51Z +6167,229,1,4515,4.99,2005-07-08T02:42:03Z,2020-02-15T06:59:51Z +6168,229,2,4694,0.99,2005-07-08T11:07:37Z,2020-02-15T06:59:51Z +6169,229,1,5623,2.99,2005-07-10T05:41:38Z,2020-02-15T06:59:51Z +6170,229,2,6155,4.99,2005-07-11T09:45:31Z,2020-02-15T06:59:51Z +6171,229,2,6578,4.99,2005-07-12T06:15:41Z,2020-02-15T06:59:51Z +6172,229,1,6880,2.99,2005-07-12T20:41:35Z,2020-02-15T06:59:51Z +6173,229,2,7305,0.99,2005-07-27T12:57:06Z,2020-02-15T06:59:51Z +6174,229,2,7308,5.99,2005-07-27T13:00:25Z,2020-02-15T06:59:51Z +6175,229,2,7629,0.99,2005-07-28T01:00:09Z,2020-02-15T06:59:51Z +6176,229,2,7640,7.99,2005-07-28T01:14:49Z,2020-02-15T06:59:51Z +6177,229,2,9913,3.99,2005-07-31T14:51:04Z,2020-02-15T06:59:51Z +6178,229,1,11521,4.99,2005-08-17T00:04:54Z,2020-02-15T06:59:51Z +6179,229,1,12866,2.99,2005-08-19T02:39:47Z,2020-02-15T06:59:51Z +6180,229,2,13306,0.99,2005-08-19T18:57:29Z,2020-02-15T06:59:51Z +6181,229,2,13431,4.99,2005-08-19T23:28:15Z,2020-02-15T06:59:51Z +6182,229,1,13679,5.99,2005-08-20T08:39:34Z,2020-02-15T06:59:51Z +6183,229,1,15740,4.99,2005-08-23T12:07:51Z,2020-02-15T06:59:51Z +6184,229,2,15912,2.99,2005-08-23T17:47:40Z,2020-02-15T06:59:51Z +6185,229,2,13295,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6186,230,1,32,0.99,2005-05-25T04:06:21Z,2020-02-15T06:59:51Z +6187,230,1,1078,4.99,2005-05-31T10:28:33Z,2020-02-15T06:59:51Z +6188,230,2,1468,3.99,2005-06-15T20:48:22Z,2020-02-15T06:59:51Z +6189,230,1,1744,4.99,2005-06-16T16:39:58Z,2020-02-15T06:59:51Z +6190,230,2,1793,0.99,2005-06-16T20:07:27Z,2020-02-15T06:59:51Z +6191,230,2,2450,8.99,2005-06-18T19:25:47Z,2020-02-15T06:59:51Z +6192,230,2,2675,0.99,2005-06-19T11:52:15Z,2020-02-15T06:59:51Z +6193,230,1,2777,0.99,2005-06-19T18:16:26Z,2020-02-15T06:59:51Z +6194,230,1,4509,3.99,2005-07-08T02:32:38Z,2020-02-15T06:59:51Z +6195,230,1,4935,0.99,2005-07-08T22:20:56Z,2020-02-15T06:59:51Z +6196,230,1,5045,4.99,2005-07-09T03:33:32Z,2020-02-15T06:59:51Z +6197,230,1,5061,0.99,2005-07-09T04:30:50Z,2020-02-15T06:59:51Z +6198,230,2,5269,2.99,2005-07-09T14:23:05Z,2020-02-15T06:59:51Z +6199,230,2,6126,4.99,2005-07-11T08:06:56Z,2020-02-15T06:59:51Z +6200,230,1,6251,2.99,2005-07-11T15:06:20Z,2020-02-15T06:59:51Z +6201,230,2,7333,4.99,2005-07-27T13:59:11Z,2020-02-15T06:59:51Z +6202,230,2,7390,4.99,2005-07-27T15:59:19Z,2020-02-15T06:59:51Z +6203,230,2,8032,4.99,2005-07-28T16:17:00Z,2020-02-15T06:59:51Z +6204,230,2,8653,0.99,2005-07-29T15:04:23Z,2020-02-15T06:59:51Z +6205,230,1,8815,2.99,2005-07-29T21:51:26Z,2020-02-15T06:59:51Z +6206,230,2,9778,3.99,2005-07-31T10:02:04Z,2020-02-15T06:59:51Z +6207,230,2,10050,3.99,2005-07-31T19:13:29Z,2020-02-15T06:59:51Z +6208,230,1,10057,9.99,2005-07-31T19:20:18Z,2020-02-15T06:59:51Z +6209,230,2,10874,2.99,2005-08-02T00:31:00Z,2020-02-15T06:59:51Z +6210,230,2,11148,5.99,2005-08-02T09:47:08Z,2020-02-15T06:59:51Z +6211,230,1,11552,5.99,2005-08-17T01:04:29Z,2020-02-15T06:59:51Z +6212,230,2,11914,2.99,2005-08-17T16:04:42Z,2020-02-15T06:59:51Z +6213,230,1,12079,1.99,2005-08-17T22:04:17Z,2020-02-15T06:59:51Z +6214,230,2,12523,7.99,2005-08-18T13:45:41Z,2020-02-15T06:59:51Z +6215,230,2,12542,0.99,2005-08-18T14:21:11Z,2020-02-15T06:59:51Z +6216,230,2,14017,0.99,2005-08-20T20:55:32Z,2020-02-15T06:59:51Z +6217,230,1,14073,5.99,2005-08-20T23:12:57Z,2020-02-15T06:59:51Z +6218,230,1,14340,2.99,2005-08-21T08:38:21Z,2020-02-15T06:59:51Z +6219,231,1,329,5.99,2005-05-27T01:57:14Z,2020-02-15T06:59:51Z +6220,231,1,479,6.99,2005-05-27T22:39:10Z,2020-02-15T06:59:51Z +6221,231,1,512,8.99,2005-05-28T03:07:50Z,2020-02-15T06:59:51Z +6222,231,2,2423,0.99,2005-06-18T17:32:08Z,2020-02-15T06:59:51Z +6223,231,2,3561,9.99,2005-07-06T02:54:33Z,2020-02-15T06:59:51Z +6224,231,1,3839,2.99,2005-07-06T16:30:30Z,2020-02-15T06:59:51Z +6225,231,2,4289,0.99,2005-07-07T15:45:58Z,2020-02-15T06:59:51Z +6226,231,2,4969,0.99,2005-07-08T23:51:26Z,2020-02-15T06:59:51Z +6227,231,1,5096,2.99,2005-07-09T06:08:23Z,2020-02-15T06:59:51Z +6228,231,1,5560,5.99,2005-07-10T03:13:24Z,2020-02-15T06:59:51Z +6229,231,1,6862,0.99,2005-07-12T19:58:09Z,2020-02-15T06:59:51Z +6230,231,1,6877,1.99,2005-07-12T20:32:58Z,2020-02-15T06:59:51Z +6231,231,1,8556,0.99,2005-07-29T11:18:27Z,2020-02-15T06:59:51Z +6232,231,2,8949,5.99,2005-07-30T03:17:02Z,2020-02-15T06:59:51Z +6233,231,2,9711,2.99,2005-07-31T08:06:41Z,2020-02-15T06:59:51Z +6234,231,2,11113,2.99,2005-08-02T08:26:24Z,2020-02-15T06:59:51Z +6235,231,1,11202,7.99,2005-08-02T11:51:57Z,2020-02-15T06:59:51Z +6236,231,1,11581,5.99,2005-08-17T02:03:02Z,2020-02-15T06:59:51Z +6237,231,1,12214,0.99,2005-08-18T02:34:22Z,2020-02-15T06:59:51Z +6238,231,2,12230,8.99,2005-08-18T03:11:04Z,2020-02-15T06:59:51Z +6239,231,1,12231,3.99,2005-08-18T03:11:44Z,2020-02-15T06:59:51Z +6240,231,2,13983,6.99,2005-08-20T19:08:32Z,2020-02-15T06:59:51Z +6241,231,1,14026,0.99,2005-08-20T21:21:08Z,2020-02-15T06:59:51Z +6242,231,1,14478,4.99,2005-08-21T13:33:28Z,2020-02-15T06:59:51Z +6243,231,2,14806,2.99,2005-08-22T00:53:08Z,2020-02-15T06:59:51Z +6244,231,1,15389,3.99,2005-08-22T22:51:13Z,2020-02-15T06:59:51Z +6245,232,1,28,4.99,2005-05-25T03:42:37Z,2020-02-15T06:59:51Z +6246,232,1,805,3.99,2005-05-29T18:18:18Z,2020-02-15T06:59:51Z +6247,232,2,1619,0.99,2005-06-16T07:14:13Z,2020-02-15T06:59:51Z +6248,232,1,2833,8.99,2005-06-19T21:34:54Z,2020-02-15T06:59:51Z +6249,232,2,6234,5.99,2005-07-11T14:16:10Z,2020-02-15T06:59:51Z +6250,232,1,6309,2.99,2005-07-11T18:13:24Z,2020-02-15T06:59:51Z +6251,232,1,7123,5.99,2005-07-27T06:08:48Z,2020-02-15T06:59:51Z +6252,232,2,7653,4.99,2005-07-28T01:58:30Z,2020-02-15T06:59:51Z +6253,232,2,7707,0.99,2005-07-28T04:07:47Z,2020-02-15T06:59:51Z +6254,232,1,7749,2.99,2005-07-28T05:53:36Z,2020-02-15T06:59:51Z +6255,232,1,7990,2.99,2005-07-28T14:43:08Z,2020-02-15T06:59:51Z +6256,232,1,8306,2.99,2005-07-29T03:12:26Z,2020-02-15T06:59:51Z +6257,232,2,8401,4.99,2005-07-29T06:25:08Z,2020-02-15T06:59:51Z +6258,232,2,8655,4.99,2005-07-29T15:04:42Z,2020-02-15T06:59:51Z +6259,232,2,9270,0.99,2005-07-30T15:03:16Z,2020-02-15T06:59:51Z +6260,232,2,9330,10.99,2005-07-30T17:44:24Z,2020-02-15T06:59:51Z +6261,232,2,9365,2.99,2005-07-30T18:46:02Z,2020-02-15T06:59:51Z +6262,232,2,10157,2.99,2005-07-31T22:38:48Z,2020-02-15T06:59:51Z +6263,232,1,10539,6.99,2005-08-01T12:23:00Z,2020-02-15T06:59:51Z +6264,232,2,11861,0.99,2005-08-17T13:53:47Z,2020-02-15T06:59:51Z +6265,232,2,12853,2.99,2005-08-19T02:15:32Z,2020-02-15T06:59:51Z +6266,232,2,13707,2.99,2005-08-20T09:33:58Z,2020-02-15T06:59:51Z +6267,232,2,14527,0.99,2005-08-21T15:07:42Z,2020-02-15T06:59:51Z +6268,232,2,14857,0.99,2005-08-22T02:42:39Z,2020-02-15T06:59:51Z +6269,232,2,15553,2.99,2005-08-23T04:33:39Z,2020-02-15T06:59:51Z +6270,233,2,1992,2.99,2005-06-17T10:58:53Z,2020-02-15T06:59:51Z +6271,233,2,2244,2.99,2005-06-18T04:46:33Z,2020-02-15T06:59:51Z +6272,233,1,2424,2.99,2005-06-18T17:35:08Z,2020-02-15T06:59:51Z +6273,233,2,2443,4.99,2005-06-18T18:52:30Z,2020-02-15T06:59:51Z +6274,233,1,3832,2.99,2005-07-06T16:12:23Z,2020-02-15T06:59:51Z +6275,233,1,4015,5.99,2005-07-07T00:59:46Z,2020-02-15T06:59:51Z +6276,233,1,4885,4.99,2005-07-08T19:51:17Z,2020-02-15T06:59:51Z +6277,233,2,5267,5.99,2005-07-09T14:21:10Z,2020-02-15T06:59:51Z +6278,233,1,5846,2.99,2005-07-10T17:25:24Z,2020-02-15T06:59:51Z +6279,233,1,6319,4.99,2005-07-11T18:50:45Z,2020-02-15T06:59:51Z +6280,233,1,6794,2.99,2005-07-12T16:38:23Z,2020-02-15T06:59:51Z +6281,233,1,7056,8.99,2005-07-27T03:46:27Z,2020-02-15T06:59:51Z +6282,233,2,7387,4.99,2005-07-27T15:54:19Z,2020-02-15T06:59:51Z +6283,233,2,8385,5.99,2005-07-29T05:39:16Z,2020-02-15T06:59:51Z +6284,233,2,8530,2.99,2005-07-29T10:26:14Z,2020-02-15T06:59:51Z +6285,233,2,8596,0.99,2005-07-29T12:48:54Z,2020-02-15T06:59:51Z +6286,233,1,9574,0.99,2005-07-31T02:49:20Z,2020-02-15T06:59:51Z +6287,233,1,10582,4.99,2005-08-01T13:54:22Z,2020-02-15T06:59:51Z +6288,233,1,12443,5.99,2005-08-18T10:50:59Z,2020-02-15T06:59:51Z +6289,233,2,14357,2.99,2005-08-21T09:13:09Z,2020-02-15T06:59:51Z +6290,233,2,15285,2.99,2005-08-22T19:17:24Z,2020-02-15T06:59:51Z +6291,233,1,15790,1.99,2005-08-23T14:01:07Z,2020-02-15T06:59:51Z +6292,233,2,15821,0.99,2005-08-23T15:03:58Z,2020-02-15T06:59:51Z +6293,234,2,1125,4.99,2005-05-31T17:23:44Z,2020-02-15T06:59:51Z +6294,234,2,1245,3.99,2005-06-15T05:09:01Z,2020-02-15T06:59:51Z +6295,234,2,1645,0.99,2005-06-16T09:10:06Z,2020-02-15T06:59:51Z +6296,234,1,1674,2.99,2005-06-16T10:57:00Z,2020-02-15T06:59:51Z +6297,234,2,1993,5.99,2005-06-17T10:59:24Z,2020-02-15T06:59:51Z +6298,234,1,2005,4.99,2005-06-17T11:44:54Z,2020-02-15T06:59:51Z +6299,234,2,2511,5.99,2005-06-18T23:45:30Z,2020-02-15T06:59:51Z +6300,234,2,3185,6.99,2005-06-20T22:58:01Z,2020-02-15T06:59:51Z +6301,234,2,3199,4.99,2005-06-21T00:12:40Z,2020-02-15T06:59:51Z +6302,234,2,4686,0.99,2005-07-08T10:53:39Z,2020-02-15T06:59:51Z +6303,234,1,4721,7.99,2005-07-08T12:39:31Z,2020-02-15T06:59:51Z +6304,234,2,10133,5.99,2005-07-31T21:55:07Z,2020-02-15T06:59:51Z +6305,234,2,10541,0.99,2005-08-01T12:24:54Z,2020-02-15T06:59:51Z +6306,234,2,10580,6.99,2005-08-01T13:51:14Z,2020-02-15T06:59:51Z +6307,234,2,10968,7.99,2005-08-02T04:03:13Z,2020-02-15T06:59:51Z +6308,234,1,11050,4.99,2005-08-02T06:17:16Z,2020-02-15T06:59:51Z +6309,234,1,11073,0.99,2005-08-02T07:13:03Z,2020-02-15T06:59:51Z +6310,234,1,11481,3.99,2005-08-02T22:18:41Z,2020-02-15T06:59:51Z +6311,234,1,11882,3.99,2005-08-17T14:33:41Z,2020-02-15T06:59:51Z +6312,234,1,12226,0.99,2005-08-18T03:00:48Z,2020-02-15T06:59:51Z +6313,234,2,12863,4.99,2005-08-19T02:35:59Z,2020-02-15T06:59:51Z +6314,234,1,12921,5.99,2005-08-19T04:47:48Z,2020-02-15T06:59:51Z +6315,234,2,13349,2.99,2005-08-19T20:43:16Z,2020-02-15T06:59:51Z +6316,234,2,15037,5.99,2005-08-22T09:36:33Z,2020-02-15T06:59:51Z +6317,234,1,15129,2.99,2005-08-22T13:03:52Z,2020-02-15T06:59:51Z +6318,234,1,15778,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6319,235,2,807,2.99,2005-05-29T18:50:50Z,2020-02-15T06:59:51Z +6320,235,1,1148,0.99,2005-05-31T20:38:40Z,2020-02-15T06:59:51Z +6321,235,1,1493,4.99,2005-06-15T21:50:32Z,2020-02-15T06:59:51Z +6322,235,2,1811,0.99,2005-06-16T21:06:20Z,2020-02-15T06:59:51Z +6323,235,2,3581,2.99,2005-07-06T03:57:35Z,2020-02-15T06:59:51Z +6324,235,1,3752,6.99,2005-07-06T12:30:12Z,2020-02-15T06:59:51Z +6325,235,1,3968,4.99,2005-07-06T22:47:09Z,2020-02-15T06:59:51Z +6326,235,2,4592,2.99,2005-07-08T06:31:28Z,2020-02-15T06:59:51Z +6327,235,1,5790,4.99,2005-07-10T14:15:21Z,2020-02-15T06:59:51Z +6328,235,1,6047,2.99,2005-07-11T03:27:01Z,2020-02-15T06:59:51Z +6329,235,2,6352,4.99,2005-07-11T20:34:13Z,2020-02-15T06:59:51Z +6330,235,2,6466,4.99,2005-07-12T01:21:03Z,2020-02-15T06:59:51Z +6331,235,1,8120,0.99,2005-07-28T19:24:24Z,2020-02-15T06:59:51Z +6332,235,2,8446,6.99,2005-07-29T07:38:10Z,2020-02-15T06:59:51Z +6333,235,2,8781,0.99,2005-07-29T20:20:16Z,2020-02-15T06:59:51Z +6334,235,1,9019,5.99,2005-07-30T05:28:53Z,2020-02-15T06:59:51Z +6335,235,2,9519,6.99,2005-07-31T00:45:57Z,2020-02-15T06:59:51Z +6336,235,1,9587,3.99,2005-07-31T03:10:30Z,2020-02-15T06:59:51Z +6337,235,2,10155,0.99,2005-07-31T22:31:43Z,2020-02-15T06:59:51Z +6338,235,2,12332,2.99,2005-08-18T06:51:05Z,2020-02-15T06:59:51Z +6339,235,1,12502,4.99,2005-08-18T13:16:31Z,2020-02-15T06:59:51Z +6340,235,2,13070,0.99,2005-08-19T09:56:23Z,2020-02-15T06:59:51Z +6341,235,1,13469,0.99,2005-08-20T00:59:36Z,2020-02-15T06:59:51Z +6342,235,2,14749,3.99,2005-08-21T23:08:33Z,2020-02-15T06:59:51Z +6343,235,1,15034,6.99,2005-08-22T09:33:08Z,2020-02-15T06:59:51Z +6344,236,2,262,2.99,2005-05-26T15:46:56Z,2020-02-15T06:59:51Z +6345,236,2,344,2.99,2005-05-27T04:30:22Z,2020-02-15T06:59:51Z +6346,236,1,1032,2.99,2005-05-31T04:28:43Z,2020-02-15T06:59:51Z +6347,236,1,1262,0.99,2005-06-15T06:54:53Z,2020-02-15T06:59:51Z +6348,236,2,1308,5.99,2005-06-15T10:07:48Z,2020-02-15T06:59:51Z +6349,236,2,2139,8.99,2005-06-17T21:29:34Z,2020-02-15T06:59:51Z +6350,236,2,2311,6.99,2005-06-18T08:51:29Z,2020-02-15T06:59:51Z +6351,236,1,2630,2.99,2005-06-19T08:47:21Z,2020-02-15T06:59:51Z +6352,236,2,2840,3.99,2005-06-19T22:17:44Z,2020-02-15T06:59:51Z +6353,236,1,3353,4.99,2005-06-21T11:29:23Z,2020-02-15T06:59:51Z +6354,236,2,3460,2.99,2005-06-21T21:46:56Z,2020-02-15T06:59:51Z +6355,236,1,3645,0.99,2005-07-06T07:22:09Z,2020-02-15T06:59:51Z +6356,236,2,3857,4.99,2005-07-06T17:07:54Z,2020-02-15T06:59:51Z +6357,236,2,4749,4.99,2005-07-08T14:05:58Z,2020-02-15T06:59:51Z +6358,236,1,4959,0.99,2005-07-08T23:22:23Z,2020-02-15T06:59:51Z +6359,236,1,5404,2.99,2005-07-09T20:10:43Z,2020-02-15T06:59:51Z +6360,236,1,5545,3.99,2005-07-10T02:50:29Z,2020-02-15T06:59:51Z +6361,236,2,5938,3.99,2005-07-10T22:17:42Z,2020-02-15T06:59:51Z +6362,236,2,6049,0.99,2005-07-11T03:32:32Z,2020-02-15T06:59:51Z +6363,236,2,6281,4.99,2005-07-11T16:38:16Z,2020-02-15T06:59:51Z +6364,236,1,6303,2.99,2005-07-11T17:55:43Z,2020-02-15T06:59:51Z +6365,236,2,6996,4.99,2005-07-27T01:13:45Z,2020-02-15T06:59:51Z +6366,236,2,7047,4.99,2005-07-27T03:31:11Z,2020-02-15T06:59:51Z +6367,236,2,7253,0.99,2005-07-27T10:46:37Z,2020-02-15T06:59:51Z +6368,236,1,7780,5.99,2005-07-28T07:11:55Z,2020-02-15T06:59:51Z +6369,236,1,7792,4.99,2005-07-28T07:24:02Z,2020-02-15T06:59:51Z +6370,236,2,7798,2.99,2005-07-28T07:41:59Z,2020-02-15T06:59:51Z +6371,236,1,8657,2.99,2005-07-29T15:09:25Z,2020-02-15T06:59:51Z +6372,236,1,9011,5.99,2005-07-30T05:16:29Z,2020-02-15T06:59:51Z +6373,236,1,9934,2.99,2005-07-31T15:25:26Z,2020-02-15T06:59:51Z +6374,236,2,10137,4.99,2005-07-31T22:01:41Z,2020-02-15T06:59:51Z +6375,236,2,11139,6.99,2005-08-02T09:27:36Z,2020-02-15T06:59:51Z +6376,236,2,11486,3.99,2005-08-02T22:34:06Z,2020-02-15T06:59:51Z +6377,236,2,11507,5.99,2005-08-16T23:26:43Z,2020-02-15T06:59:51Z +6378,236,1,11895,4.99,2005-08-17T15:15:07Z,2020-02-15T06:59:51Z +6379,236,1,12975,2.99,2005-08-19T06:51:19Z,2020-02-15T06:59:51Z +6380,236,1,13364,2.99,2005-08-19T21:09:30Z,2020-02-15T06:59:51Z +6381,236,1,13443,7.99,2005-08-19T23:53:42Z,2020-02-15T06:59:51Z +6382,236,2,14321,4.99,2005-08-21T08:05:12Z,2020-02-15T06:59:51Z +6383,236,1,14364,7.99,2005-08-21T09:25:11Z,2020-02-15T06:59:51Z +6384,236,2,14722,4.99,2005-08-21T21:50:53Z,2020-02-15T06:59:51Z +6385,236,1,12988,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6386,237,2,133,0.99,2005-05-25T21:48:30Z,2020-02-15T06:59:51Z +6387,237,1,182,4.99,2005-05-26T04:49:17Z,2020-02-15T06:59:51Z +6388,237,1,1500,0.99,2005-06-15T22:00:45Z,2020-02-15T06:59:51Z +6389,237,2,1518,0.99,2005-06-15T23:36:37Z,2020-02-15T06:59:51Z +6390,237,1,2156,4.99,2005-06-17T23:08:12Z,2020-02-15T06:59:51Z +6391,237,1,2492,2.99,2005-06-18T22:04:15Z,2020-02-15T06:59:51Z +6392,237,2,3069,2.99,2005-06-20T14:13:00Z,2020-02-15T06:59:51Z +6393,237,1,4844,4.99,2005-07-08T18:28:13Z,2020-02-15T06:59:51Z +6394,237,2,6053,4.99,2005-07-11T03:51:59Z,2020-02-15T06:59:51Z +6395,237,1,7193,2.99,2005-07-27T08:37:00Z,2020-02-15T06:59:51Z +6396,237,2,7330,3.99,2005-07-27T13:56:46Z,2020-02-15T06:59:51Z +6397,237,1,7812,4.99,2005-07-28T08:06:52Z,2020-02-15T06:59:51Z +6398,237,2,7951,8.99,2005-07-28T13:21:16Z,2020-02-15T06:59:51Z +6399,237,2,8102,2.99,2005-07-28T18:49:43Z,2020-02-15T06:59:51Z +6400,237,2,8748,2.99,2005-07-29T19:08:37Z,2020-02-15T06:59:51Z +6401,237,2,8799,6.99,2005-07-29T21:16:47Z,2020-02-15T06:59:51Z +6402,237,1,8835,3.99,2005-07-29T22:44:35Z,2020-02-15T06:59:51Z +6403,237,1,9276,5.99,2005-07-30T15:09:28Z,2020-02-15T06:59:51Z +6404,237,1,9661,4.99,2005-07-31T06:06:37Z,2020-02-15T06:59:51Z +6405,237,2,9715,1.99,2005-07-31T08:16:58Z,2020-02-15T06:59:51Z +6406,237,2,10056,0.99,2005-07-31T19:19:13Z,2020-02-15T06:59:51Z +6407,237,2,10058,2.99,2005-07-31T19:20:21Z,2020-02-15T06:59:51Z +6408,237,2,11125,4.99,2005-08-02T08:55:35Z,2020-02-15T06:59:51Z +6409,237,2,11479,11.99,2005-08-02T22:18:13Z,2020-02-15T06:59:51Z +6410,237,2,11772,5.99,2005-08-17T10:18:57Z,2020-02-15T06:59:51Z +6411,237,1,12469,0.99,2005-08-18T11:53:07Z,2020-02-15T06:59:51Z +6412,237,2,13914,6.99,2005-08-20T16:38:57Z,2020-02-15T06:59:51Z +6413,237,2,13922,6.99,2005-08-20T17:02:37Z,2020-02-15T06:59:51Z +6414,237,2,13969,6.99,2005-08-20T18:42:40Z,2020-02-15T06:59:51Z +6415,237,2,14453,3.99,2005-08-21T12:33:34Z,2020-02-15T06:59:51Z +6416,237,2,15139,8.99,2005-08-22T13:38:11Z,2020-02-15T06:59:51Z +6417,237,1,15337,0.99,2005-08-22T20:49:51Z,2020-02-15T06:59:51Z +6418,237,2,15931,1.99,2005-08-23T18:28:09Z,2020-02-15T06:59:51Z +6419,238,2,315,4.99,2005-05-26T23:12:55Z,2020-02-15T06:59:51Z +6420,238,1,842,2.99,2005-05-30T00:32:04Z,2020-02-15T06:59:51Z +6421,238,1,1199,2.99,2005-06-15T01:58:50Z,2020-02-15T06:59:51Z +6422,238,1,1660,4.99,2005-06-16T10:12:55Z,2020-02-15T06:59:51Z +6423,238,1,3181,2.99,2005-06-20T22:51:02Z,2020-02-15T06:59:51Z +6424,238,1,4143,0.99,2005-07-07T08:22:07Z,2020-02-15T06:59:51Z +6425,238,1,5616,5.99,2005-07-10T05:21:11Z,2020-02-15T06:59:51Z +6426,238,2,6403,0.99,2005-07-11T22:46:25Z,2020-02-15T06:59:51Z +6427,238,2,7243,4.99,2005-07-27T10:26:11Z,2020-02-15T06:59:51Z +6428,238,1,8310,8.99,2005-07-29T03:25:56Z,2020-02-15T06:59:51Z +6429,238,1,8382,6.99,2005-07-29T05:33:21Z,2020-02-15T06:59:51Z +6430,238,1,8465,0.99,2005-07-29T08:20:49Z,2020-02-15T06:59:51Z +6431,238,1,9065,4.99,2005-07-30T07:25:09Z,2020-02-15T06:59:51Z +6432,238,2,9841,7.99,2005-07-31T12:24:19Z,2020-02-15T06:59:51Z +6433,238,1,10659,5.99,2005-08-01T16:40:34Z,2020-02-15T06:59:51Z +6434,238,2,11543,5.99,2005-08-17T00:54:28Z,2020-02-15T06:59:51Z +6435,238,2,11632,2.99,2005-08-17T04:29:32Z,2020-02-15T06:59:51Z +6436,238,1,11897,2.99,2005-08-17T15:24:06Z,2020-02-15T06:59:51Z +6437,238,1,14312,4.99,2005-08-21T07:48:34Z,2020-02-15T06:59:51Z +6438,238,1,14343,8.99,2005-08-21T08:40:21Z,2020-02-15T06:59:51Z +6439,238,1,15455,0.99,2005-08-23T01:05:00Z,2020-02-15T06:59:51Z +6440,239,2,8,4.99,2005-05-24T23:31:46Z,2020-02-15T06:59:51Z +6441,239,1,444,2.99,2005-05-27T18:39:15Z,2020-02-15T06:59:51Z +6442,239,1,621,4.99,2005-05-28T15:58:12Z,2020-02-15T06:59:51Z +6443,239,1,636,6.99,2005-05-28T17:47:58Z,2020-02-15T06:59:51Z +6444,239,1,1022,7.99,2005-05-31T03:16:45Z,2020-02-15T06:59:51Z +6445,239,2,1082,5.99,2005-05-31T11:02:01Z,2020-02-15T06:59:51Z +6446,239,1,1160,4.99,2005-06-14T23:00:34Z,2020-02-15T06:59:51Z +6447,239,2,1560,4.99,2005-06-16T02:36:43Z,2020-02-15T06:59:51Z +6448,239,2,2215,2.99,2005-06-18T02:48:21Z,2020-02-15T06:59:51Z +6449,239,1,2390,4.99,2005-06-18T15:29:26Z,2020-02-15T06:59:51Z +6450,239,1,3383,5.99,2005-06-21T14:07:19Z,2020-02-15T06:59:51Z +6451,239,2,3547,0.99,2005-07-06T02:18:06Z,2020-02-15T06:59:51Z +6452,239,1,3552,5.99,2005-07-06T02:34:09Z,2020-02-15T06:59:51Z +6453,239,2,4920,7.99,2005-07-08T21:42:10Z,2020-02-15T06:59:51Z +6454,239,2,5651,4.99,2005-07-10T07:17:13Z,2020-02-15T06:59:51Z +6455,239,1,5960,0.99,2005-07-10T23:38:34Z,2020-02-15T06:59:51Z +6456,239,1,6573,0.99,2005-07-12T06:03:40Z,2020-02-15T06:59:51Z +6457,239,2,7012,8.99,2005-07-27T02:01:03Z,2020-02-15T06:59:51Z +6458,239,1,7426,0.99,2005-07-27T17:19:46Z,2020-02-15T06:59:51Z +6459,239,2,7491,2.99,2005-07-27T19:53:23Z,2020-02-15T06:59:51Z +6460,239,1,8457,6.99,2005-07-29T07:59:03Z,2020-02-15T06:59:51Z +6461,239,2,9676,0.99,2005-07-31T06:39:13Z,2020-02-15T06:59:51Z +6462,239,1,9863,5.99,2005-07-31T13:05:29Z,2020-02-15T06:59:51Z +6463,239,1,10755,0.99,2005-08-01T20:14:14Z,2020-02-15T06:59:51Z +6464,239,2,10923,2.99,2005-08-02T02:15:01Z,2020-02-15T06:59:51Z +6465,239,1,11487,2.99,2005-08-02T22:35:05Z,2020-02-15T06:59:51Z +6466,239,2,11900,4.99,2005-08-17T15:30:44Z,2020-02-15T06:59:51Z +6467,239,1,11968,0.99,2005-08-17T17:47:34Z,2020-02-15T06:59:51Z +6468,239,1,12340,4.99,2005-08-18T07:07:01Z,2020-02-15T06:59:51Z +6469,239,1,12721,1.99,2005-08-18T21:30:12Z,2020-02-15T06:59:51Z +6470,239,1,13175,4.99,2005-08-19T13:54:53Z,2020-02-15T06:59:51Z +6471,239,2,13427,4.99,2005-08-19T23:19:02Z,2020-02-15T06:59:51Z +6472,239,2,13999,3.99,2005-08-20T19:53:32Z,2020-02-15T06:59:51Z +6473,239,2,14062,1.99,2005-08-20T22:34:34Z,2020-02-15T06:59:51Z +6474,240,1,246,2.99,2005-05-26T13:57:07Z,2020-02-15T06:59:51Z +6475,240,1,460,2.99,2005-05-27T20:02:03Z,2020-02-15T06:59:51Z +6476,240,1,643,4.99,2005-05-28T18:52:11Z,2020-02-15T06:59:51Z +6477,240,2,2196,3.99,2005-06-18T01:47:07Z,2020-02-15T06:59:51Z +6478,240,1,2264,4.99,2005-06-18T05:58:45Z,2020-02-15T06:59:51Z +6479,240,2,2872,5.99,2005-06-20T00:38:21Z,2020-02-15T06:59:51Z +6480,240,2,4305,4.99,2005-07-07T17:07:11Z,2020-02-15T06:59:51Z +6481,240,2,5262,4.99,2005-07-09T14:08:01Z,2020-02-15T06:59:51Z +6482,240,1,5596,0.99,2005-07-10T04:43:14Z,2020-02-15T06:59:51Z +6483,240,1,6272,0.99,2005-07-11T16:03:49Z,2020-02-15T06:59:51Z +6484,240,2,6470,0.99,2005-07-12T01:29:41Z,2020-02-15T06:59:51Z +6485,240,1,6956,4.99,2005-07-26T23:55:57Z,2020-02-15T06:59:51Z +6486,240,1,7001,4.99,2005-07-27T01:25:34Z,2020-02-15T06:59:51Z +6487,240,1,7467,8.99,2005-07-27T18:51:54Z,2020-02-15T06:59:51Z +6488,240,2,7481,4.99,2005-07-27T19:20:25Z,2020-02-15T06:59:51Z +6489,240,1,7870,4.99,2005-07-28T10:16:03Z,2020-02-15T06:59:51Z +6490,240,2,8503,3.99,2005-07-29T09:16:50Z,2020-02-15T06:59:51Z +6491,240,2,8905,5.99,2005-07-30T01:11:11Z,2020-02-15T06:59:51Z +6492,240,1,10308,7.99,2005-08-01T04:22:49Z,2020-02-15T06:59:51Z +6493,240,1,11745,3.99,2005-08-17T09:00:01Z,2020-02-15T06:59:51Z +6494,240,2,12283,6.99,2005-08-18T04:54:25Z,2020-02-15T06:59:51Z +6495,240,2,13030,2.99,2005-08-19T08:28:11Z,2020-02-15T06:59:51Z +6496,240,2,13119,4.99,2005-08-19T11:44:59Z,2020-02-15T06:59:51Z +6497,240,1,13663,8.99,2005-08-20T08:12:33Z,2020-02-15T06:59:51Z +6498,240,2,14573,2.99,2005-08-21T16:44:32Z,2020-02-15T06:59:51Z +6499,240,2,15641,0.99,2005-08-23T08:06:49Z,2020-02-15T06:59:51Z +6500,241,1,627,7.99,2005-05-28T17:04:43Z,2020-02-15T06:59:51Z +6501,241,1,1059,3.99,2005-05-31T08:20:43Z,2020-02-15T06:59:51Z +6502,241,2,2428,0.99,2005-06-18T17:47:34Z,2020-02-15T06:59:51Z +6503,241,1,2455,0.99,2005-06-18T19:33:06Z,2020-02-15T06:59:51Z +6504,241,2,2478,5.99,2005-06-18T21:01:21Z,2020-02-15T06:59:51Z +6505,241,2,2683,2.99,2005-06-19T12:27:19Z,2020-02-15T06:59:51Z +6506,241,2,3258,0.99,2005-06-21T03:53:58Z,2020-02-15T06:59:51Z +6507,241,2,3822,0.99,2005-07-06T15:41:15Z,2020-02-15T06:59:51Z +6508,241,1,4731,0.99,2005-07-08T13:08:18Z,2020-02-15T06:59:51Z +6509,241,2,5017,2.99,2005-07-09T02:00:16Z,2020-02-15T06:59:51Z +6510,241,1,5211,0.99,2005-07-09T11:26:50Z,2020-02-15T06:59:51Z +6511,241,1,5438,4.99,2005-07-09T21:34:32Z,2020-02-15T06:59:51Z +6512,241,2,5525,3.99,2005-07-10T02:03:08Z,2020-02-15T06:59:51Z +6513,241,1,5981,4.99,2005-07-11T00:19:04Z,2020-02-15T06:59:51Z +6514,241,2,6090,6.99,2005-07-11T05:47:08Z,2020-02-15T06:59:51Z +6515,241,2,6245,2.99,2005-07-11T14:56:57Z,2020-02-15T06:59:51Z +6516,241,1,7320,0.99,2005-07-27T13:33:35Z,2020-02-15T06:59:51Z +6517,241,1,7434,2.99,2005-07-27T17:34:40Z,2020-02-15T06:59:51Z +6518,241,1,7860,2.99,2005-07-28T09:58:02Z,2020-02-15T06:59:51Z +6519,241,1,9500,6.99,2005-07-30T23:58:36Z,2020-02-15T06:59:51Z +6520,241,1,9528,3.99,2005-07-31T01:05:04Z,2020-02-15T06:59:51Z +6521,241,1,9944,5.99,2005-07-31T15:44:43Z,2020-02-15T06:59:51Z +6522,241,2,10447,3.99,2005-08-01T09:04:58Z,2020-02-15T06:59:51Z +6523,241,1,10652,2.99,2005-08-01T16:24:08Z,2020-02-15T06:59:51Z +6524,241,1,11423,1.99,2005-08-02T19:57:13Z,2020-02-15T06:59:51Z +6525,241,2,12418,4.99,2005-08-18T09:59:36Z,2020-02-15T06:59:51Z +6526,241,1,12956,4.99,2005-08-19T06:06:26Z,2020-02-15T06:59:51Z +6527,241,2,13077,2.99,2005-08-19T10:15:19Z,2020-02-15T06:59:51Z +6528,241,2,14269,7.99,2005-08-21T06:22:07Z,2020-02-15T06:59:51Z +6529,241,2,14485,2.99,2005-08-21T13:52:07Z,2020-02-15T06:59:51Z +6530,241,1,14936,0.99,2005-08-22T05:51:26Z,2020-02-15T06:59:51Z +6531,241,2,15137,2.99,2005-08-22T13:20:28Z,2020-02-15T06:59:51Z +6532,241,1,15429,2.99,2005-08-23T00:20:31Z,2020-02-15T06:59:51Z +6533,241,1,15767,4.99,2005-08-23T13:14:15Z,2020-02-15T06:59:51Z +6534,242,1,108,2.99,2005-05-25T18:30:05Z,2020-02-15T06:59:51Z +6535,242,2,283,3.99,2005-05-26T19:05:05Z,2020-02-15T06:59:51Z +6536,242,2,881,4.99,2005-05-30T06:15:36Z,2020-02-15T06:59:51Z +6537,242,2,1304,4.99,2005-06-15T09:56:02Z,2020-02-15T06:59:51Z +6538,242,1,1384,4.99,2005-06-15T15:22:03Z,2020-02-15T06:59:51Z +6539,242,1,1483,4.99,2005-06-15T21:21:58Z,2020-02-15T06:59:51Z +6540,242,2,1702,4.99,2005-06-16T13:21:05Z,2020-02-15T06:59:51Z +6541,242,1,2691,4.99,2005-06-19T13:06:50Z,2020-02-15T06:59:51Z +6542,242,2,2942,4.99,2005-06-20T05:27:31Z,2020-02-15T06:59:51Z +6543,242,1,3471,4.99,2005-07-05T22:51:44Z,2020-02-15T06:59:51Z +6544,242,2,3604,0.99,2005-07-06T05:25:22Z,2020-02-15T06:59:51Z +6545,242,1,4426,4.99,2005-07-07T22:28:32Z,2020-02-15T06:59:51Z +6546,242,2,4895,1.99,2005-07-08T20:22:05Z,2020-02-15T06:59:51Z +6547,242,2,5666,5.99,2005-07-10T08:10:29Z,2020-02-15T06:59:51Z +6548,242,2,7149,3.99,2005-07-27T07:10:40Z,2020-02-15T06:59:51Z +6549,242,1,8491,4.99,2005-07-29T09:02:13Z,2020-02-15T06:59:51Z +6550,242,1,9423,3.99,2005-07-30T21:10:14Z,2020-02-15T06:59:51Z +6551,242,1,9730,6.99,2005-07-31T08:50:08Z,2020-02-15T06:59:51Z +6552,242,2,10367,0.99,2005-08-01T06:12:19Z,2020-02-15T06:59:51Z +6553,242,2,10382,4.99,2005-08-01T06:36:45Z,2020-02-15T06:59:51Z +6554,242,2,10650,9.99,2005-08-01T16:18:45Z,2020-02-15T06:59:51Z +6555,242,2,11020,0.99,2005-08-02T05:29:48Z,2020-02-15T06:59:51Z +6556,242,1,11258,4.99,2005-08-02T13:45:39Z,2020-02-15T06:59:51Z +6557,242,2,11607,0.99,2005-08-17T03:36:06Z,2020-02-15T06:59:51Z +6558,242,1,11931,4.99,2005-08-17T16:35:14Z,2020-02-15T06:59:51Z +6559,242,2,12724,7.99,2005-08-18T21:37:20Z,2020-02-15T06:59:51Z +6560,242,1,12855,4.99,2005-08-19T02:18:58Z,2020-02-15T06:59:51Z +6561,242,1,13271,9.99,2005-08-19T17:42:06Z,2020-02-15T06:59:51Z +6562,242,2,13567,0.99,2005-08-20T04:49:21Z,2020-02-15T06:59:51Z +6563,242,2,13646,5.99,2005-08-20T07:47:08Z,2020-02-15T06:59:51Z +6564,242,1,14515,0.99,2005-08-21T14:52:14Z,2020-02-15T06:59:51Z +6565,242,1,15002,0.99,2005-08-22T08:06:00Z,2020-02-15T06:59:51Z +6566,243,1,188,4.99,2005-05-26T05:47:12Z,2020-02-15T06:59:51Z +6567,243,1,1405,5.99,2005-06-15T16:41:26Z,2020-02-15T06:59:51Z +6568,243,1,1452,0.99,2005-06-15T19:32:52Z,2020-02-15T06:59:51Z +6569,243,2,2757,5.99,2005-06-19T17:01:14Z,2020-02-15T06:59:51Z +6570,243,2,3854,5.99,2005-07-06T17:02:33Z,2020-02-15T06:59:51Z +6571,243,1,3965,4.99,2005-07-06T22:36:20Z,2020-02-15T06:59:51Z +6572,243,1,4831,0.99,2005-07-08T18:00:14Z,2020-02-15T06:59:51Z +6573,243,1,5502,0.99,2005-07-10T00:34:15Z,2020-02-15T06:59:51Z +6574,243,2,6038,3.99,2005-07-11T03:10:37Z,2020-02-15T06:59:51Z +6575,243,2,6820,2.99,2005-07-12T18:21:30Z,2020-02-15T06:59:51Z +6576,243,2,7022,2.99,2005-07-27T02:31:15Z,2020-02-15T06:59:51Z +6577,243,2,7165,0.99,2005-07-27T07:36:46Z,2020-02-15T06:59:51Z +6578,243,1,8834,4.99,2005-07-29T22:41:48Z,2020-02-15T06:59:51Z +6579,243,2,9035,2.99,2005-07-30T06:16:07Z,2020-02-15T06:59:51Z +6580,243,2,9514,4.99,2005-07-31T00:29:44Z,2020-02-15T06:59:51Z +6581,243,2,9675,2.99,2005-07-31T06:37:07Z,2020-02-15T06:59:51Z +6582,243,2,9988,5.99,2005-07-31T17:22:36Z,2020-02-15T06:59:51Z +6583,243,1,12209,2.99,2005-08-18T02:27:20Z,2020-02-15T06:59:51Z +6584,243,1,13291,2.99,2005-08-19T18:32:11Z,2020-02-15T06:59:51Z +6585,243,1,14033,2.99,2005-08-20T21:30:53Z,2020-02-15T06:59:51Z +6586,243,1,14108,0.99,2005-08-21T00:52:45Z,2020-02-15T06:59:51Z +6587,243,1,14272,3.99,2005-08-21T06:24:55Z,2020-02-15T06:59:51Z +6588,243,2,14581,1.99,2005-08-21T17:07:08Z,2020-02-15T06:59:51Z +6589,243,2,14705,2.99,2005-08-21T21:02:55Z,2020-02-15T06:59:51Z +6590,244,2,592,4.99,2005-05-28T13:21:08Z,2020-02-15T06:59:51Z +6591,244,1,797,1.99,2005-05-29T17:12:17Z,2020-02-15T06:59:51Z +6592,244,2,1189,6.99,2005-06-15T01:04:22Z,2020-02-15T06:59:51Z +6593,244,1,1595,5.99,2005-06-16T05:23:46Z,2020-02-15T06:59:51Z +6594,244,2,2955,3.99,2005-06-20T06:46:35Z,2020-02-15T06:59:51Z +6595,244,1,4814,4.99,2005-07-08T17:11:09Z,2020-02-15T06:59:51Z +6596,244,2,5387,4.99,2005-07-09T19:25:14Z,2020-02-15T06:59:51Z +6597,244,2,5461,0.99,2005-07-09T22:48:04Z,2020-02-15T06:59:51Z +6598,244,2,5692,0.99,2005-07-10T09:32:22Z,2020-02-15T06:59:51Z +6599,244,1,5779,4.99,2005-07-10T13:45:54Z,2020-02-15T06:59:51Z +6600,244,1,5803,3.99,2005-07-10T15:05:42Z,2020-02-15T06:59:51Z +6601,244,2,6374,4.99,2005-07-11T21:36:10Z,2020-02-15T06:59:51Z +6602,244,2,6608,2.99,2005-07-12T08:16:50Z,2020-02-15T06:59:51Z +6603,244,2,6683,2.99,2005-07-12T12:14:05Z,2020-02-15T06:59:51Z +6604,244,2,8454,0.99,2005-07-29T07:49:04Z,2020-02-15T06:59:51Z +6605,244,2,8844,5.99,2005-07-29T23:05:08Z,2020-02-15T06:59:51Z +6606,244,1,10001,4.99,2005-07-31T17:46:18Z,2020-02-15T06:59:51Z +6607,244,2,10047,4.99,2005-07-31T19:07:43Z,2020-02-15T06:59:51Z +6608,244,1,10152,5.99,2005-07-31T22:28:05Z,2020-02-15T06:59:51Z +6609,244,2,10684,6.99,2005-08-01T17:47:00Z,2020-02-15T06:59:51Z +6610,244,2,10969,2.99,2005-08-02T04:04:32Z,2020-02-15T06:59:51Z +6611,244,2,11157,0.99,2005-08-02T09:58:15Z,2020-02-15T06:59:51Z +6612,244,1,11267,9.99,2005-08-02T14:09:08Z,2020-02-15T06:59:51Z +6613,244,1,11762,9.99,2005-08-17T09:48:06Z,2020-02-15T06:59:51Z +6614,244,1,13630,4.99,2005-08-20T07:05:56Z,2020-02-15T06:59:51Z +6615,244,2,13774,0.99,2005-08-20T11:54:01Z,2020-02-15T06:59:51Z +6616,244,1,13928,0.99,2005-08-20T17:12:28Z,2020-02-15T06:59:51Z +6617,244,1,14367,0.99,2005-08-21T09:31:44Z,2020-02-15T06:59:51Z +6618,244,2,14657,0.99,2005-08-21T19:39:43Z,2020-02-15T06:59:51Z +6619,244,1,14919,1.99,2005-08-22T05:07:17Z,2020-02-15T06:59:51Z +6620,244,1,14975,3.99,2005-08-22T07:07:50Z,2020-02-15T06:59:51Z +6621,244,2,12736,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6622,245,2,79,4.99,2005-05-25T12:11:07Z,2020-02-15T06:59:51Z +6623,245,1,241,0.99,2005-05-26T12:49:01Z,2020-02-15T06:59:51Z +6624,245,1,519,7.99,2005-05-28T03:22:33Z,2020-02-15T06:59:51Z +6625,245,1,719,2.99,2005-05-29T05:16:05Z,2020-02-15T06:59:51Z +6626,245,2,725,2.99,2005-05-29T06:03:41Z,2020-02-15T06:59:51Z +6627,245,2,948,8.99,2005-05-30T15:44:27Z,2020-02-15T06:59:51Z +6628,245,1,1377,2.99,2005-06-15T15:02:03Z,2020-02-15T06:59:51Z +6629,245,1,2122,2.99,2005-06-17T20:48:27Z,2020-02-15T06:59:51Z +6630,245,1,3157,2.99,2005-06-20T21:07:54Z,2020-02-15T06:59:51Z +6631,245,1,3634,2.99,2005-07-06T06:51:14Z,2020-02-15T06:59:51Z +6632,245,2,5321,2.99,2005-07-09T16:26:33Z,2020-02-15T06:59:51Z +6633,245,1,5764,4.99,2005-07-10T12:58:16Z,2020-02-15T06:59:51Z +6634,245,2,6242,2.99,2005-07-11T14:45:04Z,2020-02-15T06:59:51Z +6635,245,1,6795,5.99,2005-07-12T16:41:00Z,2020-02-15T06:59:51Z +6636,245,2,6962,0.99,2005-07-27T00:10:58Z,2020-02-15T06:59:51Z +6637,245,1,7230,4.99,2005-07-27T10:01:41Z,2020-02-15T06:59:51Z +6638,245,2,7233,5.99,2005-07-27T10:08:36Z,2020-02-15T06:59:51Z +6639,245,1,7358,0.99,2005-07-27T14:49:44Z,2020-02-15T06:59:51Z +6640,245,2,7397,4.99,2005-07-27T16:05:00Z,2020-02-15T06:59:51Z +6641,245,2,8701,6.99,2005-07-29T17:02:35Z,2020-02-15T06:59:51Z +6642,245,1,8811,10.99,2005-07-29T21:46:21Z,2020-02-15T06:59:51Z +6643,245,2,9088,0.99,2005-07-30T08:21:02Z,2020-02-15T06:59:51Z +6644,245,2,9169,4.99,2005-07-30T11:35:00Z,2020-02-15T06:59:51Z +6645,245,1,9813,6.99,2005-07-31T11:29:23Z,2020-02-15T06:59:51Z +6646,245,1,10087,3.99,2005-07-31T20:15:22Z,2020-02-15T06:59:51Z +6647,245,2,11061,0.99,2005-08-02T06:50:18Z,2020-02-15T06:59:51Z +6648,245,1,11105,0.99,2005-08-02T08:13:31Z,2020-02-15T06:59:51Z +6649,245,1,11211,0.99,2005-08-02T12:16:48Z,2020-02-15T06:59:51Z +6650,245,1,12303,7.99,2005-08-18T05:43:22Z,2020-02-15T06:59:51Z +6651,245,1,13286,0.99,2005-08-19T18:28:07Z,2020-02-15T06:59:51Z +6652,245,1,15782,6.99,2005-08-23T13:43:26Z,2020-02-15T06:59:51Z +6653,245,2,12682,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6654,246,1,124,6.99,2005-05-25T20:46:11Z,2020-02-15T06:59:51Z +6655,246,2,421,8.99,2005-05-27T15:30:13Z,2020-02-15T06:59:51Z +6656,246,2,434,5.99,2005-05-27T16:54:27Z,2020-02-15T06:59:51Z +6657,246,1,699,3.99,2005-05-29T02:11:44Z,2020-02-15T06:59:51Z +6658,246,1,1051,4.99,2005-05-31T07:02:09Z,2020-02-15T06:59:51Z +6659,246,2,1448,1.99,2005-06-15T19:17:16Z,2020-02-15T06:59:51Z +6660,246,1,1968,2.99,2005-06-17T09:20:36Z,2020-02-15T06:59:51Z +6661,246,2,2704,1.99,2005-06-19T13:50:10Z,2020-02-15T06:59:51Z +6662,246,1,2725,0.99,2005-06-19T15:01:23Z,2020-02-15T06:59:51Z +6663,246,1,3152,4.99,2005-06-20T20:42:41Z,2020-02-15T06:59:51Z +6664,246,1,4092,7.99,2005-07-07T05:54:18Z,2020-02-15T06:59:51Z +6665,246,2,4905,4.99,2005-07-08T20:56:00Z,2020-02-15T06:59:51Z +6666,246,2,4994,2.99,2005-07-09T00:54:13Z,2020-02-15T06:59:51Z +6667,246,2,5347,0.99,2005-07-09T17:31:32Z,2020-02-15T06:59:51Z +6668,246,1,6688,4.99,2005-07-12T12:22:12Z,2020-02-15T06:59:51Z +6669,246,2,9525,5.99,2005-07-31T01:02:18Z,2020-02-15T06:59:51Z +6670,246,2,10208,4.99,2005-08-01T00:54:51Z,2020-02-15T06:59:51Z +6671,246,2,10683,2.99,2005-08-01T17:33:03Z,2020-02-15T06:59:51Z +6672,246,2,13418,5.99,2005-08-19T22:53:56Z,2020-02-15T06:59:51Z +6673,246,1,13750,6.99,2005-08-20T11:11:42Z,2020-02-15T06:59:51Z +6674,246,1,13987,4.99,2005-08-20T19:19:30Z,2020-02-15T06:59:51Z +6675,246,1,14360,6.99,2005-08-21T09:16:40Z,2020-02-15T06:59:51Z +6676,246,1,15746,2.99,2005-08-23T12:26:19Z,2020-02-15T06:59:51Z +6677,247,1,189,4.99,2005-05-26T06:01:41Z,2020-02-15T06:59:51Z +6678,247,2,448,3.99,2005-05-27T19:03:08Z,2020-02-15T06:59:51Z +6679,247,1,450,6.99,2005-05-27T19:18:54Z,2020-02-15T06:59:51Z +6680,247,1,2288,5.99,2005-06-18T07:23:17Z,2020-02-15T06:59:51Z +6681,247,2,3955,2.99,2005-07-06T21:58:08Z,2020-02-15T06:59:51Z +6682,247,2,4198,6.99,2005-07-07T11:08:11Z,2020-02-15T06:59:51Z +6683,247,1,4492,2.99,2005-07-08T01:32:04Z,2020-02-15T06:59:51Z +6684,247,2,4995,2.99,2005-07-09T00:57:46Z,2020-02-15T06:59:51Z +6685,247,1,5328,6.99,2005-07-09T16:48:29Z,2020-02-15T06:59:51Z +6686,247,1,5842,4.99,2005-07-10T17:11:37Z,2020-02-15T06:59:51Z +6687,247,1,7963,5.99,2005-07-28T13:48:38Z,2020-02-15T06:59:51Z +6688,247,1,10279,1.99,2005-08-01T03:26:44Z,2020-02-15T06:59:51Z +6689,247,1,10410,6.99,2005-08-01T07:53:29Z,2020-02-15T06:59:51Z +6690,247,2,11204,2.99,2005-08-02T11:56:31Z,2020-02-15T06:59:51Z +6691,247,2,11306,2.99,2005-08-02T15:45:10Z,2020-02-15T06:59:51Z +6692,247,1,11495,0.99,2005-08-16T22:51:20Z,2020-02-15T06:59:51Z +6693,247,2,12265,4.99,2005-08-18T04:22:01Z,2020-02-15T06:59:51Z +6694,247,1,12482,7.99,2005-08-18T12:37:36Z,2020-02-15T06:59:51Z +6695,247,1,12491,4.99,2005-08-18T12:48:45Z,2020-02-15T06:59:51Z +6696,247,1,12824,4.99,2005-08-19T01:18:00Z,2020-02-15T06:59:51Z +6697,247,1,14041,4.99,2005-08-20T21:45:23Z,2020-02-15T06:59:51Z +6698,247,1,15783,4.99,2005-08-23T13:45:44Z,2020-02-15T06:59:51Z +6699,248,2,330,7.99,2005-05-27T02:15:30Z,2020-02-15T06:59:51Z +6700,248,1,618,4.99,2005-05-28T15:50:07Z,2020-02-15T06:59:51Z +6701,248,1,2066,3.99,2005-06-17T16:07:08Z,2020-02-15T06:59:51Z +6702,248,2,2371,0.99,2005-06-18T14:35:29Z,2020-02-15T06:59:51Z +6703,248,1,3910,0.99,2005-07-06T20:05:18Z,2020-02-15T06:59:51Z +6704,248,2,4541,4.99,2005-07-08T04:04:19Z,2020-02-15T06:59:51Z +6705,248,1,4841,0.99,2005-07-08T18:18:23Z,2020-02-15T06:59:51Z +6706,248,1,5370,2.99,2005-07-09T18:43:19Z,2020-02-15T06:59:51Z +6707,248,2,6617,2.99,2005-07-12T08:39:56Z,2020-02-15T06:59:51Z +6708,248,2,7778,5.99,2005-07-28T07:10:11Z,2020-02-15T06:59:51Z +6709,248,2,10418,4.99,2005-08-01T08:11:07Z,2020-02-15T06:59:51Z +6710,248,1,12241,0.99,2005-08-18T03:33:17Z,2020-02-15T06:59:51Z +6711,248,1,13918,0.99,2005-08-20T16:47:32Z,2020-02-15T06:59:51Z +6712,248,2,14704,0.99,2005-08-21T21:02:22Z,2020-02-15T06:59:51Z +6713,248,2,14885,5.99,2005-08-22T03:58:29Z,2020-02-15T06:59:51Z +6714,249,2,316,4.99,2005-05-26T23:22:55Z,2020-02-15T06:59:51Z +6715,249,2,400,2.99,2005-05-27T12:51:44Z,2020-02-15T06:59:51Z +6716,249,1,438,6.99,2005-05-27T17:52:34Z,2020-02-15T06:59:51Z +6717,249,1,597,3.99,2005-05-28T14:01:02Z,2020-02-15T06:59:51Z +6718,249,1,1204,0.99,2005-06-15T02:21:46Z,2020-02-15T06:59:51Z +6719,249,1,1473,5.99,2005-06-15T20:55:20Z,2020-02-15T06:59:51Z +6720,249,2,1753,2.99,2005-06-16T17:08:17Z,2020-02-15T06:59:51Z +6721,249,2,2129,1.99,2005-06-17T20:58:32Z,2020-02-15T06:59:51Z +6722,249,2,3175,7.99,2005-06-20T22:30:23Z,2020-02-15T06:59:51Z +6723,249,1,4352,9.99,2005-07-07T19:15:58Z,2020-02-15T06:59:51Z +6724,249,1,5011,4.99,2005-07-09T01:44:40Z,2020-02-15T06:59:51Z +6725,249,1,5275,4.99,2005-07-09T14:34:18Z,2020-02-15T06:59:51Z +6726,249,2,5639,3.99,2005-07-10T06:33:39Z,2020-02-15T06:59:51Z +6727,249,2,6670,7.99,2005-07-12T11:44:33Z,2020-02-15T06:59:51Z +6728,249,1,7544,7.99,2005-07-27T21:47:37Z,2020-02-15T06:59:51Z +6729,249,1,7804,2.99,2005-07-28T07:56:00Z,2020-02-15T06:59:51Z +6730,249,2,7881,4.99,2005-07-28T10:33:22Z,2020-02-15T06:59:51Z +6731,249,1,11124,1.99,2005-08-02T08:55:25Z,2020-02-15T06:59:51Z +6732,249,1,11159,4.99,2005-08-02T10:00:55Z,2020-02-15T06:59:51Z +6733,249,2,11668,0.99,2005-08-17T05:47:32Z,2020-02-15T06:59:51Z +6734,249,2,13981,4.99,2005-08-20T19:07:20Z,2020-02-15T06:59:51Z +6735,249,2,14285,0.99,2005-08-21T06:50:48Z,2020-02-15T06:59:51Z +6736,249,1,15160,6.99,2005-08-22T14:33:50Z,2020-02-15T06:59:51Z +6737,250,1,61,5.99,2005-05-25T09:01:57Z,2020-02-15T06:59:51Z +6738,250,1,176,3.99,2005-05-26T03:47:39Z,2020-02-15T06:59:51Z +6739,250,1,637,4.99,2005-05-28T18:14:29Z,2020-02-15T06:59:51Z +6740,250,2,687,0.99,2005-05-29T00:32:09Z,2020-02-15T06:59:51Z +6741,250,1,1146,2.99,2005-05-31T20:34:45Z,2020-02-15T06:59:51Z +6742,250,1,2432,4.99,2005-06-18T17:59:18Z,2020-02-15T06:59:51Z +6743,250,1,3635,4.99,2005-07-06T06:55:36Z,2020-02-15T06:59:51Z +6744,250,1,3951,3.99,2005-07-06T21:50:41Z,2020-02-15T06:59:51Z +6745,250,1,5479,2.99,2005-07-09T23:47:33Z,2020-02-15T06:59:51Z +6746,250,1,5540,0.99,2005-07-10T02:44:21Z,2020-02-15T06:59:51Z +6747,250,1,5998,2.99,2005-07-11T01:20:46Z,2020-02-15T06:59:51Z +6748,250,1,8579,2.99,2005-07-29T11:59:22Z,2020-02-15T06:59:51Z +6749,250,2,9099,0.99,2005-07-30T08:45:48Z,2020-02-15T06:59:51Z +6750,250,2,10604,4.99,2005-08-01T14:35:08Z,2020-02-15T06:59:51Z +6751,250,1,12361,0.99,2005-08-18T07:47:31Z,2020-02-15T06:59:51Z +6752,250,1,12810,0.99,2005-08-19T00:44:10Z,2020-02-15T06:59:51Z +6753,250,2,14565,4.99,2005-08-21T16:24:45Z,2020-02-15T06:59:51Z +6754,250,1,14587,5.99,2005-08-21T17:20:55Z,2020-02-15T06:59:51Z +6755,250,2,14814,4.99,2005-08-22T01:12:14Z,2020-02-15T06:59:51Z +6756,250,2,15247,6.99,2005-08-22T17:52:05Z,2020-02-15T06:59:51Z +6757,251,1,264,2.99,2005-05-26T16:00:49Z,2020-02-15T06:59:51Z +6758,251,1,309,1.99,2005-05-26T22:38:10Z,2020-02-15T06:59:51Z +6759,251,2,393,2.99,2005-05-27T11:18:25Z,2020-02-15T06:59:51Z +6760,251,2,1069,3.99,2005-05-31T09:32:31Z,2020-02-15T06:59:51Z +6761,251,1,1091,4.99,2005-05-31T12:11:04Z,2020-02-15T06:59:51Z +6762,251,2,1155,2.99,2005-05-31T22:17:11Z,2020-02-15T06:59:51Z +6763,251,1,2238,6.99,2005-06-18T04:22:06Z,2020-02-15T06:59:51Z +6764,251,2,3422,7.99,2005-06-21T17:24:40Z,2020-02-15T06:59:51Z +6765,251,1,3464,2.99,2005-06-21T22:08:58Z,2020-02-15T06:59:51Z +6766,251,1,3799,4.99,2005-07-06T15:00:14Z,2020-02-15T06:59:51Z +6767,251,2,4026,3.99,2005-07-07T02:15:48Z,2020-02-15T06:59:51Z +6768,251,2,4848,2.99,2005-07-08T18:30:16Z,2020-02-15T06:59:51Z +6769,251,2,5012,2.99,2005-07-09T01:45:04Z,2020-02-15T06:59:51Z +6770,251,2,5979,2.99,2005-07-11T00:17:09Z,2020-02-15T06:59:51Z +6771,251,2,6413,6.99,2005-07-11T23:26:11Z,2020-02-15T06:59:51Z +6772,251,2,7338,8.99,2005-07-27T14:13:34Z,2020-02-15T06:59:51Z +6773,251,2,8443,2.99,2005-07-29T07:33:12Z,2020-02-15T06:59:51Z +6774,251,2,8982,0.99,2005-07-30T04:31:02Z,2020-02-15T06:59:51Z +6775,251,1,9196,2.99,2005-07-30T12:30:19Z,2020-02-15T06:59:51Z +6776,251,1,9892,0.99,2005-07-31T14:06:25Z,2020-02-15T06:59:51Z +6777,251,1,10575,7.99,2005-08-01T13:41:41Z,2020-02-15T06:59:51Z +6778,251,1,11733,0.99,2005-08-17T08:31:03Z,2020-02-15T06:59:51Z +6779,251,2,12047,3.99,2005-08-17T20:48:32Z,2020-02-15T06:59:51Z +6780,251,2,12666,4.99,2005-08-18T19:11:41Z,2020-02-15T06:59:51Z +6781,251,2,13121,2.99,2005-08-19T11:51:39Z,2020-02-15T06:59:51Z +6782,251,1,13243,2.99,2005-08-19T16:33:16Z,2020-02-15T06:59:51Z +6783,251,2,13260,6.99,2005-08-19T17:09:22Z,2020-02-15T06:59:51Z +6784,251,1,14292,0.99,2005-08-21T07:06:20Z,2020-02-15T06:59:51Z +6785,251,2,15647,2.99,2005-08-23T08:23:56Z,2020-02-15T06:59:51Z +6786,251,2,15870,4.99,2005-08-23T16:23:08Z,2020-02-15T06:59:51Z +6787,251,1,14107,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6788,252,1,707,4.99,2005-05-29T03:18:19Z,2020-02-15T06:59:51Z +6789,252,1,1095,0.99,2005-05-31T13:15:41Z,2020-02-15T06:59:51Z +6790,252,1,1395,5.99,2005-06-15T16:21:04Z,2020-02-15T06:59:51Z +6791,252,2,2716,4.99,2005-06-19T14:40:17Z,2020-02-15T06:59:51Z +6792,252,1,2968,0.99,2005-06-20T07:41:47Z,2020-02-15T06:59:51Z +6793,252,2,4372,0.99,2005-07-07T20:09:01Z,2020-02-15T06:59:51Z +6794,252,2,5554,2.99,2005-07-10T03:03:38Z,2020-02-15T06:59:51Z +6795,252,1,6357,0.99,2005-07-11T20:58:51Z,2020-02-15T06:59:51Z +6796,252,2,6369,0.99,2005-07-11T21:23:36Z,2020-02-15T06:59:51Z +6797,252,1,7024,4.99,2005-07-27T02:36:40Z,2020-02-15T06:59:51Z +6798,252,2,7121,0.99,2005-07-27T05:58:32Z,2020-02-15T06:59:51Z +6799,252,2,7168,0.99,2005-07-27T07:51:11Z,2020-02-15T06:59:51Z +6800,252,1,7670,0.99,2005-07-28T02:44:25Z,2020-02-15T06:59:51Z +6801,252,1,8636,5.99,2005-07-29T14:24:13Z,2020-02-15T06:59:51Z +6802,252,1,8899,0.99,2005-07-30T01:05:30Z,2020-02-15T06:59:51Z +6803,252,2,10314,0.99,2005-08-01T04:31:18Z,2020-02-15T06:59:51Z +6804,252,2,10834,2.99,2005-08-01T23:28:00Z,2020-02-15T06:59:51Z +6805,252,2,11764,0.99,2005-08-17T09:51:54Z,2020-02-15T06:59:51Z +6806,252,1,13385,4.99,2005-08-19T21:39:35Z,2020-02-15T06:59:51Z +6807,252,2,13989,5.99,2005-08-20T19:27:50Z,2020-02-15T06:59:51Z +6808,252,1,14774,4.99,2005-08-21T23:52:32Z,2020-02-15T06:59:51Z +6809,252,2,13756,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6810,253,1,566,6.99,2005-05-28T09:51:39Z,2020-02-15T06:59:51Z +6811,253,1,648,0.99,2005-05-28T19:25:54Z,2020-02-15T06:59:51Z +6812,253,1,986,2.99,2005-05-30T22:22:52Z,2020-02-15T06:59:51Z +6813,253,2,1378,1.99,2005-06-15T15:03:15Z,2020-02-15T06:59:51Z +6814,253,2,1606,6.99,2005-06-16T06:18:31Z,2020-02-15T06:59:51Z +6815,253,2,2081,5.99,2005-06-17T17:05:02Z,2020-02-15T06:59:51Z +6816,253,1,2142,4.99,2005-06-17T21:55:43Z,2020-02-15T06:59:51Z +6817,253,1,2454,4.99,2005-06-18T19:32:51Z,2020-02-15T06:59:51Z +6818,253,2,2636,4.99,2005-06-19T09:13:06Z,2020-02-15T06:59:51Z +6819,253,1,3658,7.99,2005-07-06T08:01:08Z,2020-02-15T06:59:51Z +6820,253,1,5505,2.99,2005-07-10T00:38:48Z,2020-02-15T06:59:51Z +6821,253,1,5602,4.99,2005-07-10T05:02:22Z,2020-02-15T06:59:51Z +6822,253,2,7689,2.99,2005-07-28T03:21:24Z,2020-02-15T06:59:51Z +6823,253,2,7851,0.99,2005-07-28T09:31:58Z,2020-02-15T06:59:51Z +6824,253,2,7887,2.99,2005-07-28T10:40:12Z,2020-02-15T06:59:51Z +6825,253,2,8752,2.99,2005-07-29T19:15:07Z,2020-02-15T06:59:51Z +6826,253,2,9606,0.99,2005-07-31T03:50:46Z,2020-02-15T06:59:51Z +6827,253,2,9618,6.99,2005-07-31T04:16:14Z,2020-02-15T06:59:51Z +6828,253,2,10404,4.99,2005-08-01T07:31:25Z,2020-02-15T06:59:51Z +6829,253,1,10660,2.99,2005-08-01T16:48:01Z,2020-02-15T06:59:51Z +6830,253,2,10881,6.99,2005-08-02T00:38:14Z,2020-02-15T06:59:51Z +6831,253,1,12572,0.99,2005-08-18T15:32:54Z,2020-02-15T06:59:51Z +6832,253,2,12827,5.99,2005-08-19T01:27:23Z,2020-02-15T06:59:51Z +6833,253,1,13126,5.99,2005-08-19T12:00:28Z,2020-02-15T06:59:51Z +6834,253,2,14086,3.99,2005-08-20T23:47:54Z,2020-02-15T06:59:51Z +6835,253,2,14283,4.99,2005-08-21T06:44:14Z,2020-02-15T06:59:51Z +6836,253,1,14640,7.99,2005-08-21T19:03:19Z,2020-02-15T06:59:51Z +6837,253,2,14655,4.99,2005-08-21T19:37:10Z,2020-02-15T06:59:51Z +6838,253,2,15221,2.99,2005-08-22T17:12:29Z,2020-02-15T06:59:51Z +6839,254,1,183,2.99,2005-05-26T05:01:18Z,2020-02-15T06:59:51Z +6840,254,1,1108,5.99,2005-05-31T15:05:12Z,2020-02-15T06:59:51Z +6841,254,1,1285,2.99,2005-06-15T08:33:06Z,2020-02-15T06:59:51Z +6842,254,2,1390,0.99,2005-06-15T16:06:29Z,2020-02-15T06:59:51Z +6843,254,1,2082,2.99,2005-06-17T17:13:32Z,2020-02-15T06:59:51Z +6844,254,1,2138,2.99,2005-06-17T21:28:14Z,2020-02-15T06:59:51Z +6845,254,2,2687,3.99,2005-06-19T12:46:52Z,2020-02-15T06:59:51Z +6846,254,1,3882,4.99,2005-07-06T18:38:21Z,2020-02-15T06:59:51Z +6847,254,2,5042,2.99,2005-07-09T03:20:30Z,2020-02-15T06:59:51Z +6848,254,1,5072,3.99,2005-07-09T05:01:58Z,2020-02-15T06:59:51Z +6849,254,2,5080,2.99,2005-07-09T05:23:55Z,2020-02-15T06:59:51Z +6850,254,1,5537,0.99,2005-07-10T02:35:41Z,2020-02-15T06:59:51Z +6851,254,1,5550,5.99,2005-07-10T02:58:35Z,2020-02-15T06:59:51Z +6852,254,1,5826,7.99,2005-07-10T16:21:02Z,2020-02-15T06:59:51Z +6853,254,2,5930,4.99,2005-07-10T21:59:32Z,2020-02-15T06:59:51Z +6854,254,2,7011,0.99,2005-07-27T01:58:34Z,2020-02-15T06:59:51Z +6855,254,1,7413,4.99,2005-07-27T16:45:40Z,2020-02-15T06:59:51Z +6856,254,2,8216,7.99,2005-07-28T23:43:59Z,2020-02-15T06:59:51Z +6857,254,2,8581,4.99,2005-07-29T12:02:06Z,2020-02-15T06:59:51Z +6858,254,2,9494,1.99,2005-07-30T23:52:46Z,2020-02-15T06:59:51Z +6859,254,1,10522,4.99,2005-08-01T11:48:51Z,2020-02-15T06:59:51Z +6860,254,1,11190,0.99,2005-08-02T11:21:34Z,2020-02-15T06:59:51Z +6861,254,1,11665,6.99,2005-08-17T05:36:57Z,2020-02-15T06:59:51Z +6862,254,2,12148,0.99,2005-08-18T00:13:15Z,2020-02-15T06:59:51Z +6863,254,1,12206,0.99,2005-08-18T02:22:20Z,2020-02-15T06:59:51Z +6864,254,1,12247,2.99,2005-08-18T03:51:51Z,2020-02-15T06:59:51Z +6865,254,1,12874,0.99,2005-08-19T03:07:57Z,2020-02-15T06:59:51Z +6866,254,2,13001,4.99,2005-08-19T07:36:44Z,2020-02-15T06:59:51Z +6867,254,1,13045,4.99,2005-08-19T09:17:35Z,2020-02-15T06:59:51Z +6868,254,2,13130,2.99,2005-08-19T12:06:42Z,2020-02-15T06:59:51Z +6869,254,2,14497,4.99,2005-08-21T14:09:47Z,2020-02-15T06:59:51Z +6870,254,1,15774,0.99,2005-08-23T13:25:08Z,2020-02-15T06:59:51Z +6871,255,1,1235,2.99,2005-06-15T04:31:28Z,2020-02-15T06:59:51Z +6872,255,1,1420,6.99,2005-06-15T17:56:14Z,2020-02-15T06:59:51Z +6873,255,2,1681,2.99,2005-06-16T11:38:17Z,2020-02-15T06:59:51Z +6874,255,2,3442,2.99,2005-06-21T20:06:51Z,2020-02-15T06:59:51Z +6875,255,1,4547,0.99,2005-07-08T04:20:19Z,2020-02-15T06:59:51Z +6876,255,1,5706,1.99,2005-07-10T10:21:46Z,2020-02-15T06:59:51Z +6877,255,1,5943,0.99,2005-07-10T22:48:13Z,2020-02-15T06:59:51Z +6878,255,2,7475,8.99,2005-07-27T19:07:43Z,2020-02-15T06:59:51Z +6879,255,1,7646,2.99,2005-07-28T01:31:45Z,2020-02-15T06:59:51Z +6880,255,1,8562,0.99,2005-07-29T11:32:13Z,2020-02-15T06:59:51Z +6881,255,1,9061,6.99,2005-07-30T07:21:52Z,2020-02-15T06:59:51Z +6882,255,2,11979,4.99,2005-08-17T18:07:13Z,2020-02-15T06:59:51Z +6883,255,2,12176,7.99,2005-08-18T01:10:33Z,2020-02-15T06:59:51Z +6884,255,2,13154,2.99,2005-08-19T13:09:54Z,2020-02-15T06:59:51Z +6885,255,1,13268,0.99,2005-08-19T17:33:50Z,2020-02-15T06:59:51Z +6886,255,2,13683,0.99,2005-08-20T08:54:55Z,2020-02-15T06:59:51Z +6887,255,1,13758,8.99,2005-08-20T11:21:26Z,2020-02-15T06:59:51Z +6888,255,2,14600,3.99,2005-08-21T17:45:21Z,2020-02-15T06:59:51Z +6889,256,1,51,4.99,2005-05-25T06:49:10Z,2020-02-15T06:59:51Z +6890,256,1,232,0.99,2005-05-26T11:38:05Z,2020-02-15T06:59:51Z +6891,256,2,738,4.99,2005-05-29T08:20:08Z,2020-02-15T06:59:51Z +6892,256,1,935,2.99,2005-05-30T13:29:36Z,2020-02-15T06:59:51Z +6893,256,1,1116,0.99,2005-05-31T16:10:46Z,2020-02-15T06:59:51Z +6894,256,1,1555,2.99,2005-06-16T02:17:07Z,2020-02-15T06:59:51Z +6895,256,2,1965,0.99,2005-06-17T09:17:39Z,2020-02-15T06:59:51Z +6896,256,2,1973,4.99,2005-06-17T09:26:15Z,2020-02-15T06:59:51Z +6897,256,2,2230,4.99,2005-06-18T03:50:49Z,2020-02-15T06:59:51Z +6898,256,1,2380,6.99,2005-06-18T15:00:04Z,2020-02-15T06:59:51Z +6899,256,2,2561,4.99,2005-06-19T03:14:52Z,2020-02-15T06:59:51Z +6900,256,1,2839,4.99,2005-06-19T22:07:24Z,2020-02-15T06:59:51Z +6901,256,1,4130,0.99,2005-07-07T07:51:53Z,2020-02-15T06:59:51Z +6902,256,2,4182,0.99,2005-07-07T10:28:00Z,2020-02-15T06:59:51Z +6903,256,1,5179,2.99,2005-07-09T10:00:44Z,2020-02-15T06:59:51Z +6904,256,1,6298,0.99,2005-07-11T17:42:33Z,2020-02-15T06:59:51Z +6905,256,1,7661,3.99,2005-07-28T02:10:27Z,2020-02-15T06:59:51Z +6906,256,2,9424,2.99,2005-07-30T21:10:56Z,2020-02-15T06:59:51Z +6907,256,2,10759,4.99,2005-08-01T20:22:51Z,2020-02-15T06:59:51Z +6908,256,2,11011,2.99,2005-08-02T05:07:07Z,2020-02-15T06:59:51Z +6909,256,2,11628,8.99,2005-08-17T04:27:18Z,2020-02-15T06:59:51Z +6910,256,2,13457,0.99,2005-08-20T00:33:22Z,2020-02-15T06:59:51Z +6911,256,1,13651,0.99,2005-08-20T07:50:08Z,2020-02-15T06:59:51Z +6912,256,1,14003,6.99,2005-08-20T20:16:06Z,2020-02-15T06:59:51Z +6913,256,2,14036,4.99,2005-08-20T21:35:27Z,2020-02-15T06:59:51Z +6914,256,2,14445,2.99,2005-08-21T12:07:42Z,2020-02-15T06:59:51Z +6915,256,2,14458,3.99,2005-08-21T12:47:53Z,2020-02-15T06:59:51Z +6916,256,2,15609,2.99,2005-08-23T06:56:04Z,2020-02-15T06:59:51Z +6917,256,2,15861,4.99,2005-08-23T16:15:45Z,2020-02-15T06:59:51Z +6918,256,1,15864,7.99,2005-08-23T16:18:12Z,2020-02-15T06:59:51Z +6919,257,2,139,2.99,2005-05-25T23:00:21Z,2020-02-15T06:59:51Z +6920,257,2,244,2.99,2005-05-26T13:40:40Z,2020-02-15T06:59:51Z +6921,257,2,705,2.99,2005-05-29T02:48:52Z,2020-02-15T06:59:51Z +6922,257,1,2557,0.99,2005-06-19T03:08:51Z,2020-02-15T06:59:51Z +6923,257,2,3083,4.99,2005-06-20T15:33:47Z,2020-02-15T06:59:51Z +6924,257,2,4462,6.99,2005-07-08T00:02:49Z,2020-02-15T06:59:51Z +6925,257,2,4574,4.99,2005-07-08T05:39:42Z,2020-02-15T06:59:51Z +6926,257,1,5495,6.99,2005-07-10T00:16:54Z,2020-02-15T06:59:51Z +6927,257,1,5858,4.99,2005-07-10T18:00:07Z,2020-02-15T06:59:51Z +6928,257,1,6422,5.99,2005-07-11T23:46:19Z,2020-02-15T06:59:51Z +6929,257,2,6711,5.99,2005-07-12T13:23:40Z,2020-02-15T06:59:51Z +6930,257,2,7007,4.99,2005-07-27T01:43:39Z,2020-02-15T06:59:51Z +6931,257,1,7176,2.99,2005-07-27T08:04:28Z,2020-02-15T06:59:51Z +6932,257,1,7496,1.99,2005-07-27T20:04:05Z,2020-02-15T06:59:51Z +6933,257,2,7510,2.99,2005-07-27T20:37:57Z,2020-02-15T06:59:51Z +6934,257,2,7518,5.99,2005-07-27T21:01:16Z,2020-02-15T06:59:51Z +6935,257,2,8156,3.99,2005-07-28T20:59:04Z,2020-02-15T06:59:51Z +6936,257,2,8252,2.99,2005-07-29T00:54:17Z,2020-02-15T06:59:51Z +6937,257,1,8344,4.99,2005-07-29T04:45:25Z,2020-02-15T06:59:51Z +6938,257,1,8640,4.99,2005-07-29T14:34:17Z,2020-02-15T06:59:51Z +6939,257,2,8946,6.99,2005-07-30T03:14:53Z,2020-02-15T06:59:51Z +6940,257,1,9800,4.99,2005-07-31T11:00:58Z,2020-02-15T06:59:51Z +6941,257,2,10142,4.99,2005-07-31T22:10:54Z,2020-02-15T06:59:51Z +6942,257,1,11230,4.99,2005-08-02T12:59:08Z,2020-02-15T06:59:51Z +6943,257,1,11394,0.99,2005-08-02T18:44:45Z,2020-02-15T06:59:51Z +6944,257,2,11545,6.99,2005-08-17T00:56:06Z,2020-02-15T06:59:51Z +6945,257,2,11860,1.99,2005-08-17T13:52:26Z,2020-02-15T06:59:51Z +6946,257,2,12841,2.99,2005-08-19T01:55:55Z,2020-02-15T06:59:51Z +6947,257,1,12904,5.99,2005-08-19T04:10:50Z,2020-02-15T06:59:51Z +6948,257,2,13203,7.99,2005-08-19T15:00:58Z,2020-02-15T06:59:51Z +6949,257,2,13218,0.99,2005-08-19T15:39:39Z,2020-02-15T06:59:51Z +6950,257,1,13389,2.99,2005-08-19T21:52:51Z,2020-02-15T06:59:51Z +6951,257,2,13846,5.99,2005-08-20T14:32:31Z,2020-02-15T06:59:51Z +6952,257,2,14115,0.99,2005-08-21T01:10:29Z,2020-02-15T06:59:51Z +6953,257,1,15025,0.99,2005-08-22T08:57:24Z,2020-02-15T06:59:51Z +6954,257,1,15967,2.99,2005-08-23T19:50:06Z,2020-02-15T06:59:51Z +6955,257,2,15968,0.99,2005-08-23T19:51:29Z,2020-02-15T06:59:51Z +6956,258,1,1743,2.99,2005-06-16T16:38:10Z,2020-02-15T06:59:51Z +6957,258,2,2678,0.99,2005-06-19T12:12:23Z,2020-02-15T06:59:51Z +6958,258,2,2931,8.99,2005-06-20T04:50:45Z,2020-02-15T06:59:51Z +6959,258,2,4408,2.99,2005-07-07T21:41:06Z,2020-02-15T06:59:51Z +6960,258,1,4677,5.99,2005-07-08T10:30:36Z,2020-02-15T06:59:51Z +6961,258,2,4897,0.99,2005-07-08T20:25:11Z,2020-02-15T06:59:51Z +6962,258,2,5312,5.99,2005-07-09T16:03:09Z,2020-02-15T06:59:51Z +6963,258,1,5674,0.99,2005-07-10T08:26:26Z,2020-02-15T06:59:51Z +6964,258,1,5935,9.99,2005-07-10T22:11:04Z,2020-02-15T06:59:51Z +6965,258,2,6012,4.99,2005-07-11T02:00:12Z,2020-02-15T06:59:51Z +6966,258,1,7814,2.99,2005-07-28T08:09:48Z,2020-02-15T06:59:51Z +6967,258,1,8675,4.99,2005-07-29T15:56:18Z,2020-02-15T06:59:51Z +6968,258,2,9069,4.99,2005-07-30T07:39:59Z,2020-02-15T06:59:51Z +6969,258,2,10293,1.99,2005-08-01T03:44:26Z,2020-02-15T06:59:51Z +6970,258,2,10315,4.99,2005-08-01T04:34:45Z,2020-02-15T06:59:51Z +6971,258,1,10325,5.99,2005-08-01T04:52:12Z,2020-02-15T06:59:51Z +6972,258,2,10332,6.99,2005-08-01T04:57:32Z,2020-02-15T06:59:51Z +6973,258,1,10393,0.99,2005-08-01T06:52:50Z,2020-02-15T06:59:51Z +6974,258,1,12246,5.99,2005-08-18T03:48:41Z,2020-02-15T06:59:51Z +6975,258,2,12296,3.99,2005-08-18T05:16:28Z,2020-02-15T06:59:51Z +6976,258,1,13491,4.99,2005-08-20T01:30:56Z,2020-02-15T06:59:51Z +6977,258,1,13695,6.99,2005-08-20T09:13:25Z,2020-02-15T06:59:51Z +6978,258,2,13897,2.99,2005-08-20T16:02:28Z,2020-02-15T06:59:51Z +6979,258,2,14901,6.99,2005-08-22T04:31:37Z,2020-02-15T06:59:51Z +6980,259,2,722,6.99,2005-05-29T05:30:31Z,2020-02-15T06:59:51Z +6981,259,2,901,2.99,2005-05-30T09:40:40Z,2020-02-15T06:59:51Z +6982,259,1,1147,5.99,2005-05-31T20:37:52Z,2020-02-15T06:59:51Z +6983,259,1,1641,7.99,2005-06-16T08:46:26Z,2020-02-15T06:59:51Z +6984,259,2,1723,7.99,2005-06-16T15:14:18Z,2020-02-15T06:59:51Z +6985,259,2,1813,2.99,2005-06-16T21:11:00Z,2020-02-15T06:59:51Z +6986,259,2,2375,5.99,2005-06-18T14:47:29Z,2020-02-15T06:59:51Z +6987,259,2,4199,5.99,2005-07-07T11:13:07Z,2020-02-15T06:59:51Z +6988,259,2,4489,4.99,2005-07-08T01:23:58Z,2020-02-15T06:59:51Z +6989,259,1,6074,0.99,2005-07-11T04:59:56Z,2020-02-15T06:59:51Z +6990,259,2,6539,3.99,2005-07-12T04:50:49Z,2020-02-15T06:59:51Z +6991,259,2,7188,2.99,2005-07-27T08:32:08Z,2020-02-15T06:59:51Z +6992,259,2,7774,7.99,2005-07-28T07:03:25Z,2020-02-15T06:59:51Z +6993,259,1,7817,4.99,2005-07-28T08:20:55Z,2020-02-15T06:59:51Z +6994,259,2,9205,6.99,2005-07-30T12:46:40Z,2020-02-15T06:59:51Z +6995,259,1,9282,6.99,2005-07-30T15:17:31Z,2020-02-15T06:59:51Z +6996,259,1,9444,7.99,2005-07-30T21:48:44Z,2020-02-15T06:59:51Z +6997,259,1,10510,3.99,2005-08-01T11:28:30Z,2020-02-15T06:59:51Z +6998,259,1,10781,2.99,2005-08-01T21:22:41Z,2020-02-15T06:59:51Z +6999,259,1,11184,3.99,2005-08-02T11:01:26Z,2020-02-15T06:59:51Z +7000,259,2,12680,6.99,2005-08-18T19:43:46Z,2020-02-15T06:59:51Z +7001,259,1,13109,4.99,2005-08-19T11:23:20Z,2020-02-15T06:59:51Z +7002,259,2,13112,2.99,2005-08-19T11:27:10Z,2020-02-15T06:59:51Z +7003,259,2,13366,4.99,2005-08-19T21:14:45Z,2020-02-15T06:59:51Z +7004,259,1,13598,5.99,2005-08-20T05:59:17Z,2020-02-15T06:59:51Z +7005,259,2,13649,4.99,2005-08-20T07:48:38Z,2020-02-15T06:59:51Z +7006,259,2,14067,6.99,2005-08-20T22:49:23Z,2020-02-15T06:59:51Z +7007,259,2,14170,4.99,2005-08-21T03:00:39Z,2020-02-15T06:59:51Z +7008,259,2,14966,2.99,2005-08-22T06:45:57Z,2020-02-15T06:59:51Z +7009,259,1,15425,10.99,2005-08-23T00:05:57Z,2020-02-15T06:59:51Z +7010,259,1,15473,2.99,2005-08-23T01:39:10Z,2020-02-15T06:59:51Z +7011,259,2,,1.99,2005-08-23T06:13:16Z,2020-02-15T06:59:51Z +7012,259,1,15689,2.99,2005-08-23T09:52:55Z,2020-02-15T06:59:51Z +7013,260,1,1101,8.99,2005-05-31T14:13:59Z,2020-02-15T06:59:51Z +7014,260,1,1626,3.99,2005-06-16T07:49:47Z,2020-02-15T06:59:51Z +7015,260,2,2001,2.99,2005-06-17T11:35:09Z,2020-02-15T06:59:51Z +7016,260,2,2040,2.99,2005-06-17T14:18:37Z,2020-02-15T06:59:51Z +7017,260,1,2091,10.99,2005-06-17T18:09:04Z,2020-02-15T06:59:51Z +7018,260,1,2178,0.99,2005-06-18T00:38:35Z,2020-02-15T06:59:51Z +7019,260,1,2823,7.99,2005-06-19T20:30:21Z,2020-02-15T06:59:51Z +7020,260,2,2958,3.99,2005-06-20T06:56:20Z,2020-02-15T06:59:51Z +7021,260,1,3193,0.99,2005-06-20T23:52:30Z,2020-02-15T06:59:51Z +7022,260,2,4054,0.99,2005-07-07T03:42:07Z,2020-02-15T06:59:51Z +7023,260,2,4741,6.99,2005-07-08T13:31:23Z,2020-02-15T06:59:51Z +7024,260,1,4870,2.99,2005-07-08T19:14:45Z,2020-02-15T06:59:51Z +7025,260,2,6328,2.99,2005-07-11T19:09:33Z,2020-02-15T06:59:51Z +7026,260,2,7072,0.99,2005-07-27T04:02:33Z,2020-02-15T06:59:51Z +7027,260,1,7268,1.99,2005-07-27T11:23:09Z,2020-02-15T06:59:51Z +7028,260,1,7885,7.99,2005-07-28T10:37:41Z,2020-02-15T06:59:51Z +7029,260,1,8475,1.99,2005-07-29T08:37:41Z,2020-02-15T06:59:51Z +7030,260,1,8484,2.99,2005-07-29T08:51:59Z,2020-02-15T06:59:51Z +7031,260,1,8717,0.99,2005-07-29T17:40:45Z,2020-02-15T06:59:51Z +7032,260,1,8933,0.99,2005-07-30T02:36:06Z,2020-02-15T06:59:51Z +7033,260,2,9176,4.99,2005-07-30T11:50:54Z,2020-02-15T06:59:51Z +7034,260,2,10970,8.99,2005-08-02T04:06:46Z,2020-02-15T06:59:51Z +7035,260,1,12852,0.99,2005-08-19T02:12:40Z,2020-02-15T06:59:51Z +7036,260,2,13440,2.99,2005-08-19T23:42:52Z,2020-02-15T06:59:51Z +7037,260,1,13685,3.99,2005-08-20T08:57:11Z,2020-02-15T06:59:51Z +7038,260,1,13966,2.99,2005-08-20T18:28:28Z,2020-02-15T06:59:51Z +7039,260,2,13978,0.99,2005-08-20T19:03:25Z,2020-02-15T06:59:51Z +7040,260,2,14035,2.99,2005-08-20T21:31:58Z,2020-02-15T06:59:51Z +7041,260,2,14441,2.99,2005-08-21T11:59:38Z,2020-02-15T06:59:51Z +7042,260,1,14579,7.99,2005-08-21T16:54:47Z,2020-02-15T06:59:51Z +7043,260,1,14610,6.99,2005-08-21T17:59:09Z,2020-02-15T06:59:51Z +7044,261,1,12,4.99,2005-05-25T00:19:27Z,2020-02-15T06:59:51Z +7045,261,2,465,3.99,2005-05-27T20:44:36Z,2020-02-15T06:59:51Z +7046,261,2,542,6.99,2005-05-28T06:42:13Z,2020-02-15T06:59:51Z +7047,261,1,792,0.99,2005-05-29T16:32:10Z,2020-02-15T06:59:51Z +7048,261,1,1760,2.99,2005-06-16T17:48:37Z,2020-02-15T06:59:51Z +7049,261,1,1877,5.99,2005-06-17T02:54:16Z,2020-02-15T06:59:51Z +7050,261,2,1988,8.99,2005-06-17T10:42:34Z,2020-02-15T06:59:51Z +7051,261,2,2072,3.99,2005-06-17T16:33:32Z,2020-02-15T06:59:51Z +7052,261,2,2392,0.99,2005-06-18T15:34:18Z,2020-02-15T06:59:51Z +7053,261,1,3363,0.99,2005-06-21T12:25:07Z,2020-02-15T06:59:51Z +7054,261,1,5122,3.99,2005-07-09T07:19:35Z,2020-02-15T06:59:51Z +7055,261,1,5449,5.99,2005-07-09T22:12:01Z,2020-02-15T06:59:51Z +7056,261,2,6515,2.99,2005-07-12T03:50:32Z,2020-02-15T06:59:51Z +7057,261,1,6743,0.99,2005-07-12T14:29:25Z,2020-02-15T06:59:51Z +7058,261,2,9552,4.99,2005-07-31T02:05:32Z,2020-02-15T06:59:51Z +7059,261,1,9842,4.99,2005-07-31T12:24:58Z,2020-02-15T06:59:51Z +7060,261,1,9869,4.99,2005-07-31T13:21:54Z,2020-02-15T06:59:51Z +7061,261,2,10246,1.99,2005-08-01T02:29:50Z,2020-02-15T06:59:51Z +7062,261,1,11834,1.99,2005-08-17T13:00:40Z,2020-02-15T06:59:51Z +7063,261,2,11928,2.99,2005-08-17T16:28:24Z,2020-02-15T06:59:51Z +7064,261,1,12327,6.99,2005-08-18T06:43:22Z,2020-02-15T06:59:51Z +7065,261,2,13245,4.99,2005-08-19T16:43:41Z,2020-02-15T06:59:51Z +7066,261,2,13506,5.99,2005-08-20T02:07:06Z,2020-02-15T06:59:51Z +7067,261,1,13669,2.99,2005-08-20T08:26:32Z,2020-02-15T06:59:51Z +7068,261,1,13849,4.99,2005-08-20T14:42:34Z,2020-02-15T06:59:51Z +7069,261,2,15397,4.99,2005-08-22T23:08:46Z,2020-02-15T06:59:51Z +7070,262,2,984,4.99,2005-05-30T22:17:17Z,2020-02-15T06:59:51Z +7071,262,1,1563,2.99,2005-06-16T02:46:28Z,2020-02-15T06:59:51Z +7072,262,1,2771,6.99,2005-06-19T17:54:48Z,2020-02-15T06:59:51Z +7073,262,2,2850,8.99,2005-06-19T23:06:28Z,2020-02-15T06:59:51Z +7074,262,1,2915,1.99,2005-06-20T03:57:17Z,2020-02-15T06:59:51Z +7075,262,1,3521,1.99,2005-07-06T01:00:11Z,2020-02-15T06:59:51Z +7076,262,1,3699,3.99,2005-07-06T10:11:25Z,2020-02-15T06:59:51Z +7077,262,1,4501,0.99,2005-07-08T02:12:00Z,2020-02-15T06:59:51Z +7078,262,2,5503,0.99,2005-07-10T00:35:37Z,2020-02-15T06:59:51Z +7079,262,1,6291,0.99,2005-07-11T17:16:40Z,2020-02-15T06:59:51Z +7080,262,2,6547,7.99,2005-07-12T04:57:46Z,2020-02-15T06:59:51Z +7081,262,1,6724,3.99,2005-07-12T13:45:15Z,2020-02-15T06:59:51Z +7082,262,2,6762,7.99,2005-07-12T15:25:33Z,2020-02-15T06:59:51Z +7083,262,1,6805,6.99,2005-07-12T17:23:01Z,2020-02-15T06:59:51Z +7084,262,1,6986,4.99,2005-07-27T00:59:05Z,2020-02-15T06:59:51Z +7085,262,1,9105,6.99,2005-07-30T08:50:25Z,2020-02-15T06:59:51Z +7086,262,2,10421,0.99,2005-08-01T08:14:10Z,2020-02-15T06:59:51Z +7087,262,2,10770,0.99,2005-08-01T20:45:39Z,2020-02-15T06:59:51Z +7088,262,2,13466,2.99,2005-08-20T00:55:16Z,2020-02-15T06:59:51Z +7089,262,1,13808,5.99,2005-08-20T12:55:43Z,2020-02-15T06:59:51Z +7090,262,1,14180,4.99,2005-08-21T03:16:15Z,2020-02-15T06:59:51Z +7091,262,2,14465,3.99,2005-08-21T12:54:22Z,2020-02-15T06:59:51Z +7092,262,2,14834,6.99,2005-08-22T01:45:58Z,2020-02-15T06:59:51Z +7093,262,2,15270,3.99,2005-08-22T18:48:42Z,2020-02-15T06:59:51Z +7094,262,1,15456,0.99,2005-08-23T01:07:01Z,2020-02-15T06:59:51Z +7095,262,1,15640,4.99,2005-08-23T08:04:40Z,2020-02-15T06:59:51Z +7096,262,2,15771,4.99,2005-08-23T13:18:46Z,2020-02-15T06:59:51Z +7097,262,1,15918,3.99,2005-08-23T17:57:35Z,2020-02-15T06:59:51Z +7098,263,1,97,4.99,2005-05-25T16:34:24Z,2020-02-15T06:59:51Z +7099,263,1,266,0.99,2005-05-26T16:08:05Z,2020-02-15T06:59:51Z +7100,263,2,2126,8.99,2005-06-17T20:54:36Z,2020-02-15T06:59:51Z +7101,263,2,3257,1.99,2005-06-21T03:47:19Z,2020-02-15T06:59:51Z +7102,263,1,3578,4.99,2005-07-06T03:47:05Z,2020-02-15T06:59:51Z +7103,263,2,3773,2.99,2005-07-06T13:23:34Z,2020-02-15T06:59:51Z +7104,263,2,4637,0.99,2005-07-08T08:49:54Z,2020-02-15T06:59:51Z +7105,263,2,4682,2.99,2005-07-08T10:38:27Z,2020-02-15T06:59:51Z +7106,263,2,5125,2.99,2005-07-09T07:25:28Z,2020-02-15T06:59:51Z +7107,263,2,5254,1.99,2005-07-09T13:50:11Z,2020-02-15T06:59:51Z +7108,263,2,6376,4.99,2005-07-11T21:40:23Z,2020-02-15T06:59:51Z +7109,263,1,6483,2.99,2005-07-12T01:59:20Z,2020-02-15T06:59:51Z +7110,263,1,6808,1.99,2005-07-12T17:36:42Z,2020-02-15T06:59:51Z +7111,263,2,7291,4.99,2005-07-27T12:30:47Z,2020-02-15T06:59:51Z +7112,263,1,7425,4.99,2005-07-27T17:18:35Z,2020-02-15T06:59:51Z +7113,263,1,7706,4.99,2005-07-28T04:03:17Z,2020-02-15T06:59:51Z +7114,263,2,7833,1.99,2005-07-28T08:46:14Z,2020-02-15T06:59:51Z +7115,263,1,10476,6.99,2005-08-01T10:03:20Z,2020-02-15T06:59:51Z +7116,263,1,10775,2.99,2005-08-01T20:59:52Z,2020-02-15T06:59:51Z +7117,263,1,11339,2.99,2005-08-02T17:02:06Z,2020-02-15T06:59:51Z +7118,263,1,11822,0.99,2005-08-17T12:32:39Z,2020-02-15T06:59:51Z +7119,263,2,12057,9.99,2005-08-17T21:04:35Z,2020-02-15T06:59:51Z +7120,263,2,12432,5.99,2005-08-18T10:35:13Z,2020-02-15T06:59:51Z +7121,263,2,12919,6.99,2005-08-19T04:32:15Z,2020-02-15T06:59:51Z +7122,263,1,14335,3.99,2005-08-21T08:33:07Z,2020-02-15T06:59:51Z +7123,263,2,14448,6.99,2005-08-21T12:13:10Z,2020-02-15T06:59:51Z +7124,263,1,15322,4.99,2005-08-22T20:20:30Z,2020-02-15T06:59:51Z +7125,263,2,15922,7.99,2005-08-23T18:07:31Z,2020-02-15T06:59:51Z +7126,263,1,15293,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7127,264,2,1165,3.99,2005-06-14T23:16:27Z,2020-02-15T06:59:51Z +7128,264,1,1206,4.99,2005-06-15T02:27:07Z,2020-02-15T06:59:51Z +7129,264,1,3028,0.99,2005-06-20T11:50:52Z,2020-02-15T06:59:51Z +7130,264,1,3403,3.99,2005-06-21T15:55:06Z,2020-02-15T06:59:51Z +7131,264,1,3618,6.99,2005-07-06T05:58:45Z,2020-02-15T06:59:51Z +7132,264,1,4328,4.99,2005-07-07T18:03:17Z,2020-02-15T06:59:51Z +7133,264,1,4539,0.99,2005-07-08T04:01:02Z,2020-02-15T06:59:51Z +7134,264,1,6340,8.99,2005-07-11T19:46:05Z,2020-02-15T06:59:51Z +7135,264,2,6391,0.99,2005-07-11T22:23:09Z,2020-02-15T06:59:51Z +7136,264,1,6395,2.99,2005-07-11T22:29:29Z,2020-02-15T06:59:51Z +7137,264,1,6543,0.99,2005-07-12T04:54:32Z,2020-02-15T06:59:51Z +7138,264,1,7006,8.99,2005-07-27T01:42:20Z,2020-02-15T06:59:51Z +7139,264,2,9380,2.99,2005-07-30T19:17:31Z,2020-02-15T06:59:51Z +7140,264,2,9515,0.99,2005-07-31T00:35:05Z,2020-02-15T06:59:51Z +7141,264,1,9861,5.99,2005-07-31T13:04:14Z,2020-02-15T06:59:51Z +7142,264,1,9932,5.99,2005-07-31T15:19:48Z,2020-02-15T06:59:51Z +7143,264,2,10792,2.99,2005-08-01T21:44:24Z,2020-02-15T06:59:51Z +7144,264,1,11527,3.99,2005-08-17T00:25:06Z,2020-02-15T06:59:51Z +7145,264,2,11533,0.99,2005-08-17T00:34:53Z,2020-02-15T06:59:51Z +7146,264,1,11539,2.99,2005-08-17T00:45:41Z,2020-02-15T06:59:51Z +7147,264,1,12518,4.99,2005-08-18T13:41:32Z,2020-02-15T06:59:51Z +7148,264,2,13590,2.99,2005-08-20T05:48:59Z,2020-02-15T06:59:51Z +7149,264,1,13664,5.99,2005-08-20T08:18:36Z,2020-02-15T06:59:51Z +7150,264,1,15595,4.99,2005-08-23T06:19:12Z,2020-02-15T06:59:51Z +7151,264,2,14243,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7152,265,2,74,0.99,2005-05-25T11:09:48Z,2020-02-15T06:59:51Z +7153,265,2,2027,7.99,2005-06-17T13:06:56Z,2020-02-15T06:59:51Z +7154,265,2,2562,4.99,2005-06-19T03:15:05Z,2020-02-15T06:59:51Z +7155,265,1,2598,2.99,2005-06-19T05:59:57Z,2020-02-15T06:59:51Z +7156,265,1,3823,2.99,2005-07-06T15:41:27Z,2020-02-15T06:59:51Z +7157,265,1,4610,0.99,2005-07-08T07:28:05Z,2020-02-15T06:59:51Z +7158,265,1,4797,2.99,2005-07-08T16:39:05Z,2020-02-15T06:59:51Z +7159,265,2,5029,7.99,2005-07-09T02:35:32Z,2020-02-15T06:59:51Z +7160,265,1,5417,4.99,2005-07-09T20:34:09Z,2020-02-15T06:59:51Z +7161,265,1,5710,9.99,2005-07-10T10:32:52Z,2020-02-15T06:59:51Z +7162,265,1,6068,4.99,2005-07-11T04:41:09Z,2020-02-15T06:59:51Z +7163,265,2,6371,4.99,2005-07-11T21:31:51Z,2020-02-15T06:59:51Z +7164,265,2,6553,5.99,2005-07-12T05:06:39Z,2020-02-15T06:59:51Z +7165,265,2,6921,6.99,2005-07-12T22:39:03Z,2020-02-15T06:59:51Z +7166,265,2,7414,1.99,2005-07-27T16:46:07Z,2020-02-15T06:59:51Z +7167,265,1,7704,2.99,2005-07-28T04:02:13Z,2020-02-15T06:59:51Z +7168,265,1,8278,5.99,2005-07-29T01:42:55Z,2020-02-15T06:59:51Z +7169,265,2,8489,2.99,2005-07-29T08:58:03Z,2020-02-15T06:59:51Z +7170,265,2,8665,0.99,2005-07-29T15:39:29Z,2020-02-15T06:59:51Z +7171,265,1,9416,2.99,2005-07-30T20:52:45Z,2020-02-15T06:59:51Z +7172,265,2,10592,3.99,2005-08-01T14:13:00Z,2020-02-15T06:59:51Z +7173,265,2,11000,3.99,2005-08-02T04:56:14Z,2020-02-15T06:59:51Z +7174,265,1,12207,1.99,2005-08-18T02:24:07Z,2020-02-15T06:59:51Z +7175,265,2,12346,4.99,2005-08-18T07:17:55Z,2020-02-15T06:59:51Z +7176,265,2,13700,8.99,2005-08-20T09:26:17Z,2020-02-15T06:59:51Z +7177,265,2,14125,4.99,2005-08-21T01:32:16Z,2020-02-15T06:59:51Z +7178,265,1,14547,6.99,2005-08-21T15:51:38Z,2020-02-15T06:59:51Z +7179,265,2,14556,6.99,2005-08-21T16:03:27Z,2020-02-15T06:59:51Z +7180,265,1,14943,2.99,2005-08-22T05:59:59Z,2020-02-15T06:59:51Z +7181,266,1,86,1.99,2005-05-25T13:36:12Z,2020-02-15T06:59:51Z +7182,266,2,651,2.99,2005-05-28T19:46:50Z,2020-02-15T06:59:51Z +7183,266,2,1280,5.99,2005-06-15T08:16:06Z,2020-02-15T06:59:51Z +7184,266,2,2065,4.99,2005-06-17T16:03:46Z,2020-02-15T06:59:51Z +7185,266,2,3002,4.99,2005-06-20T09:56:12Z,2020-02-15T06:59:51Z +7186,266,1,3059,4.99,2005-06-20T13:38:41Z,2020-02-15T06:59:51Z +7187,266,2,3585,0.99,2005-07-06T04:22:36Z,2020-02-15T06:59:51Z +7188,266,2,5362,5.99,2005-07-09T18:16:08Z,2020-02-15T06:59:51Z +7189,266,1,5577,4.99,2005-07-10T03:58:40Z,2020-02-15T06:59:51Z +7190,266,1,8492,2.99,2005-07-29T09:04:17Z,2020-02-15T06:59:51Z +7191,266,2,9109,5.99,2005-07-30T08:58:24Z,2020-02-15T06:59:51Z +7192,266,2,10747,4.99,2005-08-01T19:59:41Z,2020-02-15T06:59:51Z +7193,266,2,10910,5.99,2005-08-02T01:54:34Z,2020-02-15T06:59:51Z +7194,266,2,11233,5.99,2005-08-02T13:06:11Z,2020-02-15T06:59:51Z +7195,266,1,11321,4.99,2005-08-02T16:15:07Z,2020-02-15T06:59:51Z +7196,266,2,11626,0.99,2005-08-17T04:25:42Z,2020-02-15T06:59:51Z +7197,266,1,11726,0.99,2005-08-17T08:11:10Z,2020-02-15T06:59:51Z +7198,266,1,12255,4.99,2005-08-18T04:07:20Z,2020-02-15T06:59:51Z +7199,266,2,12378,0.99,2005-08-18T08:26:13Z,2020-02-15T06:59:51Z +7200,266,1,12405,6.99,2005-08-18T09:37:30Z,2020-02-15T06:59:51Z +7201,266,1,12715,4.99,2005-08-18T21:09:38Z,2020-02-15T06:59:51Z +7202,266,1,13468,8.99,2005-08-20T00:56:44Z,2020-02-15T06:59:51Z +7203,266,1,13556,6.99,2005-08-20T04:10:26Z,2020-02-15T06:59:51Z +7204,266,1,14080,1.99,2005-08-20T23:29:50Z,2020-02-15T06:59:51Z +7205,266,1,14492,2.99,2005-08-21T13:59:08Z,2020-02-15T06:59:51Z +7206,266,1,14877,0.99,2005-08-22T03:39:56Z,2020-02-15T06:59:51Z +7207,266,1,15181,2.99,2005-08-22T15:46:20Z,2020-02-15T06:59:51Z +7208,266,1,15346,4.99,2005-08-22T21:06:00Z,2020-02-15T06:59:51Z +7209,267,2,91,6.99,2005-05-25T14:57:22Z,2020-02-15T06:59:51Z +7210,267,1,436,4.99,2005-05-27T17:21:04Z,2020-02-15T06:59:51Z +7211,267,2,1030,4.99,2005-05-31T04:06:47Z,2020-02-15T06:59:51Z +7212,267,2,1257,4.99,2005-06-15T06:15:36Z,2020-02-15T06:59:51Z +7213,267,2,1349,4.99,2005-06-15T12:49:02Z,2020-02-15T06:59:51Z +7214,267,2,2265,2.99,2005-06-18T06:03:27Z,2020-02-15T06:59:51Z +7215,267,2,2578,7.99,2005-06-19T04:40:06Z,2020-02-15T06:59:51Z +7216,267,1,2582,6.99,2005-06-19T04:56:27Z,2020-02-15T06:59:51Z +7217,267,2,2699,2.99,2005-06-19T13:29:28Z,2020-02-15T06:59:51Z +7218,267,2,2754,4.99,2005-06-19T16:55:59Z,2020-02-15T06:59:51Z +7219,267,1,2877,1.99,2005-06-20T01:07:16Z,2020-02-15T06:59:51Z +7220,267,2,3090,0.99,2005-06-20T16:00:19Z,2020-02-15T06:59:51Z +7221,267,1,3817,2.99,2005-07-06T15:31:45Z,2020-02-15T06:59:51Z +7222,267,1,5340,6.99,2005-07-09T17:11:35Z,2020-02-15T06:59:51Z +7223,267,1,6070,0.99,2005-07-11T04:47:42Z,2020-02-15T06:59:51Z +7224,267,1,6706,3.99,2005-07-12T12:59:16Z,2020-02-15T06:59:51Z +7225,267,1,8190,4.99,2005-07-28T22:47:06Z,2020-02-15T06:59:51Z +7226,267,1,8572,1.99,2005-07-29T11:51:24Z,2020-02-15T06:59:51Z +7227,267,2,9059,3.99,2005-07-30T07:18:44Z,2020-02-15T06:59:51Z +7228,267,1,9308,6.99,2005-07-30T16:53:21Z,2020-02-15T06:59:51Z +7229,267,2,9403,4.99,2005-07-30T20:18:53Z,2020-02-15T06:59:51Z +7230,267,2,9807,2.99,2005-07-31T11:13:52Z,2020-02-15T06:59:51Z +7231,267,2,10048,4.99,2005-07-31T19:08:56Z,2020-02-15T06:59:51Z +7232,267,1,10343,2.99,2005-08-01T05:15:47Z,2020-02-15T06:59:51Z +7233,267,2,11373,0.99,2005-08-02T18:14:12Z,2020-02-15T06:59:51Z +7234,267,1,11690,6.99,2005-08-17T06:44:22Z,2020-02-15T06:59:51Z +7235,267,1,12320,4.99,2005-08-18T06:26:51Z,2020-02-15T06:59:51Z +7236,267,1,12979,4.99,2005-08-19T07:00:35Z,2020-02-15T06:59:51Z +7237,267,2,13236,9.99,2005-08-19T16:18:24Z,2020-02-15T06:59:51Z +7238,267,1,14131,5.99,2005-08-21T01:43:40Z,2020-02-15T06:59:51Z +7239,267,2,15020,3.99,2005-08-22T08:54:12Z,2020-02-15T06:59:51Z +7240,267,1,15208,3.99,2005-08-22T16:35:47Z,2020-02-15T06:59:51Z +7241,267,1,15768,0.99,2005-08-23T13:14:47Z,2020-02-15T06:59:51Z +7242,267,1,15903,3.99,2005-08-23T17:30:40Z,2020-02-15T06:59:51Z +7243,267,2,12066,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7244,267,2,13713,0,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7245,268,1,1394,2.99,2005-06-15T16:17:21Z,2020-02-15T06:59:51Z +7246,268,2,1450,4.99,2005-06-15T19:22:08Z,2020-02-15T06:59:51Z +7247,268,2,1551,3.99,2005-06-16T02:01:15Z,2020-02-15T06:59:51Z +7248,268,1,2133,0.99,2005-06-17T21:10:05Z,2020-02-15T06:59:51Z +7249,268,2,2324,4.99,2005-06-18T10:00:33Z,2020-02-15T06:59:51Z +7250,268,2,2858,2.99,2005-06-19T23:17:11Z,2020-02-15T06:59:51Z +7251,268,1,3066,3.99,2005-06-20T13:55:41Z,2020-02-15T06:59:51Z +7252,268,1,3361,1.99,2005-06-21T12:14:23Z,2020-02-15T06:59:51Z +7253,268,2,3670,4.99,2005-07-06T08:56:43Z,2020-02-15T06:59:51Z +7254,268,2,4626,4.99,2005-07-08T08:18:21Z,2020-02-15T06:59:51Z +7255,268,1,5039,7.99,2005-07-09T03:14:45Z,2020-02-15T06:59:51Z +7256,268,2,5671,2.99,2005-07-10T08:18:22Z,2020-02-15T06:59:51Z +7257,268,2,5793,2.99,2005-07-10T14:33:00Z,2020-02-15T06:59:51Z +7258,268,2,5888,6.99,2005-07-10T19:52:17Z,2020-02-15T06:59:51Z +7259,268,1,6120,3.99,2005-07-11T07:49:53Z,2020-02-15T06:59:51Z +7260,268,2,6489,1.99,2005-07-12T02:22:46Z,2020-02-15T06:59:51Z +7261,268,1,8931,2.99,2005-07-30T02:30:07Z,2020-02-15T06:59:51Z +7262,268,2,9436,7.99,2005-07-30T21:33:01Z,2020-02-15T06:59:51Z +7263,268,2,9531,3.99,2005-07-31T01:11:53Z,2020-02-15T06:59:51Z +7264,268,1,10040,1.99,2005-07-31T18:54:15Z,2020-02-15T06:59:51Z +7265,268,2,11462,7.99,2005-08-02T21:36:46Z,2020-02-15T06:59:51Z +7266,268,2,11828,6.99,2005-08-17T12:48:28Z,2020-02-15T06:59:51Z +7267,268,2,12007,2.99,2005-08-17T19:10:34Z,2020-02-15T06:59:51Z +7268,268,2,12694,4.99,2005-08-18T20:10:39Z,2020-02-15T06:59:51Z +7269,268,2,13880,5.99,2005-08-20T15:18:20Z,2020-02-15T06:59:51Z +7270,268,2,14249,4.99,2005-08-21T05:38:05Z,2020-02-15T06:59:51Z +7271,268,2,14373,4.99,2005-08-21T09:44:53Z,2020-02-15T06:59:51Z +7272,268,1,14874,0.99,2005-08-22T03:32:05Z,2020-02-15T06:59:51Z +7273,268,2,15183,2.99,2005-08-22T15:49:54Z,2020-02-15T06:59:51Z +7274,269,2,7,1.99,2005-05-24T23:11:53Z,2020-02-15T06:59:51Z +7275,269,1,98,0.99,2005-05-25T16:48:24Z,2020-02-15T06:59:51Z +7276,269,2,678,6.99,2005-05-28T23:15:48Z,2020-02-15T06:59:51Z +7277,269,2,703,0.99,2005-05-29T02:29:36Z,2020-02-15T06:59:51Z +7278,269,1,750,4.99,2005-05-29T09:41:40Z,2020-02-15T06:59:51Z +7279,269,2,1099,2.99,2005-05-31T13:54:48Z,2020-02-15T06:59:51Z +7280,269,1,1334,3.99,2005-06-15T11:43:09Z,2020-02-15T06:59:51Z +7281,269,2,1909,2.99,2005-06-17T05:11:04Z,2020-02-15T06:59:51Z +7282,269,2,2493,6.99,2005-06-18T22:12:09Z,2020-02-15T06:59:51Z +7283,269,1,4125,9.99,2005-07-07T07:20:29Z,2020-02-15T06:59:51Z +7284,269,2,4804,0.99,2005-07-08T16:57:30Z,2020-02-15T06:59:51Z +7285,269,2,4880,6.99,2005-07-08T19:36:17Z,2020-02-15T06:59:51Z +7286,269,1,6440,2.99,2005-07-12T00:25:04Z,2020-02-15T06:59:51Z +7287,269,1,6626,5.99,2005-07-12T09:16:24Z,2020-02-15T06:59:51Z +7288,269,2,6804,4.99,2005-07-12T17:22:06Z,2020-02-15T06:59:51Z +7289,269,1,7032,4.99,2005-07-27T03:03:09Z,2020-02-15T06:59:51Z +7290,269,1,7537,6.99,2005-07-27T21:36:09Z,2020-02-15T06:59:51Z +7291,269,1,7972,2.99,2005-07-28T14:07:46Z,2020-02-15T06:59:51Z +7292,269,2,10566,2.99,2005-08-01T13:12:11Z,2020-02-15T06:59:51Z +7293,269,1,10908,4.99,2005-08-02T01:53:06Z,2020-02-15T06:59:51Z +7294,269,1,11014,4.99,2005-08-02T05:12:22Z,2020-02-15T06:59:51Z +7295,269,1,11915,3.99,2005-08-17T16:05:28Z,2020-02-15T06:59:51Z +7296,269,1,12344,4.99,2005-08-18T07:15:19Z,2020-02-15T06:59:51Z +7297,269,2,13142,5.99,2005-08-19T12:42:28Z,2020-02-15T06:59:52Z +7298,269,2,13759,2.99,2005-08-20T11:24:48Z,2020-02-15T06:59:52Z +7299,269,1,14266,4.99,2005-08-21T06:20:51Z,2020-02-15T06:59:52Z +7300,269,2,14693,6.99,2005-08-21T20:44:19Z,2020-02-15T06:59:52Z +7301,269,2,15788,2.99,2005-08-23T13:54:39Z,2020-02-15T06:59:52Z +7302,269,1,13025,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7303,269,2,12610,0,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7304,270,1,193,1.99,2005-05-26T06:41:48Z,2020-02-15T06:59:52Z +7305,270,1,1040,4.99,2005-05-31T05:35:16Z,2020-02-15T06:59:52Z +7306,270,1,1345,4.99,2005-06-15T12:32:13Z,2020-02-15T06:59:52Z +7307,270,1,1896,6.99,2005-06-17T04:25:46Z,2020-02-15T06:59:52Z +7308,270,1,2115,3.99,2005-06-17T20:02:16Z,2020-02-15T06:59:52Z +7309,270,2,3164,5.99,2005-06-20T21:29:00Z,2020-02-15T06:59:52Z +7310,270,1,3501,3.99,2005-07-06T00:11:28Z,2020-02-15T06:59:52Z +7311,270,1,3987,9.99,2005-07-06T23:28:24Z,2020-02-15T06:59:52Z +7312,270,2,5533,0.99,2005-07-10T02:19:28Z,2020-02-15T06:59:52Z +7313,270,2,6520,4.99,2005-07-12T04:05:16Z,2020-02-15T06:59:52Z +7314,270,1,8355,2.99,2005-07-29T04:57:43Z,2020-02-15T06:59:52Z +7315,270,2,8618,3.99,2005-07-29T13:48:20Z,2020-02-15T06:59:52Z +7316,270,1,10069,3.99,2005-07-31T19:43:18Z,2020-02-15T06:59:52Z +7317,270,1,10461,7.99,2005-08-01T09:32:53Z,2020-02-15T06:59:52Z +7318,270,2,10579,5.99,2005-08-01T13:48:22Z,2020-02-15T06:59:52Z +7319,270,2,10648,4.99,2005-08-01T16:08:52Z,2020-02-15T06:59:52Z +7320,270,1,11389,2.99,2005-08-02T18:39:12Z,2020-02-15T06:59:52Z +7321,270,1,11810,0.99,2005-08-17T11:56:48Z,2020-02-15T06:59:52Z +7322,270,2,11841,2.99,2005-08-17T13:12:20Z,2020-02-15T06:59:52Z +7323,270,1,11917,2.99,2005-08-17T16:08:17Z,2020-02-15T06:59:52Z +7324,270,1,12192,2.99,2005-08-18T02:01:40Z,2020-02-15T06:59:52Z +7325,270,1,12442,2.99,2005-08-18T10:50:07Z,2020-02-15T06:59:52Z +7326,270,2,13945,1.99,2005-08-20T17:43:56Z,2020-02-15T06:59:52Z +7327,270,1,14618,0.99,2005-08-21T18:09:51Z,2020-02-15T06:59:52Z +7328,270,2,15620,6.99,2005-08-23T07:10:22Z,2020-02-15T06:59:52Z +7329,271,1,1096,8.99,2005-05-31T13:30:49Z,2020-02-15T06:59:52Z +7330,271,2,1852,2.99,2005-06-17T00:38:20Z,2020-02-15T06:59:52Z +7331,271,1,3640,1.99,2005-07-06T07:12:26Z,2020-02-15T06:59:52Z +7332,271,2,4545,2.99,2005-07-08T04:17:47Z,2020-02-15T06:59:52Z +7333,271,2,5878,1.99,2005-07-10T19:09:57Z,2020-02-15T06:59:52Z +7334,271,1,5922,2.99,2005-07-10T21:36:53Z,2020-02-15T06:59:52Z +7335,271,1,6024,2.99,2005-07-11T02:16:47Z,2020-02-15T06:59:52Z +7336,271,1,7618,3.99,2005-07-28T00:24:14Z,2020-02-15T06:59:52Z +7337,271,1,8592,0.99,2005-07-29T12:33:58Z,2020-02-15T06:59:52Z +7338,271,1,9821,4.99,2005-07-31T11:47:54Z,2020-02-15T06:59:52Z +7339,271,2,10143,7.99,2005-07-31T22:11:43Z,2020-02-15T06:59:52Z +7340,271,2,10310,4.99,2005-08-01T04:24:47Z,2020-02-15T06:59:52Z +7341,271,1,10599,3.99,2005-08-01T14:23:58Z,2020-02-15T06:59:52Z +7342,271,1,11431,2.99,2005-08-02T20:05:16Z,2020-02-15T06:59:52Z +7343,271,1,12219,4.99,2005-08-18T02:49:54Z,2020-02-15T06:59:52Z +7344,271,2,14234,0.99,2005-08-21T05:07:12Z,2020-02-15T06:59:52Z +7345,271,2,14355,4.99,2005-08-21T09:08:29Z,2020-02-15T06:59:52Z +7346,271,1,15244,2.99,2005-08-22T17:48:42Z,2020-02-15T06:59:52Z +7347,272,1,33,0.99,2005-05-25T04:18:51Z,2020-02-15T06:59:52Z +7348,272,1,405,6.99,2005-05-27T13:32:39Z,2020-02-15T06:59:52Z +7349,272,1,1041,6.99,2005-05-31T05:46:23Z,2020-02-15T06:59:52Z +7350,272,1,1072,0.99,2005-05-31T09:52:50Z,2020-02-15T06:59:52Z +7351,272,2,1604,4.99,2005-06-16T06:14:25Z,2020-02-15T06:59:52Z +7352,272,2,2546,5.99,2005-06-19T02:39:39Z,2020-02-15T06:59:52Z +7353,272,1,3323,5.99,2005-06-21T08:45:33Z,2020-02-15T06:59:52Z +7354,272,2,5047,3.99,2005-07-09T03:44:15Z,2020-02-15T06:59:52Z +7355,272,2,5158,2.99,2005-07-09T08:53:09Z,2020-02-15T06:59:52Z +7356,272,2,7300,7.99,2005-07-27T12:50:17Z,2020-02-15T06:59:52Z +7357,272,2,7658,2.99,2005-07-28T02:09:12Z,2020-02-15T06:59:52Z +7358,272,1,8248,7.99,2005-07-29T00:41:56Z,2020-02-15T06:59:52Z +7359,272,2,9787,10.99,2005-07-31T10:26:19Z,2020-02-15T06:59:52Z +7360,272,1,10736,2.99,2005-08-01T19:30:21Z,2020-02-15T06:59:52Z +7361,272,2,11003,2.99,2005-08-02T05:03:05Z,2020-02-15T06:59:52Z +7362,272,2,11597,8.99,2005-08-17T03:02:56Z,2020-02-15T06:59:52Z +7363,272,1,11881,0.99,2005-08-17T14:31:56Z,2020-02-15T06:59:52Z +7364,272,2,12006,6.99,2005-08-17T19:09:12Z,2020-02-15T06:59:52Z +7365,272,2,13274,2.99,2005-08-19T17:50:03Z,2020-02-15T06:59:52Z +7366,272,1,13903,2.99,2005-08-20T16:07:55Z,2020-02-15T06:59:52Z +7367,273,2,122,3.99,2005-05-25T19:46:21Z,2020-02-15T06:59:52Z +7368,273,2,980,0.99,2005-05-30T21:45:19Z,2020-02-15T06:59:52Z +7369,273,2,1391,6.99,2005-06-15T16:11:21Z,2020-02-15T06:59:52Z +7370,273,2,1747,6.99,2005-06-16T16:53:33Z,2020-02-15T06:59:52Z +7371,273,2,1765,4.99,2005-06-16T17:56:10Z,2020-02-15T06:59:52Z +7372,273,1,2301,1.99,2005-06-18T08:24:03Z,2020-02-15T06:59:52Z +7373,273,1,3202,0.99,2005-06-21T00:33:47Z,2020-02-15T06:59:52Z +7374,273,2,3556,2.99,2005-07-06T02:46:13Z,2020-02-15T06:59:52Z +7375,273,1,4937,5.99,2005-07-08T22:29:59Z,2020-02-15T06:59:52Z +7376,273,1,5256,7.99,2005-07-09T13:55:45Z,2020-02-15T06:59:52Z +7377,273,2,5435,7.99,2005-07-09T21:28:07Z,2020-02-15T06:59:52Z +7378,273,1,5605,2.99,2005-07-10T05:06:45Z,2020-02-15T06:59:52Z +7379,273,1,6592,8.99,2005-07-12T07:19:35Z,2020-02-15T06:59:52Z +7380,273,1,6635,1.99,2005-07-12T09:47:58Z,2020-02-15T06:59:52Z +7381,273,2,6696,2.99,2005-07-12T12:44:04Z,2020-02-15T06:59:52Z +7382,273,1,6717,5.99,2005-07-12T13:35:02Z,2020-02-15T06:59:52Z +7383,273,1,8449,2.99,2005-07-29T07:42:25Z,2020-02-15T06:59:52Z +7384,273,1,9186,4.99,2005-07-30T12:13:48Z,2020-02-15T06:59:52Z +7385,273,2,9285,5.99,2005-07-30T15:26:08Z,2020-02-15T06:59:52Z +7386,273,2,9391,0.99,2005-07-30T19:48:41Z,2020-02-15T06:59:52Z +7387,273,2,9693,3.99,2005-07-31T07:11:50Z,2020-02-15T06:59:52Z +7388,273,2,9729,0.99,2005-07-31T08:43:43Z,2020-02-15T06:59:52Z +7389,273,1,10272,8.99,2005-08-01T03:14:34Z,2020-02-15T06:59:52Z +7390,273,1,10753,3.99,2005-08-01T20:09:24Z,2020-02-15T06:59:52Z +7391,273,1,10768,6.99,2005-08-01T20:39:32Z,2020-02-15T06:59:52Z +7392,273,1,11282,4.99,2005-08-02T14:35:03Z,2020-02-15T06:59:52Z +7393,273,2,11509,4.99,2005-08-16T23:29:53Z,2020-02-15T06:59:52Z +7394,273,1,12692,0.99,2005-08-18T20:09:19Z,2020-02-15T06:59:52Z +7395,273,2,13738,4.99,2005-08-20T10:42:42Z,2020-02-15T06:59:52Z +7396,273,1,13955,5.99,2005-08-20T18:05:12Z,2020-02-15T06:59:52Z +7397,273,2,14092,4.99,2005-08-21T00:14:32Z,2020-02-15T06:59:52Z +7398,273,2,14558,2.99,2005-08-21T16:10:50Z,2020-02-15T06:59:52Z +7399,273,2,14911,2.99,2005-08-22T04:51:42Z,2020-02-15T06:59:52Z +7400,273,2,15372,2.99,2005-08-22T21:59:51Z,2020-02-15T06:59:52Z +7401,273,1,15760,6.99,2005-08-23T12:50:00Z,2020-02-15T06:59:52Z +7402,274,1,147,2.99,2005-05-26T00:17:50Z,2020-02-15T06:59:52Z +7403,274,1,208,4.99,2005-05-26T08:10:22Z,2020-02-15T06:59:52Z +7404,274,2,301,2.99,2005-05-26T21:06:14Z,2020-02-15T06:59:52Z +7405,274,1,394,5.99,2005-05-27T11:26:11Z,2020-02-15T06:59:52Z +7406,274,2,474,2.99,2005-05-27T22:11:56Z,2020-02-15T06:59:52Z +7407,274,1,892,4.99,2005-05-30T08:02:56Z,2020-02-15T06:59:52Z +7408,274,1,2098,0.99,2005-06-17T18:42:09Z,2020-02-15T06:59:52Z +7409,274,2,3291,9.99,2005-06-21T06:55:36Z,2020-02-15T06:59:52Z +7410,274,2,3532,5.99,2005-07-06T01:24:38Z,2020-02-15T06:59:52Z +7411,274,1,4147,2.99,2005-07-07T08:32:12Z,2020-02-15T06:59:52Z +7412,274,2,4582,2.99,2005-07-08T06:09:09Z,2020-02-15T06:59:52Z +7413,274,2,6389,3.99,2005-07-11T22:18:20Z,2020-02-15T06:59:52Z +7414,274,2,8259,0.99,2005-07-29T01:05:16Z,2020-02-15T06:59:52Z +7415,274,2,8406,5.99,2005-07-29T06:34:45Z,2020-02-15T06:59:52Z +7416,274,2,8517,7.99,2005-07-29T10:00:48Z,2020-02-15T06:59:52Z +7417,274,1,9331,4.99,2005-07-30T17:46:50Z,2020-02-15T06:59:52Z +7418,274,1,9677,4.99,2005-07-31T06:39:45Z,2020-02-15T06:59:52Z +7419,274,2,10059,4.99,2005-07-31T19:20:49Z,2020-02-15T06:59:52Z +7420,274,1,10790,1.99,2005-08-01T21:38:37Z,2020-02-15T06:59:52Z +7421,274,2,10855,0.99,2005-08-02T00:06:37Z,2020-02-15T06:59:52Z +7422,274,1,11058,3.99,2005-08-02T06:38:44Z,2020-02-15T06:59:52Z +7423,274,2,11363,2.99,2005-08-02T17:48:39Z,2020-02-15T06:59:52Z +7424,274,1,12321,3.99,2005-08-18T06:27:05Z,2020-02-15T06:59:52Z +7425,274,1,13103,2.99,2005-08-19T11:05:51Z,2020-02-15T06:59:52Z +7426,274,2,13129,8.99,2005-08-19T12:05:04Z,2020-02-15T06:59:52Z +7427,274,1,13549,8.99,2005-08-20T03:58:41Z,2020-02-15T06:59:52Z +7428,274,1,14012,0.99,2005-08-20T20:42:12Z,2020-02-15T06:59:52Z +7429,274,1,14066,7.99,2005-08-20T22:45:58Z,2020-02-15T06:59:52Z +7430,274,2,14164,7.99,2005-08-21T02:58:02Z,2020-02-15T06:59:52Z +7431,274,1,14388,4.99,2005-08-21T10:15:13Z,2020-02-15T06:59:52Z +7432,274,2,15143,2.99,2005-08-22T13:46:24Z,2020-02-15T06:59:52Z +7433,274,1,15260,2.99,2005-08-22T18:24:16Z,2020-02-15T06:59:52Z +7434,274,2,15328,2.99,2005-08-22T20:31:38Z,2020-02-15T06:59:52Z +7435,274,2,15819,3.99,2005-08-23T15:01:54Z,2020-02-15T06:59:52Z +7436,274,1,13486,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7437,275,2,336,2.99,2005-05-27T03:15:23Z,2020-02-15T06:59:52Z +7438,275,2,1797,3.99,2005-06-16T20:13:03Z,2020-02-15T06:59:52Z +7439,275,2,2414,0.99,2005-06-18T17:01:55Z,2020-02-15T06:59:52Z +7440,275,1,2646,4.99,2005-06-19T09:56:01Z,2020-02-15T06:59:52Z +7441,275,1,3355,2.99,2005-06-21T11:30:47Z,2020-02-15T06:59:52Z +7442,275,2,4396,0.99,2005-07-07T21:14:19Z,2020-02-15T06:59:52Z +7443,275,1,4634,0.99,2005-07-08T08:40:02Z,2020-02-15T06:59:52Z +7444,275,2,4912,9.99,2005-07-08T21:26:11Z,2020-02-15T06:59:52Z +7445,275,2,6301,5.99,2005-07-11T17:54:09Z,2020-02-15T06:59:52Z +7446,275,2,6856,0.99,2005-07-12T19:50:16Z,2020-02-15T06:59:52Z +7447,275,1,7553,2.99,2005-07-27T22:11:36Z,2020-02-15T06:59:52Z +7448,275,2,7596,4.99,2005-07-27T23:33:57Z,2020-02-15T06:59:52Z +7449,275,1,8746,2.99,2005-07-29T19:03:15Z,2020-02-15T06:59:52Z +7450,275,2,9258,2.99,2005-07-30T14:31:31Z,2020-02-15T06:59:52Z +7451,275,1,10479,6.99,2005-08-01T10:11:25Z,2020-02-15T06:59:52Z +7452,275,2,11309,1.99,2005-08-02T15:50:55Z,2020-02-15T06:59:52Z +7453,275,1,11610,4.99,2005-08-17T03:43:37Z,2020-02-15T06:59:52Z +7454,275,2,12589,5.99,2005-08-18T16:06:31Z,2020-02-15T06:59:52Z +7455,275,1,12606,1.99,2005-08-18T17:02:21Z,2020-02-15T06:59:52Z +7456,275,1,13037,3.99,2005-08-19T08:53:57Z,2020-02-15T06:59:52Z +7457,275,2,13860,2.99,2005-08-20T14:55:09Z,2020-02-15T06:59:52Z +7458,275,2,13865,1.99,2005-08-20T15:04:09Z,2020-02-15T06:59:52Z +7459,275,2,13902,0.99,2005-08-20T16:07:08Z,2020-02-15T06:59:52Z +7460,275,2,14063,0.99,2005-08-20T22:36:40Z,2020-02-15T06:59:52Z +7461,275,1,14187,5.99,2005-08-21T03:32:03Z,2020-02-15T06:59:52Z +7462,275,1,14296,2.99,2005-08-21T07:13:23Z,2020-02-15T06:59:52Z +7463,275,2,14483,5.99,2005-08-21T13:43:59Z,2020-02-15T06:59:52Z +7464,275,2,14727,4.99,2005-08-21T22:12:45Z,2020-02-15T06:59:52Z +7465,275,2,15269,2.99,2005-08-22T18:39:44Z,2020-02-15T06:59:52Z +7466,275,2,15496,3.99,2005-08-23T02:30:23Z,2020-02-15T06:59:52Z +7467,276,1,736,3.99,2005-05-29T08:10:07Z,2020-02-15T06:59:52Z +7468,276,1,860,10.99,2005-05-30T02:45:16Z,2020-02-15T06:59:52Z +7469,276,1,1352,0.99,2005-06-15T12:58:27Z,2020-02-15T06:59:52Z +7470,276,2,2763,4.99,2005-06-19T17:23:34Z,2020-02-15T06:59:52Z +7471,276,2,3064,6.99,2005-06-20T13:53:13Z,2020-02-15T06:59:52Z +7472,276,2,3714,2.99,2005-07-06T10:51:28Z,2020-02-15T06:59:52Z +7473,276,1,4715,0.99,2005-07-08T12:15:37Z,2020-02-15T06:59:52Z +7474,276,2,5186,4.99,2005-07-09T10:18:40Z,2020-02-15T06:59:52Z +7475,276,2,5246,4.99,2005-07-09T13:25:18Z,2020-02-15T06:59:52Z +7476,276,2,7282,5.99,2005-07-27T12:00:19Z,2020-02-15T06:59:52Z +7477,276,2,7842,2.99,2005-07-28T09:10:06Z,2020-02-15T06:59:52Z +7478,276,1,9070,0.99,2005-07-30T07:40:39Z,2020-02-15T06:59:52Z +7479,276,1,9080,1.99,2005-07-30T08:02:39Z,2020-02-15T06:59:52Z +7480,276,1,9102,4.99,2005-07-30T08:48:20Z,2020-02-15T06:59:52Z +7481,276,1,9229,8.99,2005-07-30T13:38:17Z,2020-02-15T06:59:52Z +7482,276,2,10149,5.99,2005-07-31T22:20:46Z,2020-02-15T06:59:52Z +7483,276,2,10691,0.99,2005-08-01T18:09:53Z,2020-02-15T06:59:52Z +7484,276,1,10763,2.99,2005-08-01T20:32:27Z,2020-02-15T06:59:52Z +7485,276,2,11085,2.99,2005-08-02T07:36:44Z,2020-02-15T06:59:52Z +7486,276,1,11636,4.99,2005-08-17T04:36:31Z,2020-02-15T06:59:52Z +7487,276,2,11961,3.99,2005-08-17T17:28:01Z,2020-02-15T06:59:52Z +7488,276,2,12178,5.99,2005-08-18T01:17:32Z,2020-02-15T06:59:52Z +7489,276,2,12251,4.99,2005-08-18T03:59:02Z,2020-02-15T06:59:52Z +7490,276,1,12650,4.99,2005-08-18T18:33:20Z,2020-02-15T06:59:52Z +7491,276,1,14000,4.99,2005-08-20T20:06:05Z,2020-02-15T06:59:52Z +7492,276,2,15718,2.99,2005-08-23T11:05:17Z,2020-02-15T06:59:52Z +7493,276,1,15769,3.99,2005-08-23T13:16:15Z,2020-02-15T06:59:52Z +7494,276,2,15923,4.99,2005-08-23T18:08:19Z,2020-02-15T06:59:52Z +7495,277,2,308,6.99,2005-05-26T22:01:39Z,2020-02-15T06:59:52Z +7496,277,1,1331,2.99,2005-06-15T11:34:33Z,2020-02-15T06:59:52Z +7497,277,2,1717,2.99,2005-06-16T14:47:16Z,2020-02-15T06:59:52Z +7498,277,2,2162,3.99,2005-06-17T23:45:47Z,2020-02-15T06:59:52Z +7499,277,2,2723,4.99,2005-06-19T14:55:23Z,2020-02-15T06:59:52Z +7500,277,1,3247,5.99,2005-06-21T03:12:15Z,2020-02-15T06:59:52Z +7501,277,2,3274,4.99,2005-06-21T05:30:36Z,2020-02-15T06:59:52Z +7502,277,1,3344,2.99,2005-06-21T10:57:27Z,2020-02-15T06:59:52Z +7503,277,2,3740,5.99,2005-07-06T11:55:35Z,2020-02-15T06:59:52Z +7504,277,2,3897,2.99,2005-07-06T19:11:43Z,2020-02-15T06:59:52Z +7505,277,1,4290,4.99,2005-07-07T15:47:10Z,2020-02-15T06:59:52Z +7506,277,2,4987,5.99,2005-07-09T00:45:41Z,2020-02-15T06:59:52Z +7507,277,1,5861,0.99,2005-07-10T18:14:22Z,2020-02-15T06:59:52Z +7508,277,1,5913,2.99,2005-07-10T20:58:55Z,2020-02-15T06:59:52Z +7509,277,2,6455,2.99,2005-07-12T01:01:58Z,2020-02-15T06:59:52Z +7510,277,1,6487,5.99,2005-07-12T02:17:00Z,2020-02-15T06:59:52Z +7511,277,2,7423,4.99,2005-07-27T17:11:47Z,2020-02-15T06:59:52Z +7512,277,2,8410,2.99,2005-07-29T06:41:36Z,2020-02-15T06:59:52Z +7513,277,2,9669,4.99,2005-07-31T06:31:36Z,2020-02-15T06:59:52Z +7514,277,1,9901,0.99,2005-07-31T14:20:59Z,2020-02-15T06:59:52Z +7515,277,2,11074,3.99,2005-08-02T07:21:43Z,2020-02-15T06:59:52Z +7516,277,2,11162,4.99,2005-08-02T10:07:54Z,2020-02-15T06:59:52Z +7517,277,2,11574,0.99,2005-08-17T01:38:19Z,2020-02-15T06:59:52Z +7518,277,2,12149,3.99,2005-08-18T00:13:51Z,2020-02-15T06:59:52Z +7519,277,1,12458,5.99,2005-08-18T11:22:53Z,2020-02-15T06:59:52Z +7520,277,1,13122,4.99,2005-08-19T11:53:49Z,2020-02-15T06:59:52Z +7521,277,2,13526,4.99,2005-08-20T02:58:42Z,2020-02-15T06:59:52Z +7522,277,1,13714,4.99,2005-08-20T09:41:09Z,2020-02-15T06:59:52Z +7523,277,2,14227,4.99,2005-08-21T04:56:31Z,2020-02-15T06:59:52Z +7524,277,2,14745,4.99,2005-08-21T22:53:01Z,2020-02-15T06:59:52Z +7525,277,1,15008,10.99,2005-08-22T08:24:32Z,2020-02-15T06:59:52Z +7526,277,1,15345,5.99,2005-08-22T21:05:50Z,2020-02-15T06:59:52Z +7527,278,1,1092,4.99,2005-05-31T12:15:57Z,2020-02-15T06:59:52Z +7528,278,2,1387,0.99,2005-06-15T15:40:56Z,2020-02-15T06:59:52Z +7529,278,1,1978,2.99,2005-06-17T09:42:34Z,2020-02-15T06:59:52Z +7530,278,2,2078,4.99,2005-06-17T16:48:55Z,2020-02-15T06:59:52Z +7531,278,1,3453,2.99,2005-06-21T21:12:11Z,2020-02-15T06:59:52Z +7532,278,1,3776,2.99,2005-07-06T13:31:37Z,2020-02-15T06:59:52Z +7533,278,1,4430,4.99,2005-07-07T22:35:24Z,2020-02-15T06:59:52Z +7534,278,2,4866,8.99,2005-07-08T19:09:59Z,2020-02-15T06:59:52Z +7535,278,2,6869,4.99,2005-07-12T20:12:06Z,2020-02-15T06:59:52Z +7536,278,1,7239,0.99,2005-07-27T10:20:27Z,2020-02-15T06:59:52Z +7537,278,2,7834,0.99,2005-07-28T08:46:43Z,2020-02-15T06:59:52Z +7538,278,2,8222,5.99,2005-07-28T23:51:53Z,2020-02-15T06:59:52Z +7539,278,1,8953,4.99,2005-07-30T03:21:05Z,2020-02-15T06:59:52Z +7540,278,2,9448,2.99,2005-07-30T21:56:13Z,2020-02-15T06:59:52Z +7541,278,1,10649,2.99,2005-08-01T16:11:40Z,2020-02-15T06:59:52Z +7542,278,1,10731,2.99,2005-08-01T19:21:48Z,2020-02-15T06:59:52Z +7543,278,2,10849,3.99,2005-08-01T23:51:00Z,2020-02-15T06:59:52Z +7544,278,1,11095,5.99,2005-08-02T08:03:20Z,2020-02-15T06:59:52Z +7545,278,2,11531,0.99,2005-08-17T00:30:04Z,2020-02-15T06:59:52Z +7546,278,1,12787,0.99,2005-08-19T00:07:58Z,2020-02-15T06:59:52Z +7547,278,1,13896,0.99,2005-08-20T15:59:56Z,2020-02-15T06:59:52Z +7548,278,2,13976,0.99,2005-08-20T19:02:16Z,2020-02-15T06:59:52Z +7549,278,1,14268,2.99,2005-08-21T06:21:24Z,2020-02-15T06:59:52Z +7550,278,2,14803,0.99,2005-08-22T00:49:10Z,2020-02-15T06:59:52Z +7551,278,1,14986,4.99,2005-08-22T07:37:24Z,2020-02-15T06:59:52Z +7552,278,1,16019,4.99,2005-08-23T21:30:45Z,2020-02-15T06:59:52Z +7553,279,1,979,2.99,2005-05-30T21:37:11Z,2020-02-15T06:59:52Z +7554,279,2,1019,0.99,2005-05-31T03:05:07Z,2020-02-15T06:59:52Z +7555,279,1,1178,2.99,2005-06-15T00:36:40Z,2020-02-15T06:59:52Z +7556,279,1,2147,4.99,2005-06-17T22:28:13Z,2020-02-15T06:59:52Z +7557,279,1,3215,0.99,2005-06-21T01:11:32Z,2020-02-15T06:59:52Z +7558,279,1,3374,2.99,2005-06-21T13:36:30Z,2020-02-15T06:59:52Z +7559,279,1,3375,4.99,2005-06-21T13:37:18Z,2020-02-15T06:59:52Z +7560,279,1,4476,4.99,2005-07-08T00:34:25Z,2020-02-15T06:59:52Z +7561,279,1,4978,7.99,2005-07-09T00:22:02Z,2020-02-15T06:59:52Z +7562,279,2,5248,2.99,2005-07-09T13:29:44Z,2020-02-15T06:59:52Z +7563,279,1,5361,9.99,2005-07-09T18:15:32Z,2020-02-15T06:59:52Z +7564,279,1,6176,0.99,2005-07-11T10:48:21Z,2020-02-15T06:59:52Z +7565,279,1,7947,2.99,2005-07-28T13:05:50Z,2020-02-15T06:59:52Z +7566,279,2,8559,3.99,2005-07-29T11:25:54Z,2020-02-15T06:59:52Z +7567,279,2,9820,5.99,2005-07-31T11:46:57Z,2020-02-15T06:59:52Z +7568,279,2,10177,2.99,2005-07-31T23:42:33Z,2020-02-15T06:59:52Z +7569,279,2,11250,6.99,2005-08-02T13:35:42Z,2020-02-15T06:59:52Z +7570,279,1,11515,2.99,2005-08-16T23:54:34Z,2020-02-15T06:59:52Z +7571,279,1,11703,4.99,2005-08-17T07:19:29Z,2020-02-15T06:59:52Z +7572,279,2,12935,2.99,2005-08-19T05:20:25Z,2020-02-15T06:59:52Z +7573,279,1,12949,4.99,2005-08-19T05:55:52Z,2020-02-15T06:59:52Z +7574,279,1,13105,7.99,2005-08-19T11:06:16Z,2020-02-15T06:59:52Z +7575,279,1,13233,2.99,2005-08-19T16:14:41Z,2020-02-15T06:59:52Z +7576,279,2,13588,4.99,2005-08-20T05:47:11Z,2020-02-15T06:59:52Z +7577,279,2,14206,2.99,2005-08-21T03:59:26Z,2020-02-15T06:59:52Z +7578,279,1,14714,3.99,2005-08-21T21:27:43Z,2020-02-15T06:59:52Z +7579,279,1,14779,5.99,2005-08-22T00:00:56Z,2020-02-15T06:59:52Z +7580,279,1,14789,4.99,2005-08-22T00:29:39Z,2020-02-15T06:59:52Z +7581,279,2,15580,6.99,2005-08-23T05:39:06Z,2020-02-15T06:59:52Z +7582,279,1,15606,2.99,2005-08-23T06:50:27Z,2020-02-15T06:59:52Z +7583,279,2,13538,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7584,280,1,1014,4.99,2005-05-31T02:39:16Z,2020-02-15T06:59:52Z +7585,280,1,2656,3.99,2005-06-19T10:42:33Z,2020-02-15T06:59:52Z +7586,280,2,3009,4.99,2005-06-20T10:24:44Z,2020-02-15T06:59:52Z +7587,280,2,3097,0.99,2005-06-20T16:26:14Z,2020-02-15T06:59:52Z +7588,280,1,4616,4.99,2005-07-08T07:48:12Z,2020-02-15T06:59:52Z +7589,280,2,6851,0.99,2005-07-12T19:32:14Z,2020-02-15T06:59:52Z +7590,280,1,7070,4.99,2005-07-27T04:01:08Z,2020-02-15T06:59:52Z +7591,280,2,7901,0.99,2005-07-28T11:12:12Z,2020-02-15T06:59:52Z +7592,280,2,8319,0.99,2005-07-29T03:44:52Z,2020-02-15T06:59:52Z +7593,280,1,8365,0.99,2005-07-29T05:11:00Z,2020-02-15T06:59:52Z +7594,280,1,8565,7.99,2005-07-29T11:35:23Z,2020-02-15T06:59:52Z +7595,280,2,8695,6.99,2005-07-29T16:44:55Z,2020-02-15T06:59:52Z +7596,280,2,8744,3.99,2005-07-29T18:58:24Z,2020-02-15T06:59:52Z +7597,280,1,8912,0.99,2005-07-30T01:31:25Z,2020-02-15T06:59:52Z +7598,280,2,9103,0.99,2005-07-30T08:49:26Z,2020-02-15T06:59:52Z +7599,280,1,10847,9.99,2005-08-01T23:49:33Z,2020-02-15T06:59:52Z +7600,280,1,11366,4.99,2005-08-02T18:01:25Z,2020-02-15T06:59:52Z +7601,280,1,11517,2.99,2005-08-16T23:56:28Z,2020-02-15T06:59:52Z +7602,280,1,12053,4.99,2005-08-17T20:57:27Z,2020-02-15T06:59:52Z +7603,280,1,12849,5.99,2005-08-19T02:05:37Z,2020-02-15T06:59:52Z +7604,280,2,13231,9.99,2005-08-19T16:12:49Z,2020-02-15T06:59:52Z +7605,280,1,13321,4.99,2005-08-19T19:40:37Z,2020-02-15T06:59:52Z +7606,280,1,13667,4.99,2005-08-20T08:25:34Z,2020-02-15T06:59:52Z +7607,280,2,15036,2.99,2005-08-22T09:36:00Z,2020-02-15T06:59:52Z +7608,280,1,15312,4.99,2005-08-22T19:58:15Z,2020-02-15T06:59:52Z +7609,280,2,15554,5.99,2005-08-23T04:48:12Z,2020-02-15T06:59:52Z +7610,280,2,15950,5.99,2005-08-23T19:09:39Z,2020-02-15T06:59:52Z +7611,281,2,650,2.99,2005-05-28T19:45:40Z,2020-02-15T06:59:52Z +7612,281,2,754,2.99,2005-05-29T10:18:59Z,2020-02-15T06:59:52Z +7613,281,2,1485,5.99,2005-06-15T21:24:10Z,2020-02-15T06:59:52Z +7614,281,1,2254,5.99,2005-06-18T05:15:14Z,2020-02-15T06:59:52Z +7615,281,1,4607,0.99,2005-07-08T07:15:14Z,2020-02-15T06:59:52Z +7616,281,2,4864,6.99,2005-07-08T19:05:34Z,2020-02-15T06:59:52Z +7617,281,2,5410,5.99,2005-07-09T20:21:10Z,2020-02-15T06:59:52Z +7618,281,2,6825,0.99,2005-07-12T18:28:12Z,2020-02-15T06:59:52Z +7619,281,2,7034,2.99,2005-07-27T03:03:37Z,2020-02-15T06:59:52Z +7620,281,1,7525,3.99,2005-07-27T21:13:28Z,2020-02-15T06:59:52Z +7621,281,2,8131,0.99,2005-07-28T19:55:21Z,2020-02-15T06:59:52Z +7622,281,2,8180,4.99,2005-07-28T22:05:24Z,2020-02-15T06:59:52Z +7623,281,1,13641,2.99,2005-08-20T07:34:42Z,2020-02-15T06:59:52Z +7624,281,1,14196,1.99,2005-08-21T03:40:40Z,2020-02-15T06:59:52Z +7625,282,2,48,1.99,2005-05-25T06:20:46Z,2020-02-15T06:59:52Z +7626,282,2,282,6.99,2005-05-26T18:56:26Z,2020-02-15T06:59:52Z +7627,282,2,564,0.99,2005-05-28T09:12:09Z,2020-02-15T06:59:52Z +7628,282,1,2016,2.99,2005-06-17T12:18:36Z,2020-02-15T06:59:52Z +7629,282,2,2176,2.99,2005-06-18T00:29:51Z,2020-02-15T06:59:52Z +7630,282,2,3408,4.99,2005-06-21T16:15:11Z,2020-02-15T06:59:52Z +7631,282,1,3417,2.99,2005-06-21T17:06:20Z,2020-02-15T06:59:52Z +7632,282,2,3675,2.99,2005-07-06T09:09:19Z,2020-02-15T06:59:52Z +7633,282,1,3885,2.99,2005-07-06T18:43:43Z,2020-02-15T06:59:52Z +7634,282,1,4359,2.99,2005-07-07T19:30:20Z,2020-02-15T06:59:52Z +7635,282,2,4412,4.99,2005-07-07T21:56:53Z,2020-02-15T06:59:52Z +7636,282,1,5113,0.99,2005-07-09T07:06:18Z,2020-02-15T06:59:52Z +7637,282,2,5319,8.99,2005-07-09T16:17:44Z,2020-02-15T06:59:52Z +7638,282,1,5926,6.99,2005-07-10T21:53:42Z,2020-02-15T06:59:52Z +7639,282,1,7433,2.99,2005-07-27T17:32:20Z,2020-02-15T06:59:52Z +7640,282,2,7534,3.99,2005-07-27T21:26:17Z,2020-02-15T06:59:52Z +7641,282,1,8223,6.99,2005-07-28T23:56:01Z,2020-02-15T06:59:52Z +7642,282,2,8270,4.99,2005-07-29T01:27:22Z,2020-02-15T06:59:52Z +7643,282,2,8468,1.99,2005-07-29T08:26:04Z,2020-02-15T06:59:52Z +7644,282,2,8743,0.99,2005-07-29T18:57:01Z,2020-02-15T06:59:52Z +7645,282,2,8973,1.99,2005-07-30T04:09:13Z,2020-02-15T06:59:52Z +7646,282,2,9658,9.99,2005-07-31T06:00:52Z,2020-02-15T06:59:52Z +7647,282,2,11226,2.99,2005-08-02T12:47:30Z,2020-02-15T06:59:52Z +7648,282,1,13278,2.99,2005-08-19T17:57:53Z,2020-02-15T06:59:52Z +7649,282,2,13749,2.99,2005-08-20T11:00:37Z,2020-02-15T06:59:52Z +7650,282,2,15543,4.99,2005-08-23T04:15:41Z,2020-02-15T06:59:52Z +7651,282,2,15430,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7652,283,1,1749,0.99,2005-06-16T16:56:00Z,2020-02-15T06:59:52Z +7653,283,2,1796,2.99,2005-06-16T20:10:43Z,2020-02-15T06:59:52Z +7654,283,2,2333,2.99,2005-06-18T10:55:54Z,2020-02-15T06:59:52Z +7655,283,1,2685,2.99,2005-06-19T12:35:21Z,2020-02-15T06:59:52Z +7656,283,2,2849,7.99,2005-06-19T23:06:00Z,2020-02-15T06:59:52Z +7657,283,1,3534,4.99,2005-07-06T01:32:27Z,2020-02-15T06:59:52Z +7658,283,1,3568,6.99,2005-07-06T03:11:57Z,2020-02-15T06:59:52Z +7659,283,2,3590,4.99,2005-07-06T04:35:12Z,2020-02-15T06:59:52Z +7660,283,2,3672,0.99,2005-07-06T09:01:56Z,2020-02-15T06:59:52Z +7661,283,2,4683,2.99,2005-07-08T10:38:28Z,2020-02-15T06:59:52Z +7662,283,2,4876,1.99,2005-07-08T19:27:50Z,2020-02-15T06:59:52Z +7663,283,2,5989,2.99,2005-07-11T00:57:53Z,2020-02-15T06:59:52Z +7664,283,1,6075,0.99,2005-07-11T05:03:03Z,2020-02-15T06:59:52Z +7665,283,1,6300,1.99,2005-07-11T17:50:09Z,2020-02-15T06:59:52Z +7666,283,2,6313,0.99,2005-07-11T18:29:52Z,2020-02-15T06:59:52Z +7667,283,1,6827,4.99,2005-07-12T18:33:45Z,2020-02-15T06:59:52Z +7668,283,1,7504,0.99,2005-07-27T20:24:31Z,2020-02-15T06:59:52Z +7669,283,1,7816,0.99,2005-07-28T08:14:12Z,2020-02-15T06:59:52Z +7670,283,2,9353,4.99,2005-07-30T18:30:37Z,2020-02-15T06:59:52Z +7671,283,2,9478,2.99,2005-07-30T23:12:53Z,2020-02-15T06:59:52Z +7672,283,2,9572,2.99,2005-07-31T02:44:10Z,2020-02-15T06:59:52Z +7673,283,2,9918,2.99,2005-07-31T14:55:22Z,2020-02-15T06:59:52Z +7674,283,1,11637,0.99,2005-08-17T04:36:39Z,2020-02-15T06:59:52Z +7675,283,2,11846,2.99,2005-08-17T13:18:29Z,2020-02-15T06:59:52Z +7676,283,2,11966,0.99,2005-08-17T17:40:04Z,2020-02-15T06:59:52Z +7677,283,1,12290,6.99,2005-08-18T05:08:03Z,2020-02-15T06:59:52Z +7678,283,1,13229,2.99,2005-08-19T16:08:33Z,2020-02-15T06:59:52Z +7679,283,1,15837,2.99,2005-08-23T15:29:41Z,2020-02-15T06:59:52Z +7680,284,2,423,0.99,2005-05-27T15:32:57Z,2020-02-15T06:59:52Z +7681,284,2,791,0.99,2005-05-29T16:30:42Z,2020-02-15T06:59:52Z +7682,284,1,1145,6.99,2005-05-31T20:13:45Z,2020-02-15T06:59:52Z +7683,284,1,1171,0.99,2005-06-14T23:50:11Z,2020-02-15T06:59:52Z +7684,284,2,2813,6.99,2005-06-19T20:01:47Z,2020-02-15T06:59:52Z +7685,284,2,3296,0.99,2005-06-21T07:04:53Z,2020-02-15T06:59:52Z +7686,284,1,3572,0.99,2005-07-06T03:33:23Z,2020-02-15T06:59:52Z +7687,284,2,4081,2.99,2005-07-07T05:10:08Z,2020-02-15T06:59:52Z +7688,284,1,4759,7.99,2005-07-08T14:39:22Z,2020-02-15T06:59:52Z +7689,284,2,4931,7.99,2005-07-08T22:16:18Z,2020-02-15T06:59:52Z +7690,284,1,5161,6.99,2005-07-09T08:57:56Z,2020-02-15T06:59:52Z +7691,284,1,6276,5.99,2005-07-11T16:15:50Z,2020-02-15T06:59:52Z +7692,284,2,6982,2.99,2005-07-27T00:53:41Z,2020-02-15T06:59:52Z +7693,284,1,7164,6.99,2005-07-27T07:36:34Z,2020-02-15T06:59:52Z +7694,284,1,7463,4.99,2005-07-27T18:48:32Z,2020-02-15T06:59:52Z +7695,284,2,7716,8.99,2005-07-28T04:33:15Z,2020-02-15T06:59:52Z +7696,284,1,8888,2.99,2005-07-30T00:39:36Z,2020-02-15T06:59:52Z +7697,284,1,9790,0.99,2005-07-31T10:34:08Z,2020-02-15T06:59:52Z +7698,284,1,10396,7.99,2005-08-01T07:08:46Z,2020-02-15T06:59:52Z +7699,284,1,10535,4.99,2005-08-01T12:21:13Z,2020-02-15T06:59:52Z +7700,284,2,12162,3.99,2005-08-18T00:44:30Z,2020-02-15T06:59:52Z +7701,284,1,14007,5.99,2005-08-20T20:22:47Z,2020-02-15T06:59:52Z +7702,284,1,14648,4.99,2005-08-21T19:18:01Z,2020-02-15T06:59:52Z +7703,284,2,14746,4.99,2005-08-21T22:54:02Z,2020-02-15T06:59:52Z +7704,284,1,14921,4.99,2005-08-22T05:12:24Z,2020-02-15T06:59:52Z +7705,284,2,15135,3.99,2005-08-22T13:19:19Z,2020-02-15T06:59:52Z +7706,284,1,12064,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7707,284,2,12959,0,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7708,285,2,1161,7.99,2005-06-14T23:07:08Z,2020-02-15T06:59:52Z +7709,285,2,1302,3.99,2005-06-15T09:48:37Z,2020-02-15T06:59:52Z +7710,285,1,2249,5.99,2005-06-18T05:03:08Z,2020-02-15T06:59:52Z +7711,285,2,4007,6.99,2005-07-07T00:26:05Z,2020-02-15T06:59:52Z +7712,285,2,5112,2.99,2005-07-09T07:04:04Z,2020-02-15T06:59:52Z +7713,285,1,5683,9.99,2005-07-10T08:52:13Z,2020-02-15T06:59:52Z +7714,285,1,6010,0.99,2005-07-11T01:52:28Z,2020-02-15T06:59:52Z +7715,285,2,6083,3.99,2005-07-11T05:12:49Z,2020-02-15T06:59:52Z +7716,285,1,6094,4.99,2005-07-11T05:54:42Z,2020-02-15T06:59:52Z +7717,285,2,6333,4.99,2005-07-11T19:20:16Z,2020-02-15T06:59:52Z +7718,285,2,6644,0.99,2005-07-12T10:39:39Z,2020-02-15T06:59:52Z +7719,285,1,7211,6.99,2005-07-27T09:20:00Z,2020-02-15T06:59:52Z +7720,285,1,7452,9.99,2005-07-27T18:26:39Z,2020-02-15T06:59:52Z +7721,285,1,7745,9.99,2005-07-28T05:46:28Z,2020-02-15T06:59:52Z +7722,285,1,8154,4.99,2005-07-28T20:56:18Z,2020-02-15T06:59:52Z +7723,285,2,8466,0.99,2005-07-29T08:24:47Z,2020-02-15T06:59:52Z +7724,285,1,10493,5.99,2005-08-01T10:43:12Z,2020-02-15T06:59:52Z +7725,285,2,10628,2.99,2005-08-01T15:33:19Z,2020-02-15T06:59:52Z +7726,285,1,10641,4.99,2005-08-01T15:44:57Z,2020-02-15T06:59:52Z +7727,285,1,12027,8.99,2005-08-17T20:01:12Z,2020-02-15T06:59:52Z +7728,285,1,12444,0.99,2005-08-18T10:53:12Z,2020-02-15T06:59:52Z +7729,285,1,12449,0.99,2005-08-18T11:03:04Z,2020-02-15T06:59:52Z +7730,285,2,12687,9.99,2005-08-18T19:57:39Z,2020-02-15T06:59:52Z +7731,285,2,13102,7.99,2005-08-19T11:02:03Z,2020-02-15T06:59:52Z +7732,285,2,15251,0.99,2005-08-22T18:03:57Z,2020-02-15T06:59:52Z +7733,285,1,15489,4.99,2005-08-23T02:06:41Z,2020-02-15T06:59:52Z +7734,286,2,81,6.99,2005-05-25T12:15:19Z,2020-02-15T06:59:52Z +7735,286,1,1690,8.99,2005-06-16T12:24:18Z,2020-02-15T06:59:52Z +7736,286,1,2195,4.99,2005-06-18T01:44:46Z,2020-02-15T06:59:52Z +7737,286,2,3592,4.99,2005-07-06T04:38:50Z,2020-02-15T06:59:52Z +7738,286,2,3692,3.99,2005-07-06T09:54:12Z,2020-02-15T06:59:52Z +7739,286,2,4242,6.99,2005-07-07T13:39:01Z,2020-02-15T06:59:52Z +7740,286,2,4461,9.99,2005-07-07T23:59:43Z,2020-02-15T06:59:52Z +7741,286,1,4707,4.99,2005-07-08T11:57:28Z,2020-02-15T06:59:52Z +7742,286,1,4894,2.99,2005-07-08T20:21:31Z,2020-02-15T06:59:52Z +7743,286,1,5796,4.99,2005-07-10T14:42:54Z,2020-02-15T06:59:52Z +7744,286,2,6611,2.99,2005-07-12T08:20:23Z,2020-02-15T06:59:52Z +7745,286,1,7254,2.99,2005-07-27T10:48:50Z,2020-02-15T06:59:52Z +7746,286,1,7299,2.99,2005-07-27T12:49:56Z,2020-02-15T06:59:52Z +7747,286,1,7368,0.99,2005-07-27T15:06:05Z,2020-02-15T06:59:52Z +7748,286,1,7422,2.99,2005-07-27T17:10:42Z,2020-02-15T06:59:52Z +7749,286,1,7719,6.99,2005-07-28T04:39:09Z,2020-02-15T06:59:52Z +7750,286,2,8399,0.99,2005-07-29T06:20:18Z,2020-02-15T06:59:52Z +7751,286,2,9280,6.99,2005-07-30T15:15:38Z,2020-02-15T06:59:52Z +7752,286,1,9809,3.99,2005-07-31T11:19:21Z,2020-02-15T06:59:52Z +7753,286,2,10105,5.99,2005-07-31T20:54:20Z,2020-02-15T06:59:52Z +7754,286,2,11670,0.99,2005-08-17T05:48:59Z,2020-02-15T06:59:52Z +7755,286,2,12595,0.99,2005-08-18T16:27:08Z,2020-02-15T06:59:52Z +7756,286,1,12656,0.99,2005-08-18T18:58:35Z,2020-02-15T06:59:52Z +7757,286,2,13635,5.99,2005-08-20T07:17:35Z,2020-02-15T06:59:52Z +7758,286,1,13975,4.99,2005-08-20T18:58:23Z,2020-02-15T06:59:52Z +7759,286,1,14905,0.99,2005-08-22T04:34:22Z,2020-02-15T06:59:52Z +7760,286,2,15629,4.99,2005-08-23T07:28:22Z,2020-02-15T06:59:52Z +7761,287,2,498,0.99,2005-05-28T01:01:21Z,2020-02-15T06:59:52Z +7762,287,1,655,2.99,2005-05-28T20:16:20Z,2020-02-15T06:59:52Z +7763,287,2,964,2.99,2005-05-30T18:53:21Z,2020-02-15T06:59:52Z +7764,287,1,1247,7.99,2005-06-15T05:16:40Z,2020-02-15T06:59:52Z +7765,287,2,1642,2.99,2005-06-16T08:54:15Z,2020-02-15T06:59:52Z +7766,287,2,2286,9.99,2005-06-18T07:02:32Z,2020-02-15T06:59:52Z +7767,287,2,2612,6.99,2005-06-19T07:19:41Z,2020-02-15T06:59:52Z +7768,287,2,4877,4.99,2005-07-08T19:31:02Z,2020-02-15T06:59:52Z +7769,287,2,5346,1.99,2005-07-09T17:29:01Z,2020-02-15T06:59:52Z +7770,287,1,5593,3.99,2005-07-10T04:33:13Z,2020-02-15T06:59:52Z +7771,287,2,5761,0.99,2005-07-10T12:45:36Z,2020-02-15T06:59:52Z +7772,287,2,6379,3.99,2005-07-11T21:51:25Z,2020-02-15T06:59:52Z +7773,287,1,6397,2.99,2005-07-11T22:34:02Z,2020-02-15T06:59:52Z +7774,287,2,7402,2.99,2005-07-27T16:19:40Z,2020-02-15T06:59:52Z +7775,287,2,7777,2.99,2005-07-28T07:04:42Z,2020-02-15T06:59:52Z +7776,287,2,8994,6.99,2005-07-30T04:51:32Z,2020-02-15T06:59:52Z +7777,287,2,9716,1.99,2005-07-31T08:23:53Z,2020-02-15T06:59:52Z +7778,287,1,10027,6.99,2005-07-31T18:33:51Z,2020-02-15T06:59:52Z +7779,287,2,10574,2.99,2005-08-01T13:36:51Z,2020-02-15T06:59:52Z +7780,287,2,10807,4.99,2005-08-01T22:26:10Z,2020-02-15T06:59:52Z +7781,287,2,11106,4.99,2005-08-02T08:17:38Z,2020-02-15T06:59:52Z +7782,287,1,11716,4.99,2005-08-17T07:40:55Z,2020-02-15T06:59:52Z +7783,287,2,12861,2.99,2005-08-19T02:30:24Z,2020-02-15T06:59:52Z +7784,287,2,14715,6.99,2005-08-21T21:28:18Z,2020-02-15T06:59:52Z +7785,287,2,15076,1.99,2005-08-22T11:05:34Z,2020-02-15T06:59:52Z +7786,287,1,15084,4.99,2005-08-22T11:17:59Z,2020-02-15T06:59:52Z +7787,287,2,15127,0.99,2005-08-22T12:56:29Z,2020-02-15T06:59:52Z +7788,287,1,15614,2.99,2005-08-23T07:05:15Z,2020-02-15T06:59:52Z +7789,287,2,14204,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7790,288,2,93,3.99,2005-05-25T15:54:16Z,2020-02-15T06:59:52Z +7791,288,2,427,6.99,2005-05-27T16:10:04Z,2020-02-15T06:59:52Z +7792,288,1,503,4.99,2005-05-28T01:35:25Z,2020-02-15T06:59:52Z +7793,288,2,565,5.99,2005-05-28T09:26:31Z,2020-02-15T06:59:52Z +7794,288,1,1466,5.99,2005-06-15T20:46:04Z,2020-02-15T06:59:52Z +7795,288,1,3958,3.99,2005-07-06T22:07:33Z,2020-02-15T06:59:52Z +7796,288,1,4692,2.99,2005-07-08T11:07:06Z,2020-02-15T06:59:52Z +7797,288,2,4758,0.99,2005-07-08T14:38:02Z,2020-02-15T06:59:52Z +7798,288,1,6399,2.99,2005-07-11T22:39:05Z,2020-02-15T06:59:52Z +7799,288,2,6518,3.99,2005-07-12T03:59:42Z,2020-02-15T06:59:52Z +7800,288,2,7744,0.99,2005-07-28T05:38:20Z,2020-02-15T06:59:52Z +7801,288,2,7855,2.99,2005-07-28T09:43:02Z,2020-02-15T06:59:52Z +7802,288,2,9429,2.99,2005-07-30T21:19:26Z,2020-02-15T06:59:52Z +7803,288,1,9732,0.99,2005-07-31T08:56:08Z,2020-02-15T06:59:52Z +7804,288,1,10927,9.99,2005-08-02T02:31:15Z,2020-02-15T06:59:52Z +7805,288,2,11952,2.99,2005-08-17T17:14:57Z,2020-02-15T06:59:52Z +7806,288,1,12134,1.99,2005-08-17T23:49:43Z,2020-02-15T06:59:52Z +7807,288,1,13219,2.99,2005-08-19T15:40:28Z,2020-02-15T06:59:52Z +7808,288,1,13227,0.99,2005-08-19T16:05:38Z,2020-02-15T06:59:52Z +7809,288,2,13363,2.99,2005-08-19T21:07:59Z,2020-02-15T06:59:52Z +7810,288,2,14113,0.99,2005-08-21T01:03:30Z,2020-02-15T06:59:52Z +7811,288,2,14756,0.99,2005-08-21T23:21:23Z,2020-02-15T06:59:52Z +7812,288,2,15058,2.99,2005-08-22T10:20:55Z,2020-02-15T06:59:52Z +7813,288,1,15119,2.99,2005-08-22T12:41:33Z,2020-02-15T06:59:52Z +7814,289,2,1880,4.99,2005-06-17T03:08:59Z,2020-02-15T06:59:52Z +7815,289,2,2316,0.99,2005-06-18T09:04:59Z,2020-02-15T06:59:52Z +7816,289,1,2387,6.99,2005-06-18T15:24:19Z,2020-02-15T06:59:52Z +7817,289,1,2784,10.99,2005-06-19T18:40:29Z,2020-02-15T06:59:52Z +7818,289,2,2948,6.99,2005-06-20T06:02:35Z,2020-02-15T06:59:52Z +7819,289,2,3123,6.99,2005-06-20T18:26:14Z,2020-02-15T06:59:52Z +7820,289,1,3588,2.99,2005-07-06T04:29:13Z,2020-02-15T06:59:52Z +7821,289,2,4622,0.99,2005-07-08T08:02:42Z,2020-02-15T06:59:52Z +7822,289,1,5089,4.99,2005-07-09T05:45:40Z,2020-02-15T06:59:52Z +7823,289,2,5342,8.99,2005-07-09T17:20:03Z,2020-02-15T06:59:52Z +7824,289,2,5584,4.99,2005-07-10T04:15:25Z,2020-02-15T06:59:52Z +7825,289,2,5724,0.99,2005-07-10T11:18:12Z,2020-02-15T06:59:52Z +7826,289,2,6007,3.99,2005-07-11T01:43:06Z,2020-02-15T06:59:52Z +7827,289,2,6536,7.99,2005-07-12T04:44:25Z,2020-02-15T06:59:52Z +7828,289,1,7151,4.99,2005-07-27T07:14:31Z,2020-02-15T06:59:52Z +7829,289,1,7162,4.99,2005-07-27T07:32:45Z,2020-02-15T06:59:52Z +7830,289,2,7325,0.99,2005-07-27T13:46:55Z,2020-02-15T06:59:52Z +7831,289,1,9498,2.99,2005-07-30T23:56:55Z,2020-02-15T06:59:52Z +7832,289,2,10297,7.99,2005-08-01T04:05:04Z,2020-02-15T06:59:52Z +7833,289,1,12158,1.99,2005-08-18T00:34:20Z,2020-02-15T06:59:52Z +7834,289,1,12170,0.99,2005-08-18T01:06:10Z,2020-02-15T06:59:52Z +7835,289,2,12558,7.99,2005-08-18T14:52:35Z,2020-02-15T06:59:52Z +7836,289,2,13165,0.99,2005-08-19T13:34:10Z,2020-02-15T06:59:52Z +7837,289,2,13211,0.99,2005-08-19T15:23:41Z,2020-02-15T06:59:52Z +7838,289,2,13256,9.99,2005-08-19T16:54:12Z,2020-02-15T06:59:52Z +7839,289,2,13336,5.99,2005-08-19T20:03:22Z,2020-02-15T06:59:52Z +7840,289,2,13891,6.99,2005-08-20T15:42:05Z,2020-02-15T06:59:52Z +7841,289,1,14087,0.99,2005-08-20T23:53:40Z,2020-02-15T06:59:52Z +7842,289,2,14729,4.99,2005-08-21T22:16:57Z,2020-02-15T06:59:52Z +7843,289,2,14917,4.99,2005-08-22T05:03:59Z,2020-02-15T06:59:52Z +7844,290,1,160,2.99,2005-05-26T01:46:20Z,2020-02-15T06:59:52Z +7845,290,1,1220,6.99,2005-06-15T03:26:15Z,2020-02-15T06:59:52Z +7846,290,2,1336,8.99,2005-06-15T12:01:34Z,2020-02-15T06:59:52Z +7847,290,2,1496,4.99,2005-06-15T21:55:58Z,2020-02-15T06:59:52Z +7848,290,2,1532,0.99,2005-06-16T00:41:31Z,2020-02-15T06:59:52Z +7849,290,1,3013,3.99,2005-06-20T10:45:09Z,2020-02-15T06:59:52Z +7850,290,2,4039,4.99,2005-07-07T02:57:59Z,2020-02-15T06:59:52Z +7851,290,1,4073,0.99,2005-07-07T04:49:13Z,2020-02-15T06:59:52Z +7852,290,2,4416,0.99,2005-07-07T22:04:36Z,2020-02-15T06:59:52Z +7853,290,1,5105,2.99,2005-07-09T06:38:59Z,2020-02-15T06:59:52Z +7854,290,2,5214,5.99,2005-07-09T11:43:08Z,2020-02-15T06:59:52Z +7855,290,2,5827,2.99,2005-07-10T16:22:20Z,2020-02-15T06:59:52Z +7856,290,2,6816,4.99,2005-07-12T18:18:50Z,2020-02-15T06:59:52Z +7857,290,1,6952,4.99,2005-07-26T23:51:27Z,2020-02-15T06:59:52Z +7858,290,2,7265,2.99,2005-07-27T11:19:01Z,2020-02-15T06:59:52Z +7859,290,1,7650,1.99,2005-07-28T01:47:20Z,2020-02-15T06:59:52Z +7860,290,1,8639,4.99,2005-07-29T14:30:31Z,2020-02-15T06:59:52Z +7861,290,1,9000,7.99,2005-07-30T04:58:55Z,2020-02-15T06:59:52Z +7862,290,1,9413,0.99,2005-07-30T20:44:39Z,2020-02-15T06:59:52Z +7863,290,2,10096,3.99,2005-07-31T20:38:58Z,2020-02-15T06:59:52Z +7864,290,1,10194,1.99,2005-08-01T00:33:52Z,2020-02-15T06:59:52Z +7865,290,1,10901,2.99,2005-08-02T01:35:44Z,2020-02-15T06:59:52Z +7866,290,1,11596,6.99,2005-08-17T02:53:55Z,2020-02-15T06:59:52Z +7867,290,2,12193,3.99,2005-08-18T02:03:59Z,2020-02-15T06:59:52Z +7868,290,2,12778,4.99,2005-08-18T23:40:23Z,2020-02-15T06:59:52Z +7869,290,2,13190,1.99,2005-08-19T14:27:59Z,2020-02-15T06:59:52Z +7870,290,1,13367,2.99,2005-08-19T21:19:27Z,2020-02-15T06:59:52Z +7871,290,2,13687,2.99,2005-08-20T08:57:51Z,2020-02-15T06:59:52Z +7872,291,1,54,4.99,2005-05-25T07:23:25Z,2020-02-15T06:59:52Z +7873,291,2,747,4.99,2005-05-29T09:26:34Z,2020-02-15T06:59:52Z +7874,291,1,1012,2.99,2005-05-31T02:18:05Z,2020-02-15T06:59:52Z +7875,291,1,1191,2.99,2005-06-15T01:10:35Z,2020-02-15T06:59:52Z +7876,291,1,2300,2.99,2005-06-18T08:22:34Z,2020-02-15T06:59:52Z +7877,291,2,3042,2.99,2005-06-20T12:38:27Z,2020-02-15T06:59:52Z +7878,291,2,3512,4.99,2005-07-06T00:43:06Z,2020-02-15T06:59:52Z +7879,291,2,4862,3.99,2005-07-08T19:02:46Z,2020-02-15T06:59:52Z +7880,291,2,5754,2.99,2005-07-10T12:32:43Z,2020-02-15T06:59:52Z +7881,291,2,6516,4.99,2005-07-12T03:51:54Z,2020-02-15T06:59:52Z +7882,291,1,6796,2.99,2005-07-12T16:44:16Z,2020-02-15T06:59:52Z +7883,291,1,7561,5.99,2005-07-27T22:21:05Z,2020-02-15T06:59:52Z +7884,291,2,7564,0.99,2005-07-27T22:31:17Z,2020-02-15T06:59:52Z +7885,291,1,8690,0.99,2005-07-29T16:39:28Z,2020-02-15T06:59:52Z +7886,291,2,8697,4.99,2005-07-29T16:46:07Z,2020-02-15T06:59:52Z +7887,291,1,9165,5.99,2005-07-30T11:24:28Z,2020-02-15T06:59:52Z +7888,291,2,9201,5.99,2005-07-30T12:42:21Z,2020-02-15T06:59:52Z +7889,291,2,9919,7.99,2005-07-31T14:55:46Z,2020-02-15T06:59:52Z +7890,291,1,10463,4.99,2005-08-01T09:39:43Z,2020-02-15T06:59:52Z +7891,291,2,11145,0.99,2005-08-02T09:43:24Z,2020-02-15T06:59:52Z +7892,291,1,13665,5.99,2005-08-20T08:19:20Z,2020-02-15T06:59:52Z +7893,291,2,14241,4.99,2005-08-21T05:24:55Z,2020-02-15T06:59:52Z +7894,291,2,15663,3.99,2005-08-23T08:54:26Z,2020-02-15T06:59:52Z +7895,292,1,324,0.99,2005-05-27T01:00:04Z,2020-02-15T06:59:52Z +7896,292,1,1901,3.99,2005-06-17T04:35:19Z,2020-02-15T06:59:52Z +7897,292,2,2258,3.99,2005-06-18T05:30:36Z,2020-02-15T06:59:52Z +7898,292,1,2838,3.99,2005-06-19T22:06:06Z,2020-02-15T06:59:52Z +7899,292,2,3328,2.99,2005-06-21T09:08:44Z,2020-02-15T06:59:52Z +7900,292,2,3557,0.99,2005-07-06T02:48:39Z,2020-02-15T06:59:52Z +7901,292,1,4200,4.99,2005-07-07T11:15:11Z,2020-02-15T06:59:52Z +7902,292,2,5095,4.99,2005-07-09T06:08:22Z,2020-02-15T06:59:52Z +7903,292,2,5257,0.99,2005-07-09T13:56:43Z,2020-02-15T06:59:52Z +7904,292,1,5940,4.99,2005-07-10T22:31:01Z,2020-02-15T06:59:52Z +7905,292,1,6270,8.99,2005-07-11T15:59:10Z,2020-02-15T06:59:52Z +7906,292,1,6900,6.99,2005-07-12T21:45:25Z,2020-02-15T06:59:52Z +7907,292,2,7199,5.99,2005-07-27T08:53:23Z,2020-02-15T06:59:52Z +7908,292,1,7216,2.99,2005-07-27T09:27:45Z,2020-02-15T06:59:52Z +7909,292,1,7545,2.99,2005-07-27T21:48:03Z,2020-02-15T06:59:52Z +7910,292,1,7766,4.99,2005-07-28T06:41:57Z,2020-02-15T06:59:52Z +7911,292,1,8047,2.99,2005-07-28T16:49:43Z,2020-02-15T06:59:52Z +7912,292,2,8842,4.99,2005-07-29T23:03:40Z,2020-02-15T06:59:52Z +7913,292,1,8990,8.99,2005-07-30T04:41:42Z,2020-02-15T06:59:52Z +7914,292,1,9792,5.99,2005-07-31T10:43:41Z,2020-02-15T06:59:52Z +7915,292,2,9819,1.99,2005-07-31T11:39:13Z,2020-02-15T06:59:52Z +7916,292,1,11193,4.99,2005-08-02T11:31:33Z,2020-02-15T06:59:52Z +7917,292,1,12739,10.99,2005-08-18T22:15:18Z,2020-02-15T06:59:52Z +7918,292,1,13715,2.99,2005-08-20T09:43:06Z,2020-02-15T06:59:52Z +7919,292,1,14499,0.99,2005-08-21T14:11:19Z,2020-02-15T06:59:52Z +7920,292,2,14845,4.99,2005-08-22T02:12:44Z,2020-02-15T06:59:52Z +7921,292,1,15117,2.99,2005-08-22T12:38:20Z,2020-02-15T06:59:52Z +7922,293,2,445,0.99,2005-05-27T18:42:57Z,2020-02-15T06:59:52Z +7923,293,1,924,4.99,2005-05-30T12:10:59Z,2020-02-15T06:59:52Z +7924,293,2,1034,8.99,2005-05-31T04:53:40Z,2020-02-15T06:59:52Z +7925,293,1,1589,9.99,2005-06-16T04:58:03Z,2020-02-15T06:59:52Z +7926,293,1,1829,5.99,2005-06-16T22:14:21Z,2020-02-15T06:59:52Z +7927,293,2,1860,4.99,2005-06-17T01:17:12Z,2020-02-15T06:59:52Z +7928,293,1,2386,4.99,2005-06-18T15:22:51Z,2020-02-15T06:59:52Z +7929,293,2,3025,2.99,2005-06-20T11:46:48Z,2020-02-15T06:59:52Z +7930,293,1,3290,1.99,2005-06-21T06:45:34Z,2020-02-15T06:59:52Z +7931,293,2,3452,4.99,2005-06-21T21:11:27Z,2020-02-15T06:59:52Z +7932,293,1,3906,3.99,2005-07-06T19:35:55Z,2020-02-15T06:59:52Z +7933,293,2,4343,0.99,2005-07-07T18:48:54Z,2020-02-15T06:59:52Z +7934,293,2,4542,4.99,2005-07-08T04:06:30Z,2020-02-15T06:59:52Z +7935,293,2,4944,6.99,2005-07-08T22:44:28Z,2020-02-15T06:59:52Z +7936,293,2,5765,3.99,2005-07-10T13:03:02Z,2020-02-15T06:59:52Z +7937,293,1,6432,9.99,2005-07-12T00:09:41Z,2020-02-15T06:59:52Z +7938,293,2,7607,4.99,2005-07-28T00:05:53Z,2020-02-15T06:59:52Z +7939,293,1,8589,4.99,2005-07-29T12:28:17Z,2020-02-15T06:59:52Z +7940,293,1,8745,2.99,2005-07-29T19:03:05Z,2020-02-15T06:59:52Z +7941,293,2,9123,2.99,2005-07-30T09:39:15Z,2020-02-15T06:59:52Z +7942,293,2,11131,1.99,2005-08-02T09:10:04Z,2020-02-15T06:59:52Z +7943,293,1,11576,2.99,2005-08-17T01:53:20Z,2020-02-15T06:59:52Z +7944,293,2,13013,6.99,2005-08-19T07:55:51Z,2020-02-15T06:59:52Z +7945,293,1,13029,2.99,2005-08-19T08:28:04Z,2020-02-15T06:59:52Z +7946,293,2,13504,5.99,2005-08-20T02:01:48Z,2020-02-15T06:59:52Z +7947,293,1,13817,4.99,2005-08-20T13:15:30Z,2020-02-15T06:59:52Z +7948,293,1,14248,6.99,2005-08-21T05:35:57Z,2020-02-15T06:59:52Z +7949,293,1,15258,4.99,2005-08-22T18:22:44Z,2020-02-15T06:59:52Z +7950,293,1,15402,8.99,2005-08-22T23:17:41Z,2020-02-15T06:59:52Z +7951,293,1,15508,7.99,2005-08-23T02:49:04Z,2020-02-15T06:59:52Z +7952,293,2,15675,5.99,2005-08-23T09:18:52Z,2020-02-15T06:59:52Z +7953,294,1,595,1.99,2005-05-28T13:59:54Z,2020-02-15T06:59:52Z +7954,294,1,2900,2.99,2005-06-20T02:40:04Z,2020-02-15T06:59:52Z +7955,294,2,3330,2.99,2005-06-21T09:22:37Z,2020-02-15T06:59:52Z +7956,294,1,3681,4.99,2005-07-06T09:19:30Z,2020-02-15T06:59:52Z +7957,294,2,4019,4.99,2005-07-07T01:27:44Z,2020-02-15T06:59:52Z +7958,294,1,4786,7.99,2005-07-08T16:13:05Z,2020-02-15T06:59:52Z +7959,294,2,6185,5.99,2005-07-11T11:25:09Z,2020-02-15T06:59:52Z +7960,294,2,7415,6.99,2005-07-27T16:50:59Z,2020-02-15T06:59:52Z +7961,294,1,7765,4.99,2005-07-28T06:40:33Z,2020-02-15T06:59:52Z +7962,294,2,8843,4.99,2005-07-29T23:04:25Z,2020-02-15T06:59:52Z +7963,294,2,9194,2.99,2005-07-30T12:28:45Z,2020-02-15T06:59:52Z +7964,294,1,9522,2.99,2005-07-31T00:55:11Z,2020-02-15T06:59:52Z +7965,294,2,9607,0.99,2005-07-31T03:51:06Z,2020-02-15T06:59:52Z +7966,294,2,10186,0.99,2005-08-01T00:12:36Z,2020-02-15T06:59:52Z +7967,294,2,10220,4.99,2005-08-01T01:13:22Z,2020-02-15T06:59:52Z +7968,294,1,10551,6.99,2005-08-01T12:48:55Z,2020-02-15T06:59:52Z +7969,294,2,10600,2.99,2005-08-01T14:25:21Z,2020-02-15T06:59:52Z +7970,294,2,10642,4.99,2005-08-01T15:45:11Z,2020-02-15T06:59:52Z +7971,294,2,11071,2.99,2005-08-02T07:10:53Z,2020-02-15T06:59:52Z +7972,294,1,11390,2.99,2005-08-02T18:39:16Z,2020-02-15T06:59:52Z +7973,294,2,11875,4.99,2005-08-17T14:16:48Z,2020-02-15T06:59:52Z +7974,294,2,11981,2.99,2005-08-17T18:10:40Z,2020-02-15T06:59:52Z +7975,294,1,12278,5.99,2005-08-18T04:46:45Z,2020-02-15T06:59:52Z +7976,294,1,14474,2.99,2005-08-21T13:22:48Z,2020-02-15T06:59:52Z +7977,294,2,14630,7.99,2005-08-21T18:43:44Z,2020-02-15T06:59:52Z +7978,294,1,15839,5.99,2005-08-23T15:34:46Z,2020-02-15T06:59:52Z +7979,295,2,371,3.99,2005-05-27T08:08:18Z,2020-02-15T06:59:52Z +7980,295,1,1184,5.99,2005-06-15T00:49:36Z,2020-02-15T06:59:52Z +7981,295,1,1328,2.99,2005-06-15T11:23:27Z,2020-02-15T06:59:52Z +7982,295,2,1935,2.99,2005-06-17T07:14:15Z,2020-02-15T06:59:52Z +7983,295,1,2054,2.99,2005-06-17T15:26:37Z,2020-02-15T06:59:52Z +7984,295,1,2431,1.99,2005-06-18T17:53:03Z,2020-02-15T06:59:52Z +7985,295,1,2638,1.99,2005-06-19T09:23:30Z,2020-02-15T06:59:52Z +7986,295,1,2999,2.99,2005-06-20T09:30:34Z,2020-02-15T06:59:52Z +7987,295,1,3198,1.99,2005-06-21T00:08:54Z,2020-02-15T06:59:52Z +7988,295,2,3394,8.99,2005-06-21T15:17:39Z,2020-02-15T06:59:52Z +7989,295,2,3496,1.99,2005-07-05T23:59:15Z,2020-02-15T06:59:52Z +7990,295,1,3876,9.99,2005-07-06T18:21:13Z,2020-02-15T06:59:52Z +7991,295,1,4164,1.99,2005-07-07T09:20:11Z,2020-02-15T06:59:52Z +7992,295,1,4432,1.99,2005-07-07T22:40:02Z,2020-02-15T06:59:52Z +7993,295,1,5019,2.99,2005-07-09T02:04:32Z,2020-02-15T06:59:52Z +7994,295,2,5053,4.99,2005-07-09T03:59:46Z,2020-02-15T06:59:52Z +7995,295,2,5283,2.99,2005-07-09T15:07:17Z,2020-02-15T06:59:52Z +7996,295,2,5994,4.99,2005-07-11T01:14:10Z,2020-02-15T06:59:52Z +7997,295,1,6252,2.99,2005-07-11T15:06:29Z,2020-02-15T06:59:52Z +7998,295,2,6331,3.99,2005-07-11T19:17:21Z,2020-02-15T06:59:52Z +7999,295,2,8087,0.99,2005-07-28T18:21:16Z,2020-02-15T06:59:52Z +8000,295,1,8108,7.99,2005-07-28T19:07:38Z,2020-02-15T06:59:52Z +8001,295,1,8840,9.99,2005-07-29T22:55:38Z,2020-02-15T06:59:52Z +8002,295,2,8932,2.99,2005-07-30T02:31:26Z,2020-02-15T06:59:52Z +8003,295,1,9425,7.99,2005-07-30T21:11:21Z,2020-02-15T06:59:52Z +8004,295,2,9692,8.99,2005-07-31T07:11:04Z,2020-02-15T06:59:52Z +8005,295,2,9793,4.99,2005-07-31T10:45:11Z,2020-02-15T06:59:52Z +8006,295,2,10160,4.99,2005-07-31T23:07:40Z,2020-02-15T06:59:52Z +8007,295,2,10222,0.99,2005-08-01T01:17:42Z,2020-02-15T06:59:52Z +8008,295,1,10349,3.99,2005-08-01T05:27:13Z,2020-02-15T06:59:52Z +8009,295,2,11083,4.99,2005-08-02T07:32:01Z,2020-02-15T06:59:52Z +8010,295,2,11913,5.99,2005-08-17T15:53:17Z,2020-02-15T06:59:52Z +8011,295,2,12041,4.99,2005-08-17T20:34:33Z,2020-02-15T06:59:52Z +8012,295,1,12383,0.99,2005-08-18T08:36:03Z,2020-02-15T06:59:52Z +8013,295,1,14264,0.99,2005-08-21T06:18:22Z,2020-02-15T06:59:52Z +8014,295,1,14387,6.99,2005-08-21T10:10:01Z,2020-02-15T06:59:52Z +8015,295,1,14514,6.99,2005-08-21T14:51:52Z,2020-02-15T06:59:52Z +8016,295,2,15735,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8017,296,2,162,4.99,2005-05-26T02:02:05Z,2020-02-15T06:59:52Z +8018,296,1,511,5.99,2005-05-28T03:04:04Z,2020-02-15T06:59:52Z +8019,296,1,869,4.99,2005-05-30T04:22:06Z,2020-02-15T06:59:52Z +8020,296,2,956,2.99,2005-05-30T17:30:28Z,2020-02-15T06:59:52Z +8021,296,2,1659,4.99,2005-06-16T10:11:46Z,2020-02-15T06:59:52Z +8022,296,1,3034,0.99,2005-06-20T12:15:50Z,2020-02-15T06:59:52Z +8023,296,2,3119,0.99,2005-06-20T18:11:44Z,2020-02-15T06:59:52Z +8024,296,2,3486,7.99,2005-07-05T23:29:55Z,2020-02-15T06:59:52Z +8025,296,1,3810,2.99,2005-07-06T15:18:44Z,2020-02-15T06:59:52Z +8026,296,1,4480,4.99,2005-07-08T00:56:30Z,2020-02-15T06:59:52Z +8027,296,2,5090,0.99,2005-07-09T05:48:22Z,2020-02-15T06:59:52Z +8028,296,1,5589,4.99,2005-07-10T04:22:58Z,2020-02-15T06:59:52Z +8029,296,2,6016,4.99,2005-07-11T02:04:45Z,2020-02-15T06:59:52Z +8030,296,1,6398,5.99,2005-07-11T22:34:49Z,2020-02-15T06:59:52Z +8031,296,1,6967,6.99,2005-07-27T00:16:31Z,2020-02-15T06:59:52Z +8032,296,2,7568,4.99,2005-07-27T22:38:53Z,2020-02-15T06:59:52Z +8033,296,2,8171,0.99,2005-07-28T21:32:57Z,2020-02-15T06:59:52Z +8034,296,1,9249,5.99,2005-07-30T14:15:02Z,2020-02-15T06:59:52Z +8035,296,1,9304,2.99,2005-07-30T16:41:34Z,2020-02-15T06:59:52Z +8036,296,2,11571,4.99,2005-08-17T01:37:51Z,2020-02-15T06:59:52Z +8037,296,2,11825,4.99,2005-08-17T12:43:30Z,2020-02-15T06:59:52Z +8038,296,2,12689,3.99,2005-08-18T20:06:34Z,2020-02-15T06:59:52Z +8039,296,2,13471,2.99,2005-08-20T01:02:26Z,2020-02-15T06:59:52Z +8040,296,1,13702,2.99,2005-08-20T09:27:20Z,2020-02-15T06:59:52Z +8041,296,1,13819,4.99,2005-08-20T13:23:15Z,2020-02-15T06:59:52Z +8042,296,1,13991,1.99,2005-08-20T19:29:44Z,2020-02-15T06:59:52Z +8043,296,2,14571,7.99,2005-08-21T16:40:26Z,2020-02-15T06:59:52Z +8044,296,2,15023,2.99,2005-08-22T08:56:48Z,2020-02-15T06:59:52Z +8045,296,2,15866,7.99,2005-08-23T16:19:02Z,2020-02-15T06:59:52Z +8046,296,1,12009,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8047,297,2,143,0.99,2005-05-25T23:45:52Z,2020-02-15T06:59:52Z +8048,297,1,954,3.99,2005-05-30T16:57:29Z,2020-02-15T06:59:52Z +8049,297,1,1409,3.99,2005-06-15T16:58:12Z,2020-02-15T06:59:52Z +8050,297,1,2067,2.99,2005-06-17T16:11:08Z,2020-02-15T06:59:52Z +8051,297,1,2202,8.99,2005-06-18T02:09:24Z,2020-02-15T06:59:52Z +8052,297,1,2260,2.99,2005-06-18T05:38:36Z,2020-02-15T06:59:52Z +8053,297,2,2339,4.99,2005-06-18T11:29:22Z,2020-02-15T06:59:52Z +8054,297,1,3582,0.99,2005-07-06T04:10:35Z,2020-02-15T06:59:52Z +8055,297,2,4621,2.99,2005-07-08T08:02:18Z,2020-02-15T06:59:52Z +8056,297,1,4929,5.99,2005-07-08T22:06:18Z,2020-02-15T06:59:52Z +8057,297,1,5743,8.99,2005-07-10T11:57:38Z,2020-02-15T06:59:52Z +8058,297,2,6036,2.99,2005-07-11T03:02:28Z,2020-02-15T06:59:52Z +8059,297,1,6064,6.99,2005-07-11T04:23:18Z,2020-02-15T06:59:52Z +8060,297,1,6156,4.99,2005-07-11T09:45:48Z,2020-02-15T06:59:52Z +8061,297,1,6984,2.99,2005-07-27T00:56:30Z,2020-02-15T06:59:52Z +8062,297,2,7867,0.99,2005-07-28T10:08:54Z,2020-02-15T06:59:52Z +8063,297,1,7933,0.99,2005-07-28T12:27:27Z,2020-02-15T06:59:52Z +8064,297,2,9014,2.99,2005-07-30T05:19:27Z,2020-02-15T06:59:52Z +8065,297,2,9674,5.99,2005-07-31T06:36:53Z,2020-02-15T06:59:52Z +8066,297,1,10153,0.99,2005-07-31T22:30:10Z,2020-02-15T06:59:52Z +8067,297,2,10264,4.99,2005-08-01T03:03:12Z,2020-02-15T06:59:52Z +8068,297,2,11269,0.99,2005-08-02T14:11:41Z,2020-02-15T06:59:52Z +8069,297,2,11413,0.99,2005-08-02T19:35:19Z,2020-02-15T06:59:52Z +8070,297,2,11585,4.99,2005-08-17T02:14:36Z,2020-02-15T06:59:52Z +8071,297,1,11780,2.99,2005-08-17T10:34:24Z,2020-02-15T06:59:52Z +8072,297,1,11784,0.99,2005-08-17T10:48:05Z,2020-02-15T06:59:52Z +8073,297,1,12472,10.99,2005-08-18T11:58:48Z,2020-02-15T06:59:52Z +8074,297,1,13330,2.99,2005-08-19T19:59:21Z,2020-02-15T06:59:52Z +8075,297,2,13721,4.99,2005-08-20T10:02:59Z,2020-02-15T06:59:52Z +8076,297,1,13888,1.99,2005-08-20T15:39:42Z,2020-02-15T06:59:52Z +8077,297,1,14403,5.99,2005-08-21T10:40:34Z,2020-02-15T06:59:52Z +8078,297,2,15582,2.99,2005-08-23T05:45:44Z,2020-02-15T06:59:52Z +8079,297,1,15711,4.99,2005-08-23T10:43:00Z,2020-02-15T06:59:52Z +8080,298,1,383,3.99,2005-05-27T10:12:20Z,2020-02-15T06:59:52Z +8081,298,2,1454,4.99,2005-06-15T19:49:41Z,2020-02-15T06:59:52Z +8082,298,2,2385,3.99,2005-06-18T15:22:40Z,2020-02-15T06:59:52Z +8083,298,2,3095,4.99,2005-06-20T16:16:53Z,2020-02-15T06:59:52Z +8084,298,2,3400,4.99,2005-06-21T15:50:30Z,2020-02-15T06:59:52Z +8085,298,2,3479,0.99,2005-07-05T23:08:53Z,2020-02-15T06:59:52Z +8086,298,1,3728,2.99,2005-07-06T11:29:00Z,2020-02-15T06:59:52Z +8087,298,2,4291,2.99,2005-07-07T15:47:47Z,2020-02-15T06:59:52Z +8088,298,1,4936,3.99,2005-07-08T22:24:50Z,2020-02-15T06:59:52Z +8089,298,2,5166,2.99,2005-07-09T09:15:48Z,2020-02-15T06:59:52Z +8090,298,1,5247,2.99,2005-07-09T13:26:28Z,2020-02-15T06:59:52Z +8091,298,2,6802,0.99,2005-07-12T17:14:17Z,2020-02-15T06:59:52Z +8092,298,2,7802,0.99,2005-07-28T07:51:57Z,2020-02-15T06:59:52Z +8093,298,1,7869,7.99,2005-07-28T10:13:15Z,2020-02-15T06:59:52Z +8094,298,2,8737,5.99,2005-07-29T18:32:13Z,2020-02-15T06:59:52Z +8095,298,2,10248,6.99,2005-08-01T02:35:28Z,2020-02-15T06:59:52Z +8096,298,1,11070,0.99,2005-08-02T07:10:39Z,2020-02-15T06:59:52Z +8097,298,2,11288,6.99,2005-08-02T14:54:08Z,2020-02-15T06:59:52Z +8098,298,2,12076,0.99,2005-08-17T21:58:19Z,2020-02-15T06:59:52Z +8099,298,1,12765,8.99,2005-08-18T23:21:50Z,2020-02-15T06:59:52Z +8100,298,1,13172,0.99,2005-08-19T13:49:07Z,2020-02-15T06:59:52Z +8101,298,1,13244,4.99,2005-08-19T16:43:04Z,2020-02-15T06:59:52Z +8102,298,2,14473,0.99,2005-08-21T13:19:03Z,2020-02-15T06:59:52Z +8103,298,1,15245,3.99,2005-08-22T17:49:35Z,2020-02-15T06:59:52Z +8104,298,2,15262,4.99,2005-08-22T18:25:21Z,2020-02-15T06:59:52Z +8105,298,1,15643,4.99,2005-08-23T08:13:26Z,2020-02-15T06:59:52Z +8106,299,1,332,5.99,2005-05-27T02:27:10Z,2020-02-15T06:59:52Z +8107,299,2,606,8.99,2005-05-28T14:48:39Z,2020-02-15T06:59:52Z +8108,299,1,1650,8.99,2005-06-16T09:23:20Z,2020-02-15T06:59:52Z +8109,299,2,2664,4.99,2005-06-19T11:11:23Z,2020-02-15T06:59:52Z +8110,299,1,2774,2.99,2005-06-19T18:05:11Z,2020-02-15T06:59:52Z +8111,299,2,2791,4.99,2005-06-19T18:51:27Z,2020-02-15T06:59:52Z +8112,299,1,3074,0.99,2005-06-20T14:41:41Z,2020-02-15T06:59:52Z +8113,299,2,3223,2.99,2005-06-21T02:06:45Z,2020-02-15T06:59:52Z +8114,299,1,3288,5.99,2005-06-21T06:36:59Z,2020-02-15T06:59:52Z +8115,299,2,3497,0.99,2005-07-06T00:00:03Z,2020-02-15T06:59:52Z +8116,299,2,4153,5.99,2005-07-07T08:53:08Z,2020-02-15T06:59:52Z +8117,299,1,4350,2.99,2005-07-07T19:02:41Z,2020-02-15T06:59:52Z +8118,299,2,5033,1.99,2005-07-09T02:42:01Z,2020-02-15T06:59:52Z +8119,299,1,5642,2.99,2005-07-10T06:46:08Z,2020-02-15T06:59:52Z +8120,299,2,6732,0.99,2005-07-12T13:58:51Z,2020-02-15T06:59:52Z +8121,299,1,6853,7.99,2005-07-12T19:38:11Z,2020-02-15T06:59:52Z +8122,299,1,7264,4.99,2005-07-27T11:18:58Z,2020-02-15T06:59:52Z +8123,299,1,7746,2.99,2005-07-28T05:48:56Z,2020-02-15T06:59:52Z +8124,299,2,7862,9.99,2005-07-28T10:02:25Z,2020-02-15T06:59:52Z +8125,299,1,9520,2.99,2005-07-31T00:50:54Z,2020-02-15T06:59:52Z +8126,299,1,10201,0.99,2005-08-01T00:42:18Z,2020-02-15T06:59:52Z +8127,299,2,10440,2.99,2005-08-01T08:54:32Z,2020-02-15T06:59:52Z +8128,299,1,11629,6.99,2005-08-17T04:27:24Z,2020-02-15T06:59:52Z +8129,299,1,11746,5.99,2005-08-17T09:03:24Z,2020-02-15T06:59:52Z +8130,299,1,11998,0.99,2005-08-17T18:46:21Z,2020-02-15T06:59:52Z +8131,299,1,13069,4.99,2005-08-19T09:55:20Z,2020-02-15T06:59:52Z +8132,299,2,14208,0.99,2005-08-21T04:09:18Z,2020-02-15T06:59:52Z +8133,299,1,14548,3.99,2005-08-21T15:53:52Z,2020-02-15T06:59:52Z +8134,299,2,14889,4.99,2005-08-22T04:10:10Z,2020-02-15T06:59:52Z +8135,299,2,14898,6.99,2005-08-22T04:26:34Z,2020-02-15T06:59:52Z +8136,300,2,457,0.99,2005-05-27T19:52:29Z,2020-02-15T06:59:52Z +8137,300,1,780,3.99,2005-05-29T14:18:32Z,2020-02-15T06:59:52Z +8138,300,1,1111,4.99,2005-05-31T15:24:19Z,2020-02-15T06:59:52Z +8139,300,2,1381,0.99,2005-06-15T15:17:21Z,2020-02-15T06:59:52Z +8140,300,1,3177,2.99,2005-06-20T22:32:44Z,2020-02-15T06:59:52Z +8141,300,1,3775,0.99,2005-07-06T13:27:33Z,2020-02-15T06:59:52Z +8142,300,1,4030,0.99,2005-07-07T02:25:42Z,2020-02-15T06:59:52Z +8143,300,2,5562,2.99,2005-07-10T03:17:42Z,2020-02-15T06:59:52Z +8144,300,1,5705,10.99,2005-07-10T10:09:17Z,2020-02-15T06:59:52Z +8145,300,2,6111,4.99,2005-07-11T07:26:57Z,2020-02-15T06:59:52Z +8146,300,1,6822,5.99,2005-07-12T18:23:39Z,2020-02-15T06:59:52Z +8147,300,1,6998,4.99,2005-07-27T01:16:29Z,2020-02-15T06:59:52Z +8148,300,1,7815,4.99,2005-07-28T08:14:11Z,2020-02-15T06:59:52Z +8149,300,1,8117,6.99,2005-07-28T19:20:16Z,2020-02-15T06:59:52Z +8150,300,1,8210,6.99,2005-07-28T23:31:05Z,2020-02-15T06:59:52Z +8151,300,1,8283,3.99,2005-07-29T01:52:22Z,2020-02-15T06:59:52Z +8152,300,1,9078,0.99,2005-07-30T08:01:00Z,2020-02-15T06:59:52Z +8153,300,2,9127,2.99,2005-07-30T09:46:36Z,2020-02-15T06:59:52Z +8154,300,2,9791,0.99,2005-07-31T10:35:22Z,2020-02-15T06:59:52Z +8155,300,1,10977,4.99,2005-08-02T04:12:17Z,2020-02-15T06:59:52Z +8156,300,2,12484,2.99,2005-08-18T12:39:37Z,2020-02-15T06:59:52Z +8157,300,2,12644,5.99,2005-08-18T18:22:27Z,2020-02-15T06:59:52Z +8158,300,2,13257,3.99,2005-08-19T17:01:20Z,2020-02-15T06:59:52Z +8159,300,1,13296,0.99,2005-08-19T18:43:53Z,2020-02-15T06:59:52Z +8160,300,2,13499,6.99,2005-08-20T01:52:30Z,2020-02-15T06:59:52Z +8161,300,1,13717,5.99,2005-08-20T09:50:52Z,2020-02-15T06:59:52Z +8162,300,1,14674,7.99,2005-08-21T20:01:34Z,2020-02-15T06:59:52Z +8163,300,1,14709,9.99,2005-08-21T21:07:59Z,2020-02-15T06:59:52Z +8164,300,2,15051,2.99,2005-08-22T10:08:50Z,2020-02-15T06:59:52Z +8165,300,2,15811,5.99,2005-08-23T14:43:46Z,2020-02-15T06:59:52Z +8166,300,1,15695,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8167,301,2,27,4.99,2005-05-25T03:41:50Z,2020-02-15T06:59:52Z +8168,301,2,227,5.99,2005-05-26T10:51:46Z,2020-02-15T06:59:52Z +8169,301,1,955,0.99,2005-05-30T16:59:03Z,2020-02-15T06:59:52Z +8170,301,1,1853,0.99,2005-06-17T00:39:54Z,2020-02-15T06:59:52Z +8171,301,1,2611,4.99,2005-06-19T07:18:17Z,2020-02-15T06:59:52Z +8172,301,2,2925,2.99,2005-06-20T04:23:49Z,2020-02-15T06:59:52Z +8173,301,2,4316,4.99,2005-07-07T17:44:22Z,2020-02-15T06:59:52Z +8174,301,2,4834,3.99,2005-07-08T18:07:45Z,2020-02-15T06:59:52Z +8175,301,1,5119,6.99,2005-07-09T07:14:18Z,2020-02-15T06:59:52Z +8176,301,2,5511,4.99,2005-07-10T01:00:00Z,2020-02-15T06:59:52Z +8177,301,2,5730,2.99,2005-07-10T11:28:32Z,2020-02-15T06:59:52Z +8178,301,2,5807,2.99,2005-07-10T15:16:30Z,2020-02-15T06:59:52Z +8179,301,2,6833,6.99,2005-07-12T18:53:34Z,2020-02-15T06:59:52Z +8180,301,2,7318,4.99,2005-07-27T13:25:31Z,2020-02-15T06:59:52Z +8181,301,2,7818,4.99,2005-07-28T08:25:00Z,2020-02-15T06:59:52Z +8182,301,2,9435,4.99,2005-07-30T21:31:02Z,2020-02-15T06:59:52Z +8183,301,1,10883,0.99,2005-08-02T00:47:19Z,2020-02-15T06:59:52Z +8184,301,2,13183,5.99,2005-08-19T14:09:26Z,2020-02-15T06:59:52Z +8185,301,2,13633,2.99,2005-08-20T07:13:47Z,2020-02-15T06:59:52Z +8186,301,1,15201,10.99,2005-08-22T16:24:42Z,2020-02-15T06:59:52Z +8187,301,1,15268,1.99,2005-08-22T18:39:11Z,2020-02-15T06:59:52Z +8188,302,2,38,4.99,2005-05-25T04:47:44Z,2020-02-15T06:59:52Z +8189,302,2,92,5.99,2005-05-25T15:38:46Z,2020-02-15T06:59:52Z +8190,302,1,1231,2.99,2005-06-15T04:04:41Z,2020-02-15T06:59:52Z +8191,302,2,4676,4.99,2005-07-08T10:26:02Z,2020-02-15T06:59:52Z +8192,302,2,5498,0.99,2005-07-10T00:27:21Z,2020-02-15T06:59:52Z +8193,302,2,5682,2.99,2005-07-10T08:51:39Z,2020-02-15T06:59:52Z +8194,302,2,5709,0.99,2005-07-10T10:31:52Z,2020-02-15T06:59:52Z +8195,302,2,5821,4.99,2005-07-10T16:07:16Z,2020-02-15T06:59:52Z +8196,302,2,6623,7.99,2005-07-12T09:05:34Z,2020-02-15T06:59:52Z +8197,302,1,7183,0.99,2005-07-27T08:18:38Z,2020-02-15T06:59:52Z +8198,302,1,7411,6.99,2005-07-27T16:42:30Z,2020-02-15T06:59:52Z +8199,302,1,8363,6.99,2005-07-29T05:10:08Z,2020-02-15T06:59:52Z +8200,302,2,8646,0.99,2005-07-29T14:48:48Z,2020-02-15T06:59:52Z +8201,302,1,8795,2.99,2005-07-29T21:04:14Z,2020-02-15T06:59:52Z +8202,302,1,9146,7.99,2005-07-30T10:32:08Z,2020-02-15T06:59:52Z +8203,302,2,9358,2.99,2005-07-30T18:37:24Z,2020-02-15T06:59:52Z +8204,302,1,9374,8.99,2005-07-30T19:10:03Z,2020-02-15T06:59:52Z +8205,302,2,9581,5.99,2005-07-31T03:03:07Z,2020-02-15T06:59:52Z +8206,302,2,10329,0.99,2005-08-01T04:56:13Z,2020-02-15T06:59:52Z +8207,302,1,12126,7.99,2005-08-17T23:25:21Z,2020-02-15T06:59:52Z +8208,302,2,12516,4.99,2005-08-18T13:39:53Z,2020-02-15T06:59:52Z +8209,302,1,12903,2.99,2005-08-19T04:09:38Z,2020-02-15T06:59:52Z +8210,302,1,13916,2.99,2005-08-20T16:43:02Z,2020-02-15T06:59:52Z +8211,302,1,14120,4.99,2005-08-21T01:25:00Z,2020-02-15T06:59:52Z +8212,302,2,14247,3.99,2005-08-21T05:35:17Z,2020-02-15T06:59:52Z +8213,302,2,15578,2.99,2005-08-23T05:37:13Z,2020-02-15T06:59:52Z +8214,302,1,15622,5.99,2005-08-23T07:22:02Z,2020-02-15T06:59:52Z +8215,302,2,15734,0.99,2005-08-23T11:40:08Z,2020-02-15T06:59:52Z +8216,302,2,15987,6.99,2005-08-23T20:22:17Z,2020-02-15T06:59:52Z +8217,303,1,265,0.99,2005-05-26T16:07:38Z,2020-02-15T06:59:52Z +8218,303,1,871,2.99,2005-05-30T05:01:30Z,2020-02-15T06:59:52Z +8219,303,2,1050,4.99,2005-05-31T07:01:27Z,2020-02-15T06:59:52Z +8220,303,2,1970,4.99,2005-06-17T09:23:16Z,2020-02-15T06:59:52Z +8221,303,1,2223,8.99,2005-06-18T03:27:03Z,2020-02-15T06:59:52Z +8222,303,1,3077,3.99,2005-06-20T15:05:18Z,2020-02-15T06:59:52Z +8223,303,1,3107,2.99,2005-06-20T17:26:05Z,2020-02-15T06:59:52Z +8224,303,1,5140,4.99,2005-07-09T08:04:59Z,2020-02-15T06:59:52Z +8225,303,1,6205,4.99,2005-07-11T12:31:24Z,2020-02-15T06:59:52Z +8226,303,2,6219,4.99,2005-07-11T13:18:37Z,2020-02-15T06:59:52Z +8227,303,1,6464,4.99,2005-07-12T01:16:40Z,2020-02-15T06:59:52Z +8228,303,1,7023,4.99,2005-07-27T02:32:44Z,2020-02-15T06:59:52Z +8229,303,2,7502,2.99,2005-07-27T20:19:08Z,2020-02-15T06:59:52Z +8230,303,1,8409,0.99,2005-07-29T06:41:22Z,2020-02-15T06:59:52Z +8231,303,2,8734,6.99,2005-07-29T18:28:15Z,2020-02-15T06:59:52Z +8232,303,2,8764,0.99,2005-07-29T19:39:04Z,2020-02-15T06:59:52Z +8233,303,2,10209,2.99,2005-08-01T00:56:47Z,2020-02-15T06:59:52Z +8234,303,1,11253,4.99,2005-08-02T13:42:44Z,2020-02-15T06:59:52Z +8235,303,2,11673,2.99,2005-08-17T05:54:15Z,2020-02-15T06:59:52Z +8236,303,2,11993,2.99,2005-08-17T18:27:49Z,2020-02-15T06:59:52Z +8237,303,2,12117,0.99,2005-08-17T23:11:12Z,2020-02-15T06:59:52Z +8238,303,1,12365,0.99,2005-08-18T07:55:09Z,2020-02-15T06:59:52Z +8239,303,2,12473,2.99,2005-08-18T11:59:44Z,2020-02-15T06:59:52Z +8240,303,1,14750,5.99,2005-08-21T23:09:32Z,2020-02-15T06:59:52Z +8241,303,2,14795,4.99,2005-08-22T00:40:22Z,2020-02-15T06:59:52Z +8242,303,1,15511,3.99,2005-08-23T02:55:42Z,2020-02-15T06:59:52Z +8243,304,1,135,10.99,2005-05-25T21:58:58Z,2020-02-15T06:59:52Z +8244,304,1,415,0.99,2005-05-27T14:51:45Z,2020-02-15T06:59:52Z +8245,304,2,937,2.99,2005-05-30T14:47:31Z,2020-02-15T06:59:52Z +8246,304,1,1414,6.99,2005-06-15T17:26:32Z,2020-02-15T06:59:52Z +8247,304,2,1525,4.99,2005-06-16T00:26:07Z,2020-02-15T06:59:52Z +8248,304,1,2039,3.99,2005-06-17T14:03:43Z,2020-02-15T06:59:52Z +8249,304,2,2902,4.99,2005-06-20T02:45:35Z,2020-02-15T06:59:52Z +8250,304,1,4466,6.99,2005-07-08T00:12:53Z,2020-02-15T06:59:52Z +8251,304,2,4812,8.99,2005-07-08T17:07:11Z,2020-02-15T06:59:52Z +8252,304,1,5411,2.99,2005-07-09T20:23:38Z,2020-02-15T06:59:52Z +8253,304,1,5712,4.99,2005-07-10T10:40:32Z,2020-02-15T06:59:52Z +8254,304,2,5749,3.99,2005-07-10T12:20:36Z,2020-02-15T06:59:52Z +8255,304,2,5795,0.99,2005-07-10T14:36:29Z,2020-02-15T06:59:52Z +8256,304,2,6107,0.99,2005-07-11T07:07:09Z,2020-02-15T06:59:52Z +8257,304,1,6737,4.99,2005-07-12T14:16:52Z,2020-02-15T06:59:52Z +8258,304,2,7551,4.99,2005-07-27T21:59:15Z,2020-02-15T06:59:52Z +8259,304,2,8055,4.99,2005-07-28T17:02:32Z,2020-02-15T06:59:52Z +8260,304,1,9930,0.99,2005-07-31T15:18:03Z,2020-02-15T06:59:52Z +8261,304,1,9992,6.99,2005-07-31T17:29:48Z,2020-02-15T06:59:52Z +8262,304,1,10631,0.99,2005-08-01T15:35:14Z,2020-02-15T06:59:52Z +8263,304,2,11983,4.99,2005-08-17T18:13:55Z,2020-02-15T06:59:52Z +8264,304,1,12540,5.99,2005-08-18T14:17:30Z,2020-02-15T06:59:52Z +8265,304,2,13911,3.99,2005-08-20T16:31:33Z,2020-02-15T06:59:52Z +8266,304,1,14023,0.99,2005-08-20T21:10:32Z,2020-02-15T06:59:52Z +8267,304,1,14899,4.99,2005-08-22T04:26:38Z,2020-02-15T06:59:52Z +8268,304,1,14945,4.99,2005-08-22T06:05:38Z,2020-02-15T06:59:52Z +8269,305,2,69,2.99,2005-05-25T10:10:14Z,2020-02-15T06:59:52Z +8270,305,1,1574,4.99,2005-06-16T03:39:56Z,2020-02-15T06:59:52Z +8271,305,2,1884,0.99,2005-06-17T03:19:20Z,2020-02-15T06:59:52Z +8272,305,1,2166,11.99,2005-06-17T23:51:21Z,2020-02-15T06:59:52Z +8273,305,1,3387,0.99,2005-06-21T14:21:49Z,2020-02-15T06:59:52Z +8274,305,2,4260,4.99,2005-07-07T14:22:45Z,2020-02-15T06:59:52Z +8275,305,1,4638,2.99,2005-07-08T08:57:20Z,2020-02-15T06:59:52Z +8276,305,2,5041,0.99,2005-07-09T03:18:51Z,2020-02-15T06:59:52Z +8277,305,1,5052,2.99,2005-07-09T03:59:43Z,2020-02-15T06:59:52Z +8278,305,2,5582,4.99,2005-07-10T04:08:25Z,2020-02-15T06:59:52Z +8279,305,1,5745,8.99,2005-07-10T12:10:11Z,2020-02-15T06:59:52Z +8280,305,1,6134,7.99,2005-07-11T08:28:19Z,2020-02-15T06:59:52Z +8281,305,2,6619,0.99,2005-07-12T08:50:48Z,2020-02-15T06:59:52Z +8282,305,2,8865,4.99,2005-07-29T23:54:54Z,2020-02-15T06:59:52Z +8283,305,2,9119,4.99,2005-07-30T09:25:56Z,2020-02-15T06:59:52Z +8284,305,2,10426,4.99,2005-08-01T08:26:08Z,2020-02-15T06:59:52Z +8285,305,2,10929,4.99,2005-08-02T02:35:44Z,2020-02-15T06:59:52Z +8286,305,1,10981,2.99,2005-08-02T04:17:53Z,2020-02-15T06:59:52Z +8287,305,2,11035,5.99,2005-08-02T05:55:39Z,2020-02-15T06:59:52Z +8288,305,2,11809,3.99,2005-08-17T11:51:39Z,2020-02-15T06:59:52Z +8289,305,2,12592,3.99,2005-08-18T16:17:50Z,2020-02-15T06:59:52Z +8290,305,2,12846,0.99,2005-08-19T02:03:26Z,2020-02-15T06:59:52Z +8291,305,1,13782,4.99,2005-08-20T12:09:26Z,2020-02-15T06:59:52Z +8292,305,2,15417,2.99,2005-08-22T23:54:04Z,2020-02-15T06:59:52Z +8293,305,1,15612,6.99,2005-08-23T06:59:07Z,2020-02-15T06:59:52Z +8294,306,2,375,3.99,2005-05-27T08:49:21Z,2020-02-15T06:59:52Z +8295,306,2,672,6.99,2005-05-28T22:05:29Z,2020-02-15T06:59:52Z +8296,306,2,1172,0.99,2005-06-14T23:54:34Z,2020-02-15T06:59:52Z +8297,306,2,2836,6.99,2005-06-19T21:58:21Z,2020-02-15T06:59:52Z +8298,306,1,3814,6.99,2005-07-06T15:23:56Z,2020-02-15T06:59:52Z +8299,306,2,4484,5.99,2005-07-08T01:05:57Z,2020-02-15T06:59:52Z +8300,306,2,4596,1.99,2005-07-08T06:41:25Z,2020-02-15T06:59:52Z +8301,306,2,5581,2.99,2005-07-10T04:06:06Z,2020-02-15T06:59:52Z +8302,306,2,6868,2.99,2005-07-12T20:10:17Z,2020-02-15T06:59:52Z +8303,306,1,6953,4.99,2005-07-26T23:52:47Z,2020-02-15T06:59:52Z +8304,306,1,7225,6.99,2005-07-27T09:47:12Z,2020-02-15T06:59:52Z +8305,306,1,7232,4.99,2005-07-27T10:04:19Z,2020-02-15T06:59:52Z +8306,306,2,7701,2.99,2005-07-28T03:54:28Z,2020-02-15T06:59:52Z +8307,306,2,8620,0.99,2005-07-29T13:51:20Z,2020-02-15T06:59:52Z +8308,306,1,8702,0.99,2005-07-29T17:04:37Z,2020-02-15T06:59:52Z +8309,306,2,9242,4.99,2005-07-30T14:03:58Z,2020-02-15T06:59:52Z +8310,306,2,9395,4.99,2005-07-30T20:07:06Z,2020-02-15T06:59:52Z +8311,306,1,9774,0.99,2005-07-31T09:57:51Z,2020-02-15T06:59:52Z +8312,306,1,10202,6.99,2005-08-01T00:43:18Z,2020-02-15T06:59:52Z +8313,306,2,10893,5.99,2005-08-02T01:12:13Z,2020-02-15T06:59:52Z +8314,306,2,11142,4.99,2005-08-02T09:30:11Z,2020-02-15T06:59:52Z +8315,306,1,11440,0.99,2005-08-02T20:24:02Z,2020-02-15T06:59:52Z +8316,306,2,11674,6.99,2005-08-17T05:56:27Z,2020-02-15T06:59:52Z +8317,306,2,11776,0.99,2005-08-17T10:27:19Z,2020-02-15T06:59:52Z +8318,306,1,12225,7.99,2005-08-18T03:00:11Z,2020-02-15T06:59:52Z +8319,306,1,12989,2.99,2005-08-19T07:19:04Z,2020-02-15T06:59:52Z +8320,306,1,13686,4.99,2005-08-20T08:57:28Z,2020-02-15T06:59:52Z +8321,306,2,13725,5.99,2005-08-20T10:08:27Z,2020-02-15T06:59:52Z +8322,306,1,13873,0.99,2005-08-20T15:11:11Z,2020-02-15T06:59:52Z +8323,306,1,13996,4.99,2005-08-20T19:45:43Z,2020-02-15T06:59:52Z +8324,306,1,15457,2.99,2005-08-23T01:07:37Z,2020-02-15T06:59:52Z +8325,306,2,15868,7.99,2005-08-23T16:19:14Z,2020-02-15T06:59:52Z +8326,307,2,413,4.99,2005-05-27T14:45:37Z,2020-02-15T06:59:52Z +8327,307,1,535,4.99,2005-05-28T06:16:32Z,2020-02-15T06:59:52Z +8328,307,1,614,1.99,2005-05-28T15:33:28Z,2020-02-15T06:59:52Z +8329,307,1,970,6.99,2005-05-30T19:50:28Z,2020-02-15T06:59:52Z +8330,307,2,2152,2.99,2005-06-17T22:53:27Z,2020-02-15T06:59:52Z +8331,307,1,2167,0.99,2005-06-17T23:51:28Z,2020-02-15T06:59:52Z +8332,307,1,2787,4.99,2005-06-19T18:47:00Z,2020-02-15T06:59:52Z +8333,307,1,2881,2.99,2005-06-20T01:26:18Z,2020-02-15T06:59:52Z +8334,307,2,3057,5.99,2005-06-20T13:22:48Z,2020-02-15T06:59:52Z +8335,307,1,3209,4.99,2005-06-21T00:51:06Z,2020-02-15T06:59:52Z +8336,307,1,3962,6.99,2005-07-06T22:13:45Z,2020-02-15T06:59:52Z +8337,307,1,3985,4.99,2005-07-06T23:24:03Z,2020-02-15T06:59:52Z +8338,307,1,4522,2.99,2005-07-08T03:03:12Z,2020-02-15T06:59:52Z +8339,307,1,4868,4.99,2005-07-08T19:13:50Z,2020-02-15T06:59:52Z +8340,307,1,5871,3.99,2005-07-10T18:46:08Z,2020-02-15T06:59:52Z +8341,307,2,6125,6.99,2005-07-11T08:03:35Z,2020-02-15T06:59:52Z +8342,307,1,6256,0.99,2005-07-11T15:19:22Z,2020-02-15T06:59:52Z +8343,307,1,6991,10.99,2005-07-27T01:03:06Z,2020-02-15T06:59:52Z +8344,307,1,7536,2.99,2005-07-27T21:34:09Z,2020-02-15T06:59:52Z +8345,307,1,7760,3.99,2005-07-28T06:29:45Z,2020-02-15T06:59:52Z +8346,307,1,7929,0.99,2005-07-28T12:16:40Z,2020-02-15T06:59:52Z +8347,307,1,8647,6.99,2005-07-29T14:52:59Z,2020-02-15T06:59:52Z +8348,307,1,10135,4.99,2005-07-31T21:57:32Z,2020-02-15T06:59:52Z +8349,307,1,10374,0.99,2005-08-01T06:25:27Z,2020-02-15T06:59:52Z +8350,307,1,10745,2.99,2005-08-01T19:57:06Z,2020-02-15T06:59:52Z +8351,307,1,11491,7.99,2005-08-02T22:44:50Z,2020-02-15T06:59:52Z +8352,307,2,12391,4.99,2005-08-18T08:52:53Z,2020-02-15T06:59:52Z +8353,307,2,13365,6.99,2005-08-19T21:12:37Z,2020-02-15T06:59:52Z +8354,307,1,14231,0.99,2005-08-21T05:04:34Z,2020-02-15T06:59:52Z +8355,307,2,15515,4.99,2005-08-23T03:03:53Z,2020-02-15T06:59:52Z +8356,308,2,589,3.99,2005-05-28T12:27:50Z,2020-02-15T06:59:52Z +8357,308,1,2037,0.99,2005-06-17T13:54:20Z,2020-02-15T06:59:52Z +8358,308,1,2094,0.99,2005-06-17T18:18:56Z,2020-02-15T06:59:52Z +8359,308,2,2168,4.99,2005-06-17T23:53:24Z,2020-02-15T06:59:52Z +8360,308,1,2346,7.99,2005-06-18T12:08:16Z,2020-02-15T06:59:52Z +8361,308,2,2448,4.99,2005-06-18T19:13:45Z,2020-02-15T06:59:52Z +8362,308,1,4002,3.99,2005-07-07T00:08:18Z,2020-02-15T06:59:52Z +8363,308,1,4285,8.99,2005-07-07T15:34:35Z,2020-02-15T06:59:52Z +8364,308,1,5946,2.99,2005-07-10T22:57:29Z,2020-02-15T06:59:52Z +8365,308,2,8869,0.99,2005-07-30T00:06:32Z,2020-02-15T06:59:52Z +8366,308,1,9479,2.99,2005-07-30T23:22:09Z,2020-02-15T06:59:52Z +8367,308,1,9746,7.99,2005-07-31T09:16:48Z,2020-02-15T06:59:52Z +8368,308,1,10571,2.99,2005-08-01T13:25:30Z,2020-02-15T06:59:52Z +8369,308,2,10797,0.99,2005-08-01T22:02:51Z,2020-02-15T06:59:52Z +8370,308,1,10819,4.99,2005-08-01T22:52:57Z,2020-02-15T06:59:52Z +8371,308,1,11765,2.99,2005-08-17T09:55:28Z,2020-02-15T06:59:52Z +8372,308,1,11972,4.99,2005-08-17T17:55:46Z,2020-02-15T06:59:52Z +8373,308,2,12567,3.99,2005-08-18T15:14:36Z,2020-02-15T06:59:52Z +8374,308,1,12590,6.99,2005-08-18T16:11:35Z,2020-02-15T06:59:52Z +8375,308,2,12838,6.99,2005-08-19T01:51:50Z,2020-02-15T06:59:52Z +8376,308,1,13843,2.99,2005-08-20T14:30:01Z,2020-02-15T06:59:52Z +8377,308,2,14946,2.99,2005-08-22T06:07:10Z,2020-02-15T06:59:52Z +8378,308,1,15243,4.99,2005-08-22T17:48:28Z,2020-02-15T06:59:52Z +8379,308,2,15493,4.99,2005-08-23T02:20:53Z,2020-02-15T06:59:52Z +8380,308,2,15820,2.99,2005-08-23T15:03:13Z,2020-02-15T06:59:52Z +8381,309,2,218,6.99,2005-05-26T09:27:09Z,2020-02-15T06:59:52Z +8382,309,2,723,0.99,2005-05-29T05:34:44Z,2020-02-15T06:59:52Z +8383,309,1,1837,4.99,2005-06-16T23:16:15Z,2020-02-15T06:59:52Z +8384,309,2,2560,9.99,2005-06-19T03:12:42Z,2020-02-15T06:59:52Z +8385,309,2,2644,3.99,2005-06-19T09:42:30Z,2020-02-15T06:59:52Z +8386,309,2,2688,6.99,2005-06-19T12:50:56Z,2020-02-15T06:59:52Z +8387,309,2,3837,4.99,2005-07-06T16:27:43Z,2020-02-15T06:59:52Z +8388,309,2,3896,7.99,2005-07-06T19:09:15Z,2020-02-15T06:59:52Z +8389,309,2,4172,4.99,2005-07-07T09:49:09Z,2020-02-15T06:59:52Z +8390,309,1,4540,4.99,2005-07-08T04:03:28Z,2020-02-15T06:59:52Z +8391,309,2,5305,8.99,2005-07-09T15:55:36Z,2020-02-15T06:59:52Z +8392,309,1,5980,4.99,2005-07-11T00:18:21Z,2020-02-15T06:59:52Z +8393,309,2,6480,4.99,2005-07-12T01:49:29Z,2020-02-15T06:59:52Z +8394,309,2,7214,5.99,2005-07-27T09:23:33Z,2020-02-15T06:59:52Z +8395,309,2,7722,4.99,2005-07-28T04:44:58Z,2020-02-15T06:59:52Z +8396,309,1,7846,5.99,2005-07-28T09:21:18Z,2020-02-15T06:59:52Z +8397,309,1,8341,4.99,2005-07-29T04:42:01Z,2020-02-15T06:59:52Z +8398,309,1,8501,2.99,2005-07-29T09:12:51Z,2020-02-15T06:59:52Z +8399,309,1,8681,2.99,2005-07-29T16:12:01Z,2020-02-15T06:59:52Z +8400,309,1,8917,2.99,2005-07-30T01:47:02Z,2020-02-15T06:59:52Z +8401,309,2,9945,2.99,2005-07-31T15:47:51Z,2020-02-15T06:59:52Z +8402,309,1,9949,0.99,2005-07-31T15:50:10Z,2020-02-15T06:59:52Z +8403,309,1,10458,2.99,2005-08-01T09:19:48Z,2020-02-15T06:59:52Z +8404,309,1,10728,0.99,2005-08-01T19:15:09Z,2020-02-15T06:59:52Z +8405,309,1,10818,2.99,2005-08-01T22:52:45Z,2020-02-15T06:59:52Z +8406,309,2,11964,6.99,2005-08-17T17:37:03Z,2020-02-15T06:59:52Z +8407,309,2,13021,5.99,2005-08-19T08:08:04Z,2020-02-15T06:59:52Z +8408,309,2,13502,0.99,2005-08-20T01:58:15Z,2020-02-15T06:59:52Z +8409,309,2,13909,4.99,2005-08-20T16:26:36Z,2020-02-15T06:59:52Z +8410,309,2,14846,5.99,2005-08-22T02:13:48Z,2020-02-15T06:59:52Z +8411,309,2,15422,4.99,2005-08-22T23:58:09Z,2020-02-15T06:59:52Z +8412,310,2,104,0.99,2005-05-25T17:46:33Z,2020-02-15T06:59:52Z +8413,310,2,1162,4.99,2005-06-14T23:09:38Z,2020-02-15T06:59:52Z +8414,310,2,1333,2.99,2005-06-15T11:37:08Z,2020-02-15T06:59:52Z +8415,310,2,1918,3.99,2005-06-17T05:40:14Z,2020-02-15T06:59:52Z +8416,310,2,2088,6.99,2005-06-17T17:35:30Z,2020-02-15T06:59:52Z +8417,310,1,2480,5.99,2005-06-18T21:04:09Z,2020-02-15T06:59:52Z +8418,310,1,2618,2.99,2005-06-19T08:03:01Z,2020-02-15T06:59:52Z +8419,310,2,3830,10.99,2005-07-06T16:01:16Z,2020-02-15T06:59:52Z +8420,310,1,4072,0.99,2005-07-07T04:48:02Z,2020-02-15T06:59:52Z +8421,310,1,5621,5.99,2005-07-10T05:34:10Z,2020-02-15T06:59:52Z +8422,310,2,5836,0.99,2005-07-10T16:49:02Z,2020-02-15T06:59:52Z +8423,310,1,7648,5.99,2005-07-28T01:35:33Z,2020-02-15T06:59:52Z +8424,310,2,8637,5.99,2005-07-29T14:30:11Z,2020-02-15T06:59:52Z +8425,310,1,8981,7.99,2005-07-30T04:25:30Z,2020-02-15T06:59:52Z +8426,310,1,9536,2.99,2005-07-31T01:19:02Z,2020-02-15T06:59:52Z +8427,310,2,11137,2.99,2005-08-02T09:25:31Z,2020-02-15T06:59:52Z +8428,310,2,12500,4.99,2005-08-18T13:05:51Z,2020-02-15T06:59:52Z +8429,310,2,12710,7.99,2005-08-18T21:02:50Z,2020-02-15T06:59:52Z +8430,310,1,12929,4.99,2005-08-19T05:05:23Z,2020-02-15T06:59:52Z +8431,310,1,14972,5.99,2005-08-22T06:53:21Z,2020-02-15T06:59:52Z +8432,311,2,274,5.99,2005-05-26T16:48:51Z,2020-02-15T06:59:52Z +8433,311,2,544,6.99,2005-05-28T07:03:00Z,2020-02-15T06:59:52Z +8434,311,1,952,2.99,2005-05-30T16:28:07Z,2020-02-15T06:59:52Z +8435,311,2,990,3.99,2005-05-30T23:25:14Z,2020-02-15T06:59:52Z +8436,311,2,1128,6.99,2005-05-31T17:49:26Z,2020-02-15T06:59:52Z +8437,311,1,1622,4.99,2005-06-16T07:33:18Z,2020-02-15T06:59:52Z +8438,311,2,1955,0.99,2005-06-17T08:40:22Z,2020-02-15T06:59:52Z +8439,311,2,2967,6.99,2005-06-20T07:40:35Z,2020-02-15T06:59:52Z +8440,311,2,4836,3.99,2005-07-08T18:09:08Z,2020-02-15T06:59:52Z +8441,311,2,5224,5.99,2005-07-09T12:07:27Z,2020-02-15T06:59:52Z +8442,311,2,6419,4.99,2005-07-11T23:36:38Z,2020-02-15T06:59:52Z +8443,311,2,8167,6.99,2005-07-28T21:25:45Z,2020-02-15T06:59:52Z +8444,311,1,8473,2.99,2005-07-29T08:36:53Z,2020-02-15T06:59:52Z +8445,311,1,9503,6.99,2005-07-31T00:02:38Z,2020-02-15T06:59:52Z +8446,311,2,9882,8.99,2005-07-31T13:53:33Z,2020-02-15T06:59:52Z +8447,311,1,10134,4.99,2005-07-31T21:56:10Z,2020-02-15T06:59:52Z +8448,311,2,10448,4.99,2005-08-01T09:09:31Z,2020-02-15T06:59:52Z +8449,311,1,12997,2.99,2005-08-19T07:31:46Z,2020-02-15T06:59:52Z +8450,311,2,13310,0.99,2005-08-19T19:05:16Z,2020-02-15T06:59:52Z +8451,311,2,13423,1.99,2005-08-19T23:07:42Z,2020-02-15T06:59:52Z +8452,311,2,14517,4.99,2005-08-21T14:57:03Z,2020-02-15T06:59:52Z +8453,311,2,15826,9.99,2005-08-23T15:15:02Z,2020-02-15T06:59:52Z +8454,311,1,16020,8.99,2005-08-23T21:34:33Z,2020-02-15T06:59:52Z +8455,312,2,229,4.99,2005-05-26T11:19:20Z,2020-02-15T06:59:52Z +8456,312,1,530,0.99,2005-05-28T05:13:01Z,2020-02-15T06:59:52Z +8457,312,2,1049,4.99,2005-05-31T06:57:04Z,2020-02-15T06:59:52Z +8458,312,2,1079,6.99,2005-05-31T10:48:17Z,2020-02-15T06:59:52Z +8459,312,2,1419,0.99,2005-06-15T17:54:50Z,2020-02-15T06:59:52Z +8460,312,2,3457,3.99,2005-06-21T21:42:33Z,2020-02-15T06:59:52Z +8461,312,1,3766,2.99,2005-07-06T13:04:35Z,2020-02-15T06:59:52Z +8462,312,1,3792,1.99,2005-07-06T14:26:38Z,2020-02-15T06:59:52Z +8463,312,1,4647,3.99,2005-07-08T09:27:36Z,2020-02-15T06:59:52Z +8464,312,1,5031,5.99,2005-07-09T02:36:37Z,2020-02-15T06:59:52Z +8465,312,2,6751,2.99,2005-07-12T14:50:34Z,2020-02-15T06:59:52Z +8466,312,1,6866,2.99,2005-07-12T20:03:44Z,2020-02-15T06:59:52Z +8467,312,1,8137,4.99,2005-07-28T20:07:18Z,2020-02-15T06:59:52Z +8468,312,1,8412,6.99,2005-07-29T06:44:50Z,2020-02-15T06:59:52Z +8469,312,1,8721,4.99,2005-07-29T17:56:21Z,2020-02-15T06:59:52Z +8470,312,1,9016,6.99,2005-07-30T05:26:13Z,2020-02-15T06:59:52Z +8471,312,1,9154,3.99,2005-07-30T10:59:54Z,2020-02-15T06:59:52Z +8472,312,2,10858,2.99,2005-08-02T00:08:39Z,2020-02-15T06:59:52Z +8473,312,2,11248,0.99,2005-08-02T13:35:34Z,2020-02-15T06:59:52Z +8474,312,2,11879,5.99,2005-08-17T14:25:09Z,2020-02-15T06:59:52Z +8475,312,1,12186,2.99,2005-08-18T01:43:36Z,2020-02-15T06:59:52Z +8476,312,1,12945,0.99,2005-08-19T05:51:46Z,2020-02-15T06:59:52Z +8477,312,2,14362,2.99,2005-08-21T09:19:49Z,2020-02-15T06:59:52Z +8478,312,1,14504,3.99,2005-08-21T14:23:01Z,2020-02-15T06:59:52Z +8479,312,1,15100,4.99,2005-08-22T11:55:03Z,2020-02-15T06:59:52Z +8480,312,1,15882,6.99,2005-08-23T16:44:31Z,2020-02-15T06:59:52Z +8481,313,2,669,4.99,2005-05-28T22:03:25Z,2020-02-15T06:59:52Z +8482,313,2,712,2.99,2005-05-29T04:02:24Z,2020-02-15T06:59:52Z +8483,313,2,781,0.99,2005-05-29T14:23:58Z,2020-02-15T06:59:52Z +8484,313,2,843,0.99,2005-05-30T00:44:24Z,2020-02-15T06:59:52Z +8485,313,2,1312,2.99,2005-06-15T10:16:27Z,2020-02-15T06:59:52Z +8486,313,1,2617,7.99,2005-06-19T07:48:31Z,2020-02-15T06:59:52Z +8487,313,2,2711,4.99,2005-06-19T14:12:22Z,2020-02-15T06:59:52Z +8488,313,2,4552,2.99,2005-07-08T04:36:35Z,2020-02-15T06:59:52Z +8489,313,1,5255,5.99,2005-07-09T13:51:08Z,2020-02-15T06:59:52Z +8490,313,1,6384,2.99,2005-07-11T22:07:26Z,2020-02-15T06:59:52Z +8491,313,2,7294,0.99,2005-07-27T12:38:14Z,2020-02-15T06:59:52Z +8492,313,2,8381,4.99,2005-07-29T05:31:44Z,2020-02-15T06:59:52Z +8493,313,1,8970,3.99,2005-07-30T04:02:05Z,2020-02-15T06:59:52Z +8494,313,2,9836,2.99,2005-07-31T12:12:00Z,2020-02-15T06:59:52Z +8495,313,2,10237,5.99,2005-08-01T02:07:32Z,2020-02-15T06:59:52Z +8496,313,2,10933,7.99,2005-08-02T02:50:49Z,2020-02-15T06:59:52Z +8497,313,2,11854,2.99,2005-08-17T13:42:52Z,2020-02-15T06:59:52Z +8498,313,2,12011,2.99,2005-08-17T19:19:44Z,2020-02-15T06:59:52Z +8499,313,2,14250,2.99,2005-08-21T05:39:35Z,2020-02-15T06:59:52Z +8500,313,1,14325,4.99,2005-08-21T08:15:38Z,2020-02-15T06:59:52Z +8501,313,2,15081,2.99,2005-08-22T11:14:31Z,2020-02-15T06:59:52Z +8502,313,1,15340,0.99,2005-08-22T20:55:56Z,2020-02-15T06:59:52Z +8503,313,2,15569,6.99,2005-08-23T05:24:29Z,2020-02-15T06:59:52Z +8504,314,1,80,5.99,2005-05-25T12:12:07Z,2020-02-15T06:59:52Z +8505,314,1,440,4.99,2005-05-27T18:00:35Z,2020-02-15T06:59:52Z +8506,314,1,1598,3.99,2005-06-16T06:02:39Z,2020-02-15T06:59:52Z +8507,314,1,1624,2.99,2005-06-16T07:48:57Z,2020-02-15T06:59:52Z +8508,314,1,3517,0.99,2005-07-06T00:52:35Z,2020-02-15T06:59:52Z +8509,314,1,3656,2.99,2005-07-06T07:55:22Z,2020-02-15T06:59:52Z +8510,314,1,3808,0.99,2005-07-06T15:15:35Z,2020-02-15T06:59:52Z +8511,314,2,4386,0.99,2005-07-07T20:55:19Z,2020-02-15T06:59:52Z +8512,314,2,5241,4.99,2005-07-09T13:19:14Z,2020-02-15T06:59:52Z +8513,314,2,5856,0.99,2005-07-10T17:57:32Z,2020-02-15T06:59:52Z +8514,314,1,6192,5.99,2005-07-11T11:44:41Z,2020-02-15T06:59:52Z +8515,314,1,6666,2.99,2005-07-12T11:32:15Z,2020-02-15T06:59:52Z +8516,314,1,6763,3.99,2005-07-12T15:26:34Z,2020-02-15T06:59:52Z +8517,314,2,7004,4.99,2005-07-27T01:36:05Z,2020-02-15T06:59:52Z +8518,314,1,7276,2.99,2005-07-27T11:41:57Z,2020-02-15T06:59:52Z +8519,314,2,8022,6.99,2005-07-28T15:48:56Z,2020-02-15T06:59:52Z +8520,314,1,8073,3.99,2005-07-28T17:29:02Z,2020-02-15T06:59:52Z +8521,314,2,8105,0.99,2005-07-28T18:59:46Z,2020-02-15T06:59:52Z +8522,314,2,8328,6.99,2005-07-29T04:06:24Z,2020-02-15T06:59:52Z +8523,314,2,8644,4.99,2005-07-29T14:45:45Z,2020-02-15T06:59:52Z +8524,314,2,9191,3.99,2005-07-30T12:25:51Z,2020-02-15T06:59:52Z +8525,314,2,9318,6.99,2005-07-30T17:14:30Z,2020-02-15T06:59:52Z +8526,314,2,11908,3.99,2005-08-17T15:43:09Z,2020-02-15T06:59:52Z +8527,314,1,12434,0.99,2005-08-18T10:38:08Z,2020-02-15T06:59:52Z +8528,314,2,13120,3.99,2005-08-19T11:47:38Z,2020-02-15T06:59:52Z +8529,314,1,13265,2.99,2005-08-19T17:29:00Z,2020-02-15T06:59:52Z +8530,314,2,13553,3.99,2005-08-20T04:07:21Z,2020-02-15T06:59:52Z +8531,314,2,14145,4.99,2005-08-21T02:11:38Z,2020-02-15T06:59:52Z +8532,314,1,14409,4.99,2005-08-21T10:53:35Z,2020-02-15T06:59:52Z +8533,314,2,14682,4.99,2005-08-21T20:25:57Z,2020-02-15T06:59:52Z +8534,314,2,14815,4.99,2005-08-22T01:12:44Z,2020-02-15T06:59:52Z +8535,314,2,14873,5.99,2005-08-22T03:31:06Z,2020-02-15T06:59:52Z +8536,314,2,16021,3.99,2005-08-23T21:37:59Z,2020-02-15T06:59:52Z +8537,315,1,537,8.99,2005-05-28T06:20:55Z,2020-02-15T06:59:52Z +8538,315,1,551,4.99,2005-05-28T07:44:18Z,2020-02-15T06:59:52Z +8539,315,1,1701,2.99,2005-06-16T13:18:48Z,2020-02-15T06:59:52Z +8540,315,1,4021,2.99,2005-07-07T01:46:44Z,2020-02-15T06:59:52Z +8541,315,1,4992,4.99,2005-07-09T00:49:37Z,2020-02-15T06:59:52Z +8542,315,2,5126,6.99,2005-07-09T07:25:35Z,2020-02-15T06:59:52Z +8543,315,1,6661,4.99,2005-07-12T11:20:39Z,2020-02-15T06:59:52Z +8544,315,1,6894,4.99,2005-07-12T21:20:50Z,2020-02-15T06:59:52Z +8545,315,1,8416,5.99,2005-07-29T06:52:54Z,2020-02-15T06:59:52Z +8546,315,2,8677,6.99,2005-07-29T16:01:13Z,2020-02-15T06:59:52Z +8547,315,2,9735,9.99,2005-07-31T08:57:49Z,2020-02-15T06:59:52Z +8548,315,2,11254,0.99,2005-08-02T13:43:49Z,2020-02-15T06:59:52Z +8549,315,2,12155,2.99,2005-08-18T00:24:30Z,2020-02-15T06:59:52Z +8550,315,1,14106,2.99,2005-08-21T00:46:01Z,2020-02-15T06:59:52Z +8551,315,2,14162,2.99,2005-08-21T02:55:34Z,2020-02-15T06:59:52Z +8552,315,1,15504,6.99,2005-08-23T02:45:21Z,2020-02-15T06:59:52Z +8553,315,2,14426,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8554,316,1,16,4.99,2005-05-25T00:43:11Z,2020-02-15T06:59:52Z +8555,316,1,644,8.99,2005-05-28T18:59:12Z,2020-02-15T06:59:52Z +8556,316,1,1065,1.99,2005-05-31T08:54:56Z,2020-02-15T06:59:52Z +8557,316,1,1317,4.99,2005-06-15T10:30:19Z,2020-02-15T06:59:52Z +8558,316,2,1350,4.99,2005-06-15T12:50:25Z,2020-02-15T06:59:52Z +8559,316,1,2032,4.99,2005-06-17T13:24:07Z,2020-02-15T06:59:52Z +8560,316,2,2338,4.99,2005-06-18T11:24:54Z,2020-02-15T06:59:52Z +8561,316,2,2491,1.99,2005-06-18T22:01:31Z,2020-02-15T06:59:52Z +8562,316,1,2820,4.99,2005-06-19T20:20:33Z,2020-02-15T06:59:52Z +8563,316,2,3373,8.99,2005-06-21T13:35:32Z,2020-02-15T06:59:52Z +8564,316,1,4379,2.99,2005-07-07T20:32:30Z,2020-02-15T06:59:52Z +8565,316,2,5102,3.99,2005-07-09T06:25:48Z,2020-02-15T06:59:52Z +8566,316,2,5544,7.99,2005-07-10T02:48:07Z,2020-02-15T06:59:52Z +8567,316,1,5618,5.99,2005-07-10T05:28:58Z,2020-02-15T06:59:52Z +8568,316,2,6988,4.99,2005-07-27T01:00:08Z,2020-02-15T06:59:52Z +8569,316,2,7339,2.99,2005-07-27T14:17:48Z,2020-02-15T06:59:52Z +8570,316,2,7586,2.99,2005-07-27T23:19:29Z,2020-02-15T06:59:52Z +8571,316,1,7592,4.99,2005-07-27T23:26:04Z,2020-02-15T06:59:52Z +8572,316,1,7945,1.99,2005-07-28T12:53:58Z,2020-02-15T06:59:52Z +8573,316,1,8564,4.99,2005-07-29T11:33:00Z,2020-02-15T06:59:52Z +8574,316,1,9508,4.99,2005-07-31T00:22:39Z,2020-02-15T06:59:52Z +8575,316,2,9903,6.99,2005-07-31T14:31:44Z,2020-02-15T06:59:52Z +8576,316,1,10438,7.99,2005-08-01T08:53:04Z,2020-02-15T06:59:52Z +8577,316,1,12028,0.99,2005-08-17T20:03:47Z,2020-02-15T06:59:52Z +8578,316,2,12191,0.99,2005-08-18T01:57:11Z,2020-02-15T06:59:52Z +8579,316,2,12823,2.99,2005-08-19T01:15:47Z,2020-02-15T06:59:52Z +8580,316,2,13277,5.99,2005-08-19T17:57:35Z,2020-02-15T06:59:52Z +8581,316,1,14226,2.99,2005-08-21T04:55:37Z,2020-02-15T06:59:52Z +8582,316,2,15840,2.99,2005-08-23T15:34:49Z,2020-02-15T06:59:52Z +8583,317,1,107,6.99,2005-05-25T18:28:09Z,2020-02-15T06:59:52Z +8584,317,2,2287,6.99,2005-06-18T07:04:36Z,2020-02-15T06:59:52Z +8585,317,2,3029,2.99,2005-06-20T11:51:30Z,2020-02-15T06:59:52Z +8586,317,1,3251,0.99,2005-06-21T03:20:37Z,2020-02-15T06:59:52Z +8587,317,1,4138,0.99,2005-07-07T08:17:13Z,2020-02-15T06:59:52Z +8588,317,1,4177,8.99,2005-07-07T10:12:36Z,2020-02-15T06:59:52Z +8589,317,2,4700,0.99,2005-07-08T11:37:21Z,2020-02-15T06:59:52Z +8590,317,1,5548,0.99,2005-07-10T02:56:45Z,2020-02-15T06:59:52Z +8591,317,2,5942,7.99,2005-07-10T22:47:17Z,2020-02-15T06:59:52Z +8592,317,1,7309,2.99,2005-07-27T13:00:29Z,2020-02-15T06:59:52Z +8593,317,2,8062,2.99,2005-07-28T17:15:06Z,2020-02-15T06:59:52Z +8594,317,1,8327,2.99,2005-07-29T04:00:52Z,2020-02-15T06:59:52Z +8595,317,1,8458,4.99,2005-07-29T08:05:09Z,2020-02-15T06:59:52Z +8596,317,1,9110,2.99,2005-07-30T09:05:42Z,2020-02-15T06:59:52Z +8597,317,2,9513,4.99,2005-07-31T00:28:30Z,2020-02-15T06:59:52Z +8598,317,1,9770,8.99,2005-07-31T09:52:40Z,2020-02-15T06:59:52Z +8599,317,1,10364,2.99,2005-08-01T06:06:49Z,2020-02-15T06:59:52Z +8600,317,2,12111,2.99,2005-08-17T22:59:55Z,2020-02-15T06:59:52Z +8601,317,2,12138,7.99,2005-08-17T23:55:54Z,2020-02-15T06:59:52Z +8602,317,2,12301,2.99,2005-08-18T05:36:20Z,2020-02-15T06:59:52Z +8603,317,1,13388,4.99,2005-08-19T21:46:49Z,2020-02-15T06:59:52Z +8604,317,1,14032,5.99,2005-08-20T21:26:55Z,2020-02-15T06:59:52Z +8605,317,2,14385,0.99,2005-08-21T10:02:55Z,2020-02-15T06:59:52Z +8606,317,2,14669,2.99,2005-08-21T19:54:06Z,2020-02-15T06:59:52Z +8607,317,1,14791,4.99,2005-08-22T00:35:55Z,2020-02-15T06:59:52Z +8608,317,1,15204,2.99,2005-08-22T16:30:43Z,2020-02-15T06:59:52Z +8609,317,1,15280,4.99,2005-08-22T19:09:52Z,2020-02-15T06:59:52Z +8610,317,1,12574,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8611,318,1,224,9.99,2005-05-26T10:18:27Z,2020-02-15T06:59:52Z +8612,318,1,2634,2.99,2005-06-19T08:55:17Z,2020-02-15T06:59:52Z +8613,318,1,2643,2.99,2005-06-19T09:39:27Z,2020-02-15T06:59:52Z +8614,318,2,3337,0.99,2005-06-21T10:24:35Z,2020-02-15T06:59:52Z +8615,318,2,3376,7.99,2005-06-21T13:43:02Z,2020-02-15T06:59:52Z +8616,318,1,3732,4.99,2005-07-06T11:33:37Z,2020-02-15T06:59:52Z +8617,318,2,3974,2.99,2005-07-06T22:59:16Z,2020-02-15T06:59:52Z +8618,318,1,4356,8.99,2005-07-07T19:21:22Z,2020-02-15T06:59:52Z +8619,318,1,7649,0.99,2005-07-28T01:37:26Z,2020-02-15T06:59:52Z +8620,318,2,7853,0.99,2005-07-28T09:36:38Z,2020-02-15T06:59:52Z +8621,318,2,10023,5.99,2005-07-31T18:25:51Z,2020-02-15T06:59:52Z +8622,318,1,14276,2.99,2005-08-21T06:34:05Z,2020-02-15T06:59:52Z +8623,319,1,15,9.99,2005-05-25T00:39:22Z,2020-02-15T06:59:52Z +8624,319,1,149,3.99,2005-05-26T00:28:05Z,2020-02-15T06:59:52Z +8625,319,1,439,2.99,2005-05-27T17:54:48Z,2020-02-15T06:59:52Z +8626,319,1,1632,2.99,2005-06-16T08:03:42Z,2020-02-15T06:59:52Z +8627,319,1,1892,4.99,2005-06-17T04:17:33Z,2020-02-15T06:59:52Z +8628,319,2,2021,3.99,2005-06-17T12:41:18Z,2020-02-15T06:59:52Z +8629,319,2,2703,4.99,2005-06-19T13:36:06Z,2020-02-15T06:59:52Z +8630,319,2,2884,0.99,2005-06-20T01:31:16Z,2020-02-15T06:59:52Z +8631,319,2,3256,3.99,2005-06-21T03:45:42Z,2020-02-15T06:59:52Z +8632,319,2,4119,3.99,2005-07-07T07:06:03Z,2020-02-15T06:59:52Z +8633,319,2,4295,2.99,2005-07-07T16:08:51Z,2020-02-15T06:59:52Z +8634,319,1,4630,4.99,2005-07-08T08:33:38Z,2020-02-15T06:59:52Z +8635,319,1,5791,8.99,2005-07-10T14:16:22Z,2020-02-15T06:59:52Z +8636,319,1,5882,2.99,2005-07-10T19:20:34Z,2020-02-15T06:59:52Z +8637,319,2,6132,2.99,2005-07-11T08:24:44Z,2020-02-15T06:59:52Z +8638,319,1,6195,4.99,2005-07-11T12:00:32Z,2020-02-15T06:59:52Z +8639,319,1,6255,4.99,2005-07-11T15:11:33Z,2020-02-15T06:59:52Z +8640,319,1,6485,6.99,2005-07-12T02:07:59Z,2020-02-15T06:59:52Z +8641,319,2,7953,2.99,2005-07-28T13:24:32Z,2020-02-15T06:59:52Z +8642,319,2,9017,4.99,2005-07-30T05:26:20Z,2020-02-15T06:59:52Z +8643,319,2,9044,0.99,2005-07-30T06:35:21Z,2020-02-15T06:59:52Z +8644,319,1,11575,0.99,2005-08-17T01:50:26Z,2020-02-15T06:59:52Z +8645,319,2,11598,0.99,2005-08-17T03:03:07Z,2020-02-15T06:59:52Z +8646,319,1,11955,6.99,2005-08-17T17:21:35Z,2020-02-15T06:59:52Z +8647,319,2,11994,2.99,2005-08-17T18:29:35Z,2020-02-15T06:59:52Z +8648,319,1,12018,4.99,2005-08-17T19:44:46Z,2020-02-15T06:59:52Z +8649,319,2,12424,8.99,2005-08-18T10:16:57Z,2020-02-15T06:59:52Z +8650,319,1,13548,3.99,2005-08-20T03:53:20Z,2020-02-15T06:59:52Z +8651,319,2,14828,4.99,2005-08-22T01:34:05Z,2020-02-15T06:59:52Z +8652,319,2,15396,5.99,2005-08-22T23:07:57Z,2020-02-15T06:59:52Z +8653,320,2,1258,4.99,2005-06-15T06:21:30Z,2020-02-15T06:59:52Z +8654,320,2,1484,3.99,2005-06-15T21:22:35Z,2020-02-15T06:59:52Z +8655,320,2,1567,1.99,2005-06-16T03:13:30Z,2020-02-15T06:59:52Z +8656,320,1,2216,4.99,2005-06-18T03:08:17Z,2020-02-15T06:59:52Z +8657,320,2,2883,7.99,2005-06-20T01:29:10Z,2020-02-15T06:59:52Z +8658,320,2,3519,0.99,2005-07-06T00:57:29Z,2020-02-15T06:59:52Z +8659,320,2,3756,4.99,2005-07-06T12:40:38Z,2020-02-15T06:59:52Z +8660,320,2,4173,2.99,2005-07-07T09:57:26Z,2020-02-15T06:59:52Z +8661,320,2,7057,4.99,2005-07-27T03:50:03Z,2020-02-15T06:59:52Z +8662,320,2,7064,3.99,2005-07-27T03:53:29Z,2020-02-15T06:59:52Z +8663,320,2,7930,4.99,2005-07-28T12:21:08Z,2020-02-15T06:59:52Z +8664,320,2,8144,4.99,2005-07-28T20:30:55Z,2020-02-15T06:59:52Z +8665,320,2,8235,4.99,2005-07-29T00:22:56Z,2020-02-15T06:59:52Z +8666,320,1,8238,0.99,2005-07-29T00:30:06Z,2020-02-15T06:59:52Z +8667,320,2,8794,4.99,2005-07-29T20:59:38Z,2020-02-15T06:59:52Z +8668,320,1,9509,0.99,2005-07-31T00:22:42Z,2020-02-15T06:59:52Z +8669,320,1,11208,0.99,2005-08-02T12:02:37Z,2020-02-15T06:59:52Z +8670,320,2,11560,2.99,2005-08-17T01:20:30Z,2020-02-15T06:59:52Z +8671,320,2,14171,0.99,2005-08-21T03:00:42Z,2020-02-15T06:59:52Z +8672,320,1,15302,2.99,2005-08-22T19:44:53Z,2020-02-15T06:59:52Z +8673,321,2,200,4.99,2005-05-26T07:12:21Z,2020-02-15T06:59:52Z +8674,321,1,620,5.99,2005-05-28T15:54:45Z,2020-02-15T06:59:52Z +8675,321,2,818,4.99,2005-05-29T20:47:53Z,2020-02-15T06:59:52Z +8676,321,2,1750,5.99,2005-06-16T16:57:36Z,2020-02-15T06:59:52Z +8677,321,1,3410,0.99,2005-06-21T16:20:47Z,2020-02-15T06:59:52Z +8678,321,2,3901,5.99,2005-07-06T19:24:55Z,2020-02-15T06:59:52Z +8679,321,1,3920,4.99,2005-07-06T20:26:40Z,2020-02-15T06:59:52Z +8680,321,2,4281,4.99,2005-07-07T15:17:50Z,2020-02-15T06:59:52Z +8681,321,1,4318,5.99,2005-07-07T17:47:50Z,2020-02-15T06:59:52Z +8682,321,2,5202,2.99,2005-07-09T10:53:48Z,2020-02-15T06:59:52Z +8683,321,2,5867,8.99,2005-07-10T18:39:01Z,2020-02-15T06:59:52Z +8684,321,2,6190,2.99,2005-07-11T11:36:18Z,2020-02-15T06:59:52Z +8685,321,1,6859,5.99,2005-07-12T19:53:57Z,2020-02-15T06:59:52Z +8686,321,2,8685,6.99,2005-07-29T16:17:05Z,2020-02-15T06:59:52Z +8687,321,1,9981,0.99,2005-07-31T17:08:31Z,2020-02-15T06:59:52Z +8688,321,1,11722,2.99,2005-08-17T07:53:03Z,2020-02-15T06:59:52Z +8689,321,1,12033,6.99,2005-08-17T20:14:34Z,2020-02-15T06:59:52Z +8690,321,2,12034,7.99,2005-08-17T20:15:31Z,2020-02-15T06:59:52Z +8691,321,1,12398,4.99,2005-08-18T09:13:24Z,2020-02-15T06:59:52Z +8692,321,2,13623,6.99,2005-08-20T06:49:46Z,2020-02-15T06:59:52Z +8693,321,1,15673,6.99,2005-08-23T09:12:50Z,2020-02-15T06:59:52Z +8694,321,2,15888,5.99,2005-08-23T16:56:14Z,2020-02-15T06:59:52Z +8695,322,2,166,0.99,2005-05-26T02:49:11Z,2020-02-15T06:59:52Z +8696,322,1,269,4.99,2005-05-26T16:19:46Z,2020-02-15T06:59:52Z +8697,322,1,1386,2.99,2005-06-15T15:38:58Z,2020-02-15T06:59:52Z +8698,322,1,1588,8.99,2005-06-16T04:53:21Z,2020-02-15T06:59:52Z +8699,322,2,2481,4.99,2005-06-18T21:08:30Z,2020-02-15T06:59:52Z +8700,322,1,2554,0.99,2005-06-19T03:05:38Z,2020-02-15T06:59:52Z +8701,322,1,2983,7.99,2005-06-20T08:41:42Z,2020-02-15T06:59:52Z +8702,322,2,3054,5.99,2005-06-20T13:16:41Z,2020-02-15T06:59:52Z +8703,322,2,3413,8.99,2005-06-21T16:57:07Z,2020-02-15T06:59:52Z +8704,322,1,3478,0.99,2005-07-05T23:05:44Z,2020-02-15T06:59:52Z +8705,322,2,3627,1.99,2005-07-06T06:19:25Z,2020-02-15T06:59:52Z +8706,322,1,3646,4.99,2005-07-06T07:28:59Z,2020-02-15T06:59:52Z +8707,322,2,6033,2.99,2005-07-11T02:59:34Z,2020-02-15T06:59:52Z +8708,322,1,6511,3.99,2005-07-12T03:39:29Z,2020-02-15T06:59:52Z +8709,322,2,6673,0.99,2005-07-12T11:50:56Z,2020-02-15T06:59:52Z +8710,322,2,6709,4.99,2005-07-12T13:20:41Z,2020-02-15T06:59:52Z +8711,322,1,7091,4.99,2005-07-27T04:44:10Z,2020-02-15T06:59:52Z +8712,322,2,8142,4.99,2005-07-28T20:21:54Z,2020-02-15T06:59:52Z +8713,322,1,9104,7.99,2005-07-30T08:49:55Z,2020-02-15T06:59:52Z +8714,322,1,9115,4.99,2005-07-30T09:13:55Z,2020-02-15T06:59:52Z +8715,322,1,9252,1.99,2005-07-30T14:19:59Z,2020-02-15T06:59:52Z +8716,322,2,11120,4.99,2005-08-02T08:47:04Z,2020-02-15T06:59:52Z +8717,322,2,11456,0.99,2005-08-02T21:14:04Z,2020-02-15T06:59:52Z +8718,322,2,13180,4.99,2005-08-19T14:00:38Z,2020-02-15T06:59:52Z +8719,322,1,13650,9.99,2005-08-20T07:49:06Z,2020-02-15T06:59:52Z +8720,322,2,14042,4.99,2005-08-20T21:45:51Z,2020-02-15T06:59:52Z +8721,322,1,15450,0.99,2005-08-23T00:56:01Z,2020-02-15T06:59:52Z +8722,322,2,15703,8.99,2005-08-23T10:23:48Z,2020-02-15T06:59:52Z +8723,323,1,58,4.99,2005-05-25T08:53:14Z,2020-02-15T06:59:52Z +8724,323,2,729,2.99,2005-05-29T06:35:13Z,2020-02-15T06:59:52Z +8725,323,1,878,5.99,2005-05-30T05:49:13Z,2020-02-15T06:59:52Z +8726,323,2,1167,0.99,2005-06-14T23:25:58Z,2020-02-15T06:59:52Z +8727,323,2,1786,2.99,2005-06-16T19:30:54Z,2020-02-15T06:59:52Z +8728,323,1,2933,4.99,2005-06-20T04:52:23Z,2020-02-15T06:59:52Z +8729,323,2,3704,6.99,2005-07-06T10:16:45Z,2020-02-15T06:59:52Z +8730,323,2,4572,1.99,2005-07-08T05:36:59Z,2020-02-15T06:59:52Z +8731,323,2,5669,4.99,2005-07-10T08:12:53Z,2020-02-15T06:59:52Z +8732,323,2,5906,1.99,2005-07-10T20:41:41Z,2020-02-15T06:59:52Z +8733,323,1,6840,3.99,2005-07-12T19:03:22Z,2020-02-15T06:59:52Z +8734,323,2,7146,7.99,2005-07-27T07:02:30Z,2020-02-15T06:59:52Z +8735,323,2,7275,2.99,2005-07-27T11:39:08Z,2020-02-15T06:59:52Z +8736,323,2,7695,5.99,2005-07-28T03:41:13Z,2020-02-15T06:59:52Z +8737,323,1,7847,1.99,2005-07-28T09:23:14Z,2020-02-15T06:59:52Z +8738,323,2,7937,4.99,2005-07-28T12:38:22Z,2020-02-15T06:59:52Z +8739,323,2,8474,0.99,2005-07-29T08:36:56Z,2020-02-15T06:59:52Z +8740,323,1,8790,0.99,2005-07-29T20:51:41Z,2020-02-15T06:59:52Z +8741,323,1,9363,2.99,2005-07-30T18:44:23Z,2020-02-15T06:59:52Z +8742,323,2,10002,4.99,2005-07-31T17:48:16Z,2020-02-15T06:59:52Z +8743,323,1,10028,4.99,2005-07-31T18:35:54Z,2020-02-15T06:59:52Z +8744,323,1,10298,0.99,2005-08-01T04:06:03Z,2020-02-15T06:59:52Z +8745,323,1,10994,3.99,2005-08-02T04:46:53Z,2020-02-15T06:59:52Z +8746,323,2,11548,0.99,2005-08-17T00:59:47Z,2020-02-15T06:59:52Z +8747,323,1,12120,4.99,2005-08-17T23:16:46Z,2020-02-15T06:59:52Z +8748,323,1,12169,2.99,2005-08-18T01:05:54Z,2020-02-15T06:59:52Z +8749,323,1,13140,5.99,2005-08-19T12:35:56Z,2020-02-15T06:59:52Z +8750,323,1,14224,2.99,2005-08-21T04:53:08Z,2020-02-15T06:59:52Z +8751,323,1,14957,3.99,2005-08-22T06:29:34Z,2020-02-15T06:59:52Z +8752,323,1,15387,4.99,2005-08-22T22:49:13Z,2020-02-15T06:59:52Z +8753,323,1,15728,0.99,2005-08-23T11:30:32Z,2020-02-15T06:59:52Z +8754,324,2,563,3.99,2005-05-28T09:10:49Z,2020-02-15T06:59:52Z +8755,324,1,1740,0.99,2005-06-16T16:29:00Z,2020-02-15T06:59:52Z +8756,324,2,2590,2.99,2005-06-19T05:31:40Z,2020-02-15T06:59:52Z +8757,324,1,3947,4.99,2005-07-06T21:42:21Z,2020-02-15T06:59:52Z +8758,324,1,4197,0.99,2005-07-07T11:07:52Z,2020-02-15T06:59:52Z +8759,324,2,4368,4.99,2005-07-07T19:55:19Z,2020-02-15T06:59:52Z +8760,324,2,5702,2.99,2005-07-10T10:00:01Z,2020-02-15T06:59:52Z +8761,324,1,5778,0.99,2005-07-10T13:41:37Z,2020-02-15T06:59:52Z +8762,324,1,6034,2.99,2005-07-11T03:00:50Z,2020-02-15T06:59:52Z +8763,324,2,6299,4.99,2005-07-11T17:45:08Z,2020-02-15T06:59:52Z +8764,324,2,7240,3.99,2005-07-27T10:21:15Z,2020-02-15T06:59:52Z +8765,324,1,7263,7.99,2005-07-27T11:17:22Z,2020-02-15T06:59:52Z +8766,324,2,7960,6.99,2005-07-28T13:47:08Z,2020-02-15T06:59:52Z +8767,324,1,8698,3.99,2005-07-29T16:52:17Z,2020-02-15T06:59:52Z +8768,324,1,9651,4.99,2005-07-31T05:48:49Z,2020-02-15T06:59:52Z +8769,324,2,10212,2.99,2005-08-01T01:01:35Z,2020-02-15T06:59:52Z +8770,324,1,11617,2.99,2005-08-17T04:00:40Z,2020-02-15T06:59:52Z +8771,324,1,11771,6.99,2005-08-17T10:17:09Z,2020-02-15T06:59:52Z +8772,324,2,12543,2.99,2005-08-18T14:23:55Z,2020-02-15T06:59:52Z +8773,324,2,13356,0.99,2005-08-19T21:02:21Z,2020-02-15T06:59:52Z +8774,324,1,13386,2.99,2005-08-19T21:43:58Z,2020-02-15T06:59:52Z +8775,324,1,14262,8.99,2005-08-21T06:08:13Z,2020-02-15T06:59:52Z +8776,324,2,14479,7.99,2005-08-21T13:35:54Z,2020-02-15T06:59:52Z +8777,324,1,15263,4.99,2005-08-22T18:27:33Z,2020-02-15T06:59:52Z +8778,324,2,13965,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8779,325,1,131,5.99,2005-05-25T21:42:46Z,2020-02-15T06:59:52Z +8780,325,2,2502,4.99,2005-06-18T23:12:13Z,2020-02-15T06:59:52Z +8781,325,2,2507,4.99,2005-06-18T23:39:22Z,2020-02-15T06:59:52Z +8782,325,2,2808,2.99,2005-06-19T19:34:45Z,2020-02-15T06:59:52Z +8783,325,1,5470,5.99,2005-07-09T23:10:49Z,2020-02-15T06:59:52Z +8784,325,2,5740,2.99,2005-07-10T11:51:58Z,2020-02-15T06:59:52Z +8785,325,1,5775,4.99,2005-07-10T13:34:26Z,2020-02-15T06:59:52Z +8786,325,2,6135,4.99,2005-07-11T08:32:23Z,2020-02-15T06:59:52Z +8787,325,2,6622,0.99,2005-07-12T09:04:11Z,2020-02-15T06:59:52Z +8788,325,2,7223,9.99,2005-07-27T09:42:27Z,2020-02-15T06:59:52Z +8789,325,2,7687,2.99,2005-07-28T03:20:26Z,2020-02-15T06:59:52Z +8790,325,2,8539,0.99,2005-07-29T10:48:24Z,2020-02-15T06:59:52Z +8791,325,2,10030,2.99,2005-07-31T18:39:36Z,2020-02-15T06:59:52Z +8792,325,1,10070,4.99,2005-07-31T19:46:29Z,2020-02-15T06:59:52Z +8793,325,2,10326,4.99,2005-08-01T04:55:34Z,2020-02-15T06:59:52Z +8794,325,1,10412,0.99,2005-08-01T07:57:16Z,2020-02-15T06:59:52Z +8795,325,2,12097,4.99,2005-08-17T22:35:24Z,2020-02-15T06:59:52Z +8796,325,1,12779,3.99,2005-08-18T23:44:00Z,2020-02-15T06:59:52Z +8797,325,2,13054,4.99,2005-08-19T09:34:02Z,2020-02-15T06:59:52Z +8798,325,2,14452,3.99,2005-08-21T12:23:20Z,2020-02-15T06:59:52Z +8799,325,1,14672,5.99,2005-08-21T19:59:33Z,2020-02-15T06:59:52Z +8800,325,2,15009,0.99,2005-08-22T08:27:27Z,2020-02-15T06:59:52Z +8801,326,1,875,6.99,2005-05-30T05:38:24Z,2020-02-15T06:59:52Z +8802,326,2,981,4.99,2005-05-30T21:52:42Z,2020-02-15T06:59:52Z +8803,326,2,1149,3.99,2005-05-31T21:03:17Z,2020-02-15T06:59:52Z +8804,326,1,1311,4.99,2005-06-15T10:11:59Z,2020-02-15T06:59:52Z +8805,326,2,2086,0.99,2005-06-17T17:32:07Z,2020-02-15T06:59:52Z +8806,326,2,2317,4.99,2005-06-18T09:12:18Z,2020-02-15T06:59:52Z +8807,326,1,3441,4.99,2005-06-21T20:00:12Z,2020-02-15T06:59:52Z +8808,326,2,3886,0.99,2005-07-06T18:44:24Z,2020-02-15T06:59:52Z +8809,326,1,4160,7.99,2005-07-07T09:13:17Z,2020-02-15T06:59:52Z +8810,326,1,5147,5.99,2005-07-09T08:17:41Z,2020-02-15T06:59:52Z +8811,326,1,7117,2.99,2005-07-27T05:48:36Z,2020-02-15T06:59:52Z +8812,326,2,7725,2.99,2005-07-28T04:47:14Z,2020-02-15T06:59:52Z +8813,326,2,7931,4.99,2005-07-28T12:23:41Z,2020-02-15T06:59:52Z +8814,326,1,8467,5.99,2005-07-29T08:25:35Z,2020-02-15T06:59:52Z +8815,326,1,8604,4.99,2005-07-29T13:07:13Z,2020-02-15T06:59:52Z +8816,326,2,8739,2.99,2005-07-29T18:34:33Z,2020-02-15T06:59:52Z +8817,326,2,9855,0.99,2005-07-31T13:00:33Z,2020-02-15T06:59:52Z +8818,326,1,10108,0.99,2005-07-31T21:02:14Z,2020-02-15T06:59:52Z +8819,326,2,10173,4.99,2005-07-31T23:36:59Z,2020-02-15T06:59:52Z +8820,326,2,10720,0.99,2005-08-01T19:04:33Z,2020-02-15T06:59:52Z +8821,326,2,10976,4.99,2005-08-02T04:11:48Z,2020-02-15T06:59:52Z +8822,326,2,11010,0.99,2005-08-02T05:06:27Z,2020-02-15T06:59:52Z +8823,326,2,11428,2.99,2005-08-02T20:03:10Z,2020-02-15T06:59:52Z +8824,326,2,11485,4.99,2005-08-02T22:33:25Z,2020-02-15T06:59:52Z +8825,326,2,12829,2.99,2005-08-19T01:38:18Z,2020-02-15T06:59:52Z +8826,327,1,653,6.99,2005-05-28T20:12:20Z,2020-02-15T06:59:52Z +8827,327,1,1294,4.99,2005-06-15T09:09:27Z,2020-02-15T06:59:52Z +8828,327,2,1577,3.99,2005-06-16T04:03:28Z,2020-02-15T06:59:52Z +8829,327,2,1929,6.99,2005-06-17T06:49:30Z,2020-02-15T06:59:52Z +8830,327,1,2273,4.99,2005-06-18T06:30:02Z,2020-02-15T06:59:52Z +8831,327,2,2304,5.99,2005-06-18T08:30:15Z,2020-02-15T06:59:52Z +8832,327,2,2637,3.99,2005-06-19T09:20:56Z,2020-02-15T06:59:52Z +8833,327,1,4445,4.99,2005-07-07T23:08:22Z,2020-02-15T06:59:52Z +8834,327,1,4521,0.99,2005-07-08T02:57:56Z,2020-02-15T06:59:52Z +8835,327,1,6618,2.99,2005-07-12T08:41:42Z,2020-02-15T06:59:52Z +8836,327,2,7458,1.99,2005-07-27T18:36:17Z,2020-02-15T06:59:52Z +8837,327,2,7808,1.99,2005-07-28T07:58:56Z,2020-02-15T06:59:52Z +8838,327,1,10371,0.99,2005-08-01T06:20:29Z,2020-02-15T06:59:52Z +8839,327,1,11372,4.99,2005-08-02T18:10:50Z,2020-02-15T06:59:52Z +8840,327,2,11929,6.99,2005-08-17T16:28:51Z,2020-02-15T06:59:52Z +8841,327,1,12016,0.99,2005-08-17T19:33:24Z,2020-02-15T06:59:52Z +8842,327,2,13158,2.99,2005-08-19T13:18:10Z,2020-02-15T06:59:52Z +8843,327,1,13360,4.99,2005-08-19T21:05:11Z,2020-02-15T06:59:52Z +8844,327,1,13448,0.99,2005-08-20T00:12:43Z,2020-02-15T06:59:52Z +8845,327,1,14847,4.99,2005-08-22T02:13:51Z,2020-02-15T06:59:52Z +8846,327,2,15365,3.99,2005-08-22T21:42:17Z,2020-02-15T06:59:52Z +8847,327,1,15386,2.99,2005-08-22T22:41:14Z,2020-02-15T06:59:52Z +8848,327,1,15828,5.99,2005-08-23T15:16:32Z,2020-02-15T06:59:52Z +8849,327,1,15916,9.99,2005-08-23T17:56:01Z,2020-02-15T06:59:52Z +8850,327,2,15969,7.99,2005-08-23T19:51:30Z,2020-02-15T06:59:52Z +8851,327,1,15297,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8852,328,2,862,2.99,2005-05-30T03:09:11Z,2020-02-15T06:59:52Z +8853,328,2,1670,2.99,2005-06-16T10:26:33Z,2020-02-15T06:59:52Z +8854,328,2,1980,6.99,2005-06-17T09:48:05Z,2020-02-15T06:59:52Z +8855,328,2,2243,5.99,2005-06-18T04:33:03Z,2020-02-15T06:59:52Z +8856,328,1,3024,4.99,2005-06-20T11:29:17Z,2020-02-15T06:59:52Z +8857,328,1,3239,0.99,2005-06-21T02:48:40Z,2020-02-15T06:59:52Z +8858,328,1,5450,4.99,2005-07-09T22:13:25Z,2020-02-15T06:59:52Z +8859,328,1,8017,1.99,2005-07-28T15:35:41Z,2020-02-15T06:59:52Z +8860,328,1,8577,6.99,2005-07-29T11:56:30Z,2020-02-15T06:59:52Z +8861,328,2,8780,4.99,2005-07-29T20:19:45Z,2020-02-15T06:59:52Z +8862,328,2,9557,2.99,2005-07-31T02:14:01Z,2020-02-15T06:59:52Z +8863,328,1,9835,2.99,2005-07-31T12:07:35Z,2020-02-15T06:59:52Z +8864,328,1,11174,2.99,2005-08-02T10:32:11Z,2020-02-15T06:59:52Z +8865,328,1,12175,4.99,2005-08-18T01:10:17Z,2020-02-15T06:59:52Z +8866,328,2,12825,0.99,2005-08-19T01:23:58Z,2020-02-15T06:59:52Z +8867,328,1,13609,2.99,2005-08-20T06:11:51Z,2020-02-15T06:59:52Z +8868,328,2,13681,7.99,2005-08-20T08:47:37Z,2020-02-15T06:59:52Z +8869,328,1,13907,3.99,2005-08-20T16:17:27Z,2020-02-15T06:59:52Z +8870,328,2,14307,3.99,2005-08-21T07:34:52Z,2020-02-15T06:59:52Z +8871,328,1,14755,3.99,2005-08-21T23:18:08Z,2020-02-15T06:59:52Z +8872,328,2,14939,2.99,2005-08-22T05:53:52Z,2020-02-15T06:59:52Z +8873,328,1,15179,4.99,2005-08-22T15:36:22Z,2020-02-15T06:59:52Z +8874,328,1,15863,0.99,2005-08-23T16:17:09Z,2020-02-15T06:59:52Z +8875,329,1,1183,2.99,2005-06-15T00:49:19Z,2020-02-15T06:59:52Z +8876,329,1,2010,5.99,2005-06-17T11:54:15Z,2020-02-15T06:59:52Z +8877,329,2,2024,0.99,2005-06-17T13:00:51Z,2020-02-15T06:59:52Z +8878,329,1,2151,0.99,2005-06-17T22:52:37Z,2020-02-15T06:59:52Z +8879,329,1,2303,2.99,2005-06-18T08:27:59Z,2020-02-15T06:59:52Z +8880,329,2,2702,2.99,2005-06-19T13:35:56Z,2020-02-15T06:59:52Z +8881,329,1,3052,5.99,2005-06-20T13:09:19Z,2020-02-15T06:59:52Z +8882,329,2,3053,0.99,2005-06-20T13:10:30Z,2020-02-15T06:59:52Z +8883,329,2,3268,4.99,2005-06-21T04:55:49Z,2020-02-15T06:59:52Z +8884,329,2,3976,2.99,2005-07-06T23:00:20Z,2020-02-15T06:59:52Z +8885,329,2,4076,4.99,2005-07-07T04:52:15Z,2020-02-15T06:59:52Z +8886,329,1,4415,4.99,2005-07-07T22:01:43Z,2020-02-15T06:59:52Z +8887,329,1,4465,1.99,2005-07-08T00:07:45Z,2020-02-15T06:59:52Z +8888,329,2,4674,2.99,2005-07-08T10:19:28Z,2020-02-15T06:59:52Z +8889,329,1,7980,4.99,2005-07-28T14:16:49Z,2020-02-15T06:59:52Z +8890,329,2,8172,7.99,2005-07-28T21:34:36Z,2020-02-15T06:59:52Z +8891,329,1,8460,6.99,2005-07-29T08:08:03Z,2020-02-15T06:59:52Z +8892,329,2,8941,0.99,2005-07-30T02:59:21Z,2020-02-15T06:59:52Z +8893,329,2,9024,4.99,2005-07-30T05:44:42Z,2020-02-15T06:59:52Z +8894,329,2,9219,0.99,2005-07-30T13:15:21Z,2020-02-15T06:59:52Z +8895,329,1,9381,0.99,2005-07-30T19:23:04Z,2020-02-15T06:59:52Z +8896,329,1,9827,6.99,2005-07-31T11:56:55Z,2020-02-15T06:59:52Z +8897,329,1,10473,7.99,2005-08-01T09:56:24Z,2020-02-15T06:59:52Z +8898,329,2,10490,0.99,2005-08-01T10:37:11Z,2020-02-15T06:59:52Z +8899,329,1,11130,2.99,2005-08-02T09:08:59Z,2020-02-15T06:59:52Z +8900,329,2,11169,3.99,2005-08-02T10:19:42Z,2020-02-15T06:59:52Z +8901,329,2,11697,0.99,2005-08-17T07:09:19Z,2020-02-15T06:59:52Z +8902,329,1,12659,6.99,2005-08-18T19:05:49Z,2020-02-15T06:59:52Z +8903,329,1,13627,8.99,2005-08-20T06:59:00Z,2020-02-15T06:59:52Z +8904,329,1,14900,4.99,2005-08-22T04:27:48Z,2020-02-15T06:59:52Z +8905,329,2,15011,4.99,2005-08-22T08:31:07Z,2020-02-15T06:59:52Z +8906,329,1,15308,2.99,2005-08-22T19:54:31Z,2020-02-15T06:59:52Z +8907,330,1,704,3.99,2005-05-29T02:44:43Z,2020-02-15T06:59:52Z +8908,330,2,967,7.99,2005-05-30T19:12:06Z,2020-02-15T06:59:52Z +8909,330,1,1219,6.99,2005-06-15T03:25:59Z,2020-02-15T06:59:52Z +8910,330,2,1511,5.99,2005-06-15T22:45:06Z,2020-02-15T06:59:52Z +8911,330,2,2885,0.99,2005-06-20T01:33:42Z,2020-02-15T06:59:52Z +8912,330,1,2936,4.99,2005-06-20T05:09:27Z,2020-02-15T06:59:52Z +8913,330,2,3061,2.99,2005-06-20T13:48:21Z,2020-02-15T06:59:52Z +8914,330,2,3603,4.99,2005-07-06T05:25:03Z,2020-02-15T06:59:53Z +8915,330,2,3659,2.99,2005-07-06T08:03:14Z,2020-02-15T06:59:53Z +8916,330,2,3760,2.99,2005-07-06T12:49:28Z,2020-02-15T06:59:53Z +8917,330,1,4124,1.99,2005-07-07T07:19:54Z,2020-02-15T06:59:53Z +8918,330,2,5149,2.99,2005-07-09T08:28:23Z,2020-02-15T06:59:53Z +8919,330,1,5750,5.99,2005-07-10T12:20:41Z,2020-02-15T06:59:53Z +8920,330,1,6656,0.99,2005-07-12T11:09:47Z,2020-02-15T06:59:53Z +8921,330,2,6678,2.99,2005-07-12T11:58:36Z,2020-02-15T06:59:53Z +8922,330,1,6719,2.99,2005-07-12T13:40:37Z,2020-02-15T06:59:53Z +8923,330,2,7894,2.99,2005-07-28T10:53:58Z,2020-02-15T06:59:53Z +8924,330,1,8680,4.99,2005-07-29T16:08:03Z,2020-02-15T06:59:53Z +8925,330,2,10100,4.99,2005-07-31T20:47:18Z,2020-02-15T06:59:53Z +8926,330,2,11259,3.99,2005-08-02T13:46:30Z,2020-02-15T06:59:53Z +8927,330,1,12062,2.99,2005-08-17T21:24:47Z,2020-02-15T06:59:53Z +8928,330,1,12394,2.99,2005-08-18T09:05:15Z,2020-02-15T06:59:53Z +8929,330,1,12740,4.99,2005-08-18T22:17:04Z,2020-02-15T06:59:53Z +8930,330,1,12867,0.99,2005-08-19T02:40:11Z,2020-02-15T06:59:53Z +8931,330,2,11709,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +8932,331,2,87,0.99,2005-05-25T13:52:43Z,2020-02-15T06:59:53Z +8933,331,1,996,2.99,2005-05-31T00:06:20Z,2020-02-15T06:59:53Z +8934,331,1,1415,2.99,2005-06-15T17:31:57Z,2020-02-15T06:59:53Z +8935,331,2,2528,6.99,2005-06-19T01:14:12Z,2020-02-15T06:59:53Z +8936,331,1,2587,2.99,2005-06-19T05:06:14Z,2020-02-15T06:59:53Z +8937,331,1,3505,4.99,2005-07-06T00:19:32Z,2020-02-15T06:59:53Z +8938,331,1,3613,4.99,2005-07-06T05:45:53Z,2020-02-15T06:59:53Z +8939,331,2,3871,8.99,2005-07-06T17:58:51Z,2020-02-15T06:59:53Z +8940,331,1,4051,4.99,2005-07-07T03:37:28Z,2020-02-15T06:59:53Z +8941,331,2,4063,5.99,2005-07-07T04:23:57Z,2020-02-15T06:59:53Z +8942,331,1,4326,10.99,2005-07-07T18:01:22Z,2020-02-15T06:59:53Z +8943,331,1,5152,2.99,2005-07-09T08:34:44Z,2020-02-15T06:59:53Z +8944,331,1,5885,1.99,2005-07-10T19:33:50Z,2020-02-15T06:59:53Z +8945,331,1,5947,5.99,2005-07-10T23:07:42Z,2020-02-15T06:59:53Z +8946,331,1,8231,0.99,2005-07-29T00:14:37Z,2020-02-15T06:59:53Z +8947,331,2,8995,4.99,2005-07-30T04:53:11Z,2020-02-15T06:59:53Z +8948,331,1,9401,5.99,2005-07-30T20:18:19Z,2020-02-15T06:59:53Z +8949,331,2,10188,6.99,2005-08-01T00:19:41Z,2020-02-15T06:59:53Z +8950,331,1,11052,5.99,2005-08-02T06:26:19Z,2020-02-15T06:59:53Z +8951,331,1,11362,2.99,2005-08-02T17:47:25Z,2020-02-15T06:59:53Z +8952,331,2,12533,4.99,2005-08-18T14:01:40Z,2020-02-15T06:59:53Z +8953,331,1,13795,0.99,2005-08-20T12:32:09Z,2020-02-15T06:59:53Z +8954,331,1,14256,7.99,2005-08-21T05:52:27Z,2020-02-15T06:59:53Z +8955,331,1,14628,1.99,2005-08-21T18:37:24Z,2020-02-15T06:59:53Z +8956,331,1,15339,2.99,2005-08-22T20:52:12Z,2020-02-15T06:59:53Z +8957,331,2,15447,3.99,2005-08-23T00:53:57Z,2020-02-15T06:59:53Z +8958,331,1,15521,2.99,2005-08-23T03:30:51Z,2020-02-15T06:59:53Z +8959,332,2,600,3.99,2005-05-28T14:08:19Z,2020-02-15T06:59:53Z +8960,332,1,1000,6.99,2005-05-31T00:25:56Z,2020-02-15T06:59:53Z +8961,332,1,4100,6.99,2005-07-07T06:20:52Z,2020-02-15T06:59:53Z +8962,332,1,4302,6.99,2005-07-07T16:47:53Z,2020-02-15T06:59:53Z +8963,332,2,5116,2.99,2005-07-09T07:10:12Z,2020-02-15T06:59:53Z +8964,332,1,5277,1.99,2005-07-09T14:40:42Z,2020-02-15T06:59:53Z +8965,332,2,5381,2.99,2005-07-09T19:11:11Z,2020-02-15T06:59:53Z +8966,332,2,5388,0.99,2005-07-09T19:25:25Z,2020-02-15T06:59:53Z +8967,332,1,5440,0.99,2005-07-09T21:45:17Z,2020-02-15T06:59:53Z +8968,332,2,7049,7.99,2005-07-27T03:32:41Z,2020-02-15T06:59:53Z +8969,332,2,7418,2.99,2005-07-27T16:59:09Z,2020-02-15T06:59:53Z +8970,332,2,7577,8.99,2005-07-27T22:56:07Z,2020-02-15T06:59:53Z +8971,332,2,7578,4.99,2005-07-27T22:58:17Z,2020-02-15T06:59:53Z +8972,332,2,7934,8.99,2005-07-28T12:33:10Z,2020-02-15T06:59:53Z +8973,332,2,8173,6.99,2005-07-28T21:35:44Z,2020-02-15T06:59:53Z +8974,332,1,9324,1.99,2005-07-30T17:28:52Z,2020-02-15T06:59:53Z +8975,332,1,9388,5.99,2005-07-30T19:27:22Z,2020-02-15T06:59:53Z +8976,332,1,9921,0.99,2005-07-31T14:59:21Z,2020-02-15T06:59:53Z +8977,332,1,10026,4.99,2005-07-31T18:31:51Z,2020-02-15T06:59:53Z +8978,332,1,10307,0.99,2005-08-01T04:21:54Z,2020-02-15T06:59:53Z +8979,332,2,10439,0.99,2005-08-01T08:54:26Z,2020-02-15T06:59:53Z +8980,332,1,11229,5.99,2005-08-02T12:56:37Z,2020-02-15T06:59:53Z +8981,332,2,11564,2.99,2005-08-17T01:27:49Z,2020-02-15T06:59:53Z +8982,332,2,12318,4.99,2005-08-18T06:21:56Z,2020-02-15T06:59:53Z +8983,332,2,13673,2.99,2005-08-20T08:27:30Z,2020-02-15T06:59:53Z +8984,332,2,14783,4.99,2005-08-22T00:21:57Z,2020-02-15T06:59:53Z +8985,332,2,15194,0.99,2005-08-22T16:07:34Z,2020-02-15T06:59:53Z +8986,332,1,15210,3.99,2005-08-22T16:37:36Z,2020-02-15T06:59:53Z +8987,333,1,4,4.99,2005-05-24T23:04:41Z,2020-02-15T06:59:53Z +8988,333,1,1667,2.99,2005-06-16T10:18:59Z,2020-02-15T06:59:53Z +8989,333,1,2149,6.99,2005-06-17T22:50:00Z,2020-02-15T06:59:53Z +8990,333,1,2929,1.99,2005-06-20T04:47:39Z,2020-02-15T06:59:53Z +8991,333,1,3110,2.99,2005-06-20T17:40:12Z,2020-02-15T06:59:53Z +8992,333,2,5032,0.99,2005-07-09T02:39:47Z,2020-02-15T06:59:53Z +8993,333,1,5645,1.99,2005-07-10T06:58:21Z,2020-02-15T06:59:53Z +8994,333,2,5892,4.99,2005-07-10T20:02:42Z,2020-02-15T06:59:53Z +8995,333,2,6275,0.99,2005-07-11T16:12:11Z,2020-02-15T06:59:53Z +8996,333,2,6931,4.99,2005-07-26T23:02:57Z,2020-02-15T06:59:53Z +8997,333,2,6958,0.99,2005-07-27T00:02:41Z,2020-02-15T06:59:53Z +8998,333,2,7076,6.99,2005-07-27T04:12:14Z,2020-02-15T06:59:53Z +8999,333,2,7246,0.99,2005-07-27T10:30:41Z,2020-02-15T06:59:53Z +9000,333,1,8719,4.99,2005-07-29T17:45:45Z,2020-02-15T06:59:53Z +9001,333,2,9148,4.99,2005-07-30T10:39:10Z,2020-02-15T06:59:53Z +9002,333,2,9338,10.99,2005-07-30T18:03:13Z,2020-02-15T06:59:53Z +9003,333,2,10035,4.99,2005-07-31T18:46:46Z,2020-02-15T06:59:53Z +9004,333,1,10062,2.99,2005-07-31T19:24:55Z,2020-02-15T06:59:53Z +9005,333,2,10844,4.99,2005-08-01T23:46:58Z,2020-02-15T06:59:53Z +9006,333,1,12427,6.99,2005-08-18T10:24:17Z,2020-02-15T06:59:53Z +9007,333,2,12661,0.99,2005-08-18T19:10:10Z,2020-02-15T06:59:53Z +9008,333,1,13579,3.99,2005-08-20T05:22:06Z,2020-02-15T06:59:53Z +9009,333,2,13710,4.99,2005-08-20T09:35:20Z,2020-02-15T06:59:53Z +9010,333,1,14057,4.99,2005-08-20T22:22:59Z,2020-02-15T06:59:53Z +9011,333,1,14740,2.99,2005-08-21T22:35:33Z,2020-02-15T06:59:53Z +9012,333,2,15253,2.99,2005-08-22T18:05:21Z,2020-02-15T06:59:53Z +9013,333,1,15313,4.99,2005-08-22T19:59:42Z,2020-02-15T06:59:53Z +9014,334,1,13,6.99,2005-05-25T00:22:55Z,2020-02-15T06:59:53Z +9015,334,1,431,8.99,2005-05-27T16:31:05Z,2020-02-15T06:59:53Z +9016,334,2,1187,4.99,2005-06-15T00:58:50Z,2020-02-15T06:59:53Z +9017,334,1,1298,4.99,2005-06-15T09:32:53Z,2020-02-15T06:59:53Z +9018,334,2,2476,0.99,2005-06-18T20:57:12Z,2020-02-15T06:59:53Z +9019,334,1,3662,4.99,2005-07-06T08:11:48Z,2020-02-15T06:59:53Z +9020,334,1,4603,6.99,2005-07-08T06:57:07Z,2020-02-15T06:59:53Z +9021,334,2,5014,4.99,2005-07-09T01:51:49Z,2020-02-15T06:59:53Z +9022,334,2,5434,0.99,2005-07-09T21:25:20Z,2020-02-15T06:59:53Z +9023,334,2,5818,5.99,2005-07-10T15:51:12Z,2020-02-15T06:59:53Z +9024,334,1,5845,4.99,2005-07-10T17:23:14Z,2020-02-15T06:59:53Z +9025,334,2,6641,5.99,2005-07-12T10:33:14Z,2020-02-15T06:59:53Z +9026,334,2,6749,4.99,2005-07-12T14:43:05Z,2020-02-15T06:59:53Z +9027,334,1,6987,2.99,2005-07-27T00:59:50Z,2020-02-15T06:59:53Z +9028,334,1,8977,7.99,2005-07-30T04:14:07Z,2020-02-15T06:59:53Z +9029,334,1,9633,2.99,2005-07-31T05:04:08Z,2020-02-15T06:59:53Z +9030,334,1,10207,3.99,2005-08-01T00:53:01Z,2020-02-15T06:59:53Z +9031,334,1,10408,4.99,2005-08-01T07:42:10Z,2020-02-15T06:59:53Z +9032,334,1,10492,2.99,2005-08-01T10:42:28Z,2020-02-15T06:59:53Z +9033,334,1,10879,1.99,2005-08-02T00:33:20Z,2020-02-15T06:59:53Z +9034,334,2,10997,7.99,2005-08-02T04:49:02Z,2020-02-15T06:59:53Z +9035,334,2,12677,4.99,2005-08-18T19:36:05Z,2020-02-15T06:59:53Z +9036,334,2,13325,4.99,2005-08-19T19:52:02Z,2020-02-15T06:59:53Z +9037,334,1,13876,2.99,2005-08-20T15:15:28Z,2020-02-15T06:59:53Z +9038,334,1,14645,0.99,2005-08-21T19:12:47Z,2020-02-15T06:59:53Z +9039,334,1,14984,7.99,2005-08-22T07:35:31Z,2020-02-15T06:59:53Z +9040,334,2,15548,0.99,2005-08-23T04:26:20Z,2020-02-15T06:59:53Z +9041,334,2,15656,4.99,2005-08-23T08:38:58Z,2020-02-15T06:59:53Z +9042,334,1,15669,3.99,2005-08-23T09:06:17Z,2020-02-15T06:59:53Z +9043,334,1,14219,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9044,335,1,3329,4.99,2005-06-21T09:20:31Z,2020-02-15T06:59:53Z +9045,335,1,3607,0.99,2005-07-06T05:30:09Z,2020-02-15T06:59:53Z +9046,335,2,4016,0.99,2005-07-07T01:05:50Z,2020-02-15T06:59:53Z +9047,335,2,4032,2.99,2005-07-07T02:34:13Z,2020-02-15T06:59:53Z +9048,335,1,4279,4.99,2005-07-07T15:01:53Z,2020-02-15T06:59:53Z +9049,335,1,4387,8.99,2005-07-07T20:56:47Z,2020-02-15T06:59:53Z +9050,335,1,5024,4.99,2005-07-09T02:25:12Z,2020-02-15T06:59:53Z +9051,335,1,5252,0.99,2005-07-09T13:40:44Z,2020-02-15T06:59:53Z +9052,335,2,5728,2.99,2005-07-10T11:26:14Z,2020-02-15T06:59:53Z +9053,335,1,6624,7.99,2005-07-12T09:05:50Z,2020-02-15T06:59:53Z +9054,335,1,6906,0.99,2005-07-12T22:03:02Z,2020-02-15T06:59:53Z +9055,335,2,8634,3.99,2005-07-29T14:19:57Z,2020-02-15T06:59:53Z +9056,335,1,8855,2.99,2005-07-29T23:40:10Z,2020-02-15T06:59:53Z +9057,335,1,9125,5.99,2005-07-30T09:43:39Z,2020-02-15T06:59:53Z +9058,335,2,9361,4.99,2005-07-30T18:43:49Z,2020-02-15T06:59:53Z +9059,335,1,9428,0.99,2005-07-30T21:18:37Z,2020-02-15T06:59:53Z +9060,335,2,10606,4.99,2005-08-01T14:39:15Z,2020-02-15T06:59:53Z +9061,335,2,13267,0.99,2005-08-19T17:31:36Z,2020-02-15T06:59:53Z +9062,335,1,13622,1.99,2005-08-20T06:45:32Z,2020-02-15T06:59:53Z +9063,335,1,14014,2.99,2005-08-20T20:47:09Z,2020-02-15T06:59:53Z +9064,335,2,15005,4.99,2005-08-22T08:15:44Z,2020-02-15T06:59:53Z +9065,335,2,15101,0.99,2005-08-22T11:56:02Z,2020-02-15T06:59:53Z +9066,335,2,11541,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9067,336,1,1478,2.99,2005-06-15T21:12:13Z,2020-02-15T06:59:53Z +9068,336,2,2212,2.99,2005-06-18T02:36:10Z,2020-02-15T06:59:53Z +9069,336,2,2475,2.99,2005-06-18T20:52:46Z,2020-02-15T06:59:53Z +9070,336,1,2575,2.99,2005-06-19T04:32:52Z,2020-02-15T06:59:53Z +9071,336,2,2719,4.99,2005-06-19T14:50:19Z,2020-02-15T06:59:53Z +9072,336,1,2954,2.99,2005-06-20T06:45:00Z,2020-02-15T06:59:53Z +9073,336,2,3204,4.99,2005-06-21T00:37:50Z,2020-02-15T06:59:53Z +9074,336,2,3349,0.99,2005-06-21T11:17:35Z,2020-02-15T06:59:53Z +9075,336,2,4323,5.99,2005-07-07T17:55:53Z,2020-02-15T06:59:53Z +9076,336,1,4595,2.99,2005-07-08T06:40:25Z,2020-02-15T06:59:53Z +9077,336,2,5649,2.99,2005-07-10T07:15:07Z,2020-02-15T06:59:53Z +9078,336,2,5667,0.99,2005-07-10T08:11:03Z,2020-02-15T06:59:53Z +9079,336,2,6263,4.99,2005-07-11T15:33:50Z,2020-02-15T06:59:53Z +9080,336,2,6382,6.99,2005-07-11T21:58:53Z,2020-02-15T06:59:53Z +9081,336,2,8275,4.99,2005-07-29T01:35:47Z,2020-02-15T06:59:53Z +9082,336,1,8407,6.99,2005-07-29T06:37:02Z,2020-02-15T06:59:53Z +9083,336,2,8607,4.99,2005-07-29T13:18:00Z,2020-02-15T06:59:53Z +9084,336,2,8951,8.99,2005-07-30T03:18:24Z,2020-02-15T06:59:53Z +9085,336,2,9306,0.99,2005-07-30T16:47:17Z,2020-02-15T06:59:53Z +9086,336,1,10055,0.99,2005-07-31T19:15:58Z,2020-02-15T06:59:53Z +9087,336,2,11743,2.99,2005-08-17T08:49:05Z,2020-02-15T06:59:53Z +9088,336,1,12323,8.99,2005-08-18T06:36:22Z,2020-02-15T06:59:53Z +9089,336,2,12794,0.99,2005-08-19T00:20:37Z,2020-02-15T06:59:53Z +9090,336,2,12926,3.99,2005-08-19T05:00:16Z,2020-02-15T06:59:53Z +9091,336,2,13066,0.99,2005-08-19T09:50:39Z,2020-02-15T06:59:53Z +9092,336,2,13689,4.99,2005-08-20T09:04:30Z,2020-02-15T06:59:53Z +9093,336,1,14295,2.99,2005-08-21T07:09:27Z,2020-02-15T06:59:53Z +9094,336,1,15073,10.99,2005-08-22T11:01:15Z,2020-02-15T06:59:53Z +9095,336,2,15848,2.99,2005-08-23T15:41:12Z,2020-02-15T06:59:53Z +9096,336,1,13022,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9097,337,1,374,6.99,2005-05-27T08:26:30Z,2020-02-15T06:59:53Z +9098,337,1,572,4.99,2005-05-28T10:30:13Z,2020-02-15T06:59:53Z +9099,337,1,839,8.99,2005-05-30T00:28:12Z,2020-02-15T06:59:53Z +9100,337,2,1969,4.99,2005-06-17T09:22:22Z,2020-02-15T06:59:53Z +9101,337,1,2014,5.99,2005-06-17T12:03:28Z,2020-02-15T06:59:53Z +9102,337,1,3626,5.99,2005-07-06T06:15:35Z,2020-02-15T06:59:53Z +9103,337,1,4091,6.99,2005-07-07T05:53:38Z,2020-02-15T06:59:53Z +9104,337,2,4093,4.99,2005-07-07T05:54:50Z,2020-02-15T06:59:53Z +9105,337,2,4855,4.99,2005-07-08T18:45:50Z,2020-02-15T06:59:53Z +9106,337,1,5050,2.99,2005-07-09T03:54:38Z,2020-02-15T06:59:53Z +9107,337,1,6212,0.99,2005-07-11T12:40:48Z,2020-02-15T06:59:53Z +9108,337,2,6305,7.99,2005-07-11T18:02:25Z,2020-02-15T06:59:53Z +9109,337,1,6620,2.99,2005-07-12T08:51:03Z,2020-02-15T06:59:53Z +9110,337,1,7410,4.99,2005-07-27T16:41:59Z,2020-02-15T06:59:53Z +9111,337,1,8516,4.99,2005-07-29T10:00:03Z,2020-02-15T06:59:53Z +9112,337,2,8919,8.99,2005-07-30T01:57:03Z,2020-02-15T06:59:53Z +9113,337,2,9051,5.99,2005-07-30T07:05:54Z,2020-02-15T06:59:53Z +9114,337,1,10664,0.99,2005-08-01T16:51:15Z,2020-02-15T06:59:53Z +9115,337,2,10765,0.99,2005-08-01T20:34:51Z,2020-02-15T06:59:53Z +9116,337,2,11252,2.99,2005-08-02T13:42:13Z,2020-02-15T06:59:53Z +9117,337,1,11734,3.99,2005-08-17T08:34:22Z,2020-02-15T06:59:53Z +9118,337,1,12369,6.99,2005-08-18T07:57:43Z,2020-02-15T06:59:53Z +9119,337,2,13305,6.99,2005-08-19T18:57:05Z,2020-02-15T06:59:53Z +9120,337,1,13678,4.99,2005-08-20T08:38:24Z,2020-02-15T06:59:53Z +9121,337,2,13892,3.99,2005-08-20T15:50:17Z,2020-02-15T06:59:53Z +9122,337,2,14118,5.99,2005-08-21T01:13:37Z,2020-02-15T06:59:53Z +9123,337,2,15241,4.99,2005-08-22T17:47:40Z,2020-02-15T06:59:53Z +9124,337,1,15292,4.99,2005-08-22T19:28:56Z,2020-02-15T06:59:53Z +9125,337,2,11847,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9126,338,1,675,0.99,2005-05-28T22:22:44Z,2020-02-15T06:59:53Z +9127,338,2,1510,4.99,2005-06-15T22:39:34Z,2020-02-15T06:59:53Z +9128,338,1,1807,5.99,2005-06-16T20:58:59Z,2020-02-15T06:59:53Z +9129,338,2,1952,4.99,2005-06-17T08:33:02Z,2020-02-15T06:59:53Z +9130,338,1,2148,6.99,2005-06-17T22:44:35Z,2020-02-15T06:59:53Z +9131,338,1,2179,0.99,2005-06-18T00:41:36Z,2020-02-15T06:59:53Z +9132,338,1,2495,4.99,2005-06-18T22:15:42Z,2020-02-15T06:59:53Z +9133,338,1,3458,5.99,2005-06-21T21:42:49Z,2020-02-15T06:59:53Z +9134,338,1,3516,0.99,2005-07-06T00:50:30Z,2020-02-15T06:59:53Z +9135,338,2,3772,2.99,2005-07-06T13:22:53Z,2020-02-15T06:59:53Z +9136,338,2,4104,5.99,2005-07-07T06:25:41Z,2020-02-15T06:59:53Z +9137,338,2,4779,4.99,2005-07-08T15:53:41Z,2020-02-15T06:59:53Z +9138,338,1,5309,4.99,2005-07-09T16:00:16Z,2020-02-15T06:59:53Z +9139,338,1,6236,2.99,2005-07-11T14:18:17Z,2020-02-15T06:59:53Z +9140,338,1,6360,4.99,2005-07-11T21:07:40Z,2020-02-15T06:59:53Z +9141,338,2,7584,3.99,2005-07-27T23:15:46Z,2020-02-15T06:59:53Z +9142,338,1,8766,0.99,2005-07-29T19:41:04Z,2020-02-15T06:59:53Z +9143,338,1,9485,7.99,2005-07-30T23:32:40Z,2020-02-15T06:59:53Z +9144,338,2,10791,2.99,2005-08-01T21:41:52Z,2020-02-15T06:59:53Z +9145,338,1,10897,0.99,2005-08-02T01:23:42Z,2020-02-15T06:59:53Z +9146,338,2,11064,4.99,2005-08-02T06:55:17Z,2020-02-15T06:59:53Z +9147,338,2,11671,4.99,2005-08-17T05:50:21Z,2020-02-15T06:59:53Z +9148,338,2,11719,5.99,2005-08-17T07:46:05Z,2020-02-15T06:59:53Z +9149,338,1,12167,2.99,2005-08-18T01:00:02Z,2020-02-15T06:59:53Z +9150,338,1,13284,3.99,2005-08-19T18:12:31Z,2020-02-15T06:59:53Z +9151,338,1,14619,2.99,2005-08-21T18:10:03Z,2020-02-15T06:59:53Z +9152,338,2,15105,0.99,2005-08-22T12:01:33Z,2020-02-15T06:59:53Z +9153,338,2,15173,6.99,2005-08-22T15:26:29Z,2020-02-15T06:59:53Z +9154,339,1,876,5.99,2005-05-30T05:41:22Z,2020-02-15T06:59:53Z +9155,339,2,1432,3.99,2005-06-15T18:27:24Z,2020-02-15T06:59:53Z +9156,339,1,1536,4.99,2005-06-16T00:52:22Z,2020-02-15T06:59:53Z +9157,339,2,1629,4.99,2005-06-16T07:53:47Z,2020-02-15T06:59:53Z +9158,339,1,3146,6.99,2005-06-20T20:21:48Z,2020-02-15T06:59:53Z +9159,339,1,3335,4.99,2005-06-21T10:09:08Z,2020-02-15T06:59:53Z +9160,339,2,3536,2.99,2005-07-06T01:36:11Z,2020-02-15T06:59:53Z +9161,339,1,4243,4.99,2005-07-07T13:39:58Z,2020-02-15T06:59:53Z +9162,339,1,4467,0.99,2005-07-08T00:13:52Z,2020-02-15T06:59:53Z +9163,339,2,4967,3.99,2005-07-08T23:48:03Z,2020-02-15T06:59:53Z +9164,339,1,5720,3.99,2005-07-10T11:09:12Z,2020-02-15T06:59:53Z +9165,339,1,6072,6.99,2005-07-11T04:52:40Z,2020-02-15T06:59:53Z +9166,339,1,6425,0.99,2005-07-11T23:54:52Z,2020-02-15T06:59:53Z +9167,339,2,6682,7.99,2005-07-12T12:12:43Z,2020-02-15T06:59:53Z +9168,339,2,7244,2.99,2005-07-27T10:27:33Z,2020-02-15T06:59:53Z +9169,339,2,7973,4.99,2005-07-28T14:10:06Z,2020-02-15T06:59:53Z +9170,339,1,8968,0.99,2005-07-30T03:57:32Z,2020-02-15T06:59:53Z +9171,339,2,9208,5.99,2005-07-30T12:54:03Z,2020-02-15T06:59:53Z +9172,339,1,9663,4.99,2005-07-31T06:10:48Z,2020-02-15T06:59:53Z +9173,339,2,10338,3.99,2005-08-01T05:03:03Z,2020-02-15T06:59:53Z +9174,339,2,11171,4.99,2005-08-02T10:23:41Z,2020-02-15T06:59:53Z +9175,339,1,11550,2.99,2005-08-17T01:02:06Z,2020-02-15T06:59:53Z +9176,339,2,11582,3.99,2005-08-17T02:03:49Z,2020-02-15T06:59:53Z +9177,339,2,11699,5.99,2005-08-17T07:11:58Z,2020-02-15T06:59:53Z +9178,339,1,12631,0.99,2005-08-18T17:52:51Z,2020-02-15T06:59:53Z +9179,339,1,13199,3.99,2005-08-19T14:53:22Z,2020-02-15T06:59:53Z +9180,339,1,13575,5.99,2005-08-20T05:15:20Z,2020-02-15T06:59:53Z +9181,339,1,13985,0.99,2005-08-20T19:13:06Z,2020-02-15T06:59:53Z +9182,339,1,14636,4.99,2005-08-21T18:59:17Z,2020-02-15T06:59:53Z +9183,339,2,14758,3.99,2005-08-21T23:24:52Z,2020-02-15T06:59:53Z +9184,340,2,1205,4.99,2005-06-15T02:25:56Z,2020-02-15T06:59:53Z +9185,340,1,1697,3.99,2005-06-16T12:55:20Z,2020-02-15T06:59:53Z +9186,340,1,2177,5.99,2005-06-18T00:34:45Z,2020-02-15T06:59:53Z +9187,340,2,2183,4.99,2005-06-18T01:06:01Z,2020-02-15T06:59:53Z +9188,340,2,2607,5.99,2005-06-19T06:55:01Z,2020-02-15T06:59:53Z +9189,340,1,2653,5.99,2005-06-19T10:36:53Z,2020-02-15T06:59:53Z +9190,340,1,3264,0.99,2005-06-21T04:19:03Z,2020-02-15T06:59:53Z +9191,340,1,3455,2.99,2005-06-21T21:17:51Z,2020-02-15T06:59:53Z +9192,340,2,4475,2.99,2005-07-08T00:27:30Z,2020-02-15T06:59:53Z +9193,340,1,4742,0.99,2005-07-08T13:35:23Z,2020-02-15T06:59:53Z +9194,340,2,6381,4.99,2005-07-11T21:58:48Z,2020-02-15T06:59:53Z +9195,340,2,7617,2.99,2005-07-28T00:18:40Z,2020-02-15T06:59:53Z +9196,340,2,8274,4.99,2005-07-29T01:34:32Z,2020-02-15T06:59:53Z +9197,340,1,8541,0.99,2005-07-29T10:55:01Z,2020-02-15T06:59:53Z +9198,340,2,8551,4.99,2005-07-29T11:13:11Z,2020-02-15T06:59:53Z +9199,340,1,8606,4.99,2005-07-29T13:14:24Z,2020-02-15T06:59:53Z +9200,340,1,9834,2.99,2005-07-31T12:05:42Z,2020-02-15T06:59:53Z +9201,340,1,10292,2.99,2005-08-01T03:42:40Z,2020-02-15T06:59:53Z +9202,340,1,10667,8.99,2005-08-01T16:58:22Z,2020-02-15T06:59:53Z +9203,340,2,10674,3.99,2005-08-01T17:11:52Z,2020-02-15T06:59:53Z +9204,340,1,10809,0.99,2005-08-01T22:39:27Z,2020-02-15T06:59:53Z +9205,340,1,10995,0.99,2005-08-02T04:48:00Z,2020-02-15T06:59:53Z +9206,340,2,12598,4.99,2005-08-18T16:34:03Z,2020-02-15T06:59:53Z +9207,340,2,12908,1.99,2005-08-19T04:19:05Z,2020-02-15T06:59:53Z +9208,340,2,12940,2.99,2005-08-19T05:38:29Z,2020-02-15T06:59:53Z +9209,340,1,13425,2.99,2005-08-19T23:11:44Z,2020-02-15T06:59:53Z +9210,340,1,14457,4.99,2005-08-21T12:47:38Z,2020-02-15T06:59:53Z +9211,340,2,14718,0.99,2005-08-21T21:39:25Z,2020-02-15T06:59:53Z +9212,340,1,14895,2.99,2005-08-22T04:19:23Z,2020-02-15T06:59:53Z +9213,340,2,15306,2.99,2005-08-22T19:46:36Z,2020-02-15T06:59:53Z +9214,340,1,15378,9.99,2005-08-22T22:25:17Z,2020-02-15T06:59:53Z +9215,341,1,1318,2.99,2005-06-15T10:34:26Z,2020-02-15T06:59:53Z +9216,341,2,1520,7.99,2005-06-15T23:57:20Z,2020-02-15T06:59:53Z +9217,341,1,1778,1.99,2005-06-16T18:54:48Z,2020-02-15T06:59:53Z +9218,341,1,1849,7.99,2005-06-17T00:13:19Z,2020-02-15T06:59:53Z +9219,341,2,2829,2.99,2005-06-19T21:11:30Z,2020-02-15T06:59:53Z +9220,341,2,3130,7.99,2005-06-20T19:03:22Z,2020-02-15T06:59:53Z +9221,341,1,3382,5.99,2005-06-21T14:05:23Z,2020-02-15T06:59:53Z +9222,341,2,3938,4.99,2005-07-06T21:15:45Z,2020-02-15T06:59:53Z +9223,341,1,4624,2.99,2005-07-08T08:12:17Z,2020-02-15T06:59:53Z +9224,341,2,5487,4.99,2005-07-10T00:01:50Z,2020-02-15T06:59:53Z +9225,341,2,5931,0.99,2005-07-10T22:04:19Z,2020-02-15T06:59:53Z +9226,341,2,7473,2.99,2005-07-27T19:05:40Z,2020-02-15T06:59:53Z +9227,341,1,8661,2.99,2005-07-29T15:28:24Z,2020-02-15T06:59:53Z +9228,341,1,8728,9.99,2005-07-29T18:12:49Z,2020-02-15T06:59:53Z +9229,341,2,10605,0.99,2005-08-01T14:36:26Z,2020-02-15T06:59:53Z +9230,341,1,11305,6.99,2005-08-02T15:44:55Z,2020-02-15T06:59:53Z +9231,341,1,11723,2.99,2005-08-17T07:56:22Z,2020-02-15T06:59:53Z +9232,341,2,13059,0.99,2005-08-19T09:42:01Z,2020-02-15T06:59:53Z +9233,341,2,13074,8.99,2005-08-19T10:06:53Z,2020-02-15T06:59:53Z +9234,341,2,13806,4.99,2005-08-20T12:53:46Z,2020-02-15T06:59:53Z +9235,341,2,14344,4.99,2005-08-21T08:40:56Z,2020-02-15T06:59:53Z +9236,341,2,15030,0.99,2005-08-22T09:10:21Z,2020-02-15T06:59:53Z +9237,341,2,15938,6.99,2005-08-23T18:43:31Z,2020-02-15T06:59:53Z +9238,342,2,2190,5.99,2005-06-18T01:29:51Z,2020-02-15T06:59:53Z +9239,342,1,2914,5.99,2005-06-20T03:43:18Z,2020-02-15T06:59:53Z +9240,342,1,3081,2.99,2005-06-20T15:29:13Z,2020-02-15T06:59:53Z +9241,342,1,5617,0.99,2005-07-10T05:28:50Z,2020-02-15T06:59:53Z +9242,342,2,6060,4.99,2005-07-11T04:06:17Z,2020-02-15T06:59:53Z +9243,342,2,6429,8.99,2005-07-12T00:02:50Z,2020-02-15T06:59:53Z +9244,342,1,6736,2.99,2005-07-12T14:16:50Z,2020-02-15T06:59:53Z +9245,342,2,6787,7.99,2005-07-12T16:33:28Z,2020-02-15T06:59:53Z +9246,342,2,6997,0.99,2005-07-27T01:14:02Z,2020-02-15T06:59:53Z +9247,342,2,7280,2.99,2005-07-27T11:50:52Z,2020-02-15T06:59:53Z +9248,342,1,9164,2.99,2005-07-30T11:24:14Z,2020-02-15T06:59:53Z +9249,342,1,9526,0.99,2005-07-31T01:02:22Z,2020-02-15T06:59:53Z +9250,342,2,9948,5.99,2005-07-31T15:49:41Z,2020-02-15T06:59:53Z +9251,342,1,9955,0.99,2005-07-31T16:01:26Z,2020-02-15T06:59:53Z +9252,342,2,9956,4.99,2005-07-31T16:03:47Z,2020-02-15T06:59:53Z +9253,342,1,10242,4.99,2005-08-01T02:18:12Z,2020-02-15T06:59:53Z +9254,342,2,11178,2.99,2005-08-02T10:48:10Z,2020-02-15T06:59:53Z +9255,342,2,11446,0.99,2005-08-02T20:33:37Z,2020-02-15T06:59:53Z +9256,342,1,11568,0.99,2005-08-17T01:30:01Z,2020-02-15T06:59:53Z +9257,342,1,12139,6.99,2005-08-17T23:57:13Z,2020-02-15T06:59:53Z +9258,342,1,12404,4.99,2005-08-18T09:36:34Z,2020-02-15T06:59:53Z +9259,342,1,12522,2.99,2005-08-18T13:45:40Z,2020-02-15T06:59:53Z +9260,342,2,12816,4.99,2005-08-19T01:04:05Z,2020-02-15T06:59:53Z +9261,342,2,13368,4.99,2005-08-19T21:19:35Z,2020-02-15T06:59:53Z +9262,342,2,13637,4.99,2005-08-20T07:21:15Z,2020-02-15T06:59:53Z +9263,342,1,13755,2.99,2005-08-20T11:18:53Z,2020-02-15T06:59:53Z +9264,342,2,13827,4.99,2005-08-20T13:47:19Z,2020-02-15T06:59:53Z +9265,342,2,14096,2.99,2005-08-21T00:27:46Z,2020-02-15T06:59:53Z +9266,342,2,14299,0.99,2005-08-21T07:18:57Z,2020-02-15T06:59:53Z +9267,342,2,14683,8.99,2005-08-21T20:27:44Z,2020-02-15T06:59:53Z +9268,342,1,15484,4.99,2005-08-23T02:04:49Z,2020-02-15T06:59:53Z +9269,342,1,15895,3.99,2005-08-23T17:09:31Z,2020-02-15T06:59:53Z +9270,343,2,102,3.99,2005-05-25T17:22:10Z,2020-02-15T06:59:53Z +9271,343,1,455,3.99,2005-05-27T19:43:29Z,2020-02-15T06:59:53Z +9272,343,2,1547,4.99,2005-06-16T01:42:24Z,2020-02-15T06:59:53Z +9273,343,1,1564,6.99,2005-06-16T02:47:07Z,2020-02-15T06:59:53Z +9274,343,2,1879,0.99,2005-06-17T02:57:34Z,2020-02-15T06:59:53Z +9275,343,2,1922,0.99,2005-06-17T06:04:25Z,2020-02-15T06:59:53Z +9276,343,2,2461,6.99,2005-06-18T19:58:12Z,2020-02-15T06:59:53Z +9277,343,1,2980,8.99,2005-06-20T08:35:03Z,2020-02-15T06:59:53Z +9278,343,1,3407,0.99,2005-06-21T16:14:02Z,2020-02-15T06:59:53Z +9279,343,1,3978,5.99,2005-07-06T23:04:33Z,2020-02-15T06:59:53Z +9280,343,1,4472,7.99,2005-07-08T00:22:06Z,2020-02-15T06:59:53Z +9281,343,2,5097,4.99,2005-07-09T06:09:51Z,2020-02-15T06:59:53Z +9282,343,1,5337,3.99,2005-07-09T17:03:50Z,2020-02-15T06:59:53Z +9283,343,1,7069,6.99,2005-07-27T03:59:35Z,2020-02-15T06:59:53Z +9284,343,2,8012,5.99,2005-07-28T15:29:00Z,2020-02-15T06:59:53Z +9285,343,2,8088,9.99,2005-07-28T18:23:49Z,2020-02-15T06:59:53Z +9286,343,2,9458,5.99,2005-07-30T22:24:34Z,2020-02-15T06:59:53Z +9287,343,2,9739,2.99,2005-07-31T09:08:03Z,2020-02-15T06:59:53Z +9288,343,1,10822,0.99,2005-08-01T22:54:28Z,2020-02-15T06:59:53Z +9289,343,1,11212,0.99,2005-08-02T12:18:29Z,2020-02-15T06:59:53Z +9290,343,2,11570,2.99,2005-08-17T01:34:32Z,2020-02-15T06:59:53Z +9291,343,2,13279,4.99,2005-08-19T18:02:18Z,2020-02-15T06:59:53Z +9292,343,2,13522,3.99,2005-08-20T02:44:06Z,2020-02-15T06:59:53Z +9293,343,2,13866,0.99,2005-08-20T15:05:29Z,2020-02-15T06:59:53Z +9294,343,2,15973,5.99,2005-08-23T20:04:41Z,2020-02-15T06:59:53Z +9295,344,2,157,2.99,2005-05-26T01:25:21Z,2020-02-15T06:59:53Z +9296,344,2,813,5.99,2005-05-29T20:14:34Z,2020-02-15T06:59:53Z +9297,344,1,1341,3.99,2005-06-15T12:26:18Z,2020-02-15T06:59:53Z +9298,344,2,1475,4.99,2005-06-15T21:08:01Z,2020-02-15T06:59:53Z +9299,344,1,1731,0.99,2005-06-16T15:32:12Z,2020-02-15T06:59:53Z +9300,344,2,4028,5.99,2005-07-07T02:19:14Z,2020-02-15T06:59:53Z +9301,344,2,4347,3.99,2005-07-07T18:58:57Z,2020-02-15T06:59:53Z +9302,344,2,6363,5.99,2005-07-11T21:13:19Z,2020-02-15T06:59:53Z +9303,344,2,7480,4.99,2005-07-27T19:19:53Z,2020-02-15T06:59:53Z +9304,344,2,8561,2.99,2005-07-29T11:29:12Z,2020-02-15T06:59:53Z +9305,344,2,9788,4.99,2005-07-31T10:28:21Z,2020-02-15T06:59:53Z +9306,344,2,11116,5.99,2005-08-02T08:34:40Z,2020-02-15T06:59:53Z +9307,344,2,12183,5.99,2005-08-18T01:34:13Z,2020-02-15T06:59:53Z +9308,344,2,13014,4.99,2005-08-19T07:56:08Z,2020-02-15T06:59:53Z +9309,344,1,13033,3.99,2005-08-19T08:34:39Z,2020-02-15T06:59:53Z +9310,344,1,14621,0.99,2005-08-21T18:17:59Z,2020-02-15T06:59:53Z +9311,344,2,14624,0.99,2005-08-21T18:32:42Z,2020-02-15T06:59:53Z +9312,344,1,15215,2.99,2005-08-22T16:55:26Z,2020-02-15T06:59:53Z +9313,345,1,206,0.99,2005-05-26T08:01:54Z,2020-02-15T06:59:53Z +9314,345,1,363,0.99,2005-05-27T07:14:00Z,2020-02-15T06:59:53Z +9315,345,2,1210,0.99,2005-06-15T02:57:51Z,2020-02-15T06:59:53Z +9316,345,1,1457,4.99,2005-06-15T20:05:49Z,2020-02-15T06:59:53Z +9317,345,2,1550,0.99,2005-06-16T01:58:35Z,2020-02-15T06:59:53Z +9318,345,2,2766,4.99,2005-06-19T17:45:15Z,2020-02-15T06:59:53Z +9319,345,2,4422,2.99,2005-07-07T22:09:45Z,2020-02-15T06:59:53Z +9320,345,1,4425,2.99,2005-07-07T22:22:44Z,2020-02-15T06:59:53Z +9321,345,2,4450,4.99,2005-07-07T23:20:05Z,2020-02-15T06:59:53Z +9322,345,2,5508,3.99,2005-07-10T00:50:01Z,2020-02-15T06:59:53Z +9323,345,1,6307,7.99,2005-07-11T18:04:29Z,2020-02-15T06:59:53Z +9324,345,1,7092,6.99,2005-07-27T04:46:00Z,2020-02-15T06:59:53Z +9325,345,2,8129,2.99,2005-07-28T19:47:02Z,2020-02-15T06:59:53Z +9326,345,2,8694,8.99,2005-07-29T16:44:48Z,2020-02-15T06:59:53Z +9327,345,1,9163,4.99,2005-07-30T11:23:22Z,2020-02-15T06:59:53Z +9328,345,2,9207,2.99,2005-07-30T12:49:57Z,2020-02-15T06:59:53Z +9329,345,2,10215,8.99,2005-08-01T01:04:28Z,2020-02-15T06:59:53Z +9330,345,2,10982,4.99,2005-08-02T04:19:11Z,2020-02-15T06:59:53Z +9331,345,1,11865,2.99,2005-08-17T14:03:46Z,2020-02-15T06:59:53Z +9332,345,1,12485,4.99,2005-08-18T12:41:41Z,2020-02-15T06:59:53Z +9333,345,2,12805,4.99,2005-08-19T00:36:34Z,2020-02-15T06:59:53Z +9334,345,1,14702,10.99,2005-08-21T21:00:03Z,2020-02-15T06:59:53Z +9335,345,1,15551,4.99,2005-08-23T04:28:25Z,2020-02-15T06:59:53Z +9336,346,1,65,4.99,2005-05-25T09:32:03Z,2020-02-15T06:59:53Z +9337,346,1,810,4.99,2005-05-29T19:12:04Z,2020-02-15T06:59:53Z +9338,346,1,1994,5.99,2005-06-17T11:07:06Z,2020-02-15T06:59:53Z +9339,346,2,3372,2.99,2005-06-21T13:34:19Z,2020-02-15T06:59:53Z +9340,346,1,3421,2.99,2005-06-21T17:22:58Z,2020-02-15T06:59:53Z +9341,346,2,4420,4.99,2005-07-07T22:07:31Z,2020-02-15T06:59:53Z +9342,346,1,4958,8.99,2005-07-08T23:19:52Z,2020-02-15T06:59:53Z +9343,346,1,5428,4.99,2005-07-09T21:12:50Z,2020-02-15T06:59:53Z +9344,346,2,5557,4.99,2005-07-10T03:10:21Z,2020-02-15T06:59:53Z +9345,346,2,6136,4.99,2005-07-11T08:34:09Z,2020-02-15T06:59:53Z +9346,346,2,6323,2.99,2005-07-11T19:02:19Z,2020-02-15T06:59:53Z +9347,346,2,6881,8.99,2005-07-12T20:46:35Z,2020-02-15T06:59:53Z +9348,346,2,7943,6.99,2005-07-28T12:50:55Z,2020-02-15T06:59:53Z +9349,346,2,8272,5.99,2005-07-29T01:29:51Z,2020-02-15T06:59:53Z +9350,346,1,8505,6.99,2005-07-29T09:22:52Z,2020-02-15T06:59:53Z +9351,346,2,8543,0.99,2005-07-29T11:01:57Z,2020-02-15T06:59:53Z +9352,346,2,8732,8.99,2005-07-29T18:25:03Z,2020-02-15T06:59:53Z +9353,346,2,9566,4.99,2005-07-31T02:32:10Z,2020-02-15T06:59:53Z +9354,346,1,9848,4.99,2005-07-31T12:44:33Z,2020-02-15T06:59:53Z +9355,346,1,9927,2.99,2005-07-31T15:12:13Z,2020-02-15T06:59:53Z +9356,346,1,10304,5.99,2005-08-01T04:14:12Z,2020-02-15T06:59:53Z +9357,346,2,10389,3.99,2005-08-01T06:46:43Z,2020-02-15T06:59:53Z +9358,346,2,10521,0.99,2005-08-01T11:46:17Z,2020-02-15T06:59:53Z +9359,346,2,11062,4.99,2005-08-02T06:52:54Z,2020-02-15T06:59:53Z +9360,346,1,11375,4.99,2005-08-02T18:14:56Z,2020-02-15T06:59:53Z +9361,346,2,11470,2.99,2005-08-02T21:48:28Z,2020-02-15T06:59:53Z +9362,346,1,14890,5.99,2005-08-22T04:10:49Z,2020-02-15T06:59:53Z +9363,346,2,15459,2.99,2005-08-23T01:09:48Z,2020-02-15T06:59:53Z +9364,346,1,15535,0.99,2005-08-23T03:58:02Z,2020-02-15T06:59:53Z +9365,346,1,15661,8.99,2005-08-23T08:52:03Z,2020-02-15T06:59:53Z +9366,346,2,15825,5.99,2005-08-23T15:10:42Z,2020-02-15T06:59:53Z +9367,346,1,15827,0.99,2005-08-23T15:15:19Z,2020-02-15T06:59:53Z +9368,347,2,1711,8.99,2005-06-16T14:11:52Z,2020-02-15T06:59:53Z +9369,347,2,2274,0.99,2005-06-18T06:31:15Z,2020-02-15T06:59:53Z +9370,347,1,3026,4.99,2005-06-20T11:48:00Z,2020-02-15T06:59:53Z +9371,347,1,3092,8.99,2005-06-20T16:04:42Z,2020-02-15T06:59:53Z +9372,347,1,3326,7.99,2005-06-21T09:04:50Z,2020-02-15T06:59:53Z +9373,347,2,3605,0.99,2005-07-06T05:27:15Z,2020-02-15T06:59:53Z +9374,347,2,3666,4.99,2005-07-06T08:27:43Z,2020-02-15T06:59:53Z +9375,347,1,4232,5.99,2005-07-07T12:49:12Z,2020-02-15T06:59:53Z +9376,347,1,4523,6.99,2005-07-08T03:06:59Z,2020-02-15T06:59:53Z +9377,347,2,5471,0.99,2005-07-09T23:11:52Z,2020-02-15T06:59:53Z +9378,347,1,5819,2.99,2005-07-10T15:56:20Z,2020-02-15T06:59:53Z +9379,347,2,6121,1.99,2005-07-11T07:55:27Z,2020-02-15T06:59:53Z +9380,347,1,7811,0.99,2005-07-28T08:06:01Z,2020-02-15T06:59:53Z +9381,347,2,8148,4.99,2005-07-28T20:39:47Z,2020-02-15T06:59:53Z +9382,347,2,8153,4.99,2005-07-28T20:55:49Z,2020-02-15T06:59:53Z +9383,347,2,8176,4.99,2005-07-28T21:42:08Z,2020-02-15T06:59:53Z +9384,347,2,8378,4.99,2005-07-29T05:28:35Z,2020-02-15T06:59:53Z +9385,347,2,8771,2.99,2005-07-29T19:54:41Z,2020-02-15T06:59:53Z +9386,347,1,9013,4.99,2005-07-30T05:19:20Z,2020-02-15T06:59:53Z +9387,347,1,9582,4.99,2005-07-31T03:05:19Z,2020-02-15T06:59:53Z +9388,347,1,9856,3.99,2005-07-31T13:00:35Z,2020-02-15T06:59:53Z +9389,347,1,9876,2.99,2005-07-31T13:37:51Z,2020-02-15T06:59:53Z +9390,347,2,11738,8.99,2005-08-17T08:45:55Z,2020-02-15T06:59:53Z +9391,347,1,12195,2.99,2005-08-18T02:07:49Z,2020-02-15T06:59:53Z +9392,347,2,12399,10.99,2005-08-18T09:13:42Z,2020-02-15T06:59:53Z +9393,347,2,13314,5.99,2005-08-19T19:12:43Z,2020-02-15T06:59:53Z +9394,347,2,14894,4.99,2005-08-22T04:16:56Z,2020-02-15T06:59:53Z +9395,347,2,14958,2.99,2005-08-22T06:30:10Z,2020-02-15T06:59:53Z +9396,347,2,15426,2.99,2005-08-23T00:07:19Z,2020-02-15T06:59:53Z +9397,347,2,15555,4.99,2005-08-23T04:51:52Z,2020-02-15T06:59:53Z +9398,348,2,153,0.99,2005-05-26T00:47:47Z,2020-02-15T06:59:53Z +9399,348,2,821,0.99,2005-05-29T21:31:12Z,2020-02-15T06:59:53Z +9400,348,1,1654,2.99,2005-06-16T09:42:48Z,2020-02-15T06:59:53Z +9401,348,1,2041,8.99,2005-06-17T14:19:00Z,2020-02-15T06:59:53Z +9402,348,2,2499,0.99,2005-06-18T23:01:36Z,2020-02-15T06:59:53Z +9403,348,2,3494,4.99,2005-07-05T23:47:30Z,2020-02-15T06:59:53Z +9404,348,2,3610,4.99,2005-07-06T05:36:59Z,2020-02-15T06:59:53Z +9405,348,2,4556,9.99,2005-07-08T04:48:41Z,2020-02-15T06:59:53Z +9406,348,2,4633,0.99,2005-07-08T08:39:39Z,2020-02-15T06:59:53Z +9407,348,1,4699,0.99,2005-07-08T11:36:56Z,2020-02-15T06:59:53Z +9408,348,1,4807,8.99,2005-07-08T17:01:48Z,2020-02-15T06:59:53Z +9409,348,1,5345,4.99,2005-07-09T17:28:18Z,2020-02-15T06:59:53Z +9410,348,2,5965,0.99,2005-07-10T23:51:52Z,2020-02-15T06:59:53Z +9411,348,2,6776,2.99,2005-07-12T16:02:09Z,2020-02-15T06:59:53Z +9412,348,2,7380,2.99,2005-07-27T15:37:01Z,2020-02-15T06:59:53Z +9413,348,1,7482,6.99,2005-07-27T19:24:16Z,2020-02-15T06:59:53Z +9414,348,2,7825,4.99,2005-07-28T08:34:57Z,2020-02-15T06:59:53Z +9415,348,1,8500,2.99,2005-07-29T09:12:01Z,2020-02-15T06:59:53Z +9416,348,1,8569,4.99,2005-07-29T11:39:17Z,2020-02-15T06:59:53Z +9417,348,2,8682,4.99,2005-07-29T16:15:26Z,2020-02-15T06:59:53Z +9418,348,2,9482,2.99,2005-07-30T23:29:16Z,2020-02-15T06:59:53Z +9419,348,1,10769,2.99,2005-08-01T20:43:02Z,2020-02-15T06:59:53Z +9420,348,2,10972,2.99,2005-08-02T04:08:25Z,2020-02-15T06:59:53Z +9421,348,1,11262,2.99,2005-08-02T13:58:55Z,2020-02-15T06:59:53Z +9422,348,1,11429,7.99,2005-08-02T20:03:52Z,2020-02-15T06:59:53Z +9423,348,2,12564,2.99,2005-08-18T15:11:35Z,2020-02-15T06:59:53Z +9424,348,2,12884,5.99,2005-08-19T03:34:04Z,2020-02-15T06:59:53Z +9425,348,2,12937,4.99,2005-08-19T05:25:30Z,2020-02-15T06:59:53Z +9426,348,2,13238,2.99,2005-08-19T16:20:56Z,2020-02-15T06:59:53Z +9427,348,2,13602,5.99,2005-08-20T06:02:02Z,2020-02-15T06:59:53Z +9428,348,2,13684,0.99,2005-08-20T08:55:53Z,2020-02-15T06:59:53Z +9429,348,1,13962,1.99,2005-08-20T18:18:06Z,2020-02-15T06:59:53Z +9430,348,2,14079,3.99,2005-08-20T23:29:25Z,2020-02-15T06:59:53Z +9431,348,2,14937,7.99,2005-08-22T05:51:59Z,2020-02-15T06:59:53Z +9432,348,2,15817,0.99,2005-08-23T14:59:51Z,2020-02-15T06:59:53Z +9433,348,1,15944,4.99,2005-08-23T18:50:54Z,2020-02-15T06:59:53Z +9434,349,1,890,4.99,2005-05-30T07:43:04Z,2020-02-15T06:59:53Z +9435,349,1,1197,2.99,2005-06-15T01:42:46Z,2020-02-15T06:59:53Z +9436,349,1,1523,0.99,2005-06-16T00:18:40Z,2020-02-15T06:59:53Z +9437,349,2,2987,6.99,2005-06-20T08:55:50Z,2020-02-15T06:59:53Z +9438,349,1,3067,8.99,2005-06-20T13:59:21Z,2020-02-15T06:59:53Z +9439,349,2,3488,3.99,2005-07-05T23:32:49Z,2020-02-15T06:59:53Z +9440,349,1,4190,2.99,2005-07-07T10:52:39Z,2020-02-15T06:59:53Z +9441,349,2,4494,5.99,2005-07-08T01:42:45Z,2020-02-15T06:59:53Z +9442,349,1,4881,0.99,2005-07-08T19:40:34Z,2020-02-15T06:59:53Z +9443,349,1,5433,4.99,2005-07-09T21:22:00Z,2020-02-15T06:59:53Z +9444,349,1,7002,4.99,2005-07-27T01:26:14Z,2020-02-15T06:59:53Z +9445,349,1,7046,4.99,2005-07-27T03:27:56Z,2020-02-15T06:59:53Z +9446,349,2,7702,2.99,2005-07-28T03:56:05Z,2020-02-15T06:59:53Z +9447,349,2,8297,4.99,2005-07-29T02:45:46Z,2020-02-15T06:59:53Z +9448,349,1,9262,1.99,2005-07-30T14:45:02Z,2020-02-15T06:59:53Z +9449,349,1,9670,5.99,2005-07-31T06:33:33Z,2020-02-15T06:59:53Z +9450,349,1,9731,0.99,2005-07-31T08:54:47Z,2020-02-15T06:59:53Z +9451,349,1,10987,4.99,2005-08-02T04:36:52Z,2020-02-15T06:59:53Z +9452,349,2,11192,4.99,2005-08-02T11:29:41Z,2020-02-15T06:59:53Z +9453,349,2,11492,8.99,2005-08-02T22:46:47Z,2020-02-15T06:59:53Z +9454,349,1,11905,3.99,2005-08-17T15:40:18Z,2020-02-15T06:59:53Z +9455,349,1,13258,4.99,2005-08-19T17:05:37Z,2020-02-15T06:59:53Z +9456,349,2,13636,4.99,2005-08-20T07:20:09Z,2020-02-15T06:59:53Z +9457,349,2,14200,6.99,2005-08-21T03:51:27Z,2020-02-15T06:59:53Z +9458,349,2,14721,6.99,2005-08-21T21:50:51Z,2020-02-15T06:59:53Z +9459,349,2,14908,4.99,2005-08-22T04:44:10Z,2020-02-15T06:59:53Z +9460,349,1,15833,6.99,2005-08-23T15:22:15Z,2020-02-15T06:59:53Z +9461,349,1,15955,5.99,2005-08-23T19:19:06Z,2020-02-15T06:59:53Z +9462,349,1,14915,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9463,350,1,24,4.99,2005-05-25T02:53:02Z,2020-02-15T06:59:53Z +9464,350,1,802,4.99,2005-05-29T17:38:59Z,2020-02-15T06:59:53Z +9465,350,2,2011,3.99,2005-06-17T11:56:09Z,2020-02-15T06:59:53Z +9466,350,1,2619,0.99,2005-06-19T08:03:12Z,2020-02-15T06:59:53Z +9467,350,1,3079,2.99,2005-06-20T15:13:40Z,2020-02-15T06:59:53Z +9468,350,2,3206,0.99,2005-06-21T00:39:39Z,2020-02-15T06:59:53Z +9469,350,1,3529,0.99,2005-07-06T01:15:26Z,2020-02-15T06:59:53Z +9470,350,1,3893,5.99,2005-07-06T18:59:31Z,2020-02-15T06:59:53Z +9471,350,1,4767,2.99,2005-07-08T15:18:53Z,2020-02-15T06:59:53Z +9472,350,1,5240,0.99,2005-07-09T13:14:48Z,2020-02-15T06:59:53Z +9473,350,1,5303,2.99,2005-07-09T15:44:09Z,2020-02-15T06:59:53Z +9474,350,1,5786,1.99,2005-07-10T14:06:44Z,2020-02-15T06:59:53Z +9475,350,2,6408,3.99,2005-07-11T23:03:02Z,2020-02-15T06:59:53Z +9476,350,2,7416,4.99,2005-07-27T16:55:25Z,2020-02-15T06:59:53Z +9477,350,2,11504,0.99,2005-08-16T23:16:46Z,2020-02-15T06:59:53Z +9478,350,2,11595,6.99,2005-08-17T02:53:14Z,2020-02-15T06:59:53Z +9479,350,2,11692,6.99,2005-08-17T06:52:41Z,2020-02-15T06:59:53Z +9480,350,1,11800,0.99,2005-08-17T11:29:52Z,2020-02-15T06:59:53Z +9481,350,2,12252,6.99,2005-08-18T03:59:51Z,2020-02-15T06:59:53Z +9482,350,2,12445,2.99,2005-08-18T10:56:20Z,2020-02-15T06:59:53Z +9483,350,2,13086,0.99,2005-08-19T10:32:28Z,2020-02-15T06:59:53Z +9484,350,2,15789,1.99,2005-08-23T13:56:40Z,2020-02-15T06:59:53Z +9485,350,1,15807,0.99,2005-08-23T14:35:10Z,2020-02-15T06:59:53Z +9486,351,1,1137,1.99,2005-05-31T19:20:14Z,2020-02-15T06:59:53Z +9487,351,2,1792,5.99,2005-06-16T20:04:50Z,2020-02-15T06:59:53Z +9488,351,1,1869,0.99,2005-06-17T02:08:00Z,2020-02-15T06:59:53Z +9489,351,1,2759,2.99,2005-06-19T17:10:24Z,2020-02-15T06:59:53Z +9490,351,1,3836,2.99,2005-07-06T16:26:04Z,2020-02-15T06:59:53Z +9491,351,1,4544,0.99,2005-07-08T04:11:04Z,2020-02-15T06:59:53Z +9492,351,1,4756,1.99,2005-07-08T14:24:00Z,2020-02-15T06:59:53Z +9493,351,2,4761,5.99,2005-07-08T14:51:45Z,2020-02-15T06:59:53Z +9494,351,1,5280,0.99,2005-07-09T14:55:07Z,2020-02-15T06:59:53Z +9495,351,1,5912,3.99,2005-07-10T20:58:22Z,2020-02-15T06:59:53Z +9496,351,2,6180,3.99,2005-07-11T11:06:50Z,2020-02-15T06:59:53Z +9497,351,1,6664,4.99,2005-07-12T11:28:22Z,2020-02-15T06:59:53Z +9498,351,2,6777,5.99,2005-07-12T16:04:40Z,2020-02-15T06:59:53Z +9499,351,2,7630,4.99,2005-07-28T01:01:03Z,2020-02-15T06:59:53Z +9500,351,2,8512,4.99,2005-07-29T09:48:03Z,2020-02-15T06:59:53Z +9501,351,1,9707,7.99,2005-07-31T07:44:18Z,2020-02-15T06:59:53Z +9502,351,2,10119,0.99,2005-07-31T21:20:59Z,2020-02-15T06:59:53Z +9503,351,2,10501,2.99,2005-08-01T11:04:46Z,2020-02-15T06:59:53Z +9504,351,2,11127,0.99,2005-08-02T09:00:59Z,2020-02-15T06:59:53Z +9505,351,1,14368,6.99,2005-08-21T09:31:47Z,2020-02-15T06:59:53Z +9506,351,2,15142,4.99,2005-08-22T13:44:32Z,2020-02-15T06:59:53Z +9507,351,1,15664,4.99,2005-08-23T08:57:11Z,2020-02-15T06:59:53Z +9508,351,2,15712,2.99,2005-08-23T10:43:56Z,2020-02-15T06:59:53Z +9509,351,1,15762,2.99,2005-08-23T13:01:43Z,2020-02-15T06:59:53Z +9510,352,1,784,2.99,2005-05-29T14:44:22Z,2020-02-15T06:59:53Z +9511,352,1,1498,0.99,2005-06-15T21:58:00Z,2020-02-15T06:59:53Z +9512,352,1,1649,4.99,2005-06-16T09:20:33Z,2020-02-15T06:59:53Z +9513,352,1,1678,4.99,2005-06-16T11:08:28Z,2020-02-15T06:59:53Z +9514,352,1,1780,4.99,2005-06-16T19:11:45Z,2020-02-15T06:59:53Z +9515,352,2,3331,4.99,2005-06-21T09:37:53Z,2020-02-15T06:59:53Z +9516,352,2,4116,4.99,2005-07-07T06:56:13Z,2020-02-15T06:59:53Z +9517,352,2,6329,5.99,2005-07-11T19:10:38Z,2020-02-15T06:59:53Z +9518,352,1,7033,2.99,2005-07-27T03:03:25Z,2020-02-15T06:59:53Z +9519,352,1,7419,7.99,2005-07-27T17:04:15Z,2020-02-15T06:59:53Z +9520,352,2,7512,6.99,2005-07-27T20:40:40Z,2020-02-15T06:59:53Z +9521,352,1,7579,4.99,2005-07-27T23:06:41Z,2020-02-15T06:59:53Z +9522,352,1,7845,5.99,2005-07-28T09:18:07Z,2020-02-15T06:59:53Z +9523,352,1,7886,2.99,2005-07-28T10:37:55Z,2020-02-15T06:59:53Z +9524,352,1,9463,0.99,2005-07-30T22:30:57Z,2020-02-15T06:59:53Z +9525,352,1,11793,5.99,2005-08-17T11:05:53Z,2020-02-15T06:59:53Z +9526,352,1,11823,6.99,2005-08-17T12:36:37Z,2020-02-15T06:59:53Z +9527,352,2,11986,0.99,2005-08-17T18:21:58Z,2020-02-15T06:59:53Z +9528,352,2,12234,5.99,2005-08-18T03:17:33Z,2020-02-15T06:59:53Z +9529,352,1,12751,2.99,2005-08-18T22:33:22Z,2020-02-15T06:59:53Z +9530,352,1,14130,4.99,2005-08-21T01:43:11Z,2020-02-15T06:59:53Z +9531,352,2,14852,0.99,2005-08-22T02:25:53Z,2020-02-15T06:59:53Z +9532,352,2,13578,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9533,353,2,1103,6.99,2005-05-31T14:24:18Z,2020-02-15T06:59:53Z +9534,353,2,1359,2.99,2005-06-15T13:30:30Z,2020-02-15T06:59:53Z +9535,353,2,1928,7.99,2005-06-17T06:48:31Z,2020-02-15T06:59:53Z +9536,353,2,3233,6.99,2005-06-21T02:39:31Z,2020-02-15T06:59:53Z +9537,353,2,4380,5.99,2005-07-07T20:35:00Z,2020-02-15T06:59:53Z +9538,353,2,6559,1.99,2005-07-12T05:20:35Z,2020-02-15T06:59:53Z +9539,353,1,6610,3.99,2005-07-12T08:20:02Z,2020-02-15T06:59:53Z +9540,353,2,7993,3.99,2005-07-28T14:56:41Z,2020-02-15T06:59:53Z +9541,353,2,10071,2.99,2005-07-31T19:49:35Z,2020-02-15T06:59:53Z +9542,353,1,11186,0.99,2005-08-02T11:12:08Z,2020-02-15T06:59:53Z +9543,353,2,11414,4.99,2005-08-02T19:43:07Z,2020-02-15T06:59:53Z +9544,353,2,11698,4.99,2005-08-17T07:09:59Z,2020-02-15T06:59:53Z +9545,353,1,12928,5.99,2005-08-19T05:04:09Z,2020-02-15T06:59:53Z +9546,353,2,13604,0.99,2005-08-20T06:03:33Z,2020-02-15T06:59:53Z +9547,353,1,14396,4.99,2005-08-21T10:24:54Z,2020-02-15T06:59:53Z +9548,353,1,15564,1.99,2005-08-23T05:10:42Z,2020-02-15T06:59:53Z +9549,353,2,15650,0.99,2005-08-23T08:29:53Z,2020-02-15T06:59:53Z +9550,353,2,15676,2.99,2005-08-23T09:23:08Z,2020-02-15T06:59:53Z +9551,354,1,140,0.99,2005-05-25T23:34:22Z,2020-02-15T06:59:53Z +9552,354,2,158,1.99,2005-05-26T01:27:11Z,2020-02-15T06:59:53Z +9553,354,2,402,0.99,2005-05-27T13:17:18Z,2020-02-15T06:59:53Z +9554,354,1,1491,0.99,2005-06-15T21:48:18Z,2020-02-15T06:59:53Z +9555,354,1,2275,4.99,2005-06-18T06:31:29Z,2020-02-15T06:59:53Z +9556,354,1,2769,6.99,2005-06-19T17:52:14Z,2020-02-15T06:59:53Z +9557,354,1,3139,2.99,2005-06-20T19:44:45Z,2020-02-15T06:59:53Z +9558,354,2,3821,2.99,2005-07-06T15:36:20Z,2020-02-15T06:59:53Z +9559,354,2,4034,0.99,2005-07-07T02:36:33Z,2020-02-15T06:59:53Z +9560,354,1,4449,5.99,2005-07-07T23:18:58Z,2020-02-15T06:59:53Z +9561,354,2,4745,2.99,2005-07-08T13:45:09Z,2020-02-15T06:59:53Z +9562,354,1,5354,4.99,2005-07-09T18:04:33Z,2020-02-15T06:59:53Z +9563,354,2,5556,4.99,2005-07-10T03:10:17Z,2020-02-15T06:59:53Z +9564,354,1,5873,3.99,2005-07-10T19:02:10Z,2020-02-15T06:59:53Z +9565,354,1,6054,0.99,2005-07-11T03:58:39Z,2020-02-15T06:59:53Z +9566,354,1,6838,4.99,2005-07-12T19:01:30Z,2020-02-15T06:59:53Z +9567,354,1,6926,0.99,2005-07-26T22:52:45Z,2020-02-15T06:59:53Z +9568,354,1,6939,5.99,2005-07-26T23:17:51Z,2020-02-15T06:59:53Z +9569,354,2,7148,0.99,2005-07-27T07:04:09Z,2020-02-15T06:59:53Z +9570,354,2,7235,2.99,2005-07-27T10:09:30Z,2020-02-15T06:59:53Z +9571,354,2,7241,0.99,2005-07-27T10:25:49Z,2020-02-15T06:59:53Z +9572,354,2,8321,4.99,2005-07-29T03:50:54Z,2020-02-15T06:59:53Z +9573,354,2,8477,8.99,2005-07-29T08:40:36Z,2020-02-15T06:59:53Z +9574,354,1,8609,4.99,2005-07-29T13:19:25Z,2020-02-15T06:59:53Z +9575,354,2,8921,0.99,2005-07-30T02:04:02Z,2020-02-15T06:59:53Z +9576,354,1,9130,2.99,2005-07-30T09:55:10Z,2020-02-15T06:59:53Z +9577,354,1,10420,6.99,2005-08-01T08:13:53Z,2020-02-15T06:59:53Z +9578,354,2,12243,6.99,2005-08-18T03:38:54Z,2020-02-15T06:59:53Z +9579,354,1,12544,3.99,2005-08-18T14:25:51Z,2020-02-15T06:59:53Z +9580,354,1,12998,4.99,2005-08-19T07:32:16Z,2020-02-15T06:59:53Z +9581,354,2,14212,2.99,2005-08-21T04:29:26Z,2020-02-15T06:59:53Z +9582,354,2,14245,0.99,2005-08-21T05:30:54Z,2020-02-15T06:59:53Z +9583,354,1,14840,5.99,2005-08-22T01:58:42Z,2020-02-15T06:59:53Z +9584,354,2,15956,0.99,2005-08-23T19:19:21Z,2020-02-15T06:59:53Z +9585,354,1,12759,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9586,354,1,11782,0,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9587,355,1,1110,3.99,2005-05-31T15:22:51Z,2020-02-15T06:59:53Z +9588,355,2,1488,0.99,2005-06-15T21:39:54Z,2020-02-15T06:59:53Z +9589,355,1,1612,2.99,2005-06-16T06:52:05Z,2020-02-15T06:59:53Z +9590,355,1,3567,5.99,2005-07-06T03:09:36Z,2020-02-15T06:59:53Z +9591,355,1,3730,6.99,2005-07-06T11:31:24Z,2020-02-15T06:59:53Z +9592,355,1,5210,4.99,2005-07-09T11:24:19Z,2020-02-15T06:59:53Z +9593,355,1,5564,5.99,2005-07-10T03:23:05Z,2020-02-15T06:59:53Z +9594,355,1,6127,0.99,2005-07-11T08:06:59Z,2020-02-15T06:59:53Z +9595,355,2,6262,6.99,2005-07-11T15:33:24Z,2020-02-15T06:59:53Z +9596,355,1,6437,2.99,2005-07-12T00:20:29Z,2020-02-15T06:59:53Z +9597,355,2,6669,4.99,2005-07-12T11:39:55Z,2020-02-15T06:59:53Z +9598,355,2,7108,4.99,2005-07-27T05:28:32Z,2020-02-15T06:59:53Z +9599,355,2,7477,5.99,2005-07-27T19:11:03Z,2020-02-15T06:59:53Z +9600,355,2,8418,1.99,2005-07-29T06:54:21Z,2020-02-15T06:59:53Z +9601,355,1,10498,0.99,2005-08-01T10:56:48Z,2020-02-15T06:59:53Z +9602,355,2,11471,0.99,2005-08-02T21:49:03Z,2020-02-15T06:59:53Z +9603,355,2,13821,1.99,2005-08-20T13:33:47Z,2020-02-15T06:59:53Z +9604,355,1,15367,3.99,2005-08-22T21:47:53Z,2020-02-15T06:59:53Z +9605,355,2,15531,2.99,2005-08-23T03:52:36Z,2020-02-15T06:59:53Z +9606,355,1,14760,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9607,356,2,1088,4.99,2005-05-31T11:35:13Z,2020-02-15T06:59:53Z +9608,356,1,1410,0.99,2005-06-15T16:59:46Z,2020-02-15T06:59:53Z +9609,356,1,2405,2.99,2005-06-18T16:36:38Z,2020-02-15T06:59:53Z +9610,356,1,2433,4.99,2005-06-18T18:10:17Z,2020-02-15T06:59:53Z +9611,356,2,3829,6.99,2005-07-06T15:59:40Z,2020-02-15T06:59:53Z +9612,356,2,4599,4.99,2005-07-08T06:48:26Z,2020-02-15T06:59:53Z +9613,356,1,5513,0.99,2005-07-10T01:05:41Z,2020-02-15T06:59:53Z +9614,356,1,6593,4.99,2005-07-12T07:21:17Z,2020-02-15T06:59:53Z +9615,356,1,6648,0.99,2005-07-12T10:46:30Z,2020-02-15T06:59:53Z +9616,356,1,7079,2.99,2005-07-27T04:21:58Z,2020-02-15T06:59:53Z +9617,356,1,7758,1.99,2005-07-28T06:23:41Z,2020-02-15T06:59:53Z +9618,356,1,7902,0.99,2005-07-28T11:14:19Z,2020-02-15T06:59:53Z +9619,356,1,8198,3.99,2005-07-28T23:08:05Z,2020-02-15T06:59:53Z +9620,356,1,8975,5.99,2005-07-30T04:10:18Z,2020-02-15T06:59:53Z +9621,356,2,9037,4.99,2005-07-30T06:23:14Z,2020-02-15T06:59:53Z +9622,356,2,9523,3.99,2005-07-31T00:56:09Z,2020-02-15T06:59:53Z +9623,356,2,9883,6.99,2005-07-31T13:53:37Z,2020-02-15T06:59:53Z +9624,356,1,10427,3.99,2005-08-01T08:30:11Z,2020-02-15T06:59:53Z +9625,356,1,10854,4.99,2005-08-02T00:02:06Z,2020-02-15T06:59:53Z +9626,356,1,11535,3.99,2005-08-17T00:39:54Z,2020-02-15T06:59:53Z +9627,356,2,11579,2.99,2005-08-17T01:57:49Z,2020-02-15T06:59:53Z +9628,356,2,12037,4.99,2005-08-17T20:21:35Z,2020-02-15T06:59:53Z +9629,356,2,12876,2.99,2005-08-19T03:12:19Z,2020-02-15T06:59:53Z +9630,356,1,12913,0.99,2005-08-19T04:25:39Z,2020-02-15T06:59:53Z +9631,356,2,13107,4.99,2005-08-19T11:13:58Z,2020-02-15T06:59:53Z +9632,356,2,13442,5.99,2005-08-19T23:50:45Z,2020-02-15T06:59:53Z +9633,356,2,13703,6.99,2005-08-20T09:29:35Z,2020-02-15T06:59:53Z +9634,356,1,15705,4.99,2005-08-23T10:32:52Z,2020-02-15T06:59:53Z +9635,356,2,15754,5.99,2005-08-23T12:43:42Z,2020-02-15T06:59:53Z +9636,356,1,15757,2.99,2005-08-23T12:47:16Z,2020-02-15T06:59:53Z +9637,357,1,144,2.99,2005-05-25T23:49:56Z,2020-02-15T06:59:53Z +9638,357,1,824,4.99,2005-05-29T21:45:32Z,2020-02-15T06:59:53Z +9639,357,2,945,0.99,2005-05-30T15:33:17Z,2020-02-15T06:59:53Z +9640,357,2,1246,5.99,2005-06-15T05:11:19Z,2020-02-15T06:59:53Z +9641,357,1,1788,1.99,2005-06-16T19:47:18Z,2020-02-15T06:59:53Z +9642,357,2,1971,1.99,2005-06-17T09:23:59Z,2020-02-15T06:59:53Z +9643,357,2,2153,6.99,2005-06-17T22:58:04Z,2020-02-15T06:59:53Z +9644,357,1,3865,3.99,2005-07-06T17:46:57Z,2020-02-15T06:59:53Z +9645,357,1,4478,0.99,2005-07-08T00:39:08Z,2020-02-15T06:59:53Z +9646,357,1,5896,0.99,2005-07-10T20:15:56Z,2020-02-15T06:59:53Z +9647,357,1,6288,8.99,2005-07-11T17:01:52Z,2020-02-15T06:59:53Z +9648,357,2,6367,4.99,2005-07-11T21:18:29Z,2020-02-15T06:59:53Z +9649,357,2,6405,2.99,2005-07-11T22:53:12Z,2020-02-15T06:59:53Z +9650,357,1,6839,0.99,2005-07-12T19:03:19Z,2020-02-15T06:59:53Z +9651,357,1,7353,2.99,2005-07-27T14:38:39Z,2020-02-15T06:59:53Z +9652,357,1,7366,5.99,2005-07-27T15:01:17Z,2020-02-15T06:59:53Z +9653,357,2,8041,2.99,2005-07-28T16:39:56Z,2020-02-15T06:59:53Z +9654,357,1,8124,2.99,2005-07-28T19:28:58Z,2020-02-15T06:59:53Z +9655,357,2,9233,3.99,2005-07-30T13:44:15Z,2020-02-15T06:59:53Z +9656,357,2,10391,2.99,2005-08-01T06:49:05Z,2020-02-15T06:59:53Z +9657,357,1,10502,2.99,2005-08-01T11:06:39Z,2020-02-15T06:59:53Z +9658,357,1,10503,6.99,2005-08-01T11:07:44Z,2020-02-15T06:59:53Z +9659,357,2,10764,0.99,2005-08-01T20:32:42Z,2020-02-15T06:59:53Z +9660,357,2,11065,2.99,2005-08-02T06:57:55Z,2020-02-15T06:59:53Z +9661,357,1,14926,0.99,2005-08-22T05:18:44Z,2020-02-15T06:59:53Z +9662,357,2,15869,2.99,2005-08-23T16:22:20Z,2020-02-15T06:59:53Z +9663,358,2,858,4.99,2005-05-30T02:10:32Z,2020-02-15T06:59:53Z +9664,358,1,1455,2.99,2005-06-15T19:51:06Z,2020-02-15T06:59:53Z +9665,358,2,1908,0.99,2005-06-17T05:10:36Z,2020-02-15T06:59:53Z +9666,358,1,2114,5.99,2005-06-17T20:00:25Z,2020-02-15T06:59:53Z +9667,358,1,2721,2.99,2005-06-19T14:53:24Z,2020-02-15T06:59:53Z +9668,358,1,2749,2.99,2005-06-19T16:27:35Z,2020-02-15T06:59:53Z +9669,358,1,3245,2.99,2005-06-21T03:06:11Z,2020-02-15T06:59:53Z +9670,358,1,3753,2.99,2005-07-06T12:34:06Z,2020-02-15T06:59:53Z +9671,358,1,3809,2.99,2005-07-06T15:16:37Z,2020-02-15T06:59:53Z +9672,358,2,5023,5.99,2005-07-09T02:23:16Z,2020-02-15T06:59:53Z +9673,358,1,6362,2.99,2005-07-11T21:09:31Z,2020-02-15T06:59:53Z +9674,358,1,8621,2.99,2005-07-29T13:52:42Z,2020-02-15T06:59:53Z +9675,358,2,9062,0.99,2005-07-30T07:23:17Z,2020-02-15T06:59:53Z +9676,358,1,9568,0.99,2005-07-31T02:37:44Z,2020-02-15T06:59:53Z +9677,358,1,10193,2.99,2005-08-01T00:33:27Z,2020-02-15T06:59:53Z +9678,358,1,10482,4.99,2005-08-01T10:17:47Z,2020-02-15T06:59:53Z +9679,358,2,11149,5.99,2005-08-02T09:51:43Z,2020-02-15T06:59:53Z +9680,358,2,11653,4.99,2005-08-17T05:06:10Z,2020-02-15T06:59:53Z +9681,358,1,12452,6.99,2005-08-18T11:14:35Z,2020-02-15T06:59:53Z +9682,358,1,13197,2.99,2005-08-19T14:44:03Z,2020-02-15T06:59:53Z +9683,358,1,14004,7.99,2005-08-20T20:16:35Z,2020-02-15T06:59:53Z +9684,359,1,284,8.99,2005-05-26T19:21:44Z,2020-02-15T06:59:53Z +9685,359,2,392,2.99,2005-05-27T11:14:42Z,2020-02-15T06:59:53Z +9686,359,1,528,3.99,2005-05-28T04:30:05Z,2020-02-15T06:59:53Z +9687,359,2,1329,4.99,2005-06-15T11:25:06Z,2020-02-15T06:59:53Z +9688,359,2,1770,1.99,2005-06-16T18:07:55Z,2020-02-15T06:59:53Z +9689,359,1,2401,0.99,2005-06-18T16:22:03Z,2020-02-15T06:59:53Z +9690,359,1,2736,4.99,2005-06-19T15:43:20Z,2020-02-15T06:59:53Z +9691,359,2,4830,7.99,2005-07-08T17:56:23Z,2020-02-15T06:59:53Z +9692,359,2,6424,9.99,2005-07-11T23:49:37Z,2020-02-15T06:59:53Z +9693,359,1,6542,2.99,2005-07-12T04:53:49Z,2020-02-15T06:59:53Z +9694,359,2,6741,0.99,2005-07-12T14:24:16Z,2020-02-15T06:59:53Z +9695,359,2,7098,0.99,2005-07-27T05:01:08Z,2020-02-15T06:59:53Z +9696,359,1,7115,0.99,2005-07-27T05:42:58Z,2020-02-15T06:59:53Z +9697,359,1,8174,4.99,2005-07-28T21:36:52Z,2020-02-15T06:59:53Z +9698,359,1,9898,4.99,2005-07-31T14:12:03Z,2020-02-15T06:59:53Z +9699,359,2,10174,5.99,2005-07-31T23:40:08Z,2020-02-15T06:59:53Z +9700,359,1,11032,4.99,2005-08-02T05:53:35Z,2020-02-15T06:59:53Z +9701,359,1,12611,1.99,2005-08-18T17:09:42Z,2020-02-15T06:59:53Z +9702,359,2,13297,2.99,2005-08-19T18:45:49Z,2020-02-15T06:59:53Z +9703,359,1,14258,1.99,2005-08-21T05:56:36Z,2020-02-15T06:59:53Z +9704,359,2,14598,5.99,2005-08-21T17:40:05Z,2020-02-15T06:59:53Z +9705,359,1,15104,2.99,2005-08-22T12:01:16Z,2020-02-15T06:59:53Z +9706,359,1,15148,4.99,2005-08-22T13:59:19Z,2020-02-15T06:59:53Z +9707,359,1,15453,1.99,2005-08-23T01:01:01Z,2020-02-15T06:59:53Z +9708,359,2,15655,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9709,360,1,633,0.99,2005-05-28T17:37:59Z,2020-02-15T06:59:53Z +9710,360,2,777,4.99,2005-05-29T14:07:58Z,2020-02-15T06:59:53Z +9711,360,2,1492,0.99,2005-06-15T21:48:35Z,2020-02-15T06:59:53Z +9712,360,2,2402,6.99,2005-06-18T16:24:45Z,2020-02-15T06:59:53Z +9713,360,2,2541,3.99,2005-06-19T02:08:10Z,2020-02-15T06:59:53Z +9714,360,2,2780,6.99,2005-06-19T18:19:33Z,2020-02-15T06:59:53Z +9715,360,1,4056,4.99,2005-07-07T03:57:36Z,2020-02-15T06:59:53Z +9716,360,1,4487,7.99,2005-07-08T01:20:22Z,2020-02-15T06:59:53Z +9717,360,2,5456,2.99,2005-07-09T22:31:45Z,2020-02-15T06:59:53Z +9718,360,1,5834,1.99,2005-07-10T16:44:12Z,2020-02-15T06:59:53Z +9719,360,1,5995,3.99,2005-07-11T01:15:39Z,2020-02-15T06:59:53Z +9720,360,1,6442,0.99,2005-07-12T00:29:45Z,2020-02-15T06:59:53Z +9721,360,2,6770,5.99,2005-07-12T15:49:40Z,2020-02-15T06:59:53Z +9722,360,1,7251,2.99,2005-07-27T10:44:55Z,2020-02-15T06:59:53Z +9723,360,2,7588,9.99,2005-07-27T23:23:31Z,2020-02-15T06:59:53Z +9724,360,1,7654,4.99,2005-07-28T02:00:14Z,2020-02-15T06:59:53Z +9725,360,2,7908,3.99,2005-07-28T11:32:57Z,2020-02-15T06:59:53Z +9726,360,1,8220,2.99,2005-07-28T23:46:41Z,2020-02-15T06:59:53Z +9727,360,2,8361,2.99,2005-07-29T05:08:57Z,2020-02-15T06:59:53Z +9728,360,1,9283,4.99,2005-07-30T15:25:19Z,2020-02-15T06:59:53Z +9729,360,2,9352,0.99,2005-07-30T18:29:26Z,2020-02-15T06:59:53Z +9730,360,1,9623,2.99,2005-07-31T04:30:02Z,2020-02-15T06:59:53Z +9731,360,2,9659,3.99,2005-07-31T06:02:14Z,2020-02-15T06:59:53Z +9732,360,2,10857,2.99,2005-08-02T00:07:20Z,2020-02-15T06:59:53Z +9733,360,2,11264,6.99,2005-08-02T14:05:18Z,2020-02-15T06:59:53Z +9734,360,2,11553,4.99,2005-08-17T01:04:31Z,2020-02-15T06:59:53Z +9735,360,2,12088,5.99,2005-08-17T22:20:16Z,2020-02-15T06:59:53Z +9736,360,1,12773,5.99,2005-08-18T23:32:19Z,2020-02-15T06:59:53Z +9737,360,2,12795,0.99,2005-08-19T00:21:52Z,2020-02-15T06:59:53Z +9738,360,1,12839,6.99,2005-08-19T01:53:43Z,2020-02-15T06:59:53Z +9739,360,1,12990,4.99,2005-08-19T07:20:39Z,2020-02-15T06:59:53Z +9740,360,2,13894,7.99,2005-08-20T15:55:20Z,2020-02-15T06:59:53Z +9741,360,1,14700,4.99,2005-08-21T20:53:40Z,2020-02-15T06:59:53Z +9742,360,1,15310,2.99,2005-08-22T19:56:41Z,2020-02-15T06:59:53Z +9743,361,1,368,5.99,2005-05-27T07:42:29Z,2020-02-15T06:59:53Z +9744,361,2,1120,4.99,2005-05-31T16:37:14Z,2020-02-15T06:59:53Z +9745,361,2,2353,4.99,2005-06-18T12:53:25Z,2020-02-15T06:59:53Z +9746,361,2,2558,1.99,2005-06-19T03:09:16Z,2020-02-15T06:59:53Z +9747,361,1,2851,2.99,2005-06-19T23:07:03Z,2020-02-15T06:59:53Z +9748,361,2,3303,2.99,2005-06-21T07:34:14Z,2020-02-15T06:59:53Z +9749,361,2,5154,2.99,2005-07-09T08:46:18Z,2020-02-15T06:59:53Z +9750,361,1,6152,0.99,2005-07-11T09:25:52Z,2020-02-15T06:59:53Z +9751,361,2,6829,4.99,2005-07-12T18:38:59Z,2020-02-15T06:59:53Z +9752,361,2,6911,0.99,2005-07-12T22:14:34Z,2020-02-15T06:59:53Z +9753,361,1,6914,1.99,2005-07-12T22:26:56Z,2020-02-15T06:59:53Z +9754,361,1,7538,2.99,2005-07-27T21:38:04Z,2020-02-15T06:59:53Z +9755,361,2,7712,2.99,2005-07-28T04:29:53Z,2020-02-15T06:59:53Z +9756,361,2,8189,4.99,2005-07-28T22:36:26Z,2020-02-15T06:59:53Z +9757,361,1,10145,1.99,2005-07-31T22:15:13Z,2020-02-15T06:59:53Z +9758,361,1,10151,4.99,2005-07-31T22:22:37Z,2020-02-15T06:59:53Z +9759,361,1,10414,0.99,2005-08-01T08:03:55Z,2020-02-15T06:59:53Z +9760,361,2,10975,0.99,2005-08-02T04:11:25Z,2020-02-15T06:59:53Z +9761,361,2,11031,5.99,2005-08-02T05:52:58Z,2020-02-15T06:59:53Z +9762,361,2,11243,5.99,2005-08-02T13:32:48Z,2020-02-15T06:59:53Z +9763,361,1,11327,2.99,2005-08-02T16:40:47Z,2020-02-15T06:59:53Z +9764,361,1,11991,3.99,2005-08-17T18:27:08Z,2020-02-15T06:59:53Z +9765,361,2,12626,5.99,2005-08-18T17:36:45Z,2020-02-15T06:59:53Z +9766,361,2,12690,2.99,2005-08-18T20:06:57Z,2020-02-15T06:59:53Z +9767,361,1,13135,0.99,2005-08-19T12:22:52Z,2020-02-15T06:59:53Z +9768,361,2,14031,0.99,2005-08-20T21:24:24Z,2020-02-15T06:59:53Z +9769,361,1,14422,0.99,2005-08-21T11:21:46Z,2020-02-15T06:59:53Z +9770,361,1,15759,6.99,2005-08-23T12:47:37Z,2020-02-15T06:59:53Z +9771,361,2,15935,2.99,2005-08-23T18:41:11Z,2020-02-15T06:59:53Z +9772,361,1,13298,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9773,361,1,14769,0,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9774,362,2,1035,4.99,2005-05-31T05:01:09Z,2020-02-15T06:59:53Z +9775,362,1,1429,2.99,2005-06-15T18:24:10Z,2020-02-15T06:59:53Z +9776,362,1,1529,2.99,2005-06-16T00:37:35Z,2020-02-15T06:59:53Z +9777,362,1,1615,2.99,2005-06-16T07:00:28Z,2020-02-15T06:59:53Z +9778,362,2,3197,2.99,2005-06-21T00:07:23Z,2020-02-15T06:59:53Z +9779,362,2,3393,2.99,2005-06-21T15:14:27Z,2020-02-15T06:59:53Z +9780,362,2,4646,8.99,2005-07-08T09:23:26Z,2020-02-15T06:59:53Z +9781,362,1,5227,4.99,2005-07-09T12:16:39Z,2020-02-15T06:59:53Z +9782,362,2,5563,1.99,2005-07-10T03:21:02Z,2020-02-15T06:59:53Z +9783,362,2,5690,5.99,2005-07-10T09:26:49Z,2020-02-15T06:59:53Z +9784,362,1,6204,4.99,2005-07-11T12:29:22Z,2020-02-15T06:59:53Z +9785,362,2,6576,4.99,2005-07-12T06:13:41Z,2020-02-15T06:59:53Z +9786,362,1,6981,4.99,2005-07-27T00:51:38Z,2020-02-15T06:59:53Z +9787,362,1,7172,1.99,2005-07-27T07:59:16Z,2020-02-15T06:59:53Z +9788,362,1,7485,2.99,2005-07-27T19:29:09Z,2020-02-15T06:59:53Z +9789,362,1,8081,2.99,2005-07-28T18:06:46Z,2020-02-15T06:59:53Z +9790,362,2,8325,2.99,2005-07-29T03:57:27Z,2020-02-15T06:59:53Z +9791,362,2,8364,4.99,2005-07-29T05:10:31Z,2020-02-15T06:59:53Z +9792,362,1,8662,0.99,2005-07-29T15:31:33Z,2020-02-15T06:59:53Z +9793,362,1,8714,2.99,2005-07-29T17:31:40Z,2020-02-15T06:59:53Z +9794,362,1,9784,4.99,2005-07-31T10:21:32Z,2020-02-15T06:59:53Z +9795,362,2,10546,3.99,2005-08-01T12:44:17Z,2020-02-15T06:59:53Z +9796,362,2,12244,4.99,2005-08-18T03:39:11Z,2020-02-15T06:59:53Z +9797,362,1,12854,6.99,2005-08-19T02:18:51Z,2020-02-15T06:59:53Z +9798,362,1,13603,6.99,2005-08-20T06:02:48Z,2020-02-15T06:59:53Z +9799,362,2,14051,6.99,2005-08-20T22:09:51Z,2020-02-15T06:59:53Z +9800,362,2,14129,2.99,2005-08-21T01:42:15Z,2020-02-15T06:59:53Z +9801,362,2,14336,4.99,2005-08-21T08:33:42Z,2020-02-15T06:59:53Z +9802,362,1,14752,5.99,2005-08-21T23:11:42Z,2020-02-15T06:59:53Z +9803,362,1,14759,11.99,2005-08-21T23:28:58Z,2020-02-15T06:59:53Z +9804,362,1,14808,4.99,2005-08-22T00:58:35Z,2020-02-15T06:59:53Z +9805,362,1,14950,2.99,2005-08-22T06:17:12Z,2020-02-15T06:59:53Z +9806,363,1,733,3.99,2005-05-29T07:35:21Z,2020-02-15T06:59:53Z +9807,363,2,1426,4.99,2005-06-15T18:16:24Z,2020-02-15T06:59:53Z +9808,363,2,1569,4.99,2005-06-16T03:19:09Z,2020-02-15T06:59:53Z +9809,363,1,1847,4.99,2005-06-17T00:05:22Z,2020-02-15T06:59:53Z +9810,363,1,2540,4.99,2005-06-19T02:04:48Z,2020-02-15T06:59:53Z +9811,363,2,3281,2.99,2005-06-21T06:08:47Z,2020-02-15T06:59:53Z +9812,363,1,3726,3.99,2005-07-06T11:15:49Z,2020-02-15T06:59:53Z +9813,363,2,5687,3.99,2005-07-10T09:07:19Z,2020-02-15T06:59:53Z +9814,363,1,5758,6.99,2005-07-10T12:42:43Z,2020-02-15T06:59:53Z +9815,363,2,6140,4.99,2005-07-11T08:40:47Z,2020-02-15T06:59:53Z +9816,363,2,6705,4.99,2005-07-12T12:53:11Z,2020-02-15T06:59:53Z +9817,363,2,6821,2.99,2005-07-12T18:22:10Z,2020-02-15T06:59:53Z +9818,363,2,6878,4.99,2005-07-12T20:37:13Z,2020-02-15T06:59:53Z +9819,363,1,7256,2.99,2005-07-27T10:58:32Z,2020-02-15T06:59:53Z +9820,363,2,7708,4.99,2005-07-28T04:19:15Z,2020-02-15T06:59:53Z +9821,363,2,8121,2.99,2005-07-28T19:25:45Z,2020-02-15T06:59:53Z +9822,363,2,8522,3.99,2005-07-29T10:16:19Z,2020-02-15T06:59:53Z +9823,363,2,8804,2.99,2005-07-29T21:28:19Z,2020-02-15T06:59:53Z +9824,363,2,8841,4.99,2005-07-29T22:56:07Z,2020-02-15T06:59:53Z +9825,363,1,9968,4.99,2005-07-31T16:32:16Z,2020-02-15T06:59:53Z +9826,363,1,9977,8.99,2005-07-31T16:58:42Z,2020-02-15T06:59:53Z +9827,363,1,10339,6.99,2005-08-01T05:05:50Z,2020-02-15T06:59:53Z +9828,363,2,12189,5.99,2005-08-18T01:51:44Z,2020-02-15T06:59:53Z +9829,363,2,12760,4.99,2005-08-18T23:03:19Z,2020-02-15T06:59:53Z +9830,363,1,13706,9.99,2005-08-20T09:32:56Z,2020-02-15T06:59:53Z +9831,363,1,14694,2.99,2005-08-21T20:46:42Z,2020-02-15T06:59:53Z +9832,363,1,14983,5.99,2005-08-22T07:32:23Z,2020-02-15T06:59:53Z +9833,363,2,15279,4.99,2005-08-22T19:08:49Z,2020-02-15T06:59:53Z +9834,363,1,15335,4.99,2005-08-22T20:44:55Z,2020-02-15T06:59:53Z +9835,364,1,462,5.99,2005-05-27T20:10:36Z,2020-02-15T06:59:53Z +9836,364,1,1722,2.99,2005-06-16T15:12:52Z,2020-02-15T06:59:53Z +9837,364,2,2442,2.99,2005-06-18T18:49:18Z,2020-02-15T06:59:53Z +9838,364,2,2606,4.99,2005-06-19T06:51:32Z,2020-02-15T06:59:53Z +9839,364,2,2857,4.99,2005-06-19T23:15:15Z,2020-02-15T06:59:53Z +9840,364,2,2962,3.99,2005-06-20T07:31:55Z,2020-02-15T06:59:53Z +9841,364,1,3678,4.99,2005-07-06T09:15:15Z,2020-02-15T06:59:53Z +9842,364,2,3961,4.99,2005-07-06T22:11:43Z,2020-02-15T06:59:53Z +9843,364,1,4047,0.99,2005-07-07T03:28:49Z,2020-02-15T06:59:53Z +9844,364,2,4689,4.99,2005-07-08T11:03:47Z,2020-02-15T06:59:53Z +9845,364,1,5872,10.99,2005-07-10T18:54:05Z,2020-02-15T06:59:53Z +9846,364,1,7272,2.99,2005-07-27T11:30:20Z,2020-02-15T06:59:53Z +9847,364,2,9266,4.99,2005-07-30T14:59:01Z,2020-02-15T06:59:53Z +9848,364,1,10092,0.99,2005-07-31T20:28:09Z,2020-02-15T06:59:53Z +9849,364,2,10290,5.99,2005-08-01T03:39:50Z,2020-02-15T06:59:53Z +9850,364,2,11932,4.99,2005-08-17T16:36:12Z,2020-02-15T06:59:53Z +9851,364,1,12557,4.99,2005-08-18T14:51:03Z,2020-02-15T06:59:53Z +9852,364,1,12761,1.99,2005-08-18T23:05:22Z,2020-02-15T06:59:53Z +9853,364,2,12912,3.99,2005-08-19T04:24:35Z,2020-02-15T06:59:53Z +9854,364,1,13698,4.99,2005-08-20T09:24:26Z,2020-02-15T06:59:53Z +9855,364,2,13936,0.99,2005-08-20T17:22:35Z,2020-02-15T06:59:53Z +9856,364,2,14293,4.99,2005-08-21T07:06:47Z,2020-02-15T06:59:53Z +9857,364,1,15242,0.99,2005-08-22T17:48:10Z,2020-02-15T06:59:53Z +9858,365,2,120,5.99,2005-05-25T19:37:47Z,2020-02-15T06:59:53Z +9859,365,1,231,4.99,2005-05-26T11:31:59Z,2020-02-15T06:59:53Z +9860,365,1,1303,1.99,2005-06-15T09:55:57Z,2020-02-15T06:59:53Z +9861,365,1,1578,6.99,2005-06-16T04:08:16Z,2020-02-15T06:59:53Z +9862,365,1,1983,4.99,2005-06-17T10:22:13Z,2020-02-15T06:59:53Z +9863,365,1,2525,2.99,2005-06-19T00:48:22Z,2020-02-15T06:59:53Z +9864,365,2,3156,0.99,2005-06-20T21:03:46Z,2020-02-15T06:59:53Z +9865,365,1,4583,1.99,2005-07-08T06:09:44Z,2020-02-15T06:59:53Z +9866,365,1,6604,4.99,2005-07-12T07:57:45Z,2020-02-15T06:59:53Z +9867,365,1,7488,7.99,2005-07-27T19:36:15Z,2020-02-15T06:59:53Z +9868,365,2,7634,4.99,2005-07-28T01:07:01Z,2020-02-15T06:59:53Z +9869,365,1,8168,4.99,2005-07-28T21:28:32Z,2020-02-15T06:59:53Z +9870,365,2,8782,4.99,2005-07-29T20:29:34Z,2020-02-15T06:59:53Z +9871,365,1,8856,3.99,2005-07-29T23:42:00Z,2020-02-15T06:59:53Z +9872,365,1,9122,2.99,2005-07-30T09:36:52Z,2020-02-15T06:59:53Z +9873,365,2,9184,4.99,2005-07-30T12:10:19Z,2020-02-15T06:59:53Z +9874,365,2,9540,2.99,2005-07-31T01:40:06Z,2020-02-15T06:59:53Z +9875,365,2,10717,2.99,2005-08-01T18:53:53Z,2020-02-15T06:59:53Z +9876,365,2,12322,2.99,2005-08-18T06:35:28Z,2020-02-15T06:59:53Z +9877,365,2,12375,4.99,2005-08-18T08:20:08Z,2020-02-15T06:59:53Z +9878,365,1,12804,8.99,2005-08-19T00:33:15Z,2020-02-15T06:59:53Z +9879,365,1,13619,2.99,2005-08-20T06:39:26Z,2020-02-15T06:59:53Z +9880,365,2,14463,6.99,2005-08-21T12:51:49Z,2020-02-15T06:59:53Z +9881,366,2,911,6.99,2005-05-30T10:50:22Z,2020-02-15T06:59:53Z +9882,366,2,1401,1.99,2005-06-15T16:30:22Z,2020-02-15T06:59:53Z +9883,366,2,2214,0.99,2005-06-18T02:44:37Z,2020-02-15T06:59:53Z +9884,366,2,3632,4.99,2005-07-06T06:38:21Z,2020-02-15T06:59:53Z +9885,366,1,3834,2.99,2005-07-06T16:19:56Z,2020-02-15T06:59:53Z +9886,366,2,4276,2.99,2005-07-07T14:50:59Z,2020-02-15T06:59:53Z +9887,366,1,4569,5.99,2005-07-08T05:30:51Z,2020-02-15T06:59:53Z +9888,366,2,5364,0.99,2005-07-09T18:24:48Z,2020-02-15T06:59:53Z +9889,366,1,6112,6.99,2005-07-11T07:28:05Z,2020-02-15T06:59:53Z +9890,366,1,6366,4.99,2005-07-11T21:18:16Z,2020-02-15T06:59:53Z +9891,366,2,6533,6.99,2005-07-12T04:39:38Z,2020-02-15T06:59:53Z +9892,366,2,6738,5.99,2005-07-12T14:17:55Z,2020-02-15T06:59:53Z +9893,366,1,6842,0.99,2005-07-12T19:07:55Z,2020-02-15T06:59:53Z +9894,366,2,6971,4.99,2005-07-27T00:26:17Z,2020-02-15T06:59:53Z +9895,366,1,7344,1.99,2005-07-27T14:29:28Z,2020-02-15T06:59:53Z +9896,366,1,7562,2.99,2005-07-27T22:25:15Z,2020-02-15T06:59:53Z +9897,366,2,7602,4.99,2005-07-27T23:48:35Z,2020-02-15T06:59:53Z +9898,366,1,7805,6.99,2005-07-28T07:56:41Z,2020-02-15T06:59:53Z +9899,366,2,8169,4.99,2005-07-28T21:29:46Z,2020-02-15T06:59:53Z +9900,366,2,8260,1.99,2005-07-29T01:11:00Z,2020-02-15T06:59:53Z +9901,366,2,8928,2.99,2005-07-30T02:18:19Z,2020-02-15T06:59:53Z +9902,366,1,9316,6.99,2005-07-30T17:11:58Z,2020-02-15T06:59:53Z +9903,366,1,10198,2.99,2005-08-01T00:36:15Z,2020-02-15T06:59:53Z +9904,366,1,10384,4.99,2005-08-01T06:39:14Z,2020-02-15T06:59:53Z +9905,366,2,11337,2.99,2005-08-02T16:59:09Z,2020-02-15T06:59:53Z +9906,366,2,11340,5.99,2005-08-02T17:05:43Z,2020-02-15T06:59:53Z +9907,366,2,12413,2.99,2005-08-18T09:50:34Z,2020-02-15T06:59:53Z +9908,366,1,12608,4.99,2005-08-18T17:05:15Z,2020-02-15T06:59:53Z +9909,366,2,13563,0.99,2005-08-20T04:33:31Z,2020-02-15T06:59:53Z +9910,366,1,13857,2.99,2005-08-20T14:50:06Z,2020-02-15T06:59:53Z +9911,366,1,14147,4.99,2005-08-21T02:14:03Z,2020-02-15T06:59:53Z +9912,366,1,14290,4.99,2005-08-21T07:02:59Z,2020-02-15T06:59:53Z +9913,366,1,14390,2.99,2005-08-21T10:15:38Z,2020-02-15T06:59:53Z +9914,366,1,14717,2.99,2005-08-21T21:30:39Z,2020-02-15T06:59:53Z +9915,366,1,14906,6.99,2005-08-22T04:38:18Z,2020-02-15T06:59:53Z +9916,366,1,15514,2.99,2005-08-23T03:03:40Z,2020-02-15T06:59:53Z +9917,366,1,13421,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9918,367,1,939,0.99,2005-05-30T14:49:34Z,2020-02-15T06:59:53Z +9919,367,1,1089,2.99,2005-05-31T11:38:29Z,2020-02-15T06:59:53Z +9920,367,1,3078,0.99,2005-06-20T15:09:48Z,2020-02-15T06:59:53Z +9921,367,1,4251,8.99,2005-07-07T14:11:55Z,2020-02-15T06:59:53Z +9922,367,2,5490,4.99,2005-07-10T00:09:11Z,2020-02-15T06:59:53Z +9923,367,2,5538,4.99,2005-07-10T02:39:40Z,2020-02-15T06:59:53Z +9924,367,2,5839,2.99,2005-07-10T17:08:30Z,2020-02-15T06:59:53Z +9925,367,2,6228,2.99,2005-07-11T13:58:36Z,2020-02-15T06:59:53Z +9926,367,1,6716,0.99,2005-07-12T13:34:58Z,2020-02-15T06:59:53Z +9927,367,2,6835,5.99,2005-07-12T18:58:03Z,2020-02-15T06:59:53Z +9928,367,2,8490,0.99,2005-07-29T08:59:25Z,2020-02-15T06:59:53Z +9929,367,1,9030,3.99,2005-07-30T06:05:38Z,2020-02-15T06:59:53Z +9930,367,1,9430,4.99,2005-07-30T21:20:13Z,2020-02-15T06:59:53Z +9931,367,1,9912,4.99,2005-07-31T14:49:04Z,2020-02-15T06:59:53Z +9932,367,2,10344,4.99,2005-08-01T05:18:23Z,2020-02-15T06:59:53Z +9933,367,1,12152,4.99,2005-08-18T00:21:35Z,2020-02-15T06:59:53Z +9934,367,2,12362,0.99,2005-08-18T07:48:05Z,2020-02-15T06:59:53Z +9935,367,2,12373,8.99,2005-08-18T08:07:25Z,2020-02-15T06:59:53Z +9936,367,2,12911,6.99,2005-08-19T04:24:10Z,2020-02-15T06:59:53Z +9937,367,2,13235,4.99,2005-08-19T16:17:53Z,2020-02-15T06:59:53Z +9938,367,1,14413,6.99,2005-08-21T11:06:33Z,2020-02-15T06:59:53Z +9939,367,1,14481,10.99,2005-08-21T13:41:14Z,2020-02-15T06:59:53Z +9940,368,1,64,5.99,2005-05-25T09:21:29Z,2020-02-15T06:59:53Z +9941,368,1,125,5.99,2005-05-25T20:48:50Z,2020-02-15T06:59:53Z +9942,368,1,836,2.99,2005-05-29T23:56:42Z,2020-02-15T06:59:53Z +9943,368,1,949,2.99,2005-05-30T15:50:39Z,2020-02-15T06:59:53Z +9944,368,1,1186,0.99,2005-06-15T00:56:45Z,2020-02-15T06:59:53Z +9945,368,1,1513,9.99,2005-06-15T22:53:30Z,2020-02-15T06:59:53Z +9946,368,1,2531,4.99,2005-06-19T01:20:49Z,2020-02-15T06:59:53Z +9947,368,1,2694,4.99,2005-06-19T13:17:21Z,2020-02-15T06:59:53Z +9948,368,1,2744,4.99,2005-06-19T16:20:40Z,2020-02-15T06:59:53Z +9949,368,2,3275,4.99,2005-06-21T05:33:04Z,2020-02-15T06:59:53Z +9950,368,2,3608,4.99,2005-07-06T05:35:39Z,2020-02-15T06:59:53Z +9951,368,2,4066,0.99,2005-07-07T04:34:09Z,2020-02-15T06:59:53Z +9952,368,1,4584,0.99,2005-07-08T06:11:02Z,2020-02-15T06:59:53Z +9953,368,2,4913,8.99,2005-07-08T21:27:48Z,2020-02-15T06:59:53Z +9954,368,1,6124,4.99,2005-07-11T08:02:32Z,2020-02-15T06:59:53Z +9955,368,1,6154,5.99,2005-07-11T09:32:19Z,2020-02-15T06:59:53Z +9956,368,1,6681,2.99,2005-07-12T12:04:12Z,2020-02-15T06:59:53Z +9957,368,2,7571,4.99,2005-07-27T22:43:42Z,2020-02-15T06:59:53Z +9958,368,1,8045,0.99,2005-07-28T16:49:38Z,2020-02-15T06:59:53Z +9959,368,2,8226,2.99,2005-07-29T00:01:04Z,2020-02-15T06:59:53Z +9960,368,1,9400,5.99,2005-07-30T20:15:58Z,2020-02-15T06:59:53Z +9961,368,1,9833,6.99,2005-07-31T12:05:01Z,2020-02-15T06:59:53Z +9962,368,2,10730,8.99,2005-08-01T19:21:42Z,2020-02-15T06:59:53Z +9963,368,2,10848,1.99,2005-08-01T23:50:22Z,2020-02-15T06:59:53Z +9964,368,1,11844,0.99,2005-08-17T13:16:04Z,2020-02-15T06:59:53Z +9965,368,2,12319,2.99,2005-08-18T06:26:45Z,2020-02-15T06:59:53Z +9966,368,1,12796,4.99,2005-08-19T00:22:24Z,2020-02-15T06:59:53Z +9967,368,2,13189,8.99,2005-08-19T14:27:16Z,2020-02-15T06:59:53Z +9968,368,2,13280,2.99,2005-08-19T18:02:51Z,2020-02-15T06:59:53Z +9969,368,2,13378,0.99,2005-08-19T21:33:35Z,2020-02-15T06:59:53Z +9970,368,2,13781,7.99,2005-08-20T12:06:45Z,2020-02-15T06:59:53Z +9971,368,2,13963,1.99,2005-08-20T18:20:18Z,2020-02-15T06:59:53Z +9972,368,1,14393,7.99,2005-08-21T10:22:51Z,2020-02-15T06:59:53Z +9973,368,1,15353,2.99,2005-08-22T21:18:08Z,2020-02-15T06:59:53Z +9974,368,1,15437,2.99,2005-08-23T00:31:09Z,2020-02-15T06:59:53Z +9975,369,1,31,4.99,2005-05-25T04:05:17Z,2020-02-15T06:59:53Z +9976,369,1,294,4.99,2005-05-26T20:29:57Z,2020-02-15T06:59:53Z +9977,369,2,854,0.99,2005-05-30T01:56:11Z,2020-02-15T06:59:53Z +9978,369,2,913,7.99,2005-05-30T11:04:58Z,2020-02-15T06:59:53Z +9979,369,1,1224,0.99,2005-06-15T03:44:25Z,2020-02-15T06:59:53Z +9980,369,1,3490,6.99,2005-07-05T23:37:13Z,2020-02-15T06:59:53Z +9981,369,2,3903,2.99,2005-07-06T19:27:32Z,2020-02-15T06:59:53Z +9982,369,2,4859,4.99,2005-07-08T18:54:04Z,2020-02-15T06:59:53Z +9983,369,1,5043,1.99,2005-07-09T03:25:18Z,2020-02-15T06:59:53Z +9984,369,2,5496,7.99,2005-07-10T00:20:23Z,2020-02-15T06:59:53Z +9985,369,2,5561,2.99,2005-07-10T03:15:24Z,2020-02-15T06:59:53Z +9986,369,1,8236,2.99,2005-07-29T00:27:04Z,2020-02-15T06:59:53Z +9987,369,2,8826,2.99,2005-07-29T22:30:16Z,2020-02-15T06:59:53Z +9988,369,2,9032,4.99,2005-07-30T06:06:54Z,2020-02-15T06:59:53Z +9989,369,1,9089,0.99,2005-07-30T08:23:39Z,2020-02-15T06:59:53Z +9990,369,2,9543,0.99,2005-07-31T01:43:34Z,2020-02-15T06:59:53Z +9991,369,1,9973,4.99,2005-07-31T16:49:31Z,2020-02-15T06:59:53Z +9992,369,1,10299,0.99,2005-08-01T04:08:04Z,2020-02-15T06:59:53Z +9993,369,2,10359,3.99,2005-08-01T05:52:21Z,2020-02-15T06:59:53Z +9994,369,2,10713,2.99,2005-08-01T18:50:05Z,2020-02-15T06:59:53Z +9995,369,1,11084,4.99,2005-08-02T07:34:19Z,2020-02-15T06:59:53Z +9996,369,2,11388,1.99,2005-08-02T18:35:55Z,2020-02-15T06:59:53Z +9997,369,1,12521,0.99,2005-08-18T13:43:07Z,2020-02-15T06:59:53Z +9998,369,2,14684,5.99,2005-08-21T20:28:26Z,2020-02-15T06:59:53Z +9999,369,1,13898,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10000,370,2,1190,6.99,2005-06-15T01:05:32Z,2020-02-15T06:59:53Z +10001,370,2,4400,7.99,2005-07-07T21:22:26Z,2020-02-15T06:59:53Z +10002,370,2,6714,0.99,2005-07-12T13:29:06Z,2020-02-15T06:59:53Z +10003,370,1,6968,0.99,2005-07-27T00:16:45Z,2020-02-15T06:59:53Z +10004,370,2,7152,7.99,2005-07-27T07:15:01Z,2020-02-15T06:59:53Z +10005,370,1,7226,6.99,2005-07-27T09:47:53Z,2020-02-15T06:59:53Z +10006,370,2,7797,0.99,2005-07-28T07:41:07Z,2020-02-15T06:59:53Z +10007,370,2,8258,0.99,2005-07-29T01:03:42Z,2020-02-15T06:59:53Z +10008,370,2,10095,0.99,2005-07-31T20:38:35Z,2020-02-15T06:59:53Z +10009,370,1,10336,4.99,2005-08-01T04:59:53Z,2020-02-15T06:59:53Z +10010,370,1,11540,1.99,2005-08-17T00:48:03Z,2020-02-15T06:59:53Z +10011,370,2,11925,0.99,2005-08-17T16:23:04Z,2020-02-15T06:59:53Z +10012,370,1,12339,4.99,2005-08-18T07:05:06Z,2020-02-15T06:59:53Z +10013,370,1,13039,0.99,2005-08-19T08:55:19Z,2020-02-15T06:59:53Z +10014,370,1,14602,3.99,2005-08-21T17:48:49Z,2020-02-15T06:59:53Z +10015,370,2,14786,2.99,2005-08-22T00:24:42Z,2020-02-15T06:59:53Z +10016,370,2,15368,3.99,2005-08-22T21:57:15Z,2020-02-15T06:59:53Z +10017,370,1,15626,4.99,2005-08-23T07:25:34Z,2020-02-15T06:59:53Z +10018,370,1,15982,5.99,2005-08-23T20:13:31Z,2020-02-15T06:59:53Z +10019,371,1,26,3.99,2005-05-25T03:36:50Z,2020-02-15T06:59:53Z +10020,371,2,286,6.99,2005-05-26T19:44:51Z,2020-02-15T06:59:53Z +10021,371,2,381,4.99,2005-05-27T09:43:25Z,2020-02-15T06:59:53Z +10022,371,1,384,5.99,2005-05-27T10:18:20Z,2020-02-15T06:59:53Z +10023,371,1,825,0.99,2005-05-29T21:49:41Z,2020-02-15T06:59:53Z +10024,371,1,829,2.99,2005-05-29T22:16:42Z,2020-02-15T06:59:53Z +10025,371,2,1212,2.99,2005-06-15T03:03:33Z,2020-02-15T06:59:53Z +10026,371,1,1218,1.99,2005-06-15T03:24:44Z,2020-02-15T06:59:53Z +10027,371,1,1573,6.99,2005-06-16T03:31:39Z,2020-02-15T06:59:53Z +10028,371,2,1675,5.99,2005-06-16T11:04:47Z,2020-02-15T06:59:53Z +10029,371,2,2837,0.99,2005-06-19T22:03:50Z,2020-02-15T06:59:53Z +10030,371,1,3176,3.99,2005-06-20T22:31:54Z,2020-02-15T06:59:53Z +10031,371,2,3396,0.99,2005-06-21T15:23:08Z,2020-02-15T06:59:53Z +10032,371,2,4115,8.99,2005-07-07T06:52:23Z,2020-02-15T06:59:53Z +10033,371,1,4612,1.99,2005-07-08T07:40:44Z,2020-02-15T06:59:53Z +10034,371,1,5171,4.99,2005-07-09T09:26:55Z,2020-02-15T06:59:53Z +10035,371,2,5614,0.99,2005-07-10T05:16:56Z,2020-02-15T06:59:53Z +10036,371,1,6000,2.99,2005-07-11T01:23:06Z,2020-02-15T06:59:53Z +10037,371,1,6460,1.99,2005-07-12T01:13:44Z,2020-02-15T06:59:53Z +10038,371,1,6922,0.99,2005-07-12T22:39:48Z,2020-02-15T06:59:53Z +10039,371,1,7408,3.99,2005-07-27T16:31:40Z,2020-02-15T06:59:53Z +10040,371,1,8138,4.99,2005-07-28T20:12:17Z,2020-02-15T06:59:53Z +10041,371,1,9008,4.99,2005-07-30T05:10:26Z,2020-02-15T06:59:53Z +10042,371,1,9117,8.99,2005-07-30T09:20:59Z,2020-02-15T06:59:53Z +10043,371,1,9635,0.99,2005-07-31T05:12:27Z,2020-02-15T06:59:53Z +10044,371,1,11086,10.99,2005-08-02T07:38:44Z,2020-02-15T06:59:53Z +10045,371,2,12397,9.99,2005-08-18T09:12:52Z,2020-02-15T06:59:53Z +10046,371,2,12584,7.99,2005-08-18T15:51:36Z,2020-02-15T06:59:53Z +10047,371,1,13028,2.99,2005-08-19T08:27:23Z,2020-02-15T06:59:53Z +10048,371,2,13143,3.99,2005-08-19T12:44:38Z,2020-02-15T06:59:53Z +10049,371,1,13191,4.99,2005-08-19T14:28:48Z,2020-02-15T06:59:53Z +10050,371,2,13953,4.99,2005-08-20T18:00:37Z,2020-02-15T06:59:53Z +10051,371,1,14384,2.99,2005-08-21T10:02:37Z,2020-02-15T06:59:53Z +10052,371,1,15786,0.99,2005-08-23T13:48:34Z,2020-02-15T06:59:53Z +10053,371,1,15824,2.99,2005-08-23T15:09:17Z,2020-02-15T06:59:53Z +10054,372,1,617,2.99,2005-05-28T15:49:14Z,2020-02-15T06:59:53Z +10055,372,1,638,2.99,2005-05-28T18:24:43Z,2020-02-15T06:59:53Z +10056,372,1,2315,2.99,2005-06-18T09:03:39Z,2020-02-15T06:59:53Z +10057,372,1,2959,4.99,2005-06-20T07:07:54Z,2020-02-15T06:59:53Z +10058,372,1,3283,3.99,2005-06-21T06:19:07Z,2020-02-15T06:59:53Z +10059,372,1,5229,4.99,2005-07-09T12:30:18Z,2020-02-15T06:59:53Z +10060,372,1,5314,2.99,2005-07-09T16:05:28Z,2020-02-15T06:59:53Z +10061,372,1,5352,2.99,2005-07-09T17:54:58Z,2020-02-15T06:59:53Z +10062,372,1,5501,6.99,2005-07-10T00:33:48Z,2020-02-15T06:59:53Z +10063,372,2,5914,7.99,2005-07-10T21:01:12Z,2020-02-15T06:59:53Z +10064,372,2,6692,4.99,2005-07-12T12:35:39Z,2020-02-15T06:59:53Z +10065,372,1,7190,4.99,2005-07-27T08:36:01Z,2020-02-15T06:59:53Z +10066,372,2,7234,5.99,2005-07-27T10:08:45Z,2020-02-15T06:59:53Z +10067,372,2,7735,4.99,2005-07-28T05:09:56Z,2020-02-15T06:59:53Z +10068,372,2,8009,7.99,2005-07-28T15:25:58Z,2020-02-15T06:59:53Z +10069,372,1,8059,2.99,2005-07-28T17:09:59Z,2020-02-15T06:59:53Z +10070,372,1,8358,0.99,2005-07-29T05:00:58Z,2020-02-15T06:59:53Z +10071,372,1,8724,0.99,2005-07-29T18:05:21Z,2020-02-15T06:59:53Z +10072,372,1,8755,2.99,2005-07-29T19:18:31Z,2020-02-15T06:59:53Z +10073,372,2,8837,8.99,2005-07-29T22:49:00Z,2020-02-15T06:59:53Z +10074,372,1,9128,5.99,2005-07-30T09:51:14Z,2020-02-15T06:59:53Z +10075,372,2,11134,10.99,2005-08-02T09:19:22Z,2020-02-15T06:59:53Z +10076,372,2,11438,3.99,2005-08-02T20:21:08Z,2020-02-15T06:59:53Z +10077,372,2,11555,4.99,2005-08-17T01:08:59Z,2020-02-15T06:59:53Z +10078,372,1,12224,0.99,2005-08-18T02:59:09Z,2020-02-15T06:59:53Z +10079,372,1,12714,3.99,2005-08-18T21:08:01Z,2020-02-15T06:59:53Z +10080,372,2,13402,4.99,2005-08-19T22:16:53Z,2020-02-15T06:59:53Z +10081,372,2,13871,8.99,2005-08-20T15:10:13Z,2020-02-15T06:59:53Z +10082,372,2,14037,9.99,2005-08-20T21:35:58Z,2020-02-15T06:59:53Z +10083,372,1,14211,4.99,2005-08-21T04:29:11Z,2020-02-15T06:59:53Z +10084,372,1,14331,2.99,2005-08-21T08:29:38Z,2020-02-15T06:59:53Z +10085,372,1,14770,1.99,2005-08-21T23:47:16Z,2020-02-15T06:59:53Z +10086,372,2,15041,0.99,2005-08-22T09:43:18Z,2020-02-15T06:59:53Z +10087,372,1,15563,2.99,2005-08-23T05:08:58Z,2020-02-15T06:59:53Z +10088,373,2,257,4.99,2005-05-26T15:27:05Z,2020-02-15T06:59:53Z +10089,373,1,1472,6.99,2005-06-15T20:54:55Z,2020-02-15T06:59:53Z +10090,373,1,3161,2.99,2005-06-20T21:21:01Z,2020-02-15T06:59:53Z +10091,373,2,3609,2.99,2005-07-06T05:36:22Z,2020-02-15T06:59:53Z +10092,373,2,3667,4.99,2005-07-06T08:36:34Z,2020-02-15T06:59:53Z +10093,373,1,4325,7.99,2005-07-07T17:59:24Z,2020-02-15T06:59:53Z +10094,373,1,5120,5.99,2005-07-09T07:14:23Z,2020-02-15T06:59:53Z +10095,373,1,6202,3.99,2005-07-11T12:24:25Z,2020-02-15T06:59:53Z +10096,373,2,6311,0.99,2005-07-11T18:18:52Z,2020-02-15T06:59:53Z +10097,373,1,6944,4.99,2005-07-26T23:34:02Z,2020-02-15T06:59:53Z +10098,373,1,7094,0.99,2005-07-27T04:47:33Z,2020-02-15T06:59:53Z +10099,373,2,7206,3.99,2005-07-27T09:07:05Z,2020-02-15T06:59:53Z +10100,373,1,7615,0.99,2005-07-28T00:15:24Z,2020-02-15T06:59:53Z +10101,373,1,8611,3.99,2005-07-29T13:26:21Z,2020-02-15T06:59:53Z +10102,373,2,9327,8.99,2005-07-30T17:31:03Z,2020-02-15T06:59:53Z +10103,373,1,9397,4.99,2005-07-30T20:07:29Z,2020-02-15T06:59:53Z +10104,373,2,9480,0.99,2005-07-30T23:26:03Z,2020-02-15T06:59:53Z +10105,373,1,9966,4.99,2005-07-31T16:26:46Z,2020-02-15T06:59:53Z +10106,373,1,10010,6.99,2005-07-31T18:01:36Z,2020-02-15T06:59:53Z +10107,373,1,10221,4.99,2005-08-01T01:16:50Z,2020-02-15T06:59:53Z +10108,373,1,10758,5.99,2005-08-01T20:22:51Z,2020-02-15T06:59:53Z +10109,373,2,11066,7.99,2005-08-02T06:58:32Z,2020-02-15T06:59:53Z +10110,373,2,11512,7.99,2005-08-16T23:51:06Z,2020-02-15T06:59:53Z +10111,373,2,11663,3.99,2005-08-17T05:30:19Z,2020-02-15T06:59:53Z +10112,373,2,11976,3.99,2005-08-17T17:59:19Z,2020-02-15T06:59:53Z +10113,373,1,12142,5.99,2005-08-18T00:04:12Z,2020-02-15T06:59:53Z +10114,373,2,12536,5.99,2005-08-18T14:06:06Z,2020-02-15T06:59:53Z +10115,373,1,12748,7.99,2005-08-18T22:29:05Z,2020-02-15T06:59:53Z +10116,373,2,12780,0.99,2005-08-18T23:48:16Z,2020-02-15T06:59:53Z +10117,373,2,13299,2.99,2005-08-19T18:46:33Z,2020-02-15T06:59:53Z +10118,373,1,13329,3.99,2005-08-19T19:56:55Z,2020-02-15T06:59:53Z +10119,373,2,13467,2.99,2005-08-20T00:56:44Z,2020-02-15T06:59:53Z +10120,373,2,15014,6.99,2005-08-22T08:43:11Z,2020-02-15T06:59:53Z +10121,373,1,15068,3.99,2005-08-22T10:50:13Z,2020-02-15T06:59:53Z +10122,373,1,11739,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10123,374,1,521,0.99,2005-05-28T03:32:22Z,2020-02-15T06:59:53Z +10124,374,2,910,2.99,2005-05-30T10:46:16Z,2020-02-15T06:59:53Z +10125,374,2,919,0.99,2005-05-30T11:35:06Z,2020-02-15T06:59:53Z +10126,374,1,1548,1.99,2005-06-16T01:43:33Z,2020-02-15T06:59:53Z +10127,374,2,2046,1.99,2005-06-17T14:39:50Z,2020-02-15T06:59:53Z +10128,374,2,2487,4.99,2005-06-18T21:32:54Z,2020-02-15T06:59:53Z +10129,374,2,2641,2.99,2005-06-19T09:38:33Z,2020-02-15T06:59:53Z +10130,374,1,3797,1.99,2005-07-06T14:54:52Z,2020-02-15T06:59:53Z +10131,374,1,5463,4.99,2005-07-09T22:57:02Z,2020-02-15T06:59:53Z +10132,374,1,5570,6.99,2005-07-10T03:46:47Z,2020-02-15T06:59:53Z +10133,374,2,5591,3.99,2005-07-10T04:25:03Z,2020-02-15T06:59:53Z +10134,374,2,5945,2.99,2005-07-10T22:52:42Z,2020-02-15T06:59:53Z +10135,374,2,6315,0.99,2005-07-11T18:42:49Z,2020-02-15T06:59:53Z +10136,374,2,7837,0.99,2005-07-28T08:58:32Z,2020-02-15T06:59:53Z +10137,374,2,8586,7.99,2005-07-29T12:16:34Z,2020-02-15T06:59:53Z +10138,374,2,9113,0.99,2005-07-30T09:09:03Z,2020-02-15T06:59:53Z +10139,374,1,9866,6.99,2005-07-31T13:13:50Z,2020-02-15T06:59:53Z +10140,374,1,10695,2.99,2005-08-01T18:16:20Z,2020-02-15T06:59:53Z +10141,374,1,11619,0.99,2005-08-17T04:03:26Z,2020-02-15T06:59:53Z +10142,374,2,12696,2.99,2005-08-18T20:13:08Z,2020-02-15T06:59:53Z +10143,374,1,13337,2.99,2005-08-19T20:06:57Z,2020-02-15T06:59:53Z +10144,374,2,13734,4.99,2005-08-20T10:29:57Z,2020-02-15T06:59:53Z +10145,374,2,14524,8.99,2005-08-21T15:05:27Z,2020-02-15T06:59:53Z +10146,374,2,15053,5.99,2005-08-22T10:13:09Z,2020-02-15T06:59:53Z +10147,374,1,15200,2.99,2005-08-22T16:22:53Z,2020-02-15T06:59:53Z +10148,374,2,15202,4.99,2005-08-22T16:26:53Z,2020-02-15T06:59:53Z +10149,374,2,15366,6.99,2005-08-22T21:45:57Z,2020-02-15T06:59:53Z +10150,374,2,15966,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10151,375,2,307,8.99,2005-05-26T21:48:13Z,2020-02-15T06:59:53Z +10152,375,1,412,4.99,2005-05-27T14:17:23Z,2020-02-15T06:59:53Z +10153,375,2,749,4.99,2005-05-29T09:33:33Z,2020-02-15T06:59:53Z +10154,375,1,873,2.99,2005-05-30T05:15:20Z,2020-02-15T06:59:53Z +10155,375,2,1404,2.99,2005-06-15T16:38:53Z,2020-02-15T06:59:53Z +10156,375,1,1499,5.99,2005-06-15T21:58:07Z,2020-02-15T06:59:53Z +10157,375,1,2236,4.99,2005-06-18T04:12:33Z,2020-02-15T06:59:53Z +10158,375,1,3981,6.99,2005-07-06T23:12:12Z,2020-02-15T06:59:53Z +10159,375,2,4335,4.99,2005-07-07T18:33:57Z,2020-02-15T06:59:53Z +10160,375,2,5474,2.99,2005-07-09T23:23:57Z,2020-02-15T06:59:53Z +10161,375,1,7856,4.99,2005-07-28T09:48:24Z,2020-02-15T06:59:53Z +10162,375,2,8900,2.99,2005-07-30T01:07:03Z,2020-02-15T06:59:53Z +10163,375,1,10274,0.99,2005-08-01T03:16:51Z,2020-02-15T06:59:53Z +10164,375,2,10589,1.99,2005-08-01T14:11:09Z,2020-02-15T06:59:53Z +10165,375,1,10640,0.99,2005-08-01T15:44:51Z,2020-02-15T06:59:53Z +10166,375,1,10672,4.99,2005-08-01T17:10:54Z,2020-02-15T06:59:53Z +10167,375,1,10859,5.99,2005-08-02T00:11:39Z,2020-02-15T06:59:53Z +10168,375,1,10961,6.99,2005-08-02T03:47:55Z,2020-02-15T06:59:53Z +10169,375,2,11008,5.99,2005-08-02T05:06:17Z,2020-02-15T06:59:53Z +10170,375,2,12122,9.99,2005-08-17T23:20:45Z,2020-02-15T06:59:53Z +10171,375,2,12663,0.99,2005-08-18T19:10:52Z,2020-02-15T06:59:53Z +10172,375,1,13836,4.99,2005-08-20T14:18:16Z,2020-02-15T06:59:53Z +10173,375,1,15004,2.99,2005-08-22T08:15:21Z,2020-02-15T06:59:53Z +10174,375,1,15505,4.99,2005-08-23T02:46:13Z,2020-02-15T06:59:53Z +10175,376,1,554,0.99,2005-05-28T08:23:16Z,2020-02-15T06:59:53Z +10176,376,2,1208,0.99,2005-06-15T02:30:03Z,2020-02-15T06:59:53Z +10177,376,1,2779,0.99,2005-06-19T18:19:07Z,2020-02-15T06:59:53Z +10178,376,2,3719,2.99,2005-07-06T11:05:55Z,2020-02-15T06:59:53Z +10179,376,1,4163,0.99,2005-07-07T09:19:28Z,2020-02-15T06:59:53Z +10180,376,2,4166,8.99,2005-07-07T09:33:30Z,2020-02-15T06:59:53Z +10181,376,1,4320,3.99,2005-07-07T17:51:59Z,2020-02-15T06:59:53Z +10182,376,1,4554,5.99,2005-07-08T04:48:03Z,2020-02-15T06:59:53Z +10183,376,1,4869,4.99,2005-07-08T19:14:05Z,2020-02-15T06:59:53Z +10184,376,1,5675,4.99,2005-07-10T08:31:06Z,2020-02-15T06:59:53Z +10185,376,1,6524,6.99,2005-07-12T04:14:35Z,2020-02-15T06:59:53Z +10186,376,1,6545,8.99,2005-07-12T04:56:30Z,2020-02-15T06:59:53Z +10187,376,2,6807,2.99,2005-07-12T17:33:53Z,2020-02-15T06:59:53Z +10188,376,1,8269,2.99,2005-07-29T01:26:54Z,2020-02-15T06:59:53Z +10189,376,1,8420,5.99,2005-07-29T07:00:45Z,2020-02-15T06:59:53Z +10190,376,1,9773,4.99,2005-07-31T09:56:56Z,2020-02-15T06:59:53Z +10191,376,1,9828,2.99,2005-07-31T11:56:57Z,2020-02-15T06:59:53Z +10192,376,1,9872,0.99,2005-07-31T13:27:55Z,2020-02-15T06:59:53Z +10193,376,2,10413,3.99,2005-08-01T07:59:39Z,2020-02-15T06:59:53Z +10194,376,1,10810,3.99,2005-08-01T22:40:39Z,2020-02-15T06:59:53Z +10195,376,1,11144,4.99,2005-08-02T09:39:17Z,2020-02-15T06:59:53Z +10196,376,2,11792,4.99,2005-08-17T11:03:53Z,2020-02-15T06:59:53Z +10197,376,1,11851,4.99,2005-08-17T13:30:27Z,2020-02-15T06:59:53Z +10198,376,1,13009,0.99,2005-08-19T07:50:35Z,2020-02-15T06:59:53Z +10199,376,1,13141,0.99,2005-08-19T12:41:41Z,2020-02-15T06:59:53Z +10200,376,2,13761,4.99,2005-08-20T11:28:50Z,2020-02-15T06:59:53Z +10201,376,1,15107,4.99,2005-08-22T12:05:02Z,2020-02-15T06:59:53Z +10202,376,1,15382,2.99,2005-08-22T22:30:50Z,2020-02-15T06:59:53Z +10203,377,2,2556,3.99,2005-06-19T03:07:32Z,2020-02-15T06:59:53Z +10204,377,1,3080,1.99,2005-06-20T15:22:32Z,2020-02-15T06:59:53Z +10205,377,2,3086,0.99,2005-06-20T15:42:40Z,2020-02-15T06:59:53Z +10206,377,2,3136,2.99,2005-06-20T19:39:08Z,2020-02-15T06:59:53Z +10207,377,2,3443,4.99,2005-06-21T20:19:00Z,2020-02-15T06:59:53Z +10208,377,1,3858,2.99,2005-07-06T17:17:57Z,2020-02-15T06:59:53Z +10209,377,2,4053,0.99,2005-07-07T03:39:22Z,2020-02-15T06:59:53Z +10210,377,1,4077,0.99,2005-07-07T04:53:40Z,2020-02-15T06:59:53Z +10211,377,1,4225,0.99,2005-07-07T12:24:37Z,2020-02-15T06:59:53Z +10212,377,2,6893,7.99,2005-07-12T21:20:11Z,2020-02-15T06:59:53Z +10213,377,1,7697,1.99,2005-07-28T03:43:45Z,2020-02-15T06:59:53Z +10214,377,2,8018,10.99,2005-07-28T15:36:48Z,2020-02-15T06:59:53Z +10215,377,2,8916,4.99,2005-07-30T01:42:21Z,2020-02-15T06:59:53Z +10216,377,2,9461,3.99,2005-07-30T22:29:13Z,2020-02-15T06:59:53Z +10217,377,1,9564,0.99,2005-07-31T02:31:37Z,2020-02-15T06:59:53Z +10218,377,1,10013,4.99,2005-07-31T18:08:21Z,2020-02-15T06:59:53Z +10219,377,1,10183,8.99,2005-08-01T00:08:01Z,2020-02-15T06:59:53Z +10220,377,1,10738,3.99,2005-08-01T19:39:08Z,2020-02-15T06:59:53Z +10221,377,1,10943,2.99,2005-08-02T03:17:29Z,2020-02-15T06:59:53Z +10222,377,1,12390,1.99,2005-08-18T08:51:42Z,2020-02-15T06:59:53Z +10223,377,1,12549,4.99,2005-08-18T14:38:07Z,2020-02-15T06:59:53Z +10224,377,1,13249,2.99,2005-08-19T16:47:41Z,2020-02-15T06:59:53Z +10225,377,1,13275,0.99,2005-08-19T17:53:38Z,2020-02-15T06:59:53Z +10226,377,2,15088,0.99,2005-08-22T11:28:26Z,2020-02-15T06:59:53Z +10227,377,1,15995,0.99,2005-08-23T20:29:56Z,2020-02-15T06:59:53Z +10228,377,1,15999,7.99,2005-08-23T20:44:10Z,2020-02-15T06:59:53Z +10229,378,1,347,0.99,2005-05-27T04:40:33Z,2020-02-15T06:59:53Z +10230,378,2,1623,4.99,2005-06-16T07:48:50Z,2020-02-15T06:59:53Z +10231,378,1,1662,5.99,2005-06-16T10:13:35Z,2020-02-15T06:59:53Z +10232,378,2,2134,7.99,2005-06-17T21:13:44Z,2020-02-15T06:59:53Z +10233,378,2,2713,4.99,2005-06-19T14:23:09Z,2020-02-15T06:59:53Z +10234,378,1,3759,4.99,2005-07-06T12:46:38Z,2020-02-15T06:59:53Z +10235,378,2,4755,0.99,2005-07-08T14:23:41Z,2020-02-15T06:59:53Z +10236,378,1,5578,1.99,2005-07-10T04:00:31Z,2020-02-15T06:59:53Z +10237,378,2,6233,1.99,2005-07-11T14:10:47Z,2020-02-15T06:59:53Z +10238,378,1,7888,0.99,2005-07-28T10:40:24Z,2020-02-15T06:59:53Z +10239,378,2,8740,2.99,2005-07-29T18:41:31Z,2020-02-15T06:59:53Z +10240,378,2,9668,3.99,2005-07-31T06:31:03Z,2020-02-15T06:59:53Z +10241,378,1,9868,2.99,2005-07-31T13:20:08Z,2020-02-15T06:59:53Z +10242,378,1,10917,4.99,2005-08-02T02:06:18Z,2020-02-15T06:59:53Z +10243,378,1,11111,4.99,2005-08-02T08:21:27Z,2020-02-15T06:59:53Z +10244,378,1,12596,2.99,2005-08-18T16:29:35Z,2020-02-15T06:59:53Z +10245,378,1,12828,4.99,2005-08-19T01:37:47Z,2020-02-15T06:59:53Z +10246,378,2,14502,4.99,2005-08-21T14:22:28Z,2020-02-15T06:59:53Z +10247,378,1,14971,2.99,2005-08-22T06:52:49Z,2020-02-15T06:59:53Z +10248,379,2,209,4.99,2005-05-26T08:14:01Z,2020-02-15T06:59:53Z +10249,379,1,863,4.99,2005-05-30T03:14:59Z,2020-02-15T06:59:53Z +10250,379,1,1383,8.99,2005-06-15T15:20:06Z,2020-02-15T06:59:53Z +10251,379,1,2313,5.99,2005-06-18T08:56:45Z,2020-02-15T06:59:53Z +10252,379,1,2926,2.99,2005-06-20T04:37:45Z,2020-02-15T06:59:53Z +10253,379,1,3788,4.99,2005-07-06T14:02:02Z,2020-02-15T06:59:53Z +10254,379,2,4740,2.99,2005-07-08T13:30:35Z,2020-02-15T06:59:53Z +10255,379,1,5402,4.99,2005-07-09T20:01:58Z,2020-02-15T06:59:53Z +10256,379,1,6235,7.99,2005-07-11T14:17:51Z,2020-02-15T06:59:53Z +10257,379,2,7041,4.99,2005-07-27T03:18:32Z,2020-02-15T06:59:53Z +10258,379,1,10041,4.99,2005-07-31T19:01:02Z,2020-02-15T06:59:53Z +10259,379,2,11457,3.99,2005-08-02T21:14:16Z,2020-02-15T06:59:53Z +10260,379,1,12503,4.99,2005-08-18T13:16:46Z,2020-02-15T06:59:53Z +10261,379,1,13334,0.99,2005-08-19T20:02:33Z,2020-02-15T06:59:53Z +10262,379,2,13397,7.99,2005-08-19T22:06:35Z,2020-02-15T06:59:53Z +10263,379,1,13485,0.99,2005-08-20T01:20:14Z,2020-02-15T06:59:53Z +10264,379,1,14011,5.99,2005-08-20T20:32:56Z,2020-02-15T06:59:53Z +10265,379,2,14152,2.99,2005-08-21T02:23:50Z,2020-02-15T06:59:53Z +10266,379,1,14470,0.99,2005-08-21T13:09:41Z,2020-02-15T06:59:53Z +10267,379,1,14886,4.99,2005-08-22T03:59:01Z,2020-02-15T06:59:53Z +10268,379,2,15399,4.99,2005-08-22T23:11:59Z,2020-02-15T06:59:53Z +10269,379,1,15446,4.99,2005-08-23T00:49:24Z,2020-02-15T06:59:53Z +10270,379,2,15930,3.99,2005-08-23T18:26:51Z,2020-02-15T06:59:53Z +10271,380,1,847,3.99,2005-05-30T01:18:15Z,2020-02-15T06:59:53Z +10272,380,1,1868,3.99,2005-06-17T02:03:22Z,2020-02-15T06:59:53Z +10273,380,1,1984,2.99,2005-06-17T10:25:28Z,2020-02-15T06:59:53Z +10274,380,1,2018,3.99,2005-06-17T12:35:58Z,2020-02-15T06:59:53Z +10275,380,1,2440,2.99,2005-06-18T18:41:09Z,2020-02-15T06:59:53Z +10276,380,1,2464,4.99,2005-06-18T20:06:05Z,2020-02-15T06:59:53Z +10277,380,2,2998,1.99,2005-06-20T09:30:22Z,2020-02-15T06:59:53Z +10278,380,2,3099,1.99,2005-06-20T16:44:33Z,2020-02-15T06:59:53Z +10279,380,1,3260,4.99,2005-06-21T03:59:13Z,2020-02-15T06:59:53Z +10280,380,1,3637,2.99,2005-07-06T07:06:31Z,2020-02-15T06:59:53Z +10281,380,1,3688,4.99,2005-07-06T09:41:53Z,2020-02-15T06:59:53Z +10282,380,1,4675,2.99,2005-07-08T10:24:22Z,2020-02-15T06:59:53Z +10283,380,2,4706,4.99,2005-07-08T11:51:41Z,2020-02-15T06:59:53Z +10284,380,2,5339,0.99,2005-07-09T17:09:17Z,2020-02-15T06:59:53Z +10285,380,2,7021,8.99,2005-07-27T02:26:38Z,2020-02-15T06:59:53Z +10286,380,2,7167,2.99,2005-07-27T07:37:26Z,2020-02-15T06:59:53Z +10287,380,2,7435,0.99,2005-07-27T17:38:44Z,2020-02-15T06:59:53Z +10288,380,2,7443,2.99,2005-07-27T17:47:43Z,2020-02-15T06:59:53Z +10289,380,1,7773,2.99,2005-07-28T07:02:17Z,2020-02-15T06:59:53Z +10290,380,1,7974,3.99,2005-07-28T14:11:57Z,2020-02-15T06:59:53Z +10291,380,1,9056,0.99,2005-07-30T07:13:20Z,2020-02-15T06:59:53Z +10292,380,1,9261,6.99,2005-07-30T14:39:35Z,2020-02-15T06:59:53Z +10293,380,1,9710,10.99,2005-07-31T08:05:31Z,2020-02-15T06:59:53Z +10294,380,2,10450,1.99,2005-08-01T09:10:03Z,2020-02-15T06:59:53Z +10295,380,1,10983,3.99,2005-08-02T04:24:23Z,2020-02-15T06:59:53Z +10296,380,1,11936,0.99,2005-08-17T16:45:34Z,2020-02-15T06:59:53Z +10297,380,2,11945,0.99,2005-08-17T17:05:33Z,2020-02-15T06:59:53Z +10298,380,1,12636,3.99,2005-08-18T18:00:29Z,2020-02-15T06:59:53Z +10299,380,1,12996,6.99,2005-08-19T07:31:32Z,2020-02-15T06:59:53Z +10300,380,1,14529,6.99,2005-08-21T15:08:31Z,2020-02-15T06:59:53Z +10301,380,1,14935,1.99,2005-08-22T05:47:31Z,2020-02-15T06:59:53Z +10302,380,2,15175,5.99,2005-08-22T15:29:15Z,2020-02-15T06:59:53Z +10303,380,1,15361,2.99,2005-08-22T21:39:45Z,2020-02-15T06:59:53Z +10304,380,2,15636,2.99,2005-08-23T07:50:46Z,2020-02-15T06:59:53Z +10305,380,1,15697,2.99,2005-08-23T10:04:36Z,2020-02-15T06:59:53Z +10306,380,2,15748,2.99,2005-08-23T12:33:00Z,2020-02-15T06:59:53Z +10307,381,2,169,0.99,2005-05-26T03:09:30Z,2020-02-15T06:59:53Z +10308,381,2,406,2.99,2005-05-27T13:46:46Z,2020-02-15T06:59:53Z +10309,381,1,835,2.99,2005-05-29T23:37:00Z,2020-02-15T06:59:53Z +10310,381,1,1402,3.99,2005-06-15T16:31:08Z,2020-02-15T06:59:53Z +10311,381,1,1878,1.99,2005-06-17T02:55:32Z,2020-02-15T06:59:53Z +10312,381,2,2410,2.99,2005-06-18T16:55:08Z,2020-02-15T06:59:53Z +10313,381,1,2418,4.99,2005-06-18T17:14:42Z,2020-02-15T06:59:53Z +10314,381,2,3425,2.99,2005-06-21T18:07:07Z,2020-02-15T06:59:53Z +10315,381,2,3812,0.99,2005-07-06T15:22:19Z,2020-02-15T06:59:53Z +10316,381,2,3970,2.99,2005-07-06T22:48:17Z,2020-02-15T06:59:53Z +10317,381,1,4735,0.99,2005-07-08T13:12:27Z,2020-02-15T06:59:53Z +10318,381,2,5689,0.99,2005-07-10T09:24:17Z,2020-02-15T06:59:53Z +10319,381,2,6116,2.99,2005-07-11T07:37:38Z,2020-02-15T06:59:53Z +10320,381,2,6451,4.99,2005-07-12T00:52:19Z,2020-02-15T06:59:53Z +10321,381,2,6778,2.99,2005-07-12T16:06:00Z,2020-02-15T06:59:53Z +10322,381,1,7375,2.99,2005-07-27T15:22:33Z,2020-02-15T06:59:53Z +10323,381,1,7645,2.99,2005-07-28T01:27:42Z,2020-02-15T06:59:53Z +10324,381,2,8688,0.99,2005-07-29T16:31:32Z,2020-02-15T06:59:53Z +10325,381,2,9144,0.99,2005-07-30T10:22:15Z,2020-02-15T06:59:53Z +10326,381,2,9173,4.99,2005-07-30T11:40:10Z,2020-02-15T06:59:53Z +10327,381,1,9822,2.99,2005-07-31T11:48:25Z,2020-02-15T06:59:53Z +10328,381,2,10033,4.99,2005-07-31T18:44:29Z,2020-02-15T06:59:53Z +10329,381,1,10608,0.99,2005-08-01T14:48:41Z,2020-02-15T06:59:53Z +10330,381,2,10705,0.99,2005-08-01T18:38:54Z,2020-02-15T06:59:53Z +10331,381,1,11519,2.99,2005-08-17T00:01:27Z,2020-02-15T06:59:53Z +10332,381,2,12135,2.99,2005-08-17T23:50:24Z,2020-02-15T06:59:53Z +10333,381,2,12237,4.99,2005-08-18T03:24:38Z,2020-02-15T06:59:53Z +10334,381,2,12632,2.99,2005-08-18T17:54:21Z,2020-02-15T06:59:53Z +10335,381,2,13202,8.99,2005-08-19T14:58:30Z,2020-02-15T06:59:53Z +10336,381,2,13430,0.99,2005-08-19T23:25:43Z,2020-02-15T06:59:53Z +10337,381,1,13614,0.99,2005-08-20T06:28:37Z,2020-02-15T06:59:53Z +10338,381,2,13995,2.99,2005-08-20T19:34:43Z,2020-02-15T06:59:53Z +10339,381,1,14198,4.99,2005-08-21T03:48:31Z,2020-02-15T06:59:53Z +10340,381,2,15299,4.99,2005-08-22T19:42:57Z,2020-02-15T06:59:53Z +10341,381,1,15747,4.99,2005-08-23T12:29:24Z,2020-02-15T06:59:53Z +10342,382,2,356,2.99,2005-05-27T06:32:30Z,2020-02-15T06:59:53Z +10343,382,1,522,2.99,2005-05-28T03:33:20Z,2020-02-15T06:59:53Z +10344,382,1,2389,0.99,2005-06-18T15:27:47Z,2020-02-15T06:59:53Z +10345,382,1,2468,4.99,2005-06-18T20:23:52Z,2020-02-15T06:59:53Z +10346,382,1,2489,1.99,2005-06-18T22:00:44Z,2020-02-15T06:59:53Z +10347,382,1,2514,2.99,2005-06-18T23:56:44Z,2020-02-15T06:59:53Z +10348,382,2,3125,4.99,2005-06-20T18:31:58Z,2020-02-15T06:59:53Z +10349,382,2,3480,3.99,2005-07-05T23:11:43Z,2020-02-15T06:59:53Z +10350,382,2,4351,4.99,2005-07-07T19:04:24Z,2020-02-15T06:59:53Z +10351,382,1,5004,4.99,2005-07-09T01:20:50Z,2020-02-15T06:59:53Z +10352,382,1,5816,0.99,2005-07-10T15:48:47Z,2020-02-15T06:59:53Z +10353,382,2,7625,0.99,2005-07-28T00:47:56Z,2020-02-15T06:59:53Z +10354,382,2,8777,0.99,2005-07-29T20:10:21Z,2020-02-15T06:59:53Z +10355,382,1,8871,9.99,2005-07-30T00:12:41Z,2020-02-15T06:59:53Z +10356,382,1,8993,4.99,2005-07-30T04:51:25Z,2020-02-15T06:59:53Z +10357,382,1,9067,6.99,2005-07-30T07:31:01Z,2020-02-15T06:59:53Z +10358,382,2,9555,0.99,2005-07-31T02:11:16Z,2020-02-15T06:59:53Z +10359,382,2,10327,3.99,2005-08-01T04:55:35Z,2020-02-15T06:59:53Z +10360,382,2,12229,0.99,2005-08-18T03:08:23Z,2020-02-15T06:59:53Z +10361,382,2,12529,0.99,2005-08-18T13:53:36Z,2020-02-15T06:59:53Z +10362,382,1,14009,4.99,2005-08-20T20:26:53Z,2020-02-15T06:59:53Z +10363,382,2,14300,4.99,2005-08-21T07:19:37Z,2020-02-15T06:59:53Z +10364,382,2,14354,5.99,2005-08-21T09:08:14Z,2020-02-15T06:59:53Z +10365,382,2,15939,7.99,2005-08-23T18:44:21Z,2020-02-15T06:59:53Z +10366,383,2,63,0.99,2005-05-25T09:19:16Z,2020-02-15T06:59:53Z +10367,383,1,766,8.99,2005-05-29T11:47:02Z,2020-02-15T06:59:53Z +10368,383,1,1831,7.99,2005-06-16T22:22:17Z,2020-02-15T06:59:53Z +10369,383,2,2228,2.99,2005-06-18T03:44:50Z,2020-02-15T06:59:53Z +10370,383,1,2252,2.99,2005-06-18T05:05:18Z,2020-02-15T06:59:53Z +10371,383,2,2318,2.99,2005-06-18T09:13:54Z,2020-02-15T06:59:53Z +10372,383,1,2609,7.99,2005-06-19T07:13:12Z,2020-02-15T06:59:53Z +10373,383,1,3091,2.99,2005-06-20T16:02:59Z,2020-02-15T06:59:53Z +10374,383,2,4747,5.99,2005-07-08T13:53:01Z,2020-02-15T06:59:53Z +10375,383,2,6091,4.99,2005-07-11T05:49:18Z,2020-02-15T06:59:53Z +10376,383,2,6244,0.99,2005-07-11T14:53:38Z,2020-02-15T06:59:53Z +10377,383,1,6775,4.99,2005-07-12T16:01:44Z,2020-02-15T06:59:53Z +10378,383,1,7367,3.99,2005-07-27T15:05:45Z,2020-02-15T06:59:53Z +10379,383,2,8367,2.99,2005-07-29T05:11:19Z,2020-02-15T06:59:53Z +10380,383,1,8635,0.99,2005-07-29T14:22:48Z,2020-02-15T06:59:53Z +10381,383,1,9653,0.99,2005-07-31T05:55:38Z,2020-02-15T06:59:53Z +10382,383,1,9678,0.99,2005-07-31T06:40:47Z,2020-02-15T06:59:53Z +10383,383,2,10515,4.99,2005-08-01T11:41:33Z,2020-02-15T06:59:53Z +10384,383,1,10971,4.99,2005-08-02T04:08:17Z,2020-02-15T06:59:53Z +10385,383,2,10993,0.99,2005-08-02T04:45:01Z,2020-02-15T06:59:53Z +10386,383,2,11122,0.99,2005-08-02T08:49:09Z,2020-02-15T06:59:53Z +10387,383,1,11592,2.99,2005-08-17T02:36:04Z,2020-02-15T06:59:53Z +10388,383,1,12735,4.99,2005-08-18T22:04:54Z,2020-02-15T06:59:53Z +10389,383,2,14039,4.99,2005-08-20T21:39:43Z,2020-02-15T06:59:53Z +10390,383,2,14678,4.99,2005-08-21T20:12:43Z,2020-02-15T06:59:53Z +10391,383,1,15416,1.99,2005-08-22T23:51:23Z,2020-02-15T06:59:53Z +10392,383,1,15881,6.99,2005-08-23T16:44:25Z,2020-02-15T06:59:53Z +10393,384,2,103,4.99,2005-05-25T17:30:42Z,2020-02-15T06:59:53Z +10394,384,2,279,2.99,2005-05-26T18:02:50Z,2020-02-15T06:59:53Z +10395,384,1,898,0.99,2005-05-30T09:26:19Z,2020-02-15T06:59:53Z +10396,384,2,1013,2.99,2005-05-31T02:37:00Z,2020-02-15T06:59:53Z +10397,384,1,1961,0.99,2005-06-17T09:02:58Z,2020-02-15T06:59:53Z +10398,384,2,2020,0.99,2005-06-17T12:39:50Z,2020-02-15T06:59:53Z +10399,384,1,2378,7.99,2005-06-18T14:57:49Z,2020-02-15T06:59:53Z +10400,384,2,2510,5.99,2005-06-18T23:44:21Z,2020-02-15T06:59:53Z +10401,384,2,2935,3.99,2005-06-20T05:07:24Z,2020-02-15T06:59:53Z +10402,384,1,3088,9.99,2005-06-20T15:56:05Z,2020-02-15T06:59:53Z +10403,384,2,3101,4.99,2005-06-20T16:48:58Z,2020-02-15T06:59:53Z +10404,384,2,4424,0.99,2005-07-07T22:14:43Z,2020-02-15T06:59:53Z +10405,384,2,5250,0.99,2005-07-09T13:35:32Z,2020-02-15T06:59:53Z +10406,384,1,5608,4.99,2005-07-10T05:08:26Z,2020-02-15T06:59:53Z +10407,384,2,5797,4.99,2005-07-10T14:43:52Z,2020-02-15T06:59:53Z +10408,384,2,5966,2.99,2005-07-10T23:59:27Z,2020-02-15T06:59:53Z +10409,384,2,6387,0.99,2005-07-11T22:15:56Z,2020-02-15T06:59:53Z +10410,384,2,7799,0.99,2005-07-28T07:42:09Z,2020-02-15T06:59:53Z +10411,384,1,8445,1.99,2005-07-29T07:37:48Z,2020-02-15T06:59:53Z +10412,384,2,11773,5.99,2005-08-17T10:19:51Z,2020-02-15T06:59:53Z +10413,384,2,13521,2.99,2005-08-20T02:42:28Z,2020-02-15T06:59:53Z +10414,384,2,14416,2.99,2005-08-21T11:11:46Z,2020-02-15T06:59:53Z +10415,384,1,14841,0.99,2005-08-22T02:03:30Z,2020-02-15T06:59:53Z +10416,384,1,14963,5.99,2005-08-22T06:38:10Z,2020-02-15T06:59:53Z +10417,384,2,15321,4.99,2005-08-22T20:20:04Z,2020-02-15T06:59:53Z +10418,385,1,917,2.99,2005-05-30T11:27:06Z,2020-02-15T06:59:53Z +10419,385,2,1038,4.99,2005-05-31T05:23:47Z,2020-02-15T06:59:53Z +10420,385,1,1746,2.99,2005-06-16T16:41:19Z,2020-02-15T06:59:53Z +10421,385,1,1937,0.99,2005-06-17T07:16:46Z,2020-02-15T06:59:53Z +10422,385,1,3105,0.99,2005-06-20T17:11:46Z,2020-02-15T06:59:53Z +10423,385,2,3878,8.99,2005-07-06T18:27:09Z,2020-02-15T06:59:53Z +10424,385,2,3953,0.99,2005-07-06T21:54:55Z,2020-02-15T06:59:53Z +10425,385,1,4714,6.99,2005-07-08T12:12:48Z,2020-02-15T06:59:53Z +10426,385,1,5783,2.99,2005-07-10T13:55:33Z,2020-02-15T06:59:53Z +10427,385,1,6445,4.99,2005-07-12T00:37:02Z,2020-02-15T06:59:53Z +10428,385,2,6933,4.99,2005-07-26T23:09:23Z,2020-02-15T06:59:53Z +10429,385,2,7776,0.99,2005-07-28T07:04:36Z,2020-02-15T06:59:53Z +10430,385,1,8346,2.99,2005-07-29T04:48:22Z,2020-02-15T06:59:53Z +10431,385,1,8518,2.99,2005-07-29T10:05:27Z,2020-02-15T06:59:53Z +10432,385,1,9570,2.99,2005-07-31T02:40:37Z,2020-02-15T06:59:53Z +10433,385,1,9704,4.99,2005-07-31T07:39:32Z,2020-02-15T06:59:53Z +10434,385,1,10557,0.99,2005-08-01T12:59:24Z,2020-02-15T06:59:53Z +10435,385,1,10636,3.99,2005-08-01T15:40:35Z,2020-02-15T06:59:53Z +10436,385,1,10655,4.99,2005-08-01T16:33:27Z,2020-02-15T06:59:53Z +10437,385,1,11021,2.99,2005-08-02T05:30:11Z,2020-02-15T06:59:53Z +10438,385,1,11559,2.99,2005-08-17T01:20:26Z,2020-02-15T06:59:53Z +10439,385,2,12310,2.99,2005-08-18T06:02:34Z,2020-02-15T06:59:53Z +10440,385,2,12686,8.99,2005-08-18T19:55:09Z,2020-02-15T06:59:53Z +10441,385,2,13062,7.99,2005-08-19T09:44:17Z,2020-02-15T06:59:53Z +10442,385,1,13117,0.99,2005-08-19T11:33:20Z,2020-02-15T06:59:53Z +10443,385,1,15488,6.99,2005-08-23T02:06:01Z,2020-02-15T06:59:53Z +10444,386,1,583,7.99,2005-05-28T11:48:55Z,2020-02-15T06:59:53Z +10445,386,2,1585,3.99,2005-06-16T04:51:13Z,2020-02-15T06:59:53Z +10446,386,1,1608,2.99,2005-06-16T06:28:57Z,2020-02-15T06:59:53Z +10447,386,2,1819,5.99,2005-06-16T21:32:50Z,2020-02-15T06:59:53Z +10448,386,1,2732,0.99,2005-06-19T15:19:39Z,2020-02-15T06:59:53Z +10449,386,1,3351,2.99,2005-06-21T11:21:39Z,2020-02-15T06:59:53Z +10450,386,2,3783,6.99,2005-07-06T13:57:31Z,2020-02-15T06:59:53Z +10451,386,1,4189,8.99,2005-07-07T10:51:07Z,2020-02-15T06:59:53Z +10452,386,1,5524,0.99,2005-07-10T01:49:24Z,2020-02-15T06:59:53Z +10453,386,1,5953,2.99,2005-07-10T23:21:35Z,2020-02-15T06:59:53Z +10454,386,1,6037,4.99,2005-07-11T03:06:54Z,2020-02-15T06:59:53Z +10455,386,1,6222,2.99,2005-07-11T13:25:49Z,2020-02-15T06:59:53Z +10456,386,2,6261,2.99,2005-07-11T15:28:34Z,2020-02-15T06:59:53Z +10457,386,1,6324,3.99,2005-07-11T19:02:34Z,2020-02-15T06:59:53Z +10458,386,2,6715,4.99,2005-07-12T13:32:28Z,2020-02-15T06:59:53Z +10459,386,2,8340,4.99,2005-07-29T04:41:44Z,2020-02-15T06:59:53Z +10460,386,1,8751,2.99,2005-07-29T19:14:39Z,2020-02-15T06:59:53Z +10461,386,2,9602,0.99,2005-07-31T03:42:51Z,2020-02-15T06:59:53Z +10462,386,1,9686,5.99,2005-07-31T06:50:06Z,2020-02-15T06:59:53Z +10463,386,1,10572,4.99,2005-08-01T13:26:53Z,2020-02-15T06:59:53Z +10464,386,2,10618,3.99,2005-08-01T15:06:38Z,2020-02-15T06:59:53Z +10465,386,1,10715,2.99,2005-08-01T18:51:48Z,2020-02-15T06:59:53Z +10466,386,2,11128,2.99,2005-08-02T09:03:25Z,2020-02-15T06:59:53Z +10467,386,2,11695,4.99,2005-08-17T07:01:08Z,2020-02-15T06:59:53Z +10468,386,2,12961,2.99,2005-08-19T06:22:37Z,2020-02-15T06:59:53Z +10469,386,1,13716,3.99,2005-08-20T09:48:32Z,2020-02-15T06:59:53Z +10470,386,1,13764,2.99,2005-08-20T11:38:16Z,2020-02-15T06:59:53Z +10471,386,2,13869,6.99,2005-08-20T15:08:57Z,2020-02-15T06:59:53Z +10472,386,1,15949,0.99,2005-08-23T19:06:04Z,2020-02-15T06:59:53Z +10473,387,2,302,4.99,2005-05-26T21:13:46Z,2020-02-15T06:59:53Z +10474,387,1,697,7.99,2005-05-29T02:04:04Z,2020-02-15T06:59:53Z +10475,387,1,841,4.99,2005-05-30T00:31:17Z,2020-02-15T06:59:53Z +10476,387,1,1127,3.99,2005-05-31T17:45:49Z,2020-02-15T06:59:53Z +10477,387,1,1464,0.99,2005-06-15T20:38:14Z,2020-02-15T06:59:53Z +10478,387,2,1465,0.99,2005-06-15T20:43:08Z,2020-02-15T06:59:53Z +10479,387,1,2068,0.99,2005-06-17T16:11:46Z,2020-02-15T06:59:53Z +10480,387,2,2100,0.99,2005-06-17T18:53:21Z,2020-02-15T06:59:53Z +10481,387,2,2981,5.99,2005-06-20T08:35:17Z,2020-02-15T06:59:53Z +10482,387,2,3378,4.99,2005-06-21T13:51:28Z,2020-02-15T06:59:53Z +10483,387,2,6216,4.99,2005-07-11T12:57:05Z,2020-02-15T06:59:53Z +10484,387,2,6456,6.99,2005-07-12T01:05:11Z,2020-02-15T06:59:53Z +10485,387,1,6517,5.99,2005-07-12T03:52:39Z,2020-02-15T06:59:53Z +10486,387,1,7497,0.99,2005-07-27T20:05:27Z,2020-02-15T06:59:53Z +10487,387,1,8090,2.99,2005-07-28T18:27:29Z,2020-02-15T06:59:53Z +10488,387,1,10564,0.99,2005-08-01T13:07:34Z,2020-02-15T06:59:53Z +10489,387,1,10838,4.99,2005-08-01T23:36:10Z,2020-02-15T06:59:53Z +10490,387,2,11682,2.99,2005-08-17T06:13:40Z,2020-02-15T06:59:53Z +10491,387,2,12153,4.99,2005-08-18T00:22:30Z,2020-02-15T06:59:53Z +10492,387,1,12936,6.99,2005-08-19T05:25:06Z,2020-02-15T06:59:53Z +10493,387,2,13034,2.99,2005-08-19T08:41:29Z,2020-02-15T06:59:53Z +10494,387,1,13082,5.99,2005-08-19T10:19:19Z,2020-02-15T06:59:53Z +10495,387,2,13645,0.99,2005-08-20T07:47:05Z,2020-02-15T06:59:53Z +10496,387,2,13772,4.99,2005-08-20T11:47:52Z,2020-02-15T06:59:53Z +10497,387,2,14279,5.99,2005-08-21T06:39:08Z,2020-02-15T06:59:53Z +10498,387,2,14979,0.99,2005-08-22T07:16:36Z,2020-02-15T06:59:53Z +10499,388,2,21,4.99,2005-05-25T01:59:46Z,2020-02-15T06:59:53Z +10500,388,2,411,4.99,2005-05-27T14:14:14Z,2020-02-15T06:59:53Z +10501,388,2,1276,6.99,2005-06-15T08:00:13Z,2020-02-15T06:59:53Z +10502,388,1,2145,0.99,2005-06-17T22:10:36Z,2020-02-15T06:59:53Z +10503,388,1,2537,5.99,2005-06-19T01:52:21Z,2020-02-15T06:59:53Z +10504,388,1,2692,4.99,2005-06-19T13:08:19Z,2020-02-15T06:59:53Z +10505,388,2,3159,7.99,2005-06-20T21:11:50Z,2020-02-15T06:59:53Z +10506,388,2,4947,5.99,2005-07-08T22:49:37Z,2020-02-15T06:59:53Z +10507,388,2,5899,2.99,2005-07-10T20:21:52Z,2020-02-15T06:59:53Z +10508,388,2,6321,2.99,2005-07-11T18:51:02Z,2020-02-15T06:59:53Z +10509,388,1,6452,2.99,2005-07-12T00:57:31Z,2020-02-15T06:59:53Z +10510,388,2,7985,5.99,2005-07-28T14:29:01Z,2020-02-15T06:59:53Z +10511,388,2,8456,3.99,2005-07-29T07:58:31Z,2020-02-15T06:59:53Z +10512,388,2,9213,0.99,2005-07-30T13:07:11Z,2020-02-15T06:59:53Z +10513,388,2,9368,2.99,2005-07-30T18:50:53Z,2020-02-15T06:59:53Z +10514,388,2,9840,2.99,2005-07-31T12:23:18Z,2020-02-15T06:59:53Z +10515,388,2,9940,0.99,2005-07-31T15:29:06Z,2020-02-15T06:59:53Z +10516,388,2,10044,2.99,2005-07-31T19:02:33Z,2020-02-15T06:59:53Z +10517,388,2,11604,0.99,2005-08-17T03:28:27Z,2020-02-15T06:59:53Z +10518,388,2,12044,0.99,2005-08-17T20:39:37Z,2020-02-15T06:59:53Z +10519,388,1,12068,2.99,2005-08-17T21:37:08Z,2020-02-15T06:59:53Z +10520,388,2,12267,6.99,2005-08-18T04:24:30Z,2020-02-15T06:59:53Z +10521,388,2,12497,4.99,2005-08-18T12:58:40Z,2020-02-15T06:59:53Z +10522,388,2,12646,2.99,2005-08-18T18:25:06Z,2020-02-15T06:59:53Z +10523,388,1,12749,2.99,2005-08-18T22:31:21Z,2020-02-15T06:59:53Z +10524,388,1,12977,4.99,2005-08-19T06:55:33Z,2020-02-15T06:59:53Z +10525,388,1,14273,10.99,2005-08-21T06:26:48Z,2020-02-15T06:59:53Z +10526,388,2,14853,5.99,2005-08-22T02:26:33Z,2020-02-15T06:59:53Z +10527,388,2,15660,5.99,2005-08-23T08:51:21Z,2020-02-15T06:59:53Z +10528,388,1,12891,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10529,389,1,998,4.99,2005-05-31T00:16:57Z,2020-02-15T06:59:53Z +10530,389,1,1763,4.99,2005-06-16T17:51:01Z,2020-02-15T06:59:53Z +10531,389,1,1946,4.99,2005-06-17T07:58:39Z,2020-02-15T06:59:53Z +10532,389,1,2552,3.99,2005-06-19T03:01:29Z,2020-02-15T06:59:53Z +10533,389,2,3527,0.99,2005-07-06T01:11:08Z,2020-02-15T06:59:53Z +10534,389,1,4443,6.99,2005-07-07T23:05:53Z,2020-02-15T06:59:53Z +10535,389,1,5249,0.99,2005-07-09T13:33:53Z,2020-02-15T06:59:53Z +10536,389,2,5626,3.99,2005-07-10T05:49:35Z,2020-02-15T06:59:53Z +10537,389,2,6104,2.99,2005-07-11T07:01:35Z,2020-02-15T06:59:53Z +10538,389,1,6600,3.99,2005-07-12T07:41:48Z,2020-02-15T06:59:53Z +10539,389,1,7029,4.99,2005-07-27T02:57:43Z,2020-02-15T06:59:53Z +10540,389,1,7896,8.99,2005-07-28T11:00:58Z,2020-02-15T06:59:53Z +10541,389,2,7977,4.99,2005-07-28T14:15:54Z,2020-02-15T06:59:53Z +10542,389,1,8338,6.99,2005-07-29T04:40:39Z,2020-02-15T06:59:53Z +10543,389,1,8887,4.99,2005-07-30T00:36:54Z,2020-02-15T06:59:53Z +10544,389,1,10217,4.99,2005-08-01T01:07:27Z,2020-02-15T06:59:53Z +10545,389,1,10949,2.99,2005-08-02T03:24:04Z,2020-02-15T06:59:53Z +10546,389,2,11348,4.99,2005-08-02T17:18:38Z,2020-02-15T06:59:53Z +10547,389,2,11441,2.99,2005-08-02T20:25:41Z,2020-02-15T06:59:53Z +10548,389,2,11944,3.99,2005-08-17T17:02:42Z,2020-02-15T06:59:53Z +10549,389,2,12069,4.99,2005-08-17T21:39:40Z,2020-02-15T06:59:53Z +10550,389,2,14493,7.99,2005-08-21T14:01:44Z,2020-02-15T06:59:53Z +10551,389,1,14578,2.99,2005-08-21T16:53:38Z,2020-02-15T06:59:54Z +10552,389,1,14777,2.99,2005-08-21T23:55:50Z,2020-02-15T06:59:54Z +10553,389,1,15462,5.99,2005-08-23T01:14:01Z,2020-02-15T06:59:54Z +10554,389,2,16011,9.99,2005-08-23T21:11:33Z,2020-02-15T06:59:54Z +10555,390,1,254,4.99,2005-05-26T14:43:48Z,2020-02-15T06:59:54Z +10556,390,2,912,4.99,2005-05-30T10:58:33Z,2020-02-15T06:59:54Z +10557,390,2,1539,5.99,2005-06-16T01:11:25Z,2020-02-15T06:59:54Z +10558,390,2,1730,2.99,2005-06-16T15:30:01Z,2020-02-15T06:59:54Z +10559,390,2,1893,2.99,2005-06-17T04:18:37Z,2020-02-15T06:59:54Z +10560,390,1,2330,7.99,2005-06-18T10:41:19Z,2020-02-15T06:59:54Z +10561,390,1,3147,5.99,2005-06-20T20:25:17Z,2020-02-15T06:59:54Z +10562,390,1,3999,2.99,2005-07-06T23:50:54Z,2020-02-15T06:59:54Z +10563,390,1,4022,4.99,2005-07-07T01:50:06Z,2020-02-15T06:59:54Z +10564,390,2,4191,3.99,2005-07-07T10:56:14Z,2020-02-15T06:59:54Z +10565,390,2,4310,2.99,2005-07-07T17:30:56Z,2020-02-15T06:59:54Z +10566,390,1,4968,5.99,2005-07-08T23:49:19Z,2020-02-15T06:59:54Z +10567,390,1,6215,4.99,2005-07-11T12:52:36Z,2020-02-15T06:59:54Z +10568,390,1,6430,0.99,2005-07-12T00:03:34Z,2020-02-15T06:59:54Z +10569,390,2,7515,3.99,2005-07-27T20:52:37Z,2020-02-15T06:59:54Z +10570,390,1,7595,5.99,2005-07-27T23:32:23Z,2020-02-15T06:59:54Z +10571,390,1,8493,0.99,2005-07-29T09:04:31Z,2020-02-15T06:59:54Z +10572,390,1,9251,5.99,2005-07-30T14:19:25Z,2020-02-15T06:59:54Z +10573,390,2,9314,2.99,2005-07-30T17:05:19Z,2020-02-15T06:59:54Z +10574,390,1,9825,4.99,2005-07-31T11:50:51Z,2020-02-15T06:59:54Z +10575,390,1,10061,4.99,2005-07-31T19:23:25Z,2020-02-15T06:59:54Z +10576,390,1,12105,5.99,2005-08-17T22:54:45Z,2020-02-15T06:59:54Z +10577,390,2,12803,2.99,2005-08-19T00:28:21Z,2020-02-15T06:59:54Z +10578,390,1,13413,3.99,2005-08-19T22:46:46Z,2020-02-15T06:59:54Z +10579,390,1,13473,4.99,2005-08-20T01:03:50Z,2020-02-15T06:59:54Z +10580,390,1,13501,0.99,2005-08-20T01:56:20Z,2020-02-15T06:59:54Z +10581,390,2,13546,3.99,2005-08-20T03:50:24Z,2020-02-15T06:59:54Z +10582,390,2,13591,3.99,2005-08-20T05:50:05Z,2020-02-15T06:59:54Z +10583,390,2,13618,7.99,2005-08-20T06:36:46Z,2020-02-15T06:59:54Z +10584,390,2,13893,5.99,2005-08-20T15:52:52Z,2020-02-15T06:59:54Z +10585,390,2,15222,4.99,2005-08-22T17:12:30Z,2020-02-15T06:59:54Z +10586,390,2,15303,8.99,2005-08-22T19:44:59Z,2020-02-15T06:59:54Z +10587,390,2,15376,4.99,2005-08-22T22:21:35Z,2020-02-15T06:59:54Z +10588,391,2,73,4.99,2005-05-25T11:00:07Z,2020-02-15T06:59:54Z +10589,391,1,210,2.99,2005-05-26T08:14:15Z,2020-02-15T06:59:54Z +10590,391,1,317,5.99,2005-05-26T23:23:56Z,2020-02-15T06:59:54Z +10591,391,2,870,2.99,2005-05-30T04:25:47Z,2020-02-15T06:59:54Z +10592,391,1,891,7.99,2005-05-30T07:43:12Z,2020-02-15T06:59:54Z +10593,391,2,1232,0.99,2005-06-15T04:18:10Z,2020-02-15T06:59:54Z +10594,391,2,1931,0.99,2005-06-17T06:51:56Z,2020-02-15T06:59:54Z +10595,391,1,2045,2.99,2005-06-17T14:38:11Z,2020-02-15T06:59:54Z +10596,391,1,2690,2.99,2005-06-19T13:00:02Z,2020-02-15T06:59:54Z +10597,391,2,3163,2.99,2005-06-20T21:22:13Z,2020-02-15T06:59:54Z +10598,391,1,4188,5.99,2005-07-07T10:45:29Z,2020-02-15T06:59:54Z +10599,391,1,4716,0.99,2005-07-08T12:18:51Z,2020-02-15T06:59:54Z +10600,391,2,4753,0.99,2005-07-08T14:18:41Z,2020-02-15T06:59:54Z +10601,391,2,5583,7.99,2005-07-10T04:08:48Z,2020-02-15T06:59:54Z +10602,391,1,5599,4.99,2005-07-10T04:52:04Z,2020-02-15T06:59:54Z +10603,391,1,6302,3.99,2005-07-11T17:55:38Z,2020-02-15T06:59:54Z +10604,391,1,6463,2.99,2005-07-12T01:16:11Z,2020-02-15T06:59:54Z +10605,391,2,8016,0.99,2005-07-28T15:35:41Z,2020-02-15T06:59:54Z +10606,391,1,8908,0.99,2005-07-30T01:26:05Z,2020-02-15T06:59:54Z +10607,391,2,8913,6.99,2005-07-30T01:35:01Z,2020-02-15T06:59:54Z +10608,391,1,9225,0.99,2005-07-30T13:29:47Z,2020-02-15T06:59:54Z +10609,391,1,10210,7.99,2005-08-01T00:58:52Z,2020-02-15T06:59:54Z +10610,391,2,10406,2.99,2005-08-01T07:37:05Z,2020-02-15T06:59:54Z +10611,391,1,11151,4.99,2005-08-02T09:52:44Z,2020-02-15T06:59:54Z +10612,391,2,11434,2.99,2005-08-02T20:13:14Z,2020-02-15T06:59:54Z +10613,391,1,11602,4.99,2005-08-17T03:21:19Z,2020-02-15T06:59:54Z +10614,391,1,12090,0.99,2005-08-17T22:21:43Z,2020-02-15T06:59:54Z +10615,391,1,12100,1.99,2005-08-17T22:41:10Z,2020-02-15T06:59:54Z +10616,391,1,13980,2.99,2005-08-20T19:04:40Z,2020-02-15T06:59:54Z +10617,391,1,14381,0.99,2005-08-21T09:55:47Z,2020-02-15T06:59:54Z +10618,392,2,1530,6.99,2005-06-16T00:38:07Z,2020-02-15T06:59:54Z +10619,392,2,1764,2.99,2005-06-16T17:51:54Z,2020-02-15T06:59:54Z +10620,392,2,2289,2.99,2005-06-18T07:29:43Z,2020-02-15T06:59:54Z +10621,392,2,2890,4.99,2005-06-20T02:00:45Z,2020-02-15T06:59:54Z +10622,392,1,3566,2.99,2005-07-06T03:08:51Z,2020-02-15T06:59:54Z +10623,392,2,6061,0.99,2005-07-11T04:06:25Z,2020-02-15T06:59:54Z +10624,392,2,6406,2.99,2005-07-11T22:55:27Z,2020-02-15T06:59:54Z +10625,392,1,7692,2.99,2005-07-28T03:30:21Z,2020-02-15T06:59:54Z +10626,392,1,7981,1.99,2005-07-28T14:18:25Z,2020-02-15T06:59:54Z +10627,392,1,8254,0.99,2005-07-29T00:59:31Z,2020-02-15T06:59:54Z +10628,392,2,8612,9.99,2005-07-29T13:28:20Z,2020-02-15T06:59:54Z +10629,392,2,10085,0.99,2005-07-31T20:12:02Z,2020-02-15T06:59:54Z +10630,392,1,10435,4.99,2005-08-01T08:50:51Z,2020-02-15T06:59:54Z +10631,392,1,11459,0.99,2005-08-02T21:25:25Z,2020-02-15T06:59:54Z +10632,392,1,11686,2.99,2005-08-17T06:39:30Z,2020-02-15T06:59:54Z +10633,392,2,12102,6.99,2005-08-17T22:45:26Z,2020-02-15T06:59:54Z +10634,392,1,12368,6.99,2005-08-18T07:57:38Z,2020-02-15T06:59:54Z +10635,392,2,12561,0.99,2005-08-18T14:58:51Z,2020-02-15T06:59:54Z +10636,392,1,13629,4.99,2005-08-20T07:04:07Z,2020-02-15T06:59:54Z +10637,392,2,14081,7.99,2005-08-20T23:35:13Z,2020-02-15T06:59:54Z +10638,392,1,14223,5.99,2005-08-21T04:51:51Z,2020-02-15T06:59:54Z +10639,392,2,14369,0.99,2005-08-21T09:33:44Z,2020-02-15T06:59:54Z +10640,392,2,14438,5.99,2005-08-21T11:51:10Z,2020-02-15T06:59:54Z +10641,393,1,599,4.99,2005-05-28T14:05:57Z,2020-02-15T06:59:54Z +10642,393,2,886,0.99,2005-05-30T06:54:51Z,2020-02-15T06:59:54Z +10643,393,1,1611,6.99,2005-06-16T06:41:35Z,2020-02-15T06:59:54Z +10644,393,2,1915,1.99,2005-06-17T05:28:28Z,2020-02-15T06:59:54Z +10645,393,2,2219,2.99,2005-06-18T03:16:54Z,2020-02-15T06:59:54Z +10646,393,1,2319,4.99,2005-06-18T09:24:22Z,2020-02-15T06:59:54Z +10647,393,2,3001,2.99,2005-06-20T09:50:16Z,2020-02-15T06:59:54Z +10648,393,2,4275,2.99,2005-07-07T14:43:51Z,2020-02-15T06:59:54Z +10649,393,2,4546,8.99,2005-07-08T04:18:36Z,2020-02-15T06:59:54Z +10650,393,2,4632,5.99,2005-07-08T08:38:57Z,2020-02-15T06:59:54Z +10651,393,2,4791,7.99,2005-07-08T16:27:24Z,2020-02-15T06:59:54Z +10652,393,1,5099,4.99,2005-07-09T06:14:30Z,2020-02-15T06:59:54Z +10653,393,1,6221,2.99,2005-07-11T13:24:27Z,2020-02-15T06:59:54Z +10654,393,2,6513,0.99,2005-07-12T03:44:43Z,2020-02-15T06:59:54Z +10655,393,1,6930,8.99,2005-07-26T23:00:01Z,2020-02-15T06:59:54Z +10656,393,2,7486,0.99,2005-07-27T19:29:24Z,2020-02-15T06:59:54Z +10657,393,2,8004,4.99,2005-07-28T15:14:07Z,2020-02-15T06:59:54Z +10658,393,2,8448,0.99,2005-07-29T07:41:54Z,2020-02-15T06:59:54Z +10659,393,2,9763,7.99,2005-07-31T09:34:03Z,2020-02-15T06:59:54Z +10660,393,1,10158,1.99,2005-07-31T22:40:31Z,2020-02-15T06:59:54Z +10661,393,2,12059,2.99,2005-08-17T21:09:23Z,2020-02-15T06:59:54Z +10662,393,1,12113,1.99,2005-08-17T23:01:00Z,2020-02-15T06:59:54Z +10663,393,1,12563,4.99,2005-08-18T15:08:29Z,2020-02-15T06:59:54Z +10664,393,1,12676,0.99,2005-08-18T19:34:40Z,2020-02-15T06:59:54Z +10665,393,1,13184,4.99,2005-08-19T14:16:18Z,2020-02-15T06:59:54Z +10666,393,2,13357,4.99,2005-08-19T21:02:59Z,2020-02-15T06:59:54Z +10667,393,2,13788,1.99,2005-08-20T12:15:41Z,2020-02-15T06:59:54Z +10668,393,1,15132,2.99,2005-08-22T13:11:25Z,2020-02-15T06:59:54Z +10669,393,2,15284,3.99,2005-08-22T19:17:08Z,2020-02-15T06:59:54Z +10670,393,2,15527,0.99,2005-08-23T03:44:51Z,2020-02-15T06:59:54Z +10671,393,2,16049,3.99,2005-08-23T22:50:12Z,2020-02-15T06:59:54Z +10672,394,1,213,3.99,2005-05-26T08:44:08Z,2020-02-15T06:59:54Z +10673,394,1,977,2.99,2005-05-30T21:22:26Z,2020-02-15T06:59:54Z +10674,394,2,1324,4.99,2005-06-15T11:02:45Z,2020-02-15T06:59:54Z +10675,394,2,3543,0.99,2005-07-06T02:01:08Z,2020-02-15T06:59:54Z +10676,394,1,3873,6.99,2005-07-06T18:03:16Z,2020-02-15T06:59:54Z +10677,394,2,4009,2.99,2005-07-07T00:28:55Z,2020-02-15T06:59:54Z +10678,394,1,4307,6.99,2005-07-07T17:20:39Z,2020-02-15T06:59:54Z +10679,394,2,5183,4.99,2005-07-09T10:13:45Z,2020-02-15T06:59:54Z +10680,394,1,5535,4.99,2005-07-10T02:27:42Z,2020-02-15T06:59:54Z +10681,394,2,6059,4.99,2005-07-11T04:03:54Z,2020-02-15T06:59:54Z +10682,394,2,7445,3.99,2005-07-27T17:57:15Z,2020-02-15T06:59:54Z +10683,394,1,9147,0.99,2005-07-30T10:38:59Z,2020-02-15T06:59:54Z +10684,394,2,9864,0.99,2005-07-31T13:06:54Z,2020-02-15T06:59:54Z +10685,394,1,10319,4.99,2005-08-01T04:37:19Z,2020-02-15T06:59:54Z +10686,394,1,10603,0.99,2005-08-01T14:30:35Z,2020-02-15T06:59:54Z +10687,394,1,10718,0.99,2005-08-01T18:55:38Z,2020-02-15T06:59:54Z +10688,394,1,12080,4.99,2005-08-17T22:08:04Z,2020-02-15T06:59:54Z +10689,394,1,12389,4.99,2005-08-18T08:48:36Z,2020-02-15T06:59:54Z +10690,394,2,12510,9.99,2005-08-18T13:22:25Z,2020-02-15T06:59:54Z +10691,394,2,13047,0.99,2005-08-19T09:24:49Z,2020-02-15T06:59:54Z +10692,394,1,14605,0.99,2005-08-21T17:56:06Z,2020-02-15T06:59:54Z +10693,394,2,13178,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +10694,395,1,1270,0.99,2005-06-15T07:30:22Z,2020-02-15T06:59:54Z +10695,395,1,1562,0.99,2005-06-16T02:46:27Z,2020-02-15T06:59:54Z +10696,395,2,1603,0.99,2005-06-16T06:14:03Z,2020-02-15T06:59:54Z +10697,395,1,3030,4.99,2005-06-20T11:51:59Z,2020-02-15T06:59:54Z +10698,395,1,3310,0.99,2005-06-21T08:04:51Z,2020-02-15T06:59:54Z +10699,395,1,3389,6.99,2005-06-21T14:37:55Z,2020-02-15T06:59:54Z +10700,395,2,3684,0.99,2005-07-06T09:29:22Z,2020-02-15T06:59:54Z +10701,395,1,4185,5.99,2005-07-07T10:31:05Z,2020-02-15T06:59:54Z +10702,395,1,4393,4.99,2005-07-07T21:12:36Z,2020-02-15T06:59:54Z +10703,395,1,5087,0.99,2005-07-09T05:44:28Z,2020-02-15T06:59:54Z +10704,395,2,5136,0.99,2005-07-09T07:55:01Z,2020-02-15T06:59:54Z +10705,395,1,7740,2.99,2005-07-28T05:23:36Z,2020-02-15T06:59:54Z +10706,395,2,7986,7.99,2005-07-28T14:30:13Z,2020-02-15T06:59:54Z +10707,395,1,11889,0.99,2005-08-17T15:08:27Z,2020-02-15T06:59:54Z +10708,395,1,14471,5.99,2005-08-21T13:10:40Z,2020-02-15T06:59:54Z +10709,395,2,14720,0.99,2005-08-21T21:43:53Z,2020-02-15T06:59:54Z +10710,395,1,15698,2.99,2005-08-23T10:11:40Z,2020-02-15T06:59:54Z +10711,395,1,15856,0.99,2005-08-23T15:59:12Z,2020-02-15T06:59:54Z +10712,395,1,15970,4.99,2005-08-23T19:54:24Z,2020-02-15T06:59:54Z +10713,396,2,641,5.99,2005-05-28T18:45:47Z,2020-02-15T06:59:54Z +10714,396,2,1370,1.99,2005-06-15T14:31:05Z,2020-02-15T06:59:54Z +10715,396,2,1385,4.99,2005-06-15T15:28:23Z,2020-02-15T06:59:54Z +10716,396,2,1408,6.99,2005-06-15T16:57:58Z,2020-02-15T06:59:54Z +10717,396,2,3909,6.99,2005-07-06T19:54:41Z,2020-02-15T06:59:54Z +10718,396,1,5059,1.99,2005-07-09T04:28:01Z,2020-02-15T06:59:54Z +10719,396,2,6335,2.99,2005-07-11T19:25:15Z,2020-02-15T06:59:54Z +10720,396,2,6764,4.99,2005-07-12T15:29:27Z,2020-02-15T06:59:54Z +10721,396,2,6771,2.99,2005-07-12T15:54:40Z,2020-02-15T06:59:54Z +10722,396,2,7142,0.99,2005-07-27T06:55:39Z,2020-02-15T06:59:54Z +10723,396,2,7313,2.99,2005-07-27T13:11:57Z,2020-02-15T06:59:54Z +10724,396,2,8371,2.99,2005-07-29T05:16:35Z,2020-02-15T06:59:54Z +10725,396,2,8807,2.99,2005-07-29T21:36:59Z,2020-02-15T06:59:54Z +10726,396,1,9344,5.99,2005-07-30T18:13:45Z,2020-02-15T06:59:54Z +10727,396,2,10120,2.99,2005-07-31T21:24:24Z,2020-02-15T06:59:54Z +10728,396,2,10124,0.99,2005-07-31T21:31:49Z,2020-02-15T06:59:54Z +10729,396,2,10195,6.99,2005-08-01T00:34:42Z,2020-02-15T06:59:54Z +10730,396,2,10610,0.99,2005-08-01T14:49:41Z,2020-02-15T06:59:54Z +10731,396,2,12393,5.99,2005-08-18T09:02:41Z,2020-02-15T06:59:54Z +10732,396,1,12895,4.99,2005-08-19T03:50:48Z,2020-02-15T06:59:54Z +10733,396,2,13355,4.99,2005-08-19T20:59:19Z,2020-02-15T06:59:54Z +10734,396,1,14078,3.99,2005-08-20T23:26:40Z,2020-02-15T06:59:54Z +10735,396,1,14169,4.99,2005-08-21T03:00:31Z,2020-02-15T06:59:54Z +10736,396,1,14508,2.99,2005-08-21T14:33:58Z,2020-02-15T06:59:54Z +10737,396,2,14778,5.99,2005-08-21T23:56:30Z,2020-02-15T06:59:54Z +10738,396,1,14792,1.99,2005-08-22T00:36:41Z,2020-02-15T06:59:54Z +10739,396,2,15198,7.99,2005-08-22T16:15:33Z,2020-02-15T06:59:54Z +10740,397,2,1002,0.99,2005-05-31T00:47:56Z,2020-02-15T06:59:54Z +10741,397,1,1769,5.99,2005-06-16T18:07:48Z,2020-02-15T06:59:54Z +10742,397,2,3027,1.99,2005-06-20T11:50:30Z,2020-02-15T06:59:54Z +10743,397,1,3489,5.99,2005-07-05T23:33:40Z,2020-02-15T06:59:54Z +10744,397,1,4036,0.99,2005-07-07T02:48:00Z,2020-02-15T06:59:54Z +10745,397,2,5103,4.99,2005-07-09T06:34:40Z,2020-02-15T06:59:54Z +10746,397,2,5598,4.99,2005-07-10T04:48:29Z,2020-02-15T06:59:54Z +10747,397,2,5763,4.99,2005-07-10T12:58:12Z,2020-02-15T06:59:54Z +10748,397,2,6014,2.99,2005-07-11T02:02:55Z,2020-02-15T06:59:54Z +10749,397,2,6266,2.99,2005-07-11T15:45:39Z,2020-02-15T06:59:54Z +10750,397,1,6471,4.99,2005-07-12T01:31:06Z,2020-02-15T06:59:54Z +10751,397,2,7356,2.99,2005-07-27T14:47:35Z,2020-02-15T06:59:54Z +10752,397,2,7892,4.99,2005-07-28T10:46:58Z,2020-02-15T06:59:54Z +10753,397,1,8103,6.99,2005-07-28T18:50:14Z,2020-02-15T06:59:54Z +10754,397,1,9495,0.99,2005-07-30T23:54:26Z,2020-02-15T06:59:54Z +10755,397,2,9608,1.99,2005-07-31T03:51:52Z,2020-02-15T06:59:54Z +10756,397,1,10534,0.99,2005-08-01T12:15:11Z,2020-02-15T06:59:54Z +10757,397,2,10598,4.99,2005-08-01T14:23:36Z,2020-02-15T06:59:54Z +10758,397,1,10785,1.99,2005-08-01T21:24:55Z,2020-02-15T06:59:54Z +10759,397,2,11511,4.99,2005-08-16T23:39:59Z,2020-02-15T06:59:54Z +10760,397,2,12223,2.99,2005-08-18T02:58:40Z,2020-02-15T06:59:54Z +10761,397,1,12276,0.99,2005-08-18T04:43:22Z,2020-02-15T06:59:54Z +10762,397,2,12329,1.99,2005-08-18T06:44:30Z,2020-02-15T06:59:54Z +10763,397,2,12700,0.99,2005-08-18T20:24:46Z,2020-02-15T06:59:54Z +10764,397,2,12726,2.99,2005-08-18T21:44:46Z,2020-02-15T06:59:54Z +10765,397,1,12772,4.99,2005-08-18T23:29:25Z,2020-02-15T06:59:54Z +10766,397,2,14100,3.99,2005-08-21T00:31:07Z,2020-02-15T06:59:54Z +10767,397,1,14790,6.99,2005-08-22T00:34:17Z,2020-02-15T06:59:54Z +10768,397,1,15083,6.99,2005-08-22T11:17:37Z,2020-02-15T06:59:54Z +10769,398,1,486,4.99,2005-05-27T23:51:12Z,2020-02-15T06:59:54Z +10770,398,2,1228,2.99,2005-06-15T03:50:36Z,2020-02-15T06:59:54Z +10771,398,1,2087,6.99,2005-06-17T17:35:10Z,2020-02-15T06:59:54Z +10772,398,2,3141,9.99,2005-06-20T19:55:47Z,2020-02-15T06:59:54Z +10773,398,2,5234,5.99,2005-07-09T12:44:47Z,2020-02-15T06:59:54Z +10774,398,2,8119,3.99,2005-07-28T19:23:15Z,2020-02-15T06:59:54Z +10775,398,2,8204,4.99,2005-07-28T23:18:29Z,2020-02-15T06:59:54Z +10776,398,1,8428,7.99,2005-07-29T07:10:14Z,2020-02-15T06:59:54Z +10777,398,1,9042,2.99,2005-07-30T06:33:55Z,2020-02-15T06:59:54Z +10778,398,2,9281,5.99,2005-07-30T15:15:51Z,2020-02-15T06:59:54Z +10779,398,1,9771,1.99,2005-07-31T09:55:36Z,2020-02-15T06:59:54Z +10780,398,1,10230,2.99,2005-08-01T01:49:36Z,2020-02-15T06:59:54Z +10781,398,2,11132,4.99,2005-08-02T09:14:09Z,2020-02-15T06:59:54Z +10782,398,2,12528,2.99,2005-08-18T13:52:41Z,2020-02-15T06:59:54Z +10783,398,2,13643,4.99,2005-08-20T07:42:24Z,2020-02-15T06:59:54Z +10784,398,1,15189,3.99,2005-08-22T15:56:42Z,2020-02-15T06:59:54Z +10785,399,2,10,5.99,2005-05-25T00:02:21Z,2020-02-15T06:59:54Z +10786,399,2,694,6.99,2005-05-29T01:49:43Z,2020-02-15T06:59:54Z +10787,399,2,883,4.99,2005-05-30T06:21:05Z,2020-02-15T06:59:54Z +10788,399,2,2961,2.99,2005-06-20T07:29:15Z,2020-02-15T06:59:54Z +10789,399,1,3036,5.99,2005-06-20T12:18:31Z,2020-02-15T06:59:54Z +10790,399,2,4957,0.99,2005-07-08T23:18:48Z,2020-02-15T06:59:54Z +10791,399,2,4981,4.99,2005-07-09T00:29:29Z,2020-02-15T06:59:54Z +10792,399,1,5507,0.99,2005-07-10T00:49:04Z,2020-02-15T06:59:54Z +10793,399,2,6006,2.99,2005-07-11T01:38:42Z,2020-02-15T06:59:54Z +10794,399,2,6229,6.99,2005-07-11T13:59:50Z,2020-02-15T06:59:54Z +10795,399,2,6674,4.99,2005-07-12T11:51:54Z,2020-02-15T06:59:54Z +10796,399,2,8461,5.99,2005-07-29T08:11:31Z,2020-02-15T06:59:54Z +10797,399,2,9728,2.99,2005-07-31T08:40:54Z,2020-02-15T06:59:54Z +10798,399,2,10654,2.99,2005-08-01T16:31:35Z,2020-02-15T06:59:54Z +10799,399,2,10960,5.99,2005-08-02T03:46:18Z,2020-02-15T06:59:54Z +10800,399,1,11329,4.99,2005-08-02T16:42:52Z,2020-02-15T06:59:54Z +10801,399,1,11953,3.99,2005-08-17T17:16:42Z,2020-02-15T06:59:54Z +10802,399,1,13253,4.99,2005-08-19T16:53:56Z,2020-02-15T06:59:54Z +10803,399,2,13293,4.99,2005-08-19T18:35:52Z,2020-02-15T06:59:54Z +10804,399,1,15300,0.99,2005-08-22T19:44:00Z,2020-02-15T06:59:54Z +10805,399,1,15468,4.99,2005-08-23T01:25:30Z,2020-02-15T06:59:54Z +10806,400,1,95,3.99,2005-05-25T16:12:52Z,2020-02-15T06:59:54Z +10807,400,2,171,6.99,2005-05-26T03:14:15Z,2020-02-15T06:59:54Z +10808,400,2,516,1.99,2005-05-28T03:11:47Z,2020-02-15T06:59:54Z +10809,400,2,894,5.99,2005-05-30T08:31:31Z,2020-02-15T06:59:54Z +10810,400,2,1364,0.99,2005-06-15T14:05:32Z,2020-02-15T06:59:54Z +10811,400,1,1917,3.99,2005-06-17T05:36:07Z,2020-02-15T06:59:54Z +10812,400,2,1923,6.99,2005-06-17T06:06:10Z,2020-02-15T06:59:54Z +10813,400,1,4573,6.99,2005-07-08T05:38:46Z,2020-02-15T06:59:54Z +10814,400,1,4645,2.99,2005-07-08T09:20:09Z,2020-02-15T06:59:54Z +10815,400,2,5212,6.99,2005-07-09T11:37:47Z,2020-02-15T06:59:54Z +10816,400,2,5222,5.99,2005-07-09T12:05:45Z,2020-02-15T06:59:54Z +10817,400,2,6790,5.99,2005-07-12T16:34:59Z,2020-02-15T06:59:54Z +10818,400,2,6994,2.99,2005-07-27T01:08:26Z,2020-02-15T06:59:54Z +10819,400,2,7296,2.99,2005-07-27T12:39:48Z,2020-02-15T06:59:54Z +10820,400,1,7682,5.99,2005-07-28T03:07:29Z,2020-02-15T06:59:54Z +10821,400,2,9177,5.99,2005-07-30T11:52:40Z,2020-02-15T06:59:54Z +10822,400,2,9756,4.99,2005-07-31T09:25:00Z,2020-02-15T06:59:54Z +10823,400,1,10187,2.99,2005-08-01T00:15:49Z,2020-02-15T06:59:54Z +10824,400,2,10484,2.99,2005-08-01T10:19:53Z,2020-02-15T06:59:54Z +10825,400,1,10711,0.99,2005-08-01T18:45:09Z,2020-02-15T06:59:54Z +10826,400,2,11510,6.99,2005-08-16T23:30:07Z,2020-02-15T06:59:54Z +10827,400,2,11530,2.99,2005-08-17T00:29:00Z,2020-02-15T06:59:54Z +10828,400,1,11600,5.99,2005-08-17T03:12:04Z,2020-02-15T06:59:54Z +10829,400,1,12514,2.99,2005-08-18T13:33:55Z,2020-02-15T06:59:54Z +10830,400,2,13449,2.99,2005-08-20T00:17:01Z,2020-02-15T06:59:54Z +10831,400,1,14775,2.99,2005-08-21T23:53:07Z,2020-02-15T06:59:54Z +10832,400,2,15533,4.99,2005-08-23T03:54:39Z,2020-02-15T06:59:54Z +10833,400,2,15988,4.99,2005-08-23T20:23:08Z,2020-02-15T06:59:54Z +10834,401,2,167,4.99,2005-05-26T02:50:31Z,2020-02-15T06:59:54Z +10835,401,2,446,4.99,2005-05-27T18:48:41Z,2020-02-15T06:59:54Z +10836,401,2,811,1.99,2005-05-29T19:30:42Z,2020-02-15T06:59:54Z +10837,401,1,4059,0.99,2005-07-07T04:04:26Z,2020-02-15T06:59:54Z +10838,401,2,4292,7.99,2005-07-07T15:48:38Z,2020-02-15T06:59:54Z +10839,401,2,5923,0.99,2005-07-10T21:40:06Z,2020-02-15T06:59:54Z +10840,401,1,,0.99,2005-07-12T06:26:10Z,2020-02-15T06:59:54Z +10841,401,2,7651,4.99,2005-07-28T01:48:32Z,2020-02-15T06:59:54Z +10842,401,1,8450,2.99,2005-07-29T07:44:05Z,2020-02-15T06:59:54Z +10843,401,2,8669,2.99,2005-07-29T15:44:55Z,2020-02-15T06:59:54Z +10844,401,1,8722,8.99,2005-07-29T17:58:58Z,2020-02-15T06:59:54Z +10845,401,2,9701,4.99,2005-07-31T07:32:21Z,2020-02-15T06:59:54Z +10846,401,2,10171,0.99,2005-07-31T23:29:05Z,2020-02-15T06:59:54Z +10847,401,1,11820,2.99,2005-08-17T12:25:33Z,2020-02-15T06:59:54Z +10848,401,1,12475,4.99,2005-08-18T12:14:21Z,2020-02-15T06:59:54Z +10849,401,2,12479,4.99,2005-08-18T12:26:37Z,2020-02-15T06:59:54Z +10850,401,1,12906,2.99,2005-08-19T04:13:43Z,2020-02-15T06:59:54Z +10851,401,1,13024,4.99,2005-08-19T08:19:21Z,2020-02-15T06:59:54Z +10852,401,1,14359,0.99,2005-08-21T09:16:19Z,2020-02-15T06:59:54Z +10853,401,2,14433,1.99,2005-08-21T11:36:34Z,2020-02-15T06:59:54Z +10854,401,1,15831,0.99,2005-08-23T15:21:19Z,2020-02-15T06:59:54Z +10855,401,1,15927,0.99,2005-08-23T18:23:11Z,2020-02-15T06:59:54Z +10856,402,2,801,1.99,2005-05-29T17:35:50Z,2020-02-15T06:59:54Z +10857,402,2,1194,4.99,2005-06-15T01:25:08Z,2020-02-15T06:59:54Z +10858,402,2,2490,4.99,2005-06-18T22:00:50Z,2020-02-15T06:59:54Z +10859,402,2,2913,2.99,2005-06-20T03:42:27Z,2020-02-15T06:59:54Z +10860,402,2,3564,6.99,2005-07-06T03:02:13Z,2020-02-15T06:59:54Z +10861,402,2,3612,3.99,2005-07-06T05:37:26Z,2020-02-15T06:59:54Z +10862,402,2,3755,5.99,2005-07-06T12:37:16Z,2020-02-15T06:59:54Z +10863,402,1,4399,2.99,2005-07-07T21:20:28Z,2020-02-15T06:59:54Z +10864,402,2,4604,3.99,2005-07-08T06:58:43Z,2020-02-15T06:59:54Z +10865,402,2,5329,4.99,2005-07-09T16:49:46Z,2020-02-15T06:59:54Z +10866,402,2,6183,2.99,2005-07-11T11:14:35Z,2020-02-15T06:59:54Z +10867,402,1,6283,3.99,2005-07-11T16:47:32Z,2020-02-15T06:59:54Z +10868,402,1,7633,0.99,2005-07-28T01:03:41Z,2020-02-15T06:59:54Z +10869,402,2,8521,7.99,2005-07-29T10:12:45Z,2020-02-15T06:59:54Z +10870,402,1,9657,6.99,2005-07-31T06:00:41Z,2020-02-15T06:59:54Z +10871,402,2,9779,0.99,2005-07-31T10:08:33Z,2020-02-15T06:59:54Z +10872,402,2,11045,0.99,2005-08-02T06:07:54Z,2020-02-15T06:59:54Z +10873,402,2,11549,4.99,2005-08-17T01:01:48Z,2020-02-15T06:59:54Z +10874,402,2,11920,0.99,2005-08-17T16:10:19Z,2020-02-15T06:59:54Z +10875,402,1,15428,4.99,2005-08-23T00:11:52Z,2020-02-15T06:59:54Z +10876,403,1,442,2.99,2005-05-27T18:12:13Z,2020-02-15T06:59:54Z +10877,403,1,517,0.99,2005-05-28T03:17:57Z,2020-02-15T06:59:54Z +10878,403,2,1221,4.99,2005-06-15T03:35:16Z,2020-02-15T06:59:54Z +10879,403,1,1249,8.99,2005-06-15T05:38:09Z,2020-02-15T06:59:54Z +10880,403,2,2488,3.99,2005-06-18T21:38:26Z,2020-02-15T06:59:54Z +10881,403,1,2927,4.99,2005-06-20T04:41:41Z,2020-02-15T06:59:54Z +10882,403,2,3049,6.99,2005-06-20T12:51:01Z,2020-02-15T06:59:54Z +10883,403,1,3356,5.99,2005-06-21T11:38:45Z,2020-02-15T06:59:54Z +10884,403,1,3644,6.99,2005-07-06T07:20:11Z,2020-02-15T06:59:54Z +10885,403,2,3737,3.99,2005-07-06T11:45:53Z,2020-02-15T06:59:54Z +10886,403,2,4096,4.99,2005-07-07T06:09:11Z,2020-02-15T06:59:54Z +10887,403,1,5982,4.99,2005-07-11T00:24:44Z,2020-02-15T06:59:54Z +10888,403,2,6322,2.99,2005-07-11T18:58:20Z,2020-02-15T06:59:54Z +10889,403,1,6342,4.99,2005-07-11T19:48:24Z,2020-02-15T06:59:54Z +10890,403,1,7103,4.99,2005-07-27T05:08:59Z,2020-02-15T06:59:54Z +10891,403,2,8013,5.99,2005-07-28T15:30:26Z,2020-02-15T06:59:54Z +10892,403,1,9058,2.99,2005-07-30T07:15:45Z,2020-02-15T06:59:54Z +10893,403,2,9486,7.99,2005-07-30T23:35:42Z,2020-02-15T06:59:54Z +10894,403,2,9794,4.99,2005-07-31T10:47:01Z,2020-02-15T06:59:54Z +10895,403,2,10109,5.99,2005-07-31T21:04:49Z,2020-02-15T06:59:54Z +10896,403,1,10443,2.99,2005-08-01T09:01:04Z,2020-02-15T06:59:54Z +10897,403,1,10547,6.99,2005-08-01T12:44:17Z,2020-02-15T06:59:54Z +10898,403,2,10789,2.99,2005-08-01T21:37:55Z,2020-02-15T06:59:54Z +10899,403,1,11038,7.99,2005-08-02T05:59:42Z,2020-02-15T06:59:54Z +10900,403,2,11391,9.99,2005-08-02T18:40:12Z,2020-02-15T06:59:54Z +10901,403,2,11427,2.99,2005-08-02T20:02:39Z,2020-02-15T06:59:54Z +10902,403,2,11460,0.99,2005-08-02T21:28:03Z,2020-02-15T06:59:54Z +10903,403,2,11558,0.99,2005-08-17T01:19:52Z,2020-02-15T06:59:54Z +10904,403,2,12005,5.99,2005-08-17T18:56:55Z,2020-02-15T06:59:54Z +10905,403,1,12132,2.99,2005-08-17T23:37:03Z,2020-02-15T06:59:54Z +10906,403,1,12793,5.99,2005-08-19T00:20:36Z,2020-02-15T06:59:54Z +10907,403,1,14519,2.99,2005-08-21T14:59:29Z,2020-02-15T06:59:54Z +10908,403,1,14662,0.99,2005-08-21T19:45:27Z,2020-02-15T06:59:54Z +10909,403,2,14725,4.99,2005-08-21T22:02:08Z,2020-02-15T06:59:54Z +10910,403,1,15410,4.99,2005-08-22T23:27:43Z,2020-02-15T06:59:54Z +10911,404,2,1081,5.99,2005-05-31T10:56:32Z,2020-02-15T06:59:54Z +10912,404,2,1506,2.99,2005-06-15T22:19:37Z,2020-02-15T06:59:54Z +10913,404,2,1840,4.99,2005-06-16T23:39:34Z,2020-02-15T06:59:54Z +10914,404,1,2715,4.99,2005-06-19T14:29:35Z,2020-02-15T06:59:54Z +10915,404,1,2951,2.99,2005-06-20T06:23:01Z,2020-02-15T06:59:54Z +10916,404,1,3927,2.99,2005-07-06T20:48:14Z,2020-02-15T06:59:54Z +10917,404,1,4495,2.99,2005-07-08T01:43:46Z,2020-02-15T06:59:54Z +10918,404,2,4615,8.99,2005-07-08T07:46:53Z,2020-02-15T06:59:54Z +10919,404,1,4653,4.99,2005-07-08T09:48:01Z,2020-02-15T06:59:54Z +10920,404,1,4963,4.99,2005-07-08T23:38:40Z,2020-02-15T06:59:54Z +10921,404,1,5632,3.99,2005-07-10T06:17:06Z,2020-02-15T06:59:54Z +10922,404,1,6114,1.99,2005-07-11T07:33:48Z,2020-02-15T06:59:54Z +10923,404,2,6779,0.99,2005-07-12T16:10:50Z,2020-02-15T06:59:54Z +10924,404,1,6964,4.99,2005-07-27T00:15:04Z,2020-02-15T06:59:54Z +10925,404,1,8058,5.99,2005-07-28T17:07:49Z,2020-02-15T06:59:54Z +10926,404,1,8455,3.99,2005-07-29T07:53:06Z,2020-02-15T06:59:54Z +10927,404,1,9206,4.99,2005-07-30T12:46:59Z,2020-02-15T06:59:54Z +10928,404,1,9472,4.99,2005-07-30T23:03:32Z,2020-02-15T06:59:54Z +10929,404,2,9824,2.99,2005-07-31T11:49:55Z,2020-02-15T06:59:54Z +10930,404,1,10651,2.99,2005-08-01T16:20:22Z,2020-02-15T06:59:54Z +10931,404,1,12325,5.99,2005-08-18T06:41:30Z,2020-02-15T06:59:54Z +10932,404,1,12554,8.99,2005-08-18T14:47:28Z,2020-02-15T06:59:54Z +10933,404,2,13412,5.99,2005-08-19T22:46:35Z,2020-02-15T06:59:54Z +10934,404,1,13422,4.99,2005-08-19T23:07:24Z,2020-02-15T06:59:54Z +10935,404,1,14691,0.99,2005-08-21T20:42:29Z,2020-02-15T06:59:54Z +10936,404,2,14835,5.99,2005-08-22T01:49:07Z,2020-02-15T06:59:54Z +10937,404,2,14838,4.99,2005-08-22T01:57:34Z,2020-02-15T06:59:54Z +10938,404,2,14912,4.99,2005-08-22T04:51:42Z,2020-02-15T06:59:54Z +10939,404,2,15087,0.99,2005-08-22T11:24:09Z,2020-02-15T06:59:54Z +10940,404,2,15290,10.99,2005-08-22T19:28:02Z,2020-02-15T06:59:54Z +10941,405,1,121,2.99,2005-05-25T19:41:29Z,2020-02-15T06:59:54Z +10942,405,2,770,4.99,2005-05-29T12:56:50Z,2020-02-15T06:59:54Z +10943,405,2,1315,4.99,2005-06-15T10:23:08Z,2020-02-15T06:59:54Z +10944,405,1,1888,0.99,2005-06-17T03:58:36Z,2020-02-15T06:59:54Z +10945,405,2,1953,5.99,2005-06-17T08:34:57Z,2020-02-15T06:59:54Z +10946,405,2,2654,3.99,2005-06-19T10:37:54Z,2020-02-15T06:59:54Z +10947,405,1,3240,4.99,2005-06-21T02:53:17Z,2020-02-15T06:59:54Z +10948,405,1,3253,5.99,2005-06-21T03:25:37Z,2020-02-15T06:59:54Z +10949,405,2,4223,0.99,2005-07-07T12:23:54Z,2020-02-15T06:59:54Z +10950,405,2,4401,0.99,2005-07-07T21:26:27Z,2020-02-15T06:59:54Z +10951,405,2,5040,7.99,2005-07-09T03:16:34Z,2020-02-15T06:59:54Z +10952,405,1,5231,0.99,2005-07-09T12:35:02Z,2020-02-15T06:59:54Z +10953,405,2,5512,1.99,2005-07-10T01:05:38Z,2020-02-15T06:59:54Z +10954,405,1,6110,2.99,2005-07-11T07:23:47Z,2020-02-15T06:59:54Z +10955,405,1,7455,2.99,2005-07-27T18:34:41Z,2020-02-15T06:59:54Z +10956,405,1,7759,0.99,2005-07-28T06:28:45Z,2020-02-15T06:59:54Z +10957,405,2,8482,2.99,2005-07-29T08:46:33Z,2020-02-15T06:59:54Z +10958,405,1,8955,5.99,2005-07-30T03:28:27Z,2020-02-15T06:59:54Z +10959,405,1,9569,0.99,2005-07-31T02:39:38Z,2020-02-15T06:59:54Z +10960,405,1,10472,4.99,2005-08-01T09:54:41Z,2020-02-15T06:59:54Z +10961,405,2,10823,4.99,2005-08-01T22:59:10Z,2020-02-15T06:59:54Z +10962,405,1,11345,7.99,2005-08-02T17:14:19Z,2020-02-15T06:59:54Z +10963,405,1,12050,0.99,2005-08-17T20:55:25Z,2020-02-15T06:59:54Z +10964,405,2,12425,5.99,2005-08-18T10:18:06Z,2020-02-15T06:59:54Z +10965,405,1,13304,1.99,2005-08-19T18:56:32Z,2020-02-15T06:59:54Z +10966,405,1,13398,0.99,2005-08-19T22:08:48Z,2020-02-15T06:59:54Z +10967,405,1,14274,4.99,2005-08-21T06:29:20Z,2020-02-15T06:59:54Z +10968,405,2,14537,0.99,2005-08-21T15:24:24Z,2020-02-15T06:59:54Z +10969,405,1,15072,1.99,2005-08-22T10:58:45Z,2020-02-15T06:59:54Z +10970,405,2,15383,2.99,2005-08-22T22:31:20Z,2020-02-15T06:59:54Z +10971,405,1,15932,4.99,2005-08-23T18:31:40Z,2020-02-15T06:59:54Z +10972,405,1,12792,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +10973,406,1,855,0.99,2005-05-30T02:00:28Z,2020-02-15T06:59:54Z +10974,406,1,2113,4.99,2005-06-17T19:57:46Z,2020-02-15T06:59:54Z +10975,406,2,2150,3.99,2005-06-17T22:50:36Z,2020-02-15T06:59:54Z +10976,406,1,2241,2.99,2005-06-18T04:31:41Z,2020-02-15T06:59:54Z +10977,406,2,2325,0.99,2005-06-18T10:08:07Z,2020-02-15T06:59:54Z +10978,406,2,2585,0.99,2005-06-19T05:05:03Z,2020-02-15T06:59:54Z +10979,406,1,3186,7.99,2005-06-20T23:04:20Z,2020-02-15T06:59:54Z +10980,406,1,3306,4.99,2005-06-21T07:46:58Z,2020-02-15T06:59:54Z +10981,406,2,4264,4.99,2005-07-07T14:25:28Z,2020-02-15T06:59:54Z +10982,406,2,5098,4.99,2005-07-09T06:13:54Z,2020-02-15T06:59:54Z +10983,406,2,5263,0.99,2005-07-09T14:10:36Z,2020-02-15T06:59:54Z +10984,406,1,5766,0.99,2005-07-10T13:07:31Z,2020-02-15T06:59:54Z +10985,406,2,6439,2.99,2005-07-12T00:23:48Z,2020-02-15T06:59:54Z +10986,406,2,7109,5.99,2005-07-27T05:28:57Z,2020-02-15T06:59:54Z +10987,406,1,7171,4.99,2005-07-27T07:58:35Z,2020-02-15T06:59:54Z +10988,406,1,7259,4.99,2005-07-27T11:06:00Z,2020-02-15T06:59:54Z +10989,406,2,7604,7.99,2005-07-27T23:54:52Z,2020-02-15T06:59:54Z +10990,406,2,8080,4.99,2005-07-28T18:05:06Z,2020-02-15T06:59:54Z +10991,406,2,8295,2.99,2005-07-29T02:42:14Z,2020-02-15T06:59:54Z +10992,406,2,8630,0.99,2005-07-29T14:07:59Z,2020-02-15T06:59:54Z +10993,406,1,8903,0.99,2005-07-30T01:08:06Z,2020-02-15T06:59:54Z +10994,406,2,8962,1.99,2005-07-30T03:43:45Z,2020-02-15T06:59:54Z +10995,406,2,9224,0.99,2005-07-30T13:25:37Z,2020-02-15T06:59:54Z +10996,406,1,9291,4.99,2005-07-30T16:03:39Z,2020-02-15T06:59:54Z +10997,406,2,9487,2.99,2005-07-30T23:40:22Z,2020-02-15T06:59:54Z +10998,406,1,9660,8.99,2005-07-31T06:03:17Z,2020-02-15T06:59:54Z +10999,406,1,10632,1.99,2005-08-01T15:36:56Z,2020-02-15T06:59:54Z +11000,406,1,11603,4.99,2005-08-17T03:22:10Z,2020-02-15T06:59:54Z +11001,406,2,12505,5.99,2005-08-18T13:17:30Z,2020-02-15T06:59:54Z +11002,406,2,14205,6.99,2005-08-21T03:57:15Z,2020-02-15T06:59:54Z +11003,406,2,14421,2.99,2005-08-21T11:20:21Z,2020-02-15T06:59:54Z +11004,406,2,14601,2.99,2005-08-21T17:45:52Z,2020-02-15T06:59:54Z +11005,407,1,619,7.99,2005-05-28T15:52:26Z,2020-02-15T06:59:54Z +11006,407,1,1698,2.99,2005-06-16T13:04:42Z,2020-02-15T06:59:54Z +11007,407,2,2597,0.99,2005-06-19T05:53:46Z,2020-02-15T06:59:54Z +11008,407,1,4296,0.99,2005-07-07T16:16:03Z,2020-02-15T06:59:54Z +11009,407,1,5070,4.99,2005-07-09T04:58:26Z,2020-02-15T06:59:54Z +11010,407,2,5590,9.99,2005-07-10T04:23:11Z,2020-02-15T06:59:54Z +11011,407,1,6727,0.99,2005-07-12T13:54:25Z,2020-02-15T06:59:54Z +11012,407,1,7363,5.99,2005-07-27T14:58:29Z,2020-02-15T06:59:54Z +11013,407,2,7643,4.99,2005-07-28T01:19:44Z,2020-02-15T06:59:54Z +11014,407,1,8078,2.99,2005-07-28T17:54:42Z,2020-02-15T06:59:54Z +11015,407,1,8109,4.99,2005-07-28T19:07:44Z,2020-02-15T06:59:54Z +11016,407,1,8197,9.99,2005-07-28T23:04:10Z,2020-02-15T06:59:54Z +11017,407,2,8571,0.99,2005-07-29T11:48:39Z,2020-02-15T06:59:54Z +11018,407,1,8802,2.99,2005-07-29T21:25:51Z,2020-02-15T06:59:54Z +11019,407,2,10774,4.99,2005-08-01T20:54:33Z,2020-02-15T06:59:54Z +11020,407,1,11214,8.99,2005-08-02T12:19:50Z,2020-02-15T06:59:54Z +11021,407,1,11222,2.99,2005-08-02T12:32:28Z,2020-02-15T06:59:54Z +11022,407,2,11382,5.99,2005-08-02T18:20:52Z,2020-02-15T06:59:54Z +11023,407,2,11518,4.99,2005-08-16T23:59:49Z,2020-02-15T06:59:54Z +11024,407,1,11677,0.99,2005-08-17T06:06:26Z,2020-02-15T06:59:54Z +11025,407,2,12566,0.99,2005-08-18T15:13:04Z,2020-02-15T06:59:54Z +11026,407,2,12931,2.99,2005-08-19T05:11:47Z,2020-02-15T06:59:54Z +11027,407,1,13800,0.99,2005-08-20T12:40:48Z,2020-02-15T06:59:54Z +11028,407,2,13856,6.99,2005-08-20T14:49:32Z,2020-02-15T06:59:54Z +11029,407,2,14401,6.99,2005-08-21T10:36:20Z,2020-02-15T06:59:54Z +11030,407,2,15320,0.99,2005-08-22T20:17:49Z,2020-02-15T06:59:54Z +11031,407,2,15334,1.99,2005-08-22T20:44:35Z,2020-02-15T06:59:54Z +11032,408,2,3,3.99,2005-05-24T23:03:39Z,2020-02-15T06:59:54Z +11033,408,2,59,5.99,2005-05-25T08:56:42Z,2020-02-15T06:59:54Z +11034,408,1,526,2.99,2005-05-28T04:27:37Z,2020-02-15T06:59:54Z +11035,408,2,2479,4.99,2005-06-18T21:03:08Z,2020-02-15T06:59:54Z +11036,408,1,2564,2.99,2005-06-19T03:41:10Z,2020-02-15T06:59:54Z +11037,408,2,2728,2.99,2005-06-19T15:04:04Z,2020-02-15T06:59:54Z +11038,408,2,4330,3.99,2005-07-07T18:09:41Z,2020-02-15T06:59:54Z +11039,408,2,5073,0.99,2005-07-09T05:02:35Z,2020-02-15T06:59:54Z +11040,408,1,6062,0.99,2005-07-11T04:11:58Z,2020-02-15T06:59:54Z +11041,408,2,6203,4.99,2005-07-11T12:28:57Z,2020-02-15T06:59:54Z +11042,408,2,6826,2.99,2005-07-12T18:32:02Z,2020-02-15T06:59:54Z +11043,408,1,7053,4.99,2005-07-27T03:38:54Z,2020-02-15T06:59:54Z +11044,408,2,7996,4.99,2005-07-28T15:00:49Z,2020-02-15T06:59:54Z +11045,408,2,8251,4.99,2005-07-29T00:50:14Z,2020-02-15T06:59:54Z +11046,408,2,8469,3.99,2005-07-29T08:26:27Z,2020-02-15T06:59:54Z +11047,408,2,8902,6.99,2005-07-30T01:08:06Z,2020-02-15T06:59:54Z +11048,408,1,9052,0.99,2005-07-30T07:06:08Z,2020-02-15T06:59:54Z +11049,408,2,9757,4.99,2005-07-31T09:25:14Z,2020-02-15T06:59:54Z +11050,408,2,11115,2.99,2005-08-02T08:31:06Z,2020-02-15T06:59:54Z +11051,408,1,12140,2.99,2005-08-17T23:57:55Z,2020-02-15T06:59:54Z +11052,408,1,12338,4.99,2005-08-18T07:04:24Z,2020-02-15T06:59:54Z +11053,408,1,12498,2.99,2005-08-18T13:01:08Z,2020-02-15T06:59:54Z +11054,408,2,12900,0.99,2005-08-19T04:03:49Z,2020-02-15T06:59:54Z +11055,408,1,13508,7.99,2005-08-20T02:12:54Z,2020-02-15T06:59:54Z +11056,408,2,13744,3.99,2005-08-20T10:51:45Z,2020-02-15T06:59:54Z +11057,408,1,13944,2.99,2005-08-20T17:41:16Z,2020-02-15T06:59:54Z +11058,408,2,14733,4.99,2005-08-21T22:22:33Z,2020-02-15T06:59:54Z +11059,408,1,15628,2.99,2005-08-23T07:28:04Z,2020-02-15T06:59:54Z +11060,408,2,15716,1.99,2005-08-23T11:02:00Z,2020-02-15T06:59:54Z +11061,408,1,15765,6.99,2005-08-23T13:06:19Z,2020-02-15T06:59:54Z +11062,409,1,310,6.99,2005-05-26T22:41:07Z,2020-02-15T06:59:54Z +11063,409,2,1226,5.99,2005-06-15T03:46:10Z,2020-02-15T06:59:54Z +11064,409,2,2310,8.99,2005-06-18T08:45:59Z,2020-02-15T06:59:54Z +11065,409,1,3866,5.99,2005-07-06T17:47:20Z,2020-02-15T06:59:54Z +11066,409,2,4550,4.99,2005-07-08T04:34:00Z,2020-02-15T06:59:54Z +11067,409,1,5175,3.99,2005-07-09T09:34:28Z,2020-02-15T06:59:54Z +11068,409,2,5306,5.99,2005-07-09T15:56:45Z,2020-02-15T06:59:54Z +11069,409,1,5422,0.99,2005-07-09T20:55:47Z,2020-02-15T06:59:54Z +11070,409,1,5848,2.99,2005-07-10T17:28:14Z,2020-02-15T06:59:54Z +11071,409,1,5955,7.99,2005-07-10T23:22:10Z,2020-02-15T06:59:54Z +11072,409,2,6026,4.99,2005-07-11T02:21:43Z,2020-02-15T06:59:54Z +11073,409,1,6596,2.99,2005-07-12T07:32:59Z,2020-02-15T06:59:54Z +11074,409,2,7673,2.99,2005-07-28T02:53:53Z,2020-02-15T06:59:54Z +11075,409,2,7940,0.99,2005-07-28T12:46:47Z,2020-02-15T06:59:54Z +11076,409,1,8037,4.99,2005-07-28T16:31:20Z,2020-02-15T06:59:54Z +11077,409,2,8265,5.99,2005-07-29T01:20:15Z,2020-02-15T06:59:54Z +11078,409,1,8726,1.99,2005-07-29T18:09:22Z,2020-02-15T06:59:54Z +11079,409,2,9267,0.99,2005-07-30T14:59:05Z,2020-02-15T06:59:54Z +11080,409,2,12830,0.99,2005-08-19T01:40:25Z,2020-02-15T06:59:54Z +11081,409,1,13392,8.99,2005-08-19T22:03:22Z,2020-02-15T06:59:54Z +11082,409,2,13632,6.99,2005-08-20T07:10:52Z,2020-02-15T06:59:54Z +11083,409,1,14103,1.99,2005-08-21T00:37:00Z,2020-02-15T06:59:54Z +11084,409,1,14697,4.99,2005-08-21T20:49:21Z,2020-02-15T06:59:54Z +11085,410,1,1514,2.99,2005-06-15T22:57:34Z,2020-02-15T06:59:54Z +11086,410,1,2073,2.99,2005-06-17T16:33:59Z,2020-02-15T06:59:54Z +11087,410,1,2255,4.99,2005-06-18T05:21:12Z,2020-02-15T06:59:54Z +11088,410,2,2400,5.99,2005-06-18T16:10:46Z,2020-02-15T06:59:54Z +11089,410,2,2971,0.99,2005-06-20T07:56:00Z,2020-02-15T06:59:54Z +11090,410,1,3249,4.99,2005-06-21T03:13:19Z,2020-02-15T06:59:54Z +11091,410,2,4062,0.99,2005-07-07T04:22:27Z,2020-02-15T06:59:54Z +11092,410,1,4267,0.99,2005-07-07T14:35:30Z,2020-02-15T06:59:54Z +11093,410,1,5150,3.99,2005-07-09T08:28:40Z,2020-02-15T06:59:54Z +11094,410,1,5192,4.99,2005-07-09T10:27:09Z,2020-02-15T06:59:54Z +11095,410,2,5330,5.99,2005-07-09T16:53:57Z,2020-02-15T06:59:54Z +11096,410,1,5336,2.99,2005-07-09T17:01:08Z,2020-02-15T06:59:54Z +11097,410,1,6148,4.99,2005-07-11T09:14:22Z,2020-02-15T06:59:54Z +11098,410,2,6218,5.99,2005-07-11T13:14:58Z,2020-02-15T06:59:54Z +11099,410,2,7350,4.99,2005-07-27T14:34:14Z,2020-02-15T06:59:54Z +11100,410,2,7407,5.99,2005-07-27T16:29:04Z,2020-02-15T06:59:54Z +11101,410,1,7523,4.99,2005-07-27T21:11:23Z,2020-02-15T06:59:54Z +11102,410,2,8625,3.99,2005-07-29T13:59:13Z,2020-02-15T06:59:54Z +11103,410,1,8882,0.99,2005-07-30T00:24:05Z,2020-02-15T06:59:54Z +11104,410,1,9263,2.99,2005-07-30T14:48:24Z,2020-02-15T06:59:54Z +11105,410,1,10402,4.99,2005-08-01T07:27:19Z,2020-02-15T06:59:54Z +11106,410,1,10837,2.99,2005-08-01T23:30:22Z,2020-02-15T06:59:54Z +11107,410,1,11107,0.99,2005-08-02T08:19:38Z,2020-02-15T06:59:54Z +11108,410,1,11187,10.99,2005-08-02T11:16:19Z,2020-02-15T06:59:54Z +11109,410,1,11472,6.99,2005-08-02T21:49:06Z,2020-02-15T06:59:54Z +11110,410,1,11694,6.99,2005-08-17T06:57:30Z,2020-02-15T06:59:54Z +11111,410,2,12955,8.99,2005-08-19T06:05:58Z,2020-02-15T06:59:54Z +11112,410,1,13460,4.99,2005-08-20T00:48:24Z,2020-02-15T06:59:54Z +11113,410,2,13748,2.99,2005-08-20T10:59:54Z,2020-02-15T06:59:54Z +11114,410,2,13948,6.99,2005-08-20T17:50:48Z,2020-02-15T06:59:54Z +11115,410,1,14237,3.99,2005-08-21T05:15:00Z,2020-02-15T06:59:54Z +11116,410,2,14298,4.99,2005-08-21T07:17:10Z,2020-02-15T06:59:54Z +11117,410,1,14319,4.99,2005-08-21T08:00:55Z,2020-02-15T06:59:54Z +11118,410,2,14819,2.99,2005-08-22T01:17:19Z,2020-02-15T06:59:54Z +11119,410,1,15211,2.99,2005-08-22T16:40:21Z,2020-02-15T06:59:54Z +11120,410,2,15392,3.99,2005-08-22T23:02:15Z,2020-02-15T06:59:54Z +11121,410,1,15518,4.99,2005-08-23T03:19:34Z,2020-02-15T06:59:54Z +11122,410,1,12665,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11123,411,2,686,4.99,2005-05-29T00:27:10Z,2020-02-15T06:59:54Z +11124,411,2,972,1.99,2005-05-30T20:21:07Z,2020-02-15T06:59:54Z +11125,411,1,1985,0.99,2005-06-17T10:31:37Z,2020-02-15T06:59:54Z +11126,411,2,1997,2.99,2005-06-17T11:19:43Z,2020-02-15T06:59:54Z +11127,411,2,2712,0.99,2005-06-19T14:20:13Z,2020-02-15T06:59:54Z +11128,411,1,3928,2.99,2005-07-06T20:52:09Z,2020-02-15T06:59:54Z +11129,411,2,4146,0.99,2005-07-07T08:30:16Z,2020-02-15T06:59:54Z +11130,411,1,4246,2.99,2005-07-07T13:49:03Z,2020-02-15T06:59:54Z +11131,411,2,5357,5.99,2005-07-09T18:08:59Z,2020-02-15T06:59:54Z +11132,411,1,5800,2.99,2005-07-10T14:58:36Z,2020-02-15T06:59:54Z +11133,411,1,7102,1.99,2005-07-27T05:07:21Z,2020-02-15T06:59:54Z +11134,411,2,7395,0.99,2005-07-27T16:03:11Z,2020-02-15T06:59:54Z +11135,411,1,7513,2.99,2005-07-27T20:51:04Z,2020-02-15T06:59:54Z +11136,411,1,7813,2.99,2005-07-28T08:08:27Z,2020-02-15T06:59:54Z +11137,411,1,8023,0.99,2005-07-28T15:53:29Z,2020-02-15T06:59:54Z +11138,411,2,8613,5.99,2005-07-29T13:30:58Z,2020-02-15T06:59:54Z +11139,411,2,9622,0.99,2005-07-31T04:21:45Z,2020-02-15T06:59:54Z +11140,411,2,11294,2.99,2005-08-02T15:08:27Z,2020-02-15T06:59:54Z +11141,411,1,11997,5.99,2005-08-17T18:34:38Z,2020-02-15T06:59:54Z +11142,411,2,13634,0.99,2005-08-20T07:16:45Z,2020-02-15T06:59:54Z +11143,411,2,13656,7.99,2005-08-20T08:01:07Z,2020-02-15T06:59:54Z +11144,411,2,14480,2.99,2005-08-21T13:36:40Z,2020-02-15T06:59:54Z +11145,411,1,14772,5.99,2005-08-21T23:50:39Z,2020-02-15T06:59:54Z +11146,411,2,14996,2.99,2005-08-22T07:52:41Z,2020-02-15T06:59:54Z +11147,411,1,15936,0.99,2005-08-23T18:43:11Z,2020-02-15T06:59:54Z +11148,411,2,13246,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11149,412,2,191,0.99,2005-05-26T06:14:06Z,2020-02-15T06:59:54Z +11150,412,1,333,4.99,2005-05-27T02:52:21Z,2020-02-15T06:59:54Z +11151,412,1,717,0.99,2005-05-29T04:37:44Z,2020-02-15T06:59:54Z +11152,412,2,1043,3.99,2005-05-31T06:11:40Z,2020-02-15T06:59:54Z +11153,412,1,3292,2.99,2005-06-21T06:59:11Z,2020-02-15T06:59:54Z +11154,412,2,3888,0.99,2005-07-06T18:54:20Z,2020-02-15T06:59:54Z +11155,412,2,4074,0.99,2005-07-07T04:49:49Z,2020-02-15T06:59:54Z +11156,412,1,8036,0.99,2005-07-28T16:27:43Z,2020-02-15T06:59:54Z +11157,412,2,8330,8.99,2005-07-29T04:09:07Z,2020-02-15T06:59:54Z +11158,412,1,8411,8.99,2005-07-29T06:44:23Z,2020-02-15T06:59:54Z +11159,412,1,8674,0.99,2005-07-29T15:54:22Z,2020-02-15T06:59:54Z +11160,412,1,9881,4.99,2005-07-31T13:50:38Z,2020-02-15T06:59:54Z +11161,412,2,10381,2.99,2005-08-01T06:36:37Z,2020-02-15T06:59:54Z +11162,412,1,10467,5.99,2005-08-01T09:45:58Z,2020-02-15T06:59:54Z +11163,412,2,11027,4.99,2005-08-02T05:47:10Z,2020-02-15T06:59:54Z +11164,412,1,14068,3.99,2005-08-20T22:50:59Z,2020-02-15T06:59:54Z +11165,412,1,14535,6.99,2005-08-21T15:22:37Z,2020-02-15T06:59:54Z +11166,412,2,15354,4.99,2005-08-22T21:18:59Z,2020-02-15T06:59:54Z +11167,412,2,15732,4.99,2005-08-23T11:35:12Z,2020-02-15T06:59:54Z +11168,412,1,15781,8.99,2005-08-23T13:41:05Z,2020-02-15T06:59:54Z +11169,412,1,15314,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11170,413,1,40,4.99,2005-05-25T05:09:04Z,2020-02-15T06:59:54Z +11171,413,1,999,4.99,2005-05-31T00:25:10Z,2020-02-15T06:59:54Z +11172,413,2,2130,5.99,2005-06-17T21:00:44Z,2020-02-15T06:59:54Z +11173,413,2,2545,4.99,2005-06-19T02:23:36Z,2020-02-15T06:59:54Z +11174,413,1,3762,4.99,2005-07-06T12:52:49Z,2020-02-15T06:59:54Z +11175,413,2,4491,0.99,2005-07-08T01:30:46Z,2020-02-15T06:59:54Z +11176,413,1,5897,7.99,2005-07-10T20:16:14Z,2020-02-15T06:59:54Z +11177,413,2,7100,4.99,2005-07-27T05:05:01Z,2020-02-15T06:59:54Z +11178,413,1,7635,0.99,2005-07-28T01:08:11Z,2020-02-15T06:59:54Z +11179,413,2,7731,0.99,2005-07-28T05:01:18Z,2020-02-15T06:59:54Z +11180,413,1,10909,2.99,2005-08-02T01:53:59Z,2020-02-15T06:59:54Z +11181,413,2,11304,2.99,2005-08-02T15:40:10Z,2020-02-15T06:59:54Z +11182,413,1,11468,0.99,2005-08-02T21:47:26Z,2020-02-15T06:59:54Z +11183,413,1,11532,0.99,2005-08-17T00:34:14Z,2020-02-15T06:59:54Z +11184,413,2,12552,2.99,2005-08-18T14:46:34Z,2020-02-15T06:59:54Z +11185,413,1,13010,3.99,2005-08-19T07:52:21Z,2020-02-15T06:59:54Z +11186,413,1,13318,2.99,2005-08-19T19:33:57Z,2020-02-15T06:59:54Z +11187,413,2,13824,4.99,2005-08-20T13:43:12Z,2020-02-15T06:59:54Z +11188,413,2,13887,4.99,2005-08-20T15:39:00Z,2020-02-15T06:59:54Z +11189,413,1,14773,2.99,2005-08-21T23:50:57Z,2020-02-15T06:59:54Z +11190,413,1,15678,2.99,2005-08-23T09:23:45Z,2020-02-15T06:59:54Z +11191,414,1,85,4.99,2005-05-25T13:05:34Z,2020-02-15T06:59:54Z +11192,414,1,261,3.99,2005-05-26T15:44:23Z,2020-02-15T06:59:54Z +11193,414,1,2246,4.99,2005-06-18T04:54:29Z,2020-02-15T06:59:54Z +11194,414,1,2559,9.99,2005-06-19T03:09:46Z,2020-02-15T06:59:54Z +11195,414,1,3318,5.99,2005-06-21T08:23:05Z,2020-02-15T06:59:54Z +11196,414,1,3957,10.99,2005-07-06T22:05:47Z,2020-02-15T06:59:54Z +11197,414,1,4437,3.99,2005-07-07T22:55:41Z,2020-02-15T06:59:54Z +11198,414,2,6462,7.99,2005-07-12T01:15:24Z,2020-02-15T06:59:54Z +11199,414,2,6728,0.99,2005-07-12T13:56:48Z,2020-02-15T06:59:54Z +11200,414,2,6845,0.99,2005-07-12T19:20:41Z,2020-02-15T06:59:54Z +11201,414,1,7009,0.99,2005-07-27T01:45:44Z,2020-02-15T06:59:54Z +11202,414,1,7779,2.99,2005-07-28T07:11:11Z,2020-02-15T06:59:54Z +11203,414,1,9650,2.99,2005-07-31T05:47:32Z,2020-02-15T06:59:54Z +11204,414,2,9991,2.99,2005-07-31T17:26:27Z,2020-02-15T06:59:54Z +11205,414,2,10107,5.99,2005-07-31T21:01:46Z,2020-02-15T06:59:54Z +11206,414,1,11706,0.99,2005-08-17T07:23:46Z,2020-02-15T06:59:54Z +11207,414,2,12930,4.99,2005-08-19T05:11:32Z,2020-02-15T06:59:54Z +11208,414,1,13042,0.99,2005-08-19T09:06:08Z,2020-02-15T06:59:54Z +11209,414,1,13242,2.99,2005-08-19T16:28:47Z,2020-02-15T06:59:54Z +11210,414,1,13308,7.99,2005-08-19T18:59:42Z,2020-02-15T06:59:54Z +11211,414,1,13404,0.99,2005-08-19T22:18:42Z,2020-02-15T06:59:54Z +11212,414,2,13494,2.99,2005-08-20T01:36:34Z,2020-02-15T06:59:54Z +11213,414,2,13657,4.99,2005-08-20T08:01:39Z,2020-02-15T06:59:54Z +11214,414,1,15140,6.99,2005-08-22T13:39:20Z,2020-02-15T06:59:54Z +11215,414,2,15481,0.99,2005-08-23T01:59:14Z,2020-02-15T06:59:54Z +11216,415,2,665,4.99,2005-05-28T21:38:39Z,2020-02-15T06:59:54Z +11217,415,2,1867,4.99,2005-06-17T02:01:37Z,2020-02-15T06:59:54Z +11218,415,1,3211,2.99,2005-06-21T01:01:29Z,2020-02-15T06:59:54Z +11219,415,2,4926,8.99,2005-07-08T22:01:48Z,2020-02-15T06:59:54Z +11220,415,2,5665,0.99,2005-07-10T08:10:08Z,2020-02-15T06:59:54Z +11221,415,2,5733,0.99,2005-07-10T11:37:24Z,2020-02-15T06:59:54Z +11222,415,2,6491,5.99,2005-07-12T02:28:31Z,2020-02-15T06:59:54Z +11223,415,1,6505,3.99,2005-07-12T03:27:37Z,2020-02-15T06:59:54Z +11224,415,1,7379,4.99,2005-07-27T15:36:43Z,2020-02-15T06:59:54Z +11225,415,2,7624,0.99,2005-07-28T00:37:44Z,2020-02-15T06:59:54Z +11226,415,1,7748,4.99,2005-07-28T05:52:23Z,2020-02-15T06:59:54Z +11227,415,2,8317,2.99,2005-07-29T03:39:07Z,2020-02-15T06:59:54Z +11228,415,2,9586,2.99,2005-07-31T03:07:16Z,2020-02-15T06:59:54Z +11229,415,1,9852,2.99,2005-07-31T12:52:17Z,2020-02-15T06:59:54Z +11230,415,1,10263,5.99,2005-08-01T03:02:48Z,2020-02-15T06:59:54Z +11231,415,1,10553,2.99,2005-08-01T12:54:06Z,2020-02-15T06:59:54Z +11232,415,2,11310,1.99,2005-08-02T15:51:58Z,2020-02-15T06:59:54Z +11233,415,2,12128,5.99,2005-08-17T23:31:09Z,2020-02-15T06:59:54Z +11234,415,2,12588,2.99,2005-08-18T16:04:45Z,2020-02-15T06:59:54Z +11235,415,2,13729,8.99,2005-08-20T10:17:08Z,2020-02-15T06:59:54Z +11236,415,1,14992,4.99,2005-08-22T07:51:47Z,2020-02-15T06:59:54Z +11237,415,2,15121,4.99,2005-08-22T12:46:37Z,2020-02-15T06:59:54Z +11238,415,1,15959,0.99,2005-08-23T19:27:04Z,2020-02-15T06:59:54Z +11239,416,2,253,0.99,2005-05-26T14:43:14Z,2020-02-15T06:59:54Z +11240,416,2,724,3.99,2005-05-29T05:53:23Z,2020-02-15T06:59:54Z +11241,416,2,1031,2.99,2005-05-31T04:23:01Z,2020-02-15T06:59:54Z +11242,416,2,1158,2.99,2005-06-14T22:53:33Z,2020-02-15T06:59:54Z +11243,416,1,1343,4.99,2005-06-15T12:27:19Z,2020-02-15T06:59:54Z +11244,416,2,1553,0.99,2005-06-16T02:02:44Z,2020-02-15T06:59:54Z +11245,416,2,1596,2.99,2005-06-16T05:30:58Z,2020-02-15T06:59:54Z +11246,416,2,1771,0.99,2005-06-16T18:12:17Z,2020-02-15T06:59:54Z +11247,416,1,3833,3.99,2005-07-06T16:18:28Z,2020-02-15T06:59:54Z +11248,416,1,3868,2.99,2005-07-06T17:54:13Z,2020-02-15T06:59:54Z +11249,416,1,6097,2.99,2005-07-11T06:21:43Z,2020-02-15T06:59:54Z +11250,416,1,6879,7.99,2005-07-12T20:37:37Z,2020-02-15T06:59:54Z +11251,416,1,7889,0.99,2005-07-28T10:43:21Z,2020-02-15T06:59:54Z +11252,416,1,7917,2.99,2005-07-28T11:56:57Z,2020-02-15T06:59:54Z +11253,416,2,8349,5.99,2005-07-29T04:50:22Z,2020-02-15T06:59:54Z +11254,416,2,8588,2.99,2005-07-29T12:22:20Z,2020-02-15T06:59:54Z +11255,416,2,8648,2.99,2005-07-29T14:56:21Z,2020-02-15T06:59:54Z +11256,416,2,9383,2.99,2005-07-30T19:24:50Z,2020-02-15T06:59:54Z +11257,416,1,10254,3.99,2005-08-01T02:42:03Z,2020-02-15T06:59:54Z +11258,416,1,10354,2.99,2005-08-01T05:47:10Z,2020-02-15T06:59:54Z +11259,416,1,10742,6.99,2005-08-01T19:53:13Z,2020-02-15T06:59:54Z +11260,416,1,10937,6.99,2005-08-02T03:00:18Z,2020-02-15T06:59:54Z +11261,416,2,11047,5.99,2005-08-02T06:09:20Z,2020-02-15T06:59:54Z +11262,416,1,11557,6.99,2005-08-17T01:19:20Z,2020-02-15T06:59:54Z +11263,416,1,12722,8.99,2005-08-18T21:33:53Z,2020-02-15T06:59:54Z +11264,416,1,12932,4.99,2005-08-19T05:17:30Z,2020-02-15T06:59:54Z +11265,416,1,14239,4.99,2005-08-21T05:18:57Z,2020-02-15T06:59:54Z +11266,416,1,15235,1.99,2005-08-22T17:43:12Z,2020-02-15T06:59:54Z +11267,416,2,15470,4.99,2005-08-23T01:35:12Z,2020-02-15T06:59:54Z +11268,416,1,15727,2.99,2005-08-23T11:28:49Z,2020-02-15T06:59:54Z +11269,416,2,15761,0.99,2005-08-23T12:55:51Z,2020-02-15T06:59:54Z +11270,417,1,267,4.99,2005-05-26T16:16:21Z,2020-02-15T06:59:54Z +11271,417,2,630,8.99,2005-05-28T17:24:51Z,2020-02-15T06:59:54Z +11272,417,2,833,4.99,2005-05-29T23:21:56Z,2020-02-15T06:59:54Z +11273,417,1,1921,3.99,2005-06-17T06:04:16Z,2020-02-15T06:59:54Z +11274,417,1,3952,4.99,2005-07-06T21:51:31Z,2020-02-15T06:59:54Z +11275,417,1,4418,2.99,2005-07-07T22:05:30Z,2020-02-15T06:59:54Z +11276,417,1,4421,9.99,2005-07-07T22:07:55Z,2020-02-15T06:59:54Z +11277,417,2,6258,6.99,2005-07-11T15:24:32Z,2020-02-15T06:59:54Z +11278,417,1,6312,4.99,2005-07-11T18:19:02Z,2020-02-15T06:59:54Z +11279,417,1,8877,2.99,2005-07-30T00:15:22Z,2020-02-15T06:59:54Z +11280,417,2,9049,2.99,2005-07-30T06:57:28Z,2020-02-15T06:59:54Z +11281,417,1,10478,0.99,2005-08-01T10:09:06Z,2020-02-15T06:59:54Z +11282,417,1,11217,7.99,2005-08-02T12:26:31Z,2020-02-15T06:59:54Z +11283,417,1,11291,6.99,2005-08-02T14:57:58Z,2020-02-15T06:59:54Z +11284,417,2,11303,0.99,2005-08-02T15:39:18Z,2020-02-15T06:59:54Z +11285,417,2,12074,0.99,2005-08-17T21:50:57Z,2020-02-15T06:59:54Z +11286,417,2,12281,4.99,2005-08-18T04:50:32Z,2020-02-15T06:59:54Z +11287,417,1,13545,4.99,2005-08-20T03:50:15Z,2020-02-15T06:59:54Z +11288,417,1,13927,1.99,2005-08-20T17:11:58Z,2020-02-15T06:59:54Z +11289,417,2,14121,4.99,2005-08-21T01:26:33Z,2020-02-15T06:59:54Z +11290,417,1,14304,6.99,2005-08-21T07:23:10Z,2020-02-15T06:59:54Z +11291,417,1,14607,2.99,2005-08-21T17:56:50Z,2020-02-15T06:59:54Z +11292,417,2,14882,2.99,2005-08-22T03:52:21Z,2020-02-15T06:59:54Z +11293,417,1,15795,0.99,2005-08-23T14:07:56Z,2020-02-15T06:59:54Z +11294,417,2,13261,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11295,418,1,2825,2.99,2005-06-19T20:32:19Z,2020-02-15T06:59:54Z +11296,418,2,2943,2.99,2005-06-20T05:43:05Z,2020-02-15T06:59:54Z +11297,418,2,2969,2.99,2005-06-20T07:44:27Z,2020-02-15T06:59:54Z +11298,418,1,3805,0.99,2005-07-06T15:08:42Z,2020-02-15T06:59:54Z +11299,418,2,4852,7.99,2005-07-08T18:43:15Z,2020-02-15T06:59:54Z +11300,418,1,4865,2.99,2005-07-08T19:09:04Z,2020-02-15T06:59:54Z +11301,418,1,4938,0.99,2005-07-08T22:32:53Z,2020-02-15T06:59:54Z +11302,418,1,6150,4.99,2005-07-11T09:23:56Z,2020-02-15T06:59:54Z +11303,418,1,6970,4.99,2005-07-27T00:26:14Z,2020-02-15T06:59:54Z +11304,418,2,8546,5.99,2005-07-29T11:08:48Z,2020-02-15T06:59:54Z +11305,418,2,8591,0.99,2005-07-29T12:32:33Z,2020-02-15T06:59:54Z +11306,418,2,8886,10.99,2005-07-30T00:36:31Z,2020-02-15T06:59:54Z +11307,418,1,9558,4.99,2005-07-31T02:14:35Z,2020-02-15T06:59:54Z +11308,418,2,10537,5.99,2005-08-01T12:22:28Z,2020-02-15T06:59:54Z +11309,418,1,10709,0.99,2005-08-01T18:43:57Z,2020-02-15T06:59:54Z +11310,418,2,10915,2.99,2005-08-02T02:05:04Z,2020-02-15T06:59:54Z +11311,418,1,11270,2.99,2005-08-02T14:18:07Z,2020-02-15T06:59:54Z +11312,418,2,11322,3.99,2005-08-02T16:23:17Z,2020-02-15T06:59:54Z +11313,418,2,11409,1.99,2005-08-02T19:26:51Z,2020-02-15T06:59:54Z +11314,418,1,11650,4.99,2005-08-17T05:00:03Z,2020-02-15T06:59:54Z +11315,418,1,11769,2.99,2005-08-17T10:04:49Z,2020-02-15T06:59:54Z +11316,418,1,11910,0.99,2005-08-17T15:44:37Z,2020-02-15T06:59:54Z +11317,418,2,13312,0.99,2005-08-19T19:09:14Z,2020-02-15T06:59:54Z +11318,418,1,13537,2.99,2005-08-20T03:39:15Z,2020-02-15T06:59:54Z +11319,418,1,13970,0.99,2005-08-20T18:43:34Z,2020-02-15T06:59:54Z +11320,418,1,14484,0.99,2005-08-21T13:47:29Z,2020-02-15T06:59:54Z +11321,418,1,14836,4.99,2005-08-22T01:52:26Z,2020-02-15T06:59:54Z +11322,418,2,14860,2.99,2005-08-22T02:47:07Z,2020-02-15T06:59:54Z +11323,418,1,15466,4.99,2005-08-23T01:16:55Z,2020-02-15T06:59:54Z +11324,418,2,15957,5.99,2005-08-23T19:21:22Z,2020-02-15T06:59:54Z +11325,419,1,62,2.99,2005-05-25T09:18:52Z,2020-02-15T06:59:54Z +11326,419,2,2793,2.99,2005-06-19T18:52:37Z,2020-02-15T06:59:54Z +11327,419,1,3596,0.99,2005-07-06T05:03:11Z,2020-02-15T06:59:54Z +11328,419,1,3694,4.99,2005-07-06T10:01:23Z,2020-02-15T06:59:54Z +11329,419,1,4224,0.99,2005-07-07T12:24:21Z,2020-02-15T06:59:54Z +11330,419,2,5333,5.99,2005-07-09T16:59:38Z,2020-02-15T06:59:54Z +11331,419,2,5863,0.99,2005-07-10T18:25:23Z,2020-02-15T06:59:54Z +11332,419,1,5900,3.99,2005-07-10T20:21:54Z,2020-02-15T06:59:54Z +11333,419,2,5933,0.99,2005-07-10T22:06:48Z,2020-02-15T06:59:54Z +11334,419,2,6173,0.99,2005-07-11T10:33:11Z,2020-02-15T06:59:54Z +11335,419,2,6587,3.99,2005-07-12T06:56:26Z,2020-02-15T06:59:54Z +11336,419,1,7362,4.99,2005-07-27T14:58:27Z,2020-02-15T06:59:54Z +11337,419,1,7619,2.99,2005-07-28T00:25:41Z,2020-02-15T06:59:54Z +11338,419,1,7796,4.99,2005-07-28T07:39:39Z,2020-02-15T06:59:54Z +11339,419,1,10150,2.99,2005-07-31T22:22:00Z,2020-02-15T06:59:54Z +11340,419,1,10372,2.99,2005-08-01T06:23:48Z,2020-02-15T06:59:54Z +11341,419,2,11025,4.99,2005-08-02T05:39:12Z,2020-02-15T06:59:54Z +11342,419,1,11313,2.99,2005-08-02T16:02:51Z,2020-02-15T06:59:54Z +11343,419,2,11323,2.99,2005-08-02T16:29:57Z,2020-02-15T06:59:54Z +11344,419,1,11425,2.99,2005-08-02T19:58:48Z,2020-02-15T06:59:54Z +11345,419,2,11689,6.99,2005-08-17T06:42:08Z,2020-02-15T06:59:54Z +11346,419,1,12460,7.99,2005-08-18T11:25:13Z,2020-02-15T06:59:54Z +11347,419,1,12720,5.99,2005-08-18T21:28:42Z,2020-02-15T06:59:54Z +11348,419,2,14308,0.99,2005-08-21T07:43:21Z,2020-02-15T06:59:54Z +11349,419,2,15779,4.99,2005-08-23T13:33:46Z,2020-02-15T06:59:54Z +11350,420,2,744,4.99,2005-05-29T09:13:08Z,2020-02-15T06:59:54Z +11351,420,2,2672,3.99,2005-06-19T11:42:04Z,2020-02-15T06:59:54Z +11352,420,1,2698,0.99,2005-06-19T13:29:11Z,2020-02-15T06:59:54Z +11353,420,1,2726,0.99,2005-06-19T15:02:20Z,2020-02-15T06:59:54Z +11354,420,1,4176,4.99,2005-07-07T10:03:34Z,2020-02-15T06:59:54Z +11355,420,2,5081,4.99,2005-07-09T05:25:20Z,2020-02-15T06:59:54Z +11356,420,1,5168,4.99,2005-07-09T09:20:01Z,2020-02-15T06:59:54Z +11357,420,2,5911,0.99,2005-07-10T20:51:42Z,2020-02-15T06:59:54Z +11358,420,2,6086,3.99,2005-07-11T05:29:03Z,2020-02-15T06:59:54Z +11359,420,2,6096,4.99,2005-07-11T06:18:04Z,2020-02-15T06:59:54Z +11360,420,2,6582,4.99,2005-07-12T06:28:12Z,2020-02-15T06:59:54Z +11361,420,1,6588,4.99,2005-07-12T06:57:40Z,2020-02-15T06:59:54Z +11362,420,2,7081,2.99,2005-07-27T04:25:59Z,2020-02-15T06:59:54Z +11363,420,2,8485,0.99,2005-07-29T08:53:09Z,2020-02-15T06:59:54Z +11364,420,1,9362,0.99,2005-07-30T18:44:16Z,2020-02-15T06:59:54Z +11365,420,2,10291,4.99,2005-08-01T03:39:57Z,2020-02-15T06:59:54Z +11366,420,2,10601,10.99,2005-08-01T14:25:40Z,2020-02-15T06:59:54Z +11367,420,1,10766,4.99,2005-08-01T20:36:29Z,2020-02-15T06:59:54Z +11368,420,2,11236,5.99,2005-08-02T13:17:21Z,2020-02-15T06:59:54Z +11369,420,2,14525,0.99,2005-08-21T15:06:49Z,2020-02-15T06:59:54Z +11370,420,2,15597,0.99,2005-08-23T06:21:20Z,2020-02-15T06:59:54Z +11371,421,1,507,0.99,2005-05-28T02:31:19Z,2020-02-15T06:59:54Z +11372,421,1,931,0.99,2005-05-30T12:53:01Z,2020-02-15T06:59:54Z +11373,421,1,1693,4.99,2005-06-16T12:39:51Z,2020-02-15T06:59:54Z +11374,421,2,2407,2.99,2005-06-18T16:50:41Z,2020-02-15T06:59:54Z +11375,421,1,3170,4.99,2005-06-20T22:02:54Z,2020-02-15T06:59:54Z +11376,421,1,3491,7.99,2005-07-05T23:41:08Z,2020-02-15T06:59:54Z +11377,421,2,3703,5.99,2005-07-06T10:15:26Z,2020-02-15T06:59:54Z +11378,421,1,3988,8.99,2005-07-06T23:30:42Z,2020-02-15T06:59:54Z +11379,421,2,4456,5.99,2005-07-07T23:45:21Z,2020-02-15T06:59:54Z +11380,421,1,6220,0.99,2005-07-11T13:22:06Z,2020-02-15T06:59:54Z +11381,421,2,6960,3.99,2005-07-27T00:08:33Z,2020-02-15T06:59:54Z +11382,421,2,7449,4.99,2005-07-27T18:17:41Z,2020-02-15T06:59:54Z +11383,421,2,8025,2.99,2005-07-28T16:03:27Z,2020-02-15T06:59:54Z +11384,421,1,8268,4.99,2005-07-29T01:23:23Z,2020-02-15T06:59:54Z +11385,421,1,8725,4.99,2005-07-29T18:08:42Z,2020-02-15T06:59:54Z +11386,421,2,9377,4.99,2005-07-30T19:12:18Z,2020-02-15T06:59:54Z +11387,421,2,9875,0.99,2005-07-31T13:37:41Z,2020-02-15T06:59:54Z +11388,421,1,10200,4.99,2005-08-01T00:39:05Z,2020-02-15T06:59:54Z +11389,421,2,11089,2.99,2005-08-02T07:52:20Z,2020-02-15T06:59:54Z +11390,421,1,11263,4.99,2005-08-02T14:02:19Z,2020-02-15T06:59:54Z +11391,421,1,11523,3.99,2005-08-17T00:10:10Z,2020-02-15T06:59:54Z +11392,421,1,12279,4.99,2005-08-18T04:47:30Z,2020-02-15T06:59:54Z +11393,421,2,13461,9.99,2005-08-20T00:49:04Z,2020-02-15T06:59:54Z +11394,421,1,13872,4.99,2005-08-20T15:10:30Z,2020-02-15T06:59:54Z +11395,421,1,14742,4.99,2005-08-21T22:39:01Z,2020-02-15T06:59:54Z +11396,421,1,14887,3.99,2005-08-22T04:04:31Z,2020-02-15T06:59:54Z +11397,421,2,15710,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11398,422,1,398,0.99,2005-05-27T12:44:03Z,2020-02-15T06:59:54Z +11399,422,1,1846,0.99,2005-06-17T00:02:44Z,2020-02-15T06:59:54Z +11400,422,1,1897,4.99,2005-06-17T04:26:23Z,2020-02-15T06:59:54Z +11401,422,2,2747,2.99,2005-06-19T16:22:07Z,2020-02-15T06:59:54Z +11402,422,1,2778,5.99,2005-06-19T18:18:12Z,2020-02-15T06:59:54Z +11403,422,1,3553,4.99,2005-07-06T02:35:41Z,2020-02-15T06:59:54Z +11404,422,2,4463,2.99,2005-07-08T00:04:59Z,2020-02-15T06:59:54Z +11405,422,2,4504,0.99,2005-07-08T02:19:27Z,2020-02-15T06:59:54Z +11406,422,1,5784,1.99,2005-07-10T14:03:28Z,2020-02-15T06:59:54Z +11407,422,2,7827,0.99,2005-07-28T08:37:22Z,2020-02-15T06:59:54Z +11408,422,2,8206,4.99,2005-07-28T23:20:31Z,2020-02-15T06:59:54Z +11409,422,2,9541,4.99,2005-07-31T01:40:14Z,2020-02-15T06:59:54Z +11410,422,2,10833,6.99,2005-08-01T23:25:55Z,2020-02-15T06:59:54Z +11411,422,2,11325,6.99,2005-08-02T16:33:11Z,2020-02-15T06:59:54Z +11412,422,1,11658,2.99,2005-08-17T05:19:17Z,2020-02-15T06:59:54Z +11413,422,1,11842,4.99,2005-08-17T13:13:37Z,2020-02-15T06:59:54Z +11414,422,1,12907,9.99,2005-08-19T04:16:13Z,2020-02-15T06:59:54Z +11415,422,2,13216,1.99,2005-08-19T15:36:05Z,2020-02-15T06:59:54Z +11416,422,2,13625,1.99,2005-08-20T06:52:03Z,2020-02-15T06:59:54Z +11417,422,2,13709,0.99,2005-08-20T09:34:51Z,2020-02-15T06:59:54Z +11418,422,2,13722,4.99,2005-08-20T10:03:45Z,2020-02-15T06:59:54Z +11419,422,1,14861,4.99,2005-08-22T02:48:05Z,2020-02-15T06:59:54Z +11420,422,1,15272,3.99,2005-08-22T18:49:40Z,2020-02-15T06:59:54Z +11421,422,1,15273,2.99,2005-08-22T18:53:28Z,2020-02-15T06:59:54Z +11422,422,2,15316,2.99,2005-08-22T20:07:03Z,2020-02-15T06:59:54Z +11423,422,2,15441,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11424,423,1,1504,3.99,2005-06-15T22:08:06Z,2020-02-15T06:59:54Z +11425,423,2,1827,0.99,2005-06-16T21:54:40Z,2020-02-15T06:59:54Z +11426,423,1,2600,6.99,2005-06-19T06:07:25Z,2020-02-15T06:59:54Z +11427,423,2,2758,6.99,2005-06-19T17:04:35Z,2020-02-15T06:59:54Z +11428,423,1,3072,8.99,2005-06-20T14:21:31Z,2020-02-15T06:59:54Z +11429,423,2,4105,0.99,2005-07-07T06:31:00Z,2020-02-15T06:59:54Z +11430,423,1,4250,0.99,2005-07-07T14:08:11Z,2020-02-15T06:59:54Z +11431,423,1,4679,2.99,2005-07-08T10:33:14Z,2020-02-15T06:59:54Z +11432,423,1,6506,1.99,2005-07-12T03:28:22Z,2020-02-15T06:59:54Z +11433,423,1,7016,5.99,2005-07-27T02:15:16Z,2020-02-15T06:59:54Z +11434,423,2,7141,2.99,2005-07-27T06:55:27Z,2020-02-15T06:59:54Z +11435,423,1,7157,4.99,2005-07-27T07:20:28Z,2020-02-15T06:59:54Z +11436,423,1,7290,0.99,2005-07-27T12:28:45Z,2020-02-15T06:59:54Z +11437,423,2,7539,9.99,2005-07-27T21:39:42Z,2020-02-15T06:59:54Z +11438,423,1,7849,9.99,2005-07-28T09:30:02Z,2020-02-15T06:59:54Z +11439,423,2,8082,3.99,2005-07-28T18:08:02Z,2020-02-15T06:59:54Z +11440,423,2,8595,9.99,2005-07-29T12:47:43Z,2020-02-15T06:59:54Z +11441,423,2,9026,2.99,2005-07-30T05:55:31Z,2020-02-15T06:59:54Z +11442,423,1,10488,2.99,2005-08-01T10:27:27Z,2020-02-15T06:59:54Z +11443,423,1,11091,2.99,2005-08-02T07:56:41Z,2020-02-15T06:59:54Z +11444,423,2,11514,4.99,2005-08-16T23:53:10Z,2020-02-15T06:59:54Z +11445,423,2,12806,4.99,2005-08-19T00:37:26Z,2020-02-15T06:59:54Z +11446,423,2,14191,6.99,2005-08-21T03:35:58Z,2020-02-15T06:59:54Z +11447,423,2,14902,4.99,2005-08-22T04:31:50Z,2020-02-15T06:59:54Z +11448,423,1,15380,0.99,2005-08-22T22:28:15Z,2020-02-15T06:59:54Z +11449,423,1,15755,4.99,2005-08-23T12:46:38Z,2020-02-15T06:59:54Z +11450,424,2,403,0.99,2005-05-27T13:28:52Z,2020-02-15T06:59:54Z +11451,424,2,3044,4.99,2005-06-20T12:38:49Z,2020-02-15T06:59:54Z +11452,424,1,3166,6.99,2005-06-20T21:32:32Z,2020-02-15T06:59:54Z +11453,424,2,3404,0.99,2005-06-21T15:57:52Z,2020-02-15T06:59:54Z +11454,424,2,3746,0.99,2005-07-06T12:10:51Z,2020-02-15T06:59:54Z +11455,424,2,4512,0.99,2005-07-08T02:38:56Z,2020-02-15T06:59:54Z +11456,424,2,4559,0.99,2005-07-08T04:56:49Z,2020-02-15T06:59:54Z +11457,424,2,4696,5.99,2005-07-08T11:12:27Z,2020-02-15T06:59:54Z +11458,424,1,5568,0.99,2005-07-10T03:36:56Z,2020-02-15T06:59:54Z +11459,424,1,5611,3.99,2005-07-10T05:13:43Z,2020-02-15T06:59:54Z +11460,424,1,6589,2.99,2005-07-12T07:06:29Z,2020-02-15T06:59:54Z +11461,424,1,7594,2.99,2005-07-27T23:30:41Z,2020-02-15T06:59:54Z +11462,424,2,8194,2.99,2005-07-28T22:51:44Z,2020-02-15T06:59:54Z +11463,424,1,8918,4.99,2005-07-30T01:56:22Z,2020-02-15T06:59:54Z +11464,424,2,8964,1.99,2005-07-30T03:49:35Z,2020-02-15T06:59:54Z +11465,424,2,8999,2.99,2005-07-30T04:55:46Z,2020-02-15T06:59:54Z +11466,424,1,9471,4.99,2005-07-30T23:02:36Z,2020-02-15T06:59:54Z +11467,424,1,9516,8.99,2005-07-31T00:40:58Z,2020-02-15T06:59:54Z +11468,424,2,9878,4.99,2005-07-31T13:42:02Z,2020-02-15T06:59:54Z +11469,424,1,10017,6.99,2005-07-31T18:13:22Z,2020-02-15T06:59:54Z +11470,424,2,10369,4.99,2005-08-01T06:13:44Z,2020-02-15T06:59:54Z +11471,424,1,10866,2.99,2005-08-02T00:22:49Z,2020-02-15T06:59:54Z +11472,424,2,11374,2.99,2005-08-02T18:14:54Z,2020-02-15T06:59:54Z +11473,424,2,11562,6.99,2005-08-17T01:23:39Z,2020-02-15T06:59:54Z +11474,424,2,11833,2.99,2005-08-17T13:00:33Z,2020-02-15T06:59:54Z +11475,424,2,12729,0.99,2005-08-18T21:52:59Z,2020-02-15T06:59:54Z +11476,424,2,13793,3.99,2005-08-20T12:22:04Z,2020-02-15T06:59:54Z +11477,424,2,15113,0.99,2005-08-22T12:23:59Z,2020-02-15T06:59:54Z +11478,424,2,15941,9.99,2005-08-23T18:46:44Z,2020-02-15T06:59:54Z +11479,424,1,15094,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11480,425,2,1098,5.99,2005-05-31T13:51:48Z,2020-02-15T06:59:54Z +11481,425,1,3276,6.99,2005-06-21T05:35:52Z,2020-02-15T06:59:54Z +11482,425,1,3807,4.99,2005-07-06T15:11:44Z,2020-02-15T06:59:54Z +11483,425,2,4361,2.99,2005-07-07T19:33:23Z,2020-02-15T06:59:54Z +11484,425,2,4362,5.99,2005-07-07T19:35:30Z,2020-02-15T06:59:54Z +11485,425,2,4483,8.99,2005-07-08T01:03:12Z,2020-02-15T06:59:54Z +11486,425,1,4659,2.99,2005-07-08T09:53:28Z,2020-02-15T06:59:54Z +11487,425,1,4884,7.99,2005-07-08T19:49:17Z,2020-02-15T06:59:54Z +11488,425,1,4939,7.99,2005-07-08T22:35:30Z,2020-02-15T06:59:54Z +11489,425,2,5363,2.99,2005-07-09T18:18:49Z,2020-02-15T06:59:54Z +11490,425,1,5371,4.99,2005-07-09T18:47:48Z,2020-02-15T06:59:54Z +11491,425,2,6318,2.99,2005-07-11T18:48:22Z,2020-02-15T06:59:54Z +11492,425,1,6603,2.99,2005-07-12T07:52:55Z,2020-02-15T06:59:54Z +11493,425,1,7249,4.99,2005-07-27T10:39:53Z,2020-02-15T06:59:54Z +11494,425,1,8974,0.99,2005-07-30T04:09:16Z,2020-02-15T06:59:54Z +11495,425,1,9170,0.99,2005-07-30T11:35:24Z,2020-02-15T06:59:54Z +11496,425,2,9682,2.99,2005-07-31T06:47:10Z,2020-02-15T06:59:54Z +11497,425,1,10121,0.99,2005-07-31T21:24:53Z,2020-02-15T06:59:54Z +11498,425,2,10163,0.99,2005-07-31T23:12:34Z,2020-02-15T06:59:54Z +11499,425,1,10545,0.99,2005-08-01T12:37:46Z,2020-02-15T06:59:54Z +11500,425,2,13040,0.99,2005-08-19T09:04:24Z,2020-02-15T06:59:54Z +11501,425,2,14089,5.99,2005-08-20T23:59:02Z,2020-02-15T06:59:54Z +11502,425,2,14881,4.99,2005-08-22T03:47:39Z,2020-02-15T06:59:54Z +11503,425,1,15064,0.99,2005-08-22T10:41:58Z,2020-02-15T06:59:54Z +11504,425,2,15784,6.99,2005-08-23T13:46:00Z,2020-02-15T06:59:54Z +11505,425,2,16036,2.99,2005-08-23T22:12:44Z,2020-02-15T06:59:54Z +11506,426,2,604,0.99,2005-05-28T14:37:07Z,2020-02-15T06:59:54Z +11507,426,1,1709,6.99,2005-06-16T14:10:15Z,2020-02-15T06:59:54Z +11508,426,1,1842,7.99,2005-06-16T23:45:59Z,2020-02-15T06:59:54Z +11509,426,1,2204,2.99,2005-06-18T02:11:38Z,2020-02-15T06:59:54Z +11510,426,1,2804,0.99,2005-06-19T19:24:54Z,2020-02-15T06:59:54Z +11511,426,1,3243,0.99,2005-06-21T03:00:11Z,2020-02-15T06:59:54Z +11512,426,2,4114,2.99,2005-07-07T06:51:12Z,2020-02-15T06:59:54Z +11513,426,2,4398,4.99,2005-07-07T21:18:44Z,2020-02-15T06:59:54Z +11514,426,1,4900,4.99,2005-07-08T20:38:06Z,2020-02-15T06:59:54Z +11515,426,1,5725,3.99,2005-07-10T11:21:21Z,2020-02-15T06:59:54Z +11516,426,1,7495,4.99,2005-07-27T20:01:20Z,2020-02-15T06:59:54Z +11517,426,1,7527,10.99,2005-07-27T21:14:28Z,2020-02-15T06:59:54Z +11518,426,1,7711,4.99,2005-07-28T04:26:42Z,2020-02-15T06:59:54Z +11519,426,1,7789,5.99,2005-07-28T07:22:07Z,2020-02-15T06:59:54Z +11520,426,1,9185,5.99,2005-07-30T12:10:40Z,2020-02-15T06:59:54Z +11521,426,2,9247,4.99,2005-07-30T14:13:56Z,2020-02-15T06:59:54Z +11522,426,2,10172,10.99,2005-07-31T23:29:51Z,2020-02-15T06:59:54Z +11523,426,1,10505,1.99,2005-08-01T11:13:59Z,2020-02-15T06:59:54Z +11524,426,2,11237,0.99,2005-08-02T13:24:01Z,2020-02-15T06:59:54Z +11525,426,2,11876,0.99,2005-08-17T14:18:21Z,2020-02-15T06:59:54Z +11526,426,2,11938,6.99,2005-08-17T16:54:54Z,2020-02-15T06:59:54Z +11527,426,2,12548,5.99,2005-08-18T14:35:26Z,2020-02-15T06:59:54Z +11528,426,2,12707,4.99,2005-08-18T20:52:02Z,2020-02-15T06:59:54Z +11529,426,1,12822,4.99,2005-08-19T01:15:24Z,2020-02-15T06:59:54Z +11530,426,2,13834,2.99,2005-08-20T14:03:08Z,2020-02-15T06:59:54Z +11531,426,2,14151,6.99,2005-08-21T02:23:25Z,2020-02-15T06:59:54Z +11532,426,2,14826,2.99,2005-08-22T01:32:14Z,2020-02-15T06:59:54Z +11533,427,2,82,6.99,2005-05-25T12:17:46Z,2020-02-15T06:59:54Z +11534,427,1,1342,5.99,2005-06-15T12:26:21Z,2020-02-15T06:59:54Z +11535,427,2,1628,3.99,2005-06-16T07:52:55Z,2020-02-15T06:59:54Z +11536,427,1,1648,5.99,2005-06-16T09:17:07Z,2020-02-15T06:59:54Z +11537,427,1,1857,1.99,2005-06-17T01:12:58Z,2020-02-15T06:59:54Z +11538,427,2,2466,0.99,2005-06-18T20:18:42Z,2020-02-15T06:59:54Z +11539,427,1,4793,3.99,2005-07-08T16:30:01Z,2020-02-15T06:59:54Z +11540,427,2,5476,2.99,2005-07-09T23:37:09Z,2020-02-15T06:59:54Z +11541,427,2,5586,5.99,2005-07-10T04:17:06Z,2020-02-15T06:59:54Z +11542,427,1,6423,6.99,2005-07-11T23:47:31Z,2020-02-15T06:59:54Z +11543,427,1,6509,2.99,2005-07-12T03:35:01Z,2020-02-15T06:59:54Z +11544,427,2,6938,7.99,2005-07-26T23:16:04Z,2020-02-15T06:59:54Z +11545,427,2,8182,3.99,2005-07-28T22:19:12Z,2020-02-15T06:59:54Z +11546,427,1,8531,5.99,2005-07-29T10:26:15Z,2020-02-15T06:59:54Z +11547,427,2,8658,5.99,2005-07-29T15:16:37Z,2020-02-15T06:59:54Z +11548,427,2,9978,2.99,2005-07-31T16:59:51Z,2020-02-15T06:59:54Z +11549,427,1,10417,4.99,2005-08-01T08:10:36Z,2020-02-15T06:59:54Z +11550,427,1,10464,5.99,2005-08-01T09:43:14Z,2020-02-15T06:59:54Z +11551,427,2,10560,4.99,2005-08-01T13:04:57Z,2020-02-15T06:59:54Z +11552,427,1,11024,5.99,2005-08-02T05:38:31Z,2020-02-15T06:59:54Z +11553,427,1,13720,1.99,2005-08-20T10:01:39Z,2020-02-15T06:59:54Z +11554,427,2,14201,6.99,2005-08-21T03:51:34Z,2020-02-15T06:59:54Z +11555,427,1,14287,3.99,2005-08-21T06:53:59Z,2020-02-15T06:59:54Z +11556,427,1,15330,3.99,2005-08-22T20:35:30Z,2020-02-15T06:59:54Z +11557,428,2,634,4.99,2005-05-28T17:40:35Z,2020-02-15T06:59:54Z +11558,428,1,1227,3.99,2005-06-15T03:50:03Z,2020-02-15T06:59:54Z +11559,428,2,1471,2.99,2005-06-15T20:53:26Z,2020-02-15T06:59:54Z +11560,428,1,1601,3.99,2005-06-16T06:11:13Z,2020-02-15T06:59:54Z +11561,428,1,2677,2.99,2005-06-19T12:01:59Z,2020-02-15T06:59:54Z +11562,428,2,3377,0.99,2005-06-21T13:51:12Z,2020-02-15T06:59:54Z +11563,428,1,3702,2.99,2005-07-06T10:13:56Z,2020-02-15T06:59:54Z +11564,428,1,3925,5.99,2005-07-06T20:41:44Z,2020-02-15T06:59:54Z +11565,428,1,4151,0.99,2005-07-07T08:49:02Z,2020-02-15T06:59:54Z +11566,428,1,5373,4.99,2005-07-09T18:48:57Z,2020-02-15T06:59:54Z +11567,428,1,6735,5.99,2005-07-12T14:08:20Z,2020-02-15T06:59:54Z +11568,428,1,7823,6.99,2005-07-28T08:32:53Z,2020-02-15T06:59:54Z +11569,428,1,8155,2.99,2005-07-28T20:57:06Z,2020-02-15T06:59:54Z +11570,428,2,8387,4.99,2005-07-29T05:47:27Z,2020-02-15T06:59:54Z +11571,428,2,8528,4.99,2005-07-29T10:24:22Z,2020-02-15T06:59:54Z +11572,428,1,9904,5.99,2005-07-31T14:34:17Z,2020-02-15T06:59:54Z +11573,428,2,9982,2.99,2005-07-31T17:09:02Z,2020-02-15T06:59:54Z +11574,428,2,10577,4.99,2005-08-01T13:46:38Z,2020-02-15T06:59:54Z +11575,428,2,10888,2.99,2005-08-02T00:52:45Z,2020-02-15T06:59:54Z +11576,428,2,11536,0.99,2005-08-17T00:40:03Z,2020-02-15T06:59:54Z +11577,429,2,150,5.99,2005-05-26T00:28:39Z,2020-02-15T06:59:54Z +11578,429,2,290,2.99,2005-05-26T20:08:33Z,2020-02-15T06:59:54Z +11579,429,2,601,7.99,2005-05-28T14:08:22Z,2020-02-15T06:59:54Z +11580,429,2,799,4.99,2005-05-29T17:24:48Z,2020-02-15T06:59:54Z +11581,429,2,844,4.99,2005-05-30T00:58:20Z,2020-02-15T06:59:54Z +11582,429,2,1781,5.99,2005-06-16T19:20:24Z,2020-02-15T06:59:54Z +11583,429,2,1798,2.99,2005-06-16T20:16:15Z,2020-02-15T06:59:54Z +11584,429,2,1916,7.99,2005-06-17T05:29:59Z,2020-02-15T06:59:54Z +11585,429,1,3409,2.99,2005-06-21T16:17:38Z,2020-02-15T06:59:54Z +11586,429,2,5868,4.99,2005-07-10T18:39:16Z,2020-02-15T06:59:54Z +11587,429,2,6196,7.99,2005-07-11T12:05:46Z,2020-02-15T06:59:54Z +11588,429,2,6886,6.99,2005-07-12T20:58:04Z,2020-02-15T06:59:54Z +11589,429,1,6977,6.99,2005-07-27T00:40:50Z,2020-02-15T06:59:54Z +11590,429,2,7352,4.99,2005-07-27T14:38:29Z,2020-02-15T06:59:54Z +11591,429,2,8136,1.99,2005-07-28T20:05:48Z,2020-02-15T06:59:54Z +11592,429,2,8143,2.99,2005-07-28T20:23:11Z,2020-02-15T06:59:54Z +11593,429,2,8175,7.99,2005-07-28T21:38:16Z,2020-02-15T06:59:54Z +11594,429,1,9849,0.99,2005-07-31T12:44:34Z,2020-02-15T06:59:54Z +11595,429,1,12259,2.99,2005-08-18T04:14:35Z,2020-02-15T06:59:54Z +11596,429,1,12953,4.99,2005-08-19T06:04:07Z,2020-02-15T06:59:54Z +11597,429,2,14495,4.99,2005-08-21T14:04:39Z,2020-02-15T06:59:54Z +11598,430,2,30,2.99,2005-05-25T04:01:32Z,2020-02-15T06:59:54Z +11599,430,1,364,4.99,2005-05-27T07:20:12Z,2020-02-15T06:59:54Z +11600,430,2,1207,0.99,2005-06-15T02:27:08Z,2020-02-15T06:59:54Z +11601,430,1,1274,2.99,2005-06-15T07:52:52Z,2020-02-15T06:59:54Z +11602,430,1,1538,2.99,2005-06-16T01:05:50Z,2020-02-15T06:59:54Z +11603,430,1,1759,6.99,2005-06-16T17:46:37Z,2020-02-15T06:59:54Z +11604,430,2,2892,0.99,2005-06-20T02:06:39Z,2020-02-15T06:59:54Z +11605,430,2,3153,0.99,2005-06-20T20:44:15Z,2020-02-15T06:59:54Z +11606,430,1,5002,4.99,2005-07-09T01:17:08Z,2020-02-15T06:59:54Z +11607,430,1,5217,5.99,2005-07-09T11:56:50Z,2020-02-15T06:59:54Z +11608,430,2,5879,6.99,2005-07-10T19:12:47Z,2020-02-15T06:59:54Z +11609,430,1,5958,6.99,2005-07-10T23:31:51Z,2020-02-15T06:59:54Z +11610,430,2,6043,0.99,2005-07-11T03:18:10Z,2020-02-15T06:59:54Z +11611,430,1,8560,4.99,2005-07-29T11:27:27Z,2020-02-15T06:59:54Z +11612,430,2,9450,2.99,2005-07-30T22:04:04Z,2020-02-15T06:59:54Z +11613,430,1,12723,0.99,2005-08-18T21:34:16Z,2020-02-15T06:59:54Z +11614,430,1,12965,4.99,2005-08-19T06:33:00Z,2020-02-15T06:59:54Z +11615,430,1,13007,0.99,2005-08-19T07:47:43Z,2020-02-15T06:59:54Z +11616,430,2,13452,0.99,2005-08-20T00:20:07Z,2020-02-15T06:59:54Z +11617,430,2,13454,2.99,2005-08-20T00:30:52Z,2020-02-15T06:59:54Z +11618,430,1,14058,5.99,2005-08-20T22:24:35Z,2020-02-15T06:59:54Z +11619,430,1,15031,4.99,2005-08-22T09:11:48Z,2020-02-15T06:59:54Z +11620,431,2,1126,2.99,2005-05-31T17:27:45Z,2020-02-15T06:59:54Z +11621,431,2,1561,2.99,2005-06-16T02:41:30Z,2020-02-15T06:59:54Z +11622,431,1,2096,4.99,2005-06-17T18:33:04Z,2020-02-15T06:59:54Z +11623,431,1,2269,3.99,2005-06-18T06:20:54Z,2020-02-15T06:59:54Z +11624,431,2,2281,4.99,2005-06-18T06:47:29Z,2020-02-15T06:59:54Z +11625,431,2,2761,2.99,2005-06-19T17:22:17Z,2020-02-15T06:59:54Z +11626,431,2,3304,6.99,2005-06-21T07:43:40Z,2020-02-15T06:59:54Z +11627,431,2,3369,8.99,2005-06-21T13:20:31Z,2020-02-15T06:59:54Z +11628,431,1,4144,3.99,2005-07-07T08:25:44Z,2020-02-15T06:59:54Z +11629,431,1,4801,2.99,2005-07-08T16:51:36Z,2020-02-15T06:59:54Z +11630,431,1,4863,0.99,2005-07-08T19:03:15Z,2020-02-15T06:59:54Z +11631,431,2,7978,4.99,2005-07-28T14:16:14Z,2020-02-15T06:59:54Z +11632,431,2,8810,4.99,2005-07-29T21:45:19Z,2020-02-15T06:59:54Z +11633,431,2,10508,0.99,2005-08-01T11:23:27Z,2020-02-15T06:59:54Z +11634,431,1,10527,4.99,2005-08-01T11:55:54Z,2020-02-15T06:59:54Z +11635,431,2,10959,6.99,2005-08-02T03:39:39Z,2020-02-15T06:59:54Z +11636,431,2,11538,2.99,2005-08-17T00:44:04Z,2020-02-15T06:59:54Z +11637,431,1,12273,6.99,2005-08-18T04:40:50Z,2020-02-15T06:59:54Z +11638,431,2,13153,1.99,2005-08-19T13:09:47Z,2020-02-15T06:59:54Z +11639,431,1,13784,4.99,2005-08-20T12:11:28Z,2020-02-15T06:59:54Z +11640,431,1,15809,2.99,2005-08-23T14:42:07Z,2020-02-15T06:59:54Z +11641,431,1,15960,2.99,2005-08-23T19:35:42Z,2020-02-15T06:59:54Z +11642,431,2,13587,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11643,432,2,326,7.99,2005-05-27T01:10:11Z,2020-02-15T06:59:54Z +11644,432,1,550,5.99,2005-05-28T07:39:16Z,2020-02-15T06:59:54Z +11645,432,1,897,8.99,2005-05-30T09:10:01Z,2020-02-15T06:59:54Z +11646,432,2,1180,5.99,2005-06-15T00:39:01Z,2020-02-15T06:59:54Z +11647,432,2,1597,2.99,2005-06-16T05:47:03Z,2020-02-15T06:59:54Z +11648,432,2,3194,4.99,2005-06-20T23:59:57Z,2020-02-15T06:59:54Z +11649,432,1,4965,5.99,2005-07-08T23:46:57Z,2020-02-15T06:59:54Z +11650,432,1,4973,4.99,2005-07-08T23:58:18Z,2020-02-15T06:59:54Z +11651,432,1,5204,2.99,2005-07-09T10:54:14Z,2020-02-15T06:59:54Z +11652,432,1,5322,6.99,2005-07-09T16:28:13Z,2020-02-15T06:59:54Z +11653,432,1,5944,4.99,2005-07-10T22:51:44Z,2020-02-15T06:59:54Z +11654,432,1,5990,4.99,2005-07-11T01:03:14Z,2020-02-15T06:59:54Z +11655,432,2,7326,4.99,2005-07-27T13:50:40Z,2020-02-15T06:59:54Z +11656,432,2,7681,0.99,2005-07-28T03:07:09Z,2020-02-15T06:59:54Z +11657,432,2,8079,4.99,2005-07-28T17:58:36Z,2020-02-15T06:59:54Z +11658,432,2,8094,6.99,2005-07-28T18:30:28Z,2020-02-15T06:59:54Z +11659,432,2,9916,4.99,2005-07-31T14:54:52Z,2020-02-15T06:59:54Z +11660,432,2,9984,2.99,2005-07-31T17:12:23Z,2020-02-15T06:59:54Z +11661,432,2,11870,0.99,2005-08-17T14:11:28Z,2020-02-15T06:59:54Z +11662,432,1,12767,6.99,2005-08-18T23:25:49Z,2020-02-15T06:59:54Z +11663,432,1,14027,2.99,2005-08-20T21:21:34Z,2020-02-15T06:59:54Z +11664,432,1,15523,4.99,2005-08-23T03:32:36Z,2020-02-15T06:59:54Z +11665,432,1,15713,6.99,2005-08-23T10:56:15Z,2020-02-15T06:59:54Z +11666,433,2,146,8.99,2005-05-26T00:07:11Z,2020-02-15T06:59:54Z +11667,433,1,691,10.99,2005-05-29T01:01:26Z,2020-02-15T06:59:54Z +11668,433,2,4087,6.99,2005-07-07T05:30:56Z,2020-02-15T06:59:54Z +11669,433,2,4158,0.99,2005-07-07T09:05:42Z,2020-02-15T06:59:54Z +11670,433,2,4988,7.99,2005-07-09T00:46:14Z,2020-02-15T06:59:54Z +11671,433,2,5457,0.99,2005-07-09T22:33:14Z,2020-02-15T06:59:54Z +11672,433,1,5969,8.99,2005-07-11T00:03:22Z,2020-02-15T06:59:54Z +11673,433,1,6765,5.99,2005-07-12T15:30:47Z,2020-02-15T06:59:54Z +11674,433,1,6848,0.99,2005-07-12T19:24:07Z,2020-02-15T06:59:54Z +11675,433,1,6850,4.99,2005-07-12T19:30:42Z,2020-02-15T06:59:54Z +11676,433,1,7821,4.99,2005-07-28T08:31:23Z,2020-02-15T06:59:54Z +11677,433,2,7907,4.99,2005-07-28T11:32:00Z,2020-02-15T06:59:54Z +11678,433,1,8414,5.99,2005-07-29T06:48:35Z,2020-02-15T06:59:54Z +11679,433,1,8713,2.99,2005-07-29T17:31:19Z,2020-02-15T06:59:54Z +11680,433,2,9161,4.99,2005-07-30T11:19:18Z,2020-02-15T06:59:54Z +11681,433,1,9294,3.99,2005-07-30T16:14:37Z,2020-02-15T06:59:54Z +11682,433,1,10663,4.99,2005-08-01T16:51:08Z,2020-02-15T06:59:54Z +11683,433,1,11664,2.99,2005-08-17T05:35:52Z,2020-02-15T06:59:54Z +11684,433,2,12669,6.99,2005-08-18T19:17:47Z,2020-02-15T06:59:54Z +11685,433,2,13273,4.99,2005-08-19T17:49:13Z,2020-02-15T06:59:54Z +11686,433,1,13801,4.99,2005-08-20T12:40:53Z,2020-02-15T06:59:54Z +11687,433,2,14523,4.99,2005-08-21T15:03:45Z,2020-02-15T06:59:54Z +11688,433,1,14559,6.99,2005-08-21T16:11:35Z,2020-02-15T06:59:54Z +11689,433,2,15476,4.99,2005-08-23T01:45:07Z,2020-02-15T06:59:54Z +11690,433,1,15502,5.99,2005-08-23T02:40:04Z,2020-02-15T06:59:54Z +11691,434,2,508,5.99,2005-05-28T02:40:50Z,2020-02-15T06:59:54Z +11692,434,1,1225,0.99,2005-06-15T03:45:35Z,2020-02-15T06:59:54Z +11693,434,2,1584,5.99,2005-06-16T04:50:50Z,2020-02-15T06:59:54Z +11694,434,2,2415,7.99,2005-06-18T17:02:42Z,2020-02-15T06:59:54Z +11695,434,1,2430,3.99,2005-06-18T17:51:46Z,2020-02-15T06:59:54Z +11696,434,1,2494,3.99,2005-06-18T22:15:09Z,2020-02-15T06:59:54Z +11697,434,1,3014,2.99,2005-06-20T10:45:20Z,2020-02-15T06:59:54Z +11698,434,2,3037,2.99,2005-06-20T12:28:03Z,2020-02-15T06:59:54Z +11699,434,1,4414,2.99,2005-07-07T22:00:21Z,2020-02-15T06:59:54Z +11700,434,2,4654,6.99,2005-07-08T09:48:03Z,2020-02-15T06:59:54Z +11701,434,2,4960,10.99,2005-07-08T23:27:16Z,2020-02-15T06:59:54Z +11702,434,2,5464,2.99,2005-07-09T22:58:14Z,2020-02-15T06:59:54Z +11703,434,2,6972,0.99,2005-07-27T00:31:25Z,2020-02-15T06:59:54Z +11704,434,1,7260,6.99,2005-07-27T11:09:28Z,2020-02-15T06:59:54Z +11705,434,2,7479,2.99,2005-07-27T19:18:17Z,2020-02-15T06:59:54Z +11706,434,1,8205,0.99,2005-07-28T23:18:48Z,2020-02-15T06:59:54Z +11707,434,1,9350,4.99,2005-07-30T18:24:30Z,2020-02-15T06:59:54Z +11708,434,1,11242,3.99,2005-08-02T13:32:00Z,2020-02-15T06:59:54Z +11709,434,1,11867,2.99,2005-08-17T14:04:28Z,2020-02-15T06:59:54Z +11710,434,2,12030,2.99,2005-08-17T20:10:48Z,2020-02-15T06:59:54Z +11711,434,2,12146,2.99,2005-08-18T00:10:04Z,2020-02-15T06:59:54Z +11712,434,2,12624,7.99,2005-08-18T17:35:00Z,2020-02-15T06:59:54Z +11713,434,2,13359,9.99,2005-08-19T21:04:49Z,2020-02-15T06:59:54Z +11714,434,1,13383,7.99,2005-08-19T21:38:44Z,2020-02-15T06:59:54Z +11715,434,2,14553,4.99,2005-08-21T15:59:40Z,2020-02-15T06:59:54Z +11716,434,2,15016,3.99,2005-08-22T08:47:35Z,2020-02-15T06:59:54Z +11717,434,2,15385,4.99,2005-08-22T22:37:34Z,2020-02-15T06:59:54Z +11718,435,1,757,7.99,2005-05-29T10:29:47Z,2020-02-15T06:59:54Z +11719,435,1,806,4.99,2005-05-29T18:31:30Z,2020-02-15T06:59:54Z +11720,435,2,1443,0.99,2005-06-15T18:57:51Z,2020-02-15T06:59:54Z +11721,435,1,2984,0.99,2005-06-20T08:43:44Z,2020-02-15T06:59:54Z +11722,435,1,3690,0.99,2005-07-06T09:46:03Z,2020-02-15T06:59:54Z +11723,435,1,3918,8.99,2005-07-06T20:26:15Z,2020-02-15T06:59:54Z +11724,435,2,5220,4.99,2005-07-09T11:59:04Z,2020-02-15T06:59:54Z +11725,435,2,6051,4.99,2005-07-11T03:46:41Z,2020-02-15T06:59:54Z +11726,435,1,6935,2.99,2005-07-26T23:13:10Z,2020-02-15T06:59:54Z +11727,435,1,8386,5.99,2005-07-29T05:45:30Z,2020-02-15T06:59:54Z +11728,435,2,8891,4.99,2005-07-30T00:46:55Z,2020-02-15T06:59:54Z +11729,435,2,9269,0.99,2005-07-30T15:02:33Z,2020-02-15T06:59:54Z +11730,435,1,9655,3.99,2005-07-31T05:57:54Z,2020-02-15T06:59:54Z +11731,435,2,9829,4.99,2005-07-31T11:58:38Z,2020-02-15T06:59:54Z +11732,435,1,10998,6.99,2005-08-02T04:50:55Z,2020-02-15T06:59:54Z +11733,435,1,11041,2.99,2005-08-02T06:03:53Z,2020-02-15T06:59:54Z +11734,435,1,11786,3.99,2005-08-17T10:57:40Z,2020-02-15T06:59:54Z +11735,435,1,11796,0.99,2005-08-17T11:16:47Z,2020-02-15T06:59:54Z +11736,435,2,12046,0.99,2005-08-17T20:47:46Z,2020-02-15T06:59:54Z +11737,435,1,12741,4.99,2005-08-18T22:17:05Z,2020-02-15T06:59:54Z +11738,435,2,13208,0.99,2005-08-19T15:18:55Z,2020-02-15T06:59:54Z +11739,435,1,14696,4.99,2005-08-21T20:48:05Z,2020-02-15T06:59:54Z +11740,435,1,14765,1.99,2005-08-21T23:40:28Z,2020-02-15T06:59:54Z +11741,435,1,14850,0.99,2005-08-22T02:16:55Z,2020-02-15T06:59:54Z +11742,435,1,15136,2.99,2005-08-22T13:19:25Z,2020-02-15T06:59:54Z +11743,436,1,45,7.99,2005-05-25T05:59:39Z,2020-02-15T06:59:54Z +11744,436,1,256,3.99,2005-05-26T15:20:58Z,2020-02-15T06:59:54Z +11745,436,1,848,5.99,2005-05-30T01:19:53Z,2020-02-15T06:59:54Z +11746,436,1,2291,9.99,2005-06-18T07:36:46Z,2020-02-15T06:59:54Z +11747,436,2,3851,1.99,2005-07-06T16:54:12Z,2020-02-15T06:59:54Z +11748,436,2,3944,2.99,2005-07-06T21:34:11Z,2020-02-15T06:59:54Z +11749,436,2,4643,0.99,2005-07-08T09:13:56Z,2020-02-15T06:59:54Z +11750,436,2,4751,2.99,2005-07-08T14:07:52Z,2020-02-15T06:59:54Z +11751,436,1,4782,4.99,2005-07-08T16:08:51Z,2020-02-15T06:59:54Z +11752,436,1,5959,0.99,2005-07-10T23:35:36Z,2020-02-15T06:59:54Z +11753,436,1,7593,4.99,2005-07-27T23:28:47Z,2020-02-15T06:59:54Z +11754,436,2,8027,5.99,2005-07-28T16:09:57Z,2020-02-15T06:59:54Z +11755,436,2,8097,9.99,2005-07-28T18:32:49Z,2020-02-15T06:59:54Z +11756,436,1,9345,9.99,2005-07-30T18:13:51Z,2020-02-15T06:59:54Z +11757,436,1,9539,0.99,2005-07-31T01:36:19Z,2020-02-15T06:59:54Z +11758,436,1,9638,5.99,2005-07-31T05:30:27Z,2020-02-15T06:59:54Z +11759,436,2,10216,3.99,2005-08-01T01:06:27Z,2020-02-15T06:59:54Z +11760,436,2,11160,0.99,2005-08-02T10:05:30Z,2020-02-15T06:59:54Z +11761,436,1,11580,2.99,2005-08-17T01:59:07Z,2020-02-15T06:59:54Z +11762,436,2,11615,4.99,2005-08-17T03:54:35Z,2020-02-15T06:59:54Z +11763,436,2,11896,5.99,2005-08-17T15:19:54Z,2020-02-15T06:59:54Z +11764,436,2,12297,0.99,2005-08-18T05:19:57Z,2020-02-15T06:59:54Z +11765,436,2,12429,6.99,2005-08-18T10:26:46Z,2020-02-15T06:59:54Z +11766,436,2,13099,9.99,2005-08-19T10:55:19Z,2020-02-15T06:59:54Z +11767,436,2,13382,7.99,2005-08-19T21:38:41Z,2020-02-15T06:59:54Z +11768,436,1,13533,3.99,2005-08-20T03:30:00Z,2020-02-15T06:59:54Z +11769,436,1,13760,5.99,2005-08-20T11:26:33Z,2020-02-15T06:59:54Z +11770,436,1,13814,0.99,2005-08-20T13:07:23Z,2020-02-15T06:59:54Z +11771,436,2,13826,2.99,2005-08-20T13:46:38Z,2020-02-15T06:59:54Z +11772,436,2,15766,4.99,2005-08-23T13:10:16Z,2020-02-15T06:59:54Z +11773,437,1,192,2.99,2005-05-26T06:20:37Z,2020-02-15T06:59:54Z +11774,437,2,656,4.99,2005-05-28T20:18:24Z,2020-02-15T06:59:54Z +11775,437,1,666,5.99,2005-05-28T21:48:51Z,2020-02-15T06:59:54Z +11776,437,2,2239,5.99,2005-06-18T04:23:54Z,2020-02-15T06:59:54Z +11777,437,1,2792,2.99,2005-06-19T18:52:25Z,2020-02-15T06:59:54Z +11778,437,2,3265,2.99,2005-06-21T04:23:13Z,2020-02-15T06:59:54Z +11779,437,1,3747,4.99,2005-07-06T12:11:14Z,2020-02-15T06:59:54Z +11780,437,2,4765,4.99,2005-07-08T15:08:45Z,2020-02-15T06:59:54Z +11781,437,2,5085,4.99,2005-07-09T05:36:49Z,2020-02-15T06:59:54Z +11782,437,1,5167,1.99,2005-07-09T09:18:43Z,2020-02-15T06:59:54Z +11783,437,2,5744,2.99,2005-07-10T12:08:33Z,2020-02-15T06:59:54Z +11784,437,2,5864,6.99,2005-07-10T18:29:57Z,2020-02-15T06:59:54Z +11785,437,2,8215,2.99,2005-07-28T23:43:56Z,2020-02-15T06:59:54Z +11786,437,2,9172,2.99,2005-07-30T11:36:38Z,2020-02-15T06:59:54Z +11787,437,2,9333,2.99,2005-07-30T17:53:45Z,2020-02-15T06:59:54Z +11788,437,2,10009,8.99,2005-07-31T18:00:28Z,2020-02-15T06:59:54Z +11789,437,2,10249,0.99,2005-08-01T02:35:39Z,2020-02-15T06:59:54Z +11790,437,2,11417,3.99,2005-08-02T19:44:46Z,2020-02-15T06:59:54Z +11791,437,1,12205,8.99,2005-08-18T02:21:08Z,2020-02-15T06:59:54Z +11792,437,2,13838,7.99,2005-08-20T14:22:46Z,2020-02-15T06:59:54Z +11793,437,1,13839,2.99,2005-08-20T14:23:16Z,2020-02-15T06:59:54Z +11794,437,1,13905,1.99,2005-08-20T16:12:48Z,2020-02-15T06:59:54Z +11795,437,1,14993,1.99,2005-08-22T07:52:18Z,2020-02-15T06:59:54Z +11796,438,2,23,4.99,2005-05-25T02:40:21Z,2020-02-15T06:59:54Z +11797,438,2,1036,0.99,2005-05-31T05:21:10Z,2020-02-15T06:59:54Z +11798,438,1,1138,6.99,2005-05-31T19:30:27Z,2020-02-15T06:59:54Z +11799,438,1,1431,4.99,2005-06-15T18:26:29Z,2020-02-15T06:59:54Z +11800,438,2,1779,0.99,2005-06-16T18:55:11Z,2020-02-15T06:59:54Z +11801,438,2,2206,0.99,2005-06-18T02:14:45Z,2020-02-15T06:59:54Z +11802,438,1,2591,4.99,2005-06-19T05:32:22Z,2020-02-15T06:59:54Z +11803,438,1,3315,4.99,2005-06-21T08:17:04Z,2020-02-15T06:59:54Z +11804,438,2,3368,0.99,2005-06-21T13:18:38Z,2020-02-15T06:59:54Z +11805,438,1,4355,4.99,2005-07-07T19:21:19Z,2020-02-15T06:59:54Z +11806,438,2,4446,2.99,2005-07-07T23:12:16Z,2020-02-15T06:59:54Z +11807,438,2,5316,4.99,2005-07-09T16:09:42Z,2020-02-15T06:59:54Z +11808,438,2,5426,4.99,2005-07-09T21:04:47Z,2020-02-15T06:59:54Z +11809,438,1,5870,2.99,2005-07-10T18:40:25Z,2020-02-15T06:59:54Z +11810,438,2,6138,4.99,2005-07-11T08:36:04Z,2020-02-15T06:59:54Z +11811,438,1,6563,3.99,2005-07-12T05:34:09Z,2020-02-15T06:59:54Z +11812,438,2,6615,4.99,2005-07-12T08:36:22Z,2020-02-15T06:59:54Z +11813,438,2,7357,1.99,2005-07-27T14:48:31Z,2020-02-15T06:59:54Z +11814,438,2,7374,8.99,2005-07-27T15:20:57Z,2020-02-15T06:59:54Z +11815,438,1,7598,0.99,2005-07-27T23:36:01Z,2020-02-15T06:59:54Z +11816,438,2,8547,2.99,2005-07-29T11:10:15Z,2020-02-15T06:59:54Z +11817,438,1,9082,3.99,2005-07-30T08:11:22Z,2020-02-15T06:59:54Z +11818,438,2,9782,0.99,2005-07-31T10:14:26Z,2020-02-15T06:59:54Z +11819,438,1,10512,6.99,2005-08-01T11:36:19Z,2020-02-15T06:59:54Z +11820,438,1,10607,4.99,2005-08-01T14:44:43Z,2020-02-15T06:59:54Z +11821,438,2,11644,4.99,2005-08-17T04:49:46Z,2020-02-15T06:59:54Z +11822,438,2,11933,4.99,2005-08-17T16:38:20Z,2020-02-15T06:59:54Z +11823,438,2,12654,0.99,2005-08-18T18:56:40Z,2020-02-15T06:59:54Z +11824,438,2,13319,7.99,2005-08-19T19:35:13Z,2020-02-15T06:59:54Z +11825,438,1,13414,4.99,2005-08-19T22:47:34Z,2020-02-15T06:59:54Z +11826,438,2,14582,5.99,2005-08-21T17:08:33Z,2020-02-15T06:59:54Z +11827,438,2,15893,5.99,2005-08-23T17:02:00Z,2020-02-15T06:59:54Z +11828,438,2,12524,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11829,439,1,126,2.99,2005-05-25T21:07:59Z,2020-02-15T06:59:54Z +11830,439,2,367,0.99,2005-05-27T07:37:02Z,2020-02-15T06:59:54Z +11831,439,1,786,9.99,2005-05-29T15:17:28Z,2020-02-15T06:59:54Z +11832,439,1,1264,4.99,2005-06-15T06:59:39Z,2020-02-15T06:59:54Z +11833,439,2,1557,0.99,2005-06-16T02:28:35Z,2020-02-15T06:59:54Z +11834,439,2,2097,4.99,2005-06-17T18:40:04Z,2020-02-15T06:59:54Z +11835,439,1,2621,2.99,2005-06-19T08:07:31Z,2020-02-15T06:59:54Z +11836,439,1,2992,2.99,2005-06-20T09:11:51Z,2020-02-15T06:59:54Z +11837,439,1,3294,6.99,2005-06-21T07:03:23Z,2020-02-15T06:59:54Z +11838,439,2,3774,5.99,2005-07-06T13:25:07Z,2020-02-15T06:59:54Z +11839,439,1,4528,2.99,2005-07-08T03:24:54Z,2020-02-15T06:59:54Z +11840,439,1,4813,4.99,2005-07-08T17:09:56Z,2020-02-15T06:59:54Z +11841,439,2,5801,5.99,2005-07-10T14:59:05Z,2020-02-15T06:59:54Z +11842,439,1,5893,2.99,2005-07-10T20:05:30Z,2020-02-15T06:59:54Z +11843,439,1,6577,2.99,2005-07-12T06:15:05Z,2020-02-15T06:59:54Z +11844,439,2,6672,2.99,2005-07-12T11:49:16Z,2020-02-15T06:59:54Z +11845,439,1,8343,2.99,2005-07-29T04:45:16Z,2020-02-15T06:59:54Z +11846,439,1,8624,2.99,2005-07-29T13:55:36Z,2020-02-15T06:59:54Z +11847,439,2,8703,2.99,2005-07-29T17:12:44Z,2020-02-15T06:59:54Z +11848,439,1,9275,0.99,2005-07-30T15:09:15Z,2020-02-15T06:59:54Z +11849,439,1,9322,6.99,2005-07-30T17:21:39Z,2020-02-15T06:59:54Z +11850,439,2,10744,1.99,2005-08-01T19:56:49Z,2020-02-15T06:59:54Z +11851,439,1,10905,2.99,2005-08-02T01:45:59Z,2020-02-15T06:59:54Z +11852,439,2,11042,6.99,2005-08-02T06:04:33Z,2020-02-15T06:59:54Z +11853,439,2,11544,5.99,2005-08-17T00:55:07Z,2020-02-15T06:59:54Z +11854,439,1,11989,2.99,2005-08-17T18:23:58Z,2020-02-15T06:59:54Z +11855,439,1,12621,2.99,2005-08-18T17:31:36Z,2020-02-15T06:59:54Z +11856,439,2,12755,5.99,2005-08-18T22:38:47Z,2020-02-15T06:59:54Z +11857,439,2,12826,3.99,2005-08-19T01:25:11Z,2020-02-15T06:59:54Z +11858,439,2,13358,4.99,2005-08-19T21:04:20Z,2020-02-15T06:59:54Z +11859,439,2,14730,5.99,2005-08-21T22:21:11Z,2020-02-15T06:59:54Z +11860,439,2,15044,9.99,2005-08-22T09:51:54Z,2020-02-15T06:59:54Z +11861,439,2,15162,4.99,2005-08-22T14:41:05Z,2020-02-15T06:59:54Z +11862,439,2,15653,4.99,2005-08-23T08:34:42Z,2020-02-15T06:59:54Z +11863,439,1,15818,1.99,2005-08-23T14:59:58Z,2020-02-15T06:59:54Z +11864,439,1,16018,0.99,2005-08-23T21:27:35Z,2020-02-15T06:59:54Z +11865,440,2,957,4.99,2005-05-30T17:53:29Z,2020-02-15T06:59:54Z +11866,440,1,4301,2.99,2005-07-07T16:37:23Z,2020-02-15T06:59:54Z +11867,440,1,4946,7.99,2005-07-08T22:46:23Z,2020-02-15T06:59:54Z +11868,440,2,5423,2.99,2005-07-09T20:56:48Z,2020-02-15T06:59:54Z +11869,440,2,5594,0.99,2005-07-10T04:33:36Z,2020-02-15T06:59:54Z +11870,440,2,5731,2.99,2005-07-10T11:31:52Z,2020-02-15T06:59:54Z +11871,440,2,5782,0.99,2005-07-10T13:52:56Z,2020-02-15T06:59:54Z +11872,440,2,7585,4.99,2005-07-27T23:18:22Z,2020-02-15T06:59:54Z +11873,440,1,7614,0.99,2005-07-28T00:14:38Z,2020-02-15T06:59:54Z +11874,440,1,7806,9.99,2005-07-28T07:58:17Z,2020-02-15T06:59:54Z +11875,440,1,9001,4.99,2005-07-30T04:59:41Z,2020-02-15T06:59:54Z +11876,440,1,9195,2.99,2005-07-30T12:29:43Z,2020-02-15T06:59:54Z +11877,440,1,9547,4.99,2005-07-31T01:52:34Z,2020-02-15T06:59:54Z +11878,440,2,12403,6.99,2005-08-18T09:31:05Z,2020-02-15T06:59:54Z +11879,440,1,12850,0.99,2005-08-19T02:08:06Z,2020-02-15T06:59:54Z +11880,440,2,13384,4.99,2005-08-19T21:38:51Z,2020-02-15T06:59:54Z +11881,440,2,13779,2.99,2005-08-20T12:03:54Z,2020-02-15T06:59:54Z +11882,440,1,14555,0.99,2005-08-21T16:03:02Z,2020-02-15T06:59:54Z +11883,440,2,14863,7.99,2005-08-22T02:57:04Z,2020-02-15T06:59:54Z +11884,440,2,15264,0.99,2005-08-22T18:27:38Z,2020-02-15T06:59:54Z +11885,440,1,15925,4.99,2005-08-23T18:15:06Z,2020-02-15T06:59:54Z +11886,440,1,13106,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11887,441,1,823,4.99,2005-05-29T21:39:37Z,2020-02-15T06:59:54Z +11888,441,1,1602,4.99,2005-06-16T06:12:40Z,2020-02-15T06:59:54Z +11889,441,2,2328,4.99,2005-06-18T10:17:21Z,2020-02-15T06:59:54Z +11890,441,2,3629,0.99,2005-07-06T06:23:22Z,2020-02-15T06:59:54Z +11891,441,2,3695,2.99,2005-07-06T10:02:08Z,2020-02-15T06:59:54Z +11892,441,1,4084,8.99,2005-07-07T05:16:00Z,2020-02-15T06:59:54Z +11893,441,2,4208,0.99,2005-07-07T11:34:22Z,2020-02-15T06:59:54Z +11894,441,2,5129,2.99,2005-07-09T07:28:33Z,2020-02-15T06:59:54Z +11895,441,1,5811,0.99,2005-07-10T15:27:04Z,2020-02-15T06:59:54Z +11896,441,2,6636,2.99,2005-07-12T09:49:46Z,2020-02-15T06:59:54Z +11897,441,1,6642,4.99,2005-07-12T10:37:52Z,2020-02-15T06:59:54Z +11898,441,1,6941,5.99,2005-07-26T23:18:49Z,2020-02-15T06:59:54Z +11899,441,2,8237,2.99,2005-07-29T00:29:56Z,2020-02-15T06:59:54Z +11900,441,1,8281,0.99,2005-07-29T01:46:00Z,2020-02-15T06:59:54Z +11901,441,1,8427,4.99,2005-07-29T07:08:36Z,2020-02-15T06:59:54Z +11902,441,1,8575,4.99,2005-07-29T11:52:47Z,2020-02-15T06:59:54Z +11903,441,2,8617,4.99,2005-07-29T13:46:14Z,2020-02-15T06:59:54Z +11904,441,2,9644,10.99,2005-07-31T05:40:35Z,2020-02-15T06:59:54Z +11905,441,2,9854,2.99,2005-07-31T12:59:34Z,2020-02-15T06:59:54Z +11906,441,2,10139,1.99,2005-07-31T22:02:20Z,2020-02-15T06:59:54Z +11907,441,1,10846,1.99,2005-08-01T23:47:54Z,2020-02-15T06:59:54Z +11908,441,2,11247,1.99,2005-08-02T13:34:08Z,2020-02-15T06:59:54Z +11909,441,2,13483,2.99,2005-08-20T01:16:38Z,2020-02-15T06:59:54Z +11910,441,2,13739,4.99,2005-08-20T10:45:10Z,2020-02-15T06:59:54Z +11911,441,1,13932,4.99,2005-08-20T17:17:00Z,2020-02-15T06:59:54Z +11912,441,2,14796,4.99,2005-08-22T00:40:49Z,2020-02-15T06:59:54Z +11913,441,2,15070,3.99,2005-08-22T10:55:45Z,2020-02-15T06:59:54Z +11914,441,1,14878,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11915,442,2,466,0.99,2005-05-27T20:57:07Z,2020-02-15T06:59:54Z +11916,442,2,558,6.99,2005-05-28T08:38:43Z,2020-02-15T06:59:54Z +11917,442,1,632,5.99,2005-05-28T17:37:50Z,2020-02-15T06:59:54Z +11918,442,1,1251,5.99,2005-06-15T05:58:55Z,2020-02-15T06:59:54Z +11919,442,2,1358,0.99,2005-06-15T13:28:48Z,2020-02-15T06:59:54Z +11920,442,2,1576,8.99,2005-06-16T03:54:39Z,2020-02-15T06:59:54Z +11921,442,1,1774,2.99,2005-06-16T18:27:52Z,2020-02-15T06:59:54Z +11922,442,2,3545,4.99,2005-07-06T02:16:17Z,2020-02-15T06:59:54Z +11923,442,1,3661,2.99,2005-07-06T08:10:02Z,2020-02-15T06:59:54Z +11924,442,1,4052,5.99,2005-07-07T03:38:22Z,2020-02-15T06:59:54Z +11925,442,1,4058,2.99,2005-07-07T04:02:50Z,2020-02-15T06:59:54Z +11926,442,2,4365,2.99,2005-07-07T19:47:46Z,2020-02-15T06:59:54Z +11927,442,2,4577,3.99,2005-07-08T05:59:00Z,2020-02-15T06:59:54Z +11928,442,2,6590,4.99,2005-07-12T07:08:21Z,2020-02-15T06:59:54Z +11929,442,2,6632,2.99,2005-07-12T09:33:10Z,2020-02-15T06:59:54Z +11930,442,2,7427,2.99,2005-07-27T17:20:16Z,2020-02-15T06:59:54Z +11931,442,1,7460,0.99,2005-07-27T18:41:35Z,2020-02-15T06:59:54Z +11932,442,1,7671,2.99,2005-07-28T02:48:31Z,2020-02-15T06:59:54Z +11933,442,1,8044,2.99,2005-07-28T16:49:12Z,2020-02-15T06:59:54Z +11934,442,1,8758,4.99,2005-07-29T19:20:49Z,2020-02-15T06:59:54Z +11935,442,1,9180,4.99,2005-07-30T12:03:15Z,2020-02-15T06:59:54Z +11936,442,2,9873,5.99,2005-07-31T13:32:18Z,2020-02-15T06:59:54Z +11937,442,1,10034,2.99,2005-07-31T18:45:30Z,2020-02-15T06:59:54Z +11938,442,2,10365,6.99,2005-08-01T06:08:44Z,2020-02-15T06:59:54Z +11939,442,2,10452,0.99,2005-08-01T09:11:36Z,2020-02-15T06:59:54Z +11940,442,1,12948,0.99,2005-08-19T05:55:14Z,2020-02-15T06:59:54Z +11941,442,2,13004,0.99,2005-08-19T07:40:08Z,2020-02-15T06:59:54Z +11942,442,1,13155,7.99,2005-08-19T13:10:23Z,2020-02-15T06:59:54Z +11943,442,2,14199,0.99,2005-08-21T03:48:43Z,2020-02-15T06:59:54Z +11944,442,1,14418,1.99,2005-08-21T11:14:26Z,2020-02-15T06:59:54Z +11945,442,1,14466,0.99,2005-08-21T13:03:13Z,2020-02-15T06:59:54Z +11946,442,2,15207,2.99,2005-08-22T16:35:25Z,2020-02-15T06:59:54Z +11947,443,2,1068,4.99,2005-05-31T09:32:15Z,2020-02-15T06:59:54Z +11948,443,1,2871,2.99,2005-06-20T00:27:49Z,2020-02-15T06:59:54Z +11949,443,2,3510,5.99,2005-07-06T00:27:41Z,2020-02-15T06:59:54Z +11950,443,2,6625,5.99,2005-07-12T09:06:40Z,2020-02-15T06:59:54Z +11951,443,1,6913,4.99,2005-07-12T22:18:12Z,2020-02-15T06:59:54Z +11952,443,2,6983,2.99,2005-07-27T00:55:03Z,2020-02-15T06:59:54Z +11953,443,1,7317,2.99,2005-07-27T13:19:41Z,2020-02-15T06:59:54Z +11954,443,1,7667,8.99,2005-07-28T02:37:22Z,2020-02-15T06:59:54Z +11955,443,1,7987,9.99,2005-07-28T14:36:52Z,2020-02-15T06:59:54Z +11956,443,2,9740,1.99,2005-07-31T09:08:03Z,2020-02-15T06:59:54Z +11957,443,1,10014,4.99,2005-07-31T18:10:56Z,2020-02-15T06:59:54Z +11958,443,2,10081,5.99,2005-07-31T20:07:44Z,2020-02-15T06:59:54Z +11959,443,2,10360,0.99,2005-08-01T05:52:53Z,2020-02-15T06:59:54Z +11960,443,1,11449,4.99,2005-08-02T20:44:43Z,2020-02-15T06:59:54Z +11961,443,1,12415,4.99,2005-08-18T09:54:01Z,2020-02-15T06:59:54Z +11962,443,2,12857,4.99,2005-08-19T02:20:13Z,2020-02-15T06:59:54Z +11963,443,1,13489,2.99,2005-08-20T01:29:06Z,2020-02-15T06:59:54Z +11964,443,1,14561,2.99,2005-08-21T16:20:43Z,2020-02-15T06:59:54Z +11965,443,2,14611,6.99,2005-08-21T18:01:41Z,2020-02-15T06:59:54Z +11966,443,1,15182,0.99,2005-08-22T15:47:05Z,2020-02-15T06:59:54Z +11967,443,2,15393,4.99,2005-08-22T23:04:09Z,2020-02-15T06:59:54Z +11968,443,1,15519,0.99,2005-08-23T03:23:32Z,2020-02-15T06:59:54Z +11969,444,1,201,8.99,2005-05-26T07:13:45Z,2020-02-15T06:59:54Z +11970,444,1,557,0.99,2005-05-28T08:36:22Z,2020-02-15T06:59:54Z +11971,444,1,1239,0.99,2005-06-15T04:53:01Z,2020-02-15T06:59:54Z +11972,444,2,1397,3.99,2005-06-15T16:25:26Z,2020-02-15T06:59:54Z +11973,444,2,1441,1.99,2005-06-15T18:54:21Z,2020-02-15T06:59:54Z +11974,444,1,2551,4.99,2005-06-19T02:51:04Z,2020-02-15T06:59:54Z +11975,444,2,3301,7.99,2005-06-21T07:32:25Z,2020-02-15T06:59:54Z +11976,444,2,3415,5.99,2005-06-21T16:59:49Z,2020-02-15T06:59:54Z +11977,444,2,3498,4.99,2005-07-06T00:02:08Z,2020-02-15T06:59:54Z +11978,444,1,3539,0.99,2005-07-06T01:39:08Z,2020-02-15T06:59:54Z +11979,444,2,4648,6.99,2005-07-08T09:31:27Z,2020-02-15T06:59:54Z +11980,444,1,5753,2.99,2005-07-10T12:29:43Z,2020-02-15T06:59:54Z +11981,444,2,5825,2.99,2005-07-10T16:20:30Z,2020-02-15T06:59:54Z +11982,444,2,6285,2.99,2005-07-11T16:52:07Z,2020-02-15T06:59:54Z +11983,444,2,7679,3.99,2005-07-28T02:58:39Z,2020-02-15T06:59:54Z +11984,444,2,9634,1.99,2005-07-31T05:06:02Z,2020-02-15T06:59:54Z +11985,444,1,10529,4.99,2005-08-01T12:00:02Z,2020-02-15T06:59:54Z +11986,444,1,10693,4.99,2005-08-01T18:14:14Z,2020-02-15T06:59:54Z +11987,444,2,11353,0.99,2005-08-02T17:34:45Z,2020-02-15T06:59:54Z +11988,444,2,11419,6.99,2005-08-02T19:46:38Z,2020-02-15T06:59:54Z +11989,444,1,11728,4.99,2005-08-17T08:12:26Z,2020-02-15T06:59:54Z +11990,444,1,12161,6.99,2005-08-18T00:41:46Z,2020-02-15T06:59:54Z +11991,444,2,12712,2.99,2005-08-18T21:04:13Z,2020-02-15T06:59:54Z +11992,444,2,12946,2.99,2005-08-19T05:53:34Z,2020-02-15T06:59:54Z +11993,444,1,13488,0.99,2005-08-20T01:28:42Z,2020-02-15T06:59:54Z +11994,444,2,13559,2.99,2005-08-20T04:16:07Z,2020-02-15T06:59:54Z +11995,444,1,13924,0.99,2005-08-20T17:05:18Z,2020-02-15T06:59:54Z +11996,444,1,15249,4.99,2005-08-22T17:58:27Z,2020-02-15T06:59:54Z +11997,444,1,15557,0.99,2005-08-23T04:52:17Z,2020-02-15T06:59:54Z +11998,444,2,15815,4.99,2005-08-23T14:55:47Z,2020-02-15T06:59:54Z +11999,445,1,481,2.99,2005-05-27T22:49:27Z,2020-02-15T06:59:54Z +12000,445,1,960,2.99,2005-05-30T18:13:23Z,2020-02-15T06:59:54Z +12001,445,1,4041,0.99,2005-07-07T03:03:33Z,2020-02-15T06:59:54Z +12002,445,1,4193,0.99,2005-07-07T10:57:21Z,2020-02-15T06:59:54Z +12003,445,2,5225,2.99,2005-07-09T12:10:16Z,2020-02-15T06:59:54Z +12004,445,1,6346,0.99,2005-07-11T20:08:34Z,2020-02-15T06:59:54Z +12005,445,2,7351,2.99,2005-07-27T14:37:36Z,2020-02-15T06:59:54Z +12006,445,2,7971,4.99,2005-07-28T14:00:47Z,2020-02-15T06:59:54Z +12007,445,1,8851,8.99,2005-07-29T23:26:19Z,2020-02-15T06:59:54Z +12008,445,2,8911,0.99,2005-07-30T01:30:57Z,2020-02-15T06:59:54Z +12009,445,2,9625,4.99,2005-07-31T04:30:48Z,2020-02-15T06:59:54Z +12010,445,1,10007,0.99,2005-07-31T17:54:58Z,2020-02-15T06:59:54Z +12011,445,2,10334,1.99,2005-08-01T04:58:42Z,2020-02-15T06:59:54Z +12012,445,2,10341,0.99,2005-08-01T05:10:02Z,2020-02-15T06:59:54Z +12013,445,2,10936,9.99,2005-08-02T02:55:04Z,2020-02-15T06:59:54Z +12014,445,1,11383,7.99,2005-08-02T18:22:05Z,2020-02-15T06:59:54Z +12015,445,1,11868,4.99,2005-08-17T14:05:34Z,2020-02-15T06:59:54Z +12016,445,1,11877,3.99,2005-08-17T14:21:11Z,2020-02-15T06:59:54Z +12017,445,2,13586,0.99,2005-08-20T05:40:33Z,2020-02-15T06:59:54Z +12018,445,1,14612,6.99,2005-08-21T18:03:15Z,2020-02-15T06:59:54Z +12019,445,2,14673,2.99,2005-08-21T20:01:18Z,2020-02-15T06:59:54Z +12020,445,1,14866,6.99,2005-08-22T03:11:35Z,2020-02-15T06:59:54Z +12021,445,1,14955,4.99,2005-08-22T06:25:52Z,2020-02-15T06:59:54Z +12022,445,1,15123,3.99,2005-08-22T12:48:44Z,2020-02-15T06:59:54Z +12023,445,1,15791,6.99,2005-08-23T14:02:13Z,2020-02-15T06:59:54Z +12024,445,2,15906,2.99,2005-08-23T17:36:00Z,2020-02-15T06:59:54Z +12025,446,2,14,0.99,2005-05-25T00:31:15Z,2020-02-15T06:59:54Z +12026,446,1,236,0.99,2005-05-26T11:53:49Z,2020-02-15T06:59:54Z +12027,446,1,355,4.99,2005-05-27T06:15:33Z,2020-02-15T06:59:54Z +12028,446,1,2248,4.99,2005-06-18T04:59:48Z,2020-02-15T06:59:54Z +12029,446,2,2335,3.99,2005-06-18T10:59:36Z,2020-02-15T06:59:54Z +12030,446,2,2520,6.99,2005-06-19T00:29:00Z,2020-02-15T06:59:54Z +12031,446,2,2710,0.99,2005-06-19T14:03:56Z,2020-02-15T06:59:54Z +12032,446,1,3060,2.99,2005-06-20T13:47:20Z,2020-02-15T06:59:54Z +12033,446,2,3168,0.99,2005-06-20T21:46:01Z,2020-02-15T06:59:54Z +12034,446,2,4358,4.99,2005-07-07T19:27:04Z,2020-02-15T06:59:54Z +12035,446,2,5393,4.99,2005-07-09T19:35:12Z,2020-02-15T06:59:54Z +12036,446,2,5409,2.99,2005-07-09T20:17:19Z,2020-02-15T06:59:54Z +12037,446,2,6454,0.99,2005-07-12T01:00:12Z,2020-02-15T06:59:54Z +12038,446,1,6510,4.99,2005-07-12T03:35:39Z,2020-02-15T06:59:54Z +12039,446,1,6535,0.99,2005-07-12T04:43:43Z,2020-02-15T06:59:54Z +12040,446,1,6734,6.99,2005-07-12T14:04:24Z,2020-02-15T06:59:54Z +12041,446,1,7005,5.99,2005-07-27T01:38:36Z,2020-02-15T06:59:54Z +12042,446,2,7089,0.99,2005-07-27T04:43:42Z,2020-02-15T06:59:54Z +12043,446,1,7576,4.99,2005-07-27T22:54:35Z,2020-02-15T06:59:54Z +12044,446,2,8284,6.99,2005-07-29T01:56:40Z,2020-02-15T06:59:54Z +12045,446,1,8309,4.99,2005-07-29T03:22:20Z,2020-02-15T06:59:54Z +12046,446,2,8670,4.99,2005-07-29T15:49:03Z,2020-02-15T06:59:54Z +12047,446,2,8691,0.99,2005-07-29T16:41:23Z,2020-02-15T06:59:54Z +12048,446,2,8922,9.99,2005-07-30T02:08:25Z,2020-02-15T06:59:54Z +12049,446,1,8923,3.99,2005-07-30T02:08:49Z,2020-02-15T06:59:54Z +12050,446,1,9116,0.99,2005-07-30T09:19:41Z,2020-02-15T06:59:54Z +12051,446,1,11051,3.99,2005-08-02T06:23:39Z,2020-02-15T06:59:54Z +12052,446,2,12253,0.99,2005-08-18T04:00:50Z,2020-02-15T06:59:54Z +12053,446,2,12480,8.99,2005-08-18T12:26:43Z,2020-02-15T06:59:54Z +12054,446,1,15808,1.99,2005-08-23T14:38:37Z,2020-02-15T06:59:54Z +12055,446,2,15951,0.99,2005-08-23T19:10:32Z,2020-02-15T06:59:54Z +12056,447,1,461,2.99,2005-05-27T20:08:55Z,2020-02-15T06:59:54Z +12057,447,2,732,0.99,2005-05-29T07:32:51Z,2020-02-15T06:59:54Z +12058,447,2,1230,0.99,2005-06-15T04:04:09Z,2020-02-15T06:59:54Z +12059,447,2,1890,2.99,2005-06-17T04:06:13Z,2020-02-15T06:59:54Z +12060,447,1,2025,4.99,2005-06-17T13:04:00Z,2020-02-15T06:59:54Z +12061,447,2,2285,4.99,2005-06-18T07:00:54Z,2020-02-15T06:59:54Z +12062,447,2,4403,4.99,2005-07-07T21:29:40Z,2020-02-15T06:59:54Z +12063,447,1,4858,6.99,2005-07-08T18:53:24Z,2020-02-15T06:59:54Z +12064,447,1,5331,4.99,2005-07-09T16:54:06Z,2020-02-15T06:59:54Z +12065,447,1,5734,0.99,2005-07-10T11:37:28Z,2020-02-15T06:59:54Z +12066,447,2,5987,2.99,2005-07-11T00:55:31Z,2020-02-15T06:59:54Z +12067,447,1,6651,0.99,2005-07-12T10:57:28Z,2020-02-15T06:59:54Z +12068,447,1,6690,1.99,2005-07-12T12:23:02Z,2020-02-15T06:59:54Z +12069,447,1,8537,8.99,2005-07-29T10:44:54Z,2020-02-15T06:59:54Z +12070,447,2,8945,4.99,2005-07-30T03:11:48Z,2020-02-15T06:59:54Z +12071,447,2,9076,5.99,2005-07-30T07:58:12Z,2020-02-15T06:59:54Z +12072,447,1,9288,6.99,2005-07-30T15:56:39Z,2020-02-15T06:59:54Z +12073,447,1,10425,2.99,2005-08-01T08:23:25Z,2020-02-15T06:59:54Z +12074,447,2,10957,5.99,2005-08-02T03:33:30Z,2020-02-15T06:59:54Z +12075,447,2,11108,0.99,2005-08-02T08:20:01Z,2020-02-15T06:59:54Z +12076,447,1,11465,5.99,2005-08-02T21:43:52Z,2020-02-15T06:59:54Z +12077,447,2,12511,0.99,2005-08-18T13:23:19Z,2020-02-15T06:59:54Z +12078,447,1,13072,2.99,2005-08-19T10:03:30Z,2020-02-15T06:59:54Z +12079,447,2,13110,0.99,2005-08-19T11:24:37Z,2020-02-15T06:59:54Z +12080,447,1,13848,4.99,2005-08-20T14:37:49Z,2020-02-15T06:59:54Z +12081,447,2,14443,5.99,2005-08-21T12:06:32Z,2020-02-15T06:59:54Z +12082,447,1,15108,2.99,2005-08-22T12:10:07Z,2020-02-15T06:59:54Z +12083,447,1,15997,4.99,2005-08-23T20:40:31Z,2020-02-15T06:59:54Z +12084,447,2,16032,4.99,2005-08-23T21:59:57Z,2020-02-15T06:59:54Z +12085,448,1,299,4.99,2005-05-26T20:55:36Z,2020-02-15T06:59:54Z +12086,448,2,1123,2.99,2005-05-31T16:48:43Z,2020-02-15T06:59:54Z +12087,448,1,1313,5.99,2005-06-15T10:18:34Z,2020-02-15T06:59:54Z +12088,448,2,1823,7.99,2005-06-16T21:48:16Z,2020-02-15T06:59:54Z +12089,448,2,2697,0.99,2005-06-19T13:29:08Z,2020-02-15T06:59:54Z +12090,448,2,3225,3.99,2005-06-21T02:16:55Z,2020-02-15T06:59:54Z +12091,448,2,3347,5.99,2005-06-21T11:08:32Z,2020-02-15T06:59:54Z +12092,448,2,3959,5.99,2005-07-06T22:07:58Z,2020-02-15T06:59:54Z +12093,448,2,3992,6.99,2005-07-06T23:36:56Z,2020-02-15T06:59:54Z +12094,448,2,4024,0.99,2005-07-07T02:11:23Z,2020-02-15T06:59:54Z +12095,448,2,4206,2.99,2005-07-07T11:32:16Z,2020-02-15T06:59:54Z +12096,448,1,4406,1.99,2005-07-07T21:35:16Z,2020-02-15T06:59:54Z +12097,448,2,4537,2.99,2005-07-08T03:48:40Z,2020-02-15T06:59:54Z +12098,448,2,4558,2.99,2005-07-08T04:55:26Z,2020-02-15T06:59:54Z +12099,448,2,6341,2.99,2005-07-11T19:48:02Z,2020-02-15T06:59:54Z +12100,448,2,6985,4.99,2005-07-27T00:57:42Z,2020-02-15T06:59:54Z +12101,448,1,9178,10.99,2005-07-30T11:58:50Z,2020-02-15T06:59:54Z +12102,448,2,11608,8.99,2005-08-17T03:36:52Z,2020-02-15T06:59:54Z +12103,448,1,11798,9.99,2005-08-17T11:21:43Z,2020-02-15T06:59:54Z +12104,448,1,12446,2.99,2005-08-18T10:56:29Z,2020-02-15T06:59:54Z +12105,448,1,13220,2.99,2005-08-19T15:42:32Z,2020-02-15T06:59:54Z +12106,448,2,13250,3.99,2005-08-19T16:47:55Z,2020-02-15T06:59:54Z +12107,448,1,13982,3.99,2005-08-20T19:08:25Z,2020-02-15T06:59:54Z +12108,448,1,14580,3.99,2005-08-21T16:56:39Z,2020-02-15T06:59:54Z +12109,448,1,14711,2.99,2005-08-21T21:22:07Z,2020-02-15T06:59:54Z +12110,448,2,15358,9.99,2005-08-22T21:29:14Z,2020-02-15T06:59:54Z +12111,448,1,15427,4.99,2005-08-23T00:07:53Z,2020-02-15T06:59:54Z +12112,448,2,14734,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +12113,448,1,13577,0,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +12114,449,2,263,4.99,2005-05-26T15:47:40Z,2020-02-15T06:59:54Z +12115,449,2,325,5.99,2005-05-27T01:09:55Z,2020-02-15T06:59:54Z +12116,449,1,849,7.99,2005-05-30T01:23:07Z,2020-02-15T06:59:54Z +12117,449,2,1295,4.99,2005-06-15T09:17:20Z,2020-02-15T06:59:54Z +12118,449,1,2348,0.99,2005-06-18T12:15:43Z,2020-02-15T06:59:54Z +12119,449,2,2970,2.99,2005-06-20T07:51:51Z,2020-02-15T06:59:54Z +12120,449,1,3503,0.99,2005-07-06T00:17:24Z,2020-02-15T06:59:54Z +12121,449,1,3977,8.99,2005-07-06T23:00:49Z,2020-02-15T06:59:54Z +12122,449,2,4433,3.99,2005-07-07T22:45:41Z,2020-02-15T06:59:54Z +12123,449,1,5824,2.99,2005-07-10T16:19:53Z,2020-02-15T06:59:54Z +12124,449,2,7755,6.99,2005-07-28T06:22:18Z,2020-02-15T06:59:54Z +12125,449,2,7803,3.99,2005-07-28T07:52:13Z,2020-02-15T06:59:54Z +12126,449,2,8002,2.99,2005-07-28T15:11:00Z,2020-02-15T06:59:54Z +12127,449,2,10083,5.99,2005-07-31T20:10:19Z,2020-02-15T06:59:54Z +12128,449,2,10409,2.99,2005-08-01T07:49:15Z,2020-02-15T06:59:54Z +12129,449,1,10416,4.99,2005-08-01T08:08:39Z,2020-02-15T06:59:54Z +12130,449,1,10516,6.99,2005-08-01T11:41:55Z,2020-02-15T06:59:54Z +12131,449,2,10688,6.99,2005-08-01T17:53:43Z,2020-02-15T06:59:54Z +12132,449,1,12212,4.99,2005-08-18T02:33:29Z,2020-02-15T06:59:54Z +12133,449,2,14962,7.99,2005-08-22T06:37:43Z,2020-02-15T06:59:54Z +12134,450,2,548,3.99,2005-05-28T07:34:56Z,2020-02-15T06:59:54Z +12135,450,2,1639,4.99,2005-06-16T08:33:39Z,2020-02-15T06:59:54Z +12136,450,1,1739,0.99,2005-06-16T16:09:38Z,2020-02-15T06:59:54Z +12137,450,2,1914,2.99,2005-06-17T05:25:54Z,2020-02-15T06:59:54Z +12138,450,2,2278,0.99,2005-06-18T06:37:57Z,2020-02-15T06:59:54Z +12139,450,1,2501,4.99,2005-06-18T23:10:11Z,2020-02-15T06:59:54Z +12140,450,1,2626,2.99,2005-06-19T08:28:44Z,2020-02-15T06:59:54Z +12141,450,1,3155,4.99,2005-06-20T21:02:38Z,2020-02-15T06:59:54Z +12142,450,1,3570,3.99,2005-07-06T03:23:43Z,2020-02-15T06:59:54Z +12143,450,1,5999,7.99,2005-07-11T01:21:22Z,2020-02-15T06:59:54Z +12144,450,1,6028,4.99,2005-07-11T02:31:44Z,2020-02-15T06:59:54Z +12145,450,2,7365,2.99,2005-07-27T15:00:20Z,2020-02-15T06:59:54Z +12146,450,1,7610,0.99,2005-07-28T00:11:35Z,2020-02-15T06:59:54Z +12147,450,1,7626,0.99,2005-07-28T00:49:01Z,2020-02-15T06:59:54Z +12148,450,2,8733,4.99,2005-07-29T18:26:34Z,2020-02-15T06:59:54Z +12149,450,2,10432,2.99,2005-08-01T08:43:21Z,2020-02-15T06:59:54Z +12150,450,1,10984,3.99,2005-08-02T04:30:02Z,2020-02-15T06:59:54Z +12151,450,2,12812,0.99,2005-08-19T00:54:02Z,2020-02-15T06:59:54Z +12152,450,2,13731,4.99,2005-08-20T10:22:08Z,2020-02-15T06:59:54Z +12153,450,1,13810,0.99,2005-08-20T12:59:38Z,2020-02-15T06:59:54Z +12154,450,1,13828,4.99,2005-08-20T13:49:52Z,2020-02-15T06:59:54Z +12155,450,1,14282,4.99,2005-08-21T06:41:29Z,2020-02-15T06:59:54Z +12156,450,2,15019,0.99,2005-08-22T08:52:53Z,2020-02-15T06:59:54Z +12157,450,1,15327,4.99,2005-08-22T20:31:24Z,2020-02-15T06:59:54Z +12158,450,2,15419,4.99,2005-08-22T23:54:36Z,2020-02-15T06:59:54Z +12159,450,1,14172,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +12160,451,2,77,0.99,2005-05-25T11:31:59Z,2020-02-15T06:59:54Z +12161,451,2,328,2.99,2005-05-27T01:29:31Z,2020-02-15T06:59:54Z +12162,451,2,1113,2.99,2005-05-31T15:58:44Z,2020-02-15T06:59:54Z +12163,451,1,1202,0.99,2005-06-15T02:08:04Z,2020-02-15T06:59:54Z +12164,451,1,1851,0.99,2005-06-17T00:32:26Z,2020-02-15T06:59:54Z +12165,451,1,1940,6.99,2005-06-17T07:42:22Z,2020-02-15T06:59:54Z +12166,451,1,2671,1.99,2005-06-19T11:33:11Z,2020-02-15T06:59:54Z +12167,451,1,2909,3.99,2005-06-20T03:19:10Z,2020-02-15T06:59:54Z +12168,451,2,2917,0.99,2005-06-20T04:08:35Z,2020-02-15T06:59:55Z +12169,451,1,3316,6.99,2005-06-21T08:20:18Z,2020-02-15T06:59:55Z +12170,451,2,3826,4.99,2005-07-06T15:51:58Z,2020-02-15T06:59:55Z +12171,451,1,4538,2.99,2005-07-08T03:56:29Z,2020-02-15T06:59:55Z +12172,451,1,4794,8.99,2005-07-08T16:30:11Z,2020-02-15T06:59:55Z +12173,451,2,4930,4.99,2005-07-08T22:15:48Z,2020-02-15T06:59:55Z +12174,451,1,5005,3.99,2005-07-09T01:21:44Z,2020-02-15T06:59:55Z +12175,451,2,5518,8.99,2005-07-10T01:15:11Z,2020-02-15T06:59:55Z +12176,451,1,7018,2.99,2005-07-27T02:20:22Z,2020-02-15T06:59:55Z +12177,451,2,10337,8.99,2005-08-01T05:01:46Z,2020-02-15T06:59:55Z +12178,451,1,10856,2.99,2005-08-02T00:07:14Z,2020-02-15T06:59:55Z +12179,451,2,10950,2.99,2005-08-02T03:25:08Z,2020-02-15T06:59:55Z +12180,451,2,11167,6.99,2005-08-02T10:15:51Z,2020-02-15T06:59:55Z +12181,451,2,11381,6.99,2005-08-02T18:19:29Z,2020-02-15T06:59:55Z +12182,451,1,11790,2.99,2005-08-17T11:00:08Z,2020-02-15T06:59:55Z +12183,451,2,12371,2.99,2005-08-18T08:02:46Z,2020-02-15T06:59:55Z +12184,451,1,12422,4.99,2005-08-18T10:13:12Z,2020-02-15T06:59:55Z +12185,451,2,13003,1.99,2005-08-19T07:39:29Z,2020-02-15T06:59:55Z +12186,451,2,13100,2.99,2005-08-19T10:55:45Z,2020-02-15T06:59:55Z +12187,451,2,13252,2.99,2005-08-19T16:50:50Z,2020-02-15T06:59:55Z +12188,451,2,13380,0.99,2005-08-19T21:36:58Z,2020-02-15T06:59:55Z +12189,451,1,13666,2.99,2005-08-20T08:20:19Z,2020-02-15T06:59:55Z +12190,451,1,13705,2.99,2005-08-20T09:32:23Z,2020-02-15T06:59:55Z +12191,451,2,14500,0.99,2005-08-21T14:11:30Z,2020-02-15T06:59:55Z +12192,451,1,15651,4.99,2005-08-23T08:31:49Z,2020-02-15T06:59:55Z +12193,452,1,354,2.99,2005-05-27T06:12:26Z,2020-02-15T06:59:55Z +12194,452,2,714,2.99,2005-05-29T04:15:21Z,2020-02-15T06:59:55Z +12195,452,1,726,1.99,2005-05-29T06:05:29Z,2020-02-15T06:59:55Z +12196,452,2,1203,4.99,2005-06-15T02:09:02Z,2020-02-15T06:59:55Z +12197,452,1,1512,5.99,2005-06-15T22:53:03Z,2020-02-15T06:59:55Z +12198,452,1,1794,3.99,2005-06-16T20:08:37Z,2020-02-15T06:59:55Z +12199,452,1,2263,0.99,2005-06-18T05:57:47Z,2020-02-15T06:59:55Z +12200,452,2,2266,4.99,2005-06-18T06:05:02Z,2020-02-15T06:59:55Z +12201,452,1,2504,0.99,2005-06-18T23:19:53Z,2020-02-15T06:59:55Z +12202,452,2,2661,0.99,2005-06-19T10:50:52Z,2020-02-15T06:59:55Z +12203,452,2,3638,3.99,2005-07-06T07:08:17Z,2020-02-15T06:59:55Z +12204,452,1,3791,2.99,2005-07-06T14:24:56Z,2020-02-15T06:59:55Z +12205,452,2,3907,6.99,2005-07-06T19:39:14Z,2020-02-15T06:59:55Z +12206,452,1,4348,0.99,2005-07-07T19:02:05Z,2020-02-15T06:59:55Z +12207,452,2,4353,4.99,2005-07-07T19:19:05Z,2020-02-15T06:59:55Z +12208,452,2,4417,2.99,2005-07-07T22:05:05Z,2020-02-15T06:59:55Z +12209,452,1,4720,0.99,2005-07-08T12:34:34Z,2020-02-15T06:59:55Z +12210,452,1,5177,1.99,2005-07-09T09:43:21Z,2020-02-15T06:59:55Z +12211,452,2,5480,0.99,2005-07-09T23:49:07Z,2020-02-15T06:59:55Z +12212,452,2,6959,2.99,2005-07-27T00:07:51Z,2020-02-15T06:59:55Z +12213,452,2,7899,6.99,2005-07-28T11:10:12Z,2020-02-15T06:59:55Z +12214,452,1,8898,1.99,2005-07-30T01:02:20Z,2020-02-15T06:59:55Z +12215,452,2,9379,6.99,2005-07-30T19:13:01Z,2020-02-15T06:59:55Z +12216,452,2,11715,4.99,2005-08-17T07:40:55Z,2020-02-15T06:59:55Z +12217,452,1,11735,3.99,2005-08-17T08:35:42Z,2020-02-15T06:59:55Z +12218,452,1,12355,0.99,2005-08-18T07:36:23Z,2020-02-15T06:59:55Z +12219,452,1,12630,4.99,2005-08-18T17:49:28Z,2020-02-15T06:59:55Z +12220,452,1,13080,4.99,2005-08-19T10:18:00Z,2020-02-15T06:59:55Z +12221,452,1,13642,3.99,2005-08-20T07:42:17Z,2020-02-15T06:59:55Z +12222,452,1,14660,0.99,2005-08-21T19:43:21Z,2020-02-15T06:59:55Z +12223,452,1,15909,0.99,2005-08-23T17:42:42Z,2020-02-15T06:59:55Z +12224,452,1,14175,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12225,453,2,2852,5.99,2005-06-19T23:08:50Z,2020-02-15T06:59:55Z +12226,453,1,2853,7.99,2005-06-19T23:09:41Z,2020-02-15T06:59:55Z +12227,453,2,2887,4.99,2005-06-20T01:39:43Z,2020-02-15T06:59:55Z +12228,453,2,3929,0.99,2005-07-06T20:52:39Z,2020-02-15T06:59:55Z +12229,453,2,4033,8.99,2005-07-07T02:35:46Z,2020-02-15T06:59:55Z +12230,453,1,4717,4.99,2005-07-08T12:22:43Z,2020-02-15T06:59:55Z +12231,453,2,4805,2.99,2005-07-08T16:59:12Z,2020-02-15T06:59:55Z +12232,453,2,5359,6.99,2005-07-09T18:10:52Z,2020-02-15T06:59:55Z +12233,453,1,6752,4.99,2005-07-12T14:53:15Z,2020-02-15T06:59:55Z +12234,453,1,7563,0.99,2005-07-27T22:25:36Z,2020-02-15T06:59:55Z +12235,453,2,9289,6.99,2005-07-30T15:57:04Z,2020-02-15T06:59:55Z +12236,453,2,9406,6.99,2005-07-30T20:24:00Z,2020-02-15T06:59:55Z +12237,453,2,9900,1.99,2005-07-31T14:15:05Z,2020-02-15T06:59:55Z +12238,453,1,11794,4.99,2005-08-17T11:08:48Z,2020-02-15T06:59:55Z +12239,453,1,12703,2.99,2005-08-18T20:37:13Z,2020-02-15T06:59:55Z +12240,453,1,13711,7.99,2005-08-20T09:35:20Z,2020-02-15T06:59:55Z +12241,453,1,13785,4.99,2005-08-20T12:11:46Z,2020-02-15T06:59:55Z +12242,453,1,14133,2.99,2005-08-21T01:44:14Z,2020-02-15T06:59:55Z +12243,453,2,14306,5.99,2005-08-21T07:32:35Z,2020-02-15T06:59:55Z +12244,453,2,14644,4.99,2005-08-21T19:12:12Z,2020-02-15T06:59:55Z +12245,453,1,14652,4.99,2005-08-21T19:32:05Z,2020-02-15T06:59:55Z +12246,453,1,15252,0.99,2005-08-22T18:04:22Z,2020-02-15T06:59:55Z +12247,453,2,15627,4.99,2005-08-23T07:25:38Z,2020-02-15T06:59:55Z +12248,454,1,735,7.99,2005-05-29T08:08:13Z,2020-02-15T06:59:55Z +12249,454,2,1647,4.99,2005-06-16T09:14:58Z,2020-02-15T06:59:55Z +12250,454,2,1844,7.99,2005-06-16T23:53:53Z,2020-02-15T06:59:55Z +12251,454,1,1861,1.99,2005-06-17T01:17:31Z,2020-02-15T06:59:55Z +12252,454,1,1938,4.99,2005-06-17T07:18:36Z,2020-02-15T06:59:55Z +12253,454,2,2048,5.99,2005-06-17T14:55:29Z,2020-02-15T06:59:55Z +12254,454,2,2182,5.99,2005-06-18T00:56:18Z,2020-02-15T06:59:55Z +12255,454,1,2437,2.99,2005-06-18T18:30:26Z,2020-02-15T06:59:55Z +12256,454,2,2666,9.99,2005-06-19T11:17:12Z,2020-02-15T06:59:55Z +12257,454,1,3221,2.99,2005-06-21T01:49:47Z,2020-02-15T06:59:55Z +12258,454,1,3362,4.99,2005-06-21T12:19:54Z,2020-02-15T06:59:55Z +12259,454,1,3622,7.99,2005-07-06T06:05:04Z,2020-02-15T06:59:55Z +12260,454,2,4562,4.99,2005-07-08T05:08:32Z,2020-02-15T06:59:55Z +12261,454,2,5088,4.99,2005-07-09T05:45:16Z,2020-02-15T06:59:55Z +12262,454,2,5446,2.99,2005-07-09T21:59:55Z,2020-02-15T06:59:55Z +12263,454,2,6260,4.99,2005-07-11T15:26:29Z,2020-02-15T06:59:55Z +12264,454,2,6701,0.99,2005-07-12T12:47:59Z,2020-02-15T06:59:55Z +12265,454,2,8481,2.99,2005-07-29T08:45:57Z,2020-02-15T06:59:55Z +12266,454,1,8806,0.99,2005-07-29T21:36:34Z,2020-02-15T06:59:55Z +12267,454,2,9041,0.99,2005-07-30T06:32:36Z,2020-02-15T06:59:55Z +12268,454,1,9372,9.99,2005-07-30T19:04:30Z,2020-02-15T06:59:55Z +12269,454,1,10005,3.99,2005-07-31T17:53:51Z,2020-02-15T06:59:55Z +12270,454,2,12347,0.99,2005-08-18T07:18:10Z,2020-02-15T06:59:55Z +12271,454,1,12553,0.99,2005-08-18T14:46:54Z,2020-02-15T06:59:55Z +12272,454,2,13496,8.99,2005-08-20T01:42:29Z,2020-02-15T06:59:55Z +12273,454,2,13513,2.99,2005-08-20T02:27:53Z,2020-02-15T06:59:55Z +12274,454,2,13694,8.99,2005-08-20T09:13:23Z,2020-02-15T06:59:55Z +12275,454,1,13805,6.99,2005-08-20T12:53:12Z,2020-02-15T06:59:55Z +12276,454,1,14799,0.99,2005-08-22T00:44:57Z,2020-02-15T06:59:55Z +12277,454,2,14843,2.99,2005-08-22T02:05:25Z,2020-02-15T06:59:55Z +12278,454,2,15012,4.99,2005-08-22T08:42:32Z,2020-02-15T06:59:55Z +12279,454,1,15301,3.99,2005-08-22T19:44:16Z,2020-02-15T06:59:55Z +12280,454,2,15608,1.99,2005-08-23T06:55:26Z,2020-02-15T06:59:55Z +12281,455,2,115,0.99,2005-05-25T19:13:25Z,2020-02-15T06:59:55Z +12282,455,2,343,0.99,2005-05-27T04:13:41Z,2020-02-15T06:59:55Z +12283,455,2,1382,1.99,2005-06-15T15:18:08Z,2020-02-15T06:59:55Z +12284,455,1,1802,1.99,2005-06-16T20:23:30Z,2020-02-15T06:59:55Z +12285,455,1,1906,2.99,2005-06-17T04:53:35Z,2020-02-15T06:59:55Z +12286,455,2,2356,0.99,2005-06-18T12:59:23Z,2020-02-15T06:59:55Z +12287,455,2,4195,2.99,2005-07-07T11:00:02Z,2020-02-15T06:59:55Z +12288,455,1,4861,8.99,2005-07-08T18:57:30Z,2020-02-15T06:59:55Z +12289,455,1,4964,2.99,2005-07-08T23:46:38Z,2020-02-15T06:59:55Z +12290,455,1,5504,6.99,2005-07-10T00:36:38Z,2020-02-15T06:59:55Z +12291,455,2,6729,4.99,2005-07-12T13:58:23Z,2020-02-15T06:59:55Z +12292,455,1,7388,4.99,2005-07-27T15:54:19Z,2020-02-15T06:59:55Z +12293,455,2,7498,4.99,2005-07-27T20:09:31Z,2020-02-15T06:59:55Z +12294,455,2,7905,5.99,2005-07-28T11:26:57Z,2020-02-15T06:59:55Z +12295,455,2,8291,2.99,2005-07-29T02:28:25Z,2020-02-15T06:59:55Z +12296,455,1,10436,0.99,2005-08-01T08:50:59Z,2020-02-15T06:59:55Z +12297,455,1,11605,4.99,2005-08-17T03:30:57Z,2020-02-15T06:59:55Z +12298,455,1,12163,2.99,2005-08-18T00:46:01Z,2020-02-15T06:59:55Z +12299,455,1,12314,4.99,2005-08-18T06:10:02Z,2020-02-15T06:59:55Z +12300,455,2,13083,2.99,2005-08-19T10:26:45Z,2020-02-15T06:59:55Z +12301,455,2,13813,4.99,2005-08-20T13:03:26Z,2020-02-15T06:59:55Z +12302,455,1,14294,2.99,2005-08-21T07:07:26Z,2020-02-15T06:59:55Z +12303,455,2,14583,4.99,2005-08-21T17:11:47Z,2020-02-15T06:59:55Z +12304,455,1,15494,1.99,2005-08-23T02:25:09Z,2020-02-15T06:59:55Z +12305,456,2,19,4.99,2005-05-25T01:17:24Z,2020-02-15T06:59:55Z +12306,456,1,1288,2.99,2005-06-15T08:41:52Z,2020-02-15T06:59:55Z +12307,456,1,1700,0.99,2005-06-16T13:18:23Z,2020-02-15T06:59:55Z +12308,456,2,2103,5.99,2005-06-17T19:13:10Z,2020-02-15T06:59:55Z +12309,456,2,2146,6.99,2005-06-17T22:26:23Z,2020-02-15T06:59:55Z +12310,456,1,2192,4.99,2005-06-18T01:35:47Z,2020-02-15T06:59:55Z +12311,456,1,2404,0.99,2005-06-18T16:33:48Z,2020-02-15T06:59:55Z +12312,456,1,2581,2.99,2005-06-19T04:54:13Z,2020-02-15T06:59:55Z +12313,456,1,3743,7.99,2005-07-06T12:03:54Z,2020-02-15T06:59:55Z +12314,456,2,3881,2.99,2005-07-06T18:35:37Z,2020-02-15T06:59:55Z +12315,456,1,4141,3.99,2005-07-07T08:19:20Z,2020-02-15T06:59:55Z +12316,456,2,5964,0.99,2005-07-10T23:47:18Z,2020-02-15T06:59:55Z +12317,456,2,6023,0.99,2005-07-11T02:15:57Z,2020-02-15T06:59:55Z +12318,456,2,7248,2.99,2005-07-27T10:37:45Z,2020-02-15T06:59:55Z +12319,456,1,8749,4.99,2005-07-29T19:13:15Z,2020-02-15T06:59:55Z +12320,456,2,10519,5.99,2005-08-01T11:44:13Z,2020-02-15T06:59:55Z +12321,456,1,10813,2.99,2005-08-01T22:43:00Z,2020-02-15T06:59:55Z +12322,456,1,12188,4.99,2005-08-18T01:51:43Z,2020-02-15T06:59:55Z +12323,456,1,13144,8.99,2005-08-19T12:45:55Z,2020-02-15T06:59:55Z +12324,456,1,13348,4.99,2005-08-19T20:31:48Z,2020-02-15T06:59:55Z +12325,456,1,13547,4.99,2005-08-20T03:53:16Z,2020-02-15T06:59:55Z +12326,456,2,14253,2.99,2005-08-21T05:47:52Z,2020-02-15T06:59:55Z +12327,456,2,14690,1.99,2005-08-21T20:42:25Z,2020-02-15T06:59:55Z +12328,456,1,15720,3.99,2005-08-23T11:15:20Z,2020-02-15T06:59:55Z +12329,456,1,15910,2.99,2005-08-23T17:43:16Z,2020-02-15T06:59:55Z +12330,457,2,1024,7.99,2005-05-31T03:30:19Z,2020-02-15T06:59:55Z +12331,457,2,1453,4.99,2005-06-15T19:36:39Z,2020-02-15T06:59:55Z +12332,457,2,1727,0.99,2005-06-16T15:21:47Z,2020-02-15T06:59:55Z +12333,457,1,2030,0.99,2005-06-17T13:13:27Z,2020-02-15T06:59:55Z +12334,457,1,2172,7.99,2005-06-18T00:06:16Z,2020-02-15T06:59:55Z +12335,457,1,2670,4.99,2005-06-19T11:30:16Z,2020-02-15T06:59:55Z +12336,457,1,2762,3.99,2005-06-19T17:22:31Z,2020-02-15T06:59:55Z +12337,457,1,2811,0.99,2005-06-19T19:53:30Z,2020-02-15T06:59:55Z +12338,457,2,3115,2.99,2005-06-20T17:59:05Z,2020-02-15T06:59:55Z +12339,457,2,3184,2.99,2005-06-20T22:57:44Z,2020-02-15T06:59:55Z +12340,457,2,4600,5.99,2005-07-08T06:48:37Z,2020-02-15T06:59:55Z +12341,457,1,5500,0.99,2005-07-10T00:28:17Z,2020-02-15T06:59:55Z +12342,457,1,6467,7.99,2005-07-12T01:22:03Z,2020-02-15T06:59:55Z +12343,457,1,7184,1.99,2005-07-27T08:22:26Z,2020-02-15T06:59:55Z +12344,457,2,8373,4.99,2005-07-29T05:19:53Z,2020-02-15T06:59:55Z +12345,457,1,8502,2.99,2005-07-29T09:15:41Z,2020-02-15T06:59:55Z +12346,457,1,10049,2.99,2005-07-31T19:11:11Z,2020-02-15T06:59:55Z +12347,457,2,11956,6.99,2005-08-17T17:22:05Z,2020-02-15T06:59:55Z +12348,457,1,12115,4.99,2005-08-17T23:04:15Z,2020-02-15T06:59:55Z +12349,457,1,12171,4.99,2005-08-18T01:06:13Z,2020-02-15T06:59:55Z +12350,457,1,13088,0.99,2005-08-19T10:36:11Z,2020-02-15T06:59:55Z +12351,457,1,13150,2.99,2005-08-19T13:08:19Z,2020-02-15T06:59:55Z +12352,457,2,13934,0.99,2005-08-20T17:18:48Z,2020-02-15T06:59:55Z +12353,457,2,14327,10.99,2005-08-21T08:18:18Z,2020-02-15T06:59:55Z +12354,457,1,14365,6.99,2005-08-21T09:25:13Z,2020-02-15T06:59:55Z +12355,457,1,15128,3.99,2005-08-22T12:57:26Z,2020-02-15T06:59:55Z +12356,457,1,12645,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12357,457,2,14516,0,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12358,458,2,2629,5.99,2005-06-19T08:42:12Z,2020-02-15T06:59:55Z +12359,458,2,3322,0.99,2005-06-21T08:42:37Z,2020-02-15T06:59:55Z +12360,458,2,4525,2.99,2005-07-08T03:15:00Z,2020-02-15T06:59:55Z +12361,458,1,5412,2.99,2005-07-09T20:23:52Z,2020-02-15T06:59:55Z +12362,458,1,5572,0.99,2005-07-10T03:49:00Z,2020-02-15T06:59:55Z +12363,458,2,6250,3.99,2005-07-11T15:02:04Z,2020-02-15T06:59:55Z +12364,458,1,6431,5.99,2005-07-12T00:03:57Z,2020-02-15T06:59:55Z +12365,458,2,6595,7.99,2005-07-12T07:25:48Z,2020-02-15T06:59:55Z +12366,458,1,6654,1.99,2005-07-12T11:06:28Z,2020-02-15T06:59:55Z +12367,458,2,7923,3.99,2005-07-28T12:08:29Z,2020-02-15T06:59:55Z +12368,458,1,8158,0.99,2005-07-28T21:08:46Z,2020-02-15T06:59:55Z +12369,458,2,11138,2.99,2005-08-02T09:26:16Z,2020-02-15T06:59:55Z +12370,458,2,11975,2.99,2005-08-17T17:58:39Z,2020-02-15T06:59:55Z +12371,458,2,12768,0.99,2005-08-18T23:26:11Z,2020-02-15T06:59:55Z +12372,458,2,13259,2.99,2005-08-19T17:08:53Z,2020-02-15T06:59:55Z +12373,458,2,13487,2.99,2005-08-20T01:27:05Z,2020-02-15T06:59:55Z +12374,458,2,13571,4.99,2005-08-20T05:05:14Z,2020-02-15T06:59:55Z +12375,458,2,14428,4.99,2005-08-21T11:27:07Z,2020-02-15T06:59:55Z +12376,458,1,15604,4.99,2005-08-23T06:44:19Z,2020-02-15T06:59:55Z +12377,459,2,2,2.99,2005-05-24T22:54:33Z,2020-02-15T06:59:55Z +12378,459,2,1876,0.99,2005-06-17T02:50:51Z,2020-02-15T06:59:55Z +12379,459,2,1977,2.99,2005-06-17T09:38:22Z,2020-02-15T06:59:55Z +12380,459,2,2075,4.99,2005-06-17T16:40:33Z,2020-02-15T06:59:55Z +12381,459,1,2899,0.99,2005-06-20T02:39:21Z,2020-02-15T06:59:55Z +12382,459,2,3041,4.99,2005-06-20T12:35:44Z,2020-02-15T06:59:55Z +12383,459,2,3045,0.99,2005-06-20T12:42:00Z,2020-02-15T06:59:55Z +12384,459,2,3234,9.99,2005-06-21T02:39:44Z,2020-02-15T06:59:55Z +12385,459,1,3506,2.99,2005-07-06T00:22:29Z,2020-02-15T06:59:55Z +12386,459,2,4519,2.99,2005-07-08T02:51:23Z,2020-02-15T06:59:55Z +12387,459,1,5301,3.99,2005-07-09T15:42:10Z,2020-02-15T06:59:55Z +12388,459,1,5695,0.99,2005-07-10T09:43:40Z,2020-02-15T06:59:55Z +12389,459,1,6206,0.99,2005-07-11T12:32:14Z,2020-02-15T06:59:55Z +12390,459,2,6750,3.99,2005-07-12T14:49:39Z,2020-02-15T06:59:55Z +12391,459,1,7623,6.99,2005-07-28T00:37:41Z,2020-02-15T06:59:55Z +12392,459,2,7639,4.99,2005-07-28T01:14:36Z,2020-02-15T06:59:55Z +12393,459,1,7717,4.99,2005-07-28T04:33:54Z,2020-02-15T06:59:55Z +12394,459,1,7820,5.99,2005-07-28T08:28:51Z,2020-02-15T06:59:55Z +12395,459,1,7913,6.99,2005-07-28T11:47:23Z,2020-02-15T06:59:55Z +12396,459,1,8289,9.99,2005-07-29T02:23:24Z,2020-02-15T06:59:55Z +12397,459,2,8557,10.99,2005-07-29T11:19:59Z,2020-02-15T06:59:55Z +12398,459,1,8897,2.99,2005-07-30T01:00:17Z,2020-02-15T06:59:55Z +12399,459,1,9137,6.99,2005-07-30T10:09:24Z,2020-02-15T06:59:55Z +12400,459,2,9639,2.99,2005-07-31T05:32:10Z,2020-02-15T06:59:55Z +12401,459,1,9744,4.99,2005-07-31T09:15:38Z,2020-02-15T06:59:55Z +12402,459,2,10117,4.99,2005-07-31T21:14:31Z,2020-02-15T06:59:55Z +12403,459,1,10233,6.99,2005-08-01T01:54:23Z,2020-02-15T06:59:55Z +12404,459,2,10255,4.99,2005-08-01T02:46:13Z,2020-02-15T06:59:55Z +12405,459,1,10499,7.99,2005-08-01T11:00:20Z,2020-02-15T06:59:55Z +12406,459,1,10531,2.99,2005-08-01T12:06:30Z,2020-02-15T06:59:55Z +12407,459,1,12527,6.99,2005-08-18T13:48:46Z,2020-02-15T06:59:55Z +12408,459,1,12629,7.99,2005-08-18T17:40:33Z,2020-02-15T06:59:55Z +12409,459,2,13960,10.99,2005-08-20T18:16:26Z,2020-02-15T06:59:55Z +12410,459,1,13967,4.99,2005-08-20T18:28:46Z,2020-02-15T06:59:55Z +12411,459,1,14315,3.99,2005-08-21T07:56:39Z,2020-02-15T06:59:55Z +12412,459,1,15126,5.99,2005-08-22T12:53:58Z,2020-02-15T06:59:55Z +12413,459,2,15342,2.99,2005-08-22T20:56:41Z,2020-02-15T06:59:55Z +12414,459,1,15814,0.99,2005-08-23T14:52:50Z,2020-02-15T06:59:55Z +12415,460,1,223,4.99,2005-05-26T10:15:23Z,2020-02-15T06:59:55Z +12416,460,2,298,0.99,2005-05-26T20:52:26Z,2020-02-15T06:59:55Z +12417,460,1,880,0.99,2005-05-30T06:12:33Z,2020-02-15T06:59:55Z +12418,460,2,1064,4.99,2005-05-31T08:50:07Z,2020-02-15T06:59:55Z +12419,460,2,1392,0.99,2005-06-15T16:12:27Z,2020-02-15T06:59:55Z +12420,460,2,3820,4.99,2005-07-06T15:35:26Z,2020-02-15T06:59:55Z +12421,460,1,4452,7.99,2005-07-07T23:31:54Z,2020-02-15T06:59:55Z +12422,460,2,5482,3.99,2005-07-09T23:53:04Z,2020-02-15T06:59:55Z +12423,460,1,6613,4.99,2005-07-12T08:30:07Z,2020-02-15T06:59:55Z +12424,460,1,6788,5.99,2005-07-12T16:33:44Z,2020-02-15T06:59:55Z +12425,460,1,7125,6.99,2005-07-27T06:11:00Z,2020-02-15T06:59:55Z +12426,460,1,7785,3.99,2005-07-28T07:16:11Z,2020-02-15T06:59:55Z +12427,460,2,8656,2.99,2005-07-29T15:05:52Z,2020-02-15T06:59:55Z +12428,460,2,10754,10.99,2005-08-01T20:12:33Z,2020-02-15T06:59:55Z +12429,460,1,10926,1.99,2005-08-02T02:26:37Z,2020-02-15T06:59:55Z +12430,460,2,11554,2.99,2005-08-17T01:05:17Z,2020-02-15T06:59:55Z +12431,460,1,12056,5.99,2005-08-17T21:03:48Z,2020-02-15T06:59:55Z +12432,460,2,12586,4.99,2005-08-18T15:54:39Z,2020-02-15T06:59:55Z +12433,460,1,12865,0.99,2005-08-19T02:38:50Z,2020-02-15T06:59:55Z +12434,460,2,13215,8.99,2005-08-19T15:35:38Z,2020-02-15T06:59:55Z +12435,460,1,13341,3.99,2005-08-19T20:18:53Z,2020-02-15T06:59:55Z +12436,460,2,13920,5.99,2005-08-20T16:51:18Z,2020-02-15T06:59:55Z +12437,460,2,14864,0.99,2005-08-22T02:57:06Z,2020-02-15T06:59:55Z +12438,460,1,14923,3.99,2005-08-22T05:13:33Z,2020-02-15T06:59:55Z +12439,460,2,15954,2.99,2005-08-23T19:14:07Z,2020-02-15T06:59:55Z +12440,461,1,684,6.99,2005-05-29T00:13:15Z,2020-02-15T06:59:55Z +12441,461,2,3127,5.99,2005-06-20T18:39:43Z,2020-02-15T06:59:55Z +12442,461,2,3319,4.99,2005-06-21T08:25:46Z,2020-02-15T06:59:55Z +12443,461,2,3698,0.99,2005-07-06T10:09:20Z,2020-02-15T06:59:55Z +12444,461,2,4586,2.99,2005-07-08T06:12:33Z,2020-02-15T06:59:55Z +12445,461,1,5650,0.99,2005-07-10T07:17:01Z,2020-02-15T06:59:55Z +12446,461,1,5809,2.99,2005-07-10T15:19:30Z,2020-02-15T06:59:55Z +12447,461,2,7334,2.99,2005-07-27T13:59:58Z,2020-02-15T06:59:55Z +12448,461,2,7664,2.99,2005-07-28T02:24:23Z,2020-02-15T06:59:55Z +12449,461,2,8133,0.99,2005-07-28T20:01:06Z,2020-02-15T06:59:55Z +12450,461,2,8164,0.99,2005-07-28T21:17:19Z,2020-02-15T06:59:55Z +12451,461,2,9499,4.99,2005-07-30T23:58:30Z,2020-02-15T06:59:55Z +12452,461,1,9885,0.99,2005-07-31T13:59:32Z,2020-02-15T06:59:55Z +12453,461,2,10113,4.99,2005-07-31T21:10:03Z,2020-02-15T06:59:55Z +12454,461,1,10260,2.99,2005-08-01T02:58:07Z,2020-02-15T06:59:55Z +12455,461,2,11063,0.99,2005-08-02T06:53:48Z,2020-02-15T06:59:55Z +12456,461,2,11219,0.99,2005-08-02T12:30:20Z,2020-02-15T06:59:55Z +12457,461,2,12022,2.99,2005-08-17T19:52:45Z,2020-02-15T06:59:55Z +12458,461,1,13223,2.99,2005-08-19T15:52:04Z,2020-02-15T06:59:55Z +12459,461,1,13269,2.99,2005-08-19T17:34:00Z,2020-02-15T06:59:55Z +12460,461,1,14186,4.99,2005-08-21T03:31:07Z,2020-02-15T06:59:55Z +12461,461,1,14893,4.99,2005-08-22T04:15:48Z,2020-02-15T06:59:55Z +12462,461,1,15067,2.99,2005-08-22T10:49:21Z,2020-02-15T06:59:55Z +12463,461,2,15187,4.99,2005-08-22T15:53:32Z,2020-02-15T06:59:55Z +12464,461,1,15336,6.99,2005-08-22T20:47:48Z,2020-02-15T06:59:55Z +12465,461,2,15411,2.99,2005-08-22T23:35:41Z,2020-02-15T06:59:55Z +12466,461,2,15449,2.99,2005-08-23T00:55:43Z,2020-02-15T06:59:55Z +12467,461,2,15613,7.99,2005-08-23T07:03:19Z,2020-02-15T06:59:55Z +12468,462,2,156,2.99,2005-05-26T01:19:05Z,2020-02-15T06:59:55Z +12469,462,2,590,3.99,2005-05-28T13:06:50Z,2020-02-15T06:59:55Z +12470,462,2,1773,5.99,2005-06-16T18:13:43Z,2020-02-15T06:59:55Z +12471,462,2,1926,9.99,2005-06-17T06:24:30Z,2020-02-15T06:59:55Z +12472,462,1,3279,4.99,2005-06-21T06:05:53Z,2020-02-15T06:59:55Z +12473,462,1,4500,4.99,2005-07-08T02:10:01Z,2020-02-15T06:59:55Z +12474,462,2,4728,3.99,2005-07-08T12:59:01Z,2020-02-15T06:59:55Z +12475,462,1,6583,4.99,2005-07-12T06:42:31Z,2020-02-15T06:59:55Z +12476,462,1,6630,0.99,2005-07-12T09:30:05Z,2020-02-15T06:59:55Z +12477,462,1,6710,7.99,2005-07-12T13:23:09Z,2020-02-15T06:59:55Z +12478,462,1,6721,6.99,2005-07-12T13:42:58Z,2020-02-15T06:59:55Z +12479,462,2,7295,8.99,2005-07-27T12:38:47Z,2020-02-15T06:59:55Z +12480,462,1,7324,6.99,2005-07-27T13:42:39Z,2020-02-15T06:59:55Z +12481,462,1,7762,8.99,2005-07-28T06:34:23Z,2020-02-15T06:59:55Z +12482,462,1,7932,4.99,2005-07-28T12:24:54Z,2020-02-15T06:59:55Z +12483,462,2,7935,2.99,2005-07-28T12:33:17Z,2020-02-15T06:59:55Z +12484,462,1,8066,2.99,2005-07-28T17:20:09Z,2020-02-15T06:59:55Z +12485,462,1,8282,0.99,2005-07-29T01:49:04Z,2020-02-15T06:59:55Z +12486,462,1,8290,3.99,2005-07-29T02:24:08Z,2020-02-15T06:59:55Z +12487,462,2,8757,2.99,2005-07-29T19:19:10Z,2020-02-15T06:59:55Z +12488,462,1,9891,0.99,2005-07-31T14:05:44Z,2020-02-15T06:59:55Z +12489,462,1,10283,2.99,2005-08-01T03:29:45Z,2020-02-15T06:59:55Z +12490,462,2,11639,6.99,2005-08-17T04:43:29Z,2020-02-15T06:59:55Z +12491,462,1,11808,2.99,2005-08-17T11:51:16Z,2020-02-15T06:59:55Z +12492,462,1,12466,4.99,2005-08-18T11:36:55Z,2020-02-15T06:59:55Z +12493,462,2,12582,0.99,2005-08-18T15:51:12Z,2020-02-15T06:59:55Z +12494,462,1,12802,8.99,2005-08-19T00:27:41Z,2020-02-15T06:59:55Z +12495,462,2,13041,8.99,2005-08-19T09:05:38Z,2020-02-15T06:59:55Z +12496,462,1,13328,4.99,2005-08-19T19:56:01Z,2020-02-15T06:59:55Z +12497,462,1,13492,7.99,2005-08-20T01:32:04Z,2020-02-15T06:59:55Z +12498,462,2,15581,2.99,2005-08-23T05:42:13Z,2020-02-15T06:59:55Z +12499,462,1,15943,2.99,2005-08-23T18:49:32Z,2020-02-15T06:59:55Z +12500,462,1,16013,0.99,2005-08-23T21:17:17Z,2020-02-15T06:59:55Z +12501,463,1,560,1.99,2005-05-28T08:53:02Z,2020-02-15T06:59:55Z +12502,463,1,1284,2.99,2005-06-15T08:27:33Z,2020-02-15T06:59:55Z +12503,463,2,2527,4.99,2005-06-19T01:10:31Z,2020-02-15T06:59:55Z +12504,463,1,3217,2.99,2005-06-21T01:28:12Z,2020-02-15T06:59:55Z +12505,463,1,3309,4.99,2005-06-21T08:00:49Z,2020-02-15T06:59:55Z +12506,463,1,5026,2.99,2005-07-09T02:32:34Z,2020-02-15T06:59:55Z +12507,463,1,5157,2.99,2005-07-09T08:52:12Z,2020-02-15T06:59:55Z +12508,463,1,5448,0.99,2005-07-09T22:11:14Z,2020-02-15T06:59:55Z +12509,463,2,6294,0.99,2005-07-11T17:25:55Z,2020-02-15T06:59:55Z +12510,463,1,6932,6.99,2005-07-26T23:08:04Z,2020-02-15T06:59:55Z +12511,463,1,7013,0.99,2005-07-27T02:03:21Z,2020-02-15T06:59:55Z +12512,463,1,7361,0.99,2005-07-27T14:53:55Z,2020-02-15T06:59:55Z +12513,463,1,8762,2.99,2005-07-29T19:30:02Z,2020-02-15T06:59:55Z +12514,463,2,9405,7.99,2005-07-30T20:22:17Z,2020-02-15T06:59:55Z +12515,463,1,9954,2.99,2005-07-31T15:57:07Z,2020-02-15T06:59:55Z +12516,463,1,10275,3.99,2005-08-01T03:20:08Z,2020-02-15T06:59:55Z +12517,463,2,10405,0.99,2005-08-01T07:35:25Z,2020-02-15T06:59:55Z +12518,463,2,10906,2.99,2005-08-02T01:47:04Z,2020-02-15T06:59:55Z +12519,463,2,12096,7.99,2005-08-17T22:32:50Z,2020-02-15T06:59:55Z +12520,463,2,12679,6.99,2005-08-18T19:42:11Z,2020-02-15T06:59:55Z +12521,463,1,12950,2.99,2005-08-19T05:55:58Z,2020-02-15T06:59:55Z +12522,463,2,13938,4.99,2005-08-20T17:24:45Z,2020-02-15T06:59:55Z +12523,463,1,14689,0.99,2005-08-21T20:33:00Z,2020-02-15T06:59:55Z +12524,463,1,14859,2.99,2005-08-22T02:46:35Z,2020-02-15T06:59:55Z +12525,463,2,15151,7.99,2005-08-22T14:23:11Z,2020-02-15T06:59:55Z +12526,464,1,305,3.99,2005-05-26T21:22:07Z,2020-02-15T06:59:55Z +12527,464,2,373,1.99,2005-05-27T08:16:25Z,2020-02-15T06:59:55Z +12528,464,2,1277,4.99,2005-06-15T08:01:29Z,2020-02-15T06:59:55Z +12529,464,1,3167,2.99,2005-06-20T21:42:29Z,2020-02-15T06:59:55Z +12530,464,1,3761,4.99,2005-07-06T12:52:44Z,2020-02-15T06:59:55Z +12531,464,1,4337,5.99,2005-07-07T18:36:37Z,2020-02-15T06:59:55Z +12532,464,2,5455,6.99,2005-07-09T22:28:45Z,2020-02-15T06:59:55Z +12533,464,1,5910,4.99,2005-07-10T20:51:34Z,2020-02-15T06:59:55Z +12534,464,2,6601,3.99,2005-07-12T07:44:49Z,2020-02-15T06:59:55Z +12535,464,1,9600,5.99,2005-07-31T03:35:34Z,2020-02-15T06:59:55Z +12536,464,2,11275,1.99,2005-08-02T14:25:58Z,2020-02-15T06:59:55Z +12537,464,1,13644,8.99,2005-08-20T07:46:30Z,2020-02-15T06:59:55Z +12538,464,2,13943,2.99,2005-08-20T17:31:18Z,2020-02-15T06:59:55Z +12539,464,1,15092,6.99,2005-08-22T11:36:16Z,2020-02-15T06:59:55Z +12540,464,2,15854,0.99,2005-08-23T15:58:05Z,2020-02-15T06:59:55Z +12541,464,1,15983,4.99,2005-08-23T20:13:38Z,2020-02-15T06:59:55Z +12542,465,2,640,0.99,2005-05-28T18:43:26Z,2020-02-15T06:59:55Z +12543,465,1,1337,2.99,2005-06-15T12:12:42Z,2020-02-15T06:59:55Z +12544,465,1,2079,4.99,2005-06-17T16:49:45Z,2020-02-15T06:59:55Z +12545,465,1,2159,8.99,2005-06-17T23:37:29Z,2020-02-15T06:59:55Z +12546,465,2,2524,0.99,2005-06-19T00:48:11Z,2020-02-15T06:59:55Z +12547,465,1,4763,0.99,2005-07-08T14:57:32Z,2020-02-15T06:59:55Z +12548,465,2,6904,3.99,2005-07-12T22:02:09Z,2020-02-15T06:59:55Z +12549,465,2,7508,2.99,2005-07-27T20:33:08Z,2020-02-15T06:59:55Z +12550,465,1,10542,3.99,2005-08-01T12:32:23Z,2020-02-15T06:59:55Z +12551,465,1,11156,2.99,2005-08-02T09:56:06Z,2020-02-15T06:59:55Z +12552,465,1,11586,4.99,2005-08-17T02:20:42Z,2020-02-15T06:59:55Z +12553,465,2,11648,6.99,2005-08-17T04:56:16Z,2020-02-15T06:59:55Z +12554,465,2,12106,4.99,2005-08-17T22:55:32Z,2020-02-15T06:59:55Z +12555,465,1,12814,4.99,2005-08-19T00:58:24Z,2020-02-15T06:59:55Z +12556,465,1,12864,4.99,2005-08-19T02:38:26Z,2020-02-15T06:59:55Z +12557,465,1,15550,3.99,2005-08-23T04:27:54Z,2020-02-15T06:59:55Z +12558,465,2,15859,4.99,2005-08-23T16:08:15Z,2020-02-15T06:59:55Z +12559,466,2,1104,2.99,2005-05-31T14:30:01Z,2020-02-15T06:59:55Z +12560,466,2,1808,7.99,2005-06-16T20:59:35Z,2020-02-15T06:59:55Z +12561,466,2,2446,8.99,2005-06-18T19:04:41Z,2020-02-15T06:59:55Z +12562,466,1,3022,3.99,2005-06-20T11:17:20Z,2020-02-15T06:59:55Z +12563,466,2,3237,4.99,2005-06-21T02:47:56Z,2020-02-15T06:59:55Z +12564,466,2,3343,2.99,2005-06-21T10:56:59Z,2020-02-15T06:59:55Z +12565,466,2,5048,0.99,2005-07-09T03:46:33Z,2020-02-15T06:59:55Z +12566,466,1,5691,4.99,2005-07-10T09:29:49Z,2020-02-15T06:59:55Z +12567,466,1,6073,6.99,2005-07-11T04:54:31Z,2020-02-15T06:59:55Z +12568,466,2,7080,2.99,2005-07-27T04:25:25Z,2020-02-15T06:59:55Z +12569,466,2,8276,0.99,2005-07-29T01:38:43Z,2020-02-15T06:59:55Z +12570,466,1,9202,3.99,2005-07-30T12:43:24Z,2020-02-15T06:59:55Z +12571,466,1,9257,2.99,2005-07-30T14:30:38Z,2020-02-15T06:59:55Z +12572,466,1,10469,4.99,2005-08-01T09:51:11Z,2020-02-15T06:59:55Z +12573,466,2,11343,0.99,2005-08-02T17:12:30Z,2020-02-15T06:59:55Z +12574,466,1,11359,4.99,2005-08-02T17:45:55Z,2020-02-15T06:59:55Z +12575,466,1,12048,7.99,2005-08-17T20:49:24Z,2020-02-15T06:59:55Z +12576,466,1,13478,2.99,2005-08-20T01:07:14Z,2020-02-15T06:59:55Z +12577,466,1,13884,5.99,2005-08-20T15:30:51Z,2020-02-15T06:59:55Z +12578,466,1,13988,4.99,2005-08-20T19:21:28Z,2020-02-15T06:59:55Z +12579,466,2,14546,2.99,2005-08-21T15:50:50Z,2020-02-15T06:59:55Z +12580,466,2,15230,4.99,2005-08-22T17:31:41Z,2020-02-15T06:59:55Z +12581,466,1,16005,7.99,2005-08-23T21:00:22Z,2020-02-15T06:59:55Z +12582,467,2,225,4.99,2005-05-26T10:27:50Z,2020-02-15T06:59:55Z +12583,467,1,1737,8.99,2005-06-16T15:59:44Z,2020-02-15T06:59:55Z +12584,467,2,2121,4.99,2005-06-17T20:38:54Z,2020-02-15T06:59:55Z +12585,467,2,2870,9.99,2005-06-20T00:17:46Z,2020-02-15T06:59:55Z +12586,467,1,3250,6.99,2005-06-21T03:16:36Z,2020-02-15T06:59:55Z +12587,467,1,4216,0.99,2005-07-07T12:01:34Z,2020-02-15T06:59:55Z +12588,467,2,4222,4.99,2005-07-07T12:20:21Z,2020-02-15T06:59:55Z +12589,467,1,4259,4.99,2005-07-07T14:22:18Z,2020-02-15T06:59:55Z +12590,467,2,5160,4.99,2005-07-09T08:57:07Z,2020-02-15T06:59:55Z +12591,467,2,6271,6.99,2005-07-11T16:01:35Z,2020-02-15T06:59:55Z +12592,467,2,7360,2.99,2005-07-27T14:52:06Z,2020-02-15T06:59:55Z +12593,467,2,7573,5.99,2005-07-27T22:46:20Z,2020-02-15T06:59:55Z +12594,467,1,7611,2.99,2005-07-28T00:11:47Z,2020-02-15T06:59:55Z +12595,467,1,8010,7.99,2005-07-28T15:26:20Z,2020-02-15T06:59:55Z +12596,467,2,8061,6.99,2005-07-28T17:12:53Z,2020-02-15T06:59:55Z +12597,467,2,8224,2.99,2005-07-28T23:59:02Z,2020-02-15T06:59:55Z +12598,467,2,8480,8.99,2005-07-29T08:44:46Z,2020-02-15T06:59:55Z +12599,467,1,8767,4.99,2005-07-29T19:42:33Z,2020-02-15T06:59:55Z +12600,467,2,10239,0.99,2005-08-01T02:09:22Z,2020-02-15T06:59:55Z +12601,467,2,11332,2.99,2005-08-02T16:52:57Z,2020-02-15T06:59:55Z +12602,467,1,11874,4.99,2005-08-17T14:16:40Z,2020-02-15T06:59:55Z +12603,467,1,12266,2.99,2005-08-18T04:22:31Z,2020-02-15T06:59:55Z +12604,467,1,12437,9.99,2005-08-18T10:42:43Z,2020-02-15T06:59:55Z +12605,467,1,12641,2.99,2005-08-18T18:18:08Z,2020-02-15T06:59:55Z +12606,467,1,14402,2.99,2005-08-21T10:38:17Z,2020-02-15T06:59:55Z +12607,467,1,14451,0.99,2005-08-21T12:21:44Z,2020-02-15T06:59:55Z +12608,467,1,14842,3.99,2005-08-22T02:04:38Z,2020-02-15T06:59:55Z +12609,467,1,15032,0.99,2005-08-22T09:14:09Z,2020-02-15T06:59:55Z +12610,467,2,15830,2.99,2005-08-23T15:19:15Z,2020-02-15T06:59:55Z +12611,468,2,101,6.99,2005-05-25T17:17:04Z,2020-02-15T06:59:55Z +12612,468,1,186,4.99,2005-05-26T05:32:52Z,2020-02-15T06:59:55Z +12613,468,2,296,6.99,2005-05-26T20:35:19Z,2020-02-15T06:59:55Z +12614,468,2,459,0.99,2005-05-27T20:00:04Z,2020-02-15T06:59:55Z +12615,468,1,673,0.99,2005-05-28T22:07:30Z,2020-02-15T06:59:55Z +12616,468,2,1229,2.99,2005-06-15T03:53:13Z,2020-02-15T06:59:55Z +12617,468,1,1627,8.99,2005-06-16T07:51:09Z,2020-02-15T06:59:55Z +12618,468,1,1821,2.99,2005-06-16T21:42:49Z,2020-02-15T06:59:55Z +12619,468,1,1975,2.99,2005-06-17T09:32:10Z,2020-02-15T06:59:55Z +12620,468,2,2462,4.99,2005-06-18T20:00:15Z,2020-02-15T06:59:55Z +12621,468,1,2831,0.99,2005-06-19T21:17:06Z,2020-02-15T06:59:55Z +12622,468,2,3724,2.99,2005-07-06T11:12:48Z,2020-02-15T06:59:55Z +12623,468,1,3840,5.99,2005-07-06T16:30:59Z,2020-02-15T06:59:55Z +12624,468,2,4184,3.99,2005-07-07T10:30:08Z,2020-02-15T06:59:55Z +12625,468,2,4527,3.99,2005-07-08T03:20:10Z,2020-02-15T06:59:55Z +12626,468,1,5285,2.99,2005-07-09T15:10:44Z,2020-02-15T06:59:55Z +12627,468,1,6392,0.99,2005-07-11T22:25:19Z,2020-02-15T06:59:55Z +12628,468,1,6581,4.99,2005-07-12T06:26:49Z,2020-02-15T06:59:55Z +12629,468,2,6815,5.99,2005-07-12T18:14:10Z,2020-02-15T06:59:55Z +12630,468,2,7292,4.99,2005-07-27T12:34:14Z,2020-02-15T06:59:55Z +12631,468,1,7685,0.99,2005-07-28T03:13:00Z,2020-02-15T06:59:55Z +12632,468,2,8423,5.99,2005-07-29T07:02:57Z,2020-02-15T06:59:55Z +12633,468,2,8768,6.99,2005-07-29T19:43:02Z,2020-02-15T06:59:55Z +12634,468,1,9598,0.99,2005-07-31T03:30:41Z,2020-02-15T06:59:55Z +12635,468,1,9690,6.99,2005-07-31T07:06:29Z,2020-02-15T06:59:55Z +12636,468,2,11257,10.99,2005-08-02T13:45:05Z,2020-02-15T06:59:55Z +12637,468,2,11633,4.99,2005-08-17T04:30:09Z,2020-02-15T06:59:55Z +12638,468,2,12026,6.99,2005-08-17T20:00:10Z,2020-02-15T06:59:55Z +12639,468,2,13221,3.99,2005-08-19T15:45:47Z,2020-02-15T06:59:55Z +12640,468,1,13417,0.99,2005-08-19T22:51:39Z,2020-02-15T06:59:55Z +12641,468,2,14154,4.99,2005-08-21T02:30:00Z,2020-02-15T06:59:55Z +12642,468,2,14210,4.99,2005-08-21T04:28:02Z,2020-02-15T06:59:55Z +12643,468,1,14309,9.99,2005-08-21T07:44:17Z,2020-02-15T06:59:55Z +12644,468,1,14313,2.99,2005-08-21T07:49:53Z,2020-02-15T06:59:55Z +12645,468,1,14614,9.99,2005-08-21T18:03:51Z,2020-02-15T06:59:55Z +12646,468,2,15435,4.99,2005-08-23T00:28:19Z,2020-02-15T06:59:55Z +12647,468,1,15522,1.99,2005-08-23T03:32:31Z,2020-02-15T06:59:55Z +12648,468,1,15836,2.99,2005-08-23T15:29:17Z,2020-02-15T06:59:55Z +12649,468,2,16044,0.99,2005-08-23T22:24:39Z,2020-02-15T06:59:55Z +12650,469,1,168,0.99,2005-05-26T03:07:43Z,2020-02-15T06:59:55Z +12651,469,2,506,7.99,2005-05-28T02:09:19Z,2020-02-15T06:59:55Z +12652,469,2,529,4.99,2005-05-28T04:34:17Z,2020-02-15T06:59:55Z +12653,469,2,936,1.99,2005-05-30T13:52:49Z,2020-02-15T06:59:55Z +12654,469,1,1119,2.99,2005-05-31T16:34:27Z,2020-02-15T06:59:55Z +12655,469,2,1399,0.99,2005-06-15T16:29:51Z,2020-02-15T06:59:55Z +12656,469,1,1680,9.99,2005-06-16T11:17:22Z,2020-02-15T06:59:55Z +12657,469,2,3522,4.99,2005-07-06T01:00:21Z,2020-02-15T06:59:55Z +12658,469,1,3526,10.99,2005-07-06T01:03:29Z,2020-02-15T06:59:55Z +12659,469,2,4067,3.99,2005-07-07T04:34:23Z,2020-02-15T06:59:55Z +12660,469,2,4123,0.99,2005-07-07T07:16:19Z,2020-02-15T06:59:55Z +12661,469,1,5133,0.99,2005-07-09T07:43:22Z,2020-02-15T06:59:55Z +12662,469,1,5299,3.99,2005-07-09T15:38:09Z,2020-02-15T06:59:55Z +12663,469,2,5664,6.99,2005-07-10T08:04:41Z,2020-02-15T06:59:55Z +12664,469,2,6022,0.99,2005-07-11T02:15:53Z,2020-02-15T06:59:55Z +12665,469,2,6099,4.99,2005-07-11T06:24:44Z,2020-02-15T06:59:55Z +12666,469,1,6797,4.99,2005-07-12T16:47:06Z,2020-02-15T06:59:55Z +12667,469,1,6955,3.99,2005-07-26T23:55:48Z,2020-02-15T06:59:55Z +12668,469,2,7062,6.99,2005-07-27T03:52:01Z,2020-02-15T06:59:55Z +12669,469,2,7271,6.99,2005-07-27T11:29:11Z,2020-02-15T06:59:55Z +12670,469,2,7756,4.99,2005-07-28T06:22:52Z,2020-02-15T06:59:55Z +12671,469,1,7914,4.99,2005-07-28T11:48:08Z,2020-02-15T06:59:55Z +12672,469,2,8791,0.99,2005-07-29T20:53:23Z,2020-02-15T06:59:55Z +12673,469,1,9187,2.99,2005-07-30T12:14:03Z,2020-02-15T06:59:55Z +12674,469,2,10075,4.99,2005-07-31T19:58:42Z,2020-02-15T06:59:55Z +12675,469,1,10258,4.99,2005-08-01T02:51:09Z,2020-02-15T06:59:55Z +12676,469,1,10316,4.99,2005-08-01T04:34:57Z,2020-02-15T06:59:55Z +12677,469,1,10658,2.99,2005-08-01T16:39:18Z,2020-02-15T06:59:55Z +12678,469,1,10741,2.99,2005-08-01T19:52:52Z,2020-02-15T06:59:55Z +12679,469,2,11185,0.99,2005-08-02T11:04:35Z,2020-02-15T06:59:55Z +12680,469,2,12035,0.99,2005-08-17T20:18:06Z,2020-02-15T06:59:55Z +12681,469,1,12447,4.99,2005-08-18T10:57:01Z,2020-02-15T06:59:55Z +12682,469,1,12633,6.99,2005-08-18T17:55:38Z,2020-02-15T06:59:55Z +12683,469,1,13654,4.99,2005-08-20T07:58:21Z,2020-02-15T06:59:55Z +12684,469,1,13763,2.99,2005-08-20T11:37:56Z,2020-02-15T06:59:55Z +12685,469,2,14197,7.99,2005-08-21T03:47:25Z,2020-02-15T06:59:55Z +12686,469,2,14661,2.99,2005-08-21T19:44:21Z,2020-02-15T06:59:55Z +12687,469,1,15487,4.99,2005-08-23T02:05:51Z,2020-02-15T06:59:55Z +12688,469,1,15561,9.99,2005-08-23T05:02:31Z,2020-02-15T06:59:55Z +12689,469,1,15851,2.99,2005-08-23T15:46:33Z,2020-02-15T06:59:55Z +12690,470,2,60,2.99,2005-05-25T08:58:25Z,2020-02-15T06:59:55Z +12691,470,2,1256,0.99,2005-06-15T06:13:57Z,2020-02-15T06:59:55Z +12692,470,1,1283,0.99,2005-06-15T08:27:30Z,2020-02-15T06:59:55Z +12693,470,2,1594,7.99,2005-06-16T05:15:12Z,2020-02-15T06:59:55Z +12694,470,1,3764,5.99,2005-07-06T13:01:03Z,2020-02-15T06:59:55Z +12695,470,1,3841,4.99,2005-07-06T16:34:00Z,2020-02-15T06:59:55Z +12696,470,1,3922,4.99,2005-07-06T20:32:27Z,2020-02-15T06:59:55Z +12697,470,1,4373,4.99,2005-07-07T20:10:59Z,2020-02-15T06:59:55Z +12698,470,2,4502,6.99,2005-07-08T02:12:04Z,2020-02-15T06:59:55Z +12699,470,2,5082,4.99,2005-07-09T05:28:38Z,2020-02-15T06:59:55Z +12700,470,1,6009,3.99,2005-07-11T01:51:58Z,2020-02-15T06:59:55Z +12701,470,1,6198,2.99,2005-07-11T12:12:17Z,2020-02-15T06:59:55Z +12702,470,2,6703,4.99,2005-07-12T12:50:19Z,2020-02-15T06:59:55Z +12703,470,1,6927,10.99,2005-07-26T22:56:00Z,2020-02-15T06:59:55Z +12704,470,1,6942,5.99,2005-07-26T23:27:40Z,2020-02-15T06:59:55Z +12705,470,1,7663,4.99,2005-07-28T02:19:48Z,2020-02-15T06:59:55Z +12706,470,2,8476,8.99,2005-07-29T08:39:12Z,2020-02-15T06:59:55Z +12707,470,1,8890,6.99,2005-07-30T00:42:06Z,2020-02-15T06:59:55Z +12708,470,1,9422,5.99,2005-07-30T21:08:41Z,2020-02-15T06:59:55Z +12709,470,1,9687,2.99,2005-07-31T06:52:54Z,2020-02-15T06:59:55Z +12710,470,1,10006,4.99,2005-07-31T17:54:35Z,2020-02-15T06:59:55Z +12711,470,1,10236,0.99,2005-08-01T02:05:34Z,2020-02-15T06:59:55Z +12712,470,2,10944,4.99,2005-08-02T03:20:03Z,2020-02-15T06:59:55Z +12713,470,2,11397,1.99,2005-08-02T18:53:14Z,2020-02-15T06:59:55Z +12714,470,2,11711,2.99,2005-08-17T07:30:55Z,2020-02-15T06:59:55Z +12715,470,1,11742,0.99,2005-08-17T08:48:43Z,2020-02-15T06:59:55Z +12716,470,2,12177,3.99,2005-08-18T01:15:47Z,2020-02-15T06:59:55Z +12717,470,2,12423,8.99,2005-08-18T10:14:52Z,2020-02-15T06:59:55Z +12718,470,1,12753,10.99,2005-08-18T22:37:39Z,2020-02-15T06:59:55Z +12719,470,2,13585,4.99,2005-08-20T05:32:23Z,2020-02-15T06:59:55Z +12720,470,1,13592,4.99,2005-08-20T05:50:35Z,2020-02-15T06:59:55Z +12721,470,2,14405,4.99,2005-08-21T10:45:01Z,2020-02-15T06:59:55Z +12722,471,1,616,2.99,2005-05-28T15:45:39Z,2020-02-15T06:59:55Z +12723,471,1,1447,4.99,2005-06-15T19:13:51Z,2020-02-15T06:59:55Z +12724,471,2,1449,2.99,2005-06-15T19:19:16Z,2020-02-15T06:59:55Z +12725,471,2,2165,2.99,2005-06-17T23:51:10Z,2020-02-15T06:59:55Z +12726,471,2,2350,4.99,2005-06-18T12:25:29Z,2020-02-15T06:59:55Z +12727,471,2,3073,4.99,2005-06-20T14:33:26Z,2020-02-15T06:59:55Z +12728,471,1,3917,0.99,2005-07-06T20:19:29Z,2020-02-15T06:59:55Z +12729,471,1,4020,2.99,2005-07-07T01:42:22Z,2020-02-15T06:59:55Z +12730,471,2,6293,2.99,2005-07-11T17:24:57Z,2020-02-15T06:59:55Z +12731,471,1,6336,8.99,2005-07-11T19:30:13Z,2020-02-15T06:59:55Z +12732,471,1,6912,5.99,2005-07-12T22:17:16Z,2020-02-15T06:59:55Z +12733,471,1,8199,0.99,2005-07-28T23:10:25Z,2020-02-15T06:59:55Z +12734,471,1,9077,2.99,2005-07-30T08:00:19Z,2020-02-15T06:59:55Z +12735,471,1,9502,0.99,2005-07-31T00:02:10Z,2020-02-15T06:59:55Z +12736,471,2,9560,2.99,2005-07-31T02:17:27Z,2020-02-15T06:59:55Z +12737,471,1,10430,2.99,2005-08-01T08:37:06Z,2020-02-15T06:59:55Z +12738,471,2,10828,3.99,2005-08-01T23:16:10Z,2020-02-15T06:59:55Z +12739,471,2,11601,4.99,2005-08-17T03:14:47Z,2020-02-15T06:59:55Z +12740,471,1,12271,4.99,2005-08-18T04:33:11Z,2020-02-15T06:59:55Z +12741,471,1,13661,5.99,2005-08-20T08:05:59Z,2020-02-15T06:59:55Z +12742,471,1,14085,7.99,2005-08-20T23:46:24Z,2020-02-15T06:59:55Z +12743,471,1,14094,4.99,2005-08-21T00:21:35Z,2020-02-15T06:59:55Z +12744,471,1,14317,5.99,2005-08-21T08:00:40Z,2020-02-15T06:59:55Z +12745,471,2,14538,2.99,2005-08-21T15:28:15Z,2020-02-15T06:59:55Z +12746,471,2,14942,7.99,2005-08-22T05:58:27Z,2020-02-15T06:59:55Z +12747,471,2,15184,0.99,2005-08-22T15:51:12Z,2020-02-15T06:59:55Z +12748,471,1,15654,1.99,2005-08-23T08:34:53Z,2020-02-15T06:59:55Z +12749,472,2,142,0.99,2005-05-25T23:43:47Z,2020-02-15T06:59:55Z +12750,472,2,249,2.99,2005-05-26T14:19:09Z,2020-02-15T06:59:55Z +12751,472,2,800,0.99,2005-05-29T17:28:12Z,2020-02-15T06:59:55Z +12752,472,2,994,4.99,2005-05-30T23:55:36Z,2020-02-15T06:59:55Z +12753,472,1,1389,4.99,2005-06-15T15:49:01Z,2020-02-15T06:59:55Z +12754,472,2,1776,6.99,2005-06-16T18:46:58Z,2020-02-15T06:59:55Z +12755,472,1,2538,5.99,2005-06-19T01:56:59Z,2020-02-15T06:59:55Z +12756,472,1,2974,0.99,2005-06-20T08:00:24Z,2020-02-15T06:59:55Z +12757,472,1,2991,4.99,2005-06-20T09:10:43Z,2020-02-15T06:59:55Z +12758,472,1,3254,0.99,2005-06-21T03:27:10Z,2020-02-15T06:59:55Z +12759,472,2,3815,6.99,2005-07-06T15:26:36Z,2020-02-15T06:59:55Z +12760,472,2,5318,2.99,2005-07-09T16:11:33Z,2020-02-15T06:59:55Z +12761,472,1,5612,3.99,2005-07-10T05:15:12Z,2020-02-15T06:59:55Z +12762,472,1,6119,6.99,2005-07-11T07:44:46Z,2020-02-15T06:59:55Z +12763,472,2,6274,5.99,2005-07-11T16:09:42Z,2020-02-15T06:59:55Z +12764,472,1,6308,5.99,2005-07-11T18:08:41Z,2020-02-15T06:59:55Z +12765,472,1,6584,2.99,2005-07-12T06:43:36Z,2020-02-15T06:59:55Z +12766,472,2,8929,5.99,2005-07-30T02:28:22Z,2020-02-15T06:59:55Z +12767,472,2,9926,6.99,2005-07-31T15:11:51Z,2020-02-15T06:59:55Z +12768,472,1,10282,6.99,2005-08-01T03:29:10Z,2020-02-15T06:59:55Z +12769,472,1,10627,0.99,2005-08-01T15:33:03Z,2020-02-15T06:59:55Z +12770,472,1,11911,6.99,2005-08-17T15:51:35Z,2020-02-15T06:59:55Z +12771,472,2,12763,4.99,2005-08-18T23:07:01Z,2020-02-15T06:59:55Z +12772,472,2,13188,8.99,2005-08-19T14:27:03Z,2020-02-15T06:59:55Z +12773,472,1,14209,4.99,2005-08-21T04:17:56Z,2020-02-15T06:59:55Z +12774,472,2,14596,4.99,2005-08-21T17:38:37Z,2020-02-15T06:59:55Z +12775,472,1,14597,4.99,2005-08-21T17:39:41Z,2020-02-15T06:59:55Z +12776,472,2,15185,5.99,2005-08-22T15:52:50Z,2020-02-15T06:59:55Z +12777,472,2,15278,2.99,2005-08-22T19:06:47Z,2020-02-15T06:59:55Z +12778,472,2,14928,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12779,473,1,348,4.99,2005-05-27T04:50:56Z,2020-02-15T06:59:55Z +12780,473,2,942,2.99,2005-05-30T15:05:47Z,2020-02-15T06:59:55Z +12781,473,2,973,3.99,2005-05-30T20:27:45Z,2020-02-15T06:59:55Z +12782,473,2,1748,0.99,2005-06-16T16:54:03Z,2020-02-15T06:59:55Z +12783,473,1,2125,2.99,2005-06-17T20:53:42Z,2020-02-15T06:59:55Z +12784,473,2,2553,4.99,2005-06-19T03:04:59Z,2020-02-15T06:59:55Z +12785,473,2,2748,4.99,2005-06-19T16:22:26Z,2020-02-15T06:59:55Z +12786,473,1,3971,0.99,2005-07-06T22:50:40Z,2020-02-15T06:59:55Z +12787,473,2,4006,4.99,2005-07-07T00:25:29Z,2020-02-15T06:59:55Z +12788,473,2,4625,4.99,2005-07-08T08:14:26Z,2020-02-15T06:59:55Z +12789,473,1,4873,0.99,2005-07-08T19:23:32Z,2020-02-15T06:59:55Z +12790,473,2,5447,5.99,2005-07-09T22:09:28Z,2020-02-15T06:59:55Z +12791,473,1,6446,2.99,2005-07-12T00:44:08Z,2020-02-15T06:59:55Z +12792,473,2,6890,4.99,2005-07-12T21:03:03Z,2020-02-15T06:59:55Z +12793,473,1,7111,4.99,2005-07-27T05:38:16Z,2020-02-15T06:59:55Z +12794,473,1,7215,2.99,2005-07-27T09:24:00Z,2020-02-15T06:59:55Z +12795,473,2,7918,1.99,2005-07-28T11:58:53Z,2020-02-15T06:59:55Z +12796,473,2,7928,7.99,2005-07-28T12:15:51Z,2020-02-15T06:59:55Z +12797,473,1,9025,4.99,2005-07-30T05:50:08Z,2020-02-15T06:59:55Z +12798,473,2,9120,8.99,2005-07-30T09:26:08Z,2020-02-15T06:59:55Z +12799,473,1,10867,2.99,2005-08-02T00:24:15Z,2020-02-15T06:59:55Z +12800,473,2,11006,2.99,2005-08-02T05:05:52Z,2020-02-15T06:59:55Z +12801,473,1,11216,4.99,2005-08-02T12:23:43Z,2020-02-15T06:59:55Z +12802,473,1,11336,0.99,2005-08-02T16:58:56Z,2020-02-15T06:59:55Z +12803,473,2,11421,7.99,2005-08-02T19:51:53Z,2020-02-15T06:59:55Z +12804,473,1,11741,0.99,2005-08-17T08:48:39Z,2020-02-15T06:59:55Z +12805,473,2,13984,4.99,2005-08-20T19:12:30Z,2020-02-15T06:59:55Z +12806,473,2,14202,0.99,2005-08-21T03:51:52Z,2020-02-15T06:59:55Z +12807,473,2,14550,0.99,2005-08-21T15:56:39Z,2020-02-15T06:59:55Z +12808,473,2,14658,4.99,2005-08-21T19:41:50Z,2020-02-15T06:59:55Z +12809,473,2,14757,4.99,2005-08-21T23:23:37Z,2020-02-15T06:59:55Z +12810,473,1,15118,4.99,2005-08-22T12:38:37Z,2020-02-15T06:59:55Z +12811,473,2,15400,2.99,2005-08-22T23:13:03Z,2020-02-15T06:59:55Z +12812,473,2,16024,4.99,2005-08-23T21:46:47Z,2020-02-15T06:59:55Z +12813,474,1,816,7.99,2005-05-29T20:26:39Z,2020-02-15T06:59:55Z +12814,474,1,1758,8.99,2005-06-16T17:39:39Z,2020-02-15T06:59:55Z +12815,474,2,2944,7.99,2005-06-20T05:43:42Z,2020-02-15T06:59:55Z +12816,474,2,3787,4.99,2005-07-06T14:02:01Z,2020-02-15T06:59:55Z +12817,474,2,4048,1.99,2005-07-07T03:30:52Z,2020-02-15T06:59:55Z +12818,474,1,4481,2.99,2005-07-08T00:58:15Z,2020-02-15T06:59:55Z +12819,474,1,4533,0.99,2005-07-08T03:32:01Z,2020-02-15T06:59:55Z +12820,474,2,4785,0.99,2005-07-08T16:10:19Z,2020-02-15T06:59:55Z +12821,474,1,4809,2.99,2005-07-08T17:03:22Z,2020-02-15T06:59:55Z +12822,474,2,4886,4.99,2005-07-08T19:53:22Z,2020-02-15T06:59:55Z +12823,474,1,5251,0.99,2005-07-09T13:36:10Z,2020-02-15T06:59:55Z +12824,474,1,6499,7.99,2005-07-12T03:11:18Z,2020-02-15T06:59:55Z +12825,474,1,8991,2.99,2005-07-30T04:42:54Z,2020-02-15T06:59:55Z +12826,474,2,10376,5.99,2005-08-01T06:27:13Z,2020-02-15T06:59:55Z +12827,474,2,11117,0.99,2005-08-02T08:36:03Z,2020-02-15T06:59:55Z +12828,474,1,11489,2.99,2005-08-02T22:35:28Z,2020-02-15T06:59:55Z +12829,474,2,11537,2.99,2005-08-17T00:41:08Z,2020-02-15T06:59:55Z +12830,474,1,12083,2.99,2005-08-17T22:13:37Z,2020-02-15T06:59:55Z +12831,474,1,12236,4.99,2005-08-18T03:19:29Z,2020-02-15T06:59:55Z +12832,474,1,12440,0.99,2005-08-18T10:47:35Z,2020-02-15T06:59:55Z +12833,474,2,12597,2.99,2005-08-18T16:34:02Z,2020-02-15T06:59:55Z +12834,474,1,12702,4.99,2005-08-18T20:30:33Z,2020-02-15T06:59:55Z +12835,474,1,14728,0.99,2005-08-21T22:15:36Z,2020-02-15T06:59:55Z +12836,474,2,15046,4.99,2005-08-22T09:54:54Z,2020-02-15T06:59:55Z +12837,474,1,15558,6.99,2005-08-23T04:52:22Z,2020-02-15T06:59:55Z +12838,474,1,11909,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12839,475,2,417,4.99,2005-05-27T15:07:27Z,2020-02-15T06:59:55Z +12840,475,1,702,0.99,2005-05-29T02:27:30Z,2020-02-15T06:59:55Z +12841,475,2,3980,5.99,2005-07-06T23:11:11Z,2020-02-15T06:59:55Z +12842,475,1,4013,6.99,2005-07-07T00:58:00Z,2020-02-15T06:59:55Z +12843,475,1,4617,4.99,2005-07-08T07:55:08Z,2020-02-15T06:59:55Z +12844,475,2,5379,0.99,2005-07-09T19:08:03Z,2020-02-15T06:59:55Z +12845,475,1,5407,0.99,2005-07-09T20:16:07Z,2020-02-15T06:59:55Z +12846,475,2,5415,9.99,2005-07-09T20:30:03Z,2020-02-15T06:59:55Z +12847,475,2,5469,2.99,2005-07-09T23:08:07Z,2020-02-15T06:59:55Z +12848,475,1,6224,4.99,2005-07-11T13:42:18Z,2020-02-15T06:59:55Z +12849,475,1,7641,7.99,2005-07-28T01:15:45Z,2020-02-15T06:59:55Z +12850,475,1,7775,1.99,2005-07-28T07:04:36Z,2020-02-15T06:59:55Z +12851,475,2,8207,5.99,2005-07-28T23:26:31Z,2020-02-15T06:59:55Z +12852,475,1,9183,7.99,2005-07-30T12:09:56Z,2020-02-15T06:59:55Z +12853,475,1,9647,2.99,2005-07-31T05:45:15Z,2020-02-15T06:59:55Z +12854,475,1,9737,2.99,2005-07-31T08:59:18Z,2020-02-15T06:59:55Z +12855,475,2,10162,3.99,2005-07-31T23:11:01Z,2020-02-15T06:59:55Z +12856,475,1,10357,0.99,2005-08-01T05:49:49Z,2020-02-15T06:59:55Z +12857,475,1,10633,3.99,2005-08-01T15:37:17Z,2020-02-15T06:59:55Z +12858,475,1,11293,5.99,2005-08-02T15:00:43Z,2020-02-15T06:59:55Z +12859,475,1,11770,4.99,2005-08-17T10:05:05Z,2020-02-15T06:59:55Z +12860,475,2,14303,2.99,2005-08-21T07:22:43Z,2020-02-15T06:59:55Z +12861,475,1,15097,1.99,2005-08-22T11:43:42Z,2020-02-15T06:59:55Z +12862,475,1,15288,4.99,2005-08-22T19:23:58Z,2020-02-15T06:59:55Z +12863,476,1,489,4.99,2005-05-28T00:09:12Z,2020-02-15T06:59:55Z +12864,476,1,771,2.99,2005-05-29T12:59:14Z,2020-02-15T06:59:55Z +12865,476,1,1682,3.99,2005-06-16T11:54:25Z,2020-02-15T06:59:55Z +12866,476,1,2080,0.99,2005-06-17T16:59:40Z,2020-02-15T06:59:55Z +12867,476,2,2508,4.99,2005-06-18T23:43:58Z,2020-02-15T06:59:55Z +12868,476,2,3448,2.99,2005-06-21T20:59:20Z,2020-02-15T06:59:55Z +12869,476,2,3477,7.99,2005-07-05T23:05:17Z,2020-02-15T06:59:55Z +12870,476,1,4010,5.99,2005-07-07T00:47:00Z,2020-02-15T06:59:55Z +12871,476,2,4171,4.99,2005-07-07T09:49:04Z,2020-02-15T06:59:55Z +12872,476,2,5644,4.99,2005-07-10T06:57:44Z,2020-02-15T06:59:55Z +12873,476,1,6151,2.99,2005-07-11T09:25:17Z,2020-02-15T06:59:55Z +12874,476,1,7461,0.99,2005-07-27T18:45:15Z,2020-02-15T06:59:55Z +12875,476,1,8146,0.99,2005-07-28T20:37:36Z,2020-02-15T06:59:55Z +12876,476,2,9325,6.99,2005-07-30T17:29:19Z,2020-02-15T06:59:55Z +12877,476,2,9743,3.99,2005-07-31T09:12:42Z,2020-02-15T06:59:55Z +12878,476,1,10346,4.99,2005-08-01T05:19:23Z,2020-02-15T06:59:55Z +12879,476,1,10617,9.99,2005-08-01T15:05:52Z,2020-02-15T06:59:55Z +12880,476,1,10826,6.99,2005-08-01T23:07:56Z,2020-02-15T06:59:55Z +12881,476,1,12616,4.99,2005-08-18T17:22:41Z,2020-02-15T06:59:55Z +12882,476,2,12709,5.99,2005-08-18T20:59:51Z,2020-02-15T06:59:55Z +12883,476,1,15413,0.99,2005-08-22T23:38:01Z,2020-02-15T06:59:55Z +12884,476,1,13941,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12885,477,1,882,2.99,2005-05-30T06:16:06Z,2020-02-15T06:59:55Z +12886,477,1,1714,6.99,2005-06-16T14:29:59Z,2020-02-15T06:59:55Z +12887,477,1,2187,2.99,2005-06-18T01:17:27Z,2020-02-15T06:59:55Z +12888,477,1,2306,10.99,2005-06-18T08:33:23Z,2020-02-15T06:59:55Z +12889,477,2,2676,4.99,2005-06-19T11:54:57Z,2020-02-15T06:59:55Z +12890,477,2,4237,5.99,2005-07-07T13:16:55Z,2020-02-15T06:59:55Z +12891,477,1,4283,2.99,2005-07-07T15:29:35Z,2020-02-15T06:59:55Z +12892,477,2,4956,7.99,2005-07-08T23:17:10Z,2020-02-15T06:59:55Z +12893,477,2,6265,2.99,2005-07-11T15:43:51Z,2020-02-15T06:59:55Z +12894,477,2,7302,2.99,2005-07-27T12:52:13Z,2020-02-15T06:59:55Z +12895,477,2,7904,10.99,2005-07-28T11:25:39Z,2020-02-15T06:59:55Z +12896,477,1,8515,6.99,2005-07-29T09:55:20Z,2020-02-15T06:59:55Z +12897,477,1,8821,5.99,2005-07-29T22:18:12Z,2020-02-15T06:59:55Z +12898,477,2,8857,2.99,2005-07-29T23:44:22Z,2020-02-15T06:59:55Z +12899,477,2,9446,8.99,2005-07-30T21:53:01Z,2020-02-15T06:59:55Z +12900,477,1,10500,4.99,2005-08-01T11:01:01Z,2020-02-15T06:59:55Z +12901,477,2,10912,0.99,2005-08-02T02:00:03Z,2020-02-15T06:59:55Z +12902,477,2,12420,4.99,2005-08-18T10:01:50Z,2020-02-15T06:59:55Z +12903,477,1,13002,0.99,2005-08-19T07:37:58Z,2020-02-15T06:59:55Z +12904,477,2,14552,3.99,2005-08-21T15:59:27Z,2020-02-15T06:59:55Z +12905,477,2,15091,2.99,2005-08-22T11:34:43Z,2020-02-15T06:59:55Z +12906,477,1,15929,2.99,2005-08-23T18:23:30Z,2020-02-15T06:59:55Z +12907,478,1,1708,0.99,2005-06-16T14:08:44Z,2020-02-15T06:59:55Z +12908,478,2,2358,4.99,2005-06-18T13:00:51Z,2020-02-15T06:59:55Z +12909,478,1,2529,6.99,2005-06-19T01:18:27Z,2020-02-15T06:59:55Z +12910,478,2,2616,8.99,2005-06-19T07:33:00Z,2020-02-15T06:59:55Z +12911,478,2,2765,4.99,2005-06-19T17:34:39Z,2020-02-15T06:59:55Z +12912,478,2,3259,4.99,2005-06-21T03:57:15Z,2020-02-15T06:59:55Z +12913,478,1,3691,4.99,2005-07-06T09:46:12Z,2020-02-15T06:59:55Z +12914,478,1,5837,4.99,2005-07-10T16:57:50Z,2020-02-15T06:59:55Z +12915,478,1,7522,2.99,2005-07-27T21:11:03Z,2020-02-15T06:59:55Z +12916,478,2,8488,4.99,2005-07-29T08:57:38Z,2020-02-15T06:59:55Z +12917,478,1,9665,4.99,2005-07-31T06:17:33Z,2020-02-15T06:59:55Z +12918,478,2,10016,4.99,2005-07-31T18:13:06Z,2020-02-15T06:59:55Z +12919,478,2,10127,0.99,2005-07-31T21:39:48Z,2020-02-15T06:59:55Z +12920,478,1,11906,2.99,2005-08-17T15:40:46Z,2020-02-15T06:59:55Z +12921,478,2,13162,2.99,2005-08-19T13:28:26Z,2020-02-15T06:59:55Z +12922,478,2,13507,4.99,2005-08-20T02:10:27Z,2020-02-15T06:59:55Z +12923,478,1,15027,4.99,2005-08-22T09:03:04Z,2020-02-15T06:59:55Z +12924,478,2,15188,4.99,2005-08-22T15:55:48Z,2020-02-15T06:59:55Z +12925,478,1,15724,4.99,2005-08-23T11:22:09Z,2020-02-15T06:59:55Z +12926,479,2,132,3.99,2005-05-25T21:46:54Z,2020-02-15T06:59:55Z +12927,479,1,709,7.99,2005-05-29T03:48:01Z,2020-02-15T06:59:55Z +12928,479,1,1902,2.99,2005-06-17T04:35:52Z,2020-02-15T06:59:55Z +12929,479,2,1947,3.99,2005-06-17T08:02:20Z,2020-02-15T06:59:55Z +12930,479,2,1987,2.99,2005-06-17T10:40:36Z,2020-02-15T06:59:55Z +12931,479,2,2071,3.99,2005-06-17T16:33:17Z,2020-02-15T06:59:55Z +12932,479,2,2376,2.99,2005-06-18T14:55:30Z,2020-02-15T06:59:55Z +12933,479,2,2764,6.99,2005-06-19T17:27:25Z,2020-02-15T06:59:55Z +12934,479,2,3537,6.99,2005-07-06T01:36:53Z,2020-02-15T06:59:55Z +12935,479,1,3798,0.99,2005-07-06T14:57:53Z,2020-02-15T06:59:55Z +12936,479,2,4183,8.99,2005-07-07T10:28:33Z,2020-02-15T06:59:55Z +12937,479,1,5481,0.99,2005-07-09T23:51:57Z,2020-02-15T06:59:55Z +12938,479,1,5751,4.99,2005-07-10T12:25:11Z,2020-02-15T06:59:55Z +12939,479,2,6084,7.99,2005-07-11T05:16:20Z,2020-02-15T06:59:55Z +12940,479,1,6421,1.99,2005-07-11T23:45:25Z,2020-02-15T06:59:55Z +12941,479,1,6597,0.99,2005-07-12T07:37:02Z,2020-02-15T06:59:55Z +12942,479,2,6849,8.99,2005-07-12T19:29:19Z,2020-02-15T06:59:55Z +12943,479,1,7060,7.99,2005-07-27T03:51:04Z,2020-02-15T06:59:55Z +12944,479,2,7893,2.99,2005-07-28T10:49:27Z,2020-02-15T06:59:55Z +12945,479,1,9347,5.99,2005-07-30T18:16:03Z,2020-02-15T06:59:55Z +12946,479,1,9439,8.99,2005-07-30T21:38:12Z,2020-02-15T06:59:55Z +12947,479,2,9697,2.99,2005-07-31T07:23:11Z,2020-02-15T06:59:55Z +12948,479,2,9754,7.99,2005-07-31T09:23:43Z,2020-02-15T06:59:55Z +12949,479,2,10303,4.99,2005-08-01T04:13:33Z,2020-02-15T06:59:55Z +12950,479,2,11109,4.99,2005-08-02T08:20:29Z,2020-02-15T06:59:55Z +12951,479,2,11584,1.99,2005-08-17T02:13:26Z,2020-02-15T06:59:55Z +12952,479,2,11835,4.99,2005-08-17T13:03:13Z,2020-02-15T06:59:55Z +12953,479,2,12401,0.99,2005-08-18T09:20:51Z,2020-02-15T06:59:55Z +12954,479,2,13078,8.99,2005-08-19T10:16:43Z,2020-02-15T06:59:55Z +12955,479,1,13974,2.99,2005-08-20T18:54:59Z,2020-02-15T06:59:55Z +12956,479,1,12101,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12957,480,1,518,0.99,2005-05-28T03:18:02Z,2020-02-15T06:59:55Z +12958,480,1,720,6.99,2005-05-29T05:17:30Z,2020-02-15T06:59:55Z +12959,480,2,822,9.99,2005-05-29T21:36:00Z,2020-02-15T06:59:55Z +12960,480,1,1353,0.99,2005-06-15T13:13:36Z,2020-02-15T06:59:55Z +12961,480,1,1733,0.99,2005-06-16T15:37:07Z,2020-02-15T06:59:55Z +12962,480,2,3507,7.99,2005-07-06T00:23:43Z,2020-02-15T06:59:55Z +12963,480,2,5633,2.99,2005-07-10T06:22:24Z,2020-02-15T06:59:55Z +12964,480,1,6191,2.99,2005-07-11T11:37:52Z,2020-02-15T06:59:55Z +12965,480,1,7257,2.99,2005-07-27T11:04:17Z,2020-02-15T06:59:55Z +12966,480,2,7910,9.99,2005-07-28T11:44:56Z,2020-02-15T06:59:55Z +12967,480,2,8847,4.99,2005-07-29T23:13:41Z,2020-02-15T06:59:55Z +12968,480,1,8967,6.99,2005-07-30T03:56:55Z,2020-02-15T06:59:55Z +12969,480,2,9332,4.99,2005-07-30T17:53:39Z,2020-02-15T06:59:55Z +12970,480,2,10808,1.99,2005-08-01T22:37:11Z,2020-02-15T06:59:55Z +12971,480,2,11017,0.99,2005-08-02T05:19:51Z,2020-02-15T06:59:55Z +12972,480,1,11369,5.99,2005-08-02T18:04:41Z,2020-02-15T06:59:55Z +12973,480,2,12905,4.99,2005-08-19T04:13:37Z,2020-02-15T06:59:55Z +12974,480,2,13092,0.99,2005-08-19T10:41:09Z,2020-02-15T06:59:55Z +12975,480,2,13131,9.99,2005-08-19T12:08:13Z,2020-02-15T06:59:55Z +12976,480,1,13831,4.99,2005-08-20T13:59:35Z,2020-02-15T06:59:55Z +12977,480,2,15363,2.99,2005-08-22T21:41:40Z,2020-02-15T06:59:55Z +12978,480,2,15579,4.99,2005-08-23T05:38:41Z,2020-02-15T06:59:55Z +12979,481,2,1109,5.99,2005-05-31T15:12:15Z,2020-02-15T06:59:55Z +12980,481,2,1168,2.99,2005-06-14T23:35:09Z,2020-02-15T06:59:55Z +12981,481,2,2296,4.99,2005-06-18T08:10:42Z,2020-02-15T06:59:55Z +12982,481,2,3285,4.99,2005-06-21T06:30:13Z,2020-02-15T06:59:55Z +12983,481,2,3293,0.99,2005-06-21T06:59:33Z,2020-02-15T06:59:55Z +12984,481,1,3863,0.99,2005-07-06T17:40:18Z,2020-02-15T06:59:55Z +12985,481,1,4473,2.99,2005-07-08T00:22:10Z,2020-02-15T06:59:55Z +12986,481,1,4505,1.99,2005-07-08T02:20:04Z,2020-02-15T06:59:55Z +12987,481,1,4532,0.99,2005-07-08T03:30:39Z,2020-02-15T06:59:55Z +12988,481,1,4668,10.99,2005-07-08T10:11:45Z,2020-02-15T06:59:55Z +12989,481,2,5711,2.99,2005-07-10T10:37:20Z,2020-02-15T06:59:55Z +12990,481,1,6044,0.99,2005-07-11T03:18:39Z,2020-02-15T06:59:55Z +12991,481,1,7228,4.99,2005-07-27T09:55:33Z,2020-02-15T06:59:55Z +12992,481,2,7836,7.99,2005-07-28T08:55:27Z,2020-02-15T06:59:55Z +12993,481,1,8243,6.99,2005-07-29T00:35:33Z,2020-02-15T06:59:55Z +12994,481,2,8271,6.99,2005-07-29T01:27:44Z,2020-02-15T06:59:55Z +12995,481,1,9481,4.99,2005-07-30T23:26:05Z,2020-02-15T06:59:55Z +12996,481,1,10018,3.99,2005-07-31T18:15:14Z,2020-02-15T06:59:55Z +12997,481,2,11207,0.99,2005-08-02T12:01:30Z,2020-02-15T06:59:55Z +12998,481,2,11387,2.99,2005-08-02T18:32:38Z,2020-02-15T06:59:55Z +12999,481,1,11752,4.99,2005-08-17T09:10:55Z,2020-02-15T06:59:55Z +13000,481,1,11885,4.99,2005-08-17T14:53:53Z,2020-02-15T06:59:55Z +13001,481,2,12160,2.99,2005-08-18T00:37:59Z,2020-02-15T06:59:55Z +13002,481,1,12981,4.99,2005-08-19T07:04:00Z,2020-02-15T06:59:55Z +13003,481,2,13497,2.99,2005-08-20T01:46:38Z,2020-02-15T06:59:55Z +13004,481,2,13878,4.99,2005-08-20T15:17:38Z,2020-02-15T06:59:55Z +13005,481,1,13990,1.99,2005-08-20T19:29:23Z,2020-02-15T06:59:55Z +13006,481,2,14280,4.99,2005-08-21T06:39:58Z,2020-02-15T06:59:55Z +13007,481,2,14584,0.99,2005-08-21T17:15:33Z,2020-02-15T06:59:55Z +13008,482,1,259,8.99,2005-05-26T15:32:46Z,2020-02-15T06:59:55Z +13009,482,2,680,2.99,2005-05-28T23:27:26Z,2020-02-15T06:59:55Z +13010,482,2,879,0.99,2005-05-30T05:49:42Z,2020-02-15T06:59:55Z +13011,482,2,3048,2.99,2005-06-20T12:49:55Z,2020-02-15T06:59:55Z +13012,482,2,3255,0.99,2005-06-21T03:39:52Z,2020-02-15T06:59:55Z +13013,482,2,3650,2.99,2005-07-06T07:34:15Z,2020-02-15T06:59:55Z +13014,482,1,4768,4.99,2005-07-08T15:28:20Z,2020-02-15T06:59:55Z +13015,482,1,5334,4.99,2005-07-09T17:00:13Z,2020-02-15T06:59:55Z +13016,482,1,5466,4.99,2005-07-09T23:03:21Z,2020-02-15T06:59:55Z +13017,482,2,5810,8.99,2005-07-10T15:22:04Z,2020-02-15T06:59:55Z +13018,482,2,5880,2.99,2005-07-10T19:14:58Z,2020-02-15T06:59:55Z +13019,482,1,6355,8.99,2005-07-11T20:56:29Z,2020-02-15T06:59:55Z +13020,482,2,6447,7.99,2005-07-12T00:45:17Z,2020-02-15T06:59:55Z +13021,482,2,6844,5.99,2005-07-12T19:14:53Z,2020-02-15T06:59:55Z +13022,482,2,7840,6.99,2005-07-28T09:03:02Z,2020-02-15T06:59:55Z +13023,482,2,8584,2.99,2005-07-29T12:07:53Z,2020-02-15T06:59:55Z +13024,482,2,9874,6.99,2005-07-31T13:32:31Z,2020-02-15T06:59:55Z +13025,482,2,10824,4.99,2005-08-01T23:00:22Z,2020-02-15T06:59:55Z +13026,482,2,10839,2.99,2005-08-01T23:37:39Z,2020-02-15T06:59:55Z +13027,482,2,11498,6.99,2005-08-16T22:52:54Z,2020-02-15T06:59:55Z +13028,482,1,13174,4.99,2005-08-19T13:52:50Z,2020-02-15T06:59:55Z +13029,482,2,14383,4.99,2005-08-21T10:02:05Z,2020-02-15T06:59:55Z +13030,482,2,14732,0.99,2005-08-21T22:22:29Z,2020-02-15T06:59:55Z +13031,482,2,14891,6.99,2005-08-22T04:11:02Z,2020-02-15T06:59:55Z +13032,482,2,14995,4.99,2005-08-22T07:52:31Z,2020-02-15T06:59:55Z +13033,482,1,15391,0.99,2005-08-22T23:01:45Z,2020-02-15T06:59:55Z +13034,482,1,15849,5.99,2005-08-23T15:41:20Z,2020-02-15T06:59:55Z +13035,482,2,15865,2.99,2005-08-23T16:18:25Z,2020-02-15T06:59:55Z +13036,482,1,15879,3.99,2005-08-23T16:42:53Z,2020-02-15T06:59:55Z +13037,483,2,742,6.99,2005-05-29T08:36:30Z,2020-02-15T06:59:55Z +13038,483,1,2855,4.99,2005-06-19T23:11:49Z,2020-02-15T06:59:55Z +13039,483,2,2867,0.99,2005-06-20T00:08:38Z,2020-02-15T06:59:55Z +13040,483,1,3380,8.99,2005-06-21T13:58:46Z,2020-02-15T06:59:55Z +13041,483,2,3559,4.99,2005-07-06T02:49:42Z,2020-02-15T06:59:55Z +13042,483,1,5823,4.99,2005-07-10T16:19:52Z,2020-02-15T06:59:55Z +13043,483,2,6478,4.99,2005-07-12T01:41:44Z,2020-02-15T06:59:55Z +13044,483,2,6899,9.99,2005-07-12T21:44:16Z,2020-02-15T06:59:55Z +13045,483,2,7137,0.99,2005-07-27T06:40:41Z,2020-02-15T06:59:55Z +13046,483,1,7381,4.99,2005-07-27T15:40:26Z,2020-02-15T06:59:55Z +13047,483,1,7669,4.99,2005-07-28T02:44:07Z,2020-02-15T06:59:55Z +13048,483,1,8057,7.99,2005-07-28T17:07:13Z,2020-02-15T06:59:55Z +13049,483,1,8356,4.99,2005-07-29T04:58:56Z,2020-02-15T06:59:55Z +13050,483,2,10677,0.99,2005-08-01T17:24:35Z,2020-02-15T06:59:55Z +13051,483,1,10953,6.99,2005-08-02T03:28:38Z,2020-02-15T06:59:55Z +13052,483,2,12331,3.99,2005-08-18T06:47:19Z,2020-02-15T06:59:55Z +13053,483,2,12695,2.99,2005-08-18T20:11:35Z,2020-02-15T06:59:55Z +13054,483,2,12875,2.99,2005-08-19T03:10:21Z,2020-02-15T06:59:55Z +13055,484,2,35,4.99,2005-05-25T04:24:36Z,2020-02-15T06:59:55Z +13056,484,2,668,2.99,2005-05-28T21:54:45Z,2020-02-15T06:59:55Z +13057,484,2,727,2.99,2005-05-29T06:08:15Z,2020-02-15T06:59:55Z +13058,484,1,1351,3.99,2005-06-15T12:51:03Z,2020-02-15T06:59:55Z +13059,484,2,1643,3.99,2005-06-16T08:55:35Z,2020-02-15T06:59:55Z +13060,484,1,2015,4.99,2005-06-17T12:16:29Z,2020-02-15T06:59:55Z +13061,484,1,2044,5.99,2005-06-17T14:37:57Z,2020-02-15T06:59:55Z +13062,484,1,4214,4.99,2005-07-07T11:54:33Z,2020-02-15T06:59:55Z +13063,484,1,5389,2.99,2005-07-09T19:25:45Z,2020-02-15T06:59:55Z +13064,484,2,5708,6.99,2005-07-10T10:29:19Z,2020-02-15T06:59:55Z +13065,484,1,5852,0.99,2005-07-10T17:43:30Z,2020-02-15T06:59:55Z +13066,484,2,5866,6.99,2005-07-10T18:35:14Z,2020-02-15T06:59:55Z +13067,484,2,5977,5.99,2005-07-11T00:16:38Z,2020-02-15T06:59:55Z +13068,484,2,6296,2.99,2005-07-11T17:34:04Z,2020-02-15T06:59:55Z +13069,484,1,6863,6.99,2005-07-12T19:58:34Z,2020-02-15T06:59:55Z +13070,484,2,7440,4.99,2005-07-27T17:43:27Z,2020-02-15T06:59:55Z +13071,484,2,7548,2.99,2005-07-27T21:53:18Z,2020-02-15T06:59:55Z +13072,484,2,8508,0.99,2005-07-29T09:34:38Z,2020-02-15T06:59:55Z +13073,484,2,9141,5.99,2005-07-30T10:16:04Z,2020-02-15T06:59:55Z +13074,484,2,9414,9.99,2005-07-30T20:46:02Z,2020-02-15T06:59:55Z +13075,484,1,9769,4.99,2005-07-31T09:52:16Z,2020-02-15T06:59:55Z +13076,484,2,10166,8.99,2005-07-31T23:22:20Z,2020-02-15T06:59:55Z +13077,484,2,11871,4.99,2005-08-17T14:11:44Z,2020-02-15T06:59:55Z +13078,484,1,12024,0.99,2005-08-17T19:57:34Z,2020-02-15T06:59:55Z +13079,484,1,12771,4.99,2005-08-18T23:29:23Z,2020-02-15T06:59:55Z +13080,484,1,12993,7.99,2005-08-19T07:24:03Z,2020-02-15T06:59:55Z +13081,484,2,13160,0.99,2005-08-19T13:21:04Z,2020-02-15T06:59:55Z +13082,484,2,13956,3.99,2005-08-20T18:08:19Z,2020-02-15T06:59:55Z +13083,484,1,15607,2.99,2005-08-23T06:54:06Z,2020-02-15T06:59:55Z +13084,484,1,16026,4.99,2005-08-23T21:49:22Z,2020-02-15T06:59:55Z +13085,485,1,1009,2.99,2005-05-31T01:47:35Z,2020-02-15T06:59:55Z +13086,485,2,1684,2.99,2005-06-16T11:57:34Z,2020-02-15T06:59:55Z +13087,485,1,1721,8.99,2005-06-16T15:01:36Z,2020-02-15T06:59:55Z +13088,485,2,3579,0.99,2005-07-06T03:47:47Z,2020-02-15T06:59:55Z +13089,485,1,3899,1.99,2005-07-06T19:12:40Z,2020-02-15T06:59:55Z +13090,485,1,3904,0.99,2005-07-06T19:30:57Z,2020-02-15T06:59:55Z +13091,485,2,4137,3.99,2005-07-07T08:17:06Z,2020-02-15T06:59:55Z +13092,485,2,4667,2.99,2005-07-08T10:06:26Z,2020-02-15T06:59:55Z +13093,485,1,5193,2.99,2005-07-09T10:28:18Z,2020-02-15T06:59:55Z +13094,485,1,5343,3.99,2005-07-09T17:23:43Z,2020-02-15T06:59:55Z +13095,485,1,5367,3.99,2005-07-09T18:39:15Z,2020-02-15T06:59:55Z +13096,485,1,5820,4.99,2005-07-10T16:04:59Z,2020-02-15T06:59:55Z +13097,485,2,6810,4.99,2005-07-12T17:54:19Z,2020-02-15T06:59:55Z +13098,485,2,6902,4.99,2005-07-12T21:57:16Z,2020-02-15T06:59:55Z +13099,485,1,7144,4.99,2005-07-27T07:00:37Z,2020-02-15T06:59:55Z +13100,485,2,8984,6.99,2005-07-30T04:31:50Z,2020-02-15T06:59:55Z +13101,485,2,9039,2.99,2005-07-30T06:24:28Z,2020-02-15T06:59:55Z +13102,485,1,9053,4.99,2005-07-30T07:07:39Z,2020-02-15T06:59:55Z +13103,485,2,9189,2.99,2005-07-30T12:20:59Z,2020-02-15T06:59:55Z +13104,485,1,9535,2.99,2005-07-31T01:18:53Z,2020-02-15T06:59:55Z +13105,485,1,9565,0.99,2005-07-31T02:32:00Z,2020-02-15T06:59:55Z +13106,485,1,10771,4.99,2005-08-01T20:49:35Z,2020-02-15T06:59:55Z +13107,485,2,10772,6.99,2005-08-01T20:51:10Z,2020-02-15T06:59:55Z +13108,485,2,11188,3.99,2005-08-02T11:17:11Z,2020-02-15T06:59:55Z +13109,485,1,11921,4.99,2005-08-17T16:12:27Z,2020-02-15T06:59:55Z +13110,485,1,11974,2.99,2005-08-17T17:56:48Z,2020-02-15T06:59:55Z +13111,485,2,12261,8.99,2005-08-18T04:16:06Z,2020-02-15T06:59:55Z +13112,485,2,12487,0.99,2005-08-18T12:45:24Z,2020-02-15T06:59:55Z +13113,485,2,13055,2.99,2005-08-19T09:36:28Z,2020-02-15T06:59:55Z +13114,486,1,909,8.99,2005-05-30T10:43:38Z,2020-02-15T06:59:55Z +13115,486,2,946,2.99,2005-05-30T15:35:08Z,2020-02-15T06:59:55Z +13116,486,2,1129,0.99,2005-05-31T18:00:48Z,2020-02-15T06:59:55Z +13117,486,1,2036,4.99,2005-06-17T13:46:52Z,2020-02-15T06:59:55Z +13118,486,1,2102,5.99,2005-06-17T19:05:22Z,2020-02-15T06:59:55Z +13119,486,2,2566,2.99,2005-06-19T03:45:39Z,2020-02-15T06:59:55Z +13120,486,2,2797,2.99,2005-06-19T19:04:32Z,2020-02-15T06:59:55Z +13121,486,1,3835,4.99,2005-07-06T16:22:45Z,2020-02-15T06:59:55Z +13122,486,2,4110,4.99,2005-07-07T06:44:27Z,2020-02-15T06:59:55Z +13123,486,1,4205,4.99,2005-07-07T11:25:39Z,2020-02-15T06:59:55Z +13124,486,1,4381,2.99,2005-07-07T20:37:53Z,2020-02-15T06:59:55Z +13125,486,1,4772,7.99,2005-07-08T15:41:11Z,2020-02-15T06:59:55Z +13126,486,2,5006,4.99,2005-07-09T01:24:07Z,2020-02-15T06:59:55Z +13127,486,2,6383,4.99,2005-07-11T22:06:53Z,2020-02-15T06:59:55Z +13128,486,2,7127,4.99,2005-07-27T06:13:48Z,2020-02-15T06:59:55Z +13129,486,2,7446,4.99,2005-07-27T18:00:24Z,2020-02-15T06:59:55Z +13130,486,2,8425,8.99,2005-07-29T07:06:21Z,2020-02-15T06:59:55Z +13131,486,2,9142,0.99,2005-07-30T10:21:03Z,2020-02-15T06:59:55Z +13132,486,1,10079,2.99,2005-07-31T20:05:45Z,2020-02-15T06:59:55Z +13133,486,2,10902,4.99,2005-08-02T01:35:46Z,2020-02-15T06:59:55Z +13134,486,1,12465,0.99,2005-08-18T11:35:02Z,2020-02-15T06:59:55Z +13135,486,2,12609,2.99,2005-08-18T17:06:22Z,2020-02-15T06:59:55Z +13136,486,1,13048,4.99,2005-08-19T09:25:06Z,2020-02-15T06:59:55Z +13137,486,2,13803,0.99,2005-08-20T12:46:17Z,2020-02-15T06:59:55Z +13138,486,2,14251,4.99,2005-08-21T05:42:20Z,2020-02-15T06:59:55Z +13139,486,2,14284,4.99,2005-08-21T06:44:37Z,2020-02-15T06:59:55Z +13140,487,2,3100,3.99,2005-06-20T16:47:57Z,2020-02-15T06:59:55Z +13141,487,2,3994,1.99,2005-07-06T23:39:01Z,2020-02-15T06:59:55Z +13142,487,2,4854,2.99,2005-07-08T18:44:44Z,2020-02-15T06:59:55Z +13143,487,1,5634,3.99,2005-07-10T06:25:48Z,2020-02-15T06:59:55Z +13144,487,1,6928,2.99,2005-07-26T22:56:21Z,2020-02-15T06:59:55Z +13145,487,1,7097,2.99,2005-07-27T04:56:09Z,2020-02-15T06:59:55Z +13146,487,1,7788,0.99,2005-07-28T07:21:55Z,2020-02-15T06:59:55Z +13147,487,2,7949,4.99,2005-07-28T13:07:24Z,2020-02-15T06:59:55Z +13148,487,2,8510,1.99,2005-07-29T09:41:38Z,2020-02-15T06:59:55Z +13149,487,2,8689,2.99,2005-07-29T16:38:58Z,2020-02-15T06:59:55Z +13150,487,1,8814,4.99,2005-07-29T21:49:43Z,2020-02-15T06:59:55Z +13151,487,1,8988,7.99,2005-07-30T04:38:49Z,2020-02-15T06:59:55Z +13152,487,2,9457,2.99,2005-07-30T22:23:05Z,2020-02-15T06:59:55Z +13153,487,1,9490,3.99,2005-07-30T23:45:09Z,2020-02-15T06:59:55Z +13154,487,2,10123,0.99,2005-07-31T21:30:46Z,2020-02-15T06:59:55Z +13155,487,2,10511,2.99,2005-08-01T11:32:16Z,2020-02-15T06:59:55Z +13156,487,2,10555,6.99,2005-08-01T12:56:38Z,2020-02-15T06:59:55Z +13157,487,1,10832,6.99,2005-08-01T23:24:53Z,2020-02-15T06:59:55Z +13158,487,2,10877,5.99,2005-08-02T00:32:04Z,2020-02-15T06:59:55Z +13159,487,1,10978,9.99,2005-08-02T04:12:27Z,2020-02-15T06:59:55Z +13160,487,1,11669,5.99,2005-08-17T05:48:51Z,2020-02-15T06:59:55Z +13161,487,2,11890,5.99,2005-08-17T15:08:43Z,2020-02-15T06:59:55Z +13162,487,1,12493,7.99,2005-08-18T12:53:38Z,2020-02-15T06:59:55Z +13163,487,2,13210,4.99,2005-08-19T15:23:38Z,2020-02-15T06:59:55Z +13164,487,1,13658,7.99,2005-08-20T08:02:22Z,2020-02-15T06:59:55Z +13165,487,2,15665,2.99,2005-08-23T08:59:12Z,2020-02-15T06:59:55Z +13166,488,2,1655,3.99,2005-06-16T09:51:39Z,2020-02-15T06:59:55Z +13167,488,2,1704,5.99,2005-06-16T13:45:56Z,2020-02-15T06:59:55Z +13168,488,2,4133,6.99,2005-07-07T08:12:26Z,2020-02-15T06:59:55Z +13169,488,2,4233,5.99,2005-07-07T13:00:20Z,2020-02-15T06:59:55Z +13170,488,1,5141,8.99,2005-07-09T08:05:14Z,2020-02-15T06:59:55Z +13171,488,2,6548,5.99,2005-07-12T05:00:46Z,2020-02-15T06:59:55Z +13172,488,1,7373,5.99,2005-07-27T15:19:33Z,2020-02-15T06:59:55Z +13173,488,1,8005,2.99,2005-07-28T15:15:11Z,2020-02-15T06:59:55Z +13174,488,2,8050,0.99,2005-07-28T16:55:47Z,2020-02-15T06:59:55Z +13175,488,2,8064,2.99,2005-07-28T17:15:38Z,2020-02-15T06:59:55Z +13176,488,2,9083,5.99,2005-07-30T08:14:27Z,2020-02-15T06:59:55Z +13177,488,1,9532,2.99,2005-07-31T01:16:51Z,2020-02-15T06:59:55Z +13178,488,1,9537,0.99,2005-07-31T01:23:00Z,2020-02-15T06:59:55Z +13179,488,2,10474,5.99,2005-08-01T10:01:42Z,2020-02-15T06:59:55Z +13180,488,1,10767,0.99,2005-08-01T20:37:23Z,2020-02-15T06:59:55Z +13181,488,1,11774,3.99,2005-08-17T10:20:39Z,2020-02-15T06:59:55Z +13182,488,2,12483,5.99,2005-08-18T12:38:37Z,2020-02-15T06:59:55Z +13183,488,2,13446,4.99,2005-08-20T00:06:13Z,2020-02-15T06:59:55Z +13184,488,2,14948,5.99,2005-08-22T06:10:53Z,2020-02-15T06:59:55Z +13185,488,2,15259,0.99,2005-08-22T18:23:23Z,2020-02-15T06:59:55Z +13186,488,1,15350,2.99,2005-08-22T21:15:29Z,2020-02-15T06:59:55Z +13187,488,2,15499,2.99,2005-08-23T02:37:19Z,2020-02-15T06:59:55Z +13188,489,1,219,4.99,2005-05-26T09:41:45Z,2020-02-15T06:59:55Z +13189,489,2,513,2.99,2005-05-28T03:08:10Z,2020-02-15T06:59:55Z +13190,489,2,1614,3.99,2005-06-16T06:58:02Z,2020-02-15T06:59:55Z +13191,489,1,2201,0.99,2005-06-18T02:08:27Z,2020-02-15T06:59:55Z +13192,489,1,2370,7.99,2005-06-18T14:29:54Z,2020-02-15T06:59:55Z +13193,489,1,2802,4.99,2005-06-19T19:18:17Z,2020-02-15T06:59:55Z +13194,489,2,3816,2.99,2005-07-06T15:27:04Z,2020-02-15T06:59:55Z +13195,489,1,4774,3.99,2005-07-08T15:42:28Z,2020-02-15T06:59:55Z +13196,489,1,6963,4.99,2005-07-27T00:13:02Z,2020-02-15T06:59:55Z +13197,489,2,9231,0.99,2005-07-30T13:42:15Z,2020-02-15T06:59:55Z +13198,489,1,9459,4.99,2005-07-30T22:24:46Z,2020-02-15T06:59:55Z +13199,489,2,11119,9.99,2005-08-02T08:44:44Z,2020-02-15T06:59:55Z +13200,489,1,11705,4.99,2005-08-17T07:22:25Z,2020-02-15T06:59:55Z +13201,489,1,12496,6.99,2005-08-18T12:58:25Z,2020-02-15T06:59:55Z +13202,489,2,12701,6.99,2005-08-18T20:26:47Z,2020-02-15T06:59:55Z +13203,489,1,13462,4.99,2005-08-20T00:49:19Z,2020-02-15T06:59:55Z +13204,489,2,14095,5.99,2005-08-21T00:25:45Z,2020-02-15T06:59:55Z +13205,489,2,14328,2.99,2005-08-21T08:18:20Z,2020-02-15T06:59:55Z +13206,489,2,14424,6.99,2005-08-21T11:24:11Z,2020-02-15T06:59:55Z +13207,489,1,15205,0.99,2005-08-22T16:32:23Z,2020-02-15T06:59:55Z +13208,489,1,15981,4.99,2005-08-23T20:12:17Z,2020-02-15T06:59:55Z +13209,490,2,585,6.99,2005-05-28T11:50:45Z,2020-02-15T06:59:55Z +13210,490,2,676,4.99,2005-05-28T22:27:51Z,2020-02-15T06:59:55Z +13211,490,1,1665,3.99,2005-06-16T10:16:02Z,2020-02-15T06:59:55Z +13212,490,1,3476,4.99,2005-07-05T23:02:37Z,2020-02-15T06:59:55Z +13213,490,2,3932,4.99,2005-07-06T21:06:17Z,2020-02-15T06:59:55Z +13214,490,1,4083,2.99,2005-07-07T05:13:15Z,2020-02-15T06:59:55Z +13215,490,1,4906,5.99,2005-07-08T20:59:13Z,2020-02-15T06:59:55Z +13216,490,2,5173,7.99,2005-07-09T09:31:44Z,2020-02-15T06:59:55Z +13217,490,2,5489,0.99,2005-07-10T00:07:03Z,2020-02-15T06:59:55Z +13218,490,1,5654,4.99,2005-07-10T07:24:46Z,2020-02-15T06:59:55Z +13219,490,2,6230,2.99,2005-07-11T14:02:19Z,2020-02-15T06:59:55Z +13220,490,1,6803,4.99,2005-07-12T17:21:49Z,2020-02-15T06:59:55Z +13221,490,2,6888,2.99,2005-07-12T21:01:11Z,2020-02-15T06:59:55Z +13222,490,2,6923,8.99,2005-07-12T22:40:48Z,2020-02-15T06:59:55Z +13223,490,1,8552,5.99,2005-07-29T11:14:02Z,2020-02-15T06:59:55Z +13224,490,2,9108,4.99,2005-07-30T08:56:36Z,2020-02-15T06:59:55Z +13225,490,1,9554,0.99,2005-07-31T02:06:49Z,2020-02-15T06:59:55Z +13226,490,1,10786,7.99,2005-08-01T21:29:34Z,2020-02-15T06:59:55Z +13227,490,1,10955,7.99,2005-08-02T03:32:34Z,2020-02-15T06:59:55Z +13228,490,2,11965,2.99,2005-08-17T17:39:45Z,2020-02-15T06:59:55Z +13229,490,2,14557,4.99,2005-08-21T16:05:11Z,2020-02-15T06:59:55Z +13230,490,2,14761,6.99,2005-08-21T23:30:28Z,2020-02-15T06:59:55Z +13231,490,2,15276,2.99,2005-08-22T18:59:01Z,2020-02-15T06:59:55Z +13232,490,1,15448,2.99,2005-08-23T00:55:24Z,2020-02-15T06:59:55Z +13233,491,1,484,2.99,2005-05-27T23:26:45Z,2020-02-15T06:59:55Z +13234,491,2,1097,0.99,2005-05-31T13:38:42Z,2020-02-15T06:59:55Z +13235,491,2,1198,2.99,2005-06-15T01:48:58Z,2020-02-15T06:59:55Z +13236,491,1,1371,4.99,2005-06-15T14:38:15Z,2020-02-15T06:59:55Z +13237,491,2,2026,4.99,2005-06-17T13:05:38Z,2020-02-15T06:59:55Z +13238,491,1,2259,4.99,2005-06-18T05:37:45Z,2020-02-15T06:59:55Z +13239,491,2,2391,4.99,2005-06-18T15:33:30Z,2020-02-15T06:59:55Z +13240,491,2,3031,4.99,2005-06-20T11:52:49Z,2020-02-15T06:59:55Z +13241,491,1,3440,3.99,2005-06-21T19:58:18Z,2020-02-15T06:59:55Z +13242,491,1,4046,8.99,2005-07-07T03:27:59Z,2020-02-15T06:59:55Z +13243,491,1,4392,2.99,2005-07-07T21:11:02Z,2020-02-15T06:59:55Z +13244,491,2,5134,6.99,2005-07-09T07:53:12Z,2020-02-15T06:59:55Z +13245,491,1,5889,4.99,2005-07-10T19:54:41Z,2020-02-15T06:59:55Z +13246,491,2,6171,2.99,2005-07-11T10:29:35Z,2020-02-15T06:59:55Z +13247,491,2,7019,3.99,2005-07-27T02:20:26Z,2020-02-15T06:59:55Z +13248,491,2,7281,6.99,2005-07-27T11:59:20Z,2020-02-15T06:59:55Z +13249,491,2,7688,7.99,2005-07-28T03:20:47Z,2020-02-15T06:59:55Z +13250,491,1,7871,6.99,2005-07-28T10:16:37Z,2020-02-15T06:59:55Z +13251,491,2,10036,2.99,2005-07-31T18:47:20Z,2020-02-15T06:59:55Z +13252,491,2,10178,4.99,2005-07-31T23:43:04Z,2020-02-15T06:59:55Z +13253,491,2,10974,6.99,2005-08-02T04:10:52Z,2020-02-15T06:59:55Z +13254,491,1,11048,4.99,2005-08-02T06:15:07Z,2020-02-15T06:59:55Z +13255,491,1,11590,0.99,2005-08-17T02:28:33Z,2020-02-15T06:59:55Z +13256,491,1,11840,4.99,2005-08-17T13:09:01Z,2020-02-15T06:59:55Z +13257,491,2,13607,2.99,2005-08-20T06:08:42Z,2020-02-15T06:59:55Z +13258,491,1,14780,0.99,2005-08-22T00:06:33Z,2020-02-15T06:59:55Z +13259,491,2,15685,5.99,2005-08-23T09:41:28Z,2020-02-15T06:59:55Z +13260,492,1,84,2.99,2005-05-25T12:36:30Z,2020-02-15T06:59:55Z +13261,492,2,1691,1.99,2005-06-16T12:24:28Z,2020-02-15T06:59:55Z +13262,492,2,1855,4.99,2005-06-17T00:54:58Z,2020-02-15T06:59:55Z +13263,492,2,1956,4.99,2005-06-17T08:43:32Z,2020-02-15T06:59:55Z +13264,492,1,3298,9.99,2005-06-21T07:09:44Z,2020-02-15T06:59:55Z +13265,492,2,4128,8.99,2005-07-07T07:35:25Z,2020-02-15T06:59:55Z +13266,492,1,4142,2.99,2005-07-07T08:19:45Z,2020-02-15T06:59:55Z +13267,492,2,4258,6.99,2005-07-07T14:20:59Z,2020-02-15T06:59:55Z +13268,492,2,5325,0.99,2005-07-09T16:35:47Z,2020-02-15T06:59:55Z +13269,492,1,5609,0.99,2005-07-10T05:09:46Z,2020-02-15T06:59:55Z +13270,492,1,6257,2.99,2005-07-11T15:23:46Z,2020-02-15T06:59:55Z +13271,492,2,7203,2.99,2005-07-27T09:01:23Z,2020-02-15T06:59:55Z +13272,492,2,12971,4.99,2005-08-19T06:42:43Z,2020-02-15T06:59:55Z +13273,492,1,14255,2.99,2005-08-21T05:51:37Z,2020-02-15T06:59:55Z +13274,492,2,15822,0.99,2005-08-23T15:05:59Z,2020-02-15T06:59:55Z +13275,492,1,15958,4.99,2005-08-23T19:22:36Z,2020-02-15T06:59:55Z +13276,493,1,543,7.99,2005-05-28T06:43:34Z,2020-02-15T06:59:55Z +13277,493,2,2109,3.99,2005-06-17T19:41:42Z,2020-02-15T06:59:55Z +13278,493,1,2365,4.99,2005-06-18T13:45:34Z,2020-02-15T06:59:55Z +13279,493,1,2579,0.99,2005-06-19T04:40:44Z,2020-02-15T06:59:55Z +13280,493,1,2864,2.99,2005-06-20T00:00:52Z,2020-02-15T06:59:55Z +13281,493,2,3586,4.99,2005-07-06T04:24:42Z,2020-02-15T06:59:55Z +13282,493,1,3655,5.99,2005-07-06T07:52:54Z,2020-02-15T06:59:55Z +13283,493,1,6549,7.99,2005-07-12T05:02:01Z,2020-02-15T06:59:55Z +13284,493,1,6552,4.99,2005-07-12T05:05:06Z,2020-02-15T06:59:55Z +13285,493,1,7026,2.99,2005-07-27T02:48:58Z,2020-02-15T06:59:55Z +13286,493,2,7043,7.99,2005-07-27T03:24:23Z,2020-02-15T06:59:55Z +13287,493,1,8298,4.99,2005-07-29T02:47:36Z,2020-02-15T06:59:55Z +13288,493,1,8616,2.99,2005-07-29T13:39:09Z,2020-02-15T06:59:55Z +13289,493,1,10777,6.99,2005-08-01T21:03:50Z,2020-02-15T06:59:55Z +13290,493,2,10885,7.99,2005-08-02T00:51:37Z,2020-02-15T06:59:55Z +13291,493,1,13638,2.99,2005-08-20T07:21:15Z,2020-02-15T06:59:55Z +13292,493,2,13675,6.99,2005-08-20T08:32:51Z,2020-02-15T06:59:55Z +13293,493,1,14117,4.99,2005-08-21T01:11:59Z,2020-02-15T06:59:55Z +13294,493,2,15177,4.99,2005-08-22T15:34:49Z,2020-02-15T06:59:55Z +13295,493,1,15355,0.99,2005-08-22T21:19:24Z,2020-02-15T06:59:55Z +13296,493,1,15490,6.99,2005-08-23T02:08:18Z,2020-02-15T06:59:55Z +13297,493,2,15878,2.99,2005-08-23T16:34:31Z,2020-02-15T06:59:55Z +13298,493,2,14160,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13299,494,1,608,4.99,2005-05-28T15:03:44Z,2020-02-15T06:59:55Z +13300,494,1,1683,2.99,2005-06-16T11:54:55Z,2020-02-15T06:59:55Z +13301,494,1,3511,0.99,2005-07-06T00:42:01Z,2020-02-15T06:59:55Z +13302,494,2,3803,2.99,2005-07-06T15:06:55Z,2020-02-15T06:59:55Z +13303,494,2,3913,0.99,2005-07-06T20:11:00Z,2020-02-15T06:59:55Z +13304,494,1,4086,3.99,2005-07-07T05:26:06Z,2020-02-15T06:59:55Z +13305,494,2,4397,5.99,2005-07-07T21:14:54Z,2020-02-15T06:59:55Z +13306,494,2,4551,7.99,2005-07-08T04:36:21Z,2020-02-15T06:59:55Z +13307,494,2,5083,4.99,2005-07-09T05:30:32Z,2020-02-15T06:59:55Z +13308,494,1,5180,2.99,2005-07-09T10:06:53Z,2020-02-15T06:59:55Z +13309,494,2,7258,3.99,2005-07-27T11:05:54Z,2020-02-15T06:59:55Z +13310,494,2,7546,8.99,2005-07-27T21:50:09Z,2020-02-15T06:59:55Z +13311,494,2,7737,1.99,2005-07-28T05:15:03Z,2020-02-15T06:59:55Z +13312,494,2,8333,2.99,2005-07-29T04:16:40Z,2020-02-15T06:59:55Z +13313,494,2,8895,2.99,2005-07-30T00:49:17Z,2020-02-15T06:59:55Z +13314,494,1,8934,4.99,2005-07-30T02:37:05Z,2020-02-15T06:59:55Z +13315,494,2,9012,4.99,2005-07-30T05:18:57Z,2020-02-15T06:59:55Z +13316,494,2,9510,7.99,2005-07-31T00:24:17Z,2020-02-15T06:59:55Z +13317,494,1,9799,2.99,2005-07-31T10:58:32Z,2020-02-15T06:59:55Z +13318,494,2,9943,7.99,2005-07-31T15:37:29Z,2020-02-15T06:59:55Z +13319,494,1,10403,0.99,2005-08-01T07:30:45Z,2020-02-15T06:59:55Z +13320,494,1,10623,2.99,2005-08-01T15:22:38Z,2020-02-15T06:59:55Z +13321,494,2,11152,3.99,2005-08-02T09:53:36Z,2020-02-15T06:59:55Z +13322,494,1,11987,5.99,2005-08-17T18:21:59Z,2020-02-15T06:59:55Z +13323,494,2,13094,0.99,2005-08-19T10:47:58Z,2020-02-15T06:59:55Z +13324,494,2,13301,3.99,2005-08-19T18:53:15Z,2020-02-15T06:59:55Z +13325,494,2,14634,5.99,2005-08-21T18:51:28Z,2020-02-15T06:59:55Z +13326,494,1,14832,4.99,2005-08-22T01:43:29Z,2020-02-15T06:59:55Z +13327,494,1,15086,6.99,2005-08-22T11:21:08Z,2020-02-15T06:59:55Z +13328,494,2,15156,9.99,2005-08-22T14:29:11Z,2020-02-15T06:59:55Z +13329,494,2,15291,4.99,2005-08-22T19:28:04Z,2020-02-15T06:59:55Z +13330,495,2,623,4.99,2005-05-28T16:01:28Z,2020-02-15T06:59:55Z +13331,495,2,741,4.99,2005-05-29T08:35:49Z,2020-02-15T06:59:55Z +13332,495,2,2074,2.99,2005-06-17T16:40:03Z,2020-02-15T06:59:55Z +13333,495,1,2349,4.99,2005-06-18T12:25:14Z,2020-02-15T06:59:55Z +13334,495,1,2549,7.99,2005-06-19T02:46:39Z,2020-02-15T06:59:55Z +13335,495,1,3129,3.99,2005-06-20T18:57:48Z,2020-02-15T06:59:55Z +13336,495,2,3966,2.99,2005-07-06T22:38:49Z,2020-02-15T06:59:55Z +13337,495,2,5484,7.99,2005-07-09T23:54:37Z,2020-02-15T06:59:55Z +13338,495,2,6426,7.99,2005-07-11T23:56:38Z,2020-02-15T06:59:55Z +13339,495,2,7191,2.99,2005-07-27T08:36:15Z,2020-02-15T06:59:55Z +13340,495,1,8151,0.99,2005-07-28T20:50:52Z,2020-02-15T06:59:55Z +13341,495,1,8383,1.99,2005-07-29T05:36:47Z,2020-02-15T06:59:55Z +13342,495,1,8451,5.99,2005-07-29T07:44:56Z,2020-02-15T06:59:55Z +13343,495,1,8672,5.99,2005-07-29T15:49:48Z,2020-02-15T06:59:55Z +13344,495,1,9387,9.99,2005-07-30T19:27:05Z,2020-02-15T06:59:55Z +13345,495,1,9741,4.99,2005-07-31T09:09:22Z,2020-02-15T06:59:55Z +13346,495,2,10065,4.99,2005-07-31T19:27:34Z,2020-02-15T06:59:55Z +13347,495,2,10643,5.99,2005-08-01T15:48:33Z,2020-02-15T06:59:55Z +13348,495,1,10783,4.99,2005-08-01T21:23:37Z,2020-02-15T06:59:55Z +13349,495,1,12782,5.99,2005-08-18T23:56:23Z,2020-02-15T06:59:55Z +13350,495,2,12837,0.99,2005-08-19T01:51:09Z,2020-02-15T06:59:55Z +13351,495,2,13205,3.99,2005-08-19T15:05:26Z,2020-02-15T06:59:55Z +13352,495,2,13445,2.99,2005-08-20T00:05:33Z,2020-02-15T06:59:55Z +13353,495,2,13818,4.99,2005-08-20T13:20:09Z,2020-02-15T06:59:55Z +13354,495,1,15984,2.99,2005-08-23T20:16:27Z,2020-02-15T06:59:55Z +13355,495,2,13753,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13356,496,2,322,4.99,2005-05-27T00:47:35Z,2020-02-15T06:59:55Z +13357,496,2,966,0.99,2005-05-30T19:00:37Z,2020-02-15T06:59:55Z +13358,496,1,2567,2.99,2005-06-19T04:04:46Z,2020-02-15T06:59:55Z +13359,496,2,3569,3.99,2005-07-06T03:17:23Z,2020-02-15T06:59:55Z +13360,496,1,4070,2.99,2005-07-07T04:37:09Z,2020-02-15T06:59:55Z +13361,496,1,4261,4.99,2005-07-07T14:23:56Z,2020-02-15T06:59:55Z +13362,496,1,4269,0.99,2005-07-07T14:38:33Z,2020-02-15T06:59:55Z +13363,496,1,5559,5.99,2005-07-10T03:13:07Z,2020-02-15T06:59:55Z +13364,496,2,5949,4.99,2005-07-10T23:13:00Z,2020-02-15T06:59:55Z +13365,496,1,7133,2.99,2005-07-27T06:29:23Z,2020-02-15T06:59:55Z +13366,496,2,8221,2.99,2005-07-28T23:47:19Z,2020-02-15T06:59:55Z +13367,496,1,11060,7.99,2005-08-02T06:48:18Z,2020-02-15T06:59:55Z +13368,496,2,11448,4.99,2005-08-02T20:44:33Z,2020-02-15T06:59:55Z +13369,496,1,11893,3.99,2005-08-17T15:13:29Z,2020-02-15T06:59:55Z +13370,496,2,12605,4.99,2005-08-18T16:59:37Z,2020-02-15T06:59:55Z +13371,496,1,13569,5.99,2005-08-20T05:02:59Z,2020-02-15T06:59:55Z +13372,496,2,14013,6.99,2005-08-20T20:42:50Z,2020-02-15T06:59:55Z +13373,496,1,14332,7.99,2005-08-21T08:30:43Z,2020-02-15T06:59:55Z +13374,496,1,14348,0.99,2005-08-21T08:54:26Z,2020-02-15T06:59:55Z +13375,496,2,15750,2.99,2005-08-23T12:36:05Z,2020-02-15T06:59:55Z +13376,496,1,13182,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13377,497,1,1100,7.99,2005-05-31T14:03:21Z,2020-02-15T06:59:55Z +13378,497,2,2180,8.99,2005-06-18T00:47:43Z,2020-02-15T06:59:55Z +13379,497,1,2298,5.99,2005-06-18T08:18:29Z,2020-02-15T06:59:55Z +13380,497,1,2406,2.99,2005-06-18T16:39:37Z,2020-02-15T06:59:55Z +13381,497,2,2818,4.99,2005-06-19T20:05:52Z,2020-02-15T06:59:55Z +13382,497,1,3696,2.99,2005-07-06T10:04:55Z,2020-02-15T06:59:55Z +13383,497,2,4218,7.99,2005-07-07T12:10:24Z,2020-02-15T06:59:55Z +13384,497,1,4516,4.99,2005-07-08T02:43:41Z,2020-02-15T06:59:55Z +13385,497,1,4578,0.99,2005-07-08T06:00:17Z,2020-02-15T06:59:55Z +13386,497,2,4795,0.99,2005-07-08T16:32:54Z,2020-02-15T06:59:55Z +13387,497,1,5030,4.99,2005-07-09T02:35:43Z,2020-02-15T06:59:55Z +13388,497,1,5239,4.99,2005-07-09T13:12:35Z,2020-02-15T06:59:55Z +13389,497,2,7603,2.99,2005-07-27T23:54:44Z,2020-02-15T06:59:55Z +13390,497,2,8011,2.99,2005-07-28T15:26:39Z,2020-02-15T06:59:55Z +13391,497,1,8150,6.99,2005-07-28T20:50:41Z,2020-02-15T06:59:55Z +13392,497,2,8813,6.99,2005-07-29T21:47:55Z,2020-02-15T06:59:55Z +13393,497,2,8867,4.99,2005-07-30T00:02:18Z,2020-02-15T06:59:55Z +13394,497,1,9273,9.99,2005-07-30T15:05:36Z,2020-02-15T06:59:55Z +13395,497,2,9850,4.99,2005-07-31T12:46:52Z,2020-02-15T06:59:55Z +13396,497,2,10760,7.99,2005-08-01T20:25:20Z,2020-02-15T06:59:55Z +13397,497,1,12123,0.99,2005-08-17T23:22:18Z,2020-02-15T06:59:55Z +13398,497,1,13159,4.99,2005-08-19T13:19:59Z,2020-02-15T06:59:55Z +13399,497,1,13289,2.99,2005-08-19T18:31:30Z,2020-02-15T06:59:55Z +13400,497,2,14134,0.99,2005-08-21T01:45:54Z,2020-02-15T06:59:55Z +13401,497,1,15362,5.99,2005-08-22T21:40:20Z,2020-02-15T06:59:55Z +13402,497,2,15633,0.99,2005-08-23T07:31:10Z,2020-02-15T06:59:55Z +13403,497,1,15919,0.99,2005-08-23T18:01:31Z,2020-02-15T06:59:55Z +13404,497,1,12698,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13405,498,2,49,2.99,2005-05-25T06:39:35Z,2020-02-15T06:59:55Z +13406,498,1,429,8.99,2005-05-27T16:21:26Z,2020-02-15T06:59:55Z +13407,498,2,718,2.99,2005-05-29T04:52:23Z,2020-02-15T06:59:55Z +13408,498,1,1253,6.99,2005-06-15T06:06:33Z,2020-02-15T06:59:55Z +13409,498,1,1782,2.99,2005-06-16T19:21:12Z,2020-02-15T06:59:55Z +13410,498,1,2344,2.99,2005-06-18T12:01:47Z,2020-02-15T06:59:55Z +13411,498,1,2449,4.99,2005-06-18T19:18:36Z,2020-02-15T06:59:55Z +13412,498,1,3098,0.99,2005-06-20T16:37:01Z,2020-02-15T06:59:55Z +13413,498,2,3360,0.99,2005-06-21T12:12:41Z,2020-02-15T06:59:55Z +13414,498,2,3828,0.99,2005-07-06T15:57:30Z,2020-02-15T06:59:55Z +13415,498,2,3856,2.99,2005-07-06T17:04:46Z,2020-02-15T06:59:55Z +13416,498,1,4311,4.99,2005-07-07T17:31:14Z,2020-02-15T06:59:55Z +13417,498,2,4972,2.99,2005-07-08T23:56:09Z,2020-02-15T06:59:55Z +13418,498,1,5286,2.99,2005-07-09T15:11:41Z,2020-02-15T06:59:55Z +13419,498,2,5884,0.99,2005-07-10T19:31:38Z,2020-02-15T06:59:55Z +13420,498,1,6058,2.99,2005-07-11T04:03:51Z,2020-02-15T06:59:55Z +13421,498,1,6088,1.99,2005-07-11T05:40:35Z,2020-02-15T06:59:55Z +13422,498,1,7285,4.99,2005-07-27T12:14:06Z,2020-02-15T06:59:55Z +13423,498,1,7286,6.99,2005-07-27T12:23:49Z,2020-02-15T06:59:55Z +13424,498,1,7341,4.99,2005-07-27T14:23:55Z,2020-02-15T06:59:55Z +13425,498,2,8020,4.99,2005-07-28T15:43:32Z,2020-02-15T06:59:55Z +13426,498,1,8229,2.99,2005-07-29T00:09:08Z,2020-02-15T06:59:55Z +13427,498,2,9021,0.99,2005-07-30T05:34:24Z,2020-02-15T06:59:55Z +13428,498,2,9689,4.99,2005-07-31T07:00:08Z,2020-02-15T06:59:55Z +13429,498,1,10225,0.99,2005-08-01T01:38:40Z,2020-02-15T06:59:55Z +13430,498,1,11455,6.99,2005-08-02T21:07:06Z,2020-02-15T06:59:55Z +13431,498,1,12893,2.99,2005-08-19T03:46:43Z,2020-02-15T06:59:55Z +13432,499,2,89,2.99,2005-05-25T14:28:29Z,2020-02-15T06:59:55Z +13433,499,1,1355,2.99,2005-06-15T13:13:59Z,2020-02-15T06:59:55Z +13434,499,2,1526,4.99,2005-06-16T00:27:51Z,2020-02-15T06:59:55Z +13435,499,2,1830,4.99,2005-06-16T22:18:43Z,2020-02-15T06:59:55Z +13436,499,2,3241,1.99,2005-06-21T02:54:32Z,2020-02-15T06:59:55Z +13437,499,1,3794,4.99,2005-07-06T14:35:26Z,2020-02-15T06:59:55Z +13438,499,1,5022,2.99,2005-07-09T02:10:54Z,2020-02-15T06:59:55Z +13439,499,2,5392,2.99,2005-07-09T19:32:30Z,2020-02-15T06:59:55Z +13440,499,2,5427,3.99,2005-07-09T21:12:26Z,2020-02-15T06:59:55Z +13441,499,1,5956,4.99,2005-07-10T23:23:08Z,2020-02-15T06:59:55Z +13442,499,2,6723,4.99,2005-07-12T13:44:57Z,2020-02-15T06:59:55Z +13443,499,1,7800,0.99,2005-07-28T07:50:59Z,2020-02-15T06:59:55Z +13444,499,1,7831,0.99,2005-07-28T08:44:21Z,2020-02-15T06:59:55Z +13445,499,1,7898,6.99,2005-07-28T11:08:22Z,2020-02-15T06:59:55Z +13446,499,2,8130,4.99,2005-07-28T19:48:15Z,2020-02-15T06:59:55Z +13447,499,1,8770,3.99,2005-07-29T19:53:50Z,2020-02-15T06:59:55Z +13448,499,1,9588,0.99,2005-07-31T03:13:13Z,2020-02-15T06:59:55Z +13449,499,2,10333,0.99,2005-08-01T04:58:32Z,2020-02-15T06:59:55Z +13450,499,2,10497,2.99,2005-08-01T10:55:59Z,2020-02-15T06:59:55Z +13451,499,1,11513,7.99,2005-08-16T23:51:33Z,2020-02-15T06:59:55Z +13452,499,2,11606,0.99,2005-08-17T03:32:43Z,2020-02-15T06:59:55Z +13453,499,2,11978,4.99,2005-08-17T18:02:10Z,2020-02-15T06:59:55Z +13454,499,1,12004,8.99,2005-08-17T18:56:53Z,2020-02-15T06:59:55Z +13455,499,1,12354,7.99,2005-08-18T07:34:07Z,2020-02-15T06:59:55Z +13456,499,1,12436,3.99,2005-08-18T10:41:05Z,2020-02-15T06:59:55Z +13457,499,1,12587,1.99,2005-08-18T16:03:13Z,2020-02-15T06:59:55Z +13458,499,2,12947,4.99,2005-08-19T05:54:21Z,2020-02-15T06:59:55Z +13459,499,2,13822,3.99,2005-08-20T13:39:28Z,2020-02-15T06:59:55Z +13460,499,1,14858,3.99,2005-08-22T02:46:18Z,2020-02-15T06:59:55Z +13461,499,1,15587,7.99,2005-08-23T06:00:28Z,2020-02-15T06:59:55Z +13462,500,1,112,8.99,2005-05-25T18:57:24Z,2020-02-15T06:59:55Z +13463,500,1,389,8.99,2005-05-27T10:45:41Z,2020-02-15T06:59:55Z +13464,500,1,610,0.99,2005-05-28T15:15:25Z,2020-02-15T06:59:55Z +13465,500,1,1375,5.99,2005-06-15T14:54:56Z,2020-02-15T06:59:55Z +13466,500,2,1388,5.99,2005-06-15T15:48:41Z,2020-02-15T06:59:55Z +13467,500,2,2189,3.99,2005-06-18T01:20:26Z,2020-02-15T06:59:55Z +13468,500,2,2526,6.99,2005-06-19T01:03:07Z,2020-02-15T06:59:55Z +13469,500,1,2996,2.99,2005-06-20T09:20:29Z,2020-02-15T06:59:55Z +13470,500,2,3926,4.99,2005-07-06T20:42:35Z,2020-02-15T06:59:55Z +13471,500,1,4561,0.99,2005-07-08T05:02:43Z,2020-02-15T06:59:55Z +13472,500,2,4790,4.99,2005-07-08T16:25:27Z,2020-02-15T06:59:55Z +13473,500,2,6018,4.99,2005-07-11T02:06:36Z,2020-02-15T06:59:55Z +13474,500,2,6187,2.99,2005-07-11T11:28:51Z,2020-02-15T06:59:55Z +13475,500,2,6801,3.99,2005-07-12T17:09:08Z,2020-02-15T06:59:55Z +13476,500,1,7857,0.99,2005-07-28T09:49:40Z,2020-02-15T06:59:55Z +13477,500,1,7925,2.99,2005-07-28T12:10:02Z,2020-02-15T06:59:55Z +13478,500,1,8538,6.99,2005-07-29T10:45:17Z,2020-02-15T06:59:55Z +13479,500,1,8925,0.99,2005-07-30T02:09:14Z,2020-02-15T06:59:55Z +13480,500,2,9290,3.99,2005-07-30T15:59:08Z,2020-02-15T06:59:55Z +13481,500,1,10947,6.99,2005-08-02T03:23:17Z,2020-02-15T06:59:55Z +13482,500,2,11218,1.99,2005-08-02T12:29:12Z,2020-02-15T06:59:55Z +13483,500,1,12639,2.99,2005-08-18T18:13:05Z,2020-02-15T06:59:55Z +13484,500,2,12813,2.99,2005-08-19T00:54:22Z,2020-02-15T06:59:55Z +13485,500,2,13628,4.99,2005-08-20T07:03:53Z,2020-02-15T06:59:55Z +13486,500,1,14407,0.99,2005-08-21T10:46:51Z,2020-02-15T06:59:55Z +13487,500,1,14964,4.99,2005-08-22T06:39:24Z,2020-02-15T06:59:55Z +13488,500,1,15584,2.99,2005-08-23T05:49:21Z,2020-02-15T06:59:55Z +13489,500,1,15853,2.99,2005-08-23T15:54:20Z,2020-02-15T06:59:55Z +13490,501,1,493,0.99,2005-05-28T00:34:11Z,2020-02-15T06:59:55Z +13491,501,1,605,1.99,2005-05-28T14:39:10Z,2020-02-15T06:59:55Z +13492,501,2,3222,5.99,2005-06-21T01:50:29Z,2020-02-15T06:59:55Z +13493,501,1,3412,7.99,2005-06-21T16:44:31Z,2020-02-15T06:59:55Z +13494,501,2,3541,6.99,2005-07-06T01:50:11Z,2020-02-15T06:59:55Z +13495,501,2,3723,6.99,2005-07-06T11:12:02Z,2020-02-15T06:59:55Z +13496,501,2,4769,2.99,2005-07-08T15:29:16Z,2020-02-15T06:59:55Z +13497,501,2,5520,1.99,2005-07-10T01:30:41Z,2020-02-15T06:59:55Z +13498,501,2,6095,7.99,2005-07-11T06:06:41Z,2020-02-15T06:59:55Z +13499,501,1,7456,0.99,2005-07-27T18:34:53Z,2020-02-15T06:59:55Z +13500,501,1,8021,2.99,2005-07-28T15:45:24Z,2020-02-15T06:59:55Z +13501,501,2,8529,2.99,2005-07-29T10:24:31Z,2020-02-15T06:59:55Z +13502,501,1,9359,2.99,2005-07-30T18:39:28Z,2020-02-15T06:59:55Z +13503,501,1,10817,4.99,2005-08-01T22:51:08Z,2020-02-15T06:59:55Z +13504,501,2,11393,4.99,2005-08-02T18:44:29Z,2020-02-15T06:59:55Z +13505,501,1,11640,1.99,2005-08-17T04:44:33Z,2020-02-15T06:59:55Z +13506,501,2,11799,6.99,2005-08-17T11:25:25Z,2020-02-15T06:59:55Z +13507,501,1,12914,4.99,2005-08-19T04:25:59Z,2020-02-15T06:59:55Z +13508,501,2,13889,0.99,2005-08-20T15:40:06Z,2020-02-15T06:59:55Z +13509,501,1,15239,4.99,2005-08-22T17:46:17Z,2020-02-15T06:59:55Z +13510,501,1,15699,5.99,2005-08-23T10:20:35Z,2020-02-15T06:59:55Z +13511,502,2,258,2.99,2005-05-26T15:28:14Z,2020-02-15T06:59:55Z +13512,502,1,861,0.99,2005-05-30T02:48:32Z,2020-02-15T06:59:55Z +13513,502,1,893,2.99,2005-05-30T08:06:59Z,2020-02-15T06:59:55Z +13514,502,2,965,0.99,2005-05-30T19:00:14Z,2020-02-15T06:59:55Z +13515,502,2,1696,7.99,2005-06-16T12:50:01Z,2020-02-15T06:59:55Z +13516,502,2,2420,0.99,2005-06-18T17:22:28Z,2020-02-15T06:59:55Z +13517,502,1,2911,0.99,2005-06-20T03:32:37Z,2020-02-15T06:59:55Z +13518,502,2,3614,2.99,2005-07-06T05:46:05Z,2020-02-15T06:59:55Z +13519,502,1,4606,2.99,2005-07-08T07:05:50Z,2020-02-15T06:59:55Z +13520,502,2,5368,5.99,2005-07-09T18:41:59Z,2020-02-15T06:59:55Z +13521,502,2,5662,2.99,2005-07-10T07:59:24Z,2020-02-15T06:59:55Z +13522,502,2,6414,7.99,2005-07-11T23:26:13Z,2020-02-15T06:59:55Z +13523,502,1,6760,8.99,2005-07-12T15:16:00Z,2020-02-15T06:59:55Z +13524,502,2,6828,2.99,2005-07-12T18:38:51Z,2020-02-15T06:59:55Z +13525,502,2,6924,8.99,2005-07-26T22:51:53Z,2020-02-15T06:59:55Z +13526,502,2,7213,3.99,2005-07-27T09:22:29Z,2020-02-15T06:59:55Z +13527,502,1,7255,4.99,2005-07-27T10:49:54Z,2020-02-15T06:59:55Z +13528,502,1,7757,4.99,2005-07-28T06:23:00Z,2020-02-15T06:59:55Z +13529,502,1,7884,4.99,2005-07-28T10:37:24Z,2020-02-15T06:59:55Z +13530,502,2,8034,4.99,2005-07-28T16:20:26Z,2020-02-15T06:59:55Z +13531,502,2,9232,0.99,2005-07-30T13:43:00Z,2020-02-15T06:59:55Z +13532,502,1,9599,4.99,2005-07-31T03:32:06Z,2020-02-15T06:59:55Z +13533,502,2,10390,4.99,2005-08-01T06:46:48Z,2020-02-15T06:59:55Z +13534,502,1,10938,0.99,2005-08-02T03:05:22Z,2020-02-15T06:59:55Z +13535,502,2,11036,4.99,2005-08-02T05:56:29Z,2020-02-15T06:59:55Z +13536,502,1,11301,0.99,2005-08-02T15:37:59Z,2020-02-15T06:59:55Z +13537,502,1,11317,4.99,2005-08-02T16:08:52Z,2020-02-15T06:59:55Z +13538,502,1,11435,0.99,2005-08-02T20:14:23Z,2020-02-15T06:59:55Z +13539,502,1,11620,0.99,2005-08-17T04:06:22Z,2020-02-15T06:59:55Z +13540,502,1,12762,4.99,2005-08-18T23:06:54Z,2020-02-15T06:59:55Z +13541,502,1,13052,9.99,2005-08-19T09:31:42Z,2020-02-15T06:59:55Z +13542,502,1,14411,4.99,2005-08-21T10:54:57Z,2020-02-15T06:59:55Z +13543,502,1,15486,3.99,2005-08-23T02:05:20Z,2020-02-15T06:59:55Z +13544,502,1,16034,3.99,2005-08-23T22:06:34Z,2020-02-15T06:59:55Z +13545,503,2,109,1.99,2005-05-25T18:40:20Z,2020-02-15T06:59:55Z +13546,503,1,353,5.99,2005-05-27T06:03:39Z,2020-02-15T06:59:55Z +13547,503,1,631,2.99,2005-05-28T17:36:32Z,2020-02-15T06:59:55Z +13548,503,1,1074,4.99,2005-05-31T10:04:42Z,2020-02-15T06:59:55Z +13549,503,2,2108,4.99,2005-06-17T19:35:26Z,2020-02-15T06:59:55Z +13550,503,1,2225,2.99,2005-06-18T03:35:40Z,2020-02-15T06:59:55Z +13551,503,2,3430,0.99,2005-06-21T18:46:08Z,2020-02-15T06:59:55Z +13552,503,2,3935,6.99,2005-07-06T21:08:29Z,2020-02-15T06:59:55Z +13553,503,2,4570,2.99,2005-07-08T05:33:59Z,2020-02-15T06:59:55Z +13554,503,2,5465,2.99,2005-07-09T23:01:13Z,2020-02-15T06:59:55Z +13555,503,1,5925,6.99,2005-07-10T21:41:27Z,2020-02-15T06:59:55Z +13556,503,1,6166,4.99,2005-07-11T10:19:05Z,2020-02-15T06:59:55Z +13557,503,1,6529,2.99,2005-07-12T04:31:04Z,2020-02-15T06:59:55Z +13558,503,2,6950,4.99,2005-07-26T23:45:33Z,2020-02-15T06:59:55Z +13559,503,1,8178,2.99,2005-07-28T21:54:31Z,2020-02-15T06:59:55Z +13560,503,2,9725,0.99,2005-07-31T08:35:18Z,2020-02-15T06:59:55Z +13561,503,1,9974,4.99,2005-07-31T16:51:11Z,2020-02-15T06:59:55Z +13562,503,2,11075,2.99,2005-08-02T07:24:23Z,2020-02-15T06:59:55Z +13563,503,1,11161,1.99,2005-08-02T10:05:57Z,2020-02-15T06:59:55Z +13564,503,1,11858,4.99,2005-08-17T13:50:31Z,2020-02-15T06:59:55Z +13565,503,2,12370,2.99,2005-08-18T07:57:47Z,2020-02-15T06:59:55Z +13566,503,2,12783,4.99,2005-08-19T00:01:14Z,2020-02-15T06:59:55Z +13567,503,1,13332,2.99,2005-08-19T20:00:51Z,2020-02-15T06:59:55Z +13568,503,1,13551,2.99,2005-08-20T04:00:30Z,2020-02-15T06:59:55Z +13569,503,1,14823,0.99,2005-08-22T01:24:42Z,2020-02-15T06:59:55Z +13570,503,1,14913,2.99,2005-08-22T04:52:13Z,2020-02-15T06:59:55Z +13571,503,2,15056,4.99,2005-08-22T10:15:54Z,2020-02-15T06:59:55Z +13572,503,2,15077,2.99,2005-08-22T11:09:18Z,2020-02-15T06:59:55Z +13573,503,1,15588,3.99,2005-08-23T06:02:35Z,2020-02-15T06:59:55Z +13574,503,1,15692,4.99,2005-08-23T10:00:02Z,2020-02-15T06:59:55Z +13575,503,1,15726,2.99,2005-08-23T11:28:26Z,2020-02-15T06:59:55Z +13576,503,1,15797,0.99,2005-08-23T14:13:47Z,2020-02-15T06:59:55Z +13577,504,2,136,5.99,2005-05-25T22:02:30Z,2020-02-15T06:59:55Z +13578,504,2,470,4.99,2005-05-27T21:17:08Z,2020-02-15T06:59:55Z +13579,504,1,838,4.99,2005-05-30T00:27:57Z,2020-02-15T06:59:55Z +13580,504,1,2720,1.99,2005-06-19T14:51:55Z,2020-02-15T06:59:55Z +13581,504,1,2938,6.99,2005-06-20T05:17:22Z,2020-02-15T06:59:55Z +13582,504,2,3712,9.99,2005-07-06T10:47:35Z,2020-02-15T06:59:55Z +13583,504,1,3713,6.99,2005-07-06T10:49:30Z,2020-02-15T06:59:55Z +13584,504,1,4329,5.99,2005-07-07T18:04:16Z,2020-02-15T06:59:55Z +13585,504,1,4757,0.99,2005-07-08T14:36:51Z,2020-02-15T06:59:55Z +13586,504,2,5153,6.99,2005-07-09T08:35:05Z,2020-02-15T06:59:55Z +13587,504,2,7342,3.99,2005-07-27T14:25:17Z,2020-02-15T06:59:55Z +13588,504,1,7567,2.99,2005-07-27T22:38:05Z,2020-02-15T06:59:55Z +13589,504,2,7807,2.99,2005-07-28T07:58:27Z,2020-02-15T06:59:55Z +13590,504,2,7875,1.99,2005-07-28T10:23:48Z,2020-02-15T06:59:55Z +13591,504,2,7944,4.99,2005-07-28T12:51:22Z,2020-02-15T06:59:55Z +13592,504,1,8393,9.99,2005-07-29T06:02:11Z,2020-02-15T06:59:55Z +13593,504,2,10397,0.99,2005-08-01T07:11:27Z,2020-02-15T06:59:55Z +13594,504,2,10509,3.99,2005-08-01T11:25:28Z,2020-02-15T06:59:55Z +13595,504,2,11569,2.99,2005-08-17T01:31:04Z,2020-02-15T06:59:55Z +13596,504,1,12769,1.99,2005-08-18T23:26:40Z,2020-02-15T06:59:55Z +13597,504,1,13166,2.99,2005-08-19T13:36:28Z,2020-02-15T06:59:55Z +13598,504,2,13206,2.99,2005-08-19T15:05:34Z,2020-02-15T06:59:55Z +13599,504,2,13387,2.99,2005-08-19T21:46:10Z,2020-02-15T06:59:55Z +13600,504,2,13859,5.99,2005-08-20T14:53:43Z,2020-02-15T06:59:55Z +13601,504,2,15018,4.99,2005-08-22T08:52:38Z,2020-02-15T06:59:55Z +13602,504,1,15166,6.99,2005-08-22T15:05:37Z,2020-02-15T06:59:55Z +13603,504,1,15723,8.99,2005-08-23T11:17:26Z,2020-02-15T06:59:55Z +13604,504,2,16022,4.99,2005-08-23T21:44:27Z,2020-02-15T06:59:55Z +13605,505,1,159,2.99,2005-05-26T01:34:28Z,2020-02-15T06:59:55Z +13606,505,1,645,2.99,2005-05-28T19:14:09Z,2020-02-15T06:59:55Z +13607,505,2,1799,5.99,2005-06-16T20:17:20Z,2020-02-15T06:59:55Z +13608,505,2,1886,4.99,2005-06-17T03:36:02Z,2020-02-15T06:59:55Z +13609,505,1,2773,7.99,2005-06-19T18:04:18Z,2020-02-15T06:59:55Z +13610,505,1,3137,5.99,2005-06-20T19:41:28Z,2020-02-15T06:59:55Z +13611,505,2,4008,5.99,2005-07-07T00:26:43Z,2020-02-15T06:59:55Z +13612,505,1,4507,6.99,2005-07-08T02:22:45Z,2020-02-15T06:59:55Z +13613,505,2,5976,9.99,2005-07-11T00:16:35Z,2020-02-15T06:59:55Z +13614,505,2,6292,4.99,2005-07-11T17:23:33Z,2020-02-15T06:59:55Z +13615,505,1,6441,0.99,2005-07-12T00:27:08Z,2020-02-15T06:59:55Z +13616,505,1,7784,4.99,2005-07-28T07:15:32Z,2020-02-15T06:59:55Z +13617,505,2,10219,5.99,2005-08-01T01:10:33Z,2020-02-15T06:59:55Z +13618,505,1,10896,2.99,2005-08-02T01:19:33Z,2020-02-15T06:59:55Z +13619,505,1,11163,0.99,2005-08-02T10:08:40Z,2020-02-15T06:59:55Z +13620,505,1,11907,2.99,2005-08-17T15:40:47Z,2020-02-15T06:59:55Z +13621,505,2,13612,3.99,2005-08-20T06:22:08Z,2020-02-15T06:59:55Z +13622,505,1,14398,2.99,2005-08-21T10:27:21Z,2020-02-15T06:59:55Z +13623,505,1,14802,2.99,2005-08-22T00:48:23Z,2020-02-15T06:59:55Z +13624,505,1,15436,4.99,2005-08-23T00:30:26Z,2020-02-15T06:59:55Z +13625,505,2,15867,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13626,506,1,114,3.99,2005-05-25T19:12:42Z,2020-02-15T06:59:55Z +13627,506,2,387,2.99,2005-05-27T10:35:27Z,2020-02-15T06:59:55Z +13628,506,2,410,3.99,2005-05-27T14:11:22Z,2020-02-15T06:59:55Z +13629,506,1,547,8.99,2005-05-28T07:24:28Z,2020-02-15T06:59:55Z +13630,506,2,907,0.99,2005-05-30T10:37:27Z,2020-02-15T06:59:55Z +13631,506,1,1042,2.99,2005-05-31T05:53:00Z,2020-02-15T06:59:55Z +13632,506,2,1153,4.99,2005-05-31T21:36:44Z,2020-02-15T06:59:55Z +13633,506,1,1446,6.99,2005-06-15T19:13:45Z,2020-02-15T06:59:55Z +13634,506,1,1467,2.99,2005-06-15T20:47:10Z,2020-02-15T06:59:55Z +13635,506,2,1565,0.99,2005-06-16T03:13:09Z,2020-02-15T06:59:55Z +13636,506,1,2755,9.99,2005-06-19T16:56:31Z,2020-02-15T06:59:55Z +13637,506,2,2824,6.99,2005-06-19T20:31:45Z,2020-02-15T06:59:55Z +13638,506,2,4594,7.99,2005-07-08T06:40:06Z,2020-02-15T06:59:55Z +13639,506,2,4640,6.99,2005-07-08T08:59:34Z,2020-02-15T06:59:55Z +13640,506,2,4806,8.99,2005-07-08T17:01:02Z,2020-02-15T06:59:55Z +13641,506,2,5985,0.99,2005-07-11T00:51:58Z,2020-02-15T06:59:55Z +13642,506,1,6783,2.99,2005-07-12T16:27:56Z,2020-02-15T06:59:55Z +13643,506,1,7020,0.99,2005-07-27T02:24:27Z,2020-02-15T06:59:55Z +13644,506,2,8096,9.99,2005-07-28T18:32:46Z,2020-02-15T06:59:55Z +13645,506,2,8506,0.99,2005-07-29T09:23:52Z,2020-02-15T06:59:55Z +13646,506,2,9654,3.99,2005-07-31T05:57:42Z,2020-02-15T06:59:55Z +13647,506,2,9972,2.99,2005-07-31T16:42:43Z,2020-02-15T06:59:55Z +13648,506,1,10477,2.99,2005-08-01T10:04:17Z,2020-02-15T06:59:55Z +13649,506,1,10873,4.99,2005-08-02T00:30:34Z,2020-02-15T06:59:55Z +13650,506,2,11238,0.99,2005-08-02T13:25:50Z,2020-02-15T06:59:55Z +13651,506,2,11781,4.99,2005-08-17T10:37:00Z,2020-02-15T06:59:55Z +13652,506,1,12994,0.99,2005-08-19T07:26:10Z,2020-02-15T06:59:55Z +13653,506,2,13073,2.99,2005-08-19T10:05:38Z,2020-02-15T06:59:55Z +13654,506,2,13767,0.99,2005-08-20T11:43:36Z,2020-02-15T06:59:55Z +13655,506,1,14074,1.99,2005-08-20T23:16:07Z,2020-02-15T06:59:55Z +13656,506,1,14337,2.99,2005-08-21T08:34:26Z,2020-02-15T06:59:55Z +13657,506,2,14395,6.99,2005-08-21T10:24:00Z,2020-02-15T06:59:55Z +13658,506,2,15022,5.99,2005-08-22T08:55:43Z,2020-02-15T06:59:55Z +13659,506,2,15572,1.99,2005-08-23T05:28:01Z,2020-02-15T06:59:55Z +13660,506,1,15694,9.99,2005-08-23T10:02:46Z,2020-02-15T06:59:55Z +13661,507,1,52,0.99,2005-05-25T06:51:29Z,2020-02-15T06:59:55Z +13662,507,2,713,4.99,2005-05-29T04:10:17Z,2020-02-15T06:59:55Z +13663,507,2,1307,4.99,2005-06-15T10:06:15Z,2020-02-15T06:59:55Z +13664,507,1,2143,4.99,2005-06-17T21:58:13Z,2020-02-15T06:59:55Z +13665,507,2,2283,4.99,2005-06-18T06:56:06Z,2020-02-15T06:59:55Z +13666,507,1,3660,4.99,2005-07-06T08:07:29Z,2020-02-15T06:59:55Z +13667,507,1,3880,2.99,2005-07-06T18:32:49Z,2020-02-15T06:59:55Z +13668,507,2,4440,0.99,2005-07-07T23:00:58Z,2020-02-15T06:59:55Z +13669,507,2,4455,2.99,2005-07-07T23:43:46Z,2020-02-15T06:59:55Z +13670,507,2,4744,0.99,2005-07-08T13:43:57Z,2020-02-15T06:59:55Z +13671,507,2,4901,2.99,2005-07-08T20:44:51Z,2020-02-15T06:59:55Z +13672,507,1,5962,0.99,2005-07-10T23:45:22Z,2020-02-15T06:59:55Z +13673,507,1,6351,6.99,2005-07-11T20:31:44Z,2020-02-15T06:59:55Z +13674,507,1,6396,1.99,2005-07-11T22:31:08Z,2020-02-15T06:59:55Z +13675,507,1,6891,2.99,2005-07-12T21:07:35Z,2020-02-15T06:59:55Z +13676,507,2,7770,5.99,2005-07-28T06:49:35Z,2020-02-15T06:59:55Z +13677,507,1,7970,5.99,2005-07-28T13:58:38Z,2020-02-15T06:59:55Z +13678,507,2,8369,2.99,2005-07-29T05:15:42Z,2020-02-15T06:59:55Z +13679,507,2,8976,2.99,2005-07-30T04:12:32Z,2020-02-15T06:59:55Z +13680,507,1,9003,2.99,2005-07-30T05:02:52Z,2020-02-15T06:59:55Z +13681,507,2,12071,6.99,2005-08-17T21:49:14Z,2020-02-15T06:59:55Z +13682,507,2,12275,4.99,2005-08-18T04:42:02Z,2020-02-15T06:59:55Z +13683,507,1,12343,4.99,2005-08-18T07:15:13Z,2020-02-15T06:59:55Z +13684,507,2,14625,4.99,2005-08-21T18:34:21Z,2020-02-15T06:59:55Z +13685,507,1,15394,2.99,2005-08-22T23:04:21Z,2020-02-15T06:59:55Z +13686,508,1,369,2.99,2005-05-27T07:46:49Z,2020-02-15T06:59:55Z +13687,508,2,921,2.99,2005-05-30T11:53:09Z,2020-02-15T06:59:55Z +13688,508,2,1661,4.99,2005-06-16T10:12:57Z,2020-02-15T06:59:55Z +13689,508,2,5657,9.99,2005-07-10T07:33:43Z,2020-02-15T06:59:55Z +13690,508,2,5978,6.99,2005-07-11T00:16:54Z,2020-02-15T06:59:55Z +13691,508,1,6101,4.99,2005-07-11T06:50:33Z,2020-02-15T06:59:55Z +13692,508,2,6646,0.99,2005-07-12T10:41:34Z,2020-02-15T06:59:55Z +13693,508,2,6929,8.99,2005-07-26T22:59:19Z,2020-02-15T06:59:55Z +13694,508,1,7283,5.99,2005-07-27T12:02:41Z,2020-02-15T06:59:55Z +13695,508,2,7322,3.99,2005-07-27T13:37:26Z,2020-02-15T06:59:55Z +13696,508,2,7327,7.99,2005-07-27T13:53:26Z,2020-02-15T06:59:55Z +13697,508,2,7668,2.99,2005-07-28T02:41:31Z,2020-02-15T06:59:55Z +13698,508,2,7676,4.99,2005-07-28T02:55:27Z,2020-02-15T06:59:55Z +13699,508,2,8191,4.99,2005-07-28T22:47:14Z,2020-02-15T06:59:55Z +13700,508,2,9694,5.99,2005-07-31T07:13:16Z,2020-02-15T06:59:55Z +13701,508,1,9706,2.99,2005-07-31T07:43:19Z,2020-02-15T06:59:55Z +13702,508,2,10128,2.99,2005-07-31T21:40:04Z,2020-02-15T06:59:55Z +13703,508,1,10746,8.99,2005-08-01T19:58:49Z,2020-02-15T06:59:55Z +13704,508,1,11365,2.99,2005-08-02T18:00:09Z,2020-02-15T06:59:55Z +13705,508,2,11447,6.99,2005-08-02T20:36:25Z,2020-02-15T06:59:55Z +13706,508,1,13095,6.99,2005-08-19T10:48:10Z,2020-02-15T06:59:55Z +13707,508,2,13201,2.99,2005-08-19T14:56:05Z,2020-02-15T06:59:55Z +13708,508,1,15010,6.99,2005-08-22T08:30:17Z,2020-02-15T06:59:55Z +13709,508,1,15195,4.99,2005-08-22T16:08:23Z,2020-02-15T06:59:55Z +13710,508,1,14318,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13711,509,1,22,4.99,2005-05-25T02:19:23Z,2020-02-15T06:59:55Z +13712,509,1,831,8.99,2005-05-29T22:50:25Z,2020-02-15T06:59:55Z +13713,509,1,1267,2.99,2005-06-15T07:21:21Z,2020-02-15T06:59:55Z +13714,509,2,2919,4.99,2005-06-20T04:10:16Z,2020-02-15T06:59:55Z +13715,509,2,4139,1.99,2005-07-07T08:17:35Z,2020-02-15T06:59:55Z +13716,509,2,4266,4.99,2005-07-07T14:34:50Z,2020-02-15T06:59:55Z +13717,509,2,4832,2.99,2005-07-08T18:07:05Z,2020-02-15T06:59:55Z +13718,509,2,5008,2.99,2005-07-09T01:31:42Z,2020-02-15T06:59:55Z +13719,509,1,6591,5.99,2005-07-12T07:13:46Z,2020-02-15T06:59:55Z +13720,509,1,7848,6.99,2005-07-28T09:24:31Z,2020-02-15T06:59:55Z +13721,509,1,8114,8.99,2005-07-28T19:14:06Z,2020-02-15T06:59:55Z +13722,509,1,8214,5.99,2005-07-28T23:37:57Z,2020-02-15T06:59:55Z +13723,509,2,8240,0.99,2005-07-29T00:33:32Z,2020-02-15T06:59:55Z +13724,509,1,10189,4.99,2005-08-01T00:25:00Z,2020-02-15T06:59:55Z +13725,509,2,10988,5.99,2005-08-02T04:38:17Z,2020-02-15T06:59:55Z +13726,509,1,11814,6.99,2005-08-17T12:09:20Z,2020-02-15T06:59:55Z +13727,509,2,12109,4.99,2005-08-17T22:58:35Z,2020-02-15T06:59:55Z +13728,509,2,14045,4.99,2005-08-20T21:50:11Z,2020-02-15T06:59:55Z +13729,509,2,14994,5.99,2005-08-22T07:52:24Z,2020-02-15T06:59:55Z +13730,509,1,15965,2.99,2005-08-23T19:46:39Z,2020-02-15T06:59:55Z +13731,510,1,75,8.99,2005-05-25T11:13:34Z,2020-02-15T06:59:55Z +13732,510,1,372,5.99,2005-05-27T08:13:58Z,2020-02-15T06:59:55Z +13733,510,2,1118,4.99,2005-05-31T16:23:02Z,2020-02-15T06:59:55Z +13734,510,2,1435,5.99,2005-06-15T18:32:30Z,2020-02-15T06:59:55Z +13735,510,2,1757,0.99,2005-06-16T17:32:24Z,2020-02-15T06:59:55Z +13736,510,2,1925,0.99,2005-06-17T06:16:47Z,2020-02-15T06:59:55Z +13737,510,1,2729,8.99,2005-06-19T15:06:15Z,2020-02-15T06:59:55Z +13738,510,2,2806,0.99,2005-06-19T19:30:48Z,2020-02-15T06:59:55Z +13739,510,2,2817,0.99,2005-06-19T20:05:22Z,2020-02-15T06:59:55Z +13740,510,2,3352,8.99,2005-06-21T11:26:29Z,2020-02-15T06:59:55Z +13741,510,2,3465,5.99,2005-06-21T22:10:01Z,2020-02-15T06:59:55Z +13742,510,2,3744,2.99,2005-07-06T12:10:02Z,2020-02-15T06:59:55Z +13743,510,1,4014,4.99,2005-07-07T00:58:54Z,2020-02-15T06:59:55Z +13744,510,2,5851,4.99,2005-07-10T17:40:47Z,2020-02-15T06:59:55Z +13745,510,1,6531,1.99,2005-07-12T04:35:24Z,2020-02-15T06:59:55Z +13746,510,1,7457,2.99,2005-07-27T18:35:17Z,2020-02-15T06:59:55Z +13747,510,1,7678,8.99,2005-07-28T02:58:16Z,2020-02-15T06:59:55Z +13748,510,2,7794,9.99,2005-07-28T07:28:03Z,2020-02-15T06:59:55Z +13749,510,2,8763,3.99,2005-07-29T19:38:24Z,2020-02-15T06:59:55Z +13750,510,1,8926,4.99,2005-07-30T02:10:31Z,2020-02-15T06:59:55Z +13751,510,1,10131,0.99,2005-07-31T21:45:28Z,2020-02-15T06:59:55Z +13752,510,2,10265,7.99,2005-08-01T03:05:04Z,2020-02-15T06:59:55Z +13753,510,2,11996,4.99,2005-08-17T18:34:37Z,2020-02-15T06:59:55Z +13754,510,1,12317,0.99,2005-08-18T06:17:06Z,2020-02-15T06:59:55Z +13755,510,2,12406,2.99,2005-08-18T09:38:02Z,2020-02-15T06:59:55Z +13756,510,1,15065,4.99,2005-08-22T10:46:44Z,2020-02-15T06:59:55Z +13757,511,1,56,2.99,2005-05-25T08:28:11Z,2020-02-15T06:59:55Z +13758,511,1,819,3.99,2005-05-29T21:00:32Z,2020-02-15T06:59:55Z +13759,511,2,1281,2.99,2005-06-15T08:21:39Z,2020-02-15T06:59:55Z +13760,511,1,1508,2.99,2005-06-15T22:33:24Z,2020-02-15T06:59:55Z +13761,511,2,2966,10.99,2005-06-20T07:39:33Z,2020-02-15T06:59:55Z +13762,511,2,3366,4.99,2005-06-21T13:03:37Z,2020-02-15T06:59:55Z +13763,511,2,3600,4.99,2005-07-06T05:19:42Z,2020-02-15T06:59:55Z +13764,511,1,3852,0.99,2005-07-06T16:57:49Z,2020-02-15T06:59:55Z +13765,511,1,4482,4.99,2005-07-08T01:01:18Z,2020-02-15T06:59:55Z +13766,511,2,5164,3.99,2005-07-09T09:03:14Z,2020-02-15T06:59:55Z +13767,511,1,5601,0.99,2005-07-10T04:56:55Z,2020-02-15T06:59:55Z +13768,511,2,6040,0.99,2005-07-11T03:14:26Z,2020-02-15T06:59:55Z +13769,511,1,6320,0.99,2005-07-11T18:50:55Z,2020-02-15T06:59:55Z +13770,511,1,8026,4.99,2005-07-28T16:05:38Z,2020-02-15T06:59:55Z +13771,511,1,9095,0.99,2005-07-30T08:38:36Z,2020-02-15T06:59:55Z +13772,511,1,9143,6.99,2005-07-30T10:22:11Z,2020-02-15T06:59:55Z +13773,511,1,9760,4.99,2005-07-31T09:29:33Z,2020-02-15T06:59:55Z +13774,511,1,10231,2.99,2005-08-01T01:50:49Z,2020-02-15T06:59:55Z +13775,511,2,10429,2.99,2005-08-01T08:34:18Z,2020-02-15T06:59:55Z +13776,511,2,12110,6.99,2005-08-17T22:59:46Z,2020-02-15T06:59:55Z +13777,511,1,12920,4.99,2005-08-19T04:32:32Z,2020-02-15T06:59:55Z +13778,511,1,14213,4.99,2005-08-21T04:30:47Z,2020-02-15T06:59:56Z +13779,511,1,14302,6.99,2005-08-21T07:19:57Z,2020-02-15T06:59:56Z +13780,511,1,15172,4.99,2005-08-22T15:25:33Z,2020-02-15T06:59:56Z +13781,512,1,1176,6.99,2005-06-15T00:28:37Z,2020-02-15T06:59:56Z +13782,512,2,2029,4.99,2005-06-17T13:10:59Z,2020-02-15T06:59:56Z +13783,512,1,2364,2.99,2005-06-18T13:37:32Z,2020-02-15T06:59:56Z +13784,512,1,4752,5.99,2005-07-08T14:15:20Z,2020-02-15T06:59:56Z +13785,512,1,4799,0.99,2005-07-08T16:49:27Z,2020-02-15T06:59:56Z +13786,512,1,5064,6.99,2005-07-09T04:38:51Z,2020-02-15T06:59:56Z +13787,512,2,5813,3.99,2005-07-10T15:34:37Z,2020-02-15T06:59:56Z +13788,512,1,7219,2.99,2005-07-27T09:35:36Z,2020-02-15T06:59:56Z +13789,512,1,7507,0.99,2005-07-27T20:31:48Z,2020-02-15T06:59:56Z +13790,512,1,7715,6.99,2005-07-28T04:32:38Z,2020-02-15T06:59:56Z +13791,512,2,8868,4.99,2005-07-30T00:02:26Z,2020-02-15T06:59:56Z +13792,512,1,9055,2.99,2005-07-30T07:13:07Z,2020-02-15T06:59:56Z +13793,512,2,10232,4.99,2005-08-01T01:50:55Z,2020-02-15T06:59:56Z +13794,512,2,10670,3.99,2005-08-01T17:07:16Z,2020-02-15T06:59:56Z +13795,512,2,11818,9.99,2005-08-17T12:22:04Z,2020-02-15T06:59:56Z +13796,512,2,12957,8.99,2005-08-19T06:12:44Z,2020-02-15T06:59:56Z +13797,512,2,13156,4.99,2005-08-19T13:10:42Z,2020-02-15T06:59:56Z +13798,512,2,13771,0.99,2005-08-20T11:47:21Z,2020-02-15T06:59:56Z +13799,512,1,14288,4.99,2005-08-21T06:57:34Z,2020-02-15T06:59:56Z +13800,512,1,14870,2.99,2005-08-22T03:23:20Z,2020-02-15T06:59:56Z +13801,512,1,15153,2.99,2005-08-22T14:26:01Z,2020-02-15T06:59:56Z +13802,512,2,15265,3.99,2005-08-22T18:35:59Z,2020-02-15T06:59:56Z +13803,512,1,15317,3.99,2005-08-22T20:14:13Z,2020-02-15T06:59:56Z +13804,512,2,15733,4.99,2005-08-23T11:37:32Z,2020-02-15T06:59:56Z +13805,512,2,15990,4.99,2005-08-23T20:25:11Z,2020-02-15T06:59:56Z +13806,512,1,12786,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +13807,513,2,993,4.99,2005-05-30T23:54:19Z,2020-02-15T06:59:56Z +13808,513,1,1607,2.99,2005-06-16T06:25:35Z,2020-02-15T06:59:56Z +13809,513,2,2290,7.99,2005-06-18T07:34:37Z,2020-02-15T06:59:56Z +13810,513,2,2737,1.99,2005-06-19T15:48:33Z,2020-02-15T06:59:56Z +13811,513,2,3872,0.99,2005-07-06T18:00:19Z,2020-02-15T06:59:56Z +13812,513,2,4055,2.99,2005-07-07T03:49:13Z,2020-02-15T06:59:56Z +13813,513,2,4178,4.99,2005-07-07T10:14:31Z,2020-02-15T06:59:56Z +13814,513,2,4220,4.99,2005-07-07T12:12:36Z,2020-02-15T06:59:56Z +13815,513,1,5741,7.99,2005-07-10T11:55:40Z,2020-02-15T06:59:56Z +13816,513,1,6027,4.99,2005-07-11T02:26:29Z,2020-02-15T06:59:56Z +13817,513,1,7655,0.99,2005-07-28T02:01:11Z,2020-02-15T06:59:56Z +13818,513,2,8320,4.99,2005-07-29T03:49:58Z,2020-02-15T06:59:56Z +13819,513,1,8350,4.99,2005-07-29T04:50:39Z,2020-02-15T06:59:56Z +13820,513,2,8683,9.99,2005-07-29T16:15:43Z,2020-02-15T06:59:56Z +13821,513,1,8798,5.99,2005-07-29T21:15:38Z,2020-02-15T06:59:56Z +13822,513,2,9862,2.99,2005-07-31T13:05:03Z,2020-02-15T06:59:56Z +13823,513,1,10012,3.99,2005-07-31T18:06:06Z,2020-02-15T06:59:56Z +13824,513,2,11081,2.99,2005-08-02T07:30:14Z,2020-02-15T06:59:56Z +13825,513,1,11165,2.99,2005-08-02T10:12:17Z,2020-02-15T06:59:56Z +13826,513,1,11407,3.99,2005-08-02T19:18:43Z,2020-02-15T06:59:56Z +13827,513,1,11755,3.99,2005-08-17T09:15:35Z,2020-02-15T06:59:56Z +13828,513,1,12559,5.99,2005-08-18T14:53:58Z,2020-02-15T06:59:56Z +13829,513,2,12784,2.99,2005-08-19T00:02:46Z,2020-02-15T06:59:56Z +13830,513,2,12807,4.99,2005-08-19T00:38:46Z,2020-02-15T06:59:56Z +13831,513,1,13596,5.99,2005-08-20T05:58:58Z,2020-02-15T06:59:56Z +13832,513,1,13690,4.99,2005-08-20T09:07:27Z,2020-02-15T06:59:56Z +13833,513,2,14844,7.99,2005-08-22T02:09:12Z,2020-02-15T06:59:56Z +13834,513,1,14875,4.99,2005-08-22T03:34:39Z,2020-02-15T06:59:56Z +13835,513,1,15035,4.99,2005-08-22T09:34:32Z,2020-02-15T06:59:56Z +13836,513,2,15289,6.99,2005-08-22T19:27:24Z,2020-02-15T06:59:56Z +13837,513,2,15545,5.99,2005-08-23T04:20:16Z,2020-02-15T06:59:56Z +13838,514,2,536,4.99,2005-05-28T06:17:33Z,2020-02-15T06:59:56Z +13839,514,2,1692,4.99,2005-06-16T12:30:19Z,2020-02-15T06:59:56Z +13840,514,1,2002,3.99,2005-06-17T11:39:58Z,2020-02-15T06:59:56Z +13841,514,2,2362,0.99,2005-06-18T13:31:15Z,2020-02-15T06:59:56Z +13842,514,1,2789,0.99,2005-06-19T18:48:21Z,2020-02-15T06:59:56Z +13843,514,2,3084,2.99,2005-06-20T15:35:24Z,2020-02-15T06:59:56Z +13844,514,1,3385,0.99,2005-06-21T14:16:48Z,2020-02-15T06:59:56Z +13845,514,2,3668,5.99,2005-07-06T08:36:48Z,2020-02-15T06:59:56Z +13846,514,2,3860,2.99,2005-07-06T17:20:24Z,2020-02-15T06:59:56Z +13847,514,1,7791,4.99,2005-07-28T07:22:51Z,2020-02-15T06:59:56Z +13848,514,1,9038,3.99,2005-07-30T06:23:35Z,2020-02-15T06:59:56Z +13849,514,1,11675,1.99,2005-08-17T05:57:54Z,2020-02-15T06:59:56Z +13850,514,2,12067,4.99,2005-08-17T21:36:47Z,2020-02-15T06:59:56Z +13851,514,1,12293,4.99,2005-08-18T05:13:36Z,2020-02-15T06:59:56Z +13852,514,1,12302,4.99,2005-08-18T05:41:39Z,2020-02-15T06:59:56Z +13853,514,2,12578,0.99,2005-08-18T15:47:11Z,2020-02-15T06:59:56Z +13854,514,1,12752,2.99,2005-08-18T22:33:36Z,2020-02-15T06:59:56Z +13855,514,2,13344,3.99,2005-08-19T20:22:44Z,2020-02-15T06:59:56Z +13856,514,1,14052,0.99,2005-08-20T22:11:46Z,2020-02-15T06:59:56Z +13857,514,1,14386,1.99,2005-08-21T10:06:34Z,2020-02-15T06:59:56Z +13858,514,1,15451,2.99,2005-08-23T00:56:27Z,2020-02-15T06:59:56Z +13859,514,1,15776,5.99,2005-08-23T13:26:01Z,2020-02-15T06:59:56Z +13860,515,2,187,8.99,2005-05-26T05:42:37Z,2020-02-15T06:59:56Z +13861,515,2,292,6.99,2005-05-26T20:22:12Z,2020-02-15T06:59:56Z +13862,515,1,1244,4.99,2005-06-15T05:08:40Z,2020-02-15T06:59:56Z +13863,515,2,1531,5.99,2005-06-16T00:40:34Z,2020-02-15T06:59:56Z +13864,515,2,2003,4.99,2005-06-17T11:40:35Z,2020-02-15T06:59:56Z +13865,515,2,2484,4.99,2005-06-18T21:25:23Z,2020-02-15T06:59:56Z +13866,515,2,2513,0.99,2005-06-18T23:53:15Z,2020-02-15T06:59:56Z +13867,515,2,3063,3.99,2005-06-20T13:52:03Z,2020-02-15T06:59:56Z +13868,515,2,3782,0.99,2005-07-06T13:57:03Z,2020-02-15T06:59:56Z +13869,515,2,4111,6.99,2005-07-07T06:47:56Z,2020-02-15T06:59:56Z +13870,515,2,5216,0.99,2005-07-09T11:54:58Z,2020-02-15T06:59:56Z +13871,515,2,5546,2.99,2005-07-10T02:50:37Z,2020-02-15T06:59:56Z +13872,515,2,5697,4.99,2005-07-10T09:44:44Z,2020-02-15T06:59:56Z +13873,515,2,7429,3.99,2005-07-27T17:24:50Z,2020-02-15T06:59:56Z +13874,515,1,8706,4.99,2005-07-29T17:19:15Z,2020-02-15T06:59:56Z +13875,515,1,10159,4.99,2005-07-31T22:54:30Z,2020-02-15T06:59:56Z +13876,515,2,10716,0.99,2005-08-01T18:53:48Z,2020-02-15T06:59:56Z +13877,515,1,11451,3.99,2005-08-02T20:45:56Z,2020-02-15T06:59:56Z +13878,515,2,11572,4.99,2005-08-17T01:37:55Z,2020-02-15T06:59:56Z +13879,515,1,11691,3.99,2005-08-17T06:51:05Z,2020-02-15T06:59:56Z +13880,515,2,11937,6.99,2005-08-17T16:48:36Z,2020-02-15T06:59:56Z +13881,515,2,12416,2.99,2005-08-18T09:56:48Z,2020-02-15T06:59:56Z +13882,515,1,12486,8.99,2005-08-18T12:42:50Z,2020-02-15T06:59:56Z +13883,515,1,12889,5.99,2005-08-19T03:41:31Z,2020-02-15T06:59:56Z +13884,515,2,14072,4.99,2005-08-20T23:07:10Z,2020-02-15T06:59:56Z +13885,515,2,14378,3.99,2005-08-21T09:50:02Z,2020-02-15T06:59:56Z +13886,515,2,14414,0.99,2005-08-21T11:08:17Z,2020-02-15T06:59:56Z +13887,515,2,15274,4.99,2005-08-22T18:55:52Z,2020-02-15T06:59:56Z +13888,516,2,339,3.99,2005-05-27T03:47:18Z,2020-02-15T06:59:56Z +13889,516,1,571,1.99,2005-05-28T10:17:41Z,2020-02-15T06:59:56Z +13890,516,2,1159,4.99,2005-06-14T22:55:13Z,2020-02-15T06:59:56Z +13891,516,1,1200,1.99,2005-06-15T01:59:51Z,2020-02-15T06:59:56Z +13892,516,1,1718,10.99,2005-06-16T14:52:02Z,2020-02-15T06:59:56Z +13893,516,1,2017,0.99,2005-06-17T12:33:30Z,2020-02-15T06:59:56Z +13894,516,2,3068,0.99,2005-06-20T14:02:22Z,2020-02-15T06:59:56Z +13895,516,1,3431,2.99,2005-06-21T18:46:48Z,2020-02-15T06:59:56Z +13896,516,2,5780,3.99,2005-07-10T13:46:23Z,2020-02-15T06:59:56Z +13897,516,2,6677,6.99,2005-07-12T11:58:14Z,2020-02-15T06:59:56Z +13898,516,1,6858,6.99,2005-07-12T19:53:51Z,2020-02-15T06:59:56Z +13899,516,1,7628,4.99,2005-07-28T00:58:04Z,2020-02-15T06:59:56Z +13900,516,1,7882,4.99,2005-07-28T10:33:42Z,2020-02-15T06:59:56Z +13901,516,2,8396,4.99,2005-07-29T06:07:00Z,2020-02-15T06:59:56Z +13902,516,2,8534,5.99,2005-07-29T10:30:13Z,2020-02-15T06:59:56Z +13903,516,2,8585,2.99,2005-07-29T12:14:18Z,2020-02-15T06:59:56Z +13904,516,2,9243,4.99,2005-07-30T14:06:27Z,2020-02-15T06:59:56Z +13905,516,2,11926,0.99,2005-08-17T16:25:02Z,2020-02-15T06:59:56Z +13906,516,2,11939,1.99,2005-08-17T16:55:57Z,2020-02-15T06:59:56Z +13907,516,1,12535,1.99,2005-08-18T14:05:22Z,2020-02-15T06:59:56Z +13908,516,1,13276,8.99,2005-08-19T17:53:42Z,2020-02-15T06:59:56Z +13909,516,1,14932,0.99,2005-08-22T05:40:39Z,2020-02-15T06:59:56Z +13910,516,1,15526,0.99,2005-08-23T03:44:30Z,2020-02-15T06:59:56Z +13911,516,1,15701,0.99,2005-08-23T10:22:21Z,2020-02-15T06:59:56Z +13912,516,1,12130,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +13913,516,1,12915,0,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +13914,517,2,850,4.99,2005-05-30T01:35:12Z,2020-02-15T06:59:56Z +13915,517,2,1653,4.99,2005-06-16T09:34:45Z,2020-02-15T06:59:56Z +13916,517,1,1809,8.99,2005-06-16T21:00:20Z,2020-02-15T06:59:56Z +13917,517,1,1850,4.99,2005-06-17T00:31:35Z,2020-02-15T06:59:56Z +13918,517,2,2534,2.99,2005-06-19T01:38:39Z,2020-02-15T06:59:56Z +13919,517,1,3113,0.99,2005-06-20T17:56:40Z,2020-02-15T06:59:56Z +13920,517,2,4094,2.99,2005-07-07T06:00:21Z,2020-02-15T06:59:56Z +13921,517,1,4109,4.99,2005-07-07T06:39:43Z,2020-02-15T06:59:56Z +13922,517,1,4369,4.99,2005-07-07T20:01:38Z,2020-02-15T06:59:56Z +13923,517,2,4374,4.99,2005-07-07T20:13:58Z,2020-02-15T06:59:56Z +13924,517,2,4934,0.99,2005-07-08T22:18:42Z,2020-02-15T06:59:56Z +13925,517,1,4993,2.99,2005-07-09T00:49:47Z,2020-02-15T06:59:56Z +13926,517,1,5206,7.99,2005-07-09T11:11:01Z,2020-02-15T06:59:56Z +13927,517,2,5974,5.99,2005-07-11T00:10:37Z,2020-02-15T06:59:56Z +13928,517,2,6594,4.99,2005-07-12T07:25:43Z,2020-02-15T06:59:56Z +13929,517,2,6903,0.99,2005-07-12T21:58:15Z,2020-02-15T06:59:56Z +13930,517,2,7988,3.99,2005-07-28T14:37:18Z,2020-02-15T06:59:56Z +13931,517,1,10063,4.99,2005-07-31T19:25:13Z,2020-02-15T06:59:56Z +13932,517,2,10358,4.99,2005-08-01T05:50:07Z,2020-02-15T06:59:56Z +13933,517,2,10433,4.99,2005-08-01T08:45:56Z,2020-02-15T06:59:56Z +13934,517,1,11684,3.99,2005-08-17T06:27:15Z,2020-02-15T06:59:56Z +13935,517,2,12705,0.99,2005-08-18T20:44:14Z,2020-02-15T06:59:56Z +13936,517,1,13396,0.99,2005-08-19T22:06:09Z,2020-02-15T06:59:56Z +13937,517,2,14190,4.99,2005-08-21T03:35:21Z,2020-02-15T06:59:56Z +13938,517,1,15559,5.99,2005-08-23T04:55:05Z,2020-02-15T06:59:56Z +13939,518,1,710,2.99,2005-05-29T03:48:36Z,2020-02-15T06:59:56Z +13940,518,2,1552,5.99,2005-06-16T02:01:37Z,2020-02-15T06:59:56Z +13941,518,2,3311,0.99,2005-06-21T08:05:27Z,2020-02-15T06:59:56Z +13942,518,1,3652,0.99,2005-07-06T07:44:30Z,2020-02-15T06:59:56Z +13943,518,2,4029,7.99,2005-07-07T02:19:44Z,2020-02-15T06:59:56Z +13944,518,2,4661,4.99,2005-07-08T09:55:06Z,2020-02-15T06:59:56Z +13945,518,2,4948,6.99,2005-07-08T22:54:21Z,2020-02-15T06:59:56Z +13946,518,1,6652,2.99,2005-07-12T10:59:38Z,2020-02-15T06:59:56Z +13947,518,1,6957,2.99,2005-07-27T00:00:00Z,2020-02-15T06:59:56Z +13948,518,2,7038,3.99,2005-07-27T03:07:29Z,2020-02-15T06:59:56Z +13949,518,2,7154,4.99,2005-07-27T07:16:17Z,2020-02-15T06:59:56Z +13950,518,2,7382,2.99,2005-07-27T15:43:15Z,2020-02-15T06:59:56Z +13951,518,1,7657,2.99,2005-07-28T02:09:00Z,2020-02-15T06:59:56Z +13952,518,2,7839,6.99,2005-07-28T09:01:13Z,2020-02-15T06:59:56Z +13953,518,1,8107,3.99,2005-07-28T19:03:16Z,2020-02-15T06:59:56Z +13954,518,1,8397,2.99,2005-07-29T06:09:35Z,2020-02-15T06:59:56Z +13955,518,1,10751,5.99,2005-08-01T20:06:10Z,2020-02-15T06:59:56Z +13956,518,2,11433,3.99,2005-08-02T20:13:10Z,2020-02-15T06:59:56Z +13957,518,2,12450,2.99,2005-08-18T11:04:04Z,2020-02-15T06:59:56Z +13958,518,2,12681,2.99,2005-08-18T19:48:06Z,2020-02-15T06:59:56Z +13959,518,1,13065,4.99,2005-08-19T09:48:52Z,2020-02-15T06:59:56Z +13960,518,1,13539,6.99,2005-08-20T03:40:27Z,2020-02-15T06:59:56Z +13961,518,1,14088,6.99,2005-08-20T23:57:24Z,2020-02-15T06:59:56Z +13962,518,1,14149,4.99,2005-08-21T02:22:47Z,2020-02-15T06:59:56Z +13963,518,2,14980,0.99,2005-08-22T07:16:45Z,2020-02-15T06:59:56Z +13964,518,2,15434,4.99,2005-08-23T00:28:16Z,2020-02-15T06:59:56Z +13965,519,1,1056,3.99,2005-05-31T07:48:07Z,2020-02-15T06:59:56Z +13966,519,1,1941,2.99,2005-06-17T07:42:45Z,2020-02-15T06:59:56Z +13967,519,2,2505,8.99,2005-06-18T23:28:27Z,2020-02-15T06:59:56Z +13968,519,2,2997,5.99,2005-06-20T09:23:45Z,2020-02-15T06:59:56Z +13969,519,2,4564,0.99,2005-07-08T05:09:38Z,2020-02-15T06:59:56Z +13970,519,2,4773,2.99,2005-07-08T15:41:39Z,2020-02-15T06:59:56Z +13971,519,2,5236,0.99,2005-07-09T12:56:29Z,2020-02-15T06:59:56Z +13972,519,2,5547,5.99,2005-07-10T02:52:47Z,2020-02-15T06:59:56Z +13973,519,2,6063,0.99,2005-07-11T04:16:51Z,2020-02-15T06:59:56Z +13974,519,1,6599,3.99,2005-07-12T07:41:14Z,2020-02-15T06:59:56Z +13975,519,1,9417,6.99,2005-07-30T20:54:55Z,2020-02-15T06:59:56Z +13976,519,2,9441,4.99,2005-07-30T21:43:28Z,2020-02-15T06:59:56Z +13977,519,2,9534,7.99,2005-07-31T01:18:27Z,2020-02-15T06:59:56Z +13978,519,2,9645,0.99,2005-07-31T05:42:49Z,2020-02-15T06:59:56Z +13979,519,2,9886,7.99,2005-07-31T14:00:13Z,2020-02-15T06:59:56Z +13980,519,1,9905,0.99,2005-07-31T14:37:03Z,2020-02-15T06:59:56Z +13981,519,1,10097,5.99,2005-07-31T20:39:38Z,2020-02-15T06:59:56Z +13982,519,2,10697,4.99,2005-08-01T18:20:23Z,2020-02-15T06:59:56Z +13983,519,2,12648,7.99,2005-08-18T18:30:21Z,2020-02-15T06:59:56Z +13984,519,2,12924,2.99,2005-08-19T04:51:47Z,2020-02-15T06:59:56Z +13985,519,1,13647,7.99,2005-08-20T07:48:07Z,2020-02-15T06:59:56Z +13986,519,1,14182,2.99,2005-08-21T03:17:10Z,2020-02-15T06:59:56Z +13987,519,2,15347,2.99,2005-08-22T21:12:19Z,2020-02-15T06:59:56Z +13988,520,1,962,6.99,2005-05-30T18:45:17Z,2020-02-15T06:59:56Z +13989,520,1,1411,0.99,2005-06-15T17:05:36Z,2020-02-15T06:59:56Z +13990,520,2,2174,6.99,2005-06-18T00:09:01Z,2020-02-15T06:59:56Z +13991,520,1,2772,4.99,2005-06-19T17:59:27Z,2020-02-15T06:59:56Z +13992,520,2,3482,4.99,2005-07-05T23:13:22Z,2020-02-15T06:59:56Z +13993,520,1,3499,7.99,2005-07-06T00:04:20Z,2020-02-15T06:59:56Z +13994,520,2,4346,2.99,2005-07-07T18:58:45Z,2020-02-15T06:59:56Z +13995,520,2,5799,4.99,2005-07-10T14:53:35Z,2020-02-15T06:59:56Z +13996,520,1,5802,10.99,2005-07-10T15:02:17Z,2020-02-15T06:59:56Z +13997,520,1,5853,3.99,2005-07-10T17:45:13Z,2020-02-15T06:59:56Z +13998,520,1,6029,2.99,2005-07-11T02:36:46Z,2020-02-15T06:59:56Z +13999,520,2,7198,5.99,2005-07-27T08:50:07Z,2020-02-15T06:59:56Z +14000,520,1,7720,4.99,2005-07-28T04:41:44Z,2020-02-15T06:59:56Z +14001,520,1,7936,0.99,2005-07-28T12:33:21Z,2020-02-15T06:59:56Z +14002,520,1,8294,2.99,2005-07-29T02:32:41Z,2020-02-15T06:59:56Z +14003,520,2,8435,2.99,2005-07-29T07:20:16Z,2020-02-15T06:59:56Z +14004,520,1,9803,2.99,2005-07-31T11:06:02Z,2020-02-15T06:59:56Z +14005,520,1,10072,0.99,2005-07-31T19:50:37Z,2020-02-15T06:59:56Z +14006,520,2,10530,4.99,2005-08-01T12:01:17Z,2020-02-15T06:59:56Z +14007,520,1,11566,0.99,2005-08-17T01:28:35Z,2020-02-15T06:59:56Z +14008,520,1,12517,4.99,2005-08-18T13:40:20Z,2020-02-15T06:59:56Z +14009,520,1,12628,5.99,2005-08-18T17:40:25Z,2020-02-15T06:59:56Z +14010,520,1,12647,5.99,2005-08-18T18:29:51Z,2020-02-15T06:59:56Z +14011,520,1,13311,0.99,2005-08-19T19:07:09Z,2020-02-15T06:59:56Z +14012,520,2,13438,2.99,2005-08-19T23:38:02Z,2020-02-15T06:59:56Z +14013,520,2,13659,2.99,2005-08-20T08:05:52Z,2020-02-15T06:59:56Z +14014,520,2,13746,5.99,2005-08-20T10:55:28Z,2020-02-15T06:59:56Z +14015,520,1,14372,4.99,2005-08-21T09:39:50Z,2020-02-15T06:59:56Z +14016,520,1,14509,0.99,2005-08-21T14:39:58Z,2020-02-15T06:59:56Z +14017,520,1,15465,0.99,2005-08-23T01:16:33Z,2020-02-15T06:59:56Z +14018,520,2,15492,2.99,2005-08-23T02:13:46Z,2020-02-15T06:59:56Z +14019,520,1,15948,7.99,2005-08-23T18:59:33Z,2020-02-15T06:59:56Z +14020,521,1,1761,0.99,2005-06-16T17:49:57Z,2020-02-15T06:59:56Z +14021,521,2,2053,0.99,2005-06-17T15:19:34Z,2020-02-15T06:59:56Z +14022,521,2,4284,0.99,2005-07-07T15:31:57Z,2020-02-15T06:59:56Z +14023,521,2,4439,2.99,2005-07-07T22:57:30Z,2020-02-15T06:59:56Z +14024,521,1,5276,2.99,2005-07-09T14:35:13Z,2020-02-15T06:59:56Z +14025,521,2,5458,4.99,2005-07-09T22:35:49Z,2020-02-15T06:59:56Z +14026,521,2,5580,6.99,2005-07-10T04:05:49Z,2020-02-15T06:59:56Z +14027,521,2,5686,0.99,2005-07-10T09:06:03Z,2020-02-15T06:59:56Z +14028,521,1,7478,1.99,2005-07-27T19:16:02Z,2020-02-15T06:59:56Z +14029,521,1,9556,7.99,2005-07-31T02:13:30Z,2020-02-15T06:59:56Z +14030,521,2,9937,1.99,2005-07-31T15:28:10Z,2020-02-15T06:59:56Z +14031,521,1,10587,2.99,2005-08-01T14:03:38Z,2020-02-15T06:59:56Z +14032,521,2,11625,2.99,2005-08-17T04:18:52Z,2020-02-15T06:59:56Z +14033,521,1,11967,3.99,2005-08-17T17:45:00Z,2020-02-15T06:59:56Z +14034,521,2,12082,4.99,2005-08-17T22:13:15Z,2020-02-15T06:59:56Z +14035,521,1,12530,4.99,2005-08-18T13:54:48Z,2020-02-15T06:59:56Z +14036,521,1,13527,2.99,2005-08-20T03:00:47Z,2020-02-15T06:59:56Z +14037,521,1,14423,0.99,2005-08-21T11:23:59Z,2020-02-15T06:59:56Z +14038,521,2,14551,3.99,2005-08-21T15:57:25Z,2020-02-15T06:59:56Z +14039,521,2,14738,5.99,2005-08-21T22:29:13Z,2020-02-15T06:59:56Z +14040,521,2,15170,4.99,2005-08-22T15:22:15Z,2020-02-15T06:59:56Z +14041,521,2,15329,2.99,2005-08-22T20:32:39Z,2020-02-15T06:59:56Z +14042,521,2,11672,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14043,522,2,426,5.99,2005-05-27T15:56:57Z,2020-02-15T06:59:56Z +14044,522,1,1289,3.99,2005-06-15T08:44:09Z,2020-02-15T06:59:56Z +14045,522,2,3102,8.99,2005-06-20T16:55:55Z,2020-02-15T06:59:56Z +14046,522,1,3188,2.99,2005-06-20T23:10:27Z,2020-02-15T06:59:56Z +14047,522,2,3191,0.99,2005-06-20T23:46:39Z,2020-02-15T06:59:56Z +14048,522,1,3594,0.99,2005-07-06T04:42:47Z,2020-02-15T06:59:56Z +14049,522,2,4078,4.99,2005-07-07T05:05:05Z,2020-02-15T06:59:56Z +14050,522,2,4563,9.99,2005-07-08T05:08:55Z,2020-02-15T06:59:56Z +14051,522,2,4701,4.99,2005-07-08T11:38:48Z,2020-02-15T06:59:56Z +14052,522,2,5271,6.99,2005-07-09T14:25:01Z,2020-02-15T06:59:56Z +14053,522,2,5514,6.99,2005-07-10T01:09:42Z,2020-02-15T06:59:56Z +14054,522,2,5532,4.99,2005-07-10T02:17:31Z,2020-02-15T06:59:56Z +14055,522,2,5936,0.99,2005-07-10T22:14:30Z,2020-02-15T06:59:56Z +14056,522,2,7262,4.99,2005-07-27T11:15:36Z,2020-02-15T06:59:56Z +14057,522,1,7955,2.99,2005-07-28T13:31:36Z,2020-02-15T06:59:56Z +14058,522,2,8181,4.99,2005-07-28T22:18:38Z,2020-02-15T06:59:56Z +14059,522,1,8642,6.99,2005-07-29T14:38:17Z,2020-02-15T06:59:56Z +14060,522,1,8966,2.99,2005-07-30T03:54:12Z,2020-02-15T06:59:56Z +14061,522,1,9047,7.99,2005-07-30T06:56:33Z,2020-02-15T06:59:56Z +14062,522,2,9227,7.99,2005-07-30T13:36:13Z,2020-02-15T06:59:56Z +14063,522,1,9335,4.99,2005-07-30T18:00:53Z,2020-02-15T06:59:56Z +14064,522,1,9412,5.99,2005-07-30T20:44:10Z,2020-02-15T06:59:56Z +14065,522,2,9533,5.99,2005-07-31T01:18:10Z,2020-02-15T06:59:56Z +14066,522,2,10223,0.99,2005-08-01T01:23:15Z,2020-02-15T06:59:56Z +14067,522,1,10411,3.99,2005-08-01T07:56:32Z,2020-02-15T06:59:56Z +14068,522,1,10675,7.99,2005-08-01T17:11:57Z,2020-02-15T06:59:56Z +14069,522,2,10821,5.99,2005-08-01T22:54:27Z,2020-02-15T06:59:56Z +14070,522,2,11696,2.99,2005-08-17T07:01:09Z,2020-02-15T06:59:56Z +14071,522,2,11830,1.99,2005-08-17T12:53:15Z,2020-02-15T06:59:56Z +14072,522,2,12494,6.99,2005-08-18T12:53:49Z,2020-02-15T06:59:56Z +14073,522,2,13605,6.99,2005-08-20T06:06:17Z,2020-02-15T06:59:56Z +14074,522,2,14467,2.99,2005-08-21T13:03:33Z,2020-02-15T06:59:56Z +14075,522,1,15921,6.99,2005-08-23T18:06:54Z,2020-02-15T06:59:56Z +14076,523,1,42,4.99,2005-05-25T05:24:58Z,2020-02-15T06:59:56Z +14077,523,2,664,0.99,2005-05-28T21:31:08Z,2020-02-15T06:59:56Z +14078,523,2,1729,6.99,2005-06-16T15:29:47Z,2020-02-15T06:59:56Z +14079,523,1,2447,8.99,2005-06-18T19:10:55Z,2020-02-15T06:59:56Z +14080,523,1,2583,7.99,2005-06-19T05:01:40Z,2020-02-15T06:59:56Z +14081,523,2,2669,0.99,2005-06-19T11:28:52Z,2020-02-15T06:59:56Z +14082,523,1,4605,4.99,2005-07-08T07:00:14Z,2020-02-15T06:59:56Z +14083,523,2,5155,2.99,2005-07-09T08:46:54Z,2020-02-15T06:59:56Z +14084,523,1,5287,6.99,2005-07-09T15:11:54Z,2020-02-15T06:59:56Z +14085,523,2,5932,2.99,2005-07-10T22:05:15Z,2020-02-15T06:59:56Z +14086,523,2,6675,4.99,2005-07-12T11:53:06Z,2020-02-15T06:59:56Z +14087,523,2,7642,1.99,2005-07-28T01:16:51Z,2020-02-15T06:59:56Z +14088,523,2,8141,0.99,2005-07-28T20:21:19Z,2020-02-15T06:59:56Z +14089,523,1,8372,5.99,2005-07-29T05:18:08Z,2020-02-15T06:59:56Z +14090,523,1,9071,2.99,2005-07-30T07:40:58Z,2020-02-15T06:59:56Z +14091,523,2,9667,6.99,2005-07-31T06:23:52Z,2020-02-15T06:59:56Z +14092,523,2,10470,1.99,2005-08-01T09:52:26Z,2020-02-15T06:59:56Z +14093,523,1,11827,4.99,2005-08-17T12:44:27Z,2020-02-15T06:59:56Z +14094,523,1,12288,2.99,2005-08-18T05:01:20Z,2020-02-15T06:59:56Z +14095,523,1,13133,2.99,2005-08-19T12:11:03Z,2020-02-15T06:59:56Z +14096,523,1,14766,4.99,2005-08-21T23:42:20Z,2020-02-15T06:59:56Z +14097,523,1,15040,2.99,2005-08-22T09:41:09Z,2020-02-15T06:59:56Z +14098,524,2,118,0.99,2005-05-25T19:31:18Z,2020-02-15T06:59:56Z +14099,524,1,982,4.99,2005-05-30T22:15:24Z,2020-02-15T06:59:56Z +14100,524,1,1306,1.99,2005-06-15T09:59:24Z,2020-02-15T06:59:56Z +14101,524,2,1651,4.99,2005-06-16T09:24:38Z,2020-02-15T06:59:56Z +14102,524,2,3454,2.99,2005-06-21T21:12:13Z,2020-02-15T06:59:56Z +14103,524,1,4366,5.99,2005-07-07T19:48:36Z,2020-02-15T06:59:56Z +14104,524,2,5037,4.99,2005-07-09T02:59:10Z,2020-02-15T06:59:56Z +14105,524,2,6161,4.99,2005-07-11T10:11:54Z,2020-02-15T06:59:56Z +14106,524,1,6240,6.99,2005-07-11T14:32:41Z,2020-02-15T06:59:56Z +14107,524,2,6745,4.99,2005-07-12T14:30:51Z,2020-02-15T06:59:56Z +14108,524,2,7014,8.99,2005-07-27T02:14:40Z,2020-02-15T06:59:56Z +14109,524,1,7040,4.99,2005-07-27T03:17:19Z,2020-02-15T06:59:56Z +14110,524,1,8507,6.99,2005-07-29T09:29:44Z,2020-02-15T06:59:56Z +14111,524,2,13626,2.99,2005-08-20T06:55:24Z,2020-02-15T06:59:56Z +14112,524,2,14046,4.99,2005-08-20T21:53:21Z,2020-02-15T06:59:56Z +14113,524,1,14178,2.99,2005-08-21T03:13:45Z,2020-02-15T06:59:56Z +14114,524,1,14366,2.99,2005-08-21T09:31:39Z,2020-02-15T06:59:56Z +14115,524,2,14680,1.99,2005-08-21T20:19:52Z,2020-02-15T06:59:56Z +14116,524,2,15206,6.99,2005-08-22T16:33:39Z,2020-02-15T06:59:56Z +14117,525,1,437,5.99,2005-05-27T17:47:22Z,2020-02-15T06:59:56Z +14118,525,2,1772,2.99,2005-06-16T18:12:54Z,2020-02-15T06:59:56Z +14119,525,1,3993,6.99,2005-07-06T23:37:06Z,2020-02-15T06:59:56Z +14120,525,1,5841,2.99,2005-07-10T17:11:31Z,2020-02-15T06:59:56Z +14121,525,2,6098,7.99,2005-07-11T06:23:28Z,2020-02-15T06:59:56Z +14122,525,2,6388,6.99,2005-07-11T22:17:16Z,2020-02-15T06:59:56Z +14123,525,1,6689,1.99,2005-07-12T12:22:13Z,2020-02-15T06:59:56Z +14124,525,2,7337,4.99,2005-07-27T14:12:04Z,2020-02-15T06:59:56Z +14125,525,2,7591,4.99,2005-07-27T23:25:54Z,2020-02-15T06:59:56Z +14126,525,1,8007,0.99,2005-07-28T15:22:27Z,2020-02-15T06:59:56Z +14127,525,1,8960,4.99,2005-07-30T03:36:31Z,2020-02-15T06:59:56Z +14128,525,2,9507,5.99,2005-07-31T00:22:29Z,2020-02-15T06:59:56Z +14129,525,1,9702,0.99,2005-07-31T07:34:07Z,2020-02-15T06:59:56Z +14130,525,1,10496,2.99,2005-08-01T10:53:16Z,2020-02-15T06:59:56Z +14131,525,2,11406,2.99,2005-08-02T19:16:10Z,2020-02-15T06:59:56Z +14132,525,1,11660,1.99,2005-08-17T05:22:42Z,2020-02-15T06:59:56Z +14133,525,1,15159,0.99,2005-08-22T14:32:25Z,2020-02-15T06:59:56Z +14134,525,2,15623,3.99,2005-08-23T07:23:29Z,2020-02-15T06:59:56Z +14135,525,1,14954,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14136,526,1,495,4.99,2005-05-28T00:40:48Z,2020-02-15T06:59:56Z +14137,526,2,679,4.99,2005-05-28T23:24:57Z,2020-02-15T06:59:56Z +14138,526,2,1015,2.99,2005-05-31T02:44:57Z,2020-02-15T06:59:56Z +14139,526,1,1255,4.99,2005-06-15T06:13:45Z,2020-02-15T06:59:56Z +14140,526,2,1848,0.99,2005-06-17T00:07:07Z,2020-02-15T06:59:56Z +14141,526,2,1865,7.99,2005-06-17T01:49:36Z,2020-02-15T06:59:56Z +14142,526,2,1972,2.99,2005-06-17T09:25:49Z,2020-02-15T06:59:56Z +14143,526,1,1981,2.99,2005-06-17T10:03:34Z,2020-02-15T06:59:56Z +14144,526,2,2398,4.99,2005-06-18T15:56:53Z,2020-02-15T06:59:56Z +14145,526,1,2828,2.99,2005-06-19T20:51:33Z,2020-02-15T06:59:56Z +14146,526,2,2932,6.99,2005-06-20T04:51:19Z,2020-02-15T06:59:56Z +14147,526,1,3339,6.99,2005-06-21T10:37:11Z,2020-02-15T06:59:56Z +14148,526,1,3619,1.99,2005-07-06T05:59:44Z,2020-02-15T06:59:56Z +14149,526,2,3905,5.99,2005-07-06T19:33:34Z,2020-02-15T06:59:56Z +14150,526,1,4423,6.99,2005-07-07T22:11:28Z,2020-02-15T06:59:56Z +14151,526,2,5056,2.99,2005-07-09T04:13:45Z,2020-02-15T06:59:56Z +14152,526,2,5121,3.99,2005-07-09T07:18:31Z,2020-02-15T06:59:56Z +14153,526,1,6316,7.99,2005-07-11T18:44:52Z,2020-02-15T06:59:56Z +14154,526,1,6404,4.99,2005-07-11T22:49:50Z,2020-02-15T06:59:56Z +14155,526,2,6650,2.99,2005-07-12T10:57:10Z,2020-02-15T06:59:56Z +14156,526,1,6671,3.99,2005-07-12T11:48:48Z,2020-02-15T06:59:56Z +14157,526,2,7270,7.99,2005-07-27T11:29:02Z,2020-02-15T06:59:56Z +14158,526,2,7343,0.99,2005-07-27T14:27:13Z,2020-02-15T06:59:56Z +14159,526,2,7399,1.99,2005-07-27T16:16:02Z,2020-02-15T06:59:56Z +14160,526,2,7543,5.99,2005-07-27T21:44:28Z,2020-02-15T06:59:56Z +14161,526,2,7883,2.99,2005-07-28T10:37:20Z,2020-02-15T06:59:56Z +14162,526,1,8053,4.99,2005-07-28T16:59:41Z,2020-02-15T06:59:56Z +14163,526,1,8232,4.99,2005-07-29T00:14:37Z,2020-02-15T06:59:56Z +14164,526,1,8441,2.99,2005-07-29T07:33:05Z,2020-02-15T06:59:56Z +14165,526,2,9577,6.99,2005-07-31T02:53:33Z,2020-02-15T06:59:56Z +14166,526,2,10020,4.99,2005-07-31T18:21:08Z,2020-02-15T06:59:56Z +14167,526,2,10199,2.99,2005-08-01T00:38:55Z,2020-02-15T06:59:56Z +14168,526,2,11046,4.99,2005-08-02T06:08:34Z,2020-02-15T06:59:56Z +14169,526,1,11503,10.99,2005-08-16T23:10:34Z,2020-02-15T06:59:56Z +14170,526,1,11612,2.99,2005-08-17T03:48:51Z,2020-02-15T06:59:56Z +14171,526,2,11702,4.99,2005-08-17T07:18:56Z,2020-02-15T06:59:56Z +14172,526,1,12607,0.99,2005-08-18T17:03:49Z,2020-02-15T06:59:56Z +14173,526,2,13224,8.99,2005-08-19T15:52:13Z,2020-02-15T06:59:56Z +14174,526,2,13580,0.99,2005-08-20T05:23:34Z,2020-02-15T06:59:56Z +14175,526,1,13617,8.99,2005-08-20T06:35:30Z,2020-02-15T06:59:56Z +14176,526,2,14487,6.99,2005-08-21T13:53:33Z,2020-02-15T06:59:56Z +14177,526,1,14590,7.99,2005-08-21T17:29:10Z,2020-02-15T06:59:56Z +14178,526,1,15168,2.99,2005-08-22T15:14:20Z,2020-02-15T06:59:56Z +14179,526,1,15395,4.99,2005-08-22T23:06:25Z,2020-02-15T06:59:56Z +14180,526,1,16043,9.99,2005-08-23T22:21:03Z,2020-02-15T06:59:56Z +14181,527,1,1398,2.99,2005-06-15T16:28:42Z,2020-02-15T06:59:56Z +14182,527,1,2422,0.99,2005-06-18T17:28:57Z,2020-02-15T06:59:56Z +14183,527,2,2496,0.99,2005-06-18T22:20:11Z,2020-02-15T06:59:56Z +14184,527,1,2539,2.99,2005-06-19T01:58:39Z,2020-02-15T06:59:56Z +14185,527,1,4888,0.99,2005-07-08T20:04:27Z,2020-02-15T06:59:56Z +14186,527,1,5365,0.99,2005-07-09T18:27:00Z,2020-02-15T06:59:56Z +14187,527,2,6003,3.99,2005-07-11T01:28:33Z,2020-02-15T06:59:56Z +14188,527,2,6011,4.99,2005-07-11T01:54:48Z,2020-02-15T06:59:56Z +14189,527,1,6050,2.99,2005-07-11T03:34:29Z,2020-02-15T06:59:56Z +14190,527,2,6975,1.99,2005-07-27T00:39:54Z,2020-02-15T06:59:56Z +14191,527,1,7506,8.99,2005-07-27T20:28:34Z,2020-02-15T06:59:56Z +14192,527,1,8854,0.99,2005-07-29T23:40:07Z,2020-02-15T06:59:56Z +14193,527,2,9750,0.99,2005-07-31T09:19:46Z,2020-02-15T06:59:56Z +14194,527,2,10486,3.99,2005-08-01T10:23:43Z,2020-02-15T06:59:56Z +14195,527,2,10613,0.99,2005-08-01T14:56:14Z,2020-02-15T06:59:56Z +14196,527,1,11013,5.99,2005-08-02T05:10:54Z,2020-02-15T06:59:56Z +14197,527,1,11150,2.99,2005-08-02T09:51:46Z,2020-02-15T06:59:56Z +14198,527,1,11624,0.99,2005-08-17T04:17:42Z,2020-02-15T06:59:56Z +14199,527,1,12136,7.99,2005-08-17T23:51:30Z,2020-02-15T06:59:56Z +14200,527,1,12513,6.99,2005-08-18T13:31:45Z,2020-02-15T06:59:56Z +14201,527,1,14352,6.99,2005-08-21T09:06:29Z,2020-02-15T06:59:56Z +14202,527,1,15144,2.99,2005-08-22T13:49:18Z,2020-02-15T06:59:56Z +14203,527,1,15552,3.99,2005-08-23T04:33:23Z,2020-02-15T06:59:56Z +14204,527,1,14267,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14205,528,1,204,0.99,2005-05-26T07:30:37Z,2020-02-15T06:59:56Z +14206,528,2,472,0.99,2005-05-27T21:36:15Z,2020-02-15T06:59:56Z +14207,528,1,533,5.99,2005-05-28T06:14:46Z,2020-02-15T06:59:56Z +14208,528,2,695,3.99,2005-05-29T01:50:53Z,2020-02-15T06:59:56Z +14209,528,2,793,5.99,2005-05-29T16:44:08Z,2020-02-15T06:59:56Z +14210,528,2,1875,2.99,2005-06-17T02:45:10Z,2020-02-15T06:59:56Z +14211,528,1,2019,4.99,2005-06-17T12:38:44Z,2020-02-15T06:59:56Z +14212,528,2,3654,4.99,2005-07-06T07:45:31Z,2020-02-15T06:59:56Z +14213,528,1,3664,0.99,2005-07-06T08:15:57Z,2020-02-15T06:59:56Z +14214,528,2,4050,9.99,2005-07-07T03:35:33Z,2020-02-15T06:59:56Z +14215,528,1,4593,5.99,2005-07-08T06:38:12Z,2020-02-15T06:59:56Z +14216,528,2,5215,3.99,2005-07-09T11:47:58Z,2020-02-15T06:59:56Z +14217,528,2,6561,0.99,2005-07-12T05:24:02Z,2020-02-15T06:59:56Z +14218,528,1,7569,7.99,2005-07-27T22:38:53Z,2020-02-15T06:59:56Z +14219,528,2,8112,4.99,2005-07-28T19:11:07Z,2020-02-15T06:59:56Z +14220,528,1,8727,3.99,2005-07-29T18:09:57Z,2020-02-15T06:59:56Z +14221,528,2,9488,8.99,2005-07-30T23:42:42Z,2020-02-15T06:59:56Z +14222,528,1,10084,3.99,2005-07-31T20:11:29Z,2020-02-15T06:59:56Z +14223,528,1,10673,0.99,2005-08-01T17:11:51Z,2020-02-15T06:59:56Z +14224,528,1,10880,2.99,2005-08-02T00:34:12Z,2020-02-15T06:59:56Z +14225,528,1,12818,3.99,2005-08-19T01:04:59Z,2020-02-15T06:59:56Z +14226,528,2,13518,2.99,2005-08-20T02:36:17Z,2020-02-15T06:59:56Z +14227,528,1,13600,7.99,2005-08-20T06:00:25Z,2020-02-15T06:59:56Z +14228,528,2,14148,2.99,2005-08-21T02:17:49Z,2020-02-15T06:59:56Z +14229,528,2,15880,6.99,2005-08-23T16:43:54Z,2020-02-15T06:59:56Z +14230,529,1,453,2.99,2005-05-27T19:31:16Z,2020-02-15T06:59:56Z +14231,529,1,1234,1.99,2005-06-15T04:21:52Z,2020-02-15T06:59:56Z +14232,529,2,1686,0.99,2005-06-16T12:08:20Z,2020-02-15T06:59:56Z +14233,529,2,3354,0.99,2005-06-21T11:29:49Z,2020-02-15T06:59:56Z +14234,529,2,4045,0.99,2005-07-07T03:26:14Z,2020-02-15T06:59:56Z +14235,529,2,4254,0.99,2005-07-07T14:13:52Z,2020-02-15T06:59:56Z +14236,529,2,4444,5.99,2005-07-07T23:07:44Z,2020-02-15T06:59:56Z +14237,529,1,4553,0.99,2005-07-08T04:43:41Z,2020-02-15T06:59:56Z +14238,529,1,5993,4.99,2005-07-11T01:06:41Z,2020-02-15T06:59:56Z +14239,529,2,6538,6.99,2005-07-12T04:50:26Z,2020-02-15T06:59:56Z +14240,529,2,6541,5.99,2005-07-12T04:53:41Z,2020-02-15T06:59:56Z +14241,529,1,6908,7.99,2005-07-12T22:08:46Z,2020-02-15T06:59:56Z +14242,529,1,7128,3.99,2005-07-27T06:14:36Z,2020-02-15T06:59:56Z +14243,529,2,8708,2.99,2005-07-29T17:24:13Z,2020-02-15T06:59:56Z +14244,529,1,8979,5.99,2005-07-30T04:20:25Z,2020-02-15T06:59:56Z +14245,529,2,9310,4.99,2005-07-30T16:57:09Z,2020-02-15T06:59:56Z +14246,529,2,9375,0.99,2005-07-30T19:10:17Z,2020-02-15T06:59:56Z +14247,529,2,10361,10.99,2005-08-01T05:53:49Z,2020-02-15T06:59:56Z +14248,529,1,11862,2.99,2005-08-17T13:54:53Z,2020-02-15T06:59:56Z +14249,529,2,12356,2.99,2005-08-18T07:37:05Z,2020-02-15T06:59:56Z +14250,529,1,12622,3.99,2005-08-18T17:34:11Z,2020-02-15T06:59:56Z +14251,529,1,13011,4.99,2005-08-19T07:53:58Z,2020-02-15T06:59:56Z +14252,529,2,13132,3.99,2005-08-19T12:10:57Z,2020-02-15T06:59:56Z +14253,529,1,13797,2.99,2005-08-20T12:33:36Z,2020-02-15T06:59:56Z +14254,529,2,13946,9.99,2005-08-20T17:44:32Z,2020-02-15T06:59:56Z +14255,529,2,14449,4.99,2005-08-21T12:13:18Z,2020-02-15T06:59:56Z +14256,529,2,14764,0.99,2005-08-21T23:37:47Z,2020-02-15T06:59:56Z +14257,529,1,14970,5.99,2005-08-22T06:49:29Z,2020-02-15T06:59:56Z +14258,529,2,15305,2.99,2005-08-22T19:46:05Z,2020-02-15T06:59:56Z +14259,530,1,851,0.99,2005-05-30T01:35:15Z,2020-02-15T06:59:56Z +14260,530,2,1273,1.99,2005-06-15T07:52:35Z,2020-02-15T06:59:56Z +14261,530,1,1516,0.99,2005-06-15T23:11:10Z,2020-02-15T06:59:56Z +14262,530,1,2158,2.99,2005-06-17T23:36:27Z,2020-02-15T06:59:56Z +14263,530,2,3669,2.99,2005-07-06T08:38:29Z,2020-02-15T06:59:56Z +14264,530,2,3887,4.99,2005-07-06T18:46:34Z,2020-02-15T06:59:56Z +14265,530,2,5663,0.99,2005-07-10T08:01:33Z,2020-02-15T06:59:56Z +14266,530,1,7031,3.99,2005-07-27T03:02:07Z,2020-02-15T06:59:56Z +14267,530,2,7075,1.99,2005-07-27T04:11:40Z,2020-02-15T06:59:56Z +14268,530,1,7218,4.99,2005-07-27T09:34:24Z,2020-02-15T06:59:56Z +14269,530,2,8208,4.99,2005-07-28T23:26:35Z,2020-02-15T06:59:56Z +14270,530,1,8736,0.99,2005-07-29T18:31:15Z,2020-02-15T06:59:56Z +14271,530,1,9914,4.99,2005-07-31T14:51:19Z,2020-02-15T06:59:56Z +14272,530,2,10211,3.99,2005-08-01T01:01:16Z,2020-02-15T06:59:56Z +14273,530,2,10504,4.99,2005-08-01T11:10:55Z,2020-02-15T06:59:56Z +14274,530,1,11326,0.99,2005-08-02T16:34:29Z,2020-02-15T06:59:56Z +14275,530,1,12220,4.99,2005-08-18T02:50:02Z,2020-02-15T06:59:56Z +14276,530,1,12387,2.99,2005-08-18T08:46:24Z,2020-02-15T06:59:56Z +14277,530,1,12649,4.99,2005-08-18T18:31:47Z,2020-02-15T06:59:56Z +14278,530,1,13998,5.99,2005-08-20T19:52:38Z,2020-02-15T06:59:56Z +14279,530,2,14707,5.99,2005-08-21T21:06:29Z,2020-02-15T06:59:56Z +14280,530,2,15066,0.99,2005-08-22T10:49:06Z,2020-02-15T06:59:56Z +14281,530,1,13561,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14282,531,1,233,4.99,2005-05-26T11:43:44Z,2020-02-15T06:59:56Z +14283,531,1,681,2.99,2005-05-28T23:39:44Z,2020-02-15T06:59:56Z +14284,531,2,2972,2.99,2005-06-20T07:57:54Z,2020-02-15T06:59:56Z +14285,531,2,3921,5.99,2005-07-06T20:29:48Z,2020-02-15T06:59:56Z +14286,531,1,5587,5.99,2005-07-10T04:17:25Z,2020-02-15T06:59:56Z +14287,531,2,5850,0.99,2005-07-10T17:36:27Z,2020-02-15T06:59:56Z +14288,531,2,5904,4.99,2005-07-10T20:39:44Z,2020-02-15T06:59:56Z +14289,531,1,6756,4.99,2005-07-12T15:08:28Z,2020-02-15T06:59:56Z +14290,531,1,6876,4.99,2005-07-12T20:32:50Z,2020-02-15T06:59:56Z +14291,531,2,7204,2.99,2005-07-27T09:02:31Z,2020-02-15T06:59:56Z +14292,531,1,7391,6.99,2005-07-27T16:00:00Z,2020-02-15T06:59:56Z +14293,531,2,7444,2.99,2005-07-27T17:49:16Z,2020-02-15T06:59:56Z +14294,531,2,7753,6.99,2005-07-28T06:09:19Z,2020-02-15T06:59:56Z +14295,531,2,8359,5.99,2005-07-29T05:02:12Z,2020-02-15T06:59:56Z +14296,531,2,8860,4.99,2005-07-29T23:45:57Z,2020-02-15T06:59:56Z +14297,531,2,8943,0.99,2005-07-30T03:06:48Z,2020-02-15T06:59:56Z +14298,531,2,9107,4.99,2005-07-30T08:52:45Z,2020-02-15T06:59:56Z +14299,531,2,10920,4.99,2005-08-02T02:14:10Z,2020-02-15T06:59:56Z +14300,531,1,10941,5.99,2005-08-02T03:11:33Z,2020-02-15T06:59:56Z +14301,531,2,11026,4.99,2005-08-02T05:46:05Z,2020-02-15T06:59:56Z +14302,531,1,11265,10.99,2005-08-02T14:05:42Z,2020-02-15T06:59:56Z +14303,531,1,11666,2.99,2005-08-17T05:45:10Z,2020-02-15T06:59:56Z +14304,531,1,12923,2.99,2005-08-19T04:50:20Z,2020-02-15T06:59:56Z +14305,531,2,13300,8.99,2005-08-19T18:46:56Z,2020-02-15T06:59:56Z +14306,531,2,15360,0.99,2005-08-22T21:36:51Z,2020-02-15T06:59:56Z +14307,532,1,43,2.99,2005-05-25T05:39:25Z,2020-02-15T06:59:56Z +14308,532,1,1694,4.99,2005-06-16T12:40:23Z,2020-02-15T06:59:56Z +14309,532,2,2821,3.99,2005-06-19T20:26:52Z,2020-02-15T06:59:56Z +14310,532,1,4336,2.99,2005-07-07T18:34:36Z,2020-02-15T06:59:56Z +14311,532,2,4962,4.99,2005-07-08T23:36:13Z,2020-02-15T06:59:56Z +14312,532,2,5190,2.99,2005-07-09T10:25:24Z,2020-02-15T06:59:56Z +14313,532,1,5253,7.99,2005-07-09T13:41:17Z,2020-02-15T06:59:56Z +14314,532,2,5278,4.99,2005-07-09T14:44:23Z,2020-02-15T06:59:56Z +14315,532,2,5805,8.99,2005-07-10T15:08:41Z,2020-02-15T06:59:56Z +14316,532,1,5887,2.99,2005-07-10T19:45:47Z,2020-02-15T06:59:56Z +14317,532,2,6345,7.99,2005-07-11T20:05:18Z,2020-02-15T06:59:56Z +14318,532,2,6598,4.99,2005-07-12T07:38:25Z,2020-02-15T06:59:56Z +14319,532,1,6730,3.99,2005-07-12T13:58:25Z,2020-02-15T06:59:56Z +14320,532,1,7192,4.99,2005-07-27T08:36:55Z,2020-02-15T06:59:56Z +14321,532,2,7572,2.99,2005-07-27T22:44:29Z,2020-02-15T06:59:56Z +14322,532,1,8273,5.99,2005-07-29T01:33:16Z,2020-02-15T06:59:56Z +14323,532,1,9843,2.99,2005-07-31T12:25:28Z,2020-02-15T06:59:56Z +14324,532,2,10286,6.99,2005-08-01T03:35:58Z,2020-02-15T06:59:56Z +14325,532,2,10712,5.99,2005-08-01T18:47:56Z,2020-02-15T06:59:56Z +14326,532,1,10945,5.99,2005-08-02T03:20:23Z,2020-02-15T06:59:56Z +14327,532,2,11251,2.99,2005-08-02T13:40:49Z,2020-02-15T06:59:56Z +14328,532,2,11318,4.99,2005-08-02T16:09:11Z,2020-02-15T06:59:56Z +14329,532,2,12061,3.99,2005-08-17T21:13:35Z,2020-02-15T06:59:56Z +14330,532,2,12295,5.99,2005-08-18T05:15:46Z,2020-02-15T06:59:56Z +14331,532,2,13038,4.99,2005-08-19T08:55:16Z,2020-02-15T06:59:56Z +14332,532,1,13192,8.99,2005-08-19T14:30:06Z,2020-02-15T06:59:56Z +14333,532,1,13254,4.99,2005-08-19T16:54:01Z,2020-02-15T06:59:56Z +14334,532,1,13908,4.99,2005-08-20T16:21:40Z,2020-02-15T06:59:56Z +14335,532,2,15180,0.99,2005-08-22T15:42:57Z,2020-02-15T06:59:56Z +14336,532,2,15414,1.99,2005-08-22T23:43:54Z,2020-02-15T06:59:56Z +14337,532,1,16014,5.99,2005-08-23T21:18:31Z,2020-02-15T06:59:56Z +14338,532,1,14616,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14339,533,1,173,0.99,2005-05-26T03:42:10Z,2020-02-15T06:59:56Z +14340,533,2,190,1.99,2005-05-26T06:11:28Z,2020-02-15T06:59:56Z +14341,533,1,615,5.99,2005-05-28T15:35:52Z,2020-02-15T06:59:56Z +14342,533,1,1421,5.99,2005-06-15T17:57:04Z,2020-02-15T06:59:56Z +14343,533,1,1652,0.99,2005-06-16T09:31:37Z,2020-02-15T06:59:56Z +14344,533,1,1859,0.99,2005-06-17T01:13:38Z,2020-02-15T06:59:56Z +14345,533,1,1954,2.99,2005-06-17T08:37:55Z,2020-02-15T06:59:56Z +14346,533,2,2770,6.99,2005-06-19T17:54:22Z,2020-02-15T06:59:56Z +14347,533,1,2956,0.99,2005-06-20T06:47:23Z,2020-02-15T06:59:56Z +14348,533,1,4112,8.99,2005-07-07T06:49:09Z,2020-02-15T06:59:56Z +14349,533,1,4788,4.99,2005-07-08T16:17:35Z,2020-02-15T06:59:56Z +14350,533,2,6781,2.99,2005-07-12T16:21:47Z,2020-02-15T06:59:56Z +14351,533,2,6834,0.99,2005-07-12T18:53:37Z,2020-02-15T06:59:56Z +14352,533,2,6837,9.99,2005-07-12T18:59:45Z,2020-02-15T06:59:56Z +14353,533,2,7555,4.99,2005-07-27T22:17:05Z,2020-02-15T06:59:56Z +14354,533,1,8093,8.99,2005-07-28T18:29:16Z,2020-02-15T06:59:56Z +14355,533,2,8104,2.99,2005-07-28T18:59:36Z,2020-02-15T06:59:56Z +14356,533,2,8250,2.99,2005-07-29T00:49:15Z,2020-02-15T06:59:56Z +14357,533,1,8471,2.99,2005-07-29T08:32:11Z,2020-02-15T06:59:56Z +14358,533,1,8676,1.99,2005-07-29T15:59:06Z,2020-02-15T06:59:56Z +14359,533,2,8786,1.99,2005-07-29T20:39:49Z,2020-02-15T06:59:56Z +14360,533,2,10090,3.99,2005-07-31T20:22:01Z,2020-02-15T06:59:56Z +14361,533,1,10380,2.99,2005-08-01T06:34:36Z,2020-02-15T06:59:56Z +14362,533,1,10614,6.99,2005-08-01T14:57:00Z,2020-02-15T06:59:56Z +14363,533,2,11524,7.99,2005-08-17T00:10:55Z,2020-02-15T06:59:56Z +14364,533,1,11758,8.99,2005-08-17T09:33:02Z,2020-02-15T06:59:56Z +14365,533,1,11918,2.99,2005-08-17T16:08:42Z,2020-02-15T06:59:56Z +14366,533,1,12602,0.99,2005-08-18T16:49:50Z,2020-02-15T06:59:56Z +14367,533,1,12655,6.99,2005-08-18T18:57:44Z,2020-02-15T06:59:56Z +14368,533,1,14263,7.99,2005-08-21T06:08:15Z,2020-02-15T06:59:56Z +14369,533,1,14800,4.99,2005-08-22T00:46:18Z,2020-02-15T06:59:56Z +14370,533,2,16006,0.99,2005-08-23T21:01:09Z,2020-02-15T06:59:56Z +14371,533,2,14018,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14372,534,2,304,5.99,2005-05-26T21:21:28Z,2020-02-15T06:59:56Z +14373,534,2,940,0.99,2005-05-30T15:01:02Z,2020-02-15T06:59:56Z +14374,534,1,1610,4.99,2005-06-16T06:36:33Z,2020-02-15T06:59:56Z +14375,534,1,1673,2.99,2005-06-16T10:40:17Z,2020-02-15T06:59:56Z +14376,534,1,2436,0.99,2005-06-18T18:13:32Z,2020-02-15T06:59:56Z +14377,534,2,3213,1.99,2005-06-21T01:05:19Z,2020-02-15T06:59:56Z +14378,534,1,3216,4.99,2005-06-21T01:19:37Z,2020-02-15T06:59:56Z +14379,534,1,3735,2.99,2005-07-06T11:42:04Z,2020-02-15T06:59:56Z +14380,534,2,4998,4.99,2005-07-09T01:07:21Z,2020-02-15T06:59:56Z +14381,534,2,7113,2.99,2005-07-27T05:41:20Z,2020-02-15T06:59:56Z +14382,534,1,7662,2.99,2005-07-28T02:16:08Z,2020-02-15T06:59:56Z +14383,534,2,8633,0.99,2005-07-29T14:19:53Z,2020-02-15T06:59:56Z +14384,534,1,9456,5.99,2005-07-30T22:22:16Z,2020-02-15T06:59:56Z +14385,534,2,9464,4.99,2005-07-30T22:31:31Z,2020-02-15T06:59:56Z +14386,534,2,10465,5.99,2005-08-01T09:45:25Z,2020-02-15T06:59:56Z +14387,534,2,10725,6.99,2005-08-01T19:11:04Z,2020-02-15T06:59:56Z +14388,534,1,10796,0.99,2005-08-01T21:56:41Z,2020-02-15T06:59:56Z +14389,534,2,11180,5.99,2005-08-02T10:54:30Z,2020-02-15T06:59:56Z +14390,534,2,12305,2.99,2005-08-18T05:46:29Z,2020-02-15T06:59:56Z +14391,534,1,12691,5.99,2005-08-18T20:07:46Z,2020-02-15T06:59:56Z +14392,534,2,12798,4.99,2005-08-19T00:24:33Z,2020-02-15T06:59:56Z +14393,534,2,13294,0.99,2005-08-19T18:36:35Z,2020-02-15T06:59:56Z +14394,534,2,14816,1.99,2005-08-22T01:15:51Z,2020-02-15T06:59:56Z +14395,534,1,14526,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14396,535,1,37,0.99,2005-05-25T04:44:31Z,2020-02-15T06:59:56Z +14397,535,2,541,2.99,2005-05-28T06:41:58Z,2020-02-15T06:59:56Z +14398,535,1,778,3.99,2005-05-29T14:09:53Z,2020-02-15T06:59:56Z +14399,535,2,959,4.99,2005-05-30T18:07:00Z,2020-02-15T06:59:56Z +14400,535,1,1712,4.99,2005-06-16T14:25:09Z,2020-02-15T06:59:56Z +14401,535,1,3228,4.99,2005-06-21T02:20:24Z,2020-02-15T06:59:56Z +14402,535,1,4331,4.99,2005-07-07T18:22:30Z,2020-02-15T06:59:56Z +14403,535,1,4718,6.99,2005-07-08T12:32:08Z,2020-02-15T06:59:56Z +14404,535,1,4743,2.99,2005-07-08T13:42:36Z,2020-02-15T06:59:56Z +14405,535,2,4914,6.99,2005-07-08T21:30:53Z,2020-02-15T06:59:56Z +14406,535,1,5588,0.99,2005-07-10T04:21:10Z,2020-02-15T06:59:56Z +14407,535,2,5890,8.99,2005-07-10T20:00:25Z,2020-02-15T06:59:56Z +14408,535,1,6504,2.99,2005-07-12T03:19:14Z,2020-02-15T06:59:56Z +14409,535,1,8395,2.99,2005-07-29T06:03:30Z,2020-02-15T06:59:56Z +14410,535,1,8645,4.99,2005-07-29T14:47:45Z,2020-02-15T06:59:56Z +14411,535,2,9440,0.99,2005-07-30T21:40:15Z,2020-02-15T06:59:56Z +14412,535,1,9524,4.99,2005-07-31T01:01:06Z,2020-02-15T06:59:56Z +14413,535,2,10322,5.99,2005-08-01T04:44:13Z,2020-02-15T06:59:56Z +14414,535,2,10353,3.99,2005-08-01T05:46:33Z,2020-02-15T06:59:56Z +14415,535,2,11736,8.99,2005-08-17T08:40:55Z,2020-02-15T06:59:56Z +14416,535,1,11855,7.99,2005-08-17T13:43:07Z,2020-02-15T06:59:56Z +14417,535,2,12168,2.99,2005-08-18T01:03:52Z,2020-02-15T06:59:56Z +14418,535,1,12233,0.99,2005-08-18T03:16:54Z,2020-02-15T06:59:56Z +14419,535,2,12673,4.99,2005-08-18T19:21:56Z,2020-02-15T06:59:56Z +14420,535,1,12732,0.99,2005-08-18T21:57:50Z,2020-02-15T06:59:56Z +14421,535,2,12750,1.99,2005-08-18T22:32:39Z,2020-02-15T06:59:56Z +14422,535,1,13631,4.99,2005-08-20T07:07:37Z,2020-02-15T06:59:56Z +14423,535,1,13852,0.99,2005-08-20T14:45:23Z,2020-02-15T06:59:56Z +14424,535,1,14522,4.99,2005-08-21T15:01:34Z,2020-02-15T06:59:56Z +14425,535,2,15075,5.99,2005-08-22T11:04:52Z,2020-02-15T06:59:56Z +14426,535,1,15287,6.99,2005-08-22T19:19:37Z,2020-02-15T06:59:56Z +14427,535,1,16017,0.99,2005-08-23T21:27:11Z,2020-02-15T06:59:56Z +14428,536,1,237,0.99,2005-05-26T12:15:13Z,2020-02-15T06:59:56Z +14429,536,1,929,6.99,2005-05-30T12:32:39Z,2020-02-15T06:59:56Z +14430,536,1,1582,4.99,2005-06-16T04:31:57Z,2020-02-15T06:59:56Z +14431,536,2,1962,2.99,2005-06-17T09:08:58Z,2020-02-15T06:59:56Z +14432,536,2,2403,2.99,2005-06-18T16:33:22Z,2020-02-15T06:59:56Z +14433,536,1,3483,4.99,2005-07-05T23:13:51Z,2020-02-15T06:59:56Z +14434,536,1,3514,0.99,2005-07-06T00:46:54Z,2020-02-15T06:59:56Z +14435,536,1,4448,2.99,2005-07-07T23:17:12Z,2020-02-15T06:59:56Z +14436,536,2,5196,0.99,2005-07-09T10:43:34Z,2020-02-15T06:59:56Z +14437,536,1,6400,5.99,2005-07-11T22:43:44Z,2020-02-15T06:59:56Z +14438,536,1,7065,4.99,2005-07-27T03:53:43Z,2020-02-15T06:59:56Z +14439,536,2,8535,4.99,2005-07-29T10:32:33Z,2020-02-15T06:59:56Z +14440,536,1,8679,4.99,2005-07-29T16:07:47Z,2020-02-15T06:59:56Z +14441,536,1,8958,2.99,2005-07-30T03:34:26Z,2020-02-15T06:59:56Z +14442,536,1,9411,8.99,2005-07-30T20:38:22Z,2020-02-15T06:59:56Z +14443,536,1,9727,4.99,2005-07-31T08:39:13Z,2020-02-15T06:59:56Z +14444,536,2,10019,3.99,2005-07-31T18:20:56Z,2020-02-15T06:59:56Z +14445,536,1,11473,6.99,2005-08-02T21:52:03Z,2020-02-15T06:59:56Z +14446,536,1,11826,2.99,2005-08-17T12:43:46Z,2020-02-15T06:59:56Z +14447,536,2,11977,4.99,2005-08-17T18:01:15Z,2020-02-15T06:59:56Z +14448,536,2,12052,8.99,2005-08-17T20:57:02Z,2020-02-15T06:59:56Z +14449,536,2,13505,4.99,2005-08-20T02:05:57Z,2020-02-15T06:59:56Z +14450,536,1,15130,7.99,2005-08-22T13:04:32Z,2020-02-15T06:59:56Z +14451,536,1,15978,8.99,2005-08-23T20:08:18Z,2020-02-15T06:59:56Z +14452,536,1,15979,0.99,2005-08-23T20:08:26Z,2020-02-15T06:59:56Z +14453,537,2,603,4.99,2005-05-28T14:27:51Z,2020-02-15T06:59:56Z +14454,537,1,1445,2.99,2005-06-15T19:10:07Z,2020-02-15T06:59:56Z +14455,537,2,2184,2.99,2005-06-18T01:10:36Z,2020-02-15T06:59:56Z +14456,537,1,2586,8.99,2005-06-19T05:05:11Z,2020-02-15T06:59:56Z +14457,537,2,3134,8.99,2005-06-20T19:29:09Z,2020-02-15T06:59:56Z +14458,537,1,3555,0.99,2005-07-06T02:45:35Z,2020-02-15T06:59:56Z +14459,537,2,3853,0.99,2005-07-06T16:59:20Z,2020-02-15T06:59:56Z +14460,537,1,5630,2.99,2005-07-10T06:08:14Z,2020-02-15T06:59:56Z +14461,537,2,5877,5.99,2005-07-10T19:08:51Z,2020-02-15T06:59:56Z +14462,537,2,6310,2.99,2005-07-11T18:14:05Z,2020-02-15T06:59:56Z +14463,537,1,6409,4.99,2005-07-11T23:05:49Z,2020-02-15T06:59:56Z +14464,537,1,6746,0.99,2005-07-12T14:33:01Z,2020-02-15T06:59:56Z +14465,537,1,7179,2.99,2005-07-27T08:10:29Z,2020-02-15T06:59:56Z +14466,537,2,7810,4.99,2005-07-28T08:00:38Z,2020-02-15T06:59:56Z +14467,537,2,8126,4.99,2005-07-28T19:32:41Z,2020-02-15T06:59:56Z +14468,537,2,8256,4.99,2005-07-29T01:02:42Z,2020-02-15T06:59:56Z +14469,537,1,9967,2.99,2005-07-31T16:31:17Z,2020-02-15T06:59:56Z +14470,537,2,12984,4.99,2005-08-19T07:06:51Z,2020-02-15T06:59:56Z +14471,537,2,13885,4.99,2005-08-20T15:32:09Z,2020-02-15T06:59:56Z +14472,537,1,14010,4.99,2005-08-20T20:29:46Z,2020-02-15T06:59:56Z +14473,537,2,14506,0.99,2005-08-21T14:32:27Z,2020-02-15T06:59:56Z +14474,537,1,14670,0.99,2005-08-21T19:54:11Z,2020-02-15T06:59:56Z +14475,537,1,15149,2.99,2005-08-22T14:08:06Z,2020-02-15T06:59:56Z +14476,537,1,15832,8.99,2005-08-23T15:21:35Z,2020-02-15T06:59:56Z +14477,537,1,13419,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14478,538,2,594,2.99,2005-05-28T13:41:56Z,2020-02-15T06:59:56Z +14479,538,2,734,4.99,2005-05-29T07:38:52Z,2020-02-15T06:59:56Z +14480,538,1,1314,5.99,2005-06-15T10:21:45Z,2020-02-15T06:59:56Z +14481,538,1,1912,4.99,2005-06-17T05:18:32Z,2020-02-15T06:59:56Z +14482,538,1,2682,4.99,2005-06-19T12:18:17Z,2020-02-15T06:59:56Z +14483,538,2,3189,2.99,2005-06-20T23:19:33Z,2020-02-15T06:59:56Z +14484,538,2,3554,4.99,2005-07-06T02:37:10Z,2020-02-15T06:59:56Z +14485,538,2,5135,8.99,2005-07-09T07:53:22Z,2020-02-15T06:59:56Z +14486,538,1,5369,4.99,2005-07-09T18:42:16Z,2020-02-15T06:59:56Z +14487,538,1,5486,2.99,2005-07-09T23:57:44Z,2020-02-15T06:59:56Z +14488,538,1,5898,2.99,2005-07-10T20:18:09Z,2020-02-15T06:59:56Z +14489,538,2,6130,2.99,2005-07-11T08:19:56Z,2020-02-15T06:59:56Z +14490,538,1,6332,0.99,2005-07-11T19:19:06Z,2020-02-15T06:59:56Z +14491,538,2,6936,0.99,2005-07-26T23:13:34Z,2020-02-15T06:59:56Z +14492,538,1,7694,0.99,2005-07-28T03:39:25Z,2020-02-15T06:59:56Z +14493,538,1,8765,0.99,2005-07-29T19:40:08Z,2020-02-15T06:59:56Z +14494,538,1,9307,0.99,2005-07-30T16:52:43Z,2020-02-15T06:59:56Z +14495,538,1,9643,4.99,2005-07-31T05:35:48Z,2020-02-15T06:59:56Z +14496,538,2,9897,4.99,2005-07-31T14:11:57Z,2020-02-15T06:59:56Z +14497,538,2,9939,8.99,2005-07-31T15:29:00Z,2020-02-15T06:59:56Z +14498,538,2,10701,3.99,2005-08-01T18:28:17Z,2020-02-15T06:59:56Z +14499,538,1,10732,5.99,2005-08-01T19:25:18Z,2020-02-15T06:59:56Z +14500,538,1,10962,4.99,2005-08-02T03:48:13Z,2020-02-15T06:59:56Z +14501,538,2,12089,5.99,2005-08-17T22:20:29Z,2020-02-15T06:59:56Z +14502,538,1,13544,1.99,2005-08-20T03:44:26Z,2020-02-15T06:59:56Z +14503,538,2,13770,4.99,2005-08-20T11:45:54Z,2020-02-15T06:59:56Z +14504,538,2,14572,2.99,2005-08-21T16:44:31Z,2020-02-15T06:59:56Z +14505,538,1,14591,0.99,2005-08-21T17:30:09Z,2020-02-15T06:59:56Z +14506,538,1,15343,6.99,2005-08-22T21:01:25Z,2020-02-15T06:59:56Z +14507,539,2,250,4.99,2005-05-26T14:30:24Z,2020-02-15T06:59:56Z +14508,539,1,342,0.99,2005-05-27T04:11:04Z,2020-02-15T06:59:56Z +14509,539,2,1282,3.99,2005-06-15T08:25:33Z,2020-02-15T06:59:56Z +14510,539,1,1327,0.99,2005-06-15T11:11:39Z,2020-02-15T06:59:56Z +14511,539,2,1444,4.99,2005-06-15T19:08:16Z,2020-02-15T06:59:56Z +14512,539,1,4035,2.99,2005-07-07T02:45:02Z,2020-02-15T06:59:56Z +14513,539,1,4247,0.99,2005-07-07T13:51:54Z,2020-02-15T06:59:56Z +14514,539,2,5086,4.99,2005-07-09T05:40:04Z,2020-02-15T06:59:56Z +14515,539,2,5139,7.99,2005-07-09T08:01:51Z,2020-02-15T06:59:56Z +14516,539,2,5493,2.99,2005-07-10T00:11:44Z,2020-02-15T06:59:56Z +14517,539,2,6874,5.99,2005-07-12T20:20:53Z,2020-02-15T06:59:56Z +14518,539,1,7781,2.99,2005-07-28T07:13:20Z,2020-02-15T06:59:56Z +14519,539,2,8247,6.99,2005-07-29T00:41:38Z,2020-02-15T06:59:56Z +14520,539,2,8761,5.99,2005-07-29T19:26:47Z,2020-02-15T06:59:56Z +14521,539,2,9250,0.99,2005-07-30T14:18:16Z,2020-02-15T06:59:56Z +14522,539,1,9777,7.99,2005-07-31T10:01:06Z,2020-02-15T06:59:56Z +14523,539,1,9796,4.99,2005-07-31T10:52:43Z,2020-02-15T06:59:56Z +14524,539,2,10922,3.99,2005-08-02T02:14:40Z,2020-02-15T06:59:56Z +14525,539,1,12848,2.99,2005-08-19T02:05:11Z,2020-02-15T06:59:56Z +14526,539,2,13615,2.99,2005-08-20T06:28:53Z,2020-02-15T06:59:56Z +14527,539,2,13778,5.99,2005-08-20T12:03:44Z,2020-02-15T06:59:56Z +14528,539,1,15356,2.99,2005-08-22T21:24:19Z,2020-02-15T06:59:56Z +14529,540,2,1263,2.99,2005-06-15T06:56:39Z,2020-02-15T06:59:56Z +14530,540,2,1290,4.99,2005-06-15T08:52:44Z,2020-02-15T06:59:56Z +14531,540,2,2640,2.99,2005-06-19T09:26:13Z,2020-02-15T06:59:56Z +14532,540,1,2953,3.99,2005-06-20T06:39:11Z,2020-02-15T06:59:56Z +14533,540,1,3340,3.99,2005-06-21T10:37:23Z,2020-02-15T06:59:56Z +14534,540,2,4628,4.99,2005-07-08T08:25:52Z,2020-02-15T06:59:56Z +14535,540,2,4991,4.99,2005-07-09T00:49:03Z,2020-02-15T06:59:56Z +14536,540,1,6103,2.99,2005-07-11T06:59:55Z,2020-02-15T06:59:56Z +14537,540,2,6145,7.99,2005-07-11T09:07:01Z,2020-02-15T06:59:56Z +14538,540,2,6182,2.99,2005-07-11T11:11:38Z,2020-02-15T06:59:56Z +14539,540,1,6748,6.99,2005-07-12T14:39:27Z,2020-02-15T06:59:56Z +14540,540,1,6919,0.99,2005-07-12T22:32:17Z,2020-02-15T06:59:56Z +14541,540,2,9762,4.99,2005-07-31T09:32:54Z,2020-02-15T06:59:56Z +14542,540,2,9815,2.99,2005-07-31T11:30:51Z,2020-02-15T06:59:56Z +14543,540,1,10924,8.99,2005-08-02T02:20:19Z,2020-02-15T06:59:56Z +14544,540,1,11198,3.99,2005-08-02T11:45:15Z,2020-02-15T06:59:56Z +14545,540,2,11324,4.99,2005-08-02T16:31:17Z,2020-02-15T06:59:56Z +14546,540,2,11432,6.99,2005-08-02T20:10:01Z,2020-02-15T06:59:56Z +14547,540,2,12058,8.99,2005-08-17T21:07:41Z,2020-02-15T06:59:56Z +14548,540,2,12201,4.99,2005-08-18T02:14:06Z,2020-02-15T06:59:56Z +14549,540,1,12300,6.99,2005-08-18T05:36:14Z,2020-02-15T06:59:56Z +14550,540,2,14910,0.99,2005-08-22T04:50:52Z,2020-02-15T06:59:56Z +14551,540,2,15079,2.99,2005-08-22T11:09:56Z,2020-02-15T06:59:56Z +14552,540,2,15953,3.99,2005-08-23T19:13:46Z,2020-02-15T06:59:56Z +14553,541,1,1021,7.99,2005-05-31T03:16:15Z,2020-02-15T06:59:56Z +14554,541,1,1066,4.99,2005-05-31T09:07:33Z,2020-02-15T06:59:56Z +14555,541,2,1986,2.99,2005-06-17T10:34:59Z,2020-02-15T06:59:56Z +14556,541,1,2708,6.99,2005-06-19T13:59:05Z,2020-02-15T06:59:56Z +14557,541,1,5018,2.99,2005-07-09T02:01:05Z,2020-02-15T06:59:56Z +14558,541,2,5197,4.99,2005-07-09T10:43:54Z,2020-02-15T06:59:56Z +14559,541,2,6468,7.99,2005-07-12T01:27:09Z,2020-02-15T06:59:56Z +14560,541,2,6718,2.99,2005-07-12T13:38:06Z,2020-02-15T06:59:56Z +14561,541,1,8113,8.99,2005-07-28T19:14:00Z,2020-02-15T06:59:56Z +14562,541,1,8322,4.99,2005-07-29T03:52:49Z,2020-02-15T06:59:56Z +14563,541,2,9603,0.99,2005-07-31T03:43:43Z,2020-02-15T06:59:56Z +14564,541,1,10306,5.99,2005-08-01T04:19:18Z,2020-02-15T06:59:56Z +14565,541,2,11273,0.99,2005-08-02T14:20:55Z,2020-02-15T06:59:56Z +14566,541,1,12306,4.99,2005-08-18T05:47:55Z,2020-02-15T06:59:56Z +14567,541,2,12395,4.99,2005-08-18T09:06:30Z,2020-02-15T06:59:56Z +14568,541,1,12894,7.99,2005-08-19T03:49:28Z,2020-02-15T06:59:56Z +14569,541,2,13239,4.99,2005-08-19T16:22:13Z,2020-02-15T06:59:56Z +14570,541,2,13640,0.99,2005-08-20T07:22:53Z,2020-02-15T06:59:56Z +14571,541,2,14938,6.99,2005-08-22T05:52:39Z,2020-02-15T06:59:56Z +14572,541,1,15071,4.99,2005-08-22T10:58:43Z,2020-02-15T06:59:56Z +14573,541,2,15141,3.99,2005-08-22T13:41:49Z,2020-02-15T06:59:56Z +14574,541,1,15223,1.99,2005-08-22T17:13:39Z,2020-02-15T06:59:56Z +14575,541,1,15421,0.99,2005-08-22T23:56:37Z,2020-02-15T06:59:56Z +14576,541,2,15924,1.99,2005-08-23T18:08:59Z,2020-02-15T06:59:56Z +14577,542,1,220,4.99,2005-05-26T10:06:49Z,2020-02-15T06:59:56Z +14578,542,2,376,4.99,2005-05-27T08:58:15Z,2020-02-15T06:59:56Z +14579,542,1,2610,4.99,2005-06-19T07:16:20Z,2020-02-15T06:59:56Z +14580,542,2,2957,10.99,2005-06-20T06:53:47Z,2020-02-15T06:59:56Z +14581,542,2,5293,0.99,2005-07-09T15:17:23Z,2020-02-15T06:59:56Z +14582,542,1,5477,6.99,2005-07-09T23:43:49Z,2020-02-15T06:59:56Z +14583,542,2,6077,5.99,2005-07-11T05:06:08Z,2020-02-15T06:59:56Z +14584,542,2,6325,5.99,2005-07-11T19:06:01Z,2020-02-15T06:59:56Z +14585,542,1,6887,9.99,2005-07-12T21:00:23Z,2020-02-15T06:59:56Z +14586,542,2,7672,8.99,2005-07-28T02:49:41Z,2020-02-15T06:59:56Z +14587,542,1,8533,4.99,2005-07-29T10:29:16Z,2020-02-15T06:59:56Z +14588,542,2,8544,3.99,2005-07-29T11:02:08Z,2020-02-15T06:59:56Z +14589,542,1,10280,4.99,2005-08-01T03:27:15Z,2020-02-15T06:59:56Z +14590,542,2,11583,0.99,2005-08-17T02:08:13Z,2020-02-15T06:59:56Z +14591,542,2,11903,2.99,2005-08-17T15:37:45Z,2020-02-15T06:59:56Z +14592,542,1,12819,0.99,2005-08-19T01:05:05Z,2020-02-15T06:59:56Z +14593,542,1,13447,0.99,2005-08-20T00:09:36Z,2020-02-15T06:59:56Z +14594,542,2,14982,9.99,2005-08-22T07:20:55Z,2020-02-15T06:59:56Z +14595,543,1,243,6.99,2005-05-26T13:06:05Z,2020-02-15T06:59:56Z +14596,543,2,476,1.99,2005-05-27T22:31:36Z,2020-02-15T06:59:56Z +14597,543,2,1720,4.99,2005-06-16T15:00:14Z,2020-02-15T06:59:56Z +14598,543,1,2426,2.99,2005-06-18T17:40:44Z,2020-02-15T06:59:56Z +14599,543,2,3070,4.99,2005-06-20T14:15:39Z,2020-02-15T06:59:56Z +14600,543,1,3128,2.99,2005-06-20T18:41:47Z,2020-02-15T06:59:56Z +14601,543,2,3467,5.99,2005-06-21T22:19:25Z,2020-02-15T06:59:56Z +14602,543,1,4887,2.99,2005-07-08T19:59:14Z,2020-02-15T06:59:56Z +14603,543,2,5467,4.99,2005-07-09T23:05:47Z,2020-02-15T06:59:56Z +14604,543,2,6013,4.99,2005-07-11T02:02:03Z,2020-02-15T06:59:56Z +14605,543,2,7312,2.99,2005-07-27T13:03:14Z,2020-02-15T06:59:56Z +14606,543,1,8580,2.99,2005-07-29T12:00:27Z,2020-02-15T06:59:56Z +14607,543,2,8845,4.99,2005-07-29T23:06:13Z,2020-02-15T06:59:56Z +14608,543,1,9505,2.99,2005-07-31T00:11:19Z,2020-02-15T06:59:56Z +14609,543,1,9999,0.99,2005-07-31T17:40:53Z,2020-02-15T06:59:56Z +14610,543,2,10257,0.99,2005-08-01T02:49:43Z,2020-02-15T06:59:56Z +14611,543,1,10520,4.99,2005-08-01T11:45:58Z,2020-02-15T06:59:56Z +14612,543,2,11241,9.99,2005-08-02T13:29:24Z,2020-02-15T06:59:56Z +14613,543,1,11681,2.99,2005-08-17T06:13:30Z,2020-02-15T06:59:56Z +14614,543,1,13187,0.99,2005-08-19T14:24:48Z,2020-02-15T06:59:56Z +14615,543,2,15281,1.99,2005-08-22T19:10:26Z,2020-02-15T06:59:56Z +14616,543,1,15785,1.99,2005-08-23T13:46:27Z,2020-02-15T06:59:56Z +14617,544,1,397,2.99,2005-05-27T12:29:02Z,2020-02-15T06:59:56Z +14618,544,1,864,2.99,2005-05-30T03:27:17Z,2020-02-15T06:59:56Z +14619,544,1,1248,1.99,2005-06-15T05:33:52Z,2020-02-15T06:59:56Z +14620,544,2,1434,10.99,2005-06-15T18:30:46Z,2020-02-15T06:59:56Z +14621,544,1,2373,0.99,2005-06-18T14:37:57Z,2020-02-15T06:59:56Z +14622,544,1,2395,2.99,2005-06-18T15:45:15Z,2020-02-15T06:59:56Z +14623,544,1,4395,0.99,2005-07-07T21:13:22Z,2020-02-15T06:59:56Z +14624,544,1,4703,2.99,2005-07-08T11:44:56Z,2020-02-15T06:59:56Z +14625,544,2,4847,6.99,2005-07-08T18:29:13Z,2020-02-15T06:59:56Z +14626,544,2,8566,2.99,2005-07-29T11:35:46Z,2020-02-15T06:59:56Z +14627,544,1,8937,5.99,2005-07-30T02:53:21Z,2020-02-15T06:59:56Z +14628,544,1,8963,9.99,2005-07-30T03:46:26Z,2020-02-15T06:59:56Z +14629,544,1,10735,0.99,2005-08-01T19:29:45Z,2020-02-15T06:59:56Z +14630,544,1,11401,3.99,2005-08-02T19:05:06Z,2020-02-15T06:59:56Z +14631,544,2,11766,2.99,2005-08-17T09:58:40Z,2020-02-15T06:59:56Z +14632,544,2,12640,3.99,2005-08-18T18:14:49Z,2020-02-15T06:59:56Z +14633,544,2,14142,4.99,2005-08-21T02:07:43Z,2020-02-15T06:59:56Z +14634,544,1,14498,4.99,2005-08-21T14:10:44Z,2020-02-15T06:59:56Z +14635,544,2,14651,8.99,2005-08-21T19:31:09Z,2020-02-15T06:59:56Z +14636,544,1,14981,2.99,2005-08-22T07:19:05Z,2020-02-15T06:59:56Z +14637,544,1,15219,6.99,2005-08-22T17:00:31Z,2020-02-15T06:59:56Z +14638,544,1,15605,4.99,2005-08-23T06:48:47Z,2020-02-15T06:59:56Z +14639,545,2,248,0.99,2005-05-26T14:07:58Z,2020-02-15T06:59:56Z +14640,545,2,715,3.99,2005-05-29T04:22:41Z,2020-02-15T06:59:56Z +14641,545,1,2123,2.99,2005-06-17T20:48:30Z,2020-02-15T06:59:56Z +14642,545,2,3693,8.99,2005-07-06T09:56:09Z,2020-02-15T06:59:56Z +14643,545,1,3975,5.99,2005-07-06T23:00:09Z,2020-02-15T06:59:56Z +14644,545,1,4597,5.99,2005-07-08T06:43:42Z,2020-02-15T06:59:56Z +14645,545,1,5264,0.99,2005-07-09T14:11:28Z,2020-02-15T06:59:56Z +14646,545,1,7078,5.99,2005-07-27T04:16:37Z,2020-02-15T06:59:56Z +14647,545,2,8599,3.99,2005-07-29T12:58:52Z,2020-02-15T06:59:56Z +14648,545,2,8848,2.99,2005-07-29T23:20:58Z,2020-02-15T06:59:56Z +14649,545,2,9810,2.99,2005-07-31T11:22:41Z,2020-02-15T06:59:56Z +14650,545,2,9942,4.99,2005-07-31T15:35:43Z,2020-02-15T06:59:56Z +14651,545,2,10931,2.99,2005-08-02T02:44:59Z,2020-02-15T06:59:56Z +14652,545,2,11760,2.99,2005-08-17T09:44:22Z,2020-02-15T06:59:56Z +14653,545,1,12098,4.99,2005-08-17T22:38:31Z,2020-02-15T06:59:56Z +14654,545,1,12349,2.99,2005-08-18T07:23:42Z,2020-02-15T06:59:56Z +14655,545,2,12667,10.99,2005-08-18T19:11:45Z,2020-02-15T06:59:56Z +14656,545,1,12800,2.99,2005-08-19T00:27:11Z,2020-02-15T06:59:56Z +14657,545,1,13595,4.99,2005-08-20T05:54:27Z,2020-02-15T06:59:56Z +14658,545,1,15585,0.99,2005-08-23T05:55:22Z,2020-02-15T06:59:56Z +14659,545,2,15998,4.99,2005-08-23T20:41:09Z,2020-02-15T06:59:56Z +14660,546,1,197,5.99,2005-05-26T06:59:21Z,2020-02-15T06:59:56Z +14661,546,1,482,6.99,2005-05-27T22:53:02Z,2020-02-15T06:59:56Z +14662,546,1,1181,1.99,2005-06-15T00:42:17Z,2020-02-15T06:59:56Z +14663,546,2,1403,0.99,2005-06-15T16:31:59Z,2020-02-15T06:59:56Z +14664,546,1,1787,3.99,2005-06-16T19:30:59Z,2020-02-15T06:59:56Z +14665,546,1,2361,5.99,2005-06-18T13:19:05Z,2020-02-15T06:59:56Z +14666,546,1,3738,4.99,2005-07-06T11:50:57Z,2020-02-15T06:59:56Z +14667,546,2,4664,0.99,2005-07-08T10:01:28Z,2020-02-15T06:59:56Z +14668,546,1,4734,0.99,2005-07-08T13:12:12Z,2020-02-15T06:59:56Z +14669,546,1,5629,0.99,2005-07-10T06:02:25Z,2020-02-15T06:59:56Z +14670,546,2,6758,9.99,2005-07-12T15:13:49Z,2020-02-15T06:59:56Z +14671,546,1,6786,2.99,2005-07-12T16:32:33Z,2020-02-15T06:59:56Z +14672,546,2,6910,6.99,2005-07-12T22:11:21Z,2020-02-15T06:59:56Z +14673,546,1,8532,4.99,2005-07-29T10:26:56Z,2020-02-15T06:59:56Z +14674,546,1,9087,4.99,2005-07-30T08:19:47Z,2020-02-15T06:59:56Z +14675,546,1,,3.99,2005-07-30T21:16:20Z,2020-02-15T06:59:56Z +14676,546,2,9626,1.99,2005-07-31T04:37:41Z,2020-02-15T06:59:56Z +14677,546,2,10370,0.99,2005-08-01T06:18:04Z,2020-02-15T06:59:56Z +14678,546,2,11352,5.99,2005-08-02T17:29:39Z,2020-02-15T06:59:56Z +14679,546,1,11797,4.99,2005-08-17T11:17:21Z,2020-02-15T06:59:56Z +14680,546,2,12591,2.99,2005-08-18T16:16:41Z,2020-02-15T06:59:56Z +14681,546,2,13850,5.99,2005-08-20T14:43:03Z,2020-02-15T06:59:56Z +14682,546,1,14797,4.99,2005-08-22T00:41:24Z,2020-02-15T06:59:56Z +14683,546,1,14829,2.99,2005-08-22T01:35:37Z,2020-02-15T06:59:56Z +14684,546,1,14929,3.99,2005-08-22T05:32:38Z,2020-02-15T06:59:56Z +14685,546,2,15565,4.99,2005-08-23T05:13:09Z,2020-02-15T06:59:56Z +14686,547,1,306,0.99,2005-05-26T21:31:57Z,2020-02-15T06:59:56Z +14687,547,2,443,8.99,2005-05-27T18:35:20Z,2020-02-15T06:59:56Z +14688,547,2,1094,1.99,2005-05-31T13:03:49Z,2020-02-15T06:59:56Z +14689,547,2,2022,8.99,2005-06-17T12:44:39Z,2020-02-15T06:59:56Z +14690,547,2,3679,4.99,2005-07-06T09:15:57Z,2020-02-15T06:59:56Z +14691,547,1,3765,4.99,2005-07-06T13:01:47Z,2020-02-15T06:59:56Z +14692,547,2,5327,4.99,2005-07-09T16:39:49Z,2020-02-15T06:59:56Z +14693,547,2,5854,4.99,2005-07-10T17:47:34Z,2020-02-15T06:59:56Z +14694,547,1,6605,0.99,2005-07-12T08:01:07Z,2020-02-15T06:59:56Z +14695,547,2,7420,4.99,2005-07-27T17:09:39Z,2020-02-15T06:59:56Z +14696,547,2,7547,3.99,2005-07-27T21:51:48Z,2020-02-15T06:59:56Z +14697,547,1,7835,4.99,2005-07-28T08:49:39Z,2020-02-15T06:59:56Z +14698,547,1,7859,3.99,2005-07-28T09:57:17Z,2020-02-15T06:59:56Z +14699,547,1,8828,2.99,2005-07-29T22:32:54Z,2020-02-15T06:59:56Z +14700,547,1,10903,2.99,2005-08-02T01:41:59Z,2020-02-15T06:59:56Z +14701,547,1,10980,4.99,2005-08-02T04:17:32Z,2020-02-15T06:59:56Z +14702,547,2,11170,5.99,2005-08-02T10:21:53Z,2020-02-15T06:59:56Z +14703,547,2,11361,0.99,2005-08-02T17:46:34Z,2020-02-15T06:59:56Z +14704,547,1,12579,0.99,2005-08-18T15:47:49Z,2020-02-15T06:59:56Z +14705,547,2,12943,2.99,2005-08-19T05:46:26Z,2020-02-15T06:59:56Z +14706,547,2,13307,2.99,2005-08-19T18:58:44Z,2020-02-15T06:59:56Z +14707,547,1,14510,9.99,2005-08-21T14:44:41Z,2020-02-15T06:59:56Z +14708,547,2,14884,4.99,2005-08-22T03:57:08Z,2020-02-15T06:59:56Z +14709,548,2,177,6.99,2005-05-26T04:14:29Z,2020-02-15T06:59:56Z +14710,548,1,743,4.99,2005-05-29T08:39:02Z,2020-02-15T06:59:56Z +14711,548,2,872,3.99,2005-05-30T05:03:04Z,2020-02-15T06:59:56Z +14712,548,1,1326,1.99,2005-06-15T11:07:39Z,2020-02-15T06:59:56Z +14713,548,1,2280,2.99,2005-06-18T06:46:54Z,2020-02-15T06:59:56Z +14714,548,2,2978,0.99,2005-06-20T08:25:16Z,2020-02-15T06:59:56Z +14715,548,1,3686,2.99,2005-07-06T09:37:50Z,2020-02-15T06:59:56Z +14716,548,2,3777,2.99,2005-07-06T13:36:48Z,2020-02-15T06:59:56Z +14717,548,1,4155,7.99,2005-07-07T09:00:49Z,2020-02-15T06:59:56Z +14718,548,2,5138,4.99,2005-07-09T08:00:46Z,2020-02-15T06:59:56Z +14719,548,2,6490,4.99,2005-07-12T02:28:03Z,2020-02-15T06:59:56Z +14720,548,1,9614,5.99,2005-07-31T03:59:31Z,2020-02-15T06:59:56Z +14721,548,2,10318,0.99,2005-08-01T04:36:53Z,2020-02-15T06:59:56Z +14722,548,1,12860,5.99,2005-08-19T02:24:41Z,2020-02-15T06:59:56Z +14723,548,1,13691,3.99,2005-08-20T09:07:39Z,2020-02-15T06:59:56Z +14724,548,2,13730,7.99,2005-08-20T10:17:09Z,2020-02-15T06:59:56Z +14725,548,2,14188,0.99,2005-08-21T03:32:04Z,2020-02-15T06:59:56Z +14726,548,2,14723,6.99,2005-08-21T21:52:32Z,2020-02-15T06:59:56Z +14727,548,1,13584,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14728,549,1,6,0.99,2005-05-24T23:08:07Z,2020-02-15T06:59:56Z +14729,549,2,852,4.99,2005-05-30T01:36:57Z,2020-02-15T06:59:56Z +14730,549,1,906,3.99,2005-05-30T10:30:38Z,2020-02-15T06:59:56Z +14731,549,2,1086,4.99,2005-05-31T11:17:37Z,2020-02-15T06:59:56Z +14732,549,1,2050,2.99,2005-06-17T15:07:30Z,2020-02-15T06:59:56Z +14733,549,2,3523,2.99,2005-07-06T01:01:38Z,2020-02-15T06:59:56Z +14734,549,2,3892,4.99,2005-07-06T18:58:58Z,2020-02-15T06:59:56Z +14735,549,1,4447,0.99,2005-07-07T23:15:28Z,2020-02-15T06:59:56Z +14736,549,1,7252,7.99,2005-07-27T10:45:28Z,2020-02-15T06:59:56Z +14737,549,2,8239,0.99,2005-07-29T00:31:39Z,2020-02-15T06:59:56Z +14738,549,1,8316,4.99,2005-07-29T03:38:49Z,2020-02-15T06:59:56Z +14739,549,2,9445,7.99,2005-07-30T21:50:42Z,2020-02-15T06:59:56Z +14740,549,2,9511,9.99,2005-07-31T00:25:05Z,2020-02-15T06:59:56Z +14741,549,2,9887,0.99,2005-07-31T14:00:32Z,2020-02-15T06:59:56Z +14742,549,2,10281,0.99,2005-08-01T03:28:33Z,2020-02-15T06:59:56Z +14743,549,2,11737,4.99,2005-08-17T08:42:08Z,2020-02-15T06:59:56Z +14744,549,2,11878,2.99,2005-08-17T14:23:52Z,2020-02-15T06:59:56Z +14745,549,2,12634,2.99,2005-08-18T17:58:14Z,2020-02-15T06:59:56Z +14746,549,2,12747,4.99,2005-08-18T22:28:22Z,2020-02-15T06:59:56Z +14747,549,1,14434,0.99,2005-08-21T11:40:46Z,2020-02-15T06:59:56Z +14748,550,2,922,7.99,2005-05-30T11:55:55Z,2020-02-15T06:59:56Z +14749,550,1,1233,6.99,2005-06-15T04:18:37Z,2020-02-15T06:59:56Z +14750,550,1,1863,3.99,2005-06-17T01:31:46Z,2020-02-15T06:59:56Z +14751,550,2,1883,4.99,2005-06-17T03:18:51Z,2020-02-15T06:59:56Z +14752,550,1,3154,2.99,2005-06-20T20:44:40Z,2020-02-15T06:59:56Z +14753,550,2,3236,9.99,2005-06-21T02:47:43Z,2020-02-15T06:59:56Z +14754,550,1,3272,10.99,2005-06-21T05:18:27Z,2020-02-15T06:59:56Z +14755,550,1,3979,4.99,2005-07-06T23:04:35Z,2020-02-15T06:59:56Z +14756,550,1,5727,4.99,2005-07-10T11:25:28Z,2020-02-15T06:59:56Z +14757,550,1,6695,2.99,2005-07-12T12:39:39Z,2020-02-15T06:59:56Z +14758,550,1,7030,0.99,2005-07-27T03:01:40Z,2020-02-15T06:59:56Z +14759,550,2,7838,2.99,2005-07-28T09:00:21Z,2020-02-15T06:59:56Z +14760,550,1,8628,6.99,2005-07-29T14:06:24Z,2020-02-15T06:59:56Z +14761,550,2,8838,2.99,2005-07-29T22:52:23Z,2020-02-15T06:59:56Z +14762,550,1,8959,8.99,2005-07-30T03:35:49Z,2020-02-15T06:59:56Z +14763,550,1,9616,2.99,2005-07-31T04:05:01Z,2020-02-15T06:59:56Z +14764,550,1,9748,0.99,2005-07-31T09:17:56Z,2020-02-15T06:59:56Z +14765,550,2,10140,4.99,2005-07-31T22:03:20Z,2020-02-15T06:59:56Z +14766,550,1,11246,2.99,2005-08-02T13:33:56Z,2020-02-15T06:59:56Z +14767,550,2,11320,0.99,2005-08-02T16:13:28Z,2020-02-15T06:59:56Z +14768,550,1,11969,4.99,2005-08-17T17:49:37Z,2020-02-15T06:59:56Z +14769,550,1,12063,2.99,2005-08-17T21:24:48Z,2020-02-15T06:59:56Z +14770,550,2,12077,4.99,2005-08-17T21:59:14Z,2020-02-15T06:59:56Z +14771,550,1,13114,10.99,2005-08-19T11:27:32Z,2020-02-15T06:59:56Z +14772,550,2,14071,2.99,2005-08-20T23:01:56Z,2020-02-15T06:59:56Z +14773,550,2,14127,4.99,2005-08-21T01:33:32Z,2020-02-15T06:59:56Z +14774,550,2,14375,6.99,2005-08-21T09:46:35Z,2020-02-15T06:59:56Z +14775,550,1,14687,4.99,2005-08-21T20:32:16Z,2020-02-15T06:59:56Z +14776,550,2,15431,9.99,2005-08-23T00:26:47Z,2020-02-15T06:59:56Z +14777,550,1,15883,0.99,2005-08-23T16:44:56Z,2020-02-15T06:59:56Z +14778,550,2,15977,4.99,2005-08-23T20:07:10Z,2020-02-15T06:59:56Z +14779,550,2,11757,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14780,551,2,155,7.99,2005-05-26T01:15:05Z,2020-02-15T06:59:56Z +14781,551,1,728,2.99,2005-05-29T06:12:38Z,2020-02-15T06:59:56Z +14782,551,1,795,0.99,2005-05-29T16:57:39Z,2020-02-15T06:59:56Z +14783,551,2,969,4.99,2005-05-30T19:23:48Z,2020-02-15T06:59:56Z +14784,551,2,1005,3.99,2005-05-31T00:53:25Z,2020-02-15T06:59:56Z +14785,551,2,2069,4.99,2005-06-17T16:19:39Z,2020-02-15T06:59:56Z +14786,551,1,2776,3.99,2005-06-19T18:16:24Z,2020-02-15T06:59:56Z +14787,551,2,3996,5.99,2005-07-06T23:46:43Z,2020-02-15T06:59:56Z +14788,551,1,5201,1.99,2005-07-09T10:52:53Z,2020-02-15T06:59:56Z +14789,551,2,5528,0.99,2005-07-10T02:09:21Z,2020-02-15T06:59:56Z +14790,551,1,6041,0.99,2005-07-11T03:14:58Z,2020-02-15T06:59:56Z +14791,551,2,7095,9.99,2005-07-27T04:51:15Z,2020-02-15T06:59:56Z +14792,551,1,8986,0.99,2005-07-30T04:37:20Z,2020-02-15T06:59:56Z +14793,551,1,9287,2.99,2005-07-30T15:35:39Z,2020-02-15T06:59:56Z +14794,551,2,9765,4.99,2005-07-31T09:44:40Z,2020-02-15T06:59:56Z +14795,551,2,11380,0.99,2005-08-02T18:17:32Z,2020-02-15T06:59:56Z +14796,551,2,11883,2.99,2005-08-17T14:41:28Z,2020-02-15T06:59:56Z +14797,551,2,12208,4.99,2005-08-18T02:25:25Z,2020-02-15T06:59:56Z +14798,551,2,12868,0.99,2005-08-19T02:47:19Z,2020-02-15T06:59:56Z +14799,551,1,13439,3.99,2005-08-19T23:42:16Z,2020-02-15T06:59:56Z +14800,551,1,14420,0.99,2005-08-21T11:16:15Z,2020-02-15T06:59:56Z +14801,551,2,14609,4.99,2005-08-21T17:57:26Z,2020-02-15T06:59:56Z +14802,551,2,14633,2.99,2005-08-21T18:51:10Z,2020-02-15T06:59:56Z +14803,551,1,14833,2.99,2005-08-22T01:45:18Z,2020-02-15T06:59:56Z +14804,551,1,15377,4.99,2005-08-22T22:22:33Z,2020-02-15T06:59:56Z +14805,551,2,15390,6.99,2005-08-22T22:57:25Z,2020-02-15T06:59:56Z +14806,552,2,174,0.99,2005-05-26T03:44:10Z,2020-02-15T06:59:56Z +14807,552,2,2320,0.99,2005-06-18T09:24:50Z,2020-02-15T06:59:56Z +14808,552,2,3397,4.99,2005-06-21T15:30:11Z,2020-02-15T06:59:56Z +14809,552,1,4477,6.99,2005-07-08T00:38:24Z,2020-02-15T06:59:56Z +14810,552,1,5213,7.99,2005-07-09T11:39:43Z,2020-02-15T06:59:56Z +14811,552,2,6189,4.99,2005-07-11T11:36:03Z,2020-02-15T06:59:56Z +14812,552,1,7772,2.99,2005-07-28T06:59:09Z,2020-02-15T06:59:56Z +14813,552,1,8085,2.99,2005-07-28T18:13:15Z,2020-02-15T06:59:56Z +14814,552,2,8192,2.99,2005-07-28T22:49:11Z,2020-02-15T06:59:56Z +14815,552,2,8614,5.99,2005-07-29T13:32:05Z,2020-02-15T06:59:56Z +14816,552,2,8894,4.99,2005-07-30T00:48:31Z,2020-02-15T06:59:56Z +14817,552,1,9342,8.99,2005-07-30T18:09:56Z,2020-02-15T06:59:56Z +14818,552,1,11146,1.99,2005-08-02T09:45:32Z,2020-02-15T06:59:56Z +14819,552,2,11205,4.99,2005-08-02T11:56:54Z,2020-02-15T06:59:56Z +14820,552,2,11300,7.99,2005-08-02T15:37:42Z,2020-02-15T06:59:56Z +14821,552,2,12433,4.99,2005-08-18T10:37:49Z,2020-02-15T06:59:56Z +14822,552,2,12880,2.99,2005-08-19T03:27:17Z,2020-02-15T06:59:56Z +14823,552,2,13574,2.99,2005-08-20T05:10:39Z,2020-02-15T06:59:56Z +14824,552,1,13693,0.99,2005-08-20T09:11:42Z,2020-02-15T06:59:56Z +14825,552,2,14724,4.99,2005-08-21T21:53:47Z,2020-02-15T06:59:56Z +14826,552,2,15700,2.99,2005-08-23T10:21:21Z,2020-02-15T06:59:56Z +14827,553,2,789,4.99,2005-05-29T16:17:07Z,2020-02-15T06:59:56Z +14828,553,2,1862,3.99,2005-06-17T01:29:30Z,2020-02-15T06:59:56Z +14829,553,1,2460,8.99,2005-06-18T19:54:13Z,2020-02-15T06:59:56Z +14830,553,2,3103,6.99,2005-06-20T16:58:19Z,2020-02-15T06:59:56Z +14831,553,1,3495,6.99,2005-07-05T23:50:04Z,2020-02-15T06:59:56Z +14832,553,2,3793,4.99,2005-07-06T14:32:44Z,2020-02-15T06:59:56Z +14833,553,2,3859,2.99,2005-07-06T17:18:15Z,2020-02-15T06:59:56Z +14834,553,1,3890,4.99,2005-07-06T18:58:15Z,2020-02-15T06:59:56Z +14835,553,2,3891,4.99,2005-07-06T18:58:25Z,2020-02-15T06:59:56Z +14836,553,2,3942,4.99,2005-07-06T21:21:34Z,2020-02-15T06:59:56Z +14837,553,1,4257,4.99,2005-07-07T14:18:41Z,2020-02-15T06:59:56Z +14838,553,2,4662,0.99,2005-07-08T09:58:54Z,2020-02-15T06:59:56Z +14839,553,2,4845,4.99,2005-07-08T18:28:20Z,2020-02-15T06:59:56Z +14840,553,2,4941,3.99,2005-07-08T22:39:10Z,2020-02-15T06:59:56Z +14841,553,1,6069,2.99,2005-07-11T04:44:59Z,2020-02-15T06:59:56Z +14842,553,2,6657,0.99,2005-07-12T11:11:36Z,2020-02-15T06:59:56Z +14843,553,1,6812,6.99,2005-07-12T18:03:25Z,2020-02-15T06:59:56Z +14844,553,1,7890,4.99,2005-07-28T10:43:40Z,2020-02-15T06:59:56Z +14845,553,2,9272,4.99,2005-07-30T15:05:22Z,2020-02-15T06:59:56Z +14846,553,2,9601,2.99,2005-07-31T03:42:17Z,2020-02-15T06:59:56Z +14847,553,2,11710,4.99,2005-08-17T07:29:44Z,2020-02-15T06:59:56Z +14848,553,1,13972,2.99,2005-08-20T18:52:17Z,2020-02-15T06:59:56Z +14849,553,1,15042,4.99,2005-08-22T09:47:37Z,2020-02-15T06:59:56Z +14850,553,1,15506,0.99,2005-08-23T02:48:24Z,2020-02-15T06:59:56Z +14851,554,1,607,2.99,2005-05-28T15:02:41Z,2020-02-15T06:59:56Z +14852,554,1,817,2.99,2005-05-29T20:39:14Z,2020-02-15T06:59:56Z +14853,554,1,1959,4.99,2005-06-17T08:54:10Z,2020-02-15T06:59:56Z +14854,554,1,2279,6.99,2005-06-18T06:38:22Z,2020-02-15T06:59:56Z +14855,554,2,3278,2.99,2005-06-21T05:41:30Z,2020-02-15T06:59:56Z +14856,554,1,3312,6.99,2005-06-21T08:05:32Z,2020-02-15T06:59:56Z +14857,554,2,4902,4.99,2005-07-08T20:49:30Z,2020-02-15T06:59:56Z +14858,554,1,5527,2.99,2005-07-10T02:06:01Z,2020-02-15T06:59:56Z +14859,554,1,5968,5.99,2005-07-11T00:03:11Z,2020-02-15T06:59:56Z +14860,554,1,6144,2.99,2005-07-11T09:02:53Z,2020-02-15T06:59:56Z +14861,554,1,10612,6.99,2005-08-01T14:55:31Z,2020-02-15T06:59:56Z +14862,554,2,10829,7.99,2005-08-01T23:17:06Z,2020-02-15T06:59:56Z +14863,554,2,11589,9.99,2005-08-17T02:28:22Z,2020-02-15T06:59:56Z +14864,554,1,11873,0.99,2005-08-17T14:14:39Z,2020-02-15T06:59:56Z +14865,554,1,12010,8.99,2005-08-17T19:17:54Z,2020-02-15T06:59:56Z +14866,554,1,12014,0.99,2005-08-17T19:29:44Z,2020-02-15T06:59:56Z +14867,554,2,13139,4.99,2005-08-19T12:32:10Z,2020-02-15T06:59:56Z +14868,554,2,14015,2.99,2005-08-20T20:47:43Z,2020-02-15T06:59:56Z +14869,554,1,14098,3.99,2005-08-21T00:30:32Z,2020-02-15T06:59:56Z +14870,554,1,14469,0.99,2005-08-21T13:07:24Z,2020-02-15T06:59:56Z +14871,554,1,14626,2.99,2005-08-21T18:35:44Z,2020-02-15T06:59:56Z +14872,554,2,15690,4.99,2005-08-23T09:53:30Z,2020-02-15T06:59:56Z +14873,555,2,3232,1.99,2005-06-21T02:30:37Z,2020-02-15T06:59:56Z +14874,555,2,4875,2.99,2005-07-08T19:24:17Z,2020-02-15T06:59:56Z +14875,555,1,8161,0.99,2005-07-28T21:11:00Z,2020-02-15T06:59:56Z +14876,555,1,8245,3.99,2005-07-29T00:37:09Z,2020-02-15T06:59:56Z +14877,555,1,9299,5.99,2005-07-30T16:32:51Z,2020-02-15T06:59:56Z +14878,555,2,9990,7.99,2005-07-31T17:24:21Z,2020-02-15T06:59:56Z +14879,555,2,10076,7.99,2005-07-31T20:00:34Z,2020-02-15T06:59:56Z +14880,555,1,10921,3.99,2005-08-02T02:14:33Z,2020-02-15T06:59:56Z +14881,555,1,11168,4.99,2005-08-02T10:19:42Z,2020-02-15T06:59:56Z +14882,555,1,11718,4.99,2005-08-17T07:44:42Z,2020-02-15T06:59:56Z +14883,555,2,11747,2.99,2005-08-17T09:03:31Z,2020-02-15T06:59:56Z +14884,555,2,12091,4.99,2005-08-17T22:22:50Z,2020-02-15T06:59:56Z +14885,555,2,12150,2.99,2005-08-18T00:13:55Z,2020-02-15T06:59:56Z +14886,555,2,12182,2.99,2005-08-18T01:30:19Z,2020-02-15T06:59:56Z +14887,555,1,12388,2.99,2005-08-18T08:48:09Z,2020-02-15T06:59:56Z +14888,555,1,12883,4.99,2005-08-19T03:33:47Z,2020-02-15T06:59:56Z +14889,555,2,15102,6.99,2005-08-22T11:58:58Z,2020-02-15T06:59:56Z +14890,556,1,184,0.99,2005-05-26T05:29:49Z,2020-02-15T06:59:56Z +14891,556,2,772,5.99,2005-05-29T13:08:06Z,2020-02-15T06:59:56Z +14892,556,1,1083,3.99,2005-05-31T11:04:48Z,2020-02-15T06:59:56Z +14893,556,1,2092,6.99,2005-06-17T18:12:16Z,2020-02-15T06:59:56Z +14894,556,2,2593,5.99,2005-06-19T05:40:11Z,2020-02-15T06:59:56Z +14895,556,2,2986,0.99,2005-06-20T08:50:28Z,2020-02-15T06:59:56Z +14896,556,1,3093,4.99,2005-06-20T16:06:14Z,2020-02-15T06:59:56Z +14897,556,2,3438,6.99,2005-06-21T19:31:40Z,2020-02-15T06:59:56Z +14898,556,2,4719,2.99,2005-07-08T12:33:00Z,2020-02-15T06:59:56Z +14899,556,2,4839,3.99,2005-07-08T18:13:10Z,2020-02-15T06:59:56Z +14900,556,1,4846,0.99,2005-07-08T18:29:05Z,2020-02-15T06:59:56Z +14901,556,2,5722,0.99,2005-07-10T11:10:04Z,2020-02-15T06:59:56Z +14902,556,2,6484,2.99,2005-07-12T02:04:10Z,2020-02-15T06:59:56Z +14903,556,1,8909,5.99,2005-07-30T01:28:03Z,2020-02-15T06:59:56Z +14904,556,2,10106,4.99,2005-07-31T21:00:47Z,2020-02-15T06:59:56Z +14905,556,2,10518,6.99,2005-08-01T11:44:08Z,2020-02-15T06:59:56Z +14906,556,1,11466,1.99,2005-08-02T21:46:46Z,2020-02-15T06:59:56Z +14907,556,2,11804,3.99,2005-08-17T11:42:45Z,2020-02-15T06:59:56Z +14908,556,1,12045,4.99,2005-08-17T20:40:46Z,2020-02-15T06:59:56Z +14909,556,1,14176,2.99,2005-08-21T03:09:23Z,2020-02-15T06:59:56Z +14910,556,1,15568,2.99,2005-08-23T05:24:09Z,2020-02-15T06:59:56Z +14911,557,2,467,4.99,2005-05-27T21:10:03Z,2020-02-15T06:59:56Z +14912,557,1,478,4.99,2005-05-27T22:38:20Z,2020-02-15T06:59:56Z +14913,557,1,1666,0.99,2005-06-16T10:17:19Z,2020-02-15T06:59:56Z +14914,557,2,2988,6.99,2005-06-20T08:59:08Z,2020-02-15T06:59:56Z +14915,557,1,3050,3.99,2005-06-20T13:03:03Z,2020-02-15T06:59:56Z +14916,557,1,4651,0.99,2005-07-08T09:39:39Z,2020-02-15T06:59:56Z +14917,557,1,4851,1.99,2005-07-08T18:40:05Z,2020-02-15T06:59:56Z +14918,557,1,6459,0.99,2005-07-12T01:12:03Z,2020-02-15T06:59:56Z +14919,557,2,6713,3.99,2005-07-12T13:27:36Z,2020-02-15T06:59:56Z +14920,557,2,6823,4.99,2005-07-12T18:24:31Z,2020-02-15T06:59:56Z +14921,557,2,6898,0.99,2005-07-12T21:39:04Z,2020-02-15T06:59:56Z +14922,557,1,9336,0.99,2005-07-30T18:01:15Z,2020-02-15T06:59:56Z +14923,557,1,9341,2.99,2005-07-30T18:07:58Z,2020-02-15T06:59:56Z +14924,557,2,9366,1.99,2005-07-30T18:48:57Z,2020-02-15T06:59:56Z +14925,557,2,9367,6.99,2005-07-30T18:49:58Z,2020-02-15T06:59:56Z +14926,557,1,11181,0.99,2005-08-02T10:55:03Z,2020-02-15T06:59:56Z +14927,557,1,12555,1.99,2005-08-18T14:49:22Z,2020-02-15T06:59:56Z +14928,557,1,12789,2.99,2005-08-19T00:16:19Z,2020-02-15T06:59:56Z +14929,557,1,13540,2.99,2005-08-20T03:41:23Z,2020-02-15T06:59:56Z +14930,557,2,13794,2.99,2005-08-20T12:25:32Z,2020-02-15T06:59:56Z +14931,557,2,15236,0.99,2005-08-22T17:44:27Z,2020-02-15T06:59:56Z +14932,557,2,15570,5.99,2005-08-23T05:24:55Z,2020-02-15T06:59:56Z +14933,557,2,15914,0.99,2005-08-23T17:49:26Z,2020-02-15T06:59:56Z +14934,557,1,14278,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14935,558,2,1967,4.99,2005-06-17T09:19:52Z,2020-02-15T06:59:56Z +14936,558,1,2411,1.99,2005-06-18T16:55:54Z,2020-02-15T06:59:56Z +14937,558,2,2544,4.99,2005-06-19T02:16:17Z,2020-02-15T06:59:56Z +14938,558,2,3016,4.99,2005-06-20T10:55:08Z,2020-02-15T06:59:56Z +14939,558,2,3451,10.99,2005-06-21T21:10:39Z,2020-02-15T06:59:56Z +14940,558,1,3731,9.99,2005-07-06T11:33:36Z,2020-02-15T06:59:56Z +14941,558,1,3954,0.99,2005-07-06T21:57:44Z,2020-02-15T06:59:56Z +14942,558,1,3990,3.99,2005-07-06T23:32:44Z,2020-02-15T06:59:56Z +14943,558,1,4192,5.99,2005-07-07T10:57:06Z,2020-02-15T06:59:56Z +14944,558,1,4932,2.99,2005-07-08T22:17:40Z,2020-02-15T06:59:56Z +14945,558,2,5375,6.99,2005-07-09T18:52:55Z,2020-02-15T06:59:56Z +14946,558,1,5492,3.99,2005-07-10T00:11:09Z,2020-02-15T06:59:56Z +14947,558,2,6278,7.99,2005-07-11T16:20:02Z,2020-02-15T06:59:56Z +14948,558,2,6479,9.99,2005-07-12T01:49:00Z,2020-02-15T06:59:56Z +14949,558,2,6742,4.99,2005-07-12T14:25:31Z,2020-02-15T06:59:56Z +14950,558,1,6757,0.99,2005-07-12T15:09:48Z,2020-02-15T06:59:56Z +14951,558,1,7424,0.99,2005-07-27T17:14:19Z,2020-02-15T06:59:56Z +14952,558,1,8523,2.99,2005-07-29T10:18:27Z,2020-02-15T06:59:56Z +14953,558,1,8858,4.99,2005-07-29T23:44:35Z,2020-02-15T06:59:56Z +14954,558,1,8889,2.99,2005-07-30T00:39:43Z,2020-02-15T06:59:56Z +14955,558,2,10707,0.99,2005-08-01T18:41:34Z,2020-02-15T06:59:56Z +14956,558,1,11268,0.99,2005-08-02T14:10:39Z,2020-02-15T06:59:56Z +14957,558,2,11567,5.99,2005-08-17T01:28:43Z,2020-02-15T06:59:56Z +14958,558,2,12040,6.99,2005-08-17T20:29:56Z,2020-02-15T06:59:56Z +14959,558,1,12194,1.99,2005-08-18T02:04:47Z,2020-02-15T06:59:56Z +14960,558,2,13566,5.99,2005-08-20T04:45:32Z,2020-02-15T06:59:56Z +14961,558,2,14235,7.99,2005-08-21T05:08:42Z,2020-02-15T06:59:56Z +14962,558,1,14286,5.99,2005-08-21T06:53:53Z,2020-02-15T06:59:56Z +14963,559,2,2576,4.99,2005-06-19T04:34:15Z,2020-02-15T06:59:56Z +14964,559,1,2706,0.99,2005-06-19T13:56:51Z,2020-02-15T06:59:56Z +14965,559,2,3046,4.99,2005-06-20T12:42:59Z,2020-02-15T06:59:56Z +14966,559,1,3370,1.99,2005-06-21T13:27:01Z,2020-02-15T06:59:56Z +14967,559,1,3674,5.99,2005-07-06T09:03:13Z,2020-02-15T06:59:56Z +14968,559,1,4120,4.99,2005-07-07T07:07:03Z,2020-02-15T06:59:56Z +14969,559,1,4370,7.99,2005-07-07T20:05:36Z,2020-02-15T06:59:56Z +14970,559,2,5396,1.99,2005-07-09T19:42:52Z,2020-02-15T06:59:56Z +14971,559,1,6201,4.99,2005-07-11T12:18:07Z,2020-02-15T06:59:56Z +14972,559,1,6915,2.99,2005-07-12T22:28:09Z,2020-02-15T06:59:56Z +14973,559,1,7169,1.99,2005-07-27T07:51:39Z,2020-02-15T06:59:56Z +14974,559,1,7680,1.99,2005-07-28T02:59:08Z,2020-02-15T06:59:56Z +14975,559,1,8631,1.99,2005-07-29T14:08:06Z,2020-02-15T06:59:56Z +14976,559,2,9134,0.99,2005-07-30T10:00:21Z,2020-02-15T06:59:56Z +14977,559,1,9877,2.99,2005-07-31T13:41:57Z,2020-02-15T06:59:56Z +14978,559,2,10146,2.99,2005-07-31T22:17:56Z,2020-02-15T06:59:56Z +14979,559,1,10377,3.99,2005-08-01T06:28:28Z,2020-02-15T06:59:56Z +14980,559,1,10669,8.99,2005-08-01T17:03:28Z,2020-02-15T06:59:56Z +14981,559,2,10876,0.99,2005-08-02T00:31:58Z,2020-02-15T06:59:56Z +14982,559,2,11136,1.99,2005-08-02T09:22:57Z,2020-02-15T06:59:56Z +14983,559,1,13234,1.99,2005-08-19T16:17:15Z,2020-02-15T06:59:56Z +14984,559,2,13248,6.99,2005-08-19T16:47:41Z,2020-02-15T06:59:56Z +14985,559,2,13322,4.99,2005-08-19T19:43:08Z,2020-02-15T06:59:56Z +14986,559,1,13845,5.99,2005-08-20T14:31:21Z,2020-02-15T06:59:56Z +14987,559,1,14342,4.99,2005-08-21T08:39:26Z,2020-02-15T06:59:56Z +14988,559,2,14622,4.99,2005-08-21T18:25:59Z,2020-02-15T06:59:56Z +14989,559,2,15440,4.99,2005-08-23T00:37:21Z,2020-02-15T06:59:56Z +14990,559,1,15877,4.99,2005-08-23T16:33:33Z,2020-02-15T06:59:56Z +14991,560,1,137,2.99,2005-05-25T22:25:18Z,2020-02-15T06:59:56Z +14992,560,1,1271,4.99,2005-06-15T07:32:24Z,2020-02-15T06:59:56Z +14993,560,2,1572,1.99,2005-06-16T03:23:22Z,2020-02-15T06:59:56Z +14994,560,1,3941,4.99,2005-07-06T21:20:37Z,2020-02-15T06:59:56Z +14995,560,1,4298,2.99,2005-07-07T16:27:25Z,2020-02-15T06:59:56Z +14996,560,2,4375,9.99,2005-07-07T20:20:29Z,2020-02-15T06:59:56Z +14997,560,1,4453,0.99,2005-07-07T23:32:39Z,2020-02-15T06:59:56Z +14998,560,2,5208,2.99,2005-07-09T11:16:56Z,2020-02-15T06:59:56Z +14999,560,1,6410,4.99,2005-07-11T23:08:06Z,2020-02-15T06:59:56Z +15000,560,1,6945,2.99,2005-07-26T23:35:29Z,2020-02-15T06:59:56Z +15001,560,2,7202,4.99,2005-07-27T09:00:20Z,2020-02-15T06:59:56Z +15002,560,1,7891,3.99,2005-07-28T10:43:56Z,2020-02-15T06:59:56Z +15003,560,1,8753,2.99,2005-07-29T19:15:50Z,2020-02-15T06:59:56Z +15004,560,2,8861,5.99,2005-07-29T23:47:29Z,2020-02-15T06:59:56Z +15005,560,2,8906,4.99,2005-07-30T01:21:39Z,2020-02-15T06:59:56Z +15006,560,1,9265,0.99,2005-07-30T14:55:25Z,2020-02-15T06:59:56Z +15007,560,2,9895,5.99,2005-07-31T14:07:56Z,2020-02-15T06:59:56Z +15008,560,2,10480,4.99,2005-08-01T10:13:41Z,2020-02-15T06:59:56Z +15009,560,1,10702,4.99,2005-08-01T18:34:59Z,2020-02-15T06:59:56Z +15010,560,1,10733,7.99,2005-08-01T19:28:01Z,2020-02-15T06:59:56Z +15011,560,1,11334,7.99,2005-08-02T16:53:20Z,2020-02-15T06:59:56Z +15012,560,1,11788,4.99,2005-08-17T10:59:18Z,2020-02-15T06:59:56Z +15013,560,2,14008,5.99,2005-08-20T20:26:00Z,2020-02-15T06:59:56Z +15014,560,1,14341,1.99,2005-08-21T08:38:24Z,2020-02-15T06:59:56Z +15015,560,2,14363,4.99,2005-08-21T09:20:03Z,2020-02-15T06:59:56Z +15016,560,1,14436,2.99,2005-08-21T11:48:27Z,2020-02-15T06:59:56Z +15017,560,2,14785,2.99,2005-08-22T00:24:37Z,2020-02-15T06:59:56Z +15018,560,1,15352,6.99,2005-08-22T21:16:54Z,2020-02-15T06:59:56Z +15019,560,2,12116,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15020,560,2,14425,0,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15021,561,1,902,4.99,2005-05-30T09:53:36Z,2020-02-15T06:59:56Z +15022,561,2,971,4.99,2005-05-30T20:10:52Z,2020-02-15T06:59:56Z +15023,561,2,1193,2.99,2005-06-15T01:24:20Z,2020-02-15T06:59:56Z +15024,561,2,1505,2.99,2005-06-15T22:12:50Z,2020-02-15T06:59:56Z +15025,561,2,1620,4.99,2005-06-16T07:21:30Z,2020-02-15T06:59:56Z +15026,561,1,2119,4.99,2005-06-17T20:34:42Z,2020-02-15T06:59:56Z +15027,561,1,2357,5.99,2005-06-18T12:59:41Z,2020-02-15T06:59:56Z +15028,561,1,2548,0.99,2005-06-19T02:45:35Z,2020-02-15T06:59:56Z +15029,561,1,2950,4.99,2005-06-20T06:08:36Z,2020-02-15T06:59:56Z +15030,561,1,3160,4.99,2005-06-20T21:20:51Z,2020-02-15T06:59:56Z +15031,561,1,3427,0.99,2005-06-21T18:31:09Z,2020-02-15T06:59:56Z +15032,561,2,6361,2.99,2005-07-11T21:09:14Z,2020-02-15T06:59:56Z +15033,561,1,6435,0.99,2005-07-12T00:16:19Z,2020-02-15T06:59:56Z +15034,561,1,6621,0.99,2005-07-12T08:57:30Z,2020-02-15T06:59:56Z +15035,561,1,6843,4.99,2005-07-12T19:14:05Z,2020-02-15T06:59:56Z +15036,561,1,7698,0.99,2005-07-28T03:44:14Z,2020-02-15T06:59:56Z +15037,561,1,8504,10.99,2005-07-29T09:20:16Z,2020-02-15T06:59:56Z +15038,561,2,9839,7.99,2005-07-31T12:21:16Z,2020-02-15T06:59:56Z +15039,561,2,10317,2.99,2005-08-01T04:35:34Z,2020-02-15T06:59:56Z +15040,561,1,10907,4.99,2005-08-02T01:51:48Z,2020-02-15T06:59:56Z +15041,561,1,11371,2.99,2005-08-02T18:07:36Z,2020-02-15T06:59:56Z +15042,561,2,11402,2.99,2005-08-02T19:07:21Z,2020-02-15T06:59:56Z +15043,561,2,12441,2.99,2005-08-18T10:47:57Z,2020-02-15T06:59:56Z +15044,561,2,14139,0.99,2005-08-21T02:04:33Z,2020-02-15T06:59:56Z +15045,561,1,15573,0.99,2005-08-23T05:28:36Z,2020-02-15T06:59:56Z +15046,561,1,15946,2.99,2005-08-23T18:54:07Z,2020-02-15T06:59:56Z +15047,561,1,14415,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15048,562,2,788,2.99,2005-05-29T16:13:55Z,2020-02-15T06:59:56Z +15049,562,1,941,2.99,2005-05-30T15:02:25Z,2020-02-15T06:59:56Z +15050,562,1,1139,5.99,2005-05-31T19:34:52Z,2020-02-15T06:59:56Z +15051,562,1,1998,3.99,2005-06-17T11:24:57Z,2020-02-15T06:59:56Z +15052,562,1,2705,4.99,2005-06-19T13:54:30Z,2020-02-15T06:59:56Z +15053,562,1,2746,3.99,2005-06-19T16:21:40Z,2020-02-15T06:59:56Z +15054,562,2,3242,4.99,2005-06-21T02:56:24Z,2020-02-15T06:59:56Z +15055,562,2,4732,5.99,2005-07-08T13:09:45Z,2020-02-15T06:59:56Z +15056,562,1,4802,4.99,2005-07-08T16:55:17Z,2020-02-15T06:59:56Z +15057,562,2,5360,0.99,2005-07-09T18:14:03Z,2020-02-15T06:59:56Z +15058,562,2,6065,6.99,2005-07-11T04:25:51Z,2020-02-15T06:59:56Z +15059,562,1,6607,8.99,2005-07-12T08:08:50Z,2020-02-15T06:59:56Z +15060,562,2,7166,3.99,2005-07-27T07:36:56Z,2020-02-15T06:59:56Z +15061,562,1,7430,2.99,2005-07-27T17:26:14Z,2020-02-15T06:59:56Z +15062,562,2,7560,2.99,2005-07-27T22:20:17Z,2020-02-15T06:59:56Z +15063,562,2,8132,0.99,2005-07-28T19:57:31Z,2020-02-15T06:59:56Z +15064,562,2,10868,6.99,2005-08-02T00:25:15Z,2020-02-15T06:59:56Z +15065,562,2,12008,4.99,2005-08-17T19:16:18Z,2020-02-15T06:59:56Z +15066,562,1,12248,5.99,2005-08-18T03:53:18Z,2020-02-15T06:59:56Z +15067,562,2,13225,2.99,2005-08-19T15:54:33Z,2020-02-15T06:59:56Z +15068,562,2,13347,10.99,2005-08-19T20:28:48Z,2020-02-15T06:59:56Z +15069,562,2,13639,0.99,2005-08-20T07:22:07Z,2020-02-15T06:59:56Z +15070,562,1,15212,2.99,2005-08-22T16:44:26Z,2020-02-15T06:59:56Z +15071,562,2,15475,2.99,2005-08-23T01:44:43Z,2020-02-15T06:59:56Z +15072,562,1,15900,1.99,2005-08-23T17:16:30Z,2020-02-15T06:59:56Z +15073,563,1,758,4.99,2005-05-29T10:31:56Z,2020-02-15T06:59:56Z +15074,563,2,773,5.99,2005-05-29T13:18:05Z,2020-02-15T06:59:56Z +15075,563,2,1545,4.99,2005-06-16T01:31:23Z,2020-02-15T06:59:56Z +15076,563,2,2573,0.99,2005-06-19T04:23:18Z,2020-02-15T06:59:56Z +15077,563,1,4106,1.99,2005-07-07T06:33:35Z,2020-02-15T06:59:56Z +15078,563,2,4436,0.99,2005-07-07T22:52:04Z,2020-02-15T06:59:56Z +15079,563,1,4565,3.99,2005-07-08T05:12:28Z,2020-02-15T06:59:56Z +15080,563,2,4629,6.99,2005-07-08T08:31:26Z,2020-02-15T06:59:56Z +15081,563,2,4711,2.99,2005-07-08T12:06:58Z,2020-02-15T06:59:56Z +15082,563,2,4776,5.99,2005-07-08T15:44:20Z,2020-02-15T06:59:56Z +15083,563,2,4808,3.99,2005-07-08T17:02:49Z,2020-02-15T06:59:56Z +15084,563,2,4825,4.99,2005-07-08T17:43:01Z,2020-02-15T06:59:56Z +15085,563,1,4883,0.99,2005-07-08T19:46:58Z,2020-02-15T06:59:56Z +15086,563,1,5406,0.99,2005-07-09T20:13:23Z,2020-02-15T06:59:56Z +15087,563,2,6326,2.99,2005-07-11T19:06:55Z,2020-02-15T06:59:56Z +15088,563,2,7612,0.99,2005-07-28T00:11:55Z,2020-02-15T06:59:56Z +15089,563,1,8262,1.99,2005-07-29T01:11:18Z,2020-02-15T06:59:56Z +15090,563,1,8610,5.99,2005-07-29T13:25:02Z,2020-02-15T06:59:56Z +15091,563,2,8632,6.99,2005-07-29T14:11:25Z,2020-02-15T06:59:56Z +15092,563,2,8812,7.99,2005-07-29T21:47:40Z,2020-02-15T06:59:56Z +15093,563,2,11829,0.99,2005-08-17T12:52:04Z,2020-02-15T06:59:56Z +15094,563,1,12039,1.99,2005-08-17T20:29:08Z,2020-02-15T06:59:56Z +15095,563,1,12202,1.99,2005-08-18T02:14:08Z,2020-02-15T06:59:56Z +15096,563,1,12832,2.99,2005-08-19T01:41:44Z,2020-02-15T06:59:56Z +15097,563,2,13863,9.99,2005-08-20T14:57:50Z,2020-02-15T06:59:56Z +15098,563,2,14592,4.99,2005-08-21T17:30:17Z,2020-02-15T06:59:56Z +15099,563,2,15507,0.99,2005-08-23T02:48:26Z,2020-02-15T06:59:56Z +15100,563,2,15638,3.99,2005-08-23T07:54:54Z,2020-02-15T06:59:56Z +15101,563,1,15850,4.99,2005-08-23T15:45:42Z,2020-02-15T06:59:56Z +15102,564,2,195,5.99,2005-05-26T06:52:36Z,2020-02-15T06:59:56Z +15103,564,1,985,2.99,2005-05-30T22:18:35Z,2020-02-15T06:59:56Z +15104,564,2,1705,2.99,2005-06-16T13:59:42Z,2020-02-15T06:59:56Z +15105,564,1,4196,2.99,2005-07-07T11:06:33Z,2020-02-15T06:59:56Z +15106,564,2,4385,0.99,2005-07-07T20:48:38Z,2020-02-15T06:59:56Z +15107,564,1,6973,2.99,2005-07-27T00:32:04Z,2020-02-15T06:59:56Z +15108,564,2,7470,10.99,2005-07-27T19:01:03Z,2020-02-15T06:59:56Z +15109,564,2,8426,4.99,2005-07-29T07:07:48Z,2020-02-15T06:59:56Z +15110,564,1,8874,0.99,2005-07-30T00:14:45Z,2020-02-15T06:59:56Z +15111,564,2,9063,3.99,2005-07-30T07:24:34Z,2020-02-15T06:59:56Z +15112,564,2,9929,2.99,2005-07-31T15:17:24Z,2020-02-15T06:59:56Z +15113,564,1,10129,6.99,2005-07-31T21:41:35Z,2020-02-15T06:59:56Z +15114,564,2,10352,1.99,2005-08-01T05:44:36Z,2020-02-15T06:59:56Z +15115,564,2,10401,4.99,2005-08-01T07:27:09Z,2020-02-15T06:59:56Z +15116,564,1,10528,2.99,2005-08-01T11:56:22Z,2020-02-15T06:59:56Z +15117,564,2,11768,2.99,2005-08-17T10:02:29Z,2020-02-15T06:59:56Z +15118,564,2,12197,6.99,2005-08-18T02:08:58Z,2020-02-15T06:59:56Z +15119,564,2,12617,2.99,2005-08-18T17:22:48Z,2020-02-15T06:59:56Z +15120,564,2,13324,0.99,2005-08-19T19:51:00Z,2020-02-15T06:59:56Z +15121,564,2,13558,0.99,2005-08-20T04:13:17Z,2020-02-15T06:59:56Z +15122,564,1,13701,0.99,2005-08-20T09:27:05Z,2020-02-15T06:59:56Z +15123,564,2,14439,5.99,2005-08-21T11:52:41Z,2020-02-15T06:59:56Z +15124,564,1,14593,0.99,2005-08-21T17:33:18Z,2020-02-15T06:59:56Z +15125,564,2,15059,8.99,2005-08-22T10:22:00Z,2020-02-15T06:59:56Z +15126,565,1,458,6.99,2005-05-27T19:58:36Z,2020-02-15T06:59:56Z +15127,565,1,1004,0.99,2005-05-31T00:48:36Z,2020-02-15T06:59:56Z +15128,565,2,1460,4.99,2005-06-15T20:27:02Z,2020-02-15T06:59:56Z +15129,565,1,2321,5.99,2005-06-18T09:42:42Z,2020-02-15T06:59:56Z +15130,565,1,3300,5.99,2005-06-21T07:25:01Z,2020-02-15T06:59:56Z +15131,565,2,3470,0.99,2005-07-05T22:49:24Z,2020-02-15T06:59:56Z +15132,565,1,3838,2.99,2005-07-06T16:29:43Z,2020-02-15T06:59:56Z +15133,565,1,4413,2.99,2005-07-07T22:00:04Z,2020-02-15T06:59:56Z +15134,565,2,5020,0.99,2005-07-09T02:07:56Z,2020-02-15T06:59:56Z +15135,565,1,5124,4.99,2005-07-09T07:25:19Z,2020-02-15T06:59:56Z +15136,565,1,6264,2.99,2005-07-11T15:42:35Z,2020-02-15T06:59:56Z +15137,565,1,6627,2.99,2005-07-12T09:16:46Z,2020-02-15T06:59:56Z +15138,565,1,6699,0.99,2005-07-12T12:45:21Z,2020-02-15T06:59:56Z +15139,565,2,7242,5.99,2005-07-27T10:25:51Z,2020-02-15T06:59:56Z +15140,565,1,9628,2.99,2005-07-31T04:51:11Z,2020-02-15T06:59:56Z +15141,565,1,10025,5.99,2005-07-31T18:29:09Z,2020-02-15T06:59:56Z +15142,565,2,10776,10.99,2005-08-01T20:59:58Z,2020-02-15T06:59:56Z +15143,565,2,10913,3.99,2005-08-02T02:04:03Z,2020-02-15T06:59:56Z +15144,565,2,11189,6.99,2005-08-02T11:17:23Z,2020-02-15T06:59:56Z +15145,565,1,11399,3.99,2005-08-02T18:56:28Z,2020-02-15T06:59:56Z +15146,565,2,11506,4.99,2005-08-16T23:25:48Z,2020-02-15T06:59:56Z +15147,565,1,11588,3.99,2005-08-17T02:26:23Z,2020-02-15T06:59:56Z +15148,565,1,11795,2.99,2005-08-17T11:13:38Z,2020-02-15T06:59:56Z +15149,565,2,12743,5.99,2005-08-18T22:22:31Z,2020-02-15T06:59:56Z +15150,565,2,13195,4.99,2005-08-19T14:39:14Z,2020-02-15T06:59:56Z +15151,565,2,13217,4.99,2005-08-19T15:38:39Z,2020-02-15T06:59:56Z +15152,565,1,13362,0.99,2005-08-19T21:07:54Z,2020-02-15T06:59:56Z +15153,565,1,13925,8.99,2005-08-20T17:05:34Z,2020-02-15T06:59:56Z +15154,565,1,15885,2.99,2005-08-23T16:50:43Z,2020-02-15T06:59:56Z +15155,566,2,234,5.99,2005-05-26T11:47:20Z,2020-02-15T06:59:56Z +15156,566,2,768,4.99,2005-05-29T12:30:46Z,2020-02-15T06:59:56Z +15157,566,1,1635,5.99,2005-06-16T08:26:56Z,2020-02-15T06:59:56Z +15158,566,2,1982,4.99,2005-06-17T10:12:15Z,2020-02-15T06:59:56Z +15159,566,1,2367,0.99,2005-06-18T14:00:31Z,2020-02-15T06:59:56Z +15160,566,1,3379,4.99,2005-06-21T13:54:58Z,2020-02-15T06:59:56Z +15161,566,2,3663,4.99,2005-07-06T08:15:47Z,2020-02-15T06:59:56Z +15162,566,1,3943,0.99,2005-07-06T21:22:17Z,2020-02-15T06:59:56Z +15163,566,1,3998,3.99,2005-07-06T23:49:20Z,2020-02-15T06:59:56Z +15164,566,1,5079,9.99,2005-07-09T05:20:40Z,2020-02-15T06:59:56Z +15165,566,2,6365,2.99,2005-07-11T21:17:40Z,2020-02-15T06:59:56Z +15166,566,1,7677,2.99,2005-07-28T02:56:37Z,2020-02-15T06:59:56Z +15167,566,2,7941,0.99,2005-07-28T12:47:20Z,2020-02-15T06:59:56Z +15168,566,2,8118,2.99,2005-07-28T19:22:22Z,2020-02-15T06:59:56Z +15169,566,1,8157,6.99,2005-07-28T21:06:45Z,2020-02-15T06:59:56Z +15170,566,1,8257,2.99,2005-07-29T01:03:20Z,2020-02-15T06:59:56Z +15171,566,2,8305,1.99,2005-07-29T03:08:47Z,2020-02-15T06:59:56Z +15172,566,2,8660,6.99,2005-07-29T15:26:59Z,2020-02-15T06:59:56Z +15173,566,1,8710,0.99,2005-07-29T17:26:03Z,2020-02-15T06:59:56Z +15174,566,1,8797,4.99,2005-07-29T21:10:37Z,2020-02-15T06:59:56Z +15175,566,2,9101,4.99,2005-07-30T08:47:13Z,2020-02-15T06:59:56Z +15176,566,2,9470,4.99,2005-07-30T23:01:31Z,2020-02-15T06:59:56Z +15177,566,1,9688,3.99,2005-07-31T06:56:08Z,2020-02-15T06:59:56Z +15178,566,2,9915,2.99,2005-07-31T14:52:26Z,2020-02-15T06:59:56Z +15179,566,2,10259,2.99,2005-08-01T02:52:05Z,2020-02-15T06:59:56Z +15180,566,2,10289,6.99,2005-08-01T03:39:48Z,2020-02-15T06:59:56Z +15181,566,2,11129,2.99,2005-08-02T09:08:44Z,2020-02-15T06:59:56Z +15182,566,1,11717,0.99,2005-08-17T07:44:09Z,2020-02-15T06:59:56Z +15183,566,1,11941,1.99,2005-08-17T16:56:57Z,2020-02-15T06:59:56Z +15184,566,2,12382,8.99,2005-08-18T08:32:33Z,2020-02-15T06:59:56Z +15185,566,2,12995,4.99,2005-08-19T07:26:30Z,2020-02-15T06:59:56Z +15186,566,2,13762,4.99,2005-08-20T11:29:32Z,2020-02-15T06:59:56Z +15187,566,1,14277,3.99,2005-08-21T06:34:41Z,2020-02-15T06:59:56Z +15188,566,1,14297,2.99,2005-08-21T07:13:46Z,2020-02-15T06:59:56Z +15189,567,2,2689,4.99,2005-06-19T12:58:53Z,2020-02-15T06:59:56Z +15190,567,1,3010,2.99,2005-06-20T10:29:59Z,2020-02-15T06:59:56Z +15191,567,1,3769,5.99,2005-07-06T13:11:33Z,2020-02-15T06:59:56Z +15192,567,2,4457,0.99,2005-07-07T23:45:38Z,2020-02-15T06:59:56Z +15193,567,2,4576,0.99,2005-07-08T05:51:19Z,2020-02-15T06:59:56Z +15194,567,1,4949,4.99,2005-07-08T22:57:10Z,2020-02-15T06:59:56Z +15195,567,2,6358,2.99,2005-07-11T21:03:12Z,2020-02-15T06:59:56Z +15196,567,2,6551,0.99,2005-07-12T05:03:43Z,2020-02-15T06:59:56Z +15197,567,2,7340,2.99,2005-07-27T14:18:10Z,2020-02-15T06:59:56Z +15198,567,1,8201,2.99,2005-07-28T23:10:48Z,2020-02-15T06:59:56Z +15199,567,1,8629,2.99,2005-07-29T14:06:35Z,2020-02-15T06:59:56Z +15200,567,1,9279,7.99,2005-07-30T15:15:21Z,2020-02-15T06:59:56Z +15201,567,1,9475,6.99,2005-07-30T23:06:33Z,2020-02-15T06:59:56Z +15202,567,2,10708,7.99,2005-08-01T18:43:28Z,2020-02-15T06:59:56Z +15203,567,2,11749,2.99,2005-08-17T09:04:03Z,2020-02-15T06:59:56Z +15204,567,1,12119,2.99,2005-08-17T23:16:44Z,2020-02-15T06:59:56Z +15205,567,2,13031,2.99,2005-08-19T08:30:04Z,2020-02-15T06:59:56Z +15206,567,2,14839,2.99,2005-08-22T01:58:15Z,2020-02-15T06:59:56Z +15207,567,2,15074,5.99,2005-08-22T11:02:52Z,2020-02-15T06:59:56Z +15208,567,2,15594,10.99,2005-08-23T06:18:43Z,2020-02-15T06:59:56Z +15209,568,2,1658,4.99,2005-06-16T10:07:10Z,2020-02-15T06:59:56Z +15210,568,2,2382,4.99,2005-06-18T15:03:52Z,2020-02-15T06:59:56Z +15211,568,2,2668,0.99,2005-06-19T11:28:47Z,2020-02-15T06:59:56Z +15212,568,1,3227,4.99,2005-06-21T02:18:25Z,2020-02-15T06:59:56Z +15213,568,2,3462,1.99,2005-06-21T21:52:52Z,2020-02-15T06:59:56Z +15214,568,1,4322,2.99,2005-07-07T17:54:37Z,2020-02-15T06:59:56Z +15215,568,2,5332,2.99,2005-07-09T16:59:23Z,2020-02-15T06:59:56Z +15216,568,1,5622,0.99,2005-07-10T05:39:37Z,2020-02-15T06:59:56Z +15217,568,1,5776,4.99,2005-07-10T13:35:22Z,2020-02-15T06:59:56Z +15218,568,2,7068,2.99,2005-07-27T03:57:50Z,2020-02-15T06:59:56Z +15219,568,2,8185,0.99,2005-07-28T22:23:49Z,2020-02-15T06:59:56Z +15220,568,2,9583,6.99,2005-07-31T03:05:21Z,2020-02-15T06:59:56Z +15221,568,1,9738,0.99,2005-07-31T09:04:14Z,2020-02-15T06:59:56Z +15222,568,1,10340,2.99,2005-08-01T05:07:03Z,2020-02-15T06:59:56Z +15223,568,2,10689,0.99,2005-08-01T18:04:18Z,2020-02-15T06:59:56Z +15224,568,2,10869,0.99,2005-08-02T00:26:54Z,2020-02-15T06:59:56Z +15225,568,1,11331,2.99,2005-08-02T16:49:01Z,2020-02-15T06:59:56Z +15226,568,1,13883,4.99,2005-08-20T15:28:53Z,2020-02-15T06:59:56Z +15227,568,2,15069,5.99,2005-08-22T10:55:42Z,2020-02-15T06:59:56Z +15228,568,1,15203,2.99,2005-08-22T16:28:00Z,2020-02-15T06:59:56Z +15229,568,2,14531,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15230,569,2,53,4.99,2005-05-25T07:19:16Z,2020-02-15T06:59:56Z +15231,569,1,487,4.99,2005-05-28T00:00:30Z,2020-02-15T06:59:56Z +15232,569,1,624,4.99,2005-05-28T16:13:22Z,2020-02-15T06:59:56Z +15233,569,1,647,1.99,2005-05-28T19:22:52Z,2020-02-15T06:59:56Z +15234,569,2,1037,3.99,2005-05-31T05:22:25Z,2020-02-15T06:59:56Z +15235,569,1,1463,6.99,2005-06-15T20:37:51Z,2020-02-15T06:59:56Z +15236,569,2,1668,5.99,2005-06-16T10:19:52Z,2020-02-15T06:59:56Z +15237,569,1,4204,5.99,2005-07-07T11:24:18Z,2020-02-15T06:59:56Z +15238,569,2,5003,0.99,2005-07-09T01:19:03Z,2020-02-15T06:59:56Z +15239,569,2,6046,5.99,2005-07-11T03:21:49Z,2020-02-15T06:59:56Z +15240,569,1,8910,2.99,2005-07-30T01:29:48Z,2020-02-15T06:59:56Z +15241,569,2,9220,1.99,2005-07-30T13:17:27Z,2020-02-15T06:59:56Z +15242,569,1,9399,4.99,2005-07-30T20:14:50Z,2020-02-15T06:59:56Z +15243,569,2,9960,1.99,2005-07-31T16:05:52Z,2020-02-15T06:59:56Z +15244,569,2,10192,2.99,2005-08-01T00:33:00Z,2020-02-15T06:59:56Z +15245,569,2,10884,0.99,2005-08-02T00:47:33Z,2020-02-15T06:59:56Z +15246,569,1,11030,1.99,2005-08-02T05:51:20Z,2020-02-15T06:59:56Z +15247,569,2,11255,4.99,2005-08-02T13:44:30Z,2020-02-15T06:59:56Z +15248,569,1,11354,6.99,2005-08-02T17:35:10Z,2020-02-15T06:59:56Z +15249,569,1,11946,4.99,2005-08-17T17:05:53Z,2020-02-15T06:59:56Z +15250,569,1,12157,2.99,2005-08-18T00:33:45Z,2020-02-15T06:59:56Z +15251,569,2,12308,0.99,2005-08-18T05:48:53Z,2020-02-15T06:59:56Z +15252,569,1,12568,3.99,2005-08-18T15:15:44Z,2020-02-15T06:59:56Z +15253,569,2,12958,2.99,2005-08-19T06:19:21Z,2020-02-15T06:59:56Z +15254,569,1,13287,7.99,2005-08-19T18:28:24Z,2020-02-15T06:59:56Z +15255,569,2,13554,9.99,2005-08-20T04:08:39Z,2020-02-15T06:59:56Z +15256,569,2,14207,4.99,2005-08-21T04:08:19Z,2020-02-15T06:59:56Z +15257,569,2,14400,0.99,2005-08-21T10:33:45Z,2020-02-15T06:59:56Z +15258,569,1,14896,8.99,2005-08-22T04:20:55Z,2020-02-15T06:59:56Z +15259,569,1,14959,2.99,2005-08-22T06:30:28Z,2020-02-15T06:59:56Z +15260,569,2,15617,0.99,2005-08-23T07:07:22Z,2020-02-15T06:59:56Z +15261,569,2,16025,4.99,2005-08-23T21:48:54Z,2020-02-15T06:59:56Z +15262,570,2,1060,7.99,2005-05-31T08:21:43Z,2020-02-15T06:59:56Z +15263,570,1,1259,4.99,2005-06-15T06:37:55Z,2020-02-15T06:59:56Z +15264,570,2,1417,4.99,2005-06-15T17:45:51Z,2020-02-15T06:59:56Z +15265,570,2,1804,2.99,2005-06-16T20:33:15Z,2020-02-15T06:59:56Z +15266,570,2,2008,5.99,2005-06-17T11:48:05Z,2020-02-15T06:59:56Z +15267,570,2,2031,6.99,2005-06-17T13:14:03Z,2020-02-15T06:59:56Z +15268,570,2,2261,3.99,2005-06-18T05:46:15Z,2020-02-15T06:59:56Z +15269,570,2,3138,2.99,2005-06-20T19:43:45Z,2020-02-15T06:59:56Z +15270,570,2,3984,0.99,2005-07-06T23:22:36Z,2020-02-15T06:59:56Z +15271,570,1,4069,0.99,2005-07-07T04:35:06Z,2020-02-15T06:59:56Z +15272,570,1,4698,0.99,2005-07-08T11:19:31Z,2020-02-15T06:59:56Z +15273,570,2,5638,4.99,2005-07-10T06:32:49Z,2020-02-15T06:59:56Z +15274,570,1,6253,4.99,2005-07-11T15:07:19Z,2020-02-15T06:59:56Z +15275,570,1,6556,0.99,2005-07-12T05:10:16Z,2020-02-15T06:59:56Z +15276,570,2,7174,4.99,2005-07-27T08:00:36Z,2020-02-15T06:59:56Z +15277,570,2,8735,4.99,2005-07-29T18:28:54Z,2020-02-15T06:59:56Z +15278,570,1,9385,7.99,2005-07-30T19:25:49Z,2020-02-15T06:59:56Z +15279,570,1,9398,0.99,2005-07-30T20:09:00Z,2020-02-15T06:59:56Z +15280,570,2,9432,2.99,2005-07-30T21:26:18Z,2020-02-15T06:59:56Z +15281,570,1,9766,4.99,2005-07-31T09:46:29Z,2020-02-15T06:59:56Z +15282,570,1,10004,0.99,2005-07-31T17:51:23Z,2020-02-15T06:59:56Z +15283,570,2,10168,2.99,2005-07-31T23:25:24Z,2020-02-15T06:59:56Z +15284,570,1,11098,3.99,2005-08-02T08:06:18Z,2020-02-15T06:59:56Z +15285,570,2,12042,4.99,2005-08-17T20:36:37Z,2020-02-15T06:59:56Z +15286,570,2,14768,3.99,2005-08-21T23:44:53Z,2020-02-15T06:59:56Z +15287,570,1,12716,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15288,571,1,228,9.99,2005-05-26T10:54:28Z,2020-02-15T06:59:56Z +15289,571,2,689,3.99,2005-05-29T00:46:53Z,2020-02-15T06:59:56Z +15290,571,1,1254,4.99,2005-06-15T06:11:16Z,2020-02-15T06:59:56Z +15291,571,2,1400,3.99,2005-06-15T16:29:56Z,2020-02-15T06:59:56Z +15292,571,1,1756,4.99,2005-06-16T17:22:33Z,2020-02-15T06:59:56Z +15293,571,2,1990,4.99,2005-06-17T10:48:44Z,2020-02-15T06:59:56Z +15294,571,1,2327,2.99,2005-06-18T10:16:40Z,2020-02-15T06:59:56Z +15295,571,1,2977,10.99,2005-06-20T08:15:27Z,2020-02-15T06:59:56Z +15296,571,2,3616,2.99,2005-07-06T05:52:13Z,2020-02-15T06:59:56Z +15297,571,1,4162,4.99,2005-07-07T09:17:26Z,2020-02-15T06:59:56Z +15298,571,2,5789,4.99,2005-07-10T14:11:26Z,2020-02-15T06:59:56Z +15299,571,2,6676,8.99,2005-07-12T11:53:40Z,2020-02-15T06:59:56Z +15300,571,1,6792,8.99,2005-07-12T16:37:28Z,2020-02-15T06:59:56Z +15301,571,1,8084,5.99,2005-07-28T18:11:58Z,2020-02-15T06:59:56Z +15302,571,1,8638,4.99,2005-07-29T14:30:23Z,2020-02-15T06:59:56Z +15303,571,2,9300,1.99,2005-07-30T16:33:12Z,2020-02-15T06:59:56Z +15304,571,1,9408,4.99,2005-07-30T20:32:09Z,2020-02-15T06:59:56Z +15305,571,1,10227,2.99,2005-08-01T01:42:22Z,2020-02-15T06:59:56Z +15306,571,2,11080,2.99,2005-08-02T07:29:56Z,2020-02-15T06:59:56Z +15307,571,2,11191,7.99,2005-08-02T11:24:07Z,2020-02-15T06:59:56Z +15308,571,1,13228,2.99,2005-08-19T16:08:16Z,2020-02-15T06:59:56Z +15309,571,2,13266,2.99,2005-08-19T17:31:20Z,2020-02-15T06:59:56Z +15310,571,1,14956,0.99,2005-08-22T06:26:16Z,2020-02-15T06:59:56Z +15311,571,1,15841,4.99,2005-08-23T15:35:59Z,2020-02-15T06:59:56Z +15312,572,2,559,7.99,2005-05-28T08:39:02Z,2020-02-15T06:59:56Z +15313,572,2,1889,10.99,2005-06-17T04:05:12Z,2020-02-15T06:59:56Z +15314,572,1,2007,0.99,2005-06-17T11:47:17Z,2020-02-15T06:59:56Z +15315,572,1,2458,0.99,2005-06-18T19:39:05Z,2020-02-15T06:59:56Z +15316,572,1,4601,2.99,2005-07-08T06:49:10Z,2020-02-15T06:59:56Z +15317,572,1,5595,4.99,2005-07-10T04:33:45Z,2020-02-15T06:59:56Z +15318,572,1,5713,6.99,2005-07-10T10:46:15Z,2020-02-15T06:59:56Z +15319,572,2,6108,2.99,2005-07-11T07:19:24Z,2020-02-15T06:59:56Z +15320,572,1,7161,4.99,2005-07-27T07:26:32Z,2020-02-15T06:59:56Z +15321,572,1,7345,4.99,2005-07-27T14:29:53Z,2020-02-15T06:59:56Z +15322,572,2,7713,6.99,2005-07-28T04:32:14Z,2020-02-15T06:59:56Z +15323,572,2,8342,0.99,2005-07-29T04:45:05Z,2020-02-15T06:59:56Z +15324,572,1,8432,0.99,2005-07-29T07:13:33Z,2020-02-15T06:59:56Z +15325,572,1,9081,3.99,2005-07-30T08:09:58Z,2020-02-15T06:59:56Z +15326,572,2,9950,5.99,2005-07-31T15:50:22Z,2020-02-15T06:59:56Z +15327,572,2,10204,4.99,2005-08-01T00:47:39Z,2020-02-15T06:59:56Z +15328,572,1,11114,0.99,2005-08-02T08:26:45Z,2020-02-15T06:59:56Z +15329,572,1,11121,4.99,2005-08-02T08:48:31Z,2020-02-15T06:59:56Z +15330,572,2,11415,2.99,2005-08-02T19:43:38Z,2020-02-15T06:59:56Z +15331,572,1,11426,4.99,2005-08-02T20:00:09Z,2020-02-15T06:59:56Z +15332,572,1,11526,4.99,2005-08-17T00:17:38Z,2020-02-15T06:59:56Z +15333,572,1,12256,1.99,2005-08-18T04:09:39Z,2020-02-15T06:59:56Z +15334,572,2,13377,1.99,2005-08-19T21:32:23Z,2020-02-15T06:59:56Z +15335,572,2,13523,6.99,2005-08-20T02:47:03Z,2020-02-15T06:59:56Z +15336,572,1,13688,5.99,2005-08-20T08:59:38Z,2020-02-15T06:59:56Z +15337,573,2,827,2.99,2005-05-29T21:58:43Z,2020-02-15T06:59:56Z +15338,573,1,1613,4.99,2005-06-16T06:55:10Z,2020-02-15T06:59:56Z +15339,573,2,2622,5.99,2005-06-19T08:10:41Z,2020-02-15T06:59:56Z +15340,573,1,2995,1.99,2005-06-20T09:18:22Z,2020-02-15T06:59:56Z +15341,573,1,3295,7.99,2005-06-21T07:04:17Z,2020-02-15T06:59:56Z +15342,573,2,3768,0.99,2005-07-06T13:07:30Z,2020-02-15T06:59:56Z +15343,573,1,3930,2.99,2005-07-06T20:54:07Z,2020-02-15T06:59:56Z +15344,573,2,4023,4.99,2005-07-07T01:55:25Z,2020-02-15T06:59:56Z +15345,573,1,4085,0.99,2005-07-07T05:25:39Z,2020-02-15T06:59:56Z +15346,573,1,4609,0.99,2005-07-08T07:22:29Z,2020-02-15T06:59:56Z +15347,573,1,4770,2.99,2005-07-08T15:29:46Z,2020-02-15T06:59:56Z +15348,573,1,5036,5.99,2005-07-09T02:58:41Z,2020-02-15T06:59:56Z +15349,573,2,5522,9.99,2005-07-10T01:46:29Z,2020-02-15T06:59:56Z +15350,573,2,5903,2.99,2005-07-10T20:39:04Z,2020-02-15T06:59:56Z +15351,573,1,6693,7.99,2005-07-12T12:37:00Z,2020-02-15T06:59:56Z +15352,573,1,8400,4.99,2005-07-29T06:23:56Z,2020-02-15T06:59:56Z +15353,573,2,9837,10.99,2005-07-31T12:14:19Z,2020-02-15T06:59:56Z +15354,573,2,9846,4.99,2005-07-31T12:30:12Z,2020-02-15T06:59:56Z +15355,573,2,9963,2.99,2005-07-31T16:16:46Z,2020-02-15T06:59:56Z +15356,573,2,9971,5.99,2005-07-31T16:42:16Z,2020-02-15T06:59:56Z +15357,573,1,10296,0.99,2005-08-01T04:04:37Z,2020-02-15T06:59:56Z +15358,573,1,10887,2.99,2005-08-02T00:52:35Z,2020-02-15T06:59:56Z +15359,573,1,11043,0.99,2005-08-02T06:04:44Z,2020-02-15T06:59:56Z +15360,573,2,11912,5.99,2005-08-17T15:51:49Z,2020-02-15T06:59:56Z +15361,573,1,12017,1.99,2005-08-17T19:33:49Z,2020-02-15T06:59:56Z +15362,573,1,12125,1.99,2005-08-17T23:24:25Z,2020-02-15T06:59:56Z +15363,573,1,12269,6.99,2005-08-18T04:27:54Z,2020-02-15T06:59:56Z +15364,573,1,12791,0.99,2005-08-19T00:17:09Z,2020-02-15T06:59:56Z +15365,573,2,13113,2.99,2005-08-19T11:27:20Z,2020-02-15T06:59:56Z +15366,574,2,433,0.99,2005-05-27T16:40:40Z,2020-02-15T06:59:56Z +15367,574,1,1559,0.99,2005-06-16T02:35:03Z,2020-02-15T06:59:56Z +15368,574,2,1636,5.99,2005-06-16T08:28:54Z,2020-02-15T06:59:56Z +15369,574,1,1817,0.99,2005-06-16T21:20:52Z,2020-02-15T06:59:56Z +15370,574,1,2632,0.99,2005-06-19T08:51:47Z,2020-02-15T06:59:56Z +15371,574,1,3220,6.99,2005-06-21T01:46:25Z,2020-02-15T06:59:56Z +15372,574,1,3583,7.99,2005-07-06T04:10:43Z,2020-02-15T06:59:56Z +15373,574,1,4004,4.99,2005-07-07T00:20:51Z,2020-02-15T06:59:56Z +15374,574,1,4212,4.99,2005-07-07T11:53:14Z,2020-02-15T06:59:56Z +15375,574,2,4890,2.99,2005-07-08T20:05:38Z,2020-02-15T06:59:56Z +15376,574,2,5010,4.99,2005-07-09T01:33:23Z,2020-02-15T06:59:56Z +15377,574,1,5076,3.99,2005-07-09T05:13:22Z,2020-02-15T06:59:56Z +15378,574,1,5077,3.99,2005-07-09T05:18:01Z,2020-02-15T06:59:56Z +15379,574,1,5640,2.99,2005-07-10T06:38:00Z,2020-02-15T06:59:56Z +15380,574,1,6523,2.99,2005-07-12T04:14:19Z,2020-02-15T06:59:56Z +15381,574,1,7093,1.99,2005-07-27T04:47:00Z,2020-02-15T06:59:56Z +15382,574,1,7134,2.99,2005-07-27T06:33:06Z,2020-02-15T06:59:56Z +15383,574,1,7964,2.99,2005-07-28T13:49:58Z,2020-02-15T06:59:56Z +15384,574,1,8303,4.99,2005-07-29T03:05:56Z,2020-02-15T06:59:56Z +15385,574,1,9589,7.99,2005-07-31T03:13:29Z,2020-02-15T06:59:56Z +15386,574,1,9759,3.99,2005-07-31T09:25:57Z,2020-02-15T06:59:57Z +15387,574,1,10347,4.99,2005-08-01T05:20:03Z,2020-02-15T06:59:57Z +15388,574,2,11775,3.99,2005-08-17T10:25:53Z,2020-02-15T06:59:57Z +15389,574,1,12462,2.99,2005-08-18T11:28:55Z,2020-02-15T06:59:57Z +15390,574,1,13589,4.99,2005-08-20T05:47:25Z,2020-02-15T06:59:57Z +15391,574,1,14076,4.99,2005-08-20T23:20:10Z,2020-02-15T06:59:57Z +15392,574,2,14941,2.99,2005-08-22T05:58:23Z,2020-02-15T06:59:57Z +15393,574,2,15214,2.99,2005-08-22T16:53:29Z,2020-02-15T06:59:57Z +15394,575,1,17,2.99,2005-05-25T01:06:36Z,2020-02-15T06:59:57Z +15395,575,1,395,0.99,2005-05-27T11:45:49Z,2020-02-15T06:59:57Z +15396,575,2,454,4.99,2005-05-27T19:31:36Z,2020-02-15T06:59:57Z +15397,575,2,769,2.99,2005-05-29T12:51:44Z,2020-02-15T06:59:57Z +15398,575,1,774,4.99,2005-05-29T13:19:43Z,2020-02-15T06:59:57Z +15399,575,2,1494,2.99,2005-06-15T21:54:20Z,2020-02-15T06:59:57Z +15400,575,1,1824,2.99,2005-06-16T21:51:04Z,2020-02-15T06:59:57Z +15401,575,2,1866,4.99,2005-06-17T01:53:19Z,2020-02-15T06:59:57Z +15402,575,1,3558,6.99,2005-07-06T02:49:06Z,2020-02-15T06:59:57Z +15403,575,2,5875,8.99,2005-07-10T19:06:47Z,2020-02-15T06:59:57Z +15404,575,2,6907,2.99,2005-07-12T22:03:49Z,2020-02-15T06:59:57Z +15405,575,1,7083,0.99,2005-07-27T04:28:39Z,2020-02-15T06:59:57Z +15406,575,1,7139,2.99,2005-07-27T06:52:21Z,2020-02-15T06:59:57Z +15407,575,2,8711,2.99,2005-07-29T17:27:15Z,2020-02-15T06:59:57Z +15408,575,2,8904,0.99,2005-07-30T01:08:33Z,2020-02-15T06:59:57Z +15409,575,2,8989,4.99,2005-07-30T04:39:19Z,2020-02-15T06:59:57Z +15410,575,1,9733,4.99,2005-07-31T08:57:35Z,2020-02-15T06:59:57Z +15411,575,1,10331,4.99,2005-08-01T04:57:14Z,2020-02-15T06:59:57Z +15412,575,2,10629,7.99,2005-08-01T15:33:32Z,2020-02-15T06:59:57Z +15413,575,1,11097,3.99,2005-08-02T08:05:46Z,2020-02-15T06:59:57Z +15414,575,1,11458,4.99,2005-08-02T21:24:02Z,2020-02-15T06:59:57Z +15415,575,1,12204,7.99,2005-08-18T02:20:35Z,2020-02-15T06:59:57Z +15416,575,2,12289,8.99,2005-08-18T05:05:28Z,2020-02-15T06:59:57Z +15417,575,2,12770,5.99,2005-08-18T23:29:00Z,2020-02-15T06:59:57Z +15418,575,2,13408,4.99,2005-08-19T22:34:51Z,2020-02-15T06:59:57Z +15419,575,2,13465,2.99,2005-08-20T00:54:14Z,2020-02-15T06:59:57Z +15420,575,2,14952,2.99,2005-08-22T06:20:07Z,2020-02-15T06:59:57Z +15421,575,2,15749,4.99,2005-08-23T12:33:41Z,2020-02-15T06:59:57Z +15422,575,2,15857,0.99,2005-08-23T15:59:51Z,2020-02-15T06:59:57Z +15423,576,2,755,2.99,2005-05-29T10:26:29Z,2020-02-15T06:59:57Z +15424,576,1,968,0.99,2005-05-30T19:20:03Z,2020-02-15T06:59:57Z +15425,576,1,1366,4.99,2005-06-15T14:21:00Z,2020-02-15T06:59:57Z +15426,576,2,1742,2.99,2005-06-16T16:37:48Z,2020-02-15T06:59:57Z +15427,576,1,2309,0.99,2005-06-18T08:43:24Z,2020-02-15T06:59:57Z +15428,576,2,2444,8.99,2005-06-18T18:58:12Z,2020-02-15T06:59:57Z +15429,576,1,2651,3.99,2005-06-19T10:22:56Z,2020-02-15T06:59:57Z +15430,576,2,2799,4.99,2005-06-19T19:15:21Z,2020-02-15T06:59:57Z +15431,576,2,3226,6.99,2005-06-21T02:18:14Z,2020-02-15T06:59:57Z +15432,576,1,3877,4.99,2005-07-06T18:22:10Z,2020-02-15T06:59:57Z +15433,576,2,3889,0.99,2005-07-06T18:56:25Z,2020-02-15T06:59:57Z +15434,576,2,3934,4.99,2005-07-06T21:07:23Z,2020-02-15T06:59:57Z +15435,576,1,4514,4.99,2005-07-08T02:41:25Z,2020-02-15T06:59:57Z +15436,576,2,5597,3.99,2005-07-10T04:47:57Z,2020-02-15T06:59:57Z +15437,576,1,5934,4.99,2005-07-10T22:07:59Z,2020-02-15T06:59:57Z +15438,576,2,7319,1.99,2005-07-27T13:31:25Z,2020-02-15T06:59:57Z +15439,576,1,7605,3.99,2005-07-27T23:57:01Z,2020-02-15T06:59:57Z +15440,576,1,8907,4.99,2005-07-30T01:25:03Z,2020-02-15T06:59:57Z +15441,576,1,9133,5.99,2005-07-30T09:59:00Z,2020-02-15T06:59:57Z +15442,576,2,9548,5.99,2005-07-31T01:54:19Z,2020-02-15T06:59:57Z +15443,576,2,9620,8.99,2005-07-31T04:19:18Z,2020-02-15T06:59:57Z +15444,576,2,9962,0.99,2005-07-31T16:10:36Z,2020-02-15T06:59:57Z +15445,576,1,9979,2.99,2005-07-31T17:00:07Z,2020-02-15T06:59:57Z +15446,576,1,10000,2.99,2005-07-31T17:41:05Z,2020-02-15T06:59:57Z +15447,576,2,10724,3.99,2005-08-01T19:10:59Z,2020-02-15T06:59:57Z +15448,576,2,12112,5.99,2005-08-17T23:00:31Z,2020-02-15T06:59:57Z +15449,576,1,12245,4.99,2005-08-18T03:46:40Z,2020-02-15T06:59:57Z +15450,576,1,13061,4.99,2005-08-19T09:43:39Z,2020-02-15T06:59:57Z +15451,576,1,13326,4.99,2005-08-19T19:52:52Z,2020-02-15T06:59:57Z +15452,576,1,14501,4.99,2005-08-21T14:14:38Z,2020-02-15T06:59:57Z +15453,576,1,14541,0.99,2005-08-21T15:34:32Z,2020-02-15T06:59:57Z +15454,576,1,15634,0.99,2005-08-23T07:34:18Z,2020-02-15T06:59:57Z +15455,576,2,11942,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15456,576,1,13464,0,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15457,577,2,291,5.99,2005-05-26T20:20:47Z,2020-02-15T06:59:57Z +15458,577,2,,0.99,2005-05-27T00:46:39Z,2020-02-15T06:59:57Z +15459,577,2,2399,3.99,2005-06-18T16:06:14Z,2020-02-15T06:59:57Z +15460,577,2,3286,2.99,2005-06-21T06:31:29Z,2020-02-15T06:59:57Z +15461,577,2,3401,6.99,2005-06-21T15:52:43Z,2020-02-15T06:59:57Z +15462,577,2,3599,0.99,2005-07-06T05:16:36Z,2020-02-15T06:59:57Z +15463,577,1,3785,7.99,2005-07-06T14:00:13Z,2020-02-15T06:59:57Z +15464,577,1,4922,2.99,2005-07-08T21:44:00Z,2020-02-15T06:59:57Z +15465,577,1,6500,2.99,2005-07-12T03:11:23Z,2020-02-15T06:59:57Z +15466,577,2,6534,2.99,2005-07-12T04:39:43Z,2020-02-15T06:59:57Z +15467,577,2,7197,0.99,2005-07-27T08:49:32Z,2020-02-15T06:59:57Z +15468,577,1,7371,4.99,2005-07-27T15:18:42Z,2020-02-15T06:59:57Z +15469,577,2,7876,8.99,2005-07-28T10:24:22Z,2020-02-15T06:59:57Z +15470,577,1,8043,5.99,2005-07-28T16:45:44Z,2020-02-15T06:59:57Z +15471,577,1,8060,6.99,2005-07-28T17:10:02Z,2020-02-15T06:59:57Z +15472,577,2,8671,6.99,2005-07-29T15:49:37Z,2020-02-15T06:59:57Z +15473,577,2,10323,4.99,2005-08-01T04:44:58Z,2020-02-15T06:59:57Z +15474,577,1,10487,0.99,2005-08-01T10:26:34Z,2020-02-15T06:59:57Z +15475,577,1,10782,4.99,2005-08-01T21:23:25Z,2020-02-15T06:59:57Z +15476,577,1,11054,7.99,2005-08-02T06:33:07Z,2020-02-15T06:59:57Z +15477,577,2,11464,0.99,2005-08-02T21:42:07Z,2020-02-15T06:59:57Z +15478,577,1,12664,4.99,2005-08-18T19:10:54Z,2020-02-15T06:59:57Z +15479,577,2,12671,0.99,2005-08-18T19:19:59Z,2020-02-15T06:59:57Z +15480,577,2,13200,3.99,2005-08-19T14:55:58Z,2020-02-15T06:59:57Z +15481,577,2,13500,3.99,2005-08-20T01:54:39Z,2020-02-15T06:59:57Z +15482,577,2,15480,2.99,2005-08-23T01:57:20Z,2020-02-15T06:59:57Z +15483,577,2,15873,2.99,2005-08-23T16:27:59Z,2020-02-15T06:59:57Z +15484,577,2,16003,4.99,2005-08-23T20:47:28Z,2020-02-15T06:59:57Z +15485,578,2,660,0.99,2005-05-28T20:53:31Z,2020-02-15T06:59:57Z +15486,578,2,1826,6.99,2005-06-16T21:53:52Z,2020-02-15T06:59:57Z +15487,578,2,2615,4.99,2005-06-19T07:29:13Z,2020-02-15T06:59:57Z +15488,578,1,3305,2.99,2005-06-21T07:46:57Z,2020-02-15T06:59:57Z +15489,578,2,4496,4.99,2005-07-08T01:44:19Z,2020-02-15T06:59:57Z +15490,578,1,5377,4.99,2005-07-09T19:04:30Z,2020-02-15T06:59:57Z +15491,578,1,5445,0.99,2005-07-09T21:59:41Z,2020-02-15T06:59:57Z +15492,578,2,5876,4.99,2005-07-10T19:07:15Z,2020-02-15T06:59:57Z +15493,578,1,6784,4.99,2005-07-12T16:28:49Z,2020-02-15T06:59:57Z +15494,578,1,6830,0.99,2005-07-12T18:42:55Z,2020-02-15T06:59:57Z +15495,578,2,7059,5.99,2005-07-27T03:51:02Z,2020-02-15T06:59:57Z +15496,578,1,8179,2.99,2005-07-28T22:05:13Z,2020-02-15T06:59:57Z +15497,578,1,8218,2.99,2005-07-28T23:45:41Z,2020-02-15T06:59:57Z +15498,578,2,9970,4.99,2005-07-31T16:38:24Z,2020-02-15T06:59:57Z +15499,578,1,10029,6.99,2005-07-31T18:37:47Z,2020-02-15T06:59:57Z +15500,578,2,10182,2.99,2005-08-01T00:08:01Z,2020-02-15T06:59:57Z +15501,578,1,10779,7.99,2005-08-01T21:11:54Z,2020-02-15T06:59:57Z +15502,578,1,11199,7.99,2005-08-02T11:47:40Z,2020-02-15T06:59:57Z +15503,578,2,13071,5.99,2005-08-19T10:01:07Z,2020-02-15T06:59:57Z +15504,578,2,13498,5.99,2005-08-20T01:51:23Z,2020-02-15T06:59:57Z +15505,578,2,13552,2.99,2005-08-20T04:03:51Z,2020-02-15T06:59:57Z +15506,578,1,15652,0.99,2005-08-23T08:34:10Z,2020-02-15T06:59:57Z +15507,579,2,2425,5.99,2005-06-18T17:37:45Z,2020-02-15T06:59:57Z +15508,579,1,2522,3.99,2005-06-19T00:43:42Z,2020-02-15T06:59:57Z +15509,579,1,3111,2.99,2005-06-20T17:46:47Z,2020-02-15T06:59:57Z +15510,579,1,4619,9.99,2005-07-08T08:01:09Z,2020-02-15T06:59:57Z +15511,579,1,4933,2.99,2005-07-08T22:18:29Z,2020-02-15T06:59:57Z +15512,579,1,6304,4.99,2005-07-11T18:02:16Z,2020-02-15T06:59:57Z +15513,579,2,6814,1.99,2005-07-12T18:11:58Z,2020-02-15T06:59:57Z +15514,579,2,6824,6.99,2005-07-12T18:26:46Z,2020-02-15T06:59:57Z +15515,579,2,6969,8.99,2005-07-27T00:23:54Z,2020-02-15T06:59:57Z +15516,579,2,7221,2.99,2005-07-27T09:37:35Z,2020-02-15T06:59:57Z +15517,579,1,8354,0.99,2005-07-29T04:56:26Z,2020-02-15T06:59:57Z +15518,579,1,8876,0.99,2005-07-30T00:15:09Z,2020-02-15T06:59:57Z +15519,579,1,8996,0.99,2005-07-30T04:53:23Z,2020-02-15T06:59:57Z +15520,579,2,9349,9.99,2005-07-30T18:20:08Z,2020-02-15T06:59:57Z +15521,579,2,9553,5.99,2005-07-31T02:06:34Z,2020-02-15T06:59:57Z +15522,579,2,9976,2.99,2005-07-31T16:57:49Z,2020-02-15T06:59:57Z +15523,579,2,9997,4.99,2005-07-31T17:37:30Z,2020-02-15T06:59:57Z +15524,579,1,11494,3.99,2005-08-02T22:51:23Z,2020-02-15T06:59:57Z +15525,579,2,12051,6.99,2005-08-17T20:56:15Z,2020-02-15T06:59:57Z +15526,579,2,12315,5.99,2005-08-18T06:15:06Z,2020-02-15T06:59:57Z +15527,579,2,14047,2.99,2005-08-20T22:00:43Z,2020-02-15T06:59:57Z +15528,579,1,14185,0.99,2005-08-21T03:28:37Z,2020-02-15T06:59:57Z +15529,579,1,14543,1.99,2005-08-21T15:39:01Z,2020-02-15T06:59:57Z +15530,579,2,14560,2.99,2005-08-21T16:13:47Z,2020-02-15T06:59:57Z +15531,579,2,15601,0.99,2005-08-23T06:33:26Z,2020-02-15T06:59:57Z +15532,579,1,15838,4.99,2005-08-23T15:30:48Z,2020-02-15T06:59:57Z +15533,579,2,15794,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15534,580,1,611,0.99,2005-05-28T15:18:18Z,2020-02-15T06:59:57Z +15535,580,1,1469,0.99,2005-06-15T20:52:36Z,2020-02-15T06:59:57Z +15536,580,2,3571,1.99,2005-07-06T03:32:31Z,2020-02-15T06:59:57Z +15537,580,2,3867,1.99,2005-07-06T17:52:19Z,2020-02-15T06:59:57Z +15538,580,2,4169,1.99,2005-07-07T09:39:18Z,2020-02-15T06:59:57Z +15539,580,2,4590,3.99,2005-07-08T06:27:48Z,2020-02-15T06:59:57Z +15540,580,1,5937,6.99,2005-07-10T22:16:08Z,2020-02-15T06:59:57Z +15541,580,1,6089,2.99,2005-07-11T05:45:59Z,2020-02-15T06:59:57Z +15542,580,2,6170,2.99,2005-07-11T10:29:21Z,2020-02-15T06:59:57Z +15543,580,1,7620,0.99,2005-07-28T00:27:17Z,2020-02-15T06:59:57Z +15544,580,2,8784,4.99,2005-07-29T20:35:37Z,2020-02-15T06:59:57Z +15545,580,1,8839,3.99,2005-07-29T22:52:34Z,2020-02-15T06:59:57Z +15546,580,1,9199,0.99,2005-07-30T12:38:00Z,2020-02-15T06:59:57Z +15547,580,1,9239,3.99,2005-07-30T13:50:52Z,2020-02-15T06:59:57Z +15548,580,1,9460,5.99,2005-07-30T22:25:39Z,2020-02-15T06:59:57Z +15549,580,2,9604,4.99,2005-07-31T03:47:12Z,2020-02-15T06:59:57Z +15550,580,2,9865,0.99,2005-07-31T13:10:45Z,2020-02-15T06:59:57Z +15551,580,1,10723,3.99,2005-08-01T19:10:49Z,2020-02-15T06:59:57Z +15552,580,2,10965,3.99,2005-08-02T04:00:19Z,2020-02-15T06:59:57Z +15553,580,1,11164,8.99,2005-08-02T10:10:56Z,2020-02-15T06:59:57Z +15554,580,2,12670,2.99,2005-08-18T19:17:58Z,2020-02-15T06:59:57Z +15555,580,2,13313,2.99,2005-08-19T19:11:41Z,2020-02-15T06:59:57Z +15556,580,2,13742,2.99,2005-08-20T10:49:15Z,2020-02-15T06:59:57Z +15557,580,2,14818,2.99,2005-08-22T01:17:18Z,2020-02-15T06:59:57Z +15558,580,1,15157,6.99,2005-08-22T14:30:09Z,2020-02-15T06:59:57Z +15559,580,1,15630,6.99,2005-08-23T07:29:13Z,2020-02-15T06:59:57Z +15560,580,1,15947,4.99,2005-08-23T18:54:32Z,2020-02-15T06:59:57Z +15561,581,1,976,4.99,2005-05-30T21:11:19Z,2020-02-15T06:59:57Z +15562,581,1,1151,4.99,2005-05-31T21:29:00Z,2020-02-15T06:59:57Z +15563,581,2,1958,3.99,2005-06-17T08:52:01Z,2020-02-15T06:59:57Z +15564,581,2,2101,2.99,2005-06-17T18:57:02Z,2020-02-15T06:59:57Z +15565,581,1,2137,4.99,2005-06-17T21:18:28Z,2020-02-15T06:59:57Z +15566,581,2,4210,2.99,2005-07-07T11:36:20Z,2020-02-15T06:59:57Z +15567,581,2,4244,2.99,2005-07-07T13:41:58Z,2020-02-15T06:59:57Z +15568,581,1,4338,4.99,2005-07-07T18:39:56Z,2020-02-15T06:59:57Z +15569,581,2,4613,0.99,2005-07-08T07:44:49Z,2020-02-15T06:59:57Z +15570,581,1,4669,5.99,2005-07-08T10:13:08Z,2020-02-15T06:59:57Z +15571,581,1,4815,8.99,2005-07-08T17:12:51Z,2020-02-15T06:59:57Z +15572,581,1,4833,1.99,2005-07-08T18:07:35Z,2020-02-15T06:59:57Z +15573,581,1,5516,4.99,2005-07-10T01:13:52Z,2020-02-15T06:59:57Z +15574,581,1,5707,4.99,2005-07-10T10:26:14Z,2020-02-15T06:59:57Z +15575,581,2,5812,2.99,2005-07-10T15:27:56Z,2020-02-15T06:59:57Z +15576,581,2,7048,7.99,2005-07-27T03:31:48Z,2020-02-15T06:59:57Z +15577,581,1,7783,2.99,2005-07-28T07:14:43Z,2020-02-15T06:59:57Z +15578,581,1,9278,2.99,2005-07-30T15:15:19Z,2020-02-15T06:59:57Z +15579,581,1,9449,1.99,2005-07-30T22:02:34Z,2020-02-15T06:59:57Z +15580,581,2,11443,2.99,2005-08-02T20:29:30Z,2020-02-15T06:59:57Z +15581,581,2,11707,2.99,2005-08-17T07:24:59Z,2020-02-15T06:59:57Z +15582,581,2,13621,0.99,2005-08-20T06:43:44Z,2020-02-15T06:59:57Z +15583,581,2,13712,2.99,2005-08-20T09:38:04Z,2020-02-15T06:59:57Z +15584,581,2,14070,8.99,2005-08-20T22:56:34Z,2020-02-15T06:59:57Z +15585,581,1,14976,2.99,2005-08-22T07:10:26Z,2020-02-15T06:59:57Z +15586,581,1,15403,0.99,2005-08-22T23:18:10Z,2020-02-15T06:59:57Z +15587,581,2,15792,4.99,2005-08-23T14:05:37Z,2020-02-15T06:59:57Z +15588,582,1,281,0.99,2005-05-26T18:49:35Z,2020-02-15T06:59:57Z +15589,582,1,1719,2.99,2005-06-16T14:55:53Z,2020-02-15T06:59:57Z +15590,582,1,2337,7.99,2005-06-18T11:15:27Z,2020-02-15T06:59:57Z +15591,582,2,3071,0.99,2005-06-20T14:20:42Z,2020-02-15T06:59:57Z +15592,582,1,3767,0.99,2005-07-06T13:07:27Z,2020-02-15T06:59:57Z +15593,582,2,6629,5.99,2005-07-12T09:18:35Z,2020-02-15T06:59:57Z +15594,582,2,7126,4.99,2005-07-27T06:13:13Z,2020-02-15T06:59:57Z +15595,582,2,7311,6.99,2005-07-27T13:02:54Z,2020-02-15T06:59:57Z +15596,582,2,7412,5.99,2005-07-27T16:44:34Z,2020-02-15T06:59:57Z +15597,582,1,7575,2.99,2005-07-27T22:53:52Z,2020-02-15T06:59:57Z +15598,582,2,8308,5.99,2005-07-29T03:22:15Z,2020-02-15T06:59:57Z +15599,582,1,8554,2.99,2005-07-29T11:16:29Z,2020-02-15T06:59:57Z +15600,582,1,8778,6.99,2005-07-29T20:14:25Z,2020-02-15T06:59:57Z +15601,582,1,9768,9.99,2005-07-31T09:48:41Z,2020-02-15T06:59:57Z +15602,582,2,11290,7.99,2005-08-02T14:57:44Z,2020-02-15T06:59:57Z +15603,582,1,11667,5.99,2005-08-17T05:46:55Z,2020-02-15T06:59:57Z +15604,582,1,11708,2.99,2005-08-17T07:26:47Z,2020-02-15T06:59:57Z +15605,582,2,13815,5.99,2005-08-20T13:08:53Z,2020-02-15T06:59:57Z +15606,582,1,14376,4.99,2005-08-21T09:48:56Z,2020-02-15T06:59:57Z +15607,582,1,14568,0.99,2005-08-21T16:30:48Z,2020-02-15T06:59:57Z +15608,582,1,15090,5.99,2005-08-22T11:34:33Z,2020-02-15T06:59:57Z +15609,582,1,15503,2.99,2005-08-23T02:44:49Z,2020-02-15T06:59:57Z +15610,582,1,15539,0.99,2005-08-23T04:09:03Z,2020-02-15T06:59:57Z +15611,582,2,15911,4.99,2005-08-23T17:44:53Z,2020-02-15T06:59:57Z +15612,582,2,12127,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15613,583,1,1428,3.99,2005-06-15T18:19:30Z,2020-02-15T06:59:57Z +15614,583,1,2429,9.99,2005-06-18T17:48:28Z,2020-02-15T06:59:57Z +15615,583,2,2663,4.99,2005-06-19T10:54:00Z,2020-02-15T06:59:57Z +15616,583,2,2845,5.99,2005-06-19T22:46:37Z,2020-02-15T06:59:57Z +15617,583,2,2879,3.99,2005-06-20T01:24:10Z,2020-02-15T06:59:57Z +15618,583,1,3424,0.99,2005-06-21T17:42:51Z,2020-02-15T06:59:57Z +15619,583,1,3779,2.99,2005-07-06T13:46:36Z,2020-02-15T06:59:57Z +15620,583,1,3842,4.99,2005-07-06T16:34:32Z,2020-02-15T06:59:57Z +15621,583,2,3991,9.99,2005-07-06T23:33:41Z,2020-02-15T06:59:57Z +15622,583,1,4464,4.99,2005-07-08T00:07:18Z,2020-02-15T06:59:57Z +15623,583,1,5462,0.99,2005-07-09T22:56:53Z,2020-02-15T06:59:57Z +15624,583,1,5478,5.99,2005-07-09T23:45:15Z,2020-02-15T06:59:57Z +15625,583,2,5747,7.99,2005-07-10T12:15:33Z,2020-02-15T06:59:57Z +15626,583,2,6684,6.99,2005-07-12T12:14:42Z,2020-02-15T06:59:57Z +15627,583,1,7401,5.99,2005-07-27T16:17:55Z,2020-02-15T06:59:57Z +15628,583,2,8568,7.99,2005-07-29T11:38:22Z,2020-02-15T06:59:57Z +15629,583,1,9550,7.99,2005-07-31T01:57:34Z,2020-02-15T06:59:57Z +15630,583,2,9808,1.99,2005-07-31T11:17:22Z,2020-02-15T06:59:57Z +15631,583,2,10301,4.99,2005-08-01T04:09:37Z,2020-02-15T06:59:57Z +15632,583,2,10586,2.99,2005-08-01T14:00:59Z,2020-02-15T06:59:57Z +15633,583,2,10800,4.99,2005-08-01T22:07:44Z,2020-02-15T06:59:57Z +15634,583,2,11002,4.99,2005-08-02T05:02:56Z,2020-02-15T06:59:57Z +15635,583,1,14259,0.99,2005-08-21T06:00:22Z,2020-02-15T06:59:57Z +15636,584,2,379,4.99,2005-05-27T09:25:32Z,2020-02-15T06:59:57Z +15637,584,1,626,4.99,2005-05-28T16:58:09Z,2020-02-15T06:59:57Z +15638,584,1,920,4.99,2005-05-30T11:44:01Z,2020-02-15T06:59:57Z +15639,584,2,1436,3.99,2005-06-15T18:35:40Z,2020-02-15T06:59:57Z +15640,584,2,3317,6.99,2005-06-21T08:22:32Z,2020-02-15T06:59:57Z +15641,584,2,3741,2.99,2005-07-06T12:00:18Z,2020-02-15T06:59:57Z +15642,584,2,3895,7.99,2005-07-06T19:04:24Z,2020-02-15T06:59:57Z +15643,584,1,4410,0.99,2005-07-07T21:48:16Z,2020-02-15T06:59:57Z +15644,584,1,4977,0.99,2005-07-09T00:15:50Z,2020-02-15T06:59:57Z +15645,584,2,6954,0.99,2005-07-26T23:55:13Z,2020-02-15T06:59:57Z +15646,584,1,7186,2.99,2005-07-27T08:26:12Z,2020-02-15T06:59:57Z +15647,584,1,7372,4.99,2005-07-27T15:18:42Z,2020-02-15T06:59:57Z +15648,584,1,7659,4.99,2005-07-28T02:09:45Z,2020-02-15T06:59:57Z +15649,584,2,8879,4.99,2005-07-30T00:16:02Z,2020-02-15T06:59:57Z +15650,584,2,9451,3.99,2005-07-30T22:10:17Z,2020-02-15T06:59:57Z +15651,584,1,9719,5.99,2005-07-31T08:25:13Z,2020-02-15T06:59:57Z +15652,584,2,10073,2.99,2005-07-31T19:53:15Z,2020-02-15T06:59:57Z +15653,584,1,10914,4.99,2005-08-02T02:04:43Z,2020-02-15T06:59:57Z +15654,584,2,10966,0.99,2005-08-02T04:00:47Z,2020-02-15T06:59:57Z +15655,584,1,11213,4.99,2005-08-02T12:18:35Z,2020-02-15T06:59:57Z +15656,584,2,11500,6.99,2005-08-16T23:01:22Z,2020-02-15T06:59:57Z +15657,584,2,12507,8.99,2005-08-18T13:19:13Z,2020-02-15T06:59:57Z +15658,584,2,12541,2.99,2005-08-18T14:18:30Z,2020-02-15T06:59:57Z +15659,584,2,12693,5.99,2005-08-18T20:10:19Z,2020-02-15T06:59:57Z +15660,584,1,12844,2.99,2005-08-19T01:59:08Z,2020-02-15T06:59:57Z +15661,584,2,14102,5.99,2005-08-21T00:35:21Z,2020-02-15T06:59:57Z +15662,584,2,14230,5.99,2005-08-21T04:57:29Z,2020-02-15T06:59:57Z +15663,584,2,14447,4.99,2005-08-21T12:12:05Z,2020-02-15T06:59:57Z +15664,584,1,14930,1.99,2005-08-22T05:38:32Z,2020-02-15T06:59:57Z +15665,584,1,15615,0.99,2005-08-23T07:06:00Z,2020-02-15T06:59:57Z +15666,585,1,1344,0.99,2005-06-15T12:29:41Z,2020-02-15T06:59:57Z +15667,585,2,1346,7.99,2005-06-15T12:39:52Z,2020-02-15T06:59:57Z +15668,585,1,2674,0.99,2005-06-19T11:47:59Z,2020-02-15T06:59:57Z +15669,585,1,2930,3.99,2005-06-20T04:50:29Z,2020-02-15T06:59:57Z +15670,585,2,4156,4.99,2005-07-07T09:03:51Z,2020-02-15T06:59:57Z +15671,585,2,4579,4.99,2005-07-08T06:01:56Z,2020-02-15T06:59:57Z +15672,585,1,4684,9.99,2005-07-08T10:41:06Z,2020-02-15T06:59:57Z +15673,585,2,5284,2.99,2005-07-09T15:08:21Z,2020-02-15T06:59:57Z +15674,585,2,5950,4.99,2005-07-10T23:13:45Z,2020-02-15T06:59:57Z +15675,585,2,6733,6.99,2005-07-12T14:04:01Z,2020-02-15T06:59:57Z +15676,585,1,7131,2.99,2005-07-27T06:25:06Z,2020-02-15T06:59:57Z +15677,585,1,7384,4.99,2005-07-27T15:49:45Z,2020-02-15T06:59:57Z +15678,585,2,7409,4.99,2005-07-27T16:38:24Z,2020-02-15T06:59:57Z +15679,585,2,8353,2.99,2005-07-29T04:52:10Z,2020-02-15T06:59:57Z +15680,585,2,9407,8.99,2005-07-30T20:25:24Z,2020-02-15T06:59:57Z +15681,585,1,9590,3.99,2005-07-31T03:17:16Z,2020-02-15T06:59:57Z +15682,585,1,9860,6.99,2005-07-31T13:03:24Z,2020-02-15T06:59:57Z +15683,585,2,10573,0.99,2005-08-01T13:27:24Z,2020-02-15T06:59:57Z +15684,585,1,11285,9.99,2005-08-02T14:44:02Z,2020-02-15T06:59:57Z +15685,585,2,13593,3.99,2005-08-20T05:50:52Z,2020-02-15T06:59:57Z +15686,585,2,13939,0.99,2005-08-20T17:28:01Z,2020-02-15T06:59:57Z +15687,585,1,15804,4.99,2005-08-23T14:29:16Z,2020-02-15T06:59:57Z +15688,585,1,15896,6.99,2005-08-23T17:09:56Z,2020-02-15T06:59:57Z +15689,585,2,14604,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15690,586,1,138,4.99,2005-05-25T22:48:22Z,2020-02-15T06:59:57Z +15691,586,1,900,8.99,2005-05-30T09:38:41Z,2020-02-15T06:59:57Z +15692,586,1,1260,2.99,2005-06-15T06:42:25Z,2020-02-15T06:59:57Z +15693,586,2,1540,0.99,2005-06-16T01:14:56Z,2020-02-15T06:59:57Z +15694,586,2,3487,6.99,2005-07-05T23:30:36Z,2020-02-15T06:59:57Z +15695,586,2,3733,4.99,2005-07-06T11:33:55Z,2020-02-15T06:59:57Z +15696,586,2,5382,2.99,2005-07-09T19:12:57Z,2020-02-15T06:59:57Z +15697,586,1,6679,2.99,2005-07-12T12:01:07Z,2020-02-15T06:59:57Z +15698,586,2,9786,2.99,2005-07-31T10:25:21Z,2020-02-15T06:59:57Z +15699,586,2,9896,2.99,2005-07-31T14:09:48Z,2020-02-15T06:59:57Z +15700,586,1,11034,2.99,2005-08-02T05:54:53Z,2020-02-15T06:59:57Z +15701,586,1,11763,0.99,2005-08-17T09:51:39Z,2020-02-15T06:59:57Z +15702,586,1,12013,4.99,2005-08-17T19:23:02Z,2020-02-15T06:59:57Z +15703,586,1,12898,0.99,2005-08-19T03:54:34Z,2020-02-15T06:59:57Z +15704,586,2,14043,2.99,2005-08-20T21:46:43Z,2020-02-15T06:59:57Z +15705,586,1,14392,1.99,2005-08-21T10:19:25Z,2020-02-15T06:59:57Z +15706,586,2,14533,2.99,2005-08-21T15:15:19Z,2020-02-15T06:59:57Z +15707,586,1,15666,3.99,2005-08-23T09:01:10Z,2020-02-15T06:59:57Z +15708,586,2,15684,0.99,2005-08-23T09:40:04Z,2020-02-15T06:59:57Z +15709,587,1,181,4.99,2005-05-26T04:47:06Z,2020-02-15T06:59:57Z +15710,587,1,361,0.99,2005-05-27T07:03:28Z,2020-02-15T06:59:57Z +15711,587,2,1330,2.99,2005-06-15T11:29:17Z,2020-02-15T06:59:57Z +15712,587,2,2034,4.99,2005-06-17T13:27:16Z,2020-02-15T06:59:57Z +15713,587,1,2220,2.99,2005-06-18T03:21:36Z,2020-02-15T06:59:57Z +15714,587,1,2329,4.99,2005-06-18T10:22:52Z,2020-02-15T06:59:57Z +15715,587,2,3562,2.99,2005-07-06T02:54:36Z,2020-02-15T06:59:57Z +15716,587,2,3969,0.99,2005-07-06T22:47:59Z,2020-02-15T06:59:57Z +15717,587,2,5243,3.99,2005-07-09T13:22:08Z,2020-02-15T06:59:57Z +15718,587,1,6639,0.99,2005-07-12T10:00:44Z,2020-02-15T06:59:57Z +15719,587,2,6665,6.99,2005-07-12T11:29:14Z,2020-02-15T06:59:57Z +15720,587,1,7501,8.99,2005-07-27T20:16:59Z,2020-02-15T06:59:57Z +15721,587,2,8776,5.99,2005-07-29T20:07:06Z,2020-02-15T06:59:57Z +15722,587,2,9720,6.99,2005-07-31T08:25:21Z,2020-02-15T06:59:57Z +15723,587,2,9785,4.99,2005-07-31T10:22:15Z,2020-02-15T06:59:57Z +15724,587,2,9909,5.99,2005-07-31T14:43:34Z,2020-02-15T06:59:57Z +15725,587,2,10224,4.99,2005-08-01T01:31:56Z,2020-02-15T06:59:57Z +15726,587,1,10825,2.99,2005-08-01T23:05:33Z,2020-02-15T06:59:57Z +15727,587,1,11078,2.99,2005-08-02T07:26:58Z,2020-02-15T06:59:57Z +15728,587,2,11403,4.99,2005-08-02T19:10:21Z,2020-02-15T06:59:57Z +15729,587,2,12164,4.99,2005-08-18T00:46:38Z,2020-02-15T06:59:57Z +15730,587,2,12330,6.99,2005-08-18T06:46:33Z,2020-02-15T06:59:57Z +15731,587,2,14710,4.99,2005-08-21T21:15:23Z,2020-02-15T06:59:57Z +15732,587,2,15348,2.99,2005-08-22T21:13:46Z,2020-02-15T06:59:57Z +15733,587,2,15349,0.99,2005-08-22T21:13:51Z,2020-02-15T06:59:57Z +15734,587,1,12144,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15735,588,1,576,2.99,2005-05-28T10:56:10Z,2020-02-15T06:59:57Z +15736,588,1,961,4.99,2005-05-30T18:16:44Z,2020-02-15T06:59:57Z +15737,588,2,1885,2.99,2005-06-17T03:35:59Z,2020-02-15T06:59:57Z +15738,588,2,1903,6.99,2005-06-17T04:37:20Z,2020-02-15T06:59:57Z +15739,588,2,2270,7.99,2005-06-18T06:29:01Z,2020-02-15T06:59:57Z +15740,588,1,2453,2.99,2005-06-18T19:30:53Z,2020-02-15T06:59:57Z +15741,588,2,2920,3.99,2005-06-20T04:12:46Z,2020-02-15T06:59:57Z +15742,588,1,3628,4.99,2005-07-06T06:19:43Z,2020-02-15T06:59:57Z +15743,588,1,4101,0.99,2005-07-07T06:25:11Z,2020-02-15T06:59:57Z +15744,588,2,4207,5.99,2005-07-07T11:32:45Z,2020-02-15T06:59:57Z +15745,588,2,5203,2.99,2005-07-09T10:53:59Z,2020-02-15T06:59:57Z +15746,588,1,5335,4.99,2005-07-09T17:00:49Z,2020-02-15T06:59:57Z +15747,588,1,6368,4.99,2005-07-11T21:19:01Z,2020-02-15T06:59:57Z +15748,588,2,7377,2.99,2005-07-27T15:31:28Z,2020-02-15T06:59:57Z +15749,588,2,7903,2.99,2005-07-28T11:20:36Z,2020-02-15T06:59:57Z +15750,588,1,8421,4.99,2005-07-29T07:00:47Z,2020-02-15T06:59:57Z +15751,588,1,8429,2.99,2005-07-29T07:11:49Z,2020-02-15T06:59:57Z +15752,588,2,8519,2.99,2005-07-29T10:09:43Z,2020-02-15T06:59:57Z +15753,588,1,8769,2.99,2005-07-29T19:45:33Z,2020-02-15T06:59:57Z +15754,588,2,9326,2.99,2005-07-30T17:30:03Z,2020-02-15T06:59:57Z +15755,588,2,9370,4.99,2005-07-30T18:57:29Z,2020-02-15T06:59:57Z +15756,588,2,10373,4.99,2005-08-01T06:24:26Z,2020-02-15T06:59:57Z +15757,588,1,12185,2.99,2005-08-18T01:40:14Z,2020-02-15T06:59:57Z +15758,588,2,12815,4.99,2005-08-19T00:59:42Z,2020-02-15T06:59:57Z +15759,588,1,13064,4.99,2005-08-19T09:46:53Z,2020-02-15T06:59:57Z +15760,588,1,13923,1.99,2005-08-20T17:05:02Z,2020-02-15T06:59:57Z +15761,588,1,15109,1.99,2005-08-22T12:12:58Z,2020-02-15T06:59:57Z +15762,588,1,15158,2.99,2005-08-22T14:30:39Z,2020-02-15T06:59:57Z +15763,588,1,15209,4.99,2005-08-22T16:37:32Z,2020-02-15T06:59:57Z +15764,589,1,531,0.99,2005-05-28T05:23:38Z,2020-02-15T06:59:57Z +15765,589,1,596,4.99,2005-05-28T14:00:03Z,2020-02-15T06:59:57Z +15766,589,1,737,4.99,2005-05-29T08:11:31Z,2020-02-15T06:59:57Z +15767,589,1,1439,4.99,2005-06-15T18:45:32Z,2020-02-15T06:59:57Z +15768,589,2,1703,4.99,2005-06-16T13:28:44Z,2020-02-15T06:59:57Z +15769,589,2,2652,8.99,2005-06-19T10:35:26Z,2020-02-15T06:59:57Z +15770,589,1,2707,8.99,2005-06-19T13:57:08Z,2020-02-15T06:59:57Z +15771,589,1,2979,2.99,2005-06-20T08:31:05Z,2020-02-15T06:59:57Z +15772,589,2,4986,2.99,2005-07-09T00:44:33Z,2020-02-15T06:59:57Z +15773,589,1,5951,0.99,2005-07-10T23:14:29Z,2020-02-15T06:59:57Z +15774,589,2,6177,4.99,2005-07-11T10:53:49Z,2020-02-15T06:59:57Z +15775,589,2,6247,3.99,2005-07-11T15:00:05Z,2020-02-15T06:59:57Z +15776,589,2,7250,0.99,2005-07-27T10:44:09Z,2020-02-15T06:59:57Z +15777,589,2,7431,3.99,2005-07-27T17:27:27Z,2020-02-15T06:59:57Z +15778,589,2,7948,9.99,2005-07-28T13:06:16Z,2020-02-15T06:59:57Z +15779,589,2,8056,0.99,2005-07-28T17:04:15Z,2020-02-15T06:59:57Z +15780,589,1,8374,3.99,2005-07-29T05:24:02Z,2020-02-15T06:59:57Z +15781,589,1,9153,4.99,2005-07-30T10:58:16Z,2020-02-15T06:59:57Z +15782,589,2,10544,4.99,2005-08-01T12:36:21Z,2020-02-15T06:59:57Z +15783,589,1,11980,4.99,2005-08-17T18:10:18Z,2020-02-15T06:59:57Z +15784,589,1,12738,7.99,2005-08-18T22:11:47Z,2020-02-15T06:59:57Z +15785,589,2,12933,8.99,2005-08-19T05:18:20Z,2020-02-15T06:59:57Z +15786,589,1,14038,6.99,2005-08-20T21:39:23Z,2020-02-15T06:59:57Z +15787,589,1,14254,6.99,2005-08-21T05:51:28Z,2020-02-15T06:59:57Z +15788,589,1,14544,0.99,2005-08-21T15:41:01Z,2020-02-15T06:59:57Z +15789,589,2,14706,0.99,2005-08-21T21:04:42Z,2020-02-15T06:59:57Z +15790,589,2,15917,5.99,2005-08-23T17:57:28Z,2020-02-15T06:59:57Z +15791,589,2,15992,0.99,2005-08-23T20:28:32Z,2020-02-15T06:59:57Z +15792,590,1,602,3.99,2005-05-28T14:15:54Z,2020-02-15T06:59:57Z +15793,590,2,1456,7.99,2005-06-15T20:00:11Z,2020-02-15T06:59:57Z +15794,590,2,2352,2.99,2005-06-18T12:40:15Z,2020-02-15T06:59:57Z +15795,590,2,2775,2.99,2005-06-19T18:14:20Z,2020-02-15T06:59:57Z +15796,590,1,2916,6.99,2005-06-20T04:01:04Z,2020-02-15T06:59:57Z +15797,590,1,2964,9.99,2005-06-20T07:33:29Z,2020-02-15T06:59:57Z +15798,590,2,4685,4.99,2005-07-08T10:45:13Z,2020-02-15T06:59:57Z +15799,590,1,4710,2.99,2005-07-08T12:04:53Z,2020-02-15T06:59:57Z +15800,590,2,4722,4.99,2005-07-08T12:42:27Z,2020-02-15T06:59:57Z +15801,590,1,5165,0.99,2005-07-09T09:08:53Z,2020-02-15T06:59:57Z +15802,590,1,5529,2.99,2005-07-10T02:11:13Z,2020-02-15T06:59:57Z +15803,590,1,5991,4.99,2005-07-11T01:03:38Z,2020-02-15T06:59:57Z +15804,590,2,6232,4.99,2005-07-11T14:08:27Z,2020-02-15T06:59:57Z +15805,590,2,6492,4.99,2005-07-12T02:28:40Z,2020-02-15T06:59:57Z +15806,590,1,7010,4.99,2005-07-27T01:56:01Z,2020-02-15T06:59:57Z +15807,590,2,7665,2.99,2005-07-28T02:28:30Z,2020-02-15T06:59:57Z +15808,590,1,8195,5.99,2005-07-28T22:52:58Z,2020-02-15T06:59:57Z +15809,590,1,8801,4.99,2005-07-29T21:25:22Z,2020-02-15T06:59:57Z +15810,590,2,9126,0.99,2005-07-30T09:44:15Z,2020-02-15T06:59:57Z +15811,590,1,9884,4.99,2005-07-31T13:56:24Z,2020-02-15T06:59:57Z +15812,590,1,10657,4.99,2005-08-01T16:38:44Z,2020-02-15T06:59:57Z +15813,590,2,11578,5.99,2005-08-17T01:54:13Z,2020-02-15T06:59:57Z +15814,590,2,11713,3.99,2005-08-17T07:34:05Z,2020-02-15T06:59:57Z +15815,590,1,14830,2.99,2005-08-22T01:37:19Z,2020-02-15T06:59:57Z +15816,590,2,15458,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15817,591,1,1418,0.99,2005-06-15T17:51:27Z,2020-02-15T06:59:57Z +15818,591,2,3341,2.99,2005-06-21T10:37:25Z,2020-02-15T06:59:57Z +15819,591,2,3435,4.99,2005-06-21T19:14:58Z,2020-02-15T06:59:57Z +15820,591,1,3636,0.99,2005-07-06T07:03:52Z,2020-02-15T06:59:57Z +15821,591,2,4383,11.99,2005-07-07T20:45:51Z,2020-02-15T06:59:57Z +15822,591,1,4581,6.99,2005-07-08T06:05:06Z,2020-02-15T06:59:57Z +15823,591,1,5704,5.99,2005-07-10T10:06:29Z,2020-02-15T06:59:57Z +15824,591,1,5759,6.99,2005-07-10T12:43:22Z,2020-02-15T06:59:57Z +15825,591,1,7118,8.99,2005-07-27T05:53:50Z,2020-02-15T06:59:57Z +15826,591,1,7212,2.99,2005-07-27T09:21:22Z,2020-02-15T06:59:57Z +15827,591,2,7511,4.99,2005-07-27T20:38:40Z,2020-02-15T06:59:57Z +15828,591,1,7549,3.99,2005-07-27T21:53:21Z,2020-02-15T06:59:57Z +15829,591,2,7741,0.99,2005-07-28T05:25:55Z,2020-02-15T06:59:57Z +15830,591,1,7997,4.99,2005-07-28T15:02:25Z,2020-02-15T06:59:57Z +15831,591,1,8149,3.99,2005-07-28T20:48:12Z,2020-02-15T06:59:57Z +15832,591,2,8666,5.99,2005-07-29T15:39:38Z,2020-02-15T06:59:57Z +15833,591,2,8819,4.99,2005-07-29T22:14:26Z,2020-02-15T06:59:57Z +15834,591,1,9684,0.99,2005-07-31T06:48:33Z,2020-02-15T06:59:57Z +15835,591,1,10415,4.99,2005-08-01T08:05:59Z,2020-02-15T06:59:57Z +15836,591,2,12203,5.99,2005-08-18T02:18:52Z,2020-02-15T06:59:57Z +15837,591,2,12227,4.99,2005-08-18T03:04:28Z,2020-02-15T06:59:57Z +15838,591,1,12547,4.99,2005-08-18T14:29:39Z,2020-02-15T06:59:57Z +15839,591,1,12571,5.99,2005-08-18T15:31:18Z,2020-02-15T06:59:57Z +15840,591,1,12934,5.99,2005-08-19T05:18:42Z,2020-02-15T06:59:57Z +15841,591,2,13104,2.99,2005-08-19T11:06:06Z,2020-02-15T06:59:57Z +15842,591,2,13343,3.99,2005-08-19T20:22:08Z,2020-02-15T06:59:57Z +15843,591,1,13867,9.99,2005-08-20T15:05:42Z,2020-02-15T06:59:57Z +15844,592,2,1163,6.99,2005-06-14T23:12:46Z,2020-02-15T06:59:57Z +15845,592,2,1423,5.99,2005-06-15T18:08:12Z,2020-02-15T06:59:57Z +15846,592,1,1479,2.99,2005-06-15T21:13:38Z,2020-02-15T06:59:57Z +15847,592,1,2627,0.99,2005-06-19T08:32:00Z,2020-02-15T06:59:57Z +15848,592,1,3158,7.99,2005-06-20T21:08:19Z,2020-02-15T06:59:57Z +15849,592,2,3560,2.99,2005-07-06T02:51:37Z,2020-02-15T06:59:57Z +15850,592,1,3973,11.99,2005-07-06T22:58:31Z,2020-02-15T06:59:57Z +15851,592,1,4129,1.99,2005-07-07T07:37:03Z,2020-02-15T06:59:57Z +15852,592,1,4145,9.99,2005-07-07T08:26:39Z,2020-02-15T06:59:57Z +15853,592,1,4460,0.99,2005-07-07T23:50:14Z,2020-02-15T06:59:57Z +15854,592,1,4518,2.99,2005-07-08T02:48:36Z,2020-02-15T06:59:57Z +15855,592,1,6937,0.99,2005-07-26T23:15:50Z,2020-02-15T06:59:57Z +15856,592,2,7173,0.99,2005-07-27T07:59:24Z,2020-02-15T06:59:57Z +15857,592,1,7278,3.99,2005-07-27T11:50:34Z,2020-02-15T06:59:57Z +15858,592,2,7364,4.99,2005-07-27T14:58:40Z,2020-02-15T06:59:57Z +15859,592,1,8730,2.99,2005-07-29T18:23:34Z,2020-02-15T06:59:57Z +15860,592,2,8773,0.99,2005-07-29T19:55:34Z,2020-02-15T06:59:57Z +15861,592,1,9268,4.99,2005-07-30T15:02:30Z,2020-02-15T06:59:57Z +15862,592,1,9437,3.99,2005-07-30T21:36:04Z,2020-02-15T06:59:57Z +15863,592,2,9666,6.99,2005-07-31T06:20:58Z,2020-02-15T06:59:57Z +15864,592,2,10383,0.99,2005-08-01T06:37:16Z,2020-02-15T06:59:57Z +15865,592,2,10634,2.99,2005-08-01T15:37:48Z,2020-02-15T06:59:57Z +15866,592,1,11410,8.99,2005-08-02T19:29:01Z,2020-02-15T06:59:57Z +15867,592,2,12043,0.99,2005-08-17T20:38:21Z,2020-02-15T06:59:57Z +15868,592,2,12619,0.99,2005-08-18T17:24:15Z,2020-02-15T06:59:57Z +15869,592,1,12976,1.99,2005-08-19T06:52:58Z,2020-02-15T06:59:57Z +15870,592,1,13157,2.99,2005-08-19T13:12:28Z,2020-02-15T06:59:57Z +15871,592,2,13662,3.99,2005-08-20T08:11:58Z,2020-02-15T06:59:57Z +15872,592,2,14606,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15873,593,1,790,2.99,2005-05-29T16:19:29Z,2020-02-15T06:59:57Z +15874,593,1,991,8.99,2005-05-30T23:29:22Z,2020-02-15T06:59:57Z +15875,593,2,2055,5.99,2005-06-17T15:27:03Z,2020-02-15T06:59:57Z +15876,593,2,2205,4.99,2005-06-18T02:14:34Z,2020-02-15T06:59:57Z +15877,593,1,2441,4.99,2005-06-18T18:45:11Z,2020-02-15T06:59:57Z +15878,593,1,2832,4.99,2005-06-19T21:21:53Z,2020-02-15T06:59:57Z +15879,593,2,3542,2.99,2005-07-06T01:51:42Z,2020-02-15T06:59:57Z +15880,593,2,4075,2.99,2005-07-07T04:51:44Z,2020-02-15T06:59:57Z +15881,593,2,4280,3.99,2005-07-07T15:09:31Z,2020-02-15T06:59:57Z +15882,593,2,4623,0.99,2005-07-08T08:03:22Z,2020-02-15T06:59:57Z +15883,593,2,4781,4.99,2005-07-08T16:06:55Z,2020-02-15T06:59:57Z +15884,593,2,4867,0.99,2005-07-08T19:10:52Z,2020-02-15T06:59:57Z +15885,593,1,6386,2.99,2005-07-11T22:14:57Z,2020-02-15T06:59:57Z +15886,593,1,6731,2.99,2005-07-12T13:58:27Z,2020-02-15T06:59:57Z +15887,593,2,7958,4.99,2005-07-28T13:34:34Z,2020-02-15T06:59:57Z +15888,593,1,8497,2.99,2005-07-29T09:07:03Z,2020-02-15T06:59:57Z +15889,593,2,9329,6.99,2005-07-30T17:42:38Z,2020-02-15T06:59:57Z +15890,593,1,9483,6.99,2005-07-30T23:31:31Z,2020-02-15T06:59:57Z +15891,593,1,10368,3.99,2005-08-01T06:13:38Z,2020-02-15T06:59:57Z +15892,593,2,10533,3.99,2005-08-01T12:14:16Z,2020-02-15T06:59:57Z +15893,593,1,10840,5.99,2005-08-01T23:38:34Z,2020-02-15T06:59:57Z +15894,593,2,10904,4.99,2005-08-02T01:43:02Z,2020-02-15T06:59:57Z +15895,593,2,12744,2.99,2005-08-18T22:22:36Z,2020-02-15T06:59:57Z +15896,593,1,13524,6.99,2005-08-20T02:48:43Z,2020-02-15T06:59:57Z +15897,593,1,14408,5.99,2005-08-21T10:47:24Z,2020-02-15T06:59:57Z +15898,593,1,14653,0.99,2005-08-21T19:35:59Z,2020-02-15T06:59:57Z +15899,594,1,313,4.99,2005-05-26T22:56:19Z,2020-02-15T06:59:57Z +15900,594,1,360,8.99,2005-05-27T06:51:14Z,2020-02-15T06:59:57Z +15901,594,2,1018,0.99,2005-05-31T02:53:42Z,2020-02-15T06:59:57Z +15902,594,1,1045,6.99,2005-05-31T06:29:01Z,2020-02-15T06:59:57Z +15903,594,2,1537,5.99,2005-06-16T00:52:51Z,2020-02-15T06:59:57Z +15904,594,1,1816,4.99,2005-06-16T21:20:41Z,2020-02-15T06:59:57Z +15905,594,1,1950,2.99,2005-06-17T08:26:52Z,2020-02-15T06:59:57Z +15906,594,1,2276,6.99,2005-06-18T06:33:48Z,2020-02-15T06:59:57Z +15907,594,2,2786,0.99,2005-06-19T18:46:43Z,2020-02-15T06:59:57Z +15908,594,2,3302,1.99,2005-06-21T07:33:40Z,2020-02-15T06:59:57Z +15909,594,2,3474,0.99,2005-07-05T22:59:53Z,2020-02-15T06:59:57Z +15910,594,1,3546,4.99,2005-07-06T02:17:54Z,2020-02-15T06:59:57Z +15911,594,2,3960,2.99,2005-07-06T22:08:53Z,2020-02-15T06:59:57Z +15912,594,1,4037,5.99,2005-07-07T02:52:52Z,2020-02-15T06:59:57Z +15913,594,1,4154,3.99,2005-07-07T08:58:23Z,2020-02-15T06:59:57Z +15914,594,2,5386,2.99,2005-07-09T19:19:09Z,2020-02-15T06:59:57Z +15915,594,1,6473,6.99,2005-07-12T01:35:40Z,2020-02-15T06:59:57Z +15916,594,1,7533,8.99,2005-07-27T21:24:33Z,2020-02-15T06:59:57Z +15917,594,1,8567,1.99,2005-07-29T11:37:30Z,2020-02-15T06:59:57Z +15918,594,1,8603,2.99,2005-07-29T13:07:07Z,2020-02-15T06:59:57Z +15919,594,2,8820,5.99,2005-07-29T22:14:56Z,2020-02-15T06:59:57Z +15920,594,1,9545,7.99,2005-07-31T01:46:24Z,2020-02-15T06:59:57Z +15921,594,1,9698,3.99,2005-07-31T07:24:35Z,2020-02-15T06:59:57Z +15922,594,2,9802,4.99,2005-07-31T11:04:20Z,2020-02-15T06:59:57Z +15923,594,2,10704,8.99,2005-08-01T18:38:02Z,2020-02-15T06:59:57Z +15924,594,2,14824,4.99,2005-08-22T01:27:51Z,2020-02-15T06:59:57Z +15925,594,1,14999,4.99,2005-08-22T07:54:47Z,2020-02-15T06:59:57Z +15926,595,1,613,6.99,2005-05-28T15:27:22Z,2020-02-15T06:59:57Z +15927,595,2,1170,2.99,2005-06-14T23:47:35Z,2020-02-15T06:59:57Z +15928,595,2,3371,4.99,2005-06-21T13:27:22Z,2020-02-15T06:59:57Z +15929,595,1,3789,9.99,2005-07-06T14:02:26Z,2020-02-15T06:59:57Z +15930,595,1,4017,4.99,2005-07-07T01:08:18Z,2020-02-15T06:59:57Z +15931,595,1,4241,4.99,2005-07-07T13:39:00Z,2020-02-15T06:59:57Z +15932,595,2,4775,2.99,2005-07-08T15:44:05Z,2020-02-15T06:59:57Z +15933,595,1,5631,1.99,2005-07-10T06:15:45Z,2020-02-15T06:59:57Z +15934,595,1,5952,1.99,2005-07-10T23:18:20Z,2020-02-15T06:59:57Z +15935,595,1,6105,6.99,2005-07-11T07:03:19Z,2020-02-15T06:59:57Z +15936,595,1,6704,6.99,2005-07-12T12:50:24Z,2020-02-15T06:59:57Z +15937,595,1,7086,4.99,2005-07-27T04:39:46Z,2020-02-15T06:59:57Z +15938,595,2,7307,0.99,2005-07-27T12:59:10Z,2020-02-15T06:59:57Z +15939,595,1,7396,4.99,2005-07-27T16:03:53Z,2020-02-15T06:59:57Z +15940,595,2,7490,3.99,2005-07-27T19:48:12Z,2020-02-15T06:59:57Z +15941,595,1,9152,2.99,2005-07-30T10:51:27Z,2020-02-15T06:59:57Z +15942,595,2,9223,2.99,2005-07-30T13:23:20Z,2020-02-15T06:59:57Z +15943,595,1,9354,4.99,2005-07-30T18:32:51Z,2020-02-15T06:59:57Z +15944,595,2,9497,0.99,2005-07-30T23:56:54Z,2020-02-15T06:59:57Z +15945,595,2,9542,4.99,2005-07-31T01:41:48Z,2020-02-15T06:59:57Z +15946,595,1,9631,2.99,2005-07-31T05:02:00Z,2020-02-15T06:59:57Z +15947,595,2,9826,10.99,2005-07-31T11:51:46Z,2020-02-15T06:59:57Z +15948,595,1,10729,2.99,2005-08-01T19:21:11Z,2020-02-15T06:59:57Z +15949,595,1,10932,2.99,2005-08-02T02:46:22Z,2020-02-15T06:59:57Z +15950,595,2,11748,0.99,2005-08-17T09:04:02Z,2020-02-15T06:59:57Z +15951,595,1,12235,0.99,2005-08-18T03:17:50Z,2020-02-15T06:59:57Z +15952,595,1,14334,0.99,2005-08-21T08:32:32Z,2020-02-15T06:59:57Z +15953,595,2,15576,2.99,2005-08-23T05:32:03Z,2020-02-15T06:59:57Z +15954,595,2,15994,0.99,2005-08-23T20:29:10Z,2020-02-15T06:59:57Z +15955,595,2,16016,2.99,2005-08-23T21:26:35Z,2020-02-15T06:59:57Z +15956,596,2,303,4.99,2005-05-26T21:16:52Z,2020-02-15T06:59:57Z +15957,596,2,625,0.99,2005-05-28T16:35:46Z,2020-02-15T06:59:57Z +15958,596,2,667,4.99,2005-05-28T21:49:02Z,2020-02-15T06:59:57Z +15959,596,2,782,1.99,2005-05-29T14:38:57Z,2020-02-15T06:59:57Z +15960,596,1,914,2.99,2005-05-30T11:06:00Z,2020-02-15T06:59:57Z +15961,596,1,974,6.99,2005-05-30T20:28:42Z,2020-02-15T06:59:57Z +15962,596,1,1644,1.99,2005-06-16T08:58:18Z,2020-02-15T06:59:57Z +15963,596,1,2767,1.99,2005-06-19T17:46:35Z,2020-02-15T06:59:57Z +15964,596,2,5742,3.99,2005-07-10T11:56:18Z,2020-02-15T06:59:57Z +15965,596,1,6015,2.99,2005-07-11T02:04:12Z,2020-02-15T06:59:57Z +15966,596,1,6017,0.99,2005-07-11T02:05:32Z,2020-02-15T06:59:57Z +15967,596,1,6197,4.99,2005-07-11T12:09:51Z,2020-02-15T06:59:57Z +15968,596,2,6883,4.99,2005-07-12T20:50:48Z,2020-02-15T06:59:57Z +15969,596,1,10094,3.99,2005-07-31T20:31:18Z,2020-02-15T06:59:57Z +15970,596,2,10692,4.99,2005-08-01T18:12:35Z,2020-02-15T06:59:57Z +15971,596,1,10756,2.99,2005-08-01T20:17:03Z,2020-02-15T06:59:57Z +15972,596,2,10804,0.99,2005-08-01T22:22:11Z,2020-02-15T06:59:57Z +15973,596,2,11009,4.99,2005-08-02T05:06:23Z,2020-02-15T06:59:57Z +15974,596,2,11852,3.99,2005-08-17T13:38:27Z,2020-02-15T06:59:57Z +15975,596,1,11934,0.99,2005-08-17T16:40:00Z,2020-02-15T06:59:57Z +15976,596,2,12560,4.99,2005-08-18T14:54:19Z,2020-02-15T06:59:57Z +15977,596,1,12878,4.99,2005-08-19T03:17:08Z,2020-02-15T06:59:57Z +15978,596,1,13648,4.99,2005-08-20T07:48:10Z,2020-02-15T06:59:57Z +15979,596,1,14050,3.99,2005-08-20T22:09:04Z,2020-02-15T06:59:57Z +15980,596,1,14417,0.99,2005-08-21T11:13:35Z,2020-02-15T06:59:57Z +15981,596,1,15405,0.99,2005-08-22T23:20:41Z,2020-02-15T06:59:57Z +15982,596,1,15899,6.99,2005-08-23T17:16:28Z,2020-02-15T06:59:57Z +15983,596,1,15423,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15984,597,2,34,2.99,2005-05-25T04:19:28Z,2020-02-15T06:59:57Z +15985,597,2,514,8.99,2005-05-28T03:09:28Z,2020-02-15T06:59:57Z +15986,597,1,2379,0.99,2005-06-18T14:59:39Z,2020-02-15T06:59:57Z +15987,597,1,2696,4.99,2005-06-19T13:28:42Z,2020-02-15T06:59:57Z +15988,597,1,3201,1.99,2005-06-21T00:30:26Z,2020-02-15T06:59:57Z +15989,597,1,5093,0.99,2005-07-09T05:59:12Z,2020-02-15T06:59:57Z +15990,597,1,5348,4.99,2005-07-09T17:34:11Z,2020-02-15T06:59:57Z +15991,597,2,5732,2.99,2005-07-10T11:36:32Z,2020-02-15T06:59:57Z +15992,597,1,6508,2.99,2005-07-12T03:34:50Z,2020-02-15T06:59:57Z +15993,597,2,7968,4.99,2005-07-28T13:57:35Z,2020-02-15T06:59:57Z +15994,597,2,8948,4.99,2005-07-30T03:16:18Z,2020-02-15T06:59:57Z +15995,597,2,10021,4.99,2005-07-31T18:24:39Z,2020-02-15T06:59:57Z +15996,597,1,10214,0.99,2005-08-01T01:04:15Z,2020-02-15T06:59:57Z +15997,597,2,10986,5.99,2005-08-02T04:35:24Z,2020-02-15T06:59:57Z +15998,597,2,11147,4.99,2005-08-02T09:45:54Z,2020-02-15T06:59:57Z +15999,597,2,11223,2.99,2005-08-02T12:34:27Z,2020-02-15T06:59:57Z +16000,597,1,11240,2.99,2005-08-02T13:28:30Z,2020-02-15T06:59:57Z +16001,597,1,11880,5.99,2005-08-17T14:28:28Z,2020-02-15T06:59:57Z +16002,597,1,12081,4.99,2005-08-17T22:10:46Z,2020-02-15T06:59:57Z +16003,597,1,12992,0.99,2005-08-19T07:23:06Z,2020-02-15T06:59:57Z +16004,597,2,13019,2.99,2005-08-19T08:07:43Z,2020-02-15T06:59:57Z +16005,597,1,13152,6.99,2005-08-19T13:09:32Z,2020-02-15T06:59:57Z +16006,597,2,15275,2.99,2005-08-22T18:57:39Z,2020-02-15T06:59:57Z +16007,597,1,15469,4.99,2005-08-23T01:29:59Z,2020-02-15T06:59:57Z +16008,597,1,11652,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +16009,598,1,3005,2.99,2005-06-20T10:10:29Z,2020-02-15T06:59:57Z +16010,598,1,3648,0.99,2005-07-06T07:30:41Z,2020-02-15T06:59:57Z +16011,598,2,3950,6.99,2005-07-06T21:48:44Z,2020-02-15T06:59:57Z +16012,598,1,3972,4.99,2005-07-06T22:53:57Z,2020-02-15T06:59:57Z +16013,598,1,4181,4.99,2005-07-07T10:27:54Z,2020-02-15T06:59:57Z +16014,598,2,5688,5.99,2005-07-10T09:16:08Z,2020-02-15T06:59:57Z +16015,598,1,6519,4.99,2005-07-12T04:00:36Z,2020-02-15T06:59:57Z +16016,598,2,6528,4.99,2005-07-12T04:29:44Z,2020-02-15T06:59:57Z +16017,598,2,6575,0.99,2005-07-12T06:12:53Z,2020-02-15T06:59:57Z +16018,598,2,6660,3.99,2005-07-12T11:20:12Z,2020-02-15T06:59:57Z +16019,598,2,7201,6.99,2005-07-27T08:57:40Z,2020-02-15T06:59:57Z +16020,598,2,7354,0.99,2005-07-27T14:42:11Z,2020-02-15T06:59:57Z +16021,598,1,7998,0.99,2005-07-28T15:08:48Z,2020-02-15T06:59:57Z +16022,598,2,8436,0.99,2005-07-29T07:21:20Z,2020-02-15T06:59:57Z +16023,598,1,8511,5.99,2005-07-29T09:42:42Z,2020-02-15T06:59:57Z +16024,598,1,8939,4.99,2005-07-30T02:56:53Z,2020-02-15T06:59:57Z +16025,598,1,10054,4.99,2005-07-31T19:15:52Z,2020-02-15T06:59:57Z +16026,598,2,11350,0.99,2005-08-02T17:22:59Z,2020-02-15T06:59:57Z +16027,598,2,12601,2.99,2005-08-18T16:47:52Z,2020-02-15T06:59:57Z +16028,598,2,14345,0.99,2005-08-21T08:41:15Z,2020-02-15T06:59:57Z +16029,598,2,15307,2.99,2005-08-22T19:54:26Z,2020-02-15T06:59:57Z +16030,598,1,15443,7.99,2005-08-23T00:44:15Z,2020-02-15T06:59:57Z +16031,599,2,1008,4.99,2005-05-31T01:18:56Z,2020-02-15T06:59:57Z +16032,599,1,2272,1.99,2005-06-18T06:29:53Z,2020-02-15T06:59:57Z +16033,599,2,3043,6.99,2005-06-20T12:38:35Z,2020-02-15T06:59:57Z +16034,599,2,3398,4.99,2005-06-21T15:34:38Z,2020-02-15T06:59:57Z +16035,599,1,3429,6.99,2005-06-21T18:46:05Z,2020-02-15T06:59:57Z +16036,599,1,5065,0.99,2005-07-09T04:42:00Z,2020-02-15T06:59:57Z +16037,599,1,5843,2.99,2005-07-10T17:14:27Z,2020-02-15T06:59:57Z +16038,599,2,6800,9.99,2005-07-12T17:03:56Z,2020-02-15T06:59:57Z +16039,599,2,6895,2.99,2005-07-12T21:23:59Z,2020-02-15T06:59:57Z +16040,599,1,8965,6.99,2005-07-30T03:52:37Z,2020-02-15T06:59:57Z +16041,599,2,9630,2.99,2005-07-31T04:57:07Z,2020-02-15T06:59:57Z +16042,599,2,9679,2.99,2005-07-31T06:41:19Z,2020-02-15T06:59:57Z +16043,599,2,11522,3.99,2005-08-17T00:05:05Z,2020-02-15T06:59:57Z +16044,599,1,14233,1.99,2005-08-21T05:07:08Z,2020-02-15T06:59:57Z +16045,599,1,14599,4.99,2005-08-21T17:43:42Z,2020-02-15T06:59:57Z +16046,599,1,14719,1.99,2005-08-21T21:41:57Z,2020-02-15T06:59:57Z +16047,599,2,15590,8.99,2005-08-23T06:09:44Z,2020-02-15T06:59:57Z +16048,599,2,15719,2.99,2005-08-23T11:08:46Z,2020-02-15T06:59:57Z +16049,599,2,15725,2.99,2005-08-23T11:25:00Z,2020-02-15T06:59:57Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/rental.csv b/drivers/csv/testdata/sakila-csv-noheader/rental.csv new file mode 100644 index 00000000..9fa1e001 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/rental.csv @@ -0,0 +1,16044 @@ +1,2005-05-24T22:53:30Z,367,130,2005-05-26T22:04:30Z,1,2020-02-15T06:59:36Z +2,2005-05-24T22:54:33Z,1525,459,2005-05-28T19:40:33Z,1,2020-02-15T06:59:36Z +3,2005-05-24T23:03:39Z,1711,408,2005-06-01T22:12:39Z,1,2020-02-15T06:59:36Z +4,2005-05-24T23:04:41Z,2452,333,2005-06-03T01:43:41Z,2,2020-02-15T06:59:36Z +5,2005-05-24T23:05:21Z,2079,222,2005-06-02T04:33:21Z,1,2020-02-15T06:59:36Z +6,2005-05-24T23:08:07Z,2792,549,2005-05-27T01:32:07Z,1,2020-02-15T06:59:36Z +7,2005-05-24T23:11:53Z,3995,269,2005-05-29T20:34:53Z,2,2020-02-15T06:59:36Z +8,2005-05-24T23:31:46Z,2346,239,2005-05-27T23:33:46Z,2,2020-02-15T06:59:36Z +9,2005-05-25T00:00:40Z,2580,126,2005-05-28T00:22:40Z,1,2020-02-15T06:59:36Z +10,2005-05-25T00:02:21Z,1824,399,2005-05-31T22:44:21Z,2,2020-02-15T06:59:36Z +11,2005-05-25T00:09:02Z,4443,142,2005-06-02T20:56:02Z,2,2020-02-15T06:59:36Z +12,2005-05-25T00:19:27Z,1584,261,2005-05-30T05:44:27Z,2,2020-02-15T06:59:36Z +13,2005-05-25T00:22:55Z,2294,334,2005-05-30T04:28:55Z,1,2020-02-15T06:59:36Z +14,2005-05-25T00:31:15Z,2701,446,2005-05-26T02:56:15Z,1,2020-02-15T06:59:36Z +15,2005-05-25T00:39:22Z,3049,319,2005-06-03T03:30:22Z,1,2020-02-15T06:59:36Z +16,2005-05-25T00:43:11Z,389,316,2005-05-26T04:42:11Z,2,2020-02-15T06:59:36Z +17,2005-05-25T01:06:36Z,830,575,2005-05-27T00:43:36Z,1,2020-02-15T06:59:36Z +18,2005-05-25T01:10:47Z,3376,19,2005-05-31T06:35:47Z,2,2020-02-15T06:59:36Z +19,2005-05-25T01:17:24Z,1941,456,2005-05-31T06:00:24Z,1,2020-02-15T06:59:36Z +20,2005-05-25T01:48:41Z,3517,185,2005-05-27T02:20:41Z,2,2020-02-15T06:59:36Z +21,2005-05-25T01:59:46Z,146,388,2005-05-26T01:01:46Z,2,2020-02-15T06:59:36Z +22,2005-05-25T02:19:23Z,727,509,2005-05-26T04:52:23Z,2,2020-02-15T06:59:36Z +23,2005-05-25T02:40:21Z,4441,438,2005-05-29T06:34:21Z,1,2020-02-15T06:59:36Z +24,2005-05-25T02:53:02Z,3273,350,2005-05-27T01:15:02Z,1,2020-02-15T06:59:36Z +25,2005-05-25T03:21:20Z,3961,37,2005-05-27T21:25:20Z,2,2020-02-15T06:59:36Z +26,2005-05-25T03:36:50Z,4371,371,2005-05-31T00:34:50Z,1,2020-02-15T06:59:36Z +27,2005-05-25T03:41:50Z,1225,301,2005-05-30T01:13:50Z,2,2020-02-15T06:59:36Z +28,2005-05-25T03:42:37Z,4068,232,2005-05-26T09:26:37Z,2,2020-02-15T06:59:36Z +29,2005-05-25T03:47:12Z,611,44,2005-05-30T00:31:12Z,2,2020-02-15T06:59:36Z +30,2005-05-25T04:01:32Z,3744,430,2005-05-30T03:12:32Z,1,2020-02-15T06:59:36Z +31,2005-05-25T04:05:17Z,4482,369,2005-05-30T07:15:17Z,1,2020-02-15T06:59:36Z +32,2005-05-25T04:06:21Z,3832,230,2005-05-25T23:55:21Z,1,2020-02-15T06:59:36Z +33,2005-05-25T04:18:51Z,1681,272,2005-05-27T03:58:51Z,1,2020-02-15T06:59:36Z +34,2005-05-25T04:19:28Z,2613,597,2005-05-29T00:10:28Z,2,2020-02-15T06:59:36Z +35,2005-05-25T04:24:36Z,1286,484,2005-05-27T07:02:36Z,2,2020-02-15T06:59:36Z +36,2005-05-25T04:36:26Z,1308,88,2005-05-29T00:31:26Z,1,2020-02-15T06:59:36Z +37,2005-05-25T04:44:31Z,403,535,2005-05-29T01:03:31Z,1,2020-02-15T06:59:36Z +38,2005-05-25T04:47:44Z,2540,302,2005-06-01T00:58:44Z,1,2020-02-15T06:59:36Z +39,2005-05-25T04:51:46Z,4466,207,2005-05-31T03:14:46Z,2,2020-02-15T06:59:36Z +40,2005-05-25T05:09:04Z,2638,413,2005-05-27T23:12:04Z,1,2020-02-15T06:59:36Z +41,2005-05-25T05:12:29Z,1761,174,2005-06-02T00:28:29Z,1,2020-02-15T06:59:36Z +42,2005-05-25T05:24:58Z,380,523,2005-05-31T02:47:58Z,2,2020-02-15T06:59:36Z +43,2005-05-25T05:39:25Z,2578,532,2005-05-26T06:54:25Z,2,2020-02-15T06:59:36Z +44,2005-05-25T05:53:23Z,3098,207,2005-05-29T10:56:23Z,2,2020-02-15T06:59:36Z +45,2005-05-25T05:59:39Z,1853,436,2005-06-02T09:56:39Z,2,2020-02-15T06:59:36Z +46,2005-05-25T06:04:08Z,3318,7,2005-06-02T08:18:08Z,2,2020-02-15T06:59:36Z +47,2005-05-25T06:05:20Z,2211,35,2005-05-30T03:04:20Z,1,2020-02-15T06:59:36Z +48,2005-05-25T06:20:46Z,1780,282,2005-06-02T05:42:46Z,1,2020-02-15T06:59:36Z +49,2005-05-25T06:39:35Z,2965,498,2005-05-30T10:12:35Z,2,2020-02-15T06:59:36Z +50,2005-05-25T06:44:53Z,1983,18,2005-05-28T11:28:53Z,2,2020-02-15T06:59:36Z +51,2005-05-25T06:49:10Z,1257,256,2005-05-26T06:42:10Z,1,2020-02-15T06:59:36Z +52,2005-05-25T06:51:29Z,4017,507,2005-05-31T01:27:29Z,2,2020-02-15T06:59:36Z +53,2005-05-25T07:19:16Z,1255,569,2005-05-27T05:19:16Z,2,2020-02-15T06:59:36Z +54,2005-05-25T07:23:25Z,2787,291,2005-06-01T05:05:25Z,2,2020-02-15T06:59:36Z +55,2005-05-25T08:26:13Z,1139,131,2005-05-30T10:57:13Z,1,2020-02-15T06:59:36Z +56,2005-05-25T08:28:11Z,1352,511,2005-05-26T14:21:11Z,1,2020-02-15T06:59:36Z +57,2005-05-25T08:43:32Z,3938,6,2005-05-29T06:42:32Z,2,2020-02-15T06:59:36Z +58,2005-05-25T08:53:14Z,3050,323,2005-05-28T14:40:14Z,1,2020-02-15T06:59:36Z +59,2005-05-25T08:56:42Z,2884,408,2005-06-01T09:52:42Z,1,2020-02-15T06:59:36Z +60,2005-05-25T08:58:25Z,330,470,2005-05-30T14:14:25Z,1,2020-02-15T06:59:36Z +61,2005-05-25T09:01:57Z,4210,250,2005-06-02T07:22:57Z,2,2020-02-15T06:59:36Z +62,2005-05-25T09:18:52Z,261,419,2005-05-30T10:55:52Z,1,2020-02-15T06:59:36Z +63,2005-05-25T09:19:16Z,4008,383,2005-05-27T04:24:16Z,1,2020-02-15T06:59:36Z +64,2005-05-25T09:21:29Z,79,368,2005-06-03T11:31:29Z,1,2020-02-15T06:59:36Z +65,2005-05-25T09:32:03Z,3552,346,2005-05-29T14:21:03Z,1,2020-02-15T06:59:36Z +66,2005-05-25T09:35:12Z,1162,86,2005-05-29T04:16:12Z,2,2020-02-15T06:59:36Z +67,2005-05-25T09:41:01Z,239,119,2005-05-27T13:46:01Z,2,2020-02-15T06:59:36Z +68,2005-05-25T09:47:31Z,4029,120,2005-05-31T10:20:31Z,2,2020-02-15T06:59:36Z +69,2005-05-25T10:10:14Z,3207,305,2005-05-27T14:02:14Z,2,2020-02-15T06:59:36Z +70,2005-05-25T10:15:23Z,2168,73,2005-05-27T05:56:23Z,2,2020-02-15T06:59:36Z +71,2005-05-25T10:26:39Z,2408,100,2005-05-28T04:59:39Z,1,2020-02-15T06:59:36Z +72,2005-05-25T10:52:13Z,2260,48,2005-05-28T05:52:13Z,2,2020-02-15T06:59:36Z +73,2005-05-25T11:00:07Z,517,391,2005-06-01T13:56:07Z,2,2020-02-15T06:59:36Z +74,2005-05-25T11:09:48Z,1744,265,2005-05-26T12:23:48Z,2,2020-02-15T06:59:36Z +75,2005-05-25T11:13:34Z,3393,510,2005-06-03T12:58:34Z,1,2020-02-15T06:59:36Z +76,2005-05-25T11:30:37Z,3021,1,2005-06-03T12:00:37Z,2,2020-02-15T06:59:36Z +77,2005-05-25T11:31:59Z,1303,451,2005-05-26T16:53:59Z,2,2020-02-15T06:59:36Z +78,2005-05-25T11:35:18Z,4067,135,2005-05-31T12:48:18Z,2,2020-02-15T06:59:36Z +79,2005-05-25T12:11:07Z,3299,245,2005-06-03T10:54:07Z,2,2020-02-15T06:59:36Z +80,2005-05-25T12:12:07Z,2478,314,2005-05-31T17:46:07Z,2,2020-02-15T06:59:36Z +81,2005-05-25T12:15:19Z,2610,286,2005-06-02T14:08:19Z,2,2020-02-15T06:59:36Z +82,2005-05-25T12:17:46Z,1388,427,2005-06-01T10:48:46Z,1,2020-02-15T06:59:36Z +83,2005-05-25T12:30:15Z,466,131,2005-05-27T15:40:15Z,1,2020-02-15T06:59:36Z +84,2005-05-25T12:36:30Z,1829,492,2005-05-29T18:33:30Z,1,2020-02-15T06:59:36Z +85,2005-05-25T13:05:34Z,470,414,2005-05-29T16:53:34Z,1,2020-02-15T06:59:36Z +86,2005-05-25T13:36:12Z,2275,266,2005-05-30T14:53:12Z,1,2020-02-15T06:59:36Z +87,2005-05-25T13:52:43Z,1586,331,2005-05-29T11:12:43Z,2,2020-02-15T06:59:36Z +88,2005-05-25T14:13:54Z,2221,53,2005-05-29T09:32:54Z,2,2020-02-15T06:59:36Z +89,2005-05-25T14:28:29Z,2181,499,2005-05-29T14:33:29Z,1,2020-02-15T06:59:36Z +90,2005-05-25T14:31:25Z,2984,25,2005-06-01T10:07:25Z,1,2020-02-15T06:59:36Z +91,2005-05-25T14:57:22Z,139,267,2005-06-01T18:32:22Z,1,2020-02-15T06:59:36Z +92,2005-05-25T15:38:46Z,775,302,2005-05-31T13:40:46Z,2,2020-02-15T06:59:36Z +93,2005-05-25T15:54:16Z,4360,288,2005-06-03T20:18:16Z,1,2020-02-15T06:59:36Z +94,2005-05-25T16:03:42Z,1675,197,2005-05-30T14:23:42Z,1,2020-02-15T06:59:36Z +95,2005-05-25T16:12:52Z,178,400,2005-06-02T18:55:52Z,2,2020-02-15T06:59:36Z +96,2005-05-25T16:32:19Z,3418,49,2005-05-30T10:47:19Z,2,2020-02-15T06:59:36Z +97,2005-05-25T16:34:24Z,1283,263,2005-05-28T12:13:24Z,2,2020-02-15T06:59:36Z +98,2005-05-25T16:48:24Z,2970,269,2005-05-27T11:29:24Z,2,2020-02-15T06:59:36Z +99,2005-05-25T16:50:20Z,535,44,2005-05-28T18:52:20Z,1,2020-02-15T06:59:36Z +100,2005-05-25T16:50:28Z,2599,208,2005-06-02T22:11:28Z,1,2020-02-15T06:59:36Z +101,2005-05-25T17:17:04Z,617,468,2005-05-31T19:47:04Z,1,2020-02-15T06:59:36Z +102,2005-05-25T17:22:10Z,373,343,2005-05-31T19:47:10Z,1,2020-02-15T06:59:36Z +103,2005-05-25T17:30:42Z,3343,384,2005-06-03T22:36:42Z,1,2020-02-15T06:59:36Z +104,2005-05-25T17:46:33Z,4281,310,2005-05-27T15:20:33Z,1,2020-02-15T06:59:36Z +105,2005-05-25T17:54:12Z,794,108,2005-05-30T12:03:12Z,2,2020-02-15T06:59:36Z +106,2005-05-25T18:18:19Z,3627,196,2005-06-04T00:01:19Z,2,2020-02-15T06:59:36Z +107,2005-05-25T18:28:09Z,2833,317,2005-06-03T22:46:09Z,2,2020-02-15T06:59:36Z +108,2005-05-25T18:30:05Z,3289,242,2005-05-30T19:40:05Z,1,2020-02-15T06:59:36Z +109,2005-05-25T18:40:20Z,1044,503,2005-05-29T20:39:20Z,2,2020-02-15T06:59:36Z +110,2005-05-25T18:43:49Z,4108,19,2005-06-03T18:13:49Z,2,2020-02-15T06:59:36Z +111,2005-05-25T18:45:19Z,3725,227,2005-05-28T17:18:19Z,1,2020-02-15T06:59:36Z +112,2005-05-25T18:57:24Z,2153,500,2005-06-02T20:44:24Z,1,2020-02-15T06:59:36Z +113,2005-05-25T19:07:40Z,2963,93,2005-05-27T22:16:40Z,2,2020-02-15T06:59:36Z +114,2005-05-25T19:12:42Z,4502,506,2005-06-01T23:10:42Z,1,2020-02-15T06:59:36Z +115,2005-05-25T19:13:25Z,749,455,2005-05-29T20:17:25Z,1,2020-02-15T06:59:36Z +116,2005-05-25T19:27:51Z,4453,18,2005-05-26T16:23:51Z,1,2020-02-15T06:59:36Z +117,2005-05-25T19:30:46Z,4278,7,2005-05-31T23:59:46Z,2,2020-02-15T06:59:36Z +118,2005-05-25T19:31:18Z,872,524,2005-05-31T15:00:18Z,1,2020-02-15T06:59:36Z +119,2005-05-25T19:37:02Z,1359,51,2005-05-29T23:51:02Z,2,2020-02-15T06:59:36Z +120,2005-05-25T19:37:47Z,37,365,2005-06-01T23:29:47Z,2,2020-02-15T06:59:36Z +121,2005-05-25T19:41:29Z,1053,405,2005-05-29T21:31:29Z,1,2020-02-15T06:59:36Z +122,2005-05-25T19:46:21Z,2908,273,2005-06-02T19:07:21Z,1,2020-02-15T06:59:36Z +123,2005-05-25T20:26:42Z,1795,43,2005-05-26T19:41:42Z,1,2020-02-15T06:59:36Z +124,2005-05-25T20:46:11Z,212,246,2005-05-30T00:47:11Z,2,2020-02-15T06:59:36Z +125,2005-05-25T20:48:50Z,952,368,2005-06-02T21:39:50Z,1,2020-02-15T06:59:36Z +126,2005-05-25T21:07:59Z,2047,439,2005-05-28T18:51:59Z,1,2020-02-15T06:59:36Z +127,2005-05-25T21:10:40Z,2026,94,2005-06-02T21:38:40Z,1,2020-02-15T06:59:36Z +128,2005-05-25T21:19:53Z,4322,40,2005-05-29T23:34:53Z,1,2020-02-15T06:59:36Z +129,2005-05-25T21:20:03Z,4154,23,2005-06-04T01:25:03Z,2,2020-02-15T06:59:36Z +130,2005-05-25T21:21:56Z,3990,56,2005-05-30T22:41:56Z,2,2020-02-15T06:59:36Z +131,2005-05-25T21:42:46Z,815,325,2005-05-30T23:25:46Z,2,2020-02-15T06:59:36Z +132,2005-05-25T21:46:54Z,3367,479,2005-05-31T21:02:54Z,1,2020-02-15T06:59:36Z +133,2005-05-25T21:48:30Z,399,237,2005-05-30T00:26:30Z,2,2020-02-15T06:59:36Z +134,2005-05-25T21:48:41Z,2272,222,2005-06-02T18:28:41Z,1,2020-02-15T06:59:36Z +135,2005-05-25T21:58:58Z,103,304,2005-06-03T17:50:58Z,1,2020-02-15T06:59:36Z +136,2005-05-25T22:02:30Z,2296,504,2005-05-31T18:06:30Z,1,2020-02-15T06:59:36Z +137,2005-05-25T22:25:18Z,2591,560,2005-06-01T02:30:18Z,2,2020-02-15T06:59:36Z +138,2005-05-25T22:48:22Z,4134,586,2005-05-29T20:21:22Z,2,2020-02-15T06:59:36Z +139,2005-05-25T23:00:21Z,327,257,2005-05-29T17:12:21Z,1,2020-02-15T06:59:36Z +140,2005-05-25T23:34:22Z,655,354,2005-05-27T01:10:22Z,1,2020-02-15T06:59:36Z +141,2005-05-25T23:34:53Z,811,89,2005-06-02T01:57:53Z,1,2020-02-15T06:59:36Z +142,2005-05-25T23:43:47Z,4407,472,2005-05-29T00:46:47Z,2,2020-02-15T06:59:36Z +143,2005-05-25T23:45:52Z,847,297,2005-05-27T21:41:52Z,2,2020-02-15T06:59:36Z +144,2005-05-25T23:49:56Z,1689,357,2005-06-01T21:41:56Z,2,2020-02-15T06:59:36Z +145,2005-05-25T23:59:03Z,3905,82,2005-05-31T02:56:03Z,1,2020-02-15T06:59:36Z +146,2005-05-26T00:07:11Z,1431,433,2005-06-04T00:20:11Z,2,2020-02-15T06:59:36Z +147,2005-05-26T00:17:50Z,633,274,2005-05-29T23:21:50Z,2,2020-02-15T06:59:36Z +148,2005-05-26T00:25:23Z,4252,142,2005-06-01T19:29:23Z,2,2020-02-15T06:59:36Z +149,2005-05-26T00:28:05Z,1084,319,2005-06-02T21:30:05Z,2,2020-02-15T06:59:36Z +150,2005-05-26T00:28:39Z,909,429,2005-06-01T02:10:39Z,2,2020-02-15T06:59:36Z +151,2005-05-26T00:37:28Z,2942,14,2005-05-30T06:28:28Z,1,2020-02-15T06:59:36Z +152,2005-05-26T00:41:10Z,2622,57,2005-06-03T06:05:10Z,1,2020-02-15T06:59:36Z +153,2005-05-26T00:47:47Z,3888,348,2005-05-27T21:28:47Z,1,2020-02-15T06:59:36Z +154,2005-05-26T00:55:56Z,1354,185,2005-05-29T23:18:56Z,2,2020-02-15T06:59:36Z +155,2005-05-26T01:15:05Z,288,551,2005-06-01T00:03:05Z,1,2020-02-15T06:59:36Z +156,2005-05-26T01:19:05Z,3193,462,2005-05-27T23:43:05Z,1,2020-02-15T06:59:36Z +157,2005-05-26T01:25:21Z,887,344,2005-05-26T21:17:21Z,2,2020-02-15T06:59:36Z +158,2005-05-26T01:27:11Z,2395,354,2005-06-03T00:30:11Z,2,2020-02-15T06:59:36Z +159,2005-05-26T01:34:28Z,3453,505,2005-05-29T04:00:28Z,1,2020-02-15T06:59:36Z +160,2005-05-26T01:46:20Z,1885,290,2005-06-01T05:45:20Z,1,2020-02-15T06:59:36Z +161,2005-05-26T01:51:48Z,2941,182,2005-05-27T05:42:48Z,1,2020-02-15T06:59:36Z +162,2005-05-26T02:02:05Z,1229,296,2005-05-27T03:38:05Z,2,2020-02-15T06:59:36Z +163,2005-05-26T02:26:23Z,2306,104,2005-06-04T06:36:23Z,1,2020-02-15T06:59:36Z +164,2005-05-26T02:26:49Z,1070,151,2005-05-28T00:32:49Z,1,2020-02-15T06:59:36Z +165,2005-05-26T02:28:36Z,2735,33,2005-06-02T03:21:36Z,1,2020-02-15T06:59:36Z +166,2005-05-26T02:49:11Z,3894,322,2005-05-31T01:28:11Z,1,2020-02-15T06:59:36Z +167,2005-05-26T02:50:31Z,865,401,2005-05-27T03:07:31Z,1,2020-02-15T06:59:36Z +168,2005-05-26T03:07:43Z,2714,469,2005-06-02T02:09:43Z,2,2020-02-15T06:59:36Z +169,2005-05-26T03:09:30Z,1758,381,2005-05-27T01:37:30Z,2,2020-02-15T06:59:36Z +170,2005-05-26T03:11:12Z,3688,107,2005-06-02T03:53:12Z,1,2020-02-15T06:59:36Z +171,2005-05-26T03:14:15Z,4483,400,2005-06-03T00:24:15Z,2,2020-02-15T06:59:36Z +172,2005-05-26T03:17:42Z,2873,176,2005-05-29T04:11:42Z,2,2020-02-15T06:59:36Z +173,2005-05-26T03:42:10Z,3596,533,2005-05-28T01:37:10Z,2,2020-02-15T06:59:36Z +174,2005-05-26T03:44:10Z,3954,552,2005-05-28T07:13:10Z,2,2020-02-15T06:59:36Z +175,2005-05-26T03:46:26Z,4346,47,2005-06-03T06:01:26Z,2,2020-02-15T06:59:36Z +176,2005-05-26T03:47:39Z,851,250,2005-06-01T02:36:39Z,2,2020-02-15T06:59:36Z +177,2005-05-26T04:14:29Z,3545,548,2005-06-01T08:16:29Z,2,2020-02-15T06:59:36Z +178,2005-05-26T04:21:46Z,1489,196,2005-06-04T07:09:46Z,2,2020-02-15T06:59:36Z +179,2005-05-26T04:26:06Z,2575,19,2005-06-03T10:06:06Z,1,2020-02-15T06:59:36Z +180,2005-05-26T04:46:23Z,2752,75,2005-06-01T09:58:23Z,1,2020-02-15T06:59:36Z +181,2005-05-26T04:47:06Z,2417,587,2005-05-29T06:34:06Z,2,2020-02-15T06:59:36Z +182,2005-05-26T04:49:17Z,4396,237,2005-06-01T05:43:17Z,2,2020-02-15T06:59:36Z +183,2005-05-26T05:01:18Z,2877,254,2005-06-01T09:04:18Z,1,2020-02-15T06:59:36Z +184,2005-05-26T05:29:49Z,1970,556,2005-05-28T10:10:49Z,1,2020-02-15T06:59:36Z +185,2005-05-26T05:30:03Z,2598,125,2005-06-02T09:48:03Z,2,2020-02-15T06:59:36Z +186,2005-05-26T05:32:52Z,1799,468,2005-06-03T07:19:52Z,2,2020-02-15T06:59:36Z +187,2005-05-26T05:42:37Z,4004,515,2005-06-04T00:38:37Z,1,2020-02-15T06:59:36Z +188,2005-05-26T05:47:12Z,3342,243,2005-05-26T23:48:12Z,1,2020-02-15T06:59:36Z +189,2005-05-26T06:01:41Z,984,247,2005-05-27T06:11:41Z,1,2020-02-15T06:59:36Z +190,2005-05-26T06:11:28Z,3962,533,2005-06-01T09:44:28Z,1,2020-02-15T06:59:36Z +191,2005-05-26T06:14:06Z,4365,412,2005-05-28T05:33:06Z,1,2020-02-15T06:59:36Z +192,2005-05-26T06:20:37Z,1897,437,2005-06-02T10:57:37Z,1,2020-02-15T06:59:36Z +193,2005-05-26T06:41:48Z,3900,270,2005-05-30T06:21:48Z,2,2020-02-15T06:59:36Z +194,2005-05-26T06:52:33Z,1337,29,2005-05-30T04:08:33Z,2,2020-02-15T06:59:36Z +195,2005-05-26T06:52:36Z,506,564,2005-05-31T02:47:36Z,2,2020-02-15T06:59:36Z +196,2005-05-26T06:55:58Z,190,184,2005-05-27T10:54:58Z,1,2020-02-15T06:59:36Z +197,2005-05-26T06:59:21Z,4212,546,2005-06-03T05:04:21Z,2,2020-02-15T06:59:36Z +198,2005-05-26T07:03:49Z,1789,54,2005-06-04T11:45:49Z,1,2020-02-15T06:59:36Z +199,2005-05-26T07:11:58Z,2135,71,2005-05-28T09:06:58Z,1,2020-02-15T06:59:36Z +200,2005-05-26T07:12:21Z,3926,321,2005-05-31T12:07:21Z,1,2020-02-15T06:59:36Z +201,2005-05-26T07:13:45Z,776,444,2005-06-04T02:02:45Z,2,2020-02-15T06:59:36Z +202,2005-05-26T07:27:36Z,674,20,2005-06-02T03:52:36Z,1,2020-02-15T06:59:36Z +203,2005-05-26T07:27:57Z,3374,109,2005-06-03T12:52:57Z,1,2020-02-15T06:59:36Z +204,2005-05-26T07:30:37Z,1842,528,2005-05-30T08:11:37Z,1,2020-02-15T06:59:36Z +205,2005-05-26T07:59:37Z,303,114,2005-05-29T09:43:37Z,2,2020-02-15T06:59:36Z +206,2005-05-26T08:01:54Z,1717,345,2005-05-27T06:26:54Z,1,2020-02-15T06:59:36Z +207,2005-05-26T08:04:38Z,102,47,2005-05-27T09:32:38Z,2,2020-02-15T06:59:36Z +208,2005-05-26T08:10:22Z,3669,274,2005-05-27T03:55:22Z,1,2020-02-15T06:59:36Z +209,2005-05-26T08:14:01Z,729,379,2005-05-27T09:00:01Z,1,2020-02-15T06:59:36Z +210,2005-05-26T08:14:15Z,1801,391,2005-05-27T12:12:15Z,2,2020-02-15T06:59:36Z +211,2005-05-26T08:33:10Z,4005,170,2005-05-28T14:09:10Z,1,2020-02-15T06:59:36Z +212,2005-05-26T08:34:41Z,764,59,2005-05-30T12:46:41Z,2,2020-02-15T06:59:36Z +213,2005-05-26T08:44:08Z,1505,394,2005-05-31T12:33:08Z,2,2020-02-15T06:59:36Z +214,2005-05-26T08:48:49Z,1453,98,2005-05-31T04:06:49Z,2,2020-02-15T06:59:36Z +215,2005-05-26T09:02:47Z,679,197,2005-05-28T09:45:47Z,2,2020-02-15T06:59:36Z +216,2005-05-26T09:17:43Z,1398,91,2005-06-03T08:21:43Z,1,2020-02-15T06:59:36Z +217,2005-05-26T09:24:26Z,4395,121,2005-05-31T03:24:26Z,2,2020-02-15T06:59:36Z +218,2005-05-26T09:27:09Z,2291,309,2005-06-04T11:53:09Z,2,2020-02-15T06:59:36Z +219,2005-05-26T09:41:45Z,3074,489,2005-05-28T04:40:45Z,1,2020-02-15T06:59:36Z +220,2005-05-26T10:06:49Z,1259,542,2005-06-01T07:43:49Z,1,2020-02-15T06:59:36Z +221,2005-05-26T10:14:09Z,3578,143,2005-05-29T05:57:09Z,1,2020-02-15T06:59:36Z +222,2005-05-26T10:14:38Z,2745,83,2005-05-31T08:36:38Z,2,2020-02-15T06:59:36Z +223,2005-05-26T10:15:23Z,3121,460,2005-05-30T11:43:23Z,1,2020-02-15T06:59:36Z +224,2005-05-26T10:18:27Z,4285,318,2005-06-04T06:59:27Z,1,2020-02-15T06:59:36Z +225,2005-05-26T10:27:50Z,651,467,2005-06-01T07:01:50Z,2,2020-02-15T06:59:36Z +226,2005-05-26T10:44:04Z,4181,221,2005-05-31T13:26:04Z,2,2020-02-15T06:59:36Z +227,2005-05-26T10:51:46Z,214,301,2005-05-30T07:24:46Z,1,2020-02-15T06:59:36Z +228,2005-05-26T10:54:28Z,511,571,2005-06-04T09:39:28Z,1,2020-02-15T06:59:36Z +229,2005-05-26T11:19:20Z,1131,312,2005-05-31T11:56:20Z,2,2020-02-15T06:59:36Z +230,2005-05-26T11:31:50Z,1085,58,2005-05-30T15:22:50Z,1,2020-02-15T06:59:36Z +231,2005-05-26T11:31:59Z,4032,365,2005-05-27T07:27:59Z,1,2020-02-15T06:59:36Z +232,2005-05-26T11:38:05Z,2945,256,2005-05-27T08:42:05Z,2,2020-02-15T06:59:36Z +233,2005-05-26T11:43:44Z,715,531,2005-05-28T17:28:44Z,2,2020-02-15T06:59:36Z +234,2005-05-26T11:47:20Z,1321,566,2005-06-03T10:39:20Z,2,2020-02-15T06:59:36Z +235,2005-05-26T11:51:09Z,3537,119,2005-06-04T09:36:09Z,1,2020-02-15T06:59:36Z +236,2005-05-26T11:53:49Z,1265,446,2005-05-28T13:55:49Z,1,2020-02-15T06:59:36Z +237,2005-05-26T12:15:13Z,241,536,2005-05-29T18:10:13Z,1,2020-02-15T06:59:36Z +238,2005-05-26T12:30:22Z,503,211,2005-05-27T06:49:22Z,1,2020-02-15T06:59:36Z +239,2005-05-26T12:30:26Z,131,49,2005-06-01T13:26:26Z,2,2020-02-15T06:59:36Z +240,2005-05-26T12:40:23Z,3420,103,2005-06-04T07:22:23Z,1,2020-02-15T06:59:36Z +241,2005-05-26T12:49:01Z,4438,245,2005-05-28T11:43:01Z,2,2020-02-15T06:59:36Z +242,2005-05-26T13:05:08Z,2095,214,2005-06-02T15:26:08Z,1,2020-02-15T06:59:36Z +243,2005-05-26T13:06:05Z,1721,543,2005-06-03T17:28:05Z,2,2020-02-15T06:59:36Z +244,2005-05-26T13:40:40Z,1041,257,2005-05-31T11:58:40Z,1,2020-02-15T06:59:36Z +245,2005-05-26T13:46:59Z,3045,158,2005-05-27T09:58:59Z,2,2020-02-15T06:59:36Z +246,2005-05-26T13:57:07Z,2829,240,2005-05-29T10:12:07Z,2,2020-02-15T06:59:36Z +247,2005-05-26T14:01:05Z,4095,102,2005-05-28T13:38:05Z,2,2020-02-15T06:59:36Z +248,2005-05-26T14:07:58Z,1913,545,2005-05-31T14:03:58Z,2,2020-02-15T06:59:36Z +249,2005-05-26T14:19:09Z,2428,472,2005-05-28T17:47:09Z,2,2020-02-15T06:59:36Z +250,2005-05-26T14:30:24Z,368,539,2005-05-27T08:50:24Z,1,2020-02-15T06:59:36Z +251,2005-05-26T14:35:40Z,4352,204,2005-05-29T17:17:40Z,1,2020-02-15T06:59:36Z +252,2005-05-26T14:39:53Z,1203,187,2005-06-02T14:48:53Z,1,2020-02-15T06:59:36Z +253,2005-05-26T14:43:14Z,2969,416,2005-05-27T12:21:14Z,1,2020-02-15T06:59:36Z +254,2005-05-26T14:43:48Z,1835,390,2005-05-31T09:19:48Z,2,2020-02-15T06:59:36Z +255,2005-05-26T14:52:15Z,3264,114,2005-05-27T12:45:15Z,1,2020-02-15T06:59:36Z +256,2005-05-26T15:20:58Z,3194,436,2005-05-31T15:58:58Z,1,2020-02-15T06:59:36Z +257,2005-05-26T15:27:05Z,2570,373,2005-05-29T16:25:05Z,2,2020-02-15T06:59:36Z +258,2005-05-26T15:28:14Z,3534,502,2005-05-30T18:38:14Z,2,2020-02-15T06:59:36Z +259,2005-05-26T15:32:46Z,30,482,2005-06-04T15:27:46Z,2,2020-02-15T06:59:36Z +260,2005-05-26T15:42:20Z,435,21,2005-05-31T13:21:20Z,2,2020-02-15T06:59:36Z +261,2005-05-26T15:44:23Z,1369,414,2005-06-02T09:47:23Z,2,2020-02-15T06:59:36Z +262,2005-05-26T15:46:56Z,4261,236,2005-05-28T15:49:56Z,2,2020-02-15T06:59:36Z +263,2005-05-26T15:47:40Z,1160,449,2005-05-30T10:07:40Z,2,2020-02-15T06:59:36Z +264,2005-05-26T16:00:49Z,2069,251,2005-05-27T10:12:49Z,2,2020-02-15T06:59:36Z +265,2005-05-26T16:07:38Z,2276,303,2005-06-01T14:20:38Z,1,2020-02-15T06:59:36Z +266,2005-05-26T16:08:05Z,3303,263,2005-05-27T10:55:05Z,2,2020-02-15T06:59:36Z +267,2005-05-26T16:16:21Z,1206,417,2005-05-30T16:53:21Z,2,2020-02-15T06:59:36Z +268,2005-05-26T16:19:08Z,1714,75,2005-05-27T14:35:08Z,1,2020-02-15T06:59:36Z +269,2005-05-26T16:19:46Z,3501,322,2005-05-27T15:59:46Z,2,2020-02-15T06:59:36Z +270,2005-05-26T16:20:56Z,207,200,2005-06-03T12:40:56Z,2,2020-02-15T06:59:36Z +271,2005-05-26T16:22:01Z,2388,92,2005-06-03T17:30:01Z,2,2020-02-15T06:59:36Z +272,2005-05-26T16:27:11Z,971,71,2005-06-03T13:10:11Z,2,2020-02-15T06:59:36Z +273,2005-05-26T16:29:36Z,1590,193,2005-05-29T18:49:36Z,2,2020-02-15T06:59:36Z +274,2005-05-26T16:48:51Z,656,311,2005-06-03T18:17:51Z,1,2020-02-15T06:59:36Z +275,2005-05-26T17:09:53Z,1718,133,2005-06-04T22:35:53Z,1,2020-02-15T06:59:36Z +276,2005-05-26T17:16:07Z,1221,58,2005-06-03T12:59:07Z,1,2020-02-15T06:59:36Z +277,2005-05-26T17:32:11Z,1409,45,2005-05-28T22:54:11Z,1,2020-02-15T06:59:36Z +278,2005-05-26T17:40:58Z,182,214,2005-06-02T16:43:58Z,2,2020-02-15T06:59:36Z +279,2005-05-26T18:02:50Z,661,384,2005-06-03T18:48:50Z,2,2020-02-15T06:59:36Z +280,2005-05-26T18:36:58Z,1896,167,2005-05-27T23:42:58Z,1,2020-02-15T06:59:36Z +281,2005-05-26T18:49:35Z,1208,582,2005-05-27T18:11:35Z,2,2020-02-15T06:59:36Z +282,2005-05-26T18:56:26Z,4486,282,2005-06-01T16:32:26Z,2,2020-02-15T06:59:36Z +283,2005-05-26T19:05:05Z,3530,242,2005-05-31T19:19:05Z,1,2020-02-15T06:59:36Z +284,2005-05-26T19:21:44Z,350,359,2005-06-04T14:18:44Z,2,2020-02-15T06:59:36Z +285,2005-05-26T19:41:40Z,2486,162,2005-05-31T16:58:40Z,2,2020-02-15T06:59:36Z +286,2005-05-26T19:44:51Z,314,371,2005-06-04T18:00:51Z,2,2020-02-15T06:59:36Z +287,2005-05-26T19:44:54Z,3631,17,2005-06-02T01:10:54Z,1,2020-02-15T06:59:36Z +288,2005-05-26T19:47:49Z,3546,82,2005-06-03T20:53:49Z,2,2020-02-15T06:59:36Z +289,2005-05-26T20:01:09Z,2449,81,2005-05-28T15:09:09Z,1,2020-02-15T06:59:36Z +290,2005-05-26T20:08:33Z,2776,429,2005-05-30T00:32:33Z,1,2020-02-15T06:59:36Z +291,2005-05-26T20:20:47Z,485,577,2005-06-03T02:06:47Z,2,2020-02-15T06:59:36Z +292,2005-05-26T20:22:12Z,4264,515,2005-06-05T00:58:12Z,1,2020-02-15T06:59:36Z +293,2005-05-26T20:27:02Z,1828,158,2005-06-03T16:45:02Z,2,2020-02-15T06:59:36Z +294,2005-05-26T20:29:57Z,2751,369,2005-05-28T17:20:57Z,1,2020-02-15T06:59:36Z +295,2005-05-26T20:33:20Z,4030,65,2005-05-27T18:23:20Z,2,2020-02-15T06:59:36Z +296,2005-05-26T20:35:19Z,3878,468,2005-06-04T02:31:19Z,2,2020-02-15T06:59:36Z +297,2005-05-26T20:48:48Z,1594,48,2005-05-27T19:52:48Z,2,2020-02-15T06:59:36Z +298,2005-05-26T20:52:26Z,1083,460,2005-05-29T22:08:26Z,2,2020-02-15T06:59:36Z +299,2005-05-26T20:55:36Z,4376,448,2005-05-28T00:25:36Z,2,2020-02-15T06:59:36Z +300,2005-05-26T20:57:00Z,249,47,2005-06-05T01:34:00Z,2,2020-02-15T06:59:36Z +301,2005-05-26T21:06:14Z,3448,274,2005-06-01T01:54:14Z,2,2020-02-15T06:59:36Z +302,2005-05-26T21:13:46Z,2921,387,2005-06-03T15:49:46Z,2,2020-02-15T06:59:36Z +303,2005-05-26T21:16:52Z,1111,596,2005-05-27T23:41:52Z,2,2020-02-15T06:59:36Z +304,2005-05-26T21:21:28Z,1701,534,2005-06-02T00:05:28Z,1,2020-02-15T06:59:36Z +305,2005-05-26T21:22:07Z,2665,464,2005-06-02T22:33:07Z,2,2020-02-15T06:59:36Z +306,2005-05-26T21:31:57Z,2781,547,2005-05-28T19:37:57Z,1,2020-02-15T06:59:36Z +307,2005-05-26T21:48:13Z,1097,375,2005-06-04T22:24:13Z,1,2020-02-15T06:59:36Z +308,2005-05-26T22:01:39Z,187,277,2005-06-04T20:24:39Z,2,2020-02-15T06:59:36Z +309,2005-05-26T22:38:10Z,1946,251,2005-06-02T03:10:10Z,2,2020-02-15T06:59:36Z +310,2005-05-26T22:41:07Z,593,409,2005-06-02T04:09:07Z,1,2020-02-15T06:59:36Z +311,2005-05-26T22:51:37Z,2830,201,2005-06-01T00:02:37Z,1,2020-02-15T06:59:36Z +312,2005-05-26T22:52:19Z,2008,143,2005-06-02T18:14:19Z,2,2020-02-15T06:59:36Z +313,2005-05-26T22:56:19Z,4156,594,2005-05-29T01:29:19Z,2,2020-02-15T06:59:36Z +314,2005-05-26T23:09:41Z,2851,203,2005-05-28T22:49:41Z,2,2020-02-15T06:59:36Z +315,2005-05-26T23:12:55Z,2847,238,2005-05-29T23:33:55Z,1,2020-02-15T06:59:36Z +316,2005-05-26T23:22:55Z,3828,249,2005-05-29T23:25:55Z,2,2020-02-15T06:59:36Z +317,2005-05-26T23:23:56Z,26,391,2005-06-01T19:56:56Z,2,2020-02-15T06:59:36Z +318,2005-05-26T23:37:39Z,2559,60,2005-06-03T04:31:39Z,2,2020-02-15T06:59:36Z +319,2005-05-26T23:52:13Z,3024,77,2005-05-30T18:55:13Z,1,2020-02-15T06:59:36Z +320,2005-05-27T00:09:24Z,1090,2,2005-05-28T04:30:24Z,2,2020-02-15T06:59:36Z +322,2005-05-27T00:47:35Z,4556,496,2005-06-02T00:32:35Z,1,2020-02-15T06:59:36Z +323,2005-05-27T00:49:27Z,2362,144,2005-05-30T03:12:27Z,1,2020-02-15T06:59:36Z +324,2005-05-27T01:00:04Z,3364,292,2005-05-30T04:27:04Z,1,2020-02-15T06:59:36Z +325,2005-05-27T01:09:55Z,2510,449,2005-05-31T07:01:55Z,2,2020-02-15T06:59:36Z +326,2005-05-27T01:10:11Z,3979,432,2005-06-04T20:25:11Z,2,2020-02-15T06:59:36Z +327,2005-05-27T01:18:57Z,2678,105,2005-06-04T04:06:57Z,1,2020-02-15T06:59:36Z +328,2005-05-27T01:29:31Z,2524,451,2005-06-01T02:27:31Z,1,2020-02-15T06:59:36Z +329,2005-05-27T01:57:14Z,2659,231,2005-05-31T04:19:14Z,2,2020-02-15T06:59:36Z +330,2005-05-27T02:15:30Z,1536,248,2005-06-04T05:09:30Z,2,2020-02-15T06:59:36Z +331,2005-05-27T02:22:26Z,1872,67,2005-06-05T00:25:26Z,1,2020-02-15T06:59:36Z +332,2005-05-27T02:27:10Z,1529,299,2005-06-03T01:26:10Z,2,2020-02-15T06:59:36Z +333,2005-05-27T02:52:21Z,4001,412,2005-06-01T00:55:21Z,2,2020-02-15T06:59:36Z +334,2005-05-27T03:03:07Z,3973,194,2005-05-29T03:54:07Z,1,2020-02-15T06:59:36Z +335,2005-05-27T03:07:10Z,1411,16,2005-06-05T00:15:10Z,2,2020-02-15T06:59:36Z +336,2005-05-27T03:15:23Z,1811,275,2005-05-29T22:43:23Z,1,2020-02-15T06:59:36Z +337,2005-05-27T03:22:30Z,751,19,2005-06-02T03:27:30Z,1,2020-02-15T06:59:36Z +338,2005-05-27T03:42:52Z,2596,165,2005-06-01T05:23:52Z,2,2020-02-15T06:59:36Z +339,2005-05-27T03:47:18Z,2410,516,2005-06-04T05:46:18Z,2,2020-02-15T06:59:36Z +340,2005-05-27T03:55:25Z,946,209,2005-06-04T07:57:25Z,2,2020-02-15T06:59:36Z +341,2005-05-27T04:01:42Z,4168,56,2005-06-05T08:51:42Z,1,2020-02-15T06:59:36Z +342,2005-05-27T04:11:04Z,4019,539,2005-05-29T01:28:04Z,2,2020-02-15T06:59:36Z +343,2005-05-27T04:13:41Z,3301,455,2005-05-28T08:34:41Z,1,2020-02-15T06:59:36Z +344,2005-05-27T04:30:22Z,2327,236,2005-05-29T10:13:22Z,2,2020-02-15T06:59:36Z +345,2005-05-27T04:32:25Z,1396,144,2005-05-31T09:50:25Z,1,2020-02-15T06:59:36Z +346,2005-05-27T04:34:41Z,4319,14,2005-06-05T04:24:41Z,2,2020-02-15T06:59:36Z +347,2005-05-27T04:40:33Z,1625,378,2005-05-28T09:56:33Z,2,2020-02-15T06:59:36Z +348,2005-05-27T04:50:56Z,1825,473,2005-06-01T04:43:56Z,1,2020-02-15T06:59:36Z +349,2005-05-27T04:53:11Z,2920,36,2005-05-28T06:33:11Z,2,2020-02-15T06:59:36Z +350,2005-05-27T05:01:28Z,2756,9,2005-06-04T05:01:28Z,2,2020-02-15T06:59:36Z +351,2005-05-27T05:39:03Z,3371,118,2005-06-01T11:10:03Z,1,2020-02-15T06:59:36Z +352,2005-05-27T05:48:19Z,4369,157,2005-05-29T09:05:19Z,1,2020-02-15T06:59:36Z +353,2005-05-27T06:03:39Z,3989,503,2005-06-03T04:39:39Z,2,2020-02-15T06:59:36Z +354,2005-05-27T06:12:26Z,2058,452,2005-06-01T06:48:26Z,1,2020-02-15T06:59:36Z +355,2005-05-27T06:15:33Z,141,446,2005-06-01T02:50:33Z,2,2020-02-15T06:59:36Z +356,2005-05-27T06:32:30Z,2868,382,2005-05-30T06:24:30Z,2,2020-02-15T06:59:36Z +357,2005-05-27T06:37:15Z,4417,198,2005-05-30T07:04:15Z,2,2020-02-15T06:59:36Z +358,2005-05-27T06:43:59Z,1925,102,2005-05-29T11:28:59Z,2,2020-02-15T06:59:36Z +359,2005-05-27T06:48:33Z,1156,152,2005-05-29T03:55:33Z,1,2020-02-15T06:59:36Z +360,2005-05-27T06:51:14Z,3489,594,2005-06-03T01:58:14Z,1,2020-02-15T06:59:36Z +361,2005-05-27T07:03:28Z,6,587,2005-05-31T08:01:28Z,1,2020-02-15T06:59:36Z +362,2005-05-27T07:10:25Z,2324,147,2005-06-01T08:34:25Z,1,2020-02-15T06:59:36Z +363,2005-05-27T07:14:00Z,4282,345,2005-05-28T12:22:00Z,2,2020-02-15T06:59:36Z +364,2005-05-27T07:20:12Z,833,430,2005-05-31T10:44:12Z,2,2020-02-15T06:59:36Z +365,2005-05-27T07:31:20Z,2887,167,2005-06-04T04:46:20Z,1,2020-02-15T06:59:36Z +366,2005-05-27T07:33:54Z,360,134,2005-06-04T01:55:54Z,2,2020-02-15T06:59:36Z +367,2005-05-27T07:37:02Z,3437,439,2005-05-30T05:43:02Z,2,2020-02-15T06:59:36Z +368,2005-05-27T07:42:29Z,1247,361,2005-06-04T11:20:29Z,2,2020-02-15T06:59:36Z +369,2005-05-27T07:46:49Z,944,508,2005-06-01T06:20:49Z,2,2020-02-15T06:59:36Z +370,2005-05-27T07:49:43Z,3347,22,2005-06-05T06:39:43Z,2,2020-02-15T06:59:36Z +371,2005-05-27T08:08:18Z,1235,295,2005-06-05T03:05:18Z,2,2020-02-15T06:59:36Z +372,2005-05-27T08:13:58Z,4089,510,2005-06-04T03:50:58Z,2,2020-02-15T06:59:36Z +373,2005-05-27T08:16:25Z,1649,464,2005-06-01T11:41:25Z,1,2020-02-15T06:59:36Z +374,2005-05-27T08:26:30Z,4420,337,2005-06-05T07:13:30Z,1,2020-02-15T06:59:36Z +375,2005-05-27T08:49:21Z,1815,306,2005-06-04T14:11:21Z,1,2020-02-15T06:59:36Z +376,2005-05-27T08:58:15Z,3197,542,2005-06-02T04:48:15Z,1,2020-02-15T06:59:36Z +377,2005-05-27T09:04:05Z,3012,170,2005-06-02T03:36:05Z,2,2020-02-15T06:59:36Z +378,2005-05-27T09:23:22Z,2242,53,2005-05-29T15:20:22Z,1,2020-02-15T06:59:36Z +379,2005-05-27T09:25:32Z,3462,584,2005-06-02T06:19:32Z,1,2020-02-15T06:59:36Z +380,2005-05-27T09:34:39Z,1777,176,2005-06-04T11:45:39Z,1,2020-02-15T06:59:36Z +381,2005-05-27T09:43:25Z,2748,371,2005-05-31T12:00:25Z,1,2020-02-15T06:59:36Z +382,2005-05-27T10:12:00Z,4358,183,2005-05-31T15:03:00Z,1,2020-02-15T06:59:36Z +383,2005-05-27T10:12:20Z,955,298,2005-06-03T10:37:20Z,1,2020-02-15T06:59:36Z +384,2005-05-27T10:18:20Z,910,371,2005-06-02T09:21:20Z,2,2020-02-15T06:59:36Z +385,2005-05-27T10:23:25Z,1565,213,2005-05-30T15:27:25Z,2,2020-02-15T06:59:36Z +386,2005-05-27T10:26:31Z,1288,109,2005-05-30T08:32:31Z,1,2020-02-15T06:59:36Z +387,2005-05-27T10:35:27Z,2684,506,2005-06-01T13:37:27Z,2,2020-02-15T06:59:36Z +388,2005-05-27T10:37:27Z,434,28,2005-05-30T05:45:27Z,1,2020-02-15T06:59:36Z +389,2005-05-27T10:45:41Z,691,500,2005-06-05T06:22:41Z,2,2020-02-15T06:59:36Z +390,2005-05-27T11:02:26Z,3759,48,2005-06-02T16:09:26Z,2,2020-02-15T06:59:36Z +391,2005-05-27T11:03:55Z,2193,197,2005-06-01T11:59:55Z,2,2020-02-15T06:59:36Z +392,2005-05-27T11:14:42Z,263,359,2005-06-01T14:28:42Z,2,2020-02-15T06:59:36Z +393,2005-05-27T11:18:25Z,145,251,2005-05-28T07:10:25Z,2,2020-02-15T06:59:36Z +394,2005-05-27T11:26:11Z,1890,274,2005-06-03T16:44:11Z,2,2020-02-15T06:59:36Z +395,2005-05-27T11:45:49Z,752,575,2005-05-31T13:42:49Z,1,2020-02-15T06:59:36Z +396,2005-05-27T11:47:04Z,1020,112,2005-05-29T10:14:04Z,1,2020-02-15T06:59:36Z +397,2005-05-27T12:29:02Z,4193,544,2005-05-28T17:36:02Z,2,2020-02-15T06:59:36Z +398,2005-05-27T12:44:03Z,1686,422,2005-06-02T08:19:03Z,1,2020-02-15T06:59:36Z +399,2005-05-27T12:48:38Z,553,204,2005-05-29T15:27:38Z,1,2020-02-15T06:59:36Z +400,2005-05-27T12:51:44Z,258,249,2005-05-31T08:34:44Z,2,2020-02-15T06:59:36Z +401,2005-05-27T12:57:55Z,2179,46,2005-05-29T17:55:55Z,2,2020-02-15T06:59:36Z +402,2005-05-27T13:17:18Z,461,354,2005-05-30T08:53:18Z,2,2020-02-15T06:59:36Z +403,2005-05-27T13:28:52Z,3983,424,2005-05-29T11:47:52Z,2,2020-02-15T06:59:36Z +404,2005-05-27T13:31:51Z,1293,168,2005-05-30T16:58:51Z,1,2020-02-15T06:59:36Z +405,2005-05-27T13:32:39Z,4090,272,2005-06-05T18:53:39Z,2,2020-02-15T06:59:36Z +406,2005-05-27T13:46:46Z,2136,381,2005-05-30T12:43:46Z,1,2020-02-15T06:59:36Z +407,2005-05-27T13:57:38Z,1077,44,2005-05-31T18:23:38Z,1,2020-02-15T06:59:36Z +408,2005-05-27T13:57:39Z,1438,84,2005-05-28T11:57:39Z,1,2020-02-15T06:59:36Z +409,2005-05-27T14:10:58Z,3652,220,2005-06-02T10:40:58Z,2,2020-02-15T06:59:36Z +410,2005-05-27T14:11:22Z,4010,506,2005-06-02T20:06:22Z,2,2020-02-15T06:59:36Z +411,2005-05-27T14:14:14Z,1434,388,2005-06-03T17:39:14Z,1,2020-02-15T06:59:36Z +412,2005-05-27T14:17:23Z,1400,375,2005-05-29T15:07:23Z,2,2020-02-15T06:59:36Z +413,2005-05-27T14:45:37Z,3516,307,2005-06-03T11:11:37Z,1,2020-02-15T06:59:36Z +414,2005-05-27T14:48:20Z,1019,219,2005-05-31T14:39:20Z,2,2020-02-15T06:59:36Z +415,2005-05-27T14:51:45Z,3698,304,2005-05-28T19:07:45Z,2,2020-02-15T06:59:36Z +416,2005-05-27T15:02:10Z,2371,222,2005-05-29T10:34:10Z,2,2020-02-15T06:59:36Z +417,2005-05-27T15:07:27Z,2253,475,2005-05-29T20:01:27Z,2,2020-02-15T06:59:36Z +418,2005-05-27T15:13:17Z,3063,151,2005-06-04T12:05:17Z,2,2020-02-15T06:59:36Z +419,2005-05-27T15:15:11Z,2514,77,2005-06-02T11:53:11Z,1,2020-02-15T06:59:36Z +420,2005-05-27T15:19:38Z,619,93,2005-06-03T15:07:38Z,2,2020-02-15T06:59:36Z +421,2005-05-27T15:30:13Z,2985,246,2005-06-04T13:19:13Z,2,2020-02-15T06:59:36Z +422,2005-05-27T15:31:55Z,1152,150,2005-06-01T11:47:55Z,2,2020-02-15T06:59:36Z +423,2005-05-27T15:32:57Z,1783,284,2005-06-02T19:03:57Z,1,2020-02-15T06:59:36Z +424,2005-05-27T15:34:01Z,2815,35,2005-06-05T09:44:01Z,1,2020-02-15T06:59:36Z +425,2005-05-27T15:51:30Z,1518,182,2005-06-03T16:52:30Z,2,2020-02-15T06:59:36Z +426,2005-05-27T15:56:57Z,1103,522,2005-06-05T11:45:57Z,1,2020-02-15T06:59:36Z +427,2005-05-27T16:10:04Z,1677,288,2005-06-05T13:22:04Z,2,2020-02-15T06:59:36Z +428,2005-05-27T16:10:58Z,3349,161,2005-05-31T17:24:58Z,2,2020-02-15T06:59:36Z +429,2005-05-27T16:21:26Z,129,498,2005-06-05T20:23:26Z,2,2020-02-15T06:59:36Z +430,2005-05-27T16:22:10Z,1920,190,2005-06-05T13:10:10Z,1,2020-02-15T06:59:36Z +431,2005-05-27T16:31:05Z,4507,334,2005-06-05T11:29:05Z,1,2020-02-15T06:59:36Z +432,2005-05-27T16:40:29Z,1119,46,2005-05-29T16:20:29Z,1,2020-02-15T06:59:36Z +433,2005-05-27T16:40:40Z,4364,574,2005-05-30T19:55:40Z,2,2020-02-15T06:59:36Z +434,2005-05-27T16:54:27Z,3360,246,2005-06-04T22:26:27Z,1,2020-02-15T06:59:36Z +435,2005-05-27T17:17:09Z,3328,3,2005-06-02T11:20:09Z,2,2020-02-15T06:59:36Z +436,2005-05-27T17:21:04Z,4317,267,2005-05-30T21:26:04Z,2,2020-02-15T06:59:36Z +437,2005-05-27T17:47:22Z,1800,525,2005-06-05T14:22:22Z,2,2020-02-15T06:59:36Z +438,2005-05-27T17:52:34Z,4260,249,2005-06-05T22:23:34Z,2,2020-02-15T06:59:36Z +439,2005-05-27T17:54:48Z,354,319,2005-06-02T23:01:48Z,2,2020-02-15T06:59:36Z +440,2005-05-27T18:00:35Z,4452,314,2005-05-29T16:15:35Z,1,2020-02-15T06:59:36Z +441,2005-05-27T18:11:05Z,1578,54,2005-05-30T22:45:05Z,1,2020-02-15T06:59:36Z +442,2005-05-27T18:12:13Z,1457,403,2005-05-30T12:30:13Z,2,2020-02-15T06:59:36Z +443,2005-05-27T18:35:20Z,2021,547,2005-06-04T18:58:20Z,1,2020-02-15T06:59:36Z +444,2005-05-27T18:39:15Z,723,239,2005-06-01T15:56:15Z,1,2020-02-15T06:59:36Z +445,2005-05-27T18:42:57Z,1757,293,2005-05-30T22:35:57Z,2,2020-02-15T06:59:36Z +446,2005-05-27T18:48:41Z,1955,401,2005-06-03T16:42:41Z,2,2020-02-15T06:59:36Z +447,2005-05-27T18:57:02Z,3890,133,2005-06-05T18:38:02Z,1,2020-02-15T06:59:36Z +448,2005-05-27T19:03:08Z,2671,247,2005-06-03T20:28:08Z,2,2020-02-15T06:59:36Z +449,2005-05-27T19:13:15Z,2469,172,2005-06-04T01:08:15Z,2,2020-02-15T06:59:36Z +450,2005-05-27T19:18:54Z,1343,247,2005-06-05T23:52:54Z,1,2020-02-15T06:59:36Z +451,2005-05-27T19:27:54Z,205,87,2005-05-29T01:07:54Z,2,2020-02-15T06:59:36Z +452,2005-05-27T19:30:33Z,2993,127,2005-05-30T20:53:33Z,2,2020-02-15T06:59:36Z +453,2005-05-27T19:31:16Z,4425,529,2005-05-29T23:06:16Z,1,2020-02-15T06:59:36Z +454,2005-05-27T19:31:36Z,3499,575,2005-05-30T15:46:36Z,1,2020-02-15T06:59:36Z +455,2005-05-27T19:43:29Z,3344,343,2005-06-04T23:40:29Z,2,2020-02-15T06:59:36Z +456,2005-05-27T19:50:06Z,1699,92,2005-06-02T22:14:06Z,1,2020-02-15T06:59:36Z +457,2005-05-27T19:52:29Z,2368,300,2005-06-02T17:17:29Z,2,2020-02-15T06:59:37Z +458,2005-05-27T19:58:36Z,3350,565,2005-06-06T00:51:36Z,1,2020-02-15T06:59:37Z +459,2005-05-27T20:00:04Z,597,468,2005-05-29T22:47:04Z,1,2020-02-15T06:59:37Z +460,2005-05-27T20:02:03Z,4238,240,2005-05-28T16:14:03Z,1,2020-02-15T06:59:37Z +461,2005-05-27T20:08:55Z,2077,447,2005-06-01T14:32:55Z,1,2020-02-15T06:59:37Z +462,2005-05-27T20:10:36Z,2314,364,2005-06-03T21:12:36Z,2,2020-02-15T06:59:37Z +463,2005-05-27T20:11:47Z,826,21,2005-06-04T21:18:47Z,1,2020-02-15T06:59:37Z +464,2005-05-27T20:42:44Z,1313,193,2005-05-30T00:49:44Z,2,2020-02-15T06:59:37Z +465,2005-05-27T20:44:36Z,20,261,2005-06-02T02:43:36Z,1,2020-02-15T06:59:37Z +466,2005-05-27T20:57:07Z,1786,442,2005-05-29T15:52:07Z,1,2020-02-15T06:59:37Z +467,2005-05-27T21:10:03Z,339,557,2005-06-01T16:08:03Z,1,2020-02-15T06:59:37Z +468,2005-05-27T21:13:10Z,2656,101,2005-06-04T15:26:10Z,2,2020-02-15T06:59:37Z +469,2005-05-27T21:14:26Z,4463,154,2005-06-05T21:51:26Z,1,2020-02-15T06:59:37Z +470,2005-05-27T21:17:08Z,1613,504,2005-06-04T17:47:08Z,1,2020-02-15T06:59:37Z +471,2005-05-27T21:32:42Z,2872,209,2005-05-31T00:39:42Z,2,2020-02-15T06:59:37Z +472,2005-05-27T21:36:15Z,1338,528,2005-05-29T21:07:15Z,1,2020-02-15T06:59:37Z +473,2005-05-27T21:36:34Z,802,105,2005-06-05T17:02:34Z,1,2020-02-15T06:59:37Z +474,2005-05-27T22:11:56Z,1474,274,2005-05-31T19:07:56Z,1,2020-02-15T06:59:37Z +475,2005-05-27T22:16:26Z,2520,159,2005-05-28T19:58:26Z,1,2020-02-15T06:59:37Z +476,2005-05-27T22:31:36Z,2451,543,2005-06-03T19:12:36Z,1,2020-02-15T06:59:37Z +477,2005-05-27T22:33:33Z,2437,161,2005-06-02T18:35:33Z,2,2020-02-15T06:59:37Z +478,2005-05-27T22:38:20Z,424,557,2005-05-31T18:39:20Z,2,2020-02-15T06:59:37Z +479,2005-05-27T22:39:10Z,2060,231,2005-06-05T22:46:10Z,2,2020-02-15T06:59:37Z +480,2005-05-27T22:47:39Z,2108,220,2005-06-04T21:17:39Z,2,2020-02-15T06:59:37Z +481,2005-05-27T22:49:27Z,72,445,2005-05-30T17:46:27Z,2,2020-02-15T06:59:37Z +482,2005-05-27T22:53:02Z,4178,546,2005-06-01T22:53:02Z,2,2020-02-15T06:59:37Z +483,2005-05-27T23:00:25Z,1510,32,2005-05-28T21:30:25Z,1,2020-02-15T06:59:37Z +484,2005-05-27T23:26:45Z,3115,491,2005-05-29T21:16:45Z,2,2020-02-15T06:59:37Z +485,2005-05-27T23:40:52Z,2392,105,2005-05-28T22:40:52Z,2,2020-02-15T06:59:37Z +486,2005-05-27T23:51:12Z,1822,398,2005-05-28T20:26:12Z,1,2020-02-15T06:59:37Z +487,2005-05-28T00:00:30Z,3774,569,2005-05-28T19:18:30Z,2,2020-02-15T06:59:37Z +488,2005-05-28T00:07:50Z,393,168,2005-06-03T22:30:50Z,2,2020-02-15T06:59:37Z +489,2005-05-28T00:09:12Z,1940,476,2005-05-31T04:44:12Z,2,2020-02-15T06:59:37Z +490,2005-05-28T00:09:56Z,3524,95,2005-05-30T22:32:56Z,2,2020-02-15T06:59:37Z +491,2005-05-28T00:13:35Z,1326,196,2005-05-29T00:11:35Z,2,2020-02-15T06:59:37Z +492,2005-05-28T00:24:58Z,1999,228,2005-05-28T22:34:58Z,1,2020-02-15T06:59:37Z +493,2005-05-28T00:34:11Z,184,501,2005-05-30T18:40:11Z,1,2020-02-15T06:59:37Z +494,2005-05-28T00:39:31Z,1850,64,2005-06-02T19:35:31Z,1,2020-02-15T06:59:37Z +495,2005-05-28T00:40:48Z,1007,526,2005-05-29T06:07:48Z,1,2020-02-15T06:59:37Z +496,2005-05-28T00:43:41Z,1785,56,2005-06-04T03:56:41Z,1,2020-02-15T06:59:37Z +497,2005-05-28T00:54:39Z,2636,20,2005-06-03T20:47:39Z,2,2020-02-15T06:59:37Z +498,2005-05-28T01:01:21Z,458,287,2005-05-30T21:20:21Z,2,2020-02-15T06:59:37Z +499,2005-05-28T01:05:07Z,2381,199,2005-06-05T19:54:07Z,2,2020-02-15T06:59:37Z +500,2005-05-28T01:05:25Z,4500,145,2005-05-31T20:04:25Z,1,2020-02-15T06:59:37Z +501,2005-05-28T01:09:36Z,601,162,2005-05-30T06:14:36Z,2,2020-02-15T06:59:37Z +502,2005-05-28T01:34:43Z,3131,179,2005-05-31T01:02:43Z,2,2020-02-15T06:59:37Z +503,2005-05-28T01:35:25Z,3005,288,2005-05-28T22:12:25Z,2,2020-02-15T06:59:37Z +504,2005-05-28T02:05:34Z,2086,170,2005-05-30T23:03:34Z,1,2020-02-15T06:59:37Z +505,2005-05-28T02:06:37Z,71,111,2005-05-29T06:57:37Z,1,2020-02-15T06:59:37Z +506,2005-05-28T02:09:19Z,667,469,2005-06-05T20:34:19Z,1,2020-02-15T06:59:37Z +507,2005-05-28T02:31:19Z,3621,421,2005-06-02T05:07:19Z,2,2020-02-15T06:59:37Z +508,2005-05-28T02:40:50Z,4179,434,2005-06-05T03:05:50Z,1,2020-02-15T06:59:37Z +509,2005-05-28T02:51:12Z,3416,147,2005-05-31T06:27:12Z,1,2020-02-15T06:59:37Z +510,2005-05-28T02:52:14Z,4338,113,2005-05-30T21:20:14Z,2,2020-02-15T06:59:37Z +511,2005-05-28T03:04:04Z,3827,296,2005-06-03T04:58:04Z,1,2020-02-15T06:59:37Z +512,2005-05-28T03:07:50Z,2176,231,2005-06-05T02:12:50Z,2,2020-02-15T06:59:37Z +513,2005-05-28T03:08:10Z,225,489,2005-05-29T07:22:10Z,1,2020-02-15T06:59:37Z +514,2005-05-28T03:09:28Z,1697,597,2005-06-05T00:49:28Z,2,2020-02-15T06:59:37Z +515,2005-05-28T03:10:10Z,3369,110,2005-06-04T02:18:10Z,2,2020-02-15T06:59:37Z +516,2005-05-28T03:11:47Z,4357,400,2005-06-04T02:19:47Z,1,2020-02-15T06:59:37Z +517,2005-05-28T03:17:57Z,234,403,2005-05-29T06:33:57Z,1,2020-02-15T06:59:37Z +518,2005-05-28T03:18:02Z,4087,480,2005-05-30T05:32:02Z,1,2020-02-15T06:59:37Z +519,2005-05-28T03:22:33Z,3564,245,2005-06-03T05:06:33Z,1,2020-02-15T06:59:37Z +520,2005-05-28T03:27:37Z,3845,161,2005-06-04T05:47:37Z,1,2020-02-15T06:59:37Z +521,2005-05-28T03:32:22Z,2397,374,2005-05-28T22:37:22Z,1,2020-02-15T06:59:37Z +522,2005-05-28T03:33:20Z,3195,382,2005-05-31T04:23:20Z,1,2020-02-15T06:59:37Z +523,2005-05-28T03:53:26Z,1905,138,2005-05-31T05:58:26Z,2,2020-02-15T06:59:37Z +524,2005-05-28T03:57:28Z,1962,223,2005-05-31T05:20:28Z,1,2020-02-15T06:59:37Z +525,2005-05-28T04:25:33Z,1817,14,2005-06-06T04:18:33Z,1,2020-02-15T06:59:37Z +526,2005-05-28T04:27:37Z,1387,408,2005-05-30T07:52:37Z,1,2020-02-15T06:59:37Z +527,2005-05-28T04:28:38Z,266,169,2005-06-02T08:19:38Z,1,2020-02-15T06:59:37Z +528,2005-05-28T04:30:05Z,1655,359,2005-06-03T10:01:05Z,2,2020-02-15T06:59:37Z +529,2005-05-28T04:34:17Z,2624,469,2005-05-30T00:35:17Z,1,2020-02-15T06:59:37Z +530,2005-05-28T05:13:01Z,3332,312,2005-06-01T10:21:01Z,2,2020-02-15T06:59:37Z +531,2005-05-28T05:23:38Z,1113,589,2005-05-29T08:00:38Z,2,2020-02-15T06:59:37Z +532,2005-05-28T05:36:58Z,2793,120,2005-06-02T01:50:58Z,1,2020-02-15T06:59:37Z +533,2005-05-28T06:14:46Z,4306,528,2005-06-01T06:26:46Z,2,2020-02-15T06:59:37Z +534,2005-05-28T06:15:25Z,992,184,2005-06-06T07:51:25Z,1,2020-02-15T06:59:37Z +535,2005-05-28T06:16:32Z,4209,307,2005-05-31T02:48:32Z,1,2020-02-15T06:59:37Z +536,2005-05-28T06:17:33Z,2962,514,2005-06-03T10:02:33Z,2,2020-02-15T06:59:37Z +537,2005-05-28T06:20:55Z,3095,315,2005-06-05T11:48:55Z,2,2020-02-15T06:59:37Z +538,2005-05-28T06:21:05Z,2262,110,2005-06-02T01:22:05Z,2,2020-02-15T06:59:37Z +539,2005-05-28T06:26:16Z,3427,161,2005-05-30T02:02:16Z,1,2020-02-15T06:59:37Z +540,2005-05-28T06:40:25Z,3321,119,2005-06-06T00:47:25Z,1,2020-02-15T06:59:37Z +541,2005-05-28T06:41:58Z,1662,535,2005-06-02T09:12:58Z,2,2020-02-15T06:59:37Z +542,2005-05-28T06:42:13Z,4444,261,2005-06-03T09:05:13Z,1,2020-02-15T06:59:37Z +543,2005-05-28T06:43:34Z,530,493,2005-06-06T07:16:34Z,2,2020-02-15T06:59:37Z +544,2005-05-28T07:03:00Z,2964,311,2005-06-06T06:23:00Z,1,2020-02-15T06:59:37Z +545,2005-05-28T07:10:20Z,1086,54,2005-06-04T01:47:20Z,2,2020-02-15T06:59:37Z +546,2005-05-28T07:16:25Z,487,20,2005-06-01T08:36:25Z,1,2020-02-15T06:59:37Z +547,2005-05-28T07:24:28Z,2065,506,2005-06-06T01:31:28Z,2,2020-02-15T06:59:37Z +548,2005-05-28T07:34:56Z,3704,450,2005-06-05T03:14:56Z,2,2020-02-15T06:59:37Z +549,2005-05-28T07:35:37Z,1818,159,2005-06-02T09:08:37Z,1,2020-02-15T06:59:37Z +550,2005-05-28T07:39:16Z,3632,432,2005-06-06T12:20:16Z,2,2020-02-15T06:59:37Z +551,2005-05-28T07:44:18Z,3119,315,2005-06-02T12:55:18Z,2,2020-02-15T06:59:37Z +552,2005-05-28T07:53:38Z,23,106,2005-06-04T12:45:38Z,2,2020-02-15T06:59:37Z +553,2005-05-28T08:14:44Z,1349,176,2005-06-02T03:01:44Z,2,2020-02-15T06:59:37Z +554,2005-05-28T08:23:16Z,1951,376,2005-05-31T03:29:16Z,2,2020-02-15T06:59:37Z +555,2005-05-28T08:31:14Z,4397,55,2005-05-30T07:34:14Z,2,2020-02-15T06:59:37Z +556,2005-05-28T08:31:36Z,1814,22,2005-06-06T07:29:36Z,2,2020-02-15T06:59:37Z +557,2005-05-28T08:36:22Z,158,444,2005-06-03T10:42:22Z,2,2020-02-15T06:59:37Z +558,2005-05-28T08:38:43Z,4163,442,2005-06-06T13:52:43Z,1,2020-02-15T06:59:37Z +559,2005-05-28T08:39:02Z,1227,572,2005-06-05T08:38:02Z,2,2020-02-15T06:59:37Z +560,2005-05-28T08:53:02Z,644,463,2005-06-04T12:27:02Z,2,2020-02-15T06:59:37Z +561,2005-05-28T08:54:06Z,928,77,2005-06-05T05:54:06Z,1,2020-02-15T06:59:37Z +562,2005-05-28T09:01:21Z,3390,102,2005-06-02T05:26:21Z,2,2020-02-15T06:59:37Z +563,2005-05-28T09:10:49Z,53,324,2005-06-06T11:32:49Z,1,2020-02-15T06:59:37Z +564,2005-05-28T09:12:09Z,2973,282,2005-05-29T05:07:09Z,1,2020-02-15T06:59:37Z +565,2005-05-28T09:26:31Z,1494,288,2005-06-01T07:28:31Z,1,2020-02-15T06:59:37Z +566,2005-05-28T09:51:39Z,4330,253,2005-06-05T09:35:39Z,1,2020-02-15T06:59:37Z +567,2005-05-28T09:56:20Z,3308,184,2005-06-01T06:41:20Z,2,2020-02-15T06:59:37Z +568,2005-05-28T09:57:36Z,2232,155,2005-05-31T15:44:36Z,1,2020-02-15T06:59:37Z +569,2005-05-28T10:12:41Z,4534,56,2005-06-03T10:08:41Z,2,2020-02-15T06:59:37Z +570,2005-05-28T10:15:04Z,1122,21,2005-05-30T08:32:04Z,1,2020-02-15T06:59:37Z +571,2005-05-28T10:17:41Z,4250,516,2005-06-05T07:56:41Z,1,2020-02-15T06:59:37Z +572,2005-05-28T10:30:13Z,1899,337,2005-06-02T05:04:13Z,2,2020-02-15T06:59:37Z +573,2005-05-28T10:35:23Z,4020,1,2005-06-03T06:32:23Z,1,2020-02-15T06:59:37Z +574,2005-05-28T10:44:28Z,3883,76,2005-06-04T11:42:28Z,1,2020-02-15T06:59:37Z +575,2005-05-28T10:56:09Z,4451,142,2005-06-05T15:39:09Z,1,2020-02-15T06:59:37Z +576,2005-05-28T10:56:10Z,1866,588,2005-06-04T13:15:10Z,2,2020-02-15T06:59:37Z +577,2005-05-28T11:09:14Z,375,6,2005-06-01T13:27:14Z,2,2020-02-15T06:59:37Z +578,2005-05-28T11:15:48Z,2938,173,2005-06-02T09:59:48Z,1,2020-02-15T06:59:37Z +579,2005-05-28T11:19:23Z,3481,181,2005-06-02T13:51:23Z,1,2020-02-15T06:59:37Z +580,2005-05-28T11:19:53Z,3515,17,2005-06-01T10:44:53Z,2,2020-02-15T06:59:37Z +581,2005-05-28T11:20:29Z,1380,186,2005-06-04T12:37:29Z,2,2020-02-15T06:59:37Z +582,2005-05-28T11:33:46Z,4579,198,2005-05-29T08:33:46Z,1,2020-02-15T06:59:37Z +583,2005-05-28T11:48:55Z,2679,386,2005-06-04T07:09:55Z,2,2020-02-15T06:59:37Z +584,2005-05-28T11:49:00Z,1833,69,2005-06-01T11:54:00Z,1,2020-02-15T06:59:37Z +585,2005-05-28T11:50:45Z,3544,490,2005-06-03T15:35:45Z,2,2020-02-15T06:59:37Z +586,2005-05-28T12:03:00Z,898,77,2005-05-29T13:16:00Z,1,2020-02-15T06:59:37Z +587,2005-05-28T12:05:33Z,1413,64,2005-05-30T13:45:33Z,2,2020-02-15T06:59:37Z +588,2005-05-28T12:08:37Z,95,89,2005-05-29T16:25:37Z,2,2020-02-15T06:59:37Z +589,2005-05-28T12:27:50Z,4231,308,2005-06-03T07:15:50Z,2,2020-02-15T06:59:37Z +590,2005-05-28T13:06:50Z,473,462,2005-06-02T09:18:50Z,1,2020-02-15T06:59:37Z +591,2005-05-28T13:11:04Z,377,19,2005-05-29T17:20:04Z,2,2020-02-15T06:59:37Z +592,2005-05-28T13:21:08Z,638,244,2005-05-29T16:55:08Z,1,2020-02-15T06:59:37Z +593,2005-05-28T13:33:23Z,1810,16,2005-05-30T17:10:23Z,2,2020-02-15T06:59:37Z +594,2005-05-28T13:41:56Z,2766,538,2005-05-30T12:00:56Z,1,2020-02-15T06:59:37Z +595,2005-05-28T13:59:54Z,595,294,2005-06-05T15:16:54Z,1,2020-02-15T06:59:37Z +596,2005-05-28T14:00:03Z,821,589,2005-05-29T17:10:03Z,1,2020-02-15T06:59:37Z +597,2005-05-28T14:01:02Z,4469,249,2005-06-06T19:06:02Z,2,2020-02-15T06:59:37Z +598,2005-05-28T14:04:50Z,599,159,2005-06-03T18:00:50Z,2,2020-02-15T06:59:37Z +599,2005-05-28T14:05:57Z,4136,393,2005-06-01T16:41:57Z,2,2020-02-15T06:59:37Z +600,2005-05-28T14:08:19Z,1567,332,2005-06-03T11:57:19Z,2,2020-02-15T06:59:37Z +601,2005-05-28T14:08:22Z,3225,429,2005-06-04T10:50:22Z,1,2020-02-15T06:59:37Z +602,2005-05-28T14:15:54Z,1300,590,2005-06-05T15:16:54Z,2,2020-02-15T06:59:37Z +603,2005-05-28T14:27:51Z,3248,537,2005-05-29T13:13:51Z,1,2020-02-15T06:59:37Z +604,2005-05-28T14:37:07Z,1585,426,2005-06-03T11:03:07Z,2,2020-02-15T06:59:37Z +605,2005-05-28T14:39:10Z,4232,501,2005-06-01T09:28:10Z,2,2020-02-15T06:59:37Z +606,2005-05-28T14:48:39Z,3509,299,2005-06-04T09:44:39Z,2,2020-02-15T06:59:37Z +607,2005-05-28T15:02:41Z,2561,554,2005-05-30T12:54:41Z,2,2020-02-15T06:59:37Z +608,2005-05-28T15:03:44Z,4254,494,2005-06-04T17:14:44Z,2,2020-02-15T06:59:37Z +609,2005-05-28T15:04:02Z,2944,150,2005-06-05T14:47:02Z,2,2020-02-15T06:59:37Z +610,2005-05-28T15:15:25Z,3642,500,2005-06-02T12:30:25Z,2,2020-02-15T06:59:37Z +611,2005-05-28T15:18:18Z,1230,580,2005-05-31T20:15:18Z,2,2020-02-15T06:59:37Z +612,2005-05-28T15:24:54Z,2180,161,2005-05-30T14:22:54Z,2,2020-02-15T06:59:37Z +613,2005-05-28T15:27:22Z,270,595,2005-06-02T20:01:22Z,1,2020-02-15T06:59:37Z +614,2005-05-28T15:33:28Z,280,307,2005-06-04T12:27:28Z,2,2020-02-15T06:59:37Z +615,2005-05-28T15:35:52Z,3397,533,2005-06-03T17:35:52Z,2,2020-02-15T06:59:37Z +616,2005-05-28T15:45:39Z,989,471,2005-06-02T09:55:39Z,1,2020-02-15T06:59:37Z +617,2005-05-28T15:49:14Z,4142,372,2005-05-31T14:29:14Z,2,2020-02-15T06:59:37Z +618,2005-05-28T15:50:07Z,4445,248,2005-06-01T19:45:07Z,1,2020-02-15T06:59:37Z +619,2005-05-28T15:52:26Z,2482,407,2005-06-06T17:55:26Z,2,2020-02-15T06:59:37Z +620,2005-05-28T15:54:45Z,2444,321,2005-06-04T20:26:45Z,1,2020-02-15T06:59:37Z +621,2005-05-28T15:58:12Z,1144,239,2005-05-30T21:54:12Z,1,2020-02-15T06:59:37Z +622,2005-05-28T15:58:22Z,2363,109,2005-06-04T10:13:22Z,1,2020-02-15T06:59:37Z +623,2005-05-28T16:01:28Z,1222,495,2005-05-30T11:19:28Z,1,2020-02-15T06:59:37Z +624,2005-05-28T16:13:22Z,3660,569,2005-06-06T20:35:22Z,1,2020-02-15T06:59:37Z +625,2005-05-28T16:35:46Z,2889,596,2005-06-01T14:19:46Z,1,2020-02-15T06:59:37Z +626,2005-05-28T16:58:09Z,452,584,2005-06-01T14:02:09Z,2,2020-02-15T06:59:37Z +627,2005-05-28T17:04:43Z,425,241,2005-06-04T19:58:43Z,2,2020-02-15T06:59:37Z +628,2005-05-28T17:05:46Z,2513,173,2005-06-06T16:29:46Z,2,2020-02-15T06:59:37Z +629,2005-05-28T17:19:15Z,1527,94,2005-06-02T20:01:15Z,2,2020-02-15T06:59:37Z +630,2005-05-28T17:24:51Z,1254,417,2005-06-05T20:05:51Z,2,2020-02-15T06:59:37Z +631,2005-05-28T17:36:32Z,2465,503,2005-06-03T14:56:32Z,2,2020-02-15T06:59:37Z +632,2005-05-28T17:37:50Z,1287,442,2005-06-03T16:04:50Z,1,2020-02-15T06:59:37Z +633,2005-05-28T17:37:59Z,58,360,2005-06-03T22:49:59Z,2,2020-02-15T06:59:37Z +634,2005-05-28T17:40:35Z,2630,428,2005-06-05T16:18:35Z,2,2020-02-15T06:59:37Z +635,2005-05-28T17:46:57Z,1648,42,2005-06-06T18:24:57Z,1,2020-02-15T06:59:37Z +636,2005-05-28T17:47:58Z,4213,239,2005-06-04T16:32:58Z,1,2020-02-15T06:59:37Z +637,2005-05-28T18:14:29Z,1581,250,2005-05-29T23:48:29Z,2,2020-02-15T06:59:37Z +638,2005-05-28T18:24:43Z,2685,372,2005-06-02T19:03:43Z,2,2020-02-15T06:59:37Z +639,2005-05-28T18:25:02Z,4204,198,2005-05-29T18:22:02Z,1,2020-02-15T06:59:37Z +640,2005-05-28T18:43:26Z,495,465,2005-05-30T13:39:26Z,1,2020-02-15T06:59:37Z +641,2005-05-28T18:45:47Z,3548,396,2005-06-04T15:24:47Z,1,2020-02-15T06:59:37Z +642,2005-05-28T18:49:12Z,140,157,2005-06-01T20:50:12Z,2,2020-02-15T06:59:37Z +643,2005-05-28T18:52:11Z,3105,240,2005-05-31T15:15:11Z,2,2020-02-15T06:59:37Z +644,2005-05-28T18:59:12Z,4304,316,2005-06-04T18:06:12Z,1,2020-02-15T06:59:37Z +645,2005-05-28T19:14:09Z,3128,505,2005-06-05T14:01:09Z,1,2020-02-15T06:59:37Z +646,2005-05-28T19:16:14Z,1922,185,2005-05-31T16:50:14Z,2,2020-02-15T06:59:37Z +647,2005-05-28T19:22:52Z,3435,569,2005-06-01T00:10:52Z,1,2020-02-15T06:59:37Z +648,2005-05-28T19:25:54Z,3476,253,2005-06-03T15:57:54Z,2,2020-02-15T06:59:37Z +649,2005-05-28T19:35:45Z,1781,197,2005-06-05T16:00:45Z,1,2020-02-15T06:59:37Z +650,2005-05-28T19:45:40Z,4384,281,2005-05-29T21:02:40Z,1,2020-02-15T06:59:37Z +651,2005-05-28T19:46:50Z,739,266,2005-05-30T16:29:50Z,1,2020-02-15T06:59:37Z +652,2005-05-28T20:08:47Z,1201,43,2005-05-29T14:57:47Z,2,2020-02-15T06:59:37Z +653,2005-05-28T20:12:20Z,126,327,2005-06-04T14:44:20Z,2,2020-02-15T06:59:37Z +654,2005-05-28T20:15:30Z,2312,23,2005-05-30T22:02:30Z,2,2020-02-15T06:59:37Z +655,2005-05-28T20:16:20Z,331,287,2005-05-31T16:46:20Z,2,2020-02-15T06:59:37Z +656,2005-05-28T20:18:24Z,2846,437,2005-05-30T16:19:24Z,1,2020-02-15T06:59:37Z +657,2005-05-28T20:23:09Z,848,65,2005-06-01T02:11:09Z,1,2020-02-15T06:59:37Z +658,2005-05-28T20:23:23Z,3226,103,2005-06-06T19:31:23Z,2,2020-02-15T06:59:37Z +659,2005-05-28T20:27:53Z,1382,207,2005-05-31T01:36:53Z,2,2020-02-15T06:59:37Z +660,2005-05-28T20:53:31Z,1414,578,2005-05-30T15:26:31Z,1,2020-02-15T06:59:37Z +661,2005-05-28T21:01:25Z,2247,51,2005-06-02T01:22:25Z,2,2020-02-15T06:59:37Z +662,2005-05-28T21:09:31Z,2968,166,2005-06-01T19:00:31Z,2,2020-02-15T06:59:37Z +663,2005-05-28T21:23:02Z,3997,176,2005-06-02T17:39:02Z,2,2020-02-15T06:59:37Z +664,2005-05-28T21:31:08Z,87,523,2005-06-02T20:56:08Z,2,2020-02-15T06:59:37Z +665,2005-05-28T21:38:39Z,1012,415,2005-05-29T21:37:39Z,1,2020-02-15T06:59:37Z +666,2005-05-28T21:48:51Z,3075,437,2005-06-05T16:45:51Z,2,2020-02-15T06:59:37Z +667,2005-05-28T21:49:02Z,797,596,2005-05-31T03:07:02Z,1,2020-02-15T06:59:37Z +668,2005-05-28T21:54:45Z,3528,484,2005-05-29T22:32:45Z,1,2020-02-15T06:59:37Z +669,2005-05-28T22:03:25Z,3677,313,2005-06-03T03:39:25Z,1,2020-02-15T06:59:37Z +670,2005-05-28T22:04:03Z,227,201,2005-06-06T22:43:03Z,2,2020-02-15T06:59:37Z +671,2005-05-28T22:04:30Z,1027,14,2005-06-03T01:21:30Z,2,2020-02-15T06:59:37Z +672,2005-05-28T22:05:29Z,697,306,2005-06-06T02:10:29Z,2,2020-02-15T06:59:37Z +673,2005-05-28T22:07:30Z,1769,468,2005-06-01T23:42:30Z,1,2020-02-15T06:59:37Z +674,2005-05-28T22:11:35Z,1150,87,2005-06-01T23:58:35Z,2,2020-02-15T06:59:37Z +675,2005-05-28T22:22:44Z,1273,338,2005-06-01T02:57:44Z,2,2020-02-15T06:59:37Z +676,2005-05-28T22:27:51Z,2329,490,2005-05-29T20:36:51Z,2,2020-02-15T06:59:37Z +677,2005-05-28T23:00:08Z,4558,194,2005-06-05T19:11:08Z,2,2020-02-15T06:59:37Z +678,2005-05-28T23:15:48Z,3741,269,2005-06-03T04:43:48Z,2,2020-02-15T06:59:37Z +679,2005-05-28T23:24:57Z,907,526,2005-06-06T21:59:57Z,2,2020-02-15T06:59:37Z +680,2005-05-28T23:27:26Z,4147,482,2005-06-02T02:28:26Z,2,2020-02-15T06:59:37Z +681,2005-05-28T23:39:44Z,3346,531,2005-06-01T01:42:44Z,1,2020-02-15T06:59:37Z +682,2005-05-28T23:53:18Z,3160,148,2005-05-29T19:14:18Z,2,2020-02-15T06:59:37Z +683,2005-05-29T00:09:48Z,2038,197,2005-06-02T04:27:48Z,1,2020-02-15T06:59:37Z +684,2005-05-29T00:13:15Z,3242,461,2005-06-04T21:26:15Z,2,2020-02-15T06:59:37Z +685,2005-05-29T00:17:51Z,1385,172,2005-06-05T05:32:51Z,2,2020-02-15T06:59:37Z +686,2005-05-29T00:27:10Z,2441,411,2005-05-30T02:29:10Z,1,2020-02-15T06:59:37Z +687,2005-05-29T00:32:09Z,1731,250,2005-05-31T23:53:09Z,1,2020-02-15T06:59:37Z +688,2005-05-29T00:45:24Z,4135,162,2005-06-02T01:30:24Z,1,2020-02-15T06:59:37Z +689,2005-05-29T00:46:53Z,742,571,2005-06-03T23:48:53Z,2,2020-02-15T06:59:37Z +690,2005-05-29T00:54:53Z,2646,85,2005-06-06T00:45:53Z,1,2020-02-15T06:59:37Z +691,2005-05-29T01:01:26Z,4034,433,2005-06-07T06:21:26Z,1,2020-02-15T06:59:37Z +692,2005-05-29T01:32:10Z,800,18,2005-06-02T03:54:10Z,2,2020-02-15T06:59:37Z +693,2005-05-29T01:42:31Z,635,190,2005-06-03T02:29:31Z,2,2020-02-15T06:59:37Z +694,2005-05-29T01:49:43Z,592,399,2005-06-05T06:52:43Z,1,2020-02-15T06:59:37Z +695,2005-05-29T01:50:53Z,4276,528,2005-06-03T02:28:53Z,1,2020-02-15T06:59:37Z +696,2005-05-29T01:59:10Z,2076,19,2005-06-01T02:45:10Z,1,2020-02-15T06:59:37Z +697,2005-05-29T02:04:04Z,3949,387,2005-06-04T00:47:04Z,2,2020-02-15T06:59:37Z +698,2005-05-29T02:10:52Z,1412,109,2005-06-01T21:52:52Z,1,2020-02-15T06:59:37Z +699,2005-05-29T02:11:44Z,130,246,2005-06-04T20:23:44Z,2,2020-02-15T06:59:37Z +700,2005-05-29T02:18:54Z,500,117,2005-05-30T05:54:54Z,1,2020-02-15T06:59:37Z +701,2005-05-29T02:26:27Z,372,112,2005-06-03T04:59:27Z,1,2020-02-15T06:59:37Z +702,2005-05-29T02:27:30Z,2556,475,2005-05-30T01:52:30Z,2,2020-02-15T06:59:37Z +703,2005-05-29T02:29:36Z,1123,269,2005-06-03T04:54:36Z,2,2020-02-15T06:59:37Z +704,2005-05-29T02:44:43Z,2628,330,2005-06-06T01:51:43Z,2,2020-02-15T06:59:37Z +705,2005-05-29T02:48:52Z,2809,257,2005-05-30T06:21:52Z,1,2020-02-15T06:59:37Z +706,2005-05-29T03:05:49Z,2278,60,2005-06-04T22:48:49Z,1,2020-02-15T06:59:37Z +707,2005-05-29T03:18:19Z,819,252,2005-05-30T02:45:19Z,1,2020-02-15T06:59:37Z +708,2005-05-29T03:23:47Z,3133,127,2005-05-31T21:27:47Z,2,2020-02-15T06:59:37Z +709,2005-05-29T03:48:01Z,2459,479,2005-06-06T05:21:01Z,1,2020-02-15T06:59:37Z +710,2005-05-29T03:48:36Z,194,518,2005-06-03T05:03:36Z,1,2020-02-15T06:59:37Z +711,2005-05-29T03:49:03Z,4581,215,2005-05-31T08:29:03Z,2,2020-02-15T06:59:37Z +712,2005-05-29T04:02:24Z,4191,313,2005-05-30T03:09:24Z,2,2020-02-15T06:59:37Z +713,2005-05-29T04:10:17Z,3664,507,2005-06-07T07:13:17Z,1,2020-02-15T06:59:37Z +714,2005-05-29T04:15:21Z,2010,452,2005-06-01T23:05:21Z,2,2020-02-15T06:59:37Z +715,2005-05-29T04:22:41Z,2030,545,2005-06-05T09:28:41Z,1,2020-02-15T06:59:37Z +716,2005-05-29T04:35:29Z,85,36,2005-06-01T07:42:29Z,2,2020-02-15T06:59:37Z +717,2005-05-29T04:37:44Z,1383,412,2005-05-30T05:48:44Z,2,2020-02-15T06:59:37Z +718,2005-05-29T04:52:23Z,1736,498,2005-06-02T02:27:23Z,1,2020-02-15T06:59:37Z +719,2005-05-29T05:16:05Z,267,245,2005-06-01T07:53:05Z,2,2020-02-15T06:59:37Z +720,2005-05-29T05:17:30Z,3687,480,2005-06-06T02:47:30Z,2,2020-02-15T06:59:37Z +721,2005-05-29T05:28:47Z,1116,44,2005-05-31T11:24:47Z,1,2020-02-15T06:59:37Z +722,2005-05-29T05:30:31Z,4540,259,2005-06-06T04:51:31Z,1,2020-02-15T06:59:37Z +723,2005-05-29T05:34:44Z,3407,309,2005-05-30T05:50:44Z,1,2020-02-15T06:59:37Z +724,2005-05-29T05:53:23Z,3770,416,2005-06-05T04:01:23Z,2,2020-02-15T06:59:37Z +725,2005-05-29T06:03:41Z,4088,245,2005-06-03T08:52:41Z,2,2020-02-15T06:59:37Z +726,2005-05-29T06:05:29Z,933,452,2005-06-05T04:40:29Z,2,2020-02-15T06:59:37Z +727,2005-05-29T06:08:15Z,1629,484,2005-05-30T07:16:15Z,1,2020-02-15T06:59:37Z +728,2005-05-29T06:12:38Z,242,551,2005-06-03T07:41:38Z,1,2020-02-15T06:59:37Z +729,2005-05-29T06:35:13Z,1688,323,2005-06-04T03:23:13Z,2,2020-02-15T06:59:37Z +730,2005-05-29T07:00:59Z,3473,197,2005-06-06T01:17:59Z,1,2020-02-15T06:59:37Z +731,2005-05-29T07:25:16Z,4124,5,2005-05-30T05:21:16Z,1,2020-02-15T06:59:37Z +732,2005-05-29T07:32:51Z,2530,447,2005-05-30T10:08:51Z,2,2020-02-15T06:59:37Z +733,2005-05-29T07:35:21Z,2951,363,2005-06-05T09:14:21Z,1,2020-02-15T06:59:37Z +734,2005-05-29T07:38:52Z,3084,538,2005-06-03T10:17:52Z,2,2020-02-15T06:59:37Z +735,2005-05-29T08:08:13Z,3421,454,2005-06-07T13:35:13Z,1,2020-02-15T06:59:37Z +736,2005-05-29T08:10:07Z,3689,276,2005-06-05T10:21:07Z,2,2020-02-15T06:59:37Z +737,2005-05-29T08:11:31Z,769,589,2005-06-04T11:18:31Z,2,2020-02-15T06:59:37Z +738,2005-05-29T08:20:08Z,2284,256,2005-06-06T08:59:08Z,2,2020-02-15T06:59:37Z +739,2005-05-29T08:28:18Z,1183,84,2005-06-06T09:21:18Z,2,2020-02-15T06:59:37Z +740,2005-05-29T08:30:36Z,600,89,2005-06-04T12:47:36Z,2,2020-02-15T06:59:37Z +741,2005-05-29T08:35:49Z,3189,495,2005-06-04T11:55:49Z,1,2020-02-15T06:59:37Z +742,2005-05-29T08:36:30Z,273,483,2005-06-05T11:30:30Z,1,2020-02-15T06:59:37Z +743,2005-05-29T08:39:02Z,2528,548,2005-06-06T08:42:02Z,2,2020-02-15T06:59:37Z +744,2005-05-29T09:13:08Z,3722,420,2005-06-01T07:05:08Z,2,2020-02-15T06:59:37Z +745,2005-05-29T09:22:57Z,581,152,2005-06-01T09:10:57Z,1,2020-02-15T06:59:37Z +746,2005-05-29T09:25:10Z,4272,130,2005-06-02T04:20:10Z,2,2020-02-15T06:59:37Z +747,2005-05-29T09:26:34Z,1993,291,2005-06-05T07:28:34Z,1,2020-02-15T06:59:37Z +748,2005-05-29T09:27:00Z,2803,7,2005-06-03T04:25:00Z,1,2020-02-15T06:59:37Z +749,2005-05-29T09:33:33Z,1146,375,2005-05-31T11:45:33Z,2,2020-02-15T06:59:37Z +750,2005-05-29T09:41:40Z,730,269,2005-05-30T13:31:40Z,1,2020-02-15T06:59:37Z +751,2005-05-29T09:55:43Z,2711,53,2005-06-02T04:54:43Z,1,2020-02-15T06:59:37Z +752,2005-05-29T10:14:15Z,1720,126,2005-06-04T06:30:15Z,1,2020-02-15T06:59:37Z +753,2005-05-29T10:16:42Z,1021,135,2005-06-05T08:52:42Z,2,2020-02-15T06:59:37Z +754,2005-05-29T10:18:59Z,734,281,2005-06-04T05:03:59Z,2,2020-02-15T06:59:37Z +755,2005-05-29T10:26:29Z,3090,576,2005-06-01T10:25:29Z,2,2020-02-15T06:59:37Z +756,2005-05-29T10:28:45Z,3152,201,2005-06-04T12:50:45Z,1,2020-02-15T06:59:37Z +757,2005-05-29T10:29:47Z,1067,435,2005-06-07T15:27:47Z,1,2020-02-15T06:59:37Z +758,2005-05-29T10:31:56Z,1191,563,2005-06-01T14:53:56Z,2,2020-02-15T06:59:37Z +759,2005-05-29T10:57:57Z,2367,179,2005-06-07T16:23:57Z,2,2020-02-15T06:59:37Z +760,2005-05-29T11:07:25Z,3250,77,2005-06-02T14:16:25Z,1,2020-02-15T06:59:37Z +761,2005-05-29T11:09:01Z,2342,58,2005-06-03T16:18:01Z,2,2020-02-15T06:59:37Z +762,2005-05-29T11:15:51Z,3683,146,2005-06-06T07:48:51Z,1,2020-02-15T06:59:37Z +763,2005-05-29T11:32:15Z,2022,50,2005-05-31T17:31:15Z,1,2020-02-15T06:59:37Z +764,2005-05-29T11:37:35Z,1069,149,2005-05-31T16:47:35Z,1,2020-02-15T06:59:37Z +765,2005-05-29T11:38:34Z,515,69,2005-06-02T17:04:34Z,1,2020-02-15T06:59:37Z +766,2005-05-29T11:47:02Z,2154,383,2005-06-06T07:14:02Z,1,2020-02-15T06:59:37Z +767,2005-05-29T12:20:19Z,687,67,2005-06-02T14:15:19Z,2,2020-02-15T06:59:37Z +768,2005-05-29T12:30:46Z,2895,566,2005-06-07T09:00:46Z,2,2020-02-15T06:59:37Z +769,2005-05-29T12:51:44Z,1523,575,2005-06-01T17:43:44Z,1,2020-02-15T06:59:37Z +770,2005-05-29T12:56:50Z,2491,405,2005-06-07T15:54:50Z,2,2020-02-15T06:59:37Z +771,2005-05-29T12:59:14Z,353,476,2005-06-01T16:05:14Z,2,2020-02-15T06:59:37Z +772,2005-05-29T13:08:06Z,3319,556,2005-06-06T08:19:06Z,1,2020-02-15T06:59:37Z +773,2005-05-29T13:18:05Z,245,563,2005-06-07T17:22:05Z,1,2020-02-15T06:59:37Z +774,2005-05-29T13:19:43Z,1188,575,2005-06-01T18:51:43Z,1,2020-02-15T06:59:37Z +775,2005-05-29T13:23:26Z,1197,124,2005-05-30T07:53:26Z,2,2020-02-15T06:59:37Z +776,2005-05-29T13:35:35Z,4339,113,2005-06-03T17:33:35Z,1,2020-02-15T06:59:37Z +777,2005-05-29T14:07:58Z,451,360,2005-06-03T08:41:58Z,2,2020-02-15T06:59:37Z +778,2005-05-29T14:09:53Z,1816,535,2005-06-05T20:05:53Z,1,2020-02-15T06:59:37Z +779,2005-05-29T14:17:17Z,533,105,2005-06-06T16:46:17Z,1,2020-02-15T06:59:37Z +780,2005-05-29T14:18:32Z,1919,300,2005-06-06T20:14:32Z,1,2020-02-15T06:59:37Z +781,2005-05-29T14:23:58Z,88,313,2005-05-30T17:44:58Z,1,2020-02-15T06:59:37Z +782,2005-05-29T14:38:57Z,2255,596,2005-06-02T13:18:57Z,2,2020-02-15T06:59:37Z +783,2005-05-29T14:41:18Z,3046,53,2005-06-06T10:39:18Z,2,2020-02-15T06:59:37Z +784,2005-05-29T14:44:22Z,2936,352,2005-06-01T17:28:22Z,2,2020-02-15T06:59:37Z +785,2005-05-29T15:08:41Z,39,72,2005-05-30T15:51:41Z,1,2020-02-15T06:59:37Z +786,2005-05-29T15:17:28Z,2637,439,2005-06-07T10:07:28Z,2,2020-02-15T06:59:37Z +787,2005-05-29T16:03:03Z,3919,27,2005-06-07T11:07:03Z,2,2020-02-15T06:59:37Z +788,2005-05-29T16:13:55Z,763,562,2005-05-31T16:40:55Z,1,2020-02-15T06:59:37Z +789,2005-05-29T16:17:07Z,708,553,2005-06-06T18:15:07Z,1,2020-02-15T06:59:37Z +790,2005-05-29T16:19:29Z,2858,593,2005-06-02T17:22:29Z,2,2020-02-15T06:59:37Z +791,2005-05-29T16:30:42Z,1554,284,2005-06-01T19:11:42Z,1,2020-02-15T06:59:37Z +792,2005-05-29T16:32:10Z,2841,261,2005-05-31T18:01:10Z,1,2020-02-15T06:59:37Z +793,2005-05-29T16:44:08Z,379,528,2005-06-06T19:21:08Z,2,2020-02-15T06:59:37Z +794,2005-05-29T16:44:11Z,1995,50,2005-06-05T16:11:11Z,1,2020-02-15T06:59:37Z +795,2005-05-29T16:57:39Z,609,551,2005-06-01T11:33:39Z,2,2020-02-15T06:59:37Z +796,2005-05-29T16:59:44Z,2697,26,2005-06-03T16:22:44Z,2,2020-02-15T06:59:37Z +797,2005-05-29T17:12:17Z,1446,244,2005-06-03T16:06:17Z,1,2020-02-15T06:59:37Z +798,2005-05-29T17:23:43Z,1102,134,2005-06-01T13:06:43Z,2,2020-02-15T06:59:37Z +799,2005-05-29T17:24:48Z,1713,429,2005-06-05T12:25:48Z,1,2020-02-15T06:59:37Z +800,2005-05-29T17:28:12Z,441,472,2005-05-30T14:59:12Z,1,2020-02-15T06:59:37Z +801,2005-05-29T17:35:50Z,1642,402,2005-06-04T17:05:50Z,2,2020-02-15T06:59:37Z +802,2005-05-29T17:38:59Z,785,350,2005-05-31T22:42:59Z,2,2020-02-15T06:59:37Z +803,2005-05-29T17:52:30Z,1602,32,2005-05-30T14:35:30Z,2,2020-02-15T06:59:37Z +804,2005-05-29T18:10:24Z,3909,171,2005-06-06T22:53:24Z,1,2020-02-15T06:59:37Z +805,2005-05-29T18:18:18Z,3132,232,2005-06-07T15:11:18Z,2,2020-02-15T06:59:37Z +806,2005-05-29T18:31:30Z,2386,435,2005-05-31T00:18:30Z,2,2020-02-15T06:59:37Z +807,2005-05-29T18:50:50Z,2195,235,2005-06-03T18:36:50Z,2,2020-02-15T06:59:37Z +808,2005-05-29T19:08:20Z,1928,104,2005-06-06T20:32:20Z,2,2020-02-15T06:59:37Z +809,2005-05-29T19:10:20Z,2114,222,2005-06-05T19:05:20Z,2,2020-02-15T06:59:37Z +810,2005-05-29T19:12:04Z,2533,346,2005-06-04T21:12:04Z,2,2020-02-15T06:59:37Z +811,2005-05-29T19:30:42Z,4419,401,2005-06-02T16:19:42Z,2,2020-02-15T06:59:37Z +812,2005-05-29T20:00:30Z,1099,225,2005-05-30T19:43:30Z,2,2020-02-15T06:59:37Z +813,2005-05-29T20:14:34Z,4554,344,2005-06-05T20:56:34Z,1,2020-02-15T06:59:37Z +814,2005-05-29T20:16:12Z,1572,134,2005-06-07T17:47:12Z,1,2020-02-15T06:59:37Z +815,2005-05-29T20:24:28Z,3757,14,2005-06-03T15:32:28Z,1,2020-02-15T06:59:37Z +816,2005-05-29T20:26:39Z,630,474,2005-06-06T22:31:39Z,2,2020-02-15T06:59:37Z +817,2005-05-29T20:39:14Z,186,554,2005-05-31T18:24:14Z,1,2020-02-15T06:59:37Z +818,2005-05-29T20:47:53Z,4106,321,2005-06-02T23:18:53Z,2,2020-02-15T06:59:37Z +819,2005-05-29T21:00:32Z,623,511,2005-06-02T15:15:32Z,2,2020-02-15T06:59:37Z +820,2005-05-29T21:07:22Z,2584,22,2005-06-07T00:22:22Z,2,2020-02-15T06:59:37Z +821,2005-05-29T21:31:12Z,3380,348,2005-06-04T22:49:12Z,1,2020-02-15T06:59:37Z +822,2005-05-29T21:36:00Z,2634,480,2005-06-07T17:24:00Z,1,2020-02-15T06:59:37Z +823,2005-05-29T21:39:37Z,3249,441,2005-05-30T22:06:37Z,1,2020-02-15T06:59:37Z +824,2005-05-29T21:45:32Z,3518,357,2005-05-31T19:01:32Z,1,2020-02-15T06:59:37Z +825,2005-05-29T21:49:41Z,712,371,2005-06-04T20:27:41Z,2,2020-02-15T06:59:37Z +826,2005-05-29T21:56:15Z,2263,207,2005-06-08T03:18:15Z,1,2020-02-15T06:59:37Z +827,2005-05-29T21:58:43Z,62,573,2005-06-06T00:54:43Z,1,2020-02-15T06:59:37Z +828,2005-05-29T22:14:55Z,2468,217,2005-05-30T17:22:55Z,1,2020-02-15T06:59:37Z +829,2005-05-29T22:16:42Z,1684,371,2005-06-06T01:38:42Z,1,2020-02-15T06:59:37Z +830,2005-05-29T22:43:55Z,3464,3,2005-06-01T17:43:55Z,1,2020-02-15T06:59:37Z +831,2005-05-29T22:50:25Z,3912,509,2005-06-06T02:27:25Z,1,2020-02-15T06:59:37Z +832,2005-05-29T22:51:20Z,1381,159,2005-06-07T17:37:20Z,2,2020-02-15T06:59:37Z +833,2005-05-29T23:21:56Z,2898,417,2005-06-02T18:40:56Z,1,2020-02-15T06:59:37Z +834,2005-05-29T23:24:30Z,3628,84,2005-05-30T22:00:30Z,2,2020-02-15T06:59:37Z +835,2005-05-29T23:37:00Z,299,381,2005-06-02T23:38:00Z,1,2020-02-15T06:59:37Z +836,2005-05-29T23:56:42Z,3140,368,2005-05-31T04:11:42Z,2,2020-02-15T06:59:37Z +837,2005-05-30T00:02:08Z,977,172,2005-06-02T05:31:08Z,2,2020-02-15T06:59:37Z +838,2005-05-30T00:27:57Z,2859,504,2005-06-06T22:19:57Z,2,2020-02-15T06:59:37Z +839,2005-05-30T00:28:12Z,1886,337,2005-06-08T02:43:12Z,1,2020-02-15T06:59:37Z +840,2005-05-30T00:28:41Z,4049,79,2005-05-31T20:39:41Z,2,2020-02-15T06:59:37Z +841,2005-05-30T00:31:17Z,4318,387,2005-06-02T19:14:17Z,1,2020-02-15T06:59:37Z +842,2005-05-30T00:32:04Z,2328,238,2005-06-01T02:21:04Z,1,2020-02-15T06:59:37Z +843,2005-05-30T00:44:24Z,2214,313,2005-05-31T00:58:24Z,2,2020-02-15T06:59:37Z +844,2005-05-30T00:58:20Z,536,429,2005-06-01T00:38:20Z,1,2020-02-15T06:59:37Z +845,2005-05-30T01:17:25Z,2001,72,2005-06-07T02:00:25Z,1,2020-02-15T06:59:37Z +846,2005-05-30T01:17:45Z,938,49,2005-06-01T00:56:45Z,2,2020-02-15T06:59:37Z +847,2005-05-30T01:18:15Z,4387,380,2005-06-06T20:20:15Z,2,2020-02-15T06:59:37Z +848,2005-05-30T01:19:53Z,1363,436,2005-06-05T23:40:53Z,1,2020-02-15T06:59:37Z +849,2005-05-30T01:23:07Z,2424,449,2005-06-07T01:50:07Z,1,2020-02-15T06:59:37Z +850,2005-05-30T01:35:12Z,2390,517,2005-05-31T01:51:12Z,1,2020-02-15T06:59:37Z +851,2005-05-30T01:35:15Z,2780,530,2005-06-06T07:27:15Z,1,2020-02-15T06:59:37Z +852,2005-05-30T01:36:57Z,1622,549,2005-06-01T22:44:57Z,1,2020-02-15T06:59:37Z +853,2005-05-30T01:43:31Z,3693,122,2005-06-01T02:05:31Z,1,2020-02-15T06:59:37Z +854,2005-05-30T01:56:11Z,921,369,2005-06-01T06:34:11Z,2,2020-02-15T06:59:37Z +855,2005-05-30T02:00:28Z,2527,406,2005-06-03T20:16:28Z,2,2020-02-15T06:59:37Z +856,2005-05-30T02:01:21Z,3969,53,2005-06-07T03:25:21Z,1,2020-02-15T06:59:37Z +857,2005-05-30T02:01:23Z,2569,204,2005-06-02T06:07:23Z,2,2020-02-15T06:59:37Z +858,2005-05-30T02:10:32Z,1258,358,2005-06-01T04:42:32Z,1,2020-02-15T06:59:37Z +859,2005-05-30T02:36:20Z,3032,79,2005-06-02T07:49:20Z,2,2020-02-15T06:59:37Z +860,2005-05-30T02:45:16Z,578,276,2005-06-08T07:28:16Z,1,2020-02-15T06:59:37Z +861,2005-05-30T02:48:32Z,3711,502,2005-06-06T05:43:32Z,1,2020-02-15T06:59:37Z +862,2005-05-30T03:09:11Z,1186,328,2005-06-03T21:27:11Z,1,2020-02-15T06:59:37Z +863,2005-05-30T03:14:59Z,3999,379,2005-06-05T04:34:59Z,2,2020-02-15T06:59:37Z +864,2005-05-30T03:27:17Z,2777,544,2005-06-06T08:28:17Z,1,2020-02-15T06:59:37Z +865,2005-05-30T03:39:44Z,3183,154,2005-06-07T08:10:44Z,2,2020-02-15T06:59:37Z +866,2005-05-30T03:43:54Z,2867,8,2005-06-08T04:28:54Z,1,2020-02-15T06:59:37Z +867,2005-05-30T03:54:43Z,3389,99,2005-06-01T22:59:43Z,1,2020-02-15T06:59:37Z +868,2005-05-30T04:19:55Z,3604,28,2005-05-31T02:28:55Z,1,2020-02-15T06:59:37Z +869,2005-05-30T04:22:06Z,3399,296,2005-06-03T09:18:06Z,2,2020-02-15T06:59:37Z +870,2005-05-30T04:25:47Z,2903,391,2005-06-06T04:32:47Z,1,2020-02-15T06:59:37Z +871,2005-05-30T05:01:30Z,4573,303,2005-06-04T06:22:30Z,2,2020-02-15T06:59:37Z +872,2005-05-30T05:03:04Z,3904,548,2005-06-06T10:35:04Z,1,2020-02-15T06:59:37Z +873,2005-05-30T05:15:20Z,4568,375,2005-06-07T00:49:20Z,2,2020-02-15T06:59:37Z +874,2005-05-30T05:36:21Z,363,52,2005-06-01T09:32:21Z,1,2020-02-15T06:59:37Z +875,2005-05-30T05:38:24Z,1428,326,2005-06-06T00:34:24Z,2,2020-02-15T06:59:37Z +876,2005-05-30T05:41:22Z,1471,339,2005-06-07T09:06:22Z,2,2020-02-15T06:59:37Z +877,2005-05-30T05:48:59Z,886,9,2005-06-02T09:30:59Z,1,2020-02-15T06:59:37Z +878,2005-05-30T05:49:13Z,4265,323,2005-06-07T04:35:13Z,1,2020-02-15T06:59:37Z +879,2005-05-30T05:49:42Z,4021,482,2005-06-05T01:45:42Z,2,2020-02-15T06:59:37Z +880,2005-05-30T06:12:33Z,1819,460,2005-06-02T04:35:33Z,2,2020-02-15T06:59:37Z +881,2005-05-30T06:15:36Z,602,242,2005-06-02T10:21:36Z,1,2020-02-15T06:59:37Z +882,2005-05-30T06:16:06Z,3841,477,2005-06-02T11:57:06Z,1,2020-02-15T06:59:37Z +883,2005-05-30T06:21:05Z,2271,399,2005-06-07T04:50:05Z,2,2020-02-15T06:59:37Z +884,2005-05-30T06:41:32Z,4079,17,2005-05-31T07:39:32Z,1,2020-02-15T06:59:37Z +885,2005-05-30T06:54:28Z,646,62,2005-06-03T07:03:28Z,2,2020-02-15T06:59:37Z +886,2005-05-30T06:54:51Z,4356,393,2005-06-01T06:04:51Z,2,2020-02-15T06:59:37Z +887,2005-05-30T07:10:00Z,2727,16,2005-06-01T06:48:00Z,2,2020-02-15T06:59:37Z +888,2005-05-30T07:13:14Z,387,128,2005-06-06T09:50:14Z,1,2020-02-15T06:59:37Z +889,2005-05-30T07:14:53Z,1299,114,2005-05-31T07:56:53Z,2,2020-02-15T06:59:37Z +890,2005-05-30T07:43:04Z,1464,349,2005-06-01T11:26:04Z,1,2020-02-15T06:59:37Z +891,2005-05-30T07:43:12Z,2611,391,2005-06-08T09:21:12Z,1,2020-02-15T06:59:37Z +892,2005-05-30T08:02:56Z,471,274,2005-06-05T12:51:56Z,1,2020-02-15T06:59:37Z +893,2005-05-30T08:06:59Z,3260,502,2005-06-07T08:23:59Z,2,2020-02-15T06:59:37Z +894,2005-05-30T08:31:31Z,1118,400,2005-06-07T12:39:31Z,1,2020-02-15T06:59:37Z +895,2005-05-30T08:50:43Z,2744,192,2005-06-05T10:58:43Z,1,2020-02-15T06:59:37Z +896,2005-05-30T09:03:52Z,2817,207,2005-06-05T07:37:52Z,2,2020-02-15T06:59:37Z +897,2005-05-30T09:10:01Z,1334,432,2005-06-08T03:43:01Z,1,2020-02-15T06:59:37Z +898,2005-05-30T09:26:19Z,3497,384,2005-06-01T10:45:19Z,2,2020-02-15T06:59:37Z +899,2005-05-30T09:29:30Z,1096,156,2005-06-06T12:39:30Z,2,2020-02-15T06:59:37Z +900,2005-05-30T09:38:41Z,3543,586,2005-06-07T11:54:41Z,1,2020-02-15T06:59:37Z +901,2005-05-30T09:40:40Z,760,259,2005-06-02T10:32:40Z,1,2020-02-15T06:59:37Z +902,2005-05-30T09:53:36Z,1514,561,2005-06-07T12:10:36Z,1,2020-02-15T06:59:37Z +903,2005-05-30T10:11:29Z,2423,197,2005-06-03T09:33:29Z,1,2020-02-15T06:59:37Z +904,2005-05-30T10:19:42Z,2466,44,2005-06-05T04:58:42Z,2,2020-02-15T06:59:37Z +905,2005-05-30T10:25:00Z,4372,50,2005-06-06T06:23:00Z,1,2020-02-15T06:59:37Z +906,2005-05-30T10:30:38Z,1862,549,2005-06-07T06:44:38Z,2,2020-02-15T06:59:37Z +907,2005-05-30T10:37:27Z,3320,506,2005-06-02T09:51:27Z,1,2020-02-15T06:59:37Z +908,2005-05-30T10:38:37Z,4427,85,2005-06-03T09:56:37Z,1,2020-02-15T06:59:37Z +909,2005-05-30T10:43:38Z,3775,486,2005-06-08T12:07:38Z,1,2020-02-15T06:59:37Z +910,2005-05-30T10:46:16Z,2601,374,2005-06-04T13:32:16Z,1,2020-02-15T06:59:37Z +911,2005-05-30T10:50:22Z,1404,366,2005-06-07T12:26:22Z,2,2020-02-15T06:59:37Z +912,2005-05-30T10:58:33Z,3200,390,2005-05-31T09:31:33Z,2,2020-02-15T06:59:37Z +913,2005-05-30T11:04:58Z,3213,369,2005-06-07T13:22:58Z,2,2020-02-15T06:59:37Z +914,2005-05-30T11:06:00Z,1393,596,2005-06-04T06:07:00Z,2,2020-02-15T06:59:37Z +915,2005-05-30T11:20:27Z,1859,115,2005-06-02T11:55:27Z,1,2020-02-15T06:59:37Z +916,2005-05-30T11:25:01Z,1290,6,2005-05-31T09:06:01Z,1,2020-02-15T06:59:37Z +917,2005-05-30T11:27:06Z,3629,385,2005-06-02T08:31:06Z,1,2020-02-15T06:59:37Z +918,2005-05-30T11:32:24Z,818,197,2005-05-31T07:55:24Z,2,2020-02-15T06:59:37Z +919,2005-05-30T11:35:06Z,4052,374,2005-06-02T13:16:06Z,2,2020-02-15T06:59:37Z +920,2005-05-30T11:44:01Z,3860,584,2005-06-02T08:19:01Z,2,2020-02-15T06:59:37Z +921,2005-05-30T11:53:09Z,1827,508,2005-06-03T10:00:09Z,2,2020-02-15T06:59:37Z +922,2005-05-30T11:55:55Z,2442,550,2005-06-08T10:12:55Z,2,2020-02-15T06:59:37Z +923,2005-05-30T11:58:50Z,1884,37,2005-06-05T09:57:50Z,1,2020-02-15T06:59:37Z +924,2005-05-30T12:10:59Z,3279,293,2005-06-04T17:28:59Z,1,2020-02-15T06:59:37Z +925,2005-05-30T12:13:52Z,3203,137,2005-06-02T14:41:52Z,2,2020-02-15T06:59:37Z +926,2005-05-30T12:15:54Z,4327,76,2005-06-01T08:53:54Z,2,2020-02-15T06:59:37Z +927,2005-05-30T12:16:40Z,1158,167,2005-05-31T16:20:40Z,2,2020-02-15T06:59:37Z +928,2005-05-30T12:27:14Z,246,79,2005-06-05T13:56:14Z,2,2020-02-15T06:59:37Z +929,2005-05-30T12:32:39Z,4296,536,2005-06-06T12:17:39Z,1,2020-02-15T06:59:37Z +930,2005-05-30T12:44:57Z,2835,141,2005-06-04T10:53:57Z,2,2020-02-15T06:59:37Z +931,2005-05-30T12:53:01Z,3384,421,2005-05-31T14:28:01Z,1,2020-02-15T06:59:37Z +932,2005-05-30T12:55:36Z,719,198,2005-05-31T10:30:36Z,2,2020-02-15T06:59:37Z +933,2005-05-30T13:08:45Z,3672,66,2005-06-01T18:56:45Z,1,2020-02-15T06:59:37Z +934,2005-05-30T13:24:46Z,3595,60,2005-06-08T16:44:46Z,2,2020-02-15T06:59:37Z +935,2005-05-30T13:29:36Z,2421,256,2005-06-02T11:08:36Z,1,2020-02-15T06:59:37Z +936,2005-05-30T13:52:49Z,901,469,2005-06-07T16:56:49Z,1,2020-02-15T06:59:37Z +937,2005-05-30T14:47:31Z,1054,304,2005-06-05T09:53:31Z,2,2020-02-15T06:59:37Z +938,2005-05-30T14:47:31Z,1521,46,2005-06-04T10:10:31Z,2,2020-02-15T06:59:37Z +939,2005-05-30T14:49:34Z,1314,367,2005-06-01T19:00:34Z,1,2020-02-15T06:59:37Z +940,2005-05-30T15:01:02Z,1278,534,2005-06-01T18:26:02Z,1,2020-02-15T06:59:37Z +941,2005-05-30T15:02:25Z,3630,562,2005-06-01T17:19:25Z,1,2020-02-15T06:59:37Z +942,2005-05-30T15:05:47Z,4279,473,2005-06-08T15:59:47Z,2,2020-02-15T06:59:37Z +943,2005-05-30T15:20:19Z,3737,57,2005-06-06T18:53:19Z,1,2020-02-15T06:59:37Z +944,2005-05-30T15:26:24Z,151,131,2005-06-07T18:09:24Z,2,2020-02-15T06:59:37Z +945,2005-05-30T15:33:17Z,1441,357,2005-06-02T15:02:17Z,2,2020-02-15T06:59:37Z +946,2005-05-30T15:35:08Z,1264,486,2005-06-08T11:38:08Z,1,2020-02-15T06:59:37Z +947,2005-05-30T15:36:57Z,4478,62,2005-06-04T18:48:57Z,1,2020-02-15T06:59:37Z +948,2005-05-30T15:44:27Z,585,245,2005-06-08T17:30:27Z,2,2020-02-15T06:59:37Z +949,2005-05-30T15:50:39Z,2202,368,2005-06-03T14:25:39Z,1,2020-02-15T06:59:37Z +950,2005-05-30T16:06:08Z,491,83,2005-06-01T11:43:08Z,1,2020-02-15T06:59:37Z +951,2005-05-30T16:10:35Z,1395,59,2005-05-31T19:01:35Z,2,2020-02-15T06:59:37Z +952,2005-05-30T16:28:07Z,4389,311,2005-06-02T16:12:07Z,2,2020-02-15T06:59:37Z +953,2005-05-30T16:34:02Z,2194,210,2005-05-31T20:34:02Z,1,2020-02-15T06:59:37Z +954,2005-05-30T16:57:29Z,1231,297,2005-06-08T13:30:29Z,2,2020-02-15T06:59:37Z +955,2005-05-30T16:59:03Z,4140,301,2005-05-31T11:58:03Z,2,2020-02-15T06:59:37Z +956,2005-05-30T17:30:28Z,647,296,2005-06-07T13:54:28Z,2,2020-02-15T06:59:37Z +957,2005-05-30T17:53:29Z,4428,440,2005-06-03T15:31:29Z,2,2020-02-15T06:59:37Z +958,2005-05-30T17:58:03Z,548,186,2005-06-01T19:17:03Z,2,2020-02-15T06:59:37Z +959,2005-05-30T18:07:00Z,3108,535,2005-06-02T14:37:00Z,2,2020-02-15T06:59:37Z +960,2005-05-30T18:13:23Z,1966,445,2005-06-04T00:12:23Z,2,2020-02-15T06:59:37Z +961,2005-05-30T18:16:44Z,3293,588,2005-06-04T23:40:44Z,2,2020-02-15T06:59:37Z +962,2005-05-30T18:45:17Z,4535,520,2005-06-05T22:47:17Z,1,2020-02-15T06:59:37Z +963,2005-05-30T18:52:53Z,1921,225,2005-06-07T16:19:53Z,2,2020-02-15T06:59:37Z +964,2005-05-30T18:53:21Z,657,287,2005-06-04T22:32:21Z,2,2020-02-15T06:59:37Z +965,2005-05-30T19:00:14Z,3363,502,2005-05-31T17:10:14Z,2,2020-02-15T06:59:37Z +966,2005-05-30T19:00:37Z,1294,496,2005-05-31T23:51:37Z,1,2020-02-15T06:59:37Z +967,2005-05-30T19:12:06Z,1954,330,2005-06-09T00:02:06Z,2,2020-02-15T06:59:37Z +968,2005-05-30T19:20:03Z,119,576,2005-05-31T18:17:03Z,2,2020-02-15T06:59:37Z +969,2005-05-30T19:23:48Z,443,551,2005-05-31T21:14:48Z,1,2020-02-15T06:59:37Z +970,2005-05-30T19:50:28Z,1520,307,2005-06-09T01:19:28Z,1,2020-02-15T06:59:37Z +971,2005-05-30T20:10:52Z,2911,561,2005-06-06T20:47:52Z,1,2020-02-15T06:59:37Z +972,2005-05-30T20:21:07Z,2,411,2005-06-06T00:36:07Z,1,2020-02-15T06:59:37Z +973,2005-05-30T20:27:45Z,1914,473,2005-06-08T22:47:45Z,2,2020-02-15T06:59:37Z +974,2005-05-30T20:28:42Z,2617,596,2005-06-08T23:45:42Z,2,2020-02-15T06:59:37Z +975,2005-05-30T21:07:15Z,3109,7,2005-06-03T01:48:15Z,2,2020-02-15T06:59:37Z +976,2005-05-30T21:11:19Z,2290,581,2005-06-06T02:16:19Z,2,2020-02-15T06:59:37Z +977,2005-05-30T21:22:26Z,2029,394,2005-06-04T22:32:26Z,2,2020-02-15T06:59:37Z +978,2005-05-30T21:30:52Z,407,154,2005-06-07T16:22:52Z,1,2020-02-15T06:59:37Z +979,2005-05-30T21:37:11Z,3917,279,2005-06-08T00:24:11Z,2,2020-02-15T06:59:37Z +980,2005-05-30T21:45:19Z,4169,273,2005-06-01T20:32:19Z,1,2020-02-15T06:59:37Z +981,2005-05-30T21:52:42Z,2913,326,2005-06-01T03:15:42Z,2,2020-02-15T06:59:37Z +982,2005-05-30T22:15:24Z,3560,524,2005-06-02T16:18:24Z,1,2020-02-15T06:59:37Z +983,2005-05-30T22:15:51Z,63,115,2005-06-02T22:56:51Z,1,2020-02-15T06:59:37Z +984,2005-05-30T22:17:17Z,2305,262,2005-06-01T20:15:17Z,2,2020-02-15T06:59:37Z +985,2005-05-30T22:18:35Z,1573,564,2005-06-04T23:36:35Z,1,2020-02-15T06:59:37Z +986,2005-05-30T22:22:52Z,4045,253,2005-06-01T02:24:52Z,1,2020-02-15T06:59:37Z +987,2005-05-30T22:59:12Z,390,11,2005-06-07T20:56:12Z,1,2020-02-15T06:59:37Z +988,2005-05-30T23:08:03Z,1364,12,2005-06-07T00:22:03Z,1,2020-02-15T06:59:37Z +989,2005-05-30T23:11:51Z,4388,83,2005-06-03T20:36:51Z,2,2020-02-15T06:59:37Z +990,2005-05-30T23:25:14Z,4171,311,2005-06-06T18:41:14Z,2,2020-02-15T06:59:37Z +991,2005-05-30T23:29:22Z,2863,593,2005-06-07T23:16:22Z,1,2020-02-15T06:59:37Z +992,2005-05-30T23:47:56Z,3572,123,2005-06-05T19:01:56Z,1,2020-02-15T06:59:37Z +993,2005-05-30T23:54:19Z,2080,513,2005-06-04T21:27:19Z,1,2020-02-15T06:59:37Z +994,2005-05-30T23:55:36Z,2798,472,2005-06-04T01:00:36Z,2,2020-02-15T06:59:37Z +995,2005-05-31T00:06:02Z,17,150,2005-06-06T02:30:02Z,2,2020-02-15T06:59:37Z +996,2005-05-31T00:06:20Z,2075,331,2005-05-31T21:29:20Z,2,2020-02-15T06:59:37Z +997,2005-05-31T00:08:25Z,4243,216,2005-06-02T00:17:25Z,2,2020-02-15T06:59:37Z +998,2005-05-31T00:16:57Z,3395,389,2005-06-01T22:41:57Z,1,2020-02-15T06:59:37Z +999,2005-05-31T00:25:10Z,4433,413,2005-06-03T06:05:10Z,2,2020-02-15T06:59:37Z +1000,2005-05-31T00:25:56Z,1774,332,2005-06-08T19:42:56Z,2,2020-02-15T06:59:37Z +1001,2005-05-31T00:46:31Z,1498,64,2005-06-06T06:14:31Z,2,2020-02-15T06:59:37Z +1002,2005-05-31T00:47:56Z,709,397,2005-06-06T19:51:56Z,1,2020-02-15T06:59:37Z +1003,2005-05-31T00:48:20Z,133,161,2005-06-02T04:53:20Z,2,2020-02-15T06:59:37Z +1004,2005-05-31T00:48:36Z,1588,565,2005-06-01T20:56:36Z,1,2020-02-15T06:59:37Z +1005,2005-05-31T00:53:25Z,4006,551,2005-06-04T01:21:25Z,2,2020-02-15T06:59:37Z +1006,2005-05-31T00:57:08Z,3461,222,2005-06-02T22:35:08Z,1,2020-02-15T06:59:37Z +1007,2005-05-31T01:02:28Z,3185,24,2005-06-07T01:36:28Z,2,2020-02-15T06:59:37Z +1008,2005-05-31T01:18:56Z,914,599,2005-06-01T01:24:56Z,2,2020-02-15T06:59:37Z +1009,2005-05-31T01:47:35Z,2523,485,2005-06-03T20:26:35Z,1,2020-02-15T06:59:37Z +1010,2005-05-31T01:57:32Z,4038,49,2005-06-01T06:50:32Z,2,2020-02-15T06:59:37Z +1011,2005-05-31T02:05:39Z,118,164,2005-06-04T21:27:39Z,2,2020-02-15T06:59:37Z +1012,2005-05-31T02:18:05Z,688,291,2005-06-03T06:47:05Z,1,2020-02-15T06:59:37Z +1013,2005-05-31T02:37:00Z,4522,384,2005-06-02T06:39:00Z,2,2020-02-15T06:59:37Z +1014,2005-05-31T02:39:16Z,766,280,2005-06-01T06:03:16Z,2,2020-02-15T06:59:37Z +1015,2005-05-31T02:44:57Z,3702,526,2005-06-07T23:01:57Z,2,2020-02-15T06:59:37Z +1016,2005-05-31T02:49:43Z,3423,204,2005-06-04T03:48:43Z,1,2020-02-15T06:59:37Z +1017,2005-05-31T02:53:36Z,1242,16,2005-06-03T05:04:36Z,1,2020-02-15T06:59:37Z +1018,2005-05-31T02:53:42Z,1930,594,2005-06-03T00:47:42Z,2,2020-02-15T06:59:37Z +1019,2005-05-31T03:05:07Z,3975,279,2005-06-03T08:34:07Z,1,2020-02-15T06:59:37Z +1020,2005-05-31T03:06:08Z,3402,138,2005-06-02T08:57:08Z,2,2020-02-15T06:59:37Z +1021,2005-05-31T03:16:15Z,2724,541,2005-06-08T06:43:15Z,2,2020-02-15T06:59:37Z +1022,2005-05-31T03:16:45Z,842,239,2005-06-08T09:04:45Z,1,2020-02-15T06:59:37Z +1023,2005-05-31T03:26:50Z,2483,227,2005-06-05T08:19:50Z,2,2020-02-15T06:59:37Z +1024,2005-05-31T03:30:19Z,2310,457,2005-06-09T05:52:19Z,2,2020-02-15T06:59:37Z +1025,2005-05-31T03:41:37Z,1618,93,2005-06-08T07:05:37Z,2,2020-02-15T06:59:37Z +1026,2005-05-31T03:45:26Z,632,107,2005-06-06T22:30:26Z,2,2020-02-15T06:59:37Z +1027,2005-05-31T03:46:19Z,2718,55,2005-06-09T03:50:19Z,1,2020-02-15T06:59:37Z +1028,2005-05-31T03:48:05Z,4479,51,2005-06-01T03:51:05Z,1,2020-02-15T06:59:37Z +1029,2005-05-31T03:52:02Z,2082,50,2005-06-06T08:10:02Z,1,2020-02-15T06:59:37Z +1030,2005-05-31T04:06:47Z,3948,267,2005-06-02T02:59:47Z,1,2020-02-15T06:59:37Z +1031,2005-05-31T04:23:01Z,917,416,2005-06-06T08:35:01Z,1,2020-02-15T06:59:37Z +1032,2005-05-31T04:28:43Z,2937,236,2005-06-02T02:00:43Z,2,2020-02-15T06:59:37Z +1033,2005-05-31T04:50:07Z,14,25,2005-06-02T01:53:07Z,1,2020-02-15T06:59:37Z +1034,2005-05-31T04:53:40Z,4117,293,2005-06-09T08:25:40Z,2,2020-02-15T06:59:37Z +1035,2005-05-31T05:01:09Z,949,362,2005-06-02T03:59:09Z,1,2020-02-15T06:59:37Z +1036,2005-05-31T05:21:10Z,2164,438,2005-06-04T04:19:10Z,1,2020-02-15T06:59:37Z +1037,2005-05-31T05:22:25Z,810,569,2005-06-09T04:52:25Z,1,2020-02-15T06:59:37Z +1038,2005-05-31T05:23:47Z,1253,385,2005-06-02T03:57:47Z,2,2020-02-15T06:59:37Z +1039,2005-05-31T05:32:29Z,2479,124,2005-06-01T06:04:29Z,2,2020-02-15T06:59:37Z +1040,2005-05-31T05:35:16Z,2546,270,2005-06-09T04:14:16Z,1,2020-02-15T06:59:37Z +1041,2005-05-31T05:46:23Z,4432,272,2005-06-06T09:50:23Z,2,2020-02-15T06:59:37Z +1042,2005-05-31T05:53:00Z,3155,506,2005-06-01T05:24:00Z,1,2020-02-15T06:59:37Z +1043,2005-05-31T06:11:40Z,2322,412,2005-06-08T09:15:40Z,2,2020-02-15T06:59:37Z +1044,2005-05-31T06:24:44Z,2574,70,2005-06-03T04:51:44Z,1,2020-02-15T06:59:37Z +1045,2005-05-31T06:29:01Z,3470,594,2005-06-09T04:31:01Z,1,2020-02-15T06:59:37Z +1046,2005-05-31T06:42:30Z,468,179,2005-06-03T04:33:30Z,2,2020-02-15T06:59:37Z +1047,2005-05-31T06:45:57Z,1366,72,2005-06-04T09:49:57Z,2,2020-02-15T06:59:37Z +1048,2005-05-31T06:49:53Z,2811,55,2005-06-02T11:33:53Z,1,2020-02-15T06:59:37Z +1049,2005-05-31T06:57:04Z,3913,312,2005-06-02T11:32:04Z,2,2020-02-15T06:59:37Z +1050,2005-05-31T07:01:27Z,726,303,2005-06-03T07:50:27Z,2,2020-02-15T06:59:37Z +1051,2005-05-31T07:02:09Z,1025,246,2005-06-03T01:32:09Z,1,2020-02-15T06:59:37Z +1052,2005-05-31T07:07:03Z,2157,156,2005-06-05T09:38:03Z,1,2020-02-15T06:59:37Z +1053,2005-05-31T07:12:44Z,3734,196,2005-06-04T12:33:44Z,1,2020-02-15T06:59:37Z +1054,2005-05-31T07:33:25Z,1575,126,2005-06-02T01:40:25Z,2,2020-02-15T06:59:37Z +1055,2005-05-31T07:47:18Z,1639,108,2005-06-03T01:57:18Z,1,2020-02-15T06:59:37Z +1056,2005-05-31T07:48:07Z,1591,519,2005-06-05T08:51:07Z,2,2020-02-15T06:59:37Z +1057,2005-05-31T07:58:06Z,497,124,2005-06-06T03:21:06Z,1,2020-02-15T06:59:37Z +1058,2005-05-31T08:04:17Z,40,116,2005-06-03T11:12:17Z,2,2020-02-15T06:59:37Z +1059,2005-05-31T08:20:43Z,3041,241,2005-06-04T09:05:43Z,2,2020-02-15T06:59:37Z +1060,2005-05-31T08:21:43Z,2676,570,2005-06-09T04:02:43Z,2,2020-02-15T06:59:37Z +1061,2005-05-31T08:27:58Z,965,109,2005-06-07T02:34:58Z,1,2020-02-15T06:59:37Z +1062,2005-05-31T08:38:20Z,2223,176,2005-06-09T08:23:20Z,2,2020-02-15T06:59:37Z +1063,2005-05-31T08:44:29Z,2484,7,2005-06-09T08:00:29Z,1,2020-02-15T06:59:37Z +1064,2005-05-31T08:50:07Z,2373,460,2005-06-02T14:47:07Z,2,2020-02-15T06:59:37Z +1065,2005-05-31T08:54:56Z,3379,316,2005-06-08T09:21:56Z,1,2020-02-15T06:59:37Z +1066,2005-05-31T09:07:33Z,2383,541,2005-06-09T05:34:33Z,2,2020-02-15T06:59:37Z +1067,2005-05-31T09:12:13Z,2345,32,2005-06-01T06:15:13Z,1,2020-02-15T06:59:37Z +1068,2005-05-31T09:32:15Z,150,443,2005-06-01T11:20:15Z,1,2020-02-15T06:59:37Z +1069,2005-05-31T09:32:31Z,3057,251,2005-06-08T10:19:31Z,2,2020-02-15T06:59:37Z +1070,2005-05-31T09:39:56Z,3170,228,2005-06-05T10:23:56Z,1,2020-02-15T06:59:37Z +1071,2005-05-31T09:48:56Z,469,174,2005-06-02T03:52:56Z,2,2020-02-15T06:59:37Z +1072,2005-05-31T09:52:50Z,2557,272,2005-06-05T05:39:50Z,1,2020-02-15T06:59:37Z +1073,2005-05-31T09:55:04Z,522,146,2005-06-07T03:55:04Z,1,2020-02-15T06:59:37Z +1074,2005-05-31T10:04:42Z,2508,503,2005-06-02T15:27:42Z,2,2020-02-15T06:59:37Z +1075,2005-05-31T10:13:34Z,2279,9,2005-06-09T08:11:34Z,1,2020-02-15T06:59:37Z +1076,2005-05-31T10:14:31Z,2551,214,2005-06-05T10:13:31Z,2,2020-02-15T06:59:37Z +1077,2005-05-31T10:22:54Z,1986,24,2005-06-02T12:21:54Z,1,2020-02-15T06:59:37Z +1078,2005-05-31T10:28:33Z,3682,230,2005-06-03T14:45:33Z,2,2020-02-15T06:59:37Z +1079,2005-05-31T10:48:17Z,268,312,2005-06-08T12:30:17Z,1,2020-02-15T06:59:37Z +1080,2005-05-31T10:55:26Z,3491,215,2005-06-03T13:13:26Z,2,2020-02-15T06:59:37Z +1081,2005-05-31T10:56:32Z,4524,404,2005-06-06T11:31:32Z,1,2020-02-15T06:59:37Z +1082,2005-05-31T11:02:01Z,4510,239,2005-06-05T08:43:01Z,1,2020-02-15T06:59:37Z +1083,2005-05-31T11:04:48Z,2393,556,2005-06-05T13:32:48Z,1,2020-02-15T06:59:37Z +1084,2005-05-31T11:10:17Z,4577,12,2005-06-01T11:15:17Z,1,2020-02-15T06:59:37Z +1085,2005-05-31T11:15:43Z,301,5,2005-06-07T12:02:43Z,1,2020-02-15T06:59:37Z +1086,2005-05-31T11:17:37Z,2909,549,2005-06-06T13:58:37Z,2,2020-02-15T06:59:37Z +1087,2005-05-31T11:18:08Z,431,169,2005-06-04T08:33:08Z,1,2020-02-15T06:59:37Z +1088,2005-05-31T11:35:13Z,3988,356,2005-06-06T16:01:13Z,2,2020-02-15T06:59:37Z +1089,2005-05-31T11:38:29Z,3784,367,2005-06-02T08:06:29Z,1,2020-02-15T06:59:37Z +1090,2005-05-31T12:03:44Z,3329,23,2005-06-02T15:54:44Z,2,2020-02-15T06:59:37Z +1091,2005-05-31T12:11:04Z,3853,251,2005-06-04T11:42:04Z,1,2020-02-15T06:59:37Z +1092,2005-05-31T12:15:57Z,4412,278,2005-06-03T15:39:57Z,2,2020-02-15T06:59:37Z +1093,2005-05-31T12:32:26Z,2189,214,2005-06-03T07:51:26Z,2,2020-02-15T06:59:37Z +1094,2005-05-31T13:03:49Z,3810,547,2005-06-05T14:30:49Z,2,2020-02-15T06:59:37Z +1095,2005-05-31T13:15:41Z,4546,252,2005-06-05T12:10:41Z,1,2020-02-15T06:59:37Z +1096,2005-05-31T13:30:49Z,1066,271,2005-06-09T13:53:49Z,1,2020-02-15T06:59:37Z +1097,2005-05-31T13:38:42Z,2285,491,2005-06-01T13:54:42Z,2,2020-02-15T06:59:37Z +1098,2005-05-31T13:51:48Z,1050,425,2005-06-09T18:42:48Z,2,2020-02-15T06:59:37Z +1099,2005-05-31T13:54:48Z,924,269,2005-06-05T13:04:48Z,2,2020-02-15T06:59:37Z +1100,2005-05-31T14:03:21Z,316,497,2005-06-06T16:08:21Z,1,2020-02-15T06:59:37Z +1101,2005-05-31T14:13:59Z,1174,260,2005-06-07T15:49:59Z,1,2020-02-15T06:59:37Z +1102,2005-05-31T14:20:29Z,2052,115,2005-06-04T17:38:29Z,2,2020-02-15T06:59:37Z +1103,2005-05-31T14:24:18Z,3154,353,2005-06-09T10:27:18Z,1,2020-02-15T06:59:37Z +1104,2005-05-31T14:30:01Z,1619,466,2005-06-05T12:07:01Z,1,2020-02-15T06:59:37Z +1105,2005-05-31T14:33:56Z,1708,26,2005-06-07T11:30:56Z,1,2020-02-15T06:59:37Z +1106,2005-05-31T14:36:52Z,4185,109,2005-06-01T14:33:52Z,2,2020-02-15T06:59:37Z +1107,2005-05-31T15:04:05Z,3449,53,2005-06-07T16:42:05Z,2,2020-02-15T06:59:37Z +1108,2005-05-31T15:05:12Z,2562,254,2005-06-09T19:48:12Z,2,2020-02-15T06:59:37Z +1109,2005-05-31T15:12:15Z,2031,481,2005-06-09T16:21:15Z,1,2020-02-15T06:59:37Z +1110,2005-05-31T15:22:51Z,2085,355,2005-06-07T14:32:51Z,1,2020-02-15T06:59:37Z +1111,2005-05-31T15:24:19Z,1137,300,2005-06-08T21:18:19Z,1,2020-02-15T06:59:37Z +1112,2005-05-31T15:51:39Z,2453,214,2005-06-03T14:04:39Z,1,2020-02-15T06:59:37Z +1113,2005-05-31T15:58:44Z,2078,451,2005-06-05T18:05:44Z,2,2020-02-15T06:59:37Z +1114,2005-05-31T16:00:33Z,2287,117,2005-06-01T19:05:33Z,1,2020-02-15T06:59:37Z +1115,2005-05-31T16:07:09Z,2140,109,2005-06-04T18:51:09Z,1,2020-02-15T06:59:37Z +1116,2005-05-31T16:10:46Z,1356,256,2005-06-01T20:27:46Z,2,2020-02-15T06:59:37Z +1117,2005-05-31T16:15:31Z,4125,189,2005-06-04T17:20:31Z,1,2020-02-15T06:59:37Z +1118,2005-05-31T16:23:02Z,213,510,2005-06-03T20:00:02Z,1,2020-02-15T06:59:37Z +1119,2005-05-31T16:34:27Z,4401,469,2005-06-02T10:54:27Z,1,2020-02-15T06:59:37Z +1120,2005-05-31T16:37:14Z,2897,361,2005-06-04T12:53:14Z,1,2020-02-15T06:59:37Z +1121,2005-05-31T16:37:36Z,1691,74,2005-06-06T21:02:36Z,1,2020-02-15T06:59:37Z +1122,2005-05-31T16:39:33Z,1392,180,2005-06-04T17:25:33Z,1,2020-02-15T06:59:37Z +1123,2005-05-31T16:48:43Z,142,448,2005-06-02T19:17:43Z,2,2020-02-15T06:59:37Z +1124,2005-05-31T16:49:34Z,4560,134,2005-06-04T19:32:34Z,2,2020-02-15T06:59:37Z +1125,2005-05-31T17:23:44Z,1172,234,2005-06-01T15:02:44Z,1,2020-02-15T06:59:37Z +1126,2005-05-31T17:27:45Z,2765,431,2005-06-04T20:06:45Z,2,2020-02-15T06:59:37Z +1127,2005-05-31T17:45:49Z,2412,387,2005-06-08T22:41:49Z,2,2020-02-15T06:59:37Z +1128,2005-05-31T17:49:26Z,1496,311,2005-06-05T19:51:26Z,2,2020-02-15T06:59:37Z +1129,2005-05-31T18:00:48Z,386,486,2005-06-04T23:05:48Z,1,2020-02-15T06:59:37Z +1130,2005-05-31T18:13:57Z,3186,124,2005-06-06T22:50:57Z,2,2020-02-15T06:59:37Z +1131,2005-05-31T18:44:19Z,2654,128,2005-06-01T20:13:19Z,1,2020-02-15T06:59:37Z +1132,2005-05-31T18:44:53Z,1763,198,2005-06-07T22:02:53Z,2,2020-02-15T06:59:37Z +1133,2005-05-31T19:12:21Z,4271,73,2005-06-02T20:12:21Z,1,2020-02-15T06:59:37Z +1134,2005-05-31T19:14:15Z,143,191,2005-06-02T17:13:15Z,2,2020-02-15T06:59:37Z +1135,2005-05-31T19:15:11Z,3118,122,2005-06-01T14:44:11Z,2,2020-02-15T06:59:37Z +1136,2005-05-31T19:19:36Z,3963,50,2005-06-09T16:04:36Z,2,2020-02-15T06:59:37Z +1137,2005-05-31T19:20:14Z,3259,351,2005-06-07T16:10:14Z,1,2020-02-15T06:59:37Z +1138,2005-05-31T19:30:27Z,3944,438,2005-06-05T21:42:27Z,1,2020-02-15T06:59:37Z +1139,2005-05-31T19:34:52Z,666,562,2005-06-06T17:40:52Z,1,2020-02-15T06:59:37Z +1140,2005-05-31T19:36:30Z,3731,10,2005-06-07T18:33:30Z,2,2020-02-15T06:59:37Z +1141,2005-05-31T19:42:02Z,4128,217,2005-06-07T00:59:02Z,2,2020-02-15T06:59:37Z +1142,2005-05-31T19:46:38Z,3998,5,2005-06-05T14:03:38Z,1,2020-02-15T06:59:37Z +1143,2005-05-31T19:53:03Z,2632,209,2005-06-06T20:56:03Z,2,2020-02-15T06:59:37Z +1144,2005-05-31T20:04:10Z,2450,207,2005-06-09T16:34:10Z,1,2020-02-15T06:59:37Z +1145,2005-05-31T20:13:45Z,1133,284,2005-06-08T02:10:45Z,1,2020-02-15T06:59:37Z +1146,2005-05-31T20:34:45Z,3134,250,2005-06-03T18:12:45Z,2,2020-02-15T06:59:37Z +1147,2005-05-31T20:37:52Z,622,259,2005-06-06T19:23:52Z,2,2020-02-15T06:59:37Z +1148,2005-05-31T20:38:40Z,3307,235,2005-06-02T18:35:40Z,2,2020-02-15T06:59:37Z +1149,2005-05-31T21:03:17Z,352,326,2005-06-08T19:58:17Z,2,2020-02-15T06:59:37Z +1150,2005-05-31T21:20:09Z,1632,136,2005-06-03T19:15:09Z,2,2020-02-15T06:59:37Z +1151,2005-05-31T21:29:00Z,1281,581,2005-06-03T23:24:00Z,1,2020-02-15T06:59:37Z +1152,2005-05-31T21:32:17Z,210,191,2005-06-04T21:07:17Z,2,2020-02-15T06:59:37Z +1153,2005-05-31T21:36:44Z,2725,506,2005-06-10T01:26:44Z,2,2020-02-15T06:59:37Z +1154,2005-05-31T21:42:09Z,2732,59,2005-06-08T16:40:09Z,1,2020-02-15T06:59:37Z +1155,2005-05-31T22:17:11Z,2048,251,2005-06-04T20:27:11Z,2,2020-02-15T06:59:37Z +1156,2005-05-31T22:37:34Z,460,106,2005-06-01T23:02:34Z,2,2020-02-15T06:59:37Z +1157,2005-05-31T22:47:45Z,1449,61,2005-06-02T18:01:45Z,1,2020-02-15T06:59:37Z +1158,2005-06-14T22:53:33Z,1632,416,2005-06-18T21:37:33Z,2,2020-02-15T06:59:37Z +1159,2005-06-14T22:55:13Z,4395,516,2005-06-17T02:11:13Z,1,2020-02-15T06:59:37Z +1160,2005-06-14T23:00:34Z,2795,239,2005-06-18T01:58:34Z,2,2020-02-15T06:59:37Z +1161,2005-06-14T23:07:08Z,1690,285,2005-06-21T17:12:08Z,1,2020-02-15T06:59:37Z +1162,2005-06-14T23:09:38Z,987,310,2005-06-23T22:00:38Z,1,2020-02-15T06:59:37Z +1163,2005-06-14T23:12:46Z,4209,592,2005-06-23T21:53:46Z,1,2020-02-15T06:59:37Z +1164,2005-06-14T23:16:26Z,3691,49,2005-06-16T21:00:26Z,1,2020-02-15T06:59:37Z +1165,2005-06-14T23:16:27Z,2855,264,2005-06-20T02:40:27Z,2,2020-02-15T06:59:37Z +1166,2005-06-14T23:17:03Z,2508,46,2005-06-15T20:43:03Z,1,2020-02-15T06:59:37Z +1167,2005-06-14T23:25:58Z,4021,323,2005-06-18T05:18:58Z,2,2020-02-15T06:59:37Z +1168,2005-06-14T23:35:09Z,4368,481,2005-06-19T03:20:09Z,1,2020-02-15T06:59:37Z +1169,2005-06-14T23:42:56Z,1062,139,2005-06-16T04:02:56Z,2,2020-02-15T06:59:37Z +1170,2005-06-14T23:47:35Z,2444,595,2005-06-17T05:28:35Z,2,2020-02-15T06:59:37Z +1171,2005-06-14T23:50:11Z,4082,284,2005-06-17T21:44:11Z,2,2020-02-15T06:59:37Z +1172,2005-06-14T23:54:34Z,2685,306,2005-06-16T02:26:34Z,1,2020-02-15T06:59:37Z +1173,2005-06-14T23:54:46Z,1050,191,2005-06-19T23:26:46Z,2,2020-02-15T06:59:37Z +1174,2005-06-15T00:12:51Z,2653,95,2005-06-21T02:10:51Z,2,2020-02-15T06:59:37Z +1175,2005-06-15T00:15:15Z,3255,197,2005-06-20T19:23:15Z,2,2020-02-15T06:59:37Z +1176,2005-06-15T00:28:37Z,2715,512,2005-06-21T21:42:37Z,1,2020-02-15T06:59:37Z +1177,2005-06-15T00:33:04Z,1897,210,2005-06-16T03:47:04Z,2,2020-02-15T06:59:37Z +1178,2005-06-15T00:36:40Z,2553,279,2005-06-21T00:27:40Z,2,2020-02-15T06:59:37Z +1179,2005-06-15T00:36:50Z,816,119,2005-06-22T22:09:50Z,1,2020-02-15T06:59:37Z +1180,2005-06-15T00:39:01Z,3119,432,2005-06-21T22:44:01Z,2,2020-02-15T06:59:37Z +1181,2005-06-15T00:42:17Z,2973,546,2005-06-19T03:36:17Z,2,2020-02-15T06:59:37Z +1182,2005-06-15T00:45:21Z,1061,196,2005-06-22T03:52:21Z,1,2020-02-15T06:59:37Z +1183,2005-06-15T00:49:19Z,706,329,2005-06-20T04:33:19Z,1,2020-02-15T06:59:37Z +1184,2005-06-15T00:49:36Z,473,295,2005-06-22T23:39:36Z,2,2020-02-15T06:59:37Z +1185,2005-06-15T00:54:12Z,2785,1,2005-06-23T02:42:12Z,2,2020-02-15T06:59:37Z +1186,2005-06-15T00:56:45Z,1556,368,2005-06-16T02:23:45Z,1,2020-02-15T06:59:37Z +1187,2005-06-15T00:58:50Z,1108,334,2005-06-23T02:19:50Z,1,2020-02-15T06:59:37Z +1188,2005-06-15T01:04:07Z,246,173,2005-06-19T03:48:07Z,1,2020-02-15T06:59:37Z +1189,2005-06-15T01:04:22Z,142,244,2005-06-24T06:48:22Z,1,2020-02-15T06:59:37Z +1190,2005-06-15T01:05:32Z,2572,370,2005-06-23T02:34:32Z,2,2020-02-15T06:59:37Z +1191,2005-06-15T01:10:35Z,2221,291,2005-06-17T20:36:35Z,2,2020-02-15T06:59:37Z +1192,2005-06-15T01:18:39Z,4134,186,2005-06-19T22:46:39Z,1,2020-02-15T06:59:37Z +1193,2005-06-15T01:24:20Z,4504,561,2005-06-21T02:29:20Z,2,2020-02-15T06:59:37Z +1194,2005-06-15T01:25:08Z,3774,402,2005-06-21T01:16:08Z,2,2020-02-15T06:59:37Z +1195,2005-06-15T01:37:38Z,2272,84,2005-06-17T21:50:38Z,1,2020-02-15T06:59:37Z +1196,2005-06-15T01:38:31Z,994,52,2005-06-18T06:55:31Z,1,2020-02-15T06:59:37Z +1197,2005-06-15T01:42:46Z,3812,349,2005-06-20T00:22:46Z,1,2020-02-15T06:59:37Z +1198,2005-06-15T01:48:58Z,1138,491,2005-06-20T01:07:58Z,2,2020-02-15T06:59:37Z +1199,2005-06-15T01:58:50Z,253,238,2005-06-16T20:30:50Z,2,2020-02-15T06:59:37Z +1200,2005-06-15T01:59:51Z,3329,516,2005-06-21T21:33:51Z,1,2020-02-15T06:59:37Z +1201,2005-06-15T02:06:28Z,2679,209,2005-06-16T21:38:28Z,2,2020-02-15T06:59:37Z +1202,2005-06-15T02:08:04Z,2821,451,2005-06-16T21:56:04Z,1,2020-02-15T06:59:37Z +1203,2005-06-15T02:09:02Z,2223,452,2005-06-21T00:04:02Z,1,2020-02-15T06:59:37Z +1204,2005-06-15T02:21:46Z,2450,249,2005-06-20T07:14:46Z,2,2020-02-15T06:59:37Z +1205,2005-06-15T02:25:56Z,470,340,2005-06-22T23:19:56Z,1,2020-02-15T06:59:37Z +1206,2005-06-15T02:27:07Z,1097,264,2005-06-18T22:46:07Z,2,2020-02-15T06:59:37Z +1207,2005-06-15T02:27:08Z,2277,430,2005-06-19T08:18:08Z,2,2020-02-15T06:59:37Z +1208,2005-06-15T02:30:03Z,750,376,2005-06-18T00:04:03Z,1,2020-02-15T06:59:37Z +1209,2005-06-15T02:31:12Z,1494,146,2005-06-21T07:39:12Z,1,2020-02-15T06:59:37Z +1210,2005-06-15T02:57:51Z,7,345,2005-06-20T01:41:51Z,2,2020-02-15T06:59:37Z +1211,2005-06-15T03:01:20Z,3360,122,2005-06-18T07:52:20Z,2,2020-02-15T06:59:37Z +1212,2005-06-15T03:03:33Z,3611,371,2005-06-17T06:31:33Z,1,2020-02-15T06:59:37Z +1213,2005-06-15T03:14:05Z,3191,94,2005-06-15T21:41:05Z,2,2020-02-15T06:59:37Z +1214,2005-06-15T03:18:40Z,4482,46,2005-06-20T07:32:40Z,1,2020-02-15T06:59:37Z +1215,2005-06-15T03:21:00Z,242,102,2005-06-19T03:39:00Z,1,2020-02-15T06:59:37Z +1216,2005-06-15T03:23:48Z,3973,100,2005-06-18T03:35:48Z,1,2020-02-15T06:59:37Z +1217,2005-06-15T03:24:14Z,600,203,2005-06-18T22:37:14Z,2,2020-02-15T06:59:37Z +1218,2005-06-15T03:24:44Z,239,371,2005-06-21T22:45:44Z,2,2020-02-15T06:59:37Z +1219,2005-06-15T03:25:59Z,3005,330,2005-06-20T00:37:59Z,1,2020-02-15T06:59:37Z +1220,2005-06-15T03:26:15Z,1621,290,2005-06-23T08:17:15Z,1,2020-02-15T06:59:37Z +1221,2005-06-15T03:35:16Z,2124,403,2005-06-18T03:11:16Z,1,2020-02-15T06:59:37Z +1222,2005-06-15T03:38:49Z,2799,168,2005-06-17T22:30:49Z,1,2020-02-15T06:59:37Z +1223,2005-06-15T03:38:53Z,1299,50,2005-06-20T01:00:53Z,2,2020-02-15T06:59:37Z +1224,2005-06-15T03:44:25Z,1572,369,2005-06-17T03:49:25Z,2,2020-02-15T06:59:37Z +1225,2005-06-15T03:45:35Z,1929,434,2005-06-19T02:03:35Z,1,2020-02-15T06:59:37Z +1226,2005-06-15T03:46:10Z,2290,409,2005-06-23T02:00:10Z,1,2020-02-15T06:59:37Z +1227,2005-06-15T03:50:03Z,654,428,2005-06-21T23:48:03Z,2,2020-02-15T06:59:37Z +1228,2005-06-15T03:50:36Z,4473,398,2005-06-17T22:41:36Z,1,2020-02-15T06:59:37Z +1229,2005-06-15T03:53:13Z,2140,468,2005-06-18T04:09:13Z,1,2020-02-15T06:59:37Z +1230,2005-06-15T04:04:09Z,2324,447,2005-06-16T02:21:09Z,1,2020-02-15T06:59:37Z +1231,2005-06-15T04:04:41Z,3003,302,2005-06-20T23:52:41Z,2,2020-02-15T06:59:37Z +1232,2005-06-15T04:18:10Z,2743,391,2005-06-17T06:02:10Z,2,2020-02-15T06:59:37Z +1233,2005-06-15T04:18:37Z,4214,550,2005-06-22T03:36:37Z,1,2020-02-15T06:59:37Z +1234,2005-06-15T04:21:52Z,709,529,2005-06-22T03:25:52Z,1,2020-02-15T06:59:37Z +1235,2005-06-15T04:31:28Z,1000,255,2005-06-22T10:08:28Z,1,2020-02-15T06:59:37Z +1236,2005-06-15T04:34:27Z,3182,66,2005-06-18T08:15:27Z,1,2020-02-15T06:59:37Z +1237,2005-06-15T04:44:10Z,3249,49,2005-06-23T07:00:10Z,2,2020-02-15T06:59:37Z +1238,2005-06-15T04:49:08Z,3534,205,2005-06-20T00:06:08Z,1,2020-02-15T06:59:37Z +1239,2005-06-15T04:53:01Z,3731,444,2005-06-16T07:03:01Z,1,2020-02-15T06:59:37Z +1240,2005-06-15T04:58:07Z,3841,28,2005-06-17T23:56:07Z,1,2020-02-15T06:59:37Z +1241,2005-06-15T04:59:43Z,4377,62,2005-06-24T03:32:43Z,2,2020-02-15T06:59:37Z +1242,2005-06-15T05:05:07Z,821,141,2005-06-22T04:57:07Z,1,2020-02-15T06:59:37Z +1243,2005-06-15T05:07:32Z,2629,107,2005-06-21T08:17:32Z,2,2020-02-15T06:59:37Z +1244,2005-06-15T05:08:40Z,1026,515,2005-06-20T10:41:40Z,1,2020-02-15T06:59:37Z +1245,2005-06-15T05:09:01Z,1314,234,2005-06-22T06:55:01Z,2,2020-02-15T06:59:37Z +1246,2005-06-15T05:11:19Z,431,357,2005-06-21T02:21:19Z,1,2020-02-15T06:59:37Z +1247,2005-06-15T05:16:40Z,4049,287,2005-06-23T11:01:40Z,1,2020-02-15T06:59:37Z +1248,2005-06-15T05:33:52Z,3878,544,2005-06-19T06:56:52Z,2,2020-02-15T06:59:37Z +1249,2005-06-15T05:38:09Z,2120,403,2005-06-22T10:29:09Z,1,2020-02-15T06:59:37Z +1250,2005-06-15T05:55:40Z,4360,38,2005-06-23T03:11:40Z,2,2020-02-15T06:59:37Z +1251,2005-06-15T05:58:55Z,3307,442,2005-06-23T02:45:55Z,2,2020-02-15T06:59:37Z +1252,2005-06-15T06:05:18Z,1147,89,2005-06-24T07:40:18Z,1,2020-02-15T06:59:37Z +1253,2005-06-15T06:06:33Z,3242,498,2005-06-21T04:13:33Z,2,2020-02-15T06:59:37Z +1254,2005-06-15T06:11:16Z,3986,571,2005-06-21T06:40:16Z,2,2020-02-15T06:59:37Z +1255,2005-06-15T06:13:45Z,1433,526,2005-06-16T03:59:45Z,2,2020-02-15T06:59:37Z +1256,2005-06-15T06:13:57Z,1437,470,2005-06-16T06:54:57Z,2,2020-02-15T06:59:37Z +1257,2005-06-15T06:15:36Z,1938,267,2005-06-21T01:04:36Z,2,2020-02-15T06:59:37Z +1258,2005-06-15T06:21:30Z,4530,320,2005-06-18T05:43:30Z,2,2020-02-15T06:59:37Z +1259,2005-06-15T06:37:55Z,4460,570,2005-06-23T04:02:55Z,2,2020-02-15T06:59:37Z +1260,2005-06-15T06:42:25Z,330,586,2005-06-16T10:44:25Z,2,2020-02-15T06:59:37Z +1261,2005-06-15T06:52:57Z,2447,95,2005-06-21T01:47:57Z,2,2020-02-15T06:59:37Z +1262,2005-06-15T06:54:53Z,4495,236,2005-06-22T08:09:53Z,2,2020-02-15T06:59:37Z +1263,2005-06-15T06:56:39Z,4144,540,2005-06-16T11:08:39Z,1,2020-02-15T06:59:37Z +1264,2005-06-15T06:59:39Z,4176,439,2005-06-18T08:10:39Z,2,2020-02-15T06:59:37Z +1265,2005-06-15T07:00:50Z,982,163,2005-06-19T12:27:50Z,1,2020-02-15T06:59:37Z +1266,2005-06-15T07:11:39Z,2230,96,2005-06-21T02:59:39Z,2,2020-02-15T06:59:37Z +1267,2005-06-15T07:21:21Z,4246,509,2005-06-17T08:12:21Z,2,2020-02-15T06:59:37Z +1268,2005-06-15T07:29:30Z,3641,142,2005-06-23T12:36:30Z,1,2020-02-15T06:59:37Z +1269,2005-06-15T07:29:59Z,108,59,2005-06-16T13:26:59Z,2,2020-02-15T06:59:37Z +1270,2005-06-15T07:30:22Z,62,395,2005-06-18T11:31:22Z,2,2020-02-15T06:59:37Z +1271,2005-06-15T07:32:24Z,379,560,2005-06-21T05:12:24Z,1,2020-02-15T06:59:37Z +1272,2005-06-15T07:42:58Z,3128,135,2005-06-18T12:00:58Z,1,2020-02-15T06:59:37Z +1273,2005-06-15T07:52:35Z,361,530,2005-06-21T04:55:35Z,1,2020-02-15T06:59:37Z +1274,2005-06-15T07:52:52Z,2765,430,2005-06-20T10:01:52Z,1,2020-02-15T06:59:37Z +1275,2005-06-15T07:55:43Z,950,214,2005-06-20T06:30:43Z,1,2020-02-15T06:59:37Z +1276,2005-06-15T08:00:13Z,1508,388,2005-06-24T02:55:13Z,2,2020-02-15T06:59:37Z +1277,2005-06-15T08:01:29Z,76,464,2005-06-22T07:16:29Z,2,2020-02-15T06:59:37Z +1278,2005-06-15T08:09:12Z,4471,191,2005-06-17T04:05:12Z,2,2020-02-15T06:59:37Z +1279,2005-06-15T08:13:57Z,698,183,2005-06-18T09:36:57Z,2,2020-02-15T06:59:37Z +1280,2005-06-15T08:16:06Z,2597,266,2005-06-21T04:10:06Z,2,2020-02-15T06:59:37Z +1281,2005-06-15T08:21:39Z,2963,511,2005-06-17T11:03:39Z,1,2020-02-15T06:59:37Z +1282,2005-06-15T08:25:33Z,186,539,2005-06-21T04:02:33Z,1,2020-02-15T06:59:37Z +1283,2005-06-15T08:27:30Z,3177,470,2005-06-16T09:46:30Z,2,2020-02-15T06:59:37Z +1284,2005-06-15T08:27:33Z,1387,463,2005-06-17T03:58:33Z,1,2020-02-15T06:59:37Z +1285,2005-06-15T08:33:06Z,1054,254,2005-06-19T07:36:06Z,1,2020-02-15T06:59:37Z +1286,2005-06-15T08:41:13Z,774,179,2005-06-23T13:13:13Z,2,2020-02-15T06:59:37Z +1287,2005-06-15T08:41:38Z,4204,104,2005-06-22T14:02:38Z,1,2020-02-15T06:59:37Z +1288,2005-06-15T08:41:52Z,830,456,2005-06-19T05:30:52Z,2,2020-02-15T06:59:37Z +1289,2005-06-15T08:44:09Z,3154,522,2005-06-21T06:04:09Z,1,2020-02-15T06:59:37Z +1290,2005-06-15T08:52:44Z,1921,540,2005-06-24T13:36:44Z,2,2020-02-15T06:59:37Z +1291,2005-06-15T08:55:01Z,3090,176,2005-06-24T04:22:01Z,1,2020-02-15T06:59:37Z +1292,2005-06-15T09:03:52Z,4535,178,2005-06-21T07:53:52Z,1,2020-02-15T06:59:37Z +1293,2005-06-15T09:06:24Z,2882,127,2005-06-18T06:58:24Z,1,2020-02-15T06:59:37Z +1294,2005-06-15T09:09:27Z,339,327,2005-06-19T04:43:27Z,1,2020-02-15T06:59:37Z +1295,2005-06-15T09:17:20Z,2897,449,2005-06-18T10:14:20Z,2,2020-02-15T06:59:37Z +1296,2005-06-15T09:23:59Z,1760,200,2005-06-19T03:44:59Z,2,2020-02-15T06:59:37Z +1297,2005-06-15T09:31:28Z,1075,4,2005-06-19T04:33:28Z,1,2020-02-15T06:59:37Z +1298,2005-06-15T09:32:53Z,4163,334,2005-06-16T12:40:53Z,2,2020-02-15T06:59:37Z +1299,2005-06-15T09:34:50Z,1584,91,2005-06-21T12:07:50Z,1,2020-02-15T06:59:37Z +1300,2005-06-15T09:36:19Z,2524,186,2005-06-17T13:54:19Z,2,2020-02-15T06:59:37Z +1301,2005-06-15T09:46:33Z,1484,33,2005-06-24T08:56:33Z,2,2020-02-15T06:59:37Z +1302,2005-06-15T09:48:37Z,324,285,2005-06-22T06:18:37Z,1,2020-02-15T06:59:37Z +1303,2005-06-15T09:55:57Z,2001,365,2005-06-20T14:26:57Z,2,2020-02-15T06:59:37Z +1304,2005-06-15T09:56:02Z,1304,242,2005-06-24T07:00:02Z,1,2020-02-15T06:59:37Z +1305,2005-06-15T09:59:16Z,187,8,2005-06-19T09:48:16Z,2,2020-02-15T06:59:37Z +1306,2005-06-15T09:59:24Z,2132,524,2005-06-19T09:37:24Z,2,2020-02-15T06:59:37Z +1307,2005-06-15T10:06:15Z,368,507,2005-06-20T04:50:15Z,2,2020-02-15T06:59:37Z +1308,2005-06-15T10:07:48Z,220,236,2005-06-24T15:24:48Z,1,2020-02-15T06:59:37Z +1309,2005-06-15T10:10:49Z,2356,200,2005-06-16T12:44:49Z,1,2020-02-15T06:59:37Z +1310,2005-06-15T10:11:42Z,2045,27,2005-06-16T15:00:42Z,1,2020-02-15T06:59:37Z +1311,2005-06-15T10:11:59Z,3114,326,2005-06-17T08:44:59Z,2,2020-02-15T06:59:37Z +1312,2005-06-15T10:16:27Z,3608,313,2005-06-20T06:53:27Z,1,2020-02-15T06:59:37Z +1313,2005-06-15T10:18:34Z,1657,448,2005-06-23T06:25:34Z,1,2020-02-15T06:59:37Z +1314,2005-06-15T10:21:45Z,1359,538,2005-06-21T14:10:45Z,1,2020-02-15T06:59:37Z +1315,2005-06-15T10:23:08Z,3844,405,2005-06-21T15:06:08Z,1,2020-02-15T06:59:37Z +1316,2005-06-15T10:26:23Z,3891,138,2005-06-21T09:25:23Z,2,2020-02-15T06:59:37Z +1317,2005-06-15T10:30:19Z,3696,316,2005-06-24T08:18:19Z,1,2020-02-15T06:59:37Z +1318,2005-06-15T10:34:26Z,2760,341,2005-06-20T16:20:26Z,1,2020-02-15T06:59:37Z +1319,2005-06-15T10:39:05Z,4296,190,2005-06-18T05:25:05Z,1,2020-02-15T06:59:37Z +1320,2005-06-15T10:42:13Z,4484,84,2005-06-17T13:44:13Z,1,2020-02-15T06:59:37Z +1321,2005-06-15T10:49:17Z,3516,204,2005-06-16T15:30:17Z,1,2020-02-15T06:59:37Z +1322,2005-06-15T10:55:09Z,2076,217,2005-06-18T15:14:09Z,2,2020-02-15T06:59:37Z +1323,2005-06-15T10:55:17Z,3273,187,2005-06-24T09:51:17Z,1,2020-02-15T06:59:37Z +1324,2005-06-15T11:02:45Z,764,394,2005-06-17T07:14:45Z,1,2020-02-15T06:59:37Z +1325,2005-06-15T11:03:24Z,52,193,2005-06-20T10:54:24Z,1,2020-02-15T06:59:37Z +1326,2005-06-15T11:07:39Z,59,548,2005-06-22T05:55:39Z,2,2020-02-15T06:59:37Z +1327,2005-06-15T11:11:39Z,403,539,2005-06-22T10:45:39Z,1,2020-02-15T06:59:37Z +1328,2005-06-15T11:23:27Z,3665,295,2005-06-19T12:42:27Z,2,2020-02-15T06:59:37Z +1329,2005-06-15T11:25:06Z,1154,359,2005-06-17T16:10:06Z,2,2020-02-15T06:59:37Z +1330,2005-06-15T11:29:17Z,1219,587,2005-06-24T13:36:17Z,2,2020-02-15T06:59:37Z +1331,2005-06-15T11:34:33Z,3089,277,2005-06-21T09:46:33Z,1,2020-02-15T06:59:37Z +1332,2005-06-15T11:36:01Z,1412,116,2005-06-17T14:29:01Z,1,2020-02-15T06:59:37Z +1333,2005-06-15T11:37:08Z,448,310,2005-06-16T10:13:08Z,2,2020-02-15T06:59:37Z +1334,2005-06-15T11:43:09Z,1242,269,2005-06-20T15:45:09Z,2,2020-02-15T06:59:37Z +1335,2005-06-15T11:51:30Z,1713,64,2005-06-16T16:42:30Z,2,2020-02-15T06:59:37Z +1336,2005-06-15T12:01:34Z,1696,290,2005-06-23T12:05:34Z,1,2020-02-15T06:59:37Z +1337,2005-06-15T12:12:42Z,4014,465,2005-06-20T12:38:42Z,2,2020-02-15T06:59:37Z +1338,2005-06-15T12:17:34Z,1206,25,2005-06-19T07:40:34Z,2,2020-02-15T06:59:37Z +1339,2005-06-15T12:21:56Z,424,162,2005-06-19T07:46:56Z,1,2020-02-15T06:59:37Z +1340,2005-06-15T12:24:15Z,251,100,2005-06-22T13:02:15Z,1,2020-02-15T06:59:37Z +1341,2005-06-15T12:26:18Z,3363,344,2005-06-21T07:26:18Z,2,2020-02-15T06:59:37Z +1342,2005-06-15T12:26:21Z,4429,427,2005-06-22T11:23:21Z,1,2020-02-15T06:59:37Z +1343,2005-06-15T12:27:19Z,2393,416,2005-06-21T16:57:19Z,1,2020-02-15T06:59:37Z +1344,2005-06-15T12:29:41Z,1625,585,2005-06-22T12:45:41Z,2,2020-02-15T06:59:37Z +1345,2005-06-15T12:32:13Z,1041,270,2005-06-24T14:02:13Z,1,2020-02-15T06:59:37Z +1346,2005-06-15T12:39:52Z,4540,585,2005-06-24T17:43:52Z,1,2020-02-15T06:59:37Z +1347,2005-06-15T12:43:43Z,374,190,2005-06-16T09:55:43Z,1,2020-02-15T06:59:37Z +1348,2005-06-15T12:45:30Z,2078,196,2005-06-17T17:12:30Z,1,2020-02-15T06:59:37Z +1349,2005-06-15T12:49:02Z,1131,267,2005-06-17T15:20:02Z,1,2020-02-15T06:59:37Z +1350,2005-06-15T12:50:25Z,4261,316,2005-06-23T11:35:25Z,1,2020-02-15T06:59:37Z +1351,2005-06-15T12:51:03Z,2364,484,2005-06-22T07:23:03Z,1,2020-02-15T06:59:37Z +1352,2005-06-15T12:58:27Z,4352,276,2005-06-18T10:57:27Z,1,2020-02-15T06:59:37Z +1353,2005-06-15T13:13:36Z,2711,480,2005-06-21T08:46:36Z,2,2020-02-15T06:59:37Z +1354,2005-06-15T13:13:49Z,1294,83,2005-06-23T13:08:49Z,2,2020-02-15T06:59:37Z +1355,2005-06-15T13:13:59Z,4203,499,2005-06-20T12:23:59Z,1,2020-02-15T06:59:37Z +1356,2005-06-15T13:17:01Z,1318,212,2005-06-19T16:22:01Z,1,2020-02-15T06:59:37Z +1357,2005-06-15T13:26:23Z,2285,205,2005-06-23T14:12:23Z,1,2020-02-15T06:59:37Z +1358,2005-06-15T13:28:48Z,2025,442,2005-06-21T13:40:48Z,1,2020-02-15T06:59:37Z +1359,2005-06-15T13:30:30Z,3140,353,2005-06-17T14:55:30Z,1,2020-02-15T06:59:37Z +1360,2005-06-15T13:32:15Z,4107,14,2005-06-18T10:59:15Z,2,2020-02-15T06:59:37Z +1361,2005-06-15T13:37:38Z,4338,115,2005-06-19T17:08:38Z,1,2020-02-15T06:59:37Z +1362,2005-06-15T13:53:32Z,4524,98,2005-06-19T16:05:32Z,1,2020-02-15T06:59:37Z +1363,2005-06-15T14:05:11Z,771,197,2005-06-17T19:53:11Z,2,2020-02-15T06:59:37Z +1364,2005-06-15T14:05:32Z,115,400,2005-06-16T15:31:32Z,1,2020-02-15T06:59:37Z +1365,2005-06-15T14:09:55Z,3813,25,2005-06-19T18:11:55Z,2,2020-02-15T06:59:37Z +1366,2005-06-15T14:21:00Z,4238,576,2005-06-24T17:36:00Z,1,2020-02-15T06:59:37Z +1367,2005-06-15T14:25:17Z,1505,94,2005-06-21T19:15:17Z,1,2020-02-15T06:59:37Z +1368,2005-06-15T14:27:47Z,2020,222,2005-06-23T18:07:47Z,2,2020-02-15T06:59:37Z +1369,2005-06-15T14:29:14Z,679,221,2005-06-16T13:01:14Z,1,2020-02-15T06:59:37Z +1370,2005-06-15T14:31:05Z,644,396,2005-06-22T19:23:05Z,2,2020-02-15T06:59:37Z +1371,2005-06-15T14:38:15Z,760,491,2005-06-23T15:36:15Z,1,2020-02-15T06:59:37Z +1372,2005-06-15T14:45:48Z,3740,108,2005-06-17T18:02:48Z,2,2020-02-15T06:59:37Z +1373,2005-06-15T14:48:04Z,284,51,2005-06-22T09:48:04Z,1,2020-02-15T06:59:37Z +1374,2005-06-15T14:49:54Z,3353,120,2005-06-22T12:30:54Z,1,2020-02-15T06:59:37Z +1375,2005-06-15T14:54:56Z,3555,500,2005-06-21T14:48:56Z,2,2020-02-15T06:59:37Z +1376,2005-06-15T14:59:06Z,4271,215,2005-06-19T17:34:06Z,1,2020-02-15T06:59:37Z +1377,2005-06-15T15:02:03Z,3410,245,2005-06-22T14:54:03Z,2,2020-02-15T06:59:37Z +1378,2005-06-15T15:03:15Z,4372,253,2005-06-19T16:50:15Z,1,2020-02-15T06:59:37Z +1379,2005-06-15T15:05:10Z,810,212,2005-06-18T12:11:10Z,1,2020-02-15T06:59:37Z +1380,2005-06-15T15:13:10Z,3376,158,2005-06-18T12:42:10Z,2,2020-02-15T06:59:37Z +1381,2005-06-15T15:17:21Z,3262,300,2005-06-20T17:07:21Z,2,2020-02-15T06:59:37Z +1382,2005-06-15T15:18:08Z,3133,455,2005-06-22T09:22:08Z,2,2020-02-15T06:59:37Z +1383,2005-06-15T15:20:06Z,1281,379,2005-06-24T18:42:06Z,2,2020-02-15T06:59:37Z +1384,2005-06-15T15:22:03Z,4242,242,2005-06-18T18:11:03Z,1,2020-02-15T06:59:37Z +1385,2005-06-15T15:28:23Z,4073,396,2005-06-18T18:37:23Z,1,2020-02-15T06:59:37Z +1386,2005-06-15T15:38:58Z,1296,322,2005-06-20T16:28:58Z,2,2020-02-15T06:59:37Z +1387,2005-06-15T15:40:56Z,515,278,2005-06-17T10:39:56Z,1,2020-02-15T06:59:37Z +1388,2005-06-15T15:48:41Z,3987,500,2005-06-22T17:51:41Z,1,2020-02-15T06:59:37Z +1389,2005-06-15T15:49:01Z,965,472,2005-06-19T11:08:01Z,2,2020-02-15T06:59:37Z +1390,2005-06-15T16:06:29Z,4502,254,2005-06-19T13:11:29Z,1,2020-02-15T06:59:37Z +1391,2005-06-15T16:11:21Z,4213,273,2005-06-22T21:32:21Z,1,2020-02-15T06:59:37Z +1392,2005-06-15T16:12:27Z,363,460,2005-06-16T17:30:27Z,2,2020-02-15T06:59:37Z +1393,2005-06-15T16:12:50Z,2767,177,2005-06-19T10:40:50Z,2,2020-02-15T06:59:37Z +1394,2005-06-15T16:17:21Z,2802,268,2005-06-21T20:44:21Z,2,2020-02-15T06:59:37Z +1395,2005-06-15T16:21:04Z,753,252,2005-06-23T12:52:04Z,2,2020-02-15T06:59:37Z +1396,2005-06-15T16:22:38Z,1007,103,2005-06-17T15:53:38Z,2,2020-02-15T06:59:37Z +1397,2005-06-15T16:25:26Z,1830,444,2005-06-21T20:45:26Z,1,2020-02-15T06:59:37Z +1398,2005-06-15T16:28:42Z,4402,527,2005-06-16T12:11:42Z,1,2020-02-15T06:59:37Z +1399,2005-06-15T16:29:51Z,1435,469,2005-06-18T14:06:51Z,1,2020-02-15T06:59:37Z +1400,2005-06-15T16:29:56Z,230,571,2005-06-21T14:43:56Z,2,2020-02-15T06:59:37Z +1401,2005-06-15T16:30:22Z,4081,366,2005-06-21T11:07:22Z,2,2020-02-15T06:59:37Z +1402,2005-06-15T16:31:08Z,1951,381,2005-06-24T19:31:08Z,1,2020-02-15T06:59:37Z +1403,2005-06-15T16:31:59Z,3380,546,2005-06-22T14:23:59Z,2,2020-02-15T06:59:37Z +1404,2005-06-15T16:38:53Z,2776,375,2005-06-16T20:37:53Z,1,2020-02-15T06:59:37Z +1405,2005-06-15T16:41:26Z,3184,243,2005-06-21T18:16:26Z,1,2020-02-15T06:59:37Z +1406,2005-06-15T16:44:00Z,3118,199,2005-06-21T11:22:00Z,2,2020-02-15T06:59:37Z +1407,2005-06-15T16:45:07Z,1286,89,2005-06-23T14:01:07Z,1,2020-02-15T06:59:37Z +1408,2005-06-15T16:57:58Z,2655,396,2005-06-22T21:08:58Z,1,2020-02-15T06:59:37Z +1409,2005-06-15T16:58:12Z,1398,297,2005-06-21T11:21:12Z,2,2020-02-15T06:59:37Z +1410,2005-06-15T16:59:46Z,809,356,2005-06-21T16:38:46Z,1,2020-02-15T06:59:37Z +1411,2005-06-15T17:05:36Z,2276,520,2005-06-21T14:05:36Z,1,2020-02-15T06:59:37Z +1412,2005-06-15T17:09:48Z,4236,166,2005-06-18T17:05:48Z,2,2020-02-15T06:59:37Z +1413,2005-06-15T17:25:07Z,3625,96,2005-06-21T17:17:07Z,2,2020-02-15T06:59:37Z +1414,2005-06-15T17:26:32Z,4005,304,2005-06-22T22:30:32Z,1,2020-02-15T06:59:37Z +1415,2005-06-15T17:31:57Z,1885,331,2005-06-16T22:22:57Z,2,2020-02-15T06:59:37Z +1416,2005-06-15T17:44:57Z,3816,167,2005-06-22T20:53:57Z,2,2020-02-15T06:59:37Z +1417,2005-06-15T17:45:51Z,1334,570,2005-06-19T14:00:51Z,2,2020-02-15T06:59:37Z +1418,2005-06-15T17:51:27Z,2974,591,2005-06-18T23:20:27Z,2,2020-02-15T06:59:37Z +1419,2005-06-15T17:54:50Z,1208,312,2005-06-17T19:44:50Z,2,2020-02-15T06:59:37Z +1420,2005-06-15T17:56:14Z,4149,255,2005-06-24T15:45:14Z,2,2020-02-15T06:59:37Z +1421,2005-06-15T17:57:04Z,2439,533,2005-06-21T20:38:04Z,2,2020-02-15T06:59:37Z +1422,2005-06-15T18:02:53Z,1021,1,2005-06-19T15:54:53Z,2,2020-02-15T06:59:37Z +1423,2005-06-15T18:08:12Z,1396,592,2005-06-24T19:13:12Z,1,2020-02-15T06:59:37Z +1424,2005-06-15T18:08:14Z,887,224,2005-06-24T23:16:14Z,2,2020-02-15T06:59:37Z +1425,2005-06-15T18:13:46Z,1308,108,2005-06-18T22:50:46Z,2,2020-02-15T06:59:37Z +1426,2005-06-15T18:16:24Z,4412,363,2005-06-18T22:15:24Z,2,2020-02-15T06:59:37Z +1427,2005-06-15T18:17:28Z,14,100,2005-06-16T15:47:28Z,1,2020-02-15T06:59:37Z +1428,2005-06-15T18:19:30Z,3689,583,2005-06-22T23:05:30Z,2,2020-02-15T06:59:37Z +1429,2005-06-15T18:24:10Z,4116,362,2005-06-18T16:30:10Z,1,2020-02-15T06:59:37Z +1430,2005-06-15T18:24:55Z,3412,194,2005-06-16T12:26:55Z,1,2020-02-15T06:59:37Z +1431,2005-06-15T18:26:29Z,3193,438,2005-06-21T17:33:29Z,1,2020-02-15T06:59:37Z +1432,2005-06-15T18:27:24Z,523,339,2005-06-21T14:03:24Z,2,2020-02-15T06:59:37Z +1433,2005-06-15T18:30:00Z,2310,88,2005-06-16T15:14:00Z,1,2020-02-15T06:59:37Z +1434,2005-06-15T18:30:46Z,4228,544,2005-06-24T17:51:46Z,1,2020-02-15T06:59:37Z +1435,2005-06-15T18:32:30Z,2769,510,2005-06-24T12:44:30Z,2,2020-02-15T06:59:37Z +1436,2005-06-15T18:35:40Z,924,584,2005-06-21T15:04:40Z,1,2020-02-15T06:59:37Z +1437,2005-06-15T18:37:04Z,3263,96,2005-06-20T12:56:04Z,1,2020-02-15T06:59:37Z +1438,2005-06-15T18:38:51Z,1816,82,2005-06-17T23:50:51Z,1,2020-02-15T06:59:37Z +1439,2005-06-15T18:45:32Z,3155,589,2005-06-22T15:57:32Z,2,2020-02-15T06:59:37Z +1440,2005-06-15T18:53:14Z,2921,26,2005-06-24T15:28:14Z,1,2020-02-15T06:59:37Z +1441,2005-06-15T18:54:21Z,2095,444,2005-06-22T22:48:21Z,2,2020-02-15T06:59:37Z +1442,2005-06-15T18:55:34Z,3912,122,2005-06-22T20:41:34Z,2,2020-02-15T06:59:37Z +1443,2005-06-15T18:57:51Z,2485,435,2005-06-18T14:18:51Z,2,2020-02-15T06:59:37Z +1444,2005-06-15T19:08:16Z,1303,539,2005-06-24T15:20:16Z,2,2020-02-15T06:59:37Z +1445,2005-06-15T19:10:07Z,3189,537,2005-06-19T20:27:07Z,2,2020-02-15T06:59:37Z +1446,2005-06-15T19:13:45Z,1989,506,2005-06-23T19:43:45Z,2,2020-02-15T06:59:37Z +1447,2005-06-15T19:13:51Z,984,471,2005-06-21T22:56:51Z,1,2020-02-15T06:59:37Z +1448,2005-06-15T19:17:16Z,2781,246,2005-06-23T21:56:16Z,2,2020-02-15T06:59:37Z +1449,2005-06-15T19:19:16Z,1525,471,2005-06-18T15:24:16Z,2,2020-02-15T06:59:37Z +1450,2005-06-15T19:22:08Z,4132,268,2005-06-16T17:53:08Z,2,2020-02-15T06:59:37Z +1451,2005-06-15T19:30:18Z,3560,18,2005-06-19T19:22:18Z,2,2020-02-15T06:59:37Z +1452,2005-06-15T19:32:52Z,4348,243,2005-06-16T13:45:52Z,1,2020-02-15T06:59:37Z +1453,2005-06-15T19:36:39Z,3274,457,2005-06-19T00:16:39Z,2,2020-02-15T06:59:37Z +1454,2005-06-15T19:49:41Z,102,298,2005-06-17T15:17:41Z,2,2020-02-15T06:59:37Z +1455,2005-06-15T19:51:06Z,2194,358,2005-06-18T21:54:06Z,2,2020-02-15T06:59:37Z +1456,2005-06-15T20:00:11Z,632,590,2005-06-23T18:03:11Z,2,2020-02-15T06:59:37Z +1457,2005-06-15T20:05:49Z,730,345,2005-06-19T15:35:49Z,1,2020-02-15T06:59:37Z +1458,2005-06-15T20:24:05Z,3546,178,2005-06-21T01:22:05Z,1,2020-02-15T06:59:37Z +1459,2005-06-15T20:25:53Z,1862,218,2005-06-22T23:34:53Z,2,2020-02-15T06:59:37Z +1460,2005-06-15T20:27:02Z,1405,565,2005-06-16T16:21:02Z,1,2020-02-15T06:59:37Z +1461,2005-06-15T20:32:08Z,4479,216,2005-06-23T01:08:08Z,1,2020-02-15T06:59:37Z +1462,2005-06-15T20:37:40Z,653,187,2005-06-18T19:36:40Z,2,2020-02-15T06:59:37Z +1463,2005-06-15T20:37:51Z,2984,569,2005-06-21T16:46:51Z,2,2020-02-15T06:59:37Z +1464,2005-06-15T20:38:14Z,4113,387,2005-06-17T14:52:14Z,2,2020-02-15T06:59:37Z +1465,2005-06-15T20:43:08Z,609,387,2005-06-18T23:00:08Z,1,2020-02-15T06:59:37Z +1466,2005-06-15T20:46:04Z,1057,288,2005-06-24T22:46:04Z,1,2020-02-15T06:59:37Z +1467,2005-06-15T20:47:10Z,688,506,2005-06-22T00:30:10Z,1,2020-02-15T06:59:37Z +1468,2005-06-15T20:48:22Z,228,230,2005-06-21T19:48:22Z,1,2020-02-15T06:59:37Z +1469,2005-06-15T20:52:36Z,2451,580,2005-06-21T19:55:36Z,1,2020-02-15T06:59:37Z +1470,2005-06-15T20:53:07Z,4044,11,2005-06-25T02:12:07Z,1,2020-02-15T06:59:37Z +1471,2005-06-15T20:53:26Z,565,428,2005-06-24T18:25:26Z,2,2020-02-15T06:59:37Z +1472,2005-06-15T20:54:55Z,4233,373,2005-06-24T21:52:55Z,2,2020-02-15T06:59:37Z +1473,2005-06-15T20:55:20Z,2377,249,2005-06-21T16:40:20Z,2,2020-02-15T06:59:37Z +1474,2005-06-15T20:55:42Z,164,202,2005-06-19T02:41:42Z,2,2020-02-15T06:59:37Z +1475,2005-06-15T21:08:01Z,1834,344,2005-06-18T22:33:01Z,2,2020-02-15T06:59:37Z +1476,2005-06-15T21:08:46Z,1407,1,2005-06-25T02:26:46Z,1,2020-02-15T06:59:37Z +1477,2005-06-15T21:11:18Z,418,51,2005-06-19T02:05:18Z,1,2020-02-15T06:59:37Z +1478,2005-06-15T21:12:13Z,435,336,2005-06-18T21:43:13Z,2,2020-02-15T06:59:37Z +1479,2005-06-15T21:13:38Z,172,592,2005-06-17T01:26:38Z,2,2020-02-15T06:59:37Z +1480,2005-06-15T21:17:17Z,2598,27,2005-06-23T22:01:17Z,1,2020-02-15T06:59:37Z +1481,2005-06-15T21:17:58Z,3041,125,2005-06-18T17:53:58Z,2,2020-02-15T06:59:37Z +1482,2005-06-15T21:18:16Z,3980,60,2005-06-16T17:07:16Z,1,2020-02-15T06:59:37Z +1483,2005-06-15T21:21:58Z,1926,242,2005-06-24T00:44:58Z,2,2020-02-15T06:59:37Z +1484,2005-06-15T21:22:35Z,1589,320,2005-06-20T02:27:35Z,2,2020-02-15T06:59:37Z +1485,2005-06-15T21:24:10Z,194,281,2005-06-24T23:03:10Z,1,2020-02-15T06:59:37Z +1486,2005-06-15T21:25:30Z,847,62,2005-06-16T16:36:30Z,1,2020-02-15T06:59:37Z +1487,2005-06-15T21:27:42Z,3791,76,2005-06-22T03:09:42Z,2,2020-02-15T06:59:37Z +1488,2005-06-15T21:39:54Z,1081,355,2005-06-16T20:33:54Z,1,2020-02-15T06:59:37Z +1489,2005-06-15T21:41:38Z,699,213,2005-06-22T17:00:38Z,1,2020-02-15T06:59:37Z +1490,2005-06-15T21:42:17Z,3515,123,2005-06-22T02:01:17Z,2,2020-02-15T06:59:37Z +1491,2005-06-15T21:48:18Z,848,354,2005-06-20T16:40:18Z,1,2020-02-15T06:59:37Z +1492,2005-06-15T21:48:35Z,4148,360,2005-06-17T17:18:35Z,1,2020-02-15T06:59:37Z +1493,2005-06-15T21:50:32Z,4581,235,2005-06-17T01:02:32Z,2,2020-02-15T06:59:37Z +1494,2005-06-15T21:54:20Z,244,575,2005-06-19T18:46:20Z,1,2020-02-15T06:59:37Z +1495,2005-06-15T21:54:31Z,1842,175,2005-06-19T00:08:31Z,2,2020-02-15T06:59:37Z +1496,2005-06-15T21:55:58Z,3915,290,2005-06-17T02:28:58Z,2,2020-02-15T06:59:37Z +1497,2005-06-15T21:56:39Z,2958,44,2005-06-20T20:32:39Z,1,2020-02-15T06:59:37Z +1498,2005-06-15T21:58:00Z,3690,352,2005-06-17T21:50:00Z,1,2020-02-15T06:59:37Z +1499,2005-06-15T21:58:07Z,165,375,2005-06-22T19:37:07Z,2,2020-02-15T06:59:37Z +1500,2005-06-15T22:00:45Z,2652,237,2005-06-18T16:19:45Z,2,2020-02-15T06:59:37Z +1501,2005-06-15T22:02:35Z,1780,148,2005-06-23T18:59:35Z,1,2020-02-15T06:59:37Z +1502,2005-06-15T22:03:14Z,3277,5,2005-06-23T18:42:14Z,2,2020-02-15T06:59:37Z +1503,2005-06-15T22:07:09Z,763,197,2005-06-20T23:15:09Z,1,2020-02-15T06:59:37Z +1504,2005-06-15T22:08:06Z,3621,423,2005-06-24T01:16:06Z,2,2020-02-15T06:59:37Z +1505,2005-06-15T22:12:50Z,2961,561,2005-06-17T21:37:50Z,2,2020-02-15T06:59:37Z +1506,2005-06-15T22:19:37Z,4085,404,2005-06-22T18:28:37Z,1,2020-02-15T06:59:37Z +1507,2005-06-15T22:25:26Z,2514,172,2005-06-19T17:00:26Z,1,2020-02-15T06:59:37Z +1508,2005-06-15T22:33:24Z,1141,511,2005-06-18T02:27:24Z,2,2020-02-15T06:59:37Z +1509,2005-06-15T22:35:53Z,655,167,2005-06-23T17:09:53Z,2,2020-02-15T06:59:37Z +1510,2005-06-15T22:39:34Z,989,338,2005-06-24T19:21:34Z,2,2020-02-15T06:59:37Z +1511,2005-06-15T22:45:06Z,1135,330,2005-06-22T22:48:06Z,1,2020-02-15T06:59:37Z +1512,2005-06-15T22:53:03Z,1628,452,2005-06-23T18:56:03Z,1,2020-02-15T06:59:37Z +1513,2005-06-15T22:53:30Z,1173,368,2005-06-23T01:00:30Z,1,2020-02-15T06:59:37Z +1514,2005-06-15T22:57:34Z,2937,410,2005-06-19T20:27:34Z,1,2020-02-15T06:59:37Z +1515,2005-06-15T23:07:50Z,3244,115,2005-06-20T02:33:50Z,2,2020-02-15T06:59:37Z +1516,2005-06-15T23:11:10Z,3702,530,2005-06-17T20:37:10Z,1,2020-02-15T06:59:37Z +1517,2005-06-15T23:20:26Z,3728,148,2005-06-23T23:23:26Z,1,2020-02-15T06:59:37Z +1518,2005-06-15T23:36:37Z,4537,237,2005-06-16T18:24:37Z,2,2020-02-15T06:59:37Z +1519,2005-06-15T23:55:27Z,1553,155,2005-06-21T04:06:27Z,2,2020-02-15T06:59:37Z +1520,2005-06-15T23:57:20Z,3419,341,2005-06-24T23:46:20Z,1,2020-02-15T06:59:37Z +1521,2005-06-15T23:58:53Z,4299,149,2005-06-18T03:10:53Z,1,2020-02-15T06:59:37Z +1522,2005-06-16T00:17:39Z,235,133,2005-06-22T05:38:39Z,1,2020-02-15T06:59:37Z +1523,2005-06-16T00:18:40Z,681,349,2005-06-17T02:50:40Z,2,2020-02-15T06:59:37Z +1524,2005-06-16T00:25:52Z,3439,177,2005-06-19T03:32:52Z,1,2020-02-15T06:59:37Z +1525,2005-06-16T00:26:07Z,1467,304,2005-06-19T22:37:07Z,2,2020-02-15T06:59:37Z +1526,2005-06-16T00:27:51Z,1940,499,2005-06-19T00:19:51Z,1,2020-02-15T06:59:37Z +1527,2005-06-16T00:31:40Z,296,188,2005-06-21T05:20:40Z,1,2020-02-15T06:59:37Z +1528,2005-06-16T00:32:52Z,4297,110,2005-06-25T01:07:52Z,2,2020-02-15T06:59:37Z +1529,2005-06-16T00:37:35Z,1688,362,2005-06-22T18:58:35Z,2,2020-02-15T06:59:37Z +1530,2005-06-16T00:38:07Z,2421,392,2005-06-24T02:45:07Z,2,2020-02-15T06:59:37Z +1531,2005-06-16T00:40:34Z,1388,515,2005-06-22T02:44:34Z,1,2020-02-15T06:59:37Z +1532,2005-06-16T00:41:31Z,3793,290,2005-06-20T21:36:31Z,1,2020-02-15T06:59:37Z +1533,2005-06-16T00:46:02Z,2452,116,2005-06-17T20:11:02Z,1,2020-02-15T06:59:37Z +1534,2005-06-16T00:49:32Z,3124,42,2005-06-18T02:41:32Z,1,2020-02-15T06:59:37Z +1535,2005-06-16T00:52:04Z,1096,202,2005-06-20T22:47:04Z,2,2020-02-15T06:59:37Z +1536,2005-06-16T00:52:22Z,3248,339,2005-06-17T21:43:22Z,1,2020-02-15T06:59:37Z +1537,2005-06-16T00:52:51Z,4577,594,2005-06-20T19:33:51Z,2,2020-02-15T06:59:37Z +1538,2005-06-16T01:05:50Z,708,430,2005-06-18T19:48:50Z,1,2020-02-15T06:59:37Z +1539,2005-06-16T01:11:25Z,267,390,2005-06-23T03:43:25Z,2,2020-02-15T06:59:37Z +1540,2005-06-16T01:14:56Z,2707,586,2005-06-20T23:31:56Z,2,2020-02-15T06:59:37Z +1541,2005-06-16T01:15:59Z,1911,189,2005-06-22T21:26:59Z,2,2020-02-15T06:59:37Z +1542,2005-06-16T01:20:05Z,1714,182,2005-06-22T03:59:05Z,1,2020-02-15T06:59:37Z +1543,2005-06-16T01:24:08Z,1188,28,2005-06-18T06:24:08Z,2,2020-02-15T06:59:37Z +1544,2005-06-16T01:28:22Z,269,43,2005-06-17T06:57:22Z,2,2020-02-15T06:59:37Z +1545,2005-06-16T01:31:23Z,762,563,2005-06-24T05:50:23Z,1,2020-02-15T06:59:37Z +1546,2005-06-16T01:34:05Z,3913,3,2005-06-24T04:27:05Z,1,2020-02-15T06:59:37Z +1547,2005-06-16T01:42:24Z,2909,343,2005-06-19T01:13:24Z,1,2020-02-15T06:59:37Z +1548,2005-06-16T01:43:33Z,2094,374,2005-06-23T22:04:33Z,2,2020-02-15T06:59:37Z +1549,2005-06-16T01:57:15Z,266,69,2005-06-18T23:30:15Z,1,2020-02-15T06:59:37Z +1550,2005-06-16T01:58:35Z,2003,345,2005-06-18T23:56:35Z,1,2020-02-15T06:59:37Z +1551,2005-06-16T02:01:15Z,4088,268,2005-06-22T07:33:15Z,1,2020-02-15T06:59:37Z +1552,2005-06-16T02:01:37Z,819,518,2005-06-21T00:59:37Z,2,2020-02-15T06:59:37Z +1553,2005-06-16T02:02:44Z,4026,416,2005-06-19T07:50:44Z,1,2020-02-15T06:59:37Z +1554,2005-06-16T02:16:47Z,715,155,2005-06-22T05:15:47Z,1,2020-02-15T06:59:37Z +1555,2005-06-16T02:17:07Z,4168,256,2005-06-22T06:28:07Z,1,2020-02-15T06:59:37Z +1556,2005-06-16T02:19:02Z,533,54,2005-06-17T22:36:02Z,2,2020-02-15T06:59:37Z +1557,2005-06-16T02:28:35Z,2617,439,2005-06-16T22:11:35Z,2,2020-02-15T06:59:37Z +1558,2005-06-16T02:33:53Z,4350,20,2005-06-19T20:50:53Z,2,2020-02-15T06:59:37Z +1559,2005-06-16T02:35:03Z,716,574,2005-06-19T21:22:03Z,1,2020-02-15T06:59:37Z +1560,2005-06-16T02:36:43Z,3418,239,2005-06-24T23:10:43Z,2,2020-02-15T06:59:37Z +1561,2005-06-16T02:41:30Z,2263,431,2005-06-22T05:19:30Z,1,2020-02-15T06:59:37Z +1562,2005-06-16T02:46:27Z,595,395,2005-06-23T00:56:27Z,2,2020-02-15T06:59:37Z +1563,2005-06-16T02:46:28Z,1516,262,2005-06-18T02:37:28Z,1,2020-02-15T06:59:37Z +1564,2005-06-16T02:47:07Z,145,343,2005-06-24T03:12:07Z,1,2020-02-15T06:59:37Z +1565,2005-06-16T03:13:09Z,3833,506,2005-06-16T22:42:09Z,2,2020-02-15T06:59:37Z +1566,2005-06-16T03:13:20Z,3215,174,2005-06-24T01:59:20Z,2,2020-02-15T06:59:37Z +1567,2005-06-16T03:13:30Z,3098,320,2005-06-21T23:56:30Z,1,2020-02-15T06:59:37Z +1568,2005-06-16T03:14:01Z,635,178,2005-06-19T21:17:01Z,2,2020-02-15T06:59:37Z +1569,2005-06-16T03:19:09Z,3927,363,2005-06-18T21:55:09Z,2,2020-02-15T06:59:37Z +1570,2005-06-16T03:21:33Z,3711,82,2005-06-22T22:03:33Z,2,2020-02-15T06:59:37Z +1571,2005-06-16T03:22:00Z,1019,54,2005-06-22T23:27:00Z,1,2020-02-15T06:59:37Z +1572,2005-06-16T03:23:22Z,4179,560,2005-06-20T06:03:22Z,2,2020-02-15T06:59:37Z +1573,2005-06-16T03:31:39Z,4536,371,2005-06-25T04:04:39Z,1,2020-02-15T06:59:37Z +1574,2005-06-16T03:39:56Z,161,305,2005-06-22T05:40:56Z,2,2020-02-15T06:59:37Z +1575,2005-06-16T03:41:38Z,3317,6,2005-06-22T03:01:38Z,2,2020-02-15T06:59:37Z +1576,2005-06-16T03:54:39Z,1014,442,2005-06-24T21:55:39Z,2,2020-02-15T06:59:37Z +1577,2005-06-16T04:03:28Z,367,327,2005-06-24T22:40:28Z,2,2020-02-15T06:59:37Z +1578,2005-06-16T04:08:16Z,3397,365,2005-06-23T07:57:16Z,1,2020-02-15T06:59:37Z +1579,2005-06-16T04:09:08Z,158,35,2005-06-21T05:21:08Z,2,2020-02-15T06:59:37Z +1580,2005-06-16T04:12:25Z,2479,87,2005-06-20T06:53:25Z,1,2020-02-15T06:59:37Z +1581,2005-06-16T04:28:45Z,4004,109,2005-06-18T07:07:45Z,1,2020-02-15T06:59:37Z +1582,2005-06-16T04:31:57Z,163,536,2005-06-22T01:25:57Z,1,2020-02-15T06:59:37Z +1583,2005-06-16T04:44:23Z,270,37,2005-06-18T03:44:23Z,1,2020-02-15T06:59:37Z +1584,2005-06-16T04:50:50Z,3545,434,2005-06-21T22:51:50Z,2,2020-02-15T06:59:37Z +1585,2005-06-16T04:51:13Z,1708,386,2005-06-24T00:23:13Z,2,2020-02-15T06:59:37Z +1586,2005-06-16T04:51:18Z,769,140,2005-06-21T06:54:18Z,2,2020-02-15T06:59:37Z +1587,2005-06-16T04:52:28Z,1781,62,2005-06-23T07:36:28Z,1,2020-02-15T06:59:37Z +1588,2005-06-16T04:53:21Z,4472,322,2005-06-25T07:29:21Z,2,2020-02-15T06:59:37Z +1589,2005-06-16T04:58:03Z,4307,293,2005-06-24T08:36:03Z,1,2020-02-15T06:59:37Z +1590,2005-06-16T05:11:41Z,3685,98,2005-06-23T10:11:41Z,1,2020-02-15T06:59:37Z +1591,2005-06-16T05:12:37Z,1648,83,2005-06-25T06:28:37Z,2,2020-02-15T06:59:37Z +1592,2005-06-16T05:14:37Z,3798,187,2005-06-20T10:52:37Z,2,2020-02-15T06:59:37Z +1593,2005-06-16T05:14:52Z,766,111,2005-06-24T08:00:52Z,2,2020-02-15T06:59:37Z +1594,2005-06-16T05:15:12Z,3858,470,2005-06-25T00:38:12Z,1,2020-02-15T06:59:37Z +1595,2005-06-16T05:23:46Z,1481,244,2005-06-20T00:37:46Z,1,2020-02-15T06:59:37Z +1596,2005-06-16T05:30:58Z,2552,416,2005-06-21T04:18:58Z,2,2020-02-15T06:59:37Z +1597,2005-06-16T05:47:03Z,743,432,2005-06-18T04:21:03Z,1,2020-02-15T06:59:37Z +1598,2005-06-16T06:02:39Z,4171,314,2005-06-23T09:09:39Z,1,2020-02-15T06:59:37Z +1599,2005-06-16T06:03:33Z,1476,215,2005-06-21T07:46:33Z,2,2020-02-15T06:59:37Z +1600,2005-06-16T06:04:12Z,2264,196,2005-06-19T09:39:12Z,2,2020-02-15T06:59:37Z +1601,2005-06-16T06:11:13Z,3115,428,2005-06-21T08:57:13Z,2,2020-02-15T06:59:37Z +1602,2005-06-16T06:12:40Z,1777,441,2005-06-19T03:50:40Z,2,2020-02-15T06:59:37Z +1603,2005-06-16T06:14:03Z,3308,395,2005-06-17T06:04:03Z,2,2020-02-15T06:59:37Z +1604,2005-06-16T06:14:25Z,3226,272,2005-06-17T03:53:25Z,2,2020-02-15T06:59:37Z +1605,2005-06-16T06:17:55Z,593,197,2005-06-25T01:25:55Z,1,2020-02-15T06:59:37Z +1606,2005-06-16T06:18:31Z,4290,253,2005-06-25T09:15:31Z,1,2020-02-15T06:59:37Z +1607,2005-06-16T06:25:35Z,3289,513,2005-06-20T02:50:35Z,2,2020-02-15T06:59:37Z +1608,2005-06-16T06:28:57Z,2581,386,2005-06-24T05:20:57Z,2,2020-02-15T06:59:37Z +1609,2005-06-16T06:34:59Z,2279,174,2005-06-17T09:41:59Z,2,2020-02-15T06:59:37Z +1610,2005-06-16T06:36:33Z,3551,534,2005-06-19T07:12:33Z,1,2020-02-15T06:59:37Z +1611,2005-06-16T06:41:35Z,1739,393,2005-06-25T06:13:35Z,2,2020-02-15T06:59:37Z +1612,2005-06-16T06:52:05Z,3025,355,2005-06-19T01:51:05Z,1,2020-02-15T06:59:37Z +1613,2005-06-16T06:55:10Z,4462,573,2005-06-24T12:08:10Z,1,2020-02-15T06:59:37Z +1614,2005-06-16T06:58:02Z,23,489,2005-06-23T11:24:02Z,1,2020-02-15T06:59:37Z +1615,2005-06-16T07:00:28Z,3894,362,2005-06-25T08:53:28Z,1,2020-02-15T06:59:37Z +1616,2005-06-16T07:04:52Z,2296,204,2005-06-24T04:06:52Z,1,2020-02-15T06:59:37Z +1617,2005-06-16T07:06:06Z,1382,83,2005-06-25T03:35:06Z,1,2020-02-15T06:59:37Z +1618,2005-06-16T07:08:38Z,3741,134,2005-06-25T05:26:38Z,2,2020-02-15T06:59:37Z +1619,2005-06-16T07:14:13Z,4258,232,2005-06-19T05:50:13Z,2,2020-02-15T06:59:37Z +1620,2005-06-16T07:21:30Z,389,561,2005-06-17T09:46:30Z,1,2020-02-15T06:59:37Z +1621,2005-06-16T07:24:12Z,3677,177,2005-06-19T02:35:12Z,1,2020-02-15T06:59:37Z +1622,2005-06-16T07:33:18Z,1774,311,2005-06-21T07:23:18Z,1,2020-02-15T06:59:37Z +1623,2005-06-16T07:48:50Z,4485,378,2005-06-17T03:53:50Z,2,2020-02-15T06:59:37Z +1624,2005-06-16T07:48:57Z,1066,314,2005-06-17T05:52:57Z,1,2020-02-15T06:59:37Z +1625,2005-06-16T07:49:08Z,3367,39,2005-06-24T09:08:08Z,2,2020-02-15T06:59:37Z +1626,2005-06-16T07:49:47Z,694,260,2005-06-22T13:32:47Z,2,2020-02-15T06:59:37Z +1627,2005-06-16T07:51:09Z,4135,468,2005-06-24T02:24:09Z,1,2020-02-15T06:59:37Z +1628,2005-06-16T07:52:55Z,868,427,2005-06-25T11:09:55Z,1,2020-02-15T06:59:37Z +1629,2005-06-16T07:53:47Z,4375,339,2005-06-22T13:03:47Z,1,2020-02-15T06:59:37Z +1630,2005-06-16T07:55:01Z,2413,130,2005-06-19T06:38:01Z,1,2020-02-15T06:59:37Z +1631,2005-06-16T08:01:02Z,2466,5,2005-06-19T09:04:02Z,1,2020-02-15T06:59:37Z +1632,2005-06-16T08:03:42Z,1518,319,2005-06-17T03:40:42Z,1,2020-02-15T06:59:37Z +1633,2005-06-16T08:08:40Z,280,4,2005-06-17T11:12:40Z,1,2020-02-15T06:59:37Z +1634,2005-06-16T08:16:05Z,3990,121,2005-06-17T04:49:05Z,1,2020-02-15T06:59:37Z +1635,2005-06-16T08:26:56Z,1187,566,2005-06-25T06:17:56Z,2,2020-02-15T06:59:37Z +1636,2005-06-16T08:28:54Z,2052,574,2005-06-24T09:23:54Z,1,2020-02-15T06:59:37Z +1637,2005-06-16T08:29:58Z,906,212,2005-06-23T04:55:58Z,2,2020-02-15T06:59:37Z +1638,2005-06-16T08:32:36Z,1905,181,2005-06-18T07:11:36Z,2,2020-02-15T06:59:37Z +1639,2005-06-16T08:33:39Z,176,450,2005-06-25T07:51:39Z,1,2020-02-15T06:59:37Z +1640,2005-06-16T08:35:39Z,443,86,2005-06-17T05:37:39Z,2,2020-02-15T06:59:37Z +1641,2005-06-16T08:46:26Z,2925,259,2005-06-24T14:39:26Z,2,2020-02-15T06:59:37Z +1642,2005-06-16T08:54:15Z,3875,287,2005-06-18T12:36:15Z,1,2020-02-15T06:59:37Z +1643,2005-06-16T08:55:35Z,1352,484,2005-06-21T05:36:35Z,2,2020-02-15T06:59:37Z +1644,2005-06-16T08:58:18Z,749,596,2005-06-21T06:47:18Z,1,2020-02-15T06:59:37Z +1645,2005-06-16T09:10:06Z,4434,234,2005-06-23T04:36:06Z,2,2020-02-15T06:59:37Z +1646,2005-06-16T09:12:53Z,4037,131,2005-06-24T08:03:53Z,2,2020-02-15T06:59:37Z +1647,2005-06-16T09:14:58Z,1936,454,2005-06-17T10:46:58Z,1,2020-02-15T06:59:37Z +1648,2005-06-16T09:17:07Z,457,427,2005-06-24T06:31:07Z,2,2020-02-15T06:59:37Z +1649,2005-06-16T09:20:33Z,390,352,2005-06-18T13:42:33Z,1,2020-02-15T06:59:37Z +1650,2005-06-16T09:23:20Z,4125,299,2005-06-23T11:25:20Z,1,2020-02-15T06:59:37Z +1651,2005-06-16T09:24:38Z,4444,524,2005-06-17T09:50:38Z,2,2020-02-15T06:59:37Z +1652,2005-06-16T09:31:37Z,3416,533,2005-06-19T14:02:37Z,2,2020-02-15T06:59:37Z +1653,2005-06-16T09:34:45Z,2294,517,2005-06-18T09:13:45Z,1,2020-02-15T06:59:37Z +1654,2005-06-16T09:42:48Z,1039,348,2005-06-20T14:28:48Z,2,2020-02-15T06:59:37Z +1655,2005-06-16T09:51:39Z,3693,488,2005-06-23T14:53:39Z,2,2020-02-15T06:59:37Z +1656,2005-06-16T10:05:40Z,2253,31,2005-06-22T06:26:40Z,1,2020-02-15T06:59:37Z +1657,2005-06-16T10:06:49Z,953,209,2005-06-22T10:34:49Z,2,2020-02-15T06:59:37Z +1658,2005-06-16T10:07:10Z,272,568,2005-06-21T09:23:10Z,2,2020-02-15T06:59:37Z +1659,2005-06-16T10:11:46Z,1182,296,2005-06-20T13:51:46Z,1,2020-02-15T06:59:37Z +1660,2005-06-16T10:12:55Z,2374,238,2005-06-18T05:56:55Z,2,2020-02-15T06:59:37Z +1661,2005-06-16T10:12:57Z,2403,508,2005-06-24T09:23:57Z,2,2020-02-15T06:59:37Z +1662,2005-06-16T10:13:35Z,3552,378,2005-06-23T13:54:35Z,1,2020-02-15T06:59:37Z +1663,2005-06-16T10:14:15Z,1558,186,2005-06-23T08:34:15Z,2,2020-02-15T06:59:37Z +1664,2005-06-16T10:15:20Z,2464,216,2005-06-18T12:11:20Z,2,2020-02-15T06:59:37Z +1665,2005-06-16T10:16:02Z,2613,490,2005-06-23T09:32:02Z,1,2020-02-15T06:59:37Z +1666,2005-06-16T10:17:19Z,4019,557,2005-06-21T05:50:19Z,1,2020-02-15T06:59:37Z +1667,2005-06-16T10:18:59Z,2362,333,2005-06-22T14:45:59Z,2,2020-02-15T06:59:37Z +1668,2005-06-16T10:19:52Z,2483,569,2005-06-23T12:22:52Z,2,2020-02-15T06:59:37Z +1669,2005-06-16T10:20:20Z,360,73,2005-06-18T04:26:20Z,1,2020-02-15T06:59:37Z +1670,2005-06-16T10:26:33Z,2066,328,2005-06-19T07:15:33Z,1,2020-02-15T06:59:37Z +1671,2005-06-16T10:30:22Z,3805,135,2005-06-22T11:08:22Z,2,2020-02-15T06:59:37Z +1672,2005-06-16T10:37:34Z,4206,216,2005-06-23T05:30:34Z,1,2020-02-15T06:59:37Z +1673,2005-06-16T10:40:17Z,907,534,2005-06-18T16:13:17Z,1,2020-02-15T06:59:37Z +1674,2005-06-16T10:57:00Z,3606,234,2005-06-18T07:31:00Z,2,2020-02-15T06:59:37Z +1675,2005-06-16T11:04:47Z,3048,371,2005-06-24T06:56:47Z,2,2020-02-15T06:59:37Z +1676,2005-06-16T11:06:09Z,931,171,2005-06-21T05:17:09Z,1,2020-02-15T06:59:37Z +1677,2005-06-16T11:07:11Z,240,191,2005-06-23T10:50:11Z,1,2020-02-15T06:59:37Z +1678,2005-06-16T11:08:28Z,1856,352,2005-06-19T15:44:28Z,1,2020-02-15T06:59:37Z +1679,2005-06-16T11:11:01Z,3959,227,2005-06-23T08:11:01Z,1,2020-02-15T06:59:37Z +1680,2005-06-16T11:17:22Z,4441,469,2005-06-25T15:55:22Z,2,2020-02-15T06:59:37Z +1681,2005-06-16T11:38:17Z,530,255,2005-06-19T13:05:17Z,1,2020-02-15T06:59:37Z +1682,2005-06-16T11:54:25Z,2165,476,2005-06-22T11:09:25Z,2,2020-02-15T06:59:37Z +1683,2005-06-16T11:54:55Z,2361,494,2005-06-18T08:51:55Z,2,2020-02-15T06:59:37Z +1684,2005-06-16T11:57:34Z,806,485,2005-06-19T09:12:34Z,1,2020-02-15T06:59:37Z +1685,2005-06-16T12:06:57Z,2754,85,2005-06-21T16:53:57Z,2,2020-02-15T06:59:37Z +1686,2005-06-16T12:08:20Z,3883,529,2005-06-20T10:59:20Z,1,2020-02-15T06:59:37Z +1687,2005-06-16T12:09:20Z,3686,140,2005-06-18T06:18:20Z,2,2020-02-15T06:59:37Z +1688,2005-06-16T12:11:20Z,383,49,2005-06-18T08:39:20Z,2,2020-02-15T06:59:37Z +1689,2005-06-16T12:18:41Z,4036,48,2005-06-24T13:33:41Z,2,2020-02-15T06:59:37Z +1690,2005-06-16T12:24:18Z,1099,286,2005-06-25T15:00:18Z,1,2020-02-15T06:59:37Z +1691,2005-06-16T12:24:28Z,4438,492,2005-06-24T08:24:28Z,1,2020-02-15T06:59:37Z +1692,2005-06-16T12:30:19Z,3544,514,2005-06-17T17:31:19Z,2,2020-02-15T06:59:37Z +1693,2005-06-16T12:39:51Z,2386,421,2005-06-19T16:19:51Z,2,2020-02-15T06:59:37Z +1694,2005-06-16T12:40:23Z,147,532,2005-06-20T09:18:23Z,2,2020-02-15T06:59:37Z +1695,2005-06-16T12:40:28Z,4436,159,2005-06-22T13:41:28Z,1,2020-02-15T06:59:37Z +1696,2005-06-16T12:50:01Z,3928,502,2005-06-24T12:08:01Z,2,2020-02-15T06:59:37Z +1697,2005-06-16T12:55:20Z,1801,340,2005-06-23T17:41:20Z,2,2020-02-15T06:59:37Z +1698,2005-06-16T13:04:42Z,1474,407,2005-06-21T15:54:42Z,1,2020-02-15T06:59:37Z +1699,2005-06-16T13:05:09Z,4507,27,2005-06-17T09:53:09Z,2,2020-02-15T06:59:37Z +1700,2005-06-16T13:18:23Z,4251,456,2005-06-21T16:46:23Z,2,2020-02-15T06:59:37Z +1701,2005-06-16T13:18:48Z,3000,315,2005-06-22T15:00:48Z,1,2020-02-15T06:59:37Z +1702,2005-06-16T13:21:05Z,1822,242,2005-06-19T10:13:05Z,2,2020-02-15T06:59:37Z +1703,2005-06-16T13:28:44Z,2346,589,2005-06-17T11:03:44Z,1,2020-02-15T06:59:37Z +1704,2005-06-16T13:45:56Z,4425,488,2005-06-24T18:12:56Z,1,2020-02-15T06:59:37Z +1705,2005-06-16T13:59:42Z,123,564,2005-06-18T19:54:42Z,2,2020-02-15T06:59:37Z +1706,2005-06-16T14:01:02Z,2935,26,2005-06-25T19:29:02Z,1,2020-02-15T06:59:37Z +1707,2005-06-16T14:01:27Z,185,4,2005-06-18T09:35:27Z,1,2020-02-15T06:59:37Z +1708,2005-06-16T14:08:44Z,2259,478,2005-06-19T08:35:44Z,1,2020-02-15T06:59:37Z +1709,2005-06-16T14:10:15Z,3501,426,2005-06-24T16:38:15Z,2,2020-02-15T06:59:37Z +1710,2005-06-16T14:11:24Z,144,77,2005-06-22T15:26:24Z,1,2020-02-15T06:59:37Z +1711,2005-06-16T14:11:52Z,273,347,2005-06-25T08:49:52Z,1,2020-02-15T06:59:37Z +1712,2005-06-16T14:25:09Z,1363,535,2005-06-17T17:55:09Z,1,2020-02-15T06:59:37Z +1713,2005-06-16T14:28:33Z,2580,164,2005-06-18T09:02:33Z,1,2020-02-15T06:59:37Z +1714,2005-06-16T14:29:59Z,535,477,2005-06-24T17:27:59Z,2,2020-02-15T06:59:37Z +1715,2005-06-16T14:37:12Z,1594,203,2005-06-20T19:36:12Z,1,2020-02-15T06:59:37Z +1716,2005-06-16T14:39:31Z,20,24,2005-06-19T15:37:31Z,1,2020-02-15T06:59:37Z +1717,2005-06-16T14:47:16Z,3007,277,2005-06-19T10:11:16Z,2,2020-02-15T06:59:37Z +1718,2005-06-16T14:52:02Z,288,516,2005-06-25T10:53:02Z,2,2020-02-15T06:59:37Z +1719,2005-06-16T14:55:53Z,2699,582,2005-06-18T14:12:53Z,1,2020-02-15T06:59:37Z +1720,2005-06-16T15:00:14Z,3500,543,2005-06-21T13:57:14Z,2,2020-02-15T06:59:37Z +1721,2005-06-16T15:01:36Z,3521,485,2005-06-23T10:48:36Z,1,2020-02-15T06:59:37Z +1722,2005-06-16T15:12:52Z,2142,364,2005-06-19T13:01:52Z,2,2020-02-15T06:59:37Z +1723,2005-06-16T15:14:18Z,2417,259,2005-06-23T15:45:18Z,2,2020-02-15T06:59:37Z +1724,2005-06-16T15:15:43Z,61,146,2005-06-23T10:14:43Z,2,2020-02-15T06:59:37Z +1725,2005-06-16T15:18:57Z,726,1,2005-06-17T21:05:57Z,1,2020-02-15T06:59:37Z +1726,2005-06-16T15:19:10Z,116,3,2005-06-25T11:39:10Z,2,2020-02-15T06:59:37Z +1727,2005-06-16T15:21:47Z,2951,457,2005-06-17T14:12:47Z,1,2020-02-15T06:59:37Z +1728,2005-06-16T15:29:29Z,1366,59,2005-06-23T12:47:29Z,1,2020-02-15T06:59:37Z +1729,2005-06-16T15:29:47Z,3364,523,2005-06-25T20:55:47Z,2,2020-02-15T06:59:37Z +1730,2005-06-16T15:30:01Z,1372,390,2005-06-19T12:56:01Z,1,2020-02-15T06:59:37Z +1731,2005-06-16T15:32:12Z,3698,344,2005-06-19T18:58:12Z,2,2020-02-15T06:59:37Z +1732,2005-06-16T15:34:41Z,2287,129,2005-06-18T13:05:41Z,1,2020-02-15T06:59:37Z +1733,2005-06-16T15:37:07Z,542,480,2005-06-23T15:53:07Z,2,2020-02-15T06:59:37Z +1734,2005-06-16T15:49:30Z,1113,94,2005-06-22T13:52:30Z,2,2020-02-15T06:59:37Z +1735,2005-06-16T15:51:52Z,97,4,2005-06-20T13:27:52Z,1,2020-02-15T06:59:37Z +1736,2005-06-16T15:52:32Z,3771,139,2005-06-21T14:39:32Z,2,2020-02-15T06:59:37Z +1737,2005-06-16T15:59:44Z,4029,467,2005-06-23T12:22:44Z,1,2020-02-15T06:59:37Z +1738,2005-06-16T16:07:27Z,3260,177,2005-06-20T15:22:27Z,1,2020-02-15T06:59:37Z +1739,2005-06-16T16:09:38Z,2557,450,2005-06-22T18:04:38Z,2,2020-02-15T06:59:37Z +1740,2005-06-16T16:29:00Z,2282,324,2005-06-20T14:07:00Z,2,2020-02-15T06:59:37Z +1741,2005-06-16T16:31:37Z,3722,176,2005-06-25T21:38:37Z,1,2020-02-15T06:59:37Z +1742,2005-06-16T16:37:48Z,2772,576,2005-06-17T19:47:48Z,2,2020-02-15T06:59:37Z +1743,2005-06-16T16:38:10Z,2777,258,2005-06-17T13:13:10Z,1,2020-02-15T06:59:37Z +1744,2005-06-16T16:39:58Z,3075,230,2005-06-18T19:50:58Z,2,2020-02-15T06:59:37Z +1745,2005-06-16T16:41:16Z,2812,178,2005-06-23T21:02:16Z,2,2020-02-15T06:59:37Z +1746,2005-06-16T16:41:19Z,4272,385,2005-06-19T11:28:19Z,2,2020-02-15T06:59:37Z +1747,2005-06-16T16:53:33Z,1661,273,2005-06-25T21:48:33Z,2,2020-02-15T06:59:37Z +1748,2005-06-16T16:54:03Z,2434,473,2005-06-18T20:11:03Z,1,2020-02-15T06:59:37Z +1749,2005-06-16T16:56:00Z,1554,283,2005-06-21T21:02:00Z,2,2020-02-15T06:59:37Z +1750,2005-06-16T16:57:36Z,1103,321,2005-06-25T21:51:36Z,1,2020-02-15T06:59:37Z +1751,2005-06-16T17:00:14Z,138,123,2005-06-17T12:12:14Z,2,2020-02-15T06:59:37Z +1752,2005-06-16T17:02:55Z,3529,12,2005-06-23T19:09:55Z,2,2020-02-15T06:59:37Z +1753,2005-06-16T17:08:17Z,3817,249,2005-06-21T21:47:17Z,2,2020-02-15T06:59:37Z +1754,2005-06-16T17:13:23Z,4106,25,2005-06-22T20:46:23Z,1,2020-02-15T06:59:37Z +1755,2005-06-16T17:18:44Z,1721,117,2005-06-17T16:54:44Z,1,2020-02-15T06:59:37Z +1756,2005-06-16T17:22:33Z,1401,571,2005-06-21T16:52:33Z,1,2020-02-15T06:59:37Z +1757,2005-06-16T17:32:24Z,4491,510,2005-06-18T13:12:24Z,1,2020-02-15T06:59:37Z +1758,2005-06-16T17:39:39Z,2654,474,2005-06-25T13:06:39Z,1,2020-02-15T06:59:37Z +1759,2005-06-16T17:46:37Z,1402,430,2005-06-24T19:40:37Z,2,2020-02-15T06:59:37Z +1760,2005-06-16T17:48:37Z,3929,261,2005-06-18T16:01:37Z,2,2020-02-15T06:59:37Z +1761,2005-06-16T17:49:57Z,1570,521,2005-06-17T21:03:57Z,2,2020-02-15T06:59:37Z +1762,2005-06-16T17:50:19Z,3050,116,2005-06-19T21:35:19Z,2,2020-02-15T06:59:37Z +1763,2005-06-16T17:51:01Z,1941,389,2005-06-20T17:27:01Z,1,2020-02-15T06:59:37Z +1764,2005-06-16T17:51:54Z,705,392,2005-06-21T20:36:54Z,2,2020-02-15T06:59:37Z +1765,2005-06-16T17:56:10Z,822,273,2005-06-19T23:40:10Z,2,2020-02-15T06:59:37Z +1766,2005-06-16T17:59:37Z,2041,118,2005-06-18T16:32:37Z,2,2020-02-15T06:59:37Z +1767,2005-06-16T18:01:36Z,1162,205,2005-06-18T12:39:36Z,2,2020-02-15T06:59:37Z +1768,2005-06-16T18:02:06Z,2131,131,2005-06-23T17:19:06Z,2,2020-02-15T06:59:37Z +1769,2005-06-16T18:07:48Z,1229,397,2005-06-22T12:39:48Z,1,2020-02-15T06:59:37Z +1770,2005-06-16T18:07:55Z,1681,359,2005-06-23T23:49:55Z,2,2020-02-15T06:59:37Z +1771,2005-06-16T18:12:17Z,1769,416,2005-06-18T16:11:17Z,1,2020-02-15T06:59:37Z +1772,2005-06-16T18:12:54Z,1269,525,2005-06-24T19:55:54Z,1,2020-02-15T06:59:37Z +1773,2005-06-16T18:13:43Z,4396,462,2005-06-24T17:43:43Z,2,2020-02-15T06:59:37Z +1774,2005-06-16T18:27:52Z,3058,442,2005-06-21T13:35:52Z,2,2020-02-15T06:59:37Z +1775,2005-06-16T18:28:19Z,1922,123,2005-06-25T13:09:19Z,2,2020-02-15T06:59:37Z +1776,2005-06-16T18:46:58Z,1404,472,2005-06-24T16:01:58Z,1,2020-02-15T06:59:37Z +1777,2005-06-16T18:52:12Z,3325,49,2005-06-25T13:55:12Z,1,2020-02-15T06:59:37Z +1778,2005-06-16T18:54:48Z,2512,341,2005-06-22T16:08:48Z,2,2020-02-15T06:59:37Z +1779,2005-06-16T18:55:11Z,1044,438,2005-06-17T20:11:11Z,1,2020-02-15T06:59:37Z +1780,2005-06-16T19:11:45Z,146,352,2005-06-19T15:34:45Z,2,2020-02-15T06:59:37Z +1781,2005-06-16T19:20:24Z,2841,429,2005-06-25T17:02:24Z,2,2020-02-15T06:59:37Z +1782,2005-06-16T19:21:12Z,1820,498,2005-06-22T16:03:12Z,2,2020-02-15T06:59:37Z +1783,2005-06-16T19:23:23Z,50,18,2005-06-18T00:57:23Z,1,2020-02-15T06:59:37Z +1784,2005-06-16T19:25:32Z,3792,134,2005-06-20T00:00:32Z,2,2020-02-15T06:59:37Z +1785,2005-06-16T19:27:12Z,3413,50,2005-06-24T19:25:12Z,1,2020-02-15T06:59:37Z +1786,2005-06-16T19:30:54Z,263,323,2005-06-19T14:24:54Z,1,2020-02-15T06:59:37Z +1787,2005-06-16T19:30:59Z,3823,546,2005-06-21T18:25:59Z,2,2020-02-15T06:59:37Z +1788,2005-06-16T19:47:18Z,3794,357,2005-06-22T23:10:18Z,1,2020-02-15T06:59:37Z +1789,2005-06-16T19:49:18Z,4264,105,2005-06-23T17:07:18Z,2,2020-02-15T06:59:37Z +1790,2005-06-16T19:58:40Z,1070,158,2005-06-17T19:31:40Z,2,2020-02-15T06:59:37Z +1791,2005-06-16T20:04:28Z,301,76,2005-06-23T22:30:28Z,1,2020-02-15T06:59:37Z +1792,2005-06-16T20:04:50Z,3800,351,2005-06-26T00:57:50Z,1,2020-02-15T06:59:37Z +1793,2005-06-16T20:07:27Z,4356,230,2005-06-19T20:55:27Z,1,2020-02-15T06:59:37Z +1794,2005-06-16T20:08:37Z,497,452,2005-06-22T01:54:37Z,1,2020-02-15T06:59:37Z +1795,2005-06-16T20:09:01Z,536,56,2005-06-24T17:50:01Z,2,2020-02-15T06:59:37Z +1796,2005-06-16T20:10:43Z,3229,283,2005-06-20T19:12:43Z,1,2020-02-15T06:59:37Z +1797,2005-06-16T20:13:03Z,3435,275,2005-06-22T22:56:03Z,1,2020-02-15T06:59:37Z +1798,2005-06-16T20:16:15Z,1654,429,2005-06-20T22:23:15Z,2,2020-02-15T06:59:37Z +1799,2005-06-16T20:17:20Z,2847,505,2005-06-20T23:55:20Z,1,2020-02-15T06:59:37Z +1800,2005-06-16T20:18:46Z,2058,149,2005-06-20T17:12:46Z,1,2020-02-15T06:59:37Z +1801,2005-06-16T20:21:53Z,1015,10,2005-06-18T23:18:53Z,1,2020-02-15T06:59:37Z +1802,2005-06-16T20:23:30Z,4174,455,2005-06-21T20:02:30Z,1,2020-02-15T06:59:37Z +1803,2005-06-16T20:32:47Z,3784,127,2005-06-21T02:03:47Z,1,2020-02-15T06:59:37Z +1804,2005-06-16T20:33:15Z,1152,570,2005-06-18T02:31:15Z,2,2020-02-15T06:59:37Z +1805,2005-06-16T20:36:00Z,3962,208,2005-06-17T16:27:00Z,1,2020-02-15T06:59:37Z +1806,2005-06-16T20:41:57Z,2053,45,2005-06-18T19:25:57Z,2,2020-02-15T06:59:37Z +1807,2005-06-16T20:58:59Z,1174,338,2005-06-20T21:31:59Z,2,2020-02-15T06:59:37Z +1808,2005-06-16T20:59:35Z,2424,466,2005-06-24T15:31:35Z,1,2020-02-15T06:59:37Z +1809,2005-06-16T21:00:20Z,1071,517,2005-06-25T20:25:20Z,1,2020-02-15T06:59:37Z +1810,2005-06-16T21:06:00Z,2368,7,2005-06-21T21:24:00Z,1,2020-02-15T06:59:37Z +1811,2005-06-16T21:06:20Z,3700,235,2005-06-21T21:59:20Z,2,2020-02-15T06:59:37Z +1812,2005-06-16T21:08:46Z,751,37,2005-06-21T15:44:46Z,2,2020-02-15T06:59:37Z +1813,2005-06-16T21:11:00Z,1236,259,2005-06-24T15:30:00Z,1,2020-02-15T06:59:37Z +1814,2005-06-16T21:15:22Z,39,144,2005-06-23T17:00:22Z,1,2020-02-15T06:59:37Z +1815,2005-06-16T21:16:07Z,1551,84,2005-06-17T16:37:07Z,2,2020-02-15T06:59:37Z +1816,2005-06-16T21:20:41Z,2861,594,2005-06-18T02:21:41Z,1,2020-02-15T06:59:37Z +1817,2005-06-16T21:20:52Z,1354,574,2005-06-19T16:24:52Z,2,2020-02-15T06:59:37Z +1818,2005-06-16T21:30:34Z,1218,63,2005-06-20T03:27:34Z,2,2020-02-15T06:59:37Z +1819,2005-06-16T21:32:50Z,1689,386,2005-06-26T01:11:50Z,1,2020-02-15T06:59:37Z +1820,2005-06-16T21:34:50Z,3672,120,2005-06-20T16:50:50Z,1,2020-02-15T06:59:37Z +1821,2005-06-16T21:42:49Z,3207,468,2005-06-20T16:25:49Z,2,2020-02-15T06:59:37Z +1822,2005-06-16T21:43:45Z,674,86,2005-06-17T21:37:45Z,1,2020-02-15T06:59:37Z +1823,2005-06-16T21:48:16Z,3871,448,2005-06-22T03:09:16Z,1,2020-02-15T06:59:37Z +1824,2005-06-16T21:51:04Z,2269,575,2005-06-18T18:12:04Z,1,2020-02-15T06:59:37Z +1825,2005-06-16T21:53:05Z,2908,55,2005-06-20T17:22:05Z,2,2020-02-15T06:59:37Z +1826,2005-06-16T21:53:52Z,421,578,2005-06-25T18:46:52Z,2,2020-02-15T06:59:37Z +1827,2005-06-16T21:54:40Z,3804,423,2005-06-19T21:28:40Z,2,2020-02-15T06:59:37Z +1828,2005-06-16T22:04:34Z,316,68,2005-06-20T21:07:34Z,2,2020-02-15T06:59:37Z +1829,2005-06-16T22:14:21Z,617,293,2005-06-21T16:51:21Z,1,2020-02-15T06:59:37Z +1830,2005-06-16T22:18:43Z,4010,499,2005-06-23T21:14:43Z,2,2020-02-15T06:59:37Z +1831,2005-06-16T22:22:17Z,2610,383,2005-06-25T23:23:17Z,2,2020-02-15T06:59:37Z +1832,2005-06-16T22:35:20Z,500,220,2005-06-19T03:09:20Z,1,2020-02-15T06:59:37Z +1833,2005-06-16T22:45:03Z,1337,121,2005-06-20T22:02:03Z,2,2020-02-15T06:59:37Z +1834,2005-06-16T22:49:08Z,4018,189,2005-06-22T21:08:08Z,1,2020-02-15T06:59:37Z +1835,2005-06-16T23:05:36Z,1482,112,2005-06-19T04:46:36Z,1,2020-02-15T06:59:37Z +1836,2005-06-16T23:13:05Z,2753,176,2005-06-24T01:40:05Z,2,2020-02-15T06:59:37Z +1837,2005-06-16T23:16:15Z,1259,309,2005-06-21T21:54:15Z,1,2020-02-15T06:59:37Z +1838,2005-06-16T23:20:16Z,513,31,2005-06-20T02:34:16Z,1,2020-02-15T06:59:37Z +1839,2005-06-16T23:22:22Z,2750,223,2005-06-23T00:33:22Z,1,2020-02-15T06:59:37Z +1840,2005-06-16T23:39:34Z,340,404,2005-06-21T23:36:34Z,1,2020-02-15T06:59:37Z +1841,2005-06-16T23:44:13Z,2363,6,2005-06-22T04:09:13Z,1,2020-02-15T06:59:37Z +1842,2005-06-16T23:45:59Z,1472,426,2005-06-26T05:31:59Z,1,2020-02-15T06:59:37Z +1843,2005-06-16T23:53:42Z,2714,132,2005-06-22T18:33:42Z,2,2020-02-15T06:59:37Z +1844,2005-06-16T23:53:53Z,2307,454,2005-06-22T02:19:53Z,2,2020-02-15T06:59:37Z +1845,2005-06-16T23:56:11Z,3395,215,2005-06-19T01:41:11Z,2,2020-02-15T06:59:37Z +1846,2005-06-17T00:02:44Z,1725,422,2005-06-18T23:47:44Z,2,2020-02-15T06:59:37Z +1847,2005-06-17T00:05:22Z,1189,363,2005-06-20T21:09:22Z,1,2020-02-15T06:59:37Z +1848,2005-06-17T00:07:07Z,3797,526,2005-06-21T21:41:07Z,2,2020-02-15T06:59:37Z +1849,2005-06-17T00:13:19Z,2507,341,2005-06-23T18:37:19Z,2,2020-02-15T06:59:37Z +1850,2005-06-17T00:31:35Z,761,517,2005-06-25T05:19:35Z,1,2020-02-15T06:59:37Z +1851,2005-06-17T00:32:26Z,1121,451,2005-06-22T19:54:26Z,2,2020-02-15T06:59:37Z +1852,2005-06-17T00:38:20Z,4122,271,2005-06-22T20:04:20Z,2,2020-02-15T06:59:37Z +1853,2005-06-17T00:39:54Z,2949,301,2005-06-19T00:22:54Z,2,2020-02-15T06:59:37Z +1854,2005-06-17T00:43:57Z,119,37,2005-06-23T05:49:57Z,1,2020-02-15T06:59:37Z +1855,2005-06-17T00:54:58Z,4457,492,2005-06-20T19:29:58Z,1,2020-02-15T06:59:37Z +1856,2005-06-17T01:02:00Z,3034,161,2005-06-19T21:29:00Z,2,2020-02-15T06:59:37Z +1857,2005-06-17T01:12:58Z,4257,427,2005-06-21T04:49:58Z,1,2020-02-15T06:59:37Z +1858,2005-06-17T01:13:11Z,3200,99,2005-06-18T21:33:11Z,2,2020-02-15T06:59:37Z +1859,2005-06-17T01:13:38Z,3405,533,2005-06-18T03:13:38Z,1,2020-02-15T06:59:37Z +1860,2005-06-17T01:17:12Z,1853,293,2005-06-21T22:35:12Z,1,2020-02-15T06:59:37Z +1861,2005-06-17T01:17:31Z,135,454,2005-06-25T02:11:31Z,1,2020-02-15T06:59:37Z +1862,2005-06-17T01:29:30Z,3299,553,2005-06-25T20:43:30Z,1,2020-02-15T06:59:37Z +1863,2005-06-17T01:31:46Z,4466,550,2005-06-26T02:09:46Z,2,2020-02-15T06:59:37Z +1864,2005-06-17T01:39:47Z,1815,130,2005-06-24T19:39:47Z,2,2020-02-15T06:59:37Z +1865,2005-06-17T01:49:36Z,2657,526,2005-06-23T21:13:36Z,1,2020-02-15T06:59:37Z +1866,2005-06-17T01:53:19Z,2579,575,2005-06-19T06:14:19Z,2,2020-02-15T06:59:37Z +1867,2005-06-17T02:01:37Z,3537,415,2005-06-25T04:52:37Z,2,2020-02-15T06:59:37Z +1868,2005-06-17T02:03:22Z,2412,380,2005-06-25T04:38:22Z,1,2020-02-15T06:59:37Z +1869,2005-06-17T02:08:00Z,871,351,2005-06-19T21:43:00Z,1,2020-02-15T06:59:37Z +1870,2005-06-17T02:24:36Z,895,191,2005-06-17T23:04:36Z,2,2020-02-15T06:59:37Z +1871,2005-06-17T02:25:12Z,481,204,2005-06-23T03:16:12Z,2,2020-02-15T06:59:37Z +1872,2005-06-17T02:27:03Z,3596,206,2005-06-20T22:41:03Z,2,2020-02-15T06:59:37Z +1873,2005-06-17T02:38:28Z,2933,71,2005-06-23T04:39:28Z,1,2020-02-15T06:59:37Z +1874,2005-06-17T02:39:20Z,3884,30,2005-06-24T04:41:20Z,2,2020-02-15T06:59:37Z +1875,2005-06-17T02:45:10Z,1652,528,2005-06-22T22:54:10Z,2,2020-02-15T06:59:37Z +1876,2005-06-17T02:50:51Z,384,459,2005-06-18T07:21:51Z,1,2020-02-15T06:59:37Z +1877,2005-06-17T02:54:16Z,3404,261,2005-06-25T21:51:16Z,2,2020-02-15T06:59:37Z +1878,2005-06-17T02:55:32Z,3319,381,2005-06-21T03:44:32Z,1,2020-02-15T06:59:37Z +1879,2005-06-17T02:57:34Z,3983,343,2005-06-19T00:00:34Z,1,2020-02-15T06:59:37Z +1880,2005-06-17T03:08:59Z,1133,289,2005-06-19T07:16:59Z,1,2020-02-15T06:59:37Z +1881,2005-06-17T03:09:56Z,159,134,2005-06-18T01:49:56Z,1,2020-02-15T06:59:37Z +1882,2005-06-17T03:17:21Z,1400,47,2005-06-19T22:23:21Z,2,2020-02-15T06:59:37Z +1883,2005-06-17T03:18:51Z,3504,550,2005-06-18T05:46:51Z,1,2020-02-15T06:59:37Z +1884,2005-06-17T03:19:20Z,4567,305,2005-06-21T00:19:20Z,1,2020-02-15T06:59:37Z +1885,2005-06-17T03:35:59Z,740,588,2005-06-21T05:57:59Z,2,2020-02-15T06:59:37Z +1886,2005-06-17T03:36:02Z,2367,505,2005-06-19T08:12:02Z,2,2020-02-15T06:59:37Z +1887,2005-06-17T03:53:18Z,3591,32,2005-06-25T07:37:18Z,2,2020-02-15T06:59:37Z +1888,2005-06-17T03:58:36Z,2872,405,2005-06-22T09:28:36Z,1,2020-02-15T06:59:37Z +1889,2005-06-17T04:05:12Z,3909,572,2005-06-26T04:13:12Z,1,2020-02-15T06:59:37Z +1890,2005-06-17T04:06:13Z,1764,447,2005-06-22T07:46:13Z,2,2020-02-15T06:59:37Z +1891,2005-06-17T04:16:44Z,3576,109,2005-06-24T07:20:44Z,1,2020-02-15T06:59:37Z +1892,2005-06-17T04:17:33Z,139,319,2005-06-20T00:06:33Z,1,2020-02-15T06:59:37Z +1893,2005-06-17T04:18:37Z,3346,390,2005-06-23T23:35:37Z,2,2020-02-15T06:59:37Z +1894,2005-06-17T04:18:48Z,3707,204,2005-06-26T00:07:48Z,1,2020-02-15T06:59:38Z +1895,2005-06-17T04:25:12Z,680,30,2005-06-26T08:44:12Z,1,2020-02-15T06:59:38Z +1896,2005-06-17T04:25:46Z,2077,270,2005-06-26T09:37:46Z,1,2020-02-15T06:59:38Z +1897,2005-06-17T04:26:23Z,4142,422,2005-06-25T09:32:23Z,2,2020-02-15T06:59:38Z +1898,2005-06-17T04:28:11Z,2873,143,2005-06-25T07:04:11Z,2,2020-02-15T06:59:38Z +1899,2005-06-17T04:29:15Z,858,200,2005-06-26T08:39:15Z,1,2020-02-15T06:59:38Z +1900,2005-06-17T04:29:58Z,1425,34,2005-06-21T05:58:58Z,1,2020-02-15T06:59:38Z +1901,2005-06-17T04:35:19Z,2469,292,2005-06-25T06:09:19Z,2,2020-02-15T06:59:38Z +1902,2005-06-17T04:35:52Z,2905,479,2005-06-20T06:52:52Z,2,2020-02-15T06:59:38Z +1903,2005-06-17T04:37:20Z,1939,588,2005-06-26T09:05:20Z,2,2020-02-15T06:59:38Z +1904,2005-06-17T04:45:41Z,2472,87,2005-06-17T23:56:41Z,2,2020-02-15T06:59:38Z +1905,2005-06-17T04:51:43Z,1043,39,2005-06-24T09:35:43Z,1,2020-02-15T06:59:38Z +1906,2005-06-17T04:53:35Z,1049,455,2005-06-21T01:16:35Z,2,2020-02-15T06:59:38Z +1907,2005-06-17T05:08:27Z,988,66,2005-06-23T09:13:27Z,1,2020-02-15T06:59:38Z +1908,2005-06-17T05:10:36Z,399,358,2005-06-19T03:52:36Z,1,2020-02-15T06:59:38Z +1909,2005-06-17T05:11:04Z,2599,269,2005-06-19T04:33:04Z,2,2020-02-15T06:59:38Z +1910,2005-06-17T05:11:27Z,3903,199,2005-06-23T23:16:27Z,1,2020-02-15T06:59:38Z +1911,2005-06-17T05:15:15Z,910,3,2005-06-24T11:05:15Z,2,2020-02-15T06:59:38Z +1912,2005-06-17T05:18:32Z,4136,538,2005-06-20T10:01:32Z,2,2020-02-15T06:59:38Z +1913,2005-06-17T05:19:47Z,1825,116,2005-06-21T03:39:47Z,1,2020-02-15T06:59:38Z +1914,2005-06-17T05:25:54Z,3406,450,2005-06-24T04:25:54Z,2,2020-02-15T06:59:38Z +1915,2005-06-17T05:28:28Z,2620,393,2005-06-21T07:12:28Z,2,2020-02-15T06:59:38Z +1916,2005-06-17T05:29:59Z,4428,429,2005-06-26T05:35:59Z,2,2020-02-15T06:59:38Z +1917,2005-06-17T05:36:07Z,2667,400,2005-06-24T01:44:07Z,1,2020-02-15T06:59:38Z +1918,2005-06-17T05:40:14Z,3749,310,2005-06-21T08:53:14Z,2,2020-02-15T06:59:38Z +1919,2005-06-17T05:40:52Z,3855,197,2005-06-23T05:58:52Z,1,2020-02-15T06:59:38Z +1920,2005-06-17T06:00:23Z,2199,75,2005-06-24T04:49:23Z,1,2020-02-15T06:59:38Z +1921,2005-06-17T06:04:16Z,4369,417,2005-06-23T05:26:16Z,2,2020-02-15T06:59:38Z +1922,2005-06-17T06:04:25Z,2484,343,2005-06-18T09:15:25Z,2,2020-02-15T06:59:38Z +1923,2005-06-17T06:06:10Z,691,400,2005-06-24T04:29:10Z,2,2020-02-15T06:59:38Z +1924,2005-06-17T06:13:34Z,2577,86,2005-06-18T01:51:34Z,1,2020-02-15T06:59:38Z +1925,2005-06-17T06:16:47Z,3995,510,2005-06-21T06:03:47Z,1,2020-02-15T06:59:38Z +1926,2005-06-17T06:24:30Z,3509,462,2005-06-25T03:39:30Z,2,2020-02-15T06:59:38Z +1927,2005-06-17T06:48:19Z,3304,188,2005-06-21T03:23:19Z,1,2020-02-15T06:59:38Z +1928,2005-06-17T06:48:31Z,3454,353,2005-06-26T08:17:31Z,1,2020-02-15T06:59:38Z +1929,2005-06-17T06:49:30Z,573,327,2005-06-22T12:07:30Z,2,2020-02-15T06:59:38Z +1930,2005-06-17T06:50:46Z,79,112,2005-06-19T08:51:46Z,2,2020-02-15T06:59:38Z +1931,2005-06-17T06:51:56Z,1411,391,2005-06-22T08:27:56Z,1,2020-02-15T06:59:38Z +1932,2005-06-17T06:54:41Z,3185,120,2005-06-19T05:12:41Z,2,2020-02-15T06:59:38Z +1933,2005-06-17T06:54:42Z,980,13,2005-06-26T02:00:42Z,1,2020-02-15T06:59:38Z +1934,2005-06-17T07:04:57Z,4000,16,2005-06-25T12:21:57Z,2,2020-02-15T06:59:38Z +1935,2005-06-17T07:14:15Z,1962,295,2005-06-20T05:59:15Z,1,2020-02-15T06:59:38Z +1936,2005-06-17T07:15:41Z,3037,213,2005-06-18T11:37:41Z,2,2020-02-15T06:59:38Z +1937,2005-06-17T07:16:46Z,1266,385,2005-06-21T04:22:46Z,2,2020-02-15T06:59:38Z +1938,2005-06-17T07:18:36Z,570,454,2005-06-19T01:43:36Z,2,2020-02-15T06:59:38Z +1939,2005-06-17T07:26:45Z,605,11,2005-06-25T13:06:45Z,2,2020-02-15T06:59:38Z +1940,2005-06-17T07:42:22Z,105,451,2005-06-22T11:59:22Z,1,2020-02-15T06:59:38Z +1941,2005-06-17T07:42:45Z,1063,519,2005-06-20T07:12:45Z,1,2020-02-15T06:59:38Z +1942,2005-06-17T07:43:39Z,261,143,2005-06-25T02:24:39Z,1,2020-02-15T06:59:38Z +1943,2005-06-17T07:49:17Z,4327,144,2005-06-20T03:47:17Z,1,2020-02-15T06:59:38Z +1944,2005-06-17T07:50:53Z,318,16,2005-06-23T02:52:53Z,2,2020-02-15T06:59:38Z +1945,2005-06-17T07:51:26Z,3366,207,2005-06-23T13:22:26Z,2,2020-02-15T06:59:38Z +1946,2005-06-17T07:58:39Z,2335,389,2005-06-25T06:49:39Z,2,2020-02-15T06:59:38Z +1947,2005-06-17T08:02:20Z,3344,479,2005-06-25T10:25:20Z,1,2020-02-15T06:59:38Z +1948,2005-06-17T08:06:53Z,46,89,2005-06-21T05:00:53Z,1,2020-02-15T06:59:38Z +1949,2005-06-17T08:19:22Z,1478,208,2005-06-25T08:43:22Z,1,2020-02-15T06:59:38Z +1950,2005-06-17T08:26:52Z,723,594,2005-06-22T08:08:52Z,2,2020-02-15T06:59:38Z +1951,2005-06-17T08:30:35Z,955,123,2005-06-20T10:43:35Z,2,2020-02-15T06:59:38Z +1952,2005-06-17T08:33:02Z,1823,338,2005-06-21T14:00:02Z,2,2020-02-15T06:59:38Z +1953,2005-06-17T08:34:57Z,3549,405,2005-06-24T09:38:57Z,2,2020-02-15T06:59:38Z +1954,2005-06-17T08:37:55Z,3203,533,2005-06-20T02:55:55Z,2,2020-02-15T06:59:38Z +1955,2005-06-17T08:40:22Z,811,311,2005-06-19T10:47:22Z,1,2020-02-15T06:59:38Z +1956,2005-06-17T08:43:32Z,1403,492,2005-06-21T11:08:32Z,1,2020-02-15T06:59:38Z +1957,2005-06-17T08:50:58Z,2496,68,2005-06-26T13:39:58Z,2,2020-02-15T06:59:38Z +1958,2005-06-17T08:52:01Z,1843,581,2005-06-23T07:55:01Z,2,2020-02-15T06:59:38Z +1959,2005-06-17T08:54:10Z,1464,554,2005-06-20T05:02:10Z,2,2020-02-15T06:59:38Z +1960,2005-06-17T08:59:57Z,2202,27,2005-06-23T14:38:57Z,2,2020-02-15T06:59:38Z +1961,2005-06-17T09:02:58Z,2851,384,2005-06-20T03:07:58Z,1,2020-02-15T06:59:38Z +1962,2005-06-17T09:08:58Z,4386,536,2005-06-23T14:55:58Z,1,2020-02-15T06:59:38Z +1963,2005-06-17T09:09:31Z,1943,154,2005-06-24T13:16:31Z,2,2020-02-15T06:59:38Z +1964,2005-06-17T09:10:09Z,3390,53,2005-06-21T15:08:09Z,1,2020-02-15T06:59:38Z +1965,2005-06-17T09:17:39Z,480,256,2005-06-18T12:35:39Z,2,2020-02-15T06:59:38Z +1966,2005-06-17T09:19:45Z,2085,6,2005-06-20T11:19:45Z,1,2020-02-15T06:59:38Z +1967,2005-06-17T09:19:52Z,3225,558,2005-06-21T03:35:52Z,1,2020-02-15T06:59:38Z +1968,2005-06-17T09:20:36Z,1139,246,2005-06-18T11:06:36Z,2,2020-02-15T06:59:38Z +1969,2005-06-17T09:22:22Z,4450,337,2005-06-21T05:31:22Z,2,2020-02-15T06:59:38Z +1970,2005-06-17T09:23:16Z,1358,303,2005-06-22T09:40:16Z,2,2020-02-15T06:59:38Z +1971,2005-06-17T09:23:59Z,2870,357,2005-06-25T13:20:59Z,2,2020-02-15T06:59:38Z +1972,2005-06-17T09:25:49Z,2758,526,2005-06-24T09:59:49Z,2,2020-02-15T06:59:38Z +1973,2005-06-17T09:26:15Z,3669,256,2005-06-21T10:18:15Z,1,2020-02-15T06:59:38Z +1974,2005-06-17T09:30:05Z,1979,111,2005-06-21T12:10:05Z,1,2020-02-15T06:59:38Z +1975,2005-06-17T09:32:10Z,2520,468,2005-06-23T03:50:10Z,2,2020-02-15T06:59:38Z +1976,2005-06-17T09:38:08Z,3631,184,2005-06-23T07:23:08Z,2,2020-02-15T06:59:38Z +1977,2005-06-17T09:38:22Z,2468,459,2005-06-23T14:19:22Z,2,2020-02-15T06:59:38Z +1978,2005-06-17T09:42:34Z,1590,278,2005-06-20T09:13:34Z,2,2020-02-15T06:59:38Z +1979,2005-06-17T09:45:30Z,3470,45,2005-06-20T10:52:30Z,1,2020-02-15T06:59:38Z +1980,2005-06-17T09:48:05Z,2985,328,2005-06-23T14:43:05Z,1,2020-02-15T06:59:38Z +1981,2005-06-17T10:03:34Z,3186,526,2005-06-20T13:14:34Z,2,2020-02-15T06:59:38Z +1982,2005-06-17T10:12:15Z,1091,566,2005-06-20T13:56:15Z,1,2020-02-15T06:59:38Z +1983,2005-06-17T10:22:13Z,1955,365,2005-06-24T05:04:13Z,1,2020-02-15T06:59:38Z +1984,2005-06-17T10:25:28Z,3417,380,2005-06-23T08:18:28Z,2,2020-02-15T06:59:38Z +1985,2005-06-17T10:31:37Z,87,411,2005-06-22T11:17:37Z,1,2020-02-15T06:59:38Z +1986,2005-06-17T10:34:59Z,2894,541,2005-06-24T04:57:59Z,2,2020-02-15T06:59:38Z +1987,2005-06-17T10:40:36Z,110,479,2005-06-23T14:23:36Z,1,2020-02-15T06:59:38Z +1988,2005-06-17T10:42:34Z,3054,261,2005-06-25T11:47:34Z,2,2020-02-15T06:59:38Z +1989,2005-06-17T10:47:24Z,634,35,2005-06-19T05:12:24Z,1,2020-02-15T06:59:38Z +1990,2005-06-17T10:48:44Z,1471,571,2005-06-24T08:11:44Z,1,2020-02-15T06:59:38Z +1991,2005-06-17T10:49:23Z,3963,105,2005-06-25T10:48:23Z,1,2020-02-15T06:59:38Z +1992,2005-06-17T10:58:53Z,636,233,2005-06-19T08:42:53Z,2,2020-02-15T06:59:38Z +1993,2005-06-17T10:59:24Z,168,234,2005-06-23T07:30:24Z,2,2020-02-15T06:59:38Z +1994,2005-06-17T11:07:06Z,2203,346,2005-06-25T08:32:06Z,2,2020-02-15T06:59:38Z +1995,2005-06-17T11:11:14Z,1866,10,2005-06-26T16:37:14Z,1,2020-02-15T06:59:38Z +1996,2005-06-17T11:17:45Z,3074,149,2005-06-26T09:42:45Z,1,2020-02-15T06:59:38Z +1997,2005-06-17T11:19:43Z,846,411,2005-06-19T14:18:43Z,1,2020-02-15T06:59:38Z +1998,2005-06-17T11:24:57Z,4365,562,2005-06-26T09:48:57Z,1,2020-02-15T06:59:38Z +1999,2005-06-17T11:30:08Z,3704,111,2005-06-23T08:36:08Z,1,2020-02-15T06:59:38Z +2000,2005-06-17T11:32:30Z,323,163,2005-06-22T13:37:30Z,1,2020-02-15T06:59:38Z +2001,2005-06-17T11:35:09Z,2069,260,2005-06-21T14:52:09Z,2,2020-02-15T06:59:38Z +2002,2005-06-17T11:39:58Z,2406,514,2005-06-24T15:41:58Z,2,2020-02-15T06:59:38Z +2003,2005-06-17T11:40:35Z,1581,515,2005-06-19T08:30:35Z,2,2020-02-15T06:59:38Z +2004,2005-06-17T11:43:38Z,1342,171,2005-06-24T08:05:38Z,2,2020-02-15T06:59:38Z +2005,2005-06-17T11:44:54Z,4177,234,2005-06-19T10:53:54Z,1,2020-02-15T06:59:38Z +2006,2005-06-17T11:47:03Z,992,215,2005-06-19T13:47:03Z,2,2020-02-15T06:59:38Z +2007,2005-06-17T11:47:17Z,1123,572,2005-06-21T07:19:17Z,1,2020-02-15T06:59:38Z +2008,2005-06-17T11:48:05Z,2081,570,2005-06-25T13:16:05Z,1,2020-02-15T06:59:38Z +2009,2005-06-17T11:48:31Z,1902,119,2005-06-18T09:34:31Z,2,2020-02-15T06:59:38Z +2010,2005-06-17T11:54:15Z,2845,329,2005-06-21T05:55:15Z,1,2020-02-15T06:59:38Z +2011,2005-06-17T11:56:09Z,734,350,2005-06-24T06:47:09Z,2,2020-02-15T06:59:38Z +2012,2005-06-17T11:57:15Z,3588,84,2005-06-24T17:18:15Z,1,2020-02-15T06:59:38Z +2013,2005-06-17T12:03:01Z,3256,165,2005-06-24T10:04:01Z,1,2020-02-15T06:59:38Z +2014,2005-06-17T12:03:28Z,2969,337,2005-06-25T16:00:28Z,2,2020-02-15T06:59:38Z +2015,2005-06-17T12:16:29Z,3776,484,2005-06-18T14:40:29Z,2,2020-02-15T06:59:38Z +2016,2005-06-17T12:18:36Z,4265,282,2005-06-20T12:13:36Z,1,2020-02-15T06:59:38Z +2017,2005-06-17T12:33:30Z,1434,516,2005-06-19T10:08:30Z,2,2020-02-15T06:59:38Z +2018,2005-06-17T12:35:58Z,1278,380,2005-06-26T13:16:58Z,2,2020-02-15T06:59:38Z +2019,2005-06-17T12:38:44Z,2314,528,2005-06-23T17:38:44Z,2,2020-02-15T06:59:38Z +2020,2005-06-17T12:39:50Z,1914,384,2005-06-19T14:59:50Z,1,2020-02-15T06:59:38Z +2021,2005-06-17T12:41:18Z,2852,319,2005-06-23T17:17:18Z,2,2020-02-15T06:59:38Z +2022,2005-06-17T12:44:39Z,3053,547,2005-06-25T12:32:39Z,1,2020-02-15T06:59:38Z +2023,2005-06-17T12:52:58Z,787,169,2005-06-23T11:07:58Z,1,2020-02-15T06:59:38Z +2024,2005-06-17T13:00:51Z,2566,329,2005-06-22T07:03:51Z,1,2020-02-15T06:59:38Z +2025,2005-06-17T13:04:00Z,1203,447,2005-06-18T18:45:00Z,2,2020-02-15T06:59:38Z +2026,2005-06-17T13:05:38Z,3681,491,2005-06-21T17:19:38Z,1,2020-02-15T06:59:38Z +2027,2005-06-17T13:06:56Z,4309,265,2005-06-23T13:46:56Z,1,2020-02-15T06:59:38Z +2028,2005-06-17T13:08:08Z,4451,155,2005-06-23T10:54:08Z,1,2020-02-15T06:59:38Z +2029,2005-06-17T13:10:59Z,914,512,2005-06-19T18:15:59Z,1,2020-02-15T06:59:38Z +2030,2005-06-17T13:13:27Z,4024,457,2005-06-19T10:44:27Z,1,2020-02-15T06:59:38Z +2031,2005-06-17T13:14:03Z,4275,570,2005-06-25T10:06:03Z,2,2020-02-15T06:59:38Z +2032,2005-06-17T13:24:07Z,425,316,2005-06-18T18:18:07Z,1,2020-02-15T06:59:38Z +2033,2005-06-17T13:24:43Z,58,90,2005-06-20T12:34:43Z,1,2020-02-15T06:59:38Z +2034,2005-06-17T13:27:16Z,1512,587,2005-06-22T08:53:16Z,2,2020-02-15T06:59:38Z +2035,2005-06-17T13:45:09Z,4371,158,2005-06-26T15:30:09Z,2,2020-02-15T06:59:38Z +2036,2005-06-17T13:46:52Z,100,486,2005-06-18T15:42:52Z,2,2020-02-15T06:59:38Z +2037,2005-06-17T13:54:20Z,2582,308,2005-06-20T14:49:20Z,2,2020-02-15T06:59:38Z +2038,2005-06-17T14:00:51Z,4231,138,2005-06-19T11:54:51Z,2,2020-02-15T06:59:38Z +2039,2005-06-17T14:03:43Z,1514,304,2005-06-24T09:21:43Z,1,2020-02-15T06:59:38Z +2040,2005-06-17T14:18:37Z,227,260,2005-06-22T19:08:37Z,1,2020-02-15T06:59:38Z +2041,2005-06-17T14:19:00Z,782,348,2005-06-26T08:38:00Z,2,2020-02-15T06:59:38Z +2042,2005-06-17T14:31:02Z,3102,84,2005-06-18T14:43:02Z,1,2020-02-15T06:59:38Z +2043,2005-06-17T14:31:12Z,2495,4,2005-06-19T11:04:12Z,2,2020-02-15T06:59:38Z +2044,2005-06-17T14:37:57Z,2418,484,2005-06-22T17:15:57Z,2,2020-02-15T06:59:38Z +2045,2005-06-17T14:38:11Z,561,391,2005-06-26T13:44:11Z,2,2020-02-15T06:59:38Z +2046,2005-06-17T14:39:50Z,872,374,2005-06-24T16:02:50Z,1,2020-02-15T06:59:38Z +2047,2005-06-17T14:40:58Z,2371,201,2005-06-21T08:52:58Z,1,2020-02-15T06:59:38Z +2048,2005-06-17T14:55:29Z,2055,454,2005-06-23T16:29:29Z,2,2020-02-15T06:59:38Z +2049,2005-06-17T14:58:36Z,1053,182,2005-06-22T14:53:36Z,2,2020-02-15T06:59:38Z +2050,2005-06-17T15:07:30Z,1963,549,2005-06-18T14:43:30Z,1,2020-02-15T06:59:38Z +2051,2005-06-17T15:10:16Z,2366,191,2005-06-19T20:45:16Z,1,2020-02-15T06:59:38Z +2052,2005-06-17T15:14:43Z,1686,172,2005-06-21T11:08:43Z,1,2020-02-15T06:59:38Z +2053,2005-06-17T15:19:34Z,4279,521,2005-06-19T10:06:34Z,2,2020-02-15T06:59:38Z +2054,2005-06-17T15:26:37Z,1588,295,2005-06-26T14:22:37Z,1,2020-02-15T06:59:38Z +2055,2005-06-17T15:27:03Z,1399,593,2005-06-25T13:44:03Z,1,2020-02-15T06:59:38Z +2056,2005-06-17T15:27:33Z,229,42,2005-06-20T13:04:33Z,2,2020-02-15T06:59:38Z +2057,2005-06-17T15:31:58Z,2803,190,2005-06-25T09:39:58Z,1,2020-02-15T06:59:38Z +2058,2005-06-17T15:34:41Z,1324,57,2005-06-25T14:50:41Z,1,2020-02-15T06:59:38Z +2059,2005-06-17T15:36:12Z,739,114,2005-06-18T19:01:12Z,2,2020-02-15T06:59:38Z +2060,2005-06-17T15:42:42Z,1523,64,2005-06-22T16:39:42Z,1,2020-02-15T06:59:38Z +2061,2005-06-17T15:47:00Z,4575,108,2005-06-24T16:36:00Z,2,2020-02-15T06:59:38Z +2062,2005-06-17T15:56:43Z,1749,55,2005-06-20T21:37:43Z,2,2020-02-15T06:59:38Z +2063,2005-06-17T15:56:53Z,4323,5,2005-06-21T14:19:53Z,1,2020-02-15T06:59:38Z +2064,2005-06-17T15:57:56Z,1970,67,2005-06-23T21:04:56Z,2,2020-02-15T06:59:38Z +2065,2005-06-17T16:03:46Z,844,266,2005-06-22T16:41:46Z,2,2020-02-15T06:59:38Z +2066,2005-06-17T16:07:08Z,2561,248,2005-06-24T15:20:08Z,2,2020-02-15T06:59:38Z +2067,2005-06-17T16:11:08Z,1711,297,2005-06-22T13:01:08Z,2,2020-02-15T06:59:38Z +2068,2005-06-17T16:11:46Z,4252,387,2005-06-20T11:28:46Z,1,2020-02-15T06:59:38Z +2069,2005-06-17T16:19:39Z,2746,551,2005-06-26T16:48:39Z,1,2020-02-15T06:59:38Z +2070,2005-06-17T16:27:51Z,2609,24,2005-06-20T20:46:51Z,1,2020-02-15T06:59:38Z +2071,2005-06-17T16:33:17Z,2867,479,2005-06-23T21:51:17Z,1,2020-02-15T06:59:38Z +2072,2005-06-17T16:33:32Z,86,261,2005-06-23T13:22:32Z,1,2020-02-15T06:59:38Z +2073,2005-06-17T16:33:59Z,3530,410,2005-06-19T11:57:59Z,1,2020-02-15T06:59:38Z +2074,2005-06-17T16:40:03Z,71,495,2005-06-20T21:34:03Z,1,2020-02-15T06:59:38Z +2075,2005-06-17T16:40:33Z,2415,459,2005-06-19T13:55:33Z,2,2020-02-15T06:59:38Z +2076,2005-06-17T16:43:47Z,2242,217,2005-06-24T11:12:47Z,1,2020-02-15T06:59:38Z +2077,2005-06-17T16:46:11Z,4478,113,2005-06-19T15:10:11Z,1,2020-02-15T06:59:38Z +2078,2005-06-17T16:48:55Z,2021,278,2005-06-19T18:01:55Z,1,2020-02-15T06:59:38Z +2079,2005-06-17T16:49:45Z,3853,465,2005-06-18T18:10:45Z,1,2020-02-15T06:59:38Z +2080,2005-06-17T16:59:40Z,1231,476,2005-06-21T11:28:40Z,2,2020-02-15T06:59:38Z +2081,2005-06-17T17:05:02Z,917,253,2005-06-26T20:26:02Z,1,2020-02-15T06:59:38Z +2082,2005-06-17T17:13:32Z,434,254,2005-06-19T16:16:32Z,1,2020-02-15T06:59:38Z +2083,2005-06-17T17:14:00Z,2423,97,2005-06-18T18:31:00Z,2,2020-02-15T06:59:38Z +2084,2005-06-17T17:17:19Z,428,92,2005-06-22T14:57:19Z,1,2020-02-15T06:59:38Z +2085,2005-06-17T17:30:56Z,2275,214,2005-06-23T12:13:56Z,1,2020-02-15T06:59:38Z +2086,2005-06-17T17:32:07Z,898,326,2005-06-21T20:19:07Z,2,2020-02-15T06:59:38Z +2087,2005-06-17T17:35:10Z,466,398,2005-06-26T13:52:10Z,1,2020-02-15T06:59:38Z +2088,2005-06-17T17:35:30Z,506,310,2005-06-23T20:13:30Z,2,2020-02-15T06:59:38Z +2089,2005-06-17T17:45:09Z,4030,156,2005-06-25T16:41:09Z,1,2020-02-15T06:59:38Z +2090,2005-06-17T18:06:14Z,17,197,2005-06-22T23:52:14Z,1,2020-02-15T06:59:38Z +2091,2005-06-17T18:09:04Z,4033,260,2005-06-26T12:11:04Z,1,2020-02-15T06:59:38Z +2092,2005-06-17T18:12:16Z,4427,556,2005-06-25T15:06:16Z,2,2020-02-15T06:59:38Z +2093,2005-06-17T18:14:08Z,814,26,2005-06-26T18:10:08Z,1,2020-02-15T06:59:38Z +2094,2005-06-17T18:18:56Z,2205,308,2005-06-18T19:36:56Z,1,2020-02-15T06:59:38Z +2095,2005-06-17T18:21:35Z,1907,8,2005-06-23T23:49:35Z,2,2020-02-15T06:59:38Z +2096,2005-06-17T18:33:04Z,1069,431,2005-06-21T17:29:04Z,2,2020-02-15T06:59:38Z +2097,2005-06-17T18:40:04Z,569,439,2005-06-23T13:49:04Z,1,2020-02-15T06:59:38Z +2098,2005-06-17T18:42:09Z,3951,274,2005-06-19T20:40:09Z,1,2020-02-15T06:59:38Z +2099,2005-06-17T18:47:26Z,3660,146,2005-06-24T22:31:26Z,2,2020-02-15T06:59:38Z +2100,2005-06-17T18:53:21Z,2267,387,2005-06-19T21:49:21Z,2,2020-02-15T06:59:38Z +2101,2005-06-17T18:57:02Z,2137,581,2005-06-20T15:38:02Z,2,2020-02-15T06:59:38Z +2102,2005-06-17T19:05:22Z,2316,486,2005-06-23T23:21:22Z,2,2020-02-15T06:59:38Z +2103,2005-06-17T19:13:10Z,1469,456,2005-06-21T21:32:10Z,2,2020-02-15T06:59:38Z +2104,2005-06-17T19:14:30Z,3084,136,2005-06-19T16:26:30Z,1,2020-02-15T06:59:38Z +2105,2005-06-17T19:15:45Z,4090,57,2005-06-20T16:00:45Z,1,2020-02-15T06:59:38Z +2106,2005-06-17T19:29:03Z,643,66,2005-06-23T18:17:03Z,2,2020-02-15T06:59:38Z +2107,2005-06-17T19:31:16Z,1270,104,2005-06-18T23:33:16Z,1,2020-02-15T06:59:38Z +2108,2005-06-17T19:35:26Z,1395,503,2005-06-25T15:45:26Z,1,2020-02-15T06:59:38Z +2109,2005-06-17T19:41:42Z,2292,493,2005-06-25T17:03:42Z,2,2020-02-15T06:59:38Z +2110,2005-06-17T19:45:49Z,3592,163,2005-06-26T18:59:49Z,2,2020-02-15T06:59:38Z +2111,2005-06-17T19:47:21Z,2108,76,2005-06-19T22:46:21Z,2,2020-02-15T06:59:38Z +2112,2005-06-17T19:52:42Z,1629,18,2005-06-25T00:00:42Z,2,2020-02-15T06:59:38Z +2113,2005-06-17T19:57:46Z,1509,406,2005-06-24T00:22:46Z,1,2020-02-15T06:59:38Z +2114,2005-06-17T20:00:25Z,3541,358,2005-06-23T18:51:25Z,1,2020-02-15T06:59:38Z +2115,2005-06-17T20:02:16Z,3448,270,2005-06-25T16:56:16Z,2,2020-02-15T06:59:38Z +2116,2005-06-17T20:16:12Z,2373,24,2005-06-18T17:03:12Z,2,2020-02-15T06:59:38Z +2117,2005-06-17T20:24:00Z,2,170,2005-06-23T17:45:00Z,2,2020-02-15T06:59:38Z +2118,2005-06-17T20:28:29Z,1261,103,2005-06-23T22:47:29Z,1,2020-02-15T06:59:38Z +2119,2005-06-17T20:34:42Z,2104,561,2005-06-22T00:05:42Z,1,2020-02-15T06:59:38Z +2120,2005-06-17T20:36:50Z,1498,182,2005-06-27T01:18:50Z,2,2020-02-15T06:59:38Z +2121,2005-06-17T20:38:54Z,141,467,2005-06-22T23:06:54Z,2,2020-02-15T06:59:38Z +2122,2005-06-17T20:48:27Z,2932,245,2005-06-23T00:58:27Z,2,2020-02-15T06:59:38Z +2123,2005-06-17T20:48:30Z,2497,545,2005-06-18T19:17:30Z,2,2020-02-15T06:59:38Z +2124,2005-06-17T20:49:14Z,1273,178,2005-06-23T17:44:14Z,1,2020-02-15T06:59:38Z +2125,2005-06-17T20:53:42Z,4303,473,2005-06-19T01:53:42Z,2,2020-02-15T06:59:38Z +2126,2005-06-17T20:54:36Z,4276,263,2005-06-27T02:16:36Z,1,2020-02-15T06:59:38Z +2127,2005-06-17T20:54:48Z,3757,187,2005-06-18T16:28:48Z,2,2020-02-15T06:59:38Z +2128,2005-06-17T20:54:58Z,352,2,2005-06-24T00:41:58Z,2,2020-02-15T06:59:38Z +2129,2005-06-17T20:58:32Z,1930,249,2005-06-23T22:22:32Z,1,2020-02-15T06:59:38Z +2130,2005-06-17T21:00:44Z,1369,413,2005-06-26T00:05:44Z,2,2020-02-15T06:59:38Z +2131,2005-06-17T21:02:25Z,4424,85,2005-06-25T18:45:25Z,1,2020-02-15T06:59:38Z +2132,2005-06-17T21:05:06Z,2636,186,2005-06-20T18:10:06Z,1,2020-02-15T06:59:38Z +2133,2005-06-17T21:10:05Z,932,268,2005-06-23T22:41:05Z,1,2020-02-15T06:59:38Z +2134,2005-06-17T21:13:44Z,1699,378,2005-06-26T16:28:44Z,2,2020-02-15T06:59:38Z +2135,2005-06-17T21:14:02Z,4091,39,2005-06-19T00:59:02Z,1,2020-02-15T06:59:38Z +2136,2005-06-17T21:16:41Z,2651,20,2005-06-24T22:42:41Z,2,2020-02-15T06:59:38Z +2137,2005-06-17T21:18:28Z,1158,581,2005-06-20T21:05:28Z,1,2020-02-15T06:59:38Z +2138,2005-06-17T21:28:14Z,512,254,2005-06-22T01:16:14Z,2,2020-02-15T06:59:38Z +2139,2005-06-17T21:29:34Z,807,236,2005-06-26T21:05:34Z,1,2020-02-15T06:59:38Z +2140,2005-06-17T21:40:29Z,2395,56,2005-06-19T00:42:29Z,1,2020-02-15T06:59:38Z +2141,2005-06-17T21:41:34Z,2176,86,2005-06-19T00:15:34Z,1,2020-02-15T06:59:38Z +2142,2005-06-17T21:55:43Z,1787,253,2005-06-26T19:41:43Z,2,2020-02-15T06:59:38Z +2143,2005-06-17T21:58:13Z,1257,507,2005-06-19T23:59:13Z,2,2020-02-15T06:59:38Z +2144,2005-06-17T22:05:40Z,3303,46,2005-06-21T02:53:40Z,1,2020-02-15T06:59:38Z +2145,2005-06-17T22:10:36Z,238,388,2005-06-18T21:07:36Z,2,2020-02-15T06:59:38Z +2146,2005-06-17T22:26:23Z,326,456,2005-06-26T17:10:23Z,1,2020-02-15T06:59:38Z +2147,2005-06-17T22:28:13Z,2752,279,2005-06-22T20:50:13Z,1,2020-02-15T06:59:38Z +2148,2005-06-17T22:44:35Z,315,338,2005-06-26T19:43:35Z,1,2020-02-15T06:59:38Z +2149,2005-06-17T22:50:00Z,3365,333,2005-06-26T18:40:00Z,1,2020-02-15T06:59:38Z +2150,2005-06-17T22:50:36Z,1910,406,2005-06-21T19:33:36Z,1,2020-02-15T06:59:38Z +2151,2005-06-17T22:52:37Z,407,329,2005-06-20T22:00:37Z,1,2020-02-15T06:59:38Z +2152,2005-06-17T22:53:27Z,2665,307,2005-06-23T19:19:27Z,1,2020-02-15T06:59:38Z +2153,2005-06-17T22:58:04Z,2440,357,2005-06-24T19:38:04Z,2,2020-02-15T06:59:38Z +2154,2005-06-17T22:59:42Z,1655,30,2005-06-24T04:11:42Z,1,2020-02-15T06:59:38Z +2155,2005-06-17T23:07:29Z,3640,227,2005-06-25T03:23:29Z,2,2020-02-15T06:59:38Z +2156,2005-06-17T23:08:12Z,623,237,2005-06-22T19:44:12Z,2,2020-02-15T06:59:38Z +2157,2005-06-17T23:30:52Z,1619,201,2005-06-24T01:56:52Z,2,2020-02-15T06:59:38Z +2158,2005-06-17T23:36:27Z,243,530,2005-06-19T19:25:27Z,2,2020-02-15T06:59:38Z +2159,2005-06-17T23:37:29Z,3095,465,2005-06-25T00:18:29Z,2,2020-02-15T06:59:38Z +2160,2005-06-17T23:39:11Z,1644,32,2005-06-22T20:04:11Z,1,2020-02-15T06:59:38Z +2161,2005-06-17T23:39:50Z,3149,75,2005-06-26T23:28:50Z,2,2020-02-15T06:59:38Z +2162,2005-06-17T23:45:47Z,1790,277,2005-06-21T21:03:47Z,1,2020-02-15T06:59:38Z +2163,2005-06-17T23:46:16Z,2600,130,2005-06-22T22:48:16Z,2,2020-02-15T06:59:38Z +2164,2005-06-17T23:46:21Z,3442,227,2005-06-24T19:10:21Z,2,2020-02-15T06:59:38Z +2165,2005-06-17T23:51:10Z,2392,471,2005-06-21T23:54:10Z,1,2020-02-15T06:59:38Z +2166,2005-06-17T23:51:21Z,4343,305,2005-06-27T01:06:21Z,2,2020-02-15T06:59:38Z +2167,2005-06-17T23:51:28Z,3796,307,2005-06-21T00:43:28Z,2,2020-02-15T06:59:38Z +2168,2005-06-17T23:53:24Z,802,308,2005-06-20T01:11:24Z,1,2020-02-15T06:59:38Z +2169,2005-06-17T23:57:23Z,785,120,2005-06-19T20:14:23Z,2,2020-02-15T06:59:38Z +2170,2005-06-17T23:57:34Z,3989,42,2005-06-22T03:37:34Z,2,2020-02-15T06:59:38Z +2171,2005-06-18T00:06:04Z,1768,147,2005-06-24T18:09:04Z,2,2020-02-15T06:59:38Z +2172,2005-06-18T00:06:16Z,2912,457,2005-06-26T00:50:16Z,1,2020-02-15T06:59:38Z +2173,2005-06-18T00:08:20Z,995,65,2005-06-25T05:30:20Z,1,2020-02-15T06:59:38Z +2174,2005-06-18T00:09:01Z,3279,520,2005-06-25T23:14:01Z,1,2020-02-15T06:59:38Z +2175,2005-06-18T00:17:58Z,4038,17,2005-06-22T23:18:58Z,2,2020-02-15T06:59:38Z +2176,2005-06-18T00:29:51Z,4201,282,2005-06-21T01:41:51Z,1,2020-02-15T06:59:38Z +2177,2005-06-18T00:34:45Z,492,340,2005-06-26T18:40:45Z,1,2020-02-15T06:59:38Z +2178,2005-06-18T00:38:35Z,2950,260,2005-06-21T02:56:35Z,1,2020-02-15T06:59:38Z +2179,2005-06-18T00:41:36Z,4334,338,2005-06-19T02:17:36Z,1,2020-02-15T06:59:38Z +2180,2005-06-18T00:47:43Z,3564,497,2005-06-25T04:12:43Z,2,2020-02-15T06:59:38Z +2181,2005-06-18T00:48:31Z,3481,176,2005-06-25T06:43:31Z,2,2020-02-15T06:59:38Z +2182,2005-06-18T00:56:18Z,3494,454,2005-06-26T20:01:18Z,1,2020-02-15T06:59:38Z +2183,2005-06-18T01:06:01Z,1776,340,2005-06-22T01:20:01Z,1,2020-02-15T06:59:38Z +2184,2005-06-18T01:10:36Z,3468,537,2005-06-21T05:59:36Z,2,2020-02-15T06:59:38Z +2185,2005-06-18T01:12:22Z,4326,198,2005-06-20T20:41:22Z,1,2020-02-15T06:59:38Z +2186,2005-06-18T01:15:27Z,2050,204,2005-06-21T06:16:27Z,1,2020-02-15T06:59:38Z +2187,2005-06-18T01:17:27Z,1385,477,2005-06-20T22:18:27Z,1,2020-02-15T06:59:38Z +2188,2005-06-18T01:19:04Z,712,183,2005-06-25T03:59:04Z,2,2020-02-15T06:59:38Z +2189,2005-06-18T01:20:26Z,249,500,2005-06-25T00:30:26Z,1,2020-02-15T06:59:38Z +2190,2005-06-18T01:29:51Z,4398,342,2005-06-26T04:31:51Z,2,2020-02-15T06:59:38Z +2191,2005-06-18T01:33:09Z,3369,58,2005-06-19T20:18:09Z,1,2020-02-15T06:59:38Z +2192,2005-06-18T01:35:47Z,1886,456,2005-06-23T23:38:47Z,2,2020-02-15T06:59:38Z +2193,2005-06-18T01:38:45Z,1013,112,2005-06-22T19:51:45Z,1,2020-02-15T06:59:38Z +2194,2005-06-18T01:41:37Z,1827,149,2005-06-25T04:27:37Z,1,2020-02-15T06:59:38Z +2195,2005-06-18T01:44:46Z,2247,286,2005-06-25T20:50:46Z,1,2020-02-15T06:59:38Z +2196,2005-06-18T01:47:07Z,1925,240,2005-06-26T03:18:07Z,2,2020-02-15T06:59:38Z +2197,2005-06-18T01:50:27Z,3350,103,2005-06-19T01:31:27Z,2,2020-02-15T06:59:38Z +2198,2005-06-18T01:51:22Z,1983,109,2005-06-26T06:57:22Z,2,2020-02-15T06:59:38Z +2199,2005-06-18T01:57:56Z,99,171,2005-06-23T20:34:56Z,2,2020-02-15T06:59:38Z +2200,2005-06-18T01:59:16Z,1085,229,2005-06-26T23:25:16Z,2,2020-02-15T06:59:38Z +2201,2005-06-18T02:08:27Z,1864,489,2005-06-23T01:40:27Z,1,2020-02-15T06:59:38Z +2202,2005-06-18T02:09:24Z,815,297,2005-06-26T07:17:24Z,2,2020-02-15T06:59:38Z +2203,2005-06-18T02:10:42Z,1347,46,2005-06-22T06:25:42Z,2,2020-02-15T06:59:38Z +2204,2005-06-18T02:11:38Z,1137,426,2005-06-24T00:28:38Z,1,2020-02-15T06:59:38Z +2205,2005-06-18T02:14:34Z,1245,593,2005-06-25T05:11:34Z,1,2020-02-15T06:59:38Z +2206,2005-06-18T02:14:45Z,3651,438,2005-06-24T23:20:45Z,2,2020-02-15T06:59:38Z +2207,2005-06-18T02:19:21Z,182,78,2005-06-24T02:25:21Z,2,2020-02-15T06:59:38Z +2208,2005-06-18T02:22:07Z,2345,132,2005-06-23T07:24:07Z,2,2020-02-15T06:59:38Z +2209,2005-06-18T02:24:01Z,2441,13,2005-06-22T04:13:01Z,2,2020-02-15T06:59:38Z +2210,2005-06-18T02:27:01Z,219,108,2005-06-21T00:45:01Z,1,2020-02-15T06:59:38Z +2211,2005-06-18T02:29:10Z,4114,166,2005-06-22T02:02:10Z,1,2020-02-15T06:59:38Z +2212,2005-06-18T02:36:10Z,2458,336,2005-06-19T21:21:10Z,1,2020-02-15T06:59:38Z +2213,2005-06-18T02:36:47Z,949,98,2005-06-23T05:02:47Z,1,2020-02-15T06:59:38Z +2214,2005-06-18T02:44:37Z,2430,366,2005-06-18T23:37:37Z,2,2020-02-15T06:59:38Z +2215,2005-06-18T02:48:21Z,2060,239,2005-06-22T01:03:21Z,2,2020-02-15T06:59:38Z +2216,2005-06-18T03:08:17Z,1428,320,2005-06-19T08:13:17Z,1,2020-02-15T06:59:38Z +2217,2005-06-18T03:12:29Z,2260,118,2005-06-20T06:08:29Z,1,2020-02-15T06:59:38Z +2218,2005-06-18T03:13:13Z,3577,176,2005-06-18T21:16:13Z,1,2020-02-15T06:59:38Z +2219,2005-06-18T03:16:54Z,1881,393,2005-06-22T01:29:54Z,1,2020-02-15T06:59:38Z +2220,2005-06-18T03:21:36Z,320,587,2005-06-21T07:45:36Z,2,2020-02-15T06:59:38Z +2221,2005-06-18T03:24:56Z,3905,156,2005-06-22T08:27:56Z,1,2020-02-15T06:59:38Z +2222,2005-06-18T03:26:23Z,3834,10,2005-06-26T08:50:23Z,2,2020-02-15T06:59:38Z +2223,2005-06-18T03:27:03Z,4068,303,2005-06-27T09:19:03Z,2,2020-02-15T06:59:38Z +2224,2005-06-18T03:33:58Z,1336,153,2005-06-18T22:10:58Z,1,2020-02-15T06:59:38Z +2225,2005-06-18T03:35:40Z,2829,503,2005-06-23T03:05:40Z,1,2020-02-15T06:59:38Z +2226,2005-06-18T03:39:56Z,3487,225,2005-06-24T07:26:56Z,2,2020-02-15T06:59:38Z +2227,2005-06-18T03:43:23Z,3623,200,2005-06-19T05:55:23Z,2,2020-02-15T06:59:38Z +2228,2005-06-18T03:44:50Z,490,383,2005-06-23T00:28:50Z,1,2020-02-15T06:59:38Z +2229,2005-06-18T03:50:18Z,2840,35,2005-06-26T07:16:18Z,2,2020-02-15T06:59:38Z +2230,2005-06-18T03:50:49Z,833,256,2005-06-25T01:12:49Z,2,2020-02-15T06:59:38Z +2231,2005-06-18T03:52:14Z,2280,35,2005-06-23T06:52:14Z,1,2020-02-15T06:59:38Z +2232,2005-06-18T03:54:31Z,2463,52,2005-06-22T07:29:31Z,1,2020-02-15T06:59:38Z +2233,2005-06-18T03:57:36Z,3063,31,2005-06-21T09:42:36Z,2,2020-02-15T06:59:38Z +2234,2005-06-18T04:01:28Z,234,182,2005-06-24T04:55:28Z,2,2020-02-15T06:59:38Z +2235,2005-06-18T04:08:50Z,3463,21,2005-06-27T07:58:50Z,1,2020-02-15T06:59:38Z +2236,2005-06-18T04:12:33Z,4001,375,2005-06-23T04:07:33Z,1,2020-02-15T06:59:38Z +2237,2005-06-18T04:17:44Z,1821,205,2005-06-27T09:08:44Z,1,2020-02-15T06:59:38Z +2238,2005-06-18T04:22:06Z,2859,251,2005-06-27T03:29:06Z,2,2020-02-15T06:59:38Z +2239,2005-06-18T04:23:54Z,4419,437,2005-06-26T00:12:54Z,2,2020-02-15T06:59:38Z +2240,2005-06-18T04:28:27Z,1409,122,2005-06-22T07:48:27Z,2,2020-02-15T06:59:38Z +2241,2005-06-18T04:31:41Z,921,406,2005-06-24T22:34:41Z,2,2020-02-15T06:59:38Z +2242,2005-06-18T04:32:28Z,1995,146,2005-06-24T03:26:28Z,2,2020-02-15T06:59:38Z +2243,2005-06-18T04:33:03Z,1254,328,2005-06-23T04:14:03Z,2,2020-02-15T06:59:38Z +2244,2005-06-18T04:46:33Z,3629,233,2005-06-20T04:28:33Z,1,2020-02-15T06:59:38Z +2245,2005-06-18T04:52:59Z,1496,194,2005-06-24T05:07:59Z,2,2020-02-15T06:59:38Z +2246,2005-06-18T04:54:29Z,4287,414,2005-06-22T09:14:29Z,1,2020-02-15T06:59:38Z +2248,2005-06-18T04:59:48Z,1999,446,2005-06-19T08:51:48Z,2,2020-02-15T06:59:38Z +2249,2005-06-18T05:03:08Z,117,285,2005-06-26T05:43:08Z,2,2020-02-15T06:59:38Z +2250,2005-06-18T05:03:36Z,4042,7,2005-06-22T02:25:36Z,2,2020-02-15T06:59:38Z +2251,2005-06-18T05:05:08Z,1458,143,2005-06-23T08:34:08Z,1,2020-02-15T06:59:38Z +2252,2005-06-18T05:05:18Z,1987,383,2005-06-21T08:19:18Z,1,2020-02-15T06:59:38Z +2253,2005-06-18T05:11:43Z,3719,122,2005-06-25T03:30:43Z,2,2020-02-15T06:59:38Z +2254,2005-06-18T05:15:14Z,1084,281,2005-06-27T04:10:14Z,2,2020-02-15T06:59:38Z +2255,2005-06-18T05:21:12Z,24,410,2005-06-26T09:19:12Z,1,2020-02-15T06:59:38Z +2256,2005-06-18T05:21:56Z,1863,93,2005-06-27T02:06:56Z,2,2020-02-15T06:59:38Z +2257,2005-06-18T05:29:52Z,2846,34,2005-06-22T00:19:52Z,1,2020-02-15T06:59:38Z +2258,2005-06-18T05:30:36Z,4573,292,2005-06-24T09:09:36Z,1,2020-02-15T06:59:38Z +2259,2005-06-18T05:37:45Z,4103,491,2005-06-21T01:51:45Z,1,2020-02-15T06:59:38Z +2260,2005-06-18T05:38:36Z,2773,297,2005-06-20T08:08:36Z,1,2020-02-15T06:59:38Z +2261,2005-06-18T05:46:15Z,1763,570,2005-06-24T05:06:15Z,1,2020-02-15T06:59:38Z +2262,2005-06-18T05:49:46Z,4172,218,2005-06-20T00:25:46Z,2,2020-02-15T06:59:38Z +2263,2005-06-18T05:57:47Z,3259,452,2005-06-20T06:13:47Z,1,2020-02-15T06:59:38Z +2264,2005-06-18T05:58:45Z,150,240,2005-06-19T00:57:45Z,1,2020-02-15T06:59:38Z +2265,2005-06-18T06:03:27Z,3069,267,2005-06-20T01:16:27Z,1,2020-02-15T06:59:38Z +2266,2005-06-18T06:05:02Z,2596,452,2005-06-20T06:54:02Z,1,2020-02-15T06:59:38Z +2267,2005-06-18T06:10:23Z,2086,218,2005-06-20T00:39:23Z,2,2020-02-15T06:59:38Z +2268,2005-06-18T06:13:41Z,4380,21,2005-06-22T08:53:41Z,2,2020-02-15T06:59:38Z +2269,2005-06-18T06:20:54Z,3088,431,2005-06-25T04:51:54Z,2,2020-02-15T06:59:38Z +2270,2005-06-18T06:29:01Z,3447,588,2005-06-26T07:21:01Z,2,2020-02-15T06:59:38Z +2271,2005-06-18T06:29:52Z,2416,145,2005-06-21T09:46:52Z,2,2020-02-15T06:59:38Z +2272,2005-06-18T06:29:53Z,1364,599,2005-06-23T10:58:53Z,1,2020-02-15T06:59:38Z +2273,2005-06-18T06:30:02Z,4456,327,2005-06-20T07:07:02Z,1,2020-02-15T06:59:38Z +2274,2005-06-18T06:31:15Z,3021,347,2005-06-21T01:24:15Z,2,2020-02-15T06:59:38Z +2275,2005-06-18T06:31:29Z,2805,354,2005-06-24T10:04:29Z,2,2020-02-15T06:59:38Z +2276,2005-06-18T06:33:48Z,1145,594,2005-06-25T00:50:48Z,2,2020-02-15T06:59:38Z +2277,2005-06-18T06:35:03Z,3770,224,2005-06-19T01:26:03Z,1,2020-02-15T06:59:38Z +2278,2005-06-18T06:37:57Z,1166,450,2005-06-22T10:57:57Z,1,2020-02-15T06:59:38Z +2279,2005-06-18T06:38:22Z,1953,554,2005-06-27T07:16:22Z,1,2020-02-15T06:59:38Z +2280,2005-06-18T06:46:54Z,4568,548,2005-06-26T09:48:54Z,2,2020-02-15T06:59:38Z +2281,2005-06-18T06:47:29Z,4212,431,2005-06-20T10:27:29Z,2,2020-02-15T06:59:38Z +2282,2005-06-18T06:48:23Z,4388,113,2005-06-24T11:04:23Z,2,2020-02-15T06:59:38Z +2283,2005-06-18T06:56:06Z,2056,507,2005-06-19T05:11:06Z,2,2020-02-15T06:59:38Z +2284,2005-06-18T06:59:51Z,2682,228,2005-06-24T04:58:51Z,2,2020-02-15T06:59:38Z +2285,2005-06-18T07:00:54Z,755,447,2005-06-25T08:58:54Z,2,2020-02-15T06:59:38Z +2286,2005-06-18T07:02:32Z,618,287,2005-06-27T12:33:32Z,1,2020-02-15T06:59:38Z +2287,2005-06-18T07:04:36Z,1473,317,2005-06-27T03:00:36Z,2,2020-02-15T06:59:38Z +2288,2005-06-18T07:23:17Z,877,247,2005-06-26T07:44:17Z,2,2020-02-15T06:59:38Z +2289,2005-06-18T07:29:43Z,2030,392,2005-06-24T11:16:43Z,2,2020-02-15T06:59:38Z +2290,2005-06-18T07:34:37Z,200,513,2005-06-26T11:45:37Z,1,2020-02-15T06:59:38Z +2291,2005-06-18T07:36:46Z,3949,436,2005-06-26T04:57:46Z,2,2020-02-15T06:59:38Z +2292,2005-06-18T07:37:48Z,173,130,2005-06-20T02:45:48Z,2,2020-02-15T06:59:38Z +2293,2005-06-18T07:45:03Z,3209,178,2005-06-24T08:12:03Z,1,2020-02-15T06:59:38Z +2294,2005-06-18T07:46:34Z,2096,72,2005-06-22T12:34:34Z,2,2020-02-15T06:59:38Z +2295,2005-06-18T07:56:18Z,3250,106,2005-06-21T07:10:18Z,1,2020-02-15T06:59:38Z +2296,2005-06-18T08:10:42Z,4558,481,2005-06-20T12:26:42Z,2,2020-02-15T06:59:38Z +2297,2005-06-18T08:17:41Z,2262,111,2005-06-26T05:08:41Z,2,2020-02-15T06:59:38Z +2298,2005-06-18T08:18:29Z,1227,497,2005-06-24T11:51:29Z,1,2020-02-15T06:59:38Z +2299,2005-06-18T08:18:52Z,4339,28,2005-06-26T11:48:52Z,1,2020-02-15T06:59:38Z +2300,2005-06-18T08:22:34Z,1617,291,2005-06-24T04:51:34Z,2,2020-02-15T06:59:38Z +2301,2005-06-18T08:24:03Z,869,273,2005-06-25T10:31:03Z,2,2020-02-15T06:59:38Z +2302,2005-06-18T08:27:33Z,1852,42,2005-06-22T02:46:33Z,2,2020-02-15T06:59:38Z +2303,2005-06-18T08:27:59Z,1524,329,2005-06-22T10:58:59Z,1,2020-02-15T06:59:38Z +2304,2005-06-18T08:30:15Z,3543,327,2005-06-23T06:17:15Z,1,2020-02-15T06:59:38Z +2305,2005-06-18T08:31:18Z,622,149,2005-06-24T06:18:18Z,2,2020-02-15T06:59:38Z +2306,2005-06-18T08:33:23Z,208,477,2005-06-27T10:01:23Z,2,2020-02-15T06:59:38Z +2307,2005-06-18T08:34:59Z,4576,47,2005-06-23T04:42:59Z,1,2020-02-15T06:59:38Z +2308,2005-06-18T08:41:48Z,197,1,2005-06-22T03:36:48Z,2,2020-02-15T06:59:38Z +2309,2005-06-18T08:43:24Z,611,576,2005-06-20T03:56:24Z,1,2020-02-15T06:59:38Z +2310,2005-06-18T08:45:59Z,2590,409,2005-06-26T05:06:59Z,2,2020-02-15T06:59:38Z +2311,2005-06-18T08:51:29Z,4506,236,2005-06-25T07:51:29Z,1,2020-02-15T06:59:38Z +2312,2005-06-18T08:55:46Z,402,184,2005-06-24T04:34:46Z,2,2020-02-15T06:59:38Z +2313,2005-06-18T08:56:45Z,3134,379,2005-06-26T10:30:45Z,2,2020-02-15T06:59:38Z +2314,2005-06-18T09:03:19Z,2157,160,2005-06-19T12:14:19Z,1,2020-02-15T06:59:38Z +2315,2005-06-18T09:03:39Z,2766,372,2005-06-22T11:18:39Z,1,2020-02-15T06:59:38Z +2316,2005-06-18T09:04:59Z,372,289,2005-06-20T09:39:59Z,2,2020-02-15T06:59:38Z +2317,2005-06-18T09:12:18Z,1602,326,2005-06-21T05:50:18Z,2,2020-02-15T06:59:38Z +2318,2005-06-18T09:13:54Z,2328,383,2005-06-23T07:19:54Z,1,2020-02-15T06:59:38Z +2319,2005-06-18T09:24:22Z,1521,393,2005-06-26T14:12:22Z,2,2020-02-15T06:59:38Z +2320,2005-06-18T09:24:50Z,597,552,2005-06-24T07:59:50Z,1,2020-02-15T06:59:38Z +2321,2005-06-18T09:42:42Z,1160,565,2005-06-25T14:28:42Z,1,2020-02-15T06:59:38Z +2322,2005-06-18T09:44:21Z,1893,213,2005-06-25T09:29:21Z,1,2020-02-15T06:59:38Z +2323,2005-06-18T09:55:02Z,207,54,2005-06-23T07:19:02Z,1,2020-02-15T06:59:38Z +2324,2005-06-18T10:00:33Z,2987,268,2005-06-23T14:10:33Z,1,2020-02-15T06:59:38Z +2325,2005-06-18T10:08:07Z,752,406,2005-06-21T15:07:07Z,1,2020-02-15T06:59:38Z +2326,2005-06-18T10:14:22Z,3829,174,2005-06-24T07:01:22Z,2,2020-02-15T06:59:38Z +2327,2005-06-18T10:16:40Z,1351,571,2005-06-20T15:06:40Z,1,2020-02-15T06:59:38Z +2328,2005-06-18T10:17:21Z,2304,441,2005-06-21T04:18:21Z,1,2020-02-15T06:59:38Z +2329,2005-06-18T10:22:52Z,4156,587,2005-06-20T12:03:52Z,2,2020-02-15T06:59:38Z +2330,2005-06-18T10:41:19Z,4285,390,2005-06-25T10:48:19Z,1,2020-02-15T06:59:38Z +2331,2005-06-18T10:50:09Z,1546,221,2005-06-25T14:30:09Z,1,2020-02-15T06:59:38Z +2332,2005-06-18T10:53:51Z,2152,140,2005-06-24T12:06:51Z,2,2020-02-15T06:59:38Z +2333,2005-06-18T10:55:54Z,2323,283,2005-06-25T07:09:54Z,2,2020-02-15T06:59:38Z +2334,2005-06-18T10:56:24Z,3076,223,2005-06-22T10:38:24Z,2,2020-02-15T06:59:38Z +2335,2005-06-18T10:59:36Z,3968,446,2005-06-26T06:42:36Z,2,2020-02-15T06:59:38Z +2336,2005-06-18T11:00:05Z,3888,124,2005-06-25T06:02:05Z,2,2020-02-15T06:59:38Z +2337,2005-06-18T11:15:27Z,4522,582,2005-06-26T06:59:27Z,2,2020-02-15T06:59:38Z +2338,2005-06-18T11:24:54Z,3165,316,2005-06-19T07:34:54Z,1,2020-02-15T06:59:38Z +2339,2005-06-18T11:29:22Z,313,297,2005-06-21T10:29:22Z,1,2020-02-15T06:59:38Z +2340,2005-06-18T11:30:56Z,1913,157,2005-06-23T06:00:56Z,1,2020-02-15T06:59:38Z +2341,2005-06-18T11:35:30Z,638,31,2005-06-27T11:56:30Z,2,2020-02-15T06:59:38Z +2342,2005-06-18T11:42:40Z,2169,146,2005-06-20T14:40:40Z,1,2020-02-15T06:59:38Z +2343,2005-06-18T11:46:26Z,4554,20,2005-06-22T11:37:26Z,2,2020-02-15T06:59:38Z +2344,2005-06-18T12:01:47Z,2015,498,2005-06-19T11:56:47Z,2,2020-02-15T06:59:38Z +2345,2005-06-18T12:03:23Z,1818,6,2005-06-22T14:25:23Z,2,2020-02-15T06:59:38Z +2346,2005-06-18T12:08:16Z,2575,308,2005-06-27T15:02:16Z,1,2020-02-15T06:59:38Z +2347,2005-06-18T12:12:29Z,4516,194,2005-06-23T14:03:29Z,1,2020-02-15T06:59:38Z +2348,2005-06-18T12:15:43Z,3622,449,2005-06-24T14:03:43Z,2,2020-02-15T06:59:38Z +2349,2005-06-18T12:25:14Z,1536,495,2005-06-19T11:24:14Z,2,2020-02-15T06:59:38Z +2350,2005-06-18T12:25:29Z,1179,471,2005-06-23T11:35:29Z,1,2020-02-15T06:59:38Z +2351,2005-06-18T12:27:57Z,2942,216,2005-06-23T16:14:57Z,1,2020-02-15T06:59:38Z +2352,2005-06-18T12:40:15Z,2141,590,2005-06-22T07:07:15Z,2,2020-02-15T06:59:38Z +2353,2005-06-18T12:53:25Z,3223,361,2005-06-19T13:53:25Z,1,2020-02-15T06:59:38Z +2354,2005-06-18T12:54:18Z,2793,77,2005-06-26T07:23:18Z,2,2020-02-15T06:59:38Z +2355,2005-06-18T12:57:06Z,3613,125,2005-06-26T07:32:06Z,1,2020-02-15T06:59:38Z +2356,2005-06-18T12:59:23Z,2207,455,2005-06-21T10:12:23Z,2,2020-02-15T06:59:38Z +2357,2005-06-18T12:59:41Z,1323,561,2005-06-26T16:40:41Z,1,2020-02-15T06:59:38Z +2358,2005-06-18T13:00:51Z,1728,478,2005-06-26T12:58:51Z,1,2020-02-15T06:59:38Z +2359,2005-06-18T13:04:42Z,3087,201,2005-06-25T11:52:42Z,1,2020-02-15T06:59:38Z +2360,2005-06-18T13:11:13Z,37,57,2005-06-23T15:32:13Z,2,2020-02-15T06:59:38Z +2361,2005-06-18T13:19:05Z,3547,546,2005-06-23T07:59:05Z,1,2020-02-15T06:59:38Z +2362,2005-06-18T13:31:15Z,2815,514,2005-06-19T12:35:15Z,1,2020-02-15T06:59:38Z +2363,2005-06-18T13:33:59Z,3497,1,2005-06-19T17:40:59Z,1,2020-02-15T06:59:38Z +2364,2005-06-18T13:37:32Z,2856,512,2005-06-23T14:18:32Z,1,2020-02-15T06:59:38Z +2365,2005-06-18T13:45:34Z,3109,493,2005-06-21T12:12:34Z,2,2020-02-15T06:59:38Z +2366,2005-06-18T13:46:39Z,1413,162,2005-06-23T18:49:39Z,2,2020-02-15T06:59:38Z +2367,2005-06-18T14:00:31Z,4086,566,2005-06-22T14:45:31Z,2,2020-02-15T06:59:38Z +2368,2005-06-18T14:10:27Z,1058,99,2005-06-23T10:49:27Z,1,2020-02-15T06:59:38Z +2369,2005-06-18T14:25:29Z,1515,44,2005-06-23T18:45:29Z,2,2020-02-15T06:59:38Z +2370,2005-06-18T14:29:54Z,2656,489,2005-06-24T10:23:54Z,1,2020-02-15T06:59:38Z +2371,2005-06-18T14:35:29Z,178,248,2005-06-22T09:38:29Z,2,2020-02-15T06:59:38Z +2372,2005-06-18T14:37:37Z,1567,96,2005-06-21T08:40:37Z,2,2020-02-15T06:59:38Z +2373,2005-06-18T14:37:57Z,2780,544,2005-06-23T19:29:57Z,2,2020-02-15T06:59:38Z +2374,2005-06-18T14:44:06Z,2634,71,2005-06-22T17:14:06Z,1,2020-02-15T06:59:38Z +2375,2005-06-18T14:47:29Z,2175,259,2005-06-26T13:52:29Z,2,2020-02-15T06:59:38Z +2376,2005-06-18T14:55:30Z,3664,479,2005-06-25T17:40:30Z,1,2020-02-15T06:59:38Z +2377,2005-06-18T14:56:23Z,3568,193,2005-06-27T12:36:23Z,1,2020-02-15T06:59:38Z +2378,2005-06-18T14:57:49Z,2796,384,2005-06-26T18:23:49Z,2,2020-02-15T06:59:38Z +2379,2005-06-18T14:59:39Z,2708,597,2005-06-24T13:26:39Z,2,2020-02-15T06:59:38Z +2380,2005-06-18T15:00:04Z,4413,256,2005-06-24T13:29:04Z,2,2020-02-15T06:59:38Z +2381,2005-06-18T15:00:30Z,1491,167,2005-06-22T11:38:30Z,1,2020-02-15T06:59:38Z +2382,2005-06-18T15:03:52Z,915,568,2005-06-20T10:16:52Z,2,2020-02-15T06:59:38Z +2383,2005-06-18T15:17:59Z,2459,149,2005-06-26T18:42:59Z,2,2020-02-15T06:59:38Z +2384,2005-06-18T15:18:49Z,3378,132,2005-06-21T18:10:49Z,1,2020-02-15T06:59:38Z +2385,2005-06-18T15:22:40Z,1641,298,2005-06-26T10:02:40Z,1,2020-02-15T06:59:38Z +2386,2005-06-18T15:22:51Z,1361,293,2005-06-22T20:01:51Z,1,2020-02-15T06:59:38Z +2387,2005-06-18T15:24:19Z,692,289,2005-06-25T17:41:19Z,2,2020-02-15T06:59:38Z +2388,2005-06-18T15:26:30Z,2923,53,2005-06-20T20:24:30Z,1,2020-02-15T06:59:38Z +2389,2005-06-18T15:27:47Z,731,382,2005-06-21T12:26:47Z,1,2020-02-15T06:59:38Z +2390,2005-06-18T15:29:26Z,2748,239,2005-06-23T17:50:26Z,1,2020-02-15T06:59:38Z +2391,2005-06-18T15:33:30Z,2850,491,2005-06-25T14:30:30Z,1,2020-02-15T06:59:38Z +2392,2005-06-18T15:34:18Z,2213,261,2005-06-19T16:22:18Z,1,2020-02-15T06:59:38Z +2393,2005-06-18T15:37:55Z,3143,21,2005-06-25T17:11:55Z,1,2020-02-15T06:59:38Z +2394,2005-06-18T15:42:30Z,2669,60,2005-06-26T16:12:30Z,1,2020-02-15T06:59:38Z +2395,2005-06-18T15:45:15Z,899,544,2005-06-27T19:11:15Z,2,2020-02-15T06:59:38Z +2396,2005-06-18T15:49:48Z,1986,31,2005-06-27T20:31:48Z,2,2020-02-15T06:59:38Z +2397,2005-06-18T15:51:25Z,2895,76,2005-06-24T15:52:25Z,1,2020-02-15T06:59:38Z +2398,2005-06-18T15:56:53Z,3001,526,2005-06-27T14:25:53Z,2,2020-02-15T06:59:38Z +2399,2005-06-18T16:06:14Z,2492,577,2005-06-26T16:56:14Z,2,2020-02-15T06:59:38Z +2400,2005-06-18T16:10:46Z,3194,410,2005-06-25T20:34:46Z,1,2020-02-15T06:59:38Z +2401,2005-06-18T16:22:03Z,85,359,2005-06-19T13:49:03Z,2,2020-02-15T06:59:38Z +2402,2005-06-18T16:24:45Z,2833,360,2005-06-27T14:39:45Z,1,2020-02-15T06:59:38Z +2403,2005-06-18T16:33:22Z,2697,536,2005-06-23T19:25:22Z,1,2020-02-15T06:59:38Z +2404,2005-06-18T16:33:48Z,4138,456,2005-06-23T20:39:48Z,2,2020-02-15T06:59:38Z +2405,2005-06-18T16:36:38Z,3604,356,2005-06-21T19:15:38Z,1,2020-02-15T06:59:38Z +2406,2005-06-18T16:39:37Z,1321,497,2005-06-23T12:04:37Z,1,2020-02-15T06:59:38Z +2407,2005-06-18T16:50:41Z,2547,421,2005-06-24T15:29:41Z,2,2020-02-15T06:59:38Z +2408,2005-06-18T16:50:44Z,258,87,2005-06-19T20:11:44Z,1,2020-02-15T06:59:38Z +2409,2005-06-18T16:53:33Z,656,84,2005-06-20T18:23:33Z,1,2020-02-15T06:59:38Z +2410,2005-06-18T16:55:08Z,265,381,2005-06-20T12:40:08Z,2,2020-02-15T06:59:38Z +2411,2005-06-18T16:55:54Z,3302,558,2005-06-25T12:44:54Z,1,2020-02-15T06:59:38Z +2412,2005-06-18T16:58:58Z,1946,127,2005-06-27T22:57:58Z,1,2020-02-15T06:59:38Z +2413,2005-06-18T16:59:34Z,1851,170,2005-06-27T16:10:34Z,2,2020-02-15T06:59:38Z +2414,2005-06-18T17:01:55Z,4500,275,2005-06-20T17:42:55Z,1,2020-02-15T06:59:38Z +2415,2005-06-18T17:02:42Z,3105,434,2005-06-25T13:16:42Z,2,2020-02-15T06:59:38Z +2416,2005-06-18T17:07:34Z,2868,26,2005-06-24T19:16:34Z,1,2020-02-15T06:59:38Z +2417,2005-06-18T17:12:01Z,1956,219,2005-06-26T13:32:01Z,1,2020-02-15T06:59:38Z +2418,2005-06-18T17:14:42Z,2756,381,2005-06-26T16:33:42Z,1,2020-02-15T06:59:38Z +2419,2005-06-18T17:21:24Z,1255,102,2005-06-26T18:25:24Z,1,2020-02-15T06:59:38Z +2420,2005-06-18T17:22:28Z,241,502,2005-06-23T17:45:28Z,1,2020-02-15T06:59:38Z +2421,2005-06-18T17:25:05Z,3524,26,2005-06-23T21:09:05Z,2,2020-02-15T06:59:38Z +2422,2005-06-18T17:28:57Z,3170,527,2005-06-23T15:22:57Z,1,2020-02-15T06:59:38Z +2423,2005-06-18T17:32:08Z,1744,231,2005-06-21T11:58:08Z,1,2020-02-15T06:59:38Z +2424,2005-06-18T17:35:08Z,1884,233,2005-06-23T15:33:08Z,1,2020-02-15T06:59:38Z +2425,2005-06-18T17:37:45Z,2630,579,2005-06-27T18:40:45Z,2,2020-02-15T06:59:38Z +2426,2005-06-18T17:40:44Z,474,543,2005-06-22T14:30:44Z,2,2020-02-15T06:59:38Z +2427,2005-06-18T17:45:00Z,4278,176,2005-06-27T20:07:00Z,2,2020-02-15T06:59:38Z +2428,2005-06-18T17:47:34Z,3892,241,2005-06-19T14:39:34Z,2,2020-02-15T06:59:38Z +2429,2005-06-18T17:48:28Z,3238,583,2005-06-27T15:52:28Z,1,2020-02-15T06:59:38Z +2430,2005-06-18T17:51:46Z,1984,434,2005-06-23T19:17:46Z,1,2020-02-15T06:59:38Z +2431,2005-06-18T17:53:03Z,1383,295,2005-06-25T15:08:03Z,2,2020-02-15T06:59:38Z +2432,2005-06-18T17:59:18Z,4420,250,2005-06-25T15:19:18Z,2,2020-02-15T06:59:38Z +2433,2005-06-18T18:10:17Z,937,356,2005-06-23T14:46:17Z,2,2020-02-15T06:59:38Z +2434,2005-06-18T18:11:51Z,3739,12,2005-06-23T12:52:51Z,2,2020-02-15T06:59:38Z +2435,2005-06-18T18:12:26Z,3548,173,2005-06-22T13:43:26Z,2,2020-02-15T06:59:38Z +2436,2005-06-18T18:13:32Z,3328,534,2005-06-21T13:33:32Z,2,2020-02-15T06:59:38Z +2437,2005-06-18T18:30:26Z,1799,454,2005-06-21T18:36:26Z,1,2020-02-15T06:59:38Z +2438,2005-06-18T18:34:21Z,184,31,2005-06-19T16:50:21Z,1,2020-02-15T06:59:38Z +2439,2005-06-18T18:35:04Z,909,39,2005-06-21T19:47:04Z,2,2020-02-15T06:59:38Z +2440,2005-06-18T18:41:09Z,2866,380,2005-06-22T12:46:09Z,1,2020-02-15T06:59:38Z +2441,2005-06-18T18:45:11Z,3148,593,2005-06-20T00:42:11Z,1,2020-02-15T06:59:38Z +2442,2005-06-18T18:49:18Z,4045,364,2005-06-22T16:18:18Z,1,2020-02-15T06:59:38Z +2443,2005-06-18T18:52:30Z,1622,233,2005-06-24T21:27:30Z,1,2020-02-15T06:59:38Z +2444,2005-06-18T18:58:12Z,2233,576,2005-06-27T20:48:12Z,1,2020-02-15T06:59:38Z +2445,2005-06-18T19:02:11Z,2887,98,2005-06-23T22:25:11Z,1,2020-02-15T06:59:38Z +2446,2005-06-18T19:04:41Z,1283,466,2005-06-27T17:10:41Z,2,2020-02-15T06:59:38Z +2447,2005-06-18T19:10:55Z,2353,523,2005-06-27T16:35:55Z,1,2020-02-15T06:59:38Z +2448,2005-06-18T19:13:45Z,1642,308,2005-06-27T14:43:45Z,1,2020-02-15T06:59:38Z +2449,2005-06-18T19:18:36Z,3630,498,2005-06-27T23:49:36Z,1,2020-02-15T06:59:38Z +2450,2005-06-18T19:25:47Z,863,230,2005-06-27T15:54:47Z,1,2020-02-15T06:59:38Z +2451,2005-06-18T19:28:02Z,835,24,2005-06-23T16:41:02Z,1,2020-02-15T06:59:38Z +2452,2005-06-18T19:29:21Z,4318,77,2005-06-26T22:27:21Z,1,2020-02-15T06:59:38Z +2453,2005-06-18T19:30:53Z,2562,588,2005-06-20T17:22:53Z,1,2020-02-15T06:59:38Z +2454,2005-06-18T19:32:51Z,314,253,2005-06-24T20:03:51Z,2,2020-02-15T06:59:38Z +2455,2005-06-18T19:33:06Z,870,241,2005-06-21T15:21:06Z,1,2020-02-15T06:59:38Z +2456,2005-06-18T19:36:50Z,553,147,2005-06-23T22:48:50Z,1,2020-02-15T06:59:38Z +2457,2005-06-18T19:38:20Z,1277,91,2005-06-26T20:48:20Z,1,2020-02-15T06:59:38Z +2458,2005-06-18T19:39:05Z,599,572,2005-06-21T13:54:05Z,2,2020-02-15T06:59:38Z +2459,2005-06-18T19:44:08Z,1024,185,2005-06-23T19:14:08Z,2,2020-02-15T06:59:38Z +2460,2005-06-18T19:54:13Z,3933,553,2005-06-27T22:36:13Z,2,2020-02-15T06:59:38Z +2461,2005-06-18T19:58:12Z,78,343,2005-06-28T01:35:12Z,2,2020-02-15T06:59:38Z +2462,2005-06-18T20:00:15Z,2151,468,2005-06-21T21:54:15Z,2,2020-02-15T06:59:38Z +2463,2005-06-18T20:01:43Z,1186,194,2005-06-25T15:04:43Z,2,2020-02-15T06:59:38Z +2464,2005-06-18T20:06:05Z,463,380,2005-06-20T19:22:05Z,1,2020-02-15T06:59:38Z +2465,2005-06-18T20:07:02Z,3783,160,2005-06-25T20:55:02Z,1,2020-02-15T06:59:38Z +2466,2005-06-18T20:18:42Z,1356,427,2005-06-20T01:32:42Z,1,2020-02-15T06:59:38Z +2467,2005-06-18T20:20:05Z,4387,177,2005-06-20T17:01:05Z,1,2020-02-15T06:59:38Z +2468,2005-06-18T20:23:52Z,1833,382,2005-06-23T14:34:52Z,1,2020-02-15T06:59:38Z +2469,2005-06-18T20:24:23Z,1993,137,2005-06-27T15:39:23Z,1,2020-02-15T06:59:38Z +2470,2005-06-18T20:28:31Z,4319,40,2005-06-25T18:48:31Z,1,2020-02-15T06:59:38Z +2471,2005-06-18T20:31:00Z,3399,183,2005-06-24T18:01:00Z,2,2020-02-15T06:59:38Z +2472,2005-06-18T20:32:40Z,4556,70,2005-06-20T00:40:40Z,2,2020-02-15T06:59:38Z +2473,2005-06-18T20:42:45Z,3876,221,2005-06-19T20:17:45Z,1,2020-02-15T06:59:38Z +2474,2005-06-18T20:51:34Z,3450,151,2005-06-25T01:39:34Z,1,2020-02-15T06:59:38Z +2475,2005-06-18T20:52:46Z,889,336,2005-06-21T19:40:46Z,2,2020-02-15T06:59:38Z +2476,2005-06-18T20:57:12Z,3998,334,2005-06-20T15:42:12Z,1,2020-02-15T06:59:38Z +2477,2005-06-18T20:58:46Z,2510,206,2005-06-22T21:49:46Z,1,2020-02-15T06:59:38Z +2478,2005-06-18T21:01:21Z,2798,241,2005-06-24T00:20:21Z,1,2020-02-15T06:59:38Z +2479,2005-06-18T21:03:08Z,1624,408,2005-06-22T16:49:08Z,1,2020-02-15T06:59:38Z +2480,2005-06-18T21:04:09Z,4078,310,2005-06-22T16:24:09Z,1,2020-02-15T06:59:38Z +2481,2005-06-18T21:08:30Z,800,322,2005-06-23T02:35:30Z,2,2020-02-15T06:59:38Z +2482,2005-06-18T21:10:44Z,452,122,2005-06-19T20:39:44Z,1,2020-02-15T06:59:38Z +2483,2005-06-18T21:22:23Z,4225,88,2005-06-25T01:14:23Z,1,2020-02-15T06:59:38Z +2484,2005-06-18T21:25:23Z,1511,515,2005-06-24T16:03:23Z,2,2020-02-15T06:59:38Z +2485,2005-06-18T21:26:03Z,1562,56,2005-06-21T22:09:03Z,2,2020-02-15T06:59:38Z +2486,2005-06-18T21:26:56Z,268,15,2005-06-22T23:42:56Z,1,2020-02-15T06:59:38Z +2487,2005-06-18T21:32:54Z,3683,374,2005-06-23T21:11:54Z,2,2020-02-15T06:59:38Z +2488,2005-06-18T21:38:26Z,1338,403,2005-06-24T02:08:26Z,2,2020-02-15T06:59:38Z +2489,2005-06-18T22:00:44Z,4012,382,2005-06-22T02:06:44Z,2,2020-02-15T06:59:38Z +2490,2005-06-18T22:00:50Z,1934,402,2005-06-19T23:45:50Z,2,2020-02-15T06:59:38Z +2491,2005-06-18T22:01:31Z,1779,316,2005-06-26T02:46:31Z,1,2020-02-15T06:59:38Z +2492,2005-06-18T22:04:15Z,2858,237,2005-06-23T21:58:15Z,1,2020-02-15T06:59:38Z +2493,2005-06-18T22:12:09Z,4121,269,2005-06-27T23:44:09Z,1,2020-02-15T06:59:38Z +2494,2005-06-18T22:15:09Z,1313,434,2005-06-25T17:23:09Z,1,2020-02-15T06:59:38Z +2495,2005-06-18T22:15:42Z,3826,338,2005-06-21T23:21:42Z,1,2020-02-15T06:59:38Z +2496,2005-06-18T22:20:11Z,646,527,2005-06-20T03:08:11Z,2,2020-02-15T06:59:38Z +2497,2005-06-18T22:50:40Z,2327,171,2005-06-26T22:39:40Z,1,2020-02-15T06:59:38Z +2498,2005-06-18T22:56:26Z,2291,74,2005-06-22T20:02:26Z,1,2020-02-15T06:59:38Z +2499,2005-06-18T23:01:36Z,3172,348,2005-06-20T21:50:36Z,2,2020-02-15T06:59:38Z +2500,2005-06-18T23:07:12Z,4241,12,2005-06-26T17:27:12Z,1,2020-02-15T06:59:38Z +2501,2005-06-18T23:10:11Z,1185,450,2005-06-24T18:40:11Z,2,2020-02-15T06:59:38Z +2502,2005-06-18T23:12:13Z,2622,325,2005-06-20T04:19:13Z,2,2020-02-15T06:59:38Z +2503,2005-06-18T23:17:19Z,2486,176,2005-06-23T03:57:19Z,2,2020-02-15T06:59:38Z +2504,2005-06-18T23:19:53Z,1684,452,2005-06-21T04:43:53Z,2,2020-02-15T06:59:38Z +2505,2005-06-18T23:28:27Z,1670,519,2005-06-26T01:36:27Z,1,2020-02-15T06:59:38Z +2506,2005-06-18T23:29:53Z,2308,82,2005-06-25T18:11:53Z,2,2020-02-15T06:59:38Z +2507,2005-06-18T23:39:22Z,3121,325,2005-06-21T19:23:22Z,1,2020-02-15T06:59:38Z +2508,2005-06-18T23:43:58Z,4322,476,2005-06-20T19:26:58Z,2,2020-02-15T06:59:38Z +2509,2005-06-18T23:44:08Z,4469,213,2005-06-20T01:36:08Z,2,2020-02-15T06:59:38Z +2510,2005-06-18T23:44:21Z,3827,384,2005-06-24T00:31:21Z,1,2020-02-15T06:59:38Z +2511,2005-06-18T23:45:30Z,1824,234,2005-06-24T01:21:30Z,2,2020-02-15T06:59:38Z +2512,2005-06-18T23:48:47Z,4515,27,2005-06-21T04:58:47Z,2,2020-02-15T06:59:38Z +2513,2005-06-18T23:53:15Z,3379,515,2005-06-24T21:16:15Z,2,2020-02-15T06:59:38Z +2514,2005-06-18T23:56:44Z,2559,382,2005-06-23T21:10:44Z,1,2020-02-15T06:59:38Z +2515,2005-06-18T23:57:31Z,3213,188,2005-06-22T05:31:31Z,2,2020-02-15T06:59:38Z +2516,2005-06-19T00:03:28Z,2678,87,2005-06-21T00:30:28Z,2,2020-02-15T06:59:38Z +2517,2005-06-19T00:11:26Z,53,74,2005-06-25T02:19:26Z,1,2020-02-15T06:59:38Z +2518,2005-06-19T00:16:23Z,3503,86,2005-06-25T19:28:23Z,2,2020-02-15T06:59:38Z +2519,2005-06-19T00:19:21Z,1172,128,2005-06-25T01:46:21Z,1,2020-02-15T06:59:38Z +2520,2005-06-19T00:29:00Z,4181,446,2005-06-28T04:36:00Z,1,2020-02-15T06:59:38Z +2521,2005-06-19T00:41:08Z,132,92,2005-06-22T00:40:08Z,1,2020-02-15T06:59:38Z +2522,2005-06-19T00:43:42Z,550,579,2005-06-28T04:26:42Z,1,2020-02-15T06:59:38Z +2523,2005-06-19T00:45:56Z,460,89,2005-06-21T00:54:56Z,2,2020-02-15T06:59:38Z +2524,2005-06-19T00:48:11Z,441,465,2005-06-25T01:46:11Z,2,2020-02-15T06:59:38Z +2525,2005-06-19T00:48:22Z,1307,365,2005-06-24T19:10:22Z,2,2020-02-15T06:59:38Z +2526,2005-06-19T01:03:07Z,3309,500,2005-06-28T06:57:07Z,1,2020-02-15T06:59:38Z +2527,2005-06-19T01:10:31Z,387,463,2005-06-20T05:37:31Z,2,2020-02-15T06:59:38Z +2528,2005-06-19T01:14:12Z,1836,331,2005-06-26T05:08:12Z,2,2020-02-15T06:59:38Z +2529,2005-06-19T01:18:27Z,2306,478,2005-06-24T00:26:27Z,1,2020-02-15T06:59:38Z +2530,2005-06-19T01:20:00Z,4166,31,2005-06-23T04:10:00Z,1,2020-02-15T06:59:38Z +2531,2005-06-19T01:20:49Z,768,368,2005-06-22T01:50:49Z,2,2020-02-15T06:59:38Z +2532,2005-06-19T01:27:46Z,1870,26,2005-06-20T02:15:46Z,1,2020-02-15T06:59:38Z +2533,2005-06-19T01:34:26Z,4564,187,2005-06-22T20:19:26Z,1,2020-02-15T06:59:38Z +2534,2005-06-19T01:38:39Z,2540,517,2005-06-23T00:16:39Z,1,2020-02-15T06:59:38Z +2535,2005-06-19T01:39:04Z,901,130,2005-06-28T01:33:04Z,2,2020-02-15T06:59:38Z +2536,2005-06-19T01:41:34Z,4232,163,2005-06-27T03:11:34Z,1,2020-02-15T06:59:38Z +2537,2005-06-19T01:52:21Z,3499,388,2005-06-26T02:09:21Z,1,2020-02-15T06:59:38Z +2538,2005-06-19T01:56:59Z,1287,472,2005-06-25T00:54:59Z,2,2020-02-15T06:59:38Z +2539,2005-06-19T01:58:39Z,4474,527,2005-06-19T22:17:39Z,2,2020-02-15T06:59:38Z +2540,2005-06-19T02:04:48Z,4305,363,2005-06-20T22:42:48Z,2,2020-02-15T06:59:38Z +2541,2005-06-19T02:08:10Z,129,360,2005-06-23T23:32:10Z,1,2020-02-15T06:59:38Z +2542,2005-06-19T02:08:39Z,1446,67,2005-06-26T20:25:39Z,1,2020-02-15T06:59:38Z +2543,2005-06-19T02:14:11Z,1729,58,2005-06-21T00:40:11Z,2,2020-02-15T06:59:38Z +2544,2005-06-19T02:16:17Z,1465,558,2005-06-22T21:45:17Z,1,2020-02-15T06:59:38Z +2545,2005-06-19T02:23:36Z,3237,413,2005-06-20T03:17:36Z,2,2020-02-15T06:59:38Z +2546,2005-06-19T02:39:39Z,971,272,2005-06-23T03:56:39Z,2,2020-02-15T06:59:38Z +2547,2005-06-19T02:44:17Z,4560,162,2005-06-24T08:01:17Z,2,2020-02-15T06:59:38Z +2548,2005-06-19T02:45:35Z,4292,561,2005-06-22T06:52:35Z,2,2020-02-15T06:59:38Z +2549,2005-06-19T02:46:39Z,3854,495,2005-06-26T22:30:39Z,2,2020-02-15T06:59:38Z +2550,2005-06-19T02:49:55Z,1370,38,2005-06-24T01:37:55Z,1,2020-02-15T06:59:38Z +2551,2005-06-19T02:51:04Z,2007,444,2005-06-28T05:02:04Z,1,2020-02-15T06:59:38Z +2552,2005-06-19T03:01:29Z,664,389,2005-06-28T04:13:29Z,1,2020-02-15T06:59:38Z +2553,2005-06-19T03:04:59Z,923,473,2005-06-26T02:36:59Z,2,2020-02-15T06:59:38Z +2554,2005-06-19T03:05:38Z,3916,322,2005-06-25T23:03:38Z,1,2020-02-15T06:59:38Z +2555,2005-06-19T03:07:02Z,260,191,2005-06-25T05:25:02Z,2,2020-02-15T06:59:38Z +2556,2005-06-19T03:07:32Z,125,377,2005-06-23T23:09:32Z,1,2020-02-15T06:59:38Z +2557,2005-06-19T03:08:51Z,4546,257,2005-06-20T07:59:51Z,1,2020-02-15T06:59:38Z +2558,2005-06-19T03:09:16Z,2920,361,2005-06-24T05:29:16Z,1,2020-02-15T06:59:38Z +2559,2005-06-19T03:09:46Z,4433,414,2005-06-28T07:49:46Z,1,2020-02-15T06:59:38Z +2560,2005-06-19T03:12:42Z,3340,309,2005-06-28T02:28:42Z,1,2020-02-15T06:59:38Z +2561,2005-06-19T03:14:52Z,4128,256,2005-06-21T02:42:52Z,2,2020-02-15T06:59:38Z +2562,2005-06-19T03:15:05Z,51,265,2005-06-21T08:26:05Z,2,2020-02-15T06:59:38Z +2563,2005-06-19T03:24:17Z,1935,41,2005-06-23T04:08:17Z,2,2020-02-15T06:59:38Z +2564,2005-06-19T03:41:10Z,4008,408,2005-06-24T03:10:10Z,1,2020-02-15T06:59:38Z +2565,2005-06-19T03:44:03Z,2347,128,2005-06-24T01:26:03Z,2,2020-02-15T06:59:38Z +2566,2005-06-19T03:45:39Z,495,486,2005-06-25T08:43:39Z,2,2020-02-15T06:59:38Z +2567,2005-06-19T04:04:46Z,216,496,2005-06-19T23:39:46Z,2,2020-02-15T06:59:38Z +2568,2005-06-19T04:09:03Z,3032,190,2005-06-24T23:24:03Z,1,2020-02-15T06:59:38Z +2569,2005-06-19T04:19:04Z,30,213,2005-06-26T04:31:04Z,1,2020-02-15T06:59:38Z +2570,2005-06-19T04:20:13Z,1105,5,2005-06-25T07:00:13Z,1,2020-02-15T06:59:38Z +2571,2005-06-19T04:20:14Z,1800,66,2005-06-21T07:28:14Z,2,2020-02-15T06:59:38Z +2572,2005-06-19T04:21:26Z,2449,159,2005-06-23T09:22:26Z,2,2020-02-15T06:59:38Z +2573,2005-06-19T04:23:18Z,3354,563,2005-06-23T06:04:18Z,1,2020-02-15T06:59:38Z +2574,2005-06-19T04:23:52Z,3320,143,2005-06-20T05:24:52Z,1,2020-02-15T06:59:38Z +2575,2005-06-19T04:32:52Z,354,336,2005-06-24T09:37:52Z,1,2020-02-15T06:59:38Z +2576,2005-06-19T04:34:15Z,2928,559,2005-06-28T10:02:15Z,2,2020-02-15T06:59:38Z +2577,2005-06-19T04:36:03Z,447,66,2005-06-28T00:38:03Z,2,2020-02-15T06:59:38Z +2578,2005-06-19T04:40:06Z,1695,267,2005-06-26T09:37:06Z,2,2020-02-15T06:59:38Z +2579,2005-06-19T04:40:44Z,3836,493,2005-06-22T09:22:44Z,1,2020-02-15T06:59:38Z +2580,2005-06-19T04:44:30Z,2527,219,2005-06-23T04:15:30Z,1,2020-02-15T06:59:38Z +2581,2005-06-19T04:54:13Z,376,456,2005-06-23T23:28:13Z,2,2020-02-15T06:59:38Z +2582,2005-06-19T04:56:27Z,201,267,2005-06-26T08:56:27Z,2,2020-02-15T06:59:38Z +2583,2005-06-19T05:01:40Z,3999,523,2005-06-28T00:04:40Z,1,2020-02-15T06:59:38Z +2584,2005-06-19T05:02:36Z,3733,90,2005-06-28T04:52:36Z,2,2020-02-15T06:59:38Z +2585,2005-06-19T05:05:03Z,91,406,2005-06-20T09:28:03Z,1,2020-02-15T06:59:38Z +2586,2005-06-19T05:05:11Z,4104,537,2005-06-27T00:23:11Z,1,2020-02-15T06:59:38Z +2587,2005-06-19T05:06:14Z,2188,331,2005-06-24T10:50:14Z,2,2020-02-15T06:59:38Z +2588,2005-06-19T05:20:31Z,3626,143,2005-06-22T04:20:31Z,2,2020-02-15T06:59:38Z +2589,2005-06-19T05:21:27Z,225,164,2005-06-21T09:55:27Z,2,2020-02-15T06:59:38Z +2590,2005-06-19T05:31:40Z,3572,324,2005-06-20T07:58:40Z,2,2020-02-15T06:59:38Z +2591,2005-06-19T05:32:22Z,4481,438,2005-06-25T23:42:22Z,1,2020-02-15T06:59:38Z +2592,2005-06-19T05:36:54Z,282,208,2005-06-21T08:44:54Z,1,2020-02-15T06:59:38Z +2593,2005-06-19T05:40:11Z,2031,556,2005-06-28T08:11:11Z,1,2020-02-15T06:59:38Z +2594,2005-06-19T05:43:43Z,829,123,2005-06-25T03:41:43Z,2,2020-02-15T06:59:38Z +2595,2005-06-19T05:43:55Z,3197,122,2005-06-25T10:20:55Z,1,2020-02-15T06:59:38Z +2596,2005-06-19T05:48:26Z,2229,80,2005-06-24T10:16:26Z,1,2020-02-15T06:59:38Z +2597,2005-06-19T05:53:46Z,2278,407,2005-06-20T05:14:46Z,1,2020-02-15T06:59:38Z +2598,2005-06-19T05:59:57Z,2079,265,2005-06-24T11:44:57Z,2,2020-02-15T06:59:38Z +2599,2005-06-19T06:06:07Z,461,171,2005-06-27T01:10:07Z,1,2020-02-15T06:59:38Z +2600,2005-06-19T06:07:25Z,469,423,2005-06-28T03:37:25Z,2,2020-02-15T06:59:38Z +2601,2005-06-19T06:09:44Z,2898,98,2005-06-20T08:03:44Z,1,2020-02-15T06:59:38Z +2602,2005-06-19T06:10:08Z,4124,173,2005-06-24T00:39:08Z,2,2020-02-15T06:59:38Z +2603,2005-06-19T06:21:25Z,587,222,2005-06-26T03:19:25Z,1,2020-02-15T06:59:38Z +2604,2005-06-19T06:30:10Z,2889,28,2005-06-25T11:16:10Z,2,2020-02-15T06:59:38Z +2605,2005-06-19T06:48:01Z,2342,38,2005-06-25T07:00:01Z,1,2020-02-15T06:59:38Z +2606,2005-06-19T06:51:32Z,4133,364,2005-06-21T03:15:32Z,2,2020-02-15T06:59:38Z +2607,2005-06-19T06:55:01Z,3922,340,2005-06-25T03:21:01Z,2,2020-02-15T06:59:38Z +2608,2005-06-19T07:10:36Z,1618,132,2005-06-24T13:09:36Z,1,2020-02-15T06:59:38Z +2609,2005-06-19T07:13:12Z,2254,383,2005-06-28T12:30:12Z,2,2020-02-15T06:59:38Z +2610,2005-06-19T07:16:20Z,3845,542,2005-06-25T09:39:20Z,2,2020-02-15T06:59:38Z +2611,2005-06-19T07:18:17Z,3682,301,2005-06-21T10:19:17Z,1,2020-02-15T06:59:38Z +2612,2005-06-19T07:19:41Z,1691,287,2005-06-25T11:10:41Z,1,2020-02-15T06:59:38Z +2613,2005-06-19T07:25:50Z,3830,179,2005-06-21T03:04:50Z,1,2020-02-15T06:59:38Z +2614,2005-06-19T07:28:11Z,4147,145,2005-06-22T12:33:11Z,1,2020-02-15T06:59:38Z +2615,2005-06-19T07:29:13Z,3810,578,2005-06-27T12:50:13Z,1,2020-02-15T06:59:38Z +2616,2005-06-19T07:33:00Z,581,478,2005-06-28T03:05:00Z,1,2020-02-15T06:59:38Z +2617,2005-06-19T07:48:31Z,204,313,2005-06-27T11:56:31Z,1,2020-02-15T06:59:38Z +2618,2005-06-19T08:03:01Z,2465,310,2005-06-24T03:23:01Z,2,2020-02-15T06:59:38Z +2619,2005-06-19T08:03:12Z,1848,350,2005-06-21T05:02:12Z,2,2020-02-15T06:59:38Z +2620,2005-06-19T08:06:29Z,3183,94,2005-06-24T11:42:29Z,1,2020-02-15T06:59:38Z +2621,2005-06-19T08:07:31Z,1746,439,2005-06-28T05:36:31Z,1,2020-02-15T06:59:38Z +2622,2005-06-19T08:10:41Z,1393,573,2005-06-28T10:44:41Z,2,2020-02-15T06:59:38Z +2623,2005-06-19T08:11:51Z,4477,12,2005-06-26T12:28:51Z,2,2020-02-15T06:59:38Z +2624,2005-06-19T08:22:09Z,3071,32,2005-06-27T11:13:09Z,1,2020-02-15T06:59:38Z +2625,2005-06-19T08:23:11Z,3946,25,2005-06-26T09:52:11Z,2,2020-02-15T06:59:38Z +2626,2005-06-19T08:28:44Z,2816,450,2005-06-24T03:58:44Z,1,2020-02-15T06:59:38Z +2627,2005-06-19T08:32:00Z,2779,592,2005-06-24T04:31:00Z,2,2020-02-15T06:59:38Z +2628,2005-06-19T08:34:53Z,3917,3,2005-06-28T04:19:53Z,2,2020-02-15T06:59:38Z +2629,2005-06-19T08:42:12Z,1810,458,2005-06-28T03:38:12Z,2,2020-02-15T06:59:38Z +2630,2005-06-19T08:47:21Z,3904,236,2005-06-25T09:31:21Z,1,2020-02-15T06:59:38Z +2631,2005-06-19T08:49:53Z,3471,39,2005-06-26T03:25:53Z,1,2020-02-15T06:59:38Z +2632,2005-06-19T08:51:47Z,2274,574,2005-06-23T07:13:47Z,2,2020-02-15T06:59:38Z +2633,2005-06-19T08:53:10Z,3462,68,2005-06-20T07:56:10Z,1,2020-02-15T06:59:38Z +2634,2005-06-19T08:55:17Z,3687,318,2005-06-20T11:44:17Z,2,2020-02-15T06:59:38Z +2635,2005-06-19T09:08:45Z,3332,105,2005-06-26T09:20:45Z,1,2020-02-15T06:59:38Z +2636,2005-06-19T09:13:06Z,2102,253,2005-06-25T07:47:06Z,2,2020-02-15T06:59:38Z +2637,2005-06-19T09:20:56Z,2736,327,2005-06-27T10:09:56Z,2,2020-02-15T06:59:38Z +2638,2005-06-19T09:23:30Z,2944,295,2005-06-26T14:56:30Z,1,2020-02-15T06:59:38Z +2639,2005-06-19T09:24:02Z,3971,116,2005-06-21T14:16:02Z,2,2020-02-15T06:59:38Z +2640,2005-06-19T09:26:13Z,721,540,2005-06-20T14:38:13Z,1,2020-02-15T06:59:38Z +2641,2005-06-19T09:38:33Z,231,374,2005-06-22T09:55:33Z,1,2020-02-15T06:59:38Z +2642,2005-06-19T09:39:01Z,2065,4,2005-06-25T08:33:01Z,1,2020-02-15T06:59:38Z +2643,2005-06-19T09:39:27Z,1928,318,2005-06-26T10:27:27Z,2,2020-02-15T06:59:38Z +2644,2005-06-19T09:42:30Z,1923,309,2005-06-27T07:23:30Z,2,2020-02-15T06:59:38Z +2645,2005-06-19T09:50:35Z,2284,181,2005-06-28T06:47:35Z,2,2020-02-15T06:59:38Z +2646,2005-06-19T09:56:01Z,3511,275,2005-06-21T04:15:01Z,2,2020-02-15T06:59:38Z +2647,2005-06-19T09:57:56Z,1954,54,2005-06-22T15:55:56Z,1,2020-02-15T06:59:38Z +2648,2005-06-19T10:06:20Z,1620,31,2005-06-21T04:30:20Z,2,2020-02-15T06:59:38Z +2649,2005-06-19T10:20:09Z,98,153,2005-06-21T10:05:09Z,1,2020-02-15T06:59:38Z +2650,2005-06-19T10:21:45Z,4211,209,2005-06-21T08:01:45Z,1,2020-02-15T06:59:38Z +2651,2005-06-19T10:22:56Z,2181,576,2005-06-27T13:37:56Z,1,2020-02-15T06:59:38Z +2652,2005-06-19T10:35:26Z,3108,589,2005-06-28T08:03:26Z,1,2020-02-15T06:59:38Z +2653,2005-06-19T10:36:53Z,3528,340,2005-06-26T15:15:53Z,1,2020-02-15T06:59:38Z +2654,2005-06-19T10:37:54Z,3697,405,2005-06-27T11:44:54Z,2,2020-02-15T06:59:38Z +2655,2005-06-19T10:38:42Z,1649,29,2005-06-23T14:20:42Z,1,2020-02-15T06:59:38Z +2656,2005-06-19T10:42:33Z,559,280,2005-06-24T08:31:33Z,2,2020-02-15T06:59:38Z +2657,2005-06-19T10:42:59Z,3595,19,2005-06-28T12:37:59Z,1,2020-02-15T06:59:38Z +2658,2005-06-19T10:43:42Z,3281,156,2005-06-24T16:23:42Z,1,2020-02-15T06:59:38Z +2659,2005-06-19T10:47:42Z,66,139,2005-06-23T14:03:42Z,1,2020-02-15T06:59:38Z +2660,2005-06-19T10:50:02Z,4341,221,2005-06-28T12:49:02Z,1,2020-02-15T06:59:38Z +2661,2005-06-19T10:50:52Z,3652,452,2005-06-25T08:44:52Z,2,2020-02-15T06:59:38Z +2662,2005-06-19T10:53:42Z,3936,68,2005-06-20T11:41:42Z,1,2020-02-15T06:59:38Z +2663,2005-06-19T10:54:00Z,1012,583,2005-06-20T16:48:00Z,1,2020-02-15T06:59:38Z +2664,2005-06-19T11:11:23Z,3496,299,2005-06-28T08:30:23Z,2,2020-02-15T06:59:38Z +2665,2005-06-19T11:12:35Z,4531,133,2005-06-26T11:55:35Z,2,2020-02-15T06:59:38Z +2666,2005-06-19T11:17:12Z,1872,454,2005-06-28T12:47:12Z,1,2020-02-15T06:59:38Z +2667,2005-06-19T11:28:46Z,1028,200,2005-06-27T11:48:46Z,2,2020-02-15T06:59:38Z +2668,2005-06-19T11:28:47Z,3127,568,2005-06-24T10:12:47Z,2,2020-02-15T06:59:38Z +2669,2005-06-19T11:28:52Z,2734,523,2005-06-20T16:43:52Z,1,2020-02-15T06:59:38Z +2670,2005-06-19T11:30:16Z,3518,457,2005-06-21T17:25:16Z,2,2020-02-15T06:59:38Z +2671,2005-06-19T11:33:11Z,2164,451,2005-06-26T14:30:11Z,2,2020-02-15T06:59:38Z +2672,2005-06-19T11:42:04Z,1164,420,2005-06-25T09:14:04Z,2,2020-02-15T06:59:38Z +2673,2005-06-19T11:42:20Z,2487,29,2005-06-23T07:16:20Z,1,2020-02-15T06:59:38Z +2674,2005-06-19T11:47:59Z,3744,585,2005-06-20T08:09:59Z,1,2020-02-15T06:59:38Z +2675,2005-06-19T11:52:15Z,3078,230,2005-06-23T16:45:15Z,1,2020-02-15T06:59:38Z +2676,2005-06-19T11:54:57Z,3938,477,2005-06-24T15:34:57Z,2,2020-02-15T06:59:38Z +2677,2005-06-19T12:01:59Z,4384,428,2005-06-21T06:15:59Z,2,2020-02-15T06:59:38Z +2678,2005-06-19T12:12:23Z,4230,258,2005-06-21T16:28:23Z,2,2020-02-15T06:59:38Z +2679,2005-06-19T12:12:30Z,1994,109,2005-06-27T08:27:30Z,1,2020-02-15T06:59:38Z +2680,2005-06-19T12:13:37Z,865,114,2005-06-27T15:15:37Z,1,2020-02-15T06:59:38Z +2681,2005-06-19T12:15:27Z,2704,196,2005-06-21T16:48:27Z,2,2020-02-15T06:59:38Z +2682,2005-06-19T12:18:17Z,3609,538,2005-06-28T14:09:17Z,1,2020-02-15T06:59:38Z +2683,2005-06-19T12:27:19Z,2860,241,2005-06-21T16:26:19Z,2,2020-02-15T06:59:38Z +2684,2005-06-19T12:29:08Z,1225,17,2005-06-28T08:50:08Z,2,2020-02-15T06:59:38Z +2685,2005-06-19T12:35:21Z,1170,283,2005-06-22T16:58:21Z,1,2020-02-15T06:59:38Z +2686,2005-06-19T12:44:20Z,2686,68,2005-06-20T16:00:20Z,1,2020-02-15T06:59:38Z +2687,2005-06-19T12:46:52Z,3152,254,2005-06-23T06:58:52Z,2,2020-02-15T06:59:38Z +2688,2005-06-19T12:50:56Z,4281,309,2005-06-28T17:58:56Z,2,2020-02-15T06:59:38Z +2689,2005-06-19T12:58:53Z,2478,567,2005-06-24T17:35:53Z,1,2020-02-15T06:59:38Z +2690,2005-06-19T13:00:02Z,1381,391,2005-06-27T14:29:02Z,1,2020-02-15T06:59:38Z +2691,2005-06-19T13:06:50Z,3469,242,2005-06-26T15:56:50Z,1,2020-02-15T06:59:38Z +2692,2005-06-19T13:08:19Z,3162,388,2005-06-21T16:45:19Z,1,2020-02-15T06:59:38Z +2693,2005-06-19T13:11:47Z,2570,107,2005-06-27T11:17:47Z,1,2020-02-15T06:59:38Z +2694,2005-06-19T13:17:21Z,380,368,2005-06-24T15:09:21Z,1,2020-02-15T06:59:38Z +2695,2005-06-19T13:25:53Z,190,208,2005-06-24T17:12:53Z,2,2020-02-15T06:59:38Z +2696,2005-06-19T13:28:42Z,2110,597,2005-06-28T14:06:42Z,2,2020-02-15T06:59:38Z +2697,2005-06-19T13:29:08Z,2271,448,2005-06-23T13:21:08Z,1,2020-02-15T06:59:38Z +2698,2005-06-19T13:29:11Z,3900,420,2005-06-20T07:31:11Z,2,2020-02-15T06:59:38Z +2699,2005-06-19T13:29:28Z,72,267,2005-06-24T11:15:28Z,2,2020-02-15T06:59:38Z +2700,2005-06-19T13:31:52Z,928,180,2005-06-27T19:30:52Z,1,2020-02-15T06:59:38Z +2701,2005-06-19T13:33:06Z,1623,29,2005-06-28T15:11:06Z,2,2020-02-15T06:59:38Z +2702,2005-06-19T13:35:56Z,1736,329,2005-06-20T14:07:56Z,2,2020-02-15T06:59:38Z +2703,2005-06-19T13:36:06Z,4080,319,2005-06-28T08:26:06Z,2,2020-02-15T06:59:38Z +2704,2005-06-19T13:50:10Z,2026,246,2005-06-26T18:25:10Z,2,2020-02-15T06:59:38Z +2705,2005-06-19T13:54:30Z,1191,562,2005-06-20T12:31:30Z,1,2020-02-15T06:59:38Z +2706,2005-06-19T13:56:51Z,373,559,2005-06-21T17:23:51Z,2,2020-02-15T06:59:38Z +2707,2005-06-19T13:57:08Z,4486,589,2005-06-27T11:09:08Z,2,2020-02-15T06:59:38Z +2708,2005-06-19T13:59:05Z,2659,541,2005-06-24T10:02:05Z,2,2020-02-15T06:59:38Z +2709,2005-06-19T14:00:26Z,2877,7,2005-06-23T14:56:26Z,2,2020-02-15T06:59:38Z +2710,2005-06-19T14:03:56Z,2965,446,2005-06-21T16:15:56Z,1,2020-02-15T06:59:38Z +2711,2005-06-19T14:12:22Z,3944,313,2005-06-21T09:29:22Z,1,2020-02-15T06:59:38Z +2712,2005-06-19T14:20:13Z,3132,411,2005-06-22T19:08:13Z,1,2020-02-15T06:59:38Z +2713,2005-06-19T14:23:09Z,3979,378,2005-06-20T17:55:09Z,1,2020-02-15T06:59:38Z +2714,2005-06-19T14:26:09Z,2853,81,2005-06-23T17:24:09Z,2,2020-02-15T06:59:38Z +2715,2005-06-19T14:29:35Z,2082,404,2005-06-26T08:44:35Z,2,2020-02-15T06:59:38Z +2716,2005-06-19T14:40:17Z,944,252,2005-06-27T17:45:17Z,2,2020-02-15T06:59:38Z +2717,2005-06-19T14:46:10Z,140,200,2005-06-22T20:17:10Z,1,2020-02-15T06:59:38Z +2718,2005-06-19T14:49:42Z,4443,139,2005-06-26T19:37:42Z,1,2020-02-15T06:59:38Z +2719,2005-06-19T14:50:19Z,1200,336,2005-06-20T14:33:19Z,2,2020-02-15T06:59:38Z +2720,2005-06-19T14:51:55Z,3597,504,2005-06-27T13:06:55Z,1,2020-02-15T06:59:38Z +2721,2005-06-19T14:53:24Z,3786,358,2005-06-21T18:22:24Z,2,2020-02-15T06:59:38Z +2722,2005-06-19T14:55:17Z,952,45,2005-06-25T13:11:17Z,2,2020-02-15T06:59:38Z +2723,2005-06-19T14:55:23Z,4317,277,2005-06-20T14:28:23Z,1,2020-02-15T06:59:38Z +2724,2005-06-19T14:57:54Z,3879,103,2005-06-22T16:31:54Z,2,2020-02-15T06:59:38Z +2725,2005-06-19T15:01:23Z,63,246,2005-06-22T09:08:23Z,1,2020-02-15T06:59:38Z +2726,2005-06-19T15:02:20Z,2970,420,2005-06-21T15:38:20Z,1,2020-02-15T06:59:38Z +2727,2005-06-19T15:02:39Z,3261,129,2005-06-28T17:49:39Z,1,2020-02-15T06:59:38Z +2728,2005-06-19T15:04:04Z,775,408,2005-06-22T12:22:04Z,2,2020-02-15T06:59:38Z +2729,2005-06-19T15:06:15Z,4449,510,2005-06-27T17:58:15Z,2,2020-02-15T06:59:38Z +2730,2005-06-19T15:10:09Z,1264,30,2005-06-28T13:05:09Z,1,2020-02-15T06:59:38Z +2731,2005-06-19T15:14:55Z,4218,138,2005-06-27T14:30:55Z,2,2020-02-15T06:59:38Z +2732,2005-06-19T15:19:39Z,610,386,2005-06-25T19:39:39Z,2,2020-02-15T06:59:38Z +2733,2005-06-19T15:21:53Z,1535,188,2005-06-23T11:58:53Z,2,2020-02-15T06:59:38Z +2734,2005-06-19T15:36:27Z,794,204,2005-06-20T13:44:27Z,2,2020-02-15T06:59:38Z +2735,2005-06-19T15:42:07Z,4550,29,2005-06-22T17:28:07Z,1,2020-02-15T06:59:38Z +2736,2005-06-19T15:43:20Z,4510,359,2005-06-21T13:03:20Z,1,2020-02-15T06:59:38Z +2737,2005-06-19T15:48:33Z,3131,513,2005-06-26T18:44:33Z,2,2020-02-15T06:59:38Z +2738,2005-06-19T15:56:30Z,350,75,2005-06-20T16:14:30Z,2,2020-02-15T06:59:38Z +2739,2005-06-19T15:58:38Z,213,212,2005-06-27T15:01:38Z,2,2020-02-15T06:59:38Z +2740,2005-06-19T15:59:04Z,1534,92,2005-06-28T12:18:04Z,2,2020-02-15T06:59:38Z +2741,2005-06-19T16:05:41Z,1662,36,2005-06-20T20:48:41Z,1,2020-02-15T06:59:38Z +2742,2005-06-19T16:05:47Z,4154,187,2005-06-26T21:34:47Z,1,2020-02-15T06:59:38Z +2743,2005-06-19T16:15:56Z,2611,35,2005-06-23T12:30:56Z,1,2020-02-15T06:59:38Z +2744,2005-06-19T16:20:40Z,4511,368,2005-06-22T11:44:40Z,2,2020-02-15T06:59:38Z +2745,2005-06-19T16:21:19Z,1253,26,2005-06-21T22:07:19Z,2,2020-02-15T06:59:38Z +2746,2005-06-19T16:21:40Z,933,562,2005-06-28T11:56:40Z,2,2020-02-15T06:59:38Z +2747,2005-06-19T16:22:07Z,1374,422,2005-06-24T19:28:07Z,1,2020-02-15T06:59:38Z +2748,2005-06-19T16:22:26Z,511,473,2005-06-21T21:55:26Z,1,2020-02-15T06:59:38Z +2749,2005-06-19T16:27:35Z,1540,358,2005-06-25T21:06:35Z,2,2020-02-15T06:59:38Z +2750,2005-06-19T16:37:24Z,3775,197,2005-06-20T13:55:24Z,2,2020-02-15T06:59:38Z +2751,2005-06-19T16:39:23Z,1291,148,2005-06-25T13:57:23Z,1,2020-02-15T06:59:38Z +2752,2005-06-19T16:44:18Z,386,149,2005-06-22T12:40:18Z,2,2020-02-15T06:59:38Z +2753,2005-06-19T16:44:35Z,2408,23,2005-06-24T13:45:35Z,1,2020-02-15T06:59:38Z +2754,2005-06-19T16:55:59Z,1761,267,2005-06-26T18:11:59Z,1,2020-02-15T06:59:38Z +2755,2005-06-19T16:56:31Z,946,506,2005-06-27T12:02:31Z,2,2020-02-15T06:59:38Z +2756,2005-06-19T16:57:42Z,3264,144,2005-06-26T15:30:42Z,2,2020-02-15T06:59:38Z +2757,2005-06-19T17:01:14Z,3814,243,2005-06-28T11:38:14Z,1,2020-02-15T06:59:38Z +2758,2005-06-19T17:04:35Z,3558,423,2005-06-26T14:45:35Z,2,2020-02-15T06:59:38Z +2759,2005-06-19T17:10:24Z,687,351,2005-06-24T21:56:24Z,2,2020-02-15T06:59:38Z +2760,2005-06-19T17:16:33Z,2602,192,2005-06-26T14:58:33Z,1,2020-02-15T06:59:38Z +2761,2005-06-19T17:22:17Z,2134,431,2005-06-20T20:20:17Z,2,2020-02-15T06:59:38Z +2762,2005-06-19T17:22:31Z,3431,457,2005-06-25T22:43:31Z,2,2020-02-15T06:59:38Z +2763,2005-06-19T17:23:34Z,3096,276,2005-06-21T21:37:34Z,2,2020-02-15T06:59:38Z +2764,2005-06-19T17:27:25Z,1718,479,2005-06-28T17:18:25Z,2,2020-02-15T06:59:38Z +2765,2005-06-19T17:34:39Z,1017,478,2005-06-27T23:26:39Z,1,2020-02-15T06:59:38Z +2766,2005-06-19T17:45:15Z,3421,345,2005-06-23T20:11:15Z,2,2020-02-15T06:59:38Z +2767,2005-06-19T17:46:35Z,4052,596,2005-06-24T22:42:35Z,1,2020-02-15T06:59:38Z +2768,2005-06-19T17:46:52Z,3018,129,2005-06-25T21:49:52Z,1,2020-02-15T06:59:38Z +2769,2005-06-19T17:52:14Z,1222,354,2005-06-26T20:30:14Z,2,2020-02-15T06:59:38Z +2770,2005-06-19T17:54:22Z,3042,533,2005-06-26T23:09:22Z,2,2020-02-15T06:59:38Z +2771,2005-06-19T17:54:48Z,40,262,2005-06-27T17:14:48Z,1,2020-02-15T06:59:38Z +2772,2005-06-19T17:59:27Z,1221,520,2005-06-23T17:52:27Z,1,2020-02-15T06:59:38Z +2773,2005-06-19T18:04:18Z,4155,505,2005-06-28T23:52:18Z,1,2020-02-15T06:59:38Z +2774,2005-06-19T18:05:11Z,2809,299,2005-06-21T16:21:11Z,2,2020-02-15T06:59:38Z +2775,2005-06-19T18:14:20Z,672,590,2005-06-26T19:52:20Z,1,2020-02-15T06:59:38Z +2776,2005-06-19T18:16:24Z,1726,551,2005-06-26T14:43:24Z,2,2020-02-15T06:59:38Z +2777,2005-06-19T18:16:26Z,4092,230,2005-06-20T13:43:26Z,2,2020-02-15T06:59:38Z +2778,2005-06-19T18:18:12Z,3357,422,2005-06-28T21:43:12Z,1,2020-02-15T06:59:38Z +2779,2005-06-19T18:19:07Z,1020,376,2005-06-23T18:25:07Z,2,2020-02-15T06:59:38Z +2780,2005-06-19T18:19:33Z,1513,360,2005-06-28T22:29:33Z,1,2020-02-15T06:59:38Z +2781,2005-06-19T18:24:42Z,1230,197,2005-06-27T17:02:42Z,2,2020-02-15T06:59:38Z +2782,2005-06-19T18:25:07Z,3644,156,2005-06-22T14:10:07Z,1,2020-02-15T06:59:38Z +2783,2005-06-19T18:29:10Z,2778,113,2005-06-21T22:09:10Z,1,2020-02-15T06:59:38Z +2784,2005-06-19T18:40:29Z,2305,289,2005-06-28T15:27:29Z,1,2020-02-15T06:59:38Z +2785,2005-06-19T18:43:57Z,826,137,2005-06-24T15:36:57Z,2,2020-02-15T06:59:38Z +2786,2005-06-19T18:46:43Z,2255,594,2005-06-22T16:52:43Z,1,2020-02-15T06:59:38Z +2787,2005-06-19T18:47:00Z,3371,307,2005-06-22T20:22:00Z,2,2020-02-15T06:59:38Z +2788,2005-06-19T18:48:11Z,1457,171,2005-06-21T13:32:11Z,1,2020-02-15T06:59:38Z +2789,2005-06-19T18:48:21Z,2398,514,2005-06-21T21:50:21Z,1,2020-02-15T06:59:38Z +2790,2005-06-19T18:49:45Z,202,97,2005-06-21T00:13:45Z,1,2020-02-15T06:59:38Z +2791,2005-06-19T18:51:27Z,2174,299,2005-06-22T19:35:27Z,2,2020-02-15T06:59:38Z +2792,2005-06-19T18:52:25Z,3057,437,2005-06-23T17:39:25Z,1,2020-02-15T06:59:38Z +2793,2005-06-19T18:52:37Z,732,419,2005-06-25T19:45:37Z,2,2020-02-15T06:59:38Z +2794,2005-06-19T18:53:05Z,1957,85,2005-06-22T13:15:05Z,1,2020-02-15T06:59:38Z +2795,2005-06-19T18:58:53Z,3694,129,2005-06-28T18:56:53Z,1,2020-02-15T06:59:38Z +2796,2005-06-19T19:00:37Z,2337,209,2005-06-25T17:18:37Z,2,2020-02-15T06:59:38Z +2797,2005-06-19T19:04:32Z,3222,486,2005-06-20T22:43:32Z,1,2020-02-15T06:59:38Z +2798,2005-06-19T19:07:48Z,1343,180,2005-06-23T00:09:48Z,2,2020-02-15T06:59:38Z +2799,2005-06-19T19:15:21Z,4579,576,2005-06-21T21:35:21Z,1,2020-02-15T06:59:38Z +2800,2005-06-19T19:15:56Z,183,146,2005-06-23T00:15:56Z,1,2020-02-15T06:59:38Z +2801,2005-06-19T19:18:09Z,4572,29,2005-06-20T20:11:09Z,2,2020-02-15T06:59:38Z +2802,2005-06-19T19:18:17Z,4067,489,2005-06-21T17:58:17Z,2,2020-02-15T06:59:38Z +2803,2005-06-19T19:18:27Z,103,120,2005-06-27T21:48:27Z,1,2020-02-15T06:59:38Z +2804,2005-06-19T19:24:54Z,88,426,2005-06-25T01:19:54Z,2,2020-02-15T06:59:38Z +2805,2005-06-19T19:29:17Z,2153,80,2005-06-27T23:14:17Z,2,2020-02-15T06:59:38Z +2806,2005-06-19T19:30:48Z,2114,510,2005-06-20T19:42:48Z,2,2020-02-15T06:59:38Z +2807,2005-06-19T19:32:53Z,2825,194,2005-06-25T00:30:53Z,2,2020-02-15T06:59:38Z +2808,2005-06-19T19:34:45Z,65,325,2005-06-27T14:49:45Z,1,2020-02-15T06:59:38Z +2809,2005-06-19T19:40:27Z,1786,44,2005-06-27T15:28:27Z,2,2020-02-15T06:59:38Z +2810,2005-06-19T19:44:12Z,2558,67,2005-06-20T19:41:12Z,2,2020-02-15T06:59:38Z +2811,2005-06-19T19:53:30Z,3890,457,2005-06-22T23:21:30Z,2,2020-02-15T06:59:38Z +2812,2005-06-19T19:58:16Z,3016,211,2005-06-26T15:26:16Z,1,2020-02-15T06:59:38Z +2813,2005-06-19T20:01:47Z,3420,284,2005-06-27T01:51:47Z,1,2020-02-15T06:59:38Z +2814,2005-06-19T20:01:59Z,1783,10,2005-06-26T01:28:59Z,2,2020-02-15T06:59:38Z +2815,2005-06-19T20:03:29Z,3046,27,2005-06-25T22:50:29Z,2,2020-02-15T06:59:38Z +2816,2005-06-19T20:04:23Z,2180,94,2005-06-20T21:09:23Z,2,2020-02-15T06:59:38Z +2817,2005-06-19T20:05:22Z,3476,510,2005-06-24T23:29:22Z,1,2020-02-15T06:59:38Z +2818,2005-06-19T20:05:52Z,2376,497,2005-06-22T01:01:52Z,2,2020-02-15T06:59:38Z +2819,2005-06-19T20:13:33Z,4100,82,2005-06-26T16:44:33Z,1,2020-02-15T06:59:38Z +2820,2005-06-19T20:20:33Z,851,316,2005-06-26T20:32:33Z,1,2020-02-15T06:59:38Z +2821,2005-06-19T20:26:52Z,2551,532,2005-06-27T23:48:52Z,1,2020-02-15T06:59:38Z +2822,2005-06-19T20:29:24Z,3599,48,2005-06-23T02:21:24Z,1,2020-02-15T06:59:38Z +2823,2005-06-19T20:30:21Z,3566,260,2005-06-26T17:58:21Z,1,2020-02-15T06:59:38Z +2824,2005-06-19T20:31:45Z,2878,506,2005-06-29T00:40:45Z,2,2020-02-15T06:59:38Z +2825,2005-06-19T20:32:19Z,2601,418,2005-06-22T22:32:19Z,1,2020-02-15T06:59:38Z +2826,2005-06-19T20:41:35Z,2980,125,2005-06-25T17:23:35Z,1,2020-02-15T06:59:38Z +2827,2005-06-19T20:50:01Z,2745,23,2005-06-20T18:54:01Z,2,2020-02-15T06:59:38Z +2828,2005-06-19T20:51:33Z,3230,526,2005-06-25T17:38:33Z,1,2020-02-15T06:59:38Z +2829,2005-06-19T21:11:30Z,2047,341,2005-06-24T18:10:30Z,1,2020-02-15T06:59:38Z +2830,2005-06-19T21:14:33Z,2080,21,2005-06-21T17:46:33Z,1,2020-02-15T06:59:38Z +2831,2005-06-19T21:17:06Z,4089,468,2005-06-22T16:56:06Z,2,2020-02-15T06:59:38Z +2832,2005-06-19T21:21:53Z,828,593,2005-06-28T23:00:53Z,1,2020-02-15T06:59:38Z +2833,2005-06-19T21:34:54Z,1976,232,2005-06-28T16:21:54Z,1,2020-02-15T06:59:38Z +2834,2005-06-19T21:41:46Z,2876,122,2005-06-24T20:47:46Z,1,2020-02-15T06:59:38Z +2835,2005-06-19T21:44:11Z,4411,89,2005-06-26T16:46:11Z,2,2020-02-15T06:59:38Z +2836,2005-06-19T21:58:21Z,1453,306,2005-06-27T00:41:21Z,2,2020-02-15T06:59:38Z +2837,2005-06-19T22:03:50Z,417,371,2005-06-20T21:24:50Z,1,2020-02-15T06:59:38Z +2838,2005-06-19T22:06:06Z,143,292,2005-06-25T22:30:06Z,1,2020-02-15T06:59:38Z +2839,2005-06-19T22:07:24Z,3856,256,2005-06-23T16:37:24Z,2,2020-02-15T06:59:38Z +2840,2005-06-19T22:17:44Z,1102,236,2005-06-26T00:36:44Z,2,2020-02-15T06:59:38Z +2841,2005-06-19T22:21:06Z,614,193,2005-06-28T00:56:06Z,1,2020-02-15T06:59:38Z +2842,2005-06-19T22:34:20Z,4183,217,2005-06-22T03:46:20Z,2,2020-02-15T06:59:38Z +2843,2005-06-19T22:36:39Z,1520,148,2005-06-26T22:33:39Z,2,2020-02-15T06:59:38Z +2844,2005-06-19T22:40:12Z,4452,178,2005-06-24T03:58:12Z,2,2020-02-15T06:59:38Z +2845,2005-06-19T22:46:37Z,3948,583,2005-06-23T03:31:37Z,1,2020-02-15T06:59:38Z +2846,2005-06-19T22:52:14Z,651,193,2005-06-22T17:12:14Z,1,2020-02-15T06:59:38Z +2847,2005-06-19T22:54:01Z,1247,148,2005-06-27T23:05:01Z,2,2020-02-15T06:59:38Z +2848,2005-06-19T22:55:37Z,3449,19,2005-06-25T23:10:37Z,1,2020-02-15T06:59:38Z +2849,2005-06-19T23:06:00Z,3628,283,2005-06-25T18:36:00Z,1,2020-02-15T06:59:38Z +2850,2005-06-19T23:06:28Z,206,262,2005-06-28T03:30:28Z,2,2020-02-15T06:59:38Z +2851,2005-06-19T23:07:03Z,2168,361,2005-06-22T17:26:03Z,1,2020-02-15T06:59:38Z +2852,2005-06-19T23:08:50Z,2695,453,2005-06-26T04:00:50Z,1,2020-02-15T06:59:38Z +2853,2005-06-19T23:09:41Z,2578,453,2005-06-28T00:51:41Z,2,2020-02-15T06:59:38Z +2854,2005-06-19T23:11:48Z,4453,81,2005-06-23T19:37:48Z,2,2020-02-15T06:59:38Z +2855,2005-06-19T23:11:49Z,3495,483,2005-06-26T21:52:49Z,1,2020-02-15T06:59:38Z +2856,2005-06-19T23:13:04Z,1859,210,2005-06-23T22:47:04Z,1,2020-02-15T06:59:38Z +2857,2005-06-19T23:15:15Z,2886,364,2005-06-25T04:24:15Z,2,2020-02-15T06:59:38Z +2858,2005-06-19T23:17:11Z,2628,268,2005-06-21T19:07:11Z,1,2020-02-15T06:59:38Z +2859,2005-06-19T23:18:42Z,126,147,2005-06-20T22:38:42Z,1,2020-02-15T06:59:38Z +2860,2005-06-19T23:20:40Z,3045,107,2005-06-21T04:59:40Z,1,2020-02-15T06:59:38Z +2861,2005-06-19T23:21:34Z,1489,116,2005-06-26T17:32:34Z,1,2020-02-15T06:59:38Z +2862,2005-06-19T23:47:24Z,4260,52,2005-06-23T03:39:24Z,2,2020-02-15T06:59:38Z +2863,2005-06-19T23:58:38Z,2410,228,2005-06-23T23:27:38Z,2,2020-02-15T06:59:38Z +2864,2005-06-20T00:00:52Z,1056,493,2005-06-26T04:21:52Z,2,2020-02-15T06:59:38Z +2865,2005-06-20T00:00:55Z,1569,10,2005-06-21T02:20:55Z,1,2020-02-15T06:59:38Z +2866,2005-06-20T00:01:36Z,2718,44,2005-06-20T21:39:36Z,1,2020-02-15T06:59:38Z +2867,2005-06-20T00:08:38Z,95,483,2005-06-23T19:35:38Z,1,2020-02-15T06:59:38Z +2868,2005-06-20T00:08:58Z,1213,214,2005-06-25T21:23:58Z,2,2020-02-15T06:59:38Z +2869,2005-06-20T00:09:25Z,1331,155,2005-06-24T04:40:25Z,2,2020-02-15T06:59:38Z +2870,2005-06-20T00:17:46Z,214,467,2005-06-28T20:21:46Z,1,2020-02-15T06:59:38Z +2871,2005-06-20T00:27:49Z,1731,443,2005-06-29T01:36:49Z,1,2020-02-15T06:59:38Z +2872,2005-06-20T00:38:21Z,3779,240,2005-06-26T19:56:21Z,1,2020-02-15T06:59:38Z +2873,2005-06-20T00:41:25Z,3321,160,2005-06-25T02:06:25Z,1,2020-02-15T06:59:38Z +2874,2005-06-20T00:42:26Z,331,166,2005-06-28T01:37:26Z,2,2020-02-15T06:59:38Z +2875,2005-06-20T00:47:18Z,3012,186,2005-06-25T18:54:18Z,2,2020-02-15T06:59:38Z +2876,2005-06-20T01:06:34Z,3117,39,2005-06-23T04:55:34Z,1,2020-02-15T06:59:38Z +2877,2005-06-20T01:07:16Z,485,267,2005-06-24T01:05:16Z,1,2020-02-15T06:59:38Z +2878,2005-06-20T01:09:14Z,4120,88,2005-06-21T21:40:14Z,2,2020-02-15T06:59:38Z +2879,2005-06-20T01:24:10Z,1920,583,2005-06-28T20:12:10Z,2,2020-02-15T06:59:38Z +2880,2005-06-20T01:24:54Z,1700,193,2005-06-23T02:42:54Z,2,2020-02-15T06:59:38Z +2881,2005-06-20T01:26:18Z,1391,307,2005-06-26T23:42:18Z,1,2020-02-15T06:59:38Z +2882,2005-06-20T01:26:26Z,205,152,2005-06-21T19:33:26Z,1,2020-02-15T06:59:38Z +2883,2005-06-20T01:29:10Z,585,320,2005-06-28T06:12:10Z,1,2020-02-15T06:59:38Z +2884,2005-06-20T01:31:16Z,3384,319,2005-06-21T04:03:16Z,2,2020-02-15T06:59:38Z +2885,2005-06-20T01:33:42Z,2701,330,2005-06-22T22:23:42Z,1,2020-02-15T06:59:38Z +2886,2005-06-20T01:38:39Z,1755,154,2005-06-23T04:28:39Z,2,2020-02-15T06:59:38Z +2887,2005-06-20T01:39:43Z,1073,453,2005-06-25T05:22:43Z,2,2020-02-15T06:59:38Z +2888,2005-06-20T01:50:56Z,468,7,2005-06-22T05:05:56Z,2,2020-02-15T06:59:38Z +2889,2005-06-20T01:54:08Z,151,213,2005-06-23T06:33:08Z,1,2020-02-15T06:59:38Z +2890,2005-06-20T02:00:45Z,3437,392,2005-06-27T21:12:45Z,1,2020-02-15T06:59:38Z +2891,2005-06-20T02:02:05Z,343,32,2005-06-25T02:45:05Z,1,2020-02-15T06:59:38Z +2892,2005-06-20T02:06:39Z,2993,430,2005-06-21T02:50:39Z,2,2020-02-15T06:59:38Z +2893,2005-06-20T02:22:08Z,397,153,2005-06-26T21:01:08Z,2,2020-02-15T06:59:38Z +2894,2005-06-20T02:22:42Z,4316,76,2005-06-22T00:38:42Z,1,2020-02-15T06:59:38Z +2895,2005-06-20T02:26:31Z,4445,141,2005-06-27T23:42:31Z,2,2020-02-15T06:59:38Z +2896,2005-06-20T02:33:42Z,1086,40,2005-06-26T05:29:42Z,2,2020-02-15T06:59:38Z +2897,2005-06-20T02:34:23Z,3464,107,2005-06-25T05:29:23Z,1,2020-02-15T06:59:38Z +2898,2005-06-20T02:38:06Z,3106,178,2005-06-29T08:18:06Z,2,2020-02-15T06:59:38Z +2899,2005-06-20T02:39:21Z,1919,459,2005-06-23T06:47:21Z,1,2020-02-15T06:59:38Z +2900,2005-06-20T02:40:04Z,3407,294,2005-06-27T20:47:04Z,2,2020-02-15T06:59:38Z +2901,2005-06-20T02:41:28Z,667,25,2005-06-23T04:43:28Z,2,2020-02-15T06:59:38Z +2902,2005-06-20T02:45:35Z,2787,304,2005-06-26T07:51:35Z,1,2020-02-15T06:59:38Z +2903,2005-06-20T02:49:01Z,3580,53,2005-06-25T05:03:01Z,2,2020-02-15T06:59:38Z +2904,2005-06-20T02:54:06Z,2195,55,2005-06-21T06:57:06Z,2,2020-02-15T06:59:38Z +2905,2005-06-20T02:56:16Z,3898,189,2005-06-24T23:51:16Z,2,2020-02-15T06:59:38Z +2906,2005-06-20T03:04:56Z,1087,58,2005-06-23T05:57:56Z,2,2020-02-15T06:59:38Z +2907,2005-06-20T03:15:09Z,2516,208,2005-06-20T21:56:09Z,2,2020-02-15T06:59:38Z +2908,2005-06-20T03:16:52Z,517,91,2005-06-22T08:46:52Z,1,2020-02-15T06:59:38Z +2909,2005-06-20T03:19:10Z,1701,451,2005-06-25T06:06:10Z,2,2020-02-15T06:59:38Z +2910,2005-06-20T03:31:18Z,630,57,2005-06-28T00:35:18Z,1,2020-02-15T06:59:38Z +2911,2005-06-20T03:32:37Z,3645,502,2005-06-22T22:06:37Z,1,2020-02-15T06:59:38Z +2912,2005-06-20T03:32:45Z,1076,196,2005-06-21T23:32:45Z,1,2020-02-15T06:59:38Z +2913,2005-06-20T03:42:27Z,3456,402,2005-06-23T04:47:27Z,1,2020-02-15T06:59:38Z +2914,2005-06-20T03:43:18Z,2419,342,2005-06-25T03:44:18Z,2,2020-02-15T06:59:38Z +2915,2005-06-20T03:57:17Z,1293,262,2005-06-24T05:59:17Z,2,2020-02-15T06:59:38Z +2916,2005-06-20T04:01:04Z,3086,590,2005-06-27T22:40:04Z,2,2020-02-15T06:59:38Z +2917,2005-06-20T04:08:35Z,647,451,2005-06-24T01:17:35Z,1,2020-02-15T06:59:38Z +2918,2005-06-20T04:09:04Z,1985,215,2005-06-21T10:07:04Z,1,2020-02-15T06:59:38Z +2919,2005-06-20T04:10:16Z,2835,509,2005-06-27T06:34:16Z,1,2020-02-15T06:59:38Z +2920,2005-06-20T04:12:46Z,487,588,2005-06-26T23:34:46Z,2,2020-02-15T06:59:38Z +2921,2005-06-20T04:13:04Z,1785,59,2005-06-28T01:28:04Z,1,2020-02-15T06:59:38Z +2922,2005-06-20T04:13:47Z,1671,176,2005-06-22T04:38:47Z,2,2020-02-15T06:59:38Z +2923,2005-06-20T04:16:07Z,109,29,2005-06-21T05:04:07Z,1,2020-02-15T06:59:38Z +2924,2005-06-20T04:20:14Z,580,132,2005-06-21T01:13:14Z,1,2020-02-15T06:59:38Z +2925,2005-06-20T04:23:49Z,804,301,2005-06-22T04:37:49Z,2,2020-02-15T06:59:38Z +2926,2005-06-20T04:37:45Z,1055,379,2005-06-26T02:17:45Z,1,2020-02-15T06:59:38Z +2927,2005-06-20T04:41:41Z,393,403,2005-06-23T01:59:41Z,1,2020-02-15T06:59:38Z +2928,2005-06-20T04:43:45Z,1265,104,2005-06-21T06:58:45Z,2,2020-02-15T06:59:38Z +2929,2005-06-20T04:47:39Z,3389,333,2005-06-25T23:16:39Z,2,2020-02-15T06:59:38Z +2930,2005-06-20T04:50:29Z,3615,585,2005-06-28T06:00:29Z,2,2020-02-15T06:59:38Z +2931,2005-06-20T04:50:45Z,3122,258,2005-06-29T09:18:45Z,1,2020-02-15T06:59:38Z +2932,2005-06-20T04:51:19Z,4418,526,2005-06-29T08:31:19Z,1,2020-02-15T06:59:38Z +2933,2005-06-20T04:52:23Z,4483,323,2005-06-26T07:12:23Z,2,2020-02-15T06:59:38Z +2934,2005-06-20T05:05:53Z,697,228,2005-06-22T02:44:53Z,1,2020-02-15T06:59:38Z +2935,2005-06-20T05:07:24Z,2735,384,2005-06-28T09:17:24Z,2,2020-02-15T06:59:38Z +2936,2005-06-20T05:09:27Z,2675,330,2005-06-26T10:16:27Z,2,2020-02-15T06:59:38Z +2937,2005-06-20T05:15:37Z,1998,15,2005-06-27T02:45:37Z,1,2020-02-15T06:59:38Z +2938,2005-06-20T05:17:22Z,1795,504,2005-06-26T09:38:22Z,1,2020-02-15T06:59:38Z +2939,2005-06-20T05:18:16Z,2638,203,2005-06-26T06:56:16Z,1,2020-02-15T06:59:38Z +2940,2005-06-20T05:20:01Z,2504,73,2005-06-28T06:11:01Z,2,2020-02-15T06:59:38Z +2941,2005-06-20T05:22:18Z,3632,135,2005-06-26T07:40:18Z,2,2020-02-15T06:59:38Z +2942,2005-06-20T05:27:31Z,999,242,2005-06-29T00:35:31Z,1,2020-02-15T06:59:38Z +2943,2005-06-20T05:43:05Z,2591,418,2005-06-25T04:31:05Z,1,2020-02-15T06:59:38Z +2944,2005-06-20T05:43:42Z,1550,474,2005-06-29T09:40:42Z,2,2020-02-15T06:59:38Z +2945,2005-06-20T05:49:27Z,4193,153,2005-06-26T09:48:27Z,1,2020-02-15T06:59:38Z +2946,2005-06-20T05:50:40Z,3737,213,2005-06-21T00:42:40Z,2,2020-02-15T06:59:38Z +2947,2005-06-20T06:00:21Z,4302,151,2005-06-23T10:04:21Z,2,2020-02-15T06:59:38Z +2948,2005-06-20T06:02:35Z,4254,289,2005-06-29T09:12:35Z,2,2020-02-15T06:59:38Z +2949,2005-06-20T06:05:53Z,375,78,2005-06-29T03:19:53Z,2,2020-02-15T06:59:38Z +2950,2005-06-20T06:08:36Z,1438,561,2005-06-27T07:45:36Z,2,2020-02-15T06:59:38Z +2951,2005-06-20T06:23:01Z,2903,404,2005-06-24T00:26:01Z,2,2020-02-15T06:59:38Z +2952,2005-06-20T06:26:57Z,3759,13,2005-06-22T11:51:57Z,1,2020-02-15T06:59:38Z +2953,2005-06-20T06:39:11Z,1829,540,2005-06-26T06:19:11Z,1,2020-02-15T06:59:38Z +2954,2005-06-20T06:45:00Z,377,336,2005-06-23T11:43:00Z,1,2020-02-15T06:59:38Z +2955,2005-06-20T06:46:35Z,2312,244,2005-06-25T05:34:35Z,2,2020-02-15T06:59:38Z +2956,2005-06-20T06:47:23Z,2684,533,2005-06-22T07:24:23Z,2,2020-02-15T06:59:38Z +2957,2005-06-20T06:53:47Z,4034,542,2005-06-29T09:21:47Z,2,2020-02-15T06:59:38Z +2958,2005-06-20T06:56:20Z,1380,260,2005-06-29T02:33:20Z,2,2020-02-15T06:59:38Z +2959,2005-06-20T07:07:54Z,4185,372,2005-06-27T03:31:54Z,1,2020-02-15T06:59:38Z +2960,2005-06-20T07:10:09Z,3970,16,2005-06-26T08:14:09Z,2,2020-02-15T06:59:38Z +2961,2005-06-20T07:29:15Z,4539,399,2005-06-24T08:05:15Z,1,2020-02-15T06:59:38Z +2962,2005-06-20T07:31:55Z,2978,364,2005-06-26T04:43:55Z,1,2020-02-15T06:59:38Z +2963,2005-06-20T07:33:09Z,1444,24,2005-06-28T09:23:09Z,1,2020-02-15T06:59:38Z +2964,2005-06-20T07:33:29Z,1201,590,2005-06-29T12:48:29Z,1,2020-02-15T06:59:38Z +2965,2005-06-20T07:33:38Z,27,46,2005-06-29T11:45:38Z,1,2020-02-15T06:59:38Z +2966,2005-06-20T07:39:33Z,3483,511,2005-06-29T07:48:33Z,1,2020-02-15T06:59:38Z +2967,2005-06-20T07:40:35Z,4243,311,2005-06-29T05:50:35Z,2,2020-02-15T06:59:38Z +2968,2005-06-20T07:41:47Z,4415,252,2005-06-23T04:27:47Z,1,2020-02-15T06:59:38Z +2969,2005-06-20T07:44:27Z,1748,418,2005-06-22T06:12:27Z,2,2020-02-15T06:59:38Z +2970,2005-06-20T07:51:51Z,1167,449,2005-06-28T10:14:51Z,2,2020-02-15T06:59:38Z +2971,2005-06-20T07:56:00Z,1585,410,2005-06-27T11:38:00Z,2,2020-02-15T06:59:38Z +2972,2005-06-20T07:57:54Z,2232,531,2005-06-21T12:48:54Z,1,2020-02-15T06:59:38Z +2973,2005-06-20T07:59:27Z,2626,96,2005-06-24T12:31:27Z,1,2020-02-15T06:59:38Z +2974,2005-06-20T08:00:24Z,2322,472,2005-06-25T05:10:24Z,2,2020-02-15T06:59:38Z +2975,2005-06-20T08:06:18Z,4534,46,2005-06-21T08:01:18Z,1,2020-02-15T06:59:38Z +2976,2005-06-20T08:09:11Z,4210,55,2005-06-21T10:45:11Z,1,2020-02-15T06:59:38Z +2977,2005-06-20T08:15:27Z,2645,571,2005-06-29T04:30:27Z,2,2020-02-15T06:59:38Z +2978,2005-06-20T08:25:16Z,4364,548,2005-06-23T05:42:16Z,1,2020-02-15T06:59:38Z +2979,2005-06-20T08:31:05Z,3961,589,2005-06-27T12:25:05Z,1,2020-02-15T06:59:38Z +2980,2005-06-20T08:35:03Z,310,343,2005-06-29T07:57:03Z,2,2020-02-15T06:59:38Z +2981,2005-06-20T08:35:17Z,522,387,2005-06-28T09:14:17Z,1,2020-02-15T06:59:38Z +2982,2005-06-20T08:38:29Z,2574,130,2005-06-28T13:21:29Z,1,2020-02-15T06:59:38Z +2983,2005-06-20T08:41:42Z,1349,322,2005-06-29T04:02:42Z,2,2020-02-15T06:59:38Z +2984,2005-06-20T08:43:44Z,1819,435,2005-06-22T03:08:44Z,2,2020-02-15T06:59:38Z +2985,2005-06-20T08:45:08Z,122,154,2005-06-22T04:26:08Z,2,2020-02-15T06:59:38Z +2986,2005-06-20T08:50:28Z,478,556,2005-06-26T05:24:28Z,2,2020-02-15T06:59:38Z +2987,2005-06-20T08:55:50Z,1531,349,2005-06-28T13:02:50Z,2,2020-02-15T06:59:38Z +2988,2005-06-20T08:59:08Z,3160,557,2005-06-28T04:31:08Z,2,2020-02-15T06:59:38Z +2989,2005-06-20T08:59:37Z,1586,56,2005-06-22T03:27:37Z,2,2020-02-15T06:59:38Z +2990,2005-06-20T09:02:51Z,4559,18,2005-06-29T13:19:51Z,2,2020-02-15T06:59:38Z +2991,2005-06-20T09:10:43Z,4308,472,2005-06-23T13:04:43Z,1,2020-02-15T06:59:38Z +2992,2005-06-20T09:11:51Z,3347,439,2005-06-24T05:59:51Z,1,2020-02-15T06:59:38Z +2993,2005-06-20T09:12:12Z,1527,40,2005-06-22T13:36:12Z,2,2020-02-15T06:59:38Z +2994,2005-06-20T09:17:05Z,1290,163,2005-06-29T04:41:05Z,1,2020-02-15T06:59:38Z +2995,2005-06-20T09:18:22Z,4544,573,2005-06-26T14:31:22Z,1,2020-02-15T06:59:38Z +2996,2005-06-20T09:20:29Z,4064,500,2005-06-27T09:18:29Z,1,2020-02-15T06:59:38Z +2997,2005-06-20T09:23:45Z,1449,519,2005-06-29T08:15:45Z,1,2020-02-15T06:59:38Z +2998,2005-06-20T09:30:22Z,1288,380,2005-06-24T06:31:22Z,2,2020-02-15T06:59:38Z +2999,2005-06-20T09:30:34Z,735,295,2005-06-26T05:51:34Z,2,2020-02-15T06:59:38Z +3000,2005-06-20T09:32:33Z,549,50,2005-06-22T07:45:33Z,1,2020-02-15T06:59:38Z +3001,2005-06-20T09:50:16Z,2941,393,2005-06-28T05:13:16Z,2,2020-02-15T06:59:38Z +3002,2005-06-20T09:56:12Z,2749,266,2005-06-24T12:15:12Z,2,2020-02-15T06:59:38Z +3003,2005-06-20T10:00:51Z,616,38,2005-06-22T06:28:51Z,2,2020-02-15T06:59:38Z +3004,2005-06-20T10:04:36Z,2836,113,2005-06-23T07:38:36Z,2,2020-02-15T06:59:38Z +3005,2005-06-20T10:10:29Z,286,598,2005-06-28T15:48:29Z,2,2020-02-15T06:59:38Z +3006,2005-06-20T10:10:29Z,1677,133,2005-06-22T07:26:29Z,2,2020-02-15T06:59:38Z +3007,2005-06-20T10:11:53Z,1950,7,2005-06-25T04:51:53Z,2,2020-02-15T06:59:38Z +3008,2005-06-20T10:23:25Z,3383,202,2005-06-26T11:00:25Z,2,2020-02-15T06:59:38Z +3009,2005-06-20T10:24:44Z,2721,280,2005-06-23T13:39:44Z,1,2020-02-15T06:59:38Z +3010,2005-06-20T10:29:59Z,1298,567,2005-06-27T06:52:59Z,1,2020-02-15T06:59:38Z +3011,2005-06-20T10:39:10Z,4376,147,2005-06-28T07:02:10Z,2,2020-02-15T06:59:38Z +3012,2005-06-20T10:43:13Z,1392,206,2005-06-28T10:07:13Z,2,2020-02-15T06:59:38Z +3013,2005-06-20T10:45:09Z,4146,290,2005-06-26T04:55:09Z,1,2020-02-15T06:59:38Z +3014,2005-06-20T10:45:20Z,2179,434,2005-06-23T06:29:20Z,1,2020-02-15T06:59:38Z +3015,2005-06-20T10:48:56Z,1311,23,2005-06-26T11:30:56Z,2,2020-02-15T06:59:38Z +3016,2005-06-20T10:55:08Z,3514,558,2005-06-24T14:05:08Z,1,2020-02-15T06:59:38Z +3017,2005-06-20T11:08:56Z,2513,151,2005-06-28T16:26:56Z,1,2020-02-15T06:59:38Z +3018,2005-06-20T11:10:35Z,4150,112,2005-06-25T07:17:35Z,2,2020-02-15T06:59:38Z +3019,2005-06-20T11:11:52Z,491,144,2005-06-27T08:30:52Z,2,2020-02-15T06:59:38Z +3020,2005-06-20T11:12:04Z,4363,74,2005-06-27T07:31:04Z,2,2020-02-15T06:59:38Z +3021,2005-06-20T11:13:01Z,120,62,2005-06-28T16:15:01Z,2,2020-02-15T06:59:38Z +3022,2005-06-20T11:17:20Z,3745,466,2005-06-26T13:15:20Z,2,2020-02-15T06:59:38Z +3023,2005-06-20T11:18:11Z,4304,106,2005-06-21T12:43:11Z,1,2020-02-15T06:59:38Z +3024,2005-06-20T11:29:17Z,1966,328,2005-06-27T12:51:17Z,2,2020-02-15T06:59:38Z +3025,2005-06-20T11:46:48Z,1309,293,2005-06-22T08:43:48Z,1,2020-02-15T06:59:38Z +3026,2005-06-20T11:48:00Z,4032,347,2005-06-21T12:51:00Z,2,2020-02-15T06:59:38Z +3027,2005-06-20T11:50:30Z,4028,397,2005-06-25T15:58:30Z,2,2020-02-15T06:59:38Z +3028,2005-06-20T11:50:52Z,886,264,2005-06-21T11:05:52Z,2,2020-02-15T06:59:38Z +3029,2005-06-20T11:51:30Z,327,317,2005-06-25T16:42:30Z,1,2020-02-15T06:59:38Z +3030,2005-06-20T11:51:59Z,1543,395,2005-06-24T10:51:59Z,1,2020-02-15T06:59:38Z +3031,2005-06-20T11:52:49Z,1184,491,2005-06-22T07:00:49Z,1,2020-02-15T06:59:38Z +3032,2005-06-20T11:58:30Z,3734,172,2005-06-24T09:49:30Z,1,2020-02-15T06:59:38Z +3033,2005-06-20T12:02:05Z,4422,107,2005-06-26T15:58:05Z,1,2020-02-15T06:59:38Z +3034,2005-06-20T12:15:50Z,2755,296,2005-06-24T06:21:50Z,2,2020-02-15T06:59:38Z +3035,2005-06-20T12:17:03Z,1223,62,2005-06-26T17:42:03Z,2,2020-02-15T06:59:38Z +3036,2005-06-20T12:18:31Z,4463,399,2005-06-29T09:52:31Z,1,2020-02-15T06:59:38Z +3037,2005-06-20T12:28:03Z,2033,434,2005-06-21T08:21:03Z,1,2020-02-15T06:59:38Z +3038,2005-06-20T12:28:59Z,2919,27,2005-06-25T07:48:59Z,1,2020-02-15T06:59:38Z +3039,2005-06-20T12:32:30Z,4098,186,2005-06-21T07:38:30Z,1,2020-02-15T06:59:38Z +3040,2005-06-20T12:34:13Z,2568,162,2005-06-21T12:33:13Z,1,2020-02-15T06:59:38Z +3041,2005-06-20T12:35:44Z,2676,459,2005-06-23T18:28:44Z,2,2020-02-15T06:59:38Z +3042,2005-06-20T12:38:27Z,3103,291,2005-06-26T11:18:27Z,1,2020-02-15T06:59:38Z +3043,2005-06-20T12:38:35Z,633,599,2005-06-29T14:16:35Z,2,2020-02-15T06:59:38Z +3044,2005-06-20T12:38:49Z,3216,424,2005-06-25T07:49:49Z,1,2020-02-15T06:59:38Z +3045,2005-06-20T12:42:00Z,3065,459,2005-06-23T10:49:00Z,2,2020-02-15T06:59:38Z +3046,2005-06-20T12:42:59Z,471,559,2005-06-26T17:40:59Z,2,2020-02-15T06:59:38Z +3047,2005-06-20T12:45:33Z,624,13,2005-06-29T13:09:33Z,2,2020-02-15T06:59:38Z +3048,2005-06-20T12:49:55Z,4389,482,2005-06-26T11:06:55Z,1,2020-02-15T06:59:38Z +3049,2005-06-20T12:51:01Z,518,403,2005-06-29T10:53:01Z,1,2020-02-15T06:59:38Z +3050,2005-06-20T13:03:03Z,2397,557,2005-06-29T07:22:03Z,1,2020-02-15T06:59:38Z +3051,2005-06-20T13:06:52Z,1408,65,2005-06-25T13:03:52Z,2,2020-02-15T06:59:38Z +3052,2005-06-20T13:09:19Z,2359,329,2005-06-29T11:55:19Z,2,2020-02-15T06:59:38Z +3053,2005-06-20T13:10:30Z,818,329,2005-06-25T17:22:30Z,2,2020-02-15T06:59:38Z +3054,2005-06-20T13:16:41Z,2817,322,2005-06-28T13:45:41Z,2,2020-02-15T06:59:38Z +3055,2005-06-20T13:19:58Z,1510,23,2005-06-27T14:54:58Z,1,2020-02-15T06:59:38Z +3056,2005-06-20T13:20:58Z,2010,95,2005-06-26T08:35:58Z,2,2020-02-15T06:59:38Z +3057,2005-06-20T13:22:48Z,1101,307,2005-06-26T17:22:48Z,2,2020-02-15T06:59:38Z +3058,2005-06-20T13:28:35Z,938,137,2005-06-28T13:57:35Z,2,2020-02-15T06:59:38Z +3059,2005-06-20T13:38:41Z,2911,266,2005-06-21T10:13:41Z,2,2020-02-15T06:59:38Z +3060,2005-06-20T13:47:20Z,2075,446,2005-06-25T16:00:20Z,2,2020-02-15T06:59:38Z +3061,2005-06-20T13:48:21Z,4202,330,2005-06-22T17:36:21Z,2,2020-02-15T06:59:38Z +3062,2005-06-20T13:50:00Z,591,75,2005-06-27T08:18:00Z,1,2020-02-15T06:59:38Z +3063,2005-06-20T13:52:03Z,3954,515,2005-06-28T13:36:03Z,2,2020-02-15T06:59:38Z +3064,2005-06-20T13:53:13Z,2624,276,2005-06-25T16:33:13Z,2,2020-02-15T06:59:38Z +3065,2005-06-20T13:53:53Z,1687,227,2005-06-24T11:31:53Z,1,2020-02-15T06:59:38Z +3066,2005-06-20T13:55:41Z,1116,268,2005-06-26T09:38:41Z,2,2020-02-15T06:59:38Z +3067,2005-06-20T13:59:21Z,3094,349,2005-06-28T19:09:21Z,2,2020-02-15T06:59:38Z +3068,2005-06-20T14:02:22Z,1958,516,2005-06-22T12:52:22Z,2,2020-02-15T06:59:38Z +3069,2005-06-20T14:13:00Z,1952,237,2005-06-28T10:57:00Z,1,2020-02-15T06:59:38Z +3070,2005-06-20T14:15:39Z,3860,543,2005-06-25T12:52:39Z,2,2020-02-15T06:59:38Z +3071,2005-06-20T14:20:42Z,1198,582,2005-06-24T19:01:42Z,1,2020-02-15T06:59:38Z +3072,2005-06-20T14:21:31Z,4131,423,2005-06-27T18:46:31Z,2,2020-02-15T06:59:38Z +3073,2005-06-20T14:33:26Z,3164,471,2005-06-26T08:42:26Z,2,2020-02-15T06:59:38Z +3074,2005-06-20T14:41:41Z,1441,299,2005-06-21T15:56:41Z,1,2020-02-15T06:59:38Z +3075,2005-06-20T14:52:19Z,4346,161,2005-06-28T18:48:19Z,2,2020-02-15T06:59:38Z +3076,2005-06-20T15:01:19Z,1344,109,2005-06-28T16:53:19Z,2,2020-02-15T06:59:38Z +3077,2005-06-20T15:05:18Z,1675,303,2005-06-26T20:52:18Z,2,2020-02-15T06:59:38Z +3078,2005-06-20T15:09:48Z,3642,367,2005-06-24T16:54:48Z,1,2020-02-15T06:59:38Z +3079,2005-06-20T15:13:40Z,2135,350,2005-06-21T12:03:40Z,1,2020-02-15T06:59:38Z +3080,2005-06-20T15:22:32Z,118,377,2005-06-24T11:08:32Z,1,2020-02-15T06:59:38Z +3081,2005-06-20T15:29:13Z,2071,342,2005-06-24T21:00:13Z,2,2020-02-15T06:59:38Z +3082,2005-06-20T15:32:11Z,4431,164,2005-06-28T13:08:11Z,1,2020-02-15T06:59:38Z +3083,2005-06-20T15:33:47Z,2896,257,2005-06-26T16:14:47Z,2,2020-02-15T06:59:38Z +3084,2005-06-20T15:35:24Z,3578,514,2005-06-23T19:11:24Z,1,2020-02-15T06:59:38Z +3085,2005-06-20T15:42:33Z,4282,166,2005-06-21T16:51:33Z,2,2020-02-15T06:59:38Z +3086,2005-06-20T15:42:40Z,4437,377,2005-06-25T19:21:40Z,1,2020-02-15T06:59:38Z +3087,2005-06-20T15:53:59Z,1305,111,2005-06-27T10:54:59Z,2,2020-02-15T06:59:38Z +3088,2005-06-20T15:56:05Z,3049,384,2005-06-29T13:02:05Z,1,2020-02-15T06:59:38Z +3089,2005-06-20T15:57:01Z,539,151,2005-06-25T13:15:01Z,2,2020-02-15T06:59:38Z +3090,2005-06-20T16:00:19Z,3301,267,2005-06-23T14:55:19Z,1,2020-02-15T06:59:38Z +3091,2005-06-20T16:02:59Z,854,383,2005-06-22T21:30:59Z,2,2020-02-15T06:59:38Z +3092,2005-06-20T16:04:42Z,4344,347,2005-06-27T19:54:42Z,1,2020-02-15T06:59:38Z +3093,2005-06-20T16:06:14Z,2534,556,2005-06-22T13:22:14Z,2,2020-02-15T06:59:38Z +3094,2005-06-20T16:06:51Z,2048,114,2005-06-24T13:23:51Z,1,2020-02-15T06:59:38Z +3095,2005-06-20T16:16:53Z,3937,298,2005-06-22T10:35:53Z,2,2020-02-15T06:59:38Z +3096,2005-06-20T16:17:56Z,3851,79,2005-06-24T10:17:56Z,2,2020-02-15T06:59:38Z +3097,2005-06-20T16:26:14Z,4337,280,2005-06-23T14:46:14Z,1,2020-02-15T06:59:38Z +3098,2005-06-20T16:37:01Z,3409,498,2005-06-22T22:24:01Z,1,2020-02-15T06:59:38Z +3099,2005-06-20T16:44:33Z,3756,380,2005-06-27T12:17:33Z,2,2020-02-15T06:59:38Z +3100,2005-06-20T16:47:57Z,2428,487,2005-06-26T16:59:57Z,1,2020-02-15T06:59:38Z +3101,2005-06-20T16:48:58Z,1738,384,2005-06-27T18:13:58Z,2,2020-02-15T06:59:38Z +3102,2005-06-20T16:55:55Z,1144,522,2005-06-29T13:49:55Z,1,2020-02-15T06:59:38Z +3103,2005-06-20T16:58:19Z,1877,553,2005-06-25T21:18:19Z,1,2020-02-15T06:59:38Z +3104,2005-06-20T17:06:46Z,1490,196,2005-06-28T13:18:46Z,2,2020-02-15T06:59:38Z +3105,2005-06-20T17:11:46Z,130,385,2005-06-21T11:48:46Z,2,2020-02-15T06:59:38Z +3106,2005-06-20T17:18:06Z,2637,201,2005-06-24T14:50:06Z,2,2020-02-15T06:59:38Z +3107,2005-06-20T17:26:05Z,4527,303,2005-06-25T12:36:05Z,1,2020-02-15T06:59:38Z +3108,2005-06-20T17:28:43Z,2218,189,2005-06-27T21:23:43Z,1,2020-02-15T06:59:38Z +3109,2005-06-20T17:33:55Z,977,93,2005-06-22T23:09:55Z,1,2020-02-15T06:59:38Z +3110,2005-06-20T17:40:12Z,2008,333,2005-06-24T17:09:12Z,1,2020-02-15T06:59:38Z +3111,2005-06-20T17:46:47Z,4494,579,2005-06-29T19:45:47Z,1,2020-02-15T06:59:38Z +3112,2005-06-20T17:53:30Z,3725,35,2005-06-26T16:03:30Z,1,2020-02-15T06:59:38Z +3113,2005-06-20T17:56:40Z,3620,517,2005-06-23T14:45:40Z,1,2020-02-15T06:59:38Z +3114,2005-06-20T17:57:47Z,2388,8,2005-06-21T19:18:47Z,2,2020-02-15T06:59:38Z +3115,2005-06-20T17:59:05Z,2193,457,2005-06-26T13:28:05Z,1,2020-02-15T06:59:38Z +3116,2005-06-20T18:04:55Z,276,108,2005-06-21T12:12:55Z,2,2020-02-15T06:59:38Z +3117,2005-06-20T18:05:15Z,2184,31,2005-06-26T17:28:15Z,1,2020-02-15T06:59:38Z +3118,2005-06-20T18:05:57Z,1258,125,2005-06-23T23:01:57Z,1,2020-02-15T06:59:38Z +3119,2005-06-20T18:11:44Z,683,296,2005-06-27T16:14:44Z,2,2020-02-15T06:59:38Z +3120,2005-06-20T18:19:29Z,2530,107,2005-06-23T23:40:29Z,1,2020-02-15T06:59:38Z +3121,2005-06-20T18:23:30Z,797,132,2005-06-21T20:36:30Z,1,2020-02-15T06:59:38Z +3122,2005-06-20T18:25:57Z,2720,87,2005-06-29T16:08:57Z,1,2020-02-15T06:59:38Z +3123,2005-06-20T18:26:14Z,1656,289,2005-06-29T17:17:14Z,1,2020-02-15T06:59:38Z +3124,2005-06-20T18:28:19Z,3342,113,2005-06-28T21:08:19Z,1,2020-02-15T06:59:38Z +3125,2005-06-20T18:31:58Z,3293,382,2005-06-21T15:03:58Z,1,2020-02-15T06:59:38Z +3126,2005-06-20T18:38:22Z,1183,5,2005-06-26T00:00:22Z,1,2020-02-15T06:59:38Z +3127,2005-06-20T18:39:43Z,1292,461,2005-06-28T17:55:43Z,1,2020-02-15T06:59:38Z +3128,2005-06-20T18:41:47Z,189,543,2005-06-24T20:54:47Z,2,2020-02-15T06:59:38Z +3129,2005-06-20T18:57:48Z,1789,495,2005-06-28T13:45:48Z,1,2020-02-15T06:59:38Z +3130,2005-06-20T19:03:22Z,2569,341,2005-06-29T18:05:22Z,2,2020-02-15T06:59:38Z +3131,2005-06-20T19:08:00Z,3678,146,2005-06-24T20:59:00Z,2,2020-02-15T06:59:38Z +3132,2005-06-20T19:09:46Z,711,90,2005-06-24T19:42:46Z,1,2020-02-15T06:59:38Z +3133,2005-06-20T19:18:32Z,4529,120,2005-06-26T17:54:32Z,2,2020-02-15T06:59:38Z +3134,2005-06-20T19:29:09Z,1389,537,2005-06-29T19:31:09Z,2,2020-02-15T06:59:38Z +3135,2005-06-20T19:33:52Z,1122,12,2005-06-29T18:20:52Z,1,2020-02-15T06:59:38Z +3136,2005-06-20T19:39:08Z,3349,377,2005-06-22T23:35:08Z,2,2020-02-15T06:59:38Z +3137,2005-06-20T19:41:28Z,786,505,2005-06-28T00:32:28Z,1,2020-02-15T06:59:38Z +3138,2005-06-20T19:43:45Z,2265,570,2005-06-26T20:41:45Z,1,2020-02-15T06:59:38Z +3139,2005-06-20T19:44:45Z,3474,354,2005-06-23T16:24:45Z,1,2020-02-15T06:59:38Z +3140,2005-06-20T19:47:12Z,2936,53,2005-06-24T23:24:12Z,1,2020-02-15T06:59:38Z +3141,2005-06-20T19:55:47Z,1806,398,2005-06-30T00:31:47Z,1,2020-02-15T06:59:38Z +3142,2005-06-20T19:59:28Z,3926,9,2005-06-28T19:51:28Z,2,2020-02-15T06:59:38Z +3143,2005-06-20T20:01:52Z,1355,215,2005-06-26T19:26:52Z,2,2020-02-15T06:59:38Z +3144,2005-06-20T20:14:20Z,1300,114,2005-06-30T01:46:20Z,1,2020-02-15T06:59:38Z +3145,2005-06-20T20:21:17Z,2211,144,2005-06-22T14:44:17Z,1,2020-02-15T06:59:38Z +3146,2005-06-20T20:21:48Z,2249,339,2005-06-29T22:57:48Z,2,2020-02-15T06:59:38Z +3147,2005-06-20T20:25:17Z,615,390,2005-06-28T20:22:17Z,2,2020-02-15T06:59:38Z +3148,2005-06-20T20:27:18Z,4490,202,2005-06-24T20:30:18Z,2,2020-02-15T06:59:38Z +3149,2005-06-20T20:34:55Z,3295,55,2005-06-21T18:51:55Z,1,2020-02-15T06:59:38Z +3150,2005-06-20T20:35:28Z,94,34,2005-06-26T01:01:28Z,1,2020-02-15T06:59:38Z +3151,2005-06-20T20:36:53Z,2976,77,2005-06-25T18:56:53Z,1,2020-02-15T06:59:38Z +3152,2005-06-20T20:42:41Z,1022,246,2005-06-28T21:12:41Z,1,2020-02-15T06:59:38Z +3153,2005-06-20T20:44:15Z,659,430,2005-06-23T16:04:15Z,1,2020-02-15T06:59:38Z +3154,2005-06-20T20:44:40Z,3195,550,2005-06-23T19:10:40Z,1,2020-02-15T06:59:38Z +3155,2005-06-20T21:02:38Z,458,450,2005-06-27T19:34:38Z,1,2020-02-15T06:59:38Z +3156,2005-06-20T21:03:46Z,2217,365,2005-06-21T23:32:46Z,2,2020-02-15T06:59:38Z +3157,2005-06-20T21:07:54Z,1899,245,2005-06-23T16:01:54Z,1,2020-02-15T06:59:38Z +3158,2005-06-20T21:08:19Z,3461,592,2005-06-29T18:59:19Z,1,2020-02-15T06:59:38Z +3159,2005-06-20T21:11:50Z,33,388,2005-06-29T19:35:50Z,2,2020-02-15T06:59:38Z +3160,2005-06-20T21:20:51Z,4333,561,2005-06-29T18:06:51Z,2,2020-02-15T06:59:38Z +3161,2005-06-20T21:21:01Z,1326,373,2005-06-21T18:22:01Z,2,2020-02-15T06:59:38Z +3162,2005-06-20T21:21:15Z,3220,113,2005-06-29T18:42:15Z,1,2020-02-15T06:59:38Z +3163,2005-06-20T21:22:13Z,2632,391,2005-06-26T15:22:13Z,2,2020-02-15T06:59:38Z +3164,2005-06-20T21:29:00Z,155,270,2005-06-27T15:50:00Z,1,2020-02-15T06:59:38Z +3165,2005-06-20T21:29:17Z,796,85,2005-06-22T18:03:17Z,1,2020-02-15T06:59:38Z +3166,2005-06-20T21:32:32Z,1850,424,2005-06-27T20:29:32Z,1,2020-02-15T06:59:38Z +3167,2005-06-20T21:42:29Z,353,464,2005-06-22T00:36:29Z,2,2020-02-15T06:59:38Z +3168,2005-06-20T21:46:01Z,2407,446,2005-06-22T20:40:01Z,1,2020-02-15T06:59:38Z +3169,2005-06-20T21:55:54Z,2437,50,2005-06-25T19:45:54Z,1,2020-02-15T06:59:38Z +3170,2005-06-20T22:02:54Z,1306,421,2005-06-29T00:41:54Z,2,2020-02-15T06:59:38Z +3171,2005-06-20T22:15:47Z,2838,140,2005-06-24T18:14:47Z,1,2020-02-15T06:59:38Z +3172,2005-06-20T22:19:25Z,1758,31,2005-06-24T17:18:25Z,2,2020-02-15T06:59:38Z +3173,2005-06-20T22:21:10Z,4306,33,2005-06-27T19:41:10Z,2,2020-02-15T06:59:38Z +3174,2005-06-20T22:24:00Z,3331,107,2005-06-22T21:22:00Z,2,2020-02-15T06:59:38Z +3175,2005-06-20T22:30:23Z,4093,249,2005-06-30T03:28:23Z,2,2020-02-15T06:59:38Z +3176,2005-06-20T22:31:54Z,1982,371,2005-06-25T02:58:54Z,1,2020-02-15T06:59:38Z +3177,2005-06-20T22:32:44Z,2546,300,2005-06-22T23:01:44Z,1,2020-02-15T06:59:38Z +3178,2005-06-20T22:35:12Z,3517,79,2005-06-23T19:39:12Z,1,2020-02-15T06:59:38Z +3179,2005-06-20T22:37:59Z,2214,163,2005-06-26T22:26:59Z,2,2020-02-15T06:59:38Z +3180,2005-06-20T22:48:44Z,3997,162,2005-06-21T21:25:44Z,1,2020-02-15T06:59:38Z +3181,2005-06-20T22:51:02Z,3473,238,2005-06-27T21:21:02Z,1,2020-02-15T06:59:38Z +3182,2005-06-20T22:52:18Z,4017,15,2005-06-21T21:00:18Z,2,2020-02-15T06:59:38Z +3183,2005-06-20T22:55:55Z,4397,129,2005-06-23T17:22:55Z,1,2020-02-15T06:59:38Z +3184,2005-06-20T22:57:44Z,3179,457,2005-06-29T20:57:44Z,1,2020-02-15T06:59:38Z +3185,2005-06-20T22:58:01Z,601,234,2005-06-27T00:26:01Z,1,2020-02-15T06:59:38Z +3186,2005-06-20T23:04:20Z,3198,406,2005-06-29T02:56:20Z,2,2020-02-15T06:59:38Z +3187,2005-06-20T23:06:07Z,4357,150,2005-06-27T01:14:07Z,2,2020-02-15T06:59:38Z +3188,2005-06-20T23:10:27Z,2471,522,2005-06-25T19:37:27Z,2,2020-02-15T06:59:38Z +3189,2005-06-20T23:19:33Z,1502,538,2005-06-24T17:46:33Z,1,2020-02-15T06:59:38Z +3190,2005-06-20T23:27:15Z,351,200,2005-06-28T01:22:15Z,2,2020-02-15T06:59:38Z +3191,2005-06-20T23:46:39Z,4358,522,2005-06-25T03:21:39Z,2,2020-02-15T06:59:38Z +3192,2005-06-20T23:49:12Z,3713,11,2005-06-24T03:00:12Z,1,2020-02-15T06:59:38Z +3193,2005-06-20T23:52:30Z,3176,260,2005-06-22T21:21:30Z,1,2020-02-15T06:59:38Z +3194,2005-06-20T23:59:57Z,1835,432,2005-06-24T19:21:57Z,1,2020-02-15T06:59:38Z +3195,2005-06-21T00:02:10Z,2383,165,2005-06-21T23:11:10Z,2,2020-02-15T06:59:38Z +3196,2005-06-21T00:02:28Z,1575,52,2005-06-22T23:08:28Z,1,2020-02-15T06:59:38Z +3197,2005-06-21T00:07:23Z,1811,362,2005-06-23T00:53:23Z,2,2020-02-15T06:59:38Z +3198,2005-06-21T00:08:54Z,1626,295,2005-06-29T02:11:54Z,2,2020-02-15T06:59:38Z +3199,2005-06-21T00:12:40Z,3824,234,2005-06-27T23:26:40Z,1,2020-02-15T06:59:38Z +3200,2005-06-21T00:22:47Z,4117,221,2005-06-27T05:52:47Z,2,2020-02-15T06:59:38Z +3201,2005-06-21T00:30:26Z,6,597,2005-06-28T03:42:26Z,1,2020-02-15T06:59:38Z +3202,2005-06-21T00:33:47Z,2725,273,2005-06-24T04:05:47Z,2,2020-02-15T06:59:38Z +3203,2005-06-21T00:34:56Z,442,158,2005-06-29T23:30:56Z,1,2020-02-15T06:59:38Z +3204,2005-06-21T00:37:50Z,2848,336,2005-06-22T23:46:50Z,1,2020-02-15T06:59:38Z +3205,2005-06-21T00:38:47Z,2964,31,2005-06-21T22:49:47Z,1,2020-02-15T06:59:38Z +3206,2005-06-21T00:39:39Z,2196,350,2005-06-22T05:12:39Z,1,2020-02-15T06:59:38Z +3207,2005-06-21T00:43:16Z,4020,86,2005-06-24T22:13:16Z,1,2020-02-15T06:59:38Z +3208,2005-06-21T00:50:03Z,3169,229,2005-06-24T06:15:03Z,2,2020-02-15T06:59:38Z +3209,2005-06-21T00:51:06Z,287,307,2005-06-22T21:49:06Z,2,2020-02-15T06:59:38Z +3210,2005-06-21T01:00:25Z,467,75,2005-06-23T06:10:25Z,2,2020-02-15T06:59:38Z +3211,2005-06-21T01:01:29Z,1150,415,2005-06-23T04:05:29Z,1,2020-02-15T06:59:38Z +3212,2005-06-21T01:04:35Z,4178,21,2005-06-30T00:10:35Z,2,2020-02-15T06:59:38Z +3213,2005-06-21T01:05:19Z,3832,534,2005-06-27T21:55:19Z,2,2020-02-15T06:59:38Z +3214,2005-06-21T01:08:26Z,776,142,2005-06-23T03:24:26Z,2,2020-02-15T06:59:38Z +3215,2005-06-21T01:11:32Z,4140,279,2005-06-26T19:42:32Z,1,2020-02-15T06:59:38Z +3216,2005-06-21T01:19:37Z,719,534,2005-06-29T06:45:37Z,2,2020-02-15T06:59:38Z +3217,2005-06-21T01:28:12Z,1027,463,2005-06-25T02:51:12Z,2,2020-02-15T06:59:38Z +3218,2005-06-21T01:38:09Z,1828,117,2005-06-23T02:00:09Z,1,2020-02-15T06:59:38Z +3219,2005-06-21T01:43:26Z,3024,129,2005-06-28T23:50:26Z,2,2020-02-15T06:59:38Z +3220,2005-06-21T01:46:25Z,1880,574,2005-06-26T07:44:25Z,2,2020-02-15T06:59:38Z +3221,2005-06-21T01:49:47Z,245,454,2005-06-25T06:31:47Z,1,2020-02-15T06:59:38Z +3222,2005-06-21T01:50:29Z,4023,501,2005-06-27T00:52:29Z,2,2020-02-15T06:59:38Z +3223,2005-06-21T02:06:45Z,1033,299,2005-06-22T07:16:45Z,2,2020-02-15T06:59:38Z +3224,2005-06-21T02:11:36Z,3318,173,2005-06-23T21:17:36Z,1,2020-02-15T06:59:38Z +3225,2005-06-21T02:16:55Z,1003,448,2005-06-27T05:39:55Z,2,2020-02-15T06:59:38Z +3226,2005-06-21T02:18:14Z,4079,576,2005-06-26T22:32:14Z,2,2020-02-15T06:59:38Z +3227,2005-06-21T02:18:25Z,1156,568,2005-06-27T00:59:25Z,1,2020-02-15T06:59:38Z +3228,2005-06-21T02:20:24Z,2489,535,2005-06-29T00:50:24Z,2,2020-02-15T06:59:38Z +3229,2005-06-21T02:20:41Z,2301,81,2005-06-26T00:39:41Z,1,2020-02-15T06:59:38Z +3230,2005-06-21T02:23:16Z,215,83,2005-06-22T01:37:16Z,2,2020-02-15T06:59:38Z +3231,2005-06-21T02:25:00Z,237,28,2005-06-23T05:46:00Z,2,2020-02-15T06:59:38Z +3232,2005-06-21T02:30:37Z,1972,555,2005-06-29T03:10:37Z,1,2020-02-15T06:59:38Z +3233,2005-06-21T02:39:31Z,3542,353,2005-06-28T05:23:31Z,2,2020-02-15T06:59:38Z +3234,2005-06-21T02:39:44Z,3252,459,2005-06-29T07:27:44Z,1,2020-02-15T06:59:38Z +3235,2005-06-21T02:46:17Z,212,49,2005-06-22T20:58:17Z,1,2020-02-15T06:59:38Z +3236,2005-06-21T02:47:43Z,1492,550,2005-06-29T08:04:43Z,2,2020-02-15T06:59:38Z +3237,2005-06-21T02:47:56Z,4399,466,2005-06-27T03:16:56Z,2,2020-02-15T06:59:38Z +3238,2005-06-21T02:48:21Z,2732,77,2005-06-23T04:43:21Z,1,2020-02-15T06:59:38Z +3239,2005-06-21T02:48:40Z,3402,328,2005-06-22T02:49:40Z,2,2020-02-15T06:59:38Z +3240,2005-06-21T02:53:17Z,2938,405,2005-06-30T03:25:17Z,2,2020-02-15T06:59:38Z +3241,2005-06-21T02:54:32Z,1442,499,2005-06-26T21:56:32Z,2,2020-02-15T06:59:38Z +3242,2005-06-21T02:56:24Z,1421,562,2005-06-29T21:41:24Z,2,2020-02-15T06:59:38Z +3243,2005-06-21T03:00:11Z,2556,426,2005-06-25T21:53:11Z,1,2020-02-15T06:59:38Z +3244,2005-06-21T03:01:10Z,291,53,2005-06-24T06:59:10Z,2,2020-02-15T06:59:38Z +3245,2005-06-21T03:06:11Z,2057,358,2005-06-25T08:06:11Z,2,2020-02-15T06:59:38Z +3246,2005-06-21T03:10:01Z,4432,41,2005-06-28T00:46:01Z,1,2020-02-15T06:59:38Z +3247,2005-06-21T03:12:15Z,1406,277,2005-06-27T00:44:15Z,1,2020-02-15T06:59:38Z +3248,2005-06-21T03:12:21Z,3656,78,2005-06-28T03:54:21Z,2,2020-02-15T06:59:38Z +3249,2005-06-21T03:13:19Z,703,410,2005-06-29T04:04:19Z,2,2020-02-15T06:59:38Z +3250,2005-06-21T03:16:36Z,736,467,2005-06-29T00:53:36Z,2,2020-02-15T06:59:38Z +3251,2005-06-21T03:20:37Z,1414,317,2005-06-23T04:54:37Z,2,2020-02-15T06:59:38Z +3252,2005-06-21T03:25:26Z,2009,213,2005-06-24T00:38:26Z,2,2020-02-15T06:59:38Z +3253,2005-06-21T03:25:37Z,1906,405,2005-06-27T02:46:37Z,2,2020-02-15T06:59:38Z +3254,2005-06-21T03:27:10Z,3893,472,2005-06-22T22:01:10Z,2,2020-02-15T06:59:38Z +3255,2005-06-21T03:39:52Z,2564,482,2005-06-24T04:02:52Z,1,2020-02-15T06:59:38Z +3256,2005-06-21T03:45:42Z,1235,319,2005-06-30T02:51:42Z,2,2020-02-15T06:59:38Z +3257,2005-06-21T03:47:19Z,3975,263,2005-06-28T01:24:19Z,2,2020-02-15T06:59:38Z +3258,2005-06-21T03:53:58Z,4417,241,2005-06-22T22:49:58Z,2,2020-02-15T06:59:38Z +3259,2005-06-21T03:57:15Z,2751,478,2005-06-24T03:32:15Z,1,2020-02-15T06:59:38Z +3260,2005-06-21T03:59:13Z,3627,380,2005-06-23T03:29:13Z,1,2020-02-15T06:59:38Z +3261,2005-06-21T04:07:41Z,2029,169,2005-06-24T06:25:41Z,2,2020-02-15T06:59:38Z +3262,2005-06-21T04:08:43Z,3773,9,2005-06-28T02:55:43Z,1,2020-02-15T06:59:38Z +3263,2005-06-21T04:15:52Z,3491,118,2005-06-24T02:19:52Z,2,2020-02-15T06:59:38Z +3264,2005-06-21T04:19:03Z,1666,340,2005-06-23T01:29:03Z,1,2020-02-15T06:59:38Z +3265,2005-06-21T04:23:13Z,3637,437,2005-06-28T03:37:13Z,1,2020-02-15T06:59:38Z +3266,2005-06-21T04:49:07Z,2533,175,2005-06-26T05:19:07Z,2,2020-02-15T06:59:38Z +3267,2005-06-21T04:55:21Z,1118,134,2005-06-29T23:46:21Z,1,2020-02-15T06:59:38Z +3268,2005-06-21T04:55:49Z,4366,329,2005-06-30T00:23:49Z,2,2020-02-15T06:59:38Z +3269,2005-06-21T05:06:30Z,3828,17,2005-06-27T09:26:30Z,2,2020-02-15T06:59:38Z +3270,2005-06-21T05:07:31Z,1578,86,2005-06-22T07:45:31Z,2,2020-02-15T06:59:38Z +3271,2005-06-21T05:16:10Z,4191,196,2005-06-27T10:46:10Z,1,2020-02-15T06:59:38Z +3272,2005-06-21T05:18:27Z,1090,550,2005-06-30T02:51:27Z,1,2020-02-15T06:59:38Z +3273,2005-06-21T05:24:17Z,3538,104,2005-06-23T01:21:17Z,2,2020-02-15T06:59:38Z +3274,2005-06-21T05:30:36Z,2156,277,2005-06-24T05:12:36Z,1,2020-02-15T06:59:38Z +3275,2005-06-21T05:33:04Z,2320,368,2005-06-30T00:37:04Z,2,2020-02-15T06:59:38Z +3276,2005-06-21T05:35:52Z,1890,425,2005-06-29T03:26:52Z,2,2020-02-15T06:59:38Z +3277,2005-06-21T05:36:37Z,1330,229,2005-06-29T10:54:37Z,1,2020-02-15T06:59:38Z +3278,2005-06-21T05:41:30Z,2832,554,2005-06-22T03:43:30Z,1,2020-02-15T06:59:38Z +3279,2005-06-21T06:05:53Z,1672,462,2005-06-25T09:40:53Z,1,2020-02-15T06:59:38Z +3280,2005-06-21T06:08:12Z,661,229,2005-06-24T09:34:12Z,1,2020-02-15T06:59:38Z +3281,2005-06-21T06:08:47Z,4006,363,2005-06-24T11:22:47Z,1,2020-02-15T06:59:38Z +3282,2005-06-21T06:18:42Z,1676,224,2005-06-28T09:18:42Z,1,2020-02-15T06:59:38Z +3283,2005-06-21T06:19:07Z,3988,372,2005-06-26T10:59:07Z,2,2020-02-15T06:59:38Z +3284,2005-06-21T06:24:45Z,4566,1,2005-06-28T03:28:45Z,1,2020-02-15T06:59:38Z +3285,2005-06-21T06:30:13Z,948,481,2005-06-23T10:31:13Z,2,2020-02-15T06:59:38Z +3286,2005-06-21T06:31:29Z,742,577,2005-06-25T00:46:29Z,2,2020-02-15T06:59:38Z +3287,2005-06-21T06:32:39Z,4406,62,2005-06-24T09:29:39Z,2,2020-02-15T06:59:38Z +3288,2005-06-21T06:36:59Z,1961,299,2005-06-30T06:50:59Z,1,2020-02-15T06:59:38Z +3289,2005-06-21T06:41:48Z,2248,115,2005-06-30T00:54:48Z,1,2020-02-15T06:59:38Z +3290,2005-06-21T06:45:34Z,2727,293,2005-06-28T09:44:34Z,1,2020-02-15T06:59:38Z +3291,2005-06-21T06:55:36Z,3866,274,2005-06-29T03:41:36Z,1,2020-02-15T06:59:38Z +3292,2005-06-21T06:59:11Z,3288,412,2005-06-23T07:11:11Z,1,2020-02-15T06:59:38Z +3293,2005-06-21T06:59:33Z,4407,481,2005-06-25T06:54:33Z,2,2020-02-15T06:59:38Z +3294,2005-06-21T07:03:23Z,2390,439,2005-06-30T02:22:23Z,2,2020-02-15T06:59:38Z +3295,2005-06-21T07:04:17Z,1703,573,2005-06-29T01:52:17Z,1,2020-02-15T06:59:38Z +3296,2005-06-21T07:04:53Z,2453,284,2005-06-25T08:36:53Z,1,2020-02-15T06:59:38Z +3297,2005-06-21T07:08:19Z,3969,193,2005-06-28T11:53:19Z,2,2020-02-15T06:59:38Z +3298,2005-06-21T07:09:44Z,444,492,2005-06-30T11:26:44Z,2,2020-02-15T06:59:38Z +3299,2005-06-21T07:23:34Z,3427,199,2005-06-27T04:02:34Z,1,2020-02-15T06:59:38Z +3300,2005-06-21T07:25:01Z,2505,565,2005-06-25T01:47:01Z,1,2020-02-15T06:59:38Z +3301,2005-06-21T07:32:25Z,503,444,2005-06-28T06:26:25Z,2,2020-02-15T06:59:38Z +3302,2005-06-21T07:33:40Z,562,594,2005-06-29T06:02:40Z,1,2020-02-15T06:59:38Z +3303,2005-06-21T07:34:14Z,1565,361,2005-06-26T13:18:14Z,2,2020-02-15T06:59:38Z +3304,2005-06-21T07:43:40Z,2154,431,2005-06-27T08:06:40Z,2,2020-02-15T06:59:38Z +3305,2005-06-21T07:46:57Z,2811,578,2005-06-27T06:16:57Z,1,2020-02-15T06:59:38Z +3306,2005-06-21T07:46:58Z,1669,406,2005-06-26T11:22:58Z,2,2020-02-15T06:59:38Z +3307,2005-06-21T07:52:30Z,462,85,2005-06-25T02:36:30Z,2,2020-02-15T06:59:38Z +3308,2005-06-21T07:58:36Z,3129,96,2005-06-23T05:23:36Z,2,2020-02-15T06:59:38Z +3309,2005-06-21T08:00:49Z,248,463,2005-06-29T04:11:49Z,2,2020-02-15T06:59:38Z +3310,2005-06-21T08:04:51Z,1717,395,2005-06-22T04:20:51Z,2,2020-02-15T06:59:38Z +3311,2005-06-21T08:05:27Z,3438,518,2005-06-22T06:51:27Z,2,2020-02-15T06:59:38Z +3312,2005-06-21T08:05:32Z,1008,554,2005-06-27T03:34:32Z,2,2020-02-15T06:59:38Z +3313,2005-06-21T08:11:18Z,4267,213,2005-06-23T04:28:18Z,2,2020-02-15T06:59:38Z +3314,2005-06-21T08:17:00Z,4332,185,2005-06-22T06:00:00Z,2,2020-02-15T06:59:38Z +3315,2005-06-21T08:17:04Z,4108,438,2005-06-24T11:04:04Z,1,2020-02-15T06:59:38Z +3316,2005-06-21T08:20:18Z,3271,451,2005-06-28T07:44:18Z,1,2020-02-15T06:59:38Z +3317,2005-06-21T08:22:32Z,4095,584,2005-06-26T14:18:32Z,2,2020-02-15T06:59:39Z +3318,2005-06-21T08:23:05Z,1111,414,2005-06-27T14:07:05Z,2,2020-02-15T06:59:39Z +3319,2005-06-21T08:25:46Z,2482,461,2005-06-27T03:54:46Z,2,2020-02-15T06:59:39Z +3320,2005-06-21T08:29:41Z,860,47,2005-06-29T13:54:41Z,2,2020-02-15T06:59:39Z +3321,2005-06-21T08:33:26Z,1750,144,2005-06-24T10:09:26Z,2,2020-02-15T06:59:39Z +3322,2005-06-21T08:42:37Z,4324,458,2005-06-22T13:17:37Z,1,2020-02-15T06:59:39Z +3323,2005-06-21T08:45:33Z,2252,272,2005-06-28T08:17:33Z,2,2020-02-15T06:59:39Z +3324,2005-06-21T08:49:16Z,2830,29,2005-06-22T12:31:16Z,1,2020-02-15T06:59:39Z +3325,2005-06-21T08:51:44Z,1720,185,2005-06-27T06:16:44Z,1,2020-02-15T06:59:39Z +3326,2005-06-21T09:04:50Z,1025,347,2005-06-30T12:10:50Z,2,2020-02-15T06:59:39Z +3327,2005-06-21T09:04:50Z,3083,62,2005-06-30T05:45:50Z,1,2020-02-15T06:59:39Z +3328,2005-06-21T09:08:44Z,2462,292,2005-06-30T12:28:44Z,1,2020-02-15T06:59:39Z +3329,2005-06-21T09:20:31Z,3506,335,2005-06-22T10:00:31Z,2,2020-02-15T06:59:39Z +3330,2005-06-21T09:22:37Z,299,294,2005-06-23T07:16:37Z,2,2020-02-15T06:59:39Z +3331,2005-06-21T09:37:53Z,2913,352,2005-06-26T04:01:53Z,2,2020-02-15T06:59:39Z +3332,2005-06-21T09:55:12Z,1975,82,2005-06-25T08:32:12Z,2,2020-02-15T06:59:39Z +3333,2005-06-21T10:01:36Z,3688,111,2005-06-25T10:27:36Z,2,2020-02-15T06:59:39Z +3334,2005-06-21T10:04:33Z,2491,66,2005-06-29T06:09:33Z,2,2020-02-15T06:59:39Z +3335,2005-06-21T10:09:08Z,3033,339,2005-06-27T11:33:08Z,1,2020-02-15T06:59:39Z +3336,2005-06-21T10:14:27Z,2122,173,2005-06-22T09:29:27Z,1,2020-02-15T06:59:39Z +3337,2005-06-21T10:24:35Z,1176,318,2005-06-22T13:51:35Z,1,2020-02-15T06:59:39Z +3338,2005-06-21T10:27:31Z,2097,171,2005-06-30T14:15:31Z,2,2020-02-15T06:59:39Z +3339,2005-06-21T10:37:11Z,312,526,2005-06-30T05:04:11Z,2,2020-02-15T06:59:39Z +3340,2005-06-21T10:37:23Z,2962,540,2005-06-26T07:21:23Z,2,2020-02-15T06:59:39Z +3341,2005-06-21T10:37:25Z,2189,591,2005-06-26T15:38:25Z,1,2020-02-15T06:59:39Z +3342,2005-06-21T10:46:36Z,2884,196,2005-06-23T09:46:36Z,2,2020-02-15T06:59:39Z +3343,2005-06-21T10:56:59Z,2038,466,2005-06-25T16:41:59Z,1,2020-02-15T06:59:39Z +3344,2005-06-21T10:57:27Z,4401,277,2005-06-28T10:53:27Z,1,2020-02-15T06:59:39Z +3345,2005-06-21T11:05:07Z,4442,71,2005-06-26T15:14:07Z,2,2020-02-15T06:59:39Z +3346,2005-06-21T11:06:53Z,4393,189,2005-06-22T15:19:53Z,2,2020-02-15T06:59:39Z +3347,2005-06-21T11:08:32Z,4330,448,2005-06-28T09:59:32Z,1,2020-02-15T06:59:39Z +3348,2005-06-21T11:16:42Z,2945,16,2005-06-27T13:50:42Z,2,2020-02-15T06:59:39Z +3349,2005-06-21T11:17:35Z,3885,336,2005-06-22T12:51:35Z,2,2020-02-15T06:59:39Z +3350,2005-06-21T11:21:38Z,3221,20,2005-06-28T15:37:38Z,2,2020-02-15T06:59:39Z +3351,2005-06-21T11:21:39Z,1591,386,2005-06-23T07:23:39Z,2,2020-02-15T06:59:39Z +3352,2005-06-21T11:26:29Z,578,510,2005-06-28T07:26:29Z,1,2020-02-15T06:59:39Z +3353,2005-06-21T11:29:23Z,3984,236,2005-06-27T15:06:23Z,1,2020-02-15T06:59:39Z +3354,2005-06-21T11:29:49Z,1083,529,2005-06-25T07:39:49Z,2,2020-02-15T06:59:39Z +3355,2005-06-21T11:30:47Z,1960,275,2005-06-23T06:04:47Z,1,2020-02-15T06:59:39Z +3356,2005-06-21T11:38:45Z,4532,403,2005-06-26T17:18:45Z,1,2020-02-15T06:59:39Z +3357,2005-06-21T11:55:42Z,2528,57,2005-06-22T07:19:42Z,2,2020-02-15T06:59:39Z +3358,2005-06-21T11:56:40Z,1772,69,2005-06-26T08:28:40Z,2,2020-02-15T06:59:39Z +3359,2005-06-21T12:08:18Z,3825,67,2005-06-25T16:35:18Z,2,2020-02-15T06:59:39Z +3360,2005-06-21T12:12:41Z,2792,498,2005-06-26T06:32:41Z,1,2020-02-15T06:59:39Z +3361,2005-06-21T12:14:23Z,2671,268,2005-06-26T10:01:23Z,2,2020-02-15T06:59:39Z +3362,2005-06-21T12:19:54Z,1284,454,2005-06-23T06:59:54Z,2,2020-02-15T06:59:39Z +3363,2005-06-21T12:25:07Z,538,261,2005-06-27T11:52:07Z,2,2020-02-15T06:59:39Z +3364,2005-06-21T12:37:46Z,2329,201,2005-06-28T07:18:46Z,2,2020-02-15T06:59:39Z +3365,2005-06-21T12:55:48Z,657,133,2005-06-23T13:38:48Z,2,2020-02-15T06:59:39Z +3366,2005-06-21T13:03:37Z,2584,511,2005-06-26T16:29:37Z,1,2020-02-15T06:59:39Z +3367,2005-06-21T13:08:21Z,2442,80,2005-06-26T08:43:21Z,2,2020-02-15T06:59:39Z +3368,2005-06-21T13:18:38Z,548,438,2005-06-23T11:13:38Z,1,2020-02-15T06:59:39Z +3369,2005-06-21T13:20:31Z,303,431,2005-06-30T13:45:31Z,2,2020-02-15T06:59:39Z +3370,2005-06-21T13:27:01Z,1573,559,2005-06-25T09:27:01Z,1,2020-02-15T06:59:39Z +3371,2005-06-21T13:27:22Z,2526,595,2005-06-29T14:04:22Z,2,2020-02-15T06:59:39Z +3372,2005-06-21T13:34:19Z,4169,346,2005-06-27T08:41:19Z,2,2020-02-15T06:59:39Z +3373,2005-06-21T13:35:32Z,2219,316,2005-06-30T12:03:32Z,1,2020-02-15T06:59:39Z +3374,2005-06-21T13:36:30Z,1067,279,2005-06-23T15:10:30Z,2,2020-02-15T06:59:39Z +3375,2005-06-21T13:37:18Z,912,279,2005-06-22T11:26:18Z,2,2020-02-15T06:59:39Z +3376,2005-06-21T13:43:02Z,3055,318,2005-06-28T18:07:02Z,1,2020-02-15T06:59:39Z +3377,2005-06-21T13:51:12Z,1845,428,2005-06-22T18:16:12Z,1,2020-02-15T06:59:39Z +3378,2005-06-21T13:51:28Z,35,387,2005-06-25T09:21:28Z,1,2020-02-15T06:59:39Z +3379,2005-06-21T13:54:58Z,2022,566,2005-06-23T13:43:58Z,2,2020-02-15T06:59:39Z +3380,2005-06-21T13:58:46Z,3212,483,2005-06-30T09:29:46Z,1,2020-02-15T06:59:39Z +3381,2005-06-21T14:02:59Z,1373,183,2005-06-29T18:11:59Z,2,2020-02-15T06:59:39Z +3382,2005-06-21T14:05:23Z,131,341,2005-06-29T19:13:23Z,2,2020-02-15T06:59:39Z +3383,2005-06-21T14:07:19Z,2968,239,2005-06-29T17:00:19Z,2,2020-02-15T06:59:39Z +3384,2005-06-21T14:07:35Z,409,91,2005-06-26T16:34:35Z,1,2020-02-15T06:59:39Z +3385,2005-06-21T14:16:48Z,2810,514,2005-06-24T10:32:48Z,2,2020-02-15T06:59:39Z +3386,2005-06-21T14:21:06Z,1224,190,2005-06-24T08:32:06Z,2,2020-02-15T06:59:39Z +3387,2005-06-21T14:21:49Z,2709,305,2005-06-24T16:46:49Z,2,2020-02-15T06:59:39Z +3388,2005-06-21T14:34:51Z,556,119,2005-06-28T18:19:51Z,1,2020-02-15T06:59:39Z +3389,2005-06-21T14:37:55Z,727,395,2005-06-28T18:13:55Z,1,2020-02-15T06:59:39Z +3390,2005-06-21T15:10:50Z,2034,151,2005-06-26T12:38:50Z,1,2020-02-15T06:59:39Z +3391,2005-06-21T15:11:02Z,26,45,2005-06-25T14:12:02Z,1,2020-02-15T06:59:39Z +3392,2005-06-21T15:12:44Z,3343,38,2005-06-29T18:19:44Z,1,2020-02-15T06:59:39Z +3393,2005-06-21T15:14:27Z,1631,362,2005-06-25T19:54:27Z,2,2020-02-15T06:59:39Z +3394,2005-06-21T15:17:39Z,3393,295,2005-06-30T13:55:39Z,2,2020-02-15T06:59:39Z +3395,2005-06-21T15:19:19Z,3764,66,2005-06-29T14:23:19Z,2,2020-02-15T06:59:39Z +3396,2005-06-21T15:23:08Z,2744,371,2005-06-23T10:25:08Z,1,2020-02-15T06:59:39Z +3397,2005-06-21T15:30:11Z,602,552,2005-06-22T21:12:11Z,1,2020-02-15T06:59:39Z +3398,2005-06-21T15:34:38Z,221,599,2005-06-29T11:23:38Z,1,2020-02-15T06:59:39Z +3399,2005-06-21T15:47:48Z,619,98,2005-06-26T13:46:48Z,1,2020-02-15T06:59:39Z +3400,2005-06-21T15:50:30Z,1697,298,2005-06-25T18:07:30Z,1,2020-02-15T06:59:39Z +3401,2005-06-21T15:52:43Z,3423,577,2005-06-30T21:09:43Z,2,2020-02-15T06:59:39Z +3402,2005-06-21T15:54:37Z,596,187,2005-06-30T13:43:37Z,1,2020-02-15T06:59:39Z +3403,2005-06-21T15:55:06Z,1741,264,2005-06-27T12:34:06Z,1,2020-02-15T06:59:39Z +3404,2005-06-21T15:57:52Z,2005,424,2005-06-24T20:58:52Z,2,2020-02-15T06:59:39Z +3405,2005-06-21T15:58:25Z,2344,155,2005-06-23T10:58:25Z,1,2020-02-15T06:59:39Z +3406,2005-06-21T16:00:18Z,2049,203,2005-06-23T18:25:18Z,1,2020-02-15T06:59:39Z +3407,2005-06-21T16:14:02Z,3919,343,2005-06-24T15:38:02Z,2,2020-02-15T06:59:39Z +3408,2005-06-21T16:15:11Z,3453,282,2005-06-27T14:55:11Z,1,2020-02-15T06:59:39Z +3409,2005-06-21T16:17:38Z,3374,429,2005-06-22T14:16:38Z,1,2020-02-15T06:59:39Z +3410,2005-06-21T16:20:47Z,1197,321,2005-06-24T19:09:47Z,2,2020-02-15T06:59:39Z +3411,2005-06-21T16:31:27Z,4250,12,2005-06-28T12:27:27Z,2,2020-02-15T06:59:39Z +3412,2005-06-21T16:44:31Z,3036,501,2005-06-28T16:15:31Z,2,2020-02-15T06:59:39Z +3413,2005-06-21T16:57:07Z,666,322,2005-06-30T12:03:07Z,2,2020-02-15T06:59:39Z +3414,2005-06-21T16:58:50Z,2929,226,2005-06-24T17:26:50Z,1,2020-02-15T06:59:39Z +3415,2005-06-21T16:59:49Z,3540,444,2005-06-27T17:19:49Z,1,2020-02-15T06:59:39Z +3416,2005-06-21T17:05:29Z,1215,76,2005-06-23T17:58:29Z,2,2020-02-15T06:59:39Z +3417,2005-06-21T17:06:20Z,874,282,2005-06-23T17:00:20Z,2,2020-02-15T06:59:39Z +3418,2005-06-21T17:06:38Z,4115,85,2005-06-25T19:43:38Z,1,2020-02-15T06:59:39Z +3419,2005-06-21T17:18:01Z,4022,22,2005-06-22T15:08:01Z,1,2020-02-15T06:59:39Z +3420,2005-06-21T17:22:36Z,2523,27,2005-06-28T12:34:36Z,1,2020-02-15T06:59:39Z +3421,2005-06-21T17:22:58Z,3930,346,2005-06-24T18:57:58Z,1,2020-02-15T06:59:39Z +3422,2005-06-21T17:24:40Z,2724,251,2005-06-29T13:59:40Z,2,2020-02-15T06:59:39Z +3423,2005-06-21T17:38:02Z,3612,19,2005-06-23T19:47:02Z,1,2020-02-15T06:59:39Z +3424,2005-06-21T17:42:51Z,1279,583,2005-06-24T23:22:51Z,2,2020-02-15T06:59:39Z +3425,2005-06-21T18:07:07Z,4548,381,2005-06-27T22:59:07Z,2,2020-02-15T06:59:39Z +3426,2005-06-21T18:12:10Z,3019,95,2005-06-23T18:22:10Z,1,2020-02-15T06:59:39Z +3427,2005-06-21T18:31:09Z,560,561,2005-06-22T14:18:09Z,2,2020-02-15T06:59:39Z +3428,2005-06-21T18:39:34Z,1959,40,2005-06-22T18:23:34Z,2,2020-02-15T06:59:39Z +3429,2005-06-21T18:46:05Z,456,599,2005-06-30T17:28:05Z,1,2020-02-15T06:59:39Z +3430,2005-06-21T18:46:08Z,1613,503,2005-06-22T13:49:08Z,2,2020-02-15T06:59:39Z +3431,2005-06-21T18:46:48Z,133,516,2005-06-26T23:08:48Z,1,2020-02-15T06:59:39Z +3432,2005-06-21T19:02:03Z,1814,216,2005-06-25T00:57:03Z,2,2020-02-15T06:59:39Z +3433,2005-06-21T19:07:19Z,1077,228,2005-06-29T18:01:19Z,2,2020-02-15T06:59:39Z +3434,2005-06-21T19:08:28Z,2295,141,2005-06-23T14:25:28Z,1,2020-02-15T06:59:39Z +3435,2005-06-21T19:14:58Z,451,591,2005-06-24T19:58:58Z,1,2020-02-15T06:59:39Z +3436,2005-06-21T19:16:09Z,2740,137,2005-06-30T13:58:09Z,2,2020-02-15T06:59:39Z +3437,2005-06-21T19:20:17Z,1798,211,2005-07-01T01:09:17Z,2,2020-02-15T06:59:39Z +3438,2005-06-21T19:31:40Z,1757,556,2005-06-30T19:08:40Z,1,2020-02-15T06:59:39Z +3439,2005-06-21T19:36:15Z,1529,46,2005-06-23T14:54:15Z,2,2020-02-15T06:59:39Z +3440,2005-06-21T19:58:18Z,853,491,2005-06-27T22:08:18Z,1,2020-02-15T06:59:39Z +3441,2005-06-21T20:00:12Z,2863,326,2005-06-24T00:24:12Z,2,2020-02-15T06:59:39Z +3442,2005-06-21T20:06:51Z,1896,255,2005-06-25T17:35:51Z,2,2020-02-15T06:59:39Z +3443,2005-06-21T20:19:00Z,1639,377,2005-06-30T15:39:00Z,1,2020-02-15T06:59:39Z +3444,2005-06-21T20:39:39Z,493,45,2005-06-25T23:44:39Z,2,2020-02-15T06:59:39Z +3445,2005-06-21T20:40:28Z,2381,74,2005-06-29T00:47:28Z,2,2020-02-15T06:59:39Z +3446,2005-06-21T20:45:51Z,1817,174,2005-06-26T17:02:51Z,1,2020-02-15T06:59:39Z +3447,2005-06-21T20:53:31Z,1146,25,2005-06-24T02:20:31Z,2,2020-02-15T06:59:39Z +3448,2005-06-21T20:59:20Z,592,476,2005-06-24T15:40:20Z,1,2020-02-15T06:59:39Z +3449,2005-06-21T21:01:27Z,210,181,2005-06-27T21:20:27Z,1,2020-02-15T06:59:39Z +3450,2005-06-21T21:01:57Z,2268,126,2005-06-25T23:57:57Z,1,2020-02-15T06:59:39Z +3451,2005-06-21T21:10:39Z,3489,558,2005-06-30T19:03:39Z,2,2020-02-15T06:59:39Z +3452,2005-06-21T21:11:27Z,2646,293,2005-06-24T16:31:27Z,1,2020-02-15T06:59:39Z +3453,2005-06-21T21:12:11Z,842,278,2005-06-23T17:39:11Z,2,2020-02-15T06:59:39Z +3454,2005-06-21T21:12:13Z,3009,524,2005-06-25T23:23:13Z,1,2020-02-15T06:59:39Z +3455,2005-06-21T21:17:51Z,4403,340,2005-06-23T17:22:51Z,1,2020-02-15T06:59:39Z +3456,2005-06-21T21:19:47Z,1119,150,2005-06-28T18:18:47Z,2,2020-02-15T06:59:39Z +3457,2005-06-21T21:42:33Z,883,312,2005-06-30T19:54:33Z,2,2020-02-15T06:59:39Z +3458,2005-06-21T21:42:49Z,2136,338,2005-06-29T01:26:49Z,1,2020-02-15T06:59:39Z +3459,2005-06-21T21:45:47Z,3080,97,2005-06-25T00:46:47Z,1,2020-02-15T06:59:39Z +3460,2005-06-21T21:46:56Z,1765,236,2005-06-29T20:08:56Z,1,2020-02-15T06:59:39Z +3461,2005-06-21T21:49:18Z,1715,23,2005-06-26T19:51:18Z,1,2020-02-15T06:59:39Z +3462,2005-06-21T21:52:52Z,547,568,2005-06-28T21:41:52Z,1,2020-02-15T06:59:39Z +3463,2005-06-21T22:00:00Z,3436,96,2005-06-22T19:22:00Z,2,2020-02-15T06:59:39Z +3464,2005-06-21T22:08:58Z,2698,251,2005-06-26T16:23:58Z,2,2020-02-15T06:59:39Z +3465,2005-06-21T22:10:01Z,1488,510,2005-06-30T21:35:01Z,1,2020-02-15T06:59:39Z +3466,2005-06-21T22:13:33Z,371,226,2005-06-25T21:01:33Z,2,2020-02-15T06:59:39Z +3467,2005-06-21T22:19:25Z,729,543,2005-06-27T00:03:25Z,2,2020-02-15T06:59:39Z +3468,2005-06-21T22:43:45Z,2899,100,2005-06-30T01:49:45Z,1,2020-02-15T06:59:39Z +3469,2005-06-21T22:48:59Z,4087,181,2005-06-28T19:32:59Z,1,2020-02-15T06:59:39Z +3470,2005-07-05T22:49:24Z,883,565,2005-07-07T19:36:24Z,1,2020-02-15T06:59:39Z +3471,2005-07-05T22:51:44Z,1724,242,2005-07-13T01:38:44Z,2,2020-02-15T06:59:39Z +3472,2005-07-05T22:56:33Z,841,37,2005-07-13T17:18:33Z,2,2020-02-15T06:59:39Z +3473,2005-07-05T22:57:34Z,2735,60,2005-07-12T23:53:34Z,1,2020-02-15T06:59:39Z +3474,2005-07-05T22:59:53Z,97,594,2005-07-08T20:32:53Z,1,2020-02-15T06:59:39Z +3475,2005-07-05T23:01:21Z,2189,8,2005-07-13T23:07:21Z,2,2020-02-15T06:59:39Z +3476,2005-07-05T23:02:37Z,3011,490,2005-07-10T22:17:37Z,2,2020-02-15T06:59:39Z +3477,2005-07-05T23:05:17Z,4289,476,2005-07-15T02:20:17Z,2,2020-02-15T06:59:39Z +3478,2005-07-05T23:05:44Z,2528,322,2005-07-07T00:14:44Z,2,2020-02-15T06:59:39Z +3479,2005-07-05T23:08:53Z,2277,298,2005-07-11T21:42:53Z,1,2020-02-15T06:59:39Z +3480,2005-07-05T23:11:43Z,1488,382,2005-07-12T02:01:43Z,2,2020-02-15T06:59:39Z +3481,2005-07-05T23:13:07Z,3575,138,2005-07-07T20:36:07Z,2,2020-02-15T06:59:39Z +3482,2005-07-05T23:13:22Z,1291,520,2005-07-12T19:02:22Z,2,2020-02-15T06:59:39Z +3483,2005-07-05T23:13:51Z,79,536,2005-07-13T18:31:51Z,1,2020-02-15T06:59:39Z +3484,2005-07-05T23:23:11Z,1934,114,2005-07-11T00:27:11Z,2,2020-02-15T06:59:39Z +3485,2005-07-05T23:25:54Z,117,111,2005-07-09T17:38:54Z,1,2020-02-15T06:59:39Z +3486,2005-07-05T23:29:55Z,4067,296,2005-07-13T19:54:55Z,1,2020-02-15T06:59:39Z +3487,2005-07-05T23:30:36Z,1575,586,2005-07-11T04:00:36Z,1,2020-02-15T06:59:39Z +3488,2005-07-05T23:32:49Z,898,349,2005-07-15T02:01:49Z,2,2020-02-15T06:59:39Z +3489,2005-07-05T23:33:40Z,2936,397,2005-07-15T02:15:40Z,2,2020-02-15T06:59:39Z +3490,2005-07-05T23:37:13Z,3041,369,2005-07-12T22:07:13Z,1,2020-02-15T06:59:39Z +3491,2005-07-05T23:41:08Z,1835,421,2005-07-13T21:53:08Z,1,2020-02-15T06:59:39Z +3492,2005-07-05T23:44:37Z,980,142,2005-07-14T03:54:37Z,1,2020-02-15T06:59:39Z +3493,2005-07-05T23:46:19Z,473,169,2005-07-15T02:31:19Z,1,2020-02-15T06:59:39Z +3494,2005-07-05T23:47:30Z,3149,348,2005-07-11T18:10:30Z,1,2020-02-15T06:59:39Z +3495,2005-07-05T23:50:04Z,2306,553,2005-07-10T01:06:04Z,1,2020-02-15T06:59:39Z +3496,2005-07-05T23:59:15Z,2430,295,2005-07-09T19:39:15Z,2,2020-02-15T06:59:39Z +3497,2005-07-06T00:00:03Z,1970,299,2005-07-09T01:27:03Z,1,2020-02-15T06:59:39Z +3498,2005-07-06T00:02:08Z,1869,444,2005-07-10T00:19:08Z,1,2020-02-15T06:59:39Z +3499,2005-07-06T00:04:20Z,1850,520,2005-07-14T21:12:20Z,2,2020-02-15T06:59:39Z +3500,2005-07-06T00:11:13Z,2447,32,2005-07-13T19:01:13Z,2,2020-02-15T06:59:39Z +3501,2005-07-06T00:11:28Z,2219,270,2005-07-10T20:32:28Z,2,2020-02-15T06:59:39Z +3502,2005-07-06T00:15:06Z,1026,126,2005-07-13T01:35:06Z,1,2020-02-15T06:59:39Z +3503,2005-07-06T00:17:24Z,2944,449,2005-07-08T03:47:24Z,1,2020-02-15T06:59:39Z +3504,2005-07-06T00:18:29Z,268,209,2005-07-10T00:24:29Z,2,2020-02-15T06:59:39Z +3505,2005-07-06T00:19:32Z,2630,331,2005-07-14T20:14:32Z,2,2020-02-15T06:59:39Z +3506,2005-07-06T00:22:29Z,19,459,2005-07-07T22:15:29Z,1,2020-02-15T06:59:39Z +3507,2005-07-06T00:23:43Z,166,480,2005-07-15T04:19:43Z,1,2020-02-15T06:59:39Z +3508,2005-07-06T00:24:25Z,2381,34,2005-07-10T05:38:25Z,2,2020-02-15T06:59:39Z +3509,2005-07-06T00:24:57Z,4394,182,2005-07-09T18:48:57Z,2,2020-02-15T06:59:39Z +3510,2005-07-06T00:27:41Z,2250,443,2005-07-14T23:20:41Z,2,2020-02-15T06:59:39Z +3511,2005-07-06T00:42:01Z,2128,494,2005-07-09T23:08:01Z,1,2020-02-15T06:59:39Z +3512,2005-07-06T00:43:06Z,371,291,2005-07-12T06:18:06Z,2,2020-02-15T06:59:39Z +3513,2005-07-06T00:45:57Z,4225,223,2005-07-11T19:04:57Z,2,2020-02-15T06:59:39Z +3514,2005-07-06T00:46:54Z,4546,536,2005-07-09T05:47:54Z,1,2020-02-15T06:59:39Z +3515,2005-07-06T00:48:55Z,3220,131,2005-07-09T00:15:55Z,1,2020-02-15T06:59:39Z +3516,2005-07-06T00:50:30Z,385,338,2005-07-09T19:12:30Z,2,2020-02-15T06:59:39Z +3517,2005-07-06T00:52:35Z,2762,314,2005-07-08T20:10:35Z,2,2020-02-15T06:59:39Z +3518,2005-07-06T00:56:03Z,2502,167,2005-07-14T02:27:03Z,1,2020-02-15T06:59:39Z +3519,2005-07-06T00:57:29Z,4314,320,2005-07-10T21:12:29Z,2,2020-02-15T06:59:39Z +3520,2005-07-06T00:58:27Z,2872,102,2005-07-14T05:56:27Z,1,2020-02-15T06:59:39Z +3521,2005-07-06T01:00:11Z,1440,262,2005-07-11T19:15:11Z,2,2020-02-15T06:59:39Z +3522,2005-07-06T01:00:21Z,4522,469,2005-07-11T01:18:21Z,1,2020-02-15T06:59:39Z +3523,2005-07-06T01:01:38Z,2171,549,2005-07-10T20:24:38Z,2,2020-02-15T06:59:39Z +3524,2005-07-06T01:01:51Z,1626,88,2005-07-11T19:52:51Z,2,2020-02-15T06:59:39Z +3525,2005-07-06T01:02:39Z,208,51,2005-07-14T02:27:39Z,1,2020-02-15T06:59:39Z +3526,2005-07-06T01:03:29Z,3871,469,2005-07-15T01:22:29Z,2,2020-02-15T06:59:39Z +3527,2005-07-06T01:11:08Z,4537,389,2005-07-08T01:21:08Z,1,2020-02-15T06:59:39Z +3528,2005-07-06T01:13:27Z,1954,201,2005-07-06T23:45:27Z,2,2020-02-15T06:59:39Z +3529,2005-07-06T01:15:26Z,4316,350,2005-07-07T04:28:26Z,1,2020-02-15T06:59:39Z +3530,2005-07-06T01:22:45Z,4542,168,2005-07-10T03:23:45Z,1,2020-02-15T06:59:39Z +3531,2005-07-06T01:24:08Z,1890,165,2005-07-11T22:00:08Z,2,2020-02-15T06:59:39Z +3532,2005-07-06T01:24:38Z,2635,274,2005-07-11T06:42:38Z,2,2020-02-15T06:59:39Z +3533,2005-07-06T01:26:44Z,2028,206,2005-07-14T21:37:44Z,1,2020-02-15T06:59:39Z +3534,2005-07-06T01:32:27Z,2055,283,2005-07-08T23:14:27Z,1,2020-02-15T06:59:39Z +3535,2005-07-06T01:32:46Z,4214,65,2005-07-11T03:15:46Z,1,2020-02-15T06:59:39Z +3536,2005-07-06T01:36:11Z,2328,339,2005-07-12T20:00:11Z,2,2020-02-15T06:59:39Z +3537,2005-07-06T01:36:53Z,4220,479,2005-07-13T07:01:53Z,2,2020-02-15T06:59:39Z +3538,2005-07-06T01:37:07Z,4361,228,2005-07-11T06:02:07Z,2,2020-02-15T06:59:39Z +3539,2005-07-06T01:39:08Z,4081,444,2005-07-07T05:38:08Z,1,2020-02-15T06:59:39Z +3540,2005-07-06T01:47:20Z,1295,97,2005-07-08T23:48:20Z,2,2020-02-15T06:59:39Z +3541,2005-07-06T01:50:11Z,1204,501,2005-07-12T03:24:11Z,1,2020-02-15T06:59:39Z +3542,2005-07-06T01:51:42Z,4391,593,2005-07-11T03:29:42Z,1,2020-02-15T06:59:39Z +3543,2005-07-06T02:01:08Z,3997,394,2005-07-07T03:14:08Z,1,2020-02-15T06:59:39Z +3544,2005-07-06T02:06:32Z,3098,115,2005-07-09T04:35:32Z,2,2020-02-15T06:59:39Z +3545,2005-07-06T02:16:17Z,3924,442,2005-07-11T00:54:17Z,1,2020-02-15T06:59:39Z +3546,2005-07-06T02:17:54Z,959,594,2005-07-07T00:19:54Z,1,2020-02-15T06:59:39Z +3547,2005-07-06T02:18:06Z,2730,239,2005-07-08T05:24:06Z,1,2020-02-15T06:59:39Z +3548,2005-07-06T02:23:39Z,4498,16,2005-07-08T07:53:39Z,2,2020-02-15T06:59:39Z +3549,2005-07-06T02:24:55Z,3921,19,2005-07-06T21:40:55Z,2,2020-02-15T06:59:39Z +3550,2005-07-06T02:29:21Z,2417,15,2005-07-13T05:26:21Z,2,2020-02-15T06:59:39Z +3551,2005-07-06T02:33:48Z,3602,111,2005-07-13T04:38:48Z,1,2020-02-15T06:59:39Z +3552,2005-07-06T02:34:09Z,1099,239,2005-07-12T05:31:09Z,1,2020-02-15T06:59:39Z +3553,2005-07-06T02:35:41Z,4510,422,2005-07-08T06:38:41Z,2,2020-02-15T06:59:39Z +3554,2005-07-06T02:37:10Z,793,538,2005-07-09T01:58:10Z,1,2020-02-15T06:59:39Z +3555,2005-07-06T02:45:35Z,869,537,2005-07-10T07:17:35Z,1,2020-02-15T06:59:39Z +3556,2005-07-06T02:46:13Z,3142,273,2005-07-06T22:08:13Z,1,2020-02-15T06:59:39Z +3557,2005-07-06T02:48:39Z,3832,292,2005-07-08T22:52:39Z,2,2020-02-15T06:59:39Z +3558,2005-07-06T02:49:06Z,1742,575,2005-07-15T01:38:06Z,2,2020-02-15T06:59:39Z +3559,2005-07-06T02:49:42Z,2211,483,2005-07-12T04:44:42Z,1,2020-02-15T06:59:39Z +3560,2005-07-06T02:51:37Z,888,592,2005-07-10T01:35:37Z,2,2020-02-15T06:59:39Z +3561,2005-07-06T02:54:33Z,213,231,2005-07-14T07:44:33Z,2,2020-02-15T06:59:39Z +3562,2005-07-06T02:54:36Z,1660,587,2005-07-11T05:48:36Z,1,2020-02-15T06:59:39Z +3563,2005-07-06T02:57:01Z,4261,210,2005-07-14T02:25:01Z,2,2020-02-15T06:59:39Z +3564,2005-07-06T03:02:13Z,1096,402,2005-07-13T01:41:13Z,2,2020-02-15T06:59:39Z +3565,2005-07-06T03:02:58Z,599,97,2005-07-13T21:31:58Z,2,2020-02-15T06:59:39Z +3566,2005-07-06T03:08:51Z,2774,392,2005-07-12T05:04:51Z,1,2020-02-15T06:59:39Z +3567,2005-07-06T03:09:36Z,27,355,2005-07-12T02:15:36Z,1,2020-02-15T06:59:39Z +3568,2005-07-06T03:11:57Z,2084,283,2005-07-15T03:14:57Z,1,2020-02-15T06:59:39Z +3569,2005-07-06T03:17:23Z,1929,496,2005-07-14T03:58:23Z,1,2020-02-15T06:59:39Z +3570,2005-07-06T03:23:43Z,1300,450,2005-07-14T07:28:43Z,2,2020-02-15T06:59:39Z +3571,2005-07-06T03:32:31Z,4166,580,2005-07-11T06:15:31Z,1,2020-02-15T06:59:39Z +3572,2005-07-06T03:33:23Z,1915,284,2005-07-08T07:54:23Z,1,2020-02-15T06:59:39Z +3573,2005-07-06T03:33:48Z,146,66,2005-07-07T22:39:48Z,1,2020-02-15T06:59:39Z +3574,2005-07-06T03:36:01Z,2799,225,2005-07-10T01:29:01Z,2,2020-02-15T06:59:39Z +3575,2005-07-06T03:36:19Z,3234,49,2005-07-08T06:21:19Z,1,2020-02-15T06:59:39Z +3576,2005-07-06T03:40:01Z,324,227,2005-07-15T07:22:01Z,1,2020-02-15T06:59:39Z +3577,2005-07-06T03:40:36Z,4390,152,2005-07-10T05:54:36Z,2,2020-02-15T06:59:39Z +3578,2005-07-06T03:47:05Z,2954,263,2005-07-08T02:26:05Z,1,2020-02-15T06:59:39Z +3579,2005-07-06T03:47:47Z,3309,485,2005-07-08T02:16:47Z,2,2020-02-15T06:59:39Z +3580,2005-07-06T03:48:44Z,3837,200,2005-07-13T01:15:44Z,2,2020-02-15T06:59:39Z +3581,2005-07-06T03:57:35Z,4520,235,2005-07-07T08:07:35Z,2,2020-02-15T06:59:39Z +3582,2005-07-06T04:10:35Z,1866,297,2005-07-11T01:29:35Z,2,2020-02-15T06:59:39Z +3583,2005-07-06T04:10:43Z,204,574,2005-07-14T22:17:43Z,2,2020-02-15T06:59:39Z +3584,2005-07-06T04:16:43Z,367,207,2005-07-13T07:08:43Z,1,2020-02-15T06:59:39Z +3585,2005-07-06T04:22:36Z,2726,266,2005-07-09T06:16:36Z,2,2020-02-15T06:59:39Z +3586,2005-07-06T04:24:42Z,616,493,2005-07-09T02:37:42Z,1,2020-02-15T06:59:39Z +3587,2005-07-06T04:27:52Z,462,110,2005-07-13T08:19:52Z,1,2020-02-15T06:59:39Z +3588,2005-07-06T04:29:13Z,3154,289,2005-07-07T23:49:13Z,1,2020-02-15T06:59:39Z +3589,2005-07-06T04:30:18Z,3740,137,2005-07-10T09:18:18Z,1,2020-02-15T06:59:39Z +3590,2005-07-06T04:35:12Z,1510,283,2005-07-10T05:14:12Z,2,2020-02-15T06:59:39Z +3591,2005-07-06T04:37:10Z,1241,53,2005-07-09T23:32:10Z,1,2020-02-15T06:59:39Z +3592,2005-07-06T04:38:50Z,1272,286,2005-07-15T06:36:50Z,2,2020-02-15T06:59:39Z +3593,2005-07-06T04:39:52Z,619,78,2005-07-11T23:20:52Z,2,2020-02-15T06:59:39Z +3594,2005-07-06T04:42:47Z,4566,522,2005-07-10T00:49:47Z,1,2020-02-15T06:59:39Z +3595,2005-07-06T04:59:49Z,1431,92,2005-07-15T06:26:49Z,2,2020-02-15T06:59:39Z +3596,2005-07-06T05:03:11Z,594,419,2005-07-07T05:30:11Z,2,2020-02-15T06:59:39Z +3597,2005-07-06T05:03:59Z,4080,35,2005-07-13T06:49:59Z,2,2020-02-15T06:59:39Z +3598,2005-07-06T05:11:04Z,1317,68,2005-07-09T02:03:04Z,2,2020-02-15T06:59:39Z +3599,2005-07-06T05:16:36Z,3262,577,2005-07-13T07:14:36Z,2,2020-02-15T06:59:39Z +3600,2005-07-06T05:19:42Z,2748,511,2005-07-11T00:34:42Z,2,2020-02-15T06:59:39Z +3601,2005-07-06T05:20:25Z,2806,205,2005-07-15T03:13:25Z,1,2020-02-15T06:59:39Z +3602,2005-07-06T05:23:10Z,2192,100,2005-07-15T03:22:10Z,2,2020-02-15T06:59:39Z +3603,2005-07-06T05:25:03Z,2442,330,2005-07-12T08:14:03Z,1,2020-02-15T06:59:39Z +3604,2005-07-06T05:25:22Z,1380,242,2005-07-07T23:52:22Z,1,2020-02-15T06:59:39Z +3605,2005-07-06T05:27:15Z,384,347,2005-07-10T00:05:15Z,2,2020-02-15T06:59:39Z +3606,2005-07-06T05:28:02Z,1737,166,2005-07-10T04:51:02Z,1,2020-02-15T06:59:39Z +3607,2005-07-06T05:30:09Z,542,335,2005-07-08T01:36:09Z,2,2020-02-15T06:59:39Z +3608,2005-07-06T05:35:39Z,3095,368,2005-07-10T07:46:39Z,2,2020-02-15T06:59:39Z +3609,2005-07-06T05:36:22Z,1064,373,2005-07-10T05:55:22Z,1,2020-02-15T06:59:39Z +3610,2005-07-06T05:36:59Z,1509,348,2005-07-13T07:07:59Z,1,2020-02-15T06:59:39Z +3611,2005-07-06T05:37:18Z,4502,86,2005-07-10T05:14:18Z,1,2020-02-15T06:59:39Z +3612,2005-07-06T05:37:26Z,2465,402,2005-07-14T01:51:26Z,1,2020-02-15T06:59:39Z +3613,2005-07-06T05:45:53Z,3776,331,2005-07-07T10:02:53Z,1,2020-02-15T06:59:39Z +3614,2005-07-06T05:46:05Z,853,502,2005-07-11T01:24:05Z,2,2020-02-15T06:59:39Z +3615,2005-07-06T05:47:47Z,711,49,2005-07-11T05:01:47Z,1,2020-02-15T06:59:39Z +3616,2005-07-06T05:52:13Z,557,571,2005-07-10T10:24:13Z,1,2020-02-15T06:59:39Z +3617,2005-07-06T05:58:06Z,1337,125,2005-07-13T02:10:06Z,1,2020-02-15T06:59:39Z +3618,2005-07-06T05:58:45Z,330,264,2005-07-15T09:13:45Z,2,2020-02-15T06:59:39Z +3619,2005-07-06T05:59:44Z,3350,526,2005-07-11T08:58:44Z,2,2020-02-15T06:59:39Z +3620,2005-07-06T06:01:50Z,1661,88,2005-07-08T05:04:50Z,1,2020-02-15T06:59:39Z +3621,2005-07-06T06:03:55Z,3132,171,2005-07-11T09:25:55Z,2,2020-02-15T06:59:39Z +3622,2005-07-06T06:05:04Z,3489,454,2005-07-12T03:14:04Z,2,2020-02-15T06:59:39Z +3623,2005-07-06T06:05:23Z,430,80,2005-07-07T05:59:23Z,1,2020-02-15T06:59:39Z +3624,2005-07-06T06:06:27Z,1778,115,2005-07-13T08:30:27Z,2,2020-02-15T06:59:39Z +3625,2005-07-06T06:12:52Z,1133,175,2005-07-12T07:37:52Z,1,2020-02-15T06:59:39Z +3626,2005-07-06T06:15:35Z,1599,337,2005-07-10T10:18:35Z,2,2020-02-15T06:59:39Z +3627,2005-07-06T06:19:25Z,1087,322,2005-07-11T05:53:25Z,1,2020-02-15T06:59:39Z +3628,2005-07-06T06:19:43Z,3509,588,2005-07-07T02:23:43Z,1,2020-02-15T06:59:39Z +3629,2005-07-06T06:23:22Z,4019,441,2005-07-08T09:32:22Z,2,2020-02-15T06:59:39Z +3630,2005-07-06T06:27:15Z,2448,102,2005-07-12T10:36:15Z,1,2020-02-15T06:59:39Z +3631,2005-07-06T06:36:53Z,4068,47,2005-07-07T10:32:53Z,1,2020-02-15T06:59:39Z +3632,2005-07-06T06:38:21Z,2583,366,2005-07-11T03:19:21Z,1,2020-02-15T06:59:39Z +3633,2005-07-06T06:43:26Z,2978,95,2005-07-10T04:54:26Z,1,2020-02-15T06:59:39Z +3634,2005-07-06T06:51:14Z,3688,245,2005-07-10T02:30:14Z,1,2020-02-15T06:59:39Z +3635,2005-07-06T06:55:36Z,421,250,2005-07-09T07:57:36Z,2,2020-02-15T06:59:39Z +3636,2005-07-06T07:03:52Z,3379,591,2005-07-08T03:14:52Z,2,2020-02-15T06:59:39Z +3637,2005-07-06T07:06:31Z,3823,380,2005-07-10T02:11:31Z,2,2020-02-15T06:59:39Z +3638,2005-07-06T07:08:17Z,190,452,2005-07-13T12:30:17Z,1,2020-02-15T06:59:39Z +3639,2005-07-06T07:09:17Z,2812,7,2005-07-15T05:12:17Z,2,2020-02-15T06:59:39Z +3640,2005-07-06T07:12:26Z,3432,271,2005-07-10T04:54:26Z,2,2020-02-15T06:59:39Z +3641,2005-07-06T07:17:09Z,3834,79,2005-07-11T07:25:09Z,1,2020-02-15T06:59:39Z +3642,2005-07-06T07:18:20Z,4204,166,2005-07-09T01:37:20Z,1,2020-02-15T06:59:39Z +3643,2005-07-06T07:20:08Z,845,176,2005-07-11T07:01:08Z,1,2020-02-15T06:59:39Z +3644,2005-07-06T07:20:11Z,4309,403,2005-07-11T10:26:11Z,2,2020-02-15T06:59:39Z +3645,2005-07-06T07:22:09Z,3390,236,2005-07-10T11:45:09Z,1,2020-02-15T06:59:39Z +3646,2005-07-06T07:28:59Z,3591,322,2005-07-11T05:19:59Z,1,2020-02-15T06:59:39Z +3647,2005-07-06T07:29:17Z,3762,145,2005-07-13T08:32:17Z,1,2020-02-15T06:59:39Z +3648,2005-07-06T07:30:41Z,2810,598,2005-07-10T06:00:41Z,2,2020-02-15T06:59:39Z +3649,2005-07-06T07:32:42Z,3564,24,2005-07-12T09:37:42Z,1,2020-02-15T06:59:39Z +3650,2005-07-06T07:34:15Z,3606,482,2005-07-08T01:50:15Z,2,2020-02-15T06:59:39Z +3651,2005-07-06T07:40:31Z,3323,170,2005-07-08T03:39:31Z,2,2020-02-15T06:59:39Z +3652,2005-07-06T07:44:30Z,1231,518,2005-07-08T04:41:30Z,1,2020-02-15T06:59:39Z +3653,2005-07-06T07:45:13Z,2513,148,2005-07-10T11:51:13Z,2,2020-02-15T06:59:39Z +3654,2005-07-06T07:45:31Z,1621,528,2005-07-12T09:59:31Z,2,2020-02-15T06:59:39Z +3655,2005-07-06T07:52:54Z,1540,493,2005-07-15T10:49:54Z,2,2020-02-15T06:59:39Z +3656,2005-07-06T07:55:22Z,4544,314,2005-07-13T10:36:22Z,2,2020-02-15T06:59:39Z +3657,2005-07-06T07:55:30Z,4134,113,2005-07-11T07:18:30Z,1,2020-02-15T06:59:39Z +3658,2005-07-06T08:01:08Z,3453,253,2005-07-15T06:36:08Z,1,2020-02-15T06:59:39Z +3659,2005-07-06T08:03:14Z,2271,330,2005-07-12T09:50:14Z,1,2020-02-15T06:59:39Z +3660,2005-07-06T08:07:29Z,1129,507,2005-07-14T08:46:29Z,1,2020-02-15T06:59:39Z +3661,2005-07-06T08:10:02Z,2600,442,2005-07-10T10:17:02Z,1,2020-02-15T06:59:39Z +3662,2005-07-06T08:11:48Z,3827,334,2005-07-09T12:25:48Z,2,2020-02-15T06:59:39Z +3663,2005-07-06T08:15:47Z,2646,566,2005-07-07T08:57:47Z,1,2020-02-15T06:59:39Z +3664,2005-07-06T08:15:57Z,3366,528,2005-07-08T06:11:57Z,1,2020-02-15T06:59:39Z +3665,2005-07-06T08:23:08Z,922,102,2005-07-13T13:38:08Z,2,2020-02-15T06:59:39Z +3666,2005-07-06T08:27:43Z,4212,347,2005-07-09T07:37:43Z,2,2020-02-15T06:59:39Z +3667,2005-07-06T08:36:34Z,447,373,2005-07-15T04:25:34Z,2,2020-02-15T06:59:39Z +3668,2005-07-06T08:36:48Z,269,514,2005-07-10T11:31:48Z,1,2020-02-15T06:59:39Z +3669,2005-07-06T08:38:29Z,1299,530,2005-07-10T05:28:29Z,1,2020-02-15T06:59:39Z +3670,2005-07-06T08:56:43Z,4271,268,2005-07-11T09:11:43Z,1,2020-02-15T06:59:39Z +3671,2005-07-06T09:01:29Z,2821,179,2005-07-15T08:08:29Z,1,2020-02-15T06:59:39Z +3672,2005-07-06T09:01:56Z,3883,283,2005-07-11T14:18:56Z,1,2020-02-15T06:59:39Z +3673,2005-07-06T09:02:09Z,1837,88,2005-07-15T06:45:09Z,2,2020-02-15T06:59:39Z +3674,2005-07-06T09:03:13Z,3686,559,2005-07-13T08:43:13Z,1,2020-02-15T06:59:39Z +3675,2005-07-06T09:09:19Z,3662,282,2005-07-12T08:51:19Z,1,2020-02-15T06:59:39Z +3676,2005-07-06T09:10:37Z,1967,137,2005-07-14T08:24:37Z,1,2020-02-15T06:59:39Z +3677,2005-07-06T09:11:58Z,600,5,2005-07-08T10:50:58Z,2,2020-02-15T06:59:39Z +3678,2005-07-06T09:15:15Z,3861,364,2005-07-10T05:01:15Z,1,2020-02-15T06:59:39Z +3679,2005-07-06T09:15:57Z,2186,547,2005-07-08T03:20:57Z,1,2020-02-15T06:59:39Z +3680,2005-07-06T09:16:10Z,2427,82,2005-07-08T07:52:10Z,2,2020-02-15T06:59:39Z +3681,2005-07-06T09:19:30Z,3325,294,2005-07-11T09:40:30Z,1,2020-02-15T06:59:39Z +3682,2005-07-06T09:22:48Z,2597,98,2005-07-14T11:17:48Z,2,2020-02-15T06:59:39Z +3683,2005-07-06T09:25:56Z,3020,43,2005-07-14T12:10:56Z,1,2020-02-15T06:59:39Z +3684,2005-07-06T09:29:22Z,3261,395,2005-07-12T08:19:22Z,1,2020-02-15T06:59:39Z +3685,2005-07-06T09:30:45Z,2015,58,2005-07-11T15:16:45Z,2,2020-02-15T06:59:39Z +3686,2005-07-06T09:37:50Z,376,548,2005-07-09T10:15:50Z,2,2020-02-15T06:59:39Z +3687,2005-07-06T09:38:33Z,2040,207,2005-07-14T07:50:33Z,1,2020-02-15T06:59:39Z +3688,2005-07-06T09:41:53Z,1102,380,2005-07-14T10:30:53Z,2,2020-02-15T06:59:39Z +3689,2005-07-06T09:43:01Z,3168,129,2005-07-11T09:57:01Z,1,2020-02-15T06:59:39Z +3690,2005-07-06T09:46:03Z,4405,435,2005-07-07T12:12:03Z,1,2020-02-15T06:59:39Z +3691,2005-07-06T09:46:12Z,1937,478,2005-07-07T14:08:12Z,1,2020-02-15T06:59:39Z +3692,2005-07-06T09:54:12Z,1237,286,2005-07-11T09:42:12Z,2,2020-02-15T06:59:39Z +3693,2005-07-06T09:56:09Z,2989,545,2005-07-15T06:50:09Z,2,2020-02-15T06:59:39Z +3694,2005-07-06T10:01:23Z,3848,419,2005-07-08T11:44:23Z,2,2020-02-15T06:59:39Z +3695,2005-07-06T10:02:08Z,2823,441,2005-07-09T15:43:08Z,1,2020-02-15T06:59:39Z +3696,2005-07-06T10:04:55Z,3244,497,2005-07-11T15:58:55Z,2,2020-02-15T06:59:39Z +3697,2005-07-06T10:07:22Z,1223,182,2005-07-13T14:04:22Z,2,2020-02-15T06:59:39Z +3698,2005-07-06T10:09:20Z,1263,461,2005-07-08T15:49:20Z,1,2020-02-15T06:59:39Z +3699,2005-07-06T10:11:25Z,418,262,2005-07-14T05:18:25Z,1,2020-02-15T06:59:39Z +3700,2005-07-06T10:12:19Z,343,72,2005-07-07T14:21:19Z,2,2020-02-15T06:59:39Z +3701,2005-07-06T10:12:45Z,3679,31,2005-07-09T08:52:45Z,1,2020-02-15T06:59:39Z +3702,2005-07-06T10:13:56Z,2204,428,2005-07-10T08:12:56Z,1,2020-02-15T06:59:39Z +3703,2005-07-06T10:15:26Z,4276,421,2005-07-13T13:00:26Z,1,2020-02-15T06:59:39Z +3704,2005-07-06T10:16:45Z,2687,323,2005-07-13T12:44:45Z,2,2020-02-15T06:59:39Z +3705,2005-07-06T10:17:59Z,65,223,2005-07-10T15:31:59Z,1,2020-02-15T06:59:39Z +3706,2005-07-06T10:18:01Z,681,132,2005-07-09T09:07:01Z,2,2020-02-15T06:59:39Z +3707,2005-07-06T10:21:49Z,1080,14,2005-07-12T05:14:49Z,2,2020-02-15T06:59:39Z +3708,2005-07-06T10:23:27Z,2105,201,2005-07-14T09:26:27Z,1,2020-02-15T06:59:39Z +3709,2005-07-06T10:26:56Z,4033,187,2005-07-15T13:51:56Z,2,2020-02-15T06:59:39Z +3710,2005-07-06T10:28:53Z,2596,228,2005-07-15T06:17:53Z,2,2020-02-15T06:59:39Z +3711,2005-07-06T10:46:15Z,1914,75,2005-07-07T09:25:15Z,2,2020-02-15T06:59:39Z +3712,2005-07-06T10:47:35Z,3741,504,2005-07-15T09:39:35Z,1,2020-02-15T06:59:39Z +3713,2005-07-06T10:49:30Z,1823,504,2005-07-13T10:44:30Z,1,2020-02-15T06:59:39Z +3714,2005-07-06T10:51:28Z,1985,276,2005-07-09T13:57:28Z,2,2020-02-15T06:59:39Z +3715,2005-07-06T10:51:48Z,4456,228,2005-07-11T06:08:48Z,1,2020-02-15T06:59:39Z +3716,2005-07-06T10:52:32Z,3271,92,2005-07-14T08:45:32Z,2,2020-02-15T06:59:39Z +3717,2005-07-06T10:53:34Z,1677,173,2005-07-07T13:43:34Z,2,2020-02-15T06:59:39Z +3718,2005-07-06T10:57:56Z,2624,56,2005-07-12T12:54:56Z,1,2020-02-15T06:59:39Z +3719,2005-07-06T11:05:55Z,3573,376,2005-07-11T08:10:55Z,2,2020-02-15T06:59:39Z +3720,2005-07-06T11:06:57Z,2958,96,2005-07-09T14:16:57Z,1,2020-02-15T06:59:39Z +3721,2005-07-06T11:10:09Z,2654,226,2005-07-11T07:45:09Z,2,2020-02-15T06:59:39Z +3722,2005-07-06T11:10:27Z,604,83,2005-07-13T12:56:27Z,2,2020-02-15T06:59:39Z +3723,2005-07-06T11:12:02Z,4554,501,2005-07-14T16:45:02Z,2,2020-02-15T06:59:39Z +3724,2005-07-06T11:12:48Z,3622,468,2005-07-14T14:41:48Z,1,2020-02-15T06:59:39Z +3725,2005-07-06T11:15:04Z,2789,126,2005-07-09T06:39:04Z,1,2020-02-15T06:59:39Z +3726,2005-07-06T11:15:49Z,742,363,2005-07-11T05:54:49Z,2,2020-02-15T06:59:39Z +3727,2005-07-06T11:16:43Z,2886,57,2005-07-07T15:39:43Z,1,2020-02-15T06:59:39Z +3728,2005-07-06T11:29:00Z,1798,298,2005-07-11T06:28:00Z,1,2020-02-15T06:59:39Z +3729,2005-07-06T11:30:29Z,3156,90,2005-07-12T07:18:29Z,1,2020-02-15T06:59:39Z +3730,2005-07-06T11:31:24Z,1665,355,2005-07-15T06:53:24Z,1,2020-02-15T06:59:39Z +3731,2005-07-06T11:33:36Z,4133,558,2005-07-15T12:23:36Z,2,2020-02-15T06:59:39Z +3732,2005-07-06T11:33:37Z,106,318,2005-07-08T08:31:37Z,1,2020-02-15T06:59:39Z +3733,2005-07-06T11:33:55Z,3242,586,2005-07-09T10:08:55Z,2,2020-02-15T06:59:39Z +3734,2005-07-06T11:40:27Z,4569,37,2005-07-14T12:08:27Z,1,2020-02-15T06:59:39Z +3735,2005-07-06T11:42:04Z,2262,534,2005-07-12T14:33:04Z,2,2020-02-15T06:59:39Z +3736,2005-07-06T11:43:44Z,1515,23,2005-07-13T07:55:44Z,2,2020-02-15T06:59:39Z +3737,2005-07-06T11:45:53Z,123,403,2005-07-13T15:27:53Z,1,2020-02-15T06:59:39Z +3738,2005-07-06T11:50:57Z,578,546,2005-07-09T08:07:57Z,1,2020-02-15T06:59:39Z +3739,2005-07-06T11:54:18Z,4333,157,2005-07-09T10:48:18Z,1,2020-02-15T06:59:39Z +3740,2005-07-06T11:55:35Z,1829,277,2005-07-14T09:44:35Z,2,2020-02-15T06:59:39Z +3741,2005-07-06T12:00:18Z,1449,584,2005-07-12T09:02:18Z,2,2020-02-15T06:59:39Z +3742,2005-07-06T12:01:38Z,2873,96,2005-07-15T10:46:38Z,1,2020-02-15T06:59:39Z +3743,2005-07-06T12:03:54Z,1012,456,2005-07-13T10:56:54Z,2,2020-02-15T06:59:39Z +3744,2005-07-06T12:10:02Z,3343,510,2005-07-08T11:49:02Z,2,2020-02-15T06:59:39Z +3745,2005-07-06T12:10:32Z,1518,171,2005-07-12T15:20:32Z,1,2020-02-15T06:59:39Z +3746,2005-07-06T12:10:51Z,3387,424,2005-07-07T11:36:51Z,2,2020-02-15T06:59:39Z +3747,2005-07-06T12:11:14Z,1093,437,2005-07-09T17:14:14Z,2,2020-02-15T06:59:39Z +3748,2005-07-06T12:11:22Z,2920,79,2005-07-12T07:22:22Z,1,2020-02-15T06:59:39Z +3749,2005-07-06T12:18:03Z,1531,170,2005-07-11T07:25:03Z,1,2020-02-15T06:59:39Z +3750,2005-07-06T12:19:28Z,2422,103,2005-07-14T13:16:28Z,2,2020-02-15T06:59:39Z +3751,2005-07-06T12:23:41Z,3652,128,2005-07-10T06:58:41Z,1,2020-02-15T06:59:39Z +3752,2005-07-06T12:30:12Z,4561,235,2005-07-13T12:13:12Z,1,2020-02-15T06:59:39Z +3753,2005-07-06T12:34:06Z,774,358,2005-07-07T14:19:06Z,2,2020-02-15T06:59:39Z +3754,2005-07-06T12:35:44Z,4042,83,2005-07-08T16:28:44Z,1,2020-02-15T06:59:39Z +3755,2005-07-06T12:37:16Z,3147,402,2005-07-13T07:22:16Z,1,2020-02-15T06:59:39Z +3756,2005-07-06T12:40:38Z,30,320,2005-07-11T09:29:38Z,1,2020-02-15T06:59:39Z +3757,2005-07-06T12:42:26Z,2816,66,2005-07-11T10:30:26Z,1,2020-02-15T06:59:39Z +3758,2005-07-06T12:43:11Z,2498,48,2005-07-14T12:52:11Z,2,2020-02-15T06:59:39Z +3759,2005-07-06T12:46:38Z,4165,378,2005-07-10T11:31:38Z,1,2020-02-15T06:59:39Z +3760,2005-07-06T12:49:28Z,1306,330,2005-07-09T16:29:28Z,1,2020-02-15T06:59:39Z +3761,2005-07-06T12:52:44Z,4304,464,2005-07-08T17:22:44Z,1,2020-02-15T06:59:39Z +3762,2005-07-06T12:52:49Z,1941,413,2005-07-12T11:41:49Z,1,2020-02-15T06:59:39Z +3763,2005-07-06T12:56:31Z,1573,189,2005-07-09T14:49:31Z,1,2020-02-15T06:59:39Z +3764,2005-07-06T13:01:03Z,3115,470,2005-07-13T15:26:03Z,1,2020-02-15T06:59:39Z +3765,2005-07-06T13:01:47Z,1805,547,2005-07-09T07:10:47Z,1,2020-02-15T06:59:39Z +3766,2005-07-06T13:04:35Z,4504,312,2005-07-07T15:46:35Z,1,2020-02-15T06:59:39Z +3767,2005-07-06T13:07:27Z,923,582,2005-07-08T18:48:27Z,1,2020-02-15T06:59:39Z +3768,2005-07-06T13:07:30Z,3995,573,2005-07-09T16:26:30Z,2,2020-02-15T06:59:39Z +3769,2005-07-06T13:11:33Z,467,567,2005-07-14T17:54:33Z,2,2020-02-15T06:59:39Z +3770,2005-07-06T13:14:28Z,3836,198,2005-07-13T09:23:28Z,1,2020-02-15T06:59:39Z +3771,2005-07-06T13:19:34Z,1373,56,2005-07-10T10:27:34Z,2,2020-02-15T06:59:39Z +3772,2005-07-06T13:22:53Z,434,338,2005-07-10T11:54:53Z,2,2020-02-15T06:59:39Z +3773,2005-07-06T13:23:34Z,2034,263,2005-07-08T17:23:34Z,2,2020-02-15T06:59:39Z +3774,2005-07-06T13:25:07Z,4044,439,2005-07-15T12:56:07Z,2,2020-02-15T06:59:39Z +3775,2005-07-06T13:27:33Z,3696,300,2005-07-09T10:27:33Z,1,2020-02-15T06:59:39Z +3776,2005-07-06T13:31:37Z,4387,278,2005-07-10T10:53:37Z,2,2020-02-15T06:59:39Z +3777,2005-07-06T13:36:48Z,2470,548,2005-07-11T14:26:48Z,1,2020-02-15T06:59:39Z +3778,2005-07-06T13:44:48Z,2181,122,2005-07-13T09:31:48Z,2,2020-02-15T06:59:39Z +3779,2005-07-06T13:46:36Z,634,583,2005-07-10T15:49:36Z,2,2020-02-15T06:59:39Z +3780,2005-07-06T13:52:02Z,1209,99,2005-07-15T08:41:02Z,2,2020-02-15T06:59:39Z +3781,2005-07-06T13:53:41Z,3894,23,2005-07-15T10:03:41Z,1,2020-02-15T06:59:39Z +3782,2005-07-06T13:57:03Z,3365,515,2005-07-09T11:13:03Z,2,2020-02-15T06:59:39Z +3783,2005-07-06T13:57:31Z,2345,386,2005-07-14T10:44:31Z,2,2020-02-15T06:59:39Z +3784,2005-07-06T13:57:56Z,2287,165,2005-07-14T17:24:56Z,2,2020-02-15T06:59:39Z +3785,2005-07-06T14:00:13Z,3279,577,2005-07-14T10:13:13Z,2,2020-02-15T06:59:39Z +3786,2005-07-06T14:00:41Z,4508,152,2005-07-13T16:49:41Z,1,2020-02-15T06:59:39Z +3787,2005-07-06T14:02:01Z,288,474,2005-07-09T19:09:01Z,2,2020-02-15T06:59:39Z +3788,2005-07-06T14:02:02Z,1363,379,2005-07-10T18:24:02Z,1,2020-02-15T06:59:39Z +3789,2005-07-06T14:02:26Z,3560,595,2005-07-14T18:13:26Z,1,2020-02-15T06:59:39Z +3790,2005-07-06T14:13:45Z,1711,10,2005-07-14T13:35:45Z,1,2020-02-15T06:59:39Z +3791,2005-07-06T14:24:56Z,3426,452,2005-07-14T11:06:56Z,2,2020-02-15T06:59:39Z +3792,2005-07-06T14:26:38Z,2651,312,2005-07-11T16:34:38Z,1,2020-02-15T06:59:39Z +3793,2005-07-06T14:32:44Z,4558,553,2005-07-08T13:55:44Z,1,2020-02-15T06:59:39Z +3794,2005-07-06T14:35:26Z,584,499,2005-07-11T14:40:26Z,2,2020-02-15T06:59:39Z +3795,2005-07-06T14:37:41Z,240,153,2005-07-11T20:27:41Z,2,2020-02-15T06:59:39Z +3796,2005-07-06T14:45:22Z,1649,228,2005-07-07T11:01:22Z,2,2020-02-15T06:59:39Z +3797,2005-07-06T14:54:52Z,1047,374,2005-07-10T09:50:52Z,2,2020-02-15T06:59:39Z +3798,2005-07-06T14:57:53Z,1942,479,2005-07-07T10:48:53Z,2,2020-02-15T06:59:39Z +3799,2005-07-06T15:00:14Z,4532,251,2005-07-10T15:39:14Z,1,2020-02-15T06:59:39Z +3800,2005-07-06T15:01:27Z,4004,100,2005-07-15T11:12:27Z,2,2020-02-15T06:59:39Z +3801,2005-07-06T15:05:50Z,4209,68,2005-07-12T12:56:50Z,1,2020-02-15T06:59:39Z +3802,2005-07-06T15:06:09Z,1017,91,2005-07-08T09:33:09Z,2,2020-02-15T06:59:39Z +3803,2005-07-06T15:06:55Z,2062,494,2005-07-08T18:53:55Z,1,2020-02-15T06:59:39Z +3804,2005-07-06T15:08:08Z,537,126,2005-07-15T14:01:08Z,2,2020-02-15T06:59:39Z +3805,2005-07-06T15:08:42Z,1716,418,2005-07-07T14:34:42Z,1,2020-02-15T06:59:39Z +3806,2005-07-06T15:09:41Z,3555,154,2005-07-14T09:14:41Z,2,2020-02-15T06:59:39Z +3807,2005-07-06T15:11:44Z,39,425,2005-07-10T09:20:44Z,1,2020-02-15T06:59:39Z +3808,2005-07-06T15:15:35Z,4339,314,2005-07-07T16:10:35Z,1,2020-02-15T06:59:39Z +3809,2005-07-06T15:16:37Z,2932,358,2005-07-09T14:45:37Z,1,2020-02-15T06:59:39Z +3810,2005-07-06T15:18:44Z,342,296,2005-07-12T09:52:44Z,2,2020-02-15T06:59:39Z +3811,2005-07-06T15:20:37Z,695,208,2005-07-08T16:26:37Z,2,2020-02-15T06:59:39Z +3812,2005-07-06T15:22:19Z,4490,381,2005-07-08T13:04:19Z,1,2020-02-15T06:59:39Z +3813,2005-07-06T15:23:34Z,4100,189,2005-07-08T19:03:34Z,1,2020-02-15T06:59:39Z +3814,2005-07-06T15:23:56Z,3826,306,2005-07-13T20:51:56Z,2,2020-02-15T06:59:39Z +3815,2005-07-06T15:26:36Z,4038,472,2005-07-11T17:07:36Z,2,2020-02-15T06:59:39Z +3816,2005-07-06T15:27:04Z,2941,489,2005-07-14T13:12:04Z,1,2020-02-15T06:59:39Z +3817,2005-07-06T15:31:45Z,2933,267,2005-07-11T17:11:45Z,1,2020-02-15T06:59:39Z +3818,2005-07-06T15:33:31Z,653,97,2005-07-11T16:35:31Z,1,2020-02-15T06:59:39Z +3819,2005-07-06T15:35:06Z,1814,74,2005-07-14T19:08:06Z,1,2020-02-15T06:59:39Z +3820,2005-07-06T15:35:26Z,4192,460,2005-07-11T12:22:26Z,2,2020-02-15T06:59:39Z +3821,2005-07-06T15:36:20Z,4385,354,2005-07-11T20:04:20Z,1,2020-02-15T06:59:39Z +3822,2005-07-06T15:41:15Z,1314,241,2005-07-07T16:41:15Z,1,2020-02-15T06:59:39Z +3823,2005-07-06T15:41:27Z,124,265,2005-07-09T09:48:27Z,1,2020-02-15T06:59:39Z +3824,2005-07-06T15:43:15Z,3107,107,2005-07-13T16:05:15Z,2,2020-02-15T06:59:39Z +3825,2005-07-06T15:50:03Z,630,132,2005-07-09T19:20:03Z,1,2020-02-15T06:59:39Z +3826,2005-07-06T15:51:58Z,73,451,2005-07-13T12:35:58Z,1,2020-02-15T06:59:39Z +3827,2005-07-06T15:52:03Z,2072,41,2005-07-08T21:43:03Z,2,2020-02-15T06:59:39Z +3828,2005-07-06T15:57:30Z,4493,498,2005-07-10T12:17:30Z,2,2020-02-15T06:59:39Z +3829,2005-07-06T15:59:40Z,4126,356,2005-07-11T10:29:40Z,1,2020-02-15T06:59:39Z +3830,2005-07-06T16:01:16Z,553,310,2005-07-15T19:35:16Z,2,2020-02-15T06:59:39Z +3831,2005-07-06T16:06:35Z,1338,206,2005-07-08T15:14:35Z,2,2020-02-15T06:59:39Z +3832,2005-07-06T16:12:23Z,4499,233,2005-07-12T21:29:23Z,1,2020-02-15T06:59:39Z +3833,2005-07-06T16:18:28Z,3232,416,2005-07-14T20:09:28Z,2,2020-02-15T06:59:39Z +3834,2005-07-06T16:19:56Z,3001,366,2005-07-13T11:38:56Z,2,2020-02-15T06:59:39Z +3835,2005-07-06T16:22:45Z,935,486,2005-07-11T17:04:45Z,2,2020-02-15T06:59:39Z +3836,2005-07-06T16:26:04Z,1148,351,2005-07-10T15:08:04Z,1,2020-02-15T06:59:39Z +3837,2005-07-06T16:27:43Z,3166,309,2005-07-07T18:02:43Z,1,2020-02-15T06:59:39Z +3838,2005-07-06T16:29:43Z,3404,565,2005-07-11T20:50:43Z,1,2020-02-15T06:59:39Z +3839,2005-07-06T16:30:30Z,3230,231,2005-07-11T19:00:30Z,1,2020-02-15T06:59:39Z +3840,2005-07-06T16:30:59Z,4384,468,2005-07-15T22:08:59Z,2,2020-02-15T06:59:39Z +3841,2005-07-06T16:34:00Z,4228,470,2005-07-08T15:12:00Z,2,2020-02-15T06:59:39Z +3842,2005-07-06T16:34:32Z,3119,583,2005-07-08T11:55:32Z,2,2020-02-15T06:59:39Z +3843,2005-07-06T16:35:40Z,3844,62,2005-07-07T18:29:40Z,1,2020-02-15T06:59:39Z +3844,2005-07-06T16:37:58Z,2814,179,2005-07-09T19:54:58Z,2,2020-02-15T06:59:39Z +3845,2005-07-06T16:38:14Z,4495,28,2005-07-09T14:59:14Z,2,2020-02-15T06:59:39Z +3846,2005-07-06T16:43:10Z,2829,88,2005-07-14T11:09:10Z,2,2020-02-15T06:59:39Z +3847,2005-07-06T16:44:41Z,782,206,2005-07-07T21:54:41Z,2,2020-02-15T06:59:39Z +3848,2005-07-06T16:47:32Z,2906,188,2005-07-14T15:00:32Z,1,2020-02-15T06:59:39Z +3849,2005-07-06T16:49:43Z,3660,60,2005-07-12T17:20:43Z,1,2020-02-15T06:59:39Z +3850,2005-07-06T16:51:21Z,1700,103,2005-07-12T13:58:21Z,1,2020-02-15T06:59:39Z +3851,2005-07-06T16:54:12Z,493,436,2005-07-11T22:49:12Z,1,2020-02-15T06:59:39Z +3852,2005-07-06T16:57:49Z,3329,511,2005-07-11T17:11:49Z,1,2020-02-15T06:59:39Z +3853,2005-07-06T16:59:20Z,1411,537,2005-07-07T12:30:20Z,2,2020-02-15T06:59:39Z +3854,2005-07-06T17:02:33Z,2054,243,2005-07-12T17:32:33Z,2,2020-02-15T06:59:39Z +3855,2005-07-06T17:03:48Z,2931,46,2005-07-12T14:32:48Z,1,2020-02-15T06:59:39Z +3856,2005-07-06T17:04:46Z,3083,498,2005-07-14T19:23:46Z,2,2020-02-15T06:59:39Z +3857,2005-07-06T17:07:54Z,1135,236,2005-07-07T13:28:54Z,1,2020-02-15T06:59:39Z +3858,2005-07-06T17:17:57Z,829,377,2005-07-10T23:10:57Z,2,2020-02-15T06:59:39Z +3859,2005-07-06T17:18:15Z,2548,553,2005-07-09T16:48:15Z,1,2020-02-15T06:59:39Z +3860,2005-07-06T17:20:24Z,144,514,2005-07-09T22:33:24Z,1,2020-02-15T06:59:39Z +3861,2005-07-06T17:24:49Z,4506,202,2005-07-15T22:19:49Z,2,2020-02-15T06:59:39Z +3862,2005-07-06T17:35:22Z,471,181,2005-07-15T17:13:22Z,1,2020-02-15T06:59:39Z +3863,2005-07-06T17:40:18Z,363,481,2005-07-07T17:58:18Z,2,2020-02-15T06:59:39Z +3864,2005-07-06T17:41:42Z,2811,68,2005-07-08T14:17:42Z,1,2020-02-15T06:59:39Z +3865,2005-07-06T17:46:57Z,3579,357,2005-07-12T12:20:57Z,1,2020-02-15T06:59:39Z +3866,2005-07-06T17:47:20Z,194,409,2005-07-15T18:12:20Z,1,2020-02-15T06:59:39Z +3867,2005-07-06T17:52:19Z,3620,580,2005-07-13T21:48:19Z,1,2020-02-15T06:59:39Z +3868,2005-07-06T17:54:13Z,1606,416,2005-07-10T14:51:13Z,1,2020-02-15T06:59:39Z +3869,2005-07-06T17:56:46Z,2540,183,2005-07-10T20:44:46Z,1,2020-02-15T06:59:39Z +3870,2005-07-06T17:57:54Z,3357,12,2005-07-13T12:30:54Z,1,2020-02-15T06:59:39Z +3871,2005-07-06T17:58:51Z,3114,331,2005-07-15T22:18:51Z,2,2020-02-15T06:59:39Z +3872,2005-07-06T18:00:19Z,1785,513,2005-07-07T17:26:19Z,1,2020-02-15T06:59:39Z +3873,2005-07-06T18:03:16Z,4148,394,2005-07-15T23:58:16Z,2,2020-02-15T06:59:39Z +3874,2005-07-06T18:06:12Z,1870,137,2005-07-12T16:55:12Z,1,2020-02-15T06:59:39Z +3875,2005-07-06T18:15:39Z,712,108,2005-07-11T17:34:39Z,1,2020-02-15T06:59:39Z +3876,2005-07-06T18:21:13Z,4039,295,2005-07-14T16:57:13Z,2,2020-02-15T06:59:39Z +3877,2005-07-06T18:22:10Z,2796,576,2005-07-07T23:38:10Z,1,2020-02-15T06:59:39Z +3878,2005-07-06T18:27:09Z,4022,385,2005-07-15T20:13:09Z,2,2020-02-15T06:59:39Z +3879,2005-07-06T18:31:20Z,1376,81,2005-07-09T19:03:20Z,2,2020-02-15T06:59:39Z +3880,2005-07-06T18:32:49Z,42,507,2005-07-07T20:46:49Z,2,2020-02-15T06:59:39Z +3881,2005-07-06T18:35:37Z,143,456,2005-07-10T00:06:37Z,2,2020-02-15T06:59:39Z +3882,2005-07-06T18:38:21Z,788,254,2005-07-09T14:55:21Z,1,2020-02-15T06:59:39Z +3883,2005-07-06T18:39:38Z,3238,69,2005-07-14T15:59:38Z,2,2020-02-15T06:59:39Z +3884,2005-07-06T18:41:33Z,1806,210,2005-07-07T22:06:33Z,1,2020-02-15T06:59:39Z +3885,2005-07-06T18:43:43Z,1820,282,2005-07-12T19:48:43Z,2,2020-02-15T06:59:39Z +3886,2005-07-06T18:44:24Z,2368,326,2005-07-08T15:11:24Z,1,2020-02-15T06:59:39Z +3887,2005-07-06T18:46:34Z,1695,530,2005-07-07T13:15:34Z,1,2020-02-15T06:59:39Z +3888,2005-07-06T18:54:20Z,1945,412,2005-07-12T17:13:20Z,2,2020-02-15T06:59:39Z +3889,2005-07-06T18:56:25Z,2005,576,2005-07-08T21:22:25Z,2,2020-02-15T06:59:39Z +3890,2005-07-06T18:58:15Z,2570,553,2005-07-10T18:51:15Z,1,2020-02-15T06:59:39Z +3891,2005-07-06T18:58:25Z,3216,553,2005-07-09T23:20:25Z,2,2020-02-15T06:59:39Z +3892,2005-07-06T18:58:58Z,778,549,2005-07-10T19:29:58Z,1,2020-02-15T06:59:39Z +3893,2005-07-06T18:59:31Z,1281,350,2005-07-12T19:21:31Z,1,2020-02-15T06:59:39Z +3894,2005-07-06T19:01:39Z,2087,149,2005-07-12T21:35:39Z,2,2020-02-15T06:59:39Z +3895,2005-07-06T19:04:24Z,145,584,2005-07-15T17:48:24Z,2,2020-02-15T06:59:39Z +3896,2005-07-06T19:09:15Z,1755,309,2005-07-16T00:52:15Z,2,2020-02-15T06:59:39Z +3897,2005-07-06T19:11:43Z,14,277,2005-07-11T21:50:43Z,2,2020-02-15T06:59:39Z +3898,2005-07-06T19:12:37Z,3858,53,2005-07-11T15:50:37Z,1,2020-02-15T06:59:39Z +3899,2005-07-06T19:12:40Z,4020,485,2005-07-13T23:41:40Z,1,2020-02-15T06:59:39Z +3900,2005-07-06T19:21:28Z,1497,129,2005-07-15T21:06:28Z,2,2020-02-15T06:59:39Z +3901,2005-07-06T19:24:55Z,3367,321,2005-07-14T20:30:55Z,2,2020-02-15T06:59:39Z +3902,2005-07-06T19:25:18Z,2868,192,2005-07-10T17:42:18Z,2,2020-02-15T06:59:39Z +3903,2005-07-06T19:27:32Z,3614,369,2005-07-08T23:27:32Z,1,2020-02-15T06:59:39Z +3904,2005-07-06T19:30:57Z,3600,485,2005-07-11T18:47:57Z,2,2020-02-15T06:59:39Z +3905,2005-07-06T19:33:34Z,3817,526,2005-07-15T17:55:34Z,1,2020-02-15T06:59:39Z +3906,2005-07-06T19:35:55Z,1383,293,2005-07-15T22:35:55Z,1,2020-02-15T06:59:39Z +3907,2005-07-06T19:39:14Z,2507,452,2005-07-11T17:45:14Z,1,2020-02-15T06:59:39Z +3908,2005-07-06T19:47:26Z,3980,116,2005-07-13T19:59:26Z,1,2020-02-15T06:59:39Z +3909,2005-07-06T19:54:41Z,3423,396,2005-07-15T18:11:41Z,2,2020-02-15T06:59:39Z +3910,2005-07-06T20:05:18Z,2085,248,2005-07-10T18:51:18Z,1,2020-02-15T06:59:39Z +3911,2005-07-06T20:09:11Z,4548,34,2005-07-08T23:53:11Z,1,2020-02-15T06:59:39Z +3912,2005-07-06T20:10:03Z,2449,154,2005-07-08T18:39:03Z,2,2020-02-15T06:59:39Z +3913,2005-07-06T20:11:00Z,752,494,2005-07-08T14:42:00Z,1,2020-02-15T06:59:39Z +3914,2005-07-06T20:11:10Z,4092,159,2005-07-14T14:42:10Z,2,2020-02-15T06:59:39Z +3915,2005-07-06T20:16:46Z,125,163,2005-07-10T17:24:46Z,1,2020-02-15T06:59:39Z +3916,2005-07-06T20:18:50Z,3198,46,2005-07-12T21:56:50Z,1,2020-02-15T06:59:39Z +3917,2005-07-06T20:19:29Z,2747,471,2005-07-11T00:49:29Z,1,2020-02-15T06:59:39Z +3918,2005-07-06T20:26:15Z,1111,435,2005-07-15T20:32:15Z,1,2020-02-15T06:59:39Z +3919,2005-07-06T20:26:21Z,2695,147,2005-07-15T00:13:21Z,1,2020-02-15T06:59:39Z +3920,2005-07-06T20:26:40Z,1551,321,2005-07-15T15:00:40Z,2,2020-02-15T06:59:39Z +3921,2005-07-06T20:29:48Z,949,531,2005-07-14T01:44:48Z,1,2020-02-15T06:59:39Z +3922,2005-07-06T20:32:27Z,2878,470,2005-07-14T19:00:27Z,1,2020-02-15T06:59:39Z +3923,2005-07-06T20:34:10Z,2039,63,2005-07-13T19:20:10Z,1,2020-02-15T06:59:39Z +3924,2005-07-06T20:38:02Z,187,114,2005-07-11T23:35:02Z,2,2020-02-15T06:59:39Z +3925,2005-07-06T20:41:44Z,2653,428,2005-07-15T21:05:44Z,2,2020-02-15T06:59:39Z +3926,2005-07-06T20:42:35Z,4241,500,2005-07-09T16:30:35Z,2,2020-02-15T06:59:39Z +3927,2005-07-06T20:48:14Z,2194,404,2005-07-10T15:37:14Z,1,2020-02-15T06:59:39Z +3928,2005-07-06T20:52:09Z,1960,411,2005-07-08T18:51:09Z,1,2020-02-15T06:59:39Z +3929,2005-07-06T20:52:39Z,1235,453,2005-07-12T00:27:39Z,2,2020-02-15T06:59:39Z +3930,2005-07-06T20:54:07Z,165,573,2005-07-10T18:31:07Z,1,2020-02-15T06:59:39Z +3931,2005-07-06T21:03:46Z,182,176,2005-07-16T01:32:46Z,1,2020-02-15T06:59:39Z +3932,2005-07-06T21:06:17Z,4396,490,2005-07-07T19:25:17Z,2,2020-02-15T06:59:39Z +3933,2005-07-06T21:06:37Z,1202,229,2005-07-08T20:23:37Z,1,2020-02-15T06:59:39Z +3934,2005-07-06T21:07:23Z,3187,576,2005-07-10T18:20:23Z,2,2020-02-15T06:59:39Z +3935,2005-07-06T21:08:29Z,3402,503,2005-07-15T23:28:29Z,2,2020-02-15T06:59:39Z +3936,2005-07-06T21:15:03Z,4258,129,2005-07-08T17:45:03Z,2,2020-02-15T06:59:39Z +3937,2005-07-06T21:15:38Z,2091,211,2005-07-15T00:01:38Z,2,2020-02-15T06:59:39Z +3938,2005-07-06T21:15:45Z,1991,341,2005-07-13T20:02:45Z,2,2020-02-15T06:59:39Z +3939,2005-07-06T21:16:32Z,3627,149,2005-07-11T03:12:32Z,2,2020-02-15T06:59:39Z +3940,2005-07-06T21:16:59Z,1502,116,2005-07-07T19:17:59Z,2,2020-02-15T06:59:39Z +3941,2005-07-06T21:20:37Z,382,560,2005-07-09T01:35:37Z,2,2020-02-15T06:59:39Z +3942,2005-07-06T21:21:34Z,677,553,2005-07-15T02:34:34Z,1,2020-02-15T06:59:39Z +3943,2005-07-06T21:22:17Z,1816,566,2005-07-07T21:26:17Z,1,2020-02-15T06:59:39Z +3944,2005-07-06T21:34:11Z,4213,436,2005-07-08T23:46:11Z,2,2020-02-15T06:59:39Z +3945,2005-07-06T21:35:00Z,754,86,2005-07-08T00:31:00Z,2,2020-02-15T06:59:39Z +3946,2005-07-06T21:39:24Z,294,13,2005-07-11T16:10:24Z,1,2020-02-15T06:59:39Z +3947,2005-07-06T21:42:21Z,4188,324,2005-07-08T19:37:21Z,1,2020-02-15T06:59:39Z +3948,2005-07-06T21:45:53Z,2254,161,2005-07-08T19:24:53Z,2,2020-02-15T06:59:39Z +3949,2005-07-06T21:46:36Z,1765,153,2005-07-11T03:18:36Z,1,2020-02-15T06:59:39Z +3950,2005-07-06T21:48:44Z,4153,598,2005-07-14T02:25:44Z,1,2020-02-15T06:59:39Z +3951,2005-07-06T21:50:41Z,2288,250,2005-07-12T02:09:41Z,2,2020-02-15T06:59:39Z +3952,2005-07-06T21:51:31Z,1719,417,2005-07-13T15:54:31Z,1,2020-02-15T06:59:39Z +3953,2005-07-06T21:54:55Z,3879,385,2005-07-09T18:52:55Z,1,2020-02-15T06:59:39Z +3954,2005-07-06T21:57:44Z,4250,558,2005-07-08T02:37:44Z,2,2020-02-15T06:59:39Z +3955,2005-07-06T21:58:08Z,2523,247,2005-07-08T03:43:08Z,1,2020-02-15T06:59:39Z +3956,2005-07-06T22:01:51Z,15,147,2005-07-12T21:35:51Z,2,2020-02-15T06:59:39Z +3957,2005-07-06T22:05:47Z,443,414,2005-07-16T01:08:47Z,1,2020-02-15T06:59:39Z +3958,2005-07-06T22:07:33Z,4117,288,2005-07-10T19:31:33Z,2,2020-02-15T06:59:39Z +3959,2005-07-06T22:07:58Z,40,448,2005-07-13T02:30:58Z,1,2020-02-15T06:59:39Z +3960,2005-07-06T22:08:53Z,2090,594,2005-07-07T23:21:53Z,2,2020-02-15T06:59:39Z +3961,2005-07-06T22:11:43Z,4320,364,2005-07-09T03:14:43Z,1,2020-02-15T06:59:39Z +3962,2005-07-06T22:13:45Z,379,307,2005-07-15T00:22:45Z,2,2020-02-15T06:59:39Z +3963,2005-07-06T22:19:17Z,3912,111,2005-07-15T01:22:17Z,2,2020-02-15T06:59:39Z +3964,2005-07-06T22:23:02Z,1853,30,2005-07-07T22:21:02Z,1,2020-02-15T06:59:39Z +3965,2005-07-06T22:36:20Z,2863,243,2005-07-09T17:45:20Z,1,2020-02-15T06:59:39Z +3966,2005-07-06T22:38:49Z,556,495,2005-07-07T23:33:49Z,1,2020-02-15T06:59:39Z +3967,2005-07-06T22:45:10Z,2510,31,2005-07-09T23:54:10Z,2,2020-02-15T06:59:39Z +3968,2005-07-06T22:47:09Z,558,235,2005-07-12T21:01:09Z,1,2020-02-15T06:59:39Z +3969,2005-07-06T22:47:59Z,383,587,2005-07-08T02:11:59Z,1,2020-02-15T06:59:39Z +3970,2005-07-06T22:48:17Z,701,381,2005-07-15T19:07:17Z,1,2020-02-15T06:59:39Z +3971,2005-07-06T22:50:40Z,4415,473,2005-07-08T01:02:40Z,1,2020-02-15T06:59:39Z +3972,2005-07-06T22:53:57Z,1895,598,2005-07-11T01:32:57Z,1,2020-02-15T06:59:39Z +3973,2005-07-06T22:58:31Z,2625,592,2005-07-16T03:27:31Z,2,2020-02-15T06:59:39Z +3974,2005-07-06T22:59:16Z,4282,318,2005-07-11T22:30:16Z,1,2020-02-15T06:59:39Z +3975,2005-07-06T23:00:09Z,4343,545,2005-07-10T01:39:09Z,2,2020-02-15T06:59:39Z +3976,2005-07-06T23:00:20Z,2424,329,2005-07-07T21:51:20Z,2,2020-02-15T06:59:39Z +3977,2005-07-06T23:00:49Z,1284,449,2005-07-15T00:41:49Z,1,2020-02-15T06:59:39Z +3978,2005-07-06T23:04:33Z,4341,343,2005-07-10T17:45:33Z,2,2020-02-15T06:59:39Z +3979,2005-07-06T23:04:35Z,794,550,2005-07-13T01:38:35Z,2,2020-02-15T06:59:39Z +3980,2005-07-06T23:11:11Z,1845,475,2005-07-14T18:22:11Z,1,2020-02-15T06:59:39Z +3981,2005-07-06T23:12:12Z,842,375,2005-07-13T01:47:12Z,2,2020-02-15T06:59:39Z +3982,2005-07-06T23:14:16Z,4327,64,2005-07-08T21:21:16Z,2,2020-02-15T06:59:39Z +3983,2005-07-06T23:14:21Z,1261,6,2005-07-12T17:55:21Z,2,2020-02-15T06:59:39Z +3984,2005-07-06T23:22:36Z,2205,570,2005-07-08T21:40:36Z,2,2020-02-15T06:59:39Z +3985,2005-07-06T23:24:03Z,2096,307,2005-07-10T00:20:03Z,2,2020-02-15T06:59:39Z +3986,2005-07-06T23:25:13Z,3737,122,2005-07-09T21:26:13Z,2,2020-02-15T06:59:39Z +3987,2005-07-06T23:28:24Z,3104,270,2005-07-15T00:52:24Z,1,2020-02-15T06:59:39Z +3988,2005-07-06T23:30:42Z,2981,421,2005-07-13T03:06:42Z,2,2020-02-15T06:59:39Z +3989,2005-07-06T23:30:54Z,2366,213,2005-07-12T01:28:54Z,1,2020-02-15T06:59:39Z +3990,2005-07-06T23:32:44Z,2009,558,2005-07-14T01:35:44Z,2,2020-02-15T06:59:39Z +3991,2005-07-06T23:33:41Z,587,583,2005-07-16T01:31:41Z,1,2020-02-15T06:59:39Z +3992,2005-07-06T23:36:56Z,3219,448,2005-07-15T03:13:56Z,1,2020-02-15T06:59:39Z +3993,2005-07-06T23:37:06Z,1061,525,2005-07-14T19:31:06Z,1,2020-02-15T06:59:39Z +3994,2005-07-06T23:39:01Z,902,487,2005-07-14T00:33:01Z,1,2020-02-15T06:59:39Z +3995,2005-07-06T23:43:03Z,3990,128,2005-07-13T04:13:03Z,2,2020-02-15T06:59:39Z +3996,2005-07-06T23:46:43Z,2857,551,2005-07-14T22:34:43Z,2,2020-02-15T06:59:39Z +3997,2005-07-06T23:46:52Z,3895,52,2005-07-14T05:39:52Z,2,2020-02-15T06:59:39Z +3998,2005-07-06T23:49:20Z,1245,566,2005-07-12T20:39:20Z,1,2020-02-15T06:59:39Z +3999,2005-07-06T23:50:54Z,707,390,2005-07-09T22:09:54Z,1,2020-02-15T06:59:39Z +4000,2005-07-06T23:58:37Z,2122,95,2005-07-08T21:43:37Z,1,2020-02-15T06:59:39Z +4001,2005-07-07T00:07:00Z,864,120,2005-07-13T21:27:00Z,2,2020-02-15T06:59:39Z +4002,2005-07-07T00:08:18Z,2790,308,2005-07-14T01:29:18Z,2,2020-02-15T06:59:39Z +4003,2005-07-07T00:09:02Z,4054,8,2005-07-08T04:27:02Z,1,2020-02-15T06:59:39Z +4004,2005-07-07T00:20:51Z,667,574,2005-07-11T18:55:51Z,2,2020-02-15T06:59:39Z +4005,2005-07-07T00:22:26Z,3677,190,2005-07-15T04:34:26Z,2,2020-02-15T06:59:39Z +4006,2005-07-07T00:25:29Z,397,473,2005-07-08T05:30:29Z,2,2020-02-15T06:59:39Z +4007,2005-07-07T00:26:05Z,2071,285,2005-07-15T19:53:05Z,1,2020-02-15T06:59:39Z +4008,2005-07-07T00:26:43Z,1107,505,2005-07-16T03:58:43Z,2,2020-02-15T06:59:39Z +4009,2005-07-07T00:28:55Z,3607,394,2005-07-10T00:37:55Z,1,2020-02-15T06:59:39Z +4010,2005-07-07T00:47:00Z,4509,476,2005-07-12T06:23:00Z,2,2020-02-15T06:59:39Z +4011,2005-07-07T00:48:25Z,2052,20,2005-07-13T06:30:25Z,2,2020-02-15T06:59:39Z +4012,2005-07-07T00:56:09Z,1400,104,2005-07-10T21:49:09Z,1,2020-02-15T06:59:39Z +4013,2005-07-07T00:58:00Z,2344,475,2005-07-15T19:42:00Z,2,2020-02-15T06:59:39Z +4014,2005-07-07T00:58:54Z,583,510,2005-07-12T02:40:54Z,1,2020-02-15T06:59:39Z +4015,2005-07-07T00:59:46Z,3032,233,2005-07-14T03:16:46Z,2,2020-02-15T06:59:39Z +4016,2005-07-07T01:05:50Z,3318,335,2005-07-09T05:59:50Z,1,2020-02-15T06:59:39Z +4017,2005-07-07T01:08:18Z,3117,595,2005-07-09T01:47:18Z,2,2020-02-15T06:59:39Z +4018,2005-07-07T01:10:33Z,906,207,2005-07-12T20:54:33Z,2,2020-02-15T06:59:39Z +4019,2005-07-07T01:27:44Z,3200,294,2005-07-10T21:30:44Z,1,2020-02-15T06:59:39Z +4020,2005-07-07T01:42:22Z,3760,471,2005-07-10T00:53:22Z,1,2020-02-15T06:59:39Z +4021,2005-07-07T01:46:44Z,1676,315,2005-07-12T00:16:44Z,2,2020-02-15T06:59:39Z +4022,2005-07-07T01:50:06Z,3914,390,2005-07-09T21:47:06Z,2,2020-02-15T06:59:39Z +4023,2005-07-07T01:55:25Z,274,573,2005-07-08T02:43:25Z,2,2020-02-15T06:59:39Z +4024,2005-07-07T02:11:23Z,3976,448,2005-07-11T02:00:23Z,1,2020-02-15T06:59:39Z +4025,2005-07-07T02:13:24Z,3908,114,2005-07-08T00:47:24Z,1,2020-02-15T06:59:39Z +4026,2005-07-07T02:15:48Z,4142,251,2005-07-14T04:15:48Z,2,2020-02-15T06:59:39Z +4027,2005-07-07T02:19:01Z,56,116,2005-07-10T01:12:01Z,1,2020-02-15T06:59:39Z +4028,2005-07-07T02:19:14Z,1651,344,2005-07-15T08:09:14Z,2,2020-02-15T06:59:39Z +4029,2005-07-07T02:19:44Z,4075,518,2005-07-15T02:30:44Z,2,2020-02-15T06:59:39Z +4030,2005-07-07T02:25:42Z,1734,300,2005-07-08T22:53:42Z,2,2020-02-15T06:59:39Z +4031,2005-07-07T02:32:07Z,3094,143,2005-07-14T06:01:07Z,2,2020-02-15T06:59:39Z +4032,2005-07-07T02:34:13Z,2628,335,2005-07-14T22:43:13Z,1,2020-02-15T06:59:39Z +4033,2005-07-07T02:35:46Z,203,453,2005-07-16T01:12:46Z,1,2020-02-15T06:59:39Z +4034,2005-07-07T02:36:33Z,1666,354,2005-07-09T08:32:33Z,2,2020-02-15T06:59:39Z +4035,2005-07-07T02:45:02Z,3611,539,2005-07-14T01:41:02Z,1,2020-02-15T06:59:39Z +4036,2005-07-07T02:48:00Z,500,397,2005-07-07T22:46:00Z,1,2020-02-15T06:59:39Z +4037,2005-07-07T02:52:52Z,3903,594,2005-07-16T00:09:52Z,1,2020-02-15T06:59:39Z +4038,2005-07-07T02:52:53Z,1264,27,2005-07-11T22:32:53Z,2,2020-02-15T06:59:39Z +4039,2005-07-07T02:57:59Z,4050,290,2005-07-12T03:44:59Z,2,2020-02-15T06:59:39Z +4040,2005-07-07T03:02:40Z,3046,103,2005-07-16T06:05:40Z,2,2020-02-15T06:59:39Z +4041,2005-07-07T03:03:33Z,2217,445,2005-07-09T07:57:33Z,2,2020-02-15T06:59:39Z +4042,2005-07-07T03:06:40Z,50,10,2005-07-10T02:37:40Z,1,2020-02-15T06:59:39Z +4043,2005-07-07T03:09:50Z,3427,204,2005-07-10T07:49:50Z,2,2020-02-15T06:59:39Z +4044,2005-07-07T03:22:23Z,3263,94,2005-07-13T03:23:23Z,1,2020-02-15T06:59:39Z +4045,2005-07-07T03:26:14Z,1422,529,2005-07-11T06:52:14Z,1,2020-02-15T06:59:39Z +4046,2005-07-07T03:27:59Z,3518,491,2005-07-14T01:14:59Z,1,2020-02-15T06:59:39Z +4047,2005-07-07T03:28:49Z,3475,364,2005-07-09T02:42:49Z,2,2020-02-15T06:59:39Z +4048,2005-07-07T03:30:52Z,659,474,2005-07-14T05:05:52Z,2,2020-02-15T06:59:39Z +4049,2005-07-07T03:34:53Z,4172,79,2005-07-15T04:10:53Z,2,2020-02-15T06:59:39Z +4050,2005-07-07T03:35:33Z,104,528,2005-07-15T03:11:33Z,1,2020-02-15T06:59:39Z +4051,2005-07-07T03:37:28Z,2715,331,2005-07-09T01:40:28Z,1,2020-02-15T06:59:39Z +4052,2005-07-07T03:38:22Z,206,442,2005-07-13T02:56:22Z,2,2020-02-15T06:59:39Z +4053,2005-07-07T03:39:22Z,2889,377,2005-07-09T22:32:22Z,1,2020-02-15T06:59:39Z +4054,2005-07-07T03:42:07Z,3885,260,2005-07-10T03:22:07Z,1,2020-02-15T06:59:39Z +4055,2005-07-07T03:49:13Z,2561,513,2005-07-11T03:15:13Z,2,2020-02-15T06:59:39Z +4056,2005-07-07T03:57:36Z,4211,360,2005-07-09T08:53:36Z,2,2020-02-15T06:59:39Z +4057,2005-07-07T04:00:20Z,2838,141,2005-07-12T08:14:20Z,1,2020-02-15T06:59:39Z +4058,2005-07-07T04:02:50Z,3877,442,2005-07-10T04:30:50Z,2,2020-02-15T06:59:39Z +4059,2005-07-07T04:04:26Z,292,401,2005-07-10T22:35:26Z,1,2020-02-15T06:59:39Z +4060,2005-07-07T04:10:13Z,2697,211,2005-07-13T07:44:13Z,1,2020-02-15T06:59:39Z +4061,2005-07-07T04:13:35Z,62,70,2005-07-10T23:58:35Z,2,2020-02-15T06:59:39Z +4062,2005-07-07T04:22:27Z,1323,410,2005-07-09T03:27:27Z,1,2020-02-15T06:59:39Z +4063,2005-07-07T04:23:57Z,1452,331,2005-07-14T23:35:57Z,2,2020-02-15T06:59:39Z +4064,2005-07-07T04:29:20Z,1402,47,2005-07-14T05:48:20Z,2,2020-02-15T06:59:39Z +4065,2005-07-07T04:32:28Z,1339,26,2005-07-12T08:30:28Z,1,2020-02-15T06:59:39Z +4066,2005-07-07T04:34:09Z,1975,368,2005-07-10T23:54:09Z,1,2020-02-15T06:59:39Z +4067,2005-07-07T04:34:23Z,2945,469,2005-07-16T04:04:23Z,1,2020-02-15T06:59:39Z +4068,2005-07-07T04:34:38Z,4152,206,2005-07-11T09:16:38Z,2,2020-02-15T06:59:39Z +4069,2005-07-07T04:35:06Z,3361,570,2005-07-10T23:59:06Z,2,2020-02-15T06:59:39Z +4070,2005-07-07T04:37:09Z,2926,496,2005-07-08T04:19:09Z,2,2020-02-15T06:59:39Z +4071,2005-07-07T04:37:26Z,2883,209,2005-07-13T06:45:26Z,2,2020-02-15T06:59:39Z +4072,2005-07-07T04:48:02Z,3130,310,2005-07-12T10:32:02Z,2,2020-02-15T06:59:39Z +4073,2005-07-07T04:49:13Z,647,290,2005-07-10T03:20:13Z,2,2020-02-15T06:59:39Z +4074,2005-07-07T04:49:49Z,2347,412,2005-07-12T04:51:49Z,2,2020-02-15T06:59:39Z +4075,2005-07-07T04:51:44Z,1989,593,2005-07-09T03:07:44Z,2,2020-02-15T06:59:39Z +4076,2005-07-07T04:52:15Z,3148,329,2005-07-13T23:22:15Z,1,2020-02-15T06:59:39Z +4077,2005-07-07T04:53:40Z,2445,377,2005-07-09T09:56:40Z,2,2020-02-15T06:59:39Z +4078,2005-07-07T05:05:05Z,1671,522,2005-07-10T05:39:05Z,1,2020-02-15T06:59:39Z +4079,2005-07-07T05:06:27Z,2202,84,2005-07-16T08:46:27Z,1,2020-02-15T06:59:39Z +4080,2005-07-07T05:09:54Z,1364,148,2005-07-11T23:58:54Z,1,2020-02-15T06:59:39Z +4081,2005-07-07T05:10:08Z,1138,284,2005-07-12T00:47:08Z,1,2020-02-15T06:59:39Z +4082,2005-07-07T05:11:53Z,2904,108,2005-07-12T00:55:53Z,1,2020-02-15T06:59:39Z +4083,2005-07-07T05:13:15Z,3454,490,2005-07-08T09:11:15Z,1,2020-02-15T06:59:39Z +4084,2005-07-07T05:16:00Z,2588,441,2005-07-15T09:23:00Z,1,2020-02-15T06:59:39Z +4085,2005-07-07T05:25:39Z,1683,573,2005-07-12T04:30:39Z,1,2020-02-15T06:59:39Z +4086,2005-07-07T05:26:06Z,253,494,2005-07-12T00:45:06Z,2,2020-02-15T06:59:39Z +4087,2005-07-07T05:30:56Z,3066,433,2005-07-16T10:20:56Z,1,2020-02-15T06:59:39Z +4088,2005-07-07T05:31:55Z,234,66,2005-07-15T07:35:55Z,1,2020-02-15T06:59:39Z +4089,2005-07-07T05:45:59Z,3431,102,2005-07-16T07:34:59Z,2,2020-02-15T06:59:39Z +4090,2005-07-07T05:47:33Z,3096,67,2005-07-08T04:25:33Z,2,2020-02-15T06:59:39Z +4091,2005-07-07T05:53:38Z,3928,337,2005-07-14T03:12:38Z,2,2020-02-15T06:59:39Z +4092,2005-07-07T05:54:18Z,1721,246,2005-07-16T09:14:18Z,1,2020-02-15T06:59:39Z +4093,2005-07-07T05:54:50Z,1534,337,2005-07-12T00:34:50Z,1,2020-02-15T06:59:39Z +4094,2005-07-07T06:00:21Z,2412,517,2005-07-10T03:24:21Z,2,2020-02-15T06:59:39Z +4095,2005-07-07T06:01:48Z,2900,33,2005-07-15T02:52:48Z,2,2020-02-15T06:59:39Z +4096,2005-07-07T06:09:11Z,3911,403,2005-07-08T09:17:11Z,2,2020-02-15T06:59:39Z +4097,2005-07-07T06:10:55Z,2454,56,2005-07-11T02:45:55Z,1,2020-02-15T06:59:39Z +4098,2005-07-07T06:14:51Z,2865,35,2005-07-14T06:51:51Z,2,2020-02-15T06:59:39Z +4099,2005-07-07T06:20:33Z,1930,76,2005-07-16T08:39:33Z,1,2020-02-15T06:59:39Z +4100,2005-07-07T06:20:52Z,2346,332,2005-07-15T05:58:52Z,2,2020-02-15T06:59:39Z +4101,2005-07-07T06:25:11Z,2891,588,2005-07-12T07:44:11Z,2,2020-02-15T06:59:39Z +4102,2005-07-07T06:25:19Z,3998,135,2005-07-11T00:50:19Z,2,2020-02-15T06:59:39Z +4103,2005-07-07T06:25:28Z,3632,91,2005-07-12T11:18:28Z,1,2020-02-15T06:59:39Z +4104,2005-07-07T06:25:41Z,1066,338,2005-07-13T04:18:41Z,2,2020-02-15T06:59:39Z +4105,2005-07-07T06:31:00Z,439,423,2005-07-09T03:52:00Z,1,2020-02-15T06:59:39Z +4106,2005-07-07T06:33:35Z,4083,563,2005-07-13T04:03:35Z,1,2020-02-15T06:59:39Z +4107,2005-07-07T06:36:32Z,4232,206,2005-07-14T03:36:32Z,1,2020-02-15T06:59:39Z +4108,2005-07-07T06:38:31Z,4535,66,2005-07-08T10:44:31Z,1,2020-02-15T06:59:39Z +4109,2005-07-07T06:39:43Z,532,517,2005-07-10T06:30:43Z,1,2020-02-15T06:59:39Z +4110,2005-07-07T06:44:27Z,226,486,2005-07-12T05:43:27Z,2,2020-02-15T06:59:39Z +4111,2005-07-07T06:47:56Z,1009,515,2005-07-13T02:13:56Z,1,2020-02-15T06:59:39Z +4112,2005-07-07T06:49:09Z,3284,533,2005-07-16T06:53:09Z,2,2020-02-15T06:59:39Z +4113,2005-07-07T06:49:52Z,915,170,2005-07-12T04:00:52Z,1,2020-02-15T06:59:39Z +4114,2005-07-07T06:51:12Z,4109,426,2005-07-15T01:36:12Z,1,2020-02-15T06:59:39Z +4115,2005-07-07T06:52:23Z,102,371,2005-07-14T06:12:23Z,2,2020-02-15T06:59:39Z +4116,2005-07-07T06:56:13Z,666,352,2005-07-11T11:13:13Z,2,2020-02-15T06:59:39Z +4117,2005-07-07T06:58:14Z,780,158,2005-07-16T05:28:14Z,1,2020-02-15T06:59:39Z +4118,2005-07-07T07:03:30Z,355,224,2005-07-08T09:20:30Z,1,2020-02-15T06:59:39Z +4119,2005-07-07T07:06:03Z,2078,319,2005-07-13T01:56:03Z,2,2020-02-15T06:59:39Z +4120,2005-07-07T07:07:03Z,987,559,2005-07-16T04:07:03Z,1,2020-02-15T06:59:39Z +4121,2005-07-07T07:13:50Z,2429,176,2005-07-13T04:32:50Z,2,2020-02-15T06:59:39Z +4122,2005-07-07T07:15:35Z,273,31,2005-07-14T12:10:35Z,1,2020-02-15T06:59:39Z +4123,2005-07-07T07:16:19Z,2707,469,2005-07-10T05:23:19Z,1,2020-02-15T06:59:39Z +4124,2005-07-07T07:19:54Z,2856,330,2005-07-11T05:54:54Z,1,2020-02-15T06:59:39Z +4125,2005-07-07T07:20:29Z,4131,269,2005-07-15T06:41:29Z,2,2020-02-15T06:59:39Z +4126,2005-07-07T07:24:11Z,3018,163,2005-07-15T07:31:11Z,1,2020-02-15T06:59:39Z +4127,2005-07-07T07:26:19Z,1774,15,2005-07-14T07:50:19Z,2,2020-02-15T06:59:39Z +4128,2005-07-07T07:35:25Z,3563,492,2005-07-14T08:13:25Z,1,2020-02-15T06:59:39Z +4129,2005-07-07T07:37:03Z,1413,592,2005-07-14T13:31:03Z,1,2020-02-15T06:59:39Z +4130,2005-07-07T07:51:53Z,4170,256,2005-07-11T12:41:53Z,2,2020-02-15T06:59:39Z +4131,2005-07-07T07:53:18Z,2621,58,2005-07-08T04:48:18Z,1,2020-02-15T06:59:39Z +4132,2005-07-07T08:06:07Z,993,154,2005-07-10T14:04:07Z,1,2020-02-15T06:59:39Z +4133,2005-07-07T08:12:26Z,3672,488,2005-07-16T03:43:26Z,1,2020-02-15T06:59:39Z +4134,2005-07-07T08:14:24Z,2917,183,2005-07-09T10:42:24Z,1,2020-02-15T06:59:39Z +4135,2005-07-07T08:15:03Z,3384,36,2005-07-11T10:56:03Z,1,2020-02-15T06:59:39Z +4136,2005-07-07T08:15:52Z,3461,203,2005-07-10T04:22:52Z,2,2020-02-15T06:59:39Z +4137,2005-07-07T08:17:06Z,2065,485,2005-07-11T10:52:06Z,2,2020-02-15T06:59:39Z +4138,2005-07-07T08:17:13Z,1588,317,2005-07-14T05:18:13Z,2,2020-02-15T06:59:39Z +4139,2005-07-07T08:17:35Z,2094,509,2005-07-14T14:01:35Z,2,2020-02-15T06:59:39Z +4140,2005-07-07T08:19:10Z,1897,190,2005-07-14T07:27:10Z,2,2020-02-15T06:59:39Z +4141,2005-07-07T08:19:20Z,1904,456,2005-07-11T06:54:20Z,1,2020-02-15T06:59:39Z +4142,2005-07-07T08:19:45Z,4045,492,2005-07-08T13:55:45Z,1,2020-02-15T06:59:39Z +4143,2005-07-07T08:22:07Z,597,238,2005-07-13T11:42:07Z,1,2020-02-15T06:59:39Z +4144,2005-07-07T08:25:44Z,550,431,2005-07-16T13:10:44Z,2,2020-02-15T06:59:39Z +4145,2005-07-07T08:26:39Z,3050,592,2005-07-16T12:54:39Z,2,2020-02-15T06:59:39Z +4146,2005-07-07T08:30:16Z,176,411,2005-07-12T07:52:16Z,1,2020-02-15T06:59:39Z +4147,2005-07-07T08:32:12Z,2776,274,2005-07-12T10:10:12Z,2,2020-02-15T06:59:39Z +4148,2005-07-07T08:36:58Z,260,59,2005-07-09T05:51:58Z,1,2020-02-15T06:59:39Z +4149,2005-07-07T08:40:17Z,3028,50,2005-07-10T02:58:17Z,2,2020-02-15T06:59:39Z +4150,2005-07-07T08:43:22Z,4424,188,2005-07-08T05:21:22Z,2,2020-02-15T06:59:39Z +4151,2005-07-07T08:49:02Z,4564,428,2005-07-11T05:19:02Z,1,2020-02-15T06:59:39Z +4152,2005-07-07T08:50:33Z,1761,89,2005-07-14T10:56:33Z,2,2020-02-15T06:59:39Z +4153,2005-07-07T08:53:08Z,2185,299,2005-07-11T05:09:08Z,2,2020-02-15T06:59:39Z +4154,2005-07-07T08:58:23Z,191,594,2005-07-14T03:16:23Z,2,2020-02-15T06:59:39Z +4155,2005-07-07T09:00:49Z,212,548,2005-07-13T10:59:49Z,2,2020-02-15T06:59:39Z +4156,2005-07-07T09:03:51Z,1259,585,2005-07-12T09:46:51Z,2,2020-02-15T06:59:39Z +4157,2005-07-07T09:04:26Z,304,183,2005-07-08T09:55:26Z,1,2020-02-15T06:59:39Z +4158,2005-07-07T09:05:42Z,291,433,2005-07-09T04:28:42Z,1,2020-02-15T06:59:39Z +4159,2005-07-07T09:10:57Z,3625,62,2005-07-09T10:19:57Z,2,2020-02-15T06:59:39Z +4160,2005-07-07T09:13:17Z,1909,326,2005-07-15T11:50:17Z,2,2020-02-15T06:59:39Z +4161,2005-07-07T09:15:11Z,4021,216,2005-07-15T06:59:11Z,1,2020-02-15T06:59:39Z +4162,2005-07-07T09:17:26Z,745,571,2005-07-15T10:15:26Z,2,2020-02-15T06:59:39Z +4163,2005-07-07T09:19:28Z,3176,376,2005-07-10T06:47:28Z,2,2020-02-15T06:59:39Z +4164,2005-07-07T09:20:11Z,3133,295,2005-07-14T09:35:11Z,1,2020-02-15T06:59:39Z +4165,2005-07-07T09:23:27Z,3845,66,2005-07-15T06:00:27Z,1,2020-02-15T06:59:39Z +4166,2005-07-07T09:33:30Z,3267,376,2005-07-16T06:06:30Z,1,2020-02-15T06:59:39Z +4167,2005-07-07T09:37:08Z,3771,175,2005-07-16T06:16:08Z,2,2020-02-15T06:59:39Z +4168,2005-07-07T09:37:24Z,1872,132,2005-07-09T14:32:24Z,2,2020-02-15T06:59:39Z +4169,2005-07-07T09:39:18Z,3360,580,2005-07-11T13:43:18Z,1,2020-02-15T06:59:39Z +4170,2005-07-07T09:44:36Z,2665,99,2005-07-13T14:10:36Z,1,2020-02-15T06:59:39Z +4171,2005-07-07T09:49:04Z,4199,476,2005-07-14T03:58:04Z,2,2020-02-15T06:59:39Z +4172,2005-07-07T09:49:09Z,1158,309,2005-07-11T15:14:09Z,2,2020-02-15T06:59:39Z +4173,2005-07-07T09:57:26Z,4272,320,2005-07-10T04:05:26Z,1,2020-02-15T06:59:39Z +4174,2005-07-07T09:59:49Z,3814,182,2005-07-11T13:34:49Z,1,2020-02-15T06:59:39Z +4175,2005-07-07T10:02:03Z,1979,8,2005-07-10T06:09:03Z,2,2020-02-15T06:59:39Z +4176,2005-07-07T10:03:34Z,2745,420,2005-07-16T08:43:34Z,1,2020-02-15T06:59:39Z +4177,2005-07-07T10:12:36Z,4106,317,2005-07-15T15:48:36Z,2,2020-02-15T06:59:39Z +4178,2005-07-07T10:14:31Z,2898,513,2005-07-12T09:38:31Z,2,2020-02-15T06:59:39Z +4179,2005-07-07T10:17:15Z,559,75,2005-07-10T05:12:15Z,2,2020-02-15T06:59:39Z +4180,2005-07-07T10:23:25Z,1704,3,2005-07-10T13:18:25Z,1,2020-02-15T06:59:39Z +4181,2005-07-07T10:27:54Z,3725,598,2005-07-13T06:09:54Z,1,2020-02-15T06:59:39Z +4182,2005-07-07T10:28:00Z,3080,256,2005-07-08T12:50:00Z,1,2020-02-15T06:59:39Z +4183,2005-07-07T10:28:33Z,3342,479,2005-07-15T12:29:33Z,1,2020-02-15T06:59:39Z +4184,2005-07-07T10:30:08Z,1022,468,2005-07-14T12:56:08Z,1,2020-02-15T06:59:39Z +4185,2005-07-07T10:31:05Z,2425,395,2005-07-13T05:30:05Z,2,2020-02-15T06:59:39Z +4186,2005-07-07T10:32:25Z,3910,185,2005-07-15T06:22:25Z,1,2020-02-15T06:59:39Z +4187,2005-07-07T10:41:31Z,2,161,2005-07-11T06:25:31Z,1,2020-02-15T06:59:39Z +4188,2005-07-07T10:45:29Z,3243,391,2005-07-16T09:39:29Z,1,2020-02-15T06:59:39Z +4189,2005-07-07T10:51:07Z,1492,386,2005-07-14T14:46:07Z,2,2020-02-15T06:59:39Z +4190,2005-07-07T10:52:39Z,826,349,2005-07-11T13:19:39Z,1,2020-02-15T06:59:39Z +4191,2005-07-07T10:56:14Z,2475,390,2005-07-11T09:56:14Z,1,2020-02-15T06:59:39Z +4192,2005-07-07T10:57:06Z,624,558,2005-07-13T16:30:06Z,1,2020-02-15T06:59:39Z +4193,2005-07-07T10:57:21Z,3791,445,2005-07-09T07:33:21Z,2,2020-02-15T06:59:39Z +4194,2005-07-07T10:59:39Z,1753,153,2005-07-15T09:34:39Z,1,2020-02-15T06:59:39Z +4195,2005-07-07T11:00:02Z,450,455,2005-07-14T16:54:02Z,1,2020-02-15T06:59:39Z +4196,2005-07-07T11:06:33Z,3407,564,2005-07-14T13:46:33Z,1,2020-02-15T06:59:39Z +4197,2005-07-07T11:07:52Z,2515,324,2005-07-10T10:19:52Z,1,2020-02-15T06:59:39Z +4198,2005-07-07T11:08:11Z,333,247,2005-07-16T15:29:11Z,1,2020-02-15T06:59:39Z +4199,2005-07-07T11:13:07Z,2120,259,2005-07-11T07:17:07Z,1,2020-02-15T06:59:39Z +4200,2005-07-07T11:15:11Z,1097,292,2005-07-11T11:46:11Z,2,2020-02-15T06:59:39Z +4201,2005-07-07T11:19:51Z,3682,145,2005-07-16T08:48:51Z,1,2020-02-15T06:59:39Z +4202,2005-07-07T11:23:48Z,2274,38,2005-07-16T16:32:48Z,1,2020-02-15T06:59:39Z +4203,2005-07-07T11:24:14Z,2743,189,2005-07-11T16:26:14Z,1,2020-02-15T06:59:39Z +4204,2005-07-07T11:24:18Z,1513,569,2005-07-15T12:42:18Z,1,2020-02-15T06:59:39Z +4205,2005-07-07T11:25:39Z,3922,486,2005-07-11T06:12:39Z,1,2020-02-15T06:59:39Z +4206,2005-07-07T11:32:16Z,1557,448,2005-07-14T13:07:16Z,2,2020-02-15T06:59:39Z +4207,2005-07-07T11:32:45Z,1119,588,2005-07-14T05:49:45Z,2,2020-02-15T06:59:39Z +4208,2005-07-07T11:34:22Z,3617,441,2005-07-09T08:25:22Z,1,2020-02-15T06:59:39Z +4209,2005-07-07T11:35:08Z,2010,100,2005-07-10T10:58:08Z,1,2020-02-15T06:59:39Z +4210,2005-07-07T11:36:20Z,1972,581,2005-07-16T12:38:20Z,1,2020-02-15T06:59:39Z +4211,2005-07-07T11:50:41Z,2001,214,2005-07-09T13:58:41Z,2,2020-02-15T06:59:39Z +4212,2005-07-07T11:53:14Z,1825,574,2005-07-09T07:12:14Z,1,2020-02-15T06:59:39Z +4213,2005-07-07T11:53:49Z,705,103,2005-07-13T07:51:49Z,1,2020-02-15T06:59:39Z +4214,2005-07-07T11:54:33Z,2534,484,2005-07-08T10:49:33Z,2,2020-02-15T06:59:39Z +4215,2005-07-07T12:00:52Z,1239,22,2005-07-11T15:14:52Z,2,2020-02-15T06:59:39Z +4216,2005-07-07T12:01:34Z,1216,467,2005-07-08T09:59:34Z,1,2020-02-15T06:59:39Z +4217,2005-07-07T12:08:59Z,3186,228,2005-07-11T15:07:59Z,2,2020-02-15T06:59:39Z +4218,2005-07-07T12:10:24Z,152,497,2005-07-15T16:09:24Z,1,2020-02-15T06:59:39Z +4219,2005-07-07T12:11:22Z,2800,16,2005-07-11T11:05:22Z,1,2020-02-15T06:59:39Z +4220,2005-07-07T12:12:36Z,821,513,2005-07-10T13:37:36Z,1,2020-02-15T06:59:39Z +4221,2005-07-07T12:18:57Z,4567,143,2005-07-12T09:47:57Z,2,2020-02-15T06:59:39Z +4222,2005-07-07T12:20:21Z,2053,467,2005-07-11T11:09:21Z,2,2020-02-15T06:59:39Z +4223,2005-07-07T12:23:54Z,2407,405,2005-07-10T14:46:54Z,2,2020-02-15T06:59:39Z +4224,2005-07-07T12:24:21Z,3659,419,2005-07-10T11:48:21Z,1,2020-02-15T06:59:39Z +4225,2005-07-07T12:24:37Z,1766,377,2005-07-12T06:47:37Z,2,2020-02-15T06:59:39Z +4226,2005-07-07T12:37:56Z,1692,57,2005-07-09T08:48:56Z,2,2020-02-15T06:59:39Z +4227,2005-07-07T12:41:36Z,4186,78,2005-07-15T12:33:36Z,1,2020-02-15T06:59:39Z +4228,2005-07-07T12:42:02Z,1020,38,2005-07-12T10:52:02Z,1,2020-02-15T06:59:39Z +4229,2005-07-07T12:43:23Z,953,106,2005-07-13T15:00:23Z,2,2020-02-15T06:59:39Z +4230,2005-07-07T12:46:47Z,353,205,2005-07-15T06:52:47Z,1,2020-02-15T06:59:39Z +4231,2005-07-07T12:48:19Z,3522,194,2005-07-13T18:45:19Z,1,2020-02-15T06:59:39Z +4232,2005-07-07T12:49:12Z,3841,347,2005-07-15T16:45:12Z,1,2020-02-15T06:59:39Z +4233,2005-07-07T13:00:20Z,1849,488,2005-07-13T16:37:20Z,1,2020-02-15T06:59:39Z +4234,2005-07-07T13:01:35Z,1179,195,2005-07-15T13:05:35Z,1,2020-02-15T06:59:39Z +4235,2005-07-07T13:05:52Z,3525,86,2005-07-10T12:17:52Z,2,2020-02-15T06:59:39Z +4236,2005-07-07T13:12:07Z,642,213,2005-07-08T15:00:07Z,2,2020-02-15T06:59:39Z +4237,2005-07-07T13:16:55Z,3773,477,2005-07-15T16:33:55Z,1,2020-02-15T06:59:39Z +4238,2005-07-07T13:22:20Z,3024,7,2005-07-10T07:44:20Z,2,2020-02-15T06:59:39Z +4239,2005-07-07T13:23:17Z,3866,122,2005-07-13T17:49:17Z,1,2020-02-15T06:59:39Z +4240,2005-07-07T13:33:12Z,1024,65,2005-07-13T12:28:12Z,1,2020-02-15T06:59:39Z +4241,2005-07-07T13:39:00Z,4154,595,2005-07-12T17:49:00Z,2,2020-02-15T06:59:39Z +4242,2005-07-07T13:39:01Z,3626,286,2005-07-12T18:29:01Z,1,2020-02-15T06:59:39Z +4243,2005-07-07T13:39:58Z,4559,339,2005-07-12T19:27:58Z,1,2020-02-15T06:59:39Z +4244,2005-07-07T13:41:58Z,592,581,2005-07-09T15:32:58Z,2,2020-02-15T06:59:39Z +4245,2005-07-07T13:48:33Z,3743,91,2005-07-10T09:54:33Z,1,2020-02-15T06:59:39Z +4246,2005-07-07T13:49:03Z,1141,411,2005-07-09T13:01:03Z,1,2020-02-15T06:59:39Z +4247,2005-07-07T13:51:54Z,808,539,2005-07-10T09:43:54Z,2,2020-02-15T06:59:39Z +4248,2005-07-07T13:59:20Z,773,161,2005-07-14T15:18:20Z,2,2020-02-15T06:59:39Z +4249,2005-07-07T14:05:17Z,4185,111,2005-07-10T09:21:17Z,2,2020-02-15T06:59:39Z +4250,2005-07-07T14:08:11Z,2556,423,2005-07-13T08:09:11Z,2,2020-02-15T06:59:39Z +4251,2005-07-07T14:11:55Z,3541,367,2005-07-16T14:01:55Z,2,2020-02-15T06:59:39Z +4252,2005-07-07T14:13:05Z,474,154,2005-07-09T14:17:05Z,1,2020-02-15T06:59:39Z +4253,2005-07-07T14:13:13Z,3355,157,2005-07-16T18:55:13Z,2,2020-02-15T06:59:39Z +4254,2005-07-07T14:13:52Z,3957,529,2005-07-12T10:39:52Z,2,2020-02-15T06:59:39Z +4255,2005-07-07T14:14:13Z,749,10,2005-07-12T18:32:13Z,1,2020-02-15T06:59:39Z +4256,2005-07-07T14:14:36Z,1386,129,2005-07-10T09:41:36Z,1,2020-02-15T06:59:39Z +4257,2005-07-07T14:18:41Z,3927,553,2005-07-08T14:58:41Z,1,2020-02-15T06:59:39Z +4258,2005-07-07T14:20:59Z,1562,492,2005-07-16T10:03:59Z,1,2020-02-15T06:59:39Z +4259,2005-07-07T14:22:18Z,4378,467,2005-07-11T19:38:18Z,1,2020-02-15T06:59:39Z +4260,2005-07-07T14:22:45Z,4575,305,2005-07-08T15:10:45Z,2,2020-02-15T06:59:39Z +4261,2005-07-07T14:23:56Z,1405,496,2005-07-13T15:26:56Z,1,2020-02-15T06:59:39Z +4262,2005-07-07T14:24:30Z,3122,29,2005-07-14T13:12:30Z,1,2020-02-15T06:59:39Z +4263,2005-07-07T14:24:44Z,2975,16,2005-07-13T18:22:44Z,1,2020-02-15T06:59:39Z +4264,2005-07-07T14:25:28Z,3499,406,2005-07-08T08:49:28Z,2,2020-02-15T06:59:39Z +4265,2005-07-07T14:27:51Z,1685,69,2005-07-12T19:55:51Z,2,2020-02-15T06:59:39Z +4266,2005-07-07T14:34:50Z,1578,509,2005-07-08T09:23:50Z,2,2020-02-15T06:59:39Z +4267,2005-07-07T14:35:30Z,136,410,2005-07-11T10:41:30Z,1,2020-02-15T06:59:39Z +4268,2005-07-07T14:36:05Z,432,80,2005-07-16T14:36:05Z,1,2020-02-15T06:59:39Z +4269,2005-07-07T14:38:33Z,415,496,2005-07-09T10:27:33Z,1,2020-02-15T06:59:39Z +4270,2005-07-07T14:38:41Z,183,210,2005-07-10T19:07:41Z,2,2020-02-15T06:59:39Z +4271,2005-07-07T14:38:52Z,533,150,2005-07-15T12:05:52Z,1,2020-02-15T06:59:39Z +4272,2005-07-07T14:39:20Z,488,120,2005-07-13T08:57:20Z,2,2020-02-15T06:59:39Z +4273,2005-07-07T14:40:22Z,4163,159,2005-07-13T09:58:22Z,2,2020-02-15T06:59:39Z +4274,2005-07-07T14:42:04Z,787,26,2005-07-13T20:23:04Z,1,2020-02-15T06:59:39Z +4275,2005-07-07T14:43:51Z,1167,393,2005-07-15T18:04:51Z,2,2020-02-15T06:59:39Z +4276,2005-07-07T14:50:59Z,221,366,2005-07-09T15:42:59Z,2,2020-02-15T06:59:39Z +4277,2005-07-07T14:52:12Z,1983,106,2005-07-09T13:10:12Z,1,2020-02-15T06:59:39Z +4278,2005-07-07T14:53:24Z,3693,6,2005-07-13T14:21:24Z,2,2020-02-15T06:59:39Z +4279,2005-07-07T15:01:53Z,581,335,2005-07-08T09:43:53Z,1,2020-02-15T06:59:39Z +4280,2005-07-07T15:09:31Z,1115,593,2005-07-13T14:47:31Z,1,2020-02-15T06:59:39Z +4281,2005-07-07T15:17:50Z,1182,321,2005-07-08T11:42:50Z,2,2020-02-15T06:59:39Z +4282,2005-07-07T15:26:31Z,3134,25,2005-07-11T14:27:31Z,1,2020-02-15T06:59:39Z +4283,2005-07-07T15:29:35Z,2807,477,2005-07-11T17:12:35Z,1,2020-02-15T06:59:39Z +4284,2005-07-07T15:31:57Z,1313,521,2005-07-09T10:20:57Z,2,2020-02-15T06:59:39Z +4285,2005-07-07T15:34:35Z,511,308,2005-07-15T09:43:35Z,2,2020-02-15T06:59:39Z +4286,2005-07-07T15:36:44Z,4496,111,2005-07-11T13:04:44Z,2,2020-02-15T06:59:39Z +4287,2005-07-07T15:37:31Z,3558,94,2005-07-16T19:59:31Z,2,2020-02-15T06:59:39Z +4288,2005-07-07T15:38:25Z,1508,64,2005-07-13T16:23:25Z,2,2020-02-15T06:59:39Z +4289,2005-07-07T15:45:58Z,3172,231,2005-07-09T11:11:58Z,2,2020-02-15T06:59:39Z +4290,2005-07-07T15:47:10Z,4174,277,2005-07-15T15:03:10Z,1,2020-02-15T06:59:39Z +4291,2005-07-07T15:47:47Z,2074,298,2005-07-10T11:45:47Z,1,2020-02-15T06:59:39Z +4292,2005-07-07T15:48:38Z,3084,401,2005-07-15T17:53:38Z,1,2020-02-15T06:59:39Z +4293,2005-07-07T15:53:47Z,984,221,2005-07-10T18:11:47Z,1,2020-02-15T06:59:39Z +4294,2005-07-07T15:56:23Z,2845,41,2005-07-15T14:50:23Z,2,2020-02-15T06:59:39Z +4295,2005-07-07T16:08:51Z,2490,319,2005-07-13T13:06:51Z,2,2020-02-15T06:59:39Z +4296,2005-07-07T16:16:03Z,977,407,2005-07-08T20:16:03Z,2,2020-02-15T06:59:39Z +4297,2005-07-07T16:24:09Z,882,141,2005-07-13T15:08:09Z,2,2020-02-15T06:59:39Z +4298,2005-07-07T16:27:25Z,1055,560,2005-07-12T18:20:25Z,1,2020-02-15T06:59:39Z +4299,2005-07-07T16:33:48Z,870,80,2005-07-16T11:48:48Z,1,2020-02-15T06:59:39Z +4300,2005-07-07T16:36:16Z,1189,38,2005-07-10T13:59:16Z,2,2020-02-15T06:59:39Z +4301,2005-07-07T16:37:23Z,1630,440,2005-07-11T18:05:23Z,2,2020-02-15T06:59:39Z +4302,2005-07-07T16:47:53Z,3669,332,2005-07-16T22:22:53Z,2,2020-02-15T06:59:39Z +4303,2005-07-07T16:57:32Z,818,108,2005-07-14T17:42:32Z,2,2020-02-15T06:59:39Z +4304,2005-07-07T17:01:19Z,3382,165,2005-07-12T22:47:19Z,2,2020-02-15T06:59:39Z +4305,2005-07-07T17:07:11Z,3926,240,2005-07-08T16:15:11Z,2,2020-02-15T06:59:39Z +4306,2005-07-07T17:12:32Z,1219,210,2005-07-16T11:24:32Z,2,2020-02-15T06:59:39Z +4307,2005-07-07T17:20:39Z,2827,394,2005-07-16T14:42:39Z,1,2020-02-15T06:59:39Z +4308,2005-07-07T17:29:16Z,1482,168,2005-07-11T21:47:16Z,1,2020-02-15T06:59:39Z +4309,2005-07-07T17:29:41Z,3549,209,2005-07-14T22:22:41Z,2,2020-02-15T06:59:39Z +4310,2005-07-07T17:30:56Z,3842,390,2005-07-12T13:19:56Z,2,2020-02-15T06:59:39Z +4311,2005-07-07T17:31:14Z,2985,498,2005-07-11T19:21:14Z,2,2020-02-15T06:59:39Z +4312,2005-07-07T17:34:59Z,3870,97,2005-07-09T17:45:59Z,2,2020-02-15T06:59:39Z +4313,2005-07-07T17:36:56Z,91,29,2005-07-13T12:00:56Z,1,2020-02-15T06:59:39Z +4314,2005-07-07T17:38:31Z,539,184,2005-07-09T20:24:31Z,1,2020-02-15T06:59:39Z +4315,2005-07-07T17:40:26Z,1472,195,2005-07-09T22:58:26Z,2,2020-02-15T06:59:39Z +4316,2005-07-07T17:44:22Z,517,301,2005-07-14T15:12:22Z,2,2020-02-15T06:59:39Z +4317,2005-07-07T17:44:49Z,2234,110,2005-07-08T21:48:49Z,2,2020-02-15T06:59:39Z +4318,2005-07-07T17:47:50Z,1607,321,2005-07-14T12:15:50Z,2,2020-02-15T06:59:39Z +4319,2005-07-07T17:50:27Z,3389,25,2005-07-10T13:53:27Z,2,2020-02-15T06:59:39Z +4320,2005-07-07T17:51:59Z,3437,376,2005-07-13T18:39:59Z,1,2020-02-15T06:59:39Z +4321,2005-07-07T17:52:38Z,612,91,2005-07-11T23:37:38Z,1,2020-02-15T06:59:39Z +4322,2005-07-07T17:54:37Z,1522,568,2005-07-14T13:56:37Z,1,2020-02-15T06:59:39Z +4323,2005-07-07T17:55:53Z,1287,336,2005-07-13T16:43:53Z,2,2020-02-15T06:59:39Z +4324,2005-07-07T17:57:56Z,952,226,2005-07-13T22:34:56Z,1,2020-02-15T06:59:39Z +4325,2005-07-07T17:59:24Z,3728,373,2005-07-16T17:10:24Z,2,2020-02-15T06:59:39Z +4326,2005-07-07T18:01:22Z,4037,331,2005-07-16T15:45:22Z,1,2020-02-15T06:59:39Z +4327,2005-07-07T18:01:39Z,860,73,2005-07-12T22:40:39Z,1,2020-02-15T06:59:39Z +4328,2005-07-07T18:03:17Z,2174,264,2005-07-14T16:14:17Z,1,2020-02-15T06:59:39Z +4329,2005-07-07T18:04:16Z,638,504,2005-07-15T17:58:16Z,2,2020-02-15T06:59:39Z +4330,2005-07-07T18:09:41Z,2408,408,2005-07-14T22:05:41Z,1,2020-02-15T06:59:39Z +4331,2005-07-07T18:22:30Z,419,535,2005-07-13T18:20:30Z,1,2020-02-15T06:59:39Z +4332,2005-07-07T18:25:26Z,1714,137,2005-07-16T15:05:26Z,1,2020-02-15T06:59:39Z +4333,2005-07-07T18:31:50Z,76,113,2005-07-08T21:26:50Z,1,2020-02-15T06:59:39Z +4334,2005-07-07T18:32:04Z,3021,210,2005-07-08T16:19:04Z,1,2020-02-15T06:59:39Z +4335,2005-07-07T18:33:57Z,1332,375,2005-07-11T13:23:57Z,1,2020-02-15T06:59:39Z +4336,2005-07-07T18:34:36Z,482,532,2005-07-10T17:58:36Z,2,2020-02-15T06:59:39Z +4337,2005-07-07T18:36:37Z,2313,464,2005-07-14T14:59:37Z,2,2020-02-15T06:59:39Z +4338,2005-07-07T18:39:56Z,3152,581,2005-07-12T21:03:56Z,1,2020-02-15T06:59:39Z +4339,2005-07-07T18:41:42Z,3215,130,2005-07-08T13:00:42Z,1,2020-02-15T06:59:39Z +4340,2005-07-07T18:41:46Z,3919,227,2005-07-16T21:27:46Z,1,2020-02-15T06:59:39Z +4341,2005-07-07T18:44:23Z,4523,124,2005-07-15T18:13:23Z,1,2020-02-15T06:59:39Z +4342,2005-07-07T18:47:03Z,1355,120,2005-07-09T21:59:03Z,2,2020-02-15T06:59:39Z +4343,2005-07-07T18:48:54Z,1926,293,2005-07-12T15:19:54Z,1,2020-02-15T06:59:39Z +4344,2005-07-07T18:50:47Z,1185,99,2005-07-12T16:38:47Z,2,2020-02-15T06:59:39Z +4345,2005-07-07T18:52:57Z,2235,225,2005-07-15T21:24:57Z,2,2020-02-15T06:59:39Z +4346,2005-07-07T18:58:45Z,1906,520,2005-07-10T16:37:45Z,1,2020-02-15T06:59:39Z +4347,2005-07-07T18:58:57Z,1964,344,2005-07-14T16:35:57Z,2,2020-02-15T06:59:39Z +4348,2005-07-07T19:02:05Z,1948,452,2005-07-09T20:51:05Z,2,2020-02-15T06:59:39Z +4349,2005-07-07T19:02:37Z,3430,182,2005-07-09T17:25:37Z,2,2020-02-15T06:59:39Z +4350,2005-07-07T19:02:41Z,2223,299,2005-07-09T15:27:41Z,1,2020-02-15T06:59:39Z +4351,2005-07-07T19:04:24Z,3567,382,2005-07-14T00:03:24Z,2,2020-02-15T06:59:39Z +4352,2005-07-07T19:15:58Z,2636,249,2005-07-16T20:22:58Z,2,2020-02-15T06:59:39Z +4353,2005-07-07T19:19:05Z,368,452,2005-07-13T13:40:05Z,1,2020-02-15T06:59:39Z +4354,2005-07-07T19:21:02Z,4423,208,2005-07-15T17:03:02Z,2,2020-02-15T06:59:39Z +4355,2005-07-07T19:21:19Z,4557,438,2005-07-09T00:55:19Z,2,2020-02-15T06:59:39Z +4356,2005-07-07T19:21:22Z,1907,318,2005-07-16T15:57:22Z,1,2020-02-15T06:59:39Z +4357,2005-07-07T19:24:39Z,3413,103,2005-07-12T00:11:39Z,1,2020-02-15T06:59:39Z +4358,2005-07-07T19:27:04Z,3136,446,2005-07-14T23:46:04Z,1,2020-02-15T06:59:39Z +4359,2005-07-07T19:30:20Z,3222,282,2005-07-09T13:34:20Z,1,2020-02-15T06:59:39Z +4360,2005-07-07T19:31:12Z,1811,92,2005-07-10T23:11:12Z,2,2020-02-15T06:59:39Z +4361,2005-07-07T19:33:23Z,116,425,2005-07-12T22:36:23Z,1,2020-02-15T06:59:39Z +4362,2005-07-07T19:35:30Z,3759,425,2005-07-14T14:59:30Z,1,2020-02-15T06:59:39Z +4363,2005-07-07T19:43:28Z,3202,168,2005-07-13T00:15:28Z,2,2020-02-15T06:59:39Z +4364,2005-07-07T19:46:51Z,10,145,2005-07-08T21:55:51Z,1,2020-02-15T06:59:39Z +4365,2005-07-07T19:47:46Z,3207,442,2005-07-08T23:21:46Z,2,2020-02-15T06:59:39Z +4366,2005-07-07T19:48:36Z,2961,524,2005-07-14T01:14:36Z,1,2020-02-15T06:59:39Z +4367,2005-07-07T19:52:01Z,4529,48,2005-07-13T19:41:01Z,2,2020-02-15T06:59:39Z +4368,2005-07-07T19:55:19Z,736,324,2005-07-09T00:11:19Z,1,2020-02-15T06:59:39Z +4369,2005-07-07T20:01:38Z,3552,517,2005-07-13T01:19:38Z,2,2020-02-15T06:59:39Z +4370,2005-07-07T20:05:36Z,1591,559,2005-07-16T23:58:36Z,1,2020-02-15T06:59:39Z +4371,2005-07-07T20:06:45Z,2533,90,2005-07-08T18:50:45Z,1,2020-02-15T06:59:39Z +4372,2005-07-07T20:09:01Z,2207,252,2005-07-09T18:24:01Z,1,2020-02-15T06:59:39Z +4373,2005-07-07T20:10:59Z,3593,470,2005-07-12T21:30:59Z,2,2020-02-15T06:59:39Z +4374,2005-07-07T20:13:58Z,4377,517,2005-07-11T18:11:58Z,2,2020-02-15T06:59:39Z +4375,2005-07-07T20:20:29Z,3035,560,2005-07-16T19:29:29Z,2,2020-02-15T06:59:39Z +4376,2005-07-07T20:24:33Z,1344,151,2005-07-11T18:32:33Z,1,2020-02-15T06:59:39Z +4377,2005-07-07T20:28:57Z,3294,205,2005-07-16T02:13:57Z,2,2020-02-15T06:59:39Z +4378,2005-07-07T20:29:08Z,1244,24,2005-07-12T19:17:08Z,2,2020-02-15T06:59:39Z +4379,2005-07-07T20:32:30Z,2773,316,2005-07-11T20:40:30Z,2,2020-02-15T06:59:39Z +4380,2005-07-07T20:35:00Z,3164,353,2005-07-14T17:06:00Z,1,2020-02-15T06:59:39Z +4381,2005-07-07T20:37:53Z,3727,486,2005-07-10T16:54:53Z,1,2020-02-15T06:59:39Z +4382,2005-07-07T20:41:03Z,657,26,2005-07-14T15:15:03Z,1,2020-02-15T06:59:39Z +4383,2005-07-07T20:45:51Z,2649,591,2005-07-17T00:52:51Z,2,2020-02-15T06:59:39Z +4384,2005-07-07T20:46:45Z,1178,59,2005-07-16T21:54:45Z,1,2020-02-15T06:59:39Z +4385,2005-07-07T20:48:38Z,849,564,2005-07-11T17:03:38Z,2,2020-02-15T06:59:39Z +4386,2005-07-07T20:55:19Z,499,314,2005-07-10T21:51:19Z,1,2020-02-15T06:59:39Z +4387,2005-07-07T20:56:47Z,591,335,2005-07-16T00:51:47Z,1,2020-02-15T06:59:39Z +4388,2005-07-07T20:58:03Z,3150,210,2005-07-16T20:05:03Z,2,2020-02-15T06:59:39Z +4389,2005-07-07T20:58:58Z,1672,166,2005-07-13T19:57:58Z,2,2020-02-15T06:59:39Z +4390,2005-07-07T20:59:06Z,6,44,2005-07-09T00:04:06Z,2,2020-02-15T06:59:39Z +4391,2005-07-07T21:09:38Z,2135,42,2005-07-09T17:35:38Z,1,2020-02-15T06:59:39Z +4392,2005-07-07T21:11:02Z,4236,491,2005-07-13T21:52:02Z,1,2020-02-15T06:59:39Z +4393,2005-07-07T21:12:36Z,4034,395,2005-07-09T22:41:36Z,2,2020-02-15T06:59:39Z +4394,2005-07-07T21:12:45Z,563,156,2005-07-16T18:24:45Z,2,2020-02-15T06:59:39Z +4395,2005-07-07T21:13:22Z,360,544,2005-07-08T22:59:22Z,2,2020-02-15T06:59:39Z +4396,2005-07-07T21:14:19Z,750,275,2005-07-10T19:22:19Z,1,2020-02-15T06:59:39Z +4397,2005-07-07T21:14:54Z,3085,494,2005-07-13T19:24:54Z,2,2020-02-15T06:59:39Z +4398,2005-07-07T21:18:44Z,3628,426,2005-07-10T22:45:44Z,1,2020-02-15T06:59:39Z +4399,2005-07-07T21:20:28Z,4515,402,2005-07-12T20:57:28Z,2,2020-02-15T06:59:39Z +4400,2005-07-07T21:22:26Z,49,370,2005-07-16T00:59:26Z,2,2020-02-15T06:59:39Z +4401,2005-07-07T21:26:27Z,2725,405,2005-07-12T17:18:27Z,2,2020-02-15T06:59:39Z +4402,2005-07-07T21:28:46Z,1198,26,2005-07-08T17:04:46Z,1,2020-02-15T06:59:39Z +4403,2005-07-07T21:29:40Z,3973,447,2005-07-09T17:58:40Z,1,2020-02-15T06:59:39Z +4404,2005-07-07T21:31:53Z,944,25,2005-07-13T19:00:53Z,1,2020-02-15T06:59:39Z +4405,2005-07-07T21:33:16Z,2102,145,2005-07-15T00:33:16Z,2,2020-02-15T06:59:39Z +4406,2005-07-07T21:35:16Z,438,448,2005-07-15T16:13:16Z,2,2020-02-15T06:59:39Z +4407,2005-07-07T21:39:45Z,267,20,2005-07-11T23:40:45Z,1,2020-02-15T06:59:39Z +4408,2005-07-07T21:41:06Z,2482,258,2005-07-11T00:32:06Z,1,2020-02-15T06:59:39Z +4409,2005-07-07T21:47:29Z,3153,8,2005-07-11T20:14:29Z,2,2020-02-15T06:59:39Z +4410,2005-07-07T21:48:16Z,2754,584,2005-07-09T03:15:16Z,1,2020-02-15T06:59:39Z +4411,2005-07-07T21:54:58Z,320,224,2005-07-14T16:14:58Z,2,2020-02-15T06:59:39Z +4412,2005-07-07T21:56:53Z,1181,282,2005-07-11T19:28:53Z,1,2020-02-15T06:59:39Z +4413,2005-07-07T22:00:04Z,1062,565,2005-07-10T18:20:04Z,2,2020-02-15T06:59:39Z +4414,2005-07-07T22:00:21Z,991,434,2005-07-12T02:51:21Z,1,2020-02-15T06:59:39Z +4415,2005-07-07T22:01:43Z,1403,329,2005-07-13T03:09:43Z,2,2020-02-15T06:59:39Z +4416,2005-07-07T22:04:36Z,1247,290,2005-07-09T02:44:36Z,2,2020-02-15T06:59:39Z +4417,2005-07-07T22:05:05Z,743,452,2005-07-09T16:16:05Z,2,2020-02-15T06:59:39Z +4418,2005-07-07T22:05:30Z,4368,417,2005-07-11T18:42:30Z,1,2020-02-15T06:59:39Z +4419,2005-07-07T22:06:24Z,783,39,2005-07-15T23:59:24Z,1,2020-02-15T06:59:39Z +4420,2005-07-07T22:07:31Z,4427,346,2005-07-12T19:14:31Z,2,2020-02-15T06:59:39Z +4421,2005-07-07T22:07:55Z,4103,417,2005-07-16T20:21:55Z,1,2020-02-15T06:59:39Z +4422,2005-07-07T22:09:45Z,1741,345,2005-07-10T01:43:45Z,1,2020-02-15T06:59:39Z +4423,2005-07-07T22:11:28Z,2721,526,2005-07-14T18:49:28Z,2,2020-02-15T06:59:39Z +4424,2005-07-07T22:14:43Z,662,384,2005-07-11T01:17:43Z,1,2020-02-15T06:59:39Z +4425,2005-07-07T22:22:44Z,877,345,2005-07-08T22:23:44Z,2,2020-02-15T06:59:39Z +4426,2005-07-07T22:28:32Z,364,242,2005-07-16T02:04:32Z,1,2020-02-15T06:59:39Z +4427,2005-07-07T22:28:51Z,1021,69,2005-07-11T21:37:51Z,2,2020-02-15T06:59:39Z +4428,2005-07-07T22:29:40Z,2575,181,2005-07-11T02:46:40Z,2,2020-02-15T06:59:39Z +4429,2005-07-07T22:32:47Z,2949,187,2005-07-15T03:10:47Z,2,2020-02-15T06:59:39Z +4430,2005-07-07T22:35:24Z,3436,278,2005-07-14T23:49:24Z,1,2020-02-15T06:59:39Z +4431,2005-07-07T22:39:02Z,936,26,2005-07-16T19:24:02Z,1,2020-02-15T06:59:39Z +4432,2005-07-07T22:40:02Z,2779,295,2005-07-15T01:46:02Z,1,2020-02-15T06:59:39Z +4433,2005-07-07T22:45:41Z,88,449,2005-07-16T23:30:41Z,2,2020-02-15T06:59:39Z +4434,2005-07-07T22:48:34Z,1801,32,2005-07-09T18:55:34Z,1,2020-02-15T06:59:39Z +4435,2005-07-07T22:51:04Z,3815,157,2005-07-14T23:15:04Z,2,2020-02-15T06:59:39Z +4436,2005-07-07T22:52:04Z,4326,563,2005-07-10T04:51:04Z,1,2020-02-15T06:59:39Z +4437,2005-07-07T22:55:41Z,3578,414,2005-07-13T19:40:41Z,1,2020-02-15T06:59:39Z +4438,2005-07-07T22:56:17Z,4371,104,2005-07-16T17:28:17Z,1,2020-02-15T06:59:39Z +4439,2005-07-07T22:57:30Z,2393,521,2005-07-10T18:28:30Z,1,2020-02-15T06:59:39Z +4440,2005-07-07T23:00:58Z,1236,507,2005-07-08T21:31:58Z,2,2020-02-15T06:59:39Z +4441,2005-07-07T23:04:23Z,3680,211,2005-07-13T19:07:23Z,1,2020-02-15T06:59:39Z +4442,2005-07-07T23:05:30Z,461,123,2005-07-13T22:20:30Z,2,2020-02-15T06:59:39Z +4443,2005-07-07T23:05:53Z,72,389,2005-07-16T01:46:53Z,1,2020-02-15T06:59:39Z +4444,2005-07-07T23:07:44Z,764,529,2005-07-14T02:51:44Z,2,2020-02-15T06:59:39Z +4445,2005-07-07T23:08:22Z,3328,327,2005-07-16T03:49:22Z,1,2020-02-15T06:59:39Z +4446,2005-07-07T23:12:16Z,2629,438,2005-07-13T19:42:16Z,1,2020-02-15T06:59:39Z +4447,2005-07-07T23:15:28Z,404,549,2005-07-14T22:53:28Z,2,2020-02-15T06:59:39Z +4448,2005-07-07T23:17:12Z,2768,536,2005-07-13T18:26:12Z,1,2020-02-15T06:59:39Z +4449,2005-07-07T23:18:58Z,2813,354,2005-07-15T20:40:58Z,2,2020-02-15T06:59:39Z +4450,2005-07-07T23:20:05Z,1252,345,2005-07-13T19:50:05Z,2,2020-02-15T06:59:39Z +4451,2005-07-07T23:29:54Z,179,85,2005-07-10T23:29:54Z,2,2020-02-15T06:59:39Z +4452,2005-07-07T23:31:54Z,2414,460,2005-07-14T04:05:54Z,1,2020-02-15T06:59:39Z +4453,2005-07-07T23:32:39Z,89,560,2005-07-12T01:38:39Z,2,2020-02-15T06:59:39Z +4454,2005-07-07T23:37:00Z,1395,9,2005-07-11T02:30:00Z,1,2020-02-15T06:59:39Z +4455,2005-07-07T23:43:46Z,1396,507,2005-07-08T21:34:46Z,2,2020-02-15T06:59:39Z +4456,2005-07-07T23:45:21Z,3395,421,2005-07-13T23:03:21Z,2,2020-02-15T06:59:39Z +4457,2005-07-07T23:45:38Z,407,567,2005-07-09T20:02:38Z,1,2020-02-15T06:59:39Z +4458,2005-07-07T23:47:47Z,1307,229,2005-07-09T19:17:47Z,2,2020-02-15T06:59:39Z +4459,2005-07-07T23:48:52Z,3987,227,2005-07-13T19:37:52Z,2,2020-02-15T06:59:39Z +4460,2005-07-07T23:50:14Z,4121,592,2005-07-09T21:55:14Z,1,2020-02-15T06:59:39Z +4461,2005-07-07T23:59:43Z,3656,286,2005-07-16T19:44:43Z,2,2020-02-15T06:59:39Z +4462,2005-07-08T00:02:49Z,4120,257,2005-07-15T20:48:49Z,2,2020-02-15T06:59:39Z +4463,2005-07-08T00:04:59Z,4356,422,2005-07-16T01:19:59Z,1,2020-02-15T06:59:39Z +4464,2005-07-08T00:07:18Z,4484,583,2005-07-08T22:14:18Z,2,2020-02-15T06:59:39Z +4465,2005-07-08T00:07:45Z,2877,329,2005-07-13T18:08:45Z,2,2020-02-15T06:59:39Z +4466,2005-07-08T00:12:53Z,3320,304,2005-07-17T03:49:53Z,2,2020-02-15T06:59:39Z +4467,2005-07-08T00:13:52Z,4466,339,2005-07-09T00:52:52Z,1,2020-02-15T06:59:39Z +4468,2005-07-08T00:17:59Z,3302,170,2005-07-12T05:51:59Z,2,2020-02-15T06:59:39Z +4469,2005-07-08T00:18:32Z,2173,192,2005-07-12T21:17:32Z,2,2020-02-15T06:59:39Z +4470,2005-07-08T00:20:57Z,3605,145,2005-07-10T02:31:57Z,1,2020-02-15T06:59:39Z +4471,2005-07-08T00:21:29Z,263,30,2005-07-11T18:48:29Z,2,2020-02-15T06:59:39Z +4472,2005-07-08T00:22:06Z,2089,343,2005-07-16T20:16:06Z,1,2020-02-15T06:59:39Z +4473,2005-07-08T00:22:10Z,1387,481,2005-07-09T21:11:10Z,1,2020-02-15T06:59:39Z +4474,2005-07-08T00:26:56Z,4474,137,2005-07-12T23:07:56Z,1,2020-02-15T06:59:39Z +4475,2005-07-08T00:27:30Z,3466,340,2005-07-09T05:39:30Z,1,2020-02-15T06:59:39Z +4476,2005-07-08T00:34:25Z,395,279,2005-07-08T22:55:25Z,1,2020-02-15T06:59:39Z +4477,2005-07-08T00:38:24Z,1602,552,2005-07-13T05:14:24Z,1,2020-02-15T06:59:39Z +4478,2005-07-08T00:39:08Z,1764,357,2005-07-11T21:57:08Z,2,2020-02-15T06:59:39Z +4479,2005-07-08T00:52:35Z,3516,211,2005-07-09T20:19:35Z,2,2020-02-15T06:59:39Z +4480,2005-07-08T00:56:30Z,4457,296,2005-07-10T20:52:30Z,2,2020-02-15T06:59:39Z +4481,2005-07-08T00:58:15Z,1669,474,2005-07-11T23:22:15Z,2,2020-02-15T06:59:39Z +4482,2005-07-08T01:01:18Z,3500,511,2005-07-11T01:18:18Z,1,2020-02-15T06:59:39Z +4483,2005-07-08T01:03:12Z,1222,425,2005-07-17T00:20:12Z,1,2020-02-15T06:59:39Z +4484,2005-07-08T01:05:57Z,2867,306,2005-07-16T00:41:57Z,2,2020-02-15T06:59:39Z +4485,2005-07-08T01:07:54Z,2614,130,2005-07-16T03:19:54Z,2,2020-02-15T06:59:39Z +4486,2005-07-08T01:09:09Z,837,197,2005-07-16T23:40:09Z,1,2020-02-15T06:59:39Z +4487,2005-07-08T01:20:22Z,2220,360,2005-07-16T21:23:22Z,2,2020-02-15T06:59:39Z +4488,2005-07-08T01:22:23Z,2108,89,2005-07-13T21:17:23Z,1,2020-02-15T06:59:39Z +4489,2005-07-08T01:23:58Z,4306,259,2005-07-09T01:35:58Z,2,2020-02-15T06:59:39Z +4490,2005-07-08T01:26:32Z,2690,161,2005-07-09T01:13:32Z,1,2020-02-15T06:59:39Z +4491,2005-07-08T01:30:46Z,1168,413,2005-07-11T03:12:46Z,1,2020-02-15T06:59:39Z +4492,2005-07-08T01:32:04Z,1152,247,2005-07-10T22:11:04Z,1,2020-02-15T06:59:39Z +4493,2005-07-08T01:40:24Z,1369,167,2005-07-09T02:17:24Z,2,2020-02-15T06:59:39Z +4494,2005-07-08T01:42:45Z,1655,349,2005-07-16T22:29:45Z,2,2020-02-15T06:59:39Z +4495,2005-07-08T01:43:46Z,3515,404,2005-07-10T07:38:46Z,1,2020-02-15T06:59:39Z +4496,2005-07-08T01:44:19Z,150,578,2005-07-08T20:34:19Z,2,2020-02-15T06:59:39Z +4497,2005-07-08T01:51:32Z,1995,142,2005-07-15T22:56:32Z,1,2020-02-15T06:59:39Z +4498,2005-07-08T02:07:50Z,4299,43,2005-07-12T23:54:50Z,2,2020-02-15T06:59:39Z +4499,2005-07-08T02:08:48Z,851,199,2005-07-10T07:06:48Z,2,2020-02-15T06:59:39Z +4500,2005-07-08T02:10:01Z,398,462,2005-07-15T05:49:01Z,2,2020-02-15T06:59:39Z +4501,2005-07-08T02:12:00Z,1412,262,2005-07-10T02:16:00Z,2,2020-02-15T06:59:39Z +4502,2005-07-08T02:12:04Z,225,470,2005-07-15T02:19:04Z,2,2020-02-15T06:59:39Z +4503,2005-07-08T02:17:12Z,1503,8,2005-07-13T08:12:12Z,1,2020-02-15T06:59:39Z +4504,2005-07-08T02:19:27Z,361,422,2005-07-12T21:15:27Z,1,2020-02-15T06:59:39Z +4505,2005-07-08T02:20:04Z,1864,481,2005-07-14T20:28:04Z,2,2020-02-15T06:59:39Z +4506,2005-07-08T02:22:18Z,1484,133,2005-07-13T04:54:18Z,2,2020-02-15T06:59:39Z +4507,2005-07-08T02:22:45Z,819,505,2005-07-14T20:53:45Z,1,2020-02-15T06:59:39Z +4508,2005-07-08T02:28:41Z,3996,97,2005-07-16T23:59:41Z,1,2020-02-15T06:59:39Z +4509,2005-07-08T02:32:38Z,1760,230,2005-07-14T01:05:38Z,2,2020-02-15T06:59:39Z +4510,2005-07-08T02:34:51Z,1085,27,2005-07-17T06:03:51Z,2,2020-02-15T06:59:39Z +4511,2005-07-08T02:36:21Z,4438,75,2005-07-15T06:01:21Z,1,2020-02-15T06:59:39Z +4512,2005-07-08T02:38:56Z,1569,424,2005-07-10T20:46:56Z,1,2020-02-15T06:59:39Z +4513,2005-07-08T02:39:59Z,3704,182,2005-07-14T07:48:59Z,2,2020-02-15T06:59:39Z +4514,2005-07-08T02:41:25Z,1938,576,2005-07-15T06:17:25Z,1,2020-02-15T06:59:39Z +4515,2005-07-08T02:42:03Z,1998,229,2005-07-10T07:22:03Z,2,2020-02-15T06:59:39Z +4516,2005-07-08T02:43:41Z,2314,497,2005-07-14T02:20:41Z,1,2020-02-15T06:59:39Z +4517,2005-07-08T02:45:19Z,453,16,2005-07-12T03:04:19Z,2,2020-02-15T06:59:39Z +4518,2005-07-08T02:48:36Z,697,592,2005-07-13T04:53:36Z,2,2020-02-15T06:59:39Z +4519,2005-07-08T02:51:23Z,4425,459,2005-07-12T06:52:23Z,2,2020-02-15T06:59:39Z +4520,2005-07-08T02:53:46Z,3505,104,2005-07-08T22:27:46Z,2,2020-02-15T06:59:39Z +4521,2005-07-08T02:57:56Z,2652,327,2005-07-11T22:49:56Z,2,2020-02-15T06:59:39Z +4522,2005-07-08T03:03:12Z,4114,307,2005-07-10T04:49:12Z,1,2020-02-15T06:59:39Z +4523,2005-07-08T03:06:59Z,2785,347,2005-07-17T04:44:59Z,1,2020-02-15T06:59:39Z +4524,2005-07-08T03:10:48Z,2218,185,2005-07-09T07:49:48Z,2,2020-02-15T06:59:39Z +4525,2005-07-08T03:15:00Z,3631,458,2005-07-11T04:53:00Z,1,2020-02-15T06:59:39Z +4526,2005-07-08T03:17:05Z,1443,1,2005-07-14T01:19:05Z,2,2020-02-15T06:59:39Z +4527,2005-07-08T03:20:10Z,2263,468,2005-07-15T02:21:10Z,1,2020-02-15T06:59:39Z +4528,2005-07-08T03:24:54Z,3209,439,2005-07-09T03:50:54Z,2,2020-02-15T06:59:39Z +4529,2005-07-08T03:26:20Z,1361,104,2005-07-16T05:04:20Z,1,2020-02-15T06:59:39Z +4530,2005-07-08T03:27:05Z,3775,79,2005-07-11T07:44:05Z,1,2020-02-15T06:59:39Z +4531,2005-07-08T03:27:59Z,3108,142,2005-07-10T22:48:59Z,1,2020-02-15T06:59:39Z +4532,2005-07-08T03:30:39Z,4012,481,2005-07-11T21:49:39Z,1,2020-02-15T06:59:39Z +4533,2005-07-08T03:32:01Z,1105,474,2005-07-10T21:57:01Z,1,2020-02-15T06:59:39Z +4534,2005-07-08T03:36:55Z,2518,132,2005-07-16T00:49:55Z,2,2020-02-15T06:59:39Z +4535,2005-07-08T03:40:46Z,561,29,2005-07-13T06:53:46Z,2,2020-02-15T06:59:39Z +4536,2005-07-08T03:43:22Z,220,26,2005-07-15T08:44:22Z,1,2020-02-15T06:59:39Z +4537,2005-07-08T03:48:40Z,1305,448,2005-07-13T22:54:40Z,2,2020-02-15T06:59:39Z +4538,2005-07-08T03:56:29Z,3638,451,2005-07-15T08:24:29Z,1,2020-02-15T06:59:39Z +4539,2005-07-08T04:01:02Z,2450,264,2005-07-14T22:32:02Z,1,2020-02-15T06:59:39Z +4540,2005-07-08T04:03:28Z,4160,309,2005-07-13T03:31:28Z,2,2020-02-15T06:59:39Z +4541,2005-07-08T04:04:19Z,1976,248,2005-07-13T07:27:19Z,2,2020-02-15T06:59:39Z +4542,2005-07-08T04:06:30Z,4169,293,2005-07-16T06:54:30Z,2,2020-02-15T06:59:39Z +4543,2005-07-08T04:06:55Z,913,41,2005-07-12T23:17:55Z,2,2020-02-15T06:59:39Z +4544,2005-07-08T04:11:04Z,4471,351,2005-07-09T22:48:04Z,1,2020-02-15T06:59:39Z +4545,2005-07-08T04:17:47Z,3658,271,2005-07-13T07:19:47Z,1,2020-02-15T06:59:39Z +4546,2005-07-08T04:18:36Z,4507,393,2005-07-17T08:23:36Z,1,2020-02-15T06:59:39Z +4547,2005-07-08T04:20:19Z,3386,255,2005-07-09T00:28:19Z,2,2020-02-15T06:59:39Z +4548,2005-07-08T04:21:54Z,765,164,2005-07-14T23:16:54Z,2,2020-02-15T06:59:39Z +4549,2005-07-08T04:25:03Z,2797,98,2005-07-10T09:01:03Z,2,2020-02-15T06:59:39Z +4550,2005-07-08T04:34:00Z,615,409,2005-07-14T23:45:00Z,2,2020-02-15T06:59:39Z +4551,2005-07-08T04:36:21Z,1160,494,2005-07-17T10:23:21Z,2,2020-02-15T06:59:39Z +4552,2005-07-08T04:36:35Z,2549,313,2005-07-14T05:48:35Z,2,2020-02-15T06:59:39Z +4553,2005-07-08T04:43:41Z,2114,529,2005-07-09T23:55:41Z,1,2020-02-15T06:59:39Z +4554,2005-07-08T04:48:03Z,3878,376,2005-07-16T04:34:03Z,1,2020-02-15T06:59:39Z +4555,2005-07-08T04:48:36Z,1757,68,2005-07-17T07:57:36Z,1,2020-02-15T06:59:39Z +4556,2005-07-08T04:48:41Z,4099,348,2005-07-16T08:51:41Z,2,2020-02-15T06:59:39Z +4557,2005-07-08T04:49:15Z,1191,132,2005-07-14T00:00:15Z,2,2020-02-15T06:59:39Z +4558,2005-07-08T04:55:26Z,828,448,2005-07-09T10:53:26Z,2,2020-02-15T06:59:39Z +4559,2005-07-08T04:56:49Z,1911,424,2005-07-12T08:56:49Z,2,2020-02-15T06:59:39Z +4560,2005-07-08T04:58:48Z,303,36,2005-07-10T04:27:48Z,1,2020-02-15T06:59:39Z +4561,2005-07-08T05:02:43Z,1643,500,2005-07-11T04:56:43Z,1,2020-02-15T06:59:39Z +4562,2005-07-08T05:08:32Z,963,454,2005-07-12T08:16:32Z,2,2020-02-15T06:59:39Z +4563,2005-07-08T05:08:55Z,287,522,2005-07-16T05:44:55Z,2,2020-02-15T06:59:39Z +4564,2005-07-08T05:09:38Z,2494,519,2005-07-11T05:37:38Z,2,2020-02-15T06:59:39Z +4565,2005-07-08T05:12:28Z,3755,563,2005-07-17T03:38:28Z,2,2020-02-15T06:59:39Z +4566,2005-07-08T05:18:50Z,4302,133,2005-07-15T01:53:50Z,1,2020-02-15T06:59:39Z +4567,2005-07-08T05:20:04Z,4073,202,2005-07-10T01:35:04Z,1,2020-02-15T06:59:39Z +4568,2005-07-08T05:23:59Z,2626,122,2005-07-09T06:07:59Z,1,2020-02-15T06:59:39Z +4569,2005-07-08T05:30:51Z,2925,366,2005-07-14T04:14:51Z,2,2020-02-15T06:59:39Z +4570,2005-07-08T05:33:59Z,2612,503,2005-07-14T09:27:59Z,1,2020-02-15T06:59:39Z +4571,2005-07-08T05:34:41Z,2416,86,2005-07-17T02:15:41Z,1,2020-02-15T06:59:39Z +4572,2005-07-08T05:36:59Z,1324,323,2005-07-12T04:46:59Z,2,2020-02-15T06:59:39Z +4573,2005-07-08T05:38:46Z,2478,400,2005-07-15T07:07:46Z,1,2020-02-15T06:59:39Z +4574,2005-07-08T05:39:42Z,536,257,2005-07-08T23:44:42Z,2,2020-02-15T06:59:39Z +4575,2005-07-08T05:49:14Z,231,41,2005-07-11T04:08:14Z,2,2020-02-15T06:59:39Z +4576,2005-07-08T05:51:19Z,1920,567,2005-07-10T11:36:19Z,1,2020-02-15T06:59:39Z +4577,2005-07-08T05:59:00Z,1688,442,2005-07-16T06:23:00Z,2,2020-02-15T06:59:39Z +4578,2005-07-08T06:00:17Z,1533,497,2005-07-10T06:58:17Z,2,2020-02-15T06:59:39Z +4579,2005-07-08T06:01:56Z,4290,585,2005-07-13T11:24:56Z,1,2020-02-15T06:59:39Z +4580,2005-07-08T06:04:23Z,3512,199,2005-07-15T05:42:23Z,2,2020-02-15T06:59:39Z +4581,2005-07-08T06:05:06Z,887,591,2005-07-16T00:54:06Z,1,2020-02-15T06:59:39Z +4582,2005-07-08T06:09:09Z,688,274,2005-07-14T02:23:09Z,1,2020-02-15T06:59:39Z +4583,2005-07-08T06:09:44Z,4151,365,2005-07-12T03:44:44Z,1,2020-02-15T06:59:39Z +4584,2005-07-08T06:11:02Z,2322,368,2005-07-11T05:14:02Z,1,2020-02-15T06:59:39Z +4585,2005-07-08T06:11:58Z,1622,143,2005-07-17T01:58:58Z,1,2020-02-15T06:59:39Z +4586,2005-07-08T06:12:33Z,1374,461,2005-07-13T11:06:33Z,2,2020-02-15T06:59:39Z +4587,2005-07-08T06:16:26Z,3502,63,2005-07-13T00:59:26Z,1,2020-02-15T06:59:39Z +4588,2005-07-08T06:18:01Z,3629,198,2005-07-10T08:59:01Z,1,2020-02-15T06:59:39Z +4589,2005-07-08T06:26:04Z,1192,99,2005-07-09T10:31:04Z,2,2020-02-15T06:59:39Z +4590,2005-07-08T06:27:48Z,4233,580,2005-07-14T07:46:48Z,1,2020-02-15T06:59:39Z +4591,2005-07-08T06:29:43Z,2276,182,2005-07-17T07:20:43Z,1,2020-02-15T06:59:39Z +4592,2005-07-08T06:31:28Z,2141,235,2005-07-10T06:08:28Z,2,2020-02-15T06:59:39Z +4593,2005-07-08T06:38:12Z,2897,528,2005-07-16T10:48:12Z,2,2020-02-15T06:59:39Z +4594,2005-07-08T06:40:06Z,26,506,2005-07-16T05:51:06Z,2,2020-02-15T06:59:39Z +4595,2005-07-08T06:40:25Z,760,336,2005-07-14T08:54:25Z,1,2020-02-15T06:59:39Z +4596,2005-07-08T06:41:25Z,2280,306,2005-07-14T01:36:25Z,1,2020-02-15T06:59:39Z +4597,2005-07-08T06:43:42Z,3767,545,2005-07-13T01:32:42Z,1,2020-02-15T06:59:39Z +4598,2005-07-08T06:46:26Z,258,82,2005-07-16T01:21:26Z,1,2020-02-15T06:59:39Z +4599,2005-07-08T06:48:26Z,2098,356,2005-07-11T07:06:26Z,1,2020-02-15T06:59:39Z +4600,2005-07-08T06:48:37Z,1526,457,2005-07-15T10:11:37Z,1,2020-02-15T06:59:39Z +4601,2005-07-08T06:49:10Z,3184,572,2005-07-09T07:43:10Z,1,2020-02-15T06:59:39Z +4602,2005-07-08T06:52:40Z,3616,129,2005-07-10T06:30:40Z,1,2020-02-15T06:59:39Z +4603,2005-07-08T06:57:07Z,755,334,2005-07-17T04:32:07Z,1,2020-02-15T06:59:39Z +4604,2005-07-08T06:58:43Z,4230,402,2005-07-14T06:41:43Z,1,2020-02-15T06:59:39Z +4605,2005-07-08T07:00:14Z,1139,523,2005-07-16T08:38:14Z,1,2020-02-15T06:59:39Z +4606,2005-07-08T07:05:50Z,1946,502,2005-07-16T09:11:50Z,2,2020-02-15T06:59:39Z +4607,2005-07-08T07:15:14Z,1193,281,2005-07-11T01:32:14Z,1,2020-02-15T06:59:39Z +4608,2005-07-08T07:19:11Z,758,11,2005-07-11T01:37:11Z,1,2020-02-15T06:59:39Z +4609,2005-07-08T07:22:29Z,3711,573,2005-07-10T08:06:29Z,1,2020-02-15T06:59:39Z +4610,2005-07-08T07:28:05Z,1279,265,2005-07-14T02:10:05Z,1,2020-02-15T06:59:39Z +4611,2005-07-08T07:33:56Z,3486,1,2005-07-12T13:25:56Z,2,2020-02-15T06:59:39Z +4612,2005-07-08T07:40:44Z,82,371,2005-07-12T03:48:44Z,1,2020-02-15T06:59:39Z +4613,2005-07-08T07:44:49Z,476,581,2005-07-09T04:47:49Z,1,2020-02-15T06:59:39Z +4614,2005-07-08T07:45:17Z,2579,71,2005-07-12T02:10:17Z,2,2020-02-15T06:59:39Z +4615,2005-07-08T07:46:53Z,1200,404,2005-07-16T12:43:53Z,2,2020-02-15T06:59:39Z +4616,2005-07-08T07:48:12Z,2580,280,2005-07-10T08:13:12Z,2,2020-02-15T06:59:39Z +4617,2005-07-08T07:55:08Z,3784,475,2005-07-17T02:49:08Z,2,2020-02-15T06:59:39Z +4618,2005-07-08T08:00:20Z,3691,179,2005-07-14T05:59:20Z,1,2020-02-15T06:59:39Z +4619,2005-07-08T08:01:09Z,2127,579,2005-07-16T05:52:09Z,2,2020-02-15T06:59:39Z +4620,2005-07-08T08:01:44Z,3467,210,2005-07-16T07:43:44Z,2,2020-02-15T06:59:39Z +4621,2005-07-08T08:02:18Z,1594,297,2005-07-12T08:53:18Z,2,2020-02-15T06:59:39Z +4622,2005-07-08T08:02:42Z,2710,289,2005-07-10T07:46:42Z,2,2020-02-15T06:59:39Z +4623,2005-07-08T08:03:22Z,4171,593,2005-07-12T09:11:22Z,2,2020-02-15T06:59:39Z +4624,2005-07-08T08:12:17Z,1548,341,2005-07-15T12:24:17Z,2,2020-02-15T06:59:39Z +4625,2005-07-08T08:14:26Z,318,473,2005-07-09T03:45:26Z,1,2020-02-15T06:59:39Z +4626,2005-07-08T08:18:21Z,37,268,2005-07-10T11:36:21Z,1,2020-02-15T06:59:39Z +4627,2005-07-08T08:24:39Z,2383,78,2005-07-13T11:04:39Z,2,2020-02-15T06:59:39Z +4628,2005-07-08T08:25:52Z,1888,540,2005-07-10T11:22:52Z,1,2020-02-15T06:59:39Z +4629,2005-07-08T08:31:26Z,228,563,2005-07-17T12:07:26Z,1,2020-02-15T06:59:39Z +4630,2005-07-08T08:33:38Z,3446,319,2005-07-09T13:09:38Z,2,2020-02-15T06:59:39Z +4631,2005-07-08T08:38:22Z,470,59,2005-07-11T03:33:22Z,2,2020-02-15T06:59:39Z +4632,2005-07-08T08:38:57Z,4330,393,2005-07-15T09:33:57Z,1,2020-02-15T06:59:39Z +4633,2005-07-08T08:39:39Z,3178,348,2005-07-15T10:23:39Z,1,2020-02-15T06:59:39Z +4634,2005-07-08T08:40:02Z,811,275,2005-07-12T04:45:02Z,2,2020-02-15T06:59:39Z +4635,2005-07-08T08:42:40Z,2434,65,2005-07-14T10:31:40Z,1,2020-02-15T06:59:39Z +4636,2005-07-08T08:44:32Z,1858,228,2005-07-10T08:59:32Z,2,2020-02-15T06:59:39Z +4637,2005-07-08T08:49:54Z,1917,263,2005-07-11T13:12:54Z,2,2020-02-15T06:59:39Z +4638,2005-07-08T08:57:20Z,2240,305,2005-07-10T05:08:20Z,2,2020-02-15T06:59:39Z +4639,2005-07-08T08:57:21Z,2459,75,2005-07-14T11:22:21Z,2,2020-02-15T06:59:39Z +4640,2005-07-08T08:59:34Z,1147,506,2005-07-15T03:31:34Z,1,2020-02-15T06:59:39Z +4641,2005-07-08T09:09:46Z,2436,26,2005-07-17T03:54:46Z,2,2020-02-15T06:59:39Z +4642,2005-07-08T09:13:28Z,1962,30,2005-07-10T06:17:28Z,2,2020-02-15T06:59:39Z +4643,2005-07-08T09:13:56Z,239,436,2005-07-10T12:09:56Z,2,2020-02-15T06:59:39Z +4644,2005-07-08T09:14:29Z,3239,38,2005-07-10T07:20:29Z,2,2020-02-15T06:59:39Z +4645,2005-07-08T09:20:09Z,687,400,2005-07-09T06:07:09Z,2,2020-02-15T06:59:39Z +4646,2005-07-08T09:23:26Z,618,362,2005-07-16T04:03:26Z,1,2020-02-15T06:59:39Z +4647,2005-07-08T09:27:36Z,674,312,2005-07-16T14:56:36Z,2,2020-02-15T06:59:39Z +4648,2005-07-08T09:31:27Z,3490,444,2005-07-13T03:55:27Z,2,2020-02-15T06:59:39Z +4649,2005-07-08T09:32:05Z,1116,221,2005-07-15T08:37:05Z,2,2020-02-15T06:59:39Z +4650,2005-07-08T09:32:08Z,2850,108,2005-07-15T15:20:08Z,1,2020-02-15T06:59:39Z +4651,2005-07-08T09:39:39Z,4064,557,2005-07-09T12:14:39Z,2,2020-02-15T06:59:39Z +4652,2005-07-08T09:47:51Z,4198,127,2005-07-16T04:09:51Z,2,2020-02-15T06:59:39Z +4653,2005-07-08T09:48:01Z,2511,404,2005-07-17T05:18:01Z,1,2020-02-15T06:59:39Z +4654,2005-07-08T09:48:03Z,4210,434,2005-07-17T13:17:03Z,1,2020-02-15T06:59:39Z +4655,2005-07-08T09:49:22Z,4078,213,2005-07-15T13:08:22Z,1,2020-02-15T06:59:39Z +4656,2005-07-08T09:50:10Z,839,141,2005-07-13T15:00:10Z,1,2020-02-15T06:59:39Z +4657,2005-07-08T09:51:02Z,1002,54,2005-07-09T09:29:02Z,2,2020-02-15T06:59:39Z +4658,2005-07-08T09:51:11Z,3131,166,2005-07-10T12:30:11Z,2,2020-02-15T06:59:39Z +4659,2005-07-08T09:53:28Z,4389,425,2005-07-14T14:56:28Z,2,2020-02-15T06:59:39Z +4660,2005-07-08T09:54:47Z,1208,139,2005-07-11T15:19:47Z,2,2020-02-15T06:59:39Z +4661,2005-07-08T09:55:06Z,2641,518,2005-07-11T08:26:06Z,1,2020-02-15T06:59:39Z +4662,2005-07-08T09:58:54Z,1370,553,2005-07-10T12:51:54Z,1,2020-02-15T06:59:39Z +4663,2005-07-08T09:59:18Z,2959,139,2005-07-10T11:25:18Z,1,2020-02-15T06:59:39Z +4664,2005-07-08T10:01:28Z,1318,546,2005-07-12T10:37:28Z,2,2020-02-15T06:59:39Z +4665,2005-07-08T10:04:24Z,575,106,2005-07-14T15:13:24Z,1,2020-02-15T06:59:39Z +4666,2005-07-08T10:05:02Z,4576,120,2005-07-16T07:28:02Z,1,2020-02-15T06:59:39Z +4667,2005-07-08T10:06:26Z,3348,485,2005-07-14T04:48:26Z,1,2020-02-15T06:59:39Z +4668,2005-07-08T10:11:45Z,3971,481,2005-07-17T13:01:45Z,2,2020-02-15T06:59:39Z +4669,2005-07-08T10:13:08Z,3494,581,2005-07-16T07:52:08Z,1,2020-02-15T06:59:39Z +4670,2005-07-08T10:14:18Z,3317,153,2005-07-16T15:10:18Z,2,2020-02-15T06:59:39Z +4671,2005-07-08T10:15:32Z,2139,55,2005-07-14T08:19:32Z,2,2020-02-15T06:59:39Z +4672,2005-07-08T10:15:38Z,1922,18,2005-07-16T05:06:38Z,1,2020-02-15T06:59:39Z +4673,2005-07-08T10:16:00Z,2792,91,2005-07-17T10:03:00Z,2,2020-02-15T06:59:39Z +4674,2005-07-08T10:19:28Z,1617,329,2005-07-12T12:54:28Z,2,2020-02-15T06:59:39Z +4675,2005-07-08T10:24:22Z,1309,380,2005-07-14T11:09:22Z,1,2020-02-15T06:59:39Z +4676,2005-07-08T10:26:02Z,2590,302,2005-07-10T13:38:02Z,2,2020-02-15T06:59:39Z +4677,2005-07-08T10:30:36Z,1226,258,2005-07-14T12:40:36Z,1,2020-02-15T06:59:39Z +4678,2005-07-08T10:30:40Z,241,219,2005-07-13T11:08:40Z,1,2020-02-15T06:59:39Z +4679,2005-07-08T10:33:14Z,3610,423,2005-07-15T14:30:14Z,2,2020-02-15T06:59:39Z +4680,2005-07-08T10:35:28Z,4043,227,2005-07-14T08:42:28Z,1,2020-02-15T06:59:39Z +4681,2005-07-08T10:36:03Z,1025,133,2005-07-16T09:21:03Z,2,2020-02-15T06:59:39Z +4682,2005-07-08T10:38:27Z,873,263,2005-07-11T06:29:27Z,2,2020-02-15T06:59:39Z +4683,2005-07-08T10:38:28Z,3464,283,2005-07-09T12:07:28Z,1,2020-02-15T06:59:39Z +4684,2005-07-08T10:41:06Z,503,585,2005-07-17T10:35:06Z,1,2020-02-15T06:59:39Z +4685,2005-07-08T10:45:13Z,602,590,2005-07-12T08:29:13Z,1,2020-02-15T06:59:39Z +4686,2005-07-08T10:53:39Z,1398,234,2005-07-10T05:34:39Z,2,2020-02-15T06:59:39Z +4687,2005-07-08T10:54:19Z,1156,169,2005-07-10T08:00:19Z,2,2020-02-15T06:59:39Z +4688,2005-07-08T11:03:29Z,3574,80,2005-07-17T15:41:29Z,2,2020-02-15T06:59:39Z +4689,2005-07-08T11:03:47Z,2519,364,2005-07-16T06:07:47Z,2,2020-02-15T06:59:39Z +4690,2005-07-08T11:04:02Z,3304,64,2005-07-15T10:27:02Z,2,2020-02-15T06:59:39Z +4691,2005-07-08T11:04:53Z,596,126,2005-07-09T07:48:53Z,1,2020-02-15T06:59:39Z +4692,2005-07-08T11:07:06Z,1490,288,2005-07-09T14:08:06Z,1,2020-02-15T06:59:39Z +4693,2005-07-08T11:07:36Z,1694,221,2005-07-14T08:40:36Z,1,2020-02-15T06:59:39Z +4694,2005-07-08T11:07:37Z,3637,229,2005-07-12T06:53:37Z,2,2020-02-15T06:59:39Z +4695,2005-07-08T11:07:59Z,805,39,2005-07-17T16:35:59Z,1,2020-02-15T06:59:39Z +4696,2005-07-08T11:12:27Z,1358,424,2005-07-14T05:41:27Z,1,2020-02-15T06:59:39Z +4697,2005-07-08T11:19:14Z,4143,224,2005-07-12T07:14:14Z,2,2020-02-15T06:59:39Z +4698,2005-07-08T11:19:31Z,3963,570,2005-07-13T13:45:31Z,2,2020-02-15T06:59:39Z +4699,2005-07-08T11:36:56Z,2462,348,2005-07-14T11:35:56Z,2,2020-02-15T06:59:39Z +4700,2005-07-08T11:37:21Z,3889,317,2005-07-12T15:41:21Z,1,2020-02-15T06:59:39Z +4701,2005-07-08T11:38:48Z,3012,522,2005-07-13T15:59:48Z,2,2020-02-15T06:59:39Z +4702,2005-07-08T11:41:36Z,2593,56,2005-07-10T06:55:36Z,1,2020-02-15T06:59:39Z +4703,2005-07-08T11:44:56Z,2859,544,2005-07-13T09:17:56Z,1,2020-02-15T06:59:39Z +4704,2005-07-08T11:45:35Z,2291,28,2005-07-10T09:46:35Z,1,2020-02-15T06:59:39Z +4705,2005-07-08T11:50:38Z,3709,85,2005-07-12T15:58:38Z,2,2020-02-15T06:59:39Z +4706,2005-07-08T11:51:41Z,2512,380,2005-07-17T12:58:41Z,1,2020-02-15T06:59:39Z +4707,2005-07-08T11:57:28Z,52,286,2005-07-10T17:47:28Z,1,2020-02-15T06:59:39Z +4708,2005-07-08T11:59:19Z,3249,212,2005-07-17T07:11:19Z,2,2020-02-15T06:59:39Z +4709,2005-07-08T12:04:34Z,3964,124,2005-07-15T06:48:34Z,1,2020-02-15T06:59:39Z +4710,2005-07-08T12:04:53Z,248,590,2005-07-13T11:28:53Z,2,2020-02-15T06:59:39Z +4711,2005-07-08T12:06:58Z,2327,563,2005-07-12T08:37:58Z,1,2020-02-15T06:59:39Z +4712,2005-07-08T12:10:50Z,2371,39,2005-07-17T14:54:50Z,2,2020-02-15T06:59:39Z +4713,2005-07-08T12:12:33Z,1399,207,2005-07-16T17:13:33Z,1,2020-02-15T06:59:39Z +4714,2005-07-08T12:12:48Z,1932,385,2005-07-17T08:43:48Z,2,2020-02-15T06:59:39Z +4715,2005-07-08T12:15:37Z,4010,276,2005-07-10T10:37:37Z,2,2020-02-15T06:59:39Z +4716,2005-07-08T12:18:51Z,1923,391,2005-07-11T11:06:51Z,2,2020-02-15T06:59:39Z +4717,2005-07-08T12:22:43Z,1491,453,2005-07-11T10:24:43Z,2,2020-02-15T06:59:39Z +4718,2005-07-08T12:32:08Z,1653,535,2005-07-17T17:34:08Z,2,2020-02-15T06:59:39Z +4719,2005-07-08T12:33:00Z,1315,556,2005-07-15T12:30:00Z,1,2020-02-15T06:59:39Z +4720,2005-07-08T12:34:34Z,2669,452,2005-07-09T10:28:34Z,1,2020-02-15T06:59:39Z +4721,2005-07-08T12:39:31Z,3105,234,2005-07-15T18:07:31Z,1,2020-02-15T06:59:39Z +4722,2005-07-08T12:42:27Z,3738,590,2005-07-09T09:14:27Z,2,2020-02-15T06:59:39Z +4723,2005-07-08T12:44:59Z,965,44,2005-07-17T07:22:59Z,2,2020-02-15T06:59:39Z +4724,2005-07-08T12:46:30Z,3375,18,2005-07-14T12:39:30Z,1,2020-02-15T06:59:39Z +4725,2005-07-08T12:47:11Z,2058,3,2005-07-15T09:08:11Z,2,2020-02-15T06:59:39Z +4726,2005-07-08T12:50:54Z,4369,144,2005-07-17T07:09:54Z,2,2020-02-15T06:59:39Z +4727,2005-07-08T12:54:15Z,1251,39,2005-07-17T14:32:15Z,2,2020-02-15T06:59:39Z +4728,2005-07-08T12:59:01Z,3687,462,2005-07-13T13:00:01Z,1,2020-02-15T06:59:39Z +4729,2005-07-08T12:59:40Z,1429,205,2005-07-10T13:35:40Z,2,2020-02-15T06:59:39Z +4730,2005-07-08T12:59:49Z,1619,126,2005-07-14T16:15:49Z,2,2020-02-15T06:59:39Z +4731,2005-07-08T13:08:18Z,4124,241,2005-07-09T13:16:18Z,2,2020-02-15T06:59:39Z +4732,2005-07-08T13:09:45Z,308,562,2005-07-14T10:10:45Z,1,2020-02-15T06:59:39Z +4733,2005-07-08T13:12:07Z,2230,93,2005-07-13T07:34:07Z,1,2020-02-15T06:59:39Z +4734,2005-07-08T13:12:12Z,1928,546,2005-07-10T09:01:12Z,2,2020-02-15T06:59:39Z +4735,2005-07-08T13:12:27Z,4324,381,2005-07-13T10:06:27Z,2,2020-02-15T06:59:39Z +4736,2005-07-08T13:22:55Z,3009,79,2005-07-17T07:27:55Z,1,2020-02-15T06:59:39Z +4737,2005-07-08T13:23:53Z,4286,116,2005-07-12T18:49:53Z,1,2020-02-15T06:59:39Z +4738,2005-07-08T13:24:58Z,2021,31,2005-07-17T17:44:58Z,2,2020-02-15T06:59:39Z +4739,2005-07-08T13:25:57Z,140,197,2005-07-11T17:36:57Z,1,2020-02-15T06:59:39Z +4740,2005-07-08T13:30:35Z,2559,379,2005-07-14T18:43:35Z,1,2020-02-15T06:59:39Z +4741,2005-07-08T13:31:23Z,516,260,2005-07-17T12:02:23Z,2,2020-02-15T06:59:39Z +4742,2005-07-08T13:35:23Z,3022,340,2005-07-11T10:24:23Z,2,2020-02-15T06:59:39Z +4743,2005-07-08T13:42:36Z,80,535,2005-07-11T18:54:36Z,2,2020-02-15T06:59:39Z +4744,2005-07-08T13:43:57Z,2948,507,2005-07-12T09:21:57Z,2,2020-02-15T06:59:39Z +4745,2005-07-08T13:45:09Z,1351,354,2005-07-12T18:54:09Z,1,2020-02-15T06:59:39Z +4746,2005-07-08T13:47:55Z,173,148,2005-07-11T09:06:55Z,2,2020-02-15T06:59:39Z +4747,2005-07-08T13:53:01Z,3942,383,2005-07-12T17:10:01Z,2,2020-02-15T06:59:39Z +4748,2005-07-08T13:59:38Z,4279,9,2005-07-15T16:51:38Z,1,2020-02-15T06:59:39Z +4749,2005-07-08T14:05:58Z,1190,236,2005-07-10T18:35:58Z,2,2020-02-15T06:59:39Z +4750,2005-07-08T14:07:03Z,3383,198,2005-07-13T18:05:03Z,1,2020-02-15T06:59:40Z +4751,2005-07-08T14:07:52Z,3469,436,2005-07-13T10:37:52Z,2,2020-02-15T06:59:40Z +4752,2005-07-08T14:15:20Z,3250,512,2005-07-12T13:22:20Z,1,2020-02-15T06:59:40Z +4753,2005-07-08T14:18:41Z,1642,391,2005-07-09T10:00:41Z,2,2020-02-15T06:59:40Z +4754,2005-07-08T14:20:01Z,3177,108,2005-07-11T11:50:01Z,1,2020-02-15T06:59:40Z +4755,2005-07-08T14:23:41Z,661,378,2005-07-10T19:35:41Z,1,2020-02-15T06:59:40Z +4756,2005-07-08T14:24:00Z,3068,351,2005-07-12T16:16:00Z,1,2020-02-15T06:59:40Z +4757,2005-07-08T14:36:51Z,1278,504,2005-07-12T15:28:51Z,1,2020-02-15T06:59:40Z +4758,2005-07-08T14:38:02Z,3698,288,2005-07-13T12:09:02Z,2,2020-02-15T06:59:40Z +4759,2005-07-08T14:39:22Z,3999,284,2005-07-17T15:02:22Z,2,2020-02-15T06:59:40Z +4760,2005-07-08T14:48:07Z,3718,177,2005-07-10T12:41:07Z,2,2020-02-15T06:59:40Z +4761,2005-07-08T14:51:45Z,3556,351,2005-07-14T20:28:45Z,1,2020-02-15T06:59:40Z +4762,2005-07-08T14:54:42Z,390,36,2005-07-12T18:08:42Z,1,2020-02-15T06:59:40Z +4763,2005-07-08T14:57:32Z,899,465,2005-07-15T10:00:32Z,2,2020-02-15T06:59:40Z +4764,2005-07-08T15:01:25Z,1188,89,2005-07-17T15:16:25Z,1,2020-02-15T06:59:40Z +4765,2005-07-08T15:08:45Z,469,437,2005-07-13T10:44:45Z,1,2020-02-15T06:59:40Z +4766,2005-07-08T15:16:04Z,1057,149,2005-07-15T11:04:04Z,2,2020-02-15T06:59:40Z +4767,2005-07-08T15:18:53Z,3744,350,2005-07-13T15:48:53Z,1,2020-02-15T06:59:40Z +4768,2005-07-08T15:28:20Z,2787,482,2005-07-09T11:46:20Z,1,2020-02-15T06:59:40Z +4769,2005-07-08T15:29:16Z,3462,501,2005-07-09T18:42:16Z,2,2020-02-15T06:59:40Z +4770,2005-07-08T15:29:46Z,2406,573,2005-07-14T13:31:46Z,1,2020-02-15T06:59:40Z +4771,2005-07-08T15:33:32Z,1060,32,2005-07-10T12:38:32Z,1,2020-02-15T06:59:40Z +4772,2005-07-08T15:41:11Z,2156,486,2005-07-17T15:25:11Z,1,2020-02-15T06:59:40Z +4773,2005-07-08T15:41:39Z,3025,519,2005-07-13T18:16:39Z,1,2020-02-15T06:59:40Z +4774,2005-07-08T15:42:28Z,673,489,2005-07-16T18:29:28Z,2,2020-02-15T06:59:40Z +4775,2005-07-08T15:44:05Z,4277,595,2005-07-11T20:39:05Z,2,2020-02-15T06:59:40Z +4776,2005-07-08T15:44:20Z,2598,563,2005-07-17T10:50:20Z,2,2020-02-15T06:59:40Z +4777,2005-07-08T15:48:34Z,449,102,2005-07-16T15:25:34Z,1,2020-02-15T06:59:40Z +4778,2005-07-08T15:51:51Z,611,78,2005-07-12T16:58:51Z,2,2020-02-15T06:59:40Z +4779,2005-07-08T15:53:41Z,1321,338,2005-07-15T20:30:41Z,1,2020-02-15T06:59:40Z +4780,2005-07-08T16:06:51Z,2740,115,2005-07-13T18:34:51Z,1,2020-02-15T06:59:40Z +4781,2005-07-08T16:06:55Z,1818,593,2005-07-16T11:22:55Z,2,2020-02-15T06:59:40Z +4782,2005-07-08T16:08:51Z,445,436,2005-07-17T17:56:51Z,1,2020-02-15T06:59:40Z +4783,2005-07-08T16:09:24Z,3952,214,2005-07-16T21:53:24Z,2,2020-02-15T06:59:40Z +4784,2005-07-08T16:09:56Z,549,182,2005-07-09T20:35:56Z,1,2020-02-15T06:59:40Z +4785,2005-07-08T16:10:19Z,58,474,2005-07-11T18:52:19Z,1,2020-02-15T06:59:40Z +4786,2005-07-08T16:13:05Z,2724,294,2005-07-16T15:29:05Z,1,2020-02-15T06:59:40Z +4787,2005-07-08T16:16:04Z,3929,7,2005-07-14T18:02:04Z,2,2020-02-15T06:59:40Z +4788,2005-07-08T16:17:35Z,691,533,2005-07-11T11:56:35Z,2,2020-02-15T06:59:40Z +4789,2005-07-08T16:22:01Z,20,73,2005-07-15T18:29:01Z,2,2020-02-15T06:59:40Z +4790,2005-07-08T16:25:27Z,100,500,2005-07-11T11:35:27Z,1,2020-02-15T06:59:40Z +4791,2005-07-08T16:27:24Z,2505,393,2005-07-14T21:50:24Z,2,2020-02-15T06:59:40Z +4792,2005-07-08T16:29:38Z,2132,147,2005-07-10T16:31:38Z,2,2020-02-15T06:59:40Z +4793,2005-07-08T16:30:01Z,3090,427,2005-07-15T17:56:01Z,1,2020-02-15T06:59:40Z +4794,2005-07-08T16:30:11Z,2497,451,2005-07-17T12:41:11Z,2,2020-02-15T06:59:40Z +4795,2005-07-08T16:32:54Z,3409,497,2005-07-09T14:15:54Z,1,2020-02-15T06:59:40Z +4796,2005-07-08T16:35:44Z,2484,9,2005-07-13T11:08:44Z,2,2020-02-15T06:59:40Z +4797,2005-07-08T16:39:05Z,1389,265,2005-07-09T11:41:05Z,1,2020-02-15T06:59:40Z +4798,2005-07-08T16:45:16Z,3874,212,2005-07-16T13:45:16Z,2,2020-02-15T06:59:40Z +4799,2005-07-08T16:49:27Z,4112,512,2005-07-12T19:58:27Z,2,2020-02-15T06:59:40Z +4800,2005-07-08T16:51:08Z,1940,99,2005-07-13T14:16:08Z,2,2020-02-15T06:59:40Z +4801,2005-07-08T16:51:36Z,761,431,2005-07-13T17:23:36Z,1,2020-02-15T06:59:40Z +4802,2005-07-08T16:55:17Z,22,562,2005-07-15T19:34:17Z,1,2020-02-15T06:59:40Z +4803,2005-07-08T16:56:34Z,1786,174,2005-07-14T20:16:34Z,1,2020-02-15T06:59:40Z +4804,2005-07-08T16:57:30Z,3756,269,2005-07-10T18:25:30Z,1,2020-02-15T06:59:40Z +4805,2005-07-08T16:59:12Z,377,453,2005-07-09T15:02:12Z,1,2020-02-15T06:59:40Z +4806,2005-07-08T17:01:02Z,214,506,2005-07-15T21:41:02Z,1,2020-02-15T06:59:40Z +4807,2005-07-08T17:01:48Z,4511,348,2005-07-16T22:33:48Z,2,2020-02-15T06:59:40Z +4808,2005-07-08T17:02:49Z,2544,563,2005-07-12T22:49:49Z,2,2020-02-15T06:59:40Z +4809,2005-07-08T17:03:22Z,4251,474,2005-07-17T22:39:22Z,1,2020-02-15T06:59:40Z +4810,2005-07-08T17:04:06Z,4056,209,2005-07-09T13:41:06Z,1,2020-02-15T06:59:40Z +4811,2005-07-08T17:04:24Z,4032,127,2005-07-12T16:41:24Z,2,2020-02-15T06:59:40Z +4812,2005-07-08T17:07:11Z,3281,304,2005-07-17T21:03:11Z,2,2020-02-15T06:59:40Z +4813,2005-07-08T17:09:56Z,2752,439,2005-07-09T22:29:56Z,1,2020-02-15T06:59:40Z +4814,2005-07-08T17:11:09Z,3497,244,2005-07-17T12:43:09Z,2,2020-02-15T06:59:40Z +4815,2005-07-08T17:12:51Z,840,581,2005-07-17T13:14:51Z,1,2020-02-15T06:59:40Z +4816,2005-07-08T17:14:14Z,2700,207,2005-07-11T15:03:14Z,1,2020-02-15T06:59:40Z +4817,2005-07-08T17:17:31Z,1608,145,2005-07-09T22:32:31Z,2,2020-02-15T06:59:40Z +4818,2005-07-08T17:18:22Z,115,144,2005-07-14T14:40:22Z,1,2020-02-15T06:59:40Z +4819,2005-07-08T17:19:15Z,1342,64,2005-07-16T14:32:15Z,1,2020-02-15T06:59:40Z +4820,2005-07-08T17:25:23Z,2672,172,2005-07-17T20:32:23Z,2,2020-02-15T06:59:40Z +4821,2005-07-08T17:28:08Z,1690,172,2005-07-11T17:44:08Z,1,2020-02-15T06:59:40Z +4822,2005-07-08T17:28:47Z,3970,185,2005-07-14T13:06:47Z,1,2020-02-15T06:59:40Z +4823,2005-07-08T17:28:54Z,155,206,2005-07-11T23:10:54Z,1,2020-02-15T06:59:40Z +4824,2005-07-08T17:37:39Z,1855,225,2005-07-16T18:27:39Z,1,2020-02-15T06:59:40Z +4825,2005-07-08T17:43:01Z,2419,563,2005-07-11T20:58:01Z,1,2020-02-15T06:59:40Z +4826,2005-07-08T17:44:25Z,911,180,2005-07-16T20:14:25Z,2,2020-02-15T06:59:40Z +4827,2005-07-08T17:46:30Z,4455,110,2005-07-11T14:12:30Z,2,2020-02-15T06:59:40Z +4828,2005-07-08T17:52:29Z,1100,92,2005-07-11T14:35:29Z,1,2020-02-15T06:59:40Z +4829,2005-07-08T17:54:18Z,2661,133,2005-07-11T23:41:18Z,1,2020-02-15T06:59:40Z +4830,2005-07-08T17:56:23Z,1150,359,2005-07-17T21:40:23Z,2,2020-02-15T06:59:40Z +4831,2005-07-08T18:00:14Z,2739,243,2005-07-12T15:54:14Z,2,2020-02-15T06:59:40Z +4832,2005-07-08T18:07:05Z,1838,509,2005-07-10T19:37:05Z,2,2020-02-15T06:59:40Z +4833,2005-07-08T18:07:35Z,2921,581,2005-07-13T15:29:35Z,2,2020-02-15T06:59:40Z +4834,2005-07-08T18:07:45Z,1288,301,2005-07-14T15:27:45Z,1,2020-02-15T06:59:40Z +4835,2005-07-08T18:08:13Z,2499,95,2005-07-17T16:51:13Z,2,2020-02-15T06:59:40Z +4836,2005-07-08T18:09:08Z,2756,311,2005-07-15T20:19:08Z,1,2020-02-15T06:59:40Z +4837,2005-07-08T18:09:12Z,1944,149,2005-07-11T16:40:12Z,1,2020-02-15T06:59:40Z +4838,2005-07-08T18:11:00Z,3733,84,2005-07-17T12:57:00Z,2,2020-02-15T06:59:40Z +4839,2005-07-08T18:13:10Z,1810,556,2005-07-15T12:49:10Z,1,2020-02-15T06:59:40Z +4840,2005-07-08T18:18:16Z,1670,119,2005-07-16T14:59:16Z,1,2020-02-15T06:59:40Z +4841,2005-07-08T18:18:23Z,518,248,2005-07-11T16:51:23Z,2,2020-02-15T06:59:40Z +4842,2005-07-08T18:21:30Z,1438,160,2005-07-10T22:25:30Z,2,2020-02-15T06:59:40Z +4843,2005-07-08T18:27:28Z,3640,45,2005-07-15T00:26:28Z,2,2020-02-15T06:59:40Z +4844,2005-07-08T18:28:13Z,4057,237,2005-07-09T21:17:13Z,2,2020-02-15T06:59:40Z +4845,2005-07-08T18:28:20Z,2337,553,2005-07-09T14:38:20Z,2,2020-02-15T06:59:40Z +4846,2005-07-08T18:29:05Z,417,556,2005-07-10T22:33:05Z,2,2020-02-15T06:59:40Z +4847,2005-07-08T18:29:13Z,3397,544,2005-07-15T18:12:13Z,2,2020-02-15T06:59:40Z +4848,2005-07-08T18:30:16Z,2962,251,2005-07-12T19:53:16Z,2,2020-02-15T06:59:40Z +4849,2005-07-08T18:34:34Z,4323,146,2005-07-14T20:27:34Z,2,2020-02-15T06:59:40Z +4850,2005-07-08T18:39:31Z,3039,154,2005-07-13T00:18:31Z,2,2020-02-15T06:59:40Z +4851,2005-07-08T18:40:05Z,134,557,2005-07-12T21:46:05Z,1,2020-02-15T06:59:40Z +4852,2005-07-08T18:43:15Z,3545,418,2005-07-15T18:48:15Z,2,2020-02-15T06:59:40Z +4853,2005-07-08T18:43:18Z,1454,23,2005-07-12T14:28:18Z,2,2020-02-15T06:59:40Z +4854,2005-07-08T18:44:44Z,3644,487,2005-07-13T13:37:44Z,1,2020-02-15T06:59:40Z +4855,2005-07-08T18:45:50Z,1146,337,2005-07-11T18:23:50Z,2,2020-02-15T06:59:40Z +4856,2005-07-08T18:47:38Z,2441,7,2005-07-13T15:02:38Z,2,2020-02-15T06:59:40Z +4857,2005-07-08T18:52:07Z,2069,211,2005-07-11T22:06:07Z,1,2020-02-15T06:59:40Z +4858,2005-07-08T18:53:24Z,3424,447,2005-07-17T20:32:24Z,2,2020-02-15T06:59:40Z +4859,2005-07-08T18:54:04Z,1939,369,2005-07-13T13:04:04Z,1,2020-02-15T06:59:40Z +4860,2005-07-08T18:54:07Z,428,123,2005-07-17T15:09:07Z,2,2020-02-15T06:59:40Z +4861,2005-07-08T18:57:30Z,2984,455,2005-07-16T15:12:30Z,2,2020-02-15T06:59:40Z +4862,2005-07-08T19:02:46Z,293,291,2005-07-17T20:17:46Z,1,2020-02-15T06:59:40Z +4863,2005-07-08T19:03:15Z,1,431,2005-07-11T21:29:15Z,2,2020-02-15T06:59:40Z +4864,2005-07-08T19:05:34Z,2974,281,2005-07-17T15:05:34Z,2,2020-02-15T06:59:40Z +4865,2005-07-08T19:09:04Z,1614,418,2005-07-13T21:25:04Z,2,2020-02-15T06:59:40Z +4866,2005-07-08T19:09:59Z,4036,278,2005-07-15T00:51:59Z,2,2020-02-15T06:59:40Z +4867,2005-07-08T19:10:52Z,4090,593,2005-07-09T21:43:52Z,2,2020-02-15T06:59:40Z +4868,2005-07-08T19:13:50Z,1157,307,2005-07-14T20:59:50Z,2,2020-02-15T06:59:40Z +4869,2005-07-08T19:14:05Z,2860,376,2005-07-15T22:27:05Z,1,2020-02-15T06:59:40Z +4870,2005-07-08T19:14:45Z,3089,260,2005-07-12T18:58:45Z,2,2020-02-15T06:59:40Z +4871,2005-07-08T19:19:52Z,2509,210,2005-07-13T20:27:52Z,2,2020-02-15T06:59:40Z +4872,2005-07-08T19:23:16Z,1836,103,2005-07-10T14:17:16Z,2,2020-02-15T06:59:40Z +4873,2005-07-08T19:23:32Z,4500,473,2005-07-11T15:24:32Z,1,2020-02-15T06:59:40Z +4874,2005-07-08T19:23:38Z,2386,223,2005-07-13T14:39:38Z,2,2020-02-15T06:59:40Z +4875,2005-07-08T19:24:17Z,843,555,2005-07-11T19:15:17Z,2,2020-02-15T06:59:40Z +4876,2005-07-08T19:27:50Z,1959,283,2005-07-14T15:42:50Z,1,2020-02-15T06:59:40Z +4877,2005-07-08T19:31:02Z,1846,287,2005-07-15T19:05:02Z,1,2020-02-15T06:59:40Z +4878,2005-07-08T19:33:49Z,4009,172,2005-07-17T17:47:49Z,1,2020-02-15T06:59:40Z +4879,2005-07-08T19:34:55Z,1406,196,2005-07-09T15:53:55Z,1,2020-02-15T06:59:40Z +4880,2005-07-08T19:36:17Z,4178,269,2005-07-13T00:01:17Z,1,2020-02-15T06:59:40Z +4881,2005-07-08T19:40:34Z,4346,349,2005-07-09T17:08:34Z,2,2020-02-15T06:59:40Z +4882,2005-07-08T19:42:03Z,4540,184,2005-07-16T22:24:03Z,1,2020-02-15T06:59:40Z +4883,2005-07-08T19:46:58Z,1366,563,2005-07-10T15:48:58Z,1,2020-02-15T06:59:40Z +4884,2005-07-08T19:49:17Z,3543,425,2005-07-15T23:14:17Z,2,2020-02-15T06:59:40Z +4885,2005-07-08T19:51:17Z,442,233,2005-07-12T16:02:17Z,2,2020-02-15T06:59:40Z +4886,2005-07-08T19:53:22Z,3393,474,2005-07-09T17:05:22Z,1,2020-02-15T06:59:40Z +4887,2005-07-08T19:59:14Z,3613,543,2005-07-15T22:53:14Z,1,2020-02-15T06:59:40Z +4888,2005-07-08T20:04:27Z,1220,527,2005-07-10T14:53:27Z,2,2020-02-15T06:59:40Z +4889,2005-07-08T20:04:43Z,4463,5,2005-07-13T17:57:43Z,2,2020-02-15T06:59:40Z +4890,2005-07-08T20:05:38Z,3576,574,2005-07-14T14:55:38Z,2,2020-02-15T06:59:40Z +4891,2005-07-08T20:06:19Z,1787,59,2005-07-16T18:52:19Z,1,2020-02-15T06:59:40Z +4892,2005-07-08T20:06:25Z,3566,193,2005-07-14T20:04:25Z,1,2020-02-15T06:59:40Z +4893,2005-07-08T20:19:55Z,2060,210,2005-07-15T21:28:55Z,2,2020-02-15T06:59:40Z +4894,2005-07-08T20:21:31Z,1028,286,2005-07-11T01:59:31Z,1,2020-02-15T06:59:40Z +4895,2005-07-08T20:22:05Z,2620,242,2005-07-12T20:49:05Z,1,2020-02-15T06:59:40Z +4896,2005-07-08T20:23:15Z,3006,129,2005-07-10T15:38:15Z,1,2020-02-15T06:59:40Z +4897,2005-07-08T20:25:11Z,2950,258,2005-07-09T17:16:11Z,1,2020-02-15T06:59:40Z +4898,2005-07-08T20:31:43Z,3212,218,2005-07-15T15:58:43Z,2,2020-02-15T06:59:40Z +4899,2005-07-08T20:37:11Z,414,32,2005-07-10T21:53:11Z,1,2020-02-15T06:59:40Z +4900,2005-07-08T20:38:06Z,3487,426,2005-07-09T22:45:06Z,2,2020-02-15T06:59:40Z +4901,2005-07-08T20:44:51Z,2187,507,2005-07-10T01:04:51Z,1,2020-02-15T06:59:40Z +4902,2005-07-08T20:49:30Z,2238,554,2005-07-13T16:54:30Z,2,2020-02-15T06:59:40Z +4903,2005-07-08T20:50:05Z,1769,132,2005-07-13T15:27:05Z,1,2020-02-15T06:59:40Z +4904,2005-07-08T20:53:27Z,2051,173,2005-07-18T01:16:27Z,1,2020-02-15T06:59:40Z +4905,2005-07-08T20:56:00Z,4101,246,2005-07-12T00:19:00Z,2,2020-02-15T06:59:40Z +4906,2005-07-08T20:59:13Z,1527,490,2005-07-15T01:12:13Z,2,2020-02-15T06:59:40Z +4907,2005-07-08T21:01:41Z,1206,209,2005-07-13T02:23:41Z,2,2020-02-15T06:59:40Z +4908,2005-07-08T21:05:44Z,1963,160,2005-07-17T21:33:44Z,2,2020-02-15T06:59:40Z +4909,2005-07-08T21:07:24Z,1451,228,2005-07-10T22:34:24Z,1,2020-02-15T06:59:40Z +4910,2005-07-08T21:13:56Z,3675,219,2005-07-18T02:39:56Z,2,2020-02-15T06:59:40Z +4911,2005-07-08T21:20:26Z,4479,66,2005-07-15T03:11:26Z,1,2020-02-15T06:59:40Z +4912,2005-07-08T21:26:11Z,2012,275,2005-07-18T02:19:11Z,1,2020-02-15T06:59:40Z +4913,2005-07-08T21:27:48Z,982,368,2005-07-18T02:51:48Z,1,2020-02-15T06:59:40Z +4914,2005-07-08T21:30:53Z,298,535,2005-07-17T01:29:53Z,1,2020-02-15T06:59:40Z +4915,2005-07-08T21:31:22Z,2772,178,2005-07-13T16:45:22Z,2,2020-02-15T06:59:40Z +4916,2005-07-08T21:32:17Z,2680,212,2005-07-14T20:55:17Z,2,2020-02-15T06:59:40Z +4917,2005-07-08T21:32:30Z,3231,104,2005-07-09T15:34:30Z,1,2020-02-15T06:59:40Z +4918,2005-07-08T21:37:31Z,3819,220,2005-07-11T20:16:31Z,2,2020-02-15T06:59:40Z +4919,2005-07-08T21:41:54Z,2106,157,2005-07-11T23:14:54Z,1,2020-02-15T06:59:40Z +4920,2005-07-08T21:42:10Z,4285,239,2005-07-15T03:08:10Z,1,2020-02-15T06:59:40Z +4921,2005-07-08T21:43:21Z,425,109,2005-07-10T16:06:21Z,2,2020-02-15T06:59:40Z +4922,2005-07-08T21:44:00Z,2928,577,2005-07-10T02:58:00Z,2,2020-02-15T06:59:40Z +4923,2005-07-08T21:44:39Z,932,18,2005-07-17T15:50:39Z,2,2020-02-15T06:59:40Z +4924,2005-07-08T21:55:25Z,4344,180,2005-07-16T16:52:25Z,1,2020-02-15T06:59:40Z +4925,2005-07-08T21:56:00Z,2169,68,2005-07-14T17:17:00Z,2,2020-02-15T06:59:40Z +4926,2005-07-08T22:01:48Z,4155,415,2005-07-18T03:27:48Z,1,2020-02-15T06:59:40Z +4927,2005-07-08T22:05:35Z,2566,136,2005-07-14T23:22:35Z,2,2020-02-15T06:59:40Z +4928,2005-07-08T22:05:41Z,4363,77,2005-07-09T23:09:41Z,2,2020-02-15T06:59:40Z +4929,2005-07-08T22:06:18Z,734,297,2005-07-17T18:17:18Z,2,2020-02-15T06:59:40Z +4930,2005-07-08T22:15:48Z,2057,451,2005-07-15T21:02:48Z,2,2020-02-15T06:59:40Z +4931,2005-07-08T22:16:18Z,2750,284,2005-07-17T03:42:18Z,1,2020-02-15T06:59:40Z +4932,2005-07-08T22:17:40Z,4237,558,2005-07-15T22:13:40Z,2,2020-02-15T06:59:40Z +4933,2005-07-08T22:18:29Z,322,579,2005-07-13T03:47:29Z,2,2020-02-15T06:59:40Z +4934,2005-07-08T22:18:42Z,1744,517,2005-07-10T20:44:42Z,2,2020-02-15T06:59:40Z +4935,2005-07-08T22:20:56Z,2708,230,2005-07-12T01:01:56Z,2,2020-02-15T06:59:40Z +4936,2005-07-08T22:24:50Z,2033,298,2005-07-15T03:14:50Z,2,2020-02-15T06:59:40Z +4937,2005-07-08T22:29:59Z,33,273,2005-07-15T21:51:59Z,2,2020-02-15T06:59:40Z +4938,2005-07-08T22:32:53Z,2164,418,2005-07-14T16:48:53Z,2,2020-02-15T06:59:40Z +4939,2005-07-08T22:35:30Z,3201,425,2005-07-17T22:05:30Z,1,2020-02-15T06:59:40Z +4940,2005-07-08T22:36:06Z,971,215,2005-07-15T04:28:06Z,1,2020-02-15T06:59:40Z +4941,2005-07-08T22:39:10Z,3816,553,2005-07-15T17:49:10Z,2,2020-02-15T06:59:40Z +4942,2005-07-08T22:42:47Z,4467,120,2005-07-15T04:36:47Z,2,2020-02-15T06:59:40Z +4943,2005-07-08T22:43:05Z,2732,11,2005-07-15T18:17:05Z,2,2020-02-15T06:59:40Z +4944,2005-07-08T22:44:28Z,3648,293,2005-07-17T21:51:28Z,2,2020-02-15T06:59:40Z +4945,2005-07-08T22:45:02Z,2079,165,2005-07-11T23:59:02Z,2,2020-02-15T06:59:40Z +4946,2005-07-08T22:46:23Z,272,440,2005-07-16T17:19:23Z,1,2020-02-15T06:59:40Z +4947,2005-07-08T22:49:37Z,3905,388,2005-07-17T21:03:37Z,1,2020-02-15T06:59:40Z +4948,2005-07-08T22:54:21Z,2972,518,2005-07-17T03:52:21Z,2,2020-02-15T06:59:40Z +4949,2005-07-08T22:57:10Z,1184,567,2005-07-11T01:26:10Z,2,2020-02-15T06:59:40Z +4950,2005-07-08T22:58:07Z,3291,148,2005-07-09T20:41:07Z,2,2020-02-15T06:59:40Z +4951,2005-07-08T22:58:21Z,2766,28,2005-07-16T18:58:21Z,1,2020-02-15T06:59:40Z +4952,2005-07-08T23:00:07Z,459,14,2005-07-09T21:47:07Z,1,2020-02-15T06:59:40Z +4953,2005-07-08T23:09:48Z,2460,168,2005-07-11T02:08:48Z,2,2020-02-15T06:59:40Z +4954,2005-07-08T23:14:16Z,627,99,2005-07-14T23:23:16Z,2,2020-02-15T06:59:40Z +4955,2005-07-08T23:16:21Z,1103,225,2005-07-14T02:09:21Z,2,2020-02-15T06:59:40Z +4956,2005-07-08T23:17:10Z,1512,477,2005-07-18T00:14:10Z,1,2020-02-15T06:59:40Z +4957,2005-07-08T23:18:48Z,4082,399,2005-07-09T23:13:48Z,1,2020-02-15T06:59:40Z +4958,2005-07-08T23:19:52Z,2354,346,2005-07-17T20:31:52Z,1,2020-02-15T06:59:40Z +4959,2005-07-08T23:22:23Z,3898,236,2005-07-10T03:17:23Z,2,2020-02-15T06:59:40Z +4960,2005-07-08T23:27:16Z,2176,434,2005-07-18T02:01:16Z,1,2020-02-15T06:59:40Z +4961,2005-07-08T23:35:53Z,3668,96,2005-07-14T22:46:53Z,2,2020-02-15T06:59:40Z +4962,2005-07-08T23:36:13Z,4399,532,2005-07-15T03:39:13Z,1,2020-02-15T06:59:40Z +4963,2005-07-08T23:38:40Z,737,404,2005-07-12T05:33:40Z,2,2020-02-15T06:59:40Z +4964,2005-07-08T23:46:38Z,1033,455,2005-07-09T22:19:38Z,2,2020-02-15T06:59:40Z +4965,2005-07-08T23:46:57Z,535,432,2005-07-15T18:47:57Z,1,2020-02-15T06:59:40Z +4966,2005-07-08T23:47:25Z,4360,118,2005-07-14T03:35:25Z,1,2020-02-15T06:59:40Z +4967,2005-07-08T23:48:03Z,108,339,2005-07-15T23:51:03Z,2,2020-02-15T06:59:40Z +4968,2005-07-08T23:49:19Z,3204,390,2005-07-14T02:46:19Z,1,2020-02-15T06:59:40Z +4969,2005-07-08T23:51:26Z,4563,231,2005-07-12T03:21:26Z,2,2020-02-15T06:59:40Z +4970,2005-07-08T23:54:29Z,2983,100,2005-07-16T22:47:29Z,1,2020-02-15T06:59:40Z +4971,2005-07-08T23:54:49Z,460,64,2005-07-16T00:15:49Z,1,2020-02-15T06:59:40Z +4972,2005-07-08T23:56:09Z,2451,498,2005-07-16T19:15:09Z,1,2020-02-15T06:59:40Z +4973,2005-07-08T23:58:18Z,391,432,2005-07-14T21:42:18Z,1,2020-02-15T06:59:40Z +4974,2005-07-09T00:00:36Z,1071,152,2005-07-13T21:03:36Z,1,2020-02-15T06:59:40Z +4975,2005-07-09T00:02:46Z,3730,101,2005-07-14T18:05:46Z,2,2020-02-15T06:59:40Z +4976,2005-07-09T00:03:30Z,617,199,2005-07-10T19:05:30Z,1,2020-02-15T06:59:40Z +4977,2005-07-09T00:15:50Z,3310,584,2005-07-10T00:34:50Z,2,2020-02-15T06:59:40Z +4978,2005-07-09T00:22:02Z,2578,279,2005-07-18T04:37:02Z,1,2020-02-15T06:59:40Z +4979,2005-07-09T00:24:34Z,3447,204,2005-07-12T20:04:34Z,1,2020-02-15T06:59:40Z +4980,2005-07-09T00:26:59Z,2638,100,2005-07-14T19:42:59Z,1,2020-02-15T06:59:40Z +4981,2005-07-09T00:29:29Z,3363,399,2005-07-16T19:06:29Z,2,2020-02-15T06:59:40Z +4982,2005-07-09T00:30:52Z,249,162,2005-07-15T23:50:52Z,1,2020-02-15T06:59:40Z +4983,2005-07-09T00:34:16Z,1469,81,2005-07-17T03:21:16Z,2,2020-02-15T06:59:40Z +4984,2005-07-09T00:35:31Z,1303,214,2005-07-17T03:44:31Z,1,2020-02-15T06:59:40Z +4985,2005-07-09T00:36:02Z,2146,208,2005-07-14T04:06:02Z,2,2020-02-15T06:59:40Z +4986,2005-07-09T00:44:33Z,3517,589,2005-07-09T19:45:33Z,2,2020-02-15T06:59:40Z +4987,2005-07-09T00:45:41Z,996,277,2005-07-14T03:32:41Z,2,2020-02-15T06:59:40Z +4988,2005-07-09T00:46:14Z,2718,433,2005-07-16T01:45:14Z,2,2020-02-15T06:59:40Z +4989,2005-07-09T00:46:56Z,3326,210,2005-07-17T06:24:56Z,1,2020-02-15T06:59:40Z +4990,2005-07-09T00:48:49Z,3305,35,2005-07-10T06:36:49Z,2,2020-02-15T06:59:40Z +4991,2005-07-09T00:49:03Z,1856,540,2005-07-13T05:02:03Z,1,2020-02-15T06:59:40Z +4992,2005-07-09T00:49:37Z,2081,315,2005-07-16T02:05:37Z,1,2020-02-15T06:59:40Z +4993,2005-07-09T00:49:47Z,1740,517,2005-07-11T21:19:47Z,1,2020-02-15T06:59:40Z +4994,2005-07-09T00:54:13Z,2546,246,2005-07-09T21:02:13Z,1,2020-02-15T06:59:40Z +4995,2005-07-09T00:57:46Z,2063,247,2005-07-13T03:32:46Z,1,2020-02-15T06:59:40Z +4996,2005-07-09T00:59:46Z,4440,129,2005-07-16T01:30:46Z,2,2020-02-15T06:59:40Z +4997,2005-07-09T01:06:03Z,186,102,2005-07-18T04:21:03Z,2,2020-02-15T06:59:40Z +4998,2005-07-09T01:07:21Z,202,534,2005-07-10T05:48:21Z,2,2020-02-15T06:59:40Z +4999,2005-07-09T01:12:57Z,1797,196,2005-07-17T00:12:57Z,1,2020-02-15T06:59:40Z +5000,2005-07-09T01:16:13Z,668,146,2005-07-14T21:55:13Z,1,2020-02-15T06:59:40Z +5001,2005-07-09T01:17:04Z,2025,40,2005-07-16T03:25:04Z,2,2020-02-15T06:59:40Z +5002,2005-07-09T01:17:08Z,2388,430,2005-07-15T21:53:08Z,1,2020-02-15T06:59:40Z +5003,2005-07-09T01:19:03Z,3438,569,2005-07-10T04:28:03Z,2,2020-02-15T06:59:40Z +5004,2005-07-09T01:20:50Z,2637,382,2005-07-09T19:56:50Z,1,2020-02-15T06:59:40Z +5005,2005-07-09T01:21:44Z,3034,451,2005-07-14T20:27:44Z,1,2020-02-15T06:59:40Z +5006,2005-07-09T01:24:07Z,1277,486,2005-07-18T03:56:07Z,1,2020-02-15T06:59:40Z +5007,2005-07-09T01:26:22Z,3079,207,2005-07-12T20:48:22Z,1,2020-02-15T06:59:40Z +5008,2005-07-09T01:31:42Z,824,509,2005-07-11T22:34:42Z,2,2020-02-15T06:59:40Z +5009,2005-07-09T01:32:17Z,1539,102,2005-07-18T03:39:17Z,2,2020-02-15T06:59:40Z +5010,2005-07-09T01:33:23Z,1999,574,2005-07-14T04:00:23Z,2,2020-02-15T06:59:40Z +5011,2005-07-09T01:44:40Z,463,249,2005-07-11T00:58:40Z,2,2020-02-15T06:59:40Z +5012,2005-07-09T01:45:04Z,1456,251,2005-07-12T02:13:04Z,1,2020-02-15T06:59:40Z +5013,2005-07-09T01:46:45Z,3000,35,2005-07-16T06:57:45Z,1,2020-02-15T06:59:40Z +5014,2005-07-09T01:51:49Z,4095,334,2005-07-10T04:48:49Z,1,2020-02-15T06:59:40Z +5015,2005-07-09T01:54:24Z,1564,178,2005-07-12T20:07:24Z,1,2020-02-15T06:59:40Z +5016,2005-07-09T01:57:57Z,1871,5,2005-07-09T22:07:57Z,1,2020-02-15T06:59:40Z +5017,2005-07-09T02:00:16Z,3745,241,2005-07-14T06:28:16Z,1,2020-02-15T06:59:40Z +5018,2005-07-09T02:01:05Z,2317,541,2005-07-10T04:09:05Z,1,2020-02-15T06:59:40Z +5019,2005-07-09T02:04:32Z,3534,295,2005-07-15T07:01:32Z,2,2020-02-15T06:59:40Z +5020,2005-07-09T02:07:56Z,4113,565,2005-07-09T23:59:56Z,1,2020-02-15T06:59:40Z +5021,2005-07-09T02:09:41Z,3445,73,2005-07-13T05:47:41Z,1,2020-02-15T06:59:40Z +5022,2005-07-09T02:10:54Z,928,499,2005-07-17T08:07:54Z,2,2020-02-15T06:59:40Z +5023,2005-07-09T02:23:16Z,3206,358,2005-07-15T20:37:16Z,1,2020-02-15T06:59:40Z +5024,2005-07-09T02:25:12Z,2987,335,2005-07-12T03:15:12Z,1,2020-02-15T06:59:40Z +5025,2005-07-09T02:28:24Z,153,91,2005-07-12T04:43:24Z,2,2020-02-15T06:59:40Z +5026,2005-07-09T02:32:34Z,989,463,2005-07-13T04:39:34Z,2,2020-02-15T06:59:40Z +5027,2005-07-09T02:32:37Z,2179,109,2005-07-16T23:13:37Z,1,2020-02-15T06:59:40Z +5028,2005-07-09T02:34:45Z,4531,30,2005-07-14T20:45:45Z,2,2020-02-15T06:59:40Z +5029,2005-07-09T02:35:32Z,3938,265,2005-07-17T22:46:32Z,1,2020-02-15T06:59:40Z +5030,2005-07-09T02:35:43Z,25,497,2005-07-17T02:05:43Z,1,2020-02-15T06:59:40Z +5031,2005-07-09T02:36:37Z,4224,312,2005-07-14T03:09:37Z,2,2020-02-15T06:59:40Z +5032,2005-07-09T02:39:47Z,2257,333,2005-07-10T07:45:47Z,1,2020-02-15T06:59:40Z +5033,2005-07-09T02:42:01Z,2841,299,2005-07-14T00:29:01Z,1,2020-02-15T06:59:40Z +5034,2005-07-09T02:48:15Z,340,148,2005-07-11T23:13:15Z,2,2020-02-15T06:59:40Z +5035,2005-07-09T02:51:34Z,3699,99,2005-07-16T21:38:34Z,1,2020-02-15T06:59:40Z +5036,2005-07-09T02:58:41Z,75,573,2005-07-17T04:09:41Z,1,2020-02-15T06:59:40Z +5037,2005-07-09T02:59:10Z,435,524,2005-07-15T07:54:10Z,2,2020-02-15T06:59:40Z +5038,2005-07-09T03:12:52Z,3086,10,2005-07-17T22:27:52Z,2,2020-02-15T06:59:40Z +5039,2005-07-09T03:14:45Z,2020,268,2005-07-16T06:57:45Z,2,2020-02-15T06:59:40Z +5040,2005-07-09T03:16:34Z,2479,405,2005-07-17T01:13:34Z,2,2020-02-15T06:59:40Z +5041,2005-07-09T03:18:51Z,2711,305,2005-07-13T03:08:51Z,1,2020-02-15T06:59:40Z +5042,2005-07-09T03:20:30Z,3609,254,2005-07-15T07:22:30Z,1,2020-02-15T06:59:40Z +5043,2005-07-09T03:25:18Z,2979,369,2005-07-13T00:57:18Z,2,2020-02-15T06:59:40Z +5044,2005-07-09T03:30:25Z,1625,147,2005-07-11T02:32:25Z,2,2020-02-15T06:59:40Z +5045,2005-07-09T03:33:32Z,1041,230,2005-07-18T06:15:32Z,1,2020-02-15T06:59:40Z +5046,2005-07-09T03:34:57Z,1639,227,2005-07-17T22:36:57Z,2,2020-02-15T06:59:40Z +5047,2005-07-09T03:44:15Z,230,272,2005-07-15T09:07:15Z,2,2020-02-15T06:59:40Z +5048,2005-07-09T03:46:33Z,1271,466,2005-07-15T01:14:33Z,1,2020-02-15T06:59:40Z +5049,2005-07-09T03:54:12Z,3336,144,2005-07-11T22:39:12Z,2,2020-02-15T06:59:40Z +5050,2005-07-09T03:54:38Z,3876,337,2005-07-10T02:23:38Z,2,2020-02-15T06:59:40Z +5051,2005-07-09T03:57:53Z,4091,85,2005-07-16T08:22:53Z,2,2020-02-15T06:59:40Z +5052,2005-07-09T03:59:43Z,1884,305,2005-07-12T05:48:43Z,1,2020-02-15T06:59:40Z +5053,2005-07-09T03:59:46Z,570,295,2005-07-09T23:53:46Z,2,2020-02-15T06:59:40Z +5054,2005-07-09T04:01:02Z,4001,135,2005-07-18T05:16:02Z,2,2020-02-15T06:59:40Z +5055,2005-07-09T04:05:28Z,751,54,2005-07-14T04:26:28Z,2,2020-02-15T06:59:40Z +5056,2005-07-09T04:13:45Z,2599,526,2005-07-10T06:17:45Z,2,2020-02-15T06:59:40Z +5057,2005-07-09T04:20:29Z,1076,178,2005-07-14T23:59:29Z,1,2020-02-15T06:59:40Z +5058,2005-07-09T04:20:35Z,917,221,2005-07-18T08:09:35Z,2,2020-02-15T06:59:40Z +5059,2005-07-09T04:28:01Z,3951,396,2005-07-15T22:57:01Z,1,2020-02-15T06:59:40Z +5060,2005-07-09T04:28:03Z,4317,57,2005-07-12T07:41:03Z,2,2020-02-15T06:59:40Z +5061,2005-07-09T04:30:50Z,3893,230,2005-07-12T03:24:50Z,1,2020-02-15T06:59:40Z +5062,2005-07-09T04:36:49Z,2190,141,2005-07-10T06:26:49Z,1,2020-02-15T06:59:40Z +5063,2005-07-09T04:37:31Z,1027,133,2005-07-13T09:56:31Z,2,2020-02-15T06:59:40Z +5064,2005-07-09T04:38:51Z,373,512,2005-07-18T00:33:51Z,2,2020-02-15T06:59:40Z +5065,2005-07-09T04:42:00Z,1788,599,2005-07-12T08:55:00Z,1,2020-02-15T06:59:40Z +5066,2005-07-09T04:48:50Z,1702,169,2005-07-12T22:54:50Z,2,2020-02-15T06:59:40Z +5067,2005-07-09T04:52:35Z,1480,225,2005-07-11T23:33:35Z,2,2020-02-15T06:59:40Z +5068,2005-07-09T04:53:18Z,2937,10,2005-07-13T09:21:18Z,1,2020-02-15T06:59:40Z +5069,2005-07-09T04:56:30Z,4417,183,2005-07-13T23:53:30Z,2,2020-02-15T06:59:40Z +5070,2005-07-09T04:58:26Z,2305,407,2005-07-09T23:00:26Z,2,2020-02-15T06:59:40Z +5071,2005-07-09T05:00:39Z,4358,12,2005-07-09T23:08:39Z,1,2020-02-15T06:59:40Z +5072,2005-07-09T05:01:58Z,94,254,2005-07-18T08:17:58Z,2,2020-02-15T06:59:40Z +5073,2005-07-09T05:02:35Z,546,408,2005-07-15T01:22:35Z,2,2020-02-15T06:59:40Z +5074,2005-07-09T05:06:24Z,1379,12,2005-07-12T04:37:24Z,1,2020-02-15T06:59:40Z +5075,2005-07-09T05:12:07Z,903,170,2005-07-12T08:29:07Z,1,2020-02-15T06:59:40Z +5076,2005-07-09T05:13:22Z,4388,574,2005-07-16T09:11:22Z,1,2020-02-15T06:59:40Z +5077,2005-07-09T05:18:01Z,686,574,2005-07-17T10:39:01Z,2,2020-02-15T06:59:40Z +5078,2005-07-09T05:20:24Z,1994,78,2005-07-13T06:41:24Z,2,2020-02-15T06:59:40Z +5079,2005-07-09T05:20:40Z,3948,566,2005-07-17T00:06:40Z,1,2020-02-15T06:59:40Z +5080,2005-07-09T05:23:55Z,635,254,2005-07-11T05:56:55Z,2,2020-02-15T06:59:40Z +5081,2005-07-09T05:25:20Z,1953,420,2005-07-13T23:45:20Z,1,2020-02-15T06:59:40Z +5082,2005-07-09T05:28:38Z,1584,470,2005-07-10T02:46:38Z,2,2020-02-15T06:59:40Z +5083,2005-07-09T05:30:32Z,148,494,2005-07-11T02:20:32Z,1,2020-02-15T06:59:40Z +5084,2005-07-09T05:33:27Z,3113,87,2005-07-17T08:54:27Z,2,2020-02-15T06:59:40Z +5085,2005-07-09T05:36:49Z,4164,437,2005-07-13T09:26:49Z,1,2020-02-15T06:59:40Z +5086,2005-07-09T05:40:04Z,3072,539,2005-07-16T07:51:04Z,1,2020-02-15T06:59:40Z +5087,2005-07-09T05:44:28Z,3716,395,2005-07-10T02:25:28Z,2,2020-02-15T06:59:40Z +5088,2005-07-09T05:45:16Z,3324,454,2005-07-15T00:41:16Z,2,2020-02-15T06:59:40Z +5089,2005-07-09T05:45:40Z,451,289,2005-07-15T05:31:40Z,1,2020-02-15T06:59:40Z +5090,2005-07-09T05:48:22Z,1728,296,2005-07-11T06:50:22Z,2,2020-02-15T06:59:40Z +5091,2005-07-09T05:52:54Z,4572,149,2005-07-10T02:49:54Z,1,2020-02-15T06:59:40Z +5092,2005-07-09T05:57:39Z,3256,139,2005-07-12T00:45:39Z,2,2020-02-15T06:59:40Z +5093,2005-07-09T05:59:12Z,2734,597,2005-07-10T11:45:12Z,2,2020-02-15T06:59:40Z +5094,2005-07-09T05:59:47Z,4451,178,2005-07-18T05:34:47Z,2,2020-02-15T06:59:40Z +5095,2005-07-09T06:08:22Z,2788,292,2005-07-11T10:52:22Z,1,2020-02-15T06:59:40Z +5096,2005-07-09T06:08:23Z,490,231,2005-07-14T11:36:23Z,1,2020-02-15T06:59:40Z +5097,2005-07-09T06:09:51Z,3252,343,2005-07-10T03:55:51Z,2,2020-02-15T06:59:40Z +5098,2005-07-09T06:13:54Z,1772,406,2005-07-10T04:27:54Z,1,2020-02-15T06:59:40Z +5099,2005-07-09T06:14:30Z,768,393,2005-07-12T08:23:30Z,2,2020-02-15T06:59:40Z +5100,2005-07-09T06:16:03Z,3193,101,2005-07-10T10:21:03Z,1,2020-02-15T06:59:40Z +5101,2005-07-09T06:21:29Z,2737,154,2005-07-11T02:58:29Z,1,2020-02-15T06:59:40Z +5102,2005-07-09T06:25:48Z,242,316,2005-07-16T11:32:48Z,2,2020-02-15T06:59:40Z +5103,2005-07-09T06:34:40Z,2390,397,2005-07-10T03:44:40Z,2,2020-02-15T06:59:40Z +5104,2005-07-09T06:37:07Z,2109,14,2005-07-14T12:32:07Z,1,2020-02-15T06:59:40Z +5105,2005-07-09T06:38:59Z,2555,290,2005-07-17T03:06:59Z,2,2020-02-15T06:59:40Z +5106,2005-07-09T06:40:24Z,110,137,2005-07-13T10:28:24Z,1,2020-02-15T06:59:40Z +5107,2005-07-09T06:42:32Z,1697,21,2005-07-10T08:21:32Z,2,2020-02-15T06:59:40Z +5108,2005-07-09T06:44:30Z,4229,30,2005-07-17T04:24:30Z,1,2020-02-15T06:59:40Z +5109,2005-07-09T06:48:49Z,2373,102,2005-07-14T01:17:49Z,1,2020-02-15T06:59:40Z +5110,2005-07-09T06:57:25Z,195,200,2005-07-12T05:39:25Z,2,2020-02-15T06:59:40Z +5111,2005-07-09T07:02:19Z,2875,12,2005-07-10T06:27:19Z,2,2020-02-15T06:59:40Z +5112,2005-07-09T07:04:04Z,3529,285,2005-07-13T08:42:04Z,1,2020-02-15T06:59:40Z +5113,2005-07-09T07:06:18Z,3618,282,2005-07-13T07:10:18Z,2,2020-02-15T06:59:40Z +5114,2005-07-09T07:07:05Z,3734,64,2005-07-15T03:06:05Z,1,2020-02-15T06:59:40Z +5115,2005-07-09T07:07:18Z,2296,212,2005-07-16T03:28:18Z,2,2020-02-15T06:59:40Z +5116,2005-07-09T07:10:12Z,2491,332,2005-07-14T09:16:12Z,2,2020-02-15T06:59:40Z +5117,2005-07-09T07:11:22Z,2284,208,2005-07-15T08:44:22Z,1,2020-02-15T06:59:40Z +5118,2005-07-09T07:13:52Z,957,5,2005-07-18T05:18:52Z,2,2020-02-15T06:59:40Z +5119,2005-07-09T07:14:18Z,2996,301,2005-07-18T04:07:18Z,1,2020-02-15T06:59:40Z +5120,2005-07-09T07:14:23Z,4431,373,2005-07-14T04:00:23Z,2,2020-02-15T06:59:40Z +5121,2005-07-09T07:18:31Z,3321,526,2005-07-15T01:48:31Z,1,2020-02-15T06:59:40Z +5122,2005-07-09T07:19:35Z,1423,261,2005-07-16T03:04:35Z,2,2020-02-15T06:59:40Z +5123,2005-07-09T07:20:30Z,4278,219,2005-07-14T05:24:30Z,1,2020-02-15T06:59:40Z +5124,2005-07-09T07:25:19Z,1857,565,2005-07-15T01:51:19Z,1,2020-02-15T06:59:40Z +5125,2005-07-09T07:25:28Z,990,263,2005-07-12T12:34:28Z,1,2020-02-15T06:59:40Z +5126,2005-07-09T07:25:35Z,3312,315,2005-07-18T05:05:35Z,1,2020-02-15T06:59:40Z +5127,2005-07-09T07:25:47Z,3649,129,2005-07-13T11:44:47Z,2,2020-02-15T06:59:40Z +5128,2005-07-09T07:25:54Z,3757,155,2005-07-16T04:04:54Z,2,2020-02-15T06:59:40Z +5129,2005-07-09T07:28:33Z,4516,441,2005-07-14T05:12:33Z,2,2020-02-15T06:59:40Z +5130,2005-07-09T07:29:45Z,3264,93,2005-07-13T05:56:45Z,1,2020-02-15T06:59:40Z +5131,2005-07-09T07:35:03Z,3179,167,2005-07-10T06:05:03Z,1,2020-02-15T06:59:40Z +5132,2005-07-09T07:40:32Z,4158,101,2005-07-16T02:16:32Z,2,2020-02-15T06:59:40Z +5133,2005-07-09T07:43:22Z,3403,469,2005-07-12T04:52:22Z,1,2020-02-15T06:59:40Z +5134,2005-07-09T07:53:12Z,149,491,2005-07-16T05:30:12Z,1,2020-02-15T06:59:40Z +5135,2005-07-09T07:53:22Z,3005,538,2005-07-16T04:50:22Z,2,2020-02-15T06:59:40Z +5136,2005-07-09T07:55:01Z,3498,395,2005-07-11T05:26:01Z,2,2020-02-15T06:59:40Z +5137,2005-07-09T08:00:34Z,409,126,2005-07-12T05:34:34Z,1,2020-02-15T06:59:40Z +5138,2005-07-09T08:00:46Z,1283,548,2005-07-12T09:31:46Z,2,2020-02-15T06:59:40Z +5139,2005-07-09T08:01:51Z,51,539,2005-07-18T09:16:51Z,2,2020-02-15T06:59:40Z +5140,2005-07-09T08:04:59Z,947,303,2005-07-11T08:28:59Z,2,2020-02-15T06:59:40Z +5141,2005-07-09T08:05:14Z,590,488,2005-07-18T04:36:14Z,1,2020-02-15T06:59:40Z +5142,2005-07-09T08:05:23Z,369,56,2005-07-13T12:37:23Z,2,2020-02-15T06:59:40Z +5143,2005-07-09T08:07:07Z,3803,196,2005-07-18T10:17:07Z,1,2020-02-15T06:59:40Z +5144,2005-07-09T08:09:53Z,3530,89,2005-07-18T07:11:53Z,2,2020-02-15T06:59:40Z +5145,2005-07-09T08:13:25Z,2397,204,2005-07-10T03:56:25Z,2,2020-02-15T06:59:40Z +5146,2005-07-09T08:14:58Z,776,194,2005-07-11T07:04:58Z,1,2020-02-15T06:59:40Z +5147,2005-07-09T08:17:41Z,2270,326,2005-07-18T09:45:41Z,2,2020-02-15T06:59:40Z +5148,2005-07-09T08:22:46Z,456,48,2005-07-18T04:36:46Z,1,2020-02-15T06:59:40Z +5149,2005-07-09T08:28:23Z,1500,330,2005-07-16T06:19:23Z,2,2020-02-15T06:59:40Z +5150,2005-07-09T08:28:40Z,1961,410,2005-07-16T04:47:40Z,1,2020-02-15T06:59:40Z +5151,2005-07-09T08:31:03Z,224,228,2005-07-10T08:18:03Z,2,2020-02-15T06:59:40Z +5152,2005-07-09T08:34:44Z,4005,331,2005-07-10T05:26:44Z,1,2020-02-15T06:59:40Z +5153,2005-07-09T08:35:05Z,2826,504,2005-07-18T14:21:05Z,1,2020-02-15T06:59:40Z +5154,2005-07-09T08:46:18Z,3785,361,2005-07-14T03:19:18Z,1,2020-02-15T06:59:40Z +5155,2005-07-09T08:46:54Z,988,523,2005-07-14T04:13:54Z,1,2020-02-15T06:59:40Z +5156,2005-07-09T08:51:42Z,416,5,2005-07-15T03:59:42Z,2,2020-02-15T06:59:40Z +5157,2005-07-09T08:52:12Z,637,463,2005-07-12T04:32:12Z,2,2020-02-15T06:59:40Z +5158,2005-07-09T08:53:09Z,2825,272,2005-07-10T11:05:09Z,1,2020-02-15T06:59:40Z +5159,2005-07-09T08:55:52Z,3479,213,2005-07-10T04:32:52Z,1,2020-02-15T06:59:40Z +5160,2005-07-09T08:57:07Z,1925,467,2005-07-18T06:01:07Z,1,2020-02-15T06:59:40Z +5161,2005-07-09T08:57:56Z,2617,284,2005-07-18T07:41:56Z,2,2020-02-15T06:59:40Z +5162,2005-07-09T09:00:11Z,2765,43,2005-07-17T07:26:11Z,1,2020-02-15T06:59:40Z +5163,2005-07-09T09:00:28Z,1486,103,2005-07-17T08:07:28Z,2,2020-02-15T06:59:40Z +5164,2005-07-09T09:03:14Z,1170,511,2005-07-14T04:20:14Z,1,2020-02-15T06:59:40Z +5165,2005-07-09T09:08:53Z,280,590,2005-07-14T06:01:53Z,1,2020-02-15T06:59:40Z +5166,2005-07-09T09:15:48Z,2771,298,2005-07-16T06:04:48Z,1,2020-02-15T06:59:40Z +5167,2005-07-09T09:18:43Z,2485,437,2005-07-14T12:59:43Z,2,2020-02-15T06:59:40Z +5168,2005-07-09T09:20:01Z,4096,420,2005-07-11T14:42:01Z,1,2020-02-15T06:59:40Z +5169,2005-07-09T09:22:25Z,2608,116,2005-07-10T03:48:25Z,1,2020-02-15T06:59:40Z +5170,2005-07-09T09:24:19Z,66,209,2005-07-18T04:02:19Z,1,2020-02-15T06:59:40Z +5171,2005-07-09T09:26:55Z,2099,371,2005-07-10T10:34:55Z,1,2020-02-15T06:59:40Z +5172,2005-07-09T09:31:27Z,4046,214,2005-07-13T04:03:27Z,1,2020-02-15T06:59:40Z +5173,2005-07-09T09:31:44Z,2848,490,2005-07-15T04:20:44Z,2,2020-02-15T06:59:40Z +5174,2005-07-09T09:31:59Z,3621,47,2005-07-15T03:49:59Z,1,2020-02-15T06:59:40Z +5175,2005-07-09T09:34:28Z,1003,409,2005-07-15T15:19:28Z,2,2020-02-15T06:59:40Z +5176,2005-07-09T09:39:31Z,328,119,2005-07-17T11:56:31Z,2,2020-02-15T06:59:40Z +5177,2005-07-09T09:43:21Z,1675,452,2005-07-13T07:29:21Z,1,2020-02-15T06:59:40Z +5178,2005-07-09T09:59:52Z,1750,167,2005-07-18T13:01:52Z,2,2020-02-15T06:59:40Z +5179,2005-07-09T10:00:44Z,2995,256,2005-07-11T06:52:44Z,1,2020-02-15T06:59:40Z +5180,2005-07-09T10:06:53Z,3684,494,2005-07-12T15:25:53Z,1,2020-02-15T06:59:40Z +5181,2005-07-09T10:07:27Z,2569,45,2005-07-17T10:18:27Z,2,2020-02-15T06:59:40Z +5182,2005-07-09T10:08:10Z,725,197,2005-07-16T14:36:10Z,2,2020-02-15T06:59:40Z +5183,2005-07-09T10:13:45Z,2866,394,2005-07-16T15:55:45Z,2,2020-02-15T06:59:40Z +5184,2005-07-09T10:14:34Z,1101,166,2005-07-14T16:05:34Z,2,2020-02-15T06:59:40Z +5185,2005-07-09T10:14:39Z,357,53,2005-07-10T13:31:39Z,1,2020-02-15T06:59:40Z +5186,2005-07-09T10:18:40Z,2415,276,2005-07-13T05:05:40Z,2,2020-02-15T06:59:40Z +5187,2005-07-09T10:19:51Z,2631,91,2005-07-14T10:35:51Z,1,2020-02-15T06:59:40Z +5188,2005-07-09T10:22:31Z,3265,34,2005-07-13T04:41:31Z,1,2020-02-15T06:59:40Z +5189,2005-07-09T10:23:21Z,2539,113,2005-07-14T08:06:21Z,1,2020-02-15T06:59:40Z +5190,2005-07-09T10:25:24Z,2213,532,2005-07-18T04:33:24Z,1,2020-02-15T06:59:40Z +5191,2005-07-09T10:26:48Z,2131,167,2005-07-10T15:52:48Z,2,2020-02-15T06:59:40Z +5192,2005-07-09T10:27:09Z,1225,410,2005-07-10T12:04:09Z,1,2020-02-15T06:59:40Z +5193,2005-07-09T10:28:18Z,2166,485,2005-07-12T12:18:18Z,1,2020-02-15T06:59:40Z +5194,2005-07-09T10:31:34Z,3809,202,2005-07-15T08:50:34Z,2,2020-02-15T06:59:40Z +5195,2005-07-09T10:39:31Z,3399,59,2005-07-18T13:54:31Z,1,2020-02-15T06:59:40Z +5196,2005-07-09T10:43:34Z,2278,536,2005-07-13T12:10:34Z,2,2020-02-15T06:59:40Z +5197,2005-07-09T10:43:54Z,1571,541,2005-07-16T10:19:54Z,1,2020-02-15T06:59:40Z +5198,2005-07-09T10:49:10Z,218,101,2005-07-13T04:52:10Z,1,2020-02-15T06:59:40Z +5199,2005-07-09T10:50:56Z,349,42,2005-07-10T06:43:56Z,1,2020-02-15T06:59:40Z +5200,2005-07-09T10:52:09Z,4528,125,2005-07-13T15:12:09Z,1,2020-02-15T06:59:40Z +5201,2005-07-09T10:52:53Z,2453,551,2005-07-16T12:41:53Z,2,2020-02-15T06:59:40Z +5202,2005-07-09T10:53:48Z,3417,321,2005-07-15T13:31:48Z,1,2020-02-15T06:59:40Z +5203,2005-07-09T10:53:59Z,3661,588,2005-07-15T09:45:59Z,2,2020-02-15T06:59:40Z +5204,2005-07-09T10:54:14Z,1791,432,2005-07-12T14:29:14Z,2,2020-02-15T06:59:40Z +5205,2005-07-09T10:56:37Z,161,79,2005-07-13T05:45:37Z,1,2020-02-15T06:59:40Z +5206,2005-07-09T11:11:01Z,692,517,2005-07-17T07:23:01Z,2,2020-02-15T06:59:40Z +5207,2005-07-09T11:15:44Z,3496,59,2005-07-17T06:00:44Z,1,2020-02-15T06:59:40Z +5208,2005-07-09T11:16:56Z,1881,560,2005-07-10T07:21:56Z,2,2020-02-15T06:59:40Z +5209,2005-07-09T11:22:39Z,4441,222,2005-07-17T09:31:39Z,1,2020-02-15T06:59:40Z +5210,2005-07-09T11:24:19Z,4514,355,2005-07-11T06:27:19Z,1,2020-02-15T06:59:40Z +5211,2005-07-09T11:26:50Z,2216,241,2005-07-16T15:30:50Z,1,2020-02-15T06:59:40Z +5212,2005-07-09T11:37:47Z,3240,400,2005-07-15T14:42:47Z,1,2020-02-15T06:59:40Z +5213,2005-07-09T11:39:43Z,3708,552,2005-07-18T16:20:43Z,2,2020-02-15T06:59:40Z +5214,2005-07-09T11:43:08Z,1657,290,2005-07-17T08:58:08Z,2,2020-02-15T06:59:40Z +5215,2005-07-09T11:47:58Z,3888,528,2005-07-18T09:58:58Z,1,2020-02-15T06:59:40Z +5216,2005-07-09T11:54:58Z,1644,515,2005-07-12T09:46:58Z,2,2020-02-15T06:59:40Z +5217,2005-07-09T11:56:50Z,4150,430,2005-07-17T07:10:50Z,1,2020-02-15T06:59:40Z +5218,2005-07-09T11:57:12Z,1121,83,2005-07-13T06:34:12Z,2,2020-02-15T06:59:40Z +5219,2005-07-09T11:57:55Z,3933,209,2005-07-15T09:43:55Z,2,2020-02-15T06:59:40Z +5220,2005-07-09T11:59:04Z,2577,435,2005-07-15T06:20:04Z,1,2020-02-15T06:59:40Z +5221,2005-07-09T12:02:23Z,2339,84,2005-07-16T15:43:23Z,1,2020-02-15T06:59:40Z +5222,2005-07-09T12:05:45Z,2508,400,2005-07-13T12:11:45Z,1,2020-02-15T06:59:40Z +5223,2005-07-09T12:06:03Z,2335,72,2005-07-17T15:50:03Z,1,2020-02-15T06:59:40Z +5224,2005-07-09T12:07:27Z,279,311,2005-07-17T08:59:27Z,1,2020-02-15T06:59:40Z +5225,2005-07-09T12:10:16Z,703,445,2005-07-12T09:55:16Z,2,2020-02-15T06:59:40Z +5226,2005-07-09T12:10:44Z,3128,218,2005-07-11T17:32:44Z,2,2020-02-15T06:59:40Z +5227,2005-07-09T12:16:39Z,1862,362,2005-07-18T15:38:39Z,2,2020-02-15T06:59:40Z +5228,2005-07-09T12:26:01Z,622,195,2005-07-14T13:31:01Z,2,2020-02-15T06:59:40Z +5229,2005-07-09T12:30:18Z,4472,372,2005-07-14T15:31:18Z,2,2020-02-15T06:59:40Z +5230,2005-07-09T12:30:23Z,3707,51,2005-07-13T08:41:23Z,1,2020-02-15T06:59:40Z +5231,2005-07-09T12:35:02Z,1275,405,2005-07-10T09:22:02Z,1,2020-02-15T06:59:40Z +5232,2005-07-09T12:35:08Z,3353,175,2005-07-14T14:55:08Z,1,2020-02-15T06:59:40Z +5233,2005-07-09T12:44:26Z,1401,131,2005-07-15T12:31:26Z,1,2020-02-15T06:59:40Z +5234,2005-07-09T12:44:47Z,4182,398,2005-07-17T10:02:47Z,1,2020-02-15T06:59:40Z +5235,2005-07-09T12:54:25Z,1044,122,2005-07-18T16:28:25Z,1,2020-02-15T06:59:40Z +5236,2005-07-09T12:56:29Z,1215,519,2005-07-13T08:26:29Z,1,2020-02-15T06:59:40Z +5237,2005-07-09T12:56:58Z,2341,84,2005-07-11T15:41:58Z,1,2020-02-15T06:59:40Z +5238,2005-07-09T13:11:14Z,3297,100,2005-07-10T07:27:14Z,2,2020-02-15T06:59:40Z +5239,2005-07-09T13:12:35Z,380,497,2005-07-10T13:37:35Z,1,2020-02-15T06:59:40Z +5240,2005-07-09T13:14:48Z,1378,350,2005-07-10T18:47:48Z,2,2020-02-15T06:59:40Z +5241,2005-07-09T13:19:14Z,4079,314,2005-07-11T14:32:14Z,1,2020-02-15T06:59:40Z +5242,2005-07-09T13:20:25Z,848,12,2005-07-18T07:38:25Z,1,2020-02-15T06:59:40Z +5243,2005-07-09T13:22:08Z,122,587,2005-07-16T09:25:08Z,1,2020-02-15T06:59:40Z +5244,2005-07-09T13:24:07Z,3726,1,2005-07-14T14:01:07Z,2,2020-02-15T06:59:40Z +5245,2005-07-09T13:24:14Z,3547,115,2005-07-12T11:16:14Z,1,2020-02-15T06:59:40Z +5246,2005-07-09T13:25:18Z,3548,276,2005-07-13T18:38:18Z,1,2020-02-15T06:59:40Z +5247,2005-07-09T13:26:28Z,1186,298,2005-07-12T14:00:28Z,2,2020-02-15T06:59:40Z +5248,2005-07-09T13:29:44Z,246,279,2005-07-12T18:12:44Z,1,2020-02-15T06:59:40Z +5249,2005-07-09T13:33:53Z,1950,389,2005-07-11T12:55:53Z,2,2020-02-15T06:59:40Z +5250,2005-07-09T13:35:32Z,2162,384,2005-07-13T12:19:32Z,1,2020-02-15T06:59:40Z +5251,2005-07-09T13:36:10Z,478,474,2005-07-15T11:40:10Z,1,2020-02-15T06:59:40Z +5252,2005-07-09T13:40:44Z,2581,335,2005-07-14T09:41:44Z,1,2020-02-15T06:59:40Z +5253,2005-07-09T13:41:17Z,2241,532,2005-07-17T17:09:17Z,1,2020-02-15T06:59:40Z +5254,2005-07-09T13:50:11Z,654,263,2005-07-13T09:07:11Z,1,2020-02-15T06:59:40Z +5255,2005-07-09T13:51:08Z,4418,313,2005-07-17T13:58:08Z,2,2020-02-15T06:59:40Z +5256,2005-07-09T13:55:45Z,4226,273,2005-07-15T17:02:45Z,1,2020-02-15T06:59:40Z +5257,2005-07-09T13:56:43Z,286,292,2005-07-10T14:26:43Z,2,2020-02-15T06:59:40Z +5258,2005-07-09T13:56:56Z,3125,207,2005-07-11T16:01:56Z,2,2020-02-15T06:59:40Z +5259,2005-07-09T14:02:50Z,1310,207,2005-07-11T19:13:50Z,2,2020-02-15T06:59:40Z +5260,2005-07-09T14:05:45Z,3143,75,2005-07-14T08:41:45Z,2,2020-02-15T06:59:40Z +5261,2005-07-09T14:06:56Z,2899,105,2005-07-11T14:21:56Z,2,2020-02-15T06:59:40Z +5262,2005-07-09T14:08:01Z,1092,240,2005-07-12T16:48:01Z,1,2020-02-15T06:59:40Z +5263,2005-07-09T14:10:36Z,119,406,2005-07-12T15:07:36Z,1,2020-02-15T06:59:40Z +5264,2005-07-09T14:11:28Z,3307,545,2005-07-12T18:24:28Z,2,2020-02-15T06:59:40Z +5265,2005-07-09T14:15:01Z,4482,139,2005-07-18T14:43:01Z,2,2020-02-15T06:59:40Z +5266,2005-07-09T14:17:40Z,2409,222,2005-07-16T10:42:40Z,1,2020-02-15T06:59:40Z +5267,2005-07-09T14:21:10Z,2242,233,2005-07-15T12:02:10Z,1,2020-02-15T06:59:40Z +5268,2005-07-09T14:22:43Z,1083,119,2005-07-12T08:27:43Z,1,2020-02-15T06:59:40Z +5269,2005-07-09T14:23:05Z,3886,230,2005-07-17T14:03:05Z,1,2020-02-15T06:59:40Z +5270,2005-07-09T14:23:46Z,1523,128,2005-07-13T15:04:46Z,1,2020-02-15T06:59:40Z +5271,2005-07-09T14:25:01Z,2691,522,2005-07-16T17:28:01Z,1,2020-02-15T06:59:40Z +5272,2005-07-09T14:26:01Z,1547,90,2005-07-12T20:20:01Z,1,2020-02-15T06:59:40Z +5273,2005-07-09T14:31:24Z,4570,38,2005-07-14T13:27:24Z,2,2020-02-15T06:59:40Z +5274,2005-07-09T14:34:09Z,4579,108,2005-07-14T13:02:09Z,1,2020-02-15T06:59:40Z +5275,2005-07-09T14:34:18Z,729,249,2005-07-13T12:56:18Z,2,2020-02-15T06:59:40Z +5276,2005-07-09T14:35:13Z,2524,521,2005-07-12T14:24:13Z,2,2020-02-15T06:59:40Z +5277,2005-07-09T14:40:42Z,2026,332,2005-07-16T14:18:42Z,2,2020-02-15T06:59:40Z +5278,2005-07-09T14:44:23Z,2573,532,2005-07-15T10:48:23Z,1,2020-02-15T06:59:40Z +5279,2005-07-09T14:46:36Z,709,64,2005-07-17T10:04:36Z,2,2020-02-15T06:59:40Z +5280,2005-07-09T14:55:07Z,1177,351,2005-07-12T10:05:07Z,2,2020-02-15T06:59:40Z +5281,2005-07-09T14:55:07Z,1966,71,2005-07-13T15:24:07Z,2,2020-02-15T06:59:40Z +5282,2005-07-09T15:01:23Z,4386,226,2005-07-13T11:06:23Z,2,2020-02-15T06:59:40Z +5283,2005-07-09T15:07:17Z,644,295,2005-07-17T09:52:17Z,2,2020-02-15T06:59:40Z +5284,2005-07-09T15:08:21Z,1036,585,2005-07-16T09:53:21Z,2,2020-02-15T06:59:40Z +5285,2005-07-09T15:10:44Z,676,468,2005-07-16T13:02:44Z,2,2020-02-15T06:59:40Z +5286,2005-07-09T15:11:41Z,483,498,2005-07-10T19:19:41Z,2,2020-02-15T06:59:40Z +5287,2005-07-09T15:11:54Z,3110,523,2005-07-16T16:05:54Z,2,2020-02-15T06:59:40Z +5288,2005-07-09T15:13:07Z,850,120,2005-07-16T12:39:07Z,1,2020-02-15T06:59:40Z +5289,2005-07-09T15:14:08Z,4336,30,2005-07-12T12:51:08Z,2,2020-02-15T06:59:40Z +5290,2005-07-09T15:14:47Z,277,50,2005-07-11T20:30:47Z,2,2020-02-15T06:59:40Z +5291,2005-07-09T15:15:02Z,1367,194,2005-07-15T10:22:02Z,2,2020-02-15T06:59:40Z +5292,2005-07-09T15:16:54Z,3195,62,2005-07-11T15:21:54Z,1,2020-02-15T06:59:40Z +5293,2005-07-09T15:17:23Z,2880,542,2005-07-11T11:23:23Z,2,2020-02-15T06:59:40Z +5294,2005-07-09T15:23:42Z,3237,22,2005-07-15T15:28:42Z,2,2020-02-15T06:59:40Z +5295,2005-07-09T15:25:06Z,4460,86,2005-07-10T12:40:06Z,1,2020-02-15T06:59:40Z +5296,2005-07-09T15:26:27Z,495,109,2005-07-15T10:03:27Z,2,2020-02-15T06:59:40Z +5297,2005-07-09T15:32:29Z,3434,202,2005-07-14T14:58:29Z,1,2020-02-15T06:59:40Z +5298,2005-07-09T15:36:17Z,3491,149,2005-07-18T19:07:17Z,2,2020-02-15T06:59:40Z +5299,2005-07-09T15:38:09Z,4416,469,2005-07-15T16:39:09Z,2,2020-02-15T06:59:40Z +5300,2005-07-09T15:40:46Z,2520,8,2005-07-15T13:46:46Z,1,2020-02-15T06:59:40Z +5301,2005-07-09T15:42:10Z,245,459,2005-07-16T21:27:10Z,2,2020-02-15T06:59:40Z +5302,2005-07-09T15:42:36Z,4270,72,2005-07-10T21:04:36Z,2,2020-02-15T06:59:40Z +5303,2005-07-09T15:44:09Z,3572,350,2005-07-15T18:09:09Z,2,2020-02-15T06:59:40Z +5304,2005-07-09T15:48:06Z,4411,51,2005-07-14T19:29:06Z,1,2020-02-15T06:59:40Z +5305,2005-07-09T15:55:36Z,625,309,2005-07-18T15:59:36Z,1,2020-02-15T06:59:40Z +5306,2005-07-09T15:56:45Z,2221,409,2005-07-15T19:02:45Z,2,2020-02-15T06:59:40Z +5307,2005-07-09T15:57:15Z,2847,32,2005-07-17T13:42:15Z,2,2020-02-15T06:59:40Z +5308,2005-07-09T15:58:38Z,1684,52,2005-07-15T13:55:38Z,2,2020-02-15T06:59:40Z +5309,2005-07-09T16:00:16Z,4026,338,2005-07-17T17:56:16Z,1,2020-02-15T06:59:40Z +5310,2005-07-09T16:00:34Z,1565,24,2005-07-12T12:45:34Z,2,2020-02-15T06:59:40Z +5311,2005-07-09T16:02:54Z,986,107,2005-07-18T10:44:54Z,1,2020-02-15T06:59:40Z +5312,2005-07-09T16:03:09Z,2123,258,2005-07-13T16:41:09Z,2,2020-02-15T06:59:40Z +5313,2005-07-09T16:04:45Z,1885,52,2005-07-17T18:53:45Z,2,2020-02-15T06:59:40Z +5314,2005-07-09T16:05:28Z,3770,372,2005-07-10T18:18:28Z,1,2020-02-15T06:59:40Z +5315,2005-07-09T16:09:19Z,585,134,2005-07-14T21:10:19Z,1,2020-02-15T06:59:40Z +5316,2005-07-09T16:09:42Z,3856,438,2005-07-11T15:20:42Z,1,2020-02-15T06:59:40Z +5317,2005-07-09T16:10:25Z,2693,14,2005-07-18T17:10:25Z,2,2020-02-15T06:59:40Z +5318,2005-07-09T16:11:33Z,1738,472,2005-07-14T12:49:33Z,2,2020-02-15T06:59:40Z +5319,2005-07-09T16:17:44Z,1899,282,2005-07-18T16:35:44Z,1,2020-02-15T06:59:40Z +5320,2005-07-09T16:23:32Z,3140,228,2005-07-18T18:16:32Z,1,2020-02-15T06:59:40Z +5321,2005-07-09T16:26:33Z,3347,245,2005-07-15T15:05:33Z,2,2020-02-15T06:59:40Z +5322,2005-07-09T16:28:13Z,4420,432,2005-07-18T14:53:13Z,1,2020-02-15T06:59:40Z +5323,2005-07-09T16:34:07Z,1302,35,2005-07-13T21:37:07Z,1,2020-02-15T06:59:40Z +5324,2005-07-09T16:34:18Z,4024,113,2005-07-15T12:35:18Z,2,2020-02-15T06:59:40Z +5325,2005-07-09T16:35:47Z,2703,492,2005-07-10T11:52:47Z,1,2020-02-15T06:59:40Z +5326,2005-07-09T16:38:01Z,797,1,2005-07-13T18:02:01Z,1,2020-02-15T06:59:40Z +5327,2005-07-09T16:39:49Z,3657,547,2005-07-12T18:47:49Z,2,2020-02-15T06:59:40Z +5328,2005-07-09T16:48:29Z,2444,247,2005-07-17T20:20:29Z,2,2020-02-15T06:59:40Z +5329,2005-07-09T16:49:46Z,1628,402,2005-07-16T19:05:46Z,1,2020-02-15T06:59:40Z +5330,2005-07-09T16:53:57Z,3812,410,2005-07-18T19:54:57Z,1,2020-02-15T06:59:40Z +5331,2005-07-09T16:54:06Z,4181,447,2005-07-10T19:04:06Z,1,2020-02-15T06:59:40Z +5332,2005-07-09T16:59:23Z,3269,568,2005-07-10T16:01:23Z,2,2020-02-15T06:59:40Z +5333,2005-07-09T16:59:38Z,2142,419,2005-07-16T17:23:38Z,2,2020-02-15T06:59:40Z +5334,2005-07-09T17:00:13Z,3852,482,2005-07-11T15:50:13Z,1,2020-02-15T06:59:40Z +5335,2005-07-09T17:00:49Z,2353,588,2005-07-12T12:21:49Z,2,2020-02-15T06:59:40Z +5336,2005-07-09T17:01:08Z,4144,410,2005-07-11T19:22:08Z,2,2020-02-15T06:59:40Z +5337,2005-07-09T17:03:50Z,4168,343,2005-07-16T22:25:50Z,2,2020-02-15T06:59:40Z +5338,2005-07-09T17:07:07Z,3449,191,2005-07-14T11:15:07Z,1,2020-02-15T06:59:40Z +5339,2005-07-09T17:09:17Z,698,380,2005-07-10T21:07:17Z,2,2020-02-15T06:59:40Z +5340,2005-07-09T17:11:35Z,650,267,2005-07-17T17:59:35Z,2,2020-02-15T06:59:40Z +5341,2005-07-09T17:13:23Z,2522,8,2005-07-14T18:11:23Z,2,2020-02-15T06:59:40Z +5342,2005-07-09T17:20:03Z,3828,289,2005-07-18T12:44:03Z,2,2020-02-15T06:59:40Z +5343,2005-07-09T17:23:43Z,92,485,2005-07-18T22:14:43Z,1,2020-02-15T06:59:40Z +5344,2005-07-09T17:27:05Z,159,197,2005-07-10T15:51:05Z,2,2020-02-15T06:59:40Z +5345,2005-07-09T17:28:18Z,3055,348,2005-07-11T14:30:18Z,2,2020-02-15T06:59:40Z +5346,2005-07-09T17:29:01Z,2488,287,2005-07-14T12:47:01Z,2,2020-02-15T06:59:40Z +5347,2005-07-09T17:31:32Z,1293,246,2005-07-10T21:06:32Z,2,2020-02-15T06:59:40Z +5348,2005-07-09T17:34:11Z,3495,597,2005-07-15T18:32:11Z,2,2020-02-15T06:59:40Z +5349,2005-07-09T17:35:35Z,3139,161,2005-07-18T14:05:35Z,1,2020-02-15T06:59:40Z +5350,2005-07-09T17:39:30Z,724,129,2005-07-11T16:43:30Z,2,2020-02-15T06:59:40Z +5351,2005-07-09T17:40:52Z,3722,112,2005-07-14T16:55:52Z,2,2020-02-15T06:59:40Z +5352,2005-07-09T17:54:58Z,908,372,2005-07-15T16:20:58Z,1,2020-02-15T06:59:40Z +5353,2005-07-09T18:04:29Z,2994,196,2005-07-15T17:46:29Z,2,2020-02-15T06:59:40Z +5354,2005-07-09T18:04:33Z,951,354,2005-07-15T18:19:33Z,1,2020-02-15T06:59:40Z +5355,2005-07-09T18:07:17Z,2458,100,2005-07-16T20:33:17Z,2,2020-02-15T06:59:40Z +5356,2005-07-09T18:08:28Z,2905,188,2005-07-14T14:11:28Z,2,2020-02-15T06:59:40Z +5357,2005-07-09T18:08:59Z,1988,411,2005-07-16T17:28:59Z,2,2020-02-15T06:59:40Z +5358,2005-07-09T18:09:21Z,3764,71,2005-07-14T23:59:21Z,2,2020-02-15T06:59:40Z +5359,2005-07-09T18:10:52Z,4392,453,2005-07-18T13:34:52Z,2,2020-02-15T06:59:40Z +5360,2005-07-09T18:14:03Z,679,562,2005-07-10T15:17:03Z,2,2020-02-15T06:59:40Z +5361,2005-07-09T18:15:32Z,2045,279,2005-07-17T23:32:32Z,2,2020-02-15T06:59:40Z +5362,2005-07-09T18:16:08Z,24,266,2005-07-18T18:27:08Z,1,2020-02-15T06:59:40Z +5363,2005-07-09T18:18:49Z,2180,425,2005-07-14T22:16:49Z,1,2020-02-15T06:59:40Z +5364,2005-07-09T18:24:48Z,2746,366,2005-07-10T12:30:48Z,1,2020-02-15T06:59:40Z +5365,2005-07-09T18:27:00Z,4469,527,2005-07-11T14:18:00Z,1,2020-02-15T06:59:40Z +5366,2005-07-09T18:28:37Z,886,187,2005-07-13T20:45:37Z,1,2020-02-15T06:59:40Z +5367,2005-07-09T18:39:15Z,1446,485,2005-07-16T14:19:15Z,2,2020-02-15T06:59:40Z +5368,2005-07-09T18:41:59Z,4429,502,2005-07-16T00:32:59Z,2,2020-02-15T06:59:40Z +5369,2005-07-09T18:42:16Z,1550,538,2005-07-12T18:16:16Z,2,2020-02-15T06:59:40Z +5370,2005-07-09T18:43:19Z,2193,248,2005-07-15T19:59:19Z,1,2020-02-15T06:59:40Z +5371,2005-07-09T18:47:48Z,789,425,2005-07-14T14:39:48Z,2,2020-02-15T06:59:40Z +5372,2005-07-09T18:48:39Z,3551,148,2005-07-11T17:40:39Z,1,2020-02-15T06:59:40Z +5373,2005-07-09T18:48:57Z,950,428,2005-07-10T16:34:57Z,1,2020-02-15T06:59:40Z +5374,2005-07-09T18:52:08Z,946,144,2005-07-16T16:34:08Z,1,2020-02-15T06:59:40Z +5375,2005-07-09T18:52:55Z,1407,558,2005-07-16T15:32:55Z,2,2020-02-15T06:59:40Z +5376,2005-07-09T18:54:08Z,1730,104,2005-07-17T22:01:08Z,1,2020-02-15T06:59:40Z +5377,2005-07-09T19:04:30Z,3118,578,2005-07-11T14:42:30Z,1,2020-02-15T06:59:40Z +5378,2005-07-09T19:05:56Z,1570,138,2005-07-10T18:03:56Z,2,2020-02-15T06:59:40Z +5379,2005-07-09T19:08:03Z,2110,475,2005-07-10T17:58:03Z,1,2020-02-15T06:59:40Z +5380,2005-07-09T19:08:44Z,3047,166,2005-07-11T20:09:44Z,1,2020-02-15T06:59:40Z +5381,2005-07-09T19:11:11Z,3033,332,2005-07-13T17:10:11Z,2,2020-02-15T06:59:40Z +5382,2005-07-09T19:12:57Z,78,586,2005-07-14T15:44:57Z,1,2020-02-15T06:59:40Z +5383,2005-07-09T19:14:32Z,573,14,2005-07-11T19:57:32Z,1,2020-02-15T06:59:40Z +5384,2005-07-09T19:17:46Z,1729,180,2005-07-12T13:50:46Z,1,2020-02-15T06:59:40Z +5385,2005-07-09T19:18:11Z,4291,112,2005-07-16T18:50:11Z,2,2020-02-15T06:59:40Z +5386,2005-07-09T19:19:09Z,721,594,2005-07-13T00:13:09Z,2,2020-02-15T06:59:40Z +5387,2005-07-09T19:25:14Z,4452,244,2005-07-11T21:00:14Z,1,2020-02-15T06:59:40Z +5388,2005-07-09T19:25:25Z,1546,332,2005-07-14T19:51:25Z,2,2020-02-15T06:59:40Z +5389,2005-07-09T19:25:45Z,3882,484,2005-07-17T13:31:45Z,1,2020-02-15T06:59:40Z +5390,2005-07-09T19:26:22Z,715,139,2005-07-14T22:46:22Z,1,2020-02-15T06:59:40Z +5391,2005-07-09T19:28:34Z,402,132,2005-07-18T01:07:34Z,1,2020-02-15T06:59:40Z +5392,2005-07-09T19:32:30Z,2552,499,2005-07-16T15:01:30Z,1,2020-02-15T06:59:40Z +5393,2005-07-09T19:35:12Z,1417,446,2005-07-11T14:00:12Z,1,2020-02-15T06:59:40Z +5394,2005-07-09T19:36:15Z,1828,83,2005-07-18T18:10:15Z,2,2020-02-15T06:59:40Z +5395,2005-07-09T19:42:37Z,4428,131,2005-07-10T15:39:37Z,1,2020-02-15T06:59:40Z +5396,2005-07-09T19:42:52Z,3795,559,2005-07-15T21:45:52Z,1,2020-02-15T06:59:40Z +5397,2005-07-09T19:43:51Z,4376,191,2005-07-17T00:11:51Z,1,2020-02-15T06:59:40Z +5398,2005-07-09T19:44:58Z,4352,199,2005-07-17T00:56:58Z,1,2020-02-15T06:59:40Z +5399,2005-07-09T19:52:44Z,261,67,2005-07-10T18:31:44Z,2,2020-02-15T06:59:40Z +5400,2005-07-09T19:56:40Z,3435,192,2005-07-14T20:43:40Z,2,2020-02-15T06:59:40Z +5401,2005-07-09T19:59:10Z,431,43,2005-07-11T23:21:10Z,2,2020-02-15T06:59:40Z +5402,2005-07-09T20:01:58Z,4450,379,2005-07-10T14:07:58Z,1,2020-02-15T06:59:40Z +5403,2005-07-09T20:07:09Z,3991,36,2005-07-12T18:33:09Z,1,2020-02-15T06:59:40Z +5404,2005-07-09T20:10:43Z,3685,236,2005-07-13T15:16:43Z,1,2020-02-15T06:59:40Z +5405,2005-07-09T20:11:49Z,799,45,2005-07-18T18:37:49Z,2,2020-02-15T06:59:40Z +5406,2005-07-09T20:13:23Z,1322,563,2005-07-11T22:05:23Z,2,2020-02-15T06:59:40Z +5407,2005-07-09T20:16:07Z,3641,475,2005-07-14T21:41:07Z,2,2020-02-15T06:59:40Z +5408,2005-07-09T20:16:51Z,3162,144,2005-07-18T22:19:51Z,1,2020-02-15T06:59:40Z +5409,2005-07-09T20:17:19Z,3538,446,2005-07-13T23:30:19Z,1,2020-02-15T06:59:40Z +5410,2005-07-09T20:21:10Z,2261,281,2005-07-18T21:43:10Z,2,2020-02-15T06:59:40Z +5411,2005-07-09T20:23:38Z,4292,304,2005-07-16T01:17:38Z,2,2020-02-15T06:59:40Z +5412,2005-07-09T20:23:52Z,3174,458,2005-07-18T18:40:52Z,1,2020-02-15T06:59:40Z +5413,2005-07-09T20:28:42Z,2056,167,2005-07-10T19:23:42Z,2,2020-02-15T06:59:40Z +5414,2005-07-09T20:29:36Z,1201,174,2005-07-13T01:55:36Z,2,2020-02-15T06:59:40Z +5415,2005-07-09T20:30:03Z,4413,475,2005-07-18T00:20:03Z,1,2020-02-15T06:59:40Z +5416,2005-07-09T20:33:50Z,568,219,2005-07-14T01:50:50Z,2,2020-02-15T06:59:40Z +5417,2005-07-09T20:34:09Z,3569,265,2005-07-14T00:36:09Z,2,2020-02-15T06:59:40Z +5418,2005-07-09T20:41:35Z,55,114,2005-07-14T00:15:35Z,1,2020-02-15T06:59:40Z +5419,2005-07-09T20:47:36Z,1516,226,2005-07-12T01:36:36Z,1,2020-02-15T06:59:40Z +5420,2005-07-09T20:48:42Z,1739,80,2005-07-15T21:35:42Z,2,2020-02-15T06:59:40Z +5421,2005-07-09T20:49:12Z,2437,33,2005-07-10T16:30:12Z,1,2020-02-15T06:59:40Z +5422,2005-07-09T20:55:47Z,436,409,2005-07-15T15:15:47Z,2,2020-02-15T06:59:40Z +5423,2005-07-09T20:56:48Z,1952,440,2005-07-17T14:58:48Z,2,2020-02-15T06:59:40Z +5424,2005-07-09T20:59:09Z,3694,72,2005-07-12T00:05:09Z,2,2020-02-15T06:59:40Z +5425,2005-07-09T21:02:26Z,531,37,2005-07-16T23:38:26Z,2,2020-02-15T06:59:40Z +5426,2005-07-09T21:04:47Z,251,438,2005-07-17T00:55:47Z,1,2020-02-15T06:59:40Z +5427,2005-07-09T21:12:26Z,3197,499,2005-07-14T01:02:26Z,1,2020-02-15T06:59:40Z +5428,2005-07-09T21:12:50Z,3109,346,2005-07-14T16:25:50Z,2,2020-02-15T06:59:40Z +5429,2005-07-09T21:14:03Z,2467,105,2005-07-18T01:33:03Z,1,2020-02-15T06:59:40Z +5430,2005-07-09T21:19:54Z,1441,173,2005-07-15T22:53:54Z,1,2020-02-15T06:59:40Z +5431,2005-07-09T21:21:11Z,2780,213,2005-07-10T21:16:11Z,1,2020-02-15T06:59:40Z +5432,2005-07-09T21:21:25Z,1958,64,2005-07-14T21:34:25Z,2,2020-02-15T06:59:40Z +5433,2005-07-09T21:22:00Z,2679,349,2005-07-10T21:18:00Z,2,2020-02-15T06:59:40Z +5434,2005-07-09T21:25:20Z,3790,334,2005-07-15T03:12:20Z,2,2020-02-15T06:59:40Z +5435,2005-07-09T21:28:07Z,2884,273,2005-07-18T21:16:07Z,2,2020-02-15T06:59:40Z +5436,2005-07-09T21:31:11Z,2364,89,2005-07-13T16:59:11Z,2,2020-02-15T06:59:40Z +5437,2005-07-09T21:32:29Z,3532,26,2005-07-15T00:27:29Z,2,2020-02-15T06:59:40Z +5438,2005-07-09T21:34:32Z,487,241,2005-07-16T02:21:32Z,2,2020-02-15T06:59:40Z +5439,2005-07-09T21:39:35Z,1993,58,2005-07-13T17:45:35Z,2,2020-02-15T06:59:40Z +5440,2005-07-09T21:45:17Z,138,332,2005-07-11T22:43:17Z,2,2020-02-15T06:59:40Z +5441,2005-07-09T21:52:05Z,3913,7,2005-07-17T02:54:05Z,1,2020-02-15T06:59:40Z +5442,2005-07-09T21:55:19Z,3093,29,2005-07-19T01:18:19Z,2,2020-02-15T06:59:40Z +5443,2005-07-09T21:56:09Z,2951,137,2005-07-16T00:33:09Z,2,2020-02-15T06:59:40Z +5444,2005-07-09T21:58:57Z,2968,10,2005-07-11T03:09:57Z,2,2020-02-15T06:59:40Z +5445,2005-07-09T21:59:41Z,565,578,2005-07-15T00:40:41Z,1,2020-02-15T06:59:40Z +5446,2005-07-09T21:59:55Z,2769,454,2005-07-11T01:45:55Z,2,2020-02-15T06:59:40Z +5447,2005-07-09T22:09:28Z,2530,473,2005-07-18T20:03:28Z,2,2020-02-15T06:59:40Z +5448,2005-07-09T22:11:14Z,646,463,2005-07-15T21:08:14Z,2,2020-02-15T06:59:40Z +5449,2005-07-09T22:12:01Z,921,261,2005-07-18T01:18:01Z,2,2020-02-15T06:59:40Z +5450,2005-07-09T22:13:25Z,2356,328,2005-07-13T23:28:25Z,1,2020-02-15T06:59:40Z +5451,2005-07-09T22:22:10Z,3484,39,2005-07-11T02:43:10Z,1,2020-02-15T06:59:40Z +5452,2005-07-09T22:23:21Z,2036,80,2005-07-17T00:20:21Z,1,2020-02-15T06:59:40Z +5453,2005-07-09T22:24:11Z,1780,106,2005-07-19T04:08:11Z,1,2020-02-15T06:59:40Z +5454,2005-07-09T22:24:25Z,3049,97,2005-07-11T01:52:25Z,1,2020-02-15T06:59:40Z +5455,2005-07-09T22:28:45Z,1955,464,2005-07-18T02:50:45Z,2,2020-02-15T06:59:40Z +5456,2005-07-09T22:31:45Z,3003,360,2005-07-12T03:53:45Z,1,2020-02-15T06:59:40Z +5457,2005-07-09T22:33:14Z,4179,433,2005-07-12T02:30:14Z,1,2020-02-15T06:59:40Z +5458,2005-07-09T22:35:49Z,2203,521,2005-07-16T22:55:49Z,1,2020-02-15T06:59:40Z +5459,2005-07-09T22:43:56Z,1847,168,2005-07-12T18:05:56Z,1,2020-02-15T06:59:40Z +5460,2005-07-09T22:46:14Z,2410,38,2005-07-12T21:26:14Z,2,2020-02-15T06:59:40Z +5461,2005-07-09T22:48:04Z,53,244,2005-07-10T17:56:04Z,2,2020-02-15T06:59:40Z +5462,2005-07-09T22:56:53Z,871,583,2005-07-11T21:50:53Z,2,2020-02-15T06:59:40Z +5463,2005-07-09T22:57:02Z,601,374,2005-07-11T03:10:02Z,1,2020-02-15T06:59:40Z +5464,2005-07-09T22:58:14Z,3692,434,2005-07-15T02:48:14Z,1,2020-02-15T06:59:40Z +5465,2005-07-09T23:01:13Z,723,503,2005-07-13T01:03:13Z,1,2020-02-15T06:59:40Z +5466,2005-07-09T23:03:21Z,2302,482,2005-07-10T20:11:21Z,2,2020-02-15T06:59:40Z +5467,2005-07-09T23:05:47Z,374,543,2005-07-16T17:06:47Z,2,2020-02-15T06:59:40Z +5468,2005-07-09T23:06:09Z,2196,81,2005-07-13T00:48:09Z,1,2020-02-15T06:59:40Z +5469,2005-07-09T23:08:07Z,2201,475,2005-07-13T19:13:07Z,1,2020-02-15T06:59:40Z +5470,2005-07-09T23:10:49Z,3254,325,2005-07-18T04:30:49Z,1,2020-02-15T06:59:40Z +5471,2005-07-09T23:11:52Z,4086,347,2005-07-13T02:08:52Z,2,2020-02-15T06:59:40Z +5472,2005-07-09T23:16:40Z,865,165,2005-07-10T18:43:40Z,2,2020-02-15T06:59:40Z +5473,2005-07-09T23:19:11Z,4283,51,2005-07-19T02:30:11Z,2,2020-02-15T06:59:40Z +5474,2005-07-09T23:23:57Z,3608,375,2005-07-15T03:11:57Z,1,2020-02-15T06:59:40Z +5475,2005-07-09T23:31:38Z,726,219,2005-07-12T03:51:38Z,1,2020-02-15T06:59:40Z +5476,2005-07-09T23:37:09Z,1199,427,2005-07-15T23:57:09Z,1,2020-02-15T06:59:40Z +5477,2005-07-09T23:43:49Z,994,542,2005-07-15T05:03:49Z,2,2020-02-15T06:59:40Z +5478,2005-07-09T23:45:15Z,3213,583,2005-07-15T22:48:15Z,1,2020-02-15T06:59:40Z +5479,2005-07-09T23:47:33Z,216,250,2005-07-13T01:09:33Z,1,2020-02-15T06:59:40Z +5480,2005-07-09T23:49:07Z,847,452,2005-07-12T00:15:07Z,1,2020-02-15T06:59:40Z +5481,2005-07-09T23:51:57Z,562,479,2005-07-11T05:28:57Z,2,2020-02-15T06:59:40Z +5482,2005-07-09T23:53:04Z,2136,460,2005-07-15T04:59:04Z,1,2020-02-15T06:59:40Z +5483,2005-07-09T23:54:09Z,4362,89,2005-07-17T23:36:09Z,1,2020-02-15T06:59:40Z +5484,2005-07-09T23:54:37Z,3248,495,2005-07-15T02:05:37Z,1,2020-02-15T06:59:40Z +5485,2005-07-09T23:55:25Z,3930,173,2005-07-14T04:08:25Z,1,2020-02-15T06:59:40Z +5486,2005-07-09T23:57:44Z,2864,538,2005-07-14T00:23:44Z,1,2020-02-15T06:59:40Z +5487,2005-07-10T00:01:50Z,1144,341,2005-07-10T20:43:50Z,1,2020-02-15T06:59:40Z +5488,2005-07-10T00:02:06Z,4262,173,2005-07-15T01:45:06Z,2,2020-02-15T06:59:40Z +5489,2005-07-10T00:07:03Z,2319,490,2005-07-15T19:52:03Z,1,2020-02-15T06:59:40Z +5490,2005-07-10T00:09:11Z,3044,367,2005-07-14T21:23:11Z,1,2020-02-15T06:59:40Z +5491,2005-07-10T00:09:45Z,2007,49,2005-07-11T02:25:45Z,1,2020-02-15T06:59:40Z +5492,2005-07-10T00:11:09Z,4524,558,2005-07-14T01:27:09Z,1,2020-02-15T06:59:40Z +5493,2005-07-10T00:11:44Z,2037,539,2005-07-15T19:24:44Z,2,2020-02-15T06:59:40Z +5494,2005-07-10T00:15:00Z,3087,139,2005-07-17T01:12:00Z,2,2020-02-15T06:59:40Z +5495,2005-07-10T00:16:54Z,2199,257,2005-07-19T01:22:54Z,2,2020-02-15T06:59:40Z +5496,2005-07-10T00:20:23Z,3182,369,2005-07-18T21:10:23Z,2,2020-02-15T06:59:40Z +5497,2005-07-10T00:23:23Z,4473,92,2005-07-16T03:54:23Z,1,2020-02-15T06:59:40Z +5498,2005-07-10T00:27:21Z,63,302,2005-07-13T20:11:21Z,2,2020-02-15T06:59:40Z +5499,2005-07-10T00:27:45Z,1525,127,2005-07-17T06:11:45Z,1,2020-02-15T06:59:40Z +5500,2005-07-10T00:28:17Z,3380,457,2005-07-15T19:09:17Z,1,2020-02-15T06:59:40Z +5501,2005-07-10T00:33:48Z,3979,372,2005-07-17T02:58:48Z,1,2020-02-15T06:59:40Z +5502,2005-07-10T00:34:15Z,3712,243,2005-07-11T21:44:15Z,1,2020-02-15T06:59:40Z +5503,2005-07-10T00:35:37Z,3892,262,2005-07-12T20:29:37Z,1,2020-02-15T06:59:40Z +5504,2005-07-10T00:36:38Z,3053,455,2005-07-16T19:36:38Z,1,2020-02-15T06:59:40Z +5505,2005-07-10T00:38:48Z,896,253,2005-07-12T03:12:48Z,2,2020-02-15T06:59:40Z +5506,2005-07-10T00:45:48Z,2432,117,2005-07-18T20:35:48Z,2,2020-02-15T06:59:40Z +5507,2005-07-10T00:49:04Z,716,399,2005-07-15T22:06:04Z,2,2020-02-15T06:59:40Z +5508,2005-07-10T00:50:01Z,2977,345,2005-07-16T19:07:01Z,1,2020-02-15T06:59:40Z +5509,2005-07-10T00:54:46Z,1142,102,2005-07-16T05:10:46Z,1,2020-02-15T06:59:40Z +5510,2005-07-10T00:58:37Z,1298,67,2005-07-17T22:02:37Z,2,2020-02-15T06:59:40Z +5511,2005-07-10T01:00:00Z,3678,301,2005-07-12T20:44:00Z,1,2020-02-15T06:59:40Z +5512,2005-07-10T01:05:38Z,4470,405,2005-07-17T20:47:38Z,1,2020-02-15T06:59:40Z +5513,2005-07-10T01:05:41Z,2558,356,2005-07-11T02:05:41Z,2,2020-02-15T06:59:40Z +5514,2005-07-10T01:09:42Z,1824,522,2005-07-17T05:47:42Z,1,2020-02-15T06:59:40Z +5515,2005-07-10T01:12:44Z,3772,39,2005-07-13T00:39:44Z,1,2020-02-15T06:59:40Z +5516,2005-07-10T01:13:52Z,1902,581,2005-07-15T22:56:52Z,1,2020-02-15T06:59:40Z +5517,2005-07-10T01:15:00Z,3689,42,2005-07-19T01:59:00Z,1,2020-02-15T06:59:40Z +5518,2005-07-10T01:15:11Z,3340,451,2005-07-18T19:28:11Z,2,2020-02-15T06:59:40Z +5519,2005-07-10T01:18:32Z,1312,85,2005-07-11T20:39:32Z,1,2020-02-15T06:59:40Z +5520,2005-07-10T01:30:41Z,2527,501,2005-07-15T21:37:41Z,2,2020-02-15T06:59:40Z +5521,2005-07-10T01:31:22Z,1956,182,2005-07-17T05:42:22Z,2,2020-02-15T06:59:40Z +5522,2005-07-10T01:46:29Z,2622,573,2005-07-18T00:41:29Z,2,2020-02-15T06:59:40Z +5523,2005-07-10T01:47:55Z,2233,125,2005-07-18T22:25:55Z,1,2020-02-15T06:59:40Z +5524,2005-07-10T01:49:24Z,3596,386,2005-07-14T22:55:24Z,1,2020-02-15T06:59:40Z +5525,2005-07-10T02:03:08Z,3141,241,2005-07-18T07:32:08Z,1,2020-02-15T06:59:40Z +5526,2005-07-10T02:04:03Z,3909,144,2005-07-16T22:15:03Z,2,2020-02-15T06:59:40Z +5527,2005-07-10T02:06:01Z,4462,554,2005-07-15T00:55:01Z,2,2020-02-15T06:59:40Z +5528,2005-07-10T02:09:21Z,680,551,2005-07-17T06:22:21Z,2,2020-02-15T06:59:40Z +5529,2005-07-10T02:11:13Z,1652,590,2005-07-15T06:56:13Z,2,2020-02-15T06:59:40Z +5530,2005-07-10T02:13:49Z,2701,74,2005-07-18T08:01:49Z,2,2020-02-15T06:59:40Z +5531,2005-07-10T02:13:59Z,2992,173,2005-07-15T00:01:59Z,2,2020-02-15T06:59:40Z +5532,2005-07-10T02:17:31Z,983,522,2005-07-16T02:57:31Z,2,2020-02-15T06:59:40Z +5533,2005-07-10T02:19:28Z,2567,270,2005-07-11T01:37:28Z,1,2020-02-15T06:59:40Z +5534,2005-07-10T02:26:49Z,3251,156,2005-07-11T07:13:49Z,1,2020-02-15T06:59:40Z +5535,2005-07-10T02:27:42Z,1623,394,2005-07-12T21:13:42Z,1,2020-02-15T06:59:40Z +5536,2005-07-10T02:29:42Z,1919,195,2005-07-13T04:06:42Z,2,2020-02-15T06:59:40Z +5537,2005-07-10T02:35:41Z,1781,254,2005-07-13T07:11:41Z,2,2020-02-15T06:59:40Z +5538,2005-07-10T02:39:40Z,2119,367,2005-07-12T01:39:40Z,2,2020-02-15T06:59:40Z +5539,2005-07-10T02:42:58Z,3217,90,2005-07-16T02:27:58Z,2,2020-02-15T06:59:40Z +5540,2005-07-10T02:44:21Z,132,250,2005-07-11T07:13:21Z,1,2020-02-15T06:59:40Z +5541,2005-07-10T02:44:27Z,1211,135,2005-07-13T04:13:27Z,2,2020-02-15T06:59:40Z +5542,2005-07-10T02:45:53Z,1713,105,2005-07-15T23:23:53Z,2,2020-02-15T06:59:40Z +5543,2005-07-10T02:48:03Z,1496,71,2005-07-17T05:49:03Z,2,2020-02-15T06:59:40Z +5544,2005-07-10T02:48:07Z,1014,316,2005-07-17T01:08:07Z,1,2020-02-15T06:59:40Z +5545,2005-07-10T02:50:29Z,118,236,2005-07-16T02:11:29Z,1,2020-02-15T06:59:40Z +5546,2005-07-10T02:50:37Z,2918,515,2005-07-16T08:22:37Z,1,2020-02-15T06:59:40Z +5547,2005-07-10T02:52:47Z,1432,519,2005-07-16T02:10:47Z,1,2020-02-15T06:59:40Z +5548,2005-07-10T02:56:45Z,2973,317,2005-07-13T01:33:45Z,2,2020-02-15T06:59:40Z +5549,2005-07-10T02:58:29Z,2685,163,2005-07-17T05:24:29Z,2,2020-02-15T06:59:40Z +5550,2005-07-10T02:58:35Z,1905,254,2005-07-16T02:38:35Z,2,2020-02-15T06:59:40Z +5551,2005-07-10T03:01:09Z,4238,44,2005-07-18T02:04:09Z,2,2020-02-15T06:59:40Z +5552,2005-07-10T03:01:19Z,2879,27,2005-07-13T06:53:19Z,2,2020-02-15T06:59:40Z +5553,2005-07-10T03:03:35Z,1686,6,2005-07-14T07:49:35Z,2,2020-02-15T06:59:40Z +5554,2005-07-10T03:03:38Z,4084,252,2005-07-17T00:00:38Z,2,2020-02-15T06:59:40Z +5555,2005-07-10T03:08:55Z,2551,79,2005-07-11T01:36:55Z,2,2020-02-15T06:59:40Z +5556,2005-07-10T03:10:17Z,4483,354,2005-07-14T02:47:17Z,1,2020-02-15T06:59:40Z +5557,2005-07-10T03:10:21Z,1433,346,2005-07-11T21:34:21Z,1,2020-02-15T06:59:40Z +5558,2005-07-10T03:12:08Z,1123,96,2005-07-14T03:09:08Z,2,2020-02-15T06:59:40Z +5559,2005-07-10T03:13:07Z,4122,496,2005-07-18T08:33:07Z,1,2020-02-15T06:59:40Z +5560,2005-07-10T03:13:24Z,720,231,2005-07-19T06:03:24Z,2,2020-02-15T06:59:40Z +5561,2005-07-10T03:15:24Z,1048,369,2005-07-15T06:46:24Z,1,2020-02-15T06:59:40Z +5562,2005-07-10T03:17:42Z,3604,300,2005-07-12T03:26:42Z,1,2020-02-15T06:59:40Z +5563,2005-07-10T03:21:02Z,2258,362,2005-07-14T07:40:02Z,1,2020-02-15T06:59:40Z +5564,2005-07-10T03:23:05Z,196,355,2005-07-16T07:46:05Z,2,2020-02-15T06:59:40Z +5565,2005-07-10T03:29:48Z,3368,14,2005-07-17T04:43:48Z,1,2020-02-15T06:59:40Z +5566,2005-07-10T03:30:17Z,1343,124,2005-07-13T06:32:17Z,1,2020-02-15T06:59:40Z +5567,2005-07-10T03:36:46Z,1616,147,2005-07-15T23:22:46Z,2,2020-02-15T06:59:40Z +5568,2005-07-10T03:36:56Z,1130,424,2005-07-11T08:35:56Z,2,2020-02-15T06:59:40Z +5569,2005-07-10T03:38:32Z,2835,69,2005-07-16T00:02:32Z,2,2020-02-15T06:59:40Z +5570,2005-07-10T03:46:47Z,2013,374,2005-07-17T09:28:47Z,1,2020-02-15T06:59:40Z +5571,2005-07-10T03:48:20Z,1084,76,2005-07-11T02:09:20Z,2,2020-02-15T06:59:40Z +5572,2005-07-10T03:49:00Z,2709,458,2005-07-14T01:25:00Z,1,2020-02-15T06:59:40Z +5573,2005-07-10T03:50:47Z,2957,170,2005-07-17T06:40:47Z,2,2020-02-15T06:59:40Z +5574,2005-07-10T03:54:38Z,2307,163,2005-07-19T07:20:38Z,2,2020-02-15T06:59:40Z +5575,2005-07-10T03:55:50Z,2316,107,2005-07-12T08:40:50Z,1,2020-02-15T06:59:40Z +5576,2005-07-10T03:57:05Z,1453,217,2005-07-13T02:16:05Z,2,2020-02-15T06:59:40Z +5577,2005-07-10T03:58:40Z,3779,266,2005-07-14T03:36:40Z,1,2020-02-15T06:59:40Z +5578,2005-07-10T04:00:31Z,4543,378,2005-07-16T08:06:31Z,2,2020-02-15T06:59:40Z +5579,2005-07-10T04:04:29Z,945,203,2005-07-14T04:31:29Z,1,2020-02-15T06:59:40Z +5580,2005-07-10T04:05:49Z,2753,521,2005-07-18T22:36:49Z,2,2020-02-15T06:59:40Z +5581,2005-07-10T04:06:06Z,3450,306,2005-07-15T08:31:06Z,2,2020-02-15T06:59:40Z +5582,2005-07-10T04:08:25Z,3341,305,2005-07-13T06:04:25Z,1,2020-02-15T06:59:40Z +5583,2005-07-10T04:08:48Z,1242,391,2005-07-19T07:59:48Z,1,2020-02-15T06:59:40Z +5584,2005-07-10T04:15:25Z,2606,289,2005-07-16T22:54:25Z,2,2020-02-15T06:59:40Z +5585,2005-07-10T04:15:43Z,3524,63,2005-07-15T08:24:43Z,1,2020-02-15T06:59:40Z +5586,2005-07-10T04:17:06Z,2965,427,2005-07-18T07:11:06Z,1,2020-02-15T06:59:40Z +5587,2005-07-10T04:17:25Z,4485,531,2005-07-15T01:41:25Z,1,2020-02-15T06:59:40Z +5588,2005-07-10T04:21:10Z,1166,535,2005-07-16T02:58:10Z,2,2020-02-15T06:59:40Z +5589,2005-07-10T04:22:58Z,3673,296,2005-07-10T23:13:58Z,1,2020-02-15T06:59:40Z +5590,2005-07-10T04:23:11Z,4442,407,2005-07-19T09:03:11Z,1,2020-02-15T06:59:40Z +5591,2005-07-10T04:25:03Z,378,374,2005-07-16T04:21:03Z,1,2020-02-15T06:59:40Z +5592,2005-07-10T04:26:13Z,2471,222,2005-07-19T02:32:13Z,2,2020-02-15T06:59:40Z +5593,2005-07-10T04:33:13Z,702,287,2005-07-17T08:44:13Z,2,2020-02-15T06:59:40Z +5594,2005-07-10T04:33:36Z,61,440,2005-07-12T08:13:36Z,2,2020-02-15T06:59:40Z +5595,2005-07-10T04:33:45Z,264,572,2005-07-16T04:04:45Z,1,2020-02-15T06:59:40Z +5596,2005-07-10T04:43:14Z,1662,240,2005-07-11T22:58:14Z,2,2020-02-15T06:59:40Z +5597,2005-07-10T04:47:57Z,4264,576,2005-07-17T01:54:57Z,2,2020-02-15T06:59:40Z +5598,2005-07-10T04:48:29Z,3412,397,2005-07-18T10:33:29Z,2,2020-02-15T06:59:40Z +5599,2005-07-10T04:52:04Z,3054,391,2005-07-13T05:19:04Z,1,2020-02-15T06:59:40Z +5600,2005-07-10T04:55:45Z,3713,138,2005-07-18T03:10:45Z,2,2020-02-15T06:59:40Z +5601,2005-07-10T04:56:55Z,3062,511,2005-07-11T00:14:55Z,1,2020-02-15T06:59:40Z +5602,2005-07-10T05:02:22Z,3544,253,2005-07-14T23:40:22Z,2,2020-02-15T06:59:40Z +5603,2005-07-10T05:04:54Z,1308,74,2005-07-12T01:54:54Z,2,2020-02-15T06:59:40Z +5604,2005-07-10T05:05:00Z,3702,78,2005-07-12T08:04:00Z,1,2020-02-15T06:59:40Z +5605,2005-07-10T05:06:45Z,2964,273,2005-07-15T02:51:45Z,2,2020-02-15T06:59:40Z +5606,2005-07-10T05:07:55Z,2896,51,2005-07-15T00:14:55Z,2,2020-02-15T06:59:40Z +5607,2005-07-10T05:08:10Z,4257,52,2005-07-15T00:40:10Z,2,2020-02-15T06:59:40Z +5608,2005-07-10T05:08:26Z,3854,384,2005-07-10T23:24:26Z,1,2020-02-15T06:59:40Z +5609,2005-07-10T05:09:46Z,1553,492,2005-07-12T10:38:46Z,1,2020-02-15T06:59:40Z +5610,2005-07-10T05:09:52Z,481,131,2005-07-13T07:08:52Z,2,2020-02-15T06:59:40Z +5611,2005-07-10T05:13:43Z,2832,424,2005-07-16T05:56:43Z,1,2020-02-15T06:59:40Z +5612,2005-07-10T05:15:12Z,2363,472,2005-07-17T09:50:12Z,2,2020-02-15T06:59:40Z +5613,2005-07-10T05:15:43Z,4517,220,2005-07-13T05:17:43Z,2,2020-02-15T06:59:40Z +5614,2005-07-10T05:16:56Z,133,371,2005-07-13T02:03:56Z,1,2020-02-15T06:59:40Z +5615,2005-07-10T05:18:51Z,1521,173,2005-07-17T11:05:51Z,2,2020-02-15T06:59:40Z +5616,2005-07-10T05:21:11Z,4014,238,2005-07-18T08:42:11Z,2,2020-02-15T06:59:40Z +5617,2005-07-10T05:28:50Z,2324,342,2005-07-12T00:02:50Z,2,2020-02-15T06:59:40Z +5618,2005-07-10T05:28:58Z,757,316,2005-07-18T01:38:58Z,1,2020-02-15T06:59:40Z +5619,2005-07-10T05:29:33Z,113,204,2005-07-15T00:40:33Z,1,2020-02-15T06:59:40Z +5620,2005-07-10T05:30:52Z,2980,92,2005-07-16T04:13:52Z,1,2020-02-15T06:59:40Z +5621,2005-07-10T05:34:10Z,552,310,2005-07-14T02:49:10Z,1,2020-02-15T06:59:40Z +5622,2005-07-10T05:39:37Z,1783,568,2005-07-15T00:48:37Z,2,2020-02-15T06:59:40Z +5623,2005-07-10T05:41:38Z,4464,229,2005-07-14T01:01:38Z,2,2020-02-15T06:59:40Z +5624,2005-07-10T05:43:16Z,1015,114,2005-07-12T05:33:16Z,1,2020-02-15T06:59:40Z +5625,2005-07-10T05:44:02Z,1751,114,2005-07-12T00:03:02Z,2,2020-02-15T06:59:40Z +5626,2005-07-10T05:49:35Z,3029,389,2005-07-15T08:05:35Z,1,2020-02-15T06:59:40Z +5627,2005-07-10T05:51:12Z,244,136,2005-07-17T09:56:12Z,2,2020-02-15T06:59:40Z +5628,2005-07-10T05:56:40Z,4040,87,2005-07-17T11:13:40Z,1,2020-02-15T06:59:40Z +5629,2005-07-10T06:02:25Z,400,546,2005-07-16T07:33:25Z,1,2020-02-15T06:59:40Z +5630,2005-07-10T06:08:14Z,1151,537,2005-07-14T03:37:14Z,2,2020-02-15T06:59:40Z +5631,2005-07-10T06:15:45Z,2095,595,2005-07-17T09:53:45Z,2,2020-02-15T06:59:40Z +5632,2005-07-10T06:17:06Z,2632,404,2005-07-17T02:32:06Z,2,2020-02-15T06:59:40Z +5633,2005-07-10T06:22:24Z,1056,480,2005-07-11T05:59:24Z,2,2020-02-15T06:59:40Z +5634,2005-07-10T06:25:48Z,323,487,2005-07-17T09:07:48Z,2,2020-02-15T06:59:40Z +5635,2005-07-10T06:28:39Z,1457,222,2005-07-17T08:35:39Z,2,2020-02-15T06:59:40Z +5636,2005-07-10T06:31:24Z,4116,2,2005-07-13T02:36:24Z,1,2020-02-15T06:59:40Z +5637,2005-07-10T06:31:37Z,4436,45,2005-07-17T01:16:37Z,1,2020-02-15T06:59:40Z +5638,2005-07-10T06:32:49Z,1528,570,2005-07-13T04:32:49Z,2,2020-02-15T06:59:40Z +5639,2005-07-10T06:33:39Z,2452,249,2005-07-19T07:47:39Z,1,2020-02-15T06:59:40Z +5640,2005-07-10T06:38:00Z,2706,574,2005-07-18T08:56:00Z,2,2020-02-15T06:59:40Z +5641,2005-07-10T06:43:43Z,3568,50,2005-07-15T06:33:43Z,1,2020-02-15T06:59:40Z +5642,2005-07-10T06:46:08Z,3630,299,2005-07-13T10:03:08Z,1,2020-02-15T06:59:40Z +5643,2005-07-10T06:49:00Z,796,34,2005-07-14T01:53:00Z,1,2020-02-15T06:59:40Z +5644,2005-07-10T06:57:44Z,4069,476,2005-07-15T03:52:44Z,2,2020-02-15T06:59:40Z +5645,2005-07-10T06:58:21Z,1586,333,2005-07-18T04:19:21Z,2,2020-02-15T06:59:40Z +5646,2005-07-10T07:08:09Z,1471,166,2005-07-14T03:48:09Z,2,2020-02-15T06:59:40Z +5647,2005-07-10T07:08:40Z,1466,128,2005-07-13T05:19:40Z,2,2020-02-15T06:59:40Z +5648,2005-07-10T07:09:21Z,4359,24,2005-07-16T07:23:21Z,2,2020-02-15T06:59:40Z +5649,2005-07-10T07:15:07Z,1349,336,2005-07-12T11:57:07Z,2,2020-02-15T06:59:40Z +5650,2005-07-10T07:17:01Z,2793,461,2005-07-15T11:59:01Z,1,2020-02-15T06:59:40Z +5651,2005-07-10T07:17:13Z,301,239,2005-07-15T12:13:13Z,2,2020-02-15T06:59:40Z +5652,2005-07-10T07:18:58Z,927,42,2005-07-19T07:52:58Z,1,2020-02-15T06:59:40Z +5653,2005-07-10T07:21:27Z,919,28,2005-07-16T01:58:27Z,1,2020-02-15T06:59:40Z +5654,2005-07-10T07:24:46Z,3419,490,2005-07-14T07:39:46Z,2,2020-02-15T06:59:40Z +5655,2005-07-10T07:31:06Z,3470,113,2005-07-17T08:22:06Z,1,2020-02-15T06:59:40Z +5656,2005-07-10T07:31:07Z,4138,159,2005-07-15T04:44:07Z,1,2020-02-15T06:59:40Z +5657,2005-07-10T07:33:43Z,4342,508,2005-07-18T01:55:43Z,2,2020-02-15T06:59:40Z +5658,2005-07-10T07:34:08Z,4402,165,2005-07-19T04:21:08Z,2,2020-02-15T06:59:40Z +5659,2005-07-10T07:45:40Z,4265,9,2005-07-15T05:20:40Z,1,2020-02-15T06:59:40Z +5660,2005-07-10T07:46:12Z,1404,171,2005-07-17T07:48:12Z,1,2020-02-15T06:59:40Z +5661,2005-07-10T07:53:51Z,1878,108,2005-07-14T12:57:51Z,2,2020-02-15T06:59:40Z +5662,2005-07-10T07:59:24Z,219,502,2005-07-14T13:06:24Z,1,2020-02-15T06:59:40Z +5663,2005-07-10T08:01:33Z,3078,530,2005-07-15T03:36:33Z,2,2020-02-15T06:59:40Z +5664,2005-07-10T08:04:41Z,2375,469,2005-07-17T10:29:41Z,1,2020-02-15T06:59:40Z +5665,2005-07-10T08:10:08Z,1175,415,2005-07-11T05:22:08Z,2,2020-02-15T06:59:40Z +5666,2005-07-10T08:10:29Z,2225,242,2005-07-17T04:54:29Z,2,2020-02-15T06:59:40Z +5667,2005-07-10T08:11:03Z,683,336,2005-07-15T08:23:03Z,2,2020-02-15T06:59:40Z +5668,2005-07-10T08:11:05Z,309,211,2005-07-16T13:15:05Z,1,2020-02-15T06:59:40Z +5669,2005-07-10T08:12:53Z,1173,323,2005-07-11T05:48:53Z,2,2020-02-15T06:59:40Z +5670,2005-07-10T08:14:52Z,610,121,2005-07-14T04:13:52Z,2,2020-02-15T06:59:40Z +5671,2005-07-10T08:18:22Z,1304,268,2005-07-11T07:03:22Z,2,2020-02-15T06:59:40Z +5672,2005-07-10T08:19:38Z,2326,158,2005-07-16T06:28:38Z,2,2020-02-15T06:59:40Z +5673,2005-07-10T08:21:54Z,4018,117,2005-07-11T05:54:54Z,2,2020-02-15T06:59:40Z +5674,2005-07-10T08:26:26Z,548,258,2005-07-16T02:43:26Z,1,2020-02-15T06:59:40Z +5675,2005-07-10T08:31:06Z,2134,376,2005-07-17T11:48:06Z,1,2020-02-15T06:59:40Z +5676,2005-07-10T08:38:32Z,3595,153,2005-07-13T10:11:32Z,1,2020-02-15T06:59:40Z +5677,2005-07-10T08:41:28Z,2647,105,2005-07-12T09:05:28Z,2,2020-02-15T06:59:40Z +5678,2005-07-10T08:42:42Z,4366,96,2005-07-19T03:48:42Z,1,2020-02-15T06:59:40Z +5679,2005-07-10T08:44:02Z,389,138,2005-07-14T05:30:02Z,1,2020-02-15T06:59:40Z +5680,2005-07-10T08:47:36Z,3503,199,2005-07-17T06:10:36Z,1,2020-02-15T06:59:40Z +5681,2005-07-10T08:48:39Z,4176,50,2005-07-18T07:17:39Z,1,2020-02-15T06:59:40Z +5682,2005-07-10T08:51:39Z,17,302,2005-07-12T14:44:39Z,2,2020-02-15T06:59:40Z +5683,2005-07-10T08:52:13Z,4433,285,2005-07-19T10:25:13Z,1,2020-02-15T06:59:40Z +5684,2005-07-10T08:59:03Z,99,132,2005-07-15T07:21:03Z,1,2020-02-15T06:59:40Z +5685,2005-07-10T09:01:38Z,1462,170,2005-07-17T10:58:38Z,1,2020-02-15T06:59:40Z +5686,2005-07-10T09:06:03Z,717,521,2005-07-11T10:59:03Z,2,2020-02-15T06:59:40Z +5687,2005-07-10T09:07:19Z,2170,363,2005-07-16T11:17:19Z,2,2020-02-15T06:59:40Z +5688,2005-07-10T09:16:08Z,3036,598,2005-07-15T09:44:08Z,1,2020-02-15T06:59:40Z +5689,2005-07-10T09:24:17Z,1731,381,2005-07-15T05:36:17Z,1,2020-02-15T06:59:40Z +5690,2005-07-10T09:26:49Z,1326,362,2005-07-19T07:17:49Z,2,2020-02-15T06:59:40Z +5691,2005-07-10T09:29:49Z,3526,466,2005-07-16T13:37:49Z,1,2020-02-15T06:59:40Z +5692,2005-07-10T09:32:22Z,59,244,2005-07-15T15:20:22Z,2,2020-02-15T06:59:40Z +5693,2005-07-10T09:35:43Z,2167,208,2005-07-12T08:05:43Z,2,2020-02-15T06:59:40Z +5694,2005-07-10T09:40:38Z,3476,57,2005-07-14T09:16:38Z,1,2020-02-15T06:59:40Z +5695,2005-07-10T09:43:40Z,440,459,2005-07-13T15:04:40Z,2,2020-02-15T06:59:40Z +5696,2005-07-10T09:44:32Z,128,96,2005-07-12T13:38:32Z,2,2020-02-15T06:59:40Z +5697,2005-07-10T09:44:44Z,934,515,2005-07-12T12:13:44Z,2,2020-02-15T06:59:40Z +5698,2005-07-10T09:47:00Z,639,46,2005-07-16T06:26:00Z,1,2020-02-15T06:59:40Z +5699,2005-07-10T09:48:04Z,958,211,2005-07-17T09:07:04Z,1,2020-02-15T06:59:40Z +5700,2005-07-10T09:49:42Z,3961,87,2005-07-19T04:20:42Z,1,2020-02-15T06:59:40Z +5701,2005-07-10T09:56:24Z,2395,91,2005-07-16T15:11:24Z,2,2020-02-15T06:59:40Z +5702,2005-07-10T10:00:01Z,3349,324,2005-07-11T15:29:01Z,1,2020-02-15T06:59:40Z +5703,2005-07-10T10:04:15Z,1585,132,2005-07-16T07:43:15Z,1,2020-02-15T06:59:40Z +5704,2005-07-10T10:06:29Z,2104,591,2005-07-17T10:48:29Z,1,2020-02-15T06:59:40Z +5705,2005-07-10T10:09:17Z,4030,300,2005-07-19T07:24:17Z,2,2020-02-15T06:59:40Z +5706,2005-07-10T10:21:46Z,3701,255,2005-07-16T04:37:46Z,2,2020-02-15T06:59:40Z +5707,2005-07-10T10:26:14Z,708,581,2005-07-18T06:19:14Z,1,2020-02-15T06:59:40Z +5708,2005-07-10T10:29:19Z,571,484,2005-07-18T06:50:19Z,1,2020-02-15T06:59:40Z +5709,2005-07-10T10:31:52Z,732,302,2005-07-12T10:47:52Z,1,2020-02-15T06:59:40Z +5710,2005-07-10T10:32:52Z,2843,265,2005-07-18T06:28:52Z,1,2020-02-15T06:59:40Z +5711,2005-07-10T10:37:20Z,3988,481,2005-07-13T11:20:20Z,1,2020-02-15T06:59:40Z +5712,2005-07-10T10:40:32Z,3480,304,2005-07-12T11:45:32Z,1,2020-02-15T06:59:40Z +5713,2005-07-10T10:46:15Z,1213,572,2005-07-19T14:34:15Z,1,2020-02-15T06:59:40Z +5714,2005-07-10T10:46:57Z,3706,17,2005-07-18T14:07:57Z,1,2020-02-15T06:59:40Z +5715,2005-07-10T10:48:03Z,1638,132,2005-07-18T11:27:03Z,1,2020-02-15T06:59:40Z +5716,2005-07-10T10:59:23Z,3416,102,2005-07-16T12:25:23Z,2,2020-02-15T06:59:40Z +5717,2005-07-10T11:02:03Z,529,15,2005-07-13T13:00:03Z,1,2020-02-15T06:59:40Z +5718,2005-07-10T11:03:20Z,3719,20,2005-07-19T15:38:20Z,2,2020-02-15T06:59:40Z +5719,2005-07-10T11:07:40Z,2100,94,2005-07-15T14:14:40Z,2,2020-02-15T06:59:40Z +5720,2005-07-10T11:09:12Z,576,339,2005-07-16T07:31:12Z,1,2020-02-15T06:59:40Z +5721,2005-07-10T11:09:35Z,2348,5,2005-07-17T16:41:35Z,2,2020-02-15T06:59:40Z +5722,2005-07-10T11:10:04Z,2890,556,2005-07-12T16:31:04Z,2,2020-02-15T06:59:40Z +5723,2005-07-10T11:14:48Z,605,33,2005-07-11T15:46:48Z,2,2020-02-15T06:59:40Z +5724,2005-07-10T11:18:12Z,3597,289,2005-07-16T14:53:12Z,2,2020-02-15T06:59:40Z +5725,2005-07-10T11:21:21Z,4293,426,2005-07-14T05:34:21Z,2,2020-02-15T06:59:40Z +5726,2005-07-10T11:22:08Z,3582,131,2005-07-13T05:55:08Z,1,2020-02-15T06:59:40Z +5727,2005-07-10T11:25:28Z,3338,550,2005-07-11T11:03:28Z,2,2020-02-15T06:59:40Z +5728,2005-07-10T11:26:14Z,636,335,2005-07-15T12:55:14Z,1,2020-02-15T06:59:40Z +5729,2005-07-10T11:27:25Z,4137,188,2005-07-15T06:13:25Z,2,2020-02-15T06:59:40Z +5730,2005-07-10T11:28:32Z,1903,301,2005-07-11T11:45:32Z,2,2020-02-15T06:59:40Z +5731,2005-07-10T11:31:52Z,2960,440,2005-07-14T11:44:52Z,1,2020-02-15T06:59:40Z +5732,2005-07-10T11:36:32Z,2833,597,2005-07-12T13:09:32Z,2,2020-02-15T06:59:40Z +5733,2005-07-10T11:37:24Z,3806,415,2005-07-11T12:34:24Z,2,2020-02-15T06:59:40Z +5734,2005-07-10T11:37:28Z,399,447,2005-07-16T11:10:28Z,1,2020-02-15T06:59:40Z +5735,2005-07-10T11:39:15Z,3259,65,2005-07-19T09:52:15Z,1,2020-02-15T06:59:40Z +5736,2005-07-10T11:45:48Z,1172,27,2005-07-13T16:40:48Z,1,2020-02-15T06:59:40Z +5737,2005-07-10T11:50:04Z,1118,218,2005-07-13T10:37:04Z,1,2020-02-15T06:59:40Z +5738,2005-07-10T11:50:51Z,200,187,2005-07-19T17:46:51Z,1,2020-02-15T06:59:40Z +5739,2005-07-10T11:51:50Z,163,219,2005-07-19T17:40:50Z,1,2020-02-15T06:59:40Z +5740,2005-07-10T11:51:58Z,2147,325,2005-07-12T07:53:58Z,2,2020-02-15T06:59:40Z +5741,2005-07-10T11:55:40Z,2041,513,2005-07-16T15:02:40Z,2,2020-02-15T06:59:40Z +5742,2005-07-10T11:56:18Z,3975,596,2005-07-19T06:59:18Z,2,2020-02-15T06:59:40Z +5743,2005-07-10T11:57:38Z,593,297,2005-07-19T15:38:38Z,2,2020-02-15T06:59:40Z +5744,2005-07-10T12:08:33Z,1372,437,2005-07-14T12:34:33Z,2,2020-02-15T06:59:40Z +5745,2005-07-10T12:10:11Z,41,305,2005-07-19T06:56:11Z,1,2020-02-15T06:59:40Z +5746,2005-07-10T12:15:12Z,3071,82,2005-07-16T07:02:12Z,1,2020-02-15T06:59:40Z +5747,2005-07-10T12:15:33Z,4562,583,2005-07-18T10:11:33Z,1,2020-02-15T06:59:40Z +5748,2005-07-10T12:19:59Z,1618,99,2005-07-12T12:59:59Z,1,2020-02-15T06:59:40Z +5749,2005-07-10T12:20:36Z,1768,304,2005-07-19T10:39:36Z,1,2020-02-15T06:59:40Z +5750,2005-07-10T12:20:41Z,3855,330,2005-07-17T08:25:41Z,2,2020-02-15T06:59:40Z +5751,2005-07-10T12:25:11Z,387,479,2005-07-11T15:23:11Z,1,2020-02-15T06:59:40Z +5752,2005-07-10T12:27:38Z,4444,86,2005-07-18T09:22:38Z,2,2020-02-15T06:59:40Z +5753,2005-07-10T12:29:43Z,3639,444,2005-07-17T12:50:43Z,2,2020-02-15T06:59:40Z +5754,2005-07-10T12:32:43Z,162,291,2005-07-12T13:11:43Z,2,2020-02-15T06:59:40Z +5755,2005-07-10T12:38:56Z,2760,2,2005-07-19T17:02:56Z,1,2020-02-15T06:59:40Z +5756,2005-07-10T12:39:28Z,130,183,2005-07-11T14:08:28Z,2,2020-02-15T06:59:40Z +5757,2005-07-10T12:40:17Z,1827,101,2005-07-12T14:02:17Z,1,2020-02-15T06:59:40Z +5758,2005-07-10T12:42:43Z,502,363,2005-07-16T10:18:43Z,2,2020-02-15T06:59:40Z +5759,2005-07-10T12:43:22Z,816,591,2005-07-16T16:42:22Z,1,2020-02-15T06:59:40Z +5760,2005-07-10T12:44:48Z,1050,154,2005-07-14T12:25:48Z,1,2020-02-15T06:59:40Z +5761,2005-07-10T12:45:36Z,1763,287,2005-07-13T10:05:36Z,2,2020-02-15T06:59:40Z +5762,2005-07-10T12:48:01Z,1815,217,2005-07-18T16:43:01Z,1,2020-02-15T06:59:40Z +5763,2005-07-10T12:58:12Z,753,397,2005-07-14T08:52:12Z,1,2020-02-15T06:59:40Z +5764,2005-07-10T12:58:16Z,1556,245,2005-07-19T07:28:16Z,1,2020-02-15T06:59:40Z +5765,2005-07-10T13:03:02Z,2619,293,2005-07-16T09:31:02Z,1,2020-02-15T06:59:40Z +5766,2005-07-10T13:07:31Z,7,406,2005-07-16T13:03:31Z,1,2020-02-15T06:59:40Z +5767,2005-07-10T13:13:18Z,2871,32,2005-07-17T14:41:18Z,2,2020-02-15T06:59:40Z +5768,2005-07-10T13:15:26Z,345,196,2005-07-15T09:42:26Z,1,2020-02-15T06:59:40Z +5769,2005-07-10T13:17:58Z,4052,141,2005-07-11T11:32:58Z,1,2020-02-15T06:59:40Z +5770,2005-07-10T13:21:28Z,914,71,2005-07-11T08:59:28Z,2,2020-02-15T06:59:40Z +5771,2005-07-10T13:26:45Z,3275,153,2005-07-14T15:43:45Z,1,2020-02-15T06:59:40Z +5772,2005-07-10T13:27:40Z,3635,21,2005-07-17T08:24:40Z,1,2020-02-15T06:59:40Z +5773,2005-07-10T13:31:09Z,3277,180,2005-07-15T08:21:09Z,2,2020-02-15T06:59:40Z +5774,2005-07-10T13:31:56Z,326,113,2005-07-18T07:32:56Z,1,2020-02-15T06:59:40Z +5775,2005-07-10T13:34:26Z,2175,325,2005-07-15T10:01:26Z,1,2020-02-15T06:59:40Z +5776,2005-07-10T13:35:22Z,3592,568,2005-07-12T17:58:22Z,1,2020-02-15T06:59:40Z +5777,2005-07-10T13:38:41Z,3959,40,2005-07-17T15:48:41Z,2,2020-02-15T06:59:40Z +5778,2005-07-10T13:41:37Z,4435,324,2005-07-14T16:26:37Z,1,2020-02-15T06:59:40Z +5779,2005-07-10T13:45:54Z,3266,244,2005-07-15T18:13:54Z,1,2020-02-15T06:59:40Z +5780,2005-07-10T13:46:23Z,168,516,2005-07-14T17:19:23Z,2,2020-02-15T06:59:40Z +5781,2005-07-10T13:49:30Z,3191,167,2005-07-11T12:11:30Z,2,2020-02-15T06:59:40Z +5782,2005-07-10T13:52:56Z,2514,440,2005-07-15T09:32:56Z,2,2020-02-15T06:59:40Z +5783,2005-07-10T13:55:33Z,3331,385,2005-07-16T12:13:33Z,1,2020-02-15T06:59:40Z +5784,2005-07-10T14:03:28Z,2323,422,2005-07-16T16:22:28Z,1,2020-02-15T06:59:40Z +5785,2005-07-10T14:06:03Z,142,211,2005-07-17T17:59:03Z,2,2020-02-15T06:59:40Z +5786,2005-07-10T14:06:44Z,2290,350,2005-07-14T19:55:44Z,2,2020-02-15T06:59:40Z +5787,2005-07-10T14:08:49Z,1075,44,2005-07-19T18:29:49Z,1,2020-02-15T06:59:40Z +5788,2005-07-10T14:10:22Z,1707,63,2005-07-14T19:46:22Z,2,2020-02-15T06:59:40Z +5789,2005-07-10T14:11:26Z,2601,571,2005-07-18T16:19:26Z,1,2020-02-15T06:59:40Z +5790,2005-07-10T14:15:21Z,1696,235,2005-07-14T08:53:21Z,2,2020-02-15T06:59:40Z +5791,2005-07-10T14:16:22Z,2795,319,2005-07-19T13:38:22Z,2,2020-02-15T06:59:40Z +5792,2005-07-10T14:22:19Z,4234,92,2005-07-19T09:08:19Z,1,2020-02-15T06:59:40Z +5793,2005-07-10T14:33:00Z,2927,268,2005-07-13T19:27:00Z,1,2020-02-15T06:59:40Z +5794,2005-07-10T14:34:53Z,1164,198,2005-07-17T11:50:53Z,2,2020-02-15T06:59:40Z +5795,2005-07-10T14:36:29Z,3958,304,2005-07-14T13:26:29Z,1,2020-02-15T06:59:40Z +5796,2005-07-10T14:42:54Z,1631,286,2005-07-17T08:47:54Z,2,2020-02-15T06:59:40Z +5797,2005-07-10T14:43:52Z,1880,384,2005-07-13T16:12:52Z,2,2020-02-15T06:59:40Z +5798,2005-07-10T14:45:09Z,331,107,2005-07-16T13:43:09Z,1,2020-02-15T06:59:40Z +5799,2005-07-10T14:53:35Z,3045,520,2005-07-14T16:18:35Z,2,2020-02-15T06:59:40Z +5800,2005-07-10T14:58:36Z,2466,411,2005-07-11T19:50:36Z,2,2020-02-15T06:59:40Z +5801,2005-07-10T14:59:05Z,3511,439,2005-07-14T17:55:05Z,2,2020-02-15T06:59:40Z +5802,2005-07-10T15:02:17Z,2295,520,2005-07-19T15:43:17Z,2,2020-02-15T06:59:40Z +5803,2005-07-10T15:05:42Z,1982,244,2005-07-15T10:19:42Z,1,2020-02-15T06:59:40Z +5804,2005-07-10T15:06:31Z,2168,137,2005-07-14T11:00:31Z,1,2020-02-15T06:59:40Z +5805,2005-07-10T15:08:41Z,3553,532,2005-07-19T16:35:41Z,2,2020-02-15T06:59:40Z +5806,2005-07-10T15:11:54Z,29,108,2005-07-15T11:51:54Z,2,2020-02-15T06:59:40Z +5807,2005-07-10T15:16:30Z,2092,301,2005-07-11T14:02:30Z,2,2020-02-15T06:59:40Z +5808,2005-07-10T15:17:33Z,2310,170,2005-07-14T12:14:33Z,2,2020-02-15T06:59:40Z +5809,2005-07-10T15:19:30Z,1748,461,2005-07-13T12:31:30Z,2,2020-02-15T06:59:40Z +5810,2005-07-10T15:22:04Z,1426,482,2005-07-18T21:05:04Z,2,2020-02-15T06:59:40Z +5811,2005-07-10T15:27:04Z,4007,441,2005-07-12T17:20:04Z,1,2020-02-15T06:59:40Z +5812,2005-07-10T15:27:56Z,1681,581,2005-07-18T15:37:56Z,2,2020-02-15T06:59:40Z +5813,2005-07-10T15:34:37Z,942,512,2005-07-17T16:14:37Z,2,2020-02-15T06:59:40Z +5814,2005-07-10T15:46:50Z,2537,71,2005-07-13T15:28:50Z,2,2020-02-15T06:59:40Z +5815,2005-07-10T15:48:19Z,2934,22,2005-07-13T12:09:19Z,1,2020-02-15T06:59:40Z +5816,2005-07-10T15:48:47Z,1746,382,2005-07-13T11:51:47Z,2,2020-02-15T06:59:40Z +5817,2005-07-10T15:49:12Z,2993,28,2005-07-18T19:30:12Z,2,2020-02-15T06:59:40Z +5818,2005-07-10T15:51:12Z,3940,334,2005-07-14T14:10:12Z,2,2020-02-15T06:59:40Z +5819,2005-07-10T15:56:20Z,3439,347,2005-07-12T19:59:20Z,2,2020-02-15T06:59:40Z +5820,2005-07-10T16:04:59Z,1511,485,2005-07-16T12:10:59Z,1,2020-02-15T06:59:40Z +5821,2005-07-10T16:07:16Z,147,302,2005-07-14T19:48:16Z,1,2020-02-15T06:59:40Z +5822,2005-07-10T16:10:39Z,1385,38,2005-07-13T19:05:39Z,2,2020-02-15T06:59:40Z +5823,2005-07-10T16:19:52Z,1879,483,2005-07-11T12:33:52Z,2,2020-02-15T06:59:40Z +5824,2005-07-10T16:19:53Z,1980,449,2005-07-12T11:17:53Z,2,2020-02-15T06:59:40Z +5825,2005-07-10T16:20:30Z,3843,444,2005-07-11T18:58:30Z,1,2020-02-15T06:59:40Z +5826,2005-07-10T16:21:02Z,4104,254,2005-07-17T21:08:02Z,1,2020-02-15T06:59:40Z +5827,2005-07-10T16:22:20Z,1296,290,2005-07-15T21:13:20Z,2,2020-02-15T06:59:40Z +5828,2005-07-10T16:27:25Z,2999,156,2005-07-11T18:42:25Z,1,2020-02-15T06:59:40Z +5829,2005-07-10T16:29:41Z,3405,118,2005-07-14T22:03:41Z,1,2020-02-15T06:59:40Z +5830,2005-07-10T16:34:00Z,2358,59,2005-07-18T16:42:00Z,1,2020-02-15T06:59:40Z +5831,2005-07-10T16:34:02Z,830,43,2005-07-11T14:27:02Z,2,2020-02-15T06:59:40Z +5832,2005-07-10T16:34:48Z,2387,63,2005-07-17T17:25:48Z,1,2020-02-15T06:59:40Z +5833,2005-07-10T16:39:24Z,3829,187,2005-07-17T12:52:24Z,1,2020-02-15T06:59:40Z +5834,2005-07-10T16:44:12Z,85,360,2005-07-14T11:34:12Z,2,2020-02-15T06:59:40Z +5835,2005-07-10T16:44:58Z,800,11,2005-07-17T16:03:58Z,2,2020-02-15T06:59:40Z +5836,2005-07-10T16:49:02Z,1842,310,2005-07-11T22:35:02Z,2,2020-02-15T06:59:40Z +5837,2005-07-10T16:57:50Z,1648,478,2005-07-18T14:07:50Z,2,2020-02-15T06:59:40Z +5838,2005-07-10T17:04:56Z,1627,202,2005-07-11T15:15:56Z,1,2020-02-15T06:59:40Z +5839,2005-07-10T17:08:30Z,252,367,2005-07-13T21:21:30Z,2,2020-02-15T06:59:40Z +5840,2005-07-10T17:09:09Z,1073,72,2005-07-15T22:52:09Z,1,2020-02-15T06:59:40Z +5841,2005-07-10T17:11:31Z,1230,525,2005-07-18T15:50:31Z,2,2020-02-15T06:59:40Z +5842,2005-07-10T17:11:37Z,139,247,2005-07-14T21:43:37Z,1,2020-02-15T06:59:40Z +5843,2005-07-10T17:14:27Z,1615,599,2005-07-15T21:18:27Z,2,2020-02-15T06:59:40Z +5844,2005-07-10T17:14:43Z,609,147,2005-07-12T19:27:43Z,1,2020-02-15T06:59:40Z +5845,2005-07-10T17:23:14Z,2882,334,2005-07-12T16:29:14Z,2,2020-02-15T06:59:40Z +5846,2005-07-10T17:25:24Z,938,233,2005-07-12T13:41:24Z,2,2020-02-15T06:59:40Z +5847,2005-07-10T17:27:42Z,4403,220,2005-07-12T14:51:42Z,2,2020-02-15T06:59:40Z +5848,2005-07-10T17:28:14Z,4549,409,2005-07-14T11:54:14Z,1,2020-02-15T06:59:40Z +5849,2005-07-10T17:32:33Z,1632,44,2005-07-19T22:39:33Z,1,2020-02-15T06:59:40Z +5850,2005-07-10T17:36:27Z,4015,531,2005-07-15T16:44:27Z,2,2020-02-15T06:59:40Z +5851,2005-07-10T17:40:47Z,3944,510,2005-07-11T19:24:47Z,2,2020-02-15T06:59:40Z +5852,2005-07-10T17:43:30Z,3890,484,2005-07-15T15:05:30Z,2,2020-02-15T06:59:40Z +5853,2005-07-10T17:45:13Z,3026,520,2005-07-17T21:37:13Z,1,2020-02-15T06:59:40Z +5854,2005-07-10T17:47:34Z,997,547,2005-07-13T20:14:34Z,2,2020-02-15T06:59:40Z +5855,2005-07-10T17:54:06Z,2457,166,2005-07-18T15:41:06Z,2,2020-02-15T06:59:40Z +5856,2005-07-10T17:57:32Z,497,314,2005-07-11T13:57:32Z,1,2020-02-15T06:59:40Z +5857,2005-07-10T17:59:29Z,1265,29,2005-07-18T18:13:29Z,1,2020-02-15T06:59:40Z +5858,2005-07-10T18:00:07Z,2913,257,2005-07-11T20:01:07Z,2,2020-02-15T06:59:40Z +5859,2005-07-10T18:02:02Z,131,220,2005-07-11T23:24:02Z,1,2020-02-15T06:59:40Z +5860,2005-07-10T18:08:49Z,3897,180,2005-07-16T16:43:49Z,2,2020-02-15T06:59:40Z +5861,2005-07-10T18:14:22Z,3881,277,2005-07-14T15:32:22Z,1,2020-02-15T06:59:40Z +5862,2005-07-10T18:20:48Z,2075,157,2005-07-17T00:09:48Z,1,2020-02-15T06:59:40Z +5863,2005-07-10T18:25:23Z,2557,419,2005-07-15T23:49:23Z,1,2020-02-15T06:59:40Z +5864,2005-07-10T18:29:57Z,4380,437,2005-07-19T14:27:57Z,2,2020-02-15T06:59:40Z +5865,2005-07-10T18:31:05Z,1382,126,2005-07-12T18:29:05Z,2,2020-02-15T06:59:40Z +5866,2005-07-10T18:35:14Z,457,484,2005-07-19T19:41:14Z,2,2020-02-15T06:59:40Z +5867,2005-07-10T18:39:01Z,730,321,2005-07-19T21:56:01Z,2,2020-02-15T06:59:40Z +5868,2005-07-10T18:39:16Z,452,429,2005-07-15T21:19:16Z,1,2020-02-15T06:59:40Z +5869,2005-07-10T18:40:09Z,2157,40,2005-07-17T18:42:09Z,1,2020-02-15T06:59:40Z +5870,2005-07-10T18:40:25Z,1524,438,2005-07-12T15:39:25Z,2,2020-02-15T06:59:40Z +5871,2005-07-10T18:46:08Z,3288,307,2005-07-16T17:32:08Z,1,2020-02-15T06:59:40Z +5872,2005-07-10T18:54:05Z,270,364,2005-07-19T15:41:05Z,1,2020-02-15T06:59:40Z +5873,2005-07-10T19:02:10Z,3151,354,2005-07-14T19:13:10Z,2,2020-02-15T06:59:40Z +5874,2005-07-10T19:02:51Z,2255,131,2005-07-16T13:14:51Z,1,2020-02-15T06:59:40Z +5875,2005-07-10T19:06:47Z,964,575,2005-07-18T17:33:47Z,2,2020-02-15T06:59:40Z +5876,2005-07-10T19:07:15Z,4445,578,2005-07-14T17:29:15Z,2,2020-02-15T06:59:40Z +5877,2005-07-10T19:08:51Z,1520,537,2005-07-19T19:48:51Z,1,2020-02-15T06:59:40Z +5878,2005-07-10T19:09:57Z,3805,271,2005-07-16T17:22:57Z,1,2020-02-15T06:59:40Z +5879,2005-07-10T19:12:47Z,3851,430,2005-07-16T16:32:47Z,1,2020-02-15T06:59:40Z +5880,2005-07-10T19:14:58Z,359,482,2005-07-17T01:13:58Z,1,2020-02-15T06:59:40Z +5881,2005-07-10T19:19:43Z,236,25,2005-07-12T20:11:43Z,1,2020-02-15T06:59:40Z +5882,2005-07-10T19:20:34Z,2830,319,2005-07-11T18:39:34Z,2,2020-02-15T06:59:40Z +5883,2005-07-10T19:25:21Z,2820,17,2005-07-16T20:50:21Z,2,2020-02-15T06:59:40Z +5884,2005-07-10T19:31:38Z,916,498,2005-07-11T20:30:38Z,1,2020-02-15T06:59:40Z +5885,2005-07-10T19:33:50Z,3129,331,2005-07-17T00:26:50Z,2,2020-02-15T06:59:40Z +5886,2005-07-10T19:36:25Z,907,215,2005-07-11T22:24:25Z,2,2020-02-15T06:59:40Z +5887,2005-07-10T19:45:47Z,2602,532,2005-07-15T22:15:47Z,1,2020-02-15T06:59:40Z +5888,2005-07-10T19:52:17Z,1620,268,2005-07-18T20:32:17Z,2,2020-02-15T06:59:40Z +5889,2005-07-10T19:54:41Z,1706,491,2005-07-12T20:08:41Z,2,2020-02-15T06:59:40Z +5890,2005-07-10T20:00:25Z,1463,535,2005-07-18T17:57:25Z,2,2020-02-15T06:59:40Z +5891,2005-07-10T20:01:17Z,4355,184,2005-07-12T00:15:17Z,1,2020-02-15T06:59:40Z +5892,2005-07-10T20:02:42Z,4322,333,2005-07-11T20:02:42Z,1,2020-02-15T06:59:40Z +5893,2005-07-10T20:05:30Z,1689,439,2005-07-14T23:05:30Z,1,2020-02-15T06:59:40Z +5894,2005-07-10T20:09:34Z,2264,194,2005-07-17T15:39:34Z,1,2020-02-15T06:59:40Z +5895,2005-07-10T20:13:19Z,2272,164,2005-07-17T17:51:19Z,1,2020-02-15T06:59:40Z +5896,2005-07-10T20:15:56Z,731,357,2005-07-12T00:39:56Z,1,2020-02-15T06:59:40Z +5897,2005-07-10T20:16:14Z,740,413,2005-07-19T15:49:14Z,2,2020-02-15T06:59:40Z +5898,2005-07-10T20:18:09Z,3257,538,2005-07-16T14:44:09Z,1,2020-02-15T06:59:40Z +5899,2005-07-10T20:21:52Z,1391,388,2005-07-13T00:46:52Z,1,2020-02-15T06:59:40Z +5900,2005-07-10T20:21:54Z,1081,419,2005-07-17T00:26:54Z,1,2020-02-15T06:59:40Z +5901,2005-07-10T20:22:12Z,86,165,2005-07-19T16:43:12Z,2,2020-02-15T06:59:40Z +5902,2005-07-10T20:31:24Z,2727,228,2005-07-11T20:50:24Z,1,2020-02-15T06:59:40Z +5903,2005-07-10T20:39:04Z,1388,573,2005-07-11T17:41:04Z,1,2020-02-15T06:59:40Z +5904,2005-07-10T20:39:44Z,350,531,2005-07-13T17:57:44Z,2,2020-02-15T06:59:40Z +5905,2005-07-10T20:41:09Z,3891,10,2005-07-19T14:49:09Z,1,2020-02-15T06:59:40Z +5906,2005-07-10T20:41:41Z,514,323,2005-07-14T00:12:41Z,2,2020-02-15T06:59:40Z +5907,2005-07-10T20:41:41Z,4432,168,2005-07-15T21:18:41Z,2,2020-02-15T06:59:40Z +5908,2005-07-10T20:44:14Z,810,156,2005-07-13T15:05:14Z,2,2020-02-15T06:59:40Z +5909,2005-07-10T20:46:13Z,2333,44,2005-07-14T18:01:13Z,2,2020-02-15T06:59:40Z +5910,2005-07-10T20:51:34Z,1039,464,2005-07-19T14:54:34Z,1,2020-02-15T06:59:40Z +5911,2005-07-10T20:51:42Z,4140,420,2005-07-14T21:58:42Z,2,2020-02-15T06:59:40Z +5912,2005-07-10T20:58:22Z,1187,351,2005-07-17T01:15:22Z,2,2020-02-15T06:59:40Z +5913,2005-07-10T20:58:55Z,2767,277,2005-07-13T15:18:55Z,1,2020-02-15T06:59:40Z +5914,2005-07-10T21:01:12Z,2639,372,2005-07-16T18:27:12Z,2,2020-02-15T06:59:40Z +5915,2005-07-10T21:12:16Z,2464,66,2005-07-15T16:59:16Z,2,2020-02-15T06:59:40Z +5916,2005-07-10T21:26:31Z,2267,35,2005-07-19T20:23:31Z,1,2020-02-15T06:59:40Z +5917,2005-07-10T21:30:22Z,2910,74,2005-07-12T18:54:22Z,2,2020-02-15T06:59:40Z +5918,2005-07-10T21:32:06Z,120,34,2005-07-19T21:35:06Z,1,2020-02-15T06:59:40Z +5919,2005-07-10T21:32:14Z,164,92,2005-07-12T16:47:14Z,1,2020-02-15T06:59:40Z +5920,2005-07-10T21:33:58Z,1893,221,2005-07-17T19:41:58Z,2,2020-02-15T06:59:40Z +5921,2005-07-10T21:35:12Z,3920,7,2005-07-18T19:59:12Z,1,2020-02-15T06:59:40Z +5922,2005-07-10T21:36:53Z,1392,271,2005-07-16T02:51:53Z,1,2020-02-15T06:59:40Z +5923,2005-07-10T21:40:06Z,1817,401,2005-07-13T00:01:06Z,1,2020-02-15T06:59:40Z +5924,2005-07-10T21:41:23Z,629,191,2005-07-16T21:33:23Z,1,2020-02-15T06:59:40Z +5925,2005-07-10T21:41:27Z,3724,503,2005-07-18T18:35:27Z,2,2020-02-15T06:59:40Z +5926,2005-07-10T21:53:42Z,2840,282,2005-07-20T01:04:42Z,1,2020-02-15T06:59:40Z +5927,2005-07-10T21:57:14Z,807,70,2005-07-16T19:32:14Z,1,2020-02-15T06:59:40Z +5928,2005-07-10T21:58:30Z,4132,50,2005-07-15T19:41:30Z,1,2020-02-15T06:59:40Z +5929,2005-07-10T21:59:29Z,4303,54,2005-07-14T20:20:29Z,2,2020-02-15T06:59:40Z +5930,2005-07-10T21:59:32Z,2338,254,2005-07-11T18:40:32Z,2,2020-02-15T06:59:40Z +5931,2005-07-10T22:04:19Z,2259,341,2005-07-13T00:45:19Z,2,2020-02-15T06:59:40Z +5932,2005-07-10T22:05:15Z,2269,523,2005-07-12T17:04:15Z,2,2020-02-15T06:59:40Z +5933,2005-07-10T22:06:48Z,4372,419,2005-07-12T23:58:48Z,2,2020-02-15T06:59:40Z +5934,2005-07-10T22:07:59Z,3825,576,2005-07-15T21:07:59Z,2,2020-02-15T06:59:40Z +5935,2005-07-10T22:11:04Z,3371,258,2005-07-19T18:12:04Z,2,2020-02-15T06:59:40Z +5936,2005-07-10T22:14:30Z,1951,522,2005-07-15T01:32:30Z,1,2020-02-15T06:59:40Z +5937,2005-07-10T22:16:08Z,1579,580,2005-07-16T03:08:08Z,2,2020-02-15T06:59:40Z +5938,2005-07-10T22:17:42Z,2834,236,2005-07-16T22:38:42Z,2,2020-02-15T06:59:40Z +5939,2005-07-10T22:30:05Z,4491,207,2005-07-14T00:02:05Z,2,2020-02-15T06:59:40Z +5940,2005-07-10T22:31:01Z,3295,292,2005-07-14T00:52:01Z,1,2020-02-15T06:59:40Z +5941,2005-07-10T22:40:47Z,492,43,2005-07-17T00:19:47Z,2,2020-02-15T06:59:40Z +5942,2005-07-10T22:47:17Z,2861,317,2005-07-17T01:54:17Z,2,2020-02-15T06:59:40Z +5943,2005-07-10T22:48:13Z,3019,255,2005-07-16T01:33:13Z,1,2020-02-15T06:59:40Z +5944,2005-07-10T22:51:44Z,3904,432,2005-07-18T17:54:44Z,2,2020-02-15T06:59:40Z +5945,2005-07-10T22:52:42Z,427,374,2005-07-11T21:52:42Z,1,2020-02-15T06:59:40Z +5946,2005-07-10T22:57:29Z,1629,308,2005-07-12T00:08:29Z,1,2020-02-15T06:59:40Z +5947,2005-07-10T23:07:42Z,327,331,2005-07-18T23:13:42Z,1,2020-02-15T06:59:40Z +5948,2005-07-10T23:12:08Z,3260,57,2005-07-18T19:06:08Z,2,2020-02-15T06:59:40Z +5949,2005-07-10T23:13:00Z,4397,496,2005-07-14T01:10:00Z,2,2020-02-15T06:59:40Z +5950,2005-07-10T23:13:45Z,4319,585,2005-07-13T02:35:45Z,1,2020-02-15T06:59:40Z +5951,2005-07-10T23:14:29Z,2501,589,2005-07-13T01:01:29Z,1,2020-02-15T06:59:40Z +5952,2005-07-10T23:18:20Z,3406,595,2005-07-16T17:42:20Z,1,2020-02-15T06:59:40Z +5953,2005-07-10T23:21:35Z,992,386,2005-07-14T20:48:35Z,2,2020-02-15T06:59:40Z +5954,2005-07-10T23:22:01Z,2627,32,2005-07-14T04:42:01Z,2,2020-02-15T06:59:40Z +5955,2005-07-10T23:22:10Z,834,409,2005-07-17T17:55:10Z,2,2020-02-15T06:59:40Z +5956,2005-07-10T23:23:08Z,2536,499,2005-07-13T17:36:08Z,1,2020-02-15T06:59:40Z +5957,2005-07-10T23:24:02Z,2517,210,2005-07-12T20:28:02Z,1,2020-02-15T06:59:40Z +5958,2005-07-10T23:31:51Z,3468,430,2005-07-19T00:36:51Z,2,2020-02-15T06:59:40Z +5959,2005-07-10T23:35:36Z,3169,436,2005-07-13T02:19:36Z,1,2020-02-15T06:59:40Z +5960,2005-07-10T23:38:34Z,3884,239,2005-07-11T19:21:34Z,1,2020-02-15T06:59:40Z +5961,2005-07-10T23:43:23Z,3537,21,2005-07-15T05:21:23Z,2,2020-02-15T06:59:40Z +5962,2005-07-10T23:45:22Z,1292,507,2005-07-13T03:49:22Z,2,2020-02-15T06:59:40Z +5963,2005-07-10T23:47:08Z,4434,35,2005-07-12T04:27:08Z,1,2020-02-15T06:59:40Z +5964,2005-07-10T23:47:18Z,3981,456,2005-07-12T03:55:18Z,2,2020-02-15T06:59:40Z +5965,2005-07-10T23:51:52Z,4476,348,2005-07-11T23:29:52Z,1,2020-02-15T06:59:40Z +5966,2005-07-10T23:59:27Z,2076,384,2005-07-14T23:38:27Z,2,2020-02-15T06:59:40Z +5967,2005-07-11T00:02:19Z,2125,215,2005-07-18T23:08:19Z,1,2020-02-15T06:59:40Z +5968,2005-07-11T00:03:11Z,3273,554,2005-07-19T18:46:11Z,1,2020-02-15T06:59:40Z +5969,2005-07-11T00:03:22Z,4177,433,2005-07-18T01:28:22Z,2,2020-02-15T06:59:40Z +5970,2005-07-11T00:04:50Z,1514,94,2005-07-19T03:36:50Z,1,2020-02-15T06:59:40Z +5971,2005-07-11T00:05:58Z,2191,84,2005-07-19T04:50:58Z,2,2020-02-15T06:59:40Z +5972,2005-07-11T00:08:54Z,4577,30,2005-07-17T21:01:54Z,1,2020-02-15T06:59:40Z +5973,2005-07-11T00:09:17Z,1194,165,2005-07-14T19:18:17Z,1,2020-02-15T06:59:40Z +5974,2005-07-11T00:10:37Z,3984,517,2005-07-18T18:48:37Z,2,2020-02-15T06:59:40Z +5975,2005-07-11T00:14:19Z,2997,15,2005-07-16T04:21:19Z,1,2020-02-15T06:59:40Z +5976,2005-07-11T00:16:35Z,1693,505,2005-07-20T01:30:35Z,2,2020-02-15T06:59:40Z +5977,2005-07-11T00:16:38Z,4011,484,2005-07-19T21:00:38Z,1,2020-02-15T06:59:40Z +5978,2005-07-11T00:16:54Z,1720,508,2005-07-19T18:55:54Z,1,2020-02-15T06:59:40Z +5979,2005-07-11T00:17:09Z,1736,251,2005-07-14T00:38:09Z,1,2020-02-15T06:59:40Z +5980,2005-07-11T00:18:21Z,1777,309,2005-07-14T21:26:21Z,1,2020-02-15T06:59:40Z +5981,2005-07-11T00:19:04Z,2151,241,2005-07-13T19:10:04Z,1,2020-02-15T06:59:40Z +5982,2005-07-11T00:24:44Z,2329,403,2005-07-14T04:42:44Z,2,2020-02-15T06:59:40Z +5983,2005-07-11T00:34:11Z,351,127,2005-07-15T05:37:11Z,1,2020-02-15T06:59:40Z +5984,2005-07-11T00:44:36Z,2801,178,2005-07-15T00:04:36Z,1,2020-02-15T06:59:40Z +5985,2005-07-11T00:51:58Z,1108,506,2005-07-14T22:02:58Z,2,2020-02-15T06:59:40Z +5986,2005-07-11T00:54:56Z,1624,171,2005-07-13T22:52:56Z,2,2020-02-15T06:59:40Z +5987,2005-07-11T00:55:31Z,1000,447,2005-07-16T06:28:31Z,2,2020-02-15T06:59:40Z +5988,2005-07-11T00:55:38Z,151,158,2005-07-13T21:36:38Z,2,2020-02-15T06:59:40Z +5989,2005-07-11T00:57:53Z,696,283,2005-07-15T02:24:53Z,1,2020-02-15T06:59:40Z +5990,2005-07-11T01:03:14Z,1561,432,2005-07-15T19:32:14Z,1,2020-02-15T06:59:40Z +5991,2005-07-11T01:03:38Z,3623,590,2005-07-12T22:32:38Z,2,2020-02-15T06:59:40Z +5992,2005-07-11T01:06:21Z,4216,54,2005-07-13T19:15:21Z,2,2020-02-15T06:59:40Z +5993,2005-07-11T01:06:41Z,3588,529,2005-07-14T19:19:41Z,1,2020-02-15T06:59:40Z +5994,2005-07-11T01:14:10Z,4287,295,2005-07-12T00:42:10Z,2,2020-02-15T06:59:40Z +5995,2005-07-11T01:15:39Z,4357,360,2005-07-20T05:01:39Z,2,2020-02-15T06:59:40Z +5996,2005-07-11T01:18:33Z,4263,223,2005-07-17T04:18:33Z,1,2020-02-15T06:59:40Z +5997,2005-07-11T01:19:50Z,3542,128,2005-07-16T06:29:50Z,1,2020-02-15T06:59:40Z +5998,2005-07-11T01:20:46Z,1458,250,2005-07-15T21:41:46Z,1,2020-02-15T06:59:40Z +5999,2005-07-11T01:21:22Z,211,450,2005-07-19T01:35:22Z,1,2020-02-15T06:59:40Z +6000,2005-07-11T01:23:06Z,1986,371,2005-07-12T04:39:06Z,2,2020-02-15T06:59:40Z +6001,2005-07-11T01:24:44Z,1779,45,2005-07-11T22:55:44Z,1,2020-02-15T06:59:40Z +6002,2005-07-11T01:27:49Z,4422,45,2005-07-12T06:02:49Z,1,2020-02-15T06:59:40Z +6003,2005-07-11T01:28:33Z,296,527,2005-07-17T21:24:33Z,1,2020-02-15T06:59:40Z +6004,2005-07-11T01:34:25Z,1756,204,2005-07-18T00:48:25Z,2,2020-02-15T06:59:40Z +6005,2005-07-11T01:36:42Z,809,78,2005-07-14T04:47:42Z,2,2020-02-15T06:59:40Z +6006,2005-07-11T01:38:42Z,4201,399,2005-07-17T05:18:42Z,2,2020-02-15T06:59:40Z +6007,2005-07-11T01:43:06Z,4393,289,2005-07-17T04:46:06Z,1,2020-02-15T06:59:40Z +6008,2005-07-11T01:51:29Z,1227,216,2005-07-18T01:39:29Z,1,2020-02-15T06:59:40Z +6009,2005-07-11T01:51:58Z,494,470,2005-07-18T07:12:58Z,2,2020-02-15T06:59:40Z +6010,2005-07-11T01:52:28Z,771,285,2005-07-13T03:13:28Z,1,2020-02-15T06:59:40Z +6011,2005-07-11T01:54:48Z,3899,527,2005-07-18T07:17:48Z,2,2020-02-15T06:59:40Z +6012,2005-07-11T02:00:12Z,2609,258,2005-07-17T02:49:12Z,2,2020-02-15T06:59:40Z +6013,2005-07-11T02:02:03Z,3774,543,2005-07-14T02:07:03Z,1,2020-02-15T06:59:40Z +6014,2005-07-11T02:02:55Z,3748,397,2005-07-12T23:49:55Z,1,2020-02-15T06:59:40Z +6015,2005-07-11T02:04:12Z,295,596,2005-07-13T02:43:12Z,2,2020-02-15T06:59:40Z +6016,2005-07-11T02:04:45Z,651,296,2005-07-17T22:22:45Z,1,2020-02-15T06:59:40Z +6017,2005-07-11T02:05:32Z,4088,596,2005-07-14T22:50:32Z,1,2020-02-15T06:59:40Z +6018,2005-07-11T02:06:36Z,4555,500,2005-07-12T02:16:36Z,2,2020-02-15T06:59:40Z +6019,2005-07-11T02:08:29Z,3483,9,2005-07-13T02:19:29Z,2,2020-02-15T06:59:40Z +6020,2005-07-11T02:08:55Z,1974,71,2005-07-16T22:07:55Z,1,2020-02-15T06:59:40Z +6021,2005-07-11T02:10:18Z,3949,173,2005-07-13T05:19:18Z,1,2020-02-15T06:59:40Z +6022,2005-07-11T02:15:53Z,2435,469,2005-07-13T03:40:53Z,2,2020-02-15T06:59:40Z +6023,2005-07-11T02:15:57Z,3794,456,2005-07-15T21:30:57Z,2,2020-02-15T06:59:40Z +6024,2005-07-11T02:16:47Z,2923,271,2005-07-12T05:54:47Z,1,2020-02-15T06:59:40Z +6025,2005-07-11T02:18:13Z,3306,113,2005-07-11T23:30:13Z,1,2020-02-15T06:59:40Z +6026,2005-07-11T02:21:43Z,3936,409,2005-07-13T03:49:43Z,1,2020-02-15T06:59:40Z +6027,2005-07-11T02:26:29Z,4536,513,2005-07-18T23:05:29Z,1,2020-02-15T06:59:40Z +6028,2005-07-11T02:31:44Z,784,450,2005-07-14T03:18:44Z,1,2020-02-15T06:59:40Z +6029,2005-07-11T02:36:46Z,2030,520,2005-07-14T20:51:46Z,2,2020-02-15T06:59:40Z +6030,2005-07-11T02:37:51Z,95,36,2005-07-16T22:34:51Z,2,2020-02-15T06:59:40Z +6031,2005-07-11T02:42:14Z,1530,224,2005-07-14T03:24:14Z,2,2020-02-15T06:59:40Z +6032,2005-07-11T02:49:01Z,3792,28,2005-07-18T05:05:01Z,2,2020-02-15T06:59:40Z +6033,2005-07-11T02:59:34Z,2819,322,2005-07-16T03:48:34Z,2,2020-02-15T06:59:40Z +6034,2005-07-11T03:00:50Z,1735,324,2005-07-16T06:19:50Z,1,2020-02-15T06:59:40Z +6035,2005-07-11T03:01:45Z,3474,176,2005-07-14T01:04:45Z,2,2020-02-15T06:59:40Z +6036,2005-07-11T03:02:28Z,2553,297,2005-07-15T22:12:28Z,2,2020-02-15T06:59:40Z +6037,2005-07-11T03:06:54Z,1886,386,2005-07-12T22:46:54Z,2,2020-02-15T06:59:40Z +6038,2005-07-11T03:10:37Z,1555,243,2005-07-19T05:14:37Z,2,2020-02-15T06:59:40Z +6039,2005-07-11T03:12:19Z,1776,137,2005-07-19T05:46:19Z,1,2020-02-15T06:59:40Z +6040,2005-07-11T03:14:26Z,2161,511,2005-07-14T01:12:26Z,2,2020-02-15T06:59:40Z +6041,2005-07-11T03:14:58Z,2815,551,2005-07-13T00:48:58Z,2,2020-02-15T06:59:40Z +6042,2005-07-11T03:17:04Z,2153,5,2005-07-19T07:08:04Z,1,2020-02-15T06:59:40Z +6043,2005-07-11T03:18:10Z,3303,430,2005-07-12T05:50:10Z,1,2020-02-15T06:59:40Z +6044,2005-07-11T03:18:39Z,1270,481,2005-07-13T06:58:39Z,2,2020-02-15T06:59:40Z +6045,2005-07-11T03:21:05Z,2003,39,2005-07-17T23:10:05Z,1,2020-02-15T06:59:40Z +6046,2005-07-11T03:21:49Z,1935,569,2005-07-19T23:58:49Z,1,2020-02-15T06:59:40Z +6047,2005-07-11T03:27:01Z,4147,235,2005-07-16T06:42:01Z,2,2020-02-15T06:59:40Z +6048,2005-07-11T03:32:23Z,975,154,2005-07-14T07:39:23Z,1,2020-02-15T06:59:40Z +6049,2005-07-11T03:32:32Z,2582,236,2005-07-15T06:57:32Z,2,2020-02-15T06:59:40Z +6050,2005-07-11T03:34:29Z,825,527,2005-07-15T02:55:29Z,1,2020-02-15T06:59:40Z +6051,2005-07-11T03:46:41Z,2675,435,2005-07-11T22:36:41Z,2,2020-02-15T06:59:40Z +6052,2005-07-11T03:51:27Z,881,75,2005-07-16T02:55:27Z,2,2020-02-15T06:59:40Z +6053,2005-07-11T03:51:59Z,2836,237,2005-07-19T09:13:59Z,2,2020-02-15T06:59:40Z +6054,2005-07-11T03:58:39Z,1176,354,2005-07-13T23:08:39Z,1,2020-02-15T06:59:40Z +6055,2005-07-11T03:59:08Z,595,125,2005-07-18T05:35:08Z,2,2020-02-15T06:59:40Z +6056,2005-07-11T04:01:27Z,3069,145,2005-07-12T04:14:27Z,1,2020-02-15T06:59:40Z +6057,2005-07-11T04:03:40Z,1340,187,2005-07-17T01:34:40Z,2,2020-02-15T06:59:40Z +6058,2005-07-11T04:03:51Z,3761,498,2005-07-14T03:52:51Z,1,2020-02-15T06:59:40Z +6059,2005-07-11T04:03:54Z,1437,394,2005-07-18T01:35:54Z,1,2020-02-15T06:59:40Z +6060,2005-07-11T04:06:17Z,3146,342,2005-07-12T03:05:17Z,1,2020-02-15T06:59:40Z +6061,2005-07-11T04:06:25Z,1859,392,2005-07-11T23:11:25Z,1,2020-02-15T06:59:40Z +6062,2005-07-11T04:11:58Z,3301,408,2005-07-15T05:00:58Z,1,2020-02-15T06:59:40Z +6063,2005-07-11T04:16:51Z,1715,519,2005-07-13T08:35:51Z,2,2020-02-15T06:59:40Z +6064,2005-07-11T04:23:18Z,265,297,2005-07-19T02:21:18Z,1,2020-02-15T06:59:40Z +6065,2005-07-11T04:25:51Z,1007,562,2005-07-17T08:19:51Z,1,2020-02-15T06:59:40Z +6066,2005-07-11T04:32:42Z,1877,155,2005-07-15T03:56:42Z,2,2020-02-15T06:59:40Z +6067,2005-07-11T04:34:49Z,2097,186,2005-07-16T09:33:49Z,1,2020-02-15T06:59:40Z +6068,2005-07-11T04:41:09Z,2331,265,2005-07-14T04:45:09Z,1,2020-02-15T06:59:40Z +6069,2005-07-11T04:44:59Z,256,553,2005-07-13T01:00:59Z,1,2020-02-15T06:59:40Z +6070,2005-07-11T04:47:42Z,1679,267,2005-07-13T01:49:42Z,2,2020-02-15T06:59:40Z +6071,2005-07-11T04:50:03Z,889,179,2005-07-19T23:52:03Z,1,2020-02-15T06:59:40Z +6072,2005-07-11T04:52:40Z,1790,339,2005-07-18T01:02:40Z,1,2020-02-15T06:59:40Z +6073,2005-07-11T04:54:31Z,4243,466,2005-07-20T07:23:31Z,1,2020-02-15T06:59:40Z +6074,2005-07-11T04:59:56Z,2876,259,2005-07-13T23:31:56Z,1,2020-02-15T06:59:40Z +6075,2005-07-11T05:03:03Z,2160,283,2005-07-12T01:28:03Z,1,2020-02-15T06:59:40Z +6076,2005-07-11T05:05:30Z,1792,143,2005-07-18T04:22:30Z,1,2020-02-15T06:59:40Z +6077,2005-07-11T05:06:08Z,2154,542,2005-07-16T10:29:08Z,1,2020-02-15T06:59:40Z +6078,2005-07-11T05:06:52Z,3985,91,2005-07-17T06:13:52Z,2,2020-02-15T06:59:40Z +6079,2005-07-11T05:07:14Z,1494,119,2005-07-17T08:45:14Z,1,2020-02-15T06:59:40Z +6080,2005-07-11T05:08:11Z,2682,115,2005-07-16T09:54:11Z,2,2020-02-15T06:59:40Z +6081,2005-07-11T05:11:09Z,2286,72,2005-07-13T05:33:09Z,2,2020-02-15T06:59:40Z +6082,2005-07-11T05:12:41Z,1091,82,2005-07-16T03:40:41Z,2,2020-02-15T06:59:40Z +6083,2005-07-11T05:12:49Z,3183,285,2005-07-15T00:46:49Z,2,2020-02-15T06:59:40Z +6084,2005-07-11T05:16:20Z,1334,479,2005-07-19T01:38:20Z,2,2020-02-15T06:59:40Z +6085,2005-07-11T05:24:36Z,312,155,2005-07-16T03:49:36Z,2,2020-02-15T06:59:40Z +6086,2005-07-11T05:29:03Z,1505,420,2005-07-16T01:17:03Z,1,2020-02-15T06:59:40Z +6087,2005-07-11T05:29:22Z,198,155,2005-07-12T23:33:22Z,2,2020-02-15T06:59:40Z +6088,2005-07-11T05:40:35Z,3796,498,2005-07-17T07:14:35Z,2,2020-02-15T06:59:40Z +6089,2005-07-11T05:45:59Z,3298,580,2005-07-17T11:04:59Z,2,2020-02-15T06:59:40Z +6090,2005-07-11T05:47:08Z,71,241,2005-07-20T07:52:08Z,2,2020-02-15T06:59:40Z +6091,2005-07-11T05:49:18Z,580,383,2005-07-15T07:26:18Z,1,2020-02-15T06:59:40Z +6092,2005-07-11T05:51:31Z,2129,75,2005-07-17T03:42:31Z,1,2020-02-15T06:59:40Z +6093,2005-07-11T05:52:50Z,1868,117,2005-07-20T11:45:50Z,1,2020-02-15T06:59:40Z +6094,2005-07-11T05:54:42Z,2684,285,2005-07-18T08:19:42Z,2,2020-02-15T06:59:40Z +6095,2005-07-11T06:06:41Z,727,501,2005-07-19T06:14:41Z,1,2020-02-15T06:59:40Z +6096,2005-07-11T06:18:04Z,2720,420,2005-07-14T01:15:04Z,1,2020-02-15T06:59:40Z +6097,2005-07-11T06:21:43Z,297,416,2005-07-16T10:04:43Z,1,2020-02-15T06:59:40Z +6098,2005-07-11T06:23:28Z,3016,525,2005-07-17T04:05:28Z,1,2020-02-15T06:59:40Z +6099,2005-07-11T06:24:44Z,3865,469,2005-07-15T08:03:44Z,2,2020-02-15T06:59:40Z +6100,2005-07-11T06:40:31Z,3485,16,2005-07-14T10:59:31Z,2,2020-02-15T06:59:40Z +6101,2005-07-11T06:50:33Z,2618,508,2005-07-18T01:52:33Z,2,2020-02-15T06:59:40Z +6102,2005-07-11T06:53:09Z,4305,146,2005-07-17T07:05:09Z,1,2020-02-15T06:59:40Z +6103,2005-07-11T06:59:55Z,262,540,2005-07-16T09:30:55Z,1,2020-02-15T06:59:40Z +6104,2005-07-11T07:01:35Z,3531,389,2005-07-17T02:29:35Z,1,2020-02-15T06:59:40Z +6105,2005-07-11T07:03:19Z,3501,595,2005-07-19T06:46:19Z,1,2020-02-15T06:59:40Z +6106,2005-07-11T07:05:06Z,2714,185,2005-07-20T09:27:06Z,1,2020-02-15T06:59:40Z +6107,2005-07-11T07:07:09Z,3798,304,2005-07-14T07:32:09Z,2,2020-02-15T06:59:40Z +6108,2005-07-11T07:19:24Z,4296,572,2005-07-13T12:38:24Z,2,2020-02-15T06:59:40Z +6109,2005-07-11T07:20:57Z,3603,163,2005-07-13T07:29:57Z,2,2020-02-15T06:59:40Z +6110,2005-07-11T07:23:47Z,541,405,2005-07-20T03:17:47Z,2,2020-02-15T06:59:40Z +6111,2005-07-11T07:26:57Z,3504,300,2005-07-13T10:43:57Z,2,2020-02-15T06:59:40Z +6112,2005-07-11T07:28:05Z,1311,366,2005-07-18T07:29:05Z,1,2020-02-15T06:59:40Z +6113,2005-07-11T07:31:08Z,4437,115,2005-07-20T11:01:08Z,2,2020-02-15T06:59:40Z +6114,2005-07-11T07:33:48Z,479,404,2005-07-18T06:13:48Z,2,2020-02-15T06:59:40Z +6115,2005-07-11T07:36:50Z,3415,27,2005-07-13T11:30:50Z,1,2020-02-15T06:59:40Z +6116,2005-07-11T07:37:38Z,247,381,2005-07-14T11:53:38Z,2,2020-02-15T06:59:40Z +6117,2005-07-11T07:39:38Z,2613,135,2005-07-18T12:07:38Z,2,2020-02-15T06:59:40Z +6118,2005-07-11T07:43:08Z,3013,13,2005-07-20T03:17:08Z,1,2020-02-15T06:59:40Z +6119,2005-07-11T07:44:46Z,4281,472,2005-07-20T04:41:46Z,2,2020-02-15T06:59:40Z +6120,2005-07-11T07:49:53Z,3299,268,2005-07-19T04:56:53Z,2,2020-02-15T06:59:40Z +6121,2005-07-11T07:55:27Z,1613,347,2005-07-16T03:43:27Z,2,2020-02-15T06:59:40Z +6122,2005-07-11T07:58:07Z,2212,32,2005-07-16T09:52:07Z,1,2020-02-15T06:59:40Z +6123,2005-07-11T08:02:27Z,1354,200,2005-07-15T08:58:27Z,2,2020-02-15T06:59:40Z +6124,2005-07-11T08:02:32Z,2022,368,2005-07-12T05:58:32Z,2,2020-02-15T06:59:40Z +6125,2005-07-11T08:03:35Z,2439,307,2005-07-18T12:46:35Z,1,2020-02-15T06:59:40Z +6126,2005-07-11T08:06:56Z,1069,230,2005-07-16T11:42:56Z,1,2020-02-15T06:59:40Z +6127,2005-07-11T08:06:59Z,285,355,2005-07-12T09:01:59Z,1,2020-02-15T06:59:40Z +6128,2005-07-11T08:15:08Z,2050,18,2005-07-13T03:36:08Z,1,2020-02-15T06:59:40Z +6129,2005-07-11T08:15:09Z,3875,222,2005-07-18T13:00:09Z,1,2020-02-15T06:59:40Z +6130,2005-07-11T08:19:56Z,2547,538,2005-07-16T12:02:56Z,2,2020-02-15T06:59:40Z +6131,2005-07-11T08:22:05Z,3313,107,2005-07-14T07:40:05Z,1,2020-02-15T06:59:40Z +6132,2005-07-11T08:24:44Z,3229,319,2005-07-13T06:41:44Z,1,2020-02-15T06:59:40Z +6133,2005-07-11T08:25:22Z,1992,107,2005-07-13T13:17:22Z,1,2020-02-15T06:59:40Z +6134,2005-07-11T08:28:19Z,3225,305,2005-07-18T09:20:19Z,2,2020-02-15T06:59:40Z +6135,2005-07-11T08:32:23Z,833,325,2005-07-17T08:43:23Z,1,2020-02-15T06:59:40Z +6136,2005-07-11T08:34:09Z,205,346,2005-07-14T06:11:09Z,1,2020-02-15T06:59:40Z +6137,2005-07-11T08:34:20Z,2029,67,2005-07-13T03:31:20Z,2,2020-02-15T06:59:40Z +6138,2005-07-11T08:36:04Z,1808,438,2005-07-13T10:30:04Z,2,2020-02-15T06:59:40Z +6139,2005-07-11T08:39:33Z,3065,206,2005-07-17T08:00:33Z,2,2020-02-15T06:59:40Z +6140,2005-07-11T08:40:47Z,2749,363,2005-07-14T07:26:47Z,1,2020-02-15T06:59:40Z +6141,2005-07-11T08:52:16Z,2279,228,2005-07-17T03:00:16Z,1,2020-02-15T06:59:40Z +6142,2005-07-11T08:54:09Z,1722,136,2005-07-18T05:23:09Z,2,2020-02-15T06:59:40Z +6143,2005-07-11T09:02:37Z,1030,169,2005-07-19T05:57:37Z,2,2020-02-15T06:59:40Z +6144,2005-07-11T09:02:53Z,1077,554,2005-07-15T10:58:53Z,2,2020-02-15T06:59:40Z +6145,2005-07-11T09:07:01Z,1359,540,2005-07-19T08:21:01Z,1,2020-02-15T06:59:40Z +6146,2005-07-11T09:09:59Z,3374,11,2005-07-20T11:42:59Z,2,2020-02-15T06:59:40Z +6147,2005-07-11T09:13:08Z,910,35,2005-07-17T03:48:08Z,1,2020-02-15T06:59:40Z +6148,2005-07-11T09:14:22Z,4318,410,2005-07-12T08:01:22Z,1,2020-02-15T06:59:40Z +6149,2005-07-11T09:19:31Z,4337,26,2005-07-17T14:45:31Z,2,2020-02-15T06:59:40Z +6150,2005-07-11T09:23:56Z,1110,418,2005-07-15T10:56:56Z,2,2020-02-15T06:59:40Z +6151,2005-07-11T09:25:17Z,352,476,2005-07-12T05:11:17Z,1,2020-02-15T06:59:40Z +6152,2005-07-11T09:25:52Z,560,361,2005-07-17T07:40:52Z,2,2020-02-15T06:59:40Z +6153,2005-07-11T09:31:04Z,105,47,2005-07-19T03:41:04Z,1,2020-02-15T06:59:40Z +6154,2005-07-11T09:32:19Z,2717,368,2005-07-16T15:10:19Z,1,2020-02-15T06:59:40Z +6155,2005-07-11T09:45:31Z,785,229,2005-07-18T08:09:31Z,1,2020-02-15T06:59:40Z +6156,2005-07-11T09:45:48Z,302,297,2005-07-15T04:51:48Z,1,2020-02-15T06:59:40Z +6157,2005-07-11T09:48:16Z,4481,133,2005-07-16T05:00:16Z,2,2020-02-15T06:59:40Z +6158,2005-07-11T09:50:24Z,3954,92,2005-07-13T04:49:24Z,2,2020-02-15T06:59:40Z +6159,2005-07-11T09:55:34Z,126,225,2005-07-13T10:01:34Z,2,2020-02-15T06:59:40Z +6160,2005-07-11T10:08:13Z,2716,110,2005-07-14T08:18:13Z,1,2020-02-15T06:59:40Z +6161,2005-07-11T10:11:54Z,3681,524,2005-07-15T12:12:54Z,2,2020-02-15T06:59:40Z +6162,2005-07-11T10:12:30Z,786,79,2005-07-19T06:02:30Z,2,2020-02-15T06:59:40Z +6163,2005-07-11T10:13:46Z,1330,1,2005-07-19T13:15:46Z,2,2020-02-15T06:59:40Z +6164,2005-07-11T10:16:23Z,2755,47,2005-07-14T11:21:23Z,1,2020-02-15T06:59:40Z +6165,2005-07-11T10:17:29Z,3540,9,2005-07-17T07:27:29Z,1,2020-02-15T06:59:40Z +6166,2005-07-11T10:19:05Z,967,503,2005-07-12T14:30:05Z,1,2020-02-15T06:59:40Z +6167,2005-07-11T10:21:21Z,3255,200,2005-07-14T15:38:21Z,1,2020-02-15T06:59:40Z +6168,2005-07-11T10:21:38Z,284,77,2005-07-14T09:55:38Z,2,2020-02-15T06:59:41Z +6169,2005-07-11T10:25:56Z,2781,148,2005-07-19T07:18:56Z,2,2020-02-15T06:59:41Z +6170,2005-07-11T10:29:21Z,278,580,2005-07-16T05:13:21Z,2,2020-02-15T06:59:41Z +6171,2005-07-11T10:29:35Z,448,491,2005-07-16T12:01:35Z,1,2020-02-15T06:59:41Z +6172,2005-07-11T10:32:09Z,3514,219,2005-07-14T16:23:09Z,1,2020-02-15T06:59:41Z +6173,2005-07-11T10:33:11Z,4252,419,2005-07-15T10:57:11Z,1,2020-02-15T06:59:41Z +6174,2005-07-11T10:36:28Z,3123,7,2005-07-18T16:19:28Z,2,2020-02-15T06:59:41Z +6175,2005-07-11T10:44:37Z,3037,195,2005-07-15T08:13:37Z,1,2020-02-15T06:59:41Z +6176,2005-07-11T10:48:21Z,2969,279,2005-07-12T15:54:21Z,2,2020-02-15T06:59:41Z +6177,2005-07-11T10:53:49Z,313,589,2005-07-17T14:54:49Z,1,2020-02-15T06:59:41Z +6178,2005-07-11T10:59:09Z,2777,91,2005-07-16T11:19:09Z,2,2020-02-15T06:59:41Z +6179,2005-07-11T10:59:59Z,3665,42,2005-07-17T06:02:59Z,1,2020-02-15T06:59:41Z +6180,2005-07-11T11:06:50Z,4401,351,2005-07-19T09:03:50Z,2,2020-02-15T06:59:41Z +6181,2005-07-11T11:10:11Z,4398,200,2005-07-15T09:33:11Z,1,2020-02-15T06:59:41Z +6182,2005-07-11T11:11:38Z,2562,540,2005-07-17T08:33:38Z,2,2020-02-15T06:59:41Z +6183,2005-07-11T11:14:35Z,856,402,2005-07-16T15:35:35Z,1,2020-02-15T06:59:41Z +6184,2005-07-11T11:19:21Z,1131,146,2005-07-19T07:35:21Z,1,2020-02-15T06:59:41Z +6185,2005-07-11T11:25:09Z,4331,294,2005-07-18T12:09:09Z,2,2020-02-15T06:59:41Z +6186,2005-07-11T11:26:41Z,2086,128,2005-07-17T12:02:41Z,2,2020-02-15T06:59:41Z +6187,2005-07-11T11:28:51Z,3344,500,2005-07-12T15:44:51Z,1,2020-02-15T06:59:41Z +6188,2005-07-11T11:31:47Z,189,114,2005-07-15T09:28:47Z,1,2020-02-15T06:59:41Z +6189,2005-07-11T11:36:03Z,3800,552,2005-07-20T15:33:03Z,2,2020-02-15T06:59:41Z +6190,2005-07-11T11:36:18Z,2564,321,2005-07-19T17:05:18Z,2,2020-02-15T06:59:41Z +6191,2005-07-11T11:37:52Z,3448,480,2005-07-17T12:45:52Z,1,2020-02-15T06:59:41Z +6192,2005-07-11T11:44:41Z,4573,314,2005-07-19T10:12:41Z,1,2020-02-15T06:59:41Z +6193,2005-07-11T11:46:57Z,465,189,2005-07-19T14:11:57Z,2,2020-02-15T06:59:41Z +6194,2005-07-11T11:51:00Z,1049,83,2005-07-15T12:34:00Z,2,2020-02-15T06:59:41Z +6195,2005-07-11T12:00:32Z,4193,319,2005-07-16T15:00:32Z,2,2020-02-15T06:59:41Z +6196,2005-07-11T12:05:46Z,995,429,2005-07-18T08:27:46Z,2,2020-02-15T06:59:41Z +6197,2005-07-11T12:09:51Z,4156,596,2005-07-12T06:15:51Z,1,2020-02-15T06:59:41Z +6198,2005-07-11T12:12:17Z,3345,470,2005-07-18T07:40:17Z,2,2020-02-15T06:59:41Z +6199,2005-07-11T12:16:03Z,4329,80,2005-07-18T15:33:03Z,2,2020-02-15T06:59:41Z +6200,2005-07-11T12:16:42Z,3258,137,2005-07-17T09:27:42Z,2,2020-02-15T06:59:41Z +6201,2005-07-11T12:18:07Z,4530,559,2005-07-12T12:11:07Z,2,2020-02-15T06:59:41Z +6202,2005-07-11T12:24:25Z,1424,373,2005-07-18T08:13:25Z,1,2020-02-15T06:59:41Z +6203,2005-07-11T12:28:57Z,1001,408,2005-07-15T14:10:57Z,1,2020-02-15T06:59:41Z +6204,2005-07-11T12:29:22Z,2572,362,2005-07-13T10:41:22Z,2,2020-02-15T06:59:41Z +6205,2005-07-11T12:31:24Z,3442,303,2005-07-13T11:31:24Z,2,2020-02-15T06:59:41Z +6206,2005-07-11T12:32:14Z,1368,459,2005-07-15T15:01:14Z,2,2020-02-15T06:59:41Z +6207,2005-07-11T12:34:24Z,3226,143,2005-07-14T10:15:24Z,2,2020-02-15T06:59:41Z +6208,2005-07-11T12:34:56Z,672,31,2005-07-19T15:17:56Z,1,2020-02-15T06:59:41Z +6209,2005-07-11T12:36:05Z,3091,219,2005-07-17T14:48:05Z,2,2020-02-15T06:59:41Z +6210,2005-07-11T12:36:43Z,931,209,2005-07-17T17:45:43Z,2,2020-02-15T06:59:41Z +6211,2005-07-11T12:39:01Z,2699,6,2005-07-20T15:59:01Z,2,2020-02-15T06:59:41Z +6212,2005-07-11T12:40:48Z,3962,337,2005-07-15T17:49:48Z,2,2020-02-15T06:59:41Z +6213,2005-07-11T12:43:07Z,485,23,2005-07-16T07:23:07Z,2,2020-02-15T06:59:41Z +6214,2005-07-11T12:49:48Z,1258,49,2005-07-18T07:41:48Z,2,2020-02-15T06:59:41Z +6215,2005-07-11T12:52:36Z,316,390,2005-07-12T08:33:36Z,1,2020-02-15T06:59:41Z +6216,2005-07-11T12:57:05Z,3571,387,2005-07-13T12:31:05Z,1,2020-02-15T06:59:41Z +6217,2005-07-11T13:13:45Z,1090,177,2005-07-19T16:37:45Z,2,2020-02-15T06:59:41Z +6218,2005-07-11T13:14:58Z,815,410,2005-07-16T08:13:58Z,2,2020-02-15T06:59:41Z +6219,2005-07-11T13:18:37Z,38,303,2005-07-13T13:18:37Z,2,2020-02-15T06:59:41Z +6220,2005-07-11T13:22:06Z,1717,421,2005-07-12T17:46:06Z,2,2020-02-15T06:59:41Z +6221,2005-07-11T13:24:27Z,1699,393,2005-07-15T17:51:27Z,1,2020-02-15T06:59:41Z +6222,2005-07-11T13:25:49Z,2066,386,2005-07-13T14:32:49Z,1,2020-02-15T06:59:41Z +6223,2005-07-11T13:27:09Z,3754,192,2005-07-12T14:02:09Z,1,2020-02-15T06:59:41Z +6224,2005-07-11T13:42:18Z,3274,475,2005-07-16T09:28:18Z,1,2020-02-15T06:59:41Z +6225,2005-07-11T13:45:14Z,2483,204,2005-07-14T10:23:14Z,1,2020-02-15T06:59:41Z +6226,2005-07-11T13:48:11Z,2758,134,2005-07-15T17:18:11Z,2,2020-02-15T06:59:41Z +6227,2005-07-11T13:56:46Z,1654,210,2005-07-18T12:53:46Z,1,2020-02-15T06:59:41Z +6228,2005-07-11T13:58:36Z,2281,367,2005-07-17T19:03:36Z,2,2020-02-15T06:59:41Z +6229,2005-07-11T13:59:50Z,3137,399,2005-07-20T09:26:50Z,1,2020-02-15T06:59:41Z +6230,2005-07-11T14:02:19Z,2260,490,2005-07-17T08:11:19Z,2,2020-02-15T06:59:41Z +6231,2005-07-11T14:02:36Z,2526,122,2005-07-13T19:04:36Z,2,2020-02-15T06:59:41Z +6232,2005-07-11T14:08:27Z,2492,590,2005-07-20T19:34:27Z,2,2020-02-15T06:59:41Z +6233,2005-07-11T14:10:47Z,3731,378,2005-07-15T15:13:47Z,2,2020-02-15T06:59:41Z +6234,2005-07-11T14:16:10Z,2911,232,2005-07-19T19:55:10Z,1,2020-02-15T06:59:41Z +6235,2005-07-11T14:17:51Z,2659,379,2005-07-17T11:14:51Z,2,2020-02-15T06:59:41Z +6236,2005-07-11T14:18:17Z,3813,338,2005-07-14T08:47:17Z,2,2020-02-15T06:59:41Z +6237,2005-07-11T14:19:12Z,2215,166,2005-07-15T15:05:12Z,1,2020-02-15T06:59:41Z +6238,2005-07-11T14:20:18Z,3749,23,2005-07-14T18:34:18Z,1,2020-02-15T06:59:41Z +6239,2005-07-11T14:20:48Z,4107,132,2005-07-17T13:41:48Z,2,2020-02-15T06:59:41Z +6240,2005-07-11T14:32:41Z,640,524,2005-07-20T18:38:41Z,1,2020-02-15T06:59:41Z +6241,2005-07-11T14:40:48Z,4449,74,2005-07-18T09:51:48Z,1,2020-02-15T06:59:41Z +6242,2005-07-11T14:45:04Z,670,245,2005-07-12T18:34:04Z,2,2020-02-15T06:59:41Z +6243,2005-07-11T14:53:25Z,3456,26,2005-07-15T09:26:25Z,2,2020-02-15T06:59:41Z +6244,2005-07-11T14:53:38Z,1558,383,2005-07-12T16:42:38Z,1,2020-02-15T06:59:41Z +6245,2005-07-11T14:56:57Z,512,241,2005-07-16T14:35:57Z,1,2020-02-15T06:59:41Z +6246,2005-07-11T14:57:51Z,2376,172,2005-07-19T19:10:51Z,2,2020-02-15T06:59:41Z +6247,2005-07-11T15:00:05Z,2504,589,2005-07-18T13:47:05Z,1,2020-02-15T06:59:41Z +6248,2005-07-11T15:01:54Z,2686,6,2005-07-19T16:58:54Z,1,2020-02-15T06:59:41Z +6249,2005-07-11T15:02:02Z,4334,30,2005-07-14T11:37:02Z,2,2020-02-15T06:59:41Z +6250,2005-07-11T15:02:04Z,4087,458,2005-07-17T10:54:04Z,1,2020-02-15T06:59:41Z +6251,2005-07-11T15:06:20Z,3956,230,2005-07-18T20:11:20Z,2,2020-02-15T06:59:41Z +6252,2005-07-11T15:06:29Z,1294,295,2005-07-16T14:07:29Z,1,2020-02-15T06:59:41Z +6253,2005-07-11T15:07:19Z,1425,570,2005-07-13T11:00:19Z,1,2020-02-15T06:59:41Z +6254,2005-07-11T15:10:18Z,2038,20,2005-07-17T14:20:18Z,2,2020-02-15T06:59:41Z +6255,2005-07-11T15:11:33Z,1459,319,2005-07-15T19:55:33Z,2,2020-02-15T06:59:41Z +6256,2005-07-11T15:19:22Z,480,307,2005-07-13T12:43:22Z,1,2020-02-15T06:59:41Z +6257,2005-07-11T15:23:46Z,3253,492,2005-07-14T17:26:46Z,2,2020-02-15T06:59:41Z +6258,2005-07-11T15:24:32Z,632,417,2005-07-18T18:29:32Z,1,2020-02-15T06:59:41Z +6259,2005-07-11T15:25:52Z,3007,84,2005-07-13T11:54:52Z,2,2020-02-15T06:59:41Z +6260,2005-07-11T15:26:29Z,4308,454,2005-07-13T17:37:29Z,2,2020-02-15T06:59:41Z +6261,2005-07-11T15:28:34Z,694,386,2005-07-14T17:54:34Z,1,2020-02-15T06:59:41Z +6262,2005-07-11T15:33:24Z,4136,355,2005-07-17T12:40:24Z,1,2020-02-15T06:59:41Z +6263,2005-07-11T15:33:50Z,2391,336,2005-07-17T12:49:50Z,2,2020-02-15T06:59:41Z +6264,2005-07-11T15:42:35Z,4246,565,2005-07-12T11:29:35Z,2,2020-02-15T06:59:41Z +6265,2005-07-11T15:43:51Z,3931,477,2005-07-12T12:51:51Z,2,2020-02-15T06:59:41Z +6266,2005-07-11T15:45:39Z,941,397,2005-07-15T18:29:39Z,1,2020-02-15T06:59:41Z +6267,2005-07-11T15:53:00Z,2152,20,2005-07-17T18:09:00Z,2,2020-02-15T06:59:41Z +6268,2005-07-11T15:55:34Z,1154,125,2005-07-19T17:25:34Z,1,2020-02-15T06:59:41Z +6269,2005-07-11T15:58:43Z,3915,167,2005-07-13T13:25:43Z,1,2020-02-15T06:59:41Z +6270,2005-07-11T15:59:10Z,2308,292,2005-07-18T10:29:10Z,2,2020-02-15T06:59:41Z +6271,2005-07-11T16:01:35Z,1246,467,2005-07-20T12:07:35Z,2,2020-02-15T06:59:41Z +6272,2005-07-11T16:03:49Z,3103,240,2005-07-15T19:54:49Z,1,2020-02-15T06:59:41Z +6273,2005-07-11T16:08:41Z,2403,152,2005-07-14T16:41:41Z,2,2020-02-15T06:59:41Z +6274,2005-07-11T16:09:42Z,2998,472,2005-07-19T20:46:42Z,1,2020-02-15T06:59:41Z +6275,2005-07-11T16:12:11Z,3599,333,2005-07-17T20:19:11Z,2,2020-02-15T06:59:41Z +6276,2005-07-11T16:15:50Z,1826,284,2005-07-19T20:50:50Z,2,2020-02-15T06:59:41Z +6277,2005-07-11T16:19:01Z,4023,92,2005-07-18T21:00:01Z,2,2020-02-15T06:59:41Z +6278,2005-07-11T16:20:02Z,2232,558,2005-07-19T19:29:02Z,2,2020-02-15T06:59:41Z +6279,2005-07-11T16:26:07Z,1254,49,2005-07-17T21:05:07Z,2,2020-02-15T06:59:41Z +6280,2005-07-11T16:36:17Z,4055,33,2005-07-13T14:04:17Z,2,2020-02-15T06:59:41Z +6281,2005-07-11T16:38:16Z,835,236,2005-07-13T10:57:16Z,2,2020-02-15T06:59:41Z +6282,2005-07-11T16:46:22Z,4453,60,2005-07-15T13:19:22Z,1,2020-02-15T06:59:41Z +6283,2005-07-11T16:47:32Z,3319,402,2005-07-17T21:46:32Z,1,2020-02-15T06:59:41Z +6284,2005-07-11T16:51:39Z,2938,177,2005-07-15T19:59:39Z,1,2020-02-15T06:59:41Z +6285,2005-07-11T16:52:07Z,2140,444,2005-07-13T21:33:07Z,2,2020-02-15T06:59:41Z +6286,2005-07-11T16:55:35Z,1070,140,2005-07-13T22:51:35Z,1,2020-02-15T06:59:41Z +6287,2005-07-11T17:00:04Z,35,93,2005-07-12T13:16:04Z,1,2020-02-15T06:59:41Z +6288,2005-07-11T17:01:52Z,3235,357,2005-07-19T15:11:52Z,1,2020-02-15T06:59:41Z +6289,2005-07-11T17:06:39Z,3185,99,2005-07-12T15:54:39Z,2,2020-02-15T06:59:41Z +6290,2005-07-11T17:12:42Z,2634,66,2005-07-19T21:53:42Z,2,2020-02-15T06:59:41Z +6291,2005-07-11T17:16:40Z,3126,262,2005-07-13T18:24:40Z,2,2020-02-15T06:59:41Z +6292,2005-07-11T17:23:33Z,4375,505,2005-07-12T16:27:33Z,2,2020-02-15T06:59:41Z +6293,2005-07-11T17:24:57Z,4260,471,2005-07-13T18:45:57Z,2,2020-02-15T06:59:41Z +6294,2005-07-11T17:25:55Z,1732,463,2005-07-15T17:48:55Z,1,2020-02-15T06:59:41Z +6295,2005-07-11T17:30:58Z,1393,7,2005-07-15T15:50:58Z,1,2020-02-15T06:59:41Z +6296,2005-07-11T17:34:04Z,4202,484,2005-07-17T21:12:04Z,1,2020-02-15T06:59:41Z +6297,2005-07-11T17:37:22Z,2738,69,2005-07-19T13:54:22Z,2,2020-02-15T06:59:41Z +6298,2005-07-11T17:42:33Z,3906,256,2005-07-13T18:14:33Z,2,2020-02-15T06:59:41Z +6299,2005-07-11T17:45:08Z,4125,324,2005-07-13T16:36:08Z,2,2020-02-15T06:59:41Z +6300,2005-07-11T17:50:09Z,1269,283,2005-07-18T13:11:09Z,1,2020-02-15T06:59:41Z +6301,2005-07-11T17:54:09Z,3528,275,2005-07-18T20:42:09Z,2,2020-02-15T06:59:41Z +6302,2005-07-11T17:55:38Z,3221,391,2005-07-17T22:11:38Z,1,2020-02-15T06:59:41Z +6303,2005-07-11T17:55:43Z,846,236,2005-07-13T12:50:43Z,1,2020-02-15T06:59:41Z +6304,2005-07-11T18:02:16Z,4183,579,2005-07-14T14:01:16Z,1,2020-02-15T06:59:41Z +6305,2005-07-11T18:02:25Z,1544,337,2005-07-20T13:29:25Z,1,2020-02-15T06:59:41Z +6306,2005-07-11T18:04:26Z,486,208,2005-07-20T14:22:26Z,2,2020-02-15T06:59:41Z +6307,2005-07-11T18:04:29Z,4029,345,2005-07-17T23:40:29Z,2,2020-02-15T06:59:41Z +6308,2005-07-11T18:08:41Z,3155,472,2005-07-19T15:48:41Z,2,2020-02-15T06:59:41Z +6309,2005-07-11T18:13:24Z,1054,232,2005-07-13T23:11:24Z,1,2020-02-15T06:59:41Z +6310,2005-07-11T18:14:05Z,3064,537,2005-07-16T15:39:05Z,2,2020-02-15T06:59:41Z +6311,2005-07-11T18:18:52Z,1789,373,2005-07-16T17:52:52Z,2,2020-02-15T06:59:41Z +6312,2005-07-11T18:19:02Z,2188,417,2005-07-18T00:00:02Z,1,2020-02-15T06:59:41Z +6313,2005-07-11T18:29:52Z,2976,283,2005-07-14T21:34:52Z,1,2020-02-15T06:59:41Z +6314,2005-07-11T18:32:44Z,4128,55,2005-07-17T23:58:44Z,1,2020-02-15T06:59:41Z +6315,2005-07-11T18:42:49Z,608,374,2005-07-12T23:19:49Z,2,2020-02-15T06:59:41Z +6316,2005-07-11T18:44:52Z,1910,526,2005-07-19T23:35:52Z,2,2020-02-15T06:59:41Z +6317,2005-07-11T18:47:41Z,4206,225,2005-07-14T18:18:41Z,1,2020-02-15T06:59:41Z +6318,2005-07-11T18:48:22Z,2048,425,2005-07-12T13:39:22Z,1,2020-02-15T06:59:41Z +6319,2005-07-11T18:50:45Z,3739,233,2005-07-12T15:26:45Z,1,2020-02-15T06:59:41Z +6320,2005-07-11T18:50:55Z,441,511,2005-07-13T22:46:55Z,2,2020-02-15T06:59:41Z +6321,2005-07-11T18:51:02Z,2655,388,2005-07-14T20:57:02Z,2,2020-02-15T06:59:41Z +6322,2005-07-11T18:58:20Z,4115,403,2005-07-14T16:41:20Z,2,2020-02-15T06:59:41Z +6323,2005-07-11T19:02:19Z,1352,346,2005-07-14T15:54:19Z,1,2020-02-15T06:59:41Z +6324,2005-07-11T19:02:34Z,655,386,2005-07-17T15:57:34Z,1,2020-02-15T06:59:41Z +6325,2005-07-11T19:06:01Z,4556,542,2005-07-18T18:25:01Z,2,2020-02-15T06:59:41Z +6326,2005-07-11T19:06:55Z,2137,563,2005-07-12T20:41:55Z,1,2020-02-15T06:59:41Z +6327,2005-07-11T19:07:29Z,909,146,2005-07-15T16:09:29Z,1,2020-02-15T06:59:41Z +6328,2005-07-11T19:09:33Z,999,260,2005-07-12T20:16:33Z,2,2020-02-15T06:59:41Z +6329,2005-07-11T19:10:38Z,2763,352,2005-07-19T14:46:38Z,2,2020-02-15T06:59:41Z +6330,2005-07-11T19:15:42Z,3917,119,2005-07-17T19:10:42Z,1,2020-02-15T06:59:41Z +6331,2005-07-11T19:17:21Z,1356,295,2005-07-18T18:35:21Z,2,2020-02-15T06:59:41Z +6332,2005-07-11T19:19:06Z,1733,538,2005-07-13T13:51:06Z,2,2020-02-15T06:59:41Z +6333,2005-07-11T19:20:16Z,2610,285,2005-07-17T15:33:16Z,1,2020-02-15T06:59:41Z +6334,2005-07-11T19:20:44Z,948,168,2005-07-19T18:49:44Z,2,2020-02-15T06:59:41Z +6335,2005-07-11T19:25:15Z,2757,396,2005-07-16T17:02:15Z,1,2020-02-15T06:59:41Z +6336,2005-07-11T19:30:13Z,1229,471,2005-07-20T21:27:13Z,2,2020-02-15T06:59:41Z +6337,2005-07-11T19:30:47Z,3967,47,2005-07-19T20:27:47Z,2,2020-02-15T06:59:41Z +6338,2005-07-11T19:39:41Z,1691,54,2005-07-18T01:13:41Z,2,2020-02-15T06:59:41Z +6339,2005-07-11T19:45:32Z,2401,145,2005-07-18T22:34:32Z,2,2020-02-15T06:59:41Z +6340,2005-07-11T19:46:05Z,2374,264,2005-07-20T16:51:05Z,2,2020-02-15T06:59:41Z +6341,2005-07-11T19:48:02Z,3580,448,2005-07-15T01:31:02Z,1,2020-02-15T06:59:41Z +6342,2005-07-11T19:48:24Z,1851,403,2005-07-13T14:09:24Z,2,2020-02-15T06:59:41Z +6343,2005-07-11T19:51:35Z,513,147,2005-07-12T19:13:35Z,1,2020-02-15T06:59:41Z +6344,2005-07-11T20:04:43Z,3074,78,2005-07-18T14:35:43Z,2,2020-02-15T06:59:41Z +6345,2005-07-11T20:05:18Z,4332,532,2005-07-20T17:28:18Z,1,2020-02-15T06:59:41Z +6346,2005-07-11T20:08:34Z,4066,445,2005-07-16T16:35:34Z,2,2020-02-15T06:59:41Z +6347,2005-07-11T20:18:53Z,3160,178,2005-07-16T20:45:53Z,1,2020-02-15T06:59:41Z +6348,2005-07-11T20:21:18Z,21,66,2005-07-19T15:56:18Z,2,2020-02-15T06:59:41Z +6349,2005-07-11T20:25:05Z,1581,216,2005-07-21T00:35:05Z,2,2020-02-15T06:59:41Z +6350,2005-07-11T20:30:15Z,2853,225,2005-07-16T21:30:15Z,1,2020-02-15T06:59:41Z +6351,2005-07-11T20:31:44Z,1852,507,2005-07-18T17:16:44Z,2,2020-02-15T06:59:41Z +6352,2005-07-11T20:34:13Z,1143,235,2005-07-13T19:49:13Z,1,2020-02-15T06:59:41Z +6353,2005-07-11T20:48:56Z,699,130,2005-07-21T00:11:56Z,1,2020-02-15T06:59:41Z +6354,2005-07-11T20:54:27Z,3203,176,2005-07-18T23:46:27Z,2,2020-02-15T06:59:41Z +6355,2005-07-11T20:56:29Z,2472,482,2005-07-20T01:50:29Z,2,2020-02-15T06:59:41Z +6356,2005-07-11T20:57:48Z,2645,149,2005-07-12T22:40:48Z,2,2020-02-15T06:59:41Z +6357,2005-07-11T20:58:51Z,658,252,2005-07-12T15:06:51Z,1,2020-02-15T06:59:41Z +6358,2005-07-11T21:03:12Z,4527,567,2005-07-15T20:06:12Z,2,2020-02-15T06:59:41Z +6359,2005-07-11T21:06:17Z,1656,30,2005-07-16T02:51:17Z,2,2020-02-15T06:59:41Z +6360,2005-07-11T21:07:40Z,3075,338,2005-07-16T15:11:40Z,1,2020-02-15T06:59:41Z +6361,2005-07-11T21:09:14Z,2903,561,2005-07-14T18:26:14Z,2,2020-02-15T06:59:41Z +6362,2005-07-11T21:09:31Z,4259,358,2005-07-13T23:08:31Z,1,2020-02-15T06:59:41Z +6363,2005-07-11T21:13:19Z,4167,344,2005-07-20T15:44:19Z,1,2020-02-15T06:59:41Z +6364,2005-07-11T21:14:48Z,4146,160,2005-07-20T23:20:48Z,2,2020-02-15T06:59:41Z +6365,2005-07-11T21:17:40Z,4550,566,2005-07-14T20:53:40Z,1,2020-02-15T06:59:41Z +6366,2005-07-11T21:18:16Z,3989,366,2005-07-17T00:21:16Z,1,2020-02-15T06:59:41Z +6367,2005-07-11T21:18:29Z,1465,357,2005-07-15T01:05:29Z,1,2020-02-15T06:59:41Z +6368,2005-07-11T21:19:01Z,3666,588,2005-07-13T17:56:01Z,2,2020-02-15T06:59:41Z +6369,2005-07-11T21:23:36Z,1086,252,2005-07-13T22:23:36Z,2,2020-02-15T06:59:41Z +6370,2005-07-11T21:28:32Z,1410,99,2005-07-20T02:51:32Z,2,2020-02-15T06:59:41Z +6371,2005-07-11T21:31:51Z,4297,265,2005-07-16T23:10:51Z,1,2020-02-15T06:59:41Z +6372,2005-07-11T21:35:06Z,741,64,2005-07-15T02:30:06Z,2,2020-02-15T06:59:41Z +6373,2005-07-11T21:35:20Z,1042,115,2005-07-13T23:22:20Z,2,2020-02-15T06:59:41Z +6374,2005-07-11T21:36:10Z,266,244,2005-07-17T15:50:10Z,2,2020-02-15T06:59:41Z +6375,2005-07-11T21:39:46Z,1936,8,2005-07-18T02:12:46Z,2,2020-02-15T06:59:41Z +6376,2005-07-11T21:40:23Z,1834,263,2005-07-13T23:16:23Z,1,2020-02-15T06:59:41Z +6377,2005-07-11T21:41:16Z,4017,118,2005-07-15T20:05:16Z,1,2020-02-15T06:59:41Z +6378,2005-07-11T21:45:23Z,3170,145,2005-07-14T16:56:23Z,1,2020-02-15T06:59:41Z +6379,2005-07-11T21:51:25Z,522,287,2005-07-17T03:38:25Z,2,2020-02-15T06:59:41Z +6380,2005-07-11T21:55:40Z,3378,172,2005-07-17T20:42:40Z,1,2020-02-15T06:59:41Z +6381,2005-07-11T21:58:48Z,2584,340,2005-07-16T16:18:48Z,1,2020-02-15T06:59:41Z +6382,2005-07-11T21:58:53Z,3223,336,2005-07-17T21:18:53Z,2,2020-02-15T06:59:41Z +6383,2005-07-11T22:06:53Z,4275,486,2005-07-17T16:09:53Z,1,2020-02-15T06:59:41Z +6384,2005-07-11T22:07:26Z,491,313,2005-07-16T22:39:26Z,1,2020-02-15T06:59:41Z +6385,2005-07-11T22:07:32Z,1830,69,2005-07-20T16:57:32Z,1,2020-02-15T06:59:41Z +6386,2005-07-11T22:14:57Z,633,593,2005-07-15T16:41:57Z,2,2020-02-15T06:59:41Z +6387,2005-07-11T22:15:56Z,1726,384,2005-07-14T20:20:56Z,2,2020-02-15T06:59:41Z +6388,2005-07-11T22:17:16Z,3506,525,2005-07-19T23:50:16Z,2,2020-02-15T06:59:41Z +6389,2005-07-11T22:18:20Z,2268,274,2005-07-16T16:57:20Z,2,2020-02-15T06:59:41Z +6390,2005-07-11T22:19:23Z,3057,77,2005-07-15T20:10:23Z,2,2020-02-15T06:59:41Z +6391,2005-07-11T22:23:09Z,1745,264,2005-07-15T23:02:09Z,1,2020-02-15T06:59:41Z +6392,2005-07-11T22:25:19Z,4406,468,2005-07-16T04:24:19Z,1,2020-02-15T06:59:41Z +6393,2005-07-11T22:28:12Z,3802,164,2005-07-14T18:03:12Z,1,2020-02-15T06:59:41Z +6394,2005-07-11T22:29:15Z,2574,52,2005-07-20T02:19:15Z,2,2020-02-15T06:59:41Z +6395,2005-07-11T22:29:29Z,3058,264,2005-07-18T00:50:29Z,1,2020-02-15T06:59:41Z +6396,2005-07-11T22:31:08Z,2394,507,2005-07-19T17:19:08Z,2,2020-02-15T06:59:41Z +6397,2005-07-11T22:34:02Z,2423,287,2005-07-13T23:01:02Z,1,2020-02-15T06:59:41Z +6398,2005-07-11T22:34:49Z,1409,296,2005-07-17T17:58:49Z,2,2020-02-15T06:59:41Z +6399,2005-07-11T22:39:05Z,2031,288,2005-07-16T01:12:05Z,1,2020-02-15T06:59:41Z +6400,2005-07-11T22:43:44Z,3289,536,2005-07-19T03:58:44Z,2,2020-02-15T06:59:41Z +6401,2005-07-11T22:44:34Z,1427,35,2005-07-12T22:18:34Z,2,2020-02-15T06:59:41Z +6402,2005-07-11T22:46:10Z,2576,66,2005-07-16T04:02:10Z,1,2020-02-15T06:59:41Z +6403,2005-07-11T22:46:25Z,1019,238,2005-07-13T22:15:25Z,1,2020-02-15T06:59:41Z +6404,2005-07-11T22:49:50Z,1183,526,2005-07-14T18:29:50Z,2,2020-02-15T06:59:41Z +6405,2005-07-11T22:53:12Z,3983,357,2005-07-18T23:02:12Z,2,2020-02-15T06:59:41Z +6406,2005-07-11T22:55:27Z,4439,392,2005-07-20T04:50:27Z,2,2020-02-15T06:59:41Z +6407,2005-07-11T23:02:19Z,775,140,2005-07-21T00:30:19Z,1,2020-02-15T06:59:41Z +6408,2005-07-11T23:03:02Z,2008,350,2005-07-19T23:09:02Z,2,2020-02-15T06:59:41Z +6409,2005-07-11T23:05:49Z,3859,537,2005-07-13T00:13:49Z,2,2020-02-15T06:59:41Z +6410,2005-07-11T23:08:06Z,1127,560,2005-07-19T19:57:06Z,2,2020-02-15T06:59:41Z +6411,2005-07-11T23:10:50Z,4347,124,2005-07-19T17:15:50Z,1,2020-02-15T06:59:41Z +6412,2005-07-11T23:19:21Z,3797,220,2005-07-16T19:48:21Z,1,2020-02-15T06:59:41Z +6413,2005-07-11T23:26:11Z,4446,251,2005-07-17T21:58:11Z,2,2020-02-15T06:59:41Z +6414,2005-07-11T23:26:13Z,814,502,2005-07-18T17:29:13Z,1,2020-02-15T06:59:41Z +6415,2005-07-11T23:27:52Z,4175,84,2005-07-19T22:29:52Z,2,2020-02-15T06:59:41Z +6416,2005-07-11T23:29:14Z,1063,158,2005-07-13T20:20:14Z,1,2020-02-15T06:59:41Z +6417,2005-07-11T23:35:11Z,3042,80,2005-07-18T20:00:11Z,2,2020-02-15T06:59:41Z +6418,2005-07-11T23:36:27Z,3101,185,2005-07-16T18:42:27Z,1,2020-02-15T06:59:41Z +6419,2005-07-11T23:36:38Z,3683,311,2005-07-13T03:23:38Z,1,2020-02-15T06:59:41Z +6420,2005-07-11T23:38:49Z,4443,206,2005-07-17T17:46:49Z,2,2020-02-15T06:59:41Z +6421,2005-07-11T23:45:25Z,4477,479,2005-07-15T20:45:25Z,2,2020-02-15T06:59:41Z +6422,2005-07-11T23:46:19Z,762,257,2005-07-20T22:12:19Z,1,2020-02-15T06:59:41Z +6423,2005-07-11T23:47:31Z,892,427,2005-07-19T18:16:31Z,1,2020-02-15T06:59:41Z +6424,2005-07-11T23:49:37Z,3040,359,2005-07-21T00:53:37Z,1,2020-02-15T06:59:41Z +6425,2005-07-11T23:54:52Z,2487,339,2005-07-13T18:37:52Z,1,2020-02-15T06:59:41Z +6426,2005-07-11T23:56:38Z,498,495,2005-07-21T05:22:38Z,1,2020-02-15T06:59:41Z +6427,2005-07-11T23:57:34Z,1043,122,2005-07-14T18:05:34Z,2,2020-02-15T06:59:41Z +6428,2005-07-12T00:01:51Z,4365,187,2005-07-20T22:02:51Z,2,2020-02-15T06:59:41Z +6429,2005-07-12T00:02:50Z,141,342,2005-07-21T02:08:50Z,1,2020-02-15T06:59:41Z +6430,2005-07-12T00:03:34Z,178,390,2005-07-15T03:11:34Z,1,2020-02-15T06:59:41Z +6431,2005-07-12T00:03:57Z,3471,458,2005-07-20T03:47:57Z,1,2020-02-15T06:59:41Z +6432,2005-07-12T00:09:41Z,970,293,2005-07-20T20:06:41Z,1,2020-02-15T06:59:41Z +6433,2005-07-12T00:12:02Z,1357,101,2005-07-21T04:25:02Z,2,2020-02-15T06:59:41Z +6434,2005-07-12T00:14:25Z,1478,102,2005-07-20T19:54:25Z,2,2020-02-15T06:59:41Z +6435,2005-07-12T00:16:19Z,1957,561,2005-07-17T19:15:19Z,1,2020-02-15T06:59:41Z +6436,2005-07-12T00:18:42Z,3758,122,2005-07-13T03:57:42Z,2,2020-02-15T06:59:41Z +6437,2005-07-12T00:20:29Z,4539,355,2005-07-12T22:26:29Z,1,2020-02-15T06:59:41Z +6438,2005-07-12T00:23:01Z,412,211,2005-07-17T22:45:01Z,1,2020-02-15T06:59:41Z +6439,2005-07-12T00:23:48Z,3463,406,2005-07-13T00:54:48Z,2,2020-02-15T06:59:41Z +6440,2005-07-12T00:25:04Z,2148,269,2005-07-13T04:52:04Z,2,2020-02-15T06:59:41Z +6441,2005-07-12T00:27:08Z,2489,505,2005-07-14T03:12:08Z,1,2020-02-15T06:59:41Z +6442,2005-07-12T00:29:45Z,1273,360,2005-07-15T19:37:45Z,2,2020-02-15T06:59:41Z +6443,2005-07-12T00:35:51Z,895,155,2005-07-16T04:50:51Z,1,2020-02-15T06:59:41Z +6444,2005-07-12T00:36:02Z,2214,168,2005-07-18T05:53:02Z,1,2020-02-15T06:59:41Z +6445,2005-07-12T00:37:02Z,582,385,2005-07-17T22:05:02Z,2,2020-02-15T06:59:41Z +6446,2005-07-12T00:44:08Z,3634,473,2005-07-14T20:39:08Z,2,2020-02-15T06:59:41Z +6447,2005-07-12T00:45:17Z,3945,482,2005-07-18T05:56:17Z,2,2020-02-15T06:59:41Z +6448,2005-07-12T00:45:59Z,2663,160,2005-07-17T00:34:59Z,1,2020-02-15T06:59:41Z +6449,2005-07-12T00:48:58Z,4395,117,2005-07-21T02:57:58Z,1,2020-02-15T06:59:41Z +6450,2005-07-12T00:49:05Z,2413,32,2005-07-13T01:54:05Z,2,2020-02-15T06:59:41Z +6451,2005-07-12T00:52:19Z,1008,381,2005-07-16T21:30:19Z,2,2020-02-15T06:59:41Z +6452,2005-07-12T00:57:31Z,109,388,2005-07-14T20:41:31Z,1,2020-02-15T06:59:41Z +6453,2005-07-12T00:59:53Z,2506,169,2005-07-14T19:17:53Z,2,2020-02-15T06:59:41Z +6454,2005-07-12T01:00:12Z,4028,446,2005-07-16T22:12:12Z,1,2020-02-15T06:59:41Z +6455,2005-07-12T01:01:58Z,4267,277,2005-07-16T02:42:58Z,2,2020-02-15T06:59:41Z +6456,2005-07-12T01:05:11Z,259,387,2005-07-20T23:26:11Z,2,2020-02-15T06:59:41Z +6457,2005-07-12T01:06:35Z,2970,64,2005-07-14T03:27:35Z,1,2020-02-15T06:59:41Z +6458,2005-07-12T01:08:52Z,2809,138,2005-07-16T20:22:52Z,1,2020-02-15T06:59:41Z +6459,2005-07-12T01:12:03Z,4025,557,2005-07-15T23:48:03Z,1,2020-02-15T06:59:41Z +6460,2005-07-12T01:13:44Z,2402,371,2005-07-17T04:51:44Z,2,2020-02-15T06:59:41Z +6461,2005-07-12T01:14:03Z,1799,135,2005-07-19T21:12:03Z,1,2020-02-15T06:59:41Z +6462,2005-07-12T01:15:24Z,4534,414,2005-07-19T05:11:24Z,2,2020-02-15T06:59:41Z +6463,2005-07-12T01:16:11Z,2930,391,2005-07-13T01:37:11Z,1,2020-02-15T06:59:41Z +6464,2005-07-12T01:16:40Z,3100,303,2005-07-20T00:53:40Z,1,2020-02-15T06:59:41Z +6465,2005-07-12T01:17:11Z,2047,207,2005-07-20T00:29:11Z,2,2020-02-15T06:59:41Z +6466,2005-07-12T01:21:03Z,3369,235,2005-07-14T04:05:03Z,1,2020-02-15T06:59:41Z +6467,2005-07-12T01:22:03Z,2067,457,2005-07-20T04:37:03Z,2,2020-02-15T06:59:41Z +6468,2005-07-12T01:27:09Z,4560,541,2005-07-20T00:37:09Z,2,2020-02-15T06:59:41Z +6469,2005-07-12T01:29:27Z,3830,147,2005-07-16T20:22:27Z,2,2020-02-15T06:59:41Z +6470,2005-07-12T01:29:41Z,1680,240,2005-07-15T21:33:41Z,2,2020-02-15T06:59:41Z +6471,2005-07-12T01:31:06Z,2253,397,2005-07-13T05:26:06Z,1,2020-02-15T06:59:41Z +6472,2005-07-12T01:33:25Z,3780,183,2005-07-15T20:26:25Z,1,2020-02-15T06:59:41Z +6473,2005-07-12T01:35:40Z,527,594,2005-07-20T20:11:40Z,1,2020-02-15T06:59:41Z +6474,2005-07-12T01:36:46Z,310,43,2005-07-16T07:24:46Z,2,2020-02-15T06:59:41Z +6475,2005-07-12T01:36:57Z,2035,74,2005-07-17T21:22:57Z,1,2020-02-15T06:59:41Z +6476,2005-07-12T01:37:48Z,978,28,2005-07-12T20:21:48Z,2,2020-02-15T06:59:41Z +6477,2005-07-12T01:38:42Z,804,181,2005-07-17T05:19:42Z,2,2020-02-15T06:59:41Z +6478,2005-07-12T01:41:44Z,2589,483,2005-07-15T20:48:44Z,1,2020-02-15T06:59:41Z +6479,2005-07-12T01:49:00Z,2587,558,2005-07-21T04:26:00Z,1,2020-02-15T06:59:41Z +6480,2005-07-12T01:49:29Z,3076,309,2005-07-17T01:00:29Z,1,2020-02-15T06:59:41Z +6481,2005-07-12T01:50:15Z,2392,128,2005-07-20T03:03:15Z,1,2020-02-15T06:59:41Z +6482,2005-07-12T01:50:21Z,4135,57,2005-07-14T06:49:21Z,2,2020-02-15T06:59:41Z +6483,2005-07-12T01:59:20Z,1053,263,2005-07-12T22:22:20Z,2,2020-02-15T06:59:41Z +6484,2005-07-12T02:04:10Z,4093,556,2005-07-17T23:18:10Z,2,2020-02-15T06:59:41Z +6485,2005-07-12T02:07:59Z,1224,319,2005-07-19T22:56:59Z,1,2020-02-15T06:59:41Z +6486,2005-07-12T02:09:36Z,4008,75,2005-07-14T03:04:36Z,2,2020-02-15T06:59:41Z +6487,2005-07-12T02:17:00Z,4000,277,2005-07-19T00:57:00Z,2,2020-02-15T06:59:41Z +6488,2005-07-12T02:20:09Z,3974,169,2005-07-20T00:53:09Z,2,2020-02-15T06:59:41Z +6489,2005-07-12T02:22:46Z,1821,268,2005-07-17T06:16:46Z,2,2020-02-15T06:59:41Z +6490,2005-07-12T02:28:03Z,2249,548,2005-07-19T03:06:03Z,2,2020-02-15T06:59:41Z +6491,2005-07-12T02:28:31Z,2803,415,2005-07-21T00:38:31Z,1,2020-02-15T06:59:41Z +6492,2005-07-12T02:28:40Z,466,590,2005-07-17T05:58:40Z,2,2020-02-15T06:59:41Z +6493,2005-07-12T02:40:41Z,16,184,2005-07-16T04:56:41Z,1,2020-02-15T06:59:41Z +6494,2005-07-12T02:42:51Z,1124,57,2005-07-20T06:57:51Z,1,2020-02-15T06:59:41Z +6495,2005-07-12T02:57:02Z,2440,19,2005-07-14T08:35:02Z,1,2020-02-15T06:59:41Z +6496,2005-07-12T02:57:39Z,3550,139,2005-07-20T01:43:39Z,1,2020-02-15T06:59:41Z +6497,2005-07-12T03:04:29Z,933,222,2005-07-17T21:36:29Z,2,2020-02-15T06:59:41Z +6498,2005-07-12T03:05:38Z,243,48,2005-07-19T07:12:38Z,1,2020-02-15T06:59:41Z +6499,2005-07-12T03:11:18Z,3165,474,2005-07-21T07:50:18Z,2,2020-02-15T06:59:41Z +6500,2005-07-12T03:11:23Z,4521,577,2005-07-13T00:51:23Z,2,2020-02-15T06:59:41Z +6501,2005-07-12T03:11:55Z,2851,219,2005-07-16T02:08:55Z,2,2020-02-15T06:59:41Z +6502,2005-07-12T03:15:45Z,1641,40,2005-07-17T08:47:45Z,2,2020-02-15T06:59:41Z +6503,2005-07-12T03:18:07Z,1319,120,2005-07-15T00:05:07Z,1,2020-02-15T06:59:41Z +6504,2005-07-12T03:19:14Z,3786,535,2005-07-17T01:13:14Z,2,2020-02-15T06:59:41Z +6505,2005-07-12T03:27:37Z,3986,415,2005-07-17T22:42:37Z,2,2020-02-15T06:59:41Z +6506,2005-07-12T03:28:22Z,386,423,2005-07-17T22:43:22Z,1,2020-02-15T06:59:41Z +6507,2005-07-12T03:33:12Z,2463,118,2005-07-20T03:56:12Z,1,2020-02-15T06:59:41Z +6508,2005-07-12T03:34:50Z,1474,597,2005-07-17T02:57:50Z,2,2020-02-15T06:59:41Z +6509,2005-07-12T03:35:01Z,2468,427,2005-07-13T06:50:01Z,2,2020-02-15T06:59:41Z +6510,2005-07-12T03:35:39Z,905,446,2005-07-21T01:41:39Z,1,2020-02-15T06:59:41Z +6511,2005-07-12T03:39:29Z,1350,322,2005-07-17T01:01:29Z,2,2020-02-15T06:59:41Z +6512,2005-07-12T03:42:49Z,1703,68,2005-07-13T05:01:49Z,2,2020-02-15T06:59:41Z +6513,2005-07-12T03:44:43Z,2671,393,2005-07-13T05:54:43Z,1,2020-02-15T06:59:41Z +6514,2005-07-12T03:47:44Z,3562,73,2005-07-20T00:11:44Z,1,2020-02-15T06:59:41Z +6515,2005-07-12T03:50:32Z,706,261,2005-07-15T03:54:32Z,2,2020-02-15T06:59:41Z +6516,2005-07-12T03:51:54Z,863,291,2005-07-14T03:41:54Z,2,2020-02-15T06:59:41Z +6517,2005-07-12T03:52:39Z,185,387,2005-07-20T08:00:39Z,1,2020-02-15T06:59:41Z +6518,2005-07-12T03:59:42Z,2698,288,2005-07-19T22:21:42Z,2,2020-02-15T06:59:41Z +6519,2005-07-12T04:00:36Z,4149,598,2005-07-19T01:15:36Z,1,2020-02-15T06:59:41Z +6520,2005-07-12T04:05:16Z,1535,270,2005-07-15T08:26:16Z,1,2020-02-15T06:59:41Z +6521,2005-07-12T04:06:11Z,3293,49,2005-07-21T05:50:11Z,1,2020-02-15T06:59:41Z +6522,2005-07-12T04:11:58Z,3916,142,2005-07-15T08:32:58Z,1,2020-02-15T06:59:41Z +6523,2005-07-12T04:14:19Z,1848,574,2005-07-17T00:38:19Z,1,2020-02-15T06:59:41Z +6524,2005-07-12T04:14:35Z,1467,376,2005-07-17T03:59:35Z,2,2020-02-15T06:59:41Z +6525,2005-07-12T04:17:15Z,1408,103,2005-07-18T23:11:15Z,1,2020-02-15T06:59:41Z +6526,2005-07-12T04:21:20Z,1718,225,2005-07-18T23:45:20Z,2,2020-02-15T06:59:41Z +6527,2005-07-12T04:23:06Z,538,65,2005-07-17T00:20:06Z,1,2020-02-15T06:59:41Z +6528,2005-07-12T04:29:44Z,3824,598,2005-07-18T02:39:44Z,2,2020-02-15T06:59:41Z +6529,2005-07-12T04:31:04Z,1058,503,2005-07-17T07:09:04Z,2,2020-02-15T06:59:41Z +6530,2005-07-12T04:33:19Z,3410,75,2005-07-15T08:26:19Z,1,2020-02-15T06:59:41Z +6531,2005-07-12T04:35:24Z,4231,510,2005-07-16T05:37:24Z,2,2020-02-15T06:59:41Z +6532,2005-07-12T04:38:32Z,2361,225,2005-07-13T03:54:32Z,1,2020-02-15T06:59:41Z +6533,2005-07-12T04:39:38Z,3853,366,2005-07-18T05:29:38Z,1,2020-02-15T06:59:41Z +6534,2005-07-12T04:39:43Z,2359,577,2005-07-16T06:33:43Z,1,2020-02-15T06:59:41Z +6535,2005-07-12T04:43:43Z,1921,446,2005-07-17T04:52:43Z,1,2020-02-15T06:59:41Z +6536,2005-07-12T04:44:25Z,3521,289,2005-07-18T01:52:25Z,2,2020-02-15T06:59:41Z +6537,2005-07-12T04:46:30Z,3381,207,2005-07-19T03:04:30Z,2,2020-02-15T06:59:41Z +6538,2005-07-12T04:50:26Z,1987,529,2005-07-20T23:44:26Z,2,2020-02-15T06:59:41Z +6539,2005-07-12T04:50:49Z,2275,259,2005-07-19T03:23:49Z,1,2020-02-15T06:59:41Z +6540,2005-07-12T04:51:13Z,937,156,2005-07-21T03:38:13Z,1,2020-02-15T06:59:41Z +6541,2005-07-12T04:53:41Z,1795,529,2005-07-17T23:17:41Z,2,2020-02-15T06:59:41Z +6542,2005-07-12T04:53:49Z,2421,359,2005-07-13T01:48:49Z,1,2020-02-15T06:59:41Z +6543,2005-07-12T04:54:32Z,2568,264,2005-07-15T09:50:32Z,2,2020-02-15T06:59:41Z +6544,2005-07-12T04:56:15Z,1218,97,2005-07-17T08:28:15Z,1,2020-02-15T06:59:41Z +6545,2005-07-12T04:56:30Z,4447,376,2005-07-20T05:41:30Z,1,2020-02-15T06:59:41Z +6546,2005-07-12T04:57:17Z,393,105,2005-07-17T09:29:17Z,2,2020-02-15T06:59:41Z +6547,2005-07-12T04:57:46Z,2656,262,2005-07-18T08:36:46Z,2,2020-02-15T06:59:41Z +6548,2005-07-12T05:00:46Z,2480,488,2005-07-19T04:40:46Z,2,2020-02-15T06:59:41Z +6549,2005-07-12T05:02:01Z,2688,493,2005-07-20T06:19:01Z,2,2020-02-15T06:59:41Z +6550,2005-07-12T05:03:14Z,2184,112,2005-07-19T04:06:14Z,1,2020-02-15T06:59:41Z +6551,2005-07-12T05:03:43Z,282,567,2005-07-13T10:44:43Z,1,2020-02-15T06:59:41Z +6552,2005-07-12T05:05:06Z,766,493,2005-07-13T05:12:06Z,2,2020-02-15T06:59:41Z +6553,2005-07-12T05:06:39Z,1137,265,2005-07-21T10:37:39Z,1,2020-02-15T06:59:41Z +6554,2005-07-12T05:07:26Z,2741,178,2005-07-21T06:06:26Z,2,2020-02-15T06:59:41Z +6555,2005-07-12T05:08:16Z,1282,188,2005-07-14T04:09:16Z,1,2020-02-15T06:59:41Z +6556,2005-07-12T05:10:16Z,3901,570,2005-07-13T04:16:16Z,2,2020-02-15T06:59:41Z +6557,2005-07-12T05:12:03Z,1442,116,2005-07-20T06:49:03Z,1,2020-02-15T06:59:41Z +6558,2005-07-12T05:16:07Z,2195,164,2005-07-13T05:32:07Z,2,2020-02-15T06:59:41Z +6559,2005-07-12T05:20:35Z,458,353,2005-07-16T08:44:35Z,2,2020-02-15T06:59:41Z +6560,2005-07-12T05:22:06Z,433,54,2005-07-15T00:04:06Z,2,2020-02-15T06:59:41Z +6561,2005-07-12T05:24:02Z,4568,528,2005-07-16T03:43:02Z,2,2020-02-15T06:59:41Z +6562,2005-07-12T05:26:26Z,3969,27,2005-07-16T05:10:26Z,2,2020-02-15T06:59:41Z +6563,2005-07-12T05:34:09Z,87,438,2005-07-21T07:37:09Z,1,2020-02-15T06:59:41Z +6564,2005-07-12T05:34:44Z,2320,210,2005-07-18T06:12:44Z,2,2020-02-15T06:59:41Z +6565,2005-07-12T05:39:50Z,2751,35,2005-07-13T01:07:50Z,2,2020-02-15T06:59:41Z +6566,2005-07-12T05:42:53Z,1822,178,2005-07-19T01:23:53Z,2,2020-02-15T06:59:41Z +6567,2005-07-12T05:43:09Z,1336,198,2005-07-19T08:18:09Z,2,2020-02-15T06:59:41Z +6568,2005-07-12T05:45:47Z,4203,13,2005-07-15T05:18:47Z,2,2020-02-15T06:59:41Z +6569,2005-07-12T05:47:40Z,759,183,2005-07-20T06:23:40Z,2,2020-02-15T06:59:41Z +6570,2005-07-12T05:50:31Z,2082,217,2005-07-13T09:58:31Z,1,2020-02-15T06:59:41Z +6571,2005-07-12T05:51:47Z,3700,140,2005-07-15T11:31:47Z,1,2020-02-15T06:59:41Z +6572,2005-07-12T05:56:38Z,3121,35,2005-07-16T10:41:38Z,1,2020-02-15T06:59:41Z +6573,2005-07-12T06:03:40Z,3308,239,2005-07-13T11:49:40Z,2,2020-02-15T06:59:41Z +6574,2005-07-12T06:04:22Z,621,115,2005-07-18T03:19:22Z,2,2020-02-15T06:59:41Z +6575,2005-07-12T06:12:53Z,1414,598,2005-07-18T07:55:53Z,2,2020-02-15T06:59:41Z +6576,2005-07-12T06:13:41Z,339,362,2005-07-16T03:22:41Z,1,2020-02-15T06:59:41Z +6577,2005-07-12T06:15:05Z,4191,439,2005-07-15T06:23:05Z,1,2020-02-15T06:59:41Z +6578,2005-07-12T06:15:41Z,2304,229,2005-07-15T10:43:41Z,1,2020-02-15T06:59:41Z +6580,2005-07-12T06:26:10Z,1543,31,2005-07-13T06:44:10Z,1,2020-02-15T06:59:41Z +6581,2005-07-12T06:26:49Z,2121,468,2005-07-14T05:07:49Z,2,2020-02-15T06:59:41Z +6582,2005-07-12T06:28:12Z,2077,420,2005-07-19T06:19:12Z,1,2020-02-15T06:59:41Z +6583,2005-07-12T06:42:31Z,2343,462,2005-07-15T07:51:31Z,1,2020-02-15T06:59:41Z +6584,2005-07-12T06:43:36Z,1800,472,2005-07-16T12:18:36Z,2,2020-02-15T06:59:41Z +6585,2005-07-12T06:50:52Z,2064,136,2005-07-21T06:51:52Z,1,2020-02-15T06:59:41Z +6586,2005-07-12T06:56:24Z,3860,93,2005-07-17T09:36:24Z,1,2020-02-15T06:59:41Z +6587,2005-07-12T06:56:26Z,238,419,2005-07-20T05:53:26Z,2,2020-02-15T06:59:41Z +6588,2005-07-12T06:57:40Z,1257,420,2005-07-16T04:27:40Z,1,2020-02-15T06:59:41Z +6589,2005-07-12T07:06:29Z,1595,424,2005-07-14T12:06:29Z,2,2020-02-15T06:59:41Z +6590,2005-07-12T07:08:21Z,1067,442,2005-07-18T06:16:21Z,2,2020-02-15T06:59:41Z +6591,2005-07-12T07:13:46Z,2846,509,2005-07-16T05:15:46Z,2,2020-02-15T06:59:41Z +6592,2005-07-12T07:19:35Z,3481,273,2005-07-19T07:15:35Z,1,2020-02-15T06:59:41Z +6593,2005-07-12T07:21:17Z,3441,356,2005-07-14T02:35:17Z,2,2020-02-15T06:59:41Z +6594,2005-07-12T07:25:43Z,4458,517,2005-07-13T07:59:43Z,1,2020-02-15T06:59:41Z +6595,2005-07-12T07:25:48Z,1286,458,2005-07-20T02:24:48Z,2,2020-02-15T06:59:41Z +6596,2005-07-12T07:32:59Z,890,409,2005-07-13T02:47:59Z,1,2020-02-15T06:59:41Z +6597,2005-07-12T07:37:02Z,979,479,2005-07-16T10:24:02Z,2,2020-02-15T06:59:41Z +6598,2005-07-12T07:38:25Z,2049,532,2005-07-19T07:58:25Z,1,2020-02-15T06:59:41Z +6599,2005-07-12T07:41:14Z,4348,519,2005-07-21T02:45:14Z,2,2020-02-15T06:59:41Z +6600,2005-07-12T07:41:48Z,3315,389,2005-07-18T12:36:48Z,2,2020-02-15T06:59:41Z +6601,2005-07-12T07:44:49Z,1640,464,2005-07-20T03:22:49Z,2,2020-02-15T06:59:41Z +6602,2005-07-12T07:50:24Z,2382,214,2005-07-20T03:25:24Z,2,2020-02-15T06:59:41Z +6603,2005-07-12T07:52:55Z,3583,425,2005-07-16T13:19:55Z,2,2020-02-15T06:59:41Z +6604,2005-07-12T07:57:45Z,822,365,2005-07-16T05:41:45Z,2,2020-02-15T06:59:41Z +6605,2005-07-12T08:01:07Z,2892,547,2005-07-19T03:12:07Z,1,2020-02-15T06:59:41Z +6606,2005-07-12T08:03:40Z,2805,178,2005-07-13T09:05:40Z,1,2020-02-15T06:59:41Z +6607,2005-07-12T08:08:50Z,337,562,2005-07-20T09:17:50Z,1,2020-02-15T06:59:41Z +6608,2005-07-12T08:16:50Z,3577,244,2005-07-18T07:08:50Z,2,2020-02-15T06:59:41Z +6609,2005-07-12T08:19:41Z,3332,133,2005-07-19T08:19:41Z,2,2020-02-15T06:59:41Z +6610,2005-07-12T08:20:02Z,645,353,2005-07-21T09:16:02Z,2,2020-02-15T06:59:41Z +6611,2005-07-12T08:20:23Z,1604,286,2005-07-16T07:19:23Z,1,2020-02-15T06:59:41Z +6612,2005-07-12T08:28:33Z,235,152,2005-07-17T06:25:33Z,1,2020-02-15T06:59:41Z +6613,2005-07-12T08:30:07Z,3421,460,2005-07-14T10:25:07Z,2,2020-02-15T06:59:41Z +6614,2005-07-12T08:33:49Z,3004,144,2005-07-18T07:28:49Z,2,2020-02-15T06:59:41Z +6615,2005-07-12T08:36:22Z,23,438,2005-07-20T09:03:22Z,1,2020-02-15T06:59:41Z +6616,2005-07-12T08:37:30Z,1833,179,2005-07-20T10:33:30Z,1,2020-02-15T06:59:41Z +6617,2005-07-12T08:39:56Z,2292,248,2005-07-14T09:32:56Z,2,2020-02-15T06:59:41Z +6618,2005-07-12T08:41:42Z,4266,327,2005-07-14T05:34:42Z,1,2020-02-15T06:59:41Z +6619,2005-07-12T08:50:48Z,4062,305,2005-07-14T11:54:48Z,1,2020-02-15T06:59:41Z +6620,2005-07-12T08:51:03Z,2362,337,2005-07-16T03:59:03Z,2,2020-02-15T06:59:41Z +6621,2005-07-12T08:57:30Z,2229,561,2005-07-14T09:47:30Z,1,2020-02-15T06:59:41Z +6622,2005-07-12T09:04:11Z,4350,325,2005-07-13T04:27:11Z,1,2020-02-15T06:59:41Z +6623,2005-07-12T09:05:34Z,4412,302,2005-07-19T13:54:34Z,2,2020-02-15T06:59:41Z +6624,2005-07-12T09:05:50Z,3946,335,2005-07-18T13:59:50Z,2,2020-02-15T06:59:41Z +6625,2005-07-12T09:06:40Z,735,443,2005-07-21T04:57:40Z,2,2020-02-15T06:59:41Z +6626,2005-07-12T09:16:24Z,2418,269,2005-07-17T04:06:24Z,2,2020-02-15T06:59:41Z +6627,2005-07-12T09:16:46Z,626,565,2005-07-17T10:58:46Z,1,2020-02-15T06:59:41Z +6628,2005-07-12T09:18:08Z,2894,211,2005-07-21T04:27:08Z,2,2020-02-15T06:59:41Z +6629,2005-07-12T09:18:35Z,2855,582,2005-07-20T11:34:35Z,2,2020-02-15T06:59:41Z +6630,2005-07-12T09:30:05Z,1843,462,2005-07-14T08:29:05Z,2,2020-02-15T06:59:41Z +6631,2005-07-12T09:31:43Z,2340,204,2005-07-15T05:00:43Z,2,2020-02-15T06:59:41Z +6632,2005-07-12T09:33:10Z,2929,442,2005-07-15T11:36:10Z,1,2020-02-15T06:59:41Z +6633,2005-07-12T09:35:42Z,2908,150,2005-07-13T12:56:42Z,2,2020-02-15T06:59:41Z +6634,2005-07-12T09:37:18Z,2943,50,2005-07-13T09:28:18Z,1,2020-02-15T06:59:41Z +6635,2005-07-12T09:47:58Z,515,273,2005-07-16T15:43:58Z,1,2020-02-15T06:59:41Z +6636,2005-07-12T09:49:46Z,3270,441,2005-07-14T12:15:46Z,1,2020-02-15T06:59:41Z +6637,2005-07-12T09:57:39Z,2852,164,2005-07-19T08:40:39Z,1,2020-02-15T06:59:41Z +6638,2005-07-12T09:58:02Z,207,87,2005-07-13T09:40:02Z,1,2020-02-15T06:59:41Z +6639,2005-07-12T10:00:44Z,3385,587,2005-07-19T04:56:44Z,1,2020-02-15T06:59:41Z +6640,2005-07-12T10:27:19Z,2794,148,2005-07-21T06:28:19Z,2,2020-02-15T06:59:41Z +6641,2005-07-12T10:33:14Z,2165,334,2005-07-20T08:24:14Z,2,2020-02-15T06:59:41Z +6642,2005-07-12T10:37:52Z,201,441,2005-07-13T15:13:52Z,1,2020-02-15T06:59:41Z +6643,2005-07-12T10:39:22Z,174,88,2005-07-18T13:52:22Z,1,2020-02-15T06:59:41Z +6644,2005-07-12T10:39:39Z,2667,285,2005-07-14T11:50:39Z,1,2020-02-15T06:59:41Z +6645,2005-07-12T10:39:55Z,2858,73,2005-07-17T07:41:55Z,1,2020-02-15T06:59:41Z +6646,2005-07-12T10:41:34Z,4061,508,2005-07-15T05:31:34Z,1,2020-02-15T06:59:41Z +6647,2005-07-12T10:43:53Z,1841,8,2005-07-14T05:37:53Z,1,2020-02-15T06:59:41Z +6648,2005-07-12T10:46:30Z,718,356,2005-07-14T16:15:30Z,1,2020-02-15T06:59:41Z +6649,2005-07-12T10:51:09Z,70,57,2005-07-14T16:05:09Z,2,2020-02-15T06:59:41Z +6650,2005-07-12T10:57:10Z,1589,526,2005-07-14T07:24:10Z,1,2020-02-15T06:59:41Z +6651,2005-07-12T10:57:28Z,98,447,2005-07-15T06:06:28Z,2,2020-02-15T06:59:41Z +6652,2005-07-12T10:59:38Z,2200,518,2005-07-13T13:52:38Z,1,2020-02-15T06:59:41Z +6653,2005-07-12T11:06:17Z,614,25,2005-07-19T16:52:17Z,2,2020-02-15T06:59:41Z +6654,2005-07-12T11:06:28Z,2870,458,2005-07-20T10:27:28Z,1,2020-02-15T06:59:41Z +6655,2005-07-12T11:08:32Z,3937,100,2005-07-15T15:17:32Z,1,2020-02-15T06:59:41Z +6656,2005-07-12T11:09:47Z,2282,330,2005-07-14T05:50:47Z,1,2020-02-15T06:59:41Z +6657,2005-07-12T11:11:36Z,3697,553,2005-07-16T15:56:36Z,1,2020-02-15T06:59:41Z +6658,2005-07-12T11:13:21Z,172,27,2005-07-17T09:10:21Z,2,2020-02-15T06:59:41Z +6659,2005-07-12T11:18:05Z,2285,134,2005-07-16T16:45:05Z,2,2020-02-15T06:59:41Z +6660,2005-07-12T11:20:12Z,446,598,2005-07-20T12:58:12Z,2,2020-02-15T06:59:41Z +6661,2005-07-12T11:20:39Z,2367,315,2005-07-16T08:17:39Z,2,2020-02-15T06:59:41Z +6662,2005-07-12T11:21:06Z,1464,99,2005-07-13T13:00:06Z,1,2020-02-15T06:59:41Z +6663,2005-07-12T11:27:35Z,4364,5,2005-07-21T16:35:35Z,1,2020-02-15T06:59:41Z +6664,2005-07-12T11:28:22Z,4578,351,2005-07-15T09:30:22Z,1,2020-02-15T06:59:41Z +6665,2005-07-12T11:29:14Z,2912,587,2005-07-19T11:26:14Z,2,2020-02-15T06:59:41Z +6666,2005-07-12T11:32:15Z,3194,314,2005-07-14T16:09:15Z,2,2020-02-15T06:59:41Z +6667,2005-07-12T11:36:22Z,215,50,2005-07-19T12:53:22Z,1,2020-02-15T06:59:41Z +6668,2005-07-12T11:37:45Z,1498,199,2005-07-14T13:28:45Z,2,2020-02-15T06:59:41Z +6669,2005-07-12T11:39:55Z,1420,355,2005-07-20T05:56:55Z,1,2020-02-15T06:59:41Z +6670,2005-07-12T11:44:33Z,3106,249,2005-07-19T07:54:33Z,2,2020-02-15T06:59:41Z +6671,2005-07-12T11:48:48Z,955,526,2005-07-19T16:55:48Z,2,2020-02-15T06:59:41Z +6672,2005-07-12T11:49:16Z,375,439,2005-07-13T07:03:16Z,2,2020-02-15T06:59:41Z +6673,2005-07-12T11:50:56Z,1997,322,2005-07-13T14:27:56Z,1,2020-02-15T06:59:41Z +6674,2005-07-12T11:51:54Z,2385,399,2005-07-13T16:57:54Z,1,2020-02-15T06:59:41Z +6675,2005-07-12T11:53:06Z,2124,523,2005-07-13T06:09:06Z,1,2020-02-15T06:59:41Z +6676,2005-07-12T11:53:40Z,2294,571,2005-07-19T09:15:40Z,1,2020-02-15T06:59:41Z +6677,2005-07-12T11:58:14Z,2389,516,2005-07-21T06:05:14Z,2,2020-02-15T06:59:41Z +6678,2005-07-12T11:58:36Z,3473,330,2005-07-15T17:50:36Z,2,2020-02-15T06:59:41Z +6679,2005-07-12T12:01:07Z,3664,586,2005-07-14T11:36:07Z,1,2020-02-15T06:59:41Z +6680,2005-07-12T12:01:56Z,2887,43,2005-07-16T17:32:56Z,1,2020-02-15T06:59:41Z +6681,2005-07-12T12:04:12Z,854,368,2005-07-19T11:01:12Z,2,2020-02-15T06:59:41Z +6682,2005-07-12T12:12:43Z,1984,339,2005-07-21T10:49:43Z,2,2020-02-15T06:59:41Z +6683,2005-07-12T12:14:05Z,3433,244,2005-07-17T14:02:05Z,2,2020-02-15T06:59:41Z +6684,2005-07-12T12:14:42Z,2817,583,2005-07-21T11:07:42Z,2,2020-02-15T06:59:41Z +6685,2005-07-12T12:16:28Z,1434,5,2005-07-19T17:03:28Z,1,2020-02-15T06:59:41Z +6686,2005-07-12T12:18:38Z,3804,6,2005-07-13T17:56:38Z,2,2020-02-15T06:59:41Z +6687,2005-07-12T12:19:23Z,2736,128,2005-07-19T17:12:23Z,1,2020-02-15T06:59:41Z +6688,2005-07-12T12:22:12Z,2377,246,2005-07-14T14:05:12Z,1,2020-02-15T06:59:41Z +6689,2005-07-12T12:22:13Z,1568,525,2005-07-16T07:44:13Z,1,2020-02-15T06:59:41Z +6690,2005-07-12T12:23:02Z,4254,447,2005-07-16T15:39:02Z,2,2020-02-15T06:59:41Z +6691,2005-07-12T12:26:38Z,403,192,2005-07-18T13:26:38Z,2,2020-02-15T06:59:41Z +6692,2005-07-12T12:35:39Z,2837,372,2005-07-20T11:20:39Z,2,2020-02-15T06:59:41Z +6693,2005-07-12T12:37:00Z,2014,573,2005-07-20T09:36:00Z,1,2020-02-15T06:59:41Z +6694,2005-07-12T12:39:23Z,586,204,2005-07-19T14:47:23Z,1,2020-02-15T06:59:41Z +6695,2005-07-12T12:39:39Z,3088,550,2005-07-17T13:36:39Z,2,2020-02-15T06:59:41Z +6696,2005-07-12T12:44:04Z,299,273,2005-07-16T14:17:04Z,1,2020-02-15T06:59:41Z +6697,2005-07-12T12:44:57Z,210,103,2005-07-19T13:02:57Z,1,2020-02-15T06:59:41Z +6698,2005-07-12T12:45:00Z,4419,64,2005-07-16T11:16:00Z,2,2020-02-15T06:59:41Z +6699,2005-07-12T12:45:21Z,3411,565,2005-07-15T12:59:21Z,1,2020-02-15T06:59:41Z +6700,2005-07-12T12:47:22Z,3063,184,2005-07-21T16:04:22Z,1,2020-02-15T06:59:41Z +6701,2005-07-12T12:47:59Z,3428,454,2005-07-13T10:28:59Z,1,2020-02-15T06:59:41Z +6702,2005-07-12T12:48:03Z,233,164,2005-07-13T11:55:03Z,1,2020-02-15T06:59:41Z +6703,2005-07-12T12:50:19Z,46,470,2005-07-16T13:41:19Z,1,2020-02-15T06:59:41Z +6704,2005-07-12T12:50:24Z,1590,595,2005-07-20T16:41:24Z,2,2020-02-15T06:59:41Z +6705,2005-07-12T12:53:11Z,4268,363,2005-07-13T07:17:11Z,1,2020-02-15T06:59:41Z +6706,2005-07-12T12:59:16Z,4552,267,2005-07-19T10:37:16Z,1,2020-02-15T06:59:41Z +6707,2005-07-12T13:07:55Z,406,80,2005-07-16T16:26:55Z,2,2020-02-15T06:59:41Z +6708,2005-07-12T13:10:55Z,372,82,2005-07-21T07:36:55Z,1,2020-02-15T06:59:41Z +6709,2005-07-12T13:20:41Z,4049,322,2005-07-16T10:37:41Z,2,2020-02-15T06:59:41Z +6710,2005-07-12T13:23:09Z,806,462,2005-07-20T10:10:09Z,2,2020-02-15T06:59:41Z +6711,2005-07-12T13:23:40Z,2247,257,2005-07-20T11:45:40Z,2,2020-02-15T06:59:41Z +6712,2005-07-12T13:24:47Z,4581,226,2005-07-20T09:35:47Z,2,2020-02-15T06:59:41Z +6713,2005-07-12T13:27:36Z,4218,557,2005-07-16T11:14:36Z,1,2020-02-15T06:59:41Z +6714,2005-07-12T13:29:06Z,1947,370,2005-07-18T16:02:06Z,2,2020-02-15T06:59:41Z +6715,2005-07-12T13:32:28Z,643,386,2005-07-15T17:01:28Z,2,2020-02-15T06:59:41Z +6716,2005-07-12T13:34:58Z,2783,367,2005-07-19T15:09:58Z,1,2020-02-15T06:59:41Z +6717,2005-07-12T13:35:02Z,523,273,2005-07-20T15:03:02Z,1,2020-02-15T06:59:41Z +6718,2005-07-12T13:38:06Z,2283,541,2005-07-18T09:05:06Z,1,2020-02-15T06:59:41Z +6719,2005-07-12T13:40:37Z,739,330,2005-07-15T15:23:37Z,2,2020-02-15T06:59:41Z +6720,2005-07-12T13:41:16Z,2704,151,2005-07-13T14:41:16Z,2,2020-02-15T06:59:41Z +6721,2005-07-12T13:42:58Z,2798,462,2005-07-19T16:39:58Z,2,2020-02-15T06:59:41Z +6722,2005-07-12T13:44:03Z,3124,211,2005-07-19T12:43:03Z,2,2020-02-15T06:59:41Z +6723,2005-07-12T13:44:57Z,2678,499,2005-07-14T15:57:57Z,2,2020-02-15T06:59:41Z +6724,2005-07-12T13:45:15Z,2486,262,2005-07-19T19:18:15Z,1,2020-02-15T06:59:41Z +6725,2005-07-12T13:47:17Z,831,213,2005-07-17T13:31:17Z,1,2020-02-15T06:59:41Z +6726,2005-07-12T13:48:14Z,4494,97,2005-07-16T11:11:14Z,1,2020-02-15T06:59:41Z +6727,2005-07-12T13:54:25Z,3793,407,2005-07-14T17:29:25Z,1,2020-02-15T06:59:41Z +6728,2005-07-12T13:56:48Z,2113,414,2005-07-15T18:49:48Z,1,2020-02-15T06:59:41Z +6729,2005-07-12T13:58:23Z,2495,455,2005-07-19T09:34:23Z,2,2020-02-15T06:59:41Z +6730,2005-07-12T13:58:25Z,1552,532,2005-07-20T13:01:25Z,1,2020-02-15T06:59:41Z +6731,2005-07-12T13:58:27Z,844,593,2005-07-15T10:04:27Z,2,2020-02-15T06:59:41Z +6732,2005-07-12T13:58:51Z,1913,299,2005-07-17T17:42:51Z,1,2020-02-15T06:59:41Z +6733,2005-07-12T14:04:01Z,1476,585,2005-07-21T18:57:01Z,2,2020-02-15T06:59:41Z +6734,2005-07-12T14:04:24Z,2248,446,2005-07-21T19:47:24Z,1,2020-02-15T06:59:41Z +6735,2005-07-12T14:08:20Z,276,428,2005-07-18T09:41:20Z,2,2020-02-15T06:59:41Z +6736,2005-07-12T14:16:50Z,530,342,2005-07-15T16:26:50Z,1,2020-02-15T06:59:41Z +6737,2005-07-12T14:16:52Z,315,304,2005-07-18T19:48:52Z,1,2020-02-15T06:59:41Z +6738,2005-07-12T14:17:55Z,1197,366,2005-07-21T10:11:55Z,2,2020-02-15T06:59:41Z +6739,2005-07-12T14:22:08Z,1221,71,2005-07-18T16:57:08Z,2,2020-02-15T06:59:41Z +6740,2005-07-12T14:22:08Z,2431,139,2005-07-14T14:35:08Z,1,2020-02-15T06:59:41Z +6741,2005-07-12T14:24:16Z,237,359,2005-07-15T08:31:16Z,1,2020-02-15T06:59:41Z +6742,2005-07-12T14:25:31Z,4242,558,2005-07-17T08:50:31Z,2,2020-02-15T06:59:41Z +6743,2005-07-12T14:29:25Z,158,261,2005-07-13T13:13:25Z,1,2020-02-15T06:59:41Z +6744,2005-07-12T14:30:28Z,2565,64,2005-07-14T16:20:28Z,1,2020-02-15T06:59:41Z +6745,2005-07-12T14:30:51Z,1331,524,2005-07-13T13:42:51Z,2,2020-02-15T06:59:41Z +6746,2005-07-12T14:33:01Z,3127,537,2005-07-17T19:52:01Z,2,2020-02-15T06:59:41Z +6747,2005-07-12T14:33:21Z,3651,126,2005-07-13T09:59:21Z,2,2020-02-15T06:59:41Z +6748,2005-07-12T14:39:27Z,3655,540,2005-07-18T13:40:27Z,2,2020-02-15T06:59:41Z +6749,2005-07-12T14:43:05Z,2895,334,2005-07-21T15:13:05Z,2,2020-02-15T06:59:41Z +6750,2005-07-12T14:49:39Z,3838,459,2005-07-18T18:43:39Z,2,2020-02-15T06:59:41Z +6751,2005-07-12T14:50:34Z,1749,312,2005-07-15T19:39:34Z,2,2020-02-15T06:59:41Z +6752,2005-07-12T14:53:15Z,3392,453,2005-07-20T09:23:15Z,1,2020-02-15T06:59:41Z +6753,2005-07-12T14:55:42Z,2591,147,2005-07-18T19:16:42Z,1,2020-02-15T06:59:41Z +6754,2005-07-12T14:59:24Z,1460,114,2005-07-14T11:04:24Z,2,2020-02-15T06:59:41Z +6755,2005-07-12T15:07:49Z,2542,126,2005-07-21T18:43:49Z,2,2020-02-15T06:59:41Z +6756,2005-07-12T15:08:28Z,1174,531,2005-07-13T14:25:28Z,2,2020-02-15T06:59:41Z +6757,2005-07-12T15:09:48Z,547,558,2005-07-17T15:04:48Z,2,2020-02-15T06:59:41Z +6758,2005-07-12T15:13:49Z,4098,546,2005-07-20T09:31:49Z,2,2020-02-15T06:59:41Z +6759,2005-07-12T15:14:48Z,3624,49,2005-07-15T11:29:48Z,1,2020-02-15T06:59:41Z +6760,2005-07-12T15:16:00Z,501,502,2005-07-20T13:20:00Z,2,2020-02-15T06:59:41Z +6761,2005-07-12T15:17:42Z,3645,7,2005-07-18T17:59:42Z,2,2020-02-15T06:59:41Z +6762,2005-07-12T15:25:33Z,3857,262,2005-07-21T18:57:33Z,1,2020-02-15T06:59:41Z +6763,2005-07-12T15:26:34Z,3364,314,2005-07-18T16:38:34Z,2,2020-02-15T06:59:41Z +6764,2005-07-12T15:29:27Z,4407,396,2005-07-21T20:00:27Z,2,2020-02-15T06:59:41Z +6765,2005-07-12T15:30:47Z,2571,433,2005-07-19T14:19:47Z,2,2020-02-15T06:59:41Z +6766,2005-07-12T15:32:01Z,3615,171,2005-07-18T14:03:01Z,2,2020-02-15T06:59:41Z +6767,2005-07-12T15:46:55Z,1819,208,2005-07-17T17:36:55Z,2,2020-02-15T06:59:41Z +6768,2005-07-12T15:47:51Z,3418,151,2005-07-19T21:17:51Z,2,2020-02-15T06:59:41Z +6769,2005-07-12T15:48:54Z,1687,63,2005-07-21T14:39:54Z,2,2020-02-15T06:59:41Z +6770,2005-07-12T15:49:40Z,2080,360,2005-07-20T10:14:40Z,2,2020-02-15T06:59:41Z +6771,2005-07-12T15:54:40Z,1113,396,2005-07-17T15:56:40Z,2,2020-02-15T06:59:41Z +6772,2005-07-12T15:55:35Z,3810,89,2005-07-18T10:47:35Z,1,2020-02-15T06:59:41Z +6773,2005-07-12T15:55:39Z,3346,12,2005-07-18T17:52:39Z,2,2020-02-15T06:59:41Z +6774,2005-07-12T15:56:08Z,868,171,2005-07-13T18:42:08Z,1,2020-02-15T06:59:41Z +6775,2005-07-12T16:01:44Z,2909,383,2005-07-19T14:11:44Z,1,2020-02-15T06:59:41Z +6776,2005-07-12T16:02:09Z,2398,348,2005-07-20T16:31:09Z,1,2020-02-15T06:59:41Z +6777,2005-07-12T16:04:40Z,4089,351,2005-07-20T15:05:40Z,2,2020-02-15T06:59:41Z +6778,2005-07-12T16:06:00Z,4503,381,2005-07-14T21:57:00Z,2,2020-02-15T06:59:41Z +6779,2005-07-12T16:10:50Z,4468,404,2005-07-17T14:51:50Z,2,2020-02-15T06:59:41Z +6780,2005-07-12T16:18:12Z,1255,121,2005-07-13T17:56:12Z,2,2020-02-15T06:59:41Z +6781,2005-07-12T16:21:47Z,3783,533,2005-07-15T19:52:47Z,1,2020-02-15T06:59:41Z +6782,2005-07-12T16:23:25Z,2742,199,2005-07-20T18:46:25Z,2,2020-02-15T06:59:41Z +6783,2005-07-12T16:27:56Z,3633,506,2005-07-13T12:11:56Z,2,2020-02-15T06:59:41Z +6784,2005-07-12T16:28:49Z,197,578,2005-07-15T17:27:49Z,1,2020-02-15T06:59:41Z +6785,2005-07-12T16:30:57Z,4448,69,2005-07-18T20:46:57Z,1,2020-02-15T06:59:41Z +6786,2005-07-12T16:32:33Z,2011,546,2005-07-16T12:42:33Z,2,2020-02-15T06:59:41Z +6787,2005-07-12T16:33:28Z,1481,342,2005-07-18T21:48:28Z,2,2020-02-15T06:59:41Z +6788,2005-07-12T16:33:44Z,1162,460,2005-07-20T15:38:44Z,2,2020-02-15T06:59:41Z +6789,2005-07-12T16:34:40Z,1973,76,2005-07-14T17:02:40Z,2,2020-02-15T06:59:41Z +6790,2005-07-12T16:34:59Z,4486,400,2005-07-17T21:43:59Z,2,2020-02-15T06:59:41Z +6791,2005-07-12T16:35:07Z,1495,144,2005-07-20T15:32:07Z,2,2020-02-15T06:59:41Z +6792,2005-07-12T16:37:28Z,510,571,2005-07-20T11:20:28Z,2,2020-02-15T06:59:41Z +6793,2005-07-12T16:37:55Z,103,148,2005-07-21T16:04:55Z,2,2020-02-15T06:59:41Z +6794,2005-07-12T16:38:23Z,813,233,2005-07-20T17:36:23Z,2,2020-02-15T06:59:41Z +6795,2005-07-12T16:41:00Z,1489,245,2005-07-21T20:52:00Z,1,2020-02-15T06:59:41Z +6796,2005-07-12T16:44:16Z,227,291,2005-07-16T14:48:16Z,2,2020-02-15T06:59:41Z +6797,2005-07-12T16:47:06Z,1536,469,2005-07-14T14:38:06Z,2,2020-02-15T06:59:41Z +6798,2005-07-12T16:49:11Z,275,115,2005-07-19T12:11:11Z,2,2020-02-15T06:59:41Z +6799,2005-07-12T16:52:13Z,2778,42,2005-07-14T15:11:13Z,2,2020-02-15T06:59:41Z +6800,2005-07-12T17:03:56Z,3742,599,2005-07-21T20:32:56Z,2,2020-02-15T06:59:41Z +6801,2005-07-12T17:09:08Z,872,500,2005-07-21T22:25:08Z,1,2020-02-15T06:59:41Z +6802,2005-07-12T17:14:17Z,2942,298,2005-07-17T11:54:17Z,2,2020-02-15T06:59:41Z +6803,2005-07-12T17:21:49Z,2676,490,2005-07-14T18:01:49Z,2,2020-02-15T06:59:41Z +6804,2005-07-12T17:22:06Z,1554,269,2005-07-21T11:37:06Z,1,2020-02-15T06:59:41Z +6805,2005-07-12T17:23:01Z,1758,262,2005-07-21T19:38:01Z,2,2020-02-15T06:59:41Z +6806,2005-07-12T17:31:43Z,656,179,2005-07-17T14:36:43Z,1,2020-02-15T06:59:41Z +6807,2005-07-12T17:33:53Z,669,376,2005-07-18T16:28:53Z,2,2020-02-15T06:59:41Z +6808,2005-07-12T17:36:42Z,362,263,2005-07-18T23:33:42Z,2,2020-02-15T06:59:41Z +6809,2005-07-12T17:51:54Z,3455,168,2005-07-17T15:10:54Z,1,2020-02-15T06:59:41Z +6810,2005-07-12T17:54:19Z,2802,485,2005-07-20T16:58:19Z,2,2020-02-15T06:59:41Z +6811,2005-07-12T17:54:33Z,1572,107,2005-07-20T17:39:33Z,1,2020-02-15T06:59:41Z +6812,2005-07-12T18:03:25Z,2227,553,2005-07-20T18:33:25Z,2,2020-02-15T06:59:41Z +6813,2005-07-12T18:03:50Z,135,54,2005-07-16T16:30:50Z,1,2020-02-15T06:59:41Z +6814,2005-07-12T18:11:58Z,1863,579,2005-07-18T20:37:58Z,2,2020-02-15T06:59:41Z +6815,2005-07-12T18:14:10Z,3236,468,2005-07-17T14:16:10Z,1,2020-02-15T06:59:41Z +6816,2005-07-12T18:18:50Z,2963,290,2005-07-18T21:09:50Z,2,2020-02-15T06:59:41Z +6817,2005-07-12T18:19:57Z,184,135,2005-07-19T22:53:57Z,1,2020-02-15T06:59:41Z +6818,2005-07-12T18:20:54Z,1013,153,2005-07-21T00:03:54Z,2,2020-02-15T06:59:41Z +6819,2005-07-12T18:21:01Z,1253,198,2005-07-13T21:14:01Z,1,2020-02-15T06:59:41Z +6820,2005-07-12T18:21:30Z,223,243,2005-07-14T15:14:30Z,1,2020-02-15T06:59:41Z +6821,2005-07-12T18:22:10Z,623,363,2005-07-14T13:25:10Z,2,2020-02-15T06:59:41Z +6822,2005-07-12T18:23:39Z,1592,300,2005-07-19T21:06:39Z,1,2020-02-15T06:59:41Z +6823,2005-07-12T18:24:31Z,795,557,2005-07-17T23:13:31Z,1,2020-02-15T06:59:41Z +6824,2005-07-12T18:26:46Z,858,579,2005-07-21T15:23:46Z,1,2020-02-15T06:59:41Z +6825,2005-07-12T18:28:12Z,2342,281,2005-07-15T19:24:12Z,1,2020-02-15T06:59:41Z +6826,2005-07-12T18:32:02Z,1708,408,2005-07-16T23:21:02Z,1,2020-02-15T06:59:41Z +6827,2005-07-12T18:33:45Z,1529,283,2005-07-13T19:09:45Z,1,2020-02-15T06:59:41Z +6828,2005-07-12T18:38:51Z,874,502,2005-07-14T20:10:51Z,1,2020-02-15T06:59:41Z +6829,2005-07-12T18:38:59Z,4184,361,2005-07-16T23:25:59Z,1,2020-02-15T06:59:41Z +6830,2005-07-12T18:42:55Z,1943,578,2005-07-17T17:58:55Z,1,2020-02-15T06:59:41Z +6831,2005-07-12T18:44:04Z,924,163,2005-07-16T21:39:04Z,2,2020-02-15T06:59:41Z +6832,2005-07-12T18:51:41Z,444,220,2005-07-20T13:29:41Z,2,2020-02-15T06:59:41Z +6833,2005-07-12T18:53:34Z,912,301,2005-07-19T22:21:34Z,2,2020-02-15T06:59:41Z +6834,2005-07-12T18:53:37Z,897,533,2005-07-19T13:42:37Z,1,2020-02-15T06:59:41Z +6835,2005-07-12T18:58:03Z,1444,367,2005-07-18T00:41:03Z,1,2020-02-15T06:59:41Z +6836,2005-07-12T18:58:05Z,2744,113,2005-07-15T17:45:05Z,1,2020-02-15T06:59:41Z +6837,2005-07-12T18:59:45Z,1203,533,2005-07-21T22:47:45Z,2,2020-02-15T06:59:41Z +6838,2005-07-12T19:01:30Z,3492,354,2005-07-17T23:42:30Z,1,2020-02-15T06:59:41Z +6839,2005-07-12T19:03:19Z,3900,357,2005-07-15T23:48:19Z,1,2020-02-15T06:59:41Z +6840,2005-07-12T19:03:22Z,1381,323,2005-07-21T18:34:22Z,2,2020-02-15T06:59:41Z +6841,2005-07-12T19:04:24Z,2265,108,2005-07-14T23:58:24Z,1,2020-02-15T06:59:41Z +6842,2005-07-12T19:07:55Z,3376,366,2005-07-19T22:47:55Z,1,2020-02-15T06:59:41Z +6843,2005-07-12T19:14:05Z,746,561,2005-07-20T23:15:05Z,1,2020-02-15T06:59:41Z +6844,2005-07-12T19:14:53Z,3211,482,2005-07-18T16:07:53Z,2,2020-02-15T06:59:41Z +6845,2005-07-12T19:20:41Z,3833,414,2005-07-14T15:27:41Z,1,2020-02-15T06:59:41Z +6846,2005-07-12T19:20:45Z,1214,18,2005-07-17T00:06:45Z,1,2020-02-15T06:59:41Z +6847,2005-07-12T19:22:37Z,346,63,2005-07-21T18:53:37Z,2,2020-02-15T06:59:41Z +6848,2005-07-12T19:24:07Z,1782,433,2005-07-14T17:03:07Z,1,2020-02-15T06:59:41Z +6849,2005-07-12T19:29:19Z,4307,479,2005-07-19T22:03:19Z,1,2020-02-15T06:59:41Z +6850,2005-07-12T19:30:42Z,1145,433,2005-07-17T21:26:42Z,2,2020-02-15T06:59:41Z +6851,2005-07-12T19:32:14Z,664,280,2005-07-17T21:03:14Z,1,2020-02-15T06:59:41Z +6852,2005-07-12T19:33:49Z,2182,75,2005-07-13T20:01:49Z,2,2020-02-15T06:59:41Z +6853,2005-07-12T19:38:11Z,4006,299,2005-07-20T00:14:11Z,1,2020-02-15T06:59:41Z +6854,2005-07-12T19:38:57Z,3173,151,2005-07-16T16:28:57Z,1,2020-02-15T06:59:41Z +6855,2005-07-12T19:46:29Z,2657,24,2005-07-15T16:56:29Z,2,2020-02-15T06:59:41Z +6856,2005-07-12T19:50:16Z,4338,275,2005-07-14T22:25:16Z,1,2020-02-15T06:59:41Z +6857,2005-07-12T19:53:30Z,424,196,2005-07-13T15:22:30Z,1,2020-02-15T06:59:41Z +6858,2005-07-12T19:53:51Z,1095,516,2005-07-19T14:12:51Z,1,2020-02-15T06:59:41Z +6859,2005-07-12T19:53:57Z,4108,321,2005-07-17T19:48:57Z,2,2020-02-15T06:59:41Z +6860,2005-07-12T19:54:17Z,2907,91,2005-07-18T13:59:17Z,1,2020-02-15T06:59:41Z +6861,2005-07-12T19:56:52Z,354,83,2005-07-13T16:02:52Z,1,2020-02-15T06:59:41Z +6862,2005-07-12T19:58:09Z,3477,231,2005-07-18T15:48:09Z,2,2020-02-15T06:59:41Z +6863,2005-07-12T19:58:34Z,229,484,2005-07-21T16:57:34Z,1,2020-02-15T06:59:41Z +6864,2005-07-12T19:59:25Z,2252,38,2005-07-19T15:52:25Z,2,2020-02-15T06:59:41Z +6865,2005-07-12T20:02:40Z,1428,175,2005-07-20T00:39:40Z,2,2020-02-15T06:59:41Z +6866,2005-07-12T20:03:44Z,2481,312,2005-07-15T01:55:44Z,1,2020-02-15T06:59:41Z +6867,2005-07-12T20:06:47Z,3354,190,2005-07-19T16:59:47Z,1,2020-02-15T06:59:41Z +6868,2005-07-12T20:10:17Z,719,306,2005-07-15T22:34:17Z,2,2020-02-15T06:59:41Z +6869,2005-07-12T20:12:06Z,3546,278,2005-07-13T18:37:06Z,1,2020-02-15T06:59:41Z +6870,2005-07-12T20:13:45Z,3102,13,2005-07-16T22:09:45Z,2,2020-02-15T06:59:41Z +6871,2005-07-12T20:13:49Z,3612,204,2005-07-14T20:11:49Z,2,2020-02-15T06:59:41Z +6872,2005-07-12T20:15:04Z,3246,86,2005-07-18T18:19:04Z,1,2020-02-15T06:59:41Z +6873,2005-07-12T20:20:50Z,802,161,2005-07-17T01:51:50Z,1,2020-02-15T06:59:41Z +6874,2005-07-12T20:20:53Z,4478,539,2005-07-19T19:41:53Z,1,2020-02-15T06:59:41Z +6875,2005-07-12T20:23:05Z,3420,172,2005-07-19T00:09:05Z,2,2020-02-15T06:59:41Z +6876,2005-07-12T20:32:50Z,34,531,2005-07-16T21:12:50Z,1,2020-02-15T06:59:41Z +6877,2005-07-12T20:32:58Z,3968,231,2005-07-18T18:01:58Z,1,2020-02-15T06:59:41Z +6878,2005-07-12T20:37:13Z,2428,363,2005-07-19T20:13:13Z,2,2020-02-15T06:59:41Z +6879,2005-07-12T20:37:37Z,1901,416,2005-07-20T15:40:37Z,2,2020-02-15T06:59:41Z +6880,2005-07-12T20:41:35Z,1473,229,2005-07-17T02:22:35Z,1,2020-02-15T06:59:41Z +6881,2005-07-12T20:46:35Z,2496,346,2005-07-21T00:26:35Z,2,2020-02-15T06:59:41Z +6882,2005-07-12T20:50:39Z,2469,166,2005-07-14T21:01:39Z,1,2020-02-15T06:59:41Z +6883,2005-07-12T20:50:48Z,468,596,2005-07-19T16:00:48Z,2,2020-02-15T06:59:41Z +6884,2005-07-12T20:52:41Z,3642,17,2005-07-20T23:13:41Z,1,2020-02-15T06:59:41Z +6885,2005-07-12T20:56:04Z,3972,159,2005-07-15T19:21:04Z,2,2020-02-15T06:59:41Z +6886,2005-07-12T20:58:04Z,4533,429,2005-07-18T16:56:04Z,2,2020-02-15T06:59:41Z +6887,2005-07-12T21:00:23Z,4487,542,2005-07-21T17:46:23Z,1,2020-02-15T06:59:41Z +6888,2005-07-12T21:01:11Z,1896,490,2005-07-17T21:49:11Z,2,2020-02-15T06:59:41Z +6889,2005-07-12T21:01:22Z,2919,198,2005-07-20T20:16:22Z,2,2020-02-15T06:59:41Z +6890,2005-07-12T21:03:03Z,2538,473,2005-07-14T00:47:03Z,1,2020-02-15T06:59:41Z +6891,2005-07-12T21:07:35Z,3189,507,2005-07-14T16:59:35Z,2,2020-02-15T06:59:41Z +6892,2005-07-12T21:10:04Z,1567,138,2005-07-13T23:03:04Z,2,2020-02-15T06:59:41Z +6893,2005-07-12T21:20:11Z,2611,377,2005-07-21T18:55:11Z,2,2020-02-15T06:59:41Z +6894,2005-07-12T21:20:50Z,1347,315,2005-07-20T23:42:50Z,2,2020-02-15T06:59:41Z +6895,2005-07-12T21:23:59Z,2935,599,2005-07-19T20:47:59Z,2,2020-02-15T06:59:41Z +6896,2005-07-12T21:25:37Z,1266,111,2005-07-20T23:51:37Z,1,2020-02-15T06:59:41Z +6897,2005-07-12T21:30:41Z,170,13,2005-07-15T03:19:41Z,1,2020-02-15T06:59:41Z +6898,2005-07-12T21:39:04Z,1725,557,2005-07-15T20:30:04Z,1,2020-02-15T06:59:41Z +6899,2005-07-12T21:44:16Z,3565,483,2005-07-21T22:21:16Z,2,2020-02-15T06:59:41Z +6900,2005-07-12T21:45:25Z,129,292,2005-07-19T21:19:25Z,1,2020-02-15T06:59:41Z +6901,2005-07-12T21:46:33Z,4574,158,2005-07-16T21:36:33Z,1,2020-02-15T06:59:41Z +6902,2005-07-12T21:57:16Z,314,485,2005-07-14T20:56:16Z,1,2020-02-15T06:59:41Z +6903,2005-07-12T21:58:15Z,3690,517,2005-07-14T01:38:15Z,2,2020-02-15T06:59:41Z +6904,2005-07-12T22:02:09Z,2312,465,2005-07-17T16:42:09Z,1,2020-02-15T06:59:41Z +6905,2005-07-12T22:02:18Z,763,25,2005-07-18T23:30:18Z,1,2020-02-15T06:59:41Z +6906,2005-07-12T22:03:02Z,1435,335,2005-07-15T00:35:02Z,1,2020-02-15T06:59:41Z +6907,2005-07-12T22:03:49Z,2516,575,2005-07-18T19:18:49Z,1,2020-02-15T06:59:41Z +6908,2005-07-12T22:08:46Z,3161,529,2005-07-21T00:21:46Z,2,2020-02-15T06:59:41Z +6909,2005-07-12T22:09:30Z,769,174,2005-07-17T02:05:30Z,2,2020-02-15T06:59:41Z +6910,2005-07-12T22:11:21Z,1290,546,2005-07-21T02:35:21Z,1,2020-02-15T06:59:41Z +6911,2005-07-12T22:14:34Z,901,361,2005-07-18T20:17:34Z,1,2020-02-15T06:59:41Z +6912,2005-07-12T22:17:16Z,1701,471,2005-07-19T18:18:16Z,1,2020-02-15T06:59:41Z +6913,2005-07-12T22:18:12Z,569,443,2005-07-14T23:03:12Z,2,2020-02-15T06:59:41Z +6914,2005-07-12T22:26:56Z,496,361,2005-07-17T20:03:56Z,1,2020-02-15T06:59:41Z +6915,2005-07-12T22:28:09Z,1243,559,2005-07-14T00:53:09Z,1,2020-02-15T06:59:41Z +6916,2005-07-12T22:29:18Z,3311,88,2005-07-19T16:46:18Z,1,2020-02-15T06:59:41Z +6917,2005-07-12T22:30:15Z,3048,23,2005-07-20T03:20:15Z,1,2020-02-15T06:59:41Z +6918,2005-07-12T22:30:29Z,4085,140,2005-07-19T22:51:29Z,1,2020-02-15T06:59:41Z +6919,2005-07-12T22:32:17Z,1122,540,2005-07-18T20:09:17Z,1,2020-02-15T06:59:41Z +6920,2005-07-12T22:32:58Z,2301,109,2005-07-19T20:29:58Z,2,2020-02-15T06:59:41Z +6921,2005-07-12T22:39:03Z,3322,265,2005-07-21T18:54:03Z,2,2020-02-15T06:59:41Z +6922,2005-07-12T22:39:48Z,1114,371,2005-07-14T18:35:48Z,1,2020-02-15T06:59:41Z +6923,2005-07-12T22:40:48Z,2642,490,2005-07-19T23:07:48Z,2,2020-02-15T06:59:41Z +6924,2005-07-26T22:51:53Z,1257,502,2005-08-03T19:04:53Z,2,2020-02-15T06:59:41Z +6925,2005-07-26T22:52:32Z,2919,42,2005-07-29T21:22:32Z,1,2020-02-15T06:59:41Z +6926,2005-07-26T22:52:45Z,1276,354,2005-07-28T18:32:45Z,1,2020-02-15T06:59:41Z +6927,2005-07-26T22:56:00Z,4511,470,2005-08-05T03:16:00Z,2,2020-02-15T06:59:41Z +6928,2005-07-26T22:56:21Z,3605,487,2005-07-30T04:46:21Z,1,2020-02-15T06:59:41Z +6929,2005-07-26T22:59:19Z,3339,508,2005-08-03T22:40:19Z,1,2020-02-15T06:59:41Z +6930,2005-07-26T23:00:01Z,2989,393,2005-08-04T01:57:01Z,2,2020-02-15T06:59:41Z +6931,2005-07-26T23:02:57Z,2794,333,2005-07-28T04:48:57Z,2,2020-02-15T06:59:41Z +6932,2005-07-26T23:08:04Z,4517,463,2005-08-05T01:35:04Z,1,2020-02-15T06:59:41Z +6933,2005-07-26T23:09:23Z,1334,385,2005-07-31T20:50:23Z,1,2020-02-15T06:59:41Z +6934,2005-07-26T23:11:03Z,455,107,2005-08-04T19:18:03Z,1,2020-02-15T06:59:41Z +6935,2005-07-26T23:13:10Z,2771,435,2005-07-27T18:09:10Z,1,2020-02-15T06:59:41Z +6936,2005-07-26T23:13:34Z,60,538,2005-07-30T19:14:34Z,1,2020-02-15T06:59:41Z +6937,2005-07-26T23:15:50Z,1768,592,2005-07-27T19:14:50Z,1,2020-02-15T06:59:41Z +6938,2005-07-26T23:16:04Z,2058,427,2005-08-05T00:59:04Z,2,2020-02-15T06:59:41Z +6939,2005-07-26T23:17:51Z,278,354,2005-08-03T21:12:51Z,2,2020-02-15T06:59:41Z +6940,2005-07-26T23:18:35Z,3876,149,2005-08-05T01:44:35Z,2,2020-02-15T06:59:41Z +6941,2005-07-26T23:18:49Z,1575,441,2005-07-31T00:23:49Z,2,2020-02-15T06:59:41Z +6942,2005-07-26T23:27:40Z,1203,470,2005-07-31T03:17:40Z,2,2020-02-15T06:59:41Z +6943,2005-07-26T23:28:13Z,2436,21,2005-07-30T02:22:13Z,2,2020-02-15T06:59:41Z +6944,2005-07-26T23:34:02Z,1168,373,2005-08-05T01:27:02Z,1,2020-02-15T06:59:41Z +6945,2005-07-26T23:35:29Z,1627,560,2005-07-28T00:12:29Z,1,2020-02-15T06:59:41Z +6946,2005-07-26T23:40:07Z,1854,181,2005-08-04T01:18:07Z,2,2020-02-15T06:59:41Z +6947,2005-07-26T23:42:03Z,760,200,2005-08-02T05:06:03Z,2,2020-02-15T06:59:41Z +6948,2005-07-26T23:43:49Z,3088,228,2005-07-27T21:24:49Z,2,2020-02-15T06:59:41Z +6949,2005-07-26T23:44:12Z,1594,103,2005-07-30T05:39:12Z,2,2020-02-15T06:59:41Z +6950,2005-07-26T23:45:33Z,197,503,2005-07-31T04:40:33Z,2,2020-02-15T06:59:41Z +6951,2005-07-26T23:47:31Z,3348,98,2005-07-31T22:17:31Z,1,2020-02-15T06:59:41Z +6952,2005-07-26T23:51:27Z,4288,290,2005-07-30T02:45:27Z,2,2020-02-15T06:59:41Z +6953,2005-07-26T23:52:47Z,2910,306,2005-07-30T23:07:47Z,1,2020-02-15T06:59:41Z +6954,2005-07-26T23:55:13Z,1112,584,2005-07-28T19:01:13Z,2,2020-02-15T06:59:41Z +6955,2005-07-26T23:55:48Z,1104,469,2005-08-02T03:25:48Z,2,2020-02-15T06:59:41Z +6956,2005-07-26T23:55:57Z,2499,240,2005-08-03T21:41:57Z,1,2020-02-15T06:59:41Z +6957,2005-07-27T00:00:00Z,2231,518,2005-07-29T19:32:00Z,2,2020-02-15T06:59:41Z +6958,2005-07-27T00:02:41Z,657,333,2005-07-28T00:53:41Z,2,2020-02-15T06:59:41Z +6959,2005-07-27T00:07:51Z,1618,452,2005-07-27T20:45:51Z,2,2020-02-15T06:59:41Z +6960,2005-07-27T00:08:33Z,192,421,2005-08-03T20:58:33Z,2,2020-02-15T06:59:41Z +6961,2005-07-27T00:10:49Z,2205,38,2005-07-30T00:26:49Z,2,2020-02-15T06:59:41Z +6962,2005-07-27T00:10:58Z,4500,245,2005-07-30T02:11:58Z,2,2020-02-15T06:59:41Z +6963,2005-07-27T00:13:02Z,4284,489,2005-08-03T18:13:02Z,1,2020-02-15T06:59:41Z +6964,2005-07-27T00:15:04Z,1537,404,2005-07-31T00:04:04Z,2,2020-02-15T06:59:41Z +6965,2005-07-27T00:15:18Z,74,185,2005-07-28T04:30:18Z,2,2020-02-15T06:59:41Z +6966,2005-07-27T00:15:35Z,1577,45,2005-08-05T03:04:35Z,2,2020-02-15T06:59:41Z +6967,2005-07-27T00:16:31Z,1145,296,2005-08-03T22:19:31Z,1,2020-02-15T06:59:41Z +6968,2005-07-27T00:16:45Z,1662,370,2005-07-30T23:16:45Z,2,2020-02-15T06:59:41Z +6969,2005-07-27T00:23:54Z,2650,579,2005-08-03T04:34:54Z,1,2020-02-15T06:59:41Z +6970,2005-07-27T00:26:14Z,17,418,2005-08-03T20:00:14Z,2,2020-02-15T06:59:41Z +6971,2005-07-27T00:26:17Z,3493,366,2005-08-01T03:59:17Z,2,2020-02-15T06:59:41Z +6972,2005-07-27T00:31:25Z,1716,434,2005-07-28T22:15:25Z,2,2020-02-15T06:59:41Z +6973,2005-07-27T00:32:04Z,4572,564,2005-07-29T01:05:04Z,2,2020-02-15T06:59:41Z +6974,2005-07-27T00:39:16Z,2924,122,2005-08-04T01:59:16Z,2,2020-02-15T06:59:41Z +6975,2005-07-27T00:39:54Z,3328,527,2005-08-02T19:49:54Z,1,2020-02-15T06:59:41Z +6976,2005-07-27T00:40:01Z,3096,41,2005-07-31T22:30:01Z,2,2020-02-15T06:59:41Z +6977,2005-07-27T00:40:50Z,3545,429,2005-08-02T19:08:50Z,2,2020-02-15T06:59:41Z +6978,2005-07-27T00:47:40Z,3645,132,2005-07-31T04:32:40Z,2,2020-02-15T06:59:41Z +6979,2005-07-27T00:49:53Z,1001,141,2005-07-31T03:59:53Z,2,2020-02-15T06:59:41Z +6980,2005-07-27T00:50:30Z,1127,164,2005-08-03T23:35:30Z,1,2020-02-15T06:59:41Z +6981,2005-07-27T00:51:38Z,154,362,2005-07-28T01:06:38Z,2,2020-02-15T06:59:41Z +6982,2005-07-27T00:53:41Z,3843,284,2005-07-31T06:19:41Z,2,2020-02-15T06:59:41Z +6983,2005-07-27T00:55:03Z,1758,443,2005-08-01T21:19:03Z,2,2020-02-15T06:59:41Z +6984,2005-07-27T00:56:30Z,2407,297,2005-08-02T01:14:30Z,2,2020-02-15T06:59:41Z +6985,2005-07-27T00:57:42Z,1834,448,2005-07-31T00:53:42Z,1,2020-02-15T06:59:41Z +6986,2005-07-27T00:59:05Z,2104,262,2005-07-29T00:31:05Z,1,2020-02-15T06:59:41Z +6987,2005-07-27T00:59:50Z,3134,334,2005-07-28T01:47:50Z,1,2020-02-15T06:59:41Z +6988,2005-07-27T01:00:08Z,756,316,2005-07-31T04:35:08Z,2,2020-02-15T06:59:41Z +6989,2005-07-27T01:00:34Z,4036,120,2005-07-30T23:53:34Z,1,2020-02-15T06:59:41Z +6990,2005-07-27T01:02:46Z,4065,146,2005-07-31T00:22:46Z,1,2020-02-15T06:59:41Z +6991,2005-07-27T01:03:06Z,319,307,2005-08-05T04:18:06Z,2,2020-02-15T06:59:41Z +6992,2005-07-27T01:04:45Z,3411,106,2005-07-28T02:34:45Z,2,2020-02-15T06:59:41Z +6993,2005-07-27T01:05:24Z,3114,154,2005-07-30T06:23:24Z,2,2020-02-15T06:59:41Z +6994,2005-07-27T01:08:26Z,4316,400,2005-08-04T22:58:26Z,2,2020-02-15T06:59:41Z +6995,2005-07-27T01:12:13Z,1630,66,2005-07-29T21:26:13Z,1,2020-02-15T06:59:41Z +6996,2005-07-27T01:13:45Z,3237,236,2005-07-28T20:43:45Z,1,2020-02-15T06:59:41Z +6997,2005-07-27T01:14:02Z,2130,342,2005-07-29T01:12:02Z,2,2020-02-15T06:59:41Z +6998,2005-07-27T01:16:29Z,788,300,2005-07-30T05:50:29Z,2,2020-02-15T06:59:41Z +6999,2005-07-27T01:21:19Z,12,224,2005-07-29T20:33:19Z,2,2020-02-15T06:59:41Z +7000,2005-07-27T01:23:24Z,2024,31,2005-08-03T02:10:24Z,2,2020-02-15T06:59:41Z +7001,2005-07-27T01:25:34Z,1460,240,2005-07-31T23:30:34Z,2,2020-02-15T06:59:41Z +7002,2005-07-27T01:26:14Z,4157,349,2005-08-01T20:10:14Z,1,2020-02-15T06:59:41Z +7003,2005-07-27T01:32:06Z,636,161,2005-07-30T21:33:06Z,2,2020-02-15T06:59:41Z +7004,2005-07-27T01:36:05Z,4416,314,2005-08-03T23:46:05Z,1,2020-02-15T06:59:41Z +7005,2005-07-27T01:38:36Z,2438,446,2005-08-02T05:56:36Z,2,2020-02-15T06:59:41Z +7006,2005-07-27T01:42:20Z,3522,264,2005-08-03T03:19:20Z,1,2020-02-15T06:59:41Z +7007,2005-07-27T01:43:39Z,4186,257,2005-07-31T21:04:39Z,1,2020-02-15T06:59:41Z +7008,2005-07-27T01:44:03Z,3659,12,2005-07-28T21:19:03Z,2,2020-02-15T06:59:41Z +7009,2005-07-27T01:45:44Z,1585,414,2005-07-28T05:50:44Z,1,2020-02-15T06:59:41Z +7010,2005-07-27T01:56:01Z,3016,590,2005-07-30T04:40:01Z,1,2020-02-15T06:59:41Z +7011,2005-07-27T01:58:34Z,4082,254,2005-07-28T06:11:34Z,1,2020-02-15T06:59:41Z +7012,2005-07-27T02:01:03Z,779,239,2005-08-05T07:34:03Z,2,2020-02-15T06:59:41Z +7013,2005-07-27T02:03:21Z,3919,463,2005-07-31T22:12:21Z,1,2020-02-15T06:59:41Z +7014,2005-07-27T02:14:40Z,714,524,2005-08-03T00:32:40Z,2,2020-02-15T06:59:41Z +7015,2005-07-27T02:15:01Z,376,34,2005-07-28T07:46:01Z,2,2020-02-15T06:59:41Z +7016,2005-07-27T02:15:16Z,1425,423,2005-08-01T23:08:16Z,2,2020-02-15T06:59:41Z +7017,2005-07-27T02:16:03Z,753,176,2005-07-31T07:49:03Z,1,2020-02-15T06:59:41Z +7018,2005-07-27T02:20:22Z,1078,451,2005-08-02T05:04:22Z,2,2020-02-15T06:59:41Z +7019,2005-07-27T02:20:26Z,3837,491,2005-08-02T22:48:26Z,1,2020-02-15T06:59:41Z +7020,2005-07-27T02:24:27Z,3965,506,2005-07-29T01:27:27Z,2,2020-02-15T06:59:41Z +7021,2005-07-27T02:26:38Z,2690,380,2005-08-05T01:18:38Z,1,2020-02-15T06:59:41Z +7022,2005-07-27T02:31:15Z,1711,243,2005-07-29T02:52:15Z,1,2020-02-15T06:59:41Z +7023,2005-07-27T02:32:44Z,4196,303,2005-08-03T04:06:44Z,1,2020-02-15T06:59:41Z +7024,2005-07-27T02:36:40Z,3113,252,2005-07-28T06:58:40Z,1,2020-02-15T06:59:41Z +7025,2005-07-27T02:40:29Z,3530,176,2005-07-29T23:02:29Z,2,2020-02-15T06:59:41Z +7026,2005-07-27T02:48:58Z,3456,493,2005-07-29T03:41:58Z,2,2020-02-15T06:59:41Z +7027,2005-07-27T02:50:15Z,3280,61,2005-08-04T02:58:15Z,1,2020-02-15T06:59:41Z +7028,2005-07-27T02:54:25Z,834,179,2005-08-02T06:16:25Z,2,2020-02-15T06:59:41Z +7029,2005-07-27T02:57:43Z,2862,389,2005-07-30T08:24:43Z,1,2020-02-15T06:59:41Z +7030,2005-07-27T03:01:40Z,1277,550,2005-07-31T07:01:40Z,1,2020-02-15T06:59:41Z +7031,2005-07-27T03:02:07Z,1435,530,2005-08-02T07:14:07Z,1,2020-02-15T06:59:41Z +7032,2005-07-27T03:03:09Z,3397,269,2005-07-28T22:57:09Z,1,2020-02-15T06:59:41Z +7033,2005-07-27T03:03:25Z,2803,352,2005-07-28T01:57:25Z,2,2020-02-15T06:59:41Z +7034,2005-07-27T03:03:37Z,1712,281,2005-07-28T23:18:37Z,1,2020-02-15T06:59:41Z +7035,2005-07-27T03:06:09Z,2439,90,2005-08-02T21:59:09Z,2,2020-02-15T06:59:41Z +7036,2005-07-27T03:06:12Z,2569,70,2005-07-28T23:26:12Z,2,2020-02-15T06:59:41Z +7037,2005-07-27T03:06:44Z,3155,171,2005-08-02T04:51:44Z,2,2020-02-15T06:59:41Z +7038,2005-07-27T03:07:29Z,1909,518,2005-07-31T04:55:29Z,2,2020-02-15T06:59:41Z +7039,2005-07-27T03:11:48Z,1906,99,2005-08-01T23:55:48Z,1,2020-02-15T06:59:41Z +7040,2005-07-27T03:17:19Z,470,524,2005-07-29T07:03:19Z,2,2020-02-15T06:59:41Z +7041,2005-07-27T03:18:32Z,4212,379,2005-07-30T06:40:32Z,2,2020-02-15T06:59:41Z +7042,2005-07-27T03:20:18Z,399,188,2005-08-01T02:23:18Z,1,2020-02-15T06:59:41Z +7043,2005-07-27T03:24:23Z,3422,493,2005-08-05T02:55:23Z,2,2020-02-15T06:59:41Z +7044,2005-07-27T03:27:29Z,88,147,2005-08-01T07:00:29Z,2,2020-02-15T06:59:41Z +7045,2005-07-27T03:27:35Z,1788,64,2005-08-01T06:31:35Z,2,2020-02-15T06:59:41Z +7046,2005-07-27T03:27:56Z,3740,349,2005-07-30T00:54:56Z,2,2020-02-15T06:59:41Z +7047,2005-07-27T03:31:11Z,2866,236,2005-08-03T23:40:11Z,1,2020-02-15T06:59:41Z +7048,2005-07-27T03:31:48Z,3707,581,2005-08-05T07:30:48Z,2,2020-02-15T06:59:41Z +7049,2005-07-27T03:32:41Z,3043,332,2005-08-04T08:32:41Z,2,2020-02-15T06:59:41Z +7050,2005-07-27T03:33:17Z,1135,55,2005-08-02T03:12:17Z,1,2020-02-15T06:59:41Z +7051,2005-07-27T03:34:37Z,1310,184,2005-07-31T03:48:37Z,2,2020-02-15T06:59:41Z +7052,2005-07-27T03:36:38Z,3798,75,2005-08-03T21:51:38Z,1,2020-02-15T06:59:41Z +7053,2005-07-27T03:38:54Z,149,408,2005-07-31T01:13:54Z,1,2020-02-15T06:59:41Z +7054,2005-07-27T03:43:28Z,2661,179,2005-08-04T09:15:28Z,1,2020-02-15T06:59:41Z +7055,2005-07-27T03:45:42Z,4305,154,2005-07-30T05:11:42Z,1,2020-02-15T06:59:41Z +7056,2005-07-27T03:46:27Z,805,233,2005-08-05T07:46:27Z,1,2020-02-15T06:59:41Z +7057,2005-07-27T03:50:03Z,1196,320,2005-08-04T04:36:03Z,1,2020-02-15T06:59:41Z +7058,2005-07-27T03:50:46Z,716,90,2005-08-04T07:40:46Z,2,2020-02-15T06:59:41Z +7059,2005-07-27T03:51:02Z,129,578,2005-08-02T22:04:02Z,1,2020-02-15T06:59:41Z +7060,2005-07-27T03:51:04Z,3912,479,2005-08-03T07:53:04Z,1,2020-02-15T06:59:41Z +7061,2005-07-27T03:51:10Z,880,145,2005-07-31T05:36:10Z,1,2020-02-15T06:59:41Z +7062,2005-07-27T03:52:01Z,226,469,2005-08-03T08:26:01Z,1,2020-02-15T06:59:41Z +7063,2005-07-27T03:52:27Z,2125,58,2005-08-04T07:53:27Z,1,2020-02-15T06:59:41Z +7064,2005-07-27T03:53:29Z,4204,320,2005-08-03T06:32:29Z,1,2020-02-15T06:59:41Z +7065,2005-07-27T03:53:43Z,3570,536,2005-07-30T23:41:43Z,2,2020-02-15T06:59:41Z +7066,2005-07-27T03:53:52Z,1862,185,2005-08-05T03:32:52Z,1,2020-02-15T06:59:41Z +7067,2005-07-27T03:55:10Z,870,60,2005-08-01T02:56:10Z,1,2020-02-15T06:59:41Z +7068,2005-07-27T03:57:50Z,4465,568,2005-07-30T04:27:50Z,1,2020-02-15T06:59:41Z +7069,2005-07-27T03:59:35Z,2073,343,2005-08-05T03:33:35Z,1,2020-02-15T06:59:41Z +7070,2005-07-27T04:01:08Z,4182,280,2005-07-30T08:10:08Z,2,2020-02-15T06:59:41Z +7071,2005-07-27T04:01:15Z,4361,61,2005-08-03T05:18:15Z,2,2020-02-15T06:59:41Z +7072,2005-07-27T04:02:33Z,3899,260,2005-07-28T09:26:33Z,2,2020-02-15T06:59:41Z +7073,2005-07-27T04:03:26Z,3859,92,2005-08-03T05:50:26Z,1,2020-02-15T06:59:41Z +7074,2005-07-27T04:06:24Z,1390,165,2005-07-28T02:04:24Z,1,2020-02-15T06:59:41Z +7075,2005-07-27T04:11:40Z,4414,530,2005-08-03T08:16:40Z,2,2020-02-15T06:59:41Z +7076,2005-07-27T04:12:14Z,2821,333,2005-08-05T00:44:14Z,1,2020-02-15T06:59:41Z +7077,2005-07-27T04:13:02Z,3186,155,2005-07-31T23:15:02Z,1,2020-02-15T06:59:41Z +7078,2005-07-27T04:16:37Z,4518,545,2005-08-05T02:34:37Z,1,2020-02-15T06:59:41Z +7079,2005-07-27T04:21:58Z,4356,356,2005-08-04T08:08:58Z,1,2020-02-15T06:59:41Z +7080,2005-07-27T04:25:25Z,710,466,2005-08-04T04:22:25Z,2,2020-02-15T06:59:41Z +7081,2005-07-27T04:25:59Z,462,420,2005-08-01T00:14:59Z,1,2020-02-15T06:59:41Z +7082,2005-07-27T04:27:32Z,2032,64,2005-07-30T06:06:32Z,2,2020-02-15T06:59:41Z +7083,2005-07-27T04:28:39Z,2663,575,2005-07-30T04:35:39Z,2,2020-02-15T06:59:41Z +7084,2005-07-27T04:34:07Z,785,32,2005-08-05T00:21:07Z,2,2020-02-15T06:59:41Z +7085,2005-07-27T04:35:44Z,2603,223,2005-08-05T07:10:44Z,2,2020-02-15T06:59:41Z +7086,2005-07-27T04:39:46Z,2938,595,2005-08-05T00:32:46Z,2,2020-02-15T06:59:41Z +7087,2005-07-27T04:42:08Z,1159,22,2005-08-02T00:53:08Z,1,2020-02-15T06:59:41Z +7088,2005-07-27T04:42:28Z,373,88,2005-08-04T07:09:28Z,2,2020-02-15T06:59:41Z +7089,2005-07-27T04:43:42Z,1380,446,2005-07-30T10:04:42Z,1,2020-02-15T06:59:41Z +7090,2005-07-27T04:43:53Z,3495,218,2005-07-29T07:33:53Z,2,2020-02-15T06:59:41Z +7091,2005-07-27T04:44:10Z,2593,322,2005-07-31T07:14:10Z,1,2020-02-15T06:59:41Z +7092,2005-07-27T04:46:00Z,1433,345,2005-08-03T07:22:00Z,2,2020-02-15T06:59:41Z +7093,2005-07-27T04:47:00Z,3065,574,2005-07-31T10:15:00Z,1,2020-02-15T06:59:41Z +7094,2005-07-27T04:47:33Z,867,373,2005-07-31T04:07:33Z,2,2020-02-15T06:59:41Z +7095,2005-07-27T04:51:15Z,1008,551,2005-08-05T10:25:15Z,2,2020-02-15T06:59:41Z +7096,2005-07-27T04:54:42Z,2575,3,2005-08-03T01:42:42Z,2,2020-02-15T06:59:41Z +7097,2005-07-27T04:56:09Z,258,487,2005-07-31T05:47:09Z,1,2020-02-15T06:59:41Z +7098,2005-07-27T05:01:08Z,2555,359,2005-08-02T07:49:08Z,2,2020-02-15T06:59:41Z +7099,2005-07-27T05:03:44Z,3136,6,2005-07-29T00:12:44Z,2,2020-02-15T06:59:41Z +7100,2005-07-27T05:05:01Z,4224,413,2005-07-28T23:12:01Z,2,2020-02-15T06:59:41Z +7101,2005-07-27T05:06:34Z,2006,221,2005-07-29T06:12:34Z,1,2020-02-15T06:59:41Z +7102,2005-07-27T05:07:21Z,1081,411,2005-08-01T09:41:21Z,2,2020-02-15T06:59:41Z +7103,2005-07-27T05:08:59Z,1697,403,2005-07-29T03:42:59Z,2,2020-02-15T06:59:41Z +7104,2005-07-27T05:15:25Z,118,217,2005-08-01T05:36:25Z,2,2020-02-15T06:59:41Z +7105,2005-07-27T05:15:37Z,864,15,2005-07-28T05:49:37Z,2,2020-02-15T06:59:41Z +7106,2005-07-27T05:21:24Z,1415,201,2005-08-02T01:58:24Z,2,2020-02-15T06:59:41Z +7107,2005-07-27T05:22:04Z,1883,104,2005-08-02T06:38:04Z,1,2020-02-15T06:59:41Z +7108,2005-07-27T05:28:32Z,2720,355,2005-07-31T07:52:32Z,1,2020-02-15T06:59:41Z +7109,2005-07-27T05:28:57Z,1658,406,2005-08-04T10:41:57Z,2,2020-02-15T06:59:41Z +7110,2005-07-27T05:30:48Z,3289,157,2005-07-28T01:43:48Z,1,2020-02-15T06:59:41Z +7111,2005-07-27T05:38:16Z,1252,473,2005-07-29T04:28:16Z,2,2020-02-15T06:59:41Z +7112,2005-07-27T05:38:42Z,4056,101,2005-08-03T05:35:42Z,1,2020-02-15T06:59:41Z +7113,2005-07-27T05:41:20Z,1963,534,2005-07-30T04:50:20Z,1,2020-02-15T06:59:41Z +7114,2005-07-27T05:42:13Z,3892,121,2005-07-29T01:59:13Z,1,2020-02-15T06:59:41Z +7115,2005-07-27T05:42:58Z,3620,359,2005-08-02T05:35:58Z,2,2020-02-15T06:59:41Z +7116,2005-07-27T05:46:43Z,1755,209,2005-08-05T05:54:43Z,1,2020-02-15T06:59:41Z +7117,2005-07-27T05:48:36Z,2772,326,2005-08-01T00:33:36Z,1,2020-02-15T06:59:41Z +7118,2005-07-27T05:53:50Z,582,591,2005-08-05T04:19:50Z,2,2020-02-15T06:59:41Z +7119,2005-07-27T05:55:32Z,1732,102,2005-07-29T03:19:32Z,1,2020-02-15T06:59:41Z +7120,2005-07-27T05:56:39Z,416,98,2005-08-04T10:57:39Z,1,2020-02-15T06:59:41Z +7121,2005-07-27T05:58:32Z,1264,252,2005-07-29T06:14:32Z,1,2020-02-15T06:59:41Z +7122,2005-07-27T06:03:18Z,1699,172,2005-08-04T10:43:18Z,2,2020-02-15T06:59:41Z +7123,2005-07-27T06:08:48Z,134,232,2005-08-04T05:26:48Z,1,2020-02-15T06:59:41Z +7124,2005-07-27T06:09:30Z,3449,34,2005-08-02T09:31:30Z,1,2020-02-15T06:59:41Z +7125,2005-07-27T06:11:00Z,801,460,2005-08-04T09:41:00Z,2,2020-02-15T06:59:41Z +7126,2005-07-27T06:13:13Z,3240,582,2005-07-28T08:22:13Z,2,2020-02-15T06:59:41Z +7127,2005-07-27T06:13:48Z,273,486,2005-08-01T02:50:48Z,2,2020-02-15T06:59:41Z +7128,2005-07-27T06:14:36Z,143,529,2005-08-02T05:18:36Z,1,2020-02-15T06:59:41Z +7129,2005-07-27T06:18:01Z,1930,221,2005-07-28T02:38:01Z,1,2020-02-15T06:59:41Z +7130,2005-07-27T06:23:36Z,420,81,2005-07-28T10:23:36Z,1,2020-02-15T06:59:41Z +7131,2005-07-27T06:25:06Z,2832,585,2005-07-31T09:07:06Z,1,2020-02-15T06:59:41Z +7132,2005-07-27T06:28:34Z,3201,227,2005-08-05T06:02:34Z,2,2020-02-15T06:59:41Z +7133,2005-07-27T06:29:23Z,2995,496,2005-07-29T03:20:23Z,2,2020-02-15T06:59:41Z +7134,2005-07-27T06:33:06Z,1058,574,2005-07-28T06:15:06Z,1,2020-02-15T06:59:41Z +7135,2005-07-27T06:34:32Z,2959,172,2005-07-28T03:01:32Z,1,2020-02-15T06:59:41Z +7136,2005-07-27T06:38:25Z,1929,6,2005-08-03T05:13:25Z,1,2020-02-15T06:59:41Z +7137,2005-07-27T06:40:41Z,3957,483,2005-07-29T09:05:41Z,2,2020-02-15T06:59:41Z +7138,2005-07-27T06:47:13Z,1418,31,2005-08-03T01:12:13Z,2,2020-02-15T06:59:41Z +7139,2005-07-27T06:52:21Z,846,575,2005-07-30T01:45:21Z,1,2020-02-15T06:59:41Z +7140,2005-07-27T06:54:12Z,2028,35,2005-08-03T10:36:12Z,2,2020-02-15T06:59:41Z +7141,2005-07-27T06:55:27Z,3579,423,2005-08-01T11:10:27Z,1,2020-02-15T06:59:41Z +7142,2005-07-27T06:55:39Z,1743,396,2005-07-28T01:41:39Z,2,2020-02-15T06:59:41Z +7143,2005-07-27T06:56:31Z,2877,91,2005-07-31T04:38:31Z,2,2020-02-15T06:59:41Z +7144,2005-07-27T07:00:37Z,4506,485,2005-08-01T06:57:37Z,1,2020-02-15T06:59:41Z +7145,2005-07-27T07:01:00Z,3653,109,2005-07-31T02:31:00Z,1,2020-02-15T06:59:41Z +7146,2005-07-27T07:02:30Z,2245,323,2005-08-05T10:29:30Z,1,2020-02-15T06:59:41Z +7147,2005-07-27T07:02:34Z,990,192,2005-08-01T02:16:34Z,1,2020-02-15T06:59:41Z +7148,2005-07-27T07:04:09Z,1783,354,2005-08-03T10:20:09Z,2,2020-02-15T06:59:41Z +7149,2005-07-27T07:10:40Z,3902,242,2005-08-03T07:37:40Z,2,2020-02-15T06:59:41Z +7150,2005-07-27T07:11:14Z,457,191,2005-08-05T06:55:14Z,2,2020-02-15T06:59:41Z +7151,2005-07-27T07:14:31Z,1259,289,2005-08-01T01:35:31Z,2,2020-02-15T06:59:41Z +7152,2005-07-27T07:15:01Z,2338,370,2005-08-05T04:50:01Z,1,2020-02-15T06:59:41Z +7153,2005-07-27T07:15:38Z,2657,41,2005-07-28T09:56:38Z,1,2020-02-15T06:59:41Z +7154,2005-07-27T07:16:17Z,2019,518,2005-07-28T04:04:17Z,2,2020-02-15T06:59:41Z +7155,2005-07-27T07:18:46Z,171,23,2005-08-04T10:28:46Z,1,2020-02-15T06:59:41Z +7156,2005-07-27T07:19:34Z,34,154,2005-07-31T04:31:34Z,1,2020-02-15T06:59:41Z +7157,2005-07-27T07:20:28Z,1353,423,2005-08-02T07:19:28Z,1,2020-02-15T06:59:41Z +7158,2005-07-27T07:23:58Z,2432,38,2005-08-03T06:00:58Z,2,2020-02-15T06:59:41Z +7159,2005-07-27T07:24:00Z,1220,158,2005-08-05T11:13:00Z,1,2020-02-15T06:59:41Z +7160,2005-07-27T07:26:06Z,3905,71,2005-07-31T04:54:06Z,2,2020-02-15T06:59:41Z +7161,2005-07-27T07:26:32Z,378,572,2005-08-03T01:26:32Z,2,2020-02-15T06:59:41Z +7162,2005-07-27T07:32:45Z,2251,289,2005-07-30T03:48:45Z,1,2020-02-15T06:59:41Z +7163,2005-07-27T07:36:11Z,3666,38,2005-08-04T06:03:11Z,2,2020-02-15T06:59:41Z +7164,2005-07-27T07:36:34Z,527,284,2005-08-04T05:05:34Z,2,2020-02-15T06:59:41Z +7165,2005-07-27T07:36:46Z,497,243,2005-07-30T09:22:46Z,2,2020-02-15T06:59:41Z +7166,2005-07-27T07:36:56Z,1375,562,2005-08-02T03:46:56Z,1,2020-02-15T06:59:41Z +7167,2005-07-27T07:37:26Z,238,380,2005-08-03T06:39:26Z,1,2020-02-15T06:59:41Z +7168,2005-07-27T07:51:11Z,6,252,2005-08-01T04:08:11Z,2,2020-02-15T06:59:41Z +7169,2005-07-27T07:51:39Z,735,559,2005-08-01T06:42:39Z,1,2020-02-15T06:59:41Z +7170,2005-07-27T07:58:26Z,370,140,2005-07-28T02:30:26Z,1,2020-02-15T06:59:41Z +7171,2005-07-27T07:58:35Z,4381,406,2005-08-03T07:45:35Z,1,2020-02-15T06:59:41Z +7172,2005-07-27T07:59:16Z,2405,362,2005-08-01T04:46:16Z,1,2020-02-15T06:59:41Z +7173,2005-07-27T07:59:24Z,177,592,2005-07-28T02:23:24Z,2,2020-02-15T06:59:41Z +7174,2005-07-27T08:00:36Z,46,570,2005-08-01T03:11:36Z,1,2020-02-15T06:59:41Z +7175,2005-07-27T08:03:22Z,568,190,2005-08-01T02:47:22Z,2,2020-02-15T06:59:41Z +7176,2005-07-27T08:04:28Z,227,257,2005-07-29T14:00:28Z,2,2020-02-15T06:59:41Z +7177,2005-07-27T08:07:39Z,3818,133,2005-07-30T03:17:39Z,2,2020-02-15T06:59:41Z +7178,2005-07-27T08:09:25Z,1899,31,2005-07-29T13:00:25Z,2,2020-02-15T06:59:41Z +7179,2005-07-27T08:10:29Z,2365,537,2005-07-28T12:24:29Z,2,2020-02-15T06:59:41Z +7180,2005-07-27T08:14:34Z,460,215,2005-07-31T05:24:34Z,1,2020-02-15T06:59:41Z +7181,2005-07-27T08:14:34Z,2788,130,2005-07-28T03:09:34Z,1,2020-02-15T06:59:41Z +7182,2005-07-27T08:15:38Z,3209,97,2005-08-03T12:48:38Z,2,2020-02-15T06:59:41Z +7183,2005-07-27T08:18:38Z,3384,302,2005-08-01T03:24:38Z,1,2020-02-15T06:59:41Z +7184,2005-07-27T08:22:26Z,2324,457,2005-08-02T09:34:26Z,2,2020-02-15T06:59:41Z +7185,2005-07-27T08:23:54Z,2340,121,2005-07-30T09:50:54Z,1,2020-02-15T06:59:41Z +7186,2005-07-27T08:26:12Z,4005,584,2005-07-28T12:21:12Z,1,2020-02-15T06:59:41Z +7187,2005-07-27T08:27:58Z,2733,169,2005-08-05T09:05:58Z,1,2020-02-15T06:59:41Z +7188,2005-07-27T08:32:08Z,2199,259,2005-07-28T08:02:08Z,1,2020-02-15T06:59:41Z +7189,2005-07-27T08:35:02Z,4419,151,2005-07-30T14:00:02Z,2,2020-02-15T06:59:41Z +7190,2005-07-27T08:36:01Z,1330,372,2005-07-30T08:32:01Z,2,2020-02-15T06:59:41Z +7191,2005-07-27T08:36:15Z,4292,495,2005-08-03T08:54:15Z,1,2020-02-15T06:59:41Z +7192,2005-07-27T08:36:55Z,4329,532,2005-07-30T11:58:55Z,2,2020-02-15T06:59:41Z +7193,2005-07-27T08:37:00Z,1801,237,2005-07-30T12:51:00Z,2,2020-02-15T06:59:41Z +7194,2005-07-27T08:39:58Z,254,172,2005-08-01T03:12:58Z,1,2020-02-15T06:59:41Z +7195,2005-07-27T08:47:01Z,721,157,2005-07-30T08:40:01Z,2,2020-02-15T06:59:41Z +7196,2005-07-27T08:49:08Z,2998,118,2005-07-29T03:54:08Z,1,2020-02-15T06:59:41Z +7197,2005-07-27T08:49:32Z,2109,577,2005-07-31T13:50:32Z,1,2020-02-15T06:59:41Z +7198,2005-07-27T08:50:07Z,4283,520,2005-08-04T09:46:07Z,2,2020-02-15T06:59:41Z +7199,2005-07-27T08:53:23Z,3685,292,2005-08-03T10:01:23Z,1,2020-02-15T06:59:41Z +7200,2005-07-27T08:57:38Z,4406,78,2005-08-02T12:29:38Z,2,2020-02-15T06:59:41Z +7201,2005-07-27T08:57:40Z,482,598,2005-08-04T09:55:40Z,2,2020-02-15T06:59:41Z +7202,2005-07-27T09:00:20Z,109,560,2005-08-04T03:09:20Z,1,2020-02-15T06:59:41Z +7203,2005-07-27T09:01:23Z,1685,492,2005-08-04T14:14:23Z,1,2020-02-15T06:59:41Z +7204,2005-07-27T09:02:31Z,2512,531,2005-08-03T08:56:31Z,2,2020-02-15T06:59:41Z +7205,2005-07-27T09:06:13Z,2828,36,2005-08-05T07:11:13Z,1,2020-02-15T06:59:41Z +7206,2005-07-27T09:07:05Z,3752,373,2005-07-31T03:13:05Z,2,2020-02-15T06:59:41Z +7207,2005-07-27T09:13:26Z,336,51,2005-08-01T10:24:26Z,1,2020-02-15T06:59:41Z +7208,2005-07-27T09:16:28Z,1523,138,2005-07-28T09:40:28Z,1,2020-02-15T06:59:41Z +7209,2005-07-27T09:16:53Z,3766,49,2005-07-30T08:09:53Z,2,2020-02-15T06:59:41Z +7210,2005-07-27T09:19:05Z,1984,176,2005-07-28T04:35:05Z,1,2020-02-15T06:59:41Z +7211,2005-07-27T09:20:00Z,4445,285,2005-08-02T14:53:00Z,1,2020-02-15T06:59:41Z +7212,2005-07-27T09:21:22Z,2905,591,2005-08-01T04:47:22Z,2,2020-02-15T06:59:41Z +7213,2005-07-27T09:22:29Z,2836,502,2005-08-03T13:53:29Z,2,2020-02-15T06:59:41Z +7214,2005-07-27T09:23:33Z,802,309,2005-08-03T13:14:33Z,2,2020-02-15T06:59:41Z +7215,2005-07-27T09:24:00Z,2713,473,2005-08-05T07:37:00Z,2,2020-02-15T06:59:41Z +7216,2005-07-27T09:27:45Z,1812,292,2005-08-03T13:08:45Z,1,2020-02-15T06:59:41Z +7217,2005-07-27T09:31:44Z,2646,20,2005-07-29T10:48:44Z,1,2020-02-15T06:59:41Z +7218,2005-07-27T09:34:24Z,2458,530,2005-08-01T07:00:24Z,1,2020-02-15T06:59:41Z +7219,2005-07-27T09:35:36Z,4046,512,2005-07-29T04:44:36Z,1,2020-02-15T06:59:41Z +7220,2005-07-27T09:35:54Z,3867,79,2005-08-04T06:00:54Z,2,2020-02-15T06:59:41Z +7221,2005-07-27T09:37:35Z,3820,579,2005-07-28T11:25:35Z,1,2020-02-15T06:59:41Z +7222,2005-07-27T09:38:43Z,2330,206,2005-07-28T06:25:43Z,1,2020-02-15T06:59:41Z +7223,2005-07-27T09:42:27Z,2623,325,2005-08-04T04:02:27Z,1,2020-02-15T06:59:41Z +7224,2005-07-27T09:44:26Z,2701,106,2005-08-05T12:46:26Z,2,2020-02-15T06:59:41Z +7225,2005-07-27T09:47:12Z,632,306,2005-08-03T13:19:12Z,2,2020-02-15T06:59:41Z +7226,2005-07-27T09:47:53Z,3507,370,2005-08-01T08:24:53Z,1,2020-02-15T06:59:41Z +7227,2005-07-27T09:53:43Z,791,164,2005-08-05T09:36:43Z,2,2020-02-15T06:59:41Z +7228,2005-07-27T09:55:33Z,1693,481,2005-07-29T04:33:33Z,2,2020-02-15T06:59:41Z +7229,2005-07-27T10:00:54Z,978,182,2005-07-28T13:58:54Z,2,2020-02-15T06:59:41Z +7230,2005-07-27T10:01:41Z,1152,245,2005-08-02T11:00:41Z,1,2020-02-15T06:59:41Z +7231,2005-07-27T10:01:51Z,1638,86,2005-08-05T13:38:51Z,2,2020-02-15T06:59:41Z +7232,2005-07-27T10:04:19Z,1147,306,2005-07-28T09:43:19Z,2,2020-02-15T06:59:41Z +7233,2005-07-27T10:08:36Z,213,245,2005-07-31T16:00:36Z,1,2020-02-15T06:59:41Z +7234,2005-07-27T10:08:45Z,3873,372,2005-07-31T13:58:45Z,1,2020-02-15T06:59:41Z +7235,2005-07-27T10:09:30Z,1261,354,2005-08-05T11:44:30Z,2,2020-02-15T06:59:41Z +7236,2005-07-27T10:09:39Z,3004,218,2005-08-03T16:05:39Z,1,2020-02-15T06:59:41Z +7237,2005-07-27T10:12:36Z,1904,29,2005-07-31T08:40:36Z,2,2020-02-15T06:59:41Z +7238,2005-07-27T10:13:41Z,1197,116,2005-07-29T11:07:41Z,1,2020-02-15T06:59:41Z +7239,2005-07-27T10:20:27Z,1786,278,2005-07-29T10:15:27Z,1,2020-02-15T06:59:41Z +7240,2005-07-27T10:21:15Z,4565,324,2005-08-03T05:04:15Z,1,2020-02-15T06:59:41Z +7241,2005-07-27T10:25:49Z,2433,354,2005-07-28T05:30:49Z,2,2020-02-15T06:59:41Z +7242,2005-07-27T10:25:51Z,1966,565,2005-08-04T16:02:51Z,2,2020-02-15T06:59:41Z +7243,2005-07-27T10:26:11Z,1287,238,2005-07-29T11:43:11Z,2,2020-02-15T06:59:41Z +7244,2005-07-27T10:27:33Z,1329,339,2005-07-30T13:09:33Z,1,2020-02-15T06:59:41Z +7245,2005-07-27T10:29:06Z,260,95,2005-08-05T12:09:06Z,2,2020-02-15T06:59:41Z +7246,2005-07-27T10:30:41Z,2003,333,2005-07-30T05:44:41Z,1,2020-02-15T06:59:41Z +7247,2005-07-27T10:32:58Z,1445,102,2005-07-29T05:00:58Z,2,2020-02-15T06:59:41Z +7248,2005-07-27T10:37:45Z,4256,456,2005-08-01T13:13:45Z,1,2020-02-15T06:59:41Z +7249,2005-07-27T10:39:53Z,2441,425,2005-07-28T14:48:53Z,2,2020-02-15T06:59:41Z +7250,2005-07-27T10:44:09Z,3410,589,2005-07-28T11:47:09Z,1,2020-02-15T06:59:41Z +7251,2005-07-27T10:44:55Z,1737,360,2005-08-01T16:12:55Z,1,2020-02-15T06:59:41Z +7252,2005-07-27T10:45:28Z,3107,549,2005-08-04T06:24:28Z,2,2020-02-15T06:59:41Z +7253,2005-07-27T10:46:37Z,1950,236,2005-07-28T11:18:37Z,1,2020-02-15T06:59:41Z +7254,2005-07-27T10:48:50Z,2697,286,2005-07-28T10:34:50Z,1,2020-02-15T06:59:41Z +7255,2005-07-27T10:49:54Z,2101,502,2005-07-31T10:40:54Z,2,2020-02-15T06:59:41Z +7256,2005-07-27T10:58:32Z,4275,363,2005-07-29T08:58:32Z,2,2020-02-15T06:59:41Z +7257,2005-07-27T11:04:17Z,3302,480,2005-08-04T12:32:17Z,2,2020-02-15T06:59:41Z +7258,2005-07-27T11:05:54Z,2079,494,2005-08-02T11:36:54Z,1,2020-02-15T06:59:41Z +7259,2005-07-27T11:06:00Z,2345,406,2005-08-02T06:44:00Z,2,2020-02-15T06:59:41Z +7260,2005-07-27T11:09:28Z,3827,434,2005-08-03T09:41:28Z,1,2020-02-15T06:59:41Z +7261,2005-07-27T11:15:01Z,942,172,2005-07-28T09:42:01Z,2,2020-02-15T06:59:41Z +7262,2005-07-27T11:15:36Z,4097,522,2005-07-30T10:49:36Z,2,2020-02-15T06:59:41Z +7263,2005-07-27T11:17:22Z,725,324,2005-08-04T10:59:22Z,1,2020-02-15T06:59:41Z +7264,2005-07-27T11:18:58Z,2391,299,2005-08-03T07:43:58Z,2,2020-02-15T06:59:41Z +7265,2005-07-27T11:19:01Z,3465,290,2005-08-01T09:29:01Z,1,2020-02-15T06:59:41Z +7266,2005-07-27T11:22:17Z,3379,24,2005-08-04T05:45:17Z,1,2020-02-15T06:59:41Z +7267,2005-07-27T11:22:55Z,3661,122,2005-08-01T08:13:55Z,1,2020-02-15T06:59:41Z +7268,2005-07-27T11:23:09Z,2740,260,2005-08-01T12:42:09Z,2,2020-02-15T06:59:41Z +7269,2005-07-27T11:23:47Z,2089,209,2005-07-31T13:10:47Z,1,2020-02-15T06:59:41Z +7270,2005-07-27T11:29:02Z,1888,526,2005-08-05T08:04:02Z,1,2020-02-15T06:59:41Z +7271,2005-07-27T11:29:11Z,858,469,2005-08-05T15:33:11Z,1,2020-02-15T06:59:41Z +7272,2005-07-27T11:30:20Z,250,364,2005-07-29T17:16:20Z,2,2020-02-15T06:59:41Z +7273,2005-07-27T11:31:22Z,2465,1,2005-07-31T06:50:22Z,1,2020-02-15T06:59:41Z +7274,2005-07-27T11:35:34Z,4087,180,2005-08-01T07:10:34Z,1,2020-02-15T06:59:41Z +7275,2005-07-27T11:39:08Z,775,323,2005-07-30T13:37:08Z,2,2020-02-15T06:59:41Z +7276,2005-07-27T11:41:57Z,1665,314,2005-08-01T10:39:57Z,1,2020-02-15T06:59:41Z +7277,2005-07-27T11:48:37Z,1544,67,2005-08-03T07:20:37Z,1,2020-02-15T06:59:41Z +7278,2005-07-27T11:50:34Z,531,592,2005-08-01T10:22:34Z,1,2020-02-15T06:59:41Z +7279,2005-07-27T11:50:47Z,1424,12,2005-07-30T11:19:47Z,2,2020-02-15T06:59:41Z +7280,2005-07-27T11:50:52Z,236,342,2005-07-30T15:53:52Z,2,2020-02-15T06:59:41Z +7281,2005-07-27T11:59:20Z,1350,491,2005-08-04T12:48:20Z,1,2020-02-15T06:59:41Z +7282,2005-07-27T12:00:19Z,4418,276,2005-08-04T14:48:19Z,2,2020-02-15T06:59:41Z +7283,2005-07-27T12:02:41Z,3101,508,2005-08-05T07:25:41Z,1,2020-02-15T06:59:41Z +7284,2005-07-27T12:12:04Z,2336,52,2005-07-31T11:17:04Z,2,2020-02-15T06:59:41Z +7285,2005-07-27T12:14:06Z,2855,498,2005-08-03T14:57:06Z,2,2020-02-15T06:59:41Z +7286,2005-07-27T12:23:49Z,3452,498,2005-08-04T07:57:49Z,1,2020-02-15T06:59:41Z +7287,2005-07-27T12:24:12Z,926,198,2005-07-31T15:34:12Z,1,2020-02-15T06:59:41Z +7288,2005-07-27T12:24:59Z,45,226,2005-08-02T15:52:59Z,2,2020-02-15T06:59:41Z +7289,2005-07-27T12:26:51Z,2157,187,2005-08-02T18:20:51Z,2,2020-02-15T06:59:41Z +7290,2005-07-27T12:28:45Z,3652,423,2005-08-01T16:18:45Z,1,2020-02-15T06:59:41Z +7291,2005-07-27T12:30:47Z,310,263,2005-08-01T12:45:47Z,1,2020-02-15T06:59:41Z +7292,2005-07-27T12:34:14Z,795,468,2005-08-01T18:16:14Z,2,2020-02-15T06:59:41Z +7293,2005-07-27T12:37:28Z,3333,5,2005-07-30T15:12:28Z,2,2020-02-15T06:59:41Z +7294,2005-07-27T12:38:14Z,487,313,2005-07-30T13:01:14Z,1,2020-02-15T06:59:41Z +7295,2005-07-27T12:38:47Z,3396,462,2005-08-05T10:12:47Z,1,2020-02-15T06:59:41Z +7296,2005-07-27T12:39:48Z,1681,400,2005-08-04T18:24:48Z,2,2020-02-15T06:59:41Z +7297,2005-07-27T12:39:48Z,1855,135,2005-07-29T17:50:48Z,2,2020-02-15T06:59:41Z +7298,2005-07-27T12:45:14Z,1653,121,2005-07-30T07:02:14Z,1,2020-02-15T06:59:41Z +7299,2005-07-27T12:49:56Z,3002,286,2005-08-03T12:25:56Z,1,2020-02-15T06:59:41Z +7300,2005-07-27T12:50:17Z,4561,272,2005-08-04T18:43:17Z,1,2020-02-15T06:59:41Z +7301,2005-07-27T12:50:23Z,3367,93,2005-08-01T09:43:23Z,2,2020-02-15T06:59:41Z +7302,2005-07-27T12:52:13Z,4539,477,2005-07-29T15:13:13Z,2,2020-02-15T06:59:41Z +7303,2005-07-27T12:54:39Z,1398,163,2005-07-31T09:26:39Z,2,2020-02-15T06:59:41Z +7304,2005-07-27T12:56:56Z,1162,74,2005-08-05T09:19:56Z,2,2020-02-15T06:59:41Z +7305,2005-07-27T12:57:06Z,2464,229,2005-07-30T13:13:06Z,2,2020-02-15T06:59:41Z +7306,2005-07-27T12:57:26Z,2269,207,2005-08-03T09:35:26Z,2,2020-02-15T06:59:41Z +7307,2005-07-27T12:59:10Z,3882,595,2005-07-29T11:35:10Z,1,2020-02-15T06:59:41Z +7308,2005-07-27T13:00:25Z,1452,229,2005-08-03T16:04:25Z,1,2020-02-15T06:59:41Z +7309,2005-07-27T13:00:29Z,633,317,2005-07-29T12:15:29Z,2,2020-02-15T06:59:41Z +7310,2005-07-27T13:00:55Z,3711,103,2005-07-28T17:54:55Z,1,2020-02-15T06:59:41Z +7311,2005-07-27T13:02:54Z,2807,582,2005-08-04T09:52:54Z,1,2020-02-15T06:59:41Z +7312,2005-07-27T13:03:14Z,228,543,2005-07-31T07:56:14Z,2,2020-02-15T06:59:41Z +7313,2005-07-27T13:11:57Z,1884,396,2005-08-02T07:31:57Z,1,2020-02-15T06:59:41Z +7314,2005-07-27T13:13:32Z,1376,11,2005-08-03T09:24:32Z,2,2020-02-15T06:59:41Z +7315,2005-07-27T13:14:56Z,974,208,2005-08-03T08:44:56Z,2,2020-02-15T06:59:41Z +7316,2005-07-27T13:19:03Z,3344,114,2005-07-28T07:43:03Z,2,2020-02-15T06:59:41Z +7317,2005-07-27T13:19:41Z,1518,443,2005-07-29T16:16:41Z,2,2020-02-15T06:59:41Z +7318,2005-07-27T13:25:31Z,1954,301,2005-07-31T11:44:31Z,2,2020-02-15T06:59:41Z +7319,2005-07-27T13:31:25Z,2370,576,2005-08-04T07:31:25Z,1,2020-02-15T06:59:41Z +7320,2005-07-27T13:33:35Z,4348,241,2005-07-31T13:22:35Z,2,2020-02-15T06:59:41Z +7321,2005-07-27T13:33:38Z,3525,38,2005-08-03T07:35:38Z,2,2020-02-15T06:59:41Z +7322,2005-07-27T13:37:26Z,1810,508,2005-08-03T18:00:26Z,2,2020-02-15T06:59:41Z +7323,2005-07-27T13:39:40Z,3830,125,2005-07-29T08:45:40Z,2,2020-02-15T06:59:41Z +7324,2005-07-27T13:42:39Z,2572,462,2005-08-04T10:33:39Z,2,2020-02-15T06:59:41Z +7325,2005-07-27T13:46:55Z,1727,289,2005-07-28T14:21:55Z,1,2020-02-15T06:59:41Z +7326,2005-07-27T13:50:40Z,2844,432,2005-07-30T08:16:40Z,1,2020-02-15T06:59:41Z +7327,2005-07-27T13:53:26Z,4074,508,2005-08-04T17:58:26Z,2,2020-02-15T06:59:41Z +7328,2005-07-27T13:55:18Z,663,26,2005-08-01T19:52:18Z,1,2020-02-15T06:59:41Z +7329,2005-07-27T13:55:34Z,906,226,2005-08-04T15:15:34Z,1,2020-02-15T06:59:41Z +7330,2005-07-27T13:56:46Z,3705,237,2005-08-04T07:56:46Z,1,2020-02-15T06:59:41Z +7331,2005-07-27T13:57:50Z,2090,60,2005-07-31T08:59:50Z,1,2020-02-15T06:59:41Z +7332,2005-07-27T13:58:57Z,1761,151,2005-08-02T12:40:57Z,1,2020-02-15T06:59:41Z +7333,2005-07-27T13:59:11Z,1331,230,2005-07-30T16:04:11Z,1,2020-02-15T06:59:41Z +7334,2005-07-27T13:59:58Z,3006,461,2005-07-29T11:33:58Z,1,2020-02-15T06:59:41Z +7335,2005-07-27T14:06:50Z,1219,219,2005-08-05T18:27:50Z,2,2020-02-15T06:59:41Z +7336,2005-07-27T14:11:45Z,2706,46,2005-07-28T11:00:45Z,2,2020-02-15T06:59:41Z +7337,2005-07-27T14:12:04Z,3314,525,2005-08-03T14:57:04Z,2,2020-02-15T06:59:41Z +7338,2005-07-27T14:13:34Z,107,251,2005-08-03T18:36:34Z,2,2020-02-15T06:59:41Z +7339,2005-07-27T14:17:48Z,3343,316,2005-07-31T12:47:48Z,2,2020-02-15T06:59:41Z +7340,2005-07-27T14:18:10Z,1344,567,2005-07-30T09:57:10Z,1,2020-02-15T06:59:41Z +7341,2005-07-27T14:23:55Z,3567,498,2005-07-28T14:11:55Z,2,2020-02-15T06:59:41Z +7342,2005-07-27T14:25:17Z,4083,504,2005-08-04T10:02:17Z,2,2020-02-15T06:59:41Z +7343,2005-07-27T14:27:13Z,1177,526,2005-07-30T09:27:13Z,2,2020-02-15T06:59:41Z +7344,2005-07-27T14:29:28Z,1714,366,2005-07-31T15:36:28Z,1,2020-02-15T06:59:41Z +7345,2005-07-27T14:29:53Z,2434,572,2005-08-03T18:38:53Z,2,2020-02-15T06:59:41Z +7346,2005-07-27T14:30:42Z,741,2,2005-08-02T16:48:42Z,1,2020-02-15T06:59:41Z +7347,2005-07-27T14:31:24Z,3779,225,2005-07-31T16:19:24Z,1,2020-02-15T06:59:41Z +7348,2005-07-27T14:32:32Z,3238,43,2005-07-28T17:05:32Z,1,2020-02-15T06:59:41Z +7349,2005-07-27T14:33:00Z,861,195,2005-08-01T15:01:00Z,2,2020-02-15T06:59:41Z +7350,2005-07-27T14:34:14Z,737,410,2005-08-02T19:19:14Z,2,2020-02-15T06:59:41Z +7351,2005-07-27T14:37:36Z,2147,445,2005-07-30T09:58:36Z,2,2020-02-15T06:59:41Z +7352,2005-07-27T14:38:29Z,35,429,2005-07-28T14:24:29Z,1,2020-02-15T06:59:41Z +7353,2005-07-27T14:38:39Z,1308,357,2005-07-31T19:50:39Z,1,2020-02-15T06:59:41Z +7354,2005-07-27T14:42:11Z,2395,598,2005-08-03T18:19:11Z,2,2020-02-15T06:59:41Z +7355,2005-07-27T14:45:59Z,3803,115,2005-08-02T17:23:59Z,2,2020-02-15T06:59:41Z +7356,2005-07-27T14:47:35Z,309,397,2005-07-28T18:10:35Z,2,2020-02-15T06:59:41Z +7357,2005-07-27T14:48:31Z,1917,438,2005-08-02T18:07:31Z,2,2020-02-15T06:59:41Z +7358,2005-07-27T14:49:44Z,175,245,2005-07-28T20:00:44Z,1,2020-02-15T06:59:41Z +7359,2005-07-27T14:51:04Z,174,183,2005-07-31T16:03:04Z,2,2020-02-15T06:59:41Z +7360,2005-07-27T14:52:06Z,1312,467,2005-08-02T12:24:06Z,2,2020-02-15T06:59:41Z +7361,2005-07-27T14:53:55Z,4567,463,2005-07-31T19:48:55Z,2,2020-02-15T06:59:41Z +7362,2005-07-27T14:58:27Z,1902,419,2005-08-01T11:51:27Z,1,2020-02-15T06:59:41Z +7363,2005-07-27T14:58:29Z,1649,407,2005-08-05T09:02:29Z,1,2020-02-15T06:59:41Z +7364,2005-07-27T14:58:40Z,3046,592,2005-08-03T09:01:40Z,2,2020-02-15T06:59:41Z +7365,2005-07-27T15:00:20Z,3283,450,2005-07-30T12:58:20Z,1,2020-02-15T06:59:41Z +7366,2005-07-27T15:01:17Z,461,357,2005-08-04T20:28:17Z,1,2020-02-15T06:59:41Z +7367,2005-07-27T15:05:45Z,1738,383,2005-08-02T13:46:45Z,1,2020-02-15T06:59:41Z +7368,2005-07-27T15:06:05Z,2265,286,2005-07-31T14:10:05Z,2,2020-02-15T06:59:41Z +7369,2005-07-27T15:07:58Z,3889,139,2005-07-30T09:16:58Z,2,2020-02-15T06:59:41Z +7370,2005-07-27T15:15:53Z,2022,89,2005-08-03T19:53:53Z,2,2020-02-15T06:59:41Z +7371,2005-07-27T15:18:42Z,1807,577,2005-08-01T09:58:42Z,1,2020-02-15T06:59:41Z +7372,2005-07-27T15:18:42Z,3202,584,2005-08-01T15:18:42Z,2,2020-02-15T06:59:41Z +7373,2005-07-27T15:19:33Z,3074,488,2005-08-04T10:45:33Z,1,2020-02-15T06:59:41Z +7374,2005-07-27T15:20:57Z,3184,438,2005-08-05T13:09:57Z,2,2020-02-15T06:59:41Z +7375,2005-07-27T15:22:33Z,2970,381,2005-08-01T20:06:33Z,1,2020-02-15T06:59:41Z +7376,2005-07-27T15:23:02Z,488,2,2005-08-04T10:35:02Z,2,2020-02-15T06:59:41Z +7377,2005-07-27T15:31:28Z,1369,588,2005-08-02T19:59:28Z,2,2020-02-15T06:59:41Z +7378,2005-07-27T15:31:33Z,3297,144,2005-08-03T17:15:33Z,2,2020-02-15T06:59:41Z +7379,2005-07-27T15:36:43Z,424,415,2005-07-30T16:37:43Z,2,2020-02-15T06:59:41Z +7380,2005-07-27T15:37:01Z,988,348,2005-08-03T19:24:01Z,1,2020-02-15T06:59:41Z +7381,2005-07-27T15:40:26Z,1595,483,2005-08-02T17:26:26Z,2,2020-02-15T06:59:41Z +7382,2005-07-27T15:43:15Z,356,518,2005-07-28T11:18:15Z,2,2020-02-15T06:59:41Z +7383,2005-07-27T15:46:53Z,3860,50,2005-08-03T11:10:53Z,1,2020-02-15T06:59:41Z +7384,2005-07-27T15:49:45Z,3573,585,2005-08-04T15:17:45Z,1,2020-02-15T06:59:41Z +7385,2005-07-27T15:49:46Z,2996,56,2005-07-28T13:50:46Z,2,2020-02-15T06:59:41Z +7386,2005-07-27T15:52:10Z,3569,190,2005-08-04T15:13:10Z,1,2020-02-15T06:59:41Z +7387,2005-07-27T15:54:19Z,3274,233,2005-08-03T14:46:19Z,1,2020-02-15T06:59:41Z +7388,2005-07-27T15:54:19Z,4559,455,2005-08-01T17:02:19Z,2,2020-02-15T06:59:41Z +7389,2005-07-27T15:56:15Z,3822,156,2005-07-30T21:28:15Z,2,2020-02-15T06:59:41Z +7390,2005-07-27T15:59:19Z,1723,230,2005-08-04T10:09:19Z,2,2020-02-15T06:59:41Z +7391,2005-07-27T16:00:00Z,1153,531,2005-08-04T18:07:00Z,2,2020-02-15T06:59:41Z +7392,2005-07-27T16:01:05Z,3159,204,2005-08-01T17:23:05Z,2,2020-02-15T06:59:41Z +7393,2005-07-27T16:02:52Z,2369,181,2005-08-02T13:24:52Z,1,2020-02-15T06:59:41Z +7394,2005-07-27T16:03:08Z,2399,30,2005-08-04T11:27:08Z,2,2020-02-15T06:59:41Z +7395,2005-07-27T16:03:11Z,2888,411,2005-07-31T20:26:11Z,2,2020-02-15T06:59:41Z +7396,2005-07-27T16:03:53Z,3346,595,2005-08-05T10:36:53Z,2,2020-02-15T06:59:41Z +7397,2005-07-27T16:05:00Z,4474,245,2005-08-01T20:29:00Z,1,2020-02-15T06:59:41Z +7398,2005-07-27T16:07:22Z,1572,51,2005-08-05T16:16:22Z,1,2020-02-15T06:59:41Z +7399,2005-07-27T16:16:02Z,1682,526,2005-08-03T18:02:02Z,2,2020-02-15T06:59:41Z +7400,2005-07-27T16:16:37Z,2874,133,2005-07-31T12:34:37Z,2,2020-02-15T06:59:41Z +7401,2005-07-27T16:17:55Z,2759,583,2005-08-04T15:48:55Z,1,2020-02-15T06:59:41Z +7402,2005-07-27T16:19:40Z,2707,287,2005-08-05T14:48:40Z,2,2020-02-15T06:59:41Z +7403,2005-07-27T16:22:09Z,2551,163,2005-08-01T15:32:09Z,1,2020-02-15T06:59:41Z +7404,2005-07-27T16:24:43Z,2359,190,2005-07-29T11:40:43Z,2,2020-02-15T06:59:41Z +7405,2005-07-27T16:25:11Z,2312,42,2005-08-01T12:33:11Z,2,2020-02-15T06:59:41Z +7406,2005-07-27T16:25:45Z,1412,77,2005-08-05T20:39:45Z,1,2020-02-15T06:59:41Z +7407,2005-07-27T16:29:04Z,3093,410,2005-08-01T17:47:04Z,2,2020-02-15T06:59:41Z +7408,2005-07-27T16:31:40Z,625,371,2005-07-31T11:56:40Z,2,2020-02-15T06:59:41Z +7409,2005-07-27T16:38:24Z,2352,585,2005-07-30T18:06:24Z,1,2020-02-15T06:59:41Z +7410,2005-07-27T16:41:59Z,1559,337,2005-07-29T22:11:59Z,1,2020-02-15T06:59:41Z +7411,2005-07-27T16:42:30Z,515,302,2005-08-05T17:38:30Z,1,2020-02-15T06:59:41Z +7412,2005-07-27T16:44:34Z,950,582,2005-08-04T15:06:34Z,2,2020-02-15T06:59:41Z +7413,2005-07-27T16:45:40Z,2909,254,2005-07-31T12:02:40Z,1,2020-02-15T06:59:41Z +7414,2005-07-27T16:46:07Z,3276,265,2005-08-02T20:04:07Z,1,2020-02-15T06:59:41Z +7415,2005-07-27T16:50:59Z,4410,294,2005-08-02T11:21:59Z,1,2020-02-15T06:59:41Z +7416,2005-07-27T16:55:25Z,653,350,2005-07-29T11:27:25Z,1,2020-02-15T06:59:41Z +7417,2005-07-27T16:58:33Z,2952,214,2005-07-30T22:17:33Z,1,2020-02-15T06:59:41Z +7418,2005-07-27T16:59:09Z,3029,332,2005-07-29T15:08:09Z,2,2020-02-15T06:59:41Z +7419,2005-07-27T17:04:15Z,3454,352,2005-08-05T21:54:15Z,2,2020-02-15T06:59:41Z +7420,2005-07-27T17:09:39Z,3505,547,2005-07-30T12:30:39Z,2,2020-02-15T06:59:41Z +7421,2005-07-27T17:10:05Z,3548,70,2005-08-05T17:55:05Z,1,2020-02-15T06:59:41Z +7422,2005-07-27T17:10:42Z,3954,286,2005-08-03T19:32:42Z,1,2020-02-15T06:59:41Z +7423,2005-07-27T17:11:47Z,666,277,2005-07-29T12:29:47Z,2,2020-02-15T06:59:41Z +7424,2005-07-27T17:14:19Z,660,558,2005-08-01T19:21:19Z,2,2020-02-15T06:59:41Z +7425,2005-07-27T17:18:35Z,435,263,2005-08-02T11:18:35Z,1,2020-02-15T06:59:41Z +7426,2005-07-27T17:19:46Z,4420,239,2005-07-29T21:41:46Z,1,2020-02-15T06:59:41Z +7427,2005-07-27T17:20:16Z,2548,442,2005-08-03T20:38:16Z,2,2020-02-15T06:59:41Z +7428,2005-07-27T17:21:52Z,243,90,2005-08-05T17:13:52Z,2,2020-02-15T06:59:41Z +7429,2005-07-27T17:24:50Z,2160,515,2005-08-05T23:02:50Z,1,2020-02-15T06:59:41Z +7430,2005-07-27T17:26:14Z,4205,562,2005-08-01T13:02:14Z,2,2020-02-15T06:59:41Z +7431,2005-07-27T17:27:27Z,3931,589,2005-07-31T18:40:27Z,1,2020-02-15T06:59:41Z +7432,2005-07-27T17:31:40Z,3169,132,2005-07-28T17:44:40Z,2,2020-02-15T06:59:41Z +7433,2005-07-27T17:32:20Z,1748,282,2005-08-01T18:49:20Z,1,2020-02-15T06:59:41Z +7434,2005-07-27T17:34:40Z,2927,241,2005-07-29T15:01:40Z,1,2020-02-15T06:59:41Z +7435,2005-07-27T17:38:44Z,1574,380,2005-07-30T16:57:44Z,1,2020-02-15T06:59:41Z +7436,2005-07-27T17:39:12Z,299,45,2005-08-01T12:40:12Z,2,2020-02-15T06:59:41Z +7437,2005-07-27T17:39:18Z,2617,135,2005-07-28T18:33:18Z,2,2020-02-15T06:59:41Z +7438,2005-07-27T17:40:40Z,1364,52,2005-08-05T15:25:40Z,1,2020-02-15T06:59:41Z +7439,2005-07-27T17:42:31Z,4091,102,2005-08-05T16:34:31Z,1,2020-02-15T06:59:41Z +7440,2005-07-27T17:43:27Z,1476,484,2005-08-03T22:12:27Z,1,2020-02-15T06:59:41Z +7441,2005-07-27T17:46:53Z,4039,198,2005-07-31T23:05:53Z,1,2020-02-15T06:59:41Z +7442,2005-07-27T17:47:00Z,2471,105,2005-07-28T21:37:00Z,1,2020-02-15T06:59:41Z +7443,2005-07-27T17:47:43Z,703,380,2005-07-29T13:15:43Z,1,2020-02-15T06:59:41Z +7444,2005-07-27T17:49:16Z,120,531,2005-07-28T15:05:16Z,1,2020-02-15T06:59:41Z +7445,2005-07-27T17:57:15Z,4115,394,2005-07-31T20:24:15Z,1,2020-02-15T06:59:41Z +7446,2005-07-27T18:00:24Z,2337,486,2005-07-29T13:40:24Z,1,2020-02-15T06:59:41Z +7447,2005-07-27T18:02:08Z,1795,107,2005-07-29T21:15:08Z,1,2020-02-15T06:59:41Z +7448,2005-07-27T18:06:30Z,3584,175,2005-07-29T15:43:30Z,1,2020-02-15T06:59:41Z +7449,2005-07-27T18:17:41Z,2084,421,2005-08-01T18:52:41Z,1,2020-02-15T06:59:41Z +7450,2005-07-27T18:18:35Z,3496,191,2005-08-04T15:18:35Z,1,2020-02-15T06:59:41Z +7451,2005-07-27T18:18:41Z,2382,29,2005-08-03T13:55:41Z,2,2020-02-15T06:59:41Z +7452,2005-07-27T18:26:39Z,3482,285,2005-08-04T17:35:39Z,2,2020-02-15T06:59:41Z +7453,2005-07-27T18:27:13Z,2992,29,2005-07-29T23:52:13Z,1,2020-02-15T06:59:41Z +7454,2005-07-27T18:27:26Z,3248,75,2005-07-30T23:50:26Z,1,2020-02-15T06:59:41Z +7455,2005-07-27T18:34:41Z,3815,405,2005-07-31T17:32:41Z,1,2020-02-15T06:59:41Z +7456,2005-07-27T18:34:53Z,1959,501,2005-07-29T17:46:53Z,2,2020-02-15T06:59:41Z +7457,2005-07-27T18:35:17Z,3635,510,2005-07-30T12:41:17Z,2,2020-02-15T06:59:41Z +7458,2005-07-27T18:36:17Z,2964,327,2005-07-31T22:43:17Z,1,2020-02-15T06:59:41Z +7459,2005-07-27T18:40:20Z,2053,2,2005-08-02T21:07:20Z,2,2020-02-15T06:59:41Z +7460,2005-07-27T18:41:35Z,919,442,2005-07-29T15:16:35Z,2,2020-02-15T06:59:41Z +7461,2005-07-27T18:45:15Z,1236,476,2005-07-29T17:19:15Z,1,2020-02-15T06:59:41Z +7462,2005-07-27T18:47:47Z,878,114,2005-07-29T20:46:47Z,2,2020-02-15T06:59:41Z +7463,2005-07-27T18:48:32Z,3676,284,2005-07-29T23:54:32Z,2,2020-02-15T06:59:41Z +7464,2005-07-27T18:49:42Z,845,31,2005-07-28T20:45:42Z,2,2020-02-15T06:59:41Z +7465,2005-07-27T18:50:30Z,2357,115,2005-07-30T20:55:30Z,1,2020-02-15T06:59:41Z +7466,2005-07-27T18:51:17Z,2791,53,2005-07-31T16:58:17Z,1,2020-02-15T06:59:41Z +7467,2005-07-27T18:51:54Z,3869,240,2005-08-03T23:27:54Z,2,2020-02-15T06:59:41Z +7468,2005-07-27T18:52:27Z,3166,113,2005-08-03T19:29:27Z,2,2020-02-15T06:59:41Z +7469,2005-07-27T18:57:40Z,3723,189,2005-07-31T00:17:40Z,1,2020-02-15T06:59:41Z +7470,2005-07-27T19:01:03Z,289,564,2005-08-05T19:16:03Z,2,2020-02-15T06:59:41Z +7471,2005-07-27T19:02:19Z,1776,95,2005-07-30T15:12:19Z,1,2020-02-15T06:59:41Z +7472,2005-07-27T19:04:19Z,1535,103,2005-08-03T00:08:19Z,2,2020-02-15T06:59:41Z +7473,2005-07-27T19:05:40Z,401,341,2005-08-05T14:47:40Z,1,2020-02-15T06:59:41Z +7474,2005-07-27T19:07:17Z,2971,110,2005-07-30T00:37:17Z,1,2020-02-15T06:59:41Z +7475,2005-07-27T19:07:43Z,1670,255,2005-08-04T22:12:43Z,2,2020-02-15T06:59:41Z +7476,2005-07-27T19:08:56Z,2288,64,2005-07-31T16:36:56Z,2,2020-02-15T06:59:41Z +7477,2005-07-27T19:11:03Z,2692,355,2005-08-02T19:25:03Z,1,2020-02-15T06:59:41Z +7478,2005-07-27T19:16:02Z,3791,521,2005-08-04T22:30:02Z,2,2020-02-15T06:59:41Z +7479,2005-07-27T19:18:17Z,218,434,2005-07-30T18:55:17Z,1,2020-02-15T06:59:41Z +7480,2005-07-27T19:19:53Z,452,344,2005-08-02T01:01:53Z,1,2020-02-15T06:59:41Z +7481,2005-07-27T19:20:25Z,1804,240,2005-07-29T19:07:25Z,2,2020-02-15T06:59:41Z +7482,2005-07-27T19:24:16Z,485,348,2005-08-05T18:49:16Z,2,2020-02-15T06:59:41Z +7483,2005-07-27T19:25:00Z,3678,106,2005-07-29T21:19:00Z,2,2020-02-15T06:59:41Z +7484,2005-07-27T19:28:17Z,2746,211,2005-07-31T20:05:17Z,2,2020-02-15T06:59:41Z +7485,2005-07-27T19:29:09Z,631,362,2005-07-30T16:28:09Z,1,2020-02-15T06:59:41Z +7486,2005-07-27T19:29:24Z,4362,393,2005-08-02T20:46:24Z,2,2020-02-15T06:59:41Z +7487,2005-07-27T19:32:45Z,4451,58,2005-07-28T15:11:45Z,1,2020-02-15T06:59:41Z +7488,2005-07-27T19:36:15Z,554,365,2005-08-05T14:14:15Z,1,2020-02-15T06:59:41Z +7489,2005-07-27T19:39:38Z,3732,16,2005-07-30T23:10:38Z,2,2020-02-15T06:59:41Z +7490,2005-07-27T19:48:12Z,4503,595,2005-08-04T17:15:12Z,1,2020-02-15T06:59:41Z +7491,2005-07-27T19:53:23Z,4261,239,2005-07-28T23:25:23Z,2,2020-02-15T06:59:41Z +7492,2005-07-27T19:54:18Z,908,155,2005-07-31T15:36:18Z,2,2020-02-15T06:59:41Z +7493,2005-07-27T19:55:46Z,2868,177,2005-08-02T19:46:46Z,2,2020-02-15T06:59:41Z +7494,2005-07-27T19:56:31Z,2259,60,2005-07-30T14:28:31Z,1,2020-02-15T06:59:41Z +7495,2005-07-27T20:01:20Z,3446,426,2005-07-30T16:40:20Z,1,2020-02-15T06:59:41Z +7496,2005-07-27T20:04:05Z,2449,257,2005-08-02T20:12:05Z,1,2020-02-15T06:59:41Z +7497,2005-07-27T20:05:27Z,286,387,2005-07-30T22:47:27Z,1,2020-02-15T06:59:41Z +7498,2005-07-27T20:09:31Z,1144,455,2005-07-29T23:38:31Z,1,2020-02-15T06:59:41Z +7499,2005-07-27T20:10:28Z,3503,157,2005-07-30T16:24:28Z,1,2020-02-15T06:59:41Z +7500,2005-07-27T20:16:03Z,609,160,2005-07-29T18:50:03Z,1,2020-02-15T06:59:41Z +7501,2005-07-27T20:16:59Z,1464,587,2005-08-04T00:11:59Z,2,2020-02-15T06:59:41Z +7502,2005-07-27T20:19:08Z,3229,303,2005-07-28T18:32:08Z,2,2020-02-15T06:59:41Z +7503,2005-07-27T20:23:12Z,579,3,2005-08-05T18:46:12Z,2,2020-02-15T06:59:41Z +7504,2005-07-27T20:24:31Z,3354,283,2005-07-30T21:25:31Z,2,2020-02-15T06:59:41Z +7505,2005-07-27T20:28:03Z,1342,209,2005-08-03T17:04:03Z,1,2020-02-15T06:59:41Z +7506,2005-07-27T20:28:34Z,2091,527,2005-08-05T18:14:34Z,1,2020-02-15T06:59:41Z +7507,2005-07-27T20:31:48Z,3618,512,2005-08-02T17:27:48Z,1,2020-02-15T06:59:41Z +7508,2005-07-27T20:33:08Z,3401,465,2005-08-01T01:29:08Z,1,2020-02-15T06:59:41Z +7509,2005-07-27T20:37:19Z,4134,228,2005-08-04T19:35:19Z,2,2020-02-15T06:59:41Z +7510,2005-07-27T20:37:57Z,1617,257,2005-08-01T17:14:57Z,2,2020-02-15T06:59:41Z +7511,2005-07-27T20:38:40Z,4044,591,2005-08-04T22:36:40Z,2,2020-02-15T06:59:41Z +7512,2005-07-27T20:40:40Z,1343,352,2005-08-05T01:44:40Z,1,2020-02-15T06:59:41Z +7513,2005-07-27T20:51:04Z,939,411,2005-08-03T20:15:04Z,2,2020-02-15T06:59:41Z +7514,2005-07-27T20:51:49Z,400,44,2005-07-29T18:21:49Z,2,2020-02-15T06:59:41Z +7515,2005-07-27T20:52:37Z,1211,390,2005-08-02T20:17:37Z,2,2020-02-15T06:59:41Z +7516,2005-07-27T20:55:28Z,2178,134,2005-07-30T00:50:28Z,1,2020-02-15T06:59:41Z +7517,2005-07-27T20:57:07Z,3177,41,2005-08-04T15:08:07Z,1,2020-02-15T06:59:41Z +7518,2005-07-27T21:01:16Z,2676,257,2005-08-03T15:26:16Z,1,2020-02-15T06:59:41Z +7519,2005-07-27T21:01:41Z,4009,124,2005-08-05T19:15:41Z,1,2020-02-15T06:59:41Z +7520,2005-07-27T21:02:02Z,3875,191,2005-07-28T18:18:02Z,1,2020-02-15T06:59:41Z +7521,2005-07-27T21:04:42Z,3144,176,2005-08-03T16:06:42Z,1,2020-02-15T06:59:41Z +7522,2005-07-27T21:11:03Z,2038,478,2005-08-02T16:40:03Z,1,2020-02-15T06:59:41Z +7523,2005-07-27T21:11:23Z,4153,410,2005-07-28T16:37:23Z,1,2020-02-15T06:59:41Z +7524,2005-07-27T21:11:44Z,4295,225,2005-08-03T02:17:44Z,1,2020-02-15T06:59:41Z +7525,2005-07-27T21:13:28Z,4084,281,2005-08-04T19:44:28Z,2,2020-02-15T06:59:41Z +7526,2005-07-27T21:13:47Z,696,44,2005-08-05T15:23:47Z,2,2020-02-15T06:59:41Z +7527,2005-07-27T21:14:28Z,2124,426,2005-08-05T21:08:28Z,1,2020-02-15T06:59:41Z +7528,2005-07-27T21:15:25Z,1218,213,2005-08-03T19:12:25Z,1,2020-02-15T06:59:41Z +7529,2005-07-27T21:18:08Z,3644,145,2005-08-06T00:59:08Z,1,2020-02-15T06:59:41Z +7530,2005-07-27T21:18:58Z,3810,98,2005-07-31T01:51:58Z,2,2020-02-15T06:59:41Z +7531,2005-07-27T21:19:34Z,2393,221,2005-08-06T01:07:34Z,2,2020-02-15T06:59:41Z +7532,2005-07-27T21:20:52Z,677,34,2005-07-30T21:38:52Z,1,2020-02-15T06:59:41Z +7533,2005-07-27T21:24:33Z,1791,594,2005-08-05T16:33:33Z,2,2020-02-15T06:59:41Z +7534,2005-07-27T21:26:17Z,2276,282,2005-08-05T00:23:17Z,2,2020-02-15T06:59:41Z +7535,2005-07-27T21:32:39Z,772,123,2005-08-05T23:42:39Z,1,2020-02-15T06:59:41Z +7536,2005-07-27T21:34:09Z,3417,307,2005-08-02T03:26:09Z,1,2020-02-15T06:59:41Z +7537,2005-07-27T21:36:09Z,4456,269,2005-08-01T01:51:09Z,1,2020-02-15T06:59:41Z +7538,2005-07-27T21:38:04Z,2486,361,2005-08-02T03:14:04Z,1,2020-02-15T06:59:41Z +7539,2005-07-27T21:39:42Z,1849,423,2005-08-06T00:12:42Z,1,2020-02-15T06:59:41Z +7540,2005-07-27T21:39:55Z,2198,207,2005-08-04T18:10:55Z,2,2020-02-15T06:59:41Z +7541,2005-07-27T21:40:05Z,4100,206,2005-07-29T16:13:05Z,1,2020-02-15T06:59:41Z +7542,2005-07-27T21:43:04Z,1912,110,2005-07-30T00:02:04Z,1,2020-02-15T06:59:41Z +7543,2005-07-27T21:44:28Z,1289,526,2005-08-04T21:42:28Z,2,2020-02-15T06:59:41Z +7544,2005-07-27T21:47:37Z,766,249,2005-08-05T02:29:37Z,2,2020-02-15T06:59:41Z +7545,2005-07-27T21:48:03Z,2541,292,2005-08-01T22:23:03Z,2,2020-02-15T06:59:41Z +7546,2005-07-27T21:50:09Z,3683,494,2005-08-05T03:07:09Z,2,2020-02-15T06:59:41Z +7547,2005-07-27T21:51:48Z,1733,547,2005-08-06T01:05:48Z,2,2020-02-15T06:59:41Z +7548,2005-07-27T21:53:18Z,2194,484,2005-08-02T17:50:18Z,1,2020-02-15T06:59:41Z +7549,2005-07-27T21:53:21Z,1765,591,2005-08-05T18:53:21Z,1,2020-02-15T06:59:41Z +7550,2005-07-27T21:55:07Z,4488,71,2005-07-28T23:34:07Z,2,2020-02-15T06:59:41Z +7551,2005-07-27T21:59:15Z,2635,304,2005-07-31T19:54:15Z,2,2020-02-15T06:59:41Z +7552,2005-07-27T22:03:41Z,2166,16,2005-07-28T22:24:41Z,1,2020-02-15T06:59:41Z +7553,2005-07-27T22:11:36Z,1643,275,2005-08-03T17:52:36Z,1,2020-02-15T06:59:41Z +7554,2005-07-27T22:12:41Z,1805,135,2005-08-04T01:34:41Z,2,2020-02-15T06:59:41Z +7555,2005-07-27T22:17:05Z,3421,533,2005-08-02T02:50:05Z,2,2020-02-15T06:59:41Z +7556,2005-07-27T22:17:17Z,794,188,2005-07-28T19:17:17Z,2,2020-02-15T06:59:41Z +7557,2005-07-27T22:18:19Z,3152,131,2005-07-29T00:24:19Z,1,2020-02-15T06:59:41Z +7558,2005-07-27T22:19:08Z,550,80,2005-07-30T21:31:08Z,1,2020-02-15T06:59:41Z +7559,2005-07-27T22:20:03Z,661,149,2005-08-06T00:26:03Z,2,2020-02-15T06:59:41Z +7560,2005-07-27T22:20:17Z,3574,562,2005-08-02T23:00:17Z,2,2020-02-15T06:59:41Z +7561,2005-07-27T22:21:05Z,3433,291,2005-08-04T01:02:05Z,1,2020-02-15T06:59:41Z +7562,2005-07-27T22:25:15Z,4417,366,2005-08-01T01:21:15Z,2,2020-02-15T06:59:41Z +7563,2005-07-27T22:25:36Z,2709,453,2005-08-01T03:59:36Z,2,2020-02-15T06:59:41Z +7564,2005-07-27T22:31:17Z,2887,291,2005-08-01T01:05:17Z,2,2020-02-15T06:59:41Z +7565,2005-07-27T22:33:59Z,1028,114,2005-07-30T03:03:59Z,2,2020-02-15T06:59:41Z +7566,2005-07-27T22:34:45Z,1802,144,2005-08-01T22:20:45Z,1,2020-02-15T06:59:41Z +7567,2005-07-27T22:38:05Z,1066,504,2005-07-30T17:20:05Z,1,2020-02-15T06:59:41Z +7568,2005-07-27T22:38:53Z,1578,296,2005-07-29T00:51:53Z,1,2020-02-15T06:59:41Z +7569,2005-07-27T22:38:53Z,2315,528,2005-08-05T19:03:53Z,2,2020-02-15T06:59:41Z +7570,2005-07-27T22:40:06Z,3189,110,2005-07-28T23:14:06Z,1,2020-02-15T06:59:41Z +7571,2005-07-27T22:43:42Z,3850,368,2005-07-30T22:17:42Z,1,2020-02-15T06:59:41Z +7572,2005-07-27T22:44:29Z,3068,532,2005-08-01T03:04:29Z,1,2020-02-15T06:59:41Z +7573,2005-07-27T22:46:20Z,314,467,2005-08-04T01:55:20Z,1,2020-02-15T06:59:41Z +7574,2005-07-27T22:53:00Z,298,200,2005-07-29T18:39:00Z,2,2020-02-15T06:59:41Z +7575,2005-07-27T22:53:52Z,702,582,2005-07-29T02:02:52Z,1,2020-02-15T06:59:41Z +7576,2005-07-27T22:54:35Z,3374,446,2005-08-03T03:53:35Z,2,2020-02-15T06:59:41Z +7577,2005-07-27T22:56:07Z,2723,332,2005-08-05T21:23:07Z,2,2020-02-15T06:59:41Z +7578,2005-07-27T22:58:17Z,4210,332,2005-07-29T23:14:17Z,1,2020-02-15T06:59:41Z +7579,2005-07-27T23:06:41Z,501,352,2005-07-31T20:08:41Z,2,2020-02-15T06:59:41Z +7580,2005-07-27T23:07:40Z,338,28,2005-08-05T02:17:40Z,1,2020-02-15T06:59:41Z +7581,2005-07-27T23:14:35Z,2051,166,2005-07-29T21:30:35Z,1,2020-02-15T06:59:41Z +7582,2005-07-27T23:15:14Z,3941,128,2005-07-29T03:18:14Z,2,2020-02-15T06:59:41Z +7583,2005-07-27T23:15:22Z,2890,198,2005-08-04T04:39:22Z,2,2020-02-15T06:59:41Z +7584,2005-07-27T23:15:46Z,4390,338,2005-08-03T02:18:46Z,2,2020-02-15T06:59:41Z +7585,2005-07-27T23:18:22Z,467,440,2005-07-30T23:08:22Z,1,2020-02-15T06:59:41Z +7586,2005-07-27T23:19:29Z,15,316,2005-07-29T23:04:29Z,1,2020-02-15T06:59:41Z +7587,2005-07-27T23:23:03Z,655,113,2005-08-01T17:34:03Z,1,2020-02-15T06:59:41Z +7588,2005-07-27T23:23:31Z,4033,360,2005-08-04T02:54:31Z,1,2020-02-15T06:59:41Z +7589,2005-07-27T23:23:36Z,1569,32,2005-08-04T00:16:36Z,1,2020-02-15T06:59:41Z +7590,2005-07-27T23:24:24Z,2152,73,2005-07-28T19:53:24Z,2,2020-02-15T06:59:41Z +7591,2005-07-27T23:25:54Z,651,525,2005-08-02T22:54:54Z,1,2020-02-15T06:59:41Z +7592,2005-07-27T23:26:04Z,4105,316,2005-07-29T23:48:04Z,2,2020-02-15T06:59:41Z +7593,2005-07-27T23:28:47Z,1158,436,2005-08-02T19:51:47Z,1,2020-02-15T06:59:41Z +7594,2005-07-27T23:30:41Z,3230,424,2005-08-02T04:29:41Z,1,2020-02-15T06:59:41Z +7595,2005-07-27T23:32:23Z,4313,390,2005-08-03T05:28:23Z,1,2020-02-15T06:59:41Z +7596,2005-07-27T23:33:57Z,2097,275,2005-08-01T20:46:57Z,2,2020-02-15T06:59:41Z +7597,2005-07-27T23:35:49Z,2856,169,2005-07-30T21:38:49Z,1,2020-02-15T06:59:41Z +7598,2005-07-27T23:36:01Z,4545,438,2005-07-29T23:35:01Z,2,2020-02-15T06:59:41Z +7599,2005-07-27T23:38:46Z,3272,87,2005-07-28T22:52:46Z,1,2020-02-15T06:59:41Z +7600,2005-07-27T23:41:18Z,3492,107,2005-08-06T04:40:18Z,1,2020-02-15T06:59:41Z +7601,2005-07-27T23:48:15Z,903,228,2005-07-29T02:45:15Z,1,2020-02-15T06:59:41Z +7602,2005-07-27T23:48:35Z,2516,366,2005-08-04T17:58:35Z,1,2020-02-15T06:59:41Z +7603,2005-07-27T23:54:44Z,124,497,2005-07-29T01:24:44Z,1,2020-02-15T06:59:41Z +7604,2005-07-27T23:54:52Z,3720,406,2005-08-05T03:04:52Z,2,2020-02-15T06:59:41Z +7605,2005-07-27T23:57:01Z,1391,576,2005-08-03T04:11:01Z,1,2020-02-15T06:59:41Z +7606,2005-07-28T00:02:15Z,637,201,2005-07-29T03:14:15Z,2,2020-02-15T06:59:41Z +7607,2005-07-28T00:05:53Z,3914,293,2005-07-31T04:13:53Z,1,2020-02-15T06:59:41Z +7608,2005-07-28T00:08:36Z,1256,167,2005-07-28T18:13:36Z,1,2020-02-15T06:59:41Z +7609,2005-07-28T00:11:00Z,3655,179,2005-07-31T03:04:00Z,1,2020-02-15T06:59:41Z +7610,2005-07-28T00:11:35Z,1279,450,2005-07-31T00:33:35Z,1,2020-02-15T06:59:41Z +7611,2005-07-28T00:11:47Z,3347,467,2005-07-28T18:35:47Z,1,2020-02-15T06:59:41Z +7612,2005-07-28T00:11:55Z,1411,563,2005-07-30T00:47:55Z,1,2020-02-15T06:59:41Z +7613,2005-07-28T00:13:58Z,4253,202,2005-08-06T05:36:58Z,2,2020-02-15T06:59:41Z +7614,2005-07-28T00:14:38Z,3475,440,2005-07-29T18:18:38Z,1,2020-02-15T06:59:41Z +7615,2005-07-28T00:15:24Z,3884,373,2005-07-31T02:00:24Z,1,2020-02-15T06:59:41Z +7616,2005-07-28T00:15:26Z,3790,9,2005-07-30T21:52:26Z,1,2020-02-15T06:59:41Z +7617,2005-07-28T00:18:40Z,2904,340,2005-08-01T01:17:40Z,1,2020-02-15T06:59:41Z +7618,2005-07-28T00:24:14Z,774,271,2005-08-01T04:35:14Z,1,2020-02-15T06:59:41Z +7619,2005-07-28T00:25:41Z,1057,419,2005-07-30T04:35:41Z,2,2020-02-15T06:59:41Z +7620,2005-07-28T00:27:17Z,931,580,2005-07-31T02:04:17Z,1,2020-02-15T06:59:41Z +7621,2005-07-28T00:34:06Z,1833,88,2005-08-06T00:13:06Z,1,2020-02-15T06:59:41Z +7622,2005-07-28T00:37:34Z,4014,198,2005-07-31T23:27:34Z,2,2020-02-15T06:59:41Z +7623,2005-07-28T00:37:41Z,1146,459,2005-08-04T19:38:41Z,2,2020-02-15T06:59:41Z +7624,2005-07-28T00:37:44Z,2756,415,2005-07-30T21:26:44Z,1,2020-02-15T06:59:41Z +7625,2005-07-28T00:47:56Z,3129,382,2005-08-02T23:34:56Z,1,2020-02-15T06:59:41Z +7626,2005-07-28T00:49:01Z,4200,450,2005-07-31T00:43:01Z,1,2020-02-15T06:59:41Z +7627,2005-07-28T00:56:47Z,782,52,2005-08-02T04:16:47Z,1,2020-02-15T06:59:41Z +7628,2005-07-28T00:58:04Z,1240,516,2005-08-03T19:16:04Z,1,2020-02-15T06:59:41Z +7629,2005-07-28T01:00:09Z,2453,229,2005-07-30T06:49:09Z,1,2020-02-15T06:59:41Z +7630,2005-07-28T01:01:03Z,2798,351,2005-07-31T01:08:03Z,2,2020-02-15T06:59:41Z +7631,2005-07-28T01:01:15Z,2437,132,2005-08-01T06:16:15Z,2,2020-02-15T06:59:41Z +7632,2005-07-28T01:02:40Z,3233,181,2005-07-30T05:31:40Z,2,2020-02-15T06:59:41Z +7633,2005-07-28T01:03:41Z,4171,402,2005-08-01T23:54:41Z,2,2020-02-15T06:59:41Z +7634,2005-07-28T01:07:01Z,4487,365,2005-07-31T05:00:01Z,1,2020-02-15T06:59:41Z +7635,2005-07-28T01:08:11Z,55,413,2005-08-01T03:32:11Z,2,2020-02-15T06:59:41Z +7636,2005-07-28T01:08:36Z,202,51,2005-08-03T21:36:36Z,1,2020-02-15T06:59:41Z +7637,2005-07-28T01:12:25Z,87,91,2005-08-02T03:48:25Z,1,2020-02-15T06:59:41Z +7638,2005-07-28T01:13:26Z,1890,172,2005-07-28T20:34:26Z,1,2020-02-15T06:59:41Z +7639,2005-07-28T01:14:36Z,767,459,2005-07-29T00:19:36Z,1,2020-02-15T06:59:41Z +7640,2005-07-28T01:14:49Z,3014,229,2005-08-03T21:50:49Z,1,2020-02-15T06:59:41Z +7641,2005-07-28T01:15:45Z,1868,475,2005-08-04T23:50:45Z,1,2020-02-15T06:59:41Z +7642,2005-07-28T01:16:51Z,3995,523,2005-08-02T00:45:51Z,2,2020-02-15T06:59:41Z +7643,2005-07-28T01:19:44Z,4369,407,2005-08-04T21:16:44Z,1,2020-02-15T06:59:41Z +7644,2005-07-28T01:27:33Z,882,173,2005-07-31T22:58:33Z,2,2020-02-15T06:59:41Z +7645,2005-07-28T01:27:42Z,830,381,2005-08-03T07:16:42Z,2,2020-02-15T06:59:41Z +7646,2005-07-28T01:31:45Z,1615,255,2005-07-31T07:16:45Z,1,2020-02-15T06:59:41Z +7647,2005-07-28T01:35:17Z,3079,36,2005-08-01T00:14:17Z,1,2020-02-15T06:59:41Z +7648,2005-07-28T01:35:33Z,797,310,2005-08-04T06:21:33Z,2,2020-02-15T06:59:41Z +7649,2005-07-28T01:37:26Z,2704,318,2005-07-28T21:18:26Z,1,2020-02-15T06:59:41Z +7650,2005-07-28T01:47:20Z,701,290,2005-08-05T06:00:20Z,2,2020-02-15T06:59:41Z +7651,2005-07-28T01:48:32Z,2753,401,2005-08-03T03:10:32Z,2,2020-02-15T06:59:41Z +7652,2005-07-28T01:50:29Z,92,5,2005-07-30T22:23:29Z,2,2020-02-15T06:59:41Z +7653,2005-07-28T01:58:30Z,814,232,2005-07-28T23:32:30Z,2,2020-02-15T06:59:41Z +7654,2005-07-28T02:00:14Z,1009,360,2005-07-31T20:50:14Z,2,2020-02-15T06:59:41Z +7655,2005-07-28T02:01:11Z,2665,513,2005-07-30T23:12:11Z,2,2020-02-15T06:59:41Z +7656,2005-07-28T02:07:19Z,178,148,2005-07-31T04:05:19Z,1,2020-02-15T06:59:41Z +7657,2005-07-28T02:09:00Z,2319,518,2005-08-04T21:44:00Z,1,2020-02-15T06:59:41Z +7658,2005-07-28T02:09:12Z,1798,272,2005-07-30T00:54:12Z,2,2020-02-15T06:59:41Z +7659,2005-07-28T02:09:45Z,1622,584,2005-08-02T05:34:45Z,2,2020-02-15T06:59:41Z +7660,2005-07-28T02:10:10Z,4385,4,2005-07-30T04:29:10Z,2,2020-02-15T06:59:41Z +7661,2005-07-28T02:10:27Z,3060,256,2005-08-05T03:45:27Z,2,2020-02-15T06:59:41Z +7662,2005-07-28T02:16:08Z,1017,534,2005-08-03T21:51:08Z,1,2020-02-15T06:59:41Z +7663,2005-07-28T02:19:48Z,832,470,2005-07-30T21:43:48Z,2,2020-02-15T06:59:41Z +7664,2005-07-28T02:24:23Z,1989,461,2005-07-29T23:01:23Z,1,2020-02-15T06:59:41Z +7665,2005-07-28T02:28:30Z,1455,590,2005-07-31T20:42:30Z,1,2020-02-15T06:59:41Z +7666,2005-07-28T02:35:12Z,688,196,2005-08-05T05:43:12Z,2,2020-02-15T06:59:41Z +7667,2005-07-28T02:37:22Z,2415,443,2005-08-05T21:37:22Z,1,2020-02-15T06:59:41Z +7668,2005-07-28T02:41:31Z,3880,508,2005-08-02T06:08:31Z,1,2020-02-15T06:59:41Z +7669,2005-07-28T02:44:07Z,2624,483,2005-07-29T00:54:07Z,1,2020-02-15T06:59:41Z +7670,2005-07-28T02:44:25Z,1356,252,2005-07-29T21:55:25Z,2,2020-02-15T06:59:41Z +7671,2005-07-28T02:48:31Z,3464,442,2005-07-30T23:04:31Z,1,2020-02-15T06:59:41Z +7672,2005-07-28T02:49:41Z,573,542,2005-08-04T02:38:41Z,1,2020-02-15T06:59:41Z +7673,2005-07-28T02:53:53Z,2368,409,2005-08-06T00:07:53Z,1,2020-02-15T06:59:42Z +7674,2005-07-28T02:54:30Z,682,177,2005-08-05T23:09:30Z,1,2020-02-15T06:59:42Z +7675,2005-07-28T02:55:20Z,153,189,2005-07-31T05:27:20Z,1,2020-02-15T06:59:42Z +7676,2005-07-28T02:55:27Z,1110,508,2005-08-01T03:50:27Z,2,2020-02-15T06:59:42Z +7677,2005-07-28T02:56:37Z,4464,566,2005-07-31T02:21:37Z,1,2020-02-15T06:59:42Z +7678,2005-07-28T02:58:16Z,3398,510,2005-08-06T04:22:16Z,1,2020-02-15T06:59:42Z +7679,2005-07-28T02:58:39Z,1063,444,2005-08-02T04:58:39Z,1,2020-02-15T06:59:42Z +7680,2005-07-28T02:59:08Z,1784,559,2005-08-03T03:37:08Z,2,2020-02-15T06:59:42Z +7681,2005-07-28T03:07:09Z,1176,432,2005-07-29T08:30:09Z,2,2020-02-15T06:59:42Z +7682,2005-07-28T03:07:29Z,3296,400,2005-08-04T08:48:29Z,2,2020-02-15T06:59:42Z +7683,2005-07-28T03:11:29Z,1760,73,2005-08-04T00:14:29Z,1,2020-02-15T06:59:42Z +7684,2005-07-28T03:11:54Z,3365,40,2005-07-31T04:40:54Z,2,2020-02-15T06:59:42Z +7685,2005-07-28T03:13:00Z,2213,468,2005-08-01T00:29:00Z,2,2020-02-15T06:59:42Z +7686,2005-07-28T03:19:23Z,2144,184,2005-08-04T05:17:23Z,2,2020-02-15T06:59:42Z +7687,2005-07-28T03:20:26Z,689,325,2005-08-02T05:48:26Z,2,2020-02-15T06:59:42Z +7688,2005-07-28T03:20:47Z,1179,491,2005-08-06T06:07:47Z,2,2020-02-15T06:59:42Z +7689,2005-07-28T03:21:24Z,1803,253,2005-07-31T08:01:24Z,2,2020-02-15T06:59:42Z +7690,2005-07-28T03:26:21Z,1076,150,2005-07-29T00:08:21Z,1,2020-02-15T06:59:42Z +7691,2005-07-28T03:30:09Z,1579,112,2005-07-29T21:31:09Z,1,2020-02-15T06:59:42Z +7692,2005-07-28T03:30:21Z,267,392,2005-07-30T22:25:21Z,1,2020-02-15T06:59:42Z +7693,2005-07-28T03:31:22Z,2479,148,2005-07-31T06:42:22Z,2,2020-02-15T06:59:42Z +7694,2005-07-28T03:39:25Z,2892,538,2005-07-31T05:47:25Z,1,2020-02-15T06:59:42Z +7695,2005-07-28T03:41:13Z,2742,323,2005-08-06T05:06:13Z,2,2020-02-15T06:59:42Z +7696,2005-07-28T03:41:35Z,3463,56,2005-08-06T05:48:35Z,2,2020-02-15T06:59:42Z +7697,2005-07-28T03:43:45Z,3966,377,2005-08-03T07:55:45Z,2,2020-02-15T06:59:42Z +7698,2005-07-28T03:44:14Z,3650,561,2005-08-04T03:44:14Z,2,2020-02-15T06:59:42Z +7699,2005-07-28T03:52:21Z,4332,53,2005-08-01T05:00:21Z,2,2020-02-15T06:59:42Z +7700,2005-07-28T03:54:14Z,3546,124,2005-08-05T06:20:14Z,2,2020-02-15T06:59:42Z +7701,2005-07-28T03:54:28Z,1604,306,2005-08-01T08:39:28Z,2,2020-02-15T06:59:42Z +7702,2005-07-28T03:56:05Z,253,349,2005-07-31T03:29:05Z,1,2020-02-15T06:59:42Z +7703,2005-07-28T03:59:21Z,2150,3,2005-08-05T08:52:21Z,1,2020-02-15T06:59:42Z +7704,2005-07-28T04:02:13Z,2342,265,2005-08-04T00:51:13Z,1,2020-02-15T06:59:42Z +7705,2005-07-28T04:02:58Z,1072,22,2005-08-05T01:19:58Z,2,2020-02-15T06:59:42Z +7706,2005-07-28T04:03:17Z,994,263,2005-07-29T22:16:17Z,2,2020-02-15T06:59:42Z +7707,2005-07-28T04:07:47Z,2563,232,2005-07-29T02:02:47Z,1,2020-02-15T06:59:42Z +7708,2005-07-28T04:19:15Z,398,363,2005-08-04T04:41:15Z,1,2020-02-15T06:59:42Z +7709,2005-07-28T04:22:14Z,3800,81,2005-07-31T09:18:14Z,2,2020-02-15T06:59:42Z +7710,2005-07-28T04:24:07Z,3716,77,2005-08-03T22:49:07Z,2,2020-02-15T06:59:42Z +7711,2005-07-28T04:26:42Z,2695,426,2005-07-29T07:30:42Z,2,2020-02-15T06:59:42Z +7712,2005-07-28T04:29:53Z,3256,361,2005-08-02T00:57:53Z,2,2020-02-15T06:59:42Z +7713,2005-07-28T04:32:14Z,2018,572,2005-08-03T04:30:14Z,2,2020-02-15T06:59:42Z +7714,2005-07-28T04:32:30Z,940,70,2005-08-02T07:10:30Z,2,2020-02-15T06:59:42Z +7715,2005-07-28T04:32:38Z,3210,512,2005-08-05T00:37:38Z,2,2020-02-15T06:59:42Z +7716,2005-07-28T04:33:15Z,1493,284,2005-08-04T00:08:15Z,2,2020-02-15T06:59:42Z +7717,2005-07-28T04:33:54Z,730,459,2005-07-30T02:46:54Z,2,2020-02-15T06:59:42Z +7718,2005-07-28T04:37:59Z,3587,4,2005-07-29T09:20:59Z,2,2020-02-15T06:59:42Z +7719,2005-07-28T04:39:09Z,2481,286,2005-08-05T03:15:09Z,1,2020-02-15T06:59:42Z +7720,2005-07-28T04:41:44Z,185,520,2005-08-04T06:51:44Z,2,2020-02-15T06:59:42Z +7721,2005-07-28T04:42:58Z,2228,83,2005-07-31T07:52:58Z,1,2020-02-15T06:59:42Z +7722,2005-07-28T04:44:58Z,3828,309,2005-07-30T01:29:58Z,1,2020-02-15T06:59:42Z +7723,2005-07-28T04:45:37Z,3263,147,2005-07-30T09:03:37Z,2,2020-02-15T06:59:42Z +7724,2005-07-28T04:46:30Z,346,3,2005-08-04T08:41:30Z,1,2020-02-15T06:59:42Z +7725,2005-07-28T04:47:14Z,1922,326,2005-08-04T09:03:14Z,1,2020-02-15T06:59:42Z +7726,2005-07-28T04:52:19Z,2578,219,2005-08-04T09:05:19Z,1,2020-02-15T06:59:42Z +7727,2005-07-28T04:52:43Z,2274,123,2005-08-03T01:12:43Z,2,2020-02-15T06:59:42Z +7728,2005-07-28T04:56:33Z,492,130,2005-07-31T07:54:33Z,1,2020-02-15T06:59:42Z +7729,2005-07-28T04:57:57Z,1491,89,2005-07-30T09:38:57Z,1,2020-02-15T06:59:42Z +7730,2005-07-28T04:59:48Z,3118,155,2005-08-04T04:35:48Z,2,2020-02-15T06:59:42Z +7731,2005-07-28T05:01:18Z,1533,413,2005-07-29T02:22:18Z,1,2020-02-15T06:59:42Z +7732,2005-07-28T05:03:32Z,3597,158,2005-07-29T10:20:32Z,1,2020-02-15T06:59:42Z +7733,2005-07-28T05:04:47Z,10,82,2005-08-05T05:12:47Z,2,2020-02-15T06:59:42Z +7734,2005-07-28T05:08:44Z,2726,135,2005-07-30T09:42:44Z,2,2020-02-15T06:59:42Z +7735,2005-07-28T05:09:56Z,3949,372,2005-07-31T23:34:56Z,2,2020-02-15T06:59:42Z +7736,2005-07-28T05:12:04Z,4466,205,2005-08-05T02:28:04Z,2,2020-02-15T06:59:42Z +7737,2005-07-28T05:15:03Z,1235,494,2005-08-04T01:24:03Z,1,2020-02-15T06:59:42Z +7738,2005-07-28T05:21:42Z,80,10,2005-08-03T09:46:42Z,2,2020-02-15T06:59:42Z +7739,2005-07-28T05:21:51Z,1554,186,2005-07-30T02:06:51Z,2,2020-02-15T06:59:42Z +7740,2005-07-28T05:23:36Z,3613,395,2005-08-01T02:20:36Z,2,2020-02-15T06:59:42Z +7741,2005-07-28T05:25:55Z,3917,591,2005-08-02T02:40:55Z,1,2020-02-15T06:59:42Z +7742,2005-07-28T05:33:16Z,1808,49,2005-08-06T01:04:16Z,2,2020-02-15T06:59:42Z +7743,2005-07-28T05:36:13Z,2883,210,2005-08-03T11:28:13Z,2,2020-02-15T06:59:42Z +7744,2005-07-28T05:38:20Z,1863,288,2005-07-31T11:00:20Z,1,2020-02-15T06:59:42Z +7745,2005-07-28T05:46:28Z,1014,285,2005-08-06T07:44:28Z,2,2020-02-15T06:59:42Z +7746,2005-07-28T05:48:56Z,176,299,2005-08-04T07:33:56Z,1,2020-02-15T06:59:42Z +7747,2005-07-28T05:50:11Z,1775,78,2005-08-03T09:51:11Z,1,2020-02-15T06:59:42Z +7748,2005-07-28T05:52:23Z,3523,415,2005-07-31T01:35:23Z,2,2020-02-15T06:59:42Z +7749,2005-07-28T05:53:36Z,3585,232,2005-08-01T03:49:36Z,1,2020-02-15T06:59:42Z +7750,2005-07-28T05:55:30Z,820,220,2005-08-06T04:32:30Z,2,2020-02-15T06:59:42Z +7751,2005-07-28T05:56:13Z,4425,176,2005-08-05T08:08:13Z,1,2020-02-15T06:59:42Z +7752,2005-07-28T06:01:00Z,2218,209,2005-08-03T06:09:00Z,1,2020-02-15T06:59:42Z +7753,2005-07-28T06:09:19Z,3071,531,2005-08-06T06:17:19Z,1,2020-02-15T06:59:42Z +7754,2005-07-28T06:10:55Z,1981,138,2005-07-29T02:46:55Z,1,2020-02-15T06:59:42Z +7755,2005-07-28T06:22:18Z,1247,449,2005-08-06T11:38:18Z,2,2020-02-15T06:59:42Z +7756,2005-07-28T06:22:52Z,1611,469,2005-08-05T11:55:52Z,2,2020-02-15T06:59:42Z +7757,2005-07-28T06:23:00Z,3445,502,2005-07-30T12:02:00Z,1,2020-02-15T06:59:42Z +7758,2005-07-28T06:23:41Z,4333,356,2005-08-03T06:06:41Z,2,2020-02-15T06:59:42Z +7759,2005-07-28T06:28:45Z,3381,405,2005-08-03T11:38:45Z,1,2020-02-15T06:59:42Z +7760,2005-07-28T06:29:45Z,409,307,2005-08-03T01:36:45Z,1,2020-02-15T06:59:42Z +7761,2005-07-28T06:31:45Z,3568,112,2005-07-30T01:36:45Z,2,2020-02-15T06:59:42Z +7762,2005-07-28T06:34:23Z,3234,462,2005-08-05T09:55:23Z,2,2020-02-15T06:59:42Z +7763,2005-07-28T06:35:16Z,2461,116,2005-08-03T02:46:16Z,2,2020-02-15T06:59:42Z +7764,2005-07-28T06:40:05Z,3537,142,2005-07-30T02:51:05Z,2,2020-02-15T06:59:42Z +7765,2005-07-28T06:40:33Z,4098,294,2005-07-31T01:25:33Z,1,2020-02-15T06:59:42Z +7766,2005-07-28T06:41:57Z,2774,292,2005-08-06T11:21:57Z,2,2020-02-15T06:59:42Z +7767,2005-07-28T06:42:02Z,329,139,2005-08-05T11:19:02Z,2,2020-02-15T06:59:42Z +7768,2005-07-28T06:44:03Z,2450,123,2005-07-29T09:46:03Z,1,2020-02-15T06:59:42Z +7769,2005-07-28T06:45:23Z,3250,30,2005-07-30T12:18:23Z,1,2020-02-15T06:59:42Z +7770,2005-07-28T06:49:35Z,1486,507,2005-08-06T08:16:35Z,1,2020-02-15T06:59:42Z +7771,2005-07-28T06:52:12Z,1003,175,2005-07-30T12:48:12Z,1,2020-02-15T06:59:42Z +7772,2005-07-28T06:59:09Z,986,552,2005-08-01T10:49:09Z,1,2020-02-15T06:59:42Z +7773,2005-07-28T07:02:17Z,4143,380,2005-07-30T04:16:17Z,2,2020-02-15T06:59:42Z +7774,2005-07-28T07:03:25Z,3483,259,2005-08-03T02:05:25Z,1,2020-02-15T06:59:42Z +7775,2005-07-28T07:04:36Z,3795,475,2005-08-03T06:36:36Z,2,2020-02-15T06:59:42Z +7776,2005-07-28T07:04:36Z,4170,385,2005-08-01T09:32:36Z,1,2020-02-15T06:59:42Z +7777,2005-07-28T07:04:42Z,4422,287,2005-07-29T01:57:42Z,1,2020-02-15T06:59:42Z +7778,2005-07-28T07:10:11Z,1044,248,2005-08-05T05:09:11Z,1,2020-02-15T06:59:42Z +7779,2005-07-28T07:11:11Z,3663,414,2005-07-30T11:12:11Z,1,2020-02-15T06:59:42Z +7780,2005-07-28T07:11:55Z,3069,236,2005-08-06T05:41:55Z,1,2020-02-15T06:59:42Z +7781,2005-07-28T07:13:20Z,541,539,2005-08-06T05:43:20Z,2,2020-02-15T06:59:42Z +7782,2005-07-28T07:13:40Z,3770,199,2005-08-05T06:50:40Z,1,2020-02-15T06:59:42Z +7783,2005-07-28T07:14:43Z,3817,581,2005-08-01T05:03:43Z,2,2020-02-15T06:59:42Z +7784,2005-07-28T07:15:32Z,3611,505,2005-08-06T05:00:32Z,1,2020-02-15T06:59:42Z +7785,2005-07-28T07:16:11Z,4277,460,2005-08-02T03:43:11Z,1,2020-02-15T06:59:42Z +7786,2005-07-28T07:18:26Z,2285,222,2005-07-29T03:00:26Z,1,2020-02-15T06:59:42Z +7787,2005-07-28T07:19:02Z,2191,203,2005-08-06T02:38:02Z,2,2020-02-15T06:59:42Z +7788,2005-07-28T07:21:55Z,95,487,2005-08-03T06:33:55Z,1,2020-02-15T06:59:42Z +7789,2005-07-28T07:22:07Z,2837,426,2005-08-06T10:47:07Z,1,2020-02-15T06:59:42Z +7790,2005-07-28T07:22:35Z,2327,189,2005-07-30T02:59:35Z,1,2020-02-15T06:59:42Z +7791,2005-07-28T07:22:51Z,822,514,2005-07-30T03:09:51Z,1,2020-02-15T06:59:42Z +7792,2005-07-28T07:24:02Z,3736,236,2005-08-04T11:13:02Z,1,2020-02-15T06:59:42Z +7793,2005-07-28T07:26:14Z,24,32,2005-08-03T07:45:14Z,1,2020-02-15T06:59:42Z +7794,2005-07-28T07:28:03Z,4509,510,2005-08-06T12:32:03Z,2,2020-02-15T06:59:42Z +7795,2005-07-28T07:28:16Z,1278,38,2005-07-31T12:03:16Z,1,2020-02-15T06:59:42Z +7796,2005-07-28T07:39:39Z,622,419,2005-08-02T05:34:39Z,2,2020-02-15T06:59:42Z +7797,2005-07-28T07:41:07Z,4180,370,2005-07-31T04:13:07Z,1,2020-02-15T06:59:42Z +7798,2005-07-28T07:41:59Z,3281,236,2005-07-31T12:36:59Z,1,2020-02-15T06:59:42Z +7799,2005-07-28T07:42:09Z,2163,384,2005-08-02T10:02:09Z,2,2020-02-15T06:59:42Z +7800,2005-07-28T07:50:59Z,3386,499,2005-07-29T07:31:59Z,2,2020-02-15T06:59:42Z +7801,2005-07-28T07:51:56Z,2052,9,2005-07-30T12:18:56Z,1,2020-02-15T06:59:42Z +7802,2005-07-28T07:51:57Z,1108,298,2005-07-29T09:32:57Z,1,2020-02-15T06:59:42Z +7803,2005-07-28T07:52:13Z,3438,449,2005-08-03T13:35:13Z,1,2020-02-15T06:59:42Z +7804,2005-07-28T07:56:00Z,592,249,2005-07-30T10:33:00Z,2,2020-02-15T06:59:42Z +7805,2005-07-28T07:56:41Z,3204,366,2005-08-04T06:53:41Z,1,2020-02-15T06:59:42Z +7806,2005-07-28T07:58:17Z,4317,440,2005-08-06T10:15:17Z,1,2020-02-15T06:59:42Z +7807,2005-07-28T07:58:27Z,2204,504,2005-08-01T02:48:27Z,2,2020-02-15T06:59:42Z +7808,2005-07-28T07:58:56Z,4052,327,2005-08-02T10:49:56Z,1,2020-02-15T06:59:42Z +7809,2005-07-28T07:59:46Z,4150,94,2005-08-02T02:56:46Z,1,2020-02-15T06:59:42Z +7810,2005-07-28T08:00:38Z,30,537,2005-08-02T06:14:38Z,2,2020-02-15T06:59:42Z +7811,2005-07-28T08:06:01Z,3891,347,2005-07-30T10:08:01Z,2,2020-02-15T06:59:42Z +7812,2005-07-28T08:06:52Z,4556,237,2005-07-31T09:57:52Z,2,2020-02-15T06:59:42Z +7813,2005-07-28T08:08:27Z,4216,411,2005-07-30T03:08:27Z,2,2020-02-15T06:59:42Z +7814,2005-07-28T08:09:48Z,2662,258,2005-08-01T13:14:48Z,2,2020-02-15T06:59:42Z +7815,2005-07-28T08:14:11Z,3551,300,2005-07-30T02:34:11Z,2,2020-02-15T06:59:42Z +7816,2005-07-28T08:14:12Z,1422,283,2005-07-30T08:00:12Z,2,2020-02-15T06:59:42Z +7817,2005-07-28T08:20:55Z,600,259,2005-07-30T11:55:55Z,1,2020-02-15T06:59:42Z +7818,2005-07-28T08:25:00Z,1672,301,2005-07-29T14:07:00Z,1,2020-02-15T06:59:42Z +7819,2005-07-28T08:27:14Z,3182,100,2005-08-02T12:34:14Z,2,2020-02-15T06:59:42Z +7820,2005-07-28T08:28:51Z,4475,459,2005-08-05T10:00:51Z,1,2020-02-15T06:59:42Z +7821,2005-07-28T08:31:23Z,1184,433,2005-08-03T05:08:23Z,2,2020-02-15T06:59:42Z +7822,2005-07-28T08:31:45Z,1428,156,2005-07-31T11:06:45Z,1,2020-02-15T06:59:42Z +7823,2005-07-28T08:32:53Z,84,428,2005-08-06T11:59:53Z,1,2020-02-15T06:59:42Z +7824,2005-07-28T08:34:47Z,2241,153,2005-08-05T09:43:47Z,2,2020-02-15T06:59:42Z +7825,2005-07-28T08:34:57Z,4340,348,2005-08-06T02:45:57Z,1,2020-02-15T06:59:42Z +7826,2005-07-28T08:35:51Z,1473,214,2005-08-05T07:57:51Z,2,2020-02-15T06:59:42Z +7827,2005-07-28T08:37:22Z,659,422,2005-07-31T04:27:22Z,1,2020-02-15T06:59:42Z +7828,2005-07-28T08:40:46Z,1710,212,2005-07-30T14:22:46Z,1,2020-02-15T06:59:42Z +7829,2005-07-28T08:43:39Z,111,5,2005-08-04T14:33:39Z,1,2020-02-15T06:59:42Z +7830,2005-07-28T08:43:49Z,4492,144,2005-08-04T09:30:49Z,2,2020-02-15T06:59:42Z +7831,2005-07-28T08:44:21Z,4436,499,2005-07-30T03:25:21Z,2,2020-02-15T06:59:42Z +7832,2005-07-28T08:46:11Z,284,92,2005-08-04T06:55:11Z,1,2020-02-15T06:59:42Z +7833,2005-07-28T08:46:14Z,1166,263,2005-08-04T06:13:14Z,1,2020-02-15T06:59:42Z +7834,2005-07-28T08:46:43Z,4124,278,2005-07-31T07:09:43Z,2,2020-02-15T06:59:42Z +7835,2005-07-28T08:49:39Z,43,547,2005-08-02T07:16:39Z,2,2020-02-15T06:59:42Z +7836,2005-07-28T08:55:27Z,1770,481,2005-08-05T09:35:27Z,1,2020-02-15T06:59:42Z +7837,2005-07-28T08:58:32Z,115,374,2005-07-29T14:11:32Z,1,2020-02-15T06:59:42Z +7838,2005-07-28T09:00:21Z,2222,550,2005-07-29T05:52:21Z,1,2020-02-15T06:59:42Z +7839,2005-07-28T09:01:13Z,914,518,2005-08-04T11:46:13Z,1,2020-02-15T06:59:42Z +7840,2005-07-28T09:03:02Z,2899,482,2005-08-06T06:15:02Z,1,2020-02-15T06:59:42Z +7841,2005-07-28T09:04:45Z,1092,1,2005-07-30T12:37:45Z,2,2020-02-15T06:59:42Z +7842,2005-07-28T09:10:06Z,2447,276,2005-08-04T06:52:06Z,2,2020-02-15T06:59:42Z +7843,2005-07-28T09:10:22Z,3962,75,2005-08-01T11:27:22Z,2,2020-02-15T06:59:42Z +7844,2005-07-28T09:16:19Z,4220,187,2005-08-05T14:06:19Z,2,2020-02-15T06:59:42Z +7845,2005-07-28T09:18:07Z,38,352,2005-08-04T10:23:07Z,2,2020-02-15T06:59:42Z +7846,2005-07-28T09:21:18Z,4201,309,2005-08-06T07:10:18Z,2,2020-02-15T06:59:42Z +7847,2005-07-28T09:23:14Z,3602,323,2005-08-02T11:02:14Z,2,2020-02-15T06:59:42Z +7848,2005-07-28T09:24:31Z,162,509,2005-08-05T05:11:31Z,2,2020-02-15T06:59:42Z +7849,2005-07-28T09:30:02Z,996,423,2005-08-06T12:41:02Z,2,2020-02-15T06:59:42Z +7850,2005-07-28T09:31:13Z,2913,118,2005-08-02T14:06:13Z,2,2020-02-15T06:59:42Z +7851,2005-07-28T09:31:58Z,3596,253,2005-08-04T09:58:58Z,2,2020-02-15T06:59:42Z +7852,2005-07-28T09:34:29Z,3462,123,2005-07-30T05:48:29Z,1,2020-02-15T06:59:42Z +7853,2005-07-28T09:36:38Z,4053,318,2005-07-29T15:01:38Z,1,2020-02-15T06:59:42Z +7854,2005-07-28T09:42:31Z,3531,84,2005-08-02T09:25:31Z,1,2020-02-15T06:59:42Z +7855,2005-07-28T09:43:02Z,2474,288,2005-07-30T12:57:02Z,2,2020-02-15T06:59:42Z +7856,2005-07-28T09:48:24Z,2376,375,2005-07-29T09:49:24Z,2,2020-02-15T06:59:42Z +7857,2005-07-28T09:49:40Z,4027,500,2005-08-01T05:34:40Z,2,2020-02-15T06:59:42Z +7858,2005-07-28T09:50:18Z,992,144,2005-08-05T14:33:18Z,1,2020-02-15T06:59:42Z +7859,2005-07-28T09:57:17Z,3392,547,2005-08-04T06:04:17Z,1,2020-02-15T06:59:42Z +7860,2005-07-28T09:58:02Z,2400,241,2005-08-05T06:04:02Z,1,2020-02-15T06:59:42Z +7861,2005-07-28T10:02:01Z,1781,208,2005-08-06T13:17:01Z,1,2020-02-15T06:59:42Z +7862,2005-07-28T10:02:25Z,2507,299,2005-08-05T13:10:25Z,1,2020-02-15T06:59:42Z +7863,2005-07-28T10:05:46Z,1212,182,2005-07-29T14:42:46Z,1,2020-02-15T06:59:42Z +7864,2005-07-28T10:06:10Z,1238,20,2005-08-04T08:38:10Z,1,2020-02-15T06:59:42Z +7865,2005-07-28T10:07:04Z,2334,148,2005-08-06T08:16:04Z,2,2020-02-15T06:59:42Z +7866,2005-07-28T10:08:01Z,1602,101,2005-08-04T09:29:01Z,2,2020-02-15T06:59:42Z +7867,2005-07-28T10:08:54Z,713,297,2005-07-30T10:26:54Z,2,2020-02-15T06:59:42Z +7868,2005-07-28T10:08:55Z,3589,43,2005-07-30T11:52:55Z,1,2020-02-15T06:59:42Z +7869,2005-07-28T10:13:15Z,3005,298,2005-08-03T12:58:15Z,1,2020-02-15T06:59:42Z +7870,2005-07-28T10:16:03Z,970,240,2005-07-31T16:06:03Z,1,2020-02-15T06:59:42Z +7871,2005-07-28T10:16:37Z,3990,491,2005-08-05T11:24:37Z,2,2020-02-15T06:59:42Z +7872,2005-07-28T10:18:16Z,826,66,2005-07-31T10:57:16Z,1,2020-02-15T06:59:42Z +7873,2005-07-28T10:19:46Z,2947,82,2005-07-31T04:43:46Z,2,2020-02-15T06:59:42Z +7874,2005-07-28T10:21:52Z,2981,86,2005-08-06T16:19:52Z,1,2020-02-15T06:59:42Z +7875,2005-07-28T10:23:48Z,3693,504,2005-08-02T12:09:48Z,1,2020-02-15T06:59:42Z +7876,2005-07-28T10:24:22Z,3563,577,2005-08-04T07:15:22Z,1,2020-02-15T06:59:42Z +7877,2005-07-28T10:25:36Z,2576,65,2005-08-05T12:46:36Z,1,2020-02-15T06:59:42Z +7878,2005-07-28T10:27:10Z,1564,141,2005-07-29T11:22:10Z,1,2020-02-15T06:59:42Z +7879,2005-07-28T10:27:46Z,1969,125,2005-07-31T07:48:46Z,1,2020-02-15T06:59:42Z +7880,2005-07-28T10:30:37Z,3670,182,2005-08-03T08:05:37Z,2,2020-02-15T06:59:42Z +7881,2005-07-28T10:33:22Z,533,249,2005-08-02T12:10:22Z,1,2020-02-15T06:59:42Z +7882,2005-07-28T10:33:42Z,3922,516,2005-07-29T13:49:42Z,1,2020-02-15T06:59:42Z +7883,2005-07-28T10:37:20Z,447,526,2005-08-02T05:08:20Z,1,2020-02-15T06:59:42Z +7884,2005-07-28T10:37:24Z,3871,502,2005-07-31T10:31:24Z,1,2020-02-15T06:59:42Z +7885,2005-07-28T10:37:41Z,4294,260,2005-08-05T07:56:41Z,1,2020-02-15T06:59:42Z +7886,2005-07-28T10:37:55Z,237,352,2005-08-04T13:22:55Z,2,2020-02-15T06:59:42Z +7887,2005-07-28T10:40:12Z,2820,253,2005-08-02T06:09:12Z,1,2020-02-15T06:59:42Z +7888,2005-07-28T10:40:24Z,545,378,2005-08-01T16:18:24Z,1,2020-02-15T06:59:42Z +7889,2005-07-28T10:43:21Z,3123,416,2005-07-30T09:11:21Z,1,2020-02-15T06:59:42Z +7890,2005-07-28T10:43:40Z,3443,553,2005-07-31T06:07:40Z,1,2020-02-15T06:59:42Z +7891,2005-07-28T10:43:56Z,3637,560,2005-08-05T14:04:56Z,2,2020-02-15T06:59:42Z +7892,2005-07-28T10:46:58Z,2717,397,2005-07-30T16:03:58Z,1,2020-02-15T06:59:42Z +7893,2005-07-28T10:49:27Z,3058,479,2005-08-02T06:46:27Z,1,2020-02-15T06:59:42Z +7894,2005-07-28T10:53:58Z,3532,330,2005-08-02T13:42:58Z,2,2020-02-15T06:59:42Z +7895,2005-07-28T10:57:15Z,900,67,2005-08-02T15:10:15Z,2,2020-02-15T06:59:42Z +7896,2005-07-28T11:00:58Z,3561,389,2005-08-04T14:30:58Z,2,2020-02-15T06:59:42Z +7897,2005-07-28T11:01:51Z,1396,75,2005-07-31T13:13:51Z,1,2020-02-15T06:59:42Z +7898,2005-07-28T11:08:22Z,2680,499,2005-08-03T12:28:22Z,1,2020-02-15T06:59:42Z +7899,2005-07-28T11:10:12Z,4130,452,2005-08-02T13:20:12Z,2,2020-02-15T06:59:42Z +7900,2005-07-28T11:11:33Z,2781,154,2005-08-05T06:29:33Z,2,2020-02-15T06:59:42Z +7901,2005-07-28T11:12:12Z,4435,280,2005-08-01T08:13:12Z,1,2020-02-15T06:59:42Z +7902,2005-07-28T11:14:19Z,3066,356,2005-07-30T09:01:19Z,2,2020-02-15T06:59:42Z +7903,2005-07-28T11:20:36Z,2767,588,2005-07-31T09:16:36Z,1,2020-02-15T06:59:42Z +7904,2005-07-28T11:25:39Z,316,477,2005-08-06T08:22:39Z,2,2020-02-15T06:59:42Z +7905,2005-07-28T11:26:57Z,4287,455,2005-08-02T06:14:57Z,1,2020-02-15T06:59:42Z +7906,2005-07-28T11:31:42Z,1216,85,2005-08-01T11:56:42Z,2,2020-02-15T06:59:42Z +7907,2005-07-28T11:32:00Z,3252,433,2005-07-30T15:27:00Z,1,2020-02-15T06:59:42Z +7908,2005-07-28T11:32:57Z,3646,360,2005-08-03T13:30:57Z,2,2020-02-15T06:59:42Z +7909,2005-07-28T11:38:08Z,3355,210,2005-07-29T13:54:08Z,1,2020-02-15T06:59:42Z +7910,2005-07-28T11:44:56Z,2044,480,2005-08-05T14:37:56Z,2,2020-02-15T06:59:42Z +7911,2005-07-28T11:46:45Z,390,3,2005-07-29T07:19:45Z,1,2020-02-15T06:59:42Z +7912,2005-07-28T11:46:58Z,745,127,2005-08-05T12:50:58Z,1,2020-02-15T06:59:42Z +7913,2005-07-28T11:47:23Z,4001,459,2005-08-05T06:36:23Z,1,2020-02-15T06:59:42Z +7914,2005-07-28T11:48:08Z,2796,469,2005-07-30T14:14:08Z,1,2020-02-15T06:59:42Z +7915,2005-07-28T11:49:46Z,2088,186,2005-08-04T12:21:46Z,2,2020-02-15T06:59:42Z +7916,2005-07-28T11:49:53Z,3877,13,2005-07-29T15:01:53Z,1,2020-02-15T06:59:42Z +7917,2005-07-28T11:56:57Z,2071,416,2005-07-29T14:06:57Z,1,2020-02-15T06:59:42Z +7918,2005-07-28T11:58:53Z,63,473,2005-08-04T12:08:53Z,2,2020-02-15T06:59:42Z +7919,2005-07-28T11:59:45Z,2138,36,2005-08-06T11:19:45Z,1,2020-02-15T06:59:42Z +7920,2005-07-28T12:01:19Z,66,48,2005-08-05T07:08:19Z,1,2020-02-15T06:59:42Z +7921,2005-07-28T12:02:46Z,116,100,2005-08-01T12:08:46Z,2,2020-02-15T06:59:42Z +7922,2005-07-28T12:05:25Z,817,125,2005-08-02T12:13:25Z,2,2020-02-15T06:59:42Z +7923,2005-07-28T12:08:29Z,2273,458,2005-08-04T12:30:29Z,1,2020-02-15T06:59:42Z +7924,2005-07-28T12:08:53Z,656,97,2005-07-30T06:45:53Z,2,2020-02-15T06:59:42Z +7925,2005-07-28T12:10:02Z,1763,500,2005-08-02T15:50:02Z,1,2020-02-15T06:59:42Z +7926,2005-07-28T12:13:02Z,180,78,2005-08-05T08:54:02Z,1,2020-02-15T06:59:42Z +7927,2005-07-28T12:13:42Z,1263,27,2005-08-05T12:02:42Z,1,2020-02-15T06:59:42Z +7928,2005-07-28T12:15:51Z,912,473,2005-08-05T06:34:51Z,1,2020-02-15T06:59:42Z +7929,2005-07-28T12:16:40Z,2652,307,2005-07-31T13:09:40Z,2,2020-02-15T06:59:42Z +7930,2005-07-28T12:21:08Z,4181,320,2005-07-30T11:56:08Z,1,2020-02-15T06:59:42Z +7931,2005-07-28T12:23:41Z,1923,326,2005-08-06T09:49:41Z,2,2020-02-15T06:59:42Z +7932,2005-07-28T12:24:54Z,3738,462,2005-07-30T11:33:54Z,1,2020-02-15T06:59:42Z +7933,2005-07-28T12:27:27Z,3175,297,2005-07-29T10:34:27Z,2,2020-02-15T06:59:42Z +7934,2005-07-28T12:33:10Z,2642,332,2005-08-04T07:40:10Z,2,2020-02-15T06:59:42Z +7935,2005-07-28T12:33:17Z,3664,462,2005-08-04T14:40:17Z,2,2020-02-15T06:59:42Z +7936,2005-07-28T12:33:21Z,563,520,2005-07-30T13:31:21Z,2,2020-02-15T06:59:42Z +7937,2005-07-28T12:38:22Z,3944,323,2005-07-29T09:19:22Z,1,2020-02-15T06:59:42Z +7938,2005-07-28T12:39:11Z,2579,114,2005-08-04T16:56:11Z,1,2020-02-15T06:59:42Z +7939,2005-07-28T12:45:47Z,2004,37,2005-07-30T18:32:47Z,2,2020-02-15T06:59:42Z +7940,2005-07-28T12:46:47Z,901,409,2005-07-29T06:46:47Z,2,2020-02-15T06:59:42Z +7941,2005-07-28T12:47:20Z,439,566,2005-08-01T08:46:20Z,1,2020-02-15T06:59:42Z +7942,2005-07-28T12:49:44Z,1636,56,2005-07-31T18:07:44Z,2,2020-02-15T06:59:42Z +7943,2005-07-28T12:50:55Z,2914,346,2005-08-04T11:29:55Z,2,2020-02-15T06:59:42Z +7944,2005-07-28T12:51:22Z,3148,504,2005-07-30T12:19:22Z,1,2020-02-15T06:59:42Z +7945,2005-07-28T12:53:58Z,3326,316,2005-08-03T14:04:58Z,1,2020-02-15T06:59:42Z +7946,2005-07-28T13:01:22Z,99,90,2005-08-03T15:27:22Z,2,2020-02-15T06:59:42Z +7947,2005-07-28T13:05:50Z,2504,279,2005-08-02T11:16:50Z,2,2020-02-15T06:59:42Z +7948,2005-07-28T13:06:16Z,215,589,2005-08-05T08:38:16Z,1,2020-02-15T06:59:42Z +7949,2005-07-28T13:07:24Z,2145,487,2005-08-02T09:41:24Z,1,2020-02-15T06:59:42Z +7950,2005-07-28T13:21:00Z,2286,122,2005-08-05T18:47:00Z,2,2020-02-15T06:59:42Z +7951,2005-07-28T13:21:16Z,3979,237,2005-08-06T08:21:16Z,1,2020-02-15T06:59:42Z +7952,2005-07-28T13:23:49Z,3313,158,2005-08-01T08:50:49Z,1,2020-02-15T06:59:42Z +7953,2005-07-28T13:24:32Z,4471,319,2005-08-05T16:09:32Z,2,2020-02-15T06:59:42Z +7954,2005-07-28T13:25:05Z,3735,145,2005-07-29T18:50:05Z,2,2020-02-15T06:59:42Z +7955,2005-07-28T13:31:36Z,1519,522,2005-07-30T10:03:36Z,1,2020-02-15T06:59:42Z +7956,2005-07-28T13:32:17Z,4335,118,2005-08-06T14:51:17Z,2,2020-02-15T06:59:42Z +7957,2005-07-28T13:34:08Z,1623,78,2005-08-05T07:58:08Z,1,2020-02-15T06:59:42Z +7958,2005-07-28T13:34:34Z,421,593,2005-07-29T16:03:34Z,1,2020-02-15T06:59:42Z +7959,2005-07-28T13:43:20Z,1549,178,2005-08-02T12:13:20Z,2,2020-02-15T06:59:42Z +7960,2005-07-28T13:47:08Z,2718,324,2005-08-03T15:17:08Z,1,2020-02-15T06:59:42Z +7961,2005-07-28T13:47:21Z,3284,45,2005-08-01T09:33:21Z,1,2020-02-15T06:59:42Z +7962,2005-07-28T13:48:09Z,1746,126,2005-08-03T19:21:09Z,1,2020-02-15T06:59:42Z +7963,2005-07-28T13:48:38Z,921,247,2005-08-06T19:37:38Z,2,2020-02-15T06:59:42Z +7964,2005-07-28T13:49:58Z,2528,574,2005-08-03T10:03:58Z,2,2020-02-15T06:59:42Z +7965,2005-07-28T13:52:57Z,3671,134,2005-07-29T14:54:57Z,1,2020-02-15T06:59:42Z +7966,2005-07-28T13:53:54Z,2514,91,2005-08-06T15:32:54Z,1,2020-02-15T06:59:42Z +7967,2005-07-28T13:56:51Z,2040,187,2005-08-03T19:38:51Z,1,2020-02-15T06:59:42Z +7968,2005-07-28T13:57:35Z,3865,597,2005-08-04T13:40:35Z,1,2020-02-15T06:59:42Z +7969,2005-07-28T13:57:37Z,2224,123,2005-08-04T19:31:37Z,1,2020-02-15T06:59:42Z +7970,2005-07-28T13:58:38Z,998,507,2005-08-02T12:27:38Z,1,2020-02-15T06:59:42Z +7971,2005-07-28T14:00:47Z,1910,445,2005-08-02T10:01:47Z,1,2020-02-15T06:59:42Z +7972,2005-07-28T14:07:46Z,2930,269,2005-08-01T11:28:46Z,2,2020-02-15T06:59:42Z +7973,2005-07-28T14:10:06Z,3936,339,2005-07-29T11:26:06Z,2,2020-02-15T06:59:42Z +7974,2005-07-28T14:11:57Z,2442,380,2005-08-02T19:25:57Z,2,2020-02-15T06:59:42Z +7975,2005-07-28T14:12:47Z,2565,211,2005-08-05T09:18:47Z,1,2020-02-15T06:59:42Z +7976,2005-07-28T14:13:24Z,2296,205,2005-08-05T09:01:24Z,1,2020-02-15T06:59:42Z +7977,2005-07-28T14:15:54Z,3162,389,2005-08-01T18:58:54Z,2,2020-02-15T06:59:42Z +7978,2005-07-28T14:16:14Z,508,431,2005-08-01T12:53:14Z,2,2020-02-15T06:59:42Z +7979,2005-07-28T14:16:30Z,3303,94,2005-08-03T09:39:30Z,2,2020-02-15T06:59:42Z +7980,2005-07-28T14:16:49Z,1019,329,2005-08-05T09:20:49Z,1,2020-02-15T06:59:42Z +7981,2005-07-28T14:18:25Z,90,392,2005-08-04T15:21:25Z,2,2020-02-15T06:59:42Z +7982,2005-07-28T14:19:59Z,668,71,2005-07-29T14:09:59Z,2,2020-02-15T06:59:42Z +7983,2005-07-28T14:23:01Z,1836,115,2005-07-29T11:51:01Z,1,2020-02-15T06:59:42Z +7984,2005-07-28T14:27:51Z,2893,208,2005-08-04T17:34:51Z,1,2020-02-15T06:59:42Z +7985,2005-07-28T14:29:01Z,4022,388,2005-08-03T17:20:01Z,2,2020-02-15T06:59:42Z +7986,2005-07-28T14:30:13Z,1283,395,2005-08-05T09:35:13Z,1,2020-02-15T06:59:42Z +7987,2005-07-28T14:36:52Z,288,443,2005-08-05T16:49:52Z,2,2020-02-15T06:59:42Z +7988,2005-07-28T14:37:18Z,2906,517,2005-08-05T10:53:18Z,1,2020-02-15T06:59:42Z +7989,2005-07-28T14:39:05Z,3196,149,2005-08-05T13:58:05Z,2,2020-02-15T06:59:42Z +7990,2005-07-28T14:43:08Z,188,232,2005-08-01T10:51:08Z,2,2020-02-15T06:59:42Z +7991,2005-07-28T14:45:45Z,1133,59,2005-07-29T15:05:45Z,2,2020-02-15T06:59:42Z +7992,2005-07-28T14:53:06Z,1851,33,2005-07-29T18:17:06Z,1,2020-02-15T06:59:42Z +7993,2005-07-28T14:56:41Z,2926,353,2005-08-01T17:01:41Z,2,2020-02-15T06:59:42Z +7994,2005-07-28T14:56:54Z,2431,21,2005-07-30T09:56:54Z,2,2020-02-15T06:59:42Z +7995,2005-07-28T15:00:09Z,536,89,2005-08-01T12:33:09Z,2,2020-02-15T06:59:42Z +7996,2005-07-28T15:00:49Z,2171,408,2005-08-04T20:58:49Z,2,2020-02-15T06:59:42Z +7997,2005-07-28T15:02:25Z,1845,591,2005-08-04T14:35:25Z,1,2020-02-15T06:59:42Z +7998,2005-07-28T15:08:48Z,1397,598,2005-07-31T16:14:48Z,2,2020-02-15T06:59:42Z +7999,2005-07-28T15:10:14Z,2750,170,2005-08-06T17:08:14Z,2,2020-02-15T06:59:42Z +8000,2005-07-28T15:10:25Z,1644,212,2005-08-06T19:15:25Z,1,2020-02-15T06:59:42Z +8001,2005-07-28T15:10:55Z,2570,10,2005-08-05T18:23:55Z,1,2020-02-15T06:59:42Z +8002,2005-07-28T15:11:00Z,22,449,2005-07-31T15:46:00Z,2,2020-02-15T06:59:42Z +8003,2005-07-28T15:11:27Z,2775,89,2005-08-04T18:35:27Z,1,2020-02-15T06:59:42Z +8004,2005-07-28T15:14:07Z,4428,393,2005-07-30T19:32:07Z,2,2020-02-15T06:59:42Z +8005,2005-07-28T15:15:11Z,670,488,2005-07-29T14:54:11Z,1,2020-02-15T06:59:42Z +8006,2005-07-28T15:15:41Z,3959,109,2005-08-05T19:29:41Z,2,2020-02-15T06:59:42Z +8007,2005-07-28T15:22:27Z,1942,525,2005-07-30T13:06:27Z,2,2020-02-15T06:59:42Z +8008,2005-07-28T15:25:55Z,2093,41,2005-08-04T13:16:55Z,1,2020-02-15T06:59:42Z +8009,2005-07-28T15:25:58Z,337,372,2005-08-04T10:16:58Z,2,2020-02-15T06:59:42Z +8010,2005-07-28T15:26:20Z,68,467,2005-08-04T18:39:20Z,2,2020-02-15T06:59:42Z +8011,2005-07-28T15:26:39Z,4274,497,2005-07-30T13:59:39Z,1,2020-02-15T06:59:42Z +8012,2005-07-28T15:29:00Z,1513,343,2005-08-05T12:28:00Z,2,2020-02-15T06:59:42Z +8013,2005-07-28T15:30:26Z,2074,403,2005-08-05T16:29:26Z,1,2020-02-15T06:59:42Z +8014,2005-07-28T15:32:07Z,2339,11,2005-07-31T20:52:07Z,1,2020-02-15T06:59:42Z +8015,2005-07-28T15:33:03Z,1814,23,2005-07-30T15:32:03Z,2,2020-02-15T06:59:42Z +8016,2005-07-28T15:35:41Z,516,391,2005-07-30T20:06:41Z,2,2020-02-15T06:59:42Z +8017,2005-07-28T15:35:41Z,1764,328,2005-08-01T19:12:41Z,1,2020-02-15T06:59:42Z +8018,2005-07-28T15:36:48Z,4129,377,2005-08-06T20:04:48Z,1,2020-02-15T06:59:42Z +8019,2005-07-28T15:37:43Z,1844,84,2005-08-04T15:40:43Z,2,2020-02-15T06:59:42Z +8020,2005-07-28T15:43:32Z,4459,498,2005-08-05T12:19:32Z,1,2020-02-15T06:59:42Z +8021,2005-07-28T15:45:24Z,1920,501,2005-08-04T10:49:24Z,1,2020-02-15T06:59:42Z +8022,2005-07-28T15:48:56Z,294,314,2005-08-06T13:40:56Z,1,2020-02-15T06:59:42Z +8023,2005-07-28T15:53:29Z,2133,411,2005-07-31T12:26:29Z,1,2020-02-15T06:59:42Z +8024,2005-07-28T15:55:40Z,1735,90,2005-08-02T09:56:40Z,1,2020-02-15T06:59:42Z +8025,2005-07-28T16:03:27Z,2932,421,2005-08-03T21:58:27Z,2,2020-02-15T06:59:42Z +8026,2005-07-28T16:05:38Z,4225,511,2005-07-29T21:28:38Z,2,2020-02-15T06:59:42Z +8027,2005-07-28T16:09:57Z,1335,436,2005-08-05T18:17:57Z,1,2020-02-15T06:59:42Z +8028,2005-07-28T16:11:15Z,2715,137,2005-08-05T15:11:15Z,1,2020-02-15T06:59:42Z +8029,2005-07-28T16:11:21Z,4273,61,2005-08-05T13:52:21Z,1,2020-02-15T06:59:42Z +8030,2005-07-28T16:12:53Z,2633,30,2005-07-31T17:15:53Z,1,2020-02-15T06:59:42Z +8031,2005-07-28T16:15:49Z,2196,40,2005-08-02T18:27:49Z,2,2020-02-15T06:59:42Z +8032,2005-07-28T16:17:00Z,431,230,2005-07-29T13:32:00Z,1,2020-02-15T06:59:42Z +8033,2005-07-28T16:18:23Z,4268,1,2005-07-30T17:56:23Z,1,2020-02-15T06:59:42Z +8034,2005-07-28T16:20:26Z,1997,502,2005-08-04T19:11:26Z,2,2020-02-15T06:59:42Z +8035,2005-07-28T16:23:01Z,1503,14,2005-08-05T10:52:01Z,1,2020-02-15T06:59:42Z +8036,2005-07-28T16:27:43Z,2741,412,2005-08-01T13:41:43Z,2,2020-02-15T06:59:42Z +8037,2005-07-28T16:31:20Z,3973,409,2005-07-31T12:18:20Z,2,2020-02-15T06:59:42Z +8038,2005-07-28T16:32:55Z,1225,30,2005-07-30T21:08:55Z,1,2020-02-15T06:59:42Z +8039,2005-07-28T16:35:16Z,1996,203,2005-07-30T14:49:16Z,1,2020-02-15T06:59:42Z +8040,2005-07-28T16:39:43Z,4543,163,2005-08-02T20:00:43Z,2,2020-02-15T06:59:42Z +8041,2005-07-28T16:39:56Z,763,357,2005-07-30T18:44:56Z,1,2020-02-15T06:59:42Z +8042,2005-07-28T16:45:11Z,4325,14,2005-08-04T17:16:11Z,2,2020-02-15T06:59:42Z +8043,2005-07-28T16:45:44Z,208,577,2005-08-01T12:26:44Z,1,2020-02-15T06:59:42Z +8044,2005-07-28T16:49:12Z,879,442,2005-08-02T22:41:12Z,1,2020-02-15T06:59:42Z +8045,2005-07-28T16:49:38Z,3427,368,2005-08-03T15:42:38Z,1,2020-02-15T06:59:42Z +8046,2005-07-28T16:49:41Z,2873,120,2005-07-31T21:33:41Z,1,2020-02-15T06:59:42Z +8047,2005-07-28T16:49:43Z,2936,292,2005-08-03T14:48:43Z,2,2020-02-15T06:59:42Z +8048,2005-07-28T16:50:26Z,2721,182,2005-08-06T19:20:26Z,1,2020-02-15T06:59:42Z +8049,2005-07-28T16:51:58Z,673,42,2005-07-31T22:18:58Z,1,2020-02-15T06:59:42Z +8050,2005-07-28T16:55:47Z,1864,488,2005-08-02T13:20:47Z,1,2020-02-15T06:59:42Z +8051,2005-07-28T16:56:16Z,4405,192,2005-07-29T22:48:16Z,1,2020-02-15T06:59:42Z +8052,2005-07-28T16:57:31Z,2460,166,2005-08-03T18:03:31Z,2,2020-02-15T06:59:42Z +8053,2005-07-28T16:59:41Z,1511,526,2005-08-03T22:28:41Z,2,2020-02-15T06:59:42Z +8054,2005-07-28T17:02:18Z,1062,225,2005-08-06T11:55:18Z,1,2020-02-15T06:59:42Z +8055,2005-07-28T17:02:32Z,4162,304,2005-07-31T22:05:32Z,2,2020-02-15T06:59:42Z +8056,2005-07-28T17:04:15Z,4018,589,2005-08-03T19:11:15Z,2,2020-02-15T06:59:42Z +8057,2005-07-28T17:07:13Z,4177,483,2005-08-03T16:25:13Z,1,2020-02-15T06:59:42Z +8058,2005-07-28T17:07:49Z,2148,404,2005-08-03T22:57:49Z,1,2020-02-15T06:59:42Z +8059,2005-07-28T17:09:59Z,2611,372,2005-07-31T15:42:59Z,2,2020-02-15T06:59:42Z +8060,2005-07-28T17:10:02Z,3765,577,2005-08-05T17:11:02Z,1,2020-02-15T06:59:42Z +8061,2005-07-28T17:12:53Z,650,467,2005-08-05T13:56:53Z,2,2020-02-15T06:59:42Z +8062,2005-07-28T17:15:06Z,1384,317,2005-07-30T16:56:06Z,2,2020-02-15T06:59:42Z +8063,2005-07-28T17:15:11Z,935,163,2005-08-04T16:45:11Z,1,2020-02-15T06:59:42Z +8064,2005-07-28T17:15:38Z,3788,488,2005-08-04T18:04:38Z,2,2020-02-15T06:59:42Z +8065,2005-07-28T17:15:48Z,413,220,2005-08-04T15:49:48Z,2,2020-02-15T06:59:42Z +8066,2005-07-28T17:20:09Z,3208,462,2005-07-31T18:36:09Z,2,2020-02-15T06:59:42Z +8067,2005-07-28T17:20:17Z,3923,209,2005-07-29T21:55:17Z,1,2020-02-15T06:59:42Z +8068,2005-07-28T17:22:28Z,209,216,2005-07-29T12:24:28Z,2,2020-02-15T06:59:42Z +8069,2005-07-28T17:23:46Z,2822,178,2005-07-30T16:19:46Z,1,2020-02-15T06:59:42Z +8070,2005-07-28T17:26:56Z,1606,89,2005-08-01T17:33:56Z,1,2020-02-15T06:59:42Z +8071,2005-07-28T17:27:48Z,2582,131,2005-08-03T11:48:48Z,2,2020-02-15T06:59:42Z +8072,2005-07-28T17:27:59Z,2347,99,2005-07-30T19:08:59Z,1,2020-02-15T06:59:42Z +8073,2005-07-28T17:29:02Z,630,314,2005-08-01T22:17:02Z,2,2020-02-15T06:59:42Z +8074,2005-07-28T17:33:39Z,1558,1,2005-07-29T20:17:39Z,1,2020-02-15T06:59:42Z +8075,2005-07-28T17:37:28Z,2175,61,2005-07-29T11:56:28Z,2,2020-02-15T06:59:42Z +8076,2005-07-28T17:45:58Z,214,17,2005-08-04T18:07:58Z,2,2020-02-15T06:59:42Z +8077,2005-07-28T17:54:35Z,3253,122,2005-07-29T19:28:35Z,2,2020-02-15T06:59:42Z +8078,2005-07-28T17:54:42Z,3839,407,2005-07-30T18:18:42Z,2,2020-02-15T06:59:42Z +8079,2005-07-28T17:58:36Z,3564,432,2005-07-29T14:48:36Z,2,2020-02-15T06:59:42Z +8080,2005-07-28T18:05:06Z,3035,406,2005-07-29T22:44:06Z,2,2020-02-15T06:59:42Z +8081,2005-07-28T18:06:46Z,4404,362,2005-08-04T18:54:46Z,1,2020-02-15T06:59:42Z +8082,2005-07-28T18:08:02Z,3089,423,2005-08-04T14:33:02Z,2,2020-02-15T06:59:42Z +8083,2005-07-28T18:09:48Z,2187,30,2005-08-04T21:47:48Z,2,2020-02-15T06:59:42Z +8084,2005-07-28T18:11:58Z,911,571,2005-08-03T23:41:58Z,2,2020-02-15T06:59:42Z +8085,2005-07-28T18:13:15Z,3059,552,2005-08-04T13:45:15Z,2,2020-02-15T06:59:42Z +8086,2005-07-28T18:17:14Z,1182,3,2005-07-30T18:22:14Z,2,2020-02-15T06:59:42Z +8087,2005-07-28T18:21:16Z,1913,295,2005-08-03T12:38:16Z,2,2020-02-15T06:59:42Z +8088,2005-07-28T18:23:49Z,2590,343,2005-08-06T23:25:49Z,2,2020-02-15T06:59:42Z +8089,2005-07-28T18:26:47Z,1414,50,2005-08-03T21:28:47Z,1,2020-02-15T06:59:42Z +8090,2005-07-28T18:27:29Z,1336,387,2005-08-02T14:08:29Z,2,2020-02-15T06:59:42Z +8091,2005-07-28T18:27:29Z,3025,126,2005-08-01T19:45:29Z,2,2020-02-15T06:59:42Z +8092,2005-07-28T18:28:07Z,2034,167,2005-07-30T19:17:07Z,2,2020-02-15T06:59:42Z +8093,2005-07-28T18:29:16Z,1427,533,2005-08-05T21:49:16Z,1,2020-02-15T06:59:42Z +8094,2005-07-28T18:30:28Z,4276,432,2005-08-05T17:37:28Z,2,2020-02-15T06:59:42Z +8095,2005-07-28T18:32:40Z,2685,42,2005-08-06T23:45:40Z,1,2020-02-15T06:59:42Z +8096,2005-07-28T18:32:46Z,502,506,2005-08-06T15:00:46Z,1,2020-02-15T06:59:42Z +8097,2005-07-28T18:32:49Z,2719,436,2005-08-06T16:09:49Z,1,2020-02-15T06:59:42Z +8098,2005-07-28T18:34:20Z,1757,41,2005-07-31T19:07:20Z,2,2020-02-15T06:59:42Z +8099,2005-07-28T18:35:12Z,3694,36,2005-07-30T15:44:12Z,2,2020-02-15T06:59:42Z +8100,2005-07-28T18:43:11Z,2859,11,2005-08-02T15:56:11Z,2,2020-02-15T06:59:42Z +8101,2005-07-28T18:47:23Z,731,6,2005-07-31T16:23:23Z,1,2020-02-15T06:59:42Z +8102,2005-07-28T18:49:43Z,4505,237,2005-08-03T23:04:43Z,2,2020-02-15T06:59:42Z +8103,2005-07-28T18:50:14Z,4472,397,2005-08-04T16:53:14Z,1,2020-02-15T06:59:42Z +8104,2005-07-28T18:59:36Z,1080,533,2005-08-03T22:05:36Z,2,2020-02-15T06:59:42Z +8105,2005-07-28T18:59:46Z,1316,314,2005-07-29T22:51:46Z,1,2020-02-15T06:59:42Z +8106,2005-07-28T19:02:46Z,963,137,2005-07-30T20:48:46Z,2,2020-02-15T06:59:42Z +8107,2005-07-28T19:03:16Z,1318,518,2005-08-05T17:18:16Z,2,2020-02-15T06:59:42Z +8108,2005-07-28T19:07:38Z,1600,295,2005-08-03T15:13:38Z,2,2020-02-15T06:59:42Z +8109,2005-07-28T19:07:44Z,652,407,2005-07-31T14:59:44Z,1,2020-02-15T06:59:42Z +8110,2005-07-28T19:07:45Z,1244,225,2005-08-04T22:12:45Z,1,2020-02-15T06:59:42Z +8111,2005-07-28T19:10:03Z,3226,148,2005-07-29T22:25:03Z,1,2020-02-15T06:59:42Z +8112,2005-07-28T19:11:07Z,2444,528,2005-08-03T18:41:07Z,1,2020-02-15T06:59:42Z +8113,2005-07-28T19:14:00Z,4269,541,2005-08-06T00:05:00Z,2,2020-02-15T06:59:42Z +8114,2005-07-28T19:14:06Z,815,509,2005-08-05T13:16:06Z,1,2020-02-15T06:59:42Z +8115,2005-07-28T19:14:17Z,2080,106,2005-08-03T14:58:17Z,2,2020-02-15T06:59:42Z +8116,2005-07-28T19:20:07Z,4497,1,2005-07-29T22:54:07Z,1,2020-02-15T06:59:42Z +8117,2005-07-28T19:20:16Z,1502,300,2005-08-05T23:55:16Z,1,2020-02-15T06:59:42Z +8118,2005-07-28T19:22:22Z,331,566,2005-08-01T22:13:22Z,1,2020-02-15T06:59:42Z +8119,2005-07-28T19:23:15Z,1542,398,2005-08-04T15:53:15Z,2,2020-02-15T06:59:42Z +8120,2005-07-28T19:24:24Z,3993,235,2005-07-31T14:31:24Z,2,2020-02-15T06:59:42Z +8121,2005-07-28T19:25:45Z,2229,363,2005-08-02T13:30:45Z,2,2020-02-15T06:59:42Z +8122,2005-07-28T19:27:37Z,2141,18,2005-07-29T19:48:37Z,2,2020-02-15T06:59:42Z +8123,2005-07-28T19:28:23Z,2256,138,2005-08-04T19:41:23Z,1,2020-02-15T06:59:42Z +8124,2005-07-28T19:28:58Z,1187,357,2005-07-31T00:45:58Z,1,2020-02-15T06:59:42Z +8125,2005-07-28T19:31:48Z,4330,96,2005-07-30T01:09:48Z,1,2020-02-15T06:59:42Z +8126,2005-07-28T19:32:41Z,719,537,2005-08-05T00:33:41Z,2,2020-02-15T06:59:42Z +8127,2005-07-28T19:45:19Z,4265,20,2005-07-31T22:07:19Z,2,2020-02-15T06:59:42Z +8128,2005-07-28T19:46:06Z,2872,71,2005-08-06T16:10:06Z,2,2020-02-15T06:59:42Z +8129,2005-07-28T19:47:02Z,2546,345,2005-07-31T21:33:02Z,2,2020-02-15T06:59:42Z +8130,2005-07-28T19:48:15Z,4055,499,2005-08-05T14:18:15Z,2,2020-02-15T06:59:42Z +8131,2005-07-28T19:55:21Z,437,281,2005-08-02T21:52:21Z,2,2020-02-15T06:59:42Z +8132,2005-07-28T19:57:31Z,1303,562,2005-08-02T22:16:31Z,2,2020-02-15T06:59:42Z +8133,2005-07-28T20:01:06Z,849,461,2005-08-01T20:01:06Z,1,2020-02-15T06:59:42Z +8134,2005-07-28T20:01:23Z,1695,41,2005-08-03T01:00:23Z,2,2020-02-15T06:59:42Z +8135,2005-07-28T20:03:25Z,1339,164,2005-08-03T01:28:25Z,2,2020-02-15T06:59:42Z +8136,2005-07-28T20:05:48Z,3434,429,2005-08-01T20:31:48Z,2,2020-02-15T06:59:42Z +8137,2005-07-28T20:07:18Z,3188,312,2005-08-03T17:41:18Z,1,2020-02-15T06:59:42Z +8138,2005-07-28T20:12:17Z,1258,371,2005-08-01T15:21:17Z,2,2020-02-15T06:59:42Z +8139,2005-07-28T20:16:30Z,3651,177,2005-08-03T18:00:30Z,2,2020-02-15T06:59:42Z +8140,2005-07-28T20:17:50Z,4270,119,2005-07-30T18:07:50Z,1,2020-02-15T06:59:42Z +8141,2005-07-28T20:21:19Z,361,523,2005-07-30T19:16:19Z,2,2020-02-15T06:59:42Z +8142,2005-07-28T20:21:54Z,1075,322,2005-07-31T18:39:54Z,2,2020-02-15T06:59:42Z +8143,2005-07-28T20:23:11Z,3629,429,2005-08-01T18:17:11Z,1,2020-02-15T06:59:42Z +8144,2005-07-28T20:30:55Z,3556,320,2005-07-31T18:10:55Z,2,2020-02-15T06:59:42Z +8145,2005-07-28T20:34:41Z,937,198,2005-08-05T15:28:41Z,2,2020-02-15T06:59:42Z +8146,2005-07-28T20:37:36Z,2430,476,2005-07-31T16:03:36Z,2,2020-02-15T06:59:42Z +8147,2005-07-28T20:37:56Z,628,228,2005-07-30T18:26:56Z,1,2020-02-15T06:59:42Z +8148,2005-07-28T20:39:47Z,537,347,2005-08-02T16:29:47Z,1,2020-02-15T06:59:42Z +8149,2005-07-28T20:48:12Z,1790,591,2005-08-01T20:07:12Z,2,2020-02-15T06:59:42Z +8150,2005-07-28T20:50:41Z,3489,497,2005-08-02T00:43:41Z,1,2020-02-15T06:59:42Z +8151,2005-07-28T20:50:52Z,4370,495,2005-07-31T14:50:52Z,1,2020-02-15T06:59:42Z +8152,2005-07-28T20:53:05Z,2557,46,2005-08-06T20:03:05Z,2,2020-02-15T06:59:42Z +8153,2005-07-28T20:55:49Z,2173,347,2005-08-01T15:56:49Z,2,2020-02-15T06:59:42Z +8154,2005-07-28T20:56:18Z,1180,285,2005-08-01T21:56:18Z,2,2020-02-15T06:59:42Z +8155,2005-07-28T20:57:06Z,3023,428,2005-08-02T18:40:06Z,2,2020-02-15T06:59:42Z +8156,2005-07-28T20:59:04Z,1977,257,2005-08-01T01:52:04Z,1,2020-02-15T06:59:42Z +8157,2005-07-28T21:06:45Z,915,566,2005-08-04T16:06:45Z,1,2020-02-15T06:59:42Z +8158,2005-07-28T21:08:46Z,4327,458,2005-08-01T21:50:46Z,2,2020-02-15T06:59:42Z +8159,2005-07-28T21:09:28Z,1118,47,2005-08-04T15:34:28Z,1,2020-02-15T06:59:42Z +8160,2005-07-28T21:10:30Z,2446,138,2005-08-05T16:52:30Z,2,2020-02-15T06:59:42Z +8161,2005-07-28T21:11:00Z,848,555,2005-08-03T23:32:00Z,1,2020-02-15T06:59:42Z +8162,2005-07-28T21:11:46Z,4393,107,2005-08-04T18:26:46Z,1,2020-02-15T06:59:42Z +8163,2005-07-28T21:11:48Z,1919,157,2005-07-31T18:30:48Z,1,2020-02-15T06:59:42Z +8164,2005-07-28T21:17:19Z,1674,461,2005-07-30T21:12:19Z,2,2020-02-15T06:59:42Z +8165,2005-07-28T21:23:06Z,3460,197,2005-08-01T21:32:06Z,1,2020-02-15T06:59:42Z +8166,2005-07-28T21:23:33Z,3906,42,2005-08-03T21:07:33Z,2,2020-02-15T06:59:42Z +8167,2005-07-28T21:25:45Z,3181,311,2005-08-04T18:04:45Z,1,2020-02-15T06:59:42Z +8168,2005-07-28T21:28:32Z,1120,365,2005-07-30T02:10:32Z,1,2020-02-15T06:59:42Z +8169,2005-07-28T21:29:46Z,4086,366,2005-08-06T22:29:46Z,1,2020-02-15T06:59:42Z +8170,2005-07-28T21:32:29Z,2495,40,2005-08-03T22:02:29Z,1,2020-02-15T06:59:42Z +8171,2005-07-28T21:32:57Z,3380,296,2005-07-30T21:19:57Z,1,2020-02-15T06:59:42Z +8172,2005-07-28T21:34:36Z,1237,329,2005-08-06T23:53:36Z,1,2020-02-15T06:59:42Z +8173,2005-07-28T21:35:44Z,4377,332,2005-08-06T19:15:44Z,2,2020-02-15T06:59:42Z +8174,2005-07-28T21:36:52Z,465,359,2005-08-04T00:32:52Z,1,2020-02-15T06:59:42Z +8175,2005-07-28T21:38:16Z,641,429,2005-08-07T01:34:16Z,2,2020-02-15T06:59:42Z +8176,2005-07-28T21:42:08Z,3527,347,2005-08-03T22:59:08Z,2,2020-02-15T06:59:42Z +8177,2005-07-28T21:43:54Z,3696,122,2005-08-02T22:38:54Z,2,2020-02-15T06:59:42Z +8178,2005-07-28T21:54:31Z,2825,503,2005-08-02T23:56:31Z,2,2020-02-15T06:59:42Z +8179,2005-07-28T22:05:13Z,2902,578,2005-07-30T21:57:13Z,2,2020-02-15T06:59:42Z +8180,2005-07-28T22:05:24Z,3236,281,2005-08-01T19:09:24Z,1,2020-02-15T06:59:42Z +8181,2005-07-28T22:18:38Z,357,522,2005-08-06T02:43:38Z,2,2020-02-15T06:59:42Z +8182,2005-07-28T22:19:12Z,4120,427,2005-08-01T22:40:12Z,2,2020-02-15T06:59:42Z +8183,2005-07-28T22:21:07Z,1545,119,2005-08-04T19:20:07Z,2,2020-02-15T06:59:42Z +8184,2005-07-28T22:22:35Z,1249,160,2005-07-31T19:30:35Z,1,2020-02-15T06:59:42Z +8185,2005-07-28T22:23:49Z,2452,568,2005-07-31T00:07:49Z,1,2020-02-15T06:59:42Z +8186,2005-07-28T22:30:27Z,4255,102,2005-07-31T21:08:27Z,1,2020-02-15T06:59:42Z +8187,2005-07-28T22:33:53Z,945,87,2005-08-03T03:54:53Z,1,2020-02-15T06:59:42Z +8188,2005-07-28T22:34:12Z,3826,10,2005-08-01T02:32:12Z,2,2020-02-15T06:59:42Z +8189,2005-07-28T22:36:26Z,3515,361,2005-08-04T00:12:26Z,2,2020-02-15T06:59:42Z +8190,2005-07-28T22:47:06Z,2290,267,2005-08-04T21:51:06Z,1,2020-02-15T06:59:42Z +8191,2005-07-28T22:47:14Z,1777,508,2005-07-31T23:13:14Z,2,2020-02-15T06:59:42Z +8192,2005-07-28T22:49:11Z,255,552,2005-07-30T04:13:11Z,1,2020-02-15T06:59:42Z +8193,2005-07-28T22:50:50Z,2402,15,2005-08-01T04:14:50Z,2,2020-02-15T06:59:42Z +8194,2005-07-28T22:51:44Z,1148,424,2005-07-29T17:13:44Z,1,2020-02-15T06:59:42Z +8195,2005-07-28T22:52:58Z,3989,590,2005-08-04T02:12:58Z,1,2020-02-15T06:59:42Z +8196,2005-07-28T22:56:11Z,3435,21,2005-08-06T04:53:11Z,1,2020-02-15T06:59:42Z +8197,2005-07-28T23:04:10Z,4126,407,2005-08-05T00:06:10Z,2,2020-02-15T06:59:42Z +8198,2005-07-28T23:08:05Z,1767,356,2005-08-06T00:43:05Z,2,2020-02-15T06:59:42Z +8199,2005-07-28T23:10:25Z,404,471,2005-08-04T23:30:25Z,1,2020-02-15T06:59:42Z +8200,2005-07-28T23:10:46Z,353,185,2005-07-29T18:35:46Z,1,2020-02-15T06:59:42Z +8201,2005-07-28T23:10:48Z,220,567,2005-08-01T00:50:48Z,2,2020-02-15T06:59:42Z +8202,2005-07-28T23:11:45Z,3802,75,2005-08-03T21:57:45Z,2,2020-02-15T06:59:42Z +8203,2005-07-28T23:14:56Z,3878,100,2005-07-31T04:19:56Z,2,2020-02-15T06:59:42Z +8204,2005-07-28T23:18:29Z,2472,398,2005-08-02T04:49:29Z,1,2020-02-15T06:59:42Z +8205,2005-07-28T23:18:48Z,2944,434,2005-07-30T00:37:48Z,2,2020-02-15T06:59:42Z +8206,2005-07-28T23:20:31Z,2979,422,2005-08-04T21:36:31Z,1,2020-02-15T06:59:42Z +8207,2005-07-28T23:26:31Z,1195,475,2005-08-06T03:26:31Z,1,2020-02-15T06:59:42Z +8208,2005-07-28T23:26:35Z,1362,530,2005-08-01T23:00:35Z,2,2020-02-15T06:59:42Z +8209,2005-07-28T23:29:28Z,2484,127,2005-08-07T04:22:28Z,2,2020-02-15T06:59:42Z +8210,2005-07-28T23:31:05Z,3424,300,2005-08-06T17:36:05Z,1,2020-02-15T06:59:42Z +8211,2005-07-28T23:34:22Z,1859,193,2005-08-04T21:18:22Z,1,2020-02-15T06:59:42Z +8212,2005-07-28T23:37:23Z,1305,159,2005-08-04T04:33:23Z,2,2020-02-15T06:59:42Z +8213,2005-07-28T23:37:33Z,3816,17,2005-07-31T00:32:33Z,2,2020-02-15T06:59:42Z +8214,2005-07-28T23:37:57Z,352,509,2005-08-07T00:29:57Z,2,2020-02-15T06:59:42Z +8215,2005-07-28T23:43:56Z,2921,437,2005-08-03T19:30:56Z,2,2020-02-15T06:59:42Z +8216,2005-07-28T23:43:59Z,2211,254,2005-08-06T05:05:59Z,1,2020-02-15T06:59:42Z +8217,2005-07-28T23:44:13Z,3747,206,2005-08-03T21:27:13Z,2,2020-02-15T06:59:42Z +8218,2005-07-28T23:45:41Z,2769,578,2005-08-02T00:14:41Z,1,2020-02-15T06:59:42Z +8219,2005-07-28T23:46:31Z,3609,227,2005-08-03T00:11:31Z,2,2020-02-15T06:59:42Z +8220,2005-07-28T23:46:41Z,1061,360,2005-07-31T22:14:41Z,2,2020-02-15T06:59:42Z +8221,2005-07-28T23:47:19Z,3138,496,2005-08-02T20:42:19Z,1,2020-02-15T06:59:42Z +8222,2005-07-28T23:51:53Z,2999,278,2005-08-05T22:48:53Z,1,2020-02-15T06:59:42Z +8223,2005-07-28T23:56:01Z,4508,282,2005-08-03T22:27:01Z,1,2020-02-15T06:59:42Z +8224,2005-07-28T23:59:02Z,1995,467,2005-08-02T04:54:02Z,1,2020-02-15T06:59:42Z +8225,2005-07-28T23:59:29Z,3631,41,2005-07-30T03:27:29Z,2,2020-02-15T06:59:42Z +8226,2005-07-29T00:01:04Z,3541,368,2005-08-01T19:08:04Z,2,2020-02-15T06:59:42Z +8227,2005-07-29T00:02:22Z,269,167,2005-07-31T04:05:22Z,1,2020-02-15T06:59:42Z +8228,2005-07-29T00:08:58Z,1955,72,2005-08-03T00:12:58Z,2,2020-02-15T06:59:42Z +8229,2005-07-29T00:09:08Z,4272,498,2005-07-31T19:29:08Z,2,2020-02-15T06:59:42Z +8230,2005-07-29T00:12:59Z,1937,2,2005-08-06T19:52:59Z,2,2020-02-15T06:59:42Z +8231,2005-07-29T00:14:37Z,1083,331,2005-07-31T19:12:37Z,1,2020-02-15T06:59:42Z +8232,2005-07-29T00:14:37Z,3255,526,2005-08-06T00:57:37Z,1,2020-02-15T06:59:42Z +8233,2005-07-29T00:16:23Z,1640,93,2005-08-03T05:17:23Z,2,2020-02-15T06:59:42Z +8234,2005-07-29T00:19:20Z,644,227,2005-08-03T19:16:20Z,2,2020-02-15T06:59:42Z +8235,2005-07-29T00:22:56Z,1581,320,2005-08-03T04:03:56Z,2,2020-02-15T06:59:42Z +8236,2005-07-29T00:27:04Z,1901,369,2005-07-31T05:02:04Z,2,2020-02-15T06:59:42Z +8237,2005-07-29T00:29:56Z,608,441,2005-08-06T03:10:56Z,1,2020-02-15T06:59:42Z +8238,2005-07-29T00:30:06Z,2941,320,2005-08-02T22:52:06Z,2,2020-02-15T06:59:42Z +8239,2005-07-29T00:31:39Z,3951,549,2005-07-29T19:33:39Z,1,2020-02-15T06:59:42Z +8240,2005-07-29T00:33:32Z,1975,509,2005-08-05T21:25:32Z,2,2020-02-15T06:59:42Z +8241,2005-07-29T00:33:36Z,4297,26,2005-08-03T01:31:36Z,1,2020-02-15T06:59:42Z +8242,2005-07-29T00:34:27Z,509,99,2005-08-05T23:13:27Z,2,2020-02-15T06:59:42Z +8243,2005-07-29T00:35:33Z,1873,481,2005-08-04T06:02:33Z,2,2020-02-15T06:59:42Z +8244,2005-07-29T00:35:34Z,1552,175,2005-08-05T04:18:34Z,2,2020-02-15T06:59:42Z +8245,2005-07-29T00:37:09Z,3330,555,2005-08-05T05:48:09Z,2,2020-02-15T06:59:42Z +8246,2005-07-29T00:38:41Z,1724,146,2005-08-05T06:28:41Z,2,2020-02-15T06:59:42Z +8247,2005-07-29T00:41:38Z,2607,539,2005-08-06T20:29:38Z,2,2020-02-15T06:59:42Z +8248,2005-07-29T00:41:56Z,2017,272,2005-08-05T18:53:56Z,2,2020-02-15T06:59:42Z +8249,2005-07-29T00:48:44Z,3331,57,2005-08-07T04:25:44Z,2,2020-02-15T06:59:42Z +8250,2005-07-29T00:49:15Z,4519,533,2005-08-04T02:53:15Z,1,2020-02-15T06:59:42Z +8251,2005-07-29T00:50:14Z,2317,408,2005-08-03T23:52:14Z,2,2020-02-15T06:59:42Z +8252,2005-07-29T00:54:17Z,3312,257,2005-07-31T20:34:17Z,1,2020-02-15T06:59:42Z +8253,2005-07-29T00:57:06Z,2388,76,2005-08-07T01:46:06Z,1,2020-02-15T06:59:42Z +8254,2005-07-29T00:59:31Z,1787,392,2005-08-03T23:43:31Z,2,2020-02-15T06:59:42Z +8255,2005-07-29T01:02:30Z,3715,224,2005-08-01T22:39:30Z,1,2020-02-15T06:59:42Z +8256,2005-07-29T01:02:42Z,1483,537,2005-07-31T22:29:42Z,2,2020-02-15T06:59:42Z +8257,2005-07-29T01:03:20Z,3024,566,2005-08-04T21:54:20Z,1,2020-02-15T06:59:42Z +8258,2005-07-29T01:03:42Z,1379,370,2005-08-04T22:08:42Z,2,2020-02-15T06:59:42Z +8259,2005-07-29T01:05:16Z,343,274,2005-08-01T23:27:16Z,2,2020-02-15T06:59:42Z +8260,2005-07-29T01:11:00Z,4249,366,2005-08-06T00:36:00Z,1,2020-02-15T06:59:42Z +8261,2005-07-29T01:11:05Z,1915,50,2005-08-04T03:13:05Z,2,2020-02-15T06:59:42Z +8262,2005-07-29T01:11:18Z,1341,563,2005-08-02T05:17:18Z,2,2020-02-15T06:59:42Z +8263,2005-07-29T01:11:23Z,28,5,2005-07-31T01:53:23Z,2,2020-02-15T06:59:42Z +8264,2005-07-29T01:18:50Z,2987,175,2005-08-03T05:31:50Z,2,2020-02-15T06:59:42Z +8265,2005-07-29T01:20:15Z,2389,409,2005-08-06T19:32:15Z,2,2020-02-15T06:59:42Z +8266,2005-07-29T01:20:16Z,1972,196,2005-07-30T04:31:16Z,1,2020-02-15T06:59:42Z +8267,2005-07-29T01:21:02Z,4107,131,2005-08-04T19:34:02Z,2,2020-02-15T06:59:42Z +8268,2005-07-29T01:23:23Z,4239,421,2005-08-05T01:36:23Z,1,2020-02-15T06:59:42Z +8269,2005-07-29T01:26:54Z,2778,376,2005-08-04T22:42:54Z,1,2020-02-15T06:59:42Z +8270,2005-07-29T01:27:22Z,3565,282,2005-07-29T20:55:22Z,1,2020-02-15T06:59:42Z +8271,2005-07-29T01:27:44Z,83,481,2005-08-07T05:01:44Z,2,2020-02-15T06:59:42Z +8272,2005-07-29T01:29:51Z,70,346,2005-08-03T21:56:51Z,2,2020-02-15T06:59:42Z +8273,2005-07-29T01:33:16Z,4244,532,2005-08-06T04:26:16Z,2,2020-02-15T06:59:42Z +8274,2005-07-29T01:34:32Z,2634,340,2005-08-01T20:15:32Z,2,2020-02-15T06:59:42Z +8275,2005-07-29T01:35:47Z,4432,336,2005-07-30T02:16:47Z,1,2020-02-15T06:59:42Z +8276,2005-07-29T01:38:43Z,2451,466,2005-08-03T23:00:43Z,1,2020-02-15T06:59:42Z +8277,2005-07-29T01:38:53Z,1296,13,2005-08-04T07:09:53Z,2,2020-02-15T06:59:42Z +8278,2005-07-29T01:42:55Z,768,265,2005-08-05T01:55:55Z,2,2020-02-15T06:59:42Z +8279,2005-07-29T01:43:37Z,3838,176,2005-08-03T02:36:37Z,1,2020-02-15T06:59:42Z +8280,2005-07-29T01:45:51Z,1208,195,2005-08-05T22:51:51Z,2,2020-02-15T06:59:42Z +8281,2005-07-29T01:46:00Z,899,441,2005-08-04T23:09:00Z,1,2020-02-15T06:59:42Z +8282,2005-07-29T01:49:04Z,980,462,2005-08-05T01:51:04Z,2,2020-02-15T06:59:42Z +8283,2005-07-29T01:52:22Z,2002,300,2005-08-05T03:22:22Z,2,2020-02-15T06:59:42Z +8284,2005-07-29T01:56:40Z,4371,446,2005-08-07T07:15:40Z,2,2020-02-15T06:59:42Z +8285,2005-07-29T02:00:18Z,678,56,2005-08-03T20:43:18Z,2,2020-02-15T06:59:42Z +8286,2005-07-29T02:02:46Z,4092,87,2005-08-06T06:00:46Z,1,2020-02-15T06:59:42Z +8287,2005-07-29T02:03:58Z,812,178,2005-08-07T02:11:58Z,1,2020-02-15T06:59:42Z +8288,2005-07-29T02:04:22Z,1822,55,2005-08-05T04:21:22Z,2,2020-02-15T06:59:42Z +8289,2005-07-29T02:23:24Z,4579,459,2005-08-06T03:23:24Z,2,2020-02-15T06:59:42Z +8290,2005-07-29T02:24:08Z,3823,462,2005-08-03T01:02:08Z,2,2020-02-15T06:59:42Z +8291,2005-07-29T02:28:25Z,2817,455,2005-08-03T20:57:25Z,2,2020-02-15T06:59:42Z +8292,2005-07-29T02:29:36Z,4003,192,2005-08-07T08:06:36Z,1,2020-02-15T06:59:42Z +8293,2005-07-29T02:30:50Z,831,71,2005-08-04T03:09:50Z,2,2020-02-15T06:59:42Z +8294,2005-07-29T02:32:41Z,1811,520,2005-08-02T06:28:41Z,1,2020-02-15T06:59:42Z +8295,2005-07-29T02:42:14Z,2065,406,2005-07-30T22:22:14Z,1,2020-02-15T06:59:42Z +8296,2005-07-29T02:43:25Z,2543,88,2005-08-01T00:23:25Z,1,2020-02-15T06:59:42Z +8297,2005-07-29T02:45:46Z,3774,349,2005-07-31T20:49:46Z,1,2020-02-15T06:59:42Z +8298,2005-07-29T02:47:36Z,952,493,2005-08-05T07:58:36Z,2,2020-02-15T06:59:42Z +8299,2005-07-29T02:56:00Z,1797,173,2005-07-30T22:35:00Z,2,2020-02-15T06:59:42Z +8300,2005-07-29T02:57:59Z,4364,222,2005-08-05T01:12:59Z,2,2020-02-15T06:59:42Z +8301,2005-07-29T03:00:08Z,562,101,2005-08-01T04:26:08Z,2,2020-02-15T06:59:42Z +8302,2005-07-29T03:01:24Z,1314,103,2005-07-30T01:08:24Z,2,2020-02-15T06:59:42Z +8303,2005-07-29T03:05:56Z,1620,574,2005-08-04T06:13:56Z,1,2020-02-15T06:59:42Z +8304,2005-07-29T03:08:30Z,4431,119,2005-08-02T03:04:30Z,2,2020-02-15T06:59:42Z +8305,2005-07-29T03:08:47Z,3916,566,2005-08-06T07:49:47Z,2,2020-02-15T06:59:42Z +8306,2005-07-29T03:12:26Z,1708,232,2005-08-01T23:26:26Z,1,2020-02-15T06:59:42Z +8307,2005-07-29T03:18:34Z,3197,39,2005-08-06T05:51:34Z,2,2020-02-15T06:59:42Z +8308,2005-07-29T03:22:15Z,601,582,2005-08-04T21:38:15Z,2,2020-02-15T06:59:42Z +8309,2005-07-29T03:22:20Z,2250,446,2005-08-01T06:30:20Z,1,2020-02-15T06:59:42Z +8310,2005-07-29T03:25:56Z,2637,238,2005-08-06T23:18:56Z,2,2020-02-15T06:59:42Z +8311,2005-07-29T03:26:07Z,3623,63,2005-08-02T01:46:07Z,1,2020-02-15T06:59:42Z +8312,2005-07-29T03:32:38Z,3996,143,2005-07-31T02:12:38Z,1,2020-02-15T06:59:42Z +8313,2005-07-29T03:34:21Z,2736,91,2005-08-02T01:32:21Z,1,2020-02-15T06:59:42Z +8314,2005-07-29T03:35:04Z,2182,118,2005-08-06T08:43:04Z,2,2020-02-15T06:59:42Z +8315,2005-07-29T03:37:07Z,1420,135,2005-07-29T23:22:07Z,2,2020-02-15T06:59:42Z +8316,2005-07-29T03:38:49Z,4118,549,2005-08-03T07:41:49Z,1,2020-02-15T06:59:42Z +8317,2005-07-29T03:39:07Z,3898,415,2005-08-03T00:14:07Z,1,2020-02-15T06:59:42Z +8318,2005-07-29T03:44:30Z,4524,167,2005-07-30T05:03:30Z,2,2020-02-15T06:59:42Z +8319,2005-07-29T03:44:52Z,747,280,2005-08-01T00:35:52Z,2,2020-02-15T06:59:42Z +8320,2005-07-29T03:49:58Z,1285,513,2005-08-03T01:00:58Z,1,2020-02-15T06:59:42Z +8321,2005-07-29T03:50:54Z,1875,354,2005-08-01T02:08:54Z,1,2020-02-15T06:59:42Z +8322,2005-07-29T03:52:49Z,301,541,2005-08-02T22:53:49Z,1,2020-02-15T06:59:42Z +8323,2005-07-29T03:52:59Z,2766,87,2005-08-06T01:49:59Z,2,2020-02-15T06:59:42Z +8324,2005-07-29T03:56:05Z,1467,98,2005-08-02T01:41:05Z,1,2020-02-15T06:59:42Z +8325,2005-07-29T03:57:27Z,932,362,2005-08-06T22:30:27Z,1,2020-02-15T06:59:42Z +8326,2005-07-29T03:58:49Z,108,1,2005-08-01T05:16:49Z,2,2020-02-15T06:59:42Z +8327,2005-07-29T04:00:52Z,2928,317,2005-07-31T08:27:52Z,1,2020-02-15T06:59:42Z +8328,2005-07-29T04:06:24Z,4454,314,2005-08-03T22:24:24Z,1,2020-02-15T06:59:42Z +8329,2005-07-29T04:06:33Z,3468,108,2005-08-06T01:46:33Z,1,2020-02-15T06:59:42Z +8330,2005-07-29T04:09:07Z,2294,412,2005-08-05T05:00:07Z,2,2020-02-15T06:59:42Z +8331,2005-07-29T04:13:29Z,18,148,2005-08-04T07:09:29Z,1,2020-02-15T06:59:42Z +8332,2005-07-29T04:16:00Z,1142,217,2005-08-03T03:34:00Z,1,2020-02-15T06:59:42Z +8333,2005-07-29T04:16:40Z,823,494,2005-08-02T10:10:40Z,2,2020-02-15T06:59:42Z +8334,2005-07-29T04:18:25Z,982,154,2005-08-07T07:18:25Z,2,2020-02-15T06:59:42Z +8335,2005-07-29T04:18:25Z,1719,143,2005-07-31T08:12:25Z,2,2020-02-15T06:59:42Z +8336,2005-07-29T04:20:42Z,2120,210,2005-08-05T10:17:42Z,1,2020-02-15T06:59:42Z +8337,2005-07-29T04:31:55Z,752,157,2005-08-02T02:38:55Z,2,2020-02-15T06:59:42Z +8338,2005-07-29T04:40:39Z,2257,389,2005-08-07T04:40:39Z,2,2020-02-15T06:59:42Z +8339,2005-07-29T04:41:13Z,1870,129,2005-07-30T09:01:13Z,2,2020-02-15T06:59:42Z +8340,2005-07-29T04:41:44Z,1553,386,2005-08-07T10:33:44Z,1,2020-02-15T06:59:42Z +8341,2005-07-29T04:42:01Z,4208,309,2005-08-04T00:58:01Z,1,2020-02-15T06:59:42Z +8342,2005-07-29T04:45:05Z,3301,572,2005-08-01T07:20:05Z,1,2020-02-15T06:59:42Z +8343,2005-07-29T04:45:16Z,4267,439,2005-08-02T03:37:16Z,1,2020-02-15T06:59:42Z +8344,2005-07-29T04:45:25Z,221,257,2005-08-06T01:53:25Z,1,2020-02-15T06:59:42Z +8345,2005-07-29T04:47:37Z,1034,129,2005-08-02T07:25:37Z,1,2020-02-15T06:59:42Z +8346,2005-07-29T04:48:22Z,2475,385,2005-08-01T04:22:22Z,1,2020-02-15T06:59:42Z +8347,2005-07-29T04:49:25Z,4407,157,2005-07-31T00:57:25Z,2,2020-02-15T06:59:42Z +8348,2005-07-29T04:49:26Z,4533,174,2005-08-05T03:26:26Z,2,2020-02-15T06:59:42Z +8349,2005-07-29T04:50:22Z,534,416,2005-08-05T08:50:22Z,1,2020-02-15T06:59:42Z +8350,2005-07-29T04:50:39Z,3726,513,2005-07-31T05:36:39Z,2,2020-02-15T06:59:42Z +8351,2005-07-29T04:50:53Z,2963,202,2005-07-30T07:28:53Z,2,2020-02-15T06:59:42Z +8352,2005-07-29T04:52:01Z,2710,168,2005-08-06T07:39:01Z,2,2020-02-15T06:59:42Z +8353,2005-07-29T04:52:10Z,26,585,2005-07-30T04:01:10Z,1,2020-02-15T06:59:42Z +8354,2005-07-29T04:56:26Z,4476,579,2005-08-01T08:04:26Z,2,2020-02-15T06:59:42Z +8355,2005-07-29T04:57:43Z,4569,270,2005-08-03T06:25:43Z,1,2020-02-15T06:59:42Z +8356,2005-07-29T04:58:56Z,2951,483,2005-08-06T03:07:56Z,1,2020-02-15T06:59:42Z +8357,2005-07-29T04:59:44Z,892,76,2005-08-01T04:26:44Z,1,2020-02-15T06:59:42Z +8358,2005-07-29T05:00:58Z,1449,372,2005-08-01T02:49:58Z,2,2020-02-15T06:59:42Z +8359,2005-07-29T05:02:12Z,140,531,2005-08-04T08:52:12Z,1,2020-02-15T06:59:42Z +8360,2005-07-29T05:08:00Z,4135,62,2005-08-02T00:40:00Z,1,2020-02-15T06:59:42Z +8361,2005-07-29T05:08:57Z,3404,360,2005-08-03T02:49:57Z,1,2020-02-15T06:59:42Z +8362,2005-07-29T05:09:11Z,2287,223,2005-08-04T00:08:11Z,2,2020-02-15T06:59:42Z +8363,2005-07-29T05:10:08Z,1607,302,2005-08-06T00:11:08Z,1,2020-02-15T06:59:42Z +8364,2005-07-29T05:10:31Z,1361,362,2005-07-30T04:02:31Z,2,2020-02-15T06:59:42Z +8365,2005-07-29T05:11:00Z,53,280,2005-07-30T05:30:00Z,2,2020-02-15T06:59:42Z +8366,2005-07-29T05:11:14Z,479,39,2005-08-05T01:48:14Z,1,2020-02-15T06:59:42Z +8367,2005-07-29T05:11:19Z,4551,383,2005-08-02T00:35:19Z,1,2020-02-15T06:59:42Z +8368,2005-07-29T05:15:41Z,1410,200,2005-08-07T01:35:41Z,1,2020-02-15T06:59:42Z +8369,2005-07-29T05:15:42Z,1456,507,2005-08-01T03:36:42Z,2,2020-02-15T06:59:42Z +8370,2005-07-29T05:16:21Z,1206,121,2005-08-06T23:16:21Z,1,2020-02-15T06:59:42Z +8371,2005-07-29T05:16:35Z,2466,396,2005-07-31T01:49:35Z,1,2020-02-15T06:59:42Z +8372,2005-07-29T05:18:08Z,754,523,2005-08-06T09:39:08Z,1,2020-02-15T06:59:42Z +8373,2005-07-29T05:19:53Z,2070,457,2005-08-04T04:39:53Z,1,2020-02-15T06:59:42Z +8374,2005-07-29T05:24:02Z,1084,589,2005-08-05T03:55:02Z,1,2020-02-15T06:59:42Z +8375,2005-07-29T05:25:30Z,3634,125,2005-08-04T01:43:30Z,2,2020-02-15T06:59:42Z +8376,2005-07-29T05:25:32Z,3588,43,2005-08-01T07:42:32Z,2,2020-02-15T06:59:42Z +8377,2005-07-29T05:27:40Z,270,73,2005-07-30T02:52:40Z,2,2020-02-15T06:59:42Z +8378,2005-07-29T05:28:35Z,3500,347,2005-08-02T05:55:35Z,1,2020-02-15T06:59:42Z +8379,2005-07-29T05:29:40Z,3907,193,2005-08-06T05:56:40Z,2,2020-02-15T06:59:42Z +8380,2005-07-29T05:31:29Z,2279,145,2005-08-02T01:27:29Z,1,2020-02-15T06:59:42Z +8381,2005-07-29T05:31:44Z,865,313,2005-07-31T09:20:44Z,1,2020-02-15T06:59:42Z +8382,2005-07-29T05:33:21Z,317,238,2005-08-03T03:38:21Z,1,2020-02-15T06:59:42Z +8383,2005-07-29T05:36:47Z,3809,495,2005-08-03T05:53:47Z,2,2020-02-15T06:59:42Z +8384,2005-07-29T05:38:43Z,3807,227,2005-08-01T07:31:43Z,2,2020-02-15T06:59:42Z +8385,2005-07-29T05:39:16Z,4108,233,2005-08-03T00:30:16Z,1,2020-02-15T06:59:42Z +8386,2005-07-29T05:45:30Z,388,435,2005-08-05T03:56:30Z,2,2020-02-15T06:59:42Z +8387,2005-07-29T05:47:27Z,910,428,2005-07-31T06:26:27Z,1,2020-02-15T06:59:42Z +8388,2005-07-29T05:48:15Z,770,178,2005-08-05T06:24:15Z,2,2020-02-15T06:59:42Z +8389,2005-07-29T05:50:09Z,1241,133,2005-08-06T05:15:09Z,2,2020-02-15T06:59:42Z +8390,2005-07-29T05:52:26Z,581,32,2005-08-04T08:12:26Z,2,2020-02-15T06:59:42Z +8391,2005-07-29T05:52:50Z,2134,36,2005-08-03T04:45:50Z,2,2020-02-15T06:59:42Z +8392,2005-07-29T06:00:27Z,1323,65,2005-08-02T00:30:27Z,2,2020-02-15T06:59:42Z +8393,2005-07-29T06:02:11Z,3369,504,2005-08-07T03:23:11Z,1,2020-02-15T06:59:42Z +8394,2005-07-29T06:02:14Z,3933,148,2005-08-03T08:15:14Z,1,2020-02-15T06:59:42Z +8395,2005-07-29T06:03:30Z,1471,535,2005-07-31T09:08:30Z,2,2020-02-15T06:59:42Z +8396,2005-07-29T06:07:00Z,3911,516,2005-07-30T05:32:00Z,2,2020-02-15T06:59:42Z +8397,2005-07-29T06:09:35Z,3542,518,2005-08-01T02:08:35Z,1,2020-02-15T06:59:42Z +8398,2005-07-29T06:12:40Z,348,220,2005-08-02T05:01:40Z,2,2020-02-15T06:59:42Z +8399,2005-07-29T06:20:18Z,233,286,2005-08-04T01:26:18Z,1,2020-02-15T06:59:42Z +8400,2005-07-29T06:23:56Z,3680,573,2005-07-31T02:41:56Z,2,2020-02-15T06:59:42Z +8401,2005-07-29T06:25:08Z,3121,232,2005-08-01T06:49:08Z,1,2020-02-15T06:59:42Z +8402,2005-07-29T06:25:45Z,186,47,2005-08-07T10:48:45Z,1,2020-02-15T06:59:42Z +8403,2005-07-29T06:26:39Z,1360,163,2005-08-02T05:37:39Z,1,2020-02-15T06:59:42Z +8404,2005-07-29T06:27:01Z,2086,65,2005-08-07T04:33:01Z,1,2020-02-15T06:59:42Z +8405,2005-07-29T06:28:19Z,2164,76,2005-08-07T08:14:19Z,2,2020-02-15T06:59:42Z +8406,2005-07-29T06:34:45Z,2047,274,2005-08-06T02:28:45Z,1,2020-02-15T06:59:42Z +8407,2005-07-29T06:37:02Z,2985,336,2005-08-04T03:13:02Z,1,2020-02-15T06:59:42Z +8408,2005-07-29T06:40:40Z,1841,90,2005-07-30T10:02:40Z,2,2020-02-15T06:59:42Z +8409,2005-07-29T06:41:22Z,4314,303,2005-07-31T11:21:22Z,1,2020-02-15T06:59:42Z +8410,2005-07-29T06:41:36Z,3448,277,2005-08-02T08:38:36Z,1,2020-02-15T06:59:42Z +8411,2005-07-29T06:44:23Z,3085,412,2005-08-07T03:56:23Z,1,2020-02-15T06:59:42Z +8412,2005-07-29T06:44:50Z,743,312,2005-08-06T05:04:50Z,1,2020-02-15T06:59:42Z +8413,2005-07-29T06:47:39Z,2762,104,2005-08-02T09:15:39Z,2,2020-02-15T06:59:42Z +8414,2005-07-29T06:48:35Z,1337,433,2005-08-06T10:54:35Z,2,2020-02-15T06:59:42Z +8415,2005-07-29T06:52:27Z,2903,128,2005-08-02T10:40:27Z,1,2020-02-15T06:59:42Z +8416,2005-07-29T06:52:54Z,1999,315,2005-08-05T09:50:54Z,2,2020-02-15T06:59:42Z +8417,2005-07-29T06:53:36Z,750,227,2005-08-06T09:31:36Z,2,2020-02-15T06:59:42Z +8418,2005-07-29T06:54:21Z,3081,355,2005-08-05T06:50:21Z,2,2020-02-15T06:59:42Z +8419,2005-07-29T06:54:48Z,4574,37,2005-08-06T05:02:48Z,1,2020-02-15T06:59:42Z +8420,2005-07-29T07:00:45Z,4184,376,2005-08-06T02:20:45Z,1,2020-02-15T06:59:42Z +8421,2005-07-29T07:00:47Z,3399,588,2005-08-02T08:03:47Z,2,2020-02-15T06:59:42Z +8422,2005-07-29T07:02:55Z,3104,7,2005-08-03T12:35:55Z,1,2020-02-15T06:59:42Z +8423,2005-07-29T07:02:57Z,187,468,2005-08-06T04:59:57Z,1,2020-02-15T06:59:42Z +8424,2005-07-29T07:06:03Z,366,138,2005-08-06T12:00:03Z,2,2020-02-15T06:59:42Z +8425,2005-07-29T07:06:21Z,3491,486,2005-08-05T07:57:21Z,2,2020-02-15T06:59:42Z +8426,2005-07-29T07:07:48Z,1840,564,2005-08-07T08:56:48Z,2,2020-02-15T06:59:42Z +8427,2005-07-29T07:08:36Z,1624,441,2005-07-30T11:54:36Z,2,2020-02-15T06:59:42Z +8428,2005-07-29T07:10:14Z,2545,398,2005-08-06T02:29:14Z,2,2020-02-15T06:59:42Z +8429,2005-07-29T07:11:49Z,2456,588,2005-07-31T02:45:49Z,1,2020-02-15T06:59:42Z +8430,2005-07-29T07:12:17Z,3377,219,2005-08-03T09:53:17Z,2,2020-02-15T06:59:42Z +8431,2005-07-29T07:12:48Z,1583,193,2005-08-01T10:03:48Z,1,2020-02-15T06:59:42Z +8432,2005-07-29T07:13:33Z,3896,572,2005-07-30T03:14:33Z,1,2020-02-15T06:59:42Z +8433,2005-07-29T07:19:16Z,1957,125,2005-08-05T03:29:16Z,1,2020-02-15T06:59:42Z +8434,2005-07-29T07:20:14Z,40,141,2005-07-30T08:50:14Z,2,2020-02-15T06:59:42Z +8435,2005-07-29T07:20:16Z,4462,520,2005-08-02T09:54:16Z,2,2020-02-15T06:59:42Z +8436,2005-07-29T07:21:20Z,2702,598,2005-07-31T12:56:20Z,2,2020-02-15T06:59:42Z +8437,2005-07-29T07:23:43Z,2118,96,2005-08-04T10:52:43Z,1,2020-02-15T06:59:42Z +8438,2005-07-29T07:25:42Z,720,97,2005-08-04T07:39:42Z,1,2020-02-15T06:59:42Z +8439,2005-07-29T07:28:43Z,182,224,2005-08-04T11:22:43Z,1,2020-02-15T06:59:42Z +8440,2005-07-29T07:31:26Z,489,175,2005-08-04T07:04:26Z,1,2020-02-15T06:59:42Z +8441,2005-07-29T07:33:05Z,1000,526,2005-08-04T04:00:05Z,2,2020-02-15T06:59:42Z +8442,2005-07-29T07:33:07Z,4345,185,2005-08-03T03:09:07Z,2,2020-02-15T06:59:42Z +8443,2005-07-29T07:33:12Z,1059,251,2005-08-02T01:36:12Z,2,2020-02-15T06:59:42Z +8444,2005-07-29T07:36:13Z,3329,213,2005-08-05T04:55:13Z,1,2020-02-15T06:59:42Z +8445,2005-07-29T07:37:48Z,2792,384,2005-08-04T10:43:48Z,1,2020-02-15T06:59:42Z +8446,2005-07-29T07:38:10Z,1593,235,2005-08-06T04:39:10Z,2,2020-02-15T06:59:42Z +8447,2005-07-29T07:38:14Z,930,11,2005-08-05T02:27:14Z,2,2020-02-15T06:59:42Z +8448,2005-07-29T07:41:54Z,4349,393,2005-08-02T13:12:54Z,1,2020-02-15T06:59:42Z +8449,2005-07-29T07:42:25Z,2610,273,2005-07-30T06:07:25Z,2,2020-02-15T06:59:42Z +8450,2005-07-29T07:44:05Z,484,401,2005-08-01T12:23:05Z,1,2020-02-15T06:59:42Z +8451,2005-07-29T07:44:56Z,3309,495,2005-08-06T02:29:56Z,1,2020-02-15T06:59:42Z +8452,2005-07-29T07:45:00Z,4312,16,2005-08-05T09:46:00Z,2,2020-02-15T06:59:42Z +8453,2005-07-29T07:46:29Z,2907,32,2005-07-30T07:07:29Z,1,2020-02-15T06:59:42Z +8454,2005-07-29T07:49:04Z,159,244,2005-08-03T04:43:04Z,2,2020-02-15T06:59:42Z +8455,2005-07-29T07:53:06Z,4043,404,2005-08-05T05:29:06Z,1,2020-02-15T06:59:42Z +8456,2005-07-29T07:58:31Z,671,388,2005-08-05T07:17:31Z,2,2020-02-15T06:59:42Z +8457,2005-07-29T07:59:03Z,3371,239,2005-08-04T08:42:03Z,1,2020-02-15T06:59:42Z +8458,2005-07-29T08:05:09Z,3857,317,2005-08-02T03:42:09Z,1,2020-02-15T06:59:42Z +8459,2005-07-29T08:05:40Z,3441,144,2005-08-04T03:24:40Z,1,2020-02-15T06:59:42Z +8460,2005-07-29T08:08:03Z,2826,329,2005-08-07T06:53:03Z,2,2020-02-15T06:59:42Z +8461,2005-07-29T08:11:31Z,3373,399,2005-08-06T09:23:31Z,1,2020-02-15T06:59:42Z +8462,2005-07-29T08:15:42Z,3633,200,2005-08-04T03:57:42Z,1,2020-02-15T06:59:42Z +8463,2005-07-29T08:17:51Z,466,203,2005-08-03T13:41:51Z,1,2020-02-15T06:59:42Z +8464,2005-07-29T08:18:20Z,2343,28,2005-08-03T04:50:20Z,2,2020-02-15T06:59:42Z +8465,2005-07-29T08:20:49Z,4109,238,2005-07-31T04:02:49Z,2,2020-02-15T06:59:42Z +8466,2005-07-29T08:24:47Z,4010,285,2005-07-31T03:43:47Z,1,2020-02-15T06:59:42Z +8467,2005-07-29T08:25:35Z,263,326,2005-08-07T03:28:35Z,2,2020-02-15T06:59:42Z +8468,2005-07-29T08:26:04Z,1338,282,2005-08-02T07:18:04Z,1,2020-02-15T06:59:42Z +8469,2005-07-29T08:26:27Z,2754,408,2005-08-05T04:26:27Z,2,2020-02-15T06:59:42Z +8470,2005-07-29T08:28:50Z,3717,159,2005-07-30T13:40:50Z,2,2020-02-15T06:59:42Z +8471,2005-07-29T08:32:11Z,1520,533,2005-08-01T13:55:11Z,1,2020-02-15T06:59:42Z +8472,2005-07-29T08:36:22Z,2975,196,2005-08-02T07:55:22Z,1,2020-02-15T06:59:42Z +8473,2005-07-29T08:36:53Z,4141,311,2005-07-31T12:14:53Z,1,2020-02-15T06:59:42Z +8474,2005-07-29T08:36:56Z,4346,323,2005-08-01T03:07:56Z,1,2020-02-15T06:59:42Z +8475,2005-07-29T08:37:41Z,3695,260,2005-08-04T10:03:41Z,2,2020-02-15T06:59:42Z +8476,2005-07-29T08:39:12Z,3741,470,2005-08-06T03:03:12Z,1,2020-02-15T06:59:42Z +8477,2005-07-29T08:40:36Z,3571,354,2005-08-06T08:28:36Z,2,2020-02-15T06:59:42Z +8478,2005-07-29T08:40:36Z,3742,162,2005-08-01T10:23:36Z,1,2020-02-15T06:59:42Z +8479,2005-07-29T08:42:04Z,1990,195,2005-08-01T03:10:04Z,1,2020-02-15T06:59:42Z +8480,2005-07-29T08:44:46Z,3512,467,2005-08-05T13:22:46Z,1,2020-02-15T06:59:42Z +8481,2005-07-29T08:45:57Z,1739,454,2005-08-01T12:50:57Z,2,2020-02-15T06:59:42Z +8482,2005-07-29T08:46:33Z,2686,405,2005-07-31T11:07:33Z,2,2020-02-15T06:59:42Z +8483,2005-07-29T08:50:18Z,2786,186,2005-08-03T06:46:18Z,1,2020-02-15T06:59:42Z +8484,2005-07-29T08:51:59Z,742,260,2005-07-30T09:07:59Z,1,2020-02-15T06:59:42Z +8485,2005-07-29T08:53:09Z,3172,420,2005-07-30T11:25:09Z,1,2020-02-15T06:59:42Z +8486,2005-07-29T08:53:38Z,1759,221,2005-08-01T14:12:38Z,2,2020-02-15T06:59:42Z +8487,2005-07-29T08:53:49Z,1893,82,2005-07-31T09:10:49Z,2,2020-02-15T06:59:42Z +8488,2005-07-29T08:57:38Z,2176,478,2005-08-02T04:16:38Z,1,2020-02-15T06:59:42Z +8489,2005-07-29T08:58:03Z,375,265,2005-08-02T07:50:03Z,2,2020-02-15T06:59:42Z +8490,2005-07-29T08:59:25Z,1943,367,2005-08-05T14:02:25Z,2,2020-02-15T06:59:42Z +8491,2005-07-29T09:02:13Z,1806,242,2005-08-03T04:32:13Z,1,2020-02-15T06:59:42Z +8492,2005-07-29T09:04:17Z,4553,266,2005-08-02T08:48:17Z,2,2020-02-15T06:59:42Z +8493,2005-07-29T09:04:31Z,664,390,2005-08-04T05:17:31Z,2,2020-02-15T06:59:42Z +8494,2005-07-29T09:04:32Z,3524,92,2005-07-31T10:30:32Z,1,2020-02-15T06:59:42Z +8495,2005-07-29T09:05:06Z,344,51,2005-08-06T05:48:06Z,2,2020-02-15T06:59:42Z +8496,2005-07-29T09:05:33Z,765,114,2005-08-02T06:32:33Z,1,2020-02-15T06:59:42Z +8497,2005-07-29T09:07:03Z,1837,593,2005-08-02T09:18:03Z,2,2020-02-15T06:59:42Z +8498,2005-07-29T09:07:38Z,4468,190,2005-08-04T07:01:38Z,1,2020-02-15T06:59:42Z +8499,2005-07-29T09:10:41Z,219,42,2005-08-05T10:01:41Z,1,2020-02-15T06:59:42Z +8500,2005-07-29T09:12:01Z,4516,348,2005-07-31T10:15:01Z,1,2020-02-15T06:59:42Z +8501,2005-07-29T09:12:51Z,1052,309,2005-07-30T11:19:51Z,2,2020-02-15T06:59:42Z +8502,2005-07-29T09:15:41Z,2149,457,2005-07-30T10:41:41Z,1,2020-02-15T06:59:42Z +8503,2005-07-29T09:16:50Z,1164,240,2005-08-04T11:34:50Z,2,2020-02-15T06:59:42Z +8504,2005-07-29T09:20:16Z,2295,561,2005-08-07T04:27:16Z,2,2020-02-15T06:59:42Z +8505,2005-07-29T09:22:52Z,1454,346,2005-08-06T05:23:52Z,1,2020-02-15T06:59:42Z +8506,2005-07-29T09:23:52Z,3714,506,2005-07-31T04:42:52Z,1,2020-02-15T06:59:42Z +8507,2005-07-29T09:29:44Z,3273,524,2005-08-07T05:48:44Z,2,2020-02-15T06:59:42Z +8508,2005-07-29T09:34:38Z,4173,484,2005-08-01T14:52:38Z,2,2020-02-15T06:59:42Z +8509,2005-07-29T09:38:19Z,1332,80,2005-08-04T11:45:19Z,1,2020-02-15T06:59:42Z +8510,2005-07-29T09:41:38Z,7,487,2005-08-05T05:30:38Z,2,2020-02-15T06:59:42Z +8511,2005-07-29T09:42:42Z,3667,598,2005-08-06T14:22:42Z,2,2020-02-15T06:59:42Z +8512,2005-07-29T09:48:03Z,4132,351,2005-07-31T13:40:03Z,1,2020-02-15T06:59:42Z +8513,2005-07-29T09:52:59Z,3156,142,2005-07-31T12:05:59Z,1,2020-02-15T06:59:42Z +8514,2005-07-29T09:53:33Z,3755,99,2005-07-30T06:34:33Z,2,2020-02-15T06:59:42Z +8515,2005-07-29T09:55:20Z,1071,477,2005-08-05T07:08:20Z,2,2020-02-15T06:59:42Z +8516,2005-07-29T10:00:03Z,981,337,2005-08-02T09:34:03Z,1,2020-02-15T06:59:42Z +8517,2005-07-29T10:00:48Z,2064,274,2005-08-06T14:37:48Z,2,2020-02-15T06:59:42Z +8518,2005-07-29T10:05:27Z,2311,385,2005-08-02T05:39:27Z,1,2020-02-15T06:59:42Z +8519,2005-07-29T10:09:43Z,1163,588,2005-08-03T08:14:43Z,2,2020-02-15T06:59:42Z +8520,2005-07-29T10:10:02Z,2440,103,2005-08-02T05:25:02Z,2,2020-02-15T06:59:42Z +8521,2005-07-29T10:12:45Z,2608,402,2005-08-07T04:37:45Z,2,2020-02-15T06:59:42Z +8522,2005-07-29T10:16:19Z,3636,363,2005-08-06T14:58:19Z,1,2020-02-15T06:59:42Z +8523,2005-07-29T10:18:27Z,3614,558,2005-08-04T09:31:27Z,1,2020-02-15T06:59:42Z +8524,2005-07-29T10:20:07Z,2110,124,2005-08-03T04:30:07Z,1,2020-02-15T06:59:42Z +8525,2005-07-29T10:20:19Z,1322,111,2005-07-30T05:49:19Z,2,2020-02-15T06:59:42Z +8526,2005-07-29T10:20:48Z,575,88,2005-08-03T14:15:48Z,1,2020-02-15T06:59:42Z +8527,2005-07-29T10:21:00Z,709,168,2005-08-05T16:05:00Z,2,2020-02-15T06:59:42Z +8528,2005-07-29T10:24:22Z,2107,428,2005-08-07T10:34:22Z,1,2020-02-15T06:59:42Z +8529,2005-07-29T10:24:31Z,1055,501,2005-08-01T16:06:31Z,1,2020-02-15T06:59:42Z +8530,2005-07-29T10:26:14Z,4528,233,2005-07-31T10:24:14Z,1,2020-02-15T06:59:42Z +8531,2005-07-29T10:26:15Z,1631,427,2005-08-06T09:28:15Z,1,2020-02-15T06:59:42Z +8532,2005-07-29T10:26:56Z,3045,546,2005-08-02T13:23:56Z,2,2020-02-15T06:59:42Z +8533,2005-07-29T10:29:16Z,551,542,2005-08-01T06:52:16Z,1,2020-02-15T06:59:42Z +8534,2005-07-29T10:30:13Z,4029,516,2005-08-02T04:47:13Z,1,2020-02-15T06:59:42Z +8535,2005-07-29T10:32:33Z,4489,536,2005-07-31T05:46:33Z,1,2020-02-15T06:59:42Z +8536,2005-07-29T10:37:23Z,4510,219,2005-07-31T07:21:23Z,2,2020-02-15T06:59:42Z +8537,2005-07-29T10:44:54Z,1012,447,2005-08-06T14:55:54Z,2,2020-02-15T06:59:42Z +8538,2005-07-29T10:45:17Z,3768,500,2005-08-04T15:12:17Z,1,2020-02-15T06:59:42Z +8539,2005-07-29T10:48:24Z,599,325,2005-07-30T06:29:24Z,2,2020-02-15T06:59:42Z +8540,2005-07-29T10:52:51Z,539,180,2005-08-07T11:44:51Z,2,2020-02-15T06:59:42Z +8541,2005-07-29T10:55:01Z,976,340,2005-07-31T10:53:01Z,1,2020-02-15T06:59:42Z +8542,2005-07-29T11:01:50Z,792,213,2005-07-30T08:19:50Z,1,2020-02-15T06:59:42Z +8543,2005-07-29T11:01:57Z,403,346,2005-08-03T06:03:57Z,1,2020-02-15T06:59:42Z +8544,2005-07-29T11:02:08Z,412,542,2005-08-06T15:06:08Z,2,2020-02-15T06:59:42Z +8545,2005-07-29T11:07:04Z,3261,3,2005-08-06T13:30:04Z,2,2020-02-15T06:59:42Z +8546,2005-07-29T11:08:48Z,3224,418,2005-08-03T16:50:48Z,2,2020-02-15T06:59:42Z +8547,2005-07-29T11:10:15Z,875,438,2005-08-03T12:50:15Z,1,2020-02-15T06:59:42Z +8548,2005-07-29T11:11:33Z,3366,14,2005-08-04T11:52:33Z,2,2020-02-15T06:59:42Z +8549,2005-07-29T11:12:13Z,1866,206,2005-08-06T06:04:13Z,2,2020-02-15T06:59:42Z +8550,2005-07-29T11:12:37Z,1340,70,2005-07-30T15:05:37Z,2,2020-02-15T06:59:42Z +8551,2005-07-29T11:13:11Z,2083,340,2005-08-05T05:17:11Z,2,2020-02-15T06:59:42Z +8552,2005-07-29T11:14:02Z,1987,490,2005-08-05T14:13:02Z,2,2020-02-15T06:59:42Z +8553,2005-07-29T11:15:36Z,2645,49,2005-08-07T16:37:36Z,1,2020-02-15T06:59:42Z +8554,2005-07-29T11:16:29Z,1563,582,2005-07-31T06:38:29Z,2,2020-02-15T06:59:42Z +8555,2005-07-29T11:18:01Z,2784,18,2005-07-30T10:47:01Z,2,2020-02-15T06:59:42Z +8556,2005-07-29T11:18:27Z,2793,231,2005-07-30T05:21:27Z,2,2020-02-15T06:59:42Z +8557,2005-07-29T11:19:59Z,1481,459,2005-08-07T12:50:59Z,1,2020-02-15T06:59:42Z +8558,2005-07-29T11:24:49Z,1160,169,2005-07-31T15:03:49Z,1,2020-02-15T06:59:42Z +8559,2005-07-29T11:25:54Z,2078,279,2005-08-04T10:16:54Z,2,2020-02-15T06:59:42Z +8560,2005-07-29T11:27:27Z,3499,430,2005-08-01T12:05:27Z,2,2020-02-15T06:59:42Z +8561,2005-07-29T11:29:12Z,2207,344,2005-08-05T09:17:12Z,1,2020-02-15T06:59:42Z +8562,2005-07-29T11:32:13Z,3595,255,2005-07-30T08:23:13Z,2,2020-02-15T06:59:42Z +8563,2005-07-29T11:32:58Z,61,67,2005-08-05T07:21:58Z,2,2020-02-15T06:59:42Z +8564,2005-07-29T11:33:00Z,2830,316,2005-08-05T15:35:00Z,1,2020-02-15T06:59:42Z +8565,2005-07-29T11:35:23Z,3211,280,2005-08-06T08:28:23Z,1,2020-02-15T06:59:42Z +8566,2005-07-29T11:35:46Z,2011,544,2005-07-30T13:50:46Z,1,2020-02-15T06:59:42Z +8567,2005-07-29T11:37:30Z,1612,594,2005-08-03T05:58:30Z,2,2020-02-15T06:59:42Z +8568,2005-07-29T11:38:22Z,1599,583,2005-08-04T13:22:22Z,2,2020-02-15T06:59:42Z +8569,2005-07-29T11:39:17Z,276,348,2005-07-31T07:50:17Z,2,2020-02-15T06:59:42Z +8570,2005-07-29T11:40:08Z,3094,131,2005-08-06T10:23:08Z,1,2020-02-15T06:59:42Z +8571,2005-07-29T11:48:39Z,1778,407,2005-08-03T06:35:39Z,2,2020-02-15T06:59:42Z +8572,2005-07-29T11:51:24Z,2815,267,2005-08-02T11:44:24Z,1,2020-02-15T06:59:42Z +8573,2005-07-29T11:51:25Z,1637,179,2005-08-07T08:53:25Z,1,2020-02-15T06:59:42Z +8574,2005-07-29T11:51:53Z,2949,71,2005-08-03T05:59:53Z,2,2020-02-15T06:59:42Z +8575,2005-07-29T11:52:47Z,1668,441,2005-08-03T08:14:47Z,2,2020-02-15T06:59:42Z +8576,2005-07-29T11:55:01Z,3552,157,2005-08-03T08:41:01Z,2,2020-02-15T06:59:42Z +8577,2005-07-29T11:56:30Z,520,328,2005-08-07T15:41:30Z,1,2020-02-15T06:59:42Z +8578,2005-07-29T11:58:14Z,3737,148,2005-08-03T06:25:14Z,1,2020-02-15T06:59:42Z +8579,2005-07-29T11:59:22Z,4045,250,2005-07-30T11:41:22Z,2,2020-02-15T06:59:42Z +8580,2005-07-29T12:00:27Z,4040,543,2005-08-04T16:39:27Z,1,2020-02-15T06:59:42Z +8581,2005-07-29T12:02:06Z,2102,254,2005-08-02T10:32:06Z,2,2020-02-15T06:59:42Z +8582,2005-07-29T12:03:27Z,841,162,2005-08-03T07:02:27Z,1,2020-02-15T06:59:42Z +8583,2005-07-29T12:04:50Z,3130,191,2005-08-04T17:21:50Z,1,2020-02-15T06:59:42Z +8584,2005-07-29T12:07:53Z,1656,482,2005-07-31T09:27:53Z,1,2020-02-15T06:59:42Z +8585,2005-07-29T12:14:18Z,512,516,2005-08-03T08:31:18Z,2,2020-02-15T06:59:42Z +8586,2005-07-29T12:16:34Z,2752,374,2005-08-07T06:48:34Z,1,2020-02-15T06:59:42Z +8587,2005-07-29T12:18:40Z,1941,108,2005-08-03T14:01:40Z,1,2020-02-15T06:59:42Z +8588,2005-07-29T12:22:20Z,2858,416,2005-07-31T10:49:20Z,1,2020-02-15T06:59:42Z +8589,2005-07-29T12:28:17Z,1628,293,2005-08-05T11:40:17Z,1,2020-02-15T06:59:42Z +8590,2005-07-29T12:32:20Z,2505,114,2005-08-07T08:00:20Z,1,2020-02-15T06:59:42Z +8591,2005-07-29T12:32:33Z,2568,418,2005-08-01T16:19:33Z,2,2020-02-15T06:59:42Z +8592,2005-07-29T12:33:58Z,1952,271,2005-08-04T07:14:58Z,2,2020-02-15T06:59:42Z +8593,2005-07-29T12:38:14Z,2601,181,2005-08-07T07:04:14Z,1,2020-02-15T06:59:42Z +8594,2005-07-29T12:42:13Z,4155,115,2005-08-02T07:38:13Z,1,2020-02-15T06:59:42Z +8595,2005-07-29T12:47:43Z,3225,423,2005-08-07T13:51:43Z,2,2020-02-15T06:59:42Z +8596,2005-07-29T12:48:54Z,59,233,2005-08-04T07:19:54Z,2,2020-02-15T06:59:42Z +8597,2005-07-29T12:55:55Z,4218,222,2005-08-05T18:54:55Z,1,2020-02-15T06:59:42Z +8598,2005-07-29T12:56:59Z,626,2,2005-08-01T08:39:59Z,2,2020-02-15T06:59:42Z +8599,2005-07-29T12:58:52Z,1169,545,2005-08-03T08:19:52Z,1,2020-02-15T06:59:42Z +8600,2005-07-29T13:01:19Z,1488,226,2005-07-31T15:40:19Z,2,2020-02-15T06:59:42Z +8601,2005-07-29T13:03:31Z,3247,181,2005-08-06T16:32:31Z,1,2020-02-15T06:59:42Z +8602,2005-07-29T13:04:27Z,4002,64,2005-08-03T12:21:27Z,2,2020-02-15T06:59:42Z +8603,2005-07-29T13:07:07Z,3007,594,2005-08-04T18:32:07Z,2,2020-02-15T06:59:42Z +8604,2005-07-29T13:07:13Z,3909,326,2005-07-31T18:00:13Z,2,2020-02-15T06:59:42Z +8605,2005-07-29T13:13:34Z,3805,224,2005-08-07T08:29:34Z,1,2020-02-15T06:59:42Z +8606,2005-07-29T13:14:24Z,4051,340,2005-07-30T14:52:24Z,1,2020-02-15T06:59:42Z +8607,2005-07-29T13:18:00Z,4290,336,2005-07-30T18:51:00Z,2,2020-02-15T06:59:42Z +8608,2005-07-29T13:18:52Z,2976,165,2005-07-30T19:01:52Z,2,2020-02-15T06:59:42Z +8609,2005-07-29T13:19:25Z,3997,354,2005-08-06T08:33:25Z,2,2020-02-15T06:59:42Z +8610,2005-07-29T13:25:02Z,4222,563,2005-08-03T08:10:02Z,2,2020-02-15T06:59:42Z +8611,2005-07-29T13:26:21Z,610,373,2005-08-07T18:20:21Z,2,2020-02-15T06:59:42Z +8612,2005-07-29T13:28:20Z,3518,392,2005-08-06T14:39:20Z,2,2020-02-15T06:59:42Z +8613,2005-07-29T13:30:58Z,394,411,2005-08-05T16:21:58Z,2,2020-02-15T06:59:42Z +8614,2005-07-29T13:32:05Z,604,552,2005-08-04T15:26:05Z,1,2020-02-15T06:59:42Z +8615,2005-07-29T13:36:01Z,4453,15,2005-08-03T13:15:01Z,1,2020-02-15T06:59:42Z +8616,2005-07-29T13:39:09Z,2583,493,2005-08-01T16:49:09Z,1,2020-02-15T06:59:42Z +8617,2005-07-29T13:46:14Z,385,441,2005-08-06T13:26:14Z,2,2020-02-15T06:59:42Z +8618,2005-07-29T13:48:20Z,985,270,2005-08-06T14:12:20Z,2,2020-02-15T06:59:42Z +8619,2005-07-29T13:50:08Z,2169,50,2005-08-06T13:15:08Z,1,2020-02-15T06:59:42Z +8620,2005-07-29T13:51:20Z,3718,306,2005-08-02T13:05:20Z,1,2020-02-15T06:59:42Z +8621,2005-07-29T13:52:42Z,2473,358,2005-07-30T11:42:42Z,2,2020-02-15T06:59:42Z +8622,2005-07-29T13:53:28Z,4076,98,2005-07-31T16:12:28Z,2,2020-02-15T06:59:42Z +8623,2005-07-29T13:55:11Z,458,142,2005-08-05T11:16:11Z,1,2020-02-15T06:59:42Z +8624,2005-07-29T13:55:36Z,4402,439,2005-08-02T12:23:36Z,2,2020-02-15T06:59:42Z +8625,2005-07-29T13:59:13Z,884,410,2005-08-07T17:56:13Z,2,2020-02-15T06:59:42Z +8626,2005-07-29T14:03:20Z,3092,148,2005-08-02T09:05:20Z,1,2020-02-15T06:59:42Z +8627,2005-07-29T14:05:12Z,4235,226,2005-08-05T16:53:12Z,2,2020-02-15T06:59:42Z +8628,2005-07-29T14:06:24Z,4484,550,2005-08-06T10:42:24Z,2,2020-02-15T06:59:42Z +8629,2005-07-29T14:06:35Z,853,567,2005-08-03T16:59:35Z,2,2020-02-15T06:59:42Z +8630,2005-07-29T14:07:59Z,1378,406,2005-08-03T13:18:59Z,2,2020-02-15T06:59:42Z +8631,2005-07-29T14:08:06Z,98,559,2005-08-05T14:57:06Z,1,2020-02-15T06:59:42Z +8632,2005-07-29T14:11:25Z,1666,563,2005-08-07T15:32:25Z,1,2020-02-15T06:59:42Z +8633,2005-07-29T14:19:53Z,3436,534,2005-08-01T11:31:53Z,2,2020-02-15T06:59:42Z +8634,2005-07-29T14:19:57Z,2023,335,2005-08-07T13:44:57Z,1,2020-02-15T06:59:42Z +8635,2005-07-29T14:22:48Z,2894,383,2005-08-01T11:59:48Z,2,2020-02-15T06:59:42Z +8636,2005-07-29T14:24:13Z,4308,252,2005-08-02T14:39:13Z,1,2020-02-15T06:59:42Z +8637,2005-07-29T14:30:11Z,1069,310,2005-08-04T14:00:11Z,1,2020-02-15T06:59:42Z +8638,2005-07-29T14:30:23Z,4060,571,2005-08-01T10:32:23Z,1,2020-02-15T06:59:42Z +8639,2005-07-29T14:30:31Z,3504,290,2005-08-02T16:04:31Z,1,2020-02-15T06:59:42Z +8640,2005-07-29T14:34:17Z,1874,257,2005-08-01T13:09:17Z,2,2020-02-15T06:59:42Z +8641,2005-07-29T14:37:30Z,3199,30,2005-08-02T19:32:30Z,2,2020-02-15T06:59:42Z +8642,2005-07-29T14:38:17Z,3947,522,2005-08-03T14:41:17Z,1,2020-02-15T06:59:42Z +8643,2005-07-29T14:45:23Z,381,59,2005-08-04T18:42:23Z,1,2020-02-15T06:59:42Z +8644,2005-07-29T14:45:45Z,4507,314,2005-08-03T20:10:45Z,2,2020-02-15T06:59:42Z +8645,2005-07-29T14:47:45Z,2532,535,2005-07-30T14:56:45Z,2,2020-02-15T06:59:42Z +8646,2005-07-29T14:48:48Z,89,302,2005-08-03T18:11:48Z,2,2020-02-15T06:59:42Z +8647,2005-07-29T14:52:59Z,556,307,2005-08-06T11:09:59Z,2,2020-02-15T06:59:42Z +8648,2005-07-29T14:56:21Z,160,416,2005-07-31T16:56:21Z,2,2020-02-15T06:59:42Z +8649,2005-07-29T14:57:33Z,789,69,2005-08-07T09:43:33Z,2,2020-02-15T06:59:42Z +8650,2005-07-29T14:59:04Z,1272,134,2005-08-04T13:13:04Z,2,2020-02-15T06:59:42Z +8651,2005-07-29T15:02:18Z,2095,61,2005-08-07T09:34:18Z,2,2020-02-15T06:59:42Z +8652,2005-07-29T15:02:54Z,2729,219,2005-08-07T17:21:54Z,2,2020-02-15T06:59:42Z +8653,2005-07-29T15:04:23Z,4440,230,2005-08-02T09:39:23Z,2,2020-02-15T06:59:42Z +8654,2005-07-29T15:04:27Z,3925,84,2005-08-07T18:37:27Z,1,2020-02-15T06:59:42Z +8655,2005-07-29T15:04:42Z,3986,232,2005-08-04T11:26:42Z,1,2020-02-15T06:59:42Z +8656,2005-07-29T15:05:52Z,1385,460,2005-07-31T20:57:52Z,2,2020-02-15T06:59:42Z +8657,2005-07-29T15:09:25Z,3194,236,2005-07-31T19:10:25Z,1,2020-02-15T06:59:42Z +8658,2005-07-29T15:16:37Z,2033,427,2005-08-07T20:45:37Z,2,2020-02-15T06:59:42Z +8659,2005-07-29T15:26:31Z,558,168,2005-08-06T19:05:31Z,2,2020-02-15T06:59:42Z +8660,2005-07-29T15:26:59Z,3122,566,2005-08-05T21:04:59Z,2,2020-02-15T06:59:42Z +8661,2005-07-29T15:28:24Z,3409,341,2005-08-05T20:04:24Z,2,2020-02-15T06:59:42Z +8662,2005-07-29T15:31:33Z,3758,362,2005-07-30T09:39:33Z,2,2020-02-15T06:59:42Z +8663,2005-07-29T15:33:18Z,1281,214,2005-07-30T18:03:18Z,1,2020-02-15T06:59:42Z +8664,2005-07-29T15:36:27Z,198,102,2005-08-04T20:11:27Z,1,2020-02-15T06:59:42Z +8665,2005-07-29T15:39:29Z,1113,265,2005-08-01T10:33:29Z,2,2020-02-15T06:59:42Z +8666,2005-07-29T15:39:38Z,3669,591,2005-08-06T17:12:38Z,1,2020-02-15T06:59:42Z +8667,2005-07-29T15:40:57Z,3439,25,2005-07-31T20:59:57Z,1,2020-02-15T06:59:42Z +8668,2005-07-29T15:41:31Z,4531,71,2005-08-01T16:20:31Z,2,2020-02-15T06:59:42Z +8669,2005-07-29T15:44:55Z,1667,401,2005-08-01T14:09:55Z,2,2020-02-15T06:59:42Z +8670,2005-07-29T15:49:03Z,2354,446,2005-08-01T20:19:03Z,2,2020-02-15T06:59:42Z +8671,2005-07-29T15:49:37Z,1431,577,2005-08-05T18:20:37Z,1,2020-02-15T06:59:42Z +8672,2005-07-29T15:49:48Z,405,495,2005-08-06T17:59:48Z,2,2020-02-15T06:59:42Z +8673,2005-07-29T15:50:14Z,2167,29,2005-08-03T18:30:14Z,1,2020-02-15T06:59:42Z +8674,2005-07-29T15:54:22Z,1744,412,2005-07-31T12:15:22Z,1,2020-02-15T06:59:42Z +8675,2005-07-29T15:56:18Z,1026,258,2005-07-30T18:50:18Z,1,2020-02-15T06:59:42Z +8676,2005-07-29T15:59:06Z,283,533,2005-08-05T19:12:06Z,2,2020-02-15T06:59:42Z +8677,2005-07-29T16:01:13Z,513,315,2005-08-07T19:21:13Z,2,2020-02-15T06:59:42Z +8678,2005-07-29T16:04:00Z,3991,210,2005-08-05T12:37:00Z,1,2020-02-15T06:59:42Z +8679,2005-07-29T16:07:47Z,3549,536,2005-08-02T18:37:47Z,1,2020-02-15T06:59:42Z +8680,2005-07-29T16:08:03Z,1227,330,2005-07-31T17:26:03Z,1,2020-02-15T06:59:42Z +8681,2005-07-29T16:12:01Z,4004,309,2005-08-01T18:14:01Z,2,2020-02-15T06:59:42Z +8682,2005-07-29T16:15:26Z,4328,348,2005-08-03T20:15:26Z,2,2020-02-15T06:59:42Z +8683,2005-07-29T16:15:43Z,3915,513,2005-08-07T19:19:43Z,1,2020-02-15T06:59:42Z +8684,2005-07-29T16:16:33Z,2457,185,2005-08-07T12:27:33Z,2,2020-02-15T06:59:42Z +8685,2005-07-29T16:17:05Z,1827,321,2005-08-07T17:44:05Z,1,2020-02-15T06:59:42Z +8686,2005-07-29T16:17:49Z,4160,52,2005-08-01T12:50:49Z,2,2020-02-15T06:59:42Z +8687,2005-07-29T16:19:17Z,222,117,2005-08-01T15:28:17Z,1,2020-02-15T06:59:42Z +8688,2005-07-29T16:31:32Z,2263,381,2005-07-30T12:39:32Z,1,2020-02-15T06:59:42Z +8689,2005-07-29T16:38:58Z,824,487,2005-08-01T17:09:58Z,2,2020-02-15T06:59:42Z +8690,2005-07-29T16:39:28Z,1292,291,2005-08-01T14:03:28Z,2,2020-02-15T06:59:42Z +8691,2005-07-29T16:41:23Z,672,446,2005-08-02T12:32:23Z,2,2020-02-15T06:59:42Z +8692,2005-07-29T16:43:39Z,3192,88,2005-08-01T15:54:39Z,2,2020-02-15T06:59:42Z +8693,2005-07-29T16:44:13Z,917,51,2005-08-01T15:56:13Z,1,2020-02-15T06:59:42Z +8694,2005-07-29T16:44:48Z,503,345,2005-08-06T16:28:48Z,1,2020-02-15T06:59:42Z +8695,2005-07-29T16:44:55Z,694,280,2005-08-07T12:47:55Z,1,2020-02-15T06:59:42Z +8696,2005-07-29T16:45:18Z,2553,178,2005-08-07T18:51:18Z,1,2020-02-15T06:59:42Z +8697,2005-07-29T16:46:07Z,443,291,2005-08-02T19:27:07Z,2,2020-02-15T06:59:42Z +8698,2005-07-29T16:52:17Z,2973,324,2005-08-04T13:20:17Z,2,2020-02-15T06:59:42Z +8699,2005-07-29T16:53:00Z,4080,123,2005-08-07T20:31:00Z,1,2020-02-15T06:59:42Z +8700,2005-07-29T16:56:01Z,3710,196,2005-07-31T16:19:01Z,2,2020-02-15T06:59:42Z +8701,2005-07-29T17:02:35Z,3158,245,2005-08-07T19:55:35Z,2,2020-02-15T06:59:42Z +8702,2005-07-29T17:04:37Z,2215,306,2005-08-05T15:30:37Z,2,2020-02-15T06:59:42Z +8703,2005-07-29T17:12:44Z,1065,439,2005-07-30T19:38:44Z,1,2020-02-15T06:59:42Z +8704,2005-07-29T17:13:45Z,2117,107,2005-08-03T20:03:45Z,2,2020-02-15T06:59:42Z +8705,2005-07-29T17:14:29Z,4038,2,2005-08-02T16:01:29Z,1,2020-02-15T06:59:42Z +8706,2005-07-29T17:19:15Z,2886,515,2005-08-03T22:52:15Z,1,2020-02-15T06:59:42Z +8707,2005-07-29T17:21:58Z,2525,157,2005-08-02T14:47:58Z,2,2020-02-15T06:59:42Z +8708,2005-07-29T17:24:13Z,4054,529,2005-08-04T13:57:13Z,1,2020-02-15T06:59:42Z +8709,2005-07-29T17:25:54Z,902,199,2005-08-02T22:35:54Z,1,2020-02-15T06:59:42Z +8710,2005-07-29T17:26:03Z,3391,566,2005-07-30T19:51:03Z,1,2020-02-15T06:59:42Z +8711,2005-07-29T17:27:15Z,3471,575,2005-07-31T12:57:15Z,1,2020-02-15T06:59:42Z +8712,2005-07-29T17:30:06Z,2800,41,2005-08-03T22:55:06Z,2,2020-02-15T06:59:42Z +8713,2005-07-29T17:31:19Z,473,433,2005-08-02T16:37:19Z,2,2020-02-15T06:59:42Z +8714,2005-07-29T17:31:40Z,4547,362,2005-08-04T16:12:40Z,2,2020-02-15T06:59:42Z +8715,2005-07-29T17:33:45Z,860,11,2005-08-01T17:30:45Z,1,2020-02-15T06:59:42Z +8716,2005-07-29T17:39:09Z,2123,48,2005-08-03T20:26:09Z,2,2020-02-15T06:59:42Z +8717,2005-07-29T17:40:45Z,1821,260,2005-08-01T22:38:45Z,2,2020-02-15T06:59:42Z +8718,2005-07-29T17:41:14Z,137,23,2005-08-01T18:22:14Z,2,2020-02-15T06:59:42Z +8719,2005-07-29T17:45:45Z,995,333,2005-08-01T13:53:45Z,1,2020-02-15T06:59:42Z +8720,2005-07-29T17:48:32Z,152,180,2005-08-04T14:30:32Z,2,2020-02-15T06:59:42Z +8721,2005-07-29T17:56:21Z,2416,312,2005-08-02T21:30:21Z,2,2020-02-15T06:59:42Z +8722,2005-07-29T17:58:58Z,1389,401,2005-08-07T23:40:58Z,1,2020-02-15T06:59:42Z +8723,2005-07-29T18:03:47Z,224,39,2005-08-06T18:53:47Z,1,2020-02-15T06:59:42Z +8724,2005-07-29T18:05:21Z,898,372,2005-08-01T15:41:21Z,1,2020-02-15T06:59:42Z +8725,2005-07-29T18:08:42Z,2385,421,2005-08-04T16:01:42Z,2,2020-02-15T06:59:42Z +8726,2005-07-29T18:09:22Z,897,409,2005-08-06T16:24:22Z,1,2020-02-15T06:59:42Z +8727,2005-07-29T18:09:57Z,3031,528,2005-08-03T13:41:57Z,2,2020-02-15T06:59:42Z +8728,2005-07-29T18:12:49Z,973,341,2005-08-06T22:45:49Z,1,2020-02-15T06:59:42Z +8729,2005-07-29T18:23:02Z,3342,83,2005-07-31T16:09:02Z,2,2020-02-15T06:59:42Z +8730,2005-07-29T18:23:34Z,4191,592,2005-08-01T19:56:34Z,1,2020-02-15T06:59:42Z +8731,2005-07-29T18:23:57Z,2638,179,2005-08-05T19:38:57Z,1,2020-02-15T06:59:42Z +8732,2005-07-29T18:25:03Z,1143,346,2005-08-07T18:56:03Z,2,2020-02-15T06:59:42Z +8733,2005-07-29T18:26:34Z,3187,450,2005-08-03T15:06:34Z,1,2020-02-15T06:59:42Z +8734,2005-07-29T18:28:15Z,2374,303,2005-08-05T23:38:15Z,1,2020-02-15T06:59:42Z +8735,2005-07-29T18:28:54Z,2881,570,2005-08-03T12:43:54Z,2,2020-02-15T06:59:42Z +8736,2005-07-29T18:31:15Z,1726,530,2005-07-30T16:24:15Z,2,2020-02-15T06:59:42Z +8737,2005-07-29T18:32:13Z,4154,298,2005-08-05T21:07:13Z,2,2020-02-15T06:59:42Z +8738,2005-07-29T18:32:47Z,3893,210,2005-08-02T13:05:47Z,2,2020-02-15T06:59:42Z +8739,2005-07-29T18:34:33Z,4310,326,2005-08-02T16:05:33Z,1,2020-02-15T06:59:42Z +8740,2005-07-29T18:41:31Z,3781,378,2005-08-01T18:38:31Z,1,2020-02-15T06:59:42Z +8741,2005-07-29T18:44:57Z,165,4,2005-08-03T18:25:57Z,2,2020-02-15T06:59:42Z +8742,2005-07-29T18:56:12Z,918,208,2005-08-03T16:42:12Z,1,2020-02-15T06:59:42Z +8743,2005-07-29T18:57:01Z,2664,282,2005-07-31T22:09:01Z,2,2020-02-15T06:59:42Z +8744,2005-07-29T18:58:24Z,1086,280,2005-08-05T17:56:24Z,1,2020-02-15T06:59:42Z +8745,2005-07-29T19:03:05Z,1766,293,2005-08-06T14:06:05Z,2,2020-02-15T06:59:42Z +8746,2005-07-29T19:03:15Z,2179,275,2005-07-30T17:06:15Z,1,2020-02-15T06:59:42Z +8747,2005-07-29T19:07:57Z,2584,70,2005-07-30T16:01:57Z,1,2020-02-15T06:59:42Z +8748,2005-07-29T19:08:37Z,2184,237,2005-08-01T16:24:37Z,1,2020-02-15T06:59:42Z +8749,2005-07-29T19:13:15Z,2252,456,2005-08-01T15:02:15Z,1,2020-02-15T06:59:42Z +8750,2005-07-29T19:14:21Z,3157,158,2005-07-31T17:22:21Z,2,2020-02-15T06:59:42Z +8751,2005-07-29T19:14:39Z,3467,386,2005-07-31T23:11:39Z,1,2020-02-15T06:59:42Z +8752,2005-07-29T19:15:07Z,4202,253,2005-07-31T13:27:07Z,1,2020-02-15T06:59:42Z +8753,2005-07-29T19:15:50Z,1345,560,2005-07-31T19:13:50Z,2,2020-02-15T06:59:42Z +8754,2005-07-29T19:18:30Z,1678,174,2005-08-05T18:39:30Z,2,2020-02-15T06:59:42Z +8755,2005-07-29T19:18:31Z,1498,372,2005-07-31T19:20:31Z,2,2020-02-15T06:59:42Z +8756,2005-07-29T19:18:57Z,4146,120,2005-08-02T20:07:57Z,2,2020-02-15T06:59:42Z +8757,2005-07-29T19:19:10Z,3473,462,2005-08-02T13:47:10Z,2,2020-02-15T06:59:42Z +8758,2005-07-29T19:20:49Z,2816,442,2005-08-05T21:57:49Z,2,2020-02-15T06:59:42Z +8759,2005-07-29T19:22:37Z,844,209,2005-08-07T15:36:37Z,2,2020-02-15T06:59:42Z +8760,2005-07-29T19:22:40Z,3566,118,2005-08-05T01:09:40Z,2,2020-02-15T06:59:42Z +8761,2005-07-29T19:26:47Z,1317,539,2005-08-08T00:09:47Z,1,2020-02-15T06:59:42Z +8762,2005-07-29T19:30:02Z,2765,463,2005-08-04T18:38:02Z,1,2020-02-15T06:59:42Z +8763,2005-07-29T19:38:24Z,374,510,2005-08-04T16:51:24Z,1,2020-02-15T06:59:42Z +8764,2005-07-29T19:39:04Z,2348,303,2005-08-01T13:52:04Z,1,2020-02-15T06:59:42Z +8765,2005-07-29T19:40:08Z,2631,538,2005-07-31T14:24:08Z,2,2020-02-15T06:59:42Z +8766,2005-07-29T19:41:04Z,3888,338,2005-08-02T00:41:04Z,2,2020-02-15T06:59:42Z +8767,2005-07-29T19:42:33Z,962,467,2005-08-01T20:52:33Z,2,2020-02-15T06:59:42Z +8768,2005-07-29T19:43:02Z,1601,468,2005-08-03T23:36:02Z,1,2020-02-15T06:59:42Z +8769,2005-07-29T19:45:33Z,2180,588,2005-08-05T22:09:33Z,2,2020-02-15T06:59:42Z +8770,2005-07-29T19:53:50Z,4025,499,2005-08-05T14:22:50Z,1,2020-02-15T06:59:42Z +8771,2005-07-29T19:54:41Z,3533,347,2005-08-03T20:38:41Z,1,2020-02-15T06:59:42Z +8772,2005-07-29T19:55:25Z,3526,122,2005-08-05T18:48:25Z,1,2020-02-15T06:59:42Z +8773,2005-07-29T19:55:34Z,131,592,2005-07-30T14:11:34Z,1,2020-02-15T06:59:42Z +8774,2005-07-29T20:05:04Z,315,161,2005-07-31T14:32:04Z,1,2020-02-15T06:59:42Z +8775,2005-07-29T20:05:38Z,1358,44,2005-07-30T21:13:38Z,1,2020-02-15T06:59:42Z +8776,2005-07-29T20:07:06Z,1565,587,2005-08-06T20:42:06Z,2,2020-02-15T06:59:42Z +8777,2005-07-29T20:10:21Z,2462,382,2005-07-30T20:32:21Z,2,2020-02-15T06:59:42Z +8778,2005-07-29T20:14:25Z,3654,582,2005-08-04T00:50:25Z,1,2020-02-15T06:59:42Z +8779,2005-07-29T20:15:00Z,3245,202,2005-08-03T21:17:00Z,1,2020-02-15T06:59:42Z +8780,2005-07-29T20:19:45Z,1095,328,2005-08-03T22:22:45Z,2,2020-02-15T06:59:42Z +8781,2005-07-29T20:20:16Z,3746,235,2005-07-30T16:19:16Z,2,2020-02-15T06:59:42Z +8782,2005-07-29T20:29:34Z,4379,365,2005-08-04T02:19:34Z,1,2020-02-15T06:59:42Z +8783,2005-07-29T20:31:28Z,2316,71,2005-08-02T19:33:28Z,2,2020-02-15T06:59:42Z +8784,2005-07-29T20:35:37Z,2308,580,2005-07-30T17:22:37Z,1,2020-02-15T06:59:42Z +8785,2005-07-29T20:36:26Z,216,42,2005-07-30T15:06:26Z,1,2020-02-15T06:59:42Z +8786,2005-07-29T20:39:49Z,2404,533,2005-08-03T18:08:49Z,1,2020-02-15T06:59:42Z +8787,2005-07-29T20:43:49Z,2366,222,2005-07-31T15:15:49Z,1,2020-02-15T06:59:42Z +8788,2005-07-29T20:46:44Z,3412,121,2005-08-03T02:25:44Z,2,2020-02-15T06:59:42Z +8789,2005-07-29T20:47:27Z,3062,71,2005-08-05T18:36:27Z,1,2020-02-15T06:59:42Z +8790,2005-07-29T20:51:41Z,751,323,2005-07-30T17:30:41Z,2,2020-02-15T06:59:42Z +8791,2005-07-29T20:53:23Z,1677,469,2005-07-31T18:14:23Z,1,2020-02-15T06:59:42Z +8792,2005-07-29T20:56:14Z,3764,203,2005-08-07T16:44:14Z,2,2020-02-15T06:59:42Z +8793,2005-07-29T20:57:22Z,1819,167,2005-08-02T01:40:22Z,2,2020-02-15T06:59:42Z +8794,2005-07-29T20:59:38Z,3509,320,2005-07-31T00:15:38Z,2,2020-02-15T06:59:42Z +8795,2005-07-29T21:04:14Z,1896,302,2005-07-31T02:58:14Z,2,2020-02-15T06:59:42Z +8796,2005-07-29T21:09:11Z,2234,74,2005-08-04T22:55:11Z,1,2020-02-15T06:59:42Z +8797,2005-07-29T21:10:37Z,2929,566,2005-08-07T21:43:37Z,1,2020-02-15T06:59:42Z +8798,2005-07-29T21:15:38Z,800,513,2005-08-05T02:46:38Z,2,2020-02-15T06:59:42Z +8799,2005-07-29T21:16:47Z,326,237,2005-08-07T22:09:47Z,2,2020-02-15T06:59:42Z +8800,2005-07-29T21:18:59Z,2082,207,2005-08-06T19:59:59Z,2,2020-02-15T06:59:42Z +8801,2005-07-29T21:25:22Z,1111,590,2005-08-01T00:02:22Z,1,2020-02-15T06:59:42Z +8802,2005-07-29T21:25:51Z,296,407,2005-07-30T18:15:51Z,2,2020-02-15T06:59:42Z +8803,2005-07-29T21:26:24Z,2814,86,2005-08-06T18:05:24Z,2,2020-02-15T06:59:42Z +8804,2005-07-29T21:28:19Z,4461,363,2005-08-01T20:15:19Z,2,2020-02-15T06:59:42Z +8805,2005-07-29T21:29:58Z,4041,39,2005-08-04T23:12:58Z,1,2020-02-15T06:59:42Z +8806,2005-07-29T21:36:34Z,4085,454,2005-08-02T00:58:34Z,1,2020-02-15T06:59:42Z +8807,2005-07-29T21:36:59Z,2612,396,2005-08-01T17:40:59Z,1,2020-02-15T06:59:42Z +8808,2005-07-29T21:39:07Z,593,173,2005-08-03T02:09:07Z,2,2020-02-15T06:59:42Z +8809,2005-07-29T21:42:49Z,3278,8,2005-08-04T01:13:49Z,1,2020-02-15T06:59:42Z +8810,2005-07-29T21:45:19Z,1233,431,2005-08-08T01:45:19Z,2,2020-02-15T06:59:42Z +8811,2005-07-29T21:46:21Z,2041,245,2005-08-07T16:51:21Z,2,2020-02-15T06:59:42Z +8812,2005-07-29T21:47:40Z,1172,563,2005-08-04T01:18:40Z,2,2020-02-15T06:59:42Z +8813,2005-07-29T21:47:55Z,3442,497,2005-08-05T01:16:55Z,1,2020-02-15T06:59:42Z +8814,2005-07-29T21:49:43Z,1492,487,2005-08-01T19:56:43Z,1,2020-02-15T06:59:42Z +8815,2005-07-29T21:51:26Z,3469,230,2005-08-03T22:37:26Z,1,2020-02-15T06:59:42Z +8816,2005-07-29T21:53:00Z,3984,209,2005-08-01T21:20:00Z,1,2020-02-15T06:59:42Z +8817,2005-07-29T22:09:08Z,2716,175,2005-08-01T19:07:08Z,1,2020-02-15T06:59:42Z +8818,2005-07-29T22:14:04Z,3090,98,2005-08-07T17:26:04Z,1,2020-02-15T06:59:42Z +8819,2005-07-29T22:14:26Z,3100,591,2005-08-06T23:02:26Z,2,2020-02-15T06:59:42Z +8820,2005-07-29T22:14:56Z,481,594,2005-08-05T23:36:56Z,2,2020-02-15T06:59:42Z +8821,2005-07-29T22:18:12Z,52,477,2005-08-05T22:00:12Z,1,2020-02-15T06:59:42Z +8822,2005-07-29T22:20:21Z,744,35,2005-08-06T03:00:21Z,2,2020-02-15T06:59:42Z +8823,2005-07-29T22:22:12Z,951,75,2005-08-07T21:03:12Z,1,2020-02-15T06:59:42Z +8824,2005-07-29T22:22:58Z,3506,164,2005-07-31T21:02:58Z,2,2020-02-15T06:59:42Z +8825,2005-07-29T22:24:16Z,881,101,2005-08-05T00:27:16Z,2,2020-02-15T06:59:42Z +8826,2005-07-29T22:30:16Z,1800,369,2005-07-30T19:43:16Z,1,2020-02-15T06:59:42Z +8827,2005-07-29T22:31:24Z,1517,157,2005-08-06T21:05:24Z,2,2020-02-15T06:59:42Z +8828,2005-07-29T22:32:54Z,1608,547,2005-07-30T20:41:54Z,1,2020-02-15T06:59:42Z +8829,2005-07-29T22:33:34Z,1466,173,2005-08-05T20:23:34Z,2,2020-02-15T06:59:42Z +8830,2005-07-29T22:34:35Z,1751,202,2005-08-05T20:12:35Z,2,2020-02-15T06:59:42Z +8831,2005-07-29T22:37:41Z,3520,13,2005-08-08T04:28:41Z,1,2020-02-15T06:59:42Z +8832,2005-07-29T22:37:49Z,380,125,2005-08-04T23:32:49Z,1,2020-02-15T06:59:42Z +8833,2005-07-29T22:39:36Z,1741,101,2005-08-05T21:19:36Z,1,2020-02-15T06:59:42Z +8834,2005-07-29T22:41:48Z,4477,243,2005-08-05T03:21:48Z,2,2020-02-15T06:59:42Z +8835,2005-07-29T22:44:35Z,2653,237,2005-08-05T23:28:35Z,1,2020-02-15T06:59:42Z +8836,2005-07-29T22:46:08Z,3265,14,2005-08-02T19:53:08Z,2,2020-02-15T06:59:42Z +8837,2005-07-29T22:49:00Z,42,372,2005-08-07T21:56:00Z,2,2020-02-15T06:59:42Z +8838,2005-07-29T22:52:23Z,133,550,2005-08-03T22:49:23Z,1,2020-02-15T06:59:42Z +8839,2005-07-29T22:52:34Z,3440,580,2005-08-05T03:24:34Z,2,2020-02-15T06:59:42Z +8840,2005-07-29T22:55:38Z,1484,295,2005-08-06T02:11:38Z,1,2020-02-15T06:59:42Z +8841,2005-07-29T22:56:07Z,3935,363,2005-08-01T21:21:07Z,2,2020-02-15T06:59:42Z +8842,2005-07-29T23:03:40Z,4203,292,2005-08-06T23:23:40Z,2,2020-02-15T06:59:42Z +8843,2005-07-29T23:04:25Z,406,294,2005-08-05T22:12:25Z,1,2020-02-15T06:59:42Z +8844,2005-07-29T23:05:08Z,327,244,2005-08-06T00:24:08Z,2,2020-02-15T06:59:42Z +8845,2005-07-29T23:06:13Z,3036,543,2005-08-02T20:16:13Z,1,2020-02-15T06:59:42Z +8846,2005-07-29T23:10:28Z,2912,108,2005-08-03T22:07:28Z,2,2020-02-15T06:59:42Z +8847,2005-07-29T23:13:41Z,4133,480,2005-07-31T23:55:41Z,1,2020-02-15T06:59:42Z +8848,2005-07-29T23:20:58Z,2972,545,2005-08-03T17:28:58Z,2,2020-02-15T06:59:42Z +8849,2005-07-29T23:21:01Z,4300,79,2005-08-03T20:01:01Z,1,2020-02-15T06:59:42Z +8850,2005-07-29T23:24:20Z,355,86,2005-07-31T00:43:20Z,2,2020-02-15T06:59:42Z +8851,2005-07-29T23:26:19Z,212,445,2005-08-05T03:59:19Z,2,2020-02-15T06:59:42Z +8852,2005-07-29T23:30:03Z,1138,42,2005-08-05T05:22:03Z,2,2020-02-15T06:59:42Z +8853,2005-07-29T23:34:21Z,2323,58,2005-07-31T21:20:21Z,2,2020-02-15T06:59:42Z +8854,2005-07-29T23:40:07Z,1365,527,2005-08-01T00:35:07Z,2,2020-02-15T06:59:42Z +8855,2005-07-29T23:40:10Z,4388,335,2005-08-02T18:07:10Z,2,2020-02-15T06:59:42Z +8856,2005-07-29T23:42:00Z,2942,365,2005-08-07T03:00:00Z,1,2020-02-15T06:59:42Z +8857,2005-07-29T23:44:22Z,1348,477,2005-07-31T21:32:22Z,2,2020-02-15T06:59:42Z +8858,2005-07-29T23:44:35Z,2378,558,2005-08-01T05:25:35Z,2,2020-02-15T06:59:42Z +8859,2005-07-29T23:44:43Z,603,216,2005-08-07T18:14:43Z,2,2020-02-15T06:59:42Z +8860,2005-07-29T23:45:57Z,2841,531,2005-08-06T02:14:57Z,2,2020-02-15T06:59:42Z +8861,2005-07-29T23:47:29Z,759,560,2005-08-07T01:27:29Z,1,2020-02-15T06:59:42Z +8862,2005-07-29T23:49:23Z,916,21,2005-08-04T20:11:23Z,1,2020-02-15T06:59:42Z +8863,2005-07-29T23:52:01Z,75,47,2005-08-04T20:28:01Z,1,2020-02-15T06:59:42Z +8864,2005-07-29T23:52:12Z,2321,167,2005-07-30T22:12:12Z,1,2020-02-15T06:59:42Z +8865,2005-07-29T23:54:54Z,1835,305,2005-07-31T05:10:54Z,2,2020-02-15T06:59:42Z +8866,2005-07-29T23:58:19Z,1530,44,2005-08-01T05:19:19Z,2,2020-02-15T06:59:42Z +8867,2005-07-30T00:02:18Z,1388,497,2005-08-04T00:44:18Z,2,2020-02-15T06:59:42Z +8868,2005-07-30T00:02:26Z,1229,512,2005-08-01T22:28:26Z,2,2020-02-15T06:59:42Z +8869,2005-07-30T00:06:32Z,4353,308,2005-07-31T20:49:32Z,2,2020-02-15T06:59:42Z +8870,2005-07-30T00:08:08Z,4104,90,2005-08-08T00:15:08Z,2,2020-02-15T06:59:42Z +8871,2005-07-30T00:12:41Z,4535,382,2005-08-08T03:53:41Z,1,2020-02-15T06:59:42Z +8872,2005-07-30T00:13:54Z,2669,186,2005-08-01T18:34:54Z,1,2020-02-15T06:59:42Z +8873,2005-07-30T00:14:32Z,3498,91,2005-08-04T20:42:32Z,2,2020-02-15T06:59:42Z +8874,2005-07-30T00:14:45Z,459,564,2005-08-02T22:34:45Z,2,2020-02-15T06:59:42Z +8875,2005-07-30T00:15:09Z,1294,121,2005-08-04T02:54:09Z,2,2020-02-15T06:59:42Z +8876,2005-07-30T00:15:09Z,2394,579,2005-08-02T23:56:09Z,1,2020-02-15T06:59:42Z +8877,2005-07-30T00:15:22Z,1140,417,2005-07-31T00:53:22Z,1,2020-02-15T06:59:42Z +8878,2005-07-30T00:15:57Z,440,25,2005-08-01T00:22:57Z,2,2020-02-15T06:59:42Z +8879,2005-07-30T00:16:02Z,2956,584,2005-08-06T20:10:02Z,2,2020-02-15T06:59:42Z +8880,2005-07-30T00:16:55Z,2920,51,2005-08-01T01:05:55Z,1,2020-02-15T06:59:42Z +8881,2005-07-30T00:22:31Z,2012,118,2005-08-04T19:10:31Z,1,2020-02-15T06:59:42Z +8882,2005-07-30T00:24:05Z,441,410,2005-08-03T19:48:05Z,2,2020-02-15T06:59:42Z +8883,2005-07-30T00:24:48Z,1421,168,2005-08-04T00:24:48Z,2,2020-02-15T06:59:42Z +8884,2005-07-30T00:26:22Z,3050,80,2005-08-05T03:24:22Z,1,2020-02-15T06:59:42Z +8885,2005-07-30T00:36:26Z,2984,135,2005-08-06T03:05:26Z,1,2020-02-15T06:59:42Z +8886,2005-07-30T00:36:31Z,1469,418,2005-08-08T06:18:31Z,1,2020-02-15T06:59:42Z +8887,2005-07-30T00:36:54Z,4119,389,2005-08-04T19:07:54Z,1,2020-02-15T06:59:42Z +8888,2005-07-30T00:39:36Z,2824,284,2005-08-01T02:28:36Z,2,2020-02-15T06:59:42Z +8889,2005-07-30T00:39:43Z,3457,558,2005-08-02T23:22:43Z,1,2020-02-15T06:59:42Z +8890,2005-07-30T00:42:06Z,3656,470,2005-08-05T21:04:06Z,1,2020-02-15T06:59:42Z +8891,2005-07-30T00:46:55Z,4093,435,2005-08-06T23:32:55Z,2,2020-02-15T06:59:42Z +8892,2005-07-30T00:47:03Z,1584,184,2005-08-06T03:23:03Z,2,2020-02-15T06:59:42Z +8893,2005-07-30T00:48:19Z,1048,147,2005-08-01T03:25:19Z,1,2020-02-15T06:59:42Z +8894,2005-07-30T00:48:31Z,2055,552,2005-07-31T05:49:31Z,1,2020-02-15T06:59:42Z +8895,2005-07-30T00:49:17Z,3217,494,2005-07-31T01:56:17Z,1,2020-02-15T06:59:42Z +8896,2005-07-30T00:51:21Z,3560,205,2005-07-31T22:33:21Z,1,2020-02-15T06:59:42Z +8897,2005-07-30T01:00:17Z,1964,459,2005-08-01T03:41:17Z,1,2020-02-15T06:59:42Z +8898,2005-07-30T01:02:20Z,3961,452,2005-08-05T22:02:20Z,2,2020-02-15T06:59:42Z +8899,2005-07-30T01:05:30Z,4148,252,2005-08-01T23:32:30Z,1,2020-02-15T06:59:42Z +8900,2005-07-30T01:07:03Z,3057,375,2005-08-06T04:07:03Z,1,2020-02-15T06:59:42Z +8901,2005-07-30T01:07:12Z,4392,28,2005-08-02T06:34:12Z,1,2020-02-15T06:59:42Z +8902,2005-07-30T01:08:06Z,2983,408,2005-08-05T00:00:06Z,2,2020-02-15T06:59:42Z +8903,2005-07-30T01:08:06Z,4546,406,2005-07-30T21:47:06Z,2,2020-02-15T06:59:42Z +8904,2005-07-30T01:08:33Z,3622,575,2005-08-04T02:33:33Z,1,2020-02-15T06:59:42Z +8905,2005-07-30T01:11:11Z,2154,240,2005-08-04T22:39:11Z,1,2020-02-15T06:59:42Z +8906,2005-07-30T01:21:39Z,2667,560,2005-08-07T02:14:39Z,2,2020-02-15T06:59:42Z +8907,2005-07-30T01:25:03Z,3239,576,2005-08-03T05:41:03Z,1,2020-02-15T06:59:42Z +8908,2005-07-30T01:26:05Z,4498,391,2005-07-31T20:39:05Z,1,2020-02-15T06:59:42Z +8909,2005-07-30T01:28:03Z,2606,556,2005-08-06T04:40:03Z,2,2020-02-15T06:59:42Z +8910,2005-07-30T01:29:48Z,1039,569,2005-07-31T21:33:48Z,2,2020-02-15T06:59:42Z +8911,2005-07-30T01:30:57Z,2159,445,2005-08-02T20:01:57Z,1,2020-02-15T06:59:42Z +8912,2005-07-30T01:31:25Z,1686,280,2005-08-02T07:14:25Z,2,2020-02-15T06:59:42Z +8913,2005-07-30T01:35:01Z,429,391,2005-08-06T06:13:01Z,1,2020-02-15T06:59:42Z +8914,2005-07-30T01:42:03Z,1347,32,2005-08-04T03:53:03Z,1,2020-02-15T06:59:42Z +8915,2005-07-30T01:42:09Z,3030,42,2005-08-04T23:29:09Z,2,2020-02-15T06:59:42Z +8916,2005-07-30T01:42:21Z,3852,377,2005-08-03T05:28:21Z,1,2020-02-15T06:59:42Z +8917,2005-07-30T01:47:02Z,4460,309,2005-08-05T21:10:02Z,2,2020-02-15T06:59:42Z +8918,2005-07-30T01:56:22Z,2544,424,2005-08-04T01:58:22Z,2,2020-02-15T06:59:42Z +8919,2005-07-30T01:57:03Z,4006,337,2005-08-08T05:14:03Z,1,2020-02-15T06:59:42Z +8920,2005-07-30T01:59:24Z,4079,78,2005-08-02T22:37:24Z,2,2020-02-15T06:59:42Z +8921,2005-07-30T02:04:02Z,1016,354,2005-07-31T06:18:02Z,1,2020-02-15T06:59:42Z +8922,2005-07-30T02:08:25Z,1696,446,2005-08-08T07:19:25Z,2,2020-02-15T06:59:42Z +8923,2005-07-30T02:08:49Z,2425,446,2005-08-03T23:45:49Z,2,2020-02-15T06:59:42Z +8924,2005-07-30T02:08:58Z,2291,38,2005-08-05T02:13:58Z,2,2020-02-15T06:59:42Z +8925,2005-07-30T02:09:14Z,3753,500,2005-07-30T21:39:14Z,1,2020-02-15T06:59:42Z +8926,2005-07-30T02:10:31Z,3677,510,2005-08-03T23:56:31Z,1,2020-02-15T06:59:42Z +8927,2005-07-30T02:13:31Z,272,15,2005-08-01T01:34:31Z,1,2020-02-15T06:59:42Z +8928,2005-07-30T02:18:19Z,706,366,2005-08-05T00:49:19Z,2,2020-02-15T06:59:42Z +8929,2005-07-30T02:28:22Z,3501,472,2005-08-06T06:13:22Z,1,2020-02-15T06:59:42Z +8930,2005-07-30T02:28:38Z,1107,202,2005-08-02T01:43:38Z,2,2020-02-15T06:59:42Z +8931,2005-07-30T02:30:07Z,16,268,2005-08-02T08:24:07Z,2,2020-02-15T06:59:42Z +8932,2005-07-30T02:31:26Z,4537,295,2005-08-04T02:17:26Z,2,2020-02-15T06:59:42Z +8933,2005-07-30T02:36:06Z,1664,260,2005-08-02T23:37:06Z,2,2020-02-15T06:59:42Z +8934,2005-07-30T02:37:05Z,3223,494,2005-08-01T20:42:05Z,1,2020-02-15T06:59:42Z +8935,2005-07-30T02:38:45Z,285,76,2005-08-02T07:11:45Z,2,2020-02-15T06:59:42Z +8936,2005-07-30T02:47:13Z,1408,227,2005-08-01T02:25:13Z,2,2020-02-15T06:59:42Z +8937,2005-07-30T02:53:21Z,2406,544,2005-08-08T03:33:21Z,2,2020-02-15T06:59:42Z +8938,2005-07-30T02:56:08Z,4031,92,2005-07-31T23:08:08Z,2,2020-02-15T06:59:42Z +8939,2005-07-30T02:56:53Z,4175,598,2005-08-01T21:19:53Z,1,2020-02-15T06:59:42Z +8940,2005-07-30T02:57:26Z,1566,212,2005-08-05T22:05:26Z,1,2020-02-15T06:59:42Z +8941,2005-07-30T02:59:21Z,4147,329,2005-08-02T05:18:21Z,2,2020-02-15T06:59:42Z +8942,2005-07-30T03:01:07Z,4375,77,2005-08-06T22:50:07Z,2,2020-02-15T06:59:42Z +8943,2005-07-30T03:06:48Z,3698,531,2005-08-02T00:59:48Z,2,2020-02-15T06:59:42Z +8944,2005-07-30T03:11:44Z,3513,172,2005-08-06T23:15:44Z,2,2020-02-15T06:59:42Z +8945,2005-07-30T03:11:48Z,1441,447,2005-08-07T07:53:48Z,2,2020-02-15T06:59:42Z +8946,2005-07-30T03:14:53Z,3510,257,2005-08-04T00:50:53Z,1,2020-02-15T06:59:42Z +8947,2005-07-30T03:15:37Z,341,24,2005-08-04T07:10:37Z,2,2020-02-15T06:59:42Z +8948,2005-07-30T03:16:18Z,948,597,2005-08-04T03:16:18Z,1,2020-02-15T06:59:42Z +8949,2005-07-30T03:17:02Z,2876,231,2005-08-08T07:38:02Z,1,2020-02-15T06:59:42Z +8950,2005-07-30T03:17:13Z,3015,11,2005-08-07T00:20:13Z,1,2020-02-15T06:59:42Z +8951,2005-07-30T03:18:24Z,127,336,2005-08-08T08:50:24Z,2,2020-02-15T06:59:42Z +8952,2005-07-30T03:20:38Z,4397,36,2005-08-02T02:54:38Z,1,2020-02-15T06:59:42Z +8953,2005-07-30T03:21:05Z,535,278,2005-08-02T05:24:05Z,2,2020-02-15T06:59:42Z +8954,2005-07-30T03:25:51Z,991,137,2005-08-06T05:10:51Z,2,2020-02-15T06:59:42Z +8955,2005-07-30T03:28:27Z,4532,405,2005-08-04T04:56:27Z,2,2020-02-15T06:59:42Z +8956,2005-07-30T03:32:29Z,2129,71,2005-08-01T03:08:29Z,2,2020-02-15T06:59:42Z +8957,2005-07-30T03:34:10Z,811,158,2005-08-06T07:05:10Z,1,2020-02-15T06:59:42Z +8958,2005-07-30T03:34:26Z,1556,536,2005-08-06T08:14:26Z,1,2020-02-15T06:59:42Z +8959,2005-07-30T03:35:49Z,3508,550,2005-08-06T02:02:49Z,2,2020-02-15T06:59:42Z +8960,2005-07-30T03:36:31Z,391,525,2005-08-01T23:46:31Z,2,2020-02-15T06:59:42Z +8961,2005-07-30T03:43:35Z,3679,211,2005-08-06T07:42:35Z,1,2020-02-15T06:59:42Z +8962,2005-07-30T03:43:45Z,4439,406,2005-08-07T00:33:45Z,1,2020-02-15T06:59:42Z +8963,2005-07-30T03:46:26Z,100,544,2005-08-08T06:12:26Z,1,2020-02-15T06:59:42Z +8964,2005-07-30T03:49:35Z,280,424,2005-08-06T23:28:35Z,2,2020-02-15T06:59:42Z +8965,2005-07-30T03:52:37Z,2419,599,2005-08-05T01:28:37Z,2,2020-02-15T06:59:42Z +8966,2005-07-30T03:54:12Z,1903,522,2005-07-31T04:51:12Z,1,2020-02-15T06:59:42Z +8967,2005-07-30T03:56:55Z,1536,480,2005-08-06T05:25:55Z,2,2020-02-15T06:59:42Z +8968,2005-07-30T03:57:32Z,2280,339,2005-07-31T00:09:32Z,1,2020-02-15T06:59:42Z +8969,2005-07-30T04:00:19Z,2043,121,2005-08-06T04:39:19Z,1,2020-02-15T06:59:42Z +8970,2005-07-30T04:02:05Z,2940,313,2005-08-07T03:40:05Z,2,2020-02-15T06:59:42Z +8971,2005-07-30T04:03:58Z,3572,35,2005-08-08T04:16:58Z,2,2020-02-15T06:59:42Z +8972,2005-07-30T04:06:25Z,1974,89,2005-08-04T22:49:25Z,1,2020-02-15T06:59:42Z +8973,2005-07-30T04:09:13Z,886,282,2005-08-07T22:30:13Z,2,2020-02-15T06:59:42Z +8974,2005-07-30T04:09:16Z,3376,425,2005-08-04T06:55:16Z,1,2020-02-15T06:59:42Z +8975,2005-07-30T04:10:18Z,3288,356,2005-08-07T01:06:18Z,2,2020-02-15T06:59:42Z +8976,2005-07-30T04:12:32Z,2135,507,2005-08-04T23:08:32Z,1,2020-02-15T06:59:42Z +8977,2005-07-30T04:14:07Z,4099,334,2005-08-05T23:45:07Z,2,2020-02-15T06:59:42Z +8978,2005-07-30T04:14:28Z,711,5,2005-08-06T09:08:28Z,1,2020-02-15T06:59:42Z +8979,2005-07-30T04:20:25Z,1394,529,2005-08-08T03:39:25Z,2,2020-02-15T06:59:42Z +8980,2005-07-30T04:22:15Z,3061,105,2005-08-04T08:16:15Z,1,2020-02-15T06:59:42Z +8981,2005-07-30T04:25:30Z,4413,310,2005-08-06T02:37:30Z,1,2020-02-15T06:59:42Z +8982,2005-07-30T04:31:02Z,1128,251,2005-07-31T04:22:02Z,1,2020-02-15T06:59:42Z +8983,2005-07-30T04:31:08Z,1861,144,2005-07-31T09:28:08Z,1,2020-02-15T06:59:42Z +8984,2005-07-30T04:31:50Z,2126,485,2005-08-04T03:24:50Z,1,2020-02-15T06:59:42Z +8985,2005-07-30T04:34:51Z,3179,12,2005-08-06T00:45:51Z,2,2020-02-15T06:59:42Z +8986,2005-07-30T04:37:20Z,3992,551,2005-07-31T23:54:20Z,1,2020-02-15T06:59:42Z +8987,2005-07-30T04:37:36Z,1434,135,2005-08-08T10:14:36Z,2,2020-02-15T06:59:42Z +8988,2005-07-30T04:38:49Z,777,487,2005-08-07T07:00:49Z,2,2020-02-15T06:59:42Z +8989,2005-07-30T04:39:19Z,954,575,2005-08-06T02:11:19Z,1,2020-02-15T06:59:42Z +8990,2005-07-30T04:41:42Z,1869,292,2005-08-07T22:50:42Z,2,2020-02-15T06:59:42Z +8991,2005-07-30T04:42:54Z,4540,474,2005-08-01T23:51:54Z,1,2020-02-15T06:59:42Z +8992,2005-07-30T04:44:18Z,4478,54,2005-08-01T00:29:18Z,1,2020-02-15T06:59:42Z +8993,2005-07-30T04:51:25Z,1891,382,2005-08-01T01:04:25Z,1,2020-02-15T06:59:42Z +8994,2005-07-30T04:51:32Z,1527,287,2005-08-07T09:41:32Z,1,2020-02-15T06:59:42Z +8995,2005-07-30T04:53:11Z,3575,331,2005-08-07T00:24:11Z,1,2020-02-15T06:59:42Z +8996,2005-07-30T04:53:23Z,1970,579,2005-07-31T06:01:23Z,1,2020-02-15T06:59:42Z +8997,2005-07-30T04:53:56Z,850,31,2005-08-03T07:10:56Z,1,2020-02-15T06:59:42Z +8998,2005-07-30T04:54:14Z,1573,120,2005-08-08T08:18:14Z,2,2020-02-15T06:59:42Z +8999,2005-07-30T04:55:46Z,3458,424,2005-08-01T00:16:46Z,2,2020-02-15T06:59:42Z +9000,2005-07-30T04:58:55Z,3763,290,2005-08-08T04:01:55Z,2,2020-02-15T06:59:42Z +9001,2005-07-30T04:59:41Z,3682,440,2005-07-31T08:56:41Z,2,2020-02-15T06:59:42Z +9002,2005-07-30T05:02:21Z,1936,137,2005-07-31T04:58:21Z,1,2020-02-15T06:59:42Z +9003,2005-07-30T05:02:52Z,1605,507,2005-07-31T10:33:52Z,1,2020-02-15T06:59:42Z +9004,2005-07-30T05:04:27Z,3775,178,2005-07-31T00:49:27Z,1,2020-02-15T06:59:42Z +9005,2005-07-30T05:04:58Z,157,204,2005-08-03T07:41:58Z,2,2020-02-15T06:59:42Z +9006,2005-07-30T05:06:32Z,3315,49,2005-07-31T08:24:32Z,1,2020-02-15T06:59:42Z +9007,2005-07-30T05:09:32Z,2813,63,2005-08-02T06:12:32Z,2,2020-02-15T06:59:42Z +9008,2005-07-30T05:10:26Z,3592,371,2005-07-31T08:13:26Z,1,2020-02-15T06:59:42Z +9009,2005-07-30T05:12:01Z,4136,166,2005-08-07T10:58:01Z,1,2020-02-15T06:59:42Z +9010,2005-07-30T05:12:04Z,1698,152,2005-08-06T02:54:04Z,2,2020-02-15T06:59:42Z +9011,2005-07-30T05:16:29Z,2799,236,2005-08-05T06:57:29Z,1,2020-02-15T06:59:42Z +9012,2005-07-30T05:18:57Z,3604,494,2005-08-06T06:21:57Z,1,2020-02-15T06:59:42Z +9013,2005-07-30T05:19:20Z,2367,347,2005-08-04T01:35:20Z,1,2020-02-15T06:59:42Z +9014,2005-07-30T05:19:27Z,311,297,2005-08-01T01:10:27Z,2,2020-02-15T06:59:42Z +9015,2005-07-30T05:21:32Z,4128,203,2005-08-08T07:03:32Z,2,2020-02-15T06:59:42Z +9016,2005-07-30T05:26:13Z,4309,312,2005-08-04T00:25:13Z,2,2020-02-15T06:59:42Z +9017,2005-07-30T05:26:20Z,3325,319,2005-08-04T10:00:20Z,2,2020-02-15T06:59:42Z +9018,2005-07-30T05:28:40Z,1982,218,2005-08-07T01:34:40Z,1,2020-02-15T06:59:42Z +9019,2005-07-30T05:28:53Z,946,235,2005-08-03T02:16:53Z,2,2020-02-15T06:59:42Z +9020,2005-07-30T05:31:27Z,1700,142,2005-08-08T06:44:27Z,2,2020-02-15T06:59:42Z +9021,2005-07-30T05:34:24Z,674,498,2005-08-03T04:13:24Z,1,2020-02-15T06:59:42Z +9022,2005-07-30T05:34:45Z,4473,159,2005-08-03T23:57:45Z,2,2020-02-15T06:59:42Z +9023,2005-07-30T05:36:40Z,2911,148,2005-08-07T06:20:40Z,1,2020-02-15T06:59:42Z +9024,2005-07-30T05:44:42Z,164,329,2005-08-05T03:15:42Z,2,2020-02-15T06:59:42Z +9025,2005-07-30T05:50:08Z,2244,473,2005-07-31T09:58:08Z,1,2020-02-15T06:59:42Z +9026,2005-07-30T05:55:31Z,1524,423,2005-08-01T03:19:31Z,1,2020-02-15T06:59:42Z +9027,2005-07-30T05:58:27Z,449,72,2005-08-03T03:02:27Z,1,2020-02-15T06:59:42Z +9028,2005-07-30T06:00:35Z,2687,119,2005-08-02T01:35:35Z,1,2020-02-15T06:59:42Z +9029,2005-07-30T06:03:11Z,2220,52,2005-08-04T01:42:11Z,1,2020-02-15T06:59:42Z +9030,2005-07-30T06:05:38Z,2237,367,2005-08-03T00:19:38Z,1,2020-02-15T06:59:42Z +9031,2005-07-30T06:06:10Z,2377,2,2005-08-04T10:45:10Z,2,2020-02-15T06:59:42Z +9032,2005-07-30T06:06:54Z,4448,369,2005-08-01T05:27:54Z,1,2020-02-15T06:59:42Z +9033,2005-07-30T06:07:42Z,3416,35,2005-08-05T01:18:42Z,1,2020-02-15T06:59:42Z +9034,2005-07-30T06:10:58Z,3847,144,2005-08-08T05:00:58Z,2,2020-02-15T06:59:42Z +9035,2005-07-30T06:16:07Z,3785,243,2005-08-06T09:22:07Z,1,2020-02-15T06:59:42Z +9036,2005-07-30T06:18:38Z,790,18,2005-07-31T01:22:38Z,1,2020-02-15T06:59:42Z +9037,2005-07-30T06:23:14Z,3833,356,2005-08-08T06:25:14Z,1,2020-02-15T06:59:42Z +9038,2005-07-30T06:23:35Z,217,514,2005-08-06T11:10:35Z,1,2020-02-15T06:59:42Z +9039,2005-07-30T06:24:28Z,4493,485,2005-08-08T00:28:28Z,1,2020-02-15T06:59:42Z +9040,2005-07-30T06:31:45Z,392,33,2005-08-03T12:20:45Z,1,2020-02-15T06:59:42Z +9041,2005-07-30T06:32:36Z,1103,454,2005-08-01T10:28:36Z,2,2020-02-15T06:59:42Z +9042,2005-07-30T06:33:55Z,2770,398,2005-08-04T09:31:55Z,2,2020-02-15T06:59:42Z +9043,2005-07-30T06:34:07Z,4127,9,2005-08-02T01:16:07Z,1,2020-02-15T06:59:42Z +9044,2005-07-30T06:35:21Z,3796,319,2005-07-31T10:27:21Z,1,2020-02-15T06:59:42Z +9045,2005-07-30T06:36:57Z,4521,46,2005-08-08T01:51:57Z,1,2020-02-15T06:59:42Z +9046,2005-07-30T06:46:55Z,1736,215,2005-08-01T02:21:55Z,2,2020-02-15T06:59:42Z +9047,2005-07-30T06:56:33Z,256,522,2005-08-08T06:40:33Z,2,2020-02-15T06:59:42Z +9048,2005-07-30T06:57:07Z,3929,100,2005-08-05T00:57:07Z,1,2020-02-15T06:59:42Z +9049,2005-07-30T06:57:28Z,2620,417,2005-08-04T09:02:28Z,1,2020-02-15T06:59:42Z +9050,2005-07-30T06:59:55Z,106,40,2005-08-06T06:37:55Z,1,2020-02-15T06:59:42Z +9051,2005-07-30T07:05:54Z,1847,337,2005-08-07T09:12:54Z,2,2020-02-15T06:59:42Z +9052,2005-07-30T07:06:08Z,3351,408,2005-08-03T10:30:08Z,1,2020-02-15T06:59:42Z +9053,2005-07-30T07:07:39Z,2535,485,2005-08-01T09:22:39Z,2,2020-02-15T06:59:42Z +9054,2005-07-30T07:11:44Z,2860,209,2005-08-08T01:55:44Z,2,2020-02-15T06:59:42Z +9055,2005-07-30T07:13:07Z,634,512,2005-08-01T12:18:07Z,1,2020-02-15T06:59:42Z +9056,2005-07-30T07:13:20Z,4363,380,2005-08-03T07:36:20Z,1,2020-02-15T06:59:42Z +9057,2005-07-30T07:14:18Z,3141,202,2005-08-01T05:10:18Z,2,2020-02-15T06:59:42Z +9058,2005-07-30T07:15:45Z,4214,403,2005-07-31T02:57:45Z,2,2020-02-15T06:59:42Z +9059,2005-07-30T07:18:44Z,480,267,2005-08-08T08:39:44Z,1,2020-02-15T06:59:42Z +9060,2005-07-30T07:20:36Z,4360,87,2005-08-03T10:51:36Z,1,2020-02-15T06:59:42Z +9061,2005-07-30T07:21:52Z,1933,255,2005-08-08T10:52:52Z,1,2020-02-15T06:59:42Z +9062,2005-07-30T07:23:17Z,2780,358,2005-08-02T12:07:17Z,1,2020-02-15T06:59:42Z +9063,2005-07-30T07:24:34Z,2851,564,2005-08-05T01:28:34Z,2,2020-02-15T06:59:42Z +9064,2005-07-30T07:24:55Z,1417,194,2005-08-07T08:44:55Z,2,2020-02-15T06:59:42Z +9065,2005-07-30T07:25:09Z,349,238,2005-07-31T05:18:09Z,2,2020-02-15T06:59:42Z +9066,2005-07-30T07:28:54Z,196,171,2005-08-02T05:23:54Z,1,2020-02-15T06:59:42Z +9067,2005-07-30T07:31:01Z,3628,382,2005-08-04T11:44:01Z,2,2020-02-15T06:59:42Z +9068,2005-07-30T07:31:45Z,2264,78,2005-08-08T06:40:45Z,1,2020-02-15T06:59:42Z +9069,2005-07-30T07:39:59Z,1852,258,2005-08-02T04:10:59Z,1,2020-02-15T06:59:42Z +9070,2005-07-30T07:40:39Z,3690,276,2005-08-01T04:19:39Z,2,2020-02-15T06:59:42Z +9071,2005-07-30T07:40:58Z,3151,523,2005-08-01T06:59:58Z,2,2020-02-15T06:59:42Z +9072,2005-07-30T07:45:49Z,4536,106,2005-08-04T10:00:49Z,1,2020-02-15T06:59:42Z +9073,2005-07-30T07:49:56Z,2185,141,2005-08-05T06:25:56Z,2,2020-02-15T06:59:42Z +9074,2005-07-30T07:50:10Z,3244,84,2005-08-01T11:21:10Z,2,2020-02-15T06:59:42Z +9075,2005-07-30T07:55:14Z,1931,20,2005-08-02T13:49:14Z,1,2020-02-15T06:59:42Z +9076,2005-07-30T07:58:12Z,496,447,2005-08-08T06:04:12Z,1,2020-02-15T06:59:42Z +9077,2005-07-30T08:00:19Z,4324,471,2005-08-08T11:21:19Z,1,2020-02-15T06:59:42Z +9078,2005-07-30T08:01:00Z,955,300,2005-07-31T10:39:00Z,1,2020-02-15T06:59:42Z +9079,2005-07-30T08:02:00Z,2143,193,2005-07-31T04:02:00Z,2,2020-02-15T06:59:42Z +9080,2005-07-30T08:02:39Z,94,276,2005-08-06T12:02:39Z,1,2020-02-15T06:59:42Z +9081,2005-07-30T08:09:58Z,3040,572,2005-08-03T13:27:58Z,1,2020-02-15T06:59:42Z +9082,2005-07-30T08:11:22Z,4042,438,2005-08-06T09:26:22Z,2,2020-02-15T06:59:42Z +9083,2005-07-30T08:14:27Z,456,488,2005-08-07T14:02:27Z,1,2020-02-15T06:59:42Z +9084,2005-07-30T08:14:29Z,3950,171,2005-08-03T11:12:29Z,2,2020-02-15T06:59:42Z +9085,2005-07-30T08:17:24Z,3400,33,2005-08-03T09:35:24Z,2,2020-02-15T06:59:42Z +9086,2005-07-30T08:18:46Z,2779,57,2005-08-06T06:10:46Z,2,2020-02-15T06:59:42Z +9087,2005-07-30T08:19:47Z,4048,546,2005-08-02T07:15:47Z,1,2020-02-15T06:59:42Z +9088,2005-07-30T08:21:02Z,3407,245,2005-08-01T09:55:02Z,1,2020-02-15T06:59:42Z +9089,2005-07-30T08:23:39Z,490,369,2005-07-31T06:00:39Z,1,2020-02-15T06:59:42Z +9090,2005-07-30T08:24:42Z,3426,104,2005-08-08T06:17:42Z,2,2020-02-15T06:59:42Z +9091,2005-07-30T08:30:45Z,2249,66,2005-08-07T13:28:45Z,1,2020-02-15T06:59:42Z +9092,2005-07-30T08:30:56Z,1877,17,2005-08-06T08:09:56Z,2,2020-02-15T06:59:42Z +9093,2005-07-30T08:33:24Z,2208,96,2005-08-04T11:07:24Z,1,2020-02-15T06:59:42Z +9094,2005-07-30T08:35:10Z,2699,140,2005-08-07T08:18:10Z,2,2020-02-15T06:59:42Z +9095,2005-07-30T08:38:36Z,3019,511,2005-07-31T06:14:36Z,1,2020-02-15T06:59:42Z +9096,2005-07-30T08:39:23Z,540,216,2005-08-01T03:33:23Z,1,2020-02-15T06:59:42Z +9097,2005-07-30T08:40:35Z,570,173,2005-08-04T11:19:35Z,2,2020-02-15T06:59:42Z +9098,2005-07-30T08:44:21Z,1267,144,2005-08-08T12:31:21Z,1,2020-02-15T06:59:42Z +9099,2005-07-30T08:45:48Z,594,250,2005-08-01T03:18:48Z,2,2020-02-15T06:59:42Z +9100,2005-07-30T08:46:09Z,4117,4,2005-08-05T10:34:09Z,1,2020-02-15T06:59:42Z +9101,2005-07-30T08:47:13Z,3165,566,2005-08-02T12:52:13Z,1,2020-02-15T06:59:42Z +9102,2005-07-30T08:48:20Z,1154,276,2005-08-04T10:19:20Z,1,2020-02-15T06:59:42Z +9103,2005-07-30T08:49:26Z,3806,280,2005-07-31T14:15:26Z,1,2020-02-15T06:59:42Z +9104,2005-07-30T08:49:55Z,3372,322,2005-08-06T12:23:55Z,1,2020-02-15T06:59:42Z +9105,2005-07-30T08:50:25Z,4443,262,2005-08-05T06:08:25Z,1,2020-02-15T06:59:42Z +9106,2005-07-30T08:52:34Z,2935,148,2005-08-02T07:38:34Z,2,2020-02-15T06:59:42Z +9107,2005-07-30T08:52:45Z,1068,531,2005-08-05T08:39:45Z,2,2020-02-15T06:59:42Z +9108,2005-07-30T08:56:36Z,3977,490,2005-08-04T11:07:36Z,1,2020-02-15T06:59:42Z +9109,2005-07-30T08:58:24Z,787,266,2005-08-07T06:56:24Z,1,2020-02-15T06:59:42Z +9110,2005-07-30T09:05:42Z,1474,317,2005-08-03T05:15:42Z,1,2020-02-15T06:59:42Z +9111,2005-07-30T09:05:44Z,166,211,2005-08-04T14:27:44Z,2,2020-02-15T06:59:42Z +9112,2005-07-30T09:06:31Z,395,74,2005-08-04T05:12:31Z,2,2020-02-15T06:59:42Z +9113,2005-07-30T09:09:03Z,3903,374,2005-07-31T03:13:03Z,1,2020-02-15T06:59:42Z +9114,2005-07-30T09:13:21Z,893,18,2005-08-05T06:00:21Z,2,2020-02-15T06:59:42Z +9115,2005-07-30T09:13:55Z,3750,322,2005-08-04T04:02:55Z,2,2020-02-15T06:59:42Z +9116,2005-07-30T09:19:41Z,2917,446,2005-08-03T08:01:41Z,2,2020-02-15T06:59:42Z +9117,2005-07-30T09:20:59Z,3055,371,2005-08-07T08:47:59Z,1,2020-02-15T06:59:42Z +9118,2005-07-30T09:24:18Z,4538,172,2005-08-02T14:46:18Z,2,2020-02-15T06:59:42Z +9119,2005-07-30T09:25:56Z,275,305,2005-08-03T03:36:56Z,1,2020-02-15T06:59:42Z +9120,2005-07-30T09:26:08Z,139,473,2005-08-08T09:52:08Z,1,2020-02-15T06:59:42Z +9121,2005-07-30T09:36:26Z,3098,150,2005-08-05T15:17:26Z,2,2020-02-15T06:59:42Z +9122,2005-07-30T09:36:52Z,627,365,2005-08-05T13:20:52Z,1,2020-02-15T06:59:42Z +9123,2005-07-30T09:39:15Z,3748,293,2005-08-02T08:12:15Z,2,2020-02-15T06:59:42Z +9124,2005-07-30T09:43:12Z,4552,105,2005-08-06T06:17:12Z,1,2020-02-15T06:59:42Z +9125,2005-07-30T09:43:39Z,333,335,2005-08-07T14:02:39Z,1,2020-02-15T06:59:42Z +9126,2005-07-30T09:44:15Z,4495,590,2005-08-02T11:02:15Z,2,2020-02-15T06:59:42Z +9127,2005-07-30T09:46:36Z,4114,300,2005-07-31T07:43:36Z,1,2020-02-15T06:59:42Z +9128,2005-07-30T09:51:14Z,3647,372,2005-08-07T06:23:14Z,1,2020-02-15T06:59:42Z +9129,2005-07-30T09:51:21Z,2658,125,2005-08-07T08:50:21Z,2,2020-02-15T06:59:42Z +9130,2005-07-30T09:55:10Z,1715,354,2005-08-04T08:57:10Z,1,2020-02-15T06:59:42Z +9131,2005-07-30T09:55:57Z,623,142,2005-08-01T14:21:57Z,1,2020-02-15T06:59:42Z +9132,2005-07-30T09:56:00Z,402,159,2005-08-02T09:22:00Z,1,2020-02-15T06:59:42Z +9133,2005-07-30T09:59:00Z,408,576,2005-08-07T04:24:00Z,1,2020-02-15T06:59:42Z +9134,2005-07-30T10:00:21Z,3797,559,2005-08-01T05:01:21Z,1,2020-02-15T06:59:42Z +9135,2005-07-30T10:06:53Z,821,161,2005-08-03T13:57:53Z,2,2020-02-15T06:59:42Z +9136,2005-07-30T10:07:20Z,1734,57,2005-07-31T08:20:20Z,2,2020-02-15T06:59:42Z +9137,2005-07-30T10:09:24Z,840,459,2005-08-06T04:30:24Z,2,2020-02-15T06:59:42Z +9138,2005-07-30T10:11:52Z,2550,17,2005-07-31T07:05:52Z,2,2020-02-15T06:59:42Z +9139,2005-07-30T10:11:52Z,2809,133,2005-08-03T12:44:52Z,1,2020-02-15T06:59:42Z +9140,2005-07-30T10:12:01Z,4095,25,2005-08-06T09:16:01Z,2,2020-02-15T06:59:42Z +9141,2005-07-30T10:16:04Z,3087,484,2005-08-05T08:01:04Z,1,2020-02-15T06:59:42Z +9142,2005-07-30T10:21:03Z,4467,486,2005-08-04T15:14:03Z,1,2020-02-15T06:59:42Z +9143,2005-07-30T10:22:11Z,2962,511,2005-08-07T06:13:11Z,2,2020-02-15T06:59:42Z +9144,2005-07-30T10:22:15Z,718,381,2005-08-05T08:14:15Z,1,2020-02-15T06:59:42Z +9145,2005-07-30T10:27:55Z,559,176,2005-08-07T14:41:55Z,2,2020-02-15T06:59:42Z +9146,2005-07-30T10:32:08Z,483,302,2005-08-08T14:30:08Z,1,2020-02-15T06:59:42Z +9147,2005-07-30T10:38:59Z,4167,394,2005-08-02T11:45:59Z,2,2020-02-15T06:59:42Z +9148,2005-07-30T10:39:10Z,1407,333,2005-08-04T07:17:10Z,2,2020-02-15T06:59:42Z +9149,2005-07-30T10:45:12Z,2632,21,2005-08-01T09:40:12Z,1,2020-02-15T06:59:42Z +9150,2005-07-30T10:49:32Z,2834,213,2005-08-08T15:43:32Z,1,2020-02-15T06:59:42Z +9151,2005-07-30T10:50:53Z,3956,102,2005-08-07T08:19:53Z,1,2020-02-15T06:59:42Z +9152,2005-07-30T10:51:27Z,3607,595,2005-07-31T06:38:27Z,2,2020-02-15T06:59:42Z +9153,2005-07-30T10:58:16Z,3743,589,2005-08-03T06:16:16Z,2,2020-02-15T06:59:42Z +9154,2005-07-30T10:59:54Z,576,312,2005-08-05T16:47:54Z,1,2020-02-15T06:59:42Z +9155,2005-07-30T11:00:00Z,3787,107,2005-08-02T05:24:00Z,2,2020-02-15T06:59:42Z +9156,2005-07-30T11:04:55Z,1747,145,2005-07-31T14:10:55Z,2,2020-02-15T06:59:42Z +9157,2005-07-30T11:06:23Z,146,19,2005-08-05T05:29:23Z,2,2020-02-15T06:59:42Z +9158,2005-07-30T11:12:03Z,4017,16,2005-08-02T05:55:03Z,2,2020-02-15T06:59:42Z +9159,2005-07-30T11:16:37Z,1234,217,2005-08-03T10:32:37Z,1,2020-02-15T06:59:42Z +9160,2005-07-30T11:17:33Z,183,34,2005-08-06T15:16:33Z,2,2020-02-15T06:59:42Z +9161,2005-07-30T11:19:18Z,969,433,2005-08-02T05:32:18Z,1,2020-02-15T06:59:42Z +9162,2005-07-30T11:21:56Z,4198,184,2005-08-02T15:32:56Z,1,2020-02-15T06:59:42Z +9163,2005-07-30T11:23:22Z,4562,345,2005-07-31T07:34:22Z,2,2020-02-15T06:59:42Z +9164,2005-07-30T11:24:14Z,4434,342,2005-08-08T16:24:14Z,1,2020-02-15T06:59:42Z +9165,2005-07-30T11:24:28Z,4034,291,2005-08-03T09:38:28Z,1,2020-02-15T06:59:42Z +9166,2005-07-30T11:26:28Z,308,12,2005-08-04T12:32:28Z,1,2020-02-15T06:59:42Z +9167,2005-07-30T11:30:37Z,1785,162,2005-08-08T17:13:37Z,1,2020-02-15T06:59:42Z +9168,2005-07-30T11:31:17Z,2035,75,2005-08-08T16:56:17Z,2,2020-02-15T06:59:42Z +9169,2005-07-30T11:35:00Z,1567,245,2005-08-06T16:16:00Z,2,2020-02-15T06:59:42Z +9170,2005-07-30T11:35:24Z,4279,425,2005-08-05T05:36:24Z,1,2020-02-15T06:59:42Z +9171,2005-07-30T11:36:24Z,1832,189,2005-08-07T06:04:24Z,2,2020-02-15T06:59:42Z +9172,2005-07-30T11:36:38Z,695,437,2005-08-04T09:39:38Z,1,2020-02-15T06:59:42Z +9173,2005-07-30T11:40:10Z,2103,381,2005-08-04T05:40:10Z,2,2020-02-15T06:59:42Z +9174,2005-07-30T11:42:10Z,2636,144,2005-07-31T09:52:10Z,1,2020-02-15T06:59:42Z +9175,2005-07-30T11:47:48Z,358,133,2005-08-02T08:13:48Z,1,2020-02-15T06:59:42Z +9176,2005-07-30T11:50:54Z,2659,260,2005-08-02T14:25:54Z,2,2020-02-15T06:59:42Z +9177,2005-07-30T11:52:40Z,1088,400,2005-08-08T09:35:40Z,1,2020-02-15T06:59:42Z +9178,2005-07-30T11:58:50Z,2046,448,2005-08-08T15:24:50Z,2,2020-02-15T06:59:42Z +9179,2005-07-30T12:02:41Z,62,50,2005-08-05T15:23:41Z,2,2020-02-15T06:59:42Z +9180,2005-07-30T12:03:15Z,3479,442,2005-08-01T14:25:15Z,1,2020-02-15T06:59:42Z +9181,2005-07-30T12:05:58Z,3953,224,2005-08-02T06:22:58Z,1,2020-02-15T06:59:42Z +9182,2005-07-30T12:06:58Z,2533,165,2005-08-08T11:33:58Z,2,2020-02-15T06:59:42Z +9183,2005-07-30T12:09:56Z,4320,475,2005-08-06T11:50:56Z,2,2020-02-15T06:59:42Z +9184,2005-07-30T12:10:19Z,51,365,2005-08-01T07:35:19Z,2,2020-02-15T06:59:42Z +9185,2005-07-30T12:10:40Z,2268,426,2005-08-06T07:01:40Z,1,2020-02-15T06:59:42Z +9186,2005-07-30T12:13:48Z,4513,273,2005-07-31T11:59:48Z,1,2020-02-15T06:59:42Z +9187,2005-07-30T12:14:03Z,4008,469,2005-08-04T13:10:03Z,2,2020-02-15T06:59:42Z +9188,2005-07-30T12:19:54Z,727,195,2005-08-06T09:12:54Z,2,2020-02-15T06:59:42Z +9189,2005-07-30T12:20:59Z,4529,485,2005-08-06T16:15:59Z,1,2020-02-15T06:59:42Z +9190,2005-07-30T12:24:17Z,4421,177,2005-08-03T07:41:17Z,2,2020-02-15T06:59:42Z +9191,2005-07-30T12:25:51Z,500,314,2005-08-05T16:13:51Z,1,2020-02-15T06:59:42Z +9192,2005-07-30T12:26:26Z,2372,102,2005-08-04T07:54:26Z,2,2020-02-15T06:59:42Z +9193,2005-07-30T12:28:42Z,3470,69,2005-08-02T12:17:42Z,2,2020-02-15T06:59:42Z +9194,2005-07-30T12:28:45Z,2467,294,2005-08-06T14:38:45Z,1,2020-02-15T06:59:42Z +9195,2005-07-30T12:29:43Z,944,440,2005-08-04T12:35:43Z,1,2020-02-15T06:59:42Z +9196,2005-07-30T12:30:19Z,4298,251,2005-07-31T18:01:19Z,2,2020-02-15T06:59:42Z +9197,2005-07-30T12:31:36Z,3214,168,2005-08-03T09:05:36Z,1,2020-02-15T06:59:42Z +9198,2005-07-30T12:37:08Z,2371,105,2005-08-07T16:37:08Z,2,2020-02-15T06:59:42Z +9199,2005-07-30T12:38:00Z,4336,580,2005-08-01T07:09:00Z,1,2020-02-15T06:59:42Z +9200,2005-07-30T12:39:52Z,3277,137,2005-08-08T09:43:52Z,2,2020-02-15T06:59:42Z +9201,2005-07-30T12:42:21Z,4387,291,2005-08-08T06:50:21Z,1,2020-02-15T06:59:42Z +9202,2005-07-30T12:43:24Z,4525,466,2005-08-07T10:39:24Z,2,2020-02-15T06:59:42Z +9203,2005-07-30T12:43:40Z,2112,169,2005-08-01T09:31:40Z,2,2020-02-15T06:59:42Z +9204,2005-07-30T12:43:58Z,4378,43,2005-08-03T16:26:58Z,2,2020-02-15T06:59:42Z +9205,2005-07-30T12:46:40Z,4165,259,2005-08-08T14:58:40Z,1,2020-02-15T06:59:42Z +9206,2005-07-30T12:46:59Z,2021,404,2005-08-03T14:58:59Z,1,2020-02-15T06:59:42Z +9207,2005-07-30T12:49:57Z,1346,345,2005-07-31T14:32:57Z,2,2020-02-15T06:59:42Z +9208,2005-07-30T12:54:03Z,2751,339,2005-08-06T17:22:03Z,2,2020-02-15T06:59:42Z +9209,2005-07-30T12:55:36Z,3940,23,2005-08-03T11:31:36Z,2,2020-02-15T06:59:42Z +9210,2005-07-30T12:56:44Z,101,105,2005-08-08T09:41:44Z,2,2020-02-15T06:59:42Z +9211,2005-07-30T12:59:45Z,595,57,2005-08-07T18:17:45Z,2,2020-02-15T06:59:42Z +9212,2005-07-30T13:03:13Z,2111,73,2005-08-06T09:48:13Z,1,2020-02-15T06:59:42Z +9213,2005-07-30T13:07:11Z,184,388,2005-08-01T15:30:11Z,1,2020-02-15T06:59:43Z +9214,2005-07-30T13:10:14Z,2823,181,2005-08-06T14:22:14Z,2,2020-02-15T06:59:43Z +9215,2005-07-30T13:11:11Z,3591,128,2005-08-06T13:06:11Z,1,2020-02-15T06:59:43Z +9216,2005-07-30T13:11:19Z,2783,38,2005-07-31T11:27:19Z,2,2020-02-15T06:59:43Z +9217,2005-07-30T13:13:55Z,1561,112,2005-08-05T17:27:55Z,1,2020-02-15T06:59:43Z +9218,2005-07-30T13:14:35Z,119,172,2005-08-07T18:03:35Z,1,2020-02-15T06:59:43Z +9219,2005-07-30T13:15:21Z,771,329,2005-08-01T11:39:21Z,1,2020-02-15T06:59:43Z +9220,2005-07-30T13:17:27Z,2463,569,2005-08-07T11:34:27Z,2,2020-02-15T06:59:43Z +9221,2005-07-30T13:20:06Z,2496,113,2005-08-06T13:58:06Z,2,2020-02-15T06:59:43Z +9222,2005-07-30T13:21:08Z,3648,95,2005-08-08T10:42:08Z,2,2020-02-15T06:59:43Z +9223,2005-07-30T13:23:20Z,3231,595,2005-08-04T11:24:20Z,1,2020-02-15T06:59:43Z +9224,2005-07-30T13:25:37Z,2260,406,2005-08-01T15:13:37Z,2,2020-02-15T06:59:43Z +9225,2005-07-30T13:29:47Z,1992,391,2005-08-02T17:08:47Z,2,2020-02-15T06:59:43Z +9226,2005-07-30T13:31:20Z,4315,3,2005-08-06T16:42:20Z,1,2020-02-15T06:59:43Z +9227,2005-07-30T13:36:13Z,2353,522,2005-08-07T17:39:13Z,1,2020-02-15T06:59:43Z +9228,2005-07-30T13:36:57Z,2325,91,2005-08-05T10:43:57Z,1,2020-02-15T06:59:43Z +9229,2005-07-30T13:38:17Z,3780,276,2005-08-08T18:17:17Z,2,2020-02-15T06:59:43Z +9230,2005-07-30T13:39:42Z,1199,109,2005-07-31T19:20:42Z,1,2020-02-15T06:59:43Z +9231,2005-07-30T13:42:15Z,1587,489,2005-08-02T19:27:15Z,1,2020-02-15T06:59:43Z +9232,2005-07-30T13:43:00Z,1991,502,2005-08-02T11:39:00Z,2,2020-02-15T06:59:43Z +9233,2005-07-30T13:44:15Z,2320,357,2005-08-07T13:02:15Z,2,2020-02-15T06:59:43Z +9234,2005-07-30T13:45:54Z,1660,128,2005-08-02T15:33:54Z,1,2020-02-15T06:59:43Z +9235,2005-07-30T13:47:17Z,984,181,2005-08-06T17:15:17Z,2,2020-02-15T06:59:43Z +9236,2005-07-30T13:47:43Z,4030,2,2005-08-08T18:52:43Z,1,2020-02-15T06:59:43Z +9237,2005-07-30T13:48:17Z,2777,157,2005-07-31T13:57:17Z,2,2020-02-15T06:59:43Z +9238,2005-07-30T13:49:43Z,3356,12,2005-08-08T08:25:43Z,2,2020-02-15T06:59:43Z +9239,2005-07-30T13:50:52Z,1728,580,2005-08-06T16:28:52Z,1,2020-02-15T06:59:43Z +9240,2005-07-30T13:57:54Z,587,92,2005-08-03T12:23:54Z,2,2020-02-15T06:59:43Z +9241,2005-07-30T13:58:41Z,4145,187,2005-08-04T09:44:41Z,2,2020-02-15T06:59:43Z +9242,2005-07-30T14:03:58Z,755,306,2005-08-02T18:09:58Z,2,2020-02-15T06:59:43Z +9243,2005-07-30T14:06:27Z,876,516,2005-08-06T09:26:27Z,2,2020-02-15T06:59:43Z +9244,2005-07-30T14:06:53Z,3640,27,2005-08-03T19:46:53Z,1,2020-02-15T06:59:43Z +9245,2005-07-30T14:07:50Z,2586,116,2005-08-06T17:59:50Z,2,2020-02-15T06:59:43Z +9246,2005-07-30T14:12:31Z,3390,185,2005-08-02T14:25:31Z,2,2020-02-15T06:59:43Z +9247,2005-07-30T14:13:56Z,4106,426,2005-08-02T16:34:56Z,2,2020-02-15T06:59:43Z +9248,2005-07-30T14:14:11Z,1382,2,2005-08-05T11:19:11Z,1,2020-02-15T06:59:43Z +9249,2005-07-30T14:15:02Z,2015,296,2005-08-05T13:02:02Z,1,2020-02-15T06:59:43Z +9250,2005-07-30T14:18:16Z,4544,539,2005-08-04T12:31:16Z,1,2020-02-15T06:59:43Z +9251,2005-07-30T14:19:25Z,2948,390,2005-08-08T11:22:25Z,2,2020-02-15T06:59:43Z +9252,2005-07-30T14:19:59Z,2350,322,2005-08-07T15:17:59Z,1,2020-02-15T06:59:43Z +9253,2005-07-30T14:20:12Z,4183,151,2005-07-31T11:31:12Z,2,2020-02-15T06:59:43Z +9254,2005-07-30T14:26:11Z,495,33,2005-08-04T16:12:11Z,1,2020-02-15T06:59:43Z +9255,2005-07-30T14:26:46Z,1596,23,2005-08-07T18:16:46Z,1,2020-02-15T06:59:43Z +9256,2005-07-30T14:29:29Z,4021,19,2005-08-05T16:59:29Z,1,2020-02-15T06:59:43Z +9257,2005-07-30T14:30:38Z,2615,466,2005-08-04T17:57:38Z,1,2020-02-15T06:59:43Z +9258,2005-07-30T14:31:31Z,2007,275,2005-08-05T16:29:31Z,2,2020-02-15T06:59:43Z +9259,2005-07-30T14:37:44Z,97,138,2005-08-06T18:05:44Z,2,2020-02-15T06:59:43Z +9260,2005-07-30T14:38:22Z,3969,13,2005-08-07T18:47:22Z,2,2020-02-15T06:59:43Z +9261,2005-07-30T14:39:35Z,372,380,2005-08-08T11:26:35Z,1,2020-02-15T06:59:43Z +9262,2005-07-30T14:45:02Z,2322,349,2005-08-05T15:18:02Z,2,2020-02-15T06:59:43Z +9263,2005-07-30T14:48:24Z,73,410,2005-08-04T19:06:24Z,2,2020-02-15T06:59:43Z +9264,2005-07-30T14:51:36Z,4071,157,2005-08-02T10:06:36Z,1,2020-02-15T06:59:43Z +9265,2005-07-30T14:55:25Z,3700,560,2005-08-02T11:34:25Z,1,2020-02-15T06:59:43Z +9266,2005-07-30T14:59:01Z,1705,364,2005-07-31T17:01:01Z,2,2020-02-15T06:59:43Z +9267,2005-07-30T14:59:05Z,645,409,2005-08-04T10:17:05Z,1,2020-02-15T06:59:43Z +9268,2005-07-30T15:02:30Z,3593,592,2005-08-05T12:50:30Z,1,2020-02-15T06:59:43Z +9269,2005-07-30T15:02:33Z,548,435,2005-08-02T16:32:33Z,1,2020-02-15T06:59:43Z +9270,2005-07-30T15:03:16Z,700,232,2005-07-31T16:09:16Z,2,2020-02-15T06:59:43Z +9271,2005-07-30T15:04:31Z,2660,100,2005-07-31T20:33:31Z,1,2020-02-15T06:59:43Z +9272,2005-07-30T15:05:22Z,1352,553,2005-08-05T10:02:22Z,2,2020-02-15T06:59:43Z +9273,2005-07-30T15:05:36Z,1867,497,2005-08-08T09:07:36Z,1,2020-02-15T06:59:43Z +9274,2005-07-30T15:07:04Z,4424,47,2005-08-06T11:17:04Z,2,2020-02-15T06:59:43Z +9275,2005-07-30T15:09:15Z,1916,439,2005-07-31T10:23:15Z,2,2020-02-15T06:59:43Z +9276,2005-07-30T15:09:28Z,1528,237,2005-08-06T19:39:28Z,1,2020-02-15T06:59:43Z +9277,2005-07-30T15:13:45Z,3734,82,2005-08-05T10:25:45Z,2,2020-02-15T06:59:43Z +9278,2005-07-30T15:15:19Z,3782,581,2005-08-03T20:21:19Z,1,2020-02-15T06:59:43Z +9279,2005-07-30T15:15:21Z,1070,567,2005-08-07T18:46:21Z,1,2020-02-15T06:59:43Z +9280,2005-07-30T15:15:38Z,4103,286,2005-08-05T19:20:38Z,2,2020-02-15T06:59:43Z +9281,2005-07-30T15:15:51Z,3086,398,2005-08-05T12:58:51Z,1,2020-02-15T06:59:43Z +9282,2005-07-30T15:17:31Z,736,259,2005-08-07T20:46:31Z,1,2020-02-15T06:59:43Z +9283,2005-07-30T15:25:19Z,1858,360,2005-08-01T15:35:19Z,2,2020-02-15T06:59:43Z +9284,2005-07-30T15:25:19Z,3976,38,2005-08-01T17:45:19Z,2,2020-02-15T06:59:43Z +9285,2005-07-30T15:26:08Z,3686,273,2005-08-06T15:59:08Z,2,2020-02-15T06:59:43Z +9286,2005-07-30T15:32:28Z,2477,154,2005-07-31T20:42:28Z,2,2020-02-15T06:59:43Z +9287,2005-07-30T15:35:39Z,2048,551,2005-08-02T10:15:39Z,1,2020-02-15T06:59:43Z +9288,2005-07-30T15:56:39Z,2640,447,2005-08-04T13:25:39Z,2,2020-02-15T06:59:43Z +9289,2005-07-30T15:57:04Z,389,453,2005-08-07T18:46:04Z,1,2020-02-15T06:59:43Z +9290,2005-07-30T15:59:08Z,2275,500,2005-08-06T21:49:08Z,2,2020-02-15T06:59:43Z +9291,2005-07-30T16:03:39Z,2884,406,2005-08-05T11:11:39Z,2,2020-02-15T06:59:43Z +9292,2005-07-30T16:08:21Z,1702,11,2005-08-07T10:38:21Z,2,2020-02-15T06:59:43Z +9293,2005-07-30T16:12:28Z,1676,65,2005-08-05T18:34:28Z,2,2020-02-15T06:59:43Z +9294,2005-07-30T16:14:37Z,2468,433,2005-08-07T18:49:37Z,1,2020-02-15T06:59:43Z +9295,2005-07-30T16:18:39Z,494,102,2005-08-03T12:46:39Z,1,2020-02-15T06:59:43Z +9296,2005-07-30T16:21:13Z,4088,2,2005-08-08T11:57:13Z,1,2020-02-15T06:59:43Z +9297,2005-07-30T16:26:29Z,3502,191,2005-08-03T13:51:29Z,1,2020-02-15T06:59:43Z +9298,2005-07-30T16:27:53Z,2106,208,2005-08-07T12:32:53Z,2,2020-02-15T06:59:43Z +9299,2005-07-30T16:32:51Z,1515,555,2005-08-08T15:28:51Z,2,2020-02-15T06:59:43Z +9300,2005-07-30T16:33:12Z,1639,571,2005-08-05T15:56:12Z,1,2020-02-15T06:59:43Z +9301,2005-07-30T16:34:29Z,1073,174,2005-07-31T18:41:29Z,2,2020-02-15T06:59:43Z +9302,2005-07-30T16:34:57Z,2326,55,2005-07-31T11:08:57Z,2,2020-02-15T06:59:43Z +9303,2005-07-30T16:35:59Z,4299,186,2005-08-03T18:31:59Z,1,2020-02-15T06:59:43Z +9304,2005-07-30T16:41:34Z,2937,296,2005-08-02T13:55:34Z,2,2020-02-15T06:59:43Z +9305,2005-07-30T16:45:56Z,1224,82,2005-08-08T21:15:56Z,2,2020-02-15T06:59:43Z +9306,2005-07-30T16:47:17Z,3983,336,2005-08-02T22:15:17Z,1,2020-02-15T06:59:43Z +9307,2005-07-30T16:52:43Z,3831,538,2005-08-01T11:58:43Z,1,2020-02-15T06:59:43Z +9308,2005-07-30T16:53:21Z,2202,267,2005-08-08T15:33:21Z,2,2020-02-15T06:59:43Z +9309,2005-07-30T16:55:53Z,3616,30,2005-08-07T11:23:53Z,1,2020-02-15T06:59:43Z +9310,2005-07-30T16:57:09Z,2957,529,2005-08-03T18:14:09Z,1,2020-02-15T06:59:43Z +9311,2005-07-30T16:58:31Z,1432,178,2005-08-07T15:23:31Z,1,2020-02-15T06:59:43Z +9312,2005-07-30T16:59:17Z,2483,76,2005-08-03T17:24:17Z,2,2020-02-15T06:59:43Z +9313,2005-07-30T16:59:43Z,4070,41,2005-08-05T14:06:43Z,2,2020-02-15T06:59:43Z +9314,2005-07-30T17:05:19Z,2358,390,2005-07-31T12:19:19Z,1,2020-02-15T06:59:43Z +9315,2005-07-30T17:05:29Z,444,96,2005-08-01T12:47:29Z,1,2020-02-15T06:59:43Z +9316,2005-07-30T17:11:58Z,4409,366,2005-08-05T14:36:58Z,1,2020-02-15T06:59:43Z +9317,2005-07-30T17:13:37Z,4138,217,2005-08-08T11:33:37Z,1,2020-02-15T06:59:43Z +9318,2005-07-30T17:14:30Z,2426,314,2005-08-06T16:53:30Z,1,2020-02-15T06:59:43Z +9319,2005-07-30T17:15:27Z,4066,136,2005-08-03T14:03:27Z,1,2020-02-15T06:59:43Z +9320,2005-07-30T17:16:39Z,909,221,2005-08-06T18:43:39Z,2,2020-02-15T06:59:43Z +9321,2005-07-30T17:19:44Z,3558,112,2005-08-06T22:42:44Z,2,2020-02-15T06:59:43Z +9322,2005-07-30T17:21:39Z,223,439,2005-08-06T16:58:39Z,2,2020-02-15T06:59:43Z +9323,2005-07-30T17:21:44Z,3749,131,2005-08-03T16:28:44Z,1,2020-02-15T06:59:43Z +9324,2005-07-30T17:28:52Z,1231,332,2005-08-06T19:02:52Z,1,2020-02-15T06:59:43Z +9325,2005-07-30T17:29:19Z,1938,476,2005-08-08T12:55:19Z,2,2020-02-15T06:59:43Z +9326,2005-07-30T17:30:03Z,3772,588,2005-08-01T13:41:03Z,2,2020-02-15T06:59:43Z +9327,2005-07-30T17:31:03Z,345,373,2005-08-08T19:16:03Z,1,2020-02-15T06:59:43Z +9328,2005-07-30T17:32:11Z,1087,89,2005-08-05T13:36:11Z,1,2020-02-15T06:59:43Z +9329,2005-07-30T17:42:38Z,1293,593,2005-08-08T23:17:38Z,1,2020-02-15T06:59:43Z +9330,2005-07-30T17:44:24Z,4227,232,2005-08-08T17:39:24Z,1,2020-02-15T06:59:43Z +9331,2005-07-30T17:46:50Z,2248,274,2005-08-01T19:03:50Z,1,2020-02-15T06:59:43Z +9332,2005-07-30T17:53:39Z,1156,480,2005-08-02T12:25:39Z,1,2020-02-15T06:59:43Z +9333,2005-07-30T17:53:45Z,1377,437,2005-07-31T22:35:45Z,2,2020-02-15T06:59:43Z +9334,2005-07-30T17:56:38Z,1499,25,2005-08-03T21:27:38Z,1,2020-02-15T06:59:43Z +9335,2005-07-30T18:00:53Z,1006,522,2005-08-01T16:05:53Z,1,2020-02-15T06:59:43Z +9336,2005-07-30T18:01:15Z,1911,557,2005-08-05T23:10:15Z,1,2020-02-15T06:59:43Z +9337,2005-07-30T18:02:25Z,2363,90,2005-07-31T12:30:25Z,2,2020-02-15T06:59:43Z +9338,2005-07-30T18:03:13Z,1482,333,2005-08-08T23:57:13Z,2,2020-02-15T06:59:43Z +9339,2005-07-30T18:03:28Z,3171,68,2005-08-08T19:45:28Z,2,2020-02-15T06:59:43Z +9340,2005-07-30T18:07:16Z,3228,213,2005-08-04T14:33:16Z,2,2020-02-15T06:59:43Z +9341,2005-07-30T18:07:58Z,894,557,2005-08-01T17:43:58Z,1,2020-02-15T06:59:43Z +9342,2005-07-30T18:09:56Z,2318,552,2005-08-08T13:54:56Z,2,2020-02-15T06:59:43Z +9343,2005-07-30T18:13:13Z,3521,53,2005-08-02T13:48:13Z,1,2020-02-15T06:59:43Z +9344,2005-07-30T18:13:45Z,1005,396,2005-08-07T15:23:45Z,2,2020-02-15T06:59:43Z +9345,2005-07-30T18:13:51Z,2042,436,2005-08-07T13:45:51Z,2,2020-02-15T06:59:43Z +9346,2005-07-30T18:13:52Z,2845,196,2005-08-03T17:58:52Z,1,2020-02-15T06:59:43Z +9347,2005-07-30T18:16:03Z,3557,479,2005-08-05T18:35:03Z,1,2020-02-15T06:59:43Z +9348,2005-07-30T18:17:09Z,3128,87,2005-08-07T15:25:09Z,1,2020-02-15T06:59:43Z +9349,2005-07-30T18:20:08Z,3739,579,2005-08-08T22:06:08Z,1,2020-02-15T06:59:43Z +9350,2005-07-30T18:24:30Z,798,434,2005-08-02T15:34:30Z,2,2020-02-15T06:59:43Z +9351,2005-07-30T18:28:30Z,2063,107,2005-08-02T17:26:30Z,1,2020-02-15T06:59:43Z +9352,2005-07-30T18:29:26Z,2619,360,2005-07-31T19:43:26Z,1,2020-02-15T06:59:43Z +9353,2005-07-30T18:30:37Z,3581,283,2005-08-06T22:32:37Z,2,2020-02-15T06:59:43Z +9354,2005-07-30T18:32:51Z,510,595,2005-08-02T21:28:51Z,2,2020-02-15T06:59:43Z +9355,2005-07-30T18:35:25Z,1122,201,2005-08-03T20:33:25Z,2,2020-02-15T06:59:43Z +9356,2005-07-30T18:36:24Z,4188,60,2005-08-03T14:10:24Z,1,2020-02-15T06:59:43Z +9357,2005-07-30T18:37:00Z,3927,181,2005-08-08T19:57:00Z,2,2020-02-15T06:59:43Z +9358,2005-07-30T18:37:24Z,712,302,2005-08-07T23:34:24Z,2,2020-02-15T06:59:43Z +9359,2005-07-30T18:39:28Z,21,501,2005-07-31T15:39:28Z,1,2020-02-15T06:59:43Z +9360,2005-07-30T18:39:43Z,2119,186,2005-08-04T22:41:43Z,2,2020-02-15T06:59:43Z +9361,2005-07-30T18:43:49Z,4163,335,2005-08-06T21:24:49Z,1,2020-02-15T06:59:43Z +9362,2005-07-30T18:44:16Z,3357,420,2005-08-01T20:14:16Z,1,2020-02-15T06:59:43Z +9363,2005-07-30T18:44:23Z,873,323,2005-08-04T15:03:23Z,1,2020-02-15T06:59:43Z +9364,2005-07-30T18:44:44Z,306,87,2005-08-08T23:55:44Z,2,2020-02-15T06:59:43Z +9365,2005-07-30T18:46:02Z,1539,232,2005-08-03T20:15:02Z,1,2020-02-15T06:59:43Z +9366,2005-07-30T18:48:57Z,4013,557,2005-08-03T15:17:57Z,2,2020-02-15T06:59:43Z +9367,2005-07-30T18:49:58Z,793,557,2005-08-08T22:04:58Z,1,2020-02-15T06:59:43Z +9368,2005-07-30T18:50:53Z,3026,388,2005-08-05T17:56:53Z,2,2020-02-15T06:59:43Z +9369,2005-07-30T18:52:19Z,3538,36,2005-08-01T12:53:19Z,1,2020-02-15T06:59:43Z +9370,2005-07-30T18:57:29Z,4433,588,2005-08-01T21:35:29Z,2,2020-02-15T06:59:43Z +9371,2005-07-30T18:58:00Z,2980,4,2005-08-03T15:14:00Z,1,2020-02-15T06:59:43Z +9372,2005-07-30T19:04:30Z,4075,454,2005-08-09T00:18:30Z,2,2020-02-15T06:59:43Z +9373,2005-07-30T19:05:36Z,3478,180,2005-08-05T16:16:36Z,2,2020-02-15T06:59:43Z +9374,2005-07-30T19:10:03Z,103,302,2005-08-06T21:54:03Z,2,2020-02-15T06:59:43Z +9375,2005-07-30T19:10:17Z,3063,529,2005-08-02T23:00:17Z,1,2020-02-15T06:59:43Z +9376,2005-07-30T19:11:49Z,451,86,2005-08-04T18:14:49Z,1,2020-02-15T06:59:43Z +9377,2005-07-30T19:12:18Z,4164,421,2005-08-05T19:38:18Z,1,2020-02-15T06:59:43Z +9378,2005-07-30T19:12:54Z,2209,197,2005-08-05T18:16:54Z,1,2020-02-15T06:59:43Z +9379,2005-07-30T19:13:01Z,3855,452,2005-08-07T19:18:01Z,2,2020-02-15T06:59:43Z +9380,2005-07-30T19:17:31Z,4403,264,2005-08-01T20:46:31Z,1,2020-02-15T06:59:43Z +9381,2005-07-30T19:23:04Z,4064,329,2005-07-31T23:37:04Z,2,2020-02-15T06:59:43Z +9382,2005-07-30T19:23:44Z,2127,17,2005-08-06T16:20:44Z,2,2020-02-15T06:59:43Z +9383,2005-07-30T19:24:50Z,2806,416,2005-08-01T21:41:50Z,2,2020-02-15T06:59:43Z +9384,2005-07-30T19:25:35Z,2313,220,2005-08-08T21:50:35Z,1,2020-02-15T06:59:43Z +9385,2005-07-30T19:25:49Z,3453,570,2005-08-08T17:08:49Z,2,2020-02-15T06:59:43Z +9386,2005-07-30T19:26:21Z,1123,189,2005-08-05T21:00:21Z,2,2020-02-15T06:59:43Z +9387,2005-07-30T19:27:05Z,577,495,2005-08-07T21:19:05Z,2,2020-02-15T06:59:43Z +9388,2005-07-30T19:27:22Z,2116,332,2005-08-08T15:31:22Z,2,2020-02-15T06:59:43Z +9389,2005-07-30T19:27:59Z,3124,198,2005-08-04T18:25:59Z,2,2020-02-15T06:59:43Z +9390,2005-07-30T19:42:07Z,1794,103,2005-08-01T23:17:07Z,1,2020-02-15T06:59:43Z +9391,2005-07-30T19:48:41Z,665,273,2005-08-04T15:27:41Z,1,2020-02-15T06:59:43Z +9392,2005-07-30T19:50:13Z,2797,29,2005-08-03T22:38:13Z,2,2020-02-15T06:59:43Z +9393,2005-07-30T20:04:48Z,843,158,2005-08-02T15:52:48Z,2,2020-02-15T06:59:43Z +9394,2005-07-30T20:06:24Z,161,204,2005-08-06T22:36:24Z,1,2020-02-15T06:59:43Z +9395,2005-07-30T20:07:06Z,1298,306,2005-08-08T21:21:06Z,1,2020-02-15T06:59:43Z +9396,2005-07-30T20:07:24Z,1250,91,2005-08-03T21:20:24Z,2,2020-02-15T06:59:43Z +9397,2005-07-30T20:07:29Z,1550,373,2005-08-05T00:36:29Z,1,2020-02-15T06:59:43Z +9398,2005-07-30T20:09:00Z,1175,570,2005-08-01T23:35:00Z,2,2020-02-15T06:59:43Z +9399,2005-07-30T20:14:50Z,3668,569,2005-08-03T17:30:50Z,1,2020-02-15T06:59:43Z +9400,2005-07-30T20:15:58Z,3910,368,2005-08-03T21:21:58Z,1,2020-02-15T06:59:43Z +9401,2005-07-30T20:18:19Z,2057,331,2005-08-07T15:46:19Z,1,2020-02-15T06:59:43Z +9402,2005-07-30T20:18:27Z,2424,48,2005-08-07T21:29:27Z,2,2020-02-15T06:59:43Z +9403,2005-07-30T20:18:53Z,3466,267,2005-08-06T19:54:53Z,1,2020-02-15T06:59:43Z +9404,2005-07-30T20:21:35Z,3832,140,2005-08-02T15:52:35Z,1,2020-02-15T06:59:43Z +9405,2005-07-30T20:22:17Z,1983,463,2005-08-08T16:55:17Z,1,2020-02-15T06:59:43Z +9406,2005-07-30T20:24:00Z,3419,453,2005-08-07T19:50:00Z,1,2020-02-15T06:59:43Z +9407,2005-07-30T20:25:24Z,2594,585,2005-08-08T22:51:24Z,2,2020-02-15T06:59:43Z +9408,2005-07-30T20:32:09Z,4383,571,2005-08-04T20:14:09Z,2,2020-02-15T06:59:43Z +9409,2005-07-30T20:33:53Z,3053,156,2005-08-05T18:32:53Z,2,2020-02-15T06:59:43Z +9410,2005-07-30T20:38:05Z,1789,22,2005-07-31T19:57:05Z,2,2020-02-15T06:59:43Z +9411,2005-07-30T20:38:22Z,3484,536,2005-08-06T01:23:22Z,2,2020-02-15T06:59:43Z +9412,2005-07-30T20:44:10Z,2482,522,2005-08-06T21:13:10Z,2,2020-02-15T06:59:43Z +9413,2005-07-30T20:44:39Z,2618,290,2005-08-01T01:56:39Z,2,2020-02-15T06:59:43Z +9414,2005-07-30T20:46:02Z,578,484,2005-08-07T21:23:02Z,2,2020-02-15T06:59:43Z +9415,2005-07-30T20:48:31Z,3336,139,2005-08-05T19:45:31Z,2,2020-02-15T06:59:43Z +9416,2005-07-30T20:52:45Z,1470,265,2005-08-02T17:38:45Z,2,2020-02-15T06:59:43Z +9417,2005-07-30T20:54:55Z,2509,519,2005-08-04T00:54:55Z,2,2020-02-15T06:59:43Z +9418,2005-07-30T21:00:52Z,241,168,2005-08-08T15:56:52Z,2,2020-02-15T06:59:43Z +9419,2005-07-30T21:04:59Z,4427,142,2005-08-06T15:47:59Z,2,2020-02-15T06:59:43Z +9420,2005-07-30T21:05:18Z,147,72,2005-08-05T23:52:18Z,2,2020-02-15T06:59:43Z +9421,2005-07-30T21:08:32Z,2206,161,2005-08-02T00:43:32Z,1,2020-02-15T06:59:43Z +9422,2005-07-30T21:08:41Z,1843,470,2005-08-07T15:55:41Z,1,2020-02-15T06:59:43Z +9423,2005-07-30T21:10:14Z,3145,242,2005-08-07T16:34:14Z,2,2020-02-15T06:59:43Z +9424,2005-07-30T21:10:56Z,4499,256,2005-08-05T00:01:56Z,1,2020-02-15T06:59:43Z +9425,2005-07-30T21:11:21Z,271,295,2005-08-05T19:00:21Z,1,2020-02-15T06:59:43Z +9427,2005-07-30T21:16:33Z,1494,85,2005-08-05T17:23:33Z,2,2020-02-15T06:59:43Z +9428,2005-07-30T21:18:37Z,1948,335,2005-08-05T16:09:37Z,1,2020-02-15T06:59:43Z +9429,2005-07-30T21:19:26Z,1769,288,2005-08-07T18:39:26Z,1,2020-02-15T06:59:43Z +9430,2005-07-30T21:20:13Z,1529,367,2005-08-04T21:45:13Z,2,2020-02-15T06:59:43Z +9431,2005-07-30T21:24:22Z,3364,39,2005-08-03T01:22:22Z,2,2020-02-15T06:59:43Z +9432,2005-07-30T21:26:18Z,2489,570,2005-08-05T00:23:18Z,1,2020-02-15T06:59:43Z +9433,2005-07-30T21:28:17Z,1082,128,2005-08-08T18:20:17Z,2,2020-02-15T06:59:43Z +9434,2005-07-30T21:29:41Z,3792,13,2005-08-01T16:30:41Z,2,2020-02-15T06:59:43Z +9435,2005-07-30T21:31:02Z,3116,301,2005-08-05T22:34:02Z,1,2020-02-15T06:59:43Z +9436,2005-07-30T21:33:01Z,2329,268,2005-08-06T17:38:01Z,1,2020-02-15T06:59:43Z +9437,2005-07-30T21:36:04Z,1230,592,2005-08-08T01:26:04Z,1,2020-02-15T06:59:43Z +9438,2005-07-30T21:36:15Z,121,14,2005-08-07T16:54:15Z,2,2020-02-15T06:59:43Z +9439,2005-07-30T21:38:12Z,290,479,2005-08-06T00:03:12Z,1,2020-02-15T06:59:43Z +9440,2005-07-30T21:40:15Z,414,535,2005-08-04T15:45:15Z,2,2020-02-15T06:59:43Z +9441,2005-07-30T21:43:28Z,3982,519,2005-08-08T16:57:28Z,1,2020-02-15T06:59:43Z +9442,2005-07-30T21:44:31Z,44,75,2005-08-04T01:29:31Z,1,2020-02-15T06:59:43Z +9443,2005-07-30T21:45:46Z,1675,3,2005-08-05T21:22:46Z,1,2020-02-15T06:59:43Z +9444,2005-07-30T21:48:44Z,1134,259,2005-08-08T22:36:44Z,2,2020-02-15T06:59:43Z +9445,2005-07-30T21:50:42Z,1480,549,2005-08-05T18:34:42Z,2,2020-02-15T06:59:43Z +9446,2005-07-30T21:53:01Z,1880,477,2005-08-06T19:00:01Z,2,2020-02-15T06:59:43Z +9447,2005-07-30T21:54:22Z,1053,82,2005-08-09T01:07:22Z,2,2020-02-15T06:59:43Z +9448,2005-07-30T21:56:13Z,1213,278,2005-08-04T18:03:13Z,1,2020-02-15T06:59:43Z +9449,2005-07-30T22:02:34Z,2,581,2005-08-06T02:09:34Z,1,2020-02-15T06:59:43Z +9450,2005-07-30T22:04:04Z,1371,430,2005-08-05T18:39:04Z,2,2020-02-15T06:59:43Z +9451,2005-07-30T22:10:17Z,685,584,2005-08-07T02:53:17Z,2,2020-02-15T06:59:43Z +9452,2005-07-30T22:19:16Z,3178,130,2005-08-04T19:26:16Z,1,2020-02-15T06:59:43Z +9453,2005-07-30T22:20:04Z,1988,221,2005-08-08T02:27:04Z,1,2020-02-15T06:59:43Z +9454,2005-07-30T22:20:09Z,3028,81,2005-08-04T01:33:09Z,2,2020-02-15T06:59:43Z +9455,2005-07-30T22:20:29Z,2647,220,2005-08-08T20:08:29Z,1,2020-02-15T06:59:43Z +9456,2005-07-30T22:22:16Z,2068,534,2005-08-05T18:56:16Z,2,2020-02-15T06:59:43Z +9457,2005-07-30T22:23:05Z,2172,487,2005-07-31T23:07:05Z,2,2020-02-15T06:59:43Z +9458,2005-07-30T22:24:34Z,3105,343,2005-08-04T21:26:34Z,2,2020-02-15T06:59:43Z +9459,2005-07-30T22:24:46Z,1132,489,2005-08-02T00:44:46Z,2,2020-02-15T06:59:43Z +9460,2005-07-30T22:25:39Z,4463,580,2005-08-08T20:56:39Z,2,2020-02-15T06:59:43Z +9461,2005-07-30T22:29:13Z,1679,377,2005-08-05T20:55:13Z,2,2020-02-15T06:59:43Z +9462,2005-07-30T22:30:44Z,4090,192,2005-08-09T03:54:44Z,2,2020-02-15T06:59:43Z +9463,2005-07-30T22:30:57Z,883,352,2005-08-03T22:53:57Z,1,2020-02-15T06:59:43Z +9464,2005-07-30T22:31:31Z,3904,534,2005-08-07T01:10:31Z,2,2020-02-15T06:59:43Z +9465,2005-07-30T22:39:53Z,3084,2,2005-08-06T16:43:53Z,2,2020-02-15T06:59:43Z +9466,2005-07-30T22:44:36Z,2595,137,2005-08-07T02:35:36Z,2,2020-02-15T06:59:43Z +9467,2005-07-30T22:45:34Z,1905,202,2005-08-08T00:58:34Z,2,2020-02-15T06:59:43Z +9468,2005-07-30T22:53:52Z,4366,20,2005-08-07T00:22:52Z,2,2020-02-15T06:59:43Z +9469,2005-07-30T22:56:34Z,967,59,2005-08-07T03:16:34Z,2,2020-02-15T06:59:43Z +9470,2005-07-30T23:01:31Z,3908,566,2005-08-07T01:35:31Z,2,2020-02-15T06:59:43Z +9471,2005-07-30T23:02:36Z,2390,424,2005-08-04T17:49:36Z,1,2020-02-15T06:59:43Z +9472,2005-07-30T23:03:32Z,4178,404,2005-08-01T18:02:32Z,1,2020-02-15T06:59:43Z +9473,2005-07-30T23:04:13Z,1717,185,2005-08-04T21:48:13Z,2,2020-02-15T06:59:43Z +9474,2005-07-30T23:05:44Z,3771,206,2005-08-05T23:46:44Z,1,2020-02-15T06:59:43Z +9475,2005-07-30T23:06:33Z,2186,567,2005-08-04T23:23:33Z,1,2020-02-15T06:59:43Z +9476,2005-07-30T23:06:40Z,3599,197,2005-08-04T22:52:40Z,2,2020-02-15T06:59:43Z +9477,2005-07-30T23:07:22Z,1932,213,2005-08-04T20:54:22Z,1,2020-02-15T06:59:43Z +9478,2005-07-30T23:12:53Z,1139,283,2005-08-04T02:41:53Z,1,2020-02-15T06:59:43Z +9479,2005-07-30T23:22:09Z,3461,308,2005-07-31T22:26:09Z,2,2020-02-15T06:59:43Z +9480,2005-07-30T23:26:03Z,597,373,2005-08-04T21:18:03Z,2,2020-02-15T06:59:43Z +9481,2005-07-30T23:26:05Z,613,481,2005-08-04T17:46:05Z,1,2020-02-15T06:59:43Z +9482,2005-07-30T23:29:16Z,2421,348,2005-08-02T20:37:16Z,2,2020-02-15T06:59:43Z +9483,2005-07-30T23:31:31Z,1136,593,2005-08-09T04:29:31Z,2,2020-02-15T06:59:43Z +9484,2005-07-30T23:31:40Z,3389,26,2005-08-02T18:25:40Z,1,2020-02-15T06:59:43Z +9485,2005-07-30T23:32:40Z,3722,338,2005-08-08T17:44:40Z,1,2020-02-15T06:59:43Z +9486,2005-07-30T23:35:42Z,2787,403,2005-08-09T02:08:42Z,2,2020-02-15T06:59:43Z +9487,2005-07-30T23:40:22Z,2165,406,2005-08-01T22:29:22Z,1,2020-02-15T06:59:43Z +9488,2005-07-30T23:42:42Z,4221,528,2005-08-08T22:15:42Z,1,2020-02-15T06:59:43Z +9489,2005-07-30T23:43:32Z,4011,17,2005-07-31T20:45:32Z,2,2020-02-15T06:59:43Z +9490,2005-07-30T23:45:09Z,1302,487,2005-08-07T18:50:09Z,1,2020-02-15T06:59:43Z +9491,2005-07-30T23:45:23Z,3624,179,2005-08-01T00:33:23Z,2,2020-02-15T06:59:43Z +9492,2005-07-30T23:52:21Z,639,126,2005-08-08T20:50:21Z,2,2020-02-15T06:59:43Z +9493,2005-07-30T23:52:30Z,1522,5,2005-08-08T05:22:30Z,1,2020-02-15T06:59:43Z +9494,2005-07-30T23:52:46Z,3799,254,2005-08-05T23:13:46Z,2,2020-02-15T06:59:43Z +9495,2005-07-30T23:54:26Z,2128,397,2005-08-01T22:02:26Z,2,2020-02-15T06:59:43Z +9496,2005-07-30T23:55:20Z,453,125,2005-08-02T02:47:20Z,2,2020-02-15T06:59:43Z +9497,2005-07-30T23:56:54Z,933,595,2005-08-04T19:52:54Z,1,2020-02-15T06:59:43Z +9498,2005-07-30T23:56:55Z,1035,289,2005-08-03T18:34:55Z,2,2020-02-15T06:59:43Z +9499,2005-07-30T23:58:30Z,602,461,2005-08-01T00:55:30Z,2,2020-02-15T06:59:43Z +9500,2005-07-30T23:58:36Z,2808,241,2005-08-07T21:08:36Z,2,2020-02-15T06:59:43Z +9501,2005-07-30T23:59:21Z,4398,75,2005-08-05T19:50:21Z,2,2020-02-15T06:59:43Z +9502,2005-07-31T00:02:10Z,2700,471,2005-08-01T19:47:10Z,1,2020-02-15T06:59:43Z +9503,2005-07-31T00:02:38Z,1013,311,2005-08-06T06:01:38Z,1,2020-02-15T06:59:43Z +9504,2005-07-31T00:09:07Z,91,125,2005-08-02T05:44:07Z,1,2020-02-15T06:59:43Z +9505,2005-07-31T00:11:19Z,4047,543,2005-08-05T18:24:19Z,2,2020-02-15T06:59:43Z +9506,2005-07-31T00:19:01Z,3872,189,2005-08-02T00:20:01Z,1,2020-02-15T06:59:43Z +9507,2005-07-31T00:22:29Z,387,525,2005-08-07T05:59:29Z,2,2020-02-15T06:59:43Z +9508,2005-07-31T00:22:39Z,1204,316,2005-08-04T05:40:39Z,1,2020-02-15T06:59:43Z +9509,2005-07-31T00:22:42Z,818,320,2005-08-03T23:24:42Z,1,2020-02-15T06:59:43Z +9510,2005-07-31T00:24:17Z,2301,494,2005-08-08T18:47:17Z,2,2020-02-15T06:59:43Z +9511,2005-07-31T00:25:05Z,964,549,2005-08-09T02:46:05Z,1,2020-02-15T06:59:43Z +9512,2005-07-31T00:26:30Z,3786,173,2005-08-04T23:43:30Z,2,2020-02-15T06:59:43Z +9513,2005-07-31T00:28:30Z,396,317,2005-08-01T00:22:30Z,2,2020-02-15T06:59:43Z +9514,2005-07-31T00:29:44Z,1892,243,2005-08-02T23:49:44Z,1,2020-02-15T06:59:43Z +9515,2005-07-31T00:35:05Z,3099,264,2005-08-02T23:35:05Z,2,2020-02-15T06:59:43Z +9516,2005-07-31T00:40:58Z,3519,424,2005-08-07T02:13:58Z,2,2020-02-15T06:59:43Z +9517,2005-07-31T00:41:23Z,3299,170,2005-08-02T23:08:23Z,1,2020-02-15T06:59:43Z +9518,2005-07-31T00:43:26Z,2714,215,2005-08-04T19:12:26Z,2,2020-02-15T06:59:43Z +9519,2005-07-31T00:45:57Z,3767,235,2005-08-06T00:59:57Z,2,2020-02-15T06:59:43Z +9520,2005-07-31T00:50:54Z,1306,299,2005-08-04T20:05:54Z,1,2020-02-15T06:59:43Z +9521,2005-07-31T00:52:24Z,1423,227,2005-08-06T03:33:24Z,2,2020-02-15T06:59:43Z +9522,2005-07-31T00:55:11Z,4266,294,2005-08-03T06:41:11Z,2,2020-02-15T06:59:43Z +9523,2005-07-31T00:56:09Z,891,356,2005-08-05T05:44:09Z,2,2020-02-15T06:59:43Z +9524,2005-07-31T01:01:06Z,1796,535,2005-08-04T04:06:06Z,2,2020-02-15T06:59:43Z +9525,2005-07-31T01:02:18Z,2990,246,2005-08-06T21:31:18Z,1,2020-02-15T06:59:43Z +9526,2005-07-31T01:02:22Z,417,342,2005-08-04T03:00:22Z,1,2020-02-15T06:59:43Z +9527,2005-07-31T01:02:24Z,2539,200,2005-08-09T02:08:24Z,2,2020-02-15T06:59:43Z +9528,2005-07-31T01:05:04Z,193,241,2005-08-07T01:16:04Z,1,2020-02-15T06:59:43Z +9529,2005-07-31T01:05:26Z,816,123,2005-08-02T22:30:26Z,2,2020-02-15T06:59:43Z +9530,2005-07-31T01:09:06Z,1718,148,2005-08-04T23:47:06Z,2,2020-02-15T06:59:43Z +9531,2005-07-31T01:11:53Z,4550,268,2005-08-07T02:49:53Z,1,2020-02-15T06:59:43Z +9532,2005-07-31T01:16:51Z,1309,488,2005-08-01T20:23:51Z,1,2020-02-15T06:59:43Z +9533,2005-07-31T01:18:10Z,4156,522,2005-08-07T19:58:10Z,1,2020-02-15T06:59:43Z +9534,2005-07-31T01:18:27Z,4457,519,2005-08-06T00:28:27Z,1,2020-02-15T06:59:43Z +9535,2005-07-31T01:18:53Z,2413,485,2005-08-04T03:04:53Z,2,2020-02-15T06:59:43Z +9536,2005-07-31T01:19:02Z,2547,310,2005-08-02T19:38:02Z,1,2020-02-15T06:59:43Z +9537,2005-07-31T01:23:00Z,546,488,2005-08-01T01:16:00Z,2,2020-02-15T06:59:43Z +9538,2005-07-31T01:25:22Z,3402,68,2005-08-06T00:10:22Z,2,2020-02-15T06:59:43Z +9539,2005-07-31T01:36:19Z,3793,436,2005-08-04T23:47:19Z,1,2020-02-15T06:59:43Z +9540,2005-07-31T01:40:06Z,2200,365,2005-08-01T01:09:06Z,1,2020-02-15T06:59:43Z +9541,2005-07-31T01:40:14Z,1774,422,2005-08-05T06:34:14Z,2,2020-02-15T06:59:43Z +9542,2005-07-31T01:41:48Z,2243,595,2005-08-01T00:49:48Z,2,2020-02-15T06:59:43Z +9543,2005-07-31T01:43:34Z,956,369,2005-08-01T06:49:34Z,1,2020-02-15T06:59:43Z +9544,2005-07-31T01:44:51Z,2383,28,2005-08-05T05:25:51Z,2,2020-02-15T06:59:43Z +9545,2005-07-31T01:46:24Z,3451,594,2005-08-09T06:11:24Z,1,2020-02-15T06:59:43Z +9546,2005-07-31T01:47:40Z,211,63,2005-08-02T07:25:40Z,2,2020-02-15T06:59:43Z +9547,2005-07-31T01:52:34Z,2414,440,2005-08-03T23:12:34Z,2,2020-02-15T06:59:43Z +9548,2005-07-31T01:54:19Z,3038,576,2005-08-05T00:50:19Z,2,2020-02-15T06:59:43Z +9549,2005-07-31T01:57:04Z,2409,63,2005-08-07T21:00:04Z,2,2020-02-15T06:59:43Z +9550,2005-07-31T01:57:34Z,2233,583,2005-08-08T23:33:34Z,1,2020-02-15T06:59:43Z +9551,2005-07-31T02:04:58Z,1260,30,2005-08-06T04:07:58Z,2,2020-02-15T06:59:43Z +9552,2005-07-31T02:05:32Z,3544,261,2005-08-01T06:59:32Z,1,2020-02-15T06:59:43Z +9553,2005-07-31T02:06:34Z,4187,579,2005-08-08T02:20:34Z,1,2020-02-15T06:59:43Z +9554,2005-07-31T02:06:49Z,2581,490,2005-08-01T22:27:49Z,1,2020-02-15T06:59:43Z +9555,2005-07-31T02:11:16Z,2108,382,2005-08-03T06:58:16Z,2,2020-02-15T06:59:43Z +9556,2005-07-31T02:13:30Z,3269,521,2005-08-08T06:46:30Z,1,2020-02-15T06:59:43Z +9557,2005-07-31T02:14:01Z,708,328,2005-08-05T23:55:01Z,1,2020-02-15T06:59:43Z +9558,2005-07-31T02:14:35Z,1161,418,2005-08-06T03:00:35Z,1,2020-02-15T06:59:43Z +9559,2005-07-31T02:15:53Z,2882,159,2005-08-08T02:38:53Z,1,2020-02-15T06:59:43Z +9560,2005-07-31T02:17:27Z,4236,471,2005-08-07T03:33:27Z,1,2020-02-15T06:59:43Z +9561,2005-07-31T02:22:13Z,1079,58,2005-08-03T07:00:13Z,2,2020-02-15T06:59:43Z +9562,2005-07-31T02:23:20Z,1571,116,2005-08-06T21:01:20Z,2,2020-02-15T06:59:43Z +9563,2005-07-31T02:28:39Z,3858,167,2005-08-05T22:10:39Z,1,2020-02-15T06:59:43Z +9564,2005-07-31T02:31:37Z,383,377,2005-08-03T22:57:37Z,2,2020-02-15T06:59:43Z +9565,2005-07-31T02:32:00Z,3621,485,2005-08-04T05:45:00Z,1,2020-02-15T06:59:43Z +9566,2005-07-31T02:32:10Z,643,346,2005-08-02T23:54:10Z,2,2020-02-15T06:59:43Z +9567,2005-07-31T02:36:11Z,3688,37,2005-08-07T01:19:11Z,2,2020-02-15T06:59:43Z +9568,2005-07-31T02:37:44Z,1248,358,2005-08-02T07:07:44Z,2,2020-02-15T06:59:43Z +9569,2005-07-31T02:39:38Z,813,405,2005-08-02T05:09:38Z,2,2020-02-15T06:59:43Z +9570,2005-07-31T02:40:37Z,591,385,2005-08-01T01:59:37Z,1,2020-02-15T06:59:43Z +9571,2005-07-31T02:42:18Z,2219,1,2005-08-02T23:26:18Z,2,2020-02-15T06:59:43Z +9572,2005-07-31T02:44:10Z,1453,283,2005-08-01T03:30:10Z,2,2020-02-15T06:59:43Z +9573,2005-07-31T02:45:38Z,3745,59,2005-08-09T04:31:38Z,2,2020-02-15T06:59:43Z +9574,2005-07-31T02:49:20Z,2782,233,2005-08-05T02:36:20Z,2,2020-02-15T06:59:43Z +9575,2005-07-31T02:51:53Z,3971,193,2005-08-03T20:54:53Z,2,2020-02-15T06:59:43Z +9576,2005-07-31T02:52:59Z,3327,145,2005-08-05T23:35:59Z,2,2020-02-15T06:59:43Z +9577,2005-07-31T02:53:33Z,2423,526,2005-08-07T05:56:33Z,1,2020-02-15T06:59:43Z +9578,2005-07-31T02:54:31Z,2965,115,2005-08-02T02:48:31Z,1,2020-02-15T06:59:43Z +9579,2005-07-31T02:59:20Z,3547,35,2005-08-06T03:52:20Z,2,2020-02-15T06:59:43Z +9580,2005-07-31T03:01:11Z,532,22,2005-08-05T06:01:11Z,1,2020-02-15T06:59:43Z +9581,2005-07-31T03:03:07Z,2588,302,2005-08-05T23:01:07Z,1,2020-02-15T06:59:43Z +9582,2005-07-31T03:05:19Z,3913,347,2005-08-04T07:26:19Z,1,2020-02-15T06:59:43Z +9583,2005-07-31T03:05:21Z,3543,568,2005-08-06T00:14:21Z,2,2020-02-15T06:59:43Z +9584,2005-07-31T03:05:48Z,419,141,2005-08-01T05:50:48Z,2,2020-02-15T06:59:43Z +9585,2005-07-31T03:05:55Z,3249,197,2005-08-02T23:54:55Z,2,2020-02-15T06:59:43Z +9586,2005-07-31T03:07:16Z,3987,415,2005-08-04T00:39:16Z,1,2020-02-15T06:59:43Z +9587,2005-07-31T03:10:30Z,2966,235,2005-08-06T06:54:30Z,2,2020-02-15T06:59:43Z +9588,2005-07-31T03:13:13Z,1368,499,2005-08-02T04:06:13Z,1,2020-02-15T06:59:43Z +9589,2005-07-31T03:13:29Z,2604,574,2005-08-09T01:51:29Z,2,2020-02-15T06:59:43Z +9590,2005-07-31T03:17:16Z,2293,585,2005-08-08T04:24:16Z,1,2020-02-15T06:59:43Z +9591,2005-07-31T03:19:28Z,504,97,2005-08-01T07:30:28Z,1,2020-02-15T06:59:43Z +9592,2005-07-31T03:21:16Z,1828,14,2005-08-05T08:32:16Z,1,2020-02-15T06:59:43Z +9593,2005-07-31T03:22:30Z,1223,28,2005-08-05T08:23:30Z,1,2020-02-15T06:59:43Z +9594,2005-07-31T03:23:52Z,4382,148,2005-08-04T23:06:52Z,1,2020-02-15T06:59:43Z +9595,2005-07-31T03:27:58Z,2829,3,2005-08-03T05:58:58Z,1,2020-02-15T06:59:43Z +9596,2005-07-31T03:28:47Z,2847,55,2005-08-04T03:43:47Z,2,2020-02-15T06:59:43Z +9597,2005-07-31T03:29:07Z,3317,61,2005-08-09T03:33:07Z,2,2020-02-15T06:59:43Z +9598,2005-07-31T03:30:41Z,1105,468,2005-08-04T03:54:41Z,1,2020-02-15T06:59:43Z +9599,2005-07-31T03:32:06Z,3164,502,2005-08-04T07:47:06Z,2,2020-02-15T06:59:43Z +9600,2005-07-31T03:35:34Z,3731,464,2005-08-08T22:50:34Z,1,2020-02-15T06:59:43Z +9601,2005-07-31T03:42:17Z,1592,553,2005-08-04T02:02:17Z,2,2020-02-15T06:59:43Z +9602,2005-07-31T03:42:51Z,3173,386,2005-08-01T08:39:51Z,1,2020-02-15T06:59:43Z +9603,2005-07-31T03:43:43Z,2266,541,2005-08-02T00:11:43Z,2,2020-02-15T06:59:43Z +9604,2005-07-31T03:47:12Z,4342,580,2005-08-03T06:48:12Z,1,2020-02-15T06:59:43Z +9605,2005-07-31T03:50:07Z,1477,94,2005-08-07T09:15:07Z,2,2020-02-15T06:59:43Z +9606,2005-07-31T03:50:46Z,1357,253,2005-08-01T05:29:46Z,2,2020-02-15T06:59:43Z +9607,2005-07-31T03:51:06Z,3414,294,2005-08-02T00:18:06Z,2,2020-02-15T06:59:43Z +9608,2005-07-31T03:51:52Z,363,397,2005-08-06T05:38:52Z,2,2020-02-15T06:59:43Z +9609,2005-07-31T03:53:24Z,693,112,2005-08-05T08:32:24Z,2,2020-02-15T06:59:43Z +9610,2005-07-31T03:54:05Z,3110,16,2005-08-06T23:11:05Z,1,2020-02-15T06:59:43Z +9611,2005-07-31T03:54:43Z,1976,215,2005-08-05T03:54:43Z,2,2020-02-15T06:59:43Z +9612,2005-07-31T03:58:31Z,2142,69,2005-08-04T07:34:31Z,2,2020-02-15T06:59:43Z +9613,2005-07-31T03:58:53Z,3251,188,2005-08-02T00:10:53Z,1,2020-02-15T06:59:43Z +9614,2005-07-31T03:59:31Z,2955,548,2005-08-08T04:19:31Z,1,2020-02-15T06:59:43Z +9615,2005-07-31T03:59:56Z,3370,50,2005-08-02T00:46:56Z,2,2020-02-15T06:59:43Z +9616,2005-07-31T04:05:01Z,1210,550,2005-08-05T00:10:01Z,1,2020-02-15T06:59:43Z +9617,2005-07-31T04:15:38Z,529,102,2005-08-02T04:24:38Z,1,2020-02-15T06:59:43Z +9618,2005-07-31T04:16:14Z,2688,253,2005-08-07T02:43:14Z,2,2020-02-15T06:59:43Z +9619,2005-07-31T04:17:02Z,1730,138,2005-08-05T06:36:02Z,2,2020-02-15T06:59:43Z +9620,2005-07-31T04:19:18Z,2177,576,2005-08-08T09:20:18Z,1,2020-02-15T06:59:43Z +9621,2005-07-31T04:21:08Z,325,38,2005-08-08T03:50:08Z,2,2020-02-15T06:59:43Z +9622,2005-07-31T04:21:45Z,2255,411,2005-08-02T09:20:45Z,1,2020-02-15T06:59:43Z +9623,2005-07-31T04:30:02Z,113,360,2005-08-06T23:34:02Z,1,2020-02-15T06:59:43Z +9624,2005-07-31T04:30:03Z,3480,7,2005-08-06T09:13:03Z,1,2020-02-15T06:59:43Z +9625,2005-07-31T04:30:48Z,1703,445,2005-08-03T01:12:48Z,1,2020-02-15T06:59:43Z +9626,2005-07-31T04:37:41Z,2216,546,2005-08-08T04:00:41Z,1,2020-02-15T06:59:43Z +9627,2005-07-31T04:42:46Z,471,12,2005-08-08T00:42:46Z,2,2020-02-15T06:59:43Z +9628,2005-07-31T04:51:11Z,1387,565,2005-07-31T23:11:11Z,2,2020-02-15T06:59:43Z +9629,2005-07-31T04:54:43Z,2773,8,2005-08-02T08:36:43Z,1,2020-02-15T06:59:43Z +9630,2005-07-31T04:57:07Z,2008,599,2005-08-07T10:55:07Z,2,2020-02-15T06:59:43Z +9631,2005-07-31T05:02:00Z,321,595,2005-08-02T02:04:00Z,2,2020-02-15T06:59:43Z +9632,2005-07-31T05:02:23Z,3368,217,2005-08-06T04:49:23Z,2,2020-02-15T06:59:43Z +9633,2005-07-31T05:04:08Z,1141,334,2005-08-06T00:52:08Z,2,2020-02-15T06:59:43Z +9634,2005-07-31T05:06:02Z,924,444,2005-08-04T06:53:02Z,1,2020-02-15T06:59:43Z +9635,2005-07-31T05:12:27Z,1687,371,2005-08-02T00:24:27Z,2,2020-02-15T06:59:43Z +9636,2005-07-31T05:12:59Z,1725,27,2005-08-09T07:31:59Z,2,2020-02-15T06:59:43Z +9637,2005-07-31T05:18:54Z,3013,130,2005-08-03T01:23:54Z,2,2020-02-15T06:59:43Z +9638,2005-07-31T05:30:27Z,1616,436,2005-08-09T02:04:27Z,1,2020-02-15T06:59:43Z +9639,2005-07-31T05:32:10Z,1373,459,2005-08-03T07:04:10Z,2,2020-02-15T06:59:43Z +9640,2005-07-31T05:33:25Z,1067,67,2005-08-09T09:41:25Z,1,2020-02-15T06:59:43Z +9641,2005-07-31T05:33:48Z,1085,30,2005-08-04T07:43:48Z,1,2020-02-15T06:59:43Z +9642,2005-07-31T05:33:57Z,3550,68,2005-08-05T04:54:57Z,1,2020-02-15T06:59:43Z +9643,2005-07-31T05:35:48Z,3576,538,2005-08-08T04:28:48Z,2,2020-02-15T06:59:43Z +9644,2005-07-31T05:40:35Z,4577,441,2005-08-09T08:18:35Z,1,2020-02-15T06:59:43Z +9645,2005-07-31T05:42:49Z,3413,519,2005-08-04T00:08:49Z,1,2020-02-15T06:59:43Z +9646,2005-07-31T05:43:28Z,3756,89,2005-08-08T04:00:28Z,1,2020-02-15T06:59:43Z +9647,2005-07-31T05:45:15Z,3415,475,2005-08-06T08:54:15Z,1,2020-02-15T06:59:43Z +9648,2005-07-31T05:46:03Z,4063,72,2005-08-09T04:36:03Z,2,2020-02-15T06:59:43Z +9649,2005-07-31T05:46:54Z,1588,51,2005-08-04T08:42:54Z,2,2020-02-15T06:59:43Z +9650,2005-07-31T05:47:32Z,2997,414,2005-08-04T00:50:32Z,2,2020-02-15T06:59:43Z +9651,2005-07-31T05:48:49Z,4059,324,2005-08-04T06:53:49Z,1,2020-02-15T06:59:43Z +9652,2005-07-31T05:49:53Z,448,207,2005-08-06T07:38:53Z,2,2020-02-15T06:59:43Z +9653,2005-07-31T05:55:38Z,1451,383,2005-08-03T09:35:38Z,2,2020-02-15T06:59:43Z +9654,2005-07-31T05:57:42Z,3286,506,2005-08-06T04:19:42Z,1,2020-02-15T06:59:43Z +9655,2005-07-31T05:57:54Z,3403,435,2005-08-06T02:00:54Z,1,2020-02-15T06:59:43Z +9656,2005-07-31T06:00:21Z,4215,39,2005-08-05T04:36:21Z,1,2020-02-15T06:59:43Z +9657,2005-07-31T06:00:41Z,2681,402,2005-08-06T06:51:41Z,2,2020-02-15T06:59:43Z +9658,2005-07-31T06:00:52Z,2332,282,2005-08-09T04:47:52Z,2,2020-02-15T06:59:43Z +9659,2005-07-31T06:02:14Z,4262,360,2005-08-07T00:54:14Z,2,2020-02-15T06:59:43Z +9660,2005-07-31T06:03:17Z,1090,406,2005-08-07T06:59:17Z,2,2020-02-15T06:59:43Z +9661,2005-07-31T06:06:37Z,2693,237,2005-08-04T07:37:37Z,1,2020-02-15T06:59:43Z +9662,2005-07-31T06:09:53Z,2757,96,2005-08-08T00:50:53Z,2,2020-02-15T06:59:43Z +9663,2005-07-31T06:10:48Z,2099,339,2005-08-01T11:40:48Z,2,2020-02-15T06:59:43Z +9664,2005-07-31T06:12:08Z,360,13,2005-08-04T02:19:08Z,2,2020-02-15T06:59:43Z +9665,2005-07-31T06:17:33Z,2863,478,2005-08-04T08:53:33Z,1,2020-02-15T06:59:43Z +9666,2005-07-31T06:20:58Z,4318,592,2005-08-06T06:09:58Z,2,2020-02-15T06:59:43Z +9667,2005-07-31T06:23:52Z,4289,523,2005-08-09T09:12:52Z,1,2020-02-15T06:59:43Z +9668,2005-07-31T06:31:03Z,1647,378,2005-08-07T06:19:03Z,2,2020-02-15T06:59:43Z +9669,2005-07-31T06:31:36Z,4496,277,2005-08-08T03:05:36Z,2,2020-02-15T06:59:43Z +9670,2005-07-31T06:33:33Z,3709,349,2005-08-07T04:51:33Z,1,2020-02-15T06:59:43Z +9671,2005-07-31T06:33:41Z,920,133,2005-08-02T07:50:41Z,1,2020-02-15T06:59:43Z +9672,2005-07-31T06:34:06Z,4394,183,2005-08-08T10:29:06Z,2,2020-02-15T06:59:43Z +9673,2005-07-31T06:34:55Z,339,27,2005-08-09T09:15:55Z,2,2020-02-15T06:59:43Z +9674,2005-07-31T06:36:53Z,3213,297,2005-08-06T02:50:53Z,2,2020-02-15T06:59:43Z +9675,2005-07-31T06:37:07Z,2523,243,2005-08-03T07:03:07Z,1,2020-02-15T06:59:43Z +9676,2005-07-31T06:39:13Z,681,239,2005-08-05T09:31:13Z,2,2020-02-15T06:59:43Z +9677,2005-07-31T06:39:45Z,3200,274,2005-08-01T02:37:45Z,2,2020-02-15T06:59:43Z +9678,2005-07-31T06:40:47Z,3430,383,2005-08-02T00:57:47Z,2,2020-02-15T06:59:43Z +9679,2005-07-31T06:41:19Z,3819,599,2005-08-02T07:23:19Z,1,2020-02-15T06:59:43Z +9680,2005-07-31T06:41:46Z,3010,84,2005-08-01T11:02:46Z,2,2020-02-15T06:59:43Z +9681,2005-07-31T06:42:09Z,64,160,2005-08-06T08:21:09Z,1,2020-02-15T06:59:43Z +9682,2005-07-31T06:47:10Z,2427,425,2005-08-04T09:07:10Z,1,2020-02-15T06:59:43Z +9683,2005-07-31T06:47:13Z,856,141,2005-08-04T05:52:13Z,2,2020-02-15T06:59:43Z +9684,2005-07-31T06:48:33Z,362,591,2005-08-01T07:07:33Z,2,2020-02-15T06:59:43Z +9685,2005-07-31T06:49:18Z,3097,165,2005-08-04T03:19:18Z,1,2020-02-15T06:59:43Z +9686,2005-07-31T06:50:06Z,3825,386,2005-08-06T08:41:06Z,1,2020-02-15T06:59:43Z +9687,2005-07-31T06:52:54Z,3540,470,2005-08-01T03:40:54Z,2,2020-02-15T06:59:43Z +9688,2005-07-31T06:56:08Z,1304,566,2005-08-08T03:31:08Z,2,2020-02-15T06:59:43Z +9689,2005-07-31T07:00:08Z,819,498,2005-08-04T03:33:08Z,2,2020-02-15T06:59:43Z +9690,2005-07-31T07:06:29Z,4449,468,2005-08-06T09:45:29Z,2,2020-02-15T06:59:43Z +9691,2005-07-31T07:09:55Z,2626,50,2005-08-09T02:29:55Z,1,2020-02-15T06:59:43Z +9692,2005-07-31T07:11:04Z,3481,295,2005-08-07T06:34:04Z,2,2020-02-15T06:59:43Z +9693,2005-07-31T07:11:50Z,1031,273,2005-08-08T09:55:50Z,1,2020-02-15T06:59:43Z +9694,2005-07-31T07:13:16Z,3447,508,2005-08-06T09:12:16Z,2,2020-02-15T06:59:43Z +9695,2005-07-31T07:13:30Z,726,95,2005-08-07T05:38:30Z,2,2020-02-15T06:59:43Z +9696,2005-07-31T07:13:46Z,2703,156,2005-08-03T10:49:46Z,2,2020-02-15T06:59:43Z +9697,2005-07-31T07:23:11Z,762,479,2005-08-05T08:04:11Z,2,2020-02-15T06:59:43Z +9698,2005-07-31T07:24:35Z,3477,594,2005-08-09T04:52:35Z,2,2020-02-15T06:59:43Z +9699,2005-07-31T07:29:25Z,199,21,2005-08-06T01:35:25Z,1,2020-02-15T06:59:43Z +9700,2005-07-31T07:29:59Z,2678,40,2005-08-02T09:53:59Z,1,2020-02-15T06:59:43Z +9701,2005-07-31T07:32:21Z,4581,401,2005-08-01T05:07:21Z,2,2020-02-15T06:59:43Z +9702,2005-07-31T07:34:07Z,3353,525,2005-08-02T06:13:07Z,2,2020-02-15T06:59:43Z +9703,2005-07-31T07:34:52Z,2708,57,2005-08-03T13:33:52Z,2,2020-02-15T06:59:43Z +9704,2005-07-31T07:39:32Z,1402,385,2005-08-06T01:50:32Z,2,2020-02-15T06:59:43Z +9705,2005-07-31T07:40:33Z,4158,28,2005-08-01T03:50:33Z,2,2020-02-15T06:59:43Z +9706,2005-07-31T07:43:19Z,142,508,2005-08-05T11:11:19Z,1,2020-02-15T06:59:43Z +9707,2005-07-31T07:44:18Z,203,351,2005-08-08T12:45:18Z,1,2020-02-15T06:59:43Z +9708,2005-07-31T07:45:33Z,3264,12,2005-08-08T08:56:33Z,1,2020-02-15T06:59:43Z +9709,2005-07-31T08:04:55Z,2096,137,2005-08-07T08:58:55Z,1,2020-02-15T06:59:43Z +9710,2005-07-31T08:05:31Z,3486,380,2005-08-09T03:29:31Z,2,2020-02-15T06:59:43Z +9711,2005-07-31T08:06:41Z,1525,231,2005-08-02T10:30:41Z,2,2020-02-15T06:59:43Z +9712,2005-07-31T08:13:11Z,2487,219,2005-08-08T12:40:11Z,2,2020-02-15T06:59:43Z +9713,2005-07-31T08:13:28Z,929,158,2005-08-07T10:11:28Z,1,2020-02-15T06:59:43Z +9714,2005-07-31T08:15:32Z,1532,144,2005-08-03T08:33:32Z,2,2020-02-15T06:59:43Z +9715,2005-07-31T08:16:58Z,3319,237,2005-08-04T11:13:58Z,1,2020-02-15T06:59:43Z +9716,2005-07-31T08:23:53Z,3385,287,2005-08-08T12:03:53Z,2,2020-02-15T06:59:43Z +9717,2005-07-31T08:24:41Z,4207,114,2005-08-04T02:51:41Z,1,2020-02-15T06:59:43Z +9718,2005-07-31T08:25:03Z,2747,23,2005-08-08T04:16:03Z,2,2020-02-15T06:59:43Z +9719,2005-07-31T08:25:13Z,335,584,2005-08-05T08:22:13Z,1,2020-02-15T06:59:43Z +9720,2005-07-31T08:25:21Z,1282,587,2005-08-07T11:30:21Z,2,2020-02-15T06:59:43Z +9721,2005-07-31T08:28:46Z,3942,196,2005-08-05T14:03:46Z,1,2020-02-15T06:59:43Z +9722,2005-07-31T08:29:48Z,4260,125,2005-08-07T07:52:48Z,2,2020-02-15T06:59:43Z +9723,2005-07-31T08:31:18Z,3968,24,2005-08-03T10:25:18Z,1,2020-02-15T06:59:43Z +9724,2005-07-31T08:33:08Z,518,130,2005-08-08T04:50:08Z,1,2020-02-15T06:59:43Z +9725,2005-07-31T08:35:18Z,3960,503,2005-08-03T03:46:18Z,2,2020-02-15T06:59:43Z +9726,2005-07-31T08:37:07Z,1701,162,2005-08-09T06:09:07Z,1,2020-02-15T06:59:43Z +9727,2005-07-31T08:39:13Z,3076,536,2005-08-03T07:54:13Z,1,2020-02-15T06:59:43Z +9728,2005-07-31T08:40:54Z,3630,399,2005-08-03T04:14:54Z,2,2020-02-15T06:59:43Z +9729,2005-07-31T08:43:43Z,4199,273,2005-08-01T13:25:43Z,2,2020-02-15T06:59:43Z +9730,2005-07-31T08:50:08Z,2605,242,2005-08-08T12:21:08Z,2,2020-02-15T06:59:43Z +9731,2005-07-31T08:54:47Z,3713,349,2005-08-05T03:47:47Z,1,2020-02-15T06:59:43Z +9732,2005-07-31T08:56:08Z,3262,288,2005-08-07T11:05:08Z,2,2020-02-15T06:59:43Z +9733,2005-07-31T08:57:35Z,1255,575,2005-08-04T04:47:35Z,1,2020-02-15T06:59:43Z +9734,2005-07-31T08:57:45Z,3320,125,2005-08-05T11:57:45Z,1,2020-02-15T06:59:43Z +9735,2005-07-31T08:57:49Z,4228,315,2005-08-08T13:51:49Z,2,2020-02-15T06:59:43Z +9736,2005-07-31T08:58:40Z,2072,13,2005-08-09T08:34:40Z,2,2020-02-15T06:59:43Z +9737,2005-07-31T08:59:18Z,1720,475,2005-08-03T12:19:18Z,2,2020-02-15T06:59:43Z +9738,2005-07-31T09:04:14Z,2278,568,2005-08-05T14:40:14Z,2,2020-02-15T06:59:43Z +9739,2005-07-31T09:08:03Z,1328,343,2005-08-04T13:57:03Z,1,2020-02-15T06:59:43Z +9740,2005-07-31T09:08:03Z,3497,443,2005-08-06T04:48:03Z,2,2020-02-15T06:59:43Z +9741,2005-07-31T09:09:22Z,1971,495,2005-08-07T10:01:22Z,1,2020-02-15T06:59:43Z +9742,2005-07-31T09:10:20Z,4058,48,2005-08-08T10:07:20Z,1,2020-02-15T06:59:43Z +9743,2005-07-31T09:12:42Z,1740,476,2005-08-06T11:57:42Z,2,2020-02-15T06:59:43Z +9744,2005-07-31T09:15:38Z,839,459,2005-08-03T10:31:38Z,2,2020-02-15T06:59:43Z +9745,2005-07-31T09:16:14Z,3610,217,2005-08-07T12:11:14Z,1,2020-02-15T06:59:43Z +9746,2005-07-31T09:16:48Z,1459,308,2005-08-07T06:36:48Z,2,2020-02-15T06:59:43Z +9747,2005-07-31T09:16:57Z,2455,106,2005-08-08T06:47:57Z,2,2020-02-15T06:59:43Z +9748,2005-07-31T09:17:56Z,3308,550,2005-08-02T14:54:56Z,1,2020-02-15T06:59:43Z +9749,2005-07-31T09:18:33Z,658,52,2005-08-06T07:41:33Z,1,2020-02-15T06:59:43Z +9750,2005-07-31T09:19:46Z,3174,527,2005-08-06T08:07:46Z,1,2020-02-15T06:59:43Z +9751,2005-07-31T09:20:50Z,36,202,2005-08-01T05:34:50Z,2,2020-02-15T06:59:43Z +9752,2005-07-31T09:22:02Z,249,199,2005-08-02T14:34:02Z,1,2020-02-15T06:59:43Z +9753,2005-07-31T09:22:38Z,3529,98,2005-08-01T08:45:38Z,1,2020-02-15T06:59:43Z +9754,2005-07-31T09:23:43Z,3751,479,2005-08-08T06:04:43Z,1,2020-02-15T06:59:43Z +9755,2005-07-31T09:24:55Z,86,108,2005-08-07T06:00:55Z,2,2020-02-15T06:59:43Z +9756,2005-07-31T09:25:00Z,207,400,2005-08-02T05:11:00Z,1,2020-02-15T06:59:43Z +9757,2005-07-31T09:25:14Z,2596,408,2005-08-01T14:43:14Z,2,2020-02-15T06:59:43Z +9758,2005-07-31T09:25:38Z,1307,160,2005-08-03T14:16:38Z,1,2020-02-15T06:59:43Z +9759,2005-07-31T09:25:57Z,2950,574,2005-08-07T12:56:57Z,2,2020-02-15T06:59:43Z +9760,2005-07-31T09:29:33Z,426,511,2005-08-09T07:32:33Z,2,2020-02-15T06:59:43Z +9761,2005-07-31T09:31:54Z,3778,60,2005-08-03T11:02:54Z,2,2020-02-15T06:59:43Z +9762,2005-07-31T09:32:54Z,155,540,2005-08-05T04:55:54Z,1,2020-02-15T06:59:43Z +9763,2005-07-31T09:34:03Z,126,393,2005-08-08T05:30:03Z,1,2020-02-15T06:59:43Z +9764,2005-07-31T09:42:58Z,3761,136,2005-08-07T07:22:58Z,2,2020-02-15T06:59:43Z +9765,2005-07-31T09:44:40Z,472,551,2005-08-05T10:57:40Z,1,2020-02-15T06:59:43Z +9766,2005-07-31T09:46:29Z,4049,570,2005-08-01T05:08:29Z,1,2020-02-15T06:59:43Z +9767,2005-07-31T09:46:49Z,3432,89,2005-08-03T11:20:49Z,1,2020-02-15T06:59:43Z +9768,2005-07-31T09:48:41Z,2656,582,2005-08-08T11:40:41Z,2,2020-02-15T06:59:43Z +9769,2005-07-31T09:52:16Z,2958,484,2005-08-06T09:26:16Z,1,2020-02-15T06:59:43Z +9770,2005-07-31T09:52:40Z,1226,317,2005-08-09T06:44:40Z,1,2020-02-15T06:59:43Z +9771,2005-07-31T09:55:36Z,4123,398,2005-08-04T10:11:36Z,2,2020-02-15T06:59:43Z +9772,2005-07-31T09:56:07Z,3639,147,2005-08-01T13:50:07Z,2,2020-02-15T06:59:43Z +9773,2005-07-31T09:56:56Z,4555,376,2005-08-04T09:38:56Z,1,2020-02-15T06:59:43Z +9774,2005-07-31T09:57:51Z,4174,306,2005-08-02T09:08:51Z,2,2020-02-15T06:59:43Z +9775,2005-07-31T10:00:00Z,2818,162,2005-08-01T08:57:00Z,2,2020-02-15T06:59:43Z +9776,2005-07-31T10:01:03Z,2524,73,2005-08-03T07:20:03Z,2,2020-02-15T06:59:43Z +9777,2005-07-31T10:01:06Z,225,539,2005-08-08T04:44:06Z,2,2020-02-15T06:59:43Z +9778,2005-07-31T10:02:04Z,304,230,2005-08-04T07:44:04Z,2,2020-02-15T06:59:43Z +9779,2005-07-31T10:08:33Z,1280,402,2005-08-03T14:56:33Z,1,2020-02-15T06:59:43Z +9780,2005-07-31T10:10:22Z,3241,102,2005-08-02T11:43:22Z,1,2020-02-15T06:59:43Z +9781,2005-07-31T10:13:02Z,2310,155,2005-08-09T14:46:02Z,1,2020-02-15T06:59:43Z +9782,2005-07-31T10:14:26Z,2397,438,2005-08-06T16:11:26Z,1,2020-02-15T06:59:43Z +9783,2005-07-31T10:15:46Z,836,75,2005-08-09T13:22:46Z,2,2020-02-15T06:59:43Z +9784,2005-07-31T10:21:32Z,2761,362,2005-08-07T09:20:32Z,2,2020-02-15T06:59:43Z +9785,2005-07-31T10:22:15Z,4101,587,2005-08-02T10:02:15Z,1,2020-02-15T06:59:43Z +9786,2005-07-31T10:25:21Z,2560,586,2005-08-03T04:28:21Z,1,2020-02-15T06:59:43Z +9787,2005-07-31T10:26:19Z,3559,272,2005-08-09T09:02:19Z,1,2020-02-15T06:59:43Z +9788,2005-07-31T10:28:21Z,4367,344,2005-08-09T13:45:21Z,1,2020-02-15T06:59:43Z +9789,2005-07-31T10:30:25Z,619,137,2005-08-03T14:58:25Z,1,2020-02-15T06:59:43Z +9790,2005-07-31T10:34:08Z,3643,284,2005-08-04T11:19:08Z,2,2020-02-15T06:59:43Z +9791,2005-07-31T10:35:22Z,3642,300,2005-08-03T05:34:22Z,1,2020-02-15T06:59:43Z +9792,2005-07-31T10:43:41Z,3163,292,2005-08-07T10:18:41Z,1,2020-02-15T06:59:43Z +9793,2005-07-31T10:45:11Z,4576,295,2005-08-03T14:29:11Z,1,2020-02-15T06:59:43Z +9794,2005-07-31T10:47:01Z,1771,403,2005-08-02T06:52:01Z,2,2020-02-15T06:59:43Z +9795,2005-07-31T10:47:19Z,2005,63,2005-08-04T09:32:19Z,2,2020-02-15T06:59:43Z +9796,2005-07-31T10:52:43Z,1038,539,2005-08-09T06:08:43Z,1,2020-02-15T06:59:43Z +9797,2005-07-31T10:53:44Z,687,52,2005-08-09T05:51:44Z,1,2020-02-15T06:59:43Z +9798,2005-07-31T10:55:18Z,3759,55,2005-08-01T07:37:18Z,2,2020-02-15T06:59:43Z +9799,2005-07-31T10:58:32Z,3008,494,2005-08-01T12:08:32Z,1,2020-02-15T06:59:43Z +9800,2005-07-31T11:00:58Z,2153,257,2005-08-02T10:13:58Z,2,2020-02-15T06:59:43Z +9801,2005-07-31T11:03:13Z,3033,158,2005-08-04T10:55:13Z,2,2020-02-15T06:59:43Z +9802,2005-07-31T11:04:20Z,2156,594,2005-08-03T05:28:20Z,1,2020-02-15T06:59:43Z +9803,2005-07-31T11:06:02Z,3783,520,2005-08-01T06:25:02Z,1,2020-02-15T06:59:43Z +9804,2005-07-31T11:07:39Z,2490,196,2005-08-09T11:57:39Z,1,2020-02-15T06:59:43Z +9805,2005-07-31T11:11:10Z,4179,36,2005-08-03T07:36:10Z,2,2020-02-15T06:59:43Z +9806,2005-07-31T11:13:49Z,245,46,2005-08-04T06:18:49Z,1,2020-02-15T06:59:43Z +9807,2005-07-31T11:13:52Z,2137,267,2005-08-02T07:34:52Z,1,2020-02-15T06:59:43Z +9808,2005-07-31T11:17:22Z,3259,583,2005-08-07T15:54:22Z,1,2020-02-15T06:59:43Z +9809,2005-07-31T11:19:21Z,359,286,2005-08-08T12:43:21Z,2,2020-02-15T06:59:43Z +9810,2005-07-31T11:22:41Z,2066,545,2005-08-01T09:40:41Z,2,2020-02-15T06:59:43Z +9811,2005-07-31T11:23:45Z,3305,77,2005-08-06T15:51:45Z,1,2020-02-15T06:59:43Z +9812,2005-07-31T11:28:07Z,1540,57,2005-08-01T12:35:07Z,2,2020-02-15T06:59:43Z +9813,2005-07-31T11:29:23Z,1706,245,2005-08-07T08:01:23Z,2,2020-02-15T06:59:43Z +9814,2005-07-31T11:29:46Z,136,79,2005-08-08T15:49:46Z,1,2020-02-15T06:59:43Z +9815,2005-07-31T11:30:51Z,2728,540,2005-08-08T12:52:51Z,1,2020-02-15T06:59:43Z +9816,2005-07-31T11:32:58Z,4560,3,2005-08-04T17:12:58Z,2,2020-02-15T06:59:43Z +9817,2005-07-31T11:33:31Z,4019,170,2005-08-08T14:49:31Z,2,2020-02-15T06:59:43Z +9818,2005-07-31T11:34:32Z,1254,183,2005-08-04T08:20:32Z,1,2020-02-15T06:59:43Z +9819,2005-07-31T11:39:13Z,1927,292,2005-08-06T09:11:13Z,2,2020-02-15T06:59:43Z +9820,2005-07-31T11:46:57Z,499,279,2005-08-08T13:35:57Z,1,2020-02-15T06:59:43Z +9821,2005-07-31T11:47:54Z,386,271,2005-08-08T06:21:54Z,2,2020-02-15T06:59:43Z +9822,2005-07-31T11:48:25Z,2469,381,2005-08-05T15:52:25Z,2,2020-02-15T06:59:43Z +9823,2005-07-31T11:49:00Z,4423,129,2005-08-07T09:06:00Z,2,2020-02-15T06:59:43Z +9824,2005-07-31T11:49:55Z,4368,404,2005-08-07T16:54:55Z,2,2020-02-15T06:59:43Z +9825,2005-07-31T11:50:51Z,4322,390,2005-08-02T07:18:51Z,1,2020-02-15T06:59:43Z +9826,2005-07-31T11:51:46Z,2649,595,2005-08-09T17:18:46Z,1,2020-02-15T06:59:43Z +9827,2005-07-31T11:56:55Z,3840,329,2005-08-09T16:29:55Z,1,2020-02-15T06:59:43Z +9828,2005-07-31T11:56:57Z,3845,376,2005-08-02T17:05:57Z,1,2020-02-15T06:59:43Z +9829,2005-07-31T11:58:38Z,231,435,2005-08-07T08:11:38Z,2,2020-02-15T06:59:43Z +9830,2005-07-31T11:59:05Z,170,112,2005-08-06T10:38:05Z,1,2020-02-15T06:59:43Z +9831,2005-07-31T11:59:32Z,1961,192,2005-08-04T07:14:32Z,1,2020-02-15T06:59:43Z +9832,2005-07-31T12:01:49Z,3126,64,2005-08-08T09:21:49Z,1,2020-02-15T06:59:43Z +9833,2005-07-31T12:05:01Z,4243,368,2005-08-09T09:25:01Z,2,2020-02-15T06:59:43Z +9834,2005-07-31T12:05:42Z,2292,340,2005-08-07T15:26:42Z,1,2020-02-15T06:59:43Z +9835,2005-07-31T12:07:35Z,1051,328,2005-08-04T07:32:35Z,2,2020-02-15T06:59:43Z +9836,2005-07-31T12:12:00Z,2870,313,2005-08-09T06:53:00Z,1,2020-02-15T06:59:43Z +9837,2005-07-31T12:14:19Z,3488,573,2005-08-09T17:08:19Z,1,2020-02-15T06:59:43Z +9838,2005-07-31T12:18:49Z,3866,208,2005-08-03T16:49:49Z,2,2020-02-15T06:59:43Z +9839,2005-07-31T12:21:16Z,1591,561,2005-08-09T13:41:16Z,2,2020-02-15T06:59:43Z +9840,2005-07-31T12:23:18Z,364,388,2005-08-06T15:59:18Z,1,2020-02-15T06:59:43Z +9841,2005-07-31T12:24:19Z,4554,238,2005-08-09T15:31:19Z,1,2020-02-15T06:59:43Z +9842,2005-07-31T12:24:58Z,2896,261,2005-08-02T11:01:58Z,2,2020-02-15T06:59:43Z +9843,2005-07-31T12:25:28Z,2923,532,2005-08-01T09:51:28Z,2,2020-02-15T06:59:43Z +9844,2005-07-31T12:26:31Z,3930,181,2005-08-05T13:58:31Z,1,2020-02-15T06:59:43Z +9845,2005-07-31T12:28:05Z,2417,79,2005-08-06T06:47:05Z,1,2020-02-15T06:59:43Z +9846,2005-07-31T12:30:12Z,4240,573,2005-08-05T08:24:12Z,2,2020-02-15T06:59:43Z +9847,2005-07-31T12:33:43Z,1137,174,2005-08-04T14:15:43Z,2,2020-02-15T06:59:43Z +9848,2005-07-31T12:44:33Z,3290,346,2005-08-07T13:49:33Z,2,2020-02-15T06:59:43Z +9849,2005-07-31T12:44:34Z,2230,429,2005-08-02T16:49:34Z,1,2020-02-15T06:59:43Z +9850,2005-07-31T12:46:52Z,1461,497,2005-08-04T10:52:52Z,2,2020-02-15T06:59:43Z +9851,2005-07-31T12:50:24Z,25,49,2005-08-08T08:30:24Z,2,2020-02-15T06:59:43Z +9852,2005-07-31T12:52:17Z,4257,415,2005-08-05T07:59:17Z,2,2020-02-15T06:59:43Z +9853,2005-07-31T12:58:20Z,1782,221,2005-08-04T10:47:20Z,1,2020-02-15T06:59:43Z +9854,2005-07-31T12:59:34Z,1049,441,2005-08-03T07:20:34Z,2,2020-02-15T06:59:43Z +9855,2005-07-31T13:00:33Z,1246,326,2005-08-03T16:18:33Z,2,2020-02-15T06:59:43Z +9856,2005-07-31T13:00:35Z,723,347,2005-08-07T18:07:35Z,1,2020-02-15T06:59:43Z +9857,2005-07-31T13:00:53Z,3316,168,2005-08-09T15:56:53Z,1,2020-02-15T06:59:43Z +9858,2005-07-31T13:02:07Z,252,128,2005-08-03T15:14:07Z,2,2020-02-15T06:59:43Z +9859,2005-07-31T13:02:55Z,4094,127,2005-08-05T11:04:55Z,1,2020-02-15T06:59:43Z +9860,2005-07-31T13:03:24Z,3266,585,2005-08-07T07:28:24Z,2,2020-02-15T06:59:43Z +9861,2005-07-31T13:04:14Z,1050,264,2005-08-09T15:22:14Z,1,2020-02-15T06:59:43Z +9862,2005-07-31T13:05:03Z,474,513,2005-08-01T09:05:03Z,2,2020-02-15T06:59:43Z +9863,2005-07-31T13:05:29Z,19,239,2005-08-08T12:33:29Z,1,2020-02-15T06:59:43Z +9864,2005-07-31T13:06:54Z,3619,394,2005-08-02T11:47:54Z,2,2020-02-15T06:59:43Z +9865,2005-07-31T13:10:45Z,1355,580,2005-08-02T09:19:45Z,2,2020-02-15T06:59:43Z +9866,2005-07-31T13:13:50Z,3555,374,2005-08-07T15:11:50Z,1,2020-02-15T06:59:43Z +9867,2005-07-31T13:17:04Z,2485,83,2005-08-05T07:17:04Z,2,2020-02-15T06:59:43Z +9868,2005-07-31T13:20:08Z,266,378,2005-08-01T18:17:08Z,2,2020-02-15T06:59:43Z +9869,2005-07-31T13:21:54Z,783,261,2005-08-07T09:09:54Z,1,2020-02-15T06:59:43Z +9870,2005-07-31T13:22:51Z,442,195,2005-08-05T16:04:51Z,1,2020-02-15T06:59:43Z +9871,2005-07-31T13:25:46Z,194,109,2005-08-01T13:12:46Z,2,2020-02-15T06:59:43Z +9872,2005-07-31T13:27:55Z,1021,376,2005-08-04T14:33:55Z,1,2020-02-15T06:59:43Z +9873,2005-07-31T13:32:18Z,667,442,2005-08-06T11:15:18Z,2,2020-02-15T06:59:43Z +9874,2005-07-31T13:32:31Z,2476,482,2005-08-07T09:50:31Z,2,2020-02-15T06:59:43Z +9875,2005-07-31T13:37:41Z,2878,421,2005-08-03T15:17:41Z,2,2020-02-15T06:59:43Z +9876,2005-07-31T13:37:51Z,828,347,2005-08-07T18:05:51Z,2,2020-02-15T06:59:43Z +9877,2005-07-31T13:41:57Z,1299,559,2005-08-06T15:27:57Z,2,2020-02-15T06:59:43Z +9878,2005-07-31T13:42:02Z,1753,424,2005-08-05T10:15:02Z,2,2020-02-15T06:59:43Z +9879,2005-07-31T13:45:32Z,1935,178,2005-08-07T17:12:32Z,1,2020-02-15T06:59:43Z +9880,2005-07-31T13:49:02Z,3590,64,2005-08-08T10:31:02Z,2,2020-02-15T06:59:43Z +9881,2005-07-31T13:50:38Z,4209,412,2005-08-06T08:58:38Z,1,2020-02-15T06:59:43Z +9882,2005-07-31T13:53:33Z,1429,311,2005-08-09T15:55:33Z,1,2020-02-15T06:59:43Z +9883,2005-07-31T13:53:37Z,4286,356,2005-08-06T15:45:37Z,1,2020-02-15T06:59:43Z +9884,2005-07-31T13:56:24Z,511,590,2005-08-01T16:59:24Z,1,2020-02-15T06:59:43Z +9885,2005-07-31T13:59:32Z,3600,461,2005-08-07T12:30:32Z,2,2020-02-15T06:59:43Z +9886,2005-07-31T14:00:13Z,1386,519,2005-08-08T19:30:13Z,1,2020-02-15T06:59:43Z +9887,2005-07-31T14:00:32Z,436,549,2005-08-05T19:16:32Z,1,2020-02-15T06:59:43Z +9888,2005-07-31T14:00:53Z,4400,5,2005-08-08T18:51:53Z,2,2020-02-15T06:59:43Z +9889,2005-07-31T14:02:50Z,2842,143,2005-08-05T12:09:50Z,2,2020-02-15T06:59:43Z +9890,2005-07-31T14:04:44Z,1024,151,2005-08-01T11:24:44Z,1,2020-02-15T06:59:43Z +9891,2005-07-31T14:05:44Z,3359,462,2005-08-02T16:21:44Z,2,2020-02-15T06:59:43Z +9892,2005-07-31T14:06:25Z,1045,251,2005-08-03T18:11:25Z,2,2020-02-15T06:59:43Z +9893,2005-07-31T14:07:21Z,2445,179,2005-08-01T09:20:21Z,2,2020-02-15T06:59:43Z +9894,2005-07-31T14:07:44Z,3724,199,2005-08-05T18:01:44Z,2,2020-02-15T06:59:43Z +9895,2005-07-31T14:07:56Z,835,560,2005-08-05T14:56:56Z,1,2020-02-15T06:59:43Z +9896,2005-07-31T14:09:48Z,2591,586,2005-08-01T20:02:48Z,1,2020-02-15T06:59:43Z +9897,2005-07-31T14:11:57Z,3945,538,2005-08-02T12:20:57Z,1,2020-02-15T06:59:43Z +9898,2005-07-31T14:12:03Z,2151,359,2005-08-01T12:27:03Z,1,2020-02-15T06:59:43Z +9899,2005-07-31T14:12:36Z,3352,168,2005-08-08T08:59:36Z,1,2020-02-15T06:59:43Z +9900,2005-07-31T14:15:05Z,3132,453,2005-08-07T11:58:05Z,2,2020-02-15T06:59:43Z +9901,2005-07-31T14:20:59Z,3332,277,2005-08-03T09:30:59Z,1,2020-02-15T06:59:43Z +9902,2005-07-31T14:24:33Z,486,218,2005-08-09T11:11:33Z,2,2020-02-15T06:59:43Z +9903,2005-07-31T14:31:44Z,1621,316,2005-08-08T20:03:44Z,1,2020-02-15T06:59:43Z +9904,2005-07-31T14:34:17Z,4089,428,2005-08-08T17:19:17Z,1,2020-02-15T06:59:43Z +9905,2005-07-31T14:37:03Z,2839,519,2005-08-01T15:55:03Z,2,2020-02-15T06:59:43Z +9906,2005-07-31T14:38:12Z,4241,204,2005-08-01T13:56:12Z,1,2020-02-15T06:59:43Z +9907,2005-07-31T14:39:50Z,4282,120,2005-08-09T09:39:50Z,1,2020-02-15T06:59:43Z +9908,2005-07-31T14:39:52Z,4408,27,2005-08-09T09:46:52Z,2,2020-02-15T06:59:43Z +9909,2005-07-31T14:43:34Z,2600,587,2005-08-09T15:31:34Z,1,2020-02-15T06:59:43Z +9910,2005-07-31T14:47:57Z,368,122,2005-08-05T18:20:57Z,1,2020-02-15T06:59:43Z +9911,2005-07-31T14:48:01Z,3879,112,2005-08-06T11:55:01Z,1,2020-02-15T06:59:43Z +9912,2005-07-31T14:49:04Z,3119,367,2005-08-03T15:40:04Z,1,2020-02-15T06:59:43Z +9913,2005-07-31T14:51:04Z,3744,229,2005-08-06T12:12:04Z,1,2020-02-15T06:59:43Z +9914,2005-07-31T14:51:19Z,3147,530,2005-08-05T09:51:19Z,1,2020-02-15T06:59:43Z +9915,2005-07-31T14:52:26Z,2933,566,2005-08-03T11:53:26Z,1,2020-02-15T06:59:43Z +9916,2005-07-31T14:54:52Z,949,432,2005-08-07T13:18:52Z,1,2020-02-15T06:59:43Z +9917,2005-07-31T14:55:11Z,3829,159,2005-08-02T13:58:11Z,2,2020-02-15T06:59:43Z +9918,2005-07-31T14:55:22Z,2519,283,2005-08-04T09:02:22Z,2,2020-02-15T06:59:43Z +9919,2005-07-31T14:55:46Z,3205,291,2005-08-08T11:43:46Z,2,2020-02-15T06:59:43Z +9920,2005-07-31T14:57:13Z,3108,139,2005-08-03T18:58:13Z,2,2020-02-15T06:59:43Z +9921,2005-07-31T14:59:21Z,1004,332,2005-08-01T12:40:21Z,2,2020-02-15T06:59:43Z +9922,2005-07-31T14:59:37Z,3615,25,2005-08-06T14:05:37Z,1,2020-02-15T06:59:43Z +9923,2005-07-31T15:00:15Z,1635,209,2005-08-05T11:09:15Z,2,2020-02-15T06:59:43Z +9924,2005-07-31T15:04:57Z,1986,64,2005-08-05T20:07:57Z,2,2020-02-15T06:59:43Z +9925,2005-07-31T15:08:47Z,2351,24,2005-08-02T20:27:47Z,1,2020-02-15T06:59:43Z +9926,2005-07-31T15:11:51Z,3733,472,2005-08-09T18:26:51Z,1,2020-02-15T06:59:43Z +9927,2005-07-31T15:12:13Z,999,346,2005-08-01T11:37:13Z,1,2020-02-15T06:59:43Z +9928,2005-07-31T15:13:57Z,3627,53,2005-08-06T20:39:57Z,1,2020-02-15T06:59:43Z +9929,2005-07-31T15:17:24Z,2521,564,2005-08-03T17:27:24Z,1,2020-02-15T06:59:43Z +9930,2005-07-31T15:18:03Z,4491,304,2005-08-01T12:36:03Z,2,2020-02-15T06:59:43Z +9931,2005-07-31T15:18:19Z,3455,183,2005-08-04T14:23:19Z,2,2020-02-15T06:59:43Z +9932,2005-07-31T15:19:48Z,1691,264,2005-08-05T21:09:48Z,1,2020-02-15T06:59:43Z +9933,2005-07-31T15:24:46Z,2349,111,2005-08-01T10:00:46Z,1,2020-02-15T06:59:43Z +9934,2005-07-31T15:25:26Z,2492,236,2005-08-05T17:13:26Z,1,2020-02-15T06:59:43Z +9935,2005-07-31T15:27:07Z,2247,10,2005-08-05T11:23:07Z,1,2020-02-15T06:59:43Z +9936,2005-07-31T15:27:41Z,979,153,2005-08-06T16:25:41Z,1,2020-02-15T06:59:43Z +9937,2005-07-31T15:28:10Z,3697,521,2005-08-06T21:20:10Z,2,2020-02-15T06:59:43Z +9938,2005-07-31T15:28:47Z,2871,63,2005-08-09T21:24:47Z,2,2020-02-15T06:59:43Z +9939,2005-07-31T15:29:00Z,3049,538,2005-08-08T11:09:00Z,1,2020-02-15T06:59:43Z +9940,2005-07-31T15:29:06Z,3975,388,2005-08-06T14:26:06Z,2,2020-02-15T06:59:43Z +9941,2005-07-31T15:31:25Z,1756,175,2005-08-05T17:23:25Z,1,2020-02-15T06:59:43Z +9942,2005-07-31T15:35:43Z,4573,545,2005-08-07T17:37:43Z,2,2020-02-15T06:59:43Z +9943,2005-07-31T15:37:29Z,887,494,2005-08-09T18:25:29Z,1,2020-02-15T06:59:43Z +9944,2005-07-31T15:44:43Z,2540,241,2005-08-08T10:30:43Z,1,2020-02-15T06:59:43Z +9945,2005-07-31T15:47:51Z,2075,309,2005-08-02T19:06:51Z,1,2020-02-15T06:59:43Z +9946,2005-07-31T15:48:54Z,2100,29,2005-08-03T12:42:54Z,2,2020-02-15T06:59:43Z +9947,2005-07-31T15:49:40Z,1173,138,2005-08-08T11:11:40Z,1,2020-02-15T06:59:43Z +9948,2005-07-31T15:49:41Z,806,342,2005-08-06T12:36:41Z,1,2020-02-15T06:59:43Z +9949,2005-07-31T15:50:10Z,3258,309,2005-08-01T17:53:10Z,2,2020-02-15T06:59:43Z +9950,2005-07-31T15:50:22Z,1657,572,2005-08-08T19:10:22Z,2,2020-02-15T06:59:43Z +9951,2005-07-31T15:51:16Z,4412,95,2005-08-03T14:54:16Z,1,2020-02-15T06:59:43Z +9952,2005-07-31T15:52:37Z,1634,128,2005-08-06T10:50:37Z,2,2020-02-15T06:59:43Z +9953,2005-07-31T15:56:35Z,1646,211,2005-08-02T12:01:35Z,2,2020-02-15T06:59:43Z +9954,2005-07-31T15:57:07Z,1830,463,2005-08-05T12:04:07Z,2,2020-02-15T06:59:43Z +9955,2005-07-31T16:01:26Z,1745,342,2005-08-04T11:15:26Z,2,2020-02-15T06:59:43Z +9956,2005-07-31T16:03:47Z,4485,342,2005-08-01T16:40:47Z,2,2020-02-15T06:59:43Z +9957,2005-07-31T16:03:55Z,1857,85,2005-08-04T15:16:55Z,2,2020-02-15T06:59:43Z +9958,2005-07-31T16:03:56Z,4142,157,2005-08-04T15:21:56Z,2,2020-02-15T06:59:43Z +9959,2005-07-31T16:04:22Z,340,199,2005-08-03T21:51:22Z,2,2020-02-15T06:59:43Z +9960,2005-07-31T16:05:52Z,1022,569,2005-08-05T14:15:52Z,2,2020-02-15T06:59:43Z +9961,2005-07-31T16:07:50Z,1856,40,2005-08-07T18:37:50Z,2,2020-02-15T06:59:43Z +9962,2005-07-31T16:10:36Z,1951,576,2005-08-02T17:09:36Z,1,2020-02-15T06:59:43Z +9963,2005-07-31T16:16:46Z,1609,573,2005-08-02T22:00:46Z,1,2020-02-15T06:59:43Z +9964,2005-07-31T16:17:39Z,3149,191,2005-08-03T15:03:39Z,1,2020-02-15T06:59:43Z +9965,2005-07-31T16:19:32Z,3946,101,2005-08-05T20:18:32Z,2,2020-02-15T06:59:43Z +9966,2005-07-31T16:26:46Z,4137,373,2005-08-03T14:29:46Z,1,2020-02-15T06:59:43Z +9967,2005-07-31T16:31:17Z,958,537,2005-08-06T13:52:17Z,1,2020-02-15T06:59:43Z +9968,2005-07-31T16:32:16Z,2666,363,2005-08-08T12:23:16Z,1,2020-02-15T06:59:43Z +9969,2005-07-31T16:38:12Z,938,151,2005-08-05T11:45:12Z,2,2020-02-15T06:59:43Z +9970,2005-07-31T16:38:24Z,2846,578,2005-08-02T12:59:24Z,2,2020-02-15T06:59:43Z +9971,2005-07-31T16:42:16Z,2674,573,2005-08-09T18:08:16Z,2,2020-02-15T06:59:43Z +9972,2005-07-31T16:42:43Z,190,506,2005-08-02T11:05:43Z,2,2020-02-15T06:59:43Z +9973,2005-07-31T16:49:31Z,1850,369,2005-08-03T22:03:31Z,2,2020-02-15T06:59:43Z +9974,2005-07-31T16:51:11Z,430,503,2005-08-05T16:04:11Z,1,2020-02-15T06:59:43Z +9975,2005-07-31T16:53:43Z,2564,40,2005-08-07T20:13:43Z,2,2020-02-15T06:59:43Z +9976,2005-07-31T16:57:49Z,4219,579,2005-08-03T16:33:49Z,2,2020-02-15T06:59:43Z +9977,2005-07-31T16:58:42Z,2300,363,2005-08-09T13:34:42Z,1,2020-02-15T06:59:43Z +9978,2005-07-31T16:59:51Z,2812,427,2005-08-06T16:48:51Z,2,2020-02-15T06:59:43Z +9979,2005-07-31T17:00:07Z,646,576,2005-08-08T20:40:07Z,1,2020-02-15T06:59:43Z +9980,2005-07-31T17:02:00Z,122,225,2005-08-08T11:11:00Z,2,2020-02-15T06:59:43Z +9981,2005-07-31T17:08:31Z,1354,321,2005-08-01T22:46:31Z,2,2020-02-15T06:59:43Z +9982,2005-07-31T17:09:02Z,2698,428,2005-08-02T13:02:02Z,2,2020-02-15T06:59:43Z +9983,2005-07-31T17:09:36Z,350,129,2005-08-08T20:26:36Z,1,2020-02-15T06:59:43Z +9984,2005-07-31T17:12:23Z,433,432,2005-08-01T21:04:23Z,2,2020-02-15T06:59:43Z +9985,2005-07-31T17:14:47Z,1831,85,2005-08-01T12:11:47Z,2,2020-02-15T06:59:43Z +9986,2005-07-31T17:16:50Z,1242,124,2005-08-05T18:34:50Z,2,2020-02-15T06:59:43Z +9987,2005-07-31T17:22:35Z,1619,15,2005-08-01T21:19:35Z,2,2020-02-15T06:59:43Z +9988,2005-07-31T17:22:36Z,3844,243,2005-08-07T18:35:36Z,2,2020-02-15T06:59:43Z +9989,2005-07-31T17:22:39Z,1713,79,2005-08-01T18:55:39Z,1,2020-02-15T06:59:43Z +9990,2005-07-31T17:24:21Z,4481,555,2005-08-09T17:14:21Z,2,2020-02-15T06:59:43Z +9991,2005-07-31T17:26:27Z,3662,414,2005-08-03T17:36:27Z,1,2020-02-15T06:59:43Z +9992,2005-07-31T17:29:48Z,4242,304,2005-08-09T13:02:48Z,2,2020-02-15T06:59:43Z +9993,2005-07-31T17:30:20Z,2503,225,2005-08-01T20:53:20Z,2,2020-02-15T06:59:43Z +9994,2005-07-31T17:30:31Z,2155,195,2005-08-01T11:35:31Z,1,2020-02-15T06:59:43Z +9995,2005-07-31T17:30:47Z,1978,180,2005-08-04T12:20:47Z,2,2020-02-15T06:59:43Z +9996,2005-07-31T17:32:03Z,3271,104,2005-08-06T16:17:03Z,2,2020-02-15T06:59:43Z +9997,2005-07-31T17:37:30Z,640,579,2005-08-02T14:49:30Z,1,2020-02-15T06:59:43Z +9998,2005-07-31T17:40:35Z,2549,30,2005-08-04T18:15:35Z,1,2020-02-15T06:59:43Z +9999,2005-07-31T17:40:53Z,1438,543,2005-08-01T14:25:53Z,1,2020-02-15T06:59:43Z +10000,2005-07-31T17:41:05Z,3221,576,2005-08-02T20:51:05Z,1,2020-02-15T06:59:43Z +10001,2005-07-31T17:46:18Z,2188,244,2005-08-07T20:38:18Z,1,2020-02-15T06:59:43Z +10002,2005-07-31T17:48:16Z,1002,323,2005-08-06T16:15:16Z,1,2020-02-15T06:59:43Z +10003,2005-07-31T17:48:51Z,1603,13,2005-08-02T14:23:51Z,1,2020-02-15T06:59:43Z +10004,2005-07-31T17:51:23Z,2396,570,2005-08-03T19:12:23Z,1,2020-02-15T06:59:43Z +10005,2005-07-31T17:53:51Z,928,454,2005-08-09T21:39:51Z,1,2020-02-15T06:59:43Z +10006,2005-07-31T17:54:35Z,2538,470,2005-08-02T20:40:35Z,2,2020-02-15T06:59:43Z +10007,2005-07-31T17:54:58Z,293,445,2005-08-05T17:24:58Z,2,2020-02-15T06:59:43Z +10008,2005-07-31T17:59:36Z,2589,91,2005-08-03T22:43:36Z,2,2020-02-15T06:59:43Z +10009,2005-07-31T18:00:28Z,4441,437,2005-08-08T22:24:28Z,2,2020-02-15T06:59:43Z +10010,2005-07-31T18:01:36Z,2655,373,2005-08-07T20:27:36Z,2,2020-02-15T06:59:43Z +10011,2005-07-31T18:02:41Z,606,128,2005-08-08T17:04:41Z,1,2020-02-15T06:59:43Z +10012,2005-07-31T18:06:06Z,2554,513,2005-08-09T16:47:06Z,2,2020-02-15T06:59:43Z +10013,2005-07-31T18:08:21Z,2364,377,2005-08-08T13:22:21Z,2,2020-02-15T06:59:43Z +10014,2005-07-31T18:10:56Z,2344,443,2005-08-02T23:36:56Z,1,2020-02-15T06:59:43Z +10015,2005-07-31T18:11:17Z,67,153,2005-08-03T15:48:17Z,2,2020-02-15T06:59:43Z +10016,2005-07-31T18:13:06Z,2183,478,2005-08-09T22:11:06Z,1,2020-02-15T06:59:43Z +10017,2005-07-31T18:13:22Z,1495,424,2005-08-05T16:03:22Z,1,2020-02-15T06:59:43Z +10018,2005-07-31T18:15:14Z,3708,481,2005-08-05T14:44:14Z,2,2020-02-15T06:59:43Z +10019,2005-07-31T18:20:56Z,2114,536,2005-08-07T14:25:56Z,1,2020-02-15T06:59:43Z +10020,2005-07-31T18:21:08Z,302,526,2005-08-02T14:03:08Z,2,2020-02-15T06:59:43Z +10021,2005-07-31T18:24:39Z,3235,597,2005-08-01T19:16:39Z,1,2020-02-15T06:59:43Z +10022,2005-07-31T18:25:30Z,1900,115,2005-08-04T13:35:30Z,1,2020-02-15T06:59:43Z +10023,2005-07-31T18:25:51Z,384,318,2005-08-09T18:00:51Z,1,2020-02-15T06:59:43Z +10024,2005-07-31T18:26:36Z,265,129,2005-08-09T16:16:36Z,1,2020-02-15T06:59:43Z +10025,2005-07-31T18:29:09Z,475,565,2005-08-07T14:20:09Z,2,2020-02-15T06:59:43Z +10026,2005-07-31T18:31:51Z,39,332,2005-08-03T21:14:51Z,2,2020-02-15T06:59:43Z +10027,2005-07-31T18:33:51Z,525,287,2005-08-09T18:40:51Z,1,2020-02-15T06:59:43Z +10028,2005-07-31T18:35:54Z,2305,323,2005-08-01T13:01:54Z,2,2020-02-15T06:59:43Z +10029,2005-07-31T18:37:47Z,505,578,2005-08-06T14:58:47Z,2,2020-02-15T06:59:43Z +10030,2005-07-31T18:39:36Z,1392,325,2005-08-03T15:29:36Z,2,2020-02-15T06:59:43Z +10031,2005-07-31T18:40:15Z,3048,96,2005-08-03T14:38:15Z,1,2020-02-15T06:59:43Z +10032,2005-07-31T18:41:55Z,2331,126,2005-08-04T22:45:55Z,1,2020-02-15T06:59:43Z +10033,2005-07-31T18:44:29Z,4480,381,2005-08-04T19:52:29Z,1,2020-02-15T06:59:43Z +10034,2005-07-31T18:45:30Z,354,442,2005-08-04T21:13:30Z,2,2020-02-15T06:59:43Z +10035,2005-07-31T18:46:46Z,2694,333,2005-08-04T20:33:46Z,1,2020-02-15T06:59:43Z +10036,2005-07-31T18:47:20Z,41,491,2005-08-03T22:53:20Z,1,2020-02-15T06:59:43Z +10037,2005-07-31T18:48:08Z,438,58,2005-08-09T19:11:08Z,2,2020-02-15T06:59:43Z +10038,2005-07-31T18:49:12Z,3727,112,2005-08-01T18:02:12Z,1,2020-02-15T06:59:43Z +10039,2005-07-31T18:50:40Z,4391,111,2005-08-01T18:49:40Z,2,2020-02-15T06:59:43Z +10040,2005-07-31T18:54:15Z,2281,268,2005-08-05T17:33:15Z,2,2020-02-15T06:59:43Z +10041,2005-07-31T19:01:02Z,2994,379,2005-08-07T21:32:02Z,1,2020-02-15T06:59:43Z +10042,2005-07-31T19:01:25Z,123,204,2005-08-06T14:21:25Z,1,2020-02-15T06:59:43Z +10043,2005-07-31T19:02:07Z,2558,222,2005-08-07T17:58:07Z,1,2020-02-15T06:59:43Z +10044,2005-07-31T19:02:33Z,3349,388,2005-08-05T13:24:33Z,2,2020-02-15T06:59:43Z +10045,2005-07-31T19:04:35Z,58,118,2005-08-07T16:53:35Z,1,2020-02-15T06:59:43Z +10046,2005-07-31T19:07:11Z,4302,50,2005-08-03T13:25:11Z,1,2020-02-15T06:59:43Z +10047,2005-07-31T19:07:43Z,4195,244,2005-08-07T00:20:43Z,2,2020-02-15T06:59:43Z +10048,2005-07-31T19:08:56Z,3821,267,2005-08-05T20:15:56Z,2,2020-02-15T06:59:43Z +10049,2005-07-31T19:11:11Z,854,457,2005-08-03T22:15:11Z,1,2020-02-15T06:59:43Z +10050,2005-07-31T19:13:29Z,295,230,2005-08-06T15:44:29Z,1,2020-02-15T06:59:43Z +10051,2005-07-31T19:14:20Z,163,74,2005-08-05T19:45:20Z,1,2020-02-15T06:59:43Z +10052,2005-07-31T19:15:13Z,3307,39,2005-08-07T22:47:13Z,2,2020-02-15T06:59:43Z +10053,2005-07-31T19:15:39Z,4102,223,2005-08-07T22:32:39Z,1,2020-02-15T06:59:43Z +10054,2005-07-31T19:15:52Z,2303,598,2005-08-04T19:54:52Z,1,2020-02-15T06:59:43Z +10055,2005-07-31T19:15:58Z,2725,336,2005-08-05T20:23:58Z,1,2020-02-15T06:59:43Z +10056,2005-07-31T19:19:13Z,281,237,2005-08-01T16:09:13Z,2,2020-02-15T06:59:43Z +10057,2005-07-31T19:20:18Z,3485,230,2005-08-08T17:59:18Z,2,2020-02-15T06:59:43Z +10058,2005-07-31T19:20:21Z,758,237,2005-08-04T00:41:21Z,2,2020-02-15T06:59:43Z +10059,2005-07-31T19:20:49Z,2020,274,2005-08-03T14:39:49Z,1,2020-02-15T06:59:43Z +10060,2005-07-31T19:23:00Z,1979,42,2005-08-08T19:07:00Z,1,2020-02-15T06:59:43Z +10061,2005-07-31T19:23:25Z,1401,390,2005-08-04T19:38:25Z,1,2020-02-15T06:59:43Z +10062,2005-07-31T19:24:55Z,1815,333,2005-08-03T22:51:55Z,2,2020-02-15T06:59:43Z +10063,2005-07-31T19:25:13Z,3003,517,2005-08-09T15:55:13Z,1,2020-02-15T06:59:43Z +10064,2005-07-31T19:27:02Z,3140,41,2005-08-06T21:15:02Z,1,2020-02-15T06:59:43Z +10065,2005-07-31T19:27:34Z,1426,495,2005-08-01T13:45:34Z,2,2020-02-15T06:59:43Z +10066,2005-07-31T19:30:01Z,4285,123,2005-08-01T14:45:01Z,2,2020-02-15T06:59:43Z +10067,2005-07-31T19:37:58Z,1940,148,2005-08-04T17:32:58Z,2,2020-02-15T06:59:43Z +10068,2005-07-31T19:39:38Z,4000,58,2005-08-05T22:49:38Z,1,2020-02-15T06:59:43Z +10069,2005-07-31T19:43:18Z,2168,270,2005-08-06T19:40:18Z,2,2020-02-15T06:59:43Z +10070,2005-07-31T19:46:29Z,1010,325,2005-08-03T22:21:29Z,1,2020-02-15T06:59:43Z +10071,2005-07-31T19:49:35Z,2360,353,2005-08-03T00:00:35Z,2,2020-02-15T06:59:43Z +10072,2005-07-31T19:50:37Z,3963,520,2005-08-03T00:25:37Z,2,2020-02-15T06:59:43Z +10073,2005-07-31T19:53:15Z,4246,584,2005-08-05T23:12:15Z,2,2020-02-15T06:59:43Z +10074,2005-07-31T19:57:16Z,1268,69,2005-08-04T00:54:16Z,1,2020-02-15T06:59:43Z +10075,2005-07-31T19:58:42Z,2037,469,2005-08-08T19:49:42Z,1,2020-02-15T06:59:43Z +10076,2005-07-31T20:00:34Z,1117,555,2005-08-10T00:37:34Z,2,2020-02-15T06:59:43Z +10077,2005-07-31T20:01:06Z,2333,19,2005-08-09T16:07:06Z,1,2020-02-15T06:59:43Z +10078,2005-07-31T20:02:02Z,3198,151,2005-08-04T00:45:02Z,1,2020-02-15T06:59:43Z +10079,2005-07-31T20:05:45Z,4541,486,2005-08-04T16:25:45Z,2,2020-02-15T06:59:43Z +10080,2005-07-31T20:07:10Z,4355,62,2005-08-04T23:07:10Z,2,2020-02-15T06:59:43Z +10081,2005-07-31T20:07:44Z,3183,443,2005-08-06T20:04:44Z,1,2020-02-15T06:59:43Z +10082,2005-07-31T20:09:32Z,1275,76,2005-08-01T15:41:32Z,2,2020-02-15T06:59:43Z +10083,2005-07-31T20:10:19Z,2585,449,2005-08-06T23:18:19Z,1,2020-02-15T06:59:43Z +10084,2005-07-31T20:11:29Z,524,528,2005-08-06T22:28:29Z,2,2020-02-15T06:59:43Z +10085,2005-07-31T20:12:02Z,2556,392,2005-08-03T00:03:02Z,2,2020-02-15T06:59:43Z +10086,2005-07-31T20:14:08Z,2853,205,2005-08-07T01:33:08Z,2,2020-02-15T06:59:43Z +10087,2005-07-31T20:15:22Z,1393,245,2005-08-07T01:33:22Z,1,2020-02-15T06:59:43Z +10088,2005-07-31T20:16:21Z,4293,46,2005-08-01T22:47:21Z,2,2020-02-15T06:59:43Z +10089,2005-07-31T20:17:09Z,248,160,2005-08-01T19:14:09Z,2,2020-02-15T06:59:43Z +10090,2005-07-31T20:22:01Z,4023,533,2005-08-04T17:30:01Z,1,2020-02-15T06:59:43Z +10091,2005-07-31T20:23:13Z,1878,135,2005-08-02T21:58:13Z,2,2020-02-15T06:59:43Z +10092,2005-07-31T20:28:09Z,4151,364,2005-08-01T21:37:09Z,1,2020-02-15T06:59:43Z +10093,2005-07-31T20:30:32Z,3943,162,2005-08-04T00:04:32Z,2,2020-02-15T06:59:43Z +10094,2005-07-31T20:31:18Z,2865,596,2005-08-06T18:31:18Z,2,2020-02-15T06:59:43Z +10095,2005-07-31T20:38:35Z,4062,370,2005-08-02T02:33:35Z,1,2020-02-15T06:59:43Z +10096,2005-07-31T20:38:58Z,3606,290,2005-08-06T02:34:58Z,1,2020-02-15T06:59:43Z +10097,2005-07-31T20:39:38Z,784,519,2005-08-08T22:22:38Z,1,2020-02-15T06:59:43Z +10098,2005-07-31T20:41:17Z,1324,155,2005-08-02T00:06:17Z,2,2020-02-15T06:59:43Z +10099,2005-07-31T20:47:14Z,1960,220,2005-08-02T17:25:14Z,1,2020-02-15T06:59:43Z +10100,2005-07-31T20:47:18Z,4050,330,2005-08-03T16:58:18Z,2,2020-02-15T06:59:43Z +10101,2005-07-31T20:47:29Z,2513,119,2005-08-04T21:28:29Z,1,2020-02-15T06:59:43Z +10102,2005-07-31T20:49:10Z,4078,170,2005-08-08T20:15:10Z,1,2020-02-15T06:59:43Z +10103,2005-07-31T20:49:13Z,77,25,2005-08-05T15:55:13Z,2,2020-02-15T06:59:43Z +10104,2005-07-31T20:49:14Z,3358,186,2005-08-05T01:11:14Z,2,2020-02-15T06:59:43Z +10105,2005-07-31T20:54:20Z,112,286,2005-08-09T17:45:20Z,1,2020-02-15T06:59:43Z +10106,2005-07-31T21:00:47Z,3444,556,2005-08-02T20:11:47Z,2,2020-02-15T06:59:43Z +10107,2005-07-31T21:01:46Z,1326,414,2005-08-09T01:33:46Z,2,2020-02-15T06:59:43Z +10108,2005-07-31T21:02:14Z,3703,326,2005-08-01T18:28:14Z,1,2020-02-15T06:59:43Z +10109,2005-07-31T21:04:49Z,2852,403,2005-08-08T19:25:49Z,1,2020-02-15T06:59:43Z +10110,2005-07-31T21:06:12Z,4081,138,2005-08-03T02:03:12Z,2,2020-02-15T06:59:43Z +10111,2005-07-31T21:08:33Z,3474,38,2005-08-06T02:58:33Z,2,2020-02-15T06:59:43Z +10112,2005-07-31T21:08:56Z,2643,198,2005-08-01T23:35:56Z,2,2020-02-15T06:59:43Z +10113,2005-07-31T21:10:03Z,3974,461,2005-08-02T21:13:03Z,2,2020-02-15T06:59:43Z +10114,2005-07-31T21:12:58Z,3881,218,2005-08-02T19:45:58Z,2,2020-02-15T06:59:43Z +10115,2005-07-31T21:13:47Z,2731,68,2005-08-10T00:44:47Z,1,2020-02-15T06:59:43Z +10116,2005-07-31T21:14:02Z,738,28,2005-08-03T01:48:02Z,2,2020-02-15T06:59:43Z +10117,2005-07-31T21:14:31Z,1894,459,2005-08-01T15:59:31Z,2,2020-02-15T06:59:43Z +10118,2005-07-31T21:16:31Z,1209,143,2005-08-03T02:32:31Z,1,2020-02-15T06:59:43Z +10119,2005-07-31T21:20:59Z,54,351,2005-08-02T23:14:59Z,2,2020-02-15T06:59:43Z +10120,2005-07-31T21:24:24Z,1709,396,2005-08-03T17:44:24Z,2,2020-02-15T06:59:43Z +10121,2005-07-31T21:24:53Z,2969,425,2005-08-03T22:24:53Z,1,2020-02-15T06:59:43Z +10122,2005-07-31T21:29:28Z,4229,196,2005-08-09T00:04:28Z,1,2020-02-15T06:59:43Z +10123,2005-07-31T21:30:46Z,4564,487,2005-08-06T16:28:46Z,1,2020-02-15T06:59:43Z +10124,2005-07-31T21:31:49Z,1956,396,2005-08-04T00:06:49Z,1,2020-02-15T06:59:43Z +10125,2005-07-31T21:33:03Z,493,178,2005-08-01T19:10:03Z,1,2020-02-15T06:59:43Z +10126,2005-07-31T21:36:07Z,3,39,2005-08-03T23:59:07Z,1,2020-02-15T06:59:43Z +10127,2005-07-31T21:39:48Z,717,478,2005-08-06T00:10:48Z,1,2020-02-15T06:59:43Z +10128,2005-07-31T21:40:04Z,2559,508,2005-08-02T02:21:04Z,1,2020-02-15T06:59:43Z +10129,2005-07-31T21:41:35Z,2848,564,2005-08-05T17:05:35Z,1,2020-02-15T06:59:43Z +10130,2005-07-31T21:44:30Z,3964,95,2005-08-04T17:06:30Z,1,2020-02-15T06:59:43Z +10131,2005-07-31T21:45:28Z,4169,510,2005-08-04T00:19:28Z,2,2020-02-15T06:59:43Z +10132,2005-07-31T21:50:24Z,3934,23,2005-08-07T23:37:24Z,2,2020-02-15T06:59:43Z +10133,2005-07-31T21:55:07Z,614,234,2005-08-08T23:04:07Z,1,2020-02-15T06:59:43Z +10134,2005-07-31T21:56:10Z,4483,311,2005-08-06T21:20:10Z,1,2020-02-15T06:59:43Z +10135,2005-07-31T21:57:32Z,4193,307,2005-08-05T22:23:32Z,1,2020-02-15T06:59:43Z +10136,2005-07-31T21:58:56Z,3142,2,2005-08-03T19:44:56Z,1,2020-02-15T06:59:43Z +10137,2005-07-31T22:01:41Z,612,236,2005-08-07T22:24:41Z,1,2020-02-15T06:59:43Z +10138,2005-07-31T22:02:09Z,179,225,2005-08-07T20:46:09Z,2,2020-02-15T06:59:43Z +10139,2005-07-31T22:02:20Z,407,441,2005-08-04T02:09:20Z,1,2020-02-15T06:59:43Z +10140,2005-07-31T22:03:20Z,2494,550,2005-08-07T23:15:20Z,2,2020-02-15T06:59:43Z +10141,2005-07-31T22:08:29Z,8,8,2005-08-06T16:59:29Z,1,2020-02-15T06:59:43Z +10142,2005-07-31T22:10:54Z,1839,257,2005-08-09T19:04:54Z,2,2020-02-15T06:59:43Z +10143,2005-07-31T22:11:43Z,2139,271,2005-08-09T17:48:43Z,2,2020-02-15T06:59:43Z +10144,2005-07-31T22:13:52Z,3011,49,2005-08-05T19:27:52Z,1,2020-02-15T06:59:43Z +10145,2005-07-31T22:15:13Z,2511,361,2005-08-06T23:26:13Z,1,2020-02-15T06:59:43Z +10146,2005-07-31T22:17:56Z,1721,559,2005-08-02T21:27:56Z,1,2020-02-15T06:59:43Z +10147,2005-07-31T22:18:43Z,1351,198,2005-08-02T23:08:43Z,2,2020-02-15T06:59:43Z +10148,2005-07-31T22:19:16Z,1381,63,2005-08-05T00:15:16Z,2,2020-02-15T06:59:43Z +10149,2005-07-31T22:20:46Z,890,276,2005-08-07T23:12:46Z,2,2020-02-15T06:59:43Z +10150,2005-07-31T22:22:00Z,2328,419,2005-08-05T01:17:00Z,2,2020-02-15T06:59:43Z +10151,2005-07-31T22:22:37Z,4442,361,2005-08-01T22:20:37Z,1,2020-02-15T06:59:43Z +10152,2005-07-31T22:28:05Z,1114,244,2005-08-08T22:39:05Z,2,2020-02-15T06:59:43Z +10153,2005-07-31T22:30:10Z,2945,297,2005-08-06T02:32:10Z,2,2020-02-15T06:59:43Z +10154,2005-07-31T22:30:49Z,2745,149,2005-08-07T03:05:49Z,2,2020-02-15T06:59:43Z +10155,2005-07-31T22:31:43Z,3176,235,2005-08-07T02:43:43Z,1,2020-02-15T06:59:43Z +10156,2005-07-31T22:36:00Z,141,179,2005-08-02T00:03:00Z,2,2020-02-15T06:59:43Z +10157,2005-07-31T22:38:48Z,2960,232,2005-08-01T21:38:48Z,1,2020-02-15T06:59:43Z +10158,2005-07-31T22:40:31Z,1626,393,2005-08-08T18:25:31Z,2,2020-02-15T06:59:43Z +10159,2005-07-31T22:54:30Z,1174,515,2005-08-03T00:43:30Z,2,2020-02-15T06:59:43Z +10160,2005-07-31T23:07:40Z,863,295,2005-08-05T23:34:40Z,1,2020-02-15T06:59:43Z +10161,2005-07-31T23:09:41Z,2651,120,2005-08-02T20:46:41Z,2,2020-02-15T06:59:43Z +10162,2005-07-31T23:11:01Z,1327,475,2005-08-07T01:52:01Z,2,2020-02-15T06:59:43Z +10163,2005-07-31T23:12:34Z,2811,425,2005-08-01T22:47:34Z,2,2020-02-15T06:59:43Z +10164,2005-07-31T23:17:57Z,1405,89,2005-08-05T19:43:57Z,1,2020-02-15T06:59:43Z +10165,2005-07-31T23:21:23Z,3476,50,2005-08-06T18:06:23Z,1,2020-02-15T06:59:43Z +10166,2005-07-31T23:22:20Z,4304,484,2005-08-07T18:06:20Z,2,2020-02-15T06:59:43Z +10167,2005-07-31T23:24:31Z,1222,129,2005-08-06T17:42:31Z,2,2020-02-15T06:59:43Z +10168,2005-07-31T23:25:24Z,4548,570,2005-08-02T19:03:24Z,1,2020-02-15T06:59:43Z +10169,2005-07-31T23:27:13Z,2675,57,2005-08-05T20:32:13Z,2,2020-02-15T06:59:43Z +10170,2005-07-31T23:27:31Z,804,41,2005-08-08T04:53:31Z,2,2020-02-15T06:59:43Z +10171,2005-07-31T23:29:05Z,1367,401,2005-08-03T19:39:05Z,1,2020-02-15T06:59:43Z +10172,2005-07-31T23:29:51Z,2506,426,2005-08-09T01:57:51Z,1,2020-02-15T06:59:43Z +10173,2005-07-31T23:36:59Z,2527,326,2005-08-08T20:20:59Z,2,2020-02-15T06:59:43Z +10174,2005-07-31T23:40:08Z,2459,359,2005-08-06T21:08:08Z,2,2020-02-15T06:59:43Z +10175,2005-07-31T23:40:11Z,3672,137,2005-08-09T02:22:11Z,1,2020-02-15T06:59:43Z +10176,2005-07-31T23:40:35Z,1181,19,2005-08-09T00:46:35Z,2,2020-02-15T06:59:43Z +10177,2005-07-31T23:42:33Z,2242,279,2005-08-03T01:30:33Z,2,2020-02-15T06:59:43Z +10178,2005-07-31T23:43:04Z,1582,491,2005-08-03T00:43:04Z,1,2020-02-15T06:59:43Z +10179,2005-07-31T23:49:54Z,2136,131,2005-08-01T20:46:54Z,2,2020-02-15T06:59:43Z +10180,2005-07-31T23:57:43Z,757,50,2005-08-09T04:04:43Z,2,2020-02-15T06:59:43Z +10181,2005-08-01T00:00:44Z,3111,113,2005-08-04T19:33:44Z,1,2020-02-15T06:59:43Z +10182,2005-08-01T00:08:01Z,4112,578,2005-08-09T18:14:01Z,2,2020-02-15T06:59:43Z +10183,2005-08-01T00:08:01Z,4319,377,2005-08-09T20:41:01Z,1,2020-02-15T06:59:43Z +10184,2005-08-01T00:09:33Z,2785,77,2005-08-05T04:12:33Z,2,2020-02-15T06:59:43Z +10185,2005-08-01T00:12:11Z,1266,64,2005-08-03T03:03:11Z,1,2020-02-15T06:59:43Z +10186,2005-08-01T00:12:36Z,4563,294,2005-08-07T05:08:36Z,1,2020-02-15T06:59:43Z +10187,2005-08-01T00:15:49Z,1629,400,2005-08-05T01:00:49Z,2,2020-02-15T06:59:43Z +10188,2005-08-01T00:19:41Z,1221,331,2005-08-08T00:19:41Z,2,2020-02-15T06:59:43Z +10189,2005-08-01T00:25:00Z,616,509,2005-08-03T06:01:00Z,2,2020-02-15T06:59:43Z +10190,2005-08-01T00:27:53Z,4411,138,2005-08-01T20:32:53Z,2,2020-02-15T06:59:43Z +10191,2005-08-01T00:28:38Z,1131,196,2005-08-06T02:23:38Z,1,2020-02-15T06:59:43Z +10192,2005-08-01T00:33:00Z,1632,569,2005-08-05T03:37:00Z,2,2020-02-15T06:59:43Z +10193,2005-08-01T00:33:27Z,2036,358,2005-08-07T20:15:27Z,1,2020-02-15T06:59:43Z +10194,2005-08-01T00:33:52Z,1447,290,2005-08-06T04:50:52Z,2,2020-02-15T06:59:43Z +10195,2005-08-01T00:34:42Z,2691,396,2005-08-08T05:04:42Z,2,2020-02-15T06:59:43Z +10196,2005-08-01T00:34:51Z,3070,199,2005-08-05T03:43:51Z,1,2020-02-15T06:59:43Z +10197,2005-08-01T00:35:25Z,1186,127,2005-08-07T06:04:25Z,2,2020-02-15T06:59:43Z +10198,2005-08-01T00:36:15Z,1297,366,2005-08-07T06:18:15Z,2,2020-02-15T06:59:43Z +10199,2005-08-01T00:38:55Z,3665,526,2005-08-05T03:41:55Z,1,2020-02-15T06:59:43Z +10200,2005-08-01T00:39:05Z,580,421,2005-08-05T01:07:05Z,1,2020-02-15T06:59:43Z +10201,2005-08-01T00:42:18Z,3649,299,2005-08-08T20:49:18Z,2,2020-02-15T06:59:43Z +10202,2005-08-01T00:43:18Z,1099,306,2005-08-08T23:26:18Z,1,2020-02-15T06:59:43Z +10203,2005-08-01T00:45:27Z,1096,157,2005-08-04T22:45:27Z,2,2020-02-15T06:59:43Z +10204,2005-08-01T00:47:39Z,764,572,2005-08-05T01:11:39Z,1,2020-02-15T06:59:43Z +10205,2005-08-01T00:48:24Z,33,87,2005-08-06T23:53:24Z,1,2020-02-15T06:59:43Z +10206,2005-08-01T00:52:40Z,4479,90,2005-08-10T02:36:40Z,2,2020-02-15T06:59:43Z +10207,2005-08-01T00:53:01Z,2925,334,2005-08-05T05:51:01Z,2,2020-02-15T06:59:43Z +10208,2005-08-01T00:54:51Z,3324,246,2005-08-04T22:39:51Z,2,2020-02-15T06:59:43Z +10209,2005-08-01T00:56:47Z,2429,303,2005-08-03T19:58:47Z,2,2020-02-15T06:59:43Z +10210,2005-08-01T00:58:52Z,49,391,2005-08-10T01:16:52Z,1,2020-02-15T06:59:43Z +10211,2005-08-01T01:01:16Z,810,530,2005-08-10T01:31:16Z,1,2020-02-15T06:59:43Z +10212,2005-08-01T01:01:35Z,3728,324,2005-08-02T23:02:35Z,1,2020-02-15T06:59:43Z +10213,2005-08-01T01:03:18Z,1462,106,2005-08-09T20:07:18Z,1,2020-02-15T06:59:43Z +10214,2005-08-01T01:04:15Z,648,597,2005-08-01T19:31:15Z,2,2020-02-15T06:59:43Z +10215,2005-08-01T01:04:28Z,838,345,2005-08-09T21:43:28Z,2,2020-02-15T06:59:43Z +10216,2005-08-01T01:06:27Z,3603,436,2005-08-08T22:41:27Z,2,2020-02-15T06:59:43Z +10217,2005-08-01T01:07:27Z,1193,389,2005-08-09T00:42:27Z,1,2020-02-15T06:59:43Z +10218,2005-08-01T01:09:44Z,3886,101,2005-08-05T20:08:44Z,1,2020-02-15T06:59:43Z +10219,2005-08-01T01:10:33Z,2262,505,2005-08-10T02:45:33Z,2,2020-02-15T06:59:43Z +10220,2005-08-01T01:13:22Z,3920,294,2005-08-04T22:57:22Z,2,2020-02-15T06:59:43Z +10221,2005-08-01T01:16:50Z,3051,373,2005-08-03T05:35:50Z,2,2020-02-15T06:59:43Z +10222,2005-08-01T01:17:42Z,1214,295,2005-08-08T02:45:42Z,1,2020-02-15T06:59:43Z +10223,2005-08-01T01:23:15Z,1370,522,2005-08-02T19:39:15Z,1,2020-02-15T06:59:43Z +10224,2005-08-01T01:31:56Z,1443,587,2005-08-05T21:21:56Z,2,2020-02-15T06:59:43Z +10225,2005-08-01T01:38:40Z,3131,498,2005-08-06T20:00:40Z,1,2020-02-15T06:59:43Z +10226,2005-08-01T01:40:04Z,3067,107,2005-08-08T01:02:04Z,1,2020-02-15T06:59:43Z +10227,2005-08-01T01:42:22Z,872,571,2005-08-09T23:45:22Z,2,2020-02-15T06:59:43Z +10228,2005-08-01T01:43:18Z,1742,106,2005-08-06T22:10:18Z,2,2020-02-15T06:59:43Z +10229,2005-08-01T01:45:26Z,3459,175,2005-08-10T06:21:26Z,1,2020-02-15T06:59:43Z +10230,2005-08-01T01:49:36Z,76,398,2005-08-05T01:29:36Z,2,2020-02-15T06:59:43Z +10231,2005-08-01T01:50:49Z,1056,511,2005-08-06T03:12:49Z,1,2020-02-15T06:59:43Z +10232,2005-08-01T01:50:55Z,586,512,2005-08-03T04:12:55Z,1,2020-02-15T06:59:43Z +10233,2005-08-01T01:54:23Z,4571,459,2005-08-10T00:23:23Z,2,2020-02-15T06:59:43Z +10234,2005-08-01T01:56:20Z,1641,207,2005-08-09T01:51:20Z,2,2020-02-15T06:59:43Z +10235,2005-08-01T01:57:48Z,2850,30,2005-08-10T07:38:48Z,2,2020-02-15T06:59:43Z +10236,2005-08-01T02:05:34Z,3754,470,2005-08-01T23:40:34Z,1,2020-02-15T06:59:43Z +10237,2005-08-01T02:07:32Z,432,313,2005-08-07T03:54:32Z,1,2020-02-15T06:59:43Z +10238,2005-08-01T02:08:05Z,561,192,2005-08-02T01:52:05Z,1,2020-02-15T06:59:43Z +10239,2005-08-01T02:09:22Z,1232,467,2005-08-04T01:35:22Z,2,2020-02-15T06:59:43Z +10240,2005-08-01T02:09:33Z,4494,109,2005-08-07T02:22:33Z,2,2020-02-15T06:59:43Z +10241,2005-08-01T02:12:25Z,1526,161,2005-08-08T00:37:25Z,1,2020-02-15T06:59:43Z +10242,2005-08-01T02:18:12Z,1825,342,2005-08-02T22:32:12Z,2,2020-02-15T06:59:43Z +10243,2005-08-01T02:18:46Z,2236,132,2005-08-06T21:45:46Z,1,2020-02-15T06:59:43Z +10244,2005-08-01T02:20:01Z,567,51,2005-08-06T23:06:01Z,2,2020-02-15T06:59:43Z +10245,2005-08-01T02:24:09Z,2880,163,2005-08-02T02:31:09Z,1,2020-02-15T06:59:43Z +10246,2005-08-01T02:29:50Z,3598,261,2005-08-09T01:17:50Z,2,2020-02-15T06:59:43Z +10247,2005-08-01T02:34:06Z,4035,189,2005-08-09T02:33:06Z,1,2020-02-15T06:59:43Z +10248,2005-08-01T02:35:28Z,2146,298,2005-08-08T02:24:28Z,2,2020-02-15T06:59:43Z +10249,2005-08-01T02:35:39Z,135,437,2005-08-06T06:50:39Z,1,2020-02-15T06:59:43Z +10250,2005-08-01T02:38:42Z,3706,116,2005-08-07T03:59:42Z,2,2020-02-15T06:59:43Z +10251,2005-08-01T02:39:12Z,2986,39,2005-08-06T03:51:12Z,1,2020-02-15T06:59:43Z +10252,2005-08-01T02:39:39Z,2380,86,2005-08-10T00:40:39Z,2,2020-02-15T06:59:43Z +10253,2005-08-01T02:39:49Z,1406,101,2005-08-08T04:28:49Z,2,2020-02-15T06:59:43Z +10254,2005-08-01T02:42:03Z,2238,416,2005-08-05T23:31:03Z,1,2020-02-15T06:59:43Z +10255,2005-08-01T02:46:13Z,4558,459,2005-08-03T05:54:13Z,1,2020-02-15T06:59:43Z +10256,2005-08-01T02:47:11Z,780,58,2005-08-05T05:21:11Z,2,2020-02-15T06:59:43Z +10257,2005-08-01T02:49:43Z,2403,543,2005-08-04T04:45:43Z,2,2020-02-15T06:59:43Z +10258,2005-08-01T02:51:09Z,2062,469,2005-08-08T23:57:09Z,2,2020-02-15T06:59:43Z +10259,2005-08-01T02:52:05Z,1881,566,2005-08-03T20:54:05Z,1,2020-02-15T06:59:43Z +10260,2005-08-01T02:58:07Z,2864,461,2005-08-05T02:06:07Z,2,2020-02-15T06:59:43Z +10261,2005-08-01T02:58:27Z,2346,50,2005-08-01T21:55:27Z,2,2020-02-15T06:59:43Z +10262,2005-08-01T03:01:26Z,3842,181,2005-08-08T08:03:26Z,2,2020-02-15T06:59:43Z +10263,2005-08-01T03:02:48Z,2420,415,2005-08-08T02:16:48Z,2,2020-02-15T06:59:43Z +10264,2005-08-01T03:03:12Z,1374,297,2005-08-08T00:34:12Z,2,2020-02-15T06:59:43Z +10265,2005-08-01T03:05:04Z,3338,510,2005-08-08T08:09:04Z,1,2020-02-15T06:59:43Z +10266,2005-08-01T03:05:59Z,476,49,2005-08-06T06:23:59Z,1,2020-02-15T06:59:43Z +10267,2005-08-01T03:07:26Z,3883,72,2005-08-07T22:49:26Z,1,2020-02-15T06:59:43Z +10268,2005-08-01T03:08:56Z,2755,138,2005-08-08T02:41:56Z,1,2020-02-15T06:59:43Z +10269,2005-08-01T03:09:26Z,2537,39,2005-08-02T00:01:26Z,1,2020-02-15T06:59:43Z +10270,2005-08-01T03:10:24Z,2025,168,2005-08-07T03:04:24Z,2,2020-02-15T06:59:43Z +10271,2005-08-01T03:13:39Z,3692,6,2005-08-07T23:40:39Z,1,2020-02-15T06:59:43Z +10272,2005-08-01T03:14:34Z,128,273,2005-08-10T05:56:34Z,2,2020-02-15T06:59:43Z +10273,2005-08-01T03:14:47Z,1458,212,2005-08-07T03:59:47Z,1,2020-02-15T06:59:43Z +10274,2005-08-01T03:16:51Z,2916,375,2005-08-04T22:22:51Z,2,2020-02-15T06:59:43Z +10275,2005-08-01T03:20:08Z,669,463,2005-08-08T06:48:08Z,1,2020-02-15T06:59:43Z +10276,2005-08-01T03:22:23Z,2201,48,2005-08-03T07:59:23Z,1,2020-02-15T06:59:43Z +10277,2005-08-01T03:22:41Z,1472,176,2005-08-05T05:07:41Z,1,2020-02-15T06:59:43Z +10278,2005-08-01T03:25:27Z,2497,154,2005-08-08T07:52:27Z,1,2020-02-15T06:59:43Z +10279,2005-08-01T03:26:44Z,3794,247,2005-08-07T22:35:44Z,2,2020-02-15T06:59:43Z +10280,2005-08-01T03:27:15Z,1457,542,2005-08-07T23:01:15Z,2,2020-02-15T06:59:43Z +10281,2005-08-01T03:28:33Z,1047,549,2005-08-02T05:06:33Z,1,2020-02-15T06:59:43Z +10282,2005-08-01T03:29:10Z,617,472,2005-08-07T06:16:10Z,1,2020-02-15T06:59:43Z +10283,2005-08-01T03:29:45Z,4237,462,2005-08-07T04:19:45Z,1,2020-02-15T06:59:43Z +10284,2005-08-01T03:33:19Z,2879,20,2005-08-09T07:58:19Z,1,2020-02-15T06:59:43Z +10285,2005-08-01T03:35:11Z,4523,167,2005-08-05T03:55:11Z,2,2020-02-15T06:59:43Z +10286,2005-08-01T03:35:58Z,498,532,2005-08-10T05:17:58Z,2,2020-02-15T06:59:43Z +10287,2005-08-01T03:37:01Z,125,141,2005-08-05T23:03:01Z,2,2020-02-15T06:59:43Z +10288,2005-08-01T03:38:42Z,572,63,2005-08-06T04:34:42Z,1,2020-02-15T06:59:43Z +10289,2005-08-01T03:39:48Z,3153,566,2005-08-08T02:56:48Z,1,2020-02-15T06:59:43Z +10290,2005-08-01T03:39:50Z,4542,364,2005-08-08T22:29:50Z,2,2020-02-15T06:59:43Z +10291,2005-08-01T03:39:57Z,2056,420,2005-08-05T02:05:57Z,2,2020-02-15T06:59:43Z +10292,2005-08-01T03:42:40Z,2562,340,2005-08-01T23:36:40Z,2,2020-02-15T06:59:43Z +10293,2005-08-01T03:44:26Z,1570,258,2005-08-05T04:16:26Z,2,2020-02-15T06:59:43Z +10294,2005-08-01T03:48:12Z,528,28,2005-08-09T01:19:12Z,2,2020-02-15T06:59:43Z +10295,2005-08-01T03:53:49Z,2355,123,2005-08-10T03:56:49Z,1,2020-02-15T06:59:43Z +10296,2005-08-01T04:04:37Z,1958,573,2005-08-01T23:59:37Z,1,2020-02-15T06:59:43Z +10297,2005-08-01T04:05:04Z,2795,289,2005-08-09T06:08:04Z,1,2020-02-15T06:59:43Z +10298,2005-08-01T04:06:03Z,1383,323,2005-08-05T05:59:03Z,2,2020-02-15T06:59:43Z +10299,2005-08-01T04:08:04Z,1125,369,2005-08-04T08:11:04Z,1,2020-02-15T06:59:43Z +10300,2005-08-01T04:08:11Z,4334,207,2005-08-04T00:24:11Z,1,2020-02-15T06:59:43Z +10301,2005-08-01T04:09:37Z,3072,583,2005-08-04T23:14:37Z,2,2020-02-15T06:59:43Z +10302,2005-08-01T04:12:08Z,1043,144,2005-08-01T22:12:08Z,2,2020-02-15T06:59:43Z +10303,2005-08-01T04:13:33Z,936,479,2005-08-06T02:16:33Z,2,2020-02-15T06:59:43Z +10304,2005-08-01T04:14:12Z,1538,346,2005-08-07T22:38:12Z,1,2020-02-15T06:59:43Z +10305,2005-08-01T04:16:16Z,2946,160,2005-08-07T23:47:16Z,1,2020-02-15T06:59:43Z +10306,2005-08-01T04:19:18Z,2819,541,2005-08-09T02:16:18Z,1,2020-02-15T06:59:43Z +10307,2005-08-01T04:21:54Z,975,332,2005-08-04T09:24:54Z,2,2020-02-15T06:59:43Z +10308,2005-08-01T04:22:49Z,588,240,2005-08-09T04:39:49Z,2,2020-02-15T06:59:43Z +10309,2005-08-01T04:24:18Z,1505,156,2005-08-09T08:32:18Z,2,2020-02-15T06:59:43Z +10310,2005-08-01T04:24:47Z,9,271,2005-08-04T05:36:47Z,2,2020-02-15T06:59:43Z +10311,2005-08-01T04:27:59Z,4211,151,2005-08-02T08:51:59Z,1,2020-02-15T06:59:43Z +10312,2005-08-01T04:29:06Z,4389,172,2005-08-08T04:52:06Z,2,2020-02-15T06:59:43Z +10313,2005-08-01T04:29:29Z,1194,80,2005-08-04T08:12:29Z,2,2020-02-15T06:59:43Z +10314,2005-08-01T04:31:18Z,1548,252,2005-08-06T01:49:18Z,2,2020-02-15T06:59:43Z +10315,2005-08-01T04:34:45Z,895,258,2005-08-07T05:27:45Z,1,2020-02-15T06:59:43Z +10316,2005-08-01T04:34:57Z,1907,469,2005-08-06T02:34:57Z,2,2020-02-15T06:59:43Z +10317,2005-08-01T04:35:34Z,110,561,2005-08-06T02:27:34Z,2,2020-02-15T06:59:43Z +10318,2005-08-01T04:36:53Z,885,548,2005-08-04T00:54:53Z,1,2020-02-15T06:59:43Z +10319,2005-08-01T04:37:19Z,3120,394,2005-08-05T03:18:19Z,2,2020-02-15T06:59:43Z +10320,2005-08-01T04:39:26Z,2298,152,2005-08-08T06:01:26Z,1,2020-02-15T06:59:43Z +10321,2005-08-01T04:40:02Z,4512,177,2005-08-03T04:18:02Z,1,2020-02-15T06:59:43Z +10322,2005-08-01T04:44:13Z,1543,535,2005-08-08T00:20:13Z,2,2020-02-15T06:59:43Z +10323,2005-08-01T04:44:58Z,3539,577,2005-08-06T07:56:58Z,1,2020-02-15T06:59:43Z +10324,2005-08-01T04:49:06Z,523,25,2005-08-09T08:04:06Z,2,2020-02-15T06:59:43Z +10325,2005-08-01T04:52:12Z,2749,258,2005-08-08T09:31:12Z,1,2020-02-15T06:59:43Z +10326,2005-08-01T04:55:34Z,3856,325,2005-08-02T05:18:34Z,1,2020-02-15T06:59:43Z +10327,2005-08-01T04:55:35Z,328,382,2005-08-07T08:17:35Z,2,2020-02-15T06:59:43Z +10328,2005-08-01T04:56:10Z,1191,85,2005-08-01T23:22:10Z,2,2020-02-15T06:59:43Z +10329,2005-08-01T04:56:13Z,2289,302,2005-08-03T03:54:13Z,1,2020-02-15T06:59:43Z +10330,2005-08-01T04:57:04Z,1580,7,2005-08-07T23:00:04Z,2,2020-02-15T06:59:43Z +10331,2005-08-01T04:57:14Z,4152,575,2005-08-07T06:46:14Z,1,2020-02-15T06:59:43Z +10332,2005-08-01T04:57:32Z,642,258,2005-08-10T02:42:32Z,2,2020-02-15T06:59:43Z +10333,2005-08-01T04:58:32Z,3955,499,2005-08-04T00:51:32Z,2,2020-02-15T06:59:43Z +10334,2005-08-01T04:58:42Z,3387,445,2005-08-09T02:00:42Z,1,2020-02-15T06:59:43Z +10335,2005-08-01T04:59:30Z,323,33,2005-08-05T02:26:30Z,1,2020-02-15T06:59:43Z +10336,2005-08-01T04:59:53Z,1091,370,2005-08-03T08:05:53Z,2,2020-02-15T06:59:43Z +10337,2005-08-01T05:01:46Z,307,451,2005-08-10T02:41:46Z,1,2020-02-15T06:59:43Z +10338,2005-08-01T05:03:03Z,1295,339,2005-08-09T05:13:03Z,2,2020-02-15T06:59:43Z +10339,2005-08-01T05:05:50Z,615,363,2005-08-10T07:15:50Z,2,2020-02-15T06:59:43Z +10340,2005-08-01T05:07:03Z,3608,568,2005-08-06T01:03:03Z,1,2020-02-15T06:59:43Z +10341,2005-08-01T05:10:02Z,3304,445,2005-08-07T11:01:02Z,1,2020-02-15T06:59:43Z +10342,2005-08-01T05:11:11Z,332,140,2005-08-10T00:27:11Z,1,2020-02-15T06:59:43Z +10343,2005-08-01T05:15:47Z,2627,267,2005-08-02T04:48:47Z,2,2020-02-15T06:59:43Z +10344,2005-08-01T05:18:23Z,3673,367,2005-08-06T05:20:23Z,1,2020-02-15T06:59:43Z +10345,2005-08-01T05:18:56Z,3985,42,2005-08-04T01:34:56Z,2,2020-02-15T06:59:43Z +10346,2005-08-01T05:19:23Z,4192,476,2005-08-06T01:00:23Z,1,2020-02-15T06:59:43Z +10347,2005-08-01T05:20:03Z,953,574,2005-08-04T10:03:03Z,1,2020-02-15T06:59:43Z +10348,2005-08-01T05:23:00Z,2076,14,2005-08-04T01:12:00Z,2,2020-02-15T06:59:43Z +10349,2005-08-01T05:27:13Z,114,295,2005-08-08T10:15:13Z,1,2020-02-15T06:59:43Z +10350,2005-08-01T05:30:05Z,2067,78,2005-08-05T09:59:05Z,1,2020-02-15T06:59:43Z +10351,2005-08-01T05:32:13Z,3725,173,2005-08-08T09:48:13Z,1,2020-02-15T06:59:43Z +10352,2005-08-01T05:44:36Z,1288,564,2005-08-05T07:15:36Z,2,2020-02-15T06:59:43Z +10353,2005-08-01T05:46:33Z,1446,535,2005-08-08T09:14:33Z,1,2020-02-15T06:59:43Z +10354,2005-08-01T05:47:10Z,1680,416,2005-08-06T09:04:10Z,1,2020-02-15T06:59:43Z +10355,2005-08-01T05:47:37Z,2158,161,2005-08-02T09:28:37Z,2,2020-02-15T06:59:43Z +10356,2005-08-01T05:49:17Z,313,56,2005-08-10T05:57:17Z,1,2020-02-15T06:59:43Z +10357,2005-08-01T05:49:49Z,3102,475,2005-08-04T02:34:49Z,2,2020-02-15T06:59:43Z +10358,2005-08-01T05:50:07Z,3039,517,2005-08-03T08:18:07Z,1,2020-02-15T06:59:43Z +10359,2005-08-01T05:52:21Z,259,369,2005-08-06T05:52:21Z,2,2020-02-15T06:59:43Z +10360,2005-08-01T05:52:53Z,1129,443,2005-08-05T10:55:53Z,1,2020-02-15T06:59:43Z +10361,2005-08-01T05:53:49Z,318,529,2005-08-10T00:42:49Z,2,2020-02-15T06:59:43Z +10362,2005-08-01T05:55:13Z,72,181,2005-08-10T10:23:13Z,2,2020-02-15T06:59:43Z +10363,2005-08-01T06:01:52Z,320,174,2005-08-05T03:56:52Z,1,2020-02-15T06:59:43Z +10364,2005-08-01T06:06:49Z,1842,317,2005-08-09T06:05:49Z,2,2020-02-15T06:59:43Z +10365,2005-08-01T06:08:44Z,4032,442,2005-08-06T02:07:44Z,1,2020-02-15T06:59:43Z +10366,2005-08-01T06:09:37Z,2654,119,2005-08-05T03:19:37Z,1,2020-02-15T06:59:43Z +10367,2005-08-01T06:12:19Z,3408,242,2005-08-04T12:11:19Z,2,2020-02-15T06:59:43Z +10368,2005-08-01T06:13:38Z,3535,593,2005-08-08T04:40:38Z,2,2020-02-15T06:59:43Z +10369,2005-08-01T06:13:44Z,2534,424,2005-08-07T09:46:44Z,1,2020-02-15T06:59:43Z +10370,2005-08-01T06:18:04Z,4358,546,2005-08-05T01:41:04Z,2,2020-02-15T06:59:43Z +10371,2005-08-01T06:20:29Z,923,327,2005-08-04T00:31:29Z,2,2020-02-15T06:59:43Z +10372,2005-08-01T06:23:48Z,635,419,2005-08-06T03:47:48Z,1,2020-02-15T06:59:43Z +10373,2005-08-01T06:24:26Z,1754,588,2005-08-02T12:07:26Z,1,2020-02-15T06:59:43Z +10374,2005-08-01T06:25:27Z,4351,307,2005-08-07T05:44:27Z,2,2020-02-15T06:59:43Z +10375,2005-08-01T06:26:22Z,857,202,2005-08-06T02:51:22Z,2,2020-02-15T06:59:43Z +10376,2005-08-01T06:27:13Z,4194,474,2005-08-07T06:11:13Z,2,2020-02-15T06:59:43Z +10377,2005-08-01T06:28:28Z,2401,559,2005-08-10T05:45:28Z,2,2020-02-15T06:59:43Z +10378,2005-08-01T06:30:04Z,4110,113,2005-08-06T09:10:04Z,1,2020-02-15T06:59:43Z +10379,2005-08-01T06:34:29Z,3103,141,2005-08-06T07:49:29Z,1,2020-02-15T06:59:43Z +10380,2005-08-01T06:34:36Z,2225,533,2005-08-02T09:08:36Z,1,2020-02-15T06:59:43Z +10381,2005-08-01T06:36:37Z,522,412,2005-08-05T11:17:37Z,1,2020-02-15T06:59:43Z +10382,2005-08-01T06:36:45Z,4455,242,2005-08-02T06:06:45Z,1,2020-02-15T06:59:43Z +10383,2005-08-01T06:37:16Z,4166,592,2005-08-03T07:36:16Z,2,2020-02-15T06:59:43Z +10384,2005-08-01T06:39:14Z,2622,366,2005-08-02T03:06:14Z,1,2020-02-15T06:59:43Z +10385,2005-08-01T06:39:55Z,778,179,2005-08-06T02:16:55Z,1,2020-02-15T06:59:43Z +10386,2005-08-01T06:42:20Z,1568,26,2005-08-07T06:12:20Z,2,2020-02-15T06:59:43Z +10387,2005-08-01T06:42:31Z,1651,87,2005-08-08T07:44:31Z,1,2020-02-15T06:59:43Z +10388,2005-08-01T06:42:44Z,3180,99,2005-08-09T11:43:44Z,2,2020-02-15T06:59:43Z +10389,2005-08-01T06:46:43Z,3534,346,2005-08-08T07:07:43Z,2,2020-02-15T06:59:43Z +10390,2005-08-01T06:46:48Z,1489,502,2005-08-09T02:55:48Z,2,2020-02-15T06:59:43Z +10391,2005-08-01T06:49:05Z,2203,357,2005-08-04T01:51:05Z,2,2020-02-15T06:59:43Z +10392,2005-08-01T06:50:26Z,3017,12,2005-08-10T10:52:26Z,1,2020-02-15T06:59:43Z +10393,2005-08-01T06:52:50Z,808,258,2005-08-05T08:45:50Z,1,2020-02-15T06:59:43Z +10394,2005-08-01T06:58:17Z,1655,128,2005-08-05T02:09:17Z,1,2020-02-15T06:59:43Z +10395,2005-08-01T07:08:22Z,279,129,2005-08-05T08:00:22Z,2,2020-02-15T06:59:43Z +10396,2005-08-01T07:08:46Z,2982,284,2005-08-08T03:47:46Z,1,2020-02-15T06:59:43Z +10397,2005-08-01T07:11:27Z,4168,504,2005-08-03T07:51:27Z,1,2020-02-15T06:59:43Z +10398,2005-08-01T07:11:49Z,4306,174,2005-08-04T05:54:49Z,1,2020-02-15T06:59:43Z +10399,2005-08-01T07:13:39Z,2515,204,2005-08-10T06:56:39Z,1,2020-02-15T06:59:43Z +10400,2005-08-01T07:18:24Z,3897,132,2005-08-10T08:38:24Z,1,2020-02-15T06:59:43Z +10401,2005-08-01T07:27:09Z,1560,564,2005-08-02T01:38:09Z,1,2020-02-15T06:59:43Z +10402,2005-08-01T07:27:19Z,274,410,2005-08-04T12:30:19Z,1,2020-02-15T06:59:43Z +10403,2005-08-01T07:30:45Z,1968,494,2005-08-03T03:03:45Z,2,2020-02-15T06:59:43Z +10404,2005-08-01T07:31:25Z,2580,253,2005-08-07T09:23:25Z,1,2020-02-15T06:59:43Z +10405,2005-08-01T07:35:25Z,3641,463,2005-08-05T05:38:25Z,2,2020-02-15T06:59:43Z +10406,2005-08-01T07:37:05Z,2614,391,2005-08-02T06:11:05Z,1,2020-02-15T06:59:43Z +10407,2005-08-01T07:38:07Z,543,101,2005-08-02T05:38:07Z,2,2020-02-15T06:59:43Z +10408,2005-08-01T07:42:10Z,4144,334,2005-08-09T02:29:10Z,2,2020-02-15T06:59:43Z +10409,2005-08-01T07:49:15Z,2804,449,2005-08-02T13:42:15Z,2,2020-02-15T06:59:43Z +10410,2005-08-01T07:53:29Z,3901,247,2005-08-10T08:56:29Z,1,2020-02-15T06:59:43Z +10411,2005-08-01T07:56:32Z,1946,522,2005-08-10T04:58:32Z,2,2020-02-15T06:59:43Z +10412,2005-08-01T07:57:16Z,1555,325,2005-08-04T11:44:16Z,2,2020-02-15T06:59:43Z +10413,2005-08-01T07:59:39Z,1018,376,2005-08-08T03:55:39Z,1,2020-02-15T06:59:43Z +10414,2005-08-01T08:03:55Z,1271,361,2005-08-04T08:44:55Z,2,2020-02-15T06:59:43Z +10415,2005-08-01T08:05:59Z,2597,591,2005-08-04T13:46:59Z,1,2020-02-15T06:59:43Z +10416,2005-08-01T08:08:39Z,2629,449,2005-08-10T09:26:39Z,2,2020-02-15T06:59:43Z +10417,2005-08-01T08:10:36Z,3675,427,2005-08-02T03:42:36Z,2,2020-02-15T06:59:43Z +10418,2005-08-01T08:11:07Z,1692,248,2005-08-04T11:12:07Z,2,2020-02-15T06:59:43Z +10419,2005-08-01T08:13:22Z,415,66,2005-08-06T04:45:22Z,2,2020-02-15T06:59:43Z +10420,2005-08-01T08:13:53Z,3490,354,2005-08-06T08:05:53Z,2,2020-02-15T06:59:43Z +10421,2005-08-01T08:14:10Z,925,262,2005-08-03T05:56:10Z,2,2020-02-15T06:59:43Z +10422,2005-08-01T08:17:11Z,37,166,2005-08-10T10:08:11Z,2,2020-02-15T06:59:43Z +10423,2005-08-01T08:19:53Z,739,7,2005-08-08T10:25:53Z,1,2020-02-15T06:59:43Z +10424,2005-08-01T08:22:54Z,1921,88,2005-08-06T13:44:54Z,1,2020-02-15T06:59:43Z +10425,2005-08-01T08:23:25Z,322,447,2005-08-05T04:29:25Z,1,2020-02-15T06:59:43Z +10426,2005-08-01T08:26:08Z,1325,305,2005-08-09T04:09:08Z,1,2020-02-15T06:59:43Z +10427,2005-08-01T08:30:11Z,2978,356,2005-08-07T06:18:11Z,2,2020-02-15T06:59:43Z +10428,2005-08-01T08:30:11Z,4245,46,2005-08-02T09:30:11Z,2,2020-02-15T06:59:43Z +10429,2005-08-01T08:34:18Z,3894,511,2005-08-10T12:38:18Z,1,2020-02-15T06:59:43Z +10430,2005-08-01T08:37:06Z,1150,471,2005-08-03T07:25:06Z,1,2020-02-15T06:59:43Z +10431,2005-08-01T08:41:54Z,1074,138,2005-08-07T09:44:54Z,2,2020-02-15T06:59:43Z +10432,2005-08-01T08:43:21Z,4238,450,2005-08-08T13:09:21Z,2,2020-02-15T06:59:43Z +10433,2005-08-01T08:45:56Z,1508,517,2005-08-05T09:46:56Z,2,2020-02-15T06:59:43Z +10434,2005-08-01T08:47:00Z,4073,73,2005-08-06T08:34:00Z,1,2020-02-15T06:59:43Z +10435,2005-08-01T08:50:51Z,1934,392,2005-08-08T12:23:51Z,1,2020-02-15T06:59:43Z +10436,2005-08-01T08:50:59Z,4026,455,2005-08-04T05:23:59Z,1,2020-02-15T06:59:43Z +10437,2005-08-01T08:51:04Z,14,1,2005-08-10T12:12:04Z,1,2020-02-15T06:59:43Z +10438,2005-08-01T08:53:04Z,4217,316,2005-08-09T06:39:04Z,2,2020-02-15T06:59:43Z +10439,2005-08-01T08:54:26Z,2711,332,2005-08-08T14:04:26Z,1,2020-02-15T06:59:43Z +10440,2005-08-01T08:54:32Z,842,299,2005-08-02T10:59:32Z,2,2020-02-15T06:59:43Z +10441,2005-08-01T08:55:56Z,4122,176,2005-08-03T10:26:56Z,2,2020-02-15T06:59:43Z +10442,2005-08-01T08:58:08Z,4570,40,2005-08-05T09:07:08Z,2,2020-02-15T06:59:43Z +10443,2005-08-01T09:01:04Z,1965,403,2005-08-04T09:07:04Z,2,2020-02-15T06:59:43Z +10444,2005-08-01T09:01:40Z,3242,106,2005-08-09T11:31:40Z,1,2020-02-15T06:59:43Z +10445,2005-08-01T09:02:15Z,3582,211,2005-08-08T10:26:15Z,2,2020-02-15T06:59:43Z +10446,2005-08-01T09:02:17Z,2671,95,2005-08-04T10:00:17Z,2,2020-02-15T06:59:43Z +10447,2005-08-01T09:04:58Z,1198,241,2005-08-08T06:24:58Z,1,2020-02-15T06:59:43Z +10448,2005-08-01T09:09:31Z,2254,311,2005-08-02T09:55:31Z,2,2020-02-15T06:59:43Z +10449,2005-08-01T09:09:59Z,1395,213,2005-08-05T11:25:59Z,1,2020-02-15T06:59:43Z +10450,2005-08-01T09:10:03Z,234,380,2005-08-08T12:34:03Z,1,2020-02-15T06:59:43Z +10451,2005-08-01T09:11:25Z,2435,9,2005-08-03T12:37:25Z,2,2020-02-15T06:59:43Z +10452,2005-08-01T09:11:36Z,1973,442,2005-08-04T13:28:36Z,2,2020-02-15T06:59:43Z +10453,2005-08-01T09:13:27Z,1531,188,2005-08-08T11:34:27Z,2,2020-02-15T06:59:43Z +10454,2005-08-01T09:14:00Z,397,9,2005-08-04T04:52:00Z,2,2020-02-15T06:59:43Z +10455,2005-08-01T09:15:00Z,4197,99,2005-08-05T13:35:00Z,1,2020-02-15T06:59:43Z +10456,2005-08-01T09:17:21Z,4339,81,2005-08-06T10:30:21Z,1,2020-02-15T06:59:43Z +10457,2005-08-01T09:17:34Z,3052,121,2005-08-06T07:28:34Z,2,2020-02-15T06:59:43Z +10458,2005-08-01T09:19:48Z,1500,309,2005-08-02T10:16:48Z,1,2020-02-15T06:59:43Z +10459,2005-08-01T09:20:09Z,201,131,2005-08-03T11:36:09Z,1,2020-02-15T06:59:43Z +10460,2005-08-01T09:31:00Z,4504,197,2005-08-09T09:28:00Z,1,2020-02-15T06:59:43Z +10461,2005-08-01T09:32:53Z,3212,270,2005-08-09T10:19:53Z,1,2020-02-15T06:59:43Z +10462,2005-08-01T09:38:28Z,4526,193,2005-08-02T09:52:28Z,2,2020-02-15T06:59:43Z +10463,2005-08-01T09:39:43Z,1301,291,2005-08-10T03:42:43Z,1,2020-02-15T06:59:43Z +10464,2005-08-01T09:43:14Z,464,427,2005-08-06T09:01:14Z,1,2020-02-15T06:59:43Z +10465,2005-08-01T09:45:25Z,4384,534,2005-08-10T09:08:25Z,2,2020-02-15T06:59:43Z +10466,2005-08-01T09:45:26Z,138,2,2005-08-06T06:28:26Z,1,2020-02-15T06:59:43Z +10467,2005-08-01T09:45:58Z,3773,412,2005-08-09T10:17:58Z,2,2020-02-15T06:59:43Z +10468,2005-08-01T09:48:29Z,2115,129,2005-08-05T09:58:29Z,2,2020-02-15T06:59:43Z +10469,2005-08-01T09:51:11Z,3054,466,2005-08-05T06:53:11Z,2,2020-02-15T06:59:43Z +10470,2005-08-01T09:52:26Z,82,523,2005-08-05T06:52:26Z,1,2020-02-15T06:59:43Z +10471,2005-08-01T09:52:37Z,1684,135,2005-08-07T09:40:37Z,2,2020-02-15T06:59:43Z +10472,2005-08-01T09:54:41Z,506,405,2005-08-04T13:31:41Z,1,2020-02-15T06:59:43Z +10473,2005-08-01T09:56:24Z,3034,329,2005-08-10T12:36:24Z,2,2020-02-15T06:59:43Z +10474,2005-08-01T10:01:42Z,4482,488,2005-08-08T12:32:42Z,1,2020-02-15T06:59:43Z +10475,2005-08-01T10:03:17Z,2931,115,2005-08-10T15:50:17Z,2,2020-02-15T06:59:43Z +10476,2005-08-01T10:03:20Z,1993,263,2005-08-10T06:52:20Z,1,2020-02-15T06:59:43Z +10477,2005-08-01T10:04:17Z,235,506,2005-08-06T11:32:17Z,2,2020-02-15T06:59:43Z +10478,2005-08-01T10:09:06Z,3885,417,2005-08-06T05:05:06Z,1,2020-02-15T06:59:43Z +10479,2005-08-01T10:11:25Z,4580,275,2005-08-06T04:52:25Z,1,2020-02-15T06:59:43Z +10480,2005-08-01T10:13:41Z,553,560,2005-08-03T10:27:41Z,1,2020-02-15T06:59:43Z +10481,2005-08-01T10:17:26Z,229,170,2005-08-09T08:50:26Z,1,2020-02-15T06:59:43Z +10482,2005-08-01T10:17:47Z,48,358,2005-08-02T15:04:47Z,2,2020-02-15T06:59:43Z +10483,2005-08-01T10:19:45Z,1521,129,2005-08-04T09:29:45Z,1,2020-02-15T06:59:43Z +10484,2005-08-01T10:19:53Z,1908,400,2005-08-03T05:36:53Z,1,2020-02-15T06:59:43Z +10485,2005-08-01T10:20:34Z,29,50,2005-08-09T09:20:34Z,1,2020-02-15T06:59:43Z +10486,2005-08-01T10:23:43Z,2454,527,2005-08-05T07:11:43Z,2,2020-02-15T06:59:43Z +10487,2005-08-01T10:26:34Z,1121,577,2005-08-07T16:11:34Z,1,2020-02-15T06:59:43Z +10488,2005-08-01T10:27:27Z,297,423,2005-08-02T11:05:27Z,2,2020-02-15T06:59:43Z +10489,2005-08-01T10:27:42Z,4067,54,2005-08-07T12:56:42Z,1,2020-02-15T06:59:43Z +10490,2005-08-01T10:37:11Z,4365,329,2005-08-03T10:01:11Z,2,2020-02-15T06:59:43Z +10491,2005-08-01T10:38:27Z,3091,24,2005-08-04T04:55:27Z,2,2020-02-15T06:59:43Z +10492,2005-08-01T10:42:28Z,1669,334,2005-08-02T07:05:28Z,1,2020-02-15T06:59:43Z +10493,2005-08-01T10:43:12Z,2375,285,2005-08-07T08:13:12Z,2,2020-02-15T06:59:43Z +10494,2005-08-01T10:45:21Z,847,188,2005-08-02T12:34:21Z,1,2020-02-15T06:59:43Z +10495,2005-08-01T10:45:51Z,2232,41,2005-08-06T08:11:51Z,1,2020-02-15T06:59:43Z +10496,2005-08-01T10:53:16Z,411,525,2005-08-08T10:34:16Z,2,2020-02-15T06:59:43Z +10497,2005-08-01T10:55:59Z,1060,499,2005-08-07T11:15:59Z,1,2020-02-15T06:59:43Z +10498,2005-08-01T10:56:48Z,2672,355,2005-08-03T15:46:48Z,2,2020-02-15T06:59:43Z +10499,2005-08-01T11:00:20Z,3293,459,2005-08-10T11:52:20Z,2,2020-02-15T06:59:43Z +10500,2005-08-01T11:01:01Z,469,477,2005-08-06T08:59:01Z,2,2020-02-15T06:59:43Z +10501,2005-08-01T11:04:46Z,1792,351,2005-08-02T12:10:46Z,2,2020-02-15T06:59:43Z +10502,2005-08-01T11:06:39Z,3193,357,2005-08-05T07:11:39Z,1,2020-02-15T06:59:43Z +10503,2005-08-01T11:07:44Z,1823,357,2005-08-08T08:22:44Z,1,2020-02-15T06:59:43Z +10504,2005-08-01T11:10:55Z,3345,530,2005-08-10T10:16:55Z,1,2020-02-15T06:59:43Z +10505,2005-08-01T11:13:59Z,2977,426,2005-08-05T07:20:59Z,2,2020-02-15T06:59:43Z +10506,2005-08-01T11:16:05Z,1171,216,2005-08-03T05:37:05Z,2,2020-02-15T06:59:43Z +10507,2005-08-01T11:22:20Z,367,45,2005-08-04T13:18:20Z,2,2020-02-15T06:59:43Z +10508,2005-08-01T11:23:27Z,3890,431,2005-08-02T10:17:27Z,1,2020-02-15T06:59:43Z +10509,2005-08-01T11:25:28Z,96,504,2005-08-10T09:19:28Z,2,2020-02-15T06:59:43Z +10510,2005-08-01T11:28:30Z,410,259,2005-08-07T11:37:30Z,1,2020-02-15T06:59:43Z +10511,2005-08-01T11:32:16Z,3874,487,2005-08-04T09:38:16Z,1,2020-02-15T06:59:43Z +10512,2005-08-01T11:36:19Z,3294,438,2005-08-09T06:52:19Z,2,2020-02-15T06:59:43Z +10513,2005-08-01T11:37:34Z,4057,105,2005-08-02T17:15:34Z,2,2020-02-15T06:59:43Z +10514,2005-08-01T11:39:26Z,1512,7,2005-08-03T07:53:26Z,2,2020-02-15T06:59:43Z +10515,2005-08-01T11:41:33Z,874,383,2005-08-08T06:23:33Z,2,2020-02-15T06:59:43Z +10516,2005-08-01T11:41:55Z,3924,449,2005-08-08T17:16:55Z,1,2020-02-15T06:59:43Z +10517,2005-08-01T11:41:57Z,2299,199,2005-08-05T06:14:57Z,1,2020-02-15T06:59:43Z +10518,2005-08-01T11:44:08Z,4444,556,2005-08-07T07:58:08Z,2,2020-02-15T06:59:43Z +10519,2005-08-01T11:44:13Z,1967,456,2005-08-09T16:57:13Z,1,2020-02-15T06:59:43Z +10520,2005-08-01T11:45:58Z,4396,543,2005-08-06T17:28:58Z,2,2020-02-15T06:59:43Z +10521,2005-08-01T11:46:17Z,662,346,2005-08-05T11:06:17Z,2,2020-02-15T06:59:43Z +10522,2005-08-01T11:48:51Z,4159,254,2005-08-05T12:40:51Z,1,2020-02-15T06:59:43Z +10523,2005-08-01T11:52:32Z,2408,34,2005-08-02T10:47:32Z,1,2020-02-15T06:59:43Z +10524,2005-08-01T11:53:12Z,4116,38,2005-08-08T10:40:12Z,2,2020-02-15T06:59:43Z +10525,2005-08-01T11:53:17Z,3811,36,2005-08-07T07:24:17Z,1,2020-02-15T06:59:43Z +10526,2005-08-01T11:55:33Z,27,14,2005-08-08T16:42:33Z,1,2020-02-15T06:59:43Z +10527,2005-08-01T11:55:54Z,4530,431,2005-08-05T15:56:54Z,2,2020-02-15T06:59:43Z +10528,2005-08-01T11:56:22Z,4401,564,2005-08-07T07:13:22Z,1,2020-02-15T06:59:43Z +10529,2005-08-01T12:00:02Z,851,444,2005-08-08T16:18:02Z,1,2020-02-15T06:59:43Z +10530,2005-08-01T12:01:17Z,3216,520,2005-08-06T09:55:17Z,2,2020-02-15T06:59:43Z +10531,2005-08-01T12:06:30Z,3846,459,2005-08-04T10:23:30Z,2,2020-02-15T06:59:43Z +10532,2005-08-01T12:06:35Z,746,191,2005-08-07T16:04:35Z,2,2020-02-15T06:59:43Z +10533,2005-08-01T12:14:16Z,1924,593,2005-08-09T17:13:16Z,2,2020-02-15T06:59:43Z +10534,2005-08-01T12:15:11Z,4354,397,2005-08-04T17:06:11Z,1,2020-02-15T06:59:43Z +10535,2005-08-01T12:21:13Z,1838,284,2005-08-09T08:58:13Z,1,2020-02-15T06:59:43Z +10536,2005-08-01T12:21:53Z,1251,86,2005-08-04T13:08:53Z,2,2020-02-15T06:59:43Z +10537,2005-08-01T12:22:28Z,2140,418,2005-08-08T07:27:28Z,1,2020-02-15T06:59:43Z +10538,2005-08-01T12:22:41Z,686,37,2005-08-02T10:31:41Z,2,2020-02-15T06:59:43Z +10539,2005-08-01T12:23:00Z,3341,232,2005-08-07T10:25:00Z,2,2020-02-15T06:59:43Z +10540,2005-08-01T12:24:42Z,4121,84,2005-08-03T08:39:42Z,2,2020-02-15T06:59:43Z +10541,2005-08-01T12:24:54Z,1413,234,2005-08-03T16:18:54Z,1,2020-02-15T06:59:43Z +10542,2005-08-01T12:32:23Z,1102,465,2005-08-08T16:26:23Z,1,2020-02-15T06:59:43Z +10543,2005-08-01T12:36:09Z,624,29,2005-08-07T07:42:09Z,1,2020-02-15T06:59:43Z +10544,2005-08-01T12:36:21Z,3195,589,2005-08-07T12:25:21Z,2,2020-02-15T06:59:43Z +10545,2005-08-01T12:37:46Z,4230,425,2005-08-04T16:02:46Z,2,2020-02-15T06:59:43Z +10546,2005-08-01T12:44:17Z,1589,362,2005-08-06T16:26:17Z,2,2020-02-15T06:59:43Z +10547,2005-08-01T12:44:17Z,1707,403,2005-08-08T06:53:17Z,1,2020-02-15T06:59:43Z +10548,2005-08-01T12:44:32Z,1914,85,2005-08-07T09:17:32Z,1,2020-02-15T06:59:43Z +10549,2005-08-01T12:46:39Z,3719,61,2005-08-06T17:17:39Z,1,2020-02-15T06:59:43Z +10550,2005-08-01T12:46:52Z,1980,129,2005-08-05T16:48:52Z,2,2020-02-15T06:59:43Z +10551,2005-08-01T12:48:55Z,2974,294,2005-08-10T16:11:55Z,1,2020-02-15T06:59:43Z +10552,2005-08-01T12:49:44Z,4263,119,2005-08-04T16:20:44Z,2,2020-02-15T06:59:43Z +10553,2005-08-01T12:54:06Z,2768,415,2005-08-06T15:27:06Z,1,2020-02-15T06:59:43Z +10554,2005-08-01T12:56:19Z,3220,209,2005-08-03T09:44:19Z,2,2020-02-15T06:59:43Z +10555,2005-08-01T12:56:38Z,377,487,2005-08-10T18:19:38Z,1,2020-02-15T06:59:43Z +10556,2005-08-01T12:58:42Z,144,117,2005-08-03T07:18:42Z,2,2020-02-15T06:59:43Z +10557,2005-08-01T12:59:24Z,240,385,2005-08-04T17:08:24Z,2,2020-02-15T06:59:43Z +10558,2005-08-01T13:00:20Z,4399,117,2005-08-05T16:31:20Z,1,2020-02-15T06:59:43Z +10559,2005-08-01T13:02:58Z,2861,174,2005-08-09T10:03:58Z,2,2020-02-15T06:59:43Z +10560,2005-08-01T13:04:57Z,1534,427,2005-08-05T18:25:57Z,2,2020-02-15T06:59:43Z +10561,2005-08-01T13:05:35Z,2195,8,2005-08-04T08:34:35Z,2,2020-02-15T06:59:43Z +10562,2005-08-01T13:05:52Z,1947,178,2005-08-02T17:05:52Z,1,2020-02-15T06:59:43Z +10563,2005-08-01T13:06:03Z,1885,214,2005-08-09T08:39:03Z,2,2020-02-15T06:59:43Z +10564,2005-08-01T13:07:34Z,4469,387,2005-08-06T15:14:34Z,2,2020-02-15T06:59:43Z +10565,2005-08-01T13:08:27Z,347,165,2005-08-02T10:30:27Z,1,2020-02-15T06:59:43Z +10566,2005-08-01T13:12:11Z,3988,269,2005-08-05T11:16:11Z,2,2020-02-15T06:59:43Z +10567,2005-08-01T13:16:01Z,2744,212,2005-08-05T14:59:01Z,1,2020-02-15T06:59:43Z +10568,2005-08-01T13:17:28Z,3009,130,2005-08-08T17:04:28Z,1,2020-02-15T06:59:43Z +10569,2005-08-01T13:18:23Z,611,179,2005-08-10T13:33:23Z,1,2020-02-15T06:59:43Z +10570,2005-08-01T13:23:06Z,369,21,2005-08-05T15:30:06Z,2,2020-02-15T06:59:43Z +10571,2005-08-01T13:25:30Z,3660,308,2005-08-02T16:43:30Z,2,2020-02-15T06:59:43Z +10572,2005-08-01T13:26:53Z,1239,386,2005-08-07T18:47:53Z,2,2020-02-15T06:59:43Z +10573,2005-08-01T13:27:24Z,4252,585,2005-08-04T15:09:24Z,2,2020-02-15T06:59:43Z +10574,2005-08-01T13:36:51Z,679,287,2005-08-10T13:25:51Z,2,2020-02-15T06:59:43Z +10575,2005-08-01T13:41:41Z,4447,251,2005-08-08T11:30:41Z,1,2020-02-15T06:59:43Z +10576,2005-08-01T13:46:02Z,1876,180,2005-08-05T10:19:02Z,1,2020-02-15T06:59:43Z +10577,2005-08-01T13:46:38Z,2240,428,2005-08-06T11:35:38Z,2,2020-02-15T06:59:43Z +10578,2005-08-01T13:48:02Z,3704,113,2005-08-07T13:40:02Z,1,2020-02-15T06:59:43Z +10579,2005-08-01T13:48:22Z,4068,270,2005-08-07T11:51:22Z,1,2020-02-15T06:59:43Z +10580,2005-08-01T13:51:14Z,590,234,2005-08-08T11:49:14Z,2,2020-02-15T06:59:43Z +10581,2005-08-01T13:52:30Z,2801,217,2005-08-10T19:11:30Z,1,2020-02-15T06:59:43Z +10582,2005-08-01T13:54:22Z,2536,233,2005-08-05T16:46:22Z,2,2020-02-15T06:59:43Z +10583,2005-08-01T13:54:35Z,704,125,2005-08-03T18:21:35Z,1,2020-02-15T06:59:43Z +10584,2005-08-01T13:58:47Z,715,86,2005-08-06T13:38:47Z,2,2020-02-15T06:59:43Z +10585,2005-08-01T14:00:42Z,2670,228,2005-08-09T11:42:42Z,2,2020-02-15T06:59:43Z +10586,2005-08-01T14:00:59Z,3306,583,2005-08-06T10:00:59Z,2,2020-02-15T06:59:43Z +10587,2005-08-01T14:03:38Z,3000,521,2005-08-08T19:59:38Z,2,2020-02-15T06:59:43Z +10588,2005-08-01T14:10:21Z,2384,49,2005-08-03T13:47:21Z,2,2020-02-15T06:59:43Z +10589,2005-08-01T14:11:09Z,4280,375,2005-08-09T09:28:09Z,2,2020-02-15T06:59:43Z +10590,2005-08-01T14:11:53Z,740,78,2005-08-04T20:04:53Z,1,2020-02-15T06:59:43Z +10591,2005-08-01T14:12:29Z,3360,52,2005-08-04T08:46:29Z,2,2020-02-15T06:59:43Z +10592,2005-08-01T14:13:00Z,829,265,2005-08-09T13:03:00Z,2,2020-02-15T06:59:43Z +10593,2005-08-01T14:13:19Z,1886,144,2005-08-06T08:48:19Z,2,2020-02-15T06:59:43Z +10594,2005-08-01T14:14:59Z,1826,53,2005-08-07T10:48:59Z,2,2020-02-15T06:59:43Z +10595,2005-08-01T14:16:28Z,966,137,2005-08-03T10:37:28Z,1,2020-02-15T06:59:43Z +10596,2005-08-01T14:18:57Z,803,112,2005-08-07T14:59:57Z,2,2020-02-15T06:59:43Z +10597,2005-08-01T14:19:48Z,3292,3,2005-08-08T20:01:48Z,1,2020-02-15T06:59:43Z +10598,2005-08-01T14:23:36Z,2341,397,2005-08-10T14:07:36Z,2,2020-02-15T06:59:43Z +10599,2005-08-01T14:23:58Z,2422,271,2005-08-06T10:45:58Z,2,2020-02-15T06:59:43Z +10600,2005-08-01T14:25:21Z,3900,294,2005-08-06T18:00:21Z,1,2020-02-15T06:59:43Z +10601,2005-08-01T14:25:40Z,2843,420,2005-08-10T09:07:40Z,1,2020-02-15T06:59:43Z +10602,2005-08-01T14:30:23Z,1506,111,2005-08-07T15:20:23Z,1,2020-02-15T06:59:43Z +10603,2005-08-01T14:30:35Z,4024,394,2005-08-05T11:13:35Z,2,2020-02-15T06:59:43Z +10604,2005-08-01T14:35:08Z,2833,250,2005-08-08T10:19:08Z,2,2020-02-15T06:59:43Z +10605,2005-08-01T14:36:26Z,680,341,2005-08-06T12:04:26Z,2,2020-02-15T06:59:43Z +10606,2005-08-01T14:39:15Z,81,335,2005-08-08T11:31:15Z,1,2020-02-15T06:59:43Z +10607,2005-08-01T14:44:43Z,3999,438,2005-08-02T16:39:43Z,2,2020-02-15T06:59:43Z +10608,2005-08-01T14:48:41Z,3835,381,2005-08-04T17:32:41Z,2,2020-02-15T06:59:43Z +10609,2005-08-01T14:48:45Z,2587,5,2005-08-04T13:41:45Z,2,2020-02-15T06:59:43Z +10610,2005-08-01T14:49:41Z,1865,396,2005-08-03T13:07:41Z,1,2020-02-15T06:59:43Z +10611,2005-08-01T14:53:52Z,957,135,2005-08-07T09:15:52Z,2,2020-02-15T06:59:43Z +10612,2005-08-01T14:55:31Z,287,554,2005-08-06T19:01:31Z,1,2020-02-15T06:59:43Z +10613,2005-08-01T14:56:14Z,4357,527,2005-08-07T09:33:14Z,1,2020-02-15T06:59:43Z +10614,2005-08-01T14:57:00Z,232,533,2005-08-10T09:31:00Z,2,2020-02-15T06:59:43Z +10615,2005-08-01T14:58:14Z,2639,34,2005-08-02T13:38:14Z,1,2020-02-15T06:59:43Z +10616,2005-08-01T14:59:50Z,1094,20,2005-08-07T11:38:50Z,2,2020-02-15T06:59:43Z +10617,2005-08-01T15:05:52Z,4344,476,2005-08-09T18:54:52Z,1,2020-02-15T06:59:43Z +10618,2005-08-01T15:06:38Z,3729,386,2005-08-06T15:52:38Z,2,2020-02-15T06:59:43Z +10619,2005-08-01T15:07:04Z,2189,132,2005-08-07T11:42:04Z,2,2020-02-15T06:59:43Z +10620,2005-08-01T15:09:17Z,3064,183,2005-08-09T13:58:17Z,1,2020-02-15T06:59:43Z +10621,2005-08-01T15:10:26Z,1650,172,2005-08-04T10:58:26Z,1,2020-02-15T06:59:43Z +10622,2005-08-01T15:12:00Z,3044,171,2005-08-08T14:09:00Z,1,2020-02-15T06:59:43Z +10623,2005-08-01T15:22:38Z,4426,494,2005-08-03T11:03:38Z,2,2020-02-15T06:59:43Z +10624,2005-08-01T15:27:05Z,3801,74,2005-08-05T19:50:05Z,1,2020-02-15T06:59:43Z +10625,2005-08-01T15:27:10Z,3022,5,2005-08-02T13:16:10Z,1,2020-02-15T06:59:43Z +10626,2005-08-01T15:32:41Z,1042,122,2005-08-05T18:08:41Z,1,2020-02-15T06:59:43Z +10627,2005-08-01T15:33:03Z,2026,472,2005-08-02T21:26:03Z,1,2020-02-15T06:59:43Z +10628,2005-08-01T15:33:19Z,427,285,2005-08-05T17:27:19Z,1,2020-02-15T06:59:43Z +10629,2005-08-01T15:33:32Z,997,575,2005-08-08T12:40:32Z,2,2020-02-15T06:59:43Z +10630,2005-08-01T15:34:46Z,2335,39,2005-08-03T10:50:46Z,1,2020-02-15T06:59:43Z +10631,2005-08-01T15:35:14Z,2712,304,2005-08-03T10:48:14Z,1,2020-02-15T06:59:43Z +10632,2005-08-01T15:36:56Z,1290,406,2005-08-05T17:32:56Z,1,2020-02-15T06:59:43Z +10633,2005-08-01T15:37:17Z,3125,475,2005-08-10T14:30:17Z,2,2020-02-15T06:59:43Z +10634,2005-08-01T15:37:48Z,445,592,2005-08-02T12:11:48Z,2,2020-02-15T06:59:43Z +10635,2005-08-01T15:37:58Z,547,52,2005-08-07T11:15:58Z,2,2020-02-15T06:59:43Z +10636,2005-08-01T15:40:35Z,621,385,2005-08-05T18:46:35Z,1,2020-02-15T06:59:43Z +10637,2005-08-01T15:44:09Z,1243,161,2005-08-04T14:42:09Z,1,2020-02-15T06:59:43Z +10638,2005-08-01T15:44:20Z,2239,132,2005-08-08T16:05:20Z,2,2020-02-15T06:59:43Z +10639,2005-08-01T15:44:43Z,1015,39,2005-08-10T13:51:43Z,1,2020-02-15T06:59:43Z +10640,2005-08-01T15:44:51Z,3020,375,2005-08-06T15:52:51Z,1,2020-02-15T06:59:43Z +10641,2005-08-01T15:44:57Z,972,285,2005-08-04T18:15:57Z,2,2020-02-15T06:59:43Z +10642,2005-08-01T15:45:11Z,2573,294,2005-08-02T20:13:11Z,1,2020-02-15T06:59:43Z +10643,2005-08-01T15:48:33Z,3853,495,2005-08-06T20:24:33Z,2,2020-02-15T06:59:43Z +10644,2005-08-01T15:52:00Z,4374,7,2005-08-08T16:08:00Z,1,2020-02-15T06:59:43Z +10645,2005-08-01T15:52:01Z,3864,130,2005-08-09T18:58:01Z,1,2020-02-15T06:59:43Z +10646,2005-08-01T15:57:55Z,1752,209,2005-08-02T19:08:55Z,1,2020-02-15T06:59:43Z +10647,2005-08-01T16:08:46Z,3137,115,2005-08-06T20:37:46Z,2,2020-02-15T06:59:43Z +10648,2005-08-01T16:08:52Z,691,270,2005-08-05T20:17:52Z,1,2020-02-15T06:59:43Z +10649,2005-08-01T16:11:40Z,1032,278,2005-08-06T14:09:40Z,2,2020-02-15T06:59:43Z +10650,2005-08-01T16:18:45Z,2306,242,2005-08-09T16:29:45Z,1,2020-02-15T06:59:43Z +10651,2005-08-01T16:20:22Z,1541,404,2005-08-03T15:53:22Z,1,2020-02-15T06:59:43Z +10652,2005-08-01T16:24:08Z,1633,241,2005-08-03T16:00:08Z,2,2020-02-15T06:59:43Z +10653,2005-08-01T16:28:07Z,1190,75,2005-08-07T21:22:07Z,2,2020-02-15T06:59:43Z +10654,2005-08-01T16:31:35Z,2522,399,2005-08-05T12:04:35Z,2,2020-02-15T06:59:43Z +10655,2005-08-01T16:33:27Z,1399,385,2005-08-08T17:17:27Z,2,2020-02-15T06:59:43Z +10656,2005-08-01T16:38:04Z,2571,80,2005-08-09T19:37:04Z,2,2020-02-15T06:59:43Z +10657,2005-08-01T16:38:44Z,3075,590,2005-08-06T16:05:44Z,2,2020-02-15T06:59:43Z +10658,2005-08-01T16:39:18Z,2943,469,2005-08-09T18:17:18Z,2,2020-02-15T06:59:43Z +10659,2005-08-01T16:40:34Z,786,238,2005-08-09T21:00:34Z,2,2020-02-15T06:59:43Z +10660,2005-08-01T16:48:01Z,2518,253,2005-08-07T14:42:01Z,2,2020-02-15T06:59:43Z +10661,2005-08-01T16:48:31Z,3311,177,2005-08-02T21:02:31Z,1,2020-02-15T06:59:43Z +10662,2005-08-01T16:50:57Z,2857,151,2005-08-03T17:19:57Z,1,2020-02-15T06:59:43Z +10663,2005-08-01T16:51:08Z,4258,433,2005-08-08T21:17:08Z,2,2020-02-15T06:59:43Z +10664,2005-08-01T16:51:15Z,3167,337,2005-08-04T19:14:15Z,2,2020-02-15T06:59:43Z +10665,2005-08-01T16:56:17Z,3594,133,2005-08-03T18:58:17Z,1,2020-02-15T06:59:43Z +10666,2005-08-01T16:56:36Z,1945,197,2005-08-07T22:23:36Z,2,2020-02-15T06:59:43Z +10667,2005-08-01T16:58:22Z,3937,340,2005-08-10T15:41:22Z,1,2020-02-15T06:59:43Z +10668,2005-08-01T17:00:27Z,2085,58,2005-08-02T14:49:27Z,2,2020-02-15T06:59:43Z +10669,2005-08-01T17:03:28Z,2121,559,2005-08-08T21:34:28Z,2,2020-02-15T06:59:43Z +10670,2005-08-01T17:07:16Z,156,512,2005-08-10T11:46:16Z,2,2020-02-15T06:59:43Z +10671,2005-08-01T17:09:59Z,4430,10,2005-08-09T21:36:59Z,1,2020-02-15T06:59:43Z +10672,2005-08-01T17:10:54Z,3674,375,2005-08-07T12:19:54Z,2,2020-02-15T06:59:43Z +10673,2005-08-01T17:11:51Z,2735,528,2005-08-03T13:32:51Z,1,2020-02-15T06:59:43Z +10674,2005-08-01T17:11:52Z,1962,340,2005-08-08T19:34:52Z,1,2020-02-15T06:59:43Z +10675,2005-08-01T17:11:57Z,649,522,2005-08-10T17:18:57Z,1,2020-02-15T06:59:43Z +10676,2005-08-01T17:14:15Z,629,79,2005-08-04T12:34:15Z,1,2020-02-15T06:59:43Z +10677,2005-08-01T17:24:35Z,4350,483,2005-08-04T20:03:35Z,1,2020-02-15T06:59:43Z +10678,2005-08-01T17:26:24Z,4438,56,2005-08-05T22:55:24Z,1,2020-02-15T06:59:43Z +10679,2005-08-01T17:27:58Z,4437,198,2005-08-08T16:06:58Z,1,2020-02-15T06:59:43Z +10680,2005-08-01T17:28:05Z,2498,60,2005-08-04T19:34:05Z,1,2020-02-15T06:59:43Z +10681,2005-08-01T17:30:35Z,1468,119,2005-08-02T14:48:35Z,2,2020-02-15T06:59:43Z +10682,2005-08-01T17:32:53Z,4557,18,2005-08-06T15:49:53Z,2,2020-02-15T06:59:43Z +10683,2005-08-01T17:33:03Z,244,246,2005-08-04T23:12:03Z,1,2020-02-15T06:59:43Z +10684,2005-08-01T17:47:00Z,1985,244,2005-08-09T15:00:00Z,2,2020-02-15T06:59:43Z +10685,2005-08-01T17:49:38Z,2029,200,2005-08-07T21:04:38Z,2,2020-02-15T06:59:43Z +10686,2005-08-01T17:51:21Z,2542,150,2005-08-03T19:01:21Z,1,2020-02-15T06:59:43Z +10687,2005-08-01T17:53:02Z,3191,16,2005-08-05T19:16:02Z,2,2020-02-15T06:59:43Z +10688,2005-08-01T17:53:43Z,3161,449,2005-08-09T21:50:43Z,1,2020-02-15T06:59:43Z +10689,2005-08-01T18:04:18Z,1442,568,2005-08-05T21:17:18Z,2,2020-02-15T06:59:43Z +10690,2005-08-01T18:05:54Z,807,80,2005-08-10T21:43:54Z,2,2020-02-15T06:59:43Z +10691,2005-08-01T18:09:53Z,4281,276,2005-08-03T16:32:53Z,1,2020-02-15T06:59:43Z +10692,2005-08-01T18:12:35Z,371,596,2005-08-07T13:06:35Z,1,2020-02-15T06:59:44Z +10693,2005-08-01T18:14:14Z,2387,444,2005-08-03T22:00:14Z,2,2020-02-15T06:59:44Z +10694,2005-08-01T18:15:07Z,3429,98,2005-08-10T15:38:07Z,1,2020-02-15T06:59:44Z +10695,2005-08-01T18:16:20Z,3612,374,2005-08-03T12:21:20Z,2,2020-02-15T06:59:44Z +10696,2005-08-01T18:18:13Z,47,120,2005-08-04T14:09:13Z,1,2020-02-15T06:59:44Z +10697,2005-08-01T18:20:23Z,3115,519,2005-08-07T21:18:23Z,1,2020-02-15T06:59:44Z +10698,2005-08-01T18:24:41Z,2738,135,2005-08-08T18:59:41Z,2,2020-02-15T06:59:44Z +10699,2005-08-01T18:24:51Z,1029,125,2005-08-06T20:18:51Z,1,2020-02-15T06:59:44Z +10700,2005-08-01T18:26:31Z,4259,203,2005-08-07T19:51:31Z,2,2020-02-15T06:59:44Z +10701,2005-08-01T18:28:17Z,3958,538,2005-08-09T21:51:17Z,1,2020-02-15T06:59:44Z +10702,2005-08-01T18:34:59Z,2802,560,2005-08-09T23:44:59Z,2,2020-02-15T06:59:44Z +10703,2005-08-01T18:37:39Z,1818,181,2005-08-07T23:50:39Z,2,2020-02-15T06:59:44Z +10704,2005-08-01T18:38:02Z,960,594,2005-08-08T20:19:02Z,1,2020-02-15T06:59:44Z +10705,2005-08-01T18:38:54Z,4338,381,2005-08-04T18:00:54Z,1,2020-02-15T06:59:44Z +10706,2005-08-01T18:41:28Z,1183,147,2005-08-10T14:30:28Z,1,2020-02-15T06:59:44Z +10707,2005-08-01T18:41:34Z,1165,558,2005-08-06T12:41:34Z,1,2020-02-15T06:59:44Z +10708,2005-08-01T18:43:28Z,3978,567,2005-08-09T15:24:28Z,1,2020-02-15T06:59:44Z +10709,2005-08-01T18:43:57Z,282,418,2005-08-06T13:17:57Z,2,2020-02-15T06:59:44Z +10710,2005-08-01T18:44:36Z,3082,177,2005-08-03T13:17:36Z,1,2020-02-15T06:59:44Z +10711,2005-08-01T18:45:09Z,4278,400,2005-08-02T19:47:09Z,2,2020-02-15T06:59:44Z +10712,2005-08-01T18:47:56Z,1188,532,2005-08-07T19:26:56Z,2,2020-02-15T06:59:44Z +10713,2005-08-01T18:50:05Z,2030,369,2005-08-05T00:43:05Z,2,2020-02-15T06:59:44Z +10714,2005-08-01T18:51:29Z,1465,64,2005-08-04T18:49:29Z,2,2020-02-15T06:59:44Z +10715,2005-08-01T18:51:48Z,1054,386,2005-08-06T14:44:48Z,1,2020-02-15T06:59:44Z +10716,2005-08-01T18:53:48Z,3405,515,2005-08-04T13:49:48Z,1,2020-02-15T06:59:44Z +10717,2005-08-01T18:53:53Z,2934,365,2005-08-05T21:28:53Z,1,2020-02-15T06:59:44Z +10718,2005-08-01T18:55:38Z,2763,394,2005-08-04T14:45:38Z,1,2020-02-15T06:59:44Z +10719,2005-08-01T19:00:28Z,3861,188,2005-08-07T17:04:28Z,1,2020-02-15T06:59:44Z +10720,2005-08-01T19:04:33Z,3712,326,2005-08-06T23:12:33Z,2,2020-02-15T06:59:44Z +10721,2005-08-01T19:05:18Z,904,18,2005-08-09T20:45:18Z,2,2020-02-15T06:59:44Z +10722,2005-08-01T19:07:08Z,2849,90,2005-08-04T14:09:08Z,2,2020-02-15T06:59:44Z +10723,2005-08-01T19:10:49Z,2526,580,2005-08-08T19:21:49Z,2,2020-02-15T06:59:44Z +10724,2005-08-01T19:10:59Z,3425,576,2005-08-07T18:44:59Z,1,2020-02-15T06:59:44Z +10725,2005-08-01T19:11:04Z,4486,534,2005-08-07T18:16:04Z,2,2020-02-15T06:59:44Z +10726,2005-08-01T19:14:53Z,749,75,2005-08-08T23:56:53Z,2,2020-02-15T06:59:44Z +10727,2005-08-01T19:15:08Z,2049,16,2005-08-03T13:52:08Z,1,2020-02-15T06:59:44Z +10728,2005-08-01T19:15:09Z,3133,309,2005-08-04T19:35:09Z,1,2020-02-15T06:59:44Z +10729,2005-08-01T19:21:11Z,2918,595,2005-08-07T21:20:11Z,2,2020-02-15T06:59:44Z +10730,2005-08-01T19:21:42Z,1793,368,2005-08-10T21:18:42Z,1,2020-02-15T06:59:44Z +10731,2005-08-01T19:21:48Z,4248,278,2005-08-08T22:01:48Z,2,2020-02-15T06:59:44Z +10732,2005-08-01T19:25:18Z,2810,538,2005-08-10T22:26:18Z,1,2020-02-15T06:59:44Z +10733,2005-08-01T19:28:01Z,3980,560,2005-08-09T18:41:01Z,1,2020-02-15T06:59:44Z +10734,2005-08-01T19:28:47Z,1130,21,2005-08-03T00:41:47Z,2,2020-02-15T06:59:44Z +10735,2005-08-01T19:29:45Z,4061,544,2005-08-02T19:50:45Z,2,2020-02-15T06:59:44Z +10736,2005-08-01T19:30:21Z,2227,272,2005-08-02T22:37:21Z,1,2020-02-15T06:59:44Z +10737,2005-08-01T19:31:24Z,1773,149,2005-08-10T19:17:24Z,1,2020-02-15T06:59:44Z +10738,2005-08-01T19:39:08Z,544,377,2005-08-10T20:37:08Z,1,2020-02-15T06:59:44Z +10739,2005-08-01T19:46:11Z,3160,197,2005-08-06T21:08:11Z,2,2020-02-15T06:59:44Z +10740,2005-08-01T19:50:32Z,3215,144,2005-08-07T23:25:32Z,1,2020-02-15T06:59:44Z +10741,2005-08-01T19:52:52Z,3300,469,2005-08-04T19:58:52Z,1,2020-02-15T06:59:44Z +10742,2005-08-01T19:53:13Z,3658,416,2005-08-10T15:05:13Z,1,2020-02-15T06:59:44Z +10743,2005-08-01T19:55:09Z,4206,197,2005-08-03T19:29:09Z,1,2020-02-15T06:59:44Z +10744,2005-08-01T19:56:49Z,565,439,2005-08-09T16:33:49Z,2,2020-02-15T06:59:44Z +10745,2005-08-01T19:57:06Z,446,307,2005-08-07T18:04:06Z,1,2020-02-15T06:59:44Z +10746,2005-08-01T19:58:49Z,305,508,2005-08-10T19:00:49Z,2,2020-02-15T06:59:44Z +10747,2005-08-01T19:59:41Z,4527,266,2005-08-10T00:00:41Z,2,2020-02-15T06:59:44Z +10748,2005-08-01T20:01:24Z,3769,181,2005-08-05T19:55:24Z,1,2020-02-15T06:59:44Z +10749,2005-08-01T20:02:01Z,2953,214,2005-08-03T14:20:01Z,1,2020-02-15T06:59:44Z +10750,2005-08-01T20:06:00Z,3206,201,2005-08-07T15:48:00Z,1,2020-02-15T06:59:44Z +10751,2005-08-01T20:06:10Z,3257,518,2005-08-10T22:36:10Z,2,2020-02-15T06:59:44Z +10752,2005-08-01T20:08:49Z,3203,147,2005-08-10T15:41:49Z,2,2020-02-15T06:59:44Z +10753,2005-08-01T20:09:24Z,1557,273,2005-08-09T19:31:24Z,1,2020-02-15T06:59:44Z +10754,2005-08-01T20:12:33Z,2122,460,2005-08-10T01:07:33Z,2,2020-02-15T06:59:44Z +10755,2005-08-01T20:14:14Z,1217,239,2005-08-07T01:04:14Z,1,2020-02-15T06:59:44Z +10756,2005-08-01T20:17:03Z,4247,596,2005-08-08T18:31:03Z,2,2020-02-15T06:59:44Z +10757,2005-08-01T20:22:44Z,102,188,2005-08-04T19:48:44Z,2,2020-02-15T06:59:44Z +10758,2005-08-01T20:22:51Z,191,373,2005-08-10T16:11:51Z,1,2020-02-15T06:59:44Z +10759,2005-08-01T20:22:51Z,3528,256,2005-08-07T22:07:51Z,1,2020-02-15T06:59:44Z +10760,2005-08-01T20:25:20Z,1311,497,2005-08-09T16:57:20Z,1,2020-02-15T06:59:44Z +10761,2005-08-01T20:25:35Z,3967,36,2005-08-08T15:20:35Z,2,2020-02-15T06:59:44Z +10762,2005-08-01T20:28:39Z,1363,208,2005-08-05T17:36:39Z,1,2020-02-15T06:59:44Z +10763,2005-08-01T20:32:27Z,987,276,2005-08-05T01:24:27Z,2,2020-02-15T06:59:44Z +10764,2005-08-01T20:32:42Z,3808,357,2005-08-03T22:14:42Z,2,2020-02-15T06:59:44Z +10765,2005-08-01T20:34:51Z,566,337,2005-08-04T00:02:51Z,1,2020-02-15T06:59:44Z +10766,2005-08-01T20:36:29Z,947,420,2005-08-04T00:30:29Z,1,2020-02-15T06:59:44Z +10767,2005-08-01T20:37:23Z,2875,488,2005-08-04T23:15:23Z,2,2020-02-15T06:59:44Z +10768,2005-08-01T20:39:32Z,454,273,2005-08-10T19:41:32Z,1,2020-02-15T06:59:44Z +10769,2005-08-01T20:43:02Z,3222,348,2005-08-05T02:32:02Z,1,2020-02-15T06:59:44Z +10770,2005-08-01T20:45:39Z,2567,262,2005-08-04T19:21:39Z,1,2020-02-15T06:59:44Z +10771,2005-08-01T20:49:35Z,1274,485,2005-08-10T16:58:35Z,1,2020-02-15T06:59:44Z +10772,2005-08-01T20:51:10Z,132,485,2005-08-10T15:50:10Z,1,2020-02-15T06:59:44Z +10773,2005-08-01T20:53:45Z,3854,181,2005-08-07T00:16:45Z,1,2020-02-15T06:59:44Z +10774,2005-08-01T20:54:33Z,4231,407,2005-08-08T20:59:33Z,2,2020-02-15T06:59:44Z +10775,2005-08-01T20:59:52Z,4190,263,2005-08-04T19:31:52Z,2,2020-02-15T06:59:44Z +10776,2005-08-01T20:59:58Z,1598,565,2005-08-10T20:33:58Z,2,2020-02-15T06:59:44Z +10777,2005-08-01T21:03:50Z,3487,493,2005-08-06T19:29:50Z,1,2020-02-15T06:59:44Z +10778,2005-08-01T21:11:39Z,1939,220,2005-08-02T22:59:39Z,2,2020-02-15T06:59:44Z +10779,2005-08-01T21:11:54Z,2092,578,2005-08-09T21:00:54Z,2,2020-02-15T06:59:44Z +10780,2005-08-01T21:14:24Z,1450,51,2005-08-07T16:32:24Z,2,2020-02-15T06:59:44Z +10781,2005-08-01T21:22:41Z,1321,259,2005-08-06T01:02:41Z,1,2020-02-15T06:59:44Z +10782,2005-08-01T21:23:25Z,1507,577,2005-08-03T20:15:25Z,2,2020-02-15T06:59:44Z +10783,2005-08-01T21:23:37Z,1192,495,2005-08-09T20:18:37Z,1,2020-02-15T06:59:44Z +10784,2005-08-01T21:24:28Z,3494,208,2005-08-09T19:23:28Z,1,2020-02-15T06:59:44Z +10785,2005-08-01T21:24:55Z,2282,397,2005-08-06T17:47:55Z,1,2020-02-15T06:59:44Z +10786,2005-08-01T21:29:34Z,50,490,2005-08-10T17:27:34Z,1,2020-02-15T06:59:44Z +10787,2005-08-01T21:35:01Z,3246,127,2005-08-10T23:30:01Z,1,2020-02-15T06:59:44Z +10788,2005-08-01T21:37:10Z,3350,160,2005-08-03T01:33:10Z,1,2020-02-15T06:59:44Z +10789,2005-08-01T21:37:55Z,3298,403,2005-08-07T17:01:55Z,2,2020-02-15T06:59:44Z +10790,2005-08-01T21:38:37Z,3080,274,2005-08-08T17:20:37Z,2,2020-02-15T06:59:44Z +10791,2005-08-01T21:41:52Z,2061,338,2005-08-04T03:28:52Z,2,2020-02-15T06:59:44Z +10792,2005-08-01T21:44:24Z,1037,264,2005-08-02T19:48:24Z,2,2020-02-15T06:59:44Z +10793,2005-08-01T21:48:03Z,3018,225,2005-08-10T19:16:03Z,1,2020-02-15T06:59:44Z +10794,2005-08-01T21:51:15Z,889,27,2005-08-10T18:51:15Z,2,2020-02-15T06:59:44Z +10795,2005-08-01T21:56:37Z,2748,76,2005-08-03T01:36:37Z,1,2020-02-15T06:59:44Z +10796,2005-08-01T21:56:41Z,2113,534,2005-08-05T01:09:41Z,1,2020-02-15T06:59:44Z +10797,2005-08-01T22:02:51Z,1731,308,2005-08-03T23:07:51Z,1,2020-02-15T06:59:44Z +10798,2005-08-01T22:03:10Z,382,141,2005-08-08T01:34:10Z,1,2020-02-15T06:59:44Z +10799,2005-08-01T22:03:31Z,3282,145,2005-08-06T20:19:31Z,2,2020-02-15T06:59:44Z +10800,2005-08-01T22:07:44Z,507,583,2005-08-05T22:45:44Z,1,2020-02-15T06:59:44Z +10801,2005-08-01T22:09:35Z,3757,116,2005-08-08T22:23:35Z,1,2020-02-15T06:59:44Z +10802,2005-08-01T22:18:32Z,3998,178,2005-08-10T18:41:32Z,2,2020-02-15T06:59:44Z +10803,2005-08-01T22:22:07Z,3318,46,2005-08-08T02:37:07Z,2,2020-02-15T06:59:44Z +10804,2005-08-01T22:22:11Z,2915,596,2005-08-03T03:42:11Z,2,2020-02-15T06:59:44Z +10805,2005-08-01T22:23:37Z,557,203,2005-08-05T01:22:37Z,2,2020-02-15T06:59:44Z +10806,2005-08-01T22:25:29Z,3553,89,2005-08-04T18:46:29Z,2,2020-02-15T06:59:44Z +10807,2005-08-01T22:26:10Z,1673,287,2005-08-05T21:55:10Z,1,2020-02-15T06:59:44Z +10808,2005-08-01T22:37:11Z,596,480,2005-08-09T02:37:11Z,1,2020-02-15T06:59:44Z +10809,2005-08-01T22:39:27Z,1167,340,2005-08-03T03:44:27Z,2,2020-02-15T06:59:44Z +10810,2005-08-01T22:40:39Z,2314,376,2005-08-06T19:47:39Z,1,2020-02-15T06:59:44Z +10811,2005-08-01T22:41:15Z,4012,209,2005-08-10T00:10:15Z,1,2020-02-15T06:59:44Z +10812,2005-08-01T22:41:16Z,3762,11,2005-08-07T00:50:16Z,1,2020-02-15T06:59:44Z +10813,2005-08-01T22:43:00Z,3580,456,2005-08-03T21:43:00Z,1,2020-02-15T06:59:44Z +10814,2005-08-01T22:43:12Z,2758,49,2005-08-05T02:35:12Z,2,2020-02-15T06:59:44Z +10815,2005-08-01T22:46:21Z,877,62,2005-08-03T02:43:21Z,2,2020-02-15T06:59:44Z +10816,2005-08-01T22:48:57Z,905,129,2005-08-10T04:39:57Z,2,2020-02-15T06:59:44Z +10817,2005-08-01T22:51:08Z,3056,501,2005-08-10T16:55:08Z,2,2020-02-15T06:59:44Z +10818,2005-08-01T22:52:45Z,4549,309,2005-08-06T04:07:45Z,1,2020-02-15T06:59:44Z +10819,2005-08-01T22:52:57Z,983,308,2005-08-06T00:08:57Z,1,2020-02-15T06:59:44Z +10820,2005-08-01T22:53:40Z,1487,97,2005-08-02T17:59:40Z,2,2020-02-15T06:59:44Z +10821,2005-08-01T22:54:27Z,2016,522,2005-08-07T02:15:27Z,2,2020-02-15T06:59:44Z +10822,2005-08-01T22:54:28Z,3895,343,2005-08-02T17:19:28Z,1,2020-02-15T06:59:44Z +10823,2005-08-01T22:59:10Z,3322,405,2005-08-08T23:44:10Z,1,2020-02-15T06:59:44Z +10824,2005-08-01T23:00:22Z,3948,482,2005-08-04T04:14:22Z,2,2020-02-15T06:59:44Z +10825,2005-08-01T23:05:33Z,4386,587,2005-08-04T04:33:33Z,1,2020-02-15T06:59:44Z +10826,2005-08-01T23:07:56Z,1228,476,2005-08-08T04:10:56Z,2,2020-02-15T06:59:44Z +10827,2005-08-01T23:13:00Z,1590,46,2005-08-08T02:51:00Z,1,2020-02-15T06:59:44Z +10828,2005-08-01T23:16:10Z,2448,471,2005-08-09T21:17:10Z,1,2020-02-15T06:59:44Z +10829,2005-08-01T23:17:06Z,168,554,2005-08-09T17:22:06Z,2,2020-02-15T06:59:44Z +10830,2005-08-01T23:18:06Z,4176,148,2005-08-06T23:15:06Z,2,2020-02-15T06:59:44Z +10831,2005-08-01T23:22:45Z,1496,78,2005-08-07T01:05:45Z,2,2020-02-15T06:59:44Z +10832,2005-08-01T23:24:53Z,4096,487,2005-08-06T23:18:53Z,1,2020-02-15T06:59:44Z +10833,2005-08-01T23:25:55Z,4380,422,2005-08-10T18:01:55Z,1,2020-02-15T06:59:44Z +10834,2005-08-01T23:28:00Z,2270,252,2005-08-07T01:21:00Z,1,2020-02-15T06:59:44Z +10835,2005-08-01T23:28:49Z,351,90,2005-08-10T21:28:49Z,2,2020-02-15T06:59:44Z +10836,2005-08-01T23:29:58Z,4534,217,2005-08-07T23:03:58Z,2,2020-02-15T06:59:44Z +10837,2005-08-01T23:30:22Z,1816,410,2005-08-07T23:02:22Z,1,2020-02-15T06:59:44Z +10838,2005-08-01T23:36:10Z,69,387,2005-08-05T04:55:10Z,2,2020-02-15T06:59:44Z +10839,2005-08-01T23:37:39Z,2867,482,2005-08-02T20:18:39Z,1,2020-02-15T06:59:44Z +10840,2005-08-01T23:38:34Z,583,593,2005-08-07T02:36:34Z,2,2020-02-15T06:59:44Z +10841,2005-08-01T23:39:21Z,4337,102,2005-08-07T20:47:21Z,1,2020-02-15T06:59:44Z +10842,2005-08-01T23:41:24Z,1300,137,2005-08-11T03:48:24Z,1,2020-02-15T06:59:44Z +10843,2005-08-01T23:43:03Z,1286,192,2005-08-09T23:49:03Z,2,2020-02-15T06:59:44Z +10844,2005-08-01T23:46:58Z,1516,333,2005-08-09T19:42:58Z,2,2020-02-15T06:59:44Z +10845,2005-08-01T23:47:03Z,2737,42,2005-08-08T01:57:03Z,1,2020-02-15T06:59:44Z +10846,2005-08-01T23:47:54Z,2277,441,2005-08-08T01:10:54Z,1,2020-02-15T06:59:44Z +10847,2005-08-01T23:49:33Z,1200,280,2005-08-10T05:37:33Z,2,2020-02-15T06:59:44Z +10848,2005-08-01T23:50:22Z,2630,368,2005-08-06T00:52:22Z,1,2020-02-15T06:59:44Z +10849,2005-08-01T23:51:00Z,1683,278,2005-08-10T19:59:00Z,2,2020-02-15T06:59:44Z +10850,2005-08-01T23:53:45Z,1853,199,2005-08-10T21:11:45Z,1,2020-02-15T06:59:44Z +10851,2005-08-01T23:58:45Z,1359,154,2005-08-04T00:59:45Z,1,2020-02-15T06:59:44Z +10852,2005-08-02T00:00:33Z,3862,27,2005-08-03T23:09:33Z,1,2020-02-15T06:59:44Z +10853,2005-08-02T00:00:54Z,2682,41,2005-08-10T05:37:54Z,2,2020-02-15T06:59:44Z +10854,2005-08-02T00:02:06Z,3295,356,2005-08-02T21:55:06Z,2,2020-02-15T06:59:44Z +10855,2005-08-02T00:06:37Z,1366,274,2005-08-03T00:39:37Z,1,2020-02-15T06:59:44Z +10856,2005-08-02T00:07:14Z,2010,451,2005-08-04T02:48:14Z,2,2020-02-15T06:59:44Z +10857,2005-08-02T00:07:20Z,2961,360,2005-08-04T02:35:20Z,1,2020-02-15T06:59:44Z +10858,2005-08-02T00:08:39Z,852,312,2005-08-05T00:58:39Z,2,2020-02-15T06:59:44Z +10859,2005-08-02T00:11:39Z,277,375,2005-08-08T19:52:39Z,1,2020-02-15T06:59:44Z +10860,2005-08-02T00:12:32Z,2827,25,2005-08-04T03:50:32Z,1,2020-02-15T06:59:44Z +10861,2005-08-02T00:12:46Z,2162,131,2005-08-09T04:09:46Z,2,2020-02-15T06:59:44Z +10862,2005-08-02T00:17:34Z,1077,176,2005-08-08T00:31:34Z,2,2020-02-15T06:59:44Z +10863,2005-08-02T00:18:07Z,1170,161,2005-08-10T06:16:07Z,2,2020-02-15T06:59:44Z +10864,2005-08-02T00:18:59Z,1694,134,2005-08-08T22:20:59Z,1,2020-02-15T06:59:44Z +10865,2005-08-02T00:22:46Z,1485,201,2005-08-09T05:08:46Z,2,2020-02-15T06:59:44Z +10866,2005-08-02T00:22:49Z,117,424,2005-08-07T04:38:49Z,1,2020-02-15T06:59:44Z +10867,2005-08-02T00:24:15Z,2577,473,2005-08-05T21:09:15Z,1,2020-02-15T06:59:44Z +10868,2005-08-02T00:25:15Z,2443,562,2005-08-10T02:31:15Z,2,2020-02-15T06:59:44Z +10869,2005-08-02T00:26:54Z,2967,568,2005-08-04T03:40:54Z,2,2020-02-15T06:59:44Z +10870,2005-08-02T00:27:12Z,1509,33,2005-08-02T20:00:12Z,2,2020-02-15T06:59:44Z +10871,2005-08-02T00:27:24Z,104,75,2005-08-05T06:25:24Z,1,2020-02-15T06:59:44Z +10872,2005-08-02T00:27:50Z,2470,84,2005-08-06T20:34:50Z,2,2020-02-15T06:59:44Z +10873,2005-08-02T00:30:34Z,169,506,2005-08-07T00:16:34Z,2,2020-02-15T06:59:44Z +10874,2005-08-02T00:31:00Z,2552,230,2005-08-07T05:04:00Z,1,2020-02-15T06:59:44Z +10875,2005-08-02T00:31:44Z,862,175,2005-08-05T22:24:44Z,2,2020-02-15T06:59:44Z +10876,2005-08-02T00:31:58Z,2161,559,2005-08-05T21:45:58Z,1,2020-02-15T06:59:44Z +10877,2005-08-02T00:32:04Z,3337,487,2005-08-07T19:44:04Z,2,2020-02-15T06:59:44Z +10878,2005-08-02T00:33:12Z,3511,45,2005-08-07T06:02:12Z,1,2020-02-15T06:59:44Z +10879,2005-08-02T00:33:20Z,4415,334,2005-08-09T04:13:20Z,2,2020-02-15T06:59:44Z +10880,2005-08-02T00:34:12Z,450,528,2005-08-06T21:15:12Z,2,2020-02-15T06:59:44Z +10881,2005-08-02T00:38:14Z,781,253,2005-08-09T22:02:14Z,2,2020-02-15T06:59:44Z +10882,2005-08-02T00:47:16Z,1349,54,2005-08-09T22:11:16Z,1,2020-02-15T06:59:44Z +10883,2005-08-02T00:47:19Z,4,301,2005-08-03T00:02:19Z,1,2020-02-15T06:59:44Z +10884,2005-08-02T00:47:33Z,3702,569,2005-08-03T04:38:33Z,1,2020-02-15T06:59:44Z +10885,2005-08-02T00:51:37Z,4223,493,2005-08-09T20:49:37Z,2,2020-02-15T06:59:44Z +10886,2005-08-02T00:52:34Z,943,77,2005-08-08T00:30:34Z,1,2020-02-15T06:59:44Z +10887,2005-08-02T00:52:35Z,3450,573,2005-08-03T05:37:35Z,1,2020-02-15T06:59:44Z +10888,2005-08-02T00:52:45Z,2412,428,2005-08-03T03:07:45Z,1,2020-02-15T06:59:44Z +10889,2005-08-02T00:54:33Z,2098,64,2005-08-07T19:42:33Z,1,2020-02-15T06:59:44Z +10890,2005-08-02T00:58:46Z,78,210,2005-08-10T02:13:46Z,1,2020-02-15T06:59:44Z +10891,2005-08-02T01:09:55Z,1269,201,2005-08-05T05:03:55Z,2,2020-02-15T06:59:44Z +10892,2005-08-02T01:12:06Z,3243,109,2005-08-09T23:53:06Z,1,2020-02-15T06:59:44Z +10893,2005-08-02T01:12:13Z,2529,306,2005-08-11T05:53:13Z,2,2020-02-15T06:59:44Z +10894,2005-08-02T01:12:35Z,598,51,2005-08-09T22:55:35Z,1,2020-02-15T06:59:44Z +10895,2005-08-02T01:16:59Z,93,77,2005-08-03T02:41:59Z,2,2020-02-15T06:59:44Z +10896,2005-08-02T01:19:33Z,2283,505,2005-08-08T06:54:33Z,1,2020-02-15T06:59:44Z +10897,2005-08-02T01:23:42Z,291,338,2005-08-03T23:27:42Z,1,2020-02-15T06:59:44Z +10898,2005-08-02T01:29:57Z,3814,23,2005-08-06T00:07:57Z,2,2020-02-15T06:59:44Z +10899,2005-08-02T01:30:21Z,859,29,2005-08-06T05:01:21Z,2,2020-02-15T06:59:44Z +10900,2005-08-02T01:34:26Z,1749,139,2005-08-07T00:52:26Z,2,2020-02-15T06:59:44Z +10901,2005-08-02T01:35:44Z,3813,290,2005-08-04T21:20:44Z,2,2020-02-15T06:59:44Z +10902,2005-08-02T01:35:46Z,3863,486,2005-08-09T01:59:46Z,1,2020-02-15T06:59:44Z +10903,2005-08-02T01:41:59Z,2696,547,2005-08-06T23:03:59Z,1,2020-02-15T06:59:44Z +10904,2005-08-02T01:43:02Z,3681,593,2005-08-04T04:34:02Z,1,2020-02-15T06:59:44Z +10905,2005-08-02T01:45:59Z,2835,439,2005-08-04T22:28:59Z,1,2020-02-15T06:59:44Z +10906,2005-08-02T01:47:04Z,3139,463,2005-08-07T20:41:04Z,2,2020-02-15T06:59:44Z +10907,2005-08-02T01:51:48Z,1430,561,2005-08-02T19:53:48Z,1,2020-02-15T06:59:44Z +10908,2005-08-02T01:53:06Z,1284,269,2005-08-04T02:46:06Z,2,2020-02-15T06:59:44Z +10909,2005-08-02T01:53:59Z,3516,413,2005-08-03T04:36:59Z,2,2020-02-15T06:59:44Z +10910,2005-08-02T01:54:34Z,2428,266,2005-08-10T04:04:34Z,2,2020-02-15T06:59:44Z +10911,2005-08-02T01:58:36Z,769,195,2005-08-08T07:37:36Z,2,2020-02-15T06:59:44Z +10912,2005-08-02T02:00:03Z,732,477,2005-08-06T05:55:03Z,1,2020-02-15T06:59:44Z +10913,2005-08-02T02:04:03Z,3388,565,2005-08-09T03:21:03Z,1,2020-02-15T06:59:44Z +10914,2005-08-02T02:04:43Z,585,584,2005-08-06T03:00:43Z,1,2020-02-15T06:59:44Z +10915,2005-08-02T02:05:04Z,4568,418,2005-08-10T21:58:04Z,2,2020-02-15T06:59:44Z +10916,2005-08-02T02:05:59Z,3841,25,2005-08-06T03:46:59Z,2,2020-02-15T06:59:44Z +10917,2005-08-02T02:06:18Z,3146,378,2005-08-03T22:42:18Z,1,2020-02-15T06:59:44Z +10918,2005-08-02T02:10:56Z,3418,2,2005-08-02T21:23:56Z,1,2020-02-15T06:59:44Z +10919,2005-08-02T02:11:03Z,868,115,2005-08-04T01:49:03Z,1,2020-02-15T06:59:44Z +10920,2005-08-02T02:14:10Z,3106,531,2005-08-06T23:36:10Z,1,2020-02-15T06:59:44Z +10921,2005-08-02T02:14:33Z,1820,555,2005-08-09T20:58:33Z,2,2020-02-15T06:59:44Z +10922,2005-08-02T02:14:40Z,4522,539,2005-08-06T06:04:40Z,1,2020-02-15T06:59:44Z +10923,2005-08-02T02:15:01Z,2602,239,2005-08-03T04:18:01Z,1,2020-02-15T06:59:44Z +10924,2005-08-02T02:20:19Z,589,540,2005-08-11T05:50:19Z,2,2020-02-15T06:59:44Z +10925,2005-08-02T02:24:38Z,1475,98,2005-08-03T05:06:38Z,1,2020-02-15T06:59:44Z +10926,2005-08-02T02:26:37Z,4016,460,2005-08-09T20:55:37Z,1,2020-02-15T06:59:44Z +10927,2005-08-02T02:31:15Z,4125,288,2005-08-10T20:41:15Z,1,2020-02-15T06:59:44Z +10928,2005-08-02T02:34:12Z,2885,211,2005-08-07T21:13:12Z,1,2020-02-15T06:59:44Z +10929,2005-08-02T02:35:44Z,913,305,2005-08-05T03:52:44Z,1,2020-02-15T06:59:44Z +10930,2005-08-02T02:38:07Z,2027,206,2005-08-08T05:15:07Z,2,2020-02-15T06:59:44Z +10931,2005-08-02T02:44:59Z,3268,545,2005-08-04T02:02:59Z,1,2020-02-15T06:59:44Z +10932,2005-08-02T02:46:22Z,1688,595,2005-08-06T01:49:22Z,2,2020-02-15T06:59:44Z +10933,2005-08-02T02:50:49Z,3970,313,2005-08-08T04:39:49Z,1,2020-02-15T06:59:44Z +10934,2005-08-02T02:52:18Z,4458,142,2005-08-06T01:23:18Z,2,2020-02-15T06:59:44Z +10935,2005-08-02T02:54:53Z,4373,42,2005-08-10T00:07:53Z,2,2020-02-15T06:59:44Z +10936,2005-08-02T02:55:04Z,463,445,2005-08-11T07:56:04Z,1,2020-02-15T06:59:44Z +10937,2005-08-02T03:00:18Z,1320,416,2005-08-11T03:44:18Z,2,2020-02-15T06:59:44Z +10938,2005-08-02T03:05:22Z,3918,502,2005-08-05T08:31:22Z,1,2020-02-15T06:59:44Z +10939,2005-08-02T03:06:20Z,2131,161,2005-08-04T01:22:20Z,2,2020-02-15T06:59:44Z +10940,2005-08-02T03:08:29Z,3760,120,2005-08-07T21:28:29Z,2,2020-02-15T06:59:44Z +10941,2005-08-02T03:11:33Z,2132,531,2005-08-10T07:31:33Z,1,2020-02-15T06:59:44Z +10942,2005-08-02T03:16:31Z,2304,78,2005-08-11T02:46:31Z,2,2020-02-15T06:59:44Z +10943,2005-08-02T03:17:29Z,1036,377,2005-08-03T00:50:29Z,2,2020-02-15T06:59:44Z +10944,2005-08-02T03:20:03Z,2373,470,2005-08-04T04:13:03Z,2,2020-02-15T06:59:44Z +10945,2005-08-02T03:20:23Z,3684,532,2005-08-09T03:23:23Z,1,2020-02-15T06:59:44Z +10946,2005-08-02T03:20:39Z,4271,56,2005-08-05T02:59:39Z,1,2020-02-15T06:59:44Z +10947,2005-08-02T03:23:17Z,2510,500,2005-08-07T05:25:17Z,1,2020-02-15T06:59:44Z +10948,2005-08-02T03:23:23Z,4429,220,2005-08-05T23:18:23Z,1,2020-02-15T06:59:44Z +10949,2005-08-02T03:24:04Z,2309,389,2005-08-06T08:36:04Z,2,2020-02-15T06:59:44Z +10950,2005-08-02T03:25:08Z,707,451,2005-08-07T23:11:08Z,2,2020-02-15T06:59:44Z +10951,2005-08-02T03:26:35Z,173,144,2005-08-07T22:03:35Z,1,2020-02-15T06:59:44Z +10952,2005-08-02T03:28:21Z,3218,111,2005-08-09T01:41:21Z,1,2020-02-15T06:59:44Z +10953,2005-08-02T03:28:38Z,1510,483,2005-08-11T03:53:38Z,1,2020-02-15T06:59:44Z +10954,2005-08-02T03:30:24Z,3406,20,2005-08-08T05:52:24Z,2,2020-02-15T06:59:44Z +10955,2005-08-02T03:32:34Z,618,490,2005-08-09T21:53:34Z,2,2020-02-15T06:59:44Z +10956,2005-08-02T03:33:14Z,4372,54,2005-08-09T09:20:14Z,2,2020-02-15T06:59:44Z +10957,2005-08-02T03:33:30Z,1652,447,2005-08-10T06:19:30Z,2,2020-02-15T06:59:44Z +10958,2005-08-02T03:37:13Z,2174,160,2005-08-04T23:28:13Z,2,2020-02-15T06:59:44Z +10959,2005-08-02T03:39:39Z,4233,431,2005-08-11T07:20:39Z,1,2020-02-15T06:59:44Z +10960,2005-08-02T03:46:18Z,3536,399,2005-08-11T01:29:18Z,1,2020-02-15T06:59:44Z +10961,2005-08-02T03:47:55Z,1416,375,2005-08-09T02:03:55Z,1,2020-02-15T06:59:44Z +10962,2005-08-02T03:48:13Z,1953,538,2005-08-07T00:04:13Z,1,2020-02-15T06:59:44Z +10963,2005-08-02T03:48:17Z,4501,36,2005-08-02T22:15:17Z,1,2020-02-15T06:59:44Z +10964,2005-08-02T03:56:23Z,2356,36,2005-08-09T23:11:23Z,2,2020-02-15T06:59:44Z +10965,2005-08-02T04:00:19Z,2192,580,2005-08-09T03:27:19Z,1,2020-02-15T06:59:44Z +10966,2005-08-02T04:00:47Z,478,584,2005-08-08T01:58:47Z,2,2020-02-15T06:59:44Z +10967,2005-08-02T04:02:16Z,683,149,2005-08-09T07:57:16Z,1,2020-02-15T06:59:44Z +10968,2005-08-02T04:03:13Z,888,234,2005-08-11T08:36:13Z,1,2020-02-15T06:59:44Z +10969,2005-08-02T04:04:32Z,1898,244,2005-08-09T23:18:32Z,1,2020-02-15T06:59:44Z +10970,2005-08-02T04:06:46Z,1202,260,2005-08-10T04:27:46Z,1,2020-02-15T06:59:44Z +10971,2005-08-02T04:08:17Z,2789,383,2005-08-09T00:02:17Z,1,2020-02-15T06:59:44Z +10972,2005-08-02T04:08:25Z,1928,348,2005-08-09T23:25:25Z,1,2020-02-15T06:59:44Z +10973,2005-08-02T04:09:42Z,3562,127,2005-08-08T05:24:42Z,2,2020-02-15T06:59:44Z +10974,2005-08-02T04:10:52Z,690,491,2005-08-09T08:26:52Z,1,2020-02-15T06:59:44Z +10975,2005-08-02T04:11:25Z,2616,361,2005-08-04T04:39:25Z,2,2020-02-15T06:59:44Z +10976,2005-08-02T04:11:48Z,2418,326,2005-08-06T06:30:48Z,2,2020-02-15T06:59:44Z +10977,2005-08-02T04:12:17Z,2302,300,2005-08-06T06:52:17Z,2,2020-02-15T06:59:44Z +10978,2005-08-02T04:12:27Z,1597,487,2005-08-10T08:19:27Z,2,2020-02-15T06:59:44Z +10979,2005-08-02T04:16:37Z,2625,160,2005-08-06T00:01:37Z,2,2020-02-15T06:59:44Z +10980,2005-08-02T04:17:32Z,150,547,2005-08-04T05:12:32Z,1,2020-02-15T06:59:44Z +10981,2005-08-02T04:17:53Z,3699,305,2005-08-09T03:45:53Z,2,2020-02-15T06:59:44Z +10982,2005-08-02T04:19:11Z,2508,345,2005-08-04T00:20:11Z,2,2020-02-15T06:59:44Z +10983,2005-08-02T04:24:23Z,4502,380,2005-08-09T08:05:23Z,2,2020-02-15T06:59:44Z +10984,2005-08-02T04:30:02Z,1813,450,2005-08-10T02:51:02Z,1,2020-02-15T06:59:44Z +10985,2005-08-02T04:30:19Z,2734,186,2005-08-03T05:18:19Z,1,2020-02-15T06:59:44Z +10986,2005-08-02T04:35:24Z,555,597,2005-08-09T07:34:24Z,2,2020-02-15T06:59:44Z +10987,2005-08-02T04:36:52Z,968,349,2005-08-04T00:03:52Z,1,2020-02-15T06:59:44Z +10988,2005-08-02T04:38:17Z,1157,509,2005-08-09T00:09:17Z,1,2020-02-15T06:59:44Z +10989,2005-08-02T04:40:54Z,2272,7,2005-08-09T03:39:54Z,2,2020-02-15T06:59:44Z +10990,2005-08-02T04:41:06Z,262,111,2005-08-10T05:02:06Z,2,2020-02-15T06:59:44Z +10991,2005-08-02T04:41:12Z,2854,77,2005-08-05T05:36:12Z,2,2020-02-15T06:59:44Z +10992,2005-08-02T04:41:17Z,11,180,2005-08-09T02:13:17Z,1,2020-02-15T06:59:44Z +10993,2005-08-02T04:45:01Z,292,383,2005-08-04T03:32:01Z,1,2020-02-15T06:59:44Z +10994,2005-08-02T04:46:53Z,647,323,2005-08-11T10:30:53Z,1,2020-02-15T06:59:44Z +10995,2005-08-02T04:48:00Z,2891,340,2005-08-07T05:00:00Z,1,2020-02-15T06:59:44Z +10996,2005-08-02T04:48:11Z,2235,26,2005-08-06T08:00:11Z,1,2020-02-15T06:59:44Z +10997,2005-08-02T04:49:02Z,300,334,2005-08-10T08:13:02Z,2,2020-02-15T06:59:44Z +10998,2005-08-02T04:50:55Z,1479,435,2005-08-11T03:43:55Z,1,2020-02-15T06:59:44Z +10999,2005-08-02T04:53:13Z,2013,227,2005-08-06T04:36:13Z,2,2020-02-15T06:59:44Z +11000,2005-08-02T04:56:14Z,264,265,2005-08-07T01:39:14Z,2,2020-02-15T06:59:44Z +11001,2005-08-02T04:56:45Z,3701,5,2005-08-11T08:04:45Z,1,2020-02-15T06:59:44Z +11002,2005-08-02T05:02:56Z,3073,583,2005-08-05T07:04:56Z,2,2020-02-15T06:59:44Z +11003,2005-08-02T05:03:05Z,4301,272,2005-08-05T10:48:05Z,2,2020-02-15T06:59:44Z +11004,2005-08-02T05:04:18Z,200,45,2005-08-11T00:03:18Z,2,2020-02-15T06:59:44Z +11005,2005-08-02T05:05:23Z,1547,216,2005-08-07T23:28:23Z,2,2020-02-15T06:59:44Z +11006,2005-08-02T05:05:52Z,2776,473,2005-08-05T03:33:52Z,1,2020-02-15T06:59:44Z +11007,2005-08-02T05:05:53Z,4172,98,2005-08-05T01:56:53Z,2,2020-02-15T06:59:44Z +11008,2005-08-02T05:06:17Z,2831,375,2005-08-10T01:22:17Z,2,2020-02-15T06:59:44Z +11009,2005-08-02T05:06:23Z,2574,596,2005-08-08T03:02:23Z,1,2020-02-15T06:59:44Z +11010,2005-08-02T05:06:27Z,869,326,2005-08-03T23:47:27Z,2,2020-02-15T06:59:44Z +11011,2005-08-02T05:07:07Z,3981,256,2005-08-09T07:16:07Z,1,2020-02-15T06:59:44Z +11012,2005-08-02T05:09:42Z,542,162,2005-08-05T07:22:42Z,2,2020-02-15T06:59:44Z +11013,2005-08-02T05:10:54Z,2993,527,2005-08-10T08:59:54Z,1,2020-02-15T06:59:44Z +11014,2005-08-02T05:12:22Z,393,269,2005-08-07T09:33:22Z,1,2020-02-15T06:59:44Z +11015,2005-08-02T05:13:00Z,4331,138,2005-08-08T04:18:00Z,2,2020-02-15T06:59:44Z +11016,2005-08-02T05:19:13Z,4446,116,2005-08-05T05:31:13Z,1,2020-02-15T06:59:44Z +11017,2005-08-02T05:19:51Z,4140,480,2005-08-09T00:36:51Z,2,2020-02-15T06:59:44Z +11018,2005-08-02T05:27:53Z,2988,197,2005-08-07T10:48:53Z,1,2020-02-15T06:59:44Z +11019,2005-08-02T05:29:31Z,3227,112,2005-08-04T00:42:31Z,1,2020-02-15T06:59:44Z +11020,2005-08-02T05:29:48Z,1645,242,2005-08-06T05:36:48Z,2,2020-02-15T06:59:44Z +11021,2005-08-02T05:30:11Z,2069,385,2005-08-05T05:50:11Z,2,2020-02-15T06:59:44Z +11022,2005-08-02T05:35:03Z,827,206,2005-08-09T10:20:03Z,2,2020-02-15T06:59:44Z +11023,2005-08-02T05:36:38Z,3617,6,2005-08-10T05:39:38Z,1,2020-02-15T06:59:44Z +11024,2005-08-02T05:38:31Z,2284,427,2005-08-11T04:47:31Z,1,2020-02-15T06:59:44Z +11025,2005-08-02T05:39:12Z,2253,419,2005-08-08T00:09:12Z,2,2020-02-15T06:59:44Z +11026,2005-08-02T05:46:05Z,3554,531,2005-08-07T06:27:05Z,2,2020-02-15T06:59:44Z +11027,2005-08-02T05:47:10Z,571,412,2005-08-05T23:51:10Z,1,2020-02-15T06:59:44Z +11028,2005-08-02T05:48:20Z,2764,66,2005-08-10T11:21:20Z,1,2020-02-15T06:59:44Z +11029,2005-08-02T05:51:10Z,1023,45,2005-08-05T04:15:10Z,1,2020-02-15T06:59:44Z +11030,2005-08-02T05:51:20Z,1437,569,2005-08-06T04:20:20Z,1,2020-02-15T06:59:44Z +11031,2005-08-02T05:52:58Z,1205,361,2005-08-07T07:14:58Z,2,2020-02-15T06:59:44Z +11032,2005-08-02T05:53:35Z,1119,359,2005-08-05T02:58:35Z,2,2020-02-15T06:59:44Z +11033,2005-08-02T05:54:17Z,3323,155,2005-08-09T10:50:17Z,2,2020-02-15T06:59:44Z +11034,2005-08-02T05:54:53Z,2939,586,2005-08-09T04:14:53Z,1,2020-02-15T06:59:44Z +11035,2005-08-02T05:55:39Z,3776,305,2005-08-08T06:46:39Z,2,2020-02-15T06:59:44Z +11036,2005-08-02T05:56:29Z,2054,502,2005-08-05T05:00:29Z,2,2020-02-15T06:59:44Z +11037,2005-08-02T05:58:12Z,4291,220,2005-08-07T11:26:12Z,1,2020-02-15T06:59:44Z +11038,2005-08-02T05:59:42Z,4452,403,2005-08-08T04:37:42Z,2,2020-02-15T06:59:44Z +11039,2005-08-02T06:00:53Z,549,170,2005-08-05T06:19:53Z,2,2020-02-15T06:59:44Z +11040,2005-08-02T06:03:22Z,2297,223,2005-08-03T07:58:22Z,1,2020-02-15T06:59:44Z +11041,2005-08-02T06:03:53Z,1897,435,2005-08-03T11:57:53Z,1,2020-02-15T06:59:44Z +11042,2005-08-02T06:04:33Z,4149,439,2005-08-11T01:30:33Z,1,2020-02-15T06:59:44Z +11043,2005-08-02T06:04:44Z,65,573,2005-08-06T11:37:44Z,1,2020-02-15T06:59:44Z +11044,2005-08-02T06:05:27Z,2922,122,2005-08-06T05:15:27Z,1,2020-02-15T06:59:44Z +11045,2005-08-02T06:07:54Z,2214,402,2005-08-08T00:37:54Z,1,2020-02-15T06:59:44Z +11046,2005-08-02T06:08:34Z,2105,526,2005-08-06T08:45:34Z,2,2020-02-15T06:59:44Z +11047,2005-08-02T06:09:20Z,2267,416,2005-08-11T08:36:20Z,1,2020-02-15T06:59:44Z +11048,2005-08-02T06:15:07Z,206,491,2005-08-04T02:47:07Z,2,2020-02-15T06:59:44Z +11049,2005-08-02T06:15:40Z,4352,38,2005-08-11T10:09:40Z,2,2020-02-15T06:59:44Z +11050,2005-08-02T06:17:16Z,2077,234,2005-08-09T05:58:16Z,1,2020-02-15T06:59:44Z +11051,2005-08-02T06:23:39Z,4189,446,2005-08-06T06:46:39Z,2,2020-02-15T06:59:44Z +11052,2005-08-02T06:26:19Z,1089,331,2005-08-06T04:20:19Z,2,2020-02-15T06:59:44Z +11053,2005-08-02T06:27:13Z,2599,50,2005-08-09T11:24:13Z,2,2020-02-15T06:59:44Z +11054,2005-08-02T06:33:07Z,728,577,2005-08-10T02:52:07Z,2,2020-02-15T06:59:44Z +11055,2005-08-02T06:36:05Z,3851,182,2005-08-06T00:36:05Z,1,2020-02-15T06:59:44Z +11056,2005-08-02T06:36:27Z,1404,88,2005-08-10T06:02:27Z,1,2020-02-15T06:59:44Z +11057,2005-08-02T06:38:19Z,3143,137,2005-08-11T03:43:19Z,1,2020-02-15T06:59:44Z +11058,2005-08-02T06:38:44Z,3270,274,2005-08-06T06:45:44Z,1,2020-02-15T06:59:44Z +11059,2005-08-02T06:41:38Z,428,189,2005-08-09T04:34:38Z,1,2020-02-15T06:59:44Z +11060,2005-08-02T06:48:18Z,3395,496,2005-08-10T11:49:18Z,1,2020-02-15T06:59:44Z +11061,2005-08-02T06:50:18Z,809,245,2005-08-07T07:41:18Z,2,2020-02-15T06:59:44Z +11062,2005-08-02T06:52:54Z,2014,346,2005-08-07T10:59:54Z,1,2020-02-15T06:59:44Z +11063,2005-08-02T06:53:48Z,2261,461,2005-08-05T03:38:48Z,2,2020-02-15T06:59:44Z +11064,2005-08-02T06:55:17Z,3012,338,2005-08-06T03:29:17Z,1,2020-02-15T06:59:44Z +11065,2005-08-02T06:57:55Z,2226,357,2005-08-06T01:31:55Z,2,2020-02-15T06:59:44Z +11066,2005-08-02T06:58:32Z,4213,373,2005-08-10T01:27:32Z,2,2020-02-15T06:59:44Z +11067,2005-08-02T07:03:24Z,965,85,2005-08-10T08:59:24Z,2,2020-02-15T06:59:44Z +11068,2005-08-02T07:08:07Z,1262,52,2005-08-09T11:15:07Z,2,2020-02-15T06:59:44Z +11069,2005-08-02T07:09:34Z,57,4,2005-08-08T08:39:34Z,1,2020-02-15T06:59:44Z +11070,2005-08-02T07:10:39Z,4020,298,2005-08-03T07:43:39Z,1,2020-02-15T06:59:44Z +11071,2005-08-02T07:10:53Z,4264,294,2005-08-07T09:58:53Z,1,2020-02-15T06:59:44Z +11072,2005-08-02T07:10:57Z,3078,21,2005-08-04T07:42:57Z,1,2020-02-15T06:59:44Z +11073,2005-08-02T07:13:03Z,4232,234,2005-08-03T05:46:03Z,1,2020-02-15T06:59:44Z +11074,2005-08-02T07:21:43Z,1439,277,2005-08-08T05:18:43Z,1,2020-02-15T06:59:44Z +11075,2005-08-02T07:24:23Z,3027,503,2005-08-08T04:55:23Z,1,2020-02-15T06:59:44Z +11076,2005-08-02T07:24:47Z,837,211,2005-08-10T09:16:47Z,1,2020-02-15T06:59:44Z +11077,2005-08-02T07:26:43Z,4254,158,2005-08-09T10:34:43Z,2,2020-02-15T06:59:44Z +11078,2005-08-02T07:26:58Z,2362,587,2005-08-07T01:59:58Z,2,2020-02-15T06:59:44Z +11079,2005-08-02T07:29:10Z,3185,29,2005-08-07T01:59:10Z,2,2020-02-15T06:59:44Z +11080,2005-08-02T07:29:56Z,4303,571,2005-08-08T05:58:56Z,1,2020-02-15T06:59:44Z +11081,2005-08-02T07:30:14Z,3804,513,2005-08-09T08:50:14Z,1,2020-02-15T06:59:44Z +11082,2005-08-02T07:30:19Z,3037,190,2005-08-07T05:20:19Z,2,2020-02-15T06:59:44Z +11083,2005-08-02T07:32:01Z,4395,295,2005-08-08T02:23:01Z,1,2020-02-15T06:59:44Z +11084,2005-08-02T07:34:19Z,32,369,2005-08-07T09:30:19Z,1,2020-02-15T06:59:44Z +11085,2005-08-02T07:36:44Z,3207,276,2005-08-04T03:32:44Z,1,2020-02-15T06:59:44Z +11086,2005-08-02T07:38:44Z,552,371,2005-08-11T06:30:44Z,1,2020-02-15T06:59:44Z +11087,2005-08-02T07:41:41Z,654,2,2005-08-10T10:37:41Z,2,2020-02-15T06:59:44Z +11088,2005-08-02T07:48:31Z,2739,138,2005-08-05T08:09:31Z,2,2020-02-15T06:59:44Z +11089,2005-08-02T07:52:20Z,825,421,2005-08-07T07:24:20Z,1,2020-02-15T06:59:44Z +11090,2005-08-02T07:56:40Z,2743,89,2005-08-10T07:58:40Z,1,2020-02-15T06:59:44Z +11091,2005-08-02T07:56:41Z,1659,423,2005-08-07T05:35:41Z,2,2020-02-15T06:59:44Z +11092,2005-08-02T07:58:50Z,569,60,2005-08-04T03:23:50Z,2,2020-02-15T06:59:44Z +11093,2005-08-02T07:59:49Z,239,82,2005-08-11T06:01:49Z,1,2020-02-15T06:59:44Z +11094,2005-08-02T08:03:02Z,3095,18,2005-08-03T11:34:02Z,1,2020-02-15T06:59:44Z +11095,2005-08-02T08:03:20Z,3517,278,2005-08-10T05:20:20Z,1,2020-02-15T06:59:44Z +11096,2005-08-02T08:05:19Z,1436,34,2005-08-04T07:28:19Z,2,2020-02-15T06:59:44Z +11097,2005-08-02T08:05:46Z,2493,575,2005-08-10T12:00:46Z,2,2020-02-15T06:59:44Z +11098,2005-08-02T08:06:18Z,158,570,2005-08-11T04:50:18Z,2,2020-02-15T06:59:44Z +11099,2005-08-02T08:07:12Z,1444,102,2005-08-07T12:11:12Z,2,2020-02-15T06:59:44Z +11100,2005-08-02T08:08:00Z,3047,65,2005-08-10T07:19:00Z,1,2020-02-15T06:59:44Z +11101,2005-08-02T08:08:24Z,2621,80,2005-08-06T05:55:24Z,1,2020-02-15T06:59:44Z +11102,2005-08-02T08:08:30Z,3112,73,2005-08-04T09:16:30Z,1,2020-02-15T06:59:44Z +11103,2005-08-02T08:09:54Z,1879,158,2005-08-07T12:05:54Z,1,2020-02-15T06:59:44Z +11104,2005-08-02T08:09:58Z,3042,196,2005-08-05T11:55:58Z,1,2020-02-15T06:59:44Z +11105,2005-08-02T08:13:31Z,3170,245,2005-08-03T11:08:31Z,1,2020-02-15T06:59:44Z +11106,2005-08-02T08:17:38Z,2307,287,2005-08-03T07:54:38Z,1,2020-02-15T06:59:44Z +11107,2005-08-02T08:19:38Z,2217,410,2005-08-07T08:46:38Z,2,2020-02-15T06:59:44Z +11108,2005-08-02T08:20:01Z,560,447,2005-08-03T13:22:01Z,2,2020-02-15T06:59:44Z +11109,2005-08-02T08:20:29Z,2683,479,2005-08-09T11:35:29Z,2,2020-02-15T06:59:44Z +11110,2005-08-02T08:20:31Z,4311,4,2005-08-04T05:06:31Z,2,2020-02-15T06:59:44Z +11111,2005-08-02T08:21:27Z,334,378,2005-08-06T07:48:27Z,2,2020-02-15T06:59:44Z +11112,2005-08-02T08:25:14Z,526,207,2005-08-03T08:41:14Z,1,2020-02-15T06:59:44Z +11113,2005-08-02T08:26:24Z,1654,231,2005-08-07T09:24:24Z,2,2020-02-15T06:59:44Z +11114,2005-08-02T08:26:45Z,1273,572,2005-08-03T08:41:45Z,2,2020-02-15T06:59:44Z +11115,2005-08-02T08:31:06Z,3812,408,2005-08-04T02:36:06Z,2,2020-02-15T06:59:44Z +11116,2005-08-02T08:34:40Z,434,344,2005-08-09T04:56:40Z,1,2020-02-15T06:59:44Z +11117,2005-08-02T08:36:03Z,1613,474,2005-08-05T06:56:03Z,2,2020-02-15T06:59:44Z +11118,2005-08-02T08:44:18Z,2411,15,2005-08-05T08:08:18Z,2,2020-02-15T06:59:44Z +11119,2005-08-02T08:44:44Z,4307,489,2005-08-10T11:32:44Z,2,2020-02-15T06:59:44Z +11120,2005-08-02T08:47:04Z,4185,322,2005-08-05T05:33:04Z,1,2020-02-15T06:59:44Z +11121,2005-08-02T08:48:31Z,1025,572,2005-08-04T05:08:31Z,2,2020-02-15T06:59:44Z +11122,2005-08-02T08:49:09Z,3021,383,2005-08-08T04:33:09Z,1,2020-02-15T06:59:44Z +11123,2005-08-02T08:54:17Z,1926,150,2005-08-09T11:11:17Z,2,2020-02-15T06:59:44Z +11124,2005-08-02T08:55:25Z,698,249,2005-08-10T10:59:25Z,1,2020-02-15T06:59:44Z +11125,2005-08-02T08:55:35Z,2081,237,2005-08-03T09:12:35Z,1,2020-02-15T06:59:44Z +11126,2005-08-02T08:59:04Z,3310,47,2005-08-04T11:00:04Z,1,2020-02-15T06:59:44Z +11127,2005-08-02T09:00:59Z,1106,351,2005-08-05T11:54:59Z,2,2020-02-15T06:59:44Z +11128,2005-08-02T09:03:25Z,3472,386,2005-08-09T04:36:25Z,1,2020-02-15T06:59:44Z +11129,2005-08-02T09:08:44Z,23,566,2005-08-04T04:00:44Z,1,2020-02-15T06:59:44Z +11130,2005-08-02T09:08:59Z,684,329,2005-08-09T07:50:59Z,2,2020-02-15T06:59:44Z +11131,2005-08-02T09:10:04Z,1860,293,2005-08-08T09:59:04Z,2,2020-02-15T06:59:44Z +11132,2005-08-02T09:14:09Z,2212,398,2005-08-08T06:39:09Z,1,2020-02-15T06:59:44Z +11133,2005-08-02T09:15:45Z,675,120,2005-08-04T10:39:45Z,1,2020-02-15T06:59:44Z +11134,2005-08-02T09:19:22Z,2641,372,2005-08-11T03:56:22Z,1,2020-02-15T06:59:44Z +11135,2005-08-02T09:22:25Z,799,32,2005-08-04T14:30:25Z,2,2020-02-15T06:59:44Z +11136,2005-08-02T09:22:57Z,1315,559,2005-08-08T14:12:57Z,2,2020-02-15T06:59:44Z +11137,2005-08-02T09:25:31Z,2500,310,2005-08-08T08:10:31Z,1,2020-02-15T06:59:44Z +11138,2005-08-02T09:26:16Z,4250,458,2005-08-11T07:50:16Z,2,2020-02-15T06:59:44Z +11139,2005-08-02T09:27:36Z,1011,236,2005-08-08T14:07:36Z,2,2020-02-15T06:59:44Z +11140,2005-08-02T09:27:45Z,3836,132,2005-08-05T04:10:45Z,1,2020-02-15T06:59:44Z +11141,2005-08-02T09:29:11Z,1614,15,2005-08-04T07:50:11Z,1,2020-02-15T06:59:44Z +11142,2005-08-02T09:30:11Z,2954,306,2005-08-05T06:52:11Z,1,2020-02-15T06:59:44Z +11143,2005-08-02T09:32:54Z,3382,100,2005-08-05T12:04:54Z,2,2020-02-15T06:59:44Z +11144,2005-08-02T09:39:17Z,2724,376,2005-08-03T11:53:17Z,2,2020-02-15T06:59:44Z +11145,2005-08-02T09:43:24Z,1270,291,2005-08-05T15:29:24Z,1,2020-02-15T06:59:44Z +11146,2005-08-02T09:45:32Z,2488,552,2005-08-07T07:33:32Z,1,2020-02-15T06:59:44Z +11147,2005-08-02T09:45:54Z,1562,597,2005-08-07T07:28:54Z,1,2020-02-15T06:59:44Z +11148,2005-08-02T09:47:08Z,2991,230,2005-08-08T10:57:08Z,1,2020-02-15T06:59:44Z +11149,2005-08-02T09:51:43Z,3254,358,2005-08-11T09:40:43Z,2,2020-02-15T06:59:44Z +11150,2005-08-02T09:51:46Z,2193,527,2005-08-05T09:03:46Z,2,2020-02-15T06:59:44Z +11151,2005-08-02T09:52:44Z,3939,391,2005-08-05T06:29:44Z,2,2020-02-15T06:59:44Z +11152,2005-08-02T09:53:36Z,3887,494,2005-08-11T14:58:36Z,1,2020-02-15T06:59:44Z +11153,2005-08-02T09:54:19Z,1546,220,2005-08-10T14:57:19Z,1,2020-02-15T06:59:44Z +11154,2005-08-02T09:54:50Z,697,160,2005-08-06T14:48:50Z,2,2020-02-15T06:59:44Z +11155,2005-08-02T09:55:28Z,2001,73,2005-08-03T06:00:28Z,2,2020-02-15T06:59:44Z +11156,2005-08-02T09:56:06Z,907,465,2005-08-04T13:36:06Z,2,2020-02-15T06:59:44Z +11157,2005-08-02T09:58:15Z,1313,244,2005-08-06T04:23:15Z,2,2020-02-15T06:59:44Z +11158,2005-08-02T09:58:28Z,530,190,2005-08-10T13:54:28Z,2,2020-02-15T06:59:44Z +11159,2005-08-02T10:00:55Z,4575,249,2005-08-05T10:38:55Z,1,2020-02-15T06:59:44Z +11160,2005-08-02T10:05:30Z,3260,436,2005-08-07T08:30:30Z,1,2020-02-15T06:59:44Z +11161,2005-08-02T10:05:57Z,3321,503,2005-08-06T05:05:57Z,2,2020-02-15T06:59:44Z +11162,2005-08-02T10:07:54Z,1809,277,2005-08-05T11:35:54Z,2,2020-02-15T06:59:44Z +11163,2005-08-02T10:08:40Z,1925,505,2005-08-05T14:59:40Z,1,2020-02-15T06:59:44Z +11164,2005-08-02T10:10:56Z,4450,580,2005-08-10T11:20:56Z,2,2020-02-15T06:59:44Z +11165,2005-08-02T10:12:17Z,2059,513,2005-08-04T11:09:17Z,1,2020-02-15T06:59:44Z +11166,2005-08-02T10:14:58Z,638,11,2005-08-11T11:43:58Z,1,2020-02-15T06:59:44Z +11167,2005-08-02T10:15:51Z,148,451,2005-08-09T09:18:51Z,1,2020-02-15T06:59:44Z +11168,2005-08-02T10:19:42Z,468,555,2005-08-04T08:42:42Z,1,2020-02-15T06:59:44Z +11169,2005-08-02T10:19:42Z,2392,329,2005-08-07T05:45:42Z,1,2020-02-15T06:59:44Z +11170,2005-08-02T10:21:53Z,1333,547,2005-08-08T11:08:53Z,1,2020-02-15T06:59:44Z +11171,2005-08-02T10:23:41Z,3117,339,2005-08-04T14:22:41Z,2,2020-02-15T06:59:44Z +11172,2005-08-02T10:27:52Z,1207,76,2005-08-11T12:47:52Z,1,2020-02-15T06:59:44Z +11173,2005-08-02T10:28:00Z,4296,146,2005-08-10T14:53:00Z,1,2020-02-15T06:59:44Z +11174,2005-08-02T10:32:11Z,1551,328,2005-08-09T12:30:11Z,1,2020-02-15T06:59:44Z +11175,2005-08-02T10:38:47Z,85,164,2005-08-07T07:11:47Z,2,2020-02-15T06:59:44Z +11176,2005-08-02T10:39:43Z,1448,37,2005-08-09T14:42:43Z,2,2020-02-15T06:59:44Z +11177,2005-08-02T10:43:48Z,1149,2,2005-08-10T10:55:48Z,2,2020-02-15T06:59:44Z +11178,2005-08-02T10:48:10Z,2613,342,2005-08-06T06:07:10Z,1,2020-02-15T06:59:44Z +11179,2005-08-02T10:50:06Z,4376,5,2005-08-04T05:24:06Z,1,2020-02-15T06:59:44Z +11180,2005-08-02T10:54:30Z,3632,534,2005-08-11T15:55:30Z,1,2020-02-15T06:59:44Z +11181,2005-08-02T10:55:03Z,3127,557,2005-08-07T10:43:03Z,1,2020-02-15T06:59:44Z +11182,2005-08-02T10:55:14Z,605,54,2005-08-06T05:58:14Z,1,2020-02-15T06:59:44Z +11183,2005-08-02T11:00:32Z,833,102,2005-08-04T08:59:32Z,2,2020-02-15T06:59:44Z +11184,2005-08-02T11:01:26Z,871,259,2005-08-11T06:29:26Z,1,2020-02-15T06:59:44Z +11185,2005-08-02T11:04:35Z,1215,469,2005-08-05T13:48:35Z,2,2020-02-15T06:59:44Z +11186,2005-08-02T11:12:08Z,733,353,2005-08-03T10:46:08Z,1,2020-02-15T06:59:44Z +11187,2005-08-02T11:16:19Z,3626,410,2005-08-11T06:11:19Z,1,2020-02-15T06:59:44Z +11188,2005-08-02T11:17:11Z,1372,485,2005-08-08T16:46:11Z,2,2020-02-15T06:59:44Z +11189,2005-08-02T11:17:23Z,729,565,2005-08-09T16:30:23Z,2,2020-02-15T06:59:44Z +11190,2005-08-02T11:21:34Z,922,254,2005-08-05T05:23:34Z,1,2020-02-15T06:59:44Z +11191,2005-08-02T11:24:07Z,1097,571,2005-08-10T10:39:07Z,1,2020-02-15T06:59:44Z +11192,2005-08-02T11:29:41Z,1998,349,2005-08-07T06:01:41Z,2,2020-02-15T06:59:44Z +11193,2005-08-02T11:31:33Z,2246,292,2005-08-04T14:00:33Z,1,2020-02-15T06:59:44Z +11194,2005-08-02T11:35:53Z,2732,135,2005-08-10T11:28:53Z,1,2020-02-15T06:59:44Z +11195,2005-08-02T11:42:23Z,4359,177,2005-08-03T08:29:23Z,1,2020-02-15T06:59:44Z +11196,2005-08-02T11:42:40Z,2648,126,2005-08-10T11:58:40Z,2,2020-02-15T06:59:44Z +11197,2005-08-02T11:45:07Z,3041,122,2005-08-03T09:07:07Z,1,2020-02-15T06:59:44Z +11198,2005-08-02T11:45:15Z,2908,540,2005-08-10T11:42:15Z,2,2020-02-15T06:59:44Z +11199,2005-08-02T11:47:40Z,3926,578,2005-08-10T06:52:40Z,2,2020-02-15T06:59:44Z +11200,2005-08-02T11:48:36Z,2730,98,2005-08-07T08:35:36Z,2,2020-02-15T06:59:44Z +11201,2005-08-02T11:49:16Z,1501,195,2005-08-11T08:39:16Z,1,2020-02-15T06:59:44Z +11202,2005-08-02T11:51:57Z,3625,231,2005-08-08T09:41:57Z,1,2020-02-15T06:59:44Z +11203,2005-08-02T11:52:41Z,4520,92,2005-08-10T15:52:41Z,2,2020-02-15T06:59:44Z +11204,2005-08-02T11:56:31Z,3578,247,2005-08-06T14:16:31Z,2,2020-02-15T06:59:44Z +11205,2005-08-02T11:56:54Z,4321,552,2005-08-05T08:24:54Z,1,2020-02-15T06:59:44Z +11206,2005-08-02T11:58:03Z,4131,72,2005-08-07T12:36:03Z,2,2020-02-15T06:59:44Z +11207,2005-08-02T12:01:30Z,4470,481,2005-08-05T07:56:30Z,1,2020-02-15T06:59:44Z +11208,2005-08-02T12:02:37Z,4566,320,2005-08-05T10:56:37Z,1,2020-02-15T06:59:44Z +11209,2005-08-02T12:09:45Z,3219,24,2005-08-07T08:52:45Z,1,2020-02-15T06:59:44Z +11210,2005-08-02T12:15:54Z,422,202,2005-08-04T16:18:54Z,2,2020-02-15T06:59:44Z +11211,2005-08-02T12:16:48Z,1722,245,2005-08-03T10:40:48Z,1,2020-02-15T06:59:44Z +11212,2005-08-02T12:18:29Z,4007,343,2005-08-05T16:05:29Z,2,2020-02-15T06:59:44Z +11213,2005-08-02T12:18:35Z,1007,584,2005-08-05T08:44:35Z,2,2020-02-15T06:59:44Z +11214,2005-08-02T12:19:50Z,2722,407,2005-08-11T06:38:50Z,1,2020-02-15T06:59:44Z +11215,2005-08-02T12:20:42Z,379,197,2005-08-06T14:01:42Z,1,2020-02-15T06:59:44Z +11216,2005-08-02T12:23:43Z,1109,473,2005-08-03T13:19:43Z,1,2020-02-15T06:59:44Z +11217,2005-08-02T12:26:31Z,1201,417,2005-08-09T09:53:31Z,2,2020-02-15T06:59:44Z +11218,2005-08-02T12:29:12Z,1126,500,2005-08-10T16:13:12Z,2,2020-02-15T06:59:44Z +11219,2005-08-02T12:30:20Z,2889,461,2005-08-08T13:42:20Z,2,2020-02-15T06:59:44Z +11220,2005-08-02T12:31:41Z,3777,84,2005-08-05T08:23:41Z,2,2020-02-15T06:59:44Z +11221,2005-08-02T12:32:12Z,1689,146,2005-08-03T17:13:12Z,1,2020-02-15T06:59:44Z +11222,2005-08-02T12:32:28Z,1780,407,2005-08-11T18:15:28Z,2,2020-02-15T06:59:44Z +11223,2005-08-02T12:34:27Z,1994,597,2005-08-07T14:21:27Z,1,2020-02-15T06:59:44Z +11224,2005-08-02T12:40:38Z,3938,181,2005-08-04T10:02:38Z,2,2020-02-15T06:59:44Z +11225,2005-08-02T12:43:27Z,3721,159,2005-08-04T18:41:27Z,2,2020-02-15T06:59:44Z +11226,2005-08-02T12:47:30Z,79,282,2005-08-06T11:24:30Z,1,2020-02-15T06:59:44Z +11227,2005-08-02T12:48:05Z,1101,65,2005-08-11T14:08:05Z,1,2020-02-15T06:59:44Z +11228,2005-08-02T12:55:23Z,2561,144,2005-08-08T12:31:23Z,1,2020-02-15T06:59:44Z +11229,2005-08-02T12:56:37Z,941,332,2005-08-11T11:13:37Z,2,2020-02-15T06:59:44Z +11230,2005-08-02T12:59:08Z,1463,257,2005-08-04T13:42:08Z,1,2020-02-15T06:59:44Z +11231,2005-08-02T13:02:11Z,1100,90,2005-08-07T10:05:11Z,2,2020-02-15T06:59:44Z +11232,2005-08-02T13:04:12Z,971,8,2005-08-10T15:39:12Z,1,2020-02-15T06:59:44Z +11233,2005-08-02T13:06:11Z,2221,266,2005-08-08T15:02:11Z,1,2020-02-15T06:59:44Z +11234,2005-08-02T13:12:17Z,1020,27,2005-08-05T17:37:17Z,1,2020-02-15T06:59:44Z +11235,2005-08-02T13:13:21Z,2501,127,2005-08-03T07:17:21Z,1,2020-02-15T06:59:44Z +11236,2005-08-02T13:17:21Z,145,420,2005-08-09T09:53:21Z,2,2020-02-15T06:59:44Z +11237,2005-08-02T13:24:01Z,2668,426,2005-08-05T11:41:01Z,2,2020-02-15T06:59:44Z +11238,2005-08-02T13:25:50Z,2705,506,2005-08-08T19:12:50Z,2,2020-02-15T06:59:44Z +11239,2005-08-02T13:27:11Z,189,111,2005-08-03T14:36:11Z,1,2020-02-15T06:59:44Z +11240,2005-08-02T13:28:30Z,2170,597,2005-08-05T11:40:30Z,1,2020-02-15T06:59:44Z +11241,2005-08-02T13:29:24Z,3657,543,2005-08-11T11:36:24Z,2,2020-02-15T06:59:44Z +11242,2005-08-02T13:32:00Z,1041,434,2005-08-10T19:24:00Z,2,2020-02-15T06:59:44Z +11243,2005-08-02T13:32:48Z,2517,361,2005-08-11T18:55:48Z,1,2020-02-15T06:59:44Z +11244,2005-08-02T13:33:24Z,3423,142,2005-08-10T10:18:24Z,2,2020-02-15T06:59:44Z +11245,2005-08-02T13:33:50Z,2609,92,2005-08-04T10:20:50Z,2,2020-02-15T06:59:44Z +11246,2005-08-02T13:33:56Z,3577,550,2005-08-03T08:52:56Z,2,2020-02-15T06:59:44Z +11247,2005-08-02T13:34:08Z,1661,441,2005-08-06T16:23:08Z,2,2020-02-15T06:59:44Z +11248,2005-08-02T13:35:34Z,4139,312,2005-08-03T10:37:34Z,1,2020-02-15T06:59:44Z +11249,2005-08-02T13:35:40Z,3394,157,2005-08-07T11:22:40Z,1,2020-02-15T06:59:44Z +11250,2005-08-02T13:35:42Z,2223,279,2005-08-10T12:32:42Z,2,2020-02-15T06:59:44Z +11251,2005-08-02T13:40:49Z,2181,532,2005-08-09T14:16:49Z,2,2020-02-15T06:59:44Z +11252,2005-08-02T13:42:13Z,2410,337,2005-08-06T19:04:13Z,2,2020-02-15T06:59:44Z +11253,2005-08-02T13:42:44Z,2898,303,2005-08-09T17:06:44Z,2,2020-02-15T06:59:44Z +11254,2005-08-02T13:43:49Z,56,315,2005-08-08T13:16:49Z,1,2020-02-15T06:59:44Z +11255,2005-08-02T13:44:30Z,3393,569,2005-08-03T12:00:30Z,1,2020-02-15T06:59:44Z +11256,2005-08-02T13:44:53Z,2060,2,2005-08-04T16:39:53Z,1,2020-02-15T06:59:44Z +11257,2005-08-02T13:45:05Z,105,468,2005-08-11T16:37:05Z,1,2020-02-15T06:59:44Z +11258,2005-08-02T13:45:39Z,1576,242,2005-08-06T07:57:39Z,1,2020-02-15T06:59:44Z +11259,2005-08-02T13:46:30Z,896,330,2005-08-07T14:03:30Z,1,2020-02-15T06:59:44Z +11260,2005-08-02T13:52:19Z,4015,207,2005-08-06T08:13:19Z,2,2020-02-15T06:59:44Z +11261,2005-08-02T13:54:26Z,31,204,2005-08-10T19:04:26Z,2,2020-02-15T06:59:44Z +11262,2005-08-02T13:58:55Z,71,348,2005-08-05T18:09:55Z,2,2020-02-15T06:59:44Z +11263,2005-08-02T14:02:19Z,1189,421,2005-08-07T14:03:19Z,2,2020-02-15T06:59:44Z +11264,2005-08-02T14:05:18Z,3420,360,2005-08-10T08:46:18Z,2,2020-02-15T06:59:44Z +11265,2005-08-02T14:05:42Z,3870,531,2005-08-11T15:27:42Z,2,2020-02-15T06:59:44Z +11266,2005-08-02T14:07:35Z,3972,99,2005-08-04T13:31:35Z,1,2020-02-15T06:59:44Z +11267,2005-08-02T14:09:08Z,2045,244,2005-08-10T12:33:08Z,1,2020-02-15T06:59:44Z +11268,2005-08-02T14:10:39Z,3275,558,2005-08-04T14:35:39Z,1,2020-02-15T06:59:44Z +11269,2005-08-02T14:11:41Z,2398,297,2005-08-08T18:53:41Z,1,2020-02-15T06:59:44Z +11270,2005-08-02T14:18:07Z,1882,418,2005-08-03T08:20:07Z,1,2020-02-15T06:59:44Z +11271,2005-08-02T14:18:22Z,4323,93,2005-08-07T09:35:22Z,2,2020-02-15T06:59:44Z +11272,2005-08-02T14:20:27Z,4111,158,2005-08-07T12:24:27Z,2,2020-02-15T06:59:44Z +11273,2005-08-02T14:20:55Z,3383,541,2005-08-07T12:57:55Z,1,2020-02-15T06:59:44Z +11274,2005-08-02T14:24:08Z,1253,70,2005-08-11T14:56:08Z,1,2020-02-15T06:59:44Z +11275,2005-08-02T14:25:58Z,2838,464,2005-08-07T11:20:58Z,1,2020-02-15T06:59:44Z +11276,2005-08-02T14:28:46Z,4226,190,2005-08-04T14:00:46Z,1,2020-02-15T06:59:44Z +11277,2005-08-02T14:28:50Z,2050,68,2005-08-04T13:50:50Z,1,2020-02-15T06:59:44Z +11278,2005-08-02T14:29:43Z,961,143,2005-08-07T10:13:43Z,1,2020-02-15T06:59:44Z +11279,2005-08-02T14:30:03Z,151,125,2005-08-10T09:49:03Z,2,2020-02-15T06:59:44Z +11280,2005-08-02T14:34:33Z,1846,134,2005-08-08T15:40:33Z,2,2020-02-15T06:59:44Z +11281,2005-08-02T14:35:01Z,2210,137,2005-08-07T17:28:01Z,1,2020-02-15T06:59:44Z +11282,2005-08-02T14:35:03Z,1824,273,2005-08-03T16:02:03Z,2,2020-02-15T06:59:44Z +11283,2005-08-02T14:39:46Z,312,134,2005-08-05T10:19:46Z,2,2020-02-15T06:59:44Z +11284,2005-08-02T14:42:45Z,172,8,2005-08-04T11:55:45Z,2,2020-02-15T06:59:44Z +11285,2005-08-02T14:44:02Z,3849,585,2005-08-11T16:45:02Z,2,2020-02-15T06:59:44Z +11286,2005-08-02T14:44:22Z,1319,207,2005-08-10T09:01:22Z,2,2020-02-15T06:59:44Z +11287,2005-08-02T14:49:51Z,927,55,2005-08-09T09:19:51Z,2,2020-02-15T06:59:44Z +11288,2005-08-02T14:54:08Z,1478,298,2005-08-11T12:22:08Z,1,2020-02-15T06:59:44Z +11289,2005-08-02T14:55:00Z,2869,10,2005-08-11T13:57:00Z,1,2020-02-15T06:59:44Z +11290,2005-08-02T14:57:44Z,425,582,2005-08-09T19:36:44Z,2,2020-02-15T06:59:44Z +11291,2005-08-02T14:57:58Z,491,417,2005-08-11T09:04:58Z,2,2020-02-15T06:59:44Z +11292,2005-08-02T14:58:41Z,210,13,2005-08-06T14:38:41Z,2,2020-02-15T06:59:44Z +11293,2005-08-02T15:00:43Z,1514,475,2005-08-11T17:49:43Z,1,2020-02-15T06:59:44Z +11294,2005-08-02T15:08:27Z,855,411,2005-08-03T18:28:27Z,1,2020-02-15T06:59:44Z +11295,2005-08-02T15:10:06Z,423,67,2005-08-10T09:52:06Z,1,2020-02-15T06:59:44Z +11296,2005-08-02T15:15:27Z,247,154,2005-08-11T16:12:27Z,1,2020-02-15T06:59:44Z +11297,2005-08-02T15:22:47Z,2531,62,2005-08-11T18:45:47Z,1,2020-02-15T06:59:44Z +11298,2005-08-02T15:32:32Z,1663,35,2005-08-06T20:22:32Z,1,2020-02-15T06:59:44Z +11299,2005-08-02T15:36:52Z,3232,1,2005-08-10T16:40:52Z,2,2020-02-15T06:59:44Z +11300,2005-08-02T15:37:42Z,3032,552,2005-08-11T14:25:42Z,1,2020-02-15T06:59:44Z +11301,2005-08-02T15:37:59Z,676,502,2005-08-04T10:57:59Z,2,2020-02-15T06:59:44Z +11302,2005-08-02T15:38:03Z,1918,51,2005-08-09T10:33:03Z,2,2020-02-15T06:59:44Z +11303,2005-08-02T15:39:18Z,1817,417,2005-08-05T10:59:18Z,1,2020-02-15T06:59:44Z +11304,2005-08-02T15:40:10Z,2592,413,2005-08-06T16:12:10Z,2,2020-02-15T06:59:44Z +11305,2005-08-02T15:44:55Z,1690,341,2005-08-08T16:42:55Z,2,2020-02-15T06:59:44Z +11306,2005-08-02T15:45:10Z,13,247,2005-08-03T21:14:10Z,2,2020-02-15T06:59:44Z +11307,2005-08-02T15:48:08Z,1490,15,2005-08-06T20:33:08Z,2,2020-02-15T06:59:44Z +11308,2005-08-02T15:50:44Z,699,16,2005-08-05T11:38:44Z,2,2020-02-15T06:59:44Z +11309,2005-08-02T15:50:55Z,607,275,2005-08-09T18:28:55Z,1,2020-02-15T06:59:44Z +11310,2005-08-02T15:51:58Z,3601,415,2005-08-07T12:34:58Z,1,2020-02-15T06:59:44Z +11311,2005-08-02T15:53:48Z,204,197,2005-08-03T16:32:48Z,1,2020-02-15T06:59:44Z +11312,2005-08-02T15:56:51Z,1093,190,2005-08-07T20:56:51Z,2,2020-02-15T06:59:44Z +11313,2005-08-02T16:02:51Z,2689,419,2005-08-03T14:54:51Z,1,2020-02-15T06:59:44Z +11314,2005-08-02T16:04:08Z,2790,26,2005-08-04T18:47:08Z,1,2020-02-15T06:59:44Z +11315,2005-08-02T16:05:17Z,1116,13,2005-08-05T16:33:17Z,1,2020-02-15T06:59:44Z +11316,2005-08-02T16:07:49Z,521,108,2005-08-10T13:22:49Z,1,2020-02-15T06:59:44Z +11317,2005-08-02T16:08:52Z,1889,502,2005-08-08T21:12:52Z,1,2020-02-15T06:59:44Z +11318,2005-08-02T16:09:11Z,2386,532,2005-08-07T11:28:11Z,2,2020-02-15T06:59:44Z +11319,2005-08-02T16:10:09Z,4069,178,2005-08-09T11:21:09Z,2,2020-02-15T06:59:44Z +11320,2005-08-02T16:13:28Z,3362,550,2005-08-05T21:23:28Z,1,2020-02-15T06:59:44Z +11321,2005-08-02T16:15:07Z,205,266,2005-08-04T20:35:07Z,2,2020-02-15T06:59:44Z +11322,2005-08-02T16:23:17Z,761,418,2005-08-09T19:55:17Z,2,2020-02-15T06:59:44Z +11323,2005-08-02T16:29:57Z,3784,419,2005-08-06T16:01:57Z,1,2020-02-15T06:59:44Z +11324,2005-08-02T16:31:17Z,2900,540,2005-08-08T15:38:17Z,2,2020-02-15T06:59:44Z +11325,2005-08-02T16:33:11Z,4514,422,2005-08-08T13:42:11Z,1,2020-02-15T06:59:44Z +11326,2005-08-02T16:34:29Z,1762,530,2005-08-03T17:40:29Z,2,2020-02-15T06:59:44Z +11327,2005-08-02T16:40:47Z,773,361,2005-08-03T22:13:47Z,1,2020-02-15T06:59:44Z +11328,2005-08-02T16:42:38Z,2031,219,2005-08-04T21:02:38Z,1,2020-02-15T06:59:44Z +11329,2005-08-02T16:42:52Z,2677,399,2005-08-08T16:45:52Z,1,2020-02-15T06:59:44Z +11330,2005-08-02T16:45:33Z,4326,75,2005-08-04T15:15:33Z,2,2020-02-15T06:59:44Z +11331,2005-08-02T16:49:01Z,3789,568,2005-08-09T19:15:01Z,1,2020-02-15T06:59:44Z +11332,2005-08-02T16:52:57Z,2381,467,2005-08-04T14:13:57Z,1,2020-02-15T06:59:44Z +11333,2005-08-02T16:53:00Z,3335,225,2005-08-07T20:49:00Z,2,2020-02-15T06:59:44Z +11334,2005-08-02T16:53:20Z,1504,560,2005-08-11T20:47:20Z,1,2020-02-15T06:59:44Z +11335,2005-08-02T16:57:37Z,2968,157,2005-08-09T19:43:37Z,1,2020-02-15T06:59:44Z +11336,2005-08-02T16:58:56Z,1949,473,2005-08-06T16:56:56Z,1,2020-02-15T06:59:44Z +11337,2005-08-02T16:59:09Z,3428,366,2005-08-10T20:41:09Z,2,2020-02-15T06:59:44Z +11338,2005-08-02T17:00:12Z,3689,26,2005-08-03T18:54:12Z,1,2020-02-15T06:59:44Z +11339,2005-08-02T17:02:06Z,705,263,2005-08-08T21:12:06Z,1,2020-02-15T06:59:44Z +11340,2005-08-02T17:05:43Z,1403,366,2005-08-09T13:25:43Z,1,2020-02-15T06:59:44Z +11341,2005-08-02T17:09:24Z,3586,15,2005-08-09T19:48:24Z,2,2020-02-15T06:59:44Z +11342,2005-08-02T17:11:35Z,4251,179,2005-08-07T15:04:35Z,1,2020-02-15T06:59:44Z +11343,2005-08-02T17:12:30Z,564,466,2005-08-09T12:08:30Z,1,2020-02-15T06:59:44Z +11344,2005-08-02T17:13:26Z,365,38,2005-08-07T16:44:26Z,1,2020-02-15T06:59:44Z +11345,2005-08-02T17:14:19Z,1895,405,2005-08-11T14:02:19Z,2,2020-02-15T06:59:44Z +11346,2005-08-02T17:15:38Z,584,100,2005-08-04T13:31:38Z,2,2020-02-15T06:59:44Z +11347,2005-08-02T17:18:07Z,195,217,2005-08-05T12:30:07Z,1,2020-02-15T06:59:44Z +11348,2005-08-02T17:18:38Z,1704,389,2005-08-06T16:11:38Z,2,2020-02-15T06:59:44Z +11349,2005-08-02T17:21:49Z,1871,73,2005-08-06T18:40:49Z,1,2020-02-15T06:59:44Z +11350,2005-08-02T17:22:59Z,1265,598,2005-08-09T19:56:59Z,2,2020-02-15T06:59:44Z +11351,2005-08-02T17:28:07Z,242,198,2005-08-09T21:55:07Z,1,2020-02-15T06:59:44Z +11352,2005-08-02T17:29:39Z,2760,546,2005-08-10T15:31:39Z,1,2020-02-15T06:59:44Z +11353,2005-08-02T17:34:45Z,1729,444,2005-08-09T16:01:45Z,1,2020-02-15T06:59:44Z +11354,2005-08-02T17:35:10Z,1887,569,2005-08-09T12:07:10Z,2,2020-02-15T06:59:44Z +11355,2005-08-02T17:37:43Z,2673,185,2005-08-05T19:59:43Z,1,2020-02-15T06:59:44Z +11356,2005-08-02T17:42:40Z,303,200,2005-08-11T23:29:40Z,1,2020-02-15T06:59:44Z +11357,2005-08-02T17:42:49Z,2644,148,2005-08-11T18:14:49Z,1,2020-02-15T06:59:44Z +11358,2005-08-02T17:45:02Z,2361,56,2005-08-11T18:16:02Z,1,2020-02-15T06:59:44Z +11359,2005-08-02T17:45:55Z,1648,466,2005-08-10T20:53:55Z,2,2020-02-15T06:59:44Z +11360,2005-08-02T17:46:04Z,1750,66,2005-08-04T21:02:04Z,2,2020-02-15T06:59:44Z +11361,2005-08-02T17:46:34Z,1124,547,2005-08-03T15:21:34Z,1,2020-02-15T06:59:44Z +11362,2005-08-02T17:47:25Z,2628,331,2005-08-07T20:14:25Z,1,2020-02-15T06:59:44Z +11363,2005-08-02T17:48:39Z,3190,274,2005-08-05T17:20:39Z,1,2020-02-15T06:59:44Z +11364,2005-08-02T17:53:36Z,4515,44,2005-08-03T14:16:36Z,1,2020-02-15T06:59:44Z +11365,2005-08-02T18:00:09Z,1151,508,2005-08-04T13:40:09Z,2,2020-02-15T06:59:44Z +11366,2005-08-02T18:01:25Z,3583,280,2005-08-11T15:02:25Z,1,2020-02-15T06:59:44Z +11367,2005-08-02T18:01:38Z,1440,1,2005-08-04T13:19:38Z,1,2020-02-15T06:59:44Z +11368,2005-08-02T18:03:05Z,866,153,2005-08-07T20:40:05Z,1,2020-02-15T06:59:44Z +11369,2005-08-02T18:04:41Z,2480,480,2005-08-09T18:41:41Z,1,2020-02-15T06:59:44Z +11370,2005-08-02T18:06:01Z,3077,146,2005-08-04T15:10:01Z,1,2020-02-15T06:59:44Z +11371,2005-08-02T18:07:36Z,324,561,2005-08-06T17:52:36Z,1,2020-02-15T06:59:44Z +11372,2005-08-02T18:10:50Z,796,327,2005-08-07T17:58:50Z,1,2020-02-15T06:59:44Z +11373,2005-08-02T18:14:12Z,181,267,2005-08-06T23:37:12Z,1,2020-02-15T06:59:44Z +11374,2005-08-02T18:14:54Z,2805,424,2005-08-04T18:22:54Z,1,2020-02-15T06:59:44Z +11375,2005-08-02T18:14:56Z,1064,346,2005-08-08T23:29:56Z,1,2020-02-15T06:59:44Z +11376,2005-08-02T18:16:00Z,2530,177,2005-08-11T23:38:00Z,2,2020-02-15T06:59:44Z +11377,2005-08-02T18:16:47Z,3334,119,2005-08-08T13:46:47Z,1,2020-02-15T06:59:44Z +11378,2005-08-02T18:16:52Z,3824,188,2005-08-03T14:25:52Z,1,2020-02-15T06:59:44Z +11379,2005-08-02T18:16:55Z,251,61,2005-08-07T18:12:55Z,1,2020-02-15T06:59:44Z +11380,2005-08-02T18:17:32Z,1046,551,2005-08-03T19:26:32Z,2,2020-02-15T06:59:44Z +11381,2005-08-02T18:19:29Z,993,451,2005-08-08T20:39:29Z,2,2020-02-15T06:59:44Z +11382,2005-08-02T18:20:52Z,3848,407,2005-08-07T17:06:52Z,1,2020-02-15T06:59:44Z +11383,2005-08-02T18:22:05Z,257,445,2005-08-11T17:18:05Z,1,2020-02-15T06:59:44Z +11384,2005-08-02T18:23:01Z,2840,225,2005-08-05T17:59:01Z,1,2020-02-15T06:59:44Z +11385,2005-08-02T18:23:11Z,2478,192,2005-08-06T12:37:11Z,1,2020-02-15T06:59:44Z +11386,2005-08-02T18:24:03Z,519,183,2005-08-06T21:22:03Z,1,2020-02-15T06:59:44Z +11387,2005-08-02T18:32:38Z,2491,481,2005-08-07T19:08:38Z,2,2020-02-15T06:59:44Z +11388,2005-08-02T18:35:55Z,477,369,2005-08-09T21:56:55Z,1,2020-02-15T06:59:44Z +11389,2005-08-02T18:39:12Z,3267,270,2005-08-03T23:23:12Z,2,2020-02-15T06:59:44Z +11390,2005-08-02T18:39:16Z,3135,294,2005-08-04T21:43:16Z,1,2020-02-15T06:59:44Z +11391,2005-08-02T18:40:12Z,2039,403,2005-08-10T15:55:12Z,1,2020-02-15T06:59:44Z +11392,2005-08-02T18:41:11Z,261,146,2005-08-11T21:41:11Z,1,2020-02-15T06:59:44Z +11393,2005-08-02T18:44:29Z,1033,501,2005-08-11T23:58:29Z,1,2020-02-15T06:59:44Z +11394,2005-08-02T18:44:45Z,2087,257,2005-08-06T22:51:45Z,2,2020-02-15T06:59:44Z +11395,2005-08-02T18:47:44Z,4234,225,2005-08-10T17:07:44Z,2,2020-02-15T06:59:44Z +11396,2005-08-02T18:48:29Z,1155,59,2005-08-04T16:05:29Z,2,2020-02-15T06:59:44Z +11397,2005-08-02T18:53:14Z,2566,470,2005-08-09T18:09:14Z,1,2020-02-15T06:59:44Z +11398,2005-08-02T18:55:15Z,3952,6,2005-08-10T19:50:15Z,2,2020-02-15T06:59:44Z +11399,2005-08-02T18:56:28Z,2094,565,2005-08-11T23:19:28Z,1,2020-02-15T06:59:44Z +11400,2005-08-02T19:00:52Z,3150,9,2005-08-09T19:45:52Z,2,2020-02-15T06:59:44Z +11401,2005-08-02T19:05:06Z,1799,544,2005-08-09T22:34:06Z,1,2020-02-15T06:59:44Z +11402,2005-08-02T19:07:21Z,3291,561,2005-08-07T20:59:21Z,1,2020-02-15T06:59:44Z +11403,2005-08-02T19:10:21Z,4072,587,2005-08-04T00:44:21Z,2,2020-02-15T06:59:44Z +11404,2005-08-02T19:12:40Z,3285,60,2005-08-11T22:38:40Z,2,2020-02-15T06:59:44Z +11405,2005-08-02T19:13:39Z,418,10,2005-08-07T19:19:39Z,2,2020-02-15T06:59:44Z +11406,2005-08-02T19:16:10Z,2502,525,2005-08-04T20:51:10Z,2,2020-02-15T06:59:44Z +11407,2005-08-02T19:18:43Z,3437,513,2005-08-08T16:15:43Z,2,2020-02-15T06:59:44Z +11408,2005-08-02T19:25:13Z,1779,83,2005-08-06T17:12:13Z,1,2020-02-15T06:59:44Z +11409,2005-08-02T19:26:51Z,3691,418,2005-08-07T19:55:51Z,1,2020-02-15T06:59:44Z +11410,2005-08-02T19:29:01Z,692,592,2005-08-11T16:50:01Z,1,2020-02-15T06:59:44Z +11411,2005-08-02T19:29:47Z,1497,141,2005-08-09T16:27:47Z,2,2020-02-15T06:59:44Z +11412,2005-08-02T19:32:51Z,2271,141,2005-08-11T22:16:51Z,1,2020-02-15T06:59:44Z +11413,2005-08-02T19:35:19Z,1115,297,2005-08-05T21:33:19Z,2,2020-02-15T06:59:44Z +11414,2005-08-02T19:43:07Z,1772,353,2005-08-07T15:22:07Z,2,2020-02-15T06:59:44Z +11415,2005-08-02T19:43:38Z,2197,572,2005-08-10T15:13:38Z,1,2020-02-15T06:59:44Z +11416,2005-08-02T19:44:04Z,1848,58,2005-08-11T15:30:04Z,1,2020-02-15T06:59:44Z +11417,2005-08-02T19:44:46Z,3083,437,2005-08-11T21:43:46Z,2,2020-02-15T06:59:44Z +11418,2005-08-02T19:45:33Z,4490,91,2005-08-06T17:40:33Z,1,2020-02-15T06:59:44Z +11419,2005-08-02T19:46:38Z,514,444,2005-08-11T14:49:38Z,1,2020-02-15T06:59:44Z +11420,2005-08-02T19:47:56Z,3928,158,2005-08-05T21:48:56Z,2,2020-02-15T06:59:44Z +11421,2005-08-02T19:51:53Z,3361,473,2005-08-12T00:50:53Z,2,2020-02-15T06:59:44Z +11422,2005-08-02T19:52:08Z,342,72,2005-08-11T18:40:08Z,2,2020-02-15T06:59:44Z +11423,2005-08-02T19:57:13Z,3431,241,2005-08-06T00:54:13Z,2,2020-02-15T06:59:44Z +11424,2005-08-02T19:57:42Z,1030,84,2005-08-10T16:57:42Z,2,2020-02-15T06:59:44Z +11425,2005-08-02T19:58:48Z,989,419,2005-08-03T19:30:48Z,2,2020-02-15T06:59:44Z +11426,2005-08-02T20:00:09Z,130,572,2005-08-09T01:30:09Z,2,2020-02-15T06:59:44Z +11427,2005-08-02T20:02:39Z,3287,403,2005-08-04T22:26:39Z,2,2020-02-15T06:59:44Z +11428,2005-08-02T20:03:10Z,722,326,2005-08-04T01:55:10Z,1,2020-02-15T06:59:44Z +11429,2005-08-02T20:03:52Z,1098,348,2005-08-10T16:38:52Z,2,2020-02-15T06:59:44Z +11430,2005-08-02T20:04:36Z,2258,140,2005-08-08T19:43:36Z,1,2020-02-15T06:59:44Z +11431,2005-08-02T20:05:16Z,1409,271,2005-08-04T00:05:16Z,2,2020-02-15T06:59:44Z +11432,2005-08-02T20:10:01Z,959,540,2005-08-07T01:28:01Z,1,2020-02-15T06:59:44Z +11433,2005-08-02T20:13:10Z,1,518,2005-08-11T21:35:10Z,1,2020-02-15T06:59:44Z +11434,2005-08-02T20:13:14Z,3154,391,2005-08-05T15:01:14Z,1,2020-02-15T06:59:44Z +11435,2005-08-02T20:14:23Z,1625,502,2005-08-05T20:40:23Z,1,2020-02-15T06:59:44Z +11436,2005-08-02T20:16:06Z,3834,106,2005-08-05T20:40:06Z,2,2020-02-15T06:59:44Z +11437,2005-08-02T20:20:06Z,2679,225,2005-08-05T22:17:06Z,2,2020-02-15T06:59:44Z +11438,2005-08-02T20:21:08Z,1040,372,2005-08-10T22:12:08Z,1,2020-02-15T06:59:44Z +11439,2005-08-02T20:22:45Z,2897,18,2005-08-04T18:30:45Z,1,2020-02-15T06:59:44Z +11440,2005-08-02T20:24:02Z,2727,306,2005-08-07T16:42:02Z,2,2020-02-15T06:59:44Z +11441,2005-08-02T20:25:41Z,1027,389,2005-08-05T00:05:41Z,2,2020-02-15T06:59:44Z +11442,2005-08-02T20:26:19Z,2598,208,2005-08-07T00:33:19Z,2,2020-02-15T06:59:44Z +11443,2005-08-02T20:29:30Z,1291,581,2005-08-07T01:08:30Z,2,2020-02-15T06:59:44Z +11444,2005-08-02T20:32:55Z,1419,28,2005-08-08T23:21:55Z,2,2020-02-15T06:59:44Z +11445,2005-08-02T20:33:35Z,3340,108,2005-08-08T16:02:35Z,2,2020-02-15T06:59:44Z +11446,2005-08-02T20:33:37Z,748,342,2005-08-03T18:22:37Z,1,2020-02-15T06:59:44Z +11447,2005-08-02T20:36:25Z,3868,508,2005-08-07T18:52:25Z,1,2020-02-15T06:59:44Z +11448,2005-08-02T20:44:33Z,1185,496,2005-08-05T22:58:33Z,2,2020-02-15T06:59:44Z +11449,2005-08-02T20:44:43Z,3279,443,2005-08-07T23:47:43Z,2,2020-02-15T06:59:44Z +11450,2005-08-02T20:45:54Z,2009,214,2005-08-08T17:17:54Z,2,2020-02-15T06:59:44Z +11451,2005-08-02T20:45:56Z,776,515,2005-08-06T21:42:56Z,2,2020-02-15T06:59:44Z +11452,2005-08-02T20:59:52Z,1245,35,2005-08-12T01:16:52Z,1,2020-02-15T06:59:44Z +11453,2005-08-02T21:00:05Z,4578,84,2005-08-08T22:03:05Z,2,2020-02-15T06:59:44Z +11454,2005-08-02T21:04:39Z,2901,199,2005-08-05T19:03:39Z,1,2020-02-15T06:59:44Z +11455,2005-08-02T21:07:06Z,2000,498,2005-08-12T01:21:06Z,1,2020-02-15T06:59:44Z +11456,2005-08-02T21:14:04Z,3638,322,2005-08-07T19:49:04Z,2,2020-02-15T06:59:44Z +11457,2005-08-02T21:14:16Z,1642,379,2005-08-10T02:39:16Z,2,2020-02-15T06:59:44Z +11458,2005-08-02T21:24:02Z,3514,575,2005-08-04T01:32:02Z,2,2020-02-15T06:59:44Z +11459,2005-08-02T21:25:25Z,3730,392,2005-08-04T19:57:25Z,2,2020-02-15T06:59:44Z +11460,2005-08-02T21:28:03Z,4113,403,2005-08-08T18:24:03Z,1,2020-02-15T06:59:44Z +11461,2005-08-02T21:35:00Z,4343,65,2005-08-05T01:34:00Z,1,2020-02-15T06:59:44Z +11462,2005-08-02T21:36:46Z,167,268,2005-08-10T01:48:46Z,1,2020-02-15T06:59:44Z +11463,2005-08-02T21:37:36Z,1944,138,2005-08-08T03:11:36Z,2,2020-02-15T06:59:44Z +11464,2005-08-02T21:42:07Z,538,577,2005-08-03T21:44:07Z,2,2020-02-15T06:59:44Z +11465,2005-08-02T21:43:52Z,2190,447,2005-08-10T22:24:52Z,1,2020-02-15T06:59:44Z +11466,2005-08-02T21:46:46Z,3363,556,2005-08-06T01:42:46Z,1,2020-02-15T06:59:44Z +11467,2005-08-02T21:47:07Z,246,117,2005-08-09T00:50:07Z,1,2020-02-15T06:59:44Z +11468,2005-08-02T21:47:26Z,3168,413,2005-08-05T02:30:26Z,2,2020-02-15T06:59:44Z +11469,2005-08-02T21:48:09Z,230,77,2005-08-06T18:37:09Z,1,2020-02-15T06:59:44Z +11470,2005-08-02T21:48:28Z,2379,346,2005-08-05T23:58:28Z,2,2020-02-15T06:59:44Z +11471,2005-08-02T21:49:03Z,3378,355,2005-08-08T00:17:03Z,1,2020-02-15T06:59:44Z +11472,2005-08-02T21:49:06Z,1829,410,2005-08-11T20:17:06Z,1,2020-02-15T06:59:44Z +11473,2005-08-02T21:52:03Z,620,536,2005-08-09T02:01:03Z,1,2020-02-15T06:59:44Z +11474,2005-08-02T21:53:08Z,574,214,2005-08-05T22:36:08Z,1,2020-02-15T06:59:44Z +11475,2005-08-02T21:55:09Z,3687,194,2005-08-09T20:28:09Z,2,2020-02-15T06:59:44Z +11476,2005-08-02T22:03:47Z,724,144,2005-08-09T02:19:47Z,1,2020-02-15T06:59:44Z +11477,2005-08-02T22:09:01Z,1671,47,2005-08-07T03:46:01Z,2,2020-02-15T06:59:44Z +11478,2005-08-02T22:09:05Z,3932,197,2005-08-04T18:02:05Z,1,2020-02-15T06:59:44Z +11479,2005-08-02T22:18:13Z,4077,237,2005-08-12T00:43:13Z,1,2020-02-15T06:59:44Z +11480,2005-08-02T22:18:24Z,4161,14,2005-08-04T21:22:24Z,2,2020-02-15T06:59:44Z +11481,2005-08-02T22:18:41Z,4028,234,2005-08-09T23:43:41Z,2,2020-02-15T06:59:44Z +11482,2005-08-02T22:24:31Z,1400,134,2005-08-04T01:48:31Z,1,2020-02-15T06:59:44Z +11483,2005-08-02T22:28:22Z,1586,45,2005-08-11T18:06:22Z,1,2020-02-15T06:59:44Z +11484,2005-08-02T22:28:23Z,330,165,2005-08-04T20:51:23Z,2,2020-02-15T06:59:44Z +11485,2005-08-02T22:33:25Z,1872,326,2005-08-04T23:26:25Z,2,2020-02-15T06:59:44Z +11486,2005-08-02T22:34:06Z,1610,236,2005-08-09T00:46:06Z,2,2020-02-15T06:59:44Z +11487,2005-08-02T22:35:05Z,734,239,2005-08-08T00:54:05Z,2,2020-02-15T06:59:44Z +11488,2005-08-02T22:35:15Z,2520,45,2005-08-09T00:28:15Z,2,2020-02-15T06:59:44Z +11489,2005-08-02T22:35:28Z,3001,474,2005-08-04T00:29:28Z,2,2020-02-15T06:59:44Z +11490,2005-08-02T22:36:00Z,1178,156,2005-08-09T16:36:00Z,1,2020-02-15T06:59:44Z +11491,2005-08-02T22:44:50Z,268,307,2005-08-11T01:55:50Z,2,2020-02-15T06:59:44Z +11492,2005-08-02T22:46:47Z,4037,349,2005-08-09T19:54:47Z,2,2020-02-15T06:59:44Z +11493,2005-08-02T22:47:00Z,3375,124,2005-08-10T20:53:00Z,2,2020-02-15T06:59:44Z +11494,2005-08-02T22:51:23Z,3994,579,2005-08-09T01:52:23Z,1,2020-02-15T06:59:44Z +11495,2005-08-16T22:51:20Z,1265,247,2005-08-23T00:44:20Z,1,2020-02-15T06:59:44Z +11496,2006-02-14T15:16:03Z,2047,155,,1,2020-02-15T06:59:44Z +11497,2005-08-16T22:52:30Z,436,12,2005-08-21T19:52:30Z,1,2020-02-15T06:59:44Z +11498,2005-08-16T22:52:54Z,487,482,2005-08-25T03:27:54Z,2,2020-02-15T06:59:44Z +11499,2005-08-16T22:54:12Z,3857,172,2005-08-24T03:37:12Z,2,2020-02-15T06:59:44Z +11500,2005-08-16T23:01:22Z,4003,584,2005-08-24T22:54:22Z,1,2020-02-15T06:59:44Z +11501,2005-08-16T23:04:53Z,2147,23,2005-08-19T20:57:53Z,2,2020-02-15T06:59:44Z +11502,2005-08-16T23:06:30Z,4470,11,2005-08-19T03:49:30Z,1,2020-02-15T06:59:44Z +11503,2005-08-16T23:10:34Z,1496,526,2005-08-25T03:55:34Z,1,2020-02-15T06:59:44Z +11504,2005-08-16T23:16:46Z,2132,350,2005-08-18T20:49:46Z,2,2020-02-15T06:59:44Z +11505,2005-08-16T23:18:47Z,3344,34,2005-08-23T19:52:47Z,2,2020-02-15T06:59:44Z +11506,2005-08-16T23:25:48Z,1529,565,2005-08-22T18:17:48Z,1,2020-02-15T06:59:44Z +11507,2005-08-16T23:26:43Z,4197,236,2005-08-24T22:48:43Z,2,2020-02-15T06:59:44Z +11508,2005-08-16T23:27:36Z,2688,19,2005-08-25T01:34:36Z,2,2020-02-15T06:59:44Z +11509,2005-08-16T23:29:53Z,2750,273,2005-08-19T02:09:53Z,1,2020-02-15T06:59:44Z +11510,2005-08-16T23:30:07Z,2997,400,2005-08-25T17:35:07Z,1,2020-02-15T06:59:44Z +11511,2005-08-16T23:39:59Z,2127,397,2005-08-18T18:04:59Z,1,2020-02-15T06:59:44Z +11512,2005-08-16T23:51:06Z,1248,373,2005-08-26T02:06:06Z,2,2020-02-15T06:59:44Z +11513,2005-08-16T23:51:33Z,4473,499,2005-08-24T01:37:33Z,2,2020-02-15T06:59:44Z +11514,2005-08-16T23:53:10Z,4240,423,2005-08-23T22:04:10Z,1,2020-02-15T06:59:44Z +11515,2005-08-16T23:54:34Z,1053,279,2005-08-21T19:00:34Z,1,2020-02-15T06:59:44Z +11516,2005-08-16T23:54:47Z,1860,90,2005-08-17T20:05:47Z,1,2020-02-15T06:59:44Z +11517,2005-08-16T23:56:28Z,4266,280,2005-08-21T22:40:28Z,1,2020-02-15T06:59:44Z +11518,2005-08-16T23:59:49Z,3297,407,2005-08-17T22:51:49Z,2,2020-02-15T06:59:44Z +11519,2005-08-17T00:01:27Z,1034,381,2005-08-19T04:54:27Z,2,2020-02-15T06:59:44Z +11520,2005-08-17T00:04:28Z,3536,119,2005-08-26T02:03:28Z,1,2020-02-15T06:59:44Z +11521,2005-08-17T00:04:54Z,463,229,2005-08-21T00:57:54Z,1,2020-02-15T06:59:44Z +11522,2005-08-17T00:05:05Z,2033,599,2005-08-24T04:56:05Z,1,2020-02-15T06:59:44Z +11523,2005-08-17T00:10:10Z,1329,421,2005-08-24T22:39:10Z,1,2020-02-15T06:59:44Z +11524,2005-08-17T00:10:55Z,317,533,2005-08-23T05:30:55Z,1,2020-02-15T06:59:44Z +11525,2005-08-17T00:15:31Z,1107,174,2005-08-20T21:14:31Z,1,2020-02-15T06:59:44Z +11526,2005-08-17T00:17:38Z,2419,572,2005-08-18T03:59:38Z,2,2020-02-15T06:59:44Z +11527,2005-08-17T00:25:06Z,162,264,2005-08-22T21:13:06Z,1,2020-02-15T06:59:44Z +11528,2005-08-17T00:27:23Z,893,14,2005-08-22T06:12:23Z,2,2020-02-15T06:59:44Z +11529,2005-08-17T00:28:01Z,3071,4,2005-08-19T04:47:01Z,2,2020-02-15T06:59:44Z +11530,2005-08-17T00:29:00Z,365,400,2005-08-22T03:22:00Z,1,2020-02-15T06:59:44Z +11531,2005-08-17T00:30:04Z,1817,278,2005-08-20T01:12:04Z,2,2020-02-15T06:59:44Z +11532,2005-08-17T00:34:14Z,1947,413,2005-08-22T19:37:14Z,2,2020-02-15T06:59:44Z +11533,2005-08-17T00:34:53Z,4252,264,2005-08-22T06:10:53Z,1,2020-02-15T06:59:44Z +11534,2005-08-17T00:35:27Z,2414,144,2005-08-24T01:36:27Z,1,2020-02-15T06:59:44Z +11535,2005-08-17T00:39:54Z,1649,356,2005-08-24T20:46:54Z,2,2020-02-15T06:59:44Z +11536,2005-08-17T00:40:03Z,2735,428,2005-08-21T19:11:03Z,1,2020-02-15T06:59:44Z +11537,2005-08-17T00:41:08Z,190,474,2005-08-19T00:25:08Z,2,2020-02-15T06:59:44Z +11538,2005-08-17T00:44:04Z,554,431,2005-08-18T03:43:04Z,2,2020-02-15T06:59:44Z +11539,2005-08-17T00:45:41Z,2064,264,2005-08-19T06:03:41Z,1,2020-02-15T06:59:44Z +11540,2005-08-17T00:48:03Z,3385,370,2005-08-25T03:46:03Z,1,2020-02-15T06:59:44Z +11541,2006-02-14T15:16:03Z,2026,335,,1,2020-02-15T06:59:44Z +11542,2005-08-17T00:51:32Z,2155,7,2005-08-24T20:29:32Z,2,2020-02-15T06:59:44Z +11543,2005-08-17T00:54:28Z,2860,238,2005-08-25T04:31:28Z,2,2020-02-15T06:59:44Z +11544,2005-08-17T00:55:07Z,836,439,2005-08-22T19:25:07Z,1,2020-02-15T06:59:44Z +11545,2005-08-17T00:56:06Z,3198,257,2005-08-25T22:47:06Z,1,2020-02-15T06:59:44Z +11546,2005-08-17T00:57:36Z,2522,24,2005-08-18T23:16:36Z,1,2020-02-15T06:59:44Z +11547,2005-08-17T00:59:24Z,737,114,2005-08-20T04:03:24Z,2,2020-02-15T06:59:44Z +11548,2005-08-17T00:59:47Z,480,323,2005-08-22T05:09:47Z,1,2020-02-15T06:59:44Z +11549,2005-08-17T01:01:48Z,945,402,2005-08-19T21:24:48Z,2,2020-02-15T06:59:44Z +11550,2005-08-17T01:02:06Z,2972,339,2005-08-22T21:44:06Z,1,2020-02-15T06:59:44Z +11551,2005-08-17T01:03:49Z,3356,168,2005-08-18T22:31:49Z,1,2020-02-15T06:59:44Z +11552,2005-08-17T01:04:29Z,1143,230,2005-08-23T23:07:29Z,1,2020-02-15T06:59:44Z +11553,2005-08-17T01:04:31Z,3317,360,2005-08-24T00:44:31Z,1,2020-02-15T06:59:44Z +11554,2005-08-17T01:05:17Z,2212,460,2005-08-20T06:20:17Z,2,2020-02-15T06:59:44Z +11555,2005-08-17T01:08:59Z,2569,372,2005-08-18T06:09:59Z,2,2020-02-15T06:59:44Z +11556,2005-08-17T01:11:53Z,373,9,2005-08-18T23:41:53Z,1,2020-02-15T06:59:44Z +11557,2005-08-17T01:19:20Z,2376,416,2005-08-24T02:25:20Z,1,2020-02-15T06:59:44Z +11558,2005-08-17T01:19:52Z,1681,403,2005-08-19T00:47:52Z,2,2020-02-15T06:59:44Z +11559,2005-08-17T01:20:26Z,1812,385,2005-08-24T03:11:26Z,1,2020-02-15T06:59:44Z +11560,2005-08-17T01:20:30Z,2316,320,2005-08-18T04:29:30Z,2,2020-02-15T06:59:44Z +11561,2005-08-17T01:23:09Z,189,149,2005-08-23T21:02:09Z,2,2020-02-15T06:59:44Z +11562,2005-08-17T01:23:39Z,2992,424,2005-08-26T06:16:39Z,1,2020-02-15T06:59:44Z +11563,2006-02-14T15:16:03Z,1545,83,,1,2020-02-15T06:59:44Z +11564,2005-08-17T01:27:49Z,2237,332,2005-08-19T22:07:49Z,1,2020-02-15T06:59:44Z +11565,2005-08-17T01:28:05Z,173,83,2005-08-23T23:33:05Z,2,2020-02-15T06:59:44Z +11566,2005-08-17T01:28:35Z,4020,520,2005-08-20T22:42:35Z,1,2020-02-15T06:59:44Z +11567,2005-08-17T01:28:43Z,567,558,2005-08-24T20:20:43Z,2,2020-02-15T06:59:44Z +11568,2005-08-17T01:30:01Z,183,342,2005-08-18T22:21:01Z,2,2020-02-15T06:59:44Z +11569,2005-08-17T01:31:04Z,2592,504,2005-08-24T03:36:04Z,2,2020-02-15T06:59:44Z +11570,2005-08-17T01:34:32Z,2466,343,2005-08-24T05:47:32Z,1,2020-02-15T06:59:44Z +11571,2005-08-17T01:37:51Z,203,296,2005-08-17T20:30:51Z,1,2020-02-15T06:59:44Z +11572,2005-08-17T01:37:55Z,3512,515,2005-08-19T06:22:55Z,2,2020-02-15T06:59:44Z +11573,2005-08-17T01:38:18Z,639,146,2005-08-19T05:06:18Z,2,2020-02-15T06:59:44Z +11574,2005-08-17T01:38:19Z,3596,277,2005-08-18T20:30:19Z,2,2020-02-15T06:59:44Z +11575,2005-08-17T01:50:26Z,1725,319,2005-08-18T00:43:26Z,1,2020-02-15T06:59:44Z +11576,2005-08-17T01:53:20Z,327,293,2005-08-19T00:15:20Z,1,2020-02-15T06:59:44Z +11577,2006-02-14T15:16:03Z,4106,219,,2,2020-02-15T06:59:44Z +11578,2005-08-17T01:54:13Z,192,590,2005-08-26T02:00:13Z,2,2020-02-15T06:59:44Z +11579,2005-08-17T01:57:49Z,4256,356,2005-08-22T02:42:49Z,1,2020-02-15T06:59:44Z +11580,2005-08-17T01:59:07Z,1346,436,2005-08-21T06:18:07Z,2,2020-02-15T06:59:44Z +11581,2005-08-17T02:03:02Z,1249,231,2005-08-24T03:53:02Z,2,2020-02-15T06:59:44Z +11582,2005-08-17T02:03:49Z,2115,339,2005-08-24T03:29:49Z,1,2020-02-15T06:59:44Z +11583,2005-08-17T02:08:13Z,133,542,2005-08-20T23:13:13Z,2,2020-02-15T06:59:44Z +11584,2005-08-17T02:13:26Z,3906,479,2005-08-22T01:24:26Z,2,2020-02-15T06:59:44Z +11585,2005-08-17T02:14:36Z,753,297,2005-08-20T07:37:36Z,2,2020-02-15T06:59:44Z +11586,2005-08-17T02:20:42Z,3140,465,2005-08-26T05:01:42Z,1,2020-02-15T06:59:44Z +11587,2005-08-17T02:21:03Z,1319,156,2005-08-25T21:02:03Z,2,2020-02-15T06:59:44Z +11588,2005-08-17T02:26:23Z,2480,565,2005-08-22T02:32:23Z,1,2020-02-15T06:59:44Z +11589,2005-08-17T02:28:22Z,3480,554,2005-08-25T00:08:22Z,1,2020-02-15T06:59:44Z +11590,2005-08-17T02:28:33Z,3600,491,2005-08-20T03:13:33Z,1,2020-02-15T06:59:44Z +11591,2005-08-17T02:29:41Z,1670,6,2005-08-23T20:47:41Z,1,2020-02-15T06:59:44Z +11592,2005-08-17T02:36:04Z,720,383,2005-08-19T00:31:04Z,1,2020-02-15T06:59:44Z +11593,2006-02-14T15:16:03Z,817,99,,1,2020-02-15T06:59:44Z +11594,2005-08-17T02:47:02Z,319,198,2005-08-22T05:14:02Z,2,2020-02-15T06:59:44Z +11595,2005-08-17T02:53:14Z,466,350,2005-08-26T02:05:14Z,1,2020-02-15T06:59:44Z +11596,2005-08-17T02:53:55Z,1674,290,2005-08-26T02:19:55Z,1,2020-02-15T06:59:44Z +11597,2005-08-17T03:02:56Z,4073,272,2005-08-26T04:47:56Z,1,2020-02-15T06:59:44Z +11598,2005-08-17T03:03:07Z,1949,319,2005-08-22T21:05:07Z,2,2020-02-15T06:59:44Z +11599,2005-08-17T03:08:10Z,3749,112,2005-08-25T05:01:10Z,2,2020-02-15T06:59:44Z +11600,2005-08-17T03:12:04Z,1978,400,2005-08-23T07:10:04Z,1,2020-02-15T06:59:44Z +11601,2005-08-17T03:14:47Z,1098,471,2005-08-20T00:21:47Z,2,2020-02-15T06:59:44Z +11602,2005-08-17T03:21:19Z,2082,391,2005-08-19T05:23:19Z,1,2020-02-15T06:59:44Z +11603,2005-08-17T03:22:10Z,3910,406,2005-08-18T06:48:10Z,1,2020-02-15T06:59:44Z +11604,2005-08-17T03:28:27Z,1820,388,2005-08-19T05:38:27Z,2,2020-02-15T06:59:44Z +11605,2005-08-17T03:30:57Z,1292,455,2005-08-24T07:02:57Z,2,2020-02-15T06:59:44Z +11606,2005-08-17T03:32:43Z,4138,499,2005-08-18T04:30:43Z,1,2020-02-15T06:59:44Z +11607,2005-08-17T03:36:06Z,4345,242,2005-08-20T01:06:06Z,1,2020-02-15T06:59:44Z +11608,2005-08-17T03:36:52Z,1673,448,2005-08-25T07:17:52Z,2,2020-02-15T06:59:44Z +11609,2005-08-17T03:41:11Z,351,73,2005-08-25T01:30:11Z,2,2020-02-15T06:59:44Z +11610,2005-08-17T03:43:37Z,3048,275,2005-08-20T22:14:37Z,1,2020-02-15T06:59:44Z +11611,2006-02-14T15:16:03Z,1857,192,,2,2020-02-15T06:59:44Z +11612,2005-08-17T03:48:51Z,375,526,2005-08-20T03:03:51Z,1,2020-02-15T06:59:44Z +11613,2005-08-17T03:50:33Z,2486,126,2005-08-25T00:37:33Z,2,2020-02-15T06:59:44Z +11614,2005-08-17T03:52:18Z,805,2,2005-08-20T07:04:18Z,1,2020-02-15T06:59:44Z +11615,2005-08-17T03:54:35Z,4331,436,2005-08-23T06:54:35Z,2,2020-02-15T06:59:44Z +11616,2005-08-17T04:00:01Z,2588,36,2005-08-20T23:03:01Z,2,2020-02-15T06:59:44Z +11617,2005-08-17T04:00:40Z,1898,324,2005-08-18T00:36:40Z,1,2020-02-15T06:59:44Z +11618,2005-08-17T04:01:36Z,954,175,2005-08-23T01:02:36Z,1,2020-02-15T06:59:44Z +11619,2005-08-17T04:03:26Z,3652,374,2005-08-22T03:07:26Z,1,2020-02-15T06:59:44Z +11620,2005-08-17T04:06:22Z,3801,502,2005-08-17T23:53:22Z,1,2020-02-15T06:59:44Z +11621,2005-08-17T04:13:45Z,3708,216,2005-08-26T01:00:45Z,1,2020-02-15T06:59:44Z +11622,2005-08-17T04:15:46Z,499,220,2005-08-24T04:48:46Z,1,2020-02-15T06:59:44Z +11623,2005-08-17T04:15:47Z,759,163,2005-08-19T04:11:47Z,2,2020-02-15T06:59:44Z +11624,2005-08-17T04:17:42Z,606,527,2005-08-18T02:46:42Z,1,2020-02-15T06:59:44Z +11625,2005-08-17T04:18:52Z,712,521,2005-08-25T03:05:52Z,2,2020-02-15T06:59:44Z +11626,2005-08-17T04:25:42Z,4279,266,2005-08-23T05:46:42Z,1,2020-02-15T06:59:44Z +11627,2005-08-17T04:25:47Z,3945,168,2005-08-26T02:54:47Z,2,2020-02-15T06:59:44Z +11628,2005-08-17T04:27:18Z,3656,256,2005-08-25T01:12:18Z,2,2020-02-15T06:59:44Z +11629,2005-08-17T04:27:24Z,786,299,2005-08-26T10:25:24Z,2,2020-02-15T06:59:44Z +11630,2005-08-17T04:27:46Z,688,72,2005-08-19T09:58:46Z,2,2020-02-15T06:59:44Z +11631,2005-08-17T04:28:56Z,59,168,2005-08-24T00:42:56Z,2,2020-02-15T06:59:44Z +11632,2005-08-17T04:29:32Z,2551,238,2005-08-22T03:44:32Z,1,2020-02-15T06:59:44Z +11633,2005-08-17T04:30:09Z,1706,468,2005-08-20T06:56:09Z,1,2020-02-15T06:59:44Z +11634,2005-08-17T04:31:49Z,2576,206,2005-08-21T02:51:49Z,1,2020-02-15T06:59:44Z +11635,2005-08-17T04:33:17Z,2642,98,2005-08-21T07:50:17Z,2,2020-02-15T06:59:44Z +11636,2005-08-17T04:36:31Z,791,276,2005-08-24T00:03:31Z,2,2020-02-15T06:59:44Z +11637,2005-08-17T04:36:39Z,479,283,2005-08-18T02:17:39Z,1,2020-02-15T06:59:44Z +11638,2005-08-17T04:39:09Z,3421,152,2005-08-25T06:42:09Z,2,2020-02-15T06:59:44Z +11639,2005-08-17T04:43:29Z,3985,462,2005-08-25T01:04:29Z,2,2020-02-15T06:59:44Z +11640,2005-08-17T04:44:33Z,1718,501,2005-08-21T09:29:33Z,2,2020-02-15T06:59:44Z +11641,2005-08-17T04:45:39Z,2717,79,2005-08-20T10:38:39Z,1,2020-02-15T06:59:44Z +11642,2005-08-17T04:48:05Z,3790,25,2005-08-18T01:53:05Z,2,2020-02-15T06:59:44Z +11643,2005-08-17T04:49:35Z,1378,197,2005-08-24T07:05:35Z,1,2020-02-15T06:59:44Z +11644,2005-08-17T04:49:46Z,1760,438,2005-08-24T08:49:46Z,1,2020-02-15T06:59:44Z +11645,2005-08-17T04:50:56Z,4261,35,2005-08-25T23:03:56Z,1,2020-02-15T06:59:44Z +11646,2006-02-14T15:16:03Z,478,11,,2,2020-02-15T06:59:44Z +11647,2005-08-17T04:54:14Z,3016,110,2005-08-23T04:16:14Z,2,2020-02-15T06:59:44Z +11648,2005-08-17T04:56:16Z,3362,465,2005-08-26T00:53:16Z,2,2020-02-15T06:59:44Z +11649,2005-08-17T04:59:26Z,3222,217,2005-08-20T04:02:26Z,2,2020-02-15T06:59:44Z +11650,2005-08-17T05:00:03Z,3979,418,2005-08-22T01:45:03Z,2,2020-02-15T06:59:44Z +11651,2005-08-17T05:02:25Z,3681,143,2005-08-24T08:15:25Z,2,2020-02-15T06:59:44Z +11652,2006-02-14T15:16:03Z,1622,597,,2,2020-02-15T06:59:44Z +11653,2005-08-17T05:06:10Z,4475,358,2005-08-24T03:09:10Z,2,2020-02-15T06:59:44Z +11654,2005-08-17T05:06:19Z,1048,218,2005-08-18T04:32:19Z,2,2020-02-15T06:59:44Z +11655,2005-08-17T05:11:07Z,1699,113,2005-08-26T10:18:07Z,1,2020-02-15T06:59:44Z +11656,2005-08-17T05:11:09Z,1451,56,2005-08-25T07:51:09Z,1,2020-02-15T06:59:44Z +11657,2006-02-14T15:16:03Z,3043,53,,2,2020-02-15T06:59:44Z +11658,2005-08-17T05:19:17Z,2008,422,2005-08-24T07:03:17Z,2,2020-02-15T06:59:44Z +11659,2005-08-17T05:20:45Z,2881,112,2005-08-22T10:18:45Z,1,2020-02-15T06:59:44Z +11660,2005-08-17T05:22:42Z,4081,525,2005-08-23T01:03:42Z,1,2020-02-15T06:59:44Z +11661,2005-08-17T05:25:57Z,1008,27,2005-08-25T04:37:57Z,1,2020-02-15T06:59:44Z +11662,2005-08-17T05:27:37Z,2730,177,2005-08-26T09:56:37Z,2,2020-02-15T06:59:44Z +11663,2005-08-17T05:30:19Z,3798,373,2005-08-25T08:14:19Z,1,2020-02-15T06:59:44Z +11664,2005-08-17T05:35:52Z,1343,433,2005-08-18T02:40:52Z,1,2020-02-15T06:59:44Z +11665,2005-08-17T05:36:57Z,334,254,2005-08-23T01:38:57Z,1,2020-02-15T06:59:44Z +11666,2005-08-17T05:45:10Z,250,531,2005-08-19T06:47:10Z,2,2020-02-15T06:59:44Z +11667,2005-08-17T05:46:55Z,1516,582,2005-08-26T08:19:55Z,1,2020-02-15T06:59:44Z +11668,2005-08-17T05:47:32Z,2162,249,2005-08-20T03:11:32Z,1,2020-02-15T06:59:44Z +11669,2005-08-17T05:48:51Z,3224,487,2005-08-22T01:22:51Z,1,2020-02-15T06:59:44Z +11670,2005-08-17T05:48:59Z,4437,286,2005-08-19T08:51:59Z,1,2020-02-15T06:59:44Z +11671,2005-08-17T05:50:21Z,3569,338,2005-08-20T03:43:21Z,1,2020-02-15T06:59:44Z +11672,2006-02-14T15:16:03Z,3947,521,,2,2020-02-15T06:59:44Z +11673,2005-08-17T05:54:15Z,823,303,2005-08-21T08:12:15Z,2,2020-02-15T06:59:44Z +11674,2005-08-17T05:56:27Z,582,306,2005-08-24T08:50:27Z,2,2020-02-15T06:59:44Z +11675,2005-08-17T05:57:54Z,1322,514,2005-08-21T23:57:54Z,1,2020-02-15T06:59:44Z +11676,2006-02-14T15:16:03Z,4496,216,,2,2020-02-15T06:59:44Z +11677,2005-08-17T06:06:26Z,2206,407,2005-08-20T04:35:26Z,2,2020-02-15T06:59:44Z +11678,2005-08-17T06:07:39Z,3511,176,2005-08-21T10:51:39Z,2,2020-02-15T06:59:44Z +11679,2005-08-17T06:08:54Z,3337,72,2005-08-21T07:50:54Z,1,2020-02-15T06:59:44Z +11680,2005-08-17T06:12:27Z,4538,221,2005-08-23T08:54:27Z,1,2020-02-15T06:59:44Z +11681,2005-08-17T06:13:30Z,1260,543,2005-08-26T01:29:30Z,2,2020-02-15T06:59:44Z +11682,2005-08-17T06:13:40Z,2544,387,2005-08-18T06:11:40Z,1,2020-02-15T06:59:44Z +11683,2005-08-17T06:15:17Z,2603,66,2005-08-26T05:33:17Z,1,2020-02-15T06:59:44Z +11684,2005-08-17T06:27:15Z,4277,517,2005-08-22T02:11:15Z,2,2020-02-15T06:59:44Z +11685,2005-08-17T06:39:16Z,3552,51,2005-08-22T04:20:16Z,2,2020-02-15T06:59:44Z +11686,2005-08-17T06:39:30Z,1393,392,2005-08-21T10:19:30Z,2,2020-02-15T06:59:44Z +11687,2005-08-17T06:39:59Z,1977,169,2005-08-23T04:53:59Z,1,2020-02-15T06:59:44Z +11688,2005-08-17T06:41:58Z,2229,82,2005-08-25T04:38:58Z,1,2020-02-15T06:59:44Z +11689,2005-08-17T06:42:08Z,2390,419,2005-08-26T06:09:08Z,1,2020-02-15T06:59:44Z +11690,2005-08-17T06:44:22Z,3934,267,2005-08-24T03:49:22Z,1,2020-02-15T06:59:44Z +11691,2005-08-17T06:51:05Z,2529,515,2005-08-24T09:53:05Z,1,2020-02-15T06:59:44Z +11692,2005-08-17T06:52:41Z,1222,350,2005-08-24T12:17:41Z,2,2020-02-15T06:59:44Z +11693,2005-08-17T06:56:56Z,793,221,2005-08-24T06:20:56Z,2,2020-02-15T06:59:44Z +11694,2005-08-17T06:57:30Z,3540,410,2005-08-24T07:52:30Z,1,2020-02-15T06:59:44Z +11695,2005-08-17T07:01:08Z,1110,386,2005-08-21T09:21:08Z,1,2020-02-15T06:59:44Z +11696,2005-08-17T07:01:09Z,3816,522,2005-08-21T09:12:09Z,2,2020-02-15T06:59:44Z +11697,2005-08-17T07:09:19Z,383,329,2005-08-19T02:02:19Z,1,2020-02-15T06:59:44Z +11698,2005-08-17T07:09:59Z,3946,353,2005-08-19T04:31:59Z,1,2020-02-15T06:59:44Z +11699,2005-08-17T07:11:58Z,3997,339,2005-08-26T12:08:58Z,1,2020-02-15T06:59:44Z +11700,2005-08-17T07:12:31Z,2365,104,2005-08-18T04:21:31Z,2,2020-02-15T06:59:44Z +11701,2005-08-17T07:15:47Z,993,34,2005-08-19T01:44:47Z,2,2020-02-15T06:59:44Z +11702,2005-08-17T07:18:56Z,3286,526,2005-08-24T06:33:56Z,1,2020-02-15T06:59:44Z +11703,2005-08-17T07:19:29Z,1692,279,2005-08-20T09:35:29Z,2,2020-02-15T06:59:44Z +11704,2005-08-17T07:21:22Z,1099,135,2005-08-25T06:06:22Z,1,2020-02-15T06:59:44Z +11705,2005-08-17T07:22:25Z,4242,489,2005-08-18T06:42:25Z,1,2020-02-15T06:59:44Z +11706,2005-08-17T07:23:46Z,4234,414,2005-08-18T10:13:46Z,2,2020-02-15T06:59:44Z +11707,2005-08-17T07:24:59Z,1030,581,2005-08-24T10:40:59Z,1,2020-02-15T06:59:44Z +11708,2005-08-17T07:26:47Z,76,582,2005-08-22T04:11:47Z,1,2020-02-15T06:59:44Z +11709,2006-02-14T15:16:03Z,1720,330,,1,2020-02-15T06:59:44Z +11710,2005-08-17T07:29:44Z,613,553,2005-08-19T02:06:44Z,2,2020-02-15T06:59:44Z +11711,2005-08-17T07:30:55Z,1503,470,2005-08-18T09:21:55Z,1,2020-02-15T06:59:44Z +11712,2005-08-17T07:32:51Z,3607,203,2005-08-21T09:18:51Z,2,2020-02-15T06:59:44Z +11713,2005-08-17T07:34:05Z,1919,590,2005-08-25T07:49:05Z,1,2020-02-15T06:59:44Z +11714,2005-08-17T07:34:55Z,17,151,2005-08-18T04:07:55Z,1,2020-02-15T06:59:44Z +11715,2005-08-17T07:40:55Z,1615,452,2005-08-25T11:19:55Z,1,2020-02-15T06:59:44Z +11716,2005-08-17T07:40:55Z,3054,287,2005-08-21T05:56:55Z,1,2020-02-15T06:59:44Z +11717,2005-08-17T07:44:09Z,1371,566,2005-08-20T09:39:09Z,2,2020-02-15T06:59:44Z +11718,2005-08-17T07:44:42Z,3673,555,2005-08-23T03:02:42Z,2,2020-02-15T06:59:44Z +11719,2005-08-17T07:46:05Z,2054,338,2005-08-23T08:52:05Z,1,2020-02-15T06:59:44Z +11720,2005-08-17T07:46:54Z,1707,121,2005-08-26T04:19:54Z,2,2020-02-15T06:59:44Z +11721,2005-08-17T07:49:17Z,1923,46,2005-08-18T04:08:17Z,1,2020-02-15T06:59:44Z +11722,2005-08-17T07:53:03Z,2430,321,2005-08-22T06:56:03Z,2,2020-02-15T06:59:44Z +11723,2005-08-17T07:56:22Z,1665,341,2005-08-22T03:49:22Z,1,2020-02-15T06:59:44Z +11724,2005-08-17T08:04:44Z,4484,207,2005-08-25T03:25:44Z,2,2020-02-15T06:59:44Z +11725,2005-08-17T08:09:00Z,519,45,2005-08-18T09:50:00Z,1,2020-02-15T06:59:44Z +11726,2005-08-17T08:11:10Z,4438,266,2005-08-22T05:45:10Z,1,2020-02-15T06:59:44Z +11727,2005-08-17T08:12:20Z,98,6,2005-08-19T12:45:20Z,1,2020-02-15T06:59:44Z +11728,2005-08-17T08:12:26Z,726,444,2005-08-18T03:26:26Z,1,2020-02-15T06:59:44Z +11729,2005-08-17T08:14:41Z,2819,215,2005-08-22T02:54:41Z,1,2020-02-15T06:59:44Z +11730,2005-08-17T08:22:00Z,3817,98,2005-08-22T05:43:00Z,2,2020-02-15T06:59:44Z +11731,2005-08-17T08:24:35Z,917,52,2005-08-24T02:54:35Z,2,2020-02-15T06:59:44Z +11732,2005-08-17T08:29:46Z,460,137,2005-08-23T14:21:46Z,2,2020-02-15T06:59:44Z +11733,2005-08-17T08:31:03Z,439,251,2005-08-21T05:44:03Z,2,2020-02-15T06:59:44Z +11734,2005-08-17T08:34:22Z,4063,337,2005-08-25T11:56:22Z,2,2020-02-15T06:59:44Z +11735,2005-08-17T08:35:42Z,2555,452,2005-08-26T11:04:42Z,1,2020-02-15T06:59:44Z +11736,2005-08-17T08:40:55Z,4217,535,2005-08-26T09:03:55Z,1,2020-02-15T06:59:44Z +11737,2005-08-17T08:42:08Z,4128,549,2005-08-19T08:14:08Z,1,2020-02-15T06:59:44Z +11738,2005-08-17T08:45:55Z,3042,347,2005-08-26T07:09:55Z,1,2020-02-15T06:59:44Z +11739,2006-02-14T15:16:03Z,4568,373,,2,2020-02-15T06:59:44Z +11740,2005-08-17T08:48:31Z,2441,27,2005-08-24T07:47:31Z,2,2020-02-15T06:59:44Z +11741,2005-08-17T08:48:39Z,1819,473,2005-08-20T07:37:39Z,1,2020-02-15T06:59:44Z +11742,2005-08-17T08:48:43Z,596,470,2005-08-23T07:18:43Z,2,2020-02-15T06:59:44Z +11743,2005-08-17T08:49:05Z,294,336,2005-08-22T08:53:05Z,2,2020-02-15T06:59:44Z +11744,2005-08-17T08:54:30Z,297,26,2005-08-25T03:28:30Z,1,2020-02-15T06:59:44Z +11745,2005-08-17T09:00:01Z,4018,240,2005-08-26T14:29:01Z,2,2020-02-15T06:59:44Z +11746,2005-08-17T09:03:24Z,4571,299,2005-08-25T06:08:24Z,2,2020-02-15T06:59:44Z +11747,2005-08-17T09:03:31Z,1041,555,2005-08-19T08:23:31Z,2,2020-02-15T06:59:44Z +11748,2005-08-17T09:04:02Z,1175,595,2005-08-21T12:22:02Z,2,2020-02-15T06:59:44Z +11749,2005-08-17T09:04:03Z,4141,567,2005-08-19T09:32:03Z,2,2020-02-15T06:59:44Z +11750,2005-08-17T09:07:00Z,665,190,2005-08-23T08:16:00Z,2,2020-02-15T06:59:44Z +11751,2005-08-17T09:07:56Z,3309,51,2005-08-26T13:16:56Z,1,2020-02-15T06:59:44Z +11752,2005-08-17T09:10:55Z,1833,481,2005-08-18T06:22:55Z,1,2020-02-15T06:59:44Z +11753,2005-08-17T09:11:52Z,2599,43,2005-08-25T05:03:52Z,2,2020-02-15T06:59:44Z +11754,2006-02-14T15:16:03Z,3747,163,,2,2020-02-15T06:59:44Z +11755,2005-08-17T09:15:35Z,3457,513,2005-08-23T06:28:35Z,2,2020-02-15T06:59:44Z +11756,2005-08-17T09:29:22Z,1798,198,2005-08-21T12:17:22Z,1,2020-02-15T06:59:44Z +11757,2006-02-14T15:16:03Z,1295,550,,2,2020-02-15T06:59:44Z +11758,2005-08-17T09:33:02Z,11,533,2005-08-24T05:03:02Z,2,2020-02-15T06:59:44Z +11759,2005-08-17T09:41:23Z,2655,108,2005-08-19T11:58:23Z,2,2020-02-15T06:59:44Z +11760,2005-08-17T09:44:22Z,626,545,2005-08-24T14:39:22Z,2,2020-02-15T06:59:44Z +11761,2005-08-17T09:44:59Z,2230,13,2005-08-25T07:46:59Z,1,2020-02-15T06:59:44Z +11762,2005-08-17T09:48:06Z,1204,244,2005-08-26T13:12:06Z,2,2020-02-15T06:59:44Z +11763,2005-08-17T09:51:39Z,872,586,2005-08-21T10:15:39Z,2,2020-02-15T06:59:44Z +11764,2005-08-17T09:51:54Z,4502,252,2005-08-20T07:11:54Z,1,2020-02-15T06:59:44Z +11765,2005-08-17T09:55:28Z,4311,308,2005-08-19T15:53:28Z,2,2020-02-15T06:59:44Z +11766,2005-08-17T09:58:40Z,2999,544,2005-08-21T04:59:40Z,1,2020-02-15T06:59:44Z +11767,2005-08-17T10:00:40Z,2374,77,2005-08-25T04:14:40Z,2,2020-02-15T06:59:44Z +11768,2005-08-17T10:02:29Z,1307,564,2005-08-23T10:26:29Z,1,2020-02-15T06:59:44Z +11769,2005-08-17T10:04:49Z,1406,418,2005-08-20T09:22:49Z,1,2020-02-15T06:59:44Z +11770,2005-08-17T10:05:05Z,2862,475,2005-08-20T15:59:05Z,1,2020-02-15T06:59:44Z +11771,2005-08-17T10:17:09Z,2575,324,2005-08-25T10:58:09Z,1,2020-02-15T06:59:44Z +11772,2005-08-17T10:18:57Z,1021,237,2005-08-26T12:48:57Z,2,2020-02-15T06:59:44Z +11773,2005-08-17T10:19:51Z,1886,384,2005-08-23T04:30:51Z,1,2020-02-15T06:59:44Z +11774,2005-08-17T10:20:39Z,1679,488,2005-08-23T13:37:39Z,1,2020-02-15T06:59:44Z +11775,2005-08-17T10:25:53Z,256,574,2005-08-22T08:37:53Z,2,2020-02-15T06:59:44Z +11776,2005-08-17T10:27:19Z,2400,306,2005-08-20T14:02:19Z,2,2020-02-15T06:59:44Z +11777,2005-08-17T10:27:19Z,4065,83,2005-08-26T13:10:19Z,1,2020-02-15T06:59:44Z +11778,2005-08-17T10:31:40Z,1306,213,2005-08-25T13:53:40Z,2,2020-02-15T06:59:44Z +11779,2005-08-17T10:31:58Z,181,126,2005-08-24T15:28:58Z,2,2020-02-15T06:59:44Z +11780,2005-08-17T10:34:24Z,2268,297,2005-08-21T04:55:24Z,1,2020-02-15T06:59:44Z +11781,2005-08-17T10:37:00Z,1853,506,2005-08-21T12:03:00Z,2,2020-02-15T06:59:44Z +11782,2006-02-14T15:16:03Z,4098,354,,1,2020-02-15T06:59:44Z +11783,2005-08-17T10:39:24Z,979,152,2005-08-21T12:43:24Z,2,2020-02-15T06:59:44Z +11784,2005-08-17T10:48:05Z,3101,297,2005-08-19T06:47:05Z,1,2020-02-15T06:59:44Z +11785,2005-08-17T10:54:46Z,2760,182,2005-08-23T14:15:46Z,2,2020-02-15T06:59:44Z +11786,2005-08-17T10:57:40Z,1487,435,2005-08-24T06:48:40Z,2,2020-02-15T06:59:44Z +11787,2005-08-17T10:59:00Z,1980,195,2005-08-19T05:56:00Z,1,2020-02-15T06:59:44Z +11788,2005-08-17T10:59:18Z,1310,560,2005-08-22T11:12:18Z,1,2020-02-15T06:59:44Z +11789,2005-08-17T10:59:24Z,851,150,2005-08-26T16:17:24Z,1,2020-02-15T06:59:44Z +11790,2005-08-17T11:00:08Z,2384,451,2005-08-20T05:15:08Z,2,2020-02-15T06:59:44Z +11791,2005-08-17T11:01:11Z,3640,219,2005-08-22T06:31:11Z,2,2020-02-15T06:59:44Z +11792,2005-08-17T11:03:53Z,3703,376,2005-08-26T06:34:53Z,1,2020-02-15T06:59:44Z +11793,2005-08-17T11:05:53Z,1955,352,2005-08-25T12:25:53Z,1,2020-02-15T06:59:44Z +11794,2005-08-17T11:08:48Z,3486,453,2005-08-20T13:36:48Z,2,2020-02-15T06:59:44Z +11795,2005-08-17T11:13:38Z,2220,565,2005-08-19T14:20:38Z,2,2020-02-15T06:59:44Z +11796,2005-08-17T11:16:47Z,3983,435,2005-08-18T16:55:47Z,2,2020-02-15T06:59:44Z +11797,2005-08-17T11:17:21Z,1142,546,2005-08-18T09:14:21Z,2,2020-02-15T06:59:44Z +11798,2005-08-17T11:21:43Z,3974,448,2005-08-25T07:43:43Z,2,2020-02-15T06:59:44Z +11799,2005-08-17T11:25:25Z,40,501,2005-08-25T13:03:25Z,2,2020-02-15T06:59:44Z +11800,2005-08-17T11:29:52Z,2284,350,2005-08-21T08:37:52Z,1,2020-02-15T06:59:44Z +11801,2005-08-17T11:30:11Z,659,126,2005-08-23T09:54:11Z,1,2020-02-15T06:59:44Z +11802,2005-08-17T11:32:51Z,2815,221,2005-08-22T10:56:51Z,1,2020-02-15T06:59:44Z +11803,2005-08-17T11:42:08Z,3648,160,2005-08-22T07:45:08Z,2,2020-02-15T06:59:44Z +11804,2005-08-17T11:42:45Z,1040,556,2005-08-25T07:11:45Z,1,2020-02-15T06:59:44Z +11805,2005-08-17T11:48:47Z,1208,208,2005-08-26T11:06:47Z,2,2020-02-15T06:59:44Z +11806,2005-08-17T11:49:28Z,3203,125,2005-08-22T15:42:28Z,1,2020-02-15T06:59:44Z +11807,2005-08-17T11:51:15Z,4052,201,2005-08-21T11:47:15Z,2,2020-02-15T06:59:44Z +11808,2005-08-17T11:51:16Z,4042,462,2005-08-18T14:01:16Z,2,2020-02-15T06:59:44Z +11809,2005-08-17T11:51:39Z,1136,305,2005-08-24T17:14:39Z,1,2020-02-15T06:59:44Z +11810,2005-08-17T11:56:48Z,1548,270,2005-08-20T17:39:48Z,1,2020-02-15T06:59:44Z +11811,2005-08-17T11:59:18Z,195,130,2005-08-18T09:13:18Z,2,2020-02-15T06:59:44Z +11812,2005-08-17T12:00:54Z,119,132,2005-08-18T16:08:54Z,1,2020-02-15T06:59:44Z +11813,2005-08-17T12:06:54Z,1074,36,2005-08-21T17:52:54Z,2,2020-02-15T06:59:44Z +11814,2005-08-17T12:09:20Z,3462,509,2005-08-25T16:56:20Z,2,2020-02-15T06:59:44Z +11815,2005-08-17T12:13:26Z,272,192,2005-08-22T17:15:26Z,2,2020-02-15T06:59:44Z +11816,2005-08-17T12:14:16Z,3897,224,2005-08-19T06:15:16Z,2,2020-02-15T06:59:44Z +11817,2005-08-17T12:20:01Z,2297,38,2005-08-19T18:06:01Z,1,2020-02-15T06:59:44Z +11818,2005-08-17T12:22:04Z,213,512,2005-08-25T15:59:04Z,2,2020-02-15T06:59:44Z +11819,2005-08-17T12:25:17Z,656,208,2005-08-19T16:12:17Z,1,2020-02-15T06:59:44Z +11820,2005-08-17T12:25:33Z,2801,401,2005-08-19T07:04:33Z,2,2020-02-15T06:59:44Z +11821,2005-08-17T12:27:55Z,2711,20,2005-08-18T07:07:55Z,1,2020-02-15T06:59:44Z +11822,2005-08-17T12:32:39Z,1317,263,2005-08-18T12:30:39Z,2,2020-02-15T06:59:44Z +11823,2005-08-17T12:36:37Z,2626,352,2005-08-22T11:10:37Z,2,2020-02-15T06:59:44Z +11824,2005-08-17T12:37:54Z,2639,1,2005-08-19T10:11:54Z,2,2020-02-15T06:59:44Z +11825,2005-08-17T12:43:30Z,2656,296,2005-08-20T15:25:30Z,1,2020-02-15T06:59:44Z +11826,2005-08-17T12:43:46Z,1837,536,2005-08-19T16:59:46Z,2,2020-02-15T06:59:44Z +11827,2005-08-17T12:44:27Z,3064,523,2005-08-24T13:31:27Z,1,2020-02-15T06:59:44Z +11828,2005-08-17T12:48:28Z,2593,268,2005-08-24T09:24:28Z,2,2020-02-15T06:59:44Z +11829,2005-08-17T12:52:04Z,2207,563,2005-08-19T10:50:04Z,2,2020-02-15T06:59:44Z +11830,2005-08-17T12:53:15Z,3713,522,2005-08-25T08:08:15Z,1,2020-02-15T06:59:44Z +11831,2005-08-17T12:54:47Z,4562,32,2005-08-21T11:21:47Z,1,2020-02-15T06:59:44Z +11832,2005-08-17T12:55:31Z,2331,125,2005-08-19T08:31:31Z,1,2020-02-15T06:59:44Z +11833,2005-08-17T13:00:33Z,3728,424,2005-08-18T13:45:33Z,2,2020-02-15T06:59:44Z +11834,2005-08-17T13:00:40Z,2407,261,2005-08-22T12:50:40Z,1,2020-02-15T06:59:44Z +11835,2005-08-17T13:03:13Z,2796,479,2005-08-19T10:50:13Z,1,2020-02-15T06:59:44Z +11836,2005-08-17T13:03:36Z,2253,198,2005-08-19T17:15:36Z,1,2020-02-15T06:59:44Z +11837,2005-08-17T13:04:41Z,1085,81,2005-08-26T14:19:41Z,1,2020-02-15T06:59:44Z +11838,2005-08-17T13:06:00Z,3576,161,2005-08-20T11:44:00Z,1,2020-02-15T06:59:44Z +11839,2005-08-17T13:08:45Z,2282,80,2005-08-18T15:05:45Z,2,2020-02-15T06:59:44Z +11840,2005-08-17T13:09:01Z,1824,491,2005-08-19T17:42:01Z,1,2020-02-15T06:59:44Z +11841,2005-08-17T13:12:20Z,1524,270,2005-08-21T11:16:20Z,2,2020-02-15T06:59:44Z +11842,2005-08-17T13:13:37Z,2680,422,2005-08-20T08:32:37Z,1,2020-02-15T06:59:44Z +11843,2005-08-17T13:14:50Z,3091,187,2005-08-22T11:31:50Z,2,2020-02-15T06:59:44Z +11844,2005-08-17T13:16:04Z,3791,368,2005-08-18T10:16:04Z,1,2020-02-15T06:59:44Z +11845,2005-08-17T13:16:38Z,14,65,2005-08-18T11:21:38Z,1,2020-02-15T06:59:44Z +11846,2005-08-17T13:18:29Z,3306,283,2005-08-22T18:05:29Z,2,2020-02-15T06:59:44Z +11847,2006-02-14T15:16:03Z,1784,337,,1,2020-02-15T06:59:44Z +11848,2006-02-14T15:16:03Z,3680,152,,1,2020-02-15T06:59:44Z +11849,2005-08-17T13:24:55Z,1191,92,2005-08-22T12:50:55Z,2,2020-02-15T06:59:44Z +11850,2005-08-17T13:30:15Z,1437,80,2005-08-21T17:24:15Z,1,2020-02-15T06:59:44Z +11851,2005-08-17T13:30:27Z,3225,376,2005-08-20T15:34:27Z,2,2020-02-15T06:59:44Z +11852,2005-08-17T13:38:27Z,2358,596,2005-08-24T08:50:27Z,1,2020-02-15T06:59:44Z +11853,2005-08-17T13:39:32Z,3888,6,2005-08-23T18:44:32Z,2,2020-02-15T06:59:44Z +11854,2005-08-17T13:42:52Z,137,313,2005-08-26T14:04:52Z,1,2020-02-15T06:59:44Z +11855,2005-08-17T13:43:07Z,1062,535,2005-08-26T08:07:07Z,1,2020-02-15T06:59:44Z +11856,2005-08-17T13:44:49Z,305,28,2005-08-21T17:20:49Z,1,2020-02-15T06:59:44Z +11857,2005-08-17T13:48:30Z,101,146,2005-08-18T15:55:30Z,1,2020-02-15T06:59:44Z +11858,2005-08-17T13:50:31Z,3483,503,2005-08-19T08:45:31Z,2,2020-02-15T06:59:44Z +11859,2005-08-17T13:51:20Z,423,144,2005-08-21T13:47:20Z,2,2020-02-15T06:59:44Z +11860,2005-08-17T13:52:26Z,4354,257,2005-08-24T14:47:26Z,1,2020-02-15T06:59:44Z +11861,2005-08-17T13:53:47Z,2674,232,2005-08-21T16:07:47Z,1,2020-02-15T06:59:44Z +11862,2005-08-17T13:54:53Z,2604,529,2005-08-19T10:48:53Z,1,2020-02-15T06:59:44Z +11863,2005-08-17T13:56:01Z,1003,112,2005-08-23T18:38:01Z,1,2020-02-15T06:59:44Z +11864,2005-08-17T14:02:01Z,2985,96,2005-08-21T19:54:01Z,1,2020-02-15T06:59:44Z +11865,2005-08-17T14:03:46Z,2577,345,2005-08-19T08:39:46Z,1,2020-02-15T06:59:44Z +11866,2006-02-14T15:16:03Z,2758,200,,2,2020-02-15T06:59:44Z +11867,2005-08-17T14:04:28Z,938,434,2005-08-21T10:08:28Z,1,2020-02-15T06:59:44Z +11868,2005-08-17T14:05:34Z,2909,445,2005-08-19T15:47:34Z,1,2020-02-15T06:59:44Z +11869,2005-08-17T14:10:22Z,3453,19,2005-08-24T18:39:22Z,1,2020-02-15T06:59:44Z +11870,2005-08-17T14:11:28Z,4251,432,2005-08-24T16:43:28Z,1,2020-02-15T06:59:44Z +11871,2005-08-17T14:11:44Z,3013,484,2005-08-18T17:50:44Z,1,2020-02-15T06:59:44Z +11872,2005-08-17T14:11:45Z,4306,113,2005-08-21T17:02:45Z,2,2020-02-15T06:59:44Z +11873,2005-08-17T14:14:39Z,4021,554,2005-08-18T17:20:39Z,2,2020-02-15T06:59:44Z +11874,2005-08-17T14:16:40Z,2637,467,2005-08-18T15:51:40Z,2,2020-02-15T06:59:44Z +11875,2005-08-17T14:16:48Z,1787,294,2005-08-26T14:20:48Z,1,2020-02-15T06:59:44Z +11876,2005-08-17T14:18:21Z,3982,426,2005-08-20T19:48:21Z,1,2020-02-15T06:59:44Z +11877,2005-08-17T14:21:11Z,4528,445,2005-08-25T19:46:11Z,1,2020-02-15T06:59:44Z +11878,2005-08-17T14:23:52Z,255,549,2005-08-21T14:23:52Z,1,2020-02-15T06:59:44Z +11879,2005-08-17T14:25:09Z,2500,312,2005-08-26T09:19:09Z,1,2020-02-15T06:59:44Z +11880,2005-08-17T14:28:28Z,1539,597,2005-08-26T12:32:28Z,2,2020-02-15T06:59:44Z +11881,2005-08-17T14:31:56Z,3124,272,2005-08-21T11:05:56Z,1,2020-02-15T06:59:44Z +11882,2005-08-17T14:33:41Z,2401,234,2005-08-26T17:25:41Z,2,2020-02-15T06:59:44Z +11883,2005-08-17T14:41:28Z,221,551,2005-08-19T09:54:28Z,1,2020-02-15T06:59:44Z +11884,2005-08-17T14:43:23Z,797,178,2005-08-25T15:38:23Z,1,2020-02-15T06:59:44Z +11885,2005-08-17T14:53:53Z,3931,481,2005-08-22T10:59:53Z,1,2020-02-15T06:59:44Z +11886,2005-08-17T14:58:51Z,608,204,2005-08-19T16:07:51Z,2,2020-02-15T06:59:44Z +11887,2005-08-17T15:03:13Z,3290,54,2005-08-19T09:49:13Z,1,2020-02-15T06:59:44Z +11888,2005-08-17T15:04:05Z,1100,160,2005-08-25T18:52:05Z,2,2020-02-15T06:59:44Z +11889,2005-08-17T15:08:27Z,293,395,2005-08-18T17:10:27Z,1,2020-02-15T06:59:44Z +11890,2005-08-17T15:08:43Z,3023,487,2005-08-26T14:56:43Z,2,2020-02-15T06:59:44Z +11891,2005-08-17T15:11:55Z,2619,115,2005-08-22T11:11:55Z,2,2020-02-15T06:59:44Z +11892,2005-08-17T15:13:21Z,746,227,2005-08-21T09:19:21Z,2,2020-02-15T06:59:44Z +11893,2005-08-17T15:13:29Z,2321,496,2005-08-25T11:09:29Z,1,2020-02-15T06:59:44Z +11894,2005-08-17T15:15:01Z,1223,67,2005-08-26T13:49:01Z,1,2020-02-15T06:59:44Z +11895,2005-08-17T15:15:07Z,2156,236,2005-08-18T11:00:07Z,2,2020-02-15T06:59:44Z +11896,2005-08-17T15:19:54Z,259,436,2005-08-24T18:22:54Z,2,2020-02-15T06:59:44Z +11897,2005-08-17T15:24:06Z,3904,238,2005-08-23T11:50:06Z,2,2020-02-15T06:59:44Z +11898,2005-08-17T15:24:12Z,3163,169,2005-08-24T13:36:12Z,2,2020-02-15T06:59:44Z +11899,2005-08-17T15:29:12Z,3179,84,2005-08-24T17:41:12Z,1,2020-02-15T06:59:44Z +11900,2005-08-17T15:30:44Z,1931,239,2005-08-19T16:12:44Z,1,2020-02-15T06:59:44Z +11901,2005-08-17T15:35:47Z,4274,70,2005-08-20T10:33:47Z,2,2020-02-15T06:59:44Z +11902,2005-08-17T15:37:34Z,1387,63,2005-08-22T17:28:34Z,2,2020-02-15T06:59:44Z +11903,2005-08-17T15:37:45Z,1196,542,2005-08-23T18:31:45Z,2,2020-02-15T06:59:44Z +11904,2005-08-17T15:39:26Z,2846,145,2005-08-21T18:24:26Z,2,2020-02-15T06:59:44Z +11905,2005-08-17T15:40:18Z,2725,349,2005-08-26T15:14:18Z,2,2020-02-15T06:59:44Z +11906,2005-08-17T15:40:46Z,325,478,2005-08-20T15:20:46Z,2,2020-02-15T06:59:44Z +11907,2005-08-17T15:40:47Z,3928,505,2005-08-20T19:55:47Z,2,2020-02-15T06:59:44Z +11908,2005-08-17T15:43:09Z,3390,314,2005-08-24T14:32:09Z,2,2020-02-15T06:59:44Z +11909,2006-02-14T15:16:03Z,871,474,,1,2020-02-15T06:59:44Z +11910,2005-08-17T15:44:37Z,4254,418,2005-08-19T10:58:37Z,2,2020-02-15T06:59:44Z +11911,2005-08-17T15:51:35Z,3578,472,2005-08-26T20:26:35Z,2,2020-02-15T06:59:44Z +11912,2005-08-17T15:51:49Z,744,573,2005-08-24T18:48:49Z,1,2020-02-15T06:59:44Z +11913,2005-08-17T15:53:17Z,741,295,2005-08-24T18:50:17Z,2,2020-02-15T06:59:44Z +11914,2005-08-17T16:04:42Z,1634,230,2005-08-22T19:29:42Z,1,2020-02-15T06:59:44Z +11915,2005-08-17T16:05:28Z,1557,269,2005-08-25T19:53:28Z,2,2020-02-15T06:59:44Z +11916,2005-08-17T16:05:51Z,2631,86,2005-08-20T10:23:51Z,1,2020-02-15T06:59:44Z +11917,2005-08-17T16:08:17Z,1608,270,2005-08-20T20:01:17Z,1,2020-02-15T06:59:44Z +11918,2005-08-17T16:08:42Z,2169,533,2005-08-20T20:12:42Z,1,2020-02-15T06:59:44Z +11919,2005-08-17T16:08:49Z,4497,40,2005-08-20T16:59:49Z,2,2020-02-15T06:59:44Z +11920,2005-08-17T16:10:19Z,4253,402,2005-08-20T13:54:19Z,2,2020-02-15T06:59:44Z +11921,2005-08-17T16:12:27Z,494,485,2005-08-25T22:07:27Z,1,2020-02-15T06:59:44Z +11922,2005-08-17T16:20:37Z,3707,15,2005-08-26T16:53:37Z,2,2020-02-15T06:59:44Z +11923,2005-08-17T16:21:47Z,1907,72,2005-08-18T14:26:47Z,2,2020-02-15T06:59:44Z +11924,2005-08-17T16:22:05Z,1711,202,2005-08-26T12:34:05Z,1,2020-02-15T06:59:44Z +11925,2005-08-17T16:23:04Z,1441,370,2005-08-21T11:38:04Z,1,2020-02-15T06:59:44Z +11926,2005-08-17T16:25:02Z,2111,516,2005-08-22T11:36:02Z,1,2020-02-15T06:59:44Z +11927,2005-08-17T16:25:03Z,3134,178,2005-08-23T16:41:03Z,1,2020-02-15T06:59:44Z +11928,2005-08-17T16:28:24Z,79,261,2005-08-23T17:50:24Z,2,2020-02-15T06:59:44Z +11929,2005-08-17T16:28:51Z,3765,327,2005-08-25T19:36:51Z,1,2020-02-15T06:59:44Z +11930,2005-08-17T16:28:53Z,1299,5,2005-08-25T10:31:53Z,1,2020-02-15T06:59:44Z +11931,2005-08-17T16:35:14Z,2022,242,2005-08-19T19:16:14Z,1,2020-02-15T06:59:44Z +11932,2005-08-17T16:36:12Z,151,364,2005-08-18T19:34:12Z,2,2020-02-15T06:59:44Z +11933,2005-08-17T16:38:20Z,2574,438,2005-08-22T14:31:20Z,1,2020-02-15T06:59:44Z +11934,2005-08-17T16:40:00Z,1230,596,2005-08-20T20:13:00Z,2,2020-02-15T06:59:44Z +11935,2005-08-17T16:42:13Z,1640,66,2005-08-22T20:38:13Z,2,2020-02-15T06:59:44Z +11936,2005-08-17T16:45:34Z,1127,380,2005-08-21T13:33:34Z,2,2020-02-15T06:59:44Z +11937,2005-08-17T16:48:36Z,2926,515,2005-08-24T19:01:36Z,1,2020-02-15T06:59:44Z +11938,2005-08-17T16:54:54Z,3927,426,2005-08-24T19:18:54Z,1,2020-02-15T06:59:44Z +11939,2005-08-17T16:55:57Z,3305,516,2005-08-24T21:36:57Z,1,2020-02-15T06:59:44Z +11940,2005-08-17T16:56:28Z,1188,163,2005-08-18T15:09:28Z,1,2020-02-15T06:59:44Z +11941,2005-08-17T16:56:57Z,159,566,2005-08-24T16:29:57Z,1,2020-02-15T06:59:44Z +11942,2006-02-14T15:16:03Z,4094,576,,2,2020-02-15T06:59:44Z +11943,2005-08-17T17:00:42Z,4466,69,2005-08-26T22:07:42Z,1,2020-02-15T06:59:44Z +11944,2005-08-17T17:02:42Z,27,389,2005-08-21T16:40:42Z,2,2020-02-15T06:59:44Z +11945,2005-08-17T17:05:33Z,1108,380,2005-08-20T18:37:33Z,2,2020-02-15T06:59:44Z +11946,2005-08-17T17:05:53Z,2953,569,2005-08-19T13:56:53Z,1,2020-02-15T06:59:44Z +11947,2005-08-17T17:08:13Z,2928,220,2005-08-23T21:53:13Z,1,2020-02-15T06:59:44Z +11948,2005-08-17T17:11:05Z,3329,40,2005-08-25T21:16:05Z,2,2020-02-15T06:59:44Z +11949,2005-08-17T17:12:26Z,854,198,2005-08-23T20:48:26Z,1,2020-02-15T06:59:44Z +11950,2005-08-17T17:13:16Z,4412,190,2005-08-26T21:25:16Z,1,2020-02-15T06:59:44Z +11951,2005-08-17T17:14:02Z,1394,155,2005-08-26T12:04:02Z,2,2020-02-15T06:59:44Z +11952,2005-08-17T17:14:57Z,2411,288,2005-08-19T19:15:57Z,1,2020-02-15T06:59:44Z +11953,2005-08-17T17:16:42Z,2993,399,2005-08-23T18:28:42Z,1,2020-02-15T06:59:44Z +11954,2005-08-17T17:18:36Z,220,145,2005-08-18T19:49:36Z,1,2020-02-15T06:59:44Z +11955,2005-08-17T17:21:35Z,1221,319,2005-08-24T22:06:35Z,1,2020-02-15T06:59:44Z +11956,2005-08-17T17:22:05Z,2533,457,2005-08-25T22:19:05Z,2,2020-02-15T06:59:44Z +11957,2005-08-17T17:22:29Z,1924,198,2005-08-23T21:47:29Z,2,2020-02-15T06:59:44Z +11958,2005-08-17T17:23:20Z,2061,217,2005-08-24T14:47:20Z,2,2020-02-15T06:59:44Z +11959,2005-08-17T17:23:35Z,2694,101,2005-08-20T20:57:35Z,1,2020-02-15T06:59:44Z +11960,2005-08-17T17:24:30Z,3924,84,2005-08-18T14:28:30Z,1,2020-02-15T06:59:44Z +11961,2005-08-17T17:28:01Z,2015,276,2005-08-21T20:43:01Z,1,2020-02-15T06:59:44Z +11962,2005-08-17T17:34:38Z,4384,29,2005-08-21T12:59:38Z,2,2020-02-15T06:59:44Z +11963,2005-08-17T17:35:47Z,232,211,2005-08-23T16:19:47Z,2,2020-02-15T06:59:44Z +11964,2005-08-17T17:37:03Z,2225,309,2005-08-25T11:55:03Z,2,2020-02-15T06:59:44Z +11965,2005-08-17T17:39:45Z,194,490,2005-08-19T12:05:45Z,1,2020-02-15T06:59:44Z +11966,2005-08-17T17:40:04Z,3702,283,2005-08-20T15:45:04Z,1,2020-02-15T06:59:44Z +11967,2005-08-17T17:45:00Z,1151,521,2005-08-22T13:03:00Z,1,2020-02-15T06:59:44Z +11968,2005-08-17T17:47:34Z,698,239,2005-08-18T19:40:34Z,1,2020-02-15T06:59:44Z +11969,2005-08-17T17:49:37Z,668,550,2005-08-19T19:45:37Z,2,2020-02-15T06:59:44Z +11970,2005-08-17T17:53:09Z,1779,21,2005-08-24T14:41:09Z,1,2020-02-15T06:59:44Z +11971,2005-08-17T17:53:42Z,2756,131,2005-08-18T12:11:42Z,2,2020-02-15T06:59:44Z +11972,2005-08-17T17:55:46Z,1282,308,2005-08-22T15:31:46Z,2,2020-02-15T06:59:44Z +11973,2005-08-17T17:55:58Z,1472,131,2005-08-21T19:55:58Z,2,2020-02-15T06:59:44Z +11974,2005-08-17T17:56:48Z,1609,485,2005-08-21T19:14:48Z,2,2020-02-15T06:59:44Z +11975,2005-08-17T17:58:39Z,3843,458,2005-08-20T19:11:39Z,2,2020-02-15T06:59:44Z +11976,2005-08-17T17:59:19Z,498,373,2005-08-23T14:51:19Z,2,2020-02-15T06:59:44Z +11977,2005-08-17T18:01:15Z,1528,536,2005-08-23T23:03:15Z,1,2020-02-15T06:59:44Z +11978,2005-08-17T18:02:10Z,4380,499,2005-08-18T20:40:10Z,2,2020-02-15T06:59:44Z +11979,2005-08-17T18:07:13Z,568,255,2005-08-19T23:12:13Z,1,2020-02-15T06:59:44Z +11980,2005-08-17T18:10:18Z,4165,589,2005-08-20T13:28:18Z,1,2020-02-15T06:59:44Z +11981,2005-08-17T18:10:40Z,3228,294,2005-08-20T16:56:40Z,1,2020-02-15T06:59:44Z +11982,2005-08-17T18:13:07Z,118,186,2005-08-18T19:06:07Z,1,2020-02-15T06:59:44Z +11983,2005-08-17T18:13:55Z,2580,304,2005-08-23T18:27:55Z,2,2020-02-15T06:59:44Z +11984,2005-08-17T18:16:30Z,3577,96,2005-08-24T21:09:30Z,2,2020-02-15T06:59:44Z +11985,2005-08-17T18:19:44Z,2208,198,2005-08-18T19:14:44Z,2,2020-02-15T06:59:44Z +11986,2005-08-17T18:21:58Z,1610,352,2005-08-18T13:05:58Z,1,2020-02-15T06:59:44Z +11987,2005-08-17T18:21:59Z,1478,494,2005-08-25T19:20:59Z,1,2020-02-15T06:59:44Z +11988,2005-08-17T18:23:50Z,3429,62,2005-08-18T22:30:50Z,2,2020-02-15T06:59:44Z +11989,2005-08-17T18:23:58Z,3686,439,2005-08-20T20:31:58Z,2,2020-02-15T06:59:44Z +11990,2005-08-17T18:26:22Z,3012,17,2005-08-19T14:34:22Z,2,2020-02-15T06:59:44Z +11991,2005-08-17T18:27:08Z,940,361,2005-08-25T14:07:08Z,1,2020-02-15T06:59:44Z +11992,2005-08-17T18:27:22Z,4132,136,2005-08-26T22:38:22Z,2,2020-02-15T06:59:44Z +11993,2005-08-17T18:27:49Z,295,303,2005-08-21T00:04:49Z,1,2020-02-15T06:59:44Z +11994,2005-08-17T18:29:35Z,3428,319,2005-08-25T23:39:35Z,1,2020-02-15T06:59:44Z +11995,2006-02-14T15:16:03Z,3953,69,,1,2020-02-15T06:59:44Z +11996,2005-08-17T18:34:37Z,2720,510,2005-08-20T22:25:37Z,2,2020-02-15T06:59:44Z +11997,2005-08-17T18:34:38Z,2193,411,2005-08-26T00:12:38Z,2,2020-02-15T06:59:44Z +11998,2005-08-17T18:46:21Z,4258,299,2005-08-18T20:29:21Z,1,2020-02-15T06:59:44Z +11999,2005-08-17T18:47:07Z,4333,125,2005-08-20T23:26:07Z,2,2020-02-15T06:59:44Z +12000,2005-08-17T18:49:44Z,2256,149,2005-08-24T16:34:44Z,2,2020-02-15T06:59:44Z +12001,2006-02-14T15:16:03Z,4158,52,,2,2020-02-15T06:59:44Z +12002,2005-08-17T18:56:02Z,1386,75,2005-08-20T17:36:02Z,1,2020-02-15T06:59:44Z +12003,2005-08-17T18:56:05Z,3868,70,2005-08-18T23:52:05Z,1,2020-02-15T06:59:44Z +12004,2005-08-17T18:56:53Z,2690,499,2005-08-26T14:56:53Z,1,2020-02-15T06:59:44Z +12005,2005-08-17T18:56:55Z,2062,403,2005-08-25T20:23:55Z,2,2020-02-15T06:59:44Z +12006,2005-08-17T19:09:12Z,4072,272,2005-08-24T13:50:12Z,1,2020-02-15T06:59:44Z +12007,2005-08-17T19:10:34Z,3007,268,2005-08-24T14:09:34Z,1,2020-02-15T06:59:44Z +12008,2005-08-17T19:16:18Z,865,562,2005-08-18T14:24:18Z,2,2020-02-15T06:59:44Z +12009,2006-02-14T15:16:03Z,2134,296,,2,2020-02-15T06:59:44Z +12010,2005-08-17T19:17:54Z,1076,554,2005-08-26T00:41:54Z,1,2020-02-15T06:59:44Z +12011,2005-08-17T19:19:44Z,495,313,2005-08-23T00:56:44Z,2,2020-02-15T06:59:44Z +12012,2005-08-17T19:20:48Z,2698,69,2005-08-22T16:50:48Z,1,2020-02-15T06:59:44Z +12013,2005-08-17T19:23:02Z,3530,586,2005-08-23T00:31:02Z,2,2020-02-15T06:59:44Z +12014,2005-08-17T19:29:44Z,1778,554,2005-08-23T20:40:44Z,1,2020-02-15T06:59:44Z +12015,2005-08-17T19:32:44Z,593,11,2005-08-23T13:36:44Z,2,2020-02-15T06:59:44Z +12016,2005-08-17T19:33:24Z,2109,327,2005-08-21T19:59:24Z,2,2020-02-15T06:59:44Z +12017,2005-08-17T19:33:49Z,344,573,2005-08-22T01:16:49Z,2,2020-02-15T06:59:44Z +12018,2005-08-17T19:44:46Z,1921,319,2005-08-26T20:24:46Z,1,2020-02-15T06:59:44Z +12019,2005-08-17T19:48:55Z,2566,90,2005-08-21T18:20:55Z,1,2020-02-15T06:59:44Z +12020,2005-08-17T19:50:33Z,3258,72,2005-08-25T17:54:33Z,1,2020-02-15T06:59:44Z +12021,2005-08-17T19:52:43Z,3977,27,2005-08-23T21:49:43Z,1,2020-02-15T06:59:44Z +12022,2005-08-17T19:52:45Z,2067,461,2005-08-18T18:26:45Z,2,2020-02-15T06:59:44Z +12023,2005-08-17T19:54:54Z,247,22,2005-08-26T23:03:54Z,1,2020-02-15T06:59:44Z +12024,2005-08-17T19:57:34Z,2398,484,2005-08-21T23:00:34Z,2,2020-02-15T06:59:44Z +12025,2005-08-17T19:59:06Z,4019,209,2005-08-23T14:39:06Z,2,2020-02-15T06:59:44Z +12026,2005-08-17T20:00:10Z,1568,468,2005-08-26T01:54:10Z,1,2020-02-15T06:59:44Z +12027,2005-08-17T20:01:12Z,45,285,2005-08-26T21:08:12Z,2,2020-02-15T06:59:44Z +12028,2005-08-17T20:03:47Z,607,316,2005-08-23T17:09:47Z,2,2020-02-15T06:59:44Z +12029,2005-08-17T20:07:01Z,3516,148,2005-08-19T19:36:01Z,2,2020-02-15T06:59:44Z +12030,2005-08-17T20:10:48Z,449,434,2005-08-19T00:32:48Z,1,2020-02-15T06:59:44Z +12031,2005-08-17T20:11:35Z,2793,10,2005-08-24T23:48:35Z,2,2020-02-15T06:59:44Z +12032,2005-08-17T20:14:26Z,1106,141,2005-08-26T16:01:26Z,1,2020-02-15T06:59:44Z +12033,2005-08-17T20:14:34Z,2731,321,2005-08-26T00:22:34Z,2,2020-02-15T06:59:44Z +12034,2005-08-17T20:15:31Z,834,321,2005-08-24T15:46:31Z,2,2020-02-15T06:59:44Z +12035,2005-08-17T20:18:06Z,2335,469,2005-08-21T16:41:06Z,2,2020-02-15T06:59:44Z +12036,2005-08-17T20:19:06Z,3620,85,2005-08-18T19:57:06Z,2,2020-02-15T06:59:44Z +12037,2005-08-17T20:21:35Z,766,356,2005-08-22T17:16:35Z,2,2020-02-15T06:59:44Z +12038,2005-08-17T20:28:26Z,3794,148,2005-08-20T23:09:26Z,2,2020-02-15T06:59:44Z +12039,2005-08-17T20:29:08Z,4404,563,2005-08-23T21:20:08Z,2,2020-02-15T06:59:44Z +12040,2005-08-17T20:29:56Z,1288,558,2005-08-26T22:17:56Z,1,2020-02-15T06:59:44Z +12041,2005-08-17T20:34:33Z,2389,295,2005-08-19T00:47:33Z,1,2020-02-15T06:59:44Z +12042,2005-08-17T20:36:37Z,1772,570,2005-08-21T15:03:37Z,1,2020-02-15T06:59:44Z +12043,2005-08-17T20:38:21Z,3706,592,2005-08-22T16:52:21Z,2,2020-02-15T06:59:44Z +12044,2005-08-17T20:39:37Z,3377,388,2005-08-19T18:34:37Z,1,2020-02-15T06:59:44Z +12045,2005-08-17T20:40:46Z,469,556,2005-08-20T18:18:46Z,2,2020-02-15T06:59:44Z +12046,2005-08-17T20:47:46Z,3895,435,2005-08-19T16:09:46Z,2,2020-02-15T06:59:44Z +12047,2005-08-17T20:48:32Z,3886,251,2005-08-26T00:07:32Z,1,2020-02-15T06:59:44Z +12048,2005-08-17T20:49:24Z,3773,466,2005-08-27T02:01:24Z,2,2020-02-15T06:59:44Z +12049,2005-08-17T20:53:27Z,2433,178,2005-08-26T19:45:27Z,2,2020-02-15T06:59:44Z +12050,2005-08-17T20:55:25Z,2348,405,2005-08-22T20:31:25Z,2,2020-02-15T06:59:44Z +12051,2005-08-17T20:56:15Z,4001,579,2005-08-25T19:08:15Z,1,2020-02-15T06:59:44Z +12052,2005-08-17T20:57:02Z,99,536,2005-08-25T19:04:02Z,1,2020-02-15T06:59:44Z +12053,2005-08-17T20:57:27Z,4448,280,2005-08-20T19:51:27Z,1,2020-02-15T06:59:44Z +12054,2005-08-17T20:59:56Z,3780,53,2005-08-23T19:57:56Z,1,2020-02-15T06:59:44Z +12055,2005-08-17T21:02:19Z,1481,35,2005-08-18T15:24:19Z,1,2020-02-15T06:59:44Z +12056,2005-08-17T21:03:48Z,1091,460,2005-08-21T22:42:48Z,2,2020-02-15T06:59:44Z +12057,2005-08-17T21:04:35Z,1878,263,2005-08-25T00:17:35Z,1,2020-02-15T06:59:44Z +12058,2005-08-17T21:07:41Z,2438,540,2005-08-26T16:07:41Z,1,2020-02-15T06:59:44Z +12059,2005-08-17T21:09:23Z,4111,393,2005-08-25T23:09:23Z,1,2020-02-15T06:59:44Z +12060,2005-08-17T21:11:57Z,2373,127,2005-08-21T01:42:57Z,1,2020-02-15T06:59:44Z +12061,2005-08-17T21:13:35Z,144,532,2005-08-22T19:18:35Z,1,2020-02-15T06:59:44Z +12062,2005-08-17T21:24:47Z,1791,330,2005-08-20T20:35:47Z,2,2020-02-15T06:59:44Z +12063,2005-08-17T21:24:48Z,1141,550,2005-08-23T22:10:48Z,2,2020-02-15T06:59:44Z +12064,2006-02-14T15:16:03Z,298,284,,1,2020-02-15T06:59:44Z +12065,2005-08-17T21:31:46Z,3644,77,2005-08-26T02:26:46Z,2,2020-02-15T06:59:44Z +12066,2006-02-14T15:16:03Z,2474,267,,2,2020-02-15T06:59:44Z +12067,2005-08-17T21:36:47Z,2013,514,2005-08-22T01:10:47Z,2,2020-02-15T06:59:44Z +12068,2005-08-17T21:37:08Z,4327,388,2005-08-26T00:10:08Z,1,2020-02-15T06:59:44Z +12069,2005-08-17T21:39:40Z,631,389,2005-08-22T01:12:40Z,2,2020-02-15T06:59:44Z +12070,2005-08-17T21:46:47Z,1357,158,2005-08-22T22:59:47Z,1,2020-02-15T06:59:44Z +12071,2005-08-17T21:49:14Z,1874,507,2005-08-22T18:20:14Z,1,2020-02-15T06:59:44Z +12072,2005-08-17T21:50:25Z,209,61,2005-08-25T22:36:25Z,2,2020-02-15T06:59:44Z +12073,2005-08-17T21:50:39Z,2939,173,2005-08-21T02:59:39Z,1,2020-02-15T06:59:44Z +12074,2005-08-17T21:50:57Z,711,417,2005-08-20T00:58:57Z,2,2020-02-15T06:59:44Z +12075,2005-08-17T21:54:55Z,3147,125,2005-08-23T23:04:55Z,1,2020-02-15T06:59:44Z +12076,2005-08-17T21:58:19Z,4278,298,2005-08-20T22:10:19Z,1,2020-02-15T06:59:44Z +12077,2005-08-17T21:59:14Z,3589,550,2005-08-22T03:23:14Z,1,2020-02-15T06:59:44Z +12078,2005-08-17T22:00:22Z,684,137,2005-08-24T02:54:22Z,2,2020-02-15T06:59:44Z +12079,2005-08-17T22:04:17Z,646,230,2005-08-24T20:22:17Z,2,2020-02-15T06:59:44Z +12080,2005-08-17T22:08:04Z,1491,394,2005-08-19T22:55:04Z,2,2020-02-15T06:59:44Z +12081,2005-08-17T22:10:46Z,620,597,2005-08-22T22:37:46Z,1,2020-02-15T06:59:44Z +12082,2005-08-17T22:13:15Z,3435,521,2005-08-24T18:30:15Z,1,2020-02-15T06:59:44Z +12083,2005-08-17T22:13:37Z,1985,474,2005-08-19T19:01:37Z,2,2020-02-15T06:59:44Z +12084,2005-08-17T22:16:49Z,2706,60,2005-08-24T17:42:49Z,2,2020-02-15T06:59:44Z +12085,2005-08-17T22:17:09Z,600,31,2005-08-21T01:45:09Z,1,2020-02-15T06:59:44Z +12086,2005-08-17T22:20:01Z,3963,140,2005-08-26T02:14:01Z,1,2020-02-15T06:59:44Z +12087,2005-08-17T22:20:12Z,324,144,2005-08-20T02:11:12Z,2,2020-02-15T06:59:44Z +12088,2005-08-17T22:20:16Z,1754,360,2005-08-25T23:30:16Z,2,2020-02-15T06:59:44Z +12089,2005-08-17T22:20:29Z,651,538,2005-08-24T02:12:29Z,1,2020-02-15T06:59:44Z +12090,2005-08-17T22:21:43Z,3392,391,2005-08-20T23:53:43Z,2,2020-02-15T06:59:44Z +12091,2005-08-17T22:22:50Z,2161,555,2005-08-27T03:55:50Z,1,2020-02-15T06:59:44Z +12092,2005-08-17T22:28:15Z,3964,38,2005-08-18T16:46:15Z,2,2020-02-15T06:59:44Z +12093,2005-08-17T22:28:40Z,216,141,2005-08-22T02:05:40Z,1,2020-02-15T06:59:44Z +12094,2005-08-17T22:31:04Z,1050,130,2005-08-23T22:45:04Z,1,2020-02-15T06:59:44Z +12095,2005-08-17T22:32:37Z,1089,46,2005-08-20T04:00:37Z,1,2020-02-15T06:59:44Z +12096,2005-08-17T22:32:50Z,44,463,2005-08-25T03:33:50Z,1,2020-02-15T06:59:44Z +12097,2005-08-17T22:35:24Z,4135,325,2005-08-18T20:31:24Z,2,2020-02-15T06:59:44Z +12098,2005-08-17T22:38:31Z,534,545,2005-08-20T01:56:31Z,1,2020-02-15T06:59:44Z +12099,2005-08-17T22:38:54Z,1743,195,2005-08-18T21:29:54Z,2,2020-02-15T06:59:44Z +12100,2005-08-17T22:41:10Z,4365,391,2005-08-24T21:31:10Z,2,2020-02-15T06:59:44Z +12101,2006-02-14T15:16:03Z,1556,479,,1,2020-02-15T06:59:44Z +12102,2005-08-17T22:45:26Z,4268,392,2005-08-24T01:47:26Z,2,2020-02-15T06:59:44Z +12103,2005-08-17T22:49:09Z,4363,153,2005-08-24T21:53:09Z,1,2020-02-15T06:59:44Z +12104,2005-08-17T22:53:00Z,4551,16,2005-08-23T19:49:00Z,1,2020-02-15T06:59:44Z +12105,2005-08-17T22:54:45Z,2848,390,2005-08-21T00:33:45Z,2,2020-02-15T06:59:44Z +12106,2005-08-17T22:55:32Z,3234,465,2005-08-19T23:55:32Z,2,2020-02-15T06:59:44Z +12107,2005-08-17T22:56:24Z,1060,141,2005-08-24T19:36:24Z,1,2020-02-15T06:59:44Z +12108,2005-08-17T22:56:39Z,1675,207,2005-08-26T19:37:39Z,1,2020-02-15T06:59:44Z +12109,2005-08-17T22:58:35Z,1423,509,2005-08-25T19:44:35Z,2,2020-02-15T06:59:44Z +12110,2005-08-17T22:59:46Z,2984,511,2005-08-23T17:51:46Z,1,2020-02-15T06:59:44Z +12111,2005-08-17T22:59:55Z,2905,317,2005-08-22T19:33:55Z,2,2020-02-15T06:59:44Z +12112,2005-08-17T23:00:31Z,4290,576,2005-08-25T02:05:31Z,1,2020-02-15T06:59:44Z +12113,2005-08-17T23:01:00Z,2707,393,2005-08-25T03:57:00Z,2,2020-02-15T06:59:44Z +12114,2005-08-17T23:02:00Z,1405,65,2005-08-26T18:02:00Z,1,2020-02-15T06:59:44Z +12115,2005-08-17T23:04:15Z,1228,457,2005-08-20T22:25:15Z,2,2020-02-15T06:59:44Z +12116,2006-02-14T15:16:03Z,3082,560,,2,2020-02-15T06:59:44Z +12117,2005-08-17T23:11:12Z,4140,303,2005-08-22T23:56:12Z,1,2020-02-15T06:59:44Z +12118,2005-08-17T23:14:25Z,158,89,2005-08-26T22:26:25Z,1,2020-02-15T06:59:44Z +12119,2005-08-17T23:16:44Z,4298,567,2005-08-20T02:13:44Z,2,2020-02-15T06:59:44Z +12120,2005-08-17T23:16:46Z,2912,323,2005-08-19T00:11:46Z,2,2020-02-15T06:59:44Z +12121,2005-08-17T23:20:40Z,3423,69,2005-08-22T21:30:40Z,2,2020-02-15T06:59:44Z +12122,2005-08-17T23:20:45Z,4030,375,2005-08-25T04:23:45Z,2,2020-02-15T06:59:44Z +12123,2005-08-17T23:22:18Z,361,497,2005-08-19T23:36:18Z,2,2020-02-15T06:59:44Z +12124,2005-08-17T23:22:46Z,2036,22,2005-08-21T01:40:46Z,1,2020-02-15T06:59:44Z +12125,2005-08-17T23:24:25Z,136,573,2005-08-25T03:08:25Z,2,2020-02-15T06:59:44Z +12126,2005-08-17T23:25:21Z,2304,302,2005-08-23T21:51:21Z,1,2020-02-15T06:59:44Z +12127,2006-02-14T15:16:03Z,4218,582,,2,2020-02-15T06:59:44Z +12128,2005-08-17T23:31:09Z,2252,415,2005-08-24T05:07:09Z,2,2020-02-15T06:59:44Z +12129,2005-08-17T23:31:25Z,891,146,2005-08-26T19:10:25Z,2,2020-02-15T06:59:44Z +12130,2006-02-14T15:16:03Z,1358,516,,2,2020-02-15T06:59:44Z +12131,2005-08-17T23:34:16Z,3380,21,2005-08-26T01:18:16Z,1,2020-02-15T06:59:44Z +12132,2005-08-17T23:37:03Z,2600,403,2005-08-22T04:53:03Z,2,2020-02-15T06:59:44Z +12133,2005-08-17T23:47:16Z,1958,132,2005-08-19T03:46:16Z,2,2020-02-15T06:59:44Z +12134,2005-08-17T23:49:43Z,2682,288,2005-08-21T21:00:43Z,1,2020-02-15T06:59:44Z +12135,2005-08-17T23:50:24Z,1019,381,2005-08-23T18:01:24Z,2,2020-02-15T06:59:44Z +12136,2005-08-17T23:51:30Z,3944,527,2005-08-23T01:35:30Z,1,2020-02-15T06:59:44Z +12137,2005-08-17T23:52:26Z,3632,109,2005-08-27T00:19:26Z,1,2020-02-15T06:59:44Z +12138,2005-08-17T23:55:54Z,388,317,2005-08-26T23:32:54Z,1,2020-02-15T06:59:44Z +12139,2005-08-17T23:57:13Z,1537,342,2005-08-24T19:13:13Z,1,2020-02-15T06:59:44Z +12140,2005-08-17T23:57:55Z,322,408,2005-08-21T20:09:55Z,2,2020-02-15T06:59:44Z +12141,2006-02-14T15:16:03Z,731,101,,1,2020-02-15T06:59:44Z +12142,2005-08-18T00:04:12Z,3748,373,2005-08-24T01:24:12Z,2,2020-02-15T06:59:44Z +12143,2005-08-18T00:06:26Z,2876,117,2005-08-24T02:45:26Z,2,2020-02-15T06:59:44Z +12144,2006-02-14T15:16:03Z,512,587,,1,2020-02-15T06:59:44Z +12145,2005-08-18T00:10:04Z,3482,5,2005-08-26T00:51:04Z,1,2020-02-15T06:59:44Z +12146,2005-08-18T00:10:04Z,3833,434,2005-08-25T19:18:04Z,2,2020-02-15T06:59:44Z +12147,2005-08-18T00:10:20Z,705,41,2005-08-23T20:36:20Z,2,2020-02-15T06:59:44Z +12148,2005-08-18T00:13:15Z,2409,254,2005-08-20T01:27:15Z,2,2020-02-15T06:59:44Z +12149,2005-08-18T00:13:51Z,3696,277,2005-08-26T19:47:51Z,1,2020-02-15T06:59:44Z +12150,2005-08-18T00:13:55Z,3781,555,2005-08-20T23:35:55Z,2,2020-02-15T06:59:44Z +12151,2005-08-18T00:14:03Z,1976,4,2005-08-18T23:52:03Z,2,2020-02-15T06:59:44Z +12152,2005-08-18T00:21:35Z,2797,367,2005-08-22T02:51:35Z,1,2020-02-15T06:59:44Z +12153,2005-08-18T00:22:30Z,3929,387,2005-08-23T04:13:30Z,2,2020-02-15T06:59:44Z +12154,2005-08-18T00:23:56Z,2491,163,2005-08-21T00:31:56Z,2,2020-02-15T06:59:44Z +12155,2005-08-18T00:24:30Z,2065,315,2005-08-18T19:12:30Z,2,2020-02-15T06:59:44Z +12156,2005-08-18T00:27:33Z,3270,212,2005-08-26T01:43:33Z,1,2020-02-15T06:59:44Z +12157,2005-08-18T00:33:45Z,2311,569,2005-08-22T19:33:45Z,1,2020-02-15T06:59:44Z +12158,2005-08-18T00:34:20Z,4121,289,2005-08-22T20:10:20Z,2,2020-02-15T06:59:44Z +12159,2005-08-18T00:36:09Z,2243,106,2005-08-27T06:31:09Z,1,2020-02-15T06:59:44Z +12160,2005-08-18T00:37:59Z,1328,481,2005-08-19T20:51:59Z,1,2020-02-15T06:59:44Z +12161,2005-08-18T00:41:46Z,2420,444,2005-08-26T22:59:46Z,2,2020-02-15T06:59:44Z +12162,2005-08-18T00:44:30Z,2697,284,2005-08-25T03:34:30Z,1,2020-02-15T06:59:44Z +12163,2005-08-18T00:46:01Z,1349,455,2005-08-22T06:16:01Z,1,2020-02-15T06:59:44Z +12164,2005-08-18T00:46:38Z,3849,587,2005-08-19T04:38:38Z,2,2020-02-15T06:59:44Z +12165,2005-08-18T00:53:37Z,4215,24,2005-08-27T00:09:37Z,2,2020-02-15T06:59:44Z +12166,2005-08-18T00:57:06Z,3627,184,2005-08-26T03:13:06Z,2,2020-02-15T06:59:44Z +12167,2005-08-18T01:00:02Z,3085,338,2005-08-21T00:04:02Z,2,2020-02-15T06:59:44Z +12168,2005-08-18T01:03:52Z,2859,535,2005-08-18T20:19:52Z,1,2020-02-15T06:59:44Z +12169,2005-08-18T01:05:54Z,2281,323,2005-08-24T02:16:54Z,2,2020-02-15T06:59:44Z +12170,2005-08-18T01:06:10Z,1125,289,2005-08-25T02:40:10Z,2,2020-02-15T06:59:44Z +12171,2005-08-18T01:06:13Z,454,457,2005-08-22T19:39:13Z,2,2020-02-15T06:59:44Z +12172,2005-08-18T01:07:00Z,1162,226,2005-08-22T21:01:00Z,2,2020-02-15T06:59:44Z +12173,2005-08-18T01:08:34Z,2830,41,2005-08-24T20:52:34Z,1,2020-02-15T06:59:44Z +12174,2005-08-18T01:08:53Z,1458,101,2005-08-20T03:28:53Z,1,2020-02-15T06:59:44Z +12175,2005-08-18T01:10:17Z,4558,328,2005-08-19T05:25:17Z,2,2020-02-15T06:59:44Z +12176,2005-08-18T01:10:33Z,3873,255,2005-08-24T02:45:33Z,2,2020-02-15T06:59:44Z +12177,2005-08-18T01:15:47Z,522,470,2005-08-24T23:23:47Z,2,2020-02-15T06:59:44Z +12178,2005-08-18T01:17:32Z,1152,276,2005-08-25T19:32:32Z,1,2020-02-15T06:59:44Z +12179,2005-08-18T01:21:21Z,1499,222,2005-08-19T00:59:21Z,1,2020-02-15T06:59:44Z +12180,2005-08-18T01:28:15Z,2276,20,2005-08-20T20:52:15Z,2,2020-02-15T06:59:44Z +12181,2005-08-18T01:28:18Z,532,81,2005-08-23T21:17:18Z,2,2020-02-15T06:59:44Z +12182,2005-08-18T01:30:19Z,296,555,2005-08-21T05:52:19Z,1,2020-02-15T06:59:44Z +12183,2005-08-18T01:34:13Z,3153,344,2005-08-24T04:38:13Z,1,2020-02-15T06:59:44Z +12184,2005-08-18T01:36:00Z,1723,51,2005-08-21T01:59:00Z,1,2020-02-15T06:59:44Z +12185,2005-08-18T01:40:14Z,1558,588,2005-08-25T05:04:14Z,1,2020-02-15T06:59:44Z +12186,2005-08-18T01:43:36Z,1342,312,2005-08-23T07:13:36Z,1,2020-02-15T06:59:44Z +12187,2005-08-18T01:45:50Z,3360,38,2005-08-22T20:12:50Z,1,2020-02-15T06:59:44Z +12188,2005-08-18T01:51:43Z,2989,456,2005-08-18T22:23:43Z,1,2020-02-15T06:59:44Z +12189,2005-08-18T01:51:44Z,1764,363,2005-08-26T01:01:44Z,1,2020-02-15T06:59:44Z +12190,2005-08-18T01:54:44Z,2464,28,2005-08-27T04:32:44Z,1,2020-02-15T06:59:44Z +12191,2005-08-18T01:57:11Z,2667,316,2005-08-22T22:53:11Z,2,2020-02-15T06:59:44Z +12192,2005-08-18T02:01:40Z,3450,270,2005-08-21T05:45:40Z,1,2020-02-15T06:59:44Z +12193,2005-08-18T02:03:59Z,1086,290,2005-08-25T05:32:59Z,2,2020-02-15T06:59:44Z +12194,2005-08-18T02:04:47Z,292,558,2005-08-25T20:45:47Z,2,2020-02-15T06:59:44Z +12195,2005-08-18T02:07:49Z,943,347,2005-08-19T23:54:49Z,2,2020-02-15T06:59:44Z +12196,2005-08-18T02:08:48Z,4302,111,2005-08-26T00:39:48Z,1,2020-02-15T06:59:44Z +12197,2005-08-18T02:08:58Z,3687,564,2005-08-26T21:54:58Z,2,2020-02-15T06:59:44Z +12198,2005-08-18T02:09:20Z,1628,86,2005-08-21T21:28:20Z,2,2020-02-15T06:59:44Z +12199,2005-08-18T02:09:23Z,424,96,2005-08-22T20:33:23Z,1,2020-02-15T06:59:44Z +12200,2005-08-18T02:12:33Z,840,52,2005-08-18T20:47:33Z,2,2020-02-15T06:59:44Z +12201,2005-08-18T02:14:06Z,3676,540,2005-08-23T04:44:06Z,1,2020-02-15T06:59:44Z +12202,2005-08-18T02:14:08Z,672,563,2005-08-24T04:35:08Z,1,2020-02-15T06:59:44Z +12203,2005-08-18T02:18:52Z,4228,591,2005-08-22T21:01:52Z,1,2020-02-15T06:59:44Z +12204,2005-08-18T02:20:35Z,304,575,2005-08-26T01:27:35Z,2,2020-02-15T06:59:44Z +12205,2005-08-18T02:21:08Z,774,437,2005-08-27T00:08:08Z,2,2020-02-15T06:59:44Z +12206,2005-08-18T02:22:20Z,3275,254,2005-08-23T05:36:20Z,1,2020-02-15T06:59:44Z +12207,2005-08-18T02:24:07Z,3745,265,2005-08-22T07:53:07Z,1,2020-02-15T06:59:44Z +12208,2005-08-18T02:25:25Z,2039,551,2005-08-20T04:53:25Z,2,2020-02-15T06:59:44Z +12209,2005-08-18T02:27:20Z,279,243,2005-08-21T00:41:20Z,2,2020-02-15T06:59:44Z +12210,2005-08-18T02:27:29Z,3035,217,2005-08-20T23:32:29Z,2,2020-02-15T06:59:44Z +12211,2005-08-18T02:31:18Z,1484,19,2005-08-26T02:36:18Z,1,2020-02-15T06:59:44Z +12212,2005-08-18T02:33:29Z,3898,449,2005-08-25T07:10:29Z,2,2020-02-15T06:59:44Z +12213,2005-08-18T02:33:55Z,4058,157,2005-08-24T03:14:55Z,1,2020-02-15T06:59:44Z +12214,2005-08-18T02:34:22Z,2094,231,2005-08-21T07:48:22Z,2,2020-02-15T06:59:44Z +12215,2005-08-18T02:35:39Z,4095,47,2005-08-24T00:36:39Z,1,2020-02-15T06:59:44Z +12216,2005-08-18T02:37:07Z,4139,131,2005-08-19T02:09:07Z,2,2020-02-15T06:59:44Z +12217,2005-08-18T02:44:44Z,2556,105,2005-08-24T03:27:44Z,1,2020-02-15T06:59:44Z +12218,2005-08-18T02:48:14Z,1933,70,2005-08-21T01:52:14Z,2,2020-02-15T06:59:44Z +12219,2005-08-18T02:49:54Z,2249,271,2005-08-23T07:52:54Z,1,2020-02-15T06:59:44Z +12220,2005-08-18T02:50:02Z,982,530,2005-08-22T00:20:02Z,1,2020-02-15T06:59:44Z +12221,2005-08-18T02:50:51Z,2488,98,2005-08-27T06:22:51Z,2,2020-02-15T06:59:44Z +12222,2006-02-14T15:16:03Z,3949,22,,1,2020-02-15T06:59:44Z +12223,2005-08-18T02:58:40Z,4142,397,2005-08-23T23:30:40Z,2,2020-02-15T06:59:44Z +12224,2005-08-18T02:59:09Z,1781,372,2005-08-19T06:22:09Z,1,2020-02-15T06:59:44Z +12225,2005-08-18T03:00:11Z,1876,306,2005-08-24T05:01:11Z,1,2020-02-15T06:59:44Z +12226,2005-08-18T03:00:48Z,682,234,2005-08-25T00:43:48Z,2,2020-02-15T06:59:44Z +12227,2005-08-18T03:04:28Z,3671,591,2005-08-21T08:52:28Z,2,2020-02-15T06:59:44Z +12228,2005-08-18T03:08:10Z,2772,9,2005-08-20T02:48:10Z,1,2020-02-15T06:59:44Z +12229,2005-08-18T03:08:23Z,1123,382,2005-08-22T03:42:23Z,1,2020-02-15T06:59:44Z +12230,2005-08-18T03:11:04Z,1910,231,2005-08-27T04:06:04Z,1,2020-02-15T06:59:44Z +12231,2005-08-18T03:11:44Z,1115,231,2005-08-24T03:26:44Z,1,2020-02-15T06:59:44Z +12232,2005-08-18T03:14:14Z,2399,87,2005-08-19T05:44:14Z,2,2020-02-15T06:59:44Z +12233,2005-08-18T03:16:54Z,174,535,2005-08-22T04:48:54Z,2,2020-02-15T06:59:44Z +12234,2005-08-18T03:17:33Z,3823,352,2005-08-25T04:44:33Z,2,2020-02-15T06:59:44Z +12235,2005-08-18T03:17:50Z,957,595,2005-08-20T02:49:50Z,1,2020-02-15T06:59:44Z +12236,2005-08-18T03:19:29Z,1190,474,2005-08-23T07:39:29Z,2,2020-02-15T06:59:44Z +12237,2005-08-18T03:24:38Z,4422,381,2005-08-25T09:05:38Z,1,2020-02-15T06:59:44Z +12238,2005-08-18T03:25:08Z,4043,46,2005-08-20T02:41:08Z,2,2020-02-15T06:59:44Z +12239,2005-08-18T03:26:42Z,1948,75,2005-08-24T23:48:42Z,1,2020-02-15T06:59:44Z +12240,2005-08-18T03:27:11Z,1168,30,2005-08-26T04:34:11Z,2,2020-02-15T06:59:44Z +12241,2005-08-18T03:33:17Z,1261,248,2005-08-21T03:13:17Z,2,2020-02-15T06:59:44Z +12242,2005-08-18T03:37:31Z,2095,121,2005-08-25T06:50:31Z,1,2020-02-15T06:59:44Z +12243,2005-08-18T03:38:54Z,1829,354,2005-08-27T06:56:54Z,2,2020-02-15T06:59:44Z +12244,2005-08-18T03:39:11Z,4441,362,2005-08-21T02:57:11Z,2,2020-02-15T06:59:44Z +12245,2005-08-18T03:46:40Z,2960,576,2005-08-24T22:27:40Z,2,2020-02-15T06:59:44Z +12246,2005-08-18T03:48:41Z,3199,258,2005-08-25T05:12:41Z,1,2020-02-15T06:59:44Z +12247,2005-08-18T03:51:51Z,2264,254,2005-08-24T05:36:51Z,2,2020-02-15T06:59:44Z +12248,2005-08-18T03:53:18Z,2120,562,2005-08-22T04:53:18Z,1,2020-02-15T06:59:44Z +12249,2005-08-18T03:53:34Z,3586,135,2005-08-21T01:14:34Z,1,2020-02-15T06:59:44Z +12250,2005-08-18T03:57:29Z,921,1,2005-08-22T23:05:29Z,1,2020-02-15T06:59:44Z +12251,2005-08-18T03:59:02Z,3044,276,2005-08-19T02:38:02Z,1,2020-02-15T06:59:44Z +12252,2005-08-18T03:59:51Z,127,350,2005-08-25T08:54:51Z,2,2020-02-15T06:59:44Z +12253,2005-08-18T04:00:50Z,566,446,2005-08-19T04:43:50Z,1,2020-02-15T06:59:44Z +12254,2005-08-18T04:05:29Z,2858,6,2005-08-23T04:17:29Z,1,2020-02-15T06:59:44Z +12255,2005-08-18T04:07:20Z,2100,266,2005-08-21T22:19:20Z,1,2020-02-15T06:59:44Z +12256,2005-08-18T04:09:39Z,2975,572,2005-08-22T01:53:39Z,2,2020-02-15T06:59:45Z +12257,2005-08-18T04:11:03Z,269,87,2005-08-25T01:20:03Z,2,2020-02-15T06:59:45Z +12258,2005-08-18T04:11:13Z,2861,83,2005-08-21T23:40:13Z,2,2020-02-15T06:59:45Z +12259,2005-08-18T04:14:35Z,2904,429,2005-08-18T22:30:35Z,2,2020-02-15T06:59:45Z +12260,2005-08-18T04:15:43Z,1352,150,2005-08-26T23:31:43Z,1,2020-02-15T06:59:45Z +12261,2005-08-18T04:16:06Z,4076,485,2005-08-27T08:04:06Z,1,2020-02-15T06:59:45Z +12262,2005-08-18T04:16:15Z,591,125,2005-08-20T09:16:15Z,1,2020-02-15T06:59:45Z +12263,2005-08-18T04:16:18Z,4053,131,2005-08-21T07:22:18Z,1,2020-02-15T06:59:45Z +12264,2005-08-18T04:17:33Z,3073,87,2005-08-26T08:07:33Z,1,2020-02-15T06:59:45Z +12265,2005-08-18T04:22:01Z,537,247,2005-08-20T03:22:01Z,1,2020-02-15T06:59:45Z +12266,2005-08-18T04:22:31Z,2192,467,2005-08-19T04:25:31Z,2,2020-02-15T06:59:45Z +12267,2005-08-18T04:24:30Z,652,388,2005-08-26T03:01:30Z,2,2020-02-15T06:59:45Z +12268,2005-08-18T04:26:54Z,93,39,2005-08-23T06:40:54Z,2,2020-02-15T06:59:45Z +12269,2005-08-18T04:27:54Z,724,573,2005-08-25T07:03:54Z,1,2020-02-15T06:59:45Z +12270,2005-08-18T04:32:05Z,2456,190,2005-08-21T01:37:05Z,2,2020-02-15T06:59:45Z +12271,2005-08-18T04:33:11Z,3866,471,2005-08-20T23:10:11Z,1,2020-02-15T06:59:45Z +12272,2005-08-18T04:39:10Z,1964,15,2005-08-24T09:41:10Z,1,2020-02-15T06:59:45Z +12273,2005-08-18T04:40:50Z,3539,431,2005-08-25T01:44:50Z,2,2020-02-15T06:59:45Z +12274,2005-08-18T04:41:47Z,265,47,2005-08-27T07:00:47Z,1,2020-02-15T06:59:45Z +12275,2005-08-18T04:42:02Z,1474,507,2005-08-25T00:50:02Z,1,2020-02-15T06:59:45Z +12276,2005-08-18T04:43:22Z,4491,397,2005-08-22T01:49:22Z,2,2020-02-15T06:59:45Z +12277,2006-02-14T15:16:03Z,407,33,,2,2020-02-15T06:59:45Z +12278,2005-08-18T04:46:45Z,3205,294,2005-08-24T08:59:45Z,2,2020-02-15T06:59:45Z +12279,2005-08-18T04:47:30Z,4159,421,2005-08-19T09:47:30Z,2,2020-02-15T06:59:45Z +12280,2005-08-18T04:49:27Z,4032,46,2005-08-21T03:39:27Z,2,2020-02-15T06:59:45Z +12281,2005-08-18T04:50:32Z,4576,417,2005-08-21T00:14:32Z,2,2020-02-15T06:59:45Z +12282,2005-08-18T04:54:20Z,3623,173,2005-08-23T05:28:20Z,2,2020-02-15T06:59:45Z +12283,2005-08-18T04:54:25Z,574,240,2005-08-23T04:02:25Z,1,2020-02-15T06:59:45Z +12284,2005-08-18T04:55:49Z,3162,147,2005-08-22T08:45:49Z,2,2020-02-15T06:59:45Z +12285,2005-08-18T04:56:43Z,3531,215,2005-08-19T23:32:43Z,2,2020-02-15T06:59:45Z +12286,2005-08-18T04:57:59Z,3729,34,2005-08-18T23:20:59Z,2,2020-02-15T06:59:45Z +12287,2005-08-18T04:58:06Z,2238,136,2005-08-24T00:06:06Z,1,2020-02-15T06:59:45Z +12288,2005-08-18T05:01:20Z,4401,523,2005-08-25T09:51:20Z,2,2020-02-15T06:59:45Z +12289,2005-08-18T05:05:28Z,443,575,2005-08-26T09:02:28Z,1,2020-02-15T06:59:45Z +12290,2005-08-18T05:08:03Z,4100,283,2005-08-23T08:10:03Z,2,2020-02-15T06:59:45Z +12291,2005-08-18T05:08:37Z,4270,73,2005-08-23T09:01:37Z,1,2020-02-15T06:59:45Z +12292,2005-08-18T05:08:54Z,1417,58,2005-08-27T02:51:54Z,1,2020-02-15T06:59:45Z +12293,2005-08-18T05:13:36Z,614,514,2005-08-25T04:00:36Z,2,2020-02-15T06:59:45Z +12294,2005-08-18T05:14:44Z,2479,4,2005-08-27T01:32:44Z,2,2020-02-15T06:59:45Z +12295,2005-08-18T05:15:46Z,1651,532,2005-08-26T02:23:46Z,2,2020-02-15T06:59:45Z +12296,2005-08-18T05:16:28Z,2091,258,2005-08-22T10:32:28Z,1,2020-02-15T06:59:45Z +12297,2005-08-18T05:19:57Z,903,436,2005-08-21T00:53:57Z,1,2020-02-15T06:59:45Z +12298,2005-08-18T05:30:31Z,904,46,2005-08-27T07:33:31Z,1,2020-02-15T06:59:45Z +12299,2005-08-18T05:32:32Z,892,176,2005-08-22T08:14:32Z,2,2020-02-15T06:59:45Z +12300,2005-08-18T05:36:14Z,3213,540,2005-08-25T00:20:14Z,2,2020-02-15T06:59:45Z +12301,2005-08-18T05:36:20Z,2293,317,2005-08-23T03:15:20Z,1,2020-02-15T06:59:45Z +12302,2005-08-18T05:41:39Z,765,514,2005-08-22T06:02:39Z,1,2020-02-15T06:59:45Z +12303,2005-08-18T05:43:22Z,1604,245,2005-08-27T08:54:22Z,2,2020-02-15T06:59:45Z +12304,2005-08-18T05:44:29Z,1381,228,2005-08-24T04:31:29Z,1,2020-02-15T06:59:45Z +12305,2005-08-18T05:46:29Z,4463,534,2005-08-22T11:14:29Z,2,2020-02-15T06:59:45Z +12306,2005-08-18T05:47:55Z,3853,541,2005-08-21T01:56:55Z,1,2020-02-15T06:59:45Z +12307,2005-08-18T05:48:23Z,2679,187,2005-08-26T02:32:23Z,1,2020-02-15T06:59:45Z +12308,2005-08-18T05:48:53Z,2877,569,2005-08-22T09:03:53Z,1,2020-02-15T06:59:45Z +12309,2005-08-18T05:58:40Z,762,9,2005-08-20T02:20:40Z,2,2020-02-15T06:59:45Z +12310,2005-08-18T06:02:34Z,3814,385,2005-08-24T01:08:34Z,2,2020-02-15T06:59:45Z +12311,2005-08-18T06:07:00Z,1650,211,2005-08-21T07:54:00Z,2,2020-02-15T06:59:45Z +12312,2005-08-18T06:07:26Z,80,185,2005-08-21T02:07:26Z,2,2020-02-15T06:59:45Z +12313,2005-08-18T06:07:31Z,2053,180,2005-08-27T00:20:31Z,1,2020-02-15T06:59:45Z +12314,2005-08-18T06:10:02Z,2204,455,2005-08-25T02:48:02Z,1,2020-02-15T06:59:45Z +12315,2005-08-18T06:15:06Z,2012,579,2005-08-24T07:45:06Z,2,2020-02-15T06:59:45Z +12316,2005-08-18T06:16:09Z,4325,94,2005-08-27T05:54:09Z,2,2020-02-15T06:59:45Z +12317,2005-08-18T06:17:06Z,90,510,2005-08-22T08:56:06Z,1,2020-02-15T06:59:45Z +12318,2005-08-18T06:21:56Z,3694,332,2005-08-27T06:07:56Z,1,2020-02-15T06:59:45Z +12319,2005-08-18T06:26:45Z,999,368,2005-08-23T01:35:45Z,1,2020-02-15T06:59:45Z +12320,2005-08-18T06:26:51Z,3248,267,2005-08-20T04:00:51Z,1,2020-02-15T06:59:45Z +12321,2005-08-18T06:27:05Z,516,274,2005-08-24T02:26:05Z,1,2020-02-15T06:59:45Z +12322,2005-08-18T06:35:28Z,4235,365,2005-08-23T07:34:28Z,1,2020-02-15T06:59:45Z +12323,2005-08-18T06:36:22Z,4107,336,2005-08-26T11:36:22Z,1,2020-02-15T06:59:45Z +12324,2005-08-18T06:38:20Z,2436,221,2005-08-20T02:28:20Z,2,2020-02-15T06:59:45Z +12325,2005-08-18T06:41:30Z,1844,404,2005-08-26T02:49:30Z,1,2020-02-15T06:59:45Z +12326,2005-08-18T06:41:59Z,1865,114,2005-08-19T10:16:59Z,2,2020-02-15T06:59:45Z +12327,2005-08-18T06:43:22Z,2425,261,2005-08-25T10:50:22Z,2,2020-02-15T06:59:45Z +12328,2005-08-18T06:43:56Z,1355,77,2005-08-23T10:19:56Z,2,2020-02-15T06:59:45Z +12329,2005-08-18T06:44:30Z,3127,397,2005-08-25T04:05:30Z,1,2020-02-15T06:59:45Z +12330,2005-08-18T06:46:33Z,889,587,2005-08-26T11:35:33Z,2,2020-02-15T06:59:45Z +12331,2005-08-18T06:47:19Z,4565,483,2005-08-25T05:51:19Z,2,2020-02-15T06:59:45Z +12332,2005-08-18T06:51:05Z,627,235,2005-08-20T04:28:05Z,2,2020-02-15T06:59:45Z +12333,2005-08-18T06:51:39Z,4370,18,2005-08-21T01:44:39Z,2,2020-02-15T06:59:45Z +12334,2005-08-18T06:52:36Z,2629,160,2005-08-25T12:06:36Z,1,2020-02-15T06:59:45Z +12335,2005-08-18T06:59:15Z,2776,150,2005-08-20T06:47:15Z,1,2020-02-15T06:59:45Z +12336,2005-08-18T06:59:41Z,2484,75,2005-08-23T01:36:41Z,1,2020-02-15T06:59:45Z +12337,2005-08-18T07:02:24Z,4221,117,2005-08-20T10:11:24Z,1,2020-02-15T06:59:45Z +12338,2005-08-18T07:04:24Z,274,408,2005-08-19T08:36:24Z,2,2020-02-15T06:59:45Z +12339,2005-08-18T07:05:06Z,1600,370,2005-08-19T02:27:06Z,2,2020-02-15T06:59:45Z +12340,2005-08-18T07:07:01Z,3561,239,2005-08-20T05:06:01Z,1,2020-02-15T06:59:45Z +12341,2005-08-18T07:09:27Z,130,154,2005-08-21T03:44:27Z,1,2020-02-15T06:59:45Z +12342,2005-08-18T07:12:46Z,1408,63,2005-08-21T07:44:46Z,1,2020-02-15T06:59:45Z +12343,2005-08-18T07:15:13Z,448,507,2005-08-27T11:07:13Z,1,2020-02-15T06:59:45Z +12344,2005-08-18T07:15:19Z,3675,269,2005-08-24T04:58:19Z,2,2020-02-15T06:59:45Z +12345,2005-08-18T07:16:58Z,2359,44,2005-08-25T05:50:58Z,1,2020-02-15T06:59:45Z +12346,2005-08-18T07:17:55Z,1200,265,2005-08-21T11:35:55Z,2,2020-02-15T06:59:45Z +12347,2005-08-18T07:18:10Z,1788,454,2005-08-19T05:49:10Z,1,2020-02-15T06:59:45Z +12348,2005-08-18T07:21:47Z,434,186,2005-08-25T04:41:47Z,2,2020-02-15T06:59:45Z +12349,2005-08-18T07:23:42Z,4191,545,2005-08-19T04:25:42Z,1,2020-02-15T06:59:45Z +12350,2005-08-18T07:29:46Z,1333,172,2005-08-21T12:50:46Z,1,2020-02-15T06:59:45Z +12351,2005-08-18T07:32:12Z,2299,95,2005-08-24T04:29:12Z,2,2020-02-15T06:59:45Z +12352,2006-02-14T15:16:03Z,643,155,,1,2020-02-15T06:59:45Z +12353,2005-08-18T07:33:08Z,1594,141,2005-08-21T03:42:08Z,2,2020-02-15T06:59:45Z +12354,2005-08-18T07:34:07Z,2913,499,2005-08-26T05:56:07Z,1,2020-02-15T06:59:45Z +12355,2005-08-18T07:36:23Z,4112,452,2005-08-20T08:59:23Z,1,2020-02-15T06:59:45Z +12356,2005-08-18T07:37:05Z,493,529,2005-08-24T10:49:05Z,1,2020-02-15T06:59:45Z +12357,2005-08-18T07:40:52Z,166,19,2005-08-22T02:51:52Z,1,2020-02-15T06:59:45Z +12358,2005-08-18T07:41:43Z,504,16,2005-08-20T03:46:43Z,1,2020-02-15T06:59:45Z +12359,2005-08-18T07:44:05Z,4172,28,2005-08-19T02:26:05Z,1,2020-02-15T06:59:45Z +12360,2005-08-18T07:46:35Z,929,123,2005-08-26T12:01:35Z,1,2020-02-15T06:59:45Z +12361,2005-08-18T07:47:31Z,1418,250,2005-08-22T12:08:31Z,2,2020-02-15T06:59:45Z +12362,2005-08-18T07:48:05Z,3131,367,2005-08-20T05:16:05Z,2,2020-02-15T06:59:45Z +12363,2005-08-18T07:52:49Z,3447,181,2005-08-26T03:20:49Z,2,2020-02-15T06:59:45Z +12364,2005-08-18T07:55:09Z,3398,84,2005-08-19T05:29:09Z,2,2020-02-15T06:59:45Z +12365,2005-08-18T07:55:09Z,4350,303,2005-08-24T05:42:09Z,1,2020-02-15T06:59:45Z +12366,2005-08-18T07:55:14Z,3799,115,2005-08-22T06:12:14Z,1,2020-02-15T06:59:45Z +12367,2005-08-18T07:57:14Z,1822,7,2005-08-27T07:07:14Z,2,2020-02-15T06:59:45Z +12368,2005-08-18T07:57:38Z,3777,392,2005-08-25T05:49:38Z,2,2020-02-15T06:59:45Z +12369,2005-08-18T07:57:43Z,484,337,2005-08-26T09:36:43Z,1,2020-02-15T06:59:45Z +12370,2005-08-18T07:57:47Z,3343,503,2005-08-22T11:32:47Z,1,2020-02-15T06:59:45Z +12371,2005-08-18T08:02:46Z,622,451,2005-08-19T02:50:46Z,2,2020-02-15T06:59:45Z +12372,2005-08-18T08:04:35Z,2982,131,2005-08-27T08:13:35Z,2,2020-02-15T06:59:45Z +12373,2005-08-18T08:07:25Z,777,367,2005-08-27T03:41:25Z,1,2020-02-15T06:59:45Z +12374,2005-08-18T08:07:45Z,939,74,2005-08-26T10:42:45Z,2,2020-02-15T06:59:45Z +12375,2005-08-18T08:20:08Z,3508,365,2005-08-21T08:50:08Z,2,2020-02-15T06:59:45Z +12376,2005-08-18T08:20:29Z,852,116,2005-08-20T13:20:29Z,1,2020-02-15T06:59:45Z +12377,2005-08-18T08:26:05Z,4564,31,2005-08-23T02:51:05Z,2,2020-02-15T06:59:45Z +12378,2005-08-18T08:26:13Z,4418,266,2005-08-19T07:21:13Z,1,2020-02-15T06:59:45Z +12379,2005-08-18T08:26:48Z,2879,99,2005-08-19T10:08:48Z,2,2020-02-15T06:59:45Z +12380,2005-08-18T08:27:28Z,55,215,2005-08-25T02:58:28Z,2,2020-02-15T06:59:45Z +12381,2005-08-18T08:31:43Z,3651,190,2005-08-23T12:24:43Z,2,2020-02-15T06:59:45Z +12382,2005-08-18T08:32:33Z,3049,566,2005-08-26T03:45:33Z,2,2020-02-15T06:59:45Z +12383,2005-08-18T08:36:03Z,1641,295,2005-08-23T03:30:03Z,2,2020-02-15T06:59:45Z +12384,2005-08-18T08:36:58Z,2557,193,2005-08-23T05:08:58Z,1,2020-02-15T06:59:45Z +12385,2005-08-18T08:39:33Z,3143,146,2005-08-21T14:22:33Z,1,2020-02-15T06:59:45Z +12386,2005-08-18T08:45:57Z,3303,199,2005-08-24T04:50:57Z,2,2020-02-15T06:59:45Z +12387,2005-08-18T08:46:24Z,3604,530,2005-08-21T02:56:24Z,2,2020-02-15T06:59:45Z +12388,2005-08-18T08:48:09Z,4016,555,2005-08-26T09:05:09Z,2,2020-02-15T06:59:45Z +12389,2005-08-18T08:48:36Z,1891,394,2005-08-22T08:59:36Z,2,2020-02-15T06:59:45Z +12390,2005-08-18T08:51:42Z,3603,377,2005-08-23T13:06:42Z,1,2020-02-15T06:59:45Z +12391,2005-08-18T08:52:53Z,1507,307,2005-08-22T12:15:53Z,2,2020-02-15T06:59:45Z +12392,2005-08-18T08:57:58Z,2695,113,2005-08-25T05:20:58Z,2,2020-02-15T06:59:45Z +12393,2005-08-18T09:02:41Z,2435,396,2005-08-26T12:47:41Z,1,2020-02-15T06:59:45Z +12394,2005-08-18T09:05:15Z,3605,330,2005-08-23T11:10:15Z,1,2020-02-15T06:59:45Z +12395,2005-08-18T09:06:30Z,2020,541,2005-08-21T12:09:30Z,2,2020-02-15T06:59:45Z +12396,2005-08-18T09:11:23Z,3624,40,2005-08-26T05:35:23Z,2,2020-02-15T06:59:45Z +12397,2005-08-18T09:12:52Z,1872,371,2005-08-27T10:44:52Z,2,2020-02-15T06:59:45Z +12398,2005-08-18T09:13:24Z,4247,321,2005-08-27T14:58:24Z,1,2020-02-15T06:59:45Z +12399,2005-08-18T09:13:42Z,3950,347,2005-08-27T11:44:42Z,1,2020-02-15T06:59:45Z +12400,2005-08-18T09:19:12Z,1767,10,2005-08-26T06:52:12Z,1,2020-02-15T06:59:45Z +12401,2005-08-18T09:20:51Z,4314,479,2005-08-21T05:50:51Z,2,2020-02-15T06:59:45Z +12402,2005-08-18T09:27:34Z,385,123,2005-08-25T13:10:34Z,2,2020-02-15T06:59:45Z +12403,2005-08-18T09:31:05Z,2124,440,2005-08-23T09:54:05Z,2,2020-02-15T06:59:45Z +12404,2005-08-18T09:36:34Z,1097,342,2005-08-23T10:12:34Z,2,2020-02-15T06:59:45Z +12405,2005-08-18T09:37:30Z,228,266,2005-08-27T13:11:30Z,2,2020-02-15T06:59:45Z +12406,2005-08-18T09:38:02Z,4368,510,2005-08-22T12:56:02Z,1,2020-02-15T06:59:45Z +12407,2005-08-18T09:39:26Z,391,220,2005-08-24T05:19:26Z,2,2020-02-15T06:59:45Z +12408,2005-08-18T09:40:38Z,2360,143,2005-08-19T04:45:38Z,1,2020-02-15T06:59:45Z +12409,2005-08-18T09:43:58Z,2568,64,2005-08-19T15:02:58Z,2,2020-02-15T06:59:45Z +12410,2005-08-18T09:45:33Z,1904,210,2005-08-27T08:50:33Z,1,2020-02-15T06:59:45Z +12411,2005-08-18T09:47:57Z,1234,181,2005-08-21T05:54:57Z,2,2020-02-15T06:59:45Z +12412,2005-08-18T09:49:52Z,1578,75,2005-08-23T12:32:52Z,2,2020-02-15T06:59:45Z +12413,2005-08-18T09:50:34Z,3466,366,2005-08-23T05:57:34Z,2,2020-02-15T06:59:45Z +12414,2005-08-18T09:50:40Z,4454,32,2005-08-26T06:45:40Z,2,2020-02-15T06:59:45Z +12415,2005-08-18T09:54:01Z,392,443,2005-08-24T15:41:01Z,1,2020-02-15T06:59:45Z +12416,2005-08-18T09:56:48Z,3784,515,2005-08-22T12:34:48Z,1,2020-02-15T06:59:45Z +12417,2005-08-18T09:57:00Z,3500,71,2005-08-19T08:56:00Z,1,2020-02-15T06:59:45Z +12418,2005-08-18T09:59:36Z,4186,241,2005-08-19T11:35:36Z,2,2020-02-15T06:59:45Z +12419,2005-08-18T10:01:48Z,3111,133,2005-08-19T13:40:48Z,1,2020-02-15T06:59:45Z +12420,2005-08-18T10:01:50Z,452,477,2005-08-22T08:14:50Z,1,2020-02-15T06:59:45Z +12421,2005-08-18T10:04:06Z,4067,158,2005-08-24T08:45:06Z,2,2020-02-15T06:59:45Z +12422,2005-08-18T10:13:12Z,1855,451,2005-08-20T14:36:12Z,2,2020-02-15T06:59:45Z +12423,2005-08-18T10:14:52Z,1014,470,2005-08-26T13:16:52Z,2,2020-02-15T06:59:45Z +12424,2005-08-18T10:16:57Z,2055,319,2005-08-27T04:41:57Z,1,2020-02-15T06:59:45Z +12425,2005-08-18T10:18:06Z,2000,405,2005-08-27T08:16:06Z,2,2020-02-15T06:59:45Z +12426,2005-08-18T10:24:11Z,799,75,2005-08-22T15:34:11Z,2,2020-02-15T06:59:45Z +12427,2005-08-18T10:24:17Z,1759,333,2005-08-27T14:22:17Z,1,2020-02-15T06:59:45Z +12428,2005-08-18T10:24:21Z,3735,121,2005-08-24T05:12:21Z,1,2020-02-15T06:59:45Z +12429,2005-08-18T10:26:46Z,2994,436,2005-08-27T13:23:46Z,1,2020-02-15T06:59:45Z +12430,2005-08-18T10:32:41Z,2840,196,2005-08-22T16:16:41Z,1,2020-02-15T06:59:45Z +12431,2005-08-18T10:34:59Z,4461,89,2005-08-22T14:42:59Z,1,2020-02-15T06:59:45Z +12432,2005-08-18T10:35:13Z,2543,263,2005-08-26T08:20:13Z,2,2020-02-15T06:59:45Z +12433,2005-08-18T10:37:49Z,1776,552,2005-08-19T08:00:49Z,1,2020-02-15T06:59:45Z +12434,2005-08-18T10:38:08Z,3078,314,2005-08-22T16:14:08Z,2,2020-02-15T06:59:45Z +12435,2005-08-18T10:38:31Z,3211,160,2005-08-26T15:18:31Z,1,2020-02-15T06:59:45Z +12436,2005-08-18T10:41:05Z,3761,499,2005-08-23T07:36:05Z,2,2020-02-15T06:59:45Z +12437,2005-08-18T10:42:43Z,4036,467,2005-08-26T11:58:43Z,2,2020-02-15T06:59:45Z +12438,2005-08-18T10:42:52Z,2043,186,2005-08-25T11:42:52Z,1,2020-02-15T06:59:45Z +12439,2005-08-18T10:44:57Z,3204,153,2005-08-22T06:51:57Z,1,2020-02-15T06:59:45Z +12440,2005-08-18T10:47:35Z,2779,474,2005-08-21T11:10:35Z,2,2020-02-15T06:59:45Z +12441,2005-08-18T10:47:57Z,2163,561,2005-08-26T07:11:57Z,2,2020-02-15T06:59:45Z +12442,2005-08-18T10:50:07Z,78,270,2005-08-21T08:06:07Z,1,2020-02-15T06:59:45Z +12443,2005-08-18T10:50:59Z,2048,233,2005-08-26T07:48:59Z,2,2020-02-15T06:59:45Z +12444,2005-08-18T10:53:12Z,1639,285,2005-08-19T13:54:12Z,2,2020-02-15T06:59:45Z +12445,2005-08-18T10:56:20Z,3347,350,2005-08-21T16:46:20Z,1,2020-02-15T06:59:45Z +12446,2005-08-18T10:56:29Z,2138,448,2005-08-23T05:30:29Z,1,2020-02-15T06:59:45Z +12447,2005-08-18T10:57:01Z,4084,469,2005-08-27T06:05:01Z,1,2020-02-15T06:59:45Z +12448,2005-08-18T10:59:04Z,3889,72,2005-08-21T06:45:04Z,2,2020-02-15T06:59:45Z +12449,2005-08-18T11:03:04Z,663,285,2005-08-19T07:34:04Z,1,2020-02-15T06:59:45Z +12450,2005-08-18T11:04:04Z,3439,518,2005-08-22T07:24:04Z,1,2020-02-15T06:59:45Z +12451,2005-08-18T11:04:42Z,2780,183,2005-08-20T08:20:42Z,1,2020-02-15T06:59:45Z +12452,2005-08-18T11:14:35Z,4260,358,2005-08-27T09:09:35Z,1,2020-02-15T06:59:45Z +12453,2005-08-18T11:17:07Z,2487,104,2005-08-25T12:34:07Z,1,2020-02-15T06:59:45Z +12454,2005-08-18T11:19:02Z,4219,184,2005-08-19T12:00:02Z,2,2020-02-15T06:59:45Z +12455,2005-08-18T11:19:47Z,4478,46,2005-08-22T16:08:47Z,2,2020-02-15T06:59:45Z +12456,2005-08-18T11:21:51Z,4578,85,2005-08-21T13:28:51Z,1,2020-02-15T06:59:45Z +12457,2006-02-14T15:16:03Z,2145,80,,2,2020-02-15T06:59:45Z +12458,2005-08-18T11:22:53Z,4579,277,2005-08-22T14:30:53Z,2,2020-02-15T06:59:45Z +12459,2005-08-18T11:25:11Z,421,39,2005-08-22T06:13:11Z,1,2020-02-15T06:59:45Z +12460,2005-08-18T11:25:13Z,3550,419,2005-08-27T06:27:13Z,2,2020-02-15T06:59:45Z +12461,2005-08-18T11:28:14Z,1569,27,2005-08-21T09:47:14Z,1,2020-02-15T06:59:45Z +12462,2005-08-18T11:28:55Z,890,574,2005-08-20T12:06:55Z,2,2020-02-15T06:59:45Z +12463,2005-08-18T11:31:34Z,30,214,2005-08-23T12:04:34Z,1,2020-02-15T06:59:45Z +12464,2005-08-18T11:33:34Z,1954,157,2005-08-27T14:33:34Z,1,2020-02-15T06:59:45Z +12465,2005-08-18T11:35:02Z,1733,486,2005-08-21T11:52:02Z,2,2020-02-15T06:59:45Z +12466,2005-08-18T11:36:55Z,2686,462,2005-08-23T13:46:55Z,1,2020-02-15T06:59:45Z +12467,2005-08-18T11:40:09Z,1414,212,2005-08-19T13:33:09Z,2,2020-02-15T06:59:45Z +12468,2005-08-18T11:41:47Z,1689,80,2005-08-24T16:43:47Z,2,2020-02-15T06:59:45Z +12469,2005-08-18T11:53:07Z,2395,237,2005-08-24T16:00:07Z,1,2020-02-15T06:59:45Z +12470,2005-08-18T11:55:42Z,1290,82,2005-08-24T08:27:42Z,2,2020-02-15T06:59:45Z +12471,2005-08-18T11:57:00Z,242,101,2005-08-26T13:17:00Z,2,2020-02-15T06:59:45Z +12472,2005-08-18T11:58:48Z,4458,297,2005-08-27T16:37:48Z,2,2020-02-15T06:59:45Z +12473,2005-08-18T11:59:44Z,1237,303,2005-08-21T13:38:44Z,1,2020-02-15T06:59:45Z +12474,2005-08-18T12:10:03Z,2240,78,2005-08-27T17:05:03Z,1,2020-02-15T06:59:45Z +12475,2005-08-18T12:14:21Z,3118,401,2005-08-24T14:43:21Z,2,2020-02-15T06:59:45Z +12476,2005-08-18T12:22:40Z,2784,122,2005-08-20T17:29:40Z,2,2020-02-15T06:59:45Z +12477,2005-08-18T12:25:01Z,4516,74,2005-08-25T17:25:01Z,2,2020-02-15T06:59:45Z +12478,2005-08-18T12:25:16Z,4512,42,2005-08-22T06:27:16Z,2,2020-02-15T06:59:45Z +12479,2005-08-18T12:26:37Z,1119,401,2005-08-21T18:08:37Z,2,2020-02-15T06:59:45Z +12480,2005-08-18T12:26:43Z,3339,446,2005-08-26T13:23:43Z,1,2020-02-15T06:59:45Z +12481,2005-08-18T12:31:34Z,2424,218,2005-08-21T16:08:34Z,2,2020-02-15T06:59:45Z +12482,2005-08-18T12:37:36Z,3778,247,2005-08-26T09:53:36Z,1,2020-02-15T06:59:45Z +12483,2005-08-18T12:38:37Z,1805,488,2005-08-24T13:26:37Z,1,2020-02-15T06:59:45Z +12484,2005-08-18T12:39:37Z,3690,300,2005-08-24T08:47:37Z,2,2020-02-15T06:59:45Z +12485,2005-08-18T12:41:41Z,422,345,2005-08-22T16:38:41Z,2,2020-02-15T06:59:45Z +12486,2005-08-18T12:42:50Z,2991,515,2005-08-27T13:41:50Z,2,2020-02-15T06:59:45Z +12487,2005-08-18T12:45:24Z,2554,485,2005-08-22T12:39:24Z,1,2020-02-15T06:59:45Z +12488,2005-08-18T12:48:22Z,3323,29,2005-08-19T16:19:22Z,1,2020-02-15T06:59:45Z +12489,2006-02-14T15:16:03Z,387,60,,2,2020-02-15T06:59:45Z +12490,2005-08-18T12:48:45Z,1577,187,2005-08-27T15:53:45Z,1,2020-02-15T06:59:45Z +12491,2005-08-18T12:48:45Z,2354,247,2005-08-22T12:40:45Z,2,2020-02-15T06:59:45Z +12492,2005-08-18T12:49:04Z,2839,224,2005-08-26T17:55:04Z,1,2020-02-15T06:59:45Z +12493,2005-08-18T12:53:38Z,3029,487,2005-08-27T13:15:38Z,2,2020-02-15T06:59:45Z +12494,2005-08-18T12:53:49Z,3845,522,2005-08-26T15:52:49Z,1,2020-02-15T06:59:45Z +12495,2005-08-18T12:56:37Z,1225,102,2005-08-22T06:58:37Z,1,2020-02-15T06:59:45Z +12496,2005-08-18T12:58:25Z,456,489,2005-08-27T18:43:25Z,2,2020-02-15T06:59:45Z +12497,2005-08-18T12:58:40Z,824,388,2005-08-24T08:24:40Z,1,2020-02-15T06:59:45Z +12498,2005-08-18T13:01:08Z,1063,408,2005-08-21T13:12:08Z,1,2020-02-15T06:59:45Z +12499,2005-08-18T13:05:37Z,2611,42,2005-08-19T07:41:37Z,1,2020-02-15T06:59:45Z +12500,2005-08-18T13:05:51Z,36,310,2005-08-19T14:54:51Z,2,2020-02-15T06:59:45Z +12501,2005-08-18T13:13:13Z,728,173,2005-08-23T07:24:13Z,2,2020-02-15T06:59:45Z +12502,2005-08-18T13:16:31Z,2153,235,2005-08-19T17:47:31Z,1,2020-02-15T06:59:45Z +12503,2005-08-18T13:16:46Z,3548,379,2005-08-19T10:24:46Z,2,2020-02-15T06:59:45Z +12504,2005-08-18T13:17:07Z,4429,44,2005-08-24T09:13:07Z,2,2020-02-15T06:59:45Z +12505,2005-08-18T13:17:30Z,3741,406,2005-08-23T18:03:30Z,1,2020-02-15T06:59:45Z +12506,2006-02-14T15:16:03Z,1132,114,,2,2020-02-15T06:59:45Z +12507,2005-08-18T13:19:13Z,199,584,2005-08-27T11:48:13Z,2,2020-02-15T06:59:45Z +12508,2005-08-18T13:20:13Z,1059,29,2005-08-22T12:55:13Z,1,2020-02-15T06:59:45Z +12509,2005-08-18T13:21:52Z,2462,175,2005-08-20T12:14:52Z,2,2020-02-15T06:59:45Z +12510,2005-08-18T13:22:25Z,3051,394,2005-08-27T17:38:25Z,2,2020-02-15T06:59:45Z +12511,2005-08-18T13:23:19Z,919,447,2005-08-22T11:43:19Z,2,2020-02-15T06:59:45Z +12512,2005-08-18T13:28:27Z,3959,148,2005-08-26T19:08:27Z,2,2020-02-15T06:59:45Z +12513,2005-08-18T13:31:45Z,29,527,2005-08-25T08:26:45Z,1,2020-02-15T06:59:45Z +12514,2005-08-18T13:33:55Z,3310,400,2005-08-23T12:50:55Z,2,2020-02-15T06:59:45Z +12515,2005-08-18T13:39:26Z,2703,63,2005-08-22T09:05:26Z,1,2020-02-15T06:59:45Z +12516,2005-08-18T13:39:53Z,1332,302,2005-08-20T08:33:53Z,1,2020-02-15T06:59:45Z +12517,2005-08-18T13:40:20Z,2908,520,2005-08-27T14:04:20Z,1,2020-02-15T06:59:45Z +12518,2005-08-18T13:41:32Z,3860,264,2005-08-23T13:01:32Z,1,2020-02-15T06:59:45Z +12519,2005-08-18T13:42:14Z,2394,203,2005-08-24T16:44:14Z,1,2020-02-15T06:59:45Z +12520,2005-08-18T13:42:45Z,681,52,2005-08-23T12:54:45Z,2,2020-02-15T06:59:45Z +12521,2005-08-18T13:43:07Z,1022,369,2005-08-21T07:53:07Z,1,2020-02-15T06:59:45Z +12522,2005-08-18T13:45:40Z,4435,342,2005-08-27T17:05:40Z,1,2020-02-15T06:59:45Z +12523,2005-08-18T13:45:41Z,888,230,2005-08-27T10:46:41Z,1,2020-02-15T06:59:45Z +12524,2006-02-14T15:16:03Z,857,438,,1,2020-02-15T06:59:45Z +12525,2005-08-18T13:48:31Z,2357,96,2005-08-23T13:04:31Z,2,2020-02-15T06:59:45Z +12526,2005-08-18T13:48:43Z,3541,54,2005-08-19T10:05:43Z,1,2020-02-15T06:59:45Z +12527,2005-08-18T13:48:46Z,2536,459,2005-08-26T13:31:46Z,2,2020-02-15T06:59:45Z +12528,2005-08-18T13:52:41Z,3381,398,2005-08-27T09:09:41Z,2,2020-02-15T06:59:45Z +12529,2005-08-18T13:53:36Z,1956,382,2005-08-19T18:20:36Z,2,2020-02-15T06:59:45Z +12530,2005-08-18T13:54:48Z,1054,521,2005-08-26T08:58:48Z,2,2020-02-15T06:59:45Z +12531,2005-08-18T13:57:50Z,2771,27,2005-08-22T09:46:50Z,2,2020-02-15T06:59:45Z +12532,2005-08-18T13:57:58Z,114,184,2005-08-24T14:58:58Z,2,2020-02-15T06:59:45Z +12533,2005-08-18T14:01:40Z,795,331,2005-08-20T15:32:40Z,1,2020-02-15T06:59:45Z +12534,2005-08-18T14:04:41Z,995,187,2005-08-25T16:57:41Z,1,2020-02-15T06:59:45Z +12535,2005-08-18T14:05:22Z,2944,516,2005-08-25T16:35:22Z,1,2020-02-15T06:59:45Z +12536,2005-08-18T14:06:06Z,2343,373,2005-08-25T14:21:06Z,1,2020-02-15T06:59:45Z +12537,2005-08-18T14:06:39Z,57,56,2005-08-25T09:36:39Z,2,2020-02-15T06:59:45Z +12538,2005-08-18T14:09:09Z,1373,118,2005-08-23T19:12:09Z,1,2020-02-15T06:59:45Z +12539,2005-08-18T14:10:09Z,3259,136,2005-08-19T19:44:09Z,2,2020-02-15T06:59:45Z +12540,2005-08-18T14:17:30Z,2826,304,2005-08-26T15:33:30Z,2,2020-02-15T06:59:45Z +12541,2005-08-18T14:18:30Z,4357,584,2005-08-26T10:24:30Z,1,2020-02-15T06:59:45Z +12542,2005-08-18T14:21:11Z,1920,230,2005-08-20T16:06:11Z,2,2020-02-15T06:59:45Z +12543,2005-08-18T14:23:55Z,330,324,2005-08-20T12:42:55Z,1,2020-02-15T06:59:45Z +12544,2005-08-18T14:25:51Z,3783,354,2005-08-26T18:42:51Z,1,2020-02-15T06:59:45Z +12545,2005-08-18T14:28:00Z,1988,168,2005-08-26T14:10:00Z,1,2020-02-15T06:59:45Z +12546,2005-08-18T14:29:37Z,610,30,2005-08-26T09:47:37Z,1,2020-02-15T06:59:45Z +12547,2005-08-18T14:29:39Z,3046,591,2005-08-22T16:52:39Z,2,2020-02-15T06:59:45Z +12548,2005-08-18T14:35:26Z,750,426,2005-08-27T18:58:26Z,1,2020-02-15T06:59:45Z +12549,2005-08-18T14:38:07Z,1010,377,2005-08-21T08:45:07Z,1,2020-02-15T06:59:45Z +12550,2005-08-18T14:40:38Z,4267,138,2005-08-19T13:33:38Z,2,2020-02-15T06:59:45Z +12551,2005-08-18T14:46:26Z,2195,15,2005-08-19T16:59:26Z,2,2020-02-15T06:59:45Z +12552,2005-08-18T14:46:34Z,4303,413,2005-08-20T11:02:34Z,2,2020-02-15T06:59:45Z +12553,2005-08-18T14:46:54Z,2893,454,2005-08-22T13:41:54Z,1,2020-02-15T06:59:45Z +12554,2005-08-18T14:47:28Z,715,404,2005-08-25T14:34:28Z,2,2020-02-15T06:59:45Z +12555,2005-08-18T14:49:22Z,4434,557,2005-08-26T14:11:22Z,2,2020-02-15T06:59:45Z +12556,2005-08-18T14:49:55Z,1984,3,2005-08-24T15:20:55Z,2,2020-02-15T06:59:45Z +12557,2005-08-18T14:51:03Z,313,364,2005-08-19T13:30:03Z,2,2020-02-15T06:59:45Z +12558,2005-08-18T14:52:35Z,167,289,2005-08-26T09:45:35Z,2,2020-02-15T06:59:45Z +12559,2005-08-18T14:53:58Z,39,513,2005-08-25T20:22:58Z,1,2020-02-15T06:59:45Z +12560,2005-08-18T14:54:19Z,829,596,2005-08-27T13:39:19Z,1,2020-02-15T06:59:45Z +12561,2005-08-18T14:58:51Z,812,392,2005-08-20T10:53:51Z,1,2020-02-15T06:59:45Z +12562,2005-08-18T15:00:03Z,529,212,2005-08-23T12:55:03Z,2,2020-02-15T06:59:45Z +12563,2005-08-18T15:08:29Z,2552,393,2005-08-27T15:15:29Z,1,2020-02-15T06:59:45Z +12564,2005-08-18T15:11:35Z,263,348,2005-08-22T11:45:35Z,2,2020-02-15T06:59:45Z +12565,2005-08-18T15:12:17Z,1284,211,2005-08-19T12:26:17Z,2,2020-02-15T06:59:45Z +12566,2005-08-18T15:13:04Z,1684,407,2005-08-21T19:29:04Z,2,2020-02-15T06:59:45Z +12567,2005-08-18T15:14:36Z,2931,308,2005-08-26T18:56:36Z,1,2020-02-15T06:59:45Z +12568,2005-08-18T15:15:44Z,2654,569,2005-08-22T19:32:44Z,2,2020-02-15T06:59:45Z +12569,2005-08-18T15:20:46Z,1009,29,2005-08-24T12:38:46Z,2,2020-02-15T06:59:45Z +12570,2005-08-18T15:23:31Z,3973,211,2005-08-22T09:59:31Z,2,2020-02-15T06:59:45Z +12571,2005-08-18T15:31:18Z,1013,591,2005-08-23T15:20:18Z,2,2020-02-15T06:59:45Z +12572,2005-08-18T15:32:54Z,1366,253,2005-08-21T10:30:54Z,1,2020-02-15T06:59:45Z +12573,2005-08-18T15:32:57Z,1416,182,2005-08-21T18:29:57Z,2,2020-02-15T06:59:45Z +12574,2006-02-14T15:16:03Z,177,317,,2,2020-02-15T06:59:45Z +12575,2005-08-18T15:37:42Z,3441,117,2005-08-25T19:17:42Z,1,2020-02-15T06:59:45Z +12576,2005-08-18T15:38:31Z,329,119,2005-08-22T21:29:31Z,2,2020-02-15T06:59:45Z +12577,2005-08-18T15:39:46Z,4134,16,2005-08-25T18:05:46Z,2,2020-02-15T06:59:45Z +12578,2005-08-18T15:47:11Z,930,514,2005-08-21T10:55:11Z,1,2020-02-15T06:59:45Z +12579,2005-08-18T15:47:49Z,3021,547,2005-08-20T18:12:49Z,2,2020-02-15T06:59:45Z +12580,2005-08-18T15:49:08Z,1197,53,2005-08-24T11:03:08Z,2,2020-02-15T06:59:45Z +12581,2005-08-18T15:49:15Z,4309,70,2005-08-23T20:18:15Z,1,2020-02-15T06:59:45Z +12582,2005-08-18T15:51:12Z,4467,462,2005-08-20T12:05:12Z,1,2020-02-15T06:59:45Z +12583,2005-08-18T15:51:36Z,3090,108,2005-08-20T18:47:36Z,2,2020-02-15T06:59:45Z +12584,2005-08-18T15:51:36Z,4487,371,2005-08-25T19:21:36Z,1,2020-02-15T06:59:45Z +12585,2005-08-18T15:52:12Z,773,110,2005-08-22T21:00:12Z,1,2020-02-15T06:59:45Z +12586,2005-08-18T15:54:39Z,4245,460,2005-08-21T19:29:39Z,1,2020-02-15T06:59:45Z +12587,2005-08-18T16:03:13Z,3081,499,2005-08-25T19:30:13Z,1,2020-02-15T06:59:45Z +12588,2005-08-18T16:04:45Z,694,415,2005-08-23T20:30:45Z,1,2020-02-15T06:59:45Z +12589,2005-08-18T16:06:31Z,956,275,2005-08-27T17:20:31Z,1,2020-02-15T06:59:45Z +12590,2005-08-18T16:11:35Z,2624,308,2005-08-23T10:35:35Z,1,2020-02-15T06:59:45Z +12591,2005-08-18T16:16:41Z,723,546,2005-08-24T10:29:41Z,2,2020-02-15T06:59:45Z +12592,2005-08-18T16:17:50Z,1618,305,2005-08-25T20:20:50Z,1,2020-02-15T06:59:45Z +12593,2005-08-18T16:17:54Z,4092,72,2005-08-21T18:02:54Z,2,2020-02-15T06:59:45Z +12594,2005-08-18T16:24:24Z,4421,198,2005-08-25T15:45:24Z,1,2020-02-15T06:59:45Z +12595,2005-08-18T16:27:08Z,1662,286,2005-08-19T14:53:08Z,1,2020-02-15T06:59:45Z +12596,2005-08-18T16:29:35Z,3662,378,2005-08-24T16:48:35Z,1,2020-02-15T06:59:45Z +12597,2005-08-18T16:34:02Z,3804,474,2005-08-25T17:30:02Z,2,2020-02-15T06:59:45Z +12598,2005-08-18T16:34:03Z,3159,340,2005-08-22T16:44:03Z,1,2020-02-15T06:59:45Z +12599,2005-08-18T16:42:45Z,2032,34,2005-08-23T18:27:45Z,2,2020-02-15T06:59:45Z +12600,2005-08-18T16:44:24Z,1475,171,2005-08-25T17:28:24Z,1,2020-02-15T06:59:45Z +12601,2005-08-18T16:47:52Z,3099,598,2005-08-24T11:05:52Z,1,2020-02-15T06:59:45Z +12602,2005-08-18T16:49:50Z,2001,533,2005-08-21T11:13:50Z,2,2020-02-15T06:59:45Z +12603,2005-08-18T16:56:20Z,2769,119,2005-08-25T11:50:20Z,2,2020-02-15T06:59:45Z +12604,2005-08-18T16:58:48Z,4127,12,2005-08-19T19:36:48Z,1,2020-02-15T06:59:45Z +12605,2005-08-18T16:59:37Z,1359,496,2005-08-20T18:09:37Z,1,2020-02-15T06:59:45Z +12606,2005-08-18T17:02:21Z,359,275,2005-08-24T22:38:21Z,1,2020-02-15T06:59:45Z +12607,2005-08-18T17:03:49Z,2130,526,2005-08-19T18:29:49Z,1,2020-02-15T06:59:45Z +12608,2005-08-18T17:05:15Z,624,366,2005-08-23T17:00:15Z,2,2020-02-15T06:59:45Z +12609,2005-08-18T17:06:22Z,2327,486,2005-08-20T21:30:22Z,1,2020-02-15T06:59:45Z +12610,2006-02-14T15:16:03Z,3181,269,,1,2020-02-15T06:59:45Z +12611,2005-08-18T17:09:42Z,1925,359,2005-08-24T11:57:42Z,2,2020-02-15T06:59:45Z +12612,2005-08-18T17:10:05Z,1035,129,2005-08-26T15:55:05Z,2,2020-02-15T06:59:45Z +12613,2005-08-18T17:16:01Z,3877,8,2005-08-23T18:40:01Z,2,2020-02-15T06:59:45Z +12614,2005-08-18T17:16:03Z,2233,60,2005-08-26T16:56:03Z,2,2020-02-15T06:59:45Z +12615,2005-08-18T17:16:07Z,2191,29,2005-08-27T12:57:07Z,1,2020-02-15T06:59:45Z +12616,2005-08-18T17:22:41Z,2952,476,2005-08-25T18:52:41Z,2,2020-02-15T06:59:45Z +12617,2005-08-18T17:22:48Z,3573,564,2005-08-24T17:40:48Z,2,2020-02-15T06:59:45Z +12618,2005-08-18T17:24:02Z,302,117,2005-08-19T15:22:02Z,1,2020-02-15T06:59:45Z +12619,2005-08-18T17:24:15Z,980,592,2005-08-21T15:56:15Z,1,2020-02-15T06:59:45Z +12620,2005-08-18T17:26:38Z,2663,221,2005-08-25T13:24:38Z,1,2020-02-15T06:59:45Z +12621,2005-08-18T17:31:36Z,4566,439,2005-08-24T16:43:36Z,2,2020-02-15T06:59:45Z +12622,2005-08-18T17:34:11Z,278,529,2005-08-24T16:10:11Z,1,2020-02-15T06:59:45Z +12623,2005-08-18T17:34:19Z,3670,177,2005-08-20T21:30:19Z,1,2020-02-15T06:59:45Z +12624,2005-08-18T17:35:00Z,1135,434,2005-08-27T12:18:00Z,2,2020-02-15T06:59:45Z +12625,2005-08-18T17:36:19Z,2645,108,2005-08-23T11:42:19Z,1,2020-02-15T06:59:45Z +12626,2005-08-18T17:36:45Z,4230,361,2005-08-26T17:12:45Z,1,2020-02-15T06:59:45Z +12627,2005-08-18T17:37:11Z,3760,150,2005-08-19T14:59:11Z,2,2020-02-15T06:59:45Z +12628,2005-08-18T17:40:25Z,3210,520,2005-08-25T13:39:25Z,1,2020-02-15T06:59:45Z +12629,2005-08-18T17:40:33Z,1705,459,2005-08-26T21:09:33Z,1,2020-02-15T06:59:45Z +12630,2005-08-18T17:49:28Z,1457,452,2005-08-24T12:23:28Z,1,2020-02-15T06:59:45Z +12631,2005-08-18T17:52:51Z,2782,339,2005-08-25T14:40:51Z,2,2020-02-15T06:59:45Z +12632,2005-08-18T17:54:21Z,827,381,2005-08-22T18:58:21Z,1,2020-02-15T06:59:45Z +12633,2005-08-18T17:55:38Z,4341,469,2005-08-23T17:19:38Z,2,2020-02-15T06:59:45Z +12634,2005-08-18T17:58:14Z,1037,549,2005-08-19T21:08:14Z,2,2020-02-15T06:59:45Z +12635,2005-08-18T18:00:23Z,331,15,2005-08-23T16:40:23Z,2,2020-02-15T06:59:45Z +12636,2005-08-18T18:00:29Z,1645,380,2005-08-26T20:08:29Z,2,2020-02-15T06:59:45Z +12637,2005-08-18T18:06:53Z,4005,145,2005-08-19T17:36:53Z,1,2020-02-15T06:59:45Z +12638,2005-08-18T18:11:39Z,2849,172,2005-08-25T21:54:39Z,2,2020-02-15T06:59:45Z +12639,2005-08-18T18:13:05Z,562,500,2005-08-27T16:00:05Z,2,2020-02-15T06:59:45Z +12640,2005-08-18T18:14:49Z,1715,544,2005-08-24T21:25:49Z,1,2020-02-15T06:59:45Z +12641,2005-08-18T18:18:08Z,776,467,2005-08-19T23:17:08Z,1,2020-02-15T06:59:45Z +12642,2005-08-18T18:19:16Z,2080,167,2005-08-20T17:30:16Z,2,2020-02-15T06:59:45Z +12643,2005-08-18T18:21:06Z,2245,165,2005-08-24T14:26:06Z,1,2020-02-15T06:59:45Z +12644,2005-08-18T18:22:27Z,1511,300,2005-08-26T00:01:27Z,1,2020-02-15T06:59:45Z +12645,2006-02-14T15:16:03Z,1658,457,,1,2020-02-15T06:59:45Z +12646,2005-08-18T18:25:06Z,3103,388,2005-08-24T18:45:06Z,1,2020-02-15T06:59:45Z +12647,2005-08-18T18:29:51Z,323,520,2005-08-27T22:51:51Z,1,2020-02-15T06:59:45Z +12648,2005-08-18T18:30:21Z,3545,519,2005-08-25T19:17:21Z,1,2020-02-15T06:59:45Z +12649,2005-08-18T18:31:47Z,3201,530,2005-08-22T21:07:47Z,2,2020-02-15T06:59:45Z +12650,2005-08-18T18:33:20Z,3237,276,2005-08-21T17:45:20Z,2,2020-02-15T06:59:45Z +12651,2005-08-18T18:36:16Z,8,34,2005-08-22T22:01:16Z,1,2020-02-15T06:59:45Z +12652,2005-08-18T18:48:58Z,2118,9,2005-08-21T14:15:58Z,1,2020-02-15T06:59:45Z +12653,2005-08-18T18:53:17Z,3353,78,2005-08-26T14:08:17Z,1,2020-02-15T06:59:45Z +12654,2005-08-18T18:56:40Z,2217,438,2005-08-20T17:51:40Z,2,2020-02-15T06:59:45Z +12655,2005-08-18T18:57:44Z,859,533,2005-08-27T22:40:44Z,2,2020-02-15T06:59:45Z +12656,2005-08-18T18:58:35Z,3981,286,2005-08-21T00:41:35Z,1,2020-02-15T06:59:45Z +12657,2005-08-18T19:02:16Z,3621,100,2005-08-21T14:59:16Z,1,2020-02-15T06:59:45Z +12658,2005-08-18T19:05:42Z,4320,193,2005-08-19T19:08:42Z,1,2020-02-15T06:59:45Z +12659,2005-08-18T19:05:49Z,336,329,2005-08-24T22:12:49Z,2,2020-02-15T06:59:45Z +12660,2005-08-18T19:07:23Z,414,21,2005-08-27T17:20:23Z,2,2020-02-15T06:59:45Z +12661,2005-08-18T19:10:10Z,1547,333,2005-08-22T20:30:10Z,1,2020-02-15T06:59:45Z +12662,2005-08-18T19:10:41Z,1412,75,2005-08-23T16:59:41Z,1,2020-02-15T06:59:45Z +12663,2005-08-18T19:10:52Z,1163,375,2005-08-19T15:46:52Z,1,2020-02-15T06:59:45Z +12664,2005-08-18T19:10:54Z,2732,577,2005-08-25T19:19:54Z,1,2020-02-15T06:59:45Z +12665,2006-02-14T15:16:03Z,1701,410,,2,2020-02-15T06:59:45Z +12666,2005-08-18T19:11:41Z,4156,251,2005-08-21T18:04:41Z,2,2020-02-15T06:59:45Z +12667,2005-08-18T19:11:45Z,104,545,2005-08-27T13:34:45Z,2,2020-02-15T06:59:45Z +12668,2005-08-18T19:16:47Z,1986,14,2005-08-19T16:31:47Z,1,2020-02-15T06:59:45Z +12669,2005-08-18T19:17:47Z,4530,433,2005-08-24T14:55:47Z,1,2020-02-15T06:59:45Z +12670,2005-08-18T19:17:58Z,1716,580,2005-08-23T20:54:58Z,2,2020-02-15T06:59:45Z +12671,2005-08-18T19:19:59Z,1734,577,2005-08-23T17:53:59Z,2,2020-02-15T06:59:45Z +12672,2006-02-14T15:16:03Z,1722,228,,1,2020-02-15T06:59:45Z +12673,2005-08-18T19:21:56Z,4204,535,2005-08-26T22:44:56Z,2,2020-02-15T06:59:45Z +12674,2005-08-18T19:24:56Z,636,185,2005-08-26T22:16:56Z,2,2020-02-15T06:59:45Z +12675,2005-08-18T19:34:02Z,569,140,2005-08-23T13:36:02Z,2,2020-02-15T06:59:45Z +12676,2005-08-18T19:34:40Z,2581,393,2005-08-20T18:03:40Z,2,2020-02-15T06:59:45Z +12677,2005-08-18T19:36:05Z,1311,334,2005-08-22T21:23:05Z,2,2020-02-15T06:59:45Z +12678,2005-08-18T19:41:27Z,2504,181,2005-08-23T15:14:27Z,2,2020-02-15T06:59:45Z +12679,2005-08-18T19:42:11Z,1535,463,2005-08-25T01:01:11Z,1,2020-02-15T06:59:45Z +12680,2005-08-18T19:43:46Z,833,259,2005-08-27T00:08:46Z,2,2020-02-15T06:59:45Z +12681,2005-08-18T19:48:06Z,1570,518,2005-08-23T15:05:06Z,2,2020-02-15T06:59:45Z +12682,2006-02-14T15:16:03Z,1148,245,,2,2020-02-15T06:59:45Z +12683,2005-08-18T19:50:43Z,1802,166,2005-08-26T00:47:43Z,1,2020-02-15T06:59:45Z +12684,2005-08-18T19:51:27Z,978,196,2005-08-19T15:56:27Z,1,2020-02-15T06:59:45Z +12685,2005-08-18T19:51:29Z,4283,114,2005-08-27T14:58:29Z,2,2020-02-15T06:59:45Z +12686,2005-08-18T19:55:09Z,501,385,2005-08-26T14:17:09Z,1,2020-02-15T06:59:45Z +12687,2005-08-18T19:57:39Z,3092,285,2005-08-27T01:36:39Z,2,2020-02-15T06:59:45Z +12688,2005-08-18T19:59:54Z,2315,65,2005-08-26T18:52:54Z,2,2020-02-15T06:59:45Z +12689,2005-08-18T20:06:34Z,1066,296,2005-08-22T20:11:34Z,2,2020-02-15T06:59:45Z +12690,2005-08-18T20:06:57Z,3574,361,2005-08-24T20:54:57Z,2,2020-02-15T06:59:45Z +12691,2005-08-18T20:07:46Z,3744,534,2005-08-26T18:49:46Z,2,2020-02-15T06:59:45Z +12692,2005-08-18T20:09:19Z,2781,273,2005-08-21T00:14:19Z,1,2020-02-15T06:59:45Z +12693,2005-08-18T20:10:19Z,1543,584,2005-08-25T21:11:19Z,1,2020-02-15T06:59:45Z +12694,2005-08-18T20:10:39Z,1741,268,2005-08-25T20:47:39Z,1,2020-02-15T06:59:45Z +12695,2005-08-18T20:11:35Z,446,483,2005-08-25T18:29:35Z,1,2020-02-15T06:59:45Z +12696,2005-08-18T20:13:08Z,3989,374,2005-08-19T18:02:08Z,2,2020-02-15T06:59:45Z +12697,2005-08-18T20:14:56Z,2774,152,2005-08-23T21:54:56Z,1,2020-02-15T06:59:45Z +12698,2006-02-14T15:16:03Z,3657,497,,1,2020-02-15T06:59:45Z +12699,2005-08-18T20:20:59Z,3695,66,2005-08-22T17:00:59Z,1,2020-02-15T06:59:45Z +12700,2005-08-18T20:24:46Z,540,397,2005-08-23T21:50:46Z,1,2020-02-15T06:59:45Z +12701,2005-08-18T20:26:47Z,2337,489,2005-08-26T23:36:47Z,2,2020-02-15T06:59:45Z +12702,2005-08-18T20:30:33Z,1884,474,2005-08-27T01:22:33Z,2,2020-02-15T06:59:45Z +12703,2005-08-18T20:37:13Z,1278,453,2005-08-26T16:13:13Z,1,2020-02-15T06:59:45Z +12704,2005-08-18T20:43:00Z,51,93,2005-08-21T22:28:00Z,2,2020-02-15T06:59:45Z +12705,2005-08-18T20:44:14Z,2342,517,2005-08-23T20:46:14Z,1,2020-02-15T06:59:45Z +12706,2005-08-18T20:44:34Z,1079,170,2005-08-26T21:47:34Z,1,2020-02-15T06:59:45Z +12707,2005-08-18T20:52:02Z,1565,426,2005-08-25T19:03:02Z,2,2020-02-15T06:59:45Z +12708,2005-08-18T20:59:17Z,3448,28,2005-08-24T22:40:17Z,1,2020-02-15T06:59:45Z +12709,2005-08-18T20:59:51Z,3878,476,2005-08-26T01:21:51Z,2,2020-02-15T06:59:45Z +12710,2005-08-18T21:02:50Z,3011,310,2005-08-26T15:07:50Z,2,2020-02-15T06:59:45Z +12711,2005-08-18T21:03:32Z,2530,122,2005-08-26T17:31:32Z,1,2020-02-15T06:59:45Z +12712,2005-08-18T21:04:13Z,2628,444,2005-08-25T18:15:13Z,2,2020-02-15T06:59:45Z +12713,2005-08-18T21:07:28Z,1505,56,2005-08-24T17:46:28Z,1,2020-02-15T06:59:45Z +12714,2005-08-18T21:08:01Z,868,372,2005-08-27T17:09:01Z,2,2020-02-15T06:59:45Z +12715,2005-08-18T21:09:38Z,3768,266,2005-08-21T20:25:38Z,1,2020-02-15T06:59:45Z +12716,2006-02-14T15:16:03Z,858,570,,2,2020-02-15T06:59:45Z +12717,2005-08-18T21:15:40Z,3551,167,2005-08-20T00:59:40Z,2,2020-02-15T06:59:45Z +12718,2005-08-18T21:21:44Z,3221,176,2005-08-20T01:01:44Z,1,2020-02-15T06:59:45Z +12719,2006-02-14T15:16:03Z,1094,87,,2,2020-02-15T06:59:45Z +12720,2005-08-18T21:28:42Z,2676,419,2005-08-25T18:02:42Z,1,2020-02-15T06:59:45Z +12721,2005-08-18T21:30:12Z,1045,239,2005-08-22T22:45:12Z,1,2020-02-15T06:59:45Z +12722,2005-08-18T21:33:53Z,913,416,2005-08-27T23:47:53Z,2,2020-02-15T06:59:45Z +12723,2005-08-18T21:34:16Z,4167,430,2005-08-22T22:37:16Z,1,2020-02-15T06:59:45Z +12724,2005-08-18T21:37:20Z,2224,242,2005-08-27T21:56:20Z,2,2020-02-15T06:59:45Z +12725,2005-08-18T21:43:09Z,4071,51,2005-08-23T18:50:09Z,1,2020-02-15T06:59:45Z +12726,2005-08-18T21:44:46Z,20,397,2005-08-19T21:58:46Z,2,2020-02-15T06:59:45Z +12727,2005-08-18T21:45:15Z,15,178,2005-08-24T15:52:15Z,1,2020-02-15T06:59:45Z +12728,2005-08-18T21:47:48Z,3156,129,2005-08-25T16:13:48Z,1,2020-02-15T06:59:45Z +12729,2005-08-18T21:52:59Z,3711,424,2005-08-21T00:02:59Z,1,2020-02-15T06:59:45Z +12730,2005-08-18T21:55:01Z,75,7,2005-08-22T01:23:01Z,1,2020-02-15T06:59:45Z +12731,2005-08-18T21:55:38Z,1719,128,2005-08-23T20:30:38Z,1,2020-02-15T06:59:45Z +12732,2005-08-18T21:57:50Z,3307,535,2005-08-19T18:28:50Z,2,2020-02-15T06:59:45Z +12733,2005-08-18T21:59:00Z,3243,144,2005-08-24T02:25:00Z,1,2020-02-15T06:59:45Z +12734,2005-08-18T22:04:52Z,3619,121,2005-08-25T00:34:52Z,1,2020-02-15T06:59:45Z +12735,2005-08-18T22:04:54Z,3679,383,2005-08-23T21:19:54Z,2,2020-02-15T06:59:45Z +12736,2006-02-14T15:16:03Z,3591,244,,2,2020-02-15T06:59:45Z +12737,2005-08-18T22:11:37Z,736,204,2005-08-26T04:08:37Z,1,2020-02-15T06:59:45Z +12738,2005-08-18T22:11:47Z,4313,589,2005-08-27T17:55:47Z,2,2020-02-15T06:59:45Z +12739,2005-08-18T22:15:18Z,4129,292,2005-08-27T00:37:18Z,2,2020-02-15T06:59:45Z +12740,2005-08-18T22:17:04Z,1157,330,2005-08-23T23:42:04Z,1,2020-02-15T06:59:45Z +12741,2005-08-18T22:17:05Z,2084,435,2005-08-25T20:07:05Z,2,2020-02-15T06:59:45Z +12742,2005-08-18T22:22:03Z,1742,68,2005-08-22T04:01:03Z,1,2020-02-15T06:59:45Z +12743,2005-08-18T22:22:31Z,2630,565,2005-08-27T00:31:31Z,1,2020-02-15T06:59:45Z +12744,2005-08-18T22:22:36Z,3815,593,2005-08-24T00:26:36Z,1,2020-02-15T06:59:45Z +12745,2005-08-18T22:22:45Z,262,24,2005-08-20T01:44:45Z,2,2020-02-15T06:59:45Z +12746,2006-02-14T15:16:03Z,1012,211,,1,2020-02-15T06:59:45Z +12747,2005-08-18T22:28:22Z,4075,549,2005-08-22T22:25:22Z,2,2020-02-15T06:59:45Z +12748,2005-08-18T22:29:05Z,3249,373,2005-08-24T18:25:05Z,2,2020-02-15T06:59:45Z +12749,2005-08-18T22:31:21Z,828,388,2005-08-20T22:53:21Z,1,2020-02-15T06:59:45Z +12750,2005-08-18T22:32:39Z,3717,535,2005-08-26T01:54:39Z,1,2020-02-15T06:59:45Z +12751,2005-08-18T22:33:22Z,2791,352,2005-08-20T20:28:22Z,2,2020-02-15T06:59:45Z +12752,2005-08-18T22:33:36Z,3595,514,2005-08-27T23:55:36Z,1,2020-02-15T06:59:45Z +12753,2005-08-18T22:37:39Z,1494,470,2005-08-27T00:21:39Z,2,2020-02-15T06:59:45Z +12754,2005-08-18T22:37:41Z,4154,134,2005-08-27T20:17:41Z,2,2020-02-15T06:59:45Z +12755,2005-08-18T22:38:47Z,105,439,2005-08-22T23:58:47Z,1,2020-02-15T06:59:45Z +12756,2005-08-18T22:52:13Z,1840,89,2005-08-21T17:22:13Z,1,2020-02-15T06:59:45Z +12757,2005-08-18T22:57:45Z,1095,147,2005-08-21T22:43:45Z,1,2020-02-15T06:59:45Z +12758,2005-08-18T22:58:34Z,2279,30,2005-08-22T23:33:34Z,1,2020-02-15T06:59:45Z +12759,2006-02-14T15:16:03Z,4193,354,,2,2020-02-15T06:59:45Z +12760,2005-08-18T23:03:19Z,4188,363,2005-08-24T17:53:19Z,1,2020-02-15T06:59:45Z +12761,2005-08-18T23:05:22Z,2684,364,2005-08-22T01:08:22Z,2,2020-02-15T06:59:45Z +12762,2005-08-18T23:06:54Z,3909,502,2005-08-21T18:30:54Z,1,2020-02-15T06:59:45Z +12763,2005-08-18T23:07:01Z,393,472,2005-08-21T18:45:01Z,1,2020-02-15T06:59:45Z +12764,2005-08-18T23:14:15Z,26,183,2005-08-22T20:23:15Z,1,2020-02-15T06:59:45Z +12765,2005-08-18T23:21:50Z,2244,298,2005-08-28T04:42:50Z,2,2020-02-15T06:59:45Z +12766,2005-08-18T23:25:20Z,3737,50,2005-08-27T04:43:20Z,1,2020-02-15T06:59:45Z +12767,2005-08-18T23:25:49Z,3351,432,2005-08-28T02:40:49Z,2,2020-02-15T06:59:45Z +12768,2005-08-18T23:26:11Z,1993,458,2005-08-19T20:31:11Z,2,2020-02-15T06:59:45Z +12769,2005-08-18T23:26:40Z,926,504,2005-08-25T03:03:40Z,1,2020-02-15T06:59:45Z +12770,2005-08-18T23:29:00Z,1654,575,2005-08-26T20:57:00Z,2,2020-02-15T06:59:45Z +12771,2005-08-18T23:29:23Z,3076,484,2005-08-22T17:31:23Z,2,2020-02-15T06:59:45Z +12772,2005-08-18T23:29:25Z,1179,397,2005-08-23T20:32:25Z,1,2020-02-15T06:59:45Z +12773,2005-08-18T23:32:19Z,4390,360,2005-08-27T04:40:19Z,1,2020-02-15T06:59:45Z +12774,2005-08-18T23:34:22Z,3601,21,2005-08-28T05:00:22Z,2,2020-02-15T06:59:45Z +12775,2005-08-18T23:35:56Z,4374,54,2005-08-26T18:37:56Z,1,2020-02-15T06:59:45Z +12776,2005-08-18T23:37:33Z,2345,55,2005-08-23T03:07:33Z,1,2020-02-15T06:59:45Z +12777,2005-08-18T23:39:22Z,3467,130,2005-08-27T20:28:22Z,1,2020-02-15T06:59:45Z +12778,2005-08-18T23:40:23Z,3626,290,2005-08-19T18:14:23Z,2,2020-02-15T06:59:45Z +12779,2005-08-18T23:44:00Z,1814,325,2005-08-26T05:27:00Z,2,2020-02-15T06:59:45Z +12780,2005-08-18T23:48:16Z,54,373,2005-08-20T18:13:16Z,2,2020-02-15T06:59:45Z +12781,2005-08-18T23:50:24Z,1187,168,2005-08-21T02:31:24Z,1,2020-02-15T06:59:45Z +12782,2005-08-18T23:56:23Z,1454,495,2005-08-25T18:47:23Z,1,2020-02-15T06:59:45Z +12783,2005-08-19T00:01:14Z,1109,503,2005-08-21T22:02:14Z,2,2020-02-15T06:59:45Z +12784,2005-08-19T00:02:46Z,447,513,2005-08-20T04:39:46Z,1,2020-02-15T06:59:45Z +12785,2005-08-19T00:05:49Z,4190,145,2005-08-21T04:39:49Z,2,2020-02-15T06:59:45Z +12786,2006-02-14T15:16:03Z,97,512,,1,2020-02-15T06:59:45Z +12787,2005-08-19T00:07:58Z,2023,278,2005-08-24T00:42:58Z,2,2020-02-15T06:59:45Z +12788,2005-08-19T00:15:09Z,644,90,2005-08-27T21:54:09Z,1,2020-02-15T06:59:45Z +12789,2005-08-19T00:16:19Z,2412,557,2005-08-25T00:18:19Z,2,2020-02-15T06:59:45Z +12790,2005-08-19T00:16:54Z,1281,44,2005-08-26T02:00:54Z,1,2020-02-15T06:59:45Z +12791,2005-08-19T00:17:09Z,3594,573,2005-08-22T23:46:09Z,1,2020-02-15T06:59:45Z +12792,2006-02-14T15:16:03Z,1435,405,,2,2020-02-15T06:59:45Z +12793,2005-08-19T00:20:36Z,1195,403,2005-08-28T02:43:36Z,1,2020-02-15T06:59:45Z +12794,2005-08-19T00:20:37Z,1586,336,2005-08-26T01:48:37Z,1,2020-02-15T06:59:45Z +12795,2005-08-19T00:21:52Z,2745,360,2005-08-22T22:13:52Z,2,2020-02-15T06:59:45Z +12796,2005-08-19T00:22:24Z,1285,368,2005-08-19T22:53:24Z,2,2020-02-15T06:59:45Z +12797,2005-08-19T00:24:08Z,1595,5,2005-08-21T22:53:08Z,2,2020-02-15T06:59:45Z +12798,2005-08-19T00:24:33Z,4244,534,2005-08-21T23:01:33Z,2,2020-02-15T06:59:45Z +12799,2005-08-19T00:27:01Z,3885,197,2005-08-22T03:30:01Z,2,2020-02-15T06:59:45Z +12800,2005-08-19T00:27:11Z,257,545,2005-08-22T01:08:11Z,1,2020-02-15T06:59:45Z +12801,2005-08-19T00:27:19Z,960,202,2005-08-26T03:10:19Z,1,2020-02-15T06:59:45Z +12802,2005-08-19T00:27:41Z,2461,462,2005-08-28T03:24:41Z,1,2020-02-15T06:59:45Z +12803,2005-08-19T00:28:21Z,1058,390,2005-08-23T02:02:21Z,1,2020-02-15T06:59:45Z +12804,2005-08-19T00:33:15Z,147,365,2005-08-28T02:16:15Z,2,2020-02-15T06:59:45Z +12805,2005-08-19T00:36:34Z,2964,345,2005-08-26T20:38:34Z,1,2020-02-15T06:59:45Z +12806,2005-08-19T00:37:26Z,4488,423,2005-08-23T18:49:26Z,2,2020-02-15T06:59:45Z +12807,2005-08-19T00:38:46Z,2323,513,2005-08-28T03:37:46Z,2,2020-02-15T06:59:45Z +12808,2005-08-19T00:40:41Z,3920,55,2005-08-21T06:39:41Z,2,2020-02-15T06:59:45Z +12809,2005-08-19T00:42:24Z,2005,22,2005-08-23T06:06:24Z,1,2020-02-15T06:59:45Z +12810,2005-08-19T00:44:10Z,1340,250,2005-08-22T22:30:10Z,2,2020-02-15T06:59:45Z +12811,2005-08-19T00:51:28Z,641,54,2005-08-24T01:57:28Z,2,2020-02-15T06:59:45Z +12812,2005-08-19T00:54:02Z,4024,450,2005-08-22T20:35:02Z,2,2020-02-15T06:59:45Z +12813,2005-08-19T00:54:22Z,3285,500,2005-08-19T21:17:22Z,2,2020-02-15T06:59:45Z +12814,2005-08-19T00:58:24Z,204,465,2005-08-21T05:46:24Z,1,2020-02-15T06:59:45Z +12815,2005-08-19T00:59:42Z,435,588,2005-08-25T21:43:42Z,2,2020-02-15T06:59:45Z +12816,2005-08-19T01:04:05Z,4051,342,2005-08-24T01:25:05Z,1,2020-02-15T06:59:45Z +12817,2005-08-19T01:04:35Z,1246,113,2005-08-25T21:14:35Z,1,2020-02-15T06:59:45Z +12818,2005-08-19T01:04:59Z,3069,528,2005-08-26T21:39:59Z,2,2020-02-15T06:59:45Z +12819,2005-08-19T01:05:05Z,1117,542,2005-08-22T05:50:05Z,1,2020-02-15T06:59:45Z +12820,2005-08-19T01:05:08Z,2936,127,2005-08-21T05:37:08Z,2,2020-02-15T06:59:45Z +12821,2005-08-19T01:07:02Z,3418,41,2005-08-23T01:22:02Z,2,2020-02-15T06:59:45Z +12822,2005-08-19T01:15:24Z,419,426,2005-08-20T06:38:24Z,1,2020-02-15T06:59:45Z +12823,2005-08-19T01:15:47Z,426,316,2005-08-22T05:32:47Z,2,2020-02-15T06:59:45Z +12824,2005-08-19T01:18:00Z,1875,247,2005-08-22T01:12:00Z,2,2020-02-15T06:59:45Z +12825,2005-08-19T01:23:58Z,4495,328,2005-08-20T00:19:58Z,2,2020-02-15T06:59:45Z +12826,2005-08-19T01:25:11Z,1277,439,2005-08-27T01:22:11Z,1,2020-02-15T06:59:45Z +12827,2005-08-19T01:27:23Z,880,253,2005-08-27T02:22:23Z,2,2020-02-15T06:59:45Z +12828,2005-08-19T01:37:47Z,4208,378,2005-08-24T22:31:47Z,2,2020-02-15T06:59:45Z +12829,2005-08-19T01:38:18Z,1129,326,2005-08-25T22:23:18Z,2,2020-02-15T06:59:45Z +12830,2005-08-19T01:40:25Z,4080,409,2005-08-20T23:49:25Z,2,2020-02-15T06:59:45Z +12831,2005-08-19T01:40:43Z,1916,183,2005-08-28T05:22:43Z,1,2020-02-15T06:59:45Z +12832,2005-08-19T01:41:44Z,2820,563,2005-08-24T23:15:44Z,2,2020-02-15T06:59:45Z +12833,2005-08-19T01:42:28Z,3723,59,2005-08-26T20:13:28Z,1,2020-02-15T06:59:45Z +12834,2005-08-19T01:47:30Z,757,133,2005-08-24T20:08:30Z,1,2020-02-15T06:59:45Z +12835,2005-08-19T01:47:45Z,1477,124,2005-08-26T00:58:45Z,2,2020-02-15T06:59:45Z +12836,2005-08-19T01:48:33Z,1380,196,2005-08-23T04:46:33Z,1,2020-02-15T06:59:45Z +12837,2005-08-19T01:51:09Z,2288,495,2005-08-22T07:14:09Z,2,2020-02-15T06:59:45Z +12838,2005-08-19T01:51:50Z,1207,308,2005-08-27T23:12:50Z,1,2020-02-15T06:59:45Z +12839,2005-08-19T01:53:43Z,1970,360,2005-08-28T02:27:43Z,2,2020-02-15T06:59:45Z +12840,2005-08-19T01:54:11Z,2098,182,2005-08-28T01:11:11Z,2,2020-02-15T06:59:45Z +12841,2005-08-19T01:55:55Z,4233,257,2005-08-24T02:56:55Z,1,2020-02-15T06:59:45Z +12842,2005-08-19T01:57:21Z,2540,119,2005-08-28T01:10:21Z,1,2020-02-15T06:59:45Z +12843,2005-08-19T01:58:54Z,3279,128,2005-08-20T00:20:54Z,2,2020-02-15T06:59:45Z +12844,2005-08-19T01:59:08Z,4146,584,2005-08-24T22:21:08Z,1,2020-02-15T06:59:45Z +12845,2005-08-19T02:02:37Z,1698,106,2005-08-22T01:08:37Z,1,2020-02-15T06:59:45Z +12846,2005-08-19T02:03:26Z,286,305,2005-08-25T07:39:26Z,2,2020-02-15T06:59:45Z +12847,2005-08-19T02:04:07Z,384,91,2005-08-23T20:13:07Z,2,2020-02-15T06:59:45Z +12848,2005-08-19T02:05:11Z,2833,539,2005-08-24T05:27:11Z,2,2020-02-15T06:59:45Z +12849,2005-08-19T02:05:37Z,3489,280,2005-08-23T07:00:37Z,1,2020-02-15T06:59:45Z +12850,2005-08-19T02:08:06Z,1816,440,2005-08-20T21:06:06Z,2,2020-02-15T06:59:45Z +12851,2005-08-19T02:12:12Z,3311,194,2005-08-25T23:51:12Z,1,2020-02-15T06:59:45Z +12852,2005-08-19T02:12:40Z,2446,260,2005-08-19T23:42:40Z,1,2020-02-15T06:59:45Z +12853,2005-08-19T02:15:32Z,3753,232,2005-08-27T21:26:32Z,2,2020-02-15T06:59:45Z +12854,2005-08-19T02:18:51Z,4577,362,2005-08-24T04:16:51Z,2,2020-02-15T06:59:45Z +12855,2005-08-19T02:18:58Z,2900,242,2005-08-19T20:50:58Z,1,2020-02-15T06:59:45Z +12856,2005-08-19T02:19:13Z,132,4,2005-08-23T07:49:13Z,2,2020-02-15T06:59:45Z +12857,2005-08-19T02:20:13Z,4307,443,2005-08-20T20:20:13Z,1,2020-02-15T06:59:45Z +12858,2005-08-19T02:22:16Z,3024,144,2005-08-26T07:25:16Z,2,2020-02-15T06:59:45Z +12859,2005-08-19T02:23:23Z,2289,139,2005-08-28T04:55:23Z,2,2020-02-15T06:59:45Z +12860,2005-08-19T02:24:41Z,778,548,2005-08-25T07:43:41Z,1,2020-02-15T06:59:45Z +12861,2005-08-19T02:30:24Z,3115,287,2005-08-22T08:23:24Z,1,2020-02-15T06:59:45Z +12862,2005-08-19T02:31:59Z,473,198,2005-08-26T08:16:59Z,2,2020-02-15T06:59:45Z +12863,2005-08-19T02:35:59Z,780,234,2005-08-21T21:13:59Z,1,2020-02-15T06:59:45Z +12864,2005-08-19T02:38:26Z,4481,465,2005-08-22T21:42:26Z,2,2020-02-15T06:59:45Z +12865,2005-08-19T02:38:50Z,3437,460,2005-08-21T02:33:50Z,1,2020-02-15T06:59:45Z +12866,2005-08-19T02:39:47Z,1766,229,2005-08-27T02:14:47Z,1,2020-02-15T06:59:45Z +12867,2005-08-19T02:40:11Z,4499,330,2005-08-20T04:01:11Z,1,2020-02-15T06:59:45Z +12868,2005-08-19T02:47:19Z,4054,551,2005-08-20T00:30:19Z,2,2020-02-15T06:59:45Z +12869,2005-08-19T02:50:36Z,3939,99,2005-08-26T21:38:36Z,2,2020-02-15T06:59:45Z +12870,2005-08-19T02:54:38Z,991,86,2005-08-27T00:45:38Z,1,2020-02-15T06:59:45Z +12871,2005-08-19T02:55:36Z,2625,217,2005-08-22T01:00:36Z,2,2020-02-15T06:59:45Z +12872,2005-08-19T02:57:37Z,1975,54,2005-08-22T23:23:37Z,1,2020-02-15T06:59:45Z +12873,2005-08-19T03:05:41Z,2140,138,2005-08-22T06:57:41Z,2,2020-02-15T06:59:45Z +12874,2005-08-19T03:07:57Z,848,254,2005-08-22T22:42:57Z,2,2020-02-15T06:59:45Z +12875,2005-08-19T03:10:21Z,1708,483,2005-08-26T01:00:21Z,2,2020-02-15T06:59:45Z +12876,2005-08-19T03:12:19Z,803,356,2005-08-20T02:24:19Z,2,2020-02-15T06:59:45Z +12877,2005-08-19T03:16:58Z,1016,40,2005-08-25T02:10:58Z,2,2020-02-15T06:59:45Z +12878,2005-08-19T03:17:08Z,1182,596,2005-08-23T03:44:08Z,1,2020-02-15T06:59:45Z +12879,2005-08-19T03:22:55Z,3556,210,2005-08-24T22:00:55Z,1,2020-02-15T06:59:45Z +12880,2005-08-19T03:27:17Z,3386,552,2005-08-28T06:16:17Z,2,2020-02-15T06:59:45Z +12881,2005-08-19T03:28:13Z,1432,121,2005-08-25T05:25:13Z,1,2020-02-15T06:59:45Z +12882,2005-08-19T03:33:46Z,911,153,2005-08-21T22:49:46Z,1,2020-02-15T06:59:45Z +12883,2005-08-19T03:33:47Z,964,555,2005-08-23T21:55:47Z,1,2020-02-15T06:59:45Z +12884,2005-08-19T03:34:04Z,2768,348,2005-08-28T01:00:04Z,2,2020-02-15T06:59:45Z +12885,2005-08-19T03:37:25Z,883,185,2005-08-20T22:10:25Z,1,2020-02-15T06:59:45Z +12886,2005-08-19T03:38:32Z,2157,174,2005-08-26T02:17:32Z,1,2020-02-15T06:59:45Z +12887,2005-08-19T03:38:54Z,1214,150,2005-08-27T08:45:54Z,1,2020-02-15T06:59:45Z +12888,2005-08-19T03:41:09Z,4398,146,2005-08-24T07:09:09Z,2,2020-02-15T06:59:45Z +12889,2005-08-19T03:41:31Z,4376,515,2005-08-27T00:46:31Z,2,2020-02-15T06:59:45Z +12890,2005-08-19T03:42:08Z,3831,150,2005-08-19T23:08:08Z,1,2020-02-15T06:59:45Z +12891,2006-02-14T15:16:03Z,2764,388,,2,2020-02-15T06:59:45Z +12892,2005-08-19T03:46:34Z,1044,121,2005-08-21T05:11:34Z,2,2020-02-15T06:59:45Z +12893,2005-08-19T03:46:43Z,168,498,2005-08-20T08:38:43Z,2,2020-02-15T06:59:45Z +12894,2005-08-19T03:49:28Z,4581,541,2005-08-25T01:51:28Z,2,2020-02-15T06:59:45Z +12895,2005-08-19T03:50:48Z,4372,396,2005-08-26T09:13:48Z,1,2020-02-15T06:59:45Z +12896,2005-08-19T03:52:44Z,148,220,2005-08-24T22:27:44Z,1,2020-02-15T06:59:45Z +12897,2006-02-14T15:16:03Z,1512,178,,2,2020-02-15T06:59:45Z +12898,2005-08-19T03:54:34Z,1555,586,2005-08-23T08:14:34Z,2,2020-02-15T06:59:45Z +12899,2005-08-19T04:03:34Z,830,105,2005-08-20T08:34:34Z,2,2020-02-15T06:59:45Z +12900,2005-08-19T04:03:49Z,849,408,2005-08-24T22:11:49Z,2,2020-02-15T06:59:45Z +12901,2006-02-14T15:16:03Z,2799,180,,2,2020-02-15T06:59:45Z +12902,2006-02-14T15:16:03Z,464,91,,2,2020-02-15T06:59:45Z +12903,2005-08-19T04:09:38Z,2340,302,2005-08-26T03:24:38Z,2,2020-02-15T06:59:45Z +12904,2005-08-19T04:10:50Z,459,257,2005-08-27T23:24:50Z,1,2020-02-15T06:59:45Z +12905,2005-08-19T04:13:37Z,1043,480,2005-08-26T23:52:37Z,1,2020-02-15T06:59:45Z +12906,2005-08-19T04:13:43Z,2060,401,2005-08-20T04:24:43Z,1,2020-02-15T06:59:45Z +12907,2005-08-19T04:16:13Z,2844,422,2005-08-27T02:43:13Z,1,2020-02-15T06:59:45Z +12908,2005-08-19T04:19:05Z,175,340,2005-08-25T09:50:05Z,1,2020-02-15T06:59:45Z +12909,2005-08-19T04:20:25Z,4300,210,2005-08-24T06:40:25Z,2,2020-02-15T06:59:45Z +12910,2005-08-19T04:23:13Z,3968,128,2005-08-20T22:27:13Z,1,2020-02-15T06:59:45Z +12911,2005-08-19T04:24:10Z,1770,367,2005-08-26T00:35:10Z,2,2020-02-15T06:59:45Z +12912,2005-08-19T04:24:35Z,1747,364,2005-08-27T07:13:35Z,2,2020-02-15T06:59:45Z +12913,2005-08-19T04:25:39Z,3719,356,2005-08-25T07:23:39Z,1,2020-02-15T06:59:45Z +12914,2005-08-19T04:25:59Z,4396,501,2005-08-23T08:04:59Z,2,2020-02-15T06:59:45Z +12915,2006-02-14T15:16:03Z,2651,516,,1,2020-02-15T06:59:45Z +12916,2005-08-19T04:27:05Z,2277,157,2005-08-21T02:33:05Z,2,2020-02-15T06:59:45Z +12917,2005-08-19T04:27:11Z,107,152,2005-08-20T03:04:11Z,2,2020-02-15T06:59:45Z +12918,2005-08-19T04:31:36Z,972,13,2005-08-25T05:50:36Z,1,2020-02-15T06:59:45Z +12919,2005-08-19T04:32:15Z,2121,263,2005-08-24T05:56:15Z,2,2020-02-15T06:59:45Z +12920,2005-08-19T04:32:32Z,2516,511,2005-08-27T00:44:32Z,2,2020-02-15T06:59:45Z +12921,2005-08-19T04:47:48Z,781,234,2005-08-25T00:07:48Z,2,2020-02-15T06:59:45Z +12922,2005-08-19T04:48:48Z,342,25,2005-08-23T23:32:48Z,1,2020-02-15T06:59:45Z +12923,2005-08-19T04:50:20Z,1390,531,2005-08-22T10:42:20Z,1,2020-02-15T06:59:45Z +12924,2005-08-19T04:51:47Z,3807,519,2005-08-26T07:50:47Z,1,2020-02-15T06:59:45Z +12925,2005-08-19T04:59:01Z,3361,57,2005-08-27T02:03:01Z,2,2020-02-15T06:59:45Z +12926,2005-08-19T05:00:16Z,23,336,2005-08-26T06:12:16Z,2,2020-02-15T06:59:45Z +12927,2005-08-19T05:02:46Z,1171,223,2005-08-23T01:08:46Z,1,2020-02-15T06:59:45Z +12928,2005-08-19T05:04:09Z,4531,353,2005-08-24T09:09:09Z,2,2020-02-15T06:59:45Z +12929,2005-08-19T05:05:23Z,1531,310,2005-08-25T04:37:23Z,1,2020-02-15T06:59:45Z +12930,2005-08-19T05:11:32Z,4410,414,2005-08-22T02:20:32Z,2,2020-02-15T06:59:45Z +12931,2005-08-19T05:11:47Z,3070,407,2005-08-21T00:59:47Z,1,2020-02-15T06:59:45Z +12932,2005-08-19T05:17:30Z,2295,416,2005-08-21T09:24:30Z,1,2020-02-15T06:59:45Z +12933,2005-08-19T05:18:20Z,4103,589,2005-08-27T00:13:20Z,1,2020-02-15T06:59:45Z +12934,2005-08-19T05:18:42Z,3242,591,2005-08-24T10:42:42Z,1,2020-02-15T06:59:45Z +12935,2005-08-19T05:20:25Z,193,279,2005-08-21T03:10:25Z,2,2020-02-15T06:59:45Z +12936,2005-08-19T05:25:06Z,654,387,2005-08-28T08:21:06Z,1,2020-02-15T06:59:45Z +12937,2005-08-19T05:25:30Z,3826,348,2005-08-22T10:40:30Z,2,2020-02-15T06:59:45Z +12938,2006-02-14T15:16:03Z,3987,28,,1,2020-02-15T06:59:45Z +12939,2005-08-19T05:38:25Z,3375,181,2005-08-23T23:52:25Z,1,2020-02-15T06:59:45Z +12940,2005-08-19T05:38:29Z,2222,340,2005-08-20T08:15:29Z,1,2020-02-15T06:59:45Z +12941,2005-08-19T05:39:26Z,2951,195,2005-08-22T09:50:26Z,2,2020-02-15T06:59:45Z +12942,2005-08-19T05:40:36Z,3938,103,2005-08-27T02:04:36Z,1,2020-02-15T06:59:45Z +12943,2005-08-19T05:46:26Z,3930,547,2005-08-22T03:26:26Z,2,2020-02-15T06:59:45Z +12944,2005-08-19T05:48:12Z,2956,148,2005-08-28T10:10:12Z,1,2020-02-15T06:59:45Z +12945,2005-08-19T05:51:46Z,3638,312,2005-08-23T11:22:46Z,2,2020-02-15T06:59:45Z +12946,2005-08-19T05:53:34Z,2066,444,2005-08-20T07:30:34Z,1,2020-02-15T06:59:45Z +12947,2005-08-19T05:54:21Z,935,499,2005-08-22T09:17:21Z,1,2020-02-15T06:59:45Z +12948,2005-08-19T05:55:14Z,4173,442,2005-08-22T01:05:14Z,2,2020-02-15T06:59:45Z +12949,2005-08-19T05:55:52Z,4209,279,2005-08-23T00:01:52Z,1,2020-02-15T06:59:45Z +12950,2005-08-19T05:55:58Z,1064,463,2005-08-23T08:05:58Z,1,2020-02-15T06:59:45Z +12951,2005-08-19T05:56:44Z,2143,70,2005-08-24T11:28:44Z,2,2020-02-15T06:59:45Z +12952,2005-08-19T06:00:52Z,2460,228,2005-08-20T02:17:52Z,1,2020-02-15T06:59:45Z +12953,2005-08-19T06:04:07Z,3954,429,2005-08-28T11:05:07Z,1,2020-02-15T06:59:45Z +12954,2005-08-19T06:04:34Z,3592,63,2005-08-28T02:12:34Z,2,2020-02-15T06:59:45Z +12955,2005-08-19T06:05:58Z,2040,410,2005-08-26T04:24:58Z,2,2020-02-15T06:59:45Z +12956,2005-08-19T06:06:26Z,3613,241,2005-08-28T08:37:26Z,2,2020-02-15T06:59:45Z +12957,2005-08-19T06:12:44Z,2219,512,2005-08-28T10:49:44Z,2,2020-02-15T06:59:45Z +12958,2005-08-19T06:19:21Z,4214,569,2005-08-20T02:21:21Z,1,2020-02-15T06:59:45Z +12959,2006-02-14T15:16:03Z,1540,284,,2,2020-02-15T06:59:45Z +12960,2005-08-19T06:21:52Z,3498,152,2005-08-25T04:16:52Z,1,2020-02-15T06:59:45Z +12961,2005-08-19T06:22:37Z,4529,386,2005-08-23T00:49:37Z,1,2020-02-15T06:59:45Z +12962,2005-08-19T06:22:48Z,575,171,2005-08-27T07:47:48Z,1,2020-02-15T06:59:45Z +12963,2005-08-19T06:26:04Z,1521,2,2005-08-23T11:37:04Z,2,2020-02-15T06:59:45Z +12964,2005-08-19T06:29:13Z,2854,142,2005-08-22T12:23:13Z,2,2020-02-15T06:59:45Z +12965,2005-08-19T06:33:00Z,4308,430,2005-08-22T02:02:00Z,1,2020-02-15T06:59:45Z +12966,2005-08-19T06:37:48Z,3196,69,2005-08-26T03:59:48Z,2,2020-02-15T06:59:45Z +12967,2005-08-19T06:37:51Z,3404,170,2005-08-25T06:58:51Z,2,2020-02-15T06:59:45Z +12968,2005-08-19T06:38:18Z,3108,166,2005-08-20T08:29:18Z,1,2020-02-15T06:59:45Z +12969,2005-08-19T06:38:59Z,191,224,2005-08-25T09:09:59Z,2,2020-02-15T06:59:45Z +12970,2006-02-14T15:16:03Z,3999,216,,1,2020-02-15T06:59:45Z +12971,2005-08-19T06:42:43Z,3504,492,2005-08-23T10:49:43Z,2,2020-02-15T06:59:45Z +12972,2005-08-19T06:43:28Z,1218,55,2005-08-27T11:30:28Z,1,2020-02-15T06:59:45Z +12973,2005-08-19T06:48:11Z,128,163,2005-08-22T07:18:11Z,2,2020-02-15T06:59:45Z +12974,2005-08-19T06:51:02Z,3599,218,2005-08-25T11:48:02Z,2,2020-02-15T06:59:45Z +12975,2005-08-19T06:51:19Z,3300,236,2005-08-25T04:22:19Z,1,2020-02-15T06:59:45Z +12976,2005-08-19T06:52:58Z,66,592,2005-08-26T11:23:58Z,2,2020-02-15T06:59:45Z +12977,2005-08-19T06:55:33Z,2004,388,2005-08-27T07:38:33Z,2,2020-02-15T06:59:45Z +12978,2005-08-19T06:57:27Z,3252,167,2005-08-20T09:10:27Z,2,2020-02-15T06:59:45Z +12979,2005-08-19T07:00:35Z,1227,267,2005-08-21T06:12:35Z,2,2020-02-15T06:59:45Z +12980,2005-08-19T07:03:14Z,1854,144,2005-08-26T05:07:14Z,1,2020-02-15T06:59:45Z +12981,2005-08-19T07:04:00Z,3925,481,2005-08-21T09:17:00Z,1,2020-02-15T06:59:45Z +12982,2005-08-19T07:06:34Z,1258,44,2005-08-21T06:53:34Z,1,2020-02-15T06:59:45Z +12983,2005-08-19T07:06:51Z,406,148,2005-08-28T10:35:51Z,2,2020-02-15T06:59:45Z +12984,2005-08-19T07:06:51Z,4211,537,2005-08-22T04:04:51Z,1,2020-02-15T06:59:45Z +12985,2005-08-19T07:08:05Z,4133,83,2005-08-24T02:25:05Z,1,2020-02-15T06:59:45Z +12986,2005-08-19T07:09:36Z,1145,210,2005-08-22T05:01:36Z,1,2020-02-15T06:59:45Z +12987,2005-08-19T07:11:44Z,3665,134,2005-08-20T04:17:44Z,1,2020-02-15T06:59:45Z +12988,2006-02-14T15:16:03Z,81,236,,2,2020-02-15T06:59:45Z +12989,2005-08-19T07:19:04Z,2929,306,2005-08-21T10:58:04Z,1,2020-02-15T06:59:45Z +12990,2005-08-19T07:20:39Z,1825,360,2005-08-21T12:31:39Z,2,2020-02-15T06:59:45Z +12991,2005-08-19T07:21:24Z,2227,126,2005-08-21T04:31:24Z,2,2020-02-15T06:59:45Z +12992,2005-08-19T07:23:06Z,3022,597,2005-08-23T06:11:06Z,2,2020-02-15T06:59:45Z +12993,2005-08-19T07:24:03Z,4225,484,2005-08-26T07:15:03Z,2,2020-02-15T06:59:45Z +12994,2005-08-19T07:26:10Z,3809,506,2005-08-20T07:02:10Z,2,2020-02-15T06:59:45Z +12995,2005-08-19T07:26:30Z,2069,566,2005-08-25T12:47:30Z,2,2020-02-15T06:59:45Z +12996,2005-08-19T07:31:32Z,4445,380,2005-08-25T11:59:32Z,1,2020-02-15T06:59:45Z +12997,2005-08-19T07:31:46Z,1661,311,2005-08-24T09:20:46Z,2,2020-02-15T06:59:45Z +12998,2005-08-19T07:32:16Z,2301,354,2005-08-24T01:56:16Z,2,2020-02-15T06:59:45Z +12999,2005-08-19T07:34:53Z,661,24,2005-08-26T03:57:53Z,1,2020-02-15T06:59:45Z +13000,2005-08-19T07:36:42Z,2341,141,2005-08-22T08:50:42Z,1,2020-02-15T06:59:45Z +13001,2005-08-19T07:36:44Z,2505,254,2005-08-22T13:06:44Z,1,2020-02-15T06:59:45Z +13002,2005-08-19T07:37:58Z,3892,477,2005-08-26T11:32:58Z,2,2020-02-15T06:59:45Z +13003,2005-08-19T07:39:29Z,3431,451,2005-08-23T05:48:29Z,2,2020-02-15T06:59:45Z +13004,2005-08-19T07:40:08Z,771,442,2005-08-20T11:49:08Z,1,2020-02-15T06:59:45Z +13005,2005-08-19T07:45:42Z,3417,104,2005-08-20T12:45:42Z,2,2020-02-15T06:59:45Z +13006,2005-08-19T07:47:16Z,3157,134,2005-08-21T06:17:16Z,1,2020-02-15T06:59:45Z +13007,2005-08-19T07:47:43Z,4280,430,2005-08-26T02:48:43Z,2,2020-02-15T06:59:45Z +13008,2006-02-14T15:16:03Z,1838,181,,1,2020-02-15T06:59:45Z +13009,2005-08-19T07:50:35Z,677,376,2005-08-21T06:04:35Z,1,2020-02-15T06:59:45Z +13010,2005-08-19T07:52:21Z,825,413,2005-08-27T12:51:21Z,1,2020-02-15T06:59:45Z +13011,2005-08-19T07:53:58Z,1998,529,2005-08-24T12:00:58Z,1,2020-02-15T06:59:45Z +13012,2005-08-19T07:54:59Z,1690,145,2005-08-26T09:50:59Z,2,2020-02-15T06:59:45Z +13013,2005-08-19T07:55:51Z,841,293,2005-08-26T05:14:51Z,1,2020-02-15T06:59:45Z +13014,2005-08-19T07:56:08Z,3400,344,2005-08-21T10:20:08Z,2,2020-02-15T06:59:45Z +13015,2005-08-19T07:56:51Z,3461,126,2005-08-28T07:05:51Z,2,2020-02-15T06:59:45Z +13016,2005-08-19T07:57:14Z,3095,175,2005-08-23T03:29:14Z,1,2020-02-15T06:59:45Z +13017,2005-08-19T08:02:24Z,2160,104,2005-08-26T07:32:24Z,1,2020-02-15T06:59:45Z +13018,2005-08-19T08:04:50Z,2122,168,2005-08-26T11:46:50Z,1,2020-02-15T06:59:45Z +13019,2005-08-19T08:07:43Z,2827,597,2005-08-20T12:09:43Z,2,2020-02-15T06:59:45Z +13020,2005-08-19T08:07:50Z,4501,92,2005-08-28T11:42:50Z,1,2020-02-15T06:59:45Z +13021,2005-08-19T08:08:04Z,1242,309,2005-08-26T12:04:04Z,2,2020-02-15T06:59:45Z +13022,2006-02-14T15:16:03Z,2266,336,,2,2020-02-15T06:59:45Z +13023,2005-08-19T08:13:54Z,1566,69,2005-08-27T13:18:54Z,1,2020-02-15T06:59:45Z +13024,2005-08-19T08:19:21Z,2917,401,2005-08-27T05:18:21Z,1,2020-02-15T06:59:45Z +13025,2006-02-14T15:16:03Z,4066,269,,1,2020-02-15T06:59:45Z +13026,2005-08-19T08:22:45Z,3026,79,2005-08-21T09:31:45Z,1,2020-02-15T06:59:45Z +13027,2005-08-19T08:25:16Z,3756,128,2005-08-25T13:42:16Z,1,2020-02-15T06:59:45Z +13028,2005-08-19T08:27:23Z,2165,371,2005-08-24T03:46:23Z,1,2020-02-15T06:59:45Z +13029,2005-08-19T08:28:04Z,3283,293,2005-08-22T12:25:04Z,2,2020-02-15T06:59:45Z +13030,2005-08-19T08:28:11Z,2614,240,2005-08-24T07:20:11Z,1,2020-02-15T06:59:45Z +13031,2005-08-19T08:30:04Z,1525,567,2005-08-23T09:35:04Z,2,2020-02-15T06:59:45Z +13032,2005-08-19T08:31:50Z,3699,82,2005-08-23T04:00:50Z,2,2020-02-15T06:59:45Z +13033,2005-08-19T08:34:39Z,1682,344,2005-08-28T10:13:39Z,1,2020-02-15T06:59:45Z +13034,2005-08-19T08:41:29Z,990,387,2005-08-20T07:36:29Z,2,2020-02-15T06:59:45Z +13035,2005-08-19T08:46:45Z,4082,135,2005-08-22T11:42:45Z,1,2020-02-15T06:59:45Z +13036,2005-08-19T08:48:37Z,1469,20,2005-08-22T04:13:37Z,2,2020-02-15T06:59:45Z +13037,2005-08-19T08:53:57Z,65,275,2005-08-28T08:56:57Z,2,2020-02-15T06:59:45Z +13038,2005-08-19T08:55:16Z,2226,532,2005-08-25T12:23:16Z,2,2020-02-15T06:59:45Z +13039,2005-08-19T08:55:19Z,1952,370,2005-08-20T07:39:19Z,2,2020-02-15T06:59:45Z +13040,2005-08-19T09:04:24Z,4113,425,2005-08-23T12:36:24Z,2,2020-02-15T06:59:45Z +13041,2005-08-19T09:05:38Z,1576,462,2005-08-27T06:34:38Z,1,2020-02-15T06:59:45Z +13042,2005-08-19T09:06:08Z,1047,414,2005-08-22T13:46:08Z,2,2020-02-15T06:59:45Z +13043,2005-08-19T09:07:13Z,24,127,2005-08-27T07:49:13Z,1,2020-02-15T06:59:45Z +13044,2005-08-19T09:14:31Z,809,142,2005-08-20T11:16:31Z,1,2020-02-15T06:59:45Z +13045,2005-08-19T09:17:35Z,389,254,2005-08-23T12:04:35Z,1,2020-02-15T06:59:45Z +13046,2005-08-19T09:21:10Z,965,37,2005-08-26T13:00:10Z,2,2020-02-15T06:59:45Z +13047,2005-08-19T09:24:49Z,2704,394,2005-08-24T11:06:49Z,2,2020-02-15T06:59:45Z +13048,2005-08-19T09:25:06Z,1029,486,2005-08-28T11:18:06Z,2,2020-02-15T06:59:45Z +13049,2005-08-19T09:25:40Z,4122,53,2005-08-27T10:19:40Z,2,2020-02-15T06:59:45Z +13050,2005-08-19T09:31:23Z,3682,131,2005-08-26T06:56:23Z,2,2020-02-15T06:59:45Z +13051,2005-08-19T09:31:33Z,4064,90,2005-08-28T06:15:33Z,1,2020-02-15T06:59:45Z +13052,2005-08-19T09:31:42Z,3036,502,2005-08-28T15:11:42Z,2,2020-02-15T06:59:45Z +13053,2005-08-19T09:31:48Z,2044,140,2005-08-28T07:51:48Z,2,2020-02-15T06:59:45Z +13054,2005-08-19T09:34:02Z,2983,325,2005-08-23T05:25:02Z,2,2020-02-15T06:59:45Z +13055,2005-08-19T09:36:28Z,3580,485,2005-08-24T05:53:28Z,2,2020-02-15T06:59:45Z +13056,2006-02-14T15:16:03Z,3751,115,,2,2020-02-15T06:59:45Z +13057,2005-08-19T09:40:05Z,876,105,2005-08-28T13:22:05Z,2,2020-02-15T06:59:45Z +13058,2005-08-19T09:40:53Z,2437,24,2005-08-26T05:48:53Z,2,2020-02-15T06:59:45Z +13059,2005-08-19T09:42:01Z,3810,341,2005-08-21T12:07:01Z,1,2020-02-15T06:59:45Z +13060,2005-08-19T09:43:25Z,507,22,2005-08-28T15:22:25Z,1,2020-02-15T06:59:45Z +13061,2005-08-19T09:43:39Z,730,576,2005-08-24T10:03:39Z,1,2020-02-15T06:59:45Z +13062,2005-08-19T09:44:17Z,1790,385,2005-08-27T11:42:17Z,1,2020-02-15T06:59:45Z +13063,2005-08-19T09:45:41Z,1192,5,2005-08-24T09:11:41Z,2,2020-02-15T06:59:45Z +13064,2005-08-19T09:46:53Z,4131,588,2005-08-21T08:29:53Z,1,2020-02-15T06:59:45Z +13065,2005-08-19T09:48:52Z,1887,518,2005-08-22T07:12:52Z,1,2020-02-15T06:59:45Z +13066,2005-08-19T09:50:39Z,3730,336,2005-08-22T14:01:39Z,1,2020-02-15T06:59:45Z +13067,2005-08-19T09:51:17Z,3825,172,2005-08-25T09:58:17Z,2,2020-02-15T06:59:45Z +13068,2005-08-19T09:55:16Z,3019,1,2005-08-20T14:44:16Z,2,2020-02-15T06:59:45Z +13069,2005-08-19T09:55:20Z,368,299,2005-08-24T04:10:20Z,2,2020-02-15T06:59:45Z +13070,2005-08-19T09:56:23Z,2214,235,2005-08-24T09:08:23Z,2,2020-02-15T06:59:45Z +13071,2005-08-19T10:01:07Z,527,578,2005-08-26T14:26:07Z,1,2020-02-15T06:59:45Z +13072,2005-08-19T10:03:30Z,2313,447,2005-08-22T14:27:30Z,2,2020-02-15T06:59:45Z +13073,2005-08-19T10:05:38Z,855,506,2005-08-26T07:37:38Z,2,2020-02-15T06:59:45Z +13074,2005-08-19T10:06:53Z,3266,341,2005-08-28T09:56:53Z,2,2020-02-15T06:59:45Z +13075,2005-08-19T10:10:10Z,4125,224,2005-08-21T08:44:10Z,2,2020-02-15T06:59:45Z +13076,2005-08-19T10:10:26Z,1226,201,2005-08-22T05:41:26Z,1,2020-02-15T06:59:45Z +13077,2005-08-19T10:15:19Z,433,241,2005-08-21T06:51:19Z,2,2020-02-15T06:59:45Z +13078,2005-08-19T10:16:43Z,4104,479,2005-08-27T11:35:43Z,2,2020-02-15T06:59:45Z +13079,2006-02-14T15:16:03Z,733,107,,1,2020-02-15T06:59:45Z +13080,2005-08-19T10:18:00Z,4222,452,2005-08-22T06:37:00Z,2,2020-02-15T06:59:45Z +13081,2005-08-19T10:19:06Z,3077,170,2005-08-20T05:49:06Z,1,2020-02-15T06:59:45Z +13082,2005-08-19T10:19:19Z,2117,387,2005-08-28T05:02:19Z,1,2020-02-15T06:59:45Z +13083,2005-08-19T10:26:45Z,3469,455,2005-08-23T05:31:45Z,2,2020-02-15T06:59:45Z +13084,2005-08-19T10:27:25Z,3792,204,2005-08-26T07:32:25Z,2,2020-02-15T06:59:45Z +13085,2005-08-19T10:28:22Z,360,215,2005-08-22T07:37:22Z,2,2020-02-15T06:59:45Z +13086,2005-08-19T10:32:28Z,3712,350,2005-08-26T07:57:28Z,2,2020-02-15T06:59:45Z +13087,2005-08-19T10:33:52Z,2693,171,2005-08-27T09:15:52Z,2,2020-02-15T06:59:45Z +13088,2005-08-19T10:36:11Z,4281,457,2005-08-21T09:12:11Z,1,2020-02-15T06:59:45Z +13089,2005-08-19T10:38:56Z,1783,63,2005-08-24T12:41:56Z,1,2020-02-15T06:59:45Z +13090,2005-08-19T10:39:54Z,1447,52,2005-08-28T10:31:54Z,1,2020-02-15T06:59:45Z +13091,2005-08-19T10:40:10Z,1815,127,2005-08-23T09:03:10Z,1,2020-02-15T06:59:45Z +13092,2005-08-19T10:41:09Z,4359,480,2005-08-25T05:11:09Z,2,2020-02-15T06:59:45Z +13093,2005-08-19T10:46:16Z,1667,160,2005-08-26T08:05:16Z,1,2020-02-15T06:59:45Z +13094,2005-08-19T10:47:58Z,3178,494,2005-08-21T06:20:58Z,1,2020-02-15T06:59:45Z +13095,2005-08-19T10:48:10Z,520,508,2005-08-28T06:15:10Z,1,2020-02-15T06:59:45Z +13096,2005-08-19T10:49:03Z,420,13,2005-08-21T05:33:03Z,1,2020-02-15T06:59:45Z +13097,2005-08-19T10:50:43Z,4194,157,2005-08-24T11:10:43Z,2,2020-02-15T06:59:45Z +13098,2005-08-19T10:51:59Z,3770,51,2005-08-24T11:27:59Z,1,2020-02-15T06:59:45Z +13099,2005-08-19T10:55:19Z,969,436,2005-08-27T10:54:19Z,1,2020-02-15T06:59:45Z +13100,2005-08-19T10:55:45Z,916,451,2005-08-25T12:28:45Z,1,2020-02-15T06:59:45Z +13101,2005-08-19T11:01:54Z,1804,39,2005-08-27T16:06:54Z,2,2020-02-15T06:59:45Z +13102,2005-08-19T11:02:03Z,2885,285,2005-08-28T13:05:03Z,2,2020-02-15T06:59:45Z +13103,2005-08-19T11:05:51Z,1751,274,2005-08-26T09:16:51Z,2,2020-02-15T06:59:45Z +13104,2005-08-19T11:06:06Z,310,591,2005-08-21T13:50:06Z,2,2020-02-15T06:59:45Z +13105,2005-08-19T11:06:16Z,729,279,2005-08-27T15:21:16Z,1,2020-02-15T06:59:45Z +13106,2006-02-14T15:16:03Z,3212,440,,1,2020-02-15T06:59:45Z +13107,2005-08-19T11:13:58Z,3870,356,2005-08-20T15:03:58Z,2,2020-02-15T06:59:45Z +13108,2006-02-14T15:16:03Z,3630,73,,1,2020-02-15T06:59:45Z +13109,2005-08-19T11:23:20Z,46,259,2005-08-25T17:05:20Z,1,2020-02-15T06:59:45Z +13110,2005-08-19T11:24:37Z,62,447,2005-08-21T05:48:37Z,1,2020-02-15T06:59:45Z +13111,2005-08-19T11:25:10Z,580,26,2005-08-21T05:52:10Z,2,2020-02-15T06:59:45Z +13112,2005-08-19T11:27:10Z,2074,259,2005-08-22T05:32:10Z,1,2020-02-15T06:59:45Z +13113,2005-08-19T11:27:20Z,2393,573,2005-08-23T12:40:20Z,1,2020-02-15T06:59:45Z +13114,2005-08-19T11:27:32Z,4342,550,2005-08-28T11:21:32Z,2,2020-02-15T06:59:45Z +13115,2005-08-19T11:27:43Z,1961,84,2005-08-20T10:58:43Z,1,2020-02-15T06:59:45Z +13116,2005-08-19T11:31:41Z,1544,150,2005-08-27T16:05:41Z,1,2020-02-15T06:59:45Z +13117,2005-08-19T11:33:20Z,3430,385,2005-08-20T11:55:20Z,2,2020-02-15T06:59:45Z +13118,2005-08-19T11:39:58Z,470,181,2005-08-25T14:44:58Z,1,2020-02-15T06:59:45Z +13119,2005-08-19T11:44:59Z,1401,240,2005-08-20T12:30:59Z,2,2020-02-15T06:59:45Z +13120,2005-08-19T11:47:38Z,2273,314,2005-08-26T08:20:38Z,2,2020-02-15T06:59:45Z +13121,2005-08-19T11:51:39Z,3517,251,2005-08-22T11:50:39Z,2,2020-02-15T06:59:45Z +13122,2005-08-19T11:53:49Z,3319,277,2005-08-26T16:01:49Z,2,2020-02-15T06:59:45Z +13123,2005-08-19T11:55:13Z,2804,220,2005-08-21T05:55:13Z,2,2020-02-15T06:59:45Z +13124,2005-08-19T11:55:59Z,2105,78,2005-08-26T06:01:59Z,2,2020-02-15T06:59:45Z +13125,2005-08-19T11:57:49Z,3722,192,2005-08-26T07:53:49Z,1,2020-02-15T06:59:45Z +13126,2005-08-19T12:00:28Z,1392,253,2005-08-28T17:27:28Z,1,2020-02-15T06:59:45Z +13127,2005-08-19T12:04:03Z,2582,178,2005-08-27T13:56:03Z,1,2020-02-15T06:59:45Z +13128,2005-08-19T12:04:16Z,485,206,2005-08-26T16:06:16Z,2,2020-02-15T06:59:45Z +13129,2005-08-19T12:05:04Z,4455,274,2005-08-26T10:24:04Z,1,2020-02-15T06:59:45Z +13130,2005-08-19T12:06:42Z,2006,254,2005-08-23T12:08:42Z,1,2020-02-15T06:59:45Z +13131,2005-08-19T12:08:13Z,1466,480,2005-08-27T13:43:13Z,2,2020-02-15T06:59:45Z +13132,2005-08-19T12:10:57Z,1748,529,2005-08-27T12:22:57Z,2,2020-02-15T06:59:45Z +13133,2005-08-19T12:11:03Z,1635,523,2005-08-28T12:36:03Z,2,2020-02-15T06:59:45Z +13134,2005-08-19T12:14:14Z,1354,184,2005-08-20T11:52:14Z,1,2020-02-15T06:59:45Z +13135,2005-08-19T12:22:52Z,1585,361,2005-08-21T14:04:52Z,2,2020-02-15T06:59:45Z +13136,2005-08-19T12:24:23Z,2532,50,2005-08-28T08:37:23Z,2,2020-02-15T06:59:45Z +13137,2005-08-19T12:26:32Z,4431,20,2005-08-22T13:26:32Z,1,2020-02-15T06:59:45Z +13138,2005-08-19T12:30:01Z,3138,214,2005-08-21T06:35:01Z,2,2020-02-15T06:59:45Z +13139,2005-08-19T12:32:10Z,2099,554,2005-08-24T12:12:10Z,1,2020-02-15T06:59:45Z +13140,2005-08-19T12:35:56Z,4210,323,2005-08-27T18:24:56Z,2,2020-02-15T06:59:45Z +13141,2005-08-19T12:41:41Z,4545,376,2005-08-21T08:17:41Z,2,2020-02-15T06:59:45Z +13142,2005-08-19T12:42:28Z,1404,269,2005-08-26T14:52:28Z,1,2020-02-15T06:59:45Z +13143,2005-08-19T12:44:38Z,1655,371,2005-08-25T10:59:38Z,2,2020-02-15T06:59:45Z +13144,2005-08-19T12:45:55Z,3766,456,2005-08-27T10:37:55Z,2,2020-02-15T06:59:45Z +13145,2005-08-19T12:53:53Z,1383,72,2005-08-23T08:06:53Z,1,2020-02-15T06:59:45Z +13146,2005-08-19T12:54:42Z,1463,116,2005-08-26T07:31:42Z,1,2020-02-15T06:59:45Z +13147,2005-08-19T12:55:09Z,3490,37,2005-08-22T18:10:09Z,1,2020-02-15T06:59:45Z +13148,2005-08-19T12:55:30Z,1762,137,2005-08-21T11:01:30Z,1,2020-02-15T06:59:45Z +13149,2005-08-19T13:07:12Z,1436,40,2005-08-28T18:12:12Z,1,2020-02-15T06:59:45Z +13150,2005-08-19T13:08:19Z,1514,457,2005-08-25T18:00:19Z,1,2020-02-15T06:59:45Z +13151,2005-08-19T13:08:23Z,3045,16,2005-08-20T12:38:23Z,2,2020-02-15T06:59:45Z +13152,2005-08-19T13:09:32Z,3571,597,2005-08-25T14:47:32Z,1,2020-02-15T06:59:45Z +13153,2005-08-19T13:09:47Z,3896,431,2005-08-23T17:35:47Z,2,2020-02-15T06:59:45Z +13154,2005-08-19T13:09:54Z,2465,255,2005-08-26T16:40:54Z,1,2020-02-15T06:59:45Z +13155,2005-08-19T13:10:23Z,290,442,2005-08-25T19:07:23Z,2,2020-02-15T06:59:45Z +13156,2005-08-19T13:10:42Z,770,512,2005-08-25T15:08:42Z,2,2020-02-15T06:59:45Z +13157,2005-08-19T13:12:28Z,4391,592,2005-08-20T10:41:28Z,1,2020-02-15T06:59:45Z +13158,2005-08-19T13:18:10Z,944,327,2005-08-25T09:27:10Z,1,2020-02-15T06:59:45Z +13159,2005-08-19T13:19:59Z,2300,497,2005-08-21T09:22:59Z,2,2020-02-15T06:59:45Z +13160,2005-08-19T13:21:04Z,410,484,2005-08-22T18:49:04Z,1,2020-02-15T06:59:45Z +13161,2006-02-14T15:16:03Z,986,175,,1,2020-02-15T06:59:45Z +13162,2005-08-19T13:28:26Z,1845,478,2005-08-24T17:37:26Z,1,2020-02-15T06:59:45Z +13163,2005-08-19T13:29:46Z,3068,57,2005-08-22T07:48:46Z,2,2020-02-15T06:59:45Z +13164,2005-08-19T13:30:55Z,1104,145,2005-08-26T10:12:55Z,2,2020-02-15T06:59:45Z +13165,2005-08-19T13:34:10Z,138,289,2005-08-21T18:33:10Z,2,2020-02-15T06:59:45Z +13166,2005-08-19T13:36:28Z,4386,504,2005-08-22T07:57:28Z,1,2020-02-15T06:59:45Z +13167,2005-08-19T13:36:41Z,557,120,2005-08-23T15:29:41Z,2,2020-02-15T06:59:45Z +13168,2005-08-19T13:37:28Z,2210,186,2005-08-27T17:54:28Z,2,2020-02-15T06:59:45Z +13169,2005-08-19T13:43:35Z,1709,141,2005-08-26T09:31:35Z,1,2020-02-15T06:59:45Z +13170,2005-08-19T13:45:48Z,1072,176,2005-08-27T11:00:48Z,2,2020-02-15T06:59:45Z +13171,2005-08-19T13:48:54Z,1765,122,2005-08-27T18:57:54Z,1,2020-02-15T06:59:45Z +13172,2005-08-19T13:49:07Z,1301,298,2005-08-20T19:39:07Z,2,2020-02-15T06:59:45Z +13173,2005-08-19T13:50:36Z,1304,29,2005-08-26T12:34:36Z,2,2020-02-15T06:59:45Z +13174,2005-08-19T13:52:50Z,2303,482,2005-08-22T14:43:50Z,2,2020-02-15T06:59:45Z +13175,2005-08-19T13:54:53Z,3187,239,2005-08-20T16:25:53Z,2,2020-02-15T06:59:45Z +13176,2005-08-19T13:56:54Z,2269,1,2005-08-23T08:50:54Z,2,2020-02-15T06:59:45Z +13177,2005-08-19T13:56:58Z,3172,126,2005-08-23T13:13:58Z,2,2020-02-15T06:59:45Z +13178,2006-02-14T15:16:03Z,693,394,,1,2020-02-15T06:59:45Z +13179,2005-08-19T13:59:53Z,1624,104,2005-08-25T12:10:53Z,1,2020-02-15T06:59:45Z +13180,2005-08-19T14:00:38Z,3443,322,2005-08-20T09:56:38Z,1,2020-02-15T06:59:45Z +13181,2005-08-19T14:00:56Z,1256,128,2005-08-24T13:52:56Z,2,2020-02-15T06:59:45Z +13182,2006-02-14T15:16:03Z,364,496,,2,2020-02-15T06:59:45Z +13183,2005-08-19T14:09:26Z,2404,301,2005-08-28T08:44:26Z,2,2020-02-15T06:59:45Z +13184,2005-08-19T14:16:18Z,4395,393,2005-08-20T08:44:18Z,1,2020-02-15T06:59:45Z +13185,2005-08-19T14:22:30Z,241,174,2005-08-20T10:13:30Z,2,2020-02-15T06:59:45Z +13186,2005-08-19T14:23:19Z,2802,176,2005-08-28T11:26:19Z,1,2020-02-15T06:59:45Z +13187,2005-08-19T14:24:48Z,1944,543,2005-08-20T19:37:48Z,1,2020-02-15T06:59:45Z +13188,2005-08-19T14:27:03Z,583,472,2005-08-28T09:15:03Z,2,2020-02-15T06:59:45Z +13189,2005-08-19T14:27:16Z,3444,368,2005-08-28T10:34:16Z,1,2020-02-15T06:59:45Z +13190,2005-08-19T14:27:59Z,4316,290,2005-08-26T13:45:59Z,1,2020-02-15T06:59:45Z +13191,2005-08-19T14:28:48Z,2753,371,2005-08-23T12:53:48Z,2,2020-02-15T06:59:45Z +13192,2005-08-19T14:30:06Z,966,532,2005-08-27T15:20:06Z,1,2020-02-15T06:59:45Z +13193,2005-08-19T14:33:45Z,523,118,2005-08-28T08:46:45Z,2,2020-02-15T06:59:45Z +13194,2005-08-19T14:34:12Z,2473,58,2005-08-26T10:18:12Z,2,2020-02-15T06:59:45Z +13195,2005-08-19T14:39:14Z,2537,565,2005-08-24T10:30:14Z,2,2020-02-15T06:59:45Z +13196,2005-08-19T14:40:32Z,458,202,2005-08-26T18:15:32Z,2,2020-02-15T06:59:45Z +13197,2005-08-19T14:44:03Z,3190,358,2005-08-22T10:11:03Z,1,2020-02-15T06:59:45Z +13198,2005-08-19T14:47:18Z,4273,169,2005-08-21T18:09:18Z,2,2020-02-15T06:59:45Z +13199,2005-08-19T14:53:22Z,4291,339,2005-08-27T19:03:22Z,2,2020-02-15T06:59:45Z +13200,2005-08-19T14:55:58Z,2746,577,2005-08-27T11:35:58Z,2,2020-02-15T06:59:45Z +13201,2005-08-19T14:56:05Z,111,508,2005-08-25T14:37:05Z,1,2020-02-15T06:59:45Z +13202,2005-08-19T14:58:30Z,3546,381,2005-08-27T17:10:30Z,1,2020-02-15T06:59:45Z +13203,2005-08-19T15:00:58Z,804,257,2005-08-27T15:38:58Z,2,2020-02-15T06:59:45Z +13204,2005-08-19T15:02:48Z,4524,152,2005-08-24T18:07:48Z,1,2020-02-15T06:59:45Z +13205,2005-08-19T15:05:26Z,2616,495,2005-08-25T10:41:26Z,2,2020-02-15T06:59:45Z +13206,2005-08-19T15:05:34Z,2477,504,2005-08-21T20:37:34Z,2,2020-02-15T06:59:45Z +13207,2005-08-19T15:14:38Z,674,58,2005-08-27T16:09:38Z,1,2020-02-15T06:59:45Z +13208,2005-08-19T15:18:55Z,609,435,2005-08-24T11:59:55Z,1,2020-02-15T06:59:45Z +13209,2006-02-14T15:16:03Z,1574,5,,2,2020-02-15T06:59:45Z +13210,2005-08-19T15:23:38Z,2789,487,2005-08-21T11:57:38Z,1,2020-02-15T06:59:45Z +13211,2005-08-19T15:23:41Z,1968,289,2005-08-22T16:58:41Z,1,2020-02-15T06:59:45Z +13212,2005-08-19T15:24:07Z,3691,158,2005-08-24T21:03:07Z,1,2020-02-15T06:59:45Z +13213,2005-08-19T15:25:48Z,1546,13,2005-08-22T09:32:48Z,1,2020-02-15T06:59:45Z +13214,2005-08-19T15:31:06Z,2675,157,2005-08-20T19:58:06Z,2,2020-02-15T06:59:45Z +13215,2005-08-19T15:35:38Z,3740,460,2005-08-27T12:16:38Z,1,2020-02-15T06:59:45Z +13216,2005-08-19T15:36:05Z,4335,422,2005-08-25T19:03:05Z,2,2020-02-15T06:59:45Z +13217,2005-08-19T15:38:39Z,616,565,2005-08-21T14:33:39Z,1,2020-02-15T06:59:45Z +13218,2005-08-19T15:39:39Z,4148,257,2005-08-22T17:28:39Z,1,2020-02-15T06:59:45Z +13219,2005-08-19T15:40:28Z,2075,288,2005-08-22T21:20:28Z,2,2020-02-15T06:59:45Z +13220,2005-08-19T15:42:32Z,1017,448,2005-08-25T13:37:32Z,1,2020-02-15T06:59:45Z +13221,2005-08-19T15:45:47Z,120,468,2005-08-26T21:10:47Z,1,2020-02-15T06:59:45Z +13222,2005-08-19T15:47:58Z,1656,91,2005-08-26T12:43:58Z,1,2020-02-15T06:59:45Z +13223,2005-08-19T15:52:04Z,332,461,2005-08-22T16:27:04Z,1,2020-02-15T06:59:45Z +13224,2005-08-19T15:52:13Z,3086,526,2005-08-28T20:53:13Z,2,2020-02-15T06:59:45Z +13225,2005-08-19T15:54:33Z,1420,562,2005-08-25T16:40:33Z,1,2020-02-15T06:59:45Z +13226,2005-08-19T16:05:36Z,2850,46,2005-08-21T10:07:36Z,2,2020-02-15T06:59:45Z +13227,2005-08-19T16:05:38Z,2759,288,2005-08-20T21:39:38Z,1,2020-02-15T06:59:45Z +13228,2005-08-19T16:08:16Z,2497,571,2005-08-20T18:55:16Z,1,2020-02-15T06:59:45Z +13229,2005-08-19T16:08:33Z,634,283,2005-08-22T19:54:33Z,2,2020-02-15T06:59:45Z +13230,2005-08-19T16:12:07Z,3645,151,2005-08-21T12:19:07Z,1,2020-02-15T06:59:45Z +13231,2005-08-19T16:12:49Z,2126,280,2005-08-27T17:14:49Z,2,2020-02-15T06:59:45Z +13232,2005-08-19T16:13:32Z,2370,206,2005-08-28T14:42:32Z,2,2020-02-15T06:59:45Z +13233,2005-08-19T16:14:41Z,1057,279,2005-08-24T21:13:41Z,1,2020-02-15T06:59:45Z +13234,2005-08-19T16:17:15Z,976,559,2005-08-27T12:36:15Z,1,2020-02-15T06:59:45Z +13235,2005-08-19T16:17:53Z,3902,367,2005-08-27T14:57:53Z,1,2020-02-15T06:59:45Z +13236,2005-08-19T16:18:24Z,4574,267,2005-08-27T17:48:24Z,2,2020-02-15T06:59:45Z +13237,2005-08-19T16:18:36Z,1272,169,2005-08-25T15:22:36Z,2,2020-02-15T06:59:45Z +13238,2005-08-19T16:20:56Z,985,348,2005-08-23T15:51:56Z,2,2020-02-15T06:59:45Z +13239,2005-08-19T16:22:13Z,3296,541,2005-08-23T19:26:13Z,1,2020-02-15T06:59:45Z +13240,2005-08-19T16:22:14Z,1411,179,2005-08-20T13:24:14Z,1,2020-02-15T06:59:45Z +13241,2005-08-19T16:25:00Z,3106,33,2005-08-26T12:27:00Z,2,2020-02-15T06:59:45Z +13242,2005-08-19T16:28:47Z,230,414,2005-08-24T22:13:47Z,2,2020-02-15T06:59:45Z +13243,2005-08-19T16:33:16Z,355,251,2005-08-25T13:19:16Z,2,2020-02-15T06:59:45Z +13244,2005-08-19T16:43:04Z,3246,298,2005-08-22T15:21:04Z,2,2020-02-15T06:59:45Z +13245,2005-08-19T16:43:41Z,1001,261,2005-08-20T21:17:41Z,1,2020-02-15T06:59:45Z +13246,2006-02-14T15:16:03Z,1849,411,,2,2020-02-15T06:59:45Z +13247,2005-08-19T16:45:59Z,1271,24,2005-08-25T15:25:59Z,1,2020-02-15T06:59:45Z +13248,2005-08-19T16:47:41Z,2864,559,2005-08-28T18:11:41Z,2,2020-02-15T06:59:45Z +13249,2005-08-19T16:47:41Z,3084,377,2005-08-20T13:30:41Z,1,2020-02-15T06:59:45Z +13250,2005-08-19T16:47:55Z,2524,448,2005-08-26T16:54:55Z,2,2020-02-15T06:59:45Z +13251,2005-08-19T16:48:37Z,4216,111,2005-08-20T16:33:37Z,1,2020-02-15T06:59:45Z +13252,2005-08-19T16:50:50Z,775,451,2005-08-22T22:09:50Z,2,2020-02-15T06:59:45Z +13253,2005-08-19T16:53:56Z,472,399,2005-08-20T11:38:56Z,2,2020-02-15T06:59:45Z +13254,2005-08-19T16:54:01Z,3412,532,2005-08-27T19:50:01Z,2,2020-02-15T06:59:45Z +13255,2005-08-19T16:54:12Z,1101,150,2005-08-28T17:00:12Z,1,2020-02-15T06:59:45Z +13256,2005-08-19T16:54:12Z,2719,289,2005-08-28T16:54:12Z,1,2020-02-15T06:59:45Z +13257,2005-08-19T17:01:20Z,164,300,2005-08-24T17:26:20Z,1,2020-02-15T06:59:45Z +13258,2005-08-19T17:05:37Z,2246,349,2005-08-24T17:36:37Z,2,2020-02-15T06:59:45Z +13259,2005-08-19T17:08:53Z,2518,458,2005-08-23T14:14:53Z,1,2020-02-15T06:59:45Z +13260,2005-08-19T17:09:22Z,578,251,2005-08-24T21:31:22Z,2,2020-02-15T06:59:45Z +13261,2006-02-14T15:16:03Z,3538,417,,1,2020-02-15T06:59:45Z +13262,2005-08-19T17:20:15Z,4483,184,2005-08-26T18:28:15Z,2,2020-02-15T06:59:45Z +13263,2005-08-19T17:26:55Z,214,206,2005-08-28T20:07:55Z,2,2020-02-15T06:59:45Z +13264,2005-08-19T17:27:10Z,1881,109,2005-08-27T16:00:10Z,1,2020-02-15T06:59:45Z +13265,2005-08-19T17:29:00Z,3933,314,2005-08-20T12:59:00Z,2,2020-02-15T06:59:45Z +13266,2005-08-19T17:31:20Z,1326,571,2005-08-21T11:41:20Z,2,2020-02-15T06:59:45Z +13267,2005-08-19T17:31:36Z,550,335,2005-08-21T13:47:36Z,1,2020-02-15T06:59:45Z +13268,2005-08-19T17:33:50Z,1166,255,2005-08-25T17:15:50Z,2,2020-02-15T06:59:45Z +13269,2005-08-19T17:34:00Z,2382,461,2005-08-20T15:17:00Z,2,2020-02-15T06:59:45Z +13270,2005-08-19T17:41:16Z,405,159,2005-08-23T20:22:16Z,2,2020-02-15T06:59:45Z +13271,2005-08-19T17:42:06Z,3872,242,2005-08-27T18:39:06Z,2,2020-02-15T06:59:45Z +13272,2005-08-19T17:49:13Z,2531,145,2005-08-23T15:49:13Z,2,2020-02-15T06:59:45Z +13273,2005-08-19T17:49:13Z,4181,433,2005-08-21T14:15:13Z,1,2020-02-15T06:59:45Z +13274,2005-08-19T17:50:03Z,704,272,2005-08-20T14:39:03Z,2,2020-02-15T06:59:45Z +13275,2005-08-19T17:53:38Z,710,377,2005-08-23T16:29:38Z,2,2020-02-15T06:59:45Z +13276,2005-08-19T17:53:42Z,625,516,2005-08-28T20:49:42Z,2,2020-02-15T06:59:45Z +13277,2005-08-19T17:57:35Z,3820,316,2005-08-25T15:45:35Z,2,2020-02-15T06:59:45Z +13278,2005-08-19T17:57:53Z,2691,282,2005-08-22T23:16:53Z,1,2020-02-15T06:59:45Z +13279,2005-08-19T18:02:18Z,2472,343,2005-08-24T22:15:18Z,2,2020-02-15T06:59:45Z +13280,2005-08-19T18:02:51Z,218,368,2005-08-21T23:17:51Z,2,2020-02-15T06:59:45Z +13281,2005-08-19T18:07:47Z,113,220,2005-08-20T21:51:47Z,2,2020-02-15T06:59:45Z +13282,2005-08-19T18:08:18Z,4373,59,2005-08-24T14:08:18Z,1,2020-02-15T06:59:45Z +13283,2005-08-19T18:10:19Z,2602,180,2005-08-23T16:09:19Z,2,2020-02-15T06:59:45Z +13284,2005-08-19T18:12:31Z,2128,338,2005-08-25T21:26:31Z,2,2020-02-15T06:59:45Z +13285,2005-08-19T18:18:44Z,2139,182,2005-08-20T12:33:44Z,1,2020-02-15T06:59:45Z +13286,2005-08-19T18:28:07Z,2685,245,2005-08-22T17:23:07Z,2,2020-02-15T06:59:45Z +13287,2005-08-19T18:28:24Z,2716,569,2005-08-26T20:13:24Z,2,2020-02-15T06:59:45Z +13288,2005-08-19T18:30:10Z,3558,162,2005-08-20T19:20:10Z,2,2020-02-15T06:59:45Z +13289,2005-08-19T18:31:30Z,3527,497,2005-08-20T13:43:30Z,1,2020-02-15T06:59:45Z +13290,2005-08-19T18:31:50Z,4174,23,2005-08-25T15:49:50Z,2,2020-02-15T06:59:45Z +13291,2005-08-19T18:32:11Z,1631,243,2005-08-20T18:22:11Z,2,2020-02-15T06:59:45Z +13292,2005-08-19T18:35:32Z,1336,171,2005-08-22T00:27:32Z,1,2020-02-15T06:59:45Z +13293,2005-08-19T18:35:52Z,380,399,2005-08-23T17:18:52Z,2,2020-02-15T06:59:45Z +13294,2005-08-19T18:36:35Z,156,534,2005-08-20T13:57:35Z,1,2020-02-15T06:59:45Z +13295,2006-02-14T15:16:03Z,2408,229,,1,2020-02-15T06:59:45Z +13296,2005-08-19T18:43:53Z,1728,300,2005-08-21T23:30:53Z,2,2020-02-15T06:59:45Z +13297,2005-08-19T18:45:49Z,3818,359,2005-08-22T14:58:49Z,2,2020-02-15T06:59:45Z +13298,2006-02-14T15:16:03Z,2133,361,,2,2020-02-15T06:59:45Z +13299,2005-08-19T18:46:33Z,4385,373,2005-08-22T20:45:33Z,1,2020-02-15T06:59:45Z +13300,2005-08-19T18:46:56Z,842,531,2005-08-28T20:23:56Z,2,2020-02-15T06:59:45Z +13301,2005-08-19T18:53:15Z,2261,494,2005-08-26T21:37:15Z,1,2020-02-15T06:59:45Z +13302,2005-08-19T18:54:26Z,4041,51,2005-08-21T23:01:26Z,1,2020-02-15T06:59:45Z +13303,2005-08-19T18:55:21Z,34,184,2005-08-23T18:49:21Z,2,2020-02-15T06:59:45Z +13304,2005-08-19T18:56:32Z,2979,405,2005-08-23T20:04:32Z,2,2020-02-15T06:59:45Z +13305,2005-08-19T18:57:05Z,2386,337,2005-08-28T22:28:05Z,1,2020-02-15T06:59:45Z +13306,2005-08-19T18:57:29Z,2742,229,2005-08-20T20:09:29Z,2,2020-02-15T06:59:45Z +13307,2005-08-19T18:58:44Z,2242,547,2005-08-22T00:15:44Z,1,2020-02-15T06:59:45Z +13308,2005-08-19T18:59:42Z,3189,414,2005-08-28T13:21:42Z,2,2020-02-15T06:59:45Z +13309,2005-08-19T19:04:00Z,2108,91,2005-08-28T23:08:00Z,2,2020-02-15T06:59:45Z +13310,2005-08-19T19:05:16Z,2563,311,2005-08-23T22:47:16Z,1,2020-02-15T06:59:45Z +13311,2005-08-19T19:07:09Z,3890,520,2005-08-20T23:07:09Z,1,2020-02-15T06:59:45Z +13312,2005-08-19T19:09:14Z,2891,418,2005-08-23T00:50:14Z,2,2020-02-15T06:59:45Z +13313,2005-08-19T19:11:41Z,3709,580,2005-08-21T23:53:41Z,2,2020-02-15T06:59:45Z +13314,2005-08-19T19:12:43Z,2899,347,2005-08-27T00:20:43Z,2,2020-02-15T06:59:45Z +13315,2005-08-19T19:16:18Z,3151,54,2005-08-21T20:58:18Z,1,2020-02-15T06:59:45Z +13316,2005-08-19T19:23:30Z,4450,10,2005-08-22T23:37:30Z,1,2020-02-15T06:59:45Z +13317,2005-08-19T19:25:42Z,3349,20,2005-08-20T20:57:42Z,2,2020-02-15T06:59:45Z +13318,2005-08-19T19:33:57Z,1389,413,2005-08-21T17:52:57Z,2,2020-02-15T06:59:45Z +13319,2005-08-19T19:35:13Z,2496,438,2005-08-27T17:59:13Z,1,2020-02-15T06:59:45Z +13320,2005-08-19T19:35:33Z,4522,172,2005-08-24T20:09:33Z,2,2020-02-15T06:59:45Z +13321,2005-08-19T19:40:37Z,4183,280,2005-08-21T19:09:37Z,2,2020-02-15T06:59:45Z +13322,2005-08-19T19:43:08Z,2149,559,2005-08-24T16:30:08Z,2,2020-02-15T06:59:45Z +13323,2005-08-19T19:48:07Z,1055,133,2005-08-23T15:28:07Z,1,2020-02-15T06:59:45Z +13324,2005-08-19T19:51:00Z,4349,564,2005-08-20T20:26:00Z,1,2020-02-15T06:59:45Z +13325,2005-08-19T19:52:02Z,2388,334,2005-08-22T21:14:02Z,1,2020-02-15T06:59:45Z +13326,2005-08-19T19:52:52Z,429,576,2005-08-20T18:56:52Z,1,2020-02-15T06:59:45Z +13327,2005-08-19T19:55:45Z,1808,72,2005-08-22T15:05:45Z,2,2020-02-15T06:59:45Z +13328,2005-08-19T19:56:01Z,605,462,2005-08-20T22:16:01Z,2,2020-02-15T06:59:45Z +13329,2005-08-19T19:56:55Z,3136,373,2005-08-25T01:19:55Z,2,2020-02-15T06:59:45Z +13330,2005-08-19T19:59:21Z,4276,297,2005-08-20T15:34:21Z,2,2020-02-15T06:59:45Z +13331,2005-08-19T20:00:25Z,3867,23,2005-08-21T17:03:25Z,1,2020-02-15T06:59:45Z +13332,2005-08-19T20:00:51Z,3144,503,2005-08-25T14:30:51Z,1,2020-02-15T06:59:45Z +13333,2006-02-14T15:16:03Z,1092,64,,2,2020-02-15T06:59:45Z +13334,2005-08-19T20:02:33Z,461,379,2005-08-22T00:45:33Z,1,2020-02-15T06:59:45Z +13335,2005-08-19T20:03:18Z,1861,74,2005-08-24T20:09:18Z,2,2020-02-15T06:59:45Z +13336,2005-08-19T20:03:22Z,1011,289,2005-08-24T23:42:22Z,1,2020-02-15T06:59:45Z +13337,2005-08-19T20:06:57Z,3584,374,2005-08-20T16:31:57Z,1,2020-02-15T06:59:45Z +13338,2005-08-19T20:09:59Z,3739,86,2005-08-23T22:59:59Z,2,2020-02-15T06:59:45Z +13339,2005-08-19T20:18:36Z,1428,15,2005-08-28T21:34:36Z,1,2020-02-15T06:59:45Z +13340,2005-08-19T20:18:39Z,4358,45,2005-08-28T21:06:39Z,2,2020-02-15T06:59:45Z +13341,2005-08-19T20:18:53Z,1749,460,2005-08-27T14:36:53Z,1,2020-02-15T06:59:45Z +13342,2005-08-19T20:21:36Z,3476,172,2005-08-21T16:26:36Z,1,2020-02-15T06:59:45Z +13343,2005-08-19T20:22:08Z,1032,591,2005-08-27T17:21:08Z,1,2020-02-15T06:59:45Z +13344,2005-08-19T20:22:44Z,4392,514,2005-08-25T18:39:44Z,1,2020-02-15T06:59:45Z +13345,2005-08-19T20:25:24Z,47,55,2005-08-27T20:38:24Z,1,2020-02-15T06:59:45Z +13346,2005-08-19T20:28:21Z,4541,131,2005-08-28T00:28:21Z,2,2020-02-15T06:59:45Z +13347,2005-08-19T20:28:48Z,4038,562,2005-08-28T19:33:48Z,2,2020-02-15T06:59:45Z +13348,2005-08-19T20:31:48Z,275,456,2005-08-21T21:01:48Z,1,2020-02-15T06:59:45Z +13349,2005-08-19T20:43:16Z,4262,234,2005-08-20T16:21:16Z,1,2020-02-15T06:59:45Z +13350,2005-08-19T20:44:00Z,3523,214,2005-08-27T01:23:00Z,2,2020-02-15T06:59:45Z +13351,2006-02-14T15:16:03Z,4130,42,,2,2020-02-15T06:59:45Z +13352,2005-08-19T20:51:40Z,2689,80,2005-08-24T01:22:40Z,1,2020-02-15T06:59:45Z +13353,2005-08-19T20:53:43Z,2790,131,2005-08-25T01:25:43Z,1,2020-02-15T06:59:45Z +13354,2005-08-19T20:55:23Z,1356,213,2005-08-27T20:09:23Z,2,2020-02-15T06:59:45Z +13355,2005-08-19T20:59:19Z,585,396,2005-08-23T21:44:19Z,1,2020-02-15T06:59:45Z +13356,2005-08-19T21:02:21Z,2713,324,2005-08-24T00:31:21Z,1,2020-02-15T06:59:45Z +13357,2005-08-19T21:02:59Z,3295,393,2005-08-25T23:46:59Z,2,2020-02-15T06:59:45Z +13358,2005-08-19T21:04:20Z,1510,439,2005-08-24T20:49:20Z,2,2020-02-15T06:59:45Z +13359,2005-08-19T21:04:49Z,4175,434,2005-08-27T01:46:49Z,1,2020-02-15T06:59:45Z +13360,2005-08-19T21:05:11Z,3396,327,2005-08-24T16:05:11Z,2,2020-02-15T06:59:45Z +13361,2005-08-19T21:07:22Z,4289,107,2005-08-21T21:26:22Z,2,2020-02-15T06:59:45Z +13362,2005-08-19T21:07:54Z,869,565,2005-08-20T17:29:54Z,2,2020-02-15T06:59:45Z +13363,2005-08-19T21:07:59Z,588,288,2005-08-21T17:08:59Z,1,2020-02-15T06:59:45Z +13364,2005-08-19T21:09:30Z,2773,236,2005-08-25T18:37:30Z,1,2020-02-15T06:59:45Z +13365,2005-08-19T21:12:37Z,4136,307,2005-08-25T19:56:37Z,2,2020-02-15T06:59:45Z +13366,2005-08-19T21:14:45Z,602,259,2005-08-21T03:06:45Z,1,2020-02-15T06:59:45Z +13367,2005-08-19T21:19:27Z,4569,290,2005-08-24T15:22:27Z,2,2020-02-15T06:59:45Z +13368,2005-08-19T21:19:35Z,1073,342,2005-08-21T16:12:35Z,2,2020-02-15T06:59:45Z +13369,2005-08-19T21:19:47Z,2728,116,2005-08-24T23:25:47Z,1,2020-02-15T06:59:45Z +13370,2005-08-19T21:20:11Z,239,101,2005-08-25T22:51:11Z,1,2020-02-15T06:59:45Z +13371,2005-08-19T21:21:47Z,3401,34,2005-08-26T16:17:47Z,2,2020-02-15T06:59:45Z +13372,2005-08-19T21:23:19Z,3366,150,2005-08-24T22:12:19Z,1,2020-02-15T06:59:45Z +13373,2005-08-19T21:23:31Z,4045,7,2005-08-25T22:38:31Z,1,2020-02-15T06:59:45Z +13374,2006-02-14T15:16:03Z,2721,227,,1,2020-02-15T06:59:45Z +13375,2005-08-19T21:31:31Z,949,120,2005-08-29T00:17:31Z,1,2020-02-15T06:59:45Z +13376,2005-08-19T21:31:45Z,898,40,2005-08-22T01:14:45Z,2,2020-02-15T06:59:45Z +13377,2005-08-19T21:32:23Z,1316,572,2005-08-25T22:24:23Z,1,2020-02-15T06:59:45Z +13378,2005-08-19T21:33:35Z,2708,368,2005-08-20T22:47:35Z,1,2020-02-15T06:59:45Z +13379,2005-08-19T21:33:39Z,1623,227,2005-08-22T21:00:39Z,1,2020-02-15T06:59:45Z +13380,2005-08-19T21:36:58Z,4250,451,2005-08-22T23:55:58Z,1,2020-02-15T06:59:45Z +13381,2005-08-19T21:37:57Z,2823,21,2005-08-21T18:07:57Z,2,2020-02-15T06:59:45Z +13382,2005-08-19T21:38:41Z,3720,436,2005-08-28T15:49:41Z,1,2020-02-15T06:59:45Z +13383,2005-08-19T21:38:44Z,3193,434,2005-08-28T23:22:44Z,2,2020-02-15T06:59:45Z +13384,2005-08-19T21:38:51Z,1462,440,2005-08-23T17:55:51Z,1,2020-02-15T06:59:45Z +13385,2005-08-19T21:39:35Z,4323,252,2005-08-22T22:38:35Z,2,2020-02-15T06:59:45Z +13386,2005-08-19T21:43:58Z,4476,324,2005-08-24T20:29:58Z,2,2020-02-15T06:59:45Z +13387,2005-08-19T21:46:10Z,123,504,2005-08-24T01:16:10Z,1,2020-02-15T06:59:45Z +13388,2005-08-19T21:46:49Z,942,317,2005-08-27T16:18:49Z,1,2020-02-15T06:59:45Z +13389,2005-08-19T21:52:51Z,3352,257,2005-08-25T02:38:51Z,1,2020-02-15T06:59:45Z +13390,2006-02-14T15:16:03Z,2855,135,,1,2020-02-15T06:59:45Z +13391,2005-08-19T22:01:42Z,4220,16,2005-08-24T22:20:42Z,2,2020-02-15T06:59:45Z +13392,2005-08-19T22:03:22Z,692,409,2005-08-28T19:27:22Z,1,2020-02-15T06:59:45Z +13393,2005-08-19T22:03:46Z,958,15,2005-08-28T19:19:46Z,2,2020-02-15T06:59:45Z +13394,2005-08-19T22:05:19Z,2597,45,2005-08-21T23:53:19Z,1,2020-02-15T06:59:45Z +13395,2005-08-19T22:05:40Z,53,80,2005-08-22T01:31:40Z,2,2020-02-15T06:59:45Z +13396,2005-08-19T22:06:09Z,4169,517,2005-08-23T23:26:09Z,2,2020-02-15T06:59:45Z +13397,2005-08-19T22:06:35Z,3863,379,2005-08-29T01:11:35Z,2,2020-02-15T06:59:45Z +13398,2005-08-19T22:08:48Z,3376,405,2005-08-23T03:24:48Z,1,2020-02-15T06:59:45Z +13399,2005-08-19T22:09:28Z,2309,21,2005-08-25T20:25:28Z,2,2020-02-15T06:59:45Z +13400,2005-08-19T22:11:44Z,2173,179,2005-08-20T23:27:44Z,2,2020-02-15T06:59:45Z +13401,2005-08-19T22:16:16Z,488,139,2005-08-25T19:01:16Z,2,2020-02-15T06:59:45Z +13402,2005-08-19T22:16:53Z,3264,372,2005-08-22T22:28:53Z,1,2020-02-15T06:59:45Z +13403,2005-08-19T22:18:07Z,3241,3,2005-08-27T19:23:07Z,1,2020-02-15T06:59:45Z +13404,2005-08-19T22:18:42Z,416,414,2005-08-23T16:29:42Z,2,2020-02-15T06:59:45Z +13405,2005-08-19T22:20:49Z,1554,181,2005-08-28T21:21:49Z,1,2020-02-15T06:59:45Z +13406,2005-08-19T22:22:01Z,3031,113,2005-08-22T18:16:01Z,1,2020-02-15T06:59:45Z +13407,2005-08-19T22:26:26Z,2512,131,2005-08-22T16:34:26Z,1,2020-02-15T06:59:45Z +13408,2005-08-19T22:34:51Z,2795,575,2005-08-21T03:30:51Z,1,2020-02-15T06:59:45Z +13409,2005-08-19T22:36:26Z,873,214,2005-08-22T01:52:26Z,2,2020-02-15T06:59:45Z +13410,2005-08-19T22:41:44Z,1421,104,2005-08-26T18:05:44Z,2,2020-02-15T06:59:45Z +13411,2005-08-19T22:43:38Z,4425,21,2005-08-26T18:29:38Z,2,2020-02-15T06:59:45Z +13412,2005-08-19T22:46:35Z,2806,404,2005-08-26T18:06:35Z,1,2020-02-15T06:59:45Z +13413,2005-08-19T22:46:46Z,1501,390,2005-08-24T22:52:46Z,1,2020-02-15T06:59:45Z +13414,2005-08-19T22:47:34Z,4126,438,2005-08-21T02:50:34Z,1,2020-02-15T06:59:45Z +13415,2005-08-19T22:48:09Z,1105,181,2005-08-25T02:09:09Z,1,2020-02-15T06:59:45Z +13416,2005-08-19T22:48:48Z,1075,204,2005-08-21T22:09:48Z,2,2020-02-15T06:59:45Z +13417,2005-08-19T22:51:39Z,92,468,2005-08-23T03:34:39Z,1,2020-02-15T06:59:45Z +13418,2005-08-19T22:53:56Z,2113,246,2005-08-28T02:05:56Z,2,2020-02-15T06:59:45Z +13419,2006-02-14T15:16:03Z,3507,537,,1,2020-02-15T06:59:45Z +13420,2005-08-19T22:57:25Z,1796,102,2005-08-28T22:46:25Z,1,2020-02-15T06:59:45Z +13421,2006-02-14T15:16:03Z,9,366,,1,2020-02-15T06:59:45Z +13422,2005-08-19T23:07:24Z,3835,404,2005-08-28T04:12:24Z,2,2020-02-15T06:59:45Z +13423,2005-08-19T23:07:42Z,546,311,2005-08-26T20:45:42Z,1,2020-02-15T06:59:45Z +13424,2005-08-19T23:10:09Z,4340,216,2005-08-23T02:25:09Z,1,2020-02-15T06:59:45Z +13425,2005-08-19T23:11:44Z,2274,340,2005-08-25T21:19:44Z,2,2020-02-15T06:59:45Z +13426,2005-08-19T23:15:00Z,3409,213,2005-08-21T01:53:00Z,2,2020-02-15T06:59:45Z +13427,2005-08-19T23:19:02Z,3120,239,2005-08-21T18:30:02Z,1,2020-02-15T06:59:45Z +13428,2006-02-14T15:16:03Z,106,44,,2,2020-02-15T06:59:45Z +13429,2005-08-19T23:25:37Z,3677,23,2005-08-28T01:04:37Z,2,2020-02-15T06:59:45Z +13430,2005-08-19T23:25:43Z,2852,381,2005-08-22T18:41:43Z,1,2020-02-15T06:59:45Z +13431,2005-08-19T23:28:15Z,1700,229,2005-08-25T04:44:15Z,1,2020-02-15T06:59:45Z +13432,2005-08-19T23:29:06Z,2216,78,2005-08-23T00:57:06Z,1,2020-02-15T06:59:45Z +13433,2005-08-19T23:30:53Z,1647,171,2005-08-22T05:18:53Z,2,2020-02-15T06:59:45Z +13434,2005-08-19T23:34:26Z,2073,221,2005-08-23T18:33:26Z,1,2020-02-15T06:59:45Z +13435,2005-08-19T23:35:44Z,3919,30,2005-08-24T18:14:44Z,2,2020-02-15T06:59:45Z +13436,2005-08-19T23:36:25Z,2499,29,2005-08-23T18:38:25Z,1,2020-02-15T06:59:45Z +13437,2005-08-19T23:37:52Z,2292,67,2005-08-28T22:17:52Z,1,2020-02-15T06:59:45Z +13438,2005-08-19T23:38:02Z,1750,520,2005-08-26T21:36:02Z,1,2020-02-15T06:59:45Z +13439,2005-08-19T23:42:16Z,3535,551,2005-08-26T21:24:16Z,2,2020-02-15T06:59:45Z +13440,2005-08-19T23:42:52Z,2842,260,2005-08-25T19:19:52Z,1,2020-02-15T06:59:45Z +13441,2005-08-19T23:48:23Z,3188,125,2005-08-28T23:47:23Z,1,2020-02-15T06:59:45Z +13442,2005-08-19T23:50:45Z,2432,356,2005-08-27T22:01:45Z,2,2020-02-15T06:59:45Z +13443,2005-08-19T23:53:42Z,3161,236,2005-08-28T05:37:42Z,1,2020-02-15T06:59:45Z +13444,2005-08-20T00:00:24Z,2564,37,2005-08-21T05:59:24Z,2,2020-02-15T06:59:45Z +13445,2005-08-20T00:05:33Z,1630,495,2005-08-21T21:20:33Z,1,2020-02-15T06:59:45Z +13446,2005-08-20T00:06:13Z,3226,488,2005-08-22T19:56:13Z,1,2020-02-15T06:59:45Z +13447,2005-08-20T00:09:36Z,285,542,2005-08-25T01:22:36Z,1,2020-02-15T06:59:45Z +13448,2005-08-20T00:12:43Z,2870,327,2005-08-25T02:33:43Z,1,2020-02-15T06:59:45Z +13449,2005-08-20T00:17:01Z,1297,400,2005-08-23T20:42:01Z,2,2020-02-15T06:59:45Z +13450,2005-08-20T00:18:15Z,135,61,2005-08-24T19:36:15Z,1,2020-02-15T06:59:45Z +13451,2005-08-20T00:18:25Z,3837,6,2005-08-29T01:08:25Z,1,2020-02-15T06:59:45Z +13452,2005-08-20T00:20:07Z,2449,430,2005-08-25T05:43:07Z,1,2020-02-15T06:59:45Z +13453,2005-08-20T00:30:51Z,2203,164,2005-08-28T18:43:51Z,2,2020-02-15T06:59:45Z +13454,2005-08-20T00:30:52Z,1553,430,2005-08-27T19:45:52Z,2,2020-02-15T06:59:45Z +13455,2005-08-20T00:32:17Z,1315,133,2005-08-26T19:33:17Z,1,2020-02-15T06:59:45Z +13456,2005-08-20T00:33:19Z,1644,13,2005-08-22T01:47:19Z,1,2020-02-15T06:59:45Z +13457,2005-08-20T00:33:22Z,1220,256,2005-08-26T21:37:22Z,2,2020-02-15T06:59:45Z +13458,2005-08-20T00:35:30Z,4223,228,2005-08-21T20:51:30Z,1,2020-02-15T06:59:45Z +13459,2005-08-20T00:45:40Z,3666,114,2005-08-29T02:53:40Z,2,2020-02-15T06:59:45Z +13460,2005-08-20T00:48:24Z,244,410,2005-08-28T04:13:24Z,2,2020-02-15T06:59:45Z +13461,2005-08-20T00:49:04Z,2621,421,2005-08-28T02:49:04Z,2,2020-02-15T06:59:45Z +13462,2005-08-20T00:49:19Z,3865,489,2005-08-26T06:21:19Z,2,2020-02-15T06:59:45Z +13463,2005-08-20T00:50:54Z,510,21,2005-08-28T23:00:54Z,1,2020-02-15T06:59:45Z +13464,2006-02-14T15:16:03Z,4292,576,,1,2020-02-15T06:59:45Z +13465,2005-08-20T00:54:14Z,1305,575,2005-08-21T20:55:14Z,2,2020-02-15T06:59:45Z +13466,2005-08-20T00:55:16Z,3088,262,2005-08-22T22:48:16Z,1,2020-02-15T06:59:45Z +13467,2005-08-20T00:56:44Z,696,373,2005-08-20T20:16:44Z,1,2020-02-15T06:59:45Z +13468,2005-08-20T00:56:44Z,1851,266,2005-08-29T06:26:44Z,1,2020-02-15T06:59:45Z +13469,2005-08-20T00:59:36Z,1410,235,2005-08-24T22:41:36Z,1,2020-02-15T06:59:45Z +13470,2005-08-20T01:01:16Z,3097,141,2005-08-21T03:19:16Z,1,2020-02-15T06:59:45Z +13471,2005-08-20T01:02:26Z,1391,296,2005-08-25T06:37:26Z,2,2020-02-15T06:59:45Z +13472,2005-08-20T01:03:31Z,3074,137,2005-08-28T02:54:31Z,1,2020-02-15T06:59:45Z +13473,2005-08-20T01:03:50Z,381,390,2005-08-22T02:33:50Z,2,2020-02-15T06:59:45Z +13474,2005-08-20T01:04:32Z,1209,116,2005-08-21T20:26:32Z,2,2020-02-15T06:59:45Z +13475,2005-08-20T01:05:05Z,3214,68,2005-08-20T20:22:05Z,2,2020-02-15T06:59:45Z +13476,2005-08-20T01:06:04Z,2866,7,2005-08-24T23:56:04Z,1,2020-02-15T06:59:45Z +13477,2005-08-20T01:07:00Z,1442,222,2005-08-26T02:47:00Z,1,2020-02-15T06:59:45Z +13478,2005-08-20T01:07:14Z,2190,466,2005-08-22T03:41:14Z,1,2020-02-15T06:59:45Z +13479,2005-08-20T01:09:11Z,1262,87,2005-08-26T05:35:11Z,2,2020-02-15T06:59:45Z +13480,2005-08-20T01:10:27Z,206,16,2005-08-27T22:18:27Z,2,2020-02-15T06:59:45Z +13481,2005-08-20T01:11:12Z,2678,157,2005-08-26T23:07:12Z,2,2020-02-15T06:59:45Z +13482,2005-08-20T01:14:30Z,1627,183,2005-08-24T04:57:30Z,1,2020-02-15T06:59:45Z +13483,2005-08-20T01:16:38Z,2550,441,2005-08-21T20:43:38Z,2,2020-02-15T06:59:45Z +13484,2005-08-20T01:16:52Z,1533,152,2005-08-22T23:47:52Z,2,2020-02-15T06:59:45Z +13485,2005-08-20T01:20:14Z,3802,379,2005-08-22T01:28:14Z,2,2020-02-15T06:59:45Z +13486,2006-02-14T15:16:03Z,4460,274,,1,2020-02-15T06:59:45Z +13487,2005-08-20T01:27:05Z,2609,458,2005-08-24T00:41:05Z,2,2020-02-15T06:59:45Z +13488,2005-08-20T01:28:42Z,867,444,2005-08-25T06:17:42Z,2,2020-02-15T06:59:45Z +13489,2005-08-20T01:29:06Z,2934,443,2005-08-27T21:11:06Z,1,2020-02-15T06:59:45Z +13490,2005-08-20T01:29:29Z,238,18,2005-08-21T22:36:29Z,2,2020-02-15T06:59:45Z +13491,2005-08-20T01:30:56Z,2503,258,2005-08-28T23:26:56Z,2,2020-02-15T06:59:45Z +13492,2005-08-20T01:32:04Z,1155,462,2005-08-29T02:14:04Z,2,2020-02-15T06:59:45Z +13493,2005-08-20T01:33:36Z,2927,37,2005-08-24T06:32:36Z,1,2020-02-15T06:59:45Z +13494,2005-08-20T01:36:34Z,1632,414,2005-08-21T06:52:34Z,1,2020-02-15T06:59:45Z +13495,2005-08-20T01:40:25Z,3881,92,2005-08-23T06:32:25Z,2,2020-02-15T06:59:45Z +13496,2005-08-20T01:42:29Z,3040,454,2005-08-29T06:47:29Z,2,2020-02-15T06:59:45Z +13497,2005-08-20T01:46:38Z,1296,481,2005-08-26T05:37:38Z,2,2020-02-15T06:59:45Z +13498,2005-08-20T01:51:23Z,1603,578,2005-08-24T05:32:23Z,1,2020-02-15T06:59:45Z +13499,2005-08-20T01:52:30Z,1893,300,2005-08-28T04:57:30Z,1,2020-02-15T06:59:45Z +13500,2005-08-20T01:54:39Z,1353,577,2005-08-25T21:23:39Z,1,2020-02-15T06:59:45Z +13501,2005-08-20T01:56:20Z,4369,390,2005-08-22T23:07:20Z,2,2020-02-15T06:59:45Z +13502,2005-08-20T01:58:15Z,1324,309,2005-08-21T20:21:15Z,1,2020-02-15T06:59:45Z +13503,2005-08-20T02:00:33Z,453,15,2005-08-28T21:03:33Z,1,2020-02-15T06:59:45Z +13504,2005-08-20T02:01:48Z,4322,293,2005-08-25T21:52:48Z,2,2020-02-15T06:59:45Z +13505,2005-08-20T02:05:57Z,914,536,2005-08-23T05:52:57Z,1,2020-02-15T06:59:45Z +13506,2005-08-20T02:07:06Z,1334,261,2005-08-26T08:06:06Z,1,2020-02-15T06:59:45Z +13507,2005-08-20T02:10:27Z,3324,478,2005-08-23T04:03:27Z,2,2020-02-15T06:59:45Z +13508,2005-08-20T02:12:54Z,4120,408,2005-08-28T21:47:54Z,2,2020-02-15T06:59:45Z +13509,2005-08-20T02:14:16Z,3698,128,2005-08-22T06:36:16Z,2,2020-02-15T06:59:45Z +13510,2005-08-20T02:18:30Z,691,107,2005-08-27T01:33:30Z,1,2020-02-15T06:59:45Z +13511,2005-08-20T02:21:40Z,2973,23,2005-08-21T03:26:40Z,1,2020-02-15T06:59:45Z +13512,2005-08-20T02:27:13Z,4508,62,2005-08-28T04:40:13Z,2,2020-02-15T06:59:45Z +13513,2005-08-20T02:27:53Z,1653,454,2005-08-22T06:10:53Z,1,2020-02-15T06:59:45Z +13514,2005-08-20T02:28:09Z,3407,96,2005-08-25T00:41:09Z,1,2020-02-15T06:59:45Z +13515,2005-08-20T02:29:47Z,3438,194,2005-08-23T08:12:47Z,2,2020-02-15T06:59:45Z +13516,2005-08-20T02:32:45Z,4286,95,2005-08-27T04:38:45Z,1,2020-02-15T06:59:45Z +13517,2005-08-20T02:33:17Z,533,186,2005-08-23T22:40:17Z,2,2020-02-15T06:59:45Z +13518,2005-08-20T02:36:17Z,352,528,2005-08-24T08:06:17Z,1,2020-02-15T06:59:45Z +13519,2005-08-20T02:37:07Z,182,12,2005-08-23T01:26:07Z,2,2020-02-15T06:59:45Z +13520,2005-08-20T02:41:46Z,3326,74,2005-08-22T01:53:46Z,1,2020-02-15T06:59:45Z +13521,2005-08-20T02:42:28Z,2586,384,2005-08-22T06:12:28Z,1,2020-02-15T06:59:45Z +13522,2005-08-20T02:44:06Z,2940,343,2005-08-28T05:30:06Z,1,2020-02-15T06:59:45Z +13523,2005-08-20T02:47:03Z,163,572,2005-08-28T07:43:03Z,1,2020-02-15T06:59:45Z +13524,2005-08-20T02:48:43Z,4557,593,2005-08-27T03:14:43Z,2,2020-02-15T06:59:45Z +13525,2005-08-20T02:50:44Z,3514,111,2005-08-26T22:58:44Z,2,2020-02-15T06:59:45Z +13526,2005-08-20T02:58:42Z,1966,277,2005-08-27T22:36:42Z,2,2020-02-15T06:59:45Z +13527,2005-08-20T03:00:47Z,4424,521,2005-08-25T01:03:47Z,1,2020-02-15T06:59:45Z +13528,2005-08-20T03:03:31Z,1847,202,2005-08-26T03:09:31Z,1,2020-02-15T06:59:45Z +13529,2005-08-20T03:07:47Z,1979,193,2005-08-21T21:50:47Z,1,2020-02-15T06:59:45Z +13530,2005-08-20T03:12:43Z,597,156,2005-08-23T09:01:43Z,2,2020-02-15T06:59:45Z +13531,2005-08-20T03:26:10Z,2778,156,2005-08-25T03:41:10Z,1,2020-02-15T06:59:45Z +13532,2005-08-20T03:29:28Z,1433,168,2005-08-23T22:53:28Z,2,2020-02-15T06:59:45Z +13533,2005-08-20T03:30:00Z,1801,436,2005-08-27T05:53:00Z,1,2020-02-15T06:59:45Z +13534,2006-02-14T15:16:03Z,2476,75,,1,2020-02-15T06:59:45Z +13535,2005-08-20T03:30:25Z,1563,86,2005-08-28T04:35:25Z,1,2020-02-15T06:59:45Z +13536,2005-08-20T03:35:16Z,667,183,2005-08-25T04:06:16Z,2,2020-02-15T06:59:45Z +13537,2005-08-20T03:39:15Z,2521,418,2005-08-23T22:03:15Z,2,2020-02-15T06:59:45Z +13538,2006-02-14T15:16:03Z,581,279,,1,2020-02-15T06:59:45Z +13539,2005-08-20T03:40:27Z,3110,518,2005-08-27T07:15:27Z,1,2020-02-15T06:59:45Z +13540,2005-08-20T03:41:23Z,3785,557,2005-08-27T09:09:23Z,2,2020-02-15T06:59:45Z +13541,2005-08-20T03:41:41Z,1363,15,2005-08-24T23:14:41Z,1,2020-02-15T06:59:45Z +13542,2005-08-20T03:41:57Z,4543,147,2005-08-29T03:21:57Z,2,2020-02-15T06:59:45Z +13543,2005-08-20T03:43:13Z,2142,163,2005-08-29T07:14:13Z,2,2020-02-15T06:59:45Z +13544,2005-08-20T03:44:26Z,58,538,2005-08-27T22:11:26Z,1,2020-02-15T06:59:45Z +13545,2005-08-20T03:50:15Z,615,417,2005-08-27T22:24:15Z,1,2020-02-15T06:59:45Z +13546,2005-08-20T03:50:24Z,2492,390,2005-08-28T03:04:24Z,2,2020-02-15T06:59:45Z +13547,2005-08-20T03:53:16Z,3122,456,2005-08-25T04:02:16Z,1,2020-02-15T06:59:45Z +13548,2005-08-20T03:53:20Z,4389,319,2005-08-27T21:54:20Z,1,2020-02-15T06:59:45Z +13549,2005-08-20T03:58:41Z,508,274,2005-08-28T22:49:41Z,1,2020-02-15T06:59:45Z +13550,2005-08-20T03:58:51Z,208,206,2005-08-28T00:45:51Z,2,2020-02-15T06:59:45Z +13551,2005-08-20T04:00:30Z,1049,503,2005-08-21T06:26:30Z,2,2020-02-15T06:59:45Z +13552,2005-08-20T04:03:51Z,758,578,2005-08-23T02:48:51Z,2,2020-02-15T06:59:45Z +13553,2005-08-20T04:07:21Z,4407,314,2005-08-28T09:55:21Z,1,2020-02-15T06:59:45Z +13554,2005-08-20T04:08:39Z,2648,569,2005-08-28T07:11:39Z,2,2020-02-15T06:59:45Z +13555,2005-08-20T04:09:50Z,3176,93,2005-08-29T05:20:50Z,1,2020-02-15T06:59:45Z +13556,2005-08-20T04:10:26Z,3914,266,2005-08-26T06:45:26Z,2,2020-02-15T06:59:45Z +13557,2005-08-20T04:12:41Z,2290,23,2005-08-21T02:33:41Z,2,2020-02-15T06:59:45Z +13558,2005-08-20T04:13:17Z,1551,564,2005-08-24T06:38:17Z,1,2020-02-15T06:59:45Z +13559,2005-08-20T04:16:07Z,2413,444,2005-08-24T23:23:07Z,1,2020-02-15T06:59:45Z +13560,2005-08-20T04:17:16Z,820,56,2005-08-28T08:38:16Z,1,2020-02-15T06:59:45Z +13561,2006-02-14T15:16:03Z,3202,530,,1,2020-02-15T06:59:45Z +13562,2005-08-20T04:31:45Z,4547,36,2005-08-25T09:59:45Z,1,2020-02-15T06:59:45Z +13563,2005-08-20T04:33:31Z,599,366,2005-08-24T07:08:31Z,2,2020-02-15T06:59:45Z +13564,2005-08-20T04:34:46Z,678,36,2005-08-28T23:18:46Z,2,2020-02-15T06:59:45Z +13565,2005-08-20T04:38:52Z,3378,214,2005-08-27T07:17:52Z,1,2020-02-15T06:59:45Z +13566,2005-08-20T04:45:32Z,4397,558,2005-08-28T02:12:32Z,2,2020-02-15T06:59:45Z +13567,2005-08-20T04:49:21Z,543,242,2005-08-26T10:27:21Z,1,2020-02-15T06:59:45Z +13568,2005-08-20T05:02:46Z,1243,151,2005-08-27T03:12:46Z,2,2020-02-15T06:59:45Z +13569,2005-08-20T05:02:59Z,1934,496,2005-08-28T00:51:59Z,1,2020-02-15T06:59:45Z +13570,2005-08-20T05:04:57Z,2808,188,2005-08-24T06:19:57Z,2,2020-02-15T06:59:45Z +13571,2005-08-20T05:05:14Z,1251,458,2005-08-25T03:59:14Z,2,2020-02-15T06:59:45Z +13572,2005-08-20T05:07:27Z,660,11,2005-08-23T23:33:27Z,1,2020-02-15T06:59:45Z +13573,2005-08-20T05:10:14Z,3032,59,2005-08-22T00:59:14Z,1,2020-02-15T06:59:45Z +13574,2005-08-20T05:10:39Z,2383,552,2005-08-21T02:21:39Z,2,2020-02-15T06:59:45Z +13575,2005-08-20T05:15:20Z,2729,339,2005-08-28T07:36:20Z,2,2020-02-15T06:59:45Z +13576,2005-08-20T05:19:56Z,2669,223,2005-08-22T09:08:56Z,2,2020-02-15T06:59:45Z +13577,2006-02-14T15:16:03Z,3844,448,,2,2020-02-15T06:59:45Z +13578,2006-02-14T15:16:03Z,4301,352,,2,2020-02-15T06:59:45Z +13579,2005-08-20T05:22:06Z,4237,333,2005-08-28T02:33:06Z,2,2020-02-15T06:59:45Z +13580,2005-08-20T05:23:34Z,4419,526,2005-08-23T02:45:34Z,1,2020-02-15T06:59:45Z +13581,2005-08-20T05:26:15Z,1753,119,2005-08-21T11:07:15Z,2,2020-02-15T06:59:45Z +13582,2005-08-20T05:28:11Z,211,166,2005-08-23T02:06:11Z,2,2020-02-15T06:59:45Z +13583,2005-08-20T05:29:45Z,176,74,2005-08-26T06:49:45Z,1,2020-02-15T06:59:45Z +13584,2006-02-14T15:16:03Z,3966,548,,2,2020-02-15T06:59:45Z +13585,2005-08-20T05:32:23Z,3314,470,2005-08-27T23:36:23Z,1,2020-02-15T06:59:45Z +13586,2005-08-20T05:40:33Z,4544,445,2005-08-25T01:32:33Z,2,2020-02-15T06:59:45Z +13587,2006-02-14T15:16:03Z,2455,431,,2,2020-02-15T06:59:45Z +13588,2005-08-20T05:47:11Z,702,279,2005-08-28T02:45:11Z,2,2020-02-15T06:59:45Z +13589,2005-08-20T05:47:25Z,3216,574,2005-08-23T01:29:25Z,2,2020-02-15T06:59:45Z +13590,2005-08-20T05:48:59Z,4417,264,2005-08-25T00:44:59Z,2,2020-02-15T06:59:45Z +13591,2005-08-20T05:50:05Z,3089,390,2005-08-27T08:43:05Z,2,2020-02-15T06:59:45Z +13592,2005-08-20T05:50:35Z,1509,470,2005-08-23T04:52:35Z,1,2020-02-15T06:59:45Z +13593,2005-08-20T05:50:52Z,261,585,2005-08-27T05:28:52Z,2,2020-02-15T06:59:45Z +13594,2005-08-20T05:53:31Z,3424,7,2005-08-23T09:01:31Z,1,2020-02-15T06:59:45Z +13595,2005-08-20T05:54:27Z,673,545,2005-08-29T01:25:27Z,1,2020-02-15T06:59:45Z +13596,2005-08-20T05:58:58Z,482,513,2005-08-27T08:35:58Z,1,2020-02-15T06:59:45Z +13597,2005-08-20T05:59:05Z,3697,72,2005-08-24T05:38:05Z,2,2020-02-15T06:59:45Z +13598,2005-08-20T05:59:17Z,2803,259,2005-08-29T01:02:17Z,1,2020-02-15T06:59:45Z +13599,2005-08-20T06:00:03Z,3333,150,2005-08-29T07:56:03Z,1,2020-02-15T06:59:45Z +13600,2005-08-20T06:00:25Z,431,528,2005-08-28T02:39:25Z,1,2020-02-15T06:59:45Z +13601,2005-08-20T06:01:15Z,2166,189,2005-08-29T06:14:15Z,2,2020-02-15T06:59:45Z +13602,2005-08-20T06:02:02Z,2805,348,2005-08-27T04:51:02Z,1,2020-02-15T06:59:45Z +13603,2005-08-20T06:02:48Z,937,362,2005-08-29T09:39:48Z,1,2020-02-15T06:59:45Z +13604,2005-08-20T06:03:33Z,4352,353,2005-08-21T07:06:33Z,1,2020-02-15T06:59:45Z +13605,2005-08-20T06:06:17Z,4446,522,2005-08-26T00:53:17Z,2,2020-02-15T06:59:45Z +13606,2005-08-20T06:07:01Z,83,146,2005-08-27T04:59:01Z,2,2020-02-15T06:59:45Z +13607,2005-08-20T06:08:42Z,2692,491,2005-08-21T01:59:42Z,2,2020-02-15T06:59:45Z +13608,2005-08-20T06:10:44Z,4110,193,2005-08-24T07:08:44Z,1,2020-02-15T06:59:45Z +13609,2005-08-20T06:11:51Z,299,328,2005-08-23T04:13:51Z,2,2020-02-15T06:59:45Z +13610,2005-08-20T06:14:12Z,2526,3,2005-08-26T00:44:12Z,2,2020-02-15T06:59:45Z +13611,2005-08-20T06:20:42Z,1460,112,2005-08-28T10:07:42Z,1,2020-02-15T06:59:45Z +13612,2005-08-20T06:22:08Z,675,505,2005-08-28T02:22:08Z,1,2020-02-15T06:59:45Z +13613,2005-08-20T06:23:53Z,2415,201,2005-08-29T11:40:53Z,2,2020-02-15T06:59:45Z +13614,2005-08-20T06:28:37Z,3736,381,2005-08-22T07:54:37Z,2,2020-02-15T06:59:45Z +13615,2005-08-20T06:28:53Z,1864,539,2005-08-27T11:40:53Z,2,2020-02-15T06:59:45Z +13616,2005-08-20T06:30:33Z,1694,194,2005-08-27T09:29:33Z,2,2020-02-15T06:59:45Z +13617,2005-08-20T06:35:30Z,4059,526,2005-08-29T09:03:30Z,1,2020-02-15T06:59:45Z +13618,2005-08-20T06:36:46Z,390,390,2005-08-29T05:17:46Z,2,2020-02-15T06:59:45Z +13619,2005-08-20T06:39:26Z,1068,365,2005-08-23T05:22:26Z,2,2020-02-15T06:59:45Z +13620,2005-08-20T06:41:27Z,2361,92,2005-08-24T11:02:27Z,1,2020-02-15T06:59:45Z +13621,2005-08-20T06:43:44Z,3754,581,2005-08-23T06:25:44Z,2,2020-02-15T06:59:45Z +13622,2005-08-20T06:45:32Z,3355,335,2005-08-25T02:40:32Z,1,2020-02-15T06:59:45Z +13623,2005-08-20T06:49:46Z,3948,321,2005-08-25T05:19:46Z,2,2020-02-15T06:59:45Z +13624,2005-08-20T06:51:02Z,430,63,2005-08-29T02:39:02Z,1,2020-02-15T06:59:45Z +13625,2005-08-20T06:52:03Z,60,422,2005-08-27T07:43:03Z,1,2020-02-15T06:59:45Z +13626,2005-08-20T06:55:24Z,594,524,2005-08-29T12:32:24Z,1,2020-02-15T06:59:45Z +13627,2005-08-20T06:59:00Z,603,329,2005-08-29T11:43:00Z,2,2020-02-15T06:59:45Z +13628,2005-08-20T07:03:53Z,1006,500,2005-08-22T11:27:53Z,2,2020-02-15T06:59:45Z +13629,2005-08-20T07:04:07Z,1834,392,2005-08-25T12:36:07Z,1,2020-02-15T06:59:45Z +13630,2005-08-20T07:05:56Z,3346,244,2005-08-29T04:15:56Z,1,2020-02-15T06:59:45Z +13631,2005-08-20T07:07:37Z,1015,535,2005-08-22T04:01:37Z,1,2020-02-15T06:59:45Z +13632,2005-08-20T07:10:52Z,4008,409,2005-08-29T10:19:52Z,2,2020-02-15T06:59:45Z +13633,2005-08-20T07:13:47Z,3227,301,2005-08-24T11:25:47Z,1,2020-02-15T06:59:45Z +13634,2005-08-20T07:16:45Z,850,411,2005-08-22T03:38:45Z,1,2020-02-15T06:59:45Z +13635,2005-08-20T07:17:35Z,669,286,2005-08-29T06:27:35Z,1,2020-02-15T06:59:45Z +13636,2005-08-20T07:20:09Z,1467,349,2005-08-23T09:58:09Z,1,2020-02-15T06:59:45Z +13637,2005-08-20T07:21:15Z,2298,342,2005-08-24T10:13:15Z,2,2020-02-15T06:59:45Z +13638,2005-08-20T07:21:15Z,3255,493,2005-08-23T11:09:15Z,2,2020-02-15T06:59:45Z +13639,2005-08-20T07:22:07Z,2489,562,2005-08-23T11:24:07Z,2,2020-02-15T06:59:45Z +13640,2005-08-20T07:22:53Z,3427,541,2005-08-21T11:54:53Z,2,2020-02-15T06:59:45Z +13641,2005-08-20T07:34:42Z,367,281,2005-08-26T05:18:42Z,1,2020-02-15T06:59:45Z +13642,2005-08-20T07:42:17Z,4415,452,2005-08-29T10:49:17Z,1,2020-02-15T06:59:45Z +13643,2005-08-20T07:42:24Z,2443,398,2005-08-26T09:13:24Z,2,2020-02-15T06:59:45Z +13644,2005-08-20T07:46:30Z,970,464,2005-08-27T01:54:30Z,1,2020-02-15T06:59:45Z +13645,2005-08-20T07:47:05Z,157,387,2005-08-23T02:58:05Z,1,2020-02-15T06:59:45Z +13646,2005-08-20T07:47:08Z,1347,242,2005-08-29T08:33:08Z,1,2020-02-15T06:59:45Z +13647,2005-08-20T07:48:07Z,3269,519,2005-08-28T07:56:07Z,2,2020-02-15T06:59:45Z +13648,2005-08-20T07:48:10Z,3921,596,2005-08-22T12:15:10Z,2,2020-02-15T06:59:45Z +13649,2005-08-20T07:48:38Z,1495,259,2005-08-23T07:43:38Z,2,2020-02-15T06:59:45Z +13650,2005-08-20T07:49:06Z,2644,322,2005-08-28T10:11:06Z,1,2020-02-15T06:59:45Z +13651,2005-08-20T07:50:08Z,1082,256,2005-08-21T07:11:08Z,1,2020-02-15T06:59:45Z +13652,2005-08-20T07:52:34Z,2548,67,2005-08-23T08:58:34Z,2,2020-02-15T06:59:45Z +13653,2005-08-20T07:54:54Z,4029,129,2005-08-29T06:43:54Z,1,2020-02-15T06:59:45Z +13654,2005-08-20T07:58:21Z,1582,469,2005-08-21T09:40:21Z,2,2020-02-15T06:59:45Z +13655,2005-08-20T07:59:13Z,4294,207,2005-08-22T12:04:13Z,1,2020-02-15T06:59:45Z +13656,2005-08-20T08:01:07Z,3180,411,2005-08-28T13:16:07Z,2,2020-02-15T06:59:45Z +13657,2005-08-20T08:01:39Z,1752,414,2005-08-23T07:31:39Z,1,2020-02-15T06:59:45Z +13658,2005-08-20T08:02:22Z,3827,487,2005-08-28T06:00:22Z,1,2020-02-15T06:59:45Z +13659,2005-08-20T08:05:52Z,3610,520,2005-08-24T12:38:52Z,1,2020-02-15T06:59:45Z +13660,2005-08-20T08:05:56Z,3972,72,2005-08-22T13:22:56Z,1,2020-02-15T06:59:45Z +13661,2005-08-20T08:05:59Z,3996,471,2005-08-29T12:15:59Z,1,2020-02-15T06:59:45Z +13662,2005-08-20T08:11:58Z,3880,592,2005-08-26T13:34:58Z,1,2020-02-15T06:59:45Z +13663,2005-08-20T08:12:33Z,3969,240,2005-08-27T03:23:33Z,2,2020-02-15T06:59:45Z +13664,2005-08-20T08:18:36Z,3750,264,2005-08-26T11:04:36Z,1,2020-02-15T06:59:45Z +13665,2005-08-20T08:19:20Z,117,291,2005-08-28T06:26:20Z,1,2020-02-15T06:59:45Z +13666,2005-08-20T08:20:19Z,2007,451,2005-08-22T03:22:19Z,1,2020-02-15T06:59:45Z +13667,2005-08-20T08:25:34Z,3856,280,2005-08-24T07:04:34Z,2,2020-02-15T06:59:45Z +13668,2005-08-20T08:26:06Z,3659,123,2005-08-25T05:52:06Z,2,2020-02-15T06:59:45Z +13669,2005-08-20T08:26:32Z,4504,261,2005-08-27T08:10:32Z,2,2020-02-15T06:59:45Z +13670,2005-08-20T08:27:01Z,1951,147,2005-08-29T05:59:01Z,2,2020-02-15T06:59:45Z +13671,2005-08-20T08:27:03Z,1473,201,2005-08-26T03:56:03Z,1,2020-02-15T06:59:45Z +13672,2005-08-20T08:27:27Z,2068,201,2005-08-22T06:15:27Z,2,2020-02-15T06:59:45Z +13673,2005-08-20T08:27:30Z,343,332,2005-08-26T05:14:30Z,1,2020-02-15T06:59:45Z +13674,2005-08-20T08:30:54Z,3397,36,2005-08-22T02:59:54Z,1,2020-02-15T06:59:45Z +13675,2005-08-20T08:32:51Z,350,493,2005-08-27T03:52:51Z,2,2020-02-15T06:59:45Z +13676,2005-08-20T08:33:21Z,3170,103,2005-08-25T02:51:21Z,1,2020-02-15T06:59:45Z +13677,2005-08-20T08:34:41Z,4013,15,2005-08-26T11:51:41Z,2,2020-02-15T06:59:45Z +13678,2005-08-20T08:38:24Z,1118,337,2005-08-27T13:54:24Z,2,2020-02-15T06:59:45Z +13679,2005-08-20T08:39:34Z,2878,229,2005-08-29T10:06:34Z,2,2020-02-15T06:59:45Z +13680,2005-08-20T08:44:06Z,2822,70,2005-08-27T09:58:06Z,2,2020-02-15T06:59:45Z +13681,2005-08-20T08:47:37Z,3039,328,2005-08-27T09:47:37Z,1,2020-02-15T06:59:45Z +13682,2005-08-20T08:50:39Z,287,30,2005-08-21T09:05:39Z,2,2020-02-15T06:59:45Z +13683,2005-08-20T08:54:55Z,1729,255,2005-08-24T14:10:55Z,2,2020-02-15T06:59:45Z +13684,2005-08-20T08:55:53Z,2213,348,2005-08-25T08:11:53Z,1,2020-02-15T06:59:45Z +13685,2005-08-20T08:57:11Z,3336,260,2005-08-27T07:26:11Z,1,2020-02-15T06:59:45Z +13686,2005-08-20T08:57:28Z,666,306,2005-08-24T07:21:28Z,2,2020-02-15T06:59:45Z +13687,2005-08-20T08:57:51Z,3629,290,2005-08-22T07:02:51Z,2,2020-02-15T06:59:45Z +13688,2005-08-20T08:59:38Z,1116,572,2005-08-28T04:54:38Z,2,2020-02-15T06:59:45Z +13689,2005-08-20T09:04:30Z,819,336,2005-08-22T05:38:30Z,2,2020-02-15T06:59:45Z +13690,2005-08-20T09:07:27Z,3721,513,2005-08-23T08:03:27Z,2,2020-02-15T06:59:45Z +13691,2005-08-20T09:07:39Z,676,548,2005-08-28T15:03:39Z,1,2020-02-15T06:59:45Z +13692,2005-08-20T09:07:52Z,1928,65,2005-08-21T05:17:52Z,1,2020-02-15T06:59:45Z +13693,2005-08-20T09:11:42Z,933,552,2005-08-24T15:00:42Z,2,2020-02-15T06:59:45Z +13694,2005-08-20T09:13:23Z,3654,454,2005-08-28T06:10:23Z,1,2020-02-15T06:59:45Z +13695,2005-08-20T09:13:25Z,3114,258,2005-08-27T11:51:25Z,2,2020-02-15T06:59:45Z +13696,2005-08-20T09:16:15Z,1279,206,2005-08-21T03:33:15Z,1,2020-02-15T06:59:45Z +13697,2005-08-20T09:21:08Z,291,76,2005-08-29T12:33:08Z,1,2020-02-15T06:59:45Z +13698,2005-08-20T09:24:26Z,3829,364,2005-08-22T05:04:26Z,2,2020-02-15T06:59:45Z +13699,2005-08-20T09:26:14Z,3913,21,2005-08-29T08:16:14Z,2,2020-02-15T06:59:45Z +13700,2005-08-20T09:26:17Z,4229,265,2005-08-27T05:49:17Z,2,2020-02-15T06:59:45Z +13701,2005-08-20T09:27:05Z,1643,564,2005-08-21T14:54:05Z,1,2020-02-15T06:59:45Z +13702,2005-08-20T09:27:20Z,700,296,2005-08-29T15:04:20Z,2,2020-02-15T06:59:45Z +13703,2005-08-20T09:29:35Z,2296,356,2005-08-27T08:03:35Z,2,2020-02-15T06:59:45Z +13704,2005-08-20T09:32:04Z,3373,4,2005-08-23T14:29:04Z,2,2020-02-15T06:59:45Z +13705,2005-08-20T09:32:23Z,3663,451,2005-08-21T13:51:23Z,1,2020-02-15T06:59:45Z +13706,2005-08-20T09:32:56Z,3005,363,2005-08-28T05:22:56Z,2,2020-02-15T06:59:45Z +13707,2005-08-20T09:33:58Z,826,232,2005-08-23T07:44:58Z,2,2020-02-15T06:59:45Z +13708,2005-08-20T09:34:07Z,2236,218,2005-08-26T10:17:07Z,1,2020-02-15T06:59:45Z +13709,2005-08-20T09:34:51Z,4089,422,2005-08-23T04:13:51Z,1,2020-02-15T06:59:45Z +13710,2005-08-20T09:35:20Z,756,333,2005-08-21T05:29:20Z,2,2020-02-15T06:59:45Z +13711,2005-08-20T09:35:20Z,2318,453,2005-08-28T09:06:20Z,2,2020-02-15T06:59:45Z +13712,2005-08-20T09:38:04Z,1039,581,2005-08-21T06:10:04Z,1,2020-02-15T06:59:45Z +13713,2006-02-14T15:16:03Z,3075,267,,1,2020-02-15T06:59:45Z +13714,2005-08-20T09:41:09Z,2659,277,2005-08-22T06:28:09Z,1,2020-02-15T06:59:45Z +13715,2005-08-20T09:43:06Z,1028,292,2005-08-27T10:22:06Z,1,2020-02-15T06:59:45Z +13716,2005-08-20T09:48:32Z,86,386,2005-08-26T07:20:32Z,2,2020-02-15T06:59:45Z +13717,2005-08-20T09:50:52Z,1629,300,2005-08-28T11:32:52Z,2,2020-02-15T06:59:45Z +13718,2005-08-20T09:53:44Z,205,19,2005-08-29T13:46:44Z,2,2020-02-15T06:59:45Z +13719,2006-02-14T15:16:03Z,3547,208,,1,2020-02-15T06:59:45Z +13720,2005-08-20T10:01:39Z,813,427,2005-08-27T08:26:39Z,1,2020-02-15T06:59:45Z +13721,2005-08-20T10:02:59Z,1444,297,2005-08-24T07:02:59Z,2,2020-02-15T06:59:45Z +13722,2005-08-20T10:03:45Z,1581,422,2005-08-25T04:26:45Z,1,2020-02-15T06:59:45Z +13723,2005-08-20T10:05:30Z,411,110,2005-08-27T07:43:30Z,2,2020-02-15T06:59:45Z +13724,2005-08-20T10:07:28Z,200,80,2005-08-24T07:47:28Z,2,2020-02-15T06:59:45Z +13725,2005-08-20T10:08:27Z,3861,306,2005-08-28T06:52:27Z,2,2020-02-15T06:59:45Z +13726,2005-08-20T10:08:40Z,2258,214,2005-08-23T14:58:40Z,1,2020-02-15T06:59:45Z +13727,2005-08-20T10:08:53Z,4201,85,2005-08-27T09:30:53Z,1,2020-02-15T06:59:45Z +13728,2005-08-20T10:11:07Z,1962,157,2005-08-23T10:32:07Z,1,2020-02-15T06:59:45Z +13729,2005-08-20T10:17:08Z,4108,415,2005-08-28T15:35:08Z,1,2020-02-15T06:59:45Z +13730,2005-08-20T10:17:09Z,1330,548,2005-08-28T10:45:09Z,1,2020-02-15T06:59:45Z +13731,2005-08-20T10:22:08Z,1133,450,2005-08-21T12:04:08Z,2,2020-02-15T06:59:45Z +13732,2005-08-20T10:24:41Z,1138,17,2005-08-22T04:44:41Z,1,2020-02-15T06:59:45Z +13733,2005-08-20T10:25:12Z,3994,85,2005-08-21T10:49:12Z,2,2020-02-15T06:59:45Z +13734,2005-08-20T10:29:57Z,4561,374,2005-08-25T14:41:57Z,2,2020-02-15T06:59:45Z +13735,2005-08-20T10:31:01Z,1813,35,2005-08-26T05:00:01Z,1,2020-02-15T06:59:45Z +13736,2005-08-20T10:31:23Z,3369,32,2005-08-28T06:51:23Z,1,2020-02-15T06:59:45Z +13737,2005-08-20T10:41:50Z,4319,200,2005-08-25T14:33:50Z,2,2020-02-15T06:59:45Z +13738,2005-08-20T10:42:42Z,2748,273,2005-08-25T09:32:42Z,1,2020-02-15T06:59:45Z +13739,2005-08-20T10:45:10Z,3027,441,2005-08-28T08:46:10Z,2,2020-02-15T06:59:45Z +13740,2005-08-20T10:48:43Z,4366,21,2005-08-29T15:30:43Z,1,2020-02-15T06:59:45Z +13741,2005-08-20T10:48:47Z,3887,195,2005-08-21T11:19:47Z,1,2020-02-15T06:59:45Z +13742,2005-08-20T10:49:15Z,1377,580,2005-08-21T11:05:15Z,2,2020-02-15T06:59:45Z +13743,2005-08-20T10:51:27Z,3693,57,2005-08-24T15:54:27Z,1,2020-02-15T06:59:45Z +13744,2005-08-20T10:51:45Z,2962,408,2005-08-25T06:42:45Z,2,2020-02-15T06:59:45Z +13745,2005-08-20T10:53:49Z,1264,142,2005-08-25T13:25:49Z,1,2020-02-15T06:59:45Z +13746,2005-08-20T10:55:28Z,3742,520,2005-08-25T07:48:28Z,2,2020-02-15T06:59:45Z +13747,2005-08-20T10:56:06Z,3332,74,2005-08-29T10:29:06Z,1,2020-02-15T06:59:45Z +13748,2005-08-20T10:59:54Z,2198,410,2005-08-23T12:33:54Z,1,2020-02-15T06:59:45Z +13749,2005-08-20T11:00:37Z,2811,282,2005-08-26T12:04:37Z,1,2020-02-15T06:59:45Z +13750,2005-08-20T11:11:42Z,3363,246,2005-08-29T16:16:42Z,2,2020-02-15T06:59:45Z +13751,2005-08-20T11:17:03Z,185,105,2005-08-22T14:12:03Z,2,2020-02-15T06:59:45Z +13752,2005-08-20T11:17:45Z,1794,77,2005-08-29T13:25:45Z,2,2020-02-15T06:59:45Z +13753,2006-02-14T15:16:03Z,3746,495,,1,2020-02-15T06:59:45Z +13754,2005-08-20T11:18:08Z,1740,108,2005-08-22T11:55:08Z,1,2020-02-15T06:59:45Z +13755,2005-08-20T11:18:53Z,1927,342,2005-08-27T06:51:53Z,2,2020-02-15T06:59:45Z +13756,2006-02-14T15:16:03Z,1146,252,,2,2020-02-15T06:59:45Z +13757,2005-08-20T11:20:12Z,1147,14,2005-08-23T10:14:12Z,2,2020-02-15T06:59:45Z +13758,2005-08-20T11:21:26Z,864,255,2005-08-29T14:37:26Z,2,2020-02-15T06:59:45Z +13759,2005-08-20T11:24:48Z,595,269,2005-08-29T10:29:48Z,1,2020-02-15T06:59:45Z +13760,2005-08-20T11:26:33Z,3459,436,2005-08-27T11:12:33Z,2,2020-02-15T06:59:45Z +13761,2005-08-20T11:28:50Z,3149,376,2005-08-21T12:05:50Z,2,2020-02-15T06:59:45Z +13762,2005-08-20T11:29:32Z,451,566,2005-08-23T17:25:32Z,1,2020-02-15T06:59:45Z +13763,2005-08-20T11:37:56Z,4171,469,2005-08-26T13:12:56Z,1,2020-02-15T06:59:45Z +13764,2005-08-20T11:38:16Z,989,386,2005-08-27T08:01:16Z,1,2020-02-15T06:59:45Z +13765,2005-08-20T11:39:00Z,2104,219,2005-08-21T06:05:00Z,1,2020-02-15T06:59:46Z +13766,2005-08-20T11:42:01Z,1313,189,2005-08-27T13:44:01Z,2,2020-02-15T06:59:46Z +13767,2005-08-20T11:43:36Z,2739,506,2005-08-22T17:10:36Z,1,2020-02-15T06:59:46Z +13768,2005-08-20T11:43:43Z,3847,198,2005-08-27T07:56:43Z,2,2020-02-15T06:59:46Z +13769,2005-08-20T11:43:52Z,2868,56,2005-08-28T13:19:52Z,1,2020-02-15T06:59:46Z +13770,2005-08-20T11:45:54Z,998,538,2005-08-22T17:08:54Z,1,2020-02-15T06:59:46Z +13771,2005-08-20T11:47:21Z,2278,512,2005-08-22T17:09:21Z,1,2020-02-15T06:59:46Z +13772,2005-08-20T11:47:52Z,2038,387,2005-08-28T05:50:52Z,2,2020-02-15T06:59:46Z +13773,2005-08-20T11:50:14Z,3389,64,2005-08-26T12:35:14Z,1,2020-02-15T06:59:46Z +13774,2005-08-20T11:54:01Z,735,244,2005-08-22T13:25:01Z,2,2020-02-15T06:59:46Z +13775,2005-08-20T11:56:30Z,1858,116,2005-08-28T12:48:30Z,2,2020-02-15T06:59:46Z +13776,2005-08-20T11:57:06Z,2439,137,2005-08-26T10:55:06Z,1,2020-02-15T06:59:46Z +13777,2005-08-20T12:03:35Z,3587,29,2005-08-27T10:13:35Z,1,2020-02-15T06:59:46Z +13778,2005-08-20T12:03:44Z,2385,539,2005-08-28T12:09:44Z,1,2020-02-15T06:59:46Z +13779,2005-08-20T12:03:54Z,63,440,2005-08-28T15:24:54Z,2,2020-02-15T06:59:46Z +13780,2006-02-14T15:16:03Z,1775,14,,2,2020-02-15T06:59:46Z +13781,2005-08-20T12:06:45Z,971,368,2005-08-26T06:50:45Z,2,2020-02-15T06:59:46Z +13782,2005-08-20T12:09:26Z,577,305,2005-08-23T08:31:26Z,2,2020-02-15T06:59:46Z +13783,2005-08-20T12:11:03Z,2643,28,2005-08-21T15:53:03Z,2,2020-02-15T06:59:46Z +13784,2005-08-20T12:11:28Z,3087,431,2005-08-25T08:11:28Z,1,2020-02-15T06:59:46Z +13785,2005-08-20T12:11:46Z,379,453,2005-08-21T06:39:46Z,1,2020-02-15T06:59:46Z +13786,2005-08-20T12:13:24Z,515,94,2005-08-28T07:24:24Z,2,2020-02-15T06:59:46Z +13787,2005-08-20T12:15:23Z,253,188,2005-08-27T06:24:23Z,2,2020-02-15T06:59:46Z +13788,2005-08-20T12:15:41Z,3177,393,2005-08-28T16:28:41Z,2,2020-02-15T06:59:46Z +13789,2005-08-20T12:16:38Z,2523,53,2005-08-25T07:29:38Z,1,2020-02-15T06:59:46Z +13790,2005-08-20T12:17:27Z,1385,11,2005-08-25T12:20:27Z,1,2020-02-15T06:59:46Z +13791,2005-08-20T12:21:05Z,1890,67,2005-08-22T17:58:05Z,1,2020-02-15T06:59:46Z +13792,2005-08-20T12:21:37Z,4157,78,2005-08-27T14:28:37Z,1,2020-02-15T06:59:46Z +13793,2005-08-20T12:22:04Z,2598,424,2005-08-27T09:51:04Z,2,2020-02-15T06:59:46Z +13794,2005-08-20T12:25:32Z,2148,557,2005-08-23T06:38:32Z,2,2020-02-15T06:59:46Z +13795,2005-08-20T12:32:09Z,2837,331,2005-08-21T17:28:09Z,1,2020-02-15T06:59:46Z +13796,2005-08-20T12:32:32Z,28,209,2005-08-29T10:48:32Z,2,2020-02-15T06:59:46Z +13797,2005-08-20T12:33:36Z,2857,529,2005-08-25T18:03:36Z,1,2020-02-15T06:59:46Z +13798,2006-02-14T15:16:03Z,526,15,,2,2020-02-15T06:59:46Z +13799,2005-08-20T12:36:42Z,4413,196,2005-08-28T08:47:42Z,1,2020-02-15T06:59:46Z +13800,2005-08-20T12:40:48Z,1552,407,2005-08-22T15:06:48Z,1,2020-02-15T06:59:46Z +13801,2005-08-20T12:40:53Z,1464,433,2005-08-21T16:29:53Z,1,2020-02-15T06:59:46Z +13802,2005-08-20T12:44:53Z,2079,156,2005-08-22T09:18:53Z,2,2020-02-15T06:59:46Z +13803,2005-08-20T12:46:17Z,1084,486,2005-08-24T15:44:17Z,2,2020-02-15T06:59:46Z +13804,2005-08-20T12:46:32Z,2232,19,2005-08-29T14:04:32Z,2,2020-02-15T06:59:46Z +13805,2005-08-20T12:53:12Z,349,454,2005-08-27T15:21:12Z,1,2020-02-15T06:59:46Z +13806,2005-08-20T12:53:46Z,444,341,2005-08-21T10:36:46Z,1,2020-02-15T06:59:46Z +13807,2005-08-20T12:55:40Z,3822,4,2005-08-28T09:06:40Z,2,2020-02-15T06:59:46Z +13808,2005-08-20T12:55:43Z,3689,262,2005-08-29T11:01:43Z,2,2020-02-15T06:59:46Z +13809,2005-08-20T12:56:03Z,1597,207,2005-08-27T11:58:03Z,1,2020-02-15T06:59:46Z +13810,2005-08-20T12:59:38Z,2228,450,2005-08-21T17:40:38Z,1,2020-02-15T06:59:46Z +13811,2005-08-20T13:00:30Z,1235,168,2005-08-24T10:18:30Z,1,2020-02-15T06:59:46Z +13812,2005-08-20T13:01:43Z,2788,122,2005-08-22T16:32:43Z,2,2020-02-15T06:59:46Z +13813,2005-08-20T13:03:26Z,601,455,2005-08-25T08:42:26Z,1,2020-02-15T06:59:46Z +13814,2005-08-20T13:07:23Z,2129,436,2005-08-22T16:23:23Z,2,2020-02-15T06:59:46Z +13815,2005-08-20T13:08:53Z,3388,582,2005-08-29T13:11:53Z,2,2020-02-15T06:59:46Z +13816,2005-08-20T13:13:56Z,273,27,2005-08-25T09:46:56Z,1,2020-02-15T06:59:46Z +13817,2005-08-20T13:15:30Z,1935,293,2005-08-22T18:48:30Z,2,2020-02-15T06:59:46Z +13818,2005-08-20T13:20:09Z,1283,495,2005-08-21T18:41:09Z,1,2020-02-15T06:59:46Z +13819,2005-08-20T13:23:15Z,1459,296,2005-08-22T16:02:15Z,2,2020-02-15T06:59:46Z +13820,2005-08-20T13:26:37Z,3191,81,2005-08-27T14:05:37Z,1,2020-02-15T06:59:46Z +13821,2005-08-20T13:33:47Z,2402,355,2005-08-25T18:09:47Z,1,2020-02-15T06:59:46Z +13822,2005-08-20T13:39:28Z,807,499,2005-08-24T07:40:28Z,1,2020-02-15T06:59:46Z +13823,2005-08-20T13:42:10Z,3875,89,2005-08-22T18:45:10Z,1,2020-02-15T06:59:46Z +13824,2005-08-20T13:43:12Z,2845,413,2005-08-22T17:26:12Z,1,2020-02-15T06:59:46Z +13825,2005-08-20T13:43:22Z,2135,167,2005-08-29T19:13:22Z,1,2020-02-15T06:59:46Z +13826,2005-08-20T13:46:38Z,401,436,2005-08-29T13:07:38Z,1,2020-02-15T06:59:46Z +13827,2005-08-20T13:47:19Z,1103,342,2005-08-28T09:13:19Z,1,2020-02-15T06:59:46Z +13828,2005-08-20T13:49:52Z,2391,450,2005-08-25T07:49:52Z,2,2020-02-15T06:59:46Z +13829,2005-08-20T13:50:17Z,3980,146,2005-08-24T11:30:17Z,2,2020-02-15T06:59:46Z +13830,2005-08-20T13:57:59Z,2874,61,2005-08-25T11:29:59Z,1,2020-02-15T06:59:46Z +13831,2005-08-20T13:59:35Z,570,480,2005-08-24T12:50:35Z,1,2020-02-15T06:59:46Z +13832,2005-08-20T14:00:25Z,3299,29,2005-08-28T10:11:25Z,1,2020-02-15T06:59:46Z +13833,2005-08-20T14:00:29Z,792,175,2005-08-29T12:01:29Z,2,2020-02-15T06:59:46Z +13834,2005-08-20T14:03:08Z,875,426,2005-08-22T10:12:08Z,1,2020-02-15T06:59:46Z +13835,2005-08-20T14:06:33Z,3738,143,2005-08-26T12:15:33Z,2,2020-02-15T06:59:46Z +13836,2005-08-20T14:18:16Z,4271,375,2005-08-21T18:13:16Z,2,2020-02-15T06:59:46Z +13837,2005-08-20T14:19:03Z,3220,67,2005-08-22T16:25:03Z,2,2020-02-15T06:59:46Z +13838,2005-08-20T14:22:46Z,1134,437,2005-08-29T12:28:46Z,2,2020-02-15T06:59:46Z +13839,2005-08-20T14:23:16Z,1056,437,2005-08-26T19:11:16Z,2,2020-02-15T06:59:46Z +13840,2005-08-20T14:23:20Z,1211,40,2005-08-28T11:53:20Z,1,2020-02-15T06:59:46Z +13841,2005-08-20T14:25:18Z,3277,203,2005-08-29T15:49:18Z,1,2020-02-15T06:59:46Z +13842,2005-08-20T14:29:37Z,4337,180,2005-08-29T18:19:37Z,1,2020-02-15T06:59:46Z +13843,2005-08-20T14:30:01Z,3058,308,2005-08-27T10:06:01Z,2,2020-02-15T06:59:46Z +13844,2005-08-20T14:30:26Z,983,179,2005-08-29T17:08:26Z,1,2020-02-15T06:59:46Z +13845,2005-08-20T14:31:21Z,3993,559,2005-08-29T18:29:21Z,1,2020-02-15T06:59:46Z +13846,2005-08-20T14:32:31Z,3289,257,2005-08-28T16:58:31Z,1,2020-02-15T06:59:46Z +13847,2005-08-20T14:33:59Z,2647,82,2005-08-25T08:49:59Z,1,2020-02-15T06:59:46Z +13848,2005-08-20T14:37:49Z,802,447,2005-08-25T13:15:49Z,1,2020-02-15T06:59:46Z +13849,2005-08-20T14:42:34Z,3774,261,2005-08-24T13:09:34Z,2,2020-02-15T06:59:46Z +13850,2005-08-20T14:43:03Z,3030,546,2005-08-27T11:41:03Z,2,2020-02-15T06:59:46Z +13851,2005-08-20T14:44:22Z,3278,80,2005-08-22T18:10:22Z,1,2020-02-15T06:59:46Z +13852,2005-08-20T14:45:23Z,85,535,2005-08-22T16:47:23Z,2,2020-02-15T06:59:46Z +13853,2005-08-20T14:47:02Z,1680,186,2005-08-26T20:32:02Z,1,2020-02-15T06:59:46Z +13854,2005-08-20T14:48:42Z,4192,158,2005-08-21T14:55:42Z,2,2020-02-15T06:59:46Z +13855,2005-08-20T14:48:55Z,1617,96,2005-08-28T14:45:55Z,1,2020-02-15T06:59:46Z +13856,2005-08-20T14:49:32Z,4196,407,2005-08-29T12:37:32Z,2,2020-02-15T06:59:46Z +13857,2005-08-20T14:50:06Z,2542,366,2005-08-24T10:38:06Z,2,2020-02-15T06:59:46Z +13858,2005-08-20T14:50:57Z,2167,33,2005-08-23T12:10:57Z,2,2020-02-15T06:59:46Z +13859,2005-08-20T14:53:43Z,4381,504,2005-08-28T09:50:43Z,1,2020-02-15T06:59:46Z +13860,2005-08-20T14:55:09Z,558,275,2005-08-22T20:42:09Z,1,2020-02-15T06:59:46Z +13861,2005-08-20T14:56:53Z,303,154,2005-08-22T18:13:53Z,2,2020-02-15T06:59:46Z +13862,2005-08-20T14:57:01Z,3271,170,2005-08-27T10:48:01Z,2,2020-02-15T06:59:46Z +13863,2005-08-20T14:57:50Z,2417,563,2005-08-29T15:36:50Z,2,2020-02-15T06:59:46Z +13864,2005-08-20T14:59:55Z,3935,214,2005-08-22T09:30:55Z,2,2020-02-15T06:59:46Z +13865,2005-08-20T15:04:09Z,3647,275,2005-08-24T10:06:09Z,2,2020-02-15T06:59:46Z +13866,2005-08-20T15:05:29Z,3432,343,2005-08-23T11:27:29Z,2,2020-02-15T06:59:46Z +13867,2005-08-20T15:05:42Z,4514,591,2005-08-29T10:48:42Z,2,2020-02-15T06:59:46Z +13868,2005-08-20T15:06:26Z,3173,51,2005-08-22T19:08:26Z,2,2020-02-15T06:59:46Z +13869,2005-08-20T15:08:57Z,1990,386,2005-08-29T13:13:57Z,2,2020-02-15T06:59:46Z +13870,2005-08-20T15:09:16Z,563,167,2005-08-28T10:00:16Z,2,2020-02-15T06:59:46Z +13871,2005-08-20T15:10:13Z,3206,372,2005-08-29T19:43:13Z,2,2020-02-15T06:59:46Z +13872,2005-08-20T15:10:30Z,2416,421,2005-08-24T10:14:30Z,2,2020-02-15T06:59:46Z +13873,2005-08-20T15:11:11Z,1683,306,2005-08-22T20:13:11Z,2,2020-02-15T06:59:46Z +13874,2005-08-20T15:11:48Z,72,86,2005-08-21T18:26:48Z,2,2020-02-15T06:59:46Z +13875,2005-08-20T15:13:11Z,348,83,2005-08-21T13:11:11Z,1,2020-02-15T06:59:46Z +13876,2005-08-20T15:15:28Z,3137,334,2005-08-23T12:42:28Z,2,2020-02-15T06:59:46Z +13877,2005-08-20T15:16:18Z,3387,5,2005-08-22T18:20:18Z,1,2020-02-15T06:59:46Z +13878,2005-08-20T15:17:38Z,49,481,2005-08-21T21:11:38Z,2,2020-02-15T06:59:46Z +13879,2005-08-20T15:18:10Z,4022,112,2005-08-22T19:23:10Z,2,2020-02-15T06:59:46Z +13880,2005-08-20T15:18:20Z,3911,268,2005-08-24T18:03:20Z,2,2020-02-15T06:59:46Z +13881,2005-08-20T15:18:55Z,2831,144,2005-08-25T11:25:55Z,1,2020-02-15T06:59:46Z +13882,2005-08-20T15:23:26Z,3245,51,2005-08-22T13:03:26Z,1,2020-02-15T06:59:46Z +13883,2005-08-20T15:28:53Z,584,568,2005-08-21T13:11:53Z,1,2020-02-15T06:59:46Z +13884,2005-08-20T15:30:51Z,3182,466,2005-08-26T13:34:51Z,1,2020-02-15T06:59:46Z +13885,2005-08-20T15:32:09Z,3195,537,2005-08-26T15:54:09Z,1,2020-02-15T06:59:46Z +13886,2005-08-20T15:34:43Z,2248,73,2005-08-26T11:48:43Z,2,2020-02-15T06:59:46Z +13887,2005-08-20T15:39:00Z,4002,413,2005-08-24T16:17:00Z,2,2020-02-15T06:59:46Z +13888,2005-08-20T15:39:42Z,1943,297,2005-08-28T13:41:42Z,1,2020-02-15T06:59:46Z +13889,2005-08-20T15:40:06Z,4406,501,2005-08-22T14:09:06Z,2,2020-02-15T06:59:46Z +13890,2005-08-20T15:41:00Z,2965,54,2005-08-22T16:00:00Z,1,2020-02-15T06:59:46Z +13891,2005-08-20T15:42:05Z,2042,289,2005-08-25T13:26:05Z,1,2020-02-15T06:59:46Z +13892,2005-08-20T15:50:17Z,1236,337,2005-08-29T13:33:17Z,2,2020-02-15T06:59:46Z +13893,2005-08-20T15:52:52Z,3503,390,2005-08-27T16:21:52Z,2,2020-02-15T06:59:46Z +13894,2005-08-20T15:55:20Z,2649,360,2005-08-26T17:26:20Z,2,2020-02-15T06:59:46Z +13895,2005-08-20T15:58:28Z,3060,12,2005-08-26T15:07:28Z,2,2020-02-15T06:59:46Z +13896,2005-08-20T15:59:56Z,1338,278,2005-08-21T20:14:56Z,2,2020-02-15T06:59:46Z +13897,2005-08-20T16:02:28Z,628,258,2005-08-23T14:29:28Z,1,2020-02-15T06:59:46Z +13898,2006-02-14T15:16:03Z,4007,369,,2,2020-02-15T06:59:46Z +13899,2005-08-20T16:05:11Z,427,204,2005-08-23T15:14:11Z,2,2020-02-15T06:59:46Z +13900,2005-08-20T16:05:41Z,1140,66,2005-08-22T15:13:41Z,1,2020-02-15T06:59:46Z +13901,2005-08-20T16:06:53Z,3281,166,2005-08-28T11:30:53Z,1,2020-02-15T06:59:46Z +13902,2005-08-20T16:07:08Z,1165,275,2005-08-24T16:43:08Z,2,2020-02-15T06:59:46Z +13903,2005-08-20T16:07:55Z,1676,272,2005-08-25T18:26:55Z,1,2020-02-15T06:59:46Z +13904,2005-08-20T16:11:34Z,721,93,2005-08-26T12:46:34Z,1,2020-02-15T06:59:46Z +13905,2005-08-20T16:12:48Z,2714,437,2005-08-28T16:05:48Z,1,2020-02-15T06:59:46Z +13906,2005-08-20T16:16:03Z,3960,87,2005-08-21T13:29:03Z,2,2020-02-15T06:59:46Z +13907,2005-08-20T16:17:27Z,806,328,2005-08-24T20:14:27Z,2,2020-02-15T06:59:46Z +13908,2005-08-20T16:21:40Z,3661,532,2005-08-29T21:16:40Z,1,2020-02-15T06:59:46Z +13909,2005-08-20T16:26:36Z,1508,309,2005-08-21T20:59:36Z,2,2020-02-15T06:59:46Z +13910,2005-08-20T16:30:49Z,252,133,2005-08-24T13:30:49Z,2,2020-02-15T06:59:46Z +13911,2005-08-20T16:31:33Z,4400,304,2005-08-28T19:26:33Z,2,2020-02-15T06:59:46Z +13912,2005-08-20T16:32:10Z,968,207,2005-08-29T17:37:10Z,2,2020-02-15T06:59:46Z +13913,2005-08-20T16:37:35Z,4259,197,2005-08-26T13:12:35Z,2,2020-02-15T06:59:46Z +13914,2005-08-20T16:38:57Z,3037,237,2005-08-26T14:53:57Z,2,2020-02-15T06:59:46Z +13915,2005-08-20T16:42:53Z,1180,129,2005-08-23T20:30:53Z,2,2020-02-15T06:59:46Z +13916,2005-08-20T16:43:02Z,2971,302,2005-08-25T19:21:02Z,1,2020-02-15T06:59:46Z +13917,2005-08-20T16:43:28Z,4326,10,2005-08-29T16:44:28Z,2,2020-02-15T06:59:46Z +13918,2005-08-20T16:47:32Z,3301,248,2005-08-21T12:00:32Z,2,2020-02-15T06:59:46Z +13919,2005-08-20T16:47:34Z,909,129,2005-08-23T21:27:34Z,2,2020-02-15T06:59:46Z +13920,2005-08-20T16:51:18Z,3200,460,2005-08-27T16:05:18Z,2,2020-02-15T06:59:46Z +13921,2005-08-20T16:57:11Z,3943,59,2005-08-22T19:25:11Z,2,2020-02-15T06:59:46Z +13922,2005-08-20T17:02:37Z,1398,237,2005-08-29T19:28:37Z,1,2020-02-15T06:59:46Z +13923,2005-08-20T17:05:02Z,3129,588,2005-08-27T11:22:02Z,2,2020-02-15T06:59:46Z +13924,2005-08-20T17:05:18Z,3066,444,2005-08-23T16:54:18Z,2,2020-02-15T06:59:46Z +13925,2005-08-20T17:05:34Z,4034,565,2005-08-27T15:32:34Z,2,2020-02-15T06:59:46Z +13926,2005-08-20T17:09:27Z,932,158,2005-08-28T13:42:27Z,2,2020-02-15T06:59:46Z +13927,2005-08-20T17:11:58Z,4284,417,2005-08-24T12:44:58Z,1,2020-02-15T06:59:46Z +13928,2005-08-20T17:12:28Z,1121,244,2005-08-21T13:33:28Z,1,2020-02-15T06:59:46Z +13929,2005-08-20T17:13:48Z,946,57,2005-08-28T15:19:48Z,1,2020-02-15T06:59:46Z +13930,2005-08-20T17:15:06Z,3585,58,2005-08-21T14:29:06Z,1,2020-02-15T06:59:46Z +13931,2005-08-20T17:16:10Z,3884,32,2005-08-27T12:03:10Z,2,2020-02-15T06:59:46Z +13932,2005-08-20T17:17:00Z,471,441,2005-08-24T14:06:00Z,1,2020-02-15T06:59:46Z +13933,2005-08-20T17:17:07Z,647,159,2005-08-22T18:10:07Z,2,2020-02-15T06:59:46Z +13934,2005-08-20T17:18:48Z,4567,457,2005-08-26T15:31:48Z,1,2020-02-15T06:59:46Z +13935,2005-08-20T17:20:49Z,4426,205,2005-08-24T16:52:49Z,2,2020-02-15T06:59:46Z +13936,2005-08-20T17:22:35Z,1731,364,2005-08-23T20:07:35Z,2,2020-02-15T06:59:46Z +13937,2005-08-20T17:22:51Z,1755,172,2005-08-27T15:51:51Z,1,2020-02-15T06:59:46Z +13938,2005-08-20T17:24:45Z,3743,463,2005-08-21T18:39:45Z,1,2020-02-15T06:59:46Z +13939,2005-08-20T17:28:01Z,2700,585,2005-08-23T14:40:01Z,2,2020-02-15T06:59:46Z +13940,2005-08-20T17:28:57Z,2638,187,2005-08-27T22:07:57Z,1,2020-02-15T06:59:46Z +13941,2006-02-14T15:16:03Z,2727,476,,2,2020-02-15T06:59:46Z +13942,2005-08-20T17:30:52Z,4403,211,2005-08-25T13:46:52Z,2,2020-02-15T06:59:46Z +13943,2005-08-20T17:31:18Z,22,464,2005-08-24T11:33:18Z,1,2020-02-15T06:59:46Z +13944,2005-08-20T17:41:16Z,3685,408,2005-08-23T12:02:16Z,1,2020-02-15T06:59:46Z +13945,2005-08-20T17:43:56Z,3328,270,2005-08-26T19:19:56Z,1,2020-02-15T06:59:46Z +13946,2005-08-20T17:44:32Z,3564,529,2005-08-28T19:19:32Z,1,2020-02-15T06:59:46Z +13947,2005-08-20T17:46:06Z,2562,218,2005-08-29T23:44:06Z,2,2020-02-15T06:59:46Z +13948,2005-08-20T17:50:48Z,4033,410,2005-08-25T20:56:48Z,2,2020-02-15T06:59:46Z +13949,2005-08-20T17:55:13Z,1518,34,2005-08-22T20:49:13Z,1,2020-02-15T06:59:46Z +13950,2005-08-20T17:58:00Z,3978,93,2005-08-29T23:23:00Z,1,2020-02-15T06:59:46Z +13951,2005-08-20T17:58:11Z,2034,40,2005-08-26T14:50:11Z,2,2020-02-15T06:59:46Z +13952,2006-02-14T15:16:03Z,224,199,,2,2020-02-15T06:59:46Z +13953,2005-08-20T18:00:37Z,1818,371,2005-08-28T14:52:37Z,1,2020-02-15T06:59:46Z +13954,2005-08-20T18:02:41Z,3812,207,2005-08-27T21:52:41Z,2,2020-02-15T06:59:46Z +13955,2005-08-20T18:05:12Z,2613,273,2005-08-29T18:25:12Z,1,2020-02-15T06:59:46Z +13956,2005-08-20T18:08:19Z,3757,484,2005-08-29T17:03:19Z,1,2020-02-15T06:59:46Z +13957,2005-08-20T18:09:04Z,2889,179,2005-08-23T16:52:04Z,1,2020-02-15T06:59:46Z +13958,2005-08-20T18:11:44Z,2380,33,2005-08-28T14:59:44Z,1,2020-02-15T06:59:46Z +13959,2005-08-20T18:16:21Z,2283,142,2005-08-22T13:56:21Z,2,2020-02-15T06:59:46Z +13960,2005-08-20T18:16:26Z,4177,459,2005-08-29T14:06:26Z,1,2020-02-15T06:59:46Z +13961,2005-08-20T18:16:34Z,2271,129,2005-08-21T16:14:34Z,1,2020-02-15T06:59:46Z +13962,2005-08-20T18:18:06Z,1434,348,2005-08-24T22:16:06Z,2,2020-02-15T06:59:46Z +13963,2005-08-20T18:20:18Z,4145,368,2005-08-24T21:26:18Z,1,2020-02-15T06:59:46Z +13964,2005-08-20T18:24:26Z,108,128,2005-08-21T21:19:26Z,2,2020-02-15T06:59:46Z +13965,2006-02-14T15:16:03Z,670,324,,2,2020-02-15T06:59:46Z +13966,2005-08-20T18:28:28Z,4520,260,2005-08-22T16:49:28Z,2,2020-02-15T06:59:46Z +13967,2005-08-20T18:28:46Z,2751,459,2005-08-26T17:37:46Z,2,2020-02-15T06:59:46Z +13968,2006-02-14T15:16:03Z,3715,15,,2,2020-02-15T06:59:46Z +13969,2005-08-20T18:42:40Z,1836,237,2005-08-27T17:33:40Z,2,2020-02-15T06:59:46Z +13970,2005-08-20T18:43:34Z,1942,418,2005-08-22T15:17:34Z,2,2020-02-15T06:59:46Z +13971,2005-08-20T18:44:53Z,1678,64,2005-08-22T16:25:53Z,2,2020-02-15T06:59:46Z +13972,2005-08-20T18:52:17Z,1687,553,2005-08-28T15:19:17Z,1,2020-02-15T06:59:46Z +13973,2005-08-20T18:52:43Z,1181,58,2005-08-21T19:11:43Z,1,2020-02-15T06:59:46Z +13974,2005-08-20T18:54:59Z,1912,479,2005-08-28T13:02:59Z,1,2020-02-15T06:59:46Z +13975,2005-08-20T18:58:23Z,3821,286,2005-08-25T20:58:23Z,1,2020-02-15T06:59:46Z +13976,2005-08-20T19:02:16Z,1785,278,2005-08-25T17:58:16Z,2,2020-02-15T06:59:46Z +13977,2005-08-20T19:02:34Z,1126,115,2005-08-24T14:14:34Z,1,2020-02-15T06:59:46Z +13978,2005-08-20T19:03:25Z,1263,260,2005-08-27T18:02:25Z,2,2020-02-15T06:59:46Z +13979,2005-08-20T19:03:49Z,2998,211,2005-08-24T21:23:49Z,1,2020-02-15T06:59:46Z +13980,2005-08-20T19:04:40Z,1067,391,2005-08-21T18:36:40Z,2,2020-02-15T06:59:46Z +13981,2005-08-20T19:07:20Z,3342,249,2005-08-23T15:13:20Z,1,2020-02-15T06:59:46Z +13982,2005-08-20T19:08:25Z,2901,448,2005-08-28T15:59:25Z,2,2020-02-15T06:59:46Z +13983,2005-08-20T19:08:32Z,457,231,2005-08-29T23:45:32Z,1,2020-02-15T06:59:46Z +13984,2005-08-20T19:12:30Z,2183,473,2005-08-29T22:04:30Z,1,2020-02-15T06:59:46Z +13985,2005-08-20T19:13:06Z,1081,339,2005-08-24T21:24:06Z,2,2020-02-15T06:59:46Z +13986,2005-08-20T19:13:23Z,3701,152,2005-08-22T20:59:23Z,2,2020-02-15T06:59:46Z +13987,2005-08-20T19:19:30Z,1443,246,2005-08-23T15:37:30Z,2,2020-02-15T06:59:46Z +13988,2005-08-20T19:21:28Z,3567,466,2005-08-21T22:20:28Z,2,2020-02-15T06:59:46Z +13989,2005-08-20T19:27:50Z,1470,252,2005-08-28T15:17:50Z,2,2020-02-15T06:59:46Z +13990,2005-08-20T19:29:23Z,2272,481,2005-08-25T18:50:23Z,2,2020-02-15T06:59:46Z +13991,2005-08-20T19:29:44Z,1971,296,2005-08-24T21:10:44Z,1,2020-02-15T06:59:46Z +13992,2005-08-20T19:30:35Z,2798,136,2005-08-24T19:09:35Z,2,2020-02-15T06:59:46Z +13993,2005-08-20T19:32:29Z,1158,93,2005-08-26T16:59:29Z,2,2020-02-15T06:59:46Z +13994,2005-08-20T19:33:21Z,142,180,2005-08-24T20:55:21Z,1,2020-02-15T06:59:46Z +13995,2005-08-20T19:34:43Z,3789,381,2005-08-25T22:25:43Z,2,2020-02-15T06:59:46Z +13996,2005-08-20T19:45:43Z,3341,306,2005-08-22T16:47:43Z,2,2020-02-15T06:59:46Z +13997,2005-08-20T19:51:28Z,2330,175,2005-08-26T01:29:28Z,2,2020-02-15T06:59:46Z +13998,2005-08-20T19:52:38Z,3936,530,2005-08-26T14:57:38Z,1,2020-02-15T06:59:46Z +13999,2005-08-20T19:53:32Z,4149,239,2005-08-26T19:01:32Z,1,2020-02-15T06:59:46Z +14000,2005-08-20T20:06:05Z,3907,276,2005-08-28T17:02:05Z,1,2020-02-15T06:59:46Z +14001,2005-08-20T20:07:15Z,1318,120,2005-08-27T00:50:15Z,2,2020-02-15T06:59:46Z +14002,2005-08-20T20:12:19Z,87,33,2005-08-23T00:23:19Z,1,2020-02-15T06:59:46Z +14003,2005-08-20T20:16:06Z,3165,256,2005-08-28T14:36:06Z,1,2020-02-15T06:59:46Z +14004,2005-08-20T20:16:35Z,3445,358,2005-08-28T17:23:35Z,2,2020-02-15T06:59:46Z +14005,2005-08-20T20:19:05Z,1415,135,2005-08-26T01:42:05Z,2,2020-02-15T06:59:46Z +14006,2005-08-20T20:21:36Z,2189,186,2005-08-21T15:26:36Z,1,2020-02-15T06:59:46Z +14007,2005-08-20T20:22:47Z,374,284,2005-08-28T20:40:47Z,2,2020-02-15T06:59:46Z +14008,2005-08-20T20:26:00Z,2427,560,2005-08-28T17:23:00Z,2,2020-02-15T06:59:46Z +14009,2005-08-20T20:26:53Z,3004,382,2005-08-21T23:32:53Z,2,2020-02-15T06:59:46Z +14010,2005-08-20T20:29:46Z,934,537,2005-08-26T17:37:46Z,2,2020-02-15T06:59:46Z +14011,2005-08-20T20:32:56Z,1212,379,2005-08-28T21:44:56Z,1,2020-02-15T06:59:46Z +14012,2005-08-20T20:42:12Z,1866,274,2005-08-23T23:10:12Z,2,2020-02-15T06:59:46Z +14013,2005-08-20T20:42:50Z,3941,496,2005-08-25T21:37:50Z,2,2020-02-15T06:59:46Z +14014,2005-08-20T20:47:09Z,2188,335,2005-08-21T22:08:09Z,2,2020-02-15T06:59:46Z +14015,2005-08-20T20:47:43Z,3145,554,2005-08-26T19:37:43Z,1,2020-02-15T06:59:46Z +14016,2005-08-20T20:52:03Z,509,220,2005-08-23T18:04:03Z,2,2020-02-15T06:59:46Z +14017,2005-08-20T20:55:32Z,920,230,2005-08-23T16:12:32Z,1,2020-02-15T06:59:46Z +14018,2006-02-14T15:16:03Z,2136,533,,2,2020-02-15T06:59:46Z +14019,2005-08-20T20:59:15Z,1929,202,2005-08-28T17:29:15Z,2,2020-02-15T06:59:46Z +14020,2005-08-20T20:59:43Z,2257,72,2005-08-23T17:11:43Z,2,2020-02-15T06:59:46Z +14021,2005-08-20T21:02:12Z,4394,147,2005-08-27T22:15:12Z,1,2020-02-15T06:59:46Z +14022,2005-08-20T21:08:49Z,4068,170,2005-08-29T21:57:49Z,1,2020-02-15T06:59:46Z +14023,2005-08-20T21:10:32Z,2668,304,2005-08-23T20:57:32Z,1,2020-02-15T06:59:46Z +14024,2005-08-20T21:13:58Z,1492,87,2005-08-29T23:02:58Z,1,2020-02-15T06:59:46Z +14025,2005-08-20T21:19:36Z,4521,37,2005-08-29T23:39:36Z,1,2020-02-15T06:59:46Z +14026,2005-08-20T21:21:08Z,115,231,2005-08-22T23:19:08Z,2,2020-02-15T06:59:46Z +14027,2005-08-20T21:21:34Z,284,432,2005-08-28T17:46:34Z,1,2020-02-15T06:59:46Z +14028,2005-08-20T21:23:03Z,4061,158,2005-08-25T17:29:03Z,2,2020-02-15T06:59:46Z +14029,2005-08-20T21:23:11Z,2653,219,2005-08-22T18:01:11Z,2,2020-02-15T06:59:46Z +14030,2005-08-20T21:23:54Z,1027,127,2005-08-27T01:19:54Z,1,2020-02-15T06:59:46Z +14031,2005-08-20T21:24:24Z,440,361,2005-08-23T21:47:24Z,2,2020-02-15T06:59:46Z +14032,2005-08-20T21:26:55Z,3542,317,2005-08-26T19:19:55Z,1,2020-02-15T06:59:46Z +14033,2005-08-20T21:30:53Z,525,243,2005-08-23T01:45:53Z,2,2020-02-15T06:59:46Z +14034,2005-08-20T21:31:52Z,3484,200,2005-08-29T00:13:52Z,1,2020-02-15T06:59:46Z +14035,2005-08-20T21:31:58Z,2035,260,2005-08-22T16:28:58Z,1,2020-02-15T06:59:46Z +14036,2005-08-20T21:35:27Z,202,256,2005-08-23T03:29:27Z,1,2020-02-15T06:59:46Z +14037,2005-08-20T21:35:58Z,3655,372,2005-08-29T23:06:58Z,2,2020-02-15T06:59:46Z +14038,2005-08-20T21:39:23Z,1069,589,2005-08-27T23:57:23Z,2,2020-02-15T06:59:46Z +14039,2005-08-20T21:39:43Z,4187,383,2005-08-24T19:03:43Z,1,2020-02-15T06:59:46Z +14040,2005-08-20T21:43:44Z,905,17,2005-08-25T16:30:44Z,1,2020-02-15T06:59:46Z +14041,2005-08-20T21:45:23Z,52,247,2005-08-26T01:42:23Z,1,2020-02-15T06:59:46Z +14042,2005-08-20T21:45:51Z,505,322,2005-08-23T19:57:51Z,2,2020-02-15T06:59:46Z +14043,2005-08-20T21:46:43Z,1485,586,2005-08-21T18:27:43Z,2,2020-02-15T06:59:46Z +14044,2005-08-20T21:48:38Z,1422,145,2005-08-29T02:56:38Z,1,2020-02-15T06:59:46Z +14045,2005-08-20T21:50:11Z,3010,509,2005-08-25T19:03:11Z,2,2020-02-15T06:59:46Z +14046,2005-08-20T21:53:21Z,2352,524,2005-08-23T17:51:21Z,2,2020-02-15T06:59:46Z +14047,2005-08-20T22:00:43Z,186,579,2005-08-24T03:17:43Z,2,2020-02-15T06:59:46Z +14048,2005-08-20T22:03:18Z,3475,105,2005-08-25T02:57:18Z,2,2020-02-15T06:59:46Z +14049,2005-08-20T22:08:55Z,1335,112,2005-08-28T20:24:55Z,1,2020-02-15T06:59:46Z +14050,2005-08-20T22:09:04Z,1737,596,2005-08-26T01:39:04Z,2,2020-02-15T06:59:46Z +14051,2005-08-20T22:09:51Z,4012,362,2005-08-29T04:04:51Z,2,2020-02-15T06:59:46Z +14052,2005-08-20T22:11:46Z,3893,514,2005-08-22T20:26:46Z,2,2020-02-15T06:59:46Z +14053,2005-08-20T22:13:59Z,2177,5,2005-08-26T20:50:59Z,2,2020-02-15T06:59:46Z +14054,2005-08-20T22:17:01Z,338,50,2005-08-21T21:34:01Z,1,2020-02-15T06:59:46Z +14055,2005-08-20T22:18:00Z,1571,148,2005-08-22T02:09:00Z,2,2020-02-15T06:59:46Z +14056,2005-08-20T22:18:53Z,1300,22,2005-08-27T01:05:53Z,2,2020-02-15T06:59:46Z +14057,2005-08-20T22:22:59Z,1526,333,2005-08-25T16:58:59Z,2,2020-02-15T06:59:46Z +14058,2005-08-20T22:24:35Z,178,430,2005-08-30T02:26:35Z,1,2020-02-15T06:59:46Z +14059,2005-08-20T22:24:44Z,2045,141,2005-08-26T21:25:44Z,2,2020-02-15T06:59:46Z +14060,2006-02-14T15:16:03Z,3100,175,,2,2020-02-15T06:59:46Z +14061,2005-08-20T22:32:11Z,73,53,2005-08-22T19:28:11Z,1,2020-02-15T06:59:46Z +14062,2005-08-20T22:34:34Z,2841,239,2005-08-25T17:11:34Z,2,2020-02-15T06:59:46Z +14063,2005-08-20T22:36:40Z,1215,275,2005-08-25T00:18:40Z,2,2020-02-15T06:59:46Z +14064,2005-08-20T22:39:16Z,2938,103,2005-08-22T00:45:16Z,2,2020-02-15T06:59:46Z +14065,2005-08-20T22:40:47Z,3758,190,2005-08-24T01:47:47Z,1,2020-02-15T06:59:46Z +14066,2005-08-20T22:45:58Z,2444,274,2005-08-29T00:23:58Z,2,2020-02-15T06:59:46Z +14067,2005-08-20T22:49:23Z,1376,259,2005-08-29T22:28:23Z,2,2020-02-15T06:59:46Z +14068,2005-08-20T22:50:59Z,818,412,2005-08-29T00:45:59Z,1,2020-02-15T06:59:46Z +14069,2005-08-20T22:51:25Z,2239,197,2005-08-30T00:30:25Z,2,2020-02-15T06:59:46Z +14070,2005-08-20T22:56:34Z,846,581,2005-08-29T22:02:34Z,1,2020-02-15T06:59:46Z +14071,2005-08-20T23:01:56Z,2471,550,2005-08-22T02:14:56Z,1,2020-02-15T06:59:46Z +14072,2005-08-20T23:07:10Z,2387,515,2005-08-23T03:38:10Z,2,2020-02-15T06:59:46Z +14073,2005-08-20T23:12:57Z,2996,230,2005-08-28T18:47:57Z,2,2020-02-15T06:59:46Z +14074,2005-08-20T23:16:07Z,1303,506,2005-08-26T04:45:07Z,1,2020-02-15T06:59:46Z +14075,2005-08-20T23:18:54Z,3793,32,2005-08-26T21:59:54Z,2,2020-02-15T06:59:46Z +14076,2005-08-20T23:20:10Z,1070,574,2005-08-24T04:00:10Z,1,2020-02-15T06:59:46Z +14077,2005-08-20T23:24:07Z,3184,21,2005-08-29T02:53:07Z,1,2020-02-15T06:59:46Z +14078,2005-08-20T23:26:40Z,1642,396,2005-08-28T02:30:40Z,1,2020-02-15T06:59:46Z +14079,2005-08-20T23:29:25Z,3528,348,2005-08-25T04:16:25Z,2,2020-02-15T06:59:46Z +14080,2005-08-20T23:29:50Z,3962,266,2005-08-26T00:33:50Z,1,2020-02-15T06:59:46Z +14081,2005-08-20T23:35:13Z,589,392,2005-08-28T01:41:13Z,2,2020-02-15T06:59:46Z +14082,2005-08-20T23:42:00Z,3767,179,2005-08-27T00:59:00Z,1,2020-02-15T06:59:46Z +14083,2005-08-20T23:42:31Z,1823,176,2005-08-28T21:44:31Z,1,2020-02-15T06:59:46Z +14084,2005-08-20T23:42:46Z,900,37,2005-08-24T20:06:46Z,1,2020-02-15T06:59:46Z +14085,2005-08-20T23:46:24Z,3506,471,2005-08-29T02:31:24Z,2,2020-02-15T06:59:46Z +14086,2005-08-20T23:47:54Z,3244,253,2005-08-27T22:49:54Z,1,2020-02-15T06:59:46Z +14087,2005-08-20T23:53:40Z,2368,289,2005-08-26T20:22:40Z,1,2020-02-15T06:59:46Z +14088,2005-08-20T23:57:24Z,1184,518,2005-08-28T21:49:24Z,1,2020-02-15T06:59:46Z +14089,2005-08-20T23:59:02Z,1400,425,2005-08-27T00:19:02Z,1,2020-02-15T06:59:46Z +14090,2005-08-21T00:11:16Z,3254,168,2005-08-23T19:48:16Z,2,2020-02-15T06:59:46Z +14091,2005-08-21T00:11:17Z,3304,53,2005-08-27T18:38:17Z,1,2020-02-15T06:59:46Z +14092,2005-08-21T00:14:32Z,1596,273,2005-08-24T22:22:32Z,2,2020-02-15T06:59:46Z +14093,2005-08-21T00:21:29Z,1176,177,2005-08-22T04:01:29Z,1,2020-02-15T06:59:46Z +14094,2005-08-21T00:21:35Z,3674,471,2005-08-23T05:27:35Z,2,2020-02-15T06:59:46Z +14095,2005-08-21T00:25:45Z,1550,489,2005-08-28T23:00:45Z,1,2020-02-15T06:59:46Z +14096,2005-08-21T00:27:46Z,2089,342,2005-08-22T22:53:46Z,1,2020-02-15T06:59:46Z +14097,2005-08-21T00:28:48Z,4351,88,2005-08-29T22:15:48Z,1,2020-02-15T06:59:46Z +14098,2005-08-21T00:30:32Z,6,554,,2,2020-02-15T06:59:46Z +14099,2005-08-21T00:31:03Z,2452,224,2005-08-27T03:18:03Z,2,2020-02-15T06:59:46Z +14100,2005-08-21T00:31:07Z,4295,397,2005-08-25T05:31:07Z,2,2020-02-15T06:59:46Z +14101,2005-08-21T00:33:03Z,1892,19,2005-08-24T01:59:03Z,1,2020-02-15T06:59:46Z +14102,2005-08-21T00:35:21Z,3772,584,2005-08-30T04:51:21Z,2,2020-02-15T06:59:46Z +14103,2005-08-21T00:37:00Z,1438,409,2005-08-25T22:09:00Z,2,2020-02-15T06:59:46Z +14104,2005-08-21T00:37:44Z,912,178,2005-08-21T22:55:44Z,2,2020-02-15T06:59:46Z +14105,2005-08-21T00:44:34Z,1111,71,2005-08-29T19:00:34Z,1,2020-02-15T06:59:46Z +14106,2005-08-21T00:46:01Z,2673,315,2005-08-27T23:44:01Z,1,2020-02-15T06:59:46Z +14107,2006-02-14T15:16:03Z,3998,251,,1,2020-02-15T06:59:46Z +14108,2005-08-21T00:52:45Z,4339,243,2005-08-21T19:35:45Z,2,2020-02-15T06:59:46Z +14109,2005-08-21T00:52:58Z,1046,180,2005-08-22T00:09:58Z,2,2020-02-15T06:59:46Z +14110,2005-08-21T00:53:09Z,2709,35,2005-08-24T05:33:09Z,2,2020-02-15T06:59:46Z +14111,2005-08-21T00:59:01Z,1294,130,2005-08-22T20:43:01Z,2,2020-02-15T06:59:46Z +14112,2005-08-21T01:00:46Z,734,141,2005-08-27T03:46:46Z,1,2020-02-15T06:59:46Z +14113,2005-08-21T01:03:30Z,931,288,2005-08-23T06:46:30Z,2,2020-02-15T06:59:46Z +14114,2005-08-21T01:07:11Z,2270,8,2005-08-24T20:33:11Z,1,2020-02-15T06:59:46Z +14115,2005-08-21T01:10:29Z,1945,257,2005-08-24T01:21:29Z,1,2020-02-15T06:59:46Z +14116,2005-08-21T01:11:17Z,2356,142,2005-08-24T23:45:17Z,2,2020-02-15T06:59:46Z +14117,2005-08-21T01:11:59Z,573,493,2005-08-22T06:56:59Z,1,2020-02-15T06:59:46Z +14118,2005-08-21T01:13:37Z,2605,337,2005-08-28T02:35:37Z,2,2020-02-15T06:59:46Z +14119,2005-08-21T01:15:59Z,129,53,2005-08-27T23:36:59Z,2,2020-02-15T06:59:46Z +14120,2005-08-21T01:25:00Z,4069,302,2005-08-24T23:21:00Z,2,2020-02-15T06:59:46Z +14121,2005-08-21T01:26:33Z,4207,417,2005-08-28T22:47:33Z,2,2020-02-15T06:59:46Z +14122,2005-08-21T01:29:01Z,3955,86,2005-08-27T05:31:01Z,1,2020-02-15T06:59:46Z +14123,2005-08-21T01:31:25Z,143,66,2005-08-23T02:32:25Z,1,2020-02-15T06:59:46Z +14124,2005-08-21T01:31:51Z,311,35,2005-08-24T22:20:51Z,2,2020-02-15T06:59:46Z +14125,2005-08-21T01:32:16Z,2174,265,2005-08-26T00:09:16Z,1,2020-02-15T06:59:46Z +14126,2005-08-21T01:32:17Z,2738,215,2005-08-23T01:02:17Z,1,2020-02-15T06:59:46Z +14127,2005-08-21T01:33:32Z,4532,550,2005-08-22T02:47:32Z,2,2020-02-15T06:59:46Z +14128,2005-08-21T01:35:58Z,2594,81,2005-08-21T21:23:58Z,2,2020-02-15T06:59:46Z +14129,2005-08-21T01:42:15Z,3572,362,2005-08-23T20:04:15Z,2,2020-02-15T06:59:46Z +14130,2005-08-21T01:43:11Z,3859,352,2005-08-27T21:16:11Z,2,2020-02-15T06:59:46Z +14131,2005-08-21T01:43:40Z,4382,267,2005-08-29T02:00:40Z,2,2020-02-15T06:59:46Z +14132,2005-08-21T01:43:58Z,3806,91,2005-08-26T20:16:58Z,2,2020-02-15T06:59:46Z +14133,2005-08-21T01:44:14Z,2463,453,2005-08-30T02:19:14Z,2,2020-02-15T06:59:46Z +14134,2005-08-21T01:45:54Z,2159,497,2005-08-24T01:36:54Z,1,2020-02-15T06:59:46Z +14135,2005-08-21T01:53:54Z,347,59,2005-08-27T05:57:54Z,1,2020-02-15T06:59:46Z +14136,2005-08-21T01:57:26Z,268,135,2005-08-28T01:11:26Z,1,2020-02-15T06:59:46Z +14137,2006-02-14T15:16:03Z,2346,53,,2,2020-02-15T06:59:46Z +14138,2005-08-21T01:59:37Z,1238,121,2005-08-30T01:17:37Z,2,2020-02-15T06:59:46Z +14139,2005-08-21T02:04:33Z,2280,561,2005-08-22T04:16:33Z,2,2020-02-15T06:59:46Z +14140,2005-08-21T02:04:57Z,2070,65,2005-08-29T06:41:57Z,2,2020-02-15T06:59:46Z +14141,2005-08-21T02:07:22Z,4527,190,2005-08-30T07:32:22Z,1,2020-02-15T06:59:46Z +14142,2005-08-21T02:07:43Z,1479,544,2005-08-23T02:37:43Z,2,2020-02-15T06:59:46Z +14143,2005-08-21T02:10:32Z,2549,146,2005-08-23T23:50:32Z,1,2020-02-15T06:59:46Z +14144,2005-08-21T02:10:57Z,2366,46,2005-08-28T01:02:57Z,1,2020-02-15T06:59:46Z +14145,2005-08-21T02:11:38Z,150,314,2005-08-22T22:19:38Z,2,2020-02-15T06:59:46Z +14146,2005-08-21T02:13:31Z,2151,192,2005-08-24T22:47:31Z,2,2020-02-15T06:59:46Z +14147,2005-08-21T02:14:03Z,1476,366,2005-08-27T22:38:03Z,1,2020-02-15T06:59:46Z +14148,2005-08-21T02:17:49Z,1605,528,2005-08-22T00:12:49Z,1,2020-02-15T06:59:46Z +14149,2005-08-21T02:22:47Z,3371,518,2005-08-24T02:36:47Z,1,2020-02-15T06:59:46Z +14150,2005-08-21T02:23:03Z,2324,161,2005-08-25T22:50:03Z,2,2020-02-15T06:59:46Z +14151,2005-08-21T02:23:25Z,2785,426,2005-08-30T07:08:25Z,1,2020-02-15T06:59:46Z +14152,2005-08-21T02:23:50Z,2561,379,2005-08-25T06:05:50Z,1,2020-02-15T06:59:46Z +14153,2005-08-21T02:24:33Z,1502,120,2005-08-27T05:28:33Z,2,2020-02-15T06:59:46Z +14154,2005-08-21T02:30:00Z,951,468,2005-08-28T01:41:00Z,2,2020-02-15T06:59:46Z +14155,2005-08-21T02:31:35Z,769,148,2005-08-27T06:00:35Z,2,2020-02-15T06:59:46Z +14156,2005-08-21T02:35:16Z,437,147,2005-08-27T01:32:16Z,2,2020-02-15T06:59:46Z +14157,2005-08-21T02:43:15Z,4471,128,2005-08-24T02:47:15Z,1,2020-02-15T06:59:46Z +14158,2005-08-21T02:43:20Z,474,114,2005-08-28T02:19:20Z,1,2020-02-15T06:59:46Z +14159,2005-08-21T02:45:58Z,3231,144,2005-08-27T04:53:58Z,1,2020-02-15T06:59:46Z +14160,2006-02-14T15:16:03Z,2428,493,,2,2020-02-15T06:59:46Z +14161,2005-08-21T02:51:59Z,2744,21,2005-08-28T21:38:59Z,2,2020-02-15T06:59:46Z +14162,2005-08-21T02:55:34Z,3788,315,2005-08-27T00:13:34Z,1,2020-02-15T06:59:46Z +14163,2005-08-21T02:56:52Z,1007,204,2005-08-21T21:03:52Z,2,2020-02-15T06:59:46Z +14164,2005-08-21T02:58:02Z,2381,274,2005-08-29T23:17:02Z,2,2020-02-15T06:59:46Z +14165,2005-08-21T02:59:17Z,4151,150,2005-08-24T23:09:17Z,2,2020-02-15T06:59:46Z +14166,2005-08-21T02:59:31Z,2457,190,2005-08-24T23:19:31Z,2,2020-02-15T06:59:46Z +14167,2005-08-21T02:59:48Z,1005,64,2005-08-29T22:17:48Z,1,2020-02-15T06:59:46Z +14168,2005-08-21T03:00:03Z,1321,49,2005-08-29T06:04:03Z,2,2020-02-15T06:59:46Z +14169,2005-08-21T03:00:31Z,3800,396,2005-08-30T01:16:31Z,1,2020-02-15T06:59:46Z +14170,2005-08-21T03:00:39Z,894,259,2005-08-27T23:07:39Z,1,2020-02-15T06:59:46Z +14171,2005-08-21T03:00:42Z,4179,320,2005-08-24T00:54:42Z,1,2020-02-15T06:59:46Z +14172,2006-02-14T15:16:03Z,2158,450,,2,2020-02-15T06:59:46Z +14173,2005-08-21T03:01:01Z,3175,152,2005-08-22T02:40:01Z,1,2020-02-15T06:59:46Z +14174,2005-08-21T03:01:45Z,1862,29,2005-08-22T07:19:45Z,2,2020-02-15T06:59:46Z +14175,2006-02-14T15:16:03Z,2021,452,,1,2020-02-15T06:59:46Z +14176,2005-08-21T03:09:23Z,4420,556,2005-08-26T21:26:23Z,1,2020-02-15T06:59:46Z +14177,2005-08-21T03:11:33Z,409,121,2005-08-28T21:41:33Z,2,2020-02-15T06:59:46Z +14178,2005-08-21T03:13:45Z,2178,524,2005-08-22T01:50:45Z,1,2020-02-15T06:59:46Z +14179,2005-08-21T03:14:27Z,3956,79,2005-08-26T00:46:27Z,2,2020-02-15T06:59:46Z +14180,2005-08-21T03:16:15Z,796,262,2005-08-24T22:31:15Z,2,2020-02-15T06:59:46Z +14181,2005-08-21T03:16:30Z,197,210,2005-08-29T06:25:30Z,2,2020-02-15T06:59:46Z +14182,2005-08-21T03:17:10Z,2422,519,2005-08-24T21:46:10Z,1,2020-02-15T06:59:46Z +14183,2005-08-21T03:24:29Z,1888,26,2005-08-22T07:25:29Z,2,2020-02-15T06:59:46Z +14184,2005-08-21T03:24:50Z,3759,148,2005-08-29T01:46:50Z,2,2020-02-15T06:59:46Z +14185,2005-08-21T03:28:37Z,3957,579,2005-08-26T01:15:37Z,1,2020-02-15T06:59:46Z +14186,2005-08-21T03:31:07Z,3158,461,2005-08-28T07:29:07Z,2,2020-02-15T06:59:46Z +14187,2005-08-21T03:32:03Z,4031,275,2005-08-25T03:29:03Z,2,2020-02-15T06:59:46Z +14188,2005-08-21T03:32:04Z,4492,548,2005-08-22T07:26:04Z,1,2020-02-15T06:59:46Z +14189,2005-08-21T03:32:17Z,2209,127,2005-08-22T04:46:17Z,2,2020-02-15T06:59:46Z +14190,2005-08-21T03:35:21Z,4203,517,2005-08-29T07:35:21Z,2,2020-02-15T06:59:46Z +14191,2005-08-21T03:35:58Z,301,423,2005-08-28T00:28:58Z,1,2020-02-15T06:59:46Z +14192,2005-08-21T03:37:42Z,3563,26,2005-08-28T05:31:42Z,2,2020-02-15T06:59:46Z +14193,2005-08-21T03:38:27Z,513,25,2005-08-28T09:16:27Z,1,2020-02-15T06:59:46Z +14194,2005-08-21T03:40:11Z,2003,138,2005-08-26T07:38:11Z,1,2020-02-15T06:59:46Z +14195,2005-08-21T03:40:35Z,3732,93,2005-08-23T01:22:35Z,1,2020-02-15T06:59:46Z +14196,2005-08-21T03:40:40Z,4477,281,2005-08-25T05:55:40Z,1,2020-02-15T06:59:46Z +14197,2005-08-21T03:47:25Z,340,469,2005-08-30T09:15:25Z,2,2020-02-15T06:59:46Z +14198,2005-08-21T03:48:31Z,465,381,2005-08-24T07:10:31Z,2,2020-02-15T06:59:46Z +14199,2005-08-21T03:48:43Z,658,442,2005-08-23T04:01:43Z,1,2020-02-15T06:59:46Z +14200,2005-08-21T03:51:27Z,2339,349,2005-08-29T22:00:27Z,1,2020-02-15T06:59:46Z +14201,2005-08-21T03:51:34Z,314,427,2005-08-30T03:42:34Z,2,2020-02-15T06:59:46Z +14202,2005-08-21T03:51:52Z,1995,473,2005-08-22T09:35:52Z,1,2020-02-15T06:59:46Z +14203,2005-08-21T03:51:52Z,3668,95,2005-08-24T06:13:52Z,2,2020-02-15T06:59:46Z +14204,2006-02-14T15:16:03Z,4334,287,,1,2020-02-15T06:59:46Z +14205,2005-08-21T03:57:15Z,315,406,2005-08-30T08:46:15Z,2,2020-02-15T06:59:46Z +14206,2005-08-21T03:59:26Z,860,279,2005-08-26T03:52:26Z,1,2020-02-15T06:59:46Z +14207,2005-08-21T04:08:19Z,1327,569,2005-08-29T07:59:19Z,2,2020-02-15T06:59:46Z +14208,2005-08-21T04:09:18Z,4180,299,2005-08-22T03:29:18Z,1,2020-02-15T06:59:46Z +14209,2005-08-21T04:17:56Z,896,472,2005-08-27T06:57:56Z,1,2020-02-15T06:59:46Z +14210,2005-08-21T04:28:02Z,1867,468,2005-08-24T02:14:02Z,2,2020-02-15T06:59:46Z +14211,2005-08-21T04:29:11Z,300,372,2005-08-24T02:50:11Z,2,2020-02-15T06:59:46Z +14212,2005-08-21T04:29:26Z,4540,354,2005-08-24T00:46:26Z,2,2020-02-15T06:59:46Z +14213,2005-08-21T04:30:47Z,382,511,2005-08-24T23:01:47Z,1,2020-02-15T06:59:46Z +14214,2005-08-21T04:30:49Z,4510,198,2005-08-26T04:42:49Z,1,2020-02-15T06:59:46Z +14215,2005-08-21T04:34:11Z,35,54,2005-08-27T10:30:11Z,2,2020-02-15T06:59:46Z +14216,2006-02-14T15:16:03Z,3763,186,,1,2020-02-15T06:59:46Z +14217,2005-08-21T04:37:56Z,2847,66,2005-08-26T03:55:56Z,2,2020-02-15T06:59:46Z +14218,2005-08-21T04:43:59Z,4087,104,2005-08-27T10:29:59Z,1,2020-02-15T06:59:46Z +14219,2006-02-14T15:16:03Z,3718,334,,2,2020-02-15T06:59:46Z +14220,2006-02-14T15:16:03Z,2618,162,,1,2020-02-15T06:59:46Z +14221,2005-08-21T04:49:41Z,3824,51,2005-08-29T23:52:41Z,1,2020-02-15T06:59:46Z +14222,2005-08-21T04:49:48Z,714,7,2005-08-25T05:34:48Z,2,2020-02-15T06:59:46Z +14223,2005-08-21T04:51:51Z,514,392,2005-08-29T00:37:51Z,1,2020-02-15T06:59:46Z +14224,2005-08-21T04:53:08Z,3634,323,2005-08-27T04:12:08Z,2,2020-02-15T06:59:46Z +14225,2005-08-21T04:53:37Z,984,4,2005-08-25T23:39:37Z,2,2020-02-15T06:59:46Z +14226,2005-08-21T04:55:37Z,1793,316,2005-08-24T04:32:37Z,1,2020-02-15T06:59:46Z +14227,2005-08-21T04:56:31Z,4102,277,2005-08-22T05:04:31Z,2,2020-02-15T06:59:46Z +14228,2005-08-21T04:57:08Z,2016,71,2005-08-25T00:06:08Z,2,2020-02-15T06:59:46Z +14229,2005-08-21T04:57:15Z,4479,186,2005-08-26T10:00:15Z,1,2020-02-15T06:59:46Z +14230,2005-08-21T04:57:29Z,844,584,2005-08-27T08:14:29Z,2,2020-02-15T06:59:46Z +14231,2005-08-21T05:04:34Z,1244,307,2005-08-23T04:58:34Z,1,2020-02-15T06:59:46Z +14232,2005-08-21T05:07:02Z,2710,176,2005-08-29T06:57:02Z,1,2020-02-15T06:59:46Z +14233,2005-08-21T05:07:08Z,2943,599,2005-08-28T03:20:08Z,1,2020-02-15T06:59:46Z +14234,2005-08-21T05:07:12Z,1439,271,2005-08-23T06:44:12Z,2,2020-02-15T06:59:46Z +14235,2005-08-21T05:08:42Z,125,558,2005-08-29T23:36:42Z,1,2020-02-15T06:59:46Z +14236,2005-08-21T05:13:16Z,172,25,2005-08-26T04:03:16Z,2,2020-02-15T06:59:46Z +14237,2005-08-21T05:15:00Z,3284,410,2005-08-25T10:06:00Z,1,2020-02-15T06:59:46Z +14238,2005-08-21T05:16:40Z,3148,192,2005-08-30T02:13:40Z,2,2020-02-15T06:59:46Z +14239,2005-08-21T05:18:57Z,1559,416,2005-08-22T00:12:57Z,2,2020-02-15T06:59:46Z +14240,2005-08-21T05:19:39Z,3294,12,2005-08-22T23:25:39Z,2,2020-02-15T06:59:46Z +14241,2005-08-21T05:24:55Z,2547,291,2005-08-30T03:33:55Z,1,2020-02-15T06:59:46Z +14242,2005-08-21T05:25:59Z,1588,68,2005-08-27T07:22:59Z,1,2020-02-15T06:59:46Z +14243,2006-02-14T15:16:03Z,1489,264,,1,2020-02-15T06:59:46Z +14244,2005-08-21T05:29:55Z,1150,43,2005-08-24T01:06:55Z,1,2020-02-15T06:59:46Z +14245,2005-08-21T05:30:54Z,975,354,2005-08-26T07:02:54Z,1,2020-02-15T06:59:46Z +14246,2005-08-21T05:34:09Z,3499,120,2005-08-26T06:12:09Z,1,2020-02-15T06:59:46Z +14247,2005-08-21T05:35:17Z,267,302,2005-08-26T03:22:17Z,1,2020-02-15T06:59:46Z +14248,2005-08-21T05:35:57Z,725,293,2005-08-28T05:53:57Z,2,2020-02-15T06:59:46Z +14249,2005-08-21T05:38:05Z,695,268,2005-08-28T09:07:05Z,2,2020-02-15T06:59:46Z +14250,2005-08-21T05:39:35Z,3008,313,2005-08-28T10:06:35Z,2,2020-02-15T06:59:46Z +14251,2005-08-21T05:42:20Z,139,486,2005-08-26T06:20:20Z,2,2020-02-15T06:59:46Z +14252,2005-08-21T05:44:07Z,2660,13,2005-08-29T08:53:07Z,1,2020-02-15T06:59:46Z +14253,2005-08-21T05:47:52Z,4246,456,2005-08-25T04:28:52Z,1,2020-02-15T06:59:46Z +14254,2005-08-21T05:51:28Z,1549,589,2005-08-29T06:05:28Z,2,2020-02-15T06:59:46Z +14255,2005-08-21T05:51:37Z,3125,492,2005-08-29T10:00:37Z,1,2020-02-15T06:59:46Z +14256,2005-08-21T05:52:27Z,2922,331,2005-08-29T02:10:27Z,2,2020-02-15T06:59:46Z +14257,2005-08-21T05:52:57Z,3830,178,2005-08-29T03:18:57Z,2,2020-02-15T06:59:46Z +14258,2005-08-21T05:56:36Z,752,359,2005-08-26T06:14:36Z,1,2020-02-15T06:59:46Z +14259,2005-08-21T06:00:22Z,3705,583,2005-08-22T05:38:22Z,2,2020-02-15T06:59:46Z +14260,2005-08-21T06:01:08Z,2961,40,2005-08-29T09:01:08Z,2,2020-02-15T06:59:46Z +14261,2005-08-21T06:07:24Z,1426,166,2005-08-26T09:57:24Z,1,2020-02-15T06:59:46Z +14262,2005-08-21T06:08:13Z,1430,324,2005-08-30T10:55:13Z,1,2020-02-15T06:59:46Z +14263,2005-08-21T06:08:15Z,2595,533,2005-08-29T09:22:15Z,2,2020-02-15T06:59:46Z +14264,2005-08-21T06:18:22Z,3426,295,2005-08-25T08:08:22Z,1,2020-02-15T06:59:46Z +14265,2005-08-21T06:20:14Z,3116,134,2005-08-23T09:05:14Z,1,2020-02-15T06:59:46Z +14266,2005-08-21T06:20:51Z,3543,269,2005-08-23T00:44:51Z,1,2020-02-15T06:59:46Z +14267,2006-02-14T15:16:03Z,2199,527,,2,2020-02-15T06:59:46Z +14268,2005-08-21T06:21:24Z,2442,278,2005-08-23T05:39:24Z,2,2020-02-15T06:59:46Z +14269,2005-08-21T06:22:07Z,531,241,2005-08-30T00:41:07Z,2,2020-02-15T06:59:46Z +14270,2005-08-21T06:22:18Z,4083,171,2005-08-27T08:04:18Z,1,2020-02-15T06:59:46Z +14271,2005-08-21T06:23:29Z,4506,224,2005-08-27T04:49:29Z,1,2020-02-15T06:59:46Z +14272,2005-08-21T06:24:55Z,3908,243,2005-08-28T02:25:55Z,1,2020-02-15T06:59:46Z +14273,2005-08-21T06:26:48Z,2640,388,2005-08-30T10:34:48Z,1,2020-02-15T06:59:46Z +14274,2005-08-21T06:29:20Z,3183,405,2005-08-26T06:25:20Z,2,2020-02-15T06:59:46Z +14275,2005-08-21T06:30:30Z,3238,163,2005-08-25T12:28:30Z,1,2020-02-15T06:59:46Z +14276,2005-08-21T06:34:05Z,3637,318,2005-08-28T10:13:05Z,2,2020-02-15T06:59:46Z +14277,2005-08-21T06:34:41Z,2652,566,2005-08-28T10:53:41Z,2,2020-02-15T06:59:46Z +14278,2006-02-14T15:16:03Z,2334,557,,2,2020-02-15T06:59:46Z +14279,2005-08-21T06:39:08Z,3325,387,2005-08-29T11:01:08Z,2,2020-02-15T06:59:46Z +14280,2005-08-21T06:39:58Z,1561,481,2005-08-23T04:50:58Z,1,2020-02-15T06:59:46Z +14281,2005-08-21T06:40:48Z,1848,166,2005-08-26T11:42:48Z,2,2020-02-15T06:59:46Z +14282,2005-08-21T06:41:29Z,3107,450,2005-08-22T12:37:29Z,1,2020-02-15T06:59:46Z +14283,2005-08-21T06:44:14Z,3052,253,2005-08-24T01:01:14Z,1,2020-02-15T06:59:46Z +14284,2005-08-21T06:44:37Z,633,486,2005-08-28T05:03:37Z,1,2020-02-15T06:59:46Z +14285,2005-08-21T06:50:48Z,402,249,2005-08-28T11:35:48Z,1,2020-02-15T06:59:46Z +14286,2005-08-21T06:53:53Z,2377,558,2005-08-27T11:37:53Z,2,2020-02-15T06:59:46Z +14287,2005-08-21T06:53:59Z,2426,427,2005-08-25T03:10:59Z,2,2020-02-15T06:59:46Z +14288,2005-08-21T06:57:34Z,587,512,2005-08-26T11:32:34Z,1,2020-02-15T06:59:46Z +14289,2005-08-21T06:58:49Z,1185,103,2005-08-25T11:29:49Z,2,2020-02-15T06:59:46Z +14290,2005-08-21T07:02:59Z,790,366,2005-08-28T02:57:59Z,1,2020-02-15T06:59:46Z +14291,2005-08-21T07:03:05Z,3988,56,2005-08-26T12:56:05Z,2,2020-02-15T06:59:46Z +14292,2005-08-21T07:06:20Z,1959,251,2005-08-22T01:39:20Z,2,2020-02-15T06:59:46Z +14293,2005-08-21T07:06:47Z,3555,364,2005-08-22T05:07:47Z,2,2020-02-15T06:59:46Z +14294,2005-08-21T07:07:26Z,354,455,2005-08-22T02:20:26Z,2,2020-02-15T06:59:46Z +14295,2005-08-21T07:09:27Z,2187,336,2005-08-22T01:27:27Z,2,2020-02-15T06:59:46Z +14296,2005-08-21T07:13:23Z,3813,275,2005-08-26T11:14:23Z,1,2020-02-15T06:59:46Z +14297,2005-08-21T07:13:46Z,1712,566,2005-08-25T09:07:46Z,1,2020-02-15T06:59:46Z +14298,2005-08-21T07:17:10Z,4317,410,2005-08-25T10:10:10Z,1,2020-02-15T06:59:46Z +14299,2005-08-21T07:18:57Z,4028,342,2005-08-24T01:28:57Z,1,2020-02-15T06:59:46Z +14300,2005-08-21T07:19:37Z,690,382,2005-08-25T12:06:37Z,2,2020-02-15T06:59:46Z +14301,2005-08-21T07:19:48Z,283,162,2005-08-28T02:06:48Z,1,2020-02-15T06:59:46Z +14302,2005-08-21T07:19:57Z,1287,511,2005-08-28T02:59:57Z,1,2020-02-15T06:59:46Z +14303,2005-08-21T07:22:43Z,992,475,2005-08-24T11:52:43Z,1,2020-02-15T06:59:46Z +14304,2005-08-21T07:23:10Z,2650,417,2005-08-26T11:21:10Z,2,2020-02-15T06:59:46Z +14305,2005-08-21T07:29:05Z,2056,58,2005-08-27T08:18:05Z,1,2020-02-15T06:59:46Z +14306,2005-08-21T07:32:35Z,4027,453,2005-08-30T05:53:35Z,1,2020-02-15T06:59:46Z +14307,2005-08-21T07:34:52Z,2894,328,2005-08-29T09:45:52Z,1,2020-02-15T06:59:46Z +14308,2005-08-21T07:43:21Z,3478,419,2005-08-25T02:39:21Z,2,2020-02-15T06:59:46Z +14309,2005-08-21T07:44:17Z,4447,468,2005-08-30T07:23:17Z,2,2020-02-15T06:59:46Z +14310,2005-08-21T07:44:32Z,95,177,2005-08-22T09:02:32Z,1,2020-02-15T06:59:46Z +14311,2005-08-21T07:45:47Z,1761,69,2005-08-27T02:23:47Z,2,2020-02-15T06:59:46Z +14312,2005-08-21T07:48:34Z,1090,238,2005-08-23T04:45:34Z,1,2020-02-15T06:59:46Z +14313,2005-08-21T07:49:53Z,3384,468,2005-08-30T05:52:53Z,2,2020-02-15T06:59:46Z +14314,2005-08-21T07:50:14Z,4115,178,2005-08-24T10:47:14Z,2,2020-02-15T06:59:46Z +14315,2005-08-21T07:56:39Z,1164,459,2005-08-27T04:52:39Z,1,2020-02-15T06:59:46Z +14316,2005-08-21T07:59:47Z,386,64,2005-08-23T02:20:47Z,2,2020-02-15T06:59:46Z +14317,2005-08-21T08:00:40Z,2090,471,2005-08-27T06:52:40Z,1,2020-02-15T06:59:46Z +14318,2006-02-14T15:16:03Z,1042,508,,2,2020-02-15T06:59:46Z +14319,2005-08-21T08:00:55Z,4480,410,2005-08-26T05:04:55Z,1,2020-02-15T06:59:46Z +14320,2005-08-21T08:04:40Z,3121,199,2005-08-22T02:09:40Z,1,2020-02-15T06:59:46Z +14321,2005-08-21T08:05:12Z,967,236,2005-08-23T02:17:12Z,1,2020-02-15T06:59:46Z +14322,2005-08-21T08:06:30Z,2818,221,2005-08-29T10:12:30Z,2,2020-02-15T06:59:46Z +14323,2005-08-21T08:08:43Z,1257,97,2005-08-25T10:44:43Z,1,2020-02-15T06:59:46Z +14324,2005-08-21T08:10:56Z,1361,155,2005-08-30T12:09:56Z,1,2020-02-15T06:59:46Z +14325,2005-08-21T08:15:38Z,4432,313,2005-08-23T08:08:38Z,2,2020-02-15T06:59:46Z +14326,2005-08-21T08:15:41Z,1052,17,2005-08-27T05:22:41Z,1,2020-02-15T06:59:46Z +14327,2005-08-21T08:18:18Z,553,457,2005-08-30T02:21:18Z,2,2020-02-15T06:59:46Z +14328,2005-08-21T08:18:20Z,3194,489,2005-08-25T03:05:20Z,2,2020-02-15T06:59:46Z +14329,2005-08-21T08:22:56Z,3544,6,2005-08-28T02:22:56Z,2,2020-02-15T06:59:46Z +14330,2005-08-21T08:29:20Z,763,84,2005-08-30T03:59:20Z,2,2020-02-15T06:59:46Z +14331,2005-08-21T08:29:38Z,3128,372,2005-08-29T13:18:38Z,2,2020-02-15T06:59:46Z +14332,2005-08-21T08:30:43Z,1388,496,2005-08-29T10:51:43Z,1,2020-02-15T06:59:46Z +14333,2005-08-21T08:31:03Z,2976,93,2005-08-28T03:39:03Z,2,2020-02-15T06:59:46Z +14334,2005-08-21T08:32:32Z,1448,595,2005-08-25T02:53:32Z,2,2020-02-15T06:59:46Z +14335,2005-08-21T08:33:07Z,2610,263,2005-08-26T14:16:07Z,1,2020-02-15T06:59:46Z +14336,2005-08-21T08:33:42Z,3166,362,2005-08-23T03:27:42Z,1,2020-02-15T06:59:46Z +14337,2005-08-21T08:34:26Z,3529,506,2005-08-24T11:31:26Z,1,2020-02-15T06:59:46Z +14338,2005-08-21T08:36:03Z,1789,205,2005-08-24T12:31:03Z,2,2020-02-15T06:59:46Z +14339,2005-08-21T08:37:15Z,1744,30,2005-08-26T03:37:15Z,2,2020-02-15T06:59:46Z +14340,2005-08-21T08:38:21Z,2181,230,2005-08-25T09:25:21Z,1,2020-02-15T06:59:46Z +14341,2005-08-21T08:38:24Z,4498,560,2005-08-26T12:36:24Z,1,2020-02-15T06:59:46Z +14342,2005-08-21T08:39:26Z,2749,559,2005-08-23T11:40:26Z,2,2020-02-15T06:59:46Z +14343,2005-08-21T08:40:21Z,3769,238,2005-08-29T03:06:21Z,1,2020-02-15T06:59:46Z +14344,2005-08-21T08:40:56Z,1562,341,2005-08-27T12:40:56Z,1,2020-02-15T06:59:46Z +14345,2005-08-21T08:41:15Z,1726,598,2005-08-24T11:59:15Z,1,2020-02-15T06:59:46Z +14346,2005-08-21T08:42:26Z,109,17,2005-08-23T09:18:26Z,2,2020-02-15T06:59:46Z +14347,2005-08-21T08:42:31Z,3862,214,2005-08-25T07:11:31Z,2,2020-02-15T06:59:46Z +14348,2005-08-21T08:54:26Z,885,496,2005-08-24T02:55:26Z,2,2020-02-15T06:59:46Z +14349,2005-08-21T08:54:53Z,96,119,2005-08-30T14:27:53Z,1,2020-02-15T06:59:46Z +14350,2005-08-21T08:58:38Z,3174,222,2005-08-30T03:29:38Z,2,2020-02-15T06:59:46Z +14351,2005-08-21T09:04:20Z,2037,66,2005-08-25T05:27:20Z,1,2020-02-15T06:59:46Z +14352,2005-08-21T09:06:29Z,1224,527,2005-08-28T13:36:29Z,1,2020-02-15T06:59:46Z +14353,2005-08-21T09:07:50Z,1612,129,2005-08-22T10:31:50Z,2,2020-02-15T06:59:46Z +14354,2005-08-21T09:08:14Z,1137,382,2005-08-30T05:27:14Z,1,2020-02-15T06:59:46Z +14355,2005-08-21T09:08:29Z,649,271,2005-08-27T10:08:29Z,2,2020-02-15T06:59:46Z +14356,2005-08-21T09:08:51Z,3169,65,2005-08-24T04:36:51Z,2,2020-02-15T06:59:46Z +14357,2005-08-21T09:13:09Z,2906,233,2005-08-22T05:41:09Z,2,2020-02-15T06:59:46Z +14358,2005-08-21T09:14:28Z,861,112,2005-08-24T05:05:28Z,1,2020-02-15T06:59:46Z +14359,2005-08-21T09:16:19Z,1841,401,2005-08-22T09:28:19Z,1,2020-02-15T06:59:46Z +14360,2005-08-21T09:16:40Z,2677,246,2005-08-29T11:43:40Z,2,2020-02-15T06:59:46Z +14361,2006-02-14T15:16:03Z,1231,191,,2,2020-02-15T06:59:46Z +14362,2005-08-21T09:19:49Z,1992,312,2005-08-26T11:06:49Z,1,2020-02-15T06:59:46Z +14363,2005-08-21T09:20:03Z,2579,560,2005-08-23T14:26:03Z,1,2020-02-15T06:59:46Z +14364,2005-08-21T09:25:11Z,3513,236,2005-08-29T09:04:11Z,1,2020-02-15T06:59:46Z +14365,2005-08-21T09:25:13Z,618,457,2005-08-27T11:48:13Z,1,2020-02-15T06:59:46Z +14366,2005-08-21T09:31:39Z,4011,524,2005-08-26T11:55:39Z,2,2020-02-15T06:59:46Z +14367,2005-08-21T09:31:44Z,870,244,2005-08-26T03:54:44Z,2,2020-02-15T06:59:46Z +14368,2005-08-21T09:31:47Z,2063,351,2005-08-30T04:17:47Z,1,2020-02-15T06:59:46Z +14369,2005-08-21T09:33:44Z,1636,392,2005-08-25T08:56:44Z,1,2020-02-15T06:59:46Z +14370,2005-08-21T09:35:14Z,3520,161,2005-08-27T05:21:14Z,2,2020-02-15T06:59:46Z +14371,2005-08-21T09:37:16Z,2197,221,2005-08-27T13:50:16Z,2,2020-02-15T06:59:46Z +14372,2005-08-21T09:39:50Z,1953,520,2005-08-28T13:36:50Z,1,2020-02-15T06:59:46Z +14373,2005-08-21T09:44:53Z,4433,268,2005-08-25T15:37:53Z,1,2020-02-15T06:59:46Z +14374,2006-02-14T15:16:03Z,236,213,,2,2020-02-15T06:59:46Z +14375,2005-08-21T09:46:35Z,2507,550,2005-08-26T10:24:35Z,2,2020-02-15T06:59:46Z +14376,2005-08-21T09:48:56Z,1936,582,2005-08-22T12:15:56Z,2,2020-02-15T06:59:46Z +14377,2005-08-21T09:49:28Z,1325,6,2005-08-29T13:34:28Z,1,2020-02-15T06:59:46Z +14378,2005-08-21T09:50:02Z,810,515,2005-08-30T09:07:02Z,1,2020-02-15T06:59:46Z +14379,2005-08-21T09:53:03Z,3062,136,2005-08-24T14:32:03Z,1,2020-02-15T06:59:46Z +14380,2005-08-21T09:53:52Z,1523,198,2005-08-25T05:03:52Z,2,2020-02-15T06:59:46Z +14381,2005-08-21T09:55:47Z,811,391,2005-08-25T08:23:47Z,1,2020-02-15T06:59:46Z +14382,2005-08-21T10:01:03Z,4119,119,2005-08-22T13:21:03Z,2,2020-02-15T06:59:46Z +14383,2005-08-21T10:02:05Z,1941,482,2005-08-24T12:21:05Z,2,2020-02-15T06:59:46Z +14384,2005-08-21T10:02:37Z,2429,371,2005-08-26T08:20:37Z,1,2020-02-15T06:59:46Z +14385,2005-08-21T10:02:55Z,4356,317,2005-08-25T07:19:55Z,2,2020-02-15T06:59:46Z +14386,2005-08-21T10:06:34Z,3402,514,2005-08-25T14:19:34Z,1,2020-02-15T06:59:46Z +14387,2005-08-21T10:10:01Z,1286,295,2005-08-28T14:16:01Z,2,2020-02-15T06:59:46Z +14388,2005-08-21T10:15:13Z,1078,274,2005-08-30T13:41:13Z,2,2020-02-15T06:59:46Z +14389,2005-08-21T10:15:20Z,2718,145,2005-08-27T05:39:20Z,1,2020-02-15T06:59:46Z +14390,2005-08-21T10:15:38Z,3951,366,2005-08-28T05:50:38Z,2,2020-02-15T06:59:46Z +14391,2005-08-21T10:16:27Z,3117,205,2005-08-23T07:00:27Z,2,2020-02-15T06:59:46Z +14392,2005-08-21T10:19:25Z,847,586,2005-08-28T15:57:25Z,2,2020-02-15T06:59:46Z +14393,2005-08-21T10:22:51Z,3937,368,2005-08-29T08:28:51Z,1,2020-02-15T06:59:46Z +14394,2005-08-21T10:23:10Z,4555,118,2005-08-28T09:33:10Z,1,2020-02-15T06:59:46Z +14395,2005-08-21T10:24:00Z,632,506,2005-08-28T12:23:00Z,2,2020-02-15T06:59:46Z +14396,2005-08-21T10:24:54Z,3855,353,2005-08-22T04:49:54Z,2,2020-02-15T06:59:46Z +14397,2005-08-21T10:25:56Z,3883,47,2005-08-24T07:48:56Z,1,2020-02-15T06:59:46Z +14398,2005-08-21T10:27:21Z,357,505,2005-08-23T10:46:21Z,2,2020-02-15T06:59:46Z +14399,2005-08-21T10:33:23Z,3582,188,2005-08-27T08:00:23Z,1,2020-02-15T06:59:46Z +14400,2005-08-21T10:33:45Z,3891,569,2005-08-26T12:05:45Z,1,2020-02-15T06:59:46Z +14401,2005-08-21T10:36:20Z,3468,407,2005-08-30T06:45:20Z,1,2020-02-15T06:59:46Z +14402,2005-08-21T10:38:17Z,749,467,2005-08-27T08:36:17Z,2,2020-02-15T06:59:46Z +14403,2005-08-21T10:40:34Z,3581,297,2005-08-29T11:29:34Z,1,2020-02-15T06:59:46Z +14404,2005-08-21T10:43:04Z,3660,192,2005-08-30T10:00:04Z,1,2020-02-15T06:59:46Z +14405,2005-08-21T10:45:01Z,2777,470,2005-08-30T04:48:01Z,2,2020-02-15T06:59:46Z +14406,2005-08-21T10:46:35Z,2741,181,2005-08-28T15:55:35Z,1,2020-02-15T06:59:46Z +14407,2005-08-21T10:46:51Z,2403,500,2005-08-25T09:28:51Z,2,2020-02-15T06:59:46Z +14408,2005-08-21T10:47:24Z,222,593,2005-08-27T08:18:24Z,1,2020-02-15T06:59:46Z +14409,2005-08-21T10:53:35Z,1161,314,2005-08-25T10:40:35Z,2,2020-02-15T06:59:46Z +14410,2005-08-21T10:54:49Z,839,196,2005-08-26T08:28:49Z,2,2020-02-15T06:59:46Z +14411,2005-08-21T10:54:57Z,2125,502,2005-08-22T13:17:57Z,2,2020-02-15T06:59:46Z +14412,2005-08-21T11:02:09Z,212,121,2005-08-29T06:44:09Z,1,2020-02-15T06:59:46Z +14413,2005-08-21T11:06:33Z,50,367,2005-08-29T16:10:33Z,1,2020-02-15T06:59:46Z +14414,2005-08-21T11:08:17Z,1757,515,2005-08-23T08:37:17Z,2,2020-02-15T06:59:46Z +14415,2006-02-14T15:16:03Z,2670,561,,2,2020-02-15T06:59:46Z +14416,2005-08-21T11:11:46Z,3002,384,2005-08-25T12:33:46Z,1,2020-02-15T06:59:46Z +14417,2005-08-21T11:13:35Z,1768,596,2005-08-25T11:27:35Z,1,2020-02-15T06:59:46Z +14418,2005-08-21T11:14:26Z,89,442,2005-08-28T08:34:26Z,2,2020-02-15T06:59:46Z +14419,2005-08-21T11:15:46Z,3146,221,2005-08-30T16:37:46Z,1,2020-02-15T06:59:46Z +14420,2005-08-21T11:16:15Z,2495,551,2005-08-24T06:06:15Z,2,2020-02-15T06:59:46Z +14421,2005-08-21T11:20:21Z,4402,406,2005-08-24T06:26:21Z,1,2020-02-15T06:59:46Z +14422,2005-08-21T11:21:46Z,1382,361,2005-08-25T13:15:46Z,1,2020-02-15T06:59:46Z +14423,2005-08-21T11:23:59Z,2873,521,2005-08-26T11:52:59Z,2,2020-02-15T06:59:46Z +14424,2005-08-21T11:24:11Z,2535,489,2005-08-29T13:13:11Z,2,2020-02-15T06:59:46Z +14425,2006-02-14T15:16:03Z,2752,560,,2,2020-02-15T06:59:46Z +14426,2006-02-14T15:16:03Z,2902,315,,1,2020-02-15T06:59:46Z +14427,2005-08-21T11:26:06Z,2353,163,2005-08-27T10:39:06Z,1,2020-02-15T06:59:46Z +14428,2005-08-21T11:27:07Z,1614,458,2005-08-29T09:50:07Z,1,2020-02-15T06:59:46Z +14429,2005-08-21T11:29:43Z,2513,66,2005-08-24T12:05:43Z,1,2020-02-15T06:59:46Z +14430,2005-08-21T11:31:11Z,2623,5,2005-08-26T06:29:11Z,1,2020-02-15T06:59:46Z +14431,2005-08-21T11:31:15Z,1572,106,2005-08-26T11:22:15Z,2,2020-02-15T06:59:46Z +14432,2005-08-21T11:36:15Z,2294,138,2005-08-24T08:02:15Z,2,2020-02-15T06:59:46Z +14433,2005-08-21T11:36:34Z,732,401,2005-08-26T08:51:34Z,1,2020-02-15T06:59:46Z +14434,2005-08-21T11:40:46Z,2085,549,2005-08-24T05:50:46Z,1,2020-02-15T06:59:46Z +14435,2005-08-21T11:44:37Z,2919,169,2005-08-24T08:04:37Z,1,2020-02-15T06:59:46Z +14436,2005-08-21T11:48:27Z,3473,560,2005-08-25T15:49:27Z,2,2020-02-15T06:59:46Z +14437,2005-08-21T11:48:32Z,1504,136,2005-08-25T11:06:32Z,2,2020-02-15T06:59:46Z +14438,2005-08-21T11:51:10Z,1621,392,2005-08-28T17:10:10Z,1,2020-02-15T06:59:46Z +14439,2005-08-21T11:52:41Z,3903,564,2005-08-30T10:36:41Z,1,2020-02-15T06:59:46Z +14440,2005-08-21T11:59:04Z,3495,194,2005-08-23T10:10:04Z,1,2020-02-15T06:59:46Z +14441,2005-08-21T11:59:38Z,1210,260,2005-08-26T11:17:38Z,2,2020-02-15T06:59:46Z +14442,2005-08-21T12:00:21Z,122,205,2005-08-23T17:00:21Z,2,2020-02-15T06:59:46Z +14443,2005-08-21T12:06:32Z,376,447,2005-08-29T13:44:32Z,2,2020-02-15T06:59:46Z +14444,2005-08-21T12:07:25Z,2211,225,2005-08-28T08:36:25Z,2,2020-02-15T06:59:46Z +14445,2005-08-21T12:07:42Z,3186,256,2005-08-22T17:51:42Z,2,2020-02-15T06:59:46Z +14446,2005-08-21T12:10:41Z,4367,21,2005-08-26T14:42:41Z,1,2020-02-15T06:59:46Z +14447,2005-08-21T12:12:05Z,1889,584,2005-08-27T14:47:05Z,2,2020-02-15T06:59:46Z +14448,2005-08-21T12:13:10Z,1937,263,2005-08-30T08:46:10Z,1,2020-02-15T06:59:46Z +14449,2005-08-21T12:13:18Z,653,529,2005-08-27T15:41:18Z,2,2020-02-15T06:59:46Z +14450,2005-08-21T12:21:25Z,1194,48,2005-08-26T14:35:25Z,2,2020-02-15T06:59:46Z +14451,2005-08-21T12:21:44Z,3967,467,2005-08-22T15:07:44Z,2,2020-02-15T06:59:46Z +14452,2005-08-21T12:23:20Z,4231,325,2005-08-27T06:26:20Z,1,2020-02-15T06:59:46Z +14453,2005-08-21T12:33:34Z,3312,237,2005-08-27T11:10:34Z,1,2020-02-15T06:59:46Z +14454,2005-08-21T12:35:49Z,2475,150,2005-08-22T16:28:49Z,2,2020-02-15T06:59:46Z +14455,2005-08-21T12:36:11Z,3442,68,2005-08-27T08:12:11Z,2,2020-02-15T06:59:46Z +14456,2005-08-21T12:38:09Z,2520,125,2005-08-26T08:29:09Z,1,2020-02-15T06:59:46Z +14457,2005-08-21T12:47:38Z,4288,340,2005-08-25T13:07:38Z,1,2020-02-15T06:59:46Z +14458,2005-08-21T12:47:53Z,1769,256,2005-08-30T17:09:53Z,2,2020-02-15T06:59:46Z +14459,2005-08-21T12:48:08Z,1532,98,2005-08-27T10:50:08Z,2,2020-02-15T06:59:46Z +14460,2005-08-21T12:48:48Z,4137,120,2005-08-30T16:34:48Z,2,2020-02-15T06:59:46Z +14461,2005-08-21T12:50:33Z,371,42,2005-08-30T13:35:33Z,1,2020-02-15T06:59:46Z +14462,2005-08-21T12:50:57Z,2201,96,2005-08-27T10:42:57Z,2,2020-02-15T06:59:46Z +14463,2005-08-21T12:51:49Z,1403,365,2005-08-29T12:17:49Z,1,2020-02-15T06:59:46Z +14464,2005-08-21T12:52:54Z,2310,121,2005-08-25T16:42:54Z,1,2020-02-15T06:59:46Z +14465,2005-08-21T12:54:22Z,4206,262,2005-08-28T10:46:22Z,2,2020-02-15T06:59:46Z +14466,2005-08-21T13:03:13Z,923,442,2005-08-22T15:19:13Z,2,2020-02-15T06:59:46Z +14467,2005-08-21T13:03:33Z,1498,522,2005-08-28T15:28:33Z,1,2020-02-15T06:59:46Z +14468,2005-08-21T13:07:10Z,4168,224,2005-08-30T19:05:10Z,2,2020-02-15T06:59:46Z +14469,2005-08-21T13:07:24Z,1957,554,2005-08-24T10:37:24Z,1,2020-02-15T06:59:46Z +14470,2005-08-21T13:09:41Z,3899,379,2005-08-23T10:20:41Z,2,2020-02-15T06:59:46Z +14471,2005-08-21T13:10:40Z,1254,395,2005-08-26T16:49:40Z,1,2020-02-15T06:59:46Z +14472,2005-08-21T13:13:57Z,4097,184,2005-08-23T14:04:57Z,2,2020-02-15T06:59:46Z +14473,2005-08-21T13:19:03Z,2747,298,2005-08-23T15:12:03Z,1,2020-02-15T06:59:46Z +14474,2005-08-21T13:22:48Z,2632,294,2005-08-27T14:13:48Z,2,2020-02-15T06:59:46Z +14475,2005-08-21T13:24:32Z,3164,2,2005-08-27T08:59:32Z,2,2020-02-15T06:59:46Z +14476,2005-08-21T13:31:07Z,2821,101,2005-08-23T17:06:07Z,1,2020-02-15T06:59:46Z +14477,2005-08-21T13:32:38Z,1564,126,2005-08-25T18:02:38Z,2,2020-02-15T06:59:46Z +14478,2005-08-21T13:33:28Z,2990,231,2005-08-25T13:33:28Z,2,2020-02-15T06:59:46Z +14479,2005-08-21T13:35:54Z,2235,324,2005-08-29T12:12:54Z,2,2020-02-15T06:59:46Z +14480,2005-08-21T13:36:40Z,229,411,2005-08-26T08:39:40Z,1,2020-02-15T06:59:46Z +14481,2005-08-21T13:41:14Z,4099,367,2005-08-30T07:53:14Z,2,2020-02-15T06:59:46Z +14482,2005-08-21T13:42:45Z,2765,23,2005-08-27T11:55:45Z,1,2020-02-15T06:59:46Z +14483,2005-08-21T13:43:59Z,37,275,2005-08-28T16:38:59Z,2,2020-02-15T06:59:46Z +14484,2005-08-21T13:47:29Z,3714,418,2005-08-23T18:25:29Z,1,2020-02-15T06:59:46Z +14485,2005-08-21T13:52:07Z,1637,241,2005-08-30T13:06:07Z,2,2020-02-15T06:59:46Z +14486,2005-08-21T13:52:54Z,3119,138,2005-08-23T07:58:54Z,1,2020-02-15T06:59:46Z +14487,2005-08-21T13:53:33Z,2578,526,2005-08-29T19:32:33Z,1,2020-02-15T06:59:46Z +14488,2006-02-14T15:16:03Z,4202,75,,2,2020-02-15T06:59:46Z +14489,2005-08-21T13:53:59Z,2312,9,2005-08-30T15:45:59Z,2,2020-02-15T06:59:46Z +14490,2005-08-21T13:54:15Z,1771,205,2005-08-28T19:08:15Z,2,2020-02-15T06:59:46Z +14491,2005-08-21T13:55:39Z,2072,226,2005-08-29T17:51:39Z,1,2020-02-15T06:59:46Z +14492,2005-08-21T13:59:08Z,1591,266,2005-08-23T11:09:08Z,1,2020-02-15T06:59:46Z +14493,2005-08-21T14:01:44Z,2590,389,2005-08-28T17:20:44Z,1,2020-02-15T06:59:46Z +14494,2005-08-21T14:02:50Z,169,5,2005-08-22T16:45:50Z,2,2020-02-15T06:59:46Z +14495,2005-08-21T14:04:39Z,3215,429,2005-08-22T16:53:39Z,2,2020-02-15T06:59:46Z +14496,2005-08-21T14:07:35Z,2185,223,2005-08-24T12:31:35Z,1,2020-02-15T06:59:46Z +14497,2005-08-21T14:09:47Z,3240,254,2005-08-22T11:10:47Z,2,2020-02-15T06:59:46Z +14498,2005-08-21T14:10:44Z,3971,544,2005-08-23T08:29:44Z,1,2020-02-15T06:59:46Z +14499,2005-08-21T14:11:19Z,4109,292,2005-08-23T16:10:19Z,2,2020-02-15T06:59:46Z +14500,2005-08-21T14:11:30Z,2024,451,2005-08-27T12:19:30Z,1,2020-02-15T06:59:46Z +14501,2005-08-21T14:14:38Z,3588,576,2005-08-25T17:58:38Z,1,2020-02-15T06:59:46Z +14502,2005-08-21T14:22:28Z,2986,378,2005-08-23T10:40:28Z,1,2020-02-15T06:59:46Z +14503,2006-02-14T15:16:03Z,2144,188,,1,2020-02-15T06:59:46Z +14504,2005-08-21T14:23:01Z,4536,312,2005-08-27T13:56:01Z,1,2020-02-15T06:59:46Z +14505,2005-08-21T14:26:28Z,2172,203,2005-08-29T17:34:28Z,1,2020-02-15T06:59:46Z +14506,2005-08-21T14:32:27Z,4493,537,2005-08-24T19:02:27Z,2,2020-02-15T06:59:46Z +14507,2005-08-21T14:32:45Z,1969,175,2005-08-28T09:50:45Z,2,2020-02-15T06:59:46Z +14508,2005-08-21T14:33:58Z,703,396,2005-08-27T10:45:58Z,2,2020-02-15T06:59:46Z +14509,2005-08-21T14:39:58Z,541,520,2005-08-26T13:19:58Z,1,2020-02-15T06:59:46Z +14510,2005-08-21T14:44:41Z,1868,547,2005-08-30T20:19:41Z,1,2020-02-15T06:59:46Z +14511,2005-08-21T14:45:34Z,4452,16,2005-08-28T10:36:34Z,2,2020-02-15T06:59:46Z +14512,2005-08-21T14:47:09Z,579,51,2005-08-24T18:10:09Z,2,2020-02-15T06:59:46Z +14513,2005-08-21T14:51:35Z,4265,185,2005-08-24T13:24:35Z,2,2020-02-15T06:59:46Z +14514,2005-08-21T14:51:52Z,1259,295,2005-08-30T10:40:52Z,2,2020-02-15T06:59:46Z +14515,2005-08-21T14:52:14Z,2215,242,2005-08-27T10:27:14Z,1,2020-02-15T06:59:46Z +14516,2006-02-14T15:16:03Z,713,457,,2,2020-02-15T06:59:46Z +14517,2005-08-21T14:57:03Z,3568,311,2005-08-24T13:52:03Z,2,2020-02-15T06:59:46Z +14518,2005-08-21T14:58:58Z,2734,82,2005-08-24T13:19:58Z,2,2020-02-15T06:59:46Z +14519,2005-08-21T14:59:29Z,1541,403,2005-08-22T11:48:29Z,2,2020-02-15T06:59:46Z +14520,2005-08-21T15:00:49Z,4533,150,2005-08-30T19:04:49Z,1,2020-02-15T06:59:46Z +14521,2005-08-21T15:01:32Z,1538,200,2005-08-28T19:12:32Z,1,2020-02-15T06:59:46Z +14522,2005-08-21T15:01:34Z,2101,535,2005-08-25T16:37:34Z,1,2020-02-15T06:59:46Z +14523,2005-08-21T15:03:45Z,345,433,2005-08-22T18:06:45Z,2,2020-02-15T06:59:46Z +14524,2005-08-21T15:05:27Z,4409,374,2005-08-29T12:07:27Z,2,2020-02-15T06:59:46Z +14525,2005-08-21T15:06:49Z,3020,420,2005-08-22T16:30:49Z,1,2020-02-15T06:59:46Z +14526,2006-02-14T15:16:03Z,1799,534,,1,2020-02-15T06:59:46Z +14527,2005-08-21T15:07:42Z,3496,232,2005-08-23T12:31:42Z,1,2020-02-15T06:59:46Z +14528,2005-08-21T15:08:05Z,4305,46,2005-08-26T15:58:05Z,2,2020-02-15T06:59:46Z +14529,2005-08-21T15:08:31Z,1774,380,2005-08-29T17:15:31Z,1,2020-02-15T06:59:46Z +14530,2005-08-21T15:10:50Z,1905,77,2005-08-26T09:20:50Z,2,2020-02-15T06:59:46Z +14531,2006-02-14T15:16:03Z,4296,568,,2,2020-02-15T06:59:46Z +14532,2005-08-21T15:15:03Z,2057,37,2005-08-25T17:41:03Z,2,2020-02-15T06:59:46Z +14533,2005-08-21T15:15:19Z,2202,586,2005-08-26T12:47:19Z,1,2020-02-15T06:59:46Z +14534,2005-08-21T15:16:29Z,2514,56,2005-08-26T16:18:29Z,1,2020-02-15T06:59:46Z +14535,2005-08-21T15:22:37Z,530,412,2005-08-29T19:23:37Z,2,2020-02-15T06:59:46Z +14536,2005-08-21T15:22:50Z,2615,48,2005-08-27T17:03:50Z,1,2020-02-15T06:59:46Z +14537,2005-08-21T15:24:24Z,3755,405,2005-08-23T17:14:24Z,2,2020-02-15T06:59:46Z +14538,2005-08-21T15:28:15Z,3348,471,2005-08-22T19:55:15Z,2,2020-02-15T06:59:46Z +14539,2005-08-21T15:29:47Z,3340,41,2005-08-28T19:01:47Z,1,2020-02-15T06:59:46Z +14540,2005-08-21T15:34:23Z,2362,28,2005-08-27T11:51:23Z,2,2020-02-15T06:59:46Z +14541,2005-08-21T15:34:32Z,1275,576,2005-08-25T13:18:32Z,1,2020-02-15T06:59:46Z +14542,2005-08-21T15:36:34Z,1247,101,2005-08-27T20:24:34Z,2,2020-02-15T06:59:46Z +14543,2005-08-21T15:39:01Z,709,579,2005-08-28T09:47:01Z,1,2020-02-15T06:59:46Z +14544,2005-08-21T15:41:01Z,2445,589,2005-08-24T15:20:01Z,1,2020-02-15T06:59:46Z +14545,2005-08-21T15:44:23Z,2459,13,2005-08-29T20:09:23Z,2,2020-02-15T06:59:46Z +14546,2005-08-21T15:50:50Z,1515,466,2005-08-23T11:37:50Z,2,2020-02-15T06:59:46Z +14547,2005-08-21T15:51:38Z,1172,265,2005-08-26T15:35:38Z,1,2020-02-15T06:59:46Z +14548,2005-08-21T15:53:52Z,226,299,2005-08-25T15:39:52Z,2,2020-02-15T06:59:46Z +14549,2005-08-21T15:54:21Z,4117,155,2005-08-22T17:22:21Z,1,2020-02-15T06:59:46Z +14550,2005-08-21T15:56:39Z,2814,473,2005-08-23T21:40:39Z,1,2020-02-15T06:59:46Z +14551,2005-08-21T15:57:25Z,496,521,2005-08-28T11:10:25Z,2,2020-02-15T06:59:46Z +14552,2005-08-21T15:59:27Z,1991,477,2005-08-27T11:46:27Z,1,2020-02-15T06:59:46Z +14553,2005-08-21T15:59:40Z,3160,434,2005-08-23T11:54:40Z,2,2020-02-15T06:59:46Z +14554,2005-08-21T16:03:01Z,31,38,2005-08-26T13:09:01Z,2,2020-02-15T06:59:46Z +14555,2005-08-21T16:03:02Z,1926,440,2005-08-23T14:18:02Z,1,2020-02-15T06:59:46Z +14556,2005-08-21T16:03:27Z,475,265,2005-08-29T15:49:27Z,1,2020-02-15T06:59:46Z +14557,2005-08-21T16:05:11Z,483,490,2005-08-27T16:37:11Z,1,2020-02-15T06:59:46Z +14558,2005-08-21T16:10:50Z,3958,273,2005-08-28T16:36:50Z,2,2020-02-15T06:59:46Z +14559,2005-08-21T16:11:35Z,3842,433,2005-08-30T15:26:35Z,1,2020-02-15T06:59:46Z +14560,2005-08-21T16:13:47Z,1616,579,2005-08-26T15:19:47Z,1,2020-02-15T06:59:46Z +14561,2005-08-21T16:20:43Z,2498,443,2005-08-27T16:48:43Z,1,2020-02-15T06:59:46Z +14562,2005-08-21T16:22:59Z,3501,107,2005-08-22T21:15:59Z,1,2020-02-15T06:59:46Z +14563,2005-08-21T16:23:53Z,3984,212,2005-08-25T11:30:53Z,2,2020-02-15T06:59:46Z +14564,2005-08-21T16:24:43Z,3250,22,2005-08-26T16:58:43Z,1,2020-02-15T06:59:46Z +14565,2005-08-21T16:24:45Z,4160,250,2005-08-25T14:42:45Z,1,2020-02-15T06:59:46Z +14566,2005-08-21T16:25:05Z,84,87,2005-08-26T10:31:05Z,1,2020-02-15T06:59:46Z +14567,2005-08-21T16:27:25Z,3805,214,2005-08-26T10:47:25Z,1,2020-02-15T06:59:46Z +14568,2005-08-21T16:30:48Z,3331,582,2005-08-22T13:49:48Z,1,2020-02-15T06:59:46Z +14569,2005-08-21T16:31:22Z,884,15,2005-08-25T21:27:22Z,2,2020-02-15T06:59:46Z +14570,2005-08-21T16:32:32Z,955,32,2005-08-30T12:03:32Z,2,2020-02-15T06:59:46Z +14571,2005-08-21T16:40:26Z,2218,296,2005-08-29T17:10:26Z,1,2020-02-15T06:59:46Z +14572,2005-08-21T16:44:31Z,1397,538,2005-08-26T16:35:31Z,2,2020-02-15T06:59:46Z +14573,2005-08-21T16:44:32Z,2423,240,2005-08-23T14:01:32Z,2,2020-02-15T06:59:46Z +14574,2005-08-21T16:50:34Z,1611,62,2005-08-26T14:24:34Z,2,2020-02-15T06:59:46Z +14575,2005-08-21T16:51:34Z,3752,159,2005-08-30T20:13:34Z,2,2020-02-15T06:59:46Z +14576,2005-08-21T16:52:03Z,1189,45,2005-08-28T19:43:03Z,2,2020-02-15T06:59:46Z +14577,2005-08-21T16:52:29Z,1965,126,2005-08-26T12:30:29Z,1,2020-02-15T06:59:46Z +14578,2005-08-21T16:53:38Z,3141,389,2005-08-28T20:36:38Z,2,2020-02-15T06:59:46Z +14579,2005-08-21T16:54:47Z,1205,260,2005-08-28T12:35:47Z,1,2020-02-15T06:59:46Z +14580,2005-08-21T16:56:39Z,1440,448,2005-08-28T15:25:39Z,1,2020-02-15T06:59:46Z +14581,2005-08-21T17:07:08Z,751,243,2005-08-26T16:02:08Z,1,2020-02-15T06:59:46Z +14582,2005-08-21T17:08:33Z,1004,438,2005-08-29T18:04:33Z,2,2020-02-15T06:59:46Z +14583,2005-08-21T17:11:47Z,1203,455,2005-08-24T16:16:47Z,2,2020-02-15T06:59:46Z +14584,2005-08-21T17:15:33Z,2617,481,2005-08-24T20:24:33Z,2,2020-02-15T06:59:46Z +14585,2005-08-21T17:18:33Z,82,30,2005-08-26T11:36:33Z,1,2020-02-15T06:59:46Z +14586,2005-08-21T17:19:09Z,3094,182,2005-08-26T17:00:09Z,1,2020-02-15T06:59:46Z +14587,2005-08-21T17:20:55Z,2329,250,2005-08-26T17:17:55Z,1,2020-02-15T06:59:46Z +14588,2005-08-21T17:25:53Z,1350,219,2005-08-28T21:47:53Z,2,2020-02-15T06:59:46Z +14589,2005-08-21T17:28:55Z,2810,179,2005-08-22T23:06:55Z,1,2020-02-15T06:59:46Z +14590,2005-08-21T17:29:10Z,2633,526,2005-08-28T20:15:10Z,1,2020-02-15T06:59:46Z +14591,2005-08-21T17:30:09Z,3410,538,2005-08-24T12:27:09Z,1,2020-02-15T06:59:46Z +14592,2005-08-21T17:30:17Z,2681,563,2005-08-22T20:06:17Z,2,2020-02-15T06:59:46Z +14593,2005-08-21T17:33:18Z,1399,564,2005-08-24T22:11:18Z,1,2020-02-15T06:59:46Z +14594,2005-08-21T17:34:24Z,2978,62,2005-08-26T22:04:24Z,2,2020-02-15T06:59:46Z +14595,2005-08-21T17:35:17Z,1879,118,2005-08-27T12:11:17Z,1,2020-02-15T06:59:46Z +14596,2005-08-21T17:38:37Z,2010,472,2005-08-30T20:28:37Z,1,2020-02-15T06:59:46Z +14597,2005-08-21T17:39:41Z,1160,472,2005-08-25T14:07:41Z,1,2020-02-15T06:59:46Z +14598,2005-08-21T17:40:05Z,1113,359,2005-08-29T18:16:05Z,2,2020-02-15T06:59:46Z +14599,2005-08-21T17:43:42Z,4575,599,2005-08-22T18:53:42Z,1,2020-02-15T06:59:46Z +14600,2005-08-21T17:45:21Z,3532,255,2005-08-28T19:03:21Z,1,2020-02-15T06:59:46Z +14601,2005-08-21T17:45:52Z,548,406,2005-08-29T15:10:52Z,1,2020-02-15T06:59:46Z +14602,2005-08-21T17:48:49Z,3771,370,2005-08-28T21:38:49Z,1,2020-02-15T06:59:46Z +14603,2005-08-21T17:51:06Z,94,26,2005-08-28T15:36:06Z,1,2020-02-15T06:59:46Z +14604,2006-02-14T15:16:03Z,1024,585,,2,2020-02-15T06:59:46Z +14605,2005-08-21T17:56:06Z,476,394,2005-08-24T18:35:06Z,1,2020-02-15T06:59:46Z +14606,2006-02-14T15:16:03Z,2291,592,,2,2020-02-15T06:59:46Z +14607,2005-08-21T17:56:50Z,4518,417,2005-08-22T17:44:50Z,2,2020-02-15T06:59:46Z +14608,2005-08-21T17:57:22Z,3321,90,2005-08-25T13:20:22Z,1,2020-02-15T06:59:46Z +14609,2005-08-21T17:57:26Z,1206,551,2005-08-25T14:04:26Z,2,2020-02-15T06:59:46Z +14610,2005-08-21T17:59:09Z,1894,260,2005-08-29T21:36:09Z,2,2020-02-15T06:59:46Z +14611,2005-08-21T18:01:41Z,4078,443,2005-08-26T12:34:41Z,1,2020-02-15T06:59:46Z +14612,2005-08-21T18:03:15Z,4105,445,2005-08-27T13:39:15Z,1,2020-02-15T06:59:46Z +14613,2005-08-21T18:03:20Z,3841,20,2005-08-26T19:46:20Z,1,2020-02-15T06:59:46Z +14614,2005-08-21T18:03:51Z,3053,468,2005-08-30T13:37:51Z,1,2020-02-15T06:59:46Z +14615,2005-08-21T18:06:32Z,2332,171,2005-08-30T13:19:32Z,2,2020-02-15T06:59:46Z +14616,2006-02-14T15:16:03Z,4537,532,,1,2020-02-15T06:59:46Z +14617,2005-08-21T18:07:40Z,3562,51,2005-08-24T23:48:40Z,2,2020-02-15T06:59:46Z +14618,2005-08-21T18:09:51Z,4490,270,2005-08-28T22:47:51Z,1,2020-02-15T06:59:46Z +14619,2005-08-21T18:10:03Z,1589,338,2005-08-23T13:40:03Z,2,2020-02-15T06:59:46Z +14620,2005-08-21T18:10:43Z,3272,78,2005-08-22T15:19:43Z,2,2020-02-15T06:59:46Z +14621,2005-08-21T18:17:59Z,3622,344,2005-08-23T14:16:59Z,1,2020-02-15T06:59:46Z +14622,2005-08-21T18:25:59Z,2702,559,2005-08-31T00:11:59Z,2,2020-02-15T06:59:46Z +14623,2005-08-21T18:29:13Z,901,33,2005-08-26T20:48:13Z,2,2020-02-15T06:59:46Z +14624,2005-08-21T18:32:42Z,4,344,2005-08-23T21:09:42Z,1,2020-02-15T06:59:46Z +14625,2005-08-21T18:34:21Z,2661,507,2005-08-29T21:41:21Z,1,2020-02-15T06:59:46Z +14626,2005-08-21T18:35:44Z,1038,554,2005-08-25T23:54:44Z,2,2020-02-15T06:59:46Z +14627,2005-08-21T18:35:54Z,2470,49,2005-08-30T21:17:54Z,1,2020-02-15T06:59:46Z +14628,2005-08-21T18:37:24Z,3636,331,2005-08-27T20:25:24Z,2,2020-02-15T06:59:46Z +14629,2005-08-21T18:39:52Z,761,148,2005-08-25T19:14:52Z,2,2020-02-15T06:59:46Z +14630,2005-08-21T18:43:44Z,4049,294,2005-08-29T17:08:44Z,2,2020-02-15T06:59:46Z +14631,2005-08-21T18:47:49Z,782,209,2005-08-28T16:54:49Z,1,2020-02-15T06:59:46Z +14632,2005-08-21T18:48:06Z,2807,38,2005-08-25T00:33:06Z,2,2020-02-15T06:59:46Z +14633,2005-08-21T18:51:10Z,2137,551,2005-08-25T13:07:10Z,1,2020-02-15T06:59:46Z +14634,2005-08-21T18:51:28Z,486,494,2005-08-29T19:30:28Z,2,2020-02-15T06:59:46Z +14635,2005-08-21T18:51:43Z,2171,108,2005-08-27T16:30:43Z,2,2020-02-15T06:59:46Z +14636,2005-08-21T18:59:17Z,1671,339,2005-08-23T13:19:17Z,2,2020-02-15T06:59:46Z +14637,2005-08-21T19:01:00Z,1846,76,2005-08-26T23:03:00Z,2,2020-02-15T06:59:46Z +14638,2005-08-21T19:01:36Z,3583,216,2005-08-22T15:09:36Z,2,2020-02-15T06:59:46Z +14639,2005-08-21T19:01:39Z,3510,210,2005-08-26T14:08:39Z,1,2020-02-15T06:59:46Z +14640,2005-08-21T19:03:19Z,1880,253,2005-08-27T00:37:19Z,2,2020-02-15T06:59:46Z +14641,2005-08-21T19:05:23Z,2205,147,2005-08-22T22:30:23Z,2,2020-02-15T06:59:46Z +14642,2005-08-21T19:09:40Z,1280,81,2005-08-30T13:25:40Z,2,2020-02-15T06:59:46Z +14643,2005-08-21T19:11:58Z,798,119,2005-08-29T19:52:58Z,1,2020-02-15T06:59:46Z +14644,2005-08-21T19:12:12Z,3905,453,2005-08-29T17:08:12Z,1,2020-02-15T06:59:46Z +14645,2005-08-21T19:12:47Z,2369,334,2005-08-25T21:42:47Z,1,2020-02-15T06:59:46Z +14646,2005-08-21T19:14:48Z,948,186,2005-08-23T17:15:48Z,1,2020-02-15T06:59:46Z +14647,2005-08-21T19:15:33Z,3854,36,2005-08-30T18:58:33Z,2,2020-02-15T06:59:46Z +14648,2005-08-21T19:18:01Z,2250,284,2005-08-25T14:59:01Z,2,2020-02-15T06:59:46Z +14649,2005-08-21T19:19:21Z,4074,43,2005-08-22T17:23:21Z,1,2020-02-15T06:59:46Z +14650,2005-08-21T19:24:51Z,1274,190,2005-08-25T13:58:51Z,2,2020-02-15T06:59:46Z +14651,2005-08-21T19:31:09Z,4037,544,2005-08-28T14:26:09Z,2,2020-02-15T06:59:46Z +14652,2005-08-21T19:32:05Z,4163,453,2005-08-23T23:33:05Z,2,2020-02-15T06:59:46Z +14653,2005-08-21T19:35:59Z,491,593,2005-08-24T15:31:59Z,1,2020-02-15T06:59:46Z +14654,2005-08-21T19:36:59Z,687,173,2005-08-23T22:03:59Z,2,2020-02-15T06:59:46Z +14655,2005-08-21T19:37:10Z,785,253,2005-08-22T15:43:10Z,1,2020-02-15T06:59:46Z +14656,2005-08-21T19:39:28Z,4205,201,2005-08-24T01:36:28Z,2,2020-02-15T06:59:46Z +14657,2005-08-21T19:39:43Z,477,244,2005-08-26T22:39:43Z,2,2020-02-15T06:59:46Z +14658,2005-08-21T19:41:50Z,1465,473,2005-08-25T16:11:50Z,1,2020-02-15T06:59:46Z +14659,2005-08-21T19:42:36Z,928,119,2005-08-26T14:06:36Z,1,2020-02-15T06:59:46Z +14660,2005-08-21T19:43:21Z,3433,452,2005-08-22T20:42:21Z,1,2020-02-15T06:59:46Z +14661,2005-08-21T19:44:21Z,745,469,2005-08-27T14:35:21Z,1,2020-02-15T06:59:46Z +14662,2005-08-21T19:45:27Z,2969,403,2005-08-23T14:44:27Z,2,2020-02-15T06:59:46Z +14663,2005-08-21T19:47:55Z,2351,150,2005-08-27T17:36:55Z,2,2020-02-15T06:59:46Z +14664,2005-08-21T19:48:47Z,4377,153,2005-08-27T16:47:47Z,1,2020-02-15T06:59:46Z +14665,2005-08-21T19:49:46Z,2896,58,2005-08-30T18:00:46Z,1,2020-02-15T06:59:46Z +14666,2005-08-21T19:51:09Z,2560,122,2005-08-30T22:42:09Z,2,2020-02-15T06:59:46Z +14667,2005-08-21T19:51:11Z,2608,55,2005-08-23T17:37:11Z,1,2020-02-15T06:59:46Z +14668,2005-08-21T19:51:30Z,1450,152,2005-08-29T19:38:30Z,2,2020-02-15T06:59:46Z +14669,2005-08-21T19:54:06Z,3154,317,2005-08-25T23:12:06Z,1,2020-02-15T06:59:46Z +14670,2005-08-21T19:54:11Z,4324,537,2005-08-27T21:42:11Z,2,2020-02-15T06:59:46Z +14671,2005-08-21T19:59:30Z,2622,53,2005-08-22T19:39:30Z,1,2020-02-15T06:59:46Z +14672,2005-08-21T19:59:33Z,4144,325,2005-08-30T19:40:33Z,1,2020-02-15T06:59:46Z +14673,2005-08-21T20:01:18Z,1827,445,2005-08-25T18:55:18Z,1,2020-02-15T06:59:46Z +14674,2005-08-21T20:01:34Z,572,300,2005-08-27T18:33:34Z,1,2020-02-15T06:59:46Z +14675,2005-08-21T20:01:51Z,328,170,2005-08-26T14:30:51Z,2,2020-02-15T06:59:46Z +14676,2005-08-21T20:02:18Z,877,49,2005-08-26T21:55:18Z,1,2020-02-15T06:59:46Z +14677,2005-08-21T20:12:30Z,4411,26,2005-08-28T15:11:30Z,1,2020-02-15T06:59:46Z +14678,2005-08-21T20:12:43Z,1911,383,2005-08-31T02:11:43Z,2,2020-02-15T06:59:46Z +14679,2005-08-21T20:14:58Z,1520,193,2005-08-23T23:39:58Z,1,2020-02-15T06:59:46Z +14680,2005-08-21T20:19:52Z,4469,524,2005-08-28T17:10:52Z,1,2020-02-15T06:59:46Z +14681,2005-08-21T20:25:13Z,1083,212,2005-08-30T19:48:13Z,1,2020-02-15T06:59:46Z +14682,2005-08-21T20:25:57Z,2974,314,2005-08-28T00:42:57Z,2,2020-02-15T06:59:46Z +14683,2005-08-21T20:27:44Z,3850,342,2005-08-29T16:54:44Z,1,2020-02-15T06:59:46Z +14684,2005-08-21T20:28:26Z,3593,369,2005-08-28T19:01:26Z,2,2020-02-15T06:59:46Z +14685,2005-08-21T20:31:25Z,1320,69,2005-08-22T21:02:25Z,1,2020-02-15T06:59:46Z +14686,2005-08-21T20:32:08Z,814,34,2005-08-26T18:07:08Z,1,2020-02-15T06:59:46Z +14687,2005-08-21T20:32:16Z,306,550,2005-08-26T16:17:16Z,2,2020-02-15T06:59:46Z +14688,2005-08-21T20:32:37Z,2573,219,2005-08-27T00:06:37Z,2,2020-02-15T06:59:46Z +14689,2005-08-21T20:33:00Z,1124,463,2005-08-22T18:10:00Z,1,2020-02-15T06:59:46Z +14690,2005-08-21T20:42:25Z,3649,456,2005-08-29T18:42:25Z,2,2020-02-15T06:59:46Z +14691,2005-08-21T20:42:29Z,2131,404,2005-08-24T01:22:29Z,1,2020-02-15T06:59:46Z +14692,2005-08-21T20:43:21Z,1908,192,2005-08-28T19:02:21Z,1,2020-02-15T06:59:46Z +14693,2005-08-21T20:44:19Z,3454,269,2005-08-29T00:37:19Z,2,2020-02-15T06:59:46Z +14694,2005-08-21T20:46:42Z,2767,363,2005-08-23T16:18:42Z,1,2020-02-15T06:59:46Z +14695,2005-08-21T20:46:47Z,412,206,2005-08-22T22:25:47Z,2,2020-02-15T06:59:46Z +14696,2005-08-21T20:48:05Z,3776,435,2005-08-25T14:55:05Z,1,2020-02-15T06:59:46Z +14697,2005-08-21T20:49:21Z,48,409,2005-08-26T01:39:21Z,2,2020-02-15T06:59:46Z +14698,2005-08-21T20:49:58Z,4255,196,2005-08-29T20:13:58Z,2,2020-02-15T06:59:46Z +14699,2005-08-21T20:50:48Z,1427,3,2005-08-29T18:08:48Z,2,2020-02-15T06:59:46Z +14700,2005-08-21T20:53:40Z,3446,360,2005-08-23T22:01:40Z,1,2020-02-15T06:59:46Z +14701,2005-08-21T20:54:32Z,3034,34,2005-08-30T16:46:32Z,1,2020-02-15T06:59:46Z +14702,2005-08-21T21:00:03Z,4096,345,2005-08-30T16:59:03Z,1,2020-02-15T06:59:46Z +14703,2005-08-21T21:01:19Z,4329,29,2005-08-22T15:13:19Z,2,2020-02-15T06:59:46Z +14704,2005-08-21T21:02:22Z,4062,248,2005-08-27T23:10:22Z,2,2020-02-15T06:59:46Z +14705,2005-08-21T21:02:55Z,2493,243,2005-08-25T20:20:55Z,2,2020-02-15T06:59:46Z +14706,2005-08-21T21:04:42Z,4494,589,2005-08-22T19:55:42Z,2,2020-02-15T06:59:46Z +14707,2005-08-21T21:06:29Z,2916,530,2005-08-30T23:37:29Z,1,2020-02-15T06:59:46Z +14708,2005-08-21T21:07:23Z,2828,226,2005-08-28T15:47:23Z,1,2020-02-15T06:59:46Z +14709,2005-08-21T21:07:59Z,1856,300,2005-08-31T02:19:59Z,1,2020-02-15T06:59:46Z +14710,2005-08-21T21:15:23Z,1922,587,2005-08-30T19:45:23Z,1,2020-02-15T06:59:46Z +14711,2005-08-21T21:22:07Z,1973,448,2005-08-30T16:24:07Z,2,2020-02-15T06:59:46Z +14712,2005-08-21T21:22:56Z,1198,226,2005-08-25T01:53:56Z,1,2020-02-15T06:59:46Z +14713,2005-08-21T21:27:24Z,3350,148,2005-08-23T20:26:24Z,1,2020-02-15T06:59:46Z +14714,2005-08-21T21:27:43Z,1,279,2005-08-30T22:26:43Z,1,2020-02-15T06:59:46Z +14715,2005-08-21T21:28:18Z,4453,287,2005-08-26T22:13:18Z,2,2020-02-15T06:59:46Z +14716,2005-08-21T21:29:55Z,2285,78,2005-08-23T18:34:55Z,2,2020-02-15T06:59:46Z +14717,2005-08-21T21:30:39Z,3839,366,2005-08-26T16:58:39Z,2,2020-02-15T06:59:46Z +14718,2005-08-21T21:39:25Z,3618,340,2005-08-26T22:07:25Z,2,2020-02-15T06:59:46Z +14719,2005-08-21T21:41:57Z,4091,599,2005-08-25T20:37:57Z,1,2020-02-15T06:59:46Z +14720,2005-08-21T21:43:53Z,3617,395,2005-08-25T18:21:53Z,1,2020-02-15T06:59:46Z +14721,2005-08-21T21:50:51Z,4257,349,2005-08-30T19:21:51Z,1,2020-02-15T06:59:46Z +14722,2005-08-21T21:50:53Z,2930,236,2005-08-30T03:13:53Z,1,2020-02-15T06:59:46Z +14723,2005-08-21T21:52:32Z,2755,548,2005-08-31T00:03:32Z,2,2020-02-15T06:59:46Z +14724,2005-08-21T21:53:47Z,3559,552,2005-08-23T20:14:47Z,2,2020-02-15T06:59:46Z +14725,2005-08-21T22:02:08Z,4427,403,2005-08-23T03:59:08Z,2,2020-02-15T06:59:46Z +14726,2005-08-21T22:08:52Z,4556,216,2005-08-22T18:28:52Z,1,2020-02-15T06:59:46Z +14727,2005-08-21T22:12:45Z,650,275,2005-08-25T00:46:45Z,1,2020-02-15T06:59:46Z +14728,2005-08-21T22:15:36Z,2671,474,2005-08-25T17:14:36Z,2,2020-02-15T06:59:46Z +14729,2005-08-21T22:16:57Z,2483,289,2005-08-27T21:32:57Z,1,2020-02-15T06:59:46Z +14730,2005-08-21T22:21:11Z,2949,439,2005-08-30T03:02:11Z,1,2020-02-15T06:59:46Z +14731,2005-08-21T22:21:49Z,1351,154,2005-08-24T16:27:49Z,1,2020-02-15T06:59:46Z +14732,2005-08-21T22:22:29Z,1915,482,2005-08-23T18:34:29Z,1,2020-02-15T06:59:46Z +14733,2005-08-21T22:22:33Z,398,408,2005-08-26T21:01:33Z,1,2020-02-15T06:59:46Z +14734,2006-02-14T15:16:03Z,1369,448,,2,2020-02-15T06:59:46Z +14735,2005-08-21T22:25:09Z,950,35,2005-08-23T21:16:09Z,1,2020-02-15T06:59:46Z +14736,2005-08-21T22:25:53Z,207,139,2005-08-25T19:01:53Z,2,2020-02-15T06:59:46Z +14737,2005-08-21T22:27:11Z,1842,124,2005-08-25T18:51:11Z,2,2020-02-15T06:59:46Z +14738,2005-08-21T22:29:13Z,3315,521,2005-08-29T21:19:13Z,1,2020-02-15T06:59:46Z +14739,2005-08-21T22:33:22Z,4026,226,2005-08-22T19:45:22Z,1,2020-02-15T06:59:46Z +14740,2005-08-21T22:35:33Z,1717,333,2005-08-26T17:49:33Z,1,2020-02-15T06:59:46Z +14741,2006-02-14T15:16:03Z,612,60,,2,2020-02-15T06:59:46Z +14742,2005-08-21T22:39:01Z,2988,421,2005-08-26T00:17:01Z,1,2020-02-15T06:59:46Z +14743,2005-08-21T22:41:56Z,4570,2,2005-08-29T00:18:56Z,1,2020-02-15T06:59:46Z +14744,2005-08-21T22:45:21Z,800,213,2005-08-29T23:57:21Z,1,2020-02-15T06:59:46Z +14745,2005-08-21T22:53:01Z,4399,277,2005-08-23T23:22:01Z,1,2020-02-15T06:59:46Z +14746,2005-08-21T22:54:02Z,3197,284,2005-08-27T17:04:02Z,2,2020-02-15T06:59:46Z +14747,2005-08-21T23:00:02Z,201,153,2005-08-26T18:58:02Z,2,2020-02-15T06:59:46Z +14748,2005-08-21T23:02:02Z,1697,81,2005-08-28T05:01:02Z,2,2020-02-15T06:59:46Z +14749,2005-08-21T23:08:33Z,831,235,2005-08-29T20:46:33Z,2,2020-02-15T06:59:46Z +14750,2005-08-21T23:09:32Z,918,303,2005-08-30T00:46:32Z,2,2020-02-15T06:59:46Z +14751,2005-08-21T23:11:23Z,1156,195,2005-08-30T20:01:23Z,2,2020-02-15T06:59:46Z +14752,2005-08-21T23:11:42Z,1252,362,2005-08-28T22:12:42Z,1,2020-02-15T06:59:46Z +14753,2005-08-21T23:11:43Z,1803,155,2005-08-22T22:25:43Z,2,2020-02-15T06:59:46Z +14754,2005-08-21T23:17:26Z,2355,137,2005-08-29T18:55:26Z,2,2020-02-15T06:59:46Z +14755,2005-08-21T23:18:08Z,862,328,2005-08-27T01:06:08Z,2,2020-02-15T06:59:46Z +14756,2005-08-21T23:21:23Z,564,288,2005-08-24T01:44:23Z,1,2020-02-15T06:59:46Z +14757,2005-08-21T23:23:37Z,1154,473,2005-08-26T23:24:37Z,2,2020-02-15T06:59:46Z +14758,2005-08-21T23:24:52Z,2372,339,2005-08-27T04:25:52Z,2,2020-02-15T06:59:46Z +14759,2005-08-21T23:28:58Z,3871,362,2005-08-31T00:35:58Z,2,2020-02-15T06:59:46Z +14760,2006-02-14T15:16:03Z,1367,355,,1,2020-02-15T06:59:46Z +14761,2005-08-21T23:30:28Z,2657,490,2005-08-26T03:26:28Z,1,2020-02-15T06:59:46Z +14762,2005-08-21T23:33:57Z,4249,1,2005-08-23T01:30:57Z,1,2020-02-15T06:59:46Z +14763,2005-08-21T23:34:00Z,1480,116,2005-08-31T03:58:00Z,2,2020-02-15T06:59:46Z +14764,2005-08-21T23:37:47Z,1270,529,2005-08-24T00:23:47Z,2,2020-02-15T06:59:46Z +14765,2005-08-21T23:40:28Z,2817,435,2005-08-25T04:55:28Z,2,2020-02-15T06:59:46Z +14766,2005-08-21T23:42:20Z,768,523,2005-08-26T03:46:20Z,1,2020-02-15T06:59:46Z +14767,2005-08-21T23:43:00Z,1232,69,2005-08-29T05:26:00Z,1,2020-02-15T06:59:46Z +14768,2005-08-21T23:44:53Z,3465,570,2005-08-27T20:33:53Z,1,2020-02-15T06:59:46Z +14769,2006-02-14T15:16:03Z,1800,361,,1,2020-02-15T06:59:46Z +14770,2005-08-21T23:47:16Z,2977,372,2005-08-25T04:48:16Z,1,2020-02-15T06:59:46Z +14771,2005-08-21T23:50:15Z,2665,149,2005-08-28T22:55:15Z,2,2020-02-15T06:59:46Z +14772,2005-08-21T23:50:39Z,4047,411,2005-08-30T20:44:39Z,2,2020-02-15T06:59:46Z +14773,2005-08-21T23:50:57Z,2541,413,2005-08-26T04:45:57Z,2,2020-02-15T06:59:46Z +14774,2005-08-21T23:52:32Z,3185,252,2005-08-26T23:42:32Z,2,2020-02-15T06:59:46Z +14775,2005-08-21T23:53:07Z,4044,400,2005-08-22T18:07:07Z,2,2020-02-15T06:59:46Z +14776,2005-08-21T23:53:35Z,3488,15,2005-08-24T02:00:35Z,2,2020-02-15T06:59:46Z +14777,2005-08-21T23:55:50Z,237,389,2005-08-28T04:31:50Z,1,2020-02-15T06:59:46Z +14778,2005-08-21T23:56:30Z,2152,396,2005-08-26T00:07:30Z,2,2020-02-15T06:59:46Z +14779,2005-08-22T00:00:56Z,1087,279,2005-08-31T00:01:56Z,2,2020-02-15T06:59:46Z +14780,2005-08-22T00:06:33Z,3171,491,2005-08-22T22:02:33Z,2,2020-02-15T06:59:46Z +14781,2005-08-22T00:15:12Z,3458,71,2005-08-29T21:02:12Z,1,2020-02-15T06:59:46Z +14782,2005-08-22T00:17:20Z,1727,211,2005-08-23T01:24:20Z,1,2020-02-15T06:59:46Z +14783,2005-08-22T00:21:57Z,3419,332,2005-08-28T01:27:57Z,2,2020-02-15T06:59:46Z +14784,2005-08-22T00:23:13Z,441,117,2005-08-28T03:42:13Z,1,2020-02-15T06:59:46Z +14785,2005-08-22T00:24:37Z,1981,560,2005-08-25T04:15:37Z,1,2020-02-15T06:59:46Z +14786,2005-08-22T00:24:42Z,2959,370,2005-08-25T19:36:42Z,1,2020-02-15T06:59:46Z +14787,2005-08-22T00:25:59Z,2634,38,2005-08-28T22:30:59Z,2,2020-02-15T06:59:46Z +14788,2005-08-22T00:27:59Z,1917,139,2005-08-29T23:54:59Z,2,2020-02-15T06:59:46Z +14789,2005-08-22T00:29:39Z,2344,279,2005-08-25T02:25:39Z,1,2020-02-15T06:59:46Z +14790,2005-08-22T00:34:17Z,1002,397,2005-08-31T02:27:17Z,1,2020-02-15T06:59:46Z +14791,2005-08-22T00:35:55Z,1490,317,2005-08-30T20:23:55Z,1,2020-02-15T06:59:46Z +14792,2005-08-22T00:36:41Z,4436,396,2005-08-30T18:58:41Z,1,2020-02-15T06:59:46Z +14793,2005-08-22T00:37:57Z,4285,154,2005-08-29T05:44:57Z,2,2020-02-15T06:59:46Z +14794,2005-08-22T00:39:31Z,413,156,2005-08-28T20:08:31Z,2,2020-02-15T06:59:46Z +14795,2005-08-22T00:40:22Z,1695,303,2005-08-26T01:37:22Z,1,2020-02-15T06:59:46Z +14796,2005-08-22T00:40:49Z,941,441,2005-08-30T03:59:49Z,1,2020-02-15T06:59:46Z +14797,2005-08-22T00:41:24Z,1131,546,2005-08-23T18:51:24Z,1,2020-02-15T06:59:46Z +14798,2005-08-22T00:44:08Z,7,92,2005-08-27T02:18:08Z,2,2020-02-15T06:59:46Z +14799,2005-08-22T00:44:57Z,1276,454,2005-08-24T20:08:57Z,2,2020-02-15T06:59:46Z +14800,2005-08-22T00:46:18Z,3554,533,2005-08-26T01:44:18Z,2,2020-02-15T06:59:46Z +14801,2005-08-22T00:46:54Z,1677,184,2005-08-30T19:03:54Z,1,2020-02-15T06:59:46Z +14802,2005-08-22T00:48:23Z,707,505,2005-08-28T01:02:23Z,1,2020-02-15T06:59:46Z +14803,2005-08-22T00:49:10Z,2525,278,2005-08-22T23:44:10Z,2,2020-02-15T06:59:46Z +14804,2005-08-22T00:51:25Z,372,94,2005-08-26T21:15:25Z,1,2020-02-15T06:59:46Z +14805,2005-08-22T00:52:01Z,783,169,2005-08-23T03:28:01Z,2,2020-02-15T06:59:46Z +14806,2005-08-22T00:53:08Z,2049,231,2005-08-23T06:26:08Z,2,2020-02-15T06:59:46Z +14807,2005-08-22T00:57:43Z,335,90,2005-08-26T23:40:43Z,1,2020-02-15T06:59:46Z +14808,2005-08-22T00:58:35Z,1657,362,2005-08-29T20:16:35Z,2,2020-02-15T06:59:46Z +14809,2005-08-22T01:00:42Z,1077,188,2005-08-29T19:55:42Z,1,2020-02-15T06:59:46Z +14810,2005-08-22T01:08:34Z,1982,78,2005-08-25T07:00:34Z,2,2020-02-15T06:59:46Z +14811,2005-08-22T01:09:04Z,1613,53,2005-08-26T19:30:04Z,1,2020-02-15T06:59:46Z +14812,2005-08-22T01:10:32Z,4282,211,2005-08-26T05:21:32Z,1,2020-02-15T06:59:46Z +14813,2005-08-22T01:11:37Z,3364,142,2005-08-24T05:57:37Z,2,2020-02-15T06:59:46Z +14814,2005-08-22T01:12:14Z,3109,250,2005-08-27T23:24:14Z,2,2020-02-15T06:59:46Z +14815,2005-08-22T01:12:44Z,1183,314,2005-08-24T01:42:44Z,2,2020-02-15T06:59:46Z +14816,2005-08-22T01:15:51Z,4086,534,2005-08-28T04:11:51Z,1,2020-02-15T06:59:46Z +14817,2005-08-22T01:17:16Z,910,215,2005-08-27T02:43:16Z,1,2020-02-15T06:59:46Z +14818,2005-08-22T01:17:18Z,1619,580,2005-08-26T05:40:18Z,1,2020-02-15T06:59:46Z +14819,2005-08-22T01:17:19Z,2890,410,2005-08-30T05:54:19Z,1,2020-02-15T06:59:46Z +14820,2005-08-22T01:18:37Z,1409,52,2005-08-23T19:44:37Z,1,2020-02-15T06:59:46Z +14821,2005-08-22T01:20:19Z,3155,62,2005-08-29T03:06:19Z,2,2020-02-15T06:59:46Z +14822,2005-08-22T01:21:14Z,2835,52,2005-08-30T03:59:14Z,1,2020-02-15T06:59:46Z +14823,2005-08-22T01:24:42Z,680,503,2005-08-22T19:45:42Z,2,2020-02-15T06:59:46Z +14824,2005-08-22T01:27:51Z,4162,594,2005-08-23T03:24:51Z,2,2020-02-15T06:59:46Z +14825,2005-08-22T01:27:57Z,1449,1,2005-08-27T07:01:57Z,2,2020-02-15T06:59:46Z +14826,2005-08-22T01:32:14Z,4023,426,2005-08-23T03:52:14Z,2,2020-02-15T06:59:46Z +14827,2005-08-22T01:32:32Z,2267,88,2005-08-31T06:21:32Z,2,2020-02-15T06:59:46Z +14828,2005-08-22T01:34:05Z,4114,319,2005-08-27T06:27:05Z,2,2020-02-15T06:59:46Z +14829,2005-08-22T01:35:37Z,3606,546,2005-08-23T19:55:37Z,2,2020-02-15T06:59:46Z +14830,2005-08-22T01:37:19Z,637,590,2005-08-27T20:10:19Z,1,2020-02-15T06:59:46Z +14831,2005-08-22T01:40:49Z,3370,156,2005-08-23T02:47:49Z,1,2020-02-15T06:59:46Z +14832,2005-08-22T01:43:29Z,1828,494,2005-08-29T07:19:29Z,2,2020-02-15T06:59:46Z +14833,2005-08-22T01:45:18Z,1960,551,2005-08-28T21:24:18Z,1,2020-02-15T06:59:46Z +14834,2005-08-22T01:45:58Z,3105,262,2005-08-28T20:52:58Z,1,2020-02-15T06:59:46Z +14835,2005-08-22T01:49:07Z,755,404,2005-08-30T04:28:07Z,1,2020-02-15T06:59:46Z +14836,2005-08-22T01:52:26Z,4287,418,2005-08-22T23:39:26Z,1,2020-02-15T06:59:46Z +14837,2005-08-22T01:54:52Z,2251,43,2005-08-29T02:24:52Z,1,2020-02-15T06:59:46Z +14838,2005-08-22T01:57:34Z,506,404,2005-08-25T06:34:34Z,1,2020-02-15T06:59:46Z +14839,2005-08-22T01:58:15Z,3440,567,2005-08-24T05:24:15Z,2,2020-02-15T06:59:46Z +14840,2005-08-22T01:58:42Z,1240,354,2005-08-29T22:32:42Z,2,2020-02-15T06:59:46Z +14841,2005-08-22T02:03:30Z,4017,384,2005-08-28T02:08:30Z,2,2020-02-15T06:59:46Z +14842,2005-08-22T02:04:38Z,2511,467,2005-08-30T06:46:38Z,2,2020-02-15T06:59:46Z +14843,2005-08-22T02:05:25Z,3000,454,2005-08-28T22:11:25Z,1,2020-02-15T06:59:46Z +14844,2005-08-22T02:09:12Z,145,513,2005-08-31T05:43:12Z,1,2020-02-15T06:59:46Z +14845,2005-08-22T02:12:44Z,69,292,2005-08-24T02:36:44Z,2,2020-02-15T06:59:46Z +14846,2005-08-22T02:13:48Z,3840,309,2005-08-30T05:39:48Z,1,2020-02-15T06:59:46Z +14847,2005-08-22T02:13:51Z,2995,327,2005-08-29T03:42:51Z,2,2020-02-15T06:59:46Z +14848,2005-08-22T02:14:19Z,395,218,2005-08-26T02:54:19Z,2,2020-02-15T06:59:46Z +14849,2005-08-22T02:15:26Z,3354,177,2005-08-28T00:56:26Z,2,2020-02-15T06:59:46Z +14850,2005-08-22T02:16:55Z,2405,435,2005-08-26T21:08:55Z,1,2020-02-15T06:59:46Z +14851,2005-08-22T02:20:44Z,1139,180,2005-08-26T08:02:44Z,2,2020-02-15T06:59:46Z +14852,2005-08-22T02:25:53Z,2262,352,2005-08-25T04:27:53Z,1,2020-02-15T06:59:46Z +14853,2005-08-22T02:26:33Z,3575,388,2005-08-31T02:49:33Z,2,2020-02-15T06:59:46Z +14854,2005-08-22T02:26:47Z,1989,117,2005-08-23T05:53:47Z,1,2020-02-15T06:59:46Z +14855,2005-08-22T02:27:32Z,1668,187,2005-08-31T03:35:32Z,1,2020-02-15T06:59:46Z +14856,2005-08-22T02:31:51Z,3292,151,2005-08-26T23:41:51Z,2,2020-02-15T06:59:46Z +14857,2005-08-22T02:42:39Z,4150,232,2005-08-24T21:26:39Z,2,2020-02-15T06:59:46Z +14858,2005-08-22T02:46:18Z,366,499,2005-08-30T08:22:18Z,1,2020-02-15T06:59:46Z +14859,2005-08-22T02:46:35Z,2150,463,2005-08-24T22:37:35Z,2,2020-02-15T06:59:46Z +14860,2005-08-22T02:47:07Z,1368,418,2005-08-28T00:00:07Z,1,2020-02-15T06:59:46Z +14861,2005-08-22T02:48:05Z,1806,422,2005-08-27T00:50:05Z,1,2020-02-15T06:59:46Z +14862,2005-08-22T02:51:41Z,3479,78,2005-08-28T06:30:41Z,2,2020-02-15T06:59:46Z +14863,2005-08-22T02:57:04Z,779,440,2005-08-30T03:24:04Z,2,2020-02-15T06:59:46Z +14864,2005-08-22T02:57:06Z,2872,460,2005-08-22T22:19:06Z,1,2020-02-15T06:59:46Z +14865,2005-08-22T03:06:38Z,3775,94,2005-08-23T04:26:38Z,1,2020-02-15T06:59:46Z +14866,2005-08-22T03:11:35Z,2607,445,2005-08-30T00:10:35Z,1,2020-02-15T06:59:46Z +14867,2005-08-22T03:14:46Z,271,114,2005-08-25T03:53:46Z,2,2020-02-15T06:59:46Z +14868,2005-08-22T03:15:01Z,4383,160,2005-08-25T01:24:01Z,1,2020-02-15T06:59:46Z +14869,2005-08-22T03:20:26Z,455,21,2005-08-23T05:25:26Z,2,2020-02-15T06:59:46Z +14870,2005-08-22T03:23:20Z,2170,512,2005-08-23T06:50:20Z,2,2020-02-15T06:59:46Z +14871,2005-08-22T03:23:24Z,3411,204,2005-08-23T22:23:24Z,2,2020-02-15T06:59:46Z +14872,2005-08-22T03:23:41Z,962,15,2005-08-29T23:25:41Z,1,2020-02-15T06:59:46Z +14873,2005-08-22T03:31:06Z,3533,314,2005-08-31T05:34:06Z,1,2020-02-15T06:59:46Z +14874,2005-08-22T03:32:05Z,1782,268,2005-08-24T07:02:05Z,2,2020-02-15T06:59:46Z +14875,2005-08-22T03:34:39Z,3912,513,2005-08-26T03:40:39Z,1,2020-02-15T06:59:46Z +14876,2005-08-22T03:39:29Z,3669,210,2005-08-23T06:53:29Z,1,2020-02-15T06:59:46Z +14877,2005-08-22T03:39:56Z,974,266,2005-08-24T03:41:56Z,2,2020-02-15T06:59:46Z +14878,2006-02-14T15:16:03Z,1202,441,,2,2020-02-15T06:59:46Z +14879,2005-08-22T03:42:12Z,2154,148,2005-08-27T06:14:12Z,1,2020-02-15T06:59:46Z +14880,2005-08-22T03:44:36Z,3615,224,2005-08-24T05:45:36Z,2,2020-02-15T06:59:46Z +14881,2005-08-22T03:47:39Z,210,425,2005-08-26T05:58:39Z,2,2020-02-15T06:59:46Z +14882,2005-08-22T03:52:21Z,12,417,2005-08-25T04:50:21Z,2,2020-02-15T06:59:46Z +14883,2005-08-22T03:55:02Z,1946,177,2005-08-28T02:51:02Z,1,2020-02-15T06:59:46Z +14884,2005-08-22T03:57:08Z,2957,547,2005-08-23T07:11:08Z,1,2020-02-15T06:59:46Z +14885,2005-08-22T03:58:29Z,2097,248,2005-08-30T05:26:29Z,1,2020-02-15T06:59:46Z +14886,2005-08-22T03:59:01Z,4330,379,2005-08-23T01:22:01Z,1,2020-02-15T06:59:46Z +14887,2005-08-22T04:04:31Z,56,421,2005-08-31T02:30:31Z,1,2020-02-15T06:59:46Z +14888,2005-08-22T04:09:18Z,3345,91,2005-08-23T07:34:18Z,2,2020-02-15T06:59:46Z +14889,2005-08-22T04:10:10Z,1579,299,2005-08-24T06:23:10Z,2,2020-02-15T06:59:46Z +14890,2005-08-22T04:10:49Z,517,346,2005-08-30T23:23:49Z,1,2020-02-15T06:59:46Z +14891,2005-08-22T04:11:02Z,288,482,2005-08-27T03:22:02Z,1,2020-02-15T06:59:46Z +14892,2005-08-22T04:15:05Z,3061,82,2005-08-31T06:07:05Z,1,2020-02-15T06:59:46Z +14893,2005-08-22T04:15:48Z,2336,461,2005-08-30T08:05:48Z,1,2020-02-15T06:59:46Z +14894,2005-08-22T04:16:56Z,3494,347,2005-08-24T00:30:56Z,2,2020-02-15T06:59:46Z +14895,2005-08-22T04:19:23Z,4462,340,2005-08-27T04:02:23Z,1,2020-02-15T06:59:46Z +14896,2005-08-22T04:20:55Z,2508,569,2005-08-29T05:11:55Z,2,2020-02-15T06:59:46Z +14897,2005-08-22T04:22:31Z,1607,175,2005-08-26T00:09:31Z,1,2020-02-15T06:59:46Z +14898,2005-08-22T04:26:34Z,1736,299,2005-08-31T10:04:34Z,1,2020-02-15T06:59:46Z +14899,2005-08-22T04:26:38Z,3700,304,2005-08-31T08:36:38Z,2,2020-02-15T06:59:46Z +14900,2005-08-22T04:27:48Z,3420,329,2005-08-25T03:50:48Z,2,2020-02-15T06:59:46Z +14901,2005-08-22T04:31:37Z,4297,258,2005-08-29T08:24:37Z,1,2020-02-15T06:59:46Z +14902,2005-08-22T04:31:50Z,866,423,2005-08-23T23:47:50Z,2,2020-02-15T06:59:46Z +14903,2005-08-22T04:31:50Z,1795,51,2005-08-25T22:53:50Z,2,2020-02-15T06:59:46Z +14904,2005-08-22T04:32:01Z,722,71,2005-08-29T05:21:01Z,1,2020-02-15T06:59:46Z +14905,2005-08-22T04:34:22Z,4166,286,2005-08-26T04:00:22Z,2,2020-02-15T06:59:46Z +14906,2005-08-22T04:38:18Z,153,366,2005-08-29T23:03:18Z,1,2020-02-15T06:59:46Z +14907,2005-08-22T04:44:09Z,2469,116,2005-08-25T09:53:09Z,1,2020-02-15T06:59:46Z +14908,2005-08-22T04:44:10Z,102,349,2005-08-25T05:09:10Z,2,2020-02-15T06:59:46Z +14909,2005-08-22T04:48:44Z,1997,155,2005-08-25T04:59:44Z,1,2020-02-15T06:59:46Z +14910,2005-08-22T04:50:52Z,1266,540,2005-08-25T04:14:52Z,1,2020-02-15T06:59:46Z +14911,2005-08-22T04:51:42Z,353,273,2005-08-28T05:37:42Z,1,2020-02-15T06:59:46Z +14912,2005-08-22T04:51:42Z,2658,404,2005-08-23T23:50:42Z,1,2020-02-15T06:59:46Z +14913,2005-08-22T04:52:13Z,3609,503,2005-08-23T06:49:13Z,2,2020-02-15T06:59:46Z +14914,2005-08-22T04:53:35Z,4348,156,2005-08-26T10:35:35Z,1,2020-02-15T06:59:46Z +14915,2006-02-14T15:16:03Z,112,349,,1,2020-02-15T06:59:46Z +14916,2005-08-22T04:56:57Z,2110,80,2005-08-24T06:36:57Z,2,2020-02-15T06:59:46Z +14917,2005-08-22T05:03:59Z,377,289,2005-08-29T04:00:59Z,2,2020-02-15T06:59:46Z +14918,2005-08-22T05:06:38Z,4056,154,2005-08-30T01:44:38Z,2,2020-02-15T06:59:46Z +14919,2005-08-22T05:07:17Z,1587,244,2005-08-30T06:41:17Z,2,2020-02-15T06:59:46Z +14920,2005-08-22T05:08:58Z,3357,106,2005-08-23T02:51:58Z,1,2020-02-15T06:59:46Z +14921,2005-08-22T05:12:24Z,3724,284,2005-08-26T08:20:24Z,2,2020-02-15T06:59:46Z +14922,2005-08-22T05:13:05Z,2322,151,2005-08-30T04:59:05Z,1,2020-02-15T06:59:46Z +14923,2005-08-22T05:13:33Z,3434,460,2005-08-28T01:39:33Z,2,2020-02-15T06:59:46Z +14924,2005-08-22T05:15:17Z,4189,118,2005-08-23T10:11:17Z,1,2020-02-15T06:59:46Z +14925,2005-08-22T05:16:16Z,442,128,2005-08-30T02:47:16Z,2,2020-02-15T06:59:46Z +14926,2005-08-22T05:18:44Z,2448,357,2005-08-26T02:18:44Z,1,2020-02-15T06:59:46Z +14927,2005-08-22T05:31:53Z,952,193,2005-08-27T07:04:53Z,1,2020-02-15T06:59:46Z +14928,2006-02-14T15:16:03Z,4375,472,,1,2020-02-15T06:59:46Z +14929,2005-08-22T05:32:38Z,4195,546,2005-08-28T00:02:38Z,1,2020-02-15T06:59:46Z +14930,2005-08-22T05:38:32Z,2875,584,2005-08-30T07:21:32Z,1,2020-02-15T06:59:46Z +14931,2005-08-22T05:38:55Z,657,63,2005-08-28T04:15:55Z,2,2020-02-15T06:59:46Z +14932,2005-08-22T05:40:39Z,2259,516,2005-08-23T11:02:39Z,2,2020-02-15T06:59:46Z +14933,2006-02-14T15:16:03Z,1186,21,,2,2020-02-15T06:59:46Z +14934,2005-08-22T05:47:15Z,815,226,2005-08-26T11:32:15Z,1,2020-02-15T06:59:46Z +14935,2005-08-22T05:47:31Z,2025,380,2005-08-29T00:33:31Z,2,2020-02-15T06:59:46Z +14936,2005-08-22T05:51:26Z,3710,241,2005-08-29T10:21:26Z,2,2020-02-15T06:59:46Z +14937,2005-08-22T05:51:59Z,1241,348,2005-08-31T01:45:59Z,2,2020-02-15T06:59:46Z +14938,2005-08-22T05:52:39Z,408,541,2005-08-31T11:43:39Z,1,2020-02-15T06:59:46Z +14939,2005-08-22T05:53:52Z,719,328,2005-08-27T06:20:52Z,1,2020-02-15T06:59:46Z +14940,2005-08-22T05:54:03Z,2635,46,2005-08-24T05:52:03Z,2,2020-02-15T06:59:46Z +14941,2005-08-22T05:58:23Z,2328,574,2005-08-28T10:58:23Z,1,2020-02-15T06:59:46Z +14942,2005-08-22T05:58:27Z,32,471,2005-08-31T10:08:27Z,1,2020-02-15T06:59:46Z +14943,2005-08-22T05:59:59Z,3515,265,2005-08-26T10:31:59Z,2,2020-02-15T06:59:46Z +14944,2005-08-22T06:01:26Z,535,153,2005-08-24T10:33:26Z,2,2020-02-15T06:59:46Z +14945,2005-08-22T06:05:38Z,1567,304,2005-08-29T12:01:38Z,1,2020-02-15T06:59:46Z +14946,2005-08-22T06:07:10Z,1395,308,2005-08-28T05:25:10Z,1,2020-02-15T06:59:46Z +14947,2005-08-22T06:07:52Z,3497,68,2005-08-28T01:12:52Z,2,2020-02-15T06:59:46Z +14948,2005-08-22T06:10:53Z,2914,488,2005-08-28T11:24:53Z,2,2020-02-15T06:59:46Z +14949,2005-08-22T06:12:16Z,2434,111,2005-08-25T08:25:16Z,2,2020-02-15T06:59:46Z +14950,2005-08-22T06:17:12Z,635,362,2005-08-27T08:48:12Z,2,2020-02-15T06:59:46Z +14951,2005-08-22T06:19:37Z,2800,197,2005-08-30T05:51:37Z,2,2020-02-15T06:59:46Z +14952,2005-08-22T06:20:07Z,2950,575,2005-08-28T01:18:07Z,1,2020-02-15T06:59:46Z +14953,2005-08-22T06:23:54Z,816,182,2005-08-28T03:19:54Z,1,2020-02-15T06:59:46Z +14954,2006-02-14T15:16:03Z,3608,525,,1,2020-02-15T06:59:46Z +14955,2005-08-22T06:25:52Z,1534,445,2005-08-25T12:13:52Z,2,2020-02-15T06:59:46Z +14956,2005-08-22T06:26:16Z,3650,571,2005-08-25T11:06:16Z,2,2020-02-15T06:59:46Z +14957,2005-08-22T06:29:34Z,1384,323,2005-08-26T04:52:34Z,2,2020-02-15T06:59:46Z +14958,2005-08-22T06:30:10Z,1710,347,2005-08-28T09:43:10Z,2,2020-02-15T06:59:46Z +14959,2005-08-22T06:30:28Z,2009,569,2005-08-25T09:48:28Z,1,2020-02-15T06:59:46Z +14960,2005-08-22T06:31:36Z,3316,147,2005-08-29T07:10:36Z,2,2020-02-15T06:59:46Z +14961,2005-08-22T06:35:50Z,3274,52,2005-08-31T04:07:50Z,2,2020-02-15T06:59:46Z +14962,2005-08-22T06:37:43Z,3104,449,2005-08-29T03:44:43Z,2,2020-02-15T06:59:46Z +14963,2005-08-22T06:38:10Z,2672,384,2005-08-31T05:35:10Z,2,2020-02-15T06:59:46Z +14964,2005-08-22T06:39:24Z,2302,500,2005-08-26T06:05:24Z,1,2020-02-15T06:59:46Z +14965,2005-08-22T06:45:53Z,1036,148,2005-08-27T10:05:53Z,1,2020-02-15T06:59:46Z +14966,2005-08-22T06:45:57Z,679,259,2005-08-31T10:02:57Z,1,2020-02-15T06:59:46Z +14967,2005-08-22T06:46:03Z,289,67,2005-08-23T01:02:03Z,2,2020-02-15T06:59:46Z +14968,2005-08-22T06:46:59Z,3302,129,2005-08-29T07:36:59Z,1,2020-02-15T06:59:46Z +14969,2005-08-22T06:49:15Z,4060,120,2005-08-29T05:52:15Z,1,2020-02-15T06:59:46Z +14970,2005-08-22T06:49:29Z,536,529,2005-08-29T08:47:29Z,1,2020-02-15T06:59:46Z +14971,2005-08-22T06:52:49Z,1883,378,2005-08-28T06:27:49Z,2,2020-02-15T06:59:46Z +14972,2005-08-22T06:53:21Z,3422,310,2005-08-29T02:25:21Z,1,2020-02-15T06:59:46Z +14973,2005-08-22T06:59:28Z,2888,201,2005-08-30T02:28:28Z,1,2020-02-15T06:59:46Z +14974,2005-08-22T07:04:25Z,2596,157,2005-08-27T12:39:25Z,1,2020-02-15T06:59:46Z +14975,2005-08-22T07:07:50Z,924,244,2005-08-28T07:23:50Z,2,2020-02-15T06:59:46Z +14976,2005-08-22T07:10:26Z,77,581,2005-08-28T07:22:26Z,1,2020-02-15T06:59:46Z +14977,2005-08-22T07:12:53Z,4093,59,2005-08-30T08:11:53Z,2,2020-02-15T06:59:46Z +14978,2005-08-22T07:13:15Z,699,94,2005-08-25T12:26:15Z,1,2020-02-15T06:59:46Z +14979,2005-08-22T07:16:36Z,2320,387,2005-08-24T02:29:36Z,2,2020-02-15T06:59:46Z +14980,2005-08-22T07:16:45Z,2701,518,2005-08-26T06:04:45Z,2,2020-02-15T06:59:46Z +14981,2005-08-22T07:19:05Z,1239,544,2005-08-26T03:08:05Z,2,2020-02-15T06:59:46Z +14982,2005-08-22T07:20:55Z,2333,542,2005-08-31T04:35:55Z,2,2020-02-15T06:59:46Z +14983,2005-08-22T07:32:23Z,3579,363,2005-08-30T11:39:23Z,2,2020-02-15T06:59:46Z +14984,2005-08-22T07:35:31Z,1704,334,2005-08-30T02:32:31Z,1,2020-02-15T06:59:46Z +14985,2005-08-22T07:35:56Z,2017,29,2005-08-29T13:17:56Z,1,2020-02-15T06:59:46Z +14986,2005-08-22T07:37:24Z,1493,278,2005-08-23T04:22:24Z,2,2020-02-15T06:59:46Z +14987,2005-08-22T07:41:08Z,1513,138,2005-08-24T03:15:08Z,2,2020-02-15T06:59:46Z +14988,2005-08-22T07:46:05Z,2114,186,2005-08-29T06:43:05Z,1,2020-02-15T06:59:46Z +14989,2005-08-22T07:47:07Z,1431,58,2005-08-26T04:42:07Z,2,2020-02-15T06:59:46Z +14990,2005-08-22T07:48:01Z,4057,198,2005-08-24T06:41:01Z,2,2020-02-15T06:59:46Z +14991,2005-08-22T07:50:44Z,708,172,2005-08-30T06:32:44Z,2,2020-02-15T06:59:46Z +14992,2005-08-22T07:51:47Z,4430,415,2005-08-25T08:17:47Z,2,2020-02-15T06:59:46Z +14993,2005-08-22T07:52:18Z,3416,437,2005-08-27T02:13:18Z,1,2020-02-15T06:59:46Z +14994,2005-08-22T07:52:24Z,1601,509,2005-08-26T09:57:24Z,1,2020-02-15T06:59:46Z +14995,2005-08-22T07:52:31Z,4178,482,2005-08-24T05:16:31Z,1,2020-02-15T06:59:46Z +14996,2005-08-22T07:52:41Z,1178,411,2005-08-29T02:35:41Z,1,2020-02-15T06:59:46Z +14997,2005-08-22T07:53:00Z,2724,29,2005-08-28T03:47:00Z,2,2020-02-15T06:59:46Z +14998,2005-08-22T07:53:14Z,3852,92,2005-08-24T03:46:14Z,2,2020-02-15T06:59:46Z +14999,2005-08-22T07:54:47Z,3399,594,2005-08-23T08:39:47Z,1,2020-02-15T06:59:46Z +15000,2005-08-22T07:54:58Z,3080,161,2005-08-24T12:46:58Z,2,2020-02-15T06:59:46Z +15001,2005-08-22T08:00:49Z,2869,186,2005-08-27T05:53:49Z,2,2020-02-15T06:59:46Z +15002,2005-08-22T08:06:00Z,4198,242,2005-08-24T10:48:00Z,1,2020-02-15T06:59:46Z +15003,2005-08-22T08:11:24Z,4009,167,2005-08-28T08:49:24Z,1,2020-02-15T06:59:46Z +15004,2005-08-22T08:15:21Z,4464,375,2005-08-28T10:35:21Z,1,2020-02-15T06:59:46Z +15005,2005-08-22T08:15:44Z,2897,335,2005-08-24T09:52:44Z,2,2020-02-15T06:59:46Z +15006,2005-08-22T08:20:15Z,2967,97,2005-08-23T11:57:15Z,1,2020-02-15T06:59:46Z +15007,2005-08-22T08:21:21Z,3692,165,2005-08-27T04:44:21Z,2,2020-02-15T06:59:46Z +15008,2005-08-22T08:24:32Z,961,277,2005-08-31T13:48:32Z,2,2020-02-15T06:59:46Z +15009,2005-08-22T08:27:27Z,4025,325,2005-08-26T05:57:27Z,2,2020-02-15T06:59:46Z +15010,2005-08-22T08:30:17Z,171,508,2005-08-29T13:24:17Z,2,2020-02-15T06:59:46Z +15011,2005-08-22T08:31:07Z,2722,329,2005-08-24T04:47:07Z,1,2020-02-15T06:59:46Z +15012,2005-08-22T08:42:32Z,1584,454,2005-08-28T05:04:32Z,1,2020-02-15T06:59:46Z +15013,2005-08-22T08:42:45Z,141,141,2005-08-24T05:20:45Z,2,2020-02-15T06:59:46Z +15014,2005-08-22T08:43:11Z,3678,373,2005-08-31T02:55:11Z,1,2020-02-15T06:59:46Z +15015,2005-08-22T08:43:50Z,3067,14,2005-08-31T06:53:50Z,2,2020-02-15T06:59:46Z +15016,2005-08-22T08:47:35Z,879,434,2005-08-28T14:23:35Z,2,2020-02-15T06:59:46Z +15017,2005-08-22T08:47:44Z,3975,144,2005-08-29T08:16:44Z,1,2020-02-15T06:59:46Z +15018,2005-08-22T08:52:38Z,394,504,2005-08-25T08:08:38Z,1,2020-02-15T06:59:46Z +15019,2005-08-22T08:52:53Z,3425,450,2005-08-25T13:07:53Z,2,2020-02-15T06:59:46Z +15020,2005-08-22T08:54:12Z,3460,267,2005-08-27T04:54:12Z,1,2020-02-15T06:59:46Z +15021,2006-02-14T15:16:03Z,418,100,,2,2020-02-15T06:59:46Z +15022,2005-08-22T08:55:43Z,249,506,2005-08-31T05:35:43Z,2,2020-02-15T06:59:46Z +15023,2005-08-22T08:56:48Z,358,296,2005-08-29T08:13:48Z,1,2020-02-15T06:59:46Z +15024,2005-08-22T08:57:10Z,1831,139,2005-08-24T10:39:10Z,1,2020-02-15T06:59:46Z +15025,2005-08-22T08:57:24Z,2107,257,2005-08-24T06:09:24Z,2,2020-02-15T06:59:46Z +15026,2005-08-22T09:01:52Z,4328,66,2005-08-28T09:21:52Z,1,2020-02-15T06:59:46Z +15027,2005-08-22T09:03:04Z,326,478,2005-08-29T04:03:04Z,2,2020-02-15T06:59:46Z +15028,2005-08-22T09:03:44Z,4248,37,2005-08-30T11:28:44Z,1,2020-02-15T06:59:46Z +15029,2005-08-22T09:04:53Z,2234,139,2005-08-25T09:03:53Z,1,2020-02-15T06:59:46Z +15030,2005-08-22T09:10:21Z,3168,341,2005-08-24T06:00:21Z,2,2020-02-15T06:59:46Z +15031,2005-08-22T09:11:48Z,3926,430,2005-08-27T06:11:48Z,1,2020-02-15T06:59:46Z +15032,2005-08-22T09:14:09Z,3414,467,2005-08-25T09:50:09Z,2,2020-02-15T06:59:46Z +15033,2005-08-22T09:25:24Z,2431,168,2005-08-28T09:56:24Z,2,2020-02-15T06:59:46Z +15034,2005-08-22T09:33:08Z,1331,235,2005-08-29T13:04:08Z,1,2020-02-15T06:59:46Z +15035,2005-08-22T09:34:32Z,339,513,2005-08-28T10:23:32Z,1,2020-02-15T06:59:46Z +15036,2005-08-22T09:36:00Z,874,280,2005-08-23T08:12:00Z,2,2020-02-15T06:59:46Z +15037,2005-08-22T09:36:33Z,4517,234,2005-08-31T11:20:33Z,2,2020-02-15T06:59:46Z +15038,2005-08-22T09:37:27Z,1685,3,2005-08-23T14:39:27Z,1,2020-02-15T06:59:46Z +15039,2005-08-22T09:37:54Z,895,180,2005-08-28T12:23:54Z,1,2020-02-15T06:59:46Z +15040,2005-08-22T09:41:09Z,3207,523,2005-08-23T12:49:09Z,2,2020-02-15T06:59:46Z +15041,2005-08-22T09:43:18Z,1913,372,2005-08-23T11:04:18Z,2,2020-02-15T06:59:46Z +15042,2005-08-22T09:47:37Z,3796,553,2005-08-31T04:42:37Z,1,2020-02-15T06:59:46Z +15043,2005-08-22T09:49:32Z,3797,182,2005-08-28T13:50:32Z,1,2020-02-15T06:59:46Z +15044,2005-08-22T09:51:54Z,4513,439,2005-08-31T12:45:54Z,1,2020-02-15T06:59:46Z +15045,2005-08-22T09:53:23Z,3485,161,2005-08-26T10:09:23Z,2,2020-02-15T06:59:46Z +15046,2005-08-22T09:54:54Z,1536,474,2005-08-26T07:34:54Z,1,2020-02-15T06:59:46Z +15047,2005-08-22T09:57:16Z,1309,19,2005-08-23T11:39:16Z,1,2020-02-15T06:59:46Z +15048,2005-08-22T10:00:04Z,2895,27,2005-08-26T08:26:04Z,1,2020-02-15T06:59:46Z +15049,2005-08-22T10:06:28Z,1573,102,2005-08-26T15:12:28Z,1,2020-02-15T06:59:46Z +15050,2005-08-22T10:07:52Z,3961,167,2005-08-23T04:45:52Z,1,2020-02-15T06:59:46Z +15051,2005-08-22T10:08:50Z,1419,300,2005-08-28T10:23:50Z,1,2020-02-15T06:59:46Z +15052,2005-08-22T10:09:19Z,2349,147,2005-08-31T09:27:19Z,2,2020-02-15T06:59:46Z +15053,2005-08-22T10:13:09Z,1065,374,2005-08-28T12:42:09Z,2,2020-02-15T06:59:46Z +15054,2005-08-22T10:14:33Z,2314,44,2005-08-25T15:07:33Z,1,2020-02-15T06:59:46Z +15055,2005-08-22T10:14:39Z,623,125,2005-08-25T07:25:39Z,2,2020-02-15T06:59:46Z +15056,2005-08-22T10:15:54Z,1871,503,2005-08-25T07:21:54Z,1,2020-02-15T06:59:46Z +15057,2005-08-22T10:19:58Z,4534,20,2005-08-28T05:12:58Z,1,2020-02-15T06:59:46Z +15058,2005-08-22T10:20:55Z,3537,288,2005-08-26T12:37:55Z,1,2020-02-15T06:59:46Z +15059,2005-08-22T10:22:00Z,4079,564,2005-08-29T07:01:00Z,2,2020-02-15T06:59:46Z +15060,2005-08-22T10:24:32Z,2740,63,2005-08-31T11:17:32Z,2,2020-02-15T06:59:46Z +15061,2005-08-22T10:29:44Z,3436,90,2005-08-24T14:40:44Z,1,2020-02-15T06:59:46Z +15062,2005-08-22T10:34:39Z,4393,139,2005-08-26T13:09:39Z,2,2020-02-15T06:59:46Z +15063,2005-08-22T10:39:51Z,1159,30,2005-08-25T16:03:51Z,2,2020-02-15T06:59:46Z +15064,2005-08-22T10:41:58Z,1233,425,2005-08-28T13:34:58Z,2,2020-02-15T06:59:46Z +15065,2005-08-22T10:46:44Z,468,510,2005-08-27T09:40:44Z,2,2020-02-15T06:59:46Z +15066,2005-08-22T10:49:06Z,2712,530,2005-08-23T10:25:06Z,1,2020-02-15T06:59:46Z +15067,2005-08-22T10:49:21Z,3684,461,2005-08-24T09:01:21Z,1,2020-02-15T06:59:46Z +15068,2005-08-22T10:50:13Z,3268,373,2005-08-26T05:04:13Z,2,2020-02-15T06:59:46Z +15069,2005-08-22T10:55:42Z,592,568,2005-08-28T06:59:42Z,2,2020-02-15T06:59:46Z +15070,2005-08-22T10:55:45Z,2687,441,2005-08-26T09:23:45Z,1,2020-02-15T06:59:46Z +15071,2005-08-22T10:58:43Z,417,541,2005-08-31T14:53:43Z,1,2020-02-15T06:59:46Z +15072,2005-08-22T10:58:45Z,2871,405,2005-08-30T16:18:45Z,1,2020-02-15T06:59:46Z +15073,2005-08-22T11:01:15Z,3970,336,2005-08-31T09:23:15Z,1,2020-02-15T06:59:46Z +15074,2005-08-22T11:02:52Z,3112,567,2005-08-28T07:59:52Z,2,2020-02-15T06:59:46Z +15075,2005-08-22T11:04:52Z,1938,535,2005-08-30T05:06:52Z,1,2020-02-15T06:59:46Z +15076,2005-08-22T11:05:34Z,4170,287,2005-08-27T14:40:34Z,1,2020-02-15T06:59:46Z +15077,2005-08-22T11:09:18Z,3142,503,2005-08-29T08:41:18Z,1,2020-02-15T06:59:46Z +15078,2005-08-22T11:09:31Z,3001,197,2005-08-25T12:16:31Z,1,2020-02-15T06:59:46Z +15079,2005-08-22T11:09:56Z,4552,540,2005-08-24T15:40:56Z,2,2020-02-15T06:59:46Z +15080,2005-08-22T11:11:51Z,927,133,2005-08-23T13:09:51Z,1,2020-02-15T06:59:46Z +15081,2005-08-22T11:14:31Z,2501,313,2005-08-28T14:23:31Z,2,2020-02-15T06:59:46Z +15082,2005-08-22T11:17:06Z,2046,137,2005-08-28T06:40:06Z,1,2020-02-15T06:59:46Z +15083,2005-08-22T11:17:37Z,1691,397,2005-08-28T06:27:37Z,2,2020-02-15T06:59:46Z +15084,2005-08-22T11:17:59Z,821,287,2005-08-23T09:23:59Z,1,2020-02-15T06:59:46Z +15085,2005-08-22T11:19:22Z,1669,67,2005-08-25T09:04:22Z,2,2020-02-15T06:59:46Z +15086,2005-08-22T11:21:08Z,264,494,2005-08-30T08:18:08Z,2,2020-02-15T06:59:46Z +15087,2005-08-22T11:24:09Z,233,404,2005-08-27T16:42:09Z,2,2020-02-15T06:59:46Z +15088,2005-08-22T11:28:26Z,4199,377,2005-08-24T15:46:26Z,2,2020-02-15T06:59:46Z +15089,2005-08-22T11:34:06Z,3288,61,2005-08-31T12:45:06Z,1,2020-02-15T06:59:46Z +15090,2005-08-22T11:34:33Z,2918,582,2005-08-31T06:09:33Z,2,2020-02-15T06:59:46Z +15091,2005-08-22T11:34:43Z,2092,477,2005-08-23T16:52:43Z,2,2020-02-15T06:59:46Z +15092,2005-08-22T11:36:16Z,2418,464,2005-08-28T09:49:16Z,2,2020-02-15T06:59:46Z +15093,2005-08-22T11:39:03Z,3534,60,2005-08-23T06:16:03Z,2,2020-02-15T06:59:46Z +15094,2006-02-14T15:16:03Z,922,424,,1,2020-02-15T06:59:46Z +15095,2005-08-22T11:41:35Z,489,202,2005-08-25T16:44:35Z,2,2020-02-15T06:59:46Z +15096,2005-08-22T11:43:04Z,1983,33,2005-08-29T12:16:04Z,2,2020-02-15T06:59:46Z +15097,2005-08-22T11:43:42Z,2838,475,2005-08-27T10:25:42Z,1,2020-02-15T06:59:46Z +15098,2005-08-22T11:48:19Z,4414,88,2005-08-31T11:07:19Z,2,2020-02-15T06:59:46Z +15099,2005-08-22T11:49:16Z,1940,86,2005-08-26T06:38:16Z,2,2020-02-15T06:59:46Z +15100,2005-08-22T11:55:03Z,4489,312,2005-08-25T14:55:03Z,1,2020-02-15T06:59:46Z +15101,2005-08-22T11:56:02Z,683,335,2005-08-28T13:08:02Z,2,2020-02-15T06:59:46Z +15102,2005-08-22T11:58:58Z,2317,555,2005-08-29T08:37:58Z,1,2020-02-15T06:59:46Z +15103,2005-08-22T12:01:06Z,853,101,2005-08-25T14:40:06Z,2,2020-02-15T06:59:46Z +15104,2005-08-22T12:01:16Z,4550,359,2005-08-27T17:48:16Z,1,2020-02-15T06:59:46Z +15105,2005-08-22T12:01:33Z,3965,338,2005-08-26T14:29:33Z,2,2020-02-15T06:59:46Z +15106,2005-08-22T12:01:48Z,399,155,2005-08-27T16:12:48Z,1,2020-02-15T06:59:46Z +15107,2005-08-22T12:05:02Z,2378,376,2005-08-23T11:09:02Z,1,2020-02-15T06:59:46Z +15108,2005-08-22T12:10:07Z,3463,447,2005-08-26T14:46:07Z,2,2020-02-15T06:59:46Z +15109,2005-08-22T12:12:58Z,565,588,2005-08-30T07:20:58Z,1,2020-02-15T06:59:46Z +15110,2005-08-22T12:16:46Z,1379,72,2005-08-26T13:36:46Z,1,2020-02-15T06:59:46Z +15111,2005-08-22T12:21:43Z,4101,119,2005-08-24T09:31:43Z,1,2020-02-15T06:59:46Z +15112,2005-08-22T12:21:49Z,2832,160,2005-08-27T11:03:49Z,1,2020-02-15T06:59:46Z +15113,2005-08-22T12:23:59Z,4338,424,2005-08-27T09:59:59Z,1,2020-02-15T06:59:46Z +15114,2005-08-22T12:24:55Z,2481,121,2005-08-31T17:06:55Z,1,2020-02-15T06:59:46Z +15115,2005-08-22T12:28:01Z,1739,33,2005-08-26T16:12:01Z,1,2020-02-15T06:59:46Z +15116,2005-08-22T12:35:40Z,518,217,2005-08-23T17:58:40Z,1,2020-02-15T06:59:46Z +15117,2005-08-22T12:38:20Z,2502,292,2005-08-27T07:36:20Z,2,2020-02-15T06:59:46Z +15118,2005-08-22T12:38:37Z,2081,473,2005-08-29T14:01:37Z,2,2020-02-15T06:59:46Z +15119,2005-08-22T12:41:33Z,4526,288,2005-08-23T14:44:33Z,2,2020-02-15T06:59:46Z +15120,2005-08-22T12:42:47Z,3083,11,2005-08-23T14:21:47Z,1,2020-02-15T06:59:46Z +15121,2005-08-22T12:46:37Z,2981,415,2005-08-25T17:42:37Z,1,2020-02-15T06:59:46Z +15122,2005-08-22T12:47:45Z,1686,91,2005-08-29T13:18:45Z,2,2020-02-15T06:59:46Z +15123,2005-08-22T12:48:44Z,1455,445,2005-08-27T11:07:44Z,1,2020-02-15T06:59:46Z +15124,2005-08-22T12:51:38Z,1598,39,2005-08-26T09:05:38Z,1,2020-02-15T06:59:46Z +15125,2005-08-22T12:53:22Z,3942,221,2005-08-29T18:44:22Z,1,2020-02-15T06:59:46Z +15126,2005-08-22T12:53:58Z,1902,459,2005-08-28T07:39:58Z,1,2020-02-15T06:59:46Z +15127,2005-08-22T12:56:29Z,2397,287,2005-08-26T10:58:29Z,1,2020-02-15T06:59:46Z +15128,2005-08-22T12:57:26Z,3229,457,2005-08-30T11:35:26Z,2,2020-02-15T06:59:46Z +15129,2005-08-22T13:03:52Z,3782,234,2005-08-29T10:56:52Z,2,2020-02-15T06:59:46Z +15130,2005-08-22T13:04:32Z,2375,536,2005-08-30T17:24:32Z,1,2020-02-15T06:59:46Z +15131,2005-08-22T13:06:26Z,1930,119,2005-08-30T16:43:26Z,1,2020-02-15T06:59:46Z +15132,2005-08-22T13:11:25Z,3474,393,2005-08-27T17:04:25Z,2,2020-02-15T06:59:46Z +15133,2005-08-22T13:17:43Z,3408,137,2005-08-26T08:40:43Z,1,2020-02-15T06:59:46Z +15134,2005-08-22T13:18:25Z,4442,22,2005-08-29T18:03:25Z,1,2020-02-15T06:59:46Z +15135,2005-08-22T13:19:19Z,555,284,2005-08-27T17:09:19Z,2,2020-02-15T06:59:46Z +15136,2005-08-22T13:19:25Z,2606,435,2005-08-24T07:28:25Z,2,2020-02-15T06:59:46Z +15137,2005-08-22T13:20:28Z,856,241,2005-08-26T09:35:28Z,1,2020-02-15T06:59:46Z +15138,2005-08-22T13:36:30Z,2467,50,2005-08-27T15:35:30Z,1,2020-02-15T06:59:46Z +15139,2005-08-22T13:38:11Z,2018,237,2005-08-30T09:00:11Z,1,2020-02-15T06:59:46Z +15140,2005-08-22T13:39:20Z,1402,414,2005-08-30T18:19:20Z,2,2020-02-15T06:59:46Z +15141,2005-08-22T13:41:49Z,227,541,2005-08-28T15:25:49Z,2,2020-02-15T06:59:46Z +15142,2005-08-22T13:44:32Z,1337,351,2005-08-29T14:19:32Z,1,2020-02-15T06:59:46Z +15143,2005-08-22T13:46:24Z,1519,274,2005-08-25T09:47:24Z,2,2020-02-15T06:59:46Z +15144,2005-08-22T13:49:18Z,559,527,2005-08-26T11:11:18Z,2,2020-02-15T06:59:46Z +15145,2005-08-22T13:53:04Z,2179,2,2005-08-31T15:51:04Z,1,2020-02-15T06:59:46Z +15146,2005-08-22T13:57:55Z,3102,72,2005-08-28T12:57:55Z,2,2020-02-15T06:59:46Z +15147,2005-08-22T13:58:23Z,2553,4,2005-08-28T14:33:23Z,2,2020-02-15T06:59:46Z +15148,2005-08-22T13:59:19Z,3704,359,2005-08-31T13:59:19Z,2,2020-02-15T06:59:46Z +15149,2005-08-22T14:08:06Z,3059,537,2005-08-25T08:25:06Z,1,2020-02-15T06:59:46Z +15150,2005-08-22T14:12:05Z,1797,161,2005-08-27T12:47:05Z,1,2020-02-15T06:59:46Z +15151,2005-08-22T14:23:11Z,4070,463,2005-08-30T14:01:11Z,1,2020-02-15T06:59:46Z +15152,2005-08-22T14:25:21Z,739,123,2005-08-31T14:28:21Z,1,2020-02-15T06:59:46Z +15153,2005-08-22T14:26:01Z,1051,512,2005-08-27T14:17:01Z,2,2020-02-15T06:59:46Z +15154,2005-08-22T14:27:37Z,3395,106,2005-08-29T20:04:37Z,2,2020-02-15T06:59:46Z +15155,2005-08-22T14:27:46Z,2641,43,2005-08-23T17:46:46Z,2,2020-02-15T06:59:46Z +15156,2005-08-22T14:29:11Z,1174,494,2005-08-30T17:48:11Z,2,2020-02-15T06:59:46Z +15157,2005-08-22T14:30:09Z,1909,580,2005-08-29T18:28:09Z,1,2020-02-15T06:59:46Z +15158,2005-08-22T14:30:39Z,3614,588,2005-08-27T15:55:39Z,1,2020-02-15T06:59:46Z +15159,2005-08-22T14:32:25Z,4355,525,2005-08-24T11:19:25Z,2,2020-02-15T06:59:46Z +15160,2005-08-22T14:33:50Z,4321,249,2005-08-28T11:26:50Z,1,2020-02-15T06:59:46Z +15161,2005-08-22T14:37:22Z,1445,20,2005-08-27T17:40:22Z,1,2020-02-15T06:59:46Z +15162,2005-08-22T14:41:05Z,1756,439,2005-08-27T20:23:05Z,2,2020-02-15T06:59:46Z +15163,2005-08-22T14:43:13Z,3597,100,2005-08-26T14:26:13Z,1,2020-02-15T06:59:46Z +15164,2005-08-22T14:47:53Z,997,193,2005-08-25T16:05:53Z,1,2020-02-15T06:59:46Z +15165,2005-08-22T14:59:30Z,3664,168,2005-08-29T15:46:30Z,2,2020-02-15T06:59:46Z +15166,2005-08-22T15:05:37Z,1530,504,2005-08-30T12:22:37Z,2,2020-02-15T06:59:46Z +15167,2006-02-14T15:16:03Z,973,190,,2,2020-02-15T06:59:46Z +15168,2005-08-22T15:14:20Z,3218,526,2005-08-25T20:12:20Z,2,2020-02-15T06:59:46Z +15169,2005-08-22T15:21:56Z,794,76,2005-08-28T09:40:56Z,1,2020-02-15T06:59:46Z +15170,2005-08-22T15:22:15Z,2123,521,2005-08-23T20:32:15Z,1,2020-02-15T06:59:46Z +15171,2005-08-22T15:23:59Z,1201,119,2005-08-28T12:05:59Z,2,2020-02-15T06:59:46Z +15172,2005-08-22T15:25:33Z,2367,511,2005-08-23T17:29:33Z,1,2020-02-15T06:59:46Z +15173,2005-08-22T15:26:29Z,2585,338,2005-08-29T14:03:29Z,1,2020-02-15T06:59:46Z +15174,2005-08-22T15:26:36Z,19,111,2005-08-31T10:47:36Z,2,2020-02-15T06:59:46Z +15175,2005-08-22T15:29:15Z,4318,380,2005-08-27T15:11:15Z,2,2020-02-15T06:59:46Z +15176,2005-08-22T15:30:25Z,3063,115,2005-08-31T20:00:25Z,1,2020-02-15T06:59:46Z +15177,2005-08-22T15:34:49Z,838,493,2005-08-26T12:54:49Z,1,2020-02-15T06:59:46Z +15178,2005-08-22T15:36:04Z,1745,15,2005-08-26T21:00:04Z,2,2020-02-15T06:59:46Z +15179,2005-08-22T15:36:22Z,450,328,2005-08-31T19:57:22Z,1,2020-02-15T06:59:46Z +15180,2005-08-22T15:42:57Z,234,532,2005-08-24T12:49:57Z,2,2020-02-15T06:59:46Z +15181,2005-08-22T15:46:20Z,3900,266,2005-08-27T09:56:20Z,1,2020-02-15T06:59:46Z +15182,2005-08-22T15:47:05Z,645,443,2005-08-25T11:55:05Z,1,2020-02-15T06:59:46Z +15183,2005-08-22T15:49:54Z,2696,268,2005-08-25T12:29:54Z,1,2020-02-15T06:59:46Z +15184,2005-08-22T15:51:12Z,1193,471,2005-08-24T19:23:12Z,2,2020-02-15T06:59:46Z +15185,2005-08-22T15:52:50Z,2948,472,2005-08-31T20:38:50Z,1,2020-02-15T06:59:46Z +15186,2005-08-22T15:52:57Z,1323,104,2005-08-24T21:12:57Z,1,2020-02-15T06:59:46Z +15187,2005-08-22T15:53:32Z,2338,461,2005-08-27T14:21:32Z,1,2020-02-15T06:59:46Z +15188,2005-08-22T15:55:48Z,131,478,2005-08-29T19:10:48Z,1,2020-02-15T06:59:46Z +15189,2005-08-22T15:56:42Z,2559,398,2005-08-29T12:20:42Z,1,2020-02-15T06:59:46Z +15190,2005-08-22T15:57:38Z,2096,84,2005-08-24T13:46:38Z,1,2020-02-15T06:59:46Z +15191,2006-02-14T15:16:03Z,3688,75,,1,2020-02-15T06:59:46Z +15192,2005-08-22T16:06:23Z,4213,216,2005-08-27T13:12:23Z,1,2020-02-15T06:59:46Z +15193,2005-08-22T16:06:49Z,1033,40,2005-08-25T17:23:49Z,1,2020-02-15T06:59:46Z +15194,2005-08-22T16:07:34Z,1217,332,2005-08-26T19:16:34Z,1,2020-02-15T06:59:46Z +15195,2005-08-22T16:08:23Z,1080,508,2005-08-30T17:56:23Z,2,2020-02-15T06:59:46Z +15196,2005-08-22T16:11:32Z,1413,181,2005-08-30T22:06:32Z,1,2020-02-15T06:59:46Z +15197,2005-08-22T16:14:25Z,2915,159,2005-08-26T16:22:25Z,2,2020-02-15T06:59:46Z +15198,2005-08-22T16:15:33Z,1253,396,2005-08-29T20:49:33Z,1,2020-02-15T06:59:46Z +15199,2005-08-22T16:17:49Z,18,216,2005-08-25T20:12:49Z,1,2020-02-15T06:59:46Z +15200,2005-08-22T16:22:53Z,1000,374,2005-08-24T10:25:53Z,2,2020-02-15T06:59:46Z +15201,2005-08-22T16:24:42Z,4456,301,2005-08-31T17:54:42Z,1,2020-02-15T06:59:46Z +15202,2005-08-22T16:26:53Z,2119,374,2005-08-23T13:49:53Z,2,2020-02-15T06:59:46Z +15203,2005-08-22T16:28:00Z,743,568,2005-08-26T16:55:00Z,2,2020-02-15T06:59:46Z +15204,2005-08-22T16:30:43Z,1471,317,2005-08-26T20:37:43Z,2,2020-02-15T06:59:46Z +15205,2005-08-22T16:32:23Z,3276,489,2005-08-27T16:08:23Z,1,2020-02-15T06:59:46Z +15206,2005-08-22T16:33:39Z,3901,524,2005-08-31T11:41:39Z,1,2020-02-15T06:59:46Z +15207,2005-08-22T16:35:25Z,1149,442,2005-08-23T14:06:25Z,1,2020-02-15T06:59:46Z +15208,2005-08-22T16:35:47Z,4346,267,2005-08-30T15:16:47Z,1,2020-02-15T06:59:46Z +15209,2005-08-22T16:37:32Z,1620,588,2005-08-25T19:04:32Z,1,2020-02-15T06:59:46Z +15210,2005-08-22T16:37:36Z,3811,332,2005-08-29T11:54:36Z,1,2020-02-15T06:59:46Z +15211,2005-08-22T16:40:21Z,3025,410,2005-08-28T13:33:21Z,2,2020-02-15T06:59:46Z +15212,2005-08-22T16:44:26Z,2182,562,2005-08-27T20:26:26Z,1,2020-02-15T06:59:46Z +15213,2005-08-22T16:49:02Z,2002,166,2005-08-31T20:22:02Z,1,2020-02-15T06:59:46Z +15214,2005-08-22T16:53:29Z,1500,574,2005-08-24T14:17:29Z,1,2020-02-15T06:59:46Z +15215,2005-08-22T16:55:26Z,1906,344,2005-08-25T20:19:26Z,1,2020-02-15T06:59:46Z +15216,2005-08-22T16:57:02Z,1633,166,2005-08-24T16:11:02Z,2,2020-02-15T06:59:46Z +15217,2005-08-22T16:58:31Z,91,90,2005-08-23T22:33:31Z,1,2020-02-15T06:59:46Z +15218,2005-08-22T16:59:05Z,10,139,2005-08-30T17:01:05Z,1,2020-02-15T06:59:46Z +15219,2005-08-22T17:00:31Z,3313,544,2005-08-31T20:16:31Z,1,2020-02-15T06:59:46Z +15220,2005-08-22T17:02:23Z,187,128,2005-08-28T21:02:23Z,1,2020-02-15T06:59:46Z +15221,2005-08-22T17:12:29Z,110,253,2005-08-24T20:46:29Z,2,2020-02-15T06:59:46Z +15222,2005-08-22T17:12:30Z,1360,390,2005-08-27T15:10:30Z,2,2020-02-15T06:59:46Z +15223,2005-08-22T17:13:39Z,2263,541,2005-08-27T11:17:39Z,2,2020-02-15T06:59:46Z +15224,2005-08-22T17:18:05Z,33,81,2005-08-29T14:35:05Z,2,2020-02-15T06:59:46Z +15225,2005-08-22T17:18:32Z,1646,224,2005-08-24T17:25:32Z,1,2020-02-15T06:59:46Z +15226,2005-08-22T17:20:17Z,318,54,2005-08-31T15:36:17Z,1,2020-02-15T06:59:46Z +15227,2005-08-22T17:22:41Z,2987,151,2005-08-23T20:59:41Z,1,2020-02-15T06:59:46Z +15228,2005-08-22T17:27:23Z,2485,48,2005-08-29T11:38:23Z,2,2020-02-15T06:59:46Z +15229,2005-08-22T17:30:25Z,320,63,2005-08-23T14:13:25Z,1,2020-02-15T06:59:46Z +15230,2005-08-22T17:31:41Z,2572,466,2005-08-25T21:57:41Z,2,2020-02-15T06:59:46Z +15231,2005-08-22T17:32:57Z,2980,187,2005-08-25T13:06:57Z,1,2020-02-15T06:59:46Z +15232,2005-08-22T17:37:02Z,61,5,2005-08-25T18:45:02Z,1,2020-02-15T06:59:46Z +15233,2005-08-22T17:41:53Z,4405,197,2005-08-24T12:59:53Z,2,2020-02-15T06:59:46Z +15234,2006-02-14T15:16:03Z,908,228,,2,2020-02-15T06:59:46Z +15235,2005-08-22T17:43:12Z,2726,416,2005-08-29T23:03:12Z,2,2020-02-15T06:59:46Z +15236,2005-08-22T17:44:27Z,4124,557,2005-08-24T23:25:27Z,1,2020-02-15T06:59:46Z +15237,2005-08-22T17:44:30Z,4485,148,2005-08-24T12:51:30Z,1,2020-02-15T06:59:46Z +15238,2005-08-22T17:46:12Z,403,70,2005-08-29T16:41:12Z,1,2020-02-15T06:59:46Z +15239,2005-08-22T17:46:17Z,1809,501,2005-08-26T19:03:17Z,1,2020-02-15T06:59:46Z +15240,2005-08-22T17:46:41Z,2014,11,2005-08-23T15:08:41Z,2,2020-02-15T06:59:46Z +15241,2005-08-22T17:47:40Z,832,337,2005-08-29T15:28:40Z,2,2020-02-15T06:59:46Z +15242,2005-08-22T17:48:10Z,2106,364,2005-08-27T23:32:10Z,1,2020-02-15T06:59:46Z +15243,2005-08-22T17:48:28Z,4408,308,2005-08-31T13:22:28Z,1,2020-02-15T06:59:46Z +15244,2005-08-22T17:48:42Z,1486,271,2005-08-28T13:17:42Z,2,2020-02-15T06:59:46Z +15245,2005-08-22T17:49:35Z,2545,298,2005-08-26T18:25:35Z,2,2020-02-15T06:59:46Z +15246,2005-08-22T17:50:49Z,3786,100,2005-08-30T22:21:49Z,1,2020-02-15T06:59:46Z +15247,2005-08-22T17:52:05Z,4572,250,2005-08-31T21:37:05Z,1,2020-02-15T06:59:46Z +15248,2005-08-22T17:53:06Z,977,20,2005-08-25T18:43:06Z,2,2020-02-15T06:59:46Z +15249,2005-08-22T17:58:27Z,121,444,2005-08-30T14:55:27Z,1,2020-02-15T06:59:46Z +15250,2005-08-22T18:03:11Z,2176,143,2005-08-27T12:19:11Z,2,2020-02-15T06:59:46Z +15251,2005-08-22T18:03:57Z,1994,285,2005-08-23T20:56:57Z,2,2020-02-15T06:59:46Z +15252,2005-08-22T18:04:22Z,1821,453,2005-08-25T17:14:22Z,2,2020-02-15T06:59:46Z +15253,2005-08-22T18:05:21Z,4143,333,2005-08-23T18:06:21Z,2,2020-02-15T06:59:46Z +15254,2005-08-22T18:13:07Z,3762,209,2005-08-24T21:55:07Z,1,2020-02-15T06:59:46Z +15255,2005-08-22T18:16:50Z,3415,84,2005-08-28T14:14:50Z,2,2020-02-15T06:59:46Z +15256,2005-08-22T18:20:07Z,1873,198,2005-08-28T12:57:07Z,1,2020-02-15T06:59:46Z +15257,2005-08-22T18:21:04Z,915,223,2005-08-30T20:13:04Z,1,2020-02-15T06:59:46Z +15258,2005-08-22T18:22:44Z,788,293,2005-08-25T16:54:44Z,1,2020-02-15T06:59:46Z +15259,2005-08-22T18:23:23Z,3261,488,2005-08-27T13:06:23Z,1,2020-02-15T06:59:46Z +15260,2005-08-22T18:24:16Z,3135,274,2005-08-24T21:26:16Z,1,2020-02-15T06:59:46Z +15261,2005-08-22T18:24:34Z,2200,140,2005-08-27T19:53:34Z,1,2020-02-15T06:59:46Z +15262,2005-08-22T18:25:21Z,2534,298,2005-08-28T22:19:21Z,1,2020-02-15T06:59:46Z +15263,2005-08-22T18:27:33Z,184,324,2005-08-30T14:05:33Z,1,2020-02-15T06:59:46Z +15264,2005-08-22T18:27:38Z,4459,440,2005-08-24T12:39:38Z,1,2020-02-15T06:59:46Z +15265,2005-08-22T18:35:59Z,1763,512,2005-08-28T21:18:59Z,2,2020-02-15T06:59:46Z +15266,2005-08-22T18:37:24Z,1870,124,2005-08-23T17:34:24Z,2,2020-02-15T06:59:46Z +15267,2005-08-22T18:37:48Z,2966,153,2005-08-24T00:22:48Z,1,2020-02-15T06:59:46Z +15268,2005-08-22T18:39:11Z,1245,301,2005-08-26T21:46:11Z,1,2020-02-15T06:59:46Z +15269,2005-08-22T18:39:44Z,524,275,2005-08-24T17:29:44Z,1,2020-02-15T06:59:46Z +15270,2005-08-22T18:48:42Z,4123,262,2005-08-28T15:38:42Z,2,2020-02-15T06:59:47Z +15271,2005-08-22T18:48:48Z,4232,59,2005-08-30T00:45:48Z,2,2020-02-15T06:59:47Z +15272,2005-08-22T18:49:40Z,1664,422,2005-08-28T21:22:40Z,1,2020-02-15T06:59:47Z +15273,2005-08-22T18:53:28Z,2558,422,2005-08-30T18:58:28Z,2,2020-02-15T06:59:47Z +15274,2005-08-22T18:55:52Z,3519,515,2005-08-23T20:02:52Z,1,2020-02-15T06:59:47Z +15275,2005-08-22T18:57:39Z,1522,597,2005-08-23T19:00:39Z,2,2020-02-15T06:59:47Z +15276,2005-08-22T18:59:01Z,4523,490,2005-08-23T19:49:01Z,2,2020-02-15T06:59:47Z +15277,2005-08-22T19:02:48Z,1780,217,2005-08-31T18:53:48Z,2,2020-02-15T06:59:47Z +15278,2005-08-22T19:06:47Z,2454,472,2005-08-25T01:00:47Z,2,2020-02-15T06:59:47Z +15279,2005-08-22T19:08:49Z,1088,363,2005-08-30T00:38:49Z,2,2020-02-15T06:59:47Z +15280,2005-08-22T19:09:52Z,3464,317,2005-08-28T00:39:52Z,1,2020-02-15T06:59:47Z +15281,2005-08-22T19:10:26Z,3992,543,2005-08-27T21:55:26Z,2,2020-02-15T06:59:47Z +15282,2006-02-14T15:16:03Z,1932,163,,1,2020-02-15T06:59:47Z +15283,2005-08-22T19:16:04Z,1688,219,2005-08-31T21:05:04Z,1,2020-02-15T06:59:47Z +15284,2005-08-22T19:17:08Z,2265,393,2005-08-29T13:28:08Z,2,2020-02-15T06:59:47Z +15285,2005-08-22T19:17:24Z,481,233,2005-08-25T00:25:24Z,1,2020-02-15T06:59:47Z +15286,2005-08-22T19:17:56Z,3731,74,2005-08-29T16:08:56Z,2,2020-02-15T06:59:47Z +15287,2005-08-22T19:19:37Z,308,535,2005-08-29T16:05:37Z,1,2020-02-15T06:59:47Z +15288,2005-08-22T19:23:58Z,1999,475,2005-08-26T23:28:58Z,1,2020-02-15T06:59:47Z +15289,2005-08-22T19:27:24Z,1026,513,2005-08-30T22:21:24Z,1,2020-02-15T06:59:47Z +15290,2005-08-22T19:28:02Z,270,404,2005-08-31T20:04:02Z,2,2020-02-15T06:59:47Z +15291,2005-08-22T19:28:04Z,1461,494,2005-08-26T15:07:04Z,1,2020-02-15T06:59:47Z +15292,2005-08-22T19:28:56Z,3072,337,2005-08-28T22:39:56Z,2,2020-02-15T06:59:47Z +15293,2006-02-14T15:16:03Z,1219,263,,2,2020-02-15T06:59:47Z +15294,2006-02-14T15:16:03Z,70,108,,1,2020-02-15T06:59:47Z +15295,2005-08-22T19:36:21Z,2164,186,2005-08-31T00:07:21Z,2,2020-02-15T06:59:47Z +15296,2005-08-22T19:37:20Z,2715,55,2005-08-24T15:16:20Z,1,2020-02-15T06:59:47Z +15297,2006-02-14T15:16:03Z,3192,327,,2,2020-02-15T06:59:47Z +15298,2005-08-22T19:41:37Z,1446,1,2005-08-28T22:49:37Z,1,2020-02-15T06:59:47Z +15299,2005-08-22T19:42:57Z,767,381,2005-08-23T15:29:57Z,2,2020-02-15T06:59:47Z +15300,2005-08-22T19:44:00Z,2319,399,2005-08-25T22:49:00Z,2,2020-02-15T06:59:47Z +15301,2005-08-22T19:44:16Z,619,454,2005-08-26T22:57:16Z,2,2020-02-15T06:59:47Z +15302,2005-08-22T19:44:53Z,188,320,2005-08-24T18:13:53Z,2,2020-02-15T06:59:47Z +15303,2005-08-22T19:44:59Z,1672,390,2005-08-30T21:59:59Z,1,2020-02-15T06:59:47Z +15304,2005-08-22T19:45:57Z,4332,112,2005-08-28T00:21:57Z,2,2020-02-15T06:59:47Z +15305,2005-08-22T19:46:05Z,671,529,2005-08-27T19:11:05Z,2,2020-02-15T06:59:47Z +15306,2005-08-22T19:46:36Z,521,340,2005-08-27T14:09:36Z,1,2020-02-15T06:59:47Z +15307,2005-08-22T19:54:26Z,4525,598,2005-08-29T01:38:26Z,2,2020-02-15T06:59:47Z +15308,2005-08-22T19:54:31Z,987,329,2005-08-26T23:09:31Z,1,2020-02-15T06:59:47Z +15309,2005-08-22T19:54:52Z,2743,141,2005-08-24T23:00:52Z,2,2020-02-15T06:59:47Z +15310,2005-08-22T19:56:41Z,2546,360,2005-08-24T16:32:41Z,2,2020-02-15T06:59:47Z +15311,2005-08-22T19:56:52Z,3612,176,2005-08-31T20:15:52Z,2,2020-02-15T06:59:47Z +15312,2005-08-22T19:58:15Z,2509,280,2005-08-25T19:21:15Z,2,2020-02-15T06:59:47Z +15313,2005-08-22T19:59:42Z,2587,333,2005-08-24T15:03:42Z,2,2020-02-15T06:59:47Z +15314,2006-02-14T15:16:03Z,2754,412,,1,2020-02-15T06:59:47Z +15315,2005-08-22T20:03:46Z,312,1,2005-08-30T01:51:46Z,2,2020-02-15T06:59:47Z +15316,2005-08-22T20:07:03Z,1830,422,2005-08-27T18:45:03Z,1,2020-02-15T06:59:47Z +15317,2005-08-22T20:14:13Z,2325,512,2005-08-29T18:32:13Z,1,2020-02-15T06:59:47Z +15318,2005-08-22T20:15:16Z,1738,60,2005-08-25T14:17:16Z,1,2020-02-15T06:59:47Z +15319,2005-08-22T20:17:17Z,3041,188,2005-08-25T01:06:17Z,2,2020-02-15T06:59:47Z +15320,2005-08-22T20:17:49Z,648,407,2005-08-28T17:31:49Z,1,2020-02-15T06:59:47Z +15321,2005-08-22T20:20:04Z,4152,384,2005-08-24T23:26:04Z,2,2020-02-15T06:59:47Z +15322,2005-08-22T20:20:30Z,3553,263,2005-08-25T01:26:30Z,2,2020-02-15T06:59:47Z +15323,2005-08-22T20:22:40Z,1153,178,2005-08-26T00:35:40Z,1,2020-02-15T06:59:47Z +15324,2005-08-22T20:23:13Z,161,93,2005-08-29T18:23:13Z,1,2020-02-15T06:59:47Z +15325,2005-08-22T20:27:38Z,3549,74,2005-08-23T15:24:38Z,1,2020-02-15T06:59:47Z +15326,2006-02-14T15:16:03Z,3320,58,,1,2020-02-15T06:59:47Z +15327,2005-08-22T20:31:24Z,1018,450,2005-08-30T23:52:24Z,1,2020-02-15T06:59:47Z +15328,2005-08-22T20:31:38Z,4546,274,2005-08-29T20:17:38Z,1,2020-02-15T06:59:47Z +15329,2005-08-22T20:32:39Z,1900,521,2005-08-23T17:15:39Z,1,2020-02-15T06:59:47Z +15330,2005-08-22T20:35:30Z,689,427,2005-08-30T21:54:30Z,1,2020-02-15T06:59:47Z +15331,2005-08-22T20:37:57Z,146,147,2005-08-25T21:56:57Z,1,2020-02-15T06:59:47Z +15332,2005-08-22T20:41:53Z,3368,162,2005-08-24T01:45:53Z,1,2020-02-15T06:59:47Z +15333,2005-08-22T20:44:06Z,1839,142,2005-08-29T22:34:06Z,2,2020-02-15T06:59:47Z +15334,2005-08-22T20:44:35Z,3882,407,2005-08-29T23:03:35Z,2,2020-02-15T06:59:47Z +15335,2005-08-22T20:44:55Z,1593,363,2005-08-28T21:43:55Z,1,2020-02-15T06:59:47Z +15336,2005-08-22T20:47:48Z,490,461,2005-08-31T18:17:48Z,2,2020-02-15T06:59:47Z +15337,2005-08-22T20:49:51Z,280,237,2005-08-26T23:27:51Z,1,2020-02-15T06:59:47Z +15338,2005-08-22T20:51:24Z,502,13,2005-08-24T23:41:24Z,2,2020-02-15T06:59:47Z +15339,2005-08-22T20:52:12Z,1660,331,2005-08-26T00:36:12Z,2,2020-02-15T06:59:47Z +15340,2005-08-22T20:55:56Z,3653,313,2005-08-27T18:52:56Z,1,2020-02-15T06:59:47Z +15341,2005-08-22T20:56:31Z,3359,91,2005-08-30T17:25:31Z,1,2020-02-15T06:59:47Z +15342,2005-08-22T20:56:41Z,3287,459,2005-08-26T22:51:41Z,2,2020-02-15T06:59:47Z +15343,2005-08-22T21:01:25Z,2589,538,2005-08-28T16:15:25Z,1,2020-02-15T06:59:47Z +15344,2005-08-22T21:01:48Z,3560,193,2005-08-27T15:47:48Z,1,2020-02-15T06:59:47Z +15345,2005-08-22T21:05:50Z,3481,277,2005-08-26T20:30:50Z,1,2020-02-15T06:59:47Z +15346,2005-08-22T21:06:00Z,3525,266,2005-08-28T22:08:00Z,1,2020-02-15T06:59:47Z +15347,2005-08-22T21:12:19Z,3764,519,2005-08-24T20:12:19Z,1,2020-02-15T06:59:47Z +15348,2005-08-22T21:13:46Z,3846,587,2005-08-24T17:06:46Z,1,2020-02-15T06:59:47Z +15349,2005-08-22T21:13:51Z,4055,587,2005-08-23T20:55:51Z,1,2020-02-15T06:59:47Z +15350,2005-08-22T21:15:29Z,1170,488,2005-08-24T02:56:29Z,1,2020-02-15T06:59:47Z +15351,2005-08-22T21:15:46Z,3260,154,2005-08-23T17:38:46Z,1,2020-02-15T06:59:47Z +15352,2005-08-22T21:16:54Z,16,560,2005-08-31T00:38:54Z,2,2020-02-15T06:59:47Z +15353,2005-08-22T21:18:08Z,3470,368,2005-08-25T20:29:08Z,2,2020-02-15T06:59:47Z +15354,2005-08-22T21:18:59Z,4212,412,2005-08-27T20:12:59Z,2,2020-02-15T06:59:47Z +15355,2005-08-22T21:19:24Z,3477,493,2005-08-28T20:36:24Z,2,2020-02-15T06:59:47Z +15356,2005-08-22T21:24:19Z,4507,539,2005-08-25T22:32:19Z,2,2020-02-15T06:59:47Z +15357,2005-08-22T21:28:59Z,727,24,2005-08-25T17:15:59Z,1,2020-02-15T06:59:47Z +15358,2005-08-22T21:29:14Z,822,448,2005-08-31T00:10:14Z,2,2020-02-15T06:59:47Z +15359,2005-08-22T21:34:00Z,4505,77,2005-08-29T18:59:00Z,1,2020-02-15T06:59:47Z +15360,2005-08-22T21:36:51Z,1950,531,2005-08-24T16:46:51Z,1,2020-02-15T06:59:47Z +15361,2005-08-22T21:39:45Z,1407,380,2005-08-23T17:32:45Z,2,2020-02-15T06:59:47Z +15362,2005-08-22T21:40:20Z,1023,497,2005-08-29T15:55:20Z,1,2020-02-15T06:59:47Z +15363,2005-08-22T21:41:40Z,2326,480,2005-08-23T21:40:40Z,1,2020-02-15T06:59:47Z +15364,2005-08-22T21:41:41Z,4184,204,2005-08-28T00:49:41Z,1,2020-02-15T06:59:47Z +15365,2005-08-22T21:42:17Z,3382,327,2005-09-01T03:14:17Z,2,2020-02-15T06:59:47Z +15366,2005-08-22T21:45:57Z,1453,374,2005-08-30T16:35:57Z,1,2020-02-15T06:59:47Z +15367,2005-08-22T21:47:53Z,160,355,2005-08-27T17:54:53Z,2,2020-02-15T06:59:47Z +15368,2005-08-22T21:57:15Z,1130,370,2005-08-29T16:28:15Z,1,2020-02-15T06:59:47Z +15369,2005-08-22T21:58:06Z,881,121,2005-08-26T00:27:06Z,2,2020-02-15T06:59:47Z +15370,2005-08-22T21:59:29Z,67,10,2005-08-27T16:32:29Z,1,2020-02-15T06:59:47Z +15371,2006-02-14T15:16:03Z,3672,94,,2,2020-02-15T06:59:47Z +15372,2005-08-22T21:59:51Z,3876,273,2005-08-23T17:01:51Z,1,2020-02-15T06:59:47Z +15373,2005-08-22T22:08:11Z,4439,14,2005-08-24T01:05:11Z,2,2020-02-15T06:59:47Z +15374,2005-08-22T22:09:09Z,4275,8,2005-08-31T01:10:09Z,1,2020-02-15T06:59:47Z +15375,2005-08-22T22:12:02Z,3864,191,2005-08-24T00:50:02Z,2,2020-02-15T06:59:47Z +15376,2005-08-22T22:21:35Z,2963,390,2005-08-28T20:56:35Z,1,2020-02-15T06:59:47Z +15377,2005-08-22T22:22:33Z,3405,551,2005-08-29T18:41:33Z,1,2020-02-15T06:59:47Z +15378,2005-08-22T22:25:17Z,1483,340,2005-08-30T17:04:17Z,1,2020-02-15T06:59:47Z +15379,2005-08-22T22:26:13Z,1899,148,2005-08-31T18:19:13Z,1,2020-02-15T06:59:47Z +15380,2005-08-22T22:28:15Z,3642,423,2005-08-28T23:21:15Z,1,2020-02-15T06:59:47Z +15381,2005-08-22T22:28:36Z,845,110,2005-08-24T19:26:36Z,2,2020-02-15T06:59:47Z +15382,2005-08-22T22:30:50Z,333,376,2005-08-24T04:07:50Z,2,2020-02-15T06:59:47Z +15383,2005-08-22T22:31:20Z,686,405,2005-08-28T17:43:20Z,1,2020-02-15T06:59:47Z +15384,2005-08-22T22:34:44Z,3208,26,2005-08-23T23:25:44Z,2,2020-02-15T06:59:47Z +15385,2005-08-22T22:37:34Z,140,434,2005-08-26T00:36:34Z,2,2020-02-15T06:59:47Z +15386,2005-08-22T22:41:14Z,3056,327,2005-08-29T22:29:14Z,1,2020-02-15T06:59:47Z +15387,2005-08-22T22:49:13Z,3879,323,2005-08-29T01:49:13Z,2,2020-02-15T06:59:47Z +15388,2005-08-22T22:49:23Z,3995,50,2005-09-01T03:50:23Z,2,2020-02-15T06:59:47Z +15389,2005-08-22T22:51:13Z,2077,231,2005-08-28T23:46:13Z,1,2020-02-15T06:59:47Z +15390,2005-08-22T22:57:25Z,462,551,2005-08-31T18:06:25Z,1,2020-02-15T06:59:47Z +15391,2005-08-22T23:01:45Z,3918,482,2005-08-29T02:59:45Z,2,2020-02-15T06:59:47Z +15392,2005-08-22T23:02:15Z,538,410,2005-09-01T01:14:15Z,2,2020-02-15T06:59:47Z +15393,2005-08-22T23:04:09Z,2924,443,2005-08-27T02:23:09Z,2,2020-02-15T06:59:47Z +15394,2005-08-22T23:04:21Z,3455,507,2005-08-25T20:53:21Z,2,2020-02-15T06:59:47Z +15395,2005-08-22T23:06:25Z,2880,526,2005-08-30T19:18:25Z,1,2020-02-15T06:59:47Z +15396,2005-08-22T23:07:57Z,4050,319,2005-08-28T19:39:57Z,2,2020-02-15T06:59:47Z +15397,2005-08-22T23:08:46Z,1482,261,2005-08-25T20:58:46Z,1,2020-02-15T06:59:47Z +15398,2005-08-22T23:10:49Z,4451,109,2005-08-28T00:49:49Z,2,2020-02-15T06:59:47Z +15399,2005-08-22T23:11:59Z,3858,379,2005-08-26T22:16:59Z,2,2020-02-15T06:59:47Z +15400,2005-08-22T23:13:03Z,2664,473,2005-08-28T18:34:03Z,1,2020-02-15T06:59:47Z +15401,2005-08-22T23:13:10Z,1721,103,2005-09-01T03:44:10Z,1,2020-02-15T06:59:47Z +15402,2005-08-22T23:17:41Z,1575,293,2005-08-30T20:07:41Z,2,2020-02-15T06:59:47Z +15403,2005-08-22T23:18:10Z,4315,581,2005-08-23T18:08:10Z,2,2020-02-15T06:59:47Z +15404,2005-08-22T23:19:44Z,3557,211,2005-08-30T19:58:44Z,2,2020-02-15T06:59:47Z +15405,2005-08-22T23:20:41Z,3263,596,2005-08-25T23:53:41Z,1,2020-02-15T06:59:47Z +15406,2005-08-22T23:21:22Z,400,227,2005-08-28T22:21:22Z,1,2020-02-15T06:59:47Z +15407,2006-02-14T15:16:03Z,3330,42,,2,2020-02-15T06:59:47Z +15408,2005-08-22T23:26:32Z,165,156,2005-08-30T20:22:32Z,1,2020-02-15T06:59:47Z +15409,2005-08-22T23:26:32Z,560,188,2005-08-24T22:44:32Z,1,2020-02-15T06:59:47Z +15410,2005-08-22T23:27:43Z,2052,403,2005-08-29T05:12:43Z,2,2020-02-15T06:59:47Z +15411,2005-08-22T23:35:41Z,4423,461,2005-08-26T00:51:41Z,1,2020-02-15T06:59:47Z +15412,2005-08-22T23:37:11Z,1267,199,2005-08-28T23:26:11Z,2,2020-02-15T06:59:47Z +15413,2005-08-22T23:38:01Z,2494,476,2005-08-23T19:27:01Z,2,2020-02-15T06:59:47Z +15414,2005-08-22T23:43:54Z,718,532,2005-08-30T18:26:54Z,1,2020-02-15T06:59:47Z +15415,2005-08-22T23:48:56Z,4176,204,2005-09-01T02:05:56Z,1,2020-02-15T06:59:47Z +15416,2005-08-22T23:51:23Z,1167,383,2005-08-29T20:03:23Z,1,2020-02-15T06:59:47Z +15417,2005-08-22T23:54:04Z,1826,305,2005-08-26T22:25:04Z,1,2020-02-15T06:59:47Z +15418,2005-08-22T23:54:14Z,808,205,2005-08-28T04:23:14Z,2,2020-02-15T06:59:47Z +15419,2005-08-22T23:54:36Z,1120,450,2005-08-25T00:52:36Z,1,2020-02-15T06:59:47Z +15420,2005-08-22T23:55:51Z,1396,161,2005-08-31T20:09:51Z,2,2020-02-15T06:59:47Z +15421,2005-08-22T23:56:37Z,3,541,2005-08-25T18:58:37Z,2,2020-02-15T06:59:47Z +15422,2005-08-22T23:58:09Z,2601,309,2005-08-30T19:03:09Z,2,2020-02-15T06:59:47Z +15423,2006-02-14T15:16:03Z,1786,596,,1,2020-02-15T06:59:47Z +15424,2005-08-23T00:03:01Z,3452,138,2005-08-27T23:27:01Z,2,2020-02-15T06:59:47Z +15425,2005-08-23T00:05:57Z,551,259,2005-09-01T05:08:57Z,1,2020-02-15T06:59:47Z +15426,2005-08-23T00:07:19Z,3280,347,2005-08-26T23:19:19Z,1,2020-02-15T06:59:47Z +15427,2005-08-23T00:07:53Z,2775,448,2005-09-01T02:55:53Z,2,2020-02-15T06:59:47Z +15428,2005-08-23T00:11:52Z,4379,402,2005-08-24T02:35:52Z,1,2020-02-15T06:59:47Z +15429,2005-08-23T00:20:31Z,740,241,2005-08-23T20:22:31Z,1,2020-02-15T06:59:47Z +15430,2006-02-14T15:16:03Z,4353,282,,1,2020-02-15T06:59:47Z +15431,2005-08-23T00:26:47Z,3251,550,2005-08-31T23:26:47Z,2,2020-02-15T06:59:47Z +15432,2005-08-23T00:26:52Z,1896,117,2005-08-27T06:11:52Z,1,2020-02-15T06:59:47Z +15433,2005-08-23T00:27:18Z,155,198,2005-08-26T21:36:18Z,1,2020-02-15T06:59:47Z +15434,2005-08-23T00:28:16Z,4378,518,2005-08-26T04:27:16Z,2,2020-02-15T06:59:47Z +15435,2005-08-23T00:28:19Z,2103,468,2005-08-26T00:44:19Z,2,2020-02-15T06:59:47Z +15436,2005-08-23T00:30:26Z,1527,505,2005-08-28T06:29:26Z,1,2020-02-15T06:59:47Z +15437,2005-08-23T00:31:09Z,4236,368,2005-08-30T06:17:09Z,2,2020-02-15T06:59:47Z +15438,2005-08-23T00:31:57Z,2030,46,2005-08-26T20:02:57Z,1,2020-02-15T06:59:47Z +15439,2005-08-23T00:34:28Z,3848,136,2005-08-27T01:07:28Z,1,2020-02-15T06:59:47Z +15440,2005-08-23T00:37:21Z,2254,559,2005-08-24T23:24:21Z,1,2020-02-15T06:59:47Z +15441,2006-02-14T15:16:03Z,258,422,,2,2020-02-15T06:59:47Z +15442,2005-08-23T00:42:49Z,1452,42,2005-08-27T00:35:49Z,1,2020-02-15T06:59:47Z +15443,2005-08-23T00:44:15Z,742,598,2005-09-01T05:33:15Z,2,2020-02-15T06:59:47Z +15444,2005-08-23T00:46:52Z,959,153,2005-08-29T20:37:52Z,2,2020-02-15T06:59:47Z +15445,2005-08-23T00:48:29Z,196,28,2005-08-28T00:33:29Z,1,2020-02-15T06:59:47Z +15446,2005-08-23T00:49:24Z,503,379,2005-08-26T02:09:24Z,2,2020-02-15T06:59:47Z +15447,2005-08-23T00:53:57Z,4090,331,2005-08-29T06:19:57Z,2,2020-02-15T06:59:47Z +15448,2005-08-23T00:55:24Z,2903,490,2005-08-25T02:20:24Z,1,2020-02-15T06:59:47Z +15449,2005-08-23T00:55:43Z,2856,461,2005-08-28T03:41:43Z,1,2020-02-15T06:59:47Z +15450,2005-08-23T00:56:01Z,1102,322,2005-08-24T01:00:01Z,2,2020-02-15T06:59:47Z +15451,2005-08-23T00:56:27Z,231,514,2005-08-24T00:15:27Z,2,2020-02-15T06:59:47Z +15452,2005-08-23T00:57:12Z,717,115,2005-08-28T00:19:12Z,1,2020-02-15T06:59:47Z +15453,2005-08-23T01:01:01Z,2,359,2005-08-30T20:08:01Z,1,2020-02-15T06:59:47Z +15454,2006-02-14T15:16:03Z,2946,142,,2,2020-02-15T06:59:47Z +15455,2005-08-23T01:05:00Z,3991,238,2005-08-26T22:56:00Z,1,2020-02-15T06:59:47Z +15456,2005-08-23T01:07:01Z,2451,262,2005-08-24T23:28:01Z,2,2020-02-15T06:59:47Z +15457,2005-08-23T01:07:37Z,4539,306,2005-08-26T19:46:37Z,1,2020-02-15T06:59:47Z +15458,2006-02-14T15:16:03Z,25,590,,2,2020-02-15T06:59:47Z +15459,2005-08-23T01:09:48Z,2058,346,2005-08-24T04:52:48Z,1,2020-02-15T06:59:47Z +15460,2005-08-23T01:10:42Z,2907,20,2005-08-28T20:49:42Z,2,2020-02-15T06:59:47Z +15461,2005-08-23T01:13:52Z,4542,103,2005-08-30T00:44:52Z,1,2020-02-15T06:59:47Z +15462,2005-08-23T01:14:01Z,3267,389,2005-08-29T19:52:01Z,1,2020-02-15T06:59:47Z +15463,2005-08-23T01:15:07Z,863,127,2005-08-29T06:50:07Z,1,2020-02-15T06:59:47Z +15464,2005-08-23T01:15:18Z,3235,62,2005-08-29T02:58:18Z,2,2020-02-15T06:59:47Z +15465,2005-08-23T01:16:33Z,362,520,2005-08-28T20:08:33Z,2,2020-02-15T06:59:47Z +15466,2005-08-23T01:16:55Z,571,418,2005-08-29T22:57:55Z,1,2020-02-15T06:59:47Z +15467,2005-08-23T01:22:12Z,3658,103,2005-08-29T23:42:12Z,2,2020-02-15T06:59:47Z +15468,2005-08-23T01:25:30Z,2440,399,2005-08-28T01:40:30Z,2,2020-02-15T06:59:47Z +15469,2005-08-23T01:29:59Z,1939,597,2005-08-27T04:02:59Z,1,2020-02-15T06:59:47Z +15470,2005-08-23T01:35:12Z,3009,416,2005-09-01T05:33:12Z,1,2020-02-15T06:59:47Z +15471,2005-08-23T01:38:48Z,2591,139,2005-08-31T19:47:48Z,1,2020-02-15T06:59:47Z +15472,2005-08-23T01:39:05Z,4293,226,2005-08-25T04:43:05Z,1,2020-02-15T06:59:47Z +15473,2005-08-23T01:39:10Z,356,259,2005-08-25T03:48:10Z,1,2020-02-15T06:59:47Z +15474,2005-08-23T01:39:10Z,3015,188,2005-08-23T21:46:10Z,2,2020-02-15T06:59:47Z +15475,2005-08-23T01:44:43Z,4503,562,2005-08-23T23:53:43Z,2,2020-02-15T06:59:47Z +15476,2005-08-23T01:45:07Z,2478,433,2005-08-26T21:07:07Z,2,2020-02-15T06:59:47Z +15477,2005-08-23T01:46:35Z,2406,142,2005-08-28T22:12:35Z,1,2020-02-15T06:59:47Z +15478,2005-08-23T01:50:31Z,4563,167,2005-08-27T21:40:31Z,2,2020-02-15T06:59:47Z +15479,2005-08-23T01:50:53Z,4182,149,2005-08-29T00:53:53Z,1,2020-02-15T06:59:47Z +15480,2005-08-23T01:57:20Z,3298,577,2005-08-26T04:43:20Z,2,2020-02-15T06:59:47Z +15481,2005-08-23T01:59:14Z,3262,414,2005-08-27T04:38:14Z,1,2020-02-15T06:59:47Z +15482,2005-08-23T02:01:20Z,3923,181,2005-08-24T03:25:20Z,2,2020-02-15T06:59:47Z +15483,2005-08-23T02:02:53Z,2970,173,2005-08-26T04:13:53Z,1,2020-02-15T06:59:47Z +15484,2005-08-23T02:04:49Z,642,342,2005-08-24T05:46:49Z,1,2020-02-15T06:59:47Z +15485,2005-08-23T02:04:57Z,281,114,2005-08-28T07:05:57Z,2,2020-02-15T06:59:47Z +15486,2005-08-23T02:05:20Z,1666,502,2005-08-29T07:52:20Z,2,2020-02-15T06:59:47Z +15487,2005-08-23T02:05:51Z,2636,469,2005-08-25T04:45:51Z,1,2020-02-15T06:59:47Z +15488,2005-08-23T02:06:01Z,4535,385,2005-08-29T21:35:01Z,2,2020-02-15T06:59:47Z +15489,2005-08-23T02:06:41Z,764,285,2005-08-25T06:50:41Z,1,2020-02-15T06:59:47Z +15490,2005-08-23T02:08:18Z,3922,493,2005-08-30T06:15:18Z,1,2020-02-15T06:59:47Z +15491,2005-08-23T02:08:40Z,2059,28,2005-08-23T20:23:40Z,2,2020-02-15T06:59:47Z +15492,2005-08-23T02:13:46Z,1298,520,2005-08-26T21:53:46Z,2,2020-02-15T06:59:47Z +15493,2005-08-23T02:20:53Z,3521,308,2005-08-25T23:02:53Z,1,2020-02-15T06:59:47Z +15494,2005-08-23T02:25:09Z,2968,455,2005-08-27T00:18:09Z,1,2020-02-15T06:59:47Z +15495,2005-08-23T02:26:10Z,4310,193,2005-08-30T01:07:10Z,2,2020-02-15T06:59:47Z +15496,2005-08-23T02:30:23Z,1863,275,2005-08-31T03:31:23Z,2,2020-02-15T06:59:47Z +15497,2006-02-14T15:16:03Z,363,107,,1,2020-02-15T06:59:47Z +15498,2005-08-23T02:33:27Z,1583,83,2005-08-23T22:30:27Z,1,2020-02-15T06:59:47Z +15499,2005-08-23T02:37:19Z,630,488,2005-08-23T20:57:19Z,1,2020-02-15T06:59:47Z +15500,2005-08-23T02:39:37Z,886,74,2005-08-27T06:42:37Z,1,2020-02-15T06:59:47Z +15501,2005-08-23T02:39:56Z,4468,138,2005-08-25T04:39:56Z,1,2020-02-15T06:59:47Z +15502,2005-08-23T02:40:04Z,3219,433,2005-08-31T00:36:04Z,2,2020-02-15T06:59:47Z +15503,2005-08-23T02:44:49Z,4519,582,2005-08-27T06:33:49Z,2,2020-02-15T06:59:47Z +15504,2005-08-23T02:45:21Z,1967,315,2005-09-01T03:24:21Z,2,2020-02-15T06:59:47Z +15505,2005-08-23T02:46:13Z,1144,375,2005-08-26T23:34:13Z,2,2020-02-15T06:59:47Z +15506,2005-08-23T02:48:24Z,1914,553,2005-08-28T04:10:24Z,1,2020-02-15T06:59:47Z +15507,2005-08-23T02:48:26Z,3130,563,2005-08-27T01:32:26Z,1,2020-02-15T06:59:47Z +15508,2005-08-23T02:49:04Z,4035,293,2005-08-29T00:58:04Z,1,2020-02-15T06:59:47Z +15509,2005-08-23T02:51:24Z,1291,6,2005-08-31T06:21:24Z,2,2020-02-15T06:59:47Z +15510,2005-08-23T02:51:27Z,3239,209,2005-09-01T02:44:27Z,2,2020-02-15T06:59:47Z +15511,2005-08-23T02:55:42Z,3327,303,2005-08-31T03:14:42Z,2,2020-02-15T06:59:47Z +15512,2005-08-23T02:57:30Z,4336,25,2005-08-25T01:47:30Z,2,2020-02-15T06:59:47Z +15513,2005-08-23T03:01:56Z,3779,147,2005-08-24T23:46:56Z,2,2020-02-15T06:59:47Z +15514,2005-08-23T03:03:40Z,2824,366,2005-08-24T01:06:40Z,1,2020-02-15T06:59:47Z +15515,2005-08-23T03:03:53Z,3940,307,2005-08-25T08:27:53Z,2,2020-02-15T06:59:47Z +15516,2005-08-23T03:12:54Z,219,82,2005-08-30T04:02:54Z,1,2020-02-15T06:59:47Z +15517,2005-08-23T03:13:01Z,2221,187,2005-08-25T21:14:01Z,2,2020-02-15T06:59:47Z +15518,2005-08-23T03:19:34Z,3522,410,2005-08-24T02:55:34Z,1,2020-02-15T06:59:47Z +15519,2005-08-23T03:23:32Z,542,443,2005-08-25T03:48:32Z,1,2020-02-15T06:59:47Z +15520,2005-08-23T03:30:45Z,1792,163,2005-09-01T00:20:45Z,1,2020-02-15T06:59:47Z +15521,2005-08-23T03:30:51Z,134,331,2005-08-28T22:09:51Z,1,2020-02-15T06:59:47Z +15522,2005-08-23T03:32:31Z,2396,468,2005-08-30T02:17:31Z,2,2020-02-15T06:59:47Z +15523,2005-08-23T03:32:36Z,2570,432,2005-08-26T22:08:36Z,2,2020-02-15T06:59:47Z +15524,2005-08-23T03:36:26Z,2886,68,2005-08-26T06:28:26Z,2,2020-02-15T06:59:47Z +15525,2005-08-23T03:43:32Z,3509,123,2005-08-25T07:31:32Z,2,2020-02-15T06:59:47Z +15526,2005-08-23T03:44:30Z,2892,516,2005-08-30T08:19:30Z,1,2020-02-15T06:59:47Z +15527,2005-08-23T03:44:51Z,88,393,2005-08-25T03:09:51Z,1,2020-02-15T06:59:47Z +15528,2005-08-23T03:45:40Z,3033,114,2005-08-25T01:16:40Z,1,2020-02-15T06:59:47Z +15529,2005-08-23T03:46:47Z,4015,19,2005-08-24T00:59:47Z,1,2020-02-15T06:59:47Z +15530,2005-08-23T03:50:48Z,154,167,2005-08-28T22:17:48Z,2,2020-02-15T06:59:47Z +15531,2005-08-23T03:52:36Z,2410,355,2005-08-25T23:21:36Z,1,2020-02-15T06:59:47Z +15532,2006-02-14T15:16:03Z,1061,23,,1,2020-02-15T06:59:47Z +15533,2005-08-23T03:54:39Z,1895,400,2005-08-26T08:27:39Z,2,2020-02-15T06:59:47Z +15534,2005-08-23T03:55:54Z,544,169,2005-08-24T03:54:54Z,1,2020-02-15T06:59:47Z +15535,2005-08-23T03:58:02Z,2371,346,2005-08-25T05:06:02Z,2,2020-02-15T06:59:47Z +15536,2005-08-23T03:58:28Z,4004,98,2005-08-31T03:28:28Z,2,2020-02-15T06:59:47Z +15537,2005-08-23T04:00:30Z,2958,137,2005-08-24T01:45:30Z,2,2020-02-15T06:59:47Z +15538,2005-08-23T04:07:37Z,4226,211,2005-08-28T07:37:37Z,1,2020-02-15T06:59:47Z +15539,2005-08-23T04:09:03Z,2853,582,2005-08-26T04:01:03Z,1,2020-02-15T06:59:47Z +15540,2005-08-23T04:12:52Z,1696,197,2005-08-31T04:25:52Z,1,2020-02-15T06:59:47Z +15541,2005-08-23T04:13:53Z,2762,148,2005-08-29T05:51:53Z,1,2020-02-15T06:59:47Z +15542,2006-02-14T15:16:03Z,21,111,,1,2020-02-15T06:59:47Z +15543,2005-08-23T04:15:41Z,3836,282,2005-09-01T05:09:41Z,2,2020-02-15T06:59:47Z +15544,2005-08-23T04:17:56Z,1918,30,2005-09-01T00:43:56Z,2,2020-02-15T06:59:47Z +15545,2005-08-23T04:20:16Z,843,513,2005-08-29T08:22:16Z,1,2020-02-15T06:59:47Z +15546,2005-08-23T04:20:38Z,2087,223,2005-09-01T09:57:38Z,2,2020-02-15T06:59:47Z +15547,2005-08-23T04:25:50Z,1488,69,2005-08-26T00:57:50Z,1,2020-02-15T06:59:47Z +15548,2005-08-23T04:26:20Z,2350,334,2005-08-28T01:27:20Z,1,2020-02-15T06:59:47Z +15549,2005-08-23T04:27:06Z,369,170,2005-09-01T06:07:06Z,1,2020-02-15T06:59:47Z +15550,2005-08-23T04:27:54Z,1375,465,2005-08-29T01:29:54Z,1,2020-02-15T06:59:47Z +15551,2005-08-23T04:28:25Z,3570,345,2005-08-26T07:19:25Z,1,2020-02-15T06:59:47Z +15552,2005-08-23T04:33:23Z,4347,527,2005-09-01T10:25:23Z,2,2020-02-15T06:59:47Z +15553,2005-08-23T04:33:39Z,1659,232,2005-08-25T07:53:39Z,2,2020-02-15T06:59:47Z +15554,2005-08-23T04:48:12Z,198,280,2005-08-29T05:11:12Z,1,2020-02-15T06:59:47Z +15555,2005-08-23T04:51:52Z,1869,347,2005-08-24T01:01:52Z,1,2020-02-15T06:59:47Z +15556,2005-08-23T04:52:16Z,3683,108,2005-09-01T02:05:16Z,2,2020-02-15T06:59:47Z +15557,2005-08-23T04:52:17Z,3641,444,2005-08-30T02:15:17Z,2,2020-02-15T06:59:47Z +15558,2005-08-23T04:52:22Z,638,474,2005-09-01T02:26:22Z,1,2020-02-15T06:59:47Z +15559,2005-08-23T04:55:05Z,1773,517,2005-08-30T09:01:05Z,2,2020-02-15T06:59:47Z +15560,2005-08-23T05:01:13Z,3616,107,2005-09-01T05:02:13Z,1,2020-02-15T06:59:47Z +15561,2005-08-23T05:02:31Z,68,469,2005-09-01T02:51:31Z,1,2020-02-15T06:59:47Z +15562,2005-08-23T05:04:33Z,4238,149,2005-08-27T09:58:33Z,1,2020-02-15T06:59:47Z +15563,2005-08-23T05:08:58Z,170,372,2005-08-24T04:24:58Z,1,2020-02-15T06:59:47Z +15564,2005-08-23T05:10:42Z,1268,353,2005-08-30T03:17:42Z,1,2020-02-15T06:59:47Z +15565,2005-08-23T05:13:09Z,71,546,2005-08-30T08:58:09Z,2,2020-02-15T06:59:47Z +15566,2005-08-23T05:17:23Z,4344,76,2005-09-01T08:09:23Z,2,2020-02-15T06:59:47Z +15567,2005-08-23T05:20:36Z,2506,54,2005-08-24T10:09:36Z,2,2020-02-15T06:59:47Z +15568,2005-08-23T05:24:09Z,988,556,2005-08-27T08:57:09Z,2,2020-02-15T06:59:47Z +15569,2005-08-23T05:24:29Z,1071,313,2005-08-30T08:23:29Z,2,2020-02-15T06:59:47Z +15570,2005-08-23T05:24:55Z,4014,557,2005-08-31T07:06:55Z,2,2020-02-15T06:59:47Z +15571,2005-08-23T05:26:30Z,716,57,2005-08-29T00:54:30Z,2,2020-02-15T06:59:47Z +15572,2005-08-23T05:28:01Z,2816,506,2005-08-27T00:14:01Z,2,2020-02-15T06:59:47Z +15573,2005-08-23T05:28:36Z,3133,561,2005-08-27T05:37:36Z,2,2020-02-15T06:59:47Z +15574,2005-08-23T05:29:32Z,3253,130,2005-09-01T01:25:32Z,2,2020-02-15T06:59:47Z +15575,2005-08-23T05:30:19Z,3916,218,2005-08-27T05:19:19Z,2,2020-02-15T06:59:47Z +15576,2005-08-23T05:32:03Z,3257,595,2005-08-26T02:31:03Z,1,2020-02-15T06:59:47Z +15577,2006-02-14T15:16:03Z,539,29,,2,2020-02-15T06:59:47Z +15578,2005-08-23T05:37:13Z,2829,302,2005-08-27T01:11:13Z,1,2020-02-15T06:59:47Z +15579,2005-08-23T05:38:41Z,3986,480,2005-08-29T09:18:41Z,1,2020-02-15T06:59:47Z +15580,2005-08-23T05:39:06Z,754,279,2005-09-01T01:14:06Z,2,2020-02-15T06:59:47Z +15581,2005-08-23T05:42:13Z,4010,462,2005-08-28T00:03:13Z,1,2020-02-15T06:59:47Z +15582,2005-08-23T05:45:44Z,4264,297,2005-08-25T07:54:44Z,2,2020-02-15T06:59:47Z +15583,2005-08-23T05:47:55Z,4299,215,2005-08-26T01:46:55Z,1,2020-02-15T06:59:47Z +15584,2005-08-23T05:49:21Z,3526,500,2005-08-27T04:49:21Z,1,2020-02-15T06:59:47Z +15585,2005-08-23T05:55:22Z,1177,545,2005-08-24T11:45:22Z,2,2020-02-15T06:59:47Z +15586,2005-08-23T05:57:04Z,3232,148,2005-08-31T01:59:04Z,1,2020-02-15T06:59:47Z +15587,2005-08-23T06:00:28Z,2510,499,2005-08-29T10:15:28Z,1,2020-02-15T06:59:47Z +15588,2005-08-23T06:02:35Z,1810,503,2005-08-30T04:01:35Z,2,2020-02-15T06:59:47Z +15589,2005-08-23T06:03:31Z,2379,22,2005-08-30T07:44:31Z,2,2020-02-15T06:59:47Z +15590,2005-08-23T06:09:44Z,4048,599,2005-09-01T06:53:44Z,2,2020-02-15T06:59:47Z +15591,2005-08-23T06:11:52Z,64,62,2005-08-25T05:34:52Z,1,2020-02-15T06:59:47Z +15593,2005-08-23T06:15:09Z,3734,153,2005-08-27T07:47:09Z,2,2020-02-15T06:59:47Z +15594,2005-08-23T06:18:43Z,4227,567,2005-09-01T09:09:43Z,2,2020-02-15T06:59:47Z +15595,2005-08-23T06:19:12Z,4046,264,2005-08-31T04:52:12Z,1,2020-02-15T06:59:47Z +15596,2005-08-23T06:19:51Z,3834,186,2005-08-25T03:32:51Z,1,2020-02-15T06:59:47Z +15597,2005-08-23T06:21:20Z,3795,420,2005-08-28T02:47:20Z,2,2020-02-15T06:59:47Z +15598,2005-08-23T06:23:26Z,2794,66,2005-09-01T05:43:26Z,1,2020-02-15T06:59:47Z +15599,2005-08-23T06:25:07Z,4560,103,2005-08-29T00:48:07Z,1,2020-02-15T06:59:47Z +15600,2005-08-23T06:31:24Z,2260,113,2005-08-28T06:53:24Z,1,2020-02-15T06:59:47Z +15601,2005-08-23T06:33:26Z,3643,579,2005-08-24T04:10:26Z,1,2020-02-15T06:59:47Z +15602,2005-08-23T06:41:07Z,1429,81,2005-08-24T07:16:07Z,1,2020-02-15T06:59:47Z +15603,2005-08-23T06:41:32Z,2565,6,2005-08-28T08:51:32Z,1,2020-02-15T06:59:47Z +15604,2005-08-23T06:44:19Z,4000,458,2005-08-29T07:17:19Z,1,2020-02-15T06:59:47Z +15605,2005-08-23T06:48:47Z,3152,544,2005-08-28T06:09:47Z,1,2020-02-15T06:59:47Z +15606,2005-08-23T06:50:27Z,1811,279,2005-08-28T04:23:27Z,2,2020-02-15T06:59:47Z +15607,2005-08-23T06:54:06Z,4118,484,2005-08-26T05:03:06Z,2,2020-02-15T06:59:47Z +15608,2005-08-23T06:55:26Z,2921,454,2005-08-28T10:24:26Z,1,2020-02-15T06:59:47Z +15609,2005-08-23T06:56:04Z,1730,256,2005-09-01T03:25:04Z,1,2020-02-15T06:59:47Z +15610,2005-08-23T06:56:15Z,2076,215,2005-08-24T07:37:15Z,2,2020-02-15T06:59:47Z +15611,2005-08-23T06:56:18Z,1713,184,2005-08-25T06:10:18Z,1,2020-02-15T06:59:47Z +15612,2005-08-23T06:59:07Z,3367,305,2005-09-01T11:26:07Z,2,2020-02-15T06:59:47Z +15613,2005-08-23T07:03:19Z,307,461,2005-08-31T07:50:19Z,2,2020-02-15T06:59:47Z +15614,2005-08-23T07:05:15Z,1216,287,2005-09-01T11:41:15Z,1,2020-02-15T06:59:47Z +15615,2005-08-23T07:06:00Z,899,584,2005-08-30T11:21:00Z,2,2020-02-15T06:59:47Z +15616,2005-08-23T07:06:38Z,2947,70,2005-08-30T04:16:38Z,1,2020-02-15T06:59:47Z +15617,2005-08-23T07:07:22Z,4085,569,2005-08-27T01:24:22Z,2,2020-02-15T06:59:47Z +15618,2005-08-23T07:07:58Z,1903,60,2005-08-29T03:48:58Z,1,2020-02-15T06:59:47Z +15619,2005-08-23T07:10:14Z,2468,3,2005-08-26T07:21:14Z,2,2020-02-15T06:59:47Z +15620,2005-08-23T07:10:22Z,1173,270,2005-08-28T06:51:22Z,2,2020-02-15T06:59:47Z +15621,2005-08-23T07:13:43Z,3832,123,2005-08-29T08:19:43Z,1,2020-02-15T06:59:47Z +15622,2005-08-23T07:22:02Z,3335,302,2005-09-01T06:08:02Z,2,2020-02-15T06:59:47Z +15623,2005-08-23T07:23:29Z,3003,525,2005-08-31T01:47:29Z,1,2020-02-15T06:59:47Z +15624,2005-08-23T07:24:27Z,396,105,2005-08-29T12:36:27Z,2,2020-02-15T06:59:47Z +15625,2005-08-23T07:25:29Z,4200,207,2005-08-27T13:17:29Z,2,2020-02-15T06:59:47Z +15626,2005-08-23T07:25:34Z,640,370,2005-08-28T11:01:34Z,1,2020-02-15T06:59:47Z +15627,2005-08-23T07:25:38Z,1364,453,2005-08-31T02:53:38Z,2,2020-02-15T06:59:47Z +15628,2005-08-23T07:28:04Z,1348,408,2005-08-26T04:23:04Z,1,2020-02-15T06:59:47Z +15629,2005-08-23T07:28:22Z,3725,286,2005-08-29T06:29:22Z,2,2020-02-15T06:59:47Z +15630,2005-08-23T07:29:13Z,3590,580,2005-08-31T04:33:13Z,2,2020-02-15T06:59:47Z +15631,2005-08-23T07:30:23Z,2458,93,2005-08-24T07:23:23Z,1,2020-02-15T06:59:47Z +15632,2005-08-23T07:30:26Z,2941,60,2005-08-24T07:53:26Z,2,2020-02-15T06:59:47Z +15633,2005-08-23T07:31:10Z,882,497,2005-08-26T04:35:10Z,2,2020-02-15T06:59:47Z +15634,2005-08-23T07:34:18Z,2517,576,2005-08-24T12:00:18Z,2,2020-02-15T06:59:47Z +15635,2005-08-23T07:43:00Z,3308,4,2005-08-27T10:47:00Z,1,2020-02-15T06:59:47Z +15636,2005-08-23T07:50:46Z,1169,380,2005-08-26T07:59:46Z,2,2020-02-15T06:59:47Z +15637,2005-08-23T07:53:38Z,445,172,2005-08-29T03:16:38Z,2,2020-02-15T06:59:47Z +15638,2005-08-23T07:54:54Z,3358,563,2005-08-30T13:33:54Z,2,2020-02-15T06:59:47Z +15639,2005-08-23T08:03:25Z,42,214,2005-08-24T10:21:25Z,2,2020-02-15T06:59:47Z +15640,2005-08-23T08:04:40Z,3505,262,2005-08-24T06:38:40Z,1,2020-02-15T06:59:47Z +15641,2005-08-23T08:06:49Z,3126,240,2005-08-24T13:17:49Z,1,2020-02-15T06:59:47Z +15642,2005-08-23T08:09:11Z,2627,160,2005-08-28T05:57:11Z,1,2020-02-15T06:59:47Z +15643,2005-08-23T08:13:26Z,103,298,2005-08-25T05:18:26Z,2,2020-02-15T06:59:47Z +15644,2006-02-14T15:16:03Z,3139,43,,2,2020-02-15T06:59:47Z +15645,2006-02-14T15:16:03Z,3838,214,,2,2020-02-15T06:59:47Z +15646,2005-08-23T08:19:55Z,3217,114,2005-08-29T02:32:55Z,1,2020-02-15T06:59:47Z +15647,2005-08-23T08:23:56Z,2051,251,2005-08-26T11:00:56Z,1,2020-02-15T06:59:47Z +15648,2005-08-23T08:27:57Z,4039,80,2005-08-30T08:53:57Z,2,2020-02-15T06:59:47Z +15649,2005-08-23T08:28:03Z,415,60,2005-08-30T05:11:03Z,1,2020-02-15T06:59:47Z +15650,2005-08-23T08:29:53Z,2447,353,2005-08-25T07:23:53Z,2,2020-02-15T06:59:47Z +15651,2005-08-23T08:31:49Z,3393,451,2005-08-26T02:57:49Z,1,2020-02-15T06:59:47Z +15652,2005-08-23T08:34:10Z,4440,578,2005-08-30T12:31:10Z,1,2020-02-15T06:59:47Z +15653,2005-08-23T08:34:42Z,2736,439,2005-09-01T03:07:42Z,1,2020-02-15T06:59:47Z +15654,2005-08-23T08:34:53Z,4360,471,2005-08-30T04:18:53Z,2,2020-02-15T06:59:47Z +15655,2006-02-14T15:16:03Z,604,359,,1,2020-02-15T06:59:47Z +15656,2005-08-23T08:38:58Z,4239,334,2005-08-24T04:08:58Z,2,2020-02-15T06:59:47Z +15657,2005-08-23T08:42:40Z,1897,36,2005-09-01T13:08:40Z,1,2020-02-15T06:59:47Z +15658,2005-08-23T08:48:43Z,3565,22,2005-08-25T05:38:43Z,1,2020-02-15T06:59:47Z +15659,2005-08-23T08:48:43Z,4573,131,2005-08-27T14:19:43Z,2,2020-02-15T06:59:47Z +15660,2005-08-23T08:51:21Z,3223,388,2005-08-28T06:26:21Z,2,2020-02-15T06:59:47Z +15661,2005-08-23T08:52:03Z,1599,346,2005-08-30T08:17:03Z,2,2020-02-15T06:59:47Z +15662,2005-08-23T08:52:50Z,3028,223,2005-08-24T08:08:50Z,1,2020-02-15T06:59:47Z +15663,2005-08-23T08:54:26Z,3291,291,2005-08-29T02:56:26Z,1,2020-02-15T06:59:47Z +15664,2005-08-23T08:57:11Z,2029,351,2005-08-31T14:19:11Z,2,2020-02-15T06:59:47Z +15665,2005-08-23T08:59:12Z,3471,487,2005-08-24T12:50:12Z,2,2020-02-15T06:59:47Z +15666,2005-08-23T09:01:10Z,3406,586,2005-08-31T12:32:10Z,2,2020-02-15T06:59:47Z +15667,2005-08-23T09:02:03Z,1302,73,2005-08-24T05:47:03Z,1,2020-02-15T06:59:47Z +15668,2005-08-23T09:02:04Z,1963,38,2005-08-29T03:17:04Z,2,2020-02-15T06:59:47Z +15669,2005-08-23T09:06:17Z,1542,334,2005-08-30T08:10:17Z,2,2020-02-15T06:59:47Z +15670,2005-08-23T09:07:11Z,2834,211,2005-08-31T04:32:11Z,2,2020-02-15T06:59:47Z +15671,2005-08-23T09:08:16Z,3716,112,2005-08-29T14:01:16Z,1,2020-02-15T06:59:47Z +15672,2005-08-23T09:09:18Z,701,210,2005-08-27T06:19:18Z,1,2020-02-15T06:59:47Z +15673,2005-08-23T09:12:50Z,3096,321,2005-08-29T12:45:50Z,2,2020-02-15T06:59:47Z +15674,2005-08-23T09:16:39Z,4482,90,2005-09-01T11:57:39Z,1,2020-02-15T06:59:47Z +15675,2005-08-23T09:18:52Z,4153,293,2005-08-30T14:59:52Z,2,2020-02-15T06:59:47Z +15676,2005-08-23T09:23:08Z,3874,353,2005-08-30T06:19:08Z,2,2020-02-15T06:59:47Z +15677,2005-08-23T09:23:36Z,2050,109,2005-08-27T05:01:36Z,1,2020-02-15T06:59:47Z +15678,2005-08-23T09:23:45Z,1345,413,2005-08-27T11:38:45Z,2,2020-02-15T06:59:47Z +15679,2005-08-23T09:27:29Z,2945,103,2005-08-28T09:14:29Z,1,2020-02-15T06:59:47Z +15680,2005-08-23T09:33:22Z,1370,169,2005-08-31T13:29:22Z,2,2020-02-15T06:59:47Z +15681,2005-08-23T09:35:34Z,2813,61,2005-08-27T08:33:34Z,1,2020-02-15T06:59:47Z +15682,2005-08-23T09:37:34Z,3293,31,2005-08-31T06:01:34Z,1,2020-02-15T06:59:47Z +15683,2005-08-23T09:38:17Z,3787,168,2005-08-30T12:31:17Z,2,2020-02-15T06:59:47Z +15684,2005-08-23T09:40:04Z,3976,586,2005-08-28T15:28:04Z,1,2020-02-15T06:59:47Z +15685,2005-08-23T09:41:28Z,370,491,2005-08-30T10:11:28Z,1,2020-02-15T06:59:47Z +15686,2005-08-23T09:42:21Z,2041,206,2005-08-29T12:22:21Z,1,2020-02-15T06:59:47Z +15687,2005-08-23T09:46:33Z,276,112,2005-09-01T06:07:33Z,1,2020-02-15T06:59:47Z +15688,2005-08-23T09:48:45Z,2851,105,2005-08-30T10:28:45Z,2,2020-02-15T06:59:47Z +15689,2005-08-23T09:52:55Z,248,259,2005-08-29T11:15:55Z,1,2020-02-15T06:59:47Z +15690,2005-08-23T09:53:30Z,2102,554,2005-08-29T10:27:30Z,1,2020-02-15T06:59:47Z +15691,2005-08-23T09:53:54Z,784,200,2005-08-27T10:14:54Z,1,2020-02-15T06:59:47Z +15692,2005-08-23T10:00:02Z,1852,503,2005-08-24T05:25:02Z,1,2020-02-15T06:59:47Z +15693,2005-08-23T10:00:24Z,748,94,2005-08-25T08:23:24Z,1,2020-02-15T06:59:47Z +15694,2005-08-23T10:02:46Z,3017,506,2005-08-31T05:46:46Z,2,2020-02-15T06:59:47Z +15695,2006-02-14T15:16:03Z,2954,300,,1,2020-02-15T06:59:47Z +15696,2005-08-23T10:04:17Z,2836,93,2005-08-25T08:47:17Z,2,2020-02-15T06:59:47Z +15697,2005-08-23T10:04:36Z,1987,380,2005-08-24T05:00:36Z,2,2020-02-15T06:59:47Z +15698,2005-08-23T10:11:40Z,4465,395,2005-08-28T08:50:40Z,2,2020-02-15T06:59:47Z +15699,2005-08-23T10:20:35Z,4155,501,2005-08-30T13:56:35Z,1,2020-02-15T06:59:47Z +15700,2005-08-23T10:21:21Z,2935,552,2005-08-24T15:37:21Z,1,2020-02-15T06:59:47Z +15701,2005-08-23T10:22:21Z,2942,516,2005-08-24T10:52:21Z,1,2020-02-15T06:59:47Z +15702,2005-08-23T10:23:28Z,1602,56,2005-08-29T11:08:28Z,2,2020-02-15T06:59:47Z +15703,2005-08-23T10:23:48Z,2883,322,2005-09-01T06:54:48Z,2,2020-02-15T06:59:47Z +15704,2005-08-23T10:25:45Z,738,71,2005-08-29T16:06:45Z,2,2020-02-15T06:59:47Z +15705,2005-08-23T10:32:52Z,936,356,2005-08-29T13:18:52Z,2,2020-02-15T06:59:47Z +15706,2005-08-23T10:32:52Z,4486,220,2005-08-24T07:03:52Z,2,2020-02-15T06:59:47Z +15707,2005-08-23T10:35:45Z,3646,91,2005-08-27T10:57:45Z,1,2020-02-15T06:59:47Z +15708,2005-08-23T10:35:51Z,1974,46,2005-08-27T16:02:51Z,1,2020-02-15T06:59:47Z +15709,2005-08-23T10:36:00Z,346,206,2005-08-28T06:18:00Z,2,2020-02-15T06:59:47Z +15710,2006-02-14T15:16:03Z,1020,421,,1,2020-02-15T06:59:47Z +15711,2005-08-23T10:43:00Z,789,297,2005-08-29T16:29:00Z,1,2020-02-15T06:59:47Z +15712,2005-08-23T10:43:56Z,1882,351,2005-08-29T15:35:56Z,2,2020-02-15T06:59:47Z +15713,2005-08-23T10:56:15Z,337,432,2005-08-29T09:14:15Z,2,2020-02-15T06:59:47Z +15714,2006-02-14T15:16:03Z,2083,56,,1,2020-02-15T06:59:47Z +15715,2005-08-23T10:57:40Z,3808,86,2005-08-28T12:40:40Z,1,2020-02-15T06:59:47Z +15716,2005-08-23T11:02:00Z,2812,408,2005-08-28T14:46:00Z,1,2020-02-15T06:59:47Z +15717,2006-02-14T15:16:03Z,902,208,,2,2020-02-15T06:59:47Z +15718,2005-08-23T11:05:17Z,2180,276,2005-08-28T12:50:17Z,1,2020-02-15T06:59:47Z +15719,2005-08-23T11:08:46Z,3990,599,2005-08-25T07:25:46Z,1,2020-02-15T06:59:47Z +15720,2005-08-23T11:15:20Z,2490,456,2005-08-31T09:49:20Z,1,2020-02-15T06:59:47Z +15721,2005-08-23T11:16:16Z,685,154,2005-08-28T10:21:16Z,1,2020-02-15T06:59:47Z +15722,2005-08-23T11:16:29Z,2809,26,2005-09-01T13:24:29Z,2,2020-02-15T06:59:47Z +15723,2005-08-23T11:17:26Z,3915,504,2005-08-31T13:58:26Z,2,2020-02-15T06:59:47Z +15724,2005-08-23T11:22:09Z,1025,478,2005-08-28T12:56:09Z,2,2020-02-15T06:59:47Z +15725,2005-08-23T11:25:00Z,378,599,2005-08-26T11:46:00Z,1,2020-02-15T06:59:47Z +15726,2005-08-23T11:28:26Z,906,503,2005-08-28T11:23:26Z,2,2020-02-15T06:59:47Z +15727,2005-08-23T11:28:49Z,2184,416,2005-08-24T06:24:49Z,2,2020-02-15T06:59:47Z +15728,2005-08-23T11:30:32Z,2567,323,2005-08-28T09:52:32Z,2,2020-02-15T06:59:47Z +15729,2006-02-14T15:16:03Z,2699,193,,2,2020-02-15T06:59:47Z +15730,2005-08-23T11:32:35Z,947,147,2005-08-30T13:46:35Z,2,2020-02-15T06:59:47Z +15731,2005-08-23T11:33:25Z,3403,118,2005-08-24T07:19:25Z,2,2020-02-15T06:59:47Z +15732,2005-08-23T11:35:12Z,3247,412,2005-08-26T12:50:12Z,2,2020-02-15T06:59:47Z +15733,2005-08-23T11:37:32Z,4185,512,2005-08-28T16:27:32Z,1,2020-02-15T06:59:47Z +15734,2005-08-23T11:40:08Z,3952,302,2005-08-27T08:16:08Z,1,2020-02-15T06:59:47Z +15735,2006-02-14T15:16:03Z,3167,295,,1,2020-02-15T06:59:47Z +15736,2005-08-23T11:40:30Z,4272,127,2005-08-30T12:40:30Z,1,2020-02-15T06:59:47Z +15737,2005-08-23T11:52:18Z,996,83,2005-08-28T15:28:18Z,1,2020-02-15T06:59:47Z +15738,2005-08-23T11:55:50Z,556,38,2005-08-30T15:07:50Z,1,2020-02-15T06:59:47Z +15739,2005-08-23T11:56:22Z,266,74,2005-08-29T16:10:22Z,2,2020-02-15T06:59:47Z +15740,2005-08-23T12:07:51Z,100,229,2005-08-24T13:23:51Z,2,2020-02-15T06:59:47Z +15741,2005-08-23T12:10:54Z,4243,126,2005-08-24T10:08:54Z,2,2020-02-15T06:59:47Z +15742,2005-08-23T12:11:37Z,1339,200,2005-08-31T07:28:37Z,2,2020-02-15T06:59:47Z +15743,2005-08-23T12:12:05Z,1625,139,2005-08-26T11:35:05Z,1,2020-02-15T06:59:47Z +15744,2005-08-23T12:15:51Z,2364,59,2005-08-31T17:19:51Z,1,2020-02-15T06:59:47Z +15745,2006-02-14T15:16:03Z,2737,43,,1,2020-02-15T06:59:47Z +15746,2005-08-23T12:26:19Z,2241,246,2005-08-26T09:51:19Z,2,2020-02-15T06:59:47Z +15747,2005-08-23T12:29:24Z,1517,381,2005-08-31T08:27:24Z,2,2020-02-15T06:59:47Z +15748,2005-08-23T12:33:00Z,2757,380,2005-08-25T15:15:00Z,2,2020-02-15T06:59:47Z +15749,2005-08-23T12:33:41Z,4224,575,2005-08-24T10:52:41Z,1,2020-02-15T06:59:47Z +15750,2005-08-23T12:36:05Z,4474,496,2005-08-24T17:40:05Z,2,2020-02-15T06:59:47Z +15751,2005-08-23T12:41:07Z,697,199,2005-08-29T07:03:07Z,2,2020-02-15T06:59:47Z +15752,2005-08-23T12:41:38Z,2112,17,2005-09-01T14:06:38Z,1,2020-02-15T06:59:47Z +15753,2005-08-23T12:43:30Z,3451,144,2005-09-01T09:07:30Z,2,2020-02-15T06:59:47Z +15754,2005-08-23T12:43:42Z,2306,356,2005-08-27T17:45:42Z,2,2020-02-15T06:59:47Z +15755,2005-08-23T12:46:38Z,511,423,2005-08-25T12:59:38Z,1,2020-02-15T06:59:47Z +15756,2005-08-23T12:47:05Z,878,112,2005-08-28T08:34:05Z,2,2020-02-15T06:59:47Z +15757,2005-08-23T12:47:16Z,1308,356,2005-08-29T17:19:16Z,1,2020-02-15T06:59:47Z +15758,2005-08-23T12:47:26Z,152,46,2005-08-29T11:05:26Z,2,2020-02-15T06:59:47Z +15759,2005-08-23T12:47:37Z,1341,361,2005-09-01T11:28:37Z,2,2020-02-15T06:59:47Z +15760,2005-08-23T12:50:00Z,3050,273,2005-08-29T15:41:00Z,2,2020-02-15T06:59:47Z +15761,2005-08-23T12:55:51Z,4362,416,2005-08-26T16:51:51Z,1,2020-02-15T06:59:47Z +15762,2005-08-23T13:01:43Z,887,351,2005-08-26T16:35:43Z,1,2020-02-15T06:59:47Z +15763,2005-08-23T13:02:59Z,124,158,2005-08-24T17:45:59Z,2,2020-02-15T06:59:47Z +15764,2005-08-23T13:05:10Z,2937,8,2005-08-25T16:15:10Z,1,2020-02-15T06:59:47Z +15765,2005-08-23T13:06:19Z,1250,408,2005-08-31T12:18:19Z,1,2020-02-15T06:59:47Z +15766,2005-08-23T13:10:16Z,1996,436,2005-08-30T09:27:16Z,1,2020-02-15T06:59:47Z +15767,2005-08-23T13:14:15Z,3492,241,2005-08-27T14:43:15Z,2,2020-02-15T06:59:47Z +15768,2005-08-23T13:14:47Z,662,267,2005-08-29T14:17:47Z,2,2020-02-15T06:59:47Z +15769,2005-08-23T13:16:15Z,2392,276,2005-08-28T18:31:15Z,1,2020-02-15T06:59:47Z +15770,2005-08-23T13:18:16Z,1424,113,2005-08-29T11:31:16Z,1,2020-02-15T06:59:47Z +15771,2005-08-23T13:18:46Z,3667,262,2005-08-26T07:29:46Z,1,2020-02-15T06:59:47Z +15772,2005-08-23T13:22:56Z,4343,202,2005-08-26T10:35:56Z,2,2020-02-15T06:59:47Z +15773,2005-08-23T13:24:57Z,1626,189,2005-08-31T14:16:57Z,2,2020-02-15T06:59:47Z +15774,2005-08-23T13:25:08Z,1273,254,2005-08-28T10:08:08Z,2,2020-02-15T06:59:47Z +15775,2005-08-23T13:25:44Z,2146,173,2005-09-01T16:56:44Z,1,2020-02-15T06:59:47Z +15776,2005-08-23T13:26:01Z,43,514,2005-08-29T18:17:01Z,1,2020-02-15T06:59:47Z +15777,2005-08-23T13:29:08Z,4241,130,2005-08-27T18:50:08Z,2,2020-02-15T06:59:47Z +15778,2006-02-14T15:16:03Z,1269,234,,1,2020-02-15T06:59:47Z +15779,2005-08-23T13:33:46Z,1560,419,2005-08-28T08:40:46Z,2,2020-02-15T06:59:47Z +15780,2006-02-14T15:16:03Z,2911,120,,2,2020-02-15T06:59:47Z +15781,2005-08-23T13:41:05Z,4449,412,2005-08-31T13:11:05Z,1,2020-02-15T06:59:47Z +15782,2005-08-23T13:43:26Z,3282,245,2005-08-30T14:03:26Z,1,2020-02-15T06:59:47Z +15783,2005-08-23T13:45:44Z,397,247,2005-08-26T09:18:44Z,2,2020-02-15T06:59:47Z +15784,2005-08-23T13:46:00Z,126,425,2005-08-30T11:49:00Z,2,2020-02-15T06:59:47Z +15785,2005-08-23T13:46:27Z,1758,543,2005-08-27T10:16:27Z,2,2020-02-15T06:59:47Z +15786,2005-08-23T13:48:34Z,3132,371,2005-08-27T15:59:34Z,1,2020-02-15T06:59:47Z +15787,2005-08-23T13:51:57Z,2932,123,2005-08-27T17:06:57Z,1,2020-02-15T06:59:47Z +15788,2005-08-23T13:54:39Z,13,269,2005-08-26T10:17:39Z,1,2020-02-15T06:59:47Z +15789,2005-08-23T13:56:40Z,1213,350,2005-08-27T15:25:40Z,1,2020-02-15T06:59:47Z +15790,2005-08-23T14:01:07Z,2887,233,2005-08-30T10:32:07Z,2,2020-02-15T06:59:47Z +15791,2005-08-23T14:02:13Z,4147,445,2005-09-01T09:03:13Z,2,2020-02-15T06:59:47Z +15792,2005-08-23T14:05:37Z,2175,581,2005-08-28T10:54:37Z,1,2020-02-15T06:59:47Z +15793,2005-08-23T14:06:19Z,2863,22,2005-08-24T19:59:19Z,2,2020-02-15T06:59:47Z +15794,2006-02-14T15:16:03Z,3917,579,,2,2020-02-15T06:59:47Z +15795,2005-08-23T14:07:56Z,4371,417,2005-08-25T12:10:56Z,2,2020-02-15T06:59:47Z +15796,2005-08-23T14:12:22Z,1425,158,2005-08-28T17:03:22Z,2,2020-02-15T06:59:47Z +15797,2005-08-23T14:13:47Z,497,503,2005-08-25T09:16:47Z,2,2020-02-15T06:59:47Z +15798,2005-08-23T14:23:03Z,3803,203,2005-08-30T17:39:03Z,2,2020-02-15T06:59:47Z +15799,2005-08-23T14:23:23Z,2519,215,2005-08-24T17:15:23Z,2,2020-02-15T06:59:47Z +15800,2005-08-23T14:23:44Z,963,43,2005-08-29T17:04:44Z,2,2020-02-15T06:59:47Z +15801,2005-08-23T14:26:04Z,1590,165,2005-08-28T15:04:04Z,1,2020-02-15T06:59:47Z +15802,2005-08-23T14:26:51Z,41,158,2005-08-29T16:28:51Z,2,2020-02-15T06:59:47Z +15803,2005-08-23T14:27:07Z,500,105,2005-08-28T12:01:07Z,2,2020-02-15T06:59:47Z +15804,2005-08-23T14:29:16Z,3338,585,2005-08-26T08:41:16Z,1,2020-02-15T06:59:47Z +15805,2005-08-23T14:31:19Z,4511,8,2005-08-25T19:01:19Z,2,2020-02-15T06:59:47Z +15806,2005-08-23T14:31:50Z,2683,166,2005-08-27T16:08:50Z,2,2020-02-15T06:59:47Z +15807,2005-08-23T14:35:10Z,2705,350,2005-08-29T19:06:10Z,2,2020-02-15T06:59:47Z +15808,2005-08-23T14:38:37Z,1663,446,2005-08-27T14:45:37Z,2,2020-02-15T06:59:47Z +15809,2005-08-23T14:42:07Z,1885,431,2005-08-27T15:00:07Z,2,2020-02-15T06:59:47Z +15810,2005-08-23T14:43:15Z,2196,171,2005-08-25T17:41:15Z,1,2020-02-15T06:59:47Z +15811,2005-08-23T14:43:46Z,3487,300,2005-08-27T16:43:46Z,1,2020-02-15T06:59:47Z +15812,2005-08-23T14:47:26Z,4457,45,2005-09-01T10:51:26Z,2,2020-02-15T06:59:47Z +15813,2006-02-14T15:16:03Z,981,9,,1,2020-02-15T06:59:47Z +15814,2005-08-23T14:52:50Z,4361,459,2005-08-27T16:12:50Z,2,2020-02-15T06:59:47Z +15815,2005-08-23T14:55:47Z,316,444,2005-08-24T12:37:47Z,1,2020-02-15T06:59:47Z +15816,2005-08-23T14:58:06Z,3628,31,2005-08-28T13:30:06Z,1,2020-02-15T06:59:47Z +15817,2005-08-23T14:59:51Z,598,348,2005-08-25T15:27:51Z,1,2020-02-15T06:59:47Z +15818,2005-08-23T14:59:58Z,2620,439,2005-08-27T13:13:58Z,2,2020-02-15T06:59:47Z +15819,2005-08-23T15:01:54Z,3639,274,2005-08-31T20:01:54Z,2,2020-02-15T06:59:47Z +15820,2005-08-23T15:03:13Z,4553,308,2005-08-25T20:12:13Z,1,2020-02-15T06:59:47Z +15821,2005-08-23T15:03:58Z,1714,233,2005-08-24T17:46:58Z,2,2020-02-15T06:59:47Z +15822,2005-08-23T15:05:59Z,3602,492,2005-08-24T11:13:59Z,1,2020-02-15T06:59:47Z +15823,2005-08-23T15:08:00Z,3047,81,2005-08-24T17:52:00Z,2,2020-02-15T06:59:47Z +15824,2005-08-23T15:09:17Z,2933,371,2005-08-28T15:14:17Z,2,2020-02-15T06:59:47Z +15825,2005-08-23T15:10:42Z,149,346,2005-08-29T09:28:42Z,2,2020-02-15T06:59:47Z +15826,2005-08-23T15:15:02Z,215,311,2005-08-31T20:39:02Z,2,2020-02-15T06:59:47Z +15827,2005-08-23T15:15:19Z,1732,346,2005-08-24T10:50:19Z,2,2020-02-15T06:59:47Z +15828,2005-08-23T15:16:32Z,428,327,2005-08-29T12:20:32Z,1,2020-02-15T06:59:47Z +15829,2005-08-23T15:17:14Z,4387,30,2005-08-27T13:04:14Z,1,2020-02-15T06:59:47Z +15830,2005-08-23T15:19:15Z,309,467,2005-08-25T18:42:15Z,2,2020-02-15T06:59:47Z +15831,2005-08-23T15:21:19Z,3123,401,2005-08-24T15:47:19Z,2,2020-02-15T06:59:47Z +15832,2005-08-23T15:21:35Z,1468,537,2005-08-30T15:01:35Z,2,2020-02-15T06:59:47Z +15833,2005-08-23T15:22:15Z,801,349,2005-08-31T14:54:15Z,1,2020-02-15T06:59:47Z +15834,2005-08-23T15:23:50Z,217,165,2005-09-01T19:31:50Z,1,2020-02-15T06:59:47Z +15835,2005-08-23T15:25:27Z,1362,128,2005-09-01T16:14:27Z,2,2020-02-15T06:59:47Z +15836,2005-08-23T15:29:17Z,260,468,2005-08-26T11:44:17Z,2,2020-02-15T06:59:47Z +15837,2005-08-23T15:29:41Z,4388,283,2005-08-27T18:17:41Z,1,2020-02-15T06:59:47Z +15838,2005-08-23T15:30:48Z,2194,579,2005-08-31T11:20:48Z,2,2020-02-15T06:59:47Z +15839,2005-08-23T15:34:46Z,3726,294,2005-08-30T21:00:46Z,2,2020-02-15T06:59:47Z +15840,2005-08-23T15:34:49Z,1901,316,2005-08-24T16:54:49Z,1,2020-02-15T06:59:47Z +15841,2005-08-23T15:35:59Z,2865,571,2005-08-30T19:30:59Z,2,2020-02-15T06:59:47Z +15842,2005-08-23T15:36:05Z,1850,146,2005-08-30T14:05:05Z,2,2020-02-15T06:59:47Z +15843,2005-08-23T15:37:31Z,611,215,2005-08-28T18:41:31Z,2,2020-02-15T06:59:47Z +15844,2005-08-23T15:38:12Z,2027,119,2005-08-26T15:18:12Z,1,2020-02-15T06:59:47Z +15845,2005-08-23T15:38:34Z,4312,89,2005-08-25T10:06:34Z,1,2020-02-15T06:59:47Z +15846,2005-08-23T15:39:18Z,3635,47,2005-08-27T14:28:18Z,2,2020-02-15T06:59:47Z +15847,2005-08-23T15:39:38Z,2287,163,2005-08-24T11:46:38Z,1,2020-02-15T06:59:47Z +15848,2005-08-23T15:41:12Z,2141,336,2005-08-26T10:29:12Z,2,2020-02-15T06:59:47Z +15849,2005-08-23T15:41:20Z,4077,482,2005-08-27T15:47:20Z,2,2020-02-15T06:59:47Z +15850,2005-08-23T15:45:42Z,586,563,2005-08-27T19:24:42Z,1,2020-02-15T06:59:47Z +15851,2005-08-23T15:46:33Z,2286,469,2005-08-29T15:52:33Z,1,2020-02-15T06:59:47Z +15852,2005-08-23T15:47:02Z,1506,140,2005-08-25T19:37:02Z,1,2020-02-15T06:59:47Z +15853,2005-08-23T15:54:20Z,225,500,2005-08-24T18:53:20Z,2,2020-02-15T06:59:47Z +15854,2005-08-23T15:58:05Z,1648,464,2005-08-26T19:23:05Z,1,2020-02-15T06:59:47Z +15855,2005-08-23T15:59:01Z,2528,192,2005-08-29T20:26:01Z,1,2020-02-15T06:59:47Z +15856,2005-08-23T15:59:12Z,3379,395,2005-08-25T15:36:12Z,1,2020-02-15T06:59:47Z +15857,2005-08-23T15:59:51Z,2733,575,2005-08-26T12:01:51Z,2,2020-02-15T06:59:47Z +15858,2005-08-23T16:07:15Z,4515,81,2005-08-25T19:36:15Z,2,2020-02-15T06:59:47Z +15859,2005-08-23T16:08:15Z,4269,465,2005-08-28T11:08:15Z,1,2020-02-15T06:59:47Z +15860,2005-08-23T16:08:40Z,2583,41,2005-08-28T15:35:40Z,1,2020-02-15T06:59:47Z +15861,2005-08-23T16:15:45Z,1859,256,2005-09-01T11:37:45Z,2,2020-02-15T06:59:47Z +15862,2006-02-14T15:16:03Z,925,215,,1,2020-02-15T06:59:47Z +15863,2005-08-23T16:17:09Z,2783,328,2005-08-28T16:10:09Z,2,2020-02-15T06:59:47Z +15864,2005-08-23T16:18:12Z,3014,256,2005-08-29T17:10:12Z,2,2020-02-15T06:59:47Z +15865,2005-08-23T16:18:25Z,2031,482,2005-08-26T10:57:25Z,2,2020-02-15T06:59:47Z +15866,2005-08-23T16:19:02Z,3828,296,2005-08-31T12:29:02Z,2,2020-02-15T06:59:47Z +15867,2006-02-14T15:16:03Z,837,505,,2,2020-02-15T06:59:47Z +15868,2005-08-23T16:19:14Z,2186,306,2005-08-29T16:14:14Z,2,2020-02-15T06:59:47Z +15869,2005-08-23T16:22:20Z,1344,357,2005-08-27T11:52:20Z,1,2020-02-15T06:59:47Z +15870,2005-08-23T16:23:08Z,590,251,2005-08-28T20:30:08Z,2,2020-02-15T06:59:47Z +15871,2005-08-23T16:24:24Z,425,57,2005-09-01T13:48:24Z,2,2020-02-15T06:59:47Z +15872,2005-08-23T16:27:24Z,3391,212,2005-08-31T11:57:24Z,1,2020-02-15T06:59:47Z +15873,2005-08-23T16:27:59Z,4548,577,2005-08-26T11:11:59Z,2,2020-02-15T06:59:47Z +15874,2005-08-23T16:30:55Z,621,132,2005-08-28T20:57:55Z,1,2020-02-15T06:59:47Z +15875,2006-02-14T15:16:03Z,3611,41,,1,2020-02-15T06:59:47Z +15876,2005-08-23T16:32:10Z,1735,87,2005-08-24T18:16:10Z,1,2020-02-15T06:59:47Z +15877,2005-08-23T16:33:33Z,2307,559,2005-08-26T10:36:33Z,2,2020-02-15T06:59:47Z +15878,2005-08-23T16:34:31Z,1592,493,2005-08-27T21:51:31Z,2,2020-02-15T06:59:47Z +15879,2005-08-23T16:42:53Z,235,482,2005-08-29T16:21:53Z,2,2020-02-15T06:59:47Z +15880,2005-08-23T16:43:54Z,2538,528,2005-08-31T14:40:54Z,2,2020-02-15T06:59:47Z +15881,2005-08-23T16:44:25Z,617,383,2005-08-29T13:58:25Z,1,2020-02-15T06:59:47Z +15882,2005-08-23T16:44:31Z,2028,312,2005-09-01T15:44:31Z,2,2020-02-15T06:59:47Z +15883,2005-08-23T16:44:56Z,2792,550,2005-08-24T22:42:56Z,1,2020-02-15T06:59:47Z +15884,2005-08-23T16:45:28Z,2255,81,2005-08-27T20:18:28Z,1,2020-02-15T06:59:47Z +15885,2005-08-23T16:50:43Z,2116,565,2005-08-29T20:19:43Z,1,2020-02-15T06:59:47Z +15886,2005-08-23T16:50:53Z,3038,91,2005-08-26T15:38:53Z,2,2020-02-15T06:59:47Z +15887,2005-08-23T16:54:09Z,4263,201,2005-08-26T13:20:09Z,2,2020-02-15T06:59:47Z +15888,2005-08-23T16:56:14Z,2955,321,2005-08-31T14:32:14Z,1,2020-02-15T06:59:47Z +15889,2005-08-23T16:57:43Z,787,137,2005-08-27T22:14:43Z,1,2020-02-15T06:59:47Z +15890,2005-08-23T16:58:12Z,3625,87,2005-08-24T12:23:12Z,1,2020-02-15T06:59:47Z +15891,2005-08-23T17:00:12Z,2168,52,2005-08-31T21:12:12Z,1,2020-02-15T06:59:47Z +15892,2005-08-23T17:01:00Z,1365,174,2005-08-28T12:50:00Z,1,2020-02-15T06:59:47Z +15893,2005-08-23T17:02:00Z,2571,438,2005-08-30T12:45:00Z,2,2020-02-15T06:59:47Z +15894,2006-02-14T15:16:03Z,4416,168,,1,2020-02-15T06:59:47Z +15895,2005-08-23T17:09:31Z,2275,342,2005-08-30T17:15:31Z,1,2020-02-15T06:59:47Z +15896,2005-08-23T17:09:56Z,528,585,2005-08-31T14:51:56Z,2,2020-02-15T06:59:47Z +15897,2005-08-23T17:12:31Z,1652,15,2005-08-30T17:22:31Z,1,2020-02-15T06:59:47Z +15898,2005-08-23T17:13:01Z,3502,88,2005-08-29T11:22:01Z,2,2020-02-15T06:59:47Z +15899,2005-08-23T17:16:28Z,3851,596,2005-08-29T21:46:28Z,2,2020-02-15T06:59:47Z +15900,2005-08-23T17:16:30Z,1112,562,2005-08-27T18:02:30Z,1,2020-02-15T06:59:47Z +15901,2005-08-23T17:19:17Z,2761,226,2005-08-30T14:24:17Z,2,2020-02-15T06:59:47Z +15902,2005-08-23T17:28:03Z,4500,172,2005-08-30T18:36:03Z,1,2020-02-15T06:59:47Z +15903,2005-08-23T17:30:40Z,1289,267,2005-08-29T14:12:40Z,1,2020-02-15T06:59:47Z +15904,2005-08-23T17:32:19Z,179,37,2005-08-24T21:05:19Z,2,2020-02-15T06:59:47Z +15905,2005-08-23T17:33:04Z,3631,59,2005-08-26T17:38:04Z,2,2020-02-15T06:59:47Z +15906,2005-08-23T17:36:00Z,3230,445,2005-08-28T15:32:00Z,2,2020-02-15T06:59:47Z +15907,2005-08-23T17:39:35Z,2898,2,2005-08-25T23:23:35Z,1,2020-02-15T06:59:47Z +15908,2005-08-23T17:42:00Z,2453,135,2005-08-31T22:32:00Z,1,2020-02-15T06:59:47Z +15909,2005-08-23T17:42:42Z,404,452,2005-08-26T20:25:42Z,1,2020-02-15T06:59:47Z +15910,2005-08-23T17:43:16Z,254,456,2005-08-24T21:55:16Z,2,2020-02-15T06:59:47Z +15911,2005-08-23T17:44:53Z,3006,582,2005-09-01T19:14:53Z,1,2020-02-15T06:59:47Z +15912,2005-08-23T17:47:40Z,3079,229,2005-08-31T14:43:40Z,2,2020-02-15T06:59:47Z +15913,2005-08-23T17:48:30Z,3894,93,2005-08-31T21:17:30Z,2,2020-02-15T06:59:47Z +15914,2005-08-23T17:49:26Z,747,557,2005-08-24T12:20:26Z,1,2020-02-15T06:59:47Z +15915,2005-08-23T17:52:01Z,3566,167,2005-08-24T20:40:01Z,2,2020-02-15T06:59:47Z +15916,2005-08-23T17:56:01Z,4580,327,2005-08-31T21:49:01Z,2,2020-02-15T06:59:47Z +15917,2005-08-23T17:57:28Z,2093,589,2005-08-29T20:03:28Z,1,2020-02-15T06:59:47Z +15918,2005-08-23T17:57:35Z,1456,262,2005-08-28T14:16:35Z,2,2020-02-15T06:59:47Z +15919,2005-08-23T18:01:31Z,1746,497,2005-08-24T16:27:31Z,1,2020-02-15T06:59:47Z +15920,2005-08-23T18:05:10Z,243,212,2005-08-26T18:09:10Z,1,2020-02-15T06:59:47Z +15921,2005-08-23T18:06:54Z,223,522,2005-08-30T20:19:54Z,2,2020-02-15T06:59:47Z +15922,2005-08-23T18:07:31Z,1702,263,2005-09-01T22:27:31Z,1,2020-02-15T06:59:47Z +15923,2005-08-23T18:08:19Z,1693,276,2005-08-26T18:06:19Z,2,2020-02-15T06:59:47Z +15924,2005-08-23T18:08:59Z,1114,541,2005-08-27T12:20:59Z,2,2020-02-15T06:59:47Z +15925,2005-08-23T18:15:06Z,3394,440,2005-08-26T18:09:06Z,2,2020-02-15T06:59:47Z +15926,2005-08-23T18:20:56Z,2231,151,2005-08-24T18:20:56Z,2,2020-02-15T06:59:47Z +15927,2005-08-23T18:23:11Z,2450,401,2005-08-24T15:09:11Z,1,2020-02-15T06:59:47Z +15928,2005-08-23T18:23:24Z,2086,75,2005-09-01T23:43:24Z,2,2020-02-15T06:59:47Z +15929,2005-08-23T18:23:30Z,1832,477,2005-08-27T17:04:30Z,1,2020-02-15T06:59:47Z +15930,2005-08-23T18:26:51Z,180,379,2005-08-31T16:12:51Z,1,2020-02-15T06:59:47Z +15931,2005-08-23T18:28:09Z,1128,237,2005-08-28T23:08:09Z,1,2020-02-15T06:59:47Z +15932,2005-08-23T18:31:40Z,4554,405,2005-08-24T16:30:40Z,2,2020-02-15T06:59:47Z +15933,2005-08-23T18:36:44Z,3493,176,2005-08-26T12:41:44Z,2,2020-02-15T06:59:47Z +15934,2005-08-23T18:40:41Z,994,216,2005-08-25T00:18:41Z,2,2020-02-15T06:59:47Z +15935,2005-08-23T18:41:11Z,907,361,2005-08-25T20:59:11Z,1,2020-02-15T06:59:47Z +15936,2005-08-23T18:43:11Z,1293,411,2005-08-26T00:19:11Z,1,2020-02-15T06:59:47Z +15937,2005-08-23T18:43:22Z,2882,194,2005-08-24T22:53:22Z,1,2020-02-15T06:59:47Z +15938,2005-08-23T18:43:31Z,2884,341,2005-08-31T00:26:31Z,2,2020-02-15T06:59:47Z +15939,2005-08-23T18:44:21Z,3209,382,2005-09-01T17:25:21Z,2,2020-02-15T06:59:47Z +15940,2005-08-23T18:45:06Z,1606,86,2005-08-30T13:00:06Z,2,2020-02-15T06:59:47Z +15941,2005-08-23T18:46:44Z,4304,424,2005-08-31T17:31:44Z,1,2020-02-15T06:59:47Z +15942,2005-08-23T18:48:40Z,1096,210,2005-09-01T18:39:40Z,2,2020-02-15T06:59:47Z +15943,2005-08-23T18:49:32Z,706,462,2005-08-27T19:20:32Z,1,2020-02-15T06:59:47Z +15944,2005-08-23T18:50:54Z,4559,348,2005-08-25T18:04:54Z,2,2020-02-15T06:59:47Z +15945,2005-08-23T18:51:41Z,3633,43,2005-08-28T18:42:41Z,1,2020-02-15T06:59:47Z +15946,2005-08-23T18:54:07Z,4549,561,2005-08-28T21:21:07Z,1,2020-02-15T06:59:47Z +15947,2005-08-23T18:54:32Z,1877,580,2005-08-24T22:39:32Z,2,2020-02-15T06:59:47Z +15948,2005-08-23T18:59:33Z,432,520,2005-08-31T13:02:33Z,2,2020-02-15T06:59:47Z +15949,2005-08-23T19:06:04Z,1199,386,2005-08-26T18:39:04Z,2,2020-02-15T06:59:47Z +15950,2005-08-23T19:09:39Z,1374,280,2005-08-31T17:03:39Z,2,2020-02-15T06:59:47Z +15951,2005-08-23T19:10:32Z,3018,446,2005-08-29T14:17:32Z,1,2020-02-15T06:59:47Z +15952,2005-08-23T19:11:29Z,1314,224,2005-08-28T14:41:29Z,1,2020-02-15T06:59:47Z +15953,2005-08-23T19:13:46Z,3727,540,2005-08-28T23:05:46Z,1,2020-02-15T06:59:47Z +15954,2005-08-23T19:14:07Z,576,460,2005-08-24T20:21:07Z,1,2020-02-15T06:59:47Z +15955,2005-08-23T19:19:06Z,2247,349,2005-08-31T23:34:06Z,1,2020-02-15T06:59:47Z +15956,2005-08-23T19:19:21Z,2763,354,2005-08-25T22:15:21Z,2,2020-02-15T06:59:47Z +15957,2005-08-23T19:21:22Z,74,418,2005-08-31T16:42:22Z,1,2020-02-15T06:59:47Z +15958,2005-08-23T19:22:36Z,4164,492,2005-08-30T01:03:36Z,1,2020-02-15T06:59:47Z +15959,2005-08-23T19:27:04Z,547,415,2005-08-24T15:24:04Z,1,2020-02-15T06:59:47Z +15960,2005-08-23T19:35:42Z,1497,431,2005-08-26T17:36:42Z,2,2020-02-15T06:59:47Z +15961,2005-08-23T19:35:42Z,4006,200,2005-08-30T22:52:42Z,1,2020-02-15T06:59:47Z +15962,2005-08-23T19:42:04Z,3491,160,2005-08-25T23:53:04Z,1,2020-02-15T06:59:47Z +15963,2005-08-23T19:42:46Z,3819,134,2005-08-25T22:12:46Z,1,2020-02-15T06:59:47Z +15964,2005-08-23T19:45:25Z,251,141,2005-08-26T22:43:25Z,2,2020-02-15T06:59:47Z +15965,2005-08-23T19:46:39Z,3449,509,2005-08-24T20:08:39Z,2,2020-02-15T06:59:47Z +15966,2006-02-14T15:16:03Z,4472,374,,1,2020-02-15T06:59:47Z +15967,2005-08-23T19:50:06Z,321,257,2005-08-29T14:51:06Z,1,2020-02-15T06:59:47Z +15968,2005-08-23T19:51:29Z,3598,257,2005-08-24T15:07:29Z,1,2020-02-15T06:59:47Z +15969,2005-08-23T19:51:30Z,1807,327,2005-08-31T23:50:30Z,1,2020-02-15T06:59:47Z +15970,2005-08-23T19:54:24Z,4509,395,2005-08-24T18:07:24Z,1,2020-02-15T06:59:47Z +15971,2005-08-23T19:59:33Z,3456,187,2005-09-02T01:28:33Z,1,2020-02-15T06:59:47Z +15972,2005-08-23T20:00:30Z,4428,25,2005-08-30T00:25:30Z,1,2020-02-15T06:59:47Z +15973,2005-08-23T20:04:41Z,2766,343,2005-09-01T20:08:41Z,2,2020-02-15T06:59:47Z +15974,2005-08-23T20:06:04Z,3518,201,2005-08-27T17:33:04Z,2,2020-02-15T06:59:47Z +15975,2005-08-23T20:06:23Z,2723,174,2005-08-27T19:52:23Z,1,2020-02-15T06:59:47Z +15976,2005-08-23T20:07:08Z,835,227,2005-08-25T01:47:08Z,2,2020-02-15T06:59:47Z +15977,2005-08-23T20:07:10Z,1031,550,2005-09-01T22:12:10Z,2,2020-02-15T06:59:47Z +15978,2005-08-23T20:08:18Z,4444,536,2005-08-31T17:35:18Z,2,2020-02-15T06:59:47Z +15979,2005-08-23T20:08:26Z,3733,536,2005-08-26T19:19:26Z,1,2020-02-15T06:59:47Z +15980,2005-08-23T20:10:13Z,3365,196,2005-08-24T17:44:13Z,2,2020-02-15T06:59:47Z +15981,2005-08-23T20:12:17Z,2867,489,2005-08-30T20:43:17Z,1,2020-02-15T06:59:47Z +15982,2005-08-23T20:13:31Z,2920,370,2005-09-01T21:51:31Z,2,2020-02-15T06:59:47Z +15983,2005-08-23T20:13:38Z,3318,464,2005-08-30T18:42:38Z,1,2020-02-15T06:59:47Z +15984,2005-08-23T20:16:27Z,2011,495,2005-08-27T01:43:27Z,1,2020-02-15T06:59:47Z +15985,2005-08-23T20:20:23Z,2646,179,2005-08-26T20:55:23Z,1,2020-02-15T06:59:47Z +15986,2005-08-23T20:20:37Z,3472,226,2005-08-29T20:49:37Z,1,2020-02-15T06:59:47Z +15987,2005-08-23T20:22:17Z,3150,302,2005-08-31T21:46:17Z,2,2020-02-15T06:59:47Z +15988,2005-08-23T20:23:08Z,3932,400,2005-08-28T20:50:08Z,1,2020-02-15T06:59:47Z +15989,2005-08-23T20:24:36Z,38,96,2005-08-26T20:35:36Z,1,2020-02-15T06:59:47Z +15990,2005-08-23T20:25:11Z,3233,512,2005-08-25T15:01:11Z,2,2020-02-15T06:59:47Z +15991,2005-08-23T20:27:34Z,2078,203,2005-08-28T16:48:34Z,2,2020-02-15T06:59:47Z +15992,2005-08-23T20:28:32Z,3334,589,2005-08-24T21:35:32Z,1,2020-02-15T06:59:47Z +15993,2005-08-23T20:28:44Z,1638,12,2005-08-27T16:23:44Z,2,2020-02-15T06:59:47Z +15994,2005-08-23T20:29:10Z,438,595,2005-08-28T01:41:10Z,2,2020-02-15T06:59:47Z +15995,2005-08-23T20:29:56Z,1122,377,2005-08-30T18:09:56Z,1,2020-02-15T06:59:47Z +15996,2005-08-23T20:31:38Z,3098,151,2005-08-29T20:58:38Z,1,2020-02-15T06:59:47Z +15997,2005-08-23T20:40:31Z,2843,447,2005-08-26T19:47:31Z,1,2020-02-15T06:59:47Z +15998,2005-08-23T20:41:09Z,1229,545,2005-08-27T00:20:09Z,1,2020-02-15T06:59:47Z +15999,2005-08-23T20:44:10Z,2584,377,2005-08-31T02:38:10Z,2,2020-02-15T06:59:47Z +16000,2005-08-23T20:44:36Z,282,71,2005-08-25T02:29:36Z,1,2020-02-15T06:59:47Z +16001,2005-08-23T20:45:53Z,245,108,2005-08-27T15:52:53Z,1,2020-02-15T06:59:47Z +16002,2005-08-23T20:47:12Z,2770,73,2005-08-27T23:07:12Z,1,2020-02-15T06:59:47Z +16003,2005-08-23T20:47:28Z,3413,577,2005-08-31T23:22:28Z,1,2020-02-15T06:59:47Z +16004,2005-08-23T20:53:20Z,2223,147,2005-08-31T15:15:20Z,2,2020-02-15T06:59:47Z +16005,2005-08-23T21:00:22Z,3265,466,2005-09-02T02:35:22Z,1,2020-02-15T06:59:47Z +16006,2005-08-23T21:01:09Z,240,533,2005-08-25T19:33:09Z,1,2020-02-15T06:59:47Z +16007,2005-08-23T21:02:43Z,3236,126,2005-08-30T23:37:43Z,2,2020-02-15T06:59:47Z +16008,2005-08-23T21:04:51Z,3273,189,2005-08-31T22:09:51Z,1,2020-02-15T06:59:47Z +16009,2005-08-23T21:07:59Z,3055,133,2005-08-29T16:54:59Z,2,2020-02-15T06:59:47Z +16010,2005-08-23T21:10:24Z,2539,173,2005-08-25T17:58:24Z,1,2020-02-15T06:59:47Z +16011,2005-08-23T21:11:33Z,1093,389,2005-08-31T17:51:33Z,1,2020-02-15T06:59:47Z +16012,2005-08-23T21:13:39Z,2421,80,2005-08-30T23:52:39Z,2,2020-02-15T06:59:47Z +16013,2005-08-23T21:17:17Z,561,462,2005-08-26T21:15:17Z,1,2020-02-15T06:59:47Z +16014,2005-08-23T21:18:31Z,3322,532,2005-08-31T17:28:31Z,2,2020-02-15T06:59:47Z +16015,2005-08-23T21:25:03Z,3113,50,2005-08-24T20:05:03Z,2,2020-02-15T06:59:47Z +16016,2005-08-23T21:26:35Z,3374,595,2005-08-28T16:06:35Z,2,2020-02-15T06:59:47Z +16017,2005-08-23T21:27:11Z,664,535,2005-08-24T23:22:11Z,1,2020-02-15T06:59:47Z +16018,2005-08-23T21:27:35Z,897,439,2005-08-30T00:36:35Z,1,2020-02-15T06:59:47Z +16019,2005-08-23T21:30:45Z,3093,278,2005-08-27T23:45:45Z,2,2020-02-15T06:59:47Z +16020,2005-08-23T21:34:33Z,277,311,2005-09-01T18:17:33Z,1,2020-02-15T06:59:47Z +16021,2005-08-23T21:37:59Z,3057,314,2005-08-31T01:52:59Z,1,2020-02-15T06:59:47Z +16022,2005-08-23T21:44:27Z,2925,504,2005-08-28T01:52:27Z,1,2020-02-15T06:59:47Z +16023,2005-08-23T21:45:02Z,2347,124,2005-08-24T21:28:02Z,1,2020-02-15T06:59:47Z +16024,2005-08-23T21:46:47Z,2910,473,2005-08-27T02:06:47Z,1,2020-02-15T06:59:47Z +16025,2005-08-23T21:48:54Z,1777,569,2005-08-24T22:05:54Z,2,2020-02-15T06:59:47Z +16026,2005-08-23T21:49:22Z,467,484,2005-08-27T00:47:22Z,1,2020-02-15T06:59:47Z +16027,2005-08-23T21:49:33Z,1724,160,2005-08-30T16:19:33Z,2,2020-02-15T06:59:47Z +16028,2005-08-23T21:52:56Z,2515,119,2005-08-30T18:16:56Z,2,2020-02-15T06:59:47Z +16029,2005-08-23T21:54:02Z,953,143,2005-08-29T23:55:02Z,1,2020-02-15T06:59:47Z +16030,2005-08-23T21:56:04Z,4161,137,2005-08-31T01:24:04Z,2,2020-02-15T06:59:47Z +16031,2005-08-23T21:59:26Z,1843,102,2005-08-29T20:15:26Z,1,2020-02-15T06:59:47Z +16032,2005-08-23T21:59:57Z,2527,447,2005-08-31T22:46:57Z,2,2020-02-15T06:59:47Z +16033,2005-08-23T22:06:15Z,760,226,2005-09-01T02:36:15Z,2,2020-02-15T06:59:47Z +16034,2005-08-23T22:06:34Z,655,502,2005-08-29T18:44:34Z,1,2020-02-15T06:59:47Z +16035,2005-08-23T22:08:04Z,549,37,2005-08-28T03:46:04Z,1,2020-02-15T06:59:47Z +16036,2005-08-23T22:12:44Z,1372,425,2005-08-25T17:48:44Z,2,2020-02-15T06:59:47Z +16037,2005-08-23T22:13:04Z,341,45,2005-09-01T02:48:04Z,2,2020-02-15T06:59:47Z +16038,2005-08-23T22:14:31Z,2612,172,2005-08-30T03:28:31Z,1,2020-02-15T06:59:47Z +16039,2005-08-23T22:18:51Z,545,78,2005-08-31T19:55:51Z,2,2020-02-15T06:59:47Z +16040,2005-08-23T22:19:33Z,3524,195,2005-09-02T02:19:33Z,2,2020-02-15T06:59:47Z +16041,2005-08-23T22:20:26Z,4116,121,2005-08-25T20:14:26Z,2,2020-02-15T06:59:47Z +16042,2005-08-23T22:20:40Z,629,131,2005-08-24T17:54:40Z,1,2020-02-15T06:59:47Z +16043,2005-08-23T22:21:03Z,3869,526,2005-08-31T03:09:03Z,2,2020-02-15T06:59:47Z +16044,2005-08-23T22:24:39Z,1312,468,2005-08-25T04:08:39Z,1,2020-02-15T06:59:47Z +16045,2005-08-23T22:25:26Z,772,14,2005-08-25T23:54:26Z,1,2020-02-15T06:59:47Z +16046,2005-08-23T22:26:47Z,4364,74,2005-08-27T18:02:47Z,2,2020-02-15T06:59:47Z +16047,2005-08-23T22:42:48Z,2088,114,2005-08-25T02:48:48Z,2,2020-02-15T06:59:47Z +16048,2005-08-23T22:43:07Z,2019,103,2005-08-31T21:33:07Z,1,2020-02-15T06:59:47Z +16049,2005-08-23T22:50:12Z,2666,393,2005-08-30T01:01:12Z,2,2020-02-15T06:59:47Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/staff.csv b/drivers/csv/testdata/sakila-csv-noheader/staff.csv new file mode 100644 index 00000000..f4760fa3 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/staff.csv @@ -0,0 +1,2 @@ +1,Mike,Hillyer,3,,Mike.Hillyer@sakilastaff.com,1,1,Mike,8cb2237d0679ca88db6464eac60da96345513964,2020-02-15T06:59:28Z +2,Jon,Stephens,4,,Jon.Stephens@sakilastaff.com,2,1,Jon,8cb2237d0679ca88db6464eac60da96345513964,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv-noheader/store.csv b/drivers/csv/testdata/sakila-csv-noheader/store.csv new file mode 100644 index 00000000..4e3e3b9a --- /dev/null +++ b/drivers/csv/testdata/sakila-csv-noheader/store.csv @@ -0,0 +1,2 @@ +1,1,1,2020-02-15T06:59:28Z +2,2,2,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv/actor.csv b/drivers/csv/testdata/sakila-csv/actor.csv new file mode 100644 index 00000000..66e2629a --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/actor.csv @@ -0,0 +1,201 @@ +actor_id,first_name,last_name,last_update +1,PENELOPE,GUINESS,2020-02-15T06:59:28Z +2,NICK,WAHLBERG,2020-02-15T06:59:28Z +3,ED,CHASE,2020-02-15T06:59:28Z +4,JENNIFER,DAVIS,2020-02-15T06:59:28Z +5,JOHNNY,LOLLOBRIGIDA,2020-02-15T06:59:28Z +6,BETTE,NICHOLSON,2020-02-15T06:59:28Z +7,GRACE,MOSTEL,2020-02-15T06:59:28Z +8,MATTHEW,JOHANSSON,2020-02-15T06:59:28Z +9,JOE,SWANK,2020-02-15T06:59:28Z +10,CHRISTIAN,GABLE,2020-02-15T06:59:28Z +11,ZERO,CAGE,2020-02-15T06:59:28Z +12,KARL,BERRY,2020-02-15T06:59:28Z +13,UMA,WOOD,2020-02-15T06:59:28Z +14,VIVIEN,BERGEN,2020-02-15T06:59:28Z +15,CUBA,OLIVIER,2020-02-15T06:59:28Z +16,FRED,COSTNER,2020-02-15T06:59:28Z +17,HELEN,VOIGHT,2020-02-15T06:59:28Z +18,DAN,TORN,2020-02-15T06:59:28Z +19,BOB,FAWCETT,2020-02-15T06:59:28Z +20,LUCILLE,TRACY,2020-02-15T06:59:28Z +21,KIRSTEN,PALTROW,2020-02-15T06:59:28Z +22,ELVIS,MARX,2020-02-15T06:59:28Z +23,SANDRA,KILMER,2020-02-15T06:59:28Z +24,CAMERON,STREEP,2020-02-15T06:59:28Z +25,KEVIN,BLOOM,2020-02-15T06:59:28Z +26,RIP,CRAWFORD,2020-02-15T06:59:28Z +27,JULIA,MCQUEEN,2020-02-15T06:59:28Z +28,WOODY,HOFFMAN,2020-02-15T06:59:28Z +29,ALEC,WAYNE,2020-02-15T06:59:28Z +30,SANDRA,PECK,2020-02-15T06:59:28Z +31,SISSY,SOBIESKI,2020-02-15T06:59:28Z +32,TIM,HACKMAN,2020-02-15T06:59:28Z +33,MILLA,PECK,2020-02-15T06:59:28Z +34,AUDREY,OLIVIER,2020-02-15T06:59:28Z +35,JUDY,DEAN,2020-02-15T06:59:28Z +36,BURT,DUKAKIS,2020-02-15T06:59:28Z +37,VAL,BOLGER,2020-02-15T06:59:28Z +38,TOM,MCKELLEN,2020-02-15T06:59:28Z +39,GOLDIE,BRODY,2020-02-15T06:59:28Z +40,JOHNNY,CAGE,2020-02-15T06:59:28Z +41,JODIE,DEGENERES,2020-02-15T06:59:28Z +42,TOM,MIRANDA,2020-02-15T06:59:28Z +43,KIRK,JOVOVICH,2020-02-15T06:59:28Z +44,NICK,STALLONE,2020-02-15T06:59:28Z +45,REESE,KILMER,2020-02-15T06:59:28Z +46,PARKER,GOLDBERG,2020-02-15T06:59:28Z +47,JULIA,BARRYMORE,2020-02-15T06:59:28Z +48,FRANCES,DAY-LEWIS,2020-02-15T06:59:28Z +49,ANNE,CRONYN,2020-02-15T06:59:28Z +50,NATALIE,HOPKINS,2020-02-15T06:59:28Z +51,GARY,PHOENIX,2020-02-15T06:59:28Z +52,CARMEN,HUNT,2020-02-15T06:59:28Z +53,MENA,TEMPLE,2020-02-15T06:59:28Z +54,PENELOPE,PINKETT,2020-02-15T06:59:28Z +55,FAY,KILMER,2020-02-15T06:59:28Z +56,DAN,HARRIS,2020-02-15T06:59:28Z +57,JUDE,CRUISE,2020-02-15T06:59:28Z +58,CHRISTIAN,AKROYD,2020-02-15T06:59:28Z +59,DUSTIN,TAUTOU,2020-02-15T06:59:28Z +60,HENRY,BERRY,2020-02-15T06:59:28Z +61,CHRISTIAN,NEESON,2020-02-15T06:59:28Z +62,JAYNE,NEESON,2020-02-15T06:59:28Z +63,CAMERON,WRAY,2020-02-15T06:59:28Z +64,RAY,JOHANSSON,2020-02-15T06:59:28Z +65,ANGELA,HUDSON,2020-02-15T06:59:28Z +66,MARY,TANDY,2020-02-15T06:59:28Z +67,JESSICA,BAILEY,2020-02-15T06:59:28Z +68,RIP,WINSLET,2020-02-15T06:59:28Z +69,KENNETH,PALTROW,2020-02-15T06:59:28Z +70,MICHELLE,MCCONAUGHEY,2020-02-15T06:59:28Z +71,ADAM,GRANT,2020-02-15T06:59:28Z +72,SEAN,WILLIAMS,2020-02-15T06:59:28Z +73,GARY,PENN,2020-02-15T06:59:28Z +74,MILLA,KEITEL,2020-02-15T06:59:28Z +75,BURT,POSEY,2020-02-15T06:59:28Z +76,ANGELINA,ASTAIRE,2020-02-15T06:59:28Z +77,CARY,MCCONAUGHEY,2020-02-15T06:59:28Z +78,GROUCHO,SINATRA,2020-02-15T06:59:28Z +79,MAE,HOFFMAN,2020-02-15T06:59:28Z +80,RALPH,CRUZ,2020-02-15T06:59:28Z +81,SCARLETT,DAMON,2020-02-15T06:59:28Z +82,WOODY,JOLIE,2020-02-15T06:59:28Z +83,BEN,WILLIS,2020-02-15T06:59:28Z +84,JAMES,PITT,2020-02-15T06:59:28Z +85,MINNIE,ZELLWEGER,2020-02-15T06:59:28Z +86,GREG,CHAPLIN,2020-02-15T06:59:28Z +87,SPENCER,PECK,2020-02-15T06:59:28Z +88,KENNETH,PESCI,2020-02-15T06:59:28Z +89,CHARLIZE,DENCH,2020-02-15T06:59:28Z +90,SEAN,GUINESS,2020-02-15T06:59:28Z +91,CHRISTOPHER,BERRY,2020-02-15T06:59:28Z +92,KIRSTEN,AKROYD,2020-02-15T06:59:28Z +93,ELLEN,PRESLEY,2020-02-15T06:59:28Z +94,KENNETH,TORN,2020-02-15T06:59:28Z +95,DARYL,WAHLBERG,2020-02-15T06:59:28Z +96,GENE,WILLIS,2020-02-15T06:59:28Z +97,MEG,HAWKE,2020-02-15T06:59:28Z +98,CHRIS,BRIDGES,2020-02-15T06:59:28Z +99,JIM,MOSTEL,2020-02-15T06:59:28Z +100,SPENCER,DEPP,2020-02-15T06:59:28Z +101,SUSAN,DAVIS,2020-02-15T06:59:28Z +102,WALTER,TORN,2020-02-15T06:59:28Z +103,MATTHEW,LEIGH,2020-02-15T06:59:28Z +104,PENELOPE,CRONYN,2020-02-15T06:59:28Z +105,SIDNEY,CROWE,2020-02-15T06:59:28Z +106,GROUCHO,DUNST,2020-02-15T06:59:28Z +107,GINA,DEGENERES,2020-02-15T06:59:28Z +108,WARREN,NOLTE,2020-02-15T06:59:28Z +109,SYLVESTER,DERN,2020-02-15T06:59:28Z +110,SUSAN,DAVIS,2020-02-15T06:59:28Z +111,CAMERON,ZELLWEGER,2020-02-15T06:59:28Z +112,RUSSELL,BACALL,2020-02-15T06:59:28Z +113,MORGAN,HOPKINS,2020-02-15T06:59:28Z +114,MORGAN,MCDORMAND,2020-02-15T06:59:28Z +115,HARRISON,BALE,2020-02-15T06:59:28Z +116,DAN,STREEP,2020-02-15T06:59:28Z +117,RENEE,TRACY,2020-02-15T06:59:28Z +118,CUBA,ALLEN,2020-02-15T06:59:28Z +119,WARREN,JACKMAN,2020-02-15T06:59:28Z +120,PENELOPE,MONROE,2020-02-15T06:59:28Z +121,LIZA,BERGMAN,2020-02-15T06:59:28Z +122,SALMA,NOLTE,2020-02-15T06:59:28Z +123,JULIANNE,DENCH,2020-02-15T06:59:28Z +124,SCARLETT,BENING,2020-02-15T06:59:28Z +125,ALBERT,NOLTE,2020-02-15T06:59:28Z +126,FRANCES,TOMEI,2020-02-15T06:59:28Z +127,KEVIN,GARLAND,2020-02-15T06:59:28Z +128,CATE,MCQUEEN,2020-02-15T06:59:28Z +129,DARYL,CRAWFORD,2020-02-15T06:59:28Z +130,GRETA,KEITEL,2020-02-15T06:59:28Z +131,JANE,JACKMAN,2020-02-15T06:59:28Z +132,ADAM,HOPPER,2020-02-15T06:59:28Z +133,RICHARD,PENN,2020-02-15T06:59:28Z +134,GENE,HOPKINS,2020-02-15T06:59:28Z +135,RITA,REYNOLDS,2020-02-15T06:59:28Z +136,ED,MANSFIELD,2020-02-15T06:59:28Z +137,MORGAN,WILLIAMS,2020-02-15T06:59:28Z +138,LUCILLE,DEE,2020-02-15T06:59:28Z +139,EWAN,GOODING,2020-02-15T06:59:28Z +140,WHOOPI,HURT,2020-02-15T06:59:28Z +141,CATE,HARRIS,2020-02-15T06:59:28Z +142,JADA,RYDER,2020-02-15T06:59:28Z +143,RIVER,DEAN,2020-02-15T06:59:28Z +144,ANGELA,WITHERSPOON,2020-02-15T06:59:28Z +145,KIM,ALLEN,2020-02-15T06:59:28Z +146,ALBERT,JOHANSSON,2020-02-15T06:59:28Z +147,FAY,WINSLET,2020-02-15T06:59:28Z +148,EMILY,DEE,2020-02-15T06:59:28Z +149,RUSSELL,TEMPLE,2020-02-15T06:59:28Z +150,JAYNE,NOLTE,2020-02-15T06:59:28Z +151,GEOFFREY,HESTON,2020-02-15T06:59:28Z +152,BEN,HARRIS,2020-02-15T06:59:28Z +153,MINNIE,KILMER,2020-02-15T06:59:28Z +154,MERYL,GIBSON,2020-02-15T06:59:28Z +155,IAN,TANDY,2020-02-15T06:59:28Z +156,FAY,WOOD,2020-02-15T06:59:28Z +157,GRETA,MALDEN,2020-02-15T06:59:28Z +158,VIVIEN,BASINGER,2020-02-15T06:59:28Z +159,LAURA,BRODY,2020-02-15T06:59:28Z +160,CHRIS,DEPP,2020-02-15T06:59:28Z +161,HARVEY,HOPE,2020-02-15T06:59:28Z +162,OPRAH,KILMER,2020-02-15T06:59:28Z +163,CHRISTOPHER,WEST,2020-02-15T06:59:28Z +164,HUMPHREY,WILLIS,2020-02-15T06:59:28Z +165,AL,GARLAND,2020-02-15T06:59:28Z +166,NICK,DEGENERES,2020-02-15T06:59:28Z +167,LAURENCE,BULLOCK,2020-02-15T06:59:28Z +168,WILL,WILSON,2020-02-15T06:59:28Z +169,KENNETH,HOFFMAN,2020-02-15T06:59:28Z +170,MENA,HOPPER,2020-02-15T06:59:28Z +171,OLYMPIA,PFEIFFER,2020-02-15T06:59:28Z +172,GROUCHO,WILLIAMS,2020-02-15T06:59:28Z +173,ALAN,DREYFUSS,2020-02-15T06:59:28Z +174,MICHAEL,BENING,2020-02-15T06:59:28Z +175,WILLIAM,HACKMAN,2020-02-15T06:59:28Z +176,JON,CHASE,2020-02-15T06:59:28Z +177,GENE,MCKELLEN,2020-02-15T06:59:28Z +178,LISA,MONROE,2020-02-15T06:59:28Z +179,ED,GUINESS,2020-02-15T06:59:28Z +180,JEFF,SILVERSTONE,2020-02-15T06:59:28Z +181,MATTHEW,CARREY,2020-02-15T06:59:28Z +182,DEBBIE,AKROYD,2020-02-15T06:59:28Z +183,RUSSELL,CLOSE,2020-02-15T06:59:28Z +184,HUMPHREY,GARLAND,2020-02-15T06:59:28Z +185,MICHAEL,BOLGER,2020-02-15T06:59:28Z +186,JULIA,ZELLWEGER,2020-02-15T06:59:28Z +187,RENEE,BALL,2020-02-15T06:59:28Z +188,ROCK,DUKAKIS,2020-02-15T06:59:28Z +189,CUBA,BIRCH,2020-02-15T06:59:28Z +190,AUDREY,BAILEY,2020-02-15T06:59:28Z +191,GREGORY,GOODING,2020-02-15T06:59:28Z +192,JOHN,SUVARI,2020-02-15T06:59:28Z +193,BURT,TEMPLE,2020-02-15T06:59:28Z +194,MERYL,ALLEN,2020-02-15T06:59:28Z +195,JAYNE,SILVERSTONE,2020-02-15T06:59:28Z +196,BELA,WALKEN,2020-02-15T06:59:28Z +197,REESE,WEST,2020-02-15T06:59:28Z +198,MARY,KEITEL,2020-02-15T06:59:28Z +199,JULIA,FAWCETT,2020-02-15T06:59:28Z +200,THORA,TEMPLE,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv/address.csv b/drivers/csv/testdata/sakila-csv/address.csv new file mode 100644 index 00000000..3d534967 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/address.csv @@ -0,0 +1,604 @@ +address_id,address,address2,district,city_id,postal_code,phone,last_update +1,47 MySakila Drive,," ",300,," ",2020-02-15T06:59:28Z +2,28 MySQL Boulevard,," ",576,," ",2020-02-15T06:59:28Z +3,23 Workhaven Lane,," ",300,," ",2020-02-15T06:59:28Z +4,1411 Lillydale Drive,," ",576,," ",2020-02-15T06:59:28Z +5,1913 Hanoi Way,," ",463,35200," ",2020-02-15T06:59:28Z +6,1121 Loja Avenue,," ",449,17886," ",2020-02-15T06:59:28Z +7,692 Joliet Street,," ",38,83579," ",2020-02-15T06:59:28Z +8,1566 Inegl Manor,," ",349,53561," ",2020-02-15T06:59:28Z +9,53 Idfu Parkway,," ",361,42399," ",2020-02-15T06:59:28Z +10,1795 Santiago de Compostela Way,," ",295,18743," ",2020-02-15T06:59:28Z +11,900 Santiago de Compostela Parkway,," ",280,93896," ",2020-02-15T06:59:28Z +12,478 Joliet Way,," ",200,77948," ",2020-02-15T06:59:28Z +13,613 Korolev Drive,," ",329,45844," ",2020-02-15T06:59:28Z +14,1531 Sal Drive,," ",162,53628," ",2020-02-15T06:59:28Z +15,1542 Tarlac Parkway,," ",440,1027," ",2020-02-15T06:59:28Z +16,808 Bhopal Manor,," ",582,10672," ",2020-02-15T06:59:28Z +17,270 Amroha Parkway,," ",384,29610," ",2020-02-15T06:59:28Z +18,770 Bydgoszcz Avenue,," ",120,16266," ",2020-02-15T06:59:28Z +19,419 Iligan Lane,," ",76,72878," ",2020-02-15T06:59:28Z +20,360 Toulouse Parkway,," ",495,54308," ",2020-02-15T06:59:28Z +21,270 Toulon Boulevard,," ",156,81766," ",2020-02-15T06:59:28Z +22,320 Brest Avenue,," ",252,43331," ",2020-02-15T06:59:28Z +23,1417 Lancaster Avenue,," ",267,72192," ",2020-02-15T06:59:28Z +24,1688 Okara Way,," ",327,21954," ",2020-02-15T06:59:28Z +25,262 A Corua (La Corua) Parkway,," ",525,34418," ",2020-02-15T06:59:28Z +26,28 Charlotte Amalie Street,," ",443,37551," ",2020-02-15T06:59:28Z +27,1780 Hino Boulevard,," ",303,7716," ",2020-02-15T06:59:28Z +28,96 Tafuna Way,," ",128,99865," ",2020-02-15T06:59:28Z +29,934 San Felipe de Puerto Plata Street,," ",472,99780," ",2020-02-15T06:59:28Z +30,18 Duisburg Boulevard,," ",121,58327," ",2020-02-15T06:59:28Z +31,217 Botshabelo Place,," ",138,49521," ",2020-02-15T06:59:28Z +32,1425 Shikarpur Manor,," ",346,65599," ",2020-02-15T06:59:28Z +33,786 Aurora Avenue,," ",474,65750," ",2020-02-15T06:59:28Z +34,1668 Anpolis Street,," ",316,50199," ",2020-02-15T06:59:28Z +35,33 Gorontalo Way,," ",257,30348," ",2020-02-15T06:59:28Z +36,176 Mandaluyong Place,," ",239,65213," ",2020-02-15T06:59:28Z +37,127 Purnea (Purnia) Manor,," ",17,79388," ",2020-02-15T06:59:28Z +38,61 Tama Street,," ",284,94065," ",2020-02-15T06:59:28Z +39,391 Callao Drive,," ",544,34021," ",2020-02-15T06:59:28Z +40,334 Munger (Monghyr) Lane,," ",31,38145," ",2020-02-15T06:59:28Z +41,1440 Fukuyama Loop,," ",362,47929," ",2020-02-15T06:59:28Z +42,269 Cam Ranh Parkway,," ",115,34689," ",2020-02-15T06:59:28Z +43,306 Antofagasta Place,," ",569,3989," ",2020-02-15T06:59:28Z +44,671 Graz Street,," ",353,94399," ",2020-02-15T06:59:28Z +45,42 Brindisi Place,," ",586,16744," ",2020-02-15T06:59:28Z +46,1632 Bislig Avenue,," ",394,61117," ",2020-02-15T06:59:28Z +47,1447 Imus Way,," ",167,48942," ",2020-02-15T06:59:28Z +48,1998 Halifax Drive,," ",308,76022," ",2020-02-15T06:59:28Z +49,1718 Valencia Street,," ",27,37359," ",2020-02-15T06:59:28Z +50,46 Pjatigorsk Lane,," ",343,23616," ",2020-02-15T06:59:28Z +51,686 Garland Manor,," ",247,52535," ",2020-02-15T06:59:28Z +52,909 Garland Manor,," ",367,69367," ",2020-02-15T06:59:28Z +53,725 Isesaki Place,," ",237,74428," ",2020-02-15T06:59:28Z +54,115 Hidalgo Parkway,," ",379,80168," ",2020-02-15T06:59:28Z +55,1135 Izumisano Parkway,," ",171,48150," ",2020-02-15T06:59:28Z +56,939 Probolinggo Loop,," ",1,4166," ",2020-02-15T06:59:28Z +57,17 Kabul Boulevard,," ",355,38594," ",2020-02-15T06:59:28Z +58,1964 Allappuzha (Alleppey) Street,," ",227,48980," ",2020-02-15T06:59:28Z +59,1697 Kowloon and New Kowloon Loop,," ",49,57807," ",2020-02-15T06:59:28Z +60,1668 Saint Louis Place,," ",397,39072," ",2020-02-15T06:59:28Z +61,943 Tokat Street,," ",560,45428," ",2020-02-15T06:59:28Z +62,1114 Liepaja Street,," ",282,69226," ",2020-02-15T06:59:28Z +63,1213 Ranchi Parkway,," ",350,94352," ",2020-02-15T06:59:28Z +64,81 Hodeida Way,," ",231,55561," ",2020-02-15T06:59:28Z +65,915 Ponce Place,," ",56,83980," ",2020-02-15T06:59:28Z +66,1717 Guadalajara Lane,," ",441,85505," ",2020-02-15T06:59:28Z +67,1214 Hanoi Way,," ",306,67055," ",2020-02-15T06:59:28Z +68,1966 Amroha Avenue,," ",139,70385," ",2020-02-15T06:59:28Z +69,698 Otsu Street,," ",105,71110," ",2020-02-15T06:59:28Z +70,1150 Kimchon Manor,," ",321,96109," ",2020-02-15T06:59:28Z +71,1586 Guaruj Place,," ",579,5135," ",2020-02-15T06:59:28Z +72,57 Arlington Manor,," ",475,48960," ",2020-02-15T06:59:28Z +73,1031 Daugavpils Parkway,," ",63,59025," ",2020-02-15T06:59:28Z +74,1124 Buenaventura Drive,," ",13,6856," ",2020-02-15T06:59:28Z +75,492 Cam Ranh Street,," ",61,50805," ",2020-02-15T06:59:28Z +76,89 Allappuzha (Alleppey) Manor,," ",517,75444," ",2020-02-15T06:59:28Z +77,1947 Poos de Caldas Boulevard,," ",114,60951," ",2020-02-15T06:59:28Z +78,1206 Dos Quebradas Place,," ",431,20207," ",2020-02-15T06:59:28Z +79,1551 Rampur Lane,," ",108,72394," ",2020-02-15T06:59:28Z +80,602 Paarl Street,," ",402,98889," ",2020-02-15T06:59:28Z +81,1692 Ede Loop,," ",30,9223," ",2020-02-15T06:59:28Z +82,936 Salzburg Lane,," ",425,96709," ",2020-02-15T06:59:28Z +83,586 Tete Way,," ",256,1079," ",2020-02-15T06:59:28Z +84,1888 Kabul Drive,," ",217,20936," ",2020-02-15T06:59:28Z +85,320 Baiyin Parkway,," ",319,37307," ",2020-02-15T06:59:28Z +86,927 Baha Blanca Parkway,," ",479,9495," ",2020-02-15T06:59:28Z +87,929 Tallahassee Loop,," ",497,74671," ",2020-02-15T06:59:28Z +88,125 Citt del Vaticano Boulevard,," ",40,67912," ",2020-02-15T06:59:28Z +89,1557 Ktahya Boulevard,," ",88,88002," ",2020-02-15T06:59:28Z +90,870 Ashqelon Loop,," ",489,84931," ",2020-02-15T06:59:28Z +91,1740 Portoviejo Avenue,," ",480,29932," ",2020-02-15T06:59:28Z +92,1942 Ciparay Parkway,," ",113,82624," ",2020-02-15T06:59:28Z +93,1926 El Alto Avenue,," ",289,75543," ",2020-02-15T06:59:28Z +94,1952 Chatsworth Drive,," ",332,25958," ",2020-02-15T06:59:28Z +95,1370 Le Mans Avenue,," ",53,52163," ",2020-02-15T06:59:28Z +96,984 Effon-Alaiye Avenue,," ",183,17119," ",2020-02-15T06:59:28Z +97,832 Nakhon Sawan Manor,," ",592,49021," ",2020-02-15T06:59:28Z +98,152 Kitwe Parkway,," ",82,53182," ",2020-02-15T06:59:28Z +99,1697 Tanauan Lane,," ",399,22870," ",2020-02-15T06:59:28Z +100,1308 Arecibo Way,," ",41,30695," ",2020-02-15T06:59:28Z +101,1599 Plock Drive,," ",534,71986," ",2020-02-15T06:59:28Z +102,669 Firozabad Loop,," ",12,92265," ",2020-02-15T06:59:28Z +103,588 Vila Velha Manor,," ",268,51540," ",2020-02-15T06:59:28Z +104,1913 Kamakura Place,," ",238,97287," ",2020-02-15T06:59:28Z +105,733 Mandaluyong Place,," ",2,77459," ",2020-02-15T06:59:28Z +106,659 Vaduz Drive,," ",34,49708," ",2020-02-15T06:59:28Z +107,1177 Jelets Way,," ",220,3305," ",2020-02-15T06:59:28Z +108,1386 Yangor Avenue,," ",543,80720," ",2020-02-15T06:59:28Z +109,454 Nakhon Sawan Boulevard,," ",173,76383," ",2020-02-15T06:59:28Z +110,1867 San Juan Bautista Tuxtepec Avenue,," ",225,78311," ",2020-02-15T06:59:28Z +111,1532 Dzerzinsk Way,," ",334,9599," ",2020-02-15T06:59:28Z +112,1002 Ahmadnagar Manor,," ",213,93026," ",2020-02-15T06:59:28Z +113,682 Junan Way,," ",273,30418," ",2020-02-15T06:59:28Z +114,804 Elista Drive,," ",159,61069," ",2020-02-15T06:59:28Z +115,1378 Alvorada Avenue,," ",102,75834," ",2020-02-15T06:59:28Z +116,793 Cam Ranh Avenue,," ",292,87057," ",2020-02-15T06:59:28Z +117,1079 Tel Aviv-Jaffa Boulevard,," ",132,10885," ",2020-02-15T06:59:28Z +118,442 Rae Bareli Place,," ",148,24321," ",2020-02-15T06:59:28Z +119,1107 Nakhon Sawan Avenue,," ",365,75149," ",2020-02-15T06:59:28Z +120,544 Malm Parkway,," ",403,63502," ",2020-02-15T06:59:28Z +121,1967 Sincelejo Place,," ",176,73644," ",2020-02-15T06:59:28Z +122,333 Goinia Way,," ",185,78625," ",2020-02-15T06:59:28Z +123,1987 Coacalco de Berriozbal Loop,," ",476,96065," ",2020-02-15T06:59:28Z +124,241 Mosul Lane,," ",147,76157," ",2020-02-15T06:59:28Z +125,211 Chiayi Drive,," ",164,58186," ",2020-02-15T06:59:28Z +126,1175 Tanauan Way,," ",305,64615," ",2020-02-15T06:59:28Z +127,117 Boa Vista Way,," ",566,6804," ",2020-02-15T06:59:28Z +128,848 Tafuna Manor,," ",281,45142," ",2020-02-15T06:59:28Z +129,569 Baicheng Lane,," ",85,60304," ",2020-02-15T06:59:28Z +130,1666 Qomsheh Drive,," ",410,66255," ",2020-02-15T06:59:28Z +131,801 Hagonoy Drive,," ",484,8439," ",2020-02-15T06:59:28Z +132,1050 Garden Grove Avenue,," ",236,4999," ",2020-02-15T06:59:28Z +133,1854 Tieli Street,," ",302,15819," ",2020-02-15T06:59:28Z +134,758 Junan Lane,," ",190,82639," ",2020-02-15T06:59:28Z +135,1752 So Leopoldo Parkway,," ",345,14014," ",2020-02-15T06:59:28Z +136,898 Belm Manor,," ",87,49757," ",2020-02-15T06:59:28Z +137,261 Saint Louis Way,," ",541,83401," ",2020-02-15T06:59:28Z +138,765 Southampton Drive,," ",421,4285," ",2020-02-15T06:59:28Z +139,943 Johannesburg Avenue,," ",417,5892," ",2020-02-15T06:59:28Z +140,788 Atinsk Street,," ",211,81691," ",2020-02-15T06:59:28Z +141,1749 Daxian Place,," ",29,11044," ",2020-02-15T06:59:28Z +142,1587 Sullana Lane,," ",207,85769," ",2020-02-15T06:59:28Z +143,1029 Dzerzinsk Manor,," ",542,57519," ",2020-02-15T06:59:28Z +144,1666 Beni-Mellal Place,," ",123,13377," ",2020-02-15T06:59:28Z +145,928 Jaffna Loop,," ",172,93762," ",2020-02-15T06:59:28Z +146,483 Ljubertsy Parkway,," ",149,60562," ",2020-02-15T06:59:28Z +147,374 Bat Yam Boulevard,," ",266,97700," ",2020-02-15T06:59:28Z +148,1027 Songkhla Manor,," ",340,30861," ",2020-02-15T06:59:28Z +149,999 Sanaa Loop,," ",491,3439," ",2020-02-15T06:59:28Z +150,879 Newcastle Way,," ",499,90732," ",2020-02-15T06:59:28Z +151,1337 Lincoln Parkway,," ",555,99457," ",2020-02-15T06:59:28Z +152,1952 Pune Lane,," ",442,92150," ",2020-02-15T06:59:28Z +153,782 Mosul Street,," ",94,25545," ",2020-02-15T06:59:28Z +154,781 Shimonoseki Drive,," ",202,95444," ",2020-02-15T06:59:28Z +155,1560 Jelets Boulevard,," ",291,77777," ",2020-02-15T06:59:28Z +156,1963 Moscow Place,," ",354,64863," ",2020-02-15T06:59:28Z +157,456 Escobar Way,," ",232,36061," ",2020-02-15T06:59:28Z +158,798 Cianjur Avenue,," ",590,76990," ",2020-02-15T06:59:28Z +159,185 Novi Sad Place,," ",72,41778," ",2020-02-15T06:59:28Z +160,1367 Yantai Manor,," ",381,21294," ",2020-02-15T06:59:28Z +161,1386 Nakhon Sawan Boulevard,," ",420,53502," ",2020-02-15T06:59:28Z +162,369 Papeete Way,," ",187,66639," ",2020-02-15T06:59:28Z +163,1440 Compton Place,," ",307,81037," ",2020-02-15T06:59:28Z +164,1623 Baha Blanca Manor,," ",310,81511," ",2020-02-15T06:59:28Z +165,97 Shimoga Avenue,," ",533,44660," ",2020-02-15T06:59:28Z +166,1740 Le Mans Loop,," ",297,22853," ",2020-02-15T06:59:28Z +167,1287 Xiangfan Boulevard,," ",253,57844," ",2020-02-15T06:59:28Z +168,842 Salzburg Lane,," ",529,3313," ",2020-02-15T06:59:28Z +169,154 Tallahassee Loop,," ",199,62250," ",2020-02-15T06:59:28Z +170,710 San Felipe del Progreso Avenue,," ",304,76901," ",2020-02-15T06:59:28Z +171,1540 Wroclaw Drive,," ",107,62686," ",2020-02-15T06:59:28Z +172,475 Atinsk Way,," ",240,59571," ",2020-02-15T06:59:28Z +173,1294 Firozabad Drive,," ",407,70618," ",2020-02-15T06:59:28Z +174,1877 Ezhou Lane,," ",550,63337," ",2020-02-15T06:59:28Z +175,316 Uruapan Street,," ",223,58194," ",2020-02-15T06:59:28Z +176,29 Pyongyang Loop,," ",58,47753," ",2020-02-15T06:59:28Z +177,1010 Klerksdorp Way,," ",186,6802," ",2020-02-15T06:59:28Z +178,1848 Salala Boulevard,," ",373,25220," ",2020-02-15T06:59:28Z +179,431 Xiangtan Avenue,," ",18,4854," ",2020-02-15T06:59:28Z +180,757 Rustenburg Avenue,," ",483,89668," ",2020-02-15T06:59:28Z +181,146 Johannesburg Way,," ",330,54132," ",2020-02-15T06:59:28Z +182,1891 Rizhao Boulevard,," ",456,47288," ",2020-02-15T06:59:28Z +183,1089 Iwatsuki Avenue,," ",270,35109," ",2020-02-15T06:59:28Z +184,1410 Benin City Parkway,," ",405,29747," ",2020-02-15T06:59:28Z +185,682 Garden Grove Place,," ",333,67497," ",2020-02-15T06:59:28Z +186,533 al-Ayn Boulevard,," ",126,8862," ",2020-02-15T06:59:28Z +187,1839 Szkesfehrvr Parkway,," ",317,55709," ",2020-02-15T06:59:28Z +188,741 Ambattur Manor,," ",438,43310," ",2020-02-15T06:59:28Z +189,927 Barcelona Street,," ",467,65121," ",2020-02-15T06:59:28Z +190,435 0 Way,," ",195,74750," ",2020-02-15T06:59:28Z +191,140 Chiayi Parkway,," ",506,38982," ",2020-02-15T06:59:28Z +192,1166 Changhwa Street,," ",62,58852," ",2020-02-15T06:59:28Z +193,891 Novi Sad Manor,," ",383,5379," ",2020-02-15T06:59:28Z +194,605 Rio Claro Parkway,," ",513,49348," ",2020-02-15T06:59:28Z +195,1077 San Felipe de Puerto Plata Place,," ",369,65387," ",2020-02-15T06:59:28Z +196,9 San Miguel de Tucumn Manor,," ",169,90845," ",2020-02-15T06:59:28Z +197,447 Surakarta Loop,," ",271,10428," ",2020-02-15T06:59:28Z +198,345 Oshawa Boulevard,," ",204,32114," ",2020-02-15T06:59:28Z +199,1792 Valle de la Pascua Place,," ",477,15540," ",2020-02-15T06:59:28Z +200,1074 Binzhou Manor,," ",325,36490," ",2020-02-15T06:59:28Z +201,817 Bradford Loop,," ",109,89459," ",2020-02-15T06:59:28Z +202,955 Bamenda Way,," ",218,1545," ",2020-02-15T06:59:28Z +203,1149 A Corua (La Corua) Boulevard,," ",194,95824," ",2020-02-15T06:59:28Z +204,387 Mwene-Ditu Drive,," ",35,8073," ",2020-02-15T06:59:28Z +205,68 Molodetno Manor,," ",575,4662," ",2020-02-15T06:59:28Z +206,642 Nador Drive,," ",77,3924," ",2020-02-15T06:59:28Z +207,1688 Nador Lane,," ",184,61613," ",2020-02-15T06:59:28Z +208,1215 Pyongyang Parkway,," ",557,25238," ",2020-02-15T06:59:28Z +209,1679 Antofagasta Street,," ",122,86599," ",2020-02-15T06:59:28Z +210,1304 s-Hertogenbosch Way,," ",83,10925," ",2020-02-15T06:59:28Z +211,850 Salala Loop,," ",371,10800," ",2020-02-15T06:59:28Z +212,624 Oshawa Boulevard,," ",51,89959," ",2020-02-15T06:59:28Z +213,43 Dadu Avenue,," ",74,4855," ",2020-02-15T06:59:28Z +214,751 Lima Loop,," ",7,99405," ",2020-02-15T06:59:28Z +215,1333 Haldia Street,," ",174,82161," ",2020-02-15T06:59:28Z +216,660 Jedda Boulevard,," ",65,25053," ",2020-02-15T06:59:28Z +217,1001 Miyakonojo Lane,," ",518,67924," ",2020-02-15T06:59:28Z +218,226 Brest Manor,," ",508,2299," ",2020-02-15T06:59:28Z +219,1229 Valencia Parkway,," ",498,99124," ",2020-02-15T06:59:28Z +220,1201 Qomsheh Manor,," ",28,21464," ",2020-02-15T06:59:28Z +221,866 Shivapuri Manor,," ",448,22474," ",2020-02-15T06:59:28Z +222,1168 Najafabad Parkway,," ",251,40301," ",2020-02-15T06:59:28Z +223,1244 Allappuzha (Alleppey) Place,," ",567,20657," ",2020-02-15T06:59:28Z +224,1842 Luzinia Boulevard,," ",593,94420," ",2020-02-15T06:59:28Z +225,1926 Gingoog Street,," ",511,22824," ",2020-02-15T06:59:28Z +226,810 Palghat (Palakkad) Boulevard,," ",235,73431," ",2020-02-15T06:59:28Z +227,1820 Maring Parkway,," ",324,88307," ",2020-02-15T06:59:28Z +228,60 Poos de Caldas Street,," ",243,82338," ",2020-02-15T06:59:28Z +229,1014 Loja Manor,," ",22,66851," ",2020-02-15T06:59:28Z +230,201 Effon-Alaiye Way,," ",37,64344," ",2020-02-15T06:59:28Z +231,430 Alessandria Loop,," ",439,47446," ",2020-02-15T06:59:28Z +232,754 Valencia Place,," ",406,87911," ",2020-02-15T06:59:28Z +233,356 Olomouc Manor,," ",26,93323," ",2020-02-15T06:59:28Z +234,1256 Bislig Boulevard,," ",86,50598," ",2020-02-15T06:59:28Z +235,954 Kimchon Place,," ",559,42420," ",2020-02-15T06:59:28Z +236,885 Yingkou Manor,," ",596,31390," ",2020-02-15T06:59:28Z +237,1736 Cavite Place,," ",216,98775," ",2020-02-15T06:59:28Z +238,346 Skikda Parkway,," ",233,90628," ",2020-02-15T06:59:28Z +239,98 Stara Zagora Boulevard,," ",96,76448," ",2020-02-15T06:59:28Z +240,1479 Rustenburg Boulevard,," ",527,18727," ",2020-02-15T06:59:28Z +241,647 A Corua (La Corua) Street,," ",357,36971," ",2020-02-15T06:59:28Z +242,1964 Gijn Manor,," ",473,14408," ",2020-02-15T06:59:28Z +243,47 Syktyvkar Lane,," ",118,22236," ",2020-02-15T06:59:28Z +244,1148 Saarbrcken Parkway,," ",226,1921," ",2020-02-15T06:59:28Z +245,1103 Bilbays Parkway,," ",578,87660," ",2020-02-15T06:59:28Z +246,1246 Boksburg Parkway,," ",422,28349," ",2020-02-15T06:59:28Z +247,1483 Pathankot Street,," ",454,37288," ",2020-02-15T06:59:28Z +248,582 Papeete Loop,," ",294,27722," ",2020-02-15T06:59:28Z +249,300 Junan Street,," ",553,81314," ",2020-02-15T06:59:28Z +250,829 Grand Prairie Way,," ",328,6461," ",2020-02-15T06:59:28Z +251,1473 Changhwa Parkway,," ",124,75933," ",2020-02-15T06:59:28Z +252,1309 Weifang Street,," ",520,57338," ",2020-02-15T06:59:28Z +253,1760 Oshawa Manor,," ",535,38140," ",2020-02-15T06:59:28Z +254,786 Stara Zagora Way,," ",390,98332," ",2020-02-15T06:59:28Z +255,1966 Tonghae Street,," ",198,36481," ",2020-02-15T06:59:28Z +256,1497 Yuzhou Drive,," ",312,3433," ",2020-02-15T06:59:28Z +258,752 Ondo Loop,," ",338,32474," ",2020-02-15T06:59:28Z +259,1338 Zalantun Lane,," ",413,45403," ",2020-02-15T06:59:28Z +260,127 Iwakuni Boulevard,," ",192,20777," ",2020-02-15T06:59:28Z +261,51 Laredo Avenue,," ",342,68146," ",2020-02-15T06:59:28Z +262,771 Yaound Manor,," ",64,86768," ",2020-02-15T06:59:28Z +263,532 Toulon Street,," ",460,69517," ",2020-02-15T06:59:28Z +264,1027 Banjul Place,," ",197,50390," ",2020-02-15T06:59:28Z +265,1158 Mandi Bahauddin Parkway,," ",136,98484," ",2020-02-15T06:59:28Z +266,862 Xintai Lane,," ",548,30065," ",2020-02-15T06:59:28Z +267,816 Cayenne Parkway,," ",414,93629," ",2020-02-15T06:59:28Z +268,1831 Nam Dinh Loop,," ",323,51990," ",2020-02-15T06:59:28Z +269,446 Kirovo-Tepetsk Lane,," ",203,19428," ",2020-02-15T06:59:28Z +270,682 Halisahar Place,," ",378,20536," ",2020-02-15T06:59:28Z +271,1587 Loja Manor,," ",447,5410," ",2020-02-15T06:59:28Z +272,1762 Paarl Parkway,," ",298,53928," ",2020-02-15T06:59:28Z +273,1519 Ilorin Place,," ",395,49298," ",2020-02-15T06:59:28Z +274,920 Kumbakonam Loop,," ",446,75090," ",2020-02-15T06:59:28Z +275,906 Goinia Way,," ",255,83565," ",2020-02-15T06:59:28Z +276,1675 Xiangfan Manor,," ",283,11763," ",2020-02-15T06:59:28Z +277,85 San Felipe de Puerto Plata Drive,," ",584,46063," ",2020-02-15T06:59:28Z +278,144 South Hill Loop,," ",445,2012," ",2020-02-15T06:59:28Z +279,1884 Shikarpur Avenue,," ",263,85548," ",2020-02-15T06:59:28Z +280,1980 Kamjanets-Podilskyi Street,," ",404,89502," ",2020-02-15T06:59:28Z +281,1944 Bamenda Way,," ",573,24645," ",2020-02-15T06:59:28Z +282,556 Baybay Manor,," ",374,55802," ",2020-02-15T06:59:28Z +283,457 Tongliao Loop,," ",222,56254," ",2020-02-15T06:59:28Z +284,600 Bradford Street,," ",514,96204," ",2020-02-15T06:59:28Z +285,1006 Santa Brbara dOeste Manor,," ",389,36229," ",2020-02-15T06:59:28Z +286,1308 Sumy Loop,," ",175,30657," ",2020-02-15T06:59:28Z +287,1405 Chisinau Place,," ",411,8160," ",2020-02-15T06:59:28Z +288,226 Halifax Street,," ",277,58492," ",2020-02-15T06:59:28Z +289,1279 Udine Parkway,," ",69,75860," ",2020-02-15T06:59:28Z +290,1336 Benin City Drive,," ",386,46044," ",2020-02-15T06:59:28Z +291,1155 Liaocheng Place,," ",152,22650," ",2020-02-15T06:59:28Z +292,1993 Tabuk Lane,," ",522,64221," ",2020-02-15T06:59:28Z +293,86 Higashiosaka Lane,," ",563,33768," ",2020-02-15T06:59:28Z +294,1912 Allende Manor,," ",279,58124," ",2020-02-15T06:59:28Z +295,544 Tarsus Boulevard,," ",562,53145," ",2020-02-15T06:59:28Z +296,1936 Cuman Avenue,," ",433,61195," ",2020-02-15T06:59:28Z +297,1192 Tongliao Street,," ",470,19065," ",2020-02-15T06:59:28Z +298,44 Najafabad Way,," ",146,61391," ",2020-02-15T06:59:28Z +299,32 Pudukkottai Lane,," ",140,38834," ",2020-02-15T06:59:28Z +300,661 Chisinau Lane,," ",274,8856," ",2020-02-15T06:59:28Z +301,951 Stara Zagora Manor,," ",400,98573," ",2020-02-15T06:59:28Z +302,922 Vila Velha Loop,," ",9,4085," ",2020-02-15T06:59:28Z +303,898 Jining Lane,," ",387,40070," ",2020-02-15T06:59:28Z +304,1635 Kuwana Boulevard,," ",205,52137," ",2020-02-15T06:59:28Z +305,41 El Alto Parkway,," ",398,56883," ",2020-02-15T06:59:28Z +306,1883 Maikop Lane,," ",254,68469," ",2020-02-15T06:59:28Z +307,1908 Gaziantep Place,," ",536,58979," ",2020-02-15T06:59:28Z +308,687 Alessandria Parkway,," ",455,57587," ",2020-02-15T06:59:28Z +309,827 Yuncheng Drive,," ",99,79047," ",2020-02-15T06:59:28Z +310,913 Coacalco de Berriozbal Loop,," ",33,42141," ",2020-02-15T06:59:28Z +311,715 So Bernardo do Campo Lane,," ",507,84804," ",2020-02-15T06:59:28Z +312,1354 Siegen Street,," ",25,80184," ",2020-02-15T06:59:28Z +313,1191 Sungai Petani Boulevard,," ",262,9668," ",2020-02-15T06:59:28Z +314,1224 Huejutla de Reyes Boulevard,," ",91,70923," ",2020-02-15T06:59:28Z +315,543 Bergamo Avenue,," ",215,59686," ",2020-02-15T06:59:28Z +316,746 Joliet Lane,," ",286,94878," ",2020-02-15T06:59:28Z +317,780 Kimberley Way,," ",515,17032," ",2020-02-15T06:59:28Z +318,1774 Yaound Place,," ",166,91400," ",2020-02-15T06:59:28Z +319,1957 Yantai Lane,," ",490,59255," ",2020-02-15T06:59:28Z +320,1542 Lubumbashi Boulevard,," ",57,62472," ",2020-02-15T06:59:28Z +321,651 Pathankot Loop,," ",336,59811," ",2020-02-15T06:59:28Z +322,1359 Zhoushan Parkway,," ",545,29763," ",2020-02-15T06:59:28Z +323,1769 Iwaki Lane,," ",97,25787," ",2020-02-15T06:59:28Z +324,1145 Vilnius Manor,," ",451,73170," ",2020-02-15T06:59:28Z +325,1892 Nabereznyje Telny Lane,," ",516,28396," ",2020-02-15T06:59:28Z +326,470 Boksburg Street,," ",81,97960," ",2020-02-15T06:59:28Z +327,1427 A Corua (La Corua) Place,," ",45,85799," ",2020-02-15T06:59:28Z +328,479 San Felipe del Progreso Avenue,," ",130,54949," ",2020-02-15T06:59:28Z +329,867 Benin City Avenue,," ",591,78543," ",2020-02-15T06:59:28Z +330,981 Kumbakonam Place,," ",89,87611," ",2020-02-15T06:59:28Z +331,1016 Iwakuni Street,," ",269,49833," ",2020-02-15T06:59:28Z +332,663 Baha Blanca Parkway,," ",5,33463," ",2020-02-15T06:59:28Z +333,1860 Taguig Loop,," ",119,59550," ",2020-02-15T06:59:28Z +334,1816 Bydgoszcz Loop,," ",234,64308," ",2020-02-15T06:59:28Z +335,587 Benguela Manor,," ",42,91590," ",2020-02-15T06:59:28Z +336,430 Kumbakonam Drive,," ",457,28814," ",2020-02-15T06:59:28Z +337,1838 Tabriz Lane,," ",143,1195," ",2020-02-15T06:59:28Z +338,431 Szkesfehrvr Avenue,," ",48,57828," ",2020-02-15T06:59:28Z +339,503 Sogamoso Loop,," ",505,49812," ",2020-02-15T06:59:28Z +340,507 Smolensk Loop,," ",492,22971," ",2020-02-15T06:59:28Z +341,1920 Weifang Avenue,," ",427,15643," ",2020-02-15T06:59:28Z +342,124 al-Manama Way,," ",382,52368," ",2020-02-15T06:59:28Z +343,1443 Mardan Street,," ",392,31483," ",2020-02-15T06:59:28Z +344,1909 Benguela Lane,," ",581,19913," ",2020-02-15T06:59:28Z +345,68 Ponce Parkway,," ",201,85926," ",2020-02-15T06:59:28Z +346,1217 Konotop Avenue,," ",151,504," ",2020-02-15T06:59:28Z +347,1293 Nam Dinh Way,," ",84,71583," ",2020-02-15T06:59:28Z +348,785 Vaduz Street,," ",335,36170," ",2020-02-15T06:59:28Z +349,1516 Escobar Drive,," ",370,46069," ",2020-02-15T06:59:28Z +350,1628 Nagareyama Lane,," ",453,60079," ",2020-02-15T06:59:28Z +351,1157 Nyeri Loop,," ",320,56380," ",2020-02-15T06:59:28Z +352,1673 Tangail Drive,," ",137,26857," ",2020-02-15T06:59:28Z +353,381 Kabul Way,," ",209,87272," ",2020-02-15T06:59:28Z +354,953 Hodeida Street,," ",221,18841," ",2020-02-15T06:59:28Z +355,469 Nakhon Sawan Street,," ",531,58866," ",2020-02-15T06:59:28Z +356,1378 Beira Loop,," ",597,40792," ",2020-02-15T06:59:28Z +357,1641 Changhwa Place,," ",52,37636," ",2020-02-15T06:59:28Z +358,1698 Southport Loop,," ",393,49009," ",2020-02-15T06:59:28Z +359,519 Nyeri Manor,," ",461,37650," ",2020-02-15T06:59:28Z +360,619 Hunuco Avenue,," ",331,81508," ",2020-02-15T06:59:28Z +361,45 Aparecida de Goinia Place,," ",464,7431," ",2020-02-15T06:59:28Z +362,482 Kowloon and New Kowloon Manor,," ",90,97056," ",2020-02-15T06:59:28Z +363,604 Bern Place,," ",429,5373," ",2020-02-15T06:59:28Z +364,1623 Kingstown Drive,," ",20,91299," ",2020-02-15T06:59:28Z +365,1009 Zanzibar Lane,," ",32,64875," ",2020-02-15T06:59:28Z +366,114 Jalib al-Shuyukh Manor,," ",585,60440," ",2020-02-15T06:59:28Z +367,1163 London Parkway,," ",66,6066," ",2020-02-15T06:59:28Z +368,1658 Jastrzebie-Zdrj Loop,," ",372,96584," ",2020-02-15T06:59:28Z +369,817 Laredo Avenue,," ",188,77449," ",2020-02-15T06:59:28Z +370,1565 Tangail Manor,," ",377,45750," ",2020-02-15T06:59:28Z +371,1912 Emeishan Drive,," ",50,33050," ",2020-02-15T06:59:28Z +372,230 Urawa Drive,," ",8,2738," ",2020-02-15T06:59:28Z +373,1922 Miraj Way,," ",356,13203," ",2020-02-15T06:59:28Z +374,433 Florencia Street,," ",250,91330," ",2020-02-15T06:59:28Z +375,1049 Matamoros Parkway,," ",191,69640," ",2020-02-15T06:59:28Z +376,1061 Ede Avenue,," ",98,57810," ",2020-02-15T06:59:28Z +377,154 Oshawa Manor,," ",415,72771," ",2020-02-15T06:59:28Z +378,1191 Tandil Drive,," ",523,6362," ",2020-02-15T06:59:28Z +379,1133 Rizhao Avenue,," ",572,2800," ",2020-02-15T06:59:28Z +380,1519 Santiago de los Caballeros Loop,," ",348,22025," ",2020-02-15T06:59:28Z +381,1618 Olomouc Manor,," ",285,26385," ",2020-02-15T06:59:28Z +382,220 Hidalgo Drive,," ",265,45298," ",2020-02-15T06:59:28Z +383,686 Donostia-San Sebastin Lane,," ",471,97390," ",2020-02-15T06:59:28Z +384,97 Mogiljov Lane,," ",73,89294," ",2020-02-15T06:59:28Z +385,1642 Charlotte Amalie Drive,," ",549,75442," ",2020-02-15T06:59:28Z +386,1368 Maracabo Boulevard,," ",493,32716," ",2020-02-15T06:59:28Z +387,401 Sucre Boulevard,," ",322,25007," ",2020-02-15T06:59:28Z +388,368 Hunuco Boulevard,," ",360,17165," ",2020-02-15T06:59:28Z +389,500 Lincoln Parkway,," ",210,95509," ",2020-02-15T06:59:28Z +390,102 Chapra Drive,," ",521,14073," ",2020-02-15T06:59:28Z +391,1793 Meixian Place,," ",258,33535," ",2020-02-15T06:59:28Z +392,514 Ife Way,," ",315,69973," ",2020-02-15T06:59:28Z +393,717 Changzhou Lane,," ",104,21615," ",2020-02-15T06:59:28Z +394,753 Ilorin Avenue,," ",157,3656," ",2020-02-15T06:59:28Z +395,1337 Mit Ghamr Avenue,," ",358,29810," ",2020-02-15T06:59:28Z +396,767 Pyongyang Drive,," ",229,83536," ",2020-02-15T06:59:28Z +397,614 Pak Kret Street,," ",6,27796," ",2020-02-15T06:59:28Z +398,954 Lapu-Lapu Way,," ",278,8816," ",2020-02-15T06:59:28Z +399,331 Bydgoszcz Parkway,," ",181,966," ",2020-02-15T06:59:28Z +400,1152 Citrus Heights Manor,," ",15,5239," ",2020-02-15T06:59:28Z +401,168 Cianjur Manor,," ",228,73824," ",2020-02-15T06:59:28Z +402,616 Hagonoy Avenue,," ",39,46043," ",2020-02-15T06:59:28Z +403,1190 0 Place,," ",44,10417," ",2020-02-15T06:59:28Z +404,734 Bchar Place,," ",375,30586," ",2020-02-15T06:59:28Z +405,530 Lausanne Lane,," ",135,11067," ",2020-02-15T06:59:28Z +406,454 Patiala Lane,," ",276,13496," ",2020-02-15T06:59:28Z +407,1346 Mysore Drive,," ",92,61507," ",2020-02-15T06:59:28Z +408,990 Etawah Loop,," ",564,79940," ",2020-02-15T06:59:28Z +409,1266 Laredo Parkway,," ",380,7664," ",2020-02-15T06:59:28Z +410,88 Nagaon Manor,," ",524,86868," ",2020-02-15T06:59:28Z +411,264 Bhimavaram Manor,," ",111,54749," ",2020-02-15T06:59:28Z +412,1639 Saarbrcken Drive,," ",437,9827," ",2020-02-15T06:59:28Z +413,692 Amroha Drive,," ",230,35575," ",2020-02-15T06:59:28Z +414,1936 Lapu-Lapu Parkway,," ",141,7122," ",2020-02-15T06:59:28Z +415,432 Garden Grove Street,," ",430,65630," ",2020-02-15T06:59:28Z +416,1445 Carmen Parkway,," ",117,70809," ",2020-02-15T06:59:28Z +417,791 Salinas Street,," ",208,40509," ",2020-02-15T06:59:28Z +418,126 Acua Parkway,," ",71,58888," ",2020-02-15T06:59:28Z +419,397 Sunnyvale Avenue,," ",19,55566," ",2020-02-15T06:59:28Z +420,992 Klerksdorp Loop,," ",23,33711," ",2020-02-15T06:59:28Z +421,966 Arecibo Loop,," ",134,94018," ",2020-02-15T06:59:28Z +422,289 Santo Andr Manor,," ",16,72410," ",2020-02-15T06:59:28Z +423,437 Chungho Drive,," ",450,59489," ",2020-02-15T06:59:28Z +424,1948 Bayugan Parkway,," ",264,60622," ",2020-02-15T06:59:28Z +425,1866 al-Qatif Avenue,," ",155,89420," ",2020-02-15T06:59:28Z +426,1661 Abha Drive,," ",416,14400," ",2020-02-15T06:59:28Z +427,1557 Cape Coral Parkway,," ",293,46875," ",2020-02-15T06:59:28Z +428,1727 Matamoros Place,," ",465,78813," ",2020-02-15T06:59:28Z +429,1269 Botosani Manor,," ",468,47394," ",2020-02-15T06:59:28Z +430,355 Vitria de Santo Anto Way,," ",452,81758," ",2020-02-15T06:59:28Z +431,1596 Acua Parkway,," ",418,70425," ",2020-02-15T06:59:28Z +432,259 Ipoh Drive,," ",189,64964," ",2020-02-15T06:59:28Z +433,1823 Hoshiarpur Lane,," ",510,33191," ",2020-02-15T06:59:28Z +434,1404 Taguig Drive,," ",547,87212," ",2020-02-15T06:59:28Z +435,740 Udaipur Lane,," ",150,33505," ",2020-02-15T06:59:28Z +436,287 Cuautla Boulevard,," ",501,72736," ",2020-02-15T06:59:28Z +437,1766 Almirante Brown Street,," ",364,63104," ",2020-02-15T06:59:28Z +438,596 Huixquilucan Place,," ",351,65892," ",2020-02-15T06:59:28Z +439,1351 Aparecida de Goinia Parkway,," ",391,41775," ",2020-02-15T06:59:28Z +440,722 Bradford Lane,," ",249,90920," ",2020-02-15T06:59:28Z +441,983 Santa F Way,," ",565,47472," ",2020-02-15T06:59:28Z +442,1245 Ibirit Way,," ",290,40926," ",2020-02-15T06:59:28Z +443,1836 Korla Parkway,," ",272,55405," ",2020-02-15T06:59:28Z +444,231 Kaliningrad Place,," ",70,57833," ",2020-02-15T06:59:28Z +445,495 Bhimavaram Lane,," ",144,3," ",2020-02-15T06:59:28Z +446,1924 Shimonoseki Drive,," ",59,52625," ",2020-02-15T06:59:28Z +447,105 Dzerzinsk Manor,," ",540,48570," ",2020-02-15T06:59:28Z +448,614 Denizli Parkway,," ",486,29444," ",2020-02-15T06:59:28Z +449,1289 Belm Boulevard,," ",530,88306," ",2020-02-15T06:59:28Z +450,203 Tambaram Street,," ",161,73942," ",2020-02-15T06:59:28Z +451,1704 Tambaram Manor,," ",554,2834," ",2020-02-15T06:59:28Z +452,207 Cuernavaca Loop,," ",352,52671," ",2020-02-15T06:59:28Z +453,319 Springs Loop,," ",160,99552," ",2020-02-15T06:59:28Z +454,956 Nam Dinh Manor,," ",481,21872," ",2020-02-15T06:59:28Z +455,1947 Paarl Way,," ",509,23636," ",2020-02-15T06:59:28Z +456,814 Simferopol Loop,," ",154,48745," ",2020-02-15T06:59:28Z +457,535 Ahmadnagar Manor,," ",3,41136," ",2020-02-15T06:59:28Z +458,138 Caracas Boulevard,," ",326,16790," ",2020-02-15T06:59:28Z +459,251 Florencia Drive,," ",556,16119," ",2020-02-15T06:59:28Z +460,659 Gatineau Boulevard,," ",153,28587," ",2020-02-15T06:59:28Z +461,1889 Valparai Way,," ",600,75559," ",2020-02-15T06:59:28Z +462,1485 Bratislava Place,," ",435,83183," ",2020-02-15T06:59:28Z +463,935 Aden Boulevard,," ",532,64709," ",2020-02-15T06:59:28Z +464,76 Kermanshah Manor,," ",423,23343," ",2020-02-15T06:59:28Z +465,734 Tanshui Avenue,," ",170,70664," ",2020-02-15T06:59:28Z +466,118 Jaffna Loop,," ",182,10447," ",2020-02-15T06:59:28Z +467,1621 Tongliao Avenue,," ",558,22173," ",2020-02-15T06:59:28Z +468,1844 Usak Avenue,," ",196,84461," ",2020-02-15T06:59:28Z +469,1872 Toulon Loop,," ",428,7939," ",2020-02-15T06:59:28Z +470,1088 Ibirit Place,," ",595,88502," ",2020-02-15T06:59:28Z +471,1322 Mosul Parkway,," ",145,95400," ",2020-02-15T06:59:28Z +472,1447 Chatsworth Place,," ",129,41545," ",2020-02-15T06:59:28Z +473,1257 Guadalajara Street,," ",78,33599," ",2020-02-15T06:59:28Z +474,1469 Plock Lane,," ",388,95835," ",2020-02-15T06:59:28Z +475,434 Ourense (Orense) Manor,," ",206,14122," ",2020-02-15T06:59:28Z +476,270 Tambaram Parkway,," ",244,9668," ",2020-02-15T06:59:28Z +477,1786 Salinas Place,," ",359,66546," ",2020-02-15T06:59:28Z +478,1078 Stara Zagora Drive,," ",301,69221," ",2020-02-15T06:59:28Z +479,1854 Okara Boulevard,," ",158,42123," ",2020-02-15T06:59:28Z +480,421 Yaound Street,," ",385,11363," ",2020-02-15T06:59:28Z +481,1153 Allende Way,," ",179,20336," ",2020-02-15T06:59:28Z +482,808 Naala-Porto Parkway,," ",500,41060," ",2020-02-15T06:59:28Z +483,632 Usolje-Sibirskoje Parkway,," ",36,73085," ",2020-02-15T06:59:28Z +484,98 Pyongyang Boulevard,," ",11,88749," ",2020-02-15T06:59:28Z +485,984 Novoterkassk Loop,," ",180,28165," ",2020-02-15T06:59:28Z +486,64 Korla Street,," ",347,25145," ",2020-02-15T06:59:28Z +487,1785 So Bernardo do Campo Street,," ",125,71182," ",2020-02-15T06:59:28Z +488,698 Jelets Boulevard,," ",142,2596," ",2020-02-15T06:59:28Z +489,1297 Alvorada Parkway,," ",587,11839," ",2020-02-15T06:59:28Z +490,1909 Dayton Avenue,," ",469,88513," ",2020-02-15T06:59:28Z +491,1789 Saint-Denis Parkway,," ",4,8268," ",2020-02-15T06:59:28Z +492,185 Mannheim Lane,," ",408,23661," ",2020-02-15T06:59:28Z +493,184 Mandaluyong Street,," ",288,94239," ",2020-02-15T06:59:28Z +494,591 Sungai Petani Drive,," ",376,46400," ",2020-02-15T06:59:28Z +495,656 Matamoros Drive,," ",487,19489," ",2020-02-15T06:59:28Z +496,775 ostka Drive,," ",337,22358," ",2020-02-15T06:59:28Z +497,1013 Tabuk Boulevard,," ",261,96203," ",2020-02-15T06:59:28Z +498,319 Plock Parkway,," ",504,26101," ",2020-02-15T06:59:28Z +499,1954 Kowloon and New Kowloon Way,," ",434,63667," ",2020-02-15T06:59:28Z +500,362 Rajkot Lane,," ",47,98030," ",2020-02-15T06:59:28Z +501,1060 Tandil Lane,," ",432,72349," ",2020-02-15T06:59:28Z +502,1515 Korla Way,," ",589,57197," ",2020-02-15T06:59:28Z +503,1416 San Juan Bautista Tuxtepec Avenue,," ",444,50592," ",2020-02-15T06:59:28Z +504,1 Valle de Santiago Avenue,," ",93,86208," ",2020-02-15T06:59:28Z +505,519 Brescia Parkway,," ",318,69504," ",2020-02-15T06:59:28Z +506,414 Mandaluyong Street,," ",314,16370," ",2020-02-15T06:59:28Z +507,1197 Sokoto Boulevard,," ",478,87687," ",2020-02-15T06:59:28Z +508,496 Celaya Drive,," ",552,90797," ",2020-02-15T06:59:28Z +509,786 Matsue Way,," ",245,37469," ",2020-02-15T06:59:28Z +510,48 Maracabo Place,," ",519,1570," ",2020-02-15T06:59:28Z +511,1152 al-Qatif Lane,," ",412,44816," ",2020-02-15T06:59:28Z +512,1269 Ipoh Avenue,," ",163,54674," ",2020-02-15T06:59:28Z +513,758 Korolev Parkway,," ",568,75474," ",2020-02-15T06:59:28Z +514,1747 Rustenburg Place,," ",110,51369," ",2020-02-15T06:59:28Z +515,886 Tonghae Place,," ",259,19450," ",2020-02-15T06:59:28Z +516,1574 Goinia Boulevard,," ",502,39529," ",2020-02-15T06:59:28Z +517,548 Uruapan Street,," ",312,35653," ",2020-02-15T06:59:28Z +519,962 Tama Loop,," ",583,65952," ",2020-02-15T06:59:28Z +520,1778 Gijn Manor,," ",594,35156," ",2020-02-15T06:59:28Z +521,568 Dhule (Dhulia) Loop,," ",127,92568," ",2020-02-15T06:59:28Z +522,1768 Udine Loop,," ",60,32347," ",2020-02-15T06:59:28Z +523,608 Birgunj Parkway,," ",116,400," ",2020-02-15T06:59:28Z +524,680 A Corua (La Corua) Manor,," ",482,49806," ",2020-02-15T06:59:28Z +525,1949 Sanya Street,," ",224,61244," ",2020-02-15T06:59:28Z +526,617 Klerksdorp Place,," ",366,94707," ",2020-02-15T06:59:28Z +527,1993 0 Loop,," ",588,41214," ",2020-02-15T06:59:28Z +528,1176 Southend-on-Sea Manor,," ",458,81651," ",2020-02-15T06:59:28Z +529,600 Purnea (Purnia) Avenue,," ",571,18043," ",2020-02-15T06:59:28Z +530,1003 Qinhuangdao Street,," ",419,25972," ",2020-02-15T06:59:28Z +531,1986 Sivas Place,," ",551,95775," ",2020-02-15T06:59:28Z +532,1427 Tabuk Place,," ",101,31342," ",2020-02-15T06:59:28Z +533,556 Asuncin Way,," ",339,35364," ",2020-02-15T06:59:28Z +534,486 Ondo Parkway,," ",67,35202," ",2020-02-15T06:59:28Z +535,635 Brest Manor,," ",75,40899," ",2020-02-15T06:59:28Z +536,166 Jinchang Street,," ",165,86760," ",2020-02-15T06:59:28Z +537,958 Sagamihara Lane,," ",287,88408," ",2020-02-15T06:59:28Z +538,1817 Livorno Way,," ",100,79401," ",2020-02-15T06:59:28Z +539,1332 Gaziantep Lane,," ",80,22813," ",2020-02-15T06:59:28Z +540,949 Allende Lane,," ",24,67521," ",2020-02-15T06:59:28Z +541,195 Ilorin Street,," ",363,49250," ",2020-02-15T06:59:28Z +542,193 Bhusawal Place,," ",539,9750," ",2020-02-15T06:59:28Z +543,43 Vilnius Manor,," ",42,79814," ",2020-02-15T06:59:28Z +544,183 Haiphong Street,," ",46,69953," ",2020-02-15T06:59:28Z +545,163 Augusta-Richmond County Loop,," ",561,33030," ",2020-02-15T06:59:28Z +546,191 Jos Azueta Parkway,," ",436,13629," ",2020-02-15T06:59:28Z +547,379 Lublin Parkway,," ",309,74568," ",2020-02-15T06:59:28Z +548,1658 Cuman Loop,," ",396,51309," ",2020-02-15T06:59:28Z +549,454 Qinhuangdao Drive,," ",68,25866," ",2020-02-15T06:59:28Z +550,1715 Okayama Street,," ",485,55676," ",2020-02-15T06:59:28Z +551,182 Nukualofa Drive,," ",275,15414," ",2020-02-15T06:59:28Z +552,390 Wroclaw Way,," ",462,5753," ",2020-02-15T06:59:28Z +553,1421 Quilmes Lane,," ",260,19151," ",2020-02-15T06:59:28Z +554,947 Trshavn Place,," ",528,841," ",2020-02-15T06:59:28Z +555,1764 Jalib al-Shuyukh Parkway,," ",459,77642," ",2020-02-15T06:59:28Z +556,346 Cam Ranh Avenue,," ",599,39976," ",2020-02-15T06:59:28Z +557,1407 Pachuca de Soto Place,," ",21,26284," ",2020-02-15T06:59:28Z +558,904 Clarksville Drive,," ",193,52234," ",2020-02-15T06:59:28Z +559,1917 Kumbakonam Parkway,," ",368,11892," ",2020-02-15T06:59:28Z +560,1447 Imus Place,," ",426,12905," ",2020-02-15T06:59:28Z +561,1497 Fengshan Drive,," ",112,63022," ",2020-02-15T06:59:28Z +562,869 Shikarpur Way,," ",496,57380," ",2020-02-15T06:59:28Z +563,1059 Yuncheng Avenue,," ",570,47498," ",2020-02-15T06:59:28Z +564,505 Madiun Boulevard,," ",577,97271," ",2020-02-15T06:59:28Z +565,1741 Hoshiarpur Boulevard,," ",79,22372," ",2020-02-15T06:59:28Z +566,1229 Varanasi (Benares) Manor,," ",43,40195," ",2020-02-15T06:59:28Z +567,1894 Boa Vista Way,," ",178,77464," ",2020-02-15T06:59:28Z +568,1342 Sharja Way,," ",488,93655," ",2020-02-15T06:59:28Z +569,1342 Abha Boulevard,," ",95,10714," ",2020-02-15T06:59:28Z +570,415 Pune Avenue,," ",580,44274," ",2020-02-15T06:59:28Z +571,1746 Faaa Way,," ",214,32515," ",2020-02-15T06:59:28Z +572,539 Hami Way,," ",538,52196," ",2020-02-15T06:59:28Z +573,1407 Surakarta Manor,," ",466,33224," ",2020-02-15T06:59:28Z +574,502 Mandi Bahauddin Parkway,," ",55,15992," ",2020-02-15T06:59:28Z +575,1052 Pathankot Avenue,," ",299,77397," ",2020-02-15T06:59:28Z +576,1351 Sousse Lane,," ",341,37815," ",2020-02-15T06:59:28Z +577,1501 Pangkal Pinang Avenue,," ",409,943," ",2020-02-15T06:59:28Z +578,1405 Hagonoy Avenue,," ",133,86587," ",2020-02-15T06:59:28Z +579,521 San Juan Bautista Tuxtepec Place,," ",598,95093," ",2020-02-15T06:59:28Z +580,923 Tangail Boulevard,," ",10,33384," ",2020-02-15T06:59:28Z +581,186 Skikda Lane,," ",131,89422," ",2020-02-15T06:59:28Z +582,1568 Celaya Parkway,," ",168,34750," ",2020-02-15T06:59:28Z +583,1489 Kakamigahara Lane,," ",526,98883," ",2020-02-15T06:59:28Z +584,1819 Alessandria Loop,," ",103,53829," ",2020-02-15T06:59:28Z +585,1208 Tama Loop,," ",344,73605," ",2020-02-15T06:59:28Z +586,951 Springs Lane,," ",219,96115," ",2020-02-15T06:59:28Z +587,760 Miyakonojo Drive,," ",246,64682," ",2020-02-15T06:59:28Z +588,966 Asuncin Way,," ",212,62703," ",2020-02-15T06:59:28Z +589,1584 Ljubertsy Lane,," ",494,22954," ",2020-02-15T06:59:28Z +590,247 Jining Parkway,," ",54,53446," ",2020-02-15T06:59:28Z +591,773 Dallas Manor,," ",424,12664," ",2020-02-15T06:59:28Z +592,1923 Stara Zagora Lane,," ",546,95179," ",2020-02-15T06:59:28Z +593,1402 Zanzibar Boulevard,," ",106,71102," ",2020-02-15T06:59:28Z +594,1464 Kursk Parkway,," ",574,17381," ",2020-02-15T06:59:28Z +595,1074 Sanaa Parkway,," ",311,22474," ",2020-02-15T06:59:28Z +596,1759 Niznekamsk Avenue,," ",14,39414," ",2020-02-15T06:59:28Z +597,32 Liaocheng Way,," ",248,1944," ",2020-02-15T06:59:28Z +598,42 Fontana Avenue,," ",512,14684," ",2020-02-15T06:59:28Z +599,1895 Zhezqazghan Drive,," ",177,36693," ",2020-02-15T06:59:28Z +600,1837 Kaduna Parkway,," ",241,82580," ",2020-02-15T06:59:28Z +601,844 Bucuresti Place,," ",242,36603," ",2020-02-15T06:59:28Z +602,1101 Bucuresti Boulevard,," ",401,97661," ",2020-02-15T06:59:28Z +603,1103 Quilmes Boulevard,," ",503,52137," ",2020-02-15T06:59:28Z +604,1331 Usak Boulevard,," ",296,61960," ",2020-02-15T06:59:28Z +605,1325 Fukuyama Street,," ",537,27107," ",2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv/category.csv b/drivers/csv/testdata/sakila-csv/category.csv new file mode 100644 index 00000000..6a049237 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/category.csv @@ -0,0 +1,17 @@ +category_id,name,last_update +1,Action,2020-02-15T06:59:28Z +2,Animation,2020-02-15T06:59:28Z +3,Children,2020-02-15T06:59:28Z +4,Classics,2020-02-15T06:59:28Z +5,Comedy,2020-02-15T06:59:28Z +6,Documentary,2020-02-15T06:59:28Z +7,Drama,2020-02-15T06:59:28Z +8,Family,2020-02-15T06:59:28Z +9,Foreign,2020-02-15T06:59:28Z +10,Games,2020-02-15T06:59:28Z +11,Horror,2020-02-15T06:59:28Z +12,Music,2020-02-15T06:59:28Z +13,New,2020-02-15T06:59:28Z +14,Sci-Fi,2020-02-15T06:59:28Z +15,Sports,2020-02-15T06:59:28Z +16,Travel,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv/city.csv b/drivers/csv/testdata/sakila-csv/city.csv new file mode 100644 index 00000000..09c3b885 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/city.csv @@ -0,0 +1,601 @@ +city_id,city,country_id,last_update +1,A Corua (La Corua),87,2020-02-15T06:59:28Z +2,Abha,82,2020-02-15T06:59:28Z +3,Abu Dhabi,101,2020-02-15T06:59:28Z +4,Acua,60,2020-02-15T06:59:28Z +5,Adana,97,2020-02-15T06:59:28Z +6,Addis Abeba,31,2020-02-15T06:59:28Z +7,Aden,107,2020-02-15T06:59:28Z +8,Adoni,44,2020-02-15T06:59:28Z +9,Ahmadnagar,44,2020-02-15T06:59:28Z +10,Akishima,50,2020-02-15T06:59:28Z +11,Akron,103,2020-02-15T06:59:28Z +12,al-Ayn,101,2020-02-15T06:59:28Z +13,al-Hawiya,82,2020-02-15T06:59:28Z +14,al-Manama,11,2020-02-15T06:59:28Z +15,al-Qadarif,89,2020-02-15T06:59:28Z +16,al-Qatif,82,2020-02-15T06:59:28Z +17,Alessandria,49,2020-02-15T06:59:28Z +18,Allappuzha (Alleppey),44,2020-02-15T06:59:28Z +19,Allende,60,2020-02-15T06:59:28Z +20,Almirante Brown,6,2020-02-15T06:59:28Z +21,Alvorada,15,2020-02-15T06:59:28Z +22,Ambattur,44,2020-02-15T06:59:28Z +23,Amersfoort,67,2020-02-15T06:59:28Z +24,Amroha,44,2020-02-15T06:59:28Z +25,Angra dos Reis,15,2020-02-15T06:59:28Z +26,Anpolis,15,2020-02-15T06:59:28Z +27,Antofagasta,22,2020-02-15T06:59:28Z +28,Aparecida de Goinia,15,2020-02-15T06:59:28Z +29,Apeldoorn,67,2020-02-15T06:59:28Z +30,Araatuba,15,2020-02-15T06:59:28Z +31,Arak,46,2020-02-15T06:59:28Z +32,Arecibo,77,2020-02-15T06:59:28Z +33,Arlington,103,2020-02-15T06:59:28Z +34,Ashdod,48,2020-02-15T06:59:28Z +35,Ashgabat,98,2020-02-15T06:59:28Z +36,Ashqelon,48,2020-02-15T06:59:28Z +37,Asuncin,73,2020-02-15T06:59:28Z +38,Athenai,39,2020-02-15T06:59:28Z +39,Atinsk,80,2020-02-15T06:59:28Z +40,Atlixco,60,2020-02-15T06:59:28Z +41,Augusta-Richmond County,103,2020-02-15T06:59:28Z +42,Aurora,103,2020-02-15T06:59:28Z +43,Avellaneda,6,2020-02-15T06:59:28Z +44,Bag,15,2020-02-15T06:59:28Z +45,Baha Blanca,6,2020-02-15T06:59:28Z +46,Baicheng,23,2020-02-15T06:59:28Z +47,Baiyin,23,2020-02-15T06:59:28Z +48,Baku,10,2020-02-15T06:59:28Z +49,Balaiha,80,2020-02-15T06:59:28Z +50,Balikesir,97,2020-02-15T06:59:28Z +51,Balurghat,44,2020-02-15T06:59:28Z +52,Bamenda,19,2020-02-15T06:59:28Z +53,Bandar Seri Begawan,16,2020-02-15T06:59:28Z +54,Banjul,37,2020-02-15T06:59:28Z +55,Barcelona,104,2020-02-15T06:59:28Z +56,Basel,91,2020-02-15T06:59:28Z +57,Bat Yam,48,2020-02-15T06:59:28Z +58,Batman,97,2020-02-15T06:59:28Z +59,Batna,2,2020-02-15T06:59:28Z +60,Battambang,18,2020-02-15T06:59:28Z +61,Baybay,75,2020-02-15T06:59:28Z +62,Bayugan,75,2020-02-15T06:59:28Z +63,Bchar,2,2020-02-15T06:59:28Z +64,Beira,63,2020-02-15T06:59:28Z +65,Bellevue,103,2020-02-15T06:59:28Z +66,Belm,15,2020-02-15T06:59:28Z +67,Benguela,4,2020-02-15T06:59:28Z +68,Beni-Mellal,62,2020-02-15T06:59:28Z +69,Benin City,69,2020-02-15T06:59:28Z +70,Bergamo,49,2020-02-15T06:59:28Z +71,Berhampore (Baharampur),44,2020-02-15T06:59:28Z +72,Bern,91,2020-02-15T06:59:28Z +73,Bhavnagar,44,2020-02-15T06:59:28Z +74,Bhilwara,44,2020-02-15T06:59:28Z +75,Bhimavaram,44,2020-02-15T06:59:28Z +76,Bhopal,44,2020-02-15T06:59:28Z +77,Bhusawal,44,2020-02-15T06:59:28Z +78,Bijapur,44,2020-02-15T06:59:28Z +79,Bilbays,29,2020-02-15T06:59:28Z +80,Binzhou,23,2020-02-15T06:59:28Z +81,Birgunj,66,2020-02-15T06:59:28Z +82,Bislig,75,2020-02-15T06:59:28Z +83,Blumenau,15,2020-02-15T06:59:28Z +84,Boa Vista,15,2020-02-15T06:59:28Z +85,Boksburg,85,2020-02-15T06:59:28Z +86,Botosani,78,2020-02-15T06:59:28Z +87,Botshabelo,85,2020-02-15T06:59:28Z +88,Bradford,102,2020-02-15T06:59:28Z +89,Braslia,15,2020-02-15T06:59:28Z +90,Bratislava,84,2020-02-15T06:59:28Z +91,Brescia,49,2020-02-15T06:59:28Z +92,Brest,34,2020-02-15T06:59:28Z +93,Brindisi,49,2020-02-15T06:59:28Z +94,Brockton,103,2020-02-15T06:59:28Z +95,Bucuresti,78,2020-02-15T06:59:28Z +96,Buenaventura,24,2020-02-15T06:59:28Z +97,Bydgoszcz,76,2020-02-15T06:59:28Z +98,Cabuyao,75,2020-02-15T06:59:28Z +99,Callao,74,2020-02-15T06:59:28Z +100,Cam Ranh,105,2020-02-15T06:59:28Z +101,Cape Coral,103,2020-02-15T06:59:28Z +102,Caracas,104,2020-02-15T06:59:28Z +103,Carmen,60,2020-02-15T06:59:28Z +104,Cavite,75,2020-02-15T06:59:28Z +105,Cayenne,35,2020-02-15T06:59:28Z +106,Celaya,60,2020-02-15T06:59:28Z +107,Chandrapur,44,2020-02-15T06:59:28Z +108,Changhwa,92,2020-02-15T06:59:28Z +109,Changzhou,23,2020-02-15T06:59:28Z +110,Chapra,44,2020-02-15T06:59:28Z +111,Charlotte Amalie,106,2020-02-15T06:59:28Z +112,Chatsworth,85,2020-02-15T06:59:28Z +113,Cheju,86,2020-02-15T06:59:28Z +114,Chiayi,92,2020-02-15T06:59:28Z +115,Chisinau,61,2020-02-15T06:59:28Z +116,Chungho,92,2020-02-15T06:59:28Z +117,Cianjur,45,2020-02-15T06:59:28Z +118,Ciomas,45,2020-02-15T06:59:28Z +119,Ciparay,45,2020-02-15T06:59:28Z +120,Citrus Heights,103,2020-02-15T06:59:28Z +121,Citt del Vaticano,41,2020-02-15T06:59:28Z +122,Ciudad del Este,73,2020-02-15T06:59:28Z +123,Clarksville,103,2020-02-15T06:59:28Z +124,Coacalco de Berriozbal,60,2020-02-15T06:59:28Z +125,Coatzacoalcos,60,2020-02-15T06:59:28Z +126,Compton,103,2020-02-15T06:59:28Z +127,Coquimbo,22,2020-02-15T06:59:28Z +128,Crdoba,6,2020-02-15T06:59:28Z +129,Cuauhtmoc,60,2020-02-15T06:59:28Z +130,Cuautla,60,2020-02-15T06:59:28Z +131,Cuernavaca,60,2020-02-15T06:59:28Z +132,Cuman,104,2020-02-15T06:59:28Z +133,Czestochowa,76,2020-02-15T06:59:28Z +134,Dadu,72,2020-02-15T06:59:28Z +135,Dallas,103,2020-02-15T06:59:28Z +136,Datong,23,2020-02-15T06:59:28Z +137,Daugavpils,54,2020-02-15T06:59:28Z +138,Davao,75,2020-02-15T06:59:28Z +139,Daxian,23,2020-02-15T06:59:28Z +140,Dayton,103,2020-02-15T06:59:28Z +141,Deba Habe,69,2020-02-15T06:59:28Z +142,Denizli,97,2020-02-15T06:59:28Z +143,Dhaka,12,2020-02-15T06:59:28Z +144,Dhule (Dhulia),44,2020-02-15T06:59:28Z +145,Dongying,23,2020-02-15T06:59:28Z +146,Donostia-San Sebastin,87,2020-02-15T06:59:28Z +147,Dos Quebradas,24,2020-02-15T06:59:28Z +148,Duisburg,38,2020-02-15T06:59:28Z +149,Dundee,102,2020-02-15T06:59:28Z +150,Dzerzinsk,80,2020-02-15T06:59:28Z +151,Ede,67,2020-02-15T06:59:28Z +152,Effon-Alaiye,69,2020-02-15T06:59:28Z +153,El Alto,14,2020-02-15T06:59:28Z +154,El Fuerte,60,2020-02-15T06:59:28Z +155,El Monte,103,2020-02-15T06:59:28Z +156,Elista,80,2020-02-15T06:59:28Z +157,Emeishan,23,2020-02-15T06:59:28Z +158,Emmen,67,2020-02-15T06:59:28Z +159,Enshi,23,2020-02-15T06:59:28Z +160,Erlangen,38,2020-02-15T06:59:28Z +161,Escobar,6,2020-02-15T06:59:28Z +162,Esfahan,46,2020-02-15T06:59:28Z +163,Eskisehir,97,2020-02-15T06:59:28Z +164,Etawah,44,2020-02-15T06:59:28Z +165,Ezeiza,6,2020-02-15T06:59:28Z +166,Ezhou,23,2020-02-15T06:59:28Z +167,Faaa,36,2020-02-15T06:59:28Z +168,Fengshan,92,2020-02-15T06:59:28Z +169,Firozabad,44,2020-02-15T06:59:28Z +170,Florencia,24,2020-02-15T06:59:28Z +171,Fontana,103,2020-02-15T06:59:28Z +172,Fukuyama,50,2020-02-15T06:59:28Z +173,Funafuti,99,2020-02-15T06:59:28Z +174,Fuyu,23,2020-02-15T06:59:28Z +175,Fuzhou,23,2020-02-15T06:59:28Z +176,Gandhinagar,44,2020-02-15T06:59:28Z +177,Garden Grove,103,2020-02-15T06:59:28Z +178,Garland,103,2020-02-15T06:59:28Z +179,Gatineau,20,2020-02-15T06:59:28Z +180,Gaziantep,97,2020-02-15T06:59:28Z +181,Gijn,87,2020-02-15T06:59:28Z +182,Gingoog,75,2020-02-15T06:59:28Z +183,Goinia,15,2020-02-15T06:59:28Z +184,Gorontalo,45,2020-02-15T06:59:28Z +185,Grand Prairie,103,2020-02-15T06:59:28Z +186,Graz,9,2020-02-15T06:59:28Z +187,Greensboro,103,2020-02-15T06:59:28Z +188,Guadalajara,60,2020-02-15T06:59:28Z +189,Guaruj,15,2020-02-15T06:59:28Z +190,guas Lindas de Gois,15,2020-02-15T06:59:28Z +191,Gulbarga,44,2020-02-15T06:59:28Z +192,Hagonoy,75,2020-02-15T06:59:28Z +193,Haining,23,2020-02-15T06:59:28Z +194,Haiphong,105,2020-02-15T06:59:28Z +195,Haldia,44,2020-02-15T06:59:28Z +196,Halifax,20,2020-02-15T06:59:28Z +197,Halisahar,44,2020-02-15T06:59:28Z +198,Halle/Saale,38,2020-02-15T06:59:28Z +199,Hami,23,2020-02-15T06:59:28Z +200,Hamilton,68,2020-02-15T06:59:28Z +201,Hanoi,105,2020-02-15T06:59:28Z +202,Hidalgo,60,2020-02-15T06:59:28Z +203,Higashiosaka,50,2020-02-15T06:59:28Z +204,Hino,50,2020-02-15T06:59:28Z +205,Hiroshima,50,2020-02-15T06:59:28Z +206,Hodeida,107,2020-02-15T06:59:28Z +207,Hohhot,23,2020-02-15T06:59:28Z +208,Hoshiarpur,44,2020-02-15T06:59:28Z +209,Hsichuh,92,2020-02-15T06:59:28Z +210,Huaian,23,2020-02-15T06:59:28Z +211,Hubli-Dharwad,44,2020-02-15T06:59:28Z +212,Huejutla de Reyes,60,2020-02-15T06:59:28Z +213,Huixquilucan,60,2020-02-15T06:59:28Z +214,Hunuco,74,2020-02-15T06:59:28Z +215,Ibirit,15,2020-02-15T06:59:28Z +216,Idfu,29,2020-02-15T06:59:28Z +217,Ife,69,2020-02-15T06:59:28Z +218,Ikerre,69,2020-02-15T06:59:28Z +219,Iligan,75,2020-02-15T06:59:28Z +220,Ilorin,69,2020-02-15T06:59:28Z +221,Imus,75,2020-02-15T06:59:28Z +222,Inegl,97,2020-02-15T06:59:28Z +223,Ipoh,59,2020-02-15T06:59:28Z +224,Isesaki,50,2020-02-15T06:59:28Z +225,Ivanovo,80,2020-02-15T06:59:28Z +226,Iwaki,50,2020-02-15T06:59:28Z +227,Iwakuni,50,2020-02-15T06:59:28Z +228,Iwatsuki,50,2020-02-15T06:59:28Z +229,Izumisano,50,2020-02-15T06:59:28Z +230,Jaffna,88,2020-02-15T06:59:28Z +231,Jaipur,44,2020-02-15T06:59:28Z +232,Jakarta,45,2020-02-15T06:59:28Z +233,Jalib al-Shuyukh,53,2020-02-15T06:59:28Z +234,Jamalpur,12,2020-02-15T06:59:28Z +235,Jaroslavl,80,2020-02-15T06:59:28Z +236,Jastrzebie-Zdrj,76,2020-02-15T06:59:28Z +237,Jedda,82,2020-02-15T06:59:28Z +238,Jelets,80,2020-02-15T06:59:28Z +239,Jhansi,44,2020-02-15T06:59:28Z +240,Jinchang,23,2020-02-15T06:59:28Z +241,Jining,23,2020-02-15T06:59:28Z +242,Jinzhou,23,2020-02-15T06:59:28Z +243,Jodhpur,44,2020-02-15T06:59:28Z +244,Johannesburg,85,2020-02-15T06:59:28Z +245,Joliet,103,2020-02-15T06:59:28Z +246,Jos Azueta,60,2020-02-15T06:59:28Z +247,Juazeiro do Norte,15,2020-02-15T06:59:28Z +248,Juiz de Fora,15,2020-02-15T06:59:28Z +249,Junan,23,2020-02-15T06:59:28Z +250,Jurez,60,2020-02-15T06:59:28Z +251,Kabul,1,2020-02-15T06:59:28Z +252,Kaduna,69,2020-02-15T06:59:28Z +253,Kakamigahara,50,2020-02-15T06:59:28Z +254,Kaliningrad,80,2020-02-15T06:59:28Z +255,Kalisz,76,2020-02-15T06:59:28Z +256,Kamakura,50,2020-02-15T06:59:28Z +257,Kamarhati,44,2020-02-15T06:59:28Z +258,Kamjanets-Podilskyi,100,2020-02-15T06:59:28Z +259,Kamyin,80,2020-02-15T06:59:28Z +260,Kanazawa,50,2020-02-15T06:59:28Z +261,Kanchrapara,44,2020-02-15T06:59:28Z +262,Kansas City,103,2020-02-15T06:59:28Z +263,Karnal,44,2020-02-15T06:59:28Z +264,Katihar,44,2020-02-15T06:59:28Z +265,Kermanshah,46,2020-02-15T06:59:28Z +266,Kilis,97,2020-02-15T06:59:28Z +267,Kimberley,85,2020-02-15T06:59:28Z +268,Kimchon,86,2020-02-15T06:59:28Z +269,Kingstown,81,2020-02-15T06:59:28Z +270,Kirovo-Tepetsk,80,2020-02-15T06:59:28Z +271,Kisumu,52,2020-02-15T06:59:28Z +272,Kitwe,109,2020-02-15T06:59:28Z +273,Klerksdorp,85,2020-02-15T06:59:28Z +274,Kolpino,80,2020-02-15T06:59:28Z +275,Konotop,100,2020-02-15T06:59:28Z +276,Koriyama,50,2020-02-15T06:59:28Z +277,Korla,23,2020-02-15T06:59:28Z +278,Korolev,80,2020-02-15T06:59:28Z +279,Kowloon and New Kowloon,42,2020-02-15T06:59:28Z +280,Kragujevac,108,2020-02-15T06:59:28Z +281,Ktahya,97,2020-02-15T06:59:28Z +282,Kuching,59,2020-02-15T06:59:28Z +283,Kumbakonam,44,2020-02-15T06:59:28Z +284,Kurashiki,50,2020-02-15T06:59:28Z +285,Kurgan,80,2020-02-15T06:59:28Z +286,Kursk,80,2020-02-15T06:59:28Z +287,Kuwana,50,2020-02-15T06:59:28Z +288,La Paz,60,2020-02-15T06:59:28Z +289,La Plata,6,2020-02-15T06:59:28Z +290,La Romana,27,2020-02-15T06:59:28Z +291,Laiwu,23,2020-02-15T06:59:28Z +292,Lancaster,103,2020-02-15T06:59:28Z +293,Laohekou,23,2020-02-15T06:59:28Z +294,Lapu-Lapu,75,2020-02-15T06:59:28Z +295,Laredo,103,2020-02-15T06:59:28Z +296,Lausanne,91,2020-02-15T06:59:28Z +297,Le Mans,34,2020-02-15T06:59:28Z +298,Lengshuijiang,23,2020-02-15T06:59:28Z +299,Leshan,23,2020-02-15T06:59:28Z +300,Lethbridge,20,2020-02-15T06:59:28Z +301,Lhokseumawe,45,2020-02-15T06:59:28Z +302,Liaocheng,23,2020-02-15T06:59:28Z +303,Liepaja,54,2020-02-15T06:59:28Z +304,Lilongwe,58,2020-02-15T06:59:28Z +305,Lima,74,2020-02-15T06:59:28Z +306,Lincoln,103,2020-02-15T06:59:28Z +307,Linz,9,2020-02-15T06:59:28Z +308,Lipetsk,80,2020-02-15T06:59:28Z +309,Livorno,49,2020-02-15T06:59:28Z +310,Ljubertsy,80,2020-02-15T06:59:28Z +311,Loja,28,2020-02-15T06:59:28Z +312,London,102,2020-02-15T06:59:28Z +313,London,20,2020-02-15T06:59:28Z +314,Lublin,76,2020-02-15T06:59:28Z +315,Lubumbashi,25,2020-02-15T06:59:28Z +316,Lungtan,92,2020-02-15T06:59:28Z +317,Luzinia,15,2020-02-15T06:59:28Z +318,Madiun,45,2020-02-15T06:59:28Z +319,Mahajanga,57,2020-02-15T06:59:28Z +320,Maikop,80,2020-02-15T06:59:28Z +321,Malm,90,2020-02-15T06:59:28Z +322,Manchester,103,2020-02-15T06:59:28Z +323,Mandaluyong,75,2020-02-15T06:59:28Z +324,Mandi Bahauddin,72,2020-02-15T06:59:28Z +325,Mannheim,38,2020-02-15T06:59:28Z +326,Maracabo,104,2020-02-15T06:59:28Z +327,Mardan,72,2020-02-15T06:59:28Z +328,Maring,15,2020-02-15T06:59:28Z +329,Masqat,71,2020-02-15T06:59:28Z +330,Matamoros,60,2020-02-15T06:59:28Z +331,Matsue,50,2020-02-15T06:59:28Z +332,Meixian,23,2020-02-15T06:59:28Z +333,Memphis,103,2020-02-15T06:59:28Z +334,Merlo,6,2020-02-15T06:59:28Z +335,Mexicali,60,2020-02-15T06:59:28Z +336,Miraj,44,2020-02-15T06:59:28Z +337,Mit Ghamr,29,2020-02-15T06:59:28Z +338,Miyakonojo,50,2020-02-15T06:59:28Z +339,Mogiljov,13,2020-02-15T06:59:28Z +340,Molodetno,13,2020-02-15T06:59:28Z +341,Monclova,60,2020-02-15T06:59:28Z +342,Monywa,64,2020-02-15T06:59:28Z +343,Moscow,80,2020-02-15T06:59:28Z +344,Mosul,47,2020-02-15T06:59:28Z +345,Mukateve,100,2020-02-15T06:59:28Z +346,Munger (Monghyr),44,2020-02-15T06:59:28Z +347,Mwanza,93,2020-02-15T06:59:28Z +348,Mwene-Ditu,25,2020-02-15T06:59:28Z +349,Myingyan,64,2020-02-15T06:59:28Z +350,Mysore,44,2020-02-15T06:59:28Z +351,Naala-Porto,63,2020-02-15T06:59:28Z +352,Nabereznyje Telny,80,2020-02-15T06:59:28Z +353,Nador,62,2020-02-15T06:59:28Z +354,Nagaon,44,2020-02-15T06:59:28Z +355,Nagareyama,50,2020-02-15T06:59:28Z +356,Najafabad,46,2020-02-15T06:59:28Z +357,Naju,86,2020-02-15T06:59:28Z +358,Nakhon Sawan,94,2020-02-15T06:59:28Z +359,Nam Dinh,105,2020-02-15T06:59:28Z +360,Namibe,4,2020-02-15T06:59:28Z +361,Nantou,92,2020-02-15T06:59:28Z +362,Nanyang,23,2020-02-15T06:59:28Z +363,NDjamna,21,2020-02-15T06:59:28Z +364,Newcastle,85,2020-02-15T06:59:28Z +365,Nezahualcyotl,60,2020-02-15T06:59:28Z +366,Nha Trang,105,2020-02-15T06:59:28Z +367,Niznekamsk,80,2020-02-15T06:59:28Z +368,Novi Sad,108,2020-02-15T06:59:28Z +369,Novoterkassk,80,2020-02-15T06:59:28Z +370,Nukualofa,95,2020-02-15T06:59:28Z +371,Nuuk,40,2020-02-15T06:59:28Z +372,Nyeri,52,2020-02-15T06:59:28Z +373,Ocumare del Tuy,104,2020-02-15T06:59:28Z +374,Ogbomosho,69,2020-02-15T06:59:28Z +375,Okara,72,2020-02-15T06:59:28Z +376,Okayama,50,2020-02-15T06:59:28Z +377,Okinawa,50,2020-02-15T06:59:28Z +378,Olomouc,26,2020-02-15T06:59:28Z +379,Omdurman,89,2020-02-15T06:59:28Z +380,Omiya,50,2020-02-15T06:59:28Z +381,Ondo,69,2020-02-15T06:59:28Z +382,Onomichi,50,2020-02-15T06:59:28Z +383,Oshawa,20,2020-02-15T06:59:28Z +384,Osmaniye,97,2020-02-15T06:59:28Z +385,ostka,100,2020-02-15T06:59:28Z +386,Otsu,50,2020-02-15T06:59:28Z +387,Oulu,33,2020-02-15T06:59:28Z +388,Ourense (Orense),87,2020-02-15T06:59:28Z +389,Owo,69,2020-02-15T06:59:28Z +390,Oyo,69,2020-02-15T06:59:28Z +391,Ozamis,75,2020-02-15T06:59:28Z +392,Paarl,85,2020-02-15T06:59:28Z +393,Pachuca de Soto,60,2020-02-15T06:59:28Z +394,Pak Kret,94,2020-02-15T06:59:28Z +395,Palghat (Palakkad),44,2020-02-15T06:59:28Z +396,Pangkal Pinang,45,2020-02-15T06:59:28Z +397,Papeete,36,2020-02-15T06:59:28Z +398,Parbhani,44,2020-02-15T06:59:28Z +399,Pathankot,44,2020-02-15T06:59:28Z +400,Patiala,44,2020-02-15T06:59:28Z +401,Patras,39,2020-02-15T06:59:28Z +402,Pavlodar,51,2020-02-15T06:59:28Z +403,Pemalang,45,2020-02-15T06:59:28Z +404,Peoria,103,2020-02-15T06:59:28Z +405,Pereira,24,2020-02-15T06:59:28Z +406,Phnom Penh,18,2020-02-15T06:59:28Z +407,Pingxiang,23,2020-02-15T06:59:28Z +408,Pjatigorsk,80,2020-02-15T06:59:28Z +409,Plock,76,2020-02-15T06:59:28Z +410,Po,15,2020-02-15T06:59:28Z +411,Ponce,77,2020-02-15T06:59:28Z +412,Pontianak,45,2020-02-15T06:59:28Z +413,Poos de Caldas,15,2020-02-15T06:59:28Z +414,Portoviejo,28,2020-02-15T06:59:28Z +415,Probolinggo,45,2020-02-15T06:59:28Z +416,Pudukkottai,44,2020-02-15T06:59:28Z +417,Pune,44,2020-02-15T06:59:28Z +418,Purnea (Purnia),44,2020-02-15T06:59:28Z +419,Purwakarta,45,2020-02-15T06:59:28Z +420,Pyongyang,70,2020-02-15T06:59:28Z +421,Qalyub,29,2020-02-15T06:59:28Z +422,Qinhuangdao,23,2020-02-15T06:59:28Z +423,Qomsheh,46,2020-02-15T06:59:28Z +424,Quilmes,6,2020-02-15T06:59:28Z +425,Rae Bareli,44,2020-02-15T06:59:28Z +426,Rajkot,44,2020-02-15T06:59:28Z +427,Rampur,44,2020-02-15T06:59:28Z +428,Rancagua,22,2020-02-15T06:59:28Z +429,Ranchi,44,2020-02-15T06:59:28Z +430,Richmond Hill,20,2020-02-15T06:59:28Z +431,Rio Claro,15,2020-02-15T06:59:28Z +432,Rizhao,23,2020-02-15T06:59:28Z +433,Roanoke,103,2020-02-15T06:59:28Z +434,Robamba,28,2020-02-15T06:59:28Z +435,Rockford,103,2020-02-15T06:59:28Z +436,Ruse,17,2020-02-15T06:59:28Z +437,Rustenburg,85,2020-02-15T06:59:28Z +438,s-Hertogenbosch,67,2020-02-15T06:59:28Z +439,Saarbrcken,38,2020-02-15T06:59:28Z +440,Sagamihara,50,2020-02-15T06:59:28Z +441,Saint Louis,103,2020-02-15T06:59:28Z +442,Saint-Denis,79,2020-02-15T06:59:28Z +443,Sal,62,2020-02-15T06:59:28Z +444,Salala,71,2020-02-15T06:59:28Z +445,Salamanca,60,2020-02-15T06:59:28Z +446,Salinas,103,2020-02-15T06:59:28Z +447,Salzburg,9,2020-02-15T06:59:28Z +448,Sambhal,44,2020-02-15T06:59:28Z +449,San Bernardino,103,2020-02-15T06:59:28Z +450,San Felipe de Puerto Plata,27,2020-02-15T06:59:28Z +451,San Felipe del Progreso,60,2020-02-15T06:59:28Z +452,San Juan Bautista Tuxtepec,60,2020-02-15T06:59:28Z +453,San Lorenzo,73,2020-02-15T06:59:28Z +454,San Miguel de Tucumn,6,2020-02-15T06:59:28Z +455,Sanaa,107,2020-02-15T06:59:28Z +456,Santa Brbara dOeste,15,2020-02-15T06:59:28Z +457,Santa F,6,2020-02-15T06:59:28Z +458,Santa Rosa,75,2020-02-15T06:59:28Z +459,Santiago de Compostela,87,2020-02-15T06:59:28Z +460,Santiago de los Caballeros,27,2020-02-15T06:59:28Z +461,Santo Andr,15,2020-02-15T06:59:28Z +462,Sanya,23,2020-02-15T06:59:28Z +463,Sasebo,50,2020-02-15T06:59:28Z +464,Satna,44,2020-02-15T06:59:28Z +465,Sawhaj,29,2020-02-15T06:59:28Z +466,Serpuhov,80,2020-02-15T06:59:28Z +467,Shahr-e Kord,46,2020-02-15T06:59:28Z +468,Shanwei,23,2020-02-15T06:59:28Z +469,Shaoguan,23,2020-02-15T06:59:28Z +470,Sharja,101,2020-02-15T06:59:28Z +471,Shenzhen,23,2020-02-15T06:59:28Z +472,Shikarpur,72,2020-02-15T06:59:28Z +473,Shimoga,44,2020-02-15T06:59:28Z +474,Shimonoseki,50,2020-02-15T06:59:28Z +475,Shivapuri,44,2020-02-15T06:59:28Z +476,Shubra al-Khayma,29,2020-02-15T06:59:28Z +477,Siegen,38,2020-02-15T06:59:28Z +478,Siliguri (Shiliguri),44,2020-02-15T06:59:28Z +479,Simferopol,100,2020-02-15T06:59:28Z +480,Sincelejo,24,2020-02-15T06:59:28Z +481,Sirjan,46,2020-02-15T06:59:28Z +482,Sivas,97,2020-02-15T06:59:28Z +483,Skikda,2,2020-02-15T06:59:28Z +484,Smolensk,80,2020-02-15T06:59:28Z +485,So Bernardo do Campo,15,2020-02-15T06:59:28Z +486,So Leopoldo,15,2020-02-15T06:59:28Z +487,Sogamoso,24,2020-02-15T06:59:28Z +488,Sokoto,69,2020-02-15T06:59:28Z +489,Songkhla,94,2020-02-15T06:59:28Z +490,Sorocaba,15,2020-02-15T06:59:28Z +491,Soshanguve,85,2020-02-15T06:59:28Z +492,Sousse,96,2020-02-15T06:59:28Z +493,South Hill,5,2020-02-15T06:59:28Z +494,Southampton,102,2020-02-15T06:59:28Z +495,Southend-on-Sea,102,2020-02-15T06:59:28Z +496,Southport,102,2020-02-15T06:59:28Z +497,Springs,85,2020-02-15T06:59:28Z +498,Stara Zagora,17,2020-02-15T06:59:28Z +499,Sterling Heights,103,2020-02-15T06:59:28Z +500,Stockport,102,2020-02-15T06:59:28Z +501,Sucre,14,2020-02-15T06:59:28Z +502,Suihua,23,2020-02-15T06:59:28Z +503,Sullana,74,2020-02-15T06:59:28Z +504,Sultanbeyli,97,2020-02-15T06:59:28Z +505,Sumqayit,10,2020-02-15T06:59:28Z +506,Sumy,100,2020-02-15T06:59:28Z +507,Sungai Petani,59,2020-02-15T06:59:28Z +508,Sunnyvale,103,2020-02-15T06:59:28Z +509,Surakarta,45,2020-02-15T06:59:28Z +510,Syktyvkar,80,2020-02-15T06:59:28Z +511,Syrakusa,49,2020-02-15T06:59:28Z +512,Szkesfehrvr,43,2020-02-15T06:59:28Z +513,Tabora,93,2020-02-15T06:59:28Z +514,Tabriz,46,2020-02-15T06:59:28Z +515,Tabuk,82,2020-02-15T06:59:28Z +516,Tafuna,3,2020-02-15T06:59:28Z +517,Taguig,75,2020-02-15T06:59:28Z +518,Taizz,107,2020-02-15T06:59:28Z +519,Talavera,75,2020-02-15T06:59:28Z +520,Tallahassee,103,2020-02-15T06:59:28Z +521,Tama,50,2020-02-15T06:59:28Z +522,Tambaram,44,2020-02-15T06:59:28Z +523,Tanauan,75,2020-02-15T06:59:28Z +524,Tandil,6,2020-02-15T06:59:28Z +525,Tangail,12,2020-02-15T06:59:28Z +526,Tanshui,92,2020-02-15T06:59:28Z +527,Tanza,75,2020-02-15T06:59:28Z +528,Tarlac,75,2020-02-15T06:59:28Z +529,Tarsus,97,2020-02-15T06:59:28Z +530,Tartu,30,2020-02-15T06:59:28Z +531,Teboksary,80,2020-02-15T06:59:28Z +532,Tegal,45,2020-02-15T06:59:28Z +533,Tel Aviv-Jaffa,48,2020-02-15T06:59:28Z +534,Tete,63,2020-02-15T06:59:28Z +535,Tianjin,23,2020-02-15T06:59:28Z +536,Tiefa,23,2020-02-15T06:59:28Z +537,Tieli,23,2020-02-15T06:59:28Z +538,Tokat,97,2020-02-15T06:59:28Z +539,Tonghae,86,2020-02-15T06:59:28Z +540,Tongliao,23,2020-02-15T06:59:28Z +541,Torren,60,2020-02-15T06:59:28Z +542,Touliu,92,2020-02-15T06:59:28Z +543,Toulon,34,2020-02-15T06:59:28Z +544,Toulouse,34,2020-02-15T06:59:28Z +545,Trshavn,32,2020-02-15T06:59:28Z +546,Tsaotun,92,2020-02-15T06:59:28Z +547,Tsuyama,50,2020-02-15T06:59:28Z +548,Tuguegarao,75,2020-02-15T06:59:28Z +549,Tychy,76,2020-02-15T06:59:28Z +550,Udaipur,44,2020-02-15T06:59:28Z +551,Udine,49,2020-02-15T06:59:28Z +552,Ueda,50,2020-02-15T06:59:28Z +553,Uijongbu,86,2020-02-15T06:59:28Z +554,Uluberia,44,2020-02-15T06:59:28Z +555,Urawa,50,2020-02-15T06:59:28Z +556,Uruapan,60,2020-02-15T06:59:28Z +557,Usak,97,2020-02-15T06:59:28Z +558,Usolje-Sibirskoje,80,2020-02-15T06:59:28Z +559,Uttarpara-Kotrung,44,2020-02-15T06:59:28Z +560,Vaduz,55,2020-02-15T06:59:28Z +561,Valencia,104,2020-02-15T06:59:28Z +562,Valle de la Pascua,104,2020-02-15T06:59:28Z +563,Valle de Santiago,60,2020-02-15T06:59:28Z +564,Valparai,44,2020-02-15T06:59:28Z +565,Vancouver,20,2020-02-15T06:59:28Z +566,Varanasi (Benares),44,2020-02-15T06:59:28Z +567,Vicente Lpez,6,2020-02-15T06:59:28Z +568,Vijayawada,44,2020-02-15T06:59:28Z +569,Vila Velha,15,2020-02-15T06:59:28Z +570,Vilnius,56,2020-02-15T06:59:28Z +571,Vinh,105,2020-02-15T06:59:28Z +572,Vitria de Santo Anto,15,2020-02-15T06:59:28Z +573,Warren,103,2020-02-15T06:59:28Z +574,Weifang,23,2020-02-15T06:59:28Z +575,Witten,38,2020-02-15T06:59:28Z +576,Woodridge,8,2020-02-15T06:59:28Z +577,Wroclaw,76,2020-02-15T06:59:28Z +578,Xiangfan,23,2020-02-15T06:59:28Z +579,Xiangtan,23,2020-02-15T06:59:28Z +580,Xintai,23,2020-02-15T06:59:28Z +581,Xinxiang,23,2020-02-15T06:59:28Z +582,Yamuna Nagar,44,2020-02-15T06:59:28Z +583,Yangor,65,2020-02-15T06:59:28Z +584,Yantai,23,2020-02-15T06:59:28Z +585,Yaound,19,2020-02-15T06:59:28Z +586,Yerevan,7,2020-02-15T06:59:28Z +587,Yinchuan,23,2020-02-15T06:59:28Z +588,Yingkou,23,2020-02-15T06:59:28Z +589,York,102,2020-02-15T06:59:28Z +590,Yuncheng,23,2020-02-15T06:59:28Z +591,Yuzhou,23,2020-02-15T06:59:28Z +592,Zalantun,23,2020-02-15T06:59:28Z +593,Zanzibar,93,2020-02-15T06:59:28Z +594,Zaoyang,23,2020-02-15T06:59:28Z +595,Zapopan,60,2020-02-15T06:59:28Z +596,Zaria,69,2020-02-15T06:59:28Z +597,Zeleznogorsk,80,2020-02-15T06:59:28Z +598,Zhezqazghan,51,2020-02-15T06:59:28Z +599,Zhoushan,23,2020-02-15T06:59:28Z +600,Ziguinchor,83,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv/country.csv b/drivers/csv/testdata/sakila-csv/country.csv new file mode 100644 index 00000000..2036b5ce --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/country.csv @@ -0,0 +1,110 @@ +country_id,country,last_update +1,Afghanistan,2020-02-15T06:59:27Z +2,Algeria,2020-02-15T06:59:27Z +3,American Samoa,2020-02-15T06:59:27Z +4,Angola,2020-02-15T06:59:27Z +5,Anguilla,2020-02-15T06:59:27Z +6,Argentina,2020-02-15T06:59:27Z +7,Armenia,2020-02-15T06:59:27Z +8,Australia,2020-02-15T06:59:27Z +9,Austria,2020-02-15T06:59:27Z +10,Azerbaijan,2020-02-15T06:59:27Z +11,Bahrain,2020-02-15T06:59:27Z +12,Bangladesh,2020-02-15T06:59:27Z +13,Belarus,2020-02-15T06:59:27Z +14,Bolivia,2020-02-15T06:59:27Z +15,Brazil,2020-02-15T06:59:27Z +16,Brunei,2020-02-15T06:59:27Z +17,Bulgaria,2020-02-15T06:59:27Z +18,Cambodia,2020-02-15T06:59:27Z +19,Cameroon,2020-02-15T06:59:27Z +20,Canada,2020-02-15T06:59:27Z +21,Chad,2020-02-15T06:59:27Z +22,Chile,2020-02-15T06:59:27Z +23,China,2020-02-15T06:59:27Z +24,Colombia,2020-02-15T06:59:27Z +25,"Congo, The Democratic Republic of the",2020-02-15T06:59:27Z +26,Czech Republic,2020-02-15T06:59:27Z +27,Dominican Republic,2020-02-15T06:59:27Z +28,Ecuador,2020-02-15T06:59:27Z +29,Egypt,2020-02-15T06:59:27Z +30,Estonia,2020-02-15T06:59:27Z +31,Ethiopia,2020-02-15T06:59:27Z +32,Faroe Islands,2020-02-15T06:59:27Z +33,Finland,2020-02-15T06:59:27Z +34,France,2020-02-15T06:59:27Z +35,French Guiana,2020-02-15T06:59:27Z +36,French Polynesia,2020-02-15T06:59:27Z +37,Gambia,2020-02-15T06:59:27Z +38,Germany,2020-02-15T06:59:27Z +39,Greece,2020-02-15T06:59:27Z +40,Greenland,2020-02-15T06:59:27Z +41,Holy See (Vatican City State),2020-02-15T06:59:28Z +42,Hong Kong,2020-02-15T06:59:28Z +43,Hungary,2020-02-15T06:59:28Z +44,India,2020-02-15T06:59:28Z +45,Indonesia,2020-02-15T06:59:28Z +46,Iran,2020-02-15T06:59:28Z +47,Iraq,2020-02-15T06:59:28Z +48,Israel,2020-02-15T06:59:28Z +49,Italy,2020-02-15T06:59:28Z +50,Japan,2020-02-15T06:59:28Z +51,Kazakstan,2020-02-15T06:59:28Z +52,Kenya,2020-02-15T06:59:28Z +53,Kuwait,2020-02-15T06:59:28Z +54,Latvia,2020-02-15T06:59:28Z +55,Liechtenstein,2020-02-15T06:59:28Z +56,Lithuania,2020-02-15T06:59:28Z +57,Madagascar,2020-02-15T06:59:28Z +58,Malawi,2020-02-15T06:59:28Z +59,Malaysia,2020-02-15T06:59:28Z +60,Mexico,2020-02-15T06:59:28Z +61,Moldova,2020-02-15T06:59:28Z +62,Morocco,2020-02-15T06:59:28Z +63,Mozambique,2020-02-15T06:59:28Z +64,Myanmar,2020-02-15T06:59:28Z +65,Nauru,2020-02-15T06:59:28Z +66,Nepal,2020-02-15T06:59:28Z +67,Netherlands,2020-02-15T06:59:28Z +68,New Zealand,2020-02-15T06:59:28Z +69,Nigeria,2020-02-15T06:59:28Z +70,North Korea,2020-02-15T06:59:28Z +71,Oman,2020-02-15T06:59:28Z +72,Pakistan,2020-02-15T06:59:28Z +73,Paraguay,2020-02-15T06:59:28Z +74,Peru,2020-02-15T06:59:28Z +75,Philippines,2020-02-15T06:59:28Z +76,Poland,2020-02-15T06:59:28Z +77,Puerto Rico,2020-02-15T06:59:28Z +78,Romania,2020-02-15T06:59:28Z +79,Runion,2020-02-15T06:59:28Z +80,Russian Federation,2020-02-15T06:59:28Z +81,Saint Vincent and the Grenadines,2020-02-15T06:59:28Z +82,Saudi Arabia,2020-02-15T06:59:28Z +83,Senegal,2020-02-15T06:59:28Z +84,Slovakia,2020-02-15T06:59:28Z +85,South Africa,2020-02-15T06:59:28Z +86,South Korea,2020-02-15T06:59:28Z +87,Spain,2020-02-15T06:59:28Z +88,Sri Lanka,2020-02-15T06:59:28Z +89,Sudan,2020-02-15T06:59:28Z +90,Sweden,2020-02-15T06:59:28Z +91,Switzerland,2020-02-15T06:59:28Z +92,Taiwan,2020-02-15T06:59:28Z +93,Tanzania,2020-02-15T06:59:28Z +94,Thailand,2020-02-15T06:59:28Z +95,Tonga,2020-02-15T06:59:28Z +96,Tunisia,2020-02-15T06:59:28Z +97,Turkey,2020-02-15T06:59:28Z +98,Turkmenistan,2020-02-15T06:59:28Z +99,Tuvalu,2020-02-15T06:59:28Z +100,Ukraine,2020-02-15T06:59:28Z +101,United Arab Emirates,2020-02-15T06:59:28Z +102,United Kingdom,2020-02-15T06:59:28Z +103,United States,2020-02-15T06:59:28Z +104,Venezuela,2020-02-15T06:59:28Z +105,Vietnam,2020-02-15T06:59:28Z +106,"Virgin Islands, U.S.",2020-02-15T06:59:28Z +107,Yemen,2020-02-15T06:59:28Z +108,Yugoslavia,2020-02-15T06:59:28Z +109,Zambia,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv/customer.csv b/drivers/csv/testdata/sakila-csv/customer.csv new file mode 100644 index 00000000..c6028a1b --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/customer.csv @@ -0,0 +1,600 @@ +customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update +1,1,MARY,SMITH,MARY.SMITH@sakilacustomer.org,5,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +2,1,PATRICIA,JOHNSON,PATRICIA.JOHNSON@sakilacustomer.org,6,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +3,1,LINDA,WILLIAMS,LINDA.WILLIAMS@sakilacustomer.org,7,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +4,2,BARBARA,JONES,BARBARA.JONES@sakilacustomer.org,8,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +5,1,ELIZABETH,BROWN,ELIZABETH.BROWN@sakilacustomer.org,9,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +6,2,JENNIFER,DAVIS,JENNIFER.DAVIS@sakilacustomer.org,10,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +7,1,MARIA,MILLER,MARIA.MILLER@sakilacustomer.org,11,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +8,2,SUSAN,WILSON,SUSAN.WILSON@sakilacustomer.org,12,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +9,2,MARGARET,MOORE,MARGARET.MOORE@sakilacustomer.org,13,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +10,1,DOROTHY,TAYLOR,DOROTHY.TAYLOR@sakilacustomer.org,14,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +11,2,LISA,ANDERSON,LISA.ANDERSON@sakilacustomer.org,15,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +12,1,NANCY,THOMAS,NANCY.THOMAS@sakilacustomer.org,16,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +13,2,KAREN,JACKSON,KAREN.JACKSON@sakilacustomer.org,17,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +14,2,BETTY,WHITE,BETTY.WHITE@sakilacustomer.org,18,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +15,1,HELEN,HARRIS,HELEN.HARRIS@sakilacustomer.org,19,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +16,2,SANDRA,MARTIN,SANDRA.MARTIN@sakilacustomer.org,20,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +17,1,DONNA,THOMPSON,DONNA.THOMPSON@sakilacustomer.org,21,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +18,2,CAROL,GARCIA,CAROL.GARCIA@sakilacustomer.org,22,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +19,1,RUTH,MARTINEZ,RUTH.MARTINEZ@sakilacustomer.org,23,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +20,2,SHARON,ROBINSON,SHARON.ROBINSON@sakilacustomer.org,24,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +21,1,MICHELLE,CLARK,MICHELLE.CLARK@sakilacustomer.org,25,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +22,1,LAURA,RODRIGUEZ,LAURA.RODRIGUEZ@sakilacustomer.org,26,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +23,2,SARAH,LEWIS,SARAH.LEWIS@sakilacustomer.org,27,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +24,2,KIMBERLY,LEE,KIMBERLY.LEE@sakilacustomer.org,28,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +25,1,DEBORAH,WALKER,DEBORAH.WALKER@sakilacustomer.org,29,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +26,2,JESSICA,HALL,JESSICA.HALL@sakilacustomer.org,30,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +27,2,SHIRLEY,ALLEN,SHIRLEY.ALLEN@sakilacustomer.org,31,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +28,1,CYNTHIA,YOUNG,CYNTHIA.YOUNG@sakilacustomer.org,32,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +29,2,ANGELA,HERNANDEZ,ANGELA.HERNANDEZ@sakilacustomer.org,33,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +30,1,MELISSA,KING,MELISSA.KING@sakilacustomer.org,34,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +31,2,BRENDA,WRIGHT,BRENDA.WRIGHT@sakilacustomer.org,35,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +32,1,AMY,LOPEZ,AMY.LOPEZ@sakilacustomer.org,36,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +33,2,ANNA,HILL,ANNA.HILL@sakilacustomer.org,37,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +34,2,REBECCA,SCOTT,REBECCA.SCOTT@sakilacustomer.org,38,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +35,2,VIRGINIA,GREEN,VIRGINIA.GREEN@sakilacustomer.org,39,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +36,2,KATHLEEN,ADAMS,KATHLEEN.ADAMS@sakilacustomer.org,40,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +37,1,PAMELA,BAKER,PAMELA.BAKER@sakilacustomer.org,41,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +38,1,MARTHA,GONZALEZ,MARTHA.GONZALEZ@sakilacustomer.org,42,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +39,1,DEBRA,NELSON,DEBRA.NELSON@sakilacustomer.org,43,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +40,2,AMANDA,CARTER,AMANDA.CARTER@sakilacustomer.org,44,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +41,1,STEPHANIE,MITCHELL,STEPHANIE.MITCHELL@sakilacustomer.org,45,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +42,2,CAROLYN,PEREZ,CAROLYN.PEREZ@sakilacustomer.org,46,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +43,2,CHRISTINE,ROBERTS,CHRISTINE.ROBERTS@sakilacustomer.org,47,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +44,1,MARIE,TURNER,MARIE.TURNER@sakilacustomer.org,48,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +45,1,JANET,PHILLIPS,JANET.PHILLIPS@sakilacustomer.org,49,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +46,2,CATHERINE,CAMPBELL,CATHERINE.CAMPBELL@sakilacustomer.org,50,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +47,1,FRANCES,PARKER,FRANCES.PARKER@sakilacustomer.org,51,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +48,1,ANN,EVANS,ANN.EVANS@sakilacustomer.org,52,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +49,2,JOYCE,EDWARDS,JOYCE.EDWARDS@sakilacustomer.org,53,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +50,1,DIANE,COLLINS,DIANE.COLLINS@sakilacustomer.org,54,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +51,1,ALICE,STEWART,ALICE.STEWART@sakilacustomer.org,55,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +52,1,JULIE,SANCHEZ,JULIE.SANCHEZ@sakilacustomer.org,56,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +53,1,HEATHER,MORRIS,HEATHER.MORRIS@sakilacustomer.org,57,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +54,1,TERESA,ROGERS,TERESA.ROGERS@sakilacustomer.org,58,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +55,2,DORIS,REED,DORIS.REED@sakilacustomer.org,59,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +56,1,GLORIA,COOK,GLORIA.COOK@sakilacustomer.org,60,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +57,2,EVELYN,MORGAN,EVELYN.MORGAN@sakilacustomer.org,61,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +58,1,JEAN,BELL,JEAN.BELL@sakilacustomer.org,62,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +59,1,CHERYL,MURPHY,CHERYL.MURPHY@sakilacustomer.org,63,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +60,1,MILDRED,BAILEY,MILDRED.BAILEY@sakilacustomer.org,64,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +61,2,KATHERINE,RIVERA,KATHERINE.RIVERA@sakilacustomer.org,65,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +62,1,JOAN,COOPER,JOAN.COOPER@sakilacustomer.org,66,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +63,1,ASHLEY,RICHARDSON,ASHLEY.RICHARDSON@sakilacustomer.org,67,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +64,2,JUDITH,COX,JUDITH.COX@sakilacustomer.org,68,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +65,2,ROSE,HOWARD,ROSE.HOWARD@sakilacustomer.org,69,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +66,2,JANICE,WARD,JANICE.WARD@sakilacustomer.org,70,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +67,1,KELLY,TORRES,KELLY.TORRES@sakilacustomer.org,71,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +68,1,NICOLE,PETERSON,NICOLE.PETERSON@sakilacustomer.org,72,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +69,2,JUDY,GRAY,JUDY.GRAY@sakilacustomer.org,73,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +70,2,CHRISTINA,RAMIREZ,CHRISTINA.RAMIREZ@sakilacustomer.org,74,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +71,1,KATHY,JAMES,KATHY.JAMES@sakilacustomer.org,75,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +72,2,THERESA,WATSON,THERESA.WATSON@sakilacustomer.org,76,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +73,2,BEVERLY,BROOKS,BEVERLY.BROOKS@sakilacustomer.org,77,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +74,1,DENISE,KELLY,DENISE.KELLY@sakilacustomer.org,78,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +75,2,TAMMY,SANDERS,TAMMY.SANDERS@sakilacustomer.org,79,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +76,2,IRENE,PRICE,IRENE.PRICE@sakilacustomer.org,80,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +77,2,JANE,BENNETT,JANE.BENNETT@sakilacustomer.org,81,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +78,1,LORI,WOOD,LORI.WOOD@sakilacustomer.org,82,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +79,1,RACHEL,BARNES,RACHEL.BARNES@sakilacustomer.org,83,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +80,1,MARILYN,ROSS,MARILYN.ROSS@sakilacustomer.org,84,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +81,1,ANDREA,HENDERSON,ANDREA.HENDERSON@sakilacustomer.org,85,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +82,1,KATHRYN,COLEMAN,KATHRYN.COLEMAN@sakilacustomer.org,86,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +83,1,LOUISE,JENKINS,LOUISE.JENKINS@sakilacustomer.org,87,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +84,2,SARA,PERRY,SARA.PERRY@sakilacustomer.org,88,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +85,2,ANNE,POWELL,ANNE.POWELL@sakilacustomer.org,89,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +86,2,JACQUELINE,LONG,JACQUELINE.LONG@sakilacustomer.org,90,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +87,1,WANDA,PATTERSON,WANDA.PATTERSON@sakilacustomer.org,91,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +88,2,BONNIE,HUGHES,BONNIE.HUGHES@sakilacustomer.org,92,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +89,1,JULIA,FLORES,JULIA.FLORES@sakilacustomer.org,93,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +90,2,RUBY,WASHINGTON,RUBY.WASHINGTON@sakilacustomer.org,94,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +91,2,LOIS,BUTLER,LOIS.BUTLER@sakilacustomer.org,95,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +92,2,TINA,SIMMONS,TINA.SIMMONS@sakilacustomer.org,96,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +93,1,PHYLLIS,FOSTER,PHYLLIS.FOSTER@sakilacustomer.org,97,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +94,1,NORMA,GONZALES,NORMA.GONZALES@sakilacustomer.org,98,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +95,2,PAULA,BRYANT,PAULA.BRYANT@sakilacustomer.org,99,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +96,1,DIANA,ALEXANDER,DIANA.ALEXANDER@sakilacustomer.org,100,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +97,2,ANNIE,RUSSELL,ANNIE.RUSSELL@sakilacustomer.org,101,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +98,1,LILLIAN,GRIFFIN,LILLIAN.GRIFFIN@sakilacustomer.org,102,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +99,2,EMILY,DIAZ,EMILY.DIAZ@sakilacustomer.org,103,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +100,1,ROBIN,HAYES,ROBIN.HAYES@sakilacustomer.org,104,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +101,1,PEGGY,MYERS,PEGGY.MYERS@sakilacustomer.org,105,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +102,1,CRYSTAL,FORD,CRYSTAL.FORD@sakilacustomer.org,106,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +103,1,GLADYS,HAMILTON,GLADYS.HAMILTON@sakilacustomer.org,107,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +104,1,RITA,GRAHAM,RITA.GRAHAM@sakilacustomer.org,108,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +105,1,DAWN,SULLIVAN,DAWN.SULLIVAN@sakilacustomer.org,109,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +106,1,CONNIE,WALLACE,CONNIE.WALLACE@sakilacustomer.org,110,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +107,1,FLORENCE,WOODS,FLORENCE.WOODS@sakilacustomer.org,111,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +108,1,TRACY,COLE,TRACY.COLE@sakilacustomer.org,112,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +109,2,EDNA,WEST,EDNA.WEST@sakilacustomer.org,113,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +110,2,TIFFANY,JORDAN,TIFFANY.JORDAN@sakilacustomer.org,114,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +111,1,CARMEN,OWENS,CARMEN.OWENS@sakilacustomer.org,115,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +112,2,ROSA,REYNOLDS,ROSA.REYNOLDS@sakilacustomer.org,116,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +113,2,CINDY,FISHER,CINDY.FISHER@sakilacustomer.org,117,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +114,2,GRACE,ELLIS,GRACE.ELLIS@sakilacustomer.org,118,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +115,1,WENDY,HARRISON,WENDY.HARRISON@sakilacustomer.org,119,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +116,1,VICTORIA,GIBSON,VICTORIA.GIBSON@sakilacustomer.org,120,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +117,1,EDITH,MCDONALD,EDITH.MCDONALD@sakilacustomer.org,121,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +118,1,KIM,CRUZ,KIM.CRUZ@sakilacustomer.org,122,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +119,1,SHERRY,MARSHALL,SHERRY.MARSHALL@sakilacustomer.org,123,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +120,2,SYLVIA,ORTIZ,SYLVIA.ORTIZ@sakilacustomer.org,124,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +121,1,JOSEPHINE,GOMEZ,JOSEPHINE.GOMEZ@sakilacustomer.org,125,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +122,1,THELMA,MURRAY,THELMA.MURRAY@sakilacustomer.org,126,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +123,2,SHANNON,FREEMAN,SHANNON.FREEMAN@sakilacustomer.org,127,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +124,1,SHEILA,WELLS,SHEILA.WELLS@sakilacustomer.org,128,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +125,1,ETHEL,WEBB,ETHEL.WEBB@sakilacustomer.org,129,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +126,1,ELLEN,SIMPSON,ELLEN.SIMPSON@sakilacustomer.org,130,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +127,2,ELAINE,STEVENS,ELAINE.STEVENS@sakilacustomer.org,131,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +128,1,MARJORIE,TUCKER,MARJORIE.TUCKER@sakilacustomer.org,132,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +129,1,CARRIE,PORTER,CARRIE.PORTER@sakilacustomer.org,133,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +130,1,CHARLOTTE,HUNTER,CHARLOTTE.HUNTER@sakilacustomer.org,134,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +131,2,MONICA,HICKS,MONICA.HICKS@sakilacustomer.org,135,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +132,2,ESTHER,CRAWFORD,ESTHER.CRAWFORD@sakilacustomer.org,136,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +133,1,PAULINE,HENRY,PAULINE.HENRY@sakilacustomer.org,137,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +134,1,EMMA,BOYD,EMMA.BOYD@sakilacustomer.org,138,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +135,2,JUANITA,MASON,JUANITA.MASON@sakilacustomer.org,139,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +136,2,ANITA,MORALES,ANITA.MORALES@sakilacustomer.org,140,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +137,2,RHONDA,KENNEDY,RHONDA.KENNEDY@sakilacustomer.org,141,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +138,1,HAZEL,WARREN,HAZEL.WARREN@sakilacustomer.org,142,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +139,1,AMBER,DIXON,AMBER.DIXON@sakilacustomer.org,143,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +140,1,EVA,RAMOS,EVA.RAMOS@sakilacustomer.org,144,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +141,1,DEBBIE,REYES,DEBBIE.REYES@sakilacustomer.org,145,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +142,1,APRIL,BURNS,APRIL.BURNS@sakilacustomer.org,146,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +143,1,LESLIE,GORDON,LESLIE.GORDON@sakilacustomer.org,147,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +144,1,CLARA,SHAW,CLARA.SHAW@sakilacustomer.org,148,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +145,1,LUCILLE,HOLMES,LUCILLE.HOLMES@sakilacustomer.org,149,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +146,1,JAMIE,RICE,JAMIE.RICE@sakilacustomer.org,150,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +147,2,JOANNE,ROBERTSON,JOANNE.ROBERTSON@sakilacustomer.org,151,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +148,1,ELEANOR,HUNT,ELEANOR.HUNT@sakilacustomer.org,152,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +149,1,VALERIE,BLACK,VALERIE.BLACK@sakilacustomer.org,153,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +150,2,DANIELLE,DANIELS,DANIELLE.DANIELS@sakilacustomer.org,154,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +151,2,MEGAN,PALMER,MEGAN.PALMER@sakilacustomer.org,155,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +152,1,ALICIA,MILLS,ALICIA.MILLS@sakilacustomer.org,156,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +153,2,SUZANNE,NICHOLS,SUZANNE.NICHOLS@sakilacustomer.org,157,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +154,2,MICHELE,GRANT,MICHELE.GRANT@sakilacustomer.org,158,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +155,1,GAIL,KNIGHT,GAIL.KNIGHT@sakilacustomer.org,159,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +156,1,BERTHA,FERGUSON,BERTHA.FERGUSON@sakilacustomer.org,160,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +157,2,DARLENE,ROSE,DARLENE.ROSE@sakilacustomer.org,161,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +158,1,VERONICA,STONE,VERONICA.STONE@sakilacustomer.org,162,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +159,1,JILL,HAWKINS,JILL.HAWKINS@sakilacustomer.org,163,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +160,2,ERIN,DUNN,ERIN.DUNN@sakilacustomer.org,164,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +161,1,GERALDINE,PERKINS,GERALDINE.PERKINS@sakilacustomer.org,165,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +162,2,LAUREN,HUDSON,LAUREN.HUDSON@sakilacustomer.org,166,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +163,1,CATHY,SPENCER,CATHY.SPENCER@sakilacustomer.org,167,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +164,2,JOANN,GARDNER,JOANN.GARDNER@sakilacustomer.org,168,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +165,2,LORRAINE,STEPHENS,LORRAINE.STEPHENS@sakilacustomer.org,169,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +166,1,LYNN,PAYNE,LYNN.PAYNE@sakilacustomer.org,170,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +167,2,SALLY,PIERCE,SALLY.PIERCE@sakilacustomer.org,171,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +168,1,REGINA,BERRY,REGINA.BERRY@sakilacustomer.org,172,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +169,2,ERICA,MATTHEWS,ERICA.MATTHEWS@sakilacustomer.org,173,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +170,1,BEATRICE,ARNOLD,BEATRICE.ARNOLD@sakilacustomer.org,174,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +171,2,DOLORES,WAGNER,DOLORES.WAGNER@sakilacustomer.org,175,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +172,1,BERNICE,WILLIS,BERNICE.WILLIS@sakilacustomer.org,176,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +173,1,AUDREY,RAY,AUDREY.RAY@sakilacustomer.org,177,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +174,2,YVONNE,WATKINS,YVONNE.WATKINS@sakilacustomer.org,178,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +175,1,ANNETTE,OLSON,ANNETTE.OLSON@sakilacustomer.org,179,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +176,1,JUNE,CARROLL,JUNE.CARROLL@sakilacustomer.org,180,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +177,2,SAMANTHA,DUNCAN,SAMANTHA.DUNCAN@sakilacustomer.org,181,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +178,2,MARION,SNYDER,MARION.SNYDER@sakilacustomer.org,182,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +179,1,DANA,HART,DANA.HART@sakilacustomer.org,183,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +180,2,STACY,CUNNINGHAM,STACY.CUNNINGHAM@sakilacustomer.org,184,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +181,2,ANA,BRADLEY,ANA.BRADLEY@sakilacustomer.org,185,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +182,1,RENEE,LANE,RENEE.LANE@sakilacustomer.org,186,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +183,2,IDA,ANDREWS,IDA.ANDREWS@sakilacustomer.org,187,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +184,1,VIVIAN,RUIZ,VIVIAN.RUIZ@sakilacustomer.org,188,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +185,1,ROBERTA,HARPER,ROBERTA.HARPER@sakilacustomer.org,189,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +186,2,HOLLY,FOX,HOLLY.FOX@sakilacustomer.org,190,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +187,2,BRITTANY,RILEY,BRITTANY.RILEY@sakilacustomer.org,191,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +188,1,MELANIE,ARMSTRONG,MELANIE.ARMSTRONG@sakilacustomer.org,192,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +189,1,LORETTA,CARPENTER,LORETTA.CARPENTER@sakilacustomer.org,193,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +190,2,YOLANDA,WEAVER,YOLANDA.WEAVER@sakilacustomer.org,194,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +191,1,JEANETTE,GREENE,JEANETTE.GREENE@sakilacustomer.org,195,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +192,1,LAURIE,LAWRENCE,LAURIE.LAWRENCE@sakilacustomer.org,196,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +193,2,KATIE,ELLIOTT,KATIE.ELLIOTT@sakilacustomer.org,197,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +194,2,KRISTEN,CHAVEZ,KRISTEN.CHAVEZ@sakilacustomer.org,198,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +195,1,VANESSA,SIMS,VANESSA.SIMS@sakilacustomer.org,199,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +196,1,ALMA,AUSTIN,ALMA.AUSTIN@sakilacustomer.org,200,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +197,2,SUE,PETERS,SUE.PETERS@sakilacustomer.org,201,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +198,2,ELSIE,KELLEY,ELSIE.KELLEY@sakilacustomer.org,202,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +199,2,BETH,FRANKLIN,BETH.FRANKLIN@sakilacustomer.org,203,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +200,2,JEANNE,LAWSON,JEANNE.LAWSON@sakilacustomer.org,204,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +201,1,VICKI,FIELDS,VICKI.FIELDS@sakilacustomer.org,205,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +202,2,CARLA,GUTIERREZ,CARLA.GUTIERREZ@sakilacustomer.org,206,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +203,1,TARA,RYAN,TARA.RYAN@sakilacustomer.org,207,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +204,1,ROSEMARY,SCHMIDT,ROSEMARY.SCHMIDT@sakilacustomer.org,208,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +205,2,EILEEN,CARR,EILEEN.CARR@sakilacustomer.org,209,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +206,1,TERRI,VASQUEZ,TERRI.VASQUEZ@sakilacustomer.org,210,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +207,1,GERTRUDE,CASTILLO,GERTRUDE.CASTILLO@sakilacustomer.org,211,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +208,1,LUCY,WHEELER,LUCY.WHEELER@sakilacustomer.org,212,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +209,2,TONYA,CHAPMAN,TONYA.CHAPMAN@sakilacustomer.org,213,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +210,2,ELLA,OLIVER,ELLA.OLIVER@sakilacustomer.org,214,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +211,1,STACEY,MONTGOMERY,STACEY.MONTGOMERY@sakilacustomer.org,215,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +212,2,WILMA,RICHARDS,WILMA.RICHARDS@sakilacustomer.org,216,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +213,1,GINA,WILLIAMSON,GINA.WILLIAMSON@sakilacustomer.org,217,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +214,1,KRISTIN,JOHNSTON,KRISTIN.JOHNSTON@sakilacustomer.org,218,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +215,2,JESSIE,BANKS,JESSIE.BANKS@sakilacustomer.org,219,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +216,1,NATALIE,MEYER,NATALIE.MEYER@sakilacustomer.org,220,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +217,2,AGNES,BISHOP,AGNES.BISHOP@sakilacustomer.org,221,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +218,1,VERA,MCCOY,VERA.MCCOY@sakilacustomer.org,222,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +219,2,WILLIE,HOWELL,WILLIE.HOWELL@sakilacustomer.org,223,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +220,2,CHARLENE,ALVAREZ,CHARLENE.ALVAREZ@sakilacustomer.org,224,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +221,1,BESSIE,MORRISON,BESSIE.MORRISON@sakilacustomer.org,225,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +222,2,DELORES,HANSEN,DELORES.HANSEN@sakilacustomer.org,226,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +223,1,MELINDA,FERNANDEZ,MELINDA.FERNANDEZ@sakilacustomer.org,227,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +224,2,PEARL,GARZA,PEARL.GARZA@sakilacustomer.org,228,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +225,1,ARLENE,HARVEY,ARLENE.HARVEY@sakilacustomer.org,229,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +226,2,MAUREEN,LITTLE,MAUREEN.LITTLE@sakilacustomer.org,230,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +227,1,COLLEEN,BURTON,COLLEEN.BURTON@sakilacustomer.org,231,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +228,2,ALLISON,STANLEY,ALLISON.STANLEY@sakilacustomer.org,232,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +229,1,TAMARA,NGUYEN,TAMARA.NGUYEN@sakilacustomer.org,233,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +230,2,JOY,GEORGE,JOY.GEORGE@sakilacustomer.org,234,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +231,1,GEORGIA,JACOBS,GEORGIA.JACOBS@sakilacustomer.org,235,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +232,2,CONSTANCE,REID,CONSTANCE.REID@sakilacustomer.org,236,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +233,2,LILLIE,KIM,LILLIE.KIM@sakilacustomer.org,237,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +234,1,CLAUDIA,FULLER,CLAUDIA.FULLER@sakilacustomer.org,238,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +235,1,JACKIE,LYNCH,JACKIE.LYNCH@sakilacustomer.org,239,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +236,1,MARCIA,DEAN,MARCIA.DEAN@sakilacustomer.org,240,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +237,1,TANYA,GILBERT,TANYA.GILBERT@sakilacustomer.org,241,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +238,1,NELLIE,GARRETT,NELLIE.GARRETT@sakilacustomer.org,242,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +239,2,MINNIE,ROMERO,MINNIE.ROMERO@sakilacustomer.org,243,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +240,1,MARLENE,WELCH,MARLENE.WELCH@sakilacustomer.org,244,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +241,2,HEIDI,LARSON,HEIDI.LARSON@sakilacustomer.org,245,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +242,1,GLENDA,FRAZIER,GLENDA.FRAZIER@sakilacustomer.org,246,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +243,1,LYDIA,BURKE,LYDIA.BURKE@sakilacustomer.org,247,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +244,2,VIOLA,HANSON,VIOLA.HANSON@sakilacustomer.org,248,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +245,1,COURTNEY,DAY,COURTNEY.DAY@sakilacustomer.org,249,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +246,1,MARIAN,MENDOZA,MARIAN.MENDOZA@sakilacustomer.org,250,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +247,1,STELLA,MORENO,STELLA.MORENO@sakilacustomer.org,251,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +248,1,CAROLINE,BOWMAN,CAROLINE.BOWMAN@sakilacustomer.org,252,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +249,2,DORA,MEDINA,DORA.MEDINA@sakilacustomer.org,253,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +250,2,JO,FOWLER,JO.FOWLER@sakilacustomer.org,254,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +251,2,VICKIE,BREWER,VICKIE.BREWER@sakilacustomer.org,255,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +252,2,MATTIE,HOFFMAN,MATTIE.HOFFMAN@sakilacustomer.org,256,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +253,1,TERRY,CARLSON,TERRY.CARLSON@sakilacustomer.org,258,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +254,2,MAXINE,SILVA,MAXINE.SILVA@sakilacustomer.org,259,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +255,2,IRMA,PEARSON,IRMA.PEARSON@sakilacustomer.org,260,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +256,2,MABEL,HOLLAND,MABEL.HOLLAND@sakilacustomer.org,261,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +257,2,MARSHA,DOUGLAS,MARSHA.DOUGLAS@sakilacustomer.org,262,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +258,1,MYRTLE,FLEMING,MYRTLE.FLEMING@sakilacustomer.org,263,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +259,2,LENA,JENSEN,LENA.JENSEN@sakilacustomer.org,264,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +260,1,CHRISTY,VARGAS,CHRISTY.VARGAS@sakilacustomer.org,265,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +261,1,DEANNA,BYRD,DEANNA.BYRD@sakilacustomer.org,266,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +262,2,PATSY,DAVIDSON,PATSY.DAVIDSON@sakilacustomer.org,267,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +263,1,HILDA,HOPKINS,HILDA.HOPKINS@sakilacustomer.org,268,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +264,1,GWENDOLYN,MAY,GWENDOLYN.MAY@sakilacustomer.org,269,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +265,2,JENNIE,TERRY,JENNIE.TERRY@sakilacustomer.org,270,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +266,2,NORA,HERRERA,NORA.HERRERA@sakilacustomer.org,271,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +267,1,MARGIE,WADE,MARGIE.WADE@sakilacustomer.org,272,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +268,1,NINA,SOTO,NINA.SOTO@sakilacustomer.org,273,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +269,1,CASSANDRA,WALTERS,CASSANDRA.WALTERS@sakilacustomer.org,274,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +270,1,LEAH,CURTIS,LEAH.CURTIS@sakilacustomer.org,275,1,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +271,1,PENNY,NEAL,PENNY.NEAL@sakilacustomer.org,276,0,2006-02-14T22:04:36Z,2020-02-15T06:59:36Z +272,1,KAY,CALDWELL,KAY.CALDWELL@sakilacustomer.org,277,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +273,2,PRISCILLA,LOWE,PRISCILLA.LOWE@sakilacustomer.org,278,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +274,1,NAOMI,JENNINGS,NAOMI.JENNINGS@sakilacustomer.org,279,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +275,2,CAROLE,BARNETT,CAROLE.BARNETT@sakilacustomer.org,280,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +276,1,BRANDY,GRAVES,BRANDY.GRAVES@sakilacustomer.org,281,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +277,2,OLGA,JIMENEZ,OLGA.JIMENEZ@sakilacustomer.org,282,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +278,2,BILLIE,HORTON,BILLIE.HORTON@sakilacustomer.org,283,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +279,2,DIANNE,SHELTON,DIANNE.SHELTON@sakilacustomer.org,284,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +280,2,TRACEY,BARRETT,TRACEY.BARRETT@sakilacustomer.org,285,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +281,2,LEONA,OBRIEN,LEONA.OBRIEN@sakilacustomer.org,286,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +282,2,JENNY,CASTRO,JENNY.CASTRO@sakilacustomer.org,287,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +283,1,FELICIA,SUTTON,FELICIA.SUTTON@sakilacustomer.org,288,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +284,1,SONIA,GREGORY,SONIA.GREGORY@sakilacustomer.org,289,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +285,1,MIRIAM,MCKINNEY,MIRIAM.MCKINNEY@sakilacustomer.org,290,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +286,1,VELMA,LUCAS,VELMA.LUCAS@sakilacustomer.org,291,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +287,2,BECKY,MILES,BECKY.MILES@sakilacustomer.org,292,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +288,1,BOBBIE,CRAIG,BOBBIE.CRAIG@sakilacustomer.org,293,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +289,1,VIOLET,RODRIQUEZ,VIOLET.RODRIQUEZ@sakilacustomer.org,294,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +290,1,KRISTINA,CHAMBERS,KRISTINA.CHAMBERS@sakilacustomer.org,295,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +291,1,TONI,HOLT,TONI.HOLT@sakilacustomer.org,296,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +292,2,MISTY,LAMBERT,MISTY.LAMBERT@sakilacustomer.org,297,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +293,2,MAE,FLETCHER,MAE.FLETCHER@sakilacustomer.org,298,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +294,2,SHELLY,WATTS,SHELLY.WATTS@sakilacustomer.org,299,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +295,1,DAISY,BATES,DAISY.BATES@sakilacustomer.org,300,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +296,2,RAMONA,HALE,RAMONA.HALE@sakilacustomer.org,301,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +297,1,SHERRI,RHODES,SHERRI.RHODES@sakilacustomer.org,302,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +298,1,ERIKA,PENA,ERIKA.PENA@sakilacustomer.org,303,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +299,2,JAMES,GANNON,JAMES.GANNON@sakilacustomer.org,304,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +300,1,JOHN,FARNSWORTH,JOHN.FARNSWORTH@sakilacustomer.org,305,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +301,2,ROBERT,BAUGHMAN,ROBERT.BAUGHMAN@sakilacustomer.org,306,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +302,1,MICHAEL,SILVERMAN,MICHAEL.SILVERMAN@sakilacustomer.org,307,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +303,2,WILLIAM,SATTERFIELD,WILLIAM.SATTERFIELD@sakilacustomer.org,308,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +304,2,DAVID,ROYAL,DAVID.ROYAL@sakilacustomer.org,309,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +305,1,RICHARD,MCCRARY,RICHARD.MCCRARY@sakilacustomer.org,310,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +306,1,CHARLES,KOWALSKI,CHARLES.KOWALSKI@sakilacustomer.org,311,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +307,2,JOSEPH,JOY,JOSEPH.JOY@sakilacustomer.org,312,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +308,1,THOMAS,GRIGSBY,THOMAS.GRIGSBY@sakilacustomer.org,313,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +309,1,CHRISTOPHER,GRECO,CHRISTOPHER.GRECO@sakilacustomer.org,314,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +310,2,DANIEL,CABRAL,DANIEL.CABRAL@sakilacustomer.org,315,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +311,2,PAUL,TROUT,PAUL.TROUT@sakilacustomer.org,316,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +312,2,MARK,RINEHART,MARK.RINEHART@sakilacustomer.org,317,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +313,2,DONALD,MAHON,DONALD.MAHON@sakilacustomer.org,318,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +314,1,GEORGE,LINTON,GEORGE.LINTON@sakilacustomer.org,319,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +315,2,KENNETH,GOODEN,KENNETH.GOODEN@sakilacustomer.org,320,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +316,1,STEVEN,CURLEY,STEVEN.CURLEY@sakilacustomer.org,321,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +317,2,EDWARD,BAUGH,EDWARD.BAUGH@sakilacustomer.org,322,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +318,1,BRIAN,WYMAN,BRIAN.WYMAN@sakilacustomer.org,323,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +319,2,RONALD,WEINER,RONALD.WEINER@sakilacustomer.org,324,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +320,2,ANTHONY,SCHWAB,ANTHONY.SCHWAB@sakilacustomer.org,325,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +321,1,KEVIN,SCHULER,KEVIN.SCHULER@sakilacustomer.org,326,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +322,1,JASON,MORRISSEY,JASON.MORRISSEY@sakilacustomer.org,327,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +323,2,MATTHEW,MAHAN,MATTHEW.MAHAN@sakilacustomer.org,328,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +324,2,GARY,COY,GARY.COY@sakilacustomer.org,329,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +325,1,TIMOTHY,BUNN,TIMOTHY.BUNN@sakilacustomer.org,330,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +326,1,JOSE,ANDREW,JOSE.ANDREW@sakilacustomer.org,331,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +327,2,LARRY,THRASHER,LARRY.THRASHER@sakilacustomer.org,332,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +328,2,JEFFREY,SPEAR,JEFFREY.SPEAR@sakilacustomer.org,333,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +329,2,FRANK,WAGGONER,FRANK.WAGGONER@sakilacustomer.org,334,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +330,1,SCOTT,SHELLEY,SCOTT.SHELLEY@sakilacustomer.org,335,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +331,1,ERIC,ROBERT,ERIC.ROBERT@sakilacustomer.org,336,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +332,1,STEPHEN,QUALLS,STEPHEN.QUALLS@sakilacustomer.org,337,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +333,2,ANDREW,PURDY,ANDREW.PURDY@sakilacustomer.org,338,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +334,2,RAYMOND,MCWHORTER,RAYMOND.MCWHORTER@sakilacustomer.org,339,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +335,1,GREGORY,MAULDIN,GREGORY.MAULDIN@sakilacustomer.org,340,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +336,1,JOSHUA,MARK,JOSHUA.MARK@sakilacustomer.org,341,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +337,1,JERRY,JORDON,JERRY.JORDON@sakilacustomer.org,342,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +338,1,DENNIS,GILMAN,DENNIS.GILMAN@sakilacustomer.org,343,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +339,2,WALTER,PERRYMAN,WALTER.PERRYMAN@sakilacustomer.org,344,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +340,1,PATRICK,NEWSOM,PATRICK.NEWSOM@sakilacustomer.org,345,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +341,1,PETER,MENARD,PETER.MENARD@sakilacustomer.org,346,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +342,1,HAROLD,MARTINO,HAROLD.MARTINO@sakilacustomer.org,347,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +343,1,DOUGLAS,GRAF,DOUGLAS.GRAF@sakilacustomer.org,348,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +344,1,HENRY,BILLINGSLEY,HENRY.BILLINGSLEY@sakilacustomer.org,349,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +345,1,CARL,ARTIS,CARL.ARTIS@sakilacustomer.org,350,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +346,1,ARTHUR,SIMPKINS,ARTHUR.SIMPKINS@sakilacustomer.org,351,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +347,2,RYAN,SALISBURY,RYAN.SALISBURY@sakilacustomer.org,352,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +348,2,ROGER,QUINTANILLA,ROGER.QUINTANILLA@sakilacustomer.org,353,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +349,2,JOE,GILLILAND,JOE.GILLILAND@sakilacustomer.org,354,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +350,1,JUAN,FRALEY,JUAN.FRALEY@sakilacustomer.org,355,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +351,1,JACK,FOUST,JACK.FOUST@sakilacustomer.org,356,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +352,1,ALBERT,CROUSE,ALBERT.CROUSE@sakilacustomer.org,357,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +353,1,JONATHAN,SCARBOROUGH,JONATHAN.SCARBOROUGH@sakilacustomer.org,358,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +354,2,JUSTIN,NGO,JUSTIN.NGO@sakilacustomer.org,359,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +355,2,TERRY,GRISSOM,TERRY.GRISSOM@sakilacustomer.org,360,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +356,2,GERALD,FULTZ,GERALD.FULTZ@sakilacustomer.org,361,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +357,1,KEITH,RICO,KEITH.RICO@sakilacustomer.org,362,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +358,2,SAMUEL,MARLOW,SAMUEL.MARLOW@sakilacustomer.org,363,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +359,2,WILLIE,MARKHAM,WILLIE.MARKHAM@sakilacustomer.org,364,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +360,2,RALPH,MADRIGAL,RALPH.MADRIGAL@sakilacustomer.org,365,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +361,2,LAWRENCE,LAWTON,LAWRENCE.LAWTON@sakilacustomer.org,366,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +362,1,NICHOLAS,BARFIELD,NICHOLAS.BARFIELD@sakilacustomer.org,367,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +363,2,ROY,WHITING,ROY.WHITING@sakilacustomer.org,368,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +364,1,BENJAMIN,VARNEY,BENJAMIN.VARNEY@sakilacustomer.org,369,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +365,2,BRUCE,SCHWARZ,BRUCE.SCHWARZ@sakilacustomer.org,370,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +366,1,BRANDON,HUEY,BRANDON.HUEY@sakilacustomer.org,371,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +367,1,ADAM,GOOCH,ADAM.GOOCH@sakilacustomer.org,372,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +368,1,HARRY,ARCE,HARRY.ARCE@sakilacustomer.org,373,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +369,2,FRED,WHEAT,FRED.WHEAT@sakilacustomer.org,374,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +370,2,WAYNE,TRUONG,WAYNE.TRUONG@sakilacustomer.org,375,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +371,1,BILLY,POULIN,BILLY.POULIN@sakilacustomer.org,376,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +372,2,STEVE,MACKENZIE,STEVE.MACKENZIE@sakilacustomer.org,377,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +373,1,LOUIS,LEONE,LOUIS.LEONE@sakilacustomer.org,378,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +374,2,JEREMY,HURTADO,JEREMY.HURTADO@sakilacustomer.org,379,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +375,2,AARON,SELBY,AARON.SELBY@sakilacustomer.org,380,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +376,1,RANDY,GAITHER,RANDY.GAITHER@sakilacustomer.org,381,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +377,1,HOWARD,FORTNER,HOWARD.FORTNER@sakilacustomer.org,382,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +378,1,EUGENE,CULPEPPER,EUGENE.CULPEPPER@sakilacustomer.org,383,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +379,1,CARLOS,COUGHLIN,CARLOS.COUGHLIN@sakilacustomer.org,384,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +380,1,RUSSELL,BRINSON,RUSSELL.BRINSON@sakilacustomer.org,385,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +381,2,BOBBY,BOUDREAU,BOBBY.BOUDREAU@sakilacustomer.org,386,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +382,2,VICTOR,BARKLEY,VICTOR.BARKLEY@sakilacustomer.org,387,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +383,1,MARTIN,BALES,MARTIN.BALES@sakilacustomer.org,388,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +384,2,ERNEST,STEPP,ERNEST.STEPP@sakilacustomer.org,389,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +385,1,PHILLIP,HOLM,PHILLIP.HOLM@sakilacustomer.org,390,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +386,1,TODD,TAN,TODD.TAN@sakilacustomer.org,391,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +387,2,JESSE,SCHILLING,JESSE.SCHILLING@sakilacustomer.org,392,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +388,2,CRAIG,MORRELL,CRAIG.MORRELL@sakilacustomer.org,393,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +389,1,ALAN,KAHN,ALAN.KAHN@sakilacustomer.org,394,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +390,1,SHAWN,HEATON,SHAWN.HEATON@sakilacustomer.org,395,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +391,1,CLARENCE,GAMEZ,CLARENCE.GAMEZ@sakilacustomer.org,396,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +392,2,SEAN,DOUGLASS,SEAN.DOUGLASS@sakilacustomer.org,397,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +393,1,PHILIP,CAUSEY,PHILIP.CAUSEY@sakilacustomer.org,398,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +394,2,CHRIS,BROTHERS,CHRIS.BROTHERS@sakilacustomer.org,399,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +395,2,JOHNNY,TURPIN,JOHNNY.TURPIN@sakilacustomer.org,400,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +396,1,EARL,SHANKS,EARL.SHANKS@sakilacustomer.org,401,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +397,1,JIMMY,SCHRADER,JIMMY.SCHRADER@sakilacustomer.org,402,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +398,1,ANTONIO,MEEK,ANTONIO.MEEK@sakilacustomer.org,403,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +399,1,DANNY,ISOM,DANNY.ISOM@sakilacustomer.org,404,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +400,2,BRYAN,HARDISON,BRYAN.HARDISON@sakilacustomer.org,405,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +401,2,TONY,CARRANZA,TONY.CARRANZA@sakilacustomer.org,406,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +402,1,LUIS,YANEZ,LUIS.YANEZ@sakilacustomer.org,407,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +403,1,MIKE,WAY,MIKE.WAY@sakilacustomer.org,408,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +404,2,STANLEY,SCROGGINS,STANLEY.SCROGGINS@sakilacustomer.org,409,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +405,1,LEONARD,SCHOFIELD,LEONARD.SCHOFIELD@sakilacustomer.org,410,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +406,1,NATHAN,RUNYON,NATHAN.RUNYON@sakilacustomer.org,411,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +407,1,DALE,RATCLIFF,DALE.RATCLIFF@sakilacustomer.org,412,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +408,1,MANUEL,MURRELL,MANUEL.MURRELL@sakilacustomer.org,413,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +409,2,RODNEY,MOELLER,RODNEY.MOELLER@sakilacustomer.org,414,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +410,2,CURTIS,IRBY,CURTIS.IRBY@sakilacustomer.org,415,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +411,1,NORMAN,CURRIER,NORMAN.CURRIER@sakilacustomer.org,416,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +412,2,ALLEN,BUTTERFIELD,ALLEN.BUTTERFIELD@sakilacustomer.org,417,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +413,2,MARVIN,YEE,MARVIN.YEE@sakilacustomer.org,418,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +414,1,VINCENT,RALSTON,VINCENT.RALSTON@sakilacustomer.org,419,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +415,1,GLENN,PULLEN,GLENN.PULLEN@sakilacustomer.org,420,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +416,2,JEFFERY,PINSON,JEFFERY.PINSON@sakilacustomer.org,421,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +417,1,TRAVIS,ESTEP,TRAVIS.ESTEP@sakilacustomer.org,422,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +418,2,JEFF,EAST,JEFF.EAST@sakilacustomer.org,423,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +419,1,CHAD,CARBONE,CHAD.CARBONE@sakilacustomer.org,424,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +420,1,JACOB,LANCE,JACOB.LANCE@sakilacustomer.org,425,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +421,1,LEE,HAWKS,LEE.HAWKS@sakilacustomer.org,426,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +422,1,MELVIN,ELLINGTON,MELVIN.ELLINGTON@sakilacustomer.org,427,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +423,2,ALFRED,CASILLAS,ALFRED.CASILLAS@sakilacustomer.org,428,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +424,2,KYLE,SPURLOCK,KYLE.SPURLOCK@sakilacustomer.org,429,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +425,2,FRANCIS,SIKES,FRANCIS.SIKES@sakilacustomer.org,430,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +426,1,BRADLEY,MOTLEY,BRADLEY.MOTLEY@sakilacustomer.org,431,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +427,2,JESUS,MCCARTNEY,JESUS.MCCARTNEY@sakilacustomer.org,432,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +428,2,HERBERT,KRUGER,HERBERT.KRUGER@sakilacustomer.org,433,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +429,2,FREDERICK,ISBELL,FREDERICK.ISBELL@sakilacustomer.org,434,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +430,1,RAY,HOULE,RAY.HOULE@sakilacustomer.org,435,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +431,2,JOEL,FRANCISCO,JOEL.FRANCISCO@sakilacustomer.org,436,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +432,1,EDWIN,BURK,EDWIN.BURK@sakilacustomer.org,437,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +433,1,DON,BONE,DON.BONE@sakilacustomer.org,438,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +434,1,EDDIE,TOMLIN,EDDIE.TOMLIN@sakilacustomer.org,439,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +435,2,RICKY,SHELBY,RICKY.SHELBY@sakilacustomer.org,440,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +436,1,TROY,QUIGLEY,TROY.QUIGLEY@sakilacustomer.org,441,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +437,2,RANDALL,NEUMANN,RANDALL.NEUMANN@sakilacustomer.org,442,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +438,1,BARRY,LOVELACE,BARRY.LOVELACE@sakilacustomer.org,443,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +439,2,ALEXANDER,FENNELL,ALEXANDER.FENNELL@sakilacustomer.org,444,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +440,1,BERNARD,COLBY,BERNARD.COLBY@sakilacustomer.org,445,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +441,1,MARIO,CHEATHAM,MARIO.CHEATHAM@sakilacustomer.org,446,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +442,1,LEROY,BUSTAMANTE,LEROY.BUSTAMANTE@sakilacustomer.org,447,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +443,2,FRANCISCO,SKIDMORE,FRANCISCO.SKIDMORE@sakilacustomer.org,448,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +444,2,MARCUS,HIDALGO,MARCUS.HIDALGO@sakilacustomer.org,449,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +445,1,MICHEAL,FORMAN,MICHEAL.FORMAN@sakilacustomer.org,450,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +446,2,THEODORE,CULP,THEODORE.CULP@sakilacustomer.org,451,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +447,1,CLIFFORD,BOWENS,CLIFFORD.BOWENS@sakilacustomer.org,452,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +448,1,MIGUEL,BETANCOURT,MIGUEL.BETANCOURT@sakilacustomer.org,453,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +449,2,OSCAR,AQUINO,OSCAR.AQUINO@sakilacustomer.org,454,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +450,1,JAY,ROBB,JAY.ROBB@sakilacustomer.org,455,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +451,1,JIM,REA,JIM.REA@sakilacustomer.org,456,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +452,1,TOM,MILNER,TOM.MILNER@sakilacustomer.org,457,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +453,1,CALVIN,MARTEL,CALVIN.MARTEL@sakilacustomer.org,458,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +454,2,ALEX,GRESHAM,ALEX.GRESHAM@sakilacustomer.org,459,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +455,2,JON,WILES,JON.WILES@sakilacustomer.org,460,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +456,2,RONNIE,RICKETTS,RONNIE.RICKETTS@sakilacustomer.org,461,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +457,2,BILL,GAVIN,BILL.GAVIN@sakilacustomer.org,462,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +458,1,LLOYD,DOWD,LLOYD.DOWD@sakilacustomer.org,463,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +459,1,TOMMY,COLLAZO,TOMMY.COLLAZO@sakilacustomer.org,464,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +460,1,LEON,BOSTIC,LEON.BOSTIC@sakilacustomer.org,465,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +461,1,DEREK,BLAKELY,DEREK.BLAKELY@sakilacustomer.org,466,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +462,2,WARREN,SHERROD,WARREN.SHERROD@sakilacustomer.org,467,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +463,2,DARRELL,POWER,DARRELL.POWER@sakilacustomer.org,468,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +464,1,JEROME,KENYON,JEROME.KENYON@sakilacustomer.org,469,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +465,1,FLOYD,GANDY,FLOYD.GANDY@sakilacustomer.org,470,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +466,1,LEO,EBERT,LEO.EBERT@sakilacustomer.org,471,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +467,2,ALVIN,DELOACH,ALVIN.DELOACH@sakilacustomer.org,472,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +468,1,TIM,CARY,TIM.CARY@sakilacustomer.org,473,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +469,2,WESLEY,BULL,WESLEY.BULL@sakilacustomer.org,474,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +470,1,GORDON,ALLARD,GORDON.ALLARD@sakilacustomer.org,475,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +471,1,DEAN,SAUER,DEAN.SAUER@sakilacustomer.org,476,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +472,1,GREG,ROBINS,GREG.ROBINS@sakilacustomer.org,477,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +473,2,JORGE,OLIVARES,JORGE.OLIVARES@sakilacustomer.org,478,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +474,2,DUSTIN,GILLETTE,DUSTIN.GILLETTE@sakilacustomer.org,479,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +475,2,PEDRO,CHESTNUT,PEDRO.CHESTNUT@sakilacustomer.org,480,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +476,1,DERRICK,BOURQUE,DERRICK.BOURQUE@sakilacustomer.org,481,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +477,1,DAN,PAINE,DAN.PAINE@sakilacustomer.org,482,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +478,1,LEWIS,LYMAN,LEWIS.LYMAN@sakilacustomer.org,483,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +479,1,ZACHARY,HITE,ZACHARY.HITE@sakilacustomer.org,484,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +480,1,COREY,HAUSER,COREY.HAUSER@sakilacustomer.org,485,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +481,1,HERMAN,DEVORE,HERMAN.DEVORE@sakilacustomer.org,486,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +482,1,MAURICE,CRAWLEY,MAURICE.CRAWLEY@sakilacustomer.org,487,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +483,2,VERNON,CHAPA,VERNON.CHAPA@sakilacustomer.org,488,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +484,1,ROBERTO,VU,ROBERTO.VU@sakilacustomer.org,489,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +485,1,CLYDE,TOBIAS,CLYDE.TOBIAS@sakilacustomer.org,490,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +486,1,GLEN,TALBERT,GLEN.TALBERT@sakilacustomer.org,491,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +487,2,HECTOR,POINDEXTER,HECTOR.POINDEXTER@sakilacustomer.org,492,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +488,2,SHANE,MILLARD,SHANE.MILLARD@sakilacustomer.org,493,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +489,1,RICARDO,MEADOR,RICARDO.MEADOR@sakilacustomer.org,494,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +490,1,SAM,MCDUFFIE,SAM.MCDUFFIE@sakilacustomer.org,495,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +491,2,RICK,MATTOX,RICK.MATTOX@sakilacustomer.org,496,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +492,2,LESTER,KRAUS,LESTER.KRAUS@sakilacustomer.org,497,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +493,1,BRENT,HARKINS,BRENT.HARKINS@sakilacustomer.org,498,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +494,2,RAMON,CHOATE,RAMON.CHOATE@sakilacustomer.org,499,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +495,2,CHARLIE,BESS,CHARLIE.BESS@sakilacustomer.org,500,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +496,2,TYLER,WREN,TYLER.WREN@sakilacustomer.org,501,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +497,2,GILBERT,SLEDGE,GILBERT.SLEDGE@sakilacustomer.org,502,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +498,1,GENE,SANBORN,GENE.SANBORN@sakilacustomer.org,503,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +499,2,MARC,OUTLAW,MARC.OUTLAW@sakilacustomer.org,504,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +500,1,REGINALD,KINDER,REGINALD.KINDER@sakilacustomer.org,505,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +501,1,RUBEN,GEARY,RUBEN.GEARY@sakilacustomer.org,506,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +502,1,BRETT,CORNWELL,BRETT.CORNWELL@sakilacustomer.org,507,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +503,1,ANGEL,BARCLAY,ANGEL.BARCLAY@sakilacustomer.org,508,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +504,1,NATHANIEL,ADAM,NATHANIEL.ADAM@sakilacustomer.org,509,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +505,1,RAFAEL,ABNEY,RAFAEL.ABNEY@sakilacustomer.org,510,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +506,2,LESLIE,SEWARD,LESLIE.SEWARD@sakilacustomer.org,511,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +507,2,EDGAR,RHOADS,EDGAR.RHOADS@sakilacustomer.org,512,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +508,2,MILTON,HOWLAND,MILTON.HOWLAND@sakilacustomer.org,513,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +509,1,RAUL,FORTIER,RAUL.FORTIER@sakilacustomer.org,514,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +510,2,BEN,EASTER,BEN.EASTER@sakilacustomer.org,515,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +511,1,CHESTER,BENNER,CHESTER.BENNER@sakilacustomer.org,516,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +512,1,CECIL,VINES,CECIL.VINES@sakilacustomer.org,517,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +513,2,DUANE,TUBBS,DUANE.TUBBS@sakilacustomer.org,519,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +514,2,FRANKLIN,TROUTMAN,FRANKLIN.TROUTMAN@sakilacustomer.org,520,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +515,1,ANDRE,RAPP,ANDRE.RAPP@sakilacustomer.org,521,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +516,2,ELMER,NOE,ELMER.NOE@sakilacustomer.org,522,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +517,2,BRAD,MCCURDY,BRAD.MCCURDY@sakilacustomer.org,523,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +518,1,GABRIEL,HARDER,GABRIEL.HARDER@sakilacustomer.org,524,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +519,2,RON,DELUCA,RON.DELUCA@sakilacustomer.org,525,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +520,2,MITCHELL,WESTMORELAND,MITCHELL.WESTMORELAND@sakilacustomer.org,526,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +521,2,ROLAND,SOUTH,ROLAND.SOUTH@sakilacustomer.org,527,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +522,2,ARNOLD,HAVENS,ARNOLD.HAVENS@sakilacustomer.org,528,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +523,1,HARVEY,GUAJARDO,HARVEY.GUAJARDO@sakilacustomer.org,529,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +524,1,JARED,ELY,JARED.ELY@sakilacustomer.org,530,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +525,2,ADRIAN,CLARY,ADRIAN.CLARY@sakilacustomer.org,531,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +526,2,KARL,SEAL,KARL.SEAL@sakilacustomer.org,532,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +527,1,CORY,MEEHAN,CORY.MEEHAN@sakilacustomer.org,533,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +528,1,CLAUDE,HERZOG,CLAUDE.HERZOG@sakilacustomer.org,534,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +529,2,ERIK,GUILLEN,ERIK.GUILLEN@sakilacustomer.org,535,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +530,2,DARRYL,ASHCRAFT,DARRYL.ASHCRAFT@sakilacustomer.org,536,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +531,2,JAMIE,WAUGH,JAMIE.WAUGH@sakilacustomer.org,537,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +532,2,NEIL,RENNER,NEIL.RENNER@sakilacustomer.org,538,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +533,1,JESSIE,MILAM,JESSIE.MILAM@sakilacustomer.org,539,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +534,1,CHRISTIAN,JUNG,CHRISTIAN.JUNG@sakilacustomer.org,540,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +535,1,JAVIER,ELROD,JAVIER.ELROD@sakilacustomer.org,541,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +536,2,FERNANDO,CHURCHILL,FERNANDO.CHURCHILL@sakilacustomer.org,542,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +537,2,CLINTON,BUFORD,CLINTON.BUFORD@sakilacustomer.org,543,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +538,2,TED,BREAUX,TED.BREAUX@sakilacustomer.org,544,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +539,1,MATHEW,BOLIN,MATHEW.BOLIN@sakilacustomer.org,545,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +540,1,TYRONE,ASHER,TYRONE.ASHER@sakilacustomer.org,546,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +541,2,DARREN,WINDHAM,DARREN.WINDHAM@sakilacustomer.org,547,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +542,2,LONNIE,TIRADO,LONNIE.TIRADO@sakilacustomer.org,548,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +543,1,LANCE,PEMBERTON,LANCE.PEMBERTON@sakilacustomer.org,549,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +544,2,CODY,NOLEN,CODY.NOLEN@sakilacustomer.org,550,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +545,2,JULIO,NOLAND,JULIO.NOLAND@sakilacustomer.org,551,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +546,1,KELLY,KNOTT,KELLY.KNOTT@sakilacustomer.org,552,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +547,1,KURT,EMMONS,KURT.EMMONS@sakilacustomer.org,553,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +548,1,ALLAN,CORNISH,ALLAN.CORNISH@sakilacustomer.org,554,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +549,1,NELSON,CHRISTENSON,NELSON.CHRISTENSON@sakilacustomer.org,555,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +550,2,GUY,BROWNLEE,GUY.BROWNLEE@sakilacustomer.org,556,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +551,2,CLAYTON,BARBEE,CLAYTON.BARBEE@sakilacustomer.org,557,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +552,2,HUGH,WALDROP,HUGH.WALDROP@sakilacustomer.org,558,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +553,1,MAX,PITT,MAX.PITT@sakilacustomer.org,559,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +554,1,DWAYNE,OLVERA,DWAYNE.OLVERA@sakilacustomer.org,560,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +555,1,DWIGHT,LOMBARDI,DWIGHT.LOMBARDI@sakilacustomer.org,561,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +556,2,ARMANDO,GRUBER,ARMANDO.GRUBER@sakilacustomer.org,562,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +557,1,FELIX,GAFFNEY,FELIX.GAFFNEY@sakilacustomer.org,563,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +558,1,JIMMIE,EGGLESTON,JIMMIE.EGGLESTON@sakilacustomer.org,564,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +559,2,EVERETT,BANDA,EVERETT.BANDA@sakilacustomer.org,565,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +560,1,JORDAN,ARCHULETA,JORDAN.ARCHULETA@sakilacustomer.org,566,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +561,2,IAN,STILL,IAN.STILL@sakilacustomer.org,567,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +562,1,WALLACE,SLONE,WALLACE.SLONE@sakilacustomer.org,568,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +563,2,KEN,PREWITT,KEN.PREWITT@sakilacustomer.org,569,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +564,2,BOB,PFEIFFER,BOB.PFEIFFER@sakilacustomer.org,570,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +565,2,JAIME,NETTLES,JAIME.NETTLES@sakilacustomer.org,571,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +566,1,CASEY,MENA,CASEY.MENA@sakilacustomer.org,572,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +567,2,ALFREDO,MCADAMS,ALFREDO.MCADAMS@sakilacustomer.org,573,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +568,2,ALBERTO,HENNING,ALBERTO.HENNING@sakilacustomer.org,574,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +569,2,DAVE,GARDINER,DAVE.GARDINER@sakilacustomer.org,575,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +570,2,IVAN,CROMWELL,IVAN.CROMWELL@sakilacustomer.org,576,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +571,2,JOHNNIE,CHISHOLM,JOHNNIE.CHISHOLM@sakilacustomer.org,577,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +572,1,SIDNEY,BURLESON,SIDNEY.BURLESON@sakilacustomer.org,578,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +573,1,BYRON,BOX,BYRON.BOX@sakilacustomer.org,579,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +574,2,JULIAN,VEST,JULIAN.VEST@sakilacustomer.org,580,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +575,2,ISAAC,OGLESBY,ISAAC.OGLESBY@sakilacustomer.org,581,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +576,2,MORRIS,MCCARTER,MORRIS.MCCARTER@sakilacustomer.org,582,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +577,2,CLIFTON,MALCOLM,CLIFTON.MALCOLM@sakilacustomer.org,583,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +578,2,WILLARD,LUMPKIN,WILLARD.LUMPKIN@sakilacustomer.org,584,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +579,2,DARYL,LARUE,DARYL.LARUE@sakilacustomer.org,585,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +580,1,ROSS,GREY,ROSS.GREY@sakilacustomer.org,586,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +581,1,VIRGIL,WOFFORD,VIRGIL.WOFFORD@sakilacustomer.org,587,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +582,2,ANDY,VANHORN,ANDY.VANHORN@sakilacustomer.org,588,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +583,1,MARSHALL,THORN,MARSHALL.THORN@sakilacustomer.org,589,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +584,2,SALVADOR,TEEL,SALVADOR.TEEL@sakilacustomer.org,590,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +585,1,PERRY,SWAFFORD,PERRY.SWAFFORD@sakilacustomer.org,591,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +586,1,KIRK,STCLAIR,KIRK.STCLAIR@sakilacustomer.org,592,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +587,1,SERGIO,STANFIELD,SERGIO.STANFIELD@sakilacustomer.org,593,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +588,1,MARION,OCAMPO,MARION.OCAMPO@sakilacustomer.org,594,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +589,1,TRACY,HERRMANN,TRACY.HERRMANN@sakilacustomer.org,595,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +590,2,SETH,HANNON,SETH.HANNON@sakilacustomer.org,596,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +591,1,KENT,ARSENAULT,KENT.ARSENAULT@sakilacustomer.org,597,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +592,1,TERRANCE,ROUSH,TERRANCE.ROUSH@sakilacustomer.org,598,0,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +593,2,RENE,MCALISTER,RENE.MCALISTER@sakilacustomer.org,599,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +594,1,EDUARDO,HIATT,EDUARDO.HIATT@sakilacustomer.org,600,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +595,1,TERRENCE,GUNDERSON,TERRENCE.GUNDERSON@sakilacustomer.org,601,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +596,1,ENRIQUE,FORSYTHE,ENRIQUE.FORSYTHE@sakilacustomer.org,602,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +597,1,FREDDIE,DUGGAN,FREDDIE.DUGGAN@sakilacustomer.org,603,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +598,1,WADE,DELVALLE,WADE.DELVALLE@sakilacustomer.org,604,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z +599,2,AUSTIN,CINTRON,AUSTIN.CINTRON@sakilacustomer.org,605,1,2006-02-14T22:04:37Z,2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-csv/film.csv b/drivers/csv/testdata/sakila-csv/film.csv new file mode 100644 index 00000000..584a113a --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/film.csv @@ -0,0 +1,1001 @@ +film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,Trailers,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,Deleted Scenes,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Trailers,Commentaries",2020-02-15T06:59:28Z +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,Behind the Scenes,2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,Commentaries,2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:28Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:28Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Trailers,2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,Behind the Scenes,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,Commentaries,2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z +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,"Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Deleted Scenes,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,"Trailers,Behind the Scenes",2020-02-15T06:59:29Z +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,Deleted Scenes,2020-02-15T06:59:29Z +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,"Trailers,Deleted Scenes",2020-02-15T06:59:29Z +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,"Trailers,Commentaries,Behind the Scenes",2020-02-15T06:59:29Z diff --git a/drivers/csv/testdata/sakila-csv/film_actor.csv b/drivers/csv/testdata/sakila-csv/film_actor.csv new file mode 100644 index 00000000..44052008 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/film_actor.csv @@ -0,0 +1,5463 @@ +actor_id,film_id,last_update +1,1,2020-02-15T06:59:32Z +1,23,2020-02-15T06:59:32Z +1,25,2020-02-15T06:59:32Z +1,106,2020-02-15T06:59:32Z +1,140,2020-02-15T06:59:32Z +1,166,2020-02-15T06:59:32Z +1,277,2020-02-15T06:59:32Z +1,361,2020-02-15T06:59:32Z +1,438,2020-02-15T06:59:32Z +1,499,2020-02-15T06:59:32Z +1,506,2020-02-15T06:59:32Z +1,509,2020-02-15T06:59:32Z +1,605,2020-02-15T06:59:32Z +1,635,2020-02-15T06:59:32Z +1,749,2020-02-15T06:59:32Z +1,832,2020-02-15T06:59:32Z +1,939,2020-02-15T06:59:32Z +1,970,2020-02-15T06:59:32Z +1,980,2020-02-15T06:59:32Z +2,3,2020-02-15T06:59:32Z +2,31,2020-02-15T06:59:32Z +2,47,2020-02-15T06:59:32Z +2,105,2020-02-15T06:59:32Z +2,132,2020-02-15T06:59:32Z +2,145,2020-02-15T06:59:32Z +2,226,2020-02-15T06:59:32Z +2,249,2020-02-15T06:59:32Z +2,314,2020-02-15T06:59:32Z +2,321,2020-02-15T06:59:32Z +2,357,2020-02-15T06:59:32Z +2,369,2020-02-15T06:59:32Z +2,399,2020-02-15T06:59:32Z +2,458,2020-02-15T06:59:32Z +2,481,2020-02-15T06:59:32Z +2,485,2020-02-15T06:59:32Z +2,518,2020-02-15T06:59:32Z +2,540,2020-02-15T06:59:32Z +2,550,2020-02-15T06:59:32Z +2,555,2020-02-15T06:59:32Z +2,561,2020-02-15T06:59:32Z +2,742,2020-02-15T06:59:32Z +2,754,2020-02-15T06:59:32Z +2,811,2020-02-15T06:59:32Z +2,958,2020-02-15T06:59:32Z +3,17,2020-02-15T06:59:32Z +3,40,2020-02-15T06:59:32Z +3,42,2020-02-15T06:59:32Z +3,87,2020-02-15T06:59:32Z +3,111,2020-02-15T06:59:32Z +3,185,2020-02-15T06:59:32Z +3,289,2020-02-15T06:59:32Z +3,329,2020-02-15T06:59:32Z +3,336,2020-02-15T06:59:32Z +3,341,2020-02-15T06:59:32Z +3,393,2020-02-15T06:59:32Z +3,441,2020-02-15T06:59:32Z +3,453,2020-02-15T06:59:32Z +3,480,2020-02-15T06:59:32Z +3,539,2020-02-15T06:59:32Z +3,618,2020-02-15T06:59:32Z +3,685,2020-02-15T06:59:32Z +3,827,2020-02-15T06:59:32Z +3,966,2020-02-15T06:59:32Z +3,967,2020-02-15T06:59:32Z +3,971,2020-02-15T06:59:32Z +3,996,2020-02-15T06:59:32Z +4,23,2020-02-15T06:59:32Z +4,25,2020-02-15T06:59:32Z +4,56,2020-02-15T06:59:32Z +4,62,2020-02-15T06:59:32Z +4,79,2020-02-15T06:59:32Z +4,87,2020-02-15T06:59:32Z +4,355,2020-02-15T06:59:32Z +4,379,2020-02-15T06:59:32Z +4,398,2020-02-15T06:59:32Z +4,463,2020-02-15T06:59:32Z +4,490,2020-02-15T06:59:32Z +4,616,2020-02-15T06:59:32Z +4,635,2020-02-15T06:59:32Z +4,691,2020-02-15T06:59:32Z +4,712,2020-02-15T06:59:32Z +4,714,2020-02-15T06:59:32Z +4,721,2020-02-15T06:59:32Z +4,798,2020-02-15T06:59:32Z +4,832,2020-02-15T06:59:32Z +4,858,2020-02-15T06:59:32Z +4,909,2020-02-15T06:59:32Z +4,924,2020-02-15T06:59:32Z +5,19,2020-02-15T06:59:32Z +5,54,2020-02-15T06:59:32Z +5,85,2020-02-15T06:59:32Z +5,146,2020-02-15T06:59:32Z +5,171,2020-02-15T06:59:32Z +5,172,2020-02-15T06:59:32Z +5,202,2020-02-15T06:59:32Z +5,203,2020-02-15T06:59:32Z +5,286,2020-02-15T06:59:32Z +5,288,2020-02-15T06:59:32Z +5,316,2020-02-15T06:59:32Z +5,340,2020-02-15T06:59:32Z +5,369,2020-02-15T06:59:32Z +5,375,2020-02-15T06:59:32Z +5,383,2020-02-15T06:59:32Z +5,392,2020-02-15T06:59:32Z +5,411,2020-02-15T06:59:32Z +5,503,2020-02-15T06:59:32Z +5,535,2020-02-15T06:59:32Z +5,571,2020-02-15T06:59:32Z +5,650,2020-02-15T06:59:32Z +5,665,2020-02-15T06:59:32Z +5,687,2020-02-15T06:59:32Z +5,730,2020-02-15T06:59:32Z +5,732,2020-02-15T06:59:32Z +5,811,2020-02-15T06:59:32Z +5,817,2020-02-15T06:59:32Z +5,841,2020-02-15T06:59:32Z +5,865,2020-02-15T06:59:32Z +6,29,2020-02-15T06:59:32Z +6,53,2020-02-15T06:59:32Z +6,60,2020-02-15T06:59:32Z +6,70,2020-02-15T06:59:32Z +6,112,2020-02-15T06:59:32Z +6,164,2020-02-15T06:59:32Z +6,165,2020-02-15T06:59:32Z +6,193,2020-02-15T06:59:32Z +6,256,2020-02-15T06:59:32Z +6,451,2020-02-15T06:59:32Z +6,503,2020-02-15T06:59:32Z +6,509,2020-02-15T06:59:32Z +6,517,2020-02-15T06:59:32Z +6,519,2020-02-15T06:59:32Z +6,605,2020-02-15T06:59:32Z +6,692,2020-02-15T06:59:32Z +6,826,2020-02-15T06:59:32Z +6,892,2020-02-15T06:59:32Z +6,902,2020-02-15T06:59:32Z +6,994,2020-02-15T06:59:32Z +7,25,2020-02-15T06:59:32Z +7,27,2020-02-15T06:59:32Z +7,35,2020-02-15T06:59:32Z +7,67,2020-02-15T06:59:32Z +7,96,2020-02-15T06:59:32Z +7,170,2020-02-15T06:59:32Z +7,173,2020-02-15T06:59:32Z +7,217,2020-02-15T06:59:32Z +7,218,2020-02-15T06:59:32Z +7,225,2020-02-15T06:59:32Z +7,292,2020-02-15T06:59:32Z +7,351,2020-02-15T06:59:32Z +7,414,2020-02-15T06:59:32Z +7,463,2020-02-15T06:59:32Z +7,554,2020-02-15T06:59:32Z +7,618,2020-02-15T06:59:32Z +7,633,2020-02-15T06:59:32Z +7,637,2020-02-15T06:59:32Z +7,691,2020-02-15T06:59:32Z +7,758,2020-02-15T06:59:32Z +7,766,2020-02-15T06:59:32Z +7,770,2020-02-15T06:59:32Z +7,805,2020-02-15T06:59:32Z +7,806,2020-02-15T06:59:32Z +7,846,2020-02-15T06:59:32Z +7,900,2020-02-15T06:59:32Z +7,901,2020-02-15T06:59:32Z +7,910,2020-02-15T06:59:32Z +7,957,2020-02-15T06:59:32Z +7,959,2020-02-15T06:59:32Z +8,47,2020-02-15T06:59:32Z +8,115,2020-02-15T06:59:32Z +8,158,2020-02-15T06:59:32Z +8,179,2020-02-15T06:59:32Z +8,195,2020-02-15T06:59:32Z +8,205,2020-02-15T06:59:32Z +8,255,2020-02-15T06:59:32Z +8,263,2020-02-15T06:59:32Z +8,321,2020-02-15T06:59:32Z +8,396,2020-02-15T06:59:32Z +8,458,2020-02-15T06:59:32Z +8,523,2020-02-15T06:59:32Z +8,532,2020-02-15T06:59:32Z +8,554,2020-02-15T06:59:32Z +8,752,2020-02-15T06:59:32Z +8,769,2020-02-15T06:59:32Z +8,771,2020-02-15T06:59:32Z +8,859,2020-02-15T06:59:32Z +8,895,2020-02-15T06:59:32Z +8,936,2020-02-15T06:59:32Z +9,30,2020-02-15T06:59:32Z +9,74,2020-02-15T06:59:32Z +9,147,2020-02-15T06:59:32Z +9,148,2020-02-15T06:59:32Z +9,191,2020-02-15T06:59:32Z +9,200,2020-02-15T06:59:32Z +9,204,2020-02-15T06:59:32Z +9,434,2020-02-15T06:59:32Z +9,510,2020-02-15T06:59:32Z +9,514,2020-02-15T06:59:32Z +9,552,2020-02-15T06:59:32Z +9,650,2020-02-15T06:59:32Z +9,671,2020-02-15T06:59:32Z +9,697,2020-02-15T06:59:32Z +9,722,2020-02-15T06:59:32Z +9,752,2020-02-15T06:59:32Z +9,811,2020-02-15T06:59:32Z +9,815,2020-02-15T06:59:32Z +9,865,2020-02-15T06:59:32Z +9,873,2020-02-15T06:59:32Z +9,889,2020-02-15T06:59:32Z +9,903,2020-02-15T06:59:32Z +9,926,2020-02-15T06:59:32Z +9,964,2020-02-15T06:59:32Z +9,974,2020-02-15T06:59:32Z +10,1,2020-02-15T06:59:32Z +10,9,2020-02-15T06:59:32Z +10,191,2020-02-15T06:59:32Z +10,236,2020-02-15T06:59:32Z +10,251,2020-02-15T06:59:32Z +10,366,2020-02-15T06:59:32Z +10,477,2020-02-15T06:59:32Z +10,480,2020-02-15T06:59:32Z +10,522,2020-02-15T06:59:32Z +10,530,2020-02-15T06:59:32Z +10,587,2020-02-15T06:59:32Z +10,694,2020-02-15T06:59:32Z +10,703,2020-02-15T06:59:32Z +10,716,2020-02-15T06:59:32Z +10,782,2020-02-15T06:59:32Z +10,914,2020-02-15T06:59:32Z +10,929,2020-02-15T06:59:32Z +10,930,2020-02-15T06:59:32Z +10,964,2020-02-15T06:59:32Z +10,966,2020-02-15T06:59:32Z +10,980,2020-02-15T06:59:32Z +10,983,2020-02-15T06:59:32Z +11,118,2020-02-15T06:59:32Z +11,205,2020-02-15T06:59:32Z +11,281,2020-02-15T06:59:32Z +11,283,2020-02-15T06:59:32Z +11,348,2020-02-15T06:59:32Z +11,364,2020-02-15T06:59:32Z +11,395,2020-02-15T06:59:32Z +11,429,2020-02-15T06:59:32Z +11,433,2020-02-15T06:59:32Z +11,453,2020-02-15T06:59:32Z +11,485,2020-02-15T06:59:32Z +11,532,2020-02-15T06:59:32Z +11,567,2020-02-15T06:59:32Z +11,587,2020-02-15T06:59:32Z +11,597,2020-02-15T06:59:32Z +11,636,2020-02-15T06:59:32Z +11,709,2020-02-15T06:59:32Z +11,850,2020-02-15T06:59:32Z +11,854,2020-02-15T06:59:32Z +11,888,2020-02-15T06:59:32Z +11,896,2020-02-15T06:59:32Z +11,928,2020-02-15T06:59:32Z +11,938,2020-02-15T06:59:32Z +11,969,2020-02-15T06:59:32Z +11,988,2020-02-15T06:59:32Z +12,16,2020-02-15T06:59:32Z +12,17,2020-02-15T06:59:32Z +12,34,2020-02-15T06:59:32Z +12,37,2020-02-15T06:59:32Z +12,91,2020-02-15T06:59:32Z +12,92,2020-02-15T06:59:32Z +12,107,2020-02-15T06:59:32Z +12,155,2020-02-15T06:59:32Z +12,177,2020-02-15T06:59:32Z +12,208,2020-02-15T06:59:32Z +12,213,2020-02-15T06:59:32Z +12,216,2020-02-15T06:59:32Z +12,243,2020-02-15T06:59:32Z +12,344,2020-02-15T06:59:32Z +12,400,2020-02-15T06:59:32Z +12,416,2020-02-15T06:59:32Z +12,420,2020-02-15T06:59:32Z +12,457,2020-02-15T06:59:32Z +12,513,2020-02-15T06:59:32Z +12,540,2020-02-15T06:59:32Z +12,593,2020-02-15T06:59:32Z +12,631,2020-02-15T06:59:32Z +12,635,2020-02-15T06:59:32Z +12,672,2020-02-15T06:59:32Z +12,716,2020-02-15T06:59:32Z +12,728,2020-02-15T06:59:32Z +12,812,2020-02-15T06:59:32Z +12,838,2020-02-15T06:59:32Z +12,871,2020-02-15T06:59:32Z +12,880,2020-02-15T06:59:32Z +12,945,2020-02-15T06:59:32Z +13,17,2020-02-15T06:59:32Z +13,29,2020-02-15T06:59:32Z +13,45,2020-02-15T06:59:32Z +13,87,2020-02-15T06:59:32Z +13,110,2020-02-15T06:59:32Z +13,144,2020-02-15T06:59:32Z +13,154,2020-02-15T06:59:32Z +13,162,2020-02-15T06:59:32Z +13,203,2020-02-15T06:59:32Z +13,254,2020-02-15T06:59:32Z +13,337,2020-02-15T06:59:32Z +13,346,2020-02-15T06:59:32Z +13,381,2020-02-15T06:59:32Z +13,385,2020-02-15T06:59:32Z +13,427,2020-02-15T06:59:32Z +13,456,2020-02-15T06:59:32Z +13,513,2020-02-15T06:59:32Z +13,515,2020-02-15T06:59:32Z +13,522,2020-02-15T06:59:32Z +13,524,2020-02-15T06:59:32Z +13,528,2020-02-15T06:59:32Z +13,571,2020-02-15T06:59:32Z +13,588,2020-02-15T06:59:32Z +13,597,2020-02-15T06:59:32Z +13,600,2020-02-15T06:59:32Z +13,718,2020-02-15T06:59:32Z +13,729,2020-02-15T06:59:32Z +13,816,2020-02-15T06:59:32Z +13,817,2020-02-15T06:59:32Z +13,832,2020-02-15T06:59:32Z +13,833,2020-02-15T06:59:32Z +13,843,2020-02-15T06:59:32Z +13,897,2020-02-15T06:59:32Z +13,966,2020-02-15T06:59:32Z +13,998,2020-02-15T06:59:32Z +14,154,2020-02-15T06:59:32Z +14,187,2020-02-15T06:59:32Z +14,232,2020-02-15T06:59:32Z +14,241,2020-02-15T06:59:32Z +14,253,2020-02-15T06:59:32Z +14,255,2020-02-15T06:59:32Z +14,258,2020-02-15T06:59:32Z +14,284,2020-02-15T06:59:32Z +14,292,2020-02-15T06:59:32Z +14,370,2020-02-15T06:59:32Z +14,415,2020-02-15T06:59:32Z +14,417,2020-02-15T06:59:32Z +14,418,2020-02-15T06:59:32Z +14,454,2020-02-15T06:59:32Z +14,472,2020-02-15T06:59:32Z +14,475,2020-02-15T06:59:32Z +14,495,2020-02-15T06:59:32Z +14,536,2020-02-15T06:59:32Z +14,537,2020-02-15T06:59:32Z +14,612,2020-02-15T06:59:32Z +14,688,2020-02-15T06:59:32Z +14,759,2020-02-15T06:59:32Z +14,764,2020-02-15T06:59:32Z +14,847,2020-02-15T06:59:32Z +14,856,2020-02-15T06:59:32Z +14,890,2020-02-15T06:59:32Z +14,908,2020-02-15T06:59:32Z +14,919,2020-02-15T06:59:32Z +14,948,2020-02-15T06:59:32Z +14,970,2020-02-15T06:59:32Z +15,31,2020-02-15T06:59:32Z +15,89,2020-02-15T06:59:32Z +15,91,2020-02-15T06:59:32Z +15,108,2020-02-15T06:59:32Z +15,125,2020-02-15T06:59:32Z +15,236,2020-02-15T06:59:32Z +15,275,2020-02-15T06:59:32Z +15,280,2020-02-15T06:59:32Z +15,326,2020-02-15T06:59:32Z +15,342,2020-02-15T06:59:32Z +15,414,2020-02-15T06:59:32Z +15,445,2020-02-15T06:59:32Z +15,500,2020-02-15T06:59:32Z +15,502,2020-02-15T06:59:32Z +15,541,2020-02-15T06:59:32Z +15,553,2020-02-15T06:59:32Z +15,594,2020-02-15T06:59:32Z +15,626,2020-02-15T06:59:32Z +15,635,2020-02-15T06:59:32Z +15,745,2020-02-15T06:59:32Z +15,783,2020-02-15T06:59:32Z +15,795,2020-02-15T06:59:32Z +15,817,2020-02-15T06:59:32Z +15,886,2020-02-15T06:59:32Z +15,924,2020-02-15T06:59:32Z +15,949,2020-02-15T06:59:32Z +15,968,2020-02-15T06:59:32Z +15,985,2020-02-15T06:59:32Z +16,80,2020-02-15T06:59:32Z +16,87,2020-02-15T06:59:32Z +16,101,2020-02-15T06:59:32Z +16,121,2020-02-15T06:59:32Z +16,155,2020-02-15T06:59:32Z +16,177,2020-02-15T06:59:32Z +16,218,2020-02-15T06:59:32Z +16,221,2020-02-15T06:59:32Z +16,267,2020-02-15T06:59:32Z +16,269,2020-02-15T06:59:32Z +16,271,2020-02-15T06:59:32Z +16,280,2020-02-15T06:59:32Z +16,287,2020-02-15T06:59:32Z +16,345,2020-02-15T06:59:32Z +16,438,2020-02-15T06:59:32Z +16,453,2020-02-15T06:59:32Z +16,455,2020-02-15T06:59:32Z +16,456,2020-02-15T06:59:32Z +16,503,2020-02-15T06:59:32Z +16,548,2020-02-15T06:59:32Z +16,582,2020-02-15T06:59:32Z +16,583,2020-02-15T06:59:32Z +16,717,2020-02-15T06:59:32Z +16,758,2020-02-15T06:59:32Z +16,779,2020-02-15T06:59:32Z +16,886,2020-02-15T06:59:32Z +16,967,2020-02-15T06:59:32Z +17,96,2020-02-15T06:59:32Z +17,119,2020-02-15T06:59:32Z +17,124,2020-02-15T06:59:32Z +17,127,2020-02-15T06:59:32Z +17,154,2020-02-15T06:59:32Z +17,199,2020-02-15T06:59:32Z +17,201,2020-02-15T06:59:32Z +17,236,2020-02-15T06:59:32Z +17,280,2020-02-15T06:59:32Z +17,310,2020-02-15T06:59:32Z +17,313,2020-02-15T06:59:32Z +17,378,2020-02-15T06:59:32Z +17,457,2020-02-15T06:59:32Z +17,469,2020-02-15T06:59:32Z +17,478,2020-02-15T06:59:32Z +17,500,2020-02-15T06:59:32Z +17,515,2020-02-15T06:59:32Z +17,521,2020-02-15T06:59:32Z +17,573,2020-02-15T06:59:32Z +17,603,2020-02-15T06:59:32Z +17,606,2020-02-15T06:59:32Z +17,734,2020-02-15T06:59:32Z +17,770,2020-02-15T06:59:32Z +17,794,2020-02-15T06:59:32Z +17,800,2020-02-15T06:59:32Z +17,853,2020-02-15T06:59:32Z +17,873,2020-02-15T06:59:32Z +17,874,2020-02-15T06:59:32Z +17,880,2020-02-15T06:59:32Z +17,948,2020-02-15T06:59:32Z +17,957,2020-02-15T06:59:32Z +17,959,2020-02-15T06:59:32Z +18,44,2020-02-15T06:59:32Z +18,84,2020-02-15T06:59:32Z +18,144,2020-02-15T06:59:32Z +18,172,2020-02-15T06:59:32Z +18,268,2020-02-15T06:59:32Z +18,279,2020-02-15T06:59:32Z +18,280,2020-02-15T06:59:32Z +18,321,2020-02-15T06:59:32Z +18,386,2020-02-15T06:59:32Z +18,460,2020-02-15T06:59:32Z +18,462,2020-02-15T06:59:32Z +18,484,2020-02-15T06:59:32Z +18,536,2020-02-15T06:59:32Z +18,561,2020-02-15T06:59:32Z +18,612,2020-02-15T06:59:32Z +18,717,2020-02-15T06:59:32Z +18,808,2020-02-15T06:59:32Z +18,842,2020-02-15T06:59:32Z +18,863,2020-02-15T06:59:32Z +18,883,2020-02-15T06:59:32Z +18,917,2020-02-15T06:59:32Z +18,944,2020-02-15T06:59:32Z +19,2,2020-02-15T06:59:32Z +19,3,2020-02-15T06:59:32Z +19,144,2020-02-15T06:59:32Z +19,152,2020-02-15T06:59:32Z +19,182,2020-02-15T06:59:32Z +19,208,2020-02-15T06:59:32Z +19,212,2020-02-15T06:59:32Z +19,217,2020-02-15T06:59:32Z +19,266,2020-02-15T06:59:32Z +19,404,2020-02-15T06:59:32Z +19,428,2020-02-15T06:59:32Z +19,473,2020-02-15T06:59:32Z +19,490,2020-02-15T06:59:32Z +19,510,2020-02-15T06:59:32Z +19,513,2020-02-15T06:59:32Z +19,644,2020-02-15T06:59:32Z +19,670,2020-02-15T06:59:32Z +19,673,2020-02-15T06:59:32Z +19,711,2020-02-15T06:59:32Z +19,750,2020-02-15T06:59:32Z +19,752,2020-02-15T06:59:32Z +19,756,2020-02-15T06:59:32Z +19,771,2020-02-15T06:59:32Z +19,785,2020-02-15T06:59:32Z +19,877,2020-02-15T06:59:32Z +20,1,2020-02-15T06:59:32Z +20,54,2020-02-15T06:59:32Z +20,63,2020-02-15T06:59:32Z +20,140,2020-02-15T06:59:32Z +20,146,2020-02-15T06:59:32Z +20,165,2020-02-15T06:59:32Z +20,231,2020-02-15T06:59:32Z +20,243,2020-02-15T06:59:32Z +20,269,2020-02-15T06:59:32Z +20,274,2020-02-15T06:59:32Z +20,348,2020-02-15T06:59:32Z +20,366,2020-02-15T06:59:32Z +20,445,2020-02-15T06:59:32Z +20,478,2020-02-15T06:59:32Z +20,492,2020-02-15T06:59:32Z +20,499,2020-02-15T06:59:32Z +20,527,2020-02-15T06:59:32Z +20,531,2020-02-15T06:59:32Z +20,538,2020-02-15T06:59:32Z +20,589,2020-02-15T06:59:32Z +20,643,2020-02-15T06:59:32Z +20,652,2020-02-15T06:59:32Z +20,663,2020-02-15T06:59:32Z +20,714,2020-02-15T06:59:32Z +20,717,2020-02-15T06:59:32Z +20,757,2020-02-15T06:59:32Z +20,784,2020-02-15T06:59:32Z +20,863,2020-02-15T06:59:32Z +20,962,2020-02-15T06:59:32Z +20,977,2020-02-15T06:59:32Z +21,6,2020-02-15T06:59:32Z +21,87,2020-02-15T06:59:32Z +21,88,2020-02-15T06:59:32Z +21,142,2020-02-15T06:59:32Z +21,159,2020-02-15T06:59:32Z +21,179,2020-02-15T06:59:32Z +21,253,2020-02-15T06:59:32Z +21,281,2020-02-15T06:59:32Z +21,321,2020-02-15T06:59:32Z +21,398,2020-02-15T06:59:32Z +21,426,2020-02-15T06:59:32Z +21,429,2020-02-15T06:59:32Z +21,497,2020-02-15T06:59:32Z +21,507,2020-02-15T06:59:32Z +21,530,2020-02-15T06:59:32Z +21,680,2020-02-15T06:59:32Z +21,686,2020-02-15T06:59:32Z +21,700,2020-02-15T06:59:32Z +21,702,2020-02-15T06:59:32Z +21,733,2020-02-15T06:59:32Z +21,734,2020-02-15T06:59:32Z +21,798,2020-02-15T06:59:32Z +21,804,2020-02-15T06:59:32Z +21,887,2020-02-15T06:59:32Z +21,893,2020-02-15T06:59:32Z +21,920,2020-02-15T06:59:32Z +21,983,2020-02-15T06:59:32Z +22,9,2020-02-15T06:59:32Z +22,23,2020-02-15T06:59:32Z +22,56,2020-02-15T06:59:32Z +22,89,2020-02-15T06:59:32Z +22,111,2020-02-15T06:59:32Z +22,146,2020-02-15T06:59:32Z +22,291,2020-02-15T06:59:32Z +22,294,2020-02-15T06:59:32Z +22,349,2020-02-15T06:59:32Z +22,369,2020-02-15T06:59:32Z +22,418,2020-02-15T06:59:32Z +22,430,2020-02-15T06:59:32Z +22,483,2020-02-15T06:59:32Z +22,491,2020-02-15T06:59:32Z +22,495,2020-02-15T06:59:32Z +22,536,2020-02-15T06:59:32Z +22,600,2020-02-15T06:59:32Z +22,634,2020-02-15T06:59:32Z +22,648,2020-02-15T06:59:32Z +22,688,2020-02-15T06:59:32Z +22,731,2020-02-15T06:59:32Z +22,742,2020-02-15T06:59:32Z +22,775,2020-02-15T06:59:32Z +22,802,2020-02-15T06:59:32Z +22,912,2020-02-15T06:59:32Z +22,964,2020-02-15T06:59:32Z +23,6,2020-02-15T06:59:32Z +23,42,2020-02-15T06:59:32Z +23,78,2020-02-15T06:59:32Z +23,105,2020-02-15T06:59:32Z +23,116,2020-02-15T06:59:32Z +23,117,2020-02-15T06:59:32Z +23,125,2020-02-15T06:59:32Z +23,212,2020-02-15T06:59:32Z +23,226,2020-02-15T06:59:32Z +23,235,2020-02-15T06:59:32Z +23,254,2020-02-15T06:59:32Z +23,367,2020-02-15T06:59:32Z +23,370,2020-02-15T06:59:32Z +23,414,2020-02-15T06:59:32Z +23,419,2020-02-15T06:59:32Z +23,435,2020-02-15T06:59:32Z +23,449,2020-02-15T06:59:32Z +23,491,2020-02-15T06:59:32Z +23,536,2020-02-15T06:59:32Z +23,549,2020-02-15T06:59:32Z +23,636,2020-02-15T06:59:32Z +23,649,2020-02-15T06:59:32Z +23,673,2020-02-15T06:59:32Z +23,691,2020-02-15T06:59:32Z +23,766,2020-02-15T06:59:32Z +23,782,2020-02-15T06:59:32Z +23,804,2020-02-15T06:59:32Z +23,820,2020-02-15T06:59:32Z +23,826,2020-02-15T06:59:32Z +23,833,2020-02-15T06:59:32Z +23,842,2020-02-15T06:59:32Z +23,853,2020-02-15T06:59:32Z +23,855,2020-02-15T06:59:32Z +23,856,2020-02-15T06:59:32Z +23,935,2020-02-15T06:59:32Z +23,981,2020-02-15T06:59:32Z +23,997,2020-02-15T06:59:32Z +24,3,2020-02-15T06:59:32Z +24,83,2020-02-15T06:59:32Z +24,112,2020-02-15T06:59:32Z +24,126,2020-02-15T06:59:32Z +24,148,2020-02-15T06:59:32Z +24,164,2020-02-15T06:59:32Z +24,178,2020-02-15T06:59:32Z +24,194,2020-02-15T06:59:32Z +24,199,2020-02-15T06:59:32Z +24,242,2020-02-15T06:59:32Z +24,256,2020-02-15T06:59:32Z +24,277,2020-02-15T06:59:32Z +24,335,2020-02-15T06:59:32Z +24,405,2020-02-15T06:59:32Z +24,463,2020-02-15T06:59:32Z +24,515,2020-02-15T06:59:32Z +24,585,2020-02-15T06:59:32Z +24,603,2020-02-15T06:59:32Z +24,653,2020-02-15T06:59:32Z +24,704,2020-02-15T06:59:32Z +24,781,2020-02-15T06:59:32Z +24,829,2020-02-15T06:59:32Z +24,832,2020-02-15T06:59:32Z +24,969,2020-02-15T06:59:32Z +25,21,2020-02-15T06:59:32Z +25,86,2020-02-15T06:59:32Z +25,153,2020-02-15T06:59:32Z +25,179,2020-02-15T06:59:32Z +25,204,2020-02-15T06:59:32Z +25,213,2020-02-15T06:59:32Z +25,226,2020-02-15T06:59:32Z +25,245,2020-02-15T06:59:32Z +25,311,2020-02-15T06:59:32Z +25,404,2020-02-15T06:59:32Z +25,411,2020-02-15T06:59:32Z +25,420,2020-02-15T06:59:32Z +25,538,2020-02-15T06:59:32Z +25,564,2020-02-15T06:59:32Z +25,583,2020-02-15T06:59:32Z +25,606,2020-02-15T06:59:32Z +25,688,2020-02-15T06:59:32Z +25,697,2020-02-15T06:59:32Z +25,755,2020-02-15T06:59:32Z +25,871,2020-02-15T06:59:32Z +25,914,2020-02-15T06:59:32Z +26,9,2020-02-15T06:59:32Z +26,21,2020-02-15T06:59:32Z +26,34,2020-02-15T06:59:32Z +26,90,2020-02-15T06:59:32Z +26,93,2020-02-15T06:59:32Z +26,103,2020-02-15T06:59:32Z +26,147,2020-02-15T06:59:32Z +26,186,2020-02-15T06:59:32Z +26,201,2020-02-15T06:59:32Z +26,225,2020-02-15T06:59:32Z +26,241,2020-02-15T06:59:32Z +26,327,2020-02-15T06:59:32Z +26,329,2020-02-15T06:59:32Z +26,340,2020-02-15T06:59:32Z +26,345,2020-02-15T06:59:32Z +26,390,2020-02-15T06:59:32Z +26,392,2020-02-15T06:59:32Z +26,529,2020-02-15T06:59:32Z +26,544,2020-02-15T06:59:32Z +26,564,2020-02-15T06:59:32Z +26,635,2020-02-15T06:59:32Z +26,644,2020-02-15T06:59:32Z +26,682,2020-02-15T06:59:32Z +26,688,2020-02-15T06:59:32Z +26,715,2020-02-15T06:59:32Z +26,732,2020-02-15T06:59:32Z +26,758,2020-02-15T06:59:32Z +26,764,2020-02-15T06:59:32Z +26,795,2020-02-15T06:59:32Z +26,821,2020-02-15T06:59:32Z +26,885,2020-02-15T06:59:32Z +26,904,2020-02-15T06:59:32Z +26,906,2020-02-15T06:59:32Z +27,19,2020-02-15T06:59:32Z +27,34,2020-02-15T06:59:32Z +27,85,2020-02-15T06:59:32Z +27,150,2020-02-15T06:59:32Z +27,172,2020-02-15T06:59:32Z +27,273,2020-02-15T06:59:32Z +27,334,2020-02-15T06:59:32Z +27,347,2020-02-15T06:59:32Z +27,359,2020-02-15T06:59:32Z +27,398,2020-02-15T06:59:32Z +27,415,2020-02-15T06:59:32Z +27,462,2020-02-15T06:59:32Z +27,477,2020-02-15T06:59:32Z +27,500,2020-02-15T06:59:32Z +27,503,2020-02-15T06:59:32Z +27,540,2020-02-15T06:59:32Z +27,586,2020-02-15T06:59:32Z +27,593,2020-02-15T06:59:32Z +27,637,2020-02-15T06:59:32Z +27,679,2020-02-15T06:59:32Z +27,682,2020-02-15T06:59:32Z +27,695,2020-02-15T06:59:32Z +27,771,2020-02-15T06:59:32Z +27,805,2020-02-15T06:59:32Z +27,830,2020-02-15T06:59:32Z +27,854,2020-02-15T06:59:32Z +27,873,2020-02-15T06:59:32Z +27,880,2020-02-15T06:59:32Z +27,889,2020-02-15T06:59:32Z +27,904,2020-02-15T06:59:32Z +27,967,2020-02-15T06:59:32Z +27,986,2020-02-15T06:59:32Z +27,996,2020-02-15T06:59:32Z +28,14,2020-02-15T06:59:32Z +28,43,2020-02-15T06:59:32Z +28,58,2020-02-15T06:59:32Z +28,74,2020-02-15T06:59:32Z +28,96,2020-02-15T06:59:32Z +28,107,2020-02-15T06:59:32Z +28,259,2020-02-15T06:59:32Z +28,263,2020-02-15T06:59:32Z +28,287,2020-02-15T06:59:32Z +28,358,2020-02-15T06:59:32Z +28,502,2020-02-15T06:59:32Z +28,508,2020-02-15T06:59:32Z +28,532,2020-02-15T06:59:32Z +28,551,2020-02-15T06:59:32Z +28,574,2020-02-15T06:59:32Z +28,597,2020-02-15T06:59:32Z +28,619,2020-02-15T06:59:32Z +28,625,2020-02-15T06:59:32Z +28,652,2020-02-15T06:59:32Z +28,679,2020-02-15T06:59:32Z +28,743,2020-02-15T06:59:32Z +28,790,2020-02-15T06:59:32Z +28,793,2020-02-15T06:59:32Z +28,816,2020-02-15T06:59:32Z +28,827,2020-02-15T06:59:32Z +28,835,2020-02-15T06:59:32Z +28,879,2020-02-15T06:59:32Z +28,908,2020-02-15T06:59:32Z +28,953,2020-02-15T06:59:32Z +28,973,2020-02-15T06:59:32Z +28,994,2020-02-15T06:59:32Z +29,10,2020-02-15T06:59:32Z +29,79,2020-02-15T06:59:32Z +29,105,2020-02-15T06:59:32Z +29,110,2020-02-15T06:59:32Z +29,131,2020-02-15T06:59:32Z +29,133,2020-02-15T06:59:32Z +29,172,2020-02-15T06:59:32Z +29,226,2020-02-15T06:59:32Z +29,273,2020-02-15T06:59:32Z +29,282,2020-02-15T06:59:32Z +29,296,2020-02-15T06:59:32Z +29,311,2020-02-15T06:59:32Z +29,335,2020-02-15T06:59:32Z +29,342,2020-02-15T06:59:32Z +29,436,2020-02-15T06:59:32Z +29,444,2020-02-15T06:59:32Z +29,449,2020-02-15T06:59:32Z +29,462,2020-02-15T06:59:32Z +29,482,2020-02-15T06:59:32Z +29,488,2020-02-15T06:59:32Z +29,519,2020-02-15T06:59:32Z +29,547,2020-02-15T06:59:32Z +29,590,2020-02-15T06:59:32Z +29,646,2020-02-15T06:59:32Z +29,723,2020-02-15T06:59:32Z +29,812,2020-02-15T06:59:32Z +29,862,2020-02-15T06:59:32Z +29,928,2020-02-15T06:59:32Z +29,944,2020-02-15T06:59:32Z +30,1,2020-02-15T06:59:32Z +30,53,2020-02-15T06:59:32Z +30,64,2020-02-15T06:59:32Z +30,69,2020-02-15T06:59:32Z +30,77,2020-02-15T06:59:32Z +30,87,2020-02-15T06:59:32Z +30,260,2020-02-15T06:59:32Z +30,262,2020-02-15T06:59:32Z +30,286,2020-02-15T06:59:32Z +30,292,2020-02-15T06:59:32Z +30,301,2020-02-15T06:59:32Z +30,318,2020-02-15T06:59:32Z +30,321,2020-02-15T06:59:32Z +30,357,2020-02-15T06:59:32Z +30,565,2020-02-15T06:59:32Z +30,732,2020-02-15T06:59:32Z +30,797,2020-02-15T06:59:32Z +30,838,2020-02-15T06:59:32Z +30,945,2020-02-15T06:59:32Z +31,88,2020-02-15T06:59:32Z +31,146,2020-02-15T06:59:32Z +31,163,2020-02-15T06:59:32Z +31,164,2020-02-15T06:59:32Z +31,188,2020-02-15T06:59:32Z +31,299,2020-02-15T06:59:32Z +31,308,2020-02-15T06:59:32Z +31,368,2020-02-15T06:59:32Z +31,380,2020-02-15T06:59:32Z +31,431,2020-02-15T06:59:32Z +31,585,2020-02-15T06:59:32Z +31,637,2020-02-15T06:59:32Z +31,700,2020-02-15T06:59:32Z +31,739,2020-02-15T06:59:32Z +31,793,2020-02-15T06:59:32Z +31,802,2020-02-15T06:59:32Z +31,880,2020-02-15T06:59:32Z +31,978,2020-02-15T06:59:32Z +32,65,2020-02-15T06:59:32Z +32,84,2020-02-15T06:59:32Z +32,103,2020-02-15T06:59:32Z +32,112,2020-02-15T06:59:32Z +32,136,2020-02-15T06:59:32Z +32,197,2020-02-15T06:59:32Z +32,199,2020-02-15T06:59:32Z +32,219,2020-02-15T06:59:32Z +32,309,2020-02-15T06:59:32Z +32,312,2020-02-15T06:59:32Z +32,401,2020-02-15T06:59:32Z +32,427,2020-02-15T06:59:32Z +32,431,2020-02-15T06:59:32Z +32,523,2020-02-15T06:59:32Z +32,567,2020-02-15T06:59:32Z +32,585,2020-02-15T06:59:32Z +32,606,2020-02-15T06:59:32Z +32,651,2020-02-15T06:59:32Z +32,667,2020-02-15T06:59:32Z +32,669,2020-02-15T06:59:32Z +32,815,2020-02-15T06:59:32Z +32,928,2020-02-15T06:59:32Z +32,980,2020-02-15T06:59:32Z +33,56,2020-02-15T06:59:32Z +33,112,2020-02-15T06:59:32Z +33,135,2020-02-15T06:59:32Z +33,154,2020-02-15T06:59:32Z +33,214,2020-02-15T06:59:32Z +33,252,2020-02-15T06:59:32Z +33,305,2020-02-15T06:59:32Z +33,306,2020-02-15T06:59:32Z +33,473,2020-02-15T06:59:32Z +33,489,2020-02-15T06:59:32Z +33,574,2020-02-15T06:59:32Z +33,618,2020-02-15T06:59:32Z +33,667,2020-02-15T06:59:32Z +33,694,2020-02-15T06:59:32Z +33,712,2020-02-15T06:59:32Z +33,735,2020-02-15T06:59:32Z +33,737,2020-02-15T06:59:32Z +33,754,2020-02-15T06:59:32Z +33,775,2020-02-15T06:59:32Z +33,878,2020-02-15T06:59:32Z +33,881,2020-02-15T06:59:32Z +33,965,2020-02-15T06:59:32Z +33,972,2020-02-15T06:59:32Z +33,993,2020-02-15T06:59:32Z +34,43,2020-02-15T06:59:32Z +34,90,2020-02-15T06:59:32Z +34,119,2020-02-15T06:59:32Z +34,125,2020-02-15T06:59:32Z +34,172,2020-02-15T06:59:32Z +34,182,2020-02-15T06:59:32Z +34,244,2020-02-15T06:59:32Z +34,336,2020-02-15T06:59:32Z +34,389,2020-02-15T06:59:32Z +34,393,2020-02-15T06:59:32Z +34,438,2020-02-15T06:59:32Z +34,493,2020-02-15T06:59:32Z +34,502,2020-02-15T06:59:32Z +34,525,2020-02-15T06:59:32Z +34,668,2020-02-15T06:59:32Z +34,720,2020-02-15T06:59:32Z +34,779,2020-02-15T06:59:32Z +34,788,2020-02-15T06:59:32Z +34,794,2020-02-15T06:59:32Z +34,836,2020-02-15T06:59:32Z +34,846,2020-02-15T06:59:32Z +34,853,2020-02-15T06:59:32Z +34,929,2020-02-15T06:59:32Z +34,950,2020-02-15T06:59:32Z +34,971,2020-02-15T06:59:32Z +35,10,2020-02-15T06:59:32Z +35,35,2020-02-15T06:59:32Z +35,52,2020-02-15T06:59:32Z +35,201,2020-02-15T06:59:32Z +35,256,2020-02-15T06:59:32Z +35,389,2020-02-15T06:59:32Z +35,589,2020-02-15T06:59:32Z +35,612,2020-02-15T06:59:32Z +35,615,2020-02-15T06:59:32Z +35,707,2020-02-15T06:59:32Z +35,732,2020-02-15T06:59:32Z +35,738,2020-02-15T06:59:32Z +35,748,2020-02-15T06:59:32Z +35,817,2020-02-15T06:59:32Z +35,914,2020-02-15T06:59:32Z +36,15,2020-02-15T06:59:32Z +36,81,2020-02-15T06:59:32Z +36,171,2020-02-15T06:59:32Z +36,231,2020-02-15T06:59:32Z +36,245,2020-02-15T06:59:32Z +36,283,2020-02-15T06:59:32Z +36,380,2020-02-15T06:59:32Z +36,381,2020-02-15T06:59:32Z +36,387,2020-02-15T06:59:32Z +36,390,2020-02-15T06:59:32Z +36,410,2020-02-15T06:59:32Z +36,426,2020-02-15T06:59:32Z +36,427,2020-02-15T06:59:32Z +36,453,2020-02-15T06:59:32Z +36,466,2020-02-15T06:59:32Z +36,484,2020-02-15T06:59:32Z +36,493,2020-02-15T06:59:32Z +36,499,2020-02-15T06:59:32Z +36,569,2020-02-15T06:59:32Z +36,590,2020-02-15T06:59:32Z +36,600,2020-02-15T06:59:32Z +36,714,2020-02-15T06:59:32Z +36,715,2020-02-15T06:59:32Z +36,716,2020-02-15T06:59:32Z +36,731,2020-02-15T06:59:32Z +36,875,2020-02-15T06:59:32Z +36,915,2020-02-15T06:59:32Z +36,931,2020-02-15T06:59:32Z +36,956,2020-02-15T06:59:32Z +37,10,2020-02-15T06:59:32Z +37,12,2020-02-15T06:59:32Z +37,19,2020-02-15T06:59:32Z +37,118,2020-02-15T06:59:32Z +37,119,2020-02-15T06:59:32Z +37,122,2020-02-15T06:59:32Z +37,146,2020-02-15T06:59:32Z +37,204,2020-02-15T06:59:32Z +37,253,2020-02-15T06:59:32Z +37,260,2020-02-15T06:59:32Z +37,277,2020-02-15T06:59:32Z +37,317,2020-02-15T06:59:32Z +37,467,2020-02-15T06:59:32Z +37,477,2020-02-15T06:59:32Z +37,485,2020-02-15T06:59:32Z +37,508,2020-02-15T06:59:32Z +37,529,2020-02-15T06:59:32Z +37,553,2020-02-15T06:59:32Z +37,555,2020-02-15T06:59:32Z +37,572,2020-02-15T06:59:32Z +37,588,2020-02-15T06:59:32Z +37,662,2020-02-15T06:59:32Z +37,663,2020-02-15T06:59:32Z +37,694,2020-02-15T06:59:32Z +37,697,2020-02-15T06:59:32Z +37,785,2020-02-15T06:59:32Z +37,839,2020-02-15T06:59:32Z +37,840,2020-02-15T06:59:32Z +37,853,2020-02-15T06:59:32Z +37,900,2020-02-15T06:59:32Z +37,925,2020-02-15T06:59:32Z +37,963,2020-02-15T06:59:32Z +37,966,2020-02-15T06:59:32Z +37,989,2020-02-15T06:59:32Z +37,997,2020-02-15T06:59:32Z +38,24,2020-02-15T06:59:32Z +38,111,2020-02-15T06:59:32Z +38,160,2020-02-15T06:59:32Z +38,176,2020-02-15T06:59:32Z +38,223,2020-02-15T06:59:32Z +38,241,2020-02-15T06:59:32Z +38,274,2020-02-15T06:59:32Z +38,335,2020-02-15T06:59:32Z +38,338,2020-02-15T06:59:32Z +38,353,2020-02-15T06:59:32Z +38,448,2020-02-15T06:59:32Z +38,450,2020-02-15T06:59:32Z +38,458,2020-02-15T06:59:32Z +38,501,2020-02-15T06:59:32Z +38,516,2020-02-15T06:59:32Z +38,547,2020-02-15T06:59:32Z +38,583,2020-02-15T06:59:32Z +38,618,2020-02-15T06:59:32Z +38,619,2020-02-15T06:59:32Z +38,705,2020-02-15T06:59:32Z +38,793,2020-02-15T06:59:32Z +38,827,2020-02-15T06:59:32Z +38,839,2020-02-15T06:59:32Z +38,853,2020-02-15T06:59:32Z +38,876,2020-02-15T06:59:32Z +39,71,2020-02-15T06:59:32Z +39,73,2020-02-15T06:59:32Z +39,168,2020-02-15T06:59:32Z +39,203,2020-02-15T06:59:32Z +39,222,2020-02-15T06:59:32Z +39,290,2020-02-15T06:59:32Z +39,293,2020-02-15T06:59:32Z +39,320,2020-02-15T06:59:32Z +39,415,2020-02-15T06:59:32Z +39,425,2020-02-15T06:59:32Z +39,431,2020-02-15T06:59:32Z +39,456,2020-02-15T06:59:32Z +39,476,2020-02-15T06:59:32Z +39,559,2020-02-15T06:59:32Z +39,587,2020-02-15T06:59:32Z +39,598,2020-02-15T06:59:32Z +39,606,2020-02-15T06:59:32Z +39,648,2020-02-15T06:59:32Z +39,683,2020-02-15T06:59:32Z +39,689,2020-02-15T06:59:32Z +39,696,2020-02-15T06:59:32Z +39,700,2020-02-15T06:59:32Z +39,703,2020-02-15T06:59:32Z +39,736,2020-02-15T06:59:32Z +39,772,2020-02-15T06:59:32Z +39,815,2020-02-15T06:59:32Z +39,831,2020-02-15T06:59:32Z +39,920,2020-02-15T06:59:32Z +40,1,2020-02-15T06:59:32Z +40,11,2020-02-15T06:59:32Z +40,34,2020-02-15T06:59:32Z +40,107,2020-02-15T06:59:32Z +40,128,2020-02-15T06:59:32Z +40,163,2020-02-15T06:59:32Z +40,177,2020-02-15T06:59:32Z +40,223,2020-02-15T06:59:32Z +40,233,2020-02-15T06:59:32Z +40,326,2020-02-15T06:59:32Z +40,374,2020-02-15T06:59:32Z +40,394,2020-02-15T06:59:32Z +40,396,2020-02-15T06:59:32Z +40,463,2020-02-15T06:59:32Z +40,466,2020-02-15T06:59:32Z +40,494,2020-02-15T06:59:32Z +40,521,2020-02-15T06:59:32Z +40,723,2020-02-15T06:59:32Z +40,737,2020-02-15T06:59:32Z +40,744,2020-02-15T06:59:32Z +40,747,2020-02-15T06:59:32Z +40,754,2020-02-15T06:59:32Z +40,799,2020-02-15T06:59:32Z +40,835,2020-02-15T06:59:32Z +40,868,2020-02-15T06:59:32Z +40,869,2020-02-15T06:59:32Z +40,887,2020-02-15T06:59:32Z +40,933,2020-02-15T06:59:32Z +40,938,2020-02-15T06:59:32Z +41,4,2020-02-15T06:59:32Z +41,60,2020-02-15T06:59:32Z +41,69,2020-02-15T06:59:32Z +41,86,2020-02-15T06:59:32Z +41,100,2020-02-15T06:59:32Z +41,150,2020-02-15T06:59:32Z +41,159,2020-02-15T06:59:32Z +41,194,2020-02-15T06:59:32Z +41,203,2020-02-15T06:59:32Z +41,212,2020-02-15T06:59:32Z +41,230,2020-02-15T06:59:32Z +41,249,2020-02-15T06:59:32Z +41,252,2020-02-15T06:59:32Z +41,305,2020-02-15T06:59:32Z +41,336,2020-02-15T06:59:32Z +41,383,2020-02-15T06:59:32Z +41,544,2020-02-15T06:59:32Z +41,596,2020-02-15T06:59:32Z +41,657,2020-02-15T06:59:32Z +41,674,2020-02-15T06:59:32Z +41,678,2020-02-15T06:59:32Z +41,721,2020-02-15T06:59:32Z +41,724,2020-02-15T06:59:32Z +41,779,2020-02-15T06:59:32Z +41,784,2020-02-15T06:59:32Z +41,799,2020-02-15T06:59:32Z +41,894,2020-02-15T06:59:32Z +41,912,2020-02-15T06:59:32Z +41,942,2020-02-15T06:59:32Z +42,24,2020-02-15T06:59:32Z +42,139,2020-02-15T06:59:32Z +42,309,2020-02-15T06:59:32Z +42,320,2020-02-15T06:59:32Z +42,333,2020-02-15T06:59:32Z +42,500,2020-02-15T06:59:32Z +42,502,2020-02-15T06:59:32Z +42,505,2020-02-15T06:59:32Z +42,527,2020-02-15T06:59:32Z +42,535,2020-02-15T06:59:32Z +42,546,2020-02-15T06:59:32Z +42,568,2020-02-15T06:59:32Z +42,648,2020-02-15T06:59:32Z +42,665,2020-02-15T06:59:32Z +42,673,2020-02-15T06:59:32Z +42,687,2020-02-15T06:59:32Z +42,713,2020-02-15T06:59:32Z +42,738,2020-02-15T06:59:32Z +42,798,2020-02-15T06:59:32Z +42,861,2020-02-15T06:59:33Z +42,865,2020-02-15T06:59:33Z +42,867,2020-02-15T06:59:33Z +42,876,2020-02-15T06:59:33Z +42,890,2020-02-15T06:59:33Z +42,907,2020-02-15T06:59:33Z +42,922,2020-02-15T06:59:33Z +42,932,2020-02-15T06:59:33Z +43,19,2020-02-15T06:59:33Z +43,42,2020-02-15T06:59:33Z +43,56,2020-02-15T06:59:33Z +43,89,2020-02-15T06:59:33Z +43,105,2020-02-15T06:59:33Z +43,147,2020-02-15T06:59:33Z +43,161,2020-02-15T06:59:33Z +43,180,2020-02-15T06:59:33Z +43,239,2020-02-15T06:59:33Z +43,276,2020-02-15T06:59:33Z +43,330,2020-02-15T06:59:33Z +43,344,2020-02-15T06:59:33Z +43,359,2020-02-15T06:59:33Z +43,377,2020-02-15T06:59:33Z +43,410,2020-02-15T06:59:33Z +43,462,2020-02-15T06:59:33Z +43,533,2020-02-15T06:59:33Z +43,598,2020-02-15T06:59:33Z +43,605,2020-02-15T06:59:33Z +43,608,2020-02-15T06:59:33Z +43,621,2020-02-15T06:59:33Z +43,753,2020-02-15T06:59:33Z +43,827,2020-02-15T06:59:33Z +43,833,2020-02-15T06:59:33Z +43,917,2020-02-15T06:59:33Z +43,958,2020-02-15T06:59:33Z +44,58,2020-02-15T06:59:33Z +44,84,2020-02-15T06:59:33Z +44,88,2020-02-15T06:59:33Z +44,94,2020-02-15T06:59:33Z +44,109,2020-02-15T06:59:33Z +44,176,2020-02-15T06:59:33Z +44,242,2020-02-15T06:59:33Z +44,273,2020-02-15T06:59:33Z +44,322,2020-02-15T06:59:33Z +44,420,2020-02-15T06:59:33Z +44,434,2020-02-15T06:59:33Z +44,490,2020-02-15T06:59:33Z +44,591,2020-02-15T06:59:33Z +44,598,2020-02-15T06:59:33Z +44,604,2020-02-15T06:59:33Z +44,699,2020-02-15T06:59:33Z +44,751,2020-02-15T06:59:33Z +44,784,2020-02-15T06:59:33Z +44,825,2020-02-15T06:59:33Z +44,854,2020-02-15T06:59:33Z +44,875,2020-02-15T06:59:33Z +44,878,2020-02-15T06:59:33Z +44,883,2020-02-15T06:59:33Z +44,896,2020-02-15T06:59:33Z +44,902,2020-02-15T06:59:33Z +44,937,2020-02-15T06:59:33Z +44,944,2020-02-15T06:59:33Z +44,952,2020-02-15T06:59:33Z +44,982,2020-02-15T06:59:33Z +44,998,2020-02-15T06:59:33Z +45,18,2020-02-15T06:59:33Z +45,65,2020-02-15T06:59:33Z +45,66,2020-02-15T06:59:33Z +45,115,2020-02-15T06:59:33Z +45,117,2020-02-15T06:59:33Z +45,164,2020-02-15T06:59:33Z +45,187,2020-02-15T06:59:33Z +45,198,2020-02-15T06:59:33Z +45,219,2020-02-15T06:59:33Z +45,330,2020-02-15T06:59:33Z +45,407,2020-02-15T06:59:33Z +45,416,2020-02-15T06:59:33Z +45,463,2020-02-15T06:59:33Z +45,467,2020-02-15T06:59:33Z +45,484,2020-02-15T06:59:33Z +45,502,2020-02-15T06:59:33Z +45,503,2020-02-15T06:59:33Z +45,508,2020-02-15T06:59:33Z +45,537,2020-02-15T06:59:33Z +45,680,2020-02-15T06:59:33Z +45,714,2020-02-15T06:59:33Z +45,767,2020-02-15T06:59:33Z +45,778,2020-02-15T06:59:33Z +45,797,2020-02-15T06:59:33Z +45,810,2020-02-15T06:59:33Z +45,895,2020-02-15T06:59:33Z +45,900,2020-02-15T06:59:33Z +45,901,2020-02-15T06:59:33Z +45,920,2020-02-15T06:59:33Z +45,925,2020-02-15T06:59:33Z +45,975,2020-02-15T06:59:33Z +45,978,2020-02-15T06:59:33Z +46,38,2020-02-15T06:59:33Z +46,51,2020-02-15T06:59:33Z +46,174,2020-02-15T06:59:33Z +46,254,2020-02-15T06:59:33Z +46,296,2020-02-15T06:59:33Z +46,319,2020-02-15T06:59:33Z +46,407,2020-02-15T06:59:33Z +46,448,2020-02-15T06:59:33Z +46,456,2020-02-15T06:59:33Z +46,463,2020-02-15T06:59:33Z +46,478,2020-02-15T06:59:33Z +46,538,2020-02-15T06:59:33Z +46,540,2020-02-15T06:59:33Z +46,567,2020-02-15T06:59:33Z +46,731,2020-02-15T06:59:33Z +46,766,2020-02-15T06:59:33Z +46,768,2020-02-15T06:59:33Z +46,820,2020-02-15T06:59:33Z +46,829,2020-02-15T06:59:33Z +46,830,2020-02-15T06:59:33Z +46,836,2020-02-15T06:59:33Z +46,889,2020-02-15T06:59:33Z +46,980,2020-02-15T06:59:33Z +46,991,2020-02-15T06:59:33Z +47,25,2020-02-15T06:59:33Z +47,36,2020-02-15T06:59:33Z +47,53,2020-02-15T06:59:33Z +47,67,2020-02-15T06:59:33Z +47,172,2020-02-15T06:59:33Z +47,233,2020-02-15T06:59:33Z +47,273,2020-02-15T06:59:33Z +47,351,2020-02-15T06:59:33Z +47,385,2020-02-15T06:59:33Z +47,484,2020-02-15T06:59:33Z +47,508,2020-02-15T06:59:33Z +47,576,2020-02-15T06:59:33Z +47,670,2020-02-15T06:59:33Z +47,734,2020-02-15T06:59:33Z +47,737,2020-02-15T06:59:33Z +47,770,2020-02-15T06:59:33Z +47,777,2020-02-15T06:59:33Z +47,787,2020-02-15T06:59:33Z +47,790,2020-02-15T06:59:33Z +47,913,2020-02-15T06:59:33Z +47,923,2020-02-15T06:59:33Z +47,924,2020-02-15T06:59:33Z +47,944,2020-02-15T06:59:33Z +47,973,2020-02-15T06:59:33Z +48,99,2020-02-15T06:59:33Z +48,101,2020-02-15T06:59:33Z +48,134,2020-02-15T06:59:33Z +48,150,2020-02-15T06:59:33Z +48,164,2020-02-15T06:59:33Z +48,211,2020-02-15T06:59:33Z +48,245,2020-02-15T06:59:33Z +48,267,2020-02-15T06:59:33Z +48,287,2020-02-15T06:59:33Z +48,295,2020-02-15T06:59:33Z +48,312,2020-02-15T06:59:33Z +48,315,2020-02-15T06:59:33Z +48,345,2020-02-15T06:59:33Z +48,349,2020-02-15T06:59:33Z +48,428,2020-02-15T06:59:33Z +48,506,2020-02-15T06:59:33Z +48,545,2020-02-15T06:59:33Z +48,559,2020-02-15T06:59:33Z +48,570,2020-02-15T06:59:33Z +48,599,2020-02-15T06:59:33Z +48,645,2020-02-15T06:59:33Z +48,705,2020-02-15T06:59:33Z +48,757,2020-02-15T06:59:33Z +48,792,2020-02-15T06:59:33Z +48,922,2020-02-15T06:59:33Z +48,926,2020-02-15T06:59:33Z +49,31,2020-02-15T06:59:33Z +49,151,2020-02-15T06:59:33Z +49,195,2020-02-15T06:59:33Z +49,207,2020-02-15T06:59:33Z +49,250,2020-02-15T06:59:33Z +49,282,2020-02-15T06:59:33Z +49,348,2020-02-15T06:59:33Z +49,391,2020-02-15T06:59:33Z +49,400,2020-02-15T06:59:33Z +49,407,2020-02-15T06:59:33Z +49,423,2020-02-15T06:59:33Z +49,433,2020-02-15T06:59:33Z +49,469,2020-02-15T06:59:33Z +49,506,2020-02-15T06:59:33Z +49,542,2020-02-15T06:59:33Z +49,558,2020-02-15T06:59:33Z +49,579,2020-02-15T06:59:33Z +49,595,2020-02-15T06:59:33Z +49,662,2020-02-15T06:59:33Z +49,709,2020-02-15T06:59:33Z +49,716,2020-02-15T06:59:33Z +49,725,2020-02-15T06:59:33Z +49,729,2020-02-15T06:59:33Z +49,811,2020-02-15T06:59:33Z +49,927,2020-02-15T06:59:33Z +49,977,2020-02-15T06:59:33Z +49,980,2020-02-15T06:59:33Z +50,111,2020-02-15T06:59:33Z +50,178,2020-02-15T06:59:33Z +50,243,2020-02-15T06:59:33Z +50,248,2020-02-15T06:59:33Z +50,274,2020-02-15T06:59:33Z +50,288,2020-02-15T06:59:33Z +50,303,2020-02-15T06:59:33Z +50,306,2020-02-15T06:59:33Z +50,327,2020-02-15T06:59:33Z +50,372,2020-02-15T06:59:33Z +50,401,2020-02-15T06:59:33Z +50,417,2020-02-15T06:59:33Z +50,420,2020-02-15T06:59:33Z +50,437,2020-02-15T06:59:33Z +50,476,2020-02-15T06:59:33Z +50,504,2020-02-15T06:59:33Z +50,520,2020-02-15T06:59:33Z +50,552,2020-02-15T06:59:33Z +50,591,2020-02-15T06:59:33Z +50,621,2020-02-15T06:59:33Z +50,632,2020-02-15T06:59:33Z +50,645,2020-02-15T06:59:33Z +50,672,2020-02-15T06:59:33Z +50,717,2020-02-15T06:59:33Z +50,732,2020-02-15T06:59:33Z +50,795,2020-02-15T06:59:33Z +50,829,2020-02-15T06:59:33Z +50,840,2020-02-15T06:59:33Z +50,897,2020-02-15T06:59:33Z +50,918,2020-02-15T06:59:33Z +50,924,2020-02-15T06:59:33Z +50,957,2020-02-15T06:59:33Z +51,5,2020-02-15T06:59:33Z +51,63,2020-02-15T06:59:33Z +51,103,2020-02-15T06:59:33Z +51,112,2020-02-15T06:59:33Z +51,121,2020-02-15T06:59:33Z +51,153,2020-02-15T06:59:33Z +51,395,2020-02-15T06:59:33Z +51,408,2020-02-15T06:59:33Z +51,420,2020-02-15T06:59:33Z +51,461,2020-02-15T06:59:33Z +51,490,2020-02-15T06:59:33Z +51,525,2020-02-15T06:59:33Z +51,627,2020-02-15T06:59:33Z +51,678,2020-02-15T06:59:33Z +51,733,2020-02-15T06:59:33Z +51,734,2020-02-15T06:59:33Z +51,737,2020-02-15T06:59:33Z +51,750,2020-02-15T06:59:33Z +51,847,2020-02-15T06:59:33Z +51,891,2020-02-15T06:59:33Z +51,895,2020-02-15T06:59:33Z +51,940,2020-02-15T06:59:33Z +51,974,2020-02-15T06:59:33Z +51,990,2020-02-15T06:59:33Z +51,993,2020-02-15T06:59:33Z +52,20,2020-02-15T06:59:33Z +52,92,2020-02-15T06:59:33Z +52,96,2020-02-15T06:59:33Z +52,108,2020-02-15T06:59:33Z +52,203,2020-02-15T06:59:33Z +52,249,2020-02-15T06:59:33Z +52,341,2020-02-15T06:59:33Z +52,376,2020-02-15T06:59:33Z +52,388,2020-02-15T06:59:33Z +52,407,2020-02-15T06:59:33Z +52,424,2020-02-15T06:59:33Z +52,474,2020-02-15T06:59:33Z +52,515,2020-02-15T06:59:33Z +52,517,2020-02-15T06:59:33Z +52,584,2020-02-15T06:59:33Z +52,596,2020-02-15T06:59:33Z +52,664,2020-02-15T06:59:33Z +52,675,2020-02-15T06:59:33Z +52,689,2020-02-15T06:59:33Z +52,714,2020-02-15T06:59:33Z +52,812,2020-02-15T06:59:33Z +52,878,2020-02-15T06:59:33Z +52,879,2020-02-15T06:59:33Z +52,915,2020-02-15T06:59:33Z +52,951,2020-02-15T06:59:33Z +52,999,2020-02-15T06:59:33Z +53,1,2020-02-15T06:59:33Z +53,9,2020-02-15T06:59:33Z +53,51,2020-02-15T06:59:33Z +53,58,2020-02-15T06:59:33Z +53,109,2020-02-15T06:59:33Z +53,122,2020-02-15T06:59:33Z +53,126,2020-02-15T06:59:33Z +53,181,2020-02-15T06:59:33Z +53,256,2020-02-15T06:59:33Z +53,268,2020-02-15T06:59:33Z +53,285,2020-02-15T06:59:33Z +53,307,2020-02-15T06:59:33Z +53,358,2020-02-15T06:59:33Z +53,386,2020-02-15T06:59:33Z +53,447,2020-02-15T06:59:33Z +53,465,2020-02-15T06:59:33Z +53,490,2020-02-15T06:59:33Z +53,492,2020-02-15T06:59:33Z +53,508,2020-02-15T06:59:33Z +53,518,2020-02-15T06:59:33Z +53,573,2020-02-15T06:59:33Z +53,576,2020-02-15T06:59:33Z +53,577,2020-02-15T06:59:33Z +53,697,2020-02-15T06:59:33Z +53,725,2020-02-15T06:59:33Z +53,727,2020-02-15T06:59:33Z +53,937,2020-02-15T06:59:33Z +53,947,2020-02-15T06:59:33Z +53,961,2020-02-15T06:59:33Z +53,980,2020-02-15T06:59:33Z +54,84,2020-02-15T06:59:33Z +54,129,2020-02-15T06:59:33Z +54,150,2020-02-15T06:59:33Z +54,184,2020-02-15T06:59:33Z +54,285,2020-02-15T06:59:33Z +54,292,2020-02-15T06:59:33Z +54,301,2020-02-15T06:59:33Z +54,348,2020-02-15T06:59:33Z +54,489,2020-02-15T06:59:33Z +54,510,2020-02-15T06:59:33Z +54,524,2020-02-15T06:59:33Z +54,546,2020-02-15T06:59:33Z +54,600,2020-02-15T06:59:33Z +54,636,2020-02-15T06:59:33Z +54,649,2020-02-15T06:59:33Z +54,658,2020-02-15T06:59:33Z +54,754,2020-02-15T06:59:33Z +54,764,2020-02-15T06:59:33Z +54,842,2020-02-15T06:59:33Z +54,858,2020-02-15T06:59:33Z +54,861,2020-02-15T06:59:33Z +54,913,2020-02-15T06:59:33Z +54,970,2020-02-15T06:59:33Z +54,988,2020-02-15T06:59:33Z +54,990,2020-02-15T06:59:33Z +55,8,2020-02-15T06:59:33Z +55,27,2020-02-15T06:59:33Z +55,75,2020-02-15T06:59:33Z +55,197,2020-02-15T06:59:33Z +55,307,2020-02-15T06:59:33Z +55,320,2020-02-15T06:59:33Z +55,340,2020-02-15T06:59:33Z +55,403,2020-02-15T06:59:33Z +55,485,2020-02-15T06:59:33Z +55,486,2020-02-15T06:59:33Z +55,603,2020-02-15T06:59:33Z +55,612,2020-02-15T06:59:33Z +55,620,2020-02-15T06:59:33Z +55,709,2020-02-15T06:59:33Z +55,776,2020-02-15T06:59:33Z +55,790,2020-02-15T06:59:33Z +55,815,2020-02-15T06:59:33Z +55,827,2020-02-15T06:59:33Z +55,930,2020-02-15T06:59:33Z +55,963,2020-02-15T06:59:33Z +56,63,2020-02-15T06:59:33Z +56,87,2020-02-15T06:59:33Z +56,226,2020-02-15T06:59:33Z +56,236,2020-02-15T06:59:33Z +56,298,2020-02-15T06:59:33Z +56,307,2020-02-15T06:59:33Z +56,354,2020-02-15T06:59:33Z +56,383,2020-02-15T06:59:33Z +56,417,2020-02-15T06:59:33Z +56,421,2020-02-15T06:59:33Z +56,457,2020-02-15T06:59:33Z +56,462,2020-02-15T06:59:33Z +56,474,2020-02-15T06:59:33Z +56,521,2020-02-15T06:59:33Z +56,593,2020-02-15T06:59:33Z +56,728,2020-02-15T06:59:33Z +56,750,2020-02-15T06:59:33Z +56,769,2020-02-15T06:59:33Z +56,781,2020-02-15T06:59:33Z +56,795,2020-02-15T06:59:33Z +56,844,2020-02-15T06:59:33Z +56,851,2020-02-15T06:59:33Z +56,862,2020-02-15T06:59:33Z +56,868,2020-02-15T06:59:33Z +56,892,2020-02-15T06:59:33Z +56,893,2020-02-15T06:59:33Z +56,936,2020-02-15T06:59:33Z +56,965,2020-02-15T06:59:33Z +57,16,2020-02-15T06:59:33Z +57,34,2020-02-15T06:59:33Z +57,101,2020-02-15T06:59:33Z +57,114,2020-02-15T06:59:33Z +57,122,2020-02-15T06:59:33Z +57,134,2020-02-15T06:59:33Z +57,144,2020-02-15T06:59:33Z +57,153,2020-02-15T06:59:33Z +57,192,2020-02-15T06:59:33Z +57,213,2020-02-15T06:59:33Z +57,258,2020-02-15T06:59:33Z +57,267,2020-02-15T06:59:33Z +57,317,2020-02-15T06:59:33Z +57,340,2020-02-15T06:59:33Z +57,393,2020-02-15T06:59:33Z +57,437,2020-02-15T06:59:33Z +57,447,2020-02-15T06:59:33Z +57,502,2020-02-15T06:59:33Z +57,592,2020-02-15T06:59:33Z +57,605,2020-02-15T06:59:33Z +57,637,2020-02-15T06:59:33Z +57,685,2020-02-15T06:59:33Z +57,707,2020-02-15T06:59:33Z +57,714,2020-02-15T06:59:33Z +57,717,2020-02-15T06:59:33Z +57,737,2020-02-15T06:59:33Z +57,767,2020-02-15T06:59:33Z +57,852,2020-02-15T06:59:33Z +57,891,2020-02-15T06:59:33Z +57,918,2020-02-15T06:59:33Z +58,48,2020-02-15T06:59:33Z +58,68,2020-02-15T06:59:33Z +58,119,2020-02-15T06:59:33Z +58,128,2020-02-15T06:59:33Z +58,135,2020-02-15T06:59:33Z +58,175,2020-02-15T06:59:33Z +58,199,2020-02-15T06:59:33Z +58,235,2020-02-15T06:59:33Z +58,242,2020-02-15T06:59:33Z +58,243,2020-02-15T06:59:33Z +58,254,2020-02-15T06:59:33Z +58,306,2020-02-15T06:59:33Z +58,316,2020-02-15T06:59:33Z +58,417,2020-02-15T06:59:33Z +58,426,2020-02-15T06:59:33Z +58,460,2020-02-15T06:59:33Z +58,477,2020-02-15T06:59:33Z +58,541,2020-02-15T06:59:33Z +58,549,2020-02-15T06:59:33Z +58,551,2020-02-15T06:59:33Z +58,553,2020-02-15T06:59:33Z +58,578,2020-02-15T06:59:33Z +58,602,2020-02-15T06:59:33Z +58,632,2020-02-15T06:59:33Z +58,635,2020-02-15T06:59:33Z +58,638,2020-02-15T06:59:33Z +58,698,2020-02-15T06:59:33Z +58,726,2020-02-15T06:59:33Z +58,755,2020-02-15T06:59:33Z +58,800,2020-02-15T06:59:33Z +58,856,2020-02-15T06:59:33Z +58,858,2020-02-15T06:59:33Z +59,5,2020-02-15T06:59:33Z +59,46,2020-02-15T06:59:33Z +59,54,2020-02-15T06:59:33Z +59,72,2020-02-15T06:59:33Z +59,88,2020-02-15T06:59:33Z +59,121,2020-02-15T06:59:33Z +59,129,2020-02-15T06:59:33Z +59,130,2020-02-15T06:59:33Z +59,183,2020-02-15T06:59:33Z +59,210,2020-02-15T06:59:33Z +59,241,2020-02-15T06:59:33Z +59,295,2020-02-15T06:59:33Z +59,418,2020-02-15T06:59:33Z +59,572,2020-02-15T06:59:33Z +59,644,2020-02-15T06:59:33Z +59,650,2020-02-15T06:59:33Z +59,689,2020-02-15T06:59:33Z +59,694,2020-02-15T06:59:33Z +59,702,2020-02-15T06:59:33Z +59,713,2020-02-15T06:59:33Z +59,749,2020-02-15T06:59:33Z +59,772,2020-02-15T06:59:33Z +59,853,2020-02-15T06:59:33Z +59,862,2020-02-15T06:59:33Z +59,943,2020-02-15T06:59:33Z +59,946,2020-02-15T06:59:33Z +59,984,2020-02-15T06:59:33Z +60,31,2020-02-15T06:59:33Z +60,85,2020-02-15T06:59:33Z +60,133,2020-02-15T06:59:33Z +60,142,2020-02-15T06:59:33Z +60,177,2020-02-15T06:59:33Z +60,179,2020-02-15T06:59:33Z +60,186,2020-02-15T06:59:33Z +60,222,2020-02-15T06:59:33Z +60,235,2020-02-15T06:59:33Z +60,239,2020-02-15T06:59:33Z +60,253,2020-02-15T06:59:33Z +60,262,2020-02-15T06:59:33Z +60,297,2020-02-15T06:59:33Z +60,299,2020-02-15T06:59:33Z +60,334,2020-02-15T06:59:33Z +60,376,2020-02-15T06:59:33Z +60,423,2020-02-15T06:59:33Z +60,436,2020-02-15T06:59:33Z +60,493,2020-02-15T06:59:33Z +60,534,2020-02-15T06:59:33Z +60,551,2020-02-15T06:59:33Z +60,658,2020-02-15T06:59:33Z +60,665,2020-02-15T06:59:33Z +60,679,2020-02-15T06:59:33Z +60,754,2020-02-15T06:59:33Z +60,771,2020-02-15T06:59:33Z +60,783,2020-02-15T06:59:33Z +60,784,2020-02-15T06:59:33Z +60,805,2020-02-15T06:59:33Z +60,830,2020-02-15T06:59:33Z +60,835,2020-02-15T06:59:33Z +60,928,2020-02-15T06:59:33Z +60,952,2020-02-15T06:59:33Z +60,971,2020-02-15T06:59:33Z +60,986,2020-02-15T06:59:33Z +61,235,2020-02-15T06:59:33Z +61,237,2020-02-15T06:59:33Z +61,307,2020-02-15T06:59:33Z +61,362,2020-02-15T06:59:33Z +61,372,2020-02-15T06:59:33Z +61,374,2020-02-15T06:59:33Z +61,423,2020-02-15T06:59:33Z +61,433,2020-02-15T06:59:33Z +61,508,2020-02-15T06:59:33Z +61,518,2020-02-15T06:59:33Z +61,519,2020-02-15T06:59:33Z +61,535,2020-02-15T06:59:33Z +61,537,2020-02-15T06:59:33Z +61,585,2020-02-15T06:59:33Z +61,639,2020-02-15T06:59:33Z +61,648,2020-02-15T06:59:33Z +61,649,2020-02-15T06:59:33Z +61,703,2020-02-15T06:59:33Z +61,752,2020-02-15T06:59:33Z +61,766,2020-02-15T06:59:33Z +61,767,2020-02-15T06:59:33Z +61,780,2020-02-15T06:59:33Z +61,831,2020-02-15T06:59:33Z +61,832,2020-02-15T06:59:33Z +61,990,2020-02-15T06:59:33Z +62,6,2020-02-15T06:59:33Z +62,42,2020-02-15T06:59:33Z +62,54,2020-02-15T06:59:33Z +62,100,2020-02-15T06:59:33Z +62,101,2020-02-15T06:59:33Z +62,129,2020-02-15T06:59:33Z +62,198,2020-02-15T06:59:33Z +62,211,2020-02-15T06:59:33Z +62,231,2020-02-15T06:59:33Z +62,272,2020-02-15T06:59:33Z +62,295,2020-02-15T06:59:33Z +62,337,2020-02-15T06:59:33Z +62,375,2020-02-15T06:59:33Z +62,385,2020-02-15T06:59:33Z +62,393,2020-02-15T06:59:33Z +62,398,2020-02-15T06:59:33Z +62,406,2020-02-15T06:59:33Z +62,413,2020-02-15T06:59:33Z +62,428,2020-02-15T06:59:33Z +62,445,2020-02-15T06:59:33Z +62,457,2020-02-15T06:59:33Z +62,465,2020-02-15T06:59:33Z +62,688,2020-02-15T06:59:33Z +62,707,2020-02-15T06:59:33Z +62,719,2020-02-15T06:59:33Z +62,951,2020-02-15T06:59:33Z +62,981,2020-02-15T06:59:33Z +62,988,2020-02-15T06:59:33Z +62,990,2020-02-15T06:59:33Z +63,73,2020-02-15T06:59:33Z +63,134,2020-02-15T06:59:33Z +63,167,2020-02-15T06:59:33Z +63,208,2020-02-15T06:59:33Z +63,225,2020-02-15T06:59:33Z +63,248,2020-02-15T06:59:33Z +63,249,2020-02-15T06:59:33Z +63,278,2020-02-15T06:59:33Z +63,392,2020-02-15T06:59:33Z +63,517,2020-02-15T06:59:33Z +63,633,2020-02-15T06:59:33Z +63,763,2020-02-15T06:59:33Z +63,781,2020-02-15T06:59:33Z +63,809,2020-02-15T06:59:33Z +63,893,2020-02-15T06:59:33Z +63,932,2020-02-15T06:59:33Z +63,944,2020-02-15T06:59:33Z +63,945,2020-02-15T06:59:33Z +63,981,2020-02-15T06:59:33Z +64,3,2020-02-15T06:59:33Z +64,10,2020-02-15T06:59:33Z +64,37,2020-02-15T06:59:33Z +64,87,2020-02-15T06:59:33Z +64,88,2020-02-15T06:59:33Z +64,124,2020-02-15T06:59:33Z +64,197,2020-02-15T06:59:33Z +64,280,2020-02-15T06:59:33Z +64,291,2020-02-15T06:59:33Z +64,307,2020-02-15T06:59:33Z +64,335,2020-02-15T06:59:33Z +64,345,2020-02-15T06:59:33Z +64,448,2020-02-15T06:59:33Z +64,469,2020-02-15T06:59:33Z +64,471,2020-02-15T06:59:33Z +64,506,2020-02-15T06:59:33Z +64,543,2020-02-15T06:59:33Z +64,557,2020-02-15T06:59:33Z +64,569,2020-02-15T06:59:33Z +64,572,2020-02-15T06:59:33Z +64,597,2020-02-15T06:59:33Z +64,616,2020-02-15T06:59:33Z +64,646,2020-02-15T06:59:33Z +64,694,2020-02-15T06:59:33Z +64,832,2020-02-15T06:59:33Z +64,852,2020-02-15T06:59:33Z +64,860,2020-02-15T06:59:33Z +64,921,2020-02-15T06:59:33Z +64,925,2020-02-15T06:59:33Z +64,980,2020-02-15T06:59:33Z +65,39,2020-02-15T06:59:33Z +65,46,2020-02-15T06:59:33Z +65,97,2020-02-15T06:59:33Z +65,106,2020-02-15T06:59:33Z +65,117,2020-02-15T06:59:33Z +65,125,2020-02-15T06:59:33Z +65,158,2020-02-15T06:59:33Z +65,276,2020-02-15T06:59:33Z +65,305,2020-02-15T06:59:33Z +65,338,2020-02-15T06:59:33Z +65,347,2020-02-15T06:59:33Z +65,371,2020-02-15T06:59:33Z +65,398,2020-02-15T06:59:33Z +65,471,2020-02-15T06:59:33Z +65,475,2020-02-15T06:59:33Z +65,476,2020-02-15T06:59:33Z +65,491,2020-02-15T06:59:33Z +65,496,2020-02-15T06:59:33Z +65,516,2020-02-15T06:59:33Z +65,517,2020-02-15T06:59:33Z +65,541,2020-02-15T06:59:33Z +65,556,2020-02-15T06:59:33Z +65,571,2020-02-15T06:59:33Z +65,577,2020-02-15T06:59:33Z +65,615,2020-02-15T06:59:33Z +65,658,2020-02-15T06:59:33Z +65,683,2020-02-15T06:59:33Z +65,694,2020-02-15T06:59:33Z +65,714,2020-02-15T06:59:33Z +65,735,2020-02-15T06:59:33Z +65,852,2020-02-15T06:59:33Z +65,938,2020-02-15T06:59:33Z +65,951,2020-02-15T06:59:33Z +65,965,2020-02-15T06:59:33Z +66,55,2020-02-15T06:59:33Z +66,143,2020-02-15T06:59:33Z +66,207,2020-02-15T06:59:33Z +66,226,2020-02-15T06:59:33Z +66,229,2020-02-15T06:59:33Z +66,230,2020-02-15T06:59:33Z +66,283,2020-02-15T06:59:33Z +66,300,2020-02-15T06:59:33Z +66,342,2020-02-15T06:59:33Z +66,350,2020-02-15T06:59:33Z +66,361,2020-02-15T06:59:33Z +66,376,2020-02-15T06:59:33Z +66,424,2020-02-15T06:59:33Z +66,434,2020-02-15T06:59:33Z +66,553,2020-02-15T06:59:33Z +66,608,2020-02-15T06:59:33Z +66,676,2020-02-15T06:59:33Z +66,697,2020-02-15T06:59:33Z +66,706,2020-02-15T06:59:33Z +66,725,2020-02-15T06:59:33Z +66,769,2020-02-15T06:59:33Z +66,793,2020-02-15T06:59:33Z +66,829,2020-02-15T06:59:33Z +66,871,2020-02-15T06:59:33Z +66,909,2020-02-15T06:59:33Z +66,915,2020-02-15T06:59:33Z +66,928,2020-02-15T06:59:33Z +66,951,2020-02-15T06:59:33Z +66,957,2020-02-15T06:59:33Z +66,960,2020-02-15T06:59:33Z +66,999,2020-02-15T06:59:33Z +67,24,2020-02-15T06:59:33Z +67,57,2020-02-15T06:59:33Z +67,67,2020-02-15T06:59:33Z +67,144,2020-02-15T06:59:33Z +67,242,2020-02-15T06:59:33Z +67,244,2020-02-15T06:59:33Z +67,256,2020-02-15T06:59:33Z +67,408,2020-02-15T06:59:33Z +67,477,2020-02-15T06:59:33Z +67,496,2020-02-15T06:59:33Z +67,512,2020-02-15T06:59:33Z +67,576,2020-02-15T06:59:33Z +67,601,2020-02-15T06:59:33Z +67,725,2020-02-15T06:59:33Z +67,726,2020-02-15T06:59:33Z +67,731,2020-02-15T06:59:33Z +67,766,2020-02-15T06:59:33Z +67,861,2020-02-15T06:59:33Z +67,870,2020-02-15T06:59:33Z +67,915,2020-02-15T06:59:33Z +67,945,2020-02-15T06:59:33Z +67,972,2020-02-15T06:59:33Z +67,981,2020-02-15T06:59:33Z +68,9,2020-02-15T06:59:33Z +68,45,2020-02-15T06:59:33Z +68,133,2020-02-15T06:59:33Z +68,161,2020-02-15T06:59:33Z +68,205,2020-02-15T06:59:33Z +68,213,2020-02-15T06:59:33Z +68,215,2020-02-15T06:59:33Z +68,255,2020-02-15T06:59:33Z +68,296,2020-02-15T06:59:33Z +68,315,2020-02-15T06:59:33Z +68,325,2020-02-15T06:59:33Z +68,331,2020-02-15T06:59:33Z +68,347,2020-02-15T06:59:33Z +68,357,2020-02-15T06:59:33Z +68,378,2020-02-15T06:59:33Z +68,380,2020-02-15T06:59:33Z +68,386,2020-02-15T06:59:33Z +68,396,2020-02-15T06:59:33Z +68,435,2020-02-15T06:59:33Z +68,497,2020-02-15T06:59:33Z +68,607,2020-02-15T06:59:33Z +68,654,2020-02-15T06:59:33Z +68,665,2020-02-15T06:59:33Z +68,671,2020-02-15T06:59:33Z +68,706,2020-02-15T06:59:33Z +68,747,2020-02-15T06:59:33Z +68,834,2020-02-15T06:59:33Z +68,839,2020-02-15T06:59:33Z +68,840,2020-02-15T06:59:33Z +68,971,2020-02-15T06:59:33Z +69,15,2020-02-15T06:59:33Z +69,88,2020-02-15T06:59:33Z +69,111,2020-02-15T06:59:33Z +69,202,2020-02-15T06:59:33Z +69,236,2020-02-15T06:59:33Z +69,292,2020-02-15T06:59:33Z +69,300,2020-02-15T06:59:33Z +69,306,2020-02-15T06:59:33Z +69,374,2020-02-15T06:59:33Z +69,396,2020-02-15T06:59:33Z +69,452,2020-02-15T06:59:33Z +69,466,2020-02-15T06:59:33Z +69,529,2020-02-15T06:59:33Z +69,612,2020-02-15T06:59:33Z +69,720,2020-02-15T06:59:33Z +69,722,2020-02-15T06:59:33Z +69,761,2020-02-15T06:59:33Z +69,791,2020-02-15T06:59:33Z +69,864,2020-02-15T06:59:33Z +69,877,2020-02-15T06:59:33Z +69,914,2020-02-15T06:59:33Z +70,50,2020-02-15T06:59:33Z +70,53,2020-02-15T06:59:33Z +70,92,2020-02-15T06:59:33Z +70,202,2020-02-15T06:59:33Z +70,227,2020-02-15T06:59:33Z +70,249,2020-02-15T06:59:33Z +70,290,2020-02-15T06:59:33Z +70,304,2020-02-15T06:59:33Z +70,343,2020-02-15T06:59:33Z +70,414,2020-02-15T06:59:33Z +70,453,2020-02-15T06:59:33Z +70,466,2020-02-15T06:59:33Z +70,504,2020-02-15T06:59:33Z +70,584,2020-02-15T06:59:33Z +70,628,2020-02-15T06:59:33Z +70,654,2020-02-15T06:59:33Z +70,725,2020-02-15T06:59:33Z +70,823,2020-02-15T06:59:33Z +70,834,2020-02-15T06:59:33Z +70,856,2020-02-15T06:59:33Z +70,869,2020-02-15T06:59:33Z +70,953,2020-02-15T06:59:33Z +70,964,2020-02-15T06:59:33Z +71,26,2020-02-15T06:59:33Z +71,52,2020-02-15T06:59:33Z +71,233,2020-02-15T06:59:33Z +71,317,2020-02-15T06:59:33Z +71,359,2020-02-15T06:59:33Z +71,362,2020-02-15T06:59:33Z +71,385,2020-02-15T06:59:33Z +71,399,2020-02-15T06:59:33Z +71,450,2020-02-15T06:59:33Z +71,532,2020-02-15T06:59:33Z +71,560,2020-02-15T06:59:33Z +71,574,2020-02-15T06:59:33Z +71,638,2020-02-15T06:59:33Z +71,773,2020-02-15T06:59:33Z +71,833,2020-02-15T06:59:33Z +71,874,2020-02-15T06:59:33Z +71,918,2020-02-15T06:59:33Z +71,956,2020-02-15T06:59:33Z +72,34,2020-02-15T06:59:33Z +72,144,2020-02-15T06:59:33Z +72,237,2020-02-15T06:59:33Z +72,249,2020-02-15T06:59:33Z +72,286,2020-02-15T06:59:33Z +72,296,2020-02-15T06:59:33Z +72,325,2020-02-15T06:59:33Z +72,331,2020-02-15T06:59:33Z +72,405,2020-02-15T06:59:33Z +72,450,2020-02-15T06:59:33Z +72,550,2020-02-15T06:59:33Z +72,609,2020-02-15T06:59:33Z +72,623,2020-02-15T06:59:33Z +72,636,2020-02-15T06:59:33Z +72,640,2020-02-15T06:59:33Z +72,665,2020-02-15T06:59:33Z +72,718,2020-02-15T06:59:33Z +72,743,2020-02-15T06:59:33Z +72,757,2020-02-15T06:59:33Z +72,773,2020-02-15T06:59:33Z +72,854,2020-02-15T06:59:33Z +72,865,2020-02-15T06:59:33Z +72,938,2020-02-15T06:59:33Z +72,956,2020-02-15T06:59:33Z +72,964,2020-02-15T06:59:33Z +72,969,2020-02-15T06:59:33Z +73,36,2020-02-15T06:59:33Z +73,45,2020-02-15T06:59:33Z +73,51,2020-02-15T06:59:33Z +73,77,2020-02-15T06:59:33Z +73,148,2020-02-15T06:59:33Z +73,245,2020-02-15T06:59:33Z +73,275,2020-02-15T06:59:33Z +73,322,2020-02-15T06:59:33Z +73,374,2020-02-15T06:59:33Z +73,379,2020-02-15T06:59:33Z +73,467,2020-02-15T06:59:33Z +73,548,2020-02-15T06:59:33Z +73,561,2020-02-15T06:59:33Z +73,562,2020-02-15T06:59:33Z +73,565,2020-02-15T06:59:33Z +73,627,2020-02-15T06:59:33Z +73,666,2020-02-15T06:59:33Z +73,667,2020-02-15T06:59:33Z +73,707,2020-02-15T06:59:33Z +73,748,2020-02-15T06:59:33Z +73,772,2020-02-15T06:59:33Z +73,823,2020-02-15T06:59:33Z +73,936,2020-02-15T06:59:33Z +73,946,2020-02-15T06:59:33Z +73,950,2020-02-15T06:59:33Z +73,998,2020-02-15T06:59:33Z +74,28,2020-02-15T06:59:33Z +74,44,2020-02-15T06:59:33Z +74,117,2020-02-15T06:59:33Z +74,185,2020-02-15T06:59:33Z +74,192,2020-02-15T06:59:33Z +74,203,2020-02-15T06:59:33Z +74,263,2020-02-15T06:59:33Z +74,321,2020-02-15T06:59:33Z +74,415,2020-02-15T06:59:33Z +74,484,2020-02-15T06:59:33Z +74,503,2020-02-15T06:59:33Z +74,537,2020-02-15T06:59:33Z +74,543,2020-02-15T06:59:33Z +74,617,2020-02-15T06:59:33Z +74,626,2020-02-15T06:59:33Z +74,637,2020-02-15T06:59:33Z +74,663,2020-02-15T06:59:33Z +74,704,2020-02-15T06:59:33Z +74,720,2020-02-15T06:59:33Z +74,747,2020-02-15T06:59:33Z +74,780,2020-02-15T06:59:33Z +74,804,2020-02-15T06:59:33Z +74,834,2020-02-15T06:59:33Z +74,836,2020-02-15T06:59:33Z +74,848,2020-02-15T06:59:33Z +74,872,2020-02-15T06:59:33Z +74,902,2020-02-15T06:59:33Z +74,956,2020-02-15T06:59:33Z +75,12,2020-02-15T06:59:33Z +75,34,2020-02-15T06:59:33Z +75,143,2020-02-15T06:59:33Z +75,170,2020-02-15T06:59:33Z +75,222,2020-02-15T06:59:33Z +75,301,2020-02-15T06:59:33Z +75,347,2020-02-15T06:59:33Z +75,372,2020-02-15T06:59:33Z +75,436,2020-02-15T06:59:33Z +75,445,2020-02-15T06:59:33Z +75,446,2020-02-15T06:59:33Z +75,492,2020-02-15T06:59:33Z +75,498,2020-02-15T06:59:33Z +75,508,2020-02-15T06:59:33Z +75,541,2020-02-15T06:59:33Z +75,547,2020-02-15T06:59:33Z +75,579,2020-02-15T06:59:33Z +75,645,2020-02-15T06:59:33Z +75,667,2020-02-15T06:59:33Z +75,744,2020-02-15T06:59:33Z +75,764,2020-02-15T06:59:33Z +75,780,2020-02-15T06:59:33Z +75,870,2020-02-15T06:59:33Z +75,920,2020-02-15T06:59:33Z +76,60,2020-02-15T06:59:33Z +76,66,2020-02-15T06:59:33Z +76,68,2020-02-15T06:59:33Z +76,95,2020-02-15T06:59:33Z +76,122,2020-02-15T06:59:33Z +76,187,2020-02-15T06:59:33Z +76,223,2020-02-15T06:59:33Z +76,234,2020-02-15T06:59:33Z +76,251,2020-02-15T06:59:33Z +76,348,2020-02-15T06:59:33Z +76,444,2020-02-15T06:59:33Z +76,464,2020-02-15T06:59:33Z +76,474,2020-02-15T06:59:33Z +76,498,2020-02-15T06:59:33Z +76,568,2020-02-15T06:59:33Z +76,604,2020-02-15T06:59:33Z +76,606,2020-02-15T06:59:33Z +76,642,2020-02-15T06:59:33Z +76,648,2020-02-15T06:59:33Z +76,650,2020-02-15T06:59:33Z +76,709,2020-02-15T06:59:33Z +76,760,2020-02-15T06:59:33Z +76,765,2020-02-15T06:59:33Z +76,781,2020-02-15T06:59:33Z +76,850,2020-02-15T06:59:33Z +76,862,2020-02-15T06:59:33Z +76,866,2020-02-15T06:59:33Z +76,870,2020-02-15T06:59:33Z +76,912,2020-02-15T06:59:33Z +76,935,2020-02-15T06:59:33Z +76,958,2020-02-15T06:59:33Z +77,13,2020-02-15T06:59:33Z +77,22,2020-02-15T06:59:33Z +77,40,2020-02-15T06:59:33Z +77,73,2020-02-15T06:59:33Z +77,78,2020-02-15T06:59:33Z +77,153,2020-02-15T06:59:33Z +77,224,2020-02-15T06:59:33Z +77,240,2020-02-15T06:59:33Z +77,245,2020-02-15T06:59:33Z +77,261,2020-02-15T06:59:33Z +77,343,2020-02-15T06:59:33Z +77,442,2020-02-15T06:59:33Z +77,458,2020-02-15T06:59:33Z +77,538,2020-02-15T06:59:33Z +77,566,2020-02-15T06:59:33Z +77,612,2020-02-15T06:59:33Z +77,635,2020-02-15T06:59:33Z +77,694,2020-02-15T06:59:33Z +77,749,2020-02-15T06:59:33Z +77,938,2020-02-15T06:59:33Z +77,943,2020-02-15T06:59:33Z +77,963,2020-02-15T06:59:33Z +77,969,2020-02-15T06:59:33Z +77,993,2020-02-15T06:59:33Z +78,86,2020-02-15T06:59:33Z +78,239,2020-02-15T06:59:33Z +78,260,2020-02-15T06:59:33Z +78,261,2020-02-15T06:59:33Z +78,265,2020-02-15T06:59:33Z +78,301,2020-02-15T06:59:33Z +78,387,2020-02-15T06:59:33Z +78,393,2020-02-15T06:59:33Z +78,428,2020-02-15T06:59:33Z +78,457,2020-02-15T06:59:33Z +78,505,2020-02-15T06:59:33Z +78,520,2020-02-15T06:59:33Z +78,530,2020-02-15T06:59:33Z +78,549,2020-02-15T06:59:33Z +78,552,2020-02-15T06:59:33Z +78,599,2020-02-15T06:59:33Z +78,670,2020-02-15T06:59:33Z +78,674,2020-02-15T06:59:33Z +78,689,2020-02-15T06:59:33Z +78,762,2020-02-15T06:59:33Z +78,767,2020-02-15T06:59:33Z +78,811,2020-02-15T06:59:33Z +78,852,2020-02-15T06:59:33Z +78,880,2020-02-15T06:59:33Z +78,963,2020-02-15T06:59:33Z +78,968,2020-02-15T06:59:33Z +79,32,2020-02-15T06:59:33Z +79,33,2020-02-15T06:59:33Z +79,40,2020-02-15T06:59:33Z +79,141,2020-02-15T06:59:33Z +79,205,2020-02-15T06:59:33Z +79,230,2020-02-15T06:59:33Z +79,242,2020-02-15T06:59:33Z +79,262,2020-02-15T06:59:33Z +79,267,2020-02-15T06:59:33Z +79,269,2020-02-15T06:59:33Z +79,299,2020-02-15T06:59:33Z +79,367,2020-02-15T06:59:33Z +79,428,2020-02-15T06:59:33Z +79,430,2020-02-15T06:59:33Z +79,473,2020-02-15T06:59:33Z +79,607,2020-02-15T06:59:33Z +79,628,2020-02-15T06:59:33Z +79,634,2020-02-15T06:59:33Z +79,646,2020-02-15T06:59:33Z +79,727,2020-02-15T06:59:33Z +79,750,2020-02-15T06:59:33Z +79,753,2020-02-15T06:59:33Z +79,769,2020-02-15T06:59:33Z +79,776,2020-02-15T06:59:33Z +79,788,2020-02-15T06:59:33Z +79,840,2020-02-15T06:59:33Z +79,853,2020-02-15T06:59:33Z +79,916,2020-02-15T06:59:33Z +80,69,2020-02-15T06:59:33Z +80,118,2020-02-15T06:59:33Z +80,124,2020-02-15T06:59:33Z +80,175,2020-02-15T06:59:33Z +80,207,2020-02-15T06:59:33Z +80,212,2020-02-15T06:59:33Z +80,260,2020-02-15T06:59:33Z +80,262,2020-02-15T06:59:33Z +80,280,2020-02-15T06:59:33Z +80,341,2020-02-15T06:59:33Z +80,342,2020-02-15T06:59:33Z +80,343,2020-02-15T06:59:33Z +80,362,2020-02-15T06:59:33Z +80,436,2020-02-15T06:59:33Z +80,475,2020-02-15T06:59:33Z +80,553,2020-02-15T06:59:33Z +80,619,2020-02-15T06:59:33Z +80,622,2020-02-15T06:59:33Z +80,680,2020-02-15T06:59:33Z +80,687,2020-02-15T06:59:33Z +80,688,2020-02-15T06:59:33Z +80,709,2020-02-15T06:59:33Z +80,788,2020-02-15T06:59:33Z +80,807,2020-02-15T06:59:33Z +80,858,2020-02-15T06:59:33Z +80,888,2020-02-15T06:59:33Z +80,941,2020-02-15T06:59:33Z +80,979,2020-02-15T06:59:33Z +81,4,2020-02-15T06:59:33Z +81,11,2020-02-15T06:59:33Z +81,59,2020-02-15T06:59:33Z +81,89,2020-02-15T06:59:33Z +81,178,2020-02-15T06:59:33Z +81,186,2020-02-15T06:59:33Z +81,194,2020-02-15T06:59:33Z +81,215,2020-02-15T06:59:33Z +81,219,2020-02-15T06:59:33Z +81,232,2020-02-15T06:59:33Z +81,260,2020-02-15T06:59:33Z +81,267,2020-02-15T06:59:33Z +81,268,2020-02-15T06:59:33Z +81,304,2020-02-15T06:59:33Z +81,332,2020-02-15T06:59:33Z +81,389,2020-02-15T06:59:33Z +81,398,2020-02-15T06:59:33Z +81,453,2020-02-15T06:59:33Z +81,458,2020-02-15T06:59:33Z +81,465,2020-02-15T06:59:33Z +81,505,2020-02-15T06:59:33Z +81,508,2020-02-15T06:59:33Z +81,527,2020-02-15T06:59:33Z +81,545,2020-02-15T06:59:33Z +81,564,2020-02-15T06:59:33Z +81,578,2020-02-15T06:59:33Z +81,579,2020-02-15T06:59:33Z +81,613,2020-02-15T06:59:33Z +81,619,2020-02-15T06:59:33Z +81,643,2020-02-15T06:59:33Z +81,692,2020-02-15T06:59:33Z +81,710,2020-02-15T06:59:33Z +81,729,2020-02-15T06:59:33Z +81,761,2020-02-15T06:59:33Z +81,827,2020-02-15T06:59:33Z +81,910,2020-02-15T06:59:33Z +82,17,2020-02-15T06:59:33Z +82,33,2020-02-15T06:59:33Z +82,104,2020-02-15T06:59:33Z +82,143,2020-02-15T06:59:33Z +82,188,2020-02-15T06:59:33Z +82,242,2020-02-15T06:59:33Z +82,247,2020-02-15T06:59:33Z +82,290,2020-02-15T06:59:33Z +82,306,2020-02-15T06:59:33Z +82,316,2020-02-15T06:59:33Z +82,344,2020-02-15T06:59:33Z +82,453,2020-02-15T06:59:33Z +82,468,2020-02-15T06:59:33Z +82,480,2020-02-15T06:59:33Z +82,497,2020-02-15T06:59:33Z +82,503,2020-02-15T06:59:33Z +82,527,2020-02-15T06:59:33Z +82,551,2020-02-15T06:59:33Z +82,561,2020-02-15T06:59:33Z +82,750,2020-02-15T06:59:33Z +82,787,2020-02-15T06:59:33Z +82,802,2020-02-15T06:59:33Z +82,838,2020-02-15T06:59:33Z +82,839,2020-02-15T06:59:33Z +82,870,2020-02-15T06:59:33Z +82,877,2020-02-15T06:59:33Z +82,893,2020-02-15T06:59:33Z +82,911,2020-02-15T06:59:33Z +82,954,2020-02-15T06:59:33Z +82,978,2020-02-15T06:59:33Z +82,985,2020-02-15T06:59:33Z +83,49,2020-02-15T06:59:33Z +83,52,2020-02-15T06:59:33Z +83,58,2020-02-15T06:59:33Z +83,110,2020-02-15T06:59:33Z +83,120,2020-02-15T06:59:33Z +83,121,2020-02-15T06:59:33Z +83,135,2020-02-15T06:59:33Z +83,165,2020-02-15T06:59:33Z +83,217,2020-02-15T06:59:33Z +83,247,2020-02-15T06:59:33Z +83,249,2020-02-15T06:59:33Z +83,263,2020-02-15T06:59:33Z +83,268,2020-02-15T06:59:33Z +83,279,2020-02-15T06:59:33Z +83,281,2020-02-15T06:59:33Z +83,339,2020-02-15T06:59:33Z +83,340,2020-02-15T06:59:33Z +83,369,2020-02-15T06:59:33Z +83,412,2020-02-15T06:59:33Z +83,519,2020-02-15T06:59:33Z +83,529,2020-02-15T06:59:33Z +83,615,2020-02-15T06:59:33Z +83,631,2020-02-15T06:59:33Z +83,655,2020-02-15T06:59:33Z +83,672,2020-02-15T06:59:33Z +83,686,2020-02-15T06:59:33Z +83,719,2020-02-15T06:59:33Z +83,764,2020-02-15T06:59:33Z +83,777,2020-02-15T06:59:33Z +83,784,2020-02-15T06:59:33Z +83,833,2020-02-15T06:59:33Z +83,873,2020-02-15T06:59:33Z +83,932,2020-02-15T06:59:33Z +84,19,2020-02-15T06:59:33Z +84,39,2020-02-15T06:59:33Z +84,46,2020-02-15T06:59:33Z +84,175,2020-02-15T06:59:33Z +84,238,2020-02-15T06:59:33Z +84,281,2020-02-15T06:59:33Z +84,290,2020-02-15T06:59:33Z +84,312,2020-02-15T06:59:33Z +84,317,2020-02-15T06:59:33Z +84,413,2020-02-15T06:59:33Z +84,414,2020-02-15T06:59:33Z +84,460,2020-02-15T06:59:33Z +84,479,2020-02-15T06:59:33Z +84,491,2020-02-15T06:59:33Z +84,529,2020-02-15T06:59:33Z +84,540,2020-02-15T06:59:33Z +84,566,2020-02-15T06:59:33Z +84,574,2020-02-15T06:59:33Z +84,589,2020-02-15T06:59:33Z +84,616,2020-02-15T06:59:33Z +84,646,2020-02-15T06:59:33Z +84,703,2020-02-15T06:59:33Z +84,729,2020-02-15T06:59:33Z +84,764,2020-02-15T06:59:33Z +84,782,2020-02-15T06:59:33Z +84,809,2020-02-15T06:59:33Z +84,830,2020-02-15T06:59:33Z +84,843,2020-02-15T06:59:33Z +84,887,2020-02-15T06:59:33Z +84,975,2020-02-15T06:59:33Z +84,996,2020-02-15T06:59:33Z +85,2,2020-02-15T06:59:33Z +85,14,2020-02-15T06:59:33Z +85,72,2020-02-15T06:59:33Z +85,85,2020-02-15T06:59:33Z +85,92,2020-02-15T06:59:33Z +85,148,2020-02-15T06:59:33Z +85,216,2020-02-15T06:59:33Z +85,290,2020-02-15T06:59:33Z +85,296,2020-02-15T06:59:33Z +85,297,2020-02-15T06:59:33Z +85,337,2020-02-15T06:59:33Z +85,383,2020-02-15T06:59:33Z +85,421,2020-02-15T06:59:33Z +85,446,2020-02-15T06:59:33Z +85,461,2020-02-15T06:59:33Z +85,475,2020-02-15T06:59:33Z +85,478,2020-02-15T06:59:33Z +85,522,2020-02-15T06:59:33Z +85,543,2020-02-15T06:59:33Z +85,558,2020-02-15T06:59:33Z +85,591,2020-02-15T06:59:33Z +85,630,2020-02-15T06:59:33Z +85,678,2020-02-15T06:59:33Z +85,711,2020-02-15T06:59:33Z +85,761,2020-02-15T06:59:33Z +85,812,2020-02-15T06:59:33Z +85,869,2020-02-15T06:59:33Z +85,875,2020-02-15T06:59:33Z +85,895,2020-02-15T06:59:33Z +85,957,2020-02-15T06:59:33Z +85,960,2020-02-15T06:59:33Z +86,137,2020-02-15T06:59:33Z +86,163,2020-02-15T06:59:33Z +86,196,2020-02-15T06:59:33Z +86,216,2020-02-15T06:59:33Z +86,249,2020-02-15T06:59:33Z +86,303,2020-02-15T06:59:33Z +86,331,2020-02-15T06:59:33Z +86,364,2020-02-15T06:59:33Z +86,391,2020-02-15T06:59:33Z +86,432,2020-02-15T06:59:33Z +86,482,2020-02-15T06:59:33Z +86,486,2020-02-15T06:59:33Z +86,519,2020-02-15T06:59:33Z +86,520,2020-02-15T06:59:33Z +86,548,2020-02-15T06:59:33Z +86,623,2020-02-15T06:59:33Z +86,631,2020-02-15T06:59:33Z +86,636,2020-02-15T06:59:33Z +86,752,2020-02-15T06:59:33Z +86,760,2020-02-15T06:59:33Z +86,808,2020-02-15T06:59:33Z +86,857,2020-02-15T06:59:33Z +86,878,2020-02-15T06:59:33Z +86,893,2020-02-15T06:59:33Z +86,905,2020-02-15T06:59:33Z +86,923,2020-02-15T06:59:33Z +86,929,2020-02-15T06:59:33Z +87,48,2020-02-15T06:59:33Z +87,157,2020-02-15T06:59:33Z +87,161,2020-02-15T06:59:33Z +87,199,2020-02-15T06:59:33Z +87,207,2020-02-15T06:59:33Z +87,250,2020-02-15T06:59:33Z +87,253,2020-02-15T06:59:33Z +87,312,2020-02-15T06:59:33Z +87,421,2020-02-15T06:59:33Z +87,570,2020-02-15T06:59:33Z +87,599,2020-02-15T06:59:33Z +87,606,2020-02-15T06:59:33Z +87,654,2020-02-15T06:59:33Z +87,679,2020-02-15T06:59:33Z +87,706,2020-02-15T06:59:33Z +87,718,2020-02-15T06:59:33Z +87,721,2020-02-15T06:59:33Z +87,830,2020-02-15T06:59:33Z +87,870,2020-02-15T06:59:33Z +87,952,2020-02-15T06:59:33Z +87,961,2020-02-15T06:59:33Z +88,4,2020-02-15T06:59:33Z +88,76,2020-02-15T06:59:33Z +88,87,2020-02-15T06:59:33Z +88,128,2020-02-15T06:59:33Z +88,170,2020-02-15T06:59:33Z +88,193,2020-02-15T06:59:33Z +88,234,2020-02-15T06:59:33Z +88,304,2020-02-15T06:59:33Z +88,602,2020-02-15T06:59:33Z +88,620,2020-02-15T06:59:33Z +88,668,2020-02-15T06:59:33Z +88,717,2020-02-15T06:59:33Z +88,785,2020-02-15T06:59:33Z +88,819,2020-02-15T06:59:33Z +88,839,2020-02-15T06:59:33Z +88,881,2020-02-15T06:59:33Z +88,908,2020-02-15T06:59:33Z +88,929,2020-02-15T06:59:33Z +88,940,2020-02-15T06:59:33Z +88,968,2020-02-15T06:59:33Z +89,47,2020-02-15T06:59:33Z +89,103,2020-02-15T06:59:33Z +89,117,2020-02-15T06:59:33Z +89,162,2020-02-15T06:59:33Z +89,182,2020-02-15T06:59:33Z +89,187,2020-02-15T06:59:33Z +89,212,2020-02-15T06:59:33Z +89,254,2020-02-15T06:59:33Z +89,266,2020-02-15T06:59:33Z +89,306,2020-02-15T06:59:33Z +89,342,2020-02-15T06:59:33Z +89,406,2020-02-15T06:59:33Z +89,410,2020-02-15T06:59:33Z +89,446,2020-02-15T06:59:33Z +89,473,2020-02-15T06:59:33Z +89,488,2020-02-15T06:59:33Z +89,529,2020-02-15T06:59:33Z +89,542,2020-02-15T06:59:33Z +89,564,2020-02-15T06:59:33Z +89,697,2020-02-15T06:59:33Z +89,833,2020-02-15T06:59:33Z +89,864,2020-02-15T06:59:33Z +89,970,2020-02-15T06:59:33Z +89,976,2020-02-15T06:59:33Z +90,2,2020-02-15T06:59:33Z +90,11,2020-02-15T06:59:33Z +90,100,2020-02-15T06:59:33Z +90,197,2020-02-15T06:59:33Z +90,212,2020-02-15T06:59:33Z +90,262,2020-02-15T06:59:33Z +90,303,2020-02-15T06:59:33Z +90,330,2020-02-15T06:59:33Z +90,363,2020-02-15T06:59:33Z +90,374,2020-02-15T06:59:33Z +90,384,2020-02-15T06:59:33Z +90,385,2020-02-15T06:59:33Z +90,391,2020-02-15T06:59:33Z +90,406,2020-02-15T06:59:33Z +90,433,2020-02-15T06:59:33Z +90,442,2020-02-15T06:59:33Z +90,451,2020-02-15T06:59:33Z +90,520,2020-02-15T06:59:33Z +90,529,2020-02-15T06:59:33Z +90,542,2020-02-15T06:59:33Z +90,586,2020-02-15T06:59:33Z +90,633,2020-02-15T06:59:33Z +90,663,2020-02-15T06:59:33Z +90,676,2020-02-15T06:59:33Z +90,771,2020-02-15T06:59:33Z +90,817,2020-02-15T06:59:33Z +90,838,2020-02-15T06:59:33Z +90,855,2020-02-15T06:59:33Z +90,858,2020-02-15T06:59:33Z +90,868,2020-02-15T06:59:33Z +90,880,2020-02-15T06:59:33Z +90,901,2020-02-15T06:59:33Z +90,925,2020-02-15T06:59:33Z +91,13,2020-02-15T06:59:33Z +91,25,2020-02-15T06:59:33Z +91,48,2020-02-15T06:59:33Z +91,176,2020-02-15T06:59:33Z +91,181,2020-02-15T06:59:33Z +91,190,2020-02-15T06:59:33Z +91,335,2020-02-15T06:59:33Z +91,416,2020-02-15T06:59:33Z +91,447,2020-02-15T06:59:33Z +91,480,2020-02-15T06:59:33Z +91,493,2020-02-15T06:59:33Z +91,509,2020-02-15T06:59:33Z +91,511,2020-02-15T06:59:33Z +91,608,2020-02-15T06:59:33Z +91,807,2020-02-15T06:59:33Z +91,829,2020-02-15T06:59:33Z +91,849,2020-02-15T06:59:33Z +91,859,2020-02-15T06:59:33Z +91,941,2020-02-15T06:59:33Z +91,982,2020-02-15T06:59:33Z +92,90,2020-02-15T06:59:33Z +92,94,2020-02-15T06:59:33Z +92,103,2020-02-15T06:59:33Z +92,104,2020-02-15T06:59:33Z +92,123,2020-02-15T06:59:33Z +92,137,2020-02-15T06:59:33Z +92,207,2020-02-15T06:59:33Z +92,229,2020-02-15T06:59:33Z +92,338,2020-02-15T06:59:33Z +92,381,2020-02-15T06:59:33Z +92,436,2020-02-15T06:59:33Z +92,443,2020-02-15T06:59:33Z +92,453,2020-02-15T06:59:33Z +92,470,2020-02-15T06:59:33Z +92,505,2020-02-15T06:59:33Z +92,512,2020-02-15T06:59:33Z +92,543,2020-02-15T06:59:33Z +92,545,2020-02-15T06:59:33Z +92,547,2020-02-15T06:59:33Z +92,553,2020-02-15T06:59:33Z +92,564,2020-02-15T06:59:33Z +92,568,2020-02-15T06:59:33Z +92,618,2020-02-15T06:59:33Z +92,662,2020-02-15T06:59:33Z +92,686,2020-02-15T06:59:33Z +92,699,2020-02-15T06:59:33Z +92,712,2020-02-15T06:59:33Z +92,728,2020-02-15T06:59:33Z +92,802,2020-02-15T06:59:33Z +92,825,2020-02-15T06:59:33Z +92,838,2020-02-15T06:59:33Z +92,889,2020-02-15T06:59:33Z +92,929,2020-02-15T06:59:33Z +92,991,2020-02-15T06:59:33Z +93,71,2020-02-15T06:59:33Z +93,120,2020-02-15T06:59:33Z +93,124,2020-02-15T06:59:33Z +93,280,2020-02-15T06:59:33Z +93,325,2020-02-15T06:59:33Z +93,339,2020-02-15T06:59:33Z +93,427,2020-02-15T06:59:33Z +93,445,2020-02-15T06:59:33Z +93,453,2020-02-15T06:59:33Z +93,473,2020-02-15T06:59:33Z +93,573,2020-02-15T06:59:33Z +93,621,2020-02-15T06:59:33Z +93,644,2020-02-15T06:59:33Z +93,678,2020-02-15T06:59:33Z +93,680,2020-02-15T06:59:33Z +93,699,2020-02-15T06:59:33Z +93,744,2020-02-15T06:59:33Z +93,768,2020-02-15T06:59:33Z +93,777,2020-02-15T06:59:33Z +93,835,2020-02-15T06:59:33Z +93,856,2020-02-15T06:59:33Z +93,874,2020-02-15T06:59:33Z +93,909,2020-02-15T06:59:33Z +93,916,2020-02-15T06:59:33Z +93,982,2020-02-15T06:59:33Z +94,13,2020-02-15T06:59:33Z +94,60,2020-02-15T06:59:33Z +94,76,2020-02-15T06:59:33Z +94,122,2020-02-15T06:59:33Z +94,153,2020-02-15T06:59:33Z +94,193,2020-02-15T06:59:33Z +94,206,2020-02-15T06:59:33Z +94,228,2020-02-15T06:59:33Z +94,270,2020-02-15T06:59:33Z +94,275,2020-02-15T06:59:33Z +94,320,2020-02-15T06:59:33Z +94,322,2020-02-15T06:59:33Z +94,337,2020-02-15T06:59:33Z +94,354,2020-02-15T06:59:33Z +94,402,2020-02-15T06:59:33Z +94,428,2020-02-15T06:59:33Z +94,457,2020-02-15T06:59:33Z +94,473,2020-02-15T06:59:33Z +94,475,2020-02-15T06:59:33Z +94,512,2020-02-15T06:59:33Z +94,517,2020-02-15T06:59:33Z +94,521,2020-02-15T06:59:33Z +94,533,2020-02-15T06:59:33Z +94,540,2020-02-15T06:59:33Z +94,548,2020-02-15T06:59:33Z +94,551,2020-02-15T06:59:33Z +94,712,2020-02-15T06:59:33Z +94,713,2020-02-15T06:59:33Z +94,724,2020-02-15T06:59:33Z +94,775,2020-02-15T06:59:33Z +94,788,2020-02-15T06:59:33Z +94,950,2020-02-15T06:59:33Z +94,989,2020-02-15T06:59:33Z +95,22,2020-02-15T06:59:33Z +95,35,2020-02-15T06:59:33Z +95,47,2020-02-15T06:59:33Z +95,52,2020-02-15T06:59:33Z +95,65,2020-02-15T06:59:33Z +95,74,2020-02-15T06:59:33Z +95,126,2020-02-15T06:59:33Z +95,207,2020-02-15T06:59:33Z +95,245,2020-02-15T06:59:33Z +95,294,2020-02-15T06:59:33Z +95,301,2020-02-15T06:59:33Z +95,312,2020-02-15T06:59:33Z +95,329,2020-02-15T06:59:33Z +95,353,2020-02-15T06:59:33Z +95,375,2020-02-15T06:59:33Z +95,420,2020-02-15T06:59:33Z +95,424,2020-02-15T06:59:33Z +95,431,2020-02-15T06:59:33Z +95,498,2020-02-15T06:59:33Z +95,522,2020-02-15T06:59:33Z +95,546,2020-02-15T06:59:33Z +95,551,2020-02-15T06:59:33Z +95,619,2020-02-15T06:59:33Z +95,627,2020-02-15T06:59:33Z +95,690,2020-02-15T06:59:33Z +95,748,2020-02-15T06:59:33Z +95,813,2020-02-15T06:59:33Z +95,828,2020-02-15T06:59:33Z +95,855,2020-02-15T06:59:33Z +95,903,2020-02-15T06:59:33Z +95,923,2020-02-15T06:59:33Z +96,8,2020-02-15T06:59:33Z +96,36,2020-02-15T06:59:33Z +96,40,2020-02-15T06:59:33Z +96,54,2020-02-15T06:59:33Z +96,58,2020-02-15T06:59:33Z +96,66,2020-02-15T06:59:33Z +96,134,2020-02-15T06:59:33Z +96,209,2020-02-15T06:59:33Z +96,244,2020-02-15T06:59:33Z +96,320,2020-02-15T06:59:33Z +96,430,2020-02-15T06:59:33Z +96,452,2020-02-15T06:59:33Z +96,486,2020-02-15T06:59:33Z +96,572,2020-02-15T06:59:33Z +96,590,2020-02-15T06:59:33Z +96,661,2020-02-15T06:59:33Z +96,778,2020-02-15T06:59:33Z +96,832,2020-02-15T06:59:33Z +96,846,2020-02-15T06:59:33Z +96,874,2020-02-15T06:59:33Z +96,945,2020-02-15T06:59:33Z +96,968,2020-02-15T06:59:33Z +96,987,2020-02-15T06:59:33Z +97,143,2020-02-15T06:59:33Z +97,177,2020-02-15T06:59:33Z +97,188,2020-02-15T06:59:33Z +97,197,2020-02-15T06:59:33Z +97,256,2020-02-15T06:59:33Z +97,312,2020-02-15T06:59:33Z +97,342,2020-02-15T06:59:33Z +97,348,2020-02-15T06:59:33Z +97,358,2020-02-15T06:59:33Z +97,370,2020-02-15T06:59:33Z +97,437,2020-02-15T06:59:33Z +97,446,2020-02-15T06:59:33Z +97,466,2020-02-15T06:59:33Z +97,518,2020-02-15T06:59:33Z +97,553,2020-02-15T06:59:33Z +97,561,2020-02-15T06:59:33Z +97,641,2020-02-15T06:59:33Z +97,656,2020-02-15T06:59:33Z +97,728,2020-02-15T06:59:33Z +97,755,2020-02-15T06:59:33Z +97,757,2020-02-15T06:59:33Z +97,826,2020-02-15T06:59:33Z +97,862,2020-02-15T06:59:33Z +97,930,2020-02-15T06:59:33Z +97,933,2020-02-15T06:59:33Z +97,947,2020-02-15T06:59:33Z +97,951,2020-02-15T06:59:33Z +98,66,2020-02-15T06:59:33Z +98,72,2020-02-15T06:59:33Z +98,81,2020-02-15T06:59:33Z +98,87,2020-02-15T06:59:33Z +98,107,2020-02-15T06:59:33Z +98,120,2020-02-15T06:59:33Z +98,183,2020-02-15T06:59:33Z +98,194,2020-02-15T06:59:33Z +98,212,2020-02-15T06:59:33Z +98,297,2020-02-15T06:59:33Z +98,607,2020-02-15T06:59:33Z +98,634,2020-02-15T06:59:33Z +98,686,2020-02-15T06:59:33Z +98,705,2020-02-15T06:59:33Z +98,710,2020-02-15T06:59:33Z +98,721,2020-02-15T06:59:33Z +98,725,2020-02-15T06:59:33Z +98,734,2020-02-15T06:59:33Z +98,738,2020-02-15T06:59:33Z +98,765,2020-02-15T06:59:33Z +98,782,2020-02-15T06:59:33Z +98,824,2020-02-15T06:59:33Z +98,829,2020-02-15T06:59:33Z +98,912,2020-02-15T06:59:33Z +98,955,2020-02-15T06:59:33Z +98,985,2020-02-15T06:59:33Z +98,990,2020-02-15T06:59:33Z +99,7,2020-02-15T06:59:33Z +99,27,2020-02-15T06:59:33Z +99,84,2020-02-15T06:59:33Z +99,250,2020-02-15T06:59:33Z +99,322,2020-02-15T06:59:33Z +99,325,2020-02-15T06:59:33Z +99,381,2020-02-15T06:59:33Z +99,414,2020-02-15T06:59:33Z +99,475,2020-02-15T06:59:33Z +99,490,2020-02-15T06:59:33Z +99,512,2020-02-15T06:59:33Z +99,540,2020-02-15T06:59:33Z +99,572,2020-02-15T06:59:33Z +99,600,2020-02-15T06:59:33Z +99,618,2020-02-15T06:59:33Z +99,620,2020-02-15T06:59:33Z +99,622,2020-02-15T06:59:33Z +99,636,2020-02-15T06:59:33Z +99,672,2020-02-15T06:59:33Z +99,726,2020-02-15T06:59:33Z +99,741,2020-02-15T06:59:33Z +99,796,2020-02-15T06:59:33Z +99,835,2020-02-15T06:59:33Z +99,967,2020-02-15T06:59:33Z +99,978,2020-02-15T06:59:33Z +99,982,2020-02-15T06:59:33Z +100,17,2020-02-15T06:59:33Z +100,118,2020-02-15T06:59:33Z +100,250,2020-02-15T06:59:33Z +100,411,2020-02-15T06:59:33Z +100,414,2020-02-15T06:59:33Z +100,513,2020-02-15T06:59:33Z +100,563,2020-02-15T06:59:33Z +100,642,2020-02-15T06:59:33Z +100,714,2020-02-15T06:59:33Z +100,718,2020-02-15T06:59:33Z +100,759,2020-02-15T06:59:33Z +100,779,2020-02-15T06:59:33Z +100,815,2020-02-15T06:59:33Z +100,846,2020-02-15T06:59:33Z +100,850,2020-02-15T06:59:33Z +100,872,2020-02-15T06:59:33Z +100,877,2020-02-15T06:59:33Z +100,909,2020-02-15T06:59:33Z +100,919,2020-02-15T06:59:33Z +100,944,2020-02-15T06:59:33Z +100,967,2020-02-15T06:59:33Z +100,979,2020-02-15T06:59:33Z +100,991,2020-02-15T06:59:33Z +100,992,2020-02-15T06:59:33Z +101,60,2020-02-15T06:59:33Z +101,66,2020-02-15T06:59:33Z +101,85,2020-02-15T06:59:33Z +101,146,2020-02-15T06:59:33Z +101,189,2020-02-15T06:59:33Z +101,250,2020-02-15T06:59:33Z +101,255,2020-02-15T06:59:33Z +101,263,2020-02-15T06:59:33Z +101,275,2020-02-15T06:59:33Z +101,289,2020-02-15T06:59:33Z +101,491,2020-02-15T06:59:33Z +101,494,2020-02-15T06:59:33Z +101,511,2020-02-15T06:59:33Z +101,568,2020-02-15T06:59:33Z +101,608,2020-02-15T06:59:33Z +101,617,2020-02-15T06:59:33Z +101,655,2020-02-15T06:59:33Z +101,662,2020-02-15T06:59:33Z +101,700,2020-02-15T06:59:33Z +101,702,2020-02-15T06:59:33Z +101,758,2020-02-15T06:59:33Z +101,774,2020-02-15T06:59:33Z +101,787,2020-02-15T06:59:33Z +101,828,2020-02-15T06:59:33Z +101,841,2020-02-15T06:59:33Z +101,928,2020-02-15T06:59:33Z +101,932,2020-02-15T06:59:33Z +101,936,2020-02-15T06:59:33Z +101,941,2020-02-15T06:59:33Z +101,978,2020-02-15T06:59:33Z +101,980,2020-02-15T06:59:33Z +101,984,2020-02-15T06:59:33Z +101,988,2020-02-15T06:59:33Z +102,20,2020-02-15T06:59:33Z +102,34,2020-02-15T06:59:33Z +102,53,2020-02-15T06:59:33Z +102,123,2020-02-15T06:59:33Z +102,124,2020-02-15T06:59:33Z +102,194,2020-02-15T06:59:33Z +102,200,2020-02-15T06:59:33Z +102,205,2020-02-15T06:59:33Z +102,268,2020-02-15T06:59:34Z +102,326,2020-02-15T06:59:34Z +102,329,2020-02-15T06:59:34Z +102,334,2020-02-15T06:59:34Z +102,351,2020-02-15T06:59:34Z +102,418,2020-02-15T06:59:34Z +102,431,2020-02-15T06:59:34Z +102,446,2020-02-15T06:59:34Z +102,485,2020-02-15T06:59:34Z +102,508,2020-02-15T06:59:34Z +102,517,2020-02-15T06:59:34Z +102,521,2020-02-15T06:59:34Z +102,526,2020-02-15T06:59:34Z +102,529,2020-02-15T06:59:34Z +102,544,2020-02-15T06:59:34Z +102,600,2020-02-15T06:59:34Z +102,605,2020-02-15T06:59:34Z +102,606,2020-02-15T06:59:34Z +102,624,2020-02-15T06:59:34Z +102,631,2020-02-15T06:59:34Z +102,712,2020-02-15T06:59:34Z +102,728,2020-02-15T06:59:34Z +102,744,2020-02-15T06:59:34Z +102,796,2020-02-15T06:59:34Z +102,802,2020-02-15T06:59:34Z +102,810,2020-02-15T06:59:34Z +102,828,2020-02-15T06:59:34Z +102,837,2020-02-15T06:59:34Z +102,845,2020-02-15T06:59:34Z +102,852,2020-02-15T06:59:34Z +102,958,2020-02-15T06:59:34Z +102,979,2020-02-15T06:59:34Z +102,980,2020-02-15T06:59:34Z +103,5,2020-02-15T06:59:34Z +103,118,2020-02-15T06:59:34Z +103,130,2020-02-15T06:59:34Z +103,197,2020-02-15T06:59:34Z +103,199,2020-02-15T06:59:34Z +103,206,2020-02-15T06:59:34Z +103,215,2020-02-15T06:59:34Z +103,221,2020-02-15T06:59:34Z +103,271,2020-02-15T06:59:34Z +103,285,2020-02-15T06:59:34Z +103,315,2020-02-15T06:59:34Z +103,318,2020-02-15T06:59:34Z +103,333,2020-02-15T06:59:34Z +103,347,2020-02-15T06:59:34Z +103,356,2020-02-15T06:59:34Z +103,360,2020-02-15T06:59:34Z +103,378,2020-02-15T06:59:34Z +103,437,2020-02-15T06:59:34Z +103,585,2020-02-15T06:59:34Z +103,609,2020-02-15T06:59:34Z +103,639,2020-02-15T06:59:34Z +103,643,2020-02-15T06:59:34Z +103,692,2020-02-15T06:59:34Z +103,735,2020-02-15T06:59:34Z +103,822,2020-02-15T06:59:34Z +103,895,2020-02-15T06:59:34Z +103,903,2020-02-15T06:59:34Z +103,912,2020-02-15T06:59:34Z +103,942,2020-02-15T06:59:34Z +103,956,2020-02-15T06:59:34Z +104,19,2020-02-15T06:59:34Z +104,39,2020-02-15T06:59:34Z +104,40,2020-02-15T06:59:34Z +104,59,2020-02-15T06:59:34Z +104,70,2020-02-15T06:59:34Z +104,136,2020-02-15T06:59:34Z +104,156,2020-02-15T06:59:34Z +104,184,2020-02-15T06:59:34Z +104,198,2020-02-15T06:59:34Z +104,233,2020-02-15T06:59:34Z +104,259,2020-02-15T06:59:34Z +104,287,2020-02-15T06:59:34Z +104,309,2020-02-15T06:59:34Z +104,313,2020-02-15T06:59:34Z +104,394,2020-02-15T06:59:34Z +104,401,2020-02-15T06:59:34Z +104,463,2020-02-15T06:59:34Z +104,506,2020-02-15T06:59:34Z +104,516,2020-02-15T06:59:34Z +104,583,2020-02-15T06:59:34Z +104,600,2020-02-15T06:59:34Z +104,607,2020-02-15T06:59:34Z +104,657,2020-02-15T06:59:34Z +104,677,2020-02-15T06:59:34Z +104,739,2020-02-15T06:59:34Z +104,892,2020-02-15T06:59:34Z +104,904,2020-02-15T06:59:34Z +104,926,2020-02-15T06:59:34Z +104,945,2020-02-15T06:59:34Z +104,984,2020-02-15T06:59:34Z +104,999,2020-02-15T06:59:34Z +105,12,2020-02-15T06:59:34Z +105,15,2020-02-15T06:59:34Z +105,21,2020-02-15T06:59:34Z +105,29,2020-02-15T06:59:34Z +105,42,2020-02-15T06:59:34Z +105,116,2020-02-15T06:59:34Z +105,158,2020-02-15T06:59:34Z +105,239,2020-02-15T06:59:34Z +105,280,2020-02-15T06:59:34Z +105,283,2020-02-15T06:59:34Z +105,315,2020-02-15T06:59:34Z +105,333,2020-02-15T06:59:34Z +105,372,2020-02-15T06:59:34Z +105,377,2020-02-15T06:59:34Z +105,530,2020-02-15T06:59:34Z +105,558,2020-02-15T06:59:34Z +105,561,2020-02-15T06:59:34Z +105,606,2020-02-15T06:59:34Z +105,649,2020-02-15T06:59:34Z +105,686,2020-02-15T06:59:34Z +105,750,2020-02-15T06:59:34Z +105,795,2020-02-15T06:59:34Z +105,831,2020-02-15T06:59:34Z +105,835,2020-02-15T06:59:34Z +105,858,2020-02-15T06:59:34Z +105,864,2020-02-15T06:59:34Z +105,893,2020-02-15T06:59:34Z +105,906,2020-02-15T06:59:34Z +105,910,2020-02-15T06:59:34Z +105,915,2020-02-15T06:59:34Z +105,954,2020-02-15T06:59:34Z +105,990,2020-02-15T06:59:34Z +105,993,2020-02-15T06:59:34Z +105,994,2020-02-15T06:59:34Z +106,44,2020-02-15T06:59:34Z +106,83,2020-02-15T06:59:34Z +106,108,2020-02-15T06:59:34Z +106,126,2020-02-15T06:59:34Z +106,136,2020-02-15T06:59:34Z +106,166,2020-02-15T06:59:34Z +106,189,2020-02-15T06:59:34Z +106,194,2020-02-15T06:59:34Z +106,204,2020-02-15T06:59:34Z +106,229,2020-02-15T06:59:34Z +106,241,2020-02-15T06:59:34Z +106,345,2020-02-15T06:59:34Z +106,365,2020-02-15T06:59:34Z +106,399,2020-02-15T06:59:34Z +106,439,2020-02-15T06:59:34Z +106,457,2020-02-15T06:59:34Z +106,469,2020-02-15T06:59:34Z +106,500,2020-02-15T06:59:34Z +106,505,2020-02-15T06:59:34Z +106,559,2020-02-15T06:59:34Z +106,566,2020-02-15T06:59:34Z +106,585,2020-02-15T06:59:34Z +106,639,2020-02-15T06:59:34Z +106,654,2020-02-15T06:59:34Z +106,659,2020-02-15T06:59:34Z +106,675,2020-02-15T06:59:34Z +106,687,2020-02-15T06:59:34Z +106,752,2020-02-15T06:59:34Z +106,763,2020-02-15T06:59:34Z +106,780,2020-02-15T06:59:34Z +106,858,2020-02-15T06:59:34Z +106,866,2020-02-15T06:59:34Z +106,881,2020-02-15T06:59:34Z +106,894,2020-02-15T06:59:34Z +106,934,2020-02-15T06:59:34Z +107,62,2020-02-15T06:59:34Z +107,112,2020-02-15T06:59:34Z +107,133,2020-02-15T06:59:34Z +107,136,2020-02-15T06:59:34Z +107,138,2020-02-15T06:59:34Z +107,162,2020-02-15T06:59:34Z +107,165,2020-02-15T06:59:34Z +107,172,2020-02-15T06:59:34Z +107,209,2020-02-15T06:59:34Z +107,220,2020-02-15T06:59:34Z +107,239,2020-02-15T06:59:34Z +107,277,2020-02-15T06:59:34Z +107,292,2020-02-15T06:59:34Z +107,338,2020-02-15T06:59:34Z +107,348,2020-02-15T06:59:34Z +107,369,2020-02-15T06:59:34Z +107,388,2020-02-15T06:59:34Z +107,392,2020-02-15T06:59:34Z +107,409,2020-02-15T06:59:34Z +107,430,2020-02-15T06:59:34Z +107,445,2020-02-15T06:59:34Z +107,454,2020-02-15T06:59:34Z +107,458,2020-02-15T06:59:34Z +107,467,2020-02-15T06:59:34Z +107,520,2020-02-15T06:59:34Z +107,534,2020-02-15T06:59:34Z +107,548,2020-02-15T06:59:34Z +107,571,2020-02-15T06:59:34Z +107,574,2020-02-15T06:59:34Z +107,603,2020-02-15T06:59:34Z +107,606,2020-02-15T06:59:34Z +107,637,2020-02-15T06:59:34Z +107,774,2020-02-15T06:59:34Z +107,781,2020-02-15T06:59:34Z +107,796,2020-02-15T06:59:34Z +107,831,2020-02-15T06:59:34Z +107,849,2020-02-15T06:59:34Z +107,859,2020-02-15T06:59:34Z +107,879,2020-02-15T06:59:34Z +107,905,2020-02-15T06:59:34Z +107,973,2020-02-15T06:59:34Z +107,977,2020-02-15T06:59:34Z +108,1,2020-02-15T06:59:34Z +108,6,2020-02-15T06:59:34Z +108,9,2020-02-15T06:59:34Z +108,137,2020-02-15T06:59:34Z +108,208,2020-02-15T06:59:34Z +108,219,2020-02-15T06:59:34Z +108,242,2020-02-15T06:59:34Z +108,278,2020-02-15T06:59:34Z +108,302,2020-02-15T06:59:34Z +108,350,2020-02-15T06:59:34Z +108,378,2020-02-15T06:59:34Z +108,379,2020-02-15T06:59:34Z +108,495,2020-02-15T06:59:34Z +108,507,2020-02-15T06:59:34Z +108,517,2020-02-15T06:59:34Z +108,561,2020-02-15T06:59:34Z +108,567,2020-02-15T06:59:34Z +108,648,2020-02-15T06:59:34Z +108,652,2020-02-15T06:59:34Z +108,655,2020-02-15T06:59:34Z +108,673,2020-02-15T06:59:34Z +108,693,2020-02-15T06:59:34Z +108,696,2020-02-15T06:59:34Z +108,702,2020-02-15T06:59:34Z +108,721,2020-02-15T06:59:34Z +108,733,2020-02-15T06:59:34Z +108,741,2020-02-15T06:59:34Z +108,744,2020-02-15T06:59:34Z +108,887,2020-02-15T06:59:34Z +108,892,2020-02-15T06:59:34Z +108,894,2020-02-15T06:59:34Z +108,920,2020-02-15T06:59:34Z +108,958,2020-02-15T06:59:34Z +108,966,2020-02-15T06:59:34Z +109,12,2020-02-15T06:59:34Z +109,48,2020-02-15T06:59:34Z +109,77,2020-02-15T06:59:34Z +109,157,2020-02-15T06:59:34Z +109,174,2020-02-15T06:59:34Z +109,190,2020-02-15T06:59:34Z +109,243,2020-02-15T06:59:34Z +109,281,2020-02-15T06:59:34Z +109,393,2020-02-15T06:59:34Z +109,463,2020-02-15T06:59:34Z +109,622,2020-02-15T06:59:34Z +109,657,2020-02-15T06:59:34Z +109,694,2020-02-15T06:59:34Z +109,700,2020-02-15T06:59:34Z +109,732,2020-02-15T06:59:34Z +109,753,2020-02-15T06:59:34Z +109,785,2020-02-15T06:59:34Z +109,786,2020-02-15T06:59:34Z +109,863,2020-02-15T06:59:34Z +109,885,2020-02-15T06:59:34Z +109,955,2020-02-15T06:59:34Z +109,967,2020-02-15T06:59:34Z +110,8,2020-02-15T06:59:34Z +110,27,2020-02-15T06:59:34Z +110,62,2020-02-15T06:59:34Z +110,120,2020-02-15T06:59:34Z +110,126,2020-02-15T06:59:34Z +110,156,2020-02-15T06:59:34Z +110,292,2020-02-15T06:59:34Z +110,343,2020-02-15T06:59:34Z +110,360,2020-02-15T06:59:34Z +110,369,2020-02-15T06:59:34Z +110,435,2020-02-15T06:59:34Z +110,513,2020-02-15T06:59:34Z +110,525,2020-02-15T06:59:34Z +110,539,2020-02-15T06:59:34Z +110,545,2020-02-15T06:59:34Z +110,625,2020-02-15T06:59:34Z +110,650,2020-02-15T06:59:34Z +110,801,2020-02-15T06:59:34Z +110,912,2020-02-15T06:59:34Z +110,961,2020-02-15T06:59:34Z +110,987,2020-02-15T06:59:34Z +111,61,2020-02-15T06:59:34Z +111,78,2020-02-15T06:59:34Z +111,98,2020-02-15T06:59:34Z +111,162,2020-02-15T06:59:34Z +111,179,2020-02-15T06:59:34Z +111,194,2020-02-15T06:59:34Z +111,325,2020-02-15T06:59:34Z +111,359,2020-02-15T06:59:34Z +111,382,2020-02-15T06:59:34Z +111,403,2020-02-15T06:59:34Z +111,407,2020-02-15T06:59:34Z +111,414,2020-02-15T06:59:34Z +111,474,2020-02-15T06:59:34Z +111,489,2020-02-15T06:59:34Z +111,508,2020-02-15T06:59:34Z +111,555,2020-02-15T06:59:34Z +111,603,2020-02-15T06:59:34Z +111,608,2020-02-15T06:59:34Z +111,643,2020-02-15T06:59:34Z +111,669,2020-02-15T06:59:34Z +111,679,2020-02-15T06:59:34Z +111,680,2020-02-15T06:59:34Z +111,699,2020-02-15T06:59:34Z +111,731,2020-02-15T06:59:34Z +111,732,2020-02-15T06:59:34Z +111,737,2020-02-15T06:59:34Z +111,744,2020-02-15T06:59:34Z +111,777,2020-02-15T06:59:34Z +111,847,2020-02-15T06:59:34Z +111,894,2020-02-15T06:59:34Z +111,919,2020-02-15T06:59:34Z +111,962,2020-02-15T06:59:34Z +111,973,2020-02-15T06:59:34Z +112,34,2020-02-15T06:59:34Z +112,37,2020-02-15T06:59:34Z +112,151,2020-02-15T06:59:34Z +112,173,2020-02-15T06:59:34Z +112,188,2020-02-15T06:59:34Z +112,231,2020-02-15T06:59:34Z +112,312,2020-02-15T06:59:34Z +112,322,2020-02-15T06:59:34Z +112,443,2020-02-15T06:59:34Z +112,450,2020-02-15T06:59:34Z +112,565,2020-02-15T06:59:34Z +112,603,2020-02-15T06:59:34Z +112,606,2020-02-15T06:59:34Z +112,654,2020-02-15T06:59:34Z +112,666,2020-02-15T06:59:34Z +112,700,2020-02-15T06:59:34Z +112,728,2020-02-15T06:59:34Z +112,772,2020-02-15T06:59:34Z +112,796,2020-02-15T06:59:34Z +112,817,2020-02-15T06:59:34Z +112,829,2020-02-15T06:59:34Z +112,856,2020-02-15T06:59:34Z +112,865,2020-02-15T06:59:34Z +112,869,2020-02-15T06:59:34Z +112,988,2020-02-15T06:59:34Z +113,35,2020-02-15T06:59:34Z +113,84,2020-02-15T06:59:34Z +113,116,2020-02-15T06:59:34Z +113,181,2020-02-15T06:59:34Z +113,218,2020-02-15T06:59:34Z +113,249,2020-02-15T06:59:34Z +113,258,2020-02-15T06:59:34Z +113,292,2020-02-15T06:59:34Z +113,322,2020-02-15T06:59:34Z +113,353,2020-02-15T06:59:34Z +113,403,2020-02-15T06:59:34Z +113,525,2020-02-15T06:59:34Z +113,642,2020-02-15T06:59:34Z +113,656,2020-02-15T06:59:34Z +113,674,2020-02-15T06:59:34Z +113,680,2020-02-15T06:59:34Z +113,700,2020-02-15T06:59:34Z +113,719,2020-02-15T06:59:34Z +113,723,2020-02-15T06:59:34Z +113,726,2020-02-15T06:59:34Z +113,732,2020-02-15T06:59:34Z +113,748,2020-02-15T06:59:34Z +113,838,2020-02-15T06:59:34Z +113,890,2020-02-15T06:59:34Z +113,921,2020-02-15T06:59:34Z +113,969,2020-02-15T06:59:34Z +113,981,2020-02-15T06:59:34Z +114,13,2020-02-15T06:59:34Z +114,68,2020-02-15T06:59:34Z +114,90,2020-02-15T06:59:34Z +114,162,2020-02-15T06:59:34Z +114,188,2020-02-15T06:59:34Z +114,194,2020-02-15T06:59:34Z +114,210,2020-02-15T06:59:34Z +114,237,2020-02-15T06:59:34Z +114,254,2020-02-15T06:59:34Z +114,305,2020-02-15T06:59:34Z +114,339,2020-02-15T06:59:34Z +114,420,2020-02-15T06:59:34Z +114,425,2020-02-15T06:59:34Z +114,452,2020-02-15T06:59:34Z +114,538,2020-02-15T06:59:34Z +114,619,2020-02-15T06:59:34Z +114,757,2020-02-15T06:59:34Z +114,807,2020-02-15T06:59:34Z +114,827,2020-02-15T06:59:34Z +114,841,2020-02-15T06:59:34Z +114,861,2020-02-15T06:59:34Z +114,866,2020-02-15T06:59:34Z +114,913,2020-02-15T06:59:34Z +114,961,2020-02-15T06:59:34Z +114,993,2020-02-15T06:59:34Z +115,49,2020-02-15T06:59:34Z +115,52,2020-02-15T06:59:34Z +115,245,2020-02-15T06:59:34Z +115,246,2020-02-15T06:59:34Z +115,277,2020-02-15T06:59:34Z +115,302,2020-02-15T06:59:34Z +115,379,2020-02-15T06:59:34Z +115,383,2020-02-15T06:59:34Z +115,391,2020-02-15T06:59:34Z +115,428,2020-02-15T06:59:34Z +115,506,2020-02-15T06:59:34Z +115,531,2020-02-15T06:59:34Z +115,607,2020-02-15T06:59:34Z +115,615,2020-02-15T06:59:34Z +115,661,2020-02-15T06:59:34Z +115,671,2020-02-15T06:59:34Z +115,686,2020-02-15T06:59:34Z +115,703,2020-02-15T06:59:34Z +115,714,2020-02-15T06:59:34Z +115,740,2020-02-15T06:59:34Z +115,754,2020-02-15T06:59:34Z +115,846,2020-02-15T06:59:34Z +115,887,2020-02-15T06:59:34Z +115,952,2020-02-15T06:59:34Z +115,955,2020-02-15T06:59:34Z +115,966,2020-02-15T06:59:34Z +115,985,2020-02-15T06:59:34Z +115,994,2020-02-15T06:59:34Z +116,36,2020-02-15T06:59:34Z +116,48,2020-02-15T06:59:34Z +116,88,2020-02-15T06:59:34Z +116,90,2020-02-15T06:59:34Z +116,105,2020-02-15T06:59:34Z +116,128,2020-02-15T06:59:34Z +116,336,2020-02-15T06:59:34Z +116,338,2020-02-15T06:59:34Z +116,384,2020-02-15T06:59:34Z +116,412,2020-02-15T06:59:34Z +116,420,2020-02-15T06:59:34Z +116,451,2020-02-15T06:59:34Z +116,481,2020-02-15T06:59:34Z +116,492,2020-02-15T06:59:34Z +116,584,2020-02-15T06:59:34Z +116,606,2020-02-15T06:59:34Z +116,622,2020-02-15T06:59:34Z +116,647,2020-02-15T06:59:34Z +116,653,2020-02-15T06:59:34Z +116,742,2020-02-15T06:59:34Z +116,784,2020-02-15T06:59:34Z +116,844,2020-02-15T06:59:34Z +116,939,2020-02-15T06:59:34Z +116,956,2020-02-15T06:59:34Z +117,10,2020-02-15T06:59:34Z +117,15,2020-02-15T06:59:34Z +117,42,2020-02-15T06:59:34Z +117,167,2020-02-15T06:59:34Z +117,178,2020-02-15T06:59:34Z +117,190,2020-02-15T06:59:34Z +117,197,2020-02-15T06:59:34Z +117,224,2020-02-15T06:59:34Z +117,246,2020-02-15T06:59:34Z +117,273,2020-02-15T06:59:34Z +117,298,2020-02-15T06:59:34Z +117,316,2020-02-15T06:59:34Z +117,337,2020-02-15T06:59:34Z +117,395,2020-02-15T06:59:34Z +117,423,2020-02-15T06:59:34Z +117,432,2020-02-15T06:59:34Z +117,459,2020-02-15T06:59:34Z +117,468,2020-02-15T06:59:34Z +117,550,2020-02-15T06:59:34Z +117,578,2020-02-15T06:59:34Z +117,707,2020-02-15T06:59:34Z +117,710,2020-02-15T06:59:34Z +117,738,2020-02-15T06:59:34Z +117,739,2020-02-15T06:59:34Z +117,778,2020-02-15T06:59:34Z +117,783,2020-02-15T06:59:34Z +117,785,2020-02-15T06:59:34Z +117,797,2020-02-15T06:59:34Z +117,812,2020-02-15T06:59:34Z +117,831,2020-02-15T06:59:34Z +117,864,2020-02-15T06:59:34Z +117,887,2020-02-15T06:59:34Z +117,926,2020-02-15T06:59:34Z +118,35,2020-02-15T06:59:34Z +118,39,2020-02-15T06:59:34Z +118,41,2020-02-15T06:59:34Z +118,49,2020-02-15T06:59:34Z +118,55,2020-02-15T06:59:34Z +118,136,2020-02-15T06:59:34Z +118,141,2020-02-15T06:59:34Z +118,151,2020-02-15T06:59:34Z +118,311,2020-02-15T06:59:34Z +118,384,2020-02-15T06:59:34Z +118,399,2020-02-15T06:59:34Z +118,499,2020-02-15T06:59:34Z +118,517,2020-02-15T06:59:34Z +118,553,2020-02-15T06:59:34Z +118,558,2020-02-15T06:59:34Z +118,572,2020-02-15T06:59:34Z +118,641,2020-02-15T06:59:34Z +118,656,2020-02-15T06:59:34Z +118,695,2020-02-15T06:59:34Z +118,735,2020-02-15T06:59:34Z +118,788,2020-02-15T06:59:34Z +118,852,2020-02-15T06:59:34Z +118,938,2020-02-15T06:59:34Z +118,957,2020-02-15T06:59:34Z +118,969,2020-02-15T06:59:34Z +119,21,2020-02-15T06:59:34Z +119,49,2020-02-15T06:59:34Z +119,64,2020-02-15T06:59:34Z +119,87,2020-02-15T06:59:34Z +119,143,2020-02-15T06:59:34Z +119,171,2020-02-15T06:59:34Z +119,172,2020-02-15T06:59:34Z +119,173,2020-02-15T06:59:34Z +119,381,2020-02-15T06:59:34Z +119,394,2020-02-15T06:59:34Z +119,412,2020-02-15T06:59:34Z +119,418,2020-02-15T06:59:34Z +119,454,2020-02-15T06:59:34Z +119,509,2020-02-15T06:59:34Z +119,521,2020-02-15T06:59:34Z +119,567,2020-02-15T06:59:34Z +119,570,2020-02-15T06:59:34Z +119,592,2020-02-15T06:59:34Z +119,614,2020-02-15T06:59:34Z +119,636,2020-02-15T06:59:34Z +119,649,2020-02-15T06:59:34Z +119,693,2020-02-15T06:59:34Z +119,738,2020-02-15T06:59:34Z +119,751,2020-02-15T06:59:34Z +119,782,2020-02-15T06:59:34Z +119,786,2020-02-15T06:59:34Z +119,788,2020-02-15T06:59:34Z +119,802,2020-02-15T06:59:34Z +119,858,2020-02-15T06:59:34Z +119,868,2020-02-15T06:59:34Z +119,900,2020-02-15T06:59:34Z +119,939,2020-02-15T06:59:34Z +120,57,2020-02-15T06:59:34Z +120,63,2020-02-15T06:59:34Z +120,144,2020-02-15T06:59:34Z +120,149,2020-02-15T06:59:34Z +120,208,2020-02-15T06:59:34Z +120,231,2020-02-15T06:59:34Z +120,238,2020-02-15T06:59:34Z +120,255,2020-02-15T06:59:34Z +120,414,2020-02-15T06:59:34Z +120,424,2020-02-15T06:59:34Z +120,489,2020-02-15T06:59:34Z +120,513,2020-02-15T06:59:34Z +120,590,2020-02-15T06:59:34Z +120,641,2020-02-15T06:59:34Z +120,642,2020-02-15T06:59:34Z +120,659,2020-02-15T06:59:34Z +120,682,2020-02-15T06:59:34Z +120,691,2020-02-15T06:59:34Z +120,715,2020-02-15T06:59:34Z +120,717,2020-02-15T06:59:34Z +120,722,2020-02-15T06:59:34Z +120,746,2020-02-15T06:59:34Z +120,830,2020-02-15T06:59:34Z +120,894,2020-02-15T06:59:34Z +120,898,2020-02-15T06:59:34Z +120,911,2020-02-15T06:59:34Z +120,994,2020-02-15T06:59:34Z +121,141,2020-02-15T06:59:34Z +121,154,2020-02-15T06:59:34Z +121,161,2020-02-15T06:59:34Z +121,170,2020-02-15T06:59:34Z +121,186,2020-02-15T06:59:34Z +121,198,2020-02-15T06:59:34Z +121,220,2020-02-15T06:59:34Z +121,222,2020-02-15T06:59:34Z +121,284,2020-02-15T06:59:34Z +121,297,2020-02-15T06:59:34Z +121,338,2020-02-15T06:59:34Z +121,353,2020-02-15T06:59:34Z +121,449,2020-02-15T06:59:34Z +121,479,2020-02-15T06:59:34Z +121,517,2020-02-15T06:59:34Z +121,633,2020-02-15T06:59:34Z +121,654,2020-02-15T06:59:34Z +121,658,2020-02-15T06:59:34Z +121,666,2020-02-15T06:59:34Z +121,771,2020-02-15T06:59:34Z +121,780,2020-02-15T06:59:34Z +121,847,2020-02-15T06:59:34Z +121,884,2020-02-15T06:59:34Z +121,885,2020-02-15T06:59:34Z +121,966,2020-02-15T06:59:34Z +122,22,2020-02-15T06:59:34Z +122,29,2020-02-15T06:59:34Z +122,76,2020-02-15T06:59:34Z +122,83,2020-02-15T06:59:34Z +122,157,2020-02-15T06:59:34Z +122,158,2020-02-15T06:59:34Z +122,166,2020-02-15T06:59:34Z +122,227,2020-02-15T06:59:34Z +122,238,2020-02-15T06:59:34Z +122,300,2020-02-15T06:59:34Z +122,307,2020-02-15T06:59:34Z +122,363,2020-02-15T06:59:34Z +122,470,2020-02-15T06:59:34Z +122,489,2020-02-15T06:59:34Z +122,491,2020-02-15T06:59:34Z +122,542,2020-02-15T06:59:34Z +122,620,2020-02-15T06:59:34Z +122,649,2020-02-15T06:59:34Z +122,654,2020-02-15T06:59:34Z +122,673,2020-02-15T06:59:34Z +122,718,2020-02-15T06:59:34Z +122,795,2020-02-15T06:59:34Z +122,957,2020-02-15T06:59:34Z +122,961,2020-02-15T06:59:34Z +122,998,2020-02-15T06:59:34Z +123,3,2020-02-15T06:59:34Z +123,43,2020-02-15T06:59:34Z +123,67,2020-02-15T06:59:34Z +123,105,2020-02-15T06:59:34Z +123,148,2020-02-15T06:59:34Z +123,151,2020-02-15T06:59:34Z +123,185,2020-02-15T06:59:34Z +123,223,2020-02-15T06:59:34Z +123,234,2020-02-15T06:59:34Z +123,245,2020-02-15T06:59:34Z +123,246,2020-02-15T06:59:34Z +123,266,2020-02-15T06:59:34Z +123,286,2020-02-15T06:59:34Z +123,429,2020-02-15T06:59:34Z +123,442,2020-02-15T06:59:34Z +123,446,2020-02-15T06:59:34Z +123,479,2020-02-15T06:59:34Z +123,480,2020-02-15T06:59:34Z +123,494,2020-02-15T06:59:34Z +123,503,2020-02-15T06:59:34Z +123,530,2020-02-15T06:59:34Z +123,576,2020-02-15T06:59:34Z +123,577,2020-02-15T06:59:34Z +123,589,2020-02-15T06:59:34Z +123,593,2020-02-15T06:59:34Z +123,725,2020-02-15T06:59:34Z +123,730,2020-02-15T06:59:34Z +123,786,2020-02-15T06:59:34Z +123,860,2020-02-15T06:59:34Z +123,892,2020-02-15T06:59:34Z +123,926,2020-02-15T06:59:34Z +123,988,2020-02-15T06:59:34Z +124,22,2020-02-15T06:59:34Z +124,64,2020-02-15T06:59:34Z +124,106,2020-02-15T06:59:34Z +124,113,2020-02-15T06:59:34Z +124,190,2020-02-15T06:59:34Z +124,246,2020-02-15T06:59:34Z +124,260,2020-02-15T06:59:34Z +124,263,2020-02-15T06:59:34Z +124,289,2020-02-15T06:59:34Z +124,306,2020-02-15T06:59:34Z +124,312,2020-02-15T06:59:34Z +124,322,2020-02-15T06:59:34Z +124,343,2020-02-15T06:59:34Z +124,449,2020-02-15T06:59:34Z +124,468,2020-02-15T06:59:34Z +124,539,2020-02-15T06:59:34Z +124,601,2020-02-15T06:59:34Z +124,726,2020-02-15T06:59:34Z +124,742,2020-02-15T06:59:34Z +124,775,2020-02-15T06:59:34Z +124,785,2020-02-15T06:59:34Z +124,814,2020-02-15T06:59:34Z +124,858,2020-02-15T06:59:34Z +124,882,2020-02-15T06:59:34Z +124,987,2020-02-15T06:59:34Z +124,997,2020-02-15T06:59:34Z +125,62,2020-02-15T06:59:34Z +125,98,2020-02-15T06:59:34Z +125,100,2020-02-15T06:59:34Z +125,114,2020-02-15T06:59:34Z +125,175,2020-02-15T06:59:34Z +125,188,2020-02-15T06:59:34Z +125,204,2020-02-15T06:59:34Z +125,238,2020-02-15T06:59:34Z +125,250,2020-02-15T06:59:34Z +125,324,2020-02-15T06:59:34Z +125,338,2020-02-15T06:59:34Z +125,361,2020-02-15T06:59:34Z +125,367,2020-02-15T06:59:34Z +125,395,2020-02-15T06:59:34Z +125,414,2020-02-15T06:59:34Z +125,428,2020-02-15T06:59:34Z +125,429,2020-02-15T06:59:34Z +125,450,2020-02-15T06:59:34Z +125,497,2020-02-15T06:59:34Z +125,557,2020-02-15T06:59:34Z +125,568,2020-02-15T06:59:34Z +125,584,2020-02-15T06:59:34Z +125,602,2020-02-15T06:59:34Z +125,623,2020-02-15T06:59:34Z +125,664,2020-02-15T06:59:34Z +125,683,2020-02-15T06:59:34Z +125,710,2020-02-15T06:59:34Z +125,877,2020-02-15T06:59:34Z +125,908,2020-02-15T06:59:34Z +125,949,2020-02-15T06:59:34Z +125,965,2020-02-15T06:59:34Z +126,21,2020-02-15T06:59:34Z +126,34,2020-02-15T06:59:34Z +126,43,2020-02-15T06:59:34Z +126,58,2020-02-15T06:59:34Z +126,85,2020-02-15T06:59:34Z +126,96,2020-02-15T06:59:34Z +126,193,2020-02-15T06:59:34Z +126,194,2020-02-15T06:59:34Z +126,199,2020-02-15T06:59:34Z +126,256,2020-02-15T06:59:34Z +126,263,2020-02-15T06:59:34Z +126,288,2020-02-15T06:59:34Z +126,317,2020-02-15T06:59:34Z +126,347,2020-02-15T06:59:34Z +126,369,2020-02-15T06:59:34Z +126,370,2020-02-15T06:59:34Z +126,419,2020-02-15T06:59:34Z +126,468,2020-02-15T06:59:34Z +126,469,2020-02-15T06:59:34Z +126,545,2020-02-15T06:59:34Z +126,685,2020-02-15T06:59:34Z +126,836,2020-02-15T06:59:34Z +126,860,2020-02-15T06:59:34Z +127,36,2020-02-15T06:59:34Z +127,47,2020-02-15T06:59:34Z +127,48,2020-02-15T06:59:34Z +127,79,2020-02-15T06:59:34Z +127,119,2020-02-15T06:59:34Z +127,141,2020-02-15T06:59:34Z +127,157,2020-02-15T06:59:34Z +127,202,2020-02-15T06:59:34Z +127,286,2020-02-15T06:59:34Z +127,333,2020-02-15T06:59:34Z +127,354,2020-02-15T06:59:34Z +127,366,2020-02-15T06:59:34Z +127,382,2020-02-15T06:59:34Z +127,388,2020-02-15T06:59:34Z +127,411,2020-02-15T06:59:34Z +127,459,2020-02-15T06:59:34Z +127,553,2020-02-15T06:59:34Z +127,573,2020-02-15T06:59:34Z +127,613,2020-02-15T06:59:34Z +127,617,2020-02-15T06:59:34Z +127,641,2020-02-15T06:59:34Z +127,710,2020-02-15T06:59:34Z +127,727,2020-02-15T06:59:34Z +127,749,2020-02-15T06:59:34Z +127,763,2020-02-15T06:59:34Z +127,771,2020-02-15T06:59:34Z +127,791,2020-02-15T06:59:34Z +127,819,2020-02-15T06:59:34Z +127,839,2020-02-15T06:59:34Z +127,846,2020-02-15T06:59:34Z +127,911,2020-02-15T06:59:34Z +127,953,2020-02-15T06:59:34Z +127,970,2020-02-15T06:59:34Z +128,26,2020-02-15T06:59:34Z +128,82,2020-02-15T06:59:34Z +128,119,2020-02-15T06:59:34Z +128,168,2020-02-15T06:59:34Z +128,212,2020-02-15T06:59:34Z +128,238,2020-02-15T06:59:34Z +128,299,2020-02-15T06:59:34Z +128,312,2020-02-15T06:59:34Z +128,326,2020-02-15T06:59:34Z +128,336,2020-02-15T06:59:34Z +128,345,2020-02-15T06:59:34Z +128,407,2020-02-15T06:59:34Z +128,462,2020-02-15T06:59:34Z +128,485,2020-02-15T06:59:34Z +128,516,2020-02-15T06:59:34Z +128,564,2020-02-15T06:59:34Z +128,614,2020-02-15T06:59:34Z +128,650,2020-02-15T06:59:34Z +128,665,2020-02-15T06:59:34Z +128,671,2020-02-15T06:59:34Z +128,693,2020-02-15T06:59:34Z +128,696,2020-02-15T06:59:34Z +128,759,2020-02-15T06:59:34Z +128,774,2020-02-15T06:59:34Z +128,814,2020-02-15T06:59:34Z +128,899,2020-02-15T06:59:34Z +128,912,2020-02-15T06:59:34Z +128,944,2020-02-15T06:59:34Z +128,949,2020-02-15T06:59:34Z +128,965,2020-02-15T06:59:34Z +129,56,2020-02-15T06:59:34Z +129,89,2020-02-15T06:59:34Z +129,101,2020-02-15T06:59:34Z +129,166,2020-02-15T06:59:34Z +129,202,2020-02-15T06:59:34Z +129,230,2020-02-15T06:59:34Z +129,247,2020-02-15T06:59:34Z +129,249,2020-02-15T06:59:34Z +129,348,2020-02-15T06:59:34Z +129,367,2020-02-15T06:59:34Z +129,391,2020-02-15T06:59:34Z +129,418,2020-02-15T06:59:34Z +129,431,2020-02-15T06:59:34Z +129,452,2020-02-15T06:59:34Z +129,471,2020-02-15T06:59:34Z +129,520,2020-02-15T06:59:34Z +129,597,2020-02-15T06:59:34Z +129,602,2020-02-15T06:59:34Z +129,640,2020-02-15T06:59:34Z +129,669,2020-02-15T06:59:34Z +129,684,2020-02-15T06:59:34Z +129,705,2020-02-15T06:59:34Z +129,805,2020-02-15T06:59:34Z +129,826,2020-02-15T06:59:34Z +129,834,2020-02-15T06:59:34Z +129,857,2020-02-15T06:59:34Z +129,910,2020-02-15T06:59:34Z +129,920,2020-02-15T06:59:34Z +129,938,2020-02-15T06:59:34Z +129,962,2020-02-15T06:59:34Z +130,9,2020-02-15T06:59:34Z +130,26,2020-02-15T06:59:34Z +130,37,2020-02-15T06:59:34Z +130,43,2020-02-15T06:59:34Z +130,49,2020-02-15T06:59:34Z +130,57,2020-02-15T06:59:34Z +130,107,2020-02-15T06:59:34Z +130,112,2020-02-15T06:59:34Z +130,208,2020-02-15T06:59:34Z +130,326,2020-02-15T06:59:34Z +130,375,2020-02-15T06:59:34Z +130,416,2020-02-15T06:59:34Z +130,431,2020-02-15T06:59:34Z +130,452,2020-02-15T06:59:34Z +130,453,2020-02-15T06:59:34Z +130,478,2020-02-15T06:59:34Z +130,507,2020-02-15T06:59:34Z +130,525,2020-02-15T06:59:34Z +130,549,2020-02-15T06:59:34Z +130,592,2020-02-15T06:59:34Z +130,702,2020-02-15T06:59:34Z +130,725,2020-02-15T06:59:34Z +130,764,2020-02-15T06:59:34Z +130,809,2020-02-15T06:59:34Z +130,869,2020-02-15T06:59:34Z +130,930,2020-02-15T06:59:34Z +130,981,2020-02-15T06:59:34Z +131,48,2020-02-15T06:59:34Z +131,66,2020-02-15T06:59:34Z +131,94,2020-02-15T06:59:34Z +131,120,2020-02-15T06:59:34Z +131,147,2020-02-15T06:59:34Z +131,206,2020-02-15T06:59:34Z +131,320,2020-02-15T06:59:34Z +131,383,2020-02-15T06:59:34Z +131,432,2020-02-15T06:59:34Z +131,436,2020-02-15T06:59:34Z +131,450,2020-02-15T06:59:34Z +131,479,2020-02-15T06:59:34Z +131,494,2020-02-15T06:59:34Z +131,515,2020-02-15T06:59:34Z +131,539,2020-02-15T06:59:34Z +131,590,2020-02-15T06:59:34Z +131,647,2020-02-15T06:59:34Z +131,693,2020-02-15T06:59:34Z +131,713,2020-02-15T06:59:34Z +131,770,2020-02-15T06:59:34Z +131,798,2020-02-15T06:59:34Z +131,809,2020-02-15T06:59:34Z +131,875,2020-02-15T06:59:34Z +131,881,2020-02-15T06:59:34Z +131,921,2020-02-15T06:59:34Z +132,81,2020-02-15T06:59:34Z +132,82,2020-02-15T06:59:34Z +132,133,2020-02-15T06:59:34Z +132,156,2020-02-15T06:59:34Z +132,162,2020-02-15T06:59:34Z +132,311,2020-02-15T06:59:34Z +132,345,2020-02-15T06:59:34Z +132,377,2020-02-15T06:59:34Z +132,410,2020-02-15T06:59:34Z +132,538,2020-02-15T06:59:34Z +132,562,2020-02-15T06:59:34Z +132,586,2020-02-15T06:59:34Z +132,626,2020-02-15T06:59:34Z +132,637,2020-02-15T06:59:34Z +132,698,2020-02-15T06:59:34Z +132,756,2020-02-15T06:59:34Z +132,806,2020-02-15T06:59:34Z +132,897,2020-02-15T06:59:34Z +132,899,2020-02-15T06:59:34Z +132,904,2020-02-15T06:59:34Z +132,930,2020-02-15T06:59:34Z +132,987,2020-02-15T06:59:34Z +133,7,2020-02-15T06:59:34Z +133,51,2020-02-15T06:59:34Z +133,133,2020-02-15T06:59:34Z +133,172,2020-02-15T06:59:34Z +133,210,2020-02-15T06:59:34Z +133,270,2020-02-15T06:59:34Z +133,280,2020-02-15T06:59:34Z +133,286,2020-02-15T06:59:34Z +133,338,2020-02-15T06:59:34Z +133,342,2020-02-15T06:59:34Z +133,351,2020-02-15T06:59:34Z +133,368,2020-02-15T06:59:34Z +133,385,2020-02-15T06:59:34Z +133,390,2020-02-15T06:59:34Z +133,397,2020-02-15T06:59:34Z +133,410,2020-02-15T06:59:34Z +133,452,2020-02-15T06:59:34Z +133,463,2020-02-15T06:59:34Z +133,514,2020-02-15T06:59:34Z +133,588,2020-02-15T06:59:34Z +133,594,2020-02-15T06:59:34Z +133,635,2020-02-15T06:59:34Z +133,652,2020-02-15T06:59:34Z +133,727,2020-02-15T06:59:34Z +133,806,2020-02-15T06:59:34Z +133,868,2020-02-15T06:59:34Z +133,882,2020-02-15T06:59:34Z +133,894,2020-02-15T06:59:34Z +133,933,2020-02-15T06:59:34Z +133,952,2020-02-15T06:59:34Z +134,132,2020-02-15T06:59:34Z +134,145,2020-02-15T06:59:34Z +134,161,2020-02-15T06:59:34Z +134,219,2020-02-15T06:59:34Z +134,243,2020-02-15T06:59:34Z +134,250,2020-02-15T06:59:34Z +134,278,2020-02-15T06:59:34Z +134,341,2020-02-15T06:59:34Z +134,386,2020-02-15T06:59:34Z +134,413,2020-02-15T06:59:34Z +134,558,2020-02-15T06:59:34Z +134,588,2020-02-15T06:59:34Z +134,624,2020-02-15T06:59:34Z +134,655,2020-02-15T06:59:34Z +134,683,2020-02-15T06:59:34Z +134,690,2020-02-15T06:59:34Z +134,861,2020-02-15T06:59:34Z +134,896,2020-02-15T06:59:34Z +134,897,2020-02-15T06:59:34Z +134,915,2020-02-15T06:59:34Z +134,927,2020-02-15T06:59:34Z +134,936,2020-02-15T06:59:34Z +135,35,2020-02-15T06:59:34Z +135,41,2020-02-15T06:59:34Z +135,65,2020-02-15T06:59:34Z +135,88,2020-02-15T06:59:34Z +135,170,2020-02-15T06:59:34Z +135,269,2020-02-15T06:59:34Z +135,320,2020-02-15T06:59:34Z +135,353,2020-02-15T06:59:34Z +135,357,2020-02-15T06:59:34Z +135,364,2020-02-15T06:59:34Z +135,455,2020-02-15T06:59:34Z +135,458,2020-02-15T06:59:34Z +135,484,2020-02-15T06:59:34Z +135,541,2020-02-15T06:59:34Z +135,553,2020-02-15T06:59:34Z +135,616,2020-02-15T06:59:34Z +135,628,2020-02-15T06:59:34Z +135,719,2020-02-15T06:59:34Z +135,814,2020-02-15T06:59:34Z +135,905,2020-02-15T06:59:34Z +136,20,2020-02-15T06:59:34Z +136,25,2020-02-15T06:59:34Z +136,33,2020-02-15T06:59:34Z +136,56,2020-02-15T06:59:34Z +136,61,2020-02-15T06:59:34Z +136,193,2020-02-15T06:59:34Z +136,214,2020-02-15T06:59:34Z +136,229,2020-02-15T06:59:34Z +136,243,2020-02-15T06:59:34Z +136,256,2020-02-15T06:59:34Z +136,262,2020-02-15T06:59:34Z +136,271,2020-02-15T06:59:34Z +136,288,2020-02-15T06:59:34Z +136,300,2020-02-15T06:59:34Z +136,364,2020-02-15T06:59:34Z +136,401,2020-02-15T06:59:34Z +136,414,2020-02-15T06:59:34Z +136,420,2020-02-15T06:59:34Z +136,474,2020-02-15T06:59:34Z +136,485,2020-02-15T06:59:34Z +136,542,2020-02-15T06:59:34Z +136,552,2020-02-15T06:59:34Z +136,620,2020-02-15T06:59:34Z +136,649,2020-02-15T06:59:34Z +136,686,2020-02-15T06:59:34Z +136,781,2020-02-15T06:59:34Z +136,806,2020-02-15T06:59:34Z +136,808,2020-02-15T06:59:34Z +136,818,2020-02-15T06:59:34Z +136,842,2020-02-15T06:59:34Z +136,933,2020-02-15T06:59:34Z +136,993,2020-02-15T06:59:34Z +137,6,2020-02-15T06:59:34Z +137,14,2020-02-15T06:59:34Z +137,56,2020-02-15T06:59:34Z +137,96,2020-02-15T06:59:34Z +137,160,2020-02-15T06:59:34Z +137,224,2020-02-15T06:59:34Z +137,249,2020-02-15T06:59:34Z +137,254,2020-02-15T06:59:34Z +137,263,2020-02-15T06:59:34Z +137,268,2020-02-15T06:59:34Z +137,304,2020-02-15T06:59:34Z +137,390,2020-02-15T06:59:34Z +137,410,2020-02-15T06:59:34Z +137,433,2020-02-15T06:59:34Z +137,446,2020-02-15T06:59:34Z +137,489,2020-02-15T06:59:34Z +137,530,2020-02-15T06:59:34Z +137,564,2020-02-15T06:59:34Z +137,603,2020-02-15T06:59:34Z +137,610,2020-02-15T06:59:34Z +137,688,2020-02-15T06:59:34Z +137,703,2020-02-15T06:59:34Z +137,745,2020-02-15T06:59:34Z +137,758,2020-02-15T06:59:34Z +137,832,2020-02-15T06:59:34Z +137,841,2020-02-15T06:59:34Z +137,917,2020-02-15T06:59:34Z +138,8,2020-02-15T06:59:34Z +138,52,2020-02-15T06:59:34Z +138,61,2020-02-15T06:59:34Z +138,125,2020-02-15T06:59:34Z +138,157,2020-02-15T06:59:34Z +138,214,2020-02-15T06:59:34Z +138,258,2020-02-15T06:59:34Z +138,376,2020-02-15T06:59:34Z +138,403,2020-02-15T06:59:34Z +138,446,2020-02-15T06:59:34Z +138,453,2020-02-15T06:59:34Z +138,508,2020-02-15T06:59:34Z +138,553,2020-02-15T06:59:34Z +138,561,2020-02-15T06:59:34Z +138,583,2020-02-15T06:59:34Z +138,627,2020-02-15T06:59:34Z +138,639,2020-02-15T06:59:34Z +138,695,2020-02-15T06:59:34Z +138,747,2020-02-15T06:59:34Z +138,879,2020-02-15T06:59:34Z +138,885,2020-02-15T06:59:34Z +138,923,2020-02-15T06:59:34Z +138,970,2020-02-15T06:59:34Z +138,989,2020-02-15T06:59:34Z +139,20,2020-02-15T06:59:34Z +139,35,2020-02-15T06:59:34Z +139,57,2020-02-15T06:59:34Z +139,74,2020-02-15T06:59:34Z +139,90,2020-02-15T06:59:34Z +139,107,2020-02-15T06:59:34Z +139,155,2020-02-15T06:59:34Z +139,170,2020-02-15T06:59:34Z +139,181,2020-02-15T06:59:34Z +139,200,2020-02-15T06:59:34Z +139,229,2020-02-15T06:59:34Z +139,233,2020-02-15T06:59:34Z +139,261,2020-02-15T06:59:34Z +139,262,2020-02-15T06:59:34Z +139,266,2020-02-15T06:59:34Z +139,282,2020-02-15T06:59:34Z +139,284,2020-02-15T06:59:34Z +139,373,2020-02-15T06:59:34Z +139,447,2020-02-15T06:59:34Z +139,489,2020-02-15T06:59:34Z +139,529,2020-02-15T06:59:34Z +139,540,2020-02-15T06:59:34Z +139,570,2020-02-15T06:59:34Z +139,602,2020-02-15T06:59:34Z +139,605,2020-02-15T06:59:34Z +139,636,2020-02-15T06:59:34Z +139,691,2020-02-15T06:59:34Z +139,706,2020-02-15T06:59:34Z +139,719,2020-02-15T06:59:34Z +139,744,2020-02-15T06:59:34Z +139,746,2020-02-15T06:59:34Z +139,862,2020-02-15T06:59:34Z +139,892,2020-02-15T06:59:34Z +140,27,2020-02-15T06:59:34Z +140,77,2020-02-15T06:59:34Z +140,112,2020-02-15T06:59:34Z +140,135,2020-02-15T06:59:34Z +140,185,2020-02-15T06:59:34Z +140,258,2020-02-15T06:59:34Z +140,370,2020-02-15T06:59:34Z +140,373,2020-02-15T06:59:34Z +140,498,2020-02-15T06:59:34Z +140,509,2020-02-15T06:59:34Z +140,576,2020-02-15T06:59:34Z +140,587,2020-02-15T06:59:34Z +140,599,2020-02-15T06:59:34Z +140,608,2020-02-15T06:59:34Z +140,647,2020-02-15T06:59:34Z +140,665,2020-02-15T06:59:34Z +140,670,2020-02-15T06:59:34Z +140,693,2020-02-15T06:59:34Z +140,702,2020-02-15T06:59:34Z +140,729,2020-02-15T06:59:34Z +140,730,2020-02-15T06:59:34Z +140,731,2020-02-15T06:59:34Z +140,736,2020-02-15T06:59:34Z +140,742,2020-02-15T06:59:34Z +140,778,2020-02-15T06:59:34Z +140,820,2020-02-15T06:59:34Z +140,830,2020-02-15T06:59:34Z +140,835,2020-02-15T06:59:34Z +140,857,2020-02-15T06:59:34Z +140,923,2020-02-15T06:59:34Z +140,934,2020-02-15T06:59:34Z +140,999,2020-02-15T06:59:34Z +141,43,2020-02-15T06:59:34Z +141,67,2020-02-15T06:59:34Z +141,188,2020-02-15T06:59:34Z +141,191,2020-02-15T06:59:34Z +141,207,2020-02-15T06:59:34Z +141,223,2020-02-15T06:59:34Z +141,341,2020-02-15T06:59:34Z +141,358,2020-02-15T06:59:34Z +141,380,2020-02-15T06:59:34Z +141,395,2020-02-15T06:59:34Z +141,467,2020-02-15T06:59:34Z +141,491,2020-02-15T06:59:34Z +141,589,2020-02-15T06:59:34Z +141,607,2020-02-15T06:59:34Z +141,673,2020-02-15T06:59:34Z +141,740,2020-02-15T06:59:34Z +141,752,2020-02-15T06:59:34Z +141,768,2020-02-15T06:59:34Z +141,772,2020-02-15T06:59:34Z +141,787,2020-02-15T06:59:34Z +141,821,2020-02-15T06:59:34Z +141,829,2020-02-15T06:59:34Z +141,840,2020-02-15T06:59:34Z +141,849,2020-02-15T06:59:34Z +141,862,2020-02-15T06:59:34Z +141,863,2020-02-15T06:59:34Z +141,909,2020-02-15T06:59:34Z +141,992,2020-02-15T06:59:34Z +142,10,2020-02-15T06:59:34Z +142,18,2020-02-15T06:59:34Z +142,107,2020-02-15T06:59:34Z +142,139,2020-02-15T06:59:34Z +142,186,2020-02-15T06:59:34Z +142,199,2020-02-15T06:59:34Z +142,248,2020-02-15T06:59:34Z +142,328,2020-02-15T06:59:34Z +142,350,2020-02-15T06:59:34Z +142,371,2020-02-15T06:59:34Z +142,470,2020-02-15T06:59:34Z +142,481,2020-02-15T06:59:34Z +142,494,2020-02-15T06:59:34Z +142,501,2020-02-15T06:59:34Z +142,504,2020-02-15T06:59:34Z +142,540,2020-02-15T06:59:34Z +142,554,2020-02-15T06:59:34Z +142,575,2020-02-15T06:59:34Z +142,608,2020-02-15T06:59:34Z +142,710,2020-02-15T06:59:34Z +142,712,2020-02-15T06:59:34Z +142,735,2020-02-15T06:59:34Z +142,759,2020-02-15T06:59:34Z +142,794,2020-02-15T06:59:34Z +142,842,2020-02-15T06:59:34Z +142,859,2020-02-15T06:59:34Z +142,863,2020-02-15T06:59:34Z +142,875,2020-02-15T06:59:34Z +142,906,2020-02-15T06:59:34Z +142,914,2020-02-15T06:59:34Z +142,999,2020-02-15T06:59:34Z +143,47,2020-02-15T06:59:34Z +143,79,2020-02-15T06:59:34Z +143,141,2020-02-15T06:59:34Z +143,175,2020-02-15T06:59:34Z +143,232,2020-02-15T06:59:34Z +143,239,2020-02-15T06:59:34Z +143,316,2020-02-15T06:59:34Z +143,339,2020-02-15T06:59:34Z +143,361,2020-02-15T06:59:34Z +143,386,2020-02-15T06:59:34Z +143,404,2020-02-15T06:59:34Z +143,457,2020-02-15T06:59:34Z +143,485,2020-02-15T06:59:34Z +143,497,2020-02-15T06:59:34Z +143,560,2020-02-15T06:59:34Z +143,576,2020-02-15T06:59:34Z +143,603,2020-02-15T06:59:34Z +143,613,2020-02-15T06:59:34Z +143,659,2020-02-15T06:59:34Z +143,660,2020-02-15T06:59:34Z +143,680,2020-02-15T06:59:34Z +143,687,2020-02-15T06:59:34Z +143,690,2020-02-15T06:59:34Z +143,706,2020-02-15T06:59:34Z +143,792,2020-02-15T06:59:34Z +143,821,2020-02-15T06:59:34Z +143,830,2020-02-15T06:59:34Z +143,872,2020-02-15T06:59:34Z +143,878,2020-02-15T06:59:34Z +143,906,2020-02-15T06:59:34Z +143,958,2020-02-15T06:59:34Z +144,18,2020-02-15T06:59:34Z +144,67,2020-02-15T06:59:34Z +144,79,2020-02-15T06:59:34Z +144,90,2020-02-15T06:59:34Z +144,99,2020-02-15T06:59:34Z +144,105,2020-02-15T06:59:34Z +144,123,2020-02-15T06:59:34Z +144,125,2020-02-15T06:59:34Z +144,127,2020-02-15T06:59:34Z +144,130,2020-02-15T06:59:34Z +144,135,2020-02-15T06:59:34Z +144,164,2020-02-15T06:59:34Z +144,184,2020-02-15T06:59:34Z +144,216,2020-02-15T06:59:34Z +144,228,2020-02-15T06:59:34Z +144,260,2020-02-15T06:59:34Z +144,272,2020-02-15T06:59:34Z +144,291,2020-02-15T06:59:34Z +144,293,2020-02-15T06:59:34Z +144,312,2020-02-15T06:59:34Z +144,393,2020-02-15T06:59:34Z +144,396,2020-02-15T06:59:34Z +144,473,2020-02-15T06:59:34Z +144,504,2020-02-15T06:59:34Z +144,540,2020-02-15T06:59:34Z +144,599,2020-02-15T06:59:34Z +144,668,2020-02-15T06:59:34Z +144,702,2020-02-15T06:59:34Z +144,753,2020-02-15T06:59:34Z +144,762,2020-02-15T06:59:34Z +144,776,2020-02-15T06:59:34Z +144,785,2020-02-15T06:59:34Z +144,845,2020-02-15T06:59:34Z +144,894,2020-02-15T06:59:34Z +144,953,2020-02-15T06:59:34Z +145,39,2020-02-15T06:59:34Z +145,109,2020-02-15T06:59:34Z +145,120,2020-02-15T06:59:34Z +145,154,2020-02-15T06:59:34Z +145,155,2020-02-15T06:59:34Z +145,243,2020-02-15T06:59:34Z +145,293,2020-02-15T06:59:34Z +145,402,2020-02-15T06:59:34Z +145,409,2020-02-15T06:59:34Z +145,457,2020-02-15T06:59:34Z +145,475,2020-02-15T06:59:34Z +145,487,2020-02-15T06:59:34Z +145,494,2020-02-15T06:59:34Z +145,527,2020-02-15T06:59:34Z +145,592,2020-02-15T06:59:34Z +145,625,2020-02-15T06:59:34Z +145,629,2020-02-15T06:59:34Z +145,641,2020-02-15T06:59:34Z +145,661,2020-02-15T06:59:34Z +145,664,2020-02-15T06:59:34Z +145,692,2020-02-15T06:59:34Z +145,713,2020-02-15T06:59:34Z +145,726,2020-02-15T06:59:34Z +145,748,2020-02-15T06:59:34Z +145,822,2020-02-15T06:59:34Z +145,893,2020-02-15T06:59:34Z +145,923,2020-02-15T06:59:34Z +145,953,2020-02-15T06:59:34Z +146,12,2020-02-15T06:59:34Z +146,16,2020-02-15T06:59:34Z +146,33,2020-02-15T06:59:34Z +146,117,2020-02-15T06:59:34Z +146,177,2020-02-15T06:59:34Z +146,191,2020-02-15T06:59:34Z +146,197,2020-02-15T06:59:34Z +146,207,2020-02-15T06:59:34Z +146,218,2020-02-15T06:59:34Z +146,278,2020-02-15T06:59:34Z +146,296,2020-02-15T06:59:34Z +146,314,2020-02-15T06:59:34Z +146,320,2020-02-15T06:59:34Z +146,372,2020-02-15T06:59:34Z +146,384,2020-02-15T06:59:34Z +146,402,2020-02-15T06:59:34Z +146,410,2020-02-15T06:59:34Z +146,427,2020-02-15T06:59:34Z +146,429,2020-02-15T06:59:34Z +146,512,2020-02-15T06:59:34Z +146,514,2020-02-15T06:59:34Z +146,571,2020-02-15T06:59:34Z +146,591,2020-02-15T06:59:34Z +146,720,2020-02-15T06:59:34Z +146,731,2020-02-15T06:59:34Z +146,734,2020-02-15T06:59:34Z +146,871,2020-02-15T06:59:34Z +146,909,2020-02-15T06:59:34Z +146,922,2020-02-15T06:59:34Z +146,945,2020-02-15T06:59:34Z +146,955,2020-02-15T06:59:34Z +146,966,2020-02-15T06:59:34Z +146,969,2020-02-15T06:59:34Z +147,4,2020-02-15T06:59:34Z +147,85,2020-02-15T06:59:34Z +147,131,2020-02-15T06:59:34Z +147,139,2020-02-15T06:59:34Z +147,145,2020-02-15T06:59:34Z +147,178,2020-02-15T06:59:34Z +147,251,2020-02-15T06:59:34Z +147,254,2020-02-15T06:59:34Z +147,295,2020-02-15T06:59:34Z +147,298,2020-02-15T06:59:34Z +147,305,2020-02-15T06:59:34Z +147,310,2020-02-15T06:59:34Z +147,318,2020-02-15T06:59:34Z +147,333,2020-02-15T06:59:34Z +147,341,2020-02-15T06:59:34Z +147,351,2020-02-15T06:59:34Z +147,394,2020-02-15T06:59:34Z +147,402,2020-02-15T06:59:34Z +147,405,2020-02-15T06:59:34Z +147,410,2020-02-15T06:59:34Z +147,431,2020-02-15T06:59:34Z +147,443,2020-02-15T06:59:34Z +147,508,2020-02-15T06:59:34Z +147,554,2020-02-15T06:59:34Z +147,563,2020-02-15T06:59:34Z +147,649,2020-02-15T06:59:34Z +147,688,2020-02-15T06:59:34Z +147,708,2020-02-15T06:59:34Z +147,864,2020-02-15T06:59:34Z +147,957,2020-02-15T06:59:34Z +147,987,2020-02-15T06:59:34Z +148,27,2020-02-15T06:59:34Z +148,57,2020-02-15T06:59:34Z +148,133,2020-02-15T06:59:34Z +148,149,2020-02-15T06:59:34Z +148,226,2020-02-15T06:59:34Z +148,342,2020-02-15T06:59:34Z +148,368,2020-02-15T06:59:34Z +148,422,2020-02-15T06:59:34Z +148,468,2020-02-15T06:59:34Z +148,633,2020-02-15T06:59:34Z +148,718,2020-02-15T06:59:34Z +148,768,2020-02-15T06:59:34Z +148,772,2020-02-15T06:59:34Z +148,792,2020-02-15T06:59:34Z +149,53,2020-02-15T06:59:34Z +149,72,2020-02-15T06:59:34Z +149,95,2020-02-15T06:59:34Z +149,118,2020-02-15T06:59:34Z +149,139,2020-02-15T06:59:34Z +149,146,2020-02-15T06:59:34Z +149,153,2020-02-15T06:59:34Z +149,159,2020-02-15T06:59:34Z +149,169,2020-02-15T06:59:34Z +149,178,2020-02-15T06:59:34Z +149,188,2020-02-15T06:59:34Z +149,193,2020-02-15T06:59:34Z +149,339,2020-02-15T06:59:34Z +149,354,2020-02-15T06:59:34Z +149,362,2020-02-15T06:59:34Z +149,365,2020-02-15T06:59:34Z +149,458,2020-02-15T06:59:34Z +149,631,2020-02-15T06:59:34Z +149,670,2020-02-15T06:59:34Z +149,685,2020-02-15T06:59:34Z +149,761,2020-02-15T06:59:34Z +149,782,2020-02-15T06:59:34Z +149,810,2020-02-15T06:59:34Z +149,811,2020-02-15T06:59:34Z +149,899,2020-02-15T06:59:34Z +149,905,2020-02-15T06:59:34Z +149,913,2020-02-15T06:59:34Z +149,921,2020-02-15T06:59:34Z +149,947,2020-02-15T06:59:34Z +149,949,2020-02-15T06:59:34Z +149,992,2020-02-15T06:59:34Z +150,23,2020-02-15T06:59:34Z +150,63,2020-02-15T06:59:34Z +150,75,2020-02-15T06:59:34Z +150,94,2020-02-15T06:59:34Z +150,105,2020-02-15T06:59:34Z +150,168,2020-02-15T06:59:34Z +150,190,2020-02-15T06:59:34Z +150,206,2020-02-15T06:59:34Z +150,233,2020-02-15T06:59:34Z +150,270,2020-02-15T06:59:34Z +150,285,2020-02-15T06:59:34Z +150,306,2020-02-15T06:59:34Z +150,386,2020-02-15T06:59:34Z +150,433,2020-02-15T06:59:34Z +150,446,2020-02-15T06:59:34Z +150,447,2020-02-15T06:59:34Z +150,468,2020-02-15T06:59:34Z +150,508,2020-02-15T06:59:34Z +150,542,2020-02-15T06:59:34Z +150,551,2020-02-15T06:59:34Z +150,629,2020-02-15T06:59:34Z +150,647,2020-02-15T06:59:34Z +150,672,2020-02-15T06:59:34Z +150,697,2020-02-15T06:59:34Z +150,728,2020-02-15T06:59:34Z +150,777,2020-02-15T06:59:34Z +150,854,2020-02-15T06:59:34Z +150,873,2020-02-15T06:59:34Z +150,880,2020-02-15T06:59:34Z +150,887,2020-02-15T06:59:34Z +150,889,2020-02-15T06:59:34Z +150,892,2020-02-15T06:59:34Z +150,953,2020-02-15T06:59:34Z +150,962,2020-02-15T06:59:34Z +151,131,2020-02-15T06:59:34Z +151,144,2020-02-15T06:59:34Z +151,167,2020-02-15T06:59:34Z +151,170,2020-02-15T06:59:34Z +151,217,2020-02-15T06:59:34Z +151,232,2020-02-15T06:59:34Z +151,342,2020-02-15T06:59:34Z +151,367,2020-02-15T06:59:34Z +151,370,2020-02-15T06:59:34Z +151,382,2020-02-15T06:59:34Z +151,451,2020-02-15T06:59:34Z +151,463,2020-02-15T06:59:34Z +151,482,2020-02-15T06:59:34Z +151,501,2020-02-15T06:59:34Z +151,527,2020-02-15T06:59:34Z +151,539,2020-02-15T06:59:34Z +151,570,2020-02-15T06:59:34Z +151,574,2020-02-15T06:59:34Z +151,634,2020-02-15T06:59:34Z +151,658,2020-02-15T06:59:34Z +151,665,2020-02-15T06:59:34Z +151,703,2020-02-15T06:59:34Z +151,880,2020-02-15T06:59:34Z +151,892,2020-02-15T06:59:34Z +151,895,2020-02-15T06:59:34Z +151,989,2020-02-15T06:59:34Z +152,59,2020-02-15T06:59:34Z +152,153,2020-02-15T06:59:34Z +152,217,2020-02-15T06:59:34Z +152,248,2020-02-15T06:59:34Z +152,318,2020-02-15T06:59:34Z +152,332,2020-02-15T06:59:34Z +152,475,2020-02-15T06:59:34Z +152,476,2020-02-15T06:59:34Z +152,578,2020-02-15T06:59:34Z +152,607,2020-02-15T06:59:34Z +152,611,2020-02-15T06:59:34Z +152,615,2020-02-15T06:59:34Z +152,674,2020-02-15T06:59:34Z +152,680,2020-02-15T06:59:34Z +152,729,2020-02-15T06:59:34Z +152,768,2020-02-15T06:59:34Z +152,821,2020-02-15T06:59:34Z +152,846,2020-02-15T06:59:34Z +152,891,2020-02-15T06:59:34Z +152,898,2020-02-15T06:59:34Z +152,927,2020-02-15T06:59:34Z +152,964,2020-02-15T06:59:34Z +152,968,2020-02-15T06:59:34Z +153,47,2020-02-15T06:59:34Z +153,64,2020-02-15T06:59:34Z +153,136,2020-02-15T06:59:34Z +153,180,2020-02-15T06:59:34Z +153,203,2020-02-15T06:59:34Z +153,231,2020-02-15T06:59:34Z +153,444,2020-02-15T06:59:34Z +153,476,2020-02-15T06:59:34Z +153,480,2020-02-15T06:59:34Z +153,486,2020-02-15T06:59:34Z +153,536,2020-02-15T06:59:34Z +153,627,2020-02-15T06:59:34Z +153,732,2020-02-15T06:59:34Z +153,756,2020-02-15T06:59:34Z +153,766,2020-02-15T06:59:34Z +153,817,2020-02-15T06:59:34Z +153,847,2020-02-15T06:59:34Z +153,919,2020-02-15T06:59:34Z +153,938,2020-02-15T06:59:34Z +153,988,2020-02-15T06:59:34Z +154,27,2020-02-15T06:59:34Z +154,111,2020-02-15T06:59:34Z +154,141,2020-02-15T06:59:34Z +154,158,2020-02-15T06:59:34Z +154,169,2020-02-15T06:59:34Z +154,170,2020-02-15T06:59:34Z +154,193,2020-02-15T06:59:34Z +154,208,2020-02-15T06:59:34Z +154,274,2020-02-15T06:59:34Z +154,276,2020-02-15T06:59:34Z +154,282,2020-02-15T06:59:34Z +154,299,2020-02-15T06:59:34Z +154,314,2020-02-15T06:59:34Z +154,396,2020-02-15T06:59:34Z +154,399,2020-02-15T06:59:34Z +154,421,2020-02-15T06:59:34Z +154,440,2020-02-15T06:59:34Z +154,467,2020-02-15T06:59:34Z +154,474,2020-02-15T06:59:34Z +154,489,2020-02-15T06:59:34Z +154,588,2020-02-15T06:59:34Z +154,602,2020-02-15T06:59:34Z +154,680,2020-02-15T06:59:34Z +154,698,2020-02-15T06:59:34Z +154,802,2020-02-15T06:59:34Z +154,842,2020-02-15T06:59:34Z +154,954,2020-02-15T06:59:34Z +154,988,2020-02-15T06:59:34Z +155,20,2020-02-15T06:59:34Z +155,67,2020-02-15T06:59:34Z +155,128,2020-02-15T06:59:34Z +155,153,2020-02-15T06:59:34Z +155,220,2020-02-15T06:59:34Z +155,249,2020-02-15T06:59:34Z +155,303,2020-02-15T06:59:34Z +155,312,2020-02-15T06:59:34Z +155,359,2020-02-15T06:59:34Z +155,361,2020-02-15T06:59:34Z +155,383,2020-02-15T06:59:34Z +155,387,2020-02-15T06:59:34Z +155,407,2020-02-15T06:59:34Z +155,427,2020-02-15T06:59:34Z +155,459,2020-02-15T06:59:34Z +155,513,2020-02-15T06:59:34Z +155,584,2020-02-15T06:59:34Z +155,590,2020-02-15T06:59:34Z +155,630,2020-02-15T06:59:34Z +155,688,2020-02-15T06:59:34Z +155,757,2020-02-15T06:59:34Z +155,768,2020-02-15T06:59:34Z +155,785,2020-02-15T06:59:34Z +155,849,2020-02-15T06:59:34Z +155,885,2020-02-15T06:59:34Z +155,890,2020-02-15T06:59:34Z +155,941,2020-02-15T06:59:34Z +155,966,2020-02-15T06:59:34Z +155,987,2020-02-15T06:59:34Z +155,997,2020-02-15T06:59:34Z +155,1000,2020-02-15T06:59:34Z +156,53,2020-02-15T06:59:34Z +156,155,2020-02-15T06:59:34Z +156,198,2020-02-15T06:59:34Z +156,244,2020-02-15T06:59:34Z +156,262,2020-02-15T06:59:34Z +156,263,2020-02-15T06:59:34Z +156,285,2020-02-15T06:59:34Z +156,297,2020-02-15T06:59:34Z +156,301,2020-02-15T06:59:34Z +156,349,2020-02-15T06:59:34Z +156,379,2020-02-15T06:59:34Z +156,448,2020-02-15T06:59:34Z +156,462,2020-02-15T06:59:34Z +156,467,2020-02-15T06:59:34Z +156,504,2020-02-15T06:59:34Z +156,518,2020-02-15T06:59:34Z +156,593,2020-02-15T06:59:34Z +156,646,2020-02-15T06:59:34Z +156,705,2020-02-15T06:59:34Z +156,754,2020-02-15T06:59:34Z +156,775,2020-02-15T06:59:34Z +156,844,2020-02-15T06:59:34Z +157,10,2020-02-15T06:59:34Z +157,24,2020-02-15T06:59:34Z +157,34,2020-02-15T06:59:34Z +157,122,2020-02-15T06:59:34Z +157,159,2020-02-15T06:59:34Z +157,183,2020-02-15T06:59:34Z +157,210,2020-02-15T06:59:34Z +157,217,2020-02-15T06:59:34Z +157,291,2020-02-15T06:59:34Z +157,303,2020-02-15T06:59:34Z +157,321,2020-02-15T06:59:34Z +157,326,2020-02-15T06:59:35Z +157,353,2020-02-15T06:59:35Z +157,400,2020-02-15T06:59:35Z +157,406,2020-02-15T06:59:35Z +157,431,2020-02-15T06:59:35Z +157,496,2020-02-15T06:59:35Z +157,535,2020-02-15T06:59:35Z +157,573,2020-02-15T06:59:35Z +157,574,2020-02-15T06:59:35Z +157,604,2020-02-15T06:59:35Z +157,616,2020-02-15T06:59:35Z +157,642,2020-02-15T06:59:35Z +157,661,2020-02-15T06:59:35Z +157,696,2020-02-15T06:59:35Z +157,713,2020-02-15T06:59:35Z +157,802,2020-02-15T06:59:35Z +157,835,2020-02-15T06:59:35Z +157,874,2020-02-15T06:59:35Z +157,913,2020-02-15T06:59:35Z +157,967,2020-02-15T06:59:35Z +157,973,2020-02-15T06:59:35Z +158,32,2020-02-15T06:59:35Z +158,47,2020-02-15T06:59:35Z +158,64,2020-02-15T06:59:35Z +158,66,2020-02-15T06:59:35Z +158,102,2020-02-15T06:59:35Z +158,121,2020-02-15T06:59:35Z +158,177,2020-02-15T06:59:35Z +158,178,2020-02-15T06:59:35Z +158,188,2020-02-15T06:59:35Z +158,215,2020-02-15T06:59:35Z +158,241,2020-02-15T06:59:35Z +158,293,2020-02-15T06:59:35Z +158,437,2020-02-15T06:59:35Z +158,473,2020-02-15T06:59:35Z +158,483,2020-02-15T06:59:35Z +158,532,2020-02-15T06:59:35Z +158,555,2020-02-15T06:59:35Z +158,581,2020-02-15T06:59:35Z +158,601,2020-02-15T06:59:35Z +158,616,2020-02-15T06:59:35Z +158,626,2020-02-15T06:59:35Z +158,637,2020-02-15T06:59:35Z +158,799,2020-02-15T06:59:35Z +158,812,2020-02-15T06:59:35Z +158,824,2020-02-15T06:59:35Z +158,830,2020-02-15T06:59:35Z +158,840,2020-02-15T06:59:35Z +158,869,2020-02-15T06:59:35Z +158,879,2020-02-15T06:59:35Z +158,880,2020-02-15T06:59:35Z +158,894,2020-02-15T06:59:35Z +158,896,2020-02-15T06:59:35Z +158,967,2020-02-15T06:59:35Z +158,968,2020-02-15T06:59:35Z +158,990,2020-02-15T06:59:35Z +159,20,2020-02-15T06:59:35Z +159,82,2020-02-15T06:59:35Z +159,127,2020-02-15T06:59:35Z +159,187,2020-02-15T06:59:35Z +159,206,2020-02-15T06:59:35Z +159,208,2020-02-15T06:59:35Z +159,223,2020-02-15T06:59:35Z +159,248,2020-02-15T06:59:35Z +159,342,2020-02-15T06:59:35Z +159,343,2020-02-15T06:59:35Z +159,344,2020-02-15T06:59:35Z +159,364,2020-02-15T06:59:35Z +159,418,2020-02-15T06:59:35Z +159,549,2020-02-15T06:59:35Z +159,561,2020-02-15T06:59:35Z +159,600,2020-02-15T06:59:35Z +159,674,2020-02-15T06:59:35Z +159,680,2020-02-15T06:59:35Z +159,784,2020-02-15T06:59:35Z +159,789,2020-02-15T06:59:35Z +159,800,2020-02-15T06:59:35Z +159,802,2020-02-15T06:59:35Z +159,818,2020-02-15T06:59:35Z +159,876,2020-02-15T06:59:35Z +159,907,2020-02-15T06:59:35Z +159,978,2020-02-15T06:59:35Z +160,2,2020-02-15T06:59:35Z +160,17,2020-02-15T06:59:35Z +160,43,2020-02-15T06:59:35Z +160,242,2020-02-15T06:59:35Z +160,267,2020-02-15T06:59:35Z +160,275,2020-02-15T06:59:35Z +160,368,2020-02-15T06:59:35Z +160,455,2020-02-15T06:59:35Z +160,469,2020-02-15T06:59:35Z +160,484,2020-02-15T06:59:35Z +160,579,2020-02-15T06:59:35Z +160,660,2020-02-15T06:59:35Z +160,755,2020-02-15T06:59:35Z +160,767,2020-02-15T06:59:35Z +160,769,2020-02-15T06:59:35Z +160,794,2020-02-15T06:59:35Z +160,826,2020-02-15T06:59:35Z +160,883,2020-02-15T06:59:35Z +160,950,2020-02-15T06:59:35Z +160,954,2020-02-15T06:59:35Z +161,43,2020-02-15T06:59:35Z +161,58,2020-02-15T06:59:35Z +161,89,2020-02-15T06:59:35Z +161,90,2020-02-15T06:59:35Z +161,120,2020-02-15T06:59:35Z +161,188,2020-02-15T06:59:35Z +161,247,2020-02-15T06:59:35Z +161,269,2020-02-15T06:59:35Z +161,281,2020-02-15T06:59:35Z +161,340,2020-02-15T06:59:35Z +161,353,2020-02-15T06:59:35Z +161,401,2020-02-15T06:59:35Z +161,414,2020-02-15T06:59:35Z +161,425,2020-02-15T06:59:35Z +161,469,2020-02-15T06:59:35Z +161,526,2020-02-15T06:59:35Z +161,588,2020-02-15T06:59:35Z +161,644,2020-02-15T06:59:35Z +161,653,2020-02-15T06:59:35Z +161,655,2020-02-15T06:59:35Z +161,669,2020-02-15T06:59:35Z +161,684,2020-02-15T06:59:35Z +161,714,2020-02-15T06:59:35Z +161,749,2020-02-15T06:59:35Z +161,807,2020-02-15T06:59:35Z +161,825,2020-02-15T06:59:35Z +161,850,2020-02-15T06:59:35Z +161,880,2020-02-15T06:59:35Z +161,920,2020-02-15T06:59:35Z +161,921,2020-02-15T06:59:35Z +161,924,2020-02-15T06:59:35Z +161,927,2020-02-15T06:59:35Z +162,1,2020-02-15T06:59:35Z +162,4,2020-02-15T06:59:35Z +162,7,2020-02-15T06:59:35Z +162,18,2020-02-15T06:59:35Z +162,28,2020-02-15T06:59:35Z +162,32,2020-02-15T06:59:35Z +162,33,2020-02-15T06:59:35Z +162,41,2020-02-15T06:59:35Z +162,85,2020-02-15T06:59:35Z +162,121,2020-02-15T06:59:35Z +162,164,2020-02-15T06:59:35Z +162,274,2020-02-15T06:59:35Z +162,279,2020-02-15T06:59:35Z +162,409,2020-02-15T06:59:35Z +162,410,2020-02-15T06:59:35Z +162,415,2020-02-15T06:59:35Z +162,500,2020-02-15T06:59:35Z +162,574,2020-02-15T06:59:35Z +162,612,2020-02-15T06:59:35Z +162,636,2020-02-15T06:59:35Z +162,659,2020-02-15T06:59:35Z +162,786,2020-02-15T06:59:35Z +162,844,2020-02-15T06:59:35Z +162,909,2020-02-15T06:59:35Z +162,968,2020-02-15T06:59:35Z +163,30,2020-02-15T06:59:35Z +163,45,2020-02-15T06:59:35Z +163,166,2020-02-15T06:59:35Z +163,180,2020-02-15T06:59:35Z +163,239,2020-02-15T06:59:35Z +163,283,2020-02-15T06:59:35Z +163,303,2020-02-15T06:59:35Z +163,304,2020-02-15T06:59:35Z +163,307,2020-02-15T06:59:35Z +163,394,2020-02-15T06:59:35Z +163,409,2020-02-15T06:59:35Z +163,434,2020-02-15T06:59:35Z +163,444,2020-02-15T06:59:35Z +163,522,2020-02-15T06:59:35Z +163,719,2020-02-15T06:59:35Z +163,785,2020-02-15T06:59:35Z +163,833,2020-02-15T06:59:35Z +163,881,2020-02-15T06:59:35Z +163,891,2020-02-15T06:59:35Z +163,947,2020-02-15T06:59:35Z +163,996,2020-02-15T06:59:35Z +164,15,2020-02-15T06:59:35Z +164,23,2020-02-15T06:59:35Z +164,148,2020-02-15T06:59:35Z +164,169,2020-02-15T06:59:35Z +164,252,2020-02-15T06:59:35Z +164,324,2020-02-15T06:59:35Z +164,347,2020-02-15T06:59:35Z +164,367,2020-02-15T06:59:35Z +164,431,2020-02-15T06:59:35Z +164,448,2020-02-15T06:59:35Z +164,469,2020-02-15T06:59:35Z +164,545,2020-02-15T06:59:35Z +164,610,2020-02-15T06:59:35Z +164,613,2020-02-15T06:59:35Z +164,673,2020-02-15T06:59:35Z +164,681,2020-02-15T06:59:35Z +164,698,2020-02-15T06:59:35Z +164,801,2020-02-15T06:59:35Z +164,820,2020-02-15T06:59:35Z +164,832,2020-02-15T06:59:35Z +164,834,2020-02-15T06:59:35Z +164,851,2020-02-15T06:59:35Z +164,884,2020-02-15T06:59:35Z +164,908,2020-02-15T06:59:35Z +164,957,2020-02-15T06:59:35Z +164,984,2020-02-15T06:59:35Z +165,72,2020-02-15T06:59:35Z +165,95,2020-02-15T06:59:35Z +165,146,2020-02-15T06:59:35Z +165,204,2020-02-15T06:59:35Z +165,253,2020-02-15T06:59:35Z +165,286,2020-02-15T06:59:35Z +165,360,2020-02-15T06:59:35Z +165,375,2020-02-15T06:59:35Z +165,395,2020-02-15T06:59:35Z +165,421,2020-02-15T06:59:35Z +165,437,2020-02-15T06:59:35Z +165,473,2020-02-15T06:59:35Z +165,607,2020-02-15T06:59:35Z +165,644,2020-02-15T06:59:35Z +165,659,2020-02-15T06:59:35Z +165,693,2020-02-15T06:59:35Z +165,737,2020-02-15T06:59:35Z +165,779,2020-02-15T06:59:35Z +165,798,2020-02-15T06:59:35Z +165,807,2020-02-15T06:59:35Z +165,809,2020-02-15T06:59:35Z +165,832,2020-02-15T06:59:35Z +165,833,2020-02-15T06:59:35Z +165,947,2020-02-15T06:59:35Z +165,948,2020-02-15T06:59:35Z +165,962,2020-02-15T06:59:35Z +166,25,2020-02-15T06:59:35Z +166,38,2020-02-15T06:59:35Z +166,55,2020-02-15T06:59:35Z +166,61,2020-02-15T06:59:35Z +166,68,2020-02-15T06:59:35Z +166,86,2020-02-15T06:59:35Z +166,146,2020-02-15T06:59:35Z +166,255,2020-02-15T06:59:35Z +166,297,2020-02-15T06:59:35Z +166,306,2020-02-15T06:59:35Z +166,326,2020-02-15T06:59:35Z +166,361,2020-02-15T06:59:35Z +166,366,2020-02-15T06:59:35Z +166,426,2020-02-15T06:59:35Z +166,580,2020-02-15T06:59:35Z +166,622,2020-02-15T06:59:35Z +166,674,2020-02-15T06:59:35Z +166,714,2020-02-15T06:59:35Z +166,788,2020-02-15T06:59:35Z +166,867,2020-02-15T06:59:35Z +166,944,2020-02-15T06:59:35Z +166,1000,2020-02-15T06:59:35Z +167,17,2020-02-15T06:59:35Z +167,25,2020-02-15T06:59:35Z +167,63,2020-02-15T06:59:35Z +167,72,2020-02-15T06:59:35Z +167,107,2020-02-15T06:59:35Z +167,120,2020-02-15T06:59:35Z +167,191,2020-02-15T06:59:35Z +167,294,2020-02-15T06:59:35Z +167,319,2020-02-15T06:59:35Z +167,339,2020-02-15T06:59:35Z +167,341,2020-02-15T06:59:35Z +167,496,2020-02-15T06:59:35Z +167,554,2020-02-15T06:59:35Z +167,626,2020-02-15T06:59:35Z +167,628,2020-02-15T06:59:35Z +167,672,2020-02-15T06:59:35Z +167,692,2020-02-15T06:59:35Z +167,717,2020-02-15T06:59:35Z +167,734,2020-02-15T06:59:35Z +167,794,2020-02-15T06:59:35Z +167,800,2020-02-15T06:59:35Z +167,802,2020-02-15T06:59:35Z +167,856,2020-02-15T06:59:35Z +167,864,2020-02-15T06:59:35Z +167,882,2020-02-15T06:59:35Z +167,923,2020-02-15T06:59:35Z +168,32,2020-02-15T06:59:35Z +168,56,2020-02-15T06:59:35Z +168,92,2020-02-15T06:59:35Z +168,115,2020-02-15T06:59:35Z +168,188,2020-02-15T06:59:35Z +168,196,2020-02-15T06:59:35Z +168,208,2020-02-15T06:59:35Z +168,237,2020-02-15T06:59:35Z +168,241,2020-02-15T06:59:35Z +168,255,2020-02-15T06:59:35Z +168,305,2020-02-15T06:59:35Z +168,336,2020-02-15T06:59:35Z +168,387,2020-02-15T06:59:35Z +168,433,2020-02-15T06:59:35Z +168,438,2020-02-15T06:59:35Z +168,519,2020-02-15T06:59:35Z +168,602,2020-02-15T06:59:35Z +168,619,2020-02-15T06:59:35Z +168,626,2020-02-15T06:59:35Z +168,652,2020-02-15T06:59:35Z +168,678,2020-02-15T06:59:35Z +168,685,2020-02-15T06:59:35Z +168,804,2020-02-15T06:59:35Z +168,807,2020-02-15T06:59:35Z +168,826,2020-02-15T06:59:35Z +168,841,2020-02-15T06:59:35Z +168,886,2020-02-15T06:59:35Z +168,889,2020-02-15T06:59:35Z +168,892,2020-02-15T06:59:35Z +168,927,2020-02-15T06:59:35Z +168,959,2020-02-15T06:59:35Z +169,6,2020-02-15T06:59:35Z +169,78,2020-02-15T06:59:35Z +169,93,2020-02-15T06:59:35Z +169,246,2020-02-15T06:59:35Z +169,248,2020-02-15T06:59:35Z +169,289,2020-02-15T06:59:35Z +169,301,2020-02-15T06:59:35Z +169,326,2020-02-15T06:59:35Z +169,349,2020-02-15T06:59:35Z +169,372,2020-02-15T06:59:35Z +169,398,2020-02-15T06:59:35Z +169,434,2020-02-15T06:59:35Z +169,505,2020-02-15T06:59:35Z +169,564,2020-02-15T06:59:35Z +169,571,2020-02-15T06:59:35Z +169,634,2020-02-15T06:59:35Z +169,642,2020-02-15T06:59:35Z +169,673,2020-02-15T06:59:35Z +169,694,2020-02-15T06:59:35Z +169,727,2020-02-15T06:59:35Z +169,778,2020-02-15T06:59:35Z +169,815,2020-02-15T06:59:35Z +169,847,2020-02-15T06:59:35Z +169,849,2020-02-15T06:59:35Z +169,894,2020-02-15T06:59:35Z +169,897,2020-02-15T06:59:35Z +169,954,2020-02-15T06:59:35Z +169,992,2020-02-15T06:59:35Z +169,998,2020-02-15T06:59:35Z +170,7,2020-02-15T06:59:35Z +170,15,2020-02-15T06:59:35Z +170,27,2020-02-15T06:59:35Z +170,33,2020-02-15T06:59:35Z +170,102,2020-02-15T06:59:35Z +170,139,2020-02-15T06:59:35Z +170,180,2020-02-15T06:59:35Z +170,184,2020-02-15T06:59:35Z +170,212,2020-02-15T06:59:35Z +170,299,2020-02-15T06:59:35Z +170,322,2020-02-15T06:59:35Z +170,358,2020-02-15T06:59:35Z +170,416,2020-02-15T06:59:35Z +170,508,2020-02-15T06:59:35Z +170,537,2020-02-15T06:59:35Z +170,705,2020-02-15T06:59:35Z +170,758,2020-02-15T06:59:35Z +170,764,2020-02-15T06:59:35Z +170,868,2020-02-15T06:59:35Z +170,877,2020-02-15T06:59:35Z +170,886,2020-02-15T06:59:35Z +170,925,2020-02-15T06:59:35Z +170,993,2020-02-15T06:59:35Z +170,996,2020-02-15T06:59:35Z +171,49,2020-02-15T06:59:35Z +171,146,2020-02-15T06:59:35Z +171,166,2020-02-15T06:59:35Z +171,181,2020-02-15T06:59:35Z +171,219,2020-02-15T06:59:35Z +171,273,2020-02-15T06:59:35Z +171,296,2020-02-15T06:59:35Z +171,318,2020-02-15T06:59:35Z +171,342,2020-02-15T06:59:35Z +171,397,2020-02-15T06:59:35Z +171,447,2020-02-15T06:59:35Z +171,450,2020-02-15T06:59:35Z +171,466,2020-02-15T06:59:35Z +171,549,2020-02-15T06:59:35Z +171,560,2020-02-15T06:59:35Z +171,566,2020-02-15T06:59:35Z +171,608,2020-02-15T06:59:35Z +171,625,2020-02-15T06:59:35Z +171,645,2020-02-15T06:59:35Z +171,701,2020-02-15T06:59:35Z +171,761,2020-02-15T06:59:35Z +171,779,2020-02-15T06:59:35Z +171,849,2020-02-15T06:59:35Z +171,872,2020-02-15T06:59:35Z +171,892,2020-02-15T06:59:35Z +171,898,2020-02-15T06:59:35Z +171,903,2020-02-15T06:59:35Z +171,953,2020-02-15T06:59:35Z +172,57,2020-02-15T06:59:35Z +172,100,2020-02-15T06:59:35Z +172,148,2020-02-15T06:59:35Z +172,215,2020-02-15T06:59:35Z +172,302,2020-02-15T06:59:35Z +172,345,2020-02-15T06:59:35Z +172,368,2020-02-15T06:59:35Z +172,385,2020-02-15T06:59:35Z +172,423,2020-02-15T06:59:35Z +172,487,2020-02-15T06:59:35Z +172,493,2020-02-15T06:59:35Z +172,529,2020-02-15T06:59:35Z +172,538,2020-02-15T06:59:35Z +172,567,2020-02-15T06:59:35Z +172,609,2020-02-15T06:59:35Z +172,639,2020-02-15T06:59:35Z +172,649,2020-02-15T06:59:35Z +172,661,2020-02-15T06:59:35Z +172,667,2020-02-15T06:59:35Z +172,710,2020-02-15T06:59:35Z +172,744,2020-02-15T06:59:35Z +172,758,2020-02-15T06:59:35Z +172,771,2020-02-15T06:59:35Z +172,833,2020-02-15T06:59:35Z +172,959,2020-02-15T06:59:35Z +173,49,2020-02-15T06:59:35Z +173,55,2020-02-15T06:59:35Z +173,74,2020-02-15T06:59:35Z +173,80,2020-02-15T06:59:35Z +173,106,2020-02-15T06:59:35Z +173,154,2020-02-15T06:59:35Z +173,162,2020-02-15T06:59:35Z +173,188,2020-02-15T06:59:35Z +173,235,2020-02-15T06:59:35Z +173,313,2020-02-15T06:59:35Z +173,379,2020-02-15T06:59:35Z +173,405,2020-02-15T06:59:35Z +173,491,2020-02-15T06:59:35Z +173,496,2020-02-15T06:59:35Z +173,529,2020-02-15T06:59:35Z +173,550,2020-02-15T06:59:35Z +173,564,2020-02-15T06:59:35Z +173,571,2020-02-15T06:59:35Z +173,592,2020-02-15T06:59:35Z +173,688,2020-02-15T06:59:35Z +173,753,2020-02-15T06:59:35Z +173,757,2020-02-15T06:59:35Z +173,852,2020-02-15T06:59:35Z +173,857,2020-02-15T06:59:35Z +173,921,2020-02-15T06:59:35Z +173,928,2020-02-15T06:59:35Z +173,933,2020-02-15T06:59:35Z +174,11,2020-02-15T06:59:35Z +174,61,2020-02-15T06:59:35Z +174,168,2020-02-15T06:59:35Z +174,298,2020-02-15T06:59:35Z +174,352,2020-02-15T06:59:35Z +174,442,2020-02-15T06:59:35Z +174,451,2020-02-15T06:59:35Z +174,496,2020-02-15T06:59:35Z +174,610,2020-02-15T06:59:35Z +174,618,2020-02-15T06:59:35Z +174,622,2020-02-15T06:59:35Z +174,659,2020-02-15T06:59:35Z +174,677,2020-02-15T06:59:35Z +174,705,2020-02-15T06:59:35Z +174,722,2020-02-15T06:59:35Z +174,780,2020-02-15T06:59:35Z +174,797,2020-02-15T06:59:35Z +174,809,2020-02-15T06:59:35Z +174,827,2020-02-15T06:59:35Z +174,830,2020-02-15T06:59:35Z +174,852,2020-02-15T06:59:35Z +174,853,2020-02-15T06:59:35Z +174,879,2020-02-15T06:59:35Z +174,982,2020-02-15T06:59:35Z +175,9,2020-02-15T06:59:35Z +175,29,2020-02-15T06:59:35Z +175,67,2020-02-15T06:59:35Z +175,129,2020-02-15T06:59:35Z +175,155,2020-02-15T06:59:35Z +175,190,2020-02-15T06:59:35Z +175,191,2020-02-15T06:59:35Z +175,362,2020-02-15T06:59:35Z +175,405,2020-02-15T06:59:35Z +175,424,2020-02-15T06:59:35Z +175,439,2020-02-15T06:59:35Z +175,442,2020-02-15T06:59:35Z +175,483,2020-02-15T06:59:35Z +175,591,2020-02-15T06:59:35Z +175,596,2020-02-15T06:59:35Z +175,616,2020-02-15T06:59:35Z +175,719,2020-02-15T06:59:35Z +175,729,2020-02-15T06:59:35Z +175,772,2020-02-15T06:59:35Z +175,778,2020-02-15T06:59:35Z +175,828,2020-02-15T06:59:35Z +175,842,2020-02-15T06:59:35Z +175,890,2020-02-15T06:59:35Z +175,908,2020-02-15T06:59:35Z +175,977,2020-02-15T06:59:35Z +175,978,2020-02-15T06:59:35Z +175,998,2020-02-15T06:59:35Z +176,13,2020-02-15T06:59:35Z +176,73,2020-02-15T06:59:35Z +176,89,2020-02-15T06:59:35Z +176,150,2020-02-15T06:59:35Z +176,162,2020-02-15T06:59:35Z +176,238,2020-02-15T06:59:35Z +176,252,2020-02-15T06:59:35Z +176,303,2020-02-15T06:59:35Z +176,320,2020-02-15T06:59:35Z +176,401,2020-02-15T06:59:35Z +176,417,2020-02-15T06:59:35Z +176,441,2020-02-15T06:59:35Z +176,458,2020-02-15T06:59:35Z +176,461,2020-02-15T06:59:35Z +176,517,2020-02-15T06:59:35Z +176,521,2020-02-15T06:59:35Z +176,543,2020-02-15T06:59:35Z +176,573,2020-02-15T06:59:35Z +176,699,2020-02-15T06:59:35Z +176,726,2020-02-15T06:59:35Z +176,740,2020-02-15T06:59:35Z +176,746,2020-02-15T06:59:35Z +176,758,2020-02-15T06:59:35Z +176,802,2020-02-15T06:59:35Z +176,827,2020-02-15T06:59:35Z +176,839,2020-02-15T06:59:35Z +176,859,2020-02-15T06:59:35Z +176,872,2020-02-15T06:59:35Z +176,946,2020-02-15T06:59:35Z +177,12,2020-02-15T06:59:35Z +177,39,2020-02-15T06:59:35Z +177,52,2020-02-15T06:59:35Z +177,55,2020-02-15T06:59:35Z +177,86,2020-02-15T06:59:35Z +177,175,2020-02-15T06:59:35Z +177,188,2020-02-15T06:59:35Z +177,235,2020-02-15T06:59:35Z +177,237,2020-02-15T06:59:35Z +177,289,2020-02-15T06:59:35Z +177,363,2020-02-15T06:59:35Z +177,401,2020-02-15T06:59:35Z +177,433,2020-02-15T06:59:35Z +177,458,2020-02-15T06:59:35Z +177,522,2020-02-15T06:59:35Z +177,543,2020-02-15T06:59:35Z +177,563,2020-02-15T06:59:35Z +177,649,2020-02-15T06:59:35Z +177,683,2020-02-15T06:59:35Z +177,684,2020-02-15T06:59:35Z +177,726,2020-02-15T06:59:35Z +177,751,2020-02-15T06:59:35Z +177,763,2020-02-15T06:59:35Z +177,764,2020-02-15T06:59:35Z +177,827,2020-02-15T06:59:35Z +177,910,2020-02-15T06:59:35Z +177,956,2020-02-15T06:59:35Z +178,30,2020-02-15T06:59:35Z +178,34,2020-02-15T06:59:35Z +178,109,2020-02-15T06:59:35Z +178,146,2020-02-15T06:59:35Z +178,160,2020-02-15T06:59:35Z +178,164,2020-02-15T06:59:35Z +178,194,2020-02-15T06:59:35Z +178,197,2020-02-15T06:59:35Z +178,273,2020-02-15T06:59:35Z +178,311,2020-02-15T06:59:35Z +178,397,2020-02-15T06:59:35Z +178,483,2020-02-15T06:59:35Z +178,517,2020-02-15T06:59:35Z +178,537,2020-02-15T06:59:35Z +178,587,2020-02-15T06:59:35Z +178,708,2020-02-15T06:59:35Z +178,733,2020-02-15T06:59:35Z +178,744,2020-02-15T06:59:35Z +178,762,2020-02-15T06:59:35Z +178,930,2020-02-15T06:59:35Z +178,974,2020-02-15T06:59:35Z +178,983,2020-02-15T06:59:35Z +178,1000,2020-02-15T06:59:35Z +179,24,2020-02-15T06:59:35Z +179,27,2020-02-15T06:59:35Z +179,65,2020-02-15T06:59:35Z +179,85,2020-02-15T06:59:35Z +179,109,2020-02-15T06:59:35Z +179,131,2020-02-15T06:59:35Z +179,159,2020-02-15T06:59:35Z +179,193,2020-02-15T06:59:35Z +179,250,2020-02-15T06:59:35Z +179,291,2020-02-15T06:59:35Z +179,353,2020-02-15T06:59:35Z +179,415,2020-02-15T06:59:35Z +179,463,2020-02-15T06:59:35Z +179,468,2020-02-15T06:59:35Z +179,489,2020-02-15T06:59:35Z +179,566,2020-02-15T06:59:35Z +179,588,2020-02-15T06:59:35Z +179,650,2020-02-15T06:59:35Z +179,698,2020-02-15T06:59:35Z +179,732,2020-02-15T06:59:35Z +179,737,2020-02-15T06:59:35Z +179,769,2020-02-15T06:59:35Z +179,811,2020-02-15T06:59:35Z +179,817,2020-02-15T06:59:35Z +179,852,2020-02-15T06:59:35Z +179,924,2020-02-15T06:59:35Z +179,931,2020-02-15T06:59:35Z +179,960,2020-02-15T06:59:35Z +179,976,2020-02-15T06:59:35Z +180,12,2020-02-15T06:59:35Z +180,33,2020-02-15T06:59:35Z +180,144,2020-02-15T06:59:35Z +180,195,2020-02-15T06:59:35Z +180,258,2020-02-15T06:59:35Z +180,441,2020-02-15T06:59:35Z +180,506,2020-02-15T06:59:35Z +180,561,2020-02-15T06:59:35Z +180,609,2020-02-15T06:59:35Z +180,622,2020-02-15T06:59:35Z +180,628,2020-02-15T06:59:35Z +180,657,2020-02-15T06:59:35Z +180,724,2020-02-15T06:59:35Z +180,729,2020-02-15T06:59:35Z +180,732,2020-02-15T06:59:35Z +180,777,2020-02-15T06:59:35Z +180,809,2020-02-15T06:59:35Z +180,811,2020-02-15T06:59:35Z +180,820,2020-02-15T06:59:35Z +180,824,2020-02-15T06:59:35Z +180,847,2020-02-15T06:59:35Z +180,869,2020-02-15T06:59:35Z +180,874,2020-02-15T06:59:35Z +180,955,2020-02-15T06:59:35Z +180,963,2020-02-15T06:59:35Z +181,5,2020-02-15T06:59:35Z +181,40,2020-02-15T06:59:35Z +181,74,2020-02-15T06:59:35Z +181,78,2020-02-15T06:59:35Z +181,83,2020-02-15T06:59:35Z +181,152,2020-02-15T06:59:35Z +181,195,2020-02-15T06:59:35Z +181,233,2020-02-15T06:59:35Z +181,286,2020-02-15T06:59:35Z +181,301,2020-02-15T06:59:35Z +181,311,2020-02-15T06:59:35Z +181,381,2020-02-15T06:59:35Z +181,387,2020-02-15T06:59:35Z +181,403,2020-02-15T06:59:35Z +181,409,2020-02-15T06:59:35Z +181,420,2020-02-15T06:59:35Z +181,437,2020-02-15T06:59:35Z +181,456,2020-02-15T06:59:35Z +181,507,2020-02-15T06:59:35Z +181,522,2020-02-15T06:59:35Z +181,539,2020-02-15T06:59:35Z +181,542,2020-02-15T06:59:35Z +181,546,2020-02-15T06:59:35Z +181,579,2020-02-15T06:59:35Z +181,596,2020-02-15T06:59:35Z +181,604,2020-02-15T06:59:35Z +181,609,2020-02-15T06:59:35Z +181,625,2020-02-15T06:59:35Z +181,744,2020-02-15T06:59:35Z +181,816,2020-02-15T06:59:35Z +181,836,2020-02-15T06:59:35Z +181,868,2020-02-15T06:59:35Z +181,870,2020-02-15T06:59:35Z +181,874,2020-02-15T06:59:35Z +181,892,2020-02-15T06:59:35Z +181,907,2020-02-15T06:59:35Z +181,911,2020-02-15T06:59:35Z +181,921,2020-02-15T06:59:35Z +181,991,2020-02-15T06:59:35Z +182,33,2020-02-15T06:59:35Z +182,160,2020-02-15T06:59:35Z +182,301,2020-02-15T06:59:35Z +182,324,2020-02-15T06:59:35Z +182,346,2020-02-15T06:59:35Z +182,362,2020-02-15T06:59:35Z +182,391,2020-02-15T06:59:35Z +182,413,2020-02-15T06:59:35Z +182,421,2020-02-15T06:59:35Z +182,437,2020-02-15T06:59:35Z +182,590,2020-02-15T06:59:35Z +182,639,2020-02-15T06:59:35Z +182,668,2020-02-15T06:59:35Z +182,677,2020-02-15T06:59:35Z +182,679,2020-02-15T06:59:35Z +182,695,2020-02-15T06:59:35Z +182,714,2020-02-15T06:59:35Z +182,720,2020-02-15T06:59:35Z +182,819,2020-02-15T06:59:35Z +182,828,2020-02-15T06:59:35Z +182,845,2020-02-15T06:59:35Z +182,864,2020-02-15T06:59:35Z +182,940,2020-02-15T06:59:35Z +182,990,2020-02-15T06:59:35Z +183,32,2020-02-15T06:59:35Z +183,40,2020-02-15T06:59:35Z +183,71,2020-02-15T06:59:35Z +183,113,2020-02-15T06:59:35Z +183,313,2020-02-15T06:59:35Z +183,388,2020-02-15T06:59:35Z +183,389,2020-02-15T06:59:35Z +183,390,2020-02-15T06:59:35Z +183,495,2020-02-15T06:59:35Z +183,520,2020-02-15T06:59:35Z +183,576,2020-02-15T06:59:35Z +183,636,2020-02-15T06:59:35Z +183,715,2020-02-15T06:59:35Z +183,850,2020-02-15T06:59:35Z +183,862,2020-02-15T06:59:35Z +183,914,2020-02-15T06:59:35Z +183,941,2020-02-15T06:59:35Z +183,949,2020-02-15T06:59:35Z +183,983,2020-02-15T06:59:35Z +184,35,2020-02-15T06:59:35Z +184,87,2020-02-15T06:59:35Z +184,146,2020-02-15T06:59:35Z +184,169,2020-02-15T06:59:35Z +184,221,2020-02-15T06:59:35Z +184,336,2020-02-15T06:59:35Z +184,371,2020-02-15T06:59:35Z +184,452,2020-02-15T06:59:35Z +184,486,2020-02-15T06:59:35Z +184,492,2020-02-15T06:59:35Z +184,500,2020-02-15T06:59:35Z +184,574,2020-02-15T06:59:35Z +184,580,2020-02-15T06:59:35Z +184,597,2020-02-15T06:59:35Z +184,615,2020-02-15T06:59:35Z +184,640,2020-02-15T06:59:35Z +184,642,2020-02-15T06:59:35Z +184,650,2020-02-15T06:59:35Z +184,661,2020-02-15T06:59:35Z +184,684,2020-02-15T06:59:35Z +184,745,2020-02-15T06:59:35Z +184,772,2020-02-15T06:59:35Z +184,787,2020-02-15T06:59:35Z +184,867,2020-02-15T06:59:35Z +184,959,2020-02-15T06:59:35Z +184,966,2020-02-15T06:59:35Z +184,967,2020-02-15T06:59:35Z +184,969,2020-02-15T06:59:35Z +184,985,2020-02-15T06:59:35Z +185,7,2020-02-15T06:59:35Z +185,95,2020-02-15T06:59:35Z +185,138,2020-02-15T06:59:35Z +185,265,2020-02-15T06:59:35Z +185,286,2020-02-15T06:59:35Z +185,360,2020-02-15T06:59:35Z +185,411,2020-02-15T06:59:35Z +185,427,2020-02-15T06:59:35Z +185,437,2020-02-15T06:59:35Z +185,448,2020-02-15T06:59:35Z +185,494,2020-02-15T06:59:35Z +185,510,2020-02-15T06:59:35Z +185,518,2020-02-15T06:59:35Z +185,554,2020-02-15T06:59:35Z +185,560,2020-02-15T06:59:35Z +185,571,2020-02-15T06:59:35Z +185,584,2020-02-15T06:59:35Z +185,631,2020-02-15T06:59:35Z +185,665,2020-02-15T06:59:35Z +185,694,2020-02-15T06:59:35Z +185,730,2020-02-15T06:59:35Z +185,761,2020-02-15T06:59:35Z +185,818,2020-02-15T06:59:35Z +185,845,2020-02-15T06:59:35Z +185,880,2020-02-15T06:59:35Z +185,882,2020-02-15T06:59:35Z +185,919,2020-02-15T06:59:35Z +185,920,2020-02-15T06:59:35Z +185,965,2020-02-15T06:59:35Z +185,973,2020-02-15T06:59:35Z +186,95,2020-02-15T06:59:35Z +186,187,2020-02-15T06:59:35Z +186,208,2020-02-15T06:59:35Z +186,228,2020-02-15T06:59:35Z +186,237,2020-02-15T06:59:35Z +186,422,2020-02-15T06:59:35Z +186,482,2020-02-15T06:59:35Z +186,508,2020-02-15T06:59:35Z +186,552,2020-02-15T06:59:35Z +186,579,2020-02-15T06:59:35Z +186,637,2020-02-15T06:59:35Z +186,648,2020-02-15T06:59:35Z +186,654,2020-02-15T06:59:35Z +186,729,2020-02-15T06:59:35Z +186,983,2020-02-15T06:59:35Z +186,994,2020-02-15T06:59:35Z +187,17,2020-02-15T06:59:35Z +187,25,2020-02-15T06:59:35Z +187,29,2020-02-15T06:59:35Z +187,51,2020-02-15T06:59:35Z +187,73,2020-02-15T06:59:35Z +187,76,2020-02-15T06:59:35Z +187,98,2020-02-15T06:59:35Z +187,110,2020-02-15T06:59:35Z +187,127,2020-02-15T06:59:35Z +187,168,2020-02-15T06:59:35Z +187,222,2020-02-15T06:59:35Z +187,224,2020-02-15T06:59:35Z +187,297,2020-02-15T06:59:35Z +187,354,2020-02-15T06:59:35Z +187,379,2020-02-15T06:59:35Z +187,417,2020-02-15T06:59:35Z +187,435,2020-02-15T06:59:35Z +187,441,2020-02-15T06:59:35Z +187,474,2020-02-15T06:59:35Z +187,499,2020-02-15T06:59:35Z +187,538,2020-02-15T06:59:35Z +187,548,2020-02-15T06:59:35Z +187,561,2020-02-15T06:59:35Z +187,617,2020-02-15T06:59:35Z +187,625,2020-02-15T06:59:35Z +187,664,2020-02-15T06:59:35Z +187,671,2020-02-15T06:59:35Z +187,768,2020-02-15T06:59:35Z +187,779,2020-02-15T06:59:35Z +187,906,2020-02-15T06:59:35Z +187,914,2020-02-15T06:59:35Z +187,923,2020-02-15T06:59:35Z +187,976,2020-02-15T06:59:35Z +188,1,2020-02-15T06:59:35Z +188,10,2020-02-15T06:59:35Z +188,14,2020-02-15T06:59:35Z +188,51,2020-02-15T06:59:35Z +188,102,2020-02-15T06:59:35Z +188,111,2020-02-15T06:59:35Z +188,146,2020-02-15T06:59:35Z +188,206,2020-02-15T06:59:35Z +188,223,2020-02-15T06:59:35Z +188,289,2020-02-15T06:59:35Z +188,311,2020-02-15T06:59:35Z +188,322,2020-02-15T06:59:35Z +188,338,2020-02-15T06:59:35Z +188,396,2020-02-15T06:59:35Z +188,412,2020-02-15T06:59:35Z +188,506,2020-02-15T06:59:35Z +188,517,2020-02-15T06:59:35Z +188,529,2020-02-15T06:59:35Z +188,566,2020-02-15T06:59:35Z +188,593,2020-02-15T06:59:35Z +188,606,2020-02-15T06:59:35Z +188,662,2020-02-15T06:59:35Z +188,770,2020-02-15T06:59:35Z +188,773,2020-02-15T06:59:35Z +188,774,2020-02-15T06:59:35Z +188,815,2020-02-15T06:59:35Z +188,849,2020-02-15T06:59:35Z +188,925,2020-02-15T06:59:35Z +188,988,2020-02-15T06:59:35Z +188,989,2020-02-15T06:59:35Z +189,43,2020-02-15T06:59:35Z +189,82,2020-02-15T06:59:35Z +189,171,2020-02-15T06:59:35Z +189,266,2020-02-15T06:59:35Z +189,272,2020-02-15T06:59:35Z +189,315,2020-02-15T06:59:35Z +189,378,2020-02-15T06:59:35Z +189,492,2020-02-15T06:59:35Z +189,509,2020-02-15T06:59:35Z +189,512,2020-02-15T06:59:35Z +189,519,2020-02-15T06:59:35Z +189,533,2020-02-15T06:59:35Z +189,548,2020-02-15T06:59:35Z +189,560,2020-02-15T06:59:35Z +189,628,2020-02-15T06:59:35Z +189,734,2020-02-15T06:59:35Z +189,748,2020-02-15T06:59:35Z +189,788,2020-02-15T06:59:35Z +189,820,2020-02-15T06:59:35Z +189,853,2020-02-15T06:59:35Z +189,882,2020-02-15T06:59:35Z +189,896,2020-02-15T06:59:35Z +189,899,2020-02-15T06:59:35Z +189,940,2020-02-15T06:59:35Z +190,38,2020-02-15T06:59:35Z +190,54,2020-02-15T06:59:35Z +190,62,2020-02-15T06:59:35Z +190,87,2020-02-15T06:59:35Z +190,173,2020-02-15T06:59:35Z +190,234,2020-02-15T06:59:35Z +190,253,2020-02-15T06:59:35Z +190,278,2020-02-15T06:59:35Z +190,310,2020-02-15T06:59:35Z +190,374,2020-02-15T06:59:35Z +190,411,2020-02-15T06:59:35Z +190,426,2020-02-15T06:59:35Z +190,472,2020-02-15T06:59:35Z +190,549,2020-02-15T06:59:35Z +190,562,2020-02-15T06:59:35Z +190,606,2020-02-15T06:59:35Z +190,623,2020-02-15T06:59:35Z +190,679,2020-02-15T06:59:35Z +190,682,2020-02-15T06:59:35Z +190,693,2020-02-15T06:59:35Z +190,695,2020-02-15T06:59:35Z +190,705,2020-02-15T06:59:35Z +190,708,2020-02-15T06:59:35Z +190,802,2020-02-15T06:59:35Z +190,806,2020-02-15T06:59:35Z +190,874,2020-02-15T06:59:35Z +190,959,2020-02-15T06:59:35Z +191,16,2020-02-15T06:59:35Z +191,39,2020-02-15T06:59:35Z +191,84,2020-02-15T06:59:35Z +191,185,2020-02-15T06:59:35Z +191,219,2020-02-15T06:59:35Z +191,293,2020-02-15T06:59:35Z +191,296,2020-02-15T06:59:35Z +191,378,2020-02-15T06:59:35Z +191,410,2020-02-15T06:59:35Z +191,420,2020-02-15T06:59:35Z +191,461,2020-02-15T06:59:35Z +191,544,2020-02-15T06:59:35Z +191,551,2020-02-15T06:59:35Z +191,596,2020-02-15T06:59:35Z +191,638,2020-02-15T06:59:35Z +191,668,2020-02-15T06:59:35Z +191,692,2020-02-15T06:59:35Z +191,775,2020-02-15T06:59:35Z +191,801,2020-02-15T06:59:35Z +191,819,2020-02-15T06:59:35Z +191,827,2020-02-15T06:59:35Z +191,830,2020-02-15T06:59:35Z +191,834,2020-02-15T06:59:35Z +191,849,2020-02-15T06:59:35Z +191,858,2020-02-15T06:59:35Z +191,914,2020-02-15T06:59:35Z +191,958,2020-02-15T06:59:35Z +191,969,2020-02-15T06:59:35Z +191,971,2020-02-15T06:59:35Z +191,993,2020-02-15T06:59:35Z +192,16,2020-02-15T06:59:35Z +192,69,2020-02-15T06:59:35Z +192,117,2020-02-15T06:59:35Z +192,155,2020-02-15T06:59:35Z +192,166,2020-02-15T06:59:35Z +192,179,2020-02-15T06:59:35Z +192,214,2020-02-15T06:59:35Z +192,361,2020-02-15T06:59:35Z +192,367,2020-02-15T06:59:35Z +192,426,2020-02-15T06:59:35Z +192,465,2020-02-15T06:59:35Z +192,470,2020-02-15T06:59:35Z +192,475,2020-02-15T06:59:35Z +192,485,2020-02-15T06:59:35Z +192,541,2020-02-15T06:59:35Z +192,578,2020-02-15T06:59:35Z +192,592,2020-02-15T06:59:35Z +192,614,2020-02-15T06:59:35Z +192,618,2020-02-15T06:59:35Z +192,622,2020-02-15T06:59:35Z +192,674,2020-02-15T06:59:35Z +192,677,2020-02-15T06:59:35Z +192,680,2020-02-15T06:59:35Z +192,682,2020-02-15T06:59:35Z +192,708,2020-02-15T06:59:35Z +192,711,2020-02-15T06:59:35Z +192,747,2020-02-15T06:59:35Z +192,763,2020-02-15T06:59:35Z +192,819,2020-02-15T06:59:35Z +193,44,2020-02-15T06:59:35Z +193,80,2020-02-15T06:59:35Z +193,103,2020-02-15T06:59:35Z +193,109,2020-02-15T06:59:35Z +193,119,2020-02-15T06:59:35Z +193,141,2020-02-15T06:59:35Z +193,164,2020-02-15T06:59:35Z +193,291,2020-02-15T06:59:35Z +193,352,2020-02-15T06:59:35Z +193,358,2020-02-15T06:59:35Z +193,376,2020-02-15T06:59:35Z +193,412,2020-02-15T06:59:35Z +193,462,2020-02-15T06:59:35Z +193,689,2020-02-15T06:59:35Z +193,709,2020-02-15T06:59:35Z +193,745,2020-02-15T06:59:35Z +193,807,2020-02-15T06:59:35Z +193,828,2020-02-15T06:59:35Z +193,834,2020-02-15T06:59:35Z +193,851,2020-02-15T06:59:35Z +193,937,2020-02-15T06:59:35Z +193,953,2020-02-15T06:59:35Z +193,960,2020-02-15T06:59:35Z +194,9,2020-02-15T06:59:35Z +194,42,2020-02-15T06:59:35Z +194,67,2020-02-15T06:59:35Z +194,86,2020-02-15T06:59:35Z +194,88,2020-02-15T06:59:35Z +194,98,2020-02-15T06:59:35Z +194,135,2020-02-15T06:59:35Z +194,161,2020-02-15T06:59:35Z +194,163,2020-02-15T06:59:35Z +194,215,2020-02-15T06:59:35Z +194,232,2020-02-15T06:59:35Z +194,352,2020-02-15T06:59:35Z +194,415,2020-02-15T06:59:35Z +194,486,2020-02-15T06:59:35Z +194,498,2020-02-15T06:59:35Z +194,531,2020-02-15T06:59:35Z +194,719,2020-02-15T06:59:35Z +194,738,2020-02-15T06:59:35Z +194,786,2020-02-15T06:59:35Z +194,872,2020-02-15T06:59:35Z +194,938,2020-02-15T06:59:35Z +194,940,2020-02-15T06:59:35Z +195,129,2020-02-15T06:59:35Z +195,130,2020-02-15T06:59:35Z +195,141,2020-02-15T06:59:35Z +195,144,2020-02-15T06:59:35Z +195,298,2020-02-15T06:59:35Z +195,359,2020-02-15T06:59:35Z +195,361,2020-02-15T06:59:35Z +195,392,2020-02-15T06:59:35Z +195,403,2020-02-15T06:59:35Z +195,494,2020-02-15T06:59:35Z +195,520,2020-02-15T06:59:35Z +195,534,2020-02-15T06:59:35Z +195,560,2020-02-15T06:59:35Z +195,592,2020-02-15T06:59:35Z +195,649,2020-02-15T06:59:35Z +195,658,2020-02-15T06:59:35Z +195,673,2020-02-15T06:59:35Z +195,677,2020-02-15T06:59:35Z +195,706,2020-02-15T06:59:35Z +195,738,2020-02-15T06:59:35Z +195,769,2020-02-15T06:59:35Z +195,781,2020-02-15T06:59:35Z +195,794,2020-02-15T06:59:35Z +195,813,2020-02-15T06:59:35Z +195,869,2020-02-15T06:59:35Z +195,885,2020-02-15T06:59:35Z +195,962,2020-02-15T06:59:35Z +196,64,2020-02-15T06:59:35Z +196,122,2020-02-15T06:59:35Z +196,156,2020-02-15T06:59:35Z +196,169,2020-02-15T06:59:35Z +196,276,2020-02-15T06:59:35Z +196,284,2020-02-15T06:59:35Z +196,303,2020-02-15T06:59:35Z +196,324,2020-02-15T06:59:35Z +196,423,2020-02-15T06:59:35Z +196,473,2020-02-15T06:59:35Z +196,484,2020-02-15T06:59:35Z +196,515,2020-02-15T06:59:35Z +196,524,2020-02-15T06:59:35Z +196,541,2020-02-15T06:59:35Z +196,560,2020-02-15T06:59:35Z +196,575,2020-02-15T06:59:35Z +196,576,2020-02-15T06:59:35Z +196,587,2020-02-15T06:59:35Z +196,615,2020-02-15T06:59:35Z +196,635,2020-02-15T06:59:35Z +196,684,2020-02-15T06:59:35Z +196,795,2020-02-15T06:59:35Z +196,815,2020-02-15T06:59:35Z +196,833,2020-02-15T06:59:35Z +196,837,2020-02-15T06:59:35Z +196,906,2020-02-15T06:59:35Z +196,908,2020-02-15T06:59:35Z +196,919,2020-02-15T06:59:35Z +196,939,2020-02-15T06:59:35Z +196,972,2020-02-15T06:59:35Z +197,6,2020-02-15T06:59:35Z +197,29,2020-02-15T06:59:35Z +197,63,2020-02-15T06:59:35Z +197,123,2020-02-15T06:59:35Z +197,129,2020-02-15T06:59:35Z +197,147,2020-02-15T06:59:35Z +197,164,2020-02-15T06:59:35Z +197,189,2020-02-15T06:59:35Z +197,243,2020-02-15T06:59:35Z +197,249,2020-02-15T06:59:35Z +197,258,2020-02-15T06:59:35Z +197,364,2020-02-15T06:59:35Z +197,369,2020-02-15T06:59:35Z +197,370,2020-02-15T06:59:35Z +197,418,2020-02-15T06:59:35Z +197,522,2020-02-15T06:59:35Z +197,531,2020-02-15T06:59:35Z +197,554,2020-02-15T06:59:35Z +197,598,2020-02-15T06:59:35Z +197,628,2020-02-15T06:59:35Z +197,691,2020-02-15T06:59:35Z +197,724,2020-02-15T06:59:35Z +197,746,2020-02-15T06:59:35Z +197,752,2020-02-15T06:59:35Z +197,758,2020-02-15T06:59:35Z +197,769,2020-02-15T06:59:35Z +197,815,2020-02-15T06:59:35Z +197,916,2020-02-15T06:59:35Z +197,950,2020-02-15T06:59:35Z +197,967,2020-02-15T06:59:35Z +197,974,2020-02-15T06:59:35Z +197,979,2020-02-15T06:59:35Z +197,995,2020-02-15T06:59:35Z +198,1,2020-02-15T06:59:35Z +198,109,2020-02-15T06:59:35Z +198,125,2020-02-15T06:59:35Z +198,186,2020-02-15T06:59:35Z +198,262,2020-02-15T06:59:35Z +198,264,2020-02-15T06:59:35Z +198,303,2020-02-15T06:59:35Z +198,309,2020-02-15T06:59:35Z +198,311,2020-02-15T06:59:35Z +198,329,2020-02-15T06:59:35Z +198,347,2020-02-15T06:59:35Z +198,379,2020-02-15T06:59:35Z +198,395,2020-02-15T06:59:35Z +198,406,2020-02-15T06:59:35Z +198,450,2020-02-15T06:59:35Z +198,464,2020-02-15T06:59:35Z +198,482,2020-02-15T06:59:35Z +198,499,2020-02-15T06:59:35Z +198,536,2020-02-15T06:59:35Z +198,541,2020-02-15T06:59:35Z +198,545,2020-02-15T06:59:35Z +198,555,2020-02-15T06:59:35Z +198,568,2020-02-15T06:59:35Z +198,570,2020-02-15T06:59:35Z +198,588,2020-02-15T06:59:35Z +198,597,2020-02-15T06:59:35Z +198,628,2020-02-15T06:59:35Z +198,745,2020-02-15T06:59:35Z +198,758,2020-02-15T06:59:35Z +198,796,2020-02-15T06:59:35Z +198,806,2020-02-15T06:59:35Z +198,817,2020-02-15T06:59:35Z +198,843,2020-02-15T06:59:35Z +198,858,2020-02-15T06:59:35Z +198,871,2020-02-15T06:59:35Z +198,886,2020-02-15T06:59:35Z +198,892,2020-02-15T06:59:35Z +198,924,2020-02-15T06:59:35Z +198,952,2020-02-15T06:59:35Z +198,997,2020-02-15T06:59:35Z +199,67,2020-02-15T06:59:35Z +199,84,2020-02-15T06:59:35Z +199,145,2020-02-15T06:59:35Z +199,159,2020-02-15T06:59:35Z +199,216,2020-02-15T06:59:35Z +199,432,2020-02-15T06:59:35Z +199,541,2020-02-15T06:59:35Z +199,604,2020-02-15T06:59:35Z +199,640,2020-02-15T06:59:35Z +199,689,2020-02-15T06:59:35Z +199,730,2020-02-15T06:59:35Z +199,784,2020-02-15T06:59:35Z +199,785,2020-02-15T06:59:35Z +199,886,2020-02-15T06:59:35Z +199,953,2020-02-15T06:59:35Z +200,5,2020-02-15T06:59:35Z +200,49,2020-02-15T06:59:35Z +200,80,2020-02-15T06:59:35Z +200,116,2020-02-15T06:59:35Z +200,121,2020-02-15T06:59:35Z +200,149,2020-02-15T06:59:35Z +200,346,2020-02-15T06:59:35Z +200,419,2020-02-15T06:59:35Z +200,462,2020-02-15T06:59:35Z +200,465,2020-02-15T06:59:35Z +200,474,2020-02-15T06:59:35Z +200,537,2020-02-15T06:59:35Z +200,538,2020-02-15T06:59:35Z +200,544,2020-02-15T06:59:35Z +200,714,2020-02-15T06:59:35Z +200,879,2020-02-15T06:59:35Z +200,912,2020-02-15T06:59:35Z +200,945,2020-02-15T06:59:35Z +200,958,2020-02-15T06:59:35Z +200,993,2020-02-15T06:59:35Z diff --git a/drivers/csv/testdata/sakila-csv/film_category.csv b/drivers/csv/testdata/sakila-csv/film_category.csv new file mode 100644 index 00000000..132c1a3b --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/film_category.csv @@ -0,0 +1,1001 @@ +film_id,category_id,last_update +1,6,2020-02-15T06:59:35Z +2,11,2020-02-15T06:59:35Z +3,6,2020-02-15T06:59:35Z +4,11,2020-02-15T06:59:35Z +5,8,2020-02-15T06:59:35Z +6,9,2020-02-15T06:59:35Z +7,5,2020-02-15T06:59:35Z +8,11,2020-02-15T06:59:35Z +9,11,2020-02-15T06:59:35Z +10,15,2020-02-15T06:59:35Z +11,9,2020-02-15T06:59:35Z +12,12,2020-02-15T06:59:35Z +13,11,2020-02-15T06:59:35Z +14,4,2020-02-15T06:59:35Z +15,9,2020-02-15T06:59:35Z +16,9,2020-02-15T06:59:35Z +17,12,2020-02-15T06:59:35Z +18,2,2020-02-15T06:59:35Z +19,1,2020-02-15T06:59:35Z +20,12,2020-02-15T06:59:35Z +21,1,2020-02-15T06:59:35Z +22,13,2020-02-15T06:59:35Z +23,2,2020-02-15T06:59:35Z +24,11,2020-02-15T06:59:35Z +25,13,2020-02-15T06:59:35Z +26,14,2020-02-15T06:59:35Z +27,15,2020-02-15T06:59:35Z +28,5,2020-02-15T06:59:35Z +29,1,2020-02-15T06:59:35Z +30,11,2020-02-15T06:59:35Z +31,8,2020-02-15T06:59:35Z +32,13,2020-02-15T06:59:35Z +33,7,2020-02-15T06:59:35Z +34,11,2020-02-15T06:59:35Z +35,11,2020-02-15T06:59:35Z +36,2,2020-02-15T06:59:35Z +37,4,2020-02-15T06:59:35Z +38,1,2020-02-15T06:59:35Z +39,14,2020-02-15T06:59:35Z +40,6,2020-02-15T06:59:35Z +41,16,2020-02-15T06:59:35Z +42,15,2020-02-15T06:59:35Z +43,8,2020-02-15T06:59:35Z +44,14,2020-02-15T06:59:35Z +45,13,2020-02-15T06:59:35Z +46,10,2020-02-15T06:59:35Z +47,9,2020-02-15T06:59:35Z +48,3,2020-02-15T06:59:35Z +49,14,2020-02-15T06:59:35Z +50,8,2020-02-15T06:59:35Z +51,12,2020-02-15T06:59:35Z +52,9,2020-02-15T06:59:35Z +53,8,2020-02-15T06:59:35Z +54,12,2020-02-15T06:59:35Z +55,14,2020-02-15T06:59:35Z +56,1,2020-02-15T06:59:35Z +57,16,2020-02-15T06:59:35Z +58,6,2020-02-15T06:59:35Z +59,3,2020-02-15T06:59:35Z +60,4,2020-02-15T06:59:35Z +61,7,2020-02-15T06:59:35Z +62,6,2020-02-15T06:59:35Z +63,8,2020-02-15T06:59:35Z +64,7,2020-02-15T06:59:35Z +65,11,2020-02-15T06:59:35Z +66,3,2020-02-15T06:59:35Z +67,1,2020-02-15T06:59:35Z +68,3,2020-02-15T06:59:35Z +69,14,2020-02-15T06:59:35Z +70,2,2020-02-15T06:59:35Z +71,8,2020-02-15T06:59:35Z +72,6,2020-02-15T06:59:35Z +73,14,2020-02-15T06:59:35Z +74,12,2020-02-15T06:59:35Z +75,16,2020-02-15T06:59:35Z +76,12,2020-02-15T06:59:35Z +77,13,2020-02-15T06:59:35Z +78,2,2020-02-15T06:59:35Z +79,7,2020-02-15T06:59:35Z +80,8,2020-02-15T06:59:35Z +81,14,2020-02-15T06:59:35Z +82,8,2020-02-15T06:59:35Z +83,8,2020-02-15T06:59:35Z +84,16,2020-02-15T06:59:35Z +85,6,2020-02-15T06:59:35Z +86,12,2020-02-15T06:59:35Z +87,16,2020-02-15T06:59:35Z +88,16,2020-02-15T06:59:35Z +89,2,2020-02-15T06:59:35Z +90,13,2020-02-15T06:59:35Z +91,4,2020-02-15T06:59:35Z +92,11,2020-02-15T06:59:35Z +93,13,2020-02-15T06:59:35Z +94,8,2020-02-15T06:59:35Z +95,13,2020-02-15T06:59:35Z +96,13,2020-02-15T06:59:35Z +97,1,2020-02-15T06:59:35Z +98,7,2020-02-15T06:59:35Z +99,5,2020-02-15T06:59:35Z +100,9,2020-02-15T06:59:35Z +101,6,2020-02-15T06:59:35Z +102,15,2020-02-15T06:59:35Z +103,16,2020-02-15T06:59:35Z +104,9,2020-02-15T06:59:35Z +105,1,2020-02-15T06:59:35Z +106,10,2020-02-15T06:59:35Z +107,7,2020-02-15T06:59:35Z +108,13,2020-02-15T06:59:35Z +109,13,2020-02-15T06:59:35Z +110,3,2020-02-15T06:59:35Z +111,1,2020-02-15T06:59:35Z +112,9,2020-02-15T06:59:35Z +113,15,2020-02-15T06:59:35Z +114,14,2020-02-15T06:59:35Z +115,1,2020-02-15T06:59:35Z +116,4,2020-02-15T06:59:35Z +117,10,2020-02-15T06:59:35Z +118,2,2020-02-15T06:59:35Z +119,5,2020-02-15T06:59:35Z +120,15,2020-02-15T06:59:35Z +121,2,2020-02-15T06:59:35Z +122,11,2020-02-15T06:59:35Z +123,16,2020-02-15T06:59:35Z +124,3,2020-02-15T06:59:35Z +125,16,2020-02-15T06:59:35Z +126,1,2020-02-15T06:59:35Z +127,5,2020-02-15T06:59:35Z +128,9,2020-02-15T06:59:35Z +129,6,2020-02-15T06:59:35Z +130,1,2020-02-15T06:59:35Z +131,4,2020-02-15T06:59:35Z +132,14,2020-02-15T06:59:35Z +133,12,2020-02-15T06:59:35Z +134,2,2020-02-15T06:59:35Z +135,15,2020-02-15T06:59:35Z +136,13,2020-02-15T06:59:35Z +137,14,2020-02-15T06:59:35Z +138,14,2020-02-15T06:59:35Z +139,8,2020-02-15T06:59:35Z +140,14,2020-02-15T06:59:35Z +141,10,2020-02-15T06:59:35Z +142,6,2020-02-15T06:59:35Z +143,7,2020-02-15T06:59:35Z +144,13,2020-02-15T06:59:35Z +145,8,2020-02-15T06:59:35Z +146,7,2020-02-15T06:59:35Z +147,8,2020-02-15T06:59:35Z +148,9,2020-02-15T06:59:35Z +149,3,2020-02-15T06:59:35Z +150,6,2020-02-15T06:59:35Z +151,14,2020-02-15T06:59:35Z +152,3,2020-02-15T06:59:35Z +153,14,2020-02-15T06:59:35Z +154,2,2020-02-15T06:59:35Z +155,13,2020-02-15T06:59:35Z +156,6,2020-02-15T06:59:35Z +157,3,2020-02-15T06:59:35Z +158,12,2020-02-15T06:59:35Z +159,5,2020-02-15T06:59:35Z +160,2,2020-02-15T06:59:35Z +161,12,2020-02-15T06:59:35Z +162,1,2020-02-15T06:59:35Z +163,13,2020-02-15T06:59:35Z +164,6,2020-02-15T06:59:35Z +165,14,2020-02-15T06:59:35Z +166,4,2020-02-15T06:59:35Z +167,16,2020-02-15T06:59:35Z +168,3,2020-02-15T06:59:35Z +169,16,2020-02-15T06:59:35Z +170,9,2020-02-15T06:59:35Z +171,11,2020-02-15T06:59:35Z +172,7,2020-02-15T06:59:35Z +173,7,2020-02-15T06:59:35Z +174,12,2020-02-15T06:59:35Z +175,8,2020-02-15T06:59:35Z +176,15,2020-02-15T06:59:35Z +177,14,2020-02-15T06:59:35Z +178,5,2020-02-15T06:59:35Z +179,7,2020-02-15T06:59:35Z +180,4,2020-02-15T06:59:35Z +181,16,2020-02-15T06:59:35Z +182,5,2020-02-15T06:59:35Z +183,8,2020-02-15T06:59:35Z +184,4,2020-02-15T06:59:35Z +185,9,2020-02-15T06:59:35Z +186,7,2020-02-15T06:59:35Z +187,15,2020-02-15T06:59:35Z +188,5,2020-02-15T06:59:35Z +189,10,2020-02-15T06:59:35Z +190,4,2020-02-15T06:59:35Z +191,3,2020-02-15T06:59:35Z +192,9,2020-02-15T06:59:35Z +193,2,2020-02-15T06:59:35Z +194,1,2020-02-15T06:59:35Z +195,14,2020-02-15T06:59:35Z +196,4,2020-02-15T06:59:35Z +197,15,2020-02-15T06:59:35Z +198,9,2020-02-15T06:59:35Z +199,6,2020-02-15T06:59:35Z +200,10,2020-02-15T06:59:35Z +201,9,2020-02-15T06:59:35Z +202,5,2020-02-15T06:59:35Z +203,14,2020-02-15T06:59:35Z +204,7,2020-02-15T06:59:35Z +205,1,2020-02-15T06:59:35Z +206,6,2020-02-15T06:59:35Z +207,9,2020-02-15T06:59:35Z +208,2,2020-02-15T06:59:35Z +209,7,2020-02-15T06:59:35Z +210,1,2020-02-15T06:59:35Z +211,10,2020-02-15T06:59:35Z +212,1,2020-02-15T06:59:35Z +213,8,2020-02-15T06:59:35Z +214,3,2020-02-15T06:59:35Z +215,10,2020-02-15T06:59:35Z +216,13,2020-02-15T06:59:35Z +217,10,2020-02-15T06:59:35Z +218,7,2020-02-15T06:59:35Z +219,6,2020-02-15T06:59:35Z +220,12,2020-02-15T06:59:35Z +221,6,2020-02-15T06:59:35Z +222,11,2020-02-15T06:59:35Z +223,2,2020-02-15T06:59:35Z +224,16,2020-02-15T06:59:35Z +225,7,2020-02-15T06:59:35Z +226,13,2020-02-15T06:59:35Z +227,10,2020-02-15T06:59:35Z +228,4,2020-02-15T06:59:35Z +229,1,2020-02-15T06:59:35Z +230,7,2020-02-15T06:59:35Z +231,8,2020-02-15T06:59:35Z +232,10,2020-02-15T06:59:35Z +233,16,2020-02-15T06:59:35Z +234,14,2020-02-15T06:59:35Z +235,14,2020-02-15T06:59:35Z +236,10,2020-02-15T06:59:35Z +237,15,2020-02-15T06:59:35Z +238,3,2020-02-15T06:59:35Z +239,2,2020-02-15T06:59:35Z +240,14,2020-02-15T06:59:35Z +241,2,2020-02-15T06:59:35Z +242,5,2020-02-15T06:59:35Z +243,2,2020-02-15T06:59:35Z +244,12,2020-02-15T06:59:35Z +245,2,2020-02-15T06:59:35Z +246,9,2020-02-15T06:59:35Z +247,5,2020-02-15T06:59:35Z +248,6,2020-02-15T06:59:35Z +249,4,2020-02-15T06:59:35Z +250,1,2020-02-15T06:59:35Z +251,13,2020-02-15T06:59:35Z +252,1,2020-02-15T06:59:35Z +253,1,2020-02-15T06:59:35Z +254,15,2020-02-15T06:59:35Z +255,12,2020-02-15T06:59:35Z +256,15,2020-02-15T06:59:35Z +257,16,2020-02-15T06:59:35Z +258,11,2020-02-15T06:59:35Z +259,2,2020-02-15T06:59:35Z +260,15,2020-02-15T06:59:35Z +261,6,2020-02-15T06:59:35Z +262,8,2020-02-15T06:59:35Z +263,15,2020-02-15T06:59:35Z +264,10,2020-02-15T06:59:35Z +265,5,2020-02-15T06:59:35Z +266,4,2020-02-15T06:59:35Z +267,13,2020-02-15T06:59:35Z +268,2,2020-02-15T06:59:35Z +269,8,2020-02-15T06:59:35Z +270,13,2020-02-15T06:59:35Z +271,1,2020-02-15T06:59:35Z +272,7,2020-02-15T06:59:35Z +273,8,2020-02-15T06:59:35Z +274,6,2020-02-15T06:59:35Z +275,11,2020-02-15T06:59:35Z +276,5,2020-02-15T06:59:35Z +277,11,2020-02-15T06:59:35Z +278,12,2020-02-15T06:59:35Z +279,15,2020-02-15T06:59:35Z +280,3,2020-02-15T06:59:35Z +281,10,2020-02-15T06:59:35Z +282,7,2020-02-15T06:59:35Z +283,13,2020-02-15T06:59:35Z +284,12,2020-02-15T06:59:35Z +285,14,2020-02-15T06:59:35Z +286,16,2020-02-15T06:59:35Z +287,1,2020-02-15T06:59:35Z +288,16,2020-02-15T06:59:35Z +289,13,2020-02-15T06:59:35Z +290,9,2020-02-15T06:59:35Z +291,15,2020-02-15T06:59:35Z +292,1,2020-02-15T06:59:35Z +293,15,2020-02-15T06:59:35Z +294,16,2020-02-15T06:59:35Z +295,6,2020-02-15T06:59:35Z +296,14,2020-02-15T06:59:35Z +297,4,2020-02-15T06:59:35Z +298,14,2020-02-15T06:59:35Z +299,16,2020-02-15T06:59:35Z +300,2,2020-02-15T06:59:35Z +301,11,2020-02-15T06:59:35Z +302,10,2020-02-15T06:59:35Z +303,1,2020-02-15T06:59:35Z +304,3,2020-02-15T06:59:35Z +305,13,2020-02-15T06:59:35Z +306,10,2020-02-15T06:59:35Z +307,16,2020-02-15T06:59:35Z +308,5,2020-02-15T06:59:35Z +309,8,2020-02-15T06:59:35Z +310,10,2020-02-15T06:59:35Z +311,9,2020-02-15T06:59:35Z +312,14,2020-02-15T06:59:35Z +313,11,2020-02-15T06:59:35Z +314,2,2020-02-15T06:59:35Z +315,8,2020-02-15T06:59:35Z +316,10,2020-02-15T06:59:35Z +317,5,2020-02-15T06:59:35Z +318,1,2020-02-15T06:59:35Z +319,14,2020-02-15T06:59:35Z +320,13,2020-02-15T06:59:35Z +321,13,2020-02-15T06:59:35Z +322,15,2020-02-15T06:59:35Z +323,15,2020-02-15T06:59:35Z +324,5,2020-02-15T06:59:35Z +325,2,2020-02-15T06:59:35Z +326,2,2020-02-15T06:59:35Z +327,1,2020-02-15T06:59:35Z +328,3,2020-02-15T06:59:35Z +329,1,2020-02-15T06:59:35Z +330,2,2020-02-15T06:59:35Z +331,10,2020-02-15T06:59:35Z +332,5,2020-02-15T06:59:35Z +333,12,2020-02-15T06:59:35Z +334,11,2020-02-15T06:59:35Z +335,5,2020-02-15T06:59:35Z +336,6,2020-02-15T06:59:35Z +337,9,2020-02-15T06:59:35Z +338,14,2020-02-15T06:59:35Z +339,16,2020-02-15T06:59:35Z +340,13,2020-02-15T06:59:35Z +341,4,2020-02-15T06:59:35Z +342,16,2020-02-15T06:59:35Z +343,3,2020-02-15T06:59:35Z +344,3,2020-02-15T06:59:35Z +345,8,2020-02-15T06:59:35Z +346,4,2020-02-15T06:59:35Z +347,16,2020-02-15T06:59:35Z +348,8,2020-02-15T06:59:35Z +349,2,2020-02-15T06:59:35Z +350,14,2020-02-15T06:59:35Z +351,11,2020-02-15T06:59:35Z +352,10,2020-02-15T06:59:35Z +353,9,2020-02-15T06:59:35Z +354,3,2020-02-15T06:59:35Z +355,2,2020-02-15T06:59:35Z +356,3,2020-02-15T06:59:35Z +357,4,2020-02-15T06:59:35Z +358,4,2020-02-15T06:59:35Z +359,8,2020-02-15T06:59:35Z +360,1,2020-02-15T06:59:35Z +361,15,2020-02-15T06:59:35Z +362,10,2020-02-15T06:59:35Z +363,12,2020-02-15T06:59:35Z +364,13,2020-02-15T06:59:35Z +365,5,2020-02-15T06:59:35Z +366,7,2020-02-15T06:59:35Z +367,14,2020-02-15T06:59:35Z +368,7,2020-02-15T06:59:35Z +369,14,2020-02-15T06:59:35Z +370,3,2020-02-15T06:59:35Z +371,1,2020-02-15T06:59:35Z +372,15,2020-02-15T06:59:35Z +373,3,2020-02-15T06:59:35Z +374,14,2020-02-15T06:59:35Z +375,1,2020-02-15T06:59:35Z +376,9,2020-02-15T06:59:35Z +377,8,2020-02-15T06:59:35Z +378,12,2020-02-15T06:59:35Z +379,7,2020-02-15T06:59:35Z +380,9,2020-02-15T06:59:35Z +381,10,2020-02-15T06:59:35Z +382,10,2020-02-15T06:59:35Z +383,15,2020-02-15T06:59:35Z +384,12,2020-02-15T06:59:35Z +385,5,2020-02-15T06:59:35Z +386,16,2020-02-15T06:59:35Z +387,10,2020-02-15T06:59:35Z +388,5,2020-02-15T06:59:35Z +389,15,2020-02-15T06:59:35Z +390,14,2020-02-15T06:59:35Z +391,8,2020-02-15T06:59:35Z +392,3,2020-02-15T06:59:35Z +393,6,2020-02-15T06:59:35Z +394,14,2020-02-15T06:59:35Z +395,1,2020-02-15T06:59:35Z +396,7,2020-02-15T06:59:35Z +397,14,2020-02-15T06:59:35Z +398,12,2020-02-15T06:59:35Z +399,9,2020-02-15T06:59:35Z +400,6,2020-02-15T06:59:35Z +401,7,2020-02-15T06:59:35Z +402,2,2020-02-15T06:59:35Z +403,7,2020-02-15T06:59:35Z +404,5,2020-02-15T06:59:35Z +405,16,2020-02-15T06:59:35Z +406,10,2020-02-15T06:59:35Z +407,6,2020-02-15T06:59:35Z +408,10,2020-02-15T06:59:35Z +409,3,2020-02-15T06:59:35Z +410,5,2020-02-15T06:59:35Z +411,12,2020-02-15T06:59:35Z +412,6,2020-02-15T06:59:35Z +413,5,2020-02-15T06:59:35Z +414,9,2020-02-15T06:59:35Z +415,11,2020-02-15T06:59:35Z +416,9,2020-02-15T06:59:35Z +417,1,2020-02-15T06:59:35Z +418,7,2020-02-15T06:59:35Z +419,8,2020-02-15T06:59:35Z +420,15,2020-02-15T06:59:35Z +421,9,2020-02-15T06:59:35Z +422,14,2020-02-15T06:59:35Z +423,3,2020-02-15T06:59:35Z +424,3,2020-02-15T06:59:35Z +425,4,2020-02-15T06:59:35Z +426,12,2020-02-15T06:59:35Z +427,6,2020-02-15T06:59:35Z +428,8,2020-02-15T06:59:35Z +429,15,2020-02-15T06:59:35Z +430,2,2020-02-15T06:59:35Z +431,9,2020-02-15T06:59:35Z +432,4,2020-02-15T06:59:35Z +433,2,2020-02-15T06:59:35Z +434,16,2020-02-15T06:59:35Z +435,9,2020-02-15T06:59:35Z +436,13,2020-02-15T06:59:35Z +437,8,2020-02-15T06:59:35Z +438,10,2020-02-15T06:59:35Z +439,7,2020-02-15T06:59:35Z +440,9,2020-02-15T06:59:35Z +441,6,2020-02-15T06:59:35Z +442,8,2020-02-15T06:59:35Z +443,5,2020-02-15T06:59:35Z +444,5,2020-02-15T06:59:35Z +445,4,2020-02-15T06:59:35Z +446,15,2020-02-15T06:59:35Z +447,10,2020-02-15T06:59:35Z +448,13,2020-02-15T06:59:35Z +449,14,2020-02-15T06:59:35Z +450,3,2020-02-15T06:59:35Z +451,16,2020-02-15T06:59:35Z +452,9,2020-02-15T06:59:35Z +453,15,2020-02-15T06:59:35Z +454,12,2020-02-15T06:59:35Z +455,9,2020-02-15T06:59:35Z +456,2,2020-02-15T06:59:35Z +457,6,2020-02-15T06:59:35Z +458,8,2020-02-15T06:59:35Z +459,9,2020-02-15T06:59:35Z +460,9,2020-02-15T06:59:35Z +461,2,2020-02-15T06:59:35Z +462,12,2020-02-15T06:59:35Z +463,15,2020-02-15T06:59:35Z +464,2,2020-02-15T06:59:35Z +465,13,2020-02-15T06:59:35Z +466,6,2020-02-15T06:59:35Z +467,9,2020-02-15T06:59:35Z +468,3,2020-02-15T06:59:35Z +469,4,2020-02-15T06:59:35Z +470,2,2020-02-15T06:59:35Z +471,4,2020-02-15T06:59:35Z +472,16,2020-02-15T06:59:35Z +473,7,2020-02-15T06:59:35Z +474,15,2020-02-15T06:59:35Z +475,11,2020-02-15T06:59:35Z +476,8,2020-02-15T06:59:35Z +477,12,2020-02-15T06:59:35Z +478,5,2020-02-15T06:59:35Z +479,8,2020-02-15T06:59:35Z +480,4,2020-02-15T06:59:35Z +481,13,2020-02-15T06:59:35Z +482,4,2020-02-15T06:59:35Z +483,10,2020-02-15T06:59:35Z +484,4,2020-02-15T06:59:35Z +485,3,2020-02-15T06:59:35Z +486,9,2020-02-15T06:59:35Z +487,4,2020-02-15T06:59:35Z +488,15,2020-02-15T06:59:35Z +489,2,2020-02-15T06:59:35Z +490,13,2020-02-15T06:59:35Z +491,3,2020-02-15T06:59:35Z +492,13,2020-02-15T06:59:35Z +493,9,2020-02-15T06:59:36Z +494,11,2020-02-15T06:59:36Z +495,11,2020-02-15T06:59:36Z +496,16,2020-02-15T06:59:36Z +497,6,2020-02-15T06:59:36Z +498,8,2020-02-15T06:59:36Z +499,8,2020-02-15T06:59:36Z +500,9,2020-02-15T06:59:36Z +501,1,2020-02-15T06:59:36Z +502,5,2020-02-15T06:59:36Z +503,15,2020-02-15T06:59:36Z +504,7,2020-02-15T06:59:36Z +505,3,2020-02-15T06:59:36Z +506,11,2020-02-15T06:59:36Z +507,10,2020-02-15T06:59:36Z +508,10,2020-02-15T06:59:36Z +509,3,2020-02-15T06:59:36Z +510,2,2020-02-15T06:59:36Z +511,1,2020-02-15T06:59:36Z +512,4,2020-02-15T06:59:36Z +513,16,2020-02-15T06:59:36Z +514,7,2020-02-15T06:59:36Z +515,3,2020-02-15T06:59:36Z +516,12,2020-02-15T06:59:36Z +517,15,2020-02-15T06:59:36Z +518,16,2020-02-15T06:59:36Z +519,15,2020-02-15T06:59:36Z +520,14,2020-02-15T06:59:36Z +521,7,2020-02-15T06:59:36Z +522,5,2020-02-15T06:59:36Z +523,4,2020-02-15T06:59:36Z +524,5,2020-02-15T06:59:36Z +525,4,2020-02-15T06:59:36Z +526,16,2020-02-15T06:59:36Z +527,11,2020-02-15T06:59:36Z +528,8,2020-02-15T06:59:36Z +529,5,2020-02-15T06:59:36Z +530,1,2020-02-15T06:59:36Z +531,9,2020-02-15T06:59:36Z +532,15,2020-02-15T06:59:36Z +533,9,2020-02-15T06:59:36Z +534,8,2020-02-15T06:59:36Z +535,11,2020-02-15T06:59:36Z +536,4,2020-02-15T06:59:36Z +537,4,2020-02-15T06:59:36Z +538,13,2020-02-15T06:59:36Z +539,7,2020-02-15T06:59:36Z +540,12,2020-02-15T06:59:36Z +541,2,2020-02-15T06:59:36Z +542,1,2020-02-15T06:59:36Z +543,16,2020-02-15T06:59:36Z +544,6,2020-02-15T06:59:36Z +545,9,2020-02-15T06:59:36Z +546,10,2020-02-15T06:59:36Z +547,3,2020-02-15T06:59:36Z +548,4,2020-02-15T06:59:36Z +549,1,2020-02-15T06:59:36Z +550,8,2020-02-15T06:59:36Z +551,13,2020-02-15T06:59:36Z +552,6,2020-02-15T06:59:36Z +553,3,2020-02-15T06:59:36Z +554,4,2020-02-15T06:59:36Z +555,5,2020-02-15T06:59:36Z +556,10,2020-02-15T06:59:36Z +557,8,2020-02-15T06:59:36Z +558,13,2020-02-15T06:59:36Z +559,14,2020-02-15T06:59:36Z +560,10,2020-02-15T06:59:36Z +561,13,2020-02-15T06:59:36Z +562,12,2020-02-15T06:59:36Z +563,10,2020-02-15T06:59:36Z +564,2,2020-02-15T06:59:36Z +565,9,2020-02-15T06:59:36Z +566,9,2020-02-15T06:59:36Z +567,9,2020-02-15T06:59:36Z +568,5,2020-02-15T06:59:36Z +569,2,2020-02-15T06:59:36Z +570,15,2020-02-15T06:59:36Z +571,6,2020-02-15T06:59:36Z +572,14,2020-02-15T06:59:36Z +573,3,2020-02-15T06:59:36Z +574,1,2020-02-15T06:59:36Z +575,6,2020-02-15T06:59:36Z +576,6,2020-02-15T06:59:36Z +577,15,2020-02-15T06:59:36Z +578,4,2020-02-15T06:59:36Z +579,1,2020-02-15T06:59:36Z +580,13,2020-02-15T06:59:36Z +581,12,2020-02-15T06:59:36Z +582,2,2020-02-15T06:59:36Z +583,2,2020-02-15T06:59:36Z +584,9,2020-02-15T06:59:36Z +585,7,2020-02-15T06:59:36Z +586,1,2020-02-15T06:59:36Z +587,6,2020-02-15T06:59:36Z +588,3,2020-02-15T06:59:36Z +589,6,2020-02-15T06:59:36Z +590,13,2020-02-15T06:59:36Z +591,10,2020-02-15T06:59:36Z +592,12,2020-02-15T06:59:36Z +593,11,2020-02-15T06:59:36Z +594,1,2020-02-15T06:59:36Z +595,9,2020-02-15T06:59:36Z +596,10,2020-02-15T06:59:36Z +597,10,2020-02-15T06:59:36Z +598,15,2020-02-15T06:59:36Z +599,15,2020-02-15T06:59:36Z +600,11,2020-02-15T06:59:36Z +601,16,2020-02-15T06:59:36Z +602,14,2020-02-15T06:59:36Z +603,8,2020-02-15T06:59:36Z +604,5,2020-02-15T06:59:36Z +605,9,2020-02-15T06:59:36Z +606,15,2020-02-15T06:59:36Z +607,9,2020-02-15T06:59:36Z +608,3,2020-02-15T06:59:36Z +609,16,2020-02-15T06:59:36Z +610,8,2020-02-15T06:59:36Z +611,4,2020-02-15T06:59:36Z +612,15,2020-02-15T06:59:36Z +613,5,2020-02-15T06:59:36Z +614,10,2020-02-15T06:59:36Z +615,2,2020-02-15T06:59:36Z +616,6,2020-02-15T06:59:36Z +617,8,2020-02-15T06:59:36Z +618,7,2020-02-15T06:59:36Z +619,15,2020-02-15T06:59:36Z +620,14,2020-02-15T06:59:36Z +621,8,2020-02-15T06:59:36Z +622,6,2020-02-15T06:59:36Z +623,9,2020-02-15T06:59:36Z +624,10,2020-02-15T06:59:36Z +625,14,2020-02-15T06:59:36Z +626,3,2020-02-15T06:59:36Z +627,6,2020-02-15T06:59:36Z +628,15,2020-02-15T06:59:36Z +629,6,2020-02-15T06:59:36Z +630,7,2020-02-15T06:59:36Z +631,15,2020-02-15T06:59:36Z +632,13,2020-02-15T06:59:36Z +633,4,2020-02-15T06:59:36Z +634,8,2020-02-15T06:59:36Z +635,13,2020-02-15T06:59:36Z +636,12,2020-02-15T06:59:36Z +637,14,2020-02-15T06:59:36Z +638,5,2020-02-15T06:59:36Z +639,8,2020-02-15T06:59:36Z +640,9,2020-02-15T06:59:36Z +641,9,2020-02-15T06:59:36Z +642,16,2020-02-15T06:59:36Z +643,7,2020-02-15T06:59:36Z +644,2,2020-02-15T06:59:36Z +645,16,2020-02-15T06:59:36Z +646,10,2020-02-15T06:59:36Z +647,12,2020-02-15T06:59:36Z +648,16,2020-02-15T06:59:36Z +649,2,2020-02-15T06:59:36Z +650,6,2020-02-15T06:59:36Z +651,2,2020-02-15T06:59:36Z +652,4,2020-02-15T06:59:36Z +653,11,2020-02-15T06:59:36Z +654,10,2020-02-15T06:59:36Z +655,14,2020-02-15T06:59:36Z +656,16,2020-02-15T06:59:36Z +657,5,2020-02-15T06:59:36Z +658,11,2020-02-15T06:59:36Z +659,1,2020-02-15T06:59:36Z +660,5,2020-02-15T06:59:36Z +661,9,2020-02-15T06:59:36Z +662,7,2020-02-15T06:59:36Z +663,4,2020-02-15T06:59:36Z +664,1,2020-02-15T06:59:36Z +665,11,2020-02-15T06:59:36Z +666,7,2020-02-15T06:59:36Z +667,15,2020-02-15T06:59:36Z +668,15,2020-02-15T06:59:36Z +669,9,2020-02-15T06:59:36Z +670,6,2020-02-15T06:59:36Z +671,15,2020-02-15T06:59:36Z +672,5,2020-02-15T06:59:36Z +673,12,2020-02-15T06:59:36Z +674,9,2020-02-15T06:59:36Z +675,13,2020-02-15T06:59:36Z +676,15,2020-02-15T06:59:36Z +677,13,2020-02-15T06:59:36Z +678,15,2020-02-15T06:59:36Z +679,8,2020-02-15T06:59:36Z +680,5,2020-02-15T06:59:36Z +681,15,2020-02-15T06:59:36Z +682,8,2020-02-15T06:59:36Z +683,7,2020-02-15T06:59:36Z +684,10,2020-02-15T06:59:36Z +685,13,2020-02-15T06:59:36Z +686,13,2020-02-15T06:59:36Z +687,6,2020-02-15T06:59:36Z +688,3,2020-02-15T06:59:36Z +689,9,2020-02-15T06:59:36Z +690,2,2020-02-15T06:59:36Z +691,15,2020-02-15T06:59:36Z +692,2,2020-02-15T06:59:36Z +693,2,2020-02-15T06:59:36Z +694,4,2020-02-15T06:59:36Z +695,8,2020-02-15T06:59:36Z +696,2,2020-02-15T06:59:36Z +697,1,2020-02-15T06:59:36Z +698,6,2020-02-15T06:59:36Z +699,10,2020-02-15T06:59:36Z +700,8,2020-02-15T06:59:36Z +701,10,2020-02-15T06:59:36Z +702,11,2020-02-15T06:59:36Z +703,2,2020-02-15T06:59:36Z +704,5,2020-02-15T06:59:36Z +705,9,2020-02-15T06:59:36Z +706,7,2020-02-15T06:59:36Z +707,1,2020-02-15T06:59:36Z +708,6,2020-02-15T06:59:36Z +709,7,2020-02-15T06:59:36Z +710,8,2020-02-15T06:59:36Z +711,14,2020-02-15T06:59:36Z +712,6,2020-02-15T06:59:36Z +713,6,2020-02-15T06:59:36Z +714,14,2020-02-15T06:59:36Z +715,8,2020-02-15T06:59:36Z +716,11,2020-02-15T06:59:36Z +717,1,2020-02-15T06:59:36Z +718,12,2020-02-15T06:59:36Z +719,15,2020-02-15T06:59:36Z +720,13,2020-02-15T06:59:36Z +721,12,2020-02-15T06:59:36Z +722,11,2020-02-15T06:59:36Z +723,14,2020-02-15T06:59:36Z +724,8,2020-02-15T06:59:36Z +725,4,2020-02-15T06:59:36Z +726,9,2020-02-15T06:59:36Z +727,8,2020-02-15T06:59:36Z +728,7,2020-02-15T06:59:36Z +729,15,2020-02-15T06:59:36Z +730,13,2020-02-15T06:59:36Z +731,4,2020-02-15T06:59:36Z +732,1,2020-02-15T06:59:36Z +733,15,2020-02-15T06:59:36Z +734,6,2020-02-15T06:59:36Z +735,3,2020-02-15T06:59:36Z +736,8,2020-02-15T06:59:36Z +737,11,2020-02-15T06:59:36Z +738,9,2020-02-15T06:59:36Z +739,7,2020-02-15T06:59:36Z +740,11,2020-02-15T06:59:36Z +741,12,2020-02-15T06:59:36Z +742,10,2020-02-15T06:59:36Z +743,2,2020-02-15T06:59:36Z +744,4,2020-02-15T06:59:36Z +745,15,2020-02-15T06:59:36Z +746,10,2020-02-15T06:59:36Z +747,10,2020-02-15T06:59:36Z +748,1,2020-02-15T06:59:36Z +749,11,2020-02-15T06:59:36Z +750,13,2020-02-15T06:59:36Z +751,13,2020-02-15T06:59:36Z +752,12,2020-02-15T06:59:36Z +753,8,2020-02-15T06:59:36Z +754,5,2020-02-15T06:59:36Z +755,3,2020-02-15T06:59:36Z +756,5,2020-02-15T06:59:36Z +757,6,2020-02-15T06:59:36Z +758,7,2020-02-15T06:59:36Z +759,13,2020-02-15T06:59:36Z +760,13,2020-02-15T06:59:36Z +761,3,2020-02-15T06:59:36Z +762,10,2020-02-15T06:59:36Z +763,15,2020-02-15T06:59:36Z +764,15,2020-02-15T06:59:36Z +765,5,2020-02-15T06:59:36Z +766,7,2020-02-15T06:59:36Z +767,12,2020-02-15T06:59:36Z +768,3,2020-02-15T06:59:36Z +769,9,2020-02-15T06:59:36Z +770,9,2020-02-15T06:59:36Z +771,7,2020-02-15T06:59:36Z +772,7,2020-02-15T06:59:36Z +773,15,2020-02-15T06:59:36Z +774,5,2020-02-15T06:59:36Z +775,7,2020-02-15T06:59:36Z +776,6,2020-02-15T06:59:36Z +777,15,2020-02-15T06:59:36Z +778,8,2020-02-15T06:59:36Z +779,15,2020-02-15T06:59:36Z +780,8,2020-02-15T06:59:36Z +781,10,2020-02-15T06:59:36Z +782,15,2020-02-15T06:59:36Z +783,16,2020-02-15T06:59:36Z +784,16,2020-02-15T06:59:36Z +785,16,2020-02-15T06:59:36Z +786,3,2020-02-15T06:59:36Z +787,16,2020-02-15T06:59:36Z +788,6,2020-02-15T06:59:36Z +789,9,2020-02-15T06:59:36Z +790,7,2020-02-15T06:59:36Z +791,6,2020-02-15T06:59:36Z +792,9,2020-02-15T06:59:36Z +793,1,2020-02-15T06:59:36Z +794,1,2020-02-15T06:59:36Z +795,8,2020-02-15T06:59:36Z +796,15,2020-02-15T06:59:36Z +797,12,2020-02-15T06:59:36Z +798,14,2020-02-15T06:59:36Z +799,11,2020-02-15T06:59:36Z +800,11,2020-02-15T06:59:36Z +801,3,2020-02-15T06:59:36Z +802,1,2020-02-15T06:59:36Z +803,7,2020-02-15T06:59:36Z +804,11,2020-02-15T06:59:36Z +805,2,2020-02-15T06:59:36Z +806,13,2020-02-15T06:59:36Z +807,10,2020-02-15T06:59:36Z +808,4,2020-02-15T06:59:36Z +809,15,2020-02-15T06:59:36Z +810,8,2020-02-15T06:59:36Z +811,16,2020-02-15T06:59:36Z +812,6,2020-02-15T06:59:36Z +813,15,2020-02-15T06:59:36Z +814,5,2020-02-15T06:59:36Z +815,4,2020-02-15T06:59:36Z +816,2,2020-02-15T06:59:36Z +817,14,2020-02-15T06:59:36Z +818,7,2020-02-15T06:59:36Z +819,12,2020-02-15T06:59:36Z +820,2,2020-02-15T06:59:36Z +821,9,2020-02-15T06:59:36Z +822,8,2020-02-15T06:59:36Z +823,1,2020-02-15T06:59:36Z +824,8,2020-02-15T06:59:36Z +825,1,2020-02-15T06:59:36Z +826,16,2020-02-15T06:59:36Z +827,7,2020-02-15T06:59:36Z +828,4,2020-02-15T06:59:36Z +829,8,2020-02-15T06:59:36Z +830,11,2020-02-15T06:59:36Z +831,14,2020-02-15T06:59:36Z +832,8,2020-02-15T06:59:36Z +833,3,2020-02-15T06:59:36Z +834,6,2020-02-15T06:59:36Z +835,10,2020-02-15T06:59:36Z +836,15,2020-02-15T06:59:36Z +837,5,2020-02-15T06:59:36Z +838,1,2020-02-15T06:59:36Z +839,14,2020-02-15T06:59:36Z +840,10,2020-02-15T06:59:36Z +841,15,2020-02-15T06:59:36Z +842,10,2020-02-15T06:59:36Z +843,4,2020-02-15T06:59:36Z +844,15,2020-02-15T06:59:36Z +845,9,2020-02-15T06:59:36Z +846,13,2020-02-15T06:59:36Z +847,13,2020-02-15T06:59:36Z +848,16,2020-02-15T06:59:36Z +849,2,2020-02-15T06:59:36Z +850,1,2020-02-15T06:59:36Z +851,15,2020-02-15T06:59:36Z +852,3,2020-02-15T06:59:36Z +853,3,2020-02-15T06:59:36Z +854,11,2020-02-15T06:59:36Z +855,6,2020-02-15T06:59:36Z +856,11,2020-02-15T06:59:36Z +857,5,2020-02-15T06:59:36Z +858,5,2020-02-15T06:59:36Z +859,2,2020-02-15T06:59:36Z +860,14,2020-02-15T06:59:36Z +861,10,2020-02-15T06:59:36Z +862,4,2020-02-15T06:59:36Z +863,14,2020-02-15T06:59:36Z +864,3,2020-02-15T06:59:36Z +865,2,2020-02-15T06:59:36Z +866,8,2020-02-15T06:59:36Z +867,8,2020-02-15T06:59:36Z +868,16,2020-02-15T06:59:36Z +869,1,2020-02-15T06:59:36Z +870,11,2020-02-15T06:59:36Z +871,5,2020-02-15T06:59:36Z +872,16,2020-02-15T06:59:36Z +873,3,2020-02-15T06:59:36Z +874,4,2020-02-15T06:59:36Z +875,15,2020-02-15T06:59:36Z +876,11,2020-02-15T06:59:36Z +877,12,2020-02-15T06:59:36Z +878,16,2020-02-15T06:59:36Z +879,12,2020-02-15T06:59:36Z +880,2,2020-02-15T06:59:36Z +881,11,2020-02-15T06:59:36Z +882,7,2020-02-15T06:59:36Z +883,3,2020-02-15T06:59:36Z +884,12,2020-02-15T06:59:36Z +885,11,2020-02-15T06:59:36Z +886,2,2020-02-15T06:59:36Z +887,2,2020-02-15T06:59:36Z +888,6,2020-02-15T06:59:36Z +889,3,2020-02-15T06:59:36Z +890,15,2020-02-15T06:59:36Z +891,4,2020-02-15T06:59:36Z +892,2,2020-02-15T06:59:36Z +893,14,2020-02-15T06:59:36Z +894,16,2020-02-15T06:59:36Z +895,4,2020-02-15T06:59:36Z +896,3,2020-02-15T06:59:36Z +897,7,2020-02-15T06:59:36Z +898,15,2020-02-15T06:59:36Z +899,4,2020-02-15T06:59:36Z +900,9,2020-02-15T06:59:36Z +901,2,2020-02-15T06:59:36Z +902,15,2020-02-15T06:59:36Z +903,16,2020-02-15T06:59:36Z +904,11,2020-02-15T06:59:36Z +905,5,2020-02-15T06:59:36Z +906,5,2020-02-15T06:59:36Z +907,7,2020-02-15T06:59:36Z +908,9,2020-02-15T06:59:36Z +909,11,2020-02-15T06:59:36Z +910,7,2020-02-15T06:59:36Z +911,1,2020-02-15T06:59:36Z +912,14,2020-02-15T06:59:36Z +913,13,2020-02-15T06:59:36Z +914,16,2020-02-15T06:59:36Z +915,1,2020-02-15T06:59:36Z +916,2,2020-02-15T06:59:36Z +917,15,2020-02-15T06:59:36Z +918,3,2020-02-15T06:59:36Z +919,10,2020-02-15T06:59:36Z +920,13,2020-02-15T06:59:36Z +921,12,2020-02-15T06:59:36Z +922,11,2020-02-15T06:59:36Z +923,7,2020-02-15T06:59:36Z +924,14,2020-02-15T06:59:36Z +925,6,2020-02-15T06:59:36Z +926,6,2020-02-15T06:59:36Z +927,1,2020-02-15T06:59:36Z +928,3,2020-02-15T06:59:36Z +929,9,2020-02-15T06:59:36Z +930,14,2020-02-15T06:59:36Z +931,16,2020-02-15T06:59:36Z +932,5,2020-02-15T06:59:36Z +933,13,2020-02-15T06:59:36Z +934,10,2020-02-15T06:59:36Z +935,13,2020-02-15T06:59:36Z +936,12,2020-02-15T06:59:36Z +937,13,2020-02-15T06:59:36Z +938,5,2020-02-15T06:59:36Z +939,5,2020-02-15T06:59:36Z +940,15,2020-02-15T06:59:36Z +941,10,2020-02-15T06:59:36Z +942,7,2020-02-15T06:59:36Z +943,6,2020-02-15T06:59:36Z +944,7,2020-02-15T06:59:36Z +945,6,2020-02-15T06:59:36Z +946,8,2020-02-15T06:59:36Z +947,9,2020-02-15T06:59:36Z +948,13,2020-02-15T06:59:36Z +949,10,2020-02-15T06:59:36Z +950,4,2020-02-15T06:59:36Z +951,4,2020-02-15T06:59:36Z +952,6,2020-02-15T06:59:36Z +953,2,2020-02-15T06:59:36Z +954,13,2020-02-15T06:59:36Z +955,3,2020-02-15T06:59:36Z +956,10,2020-02-15T06:59:36Z +957,9,2020-02-15T06:59:36Z +958,7,2020-02-15T06:59:36Z +959,3,2020-02-15T06:59:36Z +960,6,2020-02-15T06:59:36Z +961,9,2020-02-15T06:59:36Z +962,4,2020-02-15T06:59:36Z +963,2,2020-02-15T06:59:36Z +964,1,2020-02-15T06:59:36Z +965,11,2020-02-15T06:59:36Z +966,6,2020-02-15T06:59:36Z +967,14,2020-02-15T06:59:36Z +968,1,2020-02-15T06:59:36Z +969,7,2020-02-15T06:59:36Z +970,4,2020-02-15T06:59:36Z +971,9,2020-02-15T06:59:36Z +972,14,2020-02-15T06:59:36Z +973,6,2020-02-15T06:59:36Z +974,13,2020-02-15T06:59:36Z +975,8,2020-02-15T06:59:36Z +976,10,2020-02-15T06:59:36Z +977,16,2020-02-15T06:59:36Z +978,5,2020-02-15T06:59:36Z +979,7,2020-02-15T06:59:36Z +980,12,2020-02-15T06:59:36Z +981,16,2020-02-15T06:59:36Z +982,1,2020-02-15T06:59:36Z +983,12,2020-02-15T06:59:36Z +984,9,2020-02-15T06:59:36Z +985,14,2020-02-15T06:59:36Z +986,2,2020-02-15T06:59:36Z +987,12,2020-02-15T06:59:36Z +988,16,2020-02-15T06:59:36Z +989,16,2020-02-15T06:59:36Z +990,11,2020-02-15T06:59:36Z +991,1,2020-02-15T06:59:36Z +992,6,2020-02-15T06:59:36Z +993,3,2020-02-15T06:59:36Z +994,13,2020-02-15T06:59:36Z +995,11,2020-02-15T06:59:36Z +996,6,2020-02-15T06:59:36Z +997,12,2020-02-15T06:59:36Z +998,11,2020-02-15T06:59:36Z +999,3,2020-02-15T06:59:36Z +1000,5,2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-csv/film_text.csv b/drivers/csv/testdata/sakila-csv/film_text.csv new file mode 100644 index 00000000..e69de29b diff --git a/drivers/csv/testdata/sakila-csv/inventory.csv b/drivers/csv/testdata/sakila-csv/inventory.csv new file mode 100644 index 00000000..19b839e2 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/inventory.csv @@ -0,0 +1,4582 @@ +inventory_id,film_id,store_id,last_update +1,1,1,2020-02-15T06:59:29Z +2,1,1,2020-02-15T06:59:29Z +3,1,1,2020-02-15T06:59:29Z +4,1,1,2020-02-15T06:59:29Z +5,1,2,2020-02-15T06:59:29Z +6,1,2,2020-02-15T06:59:29Z +7,1,2,2020-02-15T06:59:29Z +8,1,2,2020-02-15T06:59:29Z +9,2,2,2020-02-15T06:59:29Z +10,2,2,2020-02-15T06:59:29Z +11,2,2,2020-02-15T06:59:29Z +12,3,2,2020-02-15T06:59:29Z +13,3,2,2020-02-15T06:59:29Z +14,3,2,2020-02-15T06:59:29Z +15,3,2,2020-02-15T06:59:29Z +16,4,1,2020-02-15T06:59:29Z +17,4,1,2020-02-15T06:59:29Z +18,4,1,2020-02-15T06:59:29Z +19,4,1,2020-02-15T06:59:29Z +20,4,2,2020-02-15T06:59:29Z +21,4,2,2020-02-15T06:59:29Z +22,4,2,2020-02-15T06:59:29Z +23,5,2,2020-02-15T06:59:29Z +24,5,2,2020-02-15T06:59:29Z +25,5,2,2020-02-15T06:59:29Z +26,6,1,2020-02-15T06:59:29Z +27,6,1,2020-02-15T06:59:29Z +28,6,1,2020-02-15T06:59:29Z +29,6,2,2020-02-15T06:59:29Z +30,6,2,2020-02-15T06:59:29Z +31,6,2,2020-02-15T06:59:29Z +32,7,1,2020-02-15T06:59:29Z +33,7,1,2020-02-15T06:59:29Z +34,7,2,2020-02-15T06:59:29Z +35,7,2,2020-02-15T06:59:29Z +36,7,2,2020-02-15T06:59:29Z +37,8,2,2020-02-15T06:59:29Z +38,8,2,2020-02-15T06:59:29Z +39,8,2,2020-02-15T06:59:29Z +40,8,2,2020-02-15T06:59:29Z +41,9,1,2020-02-15T06:59:29Z +42,9,1,2020-02-15T06:59:29Z +43,9,1,2020-02-15T06:59:29Z +44,9,2,2020-02-15T06:59:29Z +45,9,2,2020-02-15T06:59:29Z +46,10,1,2020-02-15T06:59:29Z +47,10,1,2020-02-15T06:59:29Z +48,10,1,2020-02-15T06:59:29Z +49,10,1,2020-02-15T06:59:29Z +50,10,2,2020-02-15T06:59:29Z +51,10,2,2020-02-15T06:59:29Z +52,10,2,2020-02-15T06:59:29Z +53,11,1,2020-02-15T06:59:29Z +54,11,1,2020-02-15T06:59:29Z +55,11,1,2020-02-15T06:59:29Z +56,11,1,2020-02-15T06:59:29Z +57,11,2,2020-02-15T06:59:29Z +58,11,2,2020-02-15T06:59:29Z +59,11,2,2020-02-15T06:59:29Z +60,12,1,2020-02-15T06:59:29Z +61,12,1,2020-02-15T06:59:29Z +62,12,1,2020-02-15T06:59:29Z +63,12,2,2020-02-15T06:59:29Z +64,12,2,2020-02-15T06:59:29Z +65,12,2,2020-02-15T06:59:29Z +66,12,2,2020-02-15T06:59:29Z +67,13,2,2020-02-15T06:59:29Z +68,13,2,2020-02-15T06:59:29Z +69,13,2,2020-02-15T06:59:29Z +70,13,2,2020-02-15T06:59:29Z +71,15,1,2020-02-15T06:59:29Z +72,15,1,2020-02-15T06:59:29Z +73,15,2,2020-02-15T06:59:29Z +74,15,2,2020-02-15T06:59:29Z +75,15,2,2020-02-15T06:59:29Z +76,15,2,2020-02-15T06:59:29Z +77,16,1,2020-02-15T06:59:29Z +78,16,1,2020-02-15T06:59:29Z +79,16,2,2020-02-15T06:59:29Z +80,16,2,2020-02-15T06:59:29Z +81,17,1,2020-02-15T06:59:29Z +82,17,1,2020-02-15T06:59:29Z +83,17,1,2020-02-15T06:59:29Z +84,17,2,2020-02-15T06:59:29Z +85,17,2,2020-02-15T06:59:29Z +86,17,2,2020-02-15T06:59:29Z +87,18,1,2020-02-15T06:59:29Z +88,18,1,2020-02-15T06:59:29Z +89,18,1,2020-02-15T06:59:29Z +90,18,2,2020-02-15T06:59:29Z +91,18,2,2020-02-15T06:59:29Z +92,18,2,2020-02-15T06:59:29Z +93,19,1,2020-02-15T06:59:29Z +94,19,1,2020-02-15T06:59:29Z +95,19,1,2020-02-15T06:59:29Z +96,19,1,2020-02-15T06:59:29Z +97,19,2,2020-02-15T06:59:29Z +98,19,2,2020-02-15T06:59:29Z +99,20,1,2020-02-15T06:59:29Z +100,20,1,2020-02-15T06:59:29Z +101,20,1,2020-02-15T06:59:29Z +102,21,1,2020-02-15T06:59:29Z +103,21,1,2020-02-15T06:59:29Z +104,21,2,2020-02-15T06:59:29Z +105,21,2,2020-02-15T06:59:29Z +106,21,2,2020-02-15T06:59:29Z +107,21,2,2020-02-15T06:59:29Z +108,22,1,2020-02-15T06:59:29Z +109,22,1,2020-02-15T06:59:29Z +110,22,1,2020-02-15T06:59:29Z +111,22,1,2020-02-15T06:59:29Z +112,22,2,2020-02-15T06:59:29Z +113,22,2,2020-02-15T06:59:29Z +114,22,2,2020-02-15T06:59:29Z +115,23,1,2020-02-15T06:59:29Z +116,23,1,2020-02-15T06:59:29Z +117,23,1,2020-02-15T06:59:29Z +118,23,2,2020-02-15T06:59:29Z +119,23,2,2020-02-15T06:59:29Z +120,24,1,2020-02-15T06:59:29Z +121,24,1,2020-02-15T06:59:29Z +122,24,1,2020-02-15T06:59:29Z +123,24,1,2020-02-15T06:59:29Z +124,25,1,2020-02-15T06:59:29Z +125,25,1,2020-02-15T06:59:29Z +126,25,1,2020-02-15T06:59:29Z +127,25,1,2020-02-15T06:59:29Z +128,25,2,2020-02-15T06:59:29Z +129,25,2,2020-02-15T06:59:29Z +130,26,1,2020-02-15T06:59:29Z +131,26,1,2020-02-15T06:59:29Z +132,26,2,2020-02-15T06:59:29Z +133,26,2,2020-02-15T06:59:29Z +134,26,2,2020-02-15T06:59:29Z +135,27,1,2020-02-15T06:59:29Z +136,27,1,2020-02-15T06:59:29Z +137,27,1,2020-02-15T06:59:29Z +138,27,1,2020-02-15T06:59:29Z +139,28,1,2020-02-15T06:59:29Z +140,28,1,2020-02-15T06:59:29Z +141,28,1,2020-02-15T06:59:29Z +142,29,1,2020-02-15T06:59:29Z +143,29,1,2020-02-15T06:59:29Z +144,30,1,2020-02-15T06:59:29Z +145,30,1,2020-02-15T06:59:29Z +146,31,1,2020-02-15T06:59:29Z +147,31,1,2020-02-15T06:59:29Z +148,31,1,2020-02-15T06:59:29Z +149,31,1,2020-02-15T06:59:29Z +150,31,2,2020-02-15T06:59:29Z +151,31,2,2020-02-15T06:59:29Z +152,31,2,2020-02-15T06:59:29Z +153,31,2,2020-02-15T06:59:29Z +154,32,2,2020-02-15T06:59:29Z +155,32,2,2020-02-15T06:59:29Z +156,34,2,2020-02-15T06:59:29Z +157,34,2,2020-02-15T06:59:29Z +158,34,2,2020-02-15T06:59:29Z +159,34,2,2020-02-15T06:59:29Z +160,35,1,2020-02-15T06:59:29Z +161,35,1,2020-02-15T06:59:29Z +162,35,1,2020-02-15T06:59:29Z +163,35,1,2020-02-15T06:59:29Z +164,35,2,2020-02-15T06:59:29Z +165,35,2,2020-02-15T06:59:29Z +166,35,2,2020-02-15T06:59:29Z +167,37,1,2020-02-15T06:59:29Z +168,37,1,2020-02-15T06:59:29Z +169,37,1,2020-02-15T06:59:29Z +170,37,1,2020-02-15T06:59:29Z +171,37,2,2020-02-15T06:59:29Z +172,37,2,2020-02-15T06:59:29Z +173,37,2,2020-02-15T06:59:29Z +174,39,1,2020-02-15T06:59:29Z +175,39,1,2020-02-15T06:59:29Z +176,39,1,2020-02-15T06:59:29Z +177,39,2,2020-02-15T06:59:29Z +178,39,2,2020-02-15T06:59:29Z +179,39,2,2020-02-15T06:59:29Z +180,39,2,2020-02-15T06:59:29Z +181,40,2,2020-02-15T06:59:29Z +182,40,2,2020-02-15T06:59:29Z +183,40,2,2020-02-15T06:59:29Z +184,40,2,2020-02-15T06:59:29Z +185,42,2,2020-02-15T06:59:29Z +186,42,2,2020-02-15T06:59:29Z +187,42,2,2020-02-15T06:59:29Z +188,42,2,2020-02-15T06:59:29Z +189,43,1,2020-02-15T06:59:29Z +190,43,1,2020-02-15T06:59:29Z +191,43,1,2020-02-15T06:59:29Z +192,43,2,2020-02-15T06:59:29Z +193,43,2,2020-02-15T06:59:29Z +194,43,2,2020-02-15T06:59:29Z +195,43,2,2020-02-15T06:59:29Z +196,44,1,2020-02-15T06:59:29Z +197,44,1,2020-02-15T06:59:29Z +198,44,2,2020-02-15T06:59:29Z +199,44,2,2020-02-15T06:59:29Z +200,44,2,2020-02-15T06:59:29Z +201,45,1,2020-02-15T06:59:29Z +202,45,1,2020-02-15T06:59:29Z +203,45,1,2020-02-15T06:59:29Z +204,45,1,2020-02-15T06:59:29Z +205,45,2,2020-02-15T06:59:29Z +206,45,2,2020-02-15T06:59:29Z +207,46,2,2020-02-15T06:59:29Z +208,46,2,2020-02-15T06:59:29Z +209,46,2,2020-02-15T06:59:29Z +210,47,2,2020-02-15T06:59:29Z +211,47,2,2020-02-15T06:59:29Z +212,48,1,2020-02-15T06:59:29Z +213,48,1,2020-02-15T06:59:29Z +214,48,2,2020-02-15T06:59:29Z +215,48,2,2020-02-15T06:59:29Z +216,49,1,2020-02-15T06:59:29Z +217,49,1,2020-02-15T06:59:29Z +218,49,1,2020-02-15T06:59:29Z +219,49,2,2020-02-15T06:59:29Z +220,49,2,2020-02-15T06:59:29Z +221,49,2,2020-02-15T06:59:29Z +222,50,1,2020-02-15T06:59:29Z +223,50,1,2020-02-15T06:59:29Z +224,50,1,2020-02-15T06:59:29Z +225,50,2,2020-02-15T06:59:29Z +226,50,2,2020-02-15T06:59:29Z +227,51,1,2020-02-15T06:59:29Z +228,51,1,2020-02-15T06:59:29Z +229,51,2,2020-02-15T06:59:29Z +230,51,2,2020-02-15T06:59:29Z +231,51,2,2020-02-15T06:59:29Z +232,51,2,2020-02-15T06:59:29Z +233,52,2,2020-02-15T06:59:29Z +234,52,2,2020-02-15T06:59:29Z +235,53,1,2020-02-15T06:59:29Z +236,53,1,2020-02-15T06:59:29Z +237,54,1,2020-02-15T06:59:29Z +238,54,1,2020-02-15T06:59:29Z +239,54,1,2020-02-15T06:59:29Z +240,54,2,2020-02-15T06:59:29Z +241,54,2,2020-02-15T06:59:29Z +242,55,1,2020-02-15T06:59:29Z +243,55,1,2020-02-15T06:59:29Z +244,55,1,2020-02-15T06:59:29Z +245,55,1,2020-02-15T06:59:29Z +246,55,2,2020-02-15T06:59:29Z +247,55,2,2020-02-15T06:59:29Z +248,56,1,2020-02-15T06:59:29Z +249,56,1,2020-02-15T06:59:29Z +250,56,1,2020-02-15T06:59:29Z +251,56,2,2020-02-15T06:59:29Z +252,56,2,2020-02-15T06:59:29Z +253,57,1,2020-02-15T06:59:29Z +254,57,1,2020-02-15T06:59:29Z +255,57,1,2020-02-15T06:59:29Z +256,57,1,2020-02-15T06:59:29Z +257,57,2,2020-02-15T06:59:29Z +258,57,2,2020-02-15T06:59:29Z +259,57,2,2020-02-15T06:59:29Z +260,58,2,2020-02-15T06:59:29Z +261,58,2,2020-02-15T06:59:29Z +262,58,2,2020-02-15T06:59:29Z +263,58,2,2020-02-15T06:59:29Z +264,59,1,2020-02-15T06:59:29Z +265,59,1,2020-02-15T06:59:29Z +266,59,1,2020-02-15T06:59:29Z +267,59,2,2020-02-15T06:59:29Z +268,59,2,2020-02-15T06:59:29Z +269,60,1,2020-02-15T06:59:29Z +270,60,1,2020-02-15T06:59:29Z +271,60,1,2020-02-15T06:59:29Z +272,61,1,2020-02-15T06:59:29Z +273,61,1,2020-02-15T06:59:29Z +274,61,1,2020-02-15T06:59:29Z +275,61,1,2020-02-15T06:59:29Z +276,61,2,2020-02-15T06:59:29Z +277,61,2,2020-02-15T06:59:29Z +278,62,2,2020-02-15T06:59:29Z +279,62,2,2020-02-15T06:59:29Z +280,63,1,2020-02-15T06:59:29Z +281,63,1,2020-02-15T06:59:29Z +282,63,2,2020-02-15T06:59:29Z +283,63,2,2020-02-15T06:59:29Z +284,64,2,2020-02-15T06:59:29Z +285,64,2,2020-02-15T06:59:29Z +286,64,2,2020-02-15T06:59:29Z +287,65,2,2020-02-15T06:59:29Z +288,65,2,2020-02-15T06:59:29Z +289,65,2,2020-02-15T06:59:29Z +290,65,2,2020-02-15T06:59:29Z +291,66,1,2020-02-15T06:59:29Z +292,66,1,2020-02-15T06:59:29Z +293,66,1,2020-02-15T06:59:29Z +294,67,1,2020-02-15T06:59:29Z +295,67,1,2020-02-15T06:59:29Z +296,67,2,2020-02-15T06:59:29Z +297,67,2,2020-02-15T06:59:29Z +298,67,2,2020-02-15T06:59:29Z +299,67,2,2020-02-15T06:59:29Z +300,68,1,2020-02-15T06:59:29Z +301,68,1,2020-02-15T06:59:29Z +302,68,2,2020-02-15T06:59:29Z +303,68,2,2020-02-15T06:59:29Z +304,69,1,2020-02-15T06:59:29Z +305,69,1,2020-02-15T06:59:29Z +306,69,1,2020-02-15T06:59:29Z +307,69,1,2020-02-15T06:59:29Z +308,69,2,2020-02-15T06:59:29Z +309,69,2,2020-02-15T06:59:29Z +310,69,2,2020-02-15T06:59:29Z +311,69,2,2020-02-15T06:59:29Z +312,70,1,2020-02-15T06:59:29Z +313,70,1,2020-02-15T06:59:29Z +314,70,2,2020-02-15T06:59:29Z +315,70,2,2020-02-15T06:59:29Z +316,71,2,2020-02-15T06:59:29Z +317,71,2,2020-02-15T06:59:29Z +318,71,2,2020-02-15T06:59:29Z +319,71,2,2020-02-15T06:59:29Z +320,72,1,2020-02-15T06:59:29Z +321,72,1,2020-02-15T06:59:29Z +322,72,1,2020-02-15T06:59:29Z +323,72,1,2020-02-15T06:59:29Z +324,72,2,2020-02-15T06:59:29Z +325,72,2,2020-02-15T06:59:29Z +326,73,1,2020-02-15T06:59:29Z +327,73,1,2020-02-15T06:59:29Z +328,73,1,2020-02-15T06:59:29Z +329,73,1,2020-02-15T06:59:29Z +330,73,2,2020-02-15T06:59:29Z +331,73,2,2020-02-15T06:59:29Z +332,73,2,2020-02-15T06:59:29Z +333,73,2,2020-02-15T06:59:29Z +334,74,1,2020-02-15T06:59:29Z +335,74,1,2020-02-15T06:59:29Z +336,74,1,2020-02-15T06:59:29Z +337,74,2,2020-02-15T06:59:29Z +338,74,2,2020-02-15T06:59:29Z +339,75,2,2020-02-15T06:59:29Z +340,75,2,2020-02-15T06:59:29Z +341,75,2,2020-02-15T06:59:29Z +342,76,1,2020-02-15T06:59:29Z +343,76,1,2020-02-15T06:59:29Z +344,76,1,2020-02-15T06:59:29Z +345,77,1,2020-02-15T06:59:29Z +346,77,1,2020-02-15T06:59:29Z +347,77,1,2020-02-15T06:59:29Z +348,77,1,2020-02-15T06:59:29Z +349,77,2,2020-02-15T06:59:29Z +350,77,2,2020-02-15T06:59:29Z +351,78,1,2020-02-15T06:59:29Z +352,78,1,2020-02-15T06:59:29Z +353,78,1,2020-02-15T06:59:29Z +354,78,2,2020-02-15T06:59:29Z +355,78,2,2020-02-15T06:59:29Z +356,78,2,2020-02-15T06:59:29Z +357,78,2,2020-02-15T06:59:29Z +358,79,1,2020-02-15T06:59:29Z +359,79,1,2020-02-15T06:59:29Z +360,79,1,2020-02-15T06:59:29Z +361,79,2,2020-02-15T06:59:29Z +362,79,2,2020-02-15T06:59:29Z +363,79,2,2020-02-15T06:59:29Z +364,80,1,2020-02-15T06:59:29Z +365,80,1,2020-02-15T06:59:29Z +366,80,1,2020-02-15T06:59:29Z +367,80,1,2020-02-15T06:59:29Z +368,81,1,2020-02-15T06:59:29Z +369,81,1,2020-02-15T06:59:29Z +370,81,1,2020-02-15T06:59:29Z +371,81,1,2020-02-15T06:59:29Z +372,82,1,2020-02-15T06:59:29Z +373,82,1,2020-02-15T06:59:29Z +374,83,1,2020-02-15T06:59:29Z +375,83,1,2020-02-15T06:59:29Z +376,83,1,2020-02-15T06:59:29Z +377,83,2,2020-02-15T06:59:29Z +378,83,2,2020-02-15T06:59:29Z +379,84,1,2020-02-15T06:59:29Z +380,84,1,2020-02-15T06:59:29Z +381,84,1,2020-02-15T06:59:29Z +382,84,1,2020-02-15T06:59:29Z +383,85,2,2020-02-15T06:59:29Z +384,85,2,2020-02-15T06:59:29Z +385,85,2,2020-02-15T06:59:29Z +386,85,2,2020-02-15T06:59:29Z +387,86,1,2020-02-15T06:59:29Z +388,86,1,2020-02-15T06:59:29Z +389,86,1,2020-02-15T06:59:29Z +390,86,1,2020-02-15T06:59:29Z +391,86,2,2020-02-15T06:59:29Z +392,86,2,2020-02-15T06:59:29Z +393,86,2,2020-02-15T06:59:29Z +394,86,2,2020-02-15T06:59:29Z +395,88,2,2020-02-15T06:59:29Z +396,88,2,2020-02-15T06:59:29Z +397,88,2,2020-02-15T06:59:29Z +398,88,2,2020-02-15T06:59:29Z +399,89,1,2020-02-15T06:59:29Z +400,89,1,2020-02-15T06:59:29Z +401,89,1,2020-02-15T06:59:29Z +402,89,2,2020-02-15T06:59:29Z +403,89,2,2020-02-15T06:59:29Z +404,89,2,2020-02-15T06:59:29Z +405,90,1,2020-02-15T06:59:29Z +406,90,1,2020-02-15T06:59:29Z +407,90,1,2020-02-15T06:59:29Z +408,90,2,2020-02-15T06:59:29Z +409,90,2,2020-02-15T06:59:29Z +410,90,2,2020-02-15T06:59:29Z +411,91,1,2020-02-15T06:59:29Z +412,91,1,2020-02-15T06:59:29Z +413,91,1,2020-02-15T06:59:29Z +414,91,1,2020-02-15T06:59:29Z +415,91,2,2020-02-15T06:59:29Z +416,91,2,2020-02-15T06:59:29Z +417,91,2,2020-02-15T06:59:29Z +418,91,2,2020-02-15T06:59:29Z +419,92,1,2020-02-15T06:59:29Z +420,92,1,2020-02-15T06:59:29Z +421,92,2,2020-02-15T06:59:29Z +422,92,2,2020-02-15T06:59:29Z +423,93,2,2020-02-15T06:59:29Z +424,93,2,2020-02-15T06:59:29Z +425,93,2,2020-02-15T06:59:29Z +426,94,1,2020-02-15T06:59:29Z +427,94,1,2020-02-15T06:59:29Z +428,95,1,2020-02-15T06:59:29Z +429,95,1,2020-02-15T06:59:29Z +430,95,2,2020-02-15T06:59:29Z +431,95,2,2020-02-15T06:59:29Z +432,95,2,2020-02-15T06:59:29Z +433,96,1,2020-02-15T06:59:29Z +434,96,1,2020-02-15T06:59:29Z +435,96,1,2020-02-15T06:59:29Z +436,97,1,2020-02-15T06:59:29Z +437,97,1,2020-02-15T06:59:29Z +438,97,1,2020-02-15T06:59:29Z +439,97,1,2020-02-15T06:59:29Z +440,97,2,2020-02-15T06:59:29Z +441,97,2,2020-02-15T06:59:29Z +442,98,1,2020-02-15T06:59:29Z +443,98,1,2020-02-15T06:59:29Z +444,98,1,2020-02-15T06:59:29Z +445,99,1,2020-02-15T06:59:29Z +446,99,1,2020-02-15T06:59:29Z +447,99,1,2020-02-15T06:59:29Z +448,99,2,2020-02-15T06:59:29Z +449,99,2,2020-02-15T06:59:29Z +450,99,2,2020-02-15T06:59:29Z +451,100,1,2020-02-15T06:59:29Z +452,100,1,2020-02-15T06:59:29Z +453,100,1,2020-02-15T06:59:29Z +454,100,1,2020-02-15T06:59:29Z +455,100,2,2020-02-15T06:59:29Z +456,100,2,2020-02-15T06:59:29Z +457,101,1,2020-02-15T06:59:29Z +458,101,1,2020-02-15T06:59:29Z +459,101,1,2020-02-15T06:59:29Z +460,101,1,2020-02-15T06:59:29Z +461,101,2,2020-02-15T06:59:29Z +462,101,2,2020-02-15T06:59:29Z +463,102,2,2020-02-15T06:59:29Z +464,102,2,2020-02-15T06:59:29Z +465,103,1,2020-02-15T06:59:29Z +466,103,1,2020-02-15T06:59:29Z +467,103,1,2020-02-15T06:59:29Z +468,103,1,2020-02-15T06:59:29Z +469,103,2,2020-02-15T06:59:29Z +470,103,2,2020-02-15T06:59:29Z +471,103,2,2020-02-15T06:59:29Z +472,103,2,2020-02-15T06:59:29Z +473,104,2,2020-02-15T06:59:29Z +474,104,2,2020-02-15T06:59:29Z +475,104,2,2020-02-15T06:59:29Z +476,105,1,2020-02-15T06:59:29Z +477,105,1,2020-02-15T06:59:29Z +478,105,2,2020-02-15T06:59:29Z +479,105,2,2020-02-15T06:59:29Z +480,105,2,2020-02-15T06:59:29Z +481,106,1,2020-02-15T06:59:29Z +482,106,1,2020-02-15T06:59:29Z +483,107,2,2020-02-15T06:59:29Z +484,107,2,2020-02-15T06:59:29Z +485,109,1,2020-02-15T06:59:29Z +486,109,1,2020-02-15T06:59:29Z +487,109,1,2020-02-15T06:59:29Z +488,109,1,2020-02-15T06:59:29Z +489,109,2,2020-02-15T06:59:29Z +490,109,2,2020-02-15T06:59:29Z +491,109,2,2020-02-15T06:59:29Z +492,109,2,2020-02-15T06:59:29Z +493,110,1,2020-02-15T06:59:29Z +494,110,1,2020-02-15T06:59:29Z +495,110,1,2020-02-15T06:59:29Z +496,110,1,2020-02-15T06:59:29Z +497,111,2,2020-02-15T06:59:29Z +498,111,2,2020-02-15T06:59:29Z +499,111,2,2020-02-15T06:59:29Z +500,111,2,2020-02-15T06:59:29Z +501,112,1,2020-02-15T06:59:29Z +502,112,1,2020-02-15T06:59:29Z +503,112,1,2020-02-15T06:59:29Z +504,112,1,2020-02-15T06:59:29Z +505,112,2,2020-02-15T06:59:29Z +506,112,2,2020-02-15T06:59:29Z +507,112,2,2020-02-15T06:59:29Z +508,113,2,2020-02-15T06:59:29Z +509,113,2,2020-02-15T06:59:29Z +510,113,2,2020-02-15T06:59:29Z +511,113,2,2020-02-15T06:59:29Z +512,114,1,2020-02-15T06:59:29Z +513,114,1,2020-02-15T06:59:29Z +514,114,1,2020-02-15T06:59:29Z +515,114,1,2020-02-15T06:59:29Z +516,114,2,2020-02-15T06:59:29Z +517,114,2,2020-02-15T06:59:29Z +518,114,2,2020-02-15T06:59:29Z +519,115,1,2020-02-15T06:59:29Z +520,115,1,2020-02-15T06:59:29Z +521,115,1,2020-02-15T06:59:29Z +522,115,2,2020-02-15T06:59:29Z +523,115,2,2020-02-15T06:59:29Z +524,115,2,2020-02-15T06:59:29Z +525,115,2,2020-02-15T06:59:29Z +526,116,1,2020-02-15T06:59:29Z +527,116,1,2020-02-15T06:59:29Z +528,116,2,2020-02-15T06:59:29Z +529,116,2,2020-02-15T06:59:29Z +530,116,2,2020-02-15T06:59:29Z +531,116,2,2020-02-15T06:59:29Z +532,117,1,2020-02-15T06:59:29Z +533,117,1,2020-02-15T06:59:29Z +534,117,1,2020-02-15T06:59:29Z +535,117,1,2020-02-15T06:59:29Z +536,117,2,2020-02-15T06:59:29Z +537,117,2,2020-02-15T06:59:29Z +538,118,1,2020-02-15T06:59:29Z +539,118,1,2020-02-15T06:59:29Z +540,118,1,2020-02-15T06:59:29Z +541,118,1,2020-02-15T06:59:29Z +542,118,2,2020-02-15T06:59:29Z +543,118,2,2020-02-15T06:59:29Z +544,119,1,2020-02-15T06:59:29Z +545,119,1,2020-02-15T06:59:29Z +546,119,1,2020-02-15T06:59:29Z +547,119,2,2020-02-15T06:59:29Z +548,119,2,2020-02-15T06:59:29Z +549,119,2,2020-02-15T06:59:29Z +550,119,2,2020-02-15T06:59:29Z +551,120,1,2020-02-15T06:59:29Z +552,120,1,2020-02-15T06:59:29Z +553,120,1,2020-02-15T06:59:29Z +554,121,1,2020-02-15T06:59:29Z +555,121,1,2020-02-15T06:59:29Z +556,121,1,2020-02-15T06:59:29Z +557,121,2,2020-02-15T06:59:29Z +558,121,2,2020-02-15T06:59:29Z +559,121,2,2020-02-15T06:59:29Z +560,122,1,2020-02-15T06:59:29Z +561,122,1,2020-02-15T06:59:29Z +562,122,1,2020-02-15T06:59:29Z +563,122,1,2020-02-15T06:59:29Z +564,122,2,2020-02-15T06:59:29Z +565,122,2,2020-02-15T06:59:29Z +566,122,2,2020-02-15T06:59:29Z +567,123,1,2020-02-15T06:59:29Z +568,123,1,2020-02-15T06:59:29Z +569,123,2,2020-02-15T06:59:29Z +570,123,2,2020-02-15T06:59:29Z +571,123,2,2020-02-15T06:59:29Z +572,124,2,2020-02-15T06:59:29Z +573,124,2,2020-02-15T06:59:29Z +574,124,2,2020-02-15T06:59:29Z +575,125,2,2020-02-15T06:59:29Z +576,125,2,2020-02-15T06:59:29Z +577,126,2,2020-02-15T06:59:29Z +578,126,2,2020-02-15T06:59:29Z +579,126,2,2020-02-15T06:59:29Z +580,127,1,2020-02-15T06:59:29Z +581,127,1,2020-02-15T06:59:29Z +582,127,1,2020-02-15T06:59:29Z +583,127,1,2020-02-15T06:59:29Z +584,127,2,2020-02-15T06:59:29Z +585,127,2,2020-02-15T06:59:29Z +586,127,2,2020-02-15T06:59:29Z +587,127,2,2020-02-15T06:59:29Z +588,129,1,2020-02-15T06:59:29Z +589,129,1,2020-02-15T06:59:29Z +590,129,1,2020-02-15T06:59:29Z +591,129,2,2020-02-15T06:59:29Z +592,129,2,2020-02-15T06:59:29Z +593,129,2,2020-02-15T06:59:29Z +594,130,1,2020-02-15T06:59:29Z +595,130,1,2020-02-15T06:59:29Z +596,130,2,2020-02-15T06:59:29Z +597,130,2,2020-02-15T06:59:29Z +598,130,2,2020-02-15T06:59:29Z +599,130,2,2020-02-15T06:59:29Z +600,131,1,2020-02-15T06:59:29Z +601,131,1,2020-02-15T06:59:29Z +602,131,1,2020-02-15T06:59:29Z +603,131,1,2020-02-15T06:59:29Z +604,131,2,2020-02-15T06:59:29Z +605,131,2,2020-02-15T06:59:29Z +606,132,1,2020-02-15T06:59:29Z +607,132,1,2020-02-15T06:59:29Z +608,132,1,2020-02-15T06:59:29Z +609,132,1,2020-02-15T06:59:29Z +610,132,2,2020-02-15T06:59:29Z +611,132,2,2020-02-15T06:59:29Z +612,133,1,2020-02-15T06:59:29Z +613,133,1,2020-02-15T06:59:29Z +614,133,2,2020-02-15T06:59:29Z +615,133,2,2020-02-15T06:59:29Z +616,134,2,2020-02-15T06:59:29Z +617,134,2,2020-02-15T06:59:29Z +618,134,2,2020-02-15T06:59:29Z +619,135,1,2020-02-15T06:59:29Z +620,135,1,2020-02-15T06:59:29Z +621,135,1,2020-02-15T06:59:29Z +622,135,2,2020-02-15T06:59:29Z +623,135,2,2020-02-15T06:59:29Z +624,135,2,2020-02-15T06:59:29Z +625,135,2,2020-02-15T06:59:29Z +626,136,1,2020-02-15T06:59:29Z +627,136,1,2020-02-15T06:59:29Z +628,136,1,2020-02-15T06:59:29Z +629,137,2,2020-02-15T06:59:29Z +630,137,2,2020-02-15T06:59:29Z +631,137,2,2020-02-15T06:59:29Z +632,137,2,2020-02-15T06:59:29Z +633,138,1,2020-02-15T06:59:29Z +634,138,1,2020-02-15T06:59:29Z +635,138,2,2020-02-15T06:59:29Z +636,138,2,2020-02-15T06:59:29Z +637,138,2,2020-02-15T06:59:29Z +638,139,1,2020-02-15T06:59:29Z +639,139,1,2020-02-15T06:59:29Z +640,139,1,2020-02-15T06:59:29Z +641,139,1,2020-02-15T06:59:29Z +642,139,2,2020-02-15T06:59:29Z +643,139,2,2020-02-15T06:59:29Z +644,140,1,2020-02-15T06:59:29Z +645,140,1,2020-02-15T06:59:29Z +646,140,2,2020-02-15T06:59:29Z +647,140,2,2020-02-15T06:59:29Z +648,140,2,2020-02-15T06:59:29Z +649,141,1,2020-02-15T06:59:29Z +650,141,1,2020-02-15T06:59:29Z +651,141,1,2020-02-15T06:59:29Z +652,141,2,2020-02-15T06:59:29Z +653,141,2,2020-02-15T06:59:29Z +654,142,1,2020-02-15T06:59:29Z +655,142,1,2020-02-15T06:59:29Z +656,142,1,2020-02-15T06:59:29Z +657,142,2,2020-02-15T06:59:29Z +658,142,2,2020-02-15T06:59:29Z +659,143,1,2020-02-15T06:59:29Z +660,143,1,2020-02-15T06:59:29Z +661,143,1,2020-02-15T06:59:29Z +662,143,1,2020-02-15T06:59:29Z +663,143,2,2020-02-15T06:59:29Z +664,143,2,2020-02-15T06:59:29Z +665,143,2,2020-02-15T06:59:29Z +666,145,2,2020-02-15T06:59:29Z +667,145,2,2020-02-15T06:59:29Z +668,145,2,2020-02-15T06:59:29Z +669,146,1,2020-02-15T06:59:29Z +670,146,1,2020-02-15T06:59:29Z +671,146,1,2020-02-15T06:59:29Z +672,147,1,2020-02-15T06:59:29Z +673,147,1,2020-02-15T06:59:29Z +674,147,1,2020-02-15T06:59:29Z +675,147,2,2020-02-15T06:59:29Z +676,147,2,2020-02-15T06:59:29Z +677,147,2,2020-02-15T06:59:29Z +678,149,1,2020-02-15T06:59:29Z +679,149,1,2020-02-15T06:59:29Z +680,149,1,2020-02-15T06:59:29Z +681,149,2,2020-02-15T06:59:29Z +682,149,2,2020-02-15T06:59:29Z +683,149,2,2020-02-15T06:59:29Z +684,150,1,2020-02-15T06:59:29Z +685,150,1,2020-02-15T06:59:29Z +686,150,2,2020-02-15T06:59:29Z +687,150,2,2020-02-15T06:59:29Z +688,150,2,2020-02-15T06:59:29Z +689,150,2,2020-02-15T06:59:29Z +690,151,1,2020-02-15T06:59:29Z +691,151,1,2020-02-15T06:59:29Z +692,151,2,2020-02-15T06:59:29Z +693,151,2,2020-02-15T06:59:29Z +694,152,1,2020-02-15T06:59:29Z +695,152,1,2020-02-15T06:59:29Z +696,152,1,2020-02-15T06:59:29Z +697,152,1,2020-02-15T06:59:29Z +698,153,1,2020-02-15T06:59:29Z +699,153,1,2020-02-15T06:59:29Z +700,153,1,2020-02-15T06:59:29Z +701,153,1,2020-02-15T06:59:29Z +702,154,1,2020-02-15T06:59:29Z +703,154,1,2020-02-15T06:59:29Z +704,154,1,2020-02-15T06:59:29Z +705,154,2,2020-02-15T06:59:29Z +706,154,2,2020-02-15T06:59:29Z +707,154,2,2020-02-15T06:59:29Z +708,154,2,2020-02-15T06:59:29Z +709,155,1,2020-02-15T06:59:29Z +710,155,1,2020-02-15T06:59:29Z +711,155,2,2020-02-15T06:59:29Z +712,155,2,2020-02-15T06:59:29Z +713,155,2,2020-02-15T06:59:29Z +714,156,2,2020-02-15T06:59:29Z +715,156,2,2020-02-15T06:59:29Z +716,157,2,2020-02-15T06:59:29Z +717,157,2,2020-02-15T06:59:29Z +718,157,2,2020-02-15T06:59:29Z +719,158,1,2020-02-15T06:59:29Z +720,158,1,2020-02-15T06:59:29Z +721,158,2,2020-02-15T06:59:29Z +722,158,2,2020-02-15T06:59:29Z +723,158,2,2020-02-15T06:59:29Z +724,159,1,2020-02-15T06:59:29Z +725,159,1,2020-02-15T06:59:29Z +726,159,1,2020-02-15T06:59:29Z +727,159,1,2020-02-15T06:59:29Z +728,159,2,2020-02-15T06:59:29Z +729,159,2,2020-02-15T06:59:29Z +730,159,2,2020-02-15T06:59:29Z +731,160,1,2020-02-15T06:59:29Z +732,160,1,2020-02-15T06:59:29Z +733,160,2,2020-02-15T06:59:29Z +734,160,2,2020-02-15T06:59:29Z +735,160,2,2020-02-15T06:59:29Z +736,161,1,2020-02-15T06:59:29Z +737,161,1,2020-02-15T06:59:29Z +738,162,1,2020-02-15T06:59:29Z +739,162,1,2020-02-15T06:59:29Z +740,162,1,2020-02-15T06:59:29Z +741,162,2,2020-02-15T06:59:29Z +742,162,2,2020-02-15T06:59:29Z +743,162,2,2020-02-15T06:59:29Z +744,162,2,2020-02-15T06:59:29Z +745,163,2,2020-02-15T06:59:29Z +746,163,2,2020-02-15T06:59:29Z +747,163,2,2020-02-15T06:59:29Z +748,164,1,2020-02-15T06:59:29Z +749,164,1,2020-02-15T06:59:29Z +750,164,2,2020-02-15T06:59:29Z +751,164,2,2020-02-15T06:59:29Z +752,164,2,2020-02-15T06:59:29Z +753,165,1,2020-02-15T06:59:29Z +754,165,1,2020-02-15T06:59:29Z +755,165,1,2020-02-15T06:59:29Z +756,165,2,2020-02-15T06:59:29Z +757,165,2,2020-02-15T06:59:29Z +758,166,1,2020-02-15T06:59:29Z +759,166,1,2020-02-15T06:59:29Z +760,166,1,2020-02-15T06:59:29Z +761,166,1,2020-02-15T06:59:29Z +762,166,2,2020-02-15T06:59:29Z +763,166,2,2020-02-15T06:59:29Z +764,167,1,2020-02-15T06:59:29Z +765,167,1,2020-02-15T06:59:29Z +766,167,1,2020-02-15T06:59:29Z +767,167,1,2020-02-15T06:59:29Z +768,167,2,2020-02-15T06:59:29Z +769,167,2,2020-02-15T06:59:29Z +770,167,2,2020-02-15T06:59:29Z +771,168,1,2020-02-15T06:59:30Z +772,168,1,2020-02-15T06:59:30Z +773,169,1,2020-02-15T06:59:30Z +774,169,1,2020-02-15T06:59:30Z +775,169,2,2020-02-15T06:59:30Z +776,169,2,2020-02-15T06:59:30Z +777,170,1,2020-02-15T06:59:30Z +778,170,1,2020-02-15T06:59:30Z +779,170,2,2020-02-15T06:59:30Z +780,170,2,2020-02-15T06:59:30Z +781,170,2,2020-02-15T06:59:30Z +782,170,2,2020-02-15T06:59:30Z +783,172,1,2020-02-15T06:59:30Z +784,172,1,2020-02-15T06:59:30Z +785,172,1,2020-02-15T06:59:30Z +786,172,1,2020-02-15T06:59:30Z +787,172,2,2020-02-15T06:59:30Z +788,172,2,2020-02-15T06:59:30Z +789,172,2,2020-02-15T06:59:30Z +790,173,1,2020-02-15T06:59:30Z +791,173,1,2020-02-15T06:59:30Z +792,173,1,2020-02-15T06:59:30Z +793,173,2,2020-02-15T06:59:30Z +794,173,2,2020-02-15T06:59:30Z +795,174,1,2020-02-15T06:59:30Z +796,174,1,2020-02-15T06:59:30Z +797,174,1,2020-02-15T06:59:30Z +798,174,1,2020-02-15T06:59:30Z +799,174,2,2020-02-15T06:59:30Z +800,174,2,2020-02-15T06:59:30Z +801,174,2,2020-02-15T06:59:30Z +802,174,2,2020-02-15T06:59:30Z +803,175,1,2020-02-15T06:59:30Z +804,175,1,2020-02-15T06:59:30Z +805,175,2,2020-02-15T06:59:30Z +806,175,2,2020-02-15T06:59:30Z +807,175,2,2020-02-15T06:59:30Z +808,176,1,2020-02-15T06:59:30Z +809,176,1,2020-02-15T06:59:30Z +810,176,2,2020-02-15T06:59:30Z +811,176,2,2020-02-15T06:59:30Z +812,176,2,2020-02-15T06:59:30Z +813,176,2,2020-02-15T06:59:30Z +814,177,2,2020-02-15T06:59:30Z +815,177,2,2020-02-15T06:59:30Z +816,177,2,2020-02-15T06:59:30Z +817,178,1,2020-02-15T06:59:30Z +818,178,1,2020-02-15T06:59:30Z +819,179,1,2020-02-15T06:59:30Z +820,179,1,2020-02-15T06:59:30Z +821,179,1,2020-02-15T06:59:30Z +822,179,1,2020-02-15T06:59:30Z +823,180,2,2020-02-15T06:59:30Z +824,180,2,2020-02-15T06:59:30Z +825,181,1,2020-02-15T06:59:30Z +826,181,1,2020-02-15T06:59:30Z +827,181,1,2020-02-15T06:59:30Z +828,181,2,2020-02-15T06:59:30Z +829,181,2,2020-02-15T06:59:30Z +830,181,2,2020-02-15T06:59:30Z +831,181,2,2020-02-15T06:59:30Z +832,182,1,2020-02-15T06:59:30Z +833,182,1,2020-02-15T06:59:30Z +834,183,1,2020-02-15T06:59:30Z +835,183,1,2020-02-15T06:59:30Z +836,183,1,2020-02-15T06:59:30Z +837,183,2,2020-02-15T06:59:30Z +838,183,2,2020-02-15T06:59:30Z +839,183,2,2020-02-15T06:59:30Z +840,184,1,2020-02-15T06:59:30Z +841,184,1,2020-02-15T06:59:30Z +842,184,2,2020-02-15T06:59:30Z +843,184,2,2020-02-15T06:59:30Z +844,184,2,2020-02-15T06:59:30Z +845,185,1,2020-02-15T06:59:30Z +846,185,1,2020-02-15T06:59:30Z +847,186,1,2020-02-15T06:59:30Z +848,186,1,2020-02-15T06:59:30Z +849,186,2,2020-02-15T06:59:30Z +850,186,2,2020-02-15T06:59:30Z +851,187,2,2020-02-15T06:59:30Z +852,187,2,2020-02-15T06:59:30Z +853,187,2,2020-02-15T06:59:30Z +854,188,1,2020-02-15T06:59:30Z +855,188,1,2020-02-15T06:59:30Z +856,188,1,2020-02-15T06:59:30Z +857,189,1,2020-02-15T06:59:30Z +858,189,1,2020-02-15T06:59:30Z +859,189,2,2020-02-15T06:59:30Z +860,189,2,2020-02-15T06:59:30Z +861,189,2,2020-02-15T06:59:30Z +862,189,2,2020-02-15T06:59:30Z +863,190,2,2020-02-15T06:59:30Z +864,190,2,2020-02-15T06:59:30Z +865,190,2,2020-02-15T06:59:30Z +866,190,2,2020-02-15T06:59:30Z +867,191,1,2020-02-15T06:59:30Z +868,191,1,2020-02-15T06:59:30Z +869,191,1,2020-02-15T06:59:30Z +870,191,2,2020-02-15T06:59:30Z +871,191,2,2020-02-15T06:59:30Z +872,191,2,2020-02-15T06:59:30Z +873,193,1,2020-02-15T06:59:30Z +874,193,1,2020-02-15T06:59:30Z +875,193,1,2020-02-15T06:59:30Z +876,193,1,2020-02-15T06:59:30Z +877,193,2,2020-02-15T06:59:30Z +878,193,2,2020-02-15T06:59:30Z +879,193,2,2020-02-15T06:59:30Z +880,193,2,2020-02-15T06:59:30Z +881,194,1,2020-02-15T06:59:30Z +882,194,1,2020-02-15T06:59:30Z +883,194,2,2020-02-15T06:59:30Z +884,194,2,2020-02-15T06:59:30Z +885,196,1,2020-02-15T06:59:30Z +886,196,1,2020-02-15T06:59:30Z +887,197,1,2020-02-15T06:59:30Z +888,197,1,2020-02-15T06:59:30Z +889,199,1,2020-02-15T06:59:30Z +890,199,1,2020-02-15T06:59:30Z +891,199,1,2020-02-15T06:59:30Z +892,199,1,2020-02-15T06:59:30Z +893,199,2,2020-02-15T06:59:30Z +894,199,2,2020-02-15T06:59:30Z +895,199,2,2020-02-15T06:59:30Z +896,199,2,2020-02-15T06:59:30Z +897,200,1,2020-02-15T06:59:30Z +898,200,1,2020-02-15T06:59:30Z +899,200,1,2020-02-15T06:59:30Z +900,200,1,2020-02-15T06:59:30Z +901,200,2,2020-02-15T06:59:30Z +902,200,2,2020-02-15T06:59:30Z +903,200,2,2020-02-15T06:59:30Z +904,200,2,2020-02-15T06:59:30Z +905,201,1,2020-02-15T06:59:30Z +906,201,1,2020-02-15T06:59:30Z +907,201,1,2020-02-15T06:59:30Z +908,201,1,2020-02-15T06:59:30Z +909,202,1,2020-02-15T06:59:30Z +910,202,1,2020-02-15T06:59:30Z +911,202,1,2020-02-15T06:59:30Z +912,203,2,2020-02-15T06:59:30Z +913,203,2,2020-02-15T06:59:30Z +914,203,2,2020-02-15T06:59:30Z +915,203,2,2020-02-15T06:59:30Z +916,204,1,2020-02-15T06:59:30Z +917,204,1,2020-02-15T06:59:30Z +918,204,1,2020-02-15T06:59:30Z +919,204,1,2020-02-15T06:59:30Z +920,204,2,2020-02-15T06:59:30Z +921,204,2,2020-02-15T06:59:30Z +922,205,1,2020-02-15T06:59:30Z +923,205,1,2020-02-15T06:59:30Z +924,205,1,2020-02-15T06:59:30Z +925,205,1,2020-02-15T06:59:30Z +926,206,1,2020-02-15T06:59:30Z +927,206,1,2020-02-15T06:59:30Z +928,206,1,2020-02-15T06:59:30Z +929,206,1,2020-02-15T06:59:30Z +930,206,2,2020-02-15T06:59:30Z +931,206,2,2020-02-15T06:59:30Z +932,206,2,2020-02-15T06:59:30Z +933,206,2,2020-02-15T06:59:30Z +934,207,1,2020-02-15T06:59:30Z +935,207,1,2020-02-15T06:59:30Z +936,207,1,2020-02-15T06:59:30Z +937,207,1,2020-02-15T06:59:30Z +938,208,1,2020-02-15T06:59:30Z +939,208,1,2020-02-15T06:59:30Z +940,208,1,2020-02-15T06:59:30Z +941,209,1,2020-02-15T06:59:30Z +942,209,1,2020-02-15T06:59:30Z +943,209,1,2020-02-15T06:59:30Z +944,209,1,2020-02-15T06:59:30Z +945,210,2,2020-02-15T06:59:30Z +946,210,2,2020-02-15T06:59:30Z +947,210,2,2020-02-15T06:59:30Z +948,211,1,2020-02-15T06:59:30Z +949,211,1,2020-02-15T06:59:30Z +950,212,1,2020-02-15T06:59:30Z +951,212,1,2020-02-15T06:59:30Z +952,212,1,2020-02-15T06:59:30Z +953,212,2,2020-02-15T06:59:30Z +954,212,2,2020-02-15T06:59:30Z +955,213,1,2020-02-15T06:59:30Z +956,213,1,2020-02-15T06:59:30Z +957,213,1,2020-02-15T06:59:30Z +958,213,1,2020-02-15T06:59:30Z +959,214,2,2020-02-15T06:59:30Z +960,214,2,2020-02-15T06:59:30Z +961,214,2,2020-02-15T06:59:30Z +962,214,2,2020-02-15T06:59:30Z +963,215,1,2020-02-15T06:59:30Z +964,215,1,2020-02-15T06:59:30Z +965,215,1,2020-02-15T06:59:30Z +966,215,2,2020-02-15T06:59:30Z +967,215,2,2020-02-15T06:59:30Z +968,215,2,2020-02-15T06:59:30Z +969,216,1,2020-02-15T06:59:30Z +970,216,1,2020-02-15T06:59:30Z +971,216,2,2020-02-15T06:59:30Z +972,216,2,2020-02-15T06:59:30Z +973,216,2,2020-02-15T06:59:30Z +974,218,1,2020-02-15T06:59:30Z +975,218,1,2020-02-15T06:59:30Z +976,218,1,2020-02-15T06:59:30Z +977,218,1,2020-02-15T06:59:30Z +978,218,2,2020-02-15T06:59:30Z +979,218,2,2020-02-15T06:59:30Z +980,218,2,2020-02-15T06:59:30Z +981,219,1,2020-02-15T06:59:30Z +982,219,1,2020-02-15T06:59:30Z +983,219,1,2020-02-15T06:59:30Z +984,219,1,2020-02-15T06:59:30Z +985,220,1,2020-02-15T06:59:30Z +986,220,1,2020-02-15T06:59:30Z +987,220,1,2020-02-15T06:59:30Z +988,220,1,2020-02-15T06:59:30Z +989,220,2,2020-02-15T06:59:30Z +990,220,2,2020-02-15T06:59:30Z +991,220,2,2020-02-15T06:59:30Z +992,220,2,2020-02-15T06:59:30Z +993,222,1,2020-02-15T06:59:30Z +994,222,1,2020-02-15T06:59:30Z +995,222,2,2020-02-15T06:59:30Z +996,222,2,2020-02-15T06:59:30Z +997,222,2,2020-02-15T06:59:30Z +998,222,2,2020-02-15T06:59:30Z +999,223,2,2020-02-15T06:59:30Z +1000,223,2,2020-02-15T06:59:30Z +1001,224,1,2020-02-15T06:59:30Z +1002,224,1,2020-02-15T06:59:30Z +1003,225,1,2020-02-15T06:59:30Z +1004,225,1,2020-02-15T06:59:30Z +1005,225,1,2020-02-15T06:59:30Z +1006,226,1,2020-02-15T06:59:30Z +1007,226,1,2020-02-15T06:59:30Z +1008,226,2,2020-02-15T06:59:30Z +1009,226,2,2020-02-15T06:59:30Z +1010,226,2,2020-02-15T06:59:30Z +1011,227,1,2020-02-15T06:59:30Z +1012,227,1,2020-02-15T06:59:30Z +1013,227,1,2020-02-15T06:59:30Z +1014,227,2,2020-02-15T06:59:30Z +1015,227,2,2020-02-15T06:59:30Z +1016,228,1,2020-02-15T06:59:30Z +1017,228,1,2020-02-15T06:59:30Z +1018,228,1,2020-02-15T06:59:30Z +1019,228,2,2020-02-15T06:59:30Z +1020,228,2,2020-02-15T06:59:30Z +1021,228,2,2020-02-15T06:59:30Z +1022,228,2,2020-02-15T06:59:30Z +1023,229,1,2020-02-15T06:59:30Z +1024,229,1,2020-02-15T06:59:30Z +1025,229,2,2020-02-15T06:59:30Z +1026,229,2,2020-02-15T06:59:30Z +1027,230,1,2020-02-15T06:59:30Z +1028,230,1,2020-02-15T06:59:30Z +1029,231,1,2020-02-15T06:59:30Z +1030,231,1,2020-02-15T06:59:30Z +1031,231,1,2020-02-15T06:59:30Z +1032,231,1,2020-02-15T06:59:30Z +1033,231,2,2020-02-15T06:59:30Z +1034,231,2,2020-02-15T06:59:30Z +1035,231,2,2020-02-15T06:59:30Z +1036,231,2,2020-02-15T06:59:30Z +1037,232,1,2020-02-15T06:59:30Z +1038,232,1,2020-02-15T06:59:30Z +1039,232,1,2020-02-15T06:59:30Z +1040,232,2,2020-02-15T06:59:30Z +1041,232,2,2020-02-15T06:59:30Z +1042,233,1,2020-02-15T06:59:30Z +1043,233,1,2020-02-15T06:59:30Z +1044,233,1,2020-02-15T06:59:30Z +1045,233,1,2020-02-15T06:59:30Z +1046,233,2,2020-02-15T06:59:30Z +1047,233,2,2020-02-15T06:59:30Z +1048,234,1,2020-02-15T06:59:30Z +1049,234,1,2020-02-15T06:59:30Z +1050,234,1,2020-02-15T06:59:30Z +1051,234,1,2020-02-15T06:59:30Z +1052,234,2,2020-02-15T06:59:30Z +1053,234,2,2020-02-15T06:59:30Z +1054,234,2,2020-02-15T06:59:30Z +1055,235,1,2020-02-15T06:59:30Z +1056,235,1,2020-02-15T06:59:30Z +1057,235,2,2020-02-15T06:59:30Z +1058,235,2,2020-02-15T06:59:30Z +1059,235,2,2020-02-15T06:59:30Z +1060,235,2,2020-02-15T06:59:30Z +1061,236,2,2020-02-15T06:59:30Z +1062,236,2,2020-02-15T06:59:30Z +1063,236,2,2020-02-15T06:59:30Z +1064,236,2,2020-02-15T06:59:30Z +1065,237,1,2020-02-15T06:59:30Z +1066,237,1,2020-02-15T06:59:30Z +1067,238,1,2020-02-15T06:59:30Z +1068,238,1,2020-02-15T06:59:30Z +1069,239,1,2020-02-15T06:59:30Z +1070,239,1,2020-02-15T06:59:30Z +1071,239,1,2020-02-15T06:59:30Z +1072,239,1,2020-02-15T06:59:30Z +1073,239,2,2020-02-15T06:59:30Z +1074,239,2,2020-02-15T06:59:30Z +1075,239,2,2020-02-15T06:59:30Z +1076,239,2,2020-02-15T06:59:30Z +1077,240,2,2020-02-15T06:59:30Z +1078,240,2,2020-02-15T06:59:30Z +1079,240,2,2020-02-15T06:59:30Z +1080,241,1,2020-02-15T06:59:30Z +1081,241,1,2020-02-15T06:59:30Z +1082,241,1,2020-02-15T06:59:30Z +1083,241,1,2020-02-15T06:59:30Z +1084,242,1,2020-02-15T06:59:30Z +1085,242,1,2020-02-15T06:59:30Z +1086,242,2,2020-02-15T06:59:30Z +1087,242,2,2020-02-15T06:59:30Z +1088,242,2,2020-02-15T06:59:30Z +1089,243,1,2020-02-15T06:59:30Z +1090,243,1,2020-02-15T06:59:30Z +1091,243,2,2020-02-15T06:59:30Z +1092,243,2,2020-02-15T06:59:30Z +1093,243,2,2020-02-15T06:59:30Z +1094,243,2,2020-02-15T06:59:30Z +1095,244,1,2020-02-15T06:59:30Z +1096,244,1,2020-02-15T06:59:30Z +1097,244,1,2020-02-15T06:59:30Z +1098,244,1,2020-02-15T06:59:30Z +1099,244,2,2020-02-15T06:59:30Z +1100,244,2,2020-02-15T06:59:30Z +1101,244,2,2020-02-15T06:59:30Z +1102,245,1,2020-02-15T06:59:30Z +1103,245,1,2020-02-15T06:59:30Z +1104,245,1,2020-02-15T06:59:30Z +1105,245,2,2020-02-15T06:59:30Z +1106,245,2,2020-02-15T06:59:30Z +1107,245,2,2020-02-15T06:59:30Z +1108,245,2,2020-02-15T06:59:30Z +1109,246,2,2020-02-15T06:59:30Z +1110,246,2,2020-02-15T06:59:30Z +1111,246,2,2020-02-15T06:59:30Z +1112,247,1,2020-02-15T06:59:30Z +1113,247,1,2020-02-15T06:59:30Z +1114,247,1,2020-02-15T06:59:30Z +1115,247,2,2020-02-15T06:59:30Z +1116,247,2,2020-02-15T06:59:30Z +1117,247,2,2020-02-15T06:59:30Z +1118,247,2,2020-02-15T06:59:30Z +1119,248,2,2020-02-15T06:59:30Z +1120,248,2,2020-02-15T06:59:30Z +1121,249,1,2020-02-15T06:59:30Z +1122,249,1,2020-02-15T06:59:30Z +1123,249,2,2020-02-15T06:59:30Z +1124,249,2,2020-02-15T06:59:30Z +1125,249,2,2020-02-15T06:59:30Z +1126,249,2,2020-02-15T06:59:30Z +1127,250,2,2020-02-15T06:59:30Z +1128,250,2,2020-02-15T06:59:30Z +1129,250,2,2020-02-15T06:59:30Z +1130,250,2,2020-02-15T06:59:30Z +1131,251,1,2020-02-15T06:59:30Z +1132,251,1,2020-02-15T06:59:30Z +1133,251,2,2020-02-15T06:59:30Z +1134,251,2,2020-02-15T06:59:30Z +1135,251,2,2020-02-15T06:59:30Z +1136,252,1,2020-02-15T06:59:30Z +1137,252,1,2020-02-15T06:59:30Z +1138,252,1,2020-02-15T06:59:30Z +1139,252,2,2020-02-15T06:59:30Z +1140,252,2,2020-02-15T06:59:30Z +1141,252,2,2020-02-15T06:59:30Z +1142,253,1,2020-02-15T06:59:30Z +1143,253,1,2020-02-15T06:59:30Z +1144,253,1,2020-02-15T06:59:30Z +1145,253,1,2020-02-15T06:59:30Z +1146,253,2,2020-02-15T06:59:30Z +1147,253,2,2020-02-15T06:59:30Z +1148,254,1,2020-02-15T06:59:30Z +1149,254,1,2020-02-15T06:59:30Z +1150,254,2,2020-02-15T06:59:30Z +1151,254,2,2020-02-15T06:59:30Z +1152,254,2,2020-02-15T06:59:30Z +1153,255,1,2020-02-15T06:59:30Z +1154,255,1,2020-02-15T06:59:30Z +1155,255,1,2020-02-15T06:59:30Z +1156,255,1,2020-02-15T06:59:30Z +1157,255,2,2020-02-15T06:59:30Z +1158,255,2,2020-02-15T06:59:30Z +1159,256,2,2020-02-15T06:59:30Z +1160,256,2,2020-02-15T06:59:30Z +1161,256,2,2020-02-15T06:59:30Z +1162,257,2,2020-02-15T06:59:30Z +1163,257,2,2020-02-15T06:59:30Z +1164,257,2,2020-02-15T06:59:30Z +1165,258,2,2020-02-15T06:59:30Z +1166,258,2,2020-02-15T06:59:30Z +1167,258,2,2020-02-15T06:59:30Z +1168,258,2,2020-02-15T06:59:30Z +1169,259,1,2020-02-15T06:59:30Z +1170,259,1,2020-02-15T06:59:30Z +1171,260,2,2020-02-15T06:59:30Z +1172,260,2,2020-02-15T06:59:30Z +1173,260,2,2020-02-15T06:59:30Z +1174,260,2,2020-02-15T06:59:30Z +1175,261,1,2020-02-15T06:59:30Z +1176,261,1,2020-02-15T06:59:30Z +1177,262,2,2020-02-15T06:59:30Z +1178,262,2,2020-02-15T06:59:30Z +1179,263,1,2020-02-15T06:59:30Z +1180,263,1,2020-02-15T06:59:30Z +1181,263,1,2020-02-15T06:59:30Z +1182,263,1,2020-02-15T06:59:30Z +1183,263,2,2020-02-15T06:59:30Z +1184,263,2,2020-02-15T06:59:30Z +1185,263,2,2020-02-15T06:59:30Z +1186,264,2,2020-02-15T06:59:30Z +1187,264,2,2020-02-15T06:59:30Z +1188,265,1,2020-02-15T06:59:30Z +1189,265,1,2020-02-15T06:59:30Z +1190,265,1,2020-02-15T06:59:30Z +1191,265,1,2020-02-15T06:59:30Z +1192,266,1,2020-02-15T06:59:30Z +1193,266,1,2020-02-15T06:59:30Z +1194,266,1,2020-02-15T06:59:30Z +1195,266,1,2020-02-15T06:59:30Z +1196,266,2,2020-02-15T06:59:30Z +1197,266,2,2020-02-15T06:59:30Z +1198,266,2,2020-02-15T06:59:30Z +1199,266,2,2020-02-15T06:59:30Z +1200,267,1,2020-02-15T06:59:30Z +1201,267,1,2020-02-15T06:59:30Z +1202,267,1,2020-02-15T06:59:30Z +1203,267,1,2020-02-15T06:59:30Z +1204,267,2,2020-02-15T06:59:30Z +1205,267,2,2020-02-15T06:59:30Z +1206,268,2,2020-02-15T06:59:30Z +1207,268,2,2020-02-15T06:59:30Z +1208,269,1,2020-02-15T06:59:30Z +1209,269,1,2020-02-15T06:59:30Z +1210,269,2,2020-02-15T06:59:30Z +1211,269,2,2020-02-15T06:59:30Z +1212,269,2,2020-02-15T06:59:30Z +1213,269,2,2020-02-15T06:59:30Z +1214,270,1,2020-02-15T06:59:30Z +1215,270,1,2020-02-15T06:59:30Z +1216,270,1,2020-02-15T06:59:30Z +1217,270,2,2020-02-15T06:59:30Z +1218,270,2,2020-02-15T06:59:30Z +1219,270,2,2020-02-15T06:59:30Z +1220,270,2,2020-02-15T06:59:30Z +1221,271,1,2020-02-15T06:59:30Z +1222,271,1,2020-02-15T06:59:30Z +1223,271,1,2020-02-15T06:59:30Z +1224,271,2,2020-02-15T06:59:30Z +1225,271,2,2020-02-15T06:59:30Z +1226,272,1,2020-02-15T06:59:30Z +1227,272,1,2020-02-15T06:59:30Z +1228,272,1,2020-02-15T06:59:30Z +1229,272,1,2020-02-15T06:59:30Z +1230,273,1,2020-02-15T06:59:30Z +1231,273,1,2020-02-15T06:59:30Z +1232,273,1,2020-02-15T06:59:30Z +1233,273,1,2020-02-15T06:59:30Z +1234,273,2,2020-02-15T06:59:30Z +1235,273,2,2020-02-15T06:59:30Z +1236,273,2,2020-02-15T06:59:30Z +1237,274,1,2020-02-15T06:59:30Z +1238,274,1,2020-02-15T06:59:30Z +1239,274,1,2020-02-15T06:59:30Z +1240,274,2,2020-02-15T06:59:30Z +1241,274,2,2020-02-15T06:59:30Z +1242,274,2,2020-02-15T06:59:30Z +1243,274,2,2020-02-15T06:59:30Z +1244,275,1,2020-02-15T06:59:30Z +1245,275,1,2020-02-15T06:59:30Z +1246,275,1,2020-02-15T06:59:30Z +1247,275,2,2020-02-15T06:59:30Z +1248,275,2,2020-02-15T06:59:30Z +1249,276,1,2020-02-15T06:59:30Z +1250,276,1,2020-02-15T06:59:30Z +1251,276,1,2020-02-15T06:59:30Z +1252,276,1,2020-02-15T06:59:30Z +1253,277,1,2020-02-15T06:59:30Z +1254,277,1,2020-02-15T06:59:30Z +1255,277,1,2020-02-15T06:59:30Z +1256,278,1,2020-02-15T06:59:30Z +1257,278,1,2020-02-15T06:59:30Z +1258,279,1,2020-02-15T06:59:30Z +1259,279,1,2020-02-15T06:59:30Z +1260,280,1,2020-02-15T06:59:30Z +1261,280,1,2020-02-15T06:59:30Z +1262,280,1,2020-02-15T06:59:30Z +1263,280,1,2020-02-15T06:59:30Z +1264,280,2,2020-02-15T06:59:30Z +1265,280,2,2020-02-15T06:59:30Z +1266,281,1,2020-02-15T06:59:30Z +1267,281,1,2020-02-15T06:59:30Z +1268,281,2,2020-02-15T06:59:30Z +1269,281,2,2020-02-15T06:59:30Z +1270,281,2,2020-02-15T06:59:30Z +1271,281,2,2020-02-15T06:59:30Z +1272,282,1,2020-02-15T06:59:30Z +1273,282,1,2020-02-15T06:59:30Z +1274,282,1,2020-02-15T06:59:30Z +1275,282,2,2020-02-15T06:59:30Z +1276,282,2,2020-02-15T06:59:30Z +1277,282,2,2020-02-15T06:59:30Z +1278,283,1,2020-02-15T06:59:30Z +1279,283,1,2020-02-15T06:59:30Z +1280,283,1,2020-02-15T06:59:30Z +1281,284,1,2020-02-15T06:59:30Z +1282,284,1,2020-02-15T06:59:30Z +1283,284,1,2020-02-15T06:59:30Z +1284,284,2,2020-02-15T06:59:30Z +1285,284,2,2020-02-15T06:59:30Z +1286,284,2,2020-02-15T06:59:30Z +1287,284,2,2020-02-15T06:59:30Z +1288,285,1,2020-02-15T06:59:30Z +1289,285,1,2020-02-15T06:59:30Z +1290,285,1,2020-02-15T06:59:30Z +1291,285,2,2020-02-15T06:59:30Z +1292,285,2,2020-02-15T06:59:30Z +1293,285,2,2020-02-15T06:59:30Z +1294,285,2,2020-02-15T06:59:30Z +1295,286,1,2020-02-15T06:59:30Z +1296,286,1,2020-02-15T06:59:30Z +1297,286,2,2020-02-15T06:59:30Z +1298,286,2,2020-02-15T06:59:30Z +1299,286,2,2020-02-15T06:59:30Z +1300,287,1,2020-02-15T06:59:30Z +1301,287,1,2020-02-15T06:59:30Z +1302,287,2,2020-02-15T06:59:30Z +1303,287,2,2020-02-15T06:59:30Z +1304,288,1,2020-02-15T06:59:30Z +1305,288,1,2020-02-15T06:59:30Z +1306,288,2,2020-02-15T06:59:30Z +1307,288,2,2020-02-15T06:59:30Z +1308,288,2,2020-02-15T06:59:30Z +1309,288,2,2020-02-15T06:59:30Z +1310,289,1,2020-02-15T06:59:30Z +1311,289,1,2020-02-15T06:59:30Z +1312,290,1,2020-02-15T06:59:30Z +1313,290,1,2020-02-15T06:59:30Z +1314,290,1,2020-02-15T06:59:30Z +1315,291,1,2020-02-15T06:59:30Z +1316,291,1,2020-02-15T06:59:30Z +1317,291,1,2020-02-15T06:59:30Z +1318,291,1,2020-02-15T06:59:30Z +1319,292,1,2020-02-15T06:59:30Z +1320,292,1,2020-02-15T06:59:30Z +1321,292,1,2020-02-15T06:59:30Z +1322,292,2,2020-02-15T06:59:30Z +1323,292,2,2020-02-15T06:59:30Z +1324,292,2,2020-02-15T06:59:30Z +1325,293,1,2020-02-15T06:59:30Z +1326,293,1,2020-02-15T06:59:30Z +1327,293,2,2020-02-15T06:59:30Z +1328,293,2,2020-02-15T06:59:30Z +1329,293,2,2020-02-15T06:59:30Z +1330,294,1,2020-02-15T06:59:30Z +1331,294,1,2020-02-15T06:59:30Z +1332,294,2,2020-02-15T06:59:30Z +1333,294,2,2020-02-15T06:59:30Z +1334,294,2,2020-02-15T06:59:30Z +1335,295,1,2020-02-15T06:59:30Z +1336,295,1,2020-02-15T06:59:30Z +1337,295,1,2020-02-15T06:59:30Z +1338,295,1,2020-02-15T06:59:30Z +1339,295,2,2020-02-15T06:59:30Z +1340,295,2,2020-02-15T06:59:30Z +1341,295,2,2020-02-15T06:59:30Z +1342,295,2,2020-02-15T06:59:30Z +1343,296,1,2020-02-15T06:59:30Z +1344,296,1,2020-02-15T06:59:30Z +1345,296,1,2020-02-15T06:59:30Z +1346,296,1,2020-02-15T06:59:30Z +1347,297,2,2020-02-15T06:59:30Z +1348,297,2,2020-02-15T06:59:30Z +1349,298,1,2020-02-15T06:59:30Z +1350,298,1,2020-02-15T06:59:30Z +1351,298,2,2020-02-15T06:59:30Z +1352,298,2,2020-02-15T06:59:30Z +1353,298,2,2020-02-15T06:59:30Z +1354,299,1,2020-02-15T06:59:30Z +1355,299,1,2020-02-15T06:59:30Z +1356,299,1,2020-02-15T06:59:30Z +1357,299,1,2020-02-15T06:59:30Z +1358,300,1,2020-02-15T06:59:30Z +1359,300,1,2020-02-15T06:59:30Z +1360,300,2,2020-02-15T06:59:30Z +1361,300,2,2020-02-15T06:59:30Z +1362,300,2,2020-02-15T06:59:30Z +1363,300,2,2020-02-15T06:59:30Z +1364,301,1,2020-02-15T06:59:30Z +1365,301,1,2020-02-15T06:59:30Z +1366,301,1,2020-02-15T06:59:30Z +1367,301,1,2020-02-15T06:59:30Z +1368,301,2,2020-02-15T06:59:30Z +1369,301,2,2020-02-15T06:59:30Z +1370,301,2,2020-02-15T06:59:30Z +1371,301,2,2020-02-15T06:59:30Z +1372,302,1,2020-02-15T06:59:30Z +1373,302,1,2020-02-15T06:59:30Z +1374,302,2,2020-02-15T06:59:30Z +1375,302,2,2020-02-15T06:59:30Z +1376,302,2,2020-02-15T06:59:30Z +1377,302,2,2020-02-15T06:59:30Z +1378,303,1,2020-02-15T06:59:30Z +1379,303,1,2020-02-15T06:59:30Z +1380,303,1,2020-02-15T06:59:30Z +1381,303,1,2020-02-15T06:59:30Z +1382,303,2,2020-02-15T06:59:30Z +1383,303,2,2020-02-15T06:59:30Z +1384,304,1,2020-02-15T06:59:30Z +1385,304,1,2020-02-15T06:59:30Z +1386,304,1,2020-02-15T06:59:30Z +1387,304,1,2020-02-15T06:59:30Z +1388,304,2,2020-02-15T06:59:30Z +1389,304,2,2020-02-15T06:59:30Z +1390,305,1,2020-02-15T06:59:30Z +1391,305,1,2020-02-15T06:59:30Z +1392,305,1,2020-02-15T06:59:30Z +1393,305,1,2020-02-15T06:59:30Z +1394,305,2,2020-02-15T06:59:30Z +1395,305,2,2020-02-15T06:59:30Z +1396,305,2,2020-02-15T06:59:30Z +1397,306,1,2020-02-15T06:59:30Z +1398,306,1,2020-02-15T06:59:30Z +1399,306,1,2020-02-15T06:59:30Z +1400,307,1,2020-02-15T06:59:30Z +1401,307,1,2020-02-15T06:59:30Z +1402,307,1,2020-02-15T06:59:30Z +1403,307,2,2020-02-15T06:59:30Z +1404,307,2,2020-02-15T06:59:30Z +1405,307,2,2020-02-15T06:59:30Z +1406,308,1,2020-02-15T06:59:30Z +1407,308,1,2020-02-15T06:59:30Z +1408,308,2,2020-02-15T06:59:30Z +1409,308,2,2020-02-15T06:59:30Z +1410,309,1,2020-02-15T06:59:30Z +1411,309,1,2020-02-15T06:59:30Z +1412,309,2,2020-02-15T06:59:30Z +1413,309,2,2020-02-15T06:59:30Z +1414,309,2,2020-02-15T06:59:30Z +1415,309,2,2020-02-15T06:59:30Z +1416,310,1,2020-02-15T06:59:30Z +1417,310,1,2020-02-15T06:59:30Z +1418,311,1,2020-02-15T06:59:30Z +1419,311,1,2020-02-15T06:59:30Z +1420,311,1,2020-02-15T06:59:30Z +1421,311,2,2020-02-15T06:59:30Z +1422,311,2,2020-02-15T06:59:30Z +1423,311,2,2020-02-15T06:59:30Z +1424,311,2,2020-02-15T06:59:30Z +1425,312,2,2020-02-15T06:59:30Z +1426,312,2,2020-02-15T06:59:30Z +1427,312,2,2020-02-15T06:59:30Z +1428,313,1,2020-02-15T06:59:30Z +1429,313,1,2020-02-15T06:59:30Z +1430,313,1,2020-02-15T06:59:30Z +1431,313,1,2020-02-15T06:59:30Z +1432,313,2,2020-02-15T06:59:30Z +1433,313,2,2020-02-15T06:59:30Z +1434,314,1,2020-02-15T06:59:30Z +1435,314,1,2020-02-15T06:59:30Z +1436,314,2,2020-02-15T06:59:30Z +1437,314,2,2020-02-15T06:59:30Z +1438,314,2,2020-02-15T06:59:30Z +1439,314,2,2020-02-15T06:59:30Z +1440,315,2,2020-02-15T06:59:30Z +1441,315,2,2020-02-15T06:59:30Z +1442,315,2,2020-02-15T06:59:30Z +1443,316,2,2020-02-15T06:59:30Z +1444,316,2,2020-02-15T06:59:30Z +1445,317,1,2020-02-15T06:59:30Z +1446,317,1,2020-02-15T06:59:30Z +1447,317,1,2020-02-15T06:59:30Z +1448,317,1,2020-02-15T06:59:30Z +1449,317,2,2020-02-15T06:59:30Z +1450,317,2,2020-02-15T06:59:30Z +1451,317,2,2020-02-15T06:59:30Z +1452,319,1,2020-02-15T06:59:30Z +1453,319,1,2020-02-15T06:59:30Z +1454,319,1,2020-02-15T06:59:30Z +1455,319,2,2020-02-15T06:59:30Z +1456,319,2,2020-02-15T06:59:30Z +1457,319,2,2020-02-15T06:59:30Z +1458,319,2,2020-02-15T06:59:30Z +1459,320,1,2020-02-15T06:59:30Z +1460,320,1,2020-02-15T06:59:30Z +1461,320,1,2020-02-15T06:59:30Z +1462,320,2,2020-02-15T06:59:30Z +1463,320,2,2020-02-15T06:59:30Z +1464,320,2,2020-02-15T06:59:30Z +1465,320,2,2020-02-15T06:59:30Z +1466,321,1,2020-02-15T06:59:30Z +1467,321,1,2020-02-15T06:59:30Z +1468,321,1,2020-02-15T06:59:30Z +1469,321,1,2020-02-15T06:59:30Z +1470,322,1,2020-02-15T06:59:30Z +1471,322,1,2020-02-15T06:59:30Z +1472,322,1,2020-02-15T06:59:30Z +1473,322,1,2020-02-15T06:59:30Z +1474,322,2,2020-02-15T06:59:30Z +1475,322,2,2020-02-15T06:59:30Z +1476,323,2,2020-02-15T06:59:30Z +1477,323,2,2020-02-15T06:59:30Z +1478,323,2,2020-02-15T06:59:30Z +1479,323,2,2020-02-15T06:59:30Z +1480,324,1,2020-02-15T06:59:30Z +1481,324,1,2020-02-15T06:59:30Z +1482,324,1,2020-02-15T06:59:30Z +1483,324,2,2020-02-15T06:59:30Z +1484,324,2,2020-02-15T06:59:30Z +1485,326,1,2020-02-15T06:59:30Z +1486,326,1,2020-02-15T06:59:30Z +1487,326,2,2020-02-15T06:59:30Z +1488,326,2,2020-02-15T06:59:30Z +1489,326,2,2020-02-15T06:59:30Z +1490,326,2,2020-02-15T06:59:30Z +1491,327,1,2020-02-15T06:59:30Z +1492,327,1,2020-02-15T06:59:30Z +1493,327,1,2020-02-15T06:59:30Z +1494,327,1,2020-02-15T06:59:30Z +1495,327,2,2020-02-15T06:59:30Z +1496,327,2,2020-02-15T06:59:30Z +1497,328,2,2020-02-15T06:59:30Z +1498,328,2,2020-02-15T06:59:30Z +1499,328,2,2020-02-15T06:59:30Z +1500,328,2,2020-02-15T06:59:30Z +1501,329,1,2020-02-15T06:59:30Z +1502,329,1,2020-02-15T06:59:30Z +1503,329,1,2020-02-15T06:59:30Z +1504,329,2,2020-02-15T06:59:30Z +1505,329,2,2020-02-15T06:59:30Z +1506,329,2,2020-02-15T06:59:30Z +1507,330,1,2020-02-15T06:59:30Z +1508,330,1,2020-02-15T06:59:30Z +1509,330,1,2020-02-15T06:59:30Z +1510,330,1,2020-02-15T06:59:30Z +1511,330,2,2020-02-15T06:59:30Z +1512,330,2,2020-02-15T06:59:30Z +1513,330,2,2020-02-15T06:59:30Z +1514,331,1,2020-02-15T06:59:30Z +1515,331,1,2020-02-15T06:59:30Z +1516,331,1,2020-02-15T06:59:30Z +1517,331,1,2020-02-15T06:59:30Z +1518,331,2,2020-02-15T06:59:30Z +1519,331,2,2020-02-15T06:59:30Z +1520,331,2,2020-02-15T06:59:30Z +1521,331,2,2020-02-15T06:59:30Z +1522,333,1,2020-02-15T06:59:30Z +1523,333,1,2020-02-15T06:59:30Z +1524,333,2,2020-02-15T06:59:30Z +1525,333,2,2020-02-15T06:59:30Z +1526,334,1,2020-02-15T06:59:30Z +1527,334,1,2020-02-15T06:59:30Z +1528,334,2,2020-02-15T06:59:30Z +1529,334,2,2020-02-15T06:59:30Z +1530,334,2,2020-02-15T06:59:30Z +1531,334,2,2020-02-15T06:59:30Z +1532,335,1,2020-02-15T06:59:30Z +1533,335,1,2020-02-15T06:59:30Z +1534,336,1,2020-02-15T06:59:30Z +1535,336,1,2020-02-15T06:59:30Z +1536,336,1,2020-02-15T06:59:30Z +1537,336,2,2020-02-15T06:59:30Z +1538,336,2,2020-02-15T06:59:30Z +1539,337,1,2020-02-15T06:59:30Z +1540,337,1,2020-02-15T06:59:30Z +1541,337,2,2020-02-15T06:59:30Z +1542,337,2,2020-02-15T06:59:30Z +1543,338,2,2020-02-15T06:59:30Z +1544,338,2,2020-02-15T06:59:30Z +1545,338,2,2020-02-15T06:59:30Z +1546,339,2,2020-02-15T06:59:30Z +1547,339,2,2020-02-15T06:59:30Z +1548,339,2,2020-02-15T06:59:30Z +1549,340,1,2020-02-15T06:59:30Z +1550,340,1,2020-02-15T06:59:30Z +1551,341,1,2020-02-15T06:59:30Z +1552,341,1,2020-02-15T06:59:30Z +1553,341,1,2020-02-15T06:59:30Z +1554,341,1,2020-02-15T06:59:30Z +1555,341,2,2020-02-15T06:59:30Z +1556,341,2,2020-02-15T06:59:30Z +1557,341,2,2020-02-15T06:59:30Z +1558,341,2,2020-02-15T06:59:30Z +1559,342,1,2020-02-15T06:59:30Z +1560,342,1,2020-02-15T06:59:30Z +1561,342,1,2020-02-15T06:59:30Z +1562,342,1,2020-02-15T06:59:30Z +1563,343,1,2020-02-15T06:59:30Z +1564,343,1,2020-02-15T06:59:30Z +1565,344,1,2020-02-15T06:59:30Z +1566,344,1,2020-02-15T06:59:30Z +1567,344,1,2020-02-15T06:59:30Z +1568,344,2,2020-02-15T06:59:30Z +1569,344,2,2020-02-15T06:59:30Z +1570,345,1,2020-02-15T06:59:30Z +1571,345,1,2020-02-15T06:59:30Z +1572,345,1,2020-02-15T06:59:30Z +1573,345,2,2020-02-15T06:59:30Z +1574,345,2,2020-02-15T06:59:30Z +1575,346,1,2020-02-15T06:59:30Z +1576,346,1,2020-02-15T06:59:30Z +1577,346,2,2020-02-15T06:59:30Z +1578,346,2,2020-02-15T06:59:30Z +1579,346,2,2020-02-15T06:59:30Z +1580,346,2,2020-02-15T06:59:30Z +1581,347,1,2020-02-15T06:59:30Z +1582,347,1,2020-02-15T06:59:30Z +1583,347,1,2020-02-15T06:59:30Z +1584,347,1,2020-02-15T06:59:30Z +1585,348,2,2020-02-15T06:59:30Z +1586,348,2,2020-02-15T06:59:30Z +1587,348,2,2020-02-15T06:59:30Z +1588,348,2,2020-02-15T06:59:30Z +1589,349,1,2020-02-15T06:59:30Z +1590,349,1,2020-02-15T06:59:30Z +1591,349,1,2020-02-15T06:59:30Z +1592,349,1,2020-02-15T06:59:30Z +1593,349,2,2020-02-15T06:59:30Z +1594,349,2,2020-02-15T06:59:30Z +1595,349,2,2020-02-15T06:59:30Z +1596,350,1,2020-02-15T06:59:30Z +1597,350,1,2020-02-15T06:59:30Z +1598,350,1,2020-02-15T06:59:30Z +1599,350,1,2020-02-15T06:59:30Z +1600,350,2,2020-02-15T06:59:30Z +1601,350,2,2020-02-15T06:59:30Z +1602,350,2,2020-02-15T06:59:30Z +1603,350,2,2020-02-15T06:59:30Z +1604,351,1,2020-02-15T06:59:30Z +1605,351,1,2020-02-15T06:59:30Z +1606,351,1,2020-02-15T06:59:30Z +1607,351,2,2020-02-15T06:59:30Z +1608,351,2,2020-02-15T06:59:30Z +1609,351,2,2020-02-15T06:59:30Z +1610,352,2,2020-02-15T06:59:30Z +1611,352,2,2020-02-15T06:59:30Z +1612,352,2,2020-02-15T06:59:30Z +1613,352,2,2020-02-15T06:59:30Z +1614,353,1,2020-02-15T06:59:30Z +1615,353,1,2020-02-15T06:59:30Z +1616,353,2,2020-02-15T06:59:30Z +1617,353,2,2020-02-15T06:59:30Z +1618,353,2,2020-02-15T06:59:30Z +1619,353,2,2020-02-15T06:59:30Z +1620,354,1,2020-02-15T06:59:30Z +1621,354,1,2020-02-15T06:59:30Z +1622,354,1,2020-02-15T06:59:30Z +1623,354,2,2020-02-15T06:59:30Z +1624,354,2,2020-02-15T06:59:30Z +1625,355,2,2020-02-15T06:59:30Z +1626,355,2,2020-02-15T06:59:30Z +1627,356,1,2020-02-15T06:59:30Z +1628,356,1,2020-02-15T06:59:30Z +1629,356,1,2020-02-15T06:59:30Z +1630,356,1,2020-02-15T06:59:30Z +1631,356,2,2020-02-15T06:59:30Z +1632,356,2,2020-02-15T06:59:30Z +1633,356,2,2020-02-15T06:59:30Z +1634,356,2,2020-02-15T06:59:30Z +1635,357,2,2020-02-15T06:59:30Z +1636,357,2,2020-02-15T06:59:30Z +1637,357,2,2020-02-15T06:59:30Z +1638,357,2,2020-02-15T06:59:30Z +1639,358,1,2020-02-15T06:59:30Z +1640,358,1,2020-02-15T06:59:30Z +1641,358,1,2020-02-15T06:59:30Z +1642,358,1,2020-02-15T06:59:30Z +1643,358,2,2020-02-15T06:59:30Z +1644,358,2,2020-02-15T06:59:30Z +1645,358,2,2020-02-15T06:59:30Z +1646,358,2,2020-02-15T06:59:30Z +1647,360,1,2020-02-15T06:59:30Z +1648,360,1,2020-02-15T06:59:30Z +1649,360,1,2020-02-15T06:59:30Z +1650,360,1,2020-02-15T06:59:30Z +1651,361,1,2020-02-15T06:59:30Z +1652,361,1,2020-02-15T06:59:30Z +1653,361,1,2020-02-15T06:59:30Z +1654,361,1,2020-02-15T06:59:30Z +1655,361,2,2020-02-15T06:59:30Z +1656,361,2,2020-02-15T06:59:30Z +1657,361,2,2020-02-15T06:59:30Z +1658,361,2,2020-02-15T06:59:30Z +1659,362,1,2020-02-15T06:59:30Z +1660,362,1,2020-02-15T06:59:30Z +1661,363,1,2020-02-15T06:59:30Z +1662,363,1,2020-02-15T06:59:30Z +1663,363,1,2020-02-15T06:59:30Z +1664,363,2,2020-02-15T06:59:30Z +1665,363,2,2020-02-15T06:59:30Z +1666,363,2,2020-02-15T06:59:30Z +1667,364,1,2020-02-15T06:59:30Z +1668,364,1,2020-02-15T06:59:30Z +1669,364,1,2020-02-15T06:59:30Z +1670,365,1,2020-02-15T06:59:30Z +1671,365,1,2020-02-15T06:59:30Z +1672,365,2,2020-02-15T06:59:30Z +1673,365,2,2020-02-15T06:59:30Z +1674,366,1,2020-02-15T06:59:30Z +1675,366,1,2020-02-15T06:59:30Z +1676,366,1,2020-02-15T06:59:30Z +1677,366,1,2020-02-15T06:59:30Z +1678,366,2,2020-02-15T06:59:30Z +1679,366,2,2020-02-15T06:59:30Z +1680,366,2,2020-02-15T06:59:30Z +1681,367,1,2020-02-15T06:59:30Z +1682,367,1,2020-02-15T06:59:30Z +1683,367,1,2020-02-15T06:59:30Z +1684,367,1,2020-02-15T06:59:30Z +1685,367,2,2020-02-15T06:59:30Z +1686,367,2,2020-02-15T06:59:30Z +1687,367,2,2020-02-15T06:59:30Z +1688,368,1,2020-02-15T06:59:30Z +1689,368,1,2020-02-15T06:59:30Z +1690,369,1,2020-02-15T06:59:30Z +1691,369,1,2020-02-15T06:59:30Z +1692,369,1,2020-02-15T06:59:30Z +1693,369,1,2020-02-15T06:59:30Z +1694,369,2,2020-02-15T06:59:30Z +1695,369,2,2020-02-15T06:59:30Z +1696,369,2,2020-02-15T06:59:30Z +1697,369,2,2020-02-15T06:59:30Z +1698,370,1,2020-02-15T06:59:30Z +1699,370,1,2020-02-15T06:59:30Z +1700,370,1,2020-02-15T06:59:30Z +1701,370,2,2020-02-15T06:59:30Z +1702,370,2,2020-02-15T06:59:30Z +1703,371,1,2020-02-15T06:59:30Z +1704,371,1,2020-02-15T06:59:30Z +1705,371,1,2020-02-15T06:59:30Z +1706,372,1,2020-02-15T06:59:30Z +1707,372,1,2020-02-15T06:59:30Z +1708,373,1,2020-02-15T06:59:30Z +1709,373,1,2020-02-15T06:59:30Z +1710,373,1,2020-02-15T06:59:30Z +1711,373,2,2020-02-15T06:59:30Z +1712,373,2,2020-02-15T06:59:30Z +1713,374,1,2020-02-15T06:59:30Z +1714,374,1,2020-02-15T06:59:30Z +1715,374,1,2020-02-15T06:59:30Z +1716,374,2,2020-02-15T06:59:30Z +1717,374,2,2020-02-15T06:59:30Z +1718,374,2,2020-02-15T06:59:30Z +1719,374,2,2020-02-15T06:59:30Z +1720,375,1,2020-02-15T06:59:30Z +1721,375,1,2020-02-15T06:59:30Z +1722,376,1,2020-02-15T06:59:30Z +1723,376,1,2020-02-15T06:59:30Z +1724,376,1,2020-02-15T06:59:30Z +1725,376,1,2020-02-15T06:59:30Z +1726,376,2,2020-02-15T06:59:30Z +1727,376,2,2020-02-15T06:59:30Z +1728,376,2,2020-02-15T06:59:30Z +1729,377,1,2020-02-15T06:59:30Z +1730,377,1,2020-02-15T06:59:30Z +1731,377,1,2020-02-15T06:59:30Z +1732,377,2,2020-02-15T06:59:30Z +1733,377,2,2020-02-15T06:59:30Z +1734,377,2,2020-02-15T06:59:30Z +1735,378,1,2020-02-15T06:59:30Z +1736,378,1,2020-02-15T06:59:30Z +1737,378,1,2020-02-15T06:59:30Z +1738,378,1,2020-02-15T06:59:30Z +1739,378,2,2020-02-15T06:59:30Z +1740,378,2,2020-02-15T06:59:30Z +1741,378,2,2020-02-15T06:59:30Z +1742,378,2,2020-02-15T06:59:30Z +1743,379,2,2020-02-15T06:59:30Z +1744,379,2,2020-02-15T06:59:30Z +1745,379,2,2020-02-15T06:59:30Z +1746,379,2,2020-02-15T06:59:30Z +1747,380,1,2020-02-15T06:59:30Z +1748,380,1,2020-02-15T06:59:30Z +1749,380,2,2020-02-15T06:59:30Z +1750,380,2,2020-02-15T06:59:30Z +1751,380,2,2020-02-15T06:59:30Z +1752,381,1,2020-02-15T06:59:30Z +1753,381,1,2020-02-15T06:59:30Z +1754,381,2,2020-02-15T06:59:30Z +1755,381,2,2020-02-15T06:59:30Z +1756,381,2,2020-02-15T06:59:30Z +1757,382,1,2020-02-15T06:59:30Z +1758,382,1,2020-02-15T06:59:30Z +1759,382,1,2020-02-15T06:59:30Z +1760,382,1,2020-02-15T06:59:30Z +1761,382,2,2020-02-15T06:59:30Z +1762,382,2,2020-02-15T06:59:30Z +1763,382,2,2020-02-15T06:59:30Z +1764,382,2,2020-02-15T06:59:30Z +1765,383,1,2020-02-15T06:59:30Z +1766,383,1,2020-02-15T06:59:30Z +1767,383,1,2020-02-15T06:59:30Z +1768,383,2,2020-02-15T06:59:30Z +1769,383,2,2020-02-15T06:59:30Z +1770,384,2,2020-02-15T06:59:30Z +1771,384,2,2020-02-15T06:59:30Z +1772,384,2,2020-02-15T06:59:30Z +1773,385,1,2020-02-15T06:59:30Z +1774,385,1,2020-02-15T06:59:30Z +1775,385,2,2020-02-15T06:59:30Z +1776,385,2,2020-02-15T06:59:30Z +1777,385,2,2020-02-15T06:59:30Z +1778,387,1,2020-02-15T06:59:30Z +1779,387,1,2020-02-15T06:59:30Z +1780,387,1,2020-02-15T06:59:30Z +1781,387,2,2020-02-15T06:59:30Z +1782,387,2,2020-02-15T06:59:30Z +1783,387,2,2020-02-15T06:59:30Z +1784,388,1,2020-02-15T06:59:30Z +1785,388,1,2020-02-15T06:59:30Z +1786,388,1,2020-02-15T06:59:30Z +1787,388,2,2020-02-15T06:59:30Z +1788,388,2,2020-02-15T06:59:30Z +1789,388,2,2020-02-15T06:59:30Z +1790,389,1,2020-02-15T06:59:30Z +1791,389,1,2020-02-15T06:59:30Z +1792,389,2,2020-02-15T06:59:30Z +1793,389,2,2020-02-15T06:59:30Z +1794,390,1,2020-02-15T06:59:30Z +1795,390,1,2020-02-15T06:59:30Z +1796,390,1,2020-02-15T06:59:30Z +1797,391,1,2020-02-15T06:59:30Z +1798,391,1,2020-02-15T06:59:30Z +1799,391,1,2020-02-15T06:59:30Z +1800,391,1,2020-02-15T06:59:30Z +1801,391,2,2020-02-15T06:59:30Z +1802,391,2,2020-02-15T06:59:30Z +1803,391,2,2020-02-15T06:59:30Z +1804,392,1,2020-02-15T06:59:30Z +1805,392,1,2020-02-15T06:59:30Z +1806,392,1,2020-02-15T06:59:30Z +1807,392,1,2020-02-15T06:59:30Z +1808,392,2,2020-02-15T06:59:30Z +1809,392,2,2020-02-15T06:59:30Z +1810,393,1,2020-02-15T06:59:30Z +1811,393,1,2020-02-15T06:59:30Z +1812,394,1,2020-02-15T06:59:30Z +1813,394,1,2020-02-15T06:59:30Z +1814,394,1,2020-02-15T06:59:30Z +1815,394,1,2020-02-15T06:59:30Z +1816,395,1,2020-02-15T06:59:30Z +1817,395,1,2020-02-15T06:59:30Z +1818,395,1,2020-02-15T06:59:30Z +1819,395,2,2020-02-15T06:59:30Z +1820,395,2,2020-02-15T06:59:30Z +1821,395,2,2020-02-15T06:59:30Z +1822,396,2,2020-02-15T06:59:30Z +1823,396,2,2020-02-15T06:59:30Z +1824,396,2,2020-02-15T06:59:30Z +1825,396,2,2020-02-15T06:59:30Z +1826,397,1,2020-02-15T06:59:30Z +1827,397,1,2020-02-15T06:59:30Z +1828,397,1,2020-02-15T06:59:30Z +1829,397,2,2020-02-15T06:59:30Z +1830,397,2,2020-02-15T06:59:30Z +1831,397,2,2020-02-15T06:59:30Z +1832,397,2,2020-02-15T06:59:30Z +1833,398,2,2020-02-15T06:59:30Z +1834,398,2,2020-02-15T06:59:30Z +1835,398,2,2020-02-15T06:59:30Z +1836,398,2,2020-02-15T06:59:30Z +1837,399,2,2020-02-15T06:59:30Z +1838,399,2,2020-02-15T06:59:30Z +1839,400,1,2020-02-15T06:59:30Z +1840,400,1,2020-02-15T06:59:30Z +1841,401,1,2020-02-15T06:59:30Z +1842,401,1,2020-02-15T06:59:30Z +1843,402,1,2020-02-15T06:59:30Z +1844,402,1,2020-02-15T06:59:30Z +1845,402,1,2020-02-15T06:59:30Z +1846,402,2,2020-02-15T06:59:30Z +1847,402,2,2020-02-15T06:59:30Z +1848,402,2,2020-02-15T06:59:30Z +1849,403,1,2020-02-15T06:59:30Z +1850,403,1,2020-02-15T06:59:30Z +1851,403,1,2020-02-15T06:59:30Z +1852,403,1,2020-02-15T06:59:30Z +1853,403,2,2020-02-15T06:59:30Z +1854,403,2,2020-02-15T06:59:30Z +1855,403,2,2020-02-15T06:59:30Z +1856,403,2,2020-02-15T06:59:30Z +1857,405,2,2020-02-15T06:59:30Z +1858,405,2,2020-02-15T06:59:30Z +1859,406,1,2020-02-15T06:59:30Z +1860,406,1,2020-02-15T06:59:30Z +1861,406,2,2020-02-15T06:59:30Z +1862,406,2,2020-02-15T06:59:30Z +1863,406,2,2020-02-15T06:59:30Z +1864,406,2,2020-02-15T06:59:30Z +1865,407,1,2020-02-15T06:59:30Z +1866,407,1,2020-02-15T06:59:30Z +1867,408,1,2020-02-15T06:59:30Z +1868,408,1,2020-02-15T06:59:30Z +1869,408,1,2020-02-15T06:59:30Z +1870,408,1,2020-02-15T06:59:30Z +1871,408,2,2020-02-15T06:59:30Z +1872,408,2,2020-02-15T06:59:30Z +1873,408,2,2020-02-15T06:59:30Z +1874,409,1,2020-02-15T06:59:30Z +1875,409,1,2020-02-15T06:59:30Z +1876,409,1,2020-02-15T06:59:30Z +1877,409,1,2020-02-15T06:59:30Z +1878,409,2,2020-02-15T06:59:30Z +1879,409,2,2020-02-15T06:59:30Z +1880,409,2,2020-02-15T06:59:30Z +1881,410,1,2020-02-15T06:59:30Z +1882,410,1,2020-02-15T06:59:30Z +1883,410,1,2020-02-15T06:59:30Z +1884,410,2,2020-02-15T06:59:30Z +1885,410,2,2020-02-15T06:59:30Z +1886,411,1,2020-02-15T06:59:30Z +1887,411,1,2020-02-15T06:59:30Z +1888,412,1,2020-02-15T06:59:30Z +1889,412,1,2020-02-15T06:59:30Z +1890,412,1,2020-02-15T06:59:30Z +1891,412,1,2020-02-15T06:59:30Z +1892,412,2,2020-02-15T06:59:30Z +1893,412,2,2020-02-15T06:59:30Z +1894,412,2,2020-02-15T06:59:30Z +1895,412,2,2020-02-15T06:59:30Z +1896,413,1,2020-02-15T06:59:30Z +1897,413,1,2020-02-15T06:59:30Z +1898,413,1,2020-02-15T06:59:30Z +1899,414,1,2020-02-15T06:59:30Z +1900,414,1,2020-02-15T06:59:30Z +1901,414,1,2020-02-15T06:59:30Z +1902,414,2,2020-02-15T06:59:30Z +1903,414,2,2020-02-15T06:59:30Z +1904,414,2,2020-02-15T06:59:30Z +1905,415,1,2020-02-15T06:59:30Z +1906,415,1,2020-02-15T06:59:30Z +1907,415,1,2020-02-15T06:59:30Z +1908,415,2,2020-02-15T06:59:30Z +1909,415,2,2020-02-15T06:59:30Z +1910,415,2,2020-02-15T06:59:30Z +1911,416,1,2020-02-15T06:59:30Z +1912,416,1,2020-02-15T06:59:30Z +1913,416,2,2020-02-15T06:59:30Z +1914,416,2,2020-02-15T06:59:30Z +1915,416,2,2020-02-15T06:59:30Z +1916,416,2,2020-02-15T06:59:30Z +1917,417,1,2020-02-15T06:59:30Z +1918,417,1,2020-02-15T06:59:30Z +1919,417,1,2020-02-15T06:59:30Z +1920,417,1,2020-02-15T06:59:30Z +1921,417,2,2020-02-15T06:59:30Z +1922,417,2,2020-02-15T06:59:30Z +1923,418,1,2020-02-15T06:59:30Z +1924,418,1,2020-02-15T06:59:30Z +1925,418,1,2020-02-15T06:59:30Z +1926,418,1,2020-02-15T06:59:30Z +1927,418,2,2020-02-15T06:59:30Z +1928,418,2,2020-02-15T06:59:30Z +1929,418,2,2020-02-15T06:59:30Z +1930,418,2,2020-02-15T06:59:30Z +1931,420,1,2020-02-15T06:59:30Z +1932,420,1,2020-02-15T06:59:30Z +1933,420,2,2020-02-15T06:59:30Z +1934,420,2,2020-02-15T06:59:30Z +1935,420,2,2020-02-15T06:59:30Z +1936,421,2,2020-02-15T06:59:30Z +1937,421,2,2020-02-15T06:59:30Z +1938,421,2,2020-02-15T06:59:30Z +1939,421,2,2020-02-15T06:59:30Z +1940,422,2,2020-02-15T06:59:30Z +1941,422,2,2020-02-15T06:59:30Z +1942,423,1,2020-02-15T06:59:30Z +1943,423,1,2020-02-15T06:59:30Z +1944,423,2,2020-02-15T06:59:30Z +1945,423,2,2020-02-15T06:59:30Z +1946,424,1,2020-02-15T06:59:30Z +1947,424,1,2020-02-15T06:59:30Z +1948,424,1,2020-02-15T06:59:30Z +1949,424,2,2020-02-15T06:59:30Z +1950,424,2,2020-02-15T06:59:30Z +1951,425,2,2020-02-15T06:59:30Z +1952,425,2,2020-02-15T06:59:30Z +1953,426,2,2020-02-15T06:59:30Z +1954,426,2,2020-02-15T06:59:30Z +1955,426,2,2020-02-15T06:59:30Z +1956,427,1,2020-02-15T06:59:30Z +1957,427,1,2020-02-15T06:59:30Z +1958,427,1,2020-02-15T06:59:30Z +1959,427,1,2020-02-15T06:59:30Z +1960,428,1,2020-02-15T06:59:30Z +1961,428,1,2020-02-15T06:59:30Z +1962,428,1,2020-02-15T06:59:30Z +1963,428,1,2020-02-15T06:59:30Z +1964,428,2,2020-02-15T06:59:30Z +1965,428,2,2020-02-15T06:59:30Z +1966,429,1,2020-02-15T06:59:30Z +1967,429,1,2020-02-15T06:59:30Z +1968,429,2,2020-02-15T06:59:30Z +1969,429,2,2020-02-15T06:59:30Z +1970,429,2,2020-02-15T06:59:30Z +1971,429,2,2020-02-15T06:59:30Z +1972,430,2,2020-02-15T06:59:30Z +1973,430,2,2020-02-15T06:59:30Z +1974,430,2,2020-02-15T06:59:30Z +1975,430,2,2020-02-15T06:59:30Z +1976,431,2,2020-02-15T06:59:30Z +1977,431,2,2020-02-15T06:59:30Z +1978,431,2,2020-02-15T06:59:30Z +1979,432,1,2020-02-15T06:59:30Z +1980,432,1,2020-02-15T06:59:30Z +1981,432,1,2020-02-15T06:59:30Z +1982,432,2,2020-02-15T06:59:30Z +1983,432,2,2020-02-15T06:59:30Z +1984,433,1,2020-02-15T06:59:30Z +1985,433,1,2020-02-15T06:59:30Z +1986,433,1,2020-02-15T06:59:30Z +1987,433,1,2020-02-15T06:59:30Z +1988,433,2,2020-02-15T06:59:30Z +1989,433,2,2020-02-15T06:59:30Z +1990,434,1,2020-02-15T06:59:30Z +1991,434,1,2020-02-15T06:59:30Z +1992,434,1,2020-02-15T06:59:30Z +1993,434,1,2020-02-15T06:59:30Z +1994,434,2,2020-02-15T06:59:30Z +1995,434,2,2020-02-15T06:59:30Z +1996,434,2,2020-02-15T06:59:30Z +1997,434,2,2020-02-15T06:59:30Z +1998,435,1,2020-02-15T06:59:30Z +1999,435,1,2020-02-15T06:59:30Z +2000,436,1,2020-02-15T06:59:30Z +2001,436,1,2020-02-15T06:59:30Z +2002,436,1,2020-02-15T06:59:30Z +2003,436,2,2020-02-15T06:59:30Z +2004,436,2,2020-02-15T06:59:30Z +2005,436,2,2020-02-15T06:59:30Z +2006,437,1,2020-02-15T06:59:30Z +2007,437,1,2020-02-15T06:59:30Z +2008,437,2,2020-02-15T06:59:30Z +2009,437,2,2020-02-15T06:59:30Z +2010,437,2,2020-02-15T06:59:30Z +2011,437,2,2020-02-15T06:59:30Z +2012,438,1,2020-02-15T06:59:30Z +2013,438,1,2020-02-15T06:59:30Z +2014,438,2,2020-02-15T06:59:30Z +2015,438,2,2020-02-15T06:59:30Z +2016,438,2,2020-02-15T06:59:30Z +2017,439,1,2020-02-15T06:59:30Z +2018,439,1,2020-02-15T06:59:30Z +2019,439,1,2020-02-15T06:59:30Z +2020,439,1,2020-02-15T06:59:30Z +2021,439,2,2020-02-15T06:59:30Z +2022,439,2,2020-02-15T06:59:30Z +2023,440,1,2020-02-15T06:59:30Z +2024,440,1,2020-02-15T06:59:30Z +2025,440,2,2020-02-15T06:59:30Z +2026,440,2,2020-02-15T06:59:30Z +2027,441,1,2020-02-15T06:59:30Z +2028,441,1,2020-02-15T06:59:30Z +2029,442,1,2020-02-15T06:59:30Z +2030,442,1,2020-02-15T06:59:30Z +2031,442,1,2020-02-15T06:59:30Z +2032,443,1,2020-02-15T06:59:30Z +2033,443,1,2020-02-15T06:59:30Z +2034,443,1,2020-02-15T06:59:30Z +2035,443,2,2020-02-15T06:59:30Z +2036,443,2,2020-02-15T06:59:30Z +2037,443,2,2020-02-15T06:59:30Z +2038,443,2,2020-02-15T06:59:30Z +2039,444,1,2020-02-15T06:59:30Z +2040,444,1,2020-02-15T06:59:30Z +2041,444,1,2020-02-15T06:59:30Z +2042,444,1,2020-02-15T06:59:30Z +2043,444,2,2020-02-15T06:59:30Z +2044,444,2,2020-02-15T06:59:30Z +2045,444,2,2020-02-15T06:59:30Z +2046,444,2,2020-02-15T06:59:30Z +2047,445,1,2020-02-15T06:59:30Z +2048,445,1,2020-02-15T06:59:30Z +2049,445,1,2020-02-15T06:59:30Z +2050,445,2,2020-02-15T06:59:30Z +2051,445,2,2020-02-15T06:59:30Z +2052,445,2,2020-02-15T06:59:30Z +2053,446,1,2020-02-15T06:59:30Z +2054,446,1,2020-02-15T06:59:30Z +2055,446,2,2020-02-15T06:59:30Z +2056,446,2,2020-02-15T06:59:30Z +2057,447,1,2020-02-15T06:59:30Z +2058,447,1,2020-02-15T06:59:30Z +2059,447,1,2020-02-15T06:59:30Z +2060,447,1,2020-02-15T06:59:30Z +2061,447,2,2020-02-15T06:59:30Z +2062,447,2,2020-02-15T06:59:30Z +2063,447,2,2020-02-15T06:59:30Z +2064,448,1,2020-02-15T06:59:30Z +2065,448,1,2020-02-15T06:59:30Z +2066,448,2,2020-02-15T06:59:30Z +2067,448,2,2020-02-15T06:59:30Z +2068,448,2,2020-02-15T06:59:30Z +2069,449,2,2020-02-15T06:59:30Z +2070,449,2,2020-02-15T06:59:30Z +2071,449,2,2020-02-15T06:59:30Z +2072,449,2,2020-02-15T06:59:30Z +2073,450,1,2020-02-15T06:59:30Z +2074,450,1,2020-02-15T06:59:30Z +2075,450,1,2020-02-15T06:59:30Z +2076,450,2,2020-02-15T06:59:30Z +2077,450,2,2020-02-15T06:59:30Z +2078,450,2,2020-02-15T06:59:30Z +2079,450,2,2020-02-15T06:59:30Z +2080,451,1,2020-02-15T06:59:30Z +2081,451,1,2020-02-15T06:59:30Z +2082,451,2,2020-02-15T06:59:30Z +2083,451,2,2020-02-15T06:59:30Z +2084,451,2,2020-02-15T06:59:30Z +2085,452,2,2020-02-15T06:59:30Z +2086,452,2,2020-02-15T06:59:30Z +2087,452,2,2020-02-15T06:59:30Z +2088,452,2,2020-02-15T06:59:30Z +2089,453,1,2020-02-15T06:59:30Z +2090,453,1,2020-02-15T06:59:30Z +2091,453,1,2020-02-15T06:59:30Z +2092,453,2,2020-02-15T06:59:30Z +2093,453,2,2020-02-15T06:59:30Z +2094,454,1,2020-02-15T06:59:30Z +2095,454,1,2020-02-15T06:59:30Z +2096,455,1,2020-02-15T06:59:30Z +2097,455,1,2020-02-15T06:59:30Z +2098,455,1,2020-02-15T06:59:30Z +2099,455,1,2020-02-15T06:59:30Z +2100,456,1,2020-02-15T06:59:30Z +2101,456,1,2020-02-15T06:59:30Z +2102,456,2,2020-02-15T06:59:30Z +2103,456,2,2020-02-15T06:59:30Z +2104,456,2,2020-02-15T06:59:30Z +2105,456,2,2020-02-15T06:59:30Z +2106,457,1,2020-02-15T06:59:30Z +2107,457,1,2020-02-15T06:59:30Z +2108,457,2,2020-02-15T06:59:30Z +2109,457,2,2020-02-15T06:59:30Z +2110,457,2,2020-02-15T06:59:30Z +2111,457,2,2020-02-15T06:59:30Z +2112,458,1,2020-02-15T06:59:30Z +2113,458,1,2020-02-15T06:59:30Z +2114,458,2,2020-02-15T06:59:30Z +2115,458,2,2020-02-15T06:59:30Z +2116,458,2,2020-02-15T06:59:30Z +2117,458,2,2020-02-15T06:59:30Z +2118,459,2,2020-02-15T06:59:30Z +2119,459,2,2020-02-15T06:59:30Z +2120,460,1,2020-02-15T06:59:30Z +2121,460,1,2020-02-15T06:59:30Z +2122,460,1,2020-02-15T06:59:30Z +2123,460,1,2020-02-15T06:59:30Z +2124,460,2,2020-02-15T06:59:30Z +2125,460,2,2020-02-15T06:59:30Z +2126,460,2,2020-02-15T06:59:30Z +2127,460,2,2020-02-15T06:59:30Z +2128,461,1,2020-02-15T06:59:30Z +2129,461,1,2020-02-15T06:59:30Z +2130,461,2,2020-02-15T06:59:30Z +2131,461,2,2020-02-15T06:59:30Z +2132,461,2,2020-02-15T06:59:30Z +2133,461,2,2020-02-15T06:59:30Z +2134,462,1,2020-02-15T06:59:30Z +2135,462,1,2020-02-15T06:59:30Z +2136,462,2,2020-02-15T06:59:30Z +2137,462,2,2020-02-15T06:59:30Z +2138,462,2,2020-02-15T06:59:30Z +2139,463,1,2020-02-15T06:59:30Z +2140,463,1,2020-02-15T06:59:30Z +2141,463,1,2020-02-15T06:59:30Z +2142,463,2,2020-02-15T06:59:30Z +2143,463,2,2020-02-15T06:59:30Z +2144,464,1,2020-02-15T06:59:30Z +2145,464,1,2020-02-15T06:59:30Z +2146,464,1,2020-02-15T06:59:30Z +2147,464,1,2020-02-15T06:59:30Z +2148,464,2,2020-02-15T06:59:30Z +2149,464,2,2020-02-15T06:59:30Z +2150,464,2,2020-02-15T06:59:30Z +2151,465,1,2020-02-15T06:59:30Z +2152,465,1,2020-02-15T06:59:30Z +2153,465,2,2020-02-15T06:59:30Z +2154,465,2,2020-02-15T06:59:30Z +2155,465,2,2020-02-15T06:59:30Z +2156,466,1,2020-02-15T06:59:30Z +2157,466,1,2020-02-15T06:59:30Z +2158,467,1,2020-02-15T06:59:30Z +2159,467,1,2020-02-15T06:59:30Z +2160,467,1,2020-02-15T06:59:30Z +2161,467,1,2020-02-15T06:59:30Z +2162,467,2,2020-02-15T06:59:30Z +2163,467,2,2020-02-15T06:59:30Z +2164,467,2,2020-02-15T06:59:30Z +2165,468,1,2020-02-15T06:59:30Z +2166,468,1,2020-02-15T06:59:30Z +2167,468,1,2020-02-15T06:59:30Z +2168,468,1,2020-02-15T06:59:30Z +2169,468,2,2020-02-15T06:59:30Z +2170,468,2,2020-02-15T06:59:30Z +2171,468,2,2020-02-15T06:59:30Z +2172,468,2,2020-02-15T06:59:30Z +2173,469,2,2020-02-15T06:59:30Z +2174,469,2,2020-02-15T06:59:30Z +2175,469,2,2020-02-15T06:59:30Z +2176,470,1,2020-02-15T06:59:30Z +2177,470,1,2020-02-15T06:59:30Z +2178,471,1,2020-02-15T06:59:30Z +2179,471,1,2020-02-15T06:59:30Z +2180,471,1,2020-02-15T06:59:30Z +2181,471,2,2020-02-15T06:59:30Z +2182,471,2,2020-02-15T06:59:30Z +2183,471,2,2020-02-15T06:59:30Z +2184,471,2,2020-02-15T06:59:30Z +2185,472,2,2020-02-15T06:59:30Z +2186,472,2,2020-02-15T06:59:30Z +2187,473,1,2020-02-15T06:59:30Z +2188,473,1,2020-02-15T06:59:30Z +2189,473,2,2020-02-15T06:59:30Z +2190,473,2,2020-02-15T06:59:30Z +2191,473,2,2020-02-15T06:59:30Z +2192,474,2,2020-02-15T06:59:30Z +2193,474,2,2020-02-15T06:59:30Z +2194,474,2,2020-02-15T06:59:30Z +2195,474,2,2020-02-15T06:59:30Z +2196,475,2,2020-02-15T06:59:30Z +2197,475,2,2020-02-15T06:59:30Z +2198,476,1,2020-02-15T06:59:30Z +2199,476,1,2020-02-15T06:59:30Z +2200,476,1,2020-02-15T06:59:30Z +2201,476,2,2020-02-15T06:59:30Z +2202,476,2,2020-02-15T06:59:30Z +2203,476,2,2020-02-15T06:59:30Z +2204,476,2,2020-02-15T06:59:30Z +2205,477,2,2020-02-15T06:59:30Z +2206,477,2,2020-02-15T06:59:30Z +2207,477,2,2020-02-15T06:59:30Z +2208,478,1,2020-02-15T06:59:30Z +2209,478,1,2020-02-15T06:59:30Z +2210,478,2,2020-02-15T06:59:30Z +2211,478,2,2020-02-15T06:59:30Z +2212,478,2,2020-02-15T06:59:30Z +2213,479,1,2020-02-15T06:59:30Z +2214,479,1,2020-02-15T06:59:30Z +2215,479,2,2020-02-15T06:59:30Z +2216,479,2,2020-02-15T06:59:30Z +2217,479,2,2020-02-15T06:59:30Z +2218,480,1,2020-02-15T06:59:30Z +2219,480,1,2020-02-15T06:59:30Z +2220,480,2,2020-02-15T06:59:30Z +2221,480,2,2020-02-15T06:59:30Z +2222,481,1,2020-02-15T06:59:30Z +2223,481,1,2020-02-15T06:59:30Z +2224,481,1,2020-02-15T06:59:30Z +2225,481,2,2020-02-15T06:59:30Z +2226,481,2,2020-02-15T06:59:30Z +2227,481,2,2020-02-15T06:59:30Z +2228,482,1,2020-02-15T06:59:30Z +2229,482,1,2020-02-15T06:59:30Z +2230,482,1,2020-02-15T06:59:30Z +2231,483,1,2020-02-15T06:59:30Z +2232,483,1,2020-02-15T06:59:30Z +2233,483,1,2020-02-15T06:59:30Z +2234,483,2,2020-02-15T06:59:30Z +2235,483,2,2020-02-15T06:59:30Z +2236,484,1,2020-02-15T06:59:30Z +2237,484,1,2020-02-15T06:59:30Z +2238,484,1,2020-02-15T06:59:30Z +2239,484,1,2020-02-15T06:59:30Z +2240,484,2,2020-02-15T06:59:30Z +2241,484,2,2020-02-15T06:59:30Z +2242,484,2,2020-02-15T06:59:30Z +2243,485,2,2020-02-15T06:59:30Z +2244,485,2,2020-02-15T06:59:30Z +2245,485,2,2020-02-15T06:59:30Z +2246,486,1,2020-02-15T06:59:30Z +2247,486,1,2020-02-15T06:59:30Z +2248,486,1,2020-02-15T06:59:30Z +2249,486,1,2020-02-15T06:59:30Z +2250,486,2,2020-02-15T06:59:30Z +2251,486,2,2020-02-15T06:59:30Z +2252,487,2,2020-02-15T06:59:30Z +2253,487,2,2020-02-15T06:59:30Z +2254,487,2,2020-02-15T06:59:30Z +2255,488,1,2020-02-15T06:59:30Z +2256,488,1,2020-02-15T06:59:30Z +2257,488,2,2020-02-15T06:59:30Z +2258,488,2,2020-02-15T06:59:30Z +2259,488,2,2020-02-15T06:59:30Z +2260,489,1,2020-02-15T06:59:30Z +2261,489,1,2020-02-15T06:59:30Z +2262,489,1,2020-02-15T06:59:30Z +2263,489,1,2020-02-15T06:59:30Z +2264,489,2,2020-02-15T06:59:30Z +2265,489,2,2020-02-15T06:59:30Z +2266,489,2,2020-02-15T06:59:30Z +2267,489,2,2020-02-15T06:59:30Z +2268,490,1,2020-02-15T06:59:30Z +2269,490,1,2020-02-15T06:59:30Z +2270,491,1,2020-02-15T06:59:30Z +2271,491,1,2020-02-15T06:59:30Z +2272,491,2,2020-02-15T06:59:30Z +2273,491,2,2020-02-15T06:59:30Z +2274,491,2,2020-02-15T06:59:30Z +2275,491,2,2020-02-15T06:59:30Z +2276,492,1,2020-02-15T06:59:30Z +2277,492,1,2020-02-15T06:59:30Z +2278,493,2,2020-02-15T06:59:30Z +2279,493,2,2020-02-15T06:59:30Z +2280,493,2,2020-02-15T06:59:30Z +2281,494,1,2020-02-15T06:59:30Z +2282,494,1,2020-02-15T06:59:30Z +2283,494,1,2020-02-15T06:59:30Z +2284,494,1,2020-02-15T06:59:30Z +2285,494,2,2020-02-15T06:59:30Z +2286,494,2,2020-02-15T06:59:30Z +2287,496,1,2020-02-15T06:59:30Z +2288,496,1,2020-02-15T06:59:30Z +2289,496,2,2020-02-15T06:59:30Z +2290,496,2,2020-02-15T06:59:30Z +2291,496,2,2020-02-15T06:59:30Z +2292,498,1,2020-02-15T06:59:30Z +2293,498,1,2020-02-15T06:59:30Z +2294,499,1,2020-02-15T06:59:30Z +2295,499,1,2020-02-15T06:59:30Z +2296,500,1,2020-02-15T06:59:30Z +2297,500,1,2020-02-15T06:59:30Z +2298,500,1,2020-02-15T06:59:30Z +2299,500,1,2020-02-15T06:59:30Z +2300,500,2,2020-02-15T06:59:30Z +2301,500,2,2020-02-15T06:59:30Z +2302,500,2,2020-02-15T06:59:30Z +2303,500,2,2020-02-15T06:59:30Z +2304,501,1,2020-02-15T06:59:30Z +2305,501,1,2020-02-15T06:59:30Z +2306,501,1,2020-02-15T06:59:30Z +2307,501,2,2020-02-15T06:59:30Z +2308,501,2,2020-02-15T06:59:30Z +2309,502,1,2020-02-15T06:59:30Z +2310,502,1,2020-02-15T06:59:30Z +2311,502,1,2020-02-15T06:59:30Z +2312,502,1,2020-02-15T06:59:30Z +2313,502,2,2020-02-15T06:59:30Z +2314,502,2,2020-02-15T06:59:30Z +2315,502,2,2020-02-15T06:59:30Z +2316,503,1,2020-02-15T06:59:30Z +2317,503,1,2020-02-15T06:59:30Z +2318,503,1,2020-02-15T06:59:30Z +2319,504,1,2020-02-15T06:59:30Z +2320,504,1,2020-02-15T06:59:30Z +2321,504,1,2020-02-15T06:59:30Z +2322,504,1,2020-02-15T06:59:30Z +2323,504,2,2020-02-15T06:59:30Z +2324,504,2,2020-02-15T06:59:30Z +2325,505,2,2020-02-15T06:59:30Z +2326,505,2,2020-02-15T06:59:30Z +2327,505,2,2020-02-15T06:59:30Z +2328,505,2,2020-02-15T06:59:30Z +2329,506,1,2020-02-15T06:59:30Z +2330,506,1,2020-02-15T06:59:30Z +2331,506,1,2020-02-15T06:59:30Z +2332,506,1,2020-02-15T06:59:30Z +2333,506,2,2020-02-15T06:59:30Z +2334,506,2,2020-02-15T06:59:30Z +2335,507,2,2020-02-15T06:59:30Z +2336,507,2,2020-02-15T06:59:30Z +2337,508,2,2020-02-15T06:59:30Z +2338,508,2,2020-02-15T06:59:30Z +2339,508,2,2020-02-15T06:59:30Z +2340,509,2,2020-02-15T06:59:30Z +2341,509,2,2020-02-15T06:59:30Z +2342,509,2,2020-02-15T06:59:30Z +2343,510,1,2020-02-15T06:59:30Z +2344,510,1,2020-02-15T06:59:30Z +2345,510,1,2020-02-15T06:59:30Z +2346,510,1,2020-02-15T06:59:30Z +2347,511,1,2020-02-15T06:59:30Z +2348,511,1,2020-02-15T06:59:30Z +2349,511,2,2020-02-15T06:59:30Z +2350,511,2,2020-02-15T06:59:30Z +2351,511,2,2020-02-15T06:59:30Z +2352,512,1,2020-02-15T06:59:30Z +2353,512,1,2020-02-15T06:59:30Z +2354,512,2,2020-02-15T06:59:30Z +2355,512,2,2020-02-15T06:59:30Z +2356,512,2,2020-02-15T06:59:30Z +2357,512,2,2020-02-15T06:59:30Z +2358,513,2,2020-02-15T06:59:30Z +2359,513,2,2020-02-15T06:59:30Z +2360,514,1,2020-02-15T06:59:30Z +2361,514,1,2020-02-15T06:59:30Z +2362,514,2,2020-02-15T06:59:30Z +2363,514,2,2020-02-15T06:59:30Z +2364,514,2,2020-02-15T06:59:30Z +2365,514,2,2020-02-15T06:59:30Z +2366,515,2,2020-02-15T06:59:30Z +2367,515,2,2020-02-15T06:59:30Z +2368,516,2,2020-02-15T06:59:30Z +2369,516,2,2020-02-15T06:59:30Z +2370,516,2,2020-02-15T06:59:30Z +2371,517,2,2020-02-15T06:59:30Z +2372,517,2,2020-02-15T06:59:30Z +2373,518,1,2020-02-15T06:59:30Z +2374,518,1,2020-02-15T06:59:30Z +2375,518,2,2020-02-15T06:59:30Z +2376,518,2,2020-02-15T06:59:30Z +2377,518,2,2020-02-15T06:59:30Z +2378,518,2,2020-02-15T06:59:30Z +2379,519,2,2020-02-15T06:59:30Z +2380,519,2,2020-02-15T06:59:30Z +2381,519,2,2020-02-15T06:59:30Z +2382,519,2,2020-02-15T06:59:30Z +2383,520,1,2020-02-15T06:59:30Z +2384,520,1,2020-02-15T06:59:30Z +2385,521,1,2020-02-15T06:59:30Z +2386,521,1,2020-02-15T06:59:30Z +2387,521,1,2020-02-15T06:59:30Z +2388,521,1,2020-02-15T06:59:30Z +2389,521,2,2020-02-15T06:59:30Z +2390,521,2,2020-02-15T06:59:30Z +2391,521,2,2020-02-15T06:59:30Z +2392,522,2,2020-02-15T06:59:30Z +2393,522,2,2020-02-15T06:59:30Z +2394,523,1,2020-02-15T06:59:30Z +2395,523,1,2020-02-15T06:59:30Z +2396,524,1,2020-02-15T06:59:30Z +2397,524,1,2020-02-15T06:59:30Z +2398,524,2,2020-02-15T06:59:30Z +2399,524,2,2020-02-15T06:59:30Z +2400,524,2,2020-02-15T06:59:30Z +2401,524,2,2020-02-15T06:59:30Z +2402,525,1,2020-02-15T06:59:30Z +2403,525,1,2020-02-15T06:59:30Z +2404,525,1,2020-02-15T06:59:30Z +2405,525,1,2020-02-15T06:59:30Z +2406,525,2,2020-02-15T06:59:30Z +2407,525,2,2020-02-15T06:59:30Z +2408,525,2,2020-02-15T06:59:30Z +2409,525,2,2020-02-15T06:59:30Z +2410,526,2,2020-02-15T06:59:30Z +2411,526,2,2020-02-15T06:59:30Z +2412,526,2,2020-02-15T06:59:30Z +2413,526,2,2020-02-15T06:59:30Z +2414,527,1,2020-02-15T06:59:30Z +2415,527,1,2020-02-15T06:59:30Z +2416,527,2,2020-02-15T06:59:30Z +2417,527,2,2020-02-15T06:59:30Z +2418,527,2,2020-02-15T06:59:30Z +2419,527,2,2020-02-15T06:59:30Z +2420,528,1,2020-02-15T06:59:30Z +2421,528,1,2020-02-15T06:59:30Z +2422,528,1,2020-02-15T06:59:30Z +2423,529,1,2020-02-15T06:59:30Z +2424,529,1,2020-02-15T06:59:30Z +2425,529,1,2020-02-15T06:59:30Z +2426,529,1,2020-02-15T06:59:30Z +2427,530,1,2020-02-15T06:59:30Z +2428,530,1,2020-02-15T06:59:30Z +2429,530,1,2020-02-15T06:59:30Z +2430,531,1,2020-02-15T06:59:30Z +2431,531,1,2020-02-15T06:59:30Z +2432,531,1,2020-02-15T06:59:30Z +2433,531,1,2020-02-15T06:59:30Z +2434,531,2,2020-02-15T06:59:30Z +2435,531,2,2020-02-15T06:59:30Z +2436,531,2,2020-02-15T06:59:30Z +2437,531,2,2020-02-15T06:59:30Z +2438,532,2,2020-02-15T06:59:30Z +2439,532,2,2020-02-15T06:59:30Z +2440,532,2,2020-02-15T06:59:30Z +2441,532,2,2020-02-15T06:59:30Z +2442,533,1,2020-02-15T06:59:30Z +2443,533,1,2020-02-15T06:59:30Z +2444,533,1,2020-02-15T06:59:30Z +2445,534,1,2020-02-15T06:59:30Z +2446,534,1,2020-02-15T06:59:30Z +2447,534,2,2020-02-15T06:59:30Z +2448,534,2,2020-02-15T06:59:30Z +2449,534,2,2020-02-15T06:59:31Z +2450,535,1,2020-02-15T06:59:31Z +2451,535,1,2020-02-15T06:59:31Z +2452,535,1,2020-02-15T06:59:31Z +2453,535,1,2020-02-15T06:59:31Z +2454,536,1,2020-02-15T06:59:31Z +2455,536,1,2020-02-15T06:59:31Z +2456,536,1,2020-02-15T06:59:31Z +2457,536,2,2020-02-15T06:59:31Z +2458,536,2,2020-02-15T06:59:31Z +2459,537,2,2020-02-15T06:59:31Z +2460,537,2,2020-02-15T06:59:31Z +2461,537,2,2020-02-15T06:59:31Z +2462,538,2,2020-02-15T06:59:31Z +2463,538,2,2020-02-15T06:59:31Z +2464,538,2,2020-02-15T06:59:31Z +2465,539,1,2020-02-15T06:59:31Z +2466,539,1,2020-02-15T06:59:31Z +2467,540,1,2020-02-15T06:59:31Z +2468,540,1,2020-02-15T06:59:31Z +2469,540,1,2020-02-15T06:59:31Z +2470,541,2,2020-02-15T06:59:31Z +2471,541,2,2020-02-15T06:59:31Z +2472,542,1,2020-02-15T06:59:31Z +2473,542,1,2020-02-15T06:59:31Z +2474,542,1,2020-02-15T06:59:31Z +2475,542,1,2020-02-15T06:59:31Z +2476,542,2,2020-02-15T06:59:31Z +2477,542,2,2020-02-15T06:59:31Z +2478,543,1,2020-02-15T06:59:31Z +2479,543,1,2020-02-15T06:59:31Z +2480,544,1,2020-02-15T06:59:31Z +2481,544,1,2020-02-15T06:59:31Z +2482,544,2,2020-02-15T06:59:31Z +2483,544,2,2020-02-15T06:59:31Z +2484,545,1,2020-02-15T06:59:31Z +2485,545,1,2020-02-15T06:59:31Z +2486,545,1,2020-02-15T06:59:31Z +2487,545,1,2020-02-15T06:59:31Z +2488,545,2,2020-02-15T06:59:31Z +2489,545,2,2020-02-15T06:59:31Z +2490,546,2,2020-02-15T06:59:31Z +2491,546,2,2020-02-15T06:59:31Z +2492,546,2,2020-02-15T06:59:31Z +2493,546,2,2020-02-15T06:59:31Z +2494,547,2,2020-02-15T06:59:31Z +2495,547,2,2020-02-15T06:59:31Z +2496,548,1,2020-02-15T06:59:31Z +2497,548,1,2020-02-15T06:59:31Z +2498,549,1,2020-02-15T06:59:31Z +2499,549,1,2020-02-15T06:59:31Z +2500,549,2,2020-02-15T06:59:31Z +2501,549,2,2020-02-15T06:59:31Z +2502,550,1,2020-02-15T06:59:31Z +2503,550,1,2020-02-15T06:59:31Z +2504,550,1,2020-02-15T06:59:31Z +2505,551,1,2020-02-15T06:59:31Z +2506,551,1,2020-02-15T06:59:31Z +2507,551,1,2020-02-15T06:59:31Z +2508,551,2,2020-02-15T06:59:31Z +2509,551,2,2020-02-15T06:59:31Z +2510,551,2,2020-02-15T06:59:31Z +2511,552,2,2020-02-15T06:59:31Z +2512,552,2,2020-02-15T06:59:31Z +2513,552,2,2020-02-15T06:59:31Z +2514,552,2,2020-02-15T06:59:31Z +2515,553,2,2020-02-15T06:59:31Z +2516,553,2,2020-02-15T06:59:31Z +2517,553,2,2020-02-15T06:59:31Z +2518,554,1,2020-02-15T06:59:31Z +2519,554,1,2020-02-15T06:59:31Z +2520,554,1,2020-02-15T06:59:31Z +2521,554,1,2020-02-15T06:59:31Z +2522,554,2,2020-02-15T06:59:31Z +2523,554,2,2020-02-15T06:59:31Z +2524,554,2,2020-02-15T06:59:31Z +2525,555,1,2020-02-15T06:59:31Z +2526,555,1,2020-02-15T06:59:31Z +2527,555,1,2020-02-15T06:59:31Z +2528,555,2,2020-02-15T06:59:31Z +2529,555,2,2020-02-15T06:59:31Z +2530,555,2,2020-02-15T06:59:31Z +2531,555,2,2020-02-15T06:59:31Z +2532,556,1,2020-02-15T06:59:31Z +2533,556,1,2020-02-15T06:59:31Z +2534,556,1,2020-02-15T06:59:31Z +2535,556,2,2020-02-15T06:59:31Z +2536,556,2,2020-02-15T06:59:31Z +2537,556,2,2020-02-15T06:59:31Z +2538,556,2,2020-02-15T06:59:31Z +2539,557,1,2020-02-15T06:59:31Z +2540,557,1,2020-02-15T06:59:31Z +2541,557,2,2020-02-15T06:59:31Z +2542,557,2,2020-02-15T06:59:31Z +2543,557,2,2020-02-15T06:59:31Z +2544,558,2,2020-02-15T06:59:31Z +2545,558,2,2020-02-15T06:59:31Z +2546,559,1,2020-02-15T06:59:31Z +2547,559,1,2020-02-15T06:59:31Z +2548,559,1,2020-02-15T06:59:31Z +2549,559,1,2020-02-15T06:59:31Z +2550,559,2,2020-02-15T06:59:31Z +2551,559,2,2020-02-15T06:59:31Z +2552,559,2,2020-02-15T06:59:31Z +2553,559,2,2020-02-15T06:59:31Z +2554,560,1,2020-02-15T06:59:31Z +2555,560,1,2020-02-15T06:59:31Z +2556,560,1,2020-02-15T06:59:31Z +2557,560,2,2020-02-15T06:59:31Z +2558,560,2,2020-02-15T06:59:31Z +2559,561,1,2020-02-15T06:59:31Z +2560,561,1,2020-02-15T06:59:31Z +2561,561,1,2020-02-15T06:59:31Z +2562,561,1,2020-02-15T06:59:31Z +2563,562,1,2020-02-15T06:59:31Z +2564,562,1,2020-02-15T06:59:31Z +2565,562,1,2020-02-15T06:59:31Z +2566,562,1,2020-02-15T06:59:31Z +2567,562,2,2020-02-15T06:59:31Z +2568,562,2,2020-02-15T06:59:31Z +2569,563,1,2020-02-15T06:59:31Z +2570,563,1,2020-02-15T06:59:31Z +2571,563,1,2020-02-15T06:59:31Z +2572,563,1,2020-02-15T06:59:31Z +2573,563,2,2020-02-15T06:59:31Z +2574,563,2,2020-02-15T06:59:31Z +2575,563,2,2020-02-15T06:59:31Z +2576,564,2,2020-02-15T06:59:31Z +2577,564,2,2020-02-15T06:59:31Z +2578,564,2,2020-02-15T06:59:31Z +2579,565,1,2020-02-15T06:59:31Z +2580,565,1,2020-02-15T06:59:31Z +2581,566,1,2020-02-15T06:59:31Z +2582,566,1,2020-02-15T06:59:31Z +2583,567,1,2020-02-15T06:59:31Z +2584,567,1,2020-02-15T06:59:31Z +2585,567,2,2020-02-15T06:59:31Z +2586,567,2,2020-02-15T06:59:31Z +2587,568,1,2020-02-15T06:59:31Z +2588,568,1,2020-02-15T06:59:31Z +2589,568,2,2020-02-15T06:59:31Z +2590,568,2,2020-02-15T06:59:31Z +2591,569,1,2020-02-15T06:59:31Z +2592,569,1,2020-02-15T06:59:31Z +2593,570,1,2020-02-15T06:59:31Z +2594,570,1,2020-02-15T06:59:31Z +2595,570,2,2020-02-15T06:59:31Z +2596,570,2,2020-02-15T06:59:31Z +2597,570,2,2020-02-15T06:59:31Z +2598,571,1,2020-02-15T06:59:31Z +2599,571,1,2020-02-15T06:59:31Z +2600,571,2,2020-02-15T06:59:31Z +2601,571,2,2020-02-15T06:59:31Z +2602,571,2,2020-02-15T06:59:31Z +2603,571,2,2020-02-15T06:59:31Z +2604,572,1,2020-02-15T06:59:31Z +2605,572,1,2020-02-15T06:59:31Z +2606,572,1,2020-02-15T06:59:31Z +2607,572,1,2020-02-15T06:59:31Z +2608,572,2,2020-02-15T06:59:31Z +2609,572,2,2020-02-15T06:59:31Z +2610,572,2,2020-02-15T06:59:31Z +2611,572,2,2020-02-15T06:59:31Z +2612,573,1,2020-02-15T06:59:31Z +2613,573,1,2020-02-15T06:59:31Z +2614,573,1,2020-02-15T06:59:31Z +2615,573,1,2020-02-15T06:59:31Z +2616,574,1,2020-02-15T06:59:31Z +2617,574,1,2020-02-15T06:59:31Z +2618,574,2,2020-02-15T06:59:31Z +2619,574,2,2020-02-15T06:59:31Z +2620,574,2,2020-02-15T06:59:31Z +2621,575,1,2020-02-15T06:59:31Z +2622,575,1,2020-02-15T06:59:31Z +2623,575,2,2020-02-15T06:59:31Z +2624,575,2,2020-02-15T06:59:31Z +2625,575,2,2020-02-15T06:59:31Z +2626,575,2,2020-02-15T06:59:31Z +2627,576,2,2020-02-15T06:59:31Z +2628,576,2,2020-02-15T06:59:31Z +2629,576,2,2020-02-15T06:59:31Z +2630,577,1,2020-02-15T06:59:31Z +2631,577,1,2020-02-15T06:59:31Z +2632,577,1,2020-02-15T06:59:31Z +2633,578,1,2020-02-15T06:59:31Z +2634,578,1,2020-02-15T06:59:31Z +2635,578,2,2020-02-15T06:59:31Z +2636,578,2,2020-02-15T06:59:31Z +2637,578,2,2020-02-15T06:59:31Z +2638,579,1,2020-02-15T06:59:31Z +2639,579,1,2020-02-15T06:59:31Z +2640,579,1,2020-02-15T06:59:31Z +2641,579,1,2020-02-15T06:59:31Z +2642,579,2,2020-02-15T06:59:31Z +2643,579,2,2020-02-15T06:59:31Z +2644,579,2,2020-02-15T06:59:31Z +2645,580,1,2020-02-15T06:59:31Z +2646,580,1,2020-02-15T06:59:31Z +2647,580,1,2020-02-15T06:59:31Z +2648,580,1,2020-02-15T06:59:31Z +2649,580,2,2020-02-15T06:59:31Z +2650,580,2,2020-02-15T06:59:31Z +2651,581,1,2020-02-15T06:59:31Z +2652,581,1,2020-02-15T06:59:31Z +2653,581,1,2020-02-15T06:59:31Z +2654,582,2,2020-02-15T06:59:31Z +2655,582,2,2020-02-15T06:59:31Z +2656,583,1,2020-02-15T06:59:31Z +2657,583,1,2020-02-15T06:59:31Z +2658,583,1,2020-02-15T06:59:31Z +2659,583,2,2020-02-15T06:59:31Z +2660,583,2,2020-02-15T06:59:31Z +2661,584,1,2020-02-15T06:59:31Z +2662,584,1,2020-02-15T06:59:31Z +2663,585,2,2020-02-15T06:59:31Z +2664,585,2,2020-02-15T06:59:31Z +2665,585,2,2020-02-15T06:59:31Z +2666,585,2,2020-02-15T06:59:31Z +2667,586,1,2020-02-15T06:59:31Z +2668,586,1,2020-02-15T06:59:31Z +2669,586,1,2020-02-15T06:59:31Z +2670,586,1,2020-02-15T06:59:31Z +2671,586,2,2020-02-15T06:59:31Z +2672,586,2,2020-02-15T06:59:31Z +2673,586,2,2020-02-15T06:59:31Z +2674,586,2,2020-02-15T06:59:31Z +2675,587,1,2020-02-15T06:59:31Z +2676,587,1,2020-02-15T06:59:31Z +2677,587,1,2020-02-15T06:59:31Z +2678,588,2,2020-02-15T06:59:31Z +2679,588,2,2020-02-15T06:59:31Z +2680,588,2,2020-02-15T06:59:31Z +2681,588,2,2020-02-15T06:59:31Z +2682,589,2,2020-02-15T06:59:31Z +2683,589,2,2020-02-15T06:59:31Z +2684,589,2,2020-02-15T06:59:31Z +2685,589,2,2020-02-15T06:59:31Z +2686,590,1,2020-02-15T06:59:31Z +2687,590,1,2020-02-15T06:59:31Z +2688,590,1,2020-02-15T06:59:31Z +2689,590,2,2020-02-15T06:59:31Z +2690,590,2,2020-02-15T06:59:31Z +2691,590,2,2020-02-15T06:59:31Z +2692,590,2,2020-02-15T06:59:31Z +2693,591,2,2020-02-15T06:59:31Z +2694,591,2,2020-02-15T06:59:31Z +2695,591,2,2020-02-15T06:59:31Z +2696,592,1,2020-02-15T06:59:31Z +2697,592,1,2020-02-15T06:59:31Z +2698,592,2,2020-02-15T06:59:31Z +2699,592,2,2020-02-15T06:59:31Z +2700,593,2,2020-02-15T06:59:31Z +2701,593,2,2020-02-15T06:59:31Z +2702,593,2,2020-02-15T06:59:31Z +2703,593,2,2020-02-15T06:59:31Z +2704,594,1,2020-02-15T06:59:31Z +2705,594,1,2020-02-15T06:59:31Z +2706,594,1,2020-02-15T06:59:31Z +2707,595,1,2020-02-15T06:59:31Z +2708,595,1,2020-02-15T06:59:31Z +2709,595,1,2020-02-15T06:59:31Z +2710,595,1,2020-02-15T06:59:31Z +2711,595,2,2020-02-15T06:59:31Z +2712,595,2,2020-02-15T06:59:31Z +2713,595,2,2020-02-15T06:59:31Z +2714,595,2,2020-02-15T06:59:31Z +2715,596,1,2020-02-15T06:59:31Z +2716,596,1,2020-02-15T06:59:31Z +2717,596,2,2020-02-15T06:59:31Z +2718,596,2,2020-02-15T06:59:31Z +2719,596,2,2020-02-15T06:59:31Z +2720,596,2,2020-02-15T06:59:31Z +2721,597,2,2020-02-15T06:59:31Z +2722,597,2,2020-02-15T06:59:31Z +2723,597,2,2020-02-15T06:59:31Z +2724,597,2,2020-02-15T06:59:31Z +2725,598,1,2020-02-15T06:59:31Z +2726,598,1,2020-02-15T06:59:31Z +2727,598,1,2020-02-15T06:59:31Z +2728,598,1,2020-02-15T06:59:31Z +2729,599,1,2020-02-15T06:59:31Z +2730,599,1,2020-02-15T06:59:31Z +2731,599,1,2020-02-15T06:59:31Z +2732,599,2,2020-02-15T06:59:31Z +2733,599,2,2020-02-15T06:59:31Z +2734,600,1,2020-02-15T06:59:31Z +2735,600,1,2020-02-15T06:59:31Z +2736,600,2,2020-02-15T06:59:31Z +2737,600,2,2020-02-15T06:59:31Z +2738,601,1,2020-02-15T06:59:31Z +2739,601,1,2020-02-15T06:59:31Z +2740,601,1,2020-02-15T06:59:31Z +2741,601,2,2020-02-15T06:59:31Z +2742,601,2,2020-02-15T06:59:31Z +2743,602,1,2020-02-15T06:59:31Z +2744,602,1,2020-02-15T06:59:31Z +2745,602,2,2020-02-15T06:59:31Z +2746,602,2,2020-02-15T06:59:31Z +2747,602,2,2020-02-15T06:59:31Z +2748,603,1,2020-02-15T06:59:31Z +2749,603,1,2020-02-15T06:59:31Z +2750,603,1,2020-02-15T06:59:31Z +2751,603,1,2020-02-15T06:59:31Z +2752,603,2,2020-02-15T06:59:31Z +2753,603,2,2020-02-15T06:59:31Z +2754,604,2,2020-02-15T06:59:31Z +2755,604,2,2020-02-15T06:59:31Z +2756,604,2,2020-02-15T06:59:31Z +2757,605,2,2020-02-15T06:59:31Z +2758,605,2,2020-02-15T06:59:31Z +2759,606,1,2020-02-15T06:59:31Z +2760,606,1,2020-02-15T06:59:31Z +2761,606,2,2020-02-15T06:59:31Z +2762,606,2,2020-02-15T06:59:31Z +2763,606,2,2020-02-15T06:59:31Z +2764,606,2,2020-02-15T06:59:31Z +2765,608,1,2020-02-15T06:59:31Z +2766,608,1,2020-02-15T06:59:31Z +2767,608,2,2020-02-15T06:59:31Z +2768,608,2,2020-02-15T06:59:31Z +2769,608,2,2020-02-15T06:59:31Z +2770,608,2,2020-02-15T06:59:31Z +2771,609,1,2020-02-15T06:59:31Z +2772,609,1,2020-02-15T06:59:31Z +2773,609,1,2020-02-15T06:59:31Z +2774,609,1,2020-02-15T06:59:31Z +2775,609,2,2020-02-15T06:59:31Z +2776,609,2,2020-02-15T06:59:31Z +2777,609,2,2020-02-15T06:59:31Z +2778,609,2,2020-02-15T06:59:31Z +2779,610,1,2020-02-15T06:59:31Z +2780,610,1,2020-02-15T06:59:31Z +2781,610,2,2020-02-15T06:59:31Z +2782,610,2,2020-02-15T06:59:31Z +2783,610,2,2020-02-15T06:59:31Z +2784,611,1,2020-02-15T06:59:31Z +2785,611,1,2020-02-15T06:59:31Z +2786,611,1,2020-02-15T06:59:31Z +2787,611,1,2020-02-15T06:59:31Z +2788,611,2,2020-02-15T06:59:31Z +2789,611,2,2020-02-15T06:59:31Z +2790,612,2,2020-02-15T06:59:31Z +2791,612,2,2020-02-15T06:59:31Z +2792,613,1,2020-02-15T06:59:31Z +2793,613,1,2020-02-15T06:59:31Z +2794,614,1,2020-02-15T06:59:31Z +2795,614,1,2020-02-15T06:59:31Z +2796,614,1,2020-02-15T06:59:31Z +2797,614,2,2020-02-15T06:59:31Z +2798,614,2,2020-02-15T06:59:31Z +2799,614,2,2020-02-15T06:59:31Z +2800,615,2,2020-02-15T06:59:31Z +2801,615,2,2020-02-15T06:59:31Z +2802,615,2,2020-02-15T06:59:31Z +2803,615,2,2020-02-15T06:59:31Z +2804,616,1,2020-02-15T06:59:31Z +2805,616,1,2020-02-15T06:59:31Z +2806,616,2,2020-02-15T06:59:31Z +2807,616,2,2020-02-15T06:59:31Z +2808,616,2,2020-02-15T06:59:31Z +2809,616,2,2020-02-15T06:59:31Z +2810,617,1,2020-02-15T06:59:31Z +2811,617,1,2020-02-15T06:59:31Z +2812,617,1,2020-02-15T06:59:31Z +2813,618,2,2020-02-15T06:59:31Z +2814,618,2,2020-02-15T06:59:31Z +2815,618,2,2020-02-15T06:59:31Z +2816,618,2,2020-02-15T06:59:31Z +2817,619,1,2020-02-15T06:59:31Z +2818,619,1,2020-02-15T06:59:31Z +2819,619,2,2020-02-15T06:59:31Z +2820,619,2,2020-02-15T06:59:31Z +2821,619,2,2020-02-15T06:59:31Z +2822,619,2,2020-02-15T06:59:31Z +2823,620,1,2020-02-15T06:59:31Z +2824,620,1,2020-02-15T06:59:31Z +2825,620,2,2020-02-15T06:59:31Z +2826,620,2,2020-02-15T06:59:31Z +2827,620,2,2020-02-15T06:59:31Z +2828,621,1,2020-02-15T06:59:31Z +2829,621,1,2020-02-15T06:59:31Z +2830,621,1,2020-02-15T06:59:31Z +2831,621,1,2020-02-15T06:59:31Z +2832,621,2,2020-02-15T06:59:31Z +2833,621,2,2020-02-15T06:59:31Z +2834,621,2,2020-02-15T06:59:31Z +2835,621,2,2020-02-15T06:59:31Z +2836,622,2,2020-02-15T06:59:31Z +2837,622,2,2020-02-15T06:59:31Z +2838,623,1,2020-02-15T06:59:31Z +2839,623,1,2020-02-15T06:59:31Z +2840,623,2,2020-02-15T06:59:31Z +2841,623,2,2020-02-15T06:59:31Z +2842,623,2,2020-02-15T06:59:31Z +2843,624,1,2020-02-15T06:59:31Z +2844,624,1,2020-02-15T06:59:31Z +2845,624,1,2020-02-15T06:59:31Z +2846,624,2,2020-02-15T06:59:31Z +2847,624,2,2020-02-15T06:59:31Z +2848,624,2,2020-02-15T06:59:31Z +2849,624,2,2020-02-15T06:59:31Z +2850,625,1,2020-02-15T06:59:31Z +2851,625,1,2020-02-15T06:59:31Z +2852,625,1,2020-02-15T06:59:31Z +2853,625,2,2020-02-15T06:59:31Z +2854,625,2,2020-02-15T06:59:31Z +2855,625,2,2020-02-15T06:59:31Z +2856,625,2,2020-02-15T06:59:31Z +2857,626,2,2020-02-15T06:59:31Z +2858,626,2,2020-02-15T06:59:31Z +2859,626,2,2020-02-15T06:59:31Z +2860,626,2,2020-02-15T06:59:31Z +2861,627,2,2020-02-15T06:59:31Z +2862,627,2,2020-02-15T06:59:31Z +2863,627,2,2020-02-15T06:59:31Z +2864,628,1,2020-02-15T06:59:31Z +2865,628,1,2020-02-15T06:59:31Z +2866,628,1,2020-02-15T06:59:31Z +2867,628,2,2020-02-15T06:59:31Z +2868,628,2,2020-02-15T06:59:31Z +2869,629,2,2020-02-15T06:59:31Z +2870,629,2,2020-02-15T06:59:31Z +2871,629,2,2020-02-15T06:59:31Z +2872,629,2,2020-02-15T06:59:31Z +2873,630,2,2020-02-15T06:59:31Z +2874,630,2,2020-02-15T06:59:31Z +2875,630,2,2020-02-15T06:59:31Z +2876,631,1,2020-02-15T06:59:31Z +2877,631,1,2020-02-15T06:59:31Z +2878,631,1,2020-02-15T06:59:31Z +2879,631,2,2020-02-15T06:59:31Z +2880,631,2,2020-02-15T06:59:31Z +2881,632,1,2020-02-15T06:59:31Z +2882,632,1,2020-02-15T06:59:31Z +2883,632,1,2020-02-15T06:59:31Z +2884,633,2,2020-02-15T06:59:31Z +2885,633,2,2020-02-15T06:59:31Z +2886,633,2,2020-02-15T06:59:31Z +2887,634,2,2020-02-15T06:59:31Z +2888,634,2,2020-02-15T06:59:31Z +2889,634,2,2020-02-15T06:59:31Z +2890,634,2,2020-02-15T06:59:31Z +2891,635,2,2020-02-15T06:59:31Z +2892,635,2,2020-02-15T06:59:31Z +2893,636,1,2020-02-15T06:59:31Z +2894,636,1,2020-02-15T06:59:31Z +2895,636,1,2020-02-15T06:59:31Z +2896,637,1,2020-02-15T06:59:31Z +2897,637,1,2020-02-15T06:59:31Z +2898,637,2,2020-02-15T06:59:31Z +2899,637,2,2020-02-15T06:59:31Z +2900,637,2,2020-02-15T06:59:31Z +2901,638,1,2020-02-15T06:59:31Z +2902,638,1,2020-02-15T06:59:31Z +2903,638,1,2020-02-15T06:59:31Z +2904,638,1,2020-02-15T06:59:31Z +2905,638,2,2020-02-15T06:59:31Z +2906,638,2,2020-02-15T06:59:31Z +2907,638,2,2020-02-15T06:59:31Z +2908,638,2,2020-02-15T06:59:31Z +2909,639,2,2020-02-15T06:59:31Z +2910,639,2,2020-02-15T06:59:31Z +2911,639,2,2020-02-15T06:59:31Z +2912,640,2,2020-02-15T06:59:31Z +2913,640,2,2020-02-15T06:59:31Z +2914,640,2,2020-02-15T06:59:31Z +2915,641,1,2020-02-15T06:59:31Z +2916,641,1,2020-02-15T06:59:31Z +2917,641,1,2020-02-15T06:59:31Z +2918,641,2,2020-02-15T06:59:31Z +2919,641,2,2020-02-15T06:59:31Z +2920,641,2,2020-02-15T06:59:31Z +2921,641,2,2020-02-15T06:59:31Z +2922,643,1,2020-02-15T06:59:31Z +2923,643,1,2020-02-15T06:59:31Z +2924,643,1,2020-02-15T06:59:31Z +2925,643,2,2020-02-15T06:59:31Z +2926,643,2,2020-02-15T06:59:31Z +2927,643,2,2020-02-15T06:59:31Z +2928,644,1,2020-02-15T06:59:31Z +2929,644,1,2020-02-15T06:59:31Z +2930,644,1,2020-02-15T06:59:31Z +2931,644,2,2020-02-15T06:59:31Z +2932,644,2,2020-02-15T06:59:31Z +2933,644,2,2020-02-15T06:59:31Z +2934,644,2,2020-02-15T06:59:31Z +2935,645,1,2020-02-15T06:59:31Z +2936,645,1,2020-02-15T06:59:31Z +2937,645,1,2020-02-15T06:59:31Z +2938,645,2,2020-02-15T06:59:31Z +2939,645,2,2020-02-15T06:59:31Z +2940,645,2,2020-02-15T06:59:31Z +2941,646,1,2020-02-15T06:59:31Z +2942,646,1,2020-02-15T06:59:31Z +2943,646,1,2020-02-15T06:59:31Z +2944,646,2,2020-02-15T06:59:31Z +2945,646,2,2020-02-15T06:59:31Z +2946,647,1,2020-02-15T06:59:31Z +2947,647,1,2020-02-15T06:59:31Z +2948,647,1,2020-02-15T06:59:31Z +2949,647,2,2020-02-15T06:59:31Z +2950,647,2,2020-02-15T06:59:31Z +2951,647,2,2020-02-15T06:59:31Z +2952,648,1,2020-02-15T06:59:31Z +2953,648,1,2020-02-15T06:59:31Z +2954,648,1,2020-02-15T06:59:31Z +2955,648,1,2020-02-15T06:59:31Z +2956,648,2,2020-02-15T06:59:31Z +2957,648,2,2020-02-15T06:59:31Z +2958,649,1,2020-02-15T06:59:31Z +2959,649,1,2020-02-15T06:59:31Z +2960,649,2,2020-02-15T06:59:31Z +2961,649,2,2020-02-15T06:59:31Z +2962,649,2,2020-02-15T06:59:31Z +2963,649,2,2020-02-15T06:59:31Z +2964,650,1,2020-02-15T06:59:31Z +2965,650,1,2020-02-15T06:59:31Z +2966,650,2,2020-02-15T06:59:31Z +2967,650,2,2020-02-15T06:59:31Z +2968,650,2,2020-02-15T06:59:31Z +2969,650,2,2020-02-15T06:59:31Z +2970,651,1,2020-02-15T06:59:31Z +2971,651,1,2020-02-15T06:59:31Z +2972,651,2,2020-02-15T06:59:31Z +2973,651,2,2020-02-15T06:59:31Z +2974,651,2,2020-02-15T06:59:31Z +2975,651,2,2020-02-15T06:59:31Z +2976,652,1,2020-02-15T06:59:31Z +2977,652,1,2020-02-15T06:59:31Z +2978,652,1,2020-02-15T06:59:31Z +2979,652,1,2020-02-15T06:59:31Z +2980,653,1,2020-02-15T06:59:31Z +2981,653,1,2020-02-15T06:59:31Z +2982,654,1,2020-02-15T06:59:31Z +2983,654,1,2020-02-15T06:59:31Z +2984,654,2,2020-02-15T06:59:31Z +2985,654,2,2020-02-15T06:59:31Z +2986,655,1,2020-02-15T06:59:31Z +2987,655,1,2020-02-15T06:59:31Z +2988,655,1,2020-02-15T06:59:31Z +2989,655,2,2020-02-15T06:59:31Z +2990,655,2,2020-02-15T06:59:31Z +2991,655,2,2020-02-15T06:59:31Z +2992,656,2,2020-02-15T06:59:31Z +2993,656,2,2020-02-15T06:59:31Z +2994,657,1,2020-02-15T06:59:31Z +2995,657,1,2020-02-15T06:59:31Z +2996,657,1,2020-02-15T06:59:31Z +2997,657,1,2020-02-15T06:59:31Z +2998,657,2,2020-02-15T06:59:31Z +2999,657,2,2020-02-15T06:59:31Z +3000,658,2,2020-02-15T06:59:31Z +3001,658,2,2020-02-15T06:59:31Z +3002,658,2,2020-02-15T06:59:31Z +3003,658,2,2020-02-15T06:59:31Z +3004,659,2,2020-02-15T06:59:31Z +3005,659,2,2020-02-15T06:59:31Z +3006,660,1,2020-02-15T06:59:31Z +3007,660,1,2020-02-15T06:59:31Z +3008,660,2,2020-02-15T06:59:31Z +3009,660,2,2020-02-15T06:59:31Z +3010,661,1,2020-02-15T06:59:31Z +3011,661,1,2020-02-15T06:59:31Z +3012,661,1,2020-02-15T06:59:31Z +3013,661,1,2020-02-15T06:59:31Z +3014,662,1,2020-02-15T06:59:31Z +3015,662,1,2020-02-15T06:59:31Z +3016,662,2,2020-02-15T06:59:31Z +3017,662,2,2020-02-15T06:59:31Z +3018,663,1,2020-02-15T06:59:31Z +3019,663,1,2020-02-15T06:59:31Z +3020,663,1,2020-02-15T06:59:31Z +3021,663,2,2020-02-15T06:59:31Z +3022,663,2,2020-02-15T06:59:31Z +3023,664,1,2020-02-15T06:59:31Z +3024,664,1,2020-02-15T06:59:31Z +3025,664,2,2020-02-15T06:59:31Z +3026,664,2,2020-02-15T06:59:31Z +3027,664,2,2020-02-15T06:59:31Z +3028,665,1,2020-02-15T06:59:31Z +3029,665,1,2020-02-15T06:59:31Z +3030,665,1,2020-02-15T06:59:31Z +3031,665,1,2020-02-15T06:59:31Z +3032,665,2,2020-02-15T06:59:31Z +3033,665,2,2020-02-15T06:59:31Z +3034,665,2,2020-02-15T06:59:31Z +3035,666,1,2020-02-15T06:59:31Z +3036,666,1,2020-02-15T06:59:31Z +3037,666,1,2020-02-15T06:59:31Z +3038,666,2,2020-02-15T06:59:31Z +3039,666,2,2020-02-15T06:59:31Z +3040,667,1,2020-02-15T06:59:31Z +3041,667,1,2020-02-15T06:59:31Z +3042,667,2,2020-02-15T06:59:31Z +3043,667,2,2020-02-15T06:59:31Z +3044,668,1,2020-02-15T06:59:31Z +3045,668,1,2020-02-15T06:59:31Z +3046,668,2,2020-02-15T06:59:31Z +3047,668,2,2020-02-15T06:59:31Z +3048,668,2,2020-02-15T06:59:31Z +3049,670,1,2020-02-15T06:59:31Z +3050,670,1,2020-02-15T06:59:31Z +3051,670,1,2020-02-15T06:59:31Z +3052,670,1,2020-02-15T06:59:31Z +3053,670,2,2020-02-15T06:59:31Z +3054,670,2,2020-02-15T06:59:31Z +3055,670,2,2020-02-15T06:59:31Z +3056,672,1,2020-02-15T06:59:31Z +3057,672,1,2020-02-15T06:59:31Z +3058,672,2,2020-02-15T06:59:31Z +3059,672,2,2020-02-15T06:59:31Z +3060,672,2,2020-02-15T06:59:31Z +3061,672,2,2020-02-15T06:59:31Z +3062,673,1,2020-02-15T06:59:31Z +3063,673,1,2020-02-15T06:59:31Z +3064,673,2,2020-02-15T06:59:31Z +3065,673,2,2020-02-15T06:59:31Z +3066,674,1,2020-02-15T06:59:31Z +3067,674,1,2020-02-15T06:59:31Z +3068,674,1,2020-02-15T06:59:31Z +3069,675,1,2020-02-15T06:59:31Z +3070,675,1,2020-02-15T06:59:31Z +3071,676,1,2020-02-15T06:59:31Z +3072,676,1,2020-02-15T06:59:31Z +3073,676,2,2020-02-15T06:59:31Z +3074,676,2,2020-02-15T06:59:31Z +3075,676,2,2020-02-15T06:59:31Z +3076,676,2,2020-02-15T06:59:31Z +3077,677,1,2020-02-15T06:59:31Z +3078,677,1,2020-02-15T06:59:31Z +3079,677,1,2020-02-15T06:59:31Z +3080,677,2,2020-02-15T06:59:31Z +3081,677,2,2020-02-15T06:59:31Z +3082,677,2,2020-02-15T06:59:31Z +3083,677,2,2020-02-15T06:59:31Z +3084,678,1,2020-02-15T06:59:31Z +3085,678,1,2020-02-15T06:59:31Z +3086,678,1,2020-02-15T06:59:31Z +3087,678,1,2020-02-15T06:59:31Z +3088,679,1,2020-02-15T06:59:31Z +3089,679,1,2020-02-15T06:59:31Z +3090,679,2,2020-02-15T06:59:31Z +3091,679,2,2020-02-15T06:59:31Z +3092,680,1,2020-02-15T06:59:31Z +3093,680,1,2020-02-15T06:59:31Z +3094,680,2,2020-02-15T06:59:31Z +3095,680,2,2020-02-15T06:59:31Z +3096,680,2,2020-02-15T06:59:31Z +3097,680,2,2020-02-15T06:59:31Z +3098,681,1,2020-02-15T06:59:31Z +3099,681,1,2020-02-15T06:59:31Z +3100,681,1,2020-02-15T06:59:31Z +3101,681,2,2020-02-15T06:59:31Z +3102,681,2,2020-02-15T06:59:31Z +3103,681,2,2020-02-15T06:59:31Z +3104,682,1,2020-02-15T06:59:31Z +3105,682,1,2020-02-15T06:59:31Z +3106,682,1,2020-02-15T06:59:31Z +3107,683,1,2020-02-15T06:59:31Z +3108,683,1,2020-02-15T06:59:31Z +3109,683,1,2020-02-15T06:59:31Z +3110,683,1,2020-02-15T06:59:31Z +3111,683,2,2020-02-15T06:59:31Z +3112,683,2,2020-02-15T06:59:31Z +3113,683,2,2020-02-15T06:59:31Z +3114,683,2,2020-02-15T06:59:31Z +3115,684,2,2020-02-15T06:59:31Z +3116,684,2,2020-02-15T06:59:31Z +3117,685,2,2020-02-15T06:59:31Z +3118,685,2,2020-02-15T06:59:31Z +3119,686,1,2020-02-15T06:59:31Z +3120,686,1,2020-02-15T06:59:31Z +3121,686,1,2020-02-15T06:59:31Z +3122,686,1,2020-02-15T06:59:31Z +3123,687,1,2020-02-15T06:59:31Z +3124,687,1,2020-02-15T06:59:31Z +3125,687,1,2020-02-15T06:59:31Z +3126,687,2,2020-02-15T06:59:31Z +3127,687,2,2020-02-15T06:59:31Z +3128,687,2,2020-02-15T06:59:31Z +3129,687,2,2020-02-15T06:59:31Z +3130,688,2,2020-02-15T06:59:31Z +3131,688,2,2020-02-15T06:59:31Z +3132,688,2,2020-02-15T06:59:31Z +3133,688,2,2020-02-15T06:59:31Z +3134,689,1,2020-02-15T06:59:31Z +3135,689,1,2020-02-15T06:59:31Z +3136,689,1,2020-02-15T06:59:31Z +3137,689,1,2020-02-15T06:59:31Z +3138,689,2,2020-02-15T06:59:31Z +3139,689,2,2020-02-15T06:59:31Z +3140,690,1,2020-02-15T06:59:31Z +3141,690,1,2020-02-15T06:59:31Z +3142,690,1,2020-02-15T06:59:31Z +3143,690,1,2020-02-15T06:59:31Z +3144,690,2,2020-02-15T06:59:31Z +3145,690,2,2020-02-15T06:59:31Z +3146,691,1,2020-02-15T06:59:31Z +3147,691,1,2020-02-15T06:59:31Z +3148,691,1,2020-02-15T06:59:31Z +3149,691,2,2020-02-15T06:59:31Z +3150,691,2,2020-02-15T06:59:31Z +3151,692,2,2020-02-15T06:59:31Z +3152,692,2,2020-02-15T06:59:31Z +3153,692,2,2020-02-15T06:59:31Z +3154,693,1,2020-02-15T06:59:31Z +3155,693,1,2020-02-15T06:59:31Z +3156,693,2,2020-02-15T06:59:31Z +3157,693,2,2020-02-15T06:59:31Z +3158,693,2,2020-02-15T06:59:31Z +3159,694,1,2020-02-15T06:59:31Z +3160,694,1,2020-02-15T06:59:31Z +3161,694,1,2020-02-15T06:59:31Z +3162,694,1,2020-02-15T06:59:31Z +3163,694,2,2020-02-15T06:59:31Z +3164,694,2,2020-02-15T06:59:31Z +3165,695,1,2020-02-15T06:59:31Z +3166,695,1,2020-02-15T06:59:31Z +3167,696,1,2020-02-15T06:59:31Z +3168,696,1,2020-02-15T06:59:31Z +3169,696,2,2020-02-15T06:59:31Z +3170,696,2,2020-02-15T06:59:31Z +3171,696,2,2020-02-15T06:59:31Z +3172,697,1,2020-02-15T06:59:31Z +3173,697,1,2020-02-15T06:59:31Z +3174,697,1,2020-02-15T06:59:31Z +3175,697,1,2020-02-15T06:59:31Z +3176,697,2,2020-02-15T06:59:31Z +3177,697,2,2020-02-15T06:59:31Z +3178,697,2,2020-02-15T06:59:31Z +3179,697,2,2020-02-15T06:59:31Z +3180,698,1,2020-02-15T06:59:31Z +3181,698,1,2020-02-15T06:59:31Z +3182,698,1,2020-02-15T06:59:31Z +3183,698,1,2020-02-15T06:59:31Z +3184,698,2,2020-02-15T06:59:31Z +3185,698,2,2020-02-15T06:59:31Z +3186,698,2,2020-02-15T06:59:31Z +3187,699,1,2020-02-15T06:59:31Z +3188,699,1,2020-02-15T06:59:31Z +3189,700,2,2020-02-15T06:59:31Z +3190,700,2,2020-02-15T06:59:31Z +3191,700,2,2020-02-15T06:59:31Z +3192,702,1,2020-02-15T06:59:31Z +3193,702,1,2020-02-15T06:59:31Z +3194,702,1,2020-02-15T06:59:31Z +3195,702,1,2020-02-15T06:59:31Z +3196,702,2,2020-02-15T06:59:31Z +3197,702,2,2020-02-15T06:59:31Z +3198,702,2,2020-02-15T06:59:31Z +3199,702,2,2020-02-15T06:59:31Z +3200,703,2,2020-02-15T06:59:31Z +3201,703,2,2020-02-15T06:59:31Z +3202,704,1,2020-02-15T06:59:31Z +3203,704,1,2020-02-15T06:59:31Z +3204,704,2,2020-02-15T06:59:31Z +3205,704,2,2020-02-15T06:59:31Z +3206,704,2,2020-02-15T06:59:31Z +3207,705,1,2020-02-15T06:59:31Z +3208,705,1,2020-02-15T06:59:31Z +3209,705,1,2020-02-15T06:59:31Z +3210,705,1,2020-02-15T06:59:31Z +3211,706,1,2020-02-15T06:59:31Z +3212,706,1,2020-02-15T06:59:31Z +3213,706,2,2020-02-15T06:59:31Z +3214,706,2,2020-02-15T06:59:31Z +3215,706,2,2020-02-15T06:59:31Z +3216,706,2,2020-02-15T06:59:31Z +3217,707,1,2020-02-15T06:59:31Z +3218,707,1,2020-02-15T06:59:31Z +3219,707,2,2020-02-15T06:59:31Z +3220,707,2,2020-02-15T06:59:31Z +3221,707,2,2020-02-15T06:59:31Z +3222,707,2,2020-02-15T06:59:31Z +3223,708,1,2020-02-15T06:59:31Z +3224,708,1,2020-02-15T06:59:31Z +3225,708,2,2020-02-15T06:59:31Z +3226,708,2,2020-02-15T06:59:31Z +3227,709,1,2020-02-15T06:59:31Z +3228,709,1,2020-02-15T06:59:31Z +3229,709,2,2020-02-15T06:59:31Z +3230,709,2,2020-02-15T06:59:31Z +3231,709,2,2020-02-15T06:59:31Z +3232,709,2,2020-02-15T06:59:31Z +3233,710,1,2020-02-15T06:59:31Z +3234,710,1,2020-02-15T06:59:31Z +3235,710,1,2020-02-15T06:59:31Z +3236,710,1,2020-02-15T06:59:31Z +3237,710,2,2020-02-15T06:59:31Z +3238,710,2,2020-02-15T06:59:31Z +3239,711,2,2020-02-15T06:59:31Z +3240,711,2,2020-02-15T06:59:31Z +3241,711,2,2020-02-15T06:59:31Z +3242,711,2,2020-02-15T06:59:31Z +3243,714,2,2020-02-15T06:59:31Z +3244,714,2,2020-02-15T06:59:31Z +3245,714,2,2020-02-15T06:59:31Z +3246,715,1,2020-02-15T06:59:31Z +3247,715,1,2020-02-15T06:59:31Z +3248,715,1,2020-02-15T06:59:31Z +3249,715,1,2020-02-15T06:59:31Z +3250,715,2,2020-02-15T06:59:31Z +3251,715,2,2020-02-15T06:59:31Z +3252,715,2,2020-02-15T06:59:31Z +3253,716,1,2020-02-15T06:59:31Z +3254,716,1,2020-02-15T06:59:31Z +3255,716,2,2020-02-15T06:59:31Z +3256,716,2,2020-02-15T06:59:31Z +3257,716,2,2020-02-15T06:59:31Z +3258,717,1,2020-02-15T06:59:31Z +3259,717,1,2020-02-15T06:59:31Z +3260,717,2,2020-02-15T06:59:31Z +3261,717,2,2020-02-15T06:59:31Z +3262,718,2,2020-02-15T06:59:31Z +3263,718,2,2020-02-15T06:59:31Z +3264,719,1,2020-02-15T06:59:31Z +3265,719,1,2020-02-15T06:59:31Z +3266,720,1,2020-02-15T06:59:31Z +3267,720,1,2020-02-15T06:59:31Z +3268,720,1,2020-02-15T06:59:31Z +3269,720,2,2020-02-15T06:59:31Z +3270,720,2,2020-02-15T06:59:31Z +3271,720,2,2020-02-15T06:59:31Z +3272,720,2,2020-02-15T06:59:31Z +3273,721,1,2020-02-15T06:59:31Z +3274,721,1,2020-02-15T06:59:31Z +3275,722,1,2020-02-15T06:59:31Z +3276,722,1,2020-02-15T06:59:31Z +3277,722,2,2020-02-15T06:59:31Z +3278,722,2,2020-02-15T06:59:31Z +3279,723,1,2020-02-15T06:59:31Z +3280,723,1,2020-02-15T06:59:31Z +3281,723,1,2020-02-15T06:59:31Z +3282,723,1,2020-02-15T06:59:31Z +3283,723,2,2020-02-15T06:59:31Z +3284,723,2,2020-02-15T06:59:31Z +3285,723,2,2020-02-15T06:59:31Z +3286,724,1,2020-02-15T06:59:31Z +3287,724,1,2020-02-15T06:59:31Z +3288,724,2,2020-02-15T06:59:31Z +3289,724,2,2020-02-15T06:59:31Z +3290,724,2,2020-02-15T06:59:31Z +3291,724,2,2020-02-15T06:59:31Z +3292,725,1,2020-02-15T06:59:31Z +3293,725,1,2020-02-15T06:59:31Z +3294,725,1,2020-02-15T06:59:31Z +3295,725,2,2020-02-15T06:59:31Z +3296,725,2,2020-02-15T06:59:31Z +3297,725,2,2020-02-15T06:59:31Z +3298,726,2,2020-02-15T06:59:31Z +3299,726,2,2020-02-15T06:59:31Z +3300,726,2,2020-02-15T06:59:31Z +3301,727,1,2020-02-15T06:59:31Z +3302,727,1,2020-02-15T06:59:31Z +3303,727,2,2020-02-15T06:59:31Z +3304,727,2,2020-02-15T06:59:31Z +3305,727,2,2020-02-15T06:59:31Z +3306,728,1,2020-02-15T06:59:31Z +3307,728,1,2020-02-15T06:59:31Z +3308,728,1,2020-02-15T06:59:31Z +3309,728,2,2020-02-15T06:59:31Z +3310,728,2,2020-02-15T06:59:31Z +3311,729,2,2020-02-15T06:59:31Z +3312,729,2,2020-02-15T06:59:31Z +3313,729,2,2020-02-15T06:59:31Z +3314,729,2,2020-02-15T06:59:31Z +3315,730,1,2020-02-15T06:59:31Z +3316,730,1,2020-02-15T06:59:31Z +3317,730,1,2020-02-15T06:59:31Z +3318,730,1,2020-02-15T06:59:31Z +3319,730,2,2020-02-15T06:59:31Z +3320,730,2,2020-02-15T06:59:31Z +3321,730,2,2020-02-15T06:59:31Z +3322,730,2,2020-02-15T06:59:31Z +3323,731,2,2020-02-15T06:59:31Z +3324,731,2,2020-02-15T06:59:31Z +3325,731,2,2020-02-15T06:59:31Z +3326,732,1,2020-02-15T06:59:31Z +3327,732,1,2020-02-15T06:59:31Z +3328,732,1,2020-02-15T06:59:31Z +3329,732,1,2020-02-15T06:59:31Z +3330,733,1,2020-02-15T06:59:31Z +3331,733,1,2020-02-15T06:59:31Z +3332,733,1,2020-02-15T06:59:31Z +3333,733,1,2020-02-15T06:59:31Z +3334,733,2,2020-02-15T06:59:31Z +3335,733,2,2020-02-15T06:59:31Z +3336,733,2,2020-02-15T06:59:31Z +3337,734,1,2020-02-15T06:59:31Z +3338,734,1,2020-02-15T06:59:31Z +3339,734,2,2020-02-15T06:59:31Z +3340,734,2,2020-02-15T06:59:31Z +3341,734,2,2020-02-15T06:59:31Z +3342,734,2,2020-02-15T06:59:31Z +3343,735,1,2020-02-15T06:59:31Z +3344,735,1,2020-02-15T06:59:31Z +3345,735,1,2020-02-15T06:59:31Z +3346,735,2,2020-02-15T06:59:31Z +3347,735,2,2020-02-15T06:59:31Z +3348,735,2,2020-02-15T06:59:31Z +3349,735,2,2020-02-15T06:59:31Z +3350,736,1,2020-02-15T06:59:31Z +3351,736,1,2020-02-15T06:59:31Z +3352,736,1,2020-02-15T06:59:31Z +3353,736,1,2020-02-15T06:59:31Z +3354,737,1,2020-02-15T06:59:31Z +3355,737,1,2020-02-15T06:59:31Z +3356,737,2,2020-02-15T06:59:31Z +3357,737,2,2020-02-15T06:59:31Z +3358,737,2,2020-02-15T06:59:31Z +3359,737,2,2020-02-15T06:59:31Z +3360,738,1,2020-02-15T06:59:31Z +3361,738,1,2020-02-15T06:59:31Z +3362,738,1,2020-02-15T06:59:31Z +3363,738,1,2020-02-15T06:59:31Z +3364,738,2,2020-02-15T06:59:31Z +3365,738,2,2020-02-15T06:59:31Z +3366,738,2,2020-02-15T06:59:31Z +3367,738,2,2020-02-15T06:59:31Z +3368,739,1,2020-02-15T06:59:31Z +3369,739,1,2020-02-15T06:59:31Z +3370,739,2,2020-02-15T06:59:31Z +3371,739,2,2020-02-15T06:59:31Z +3372,739,2,2020-02-15T06:59:31Z +3373,740,2,2020-02-15T06:59:31Z +3374,740,2,2020-02-15T06:59:31Z +3375,740,2,2020-02-15T06:59:31Z +3376,741,1,2020-02-15T06:59:31Z +3377,741,1,2020-02-15T06:59:31Z +3378,741,1,2020-02-15T06:59:31Z +3379,741,1,2020-02-15T06:59:31Z +3380,741,2,2020-02-15T06:59:31Z +3381,741,2,2020-02-15T06:59:31Z +3382,743,1,2020-02-15T06:59:31Z +3383,743,1,2020-02-15T06:59:31Z +3384,743,2,2020-02-15T06:59:31Z +3385,743,2,2020-02-15T06:59:31Z +3386,743,2,2020-02-15T06:59:31Z +3387,743,2,2020-02-15T06:59:31Z +3388,744,1,2020-02-15T06:59:31Z +3389,744,1,2020-02-15T06:59:31Z +3390,744,2,2020-02-15T06:59:31Z +3391,744,2,2020-02-15T06:59:31Z +3392,744,2,2020-02-15T06:59:31Z +3393,745,1,2020-02-15T06:59:31Z +3394,745,1,2020-02-15T06:59:31Z +3395,745,1,2020-02-15T06:59:31Z +3396,745,1,2020-02-15T06:59:31Z +3397,745,2,2020-02-15T06:59:31Z +3398,745,2,2020-02-15T06:59:31Z +3399,745,2,2020-02-15T06:59:31Z +3400,745,2,2020-02-15T06:59:31Z +3401,746,1,2020-02-15T06:59:31Z +3402,746,1,2020-02-15T06:59:31Z +3403,746,2,2020-02-15T06:59:31Z +3404,746,2,2020-02-15T06:59:31Z +3405,746,2,2020-02-15T06:59:31Z +3406,747,1,2020-02-15T06:59:31Z +3407,747,1,2020-02-15T06:59:31Z +3408,747,2,2020-02-15T06:59:31Z +3409,747,2,2020-02-15T06:59:31Z +3410,747,2,2020-02-15T06:59:31Z +3411,748,1,2020-02-15T06:59:31Z +3412,748,1,2020-02-15T06:59:31Z +3413,748,1,2020-02-15T06:59:31Z +3414,748,1,2020-02-15T06:59:31Z +3415,748,2,2020-02-15T06:59:31Z +3416,748,2,2020-02-15T06:59:31Z +3417,748,2,2020-02-15T06:59:31Z +3418,748,2,2020-02-15T06:59:31Z +3419,749,1,2020-02-15T06:59:31Z +3420,749,1,2020-02-15T06:59:31Z +3421,749,2,2020-02-15T06:59:31Z +3422,749,2,2020-02-15T06:59:31Z +3423,750,1,2020-02-15T06:59:31Z +3424,750,1,2020-02-15T06:59:31Z +3425,750,1,2020-02-15T06:59:31Z +3426,751,2,2020-02-15T06:59:31Z +3427,751,2,2020-02-15T06:59:31Z +3428,752,2,2020-02-15T06:59:31Z +3429,752,2,2020-02-15T06:59:31Z +3430,752,2,2020-02-15T06:59:31Z +3431,753,1,2020-02-15T06:59:31Z +3432,753,1,2020-02-15T06:59:31Z +3433,753,1,2020-02-15T06:59:31Z +3434,753,1,2020-02-15T06:59:31Z +3435,753,2,2020-02-15T06:59:31Z +3436,753,2,2020-02-15T06:59:31Z +3437,753,2,2020-02-15T06:59:31Z +3438,753,2,2020-02-15T06:59:31Z +3439,754,2,2020-02-15T06:59:31Z +3440,754,2,2020-02-15T06:59:31Z +3441,755,1,2020-02-15T06:59:31Z +3442,755,1,2020-02-15T06:59:31Z +3443,755,1,2020-02-15T06:59:31Z +3444,755,1,2020-02-15T06:59:31Z +3445,755,2,2020-02-15T06:59:31Z +3446,755,2,2020-02-15T06:59:31Z +3447,755,2,2020-02-15T06:59:31Z +3448,756,2,2020-02-15T06:59:31Z +3449,756,2,2020-02-15T06:59:31Z +3450,756,2,2020-02-15T06:59:31Z +3451,757,1,2020-02-15T06:59:31Z +3452,757,1,2020-02-15T06:59:31Z +3453,757,1,2020-02-15T06:59:31Z +3454,757,2,2020-02-15T06:59:31Z +3455,757,2,2020-02-15T06:59:31Z +3456,758,2,2020-02-15T06:59:31Z +3457,758,2,2020-02-15T06:59:31Z +3458,758,2,2020-02-15T06:59:31Z +3459,759,1,2020-02-15T06:59:31Z +3460,759,1,2020-02-15T06:59:31Z +3461,759,2,2020-02-15T06:59:31Z +3462,759,2,2020-02-15T06:59:31Z +3463,759,2,2020-02-15T06:59:31Z +3464,759,2,2020-02-15T06:59:31Z +3465,760,1,2020-02-15T06:59:31Z +3466,760,1,2020-02-15T06:59:31Z +3467,760,1,2020-02-15T06:59:31Z +3468,760,2,2020-02-15T06:59:31Z +3469,760,2,2020-02-15T06:59:31Z +3470,760,2,2020-02-15T06:59:31Z +3471,760,2,2020-02-15T06:59:31Z +3472,761,2,2020-02-15T06:59:31Z +3473,761,2,2020-02-15T06:59:31Z +3474,761,2,2020-02-15T06:59:31Z +3475,762,2,2020-02-15T06:59:31Z +3476,762,2,2020-02-15T06:59:31Z +3477,762,2,2020-02-15T06:59:31Z +3478,762,2,2020-02-15T06:59:31Z +3479,763,1,2020-02-15T06:59:31Z +3480,763,1,2020-02-15T06:59:31Z +3481,763,1,2020-02-15T06:59:31Z +3482,763,2,2020-02-15T06:59:31Z +3483,763,2,2020-02-15T06:59:31Z +3484,764,1,2020-02-15T06:59:31Z +3485,764,1,2020-02-15T06:59:31Z +3486,764,1,2020-02-15T06:59:31Z +3487,764,1,2020-02-15T06:59:31Z +3488,764,2,2020-02-15T06:59:31Z +3489,764,2,2020-02-15T06:59:31Z +3490,764,2,2020-02-15T06:59:31Z +3491,764,2,2020-02-15T06:59:31Z +3492,765,1,2020-02-15T06:59:31Z +3493,765,1,2020-02-15T06:59:31Z +3494,765,1,2020-02-15T06:59:31Z +3495,765,1,2020-02-15T06:59:31Z +3496,766,1,2020-02-15T06:59:31Z +3497,766,1,2020-02-15T06:59:31Z +3498,766,1,2020-02-15T06:59:31Z +3499,767,1,2020-02-15T06:59:31Z +3500,767,1,2020-02-15T06:59:31Z +3501,767,1,2020-02-15T06:59:31Z +3502,767,1,2020-02-15T06:59:31Z +3503,767,2,2020-02-15T06:59:31Z +3504,767,2,2020-02-15T06:59:31Z +3505,767,2,2020-02-15T06:59:31Z +3506,767,2,2020-02-15T06:59:31Z +3507,768,1,2020-02-15T06:59:31Z +3508,768,1,2020-02-15T06:59:31Z +3509,768,1,2020-02-15T06:59:31Z +3510,768,2,2020-02-15T06:59:31Z +3511,768,2,2020-02-15T06:59:31Z +3512,768,2,2020-02-15T06:59:31Z +3513,769,2,2020-02-15T06:59:31Z +3514,769,2,2020-02-15T06:59:31Z +3515,770,2,2020-02-15T06:59:31Z +3516,770,2,2020-02-15T06:59:31Z +3517,770,2,2020-02-15T06:59:31Z +3518,771,1,2020-02-15T06:59:31Z +3519,771,1,2020-02-15T06:59:31Z +3520,771,1,2020-02-15T06:59:31Z +3521,771,2,2020-02-15T06:59:31Z +3522,771,2,2020-02-15T06:59:31Z +3523,771,2,2020-02-15T06:59:31Z +3524,771,2,2020-02-15T06:59:31Z +3525,772,1,2020-02-15T06:59:31Z +3526,772,1,2020-02-15T06:59:31Z +3527,772,1,2020-02-15T06:59:31Z +3528,772,1,2020-02-15T06:59:31Z +3529,772,2,2020-02-15T06:59:31Z +3530,772,2,2020-02-15T06:59:31Z +3531,773,1,2020-02-15T06:59:31Z +3532,773,1,2020-02-15T06:59:31Z +3533,773,1,2020-02-15T06:59:31Z +3534,773,1,2020-02-15T06:59:31Z +3535,773,2,2020-02-15T06:59:31Z +3536,773,2,2020-02-15T06:59:31Z +3537,773,2,2020-02-15T06:59:31Z +3538,773,2,2020-02-15T06:59:31Z +3539,774,1,2020-02-15T06:59:31Z +3540,774,1,2020-02-15T06:59:31Z +3541,774,1,2020-02-15T06:59:31Z +3542,774,1,2020-02-15T06:59:31Z +3543,775,1,2020-02-15T06:59:31Z +3544,775,1,2020-02-15T06:59:31Z +3545,775,1,2020-02-15T06:59:31Z +3546,775,2,2020-02-15T06:59:31Z +3547,775,2,2020-02-15T06:59:31Z +3548,776,1,2020-02-15T06:59:31Z +3549,776,1,2020-02-15T06:59:31Z +3550,776,2,2020-02-15T06:59:31Z +3551,776,2,2020-02-15T06:59:31Z +3552,776,2,2020-02-15T06:59:31Z +3553,777,1,2020-02-15T06:59:31Z +3554,777,1,2020-02-15T06:59:31Z +3555,777,1,2020-02-15T06:59:31Z +3556,777,2,2020-02-15T06:59:31Z +3557,777,2,2020-02-15T06:59:31Z +3558,777,2,2020-02-15T06:59:31Z +3559,778,1,2020-02-15T06:59:31Z +3560,778,1,2020-02-15T06:59:31Z +3561,778,1,2020-02-15T06:59:31Z +3562,778,1,2020-02-15T06:59:31Z +3563,778,2,2020-02-15T06:59:31Z +3564,778,2,2020-02-15T06:59:31Z +3565,779,2,2020-02-15T06:59:31Z +3566,779,2,2020-02-15T06:59:31Z +3567,780,2,2020-02-15T06:59:31Z +3568,780,2,2020-02-15T06:59:31Z +3569,780,2,2020-02-15T06:59:31Z +3570,781,2,2020-02-15T06:59:31Z +3571,781,2,2020-02-15T06:59:31Z +3572,782,1,2020-02-15T06:59:31Z +3573,782,1,2020-02-15T06:59:31Z +3574,782,1,2020-02-15T06:59:31Z +3575,782,2,2020-02-15T06:59:31Z +3576,782,2,2020-02-15T06:59:31Z +3577,782,2,2020-02-15T06:59:31Z +3578,783,1,2020-02-15T06:59:31Z +3579,783,1,2020-02-15T06:59:31Z +3580,783,1,2020-02-15T06:59:31Z +3581,783,1,2020-02-15T06:59:31Z +3582,784,1,2020-02-15T06:59:31Z +3583,784,1,2020-02-15T06:59:31Z +3584,784,1,2020-02-15T06:59:31Z +3585,784,2,2020-02-15T06:59:31Z +3586,784,2,2020-02-15T06:59:31Z +3587,784,2,2020-02-15T06:59:31Z +3588,785,1,2020-02-15T06:59:31Z +3589,785,1,2020-02-15T06:59:31Z +3590,785,1,2020-02-15T06:59:31Z +3591,785,1,2020-02-15T06:59:31Z +3592,785,2,2020-02-15T06:59:31Z +3593,785,2,2020-02-15T06:59:31Z +3594,786,1,2020-02-15T06:59:31Z +3595,786,1,2020-02-15T06:59:31Z +3596,786,1,2020-02-15T06:59:31Z +3597,786,2,2020-02-15T06:59:31Z +3598,786,2,2020-02-15T06:59:31Z +3599,786,2,2020-02-15T06:59:31Z +3600,786,2,2020-02-15T06:59:31Z +3601,787,1,2020-02-15T06:59:31Z +3602,787,1,2020-02-15T06:59:31Z +3603,787,1,2020-02-15T06:59:31Z +3604,788,1,2020-02-15T06:59:31Z +3605,788,1,2020-02-15T06:59:31Z +3606,788,2,2020-02-15T06:59:31Z +3607,788,2,2020-02-15T06:59:31Z +3608,789,1,2020-02-15T06:59:31Z +3609,789,1,2020-02-15T06:59:31Z +3610,789,1,2020-02-15T06:59:31Z +3611,789,1,2020-02-15T06:59:31Z +3612,789,2,2020-02-15T06:59:31Z +3613,789,2,2020-02-15T06:59:31Z +3614,789,2,2020-02-15T06:59:31Z +3615,789,2,2020-02-15T06:59:31Z +3616,790,1,2020-02-15T06:59:31Z +3617,790,1,2020-02-15T06:59:31Z +3618,790,1,2020-02-15T06:59:31Z +3619,790,1,2020-02-15T06:59:31Z +3620,790,2,2020-02-15T06:59:31Z +3621,790,2,2020-02-15T06:59:31Z +3622,790,2,2020-02-15T06:59:31Z +3623,791,1,2020-02-15T06:59:31Z +3624,791,1,2020-02-15T06:59:31Z +3625,791,2,2020-02-15T06:59:31Z +3626,791,2,2020-02-15T06:59:31Z +3627,791,2,2020-02-15T06:59:31Z +3628,791,2,2020-02-15T06:59:31Z +3629,792,2,2020-02-15T06:59:31Z +3630,792,2,2020-02-15T06:59:31Z +3631,792,2,2020-02-15T06:59:31Z +3632,793,1,2020-02-15T06:59:31Z +3633,793,1,2020-02-15T06:59:31Z +3634,793,1,2020-02-15T06:59:31Z +3635,793,1,2020-02-15T06:59:31Z +3636,794,1,2020-02-15T06:59:31Z +3637,794,1,2020-02-15T06:59:31Z +3638,794,2,2020-02-15T06:59:31Z +3639,794,2,2020-02-15T06:59:31Z +3640,795,1,2020-02-15T06:59:31Z +3641,795,1,2020-02-15T06:59:31Z +3642,795,1,2020-02-15T06:59:31Z +3643,795,1,2020-02-15T06:59:31Z +3644,796,1,2020-02-15T06:59:31Z +3645,796,1,2020-02-15T06:59:31Z +3646,796,2,2020-02-15T06:59:31Z +3647,796,2,2020-02-15T06:59:31Z +3648,796,2,2020-02-15T06:59:31Z +3649,797,1,2020-02-15T06:59:31Z +3650,797,1,2020-02-15T06:59:31Z +3651,797,2,2020-02-15T06:59:31Z +3652,797,2,2020-02-15T06:59:31Z +3653,797,2,2020-02-15T06:59:31Z +3654,798,1,2020-02-15T06:59:31Z +3655,798,1,2020-02-15T06:59:31Z +3656,798,2,2020-02-15T06:59:31Z +3657,798,2,2020-02-15T06:59:31Z +3658,799,1,2020-02-15T06:59:31Z +3659,799,1,2020-02-15T06:59:31Z +3660,800,1,2020-02-15T06:59:31Z +3661,800,1,2020-02-15T06:59:31Z +3662,800,2,2020-02-15T06:59:31Z +3663,800,2,2020-02-15T06:59:31Z +3664,800,2,2020-02-15T06:59:31Z +3665,800,2,2020-02-15T06:59:31Z +3666,803,1,2020-02-15T06:59:31Z +3667,803,1,2020-02-15T06:59:31Z +3668,803,1,2020-02-15T06:59:31Z +3669,803,1,2020-02-15T06:59:31Z +3670,803,2,2020-02-15T06:59:31Z +3671,803,2,2020-02-15T06:59:31Z +3672,804,1,2020-02-15T06:59:31Z +3673,804,1,2020-02-15T06:59:31Z +3674,804,1,2020-02-15T06:59:31Z +3675,804,1,2020-02-15T06:59:31Z +3676,804,2,2020-02-15T06:59:31Z +3677,804,2,2020-02-15T06:59:31Z +3678,804,2,2020-02-15T06:59:31Z +3679,805,1,2020-02-15T06:59:31Z +3680,805,1,2020-02-15T06:59:31Z +3681,805,2,2020-02-15T06:59:31Z +3682,805,2,2020-02-15T06:59:31Z +3683,805,2,2020-02-15T06:59:31Z +3684,806,1,2020-02-15T06:59:31Z +3685,806,1,2020-02-15T06:59:31Z +3686,806,1,2020-02-15T06:59:31Z +3687,806,2,2020-02-15T06:59:31Z +3688,806,2,2020-02-15T06:59:31Z +3689,807,1,2020-02-15T06:59:31Z +3690,807,1,2020-02-15T06:59:31Z +3691,807,1,2020-02-15T06:59:31Z +3692,807,2,2020-02-15T06:59:31Z +3693,807,2,2020-02-15T06:59:31Z +3694,808,2,2020-02-15T06:59:31Z +3695,808,2,2020-02-15T06:59:31Z +3696,809,2,2020-02-15T06:59:31Z +3697,809,2,2020-02-15T06:59:31Z +3698,809,2,2020-02-15T06:59:31Z +3699,809,2,2020-02-15T06:59:31Z +3700,810,1,2020-02-15T06:59:31Z +3701,810,1,2020-02-15T06:59:31Z +3702,810,1,2020-02-15T06:59:31Z +3703,810,1,2020-02-15T06:59:31Z +3704,810,2,2020-02-15T06:59:31Z +3705,810,2,2020-02-15T06:59:31Z +3706,810,2,2020-02-15T06:59:31Z +3707,811,1,2020-02-15T06:59:31Z +3708,811,1,2020-02-15T06:59:31Z +3709,811,1,2020-02-15T06:59:31Z +3710,812,1,2020-02-15T06:59:31Z +3711,812,1,2020-02-15T06:59:31Z +3712,812,1,2020-02-15T06:59:31Z +3713,812,2,2020-02-15T06:59:31Z +3714,812,2,2020-02-15T06:59:31Z +3715,812,2,2020-02-15T06:59:31Z +3716,813,2,2020-02-15T06:59:31Z +3717,813,2,2020-02-15T06:59:31Z +3718,813,2,2020-02-15T06:59:31Z +3719,813,2,2020-02-15T06:59:31Z +3720,814,1,2020-02-15T06:59:31Z +3721,814,1,2020-02-15T06:59:31Z +3722,814,1,2020-02-15T06:59:31Z +3723,814,2,2020-02-15T06:59:31Z +3724,814,2,2020-02-15T06:59:31Z +3725,814,2,2020-02-15T06:59:31Z +3726,814,2,2020-02-15T06:59:31Z +3727,815,1,2020-02-15T06:59:31Z +3728,815,1,2020-02-15T06:59:31Z +3729,815,1,2020-02-15T06:59:31Z +3730,816,1,2020-02-15T06:59:31Z +3731,816,1,2020-02-15T06:59:31Z +3732,816,1,2020-02-15T06:59:31Z +3733,816,1,2020-02-15T06:59:31Z +3734,816,2,2020-02-15T06:59:31Z +3735,816,2,2020-02-15T06:59:31Z +3736,816,2,2020-02-15T06:59:31Z +3737,817,1,2020-02-15T06:59:31Z +3738,817,1,2020-02-15T06:59:31Z +3739,818,1,2020-02-15T06:59:31Z +3740,818,1,2020-02-15T06:59:31Z +3741,818,1,2020-02-15T06:59:31Z +3742,818,2,2020-02-15T06:59:31Z +3743,818,2,2020-02-15T06:59:31Z +3744,819,1,2020-02-15T06:59:31Z +3745,819,1,2020-02-15T06:59:31Z +3746,819,1,2020-02-15T06:59:31Z +3747,820,1,2020-02-15T06:59:31Z +3748,820,1,2020-02-15T06:59:31Z +3749,820,1,2020-02-15T06:59:31Z +3750,820,1,2020-02-15T06:59:31Z +3751,820,2,2020-02-15T06:59:31Z +3752,820,2,2020-02-15T06:59:31Z +3753,821,2,2020-02-15T06:59:31Z +3754,821,2,2020-02-15T06:59:31Z +3755,821,2,2020-02-15T06:59:31Z +3756,821,2,2020-02-15T06:59:31Z +3757,822,2,2020-02-15T06:59:31Z +3758,822,2,2020-02-15T06:59:31Z +3759,823,1,2020-02-15T06:59:31Z +3760,823,1,2020-02-15T06:59:31Z +3761,823,1,2020-02-15T06:59:31Z +3762,823,2,2020-02-15T06:59:31Z +3763,823,2,2020-02-15T06:59:31Z +3764,823,2,2020-02-15T06:59:31Z +3765,823,2,2020-02-15T06:59:31Z +3766,824,2,2020-02-15T06:59:31Z +3767,824,2,2020-02-15T06:59:31Z +3768,824,2,2020-02-15T06:59:31Z +3769,824,2,2020-02-15T06:59:31Z +3770,825,1,2020-02-15T06:59:31Z +3771,825,1,2020-02-15T06:59:31Z +3772,825,1,2020-02-15T06:59:31Z +3773,826,2,2020-02-15T06:59:31Z +3774,826,2,2020-02-15T06:59:31Z +3775,827,1,2020-02-15T06:59:31Z +3776,827,1,2020-02-15T06:59:31Z +3777,827,2,2020-02-15T06:59:31Z +3778,827,2,2020-02-15T06:59:31Z +3779,827,2,2020-02-15T06:59:31Z +3780,827,2,2020-02-15T06:59:31Z +3781,828,2,2020-02-15T06:59:31Z +3782,828,2,2020-02-15T06:59:31Z +3783,828,2,2020-02-15T06:59:31Z +3784,828,2,2020-02-15T06:59:31Z +3785,829,1,2020-02-15T06:59:31Z +3786,829,1,2020-02-15T06:59:31Z +3787,829,2,2020-02-15T06:59:31Z +3788,829,2,2020-02-15T06:59:31Z +3789,829,2,2020-02-15T06:59:31Z +3790,830,2,2020-02-15T06:59:31Z +3791,830,2,2020-02-15T06:59:31Z +3792,830,2,2020-02-15T06:59:31Z +3793,830,2,2020-02-15T06:59:31Z +3794,831,1,2020-02-15T06:59:31Z +3795,831,1,2020-02-15T06:59:31Z +3796,831,1,2020-02-15T06:59:31Z +3797,832,1,2020-02-15T06:59:31Z +3798,832,1,2020-02-15T06:59:31Z +3799,832,1,2020-02-15T06:59:31Z +3800,832,1,2020-02-15T06:59:31Z +3801,833,1,2020-02-15T06:59:31Z +3802,833,1,2020-02-15T06:59:31Z +3803,833,1,2020-02-15T06:59:31Z +3804,833,2,2020-02-15T06:59:31Z +3805,833,2,2020-02-15T06:59:31Z +3806,833,2,2020-02-15T06:59:31Z +3807,833,2,2020-02-15T06:59:31Z +3808,834,2,2020-02-15T06:59:31Z +3809,834,2,2020-02-15T06:59:31Z +3810,834,2,2020-02-15T06:59:31Z +3811,835,1,2020-02-15T06:59:31Z +3812,835,1,2020-02-15T06:59:31Z +3813,835,1,2020-02-15T06:59:31Z +3814,835,1,2020-02-15T06:59:31Z +3815,835,2,2020-02-15T06:59:31Z +3816,835,2,2020-02-15T06:59:31Z +3817,835,2,2020-02-15T06:59:31Z +3818,835,2,2020-02-15T06:59:31Z +3819,836,1,2020-02-15T06:59:31Z +3820,836,1,2020-02-15T06:59:31Z +3821,836,1,2020-02-15T06:59:31Z +3822,837,2,2020-02-15T06:59:31Z +3823,837,2,2020-02-15T06:59:31Z +3824,837,2,2020-02-15T06:59:31Z +3825,838,1,2020-02-15T06:59:31Z +3826,838,1,2020-02-15T06:59:31Z +3827,838,2,2020-02-15T06:59:31Z +3828,838,2,2020-02-15T06:59:31Z +3829,838,2,2020-02-15T06:59:31Z +3830,838,2,2020-02-15T06:59:31Z +3831,839,2,2020-02-15T06:59:31Z +3832,839,2,2020-02-15T06:59:31Z +3833,840,1,2020-02-15T06:59:31Z +3834,840,1,2020-02-15T06:59:31Z +3835,840,1,2020-02-15T06:59:31Z +3836,840,1,2020-02-15T06:59:31Z +3837,841,1,2020-02-15T06:59:31Z +3838,841,1,2020-02-15T06:59:31Z +3839,841,1,2020-02-15T06:59:31Z +3840,841,2,2020-02-15T06:59:31Z +3841,841,2,2020-02-15T06:59:31Z +3842,841,2,2020-02-15T06:59:31Z +3843,841,2,2020-02-15T06:59:31Z +3844,842,1,2020-02-15T06:59:31Z +3845,842,1,2020-02-15T06:59:31Z +3846,842,2,2020-02-15T06:59:31Z +3847,842,2,2020-02-15T06:59:31Z +3848,843,1,2020-02-15T06:59:31Z +3849,843,1,2020-02-15T06:59:31Z +3850,843,1,2020-02-15T06:59:31Z +3851,843,1,2020-02-15T06:59:31Z +3852,843,2,2020-02-15T06:59:31Z +3853,843,2,2020-02-15T06:59:31Z +3854,843,2,2020-02-15T06:59:31Z +3855,844,1,2020-02-15T06:59:31Z +3856,844,1,2020-02-15T06:59:31Z +3857,844,2,2020-02-15T06:59:31Z +3858,844,2,2020-02-15T06:59:31Z +3859,845,1,2020-02-15T06:59:31Z +3860,845,1,2020-02-15T06:59:31Z +3861,845,1,2020-02-15T06:59:31Z +3862,845,1,2020-02-15T06:59:31Z +3863,845,2,2020-02-15T06:59:31Z +3864,845,2,2020-02-15T06:59:31Z +3865,845,2,2020-02-15T06:59:31Z +3866,846,1,2020-02-15T06:59:31Z +3867,846,1,2020-02-15T06:59:31Z +3868,846,1,2020-02-15T06:59:31Z +3869,846,1,2020-02-15T06:59:31Z +3870,846,2,2020-02-15T06:59:31Z +3871,846,2,2020-02-15T06:59:31Z +3872,846,2,2020-02-15T06:59:31Z +3873,846,2,2020-02-15T06:59:31Z +3874,847,2,2020-02-15T06:59:31Z +3875,847,2,2020-02-15T06:59:31Z +3876,847,2,2020-02-15T06:59:31Z +3877,847,2,2020-02-15T06:59:31Z +3878,848,1,2020-02-15T06:59:31Z +3879,848,1,2020-02-15T06:59:31Z +3880,848,1,2020-02-15T06:59:31Z +3881,849,1,2020-02-15T06:59:31Z +3882,849,1,2020-02-15T06:59:31Z +3883,849,1,2020-02-15T06:59:31Z +3884,849,1,2020-02-15T06:59:31Z +3885,849,2,2020-02-15T06:59:31Z +3886,849,2,2020-02-15T06:59:31Z +3887,849,2,2020-02-15T06:59:31Z +3888,849,2,2020-02-15T06:59:31Z +3889,850,1,2020-02-15T06:59:31Z +3890,850,1,2020-02-15T06:59:31Z +3891,850,1,2020-02-15T06:59:31Z +3892,850,2,2020-02-15T06:59:31Z +3893,850,2,2020-02-15T06:59:31Z +3894,850,2,2020-02-15T06:59:31Z +3895,850,2,2020-02-15T06:59:31Z +3896,851,1,2020-02-15T06:59:31Z +3897,851,1,2020-02-15T06:59:31Z +3898,851,1,2020-02-15T06:59:31Z +3899,851,2,2020-02-15T06:59:31Z +3900,851,2,2020-02-15T06:59:31Z +3901,851,2,2020-02-15T06:59:31Z +3902,852,1,2020-02-15T06:59:31Z +3903,852,1,2020-02-15T06:59:31Z +3904,852,1,2020-02-15T06:59:31Z +3905,852,1,2020-02-15T06:59:31Z +3906,852,2,2020-02-15T06:59:31Z +3907,852,2,2020-02-15T06:59:31Z +3908,852,2,2020-02-15T06:59:31Z +3909,853,1,2020-02-15T06:59:31Z +3910,853,1,2020-02-15T06:59:31Z +3911,853,1,2020-02-15T06:59:31Z +3912,854,2,2020-02-15T06:59:31Z +3913,854,2,2020-02-15T06:59:31Z +3914,854,2,2020-02-15T06:59:31Z +3915,854,2,2020-02-15T06:59:31Z +3916,855,1,2020-02-15T06:59:31Z +3917,855,1,2020-02-15T06:59:31Z +3918,855,2,2020-02-15T06:59:31Z +3919,855,2,2020-02-15T06:59:31Z +3920,856,1,2020-02-15T06:59:31Z +3921,856,1,2020-02-15T06:59:31Z +3922,856,1,2020-02-15T06:59:31Z +3923,856,1,2020-02-15T06:59:31Z +3924,856,2,2020-02-15T06:59:31Z +3925,856,2,2020-02-15T06:59:31Z +3926,856,2,2020-02-15T06:59:31Z +3927,856,2,2020-02-15T06:59:31Z +3928,857,1,2020-02-15T06:59:31Z +3929,857,1,2020-02-15T06:59:31Z +3930,857,1,2020-02-15T06:59:31Z +3931,857,2,2020-02-15T06:59:31Z +3932,857,2,2020-02-15T06:59:31Z +3933,857,2,2020-02-15T06:59:31Z +3934,857,2,2020-02-15T06:59:31Z +3935,858,2,2020-02-15T06:59:31Z +3936,858,2,2020-02-15T06:59:31Z +3937,858,2,2020-02-15T06:59:31Z +3938,858,2,2020-02-15T06:59:31Z +3939,859,1,2020-02-15T06:59:31Z +3940,859,1,2020-02-15T06:59:31Z +3941,859,1,2020-02-15T06:59:31Z +3942,859,2,2020-02-15T06:59:31Z +3943,859,2,2020-02-15T06:59:31Z +3944,859,2,2020-02-15T06:59:31Z +3945,861,1,2020-02-15T06:59:31Z +3946,861,1,2020-02-15T06:59:31Z +3947,861,1,2020-02-15T06:59:31Z +3948,861,2,2020-02-15T06:59:31Z +3949,861,2,2020-02-15T06:59:31Z +3950,861,2,2020-02-15T06:59:31Z +3951,862,1,2020-02-15T06:59:31Z +3952,862,1,2020-02-15T06:59:31Z +3953,862,1,2020-02-15T06:59:31Z +3954,862,2,2020-02-15T06:59:31Z +3955,862,2,2020-02-15T06:59:31Z +3956,863,1,2020-02-15T06:59:31Z +3957,863,1,2020-02-15T06:59:31Z +3958,863,1,2020-02-15T06:59:31Z +3959,863,1,2020-02-15T06:59:31Z +3960,863,2,2020-02-15T06:59:31Z +3961,863,2,2020-02-15T06:59:31Z +3962,863,2,2020-02-15T06:59:31Z +3963,864,1,2020-02-15T06:59:31Z +3964,864,1,2020-02-15T06:59:31Z +3965,864,1,2020-02-15T06:59:31Z +3966,864,1,2020-02-15T06:59:31Z +3967,864,2,2020-02-15T06:59:31Z +3968,864,2,2020-02-15T06:59:31Z +3969,865,1,2020-02-15T06:59:31Z +3970,865,1,2020-02-15T06:59:31Z +3971,865,1,2020-02-15T06:59:31Z +3972,865,1,2020-02-15T06:59:31Z +3973,865,2,2020-02-15T06:59:31Z +3974,865,2,2020-02-15T06:59:31Z +3975,866,2,2020-02-15T06:59:31Z +3976,866,2,2020-02-15T06:59:31Z +3977,867,1,2020-02-15T06:59:31Z +3978,867,1,2020-02-15T06:59:31Z +3979,867,1,2020-02-15T06:59:31Z +3980,867,1,2020-02-15T06:59:31Z +3981,868,1,2020-02-15T06:59:31Z +3982,868,1,2020-02-15T06:59:31Z +3983,868,1,2020-02-15T06:59:31Z +3984,869,1,2020-02-15T06:59:31Z +3985,869,1,2020-02-15T06:59:31Z +3986,869,1,2020-02-15T06:59:31Z +3987,869,1,2020-02-15T06:59:31Z +3988,869,2,2020-02-15T06:59:31Z +3989,869,2,2020-02-15T06:59:31Z +3990,869,2,2020-02-15T06:59:31Z +3991,870,1,2020-02-15T06:59:31Z +3992,870,1,2020-02-15T06:59:31Z +3993,870,1,2020-02-15T06:59:31Z +3994,870,1,2020-02-15T06:59:31Z +3995,870,2,2020-02-15T06:59:31Z +3996,870,2,2020-02-15T06:59:31Z +3997,870,2,2020-02-15T06:59:31Z +3998,870,2,2020-02-15T06:59:31Z +3999,871,1,2020-02-15T06:59:31Z +4000,871,1,2020-02-15T06:59:31Z +4001,871,2,2020-02-15T06:59:31Z +4002,871,2,2020-02-15T06:59:31Z +4003,871,2,2020-02-15T06:59:31Z +4004,872,2,2020-02-15T06:59:31Z +4005,872,2,2020-02-15T06:59:31Z +4006,872,2,2020-02-15T06:59:31Z +4007,873,1,2020-02-15T06:59:31Z +4008,873,1,2020-02-15T06:59:31Z +4009,873,1,2020-02-15T06:59:31Z +4010,873,1,2020-02-15T06:59:31Z +4011,873,2,2020-02-15T06:59:31Z +4012,873,2,2020-02-15T06:59:31Z +4013,873,2,2020-02-15T06:59:31Z +4014,873,2,2020-02-15T06:59:31Z +4015,875,1,2020-02-15T06:59:31Z +4016,875,1,2020-02-15T06:59:31Z +4017,875,1,2020-02-15T06:59:31Z +4018,875,2,2020-02-15T06:59:31Z +4019,875,2,2020-02-15T06:59:31Z +4020,875,2,2020-02-15T06:59:31Z +4021,875,2,2020-02-15T06:59:31Z +4022,876,1,2020-02-15T06:59:31Z +4023,876,1,2020-02-15T06:59:31Z +4024,877,1,2020-02-15T06:59:31Z +4025,877,1,2020-02-15T06:59:31Z +4026,877,1,2020-02-15T06:59:31Z +4027,877,2,2020-02-15T06:59:31Z +4028,877,2,2020-02-15T06:59:31Z +4029,878,2,2020-02-15T06:59:31Z +4030,878,2,2020-02-15T06:59:31Z +4031,878,2,2020-02-15T06:59:31Z +4032,878,2,2020-02-15T06:59:31Z +4033,879,1,2020-02-15T06:59:31Z +4034,879,1,2020-02-15T06:59:31Z +4035,879,1,2020-02-15T06:59:31Z +4036,879,1,2020-02-15T06:59:31Z +4037,879,2,2020-02-15T06:59:31Z +4038,879,2,2020-02-15T06:59:31Z +4039,879,2,2020-02-15T06:59:31Z +4040,880,1,2020-02-15T06:59:31Z +4041,880,1,2020-02-15T06:59:31Z +4042,880,1,2020-02-15T06:59:31Z +4043,880,1,2020-02-15T06:59:31Z +4044,880,2,2020-02-15T06:59:31Z +4045,880,2,2020-02-15T06:59:31Z +4046,880,2,2020-02-15T06:59:31Z +4047,880,2,2020-02-15T06:59:31Z +4048,881,2,2020-02-15T06:59:31Z +4049,881,2,2020-02-15T06:59:31Z +4050,881,2,2020-02-15T06:59:31Z +4051,881,2,2020-02-15T06:59:31Z +4052,882,1,2020-02-15T06:59:31Z +4053,882,1,2020-02-15T06:59:31Z +4054,882,1,2020-02-15T06:59:31Z +4055,882,1,2020-02-15T06:59:31Z +4056,883,2,2020-02-15T06:59:31Z +4057,883,2,2020-02-15T06:59:32Z +4058,884,2,2020-02-15T06:59:32Z +4059,884,2,2020-02-15T06:59:32Z +4060,884,2,2020-02-15T06:59:32Z +4061,885,1,2020-02-15T06:59:32Z +4062,885,1,2020-02-15T06:59:32Z +4063,886,1,2020-02-15T06:59:32Z +4064,886,1,2020-02-15T06:59:32Z +4065,886,1,2020-02-15T06:59:32Z +4066,886,1,2020-02-15T06:59:32Z +4067,887,1,2020-02-15T06:59:32Z +4068,887,1,2020-02-15T06:59:32Z +4069,887,1,2020-02-15T06:59:32Z +4070,887,1,2020-02-15T06:59:32Z +4071,887,2,2020-02-15T06:59:32Z +4072,887,2,2020-02-15T06:59:32Z +4073,888,1,2020-02-15T06:59:32Z +4074,888,1,2020-02-15T06:59:32Z +4075,888,1,2020-02-15T06:59:32Z +4076,888,1,2020-02-15T06:59:32Z +4077,889,1,2020-02-15T06:59:32Z +4078,889,1,2020-02-15T06:59:32Z +4079,889,1,2020-02-15T06:59:32Z +4080,890,1,2020-02-15T06:59:32Z +4081,890,1,2020-02-15T06:59:32Z +4082,890,1,2020-02-15T06:59:32Z +4083,890,2,2020-02-15T06:59:32Z +4084,890,2,2020-02-15T06:59:32Z +4085,890,2,2020-02-15T06:59:32Z +4086,890,2,2020-02-15T06:59:32Z +4087,891,1,2020-02-15T06:59:32Z +4088,891,1,2020-02-15T06:59:32Z +4089,891,1,2020-02-15T06:59:32Z +4090,891,2,2020-02-15T06:59:32Z +4091,891,2,2020-02-15T06:59:32Z +4092,891,2,2020-02-15T06:59:32Z +4093,891,2,2020-02-15T06:59:32Z +4094,892,1,2020-02-15T06:59:32Z +4095,892,1,2020-02-15T06:59:32Z +4096,892,1,2020-02-15T06:59:32Z +4097,892,2,2020-02-15T06:59:32Z +4098,892,2,2020-02-15T06:59:32Z +4099,892,2,2020-02-15T06:59:32Z +4100,892,2,2020-02-15T06:59:32Z +4101,893,1,2020-02-15T06:59:32Z +4102,893,1,2020-02-15T06:59:32Z +4103,893,1,2020-02-15T06:59:32Z +4104,893,1,2020-02-15T06:59:32Z +4105,893,2,2020-02-15T06:59:32Z +4106,893,2,2020-02-15T06:59:32Z +4107,893,2,2020-02-15T06:59:32Z +4108,893,2,2020-02-15T06:59:32Z +4109,894,1,2020-02-15T06:59:32Z +4110,894,1,2020-02-15T06:59:32Z +4111,894,1,2020-02-15T06:59:32Z +4112,894,2,2020-02-15T06:59:32Z +4113,894,2,2020-02-15T06:59:32Z +4114,895,1,2020-02-15T06:59:32Z +4115,895,1,2020-02-15T06:59:32Z +4116,895,1,2020-02-15T06:59:32Z +4117,895,1,2020-02-15T06:59:32Z +4118,895,2,2020-02-15T06:59:32Z +4119,895,2,2020-02-15T06:59:32Z +4120,895,2,2020-02-15T06:59:32Z +4121,896,1,2020-02-15T06:59:32Z +4122,896,1,2020-02-15T06:59:32Z +4123,896,2,2020-02-15T06:59:32Z +4124,896,2,2020-02-15T06:59:32Z +4125,897,1,2020-02-15T06:59:32Z +4126,897,1,2020-02-15T06:59:32Z +4127,897,1,2020-02-15T06:59:32Z +4128,897,1,2020-02-15T06:59:32Z +4129,897,2,2020-02-15T06:59:32Z +4130,897,2,2020-02-15T06:59:32Z +4131,897,2,2020-02-15T06:59:32Z +4132,897,2,2020-02-15T06:59:32Z +4133,898,1,2020-02-15T06:59:32Z +4134,898,1,2020-02-15T06:59:32Z +4135,898,1,2020-02-15T06:59:32Z +4136,898,2,2020-02-15T06:59:32Z +4137,898,2,2020-02-15T06:59:32Z +4138,899,1,2020-02-15T06:59:32Z +4139,899,1,2020-02-15T06:59:32Z +4140,899,1,2020-02-15T06:59:32Z +4141,900,1,2020-02-15T06:59:32Z +4142,900,1,2020-02-15T06:59:32Z +4143,900,2,2020-02-15T06:59:32Z +4144,900,2,2020-02-15T06:59:32Z +4145,901,1,2020-02-15T06:59:32Z +4146,901,1,2020-02-15T06:59:32Z +4147,901,1,2020-02-15T06:59:32Z +4148,901,1,2020-02-15T06:59:32Z +4149,901,2,2020-02-15T06:59:32Z +4150,901,2,2020-02-15T06:59:32Z +4151,901,2,2020-02-15T06:59:32Z +4152,902,1,2020-02-15T06:59:32Z +4153,902,1,2020-02-15T06:59:32Z +4154,902,1,2020-02-15T06:59:32Z +4155,902,1,2020-02-15T06:59:32Z +4156,902,2,2020-02-15T06:59:32Z +4157,902,2,2020-02-15T06:59:32Z +4158,902,2,2020-02-15T06:59:32Z +4159,903,2,2020-02-15T06:59:32Z +4160,903,2,2020-02-15T06:59:32Z +4161,904,1,2020-02-15T06:59:32Z +4162,904,1,2020-02-15T06:59:32Z +4163,905,1,2020-02-15T06:59:32Z +4164,905,1,2020-02-15T06:59:32Z +4165,905,1,2020-02-15T06:59:32Z +4166,906,1,2020-02-15T06:59:32Z +4167,906,1,2020-02-15T06:59:32Z +4168,906,2,2020-02-15T06:59:32Z +4169,906,2,2020-02-15T06:59:32Z +4170,906,2,2020-02-15T06:59:32Z +4171,907,1,2020-02-15T06:59:32Z +4172,907,1,2020-02-15T06:59:32Z +4173,907,1,2020-02-15T06:59:32Z +4174,907,1,2020-02-15T06:59:32Z +4175,908,1,2020-02-15T06:59:32Z +4176,908,1,2020-02-15T06:59:32Z +4177,908,2,2020-02-15T06:59:32Z +4178,908,2,2020-02-15T06:59:32Z +4179,910,2,2020-02-15T06:59:32Z +4180,910,2,2020-02-15T06:59:32Z +4181,911,1,2020-02-15T06:59:32Z +4182,911,1,2020-02-15T06:59:32Z +4183,911,1,2020-02-15T06:59:32Z +4184,911,1,2020-02-15T06:59:32Z +4185,911,2,2020-02-15T06:59:32Z +4186,911,2,2020-02-15T06:59:32Z +4187,911,2,2020-02-15T06:59:32Z +4188,911,2,2020-02-15T06:59:32Z +4189,912,1,2020-02-15T06:59:32Z +4190,912,1,2020-02-15T06:59:32Z +4191,912,1,2020-02-15T06:59:32Z +4192,912,2,2020-02-15T06:59:32Z +4193,912,2,2020-02-15T06:59:32Z +4194,912,2,2020-02-15T06:59:32Z +4195,913,1,2020-02-15T06:59:32Z +4196,913,1,2020-02-15T06:59:32Z +4197,913,1,2020-02-15T06:59:32Z +4198,913,1,2020-02-15T06:59:32Z +4199,913,2,2020-02-15T06:59:32Z +4200,913,2,2020-02-15T06:59:32Z +4201,914,1,2020-02-15T06:59:32Z +4202,914,1,2020-02-15T06:59:32Z +4203,914,2,2020-02-15T06:59:32Z +4204,914,2,2020-02-15T06:59:32Z +4205,914,2,2020-02-15T06:59:32Z +4206,914,2,2020-02-15T06:59:32Z +4207,915,1,2020-02-15T06:59:32Z +4208,915,1,2020-02-15T06:59:32Z +4209,915,1,2020-02-15T06:59:32Z +4210,915,1,2020-02-15T06:59:32Z +4211,915,2,2020-02-15T06:59:32Z +4212,915,2,2020-02-15T06:59:32Z +4213,916,1,2020-02-15T06:59:32Z +4214,916,1,2020-02-15T06:59:32Z +4215,916,2,2020-02-15T06:59:32Z +4216,916,2,2020-02-15T06:59:32Z +4217,917,1,2020-02-15T06:59:32Z +4218,917,1,2020-02-15T06:59:32Z +4219,917,1,2020-02-15T06:59:32Z +4220,917,2,2020-02-15T06:59:32Z +4221,917,2,2020-02-15T06:59:32Z +4222,918,2,2020-02-15T06:59:32Z +4223,918,2,2020-02-15T06:59:32Z +4224,918,2,2020-02-15T06:59:32Z +4225,918,2,2020-02-15T06:59:32Z +4226,919,1,2020-02-15T06:59:32Z +4227,919,1,2020-02-15T06:59:32Z +4228,919,1,2020-02-15T06:59:32Z +4229,919,1,2020-02-15T06:59:32Z +4230,920,1,2020-02-15T06:59:32Z +4231,920,1,2020-02-15T06:59:32Z +4232,920,1,2020-02-15T06:59:32Z +4233,920,2,2020-02-15T06:59:32Z +4234,920,2,2020-02-15T06:59:32Z +4235,921,1,2020-02-15T06:59:32Z +4236,921,1,2020-02-15T06:59:32Z +4237,921,2,2020-02-15T06:59:32Z +4238,921,2,2020-02-15T06:59:32Z +4239,922,1,2020-02-15T06:59:32Z +4240,922,1,2020-02-15T06:59:32Z +4241,922,1,2020-02-15T06:59:32Z +4242,922,2,2020-02-15T06:59:32Z +4243,922,2,2020-02-15T06:59:32Z +4244,922,2,2020-02-15T06:59:32Z +4245,922,2,2020-02-15T06:59:32Z +4246,923,2,2020-02-15T06:59:32Z +4247,923,2,2020-02-15T06:59:32Z +4248,923,2,2020-02-15T06:59:32Z +4249,924,1,2020-02-15T06:59:32Z +4250,924,1,2020-02-15T06:59:32Z +4251,924,2,2020-02-15T06:59:32Z +4252,924,2,2020-02-15T06:59:32Z +4253,924,2,2020-02-15T06:59:32Z +4254,925,1,2020-02-15T06:59:32Z +4255,925,1,2020-02-15T06:59:32Z +4256,925,1,2020-02-15T06:59:32Z +4257,925,2,2020-02-15T06:59:32Z +4258,925,2,2020-02-15T06:59:32Z +4259,926,2,2020-02-15T06:59:32Z +4260,926,2,2020-02-15T06:59:32Z +4261,927,1,2020-02-15T06:59:32Z +4262,927,1,2020-02-15T06:59:32Z +4263,927,1,2020-02-15T06:59:32Z +4264,927,1,2020-02-15T06:59:32Z +4265,928,1,2020-02-15T06:59:32Z +4266,928,1,2020-02-15T06:59:32Z +4267,928,1,2020-02-15T06:59:32Z +4268,929,1,2020-02-15T06:59:32Z +4269,929,1,2020-02-15T06:59:32Z +4270,929,1,2020-02-15T06:59:32Z +4271,929,1,2020-02-15T06:59:32Z +4272,930,1,2020-02-15T06:59:32Z +4273,930,1,2020-02-15T06:59:32Z +4274,930,1,2020-02-15T06:59:32Z +4275,930,2,2020-02-15T06:59:32Z +4276,930,2,2020-02-15T06:59:32Z +4277,930,2,2020-02-15T06:59:32Z +4278,931,2,2020-02-15T06:59:32Z +4279,931,2,2020-02-15T06:59:32Z +4280,931,2,2020-02-15T06:59:32Z +4281,932,1,2020-02-15T06:59:32Z +4282,932,1,2020-02-15T06:59:32Z +4283,932,2,2020-02-15T06:59:32Z +4284,932,2,2020-02-15T06:59:32Z +4285,933,1,2020-02-15T06:59:32Z +4286,933,1,2020-02-15T06:59:32Z +4287,933,1,2020-02-15T06:59:32Z +4288,934,2,2020-02-15T06:59:32Z +4289,934,2,2020-02-15T06:59:32Z +4290,934,2,2020-02-15T06:59:32Z +4291,935,2,2020-02-15T06:59:32Z +4292,935,2,2020-02-15T06:59:32Z +4293,936,1,2020-02-15T06:59:32Z +4294,936,1,2020-02-15T06:59:32Z +4295,936,2,2020-02-15T06:59:32Z +4296,936,2,2020-02-15T06:59:32Z +4297,936,2,2020-02-15T06:59:32Z +4298,936,2,2020-02-15T06:59:32Z +4299,937,1,2020-02-15T06:59:32Z +4300,937,1,2020-02-15T06:59:32Z +4301,937,2,2020-02-15T06:59:32Z +4302,937,2,2020-02-15T06:59:32Z +4303,937,2,2020-02-15T06:59:32Z +4304,938,1,2020-02-15T06:59:32Z +4305,938,1,2020-02-15T06:59:32Z +4306,938,1,2020-02-15T06:59:32Z +4307,938,1,2020-02-15T06:59:32Z +4308,938,2,2020-02-15T06:59:32Z +4309,938,2,2020-02-15T06:59:32Z +4310,939,2,2020-02-15T06:59:32Z +4311,939,2,2020-02-15T06:59:32Z +4312,939,2,2020-02-15T06:59:32Z +4313,939,2,2020-02-15T06:59:32Z +4314,940,1,2020-02-15T06:59:32Z +4315,940,1,2020-02-15T06:59:32Z +4316,940,1,2020-02-15T06:59:32Z +4317,941,1,2020-02-15T06:59:32Z +4318,941,1,2020-02-15T06:59:32Z +4319,941,1,2020-02-15T06:59:32Z +4320,941,1,2020-02-15T06:59:32Z +4321,941,2,2020-02-15T06:59:32Z +4322,941,2,2020-02-15T06:59:32Z +4323,941,2,2020-02-15T06:59:32Z +4324,942,1,2020-02-15T06:59:32Z +4325,942,1,2020-02-15T06:59:32Z +4326,942,2,2020-02-15T06:59:32Z +4327,942,2,2020-02-15T06:59:32Z +4328,944,1,2020-02-15T06:59:32Z +4329,944,1,2020-02-15T06:59:32Z +4330,944,2,2020-02-15T06:59:32Z +4331,944,2,2020-02-15T06:59:32Z +4332,944,2,2020-02-15T06:59:32Z +4333,945,1,2020-02-15T06:59:32Z +4334,945,1,2020-02-15T06:59:32Z +4335,945,1,2020-02-15T06:59:32Z +4336,945,1,2020-02-15T06:59:32Z +4337,945,2,2020-02-15T06:59:32Z +4338,945,2,2020-02-15T06:59:32Z +4339,945,2,2020-02-15T06:59:32Z +4340,945,2,2020-02-15T06:59:32Z +4341,946,2,2020-02-15T06:59:32Z +4342,946,2,2020-02-15T06:59:32Z +4343,946,2,2020-02-15T06:59:32Z +4344,946,2,2020-02-15T06:59:32Z +4345,947,1,2020-02-15T06:59:32Z +4346,947,1,2020-02-15T06:59:32Z +4347,948,1,2020-02-15T06:59:32Z +4348,948,1,2020-02-15T06:59:32Z +4349,948,2,2020-02-15T06:59:32Z +4350,948,2,2020-02-15T06:59:32Z +4351,948,2,2020-02-15T06:59:32Z +4352,948,2,2020-02-15T06:59:32Z +4353,949,1,2020-02-15T06:59:32Z +4354,949,1,2020-02-15T06:59:32Z +4355,949,1,2020-02-15T06:59:32Z +4356,949,1,2020-02-15T06:59:32Z +4357,949,2,2020-02-15T06:59:32Z +4358,949,2,2020-02-15T06:59:32Z +4359,951,1,2020-02-15T06:59:32Z +4360,951,1,2020-02-15T06:59:32Z +4361,951,1,2020-02-15T06:59:32Z +4362,951,2,2020-02-15T06:59:32Z +4363,951,2,2020-02-15T06:59:32Z +4364,951,2,2020-02-15T06:59:32Z +4365,951,2,2020-02-15T06:59:32Z +4366,952,1,2020-02-15T06:59:32Z +4367,952,1,2020-02-15T06:59:32Z +4368,952,1,2020-02-15T06:59:32Z +4369,953,1,2020-02-15T06:59:32Z +4370,953,1,2020-02-15T06:59:32Z +4371,953,1,2020-02-15T06:59:32Z +4372,953,1,2020-02-15T06:59:32Z +4373,953,2,2020-02-15T06:59:32Z +4374,953,2,2020-02-15T06:59:32Z +4375,956,1,2020-02-15T06:59:32Z +4376,956,1,2020-02-15T06:59:32Z +4377,956,1,2020-02-15T06:59:32Z +4378,956,1,2020-02-15T06:59:32Z +4379,957,1,2020-02-15T06:59:32Z +4380,957,1,2020-02-15T06:59:32Z +4381,957,1,2020-02-15T06:59:32Z +4382,957,2,2020-02-15T06:59:32Z +4383,957,2,2020-02-15T06:59:32Z +4384,958,1,2020-02-15T06:59:32Z +4385,958,1,2020-02-15T06:59:32Z +4386,958,1,2020-02-15T06:59:32Z +4387,958,2,2020-02-15T06:59:32Z +4388,958,2,2020-02-15T06:59:32Z +4389,958,2,2020-02-15T06:59:32Z +4390,959,1,2020-02-15T06:59:32Z +4391,959,1,2020-02-15T06:59:32Z +4392,960,2,2020-02-15T06:59:32Z +4393,960,2,2020-02-15T06:59:32Z +4394,960,2,2020-02-15T06:59:32Z +4395,961,1,2020-02-15T06:59:32Z +4396,961,1,2020-02-15T06:59:32Z +4397,961,1,2020-02-15T06:59:32Z +4398,961,2,2020-02-15T06:59:32Z +4399,961,2,2020-02-15T06:59:32Z +4400,962,1,2020-02-15T06:59:32Z +4401,962,1,2020-02-15T06:59:32Z +4402,962,1,2020-02-15T06:59:32Z +4403,962,1,2020-02-15T06:59:32Z +4404,963,1,2020-02-15T06:59:32Z +4405,963,1,2020-02-15T06:59:32Z +4406,963,2,2020-02-15T06:59:32Z +4407,963,2,2020-02-15T06:59:32Z +4408,963,2,2020-02-15T06:59:32Z +4409,964,1,2020-02-15T06:59:32Z +4410,964,1,2020-02-15T06:59:32Z +4411,964,1,2020-02-15T06:59:32Z +4412,964,2,2020-02-15T06:59:32Z +4413,964,2,2020-02-15T06:59:32Z +4414,965,1,2020-02-15T06:59:32Z +4415,965,1,2020-02-15T06:59:32Z +4416,966,1,2020-02-15T06:59:32Z +4417,966,1,2020-02-15T06:59:32Z +4418,966,2,2020-02-15T06:59:32Z +4419,966,2,2020-02-15T06:59:32Z +4420,966,2,2020-02-15T06:59:32Z +4421,966,2,2020-02-15T06:59:32Z +4422,967,1,2020-02-15T06:59:32Z +4423,967,1,2020-02-15T06:59:32Z +4424,967,1,2020-02-15T06:59:32Z +4425,967,2,2020-02-15T06:59:32Z +4426,967,2,2020-02-15T06:59:32Z +4427,968,1,2020-02-15T06:59:32Z +4428,968,1,2020-02-15T06:59:32Z +4429,968,1,2020-02-15T06:59:32Z +4430,969,1,2020-02-15T06:59:32Z +4431,969,1,2020-02-15T06:59:32Z +4432,969,1,2020-02-15T06:59:32Z +4433,969,1,2020-02-15T06:59:32Z +4434,970,1,2020-02-15T06:59:32Z +4435,970,1,2020-02-15T06:59:32Z +4436,970,1,2020-02-15T06:59:32Z +4437,970,2,2020-02-15T06:59:32Z +4438,970,2,2020-02-15T06:59:32Z +4439,970,2,2020-02-15T06:59:32Z +4440,970,2,2020-02-15T06:59:32Z +4441,971,1,2020-02-15T06:59:32Z +4442,971,1,2020-02-15T06:59:32Z +4443,971,1,2020-02-15T06:59:32Z +4444,971,1,2020-02-15T06:59:32Z +4445,972,1,2020-02-15T06:59:32Z +4446,972,1,2020-02-15T06:59:32Z +4447,972,1,2020-02-15T06:59:32Z +4448,972,2,2020-02-15T06:59:32Z +4449,972,2,2020-02-15T06:59:32Z +4450,972,2,2020-02-15T06:59:32Z +4451,973,1,2020-02-15T06:59:32Z +4452,973,1,2020-02-15T06:59:32Z +4453,973,1,2020-02-15T06:59:32Z +4454,973,1,2020-02-15T06:59:32Z +4455,973,2,2020-02-15T06:59:32Z +4456,973,2,2020-02-15T06:59:32Z +4457,973,2,2020-02-15T06:59:32Z +4458,973,2,2020-02-15T06:59:32Z +4459,974,1,2020-02-15T06:59:32Z +4460,974,1,2020-02-15T06:59:32Z +4461,975,1,2020-02-15T06:59:32Z +4462,975,1,2020-02-15T06:59:32Z +4463,975,2,2020-02-15T06:59:32Z +4464,975,2,2020-02-15T06:59:32Z +4465,975,2,2020-02-15T06:59:32Z +4466,976,1,2020-02-15T06:59:32Z +4467,976,1,2020-02-15T06:59:32Z +4468,976,2,2020-02-15T06:59:32Z +4469,976,2,2020-02-15T06:59:32Z +4470,976,2,2020-02-15T06:59:32Z +4471,976,2,2020-02-15T06:59:32Z +4472,977,2,2020-02-15T06:59:32Z +4473,977,2,2020-02-15T06:59:32Z +4474,977,2,2020-02-15T06:59:32Z +4475,978,1,2020-02-15T06:59:32Z +4476,978,1,2020-02-15T06:59:32Z +4477,978,1,2020-02-15T06:59:32Z +4478,979,1,2020-02-15T06:59:32Z +4479,979,1,2020-02-15T06:59:32Z +4480,979,1,2020-02-15T06:59:32Z +4481,979,1,2020-02-15T06:59:32Z +4482,979,2,2020-02-15T06:59:32Z +4483,979,2,2020-02-15T06:59:32Z +4484,979,2,2020-02-15T06:59:32Z +4485,980,1,2020-02-15T06:59:32Z +4486,980,1,2020-02-15T06:59:32Z +4487,980,1,2020-02-15T06:59:32Z +4488,980,2,2020-02-15T06:59:32Z +4489,980,2,2020-02-15T06:59:32Z +4490,981,1,2020-02-15T06:59:32Z +4491,981,1,2020-02-15T06:59:32Z +4492,981,1,2020-02-15T06:59:32Z +4493,981,2,2020-02-15T06:59:32Z +4494,981,2,2020-02-15T06:59:32Z +4495,981,2,2020-02-15T06:59:32Z +4496,982,1,2020-02-15T06:59:32Z +4497,982,1,2020-02-15T06:59:32Z +4498,982,1,2020-02-15T06:59:32Z +4499,982,2,2020-02-15T06:59:32Z +4500,982,2,2020-02-15T06:59:32Z +4501,982,2,2020-02-15T06:59:32Z +4502,982,2,2020-02-15T06:59:32Z +4503,983,1,2020-02-15T06:59:32Z +4504,983,1,2020-02-15T06:59:32Z +4505,983,1,2020-02-15T06:59:32Z +4506,984,1,2020-02-15T06:59:32Z +4507,984,1,2020-02-15T06:59:32Z +4508,985,1,2020-02-15T06:59:32Z +4509,985,1,2020-02-15T06:59:32Z +4510,985,1,2020-02-15T06:59:32Z +4511,985,1,2020-02-15T06:59:32Z +4512,985,2,2020-02-15T06:59:32Z +4513,985,2,2020-02-15T06:59:32Z +4514,985,2,2020-02-15T06:59:32Z +4515,986,1,2020-02-15T06:59:32Z +4516,986,1,2020-02-15T06:59:32Z +4517,986,1,2020-02-15T06:59:32Z +4518,986,1,2020-02-15T06:59:32Z +4519,986,2,2020-02-15T06:59:32Z +4520,986,2,2020-02-15T06:59:32Z +4521,987,1,2020-02-15T06:59:32Z +4522,987,1,2020-02-15T06:59:32Z +4523,987,2,2020-02-15T06:59:32Z +4524,987,2,2020-02-15T06:59:32Z +4525,988,1,2020-02-15T06:59:32Z +4526,988,1,2020-02-15T06:59:32Z +4527,988,1,2020-02-15T06:59:32Z +4528,988,2,2020-02-15T06:59:32Z +4529,988,2,2020-02-15T06:59:32Z +4530,989,1,2020-02-15T06:59:32Z +4531,989,1,2020-02-15T06:59:32Z +4532,989,1,2020-02-15T06:59:32Z +4533,989,1,2020-02-15T06:59:32Z +4534,989,2,2020-02-15T06:59:32Z +4535,989,2,2020-02-15T06:59:32Z +4536,990,2,2020-02-15T06:59:32Z +4537,990,2,2020-02-15T06:59:32Z +4538,991,1,2020-02-15T06:59:32Z +4539,991,1,2020-02-15T06:59:32Z +4540,991,2,2020-02-15T06:59:32Z +4541,991,2,2020-02-15T06:59:32Z +4542,991,2,2020-02-15T06:59:32Z +4543,992,2,2020-02-15T06:59:32Z +4544,992,2,2020-02-15T06:59:32Z +4545,992,2,2020-02-15T06:59:32Z +4546,992,2,2020-02-15T06:59:32Z +4547,993,1,2020-02-15T06:59:32Z +4548,993,1,2020-02-15T06:59:32Z +4549,993,1,2020-02-15T06:59:32Z +4550,993,1,2020-02-15T06:59:32Z +4551,993,2,2020-02-15T06:59:32Z +4552,993,2,2020-02-15T06:59:32Z +4553,993,2,2020-02-15T06:59:32Z +4554,994,1,2020-02-15T06:59:32Z +4555,994,1,2020-02-15T06:59:32Z +4556,994,1,2020-02-15T06:59:32Z +4557,995,1,2020-02-15T06:59:32Z +4558,995,1,2020-02-15T06:59:32Z +4559,995,1,2020-02-15T06:59:32Z +4560,995,1,2020-02-15T06:59:32Z +4561,995,2,2020-02-15T06:59:32Z +4562,995,2,2020-02-15T06:59:32Z +4563,996,1,2020-02-15T06:59:32Z +4564,996,1,2020-02-15T06:59:32Z +4565,997,1,2020-02-15T06:59:32Z +4566,997,1,2020-02-15T06:59:32Z +4567,998,2,2020-02-15T06:59:32Z +4568,998,2,2020-02-15T06:59:32Z +4569,999,1,2020-02-15T06:59:32Z +4570,999,1,2020-02-15T06:59:32Z +4571,999,2,2020-02-15T06:59:32Z +4572,999,2,2020-02-15T06:59:32Z +4573,999,2,2020-02-15T06:59:32Z +4574,1000,1,2020-02-15T06:59:32Z +4575,1000,1,2020-02-15T06:59:32Z +4576,1000,1,2020-02-15T06:59:32Z +4577,1000,1,2020-02-15T06:59:32Z +4578,1000,2,2020-02-15T06:59:32Z +4579,1000,2,2020-02-15T06:59:32Z +4580,1000,2,2020-02-15T06:59:32Z +4581,1000,2,2020-02-15T06:59:32Z diff --git a/drivers/csv/testdata/sakila-csv/language.csv b/drivers/csv/testdata/sakila-csv/language.csv new file mode 100644 index 00000000..70045841 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/language.csv @@ -0,0 +1,7 @@ +language_id,name,last_update +1,English,2020-02-15T06:59:27Z +2,Italian,2020-02-15T06:59:27Z +3,Japanese,2020-02-15T06:59:27Z +4,Mandarin,2020-02-15T06:59:27Z +5,French,2020-02-15T06:59:27Z +6,German,2020-02-15T06:59:27Z diff --git a/drivers/csv/testdata/sakila-csv/payment.csv b/drivers/csv/testdata/sakila-csv/payment.csv new file mode 100644 index 00000000..dd188cb7 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/payment.csv @@ -0,0 +1,16050 @@ +payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update +1,1,1,76,2.99,2005-05-25T11:30:37Z,2020-02-15T06:59:47Z +2,1,1,573,0.99,2005-05-28T10:35:23Z,2020-02-15T06:59:47Z +3,1,1,1185,5.99,2005-06-15T00:54:12Z,2020-02-15T06:59:47Z +4,1,2,1422,0.99,2005-06-15T18:02:53Z,2020-02-15T06:59:47Z +5,1,2,1476,9.99,2005-06-15T21:08:46Z,2020-02-15T06:59:47Z +6,1,1,1725,4.99,2005-06-16T15:18:57Z,2020-02-15T06:59:47Z +7,1,1,2308,4.99,2005-06-18T08:41:48Z,2020-02-15T06:59:47Z +8,1,2,2363,0.99,2005-06-18T13:33:59Z,2020-02-15T06:59:47Z +9,1,1,3284,3.99,2005-06-21T06:24:45Z,2020-02-15T06:59:47Z +10,1,2,4526,5.99,2005-07-08T03:17:05Z,2020-02-15T06:59:47Z +11,1,1,4611,5.99,2005-07-08T07:33:56Z,2020-02-15T06:59:47Z +12,1,1,5244,4.99,2005-07-09T13:24:07Z,2020-02-15T06:59:47Z +13,1,1,5326,4.99,2005-07-09T16:38:01Z,2020-02-15T06:59:47Z +14,1,1,6163,7.99,2005-07-11T10:13:46Z,2020-02-15T06:59:47Z +15,1,2,7273,2.99,2005-07-27T11:31:22Z,2020-02-15T06:59:47Z +16,1,1,7841,4.99,2005-07-28T09:04:45Z,2020-02-15T06:59:47Z +17,1,2,8033,4.99,2005-07-28T16:18:23Z,2020-02-15T06:59:47Z +18,1,1,8074,0.99,2005-07-28T17:33:39Z,2020-02-15T06:59:47Z +19,1,2,8116,0.99,2005-07-28T19:20:07Z,2020-02-15T06:59:47Z +20,1,2,8326,2.99,2005-07-29T03:58:49Z,2020-02-15T06:59:47Z +21,1,2,9571,2.99,2005-07-31T02:42:18Z,2020-02-15T06:59:47Z +22,1,2,10437,4.99,2005-08-01T08:51:04Z,2020-02-15T06:59:47Z +23,1,2,11299,3.99,2005-08-02T15:36:52Z,2020-02-15T06:59:47Z +24,1,1,11367,0.99,2005-08-02T18:01:38Z,2020-02-15T06:59:47Z +25,1,2,11824,4.99,2005-08-17T12:37:54Z,2020-02-15T06:59:47Z +26,1,1,12250,0.99,2005-08-18T03:57:29Z,2020-02-15T06:59:47Z +27,1,2,13068,0.99,2005-08-19T09:55:16Z,2020-02-15T06:59:47Z +28,1,2,13176,2.99,2005-08-19T13:56:54Z,2020-02-15T06:59:47Z +29,1,1,14762,0.99,2005-08-21T23:33:57Z,2020-02-15T06:59:47Z +30,1,1,14825,1.99,2005-08-22T01:27:57Z,2020-02-15T06:59:47Z +31,1,2,15298,2.99,2005-08-22T19:41:37Z,2020-02-15T06:59:47Z +32,1,1,15315,5.99,2005-08-22T20:03:46Z,2020-02-15T06:59:47Z +33,2,1,320,4.99,2005-05-27T00:09:24Z,2020-02-15T06:59:47Z +34,2,1,2128,2.99,2005-06-17T20:54:58Z,2020-02-15T06:59:47Z +35,2,1,5636,2.99,2005-07-10T06:31:24Z,2020-02-15T06:59:47Z +36,2,1,5755,6.99,2005-07-10T12:38:56Z,2020-02-15T06:59:47Z +37,2,2,7346,4.99,2005-07-27T14:30:42Z,2020-02-15T06:59:47Z +38,2,1,7376,5.99,2005-07-27T15:23:02Z,2020-02-15T06:59:47Z +39,2,2,7459,5.99,2005-07-27T18:40:20Z,2020-02-15T06:59:47Z +40,2,2,8230,5.99,2005-07-29T00:12:59Z,2020-02-15T06:59:47Z +41,2,1,8598,2.99,2005-07-29T12:56:59Z,2020-02-15T06:59:47Z +42,2,2,8705,5.99,2005-07-29T17:14:29Z,2020-02-15T06:59:47Z +43,2,1,9031,4.99,2005-07-30T06:06:10Z,2020-02-15T06:59:47Z +44,2,2,9236,10.99,2005-07-30T13:47:43Z,2020-02-15T06:59:47Z +45,2,2,9248,0.99,2005-07-30T14:14:11Z,2020-02-15T06:59:47Z +46,2,2,9296,6.99,2005-07-30T16:21:13Z,2020-02-15T06:59:47Z +47,2,2,9465,6.99,2005-07-30T22:39:53Z,2020-02-15T06:59:47Z +48,2,1,10136,2.99,2005-07-31T21:58:56Z,2020-02-15T06:59:47Z +49,2,1,10466,0.99,2005-08-01T09:45:26Z,2020-02-15T06:59:47Z +50,2,1,10918,0.99,2005-08-02T02:10:56Z,2020-02-15T06:59:47Z +51,2,1,11087,5.99,2005-08-02T07:41:41Z,2020-02-15T06:59:47Z +52,2,1,11177,6.99,2005-08-02T10:43:48Z,2020-02-15T06:59:47Z +53,2,2,11256,2.99,2005-08-02T13:44:53Z,2020-02-15T06:59:47Z +54,2,1,11614,2.99,2005-08-17T03:52:18Z,2020-02-15T06:59:47Z +55,2,1,12963,2.99,2005-08-19T06:26:04Z,2020-02-15T06:59:47Z +56,2,1,14475,4.99,2005-08-21T13:24:32Z,2020-02-15T06:59:47Z +57,2,2,14743,5.99,2005-08-21T22:41:56Z,2020-02-15T06:59:47Z +58,2,2,15145,4.99,2005-08-22T13:53:04Z,2020-02-15T06:59:47Z +59,2,2,15907,4.99,2005-08-23T17:39:35Z,2020-02-15T06:59:47Z +60,3,1,435,1.99,2005-05-27T17:17:09Z,2020-02-15T06:59:47Z +61,3,1,830,2.99,2005-05-29T22:43:55Z,2020-02-15T06:59:47Z +62,3,1,1546,8.99,2005-06-16T01:34:05Z,2020-02-15T06:59:47Z +63,3,1,1726,6.99,2005-06-16T15:19:10Z,2020-02-15T06:59:47Z +64,3,2,1911,6.99,2005-06-17T05:15:15Z,2020-02-15T06:59:47Z +65,3,1,2628,2.99,2005-06-19T08:34:53Z,2020-02-15T06:59:47Z +66,3,1,4180,4.99,2005-07-07T10:23:25Z,2020-02-15T06:59:47Z +67,3,1,4725,4.99,2005-07-08T12:47:11Z,2020-02-15T06:59:47Z +68,3,1,7096,5.99,2005-07-27T04:54:42Z,2020-02-15T06:59:47Z +69,3,2,7503,10.99,2005-07-27T20:23:12Z,2020-02-15T06:59:47Z +70,3,2,7703,7.99,2005-07-28T03:59:21Z,2020-02-15T06:59:47Z +71,3,2,7724,6.99,2005-07-28T04:46:30Z,2020-02-15T06:59:47Z +72,3,1,7911,4.99,2005-07-28T11:46:45Z,2020-02-15T06:59:47Z +73,3,2,8086,4.99,2005-07-28T18:17:14Z,2020-02-15T06:59:47Z +74,3,1,8545,2.99,2005-07-29T11:07:04Z,2020-02-15T06:59:47Z +75,3,1,9226,1.99,2005-07-30T13:31:20Z,2020-02-15T06:59:47Z +76,3,2,9443,3.99,2005-07-30T21:45:46Z,2020-02-15T06:59:47Z +77,3,1,9595,2.99,2005-07-31T03:27:58Z,2020-02-15T06:59:47Z +78,3,2,9816,4.99,2005-07-31T11:32:58Z,2020-02-15T06:59:47Z +79,3,2,10597,5.99,2005-08-01T14:19:48Z,2020-02-15T06:59:47Z +80,3,2,12556,4.99,2005-08-18T14:49:55Z,2020-02-15T06:59:47Z +81,3,1,13403,8.99,2005-08-19T22:18:07Z,2020-02-15T06:59:47Z +82,3,2,13610,2.99,2005-08-20T06:14:12Z,2020-02-15T06:59:47Z +83,3,2,14699,8.99,2005-08-21T20:50:48Z,2020-02-15T06:59:47Z +84,3,2,15038,0.99,2005-08-22T09:37:27Z,2020-02-15T06:59:47Z +85,3,1,15619,2.99,2005-08-23T07:10:14Z,2020-02-15T06:59:47Z +86,4,1,1297,4.99,2005-06-15T09:31:28Z,2020-02-15T06:59:47Z +87,4,1,1633,0.99,2005-06-16T08:08:40Z,2020-02-15T06:59:47Z +88,4,2,1707,2.99,2005-06-16T14:01:27Z,2020-02-15T06:59:47Z +89,4,2,1735,0.99,2005-06-16T15:51:52Z,2020-02-15T06:59:47Z +90,4,2,2043,0.99,2005-06-17T14:31:12Z,2020-02-15T06:59:47Z +91,4,1,2642,5.99,2005-06-19T09:39:01Z,2020-02-15T06:59:47Z +92,4,1,7660,2.99,2005-07-28T02:10:10Z,2020-02-15T06:59:47Z +93,4,2,7718,2.99,2005-07-28T04:37:59Z,2020-02-15T06:59:47Z +94,4,1,8741,3.99,2005-07-29T18:44:57Z,2020-02-15T06:59:47Z +95,4,1,9100,5.99,2005-07-30T08:46:09Z,2020-02-15T06:59:47Z +96,4,1,9371,5.99,2005-07-30T18:58:00Z,2020-02-15T06:59:47Z +97,4,2,11069,0.99,2005-08-02T07:09:34Z,2020-02-15T06:59:47Z +98,4,1,11110,2.99,2005-08-02T08:20:31Z,2020-02-15T06:59:47Z +99,4,2,11529,4.99,2005-08-17T00:28:01Z,2020-02-15T06:59:47Z +100,4,1,12151,2.99,2005-08-18T00:14:03Z,2020-02-15T06:59:47Z +101,4,2,12294,8.99,2005-08-18T05:14:44Z,2020-02-15T06:59:47Z +102,4,2,12856,1.99,2005-08-19T02:19:13Z,2020-02-15T06:59:47Z +103,4,1,13704,2.99,2005-08-20T09:32:04Z,2020-02-15T06:59:47Z +104,4,1,13807,6.99,2005-08-20T12:55:40Z,2020-02-15T06:59:47Z +105,4,2,14225,4.99,2005-08-21T04:53:37Z,2020-02-15T06:59:47Z +106,4,1,15147,2.99,2005-08-22T13:58:23Z,2020-02-15T06:59:47Z +107,4,2,15635,1.99,2005-08-23T07:43:00Z,2020-02-15T06:59:47Z +108,5,1,731,0.99,2005-05-29T07:25:16Z,2020-02-15T06:59:47Z +109,5,1,1085,6.99,2005-05-31T11:15:43Z,2020-02-15T06:59:47Z +110,5,1,1142,1.99,2005-05-31T19:46:38Z,2020-02-15T06:59:47Z +111,5,1,1502,3.99,2005-06-15T22:03:14Z,2020-02-15T06:59:47Z +112,5,2,1631,2.99,2005-06-16T08:01:02Z,2020-02-15T06:59:47Z +113,5,2,2063,4.99,2005-06-17T15:56:53Z,2020-02-15T06:59:47Z +114,5,2,2570,2.99,2005-06-19T04:20:13Z,2020-02-15T06:59:47Z +115,5,2,3126,4.99,2005-06-20T18:38:22Z,2020-02-15T06:59:47Z +116,5,2,3677,4.99,2005-07-06T09:11:58Z,2020-02-15T06:59:47Z +117,5,2,4889,2.99,2005-07-08T20:04:43Z,2020-02-15T06:59:47Z +118,5,1,5016,4.99,2005-07-09T01:57:57Z,2020-02-15T06:59:47Z +119,5,2,5118,5.99,2005-07-09T07:13:52Z,2020-02-15T06:59:47Z +120,5,2,5156,1.99,2005-07-09T08:51:42Z,2020-02-15T06:59:47Z +121,5,2,5721,0.99,2005-07-10T11:09:35Z,2020-02-15T06:59:47Z +122,5,1,6042,8.99,2005-07-11T03:17:04Z,2020-02-15T06:59:47Z +123,5,1,6663,3.99,2005-07-12T11:27:35Z,2020-02-15T06:59:47Z +124,5,2,6685,4.99,2005-07-12T12:16:28Z,2020-02-15T06:59:47Z +125,5,2,7293,0.99,2005-07-27T12:37:28Z,2020-02-15T06:59:47Z +126,5,2,7652,0.99,2005-07-28T01:50:29Z,2020-02-15T06:59:47Z +127,5,2,7829,3.99,2005-07-28T08:43:39Z,2020-02-15T06:59:47Z +128,5,1,8263,2.99,2005-07-29T01:11:23Z,2020-02-15T06:59:47Z +129,5,1,8978,1.99,2005-07-30T04:14:28Z,2020-02-15T06:59:47Z +130,5,1,9493,4.99,2005-07-30T23:52:30Z,2020-02-15T06:59:47Z +131,5,1,9888,3.99,2005-07-31T14:00:53Z,2020-02-15T06:59:47Z +132,5,2,10609,4.99,2005-08-01T14:48:45Z,2020-02-15T06:59:47Z +133,5,1,10625,0.99,2005-08-01T15:27:10Z,2020-02-15T06:59:47Z +134,5,2,11001,4.99,2005-08-02T04:56:45Z,2020-02-15T06:59:47Z +135,5,1,11179,4.99,2005-08-02T10:50:06Z,2020-02-15T06:59:47Z +136,5,2,11930,3.99,2005-08-17T16:28:53Z,2020-02-15T06:59:47Z +137,5,1,12145,9.99,2005-08-18T00:10:04Z,2020-02-15T06:59:47Z +138,5,1,12797,2.99,2005-08-19T00:24:08Z,2020-02-15T06:59:47Z +139,5,1,13063,1.99,2005-08-19T09:45:41Z,2020-02-15T06:59:47Z +140,5,2,13877,0.99,2005-08-20T15:16:18Z,2020-02-15T06:59:47Z +141,5,2,14053,6.99,2005-08-20T22:13:59Z,2020-02-15T06:59:47Z +142,5,1,14430,6.99,2005-08-21T11:31:11Z,2020-02-15T06:59:47Z +143,5,2,14494,2.99,2005-08-21T14:02:50Z,2020-02-15T06:59:47Z +144,5,2,15232,0.99,2005-08-22T17:37:02Z,2020-02-15T06:59:47Z +145,5,2,13209,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +146,6,2,57,4.99,2005-05-25T08:43:32Z,2020-02-15T06:59:47Z +147,6,1,577,2.99,2005-05-28T11:09:14Z,2020-02-15T06:59:47Z +148,6,2,916,0.99,2005-05-30T11:25:01Z,2020-02-15T06:59:47Z +149,6,1,1575,3.99,2005-06-16T03:41:38Z,2020-02-15T06:59:47Z +150,6,2,1841,2.99,2005-06-16T23:44:13Z,2020-02-15T06:59:47Z +151,6,1,1966,0.99,2005-06-17T09:19:45Z,2020-02-15T06:59:47Z +152,6,1,2345,0.99,2005-06-18T12:03:23Z,2020-02-15T06:59:47Z +153,6,2,3983,0.99,2005-07-06T23:14:21Z,2020-02-15T06:59:47Z +154,6,2,4278,2.99,2005-07-07T14:53:24Z,2020-02-15T06:59:47Z +155,6,1,5553,0.99,2005-07-10T03:03:35Z,2020-02-15T06:59:47Z +156,6,2,6211,5.99,2005-07-11T12:39:01Z,2020-02-15T06:59:47Z +157,6,1,6248,7.99,2005-07-11T15:01:54Z,2020-02-15T06:59:47Z +158,6,2,6686,0.99,2005-07-12T12:18:38Z,2020-02-15T06:59:47Z +159,6,2,7099,2.99,2005-07-27T05:03:44Z,2020-02-15T06:59:47Z +160,6,2,7136,2.99,2005-07-27T06:38:25Z,2020-02-15T06:59:47Z +161,6,1,8101,0.99,2005-07-28T18:47:23Z,2020-02-15T06:59:47Z +162,6,1,10271,2.99,2005-08-01T03:13:39Z,2020-02-15T06:59:47Z +163,6,1,11023,2.99,2005-08-02T05:36:38Z,2020-02-15T06:59:47Z +164,6,1,11398,3.99,2005-08-02T18:55:15Z,2020-02-15T06:59:47Z +165,6,1,11591,6.99,2005-08-17T02:29:41Z,2020-02-15T06:59:47Z +166,6,1,11727,0.99,2005-08-17T08:12:20Z,2020-02-15T06:59:47Z +167,6,1,11853,0.99,2005-08-17T13:39:32Z,2020-02-15T06:59:47Z +168,6,2,12254,2.99,2005-08-18T04:05:29Z,2020-02-15T06:59:47Z +169,6,2,13451,6.99,2005-08-20T00:18:25Z,2020-02-15T06:59:47Z +170,6,1,14329,7.99,2005-08-21T08:22:56Z,2020-02-15T06:59:47Z +171,6,1,14377,4.99,2005-08-21T09:49:28Z,2020-02-15T06:59:47Z +172,6,1,15509,5.99,2005-08-23T02:51:24Z,2020-02-15T06:59:47Z +173,6,2,15603,0.99,2005-08-23T06:41:32Z,2020-02-15T06:59:47Z +174,7,2,46,5.99,2005-05-25T06:04:08Z,2020-02-15T06:59:47Z +175,7,2,117,0.99,2005-05-25T19:30:46Z,2020-02-15T06:59:47Z +176,7,2,748,2.99,2005-05-29T09:27:00Z,2020-02-15T06:59:47Z +177,7,1,975,4.99,2005-05-30T21:07:15Z,2020-02-15T06:59:47Z +178,7,1,1063,5.99,2005-05-31T08:44:29Z,2020-02-15T06:59:47Z +179,7,2,1810,0.99,2005-06-16T21:06:00Z,2020-02-15T06:59:47Z +180,7,1,2250,2.99,2005-06-18T05:03:36Z,2020-02-15T06:59:47Z +181,7,1,2709,0.99,2005-06-19T14:00:26Z,2020-02-15T06:59:47Z +182,7,1,2888,4.99,2005-06-20T01:50:56Z,2020-02-15T06:59:47Z +183,7,1,3007,0.99,2005-06-20T10:11:53Z,2020-02-15T06:59:47Z +184,7,2,3639,5.99,2005-07-06T07:09:17Z,2020-02-15T06:59:47Z +185,7,2,4238,2.99,2005-07-07T13:22:20Z,2020-02-15T06:59:47Z +186,7,2,4787,5.99,2005-07-08T16:16:04Z,2020-02-15T06:59:47Z +187,7,1,4856,4.99,2005-07-08T18:47:38Z,2020-02-15T06:59:47Z +188,7,1,5441,8.99,2005-07-09T21:52:05Z,2020-02-15T06:59:47Z +189,7,1,5921,7.99,2005-07-10T21:35:12Z,2020-02-15T06:59:47Z +190,7,1,6174,1.99,2005-07-11T10:36:28Z,2020-02-15T06:59:47Z +191,7,1,6295,2.99,2005-07-11T17:30:58Z,2020-02-15T06:59:47Z +192,7,2,6761,3.99,2005-07-12T15:17:42Z,2020-02-15T06:59:47Z +193,7,2,8422,5.99,2005-07-29T07:02:55Z,2020-02-15T06:59:47Z +194,7,2,9624,7.99,2005-07-31T04:30:03Z,2020-02-15T06:59:47Z +195,7,2,10330,6.99,2005-08-01T04:57:04Z,2020-02-15T06:59:47Z +196,7,1,10423,5.99,2005-08-01T08:19:53Z,2020-02-15T06:59:47Z +197,7,1,10514,4.99,2005-08-01T11:39:26Z,2020-02-15T06:59:47Z +198,7,2,10644,4.99,2005-08-01T15:52:00Z,2020-02-15T06:59:47Z +199,7,2,10989,3.99,2005-08-02T04:40:54Z,2020-02-15T06:59:47Z +200,7,2,11542,7.99,2005-08-17T00:51:32Z,2020-02-15T06:59:47Z +201,7,1,12367,8.99,2005-08-18T07:57:14Z,2020-02-15T06:59:47Z +202,7,1,12730,2.99,2005-08-18T21:55:01Z,2020-02-15T06:59:47Z +203,7,2,13373,2.99,2005-08-19T21:23:31Z,2020-02-15T06:59:47Z +204,7,1,13476,2.99,2005-08-20T01:06:04Z,2020-02-15T06:59:47Z +205,7,1,13594,0.99,2005-08-20T05:53:31Z,2020-02-15T06:59:47Z +206,7,1,14222,5.99,2005-08-21T04:49:48Z,2020-02-15T06:59:47Z +207,8,2,866,6.99,2005-05-30T03:43:54Z,2020-02-15T06:59:47Z +208,8,2,1305,2.99,2005-06-15T09:59:16Z,2020-02-15T06:59:47Z +209,8,1,2095,5.99,2005-06-17T18:21:35Z,2020-02-15T06:59:47Z +210,8,2,3114,4.99,2005-06-20T17:57:47Z,2020-02-15T06:59:47Z +211,8,1,3475,5.99,2005-07-05T23:01:21Z,2020-02-15T06:59:47Z +212,8,1,4003,0.99,2005-07-07T00:09:02Z,2020-02-15T06:59:47Z +213,8,2,4175,2.99,2005-07-07T10:02:03Z,2020-02-15T06:59:47Z +214,8,2,4409,3.99,2005-07-07T21:47:29Z,2020-02-15T06:59:47Z +215,8,1,4503,3.99,2005-07-08T02:17:12Z,2020-02-15T06:59:47Z +216,8,1,5300,2.99,2005-07-09T15:40:46Z,2020-02-15T06:59:47Z +217,8,2,5341,2.99,2005-07-09T17:13:23Z,2020-02-15T06:59:47Z +218,8,1,6375,4.99,2005-07-11T21:39:46Z,2020-02-15T06:59:47Z +219,8,1,6647,0.99,2005-07-12T10:43:53Z,2020-02-15T06:59:47Z +220,8,1,8809,1.99,2005-07-29T21:42:49Z,2020-02-15T06:59:47Z +221,8,2,9629,2.99,2005-07-31T04:54:43Z,2020-02-15T06:59:47Z +222,8,2,10141,0.99,2005-07-31T22:08:29Z,2020-02-15T06:59:47Z +223,8,2,10561,2.99,2005-08-01T13:05:35Z,2020-02-15T06:59:47Z +224,8,1,11232,9.99,2005-08-02T13:04:12Z,2020-02-15T06:59:47Z +225,8,2,11284,2.99,2005-08-02T14:42:45Z,2020-02-15T06:59:47Z +226,8,1,12613,2.99,2005-08-18T17:16:01Z,2020-02-15T06:59:47Z +227,8,1,14114,0.99,2005-08-21T01:07:11Z,2020-02-15T06:59:47Z +228,8,1,15374,7.99,2005-08-22T22:09:09Z,2020-02-15T06:59:47Z +229,8,1,15764,2.99,2005-08-23T13:05:10Z,2020-02-15T06:59:47Z +230,8,1,15805,4.99,2005-08-23T14:31:19Z,2020-02-15T06:59:47Z +231,9,2,350,4.99,2005-05-27T05:01:28Z,2020-02-15T06:59:47Z +232,9,2,877,0.99,2005-05-30T05:48:59Z,2020-02-15T06:59:47Z +233,9,2,1075,4.99,2005-05-31T10:13:34Z,2020-02-15T06:59:47Z +234,9,2,3142,7.99,2005-06-20T19:59:28Z,2020-02-15T06:59:47Z +235,9,2,3262,4.99,2005-06-21T04:08:43Z,2020-02-15T06:59:47Z +236,9,1,4454,2.99,2005-07-07T23:37:00Z,2020-02-15T06:59:47Z +237,9,2,4748,0.99,2005-07-08T13:59:38Z,2020-02-15T06:59:47Z +238,9,1,4796,1.99,2005-07-08T16:35:44Z,2020-02-15T06:59:47Z +239,9,1,5659,2.99,2005-07-10T07:45:40Z,2020-02-15T06:59:47Z +240,9,2,6019,4.99,2005-07-11T02:08:29Z,2020-02-15T06:59:47Z +241,9,1,6165,5.99,2005-07-11T10:17:29Z,2020-02-15T06:59:47Z +242,9,2,7616,0.99,2005-07-28T00:15:26Z,2020-02-15T06:59:47Z +243,9,1,7801,2.99,2005-07-28T07:51:56Z,2020-02-15T06:59:47Z +244,9,1,9043,4.99,2005-07-30T06:34:07Z,2020-02-15T06:59:47Z +245,9,1,10451,0.99,2005-08-01T09:11:25Z,2020-02-15T06:59:47Z +246,9,1,10454,4.99,2005-08-01T09:14:00Z,2020-02-15T06:59:47Z +247,9,2,11400,5.99,2005-08-02T19:00:52Z,2020-02-15T06:59:47Z +248,9,1,11556,0.99,2005-08-17T01:11:53Z,2020-02-15T06:59:47Z +249,9,1,12228,2.99,2005-08-18T03:08:10Z,2020-02-15T06:59:47Z +250,9,1,12309,2.99,2005-08-18T05:58:40Z,2020-02-15T06:59:47Z +251,9,2,12652,4.99,2005-08-18T18:48:58Z,2020-02-15T06:59:47Z +252,9,2,14489,7.99,2005-08-21T13:53:59Z,2020-02-15T06:59:47Z +253,9,1,15813,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +254,10,2,1140,4.99,2005-05-31T19:36:30Z,2020-02-15T06:59:47Z +255,10,1,1801,4.99,2005-06-16T20:21:53Z,2020-02-15T06:59:47Z +256,10,1,1995,4.99,2005-06-17T11:11:14Z,2020-02-15T06:59:47Z +257,10,2,2222,3.99,2005-06-18T03:26:23Z,2020-02-15T06:59:47Z +258,10,1,2814,0.99,2005-06-19T20:01:59Z,2020-02-15T06:59:47Z +259,10,1,2865,0.99,2005-06-20T00:00:55Z,2020-02-15T06:59:47Z +260,10,2,3790,3.99,2005-07-06T14:13:45Z,2020-02-15T06:59:47Z +261,10,2,4042,4.99,2005-07-07T03:06:40Z,2020-02-15T06:59:47Z +262,10,1,4255,1.99,2005-07-07T14:14:13Z,2020-02-15T06:59:47Z +263,10,1,5038,7.99,2005-07-09T03:12:52Z,2020-02-15T06:59:47Z +264,10,2,5068,2.99,2005-07-09T04:53:18Z,2020-02-15T06:59:47Z +265,10,1,5444,0.99,2005-07-09T21:58:57Z,2020-02-15T06:59:47Z +266,10,1,5905,2.99,2005-07-10T20:41:09Z,2020-02-15T06:59:47Z +267,10,1,7738,2.99,2005-07-28T05:21:42Z,2020-02-15T06:59:47Z +268,10,2,8001,6.99,2005-07-28T15:10:55Z,2020-02-15T06:59:47Z +269,10,2,8188,4.99,2005-07-28T22:34:12Z,2020-02-15T06:59:47Z +270,10,1,9935,4.99,2005-07-31T15:27:07Z,2020-02-15T06:59:47Z +271,10,2,10671,8.99,2005-08-01T17:09:59Z,2020-02-15T06:59:47Z +272,10,2,11289,2.99,2005-08-02T14:55:00Z,2020-02-15T06:59:47Z +273,10,1,11405,0.99,2005-08-02T19:13:39Z,2020-02-15T06:59:47Z +274,10,2,12031,2.99,2005-08-17T20:11:35Z,2020-02-15T06:59:47Z +275,10,2,12400,2.99,2005-08-18T09:19:12Z,2020-02-15T06:59:47Z +276,10,2,13316,4.99,2005-08-19T19:23:30Z,2020-02-15T06:59:47Z +277,10,2,13917,2.99,2005-08-20T16:43:28Z,2020-02-15T06:59:47Z +278,10,1,15370,5.99,2005-08-22T21:59:29Z,2020-02-15T06:59:47Z +279,11,1,987,6.99,2005-05-30T22:59:12Z,2020-02-15T06:59:47Z +280,11,1,1470,6.99,2005-06-15T20:53:07Z,2020-02-15T06:59:47Z +281,11,1,1939,7.99,2005-06-17T07:26:45Z,2020-02-15T06:59:47Z +282,11,1,3192,0.99,2005-06-20T23:49:12Z,2020-02-15T06:59:47Z +283,11,2,4608,2.99,2005-07-08T07:19:11Z,2020-02-15T06:59:47Z +284,11,1,4943,4.99,2005-07-08T22:43:05Z,2020-02-15T06:59:47Z +285,11,2,5835,5.99,2005-07-10T16:44:58Z,2020-02-15T06:59:47Z +286,11,2,6146,6.99,2005-07-11T09:09:59Z,2020-02-15T06:59:47Z +287,11,1,7314,4.99,2005-07-27T13:13:32Z,2020-02-15T06:59:47Z +288,11,1,8014,4.99,2005-07-28T15:32:07Z,2020-02-15T06:59:47Z +289,11,2,8100,2.99,2005-07-28T18:43:11Z,2020-02-15T06:59:47Z +290,11,2,8447,1.99,2005-07-29T07:38:14Z,2020-02-15T06:59:47Z +291,11,1,8715,0.99,2005-07-29T17:33:45Z,2020-02-15T06:59:47Z +292,11,1,8950,9.99,2005-07-30T03:17:13Z,2020-02-15T06:59:47Z +293,11,2,9292,6.99,2005-07-30T16:08:21Z,2020-02-15T06:59:47Z +294,11,1,10812,4.99,2005-08-01T22:41:16Z,2020-02-15T06:59:47Z +295,11,2,11166,6.99,2005-08-02T10:14:58Z,2020-02-15T06:59:47Z +296,11,2,11502,0.99,2005-08-16T23:06:30Z,2020-02-15T06:59:47Z +297,11,2,12015,5.99,2005-08-17T19:32:44Z,2020-02-15T06:59:47Z +298,11,2,13572,0.99,2005-08-20T05:07:27Z,2020-02-15T06:59:47Z +299,11,1,13790,4.99,2005-08-20T12:17:27Z,2020-02-15T06:59:47Z +300,11,1,15120,0.99,2005-08-22T12:42:47Z,2020-02-15T06:59:47Z +301,11,2,15240,2.99,2005-08-22T17:46:41Z,2020-02-15T06:59:47Z +302,11,1,11646,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +303,12,1,988,4.99,2005-05-30T23:08:03Z,2020-02-15T06:59:47Z +304,12,1,1084,4.99,2005-05-31T11:10:17Z,2020-02-15T06:59:47Z +305,12,2,1752,5.99,2005-06-16T17:02:55Z,2020-02-15T06:59:47Z +306,12,2,2434,5.99,2005-06-18T18:11:51Z,2020-02-15T06:59:47Z +307,12,2,2500,5.99,2005-06-18T23:07:12Z,2020-02-15T06:59:47Z +308,12,2,2623,4.99,2005-06-19T08:11:51Z,2020-02-15T06:59:47Z +309,12,2,3135,2.99,2005-06-20T19:33:52Z,2020-02-15T06:59:47Z +310,12,1,3411,0.99,2005-06-21T16:31:27Z,2020-02-15T06:59:47Z +311,12,1,3870,3.99,2005-07-06T17:57:54Z,2020-02-15T06:59:47Z +312,12,1,5071,0.99,2005-07-09T05:00:39Z,2020-02-15T06:59:47Z +313,12,1,5074,0.99,2005-07-09T05:06:24Z,2020-02-15T06:59:47Z +314,12,2,5111,0.99,2005-07-09T07:02:19Z,2020-02-15T06:59:47Z +315,12,2,5242,3.99,2005-07-09T13:20:25Z,2020-02-15T06:59:47Z +316,12,1,6773,2.99,2005-07-12T15:55:39Z,2020-02-15T06:59:47Z +317,12,2,7008,0.99,2005-07-27T01:44:03Z,2020-02-15T06:59:47Z +318,12,2,7279,0.99,2005-07-27T11:50:47Z,2020-02-15T06:59:47Z +319,12,2,8985,0.99,2005-07-30T04:34:51Z,2020-02-15T06:59:47Z +320,12,2,9166,4.99,2005-07-30T11:26:28Z,2020-02-15T06:59:47Z +321,12,2,9238,5.99,2005-07-30T13:49:43Z,2020-02-15T06:59:47Z +322,12,1,9627,5.99,2005-07-31T04:42:46Z,2020-02-15T06:59:47Z +323,12,2,9708,5.99,2005-07-31T07:45:33Z,2020-02-15T06:59:47Z +324,12,2,10392,10.99,2005-08-01T06:50:26Z,2020-02-15T06:59:47Z +325,12,2,11497,0.99,2005-08-16T22:52:30Z,2020-02-15T06:59:47Z +326,12,1,12604,4.99,2005-08-18T16:58:48Z,2020-02-15T06:59:47Z +327,12,2,13519,0.99,2005-08-20T02:37:07Z,2020-02-15T06:59:47Z +328,12,2,13895,2.99,2005-08-20T15:58:28Z,2020-02-15T06:59:47Z +329,12,2,14240,4.99,2005-08-21T05:19:39Z,2020-02-15T06:59:47Z +330,12,1,15993,0.99,2005-08-23T20:28:44Z,2020-02-15T06:59:47Z +331,13,1,1933,2.99,2005-06-17T06:54:42Z,2020-02-15T06:59:47Z +332,13,1,2209,4.99,2005-06-18T02:24:01Z,2020-02-15T06:59:47Z +333,13,1,2952,2.99,2005-06-20T06:26:57Z,2020-02-15T06:59:47Z +334,13,1,3047,8.99,2005-06-20T12:45:33Z,2020-02-15T06:59:47Z +335,13,2,3946,2.99,2005-07-06T21:39:24Z,2020-02-15T06:59:47Z +336,13,1,6118,8.99,2005-07-11T07:43:08Z,2020-02-15T06:59:47Z +337,13,1,6568,2.99,2005-07-12T05:45:47Z,2020-02-15T06:59:47Z +338,13,1,6870,0.99,2005-07-12T20:13:45Z,2020-02-15T06:59:47Z +339,13,1,6897,2.99,2005-07-12T21:30:41Z,2020-02-15T06:59:47Z +340,13,1,7916,2.99,2005-07-28T11:49:53Z,2020-02-15T06:59:47Z +341,13,1,8277,2.99,2005-07-29T01:38:53Z,2020-02-15T06:59:47Z +342,13,2,8831,11.99,2005-07-29T22:37:41Z,2020-02-15T06:59:47Z +343,13,2,9260,9.99,2005-07-30T14:38:22Z,2020-02-15T06:59:47Z +344,13,2,9434,0.99,2005-07-30T21:29:41Z,2020-02-15T06:59:47Z +345,13,1,9664,0.99,2005-07-31T06:12:08Z,2020-02-15T06:59:47Z +346,13,1,9736,7.99,2005-07-31T08:58:40Z,2020-02-15T06:59:47Z +347,13,1,10003,4.99,2005-07-31T17:48:51Z,2020-02-15T06:59:47Z +348,13,1,11292,4.99,2005-08-02T14:58:41Z,2020-02-15T06:59:47Z +349,13,2,11315,0.99,2005-08-02T16:05:17Z,2020-02-15T06:59:47Z +350,13,2,11761,5.99,2005-08-17T09:44:59Z,2020-02-15T06:59:47Z +351,13,2,12918,7.99,2005-08-19T04:31:36Z,2020-02-15T06:59:47Z +352,13,2,13096,4.99,2005-08-19T10:49:03Z,2020-02-15T06:59:47Z +353,13,2,13213,0.99,2005-08-19T15:25:48Z,2020-02-15T06:59:47Z +354,13,1,13456,0.99,2005-08-20T00:33:19Z,2020-02-15T06:59:47Z +355,13,1,14252,9.99,2005-08-21T05:44:07Z,2020-02-15T06:59:47Z +356,13,2,14545,7.99,2005-08-21T15:44:23Z,2020-02-15T06:59:47Z +357,13,1,15338,4.99,2005-08-22T20:51:24Z,2020-02-15T06:59:47Z +358,14,1,151,0.99,2005-05-26T00:37:28Z,2020-02-15T06:59:47Z +359,14,1,346,9.99,2005-05-27T04:34:41Z,2020-02-15T06:59:47Z +360,14,1,525,5.99,2005-05-28T04:25:33Z,2020-02-15T06:59:47Z +361,14,1,671,2.99,2005-05-28T22:04:30Z,2020-02-15T06:59:47Z +362,14,2,815,0.99,2005-05-29T20:24:28Z,2020-02-15T06:59:47Z +363,14,2,1360,4.99,2005-06-15T13:32:15Z,2020-02-15T06:59:47Z +364,14,1,3707,2.99,2005-07-06T10:21:49Z,2020-02-15T06:59:47Z +365,14,1,4952,0.99,2005-07-08T23:00:07Z,2020-02-15T06:59:47Z +366,14,1,5104,0.99,2005-07-09T06:37:07Z,2020-02-15T06:59:47Z +367,14,2,5317,7.99,2005-07-09T16:10:25Z,2020-02-15T06:59:47Z +368,14,1,5383,4.99,2005-07-09T19:14:32Z,2020-02-15T06:59:47Z +369,14,1,5565,7.99,2005-07-10T03:29:48Z,2020-02-15T06:59:47Z +370,14,1,8035,6.99,2005-07-28T16:23:01Z,2020-02-15T06:59:47Z +371,14,1,8042,0.99,2005-07-28T16:45:11Z,2020-02-15T06:59:47Z +372,14,1,8548,3.99,2005-07-29T11:11:33Z,2020-02-15T06:59:47Z +373,14,2,8836,4.99,2005-07-29T22:46:08Z,2020-02-15T06:59:47Z +374,14,2,9438,4.99,2005-07-30T21:36:15Z,2020-02-15T06:59:47Z +375,14,1,9592,2.99,2005-07-31T03:21:16Z,2020-02-15T06:59:47Z +376,14,1,10348,2.99,2005-08-01T05:23:00Z,2020-02-15T06:59:47Z +377,14,2,10526,6.99,2005-08-01T11:55:33Z,2020-02-15T06:59:47Z +378,14,1,11480,4.99,2005-08-02T22:18:24Z,2020-02-15T06:59:47Z +379,14,2,11528,3.99,2005-08-17T00:27:23Z,2020-02-15T06:59:47Z +380,14,1,12668,2.99,2005-08-18T19:16:47Z,2020-02-15T06:59:47Z +381,14,1,13757,4.99,2005-08-20T11:20:12Z,2020-02-15T06:59:47Z +382,14,2,15015,6.99,2005-08-22T08:43:50Z,2020-02-15T06:59:47Z +383,14,1,15373,0.99,2005-08-22T22:08:11Z,2020-02-15T06:59:47Z +384,14,1,16045,0.99,2005-08-23T22:25:26Z,2020-02-15T06:59:47Z +385,14,1,13780,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +386,15,1,2486,2.99,2005-06-18T21:26:56Z,2020-02-15T06:59:47Z +387,15,1,2937,5.99,2005-06-20T05:15:37Z,2020-02-15T06:59:47Z +388,15,2,3182,0.99,2005-06-20T22:52:18Z,2020-02-15T06:59:47Z +389,15,1,3550,7.99,2005-07-06T02:29:21Z,2020-02-15T06:59:47Z +390,15,1,4127,5.99,2005-07-07T07:26:19Z,2020-02-15T06:59:47Z +391,15,1,5717,2.99,2005-07-10T11:02:03Z,2020-02-15T06:59:47Z +392,15,2,5975,2.99,2005-07-11T00:14:19Z,2020-02-15T06:59:47Z +393,15,1,7105,4.99,2005-07-27T05:15:37Z,2020-02-15T06:59:47Z +394,15,1,8193,0.99,2005-07-28T22:50:50Z,2020-02-15T06:59:47Z +395,15,2,8615,6.99,2005-07-29T13:36:01Z,2020-02-15T06:59:47Z +396,15,2,8927,4.99,2005-07-30T02:13:31Z,2020-02-15T06:59:47Z +397,15,1,9987,2.99,2005-07-31T17:22:35Z,2020-02-15T06:59:47Z +398,15,1,11118,2.99,2005-08-02T08:44:18Z,2020-02-15T06:59:47Z +399,15,1,11141,2.99,2005-08-02T09:29:11Z,2020-02-15T06:59:47Z +400,15,2,11307,2.99,2005-08-02T15:48:08Z,2020-02-15T06:59:47Z +401,15,2,11341,2.99,2005-08-02T17:09:24Z,2020-02-15T06:59:47Z +402,15,1,11922,7.99,2005-08-17T16:20:37Z,2020-02-15T06:59:47Z +403,15,2,12272,2.99,2005-08-18T04:39:10Z,2020-02-15T06:59:47Z +404,15,2,12551,2.99,2005-08-18T14:46:26Z,2020-02-15T06:59:47Z +405,15,1,12635,2.99,2005-08-18T18:00:23Z,2020-02-15T06:59:47Z +406,15,2,13339,8.99,2005-08-19T20:18:36Z,2020-02-15T06:59:47Z +407,15,1,13393,5.99,2005-08-19T22:03:46Z,2020-02-15T06:59:47Z +408,15,2,13503,5.99,2005-08-20T02:00:33Z,2020-02-15T06:59:47Z +409,15,1,13541,4.99,2005-08-20T03:41:41Z,2020-02-15T06:59:47Z +410,15,2,13677,3.99,2005-08-20T08:34:41Z,2020-02-15T06:59:47Z +411,15,2,14569,0.99,2005-08-21T16:31:22Z,2020-02-15T06:59:47Z +412,15,2,14776,4.99,2005-08-21T23:53:35Z,2020-02-15T06:59:47Z +413,15,2,14872,8.99,2005-08-22T03:23:41Z,2020-02-15T06:59:47Z +414,15,1,15178,0.99,2005-08-22T15:36:04Z,2020-02-15T06:59:47Z +415,15,1,15897,4.99,2005-08-23T17:12:31Z,2020-02-15T06:59:47Z +416,15,1,13798,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +417,15,2,13968,0,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +418,16,1,335,3.99,2005-05-27T03:07:10Z,2020-02-15T06:59:47Z +419,16,1,593,2.99,2005-05-28T13:33:23Z,2020-02-15T06:59:47Z +420,16,2,887,0.99,2005-05-30T07:10:00Z,2020-02-15T06:59:47Z +421,16,1,1017,2.99,2005-05-31T02:53:36Z,2020-02-15T06:59:47Z +422,16,2,1934,6.99,2005-06-17T07:04:57Z,2020-02-15T06:59:47Z +423,16,1,1944,7.99,2005-06-17T07:50:53Z,2020-02-15T06:59:47Z +424,16,1,,1.99,2005-06-18T04:56:12Z,2020-02-15T06:59:47Z +425,16,1,2960,7.99,2005-06-20T07:10:09Z,2020-02-15T06:59:47Z +426,16,2,3348,0.99,2005-06-21T11:16:42Z,2020-02-15T06:59:47Z +427,16,1,3548,0.99,2005-07-06T02:23:39Z,2020-02-15T06:59:47Z +428,16,2,4219,2.99,2005-07-07T12:11:22Z,2020-02-15T06:59:47Z +429,16,2,4263,3.99,2005-07-07T14:24:44Z,2020-02-15T06:59:47Z +430,16,2,4517,4.99,2005-07-08T02:45:19Z,2020-02-15T06:59:47Z +431,16,1,6100,4.99,2005-07-11T06:40:31Z,2020-02-15T06:59:47Z +432,16,2,7489,0.99,2005-07-27T19:39:38Z,2020-02-15T06:59:47Z +433,16,2,7552,2.99,2005-07-27T22:03:41Z,2020-02-15T06:59:47Z +434,16,2,8452,5.99,2005-07-29T07:45:00Z,2020-02-15T06:59:47Z +435,16,2,9158,0.99,2005-07-30T11:12:03Z,2020-02-15T06:59:47Z +436,16,2,9610,5.99,2005-07-31T03:54:05Z,2020-02-15T06:59:47Z +437,16,2,10687,2.99,2005-08-01T17:53:02Z,2020-02-15T06:59:47Z +438,16,2,10727,2.99,2005-08-01T19:15:08Z,2020-02-15T06:59:47Z +439,16,2,11308,0.99,2005-08-02T15:50:44Z,2020-02-15T06:59:47Z +440,16,2,12104,2.99,2005-08-17T22:53:00Z,2020-02-15T06:59:47Z +441,16,1,12358,4.99,2005-08-18T07:41:43Z,2020-02-15T06:59:47Z +442,16,1,12577,7.99,2005-08-18T15:39:46Z,2020-02-15T06:59:47Z +443,16,2,13151,4.99,2005-08-19T13:08:23Z,2020-02-15T06:59:47Z +444,16,1,13391,4.99,2005-08-19T22:01:42Z,2020-02-15T06:59:47Z +445,16,1,13480,6.99,2005-08-20T01:10:27Z,2020-02-15T06:59:47Z +446,16,1,14511,8.99,2005-08-21T14:45:34Z,2020-02-15T06:59:47Z +447,17,2,287,2.99,2005-05-26T19:44:54Z,2020-02-15T06:59:47Z +448,17,1,580,2.99,2005-05-28T11:19:53Z,2020-02-15T06:59:47Z +449,17,2,884,4.99,2005-05-30T06:41:32Z,2020-02-15T06:59:47Z +450,17,2,2175,5.99,2005-06-18T00:17:58Z,2020-02-15T06:59:47Z +451,17,1,2684,8.99,2005-06-19T12:29:08Z,2020-02-15T06:59:47Z +452,17,2,3269,5.99,2005-06-21T05:06:30Z,2020-02-15T06:59:47Z +453,17,1,5714,3.99,2005-07-10T10:46:57Z,2020-02-15T06:59:47Z +454,17,1,5883,3.99,2005-07-10T19:25:21Z,2020-02-15T06:59:47Z +455,17,2,6884,1.99,2005-07-12T20:52:41Z,2020-02-15T06:59:47Z +456,17,2,8076,8.99,2005-07-28T17:45:58Z,2020-02-15T06:59:47Z +457,17,1,8213,2.99,2005-07-28T23:37:33Z,2020-02-15T06:59:47Z +458,17,2,9092,8.99,2005-07-30T08:30:56Z,2020-02-15T06:59:47Z +459,17,1,9138,2.99,2005-07-30T10:11:52Z,2020-02-15T06:59:47Z +460,17,2,9382,8.99,2005-07-30T19:23:44Z,2020-02-15T06:59:47Z +461,17,1,9489,0.99,2005-07-30T23:43:32Z,2020-02-15T06:59:47Z +462,17,2,11990,4.99,2005-08-17T18:26:22Z,2020-02-15T06:59:47Z +463,17,1,13732,2.99,2005-08-20T10:24:41Z,2020-02-15T06:59:47Z +464,17,1,14040,2.99,2005-08-20T21:43:44Z,2020-02-15T06:59:47Z +465,17,2,14326,2.99,2005-08-21T08:15:41Z,2020-02-15T06:59:47Z +466,17,1,14346,2.99,2005-08-21T08:42:26Z,2020-02-15T06:59:47Z +467,17,2,15752,5.99,2005-08-23T12:41:38Z,2020-02-15T06:59:47Z +468,18,1,50,2.99,2005-05-25T06:44:53Z,2020-02-15T06:59:47Z +469,18,1,116,4.99,2005-05-25T19:27:51Z,2020-02-15T06:59:47Z +470,18,1,692,4.99,2005-05-29T01:32:10Z,2020-02-15T06:59:47Z +471,18,2,1451,5.99,2005-06-15T19:30:18Z,2020-02-15T06:59:47Z +472,18,2,1783,4.99,2005-06-16T19:23:23Z,2020-02-15T06:59:47Z +473,18,2,2112,5.99,2005-06-17T19:52:42Z,2020-02-15T06:59:47Z +474,18,1,2990,8.99,2005-06-20T09:02:51Z,2020-02-15T06:59:47Z +475,18,2,4672,3.99,2005-07-08T10:15:38Z,2020-02-15T06:59:47Z +476,18,2,4724,3.99,2005-07-08T12:46:30Z,2020-02-15T06:59:47Z +477,18,2,4923,3.99,2005-07-08T21:44:39Z,2020-02-15T06:59:47Z +478,18,2,6128,2.99,2005-07-11T08:15:08Z,2020-02-15T06:59:47Z +479,18,1,6846,0.99,2005-07-12T19:20:45Z,2020-02-15T06:59:47Z +480,18,2,8122,2.99,2005-07-28T19:27:37Z,2020-02-15T06:59:47Z +481,18,1,8555,4.99,2005-07-29T11:18:01Z,2020-02-15T06:59:47Z +482,18,1,9036,4.99,2005-07-30T06:18:38Z,2020-02-15T06:59:47Z +483,18,2,9114,4.99,2005-07-30T09:13:21Z,2020-02-15T06:59:47Z +484,18,1,10682,4.99,2005-08-01T17:32:53Z,2020-02-15T06:59:47Z +485,18,2,10721,1.99,2005-08-01T19:05:18Z,2020-02-15T06:59:47Z +486,18,2,11094,4.99,2005-08-02T08:03:02Z,2020-02-15T06:59:47Z +487,18,2,11439,4.99,2005-08-02T20:22:45Z,2020-02-15T06:59:47Z +488,18,2,12333,0.99,2005-08-18T06:51:39Z,2020-02-15T06:59:47Z +489,18,2,13490,0.99,2005-08-20T01:29:29Z,2020-02-15T06:59:47Z +490,19,2,18,0.99,2005-05-25T01:10:47Z,2020-02-15T06:59:47Z +491,19,2,110,9.99,2005-05-25T18:43:49Z,2020-02-15T06:59:47Z +492,19,1,179,6.99,2005-05-26T04:26:06Z,2020-02-15T06:59:47Z +493,19,1,337,2.99,2005-05-27T03:22:30Z,2020-02-15T06:59:47Z +494,19,2,591,2.99,2005-05-28T13:11:04Z,2020-02-15T06:59:47Z +495,19,2,696,2.99,2005-05-29T01:59:10Z,2020-02-15T06:59:47Z +496,19,1,2657,2.99,2005-06-19T10:42:59Z,2020-02-15T06:59:47Z +497,19,1,2848,2.99,2005-06-19T22:55:37Z,2020-02-15T06:59:47Z +498,19,2,3423,2.99,2005-06-21T17:38:02Z,2020-02-15T06:59:47Z +499,19,2,3549,4.99,2005-07-06T02:24:55Z,2020-02-15T06:59:47Z +500,19,2,6495,4.99,2005-07-12T02:57:02Z,2020-02-15T06:59:47Z +501,19,1,9157,5.99,2005-07-30T11:06:23Z,2020-02-15T06:59:47Z +502,19,1,9256,0.99,2005-07-30T14:29:29Z,2020-02-15T06:59:47Z +503,19,2,10077,9.99,2005-07-31T20:01:06Z,2020-02-15T06:59:47Z +504,19,1,10176,7.99,2005-07-31T23:40:35Z,2020-02-15T06:59:47Z +505,19,2,11508,8.99,2005-08-16T23:27:36Z,2020-02-15T06:59:47Z +506,19,1,11869,5.99,2005-08-17T14:10:22Z,2020-02-15T06:59:47Z +507,19,1,12211,9.99,2005-08-18T02:31:18Z,2020-02-15T06:59:47Z +508,19,2,12357,2.99,2005-08-18T07:40:52Z,2020-02-15T06:59:47Z +509,19,1,13718,8.99,2005-08-20T09:53:44Z,2020-02-15T06:59:47Z +510,19,2,13804,8.99,2005-08-20T12:46:32Z,2020-02-15T06:59:47Z +511,19,1,14101,4.99,2005-08-21T00:33:03Z,2020-02-15T06:59:47Z +512,19,1,15047,2.99,2005-08-22T09:57:16Z,2020-02-15T06:59:47Z +513,19,2,15529,0.99,2005-08-23T03:46:47Z,2020-02-15T06:59:47Z +514,20,2,202,2.99,2005-05-26T07:27:36Z,2020-02-15T06:59:47Z +515,20,2,497,6.99,2005-05-28T00:54:39Z,2020-02-15T06:59:47Z +516,20,2,546,1.99,2005-05-28T07:16:25Z,2020-02-15T06:59:47Z +517,20,2,1558,0.99,2005-06-16T02:33:53Z,2020-02-15T06:59:47Z +518,20,2,2136,3.99,2005-06-17T21:16:41Z,2020-02-15T06:59:47Z +519,20,2,2343,4.99,2005-06-18T11:46:26Z,2020-02-15T06:59:47Z +520,20,1,3350,4.99,2005-06-21T11:21:38Z,2020-02-15T06:59:47Z +521,20,2,4011,3.99,2005-07-07T00:48:25Z,2020-02-15T06:59:47Z +522,20,1,4407,2.99,2005-07-07T21:39:45Z,2020-02-15T06:59:47Z +523,20,1,5718,2.99,2005-07-10T11:03:20Z,2020-02-15T06:59:47Z +524,20,1,6254,2.99,2005-07-11T15:10:18Z,2020-02-15T06:59:47Z +525,20,2,6267,6.99,2005-07-11T15:53:00Z,2020-02-15T06:59:47Z +526,20,2,7217,4.99,2005-07-27T09:31:44Z,2020-02-15T06:59:47Z +527,20,2,7864,5.99,2005-07-28T10:06:10Z,2020-02-15T06:59:47Z +528,20,2,8127,2.99,2005-07-28T19:45:19Z,2020-02-15T06:59:47Z +529,20,2,9075,4.99,2005-07-30T07:55:14Z,2020-02-15T06:59:47Z +530,20,2,9468,3.99,2005-07-30T22:53:52Z,2020-02-15T06:59:47Z +531,20,2,10284,4.99,2005-08-01T03:33:19Z,2020-02-15T06:59:47Z +532,20,1,10616,7.99,2005-08-01T14:59:50Z,2020-02-15T06:59:47Z +533,20,1,10954,1.99,2005-08-02T03:30:24Z,2020-02-15T06:59:47Z +534,20,1,11821,0.99,2005-08-17T12:27:55Z,2020-02-15T06:59:47Z +535,20,1,12180,0.99,2005-08-18T01:28:15Z,2020-02-15T06:59:47Z +536,20,2,13036,4.99,2005-08-19T08:48:37Z,2020-02-15T06:59:47Z +537,20,1,13137,4.99,2005-08-19T12:26:32Z,2020-02-15T06:59:47Z +538,20,2,13317,2.99,2005-08-19T19:25:42Z,2020-02-15T06:59:47Z +539,20,2,14613,2.99,2005-08-21T18:03:20Z,2020-02-15T06:59:47Z +540,20,2,15057,6.99,2005-08-22T10:19:58Z,2020-02-15T06:59:47Z +541,20,1,15161,1.99,2005-08-22T14:37:22Z,2020-02-15T06:59:47Z +542,20,2,15248,0.99,2005-08-22T17:53:06Z,2020-02-15T06:59:47Z +543,20,1,15460,2.99,2005-08-23T01:10:42Z,2020-02-15T06:59:47Z +544,21,1,260,3.99,2005-05-26T15:42:20Z,2020-02-15T06:59:47Z +545,21,2,463,3.99,2005-05-27T20:11:47Z,2020-02-15T06:59:47Z +546,21,1,570,0.99,2005-05-28T10:15:04Z,2020-02-15T06:59:47Z +547,21,2,2235,7.99,2005-06-18T04:08:50Z,2020-02-15T06:59:47Z +548,21,1,2268,4.99,2005-06-18T06:13:41Z,2020-02-15T06:59:47Z +549,21,1,2393,2.99,2005-06-18T15:37:55Z,2020-02-15T06:59:47Z +550,21,2,2830,4.99,2005-06-19T21:14:33Z,2020-02-15T06:59:47Z +551,21,1,3212,10.99,2005-06-21T01:04:35Z,2020-02-15T06:59:47Z +552,21,2,5107,4.99,2005-07-09T06:42:32Z,2020-02-15T06:59:47Z +553,21,1,5772,3.99,2005-07-10T13:27:40Z,2020-02-15T06:59:47Z +554,21,1,5961,2.99,2005-07-10T23:43:23Z,2020-02-15T06:59:47Z +555,21,2,6943,1.99,2005-07-26T23:28:13Z,2020-02-15T06:59:47Z +556,21,1,7994,0.99,2005-07-28T14:56:54Z,2020-02-15T06:59:47Z +557,21,2,8196,6.99,2005-07-28T22:56:11Z,2020-02-15T06:59:47Z +558,21,2,8862,2.99,2005-07-29T23:49:23Z,2020-02-15T06:59:47Z +559,21,2,9149,0.99,2005-07-30T10:45:12Z,2020-02-15T06:59:47Z +560,21,1,9699,5.99,2005-07-31T07:29:25Z,2020-02-15T06:59:47Z +561,21,2,10570,4.99,2005-08-01T13:23:06Z,2020-02-15T06:59:47Z +562,21,1,10734,0.99,2005-08-01T19:28:47Z,2020-02-15T06:59:47Z +563,21,2,11072,0.99,2005-08-02T07:10:57Z,2020-02-15T06:59:47Z +564,21,2,11970,0.99,2005-08-17T17:53:09Z,2020-02-15T06:59:47Z +565,21,2,12131,2.99,2005-08-17T23:34:16Z,2020-02-15T06:59:47Z +566,21,2,12660,4.99,2005-08-18T19:07:23Z,2020-02-15T06:59:47Z +567,21,1,12774,6.99,2005-08-18T23:34:22Z,2020-02-15T06:59:47Z +568,21,1,13381,2.99,2005-08-19T21:37:57Z,2020-02-15T06:59:47Z +569,21,2,13399,4.99,2005-08-19T22:09:28Z,2020-02-15T06:59:47Z +570,21,1,13411,4.99,2005-08-19T22:43:38Z,2020-02-15T06:59:47Z +571,21,1,13463,8.99,2005-08-20T00:50:54Z,2020-02-15T06:59:47Z +572,21,1,13699,9.99,2005-08-20T09:26:14Z,2020-02-15T06:59:47Z +573,21,1,13740,4.99,2005-08-20T10:48:43Z,2020-02-15T06:59:47Z +574,21,2,14077,8.99,2005-08-20T23:24:07Z,2020-02-15T06:59:47Z +575,21,2,14161,2.99,2005-08-21T02:51:59Z,2020-02-15T06:59:47Z +576,21,2,14446,2.99,2005-08-21T12:10:41Z,2020-02-15T06:59:47Z +577,21,1,14869,4.99,2005-08-22T03:20:26Z,2020-02-15T06:59:47Z +578,21,1,14933,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +579,22,1,370,4.99,2005-05-27T07:49:43Z,2020-02-15T06:59:47Z +580,22,1,556,4.99,2005-05-28T08:31:36Z,2020-02-15T06:59:47Z +581,22,2,820,8.99,2005-05-29T21:07:22Z,2020-02-15T06:59:47Z +582,22,1,3419,2.99,2005-06-21T17:18:01Z,2020-02-15T06:59:47Z +583,22,2,4215,2.99,2005-07-07T12:00:52Z,2020-02-15T06:59:47Z +584,22,1,5294,6.99,2005-07-09T15:23:42Z,2020-02-15T06:59:47Z +585,22,1,5815,2.99,2005-07-10T15:48:19Z,2020-02-15T06:59:47Z +586,22,1,7087,4.99,2005-07-27T04:42:08Z,2020-02-15T06:59:47Z +587,22,1,7705,7.99,2005-07-28T04:02:58Z,2020-02-15T06:59:47Z +588,22,2,9410,0.99,2005-07-30T20:38:05Z,2020-02-15T06:59:47Z +589,22,1,9580,4.99,2005-07-31T03:01:11Z,2020-02-15T06:59:47Z +590,22,1,12023,5.99,2005-08-17T19:54:54Z,2020-02-15T06:59:47Z +591,22,1,12124,2.99,2005-08-17T23:22:46Z,2020-02-15T06:59:47Z +592,22,2,12809,0.99,2005-08-19T00:42:24Z,2020-02-15T06:59:47Z +593,22,2,13060,9.99,2005-08-19T09:43:25Z,2020-02-15T06:59:47Z +594,22,1,14056,2.99,2005-08-20T22:18:53Z,2020-02-15T06:59:47Z +595,22,1,14564,6.99,2005-08-21T16:24:43Z,2020-02-15T06:59:47Z +596,22,1,15134,7.99,2005-08-22T13:18:25Z,2020-02-15T06:59:47Z +597,22,1,15589,6.99,2005-08-23T06:03:31Z,2020-02-15T06:59:47Z +598,22,1,15658,4.99,2005-08-23T08:48:43Z,2020-02-15T06:59:47Z +599,22,1,15793,4.99,2005-08-23T14:06:19Z,2020-02-15T06:59:47Z +600,22,1,12222,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +601,23,1,129,8.99,2005-05-25T21:20:03Z,2020-02-15T06:59:47Z +602,23,1,654,2.99,2005-05-28T20:15:30Z,2020-02-15T06:59:47Z +603,23,2,1090,0.99,2005-05-31T12:03:44Z,2020-02-15T06:59:47Z +604,23,1,2753,1.99,2005-06-19T16:44:35Z,2020-02-15T06:59:47Z +605,23,1,2827,0.99,2005-06-19T20:50:01Z,2020-02-15T06:59:47Z +606,23,1,3015,5.99,2005-06-20T10:48:56Z,2020-02-15T06:59:47Z +607,23,1,3055,4.99,2005-06-20T13:19:58Z,2020-02-15T06:59:47Z +608,23,1,3461,2.99,2005-06-21T21:49:18Z,2020-02-15T06:59:47Z +609,23,2,3736,3.99,2005-07-06T11:43:44Z,2020-02-15T06:59:47Z +610,23,2,3781,2.99,2005-07-06T13:53:41Z,2020-02-15T06:59:47Z +611,23,2,4853,2.99,2005-07-08T18:43:18Z,2020-02-15T06:59:47Z +612,23,1,6213,2.99,2005-07-11T12:43:07Z,2020-02-15T06:59:47Z +613,23,1,6238,2.99,2005-07-11T14:20:18Z,2020-02-15T06:59:47Z +614,23,2,6917,5.99,2005-07-12T22:30:15Z,2020-02-15T06:59:47Z +615,23,1,7155,7.99,2005-07-27T07:18:46Z,2020-02-15T06:59:47Z +616,23,1,8015,2.99,2005-07-28T15:33:03Z,2020-02-15T06:59:47Z +617,23,2,8718,0.99,2005-07-29T17:41:14Z,2020-02-15T06:59:47Z +618,23,2,9209,5.99,2005-07-30T12:55:36Z,2020-02-15T06:59:47Z +619,23,2,9255,9.99,2005-07-30T14:26:46Z,2020-02-15T06:59:47Z +620,23,2,9718,3.99,2005-07-31T08:25:03Z,2020-02-15T06:59:47Z +621,23,1,10132,6.99,2005-07-31T21:50:24Z,2020-02-15T06:59:47Z +622,23,1,10898,2.99,2005-08-02T01:29:57Z,2020-02-15T06:59:47Z +623,23,2,11501,2.99,2005-08-16T23:04:53Z,2020-02-15T06:59:47Z +624,23,2,13290,2.99,2005-08-19T18:31:50Z,2020-02-15T06:59:47Z +625,23,2,13331,4.99,2005-08-19T20:00:25Z,2020-02-15T06:59:47Z +626,23,2,13429,6.99,2005-08-19T23:25:37Z,2020-02-15T06:59:47Z +627,23,2,13511,0.99,2005-08-20T02:21:40Z,2020-02-15T06:59:47Z +628,23,2,13557,0.99,2005-08-20T04:12:41Z,2020-02-15T06:59:47Z +629,23,2,14482,2.99,2005-08-21T13:42:45Z,2020-02-15T06:59:47Z +630,23,2,15532,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +631,24,2,1007,6.99,2005-05-31T01:02:28Z,2020-02-15T06:59:47Z +632,24,2,1077,2.99,2005-05-31T10:22:54Z,2020-02-15T06:59:47Z +633,24,1,1716,2.99,2005-06-16T14:39:31Z,2020-02-15T06:59:47Z +634,24,1,2070,2.99,2005-06-17T16:27:51Z,2020-02-15T06:59:47Z +635,24,2,2116,4.99,2005-06-17T20:16:12Z,2020-02-15T06:59:47Z +636,24,1,2451,5.99,2005-06-18T19:28:02Z,2020-02-15T06:59:47Z +637,24,2,2963,7.99,2005-06-20T07:33:09Z,2020-02-15T06:59:47Z +638,24,2,3649,7.99,2005-07-06T07:32:42Z,2020-02-15T06:59:47Z +639,24,2,4378,2.99,2005-07-07T20:29:08Z,2020-02-15T06:59:47Z +640,24,1,5310,0.99,2005-07-09T16:00:34Z,2020-02-15T06:59:47Z +641,24,2,5648,0.99,2005-07-10T07:09:21Z,2020-02-15T06:59:47Z +642,24,1,6855,4.99,2005-07-12T19:46:29Z,2020-02-15T06:59:47Z +643,24,1,7266,1.99,2005-07-27T11:22:17Z,2020-02-15T06:59:47Z +644,24,1,8947,4.99,2005-07-30T03:15:37Z,2020-02-15T06:59:47Z +645,24,1,9723,0.99,2005-07-31T08:31:18Z,2020-02-15T06:59:47Z +646,24,2,9925,0.99,2005-07-31T15:08:47Z,2020-02-15T06:59:47Z +647,24,2,10491,2.99,2005-08-01T10:38:27Z,2020-02-15T06:59:47Z +648,24,1,11209,2.99,2005-08-02T12:09:45Z,2020-02-15T06:59:47Z +649,24,2,11546,2.99,2005-08-17T00:57:36Z,2020-02-15T06:59:47Z +650,24,2,12165,8.99,2005-08-18T00:53:37Z,2020-02-15T06:59:47Z +651,24,1,12745,2.99,2005-08-18T22:22:45Z,2020-02-15T06:59:47Z +652,24,1,12999,1.99,2005-08-19T07:34:53Z,2020-02-15T06:59:47Z +653,24,2,13058,4.99,2005-08-19T09:40:53Z,2020-02-15T06:59:47Z +654,24,1,13247,0.99,2005-08-19T16:45:59Z,2020-02-15T06:59:47Z +655,24,2,15357,4.99,2005-08-22T21:28:59Z,2020-02-15T06:59:47Z +656,25,1,90,7.99,2005-05-25T14:31:25Z,2020-02-15T06:59:47Z +657,25,2,1033,2.99,2005-05-31T04:50:07Z,2020-02-15T06:59:47Z +658,25,1,1338,4.99,2005-06-15T12:17:34Z,2020-02-15T06:59:47Z +659,25,1,1365,2.99,2005-06-15T14:09:55Z,2020-02-15T06:59:47Z +660,25,2,1754,6.99,2005-06-16T17:13:23Z,2020-02-15T06:59:47Z +661,25,2,2625,8.99,2005-06-19T08:23:11Z,2020-02-15T06:59:47Z +662,25,1,2901,4.99,2005-06-20T02:41:28Z,2020-02-15T06:59:47Z +663,25,1,3447,4.99,2005-06-21T20:53:31Z,2020-02-15T06:59:47Z +664,25,1,4282,2.99,2005-07-07T15:26:31Z,2020-02-15T06:59:47Z +665,25,1,4319,0.99,2005-07-07T17:50:27Z,2020-02-15T06:59:47Z +666,25,2,4404,2.99,2005-07-07T21:31:53Z,2020-02-15T06:59:47Z +667,25,1,5881,2.99,2005-07-10T19:19:43Z,2020-02-15T06:59:47Z +668,25,1,6653,4.99,2005-07-12T11:06:17Z,2020-02-15T06:59:47Z +669,25,2,6905,2.99,2005-07-12T22:02:18Z,2020-02-15T06:59:47Z +670,25,2,8667,2.99,2005-07-29T15:40:57Z,2020-02-15T06:59:47Z +671,25,2,8878,0.99,2005-07-30T00:15:57Z,2020-02-15T06:59:47Z +672,25,1,9140,8.99,2005-07-30T10:12:01Z,2020-02-15T06:59:47Z +673,25,2,9334,2.99,2005-07-30T17:56:38Z,2020-02-15T06:59:47Z +674,25,2,9922,2.99,2005-07-31T14:59:37Z,2020-02-15T06:59:47Z +675,25,2,10103,2.99,2005-07-31T20:49:13Z,2020-02-15T06:59:47Z +676,25,1,10324,5.99,2005-08-01T04:49:06Z,2020-02-15T06:59:47Z +677,25,2,10860,2.99,2005-08-02T00:12:32Z,2020-02-15T06:59:47Z +678,25,1,10916,2.99,2005-08-02T02:05:59Z,2020-02-15T06:59:47Z +679,25,1,11642,0.99,2005-08-17T04:48:05Z,2020-02-15T06:59:47Z +680,25,1,12922,0.99,2005-08-19T04:48:48Z,2020-02-15T06:59:47Z +681,25,1,14193,4.99,2005-08-21T03:38:27Z,2020-02-15T06:59:47Z +682,25,1,14236,4.99,2005-08-21T05:13:16Z,2020-02-15T06:59:47Z +683,25,1,15512,0.99,2005-08-23T02:57:30Z,2020-02-15T06:59:47Z +684,25,1,15972,5.99,2005-08-23T20:00:30Z,2020-02-15T06:59:47Z +685,26,1,796,2.99,2005-05-29T16:59:44Z,2020-02-15T06:59:47Z +686,26,2,1105,2.99,2005-05-31T14:33:56Z,2020-02-15T06:59:47Z +687,26,1,1440,5.99,2005-06-15T18:53:14Z,2020-02-15T06:59:47Z +688,26,2,1706,4.99,2005-06-16T14:01:02Z,2020-02-15T06:59:47Z +689,26,1,2093,9.99,2005-06-17T18:14:08Z,2020-02-15T06:59:47Z +690,26,2,2416,3.99,2005-06-18T17:07:34Z,2020-02-15T06:59:47Z +691,26,2,2421,6.99,2005-06-18T17:25:05Z,2020-02-15T06:59:47Z +692,26,1,2532,4.99,2005-06-19T01:27:46Z,2020-02-15T06:59:47Z +693,26,1,2745,4.99,2005-06-19T16:21:19Z,2020-02-15T06:59:47Z +694,26,1,4065,2.99,2005-07-07T04:32:28Z,2020-02-15T06:59:47Z +695,26,1,4274,4.99,2005-07-07T14:42:04Z,2020-02-15T06:59:47Z +696,26,1,4382,4.99,2005-07-07T20:41:03Z,2020-02-15T06:59:47Z +697,26,2,4402,0.99,2005-07-07T21:28:46Z,2020-02-15T06:59:47Z +698,26,1,4431,6.99,2005-07-07T22:39:02Z,2020-02-15T06:59:47Z +699,26,1,4536,3.99,2005-07-08T03:43:22Z,2020-02-15T06:59:47Z +700,26,1,4641,6.99,2005-07-08T09:09:46Z,2020-02-15T06:59:47Z +701,26,1,5437,2.99,2005-07-09T21:32:29Z,2020-02-15T06:59:47Z +702,26,1,6149,1.99,2005-07-11T09:19:31Z,2020-02-15T06:59:47Z +703,26,2,6243,2.99,2005-07-11T14:53:25Z,2020-02-15T06:59:47Z +704,26,2,7328,0.99,2005-07-27T13:55:18Z,2020-02-15T06:59:47Z +705,26,1,8241,4.99,2005-07-29T00:33:36Z,2020-02-15T06:59:47Z +706,26,1,9484,0.99,2005-07-30T23:31:40Z,2020-02-15T06:59:47Z +707,26,1,10386,3.99,2005-08-01T06:42:20Z,2020-02-15T06:59:47Z +708,26,1,10996,3.99,2005-08-02T04:48:11Z,2020-02-15T06:59:47Z +709,26,2,11314,2.99,2005-08-02T16:04:08Z,2020-02-15T06:59:47Z +710,26,1,11338,0.99,2005-08-02T17:00:12Z,2020-02-15T06:59:47Z +711,26,1,11744,5.99,2005-08-17T08:54:30Z,2020-02-15T06:59:47Z +712,26,2,13111,4.99,2005-08-19T11:25:10Z,2020-02-15T06:59:47Z +713,26,2,14183,4.99,2005-08-21T03:24:29Z,2020-02-15T06:59:47Z +714,26,2,14192,8.99,2005-08-21T03:37:42Z,2020-02-15T06:59:47Z +715,26,2,14603,1.99,2005-08-21T17:51:06Z,2020-02-15T06:59:47Z +716,26,1,14677,7.99,2005-08-21T20:12:30Z,2020-02-15T06:59:47Z +717,26,1,15384,2.99,2005-08-22T22:34:44Z,2020-02-15T06:59:47Z +718,26,1,15722,7.99,2005-08-23T11:16:29Z,2020-02-15T06:59:47Z +719,27,2,787,2.99,2005-05-29T16:03:03Z,2020-02-15T06:59:47Z +720,27,1,1310,4.99,2005-06-15T10:11:42Z,2020-02-15T06:59:47Z +721,27,2,1480,4.99,2005-06-15T21:17:17Z,2020-02-15T06:59:47Z +722,27,2,1699,2.99,2005-06-16T13:05:09Z,2020-02-15T06:59:47Z +723,27,2,1960,3.99,2005-06-17T08:59:57Z,2020-02-15T06:59:47Z +724,27,2,2512,2.99,2005-06-18T23:48:47Z,2020-02-15T06:59:47Z +725,27,1,2815,4.99,2005-06-19T20:03:29Z,2020-02-15T06:59:47Z +726,27,1,3038,1.99,2005-06-20T12:28:59Z,2020-02-15T06:59:47Z +727,27,2,3420,3.99,2005-06-21T17:22:36Z,2020-02-15T06:59:47Z +728,27,2,4038,0.99,2005-07-07T02:52:53Z,2020-02-15T06:59:47Z +729,27,1,4510,5.99,2005-07-08T02:34:51Z,2020-02-15T06:59:47Z +730,27,1,5552,0.99,2005-07-10T03:01:19Z,2020-02-15T06:59:47Z +731,27,1,5736,4.99,2005-07-10T11:45:48Z,2020-02-15T06:59:47Z +732,27,2,6115,0.99,2005-07-11T07:36:50Z,2020-02-15T06:59:47Z +733,27,2,6562,5.99,2005-07-12T05:26:26Z,2020-02-15T06:59:47Z +734,27,2,6658,4.99,2005-07-12T11:13:21Z,2020-02-15T06:59:47Z +735,27,1,7927,1.99,2005-07-28T12:13:42Z,2020-02-15T06:59:47Z +736,27,2,9244,0.99,2005-07-30T14:06:53Z,2020-02-15T06:59:47Z +737,27,2,9636,5.99,2005-07-31T05:12:59Z,2020-02-15T06:59:47Z +738,27,1,9673,7.99,2005-07-31T06:34:55Z,2020-02-15T06:59:47Z +739,27,1,9908,4.99,2005-07-31T14:39:52Z,2020-02-15T06:59:47Z +740,27,1,10794,7.99,2005-08-01T21:51:15Z,2020-02-15T06:59:47Z +741,27,1,10852,4.99,2005-08-02T00:00:33Z,2020-02-15T06:59:47Z +742,27,1,11234,0.99,2005-08-02T13:12:17Z,2020-02-15T06:59:47Z +743,27,1,11661,8.99,2005-08-17T05:25:57Z,2020-02-15T06:59:47Z +744,27,2,11740,6.99,2005-08-17T08:48:31Z,2020-02-15T06:59:47Z +745,27,2,12021,5.99,2005-08-17T19:52:43Z,2020-02-15T06:59:47Z +746,27,2,12461,0.99,2005-08-18T11:28:14Z,2020-02-15T06:59:47Z +747,27,1,12531,2.99,2005-08-18T13:57:50Z,2020-02-15T06:59:47Z +748,27,2,13816,4.99,2005-08-20T13:13:56Z,2020-02-15T06:59:47Z +749,27,1,15048,0.99,2005-08-22T10:00:04Z,2020-02-15T06:59:47Z +750,28,2,388,2.99,2005-05-27T10:37:27Z,2020-02-15T06:59:47Z +751,28,1,868,2.99,2005-05-30T04:19:55Z,2020-02-15T06:59:47Z +752,28,2,1240,2.99,2005-06-15T04:58:07Z,2020-02-15T06:59:47Z +753,28,1,1543,4.99,2005-06-16T01:24:08Z,2020-02-15T06:59:47Z +754,28,2,2299,3.99,2005-06-18T08:18:52Z,2020-02-15T06:59:47Z +755,28,2,2604,0.99,2005-06-19T06:30:10Z,2020-02-15T06:59:47Z +756,28,1,3231,0.99,2005-06-21T02:25:00Z,2020-02-15T06:59:47Z +757,28,1,3845,0.99,2005-07-06T16:38:14Z,2020-02-15T06:59:47Z +758,28,2,4704,0.99,2005-07-08T11:45:35Z,2020-02-15T06:59:47Z +759,28,2,4951,4.99,2005-07-08T22:58:21Z,2020-02-15T06:59:47Z +760,28,2,5653,2.99,2005-07-10T07:21:27Z,2020-02-15T06:59:47Z +761,28,1,5817,5.99,2005-07-10T15:49:12Z,2020-02-15T06:59:47Z +762,28,2,6032,0.99,2005-07-11T02:49:01Z,2020-02-15T06:59:47Z +763,28,2,6476,0.99,2005-07-12T01:37:48Z,2020-02-15T06:59:47Z +764,28,1,7580,9.99,2005-07-27T23:07:40Z,2020-02-15T06:59:47Z +765,28,1,8464,4.99,2005-07-29T08:18:20Z,2020-02-15T06:59:47Z +766,28,1,8901,2.99,2005-07-30T01:07:12Z,2020-02-15T06:59:47Z +767,28,2,9544,2.99,2005-07-31T01:44:51Z,2020-02-15T06:59:47Z +768,28,2,9593,4.99,2005-07-31T03:22:30Z,2020-02-15T06:59:47Z +769,28,2,9705,4.99,2005-07-31T07:40:33Z,2020-02-15T06:59:47Z +770,28,2,10116,2.99,2005-07-31T21:14:02Z,2020-02-15T06:59:47Z +771,28,2,10294,6.99,2005-08-01T03:48:12Z,2020-02-15T06:59:47Z +772,28,1,11444,2.99,2005-08-02T20:32:55Z,2020-02-15T06:59:47Z +773,28,1,11856,3.99,2005-08-17T13:44:49Z,2020-02-15T06:59:47Z +774,28,2,12190,2.99,2005-08-18T01:54:44Z,2020-02-15T06:59:47Z +775,28,1,12359,0.99,2005-08-18T07:44:05Z,2020-02-15T06:59:47Z +776,28,1,12708,2.99,2005-08-18T20:59:17Z,2020-02-15T06:59:47Z +777,28,2,13783,4.99,2005-08-20T12:11:03Z,2020-02-15T06:59:47Z +778,28,2,14540,2.99,2005-08-21T15:34:23Z,2020-02-15T06:59:47Z +779,28,1,15445,4.99,2005-08-23T00:48:29Z,2020-02-15T06:59:47Z +780,28,1,15491,2.99,2005-08-23T02:08:40Z,2020-02-15T06:59:47Z +781,28,2,12938,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +782,29,2,194,1.99,2005-05-26T06:52:33Z,2020-02-15T06:59:47Z +783,29,1,2655,0.99,2005-06-19T10:38:42Z,2020-02-15T06:59:47Z +784,29,1,2673,0.99,2005-06-19T11:42:20Z,2020-02-15T06:59:47Z +785,29,1,2701,7.99,2005-06-19T13:33:06Z,2020-02-15T06:59:47Z +786,29,1,2735,2.99,2005-06-19T15:42:07Z,2020-02-15T06:59:47Z +787,29,2,2801,2.99,2005-06-19T19:18:09Z,2020-02-15T06:59:47Z +788,29,2,2923,2.99,2005-06-20T04:16:07Z,2020-02-15T06:59:47Z +789,29,1,3324,2.99,2005-06-21T08:49:16Z,2020-02-15T06:59:47Z +790,29,2,4262,6.99,2005-07-07T14:24:30Z,2020-02-15T06:59:47Z +791,29,1,4313,0.99,2005-07-07T17:36:56Z,2020-02-15T06:59:47Z +792,29,2,4535,0.99,2005-07-08T03:40:46Z,2020-02-15T06:59:47Z +793,29,2,5442,10.99,2005-07-09T21:55:19Z,2020-02-15T06:59:47Z +794,29,1,5857,1.99,2005-07-10T17:59:29Z,2020-02-15T06:59:47Z +795,29,2,7237,3.99,2005-07-27T10:12:36Z,2020-02-15T06:59:47Z +796,29,1,7451,6.99,2005-07-27T18:18:41Z,2020-02-15T06:59:47Z +797,29,1,7453,0.99,2005-07-27T18:27:13Z,2020-02-15T06:59:47Z +798,29,2,8673,2.99,2005-07-29T15:50:14Z,2020-02-15T06:59:47Z +799,29,2,9392,4.99,2005-07-30T19:50:13Z,2020-02-15T06:59:47Z +800,29,1,9946,4.99,2005-07-31T15:48:54Z,2020-02-15T06:59:47Z +801,29,1,10543,5.99,2005-08-01T12:36:09Z,2020-02-15T06:59:47Z +802,29,2,10899,1.99,2005-08-02T01:30:21Z,2020-02-15T06:59:47Z +803,29,1,11079,4.99,2005-08-02T07:29:10Z,2020-02-15T06:59:47Z +804,29,2,11962,2.99,2005-08-17T17:34:38Z,2020-02-15T06:59:47Z +805,29,1,12488,4.99,2005-08-18T12:48:22Z,2020-02-15T06:59:47Z +806,29,1,12508,2.99,2005-08-18T13:20:13Z,2020-02-15T06:59:47Z +807,29,2,12569,6.99,2005-08-18T15:20:46Z,2020-02-15T06:59:47Z +808,29,2,12615,6.99,2005-08-18T17:16:07Z,2020-02-15T06:59:47Z +809,29,2,13173,2.99,2005-08-19T13:50:36Z,2020-02-15T06:59:47Z +810,29,1,13436,0.99,2005-08-19T23:36:25Z,2020-02-15T06:59:47Z +811,29,2,13777,2.99,2005-08-20T12:03:35Z,2020-02-15T06:59:47Z +812,29,1,13832,3.99,2005-08-20T14:00:25Z,2020-02-15T06:59:47Z +813,29,1,14174,0.99,2005-08-21T03:01:45Z,2020-02-15T06:59:47Z +814,29,1,14703,4.99,2005-08-21T21:01:19Z,2020-02-15T06:59:47Z +815,29,1,14985,7.99,2005-08-22T07:35:56Z,2020-02-15T06:59:47Z +816,29,1,14997,5.99,2005-08-22T07:53:00Z,2020-02-15T06:59:47Z +817,29,2,15577,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:47Z +818,30,2,1874,1.99,2005-06-17T02:39:20Z,2020-02-15T06:59:47Z +819,30,2,1895,2.99,2005-06-17T04:25:12Z,2020-02-15T06:59:47Z +820,30,2,2154,4.99,2005-06-17T22:59:42Z,2020-02-15T06:59:47Z +821,30,2,2730,2.99,2005-06-19T15:10:09Z,2020-02-15T06:59:47Z +822,30,1,3964,4.99,2005-07-06T22:23:02Z,2020-02-15T06:59:47Z +823,30,2,4471,2.99,2005-07-08T00:21:29Z,2020-02-15T06:59:47Z +824,30,2,4642,2.99,2005-07-08T09:13:28Z,2020-02-15T06:59:47Z +825,30,2,5028,5.99,2005-07-09T02:34:45Z,2020-02-15T06:59:47Z +826,30,1,5108,9.99,2005-07-09T06:44:30Z,2020-02-15T06:59:47Z +827,30,1,5289,0.99,2005-07-09T15:14:08Z,2020-02-15T06:59:47Z +828,30,2,5972,7.99,2005-07-11T00:08:54Z,2020-02-15T06:59:47Z +829,30,1,6249,0.99,2005-07-11T15:02:02Z,2020-02-15T06:59:47Z +830,30,2,6359,2.99,2005-07-11T21:06:17Z,2020-02-15T06:59:47Z +831,30,2,7394,2.99,2005-07-27T16:03:08Z,2020-02-15T06:59:47Z +832,30,2,7769,4.99,2005-07-28T06:45:23Z,2020-02-15T06:59:47Z +833,30,1,8030,4.99,2005-07-28T16:12:53Z,2020-02-15T06:59:47Z +834,30,2,8038,4.99,2005-07-28T16:32:55Z,2020-02-15T06:59:47Z +835,30,1,8083,4.99,2005-07-28T18:09:48Z,2020-02-15T06:59:47Z +836,30,1,8641,2.99,2005-07-29T14:37:30Z,2020-02-15T06:59:47Z +837,30,2,9309,2.99,2005-07-30T16:55:53Z,2020-02-15T06:59:47Z +838,30,2,9551,0.99,2005-07-31T02:04:58Z,2020-02-15T06:59:47Z +839,30,1,9641,0.99,2005-07-31T05:33:48Z,2020-02-15T06:59:47Z +840,30,1,9998,2.99,2005-07-31T17:40:35Z,2020-02-15T06:59:47Z +841,30,1,10235,6.99,2005-08-01T01:57:48Z,2020-02-15T06:59:47Z +842,30,1,12240,2.99,2005-08-18T03:27:11Z,2020-02-15T06:59:48Z +843,30,1,12546,2.99,2005-08-18T14:29:37Z,2020-02-15T06:59:48Z +844,30,2,12758,0.99,2005-08-18T22:58:34Z,2020-02-15T06:59:48Z +845,30,1,13435,0.99,2005-08-19T23:35:44Z,2020-02-15T06:59:48Z +846,30,1,13682,4.99,2005-08-20T08:50:39Z,2020-02-15T06:59:48Z +847,30,1,14339,0.99,2005-08-21T08:37:15Z,2020-02-15T06:59:48Z +848,30,1,14585,2.99,2005-08-21T17:18:33Z,2020-02-15T06:59:48Z +849,30,1,15063,4.99,2005-08-22T10:39:51Z,2020-02-15T06:59:48Z +850,30,1,15544,4.99,2005-08-23T04:17:56Z,2020-02-15T06:59:48Z +851,30,2,15829,2.99,2005-08-23T15:17:14Z,2020-02-15T06:59:48Z +852,31,2,1656,4.99,2005-06-16T10:05:40Z,2020-02-15T06:59:48Z +853,31,1,1838,1.99,2005-06-16T23:20:16Z,2020-02-15T06:59:48Z +854,31,1,2233,0.99,2005-06-18T03:57:36Z,2020-02-15T06:59:48Z +855,31,2,2341,6.99,2005-06-18T11:35:30Z,2020-02-15T06:59:48Z +856,31,1,2396,7.99,2005-06-18T15:49:48Z,2020-02-15T06:59:48Z +857,31,2,2438,0.99,2005-06-18T18:34:21Z,2020-02-15T06:59:48Z +858,31,1,2530,0.99,2005-06-19T01:20:00Z,2020-02-15T06:59:48Z +859,31,2,2648,4.99,2005-06-19T10:06:20Z,2020-02-15T06:59:48Z +860,31,2,3117,2.99,2005-06-20T18:05:15Z,2020-02-15T06:59:48Z +861,31,2,3172,1.99,2005-06-20T22:19:25Z,2020-02-15T06:59:48Z +862,31,1,3205,0.99,2005-06-21T00:38:47Z,2020-02-15T06:59:48Z +863,31,1,3701,4.99,2005-07-06T10:12:45Z,2020-02-15T06:59:48Z +864,31,2,3967,4.99,2005-07-06T22:45:10Z,2020-02-15T06:59:48Z +865,31,1,4122,6.99,2005-07-07T07:15:35Z,2020-02-15T06:59:48Z +866,31,2,4738,9.99,2005-07-08T13:24:58Z,2020-02-15T06:59:48Z +867,31,1,6208,3.99,2005-07-11T12:34:56Z,2020-02-15T06:59:48Z +868,31,2,6580,4.99,2005-07-12T06:26:10Z,2020-02-15T06:59:48Z +869,31,1,7000,1.99,2005-07-27T01:23:24Z,2020-02-15T06:59:48Z +870,31,2,7138,3.99,2005-07-27T06:47:13Z,2020-02-15T06:59:48Z +871,31,2,7178,2.99,2005-07-27T08:09:25Z,2020-02-15T06:59:48Z +872,31,2,7464,2.99,2005-07-27T18:49:42Z,2020-02-15T06:59:48Z +873,31,2,8997,0.99,2005-07-30T04:53:56Z,2020-02-15T06:59:48Z +874,31,2,12085,4.99,2005-08-17T22:17:09Z,2020-02-15T06:59:48Z +875,31,1,12377,0.99,2005-08-18T08:26:05Z,2020-02-15T06:59:48Z +876,31,2,15682,6.99,2005-08-23T09:37:34Z,2020-02-15T06:59:48Z +877,31,2,15816,6.99,2005-08-23T14:58:06Z,2020-02-15T06:59:48Z +878,32,2,483,4.99,2005-05-27T23:00:25Z,2020-02-15T06:59:48Z +879,32,2,803,4.99,2005-05-29T17:52:30Z,2020-02-15T06:59:48Z +880,32,2,1067,4.99,2005-05-31T09:12:13Z,2020-02-15T06:59:48Z +881,32,2,1887,6.99,2005-06-17T03:53:18Z,2020-02-15T06:59:48Z +882,32,2,2160,0.99,2005-06-17T23:39:11Z,2020-02-15T06:59:48Z +883,32,2,2624,5.99,2005-06-19T08:22:09Z,2020-02-15T06:59:48Z +884,32,2,2891,1.99,2005-06-20T02:02:05Z,2020-02-15T06:59:48Z +885,32,1,3500,2.99,2005-07-06T00:11:13Z,2020-02-15T06:59:48Z +886,32,1,4434,2.99,2005-07-07T22:48:34Z,2020-02-15T06:59:48Z +887,32,2,4771,2.99,2005-07-08T15:33:32Z,2020-02-15T06:59:48Z +888,32,2,4899,0.99,2005-07-08T20:37:11Z,2020-02-15T06:59:48Z +889,32,1,5307,9.99,2005-07-09T15:57:15Z,2020-02-15T06:59:48Z +890,32,1,5767,0.99,2005-07-10T13:13:18Z,2020-02-15T06:59:48Z +891,32,1,5954,2.99,2005-07-10T23:22:01Z,2020-02-15T06:59:48Z +892,32,1,6122,3.99,2005-07-11T07:58:07Z,2020-02-15T06:59:48Z +893,32,2,6450,2.99,2005-07-12T00:49:05Z,2020-02-15T06:59:48Z +894,32,1,7084,6.99,2005-07-27T04:34:07Z,2020-02-15T06:59:48Z +895,32,1,7589,5.99,2005-07-27T23:23:36Z,2020-02-15T06:59:48Z +896,32,1,7793,2.99,2005-07-28T07:26:14Z,2020-02-15T06:59:48Z +897,32,2,8390,5.99,2005-07-29T05:52:26Z,2020-02-15T06:59:48Z +898,32,2,8453,2.99,2005-07-29T07:46:29Z,2020-02-15T06:59:48Z +899,32,2,8914,2.99,2005-07-30T01:42:03Z,2020-02-15T06:59:48Z +900,32,1,11135,4.99,2005-08-02T09:22:25Z,2020-02-15T06:59:48Z +901,32,2,11831,4.99,2005-08-17T12:54:47Z,2020-02-15T06:59:48Z +902,32,2,12414,9.99,2005-08-18T09:50:40Z,2020-02-15T06:59:48Z +903,32,1,13736,8.99,2005-08-20T10:31:23Z,2020-02-15T06:59:48Z +904,32,1,13931,1.99,2005-08-20T17:16:10Z,2020-02-15T06:59:48Z +905,32,1,14075,0.99,2005-08-20T23:18:54Z,2020-02-15T06:59:48Z +906,32,2,14570,5.99,2005-08-21T16:32:32Z,2020-02-15T06:59:48Z +907,33,1,165,2.99,2005-05-26T02:28:36Z,2020-02-15T06:59:48Z +908,33,1,1301,10.99,2005-06-15T09:46:33Z,2020-02-15T06:59:48Z +909,33,2,3173,8.99,2005-06-20T22:21:10Z,2020-02-15T06:59:48Z +910,33,1,4095,5.99,2005-07-07T06:01:48Z,2020-02-15T06:59:48Z +911,33,1,5421,0.99,2005-07-09T20:49:12Z,2020-02-15T06:59:48Z +912,33,1,5723,4.99,2005-07-10T11:14:48Z,2020-02-15T06:59:48Z +913,33,2,6280,0.99,2005-07-11T16:36:17Z,2020-02-15T06:59:48Z +914,33,1,7992,4.99,2005-07-28T14:53:06Z,2020-02-15T06:59:48Z +915,33,1,9040,4.99,2005-07-30T06:31:45Z,2020-02-15T06:59:48Z +916,33,2,9085,4.99,2005-07-30T08:17:24Z,2020-02-15T06:59:48Z +917,33,1,9254,1.99,2005-07-30T14:26:11Z,2020-02-15T06:59:48Z +918,33,2,10335,2.99,2005-08-01T04:59:30Z,2020-02-15T06:59:48Z +919,33,1,10870,4.99,2005-08-02T00:27:12Z,2020-02-15T06:59:48Z +920,33,1,13241,7.99,2005-08-19T16:25:00Z,2020-02-15T06:59:48Z +921,33,1,13858,2.99,2005-08-20T14:50:57Z,2020-02-15T06:59:48Z +922,33,1,13958,7.99,2005-08-20T18:11:44Z,2020-02-15T06:59:48Z +923,33,1,14002,0.99,2005-08-20T20:12:19Z,2020-02-15T06:59:48Z +924,33,1,14623,0.99,2005-08-21T18:29:13Z,2020-02-15T06:59:48Z +925,33,1,15096,5.99,2005-08-22T11:43:04Z,2020-02-15T06:59:48Z +926,33,2,15115,2.99,2005-08-22T12:28:01Z,2020-02-15T06:59:48Z +927,33,1,12277,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +928,34,1,1900,4.99,2005-06-17T04:29:58Z,2020-02-15T06:59:48Z +929,34,2,2257,5.99,2005-06-18T05:29:52Z,2020-02-15T06:59:48Z +930,34,1,3150,0.99,2005-06-20T20:35:28Z,2020-02-15T06:59:48Z +931,34,2,3508,3.99,2005-07-06T00:24:25Z,2020-02-15T06:59:48Z +932,34,1,3911,2.99,2005-07-06T20:09:11Z,2020-02-15T06:59:48Z +933,34,1,5188,4.99,2005-07-09T10:22:31Z,2020-02-15T06:59:48Z +934,34,2,5643,4.99,2005-07-10T06:49:00Z,2020-02-15T06:59:48Z +935,34,2,5918,5.99,2005-07-10T21:32:06Z,2020-02-15T06:59:48Z +936,34,2,7015,2.99,2005-07-27T02:15:01Z,2020-02-15T06:59:48Z +937,34,2,7124,2.99,2005-07-27T06:09:30Z,2020-02-15T06:59:48Z +938,34,1,7532,0.99,2005-07-27T21:20:52Z,2020-02-15T06:59:48Z +939,34,1,9160,3.99,2005-07-30T11:17:33Z,2020-02-15T06:59:48Z +940,34,1,10523,0.99,2005-08-01T11:52:32Z,2020-02-15T06:59:48Z +941,34,1,10615,4.99,2005-08-01T14:58:14Z,2020-02-15T06:59:48Z +942,34,2,11096,0.99,2005-08-02T08:05:19Z,2020-02-15T06:59:48Z +943,34,1,11505,2.99,2005-08-16T23:18:47Z,2020-02-15T06:59:48Z +944,34,2,11701,4.99,2005-08-17T07:15:47Z,2020-02-15T06:59:48Z +945,34,2,12286,2.99,2005-08-18T04:57:59Z,2020-02-15T06:59:48Z +946,34,1,12599,2.99,2005-08-18T16:42:45Z,2020-02-15T06:59:48Z +947,34,1,12651,0.99,2005-08-18T18:36:16Z,2020-02-15T06:59:48Z +948,34,1,13371,4.99,2005-08-19T21:21:47Z,2020-02-15T06:59:48Z +949,34,2,13949,2.99,2005-08-20T17:55:13Z,2020-02-15T06:59:48Z +950,34,1,14686,5.99,2005-08-21T20:32:08Z,2020-02-15T06:59:48Z +951,34,2,14701,7.99,2005-08-21T20:54:32Z,2020-02-15T06:59:48Z +952,35,2,47,3.99,2005-05-25T06:05:20Z,2020-02-15T06:59:48Z +953,35,1,424,6.99,2005-05-27T15:34:01Z,2020-02-15T06:59:48Z +954,35,1,1579,0.99,2005-06-16T04:09:08Z,2020-02-15T06:59:48Z +955,35,1,1989,2.99,2005-06-17T10:47:24Z,2020-02-15T06:59:48Z +956,35,1,2229,4.99,2005-06-18T03:50:18Z,2020-02-15T06:59:48Z +957,35,1,2231,0.99,2005-06-18T03:52:14Z,2020-02-15T06:59:48Z +958,35,1,2743,2.99,2005-06-19T16:15:56Z,2020-02-15T06:59:48Z +959,35,2,3112,4.99,2005-06-20T17:53:30Z,2020-02-15T06:59:48Z +960,35,2,3597,2.99,2005-07-06T05:03:59Z,2020-02-15T06:59:48Z +961,35,2,4098,4.99,2005-07-07T06:14:51Z,2020-02-15T06:59:48Z +962,35,2,4990,0.99,2005-07-09T00:48:49Z,2020-02-15T06:59:48Z +963,35,1,5013,2.99,2005-07-09T01:46:45Z,2020-02-15T06:59:48Z +964,35,2,5323,0.99,2005-07-09T16:34:07Z,2020-02-15T06:59:48Z +965,35,1,5916,5.99,2005-07-10T21:26:31Z,2020-02-15T06:59:48Z +966,35,1,5963,0.99,2005-07-10T23:47:08Z,2020-02-15T06:59:48Z +967,35,1,6147,5.99,2005-07-11T09:13:08Z,2020-02-15T06:59:48Z +968,35,1,6401,4.99,2005-07-11T22:44:34Z,2020-02-15T06:59:48Z +969,35,1,6565,4.99,2005-07-12T05:39:50Z,2020-02-15T06:59:48Z +970,35,1,6572,4.99,2005-07-12T05:56:38Z,2020-02-15T06:59:48Z +971,35,1,7140,4.99,2005-07-27T06:54:12Z,2020-02-15T06:59:48Z +972,35,1,8822,6.99,2005-07-29T22:20:21Z,2020-02-15T06:59:48Z +973,35,1,8971,5.99,2005-07-30T04:03:58Z,2020-02-15T06:59:48Z +974,35,2,9033,2.99,2005-07-30T06:07:42Z,2020-02-15T06:59:48Z +975,35,1,9579,6.99,2005-07-31T02:59:20Z,2020-02-15T06:59:48Z +976,35,1,11298,1.99,2005-08-02T15:32:32Z,2020-02-15T06:59:48Z +977,35,1,11452,7.99,2005-08-02T20:59:52Z,2020-02-15T06:59:48Z +978,35,1,11645,4.99,2005-08-17T04:50:56Z,2020-02-15T06:59:48Z +979,35,1,12055,4.99,2005-08-17T21:02:19Z,2020-02-15T06:59:48Z +980,35,1,13735,2.99,2005-08-20T10:31:01Z,2020-02-15T06:59:48Z +981,35,1,14110,0.99,2005-08-21T00:53:09Z,2020-02-15T06:59:48Z +982,35,2,14124,2.99,2005-08-21T01:31:51Z,2020-02-15T06:59:48Z +983,35,2,14735,4.99,2005-08-21T22:25:09Z,2020-02-15T06:59:48Z +984,36,1,349,0.99,2005-05-27T04:53:11Z,2020-02-15T06:59:48Z +985,36,1,716,0.99,2005-05-29T04:35:29Z,2020-02-15T06:59:48Z +986,36,2,2741,0.99,2005-06-19T16:05:41Z,2020-02-15T06:59:48Z +987,36,2,4135,0.99,2005-07-07T08:15:03Z,2020-02-15T06:59:48Z +988,36,2,4560,4.99,2005-07-08T04:58:48Z,2020-02-15T06:59:48Z +989,36,2,4762,4.99,2005-07-08T14:54:42Z,2020-02-15T06:59:48Z +990,36,1,5403,0.99,2005-07-09T20:07:09Z,2020-02-15T06:59:48Z +991,36,2,6030,0.99,2005-07-11T02:37:51Z,2020-02-15T06:59:48Z +992,36,1,7205,6.99,2005-07-27T09:06:13Z,2020-02-15T06:59:48Z +993,36,1,7647,0.99,2005-07-28T01:35:17Z,2020-02-15T06:59:48Z +994,36,2,7919,6.99,2005-07-28T11:59:45Z,2020-02-15T06:59:48Z +995,36,2,8099,0.99,2005-07-28T18:35:12Z,2020-02-15T06:59:48Z +996,36,1,8391,2.99,2005-07-29T05:52:50Z,2020-02-15T06:59:48Z +997,36,1,8952,4.99,2005-07-30T03:20:38Z,2020-02-15T06:59:48Z +998,36,1,9369,2.99,2005-07-30T18:52:19Z,2020-02-15T06:59:48Z +999,36,2,9805,0.99,2005-07-31T11:11:10Z,2020-02-15T06:59:48Z +1000,36,2,10525,2.99,2005-08-01T11:53:17Z,2020-02-15T06:59:48Z +1001,36,2,10761,2.99,2005-08-01T20:25:35Z,2020-02-15T06:59:48Z +1002,36,1,10963,0.99,2005-08-02T03:48:17Z,2020-02-15T06:59:48Z +1003,36,2,10964,6.99,2005-08-02T03:56:23Z,2020-02-15T06:59:48Z +1004,36,2,11616,4.99,2005-08-17T04:00:01Z,2020-02-15T06:59:48Z +1005,36,1,11813,4.99,2005-08-17T12:06:54Z,2020-02-15T06:59:48Z +1006,36,2,13562,2.99,2005-08-20T04:31:45Z,2020-02-15T06:59:48Z +1007,36,2,13564,1.99,2005-08-20T04:34:46Z,2020-02-15T06:59:48Z +1008,36,1,13674,4.99,2005-08-20T08:30:54Z,2020-02-15T06:59:48Z +1009,36,1,14647,9.99,2005-08-21T19:15:33Z,2020-02-15T06:59:48Z +1010,36,2,15657,4.99,2005-08-23T08:42:40Z,2020-02-15T06:59:48Z +1011,37,1,25,0.99,2005-05-25T03:21:20Z,2020-02-15T06:59:48Z +1012,37,1,923,2.99,2005-05-30T11:58:50Z,2020-02-15T06:59:48Z +1013,37,1,1583,4.99,2005-06-16T04:44:23Z,2020-02-15T06:59:48Z +1014,37,2,1812,1.99,2005-06-16T21:08:46Z,2020-02-15T06:59:48Z +1015,37,2,1854,3.99,2005-06-17T00:43:57Z,2020-02-15T06:59:48Z +1016,37,2,3472,7.99,2005-07-05T22:56:33Z,2020-02-15T06:59:48Z +1017,37,1,3734,5.99,2005-07-06T11:40:27Z,2020-02-15T06:59:48Z +1018,37,1,5425,5.99,2005-07-09T21:02:26Z,2020-02-15T06:59:48Z +1019,37,2,7939,0.99,2005-07-28T12:45:47Z,2020-02-15T06:59:48Z +1020,37,1,8419,9.99,2005-07-29T06:54:48Z,2020-02-15T06:59:48Z +1021,37,1,9567,5.99,2005-07-31T02:36:11Z,2020-02-15T06:59:48Z +1022,37,1,10538,2.99,2005-08-01T12:22:41Z,2020-02-15T06:59:48Z +1023,37,1,11176,3.99,2005-08-02T10:39:43Z,2020-02-15T06:59:48Z +1024,37,1,13046,7.99,2005-08-19T09:21:10Z,2020-02-15T06:59:48Z +1025,37,2,13147,4.99,2005-08-19T12:55:09Z,2020-02-15T06:59:48Z +1026,37,2,13444,0.99,2005-08-20T00:00:24Z,2020-02-15T06:59:48Z +1027,37,2,13493,3.99,2005-08-20T01:33:36Z,2020-02-15T06:59:48Z +1028,37,2,14025,8.99,2005-08-20T21:19:36Z,2020-02-15T06:59:48Z +1029,37,1,14084,0.99,2005-08-20T23:42:46Z,2020-02-15T06:59:48Z +1030,37,2,14532,2.99,2005-08-21T15:15:03Z,2020-02-15T06:59:48Z +1031,37,1,15028,3.99,2005-08-22T09:03:44Z,2020-02-15T06:59:48Z +1032,37,1,15904,0.99,2005-08-23T17:32:19Z,2020-02-15T06:59:48Z +1033,37,2,16035,0.99,2005-08-23T22:08:04Z,2020-02-15T06:59:48Z +1034,38,2,1250,2.99,2005-06-15T05:55:40Z,2020-02-15T06:59:48Z +1035,38,1,2550,1.99,2005-06-19T02:49:55Z,2020-02-15T06:59:48Z +1036,38,2,2605,1.99,2005-06-19T06:48:01Z,2020-02-15T06:59:48Z +1037,38,2,3003,4.99,2005-06-20T10:00:51Z,2020-02-15T06:59:48Z +1038,38,2,3392,3.99,2005-06-21T15:12:44Z,2020-02-15T06:59:48Z +1039,38,1,4202,5.99,2005-07-07T11:23:48Z,2020-02-15T06:59:48Z +1040,38,2,4228,1.99,2005-07-07T12:42:02Z,2020-02-15T06:59:48Z +1041,38,1,4300,4.99,2005-07-07T16:36:16Z,2020-02-15T06:59:48Z +1042,38,2,4644,4.99,2005-07-08T09:14:29Z,2020-02-15T06:59:48Z +1043,38,1,5273,2.99,2005-07-09T14:31:24Z,2020-02-15T06:59:48Z +1044,38,2,5460,2.99,2005-07-09T22:46:14Z,2020-02-15T06:59:48Z +1045,38,1,5822,2.99,2005-07-10T16:10:39Z,2020-02-15T06:59:48Z +1046,38,1,6864,5.99,2005-07-12T19:59:25Z,2020-02-15T06:59:48Z +1047,38,1,6961,0.99,2005-07-27T00:10:49Z,2020-02-15T06:59:48Z +1048,38,2,7158,4.99,2005-07-27T07:23:58Z,2020-02-15T06:59:48Z +1049,38,2,7163,5.99,2005-07-27T07:36:11Z,2020-02-15T06:59:48Z +1050,38,2,7321,5.99,2005-07-27T13:33:38Z,2020-02-15T06:59:48Z +1051,38,1,7795,0.99,2005-07-28T07:28:16Z,2020-02-15T06:59:48Z +1052,38,2,8924,3.99,2005-07-30T02:08:58Z,2020-02-15T06:59:48Z +1053,38,2,9216,0.99,2005-07-30T13:11:19Z,2020-02-15T06:59:48Z +1054,38,1,9284,0.99,2005-07-30T15:25:19Z,2020-02-15T06:59:48Z +1055,38,1,9621,4.99,2005-07-31T04:21:08Z,2020-02-15T06:59:48Z +1056,38,2,10111,2.99,2005-07-31T21:08:33Z,2020-02-15T06:59:48Z +1057,38,2,10524,6.99,2005-08-01T11:53:12Z,2020-02-15T06:59:48Z +1058,38,2,11049,3.99,2005-08-02T06:15:40Z,2020-02-15T06:59:48Z +1059,38,1,11344,2.99,2005-08-02T17:13:26Z,2020-02-15T06:59:48Z +1060,38,1,11817,4.99,2005-08-17T12:20:01Z,2020-02-15T06:59:48Z +1061,38,2,12092,0.99,2005-08-17T22:28:15Z,2020-02-15T06:59:48Z +1062,38,2,12187,1.99,2005-08-18T01:45:50Z,2020-02-15T06:59:48Z +1063,38,1,14554,4.99,2005-08-21T16:03:01Z,2020-02-15T06:59:48Z +1064,38,2,14632,2.99,2005-08-21T18:48:06Z,2020-02-15T06:59:48Z +1065,38,1,14787,6.99,2005-08-22T00:25:59Z,2020-02-15T06:59:48Z +1066,38,1,15668,2.99,2005-08-23T09:02:04Z,2020-02-15T06:59:48Z +1067,38,1,15738,5.99,2005-08-23T11:55:50Z,2020-02-15T06:59:48Z +1068,39,1,1625,5.99,2005-06-16T07:49:08Z,2020-02-15T06:59:48Z +1069,39,1,1905,4.99,2005-06-17T04:51:43Z,2020-02-15T06:59:48Z +1070,39,2,2135,0.99,2005-06-17T21:14:02Z,2020-02-15T06:59:48Z +1071,39,2,2439,4.99,2005-06-18T18:35:04Z,2020-02-15T06:59:48Z +1072,39,1,2631,4.99,2005-06-19T08:49:53Z,2020-02-15T06:59:48Z +1073,39,1,2876,4.99,2005-06-20T01:06:34Z,2020-02-15T06:59:48Z +1074,39,1,4419,5.99,2005-07-07T22:06:24Z,2020-02-15T06:59:48Z +1075,39,2,4695,8.99,2005-07-08T11:07:59Z,2020-02-15T06:59:48Z +1076,39,2,4712,6.99,2005-07-08T12:10:50Z,2020-02-15T06:59:48Z +1077,39,2,4727,7.99,2005-07-08T12:54:15Z,2020-02-15T06:59:48Z +1078,39,1,5451,4.99,2005-07-09T22:22:10Z,2020-02-15T06:59:48Z +1079,39,2,5515,2.99,2005-07-10T01:12:44Z,2020-02-15T06:59:48Z +1080,39,1,6045,2.99,2005-07-11T03:21:05Z,2020-02-15T06:59:48Z +1081,39,2,8307,6.99,2005-07-29T03:18:34Z,2020-02-15T06:59:48Z +1082,39,2,8366,1.99,2005-07-29T05:11:14Z,2020-02-15T06:59:48Z +1083,39,2,8723,7.99,2005-07-29T18:03:47Z,2020-02-15T06:59:48Z +1084,39,1,8805,2.99,2005-07-29T21:29:58Z,2020-02-15T06:59:48Z +1085,39,1,9431,1.99,2005-07-30T21:24:22Z,2020-02-15T06:59:48Z +1086,39,1,9656,4.99,2005-07-31T06:00:21Z,2020-02-15T06:59:48Z +1087,39,2,10052,4.99,2005-07-31T19:15:13Z,2020-02-15T06:59:48Z +1088,39,1,10126,0.99,2005-07-31T21:36:07Z,2020-02-15T06:59:48Z +1089,39,1,10251,4.99,2005-08-01T02:39:12Z,2020-02-15T06:59:48Z +1090,39,2,10269,4.99,2005-08-01T03:09:26Z,2020-02-15T06:59:48Z +1091,39,2,10630,0.99,2005-08-01T15:34:46Z,2020-02-15T06:59:48Z +1092,39,1,10639,9.99,2005-08-01T15:44:43Z,2020-02-15T06:59:48Z +1093,39,2,12268,0.99,2005-08-18T04:26:54Z,2020-02-15T06:59:48Z +1094,39,2,12459,4.99,2005-08-18T11:25:11Z,2020-02-15T06:59:48Z +1095,39,2,13101,7.99,2005-08-19T11:01:54Z,2020-02-15T06:59:48Z +1096,39,2,15124,5.99,2005-08-22T12:51:38Z,2020-02-15T06:59:48Z +1097,40,1,128,4.99,2005-05-25T21:19:53Z,2020-02-15T06:59:48Z +1098,40,2,2470,7.99,2005-06-18T20:28:31Z,2020-02-15T06:59:48Z +1099,40,2,2896,2.99,2005-06-20T02:33:42Z,2020-02-15T06:59:48Z +1100,40,1,2993,4.99,2005-06-20T09:12:12Z,2020-02-15T06:59:48Z +1101,40,1,3428,0.99,2005-06-21T18:39:34Z,2020-02-15T06:59:48Z +1102,40,2,5001,1.99,2005-07-09T01:17:04Z,2020-02-15T06:59:48Z +1103,40,2,5777,2.99,2005-07-10T13:38:41Z,2020-02-15T06:59:48Z +1104,40,1,5869,5.99,2005-07-10T18:40:09Z,2020-02-15T06:59:48Z +1105,40,1,6502,0.99,2005-07-12T03:15:45Z,2020-02-15T06:59:48Z +1106,40,2,7684,0.99,2005-07-28T03:11:54Z,2020-02-15T06:59:48Z +1107,40,2,8031,0.99,2005-07-28T16:15:49Z,2020-02-15T06:59:48Z +1108,40,2,8170,3.99,2005-07-28T21:32:29Z,2020-02-15T06:59:48Z +1109,40,1,9050,8.99,2005-07-30T06:59:55Z,2020-02-15T06:59:48Z +1110,40,2,9700,4.99,2005-07-31T07:29:59Z,2020-02-15T06:59:48Z +1111,40,2,9961,6.99,2005-07-31T16:07:50Z,2020-02-15T06:59:48Z +1112,40,1,9975,1.99,2005-07-31T16:53:43Z,2020-02-15T06:59:48Z +1113,40,1,10442,2.99,2005-08-01T08:58:08Z,2020-02-15T06:59:48Z +1114,40,2,11919,0.99,2005-08-17T16:08:49Z,2020-02-15T06:59:48Z +1115,40,2,11948,3.99,2005-08-17T17:11:05Z,2020-02-15T06:59:48Z +1116,40,2,12396,9.99,2005-08-18T09:11:23Z,2020-02-15T06:59:48Z +1117,40,2,12877,2.99,2005-08-19T03:16:58Z,2020-02-15T06:59:48Z +1118,40,1,13149,6.99,2005-08-19T13:07:12Z,2020-02-15T06:59:48Z +1119,40,1,13376,0.99,2005-08-19T21:31:45Z,2020-02-15T06:59:48Z +1120,40,1,13840,5.99,2005-08-20T14:23:20Z,2020-02-15T06:59:48Z +1121,40,1,13951,2.99,2005-08-20T17:58:11Z,2020-02-15T06:59:48Z +1122,40,1,14260,6.99,2005-08-21T06:01:08Z,2020-02-15T06:59:48Z +1123,40,1,15193,2.99,2005-08-22T16:06:49Z,2020-02-15T06:59:48Z +1124,41,1,2563,4.99,2005-06-19T03:24:17Z,2020-02-15T06:59:48Z +1125,41,2,3246,7.99,2005-06-21T03:10:01Z,2020-02-15T06:59:48Z +1126,41,2,3827,2.99,2005-07-06T15:52:03Z,2020-02-15T06:59:48Z +1127,41,2,4294,9.99,2005-07-07T15:56:23Z,2020-02-15T06:59:48Z +1128,41,1,4543,4.99,2005-07-08T04:06:55Z,2020-02-15T06:59:48Z +1129,41,1,4575,2.99,2005-07-08T05:49:14Z,2020-02-15T06:59:48Z +1130,41,1,6976,4.99,2005-07-27T00:40:01Z,2020-02-15T06:59:48Z +1131,41,2,7153,4.99,2005-07-27T07:15:38Z,2020-02-15T06:59:48Z +1132,41,1,7517,1.99,2005-07-27T20:57:07Z,2020-02-15T06:59:48Z +1133,41,2,8008,6.99,2005-07-28T15:25:55Z,2020-02-15T06:59:48Z +1134,41,1,8098,0.99,2005-07-28T18:34:20Z,2020-02-15T06:59:48Z +1135,41,1,8134,6.99,2005-07-28T20:01:23Z,2020-02-15T06:59:48Z +1136,41,2,8225,2.99,2005-07-28T23:59:29Z,2020-02-15T06:59:48Z +1137,41,1,8712,2.99,2005-07-29T17:30:06Z,2020-02-15T06:59:48Z +1138,41,2,9313,5.99,2005-07-30T16:59:43Z,2020-02-15T06:59:48Z +1139,41,1,10064,2.99,2005-07-31T19:27:02Z,2020-02-15T06:59:48Z +1140,41,1,10170,7.99,2005-07-31T23:27:31Z,2020-02-15T06:59:48Z +1141,41,2,10495,4.99,2005-08-01T10:45:51Z,2020-02-15T06:59:48Z +1142,41,1,10853,5.99,2005-08-02T00:00:54Z,2020-02-15T06:59:48Z +1143,41,2,12147,2.99,2005-08-18T00:10:20Z,2020-02-15T06:59:48Z +1144,41,2,12173,3.99,2005-08-18T01:08:34Z,2020-02-15T06:59:48Z +1145,41,2,12821,0.99,2005-08-19T01:07:02Z,2020-02-15T06:59:48Z +1146,41,2,14539,7.99,2005-08-21T15:29:47Z,2020-02-15T06:59:48Z +1147,41,2,15860,4.99,2005-08-23T16:08:40Z,2020-02-15T06:59:48Z +1148,41,1,15875,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1149,42,1,635,5.99,2005-05-28T17:46:57Z,2020-02-15T06:59:48Z +1150,42,2,1534,0.99,2005-06-16T00:49:32Z,2020-02-15T06:59:48Z +1151,42,2,2056,2.99,2005-06-17T15:27:33Z,2020-02-15T06:59:48Z +1152,42,1,2170,3.99,2005-06-17T23:57:34Z,2020-02-15T06:59:48Z +1153,42,1,2302,4.99,2005-06-18T08:27:33Z,2020-02-15T06:59:48Z +1154,42,2,4391,2.99,2005-07-07T21:09:38Z,2020-02-15T06:59:48Z +1155,42,2,5199,4.99,2005-07-09T10:50:56Z,2020-02-15T06:59:48Z +1156,42,2,5517,5.99,2005-07-10T01:15:00Z,2020-02-15T06:59:48Z +1157,42,2,5652,3.99,2005-07-10T07:18:58Z,2020-02-15T06:59:48Z +1158,42,1,6179,2.99,2005-07-11T10:59:59Z,2020-02-15T06:59:48Z +1159,42,1,6799,2.99,2005-07-12T16:52:13Z,2020-02-15T06:59:48Z +1160,42,1,6925,0.99,2005-07-26T22:52:32Z,2020-02-15T06:59:48Z +1161,42,1,7405,3.99,2005-07-27T16:25:11Z,2020-02-15T06:59:48Z +1162,42,1,8049,0.99,2005-07-28T16:51:58Z,2020-02-15T06:59:48Z +1163,42,1,8095,6.99,2005-07-28T18:32:40Z,2020-02-15T06:59:48Z +1164,42,1,8166,2.99,2005-07-28T21:23:33Z,2020-02-15T06:59:48Z +1165,42,1,8499,3.99,2005-07-29T09:10:41Z,2020-02-15T06:59:48Z +1166,42,2,8785,2.99,2005-07-29T20:36:26Z,2020-02-15T06:59:48Z +1167,42,2,8852,3.99,2005-07-29T23:30:03Z,2020-02-15T06:59:48Z +1168,42,2,8915,3.99,2005-07-30T01:42:09Z,2020-02-15T06:59:48Z +1169,42,2,10060,6.99,2005-07-31T19:23:00Z,2020-02-15T06:59:48Z +1170,42,2,10345,2.99,2005-08-01T05:18:56Z,2020-02-15T06:59:48Z +1171,42,2,10845,2.99,2005-08-01T23:47:03Z,2020-02-15T06:59:48Z +1172,42,1,10935,5.99,2005-08-02T02:54:53Z,2020-02-15T06:59:48Z +1173,42,1,12478,4.99,2005-08-18T12:25:16Z,2020-02-15T06:59:48Z +1174,42,2,12499,2.99,2005-08-18T13:05:37Z,2020-02-15T06:59:48Z +1175,42,1,14461,7.99,2005-08-21T12:50:33Z,2020-02-15T06:59:48Z +1176,42,1,15442,2.99,2005-08-23T00:42:49Z,2020-02-15T06:59:48Z +1177,42,1,13351,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1178,42,1,15407,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1179,43,2,123,4.99,2005-05-25T20:26:42Z,2020-02-15T06:59:48Z +1180,43,1,652,4.99,2005-05-28T20:08:47Z,2020-02-15T06:59:48Z +1181,43,2,1544,4.99,2005-06-16T01:28:22Z,2020-02-15T06:59:48Z +1182,43,2,3683,1.99,2005-07-06T09:25:56Z,2020-02-15T06:59:48Z +1183,43,1,4498,2.99,2005-07-08T02:07:50Z,2020-02-15T06:59:48Z +1184,43,1,5162,4.99,2005-07-09T09:00:11Z,2020-02-15T06:59:48Z +1185,43,1,5401,4.99,2005-07-09T19:59:10Z,2020-02-15T06:59:48Z +1186,43,1,5831,2.99,2005-07-10T16:34:02Z,2020-02-15T06:59:48Z +1187,43,2,5941,4.99,2005-07-10T22:40:47Z,2020-02-15T06:59:48Z +1188,43,1,6474,3.99,2005-07-12T01:36:46Z,2020-02-15T06:59:48Z +1189,43,2,6680,0.99,2005-07-12T12:01:56Z,2020-02-15T06:59:48Z +1190,43,1,7348,4.99,2005-07-27T14:32:32Z,2020-02-15T06:59:48Z +1191,43,2,7868,4.99,2005-07-28T10:08:55Z,2020-02-15T06:59:48Z +1192,43,2,8376,4.99,2005-07-29T05:25:32Z,2020-02-15T06:59:48Z +1193,43,1,9204,4.99,2005-07-30T12:43:58Z,2020-02-15T06:59:48Z +1194,43,1,11753,4.99,2005-08-17T09:11:52Z,2020-02-15T06:59:48Z +1195,43,1,14244,2.99,2005-08-21T05:29:55Z,2020-02-15T06:59:48Z +1196,43,1,14649,4.99,2005-08-21T19:19:21Z,2020-02-15T06:59:48Z +1197,43,2,14837,4.99,2005-08-22T01:54:52Z,2020-02-15T06:59:48Z +1198,43,2,15155,4.99,2005-08-22T14:27:46Z,2020-02-15T06:59:48Z +1199,43,2,15800,6.99,2005-08-23T14:23:44Z,2020-02-15T06:59:48Z +1200,43,2,15945,2.99,2005-08-23T18:51:41Z,2020-02-15T06:59:48Z +1201,43,2,15644,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1202,43,1,15745,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1203,44,1,29,0.99,2005-05-25T03:47:12Z,2020-02-15T06:59:48Z +1204,44,1,99,4.99,2005-05-25T16:50:20Z,2020-02-15T06:59:48Z +1205,44,1,407,2.99,2005-05-27T13:57:38Z,2020-02-15T06:59:48Z +1206,44,2,721,0.99,2005-05-29T05:28:47Z,2020-02-15T06:59:48Z +1207,44,1,904,2.99,2005-05-30T10:19:42Z,2020-02-15T06:59:48Z +1208,44,1,1497,3.99,2005-06-15T21:56:39Z,2020-02-15T06:59:48Z +1209,44,1,2369,2.99,2005-06-18T14:25:29Z,2020-02-15T06:59:48Z +1210,44,1,2809,3.99,2005-06-19T19:40:27Z,2020-02-15T06:59:48Z +1211,44,2,2866,4.99,2005-06-20T00:01:36Z,2020-02-15T06:59:48Z +1212,44,2,4390,0.99,2005-07-07T20:59:06Z,2020-02-15T06:59:48Z +1213,44,2,4723,9.99,2005-07-08T12:44:59Z,2020-02-15T06:59:48Z +1214,44,1,5551,3.99,2005-07-10T03:01:09Z,2020-02-15T06:59:48Z +1215,44,1,5787,8.99,2005-07-10T14:08:49Z,2020-02-15T06:59:48Z +1216,44,2,5849,6.99,2005-07-10T17:32:33Z,2020-02-15T06:59:48Z +1217,44,2,5909,4.99,2005-07-10T20:46:13Z,2020-02-15T06:59:48Z +1218,44,1,7514,0.99,2005-07-27T20:51:49Z,2020-02-15T06:59:48Z +1219,44,2,7526,6.99,2005-07-27T21:13:47Z,2020-02-15T06:59:48Z +1220,44,2,8775,4.99,2005-07-29T20:05:38Z,2020-02-15T06:59:48Z +1221,44,1,8866,4.99,2005-07-29T23:58:19Z,2020-02-15T06:59:48Z +1222,44,1,11364,2.99,2005-08-02T17:53:36Z,2020-02-15T06:59:48Z +1223,44,2,12345,3.99,2005-08-18T07:16:58Z,2020-02-15T06:59:48Z +1224,44,1,12504,4.99,2005-08-18T13:17:07Z,2020-02-15T06:59:48Z +1225,44,1,12790,6.99,2005-08-19T00:16:54Z,2020-02-15T06:59:48Z +1226,44,2,12982,4.99,2005-08-19T07:06:34Z,2020-02-15T06:59:48Z +1227,44,2,15054,2.99,2005-08-22T10:14:33Z,2020-02-15T06:59:48Z +1228,44,2,13428,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1229,45,2,277,2.99,2005-05-26T17:32:11Z,2020-02-15T06:59:48Z +1230,45,1,1806,4.99,2005-06-16T20:41:57Z,2020-02-15T06:59:48Z +1231,45,2,1979,2.99,2005-06-17T09:45:30Z,2020-02-15T06:59:48Z +1232,45,2,2722,4.99,2005-06-19T14:55:17Z,2020-02-15T06:59:48Z +1233,45,1,3391,3.99,2005-06-21T15:11:02Z,2020-02-15T06:59:48Z +1234,45,2,3444,0.99,2005-06-21T20:39:39Z,2020-02-15T06:59:48Z +1235,45,1,4843,0.99,2005-07-08T18:27:28Z,2020-02-15T06:59:48Z +1236,45,1,5181,6.99,2005-07-09T10:07:27Z,2020-02-15T06:59:48Z +1237,45,1,5405,7.99,2005-07-09T20:11:49Z,2020-02-15T06:59:48Z +1238,45,1,5637,0.99,2005-07-10T06:31:37Z,2020-02-15T06:59:48Z +1239,45,2,6001,0.99,2005-07-11T01:24:44Z,2020-02-15T06:59:48Z +1240,45,2,6002,2.99,2005-07-11T01:27:49Z,2020-02-15T06:59:48Z +1241,45,1,6966,9.99,2005-07-27T00:15:35Z,2020-02-15T06:59:48Z +1242,45,1,7436,2.99,2005-07-27T17:39:12Z,2020-02-15T06:59:48Z +1243,45,1,7961,3.99,2005-07-28T13:47:21Z,2020-02-15T06:59:48Z +1244,45,1,10507,2.99,2005-08-01T11:22:20Z,2020-02-15T06:59:48Z +1245,45,2,10878,6.99,2005-08-02T00:33:12Z,2020-02-15T06:59:48Z +1246,45,1,11004,8.99,2005-08-02T05:04:18Z,2020-02-15T06:59:48Z +1247,45,1,11029,4.99,2005-08-02T05:51:10Z,2020-02-15T06:59:48Z +1248,45,2,11483,2.99,2005-08-02T22:28:22Z,2020-02-15T06:59:48Z +1249,45,2,11488,3.99,2005-08-02T22:35:15Z,2020-02-15T06:59:48Z +1250,45,1,11725,2.99,2005-08-17T08:09:00Z,2020-02-15T06:59:48Z +1251,45,1,13340,3.99,2005-08-19T20:18:39Z,2020-02-15T06:59:48Z +1252,45,2,13394,4.99,2005-08-19T22:05:19Z,2020-02-15T06:59:48Z +1253,45,1,14576,6.99,2005-08-21T16:52:03Z,2020-02-15T06:59:48Z +1254,45,1,15812,10.99,2005-08-23T14:47:26Z,2020-02-15T06:59:48Z +1255,45,2,16037,7.99,2005-08-23T22:13:04Z,2020-02-15T06:59:48Z +1256,46,2,401,2.99,2005-05-27T12:57:55Z,2020-02-15T06:59:48Z +1257,46,2,432,4.99,2005-05-27T16:40:29Z,2020-02-15T06:59:48Z +1258,46,1,938,2.99,2005-05-30T14:47:31Z,2020-02-15T06:59:48Z +1259,46,1,1166,4.99,2005-06-14T23:17:03Z,2020-02-15T06:59:48Z +1260,46,2,1214,4.99,2005-06-15T03:18:40Z,2020-02-15T06:59:48Z +1261,46,2,2144,0.99,2005-06-17T22:05:40Z,2020-02-15T06:59:48Z +1262,46,1,2203,2.99,2005-06-18T02:10:42Z,2020-02-15T06:59:48Z +1263,46,2,2965,8.99,2005-06-20T07:33:38Z,2020-02-15T06:59:48Z +1264,46,2,2975,4.99,2005-06-20T08:06:18Z,2020-02-15T06:59:48Z +1265,46,2,3439,4.99,2005-06-21T19:36:15Z,2020-02-15T06:59:48Z +1266,46,2,3855,2.99,2005-07-06T17:03:48Z,2020-02-15T06:59:48Z +1267,46,1,3916,4.99,2005-07-06T20:18:50Z,2020-02-15T06:59:48Z +1268,46,2,5698,4.99,2005-07-10T09:47:00Z,2020-02-15T06:59:48Z +1269,46,1,7336,0.99,2005-07-27T14:11:45Z,2020-02-15T06:59:48Z +1270,46,2,8152,3.99,2005-07-28T20:53:05Z,2020-02-15T06:59:48Z +1271,46,2,9045,8.99,2005-07-30T06:36:57Z,2020-02-15T06:59:48Z +1272,46,2,9806,2.99,2005-07-31T11:13:49Z,2020-02-15T06:59:48Z +1273,46,1,10088,2.99,2005-07-31T20:16:21Z,2020-02-15T06:59:48Z +1274,46,2,10428,4.99,2005-08-01T08:30:11Z,2020-02-15T06:59:48Z +1275,46,1,10803,4.99,2005-08-01T22:22:07Z,2020-02-15T06:59:48Z +1276,46,1,10827,5.99,2005-08-01T23:13:00Z,2020-02-15T06:59:48Z +1277,46,1,11721,0.99,2005-08-17T07:49:17Z,2020-02-15T06:59:48Z +1278,46,2,12095,4.99,2005-08-17T22:32:37Z,2020-02-15T06:59:48Z +1279,46,2,12238,2.99,2005-08-18T03:25:08Z,2020-02-15T06:59:48Z +1280,46,2,12280,4.99,2005-08-18T04:49:27Z,2020-02-15T06:59:48Z +1281,46,1,12298,2.99,2005-08-18T05:30:31Z,2020-02-15T06:59:48Z +1282,46,2,12455,4.99,2005-08-18T11:19:47Z,2020-02-15T06:59:48Z +1283,46,1,13226,0.99,2005-08-19T16:05:36Z,2020-02-15T06:59:48Z +1284,46,2,14144,4.99,2005-08-21T02:10:57Z,2020-02-15T06:59:48Z +1285,46,2,14528,6.99,2005-08-21T15:08:05Z,2020-02-15T06:59:48Z +1286,46,1,14940,4.99,2005-08-22T05:54:03Z,2020-02-15T06:59:48Z +1287,46,1,15438,2.99,2005-08-23T00:31:57Z,2020-02-15T06:59:48Z +1288,46,1,15708,0.99,2005-08-23T10:35:51Z,2020-02-15T06:59:48Z +1289,46,1,15758,5.99,2005-08-23T12:47:26Z,2020-02-15T06:59:48Z +1290,47,2,175,3.99,2005-05-26T03:46:26Z,2020-02-15T06:59:48Z +1291,47,2,207,4.99,2005-05-26T08:04:38Z,2020-02-15T06:59:48Z +1292,47,1,300,6.99,2005-05-26T20:57:00Z,2020-02-15T06:59:48Z +1293,47,1,1882,4.99,2005-06-17T03:17:21Z,2020-02-15T06:59:48Z +1294,47,1,2307,6.99,2005-06-18T08:34:59Z,2020-02-15T06:59:48Z +1295,47,2,3320,5.99,2005-06-21T08:29:41Z,2020-02-15T06:59:48Z +1296,47,1,3631,4.99,2005-07-06T06:36:53Z,2020-02-15T06:59:48Z +1297,47,2,4064,5.99,2005-07-07T04:29:20Z,2020-02-15T06:59:48Z +1298,47,1,5174,0.99,2005-07-09T09:31:59Z,2020-02-15T06:59:48Z +1299,47,2,6153,9.99,2005-07-11T09:31:04Z,2020-02-15T06:59:48Z +1300,47,2,6164,0.99,2005-07-11T10:16:23Z,2020-02-15T06:59:48Z +1301,47,1,6337,3.99,2005-07-11T19:30:47Z,2020-02-15T06:59:48Z +1302,47,2,8159,4.99,2005-07-28T21:09:28Z,2020-02-15T06:59:48Z +1303,47,2,8402,6.99,2005-07-29T06:25:45Z,2020-02-15T06:59:48Z +1304,47,1,8863,3.99,2005-07-29T23:52:01Z,2020-02-15T06:59:48Z +1305,47,2,9274,4.99,2005-07-30T15:07:04Z,2020-02-15T06:59:48Z +1306,47,1,11126,0.99,2005-08-02T08:59:04Z,2020-02-15T06:59:48Z +1307,47,2,11477,5.99,2005-08-02T22:09:01Z,2020-02-15T06:59:48Z +1308,47,1,12215,7.99,2005-08-18T02:35:39Z,2020-02-15T06:59:48Z +1309,47,2,12274,7.99,2005-08-18T04:41:47Z,2020-02-15T06:59:48Z +1310,47,1,14397,0.99,2005-08-21T10:25:56Z,2020-02-15T06:59:48Z +1311,47,2,15846,2.99,2005-08-23T15:39:18Z,2020-02-15T06:59:48Z +1312,48,2,72,0.99,2005-05-25T10:52:13Z,2020-02-15T06:59:48Z +1313,48,1,297,2.99,2005-05-26T20:48:48Z,2020-02-15T06:59:48Z +1314,48,1,390,4.99,2005-05-27T11:02:26Z,2020-02-15T06:59:48Z +1315,48,2,1689,9.99,2005-06-16T12:18:41Z,2020-02-15T06:59:48Z +1316,48,2,2822,0.99,2005-06-19T20:29:24Z,2020-02-15T06:59:48Z +1317,48,2,3758,4.99,2005-07-06T12:43:11Z,2020-02-15T06:59:48Z +1318,48,1,4367,2.99,2005-07-07T19:52:01Z,2020-02-15T06:59:48Z +1319,48,2,5148,6.99,2005-07-09T08:22:46Z,2020-02-15T06:59:48Z +1320,48,2,6498,3.99,2005-07-12T03:05:38Z,2020-02-15T06:59:48Z +1321,48,1,7920,2.99,2005-07-28T12:01:19Z,2020-02-15T06:59:48Z +1322,48,1,8716,6.99,2005-07-29T17:39:09Z,2020-02-15T06:59:48Z +1323,48,1,9402,7.99,2005-07-30T20:18:27Z,2020-02-15T06:59:48Z +1324,48,2,9742,7.99,2005-07-31T09:10:20Z,2020-02-15T06:59:48Z +1325,48,2,10276,2.99,2005-08-01T03:22:23Z,2020-02-15T06:59:48Z +1326,48,2,14450,1.99,2005-08-21T12:21:25Z,2020-02-15T06:59:48Z +1327,48,2,14536,2.99,2005-08-21T15:22:50Z,2020-02-15T06:59:48Z +1328,48,1,15228,3.99,2005-08-22T17:27:23Z,2020-02-15T06:59:48Z +1329,49,2,96,1.99,2005-05-25T16:32:19Z,2020-02-15T06:59:48Z +1330,49,1,239,3.99,2005-05-26T12:30:26Z,2020-02-15T06:59:48Z +1331,49,2,846,2.99,2005-05-30T01:17:45Z,2020-02-15T06:59:48Z +1332,49,2,1010,4.99,2005-05-31T01:57:32Z,2020-02-15T06:59:48Z +1333,49,1,1164,0.99,2005-06-14T23:16:26Z,2020-02-15T06:59:48Z +1334,49,2,1237,9.99,2005-06-15T04:44:10Z,2020-02-15T06:59:48Z +1335,49,2,1688,0.99,2005-06-16T12:11:20Z,2020-02-15T06:59:48Z +1336,49,2,1777,6.99,2005-06-16T18:52:12Z,2020-02-15T06:59:48Z +1337,49,2,3235,4.99,2005-06-21T02:46:17Z,2020-02-15T06:59:48Z +1338,49,2,3575,4.99,2005-07-06T03:36:19Z,2020-02-15T06:59:48Z +1339,49,2,3615,0.99,2005-07-06T05:47:47Z,2020-02-15T06:59:48Z +1340,49,1,5491,2.99,2005-07-10T00:09:45Z,2020-02-15T06:59:48Z +1341,49,1,6214,4.99,2005-07-11T12:49:48Z,2020-02-15T06:59:48Z +1342,49,1,6279,6.99,2005-07-11T16:26:07Z,2020-02-15T06:59:48Z +1343,49,1,6521,7.99,2005-07-12T04:06:11Z,2020-02-15T06:59:48Z +1344,49,2,6759,4.99,2005-07-12T15:14:48Z,2020-02-15T06:59:48Z +1345,49,2,7209,4.99,2005-07-27T09:16:53Z,2020-02-15T06:59:48Z +1346,49,2,7742,8.99,2005-07-28T05:33:16Z,2020-02-15T06:59:48Z +1347,49,2,8553,10.99,2005-07-29T11:15:36Z,2020-02-15T06:59:48Z +1348,49,2,9006,0.99,2005-07-30T05:06:32Z,2020-02-15T06:59:48Z +1349,49,1,9851,4.99,2005-07-31T12:50:24Z,2020-02-15T06:59:48Z +1350,49,1,10144,4.99,2005-07-31T22:13:52Z,2020-02-15T06:59:48Z +1351,49,1,10266,0.99,2005-08-01T03:05:59Z,2020-02-15T06:59:48Z +1352,49,1,10588,2.99,2005-08-01T14:10:21Z,2020-02-15T06:59:48Z +1353,49,1,10814,2.99,2005-08-01T22:43:12Z,2020-02-15T06:59:48Z +1354,49,2,14168,5.99,2005-08-21T03:00:03Z,2020-02-15T06:59:48Z +1355,49,1,14627,6.99,2005-08-21T18:35:54Z,2020-02-15T06:59:48Z +1356,49,1,14676,2.99,2005-08-21T20:02:18Z,2020-02-15T06:59:48Z +1357,50,1,763,4.99,2005-05-29T11:32:15Z,2020-02-15T06:59:48Z +1358,50,1,794,4.99,2005-05-29T16:44:11Z,2020-02-15T06:59:48Z +1359,50,1,905,4.99,2005-05-30T10:25:00Z,2020-02-15T06:59:48Z +1360,50,1,1029,4.99,2005-05-31T03:52:02Z,2020-02-15T06:59:48Z +1361,50,2,1136,4.99,2005-05-31T19:19:36Z,2020-02-15T06:59:48Z +1362,50,1,1223,2.99,2005-06-15T03:38:53Z,2020-02-15T06:59:48Z +1363,50,1,1785,4.99,2005-06-16T19:27:12Z,2020-02-15T06:59:48Z +1364,50,2,3000,0.99,2005-06-20T09:32:33Z,2020-02-15T06:59:48Z +1365,50,2,3169,2.99,2005-06-20T21:55:54Z,2020-02-15T06:59:48Z +1366,50,2,4149,2.99,2005-07-07T08:40:17Z,2020-02-15T06:59:48Z +1367,50,2,5290,4.99,2005-07-09T15:14:47Z,2020-02-15T06:59:48Z +1368,50,2,5641,4.99,2005-07-10T06:43:43Z,2020-02-15T06:59:48Z +1369,50,2,5681,9.99,2005-07-10T08:48:39Z,2020-02-15T06:59:48Z +1370,50,1,5928,6.99,2005-07-10T21:58:30Z,2020-02-15T06:59:48Z +1371,50,2,6634,0.99,2005-07-12T09:37:18Z,2020-02-15T06:59:48Z +1372,50,1,6667,8.99,2005-07-12T11:36:22Z,2020-02-15T06:59:48Z +1373,50,1,7383,4.99,2005-07-27T15:46:53Z,2020-02-15T06:59:48Z +1374,50,1,8089,0.99,2005-07-28T18:26:47Z,2020-02-15T06:59:48Z +1375,50,1,8261,0.99,2005-07-29T01:11:05Z,2020-02-15T06:59:48Z +1376,50,1,8619,5.99,2005-07-29T13:50:08Z,2020-02-15T06:59:48Z +1377,50,2,9179,0.99,2005-07-30T12:02:41Z,2020-02-15T06:59:48Z +1378,50,1,9615,4.99,2005-07-31T03:59:56Z,2020-02-15T06:59:48Z +1379,50,2,9691,10.99,2005-07-31T07:09:55Z,2020-02-15T06:59:48Z +1380,50,2,10046,2.99,2005-07-31T19:07:11Z,2020-02-15T06:59:48Z +1381,50,2,10165,0.99,2005-07-31T23:21:23Z,2020-02-15T06:59:48Z +1382,50,2,10180,6.99,2005-07-31T23:57:43Z,2020-02-15T06:59:48Z +1383,50,2,10261,4.99,2005-08-01T02:58:27Z,2020-02-15T06:59:48Z +1384,50,2,10485,7.99,2005-08-01T10:20:34Z,2020-02-15T06:59:48Z +1385,50,2,11053,3.99,2005-08-02T06:27:13Z,2020-02-15T06:59:48Z +1386,50,1,12766,6.99,2005-08-18T23:25:20Z,2020-02-15T06:59:48Z +1387,50,2,13136,7.99,2005-08-19T12:24:23Z,2020-02-15T06:59:48Z +1388,50,1,14054,4.99,2005-08-20T22:17:01Z,2020-02-15T06:59:48Z +1389,50,2,15138,2.99,2005-08-22T13:36:30Z,2020-02-15T06:59:48Z +1390,50,2,15388,6.99,2005-08-22T22:49:23Z,2020-02-15T06:59:48Z +1391,50,1,16015,4.99,2005-08-23T21:25:03Z,2020-02-15T06:59:48Z +1392,51,2,119,4.99,2005-05-25T19:37:02Z,2020-02-15T06:59:48Z +1393,51,1,661,4.99,2005-05-28T21:01:25Z,2020-02-15T06:59:48Z +1394,51,2,1028,4.99,2005-05-31T03:48:05Z,2020-02-15T06:59:48Z +1395,51,2,1373,1.99,2005-06-15T14:48:04Z,2020-02-15T06:59:48Z +1396,51,1,1477,0.99,2005-06-15T21:11:18Z,2020-02-15T06:59:48Z +1397,51,1,3525,9.99,2005-07-06T01:02:39Z,2020-02-15T06:59:48Z +1398,51,1,5230,2.99,2005-07-09T12:30:23Z,2020-02-15T06:59:48Z +1399,51,2,5304,5.99,2005-07-09T15:48:06Z,2020-02-15T06:59:48Z +1400,51,1,5473,7.99,2005-07-09T23:19:11Z,2020-02-15T06:59:48Z +1401,51,1,5606,4.99,2005-07-10T05:07:55Z,2020-02-15T06:59:48Z +1402,51,1,7207,5.99,2005-07-27T09:13:26Z,2020-02-15T06:59:48Z +1403,51,1,7398,6.99,2005-07-27T16:07:22Z,2020-02-15T06:59:48Z +1404,51,1,7636,5.99,2005-07-28T01:08:36Z,2020-02-15T06:59:48Z +1405,51,1,8495,4.99,2005-07-29T09:05:06Z,2020-02-15T06:59:48Z +1406,51,1,8693,0.99,2005-07-29T16:44:13Z,2020-02-15T06:59:48Z +1407,51,1,8880,0.99,2005-07-30T00:16:55Z,2020-02-15T06:59:48Z +1408,51,2,9649,0.99,2005-07-31T05:46:54Z,2020-02-15T06:59:48Z +1409,51,2,10244,4.99,2005-08-01T02:20:01Z,2020-02-15T06:59:48Z +1410,51,1,10780,2.99,2005-08-01T21:14:24Z,2020-02-15T06:59:48Z +1411,51,1,10894,0.99,2005-08-02T01:12:35Z,2020-02-15T06:59:48Z +1412,51,1,11302,2.99,2005-08-02T15:38:03Z,2020-02-15T06:59:48Z +1413,51,2,11685,4.99,2005-08-17T06:39:16Z,2020-02-15T06:59:48Z +1414,51,2,11751,6.99,2005-08-17T09:07:56Z,2020-02-15T06:59:48Z +1415,51,1,12184,0.99,2005-08-18T01:36:00Z,2020-02-15T06:59:48Z +1416,51,1,12725,4.99,2005-08-18T21:43:09Z,2020-02-15T06:59:48Z +1417,51,2,13098,2.99,2005-08-19T10:51:59Z,2020-02-15T06:59:48Z +1418,51,1,13302,2.99,2005-08-19T18:54:26Z,2020-02-15T06:59:48Z +1419,51,1,13868,0.99,2005-08-20T15:06:26Z,2020-02-15T06:59:48Z +1420,51,2,13882,2.99,2005-08-20T15:23:26Z,2020-02-15T06:59:48Z +1421,51,2,14221,6.99,2005-08-21T04:49:41Z,2020-02-15T06:59:48Z +1422,51,2,14512,4.99,2005-08-21T14:47:09Z,2020-02-15T06:59:48Z +1423,51,1,14617,4.99,2005-08-21T18:07:40Z,2020-02-15T06:59:48Z +1424,51,1,14903,4.99,2005-08-22T04:31:50Z,2020-02-15T06:59:48Z +1425,52,1,874,0.99,2005-05-30T05:36:21Z,2020-02-15T06:59:48Z +1426,52,1,1196,4.99,2005-06-15T01:38:31Z,2020-02-15T06:59:48Z +1427,52,2,2232,0.99,2005-06-18T03:54:31Z,2020-02-15T06:59:48Z +1428,52,1,2862,2.99,2005-06-19T23:47:24Z,2020-02-15T06:59:48Z +1429,52,2,3196,4.99,2005-06-21T00:02:28Z,2020-02-15T06:59:48Z +1430,52,1,3997,1.99,2005-07-06T23:46:52Z,2020-02-15T06:59:48Z +1431,52,1,5308,0.99,2005-07-09T15:58:38Z,2020-02-15T06:59:48Z +1432,52,2,5313,3.99,2005-07-09T16:04:45Z,2020-02-15T06:59:48Z +1433,52,1,5607,2.99,2005-07-10T05:08:10Z,2020-02-15T06:59:48Z +1434,52,1,6394,7.99,2005-07-11T22:29:15Z,2020-02-15T06:59:48Z +1435,52,2,7284,0.99,2005-07-27T12:12:04Z,2020-02-15T06:59:48Z +1436,52,2,7438,5.99,2005-07-27T17:40:40Z,2020-02-15T06:59:48Z +1437,52,2,7627,4.99,2005-07-28T00:56:47Z,2020-02-15T06:59:48Z +1438,52,1,8686,4.99,2005-07-29T16:17:49Z,2020-02-15T06:59:48Z +1439,52,1,9029,4.99,2005-07-30T06:03:11Z,2020-02-15T06:59:48Z +1440,52,2,9749,3.99,2005-07-31T09:18:33Z,2020-02-15T06:59:48Z +1441,52,2,9797,4.99,2005-07-31T10:53:44Z,2020-02-15T06:59:48Z +1442,52,2,10591,0.99,2005-08-01T14:12:29Z,2020-02-15T06:59:48Z +1443,52,1,10635,0.99,2005-08-01T15:37:58Z,2020-02-15T06:59:48Z +1444,52,1,11068,0.99,2005-08-02T07:08:07Z,2020-02-15T06:59:48Z +1445,52,1,11731,3.99,2005-08-17T08:24:35Z,2020-02-15T06:59:48Z +1446,52,2,12200,2.99,2005-08-18T02:12:33Z,2020-02-15T06:59:48Z +1447,52,2,12520,0.99,2005-08-18T13:42:45Z,2020-02-15T06:59:48Z +1448,52,2,13090,5.99,2005-08-19T10:39:54Z,2020-02-15T06:59:48Z +1449,52,2,14820,2.99,2005-08-22T01:18:37Z,2020-02-15T06:59:48Z +1450,52,1,14822,5.99,2005-08-22T01:21:14Z,2020-02-15T06:59:48Z +1451,52,2,14961,6.99,2005-08-22T06:35:50Z,2020-02-15T06:59:48Z +1452,52,2,15891,5.99,2005-08-23T17:00:12Z,2020-02-15T06:59:48Z +1453,52,1,12001,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1454,53,1,88,3.99,2005-05-25T14:13:54Z,2020-02-15T06:59:48Z +1455,53,1,378,2.99,2005-05-27T09:23:22Z,2020-02-15T06:59:48Z +1456,53,1,751,0.99,2005-05-29T09:55:43Z,2020-02-15T06:59:48Z +1457,53,2,783,5.99,2005-05-29T14:41:18Z,2020-02-15T06:59:48Z +1458,53,2,856,9.99,2005-05-30T02:01:21Z,2020-02-15T06:59:48Z +1459,53,1,1107,2.99,2005-05-31T15:04:05Z,2020-02-15T06:59:48Z +1460,53,1,1964,0.99,2005-06-17T09:10:09Z,2020-02-15T06:59:48Z +1461,53,1,2388,2.99,2005-06-18T15:26:30Z,2020-02-15T06:59:48Z +1462,53,1,2903,2.99,2005-06-20T02:49:01Z,2020-02-15T06:59:48Z +1463,53,2,3140,2.99,2005-06-20T19:47:12Z,2020-02-15T06:59:48Z +1464,53,2,3244,0.99,2005-06-21T03:01:10Z,2020-02-15T06:59:48Z +1465,53,2,3591,2.99,2005-07-06T04:37:10Z,2020-02-15T06:59:48Z +1466,53,2,3898,4.99,2005-07-06T19:12:37Z,2020-02-15T06:59:48Z +1467,53,2,5185,2.99,2005-07-09T10:14:39Z,2020-02-15T06:59:48Z +1468,53,2,7466,2.99,2005-07-27T18:51:17Z,2020-02-15T06:59:48Z +1469,53,1,7699,4.99,2005-07-28T03:52:21Z,2020-02-15T06:59:48Z +1470,53,1,9343,4.99,2005-07-30T18:13:13Z,2020-02-15T06:59:48Z +1471,53,1,9928,7.99,2005-07-31T15:13:57Z,2020-02-15T06:59:48Z +1472,53,1,10594,3.99,2005-08-01T14:14:59Z,2020-02-15T06:59:48Z +1473,53,1,12054,5.99,2005-08-17T20:59:56Z,2020-02-15T06:59:48Z +1474,53,1,12580,2.99,2005-08-18T15:49:08Z,2020-02-15T06:59:48Z +1475,53,1,13049,5.99,2005-08-19T09:25:40Z,2020-02-15T06:59:48Z +1476,53,2,13789,2.99,2005-08-20T12:16:38Z,2020-02-15T06:59:48Z +1477,53,1,14061,2.99,2005-08-20T22:32:11Z,2020-02-15T06:59:48Z +1478,53,2,14091,0.99,2005-08-21T00:11:17Z,2020-02-15T06:59:48Z +1479,53,2,14119,5.99,2005-08-21T01:15:59Z,2020-02-15T06:59:48Z +1480,53,1,14671,4.99,2005-08-21T19:59:30Z,2020-02-15T06:59:48Z +1481,53,2,14811,0.99,2005-08-22T01:09:04Z,2020-02-15T06:59:48Z +1482,53,2,11657,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1483,53,1,14137,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1484,54,2,198,4.99,2005-05-26T07:03:49Z,2020-02-15T06:59:48Z +1485,54,2,441,4.99,2005-05-27T18:11:05Z,2020-02-15T06:59:48Z +1486,54,2,545,3.99,2005-05-28T07:10:20Z,2020-02-15T06:59:48Z +1487,54,1,1556,4.99,2005-06-16T02:19:02Z,2020-02-15T06:59:48Z +1488,54,1,1571,2.99,2005-06-16T03:22:00Z,2020-02-15T06:59:48Z +1489,54,2,2323,6.99,2005-06-18T09:55:02Z,2020-02-15T06:59:48Z +1490,54,1,2647,4.99,2005-06-19T09:57:56Z,2020-02-15T06:59:48Z +1491,54,2,4657,4.99,2005-07-08T09:51:02Z,2020-02-15T06:59:48Z +1492,54,2,5055,1.99,2005-07-09T04:05:28Z,2020-02-15T06:59:48Z +1493,54,1,5929,2.99,2005-07-10T21:59:29Z,2020-02-15T06:59:48Z +1494,54,1,5992,2.99,2005-07-11T01:06:21Z,2020-02-15T06:59:48Z +1495,54,1,6338,7.99,2005-07-11T19:39:41Z,2020-02-15T06:59:48Z +1496,54,2,6560,2.99,2005-07-12T05:22:06Z,2020-02-15T06:59:48Z +1497,54,1,6813,0.99,2005-07-12T18:03:50Z,2020-02-15T06:59:48Z +1498,54,2,8992,4.99,2005-07-30T04:44:18Z,2020-02-15T06:59:48Z +1499,54,2,10489,5.99,2005-08-01T10:27:42Z,2020-02-15T06:59:48Z +1500,54,2,10882,5.99,2005-08-02T00:47:16Z,2020-02-15T06:59:48Z +1501,54,1,10956,4.99,2005-08-02T03:33:14Z,2020-02-15T06:59:48Z +1502,54,1,11182,4.99,2005-08-02T10:55:14Z,2020-02-15T06:59:48Z +1503,54,2,11887,2.99,2005-08-17T15:03:13Z,2020-02-15T06:59:48Z +1504,54,1,12526,2.99,2005-08-18T13:48:43Z,2020-02-15T06:59:48Z +1505,54,2,12775,5.99,2005-08-18T23:35:56Z,2020-02-15T06:59:48Z +1506,54,1,12811,4.99,2005-08-19T00:51:28Z,2020-02-15T06:59:48Z +1507,54,2,12872,0.99,2005-08-19T02:57:37Z,2020-02-15T06:59:48Z +1508,54,2,13315,2.99,2005-08-19T19:16:18Z,2020-02-15T06:59:48Z +1509,54,1,13890,0.99,2005-08-20T15:41:00Z,2020-02-15T06:59:48Z +1510,54,1,14215,4.99,2005-08-21T04:34:11Z,2020-02-15T06:59:48Z +1511,54,1,15226,10.99,2005-08-22T17:20:17Z,2020-02-15T06:59:48Z +1512,54,1,15567,4.99,2005-08-23T05:20:36Z,2020-02-15T06:59:48Z +1513,55,1,555,4.99,2005-05-28T08:31:14Z,2020-02-15T06:59:48Z +1514,55,1,1027,9.99,2005-05-31T03:46:19Z,2020-02-15T06:59:48Z +1515,55,1,1048,0.99,2005-05-31T06:49:53Z,2020-02-15T06:59:48Z +1516,55,2,1825,2.99,2005-06-16T21:53:05Z,2020-02-15T06:59:48Z +1517,55,2,2062,2.99,2005-06-17T15:56:43Z,2020-02-15T06:59:48Z +1518,55,1,2904,2.99,2005-06-20T02:54:06Z,2020-02-15T06:59:48Z +1519,55,1,2976,4.99,2005-06-20T08:09:11Z,2020-02-15T06:59:48Z +1520,55,1,3149,4.99,2005-06-20T20:34:55Z,2020-02-15T06:59:48Z +1521,55,1,4671,4.99,2005-07-08T10:15:32Z,2020-02-15T06:59:48Z +1522,55,2,6314,7.99,2005-07-11T18:32:44Z,2020-02-15T06:59:48Z +1523,55,2,7050,4.99,2005-07-27T03:33:17Z,2020-02-15T06:59:48Z +1524,55,2,8288,6.99,2005-07-29T02:04:22Z,2020-02-15T06:59:48Z +1525,55,1,9302,2.99,2005-07-30T16:34:57Z,2020-02-15T06:59:48Z +1526,55,2,9596,5.99,2005-07-31T03:28:47Z,2020-02-15T06:59:48Z +1527,55,2,9798,2.99,2005-07-31T10:55:18Z,2020-02-15T06:59:48Z +1528,55,2,11287,1.99,2005-08-02T14:49:51Z,2020-02-15T06:59:48Z +1529,55,1,12776,4.99,2005-08-18T23:37:33Z,2020-02-15T06:59:48Z +1530,55,1,12808,4.99,2005-08-19T00:40:41Z,2020-02-15T06:59:48Z +1531,55,2,12972,1.99,2005-08-19T06:43:28Z,2020-02-15T06:59:48Z +1532,55,1,13345,6.99,2005-08-19T20:25:24Z,2020-02-15T06:59:48Z +1533,55,1,14667,2.99,2005-08-21T19:51:11Z,2020-02-15T06:59:48Z +1534,55,1,15296,4.99,2005-08-22T19:37:20Z,2020-02-15T06:59:48Z +1535,56,1,130,3.99,2005-05-25T21:21:56Z,2020-02-15T06:59:48Z +1536,56,1,341,5.99,2005-05-27T04:01:42Z,2020-02-15T06:59:48Z +1537,56,1,496,2.99,2005-05-28T00:43:41Z,2020-02-15T06:59:48Z +1538,56,1,569,6.99,2005-05-28T10:12:41Z,2020-02-15T06:59:48Z +1539,56,2,1795,6.99,2005-06-16T20:09:01Z,2020-02-15T06:59:48Z +1540,56,1,2140,0.99,2005-06-17T21:40:29Z,2020-02-15T06:59:48Z +1541,56,1,2485,4.99,2005-06-18T21:26:03Z,2020-02-15T06:59:48Z +1542,56,1,2989,0.99,2005-06-20T08:59:37Z,2020-02-15T06:59:48Z +1543,56,1,3718,7.99,2005-07-06T10:57:56Z,2020-02-15T06:59:48Z +1544,56,2,3771,2.99,2005-07-06T13:19:34Z,2020-02-15T06:59:48Z +1545,56,1,4097,3.99,2005-07-07T06:10:55Z,2020-02-15T06:59:48Z +1546,56,2,4702,4.99,2005-07-08T11:41:36Z,2020-02-15T06:59:48Z +1547,56,1,5142,4.99,2005-07-09T08:05:23Z,2020-02-15T06:59:48Z +1548,56,1,7385,2.99,2005-07-27T15:49:46Z,2020-02-15T06:59:48Z +1549,56,1,7696,7.99,2005-07-28T03:41:35Z,2020-02-15T06:59:48Z +1550,56,2,7942,0.99,2005-07-28T12:49:44Z,2020-02-15T06:59:48Z +1551,56,1,8285,0.99,2005-07-29T02:00:18Z,2020-02-15T06:59:48Z +1552,56,2,10356,6.99,2005-08-01T05:49:17Z,2020-02-15T06:59:48Z +1553,56,2,10678,0.99,2005-08-01T17:26:24Z,2020-02-15T06:59:48Z +1554,56,1,10946,4.99,2005-08-02T03:20:39Z,2020-02-15T06:59:48Z +1555,56,1,11358,5.99,2005-08-02T17:45:02Z,2020-02-15T06:59:48Z +1556,56,1,11656,4.99,2005-08-17T05:11:09Z,2020-02-15T06:59:48Z +1557,56,2,12537,1.99,2005-08-18T14:06:39Z,2020-02-15T06:59:48Z +1558,56,2,12713,4.99,2005-08-18T21:07:28Z,2020-02-15T06:59:48Z +1559,56,2,13560,8.99,2005-08-20T04:17:16Z,2020-02-15T06:59:48Z +1560,56,1,13769,5.99,2005-08-20T11:43:52Z,2020-02-15T06:59:48Z +1561,56,2,14291,3.99,2005-08-21T07:03:05Z,2020-02-15T06:59:48Z +1562,56,2,14534,0.99,2005-08-21T15:16:29Z,2020-02-15T06:59:48Z +1563,56,2,15702,7.99,2005-08-23T10:23:28Z,2020-02-15T06:59:48Z +1564,56,2,15714,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1565,57,2,152,9.99,2005-05-26T00:41:10Z,2020-02-15T06:59:48Z +1566,57,2,943,4.99,2005-05-30T15:20:19Z,2020-02-15T06:59:48Z +1567,57,1,2058,5.99,2005-06-17T15:34:41Z,2020-02-15T06:59:48Z +1568,57,1,2105,0.99,2005-06-17T19:15:45Z,2020-02-15T06:59:48Z +1569,57,1,2360,4.99,2005-06-18T13:11:13Z,2020-02-15T06:59:48Z +1570,57,2,2910,7.99,2005-06-20T03:31:18Z,2020-02-15T06:59:48Z +1571,57,1,3357,0.99,2005-06-21T11:55:42Z,2020-02-15T06:59:48Z +1572,57,1,3727,4.99,2005-07-06T11:16:43Z,2020-02-15T06:59:48Z +1573,57,2,4226,4.99,2005-07-07T12:37:56Z,2020-02-15T06:59:48Z +1574,57,1,5060,4.99,2005-07-09T04:28:03Z,2020-02-15T06:59:48Z +1575,57,1,5694,0.99,2005-07-10T09:40:38Z,2020-02-15T06:59:48Z +1576,57,2,5948,2.99,2005-07-10T23:12:08Z,2020-02-15T06:59:48Z +1577,57,2,6482,4.99,2005-07-12T01:50:21Z,2020-02-15T06:59:48Z +1578,57,1,6494,1.99,2005-07-12T02:42:51Z,2020-02-15T06:59:48Z +1579,57,2,6649,4.99,2005-07-12T10:51:09Z,2020-02-15T06:59:48Z +1580,57,2,8249,5.99,2005-07-29T00:48:44Z,2020-02-15T06:59:48Z +1581,57,1,9086,0.99,2005-07-30T08:18:46Z,2020-02-15T06:59:48Z +1582,57,2,9136,0.99,2005-07-30T10:07:20Z,2020-02-15T06:59:48Z +1583,57,1,9211,1.99,2005-07-30T12:59:45Z,2020-02-15T06:59:48Z +1584,57,1,9703,0.99,2005-07-31T07:34:52Z,2020-02-15T06:59:48Z +1585,57,2,9812,2.99,2005-07-31T11:28:07Z,2020-02-15T06:59:48Z +1586,57,2,10169,4.99,2005-07-31T23:27:13Z,2020-02-15T06:59:48Z +1587,57,2,12925,5.99,2005-08-19T04:59:01Z,2020-02-15T06:59:48Z +1588,57,2,13163,0.99,2005-08-19T13:29:46Z,2020-02-15T06:59:48Z +1589,57,2,13743,0.99,2005-08-20T10:51:27Z,2020-02-15T06:59:48Z +1590,57,2,13929,9.99,2005-08-20T17:13:48Z,2020-02-15T06:59:48Z +1591,57,2,15571,0.99,2005-08-23T05:26:30Z,2020-02-15T06:59:48Z +1592,57,2,15871,9.99,2005-08-23T16:24:24Z,2020-02-15T06:59:48Z +1593,58,1,230,0.99,2005-05-26T11:31:50Z,2020-02-15T06:59:48Z +1594,58,2,276,7.99,2005-05-26T17:16:07Z,2020-02-15T06:59:48Z +1595,58,2,761,0.99,2005-05-29T11:09:01Z,2020-02-15T06:59:48Z +1596,58,1,2191,4.99,2005-06-18T01:33:09Z,2020-02-15T06:59:48Z +1597,58,2,2543,0.99,2005-06-19T02:14:11Z,2020-02-15T06:59:48Z +1598,58,1,2906,0.99,2005-06-20T03:04:56Z,2020-02-15T06:59:48Z +1599,58,1,3685,4.99,2005-07-06T09:30:45Z,2020-02-15T06:59:48Z +1600,58,2,4131,4.99,2005-07-07T07:53:18Z,2020-02-15T06:59:48Z +1601,58,2,5439,1.99,2005-07-09T21:39:35Z,2020-02-15T06:59:48Z +1602,58,1,7063,9.99,2005-07-27T03:52:27Z,2020-02-15T06:59:48Z +1603,58,2,7487,4.99,2005-07-27T19:32:45Z,2020-02-15T06:59:48Z +1604,58,1,8853,0.99,2005-07-29T23:34:21Z,2020-02-15T06:59:48Z +1605,58,2,9561,2.99,2005-07-31T02:22:13Z,2020-02-15T06:59:48Z +1606,58,2,10037,2.99,2005-07-31T18:48:08Z,2020-02-15T06:59:48Z +1607,58,1,10068,4.99,2005-07-31T19:39:38Z,2020-02-15T06:59:48Z +1608,58,2,10256,4.99,2005-08-01T02:47:11Z,2020-02-15T06:59:48Z +1609,58,1,10668,0.99,2005-08-01T17:00:27Z,2020-02-15T06:59:48Z +1610,58,1,11416,6.99,2005-08-02T19:44:04Z,2020-02-15T06:59:48Z +1611,58,2,12292,8.99,2005-08-18T05:08:54Z,2020-02-15T06:59:48Z +1612,58,1,13194,6.99,2005-08-19T14:34:12Z,2020-02-15T06:59:48Z +1613,58,1,13207,3.99,2005-08-19T15:14:38Z,2020-02-15T06:59:48Z +1614,58,1,13930,2.99,2005-08-20T17:15:06Z,2020-02-15T06:59:48Z +1615,58,2,13973,4.99,2005-08-20T18:52:43Z,2020-02-15T06:59:48Z +1616,58,2,14305,5.99,2005-08-21T07:29:05Z,2020-02-15T06:59:48Z +1617,58,1,14665,6.99,2005-08-21T19:49:46Z,2020-02-15T06:59:48Z +1618,58,1,14989,4.99,2005-08-22T07:47:07Z,2020-02-15T06:59:48Z +1619,58,2,15326,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1620,59,2,212,4.99,2005-05-26T08:34:41Z,2020-02-15T06:59:48Z +1621,59,2,951,2.99,2005-05-30T16:10:35Z,2020-02-15T06:59:48Z +1622,59,1,1154,5.99,2005-05-31T21:42:09Z,2020-02-15T06:59:48Z +1623,59,1,1269,2.99,2005-06-15T07:29:59Z,2020-02-15T06:59:48Z +1624,59,1,1728,3.99,2005-06-16T15:29:29Z,2020-02-15T06:59:48Z +1625,59,1,2921,3.99,2005-06-20T04:13:04Z,2020-02-15T06:59:48Z +1626,59,2,4148,2.99,2005-07-07T08:36:58Z,2020-02-15T06:59:48Z +1627,59,1,4384,4.99,2005-07-07T20:46:45Z,2020-02-15T06:59:48Z +1628,59,1,4631,4.99,2005-07-08T08:38:22Z,2020-02-15T06:59:48Z +1629,59,1,4891,3.99,2005-07-08T20:06:19Z,2020-02-15T06:59:48Z +1630,59,2,5195,8.99,2005-07-09T10:39:31Z,2020-02-15T06:59:48Z +1631,59,1,5207,3.99,2005-07-09T11:15:44Z,2020-02-15T06:59:48Z +1632,59,1,5830,4.99,2005-07-10T16:34:00Z,2020-02-15T06:59:48Z +1633,59,1,7991,4.99,2005-07-28T14:45:45Z,2020-02-15T06:59:48Z +1634,59,2,8643,4.99,2005-07-29T14:45:23Z,2020-02-15T06:59:48Z +1635,59,1,9469,8.99,2005-07-30T22:56:34Z,2020-02-15T06:59:48Z +1636,59,2,9573,6.99,2005-07-31T02:45:38Z,2020-02-15T06:59:48Z +1637,59,2,11396,4.99,2005-08-02T18:48:29Z,2020-02-15T06:59:48Z +1638,59,1,12833,5.99,2005-08-19T01:42:28Z,2020-02-15T06:59:48Z +1639,59,2,13282,2.99,2005-08-19T18:08:18Z,2020-02-15T06:59:48Z +1640,59,1,13573,2.99,2005-08-20T05:10:14Z,2020-02-15T06:59:48Z +1641,59,2,13921,4.99,2005-08-20T16:57:11Z,2020-02-15T06:59:48Z +1642,59,1,14135,5.99,2005-08-21T01:53:54Z,2020-02-15T06:59:48Z +1643,59,1,14977,5.99,2005-08-22T07:12:53Z,2020-02-15T06:59:48Z +1644,59,2,15271,5.99,2005-08-22T18:48:48Z,2020-02-15T06:59:48Z +1645,59,2,15744,4.99,2005-08-23T12:15:51Z,2020-02-15T06:59:48Z +1646,59,2,15905,2.99,2005-08-23T17:33:04Z,2020-02-15T06:59:48Z +1647,60,1,318,4.99,2005-05-26T23:37:39Z,2020-02-15T06:59:48Z +1648,60,2,706,1.99,2005-05-29T03:05:49Z,2020-02-15T06:59:48Z +1649,60,2,934,2.99,2005-05-30T13:24:46Z,2020-02-15T06:59:48Z +1650,60,2,1482,4.99,2005-06-15T21:18:16Z,2020-02-15T06:59:48Z +1651,60,2,2394,4.99,2005-06-18T15:42:30Z,2020-02-15T06:59:48Z +1652,60,2,3473,2.99,2005-07-05T22:57:34Z,2020-02-15T06:59:48Z +1653,60,1,3849,2.99,2005-07-06T16:49:43Z,2020-02-15T06:59:48Z +1654,60,1,6282,5.99,2005-07-11T16:46:22Z,2020-02-15T06:59:48Z +1655,60,2,7067,0.99,2005-07-27T03:55:10Z,2020-02-15T06:59:48Z +1656,60,1,7331,3.99,2005-07-27T13:57:50Z,2020-02-15T06:59:48Z +1657,60,1,7494,0.99,2005-07-27T19:56:31Z,2020-02-15T06:59:48Z +1658,60,1,9356,4.99,2005-07-30T18:36:24Z,2020-02-15T06:59:48Z +1659,60,1,9761,4.99,2005-07-31T09:31:54Z,2020-02-15T06:59:48Z +1660,60,2,10680,0.99,2005-08-01T17:28:05Z,2020-02-15T06:59:48Z +1661,60,1,11092,4.99,2005-08-02T07:58:50Z,2020-02-15T06:59:48Z +1662,60,1,11404,8.99,2005-08-02T19:12:40Z,2020-02-15T06:59:48Z +1663,60,1,12084,1.99,2005-08-17T22:16:49Z,2020-02-15T06:59:48Z +1664,60,2,12614,7.99,2005-08-18T17:16:03Z,2020-02-15T06:59:48Z +1665,60,1,15093,2.99,2005-08-22T11:39:03Z,2020-02-15T06:59:48Z +1666,60,1,15318,2.99,2005-08-22T20:15:16Z,2020-02-15T06:59:48Z +1667,60,1,15618,5.99,2005-08-23T07:07:58Z,2020-02-15T06:59:48Z +1668,60,1,15632,0.99,2005-08-23T07:30:26Z,2020-02-15T06:59:48Z +1669,60,1,15649,2.99,2005-08-23T08:28:03Z,2020-02-15T06:59:48Z +1670,60,2,12489,9.98,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1671,60,2,14741,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1672,61,1,1157,0.99,2005-05-31T22:47:45Z,2020-02-15T06:59:48Z +1673,61,1,7027,7.99,2005-07-27T02:50:15Z,2020-02-15T06:59:48Z +1674,61,2,7071,1.99,2005-07-27T04:01:15Z,2020-02-15T06:59:48Z +1675,61,2,8029,6.99,2005-07-28T16:11:21Z,2020-02-15T06:59:48Z +1676,61,2,8075,4.99,2005-07-28T17:37:28Z,2020-02-15T06:59:48Z +1677,61,1,8651,3.99,2005-07-29T15:02:18Z,2020-02-15T06:59:48Z +1678,61,2,9597,6.99,2005-07-31T03:29:07Z,2020-02-15T06:59:48Z +1679,61,2,10549,0.99,2005-08-01T12:46:39Z,2020-02-15T06:59:48Z +1680,61,2,11379,2.99,2005-08-02T18:16:55Z,2020-02-15T06:59:48Z +1681,61,1,12072,9.99,2005-08-17T21:50:25Z,2020-02-15T06:59:48Z +1682,61,1,13450,0.99,2005-08-20T00:18:15Z,2020-02-15T06:59:48Z +1683,61,1,13830,0.99,2005-08-20T13:57:59Z,2020-02-15T06:59:48Z +1684,61,2,15089,6.99,2005-08-22T11:34:06Z,2020-02-15T06:59:48Z +1685,61,1,15681,1.99,2005-08-23T09:35:34Z,2020-02-15T06:59:48Z +1686,62,2,885,0.99,2005-05-30T06:54:28Z,2020-02-15T06:59:48Z +1687,62,1,947,4.99,2005-05-30T15:36:57Z,2020-02-15T06:59:48Z +1688,62,2,1241,6.99,2005-06-15T04:59:43Z,2020-02-15T06:59:48Z +1689,62,1,1486,0.99,2005-06-15T21:25:30Z,2020-02-15T06:59:48Z +1690,62,1,1587,0.99,2005-06-16T04:52:28Z,2020-02-15T06:59:48Z +1691,62,2,3021,4.99,2005-06-20T11:13:01Z,2020-02-15T06:59:48Z +1692,62,1,3035,5.99,2005-06-20T12:17:03Z,2020-02-15T06:59:48Z +1693,62,1,3287,0.99,2005-06-21T06:32:39Z,2020-02-15T06:59:48Z +1694,62,1,3327,3.99,2005-06-21T09:04:50Z,2020-02-15T06:59:48Z +1695,62,2,3843,2.99,2005-07-06T16:35:40Z,2020-02-15T06:59:48Z +1696,62,2,4159,4.99,2005-07-07T09:10:57Z,2020-02-15T06:59:48Z +1697,62,2,5292,2.99,2005-07-09T15:16:54Z,2020-02-15T06:59:48Z +1698,62,2,8360,4.99,2005-07-29T05:08:00Z,2020-02-15T06:59:48Z +1699,62,2,10080,0.99,2005-07-31T20:07:10Z,2020-02-15T06:59:48Z +1700,62,1,10815,2.99,2005-08-01T22:46:21Z,2020-02-15T06:59:48Z +1701,62,1,11297,5.99,2005-08-02T15:22:47Z,2020-02-15T06:59:48Z +1702,62,1,11988,0.99,2005-08-17T18:23:50Z,2020-02-15T06:59:48Z +1703,62,2,13512,8.99,2005-08-20T02:27:13Z,2020-02-15T06:59:48Z +1704,62,2,14574,1.99,2005-08-21T16:50:34Z,2020-02-15T06:59:48Z +1705,62,2,14594,2.99,2005-08-21T17:34:24Z,2020-02-15T06:59:48Z +1706,62,2,14821,4.99,2005-08-22T01:20:19Z,2020-02-15T06:59:48Z +1707,62,1,15464,6.99,2005-08-23T01:15:18Z,2020-02-15T06:59:48Z +1708,62,1,15591,0.99,2005-08-23T06:11:52Z,2020-02-15T06:59:48Z +1709,63,2,1818,0.99,2005-06-16T21:30:34Z,2020-02-15T06:59:48Z +1710,63,2,3923,8.99,2005-07-06T20:34:10Z,2020-02-15T06:59:48Z +1711,63,1,4587,4.99,2005-07-08T06:16:26Z,2020-02-15T06:59:48Z +1712,63,1,5585,6.99,2005-07-10T04:15:43Z,2020-02-15T06:59:48Z +1713,63,2,5788,4.99,2005-07-10T14:10:22Z,2020-02-15T06:59:48Z +1714,63,2,5832,4.99,2005-07-10T16:34:48Z,2020-02-15T06:59:48Z +1715,63,2,6769,3.99,2005-07-12T15:48:54Z,2020-02-15T06:59:48Z +1716,63,2,6847,8.99,2005-07-12T19:22:37Z,2020-02-15T06:59:48Z +1717,63,2,8311,5.99,2005-07-29T03:26:07Z,2020-02-15T06:59:48Z +1718,63,2,9007,0.99,2005-07-30T05:09:32Z,2020-02-15T06:59:48Z +1719,63,1,9546,4.99,2005-07-31T01:47:40Z,2020-02-15T06:59:48Z +1720,63,2,9549,3.99,2005-07-31T01:57:04Z,2020-02-15T06:59:48Z +1721,63,1,9795,0.99,2005-07-31T10:47:19Z,2020-02-15T06:59:48Z +1722,63,2,9938,2.99,2005-07-31T15:28:47Z,2020-02-15T06:59:48Z +1723,63,2,10148,0.99,2005-07-31T22:19:16Z,2020-02-15T06:59:48Z +1724,63,1,10288,6.99,2005-08-01T03:38:42Z,2020-02-15T06:59:48Z +1725,63,1,11902,4.99,2005-08-17T15:37:34Z,2020-02-15T06:59:48Z +1726,63,2,12342,2.99,2005-08-18T07:12:46Z,2020-02-15T06:59:48Z +1727,63,2,12515,0.99,2005-08-18T13:39:26Z,2020-02-15T06:59:48Z +1728,63,1,12954,7.99,2005-08-19T06:04:34Z,2020-02-15T06:59:48Z +1729,63,1,13089,0.99,2005-08-19T10:38:56Z,2020-02-15T06:59:48Z +1730,63,1,13624,8.99,2005-08-20T06:51:02Z,2020-02-15T06:59:48Z +1731,63,1,14931,3.99,2005-08-22T05:38:55Z,2020-02-15T06:59:48Z +1732,63,1,15060,5.99,2005-08-22T10:24:32Z,2020-02-15T06:59:48Z +1733,63,1,15229,2.99,2005-08-22T17:30:25Z,2020-02-15T06:59:48Z +1734,64,1,494,4.99,2005-05-28T00:39:31Z,2020-02-15T06:59:48Z +1735,64,1,587,0.99,2005-05-28T12:05:33Z,2020-02-15T06:59:48Z +1736,64,1,1001,2.99,2005-05-31T00:46:31Z,2020-02-15T06:59:48Z +1737,64,2,1335,0.99,2005-06-15T11:51:30Z,2020-02-15T06:59:48Z +1738,64,1,2060,2.99,2005-06-17T15:42:42Z,2020-02-15T06:59:48Z +1739,64,2,3982,0.99,2005-07-06T23:14:16Z,2020-02-15T06:59:48Z +1740,64,1,4288,4.99,2005-07-07T15:38:25Z,2020-02-15T06:59:48Z +1741,64,1,4690,1.99,2005-07-08T11:04:02Z,2020-02-15T06:59:48Z +1742,64,2,4819,5.99,2005-07-08T17:19:15Z,2020-02-15T06:59:48Z +1743,64,2,4971,5.99,2005-07-08T23:54:49Z,2020-02-15T06:59:48Z +1744,64,1,5114,3.99,2005-07-09T07:07:05Z,2020-02-15T06:59:48Z +1745,64,2,5279,2.99,2005-07-09T14:46:36Z,2020-02-15T06:59:48Z +1746,64,1,5432,0.99,2005-07-09T21:21:25Z,2020-02-15T06:59:48Z +1747,64,2,6372,2.99,2005-07-11T21:35:06Z,2020-02-15T06:59:48Z +1748,64,2,6457,0.99,2005-07-12T01:06:35Z,2020-02-15T06:59:48Z +1749,64,2,6698,1.99,2005-07-12T12:45:00Z,2020-02-15T06:59:48Z +1750,64,2,6744,0.99,2005-07-12T14:30:28Z,2020-02-15T06:59:48Z +1751,64,2,7045,0.99,2005-07-27T03:27:35Z,2020-02-15T06:59:48Z +1752,64,1,7082,2.99,2005-07-27T04:27:32Z,2020-02-15T06:59:48Z +1753,64,1,7476,1.99,2005-07-27T19:08:56Z,2020-02-15T06:59:48Z +1754,64,2,8602,4.99,2005-07-29T13:04:27Z,2020-02-15T06:59:48Z +1755,64,1,9832,2.99,2005-07-31T12:01:49Z,2020-02-15T06:59:48Z +1756,64,1,9880,6.99,2005-07-31T13:49:02Z,2020-02-15T06:59:48Z +1757,64,1,9924,3.99,2005-07-31T15:04:57Z,2020-02-15T06:59:48Z +1758,64,2,10185,0.99,2005-08-01T00:12:11Z,2020-02-15T06:59:48Z +1759,64,2,10714,4.99,2005-08-01T18:51:29Z,2020-02-15T06:59:48Z +1760,64,1,10889,4.99,2005-08-02T00:54:33Z,2020-02-15T06:59:48Z +1761,64,1,12409,0.99,2005-08-18T09:43:58Z,2020-02-15T06:59:48Z +1762,64,1,13773,2.99,2005-08-20T11:50:14Z,2020-02-15T06:59:48Z +1763,64,1,13971,0.99,2005-08-20T18:44:53Z,2020-02-15T06:59:48Z +1764,64,1,14167,5.99,2005-08-21T02:59:48Z,2020-02-15T06:59:48Z +1765,64,2,14316,0.99,2005-08-21T07:59:47Z,2020-02-15T06:59:48Z +1766,64,2,13333,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1767,65,1,295,4.99,2005-05-26T20:33:20Z,2020-02-15T06:59:48Z +1768,65,2,657,0.99,2005-05-28T20:23:09Z,2020-02-15T06:59:48Z +1769,65,1,2173,7.99,2005-06-18T00:08:20Z,2020-02-15T06:59:48Z +1770,65,1,3051,4.99,2005-06-20T13:06:52Z,2020-02-15T06:59:48Z +1771,65,1,3535,4.99,2005-07-06T01:32:46Z,2020-02-15T06:59:48Z +1772,65,1,4240,4.99,2005-07-07T13:33:12Z,2020-02-15T06:59:48Z +1773,65,2,4635,3.99,2005-07-08T08:42:40Z,2020-02-15T06:59:48Z +1774,65,1,5735,3.99,2005-07-10T11:39:15Z,2020-02-15T06:59:48Z +1775,65,2,6527,0.99,2005-07-12T04:23:06Z,2020-02-15T06:59:48Z +1776,65,1,7877,6.99,2005-07-28T10:25:36Z,2020-02-15T06:59:48Z +1777,65,2,8392,1.99,2005-07-29T06:00:27Z,2020-02-15T06:59:48Z +1778,65,2,8404,5.99,2005-07-29T06:27:01Z,2020-02-15T06:59:48Z +1779,65,1,9293,3.99,2005-07-30T16:12:28Z,2020-02-15T06:59:48Z +1780,65,2,11100,5.99,2005-08-02T08:08:00Z,2020-02-15T06:59:48Z +1781,65,1,11227,8.99,2005-08-02T12:48:05Z,2020-02-15T06:59:48Z +1782,65,2,11461,4.99,2005-08-02T21:35:00Z,2020-02-15T06:59:48Z +1783,65,2,11845,2.99,2005-08-17T13:16:38Z,2020-02-15T06:59:48Z +1784,65,1,12114,7.99,2005-08-17T23:02:00Z,2020-02-15T06:59:48Z +1785,65,1,12688,6.99,2005-08-18T19:59:54Z,2020-02-15T06:59:48Z +1786,65,2,13692,0.99,2005-08-20T09:07:52Z,2020-02-15T06:59:48Z +1787,65,2,14140,6.99,2005-08-21T02:04:57Z,2020-02-15T06:59:48Z +1788,65,1,14356,0.99,2005-08-21T09:08:51Z,2020-02-15T06:59:48Z +1789,66,2,933,4.99,2005-05-30T13:08:45Z,2020-02-15T06:59:48Z +1790,66,1,1236,2.99,2005-06-15T04:34:27Z,2020-02-15T06:59:48Z +1791,66,1,1907,2.99,2005-06-17T05:08:27Z,2020-02-15T06:59:48Z +1792,66,1,2106,4.99,2005-06-17T19:29:03Z,2020-02-15T06:59:48Z +1793,66,2,2571,2.99,2005-06-19T04:20:14Z,2020-02-15T06:59:48Z +1794,66,1,2577,4.99,2005-06-19T04:36:03Z,2020-02-15T06:59:48Z +1795,66,1,3334,3.99,2005-06-21T10:04:33Z,2020-02-15T06:59:48Z +1796,66,2,3395,6.99,2005-06-21T15:19:19Z,2020-02-15T06:59:48Z +1797,66,1,3573,4.99,2005-07-06T03:33:48Z,2020-02-15T06:59:48Z +1798,66,2,3757,2.99,2005-07-06T12:42:26Z,2020-02-15T06:59:48Z +1799,66,2,4088,2.99,2005-07-07T05:31:55Z,2020-02-15T06:59:48Z +1800,66,1,4108,4.99,2005-07-07T06:38:31Z,2020-02-15T06:59:48Z +1801,66,2,4165,6.99,2005-07-07T09:23:27Z,2020-02-15T06:59:48Z +1802,66,2,4911,5.99,2005-07-08T21:20:26Z,2020-02-15T06:59:48Z +1803,66,2,5915,0.99,2005-07-10T21:12:16Z,2020-02-15T06:59:48Z +1804,66,1,6290,8.99,2005-07-11T17:12:42Z,2020-02-15T06:59:48Z +1805,66,2,6348,5.99,2005-07-11T20:21:18Z,2020-02-15T06:59:48Z +1806,66,1,6402,3.99,2005-07-11T22:46:10Z,2020-02-15T06:59:48Z +1807,66,1,6995,2.99,2005-07-27T01:12:13Z,2020-02-15T06:59:48Z +1808,66,1,7872,2.99,2005-07-28T10:18:16Z,2020-02-15T06:59:48Z +1809,66,1,9091,5.99,2005-07-30T08:30:45Z,2020-02-15T06:59:48Z +1810,66,1,10419,0.99,2005-08-01T08:13:22Z,2020-02-15T06:59:48Z +1811,66,2,11028,5.99,2005-08-02T05:48:20Z,2020-02-15T06:59:48Z +1812,66,2,11360,2.99,2005-08-02T17:46:04Z,2020-02-15T06:59:48Z +1813,66,1,11683,5.99,2005-08-17T06:15:17Z,2020-02-15T06:59:48Z +1814,66,1,11935,0.99,2005-08-17T16:42:13Z,2020-02-15T06:59:48Z +1815,66,1,12699,0.99,2005-08-18T20:20:59Z,2020-02-15T06:59:48Z +1816,66,1,13900,2.99,2005-08-20T16:05:41Z,2020-02-15T06:59:48Z +1817,66,2,14123,2.99,2005-08-21T01:31:25Z,2020-02-15T06:59:48Z +1818,66,1,14217,6.99,2005-08-21T04:37:56Z,2020-02-15T06:59:48Z +1819,66,2,14351,2.99,2005-08-21T09:04:20Z,2020-02-15T06:59:48Z +1820,66,2,14429,0.99,2005-08-21T11:29:43Z,2020-02-15T06:59:48Z +1821,66,2,15026,4.99,2005-08-22T09:01:52Z,2020-02-15T06:59:48Z +1822,66,1,15598,8.99,2005-08-23T06:23:26Z,2020-02-15T06:59:48Z +1823,67,2,331,9.99,2005-05-27T02:22:26Z,2020-02-15T06:59:48Z +1824,67,1,767,2.99,2005-05-29T12:20:19Z,2020-02-15T06:59:48Z +1825,67,1,2064,3.99,2005-06-17T15:57:56Z,2020-02-15T06:59:48Z +1826,67,1,2542,3.99,2005-06-19T02:08:39Z,2020-02-15T06:59:48Z +1827,67,2,2810,0.99,2005-06-19T19:44:12Z,2020-02-15T06:59:48Z +1828,67,1,3359,4.99,2005-06-21T12:08:18Z,2020-02-15T06:59:48Z +1829,67,2,4090,4.99,2005-07-07T05:47:33Z,2020-02-15T06:59:48Z +1830,67,2,5399,2.99,2005-07-09T19:52:44Z,2020-02-15T06:59:48Z +1831,67,2,5510,2.99,2005-07-10T00:58:37Z,2020-02-15T06:59:48Z +1832,67,1,6137,2.99,2005-07-11T08:34:20Z,2020-02-15T06:59:48Z +1833,67,2,7277,5.99,2005-07-27T11:48:37Z,2020-02-15T06:59:48Z +1834,67,2,7895,0.99,2005-07-28T10:57:15Z,2020-02-15T06:59:48Z +1835,67,2,8563,1.99,2005-07-29T11:32:58Z,2020-02-15T06:59:48Z +1836,67,1,9640,7.99,2005-07-31T05:33:25Z,2020-02-15T06:59:48Z +1837,67,1,11295,8.99,2005-08-02T15:10:06Z,2020-02-15T06:59:48Z +1838,67,1,11894,8.99,2005-08-17T15:15:01Z,2020-02-15T06:59:48Z +1839,67,2,13437,4.99,2005-08-19T23:37:52Z,2020-02-15T06:59:48Z +1840,67,1,13652,2.99,2005-08-20T07:52:34Z,2020-02-15T06:59:48Z +1841,67,2,13791,4.99,2005-08-20T12:21:05Z,2020-02-15T06:59:48Z +1842,67,2,13837,2.99,2005-08-20T14:19:03Z,2020-02-15T06:59:48Z +1843,67,2,14967,4.99,2005-08-22T06:46:03Z,2020-02-15T06:59:48Z +1844,67,2,15085,2.99,2005-08-22T11:19:22Z,2020-02-15T06:59:48Z +1845,68,2,1828,5.99,2005-06-16T22:04:34Z,2020-02-15T06:59:48Z +1846,68,2,1957,8.99,2005-06-17T08:50:58Z,2020-02-15T06:59:48Z +1847,68,2,2633,2.99,2005-06-19T08:53:10Z,2020-02-15T06:59:48Z +1848,68,2,2662,4.99,2005-06-19T10:53:42Z,2020-02-15T06:59:48Z +1849,68,1,2686,2.99,2005-06-19T12:44:20Z,2020-02-15T06:59:48Z +1850,68,1,3598,0.99,2005-07-06T05:11:04Z,2020-02-15T06:59:48Z +1851,68,2,3801,4.99,2005-07-06T15:05:50Z,2020-02-15T06:59:48Z +1852,68,1,3864,0.99,2005-07-06T17:41:42Z,2020-02-15T06:59:48Z +1853,68,2,4555,6.99,2005-07-08T04:48:36Z,2020-02-15T06:59:48Z +1854,68,1,4925,3.99,2005-07-08T21:56:00Z,2020-02-15T06:59:48Z +1855,68,1,6512,4.99,2005-07-12T03:42:49Z,2020-02-15T06:59:48Z +1856,68,2,9339,3.99,2005-07-30T18:03:28Z,2020-02-15T06:59:48Z +1857,68,1,9538,3.99,2005-07-31T01:25:22Z,2020-02-15T06:59:48Z +1858,68,2,9642,4.99,2005-07-31T05:33:57Z,2020-02-15T06:59:48Z +1859,68,1,10115,7.99,2005-07-31T21:13:47Z,2020-02-15T06:59:48Z +1860,68,1,11277,2.99,2005-08-02T14:28:50Z,2020-02-15T06:59:48Z +1861,68,2,12742,2.99,2005-08-18T22:22:03Z,2020-02-15T06:59:48Z +1862,68,2,13475,4.99,2005-08-20T01:05:05Z,2020-02-15T06:59:48Z +1863,68,2,14242,0.99,2005-08-21T05:25:59Z,2020-02-15T06:59:48Z +1864,68,2,14455,5.99,2005-08-21T12:36:11Z,2020-02-15T06:59:48Z +1865,68,1,14947,1.99,2005-08-22T06:07:52Z,2020-02-15T06:59:48Z +1866,68,1,15524,4.99,2005-08-23T03:36:26Z,2020-02-15T06:59:48Z +1867,69,2,584,4.99,2005-05-28T11:49:00Z,2020-02-15T06:59:48Z +1868,69,2,765,1.99,2005-05-29T11:38:34Z,2020-02-15T06:59:48Z +1869,69,1,1549,2.99,2005-06-16T01:57:15Z,2020-02-15T06:59:48Z +1870,69,1,3358,4.99,2005-06-21T11:56:40Z,2020-02-15T06:59:48Z +1871,69,1,3883,8.99,2005-07-06T18:39:38Z,2020-02-15T06:59:48Z +1872,69,1,4265,0.99,2005-07-07T14:27:51Z,2020-02-15T06:59:48Z +1873,69,1,4427,0.99,2005-07-07T22:28:51Z,2020-02-15T06:59:48Z +1874,69,2,5569,3.99,2005-07-10T03:38:32Z,2020-02-15T06:59:48Z +1875,69,2,6297,4.99,2005-07-11T17:37:22Z,2020-02-15T06:59:48Z +1876,69,1,6385,6.99,2005-07-11T22:07:32Z,2020-02-15T06:59:48Z +1877,69,2,6785,6.99,2005-07-12T16:30:57Z,2020-02-15T06:59:48Z +1878,69,2,8649,6.99,2005-07-29T14:57:33Z,2020-02-15T06:59:48Z +1879,69,2,9193,2.99,2005-07-30T12:28:42Z,2020-02-15T06:59:48Z +1880,69,1,9612,2.99,2005-07-31T03:58:31Z,2020-02-15T06:59:48Z +1881,69,2,10074,0.99,2005-07-31T19:57:16Z,2020-02-15T06:59:48Z +1882,69,1,11943,3.99,2005-08-17T17:00:42Z,2020-02-15T06:59:48Z +1883,69,1,12012,2.99,2005-08-17T19:20:48Z,2020-02-15T06:59:48Z +1884,69,1,12121,2.99,2005-08-17T23:20:40Z,2020-02-15T06:59:48Z +1885,69,1,12966,5.99,2005-08-19T06:37:48Z,2020-02-15T06:59:48Z +1886,69,1,13023,5.99,2005-08-19T08:13:54Z,2020-02-15T06:59:48Z +1887,69,2,14311,3.99,2005-08-21T07:45:47Z,2020-02-15T06:59:48Z +1888,69,2,14685,0.99,2005-08-21T20:31:25Z,2020-02-15T06:59:48Z +1889,69,2,14767,2.99,2005-08-21T23:43:00Z,2020-02-15T06:59:48Z +1890,69,1,15547,2.99,2005-08-23T04:25:50Z,2020-02-15T06:59:48Z +1891,69,2,11995,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1892,70,2,1044,4.99,2005-05-31T06:24:44Z,2020-02-15T06:59:48Z +1893,70,1,2472,4.99,2005-06-18T20:32:40Z,2020-02-15T06:59:48Z +1894,70,1,4061,0.99,2005-07-07T04:13:35Z,2020-02-15T06:59:48Z +1895,70,1,5927,5.99,2005-07-10T21:57:14Z,2020-02-15T06:59:48Z +1896,70,2,7036,4.99,2005-07-27T03:06:12Z,2020-02-15T06:59:48Z +1897,70,2,7421,7.99,2005-07-27T17:10:05Z,2020-02-15T06:59:48Z +1898,70,1,7714,2.99,2005-07-28T04:32:30Z,2020-02-15T06:59:48Z +1899,70,2,8550,0.99,2005-07-29T11:12:37Z,2020-02-15T06:59:48Z +1900,70,1,8747,2.99,2005-07-29T19:07:57Z,2020-02-15T06:59:48Z +1901,70,1,11274,9.99,2005-08-02T14:24:08Z,2020-02-15T06:59:48Z +1902,70,1,11901,2.99,2005-08-17T15:35:47Z,2020-02-15T06:59:48Z +1903,70,1,12003,4.99,2005-08-17T18:56:05Z,2020-02-15T06:59:48Z +1904,70,2,12218,4.99,2005-08-18T02:48:14Z,2020-02-15T06:59:48Z +1905,70,1,12581,6.99,2005-08-18T15:49:15Z,2020-02-15T06:59:48Z +1906,70,1,12951,3.99,2005-08-19T05:56:44Z,2020-02-15T06:59:48Z +1907,70,2,13680,4.99,2005-08-20T08:44:06Z,2020-02-15T06:59:48Z +1908,70,2,15238,0.99,2005-08-22T17:46:12Z,2020-02-15T06:59:48Z +1909,70,1,15616,3.99,2005-08-23T07:06:38Z,2020-02-15T06:59:48Z +1910,71,1,199,2.99,2005-05-26T07:11:58Z,2020-02-15T06:59:48Z +1911,71,1,272,9.99,2005-05-26T16:27:11Z,2020-02-15T06:59:48Z +1912,71,2,1873,2.99,2005-06-17T02:38:28Z,2020-02-15T06:59:48Z +1913,71,1,2374,4.99,2005-06-18T14:44:06Z,2020-02-15T06:59:48Z +1914,71,2,3345,5.99,2005-06-21T11:05:07Z,2020-02-15T06:59:48Z +1915,71,2,4614,4.99,2005-07-08T07:45:17Z,2020-02-15T06:59:48Z +1916,71,2,5281,1.99,2005-07-09T14:55:07Z,2020-02-15T06:59:48Z +1917,71,2,5358,3.99,2005-07-09T18:09:21Z,2020-02-15T06:59:48Z +1918,71,1,5543,8.99,2005-07-10T02:48:03Z,2020-02-15T06:59:48Z +1919,71,1,5770,4.99,2005-07-10T13:21:28Z,2020-02-15T06:59:48Z +1920,71,2,5814,4.99,2005-07-10T15:46:50Z,2020-02-15T06:59:48Z +1921,71,2,6020,0.99,2005-07-11T02:08:55Z,2020-02-15T06:59:48Z +1922,71,1,6739,5.99,2005-07-12T14:22:08Z,2020-02-15T06:59:48Z +1923,71,2,7160,0.99,2005-07-27T07:26:06Z,2020-02-15T06:59:48Z +1924,71,1,7550,4.99,2005-07-27T21:55:07Z,2020-02-15T06:59:48Z +1925,71,2,7982,4.99,2005-07-28T14:19:59Z,2020-02-15T06:59:48Z +1926,71,2,8128,2.99,2005-07-28T19:46:06Z,2020-02-15T06:59:48Z +1927,71,1,8293,2.99,2005-07-29T02:30:50Z,2020-02-15T06:59:48Z +1928,71,1,8574,1.99,2005-07-29T11:51:53Z,2020-02-15T06:59:48Z +1929,71,1,8668,4.99,2005-07-29T15:41:31Z,2020-02-15T06:59:48Z +1930,71,1,8783,3.99,2005-07-29T20:31:28Z,2020-02-15T06:59:48Z +1931,71,1,8789,4.99,2005-07-29T20:47:27Z,2020-02-15T06:59:48Z +1932,71,1,8956,0.99,2005-07-30T03:32:29Z,2020-02-15T06:59:48Z +1933,71,1,12417,4.99,2005-08-18T09:57:00Z,2020-02-15T06:59:48Z +1934,71,1,14105,7.99,2005-08-21T00:44:34Z,2020-02-15T06:59:48Z +1935,71,1,14228,3.99,2005-08-21T04:57:08Z,2020-02-15T06:59:48Z +1936,71,2,14781,4.99,2005-08-22T00:15:12Z,2020-02-15T06:59:48Z +1937,71,2,14904,3.99,2005-08-22T04:32:01Z,2020-02-15T06:59:48Z +1938,71,1,15704,4.99,2005-08-23T10:25:45Z,2020-02-15T06:59:48Z +1939,71,1,16000,0.99,2005-08-23T20:44:36Z,2020-02-15T06:59:48Z +1940,72,2,785,4.99,2005-05-29T15:08:41Z,2020-02-15T06:59:48Z +1941,72,2,845,4.99,2005-05-30T01:17:25Z,2020-02-15T06:59:48Z +1942,72,2,1047,0.99,2005-05-31T06:45:57Z,2020-02-15T06:59:48Z +1943,72,2,2294,4.99,2005-06-18T07:46:34Z,2020-02-15T06:59:48Z +1944,72,1,3700,0.99,2005-07-06T10:12:19Z,2020-02-15T06:59:48Z +1945,72,2,5223,4.99,2005-07-09T12:06:03Z,2020-02-15T06:59:48Z +1946,72,1,5302,4.99,2005-07-09T15:42:36Z,2020-02-15T06:59:48Z +1947,72,1,5424,0.99,2005-07-09T20:59:09Z,2020-02-15T06:59:48Z +1948,72,1,5840,4.99,2005-07-10T17:09:09Z,2020-02-15T06:59:48Z +1949,72,2,6081,0.99,2005-07-11T05:11:09Z,2020-02-15T06:59:48Z +1950,72,2,8228,4.99,2005-07-29T00:08:58Z,2020-02-15T06:59:48Z +1951,72,1,9027,2.99,2005-07-30T05:58:27Z,2020-02-15T06:59:48Z +1952,72,2,9420,5.99,2005-07-30T21:05:18Z,2020-02-15T06:59:48Z +1953,72,2,9648,4.99,2005-07-31T05:46:03Z,2020-02-15T06:59:48Z +1954,72,2,10267,0.99,2005-08-01T03:07:26Z,2020-02-15T06:59:48Z +1955,72,2,11206,6.99,2005-08-02T11:58:03Z,2020-02-15T06:59:48Z +1956,72,2,11422,5.99,2005-08-02T19:52:08Z,2020-02-15T06:59:48Z +1957,72,1,11630,2.99,2005-08-17T04:27:46Z,2020-02-15T06:59:48Z +1958,72,1,11679,4.99,2005-08-17T06:08:54Z,2020-02-15T06:59:48Z +1959,72,1,11923,2.99,2005-08-17T16:21:47Z,2020-02-15T06:59:48Z +1960,72,2,12020,2.99,2005-08-17T19:50:33Z,2020-02-15T06:59:48Z +1961,72,1,12448,0.99,2005-08-18T10:59:04Z,2020-02-15T06:59:48Z +1962,72,2,12593,0.99,2005-08-18T16:17:54Z,2020-02-15T06:59:48Z +1963,72,1,13145,0.99,2005-08-19T12:53:53Z,2020-02-15T06:59:48Z +1964,72,2,13327,4.99,2005-08-19T19:55:45Z,2020-02-15T06:59:48Z +1965,72,2,13597,0.99,2005-08-20T05:59:05Z,2020-02-15T06:59:48Z +1966,72,2,13660,4.99,2005-08-20T08:05:56Z,2020-02-15T06:59:48Z +1967,72,1,14020,0.99,2005-08-20T20:59:43Z,2020-02-15T06:59:48Z +1968,72,2,15110,0.99,2005-08-22T12:16:46Z,2020-02-15T06:59:48Z +1969,72,2,15146,2.99,2005-08-22T13:57:55Z,2020-02-15T06:59:48Z +1970,73,1,70,2.99,2005-05-25T10:15:23Z,2020-02-15T06:59:48Z +1971,73,2,1133,4.99,2005-05-31T19:12:21Z,2020-02-15T06:59:48Z +1972,73,1,1669,0.99,2005-06-16T10:20:20Z,2020-02-15T06:59:48Z +1973,73,2,2940,4.99,2005-06-20T05:20:01Z,2020-02-15T06:59:48Z +1974,73,2,4327,2.99,2005-07-07T18:01:39Z,2020-02-15T06:59:48Z +1975,73,1,4789,4.99,2005-07-08T16:22:01Z,2020-02-15T06:59:48Z +1976,73,2,5021,4.99,2005-07-09T02:09:41Z,2020-02-15T06:59:48Z +1977,73,1,6514,9.99,2005-07-12T03:47:44Z,2020-02-15T06:59:48Z +1978,73,1,6645,2.99,2005-07-12T10:39:55Z,2020-02-15T06:59:48Z +1979,73,1,7590,4.99,2005-07-27T23:24:24Z,2020-02-15T06:59:48Z +1980,73,1,7683,4.99,2005-07-28T03:11:29Z,2020-02-15T06:59:48Z +1981,73,1,8377,4.99,2005-07-29T05:27:40Z,2020-02-15T06:59:48Z +1982,73,1,9212,2.99,2005-07-30T13:03:13Z,2020-02-15T06:59:48Z +1983,73,1,9776,2.99,2005-07-31T10:01:03Z,2020-02-15T06:59:48Z +1984,73,2,10434,4.99,2005-08-01T08:47:00Z,2020-02-15T06:59:48Z +1985,73,1,11102,4.99,2005-08-02T08:08:30Z,2020-02-15T06:59:48Z +1986,73,2,11155,0.99,2005-08-02T09:55:28Z,2020-02-15T06:59:48Z +1987,73,2,11349,4.99,2005-08-02T17:21:49Z,2020-02-15T06:59:48Z +1988,73,2,11609,3.99,2005-08-17T03:41:11Z,2020-02-15T06:59:48Z +1989,73,2,12291,4.99,2005-08-18T05:08:37Z,2020-02-15T06:59:48Z +1990,73,1,13886,4.99,2005-08-20T15:34:43Z,2020-02-15T06:59:48Z +1991,73,1,15667,0.99,2005-08-23T09:02:03Z,2020-02-15T06:59:48Z +1992,73,2,16002,2.99,2005-08-23T20:47:12Z,2020-02-15T06:59:48Z +1993,73,2,13108,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +1994,74,2,1121,6.99,2005-05-31T16:37:36Z,2020-02-15T06:59:48Z +1995,74,1,2498,1.99,2005-06-18T22:56:26Z,2020-02-15T06:59:48Z +1996,74,2,2517,0.99,2005-06-19T00:11:26Z,2020-02-15T06:59:48Z +1997,74,1,3020,1.99,2005-06-20T11:12:04Z,2020-02-15T06:59:48Z +1998,74,2,3445,7.99,2005-06-21T20:40:28Z,2020-02-15T06:59:48Z +1999,74,2,3819,3.99,2005-07-06T15:35:06Z,2020-02-15T06:59:48Z +2000,74,1,5530,2.99,2005-07-10T02:13:49Z,2020-02-15T06:59:48Z +2001,74,2,5603,2.99,2005-07-10T05:04:54Z,2020-02-15T06:59:48Z +2002,74,2,5917,4.99,2005-07-10T21:30:22Z,2020-02-15T06:59:48Z +2003,74,1,6241,7.99,2005-07-11T14:40:48Z,2020-02-15T06:59:48Z +2004,74,1,6475,2.99,2005-07-12T01:36:57Z,2020-02-15T06:59:48Z +2005,74,1,7304,6.99,2005-07-27T12:56:56Z,2020-02-15T06:59:48Z +2006,74,2,8796,5.99,2005-07-29T21:09:11Z,2020-02-15T06:59:48Z +2007,74,2,9112,4.99,2005-07-30T09:06:31Z,2020-02-15T06:59:48Z +2008,74,2,10051,3.99,2005-07-31T19:14:20Z,2020-02-15T06:59:48Z +2009,74,1,10624,0.99,2005-08-01T15:27:05Z,2020-02-15T06:59:48Z +2010,74,2,12374,3.99,2005-08-18T08:07:45Z,2020-02-15T06:59:48Z +2011,74,2,12477,3.99,2005-08-18T12:25:01Z,2020-02-15T06:59:48Z +2012,74,2,13335,0.99,2005-08-19T20:03:18Z,2020-02-15T06:59:48Z +2013,74,2,13520,0.99,2005-08-20T02:41:46Z,2020-02-15T06:59:48Z +2014,74,1,13583,1.99,2005-08-20T05:29:45Z,2020-02-15T06:59:48Z +2015,74,2,13747,5.99,2005-08-20T10:56:06Z,2020-02-15T06:59:48Z +2016,74,1,15286,4.99,2005-08-22T19:17:56Z,2020-02-15T06:59:48Z +2017,74,2,15325,4.99,2005-08-22T20:27:38Z,2020-02-15T06:59:48Z +2018,74,2,15500,0.99,2005-08-23T02:39:37Z,2020-02-15T06:59:48Z +2019,74,2,15739,4.99,2005-08-23T11:56:22Z,2020-02-15T06:59:48Z +2020,74,1,16046,0.99,2005-08-23T22:26:47Z,2020-02-15T06:59:48Z +2021,75,1,180,4.99,2005-05-26T04:46:23Z,2020-02-15T06:59:48Z +2022,75,2,268,0.99,2005-05-26T16:19:08Z,2020-02-15T06:59:48Z +2023,75,1,1920,4.99,2005-06-17T06:00:23Z,2020-02-15T06:59:48Z +2024,75,1,2161,7.99,2005-06-17T23:39:50Z,2020-02-15T06:59:48Z +2025,75,2,2738,4.99,2005-06-19T15:56:30Z,2020-02-15T06:59:48Z +2026,75,2,3062,6.99,2005-06-20T13:50:00Z,2020-02-15T06:59:48Z +2027,75,1,3210,4.99,2005-06-21T01:00:25Z,2020-02-15T06:59:48Z +2028,75,1,3711,0.99,2005-07-06T10:46:15Z,2020-02-15T06:59:48Z +2029,75,2,4179,2.99,2005-07-07T10:17:15Z,2020-02-15T06:59:48Z +2030,75,2,4511,0.99,2005-07-08T02:36:21Z,2020-02-15T06:59:48Z +2031,75,1,4639,5.99,2005-07-08T08:57:21Z,2020-02-15T06:59:48Z +2032,75,2,5260,2.99,2005-07-09T14:05:45Z,2020-02-15T06:59:48Z +2033,75,2,6052,0.99,2005-07-11T03:51:27Z,2020-02-15T06:59:48Z +2034,75,1,6092,3.99,2005-07-11T05:51:31Z,2020-02-15T06:59:48Z +2035,75,1,6486,0.99,2005-07-12T02:09:36Z,2020-02-15T06:59:48Z +2036,75,2,6530,0.99,2005-07-12T04:33:19Z,2020-02-15T06:59:48Z +2037,75,2,6852,2.99,2005-07-12T19:33:49Z,2020-02-15T06:59:48Z +2038,75,1,7052,2.99,2005-07-27T03:36:38Z,2020-02-15T06:59:48Z +2039,75,1,7454,4.99,2005-07-27T18:27:26Z,2020-02-15T06:59:48Z +2040,75,1,7843,0.99,2005-07-28T09:10:22Z,2020-02-15T06:59:48Z +2041,75,2,7897,2.99,2005-07-28T11:01:51Z,2020-02-15T06:59:48Z +2042,75,2,8202,1.99,2005-07-28T23:11:45Z,2020-02-15T06:59:48Z +2043,75,1,8823,6.99,2005-07-29T22:22:12Z,2020-02-15T06:59:48Z +2044,75,2,9168,5.99,2005-07-30T11:31:17Z,2020-02-15T06:59:48Z +2045,75,2,9442,4.99,2005-07-30T21:44:31Z,2020-02-15T06:59:48Z +2046,75,2,9501,4.99,2005-07-30T23:59:21Z,2020-02-15T06:59:48Z +2047,75,1,9783,9.99,2005-07-31T10:15:46Z,2020-02-15T06:59:48Z +2048,75,2,10653,5.99,2005-08-01T16:28:07Z,2020-02-15T06:59:48Z +2049,75,1,10726,3.99,2005-08-01T19:14:53Z,2020-02-15T06:59:48Z +2050,75,1,10871,4.99,2005-08-02T00:27:24Z,2020-02-15T06:59:48Z +2051,75,1,11330,0.99,2005-08-02T16:45:33Z,2020-02-15T06:59:48Z +2052,75,1,12002,2.99,2005-08-17T18:56:02Z,2020-02-15T06:59:48Z +2053,75,2,12239,0.99,2005-08-18T03:26:42Z,2020-02-15T06:59:48Z +2054,75,1,12336,1.99,2005-08-18T06:59:41Z,2020-02-15T06:59:48Z +2055,75,1,12412,5.99,2005-08-18T09:49:52Z,2020-02-15T06:59:48Z +2056,75,1,12426,4.99,2005-08-18T10:24:11Z,2020-02-15T06:59:48Z +2057,75,1,12662,0.99,2005-08-18T19:10:41Z,2020-02-15T06:59:48Z +2058,75,2,15928,5.99,2005-08-23T18:23:24Z,2020-02-15T06:59:48Z +2059,75,2,13534,8.97,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2060,75,1,14488,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2061,75,2,15191,0,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2062,76,2,574,1.99,2005-05-28T10:44:28Z,2020-02-15T06:59:48Z +2063,76,1,926,0.99,2005-05-30T12:15:54Z,2020-02-15T06:59:48Z +2064,76,2,1487,0.99,2005-06-15T21:27:42Z,2020-02-15T06:59:48Z +2065,76,1,1791,6.99,2005-06-16T20:04:28Z,2020-02-15T06:59:48Z +2066,76,2,2111,0.99,2005-06-17T19:47:21Z,2020-02-15T06:59:48Z +2067,76,2,2397,1.99,2005-06-18T15:51:25Z,2020-02-15T06:59:48Z +2068,76,1,2894,0.99,2005-06-20T02:22:42Z,2020-02-15T06:59:48Z +2069,76,2,3416,0.99,2005-06-21T17:05:29Z,2020-02-15T06:59:48Z +2070,76,2,4099,4.99,2005-07-07T06:20:33Z,2020-02-15T06:59:48Z +2071,76,2,5571,0.99,2005-07-10T03:48:20Z,2020-02-15T06:59:48Z +2072,76,2,6789,0.99,2005-07-12T16:34:40Z,2020-02-15T06:59:48Z +2073,76,2,8253,6.99,2005-07-29T00:57:06Z,2020-02-15T06:59:48Z +2074,76,2,8357,2.99,2005-07-29T04:59:44Z,2020-02-15T06:59:48Z +2075,76,2,8405,3.99,2005-07-29T06:28:19Z,2020-02-15T06:59:48Z +2076,76,1,8935,0.99,2005-07-30T02:38:45Z,2020-02-15T06:59:48Z +2077,76,2,9312,2.99,2005-07-30T16:59:17Z,2020-02-15T06:59:48Z +2078,76,2,10082,0.99,2005-07-31T20:09:32Z,2020-02-15T06:59:48Z +2079,76,2,10795,4.99,2005-08-01T21:56:37Z,2020-02-15T06:59:48Z +2080,76,2,11172,7.99,2005-08-02T10:27:52Z,2020-02-15T06:59:48Z +2081,76,2,13697,3.99,2005-08-20T09:21:08Z,2020-02-15T06:59:48Z +2082,76,1,14637,2.99,2005-08-21T19:01:00Z,2020-02-15T06:59:48Z +2083,76,2,15169,4.99,2005-08-22T15:21:56Z,2020-02-15T06:59:48Z +2084,76,1,15566,10.99,2005-08-23T05:17:23Z,2020-02-15T06:59:48Z +2085,77,2,319,2.99,2005-05-26T23:52:13Z,2020-02-15T06:59:48Z +2086,77,1,419,1.99,2005-05-27T15:15:11Z,2020-02-15T06:59:48Z +2087,77,2,561,2.99,2005-05-28T08:54:06Z,2020-02-15T06:59:48Z +2088,77,1,586,0.99,2005-05-28T12:03:00Z,2020-02-15T06:59:48Z +2089,77,1,760,5.99,2005-05-29T11:07:25Z,2020-02-15T06:59:48Z +2090,77,1,1710,4.99,2005-06-16T14:11:24Z,2020-02-15T06:59:48Z +2091,77,1,2354,3.99,2005-06-18T12:54:18Z,2020-02-15T06:59:48Z +2092,77,2,2452,8.99,2005-06-18T19:29:21Z,2020-02-15T06:59:48Z +2093,77,1,3151,2.99,2005-06-20T20:36:53Z,2020-02-15T06:59:48Z +2094,77,2,3238,0.99,2005-06-21T02:48:21Z,2020-02-15T06:59:48Z +2095,77,2,4928,0.99,2005-07-08T22:05:41Z,2020-02-15T06:59:48Z +2096,77,2,6168,0.99,2005-07-11T10:21:38Z,2020-02-15T06:59:48Z +2097,77,2,6390,2.99,2005-07-11T22:19:23Z,2020-02-15T06:59:48Z +2098,77,1,7406,3.99,2005-07-27T16:25:45Z,2020-02-15T06:59:48Z +2099,77,1,7710,0.99,2005-07-28T04:24:07Z,2020-02-15T06:59:48Z +2100,77,2,8942,4.99,2005-07-30T03:01:07Z,2020-02-15T06:59:48Z +2101,77,1,9811,0.99,2005-07-31T11:23:45Z,2020-02-15T06:59:48Z +2102,77,2,10184,4.99,2005-08-01T00:09:33Z,2020-02-15T06:59:48Z +2103,77,1,10886,2.99,2005-08-02T00:52:34Z,2020-02-15T06:59:48Z +2104,77,1,10895,0.99,2005-08-02T01:16:59Z,2020-02-15T06:59:48Z +2105,77,2,10991,0.99,2005-08-02T04:41:12Z,2020-02-15T06:59:48Z +2106,77,1,11469,2.99,2005-08-02T21:48:09Z,2020-02-15T06:59:48Z +2107,77,2,11767,7.99,2005-08-17T10:00:40Z,2020-02-15T06:59:48Z +2108,77,1,12065,6.99,2005-08-17T21:31:46Z,2020-02-15T06:59:48Z +2109,77,2,12328,1.99,2005-08-18T06:43:56Z,2020-02-15T06:59:48Z +2110,77,2,13752,9.99,2005-08-20T11:17:45Z,2020-02-15T06:59:48Z +2111,77,2,14530,4.99,2005-08-21T15:10:50Z,2020-02-15T06:59:48Z +2112,77,2,15359,2.99,2005-08-22T21:34:00Z,2020-02-15T06:59:48Z +2113,78,1,2207,2.99,2005-06-18T02:19:21Z,2020-02-15T06:59:48Z +2114,78,2,2949,6.99,2005-06-20T06:05:53Z,2020-02-15T06:59:48Z +2115,78,2,3248,7.99,2005-06-21T03:12:21Z,2020-02-15T06:59:48Z +2116,78,1,3593,4.99,2005-07-06T04:39:52Z,2020-02-15T06:59:48Z +2117,78,2,4227,5.99,2005-07-07T12:41:36Z,2020-02-15T06:59:48Z +2118,78,2,4627,2.99,2005-07-08T08:24:39Z,2020-02-15T06:59:48Z +2119,78,2,4778,0.99,2005-07-08T15:51:51Z,2020-02-15T06:59:48Z +2120,78,1,5078,1.99,2005-07-09T05:20:24Z,2020-02-15T06:59:48Z +2121,78,2,5604,0.99,2005-07-10T05:05:00Z,2020-02-15T06:59:48Z +2122,78,1,6005,0.99,2005-07-11T01:36:42Z,2020-02-15T06:59:48Z +2123,78,1,6344,4.99,2005-07-11T20:04:43Z,2020-02-15T06:59:48Z +2124,78,2,7200,1.99,2005-07-27T08:57:38Z,2020-02-15T06:59:48Z +2125,78,2,7747,4.99,2005-07-28T05:50:11Z,2020-02-15T06:59:48Z +2126,78,2,7926,3.99,2005-07-28T12:13:02Z,2020-02-15T06:59:48Z +2127,78,1,7957,6.99,2005-07-28T13:34:08Z,2020-02-15T06:59:48Z +2128,78,2,8920,4.99,2005-07-30T01:59:24Z,2020-02-15T06:59:48Z +2129,78,1,9068,5.99,2005-07-30T07:31:45Z,2020-02-15T06:59:48Z +2130,78,2,10350,3.99,2005-08-01T05:30:05Z,2020-02-15T06:59:48Z +2131,78,1,10590,2.99,2005-08-01T14:11:53Z,2020-02-15T06:59:48Z +2132,78,1,10831,7.99,2005-08-01T23:22:45Z,2020-02-15T06:59:48Z +2133,78,1,10942,10.99,2005-08-02T03:16:31Z,2020-02-15T06:59:48Z +2134,78,2,12474,8.99,2005-08-18T12:10:03Z,2020-02-15T06:59:48Z +2135,78,2,12653,4.99,2005-08-18T18:53:17Z,2020-02-15T06:59:48Z +2136,78,2,13124,5.99,2005-08-19T11:55:59Z,2020-02-15T06:59:48Z +2137,78,1,13432,0.99,2005-08-19T23:29:06Z,2020-02-15T06:59:48Z +2138,78,2,13792,5.99,2005-08-20T12:21:37Z,2020-02-15T06:59:48Z +2139,78,2,14620,2.99,2005-08-21T18:10:43Z,2020-02-15T06:59:48Z +2140,78,1,14716,0.99,2005-08-21T21:29:55Z,2020-02-15T06:59:48Z +2141,78,1,14810,2.99,2005-08-22T01:08:34Z,2020-02-15T06:59:48Z +2142,78,2,14862,7.99,2005-08-22T02:51:41Z,2020-02-15T06:59:48Z +2143,78,2,16039,2.99,2005-08-23T22:18:51Z,2020-02-15T06:59:48Z +2144,79,1,840,4.99,2005-05-30T00:28:41Z,2020-02-15T06:59:48Z +2145,79,1,859,2.99,2005-05-30T02:36:20Z,2020-02-15T06:59:48Z +2146,79,1,928,2.99,2005-05-30T12:27:14Z,2020-02-15T06:59:48Z +2147,79,2,3096,4.99,2005-06-20T16:17:56Z,2020-02-15T06:59:48Z +2148,79,2,3178,2.99,2005-06-20T22:35:12Z,2020-02-15T06:59:48Z +2149,79,1,3641,0.99,2005-07-06T07:17:09Z,2020-02-15T06:59:48Z +2150,79,1,3748,2.99,2005-07-06T12:11:22Z,2020-02-15T06:59:48Z +2151,79,2,4049,4.99,2005-07-07T03:34:53Z,2020-02-15T06:59:48Z +2152,79,1,4530,4.99,2005-07-08T03:27:05Z,2020-02-15T06:59:48Z +2153,79,2,4736,4.99,2005-07-08T13:22:55Z,2020-02-15T06:59:48Z +2154,79,2,5205,2.99,2005-07-09T10:56:37Z,2020-02-15T06:59:48Z +2155,79,1,5555,2.99,2005-07-10T03:08:55Z,2020-02-15T06:59:48Z +2156,79,2,6162,5.99,2005-07-11T10:12:30Z,2020-02-15T06:59:48Z +2157,79,1,7220,9.99,2005-07-27T09:35:54Z,2020-02-15T06:59:48Z +2158,79,1,8849,2.99,2005-07-29T23:21:01Z,2020-02-15T06:59:48Z +2159,79,1,9814,1.99,2005-07-31T11:29:46Z,2020-02-15T06:59:48Z +2160,79,2,9845,6.99,2005-07-31T12:28:05Z,2020-02-15T06:59:48Z +2161,79,1,9989,0.99,2005-07-31T17:22:39Z,2020-02-15T06:59:48Z +2162,79,1,10676,2.99,2005-08-01T17:14:15Z,2020-02-15T06:59:48Z +2163,79,2,11641,4.99,2005-08-17T04:45:39Z,2020-02-15T06:59:48Z +2164,79,2,13026,2.99,2005-08-19T08:22:45Z,2020-02-15T06:59:48Z +2165,79,1,14179,0.99,2005-08-21T03:14:27Z,2020-02-15T06:59:48Z +2166,80,1,2596,2.99,2005-06-19T05:48:26Z,2020-02-15T06:59:48Z +2167,80,2,2805,8.99,2005-06-19T19:29:17Z,2020-02-15T06:59:48Z +2168,80,1,3367,3.99,2005-06-21T13:08:21Z,2020-02-15T06:59:48Z +2169,80,2,3623,4.99,2005-07-06T06:05:23Z,2020-02-15T06:59:48Z +2170,80,2,4268,8.99,2005-07-07T14:36:05Z,2020-02-15T06:59:48Z +2171,80,2,4299,3.99,2005-07-07T16:33:48Z,2020-02-15T06:59:48Z +2172,80,1,4688,5.99,2005-07-08T11:03:29Z,2020-02-15T06:59:48Z +2173,80,2,5420,3.99,2005-07-09T20:48:42Z,2020-02-15T06:59:48Z +2174,80,2,5452,4.99,2005-07-09T22:23:21Z,2020-02-15T06:59:48Z +2175,80,1,6199,5.99,2005-07-11T12:16:03Z,2020-02-15T06:59:48Z +2176,80,2,6417,6.99,2005-07-11T23:35:11Z,2020-02-15T06:59:48Z +2177,80,2,6707,1.99,2005-07-12T13:07:55Z,2020-02-15T06:59:48Z +2178,80,2,7558,0.99,2005-07-27T22:19:08Z,2020-02-15T06:59:48Z +2179,80,1,8509,5.99,2005-07-29T09:38:19Z,2020-02-15T06:59:48Z +2180,80,1,8884,6.99,2005-07-30T00:26:22Z,2020-02-15T06:59:48Z +2181,80,1,10313,0.99,2005-08-01T04:29:29Z,2020-02-15T06:59:48Z +2182,80,1,10656,6.99,2005-08-01T16:38:04Z,2020-02-15T06:59:48Z +2183,80,1,10690,8.99,2005-08-01T18:05:54Z,2020-02-15T06:59:48Z +2184,80,2,11101,5.99,2005-08-02T08:08:24Z,2020-02-15T06:59:48Z +2185,80,2,11839,0.99,2005-08-17T13:08:45Z,2020-02-15T06:59:48Z +2186,80,1,11850,1.99,2005-08-17T13:30:15Z,2020-02-15T06:59:48Z +2187,80,2,12468,2.99,2005-08-18T11:41:47Z,2020-02-15T06:59:48Z +2188,80,1,13352,4.99,2005-08-19T20:51:40Z,2020-02-15T06:59:48Z +2189,80,2,13395,0.99,2005-08-19T22:05:40Z,2020-02-15T06:59:48Z +2190,80,1,13724,4.99,2005-08-20T10:07:28Z,2020-02-15T06:59:48Z +2191,80,2,13851,0.99,2005-08-20T14:44:22Z,2020-02-15T06:59:48Z +2192,80,1,14916,0.99,2005-08-22T04:56:57Z,2020-02-15T06:59:48Z +2193,80,1,15648,8.99,2005-08-23T08:27:57Z,2020-02-15T06:59:48Z +2194,80,1,16012,5.99,2005-08-23T21:13:39Z,2020-02-15T06:59:48Z +2195,80,2,12457,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2196,81,1,289,0.99,2005-05-26T20:01:09Z,2020-02-15T06:59:48Z +2197,81,1,2714,1.99,2005-06-19T14:26:09Z,2020-02-15T06:59:48Z +2198,81,1,2854,5.99,2005-06-19T23:11:48Z,2020-02-15T06:59:48Z +2199,81,1,3229,4.99,2005-06-21T02:20:41Z,2020-02-15T06:59:48Z +2200,81,1,3879,2.99,2005-07-06T18:31:20Z,2020-02-15T06:59:48Z +2201,81,2,4983,9.99,2005-07-09T00:34:16Z,2020-02-15T06:59:48Z +2202,81,1,5468,0.99,2005-07-09T23:06:09Z,2020-02-15T06:59:48Z +2203,81,2,7130,4.99,2005-07-27T06:23:36Z,2020-02-15T06:59:48Z +2204,81,1,7709,0.99,2005-07-28T04:22:14Z,2020-02-15T06:59:48Z +2205,81,2,9454,3.99,2005-07-30T22:20:09Z,2020-02-15T06:59:48Z +2206,81,2,10456,0.99,2005-08-01T09:17:21Z,2020-02-15T06:59:48Z +2207,81,1,11837,5.99,2005-08-17T13:04:41Z,2020-02-15T06:59:48Z +2208,81,2,12181,4.99,2005-08-18T01:28:18Z,2020-02-15T06:59:48Z +2209,81,2,13820,5.99,2005-08-20T13:26:37Z,2020-02-15T06:59:48Z +2210,81,1,14128,4.99,2005-08-21T01:35:58Z,2020-02-15T06:59:48Z +2211,81,1,14642,3.99,2005-08-21T19:09:40Z,2020-02-15T06:59:48Z +2212,81,2,14748,7.99,2005-08-21T23:02:02Z,2020-02-15T06:59:48Z +2213,81,1,15224,5.99,2005-08-22T17:18:05Z,2020-02-15T06:59:48Z +2214,81,1,15602,4.99,2005-08-23T06:41:07Z,2020-02-15T06:59:48Z +2215,81,1,15823,4.99,2005-08-23T15:08:00Z,2020-02-15T06:59:48Z +2216,81,1,15858,2.99,2005-08-23T16:07:15Z,2020-02-15T06:59:48Z +2217,81,2,15884,1.99,2005-08-23T16:45:28Z,2020-02-15T06:59:48Z +2218,82,2,145,2.99,2005-05-25T23:59:03Z,2020-02-15T06:59:48Z +2219,82,2,288,8.99,2005-05-26T19:47:49Z,2020-02-15T06:59:48Z +2220,82,1,1438,0.99,2005-06-15T18:38:51Z,2020-02-15T06:59:48Z +2221,82,2,1570,0.99,2005-06-16T03:21:33Z,2020-02-15T06:59:48Z +2222,82,1,2506,8.99,2005-06-18T23:29:53Z,2020-02-15T06:59:48Z +2223,82,1,2819,8.99,2005-06-19T20:13:33Z,2020-02-15T06:59:48Z +2224,82,2,3332,0.99,2005-06-21T09:55:12Z,2020-02-15T06:59:48Z +2225,82,1,3680,2.99,2005-07-06T09:16:10Z,2020-02-15T06:59:48Z +2226,82,1,4598,6.99,2005-07-08T06:46:26Z,2020-02-15T06:59:48Z +2227,82,2,5746,4.99,2005-07-10T12:15:12Z,2020-02-15T06:59:48Z +2228,82,2,6082,6.99,2005-07-11T05:12:41Z,2020-02-15T06:59:48Z +2229,82,2,6708,6.99,2005-07-12T13:10:55Z,2020-02-15T06:59:48Z +2230,82,2,7733,9.99,2005-07-28T05:04:47Z,2020-02-15T06:59:48Z +2231,82,2,7873,0.99,2005-07-28T10:19:46Z,2020-02-15T06:59:48Z +2232,82,1,8487,4.99,2005-07-29T08:53:49Z,2020-02-15T06:59:48Z +2233,82,2,9277,3.99,2005-07-30T15:13:45Z,2020-02-15T06:59:48Z +2234,82,1,9305,8.99,2005-07-30T16:45:56Z,2020-02-15T06:59:48Z +2235,82,1,9447,6.99,2005-07-30T21:54:22Z,2020-02-15T06:59:48Z +2236,82,1,11093,4.99,2005-08-02T07:59:49Z,2020-02-15T06:59:48Z +2237,82,2,11688,5.99,2005-08-17T06:41:58Z,2020-02-15T06:59:48Z +2238,82,1,12470,3.99,2005-08-18T11:55:42Z,2020-02-15T06:59:48Z +2239,82,1,13032,0.99,2005-08-19T08:31:50Z,2020-02-15T06:59:48Z +2240,82,2,13847,6.99,2005-08-20T14:33:59Z,2020-02-15T06:59:48Z +2241,82,2,14518,0.99,2005-08-21T14:58:58Z,2020-02-15T06:59:48Z +2242,82,2,14892,4.99,2005-08-22T04:15:05Z,2020-02-15T06:59:48Z +2243,82,2,15516,3.99,2005-08-23T03:12:54Z,2020-02-15T06:59:48Z +2244,83,2,222,0.99,2005-05-26T10:14:38Z,2020-02-15T06:59:48Z +2245,83,2,950,0.99,2005-05-30T16:06:08Z,2020-02-15T06:59:48Z +2246,83,2,989,2.99,2005-05-30T23:11:51Z,2020-02-15T06:59:48Z +2247,83,1,1354,5.99,2005-06-15T13:13:49Z,2020-02-15T06:59:48Z +2248,83,1,1591,5.99,2005-06-16T05:12:37Z,2020-02-15T06:59:48Z +2249,83,2,1617,3.99,2005-06-16T07:06:06Z,2020-02-15T06:59:48Z +2250,83,2,3230,4.99,2005-06-21T02:23:16Z,2020-02-15T06:59:48Z +2251,83,2,3722,6.99,2005-07-06T11:10:27Z,2020-02-15T06:59:48Z +2252,83,1,3754,2.99,2005-07-06T12:35:44Z,2020-02-15T06:59:48Z +2253,83,1,5218,0.99,2005-07-09T11:57:12Z,2020-02-15T06:59:48Z +2254,83,2,5394,6.99,2005-07-09T19:36:15Z,2020-02-15T06:59:48Z +2255,83,2,6194,2.99,2005-07-11T11:51:00Z,2020-02-15T06:59:48Z +2256,83,2,6861,2.99,2005-07-12T19:56:52Z,2020-02-15T06:59:48Z +2257,83,2,7721,0.99,2005-07-28T04:42:58Z,2020-02-15T06:59:48Z +2258,83,2,8729,4.99,2005-07-29T18:23:02Z,2020-02-15T06:59:48Z +2259,83,1,9867,1.99,2005-07-31T13:17:04Z,2020-02-15T06:59:48Z +2260,83,1,11408,0.99,2005-08-02T19:25:13Z,2020-02-15T06:59:48Z +2261,83,1,11565,5.99,2005-08-17T01:28:05Z,2020-02-15T06:59:48Z +2262,83,2,11777,4.99,2005-08-17T10:27:19Z,2020-02-15T06:59:48Z +2263,83,1,12258,4.99,2005-08-18T04:11:13Z,2020-02-15T06:59:48Z +2264,83,2,12985,5.99,2005-08-19T07:08:05Z,2020-02-15T06:59:48Z +2265,83,1,13875,4.99,2005-08-20T15:13:11Z,2020-02-15T06:59:48Z +2266,83,2,15498,4.99,2005-08-23T02:33:27Z,2020-02-15T06:59:48Z +2267,83,2,15737,5.99,2005-08-23T11:52:18Z,2020-02-15T06:59:48Z +2268,83,2,11563,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2269,84,2,408,0.99,2005-05-27T13:57:39Z,2020-02-15T06:59:48Z +2270,84,1,739,6.99,2005-05-29T08:28:18Z,2020-02-15T06:59:48Z +2271,84,1,834,4.99,2005-05-29T23:24:30Z,2020-02-15T06:59:48Z +2272,84,2,1195,0.99,2005-06-15T01:37:38Z,2020-02-15T06:59:48Z +2273,84,2,1320,4.99,2005-06-15T10:42:13Z,2020-02-15T06:59:48Z +2274,84,2,1815,0.99,2005-06-16T21:16:07Z,2020-02-15T06:59:48Z +2275,84,1,2012,5.99,2005-06-17T11:57:15Z,2020-02-15T06:59:48Z +2276,84,2,2042,0.99,2005-06-17T14:31:02Z,2020-02-15T06:59:48Z +2277,84,2,2409,0.99,2005-06-18T16:53:33Z,2020-02-15T06:59:48Z +2278,84,2,4079,6.99,2005-07-07T05:06:27Z,2020-02-15T06:59:48Z +2279,84,2,4838,6.99,2005-07-08T18:11:00Z,2020-02-15T06:59:48Z +2280,84,1,5221,5.99,2005-07-09T12:02:23Z,2020-02-15T06:59:48Z +2281,84,1,5237,0.99,2005-07-09T12:56:58Z,2020-02-15T06:59:48Z +2282,84,1,5971,5.99,2005-07-11T00:05:58Z,2020-02-15T06:59:48Z +2283,84,2,6259,2.99,2005-07-11T15:25:52Z,2020-02-15T06:59:48Z +2284,84,2,6415,9.99,2005-07-11T23:27:52Z,2020-02-15T06:59:48Z +2285,84,1,7854,2.99,2005-07-28T09:42:31Z,2020-02-15T06:59:48Z +2286,84,2,8019,4.99,2005-07-28T15:37:43Z,2020-02-15T06:59:48Z +2287,84,1,8654,8.99,2005-07-29T15:04:27Z,2020-02-15T06:59:48Z +2288,84,2,9074,2.99,2005-07-30T07:50:10Z,2020-02-15T06:59:48Z +2289,84,2,9680,4.99,2005-07-31T06:41:46Z,2020-02-15T06:59:48Z +2290,84,2,10540,0.99,2005-08-01T12:24:42Z,2020-02-15T06:59:48Z +2291,84,1,10872,2.99,2005-08-02T00:27:50Z,2020-02-15T06:59:48Z +2292,84,2,11220,4.99,2005-08-02T12:31:41Z,2020-02-15T06:59:48Z +2293,84,2,11424,3.99,2005-08-02T19:57:42Z,2020-02-15T06:59:48Z +2294,84,2,11453,7.99,2005-08-02T21:00:05Z,2020-02-15T06:59:48Z +2295,84,2,11899,0.99,2005-08-17T15:29:12Z,2020-02-15T06:59:48Z +2296,84,2,11960,4.99,2005-08-17T17:24:30Z,2020-02-15T06:59:48Z +2297,84,2,12364,4.99,2005-08-18T07:55:09Z,2020-02-15T06:59:48Z +2298,84,2,13115,2.99,2005-08-19T11:27:43Z,2020-02-15T06:59:48Z +2299,84,1,14330,5.99,2005-08-21T08:29:20Z,2020-02-15T06:59:48Z +2300,84,1,15190,4.99,2005-08-22T15:57:38Z,2020-02-15T06:59:48Z +2301,84,1,15255,2.99,2005-08-22T18:16:50Z,2020-02-15T06:59:48Z +2302,85,1,690,9.99,2005-05-29T00:54:53Z,2020-02-15T06:59:48Z +2303,85,2,908,4.99,2005-05-30T10:38:37Z,2020-02-15T06:59:48Z +2304,85,1,1685,1.99,2005-06-16T12:06:57Z,2020-02-15T06:59:48Z +2305,85,1,2131,5.99,2005-06-17T21:02:25Z,2020-02-15T06:59:48Z +2306,85,2,2794,0.99,2005-06-19T18:53:05Z,2020-02-15T06:59:48Z +2307,85,1,3165,4.99,2005-06-20T21:29:17Z,2020-02-15T06:59:48Z +2308,85,1,3307,1.99,2005-06-21T07:52:30Z,2020-02-15T06:59:48Z +2309,85,2,3418,3.99,2005-06-21T17:06:38Z,2020-02-15T06:59:48Z +2310,85,2,4451,0.99,2005-07-07T23:29:54Z,2020-02-15T06:59:48Z +2311,85,1,4705,2.99,2005-07-08T11:50:38Z,2020-02-15T06:59:48Z +2312,85,1,5051,4.99,2005-07-09T03:57:53Z,2020-02-15T06:59:48Z +2313,85,1,5519,0.99,2005-07-10T01:18:32Z,2020-02-15T06:59:48Z +2314,85,2,7906,0.99,2005-07-28T11:31:42Z,2020-02-15T06:59:48Z +2315,85,2,9427,7.99,2005-07-30T21:16:33Z,2020-02-15T06:59:48Z +2316,85,2,9957,4.99,2005-07-31T16:03:55Z,2020-02-15T06:59:48Z +2317,85,1,9985,2.99,2005-07-31T17:14:47Z,2020-02-15T06:59:48Z +2318,85,1,10328,4.99,2005-08-01T04:56:10Z,2020-02-15T06:59:48Z +2319,85,1,10548,0.99,2005-08-01T12:44:32Z,2020-02-15T06:59:48Z +2320,85,2,11067,8.99,2005-08-02T07:03:24Z,2020-02-15T06:59:48Z +2321,85,2,12036,0.99,2005-08-17T20:19:06Z,2020-02-15T06:59:48Z +2322,85,1,12456,4.99,2005-08-18T11:21:51Z,2020-02-15T06:59:48Z +2323,85,1,13727,3.99,2005-08-20T10:08:53Z,2020-02-15T06:59:48Z +2324,85,2,13733,0.99,2005-08-20T10:25:12Z,2020-02-15T06:59:48Z +2325,86,1,66,1.99,2005-05-25T09:35:12Z,2020-02-15T06:59:48Z +2326,86,2,1640,4.99,2005-06-16T08:35:39Z,2020-02-15T06:59:48Z +2327,86,2,1822,0.99,2005-06-16T21:43:45Z,2020-02-15T06:59:48Z +2328,86,2,1924,2.99,2005-06-17T06:13:34Z,2020-02-15T06:59:48Z +2329,86,1,2141,4.99,2005-06-17T21:41:34Z,2020-02-15T06:59:48Z +2330,86,1,2518,4.99,2005-06-19T00:16:23Z,2020-02-15T06:59:48Z +2331,86,1,3207,0.99,2005-06-21T00:43:16Z,2020-02-15T06:59:48Z +2332,86,2,3270,4.99,2005-06-21T05:07:31Z,2020-02-15T06:59:48Z +2333,86,1,3611,0.99,2005-07-06T05:37:18Z,2020-02-15T06:59:48Z +2334,86,2,3945,4.99,2005-07-06T21:35:00Z,2020-02-15T06:59:48Z +2335,86,1,4235,2.99,2005-07-07T13:05:52Z,2020-02-15T06:59:48Z +2336,86,1,4571,9.99,2005-07-08T05:34:41Z,2020-02-15T06:59:48Z +2337,86,2,5295,0.99,2005-07-09T15:25:06Z,2020-02-15T06:59:48Z +2338,86,1,5752,8.99,2005-07-10T12:27:38Z,2020-02-15T06:59:48Z +2339,86,2,6872,7.99,2005-07-12T20:15:04Z,2020-02-15T06:59:48Z +2340,86,1,7231,2.99,2005-07-27T10:01:51Z,2020-02-15T06:59:48Z +2341,86,1,7874,10.99,2005-07-28T10:21:52Z,2020-02-15T06:59:48Z +2342,86,2,8803,5.99,2005-07-29T21:26:24Z,2020-02-15T06:59:48Z +2343,86,1,8850,2.99,2005-07-29T23:24:20Z,2020-02-15T06:59:48Z +2344,86,2,9376,4.99,2005-07-30T19:11:49Z,2020-02-15T06:59:48Z +2345,86,2,10252,8.99,2005-08-01T02:39:39Z,2020-02-15T06:59:48Z +2346,86,2,10536,4.99,2005-08-01T12:21:53Z,2020-02-15T06:59:48Z +2347,86,2,10584,6.99,2005-08-01T13:58:47Z,2020-02-15T06:59:48Z +2348,86,2,11916,0.99,2005-08-17T16:05:51Z,2020-02-15T06:59:48Z +2349,86,1,12198,2.99,2005-08-18T02:09:20Z,2020-02-15T06:59:48Z +2350,86,2,12870,3.99,2005-08-19T02:54:38Z,2020-02-15T06:59:48Z +2351,86,2,13338,4.99,2005-08-19T20:09:59Z,2020-02-15T06:59:48Z +2352,86,1,13535,4.99,2005-08-20T03:30:25Z,2020-02-15T06:59:48Z +2353,86,1,13874,2.99,2005-08-20T15:11:48Z,2020-02-15T06:59:48Z +2354,86,2,14122,1.99,2005-08-21T01:29:01Z,2020-02-15T06:59:48Z +2355,86,2,15099,4.99,2005-08-22T11:49:16Z,2020-02-15T06:59:48Z +2356,86,1,15715,1.99,2005-08-23T10:57:40Z,2020-02-15T06:59:48Z +2357,86,2,15940,5.99,2005-08-23T18:45:06Z,2020-02-15T06:59:48Z +2358,87,2,451,4.99,2005-05-27T19:27:54Z,2020-02-15T06:59:48Z +2359,87,1,674,2.99,2005-05-28T22:11:35Z,2020-02-15T06:59:48Z +2360,87,2,1580,4.99,2005-06-16T04:12:25Z,2020-02-15T06:59:48Z +2361,87,1,1904,2.99,2005-06-17T04:45:41Z,2020-02-15T06:59:48Z +2362,87,2,2408,2.99,2005-06-18T16:50:44Z,2020-02-15T06:59:48Z +2363,87,1,2516,4.99,2005-06-19T00:03:28Z,2020-02-15T06:59:48Z +2364,87,2,3122,9.99,2005-06-20T18:25:57Z,2020-02-15T06:59:48Z +2365,87,1,5084,7.99,2005-07-09T05:33:27Z,2020-02-15T06:59:48Z +2366,87,1,5628,3.99,2005-07-10T05:56:40Z,2020-02-15T06:59:48Z +2367,87,2,5700,4.99,2005-07-10T09:49:42Z,2020-02-15T06:59:48Z +2368,87,1,6638,4.99,2005-07-12T09:58:02Z,2020-02-15T06:59:48Z +2369,87,2,7599,2.99,2005-07-27T23:38:46Z,2020-02-15T06:59:48Z +2370,87,2,8187,7.99,2005-07-28T22:33:53Z,2020-02-15T06:59:48Z +2371,87,1,8286,5.99,2005-07-29T02:02:46Z,2020-02-15T06:59:48Z +2372,87,2,8323,4.99,2005-07-29T03:52:59Z,2020-02-15T06:59:48Z +2373,87,2,9060,0.99,2005-07-30T07:20:36Z,2020-02-15T06:59:48Z +2374,87,1,9348,2.99,2005-07-30T18:17:09Z,2020-02-15T06:59:48Z +2375,87,2,9364,8.99,2005-07-30T18:44:44Z,2020-02-15T06:59:48Z +2376,87,2,10205,4.99,2005-08-01T00:48:24Z,2020-02-15T06:59:48Z +2377,87,1,10387,4.99,2005-08-01T06:42:31Z,2020-02-15T06:59:48Z +2378,87,1,12232,0.99,2005-08-18T03:14:14Z,2020-02-15T06:59:48Z +2379,87,1,12257,8.99,2005-08-18T04:11:03Z,2020-02-15T06:59:48Z +2380,87,1,12264,5.99,2005-08-18T04:17:33Z,2020-02-15T06:59:48Z +2381,87,1,13479,0.99,2005-08-20T01:09:11Z,2020-02-15T06:59:48Z +2382,87,1,13906,0.99,2005-08-20T16:16:03Z,2020-02-15T06:59:48Z +2383,87,2,14024,10.99,2005-08-20T21:13:58Z,2020-02-15T06:59:48Z +2384,87,1,14566,2.99,2005-08-21T16:25:05Z,2020-02-15T06:59:48Z +2385,87,1,15876,2.99,2005-08-23T16:32:10Z,2020-02-15T06:59:48Z +2386,87,2,15890,4.99,2005-08-23T16:58:12Z,2020-02-15T06:59:48Z +2387,87,2,12719,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:48Z +2388,88,2,36,2.99,2005-05-25T04:36:26Z,2020-02-15T06:59:48Z +2389,88,1,1433,2.99,2005-06-15T18:30:00Z,2020-02-15T06:59:48Z +2390,88,1,2483,7.99,2005-06-18T21:22:23Z,2020-02-15T06:59:48Z +2391,88,1,2878,2.99,2005-06-20T01:09:14Z,2020-02-15T06:59:48Z +2392,88,2,3524,0.99,2005-07-06T01:01:51Z,2020-02-15T06:59:48Z +2393,88,2,3620,0.99,2005-07-06T06:01:50Z,2020-02-15T06:59:48Z +2394,88,2,3673,5.99,2005-07-06T09:02:09Z,2020-02-15T06:59:48Z +2395,88,1,3846,5.99,2005-07-06T16:43:10Z,2020-02-15T06:59:48Z +2396,88,1,6643,1.99,2005-07-12T10:39:22Z,2020-02-15T06:59:48Z +2397,88,1,6916,4.99,2005-07-12T22:29:18Z,2020-02-15T06:59:48Z +2398,88,1,7088,5.99,2005-07-27T04:42:28Z,2020-02-15T06:59:48Z +2399,88,1,7621,8.99,2005-07-28T00:34:06Z,2020-02-15T06:59:48Z +2400,88,1,8296,2.99,2005-07-29T02:43:25Z,2020-02-15T06:59:48Z +2401,88,2,8526,2.99,2005-07-29T10:20:48Z,2020-02-15T06:59:48Z +2402,88,1,8692,2.99,2005-07-29T16:43:39Z,2020-02-15T06:59:48Z +2403,88,1,10424,0.99,2005-08-01T08:22:54Z,2020-02-15T06:59:48Z +2404,88,1,11056,6.99,2005-08-02T06:36:27Z,2020-02-15T06:59:48Z +2405,88,2,14097,2.99,2005-08-21T00:28:48Z,2020-02-15T06:59:48Z +2406,88,2,14827,5.99,2005-08-22T01:32:32Z,2020-02-15T06:59:48Z +2407,88,2,15098,3.99,2005-08-22T11:48:19Z,2020-02-15T06:59:48Z +2408,88,1,15898,4.99,2005-08-23T17:13:01Z,2020-02-15T06:59:48Z +2409,89,2,141,2.99,2005-05-25T23:34:53Z,2020-02-15T06:59:48Z +2410,89,2,588,0.99,2005-05-28T12:08:37Z,2020-02-15T06:59:48Z +2411,89,1,740,5.99,2005-05-29T08:30:36Z,2020-02-15T06:59:48Z +2412,89,1,1252,8.99,2005-06-15T06:05:18Z,2020-02-15T06:59:48Z +2413,89,2,1407,7.99,2005-06-15T16:45:07Z,2020-02-15T06:59:48Z +2414,89,1,1948,4.99,2005-06-17T08:06:53Z,2020-02-15T06:59:48Z +2415,89,1,2523,0.99,2005-06-19T00:45:56Z,2020-02-15T06:59:48Z +2416,89,1,2835,7.99,2005-06-19T21:44:11Z,2020-02-15T06:59:48Z +2417,89,2,4152,4.99,2005-07-07T08:50:33Z,2020-02-15T06:59:48Z +2418,89,1,4488,0.99,2005-07-08T01:22:23Z,2020-02-15T06:59:48Z +2419,89,1,4764,8.99,2005-07-08T15:01:25Z,2020-02-15T06:59:48Z +2420,89,2,5144,7.99,2005-07-09T08:09:53Z,2020-02-15T06:59:48Z +2421,89,2,5436,2.99,2005-07-09T21:31:11Z,2020-02-15T06:59:48Z +2422,89,1,5483,2.99,2005-07-09T23:54:09Z,2020-02-15T06:59:48Z +2423,89,1,6772,2.99,2005-07-12T15:55:35Z,2020-02-15T06:59:48Z +2424,89,2,7370,7.99,2005-07-27T15:15:53Z,2020-02-15T06:59:48Z +2425,89,2,7729,4.99,2005-07-28T04:57:57Z,2020-02-15T06:59:48Z +2426,89,2,7995,4.99,2005-07-28T15:00:09Z,2020-02-15T06:59:48Z +2427,89,1,8003,2.99,2005-07-28T15:11:27Z,2020-02-15T06:59:48Z +2428,89,2,8070,2.99,2005-07-28T17:26:56Z,2020-02-15T06:59:49Z +2429,89,2,8972,0.99,2005-07-30T04:06:25Z,2020-02-15T06:59:49Z +2430,89,1,9328,2.99,2005-07-30T17:32:11Z,2020-02-15T06:59:49Z +2431,89,2,9646,2.99,2005-07-31T05:43:28Z,2020-02-15T06:59:49Z +2432,89,2,9767,0.99,2005-07-31T09:46:49Z,2020-02-15T06:59:49Z +2433,89,2,10164,4.99,2005-07-31T23:17:57Z,2020-02-15T06:59:49Z +2434,89,2,10806,4.99,2005-08-01T22:25:29Z,2020-02-15T06:59:49Z +2435,89,1,11090,3.99,2005-08-02T07:56:40Z,2020-02-15T06:59:49Z +2436,89,1,12118,3.99,2005-08-17T23:14:25Z,2020-02-15T06:59:49Z +2437,89,2,12431,2.99,2005-08-18T10:34:59Z,2020-02-15T06:59:49Z +2438,89,1,12756,2.99,2005-08-18T22:52:13Z,2020-02-15T06:59:49Z +2439,89,1,13823,2.99,2005-08-20T13:42:10Z,2020-02-15T06:59:49Z +2440,89,1,15845,2.99,2005-08-23T15:38:34Z,2020-02-15T06:59:49Z +2441,90,2,2033,0.99,2005-06-17T13:24:43Z,2020-02-15T06:59:49Z +2442,90,2,2584,6.99,2005-06-19T05:02:36Z,2020-02-15T06:59:49Z +2443,90,2,3132,0.99,2005-06-20T19:09:46Z,2020-02-15T06:59:49Z +2444,90,2,3729,3.99,2005-07-06T11:30:29Z,2020-02-15T06:59:49Z +2445,90,2,4371,4.99,2005-07-07T20:06:45Z,2020-02-15T06:59:49Z +2446,90,2,5272,0.99,2005-07-09T14:26:01Z,2020-02-15T06:59:49Z +2447,90,2,5539,3.99,2005-07-10T02:42:58Z,2020-02-15T06:59:49Z +2448,90,2,7035,5.99,2005-07-27T03:06:09Z,2020-02-15T06:59:49Z +2449,90,2,7058,1.99,2005-07-27T03:50:46Z,2020-02-15T06:59:49Z +2450,90,1,7428,5.99,2005-07-27T17:21:52Z,2020-02-15T06:59:49Z +2451,90,1,7946,6.99,2005-07-28T13:01:22Z,2020-02-15T06:59:49Z +2452,90,1,8024,2.99,2005-07-28T15:55:40Z,2020-02-15T06:59:49Z +2453,90,1,8408,0.99,2005-07-29T06:40:40Z,2020-02-15T06:59:49Z +2454,90,2,8870,9.99,2005-07-30T00:08:08Z,2020-02-15T06:59:49Z +2455,90,2,9337,2.99,2005-07-30T18:02:25Z,2020-02-15T06:59:49Z +2456,90,2,10206,7.99,2005-08-01T00:52:40Z,2020-02-15T06:59:49Z +2457,90,1,10722,4.99,2005-08-01T19:07:08Z,2020-02-15T06:59:49Z +2458,90,1,10835,4.99,2005-08-01T23:28:49Z,2020-02-15T06:59:49Z +2459,90,2,11231,4.99,2005-08-02T13:02:11Z,2020-02-15T06:59:49Z +2460,90,1,11516,0.99,2005-08-16T23:54:47Z,2020-02-15T06:59:49Z +2461,90,2,12019,0.99,2005-08-17T19:48:55Z,2020-02-15T06:59:49Z +2462,90,1,12788,2.99,2005-08-19T00:15:09Z,2020-02-15T06:59:49Z +2463,90,1,13051,4.99,2005-08-19T09:31:33Z,2020-02-15T06:59:49Z +2464,90,1,14608,1.99,2005-08-21T17:57:22Z,2020-02-15T06:59:49Z +2465,90,1,14807,4.99,2005-08-22T00:57:43Z,2020-02-15T06:59:49Z +2466,90,2,15061,0.99,2005-08-22T10:29:44Z,2020-02-15T06:59:49Z +2467,90,2,15217,0.99,2005-08-22T16:58:31Z,2020-02-15T06:59:49Z +2468,90,1,15674,7.99,2005-08-23T09:16:39Z,2020-02-15T06:59:49Z +2469,91,2,216,5.99,2005-05-26T09:17:43Z,2020-02-15T06:59:49Z +2470,91,1,1299,4.99,2005-06-15T09:34:50Z,2020-02-15T06:59:49Z +2471,91,1,2457,3.99,2005-06-18T19:38:20Z,2020-02-15T06:59:49Z +2472,91,1,2908,0.99,2005-06-20T03:16:52Z,2020-02-15T06:59:49Z +2473,91,2,3384,2.99,2005-06-21T14:07:35Z,2020-02-15T06:59:49Z +2474,91,2,3802,0.99,2005-07-06T15:06:09Z,2020-02-15T06:59:49Z +2475,91,2,4103,2.99,2005-07-07T06:25:28Z,2020-02-15T06:59:49Z +2476,91,1,4245,4.99,2005-07-07T13:48:33Z,2020-02-15T06:59:49Z +2477,91,1,4321,4.99,2005-07-07T17:52:38Z,2020-02-15T06:59:49Z +2478,91,1,4673,4.99,2005-07-08T10:16:00Z,2020-02-15T06:59:49Z +2479,91,2,5025,4.99,2005-07-09T02:28:24Z,2020-02-15T06:59:49Z +2480,91,2,5187,1.99,2005-07-09T10:19:51Z,2020-02-15T06:59:49Z +2481,91,2,5701,0.99,2005-07-10T09:56:24Z,2020-02-15T06:59:49Z +2482,91,1,6078,4.99,2005-07-11T05:06:52Z,2020-02-15T06:59:49Z +2483,91,1,6178,2.99,2005-07-11T10:59:09Z,2020-02-15T06:59:49Z +2484,91,2,6860,2.99,2005-07-12T19:54:17Z,2020-02-15T06:59:49Z +2485,91,2,7143,0.99,2005-07-27T06:56:31Z,2020-02-15T06:59:49Z +2486,91,2,7637,0.99,2005-07-28T01:12:25Z,2020-02-15T06:59:49Z +2487,91,1,7966,4.99,2005-07-28T13:53:54Z,2020-02-15T06:59:49Z +2488,91,1,8313,0.99,2005-07-29T03:34:21Z,2020-02-15T06:59:49Z +2489,91,2,8873,0.99,2005-07-30T00:14:32Z,2020-02-15T06:59:49Z +2490,91,2,9228,2.99,2005-07-30T13:36:57Z,2020-02-15T06:59:49Z +2491,91,2,9396,4.99,2005-07-30T20:07:24Z,2020-02-15T06:59:49Z +2492,91,2,10008,4.99,2005-07-31T17:59:36Z,2020-02-15T06:59:49Z +2493,91,2,11418,0.99,2005-08-02T19:45:33Z,2020-02-15T06:59:49Z +2494,91,1,12847,0.99,2005-08-19T02:04:07Z,2020-02-15T06:59:49Z +2495,91,2,13222,4.99,2005-08-19T15:47:58Z,2020-02-15T06:59:49Z +2496,91,2,13309,4.99,2005-08-19T19:04:00Z,2020-02-15T06:59:49Z +2497,91,1,14132,0.99,2005-08-21T01:43:58Z,2020-02-15T06:59:49Z +2498,91,2,14888,2.99,2005-08-22T04:09:18Z,2020-02-15T06:59:49Z +2499,91,1,15122,1.99,2005-08-22T12:47:45Z,2020-02-15T06:59:49Z +2500,91,1,15341,4.99,2005-08-22T20:56:31Z,2020-02-15T06:59:49Z +2501,91,1,15707,1.99,2005-08-23T10:35:45Z,2020-02-15T06:59:49Z +2502,91,2,15886,4.99,2005-08-23T16:50:53Z,2020-02-15T06:59:49Z +2503,91,1,12902,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2504,92,1,271,5.99,2005-05-26T16:22:01Z,2020-02-15T06:59:49Z +2505,92,1,456,4.99,2005-05-27T19:50:06Z,2020-02-15T06:59:49Z +2506,92,2,2084,4.99,2005-06-17T17:17:19Z,2020-02-15T06:59:49Z +2507,92,1,2521,0.99,2005-06-19T00:41:08Z,2020-02-15T06:59:49Z +2508,92,1,2740,8.99,2005-06-19T15:59:04Z,2020-02-15T06:59:49Z +2509,92,2,3595,8.99,2005-07-06T04:59:49Z,2020-02-15T06:59:49Z +2510,92,2,3716,7.99,2005-07-06T10:52:32Z,2020-02-15T06:59:49Z +2511,92,1,4360,2.99,2005-07-07T19:31:12Z,2020-02-15T06:59:49Z +2512,92,2,4828,4.99,2005-07-08T17:52:29Z,2020-02-15T06:59:49Z +2513,92,2,5497,5.99,2005-07-10T00:23:23Z,2020-02-15T06:59:49Z +2514,92,2,5620,7.99,2005-07-10T05:30:52Z,2020-02-15T06:59:49Z +2515,92,1,5792,6.99,2005-07-10T14:22:19Z,2020-02-15T06:59:49Z +2516,92,2,5919,2.99,2005-07-10T21:32:14Z,2020-02-15T06:59:49Z +2517,92,1,6158,0.99,2005-07-11T09:50:24Z,2020-02-15T06:59:49Z +2518,92,2,6277,6.99,2005-07-11T16:19:01Z,2020-02-15T06:59:49Z +2519,92,1,7073,4.99,2005-07-27T04:03:26Z,2020-02-15T06:59:49Z +2520,92,1,7832,1.99,2005-07-28T08:46:11Z,2020-02-15T06:59:49Z +2521,92,1,8494,4.99,2005-07-29T09:04:32Z,2020-02-15T06:59:49Z +2522,92,1,8938,4.99,2005-07-30T02:56:08Z,2020-02-15T06:59:49Z +2523,92,1,9240,4.99,2005-07-30T13:57:54Z,2020-02-15T06:59:49Z +2524,92,2,11203,4.99,2005-08-02T11:52:41Z,2020-02-15T06:59:49Z +2525,92,2,11245,2.99,2005-08-02T13:33:50Z,2020-02-15T06:59:49Z +2526,92,1,11849,4.99,2005-08-17T13:24:55Z,2020-02-15T06:59:49Z +2527,92,2,13020,5.99,2005-08-19T08:07:50Z,2020-02-15T06:59:49Z +2528,92,1,13495,0.99,2005-08-20T01:40:25Z,2020-02-15T06:59:49Z +2529,92,1,13620,2.99,2005-08-20T06:41:27Z,2020-02-15T06:59:49Z +2530,92,1,14798,0.99,2005-08-22T00:44:08Z,2020-02-15T06:59:49Z +2531,92,2,14998,4.99,2005-08-22T07:53:14Z,2020-02-15T06:59:49Z +2532,93,2,113,2.99,2005-05-25T19:07:40Z,2020-02-15T06:59:49Z +2533,93,2,420,6.99,2005-05-27T15:19:38Z,2020-02-15T06:59:49Z +2534,93,1,1025,4.99,2005-05-31T03:41:37Z,2020-02-15T06:59:49Z +2535,93,2,2256,4.99,2005-06-18T05:21:56Z,2020-02-15T06:59:49Z +2536,93,1,3109,0.99,2005-06-20T17:33:55Z,2020-02-15T06:59:49Z +2537,93,1,4733,2.99,2005-07-08T13:12:07Z,2020-02-15T06:59:49Z +2538,93,2,5130,4.99,2005-07-09T07:29:45Z,2020-02-15T06:59:49Z +2539,93,2,6287,4.99,2005-07-11T17:00:04Z,2020-02-15T06:59:49Z +2540,93,1,6586,4.99,2005-07-12T06:56:24Z,2020-02-15T06:59:49Z +2541,93,1,7301,2.99,2005-07-27T12:50:23Z,2020-02-15T06:59:49Z +2542,93,1,8233,0.99,2005-07-29T00:16:23Z,2020-02-15T06:59:49Z +2543,93,2,11271,5.99,2005-08-02T14:18:22Z,2020-02-15T06:59:49Z +2544,93,1,12704,4.99,2005-08-18T20:43:00Z,2020-02-15T06:59:49Z +2545,93,1,13555,2.99,2005-08-20T04:09:50Z,2020-02-15T06:59:49Z +2546,93,2,13904,2.99,2005-08-20T16:11:34Z,2020-02-15T06:59:49Z +2547,93,1,13950,8.99,2005-08-20T17:58:00Z,2020-02-15T06:59:49Z +2548,93,1,13993,4.99,2005-08-20T19:32:29Z,2020-02-15T06:59:49Z +2549,93,1,14195,0.99,2005-08-21T03:40:35Z,2020-02-15T06:59:49Z +2550,93,2,14333,4.99,2005-08-21T08:31:03Z,2020-02-15T06:59:49Z +2551,93,2,15324,5.99,2005-08-22T20:23:13Z,2020-02-15T06:59:49Z +2552,93,2,15631,2.99,2005-08-23T07:30:23Z,2020-02-15T06:59:49Z +2553,93,1,15696,0.99,2005-08-23T10:04:17Z,2020-02-15T06:59:49Z +2554,93,2,15913,1.99,2005-08-23T17:48:30Z,2020-02-15T06:59:49Z +2555,94,1,127,2.99,2005-05-25T21:10:40Z,2020-02-15T06:59:49Z +2556,94,2,629,4.99,2005-05-28T17:19:15Z,2020-02-15T06:59:49Z +2557,94,2,1213,2.99,2005-06-15T03:14:05Z,2020-02-15T06:59:49Z +2558,94,1,1367,4.99,2005-06-15T14:25:17Z,2020-02-15T06:59:49Z +2559,94,2,1734,3.99,2005-06-16T15:49:30Z,2020-02-15T06:59:49Z +2560,94,2,2620,4.99,2005-06-19T08:06:29Z,2020-02-15T06:59:49Z +2561,94,1,2816,2.99,2005-06-19T20:04:23Z,2020-02-15T06:59:49Z +2562,94,2,4044,0.99,2005-07-07T03:22:23Z,2020-02-15T06:59:49Z +2563,94,1,4287,8.99,2005-07-07T15:37:31Z,2020-02-15T06:59:49Z +2564,94,2,5719,4.99,2005-07-10T11:07:40Z,2020-02-15T06:59:49Z +2565,94,2,5970,4.99,2005-07-11T00:04:50Z,2020-02-15T06:59:49Z +2566,94,2,7809,2.99,2005-07-28T07:59:46Z,2020-02-15T06:59:49Z +2567,94,2,7979,0.99,2005-07-28T14:16:30Z,2020-02-15T06:59:49Z +2568,94,1,9605,4.99,2005-07-31T03:50:07Z,2020-02-15T06:59:49Z +2569,94,1,12316,2.99,2005-08-18T06:16:09Z,2020-02-15T06:59:49Z +2570,94,1,13786,5.99,2005-08-20T12:13:24Z,2020-02-15T06:59:49Z +2571,94,2,14804,1.99,2005-08-22T00:51:25Z,2020-02-15T06:59:49Z +2572,94,1,14865,4.99,2005-08-22T03:06:38Z,2020-02-15T06:59:49Z +2573,94,1,14978,0.99,2005-08-22T07:13:15Z,2020-02-15T06:59:49Z +2574,94,1,15693,0.99,2005-08-23T10:00:24Z,2020-02-15T06:59:49Z +2575,94,1,15371,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2576,95,1,490,4.99,2005-05-28T00:09:56Z,2020-02-15T06:59:49Z +2577,95,2,1174,2.99,2005-06-15T00:12:51Z,2020-02-15T06:59:49Z +2578,95,2,1261,1.99,2005-06-15T06:52:57Z,2020-02-15T06:59:49Z +2579,95,2,3056,2.99,2005-06-20T13:20:58Z,2020-02-15T06:59:49Z +2580,95,2,3426,0.99,2005-06-21T18:12:10Z,2020-02-15T06:59:49Z +2581,95,1,3633,1.99,2005-07-06T06:43:26Z,2020-02-15T06:59:49Z +2582,95,2,4000,4.99,2005-07-06T23:58:37Z,2020-02-15T06:59:49Z +2583,95,1,4835,5.99,2005-07-08T18:08:13Z,2020-02-15T06:59:49Z +2584,95,2,7245,5.99,2005-07-27T10:29:06Z,2020-02-15T06:59:49Z +2585,95,1,7471,4.99,2005-07-27T19:02:19Z,2020-02-15T06:59:49Z +2586,95,1,9222,6.99,2005-07-30T13:21:08Z,2020-02-15T06:59:49Z +2587,95,1,9695,6.99,2005-07-31T07:13:30Z,2020-02-15T06:59:49Z +2588,95,1,9951,4.99,2005-07-31T15:51:16Z,2020-02-15T06:59:49Z +2589,95,1,10130,0.99,2005-07-31T21:44:30Z,2020-02-15T06:59:49Z +2590,95,2,10446,0.99,2005-08-01T09:02:17Z,2020-02-15T06:59:49Z +2591,95,2,12351,5.99,2005-08-18T07:32:12Z,2020-02-15T06:59:49Z +2592,95,2,13516,7.99,2005-08-20T02:32:45Z,2020-02-15T06:59:49Z +2593,95,2,14203,4.99,2005-08-21T03:51:52Z,2020-02-15T06:59:49Z +2594,96,1,1266,3.99,2005-06-15T07:11:39Z,2020-02-15T06:59:49Z +2595,96,2,1413,7.99,2005-06-15T17:25:07Z,2020-02-15T06:59:49Z +2596,96,2,1437,0.99,2005-06-15T18:37:04Z,2020-02-15T06:59:49Z +2597,96,1,2372,0.99,2005-06-18T14:37:37Z,2020-02-15T06:59:49Z +2598,96,2,2973,5.99,2005-06-20T07:59:27Z,2020-02-15T06:59:49Z +2599,96,1,3308,0.99,2005-06-21T07:58:36Z,2020-02-15T06:59:49Z +2600,96,2,3463,0.99,2005-06-21T22:00:00Z,2020-02-15T06:59:49Z +2601,96,1,3720,2.99,2005-07-06T11:06:57Z,2020-02-15T06:59:49Z +2602,96,2,3742,2.99,2005-07-06T12:01:38Z,2020-02-15T06:59:49Z +2603,96,1,4961,4.99,2005-07-08T23:35:53Z,2020-02-15T06:59:49Z +2604,96,1,5558,0.99,2005-07-10T03:12:08Z,2020-02-15T06:59:49Z +2605,96,1,5678,4.99,2005-07-10T08:42:42Z,2020-02-15T06:59:49Z +2606,96,1,5696,2.99,2005-07-10T09:44:32Z,2020-02-15T06:59:49Z +2607,96,2,8125,4.99,2005-07-28T19:31:48Z,2020-02-15T06:59:49Z +2608,96,1,8437,6.99,2005-07-29T07:23:43Z,2020-02-15T06:59:49Z +2609,96,2,9093,3.99,2005-07-30T08:33:24Z,2020-02-15T06:59:49Z +2610,96,1,9315,4.99,2005-07-30T17:05:29Z,2020-02-15T06:59:49Z +2611,96,1,9662,3.99,2005-07-31T06:09:53Z,2020-02-15T06:59:49Z +2612,96,2,10031,4.99,2005-07-31T18:40:15Z,2020-02-15T06:59:49Z +2613,96,2,11864,4.99,2005-08-17T14:02:01Z,2020-02-15T06:59:49Z +2614,96,1,11984,3.99,2005-08-17T18:16:30Z,2020-02-15T06:59:49Z +2615,96,1,12199,4.99,2005-08-18T02:09:23Z,2020-02-15T06:59:49Z +2616,96,2,12525,4.99,2005-08-18T13:48:31Z,2020-02-15T06:59:49Z +2617,96,1,13514,0.99,2005-08-20T02:28:09Z,2020-02-15T06:59:49Z +2618,96,1,13855,4.99,2005-08-20T14:48:55Z,2020-02-15T06:59:49Z +2619,96,1,14462,3.99,2005-08-21T12:50:57Z,2020-02-15T06:59:49Z +2620,96,2,15989,4.99,2005-08-23T20:24:36Z,2020-02-15T06:59:49Z +2621,97,2,2083,2.99,2005-06-17T17:14:00Z,2020-02-15T06:59:49Z +2622,97,2,2790,4.99,2005-06-19T18:49:45Z,2020-02-15T06:59:49Z +2623,97,1,3459,0.99,2005-06-21T21:45:47Z,2020-02-15T06:59:49Z +2624,97,1,3540,2.99,2005-07-06T01:47:20Z,2020-02-15T06:59:49Z +2625,97,2,3565,0.99,2005-07-06T03:02:58Z,2020-02-15T06:59:49Z +2626,97,2,3818,4.99,2005-07-06T15:33:31Z,2020-02-15T06:59:49Z +2627,97,2,4312,4.99,2005-07-07T17:34:59Z,2020-02-15T06:59:49Z +2628,97,1,4508,4.99,2005-07-08T02:28:41Z,2020-02-15T06:59:49Z +2629,97,2,5454,4.99,2005-07-09T22:24:25Z,2020-02-15T06:59:49Z +2630,97,1,6544,0.99,2005-07-12T04:56:15Z,2020-02-15T06:59:49Z +2631,97,1,6726,0.99,2005-07-12T13:48:14Z,2020-02-15T06:59:49Z +2632,97,2,7182,5.99,2005-07-27T08:15:38Z,2020-02-15T06:59:49Z +2633,97,2,7924,0.99,2005-07-28T12:08:53Z,2020-02-15T06:59:49Z +2634,97,2,8438,2.99,2005-07-29T07:25:42Z,2020-02-15T06:59:49Z +2635,97,1,9591,4.99,2005-07-31T03:19:28Z,2020-02-15T06:59:49Z +2636,97,1,10820,2.99,2005-08-01T22:53:40Z,2020-02-15T06:59:49Z +2637,97,2,14323,4.99,2005-08-21T08:08:43Z,2020-02-15T06:59:49Z +2638,97,1,15006,0.99,2005-08-22T08:20:15Z,2020-02-15T06:59:49Z +2639,98,2,214,3.99,2005-05-26T08:48:49Z,2020-02-15T06:59:49Z +2640,98,1,1362,3.99,2005-06-15T13:53:32Z,2020-02-15T06:59:49Z +2641,98,2,1590,5.99,2005-06-16T05:11:41Z,2020-02-15T06:59:49Z +2642,98,1,2213,4.99,2005-06-18T02:36:47Z,2020-02-15T06:59:49Z +2643,98,1,2445,0.99,2005-06-18T19:02:11Z,2020-02-15T06:59:49Z +2644,98,2,2601,4.99,2005-06-19T06:09:44Z,2020-02-15T06:59:49Z +2645,98,2,3399,4.99,2005-06-21T15:47:48Z,2020-02-15T06:59:49Z +2646,98,2,3682,7.99,2005-07-06T09:22:48Z,2020-02-15T06:59:49Z +2647,98,1,4549,4.99,2005-07-08T04:25:03Z,2020-02-15T06:59:49Z +2648,98,2,6951,2.99,2005-07-26T23:47:31Z,2020-02-15T06:59:49Z +2649,98,2,7120,3.99,2005-07-27T05:56:39Z,2020-02-15T06:59:49Z +2650,98,1,7530,0.99,2005-07-27T21:18:58Z,2020-02-15T06:59:49Z +2651,98,1,8324,5.99,2005-07-29T03:56:05Z,2020-02-15T06:59:49Z +2652,98,2,8622,4.99,2005-07-29T13:53:28Z,2020-02-15T06:59:49Z +2653,98,2,8818,5.99,2005-07-29T22:14:04Z,2020-02-15T06:59:49Z +2654,98,1,9753,2.99,2005-07-31T09:22:38Z,2020-02-15T06:59:49Z +2655,98,2,10694,3.99,2005-08-01T18:15:07Z,2020-02-15T06:59:49Z +2656,98,1,10925,2.99,2005-08-02T02:24:38Z,2020-02-15T06:59:49Z +2657,98,2,11007,0.99,2005-08-02T05:05:53Z,2020-02-15T06:59:49Z +2658,98,2,11200,2.99,2005-08-02T11:48:36Z,2020-02-15T06:59:49Z +2659,98,1,11635,5.99,2005-08-17T04:33:17Z,2020-02-15T06:59:49Z +2660,98,1,11730,2.99,2005-08-17T08:22:00Z,2020-02-15T06:59:49Z +2661,98,2,12221,5.99,2005-08-18T02:50:51Z,2020-02-15T06:59:49Z +2662,98,2,14459,1.99,2005-08-21T12:48:08Z,2020-02-15T06:59:49Z +2663,98,1,15536,7.99,2005-08-23T03:58:28Z,2020-02-15T06:59:49Z +2664,99,2,867,0.99,2005-05-30T03:54:43Z,2020-02-15T06:59:49Z +2665,99,1,1858,4.99,2005-06-17T01:13:11Z,2020-02-15T06:59:49Z +2666,99,1,2368,2.99,2005-06-18T14:10:27Z,2020-02-15T06:59:49Z +2667,99,2,3780,6.99,2005-07-06T13:52:02Z,2020-02-15T06:59:49Z +2668,99,2,4170,2.99,2005-07-07T09:44:36Z,2020-02-15T06:59:49Z +2669,99,2,4344,4.99,2005-07-07T18:50:47Z,2020-02-15T06:59:49Z +2670,99,1,4589,0.99,2005-07-08T06:26:04Z,2020-02-15T06:59:49Z +2671,99,2,4800,4.99,2005-07-08T16:51:08Z,2020-02-15T06:59:49Z +2672,99,2,4954,2.99,2005-07-08T23:14:16Z,2020-02-15T06:59:49Z +2673,99,2,5035,2.99,2005-07-09T02:51:34Z,2020-02-15T06:59:49Z +2674,99,1,5748,2.99,2005-07-10T12:19:59Z,2020-02-15T06:59:49Z +2675,99,1,6289,2.99,2005-07-11T17:06:39Z,2020-02-15T06:59:49Z +2676,99,1,6370,3.99,2005-07-11T21:28:32Z,2020-02-15T06:59:49Z +2677,99,2,6662,4.99,2005-07-12T11:21:06Z,2020-02-15T06:59:49Z +2678,99,1,7039,4.99,2005-07-27T03:11:48Z,2020-02-15T06:59:49Z +2679,99,1,8072,0.99,2005-07-28T17:27:59Z,2020-02-15T06:59:49Z +2680,99,2,8242,7.99,2005-07-29T00:34:27Z,2020-02-15T06:59:49Z +2681,99,2,8514,0.99,2005-07-29T09:53:33Z,2020-02-15T06:59:49Z +2682,99,2,10388,7.99,2005-08-01T06:42:44Z,2020-02-15T06:59:49Z +2683,99,1,10455,1.99,2005-08-01T09:15:00Z,2020-02-15T06:59:49Z +2684,99,2,11266,4.99,2005-08-02T14:07:35Z,2020-02-15T06:59:49Z +2685,99,2,12379,0.99,2005-08-18T08:26:48Z,2020-02-15T06:59:49Z +2686,99,2,12869,8.99,2005-08-19T02:50:36Z,2020-02-15T06:59:49Z +2687,99,1,11593,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2688,100,1,71,0.99,2005-05-25T10:26:39Z,2020-02-15T06:59:49Z +2689,100,2,1216,4.99,2005-06-15T03:23:48Z,2020-02-15T06:59:49Z +2690,100,1,1340,3.99,2005-06-15T12:24:15Z,2020-02-15T06:59:49Z +2691,100,1,1427,2.99,2005-06-15T18:17:28Z,2020-02-15T06:59:49Z +2692,100,2,3468,6.99,2005-06-21T22:43:45Z,2020-02-15T06:59:49Z +2693,100,2,3602,5.99,2005-07-06T05:23:10Z,2020-02-15T06:59:49Z +2694,100,1,3800,8.99,2005-07-06T15:01:27Z,2020-02-15T06:59:49Z +2695,100,1,4209,2.99,2005-07-07T11:35:08Z,2020-02-15T06:59:49Z +2696,100,1,4970,8.99,2005-07-08T23:54:29Z,2020-02-15T06:59:49Z +2697,100,2,4980,6.99,2005-07-09T00:26:59Z,2020-02-15T06:59:49Z +2698,100,2,5238,4.99,2005-07-09T13:11:14Z,2020-02-15T06:59:49Z +2699,100,2,5355,6.99,2005-07-09T18:07:17Z,2020-02-15T06:59:49Z +2700,100,1,6655,4.99,2005-07-12T11:08:32Z,2020-02-15T06:59:49Z +2701,100,2,7819,4.99,2005-07-28T08:27:14Z,2020-02-15T06:59:49Z +2702,100,1,7921,1.99,2005-07-28T12:02:46Z,2020-02-15T06:59:49Z +2703,100,2,8203,0.99,2005-07-28T23:14:56Z,2020-02-15T06:59:49Z +2704,100,2,9048,5.99,2005-07-30T06:57:07Z,2020-02-15T06:59:49Z +2705,100,1,9271,4.99,2005-07-30T15:04:31Z,2020-02-15T06:59:49Z +2706,100,1,11143,0.99,2005-08-02T09:32:54Z,2020-02-15T06:59:49Z +2707,100,2,11346,4.99,2005-08-02T17:15:38Z,2020-02-15T06:59:49Z +2708,100,1,12657,0.99,2005-08-18T19:02:16Z,2020-02-15T06:59:49Z +2709,100,1,15163,0.99,2005-08-22T14:43:13Z,2020-02-15T06:59:49Z +2710,100,2,15246,3.99,2005-08-22T17:50:49Z,2020-02-15T06:59:49Z +2711,100,2,15021,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2712,101,1,468,9.99,2005-05-27T21:13:10Z,2020-02-15T06:59:49Z +2713,101,1,4975,2.99,2005-07-09T00:02:46Z,2020-02-15T06:59:49Z +2714,101,2,5100,2.99,2005-07-09T06:16:03Z,2020-02-15T06:59:49Z +2715,101,1,5132,5.99,2005-07-09T07:40:32Z,2020-02-15T06:59:49Z +2716,101,2,5198,2.99,2005-07-09T10:49:10Z,2020-02-15T06:59:49Z +2717,101,1,5757,2.99,2005-07-10T12:40:17Z,2020-02-15T06:59:49Z +2718,101,2,6433,5.99,2005-07-12T00:12:02Z,2020-02-15T06:59:49Z +2719,101,2,7112,5.99,2005-07-27T05:38:42Z,2020-02-15T06:59:49Z +2720,101,2,7866,8.99,2005-07-28T10:08:01Z,2020-02-15T06:59:49Z +2721,101,1,8301,0.99,2005-07-29T03:00:08Z,2020-02-15T06:59:49Z +2722,101,2,8825,1.99,2005-07-29T22:24:16Z,2020-02-15T06:59:49Z +2723,101,2,8833,4.99,2005-07-29T22:39:36Z,2020-02-15T06:59:49Z +2724,101,2,9965,6.99,2005-07-31T16:19:32Z,2020-02-15T06:59:49Z +2725,101,2,10218,0.99,2005-08-01T01:09:44Z,2020-02-15T06:59:49Z +2726,101,1,10253,6.99,2005-08-01T02:39:49Z,2020-02-15T06:59:49Z +2727,101,1,10407,0.99,2005-08-01T07:38:07Z,2020-02-15T06:59:49Z +2728,101,2,11959,4.99,2005-08-17T17:23:35Z,2020-02-15T06:59:49Z +2729,101,2,12174,2.99,2005-08-18T01:08:53Z,2020-02-15T06:59:49Z +2730,101,1,12471,4.99,2005-08-18T11:57:00Z,2020-02-15T06:59:49Z +2731,101,2,13370,1.99,2005-08-19T21:20:11Z,2020-02-15T06:59:49Z +2732,101,1,14476,0.99,2005-08-21T13:31:07Z,2020-02-15T06:59:49Z +2733,101,2,14542,3.99,2005-08-21T15:36:34Z,2020-02-15T06:59:49Z +2734,101,2,15103,2.99,2005-08-22T12:01:06Z,2020-02-15T06:59:49Z +2735,101,2,12141,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2736,102,1,247,4.99,2005-05-26T14:01:05Z,2020-02-15T06:59:49Z +2737,102,1,358,0.99,2005-05-27T06:43:59Z,2020-02-15T06:59:49Z +2738,102,2,562,1.99,2005-05-28T09:01:21Z,2020-02-15T06:59:49Z +2739,102,2,1215,2.99,2005-06-15T03:21:00Z,2020-02-15T06:59:49Z +2740,102,2,2419,8.99,2005-06-18T17:21:24Z,2020-02-15T06:59:49Z +2741,102,2,3520,1.99,2005-07-06T00:58:27Z,2020-02-15T06:59:49Z +2742,102,2,3630,1.99,2005-07-06T06:27:15Z,2020-02-15T06:59:49Z +2743,102,2,3665,4.99,2005-07-06T08:23:08Z,2020-02-15T06:59:49Z +2744,102,1,4089,6.99,2005-07-07T05:45:59Z,2020-02-15T06:59:49Z +2745,102,2,4777,3.99,2005-07-08T15:48:34Z,2020-02-15T06:59:49Z +2746,102,1,4997,6.99,2005-07-09T01:06:03Z,2020-02-15T06:59:49Z +2747,102,1,5009,5.99,2005-07-09T01:32:17Z,2020-02-15T06:59:49Z +2748,102,1,5109,4.99,2005-07-09T06:48:49Z,2020-02-15T06:59:49Z +2749,102,2,5509,5.99,2005-07-10T00:54:46Z,2020-02-15T06:59:49Z +2750,102,1,5716,2.99,2005-07-10T10:59:23Z,2020-02-15T06:59:49Z +2751,102,2,6434,5.99,2005-07-12T00:14:25Z,2020-02-15T06:59:49Z +2752,102,2,7119,0.99,2005-07-27T05:55:32Z,2020-02-15T06:59:49Z +2753,102,2,7247,0.99,2005-07-27T10:32:58Z,2020-02-15T06:59:49Z +2754,102,2,7439,6.99,2005-07-27T17:42:31Z,2020-02-15T06:59:49Z +2755,102,1,8186,0.99,2005-07-28T22:30:27Z,2020-02-15T06:59:49Z +2756,102,1,8664,5.99,2005-07-29T15:36:27Z,2020-02-15T06:59:49Z +2757,102,2,9151,3.99,2005-07-30T10:50:53Z,2020-02-15T06:59:49Z +2758,102,1,9192,2.99,2005-07-30T12:26:26Z,2020-02-15T06:59:49Z +2759,102,2,9295,0.99,2005-07-30T16:18:39Z,2020-02-15T06:59:49Z +2760,102,2,9617,2.99,2005-07-31T04:15:38Z,2020-02-15T06:59:49Z +2761,102,1,9780,4.99,2005-07-31T10:10:22Z,2020-02-15T06:59:49Z +2762,102,2,10841,1.99,2005-08-01T23:39:21Z,2020-02-15T06:59:49Z +2763,102,2,11099,4.99,2005-08-02T08:07:12Z,2020-02-15T06:59:49Z +2764,102,1,11183,4.99,2005-08-02T11:00:32Z,2020-02-15T06:59:49Z +2765,102,2,12495,4.99,2005-08-18T12:56:37Z,2020-02-15T06:59:49Z +2766,102,1,13420,9.99,2005-08-19T22:57:25Z,2020-02-15T06:59:49Z +2767,102,1,15049,1.99,2005-08-22T10:06:28Z,2020-02-15T06:59:49Z +2768,102,2,16031,3.99,2005-08-23T21:59:26Z,2020-02-15T06:59:49Z +2769,103,1,240,7.99,2005-05-26T12:40:23Z,2020-02-15T06:59:49Z +2770,103,1,658,9.99,2005-05-28T20:23:23Z,2020-02-15T06:59:49Z +2771,103,2,1396,4.99,2005-06-15T16:22:38Z,2020-02-15T06:59:49Z +2772,103,1,2118,0.99,2005-06-17T20:28:29Z,2020-02-15T06:59:49Z +2773,103,1,2197,0.99,2005-06-18T01:50:27Z,2020-02-15T06:59:49Z +2774,103,1,2724,0.99,2005-06-19T14:57:54Z,2020-02-15T06:59:49Z +2775,103,2,3750,6.99,2005-07-06T12:19:28Z,2020-02-15T06:59:49Z +2776,103,1,3850,4.99,2005-07-06T16:51:21Z,2020-02-15T06:59:49Z +2777,103,2,4040,6.99,2005-07-07T03:02:40Z,2020-02-15T06:59:49Z +2778,103,1,4213,2.99,2005-07-07T11:53:49Z,2020-02-15T06:59:49Z +2779,103,1,4357,1.99,2005-07-07T19:24:39Z,2020-02-15T06:59:49Z +2780,103,2,4872,4.99,2005-07-08T19:23:16Z,2020-02-15T06:59:49Z +2781,103,2,5163,4.99,2005-07-09T09:00:28Z,2020-02-15T06:59:49Z +2782,103,1,6525,5.99,2005-07-12T04:17:15Z,2020-02-15T06:59:49Z +2783,103,2,6697,6.99,2005-07-12T12:44:57Z,2020-02-15T06:59:49Z +2784,103,2,6949,2.99,2005-07-26T23:44:12Z,2020-02-15T06:59:49Z +2785,103,1,7310,0.99,2005-07-27T13:00:55Z,2020-02-15T06:59:49Z +2786,103,2,7472,6.99,2005-07-27T19:04:19Z,2020-02-15T06:59:49Z +2787,103,1,8302,0.99,2005-07-29T03:01:24Z,2020-02-15T06:59:49Z +2788,103,1,8520,4.99,2005-07-29T10:10:02Z,2020-02-15T06:59:49Z +2789,103,2,9390,4.99,2005-07-30T19:42:07Z,2020-02-15T06:59:49Z +2790,103,2,12942,7.99,2005-08-19T05:40:36Z,2020-02-15T06:59:49Z +2791,103,1,13676,0.99,2005-08-20T08:33:21Z,2020-02-15T06:59:49Z +2792,103,2,14064,2.99,2005-08-20T22:39:16Z,2020-02-15T06:59:49Z +2793,103,2,14289,4.99,2005-08-21T06:58:49Z,2020-02-15T06:59:49Z +2794,103,2,15401,8.99,2005-08-22T23:13:10Z,2020-02-15T06:59:49Z +2795,103,1,15461,5.99,2005-08-23T01:13:52Z,2020-02-15T06:59:49Z +2796,103,1,15467,3.99,2005-08-23T01:22:12Z,2020-02-15T06:59:49Z +2797,103,1,15599,5.99,2005-08-23T06:25:07Z,2020-02-15T06:59:49Z +2798,103,2,15679,0.99,2005-08-23T09:27:29Z,2020-02-15T06:59:49Z +2799,103,2,16048,8.99,2005-08-23T22:43:07Z,2020-02-15T06:59:49Z +2800,104,1,163,10.99,2005-05-26T02:26:23Z,2020-02-15T06:59:49Z +2801,104,2,808,3.99,2005-05-29T19:08:20Z,2020-02-15T06:59:49Z +2802,104,2,1287,3.99,2005-06-15T08:41:38Z,2020-02-15T06:59:49Z +2803,104,1,2107,0.99,2005-06-17T19:31:16Z,2020-02-15T06:59:49Z +2804,104,2,2928,0.99,2005-06-20T04:43:45Z,2020-02-15T06:59:49Z +2805,104,2,3273,2.99,2005-06-21T05:24:17Z,2020-02-15T06:59:49Z +2806,104,2,4012,4.99,2005-07-07T00:56:09Z,2020-02-15T06:59:49Z +2807,104,2,4438,6.99,2005-07-07T22:56:17Z,2020-02-15T06:59:49Z +2808,104,2,4520,4.99,2005-07-08T02:53:46Z,2020-02-15T06:59:49Z +2809,104,1,4529,7.99,2005-07-08T03:26:20Z,2020-02-15T06:59:49Z +2810,104,1,4917,2.99,2005-07-08T21:32:30Z,2020-02-15T06:59:49Z +2811,104,1,5376,1.99,2005-07-09T18:54:08Z,2020-02-15T06:59:49Z +2812,104,2,7107,2.99,2005-07-27T05:22:04Z,2020-02-15T06:59:49Z +2813,104,1,8413,1.99,2005-07-29T06:47:39Z,2020-02-15T06:59:49Z +2814,104,1,9090,3.99,2005-07-30T08:24:42Z,2020-02-15T06:59:49Z +2815,104,2,9996,5.99,2005-07-31T17:32:03Z,2020-02-15T06:59:49Z +2816,104,1,11700,2.99,2005-08-17T07:12:31Z,2020-02-15T06:59:49Z +2817,104,1,12453,3.99,2005-08-18T11:17:07Z,2020-02-15T06:59:49Z +2818,104,1,13005,0.99,2005-08-19T07:45:42Z,2020-02-15T06:59:49Z +2819,104,1,13017,1.99,2005-08-19T08:02:24Z,2020-02-15T06:59:49Z +2820,104,1,13179,4.99,2005-08-19T13:59:53Z,2020-02-15T06:59:49Z +2821,104,1,13410,3.99,2005-08-19T22:41:44Z,2020-02-15T06:59:49Z +2822,104,1,14218,3.99,2005-08-21T04:43:59Z,2020-02-15T06:59:49Z +2823,104,2,15186,0.99,2005-08-22T15:52:57Z,2020-02-15T06:59:49Z +2824,105,1,327,8.99,2005-05-27T01:18:57Z,2020-02-15T06:59:49Z +2825,105,2,473,7.99,2005-05-27T21:36:34Z,2020-02-15T06:59:49Z +2826,105,1,485,2.99,2005-05-27T23:40:52Z,2020-02-15T06:59:49Z +2827,105,1,779,6.99,2005-05-29T14:17:17Z,2020-02-15T06:59:49Z +2828,105,2,1789,3.99,2005-06-16T19:49:18Z,2020-02-15T06:59:49Z +2829,105,2,1991,3.99,2005-06-17T10:49:23Z,2020-02-15T06:59:49Z +2830,105,2,2635,3.99,2005-06-19T09:08:45Z,2020-02-15T06:59:49Z +2831,105,2,5261,4.99,2005-07-09T14:06:56Z,2020-02-15T06:59:49Z +2832,105,1,5429,4.99,2005-07-09T21:14:03Z,2020-02-15T06:59:49Z +2833,105,2,5542,2.99,2005-07-10T02:45:53Z,2020-02-15T06:59:49Z +2834,105,2,5677,4.99,2005-07-10T08:41:28Z,2020-02-15T06:59:49Z +2835,105,2,6546,4.99,2005-07-12T04:57:17Z,2020-02-15T06:59:49Z +2836,105,1,7442,2.99,2005-07-27T17:47:00Z,2020-02-15T06:59:49Z +2837,105,2,8980,2.99,2005-07-30T04:22:15Z,2020-02-15T06:59:49Z +2838,105,2,9124,3.99,2005-07-30T09:43:12Z,2020-02-15T06:59:49Z +2839,105,2,9198,5.99,2005-07-30T12:37:08Z,2020-02-15T06:59:49Z +2840,105,2,9210,9.99,2005-07-30T12:56:44Z,2020-02-15T06:59:49Z +2841,105,1,10513,4.99,2005-08-01T11:37:34Z,2020-02-15T06:59:49Z +2842,105,1,12217,0.99,2005-08-18T02:44:44Z,2020-02-15T06:59:49Z +2843,105,2,12899,2.99,2005-08-19T04:03:34Z,2020-02-15T06:59:49Z +2844,105,1,13057,6.99,2005-08-19T09:40:05Z,2020-02-15T06:59:49Z +2845,105,1,13751,2.99,2005-08-20T11:17:03Z,2020-02-15T06:59:49Z +2846,105,2,14048,0.99,2005-08-20T22:03:18Z,2020-02-15T06:59:49Z +2847,105,2,15624,4.99,2005-08-23T07:24:27Z,2020-02-15T06:59:49Z +2848,105,2,15688,4.99,2005-08-23T09:48:45Z,2020-02-15T06:59:49Z +2849,105,2,15803,2.99,2005-08-23T14:27:07Z,2020-02-15T06:59:49Z +2850,106,2,552,3.99,2005-05-28T07:53:38Z,2020-02-15T06:59:49Z +2851,106,2,1156,0.99,2005-05-31T22:37:34Z,2020-02-15T06:59:49Z +2852,106,1,2295,4.99,2005-06-18T07:56:18Z,2020-02-15T06:59:49Z +2853,106,1,3023,4.99,2005-06-20T11:18:11Z,2020-02-15T06:59:49Z +2854,106,1,4229,4.99,2005-07-07T12:43:23Z,2020-02-15T06:59:49Z +2855,106,2,4277,2.99,2005-07-07T14:52:12Z,2020-02-15T06:59:49Z +2856,106,1,4665,3.99,2005-07-08T10:04:24Z,2020-02-15T06:59:49Z +2857,106,2,5453,3.99,2005-07-09T22:24:11Z,2020-02-15T06:59:49Z +2858,106,2,6992,0.99,2005-07-27T01:04:45Z,2020-02-15T06:59:49Z +2859,106,1,7224,3.99,2005-07-27T09:44:26Z,2020-02-15T06:59:49Z +2860,106,1,7483,4.99,2005-07-27T19:25:00Z,2020-02-15T06:59:49Z +2861,106,1,8115,4.99,2005-07-28T19:14:17Z,2020-02-15T06:59:49Z +2862,106,2,9072,2.99,2005-07-30T07:45:49Z,2020-02-15T06:59:49Z +2863,106,2,9747,7.99,2005-07-31T09:16:57Z,2020-02-15T06:59:49Z +2864,106,2,10213,8.99,2005-08-01T01:03:18Z,2020-02-15T06:59:49Z +2865,106,1,10228,2.99,2005-08-01T01:43:18Z,2020-02-15T06:59:49Z +2866,106,1,10444,8.99,2005-08-01T09:01:40Z,2020-02-15T06:59:49Z +2867,106,2,11436,0.99,2005-08-02T20:16:06Z,2020-02-15T06:59:49Z +2868,106,1,12159,7.99,2005-08-18T00:36:09Z,2020-02-15T06:59:49Z +2869,106,1,12845,2.99,2005-08-19T02:02:37Z,2020-02-15T06:59:49Z +2870,106,2,14431,2.99,2005-08-21T11:31:15Z,2020-02-15T06:59:49Z +2871,106,1,14920,0.99,2005-08-22T05:08:58Z,2020-02-15T06:59:49Z +2872,106,1,15154,6.99,2005-08-22T14:27:37Z,2020-02-15T06:59:49Z +2873,107,1,170,5.99,2005-05-26T03:11:12Z,2020-02-15T06:59:49Z +2874,107,1,1026,5.99,2005-05-31T03:45:26Z,2020-02-15T06:59:49Z +2875,107,2,1243,2.99,2005-06-15T05:07:32Z,2020-02-15T06:59:49Z +2876,107,2,2693,6.99,2005-06-19T13:11:47Z,2020-02-15T06:59:49Z +2877,107,2,2860,4.99,2005-06-19T23:20:40Z,2020-02-15T06:59:49Z +2878,107,2,2897,3.99,2005-06-20T02:34:23Z,2020-02-15T06:59:49Z +2879,107,1,3033,3.99,2005-06-20T12:02:05Z,2020-02-15T06:59:49Z +2880,107,2,3120,0.99,2005-06-20T18:19:29Z,2020-02-15T06:59:49Z +2881,107,2,3174,0.99,2005-06-20T22:24:00Z,2020-02-15T06:59:49Z +2882,107,2,3824,6.99,2005-07-06T15:43:15Z,2020-02-15T06:59:49Z +2883,107,2,5311,4.99,2005-07-09T16:02:54Z,2020-02-15T06:59:49Z +2884,107,2,5575,2.99,2005-07-10T03:55:50Z,2020-02-15T06:59:49Z +2885,107,2,5798,3.99,2005-07-10T14:45:09Z,2020-02-15T06:59:49Z +2886,107,2,6131,2.99,2005-07-11T08:22:05Z,2020-02-15T06:59:49Z +2887,107,2,6133,0.99,2005-07-11T08:25:22Z,2020-02-15T06:59:49Z +2888,107,1,6811,5.99,2005-07-12T17:54:33Z,2020-02-15T06:59:49Z +2889,107,2,6934,6.99,2005-07-26T23:11:03Z,2020-02-15T06:59:49Z +2890,107,2,7447,4.99,2005-07-27T18:02:08Z,2020-02-15T06:59:49Z +2891,107,1,7600,7.99,2005-07-27T23:41:18Z,2020-02-15T06:59:49Z +2892,107,1,8162,4.99,2005-07-28T21:11:46Z,2020-02-15T06:59:49Z +2893,107,2,8704,1.99,2005-07-29T17:13:45Z,2020-02-15T06:59:49Z +2894,107,1,9155,2.99,2005-07-30T11:00:00Z,2020-02-15T06:59:49Z +2895,107,2,9351,2.99,2005-07-30T18:28:30Z,2020-02-15T06:59:49Z +2896,107,1,10226,4.99,2005-08-01T01:40:04Z,2020-02-15T06:59:49Z +2897,107,2,13361,4.99,2005-08-19T21:07:22Z,2020-02-15T06:59:49Z +2898,107,1,13510,6.99,2005-08-20T02:18:30Z,2020-02-15T06:59:49Z +2899,107,1,14562,4.99,2005-08-21T16:22:59Z,2020-02-15T06:59:49Z +2900,107,1,15560,3.99,2005-08-23T05:01:13Z,2020-02-15T06:59:49Z +2901,107,1,13079,1.98,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2902,107,1,15497,0,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2903,108,1,105,4.99,2005-05-25T17:54:12Z,2020-02-15T06:59:49Z +2904,108,2,1055,0.99,2005-05-31T07:47:18Z,2020-02-15T06:59:49Z +2905,108,2,1372,4.99,2005-06-15T14:45:48Z,2020-02-15T06:59:49Z +2906,108,1,1425,2.99,2005-06-15T18:13:46Z,2020-02-15T06:59:49Z +2907,108,1,2061,8.99,2005-06-17T15:47:00Z,2020-02-15T06:59:49Z +2908,108,1,2210,2.99,2005-06-18T02:27:01Z,2020-02-15T06:59:49Z +2909,108,2,3116,4.99,2005-06-20T18:04:55Z,2020-02-15T06:59:49Z +2910,108,1,3875,0.99,2005-07-06T18:15:39Z,2020-02-15T06:59:49Z +2911,108,2,4082,2.99,2005-07-07T05:11:53Z,2020-02-15T06:59:49Z +2912,108,1,4303,1.99,2005-07-07T16:57:32Z,2020-02-15T06:59:49Z +2913,108,1,4650,4.99,2005-07-08T09:32:08Z,2020-02-15T06:59:49Z +2914,108,1,4754,0.99,2005-07-08T14:20:01Z,2020-02-15T06:59:49Z +2915,108,2,5274,6.99,2005-07-09T14:34:09Z,2020-02-15T06:59:49Z +2916,108,1,5661,5.99,2005-07-10T07:53:51Z,2020-02-15T06:59:49Z +2917,108,2,5806,4.99,2005-07-10T15:11:54Z,2020-02-15T06:59:49Z +2918,108,1,6841,0.99,2005-07-12T19:04:24Z,2020-02-15T06:59:49Z +2919,108,2,8329,5.99,2005-07-29T04:06:33Z,2020-02-15T06:59:49Z +2920,108,2,8587,4.99,2005-07-29T12:18:40Z,2020-02-15T06:59:49Z +2921,108,1,8846,4.99,2005-07-29T23:10:28Z,2020-02-15T06:59:49Z +2922,108,2,9755,4.99,2005-07-31T09:24:55Z,2020-02-15T06:59:49Z +2923,108,1,11316,5.99,2005-08-02T16:07:49Z,2020-02-15T06:59:49Z +2924,108,2,11445,6.99,2005-08-02T20:33:35Z,2020-02-15T06:59:49Z +2925,108,2,11759,2.99,2005-08-17T09:41:23Z,2020-02-15T06:59:49Z +2926,108,1,12583,2.99,2005-08-18T15:51:36Z,2020-02-15T06:59:49Z +2927,108,2,12625,6.99,2005-08-18T17:36:19Z,2020-02-15T06:59:49Z +2928,108,2,13754,2.99,2005-08-20T11:18:08Z,2020-02-15T06:59:49Z +2929,108,2,14635,3.99,2005-08-21T18:51:43Z,2020-02-15T06:59:49Z +2930,108,2,15556,8.99,2005-08-23T04:52:16Z,2020-02-15T06:59:49Z +2931,108,1,16001,2.99,2005-08-23T20:45:53Z,2020-02-15T06:59:49Z +2932,108,1,15294,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2933,109,1,203,5.99,2005-05-26T07:27:57Z,2020-02-15T06:59:49Z +2934,109,1,386,0.99,2005-05-27T10:26:31Z,2020-02-15T06:59:49Z +2935,109,2,622,3.99,2005-05-28T15:58:22Z,2020-02-15T06:59:49Z +2936,109,1,698,0.99,2005-05-29T02:10:52Z,2020-02-15T06:59:49Z +2937,109,1,1061,7.99,2005-05-31T08:27:58Z,2020-02-15T06:59:49Z +2938,109,1,1106,4.99,2005-05-31T14:36:52Z,2020-02-15T06:59:49Z +2939,109,1,1115,2.99,2005-05-31T16:07:09Z,2020-02-15T06:59:49Z +2940,109,2,1581,2.99,2005-06-16T04:28:45Z,2020-02-15T06:59:49Z +2941,109,2,1891,3.99,2005-06-17T04:16:44Z,2020-02-15T06:59:49Z +2942,109,2,2198,6.99,2005-06-18T01:51:22Z,2020-02-15T06:59:49Z +2943,109,2,2679,5.99,2005-06-19T12:12:30Z,2020-02-15T06:59:49Z +2944,109,2,3076,5.99,2005-06-20T15:01:19Z,2020-02-15T06:59:49Z +2945,109,1,4921,4.99,2005-07-08T21:43:21Z,2020-02-15T06:59:49Z +2946,109,1,5027,2.99,2005-07-09T02:32:37Z,2020-02-15T06:59:49Z +2947,109,2,5296,2.99,2005-07-09T15:26:27Z,2020-02-15T06:59:49Z +2948,109,2,6920,6.99,2005-07-12T22:32:58Z,2020-02-15T06:59:49Z +2949,109,2,7145,0.99,2005-07-27T07:01:00Z,2020-02-15T06:59:49Z +2950,109,1,8006,3.99,2005-07-28T15:15:41Z,2020-02-15T06:59:49Z +2951,109,1,9230,0.99,2005-07-30T13:39:42Z,2020-02-15T06:59:49Z +2952,109,1,9871,2.99,2005-07-31T13:25:46Z,2020-02-15T06:59:49Z +2953,109,2,10240,0.99,2005-08-01T02:09:33Z,2020-02-15T06:59:49Z +2954,109,2,10892,3.99,2005-08-02T01:12:06Z,2020-02-15T06:59:49Z +2955,109,2,12137,6.99,2005-08-17T23:52:26Z,2020-02-15T06:59:49Z +2956,109,1,13264,3.99,2005-08-19T17:27:10Z,2020-02-15T06:59:49Z +2957,109,2,15398,7.99,2005-08-22T23:10:49Z,2020-02-15T06:59:49Z +2958,109,2,15677,2.99,2005-08-23T09:23:36Z,2020-02-15T06:59:49Z +2959,110,1,515,7.99,2005-05-28T03:10:10Z,2020-02-15T06:59:49Z +2960,110,2,538,1.99,2005-05-28T06:21:05Z,2020-02-15T06:59:49Z +2961,110,2,1528,8.99,2005-06-16T00:32:52Z,2020-02-15T06:59:49Z +2962,110,1,3587,4.99,2005-07-06T04:27:52Z,2020-02-15T06:59:49Z +2963,110,1,4317,2.99,2005-07-07T17:44:49Z,2020-02-15T06:59:49Z +2964,110,2,4827,4.99,2005-07-08T17:46:30Z,2020-02-15T06:59:49Z +2965,110,1,6160,4.99,2005-07-11T10:08:13Z,2020-02-15T06:59:49Z +2966,110,1,7474,0.99,2005-07-27T19:07:17Z,2020-02-15T06:59:49Z +2967,110,2,7542,0.99,2005-07-27T21:43:04Z,2020-02-15T06:59:49Z +2968,110,1,7570,2.99,2005-07-27T22:40:06Z,2020-02-15T06:59:49Z +2969,110,1,11647,7.99,2005-08-17T04:54:14Z,2020-02-15T06:59:49Z +2970,110,2,12585,3.99,2005-08-18T15:52:12Z,2020-02-15T06:59:49Z +2971,110,1,13723,2.99,2005-08-20T10:05:30Z,2020-02-15T06:59:49Z +2972,110,2,15381,2.99,2005-08-22T22:28:36Z,2020-02-15T06:59:49Z +2973,111,2,505,2.99,2005-05-28T02:06:37Z,2020-02-15T06:59:49Z +2974,111,1,1593,6.99,2005-06-16T05:14:52Z,2020-02-15T06:59:49Z +2975,111,2,1974,2.99,2005-06-17T09:30:05Z,2020-02-15T06:59:49Z +2976,111,2,1999,1.99,2005-06-17T11:30:08Z,2020-02-15T06:59:49Z +2977,111,2,2297,4.99,2005-06-18T08:17:41Z,2020-02-15T06:59:49Z +2978,111,2,3087,2.99,2005-06-20T15:53:59Z,2020-02-15T06:59:49Z +2979,111,2,3333,2.99,2005-06-21T10:01:36Z,2020-02-15T06:59:49Z +2980,111,2,3485,1.99,2005-07-05T23:25:54Z,2020-02-15T06:59:49Z +2981,111,1,3551,3.99,2005-07-06T02:33:48Z,2020-02-15T06:59:49Z +2982,111,2,3963,9.99,2005-07-06T22:19:17Z,2020-02-15T06:59:49Z +2983,111,1,4249,4.99,2005-07-07T14:05:17Z,2020-02-15T06:59:49Z +2984,111,2,4286,0.99,2005-07-07T15:36:44Z,2020-02-15T06:59:49Z +2985,111,1,6896,2.99,2005-07-12T21:25:37Z,2020-02-15T06:59:49Z +2986,111,2,8525,0.99,2005-07-29T10:20:19Z,2020-02-15T06:59:49Z +2987,111,2,9933,0.99,2005-07-31T15:24:46Z,2020-02-15T06:59:49Z +2988,111,2,10039,2.99,2005-07-31T18:50:40Z,2020-02-15T06:59:49Z +2989,111,2,10602,4.99,2005-08-01T14:30:23Z,2020-02-15T06:59:49Z +2990,111,1,10952,4.99,2005-08-02T03:28:21Z,2020-02-15T06:59:49Z +2991,111,2,10990,4.99,2005-08-02T04:41:06Z,2020-02-15T06:59:49Z +2992,111,2,11239,2.99,2005-08-02T13:27:11Z,2020-02-15T06:59:49Z +2993,111,2,12196,3.99,2005-08-18T02:08:48Z,2020-02-15T06:59:49Z +2994,111,2,13251,2.99,2005-08-19T16:48:37Z,2020-02-15T06:59:49Z +2995,111,2,13525,5.99,2005-08-20T02:50:44Z,2020-02-15T06:59:49Z +2996,111,1,14949,0.99,2005-08-22T06:12:16Z,2020-02-15T06:59:49Z +2997,111,2,15174,6.99,2005-08-22T15:26:36Z,2020-02-15T06:59:49Z +2998,111,2,15542,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +2999,112,1,396,0.99,2005-05-27T11:47:04Z,2020-02-15T06:59:49Z +3000,112,2,701,2.99,2005-05-29T02:26:27Z,2020-02-15T06:59:49Z +3001,112,1,1835,4.99,2005-06-16T23:05:36Z,2020-02-15T06:59:49Z +3002,112,2,1930,2.99,2005-06-17T06:50:46Z,2020-02-15T06:59:49Z +3003,112,1,2193,4.99,2005-06-18T01:38:45Z,2020-02-15T06:59:49Z +3004,112,2,3018,2.99,2005-06-20T11:10:35Z,2020-02-15T06:59:49Z +3005,112,1,5351,4.99,2005-07-09T17:40:52Z,2020-02-15T06:59:49Z +3006,112,1,5385,2.99,2005-07-09T19:18:11Z,2020-02-15T06:59:49Z +3007,112,2,6550,2.99,2005-07-12T05:03:14Z,2020-02-15T06:59:49Z +3008,112,2,7691,4.99,2005-07-28T03:30:09Z,2020-02-15T06:59:49Z +3009,112,2,7761,4.99,2005-07-28T06:31:45Z,2020-02-15T06:59:49Z +3010,112,1,9217,4.99,2005-07-30T13:13:55Z,2020-02-15T06:59:49Z +3011,112,2,9321,6.99,2005-07-30T17:19:44Z,2020-02-15T06:59:49Z +3012,112,2,9609,4.99,2005-07-31T03:53:24Z,2020-02-15T06:59:49Z +3013,112,1,9830,5.99,2005-07-31T11:59:05Z,2020-02-15T06:59:49Z +3014,112,2,9911,3.99,2005-07-31T14:48:01Z,2020-02-15T06:59:49Z +3015,112,1,10038,2.99,2005-07-31T18:49:12Z,2020-02-15T06:59:49Z +3016,112,2,10596,5.99,2005-08-01T14:18:57Z,2020-02-15T06:59:49Z +3017,112,1,11019,2.99,2005-08-02T05:29:31Z,2020-02-15T06:59:49Z +3018,112,1,11599,7.99,2005-08-17T03:08:10Z,2020-02-15T06:59:49Z +3019,112,2,11659,4.99,2005-08-17T05:20:45Z,2020-02-15T06:59:49Z +3020,112,2,11863,3.99,2005-08-17T13:56:01Z,2020-02-15T06:59:49Z +3021,112,2,13611,8.99,2005-08-20T06:20:42Z,2020-02-15T06:59:49Z +3022,112,2,13879,2.99,2005-08-20T15:18:10Z,2020-02-15T06:59:49Z +3023,112,2,14049,5.99,2005-08-20T22:08:55Z,2020-02-15T06:59:49Z +3024,112,1,14358,0.99,2005-08-21T09:14:28Z,2020-02-15T06:59:49Z +3025,112,2,15304,4.99,2005-08-22T19:45:57Z,2020-02-15T06:59:49Z +3026,112,1,15671,0.99,2005-08-23T09:08:16Z,2020-02-15T06:59:49Z +3027,112,1,15687,8.99,2005-08-23T09:46:33Z,2020-02-15T06:59:49Z +3028,112,1,15756,2.99,2005-08-23T12:47:05Z,2020-02-15T06:59:49Z +3029,113,1,510,0.99,2005-05-28T02:52:14Z,2020-02-15T06:59:49Z +3030,113,2,776,0.99,2005-05-29T13:35:35Z,2020-02-15T06:59:49Z +3031,113,2,2077,4.99,2005-06-17T16:46:11Z,2020-02-15T06:59:49Z +3032,113,1,2282,2.99,2005-06-18T06:48:23Z,2020-02-15T06:59:49Z +3033,113,1,2783,2.99,2005-06-19T18:29:10Z,2020-02-15T06:59:49Z +3034,113,2,3004,0.99,2005-06-20T10:04:36Z,2020-02-15T06:59:49Z +3035,113,1,3124,8.99,2005-06-20T18:28:19Z,2020-02-15T06:59:49Z +3036,113,1,3162,6.99,2005-06-20T21:21:15Z,2020-02-15T06:59:49Z +3037,113,2,3657,5.99,2005-07-06T07:55:30Z,2020-02-15T06:59:49Z +3038,113,1,4333,2.99,2005-07-07T18:31:50Z,2020-02-15T06:59:49Z +3039,113,2,5189,2.99,2005-07-09T10:23:21Z,2020-02-15T06:59:49Z +3040,113,2,5324,2.99,2005-07-09T16:34:18Z,2020-02-15T06:59:49Z +3041,113,2,5655,4.99,2005-07-10T07:31:06Z,2020-02-15T06:59:49Z +3042,113,1,5774,5.99,2005-07-10T13:31:56Z,2020-02-15T06:59:49Z +3043,113,1,6025,0.99,2005-07-11T02:18:13Z,2020-02-15T06:59:49Z +3044,113,1,6836,0.99,2005-07-12T18:58:05Z,2020-02-15T06:59:49Z +3045,113,2,7468,5.99,2005-07-27T18:52:27Z,2020-02-15T06:59:49Z +3046,113,2,7587,2.99,2005-07-27T23:23:03Z,2020-02-15T06:59:49Z +3047,113,2,9221,6.99,2005-07-30T13:20:06Z,2020-02-15T06:59:49Z +3048,113,2,10181,4.99,2005-08-01T00:00:44Z,2020-02-15T06:59:49Z +3049,113,1,10378,0.99,2005-08-01T06:30:04Z,2020-02-15T06:59:49Z +3050,113,2,10578,1.99,2005-08-01T13:48:02Z,2020-02-15T06:59:49Z +3051,113,2,11655,7.99,2005-08-17T05:11:07Z,2020-02-15T06:59:49Z +3052,113,1,11872,5.99,2005-08-17T14:11:45Z,2020-02-15T06:59:49Z +3053,113,1,12392,5.99,2005-08-18T08:57:58Z,2020-02-15T06:59:49Z +3054,113,2,12817,3.99,2005-08-19T01:04:35Z,2020-02-15T06:59:49Z +3055,113,2,13406,2.99,2005-08-19T22:22:01Z,2020-02-15T06:59:49Z +3056,113,1,15600,1.99,2005-08-23T06:31:24Z,2020-02-15T06:59:49Z +3057,113,1,15770,2.99,2005-08-23T13:18:16Z,2020-02-15T06:59:49Z +3058,114,1,205,4.99,2005-05-26T07:59:37Z,2020-02-15T06:59:49Z +3059,114,1,255,4.99,2005-05-26T14:52:15Z,2020-02-15T06:59:49Z +3060,114,2,889,2.99,2005-05-30T07:14:53Z,2020-02-15T06:59:49Z +3061,114,1,2059,2.99,2005-06-17T15:36:12Z,2020-02-15T06:59:49Z +3062,114,2,2680,7.99,2005-06-19T12:13:37Z,2020-02-15T06:59:49Z +3063,114,1,3094,2.99,2005-06-20T16:06:51Z,2020-02-15T06:59:49Z +3064,114,2,3144,5.99,2005-06-20T20:14:20Z,2020-02-15T06:59:49Z +3065,114,1,3484,4.99,2005-07-05T23:23:11Z,2020-02-15T06:59:49Z +3066,114,1,3924,2.99,2005-07-06T20:38:02Z,2020-02-15T06:59:49Z +3067,114,1,4025,0.99,2005-07-07T02:13:24Z,2020-02-15T06:59:49Z +3068,114,1,5418,0.99,2005-07-09T20:41:35Z,2020-02-15T06:59:49Z +3069,114,2,5624,4.99,2005-07-10T05:43:16Z,2020-02-15T06:59:49Z +3070,114,1,5625,2.99,2005-07-10T05:44:02Z,2020-02-15T06:59:49Z +3071,114,1,6188,2.99,2005-07-11T11:31:47Z,2020-02-15T06:59:49Z +3072,114,1,6754,4.99,2005-07-12T14:59:24Z,2020-02-15T06:59:49Z +3073,114,2,7316,2.99,2005-07-27T13:19:03Z,2020-02-15T06:59:49Z +3074,114,2,7462,2.99,2005-07-27T18:47:47Z,2020-02-15T06:59:49Z +3075,114,2,7565,2.99,2005-07-27T22:33:59Z,2020-02-15T06:59:49Z +3076,114,2,7938,5.99,2005-07-28T12:39:11Z,2020-02-15T06:59:49Z +3077,114,2,8496,4.99,2005-07-29T09:05:33Z,2020-02-15T06:59:49Z +3078,114,1,8590,10.99,2005-07-29T12:32:20Z,2020-02-15T06:59:49Z +3079,114,1,9717,4.99,2005-07-31T08:24:41Z,2020-02-15T06:59:49Z +3080,114,1,11547,4.99,2005-08-17T00:59:24Z,2020-02-15T06:59:49Z +3081,114,2,12326,0.99,2005-08-18T06:41:59Z,2020-02-15T06:59:49Z +3082,114,1,12685,6.99,2005-08-18T19:51:29Z,2020-02-15T06:59:49Z +3083,114,2,13459,6.99,2005-08-20T00:45:40Z,2020-02-15T06:59:49Z +3084,114,2,14158,5.99,2005-08-21T02:43:20Z,2020-02-15T06:59:49Z +3085,114,1,14867,4.99,2005-08-22T03:14:46Z,2020-02-15T06:59:49Z +3086,114,1,15485,0.99,2005-08-23T02:04:57Z,2020-02-15T06:59:49Z +3087,114,1,15528,2.99,2005-08-23T03:45:40Z,2020-02-15T06:59:49Z +3088,114,2,15646,3.99,2005-08-23T08:19:55Z,2020-02-15T06:59:49Z +3089,114,1,16047,0.99,2005-08-23T22:42:48Z,2020-02-15T06:59:49Z +3090,114,2,12506,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3091,115,1,915,0.99,2005-05-30T11:20:27Z,2020-02-15T06:59:49Z +3092,115,1,983,0.99,2005-05-30T22:15:51Z,2020-02-15T06:59:49Z +3093,115,1,1102,2.99,2005-05-31T14:20:29Z,2020-02-15T06:59:49Z +3094,115,2,1361,0.99,2005-06-15T13:37:38Z,2020-02-15T06:59:49Z +3095,115,2,1515,2.99,2005-06-15T23:07:50Z,2020-02-15T06:59:49Z +3096,115,1,3289,6.99,2005-06-21T06:41:48Z,2020-02-15T06:59:49Z +3097,115,2,3544,0.99,2005-07-06T02:06:32Z,2020-02-15T06:59:49Z +3098,115,1,3624,0.99,2005-07-06T06:06:27Z,2020-02-15T06:59:49Z +3099,115,1,4780,1.99,2005-07-08T16:06:51Z,2020-02-15T06:59:49Z +3100,115,1,5245,4.99,2005-07-09T13:24:14Z,2020-02-15T06:59:49Z +3101,115,1,6080,2.99,2005-07-11T05:08:11Z,2020-02-15T06:59:49Z +3102,115,2,6113,2.99,2005-07-11T07:31:08Z,2020-02-15T06:59:49Z +3103,115,1,6373,0.99,2005-07-11T21:35:20Z,2020-02-15T06:59:49Z +3104,115,1,6574,5.99,2005-07-12T06:04:22Z,2020-02-15T06:59:49Z +3105,115,1,6798,6.99,2005-07-12T16:49:11Z,2020-02-15T06:59:49Z +3106,115,2,7355,1.99,2005-07-27T14:45:59Z,2020-02-15T06:59:49Z +3107,115,2,7465,4.99,2005-07-27T18:50:30Z,2020-02-15T06:59:49Z +3108,115,1,7983,4.99,2005-07-28T14:23:01Z,2020-02-15T06:59:49Z +3109,115,1,8594,4.99,2005-07-29T12:42:13Z,2020-02-15T06:59:49Z +3110,115,2,9578,0.99,2005-07-31T02:54:31Z,2020-02-15T06:59:49Z +3111,115,2,10022,3.99,2005-07-31T18:25:30Z,2020-02-15T06:59:49Z +3112,115,2,10475,4.99,2005-08-01T10:03:17Z,2020-02-15T06:59:49Z +3113,115,2,10647,2.99,2005-08-01T16:08:46Z,2020-02-15T06:59:49Z +3114,115,2,10919,0.99,2005-08-02T02:11:03Z,2020-02-15T06:59:49Z +3115,115,1,11891,2.99,2005-08-17T15:11:55Z,2020-02-15T06:59:49Z +3116,115,2,12366,0.99,2005-08-18T07:55:14Z,2020-02-15T06:59:49Z +3117,115,2,13977,0.99,2005-08-20T19:02:34Z,2020-02-15T06:59:49Z +3118,115,1,15176,6.99,2005-08-22T15:30:25Z,2020-02-15T06:59:49Z +3119,115,2,15452,0.99,2005-08-23T00:57:12Z,2020-02-15T06:59:49Z +3120,115,2,13056,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3121,116,1,1058,4.99,2005-05-31T08:04:17Z,2020-02-15T06:59:49Z +3122,116,2,1332,0.99,2005-06-15T11:36:01Z,2020-02-15T06:59:49Z +3123,116,2,1533,0.99,2005-06-16T00:46:02Z,2020-02-15T06:59:49Z +3124,116,2,1762,4.99,2005-06-16T17:50:19Z,2020-02-15T06:59:49Z +3125,116,2,1913,4.99,2005-06-17T05:19:47Z,2020-02-15T06:59:49Z +3126,116,1,2639,4.99,2005-06-19T09:24:02Z,2020-02-15T06:59:49Z +3127,116,1,2861,3.99,2005-06-19T23:21:34Z,2020-02-15T06:59:49Z +3128,116,2,3908,6.99,2005-07-06T19:47:26Z,2020-02-15T06:59:49Z +3129,116,2,3940,2.99,2005-07-06T21:16:59Z,2020-02-15T06:59:49Z +3130,116,1,4027,0.99,2005-07-07T02:19:01Z,2020-02-15T06:59:49Z +3131,116,2,4737,4.99,2005-07-08T13:23:53Z,2020-02-15T06:59:49Z +3132,116,2,5169,2.99,2005-07-09T09:22:25Z,2020-02-15T06:59:49Z +3133,116,1,6557,4.99,2005-07-12T05:12:03Z,2020-02-15T06:59:49Z +3134,116,1,7238,0.99,2005-07-27T10:13:41Z,2020-02-15T06:59:49Z +3135,116,2,7763,5.99,2005-07-28T06:35:16Z,2020-02-15T06:59:49Z +3136,116,2,9245,6.99,2005-07-30T14:07:50Z,2020-02-15T06:59:49Z +3137,116,1,9562,3.99,2005-07-31T02:23:20Z,2020-02-15T06:59:49Z +3138,116,2,10250,1.99,2005-08-01T02:38:42Z,2020-02-15T06:59:49Z +3139,116,1,10801,1.99,2005-08-01T22:09:35Z,2020-02-15T06:59:49Z +3140,116,2,11016,4.99,2005-08-02T05:19:13Z,2020-02-15T06:59:49Z +3141,116,2,12376,2.99,2005-08-18T08:20:29Z,2020-02-15T06:59:49Z +3142,116,2,13146,7.99,2005-08-19T12:54:42Z,2020-02-15T06:59:49Z +3143,116,1,13369,0.99,2005-08-19T21:19:47Z,2020-02-15T06:59:49Z +3144,116,1,13474,0.99,2005-08-20T01:04:32Z,2020-02-15T06:59:49Z +3145,116,1,13775,6.99,2005-08-20T11:56:30Z,2020-02-15T06:59:49Z +3146,116,2,14763,11.99,2005-08-21T23:34:00Z,2020-02-15T06:59:49Z +3147,116,1,14907,2.99,2005-08-22T04:44:09Z,2020-02-15T06:59:49Z +3148,117,1,700,0.99,2005-05-29T02:18:54Z,2020-02-15T06:59:49Z +3149,117,2,1114,0.99,2005-05-31T16:00:33Z,2020-02-15T06:59:49Z +3150,117,1,1755,2.99,2005-06-16T17:18:44Z,2020-02-15T06:59:49Z +3151,117,2,3218,2.99,2005-06-21T01:38:09Z,2020-02-15T06:59:49Z +3152,117,2,5506,5.99,2005-07-10T00:45:48Z,2020-02-15T06:59:49Z +3153,117,1,5673,0.99,2005-07-10T08:21:54Z,2020-02-15T06:59:49Z +3154,117,1,6093,9.99,2005-07-11T05:52:50Z,2020-02-15T06:59:49Z +3155,117,1,6449,6.99,2005-07-12T00:48:58Z,2020-02-15T06:59:49Z +3156,117,1,8687,2.99,2005-07-29T16:19:17Z,2020-02-15T06:59:49Z +3157,117,2,10556,2.99,2005-08-01T12:58:42Z,2020-02-15T06:59:49Z +3158,117,1,10558,4.99,2005-08-01T13:00:20Z,2020-02-15T06:59:49Z +3159,117,2,11467,3.99,2005-08-02T21:47:07Z,2020-02-15T06:59:49Z +3160,117,1,12143,2.99,2005-08-18T00:06:26Z,2020-02-15T06:59:49Z +3161,117,1,12337,2.99,2005-08-18T07:02:24Z,2020-02-15T06:59:49Z +3162,117,1,12575,6.99,2005-08-18T15:37:42Z,2020-02-15T06:59:49Z +3163,117,1,12618,4.99,2005-08-18T17:24:02Z,2020-02-15T06:59:49Z +3164,117,1,14784,0.99,2005-08-22T00:23:13Z,2020-02-15T06:59:49Z +3165,117,2,14854,2.99,2005-08-22T02:26:47Z,2020-02-15T06:59:49Z +3166,117,1,15432,2.99,2005-08-23T00:26:52Z,2020-02-15T06:59:49Z +3167,118,2,351,5.99,2005-05-27T05:39:03Z,2020-02-15T06:59:49Z +3168,118,2,1766,4.99,2005-06-16T17:59:37Z,2020-02-15T06:59:49Z +3169,118,2,2217,0.99,2005-06-18T03:12:29Z,2020-02-15T06:59:49Z +3170,118,1,3263,4.99,2005-06-21T04:15:52Z,2020-02-15T06:59:49Z +3171,118,1,4966,0.99,2005-07-08T23:47:25Z,2020-02-15T06:59:49Z +3172,118,1,5829,1.99,2005-07-10T16:29:41Z,2020-02-15T06:59:49Z +3173,118,1,6377,0.99,2005-07-11T21:41:16Z,2020-02-15T06:59:49Z +3174,118,1,6507,1.99,2005-07-12T03:33:12Z,2020-02-15T06:59:49Z +3175,118,1,7196,2.99,2005-07-27T08:49:08Z,2020-02-15T06:59:49Z +3176,118,1,7850,4.99,2005-07-28T09:31:13Z,2020-02-15T06:59:49Z +3177,118,2,7956,4.99,2005-07-28T13:32:17Z,2020-02-15T06:59:49Z +3178,118,1,8314,3.99,2005-07-29T03:35:04Z,2020-02-15T06:59:49Z +3179,118,2,8760,7.99,2005-07-29T19:22:40Z,2020-02-15T06:59:49Z +3180,118,1,8881,4.99,2005-07-30T00:22:31Z,2020-02-15T06:59:49Z +3181,118,2,10045,1.99,2005-07-31T19:04:35Z,2020-02-15T06:59:49Z +3182,118,2,12538,2.99,2005-08-18T14:09:09Z,2020-02-15T06:59:49Z +3183,118,2,13193,6.99,2005-08-19T14:33:45Z,2020-02-15T06:59:49Z +3184,118,2,14394,5.99,2005-08-21T10:23:10Z,2020-02-15T06:59:49Z +3185,118,2,14595,7.99,2005-08-21T17:35:17Z,2020-02-15T06:59:49Z +3186,118,1,14924,2.99,2005-08-22T05:15:17Z,2020-02-15T06:59:49Z +3187,118,1,15731,0.99,2005-08-23T11:33:25Z,2020-02-15T06:59:49Z +3188,119,2,67,0.99,2005-05-25T09:41:01Z,2020-02-15T06:59:49Z +3189,119,1,235,5.99,2005-05-26T11:51:09Z,2020-02-15T06:59:49Z +3190,119,2,540,6.99,2005-05-28T06:40:25Z,2020-02-15T06:59:49Z +3191,119,1,1179,7.99,2005-06-15T00:36:50Z,2020-02-15T06:59:49Z +3192,119,2,2009,2.99,2005-06-17T11:48:31Z,2020-02-15T06:59:49Z +3193,119,2,3388,5.99,2005-06-21T14:34:51Z,2020-02-15T06:59:49Z +3194,119,2,4840,8.99,2005-07-08T18:18:16Z,2020-02-15T06:59:49Z +3195,119,1,5176,5.99,2005-07-09T09:39:31Z,2020-02-15T06:59:49Z +3196,119,1,5268,0.99,2005-07-09T14:22:43Z,2020-02-15T06:59:49Z +3197,119,1,6079,7.99,2005-07-11T05:07:14Z,2020-02-15T06:59:49Z +3198,119,2,6330,0.99,2005-07-11T19:15:42Z,2020-02-15T06:59:49Z +3199,119,2,8140,4.99,2005-07-28T20:17:50Z,2020-02-15T06:59:49Z +3200,119,1,8183,5.99,2005-07-28T22:21:07Z,2020-02-15T06:59:49Z +3201,119,1,8304,4.99,2005-07-29T03:08:30Z,2020-02-15T06:59:49Z +3202,119,2,9028,2.99,2005-07-30T06:00:35Z,2020-02-15T06:59:49Z +3203,119,1,10101,0.99,2005-07-31T20:47:29Z,2020-02-15T06:59:49Z +3204,119,1,10366,3.99,2005-08-01T06:09:37Z,2020-02-15T06:59:49Z +3205,119,2,10552,2.99,2005-08-01T12:49:44Z,2020-02-15T06:59:49Z +3206,119,1,10681,4.99,2005-08-01T17:30:35Z,2020-02-15T06:59:49Z +3207,119,2,11377,2.99,2005-08-02T18:16:47Z,2020-02-15T06:59:49Z +3208,119,1,11520,5.99,2005-08-17T00:04:28Z,2020-02-15T06:59:49Z +3209,119,2,12576,2.99,2005-08-18T15:38:31Z,2020-02-15T06:59:49Z +3210,119,2,12603,3.99,2005-08-18T16:56:20Z,2020-02-15T06:59:49Z +3211,119,2,12842,6.99,2005-08-19T01:57:21Z,2020-02-15T06:59:49Z +3212,119,1,13581,4.99,2005-08-20T05:26:15Z,2020-02-15T06:59:49Z +3213,119,2,14349,3.99,2005-08-21T08:54:53Z,2020-02-15T06:59:49Z +3214,119,2,14382,2.99,2005-08-21T10:01:03Z,2020-02-15T06:59:49Z +3215,119,2,14643,6.99,2005-08-21T19:11:58Z,2020-02-15T06:59:49Z +3216,119,2,14659,0.99,2005-08-21T19:42:36Z,2020-02-15T06:59:49Z +3217,119,1,15111,4.99,2005-08-22T12:21:43Z,2020-02-15T06:59:49Z +3218,119,2,15131,3.99,2005-08-22T13:06:26Z,2020-02-15T06:59:49Z +3219,119,2,15171,6.99,2005-08-22T15:23:59Z,2020-02-15T06:59:49Z +3220,119,1,15844,2.99,2005-08-23T15:38:12Z,2020-02-15T06:59:49Z +3221,119,2,16028,3.99,2005-08-23T21:52:56Z,2020-02-15T06:59:49Z +3222,120,2,68,7.99,2005-05-25T09:47:31Z,2020-02-15T06:59:49Z +3223,120,2,532,0.99,2005-05-28T05:36:58Z,2020-02-15T06:59:49Z +3224,120,1,1374,3.99,2005-06-15T14:49:54Z,2020-02-15T06:59:49Z +3225,120,1,1820,4.99,2005-06-16T21:34:50Z,2020-02-15T06:59:49Z +3226,120,2,1932,2.99,2005-06-17T06:54:41Z,2020-02-15T06:59:49Z +3227,120,1,2169,4.99,2005-06-17T23:57:23Z,2020-02-15T06:59:49Z +3228,120,1,2803,9.99,2005-06-19T19:18:27Z,2020-02-15T06:59:49Z +3229,120,1,3133,2.99,2005-06-20T19:18:32Z,2020-02-15T06:59:49Z +3230,120,1,4001,5.99,2005-07-07T00:07:00Z,2020-02-15T06:59:49Z +3231,120,2,4272,3.99,2005-07-07T14:39:20Z,2020-02-15T06:59:49Z +3232,120,2,4342,0.99,2005-07-07T18:47:03Z,2020-02-15T06:59:49Z +3233,120,2,4666,9.99,2005-07-08T10:05:02Z,2020-02-15T06:59:49Z +3234,120,1,4942,1.99,2005-07-08T22:42:47Z,2020-02-15T06:59:49Z +3235,120,2,5288,1.99,2005-07-09T15:13:07Z,2020-02-15T06:59:49Z +3236,120,2,6503,0.99,2005-07-12T03:18:07Z,2020-02-15T06:59:49Z +3237,120,1,6989,4.99,2005-07-27T01:00:34Z,2020-02-15T06:59:49Z +3238,120,2,8046,0.99,2005-07-28T16:49:41Z,2020-02-15T06:59:49Z +3239,120,2,8756,1.99,2005-07-29T19:18:57Z,2020-02-15T06:59:49Z +3240,120,1,8998,6.99,2005-07-30T04:54:14Z,2020-02-15T06:59:49Z +3241,120,2,9907,6.99,2005-07-31T14:39:50Z,2020-02-15T06:59:49Z +3242,120,2,10161,0.99,2005-07-31T23:09:41Z,2020-02-15T06:59:49Z +3243,120,2,10696,4.99,2005-08-01T18:18:13Z,2020-02-15T06:59:49Z +3244,120,1,10940,3.99,2005-08-02T03:08:29Z,2020-02-15T06:59:49Z +3245,120,2,11133,0.99,2005-08-02T09:15:45Z,2020-02-15T06:59:49Z +3246,120,2,13167,2.99,2005-08-19T13:36:41Z,2020-02-15T06:59:49Z +3247,120,2,13375,7.99,2005-08-19T21:31:31Z,2020-02-15T06:59:49Z +3248,120,1,14001,2.99,2005-08-20T20:07:15Z,2020-02-15T06:59:49Z +3249,120,1,14153,4.99,2005-08-21T02:24:33Z,2020-02-15T06:59:49Z +3250,120,1,14246,4.99,2005-08-21T05:34:09Z,2020-02-15T06:59:49Z +3251,120,2,14460,9.99,2005-08-21T12:48:48Z,2020-02-15T06:59:49Z +3252,120,2,14969,6.99,2005-08-22T06:49:15Z,2020-02-15T06:59:49Z +3253,120,1,15780,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3254,121,1,217,4.99,2005-05-26T09:24:26Z,2020-02-15T06:59:49Z +3255,121,1,1634,2.99,2005-06-16T08:16:05Z,2020-02-15T06:59:49Z +3256,121,1,1833,1.99,2005-06-16T22:45:03Z,2020-02-15T06:59:49Z +3257,121,2,5670,0.99,2005-07-10T08:14:52Z,2020-02-15T06:59:49Z +3258,121,2,6780,4.99,2005-07-12T16:18:12Z,2020-02-15T06:59:49Z +3259,121,2,7114,0.99,2005-07-27T05:42:13Z,2020-02-15T06:59:49Z +3260,121,1,7185,0.99,2005-07-27T08:23:54Z,2020-02-15T06:59:49Z +3261,121,2,7298,2.99,2005-07-27T12:45:14Z,2020-02-15T06:59:49Z +3262,121,1,8370,6.99,2005-07-29T05:16:21Z,2020-02-15T06:59:49Z +3263,121,2,8788,1.99,2005-07-29T20:46:44Z,2020-02-15T06:59:49Z +3264,121,2,8875,2.99,2005-07-30T00:15:09Z,2020-02-15T06:59:49Z +3265,121,2,8969,8.99,2005-07-30T04:00:19Z,2020-02-15T06:59:49Z +3266,121,2,10457,5.99,2005-08-01T09:17:34Z,2020-02-15T06:59:49Z +3267,121,2,11720,8.99,2005-08-17T07:46:54Z,2020-02-15T06:59:49Z +3268,121,2,12242,1.99,2005-08-18T03:37:31Z,2020-02-15T06:59:49Z +3269,121,2,12428,3.99,2005-08-18T10:24:21Z,2020-02-15T06:59:49Z +3270,121,2,12734,1.99,2005-08-18T22:04:52Z,2020-02-15T06:59:49Z +3271,121,1,12881,5.99,2005-08-19T03:28:13Z,2020-02-15T06:59:49Z +3272,121,2,12892,0.99,2005-08-19T03:46:34Z,2020-02-15T06:59:49Z +3273,121,1,14138,7.99,2005-08-21T01:59:37Z,2020-02-15T06:59:49Z +3274,121,1,14177,4.99,2005-08-21T03:11:33Z,2020-02-15T06:59:49Z +3275,121,2,14412,9.99,2005-08-21T11:02:09Z,2020-02-15T06:59:49Z +3276,121,1,14464,2.99,2005-08-21T12:52:54Z,2020-02-15T06:59:49Z +3277,121,2,15114,7.99,2005-08-22T12:24:55Z,2020-02-15T06:59:49Z +3278,121,1,15369,0.99,2005-08-22T21:58:06Z,2020-02-15T06:59:49Z +3279,121,1,16041,2.99,2005-08-23T22:20:26Z,2020-02-15T06:59:49Z +3280,122,2,853,0.99,2005-05-30T01:43:31Z,2020-02-15T06:59:49Z +3281,122,2,1135,4.99,2005-05-31T19:15:11Z,2020-02-15T06:59:49Z +3282,122,1,1211,0.99,2005-06-15T03:01:20Z,2020-02-15T06:59:49Z +3283,122,2,1442,7.99,2005-06-15T18:55:34Z,2020-02-15T06:59:49Z +3284,122,2,2240,3.99,2005-06-18T04:28:27Z,2020-02-15T06:59:49Z +3285,122,1,2253,0.99,2005-06-18T05:11:43Z,2020-02-15T06:59:49Z +3286,122,1,2482,4.99,2005-06-18T21:10:44Z,2020-02-15T06:59:49Z +3287,122,2,2595,4.99,2005-06-19T05:43:55Z,2020-02-15T06:59:49Z +3288,122,2,2834,1.99,2005-06-19T21:41:46Z,2020-02-15T06:59:49Z +3289,122,1,3778,2.99,2005-07-06T13:44:48Z,2020-02-15T06:59:49Z +3290,122,2,3986,4.99,2005-07-06T23:25:13Z,2020-02-15T06:59:49Z +3291,122,1,4239,7.99,2005-07-07T13:23:17Z,2020-02-15T06:59:49Z +3292,122,1,4568,4.99,2005-07-08T05:23:59Z,2020-02-15T06:59:49Z +3293,122,2,5235,6.99,2005-07-09T12:54:25Z,2020-02-15T06:59:49Z +3294,122,2,6231,0.99,2005-07-11T14:02:36Z,2020-02-15T06:59:49Z +3295,122,1,6427,0.99,2005-07-11T23:57:34Z,2020-02-15T06:59:49Z +3296,122,1,6436,0.99,2005-07-12T00:18:42Z,2020-02-15T06:59:49Z +3297,122,2,6974,7.99,2005-07-27T00:39:16Z,2020-02-15T06:59:49Z +3298,122,1,7267,2.99,2005-07-27T11:22:55Z,2020-02-15T06:59:49Z +3299,122,2,7950,4.99,2005-07-28T13:21:00Z,2020-02-15T06:59:49Z +3300,122,1,8077,2.99,2005-07-28T17:54:35Z,2020-02-15T06:59:49Z +3301,122,2,8177,0.99,2005-07-28T21:43:54Z,2020-02-15T06:59:49Z +3302,122,1,8772,5.99,2005-07-29T19:55:25Z,2020-02-15T06:59:49Z +3303,122,2,9910,4.99,2005-07-31T14:47:57Z,2020-02-15T06:59:49Z +3304,122,1,10626,1.99,2005-08-01T15:32:41Z,2020-02-15T06:59:49Z +3305,122,2,11044,3.99,2005-08-02T06:05:27Z,2020-02-15T06:59:49Z +3306,122,2,11197,2.99,2005-08-02T11:45:07Z,2020-02-15T06:59:49Z +3307,122,2,12476,4.99,2005-08-18T12:22:40Z,2020-02-15T06:59:49Z +3308,122,2,12711,4.99,2005-08-18T21:03:32Z,2020-02-15T06:59:49Z +3309,122,1,13171,2.99,2005-08-19T13:48:54Z,2020-02-15T06:59:49Z +3310,122,1,13812,4.99,2005-08-20T13:01:43Z,2020-02-15T06:59:49Z +3311,122,2,14666,5.99,2005-08-21T19:51:09Z,2020-02-15T06:59:49Z +3312,123,1,992,2.99,2005-05-30T23:47:56Z,2020-02-15T06:59:49Z +3313,123,2,1490,4.99,2005-06-15T21:42:17Z,2020-02-15T06:59:49Z +3314,123,1,1751,0.99,2005-06-16T17:00:14Z,2020-02-15T06:59:49Z +3315,123,2,1775,4.99,2005-06-16T18:28:19Z,2020-02-15T06:59:49Z +3316,123,2,1951,0.99,2005-06-17T08:30:35Z,2020-02-15T06:59:49Z +3317,123,1,2594,2.99,2005-06-19T05:43:43Z,2020-02-15T06:59:49Z +3318,123,1,4442,3.99,2005-07-07T23:05:30Z,2020-02-15T06:59:49Z +3319,123,1,4860,8.99,2005-07-08T18:54:07Z,2020-02-15T06:59:49Z +3320,123,2,7535,4.99,2005-07-27T21:32:39Z,2020-02-15T06:59:49Z +3321,123,1,7727,2.99,2005-07-28T04:52:43Z,2020-02-15T06:59:49Z +3322,123,2,7768,0.99,2005-07-28T06:44:03Z,2020-02-15T06:59:49Z +3323,123,1,7852,2.99,2005-07-28T09:34:29Z,2020-02-15T06:59:49Z +3324,123,1,7969,5.99,2005-07-28T13:57:37Z,2020-02-15T06:59:49Z +3325,123,2,8699,4.99,2005-07-29T16:53:00Z,2020-02-15T06:59:49Z +3326,123,2,9529,4.99,2005-07-31T01:05:26Z,2020-02-15T06:59:49Z +3327,123,1,10066,4.99,2005-07-31T19:30:01Z,2020-02-15T06:59:49Z +3328,123,2,10295,8.99,2005-08-01T03:53:49Z,2020-02-15T06:59:49Z +3329,123,1,12360,2.99,2005-08-18T07:46:35Z,2020-02-15T06:59:49Z +3330,123,1,12402,3.99,2005-08-18T09:27:34Z,2020-02-15T06:59:49Z +3331,123,1,13668,2.99,2005-08-20T08:26:06Z,2020-02-15T06:59:49Z +3332,123,2,15152,7.99,2005-08-22T14:25:21Z,2020-02-15T06:59:49Z +3333,123,2,15525,4.99,2005-08-23T03:43:32Z,2020-02-15T06:59:49Z +3334,123,1,15621,1.99,2005-08-23T07:13:43Z,2020-02-15T06:59:49Z +3335,123,2,15787,2.99,2005-08-23T13:51:57Z,2020-02-15T06:59:49Z +3336,124,1,775,0.99,2005-05-29T13:23:26Z,2020-02-15T06:59:49Z +3337,124,2,1039,4.99,2005-05-31T05:32:29Z,2020-02-15T06:59:49Z +3338,124,2,1057,3.99,2005-05-31T07:58:06Z,2020-02-15T06:59:49Z +3339,124,2,1130,5.99,2005-05-31T18:13:57Z,2020-02-15T06:59:49Z +3340,124,2,2336,1.99,2005-06-18T11:00:05Z,2020-02-15T06:59:49Z +3341,124,1,4341,7.99,2005-07-07T18:44:23Z,2020-02-15T06:59:49Z +3342,124,2,4709,2.99,2005-07-08T12:04:34Z,2020-02-15T06:59:49Z +3343,124,1,5566,2.99,2005-07-10T03:30:17Z,2020-02-15T06:59:49Z +3344,124,1,6411,2.99,2005-07-11T23:10:50Z,2020-02-15T06:59:49Z +3345,124,1,7519,6.99,2005-07-27T21:01:41Z,2020-02-15T06:59:49Z +3346,124,2,7700,8.99,2005-07-28T03:54:14Z,2020-02-15T06:59:49Z +3347,124,2,8524,0.99,2005-07-29T10:20:07Z,2020-02-15T06:59:49Z +3348,124,1,9986,3.99,2005-07-31T17:16:50Z,2020-02-15T06:59:49Z +3349,124,2,11493,5.99,2005-08-02T22:47:00Z,2020-02-15T06:59:49Z +3350,124,1,12835,4.99,2005-08-19T01:47:45Z,2020-02-15T06:59:49Z +3351,124,2,14737,0.99,2005-08-21T22:27:11Z,2020-02-15T06:59:49Z +3352,124,2,15266,4.99,2005-08-22T18:37:24Z,2020-02-15T06:59:49Z +3353,124,2,16023,0.99,2005-08-23T21:45:02Z,2020-02-15T06:59:49Z +3354,125,2,185,3.99,2005-05-26T05:30:03Z,2020-02-15T06:59:49Z +3355,125,1,1481,2.99,2005-06-15T21:17:58Z,2020-02-15T06:59:49Z +3356,125,1,2355,3.99,2005-06-18T12:57:06Z,2020-02-15T06:59:49Z +3357,125,1,2826,7.99,2005-06-19T20:41:35Z,2020-02-15T06:59:49Z +3358,125,1,3118,4.99,2005-06-20T18:05:57Z,2020-02-15T06:59:49Z +3359,125,1,3617,4.99,2005-07-06T05:58:06Z,2020-02-15T06:59:49Z +3360,125,1,5200,2.99,2005-07-09T10:52:09Z,2020-02-15T06:59:49Z +3361,125,2,5523,7.99,2005-07-10T01:47:55Z,2020-02-15T06:59:49Z +3362,125,1,6055,0.99,2005-07-11T03:59:08Z,2020-02-15T06:59:49Z +3363,125,2,6268,6.99,2005-07-11T15:55:34Z,2020-02-15T06:59:49Z +3364,125,1,7323,4.99,2005-07-27T13:39:40Z,2020-02-15T06:59:49Z +3365,125,2,7879,0.99,2005-07-28T10:27:46Z,2020-02-15T06:59:49Z +3366,125,2,7922,0.99,2005-07-28T12:05:25Z,2020-02-15T06:59:49Z +3367,125,2,8375,2.99,2005-07-29T05:25:30Z,2020-02-15T06:59:49Z +3368,125,1,8433,2.99,2005-07-29T07:19:16Z,2020-02-15T06:59:49Z +3369,125,1,8832,4.99,2005-07-29T22:37:49Z,2020-02-15T06:59:49Z +3370,125,1,9129,9.99,2005-07-30T09:51:21Z,2020-02-15T06:59:49Z +3371,125,1,9496,4.99,2005-07-30T23:55:20Z,2020-02-15T06:59:49Z +3372,125,2,9504,0.99,2005-07-31T00:09:07Z,2020-02-15T06:59:49Z +3373,125,1,9722,4.99,2005-07-31T08:29:48Z,2020-02-15T06:59:49Z +3374,125,2,9734,2.99,2005-07-31T08:57:45Z,2020-02-15T06:59:49Z +3375,125,1,10583,2.99,2005-08-01T13:54:35Z,2020-02-15T06:59:49Z +3376,125,1,10699,2.99,2005-08-01T18:24:51Z,2020-02-15T06:59:49Z +3377,125,2,11279,7.99,2005-08-02T14:30:03Z,2020-02-15T06:59:49Z +3378,125,1,11806,4.99,2005-08-17T11:49:28Z,2020-02-15T06:59:49Z +3379,125,1,11832,4.99,2005-08-17T12:55:31Z,2020-02-15T06:59:49Z +3380,125,1,11999,0.99,2005-08-17T18:47:07Z,2020-02-15T06:59:49Z +3381,125,1,12075,4.99,2005-08-17T21:54:55Z,2020-02-15T06:59:49Z +3382,125,2,12262,2.99,2005-08-18T04:16:15Z,2020-02-15T06:59:49Z +3383,125,2,13441,6.99,2005-08-19T23:48:23Z,2020-02-15T06:59:49Z +3384,125,2,14456,2.99,2005-08-21T12:38:09Z,2020-02-15T06:59:49Z +3385,125,1,15055,2.99,2005-08-22T10:14:39Z,2020-02-15T06:59:49Z +3386,126,1,9,4.99,2005-05-25T00:00:40Z,2020-02-15T06:59:49Z +3387,126,1,752,4.99,2005-05-29T10:14:15Z,2020-02-15T06:59:49Z +3388,126,2,1054,4.99,2005-05-31T07:33:25Z,2020-02-15T06:59:49Z +3389,126,1,3450,2.99,2005-06-21T21:01:57Z,2020-02-15T06:59:49Z +3390,126,2,3502,5.99,2005-07-06T00:15:06Z,2020-02-15T06:59:49Z +3391,126,1,3725,4.99,2005-07-06T11:15:04Z,2020-02-15T06:59:49Z +3392,126,1,3804,7.99,2005-07-06T15:08:08Z,2020-02-15T06:59:49Z +3393,126,1,4691,0.99,2005-07-08T11:04:53Z,2020-02-15T06:59:49Z +3394,126,2,4730,2.99,2005-07-08T12:59:49Z,2020-02-15T06:59:49Z +3395,126,2,5137,0.99,2005-07-09T08:00:34Z,2020-02-15T06:59:49Z +3396,126,1,5865,0.99,2005-07-10T18:31:05Z,2020-02-15T06:59:49Z +3397,126,1,6747,0.99,2005-07-12T14:33:21Z,2020-02-15T06:59:49Z +3398,126,2,6755,6.99,2005-07-12T15:07:49Z,2020-02-15T06:59:49Z +3399,126,1,7962,0.99,2005-07-28T13:48:09Z,2020-02-15T06:59:49Z +3400,126,1,8091,2.99,2005-07-28T18:27:29Z,2020-02-15T06:59:49Z +3401,126,1,9492,6.99,2005-07-30T23:52:21Z,2020-02-15T06:59:49Z +3402,126,2,10032,4.99,2005-07-31T18:41:55Z,2020-02-15T06:59:49Z +3403,126,1,11196,9.99,2005-08-02T11:42:40Z,2020-02-15T06:59:49Z +3404,126,2,11613,4.99,2005-08-17T03:50:33Z,2020-02-15T06:59:49Z +3405,126,1,11779,3.99,2005-08-17T10:31:58Z,2020-02-15T06:59:49Z +3406,126,1,11801,0.99,2005-08-17T11:30:11Z,2020-02-15T06:59:49Z +3407,126,2,12991,2.99,2005-08-19T07:21:24Z,2020-02-15T06:59:49Z +3408,126,2,13015,7.99,2005-08-19T07:56:51Z,2020-02-15T06:59:49Z +3409,126,2,13177,0.99,2005-08-19T13:56:58Z,2020-02-15T06:59:49Z +3410,126,2,14477,2.99,2005-08-21T13:32:38Z,2020-02-15T06:59:49Z +3411,126,2,14577,2.99,2005-08-21T16:52:29Z,2020-02-15T06:59:49Z +3412,126,2,15741,4.99,2005-08-23T12:10:54Z,2020-02-15T06:59:49Z +3413,126,1,16007,7.99,2005-08-23T21:02:43Z,2020-02-15T06:59:49Z +3414,127,1,452,0.99,2005-05-27T19:30:33Z,2020-02-15T06:59:49Z +3415,127,1,708,0.99,2005-05-29T03:23:47Z,2020-02-15T06:59:49Z +3416,127,1,1293,4.99,2005-06-15T09:06:24Z,2020-02-15T06:59:49Z +3417,127,2,1803,2.99,2005-06-16T20:32:47Z,2020-02-15T06:59:49Z +3418,127,2,2412,3.99,2005-06-18T16:58:58Z,2020-02-15T06:59:49Z +3419,127,1,4652,5.99,2005-07-08T09:47:51Z,2020-02-15T06:59:49Z +3420,127,2,4811,5.99,2005-07-08T17:04:24Z,2020-02-15T06:59:49Z +3421,127,2,5499,2.99,2005-07-10T00:27:45Z,2020-02-15T06:59:49Z +3422,127,2,5983,2.99,2005-07-11T00:34:11Z,2020-02-15T06:59:49Z +3423,127,1,7912,4.99,2005-07-28T11:46:58Z,2020-02-15T06:59:49Z +3424,127,2,8209,6.99,2005-07-28T23:29:28Z,2020-02-15T06:59:49Z +3425,127,1,9859,6.99,2005-07-31T13:02:55Z,2020-02-15T06:59:49Z +3426,127,1,10197,2.99,2005-08-01T00:35:25Z,2020-02-15T06:59:49Z +3427,127,1,10787,10.99,2005-08-01T21:35:01Z,2020-02-15T06:59:49Z +3428,127,1,10973,7.99,2005-08-02T04:09:42Z,2020-02-15T06:59:49Z +3429,127,1,11235,0.99,2005-08-02T13:13:21Z,2020-02-15T06:59:49Z +3430,127,2,12060,4.99,2005-08-17T21:11:57Z,2020-02-15T06:59:49Z +3431,127,2,12820,2.99,2005-08-19T01:05:08Z,2020-02-15T06:59:49Z +3432,127,2,13043,4.99,2005-08-19T09:07:13Z,2020-02-15T06:59:49Z +3433,127,1,13091,2.99,2005-08-19T10:40:10Z,2020-02-15T06:59:49Z +3434,127,2,14030,2.99,2005-08-20T21:23:54Z,2020-02-15T06:59:49Z +3435,127,1,14189,2.99,2005-08-21T03:32:17Z,2020-02-15T06:59:49Z +3436,127,1,15463,5.99,2005-08-23T01:15:07Z,2020-02-15T06:59:49Z +3437,127,2,15736,5.99,2005-08-23T11:40:30Z,2020-02-15T06:59:49Z +3438,128,2,888,5.99,2005-05-30T07:13:14Z,2020-02-15T06:59:49Z +3439,128,2,1131,2.99,2005-05-31T18:44:19Z,2020-02-15T06:59:49Z +3440,128,2,2519,7.99,2005-06-19T00:19:21Z,2020-02-15T06:59:49Z +3441,128,1,2565,0.99,2005-06-19T03:44:03Z,2020-02-15T06:59:49Z +3442,128,1,3751,0.99,2005-07-06T12:23:41Z,2020-02-15T06:59:49Z +3443,128,2,3995,5.99,2005-07-06T23:43:03Z,2020-02-15T06:59:49Z +3444,128,1,5270,2.99,2005-07-09T14:23:46Z,2020-02-15T06:59:49Z +3445,128,1,5647,4.99,2005-07-10T07:08:40Z,2020-02-15T06:59:49Z +3446,128,2,5997,4.99,2005-07-11T01:19:50Z,2020-02-15T06:59:49Z +3447,128,2,6186,2.99,2005-07-11T11:26:41Z,2020-02-15T06:59:49Z +3448,128,2,6481,6.99,2005-07-12T01:50:15Z,2020-02-15T06:59:49Z +3449,128,2,6687,2.99,2005-07-12T12:19:23Z,2020-02-15T06:59:49Z +3450,128,2,7582,4.99,2005-07-27T23:15:14Z,2020-02-15T06:59:49Z +3451,128,2,8415,2.99,2005-07-29T06:52:27Z,2020-02-15T06:59:49Z +3452,128,2,9215,5.99,2005-07-30T13:11:11Z,2020-02-15T06:59:49Z +3453,128,2,9234,2.99,2005-07-30T13:45:54Z,2020-02-15T06:59:49Z +3454,128,1,9433,5.99,2005-07-30T21:28:17Z,2020-02-15T06:59:49Z +3455,128,2,9858,2.99,2005-07-31T13:02:07Z,2020-02-15T06:59:49Z +3456,128,1,9952,3.99,2005-07-31T15:52:37Z,2020-02-15T06:59:49Z +3457,128,1,10011,2.99,2005-07-31T18:02:41Z,2020-02-15T06:59:49Z +3458,128,1,10394,2.99,2005-08-01T06:58:17Z,2020-02-15T06:59:49Z +3459,128,2,12731,2.99,2005-08-18T21:55:38Z,2020-02-15T06:59:49Z +3460,128,2,12843,2.99,2005-08-19T01:58:54Z,2020-02-15T06:59:49Z +3461,128,2,12910,0.99,2005-08-19T04:23:13Z,2020-02-15T06:59:49Z +3462,128,2,13027,0.99,2005-08-19T08:25:16Z,2020-02-15T06:59:49Z +3463,128,2,13181,5.99,2005-08-19T14:00:56Z,2020-02-15T06:59:49Z +3464,128,1,13509,0.99,2005-08-20T02:14:16Z,2020-02-15T06:59:49Z +3465,128,2,13964,2.99,2005-08-20T18:24:26Z,2020-02-15T06:59:49Z +3466,128,2,14157,0.99,2005-08-21T02:43:15Z,2020-02-15T06:59:49Z +3467,128,1,14925,8.99,2005-08-22T05:16:16Z,2020-02-15T06:59:49Z +3468,128,1,15220,3.99,2005-08-22T17:02:23Z,2020-02-15T06:59:49Z +3469,128,1,15835,8.99,2005-08-23T15:25:27Z,2020-02-15T06:59:49Z +3470,129,2,1732,0.99,2005-06-16T15:34:41Z,2020-02-15T06:59:49Z +3471,129,1,2727,3.99,2005-06-19T15:02:39Z,2020-02-15T06:59:49Z +3472,129,2,2768,0.99,2005-06-19T17:46:52Z,2020-02-15T06:59:49Z +3473,129,2,2795,4.99,2005-06-19T18:58:53Z,2020-02-15T06:59:49Z +3474,129,1,3183,4.99,2005-06-20T22:55:55Z,2020-02-15T06:59:49Z +3475,129,1,3219,3.99,2005-06-21T01:43:26Z,2020-02-15T06:59:49Z +3476,129,1,3689,0.99,2005-07-06T09:43:01Z,2020-02-15T06:59:49Z +3477,129,2,3900,4.99,2005-07-06T19:21:28Z,2020-02-15T06:59:49Z +3478,129,2,3936,0.99,2005-07-06T21:15:03Z,2020-02-15T06:59:49Z +3479,129,2,4256,2.99,2005-07-07T14:14:36Z,2020-02-15T06:59:49Z +3480,129,1,4602,0.99,2005-07-08T06:52:40Z,2020-02-15T06:59:49Z +3481,129,1,4896,2.99,2005-07-08T20:23:15Z,2020-02-15T06:59:49Z +3482,129,1,4996,0.99,2005-07-09T00:59:46Z,2020-02-15T06:59:49Z +3483,129,1,5127,0.99,2005-07-09T07:25:47Z,2020-02-15T06:59:49Z +3484,129,2,5350,4.99,2005-07-09T17:39:30Z,2020-02-15T06:59:49Z +3485,129,1,8339,4.99,2005-07-29T04:41:13Z,2020-02-15T06:59:49Z +3486,129,1,8345,2.99,2005-07-29T04:47:37Z,2020-02-15T06:59:49Z +3487,129,2,9823,4.99,2005-07-31T11:49:00Z,2020-02-15T06:59:49Z +3488,129,1,9983,7.99,2005-07-31T17:09:36Z,2020-02-15T06:59:49Z +3489,129,1,10024,7.99,2005-07-31T18:26:36Z,2020-02-15T06:59:49Z +3490,129,2,10167,5.99,2005-07-31T23:24:31Z,2020-02-15T06:59:49Z +3491,129,2,10395,2.99,2005-08-01T07:08:22Z,2020-02-15T06:59:49Z +3492,129,1,10468,0.99,2005-08-01T09:48:29Z,2020-02-15T06:59:49Z +3493,129,1,10483,2.99,2005-08-01T10:19:45Z,2020-02-15T06:59:49Z +3494,129,2,10550,2.99,2005-08-01T12:46:52Z,2020-02-15T06:59:49Z +3495,129,2,10816,4.99,2005-08-01T22:48:57Z,2020-02-15T06:59:49Z +3496,129,2,12612,3.99,2005-08-18T17:10:05Z,2020-02-15T06:59:49Z +3497,129,2,12728,4.99,2005-08-18T21:47:48Z,2020-02-15T06:59:49Z +3498,129,2,13653,10.99,2005-08-20T07:54:54Z,2020-02-15T06:59:49Z +3499,129,1,13915,4.99,2005-08-20T16:42:53Z,2020-02-15T06:59:49Z +3500,129,1,13919,4.99,2005-08-20T16:47:34Z,2020-02-15T06:59:49Z +3501,129,1,13961,0.99,2005-08-20T18:16:34Z,2020-02-15T06:59:49Z +3502,129,1,14353,0.99,2005-08-21T09:07:50Z,2020-02-15T06:59:49Z +3503,129,2,14968,1.99,2005-08-22T06:46:59Z,2020-02-15T06:59:49Z +3504,130,1,1,2.99,2005-05-24T22:53:30Z,2020-02-15T06:59:49Z +3505,130,1,746,2.99,2005-05-29T09:25:10Z,2020-02-15T06:59:49Z +3506,130,1,1630,2.99,2005-06-16T07:55:01Z,2020-02-15T06:59:49Z +3507,130,2,1864,2.99,2005-06-17T01:39:47Z,2020-02-15T06:59:49Z +3508,130,2,2163,2.99,2005-06-17T23:46:16Z,2020-02-15T06:59:49Z +3509,130,2,2292,2.99,2005-06-18T07:37:48Z,2020-02-15T06:59:49Z +3510,130,1,2535,2.99,2005-06-19T01:39:04Z,2020-02-15T06:59:49Z +3511,130,1,2982,6.99,2005-06-20T08:38:29Z,2020-02-15T06:59:49Z +3512,130,2,4339,4.99,2005-07-07T18:41:42Z,2020-02-15T06:59:49Z +3513,130,2,4485,4.99,2005-07-08T01:07:54Z,2020-02-15T06:59:49Z +3514,130,1,6353,3.99,2005-07-11T20:48:56Z,2020-02-15T06:59:49Z +3515,130,1,7181,4.99,2005-07-27T08:14:34Z,2020-02-15T06:59:49Z +3516,130,1,7728,0.99,2005-07-28T04:56:33Z,2020-02-15T06:59:49Z +3517,130,1,9452,0.99,2005-07-30T22:19:16Z,2020-02-15T06:59:49Z +3518,130,2,9637,4.99,2005-07-31T05:18:54Z,2020-02-15T06:59:49Z +3519,130,2,9724,5.99,2005-07-31T08:33:08Z,2020-02-15T06:59:49Z +3520,130,2,10568,2.99,2005-08-01T13:17:28Z,2020-02-15T06:59:49Z +3521,130,2,10645,5.99,2005-08-01T15:52:01Z,2020-02-15T06:59:49Z +3522,130,1,11811,2.99,2005-08-17T11:59:18Z,2020-02-15T06:59:49Z +3523,130,1,12094,2.99,2005-08-17T22:31:04Z,2020-02-15T06:59:49Z +3524,130,1,12777,6.99,2005-08-18T23:39:22Z,2020-02-15T06:59:49Z +3525,130,2,14111,0.99,2005-08-21T00:59:01Z,2020-02-15T06:59:49Z +3526,130,2,15574,5.99,2005-08-23T05:29:32Z,2020-02-15T06:59:49Z +3527,130,1,15777,4.99,2005-08-23T13:29:08Z,2020-02-15T06:59:49Z +3528,131,2,55,2.99,2005-05-25T08:26:13Z,2020-02-15T06:59:49Z +3529,131,1,83,4.99,2005-05-25T12:30:15Z,2020-02-15T06:59:49Z +3530,131,2,944,7.99,2005-05-30T15:26:24Z,2020-02-15T06:59:49Z +3531,131,1,1646,9.99,2005-06-16T09:12:53Z,2020-02-15T06:59:49Z +3532,131,2,1768,4.99,2005-06-16T18:02:06Z,2020-02-15T06:59:49Z +3533,131,1,3515,2.99,2005-07-06T00:48:55Z,2020-02-15T06:59:49Z +3534,131,1,5233,4.99,2005-07-09T12:44:26Z,2020-02-15T06:59:49Z +3535,131,1,5395,4.99,2005-07-09T19:42:37Z,2020-02-15T06:59:49Z +3536,131,1,5610,2.99,2005-07-10T05:09:52Z,2020-02-15T06:59:49Z +3537,131,2,5726,2.99,2005-07-10T11:22:08Z,2020-02-15T06:59:49Z +3538,131,1,5874,3.99,2005-07-10T19:02:51Z,2020-02-15T06:59:49Z +3539,131,1,7557,2.99,2005-07-27T22:18:19Z,2020-02-15T06:59:49Z +3540,131,2,8071,0.99,2005-07-28T17:27:48Z,2020-02-15T06:59:49Z +3541,131,1,8267,6.99,2005-07-29T01:21:02Z,2020-02-15T06:59:49Z +3542,131,1,8570,8.99,2005-07-29T11:40:08Z,2020-02-15T06:59:49Z +3543,131,1,9323,3.99,2005-07-30T17:21:44Z,2020-02-15T06:59:49Z +3544,131,1,10179,2.99,2005-07-31T23:49:54Z,2020-02-15T06:59:49Z +3545,131,1,10459,4.99,2005-08-01T09:20:09Z,2020-02-15T06:59:49Z +3546,131,1,10861,1.99,2005-08-02T00:12:46Z,2020-02-15T06:59:49Z +3547,131,2,11971,0.99,2005-08-17T17:53:42Z,2020-02-15T06:59:49Z +3548,131,1,11973,2.99,2005-08-17T17:55:58Z,2020-02-15T06:59:49Z +3549,131,1,12216,0.99,2005-08-18T02:37:07Z,2020-02-15T06:59:49Z +3550,131,2,12263,0.99,2005-08-18T04:16:18Z,2020-02-15T06:59:49Z +3551,131,1,12372,9.99,2005-08-18T08:04:35Z,2020-02-15T06:59:49Z +3552,131,2,13050,6.99,2005-08-19T09:31:23Z,2020-02-15T06:59:49Z +3553,131,2,13346,7.99,2005-08-19T20:28:21Z,2020-02-15T06:59:49Z +3554,131,2,13353,2.99,2005-08-19T20:53:43Z,2020-02-15T06:59:49Z +3555,131,1,13407,0.99,2005-08-19T22:26:26Z,2020-02-15T06:59:49Z +3556,131,2,15659,2.99,2005-08-23T08:48:43Z,2020-02-15T06:59:49Z +3557,131,1,16042,2.99,2005-08-23T22:20:40Z,2020-02-15T06:59:49Z +3558,132,1,1843,0.99,2005-06-16T23:53:42Z,2020-02-15T06:59:49Z +3559,132,1,2208,4.99,2005-06-18T02:22:07Z,2020-02-15T06:59:49Z +3560,132,1,2384,0.99,2005-06-18T15:18:49Z,2020-02-15T06:59:49Z +3561,132,2,2608,2.99,2005-06-19T07:10:36Z,2020-02-15T06:59:49Z +3562,132,2,2924,4.99,2005-06-20T04:20:14Z,2020-02-15T06:59:49Z +3563,132,1,3121,4.99,2005-06-20T18:23:30Z,2020-02-15T06:59:49Z +3564,132,1,3706,0.99,2005-07-06T10:18:01Z,2020-02-15T06:59:49Z +3565,132,2,3825,2.99,2005-07-06T15:50:03Z,2020-02-15T06:59:49Z +3566,132,1,4168,4.99,2005-07-07T09:37:24Z,2020-02-15T06:59:49Z +3567,132,1,4534,4.99,2005-07-08T03:36:55Z,2020-02-15T06:59:49Z +3568,132,1,4557,5.99,2005-07-08T04:49:15Z,2020-02-15T06:59:49Z +3569,132,2,4903,0.99,2005-07-08T20:50:05Z,2020-02-15T06:59:49Z +3570,132,1,5391,2.99,2005-07-09T19:28:34Z,2020-02-15T06:59:49Z +3571,132,2,5684,5.99,2005-07-10T08:59:03Z,2020-02-15T06:59:49Z +3572,132,1,5703,0.99,2005-07-10T10:04:15Z,2020-02-15T06:59:49Z +3573,132,2,5715,1.99,2005-07-10T10:48:03Z,2020-02-15T06:59:49Z +3574,132,1,6239,6.99,2005-07-11T14:20:48Z,2020-02-15T06:59:49Z +3575,132,1,6978,1.99,2005-07-27T00:47:40Z,2020-02-15T06:59:49Z +3576,132,2,7432,0.99,2005-07-27T17:31:40Z,2020-02-15T06:59:49Z +3577,132,1,7631,1.99,2005-07-28T01:01:15Z,2020-02-15T06:59:49Z +3578,132,2,10243,4.99,2005-08-01T02:18:46Z,2020-02-15T06:59:49Z +3579,132,1,10400,6.99,2005-08-01T07:18:24Z,2020-02-15T06:59:49Z +3580,132,2,10619,3.99,2005-08-01T15:07:04Z,2020-02-15T06:59:49Z +3581,132,1,10638,6.99,2005-08-01T15:44:20Z,2020-02-15T06:59:49Z +3582,132,2,11140,0.99,2005-08-02T09:27:45Z,2020-02-15T06:59:49Z +3583,132,2,11812,0.99,2005-08-17T12:00:54Z,2020-02-15T06:59:49Z +3584,132,2,12133,0.99,2005-08-17T23:47:16Z,2020-02-15T06:59:49Z +3585,132,1,15874,4.99,2005-08-23T16:30:55Z,2020-02-15T06:59:49Z +3586,133,1,275,6.99,2005-05-26T17:09:53Z,2020-02-15T06:59:49Z +3587,133,2,447,2.99,2005-05-27T18:57:02Z,2020-02-15T06:59:49Z +3588,133,2,1522,3.99,2005-06-16T00:17:39Z,2020-02-15T06:59:49Z +3589,133,2,2665,7.99,2005-06-19T11:12:35Z,2020-02-15T06:59:49Z +3590,133,1,3006,0.99,2005-06-20T10:10:29Z,2020-02-15T06:59:49Z +3591,133,2,3365,0.99,2005-06-21T12:55:48Z,2020-02-15T06:59:49Z +3592,133,2,4506,6.99,2005-07-08T02:22:18Z,2020-02-15T06:59:49Z +3593,133,2,4566,2.99,2005-07-08T05:18:50Z,2020-02-15T06:59:49Z +3594,133,1,4681,6.99,2005-07-08T10:36:03Z,2020-02-15T06:59:49Z +3595,133,2,4829,2.99,2005-07-08T17:54:18Z,2020-02-15T06:59:49Z +3596,133,2,5063,2.99,2005-07-09T04:37:31Z,2020-02-15T06:59:49Z +3597,133,1,6157,4.99,2005-07-11T09:48:16Z,2020-02-15T06:59:49Z +3598,133,1,6609,3.99,2005-07-12T08:19:41Z,2020-02-15T06:59:49Z +3599,133,1,7177,2.99,2005-07-27T08:07:39Z,2020-02-15T06:59:49Z +3600,133,1,7400,0.99,2005-07-27T16:16:37Z,2020-02-15T06:59:49Z +3601,133,2,8389,6.99,2005-07-29T05:50:09Z,2020-02-15T06:59:49Z +3602,133,2,9139,2.99,2005-07-30T10:11:52Z,2020-02-15T06:59:49Z +3603,133,1,9175,0.99,2005-07-30T11:47:48Z,2020-02-15T06:59:49Z +3604,133,2,9671,0.99,2005-07-31T06:33:41Z,2020-02-15T06:59:49Z +3605,133,1,10665,0.99,2005-08-01T16:56:17Z,2020-02-15T06:59:49Z +3606,133,1,12419,4.99,2005-08-18T10:01:48Z,2020-02-15T06:59:49Z +3607,133,1,12834,4.99,2005-08-19T01:47:30Z,2020-02-15T06:59:49Z +3608,133,2,13323,2.99,2005-08-19T19:48:07Z,2020-02-15T06:59:49Z +3609,133,1,13455,1.99,2005-08-20T00:32:17Z,2020-02-15T06:59:49Z +3610,133,2,13910,2.99,2005-08-20T16:30:49Z,2020-02-15T06:59:49Z +3611,133,2,15080,0.99,2005-08-22T11:11:51Z,2020-02-15T06:59:49Z +3612,133,1,16009,6.99,2005-08-23T21:07:59Z,2020-02-15T06:59:49Z +3613,134,1,366,3.99,2005-05-27T07:33:54Z,2020-02-15T06:59:49Z +3614,134,2,798,0.99,2005-05-29T17:23:43Z,2020-02-15T06:59:49Z +3615,134,1,814,6.99,2005-05-29T20:16:12Z,2020-02-15T06:59:49Z +3616,134,2,1124,4.99,2005-05-31T16:49:34Z,2020-02-15T06:59:49Z +3617,134,1,1618,9.99,2005-06-16T07:08:38Z,2020-02-15T06:59:49Z +3618,134,2,1784,0.99,2005-06-16T19:25:32Z,2020-02-15T06:59:49Z +3619,134,2,1881,0.99,2005-06-17T03:09:56Z,2020-02-15T06:59:49Z +3620,134,1,3267,5.99,2005-06-21T04:55:21Z,2020-02-15T06:59:49Z +3621,134,1,5315,4.99,2005-07-09T16:09:19Z,2020-02-15T06:59:49Z +3622,134,2,6226,2.99,2005-07-11T13:48:11Z,2020-02-15T06:59:49Z +3623,134,1,6659,0.99,2005-07-12T11:18:05Z,2020-02-15T06:59:49Z +3624,134,2,7516,2.99,2005-07-27T20:55:28Z,2020-02-15T06:59:49Z +3625,134,2,7965,4.99,2005-07-28T13:52:57Z,2020-02-15T06:59:49Z +3626,134,2,8650,1.99,2005-07-29T14:59:04Z,2020-02-15T06:59:49Z +3627,134,1,10864,6.99,2005-08-02T00:18:59Z,2020-02-15T06:59:49Z +3628,134,1,11280,3.99,2005-08-02T14:34:33Z,2020-02-15T06:59:49Z +3629,134,1,11283,4.99,2005-08-02T14:39:46Z,2020-02-15T06:59:49Z +3630,134,2,11482,4.99,2005-08-02T22:24:31Z,2020-02-15T06:59:49Z +3631,134,1,12754,7.99,2005-08-18T22:37:41Z,2020-02-15T06:59:49Z +3632,134,2,12987,2.99,2005-08-19T07:11:44Z,2020-02-15T06:59:49Z +3633,134,2,13006,2.99,2005-08-19T07:47:16Z,2020-02-15T06:59:49Z +3634,134,2,14265,2.99,2005-08-21T06:20:14Z,2020-02-15T06:59:49Z +3635,134,2,15963,2.99,2005-08-23T19:42:46Z,2020-02-15T06:59:49Z +3636,135,1,78,5.99,2005-05-25T11:35:18Z,2020-02-15T06:59:49Z +3637,135,2,753,3.99,2005-05-29T10:16:42Z,2020-02-15T06:59:49Z +3638,135,2,1272,0.99,2005-06-15T07:42:58Z,2020-02-15T06:59:49Z +3639,135,2,1671,1.99,2005-06-16T10:30:22Z,2020-02-15T06:59:49Z +3640,135,2,2941,2.99,2005-06-20T05:22:18Z,2020-02-15T06:59:49Z +3641,135,1,4102,0.99,2005-07-07T06:25:19Z,2020-02-15T06:59:49Z +3642,135,2,5054,7.99,2005-07-09T04:01:02Z,2020-02-15T06:59:49Z +3643,135,1,5541,0.99,2005-07-10T02:44:27Z,2020-02-15T06:59:49Z +3644,135,1,6117,3.99,2005-07-11T07:39:38Z,2020-02-15T06:59:49Z +3645,135,1,6461,3.99,2005-07-12T01:14:03Z,2020-02-15T06:59:49Z +3646,135,1,6817,3.99,2005-07-12T18:19:57Z,2020-02-15T06:59:49Z +3647,135,2,7297,4.99,2005-07-27T12:39:48Z,2020-02-15T06:59:49Z +3648,135,1,7437,0.99,2005-07-27T17:39:18Z,2020-02-15T06:59:49Z +3649,135,1,7554,7.99,2005-07-27T22:12:41Z,2020-02-15T06:59:49Z +3650,135,1,7734,0.99,2005-07-28T05:08:44Z,2020-02-15T06:59:49Z +3651,135,1,8315,0.99,2005-07-29T03:37:07Z,2020-02-15T06:59:49Z +3652,135,2,8885,7.99,2005-07-30T00:36:26Z,2020-02-15T06:59:49Z +3653,135,1,8987,6.99,2005-07-30T04:37:36Z,2020-02-15T06:59:49Z +3654,135,2,10091,4.99,2005-07-31T20:23:13Z,2020-02-15T06:59:49Z +3655,135,2,10471,0.99,2005-08-01T09:52:37Z,2020-02-15T06:59:49Z +3656,135,1,10611,2.99,2005-08-01T14:53:52Z,2020-02-15T06:59:49Z +3657,135,1,10698,3.99,2005-08-01T18:24:41Z,2020-02-15T06:59:49Z +3658,135,2,11194,5.99,2005-08-02T11:35:53Z,2020-02-15T06:59:49Z +3659,135,1,11704,7.99,2005-08-17T07:21:22Z,2020-02-15T06:59:49Z +3660,135,1,12249,2.99,2005-08-18T03:53:34Z,2020-02-15T06:59:49Z +3661,135,1,13035,0.99,2005-08-19T08:46:45Z,2020-02-15T06:59:49Z +3662,135,1,14005,0.99,2005-08-20T20:19:05Z,2020-02-15T06:59:49Z +3663,135,2,14136,5.99,2005-08-21T01:57:26Z,2020-02-15T06:59:49Z +3664,135,2,15908,2.99,2005-08-23T17:42:00Z,2020-02-15T06:59:49Z +3665,135,1,13390,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3666,136,2,1150,2.99,2005-05-31T21:20:09Z,2020-02-15T06:59:49Z +3667,136,2,2104,2.99,2005-06-17T19:14:30Z,2020-02-15T06:59:49Z +3668,136,1,4927,0.99,2005-07-08T22:05:35Z,2020-02-15T06:59:49Z +3669,136,1,5627,3.99,2005-07-10T05:51:12Z,2020-02-15T06:59:49Z +3670,136,2,6142,3.99,2005-07-11T08:54:09Z,2020-02-15T06:59:49Z +3671,136,1,6585,8.99,2005-07-12T06:50:52Z,2020-02-15T06:59:49Z +3672,136,2,9319,0.99,2005-07-30T17:15:27Z,2020-02-15T06:59:49Z +3673,136,2,9764,5.99,2005-07-31T09:42:58Z,2020-02-15T06:59:49Z +3674,136,2,11992,10.99,2005-08-17T18:27:22Z,2020-02-15T06:59:49Z +3675,136,1,12287,5.99,2005-08-18T04:58:06Z,2020-02-15T06:59:49Z +3676,136,2,12539,0.99,2005-08-18T14:10:09Z,2020-02-15T06:59:49Z +3677,136,2,13992,4.99,2005-08-20T19:30:35Z,2020-02-15T06:59:49Z +3678,136,2,14379,0.99,2005-08-21T09:53:03Z,2020-02-15T06:59:49Z +3679,136,1,14437,2.99,2005-08-21T11:48:32Z,2020-02-15T06:59:49Z +3680,136,1,15439,4.99,2005-08-23T00:34:28Z,2020-02-15T06:59:49Z +3681,137,1,925,2.99,2005-05-30T12:13:52Z,2020-02-15T06:59:49Z +3682,137,1,2469,6.99,2005-06-18T20:24:23Z,2020-02-15T06:59:49Z +3683,137,1,2785,2.99,2005-06-19T18:43:57Z,2020-02-15T06:59:49Z +3684,137,2,3058,3.99,2005-06-20T13:28:35Z,2020-02-15T06:59:49Z +3685,137,1,3436,5.99,2005-06-21T19:16:09Z,2020-02-15T06:59:49Z +3686,137,2,3589,4.99,2005-07-06T04:30:18Z,2020-02-15T06:59:49Z +3687,137,2,3676,5.99,2005-07-06T09:10:37Z,2020-02-15T06:59:49Z +3688,137,2,3874,6.99,2005-07-06T18:06:12Z,2020-02-15T06:59:49Z +3689,137,1,4332,6.99,2005-07-07T18:25:26Z,2020-02-15T06:59:49Z +3690,137,2,4474,3.99,2005-07-08T00:26:56Z,2020-02-15T06:59:49Z +3691,137,1,5106,2.99,2005-07-09T06:40:24Z,2020-02-15T06:59:49Z +3692,137,1,5443,3.99,2005-07-09T21:56:09Z,2020-02-15T06:59:49Z +3693,137,1,5804,2.99,2005-07-10T15:06:31Z,2020-02-15T06:59:49Z +3694,137,1,6039,6.99,2005-07-11T03:12:19Z,2020-02-15T06:59:49Z +3695,137,2,6200,0.99,2005-07-11T12:16:42Z,2020-02-15T06:59:49Z +3696,137,1,8028,8.99,2005-07-28T16:11:15Z,2020-02-15T06:59:49Z +3697,137,1,8106,4.99,2005-07-28T19:02:46Z,2020-02-15T06:59:49Z +3698,137,2,8954,2.99,2005-07-30T03:25:51Z,2020-02-15T06:59:49Z +3699,137,1,9002,4.99,2005-07-30T05:02:21Z,2020-02-15T06:59:49Z +3700,137,2,9200,4.99,2005-07-30T12:39:52Z,2020-02-15T06:59:49Z +3701,137,2,9466,7.99,2005-07-30T22:44:36Z,2020-02-15T06:59:49Z +3702,137,1,9709,4.99,2005-07-31T08:04:55Z,2020-02-15T06:59:49Z +3703,137,1,9789,2.99,2005-07-31T10:30:25Z,2020-02-15T06:59:49Z +3704,137,1,10175,6.99,2005-07-31T23:40:11Z,2020-02-15T06:59:49Z +3705,137,2,10595,4.99,2005-08-01T14:16:28Z,2020-02-15T06:59:49Z +3706,137,2,10842,5.99,2005-08-01T23:41:24Z,2020-02-15T06:59:49Z +3707,137,2,11057,4.99,2005-08-02T06:38:19Z,2020-02-15T06:59:49Z +3708,137,1,11281,3.99,2005-08-02T14:35:01Z,2020-02-15T06:59:49Z +3709,137,2,11732,3.99,2005-08-17T08:29:46Z,2020-02-15T06:59:49Z +3710,137,1,12078,2.99,2005-08-17T22:00:22Z,2020-02-15T06:59:49Z +3711,137,1,13148,0.99,2005-08-19T12:55:30Z,2020-02-15T06:59:49Z +3712,137,1,13472,5.99,2005-08-20T01:03:31Z,2020-02-15T06:59:49Z +3713,137,1,13776,5.99,2005-08-20T11:57:06Z,2020-02-15T06:59:49Z +3714,137,1,14754,7.99,2005-08-21T23:17:26Z,2020-02-15T06:59:49Z +3715,137,2,15082,7.99,2005-08-22T11:17:06Z,2020-02-15T06:59:49Z +3716,137,1,15133,0.99,2005-08-22T13:17:43Z,2020-02-15T06:59:49Z +3717,137,2,15537,2.99,2005-08-23T04:00:30Z,2020-02-15T06:59:49Z +3718,137,2,15889,4.99,2005-08-23T16:57:43Z,2020-02-15T06:59:49Z +3719,137,1,16030,9.99,2005-08-23T21:56:04Z,2020-02-15T06:59:49Z +3720,138,1,523,2.99,2005-05-28T03:53:26Z,2020-02-15T06:59:49Z +3721,138,1,1020,0.99,2005-05-31T03:06:08Z,2020-02-15T06:59:49Z +3722,138,2,1316,0.99,2005-06-15T10:26:23Z,2020-02-15T06:59:49Z +3723,138,2,2038,0.99,2005-06-17T14:00:51Z,2020-02-15T06:59:49Z +3724,138,1,2731,7.99,2005-06-19T15:14:55Z,2020-02-15T06:59:49Z +3725,138,2,3481,2.99,2005-07-05T23:13:07Z,2020-02-15T06:59:49Z +3726,138,1,5378,0.99,2005-07-09T19:05:56Z,2020-02-15T06:59:49Z +3727,138,1,5600,1.99,2005-07-10T04:55:45Z,2020-02-15T06:59:49Z +3728,138,1,5679,4.99,2005-07-10T08:44:02Z,2020-02-15T06:59:49Z +3729,138,1,6458,2.99,2005-07-12T01:08:52Z,2020-02-15T06:59:49Z +3730,138,1,6892,0.99,2005-07-12T21:10:04Z,2020-02-15T06:59:49Z +3731,138,1,7208,2.99,2005-07-27T09:16:28Z,2020-02-15T06:59:49Z +3732,138,1,7754,2.99,2005-07-28T06:10:55Z,2020-02-15T06:59:49Z +3733,138,2,8123,4.99,2005-07-28T19:28:23Z,2020-02-15T06:59:49Z +3734,138,2,8160,3.99,2005-07-28T21:10:30Z,2020-02-15T06:59:49Z +3735,138,1,8424,3.99,2005-07-29T07:06:03Z,2020-02-15T06:59:49Z +3736,138,2,9259,1.99,2005-07-30T14:37:44Z,2020-02-15T06:59:49Z +3737,138,1,9619,0.99,2005-07-31T04:17:02Z,2020-02-15T06:59:49Z +3738,138,1,9947,9.99,2005-07-31T15:49:40Z,2020-02-15T06:59:49Z +3739,138,1,10110,0.99,2005-07-31T21:06:12Z,2020-02-15T06:59:49Z +3740,138,2,10190,4.99,2005-08-01T00:27:53Z,2020-02-15T06:59:49Z +3741,138,1,10268,3.99,2005-08-01T03:08:56Z,2020-02-15T06:59:49Z +3742,138,1,10431,5.99,2005-08-01T08:41:54Z,2020-02-15T06:59:49Z +3743,138,1,11015,4.99,2005-08-02T05:13:00Z,2020-02-15T06:59:49Z +3744,138,1,11088,0.99,2005-08-02T07:48:31Z,2020-02-15T06:59:49Z +3745,138,1,11463,0.99,2005-08-02T21:37:36Z,2020-02-15T06:59:49Z +3746,138,2,12550,2.99,2005-08-18T14:40:38Z,2020-02-15T06:59:49Z +3747,138,2,12873,2.99,2005-08-19T03:05:41Z,2020-02-15T06:59:49Z +3748,138,1,14194,1.99,2005-08-21T03:40:11Z,2020-02-15T06:59:49Z +3749,138,2,14432,4.99,2005-08-21T11:36:15Z,2020-02-15T06:59:49Z +3750,138,2,14486,4.99,2005-08-21T13:52:54Z,2020-02-15T06:59:49Z +3751,138,1,14987,4.99,2005-08-22T07:41:08Z,2020-02-15T06:59:49Z +3752,138,1,15424,2.99,2005-08-23T00:03:01Z,2020-02-15T06:59:49Z +3753,138,1,15501,0.99,2005-08-23T02:39:56Z,2020-02-15T06:59:49Z +3754,139,2,1169,2.99,2005-06-14T23:42:56Z,2020-02-15T06:59:49Z +3755,139,1,1736,2.99,2005-06-16T15:52:32Z,2020-02-15T06:59:49Z +3756,139,1,2659,0.99,2005-06-19T10:47:42Z,2020-02-15T06:59:49Z +3757,139,2,2718,7.99,2005-06-19T14:49:42Z,2020-02-15T06:59:49Z +3758,139,2,4660,0.99,2005-07-08T09:54:47Z,2020-02-15T06:59:49Z +3759,139,2,4663,2.99,2005-07-08T09:59:18Z,2020-02-15T06:59:49Z +3760,139,2,5092,2.99,2005-07-09T05:57:39Z,2020-02-15T06:59:49Z +3761,139,2,5265,7.99,2005-07-09T14:15:01Z,2020-02-15T06:59:49Z +3762,139,1,5390,6.99,2005-07-09T19:26:22Z,2020-02-15T06:59:49Z +3763,139,1,5494,6.99,2005-07-10T00:15:00Z,2020-02-15T06:59:49Z +3764,139,1,6496,6.99,2005-07-12T02:57:39Z,2020-02-15T06:59:49Z +3765,139,2,6740,0.99,2005-07-12T14:22:08Z,2020-02-15T06:59:49Z +3766,139,1,7369,0.99,2005-07-27T15:07:58Z,2020-02-15T06:59:49Z +3767,139,2,7767,5.99,2005-07-28T06:42:02Z,2020-02-15T06:59:49Z +3768,139,2,9415,2.99,2005-07-30T20:48:31Z,2020-02-15T06:59:49Z +3769,139,2,9920,4.99,2005-07-31T14:57:13Z,2020-02-15T06:59:49Z +3770,139,1,10900,2.99,2005-08-02T01:34:26Z,2020-02-15T06:59:49Z +3771,139,1,12859,6.99,2005-08-19T02:23:23Z,2020-02-15T06:59:49Z +3772,139,2,13401,3.99,2005-08-19T22:16:16Z,2020-02-15T06:59:49Z +3773,139,2,14736,5.99,2005-08-21T22:25:53Z,2020-02-15T06:59:49Z +3774,139,1,14788,2.99,2005-08-22T00:27:59Z,2020-02-15T06:59:49Z +3775,139,1,15024,2.99,2005-08-22T08:57:10Z,2020-02-15T06:59:49Z +3776,139,2,15029,2.99,2005-08-22T09:04:53Z,2020-02-15T06:59:49Z +3777,139,1,15062,2.99,2005-08-22T10:34:39Z,2020-02-15T06:59:49Z +3778,139,1,15218,9.99,2005-08-22T16:59:05Z,2020-02-15T06:59:49Z +3779,139,1,15471,3.99,2005-08-23T01:38:48Z,2020-02-15T06:59:49Z +3780,139,1,15743,0.99,2005-08-23T12:12:05Z,2020-02-15T06:59:49Z +3781,140,1,1586,4.99,2005-06-16T04:51:18Z,2020-02-15T06:59:49Z +3782,140,1,1687,2.99,2005-06-16T12:09:20Z,2020-02-15T06:59:49Z +3783,140,2,2332,6.99,2005-06-18T10:53:51Z,2020-02-15T06:59:49Z +3784,140,2,3171,0.99,2005-06-20T22:15:47Z,2020-02-15T06:59:49Z +3785,140,1,6286,4.99,2005-07-11T16:55:35Z,2020-02-15T06:59:49Z +3786,140,1,6407,9.99,2005-07-11T23:02:19Z,2020-02-15T06:59:49Z +3787,140,2,6571,0.99,2005-07-12T05:51:47Z,2020-02-15T06:59:49Z +3788,140,1,6918,2.99,2005-07-12T22:30:29Z,2020-02-15T06:59:49Z +3789,140,1,7170,4.99,2005-07-27T07:58:26Z,2020-02-15T06:59:49Z +3790,140,1,9094,4.99,2005-07-30T08:35:10Z,2020-02-15T06:59:49Z +3791,140,1,9404,0.99,2005-07-30T20:21:35Z,2020-02-15T06:59:49Z +3792,140,1,10342,6.99,2005-08-01T05:11:11Z,2020-02-15T06:59:49Z +3793,140,2,11430,3.99,2005-08-02T20:04:36Z,2020-02-15T06:59:49Z +3794,140,1,12086,4.99,2005-08-17T22:20:01Z,2020-02-15T06:59:49Z +3795,140,1,12675,4.99,2005-08-18T19:34:02Z,2020-02-15T06:59:49Z +3796,140,2,13053,10.99,2005-08-19T09:31:48Z,2020-02-15T06:59:49Z +3797,140,1,15261,2.99,2005-08-22T18:24:34Z,2020-02-15T06:59:49Z +3798,140,1,15852,2.99,2005-08-23T15:47:02Z,2020-02-15T06:59:49Z +3799,141,2,930,2.99,2005-05-30T12:44:57Z,2020-02-15T06:59:49Z +3800,141,2,1242,7.99,2005-06-15T05:05:07Z,2020-02-15T06:59:49Z +3801,141,2,2895,7.99,2005-06-20T02:26:31Z,2020-02-15T06:59:49Z +3802,141,1,3434,4.99,2005-06-21T19:08:28Z,2020-02-15T06:59:49Z +3803,141,1,4057,1.99,2005-07-07T04:00:20Z,2020-02-15T06:59:49Z +3804,141,2,4297,0.99,2005-07-07T16:24:09Z,2020-02-15T06:59:49Z +3805,141,1,4656,5.99,2005-07-08T09:50:10Z,2020-02-15T06:59:49Z +3806,141,2,5062,2.99,2005-07-09T04:36:49Z,2020-02-15T06:59:49Z +3807,141,1,5769,0.99,2005-07-10T13:17:58Z,2020-02-15T06:59:49Z +3808,141,2,6979,4.99,2005-07-27T00:49:53Z,2020-02-15T06:59:49Z +3809,141,2,7878,2.99,2005-07-28T10:27:10Z,2020-02-15T06:59:49Z +3810,141,1,8434,4.99,2005-07-29T07:20:14Z,2020-02-15T06:59:49Z +3811,141,2,9073,7.99,2005-07-30T07:49:56Z,2020-02-15T06:59:49Z +3812,141,1,9584,4.99,2005-07-31T03:05:48Z,2020-02-15T06:59:49Z +3813,141,2,9683,2.99,2005-07-31T06:47:13Z,2020-02-15T06:59:49Z +3814,141,1,10287,3.99,2005-08-01T03:37:01Z,2020-02-15T06:59:49Z +3815,141,1,10379,1.99,2005-08-01T06:34:29Z,2020-02-15T06:59:49Z +3816,141,1,10798,4.99,2005-08-01T22:03:10Z,2020-02-15T06:59:49Z +3817,141,1,11411,2.99,2005-08-02T19:29:47Z,2020-02-15T06:59:49Z +3818,141,1,11412,5.99,2005-08-02T19:32:51Z,2020-02-15T06:59:49Z +3819,141,1,12032,5.99,2005-08-17T20:14:26Z,2020-02-15T06:59:49Z +3820,141,1,12093,2.99,2005-08-17T22:28:40Z,2020-02-15T06:59:49Z +3821,141,2,12107,3.99,2005-08-17T22:56:24Z,2020-02-15T06:59:49Z +3822,141,2,12353,2.99,2005-08-18T07:33:08Z,2020-02-15T06:59:49Z +3823,141,1,13000,0.99,2005-08-19T07:36:42Z,2020-02-15T06:59:49Z +3824,141,2,13169,2.99,2005-08-19T13:43:35Z,2020-02-15T06:59:49Z +3825,141,2,13470,4.99,2005-08-20T01:01:16Z,2020-02-15T06:59:49Z +3826,141,2,14059,7.99,2005-08-20T22:24:44Z,2020-02-15T06:59:49Z +3827,141,1,14112,2.99,2005-08-21T01:00:46Z,2020-02-15T06:59:49Z +3828,141,1,15013,4.99,2005-08-22T08:42:45Z,2020-02-15T06:59:49Z +3829,141,1,15309,0.99,2005-08-22T19:54:52Z,2020-02-15T06:59:49Z +3830,141,1,15964,2.99,2005-08-23T19:45:25Z,2020-02-15T06:59:49Z +3831,142,2,11,8.99,2005-05-25T00:09:02Z,2020-02-15T06:59:49Z +3832,142,1,148,0.99,2005-05-26T00:25:23Z,2020-02-15T06:59:49Z +3833,142,1,575,9.99,2005-05-28T10:56:09Z,2020-02-15T06:59:49Z +3834,142,1,1268,1.99,2005-06-15T07:29:30Z,2020-02-15T06:59:49Z +3835,142,1,3214,2.99,2005-06-21T01:08:26Z,2020-02-15T06:59:49Z +3836,142,2,3492,2.99,2005-07-05T23:44:37Z,2020-02-15T06:59:49Z +3837,142,2,4497,4.99,2005-07-08T01:51:32Z,2020-02-15T06:59:49Z +3838,142,1,4531,4.99,2005-07-08T03:27:59Z,2020-02-15T06:59:49Z +3839,142,1,6522,0.99,2005-07-12T04:11:58Z,2020-02-15T06:59:49Z +3840,142,1,7764,2.99,2005-07-28T06:40:05Z,2020-02-15T06:59:49Z +3841,142,2,8513,2.99,2005-07-29T09:52:59Z,2020-02-15T06:59:49Z +3842,142,2,8623,4.99,2005-07-29T13:55:11Z,2020-02-15T06:59:49Z +3843,142,1,9020,7.99,2005-07-30T05:31:27Z,2020-02-15T06:59:49Z +3844,142,1,9131,2.99,2005-07-30T09:55:57Z,2020-02-15T06:59:49Z +3845,142,1,9419,5.99,2005-07-30T21:04:59Z,2020-02-15T06:59:49Z +3846,142,2,10934,5.99,2005-08-02T02:52:18Z,2020-02-15T06:59:49Z +3847,142,2,11244,5.99,2005-08-02T13:33:24Z,2020-02-15T06:59:49Z +3848,142,1,12964,0.99,2005-08-19T06:29:13Z,2020-02-15T06:59:49Z +3849,142,1,13044,0.99,2005-08-19T09:14:31Z,2020-02-15T06:59:49Z +3850,142,2,13745,0.99,2005-08-20T10:53:49Z,2020-02-15T06:59:49Z +3851,142,1,13959,0.99,2005-08-20T18:16:21Z,2020-02-15T06:59:49Z +3852,142,2,14116,4.99,2005-08-21T01:11:17Z,2020-02-15T06:59:49Z +3853,142,2,14813,0.99,2005-08-22T01:11:37Z,2020-02-15T06:59:49Z +3854,142,2,15333,2.99,2005-08-22T20:44:06Z,2020-02-15T06:59:49Z +3855,142,1,15477,1.99,2005-08-23T01:46:35Z,2020-02-15T06:59:49Z +3856,142,1,15454,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:49Z +3857,143,1,221,2.99,2005-05-26T10:14:09Z,2020-02-15T06:59:49Z +3858,143,1,312,2.99,2005-05-26T22:52:19Z,2020-02-15T06:59:49Z +3859,143,2,1898,1.99,2005-06-17T04:28:11Z,2020-02-15T06:59:49Z +3860,143,1,1942,4.99,2005-06-17T07:43:39Z,2020-02-15T06:59:49Z +3861,143,2,2251,3.99,2005-06-18T05:05:08Z,2020-02-15T06:59:49Z +3862,143,1,2574,0.99,2005-06-19T04:23:52Z,2020-02-15T06:59:49Z +3863,143,1,2588,4.99,2005-06-19T05:20:31Z,2020-02-15T06:59:49Z +3864,143,1,4031,7.99,2005-07-07T02:32:07Z,2020-02-15T06:59:49Z +3865,143,2,4221,0.99,2005-07-07T12:18:57Z,2020-02-15T06:59:49Z +3866,143,1,4585,7.99,2005-07-08T06:11:58Z,2020-02-15T06:59:49Z +3867,143,2,6076,6.99,2005-07-11T05:05:30Z,2020-02-15T06:59:49Z +3868,143,2,6207,4.99,2005-07-11T12:34:24Z,2020-02-15T06:59:49Z +3869,143,1,8312,0.99,2005-07-29T03:32:38Z,2020-02-15T06:59:49Z +3870,143,1,8335,0.99,2005-07-29T04:18:25Z,2020-02-15T06:59:49Z +3871,143,2,9889,1.99,2005-07-31T14:02:50Z,2020-02-15T06:59:49Z +3872,143,1,10118,0.99,2005-07-31T21:16:31Z,2020-02-15T06:59:49Z +3873,143,1,11278,6.99,2005-08-02T14:29:43Z,2020-02-15T06:59:49Z +3874,143,2,11651,6.99,2005-08-17T05:02:25Z,2020-02-15T06:59:49Z +3875,143,1,12408,2.99,2005-08-18T09:40:38Z,2020-02-15T06:59:49Z +3876,143,2,13835,4.99,2005-08-20T14:06:33Z,2020-02-15T06:59:49Z +3877,143,1,15250,5.99,2005-08-22T18:03:11Z,2020-02-15T06:59:49Z +3878,143,1,16029,4.99,2005-08-23T21:54:02Z,2020-02-15T06:59:49Z +3879,144,1,323,2.99,2005-05-27T00:49:27Z,2020-02-15T06:59:49Z +3880,144,2,345,2.99,2005-05-27T04:32:25Z,2020-02-15T06:59:49Z +3881,144,1,1814,5.99,2005-06-16T21:15:22Z,2020-02-15T06:59:49Z +3882,144,1,1943,0.99,2005-06-17T07:49:17Z,2020-02-15T06:59:49Z +3883,144,1,2756,4.99,2005-06-19T16:57:42Z,2020-02-15T06:59:49Z +3884,144,2,3019,4.99,2005-06-20T11:11:52Z,2020-02-15T06:59:49Z +3885,144,1,3145,2.99,2005-06-20T20:21:17Z,2020-02-15T06:59:49Z +3886,144,1,3321,2.99,2005-06-21T08:33:26Z,2020-02-15T06:59:49Z +3887,144,1,4726,6.99,2005-07-08T12:50:54Z,2020-02-15T06:59:49Z +3888,144,2,4818,3.99,2005-07-08T17:18:22Z,2020-02-15T06:59:49Z +3889,144,2,5049,0.99,2005-07-09T03:54:12Z,2020-02-15T06:59:49Z +3890,144,2,5374,8.99,2005-07-09T18:52:08Z,2020-02-15T06:59:49Z +3891,144,2,5408,7.99,2005-07-09T20:16:51Z,2020-02-15T06:59:49Z +3892,144,2,5526,7.99,2005-07-10T02:04:03Z,2020-02-15T06:59:49Z +3893,144,2,6614,7.99,2005-07-12T08:33:49Z,2020-02-15T06:59:49Z +3894,144,2,6791,9.99,2005-07-12T16:35:07Z,2020-02-15T06:59:49Z +3895,144,2,7378,5.99,2005-07-27T15:31:33Z,2020-02-15T06:59:49Z +3896,144,2,7566,2.99,2005-07-27T22:34:45Z,2020-02-15T06:59:49Z +3897,144,1,7830,0.99,2005-07-28T08:43:49Z,2020-02-15T06:59:49Z +3898,144,1,7858,3.99,2005-07-28T09:50:18Z,2020-02-15T06:59:49Z +3899,144,2,8459,5.99,2005-07-29T08:05:40Z,2020-02-15T06:59:49Z +3900,144,1,8983,0.99,2005-07-30T04:31:08Z,2020-02-15T06:59:49Z +3901,144,1,9034,7.99,2005-07-30T06:10:58Z,2020-02-15T06:59:49Z +3902,144,1,9098,3.99,2005-07-30T08:44:21Z,2020-02-15T06:59:49Z +3903,144,2,9174,4.99,2005-07-30T11:42:10Z,2020-02-15T06:59:49Z +3904,144,2,9714,0.99,2005-07-31T08:15:32Z,2020-02-15T06:59:49Z +3905,144,1,10302,0.99,2005-08-01T04:12:08Z,2020-02-15T06:59:49Z +3906,144,1,10593,4.99,2005-08-01T14:13:19Z,2020-02-15T06:59:49Z +3907,144,1,10740,5.99,2005-08-01T19:50:32Z,2020-02-15T06:59:49Z +3908,144,1,10951,4.99,2005-08-02T03:26:35Z,2020-02-15T06:59:49Z +3909,144,1,11228,2.99,2005-08-02T12:55:23Z,2020-02-15T06:59:49Z +3910,144,2,11476,6.99,2005-08-02T22:03:47Z,2020-02-15T06:59:49Z +3911,144,1,11534,7.99,2005-08-17T00:35:27Z,2020-02-15T06:59:49Z +3912,144,1,11859,4.99,2005-08-17T13:51:20Z,2020-02-15T06:59:49Z +3913,144,2,12087,2.99,2005-08-17T22:20:12Z,2020-02-15T06:59:49Z +3914,144,2,12733,2.99,2005-08-18T21:59:00Z,2020-02-15T06:59:49Z +3915,144,1,12858,3.99,2005-08-19T02:22:16Z,2020-02-15T06:59:49Z +3916,144,2,12980,6.99,2005-08-19T07:03:14Z,2020-02-15T06:59:49Z +3917,144,2,13881,2.99,2005-08-20T15:18:55Z,2020-02-15T06:59:49Z +3918,144,2,14159,2.99,2005-08-21T02:45:58Z,2020-02-15T06:59:49Z +3919,144,1,15017,1.99,2005-08-22T08:47:44Z,2020-02-15T06:59:49Z +3920,144,1,15753,7.99,2005-08-23T12:43:30Z,2020-02-15T06:59:49Z +3921,145,1,500,0.99,2005-05-28T01:05:25Z,2020-02-15T06:59:49Z +3922,145,2,2271,4.99,2005-06-18T06:29:52Z,2020-02-15T06:59:49Z +3923,145,2,2614,0.99,2005-06-19T07:28:11Z,2020-02-15T06:59:49Z +3924,145,1,3647,5.99,2005-07-06T07:29:17Z,2020-02-15T06:59:49Z +3925,145,2,4201,8.99,2005-07-07T11:19:51Z,2020-02-15T06:59:49Z +3926,145,1,4364,4.99,2005-07-07T19:46:51Z,2020-02-15T06:59:49Z +3927,145,2,4405,6.99,2005-07-07T21:33:16Z,2020-02-15T06:59:49Z +3928,145,1,4470,2.99,2005-07-08T00:20:57Z,2020-02-15T06:59:49Z +3929,145,2,4817,2.99,2005-07-08T17:17:31Z,2020-02-15T06:59:49Z +3930,145,2,6056,2.99,2005-07-11T04:01:27Z,2020-02-15T06:59:49Z +3931,145,1,6339,1.99,2005-07-11T19:45:32Z,2020-02-15T06:59:49Z +3932,145,2,6378,0.99,2005-07-11T21:45:23Z,2020-02-15T06:59:49Z +3933,145,2,7061,2.99,2005-07-27T03:51:10Z,2020-02-15T06:59:49Z +3934,145,1,7529,7.99,2005-07-27T21:18:08Z,2020-02-15T06:59:49Z +3935,145,2,7954,0.99,2005-07-28T13:25:05Z,2020-02-15T06:59:49Z +3936,145,1,8380,0.99,2005-07-29T05:31:29Z,2020-02-15T06:59:49Z +3937,145,1,9156,2.99,2005-07-30T11:04:55Z,2020-02-15T06:59:49Z +3938,145,2,9576,0.99,2005-07-31T02:52:59Z,2020-02-15T06:59:49Z +3939,145,2,10799,4.99,2005-08-01T22:03:31Z,2020-02-15T06:59:49Z +3940,145,2,11904,5.99,2005-08-17T15:39:26Z,2020-02-15T06:59:49Z +3941,145,2,11954,2.99,2005-08-17T17:18:36Z,2020-02-15T06:59:49Z +3942,145,1,12637,2.99,2005-08-18T18:06:53Z,2020-02-15T06:59:49Z +3943,145,2,12785,2.99,2005-08-19T00:05:49Z,2020-02-15T06:59:49Z +3944,145,2,13012,7.99,2005-08-19T07:54:59Z,2020-02-15T06:59:49Z +3945,145,1,13164,3.99,2005-08-19T13:30:55Z,2020-02-15T06:59:49Z +3946,145,2,13272,0.99,2005-08-19T17:49:13Z,2020-02-15T06:59:49Z +3947,145,2,14044,5.99,2005-08-20T21:48:38Z,2020-02-15T06:59:49Z +3948,145,2,14389,6.99,2005-08-21T10:15:20Z,2020-02-15T06:59:49Z +3949,146,2,762,7.99,2005-05-29T11:15:51Z,2020-02-15T06:59:49Z +3950,146,1,1073,4.99,2005-05-31T09:55:04Z,2020-02-15T06:59:49Z +3951,146,2,1209,7.99,2005-06-15T02:31:12Z,2020-02-15T06:59:49Z +3952,146,2,1724,1.99,2005-06-16T15:15:43Z,2020-02-15T06:59:49Z +3953,146,2,2099,2.99,2005-06-17T18:47:26Z,2020-02-15T06:59:49Z +3954,146,1,2242,3.99,2005-06-18T04:32:28Z,2020-02-15T06:59:49Z +3955,146,1,2342,2.99,2005-06-18T11:42:40Z,2020-02-15T06:59:49Z +3956,146,1,2800,0.99,2005-06-19T19:15:56Z,2020-02-15T06:59:49Z +3957,146,1,3131,4.99,2005-06-20T19:08:00Z,2020-02-15T06:59:49Z +3958,146,1,4849,6.99,2005-07-08T18:34:34Z,2020-02-15T06:59:49Z +3959,146,2,5000,4.99,2005-07-09T01:16:13Z,2020-02-15T06:59:49Z +3960,146,1,6102,7.99,2005-07-11T06:53:09Z,2020-02-15T06:59:49Z +3961,146,2,6184,6.99,2005-07-11T11:19:21Z,2020-02-15T06:59:49Z +3962,146,1,6327,4.99,2005-07-11T19:07:29Z,2020-02-15T06:59:49Z +3963,146,1,6990,0.99,2005-07-27T01:02:46Z,2020-02-15T06:59:49Z +3964,146,2,8246,3.99,2005-07-29T00:38:41Z,2020-02-15T06:59:49Z +3965,146,2,11173,7.99,2005-08-02T10:28:00Z,2020-02-15T06:59:49Z +3966,146,1,11221,2.99,2005-08-02T12:32:12Z,2020-02-15T06:59:49Z +3967,146,2,11370,0.99,2005-08-02T18:06:01Z,2020-02-15T06:59:49Z +3968,146,2,11392,5.99,2005-08-02T18:41:11Z,2020-02-15T06:59:49Z +3969,146,1,11573,4.99,2005-08-17T01:38:18Z,2020-02-15T06:59:49Z +3970,146,1,11857,4.99,2005-08-17T13:48:30Z,2020-02-15T06:59:49Z +3971,146,1,12129,7.99,2005-08-17T23:31:25Z,2020-02-15T06:59:49Z +3972,146,1,12385,2.99,2005-08-18T08:39:33Z,2020-02-15T06:59:49Z +3973,146,1,12888,4.99,2005-08-19T03:41:09Z,2020-02-15T06:59:49Z +3974,146,1,13606,4.99,2005-08-20T06:07:01Z,2020-02-15T06:59:49Z +3975,146,2,13829,4.99,2005-08-20T13:50:17Z,2020-02-15T06:59:49Z +3976,146,2,14143,2.99,2005-08-21T02:10:32Z,2020-02-15T06:59:49Z +3977,146,1,15842,6.99,2005-08-23T15:36:05Z,2020-02-15T06:59:49Z +3978,147,1,362,0.99,2005-05-27T07:10:25Z,2020-02-15T06:59:49Z +3979,147,1,509,0.99,2005-05-28T02:51:12Z,2020-02-15T06:59:49Z +3980,147,1,2171,0.99,2005-06-18T00:06:04Z,2020-02-15T06:59:49Z +3981,147,1,2456,6.99,2005-06-18T19:36:50Z,2020-02-15T06:59:49Z +3982,147,2,2859,2.99,2005-06-19T23:18:42Z,2020-02-15T06:59:49Z +3983,147,2,3011,5.99,2005-06-20T10:39:10Z,2020-02-15T06:59:49Z +3984,147,2,3919,7.99,2005-07-06T20:26:21Z,2020-02-15T06:59:49Z +3985,147,2,3956,2.99,2005-07-06T22:01:51Z,2020-02-15T06:59:49Z +3986,147,2,4792,0.99,2005-07-08T16:29:38Z,2020-02-15T06:59:49Z +3987,147,2,5044,0.99,2005-07-09T03:30:25Z,2020-02-15T06:59:49Z +3988,147,1,5567,2.99,2005-07-10T03:36:46Z,2020-02-15T06:59:49Z +3989,147,1,5844,0.99,2005-07-10T17:14:43Z,2020-02-15T06:59:49Z +3990,147,2,6343,0.99,2005-07-11T19:51:35Z,2020-02-15T06:59:49Z +3991,147,2,6469,4.99,2005-07-12T01:29:27Z,2020-02-15T06:59:49Z +3992,147,2,6753,2.99,2005-07-12T14:55:42Z,2020-02-15T06:59:49Z +3993,147,2,7044,0.99,2005-07-27T03:27:29Z,2020-02-15T06:59:49Z +3994,147,1,7723,0.99,2005-07-28T04:45:37Z,2020-02-15T06:59:49Z +3995,147,1,8893,2.99,2005-07-30T00:48:19Z,2020-02-15T06:59:49Z +3996,147,2,9772,0.99,2005-07-31T09:56:07Z,2020-02-15T06:59:49Z +3997,147,1,10706,7.99,2005-08-01T18:41:28Z,2020-02-15T06:59:49Z +3998,147,2,10752,8.99,2005-08-01T20:08:49Z,2020-02-15T06:59:49Z +3999,147,1,12284,4.99,2005-08-18T04:55:49Z,2020-02-15T06:59:49Z +4000,147,1,12757,4.99,2005-08-18T22:57:45Z,2020-02-15T06:59:49Z +4001,147,2,13542,4.99,2005-08-20T03:41:57Z,2020-02-15T06:59:49Z +4002,147,2,13670,3.99,2005-08-20T08:27:01Z,2020-02-15T06:59:49Z +4003,147,2,14021,4.99,2005-08-20T21:02:12Z,2020-02-15T06:59:49Z +4004,147,1,14156,0.99,2005-08-21T02:35:16Z,2020-02-15T06:59:49Z +4005,147,2,14641,0.99,2005-08-21T19:05:23Z,2020-02-15T06:59:49Z +4006,147,2,14960,4.99,2005-08-22T06:31:36Z,2020-02-15T06:59:49Z +4007,147,1,15052,2.99,2005-08-22T10:09:19Z,2020-02-15T06:59:49Z +4008,147,2,15331,4.99,2005-08-22T20:37:57Z,2020-02-15T06:59:49Z +4009,147,2,15513,4.99,2005-08-23T03:01:56Z,2020-02-15T06:59:49Z +4010,147,1,15730,8.99,2005-08-23T11:32:35Z,2020-02-15T06:59:49Z +4011,147,2,16004,6.99,2005-08-23T20:53:20Z,2020-02-15T06:59:49Z +4012,148,1,682,4.99,2005-05-28T23:53:18Z,2020-02-15T06:59:49Z +4013,148,1,1501,1.99,2005-06-15T22:02:35Z,2020-02-15T06:59:49Z +4014,148,2,1517,6.99,2005-06-15T23:20:26Z,2020-02-15T06:59:49Z +4015,148,2,2751,3.99,2005-06-19T16:39:23Z,2020-02-15T06:59:49Z +4016,148,2,2843,3.99,2005-06-19T22:36:39Z,2020-02-15T06:59:49Z +4017,148,2,2847,5.99,2005-06-19T22:54:01Z,2020-02-15T06:59:49Z +4018,148,1,3653,0.99,2005-07-06T07:45:13Z,2020-02-15T06:59:49Z +4019,148,1,4080,0.99,2005-07-07T05:09:54Z,2020-02-15T06:59:49Z +4020,148,1,4746,2.99,2005-07-08T13:47:55Z,2020-02-15T06:59:49Z +4021,148,1,4950,2.99,2005-07-08T22:58:07Z,2020-02-15T06:59:49Z +4022,148,1,5034,4.99,2005-07-09T02:48:15Z,2020-02-15T06:59:49Z +4023,148,1,5372,4.99,2005-07-09T18:48:39Z,2020-02-15T06:59:49Z +4024,148,1,6169,1.99,2005-07-11T10:25:56Z,2020-02-15T06:59:49Z +4025,148,1,6640,8.99,2005-07-12T10:27:19Z,2020-02-15T06:59:49Z +4026,148,2,6793,10.99,2005-07-12T16:37:55Z,2020-02-15T06:59:49Z +4027,148,1,7656,0.99,2005-07-28T02:07:19Z,2020-02-15T06:59:49Z +4028,148,2,7693,4.99,2005-07-28T03:31:22Z,2020-02-15T06:59:49Z +4029,148,1,7865,9.99,2005-07-28T10:07:04Z,2020-02-15T06:59:49Z +4030,148,2,8111,4.99,2005-07-28T19:10:03Z,2020-02-15T06:59:49Z +4031,148,2,8331,3.99,2005-07-29T04:13:29Z,2020-02-15T06:59:49Z +4032,148,1,8394,4.99,2005-07-29T06:02:14Z,2020-02-15T06:59:49Z +4033,148,2,8578,4.99,2005-07-29T11:58:14Z,2020-02-15T06:59:49Z +4034,148,2,8626,4.99,2005-07-29T14:03:20Z,2020-02-15T06:59:49Z +4035,148,1,9023,5.99,2005-07-30T05:36:40Z,2020-02-15T06:59:49Z +4036,148,1,9106,2.99,2005-07-30T08:52:34Z,2020-02-15T06:59:49Z +4037,148,1,9530,1.99,2005-07-31T01:09:06Z,2020-02-15T06:59:49Z +4038,148,1,9594,4.99,2005-07-31T03:23:52Z,2020-02-15T06:59:49Z +4039,148,2,10067,4.99,2005-07-31T19:37:58Z,2020-02-15T06:59:49Z +4040,148,2,10830,6.99,2005-08-01T23:18:06Z,2020-02-15T06:59:49Z +4041,148,1,11357,10.99,2005-08-02T17:42:49Z,2020-02-15T06:59:49Z +4042,148,1,12029,2.99,2005-08-17T20:07:01Z,2020-02-15T06:59:49Z +4043,148,2,12038,0.99,2005-08-17T20:28:26Z,2020-02-15T06:59:49Z +4044,148,2,12512,3.99,2005-08-18T13:28:27Z,2020-02-15T06:59:50Z +4045,148,1,12944,6.99,2005-08-19T05:48:12Z,2020-02-15T06:59:50Z +4046,148,1,12983,6.99,2005-08-19T07:06:51Z,2020-02-15T06:59:50Z +4047,148,1,14055,0.99,2005-08-20T22:18:00Z,2020-02-15T06:59:50Z +4048,148,1,14155,4.99,2005-08-21T02:31:35Z,2020-02-15T06:59:50Z +4049,148,2,14184,6.99,2005-08-21T03:24:50Z,2020-02-15T06:59:50Z +4050,148,2,14629,2.99,2005-08-21T18:39:52Z,2020-02-15T06:59:50Z +4051,148,2,14713,0.99,2005-08-21T21:27:24Z,2020-02-15T06:59:50Z +4052,148,2,14879,5.99,2005-08-22T03:42:12Z,2020-02-15T06:59:50Z +4053,148,2,14965,2.99,2005-08-22T06:45:53Z,2020-02-15T06:59:50Z +4054,148,2,15237,4.99,2005-08-22T17:44:30Z,2020-02-15T06:59:50Z +4055,148,2,15379,8.99,2005-08-22T22:26:13Z,2020-02-15T06:59:50Z +4056,148,1,15541,3.99,2005-08-23T04:13:53Z,2020-02-15T06:59:50Z +4057,148,2,15586,3.99,2005-08-23T05:57:04Z,2020-02-15T06:59:50Z +4058,149,1,764,4.99,2005-05-29T11:37:35Z,2020-02-15T06:59:50Z +4059,149,2,1521,2.99,2005-06-15T23:58:53Z,2020-02-15T06:59:50Z +4060,149,1,1800,2.99,2005-06-16T20:18:46Z,2020-02-15T06:59:50Z +4061,149,2,1996,6.99,2005-06-17T11:17:45Z,2020-02-15T06:59:50Z +4062,149,2,2194,4.99,2005-06-18T01:41:37Z,2020-02-15T06:59:50Z +4063,149,1,2305,5.99,2005-06-18T08:31:18Z,2020-02-15T06:59:50Z +4064,149,2,2383,7.99,2005-06-18T15:17:59Z,2020-02-15T06:59:50Z +4065,149,1,2752,0.99,2005-06-19T16:44:18Z,2020-02-15T06:59:50Z +4066,149,1,3894,2.99,2005-07-06T19:01:39Z,2020-02-15T06:59:50Z +4067,149,1,3939,6.99,2005-07-06T21:16:32Z,2020-02-15T06:59:50Z +4068,149,1,4766,3.99,2005-07-08T15:16:04Z,2020-02-15T06:59:50Z +4069,149,1,4837,0.99,2005-07-08T18:09:12Z,2020-02-15T06:59:50Z +4070,149,1,5091,2.99,2005-07-09T05:52:54Z,2020-02-15T06:59:50Z +4071,149,1,5298,10.99,2005-07-09T15:36:17Z,2020-02-15T06:59:50Z +4072,149,1,6356,4.99,2005-07-11T20:57:48Z,2020-02-15T06:59:50Z +4073,149,2,6940,5.99,2005-07-26T23:18:35Z,2020-02-15T06:59:50Z +4074,149,2,7559,4.99,2005-07-27T22:20:03Z,2020-02-15T06:59:50Z +4075,149,1,7989,6.99,2005-07-28T14:39:05Z,2020-02-15T06:59:50Z +4076,149,2,10154,2.99,2005-07-31T22:30:49Z,2020-02-15T06:59:50Z +4077,149,2,10737,7.99,2005-08-01T19:31:24Z,2020-02-15T06:59:50Z +4078,149,2,10967,0.99,2005-08-02T04:02:16Z,2020-02-15T06:59:50Z +4079,149,1,11561,2.99,2005-08-17T01:23:09Z,2020-02-15T06:59:50Z +4080,149,1,12000,4.99,2005-08-17T18:49:44Z,2020-02-15T06:59:50Z +4081,149,1,14771,3.99,2005-08-21T23:50:15Z,2020-02-15T06:59:50Z +4082,149,2,15479,4.99,2005-08-23T01:50:53Z,2020-02-15T06:59:50Z +4083,149,2,15562,2.99,2005-08-23T05:04:33Z,2020-02-15T06:59:50Z +4084,150,1,422,3.99,2005-05-27T15:31:55Z,2020-02-15T06:59:50Z +4085,150,1,609,2.99,2005-05-28T15:04:02Z,2020-02-15T06:59:50Z +4086,150,1,995,3.99,2005-05-31T00:06:02Z,2020-02-15T06:59:50Z +4087,150,2,3187,1.99,2005-06-20T23:06:07Z,2020-02-15T06:59:50Z +4088,150,1,3456,5.99,2005-06-21T21:19:47Z,2020-02-15T06:59:50Z +4089,150,1,4271,6.99,2005-07-07T14:38:52Z,2020-02-15T06:59:50Z +4090,150,1,6633,2.99,2005-07-12T09:35:42Z,2020-02-15T06:59:50Z +4091,150,2,7690,4.99,2005-07-28T03:26:21Z,2020-02-15T06:59:50Z +4092,150,1,9121,2.99,2005-07-30T09:36:26Z,2020-02-15T06:59:50Z +4093,150,1,10686,2.99,2005-08-01T17:51:21Z,2020-02-15T06:59:50Z +4094,150,2,11123,2.99,2005-08-02T08:54:17Z,2020-02-15T06:59:50Z +4095,150,2,11789,6.99,2005-08-17T10:59:24Z,2020-02-15T06:59:50Z +4096,150,2,12260,6.99,2005-08-18T04:15:43Z,2020-02-15T06:59:50Z +4097,150,2,12335,2.99,2005-08-18T06:59:15Z,2020-02-15T06:59:50Z +4098,150,2,12627,2.99,2005-08-18T17:37:11Z,2020-02-15T06:59:50Z +4099,150,1,12887,1.99,2005-08-19T03:38:54Z,2020-02-15T06:59:50Z +4100,150,2,12890,0.99,2005-08-19T03:42:08Z,2020-02-15T06:59:50Z +4101,150,1,13116,6.99,2005-08-19T11:31:41Z,2020-02-15T06:59:50Z +4102,150,2,13255,8.99,2005-08-19T16:54:12Z,2020-02-15T06:59:50Z +4103,150,1,13372,2.99,2005-08-19T21:23:19Z,2020-02-15T06:59:50Z +4104,150,2,13599,5.99,2005-08-20T06:00:03Z,2020-02-15T06:59:50Z +4105,150,2,14165,0.99,2005-08-21T02:59:17Z,2020-02-15T06:59:50Z +4106,150,2,14454,2.99,2005-08-21T12:35:49Z,2020-02-15T06:59:50Z +4107,150,2,14520,9.99,2005-08-21T15:00:49Z,2020-02-15T06:59:50Z +4108,150,1,14663,0.99,2005-08-21T19:47:55Z,2020-02-15T06:59:50Z +4109,151,2,164,4.99,2005-05-26T02:26:49Z,2020-02-15T06:59:50Z +4110,151,2,418,5.99,2005-05-27T15:13:17Z,2020-02-15T06:59:50Z +4111,151,2,2474,2.99,2005-06-18T20:51:34Z,2020-02-15T06:59:50Z +4112,151,2,2947,2.99,2005-06-20T06:00:21Z,2020-02-15T06:59:50Z +4113,151,1,3017,3.99,2005-06-20T11:08:56Z,2020-02-15T06:59:50Z +4114,151,2,3089,0.99,2005-06-20T15:57:01Z,2020-02-15T06:59:50Z +4115,151,2,3390,2.99,2005-06-21T15:10:50Z,2020-02-15T06:59:50Z +4116,151,1,4376,2.99,2005-07-07T20:24:33Z,2020-02-15T06:59:50Z +4117,151,2,6720,0.99,2005-07-12T13:41:16Z,2020-02-15T06:59:50Z +4118,151,2,6768,3.99,2005-07-12T15:47:51Z,2020-02-15T06:59:50Z +4119,151,2,6854,0.99,2005-07-12T19:38:57Z,2020-02-15T06:59:50Z +4120,151,1,7189,0.99,2005-07-27T08:35:02Z,2020-02-15T06:59:50Z +4121,151,2,7332,3.99,2005-07-27T13:58:57Z,2020-02-15T06:59:50Z +4122,151,1,9253,4.99,2005-07-30T14:20:12Z,2020-02-15T06:59:50Z +4123,151,1,9890,4.99,2005-07-31T14:04:44Z,2020-02-15T06:59:50Z +4124,151,1,9969,2.99,2005-07-31T16:38:12Z,2020-02-15T06:59:50Z +4125,151,1,10078,2.99,2005-07-31T20:02:02Z,2020-02-15T06:59:50Z +4126,151,1,10311,4.99,2005-08-01T04:27:59Z,2020-02-15T06:59:50Z +4127,151,1,10662,2.99,2005-08-01T16:50:57Z,2020-02-15T06:59:50Z +4128,151,2,11714,2.99,2005-08-17T07:34:55Z,2020-02-15T06:59:50Z +4129,151,2,13230,0.99,2005-08-19T16:12:07Z,2020-02-15T06:59:50Z +4130,151,1,13568,5.99,2005-08-20T05:02:46Z,2020-02-15T06:59:50Z +4131,151,1,14856,4.99,2005-08-22T02:31:51Z,2020-02-15T06:59:50Z +4132,151,2,14922,3.99,2005-08-22T05:13:05Z,2020-02-15T06:59:50Z +4133,151,1,15227,4.99,2005-08-22T17:22:41Z,2020-02-15T06:59:50Z +4134,151,1,15926,2.99,2005-08-23T18:20:56Z,2020-02-15T06:59:50Z +4135,151,2,15996,2.99,2005-08-23T20:31:38Z,2020-02-15T06:59:50Z +4136,152,2,359,4.99,2005-05-27T06:48:33Z,2020-02-15T06:59:50Z +4137,152,1,745,4.99,2005-05-29T09:22:57Z,2020-02-15T06:59:50Z +4138,152,1,2882,4.99,2005-06-20T01:26:26Z,2020-02-15T06:59:50Z +4139,152,2,3577,2.99,2005-07-06T03:40:36Z,2020-02-15T06:59:50Z +4140,152,1,3786,7.99,2005-07-06T14:00:41Z,2020-02-15T06:59:50Z +4141,152,1,4974,4.99,2005-07-09T00:00:36Z,2020-02-15T06:59:50Z +4142,152,1,6273,0.99,2005-07-11T16:08:41Z,2020-02-15T06:59:50Z +4143,152,1,6612,2.99,2005-07-12T08:28:33Z,2020-02-15T06:59:50Z +4144,152,1,9010,5.99,2005-07-30T05:12:04Z,2020-02-15T06:59:50Z +4145,152,1,10320,6.99,2005-08-01T04:39:26Z,2020-02-15T06:59:50Z +4146,152,2,11638,6.99,2005-08-17T04:39:09Z,2020-02-15T06:59:50Z +4147,152,2,11783,0.99,2005-08-17T10:39:24Z,2020-02-15T06:59:50Z +4148,152,1,12697,2.99,2005-08-18T20:14:56Z,2020-02-15T06:59:50Z +4149,152,1,12917,4.99,2005-08-19T04:27:11Z,2020-02-15T06:59:50Z +4150,152,2,12960,1.99,2005-08-19T06:21:52Z,2020-02-15T06:59:50Z +4151,152,1,13204,4.99,2005-08-19T15:02:48Z,2020-02-15T06:59:50Z +4152,152,2,13484,0.99,2005-08-20T01:16:52Z,2020-02-15T06:59:50Z +4153,152,1,13986,0.99,2005-08-20T19:13:23Z,2020-02-15T06:59:50Z +4154,152,1,14173,0.99,2005-08-21T03:01:01Z,2020-02-15T06:59:50Z +4155,152,2,14668,4.99,2005-08-21T19:51:30Z,2020-02-15T06:59:50Z +4156,152,2,11848,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4157,153,1,2224,0.99,2005-06-18T03:33:58Z,2020-02-15T06:59:50Z +4158,153,1,2649,0.99,2005-06-19T10:20:09Z,2020-02-15T06:59:50Z +4159,153,1,2893,4.99,2005-06-20T02:22:08Z,2020-02-15T06:59:50Z +4160,153,1,2945,5.99,2005-06-20T05:49:27Z,2020-02-15T06:59:50Z +4161,153,1,3795,0.99,2005-07-06T14:37:41Z,2020-02-15T06:59:50Z +4162,153,1,3949,0.99,2005-07-06T21:46:36Z,2020-02-15T06:59:50Z +4163,153,1,4194,5.99,2005-07-07T10:59:39Z,2020-02-15T06:59:50Z +4164,153,2,4670,5.99,2005-07-08T10:14:18Z,2020-02-15T06:59:50Z +4165,153,2,5676,0.99,2005-07-10T08:38:32Z,2020-02-15T06:59:50Z +4166,153,2,5771,0.99,2005-07-10T13:26:45Z,2020-02-15T06:59:50Z +4167,153,2,6818,9.99,2005-07-12T18:20:54Z,2020-02-15T06:59:50Z +4168,153,2,7824,7.99,2005-07-28T08:34:47Z,2020-02-15T06:59:50Z +4169,153,2,9936,0.99,2005-07-31T15:27:41Z,2020-02-15T06:59:50Z +4170,153,2,10015,4.99,2005-07-31T18:11:17Z,2020-02-15T06:59:50Z +4171,153,2,11368,4.99,2005-08-02T18:03:05Z,2020-02-15T06:59:50Z +4172,153,1,12103,1.99,2005-08-17T22:49:09Z,2020-02-15T06:59:50Z +4173,153,1,12439,3.99,2005-08-18T10:44:57Z,2020-02-15T06:59:50Z +4174,153,1,12882,4.99,2005-08-19T03:33:46Z,2020-02-15T06:59:50Z +4175,153,1,14664,4.99,2005-08-21T19:48:47Z,2020-02-15T06:59:50Z +4176,153,1,14747,4.99,2005-08-21T23:00:02Z,2020-02-15T06:59:50Z +4177,153,1,14944,4.99,2005-08-22T06:01:26Z,2020-02-15T06:59:50Z +4178,153,2,15267,0.99,2005-08-22T18:37:48Z,2020-02-15T06:59:50Z +4179,153,2,15444,7.99,2005-08-23T00:46:52Z,2020-02-15T06:59:50Z +4180,153,1,15593,1.99,2005-08-23T06:15:09Z,2020-02-15T06:59:50Z +4181,154,1,469,5.99,2005-05-27T21:14:26Z,2020-02-15T06:59:50Z +4182,154,2,865,7.99,2005-05-30T03:39:44Z,2020-02-15T06:59:50Z +4183,154,2,978,5.99,2005-05-30T21:30:52Z,2020-02-15T06:59:50Z +4184,154,1,1963,0.99,2005-06-17T09:09:31Z,2020-02-15T06:59:50Z +4185,154,1,2886,4.99,2005-06-20T01:38:39Z,2020-02-15T06:59:50Z +4186,154,1,2985,2.99,2005-06-20T08:45:08Z,2020-02-15T06:59:50Z +4187,154,2,3806,7.99,2005-07-06T15:09:41Z,2020-02-15T06:59:50Z +4188,154,2,3912,0.99,2005-07-06T20:10:03Z,2020-02-15T06:59:50Z +4189,154,2,4132,4.99,2005-07-07T08:06:07Z,2020-02-15T06:59:50Z +4190,154,1,4252,2.99,2005-07-07T14:13:05Z,2020-02-15T06:59:50Z +4191,154,1,4850,5.99,2005-07-08T18:39:31Z,2020-02-15T06:59:50Z +4192,154,1,5101,0.99,2005-07-09T06:21:29Z,2020-02-15T06:59:50Z +4193,154,2,5760,2.99,2005-07-10T12:44:48Z,2020-02-15T06:59:50Z +4194,154,1,6048,0.99,2005-07-11T03:32:23Z,2020-02-15T06:59:50Z +4195,154,2,6993,4.99,2005-07-27T01:05:24Z,2020-02-15T06:59:50Z +4196,154,1,7055,4.99,2005-07-27T03:45:42Z,2020-02-15T06:59:50Z +4197,154,1,7156,4.99,2005-07-27T07:19:34Z,2020-02-15T06:59:50Z +4198,154,2,7900,1.99,2005-07-28T11:11:33Z,2020-02-15T06:59:50Z +4199,154,2,8334,7.99,2005-07-29T04:18:25Z,2020-02-15T06:59:50Z +4200,154,2,9286,2.99,2005-07-30T15:32:28Z,2020-02-15T06:59:50Z +4201,154,1,10278,6.99,2005-08-01T03:25:27Z,2020-02-15T06:59:50Z +4202,154,1,10851,4.99,2005-08-01T23:58:45Z,2020-02-15T06:59:50Z +4203,154,1,11296,5.99,2005-08-02T15:15:27Z,2020-02-15T06:59:50Z +4204,154,1,12341,0.99,2005-08-18T07:09:27Z,2020-02-15T06:59:50Z +4205,154,2,13861,4.99,2005-08-20T14:56:53Z,2020-02-15T06:59:50Z +4206,154,2,14731,2.99,2005-08-21T22:21:49Z,2020-02-15T06:59:50Z +4207,154,2,14793,7.99,2005-08-22T00:37:57Z,2020-02-15T06:59:50Z +4208,154,1,14918,6.99,2005-08-22T05:06:38Z,2020-02-15T06:59:50Z +4209,154,1,15351,0.99,2005-08-22T21:15:46Z,2020-02-15T06:59:50Z +4210,154,1,15721,2.99,2005-08-23T11:16:16Z,2020-02-15T06:59:50Z +4211,155,1,568,2.99,2005-05-28T09:57:36Z,2020-02-15T06:59:50Z +4212,155,2,1519,1.99,2005-06-15T23:55:27Z,2020-02-15T06:59:50Z +4213,155,1,1554,7.99,2005-06-16T02:16:47Z,2020-02-15T06:59:50Z +4214,155,1,2028,7.99,2005-06-17T13:08:08Z,2020-02-15T06:59:50Z +4215,155,1,2869,4.99,2005-06-20T00:09:25Z,2020-02-15T06:59:50Z +4216,155,2,3405,4.99,2005-06-21T15:58:25Z,2020-02-15T06:59:50Z +4217,155,1,5128,1.99,2005-07-09T07:25:54Z,2020-02-15T06:59:50Z +4218,155,1,6066,5.99,2005-07-11T04:32:42Z,2020-02-15T06:59:50Z +4219,155,1,6085,4.99,2005-07-11T05:24:36Z,2020-02-15T06:59:50Z +4220,155,2,6087,4.99,2005-07-11T05:29:22Z,2020-02-15T06:59:50Z +4221,155,1,6443,2.99,2005-07-12T00:35:51Z,2020-02-15T06:59:50Z +4222,155,1,7077,3.99,2005-07-27T04:13:02Z,2020-02-15T06:59:50Z +4223,155,1,7492,2.99,2005-07-27T19:54:18Z,2020-02-15T06:59:50Z +4224,155,2,7730,5.99,2005-07-28T04:59:48Z,2020-02-15T06:59:50Z +4225,155,2,9781,7.99,2005-07-31T10:13:02Z,2020-02-15T06:59:50Z +4226,155,1,10098,0.99,2005-07-31T20:41:17Z,2020-02-15T06:59:50Z +4227,155,1,11033,4.99,2005-08-02T05:54:17Z,2020-02-15T06:59:50Z +4228,155,2,11951,5.99,2005-08-17T17:14:02Z,2020-02-15T06:59:50Z +4229,155,1,14324,8.99,2005-08-21T08:10:56Z,2020-02-15T06:59:50Z +4230,155,2,14549,2.99,2005-08-21T15:54:21Z,2020-02-15T06:59:50Z +4231,155,1,14753,2.99,2005-08-21T23:11:43Z,2020-02-15T06:59:50Z +4232,155,2,14909,0.99,2005-08-22T04:48:44Z,2020-02-15T06:59:50Z +4233,155,1,15106,0.99,2005-08-22T12:01:48Z,2020-02-15T06:59:50Z +4234,155,2,11496,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4235,155,1,12352,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4236,156,2,899,6.99,2005-05-30T09:29:30Z,2020-02-15T06:59:50Z +4237,156,1,1052,4.99,2005-05-31T07:07:03Z,2020-02-15T06:59:50Z +4238,156,2,2089,9.99,2005-06-17T17:45:09Z,2020-02-15T06:59:50Z +4239,156,2,2221,0.99,2005-06-18T03:24:56Z,2020-02-15T06:59:50Z +4240,156,1,2658,4.99,2005-06-19T10:43:42Z,2020-02-15T06:59:50Z +4241,156,1,2782,0.99,2005-06-19T18:25:07Z,2020-02-15T06:59:50Z +4242,156,2,4394,2.99,2005-07-07T21:12:45Z,2020-02-15T06:59:50Z +4243,156,2,5534,4.99,2005-07-10T02:26:49Z,2020-02-15T06:59:50Z +4244,156,1,5828,2.99,2005-07-10T16:27:25Z,2020-02-15T06:59:50Z +4245,156,2,5908,0.99,2005-07-10T20:44:14Z,2020-02-15T06:59:50Z +4246,156,2,6540,6.99,2005-07-12T04:51:13Z,2020-02-15T06:59:50Z +4247,156,2,7389,2.99,2005-07-27T15:56:15Z,2020-02-15T06:59:50Z +4248,156,2,7822,4.99,2005-07-28T08:31:45Z,2020-02-15T06:59:50Z +4249,156,1,9409,6.99,2005-07-30T20:33:53Z,2020-02-15T06:59:50Z +4250,156,1,9696,0.99,2005-07-31T07:13:46Z,2020-02-15T06:59:50Z +4251,156,2,10309,6.99,2005-08-01T04:24:18Z,2020-02-15T06:59:50Z +4252,156,2,11490,2.99,2005-08-02T22:36:00Z,2020-02-15T06:59:50Z +4253,156,1,11587,5.99,2005-08-17T02:21:03Z,2020-02-15T06:59:50Z +4254,156,2,13530,0.99,2005-08-20T03:12:43Z,2020-02-15T06:59:50Z +4255,156,2,13531,2.99,2005-08-20T03:26:10Z,2020-02-15T06:59:50Z +4256,156,2,13802,2.99,2005-08-20T12:44:53Z,2020-02-15T06:59:50Z +4257,156,1,14794,1.99,2005-08-22T00:39:31Z,2020-02-15T06:59:50Z +4258,156,2,14831,4.99,2005-08-22T01:40:49Z,2020-02-15T06:59:50Z +4259,156,1,14914,0.99,2005-08-22T04:53:35Z,2020-02-15T06:59:50Z +4260,156,1,15408,6.99,2005-08-22T23:26:32Z,2020-02-15T06:59:50Z +4261,157,2,352,0.99,2005-05-27T05:48:19Z,2020-02-15T06:59:50Z +4262,157,1,642,4.99,2005-05-28T18:49:12Z,2020-02-15T06:59:50Z +4263,157,2,2340,0.99,2005-06-18T11:30:56Z,2020-02-15T06:59:50Z +4264,157,1,3739,0.99,2005-07-06T11:54:18Z,2020-02-15T06:59:50Z +4265,157,1,4253,5.99,2005-07-07T14:13:13Z,2020-02-15T06:59:50Z +4266,157,2,4435,3.99,2005-07-07T22:51:04Z,2020-02-15T06:59:50Z +4267,157,1,4919,0.99,2005-07-08T21:41:54Z,2020-02-15T06:59:50Z +4268,157,1,5862,4.99,2005-07-10T18:20:48Z,2020-02-15T06:59:50Z +4269,157,1,7110,2.99,2005-07-27T05:30:48Z,2020-02-15T06:59:50Z +4270,157,2,7195,2.99,2005-07-27T08:47:01Z,2020-02-15T06:59:50Z +4271,157,2,7499,4.99,2005-07-27T20:10:28Z,2020-02-15T06:59:50Z +4272,157,2,8163,0.99,2005-07-28T21:11:48Z,2020-02-15T06:59:50Z +4273,157,2,8337,0.99,2005-07-29T04:31:55Z,2020-02-15T06:59:50Z +4274,157,2,8347,0.99,2005-07-29T04:49:25Z,2020-02-15T06:59:50Z +4275,157,2,8576,4.99,2005-07-29T11:55:01Z,2020-02-15T06:59:50Z +4276,157,1,8707,0.99,2005-07-29T17:21:58Z,2020-02-15T06:59:50Z +4277,157,1,8827,4.99,2005-07-29T22:31:24Z,2020-02-15T06:59:50Z +4278,157,2,9237,2.99,2005-07-30T13:48:17Z,2020-02-15T06:59:50Z +4279,157,2,9264,4.99,2005-07-30T14:51:36Z,2020-02-15T06:59:50Z +4280,157,1,9958,2.99,2005-07-31T16:03:56Z,2020-02-15T06:59:50Z +4281,157,1,10203,4.99,2005-08-01T00:45:27Z,2020-02-15T06:59:50Z +4282,157,2,11249,4.99,2005-08-02T13:35:40Z,2020-02-15T06:59:50Z +4283,157,2,11335,4.99,2005-08-02T16:57:37Z,2020-02-15T06:59:50Z +4284,157,1,12213,5.99,2005-08-18T02:33:55Z,2020-02-15T06:59:50Z +4285,157,1,12464,6.99,2005-08-18T11:33:34Z,2020-02-15T06:59:50Z +4286,157,1,12916,0.99,2005-08-19T04:27:05Z,2020-02-15T06:59:50Z +4287,157,1,13097,4.99,2005-08-19T10:50:43Z,2020-02-15T06:59:50Z +4288,157,1,13214,4.99,2005-08-19T15:31:06Z,2020-02-15T06:59:50Z +4289,157,1,13481,6.99,2005-08-20T01:11:12Z,2020-02-15T06:59:50Z +4290,157,1,13728,2.99,2005-08-20T10:11:07Z,2020-02-15T06:59:50Z +4291,157,2,14974,4.99,2005-08-22T07:04:25Z,2020-02-15T06:59:50Z +4292,158,2,245,4.99,2005-05-26T13:46:59Z,2020-02-15T06:59:50Z +4293,158,1,293,5.99,2005-05-26T20:27:02Z,2020-02-15T06:59:50Z +4294,158,1,1380,0.99,2005-06-15T15:13:10Z,2020-02-15T06:59:50Z +4295,158,2,1790,4.99,2005-06-16T19:58:40Z,2020-02-15T06:59:50Z +4296,158,2,2035,6.99,2005-06-17T13:45:09Z,2020-02-15T06:59:50Z +4297,158,2,3203,8.99,2005-06-21T00:34:56Z,2020-02-15T06:59:50Z +4298,158,1,4117,8.99,2005-07-07T06:58:14Z,2020-02-15T06:59:50Z +4299,158,1,5672,2.99,2005-07-10T08:19:38Z,2020-02-15T06:59:50Z +4300,158,1,5988,4.99,2005-07-11T00:55:38Z,2020-02-15T06:59:50Z +4301,158,1,6416,2.99,2005-07-11T23:29:14Z,2020-02-15T06:59:50Z +4302,158,2,6901,5.99,2005-07-12T21:46:33Z,2020-02-15T06:59:50Z +4303,158,2,7159,2.99,2005-07-27T07:24:00Z,2020-02-15T06:59:50Z +4304,158,1,7732,0.99,2005-07-28T05:03:32Z,2020-02-15T06:59:50Z +4305,158,2,7952,2.99,2005-07-28T13:23:49Z,2020-02-15T06:59:50Z +4306,158,1,8750,2.99,2005-07-29T19:14:21Z,2020-02-15T06:59:50Z +4307,158,1,8957,1.99,2005-07-30T03:34:10Z,2020-02-15T06:59:50Z +4308,158,1,9393,2.99,2005-07-30T20:04:48Z,2020-02-15T06:59:50Z +4309,158,1,9713,1.99,2005-07-31T08:13:28Z,2020-02-15T06:59:50Z +4310,158,1,9801,2.99,2005-07-31T11:03:13Z,2020-02-15T06:59:50Z +4311,158,2,11077,4.99,2005-08-02T07:26:43Z,2020-02-15T06:59:50Z +4312,158,1,11103,6.99,2005-08-02T08:09:54Z,2020-02-15T06:59:50Z +4313,158,1,11272,0.99,2005-08-02T14:20:27Z,2020-02-15T06:59:50Z +4314,158,1,11420,2.99,2005-08-02T19:47:56Z,2020-02-15T06:59:50Z +4315,158,2,12070,1.99,2005-08-17T21:46:47Z,2020-02-15T06:59:50Z +4316,158,2,12421,5.99,2005-08-18T10:04:06Z,2020-02-15T06:59:50Z +4317,158,2,13212,1.99,2005-08-19T15:24:07Z,2020-02-15T06:59:50Z +4318,158,2,13854,2.99,2005-08-20T14:48:42Z,2020-02-15T06:59:50Z +4319,158,1,13926,2.99,2005-08-20T17:09:27Z,2020-02-15T06:59:50Z +4320,158,2,14028,0.99,2005-08-20T21:23:03Z,2020-02-15T06:59:50Z +4321,158,1,15763,2.99,2005-08-23T13:02:59Z,2020-02-15T06:59:50Z +4322,158,1,15796,5.99,2005-08-23T14:12:22Z,2020-02-15T06:59:50Z +4323,158,1,15802,5.99,2005-08-23T14:26:51Z,2020-02-15T06:59:50Z +4324,159,2,475,2.99,2005-05-27T22:16:26Z,2020-02-15T06:59:50Z +4325,159,2,549,1.99,2005-05-28T07:35:37Z,2020-02-15T06:59:50Z +4326,159,1,598,0.99,2005-05-28T14:04:50Z,2020-02-15T06:59:50Z +4327,159,1,832,3.99,2005-05-29T22:51:20Z,2020-02-15T06:59:50Z +4328,159,1,1695,0.99,2005-06-16T12:40:28Z,2020-02-15T06:59:50Z +4329,159,1,2572,0.99,2005-06-19T04:21:26Z,2020-02-15T06:59:50Z +4330,159,2,3914,5.99,2005-07-06T20:11:10Z,2020-02-15T06:59:50Z +4331,159,2,4273,4.99,2005-07-07T14:40:22Z,2020-02-15T06:59:50Z +4332,159,2,5656,0.99,2005-07-10T07:31:07Z,2020-02-15T06:59:50Z +4333,159,2,6885,4.99,2005-07-12T20:56:04Z,2020-02-15T06:59:50Z +4334,159,2,8212,2.99,2005-07-28T23:37:23Z,2020-02-15T06:59:50Z +4335,159,1,8470,0.99,2005-07-29T08:28:50Z,2020-02-15T06:59:50Z +4336,159,2,9022,3.99,2005-07-30T05:34:45Z,2020-02-15T06:59:50Z +4337,159,2,9132,0.99,2005-07-30T09:56:00Z,2020-02-15T06:59:50Z +4338,159,1,9559,7.99,2005-07-31T02:15:53Z,2020-02-15T06:59:50Z +4339,159,1,9917,4.99,2005-07-31T14:55:11Z,2020-02-15T06:59:50Z +4340,159,2,11225,4.99,2005-08-02T12:43:27Z,2020-02-15T06:59:50Z +4341,159,2,13270,1.99,2005-08-19T17:41:16Z,2020-02-15T06:59:50Z +4342,159,1,13933,0.99,2005-08-20T17:17:07Z,2020-02-15T06:59:50Z +4343,159,2,14575,8.99,2005-08-21T16:51:34Z,2020-02-15T06:59:50Z +4344,159,1,15197,0.99,2005-08-22T16:14:25Z,2020-02-15T06:59:50Z +4345,160,2,2314,4.99,2005-06-18T09:03:19Z,2020-02-15T06:59:50Z +4346,160,1,2465,2.99,2005-06-18T20:07:02Z,2020-02-15T06:59:50Z +4347,160,2,2873,2.99,2005-06-20T00:41:25Z,2020-02-15T06:59:50Z +4348,160,1,4842,0.99,2005-07-08T18:21:30Z,2020-02-15T06:59:50Z +4349,160,1,4908,5.99,2005-07-08T21:05:44Z,2020-02-15T06:59:50Z +4350,160,2,6364,6.99,2005-07-11T21:14:48Z,2020-02-15T06:59:50Z +4351,160,2,6448,1.99,2005-07-12T00:45:59Z,2020-02-15T06:59:50Z +4352,160,2,7500,0.99,2005-07-27T20:16:03Z,2020-02-15T06:59:50Z +4353,160,1,8184,4.99,2005-07-28T22:22:35Z,2020-02-15T06:59:50Z +4354,160,1,9681,0.99,2005-07-31T06:42:09Z,2020-02-15T06:59:50Z +4355,160,2,9758,2.99,2005-07-31T09:25:38Z,2020-02-15T06:59:50Z +4356,160,2,10089,2.99,2005-07-31T20:17:09Z,2020-02-15T06:59:50Z +4357,160,1,10305,2.99,2005-08-01T04:16:16Z,2020-02-15T06:59:50Z +4358,160,2,10788,0.99,2005-08-01T21:37:10Z,2020-02-15T06:59:50Z +4359,160,2,10958,4.99,2005-08-02T03:37:13Z,2020-02-15T06:59:50Z +4360,160,2,10979,5.99,2005-08-02T04:16:37Z,2020-02-15T06:59:50Z +4361,160,2,11154,2.99,2005-08-02T09:54:50Z,2020-02-15T06:59:50Z +4362,160,1,11803,2.99,2005-08-17T11:42:08Z,2020-02-15T06:59:50Z +4363,160,1,11888,7.99,2005-08-17T15:04:05Z,2020-02-15T06:59:50Z +4364,160,2,12334,2.99,2005-08-18T06:52:36Z,2020-02-15T06:59:50Z +4365,160,1,12435,7.99,2005-08-18T10:38:31Z,2020-02-15T06:59:50Z +4366,160,2,13093,6.99,2005-08-19T10:46:16Z,2020-02-15T06:59:50Z +4367,160,1,14868,4.99,2005-08-22T03:15:01Z,2020-02-15T06:59:50Z +4368,160,1,15112,2.99,2005-08-22T12:21:49Z,2020-02-15T06:59:50Z +4369,160,2,15642,2.99,2005-08-23T08:09:11Z,2020-02-15T06:59:50Z +4370,160,1,15962,4.99,2005-08-23T19:42:04Z,2020-02-15T06:59:50Z +4371,160,1,16027,3.99,2005-08-23T21:49:33Z,2020-02-15T06:59:50Z +4372,161,2,428,2.99,2005-05-27T16:10:58Z,2020-02-15T06:59:50Z +4373,161,2,477,3.99,2005-05-27T22:33:33Z,2020-02-15T06:59:50Z +4374,161,1,520,5.99,2005-05-28T03:27:37Z,2020-02-15T06:59:50Z +4375,161,2,539,0.99,2005-05-28T06:26:16Z,2020-02-15T06:59:50Z +4376,161,1,612,2.99,2005-05-28T15:24:54Z,2020-02-15T06:59:50Z +4377,161,1,1003,0.99,2005-05-31T00:48:20Z,2020-02-15T06:59:50Z +4378,161,1,1856,2.99,2005-06-17T01:02:00Z,2020-02-15T06:59:50Z +4379,161,1,3075,3.99,2005-06-20T14:52:19Z,2020-02-15T06:59:50Z +4380,161,1,3948,4.99,2005-07-06T21:45:53Z,2020-02-15T06:59:50Z +4381,161,2,4187,0.99,2005-07-07T10:41:31Z,2020-02-15T06:59:50Z +4382,161,2,4248,6.99,2005-07-07T13:59:20Z,2020-02-15T06:59:50Z +4383,161,1,4490,2.99,2005-07-08T01:26:32Z,2020-02-15T06:59:50Z +4384,161,2,5349,6.99,2005-07-09T17:35:35Z,2020-02-15T06:59:50Z +4385,161,2,6873,4.99,2005-07-12T20:20:50Z,2020-02-15T06:59:50Z +4386,161,1,7003,2.99,2005-07-27T01:32:06Z,2020-02-15T06:59:50Z +4387,161,2,8774,4.99,2005-07-29T20:05:04Z,2020-02-15T06:59:50Z +4388,161,1,9135,4.99,2005-07-30T10:06:53Z,2020-02-15T06:59:50Z +4389,161,2,9421,0.99,2005-07-30T21:08:32Z,2020-02-15T06:59:50Z +4390,161,1,10241,5.99,2005-08-01T02:12:25Z,2020-02-15T06:59:50Z +4391,161,1,10355,0.99,2005-08-01T05:47:37Z,2020-02-15T06:59:50Z +4392,161,1,10637,2.99,2005-08-01T15:44:09Z,2020-02-15T06:59:50Z +4393,161,1,10863,6.99,2005-08-02T00:18:07Z,2020-02-15T06:59:50Z +4394,161,2,10939,0.99,2005-08-02T03:06:20Z,2020-02-15T06:59:50Z +4395,161,1,11838,2.99,2005-08-17T13:06:00Z,2020-02-15T06:59:50Z +4396,161,2,14150,0.99,2005-08-21T02:23:03Z,2020-02-15T06:59:50Z +4397,161,1,14370,7.99,2005-08-21T09:35:14Z,2020-02-15T06:59:50Z +4398,161,1,15000,0.99,2005-08-22T07:54:58Z,2020-02-15T06:59:50Z +4399,161,2,15045,5.99,2005-08-22T09:53:23Z,2020-02-15T06:59:50Z +4400,161,2,15150,2.99,2005-08-22T14:12:05Z,2020-02-15T06:59:50Z +4401,161,1,15420,5.99,2005-08-22T23:55:51Z,2020-02-15T06:59:50Z +4402,162,1,285,1.99,2005-05-26T19:41:40Z,2020-02-15T06:59:50Z +4403,162,1,501,4.99,2005-05-28T01:09:36Z,2020-02-15T06:59:50Z +4404,162,1,688,4.99,2005-05-29T00:45:24Z,2020-02-15T06:59:50Z +4405,162,2,1339,4.99,2005-06-15T12:21:56Z,2020-02-15T06:59:50Z +4406,162,1,2366,0.99,2005-06-18T13:46:39Z,2020-02-15T06:59:50Z +4407,162,1,2547,4.99,2005-06-19T02:44:17Z,2020-02-15T06:59:50Z +4408,162,1,3040,0.99,2005-06-20T12:34:13Z,2020-02-15T06:59:50Z +4409,162,2,3180,0.99,2005-06-20T22:48:44Z,2020-02-15T06:59:50Z +4410,162,2,4982,2.99,2005-07-09T00:30:52Z,2020-02-15T06:59:50Z +4411,162,2,8478,4.99,2005-07-29T08:40:36Z,2020-02-15T06:59:50Z +4412,162,1,8582,4.99,2005-07-29T12:03:27Z,2020-02-15T06:59:50Z +4413,162,2,9167,4.99,2005-07-30T11:30:37Z,2020-02-15T06:59:50Z +4414,162,1,9726,7.99,2005-07-31T08:37:07Z,2020-02-15T06:59:50Z +4415,162,1,9775,0.99,2005-07-31T10:00:00Z,2020-02-15T06:59:50Z +4416,162,2,10093,5.99,2005-07-31T20:30:32Z,2020-02-15T06:59:50Z +4417,162,2,11012,0.99,2005-08-02T05:09:42Z,2020-02-15T06:59:50Z +4418,162,1,13288,4.99,2005-08-19T18:30:10Z,2020-02-15T06:59:50Z +4419,162,2,14301,1.99,2005-08-21T07:19:48Z,2020-02-15T06:59:50Z +4420,162,1,15332,4.99,2005-08-22T20:41:53Z,2020-02-15T06:59:50Z +4421,162,1,14220,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4422,163,2,1265,4.99,2005-06-15T07:00:50Z,2020-02-15T06:59:50Z +4423,163,2,2000,2.99,2005-06-17T11:32:30Z,2020-02-15T06:59:50Z +4424,163,2,2110,7.99,2005-06-17T19:45:49Z,2020-02-15T06:59:50Z +4425,163,2,2536,5.99,2005-06-19T01:41:34Z,2020-02-15T06:59:50Z +4426,163,1,2994,6.99,2005-06-20T09:17:05Z,2020-02-15T06:59:50Z +4427,163,1,3179,0.99,2005-06-20T22:37:59Z,2020-02-15T06:59:50Z +4428,163,2,3915,3.99,2005-07-06T20:16:46Z,2020-02-15T06:59:50Z +4429,163,1,4126,1.99,2005-07-07T07:24:11Z,2020-02-15T06:59:50Z +4430,163,2,5549,4.99,2005-07-10T02:58:29Z,2020-02-15T06:59:50Z +4431,163,1,5574,10.99,2005-07-10T03:54:38Z,2020-02-15T06:59:50Z +4432,163,1,6109,0.99,2005-07-11T07:20:57Z,2020-02-15T06:59:50Z +4433,163,1,6831,1.99,2005-07-12T18:44:04Z,2020-02-15T06:59:50Z +4434,163,1,7303,1.99,2005-07-27T12:54:39Z,2020-02-15T06:59:50Z +4435,163,1,7403,2.99,2005-07-27T16:22:09Z,2020-02-15T06:59:50Z +4436,163,2,8040,0.99,2005-07-28T16:39:43Z,2020-02-15T06:59:50Z +4437,163,2,8063,4.99,2005-07-28T17:15:11Z,2020-02-15T06:59:50Z +4438,163,2,8403,4.99,2005-07-29T06:26:39Z,2020-02-15T06:59:50Z +4439,163,2,10245,0.99,2005-08-01T02:24:09Z,2020-02-15T06:59:50Z +4440,163,2,11623,2.99,2005-08-17T04:15:47Z,2020-02-15T06:59:50Z +4441,163,2,11940,4.99,2005-08-17T16:56:28Z,2020-02-15T06:59:50Z +4442,163,1,12154,2.99,2005-08-18T00:23:56Z,2020-02-15T06:59:50Z +4443,163,2,12973,2.99,2005-08-19T06:48:11Z,2020-02-15T06:59:50Z +4444,163,2,13543,7.99,2005-08-20T03:43:13Z,2020-02-15T06:59:50Z +4445,163,2,14275,4.99,2005-08-21T06:30:30Z,2020-02-15T06:59:50Z +4446,163,2,14427,5.99,2005-08-21T11:26:06Z,2020-02-15T06:59:50Z +4447,163,1,15520,8.99,2005-08-23T03:30:45Z,2020-02-15T06:59:50Z +4448,163,1,15847,0.99,2005-08-23T15:39:38Z,2020-02-15T06:59:50Z +4449,163,2,11754,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4450,163,1,15282,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4451,164,2,1011,1.99,2005-05-31T02:05:39Z,2020-02-15T06:59:50Z +4452,164,2,1713,4.99,2005-06-16T14:28:33Z,2020-02-15T06:59:50Z +4453,164,2,2589,2.99,2005-06-19T05:21:27Z,2020-02-15T06:59:50Z +4454,164,1,3082,8.99,2005-06-20T15:32:11Z,2020-02-15T06:59:50Z +4455,164,2,4548,4.99,2005-07-08T04:21:54Z,2020-02-15T06:59:50Z +4456,164,1,5895,3.99,2005-07-10T20:13:19Z,2020-02-15T06:59:50Z +4457,164,1,6393,0.99,2005-07-11T22:28:12Z,2020-02-15T06:59:50Z +4458,164,2,6558,2.99,2005-07-12T05:16:07Z,2020-02-15T06:59:50Z +4459,164,1,6637,4.99,2005-07-12T09:57:39Z,2020-02-15T06:59:50Z +4460,164,2,6702,0.99,2005-07-12T12:48:03Z,2020-02-15T06:59:50Z +4461,164,1,6980,3.99,2005-07-27T00:50:30Z,2020-02-15T06:59:50Z +4462,164,1,7227,6.99,2005-07-27T09:53:43Z,2020-02-15T06:59:50Z +4463,164,2,8135,3.99,2005-07-28T20:03:25Z,2020-02-15T06:59:50Z +4464,164,2,8824,4.99,2005-07-29T22:22:58Z,2020-02-15T06:59:50Z +4465,164,2,11175,2.99,2005-08-02T10:38:47Z,2020-02-15T06:59:50Z +4466,164,2,13453,5.99,2005-08-20T00:30:51Z,2020-02-15T06:59:50Z +4467,165,2,338,4.99,2005-05-27T03:42:52Z,2020-02-15T06:59:50Z +4468,165,1,2013,3.99,2005-06-17T12:03:01Z,2020-02-15T06:59:50Z +4469,165,2,3195,2.99,2005-06-21T00:02:10Z,2020-02-15T06:59:50Z +4470,165,2,3531,4.99,2005-07-06T01:24:08Z,2020-02-15T06:59:50Z +4471,165,1,3784,5.99,2005-07-06T13:57:56Z,2020-02-15T06:59:50Z +4472,165,2,4304,0.99,2005-07-07T17:01:19Z,2020-02-15T06:59:50Z +4473,165,2,4945,2.99,2005-07-08T22:45:02Z,2020-02-15T06:59:50Z +4474,165,1,5472,4.99,2005-07-09T23:16:40Z,2020-02-15T06:59:50Z +4475,165,2,5658,4.99,2005-07-10T07:34:08Z,2020-02-15T06:59:50Z +4476,165,2,5901,6.99,2005-07-10T20:22:12Z,2020-02-15T06:59:50Z +4477,165,1,5973,0.99,2005-07-11T00:09:17Z,2020-02-15T06:59:50Z +4478,165,1,7074,2.99,2005-07-27T04:06:24Z,2020-02-15T06:59:50Z +4479,165,1,8608,0.99,2005-07-29T13:18:52Z,2020-02-15T06:59:50Z +4480,165,2,9182,7.99,2005-07-30T12:06:58Z,2020-02-15T06:59:50Z +4481,165,2,9685,4.99,2005-07-31T06:49:18Z,2020-02-15T06:59:50Z +4482,165,1,10565,4.99,2005-08-01T13:08:27Z,2020-02-15T06:59:50Z +4483,165,1,11484,2.99,2005-08-02T22:28:23Z,2020-02-15T06:59:50Z +4484,165,2,12643,4.99,2005-08-18T18:21:06Z,2020-02-15T06:59:50Z +4485,165,2,15007,1.99,2005-08-22T08:21:21Z,2020-02-15T06:59:50Z +4486,165,1,15801,3.99,2005-08-23T14:26:04Z,2020-02-15T06:59:50Z +4487,165,2,15834,5.99,2005-08-23T15:23:50Z,2020-02-15T06:59:50Z +4488,166,1,662,1.99,2005-05-28T21:09:31Z,2020-02-15T06:59:50Z +4489,166,2,1412,2.99,2005-06-15T17:09:48Z,2020-02-15T06:59:50Z +4490,166,1,2211,3.99,2005-06-18T02:29:10Z,2020-02-15T06:59:50Z +4491,166,1,2874,5.99,2005-06-20T00:42:26Z,2020-02-15T06:59:50Z +4492,166,1,3085,0.99,2005-06-20T15:42:33Z,2020-02-15T06:59:50Z +4493,166,2,3606,2.99,2005-07-06T05:28:02Z,2020-02-15T06:59:50Z +4494,166,1,3642,2.99,2005-07-06T07:18:20Z,2020-02-15T06:59:50Z +4495,166,2,4389,6.99,2005-07-07T20:58:58Z,2020-02-15T06:59:50Z +4496,166,1,4658,0.99,2005-07-08T09:51:11Z,2020-02-15T06:59:50Z +4497,166,1,5184,4.99,2005-07-09T10:14:34Z,2020-02-15T06:59:50Z +4498,166,2,5380,4.99,2005-07-09T19:08:44Z,2020-02-15T06:59:50Z +4499,166,1,5646,2.99,2005-07-10T07:08:09Z,2020-02-15T06:59:50Z +4500,166,1,5855,7.99,2005-07-10T17:54:06Z,2020-02-15T06:59:50Z +4501,166,2,6237,0.99,2005-07-11T14:19:12Z,2020-02-15T06:59:50Z +4502,166,2,6882,2.99,2005-07-12T20:50:39Z,2020-02-15T06:59:50Z +4503,166,1,7581,2.99,2005-07-27T23:14:35Z,2020-02-15T06:59:50Z +4504,166,1,8052,5.99,2005-07-28T16:57:31Z,2020-02-15T06:59:50Z +4505,166,1,9009,8.99,2005-07-30T05:12:01Z,2020-02-15T06:59:50Z +4506,166,2,10422,7.99,2005-08-01T08:17:11Z,2020-02-15T06:59:50Z +4507,166,2,12683,4.99,2005-08-18T19:50:43Z,2020-02-15T06:59:50Z +4508,166,1,12968,4.99,2005-08-19T06:38:18Z,2020-02-15T06:59:50Z +4509,166,2,13582,4.99,2005-08-20T05:28:11Z,2020-02-15T06:59:50Z +4510,166,2,13901,7.99,2005-08-20T16:06:53Z,2020-02-15T06:59:50Z +4511,166,2,14261,5.99,2005-08-21T06:07:24Z,2020-02-15T06:59:50Z +4512,166,2,14281,2.99,2005-08-21T06:40:48Z,2020-02-15T06:59:50Z +4513,166,1,15213,5.99,2005-08-22T16:49:02Z,2020-02-15T06:59:50Z +4514,166,2,15216,2.99,2005-08-22T16:57:02Z,2020-02-15T06:59:50Z +4515,166,2,15806,1.99,2005-08-23T14:31:50Z,2020-02-15T06:59:50Z +4516,167,1,280,2.99,2005-05-26T18:36:58Z,2020-02-15T06:59:50Z +4517,167,1,365,2.99,2005-05-27T07:31:20Z,2020-02-15T06:59:50Z +4518,167,1,927,4.99,2005-05-30T12:16:40Z,2020-02-15T06:59:50Z +4519,167,1,1416,3.99,2005-06-15T17:44:57Z,2020-02-15T06:59:50Z +4520,167,1,1509,5.99,2005-06-15T22:35:53Z,2020-02-15T06:59:50Z +4521,167,2,2381,5.99,2005-06-18T15:00:30Z,2020-02-15T06:59:50Z +4522,167,2,3518,4.99,2005-07-06T00:56:03Z,2020-02-15T06:59:50Z +4523,167,2,4493,0.99,2005-07-08T01:40:24Z,2020-02-15T06:59:50Z +4524,167,2,5131,0.99,2005-07-09T07:35:03Z,2020-02-15T06:59:50Z +4525,167,1,5178,4.99,2005-07-09T09:59:52Z,2020-02-15T06:59:50Z +4526,167,1,5191,0.99,2005-07-09T10:26:48Z,2020-02-15T06:59:50Z +4527,167,1,5413,4.99,2005-07-09T20:28:42Z,2020-02-15T06:59:50Z +4528,167,1,5781,2.99,2005-07-10T13:49:30Z,2020-02-15T06:59:50Z +4529,167,2,6269,4.99,2005-07-11T15:58:43Z,2020-02-15T06:59:50Z +4530,167,1,7608,4.99,2005-07-28T00:08:36Z,2020-02-15T06:59:50Z +4531,167,1,8092,2.99,2005-07-28T18:28:07Z,2020-02-15T06:59:50Z +4532,167,2,8227,4.99,2005-07-29T00:02:22Z,2020-02-15T06:59:50Z +4533,167,1,8318,2.99,2005-07-29T03:44:30Z,2020-02-15T06:59:50Z +4534,167,1,8793,0.99,2005-07-29T20:57:22Z,2020-02-15T06:59:50Z +4535,167,2,8864,0.99,2005-07-29T23:52:12Z,2020-02-15T06:59:50Z +4536,167,2,9563,4.99,2005-07-31T02:28:39Z,2020-02-15T06:59:50Z +4537,167,2,10285,3.99,2005-08-01T03:35:11Z,2020-02-15T06:59:50Z +4538,167,1,12642,4.99,2005-08-18T18:19:16Z,2020-02-15T06:59:50Z +4539,167,2,12717,4.99,2005-08-18T21:15:40Z,2020-02-15T06:59:50Z +4540,167,1,12978,4.99,2005-08-19T06:57:27Z,2020-02-15T06:59:50Z +4541,167,1,13825,6.99,2005-08-20T13:43:22Z,2020-02-15T06:59:50Z +4542,167,1,13870,1.99,2005-08-20T15:09:16Z,2020-02-15T06:59:50Z +4543,167,1,15003,3.99,2005-08-22T08:11:24Z,2020-02-15T06:59:50Z +4544,167,1,15050,0.99,2005-08-22T10:07:52Z,2020-02-15T06:59:50Z +4545,167,2,15478,0.99,2005-08-23T01:50:31Z,2020-02-15T06:59:50Z +4546,167,2,15530,4.99,2005-08-23T03:50:48Z,2020-02-15T06:59:50Z +4547,167,2,15915,4.99,2005-08-23T17:52:01Z,2020-02-15T06:59:50Z +4548,168,2,404,0.99,2005-05-27T13:31:51Z,2020-02-15T06:59:50Z +4549,168,1,488,4.99,2005-05-28T00:07:50Z,2020-02-15T06:59:50Z +4550,168,2,1222,4.99,2005-06-15T03:38:49Z,2020-02-15T06:59:50Z +4551,168,1,3530,2.99,2005-07-06T01:22:45Z,2020-02-15T06:59:50Z +4552,168,1,4308,5.99,2005-07-07T17:29:16Z,2020-02-15T06:59:50Z +4553,168,2,4363,5.99,2005-07-07T19:43:28Z,2020-02-15T06:59:50Z +4554,168,2,4953,2.99,2005-07-08T23:09:48Z,2020-02-15T06:59:50Z +4555,168,1,5459,0.99,2005-07-09T22:43:56Z,2020-02-15T06:59:50Z +4556,168,1,5907,5.99,2005-07-10T20:41:41Z,2020-02-15T06:59:50Z +4557,168,1,6334,5.99,2005-07-11T19:20:44Z,2020-02-15T06:59:50Z +4558,168,2,6444,0.99,2005-07-12T00:36:02Z,2020-02-15T06:59:50Z +4559,168,2,6809,3.99,2005-07-12T17:51:54Z,2020-02-15T06:59:50Z +4560,168,2,8352,1.99,2005-07-29T04:52:01Z,2020-02-15T06:59:50Z +4561,168,1,8527,1.99,2005-07-29T10:21:00Z,2020-02-15T06:59:50Z +4562,168,2,8659,6.99,2005-07-29T15:26:31Z,2020-02-15T06:59:50Z +4563,168,2,8883,1.99,2005-07-30T00:24:48Z,2020-02-15T06:59:50Z +4564,168,2,9197,4.99,2005-07-30T12:31:36Z,2020-02-15T06:59:50Z +4565,168,1,9418,4.99,2005-07-30T21:00:52Z,2020-02-15T06:59:50Z +4566,168,2,9857,6.99,2005-07-31T13:00:53Z,2020-02-15T06:59:50Z +4567,168,2,9899,4.99,2005-07-31T14:12:36Z,2020-02-15T06:59:50Z +4568,168,2,10270,0.99,2005-08-01T03:10:24Z,2020-02-15T06:59:50Z +4569,168,1,11551,0.99,2005-08-17T01:03:49Z,2020-02-15T06:59:50Z +4570,168,1,11627,10.99,2005-08-17T04:25:47Z,2020-02-15T06:59:50Z +4571,168,1,11631,1.99,2005-08-17T04:28:56Z,2020-02-15T06:59:50Z +4572,168,1,12545,6.99,2005-08-18T14:28:00Z,2020-02-15T06:59:50Z +4573,168,1,12781,2.99,2005-08-18T23:50:24Z,2020-02-15T06:59:50Z +4574,168,1,13018,8.99,2005-08-19T08:04:50Z,2020-02-15T06:59:50Z +4575,168,2,13532,4.99,2005-08-20T03:29:28Z,2020-02-15T06:59:50Z +4576,168,2,13811,0.99,2005-08-20T13:00:30Z,2020-02-15T06:59:50Z +4577,168,1,14090,2.99,2005-08-21T00:11:16Z,2020-02-15T06:59:50Z +4578,168,1,15033,3.99,2005-08-22T09:25:24Z,2020-02-15T06:59:50Z +4579,168,1,15165,2.99,2005-08-22T14:59:30Z,2020-02-15T06:59:50Z +4580,168,2,15683,2.99,2005-08-23T09:38:17Z,2020-02-15T06:59:50Z +4581,168,1,15894,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4582,169,2,527,3.99,2005-05-28T04:28:38Z,2020-02-15T06:59:50Z +4583,169,1,1087,4.99,2005-05-31T11:18:08Z,2020-02-15T06:59:50Z +4584,169,1,2023,4.99,2005-06-17T12:52:58Z,2020-02-15T06:59:50Z +4585,169,1,3261,2.99,2005-06-21T04:07:41Z,2020-02-15T06:59:50Z +4586,169,1,3493,8.99,2005-07-05T23:46:19Z,2020-02-15T06:59:50Z +4587,169,1,4687,4.99,2005-07-08T10:54:19Z,2020-02-15T06:59:50Z +4588,169,1,5066,2.99,2005-07-09T04:48:50Z,2020-02-15T06:59:50Z +4589,169,1,6143,3.99,2005-07-11T09:02:37Z,2020-02-15T06:59:50Z +4590,169,2,6453,4.99,2005-07-12T00:59:53Z,2020-02-15T06:59:50Z +4591,169,2,6488,9.99,2005-07-12T02:20:09Z,2020-02-15T06:59:50Z +4592,169,2,7187,6.99,2005-07-27T08:27:58Z,2020-02-15T06:59:50Z +4593,169,1,7597,0.99,2005-07-27T23:35:49Z,2020-02-15T06:59:50Z +4594,169,2,8558,4.99,2005-07-29T11:24:49Z,2020-02-15T06:59:50Z +4595,169,2,9203,0.99,2005-07-30T12:43:40Z,2020-02-15T06:59:50Z +4596,169,2,11687,5.99,2005-08-17T06:39:59Z,2020-02-15T06:59:50Z +4597,169,1,11898,5.99,2005-08-17T15:24:12Z,2020-02-15T06:59:50Z +4598,169,2,13198,2.99,2005-08-19T14:47:18Z,2020-02-15T06:59:50Z +4599,169,2,13237,1.99,2005-08-19T16:18:36Z,2020-02-15T06:59:50Z +4600,169,2,14435,0.99,2005-08-21T11:44:37Z,2020-02-15T06:59:50Z +4601,169,2,14805,4.99,2005-08-22T00:52:01Z,2020-02-15T06:59:50Z +4602,169,2,15534,0.99,2005-08-23T03:55:54Z,2020-02-15T06:59:50Z +4603,169,2,15680,4.99,2005-08-23T09:33:22Z,2020-02-15T06:59:50Z +4604,170,1,211,2.99,2005-05-26T08:33:10Z,2020-02-15T06:59:50Z +4605,170,1,377,5.99,2005-05-27T09:04:05Z,2020-02-15T06:59:50Z +4606,170,2,504,0.99,2005-05-28T02:05:34Z,2020-02-15T06:59:50Z +4607,170,2,2117,0.99,2005-06-17T20:24:00Z,2020-02-15T06:59:50Z +4608,170,2,2413,8.99,2005-06-18T16:59:34Z,2020-02-15T06:59:50Z +4609,170,2,3651,4.99,2005-07-06T07:40:31Z,2020-02-15T06:59:50Z +4610,170,1,3749,4.99,2005-07-06T12:18:03Z,2020-02-15T06:59:50Z +4611,170,2,4113,4.99,2005-07-07T06:49:52Z,2020-02-15T06:59:50Z +4612,170,2,4468,0.99,2005-07-08T00:17:59Z,2020-02-15T06:59:50Z +4613,170,2,5075,0.99,2005-07-09T05:12:07Z,2020-02-15T06:59:50Z +4614,170,1,5573,4.99,2005-07-10T03:50:47Z,2020-02-15T06:59:50Z +4615,170,2,5685,7.99,2005-07-10T09:01:38Z,2020-02-15T06:59:50Z +4616,170,2,5808,2.99,2005-07-10T15:17:33Z,2020-02-15T06:59:50Z +4617,170,1,7999,7.99,2005-07-28T15:10:14Z,2020-02-15T06:59:50Z +4618,170,2,9517,2.99,2005-07-31T00:41:23Z,2020-02-15T06:59:50Z +4619,170,1,9817,2.99,2005-07-31T11:33:31Z,2020-02-15T06:59:50Z +4620,170,1,10102,9.99,2005-07-31T20:49:10Z,2020-02-15T06:59:50Z +4621,170,2,10481,5.99,2005-08-01T10:17:26Z,2020-02-15T06:59:50Z +4622,170,1,11039,0.99,2005-08-02T06:00:53Z,2020-02-15T06:59:50Z +4623,170,2,12706,3.99,2005-08-18T20:44:34Z,2020-02-15T06:59:50Z +4624,170,1,12967,3.99,2005-08-19T06:37:51Z,2020-02-15T06:59:50Z +4625,170,1,13081,0.99,2005-08-19T10:19:06Z,2020-02-15T06:59:50Z +4626,170,2,13862,6.99,2005-08-20T14:57:01Z,2020-02-15T06:59:50Z +4627,170,2,14022,8.99,2005-08-20T21:08:49Z,2020-02-15T06:59:50Z +4628,170,2,14675,2.99,2005-08-21T20:01:51Z,2020-02-15T06:59:50Z +4629,170,1,15549,7.99,2005-08-23T04:27:06Z,2020-02-15T06:59:50Z +4630,171,2,804,9.99,2005-05-29T18:10:24Z,2020-02-15T06:59:50Z +4631,171,2,1676,0.99,2005-06-16T11:06:09Z,2020-02-15T06:59:50Z +4632,171,2,2004,4.99,2005-06-17T11:43:38Z,2020-02-15T06:59:50Z +4633,171,2,2199,5.99,2005-06-18T01:57:56Z,2020-02-15T06:59:50Z +4634,171,1,2497,4.99,2005-06-18T22:50:40Z,2020-02-15T06:59:50Z +4635,171,2,2599,5.99,2005-06-19T06:06:07Z,2020-02-15T06:59:50Z +4636,171,2,2788,2.99,2005-06-19T18:48:11Z,2020-02-15T06:59:50Z +4637,171,2,3338,6.99,2005-06-21T10:27:31Z,2020-02-15T06:59:50Z +4638,171,1,3621,0.99,2005-07-06T06:03:55Z,2020-02-15T06:59:50Z +4639,171,2,3745,2.99,2005-07-06T12:10:32Z,2020-02-15T06:59:50Z +4640,171,1,5660,5.99,2005-07-10T07:46:12Z,2020-02-15T06:59:50Z +4641,171,1,5986,4.99,2005-07-11T00:54:56Z,2020-02-15T06:59:50Z +4642,171,1,6766,2.99,2005-07-12T15:32:01Z,2020-02-15T06:59:50Z +4643,171,2,6774,0.99,2005-07-12T15:56:08Z,2020-02-15T06:59:50Z +4644,171,1,7037,3.99,2005-07-27T03:06:44Z,2020-02-15T06:59:50Z +4645,171,2,9066,4.99,2005-07-30T07:28:54Z,2020-02-15T06:59:50Z +4646,171,2,9084,5.99,2005-07-30T08:14:29Z,2020-02-15T06:59:50Z +4647,171,2,10622,4.99,2005-08-01T15:12:00Z,2020-02-15T06:59:50Z +4648,171,1,12600,4.99,2005-08-18T16:44:24Z,2020-02-15T06:59:50Z +4649,171,1,12962,5.99,2005-08-19T06:22:48Z,2020-02-15T06:59:50Z +4650,171,2,13087,6.99,2005-08-19T10:33:52Z,2020-02-15T06:59:50Z +4651,171,2,13292,0.99,2005-08-19T18:35:32Z,2020-02-15T06:59:50Z +4652,171,2,13433,0.99,2005-08-19T23:30:53Z,2020-02-15T06:59:50Z +4653,171,1,14270,1.99,2005-08-21T06:22:18Z,2020-02-15T06:59:50Z +4654,171,2,14615,9.99,2005-08-21T18:06:32Z,2020-02-15T06:59:50Z +4655,171,2,15810,0.99,2005-08-23T14:43:15Z,2020-02-15T06:59:50Z +4656,172,2,449,3.99,2005-05-27T19:13:15Z,2020-02-15T06:59:50Z +4657,172,1,685,6.99,2005-05-29T00:17:51Z,2020-02-15T06:59:50Z +4658,172,1,837,0.99,2005-05-30T00:02:08Z,2020-02-15T06:59:50Z +4659,172,2,1507,0.99,2005-06-15T22:25:26Z,2020-02-15T06:59:50Z +4660,172,1,2052,0.99,2005-06-17T15:14:43Z,2020-02-15T06:59:50Z +4661,172,2,3032,1.99,2005-06-20T11:58:30Z,2020-02-15T06:59:50Z +4662,172,1,4820,5.99,2005-07-08T17:25:23Z,2020-02-15T06:59:50Z +4663,172,1,4821,4.99,2005-07-08T17:28:08Z,2020-02-15T06:59:50Z +4664,172,2,4878,6.99,2005-07-08T19:33:49Z,2020-02-15T06:59:50Z +4665,172,2,6246,7.99,2005-07-11T14:57:51Z,2020-02-15T06:59:50Z +4666,172,1,6380,0.99,2005-07-11T21:55:40Z,2020-02-15T06:59:50Z +4667,172,1,6875,5.99,2005-07-12T20:23:05Z,2020-02-15T06:59:50Z +4668,172,1,7122,6.99,2005-07-27T06:03:18Z,2020-02-15T06:59:50Z +4669,172,1,7135,2.99,2005-07-27T06:34:32Z,2020-02-15T06:59:50Z +4670,172,1,7194,3.99,2005-07-27T08:39:58Z,2020-02-15T06:59:50Z +4671,172,2,7261,2.99,2005-07-27T11:15:01Z,2020-02-15T06:59:50Z +4672,172,1,7638,4.99,2005-07-28T01:13:26Z,2020-02-15T06:59:50Z +4673,172,2,8944,6.99,2005-07-30T03:11:44Z,2020-02-15T06:59:50Z +4674,172,1,9118,2.99,2005-07-30T09:24:18Z,2020-02-15T06:59:50Z +4675,172,2,9218,5.99,2005-07-30T13:14:35Z,2020-02-15T06:59:50Z +4676,172,1,10312,3.99,2005-08-01T04:29:06Z,2020-02-15T06:59:50Z +4677,172,2,10621,0.99,2005-08-01T15:10:26Z,2020-02-15T06:59:50Z +4678,172,2,11499,6.99,2005-08-16T22:54:12Z,2020-02-15T06:59:50Z +4679,172,2,12350,4.99,2005-08-18T07:29:46Z,2020-02-15T06:59:50Z +4680,172,2,12638,8.99,2005-08-18T18:11:39Z,2020-02-15T06:59:50Z +4681,172,2,13067,5.99,2005-08-19T09:51:17Z,2020-02-15T06:59:50Z +4682,172,2,13320,4.99,2005-08-19T19:35:33Z,2020-02-15T06:59:50Z +4683,172,1,13342,0.99,2005-08-19T20:21:36Z,2020-02-15T06:59:50Z +4684,172,2,13937,4.99,2005-08-20T17:22:51Z,2020-02-15T06:59:50Z +4685,172,1,14991,4.99,2005-08-22T07:50:44Z,2020-02-15T06:59:50Z +4686,172,2,15637,2.99,2005-08-23T07:53:38Z,2020-02-15T06:59:50Z +4687,172,1,15902,3.99,2005-08-23T17:28:03Z,2020-02-15T06:59:50Z +4688,172,2,16038,3.99,2005-08-23T22:14:31Z,2020-02-15T06:59:50Z +4689,173,2,578,2.99,2005-05-28T11:15:48Z,2020-02-15T06:59:50Z +4690,173,1,628,4.99,2005-05-28T17:05:46Z,2020-02-15T06:59:50Z +4691,173,2,1188,2.99,2005-06-15T01:04:07Z,2020-02-15T06:59:50Z +4692,173,2,2435,4.99,2005-06-18T18:12:26Z,2020-02-15T06:59:50Z +4693,173,1,2602,2.99,2005-06-19T06:10:08Z,2020-02-15T06:59:50Z +4694,173,2,3224,0.99,2005-06-21T02:11:36Z,2020-02-15T06:59:50Z +4695,173,1,3336,4.99,2005-06-21T10:14:27Z,2020-02-15T06:59:50Z +4696,173,2,3717,0.99,2005-07-06T10:53:34Z,2020-02-15T06:59:50Z +4697,173,1,4904,7.99,2005-07-08T20:53:27Z,2020-02-15T06:59:50Z +4698,173,2,5430,2.99,2005-07-09T21:19:54Z,2020-02-15T06:59:50Z +4699,173,2,5485,4.99,2005-07-09T23:55:25Z,2020-02-15T06:59:50Z +4700,173,1,5488,2.99,2005-07-10T00:02:06Z,2020-02-15T06:59:50Z +4701,173,2,5531,2.99,2005-07-10T02:13:59Z,2020-02-15T06:59:50Z +4702,173,1,5615,3.99,2005-07-10T05:18:51Z,2020-02-15T06:59:50Z +4703,173,2,6021,4.99,2005-07-11T02:10:18Z,2020-02-15T06:59:50Z +4704,173,1,7644,0.99,2005-07-28T01:27:33Z,2020-02-15T06:59:50Z +4705,173,2,8299,2.99,2005-07-29T02:56:00Z,2020-02-15T06:59:50Z +4706,173,2,8808,4.99,2005-07-29T21:39:07Z,2020-02-15T06:59:50Z +4707,173,2,8829,8.99,2005-07-29T22:33:34Z,2020-02-15T06:59:50Z +4708,173,1,9097,4.99,2005-07-30T08:40:35Z,2020-02-15T06:59:50Z +4709,173,2,9512,2.99,2005-07-31T00:26:30Z,2020-02-15T06:59:50Z +4710,173,1,10351,5.99,2005-08-01T05:32:13Z,2020-02-15T06:59:50Z +4711,173,2,12073,2.99,2005-08-17T21:50:39Z,2020-02-15T06:59:50Z +4712,173,1,12282,6.99,2005-08-18T04:54:20Z,2020-02-15T06:59:50Z +4713,173,2,12501,4.99,2005-08-18T13:13:13Z,2020-02-15T06:59:50Z +4714,173,1,14654,2.99,2005-08-21T19:36:59Z,2020-02-15T06:59:50Z +4715,173,2,15483,0.99,2005-08-23T02:02:53Z,2020-02-15T06:59:50Z +4716,173,1,15775,8.99,2005-08-23T13:25:44Z,2020-02-15T06:59:50Z +4717,173,1,16010,2.99,2005-08-23T21:10:24Z,2020-02-15T06:59:50Z +4718,174,1,41,5.99,2005-05-25T05:12:29Z,2020-02-15T06:59:50Z +4719,174,2,1071,4.99,2005-05-31T09:48:56Z,2020-02-15T06:59:50Z +4720,174,2,1566,7.99,2005-06-16T03:13:20Z,2020-02-15T06:59:50Z +4721,174,1,1609,0.99,2005-06-16T06:34:59Z,2020-02-15T06:59:50Z +4722,174,1,2326,5.99,2005-06-18T10:14:22Z,2020-02-15T06:59:50Z +4723,174,2,3446,1.99,2005-06-21T20:45:51Z,2020-02-15T06:59:50Z +4724,174,2,4803,1.99,2005-07-08T16:56:34Z,2020-02-15T06:59:50Z +4725,174,2,5414,4.99,2005-07-09T20:29:36Z,2020-02-15T06:59:50Z +4726,174,1,6909,4.99,2005-07-12T22:09:30Z,2020-02-15T06:59:50Z +4727,174,2,8348,7.99,2005-07-29T04:49:26Z,2020-02-15T06:59:50Z +4728,174,1,8754,4.99,2005-07-29T19:18:30Z,2020-02-15T06:59:50Z +4729,174,1,9301,4.99,2005-07-30T16:34:29Z,2020-02-15T06:59:50Z +4730,174,1,9847,2.99,2005-07-31T12:33:43Z,2020-02-15T06:59:50Z +4731,174,1,10363,2.99,2005-08-01T06:01:52Z,2020-02-15T06:59:50Z +4732,174,2,10398,4.99,2005-08-01T07:11:49Z,2020-02-15T06:59:50Z +4733,174,1,10559,8.99,2005-08-01T13:02:58Z,2020-02-15T06:59:50Z +4734,174,1,11525,0.99,2005-08-17T00:15:31Z,2020-02-15T06:59:50Z +4735,174,2,12886,5.99,2005-08-19T03:38:32Z,2020-02-15T06:59:50Z +4736,174,1,13185,0.99,2005-08-19T14:22:30Z,2020-02-15T06:59:50Z +4737,174,1,15892,1.99,2005-08-23T17:01:00Z,2020-02-15T06:59:50Z +4738,174,1,15975,4.99,2005-08-23T20:06:23Z,2020-02-15T06:59:50Z +4739,175,2,1495,0.99,2005-06-15T21:54:31Z,2020-02-15T06:59:50Z +4740,175,2,3266,4.99,2005-06-21T04:49:07Z,2020-02-15T06:59:50Z +4741,175,1,3625,4.99,2005-07-06T06:12:52Z,2020-02-15T06:59:50Z +4742,175,2,4167,5.99,2005-07-07T09:37:08Z,2020-02-15T06:59:50Z +4743,175,1,5232,1.99,2005-07-09T12:35:08Z,2020-02-15T06:59:50Z +4744,175,2,6865,7.99,2005-07-12T20:02:40Z,2020-02-15T06:59:50Z +4745,175,1,7448,2.99,2005-07-27T18:06:30Z,2020-02-15T06:59:50Z +4746,175,1,7771,0.99,2005-07-28T06:52:12Z,2020-02-15T06:59:50Z +4747,175,1,8244,2.99,2005-07-29T00:35:34Z,2020-02-15T06:59:50Z +4748,175,1,8264,4.99,2005-07-29T01:18:50Z,2020-02-15T06:59:50Z +4749,175,1,8440,3.99,2005-07-29T07:31:26Z,2020-02-15T06:59:50Z +4750,175,1,8817,4.99,2005-07-29T22:09:08Z,2020-02-15T06:59:50Z +4751,175,2,9941,4.99,2005-07-31T15:31:25Z,2020-02-15T06:59:50Z +4752,175,2,10229,7.99,2005-08-01T01:45:26Z,2020-02-15T06:59:50Z +4753,175,1,10875,0.99,2005-08-02T00:31:44Z,2020-02-15T06:59:50Z +4754,175,2,11618,4.99,2005-08-17T04:01:36Z,2020-02-15T06:59:50Z +4755,175,1,12509,0.99,2005-08-18T13:21:52Z,2020-02-15T06:59:50Z +4756,175,1,13016,4.99,2005-08-19T07:57:14Z,2020-02-15T06:59:50Z +4757,175,2,13833,6.99,2005-08-20T14:00:29Z,2020-02-15T06:59:50Z +4758,175,2,13997,6.99,2005-08-20T19:51:28Z,2020-02-15T06:59:50Z +4759,175,2,14507,4.99,2005-08-21T14:32:45Z,2020-02-15T06:59:50Z +4760,175,2,14897,2.99,2005-08-22T04:22:31Z,2020-02-15T06:59:50Z +4761,175,2,14060,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4762,175,2,13161,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4763,176,1,172,0.99,2005-05-26T03:17:42Z,2020-02-15T06:59:50Z +4764,176,2,380,6.99,2005-05-27T09:34:39Z,2020-02-15T06:59:50Z +4765,176,1,553,3.99,2005-05-28T08:14:44Z,2020-02-15T06:59:50Z +4766,176,1,663,1.99,2005-05-28T21:23:02Z,2020-02-15T06:59:50Z +4767,176,1,1062,7.99,2005-05-31T08:38:20Z,2020-02-15T06:59:50Z +4768,176,1,1291,5.99,2005-06-15T08:55:01Z,2020-02-15T06:59:50Z +4769,176,1,1741,7.99,2005-06-16T16:31:37Z,2020-02-15T06:59:50Z +4770,176,1,1836,6.99,2005-06-16T23:13:05Z,2020-02-15T06:59:50Z +4771,176,1,2181,8.99,2005-06-18T00:48:31Z,2020-02-15T06:59:50Z +4772,176,1,2218,2.99,2005-06-18T03:13:13Z,2020-02-15T06:59:50Z +4773,176,2,2427,2.99,2005-06-18T17:45:00Z,2020-02-15T06:59:50Z +4774,176,2,2503,1.99,2005-06-18T23:17:19Z,2020-02-15T06:59:50Z +4775,176,1,2922,4.99,2005-06-20T04:13:47Z,2020-02-15T06:59:50Z +4776,176,1,3643,4.99,2005-07-06T07:20:08Z,2020-02-15T06:59:50Z +4777,176,2,3931,6.99,2005-07-06T21:03:46Z,2020-02-15T06:59:50Z +4778,176,2,4121,3.99,2005-07-07T07:13:50Z,2020-02-15T06:59:50Z +4779,176,1,6035,2.99,2005-07-11T03:01:45Z,2020-02-15T06:59:50Z +4780,176,1,6354,6.99,2005-07-11T20:54:27Z,2020-02-15T06:59:50Z +4781,176,1,7017,4.99,2005-07-27T02:16:03Z,2020-02-15T06:59:50Z +4782,176,1,7025,2.99,2005-07-27T02:40:29Z,2020-02-15T06:59:50Z +4783,176,1,7210,2.99,2005-07-27T09:19:05Z,2020-02-15T06:59:50Z +4784,176,2,7521,2.99,2005-07-27T21:04:42Z,2020-02-15T06:59:50Z +4785,176,1,7751,5.99,2005-07-28T05:56:13Z,2020-02-15T06:59:50Z +4786,176,1,8279,2.99,2005-07-29T01:43:37Z,2020-02-15T06:59:50Z +4787,176,2,9145,6.99,2005-07-30T10:27:55Z,2020-02-15T06:59:50Z +4788,176,1,10277,2.99,2005-08-01T03:22:41Z,2020-02-15T06:59:50Z +4789,176,2,10441,0.99,2005-08-01T08:55:56Z,2020-02-15T06:59:50Z +4790,176,1,10862,2.99,2005-08-02T00:17:34Z,2020-02-15T06:59:50Z +4791,176,1,11678,5.99,2005-08-17T06:07:39Z,2020-02-15T06:59:50Z +4792,176,1,12299,2.99,2005-08-18T05:32:32Z,2020-02-15T06:59:50Z +4793,176,1,12718,2.99,2005-08-18T21:21:44Z,2020-02-15T06:59:50Z +4794,176,1,13170,7.99,2005-08-19T13:45:48Z,2020-02-15T06:59:50Z +4795,176,2,13186,5.99,2005-08-19T14:23:19Z,2020-02-15T06:59:50Z +4796,176,1,14083,7.99,2005-08-20T23:42:31Z,2020-02-15T06:59:50Z +4797,176,2,14232,1.99,2005-08-21T05:07:02Z,2020-02-15T06:59:50Z +4798,176,2,15311,4.99,2005-08-22T19:56:52Z,2020-02-15T06:59:50Z +4799,176,1,15933,4.99,2005-08-23T18:36:44Z,2020-02-15T06:59:50Z +4800,177,1,1393,2.99,2005-06-15T16:12:50Z,2020-02-15T06:59:50Z +4801,177,1,1524,2.99,2005-06-16T00:25:52Z,2020-02-15T06:59:50Z +4802,177,2,1621,4.99,2005-06-16T07:24:12Z,2020-02-15T06:59:50Z +4803,177,1,1738,0.99,2005-06-16T16:07:27Z,2020-02-15T06:59:50Z +4804,177,2,2467,2.99,2005-06-18T20:20:05Z,2020-02-15T06:59:50Z +4805,177,1,4760,0.99,2005-07-08T14:48:07Z,2020-02-15T06:59:50Z +4806,177,2,6217,9.99,2005-07-11T13:13:45Z,2020-02-15T06:59:50Z +4807,177,1,6284,2.99,2005-07-11T16:51:39Z,2020-02-15T06:59:50Z +4808,177,1,7493,3.99,2005-07-27T19:55:46Z,2020-02-15T06:59:50Z +4809,177,2,7674,1.99,2005-07-28T02:54:30Z,2020-02-15T06:59:50Z +4810,177,1,8139,0.99,2005-07-28T20:16:30Z,2020-02-15T06:59:50Z +4811,177,2,9190,1.99,2005-07-30T12:24:17Z,2020-02-15T06:59:50Z +4812,177,2,10321,4.99,2005-08-01T04:40:02Z,2020-02-15T06:59:50Z +4813,177,1,10661,2.99,2005-08-01T16:48:31Z,2020-02-15T06:59:50Z +4814,177,1,10710,0.99,2005-08-01T18:44:36Z,2020-02-15T06:59:50Z +4815,177,1,11195,0.99,2005-08-02T11:42:23Z,2020-02-15T06:59:50Z +4816,177,1,11376,5.99,2005-08-02T18:16:00Z,2020-02-15T06:59:50Z +4817,177,2,11662,6.99,2005-08-17T05:27:37Z,2020-02-15T06:59:50Z +4818,177,1,12623,4.99,2005-08-18T17:34:19Z,2020-02-15T06:59:50Z +4819,177,2,14093,0.99,2005-08-21T00:21:29Z,2020-02-15T06:59:50Z +4820,177,2,14310,0.99,2005-08-21T07:44:32Z,2020-02-15T06:59:50Z +4821,177,2,14849,2.99,2005-08-22T02:15:26Z,2020-02-15T06:59:50Z +4822,177,2,14883,0.99,2005-08-22T03:55:02Z,2020-02-15T06:59:50Z +4823,178,1,1292,6.99,2005-06-15T09:03:52Z,2020-02-15T06:59:50Z +4824,178,2,1458,6.99,2005-06-15T20:24:05Z,2020-02-15T06:59:50Z +4825,178,2,1568,2.99,2005-06-16T03:14:01Z,2020-02-15T06:59:50Z +4826,178,2,1745,3.99,2005-06-16T16:41:16Z,2020-02-15T06:59:50Z +4827,178,2,2124,1.99,2005-06-17T20:49:14Z,2020-02-15T06:59:50Z +4828,178,1,2293,4.99,2005-06-18T07:45:03Z,2020-02-15T06:59:50Z +4829,178,2,2844,6.99,2005-06-19T22:40:12Z,2020-02-15T06:59:50Z +4830,178,1,2898,9.99,2005-06-20T02:38:06Z,2020-02-15T06:59:50Z +4831,178,1,4915,2.99,2005-07-08T21:31:22Z,2020-02-15T06:59:50Z +4832,178,1,5015,2.99,2005-07-09T01:54:24Z,2020-02-15T06:59:50Z +4833,178,1,5057,4.99,2005-07-09T04:20:29Z,2020-02-15T06:59:50Z +4834,178,1,5094,10.99,2005-07-09T05:59:47Z,2020-02-15T06:59:50Z +4835,178,1,5984,2.99,2005-07-11T00:44:36Z,2020-02-15T06:59:50Z +4836,178,2,6347,4.99,2005-07-11T20:18:53Z,2020-02-15T06:59:50Z +4837,178,1,6554,5.99,2005-07-12T05:07:26Z,2020-02-15T06:59:50Z +4838,178,1,6566,6.99,2005-07-12T05:42:53Z,2020-02-15T06:59:50Z +4839,178,2,6606,2.99,2005-07-12T08:03:40Z,2020-02-15T06:59:50Z +4840,178,1,7959,4.99,2005-07-28T13:43:20Z,2020-02-15T06:59:50Z +4841,178,2,8069,0.99,2005-07-28T17:23:46Z,2020-02-15T06:59:50Z +4842,178,1,8287,3.99,2005-07-29T02:03:58Z,2020-02-15T06:59:50Z +4843,178,2,8388,5.99,2005-07-29T05:48:15Z,2020-02-15T06:59:50Z +4844,178,2,8696,4.99,2005-07-29T16:45:18Z,2020-02-15T06:59:50Z +4845,178,2,9004,4.99,2005-07-30T05:04:27Z,2020-02-15T06:59:50Z +4846,178,1,9311,7.99,2005-07-30T16:58:31Z,2020-02-15T06:59:50Z +4847,178,2,9879,4.99,2005-07-31T13:45:32Z,2020-02-15T06:59:50Z +4848,178,2,10125,0.99,2005-07-31T21:33:03Z,2020-02-15T06:59:50Z +4849,178,2,10562,0.99,2005-08-01T13:05:52Z,2020-02-15T06:59:50Z +4850,178,1,10802,5.99,2005-08-01T22:18:32Z,2020-02-15T06:59:50Z +4851,178,2,11319,6.99,2005-08-02T16:10:09Z,2020-02-15T06:59:50Z +4852,178,2,11884,6.99,2005-08-17T14:43:23Z,2020-02-15T06:59:50Z +4853,178,2,11927,3.99,2005-08-17T16:25:03Z,2020-02-15T06:59:50Z +4854,178,2,12049,6.99,2005-08-17T20:53:27Z,2020-02-15T06:59:50Z +4855,178,2,12727,2.99,2005-08-18T21:45:15Z,2020-02-15T06:59:50Z +4856,178,1,13127,2.99,2005-08-19T12:04:03Z,2020-02-15T06:59:50Z +4857,178,1,14104,4.99,2005-08-21T00:37:44Z,2020-02-15T06:59:50Z +4858,178,1,14257,7.99,2005-08-21T05:52:57Z,2020-02-15T06:59:50Z +4859,178,2,14314,2.99,2005-08-21T07:50:14Z,2020-02-15T06:59:50Z +4860,178,1,15323,4.99,2005-08-22T20:22:40Z,2020-02-15T06:59:50Z +4861,178,1,12897,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4862,179,1,502,0.99,2005-05-28T01:34:43Z,2020-02-15T06:59:50Z +4863,179,1,759,6.99,2005-05-29T10:57:57Z,2020-02-15T06:59:50Z +4864,179,1,1046,4.99,2005-05-31T06:42:30Z,2020-02-15T06:59:50Z +4865,179,2,1286,7.99,2005-06-15T08:41:13Z,2020-02-15T06:59:50Z +4866,179,1,2613,4.99,2005-06-19T07:25:50Z,2020-02-15T06:59:50Z +4867,179,1,3671,6.99,2005-07-06T09:01:29Z,2020-02-15T06:59:50Z +4868,179,1,3844,0.99,2005-07-06T16:37:58Z,2020-02-15T06:59:50Z +4869,179,1,4618,2.99,2005-07-08T08:00:20Z,2020-02-15T06:59:50Z +4870,179,2,6071,6.99,2005-07-11T04:50:03Z,2020-02-15T06:59:50Z +4871,179,1,6616,7.99,2005-07-12T08:37:30Z,2020-02-15T06:59:50Z +4872,179,1,6806,2.99,2005-07-12T17:31:43Z,2020-02-15T06:59:50Z +4873,179,1,7028,6.99,2005-07-27T02:54:25Z,2020-02-15T06:59:50Z +4874,179,1,7054,4.99,2005-07-27T03:43:28Z,2020-02-15T06:59:50Z +4875,179,1,7609,4.99,2005-07-28T00:11:00Z,2020-02-15T06:59:50Z +4876,179,1,8573,2.99,2005-07-29T11:51:25Z,2020-02-15T06:59:50Z +4877,179,1,8731,8.99,2005-07-29T18:23:57Z,2020-02-15T06:59:50Z +4878,179,2,9491,4.99,2005-07-30T23:45:23Z,2020-02-15T06:59:50Z +4879,179,2,9893,0.99,2005-07-31T14:07:21Z,2020-02-15T06:59:50Z +4880,179,1,10156,4.99,2005-07-31T22:36:00Z,2020-02-15T06:59:50Z +4881,179,1,10385,4.99,2005-08-01T06:39:55Z,2020-02-15T06:59:50Z +4882,179,2,10569,3.99,2005-08-01T13:18:23Z,2020-02-15T06:59:50Z +4883,179,1,11342,0.99,2005-08-02T17:11:35Z,2020-02-15T06:59:50Z +4884,179,2,13240,0.99,2005-08-19T16:22:14Z,2020-02-15T06:59:50Z +4885,179,1,13400,4.99,2005-08-19T22:11:44Z,2020-02-15T06:59:50Z +4886,179,2,13844,7.99,2005-08-20T14:30:26Z,2020-02-15T06:59:50Z +4887,179,2,13957,0.99,2005-08-20T18:09:04Z,2020-02-15T06:59:50Z +4888,179,2,14082,7.99,2005-08-20T23:42:00Z,2020-02-15T06:59:50Z +4889,179,1,14589,0.99,2005-08-21T17:28:55Z,2020-02-15T06:59:50Z +4890,179,1,15985,4.99,2005-08-23T20:20:23Z,2020-02-15T06:59:50Z +4891,180,1,1122,2.99,2005-05-31T16:39:33Z,2020-02-15T06:59:50Z +4892,180,2,2700,2.99,2005-06-19T13:31:52Z,2020-02-15T06:59:50Z +4893,180,1,2798,2.99,2005-06-19T19:07:48Z,2020-02-15T06:59:50Z +4894,180,2,4826,7.99,2005-07-08T17:44:25Z,2020-02-15T06:59:50Z +4895,180,1,4924,9.99,2005-07-08T21:55:25Z,2020-02-15T06:59:50Z +4896,180,2,5384,0.99,2005-07-09T19:17:46Z,2020-02-15T06:59:50Z +4897,180,2,5773,0.99,2005-07-10T13:31:09Z,2020-02-15T06:59:50Z +4898,180,1,5860,3.99,2005-07-10T18:08:49Z,2020-02-15T06:59:50Z +4899,180,1,7274,2.99,2005-07-27T11:35:34Z,2020-02-15T06:59:50Z +4900,180,2,8540,2.99,2005-07-29T10:52:51Z,2020-02-15T06:59:50Z +4901,180,2,8720,5.99,2005-07-29T17:48:32Z,2020-02-15T06:59:50Z +4902,180,1,9373,0.99,2005-07-30T19:05:36Z,2020-02-15T06:59:50Z +4903,180,2,9995,3.99,2005-07-31T17:30:47Z,2020-02-15T06:59:50Z +4904,180,1,10576,5.99,2005-08-01T13:46:02Z,2020-02-15T06:59:50Z +4905,180,1,10992,8.99,2005-08-02T04:41:17Z,2020-02-15T06:59:50Z +4906,180,1,12313,8.99,2005-08-18T06:07:31Z,2020-02-15T06:59:50Z +4907,180,1,13283,2.99,2005-08-19T18:10:19Z,2020-02-15T06:59:50Z +4908,180,2,13842,4.99,2005-08-20T14:29:37Z,2020-02-15T06:59:50Z +4909,180,1,13994,2.99,2005-08-20T19:33:21Z,2020-02-15T06:59:50Z +4910,180,1,14109,0.99,2005-08-21T00:52:58Z,2020-02-15T06:59:50Z +4911,180,1,14851,2.99,2005-08-22T02:20:44Z,2020-02-15T06:59:50Z +4912,180,1,15039,4.99,2005-08-22T09:37:54Z,2020-02-15T06:59:50Z +4913,180,1,12901,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4914,181,2,579,6.99,2005-05-28T11:19:23Z,2020-02-15T06:59:50Z +4915,181,1,1638,2.99,2005-06-16T08:32:36Z,2020-02-15T06:59:50Z +4916,181,1,2645,5.99,2005-06-19T09:50:35Z,2020-02-15T06:59:50Z +4917,181,2,3449,5.99,2005-06-21T21:01:27Z,2020-02-15T06:59:50Z +4918,181,2,3469,4.99,2005-06-21T22:48:59Z,2020-02-15T06:59:50Z +4919,181,1,3862,6.99,2005-07-06T17:35:22Z,2020-02-15T06:59:50Z +4920,181,2,4428,4.99,2005-07-07T22:29:40Z,2020-02-15T06:59:50Z +4921,181,2,6477,4.99,2005-07-12T01:38:42Z,2020-02-15T06:59:50Z +4922,181,1,6946,8.99,2005-07-26T23:40:07Z,2020-02-15T06:59:50Z +4923,181,1,7393,0.99,2005-07-27T16:02:52Z,2020-02-15T06:59:50Z +4924,181,1,7632,4.99,2005-07-28T01:02:40Z,2020-02-15T06:59:50Z +4925,181,1,8593,5.99,2005-07-29T12:38:14Z,2020-02-15T06:59:50Z +4926,181,1,8601,9.99,2005-07-29T13:03:31Z,2020-02-15T06:59:50Z +4927,181,2,9214,4.99,2005-07-30T13:10:14Z,2020-02-15T06:59:50Z +4928,181,2,9235,5.99,2005-07-30T13:47:17Z,2020-02-15T06:59:50Z +4929,181,1,9357,8.99,2005-07-30T18:37:00Z,2020-02-15T06:59:50Z +4930,181,1,9844,4.99,2005-07-31T12:26:31Z,2020-02-15T06:59:50Z +4931,181,2,10262,4.99,2005-08-01T03:01:26Z,2020-02-15T06:59:50Z +4932,181,2,10362,6.99,2005-08-01T05:55:13Z,2020-02-15T06:59:50Z +4933,181,2,10703,2.99,2005-08-01T18:37:39Z,2020-02-15T06:59:50Z +4934,181,1,10748,4.99,2005-08-01T20:01:24Z,2020-02-15T06:59:50Z +4935,181,1,10773,6.99,2005-08-01T20:53:45Z,2020-02-15T06:59:50Z +4936,181,2,11224,4.99,2005-08-02T12:40:38Z,2020-02-15T06:59:50Z +4937,181,1,12363,7.99,2005-08-18T07:52:49Z,2020-02-15T06:59:50Z +4938,181,1,12411,0.99,2005-08-18T09:47:57Z,2020-02-15T06:59:50Z +4939,181,1,12678,2.99,2005-08-18T19:41:27Z,2020-02-15T06:59:50Z +4940,181,2,12939,2.99,2005-08-19T05:38:25Z,2020-02-15T06:59:50Z +4941,181,2,13118,4.99,2005-08-19T11:39:58Z,2020-02-15T06:59:50Z +4942,181,2,13405,4.99,2005-08-19T22:20:49Z,2020-02-15T06:59:50Z +4943,181,2,13415,2.99,2005-08-19T22:48:09Z,2020-02-15T06:59:50Z +4944,181,2,14406,3.99,2005-08-21T10:46:35Z,2020-02-15T06:59:50Z +4945,181,2,15196,2.99,2005-08-22T16:11:32Z,2020-02-15T06:59:50Z +4946,181,2,15482,4.99,2005-08-23T02:01:20Z,2020-02-15T06:59:50Z +4947,181,2,13008,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +4948,182,2,161,0.99,2005-05-26T01:51:48Z,2020-02-15T06:59:50Z +4949,182,2,425,3.99,2005-05-27T15:51:30Z,2020-02-15T06:59:50Z +4950,182,2,1542,3.99,2005-06-16T01:20:05Z,2020-02-15T06:59:50Z +4951,182,1,2049,2.99,2005-06-17T14:58:36Z,2020-02-15T06:59:50Z +4952,182,2,2120,5.99,2005-06-17T20:36:50Z,2020-02-15T06:59:50Z +4953,182,1,2234,0.99,2005-06-18T04:01:28Z,2020-02-15T06:59:50Z +4954,182,1,3509,2.99,2005-07-06T00:24:57Z,2020-02-15T06:59:50Z +4955,182,1,3697,6.99,2005-07-06T10:07:22Z,2020-02-15T06:59:50Z +4956,182,1,4174,2.99,2005-07-07T09:59:49Z,2020-02-15T06:59:50Z +4957,182,1,4349,0.99,2005-07-07T19:02:37Z,2020-02-15T06:59:50Z +4958,182,2,4513,1.99,2005-07-08T02:39:59Z,2020-02-15T06:59:50Z +4959,182,2,4591,3.99,2005-07-08T06:29:43Z,2020-02-15T06:59:50Z +4960,182,2,4784,0.99,2005-07-08T16:09:56Z,2020-02-15T06:59:50Z +4961,182,1,5521,2.99,2005-07-10T01:31:22Z,2020-02-15T06:59:50Z +4962,182,2,7229,0.99,2005-07-27T10:00:54Z,2020-02-15T06:59:50Z +4963,182,2,7863,0.99,2005-07-28T10:05:46Z,2020-02-15T06:59:50Z +4964,182,2,7880,4.99,2005-07-28T10:30:37Z,2020-02-15T06:59:50Z +4965,182,2,8048,8.99,2005-07-28T16:50:26Z,2020-02-15T06:59:50Z +4966,182,1,11055,4.99,2005-08-02T06:36:05Z,2020-02-15T06:59:50Z +4967,182,2,11785,3.99,2005-08-17T10:54:46Z,2020-02-15T06:59:50Z +4968,182,1,12573,4.99,2005-08-18T15:32:57Z,2020-02-15T06:59:50Z +4969,182,1,12840,6.99,2005-08-19T01:54:11Z,2020-02-15T06:59:50Z +4970,182,1,13285,2.99,2005-08-19T18:18:44Z,2020-02-15T06:59:50Z +4971,182,1,14586,5.99,2005-08-21T17:19:09Z,2020-02-15T06:59:50Z +4972,182,1,14953,6.99,2005-08-22T06:23:54Z,2020-02-15T06:59:50Z +4973,182,1,15043,1.99,2005-08-22T09:49:32Z,2020-02-15T06:59:50Z +4974,183,1,382,0.99,2005-05-27T10:12:00Z,2020-02-15T06:59:50Z +4975,183,1,1279,0.99,2005-06-15T08:13:57Z,2020-02-15T06:59:50Z +4976,183,2,2188,1.99,2005-06-18T01:19:04Z,2020-02-15T06:59:50Z +4977,183,2,2471,5.99,2005-06-18T20:31:00Z,2020-02-15T06:59:50Z +4978,183,1,3381,5.99,2005-06-21T14:02:59Z,2020-02-15T06:59:50Z +4979,183,1,3869,2.99,2005-07-06T17:56:46Z,2020-02-15T06:59:50Z +4980,183,2,4134,0.99,2005-07-07T08:14:24Z,2020-02-15T06:59:50Z +4981,183,2,4157,2.99,2005-07-07T09:04:26Z,2020-02-15T06:59:50Z +4982,183,1,5069,1.99,2005-07-09T04:56:30Z,2020-02-15T06:59:50Z +4983,183,2,5756,0.99,2005-07-10T12:39:28Z,2020-02-15T06:59:50Z +4984,183,1,6472,4.99,2005-07-12T01:33:25Z,2020-02-15T06:59:50Z +4985,183,1,6569,4.99,2005-07-12T05:47:40Z,2020-02-15T06:59:50Z +4986,183,2,7359,0.99,2005-07-27T14:51:04Z,2020-02-15T06:59:50Z +4987,183,2,9672,5.99,2005-07-31T06:34:06Z,2020-02-15T06:59:50Z +4988,183,1,9818,4.99,2005-07-31T11:34:32Z,2020-02-15T06:59:50Z +4989,183,2,9931,2.99,2005-07-31T15:18:19Z,2020-02-15T06:59:50Z +4990,183,2,10620,5.99,2005-08-01T15:09:17Z,2020-02-15T06:59:50Z +4991,183,2,11386,2.99,2005-08-02T18:24:03Z,2020-02-15T06:59:50Z +4992,183,2,12451,0.99,2005-08-18T11:04:42Z,2020-02-15T06:59:50Z +4993,183,2,12764,3.99,2005-08-18T23:14:15Z,2020-02-15T06:59:50Z +4994,183,2,12831,3.99,2005-08-19T01:40:43Z,2020-02-15T06:59:50Z +4995,183,1,13482,2.99,2005-08-20T01:14:30Z,2020-02-15T06:59:50Z +4996,183,1,13536,4.99,2005-08-20T03:35:16Z,2020-02-15T06:59:50Z +4997,184,1,196,2.99,2005-05-26T06:55:58Z,2020-02-15T06:59:50Z +4998,184,2,534,4.99,2005-05-28T06:15:25Z,2020-02-15T06:59:50Z +4999,184,1,567,1.99,2005-05-28T09:56:20Z,2020-02-15T06:59:50Z +5000,184,2,1976,2.99,2005-06-17T09:38:08Z,2020-02-15T06:59:50Z +5001,184,1,2312,0.99,2005-06-18T08:55:46Z,2020-02-15T06:59:50Z +5002,184,1,4314,0.99,2005-07-07T17:38:31Z,2020-02-15T06:59:50Z +5003,184,2,4882,6.99,2005-07-08T19:42:03Z,2020-02-15T06:59:50Z +5004,184,1,5891,0.99,2005-07-10T20:01:17Z,2020-02-15T06:59:50Z +5005,184,2,6493,2.99,2005-07-12T02:40:41Z,2020-02-15T06:59:50Z +5006,184,2,6700,6.99,2005-07-12T12:47:22Z,2020-02-15T06:59:50Z +5007,184,2,7051,4.99,2005-07-27T03:34:37Z,2020-02-15T06:59:50Z +5008,184,2,7686,6.99,2005-07-28T03:19:23Z,2020-02-15T06:59:50Z +5009,184,1,8892,4.99,2005-07-30T00:47:03Z,2020-02-15T06:59:50Z +5010,184,1,9162,0.99,2005-07-30T11:21:56Z,2020-02-15T06:59:50Z +5011,184,2,12166,9.99,2005-08-18T00:57:06Z,2020-02-15T06:59:50Z +5012,184,2,12454,2.99,2005-08-18T11:19:02Z,2020-02-15T06:59:50Z +5013,184,1,12532,2.99,2005-08-18T13:57:58Z,2020-02-15T06:59:50Z +5014,184,1,13134,0.99,2005-08-19T12:14:14Z,2020-02-15T06:59:50Z +5015,184,1,13262,5.99,2005-08-19T17:20:15Z,2020-02-15T06:59:50Z +5016,184,1,13303,4.99,2005-08-19T18:55:21Z,2020-02-15T06:59:50Z +5017,184,2,14472,4.99,2005-08-21T13:13:57Z,2020-02-15T06:59:50Z +5018,184,1,14801,5.99,2005-08-22T00:46:54Z,2020-02-15T06:59:50Z +5019,184,2,15611,0.99,2005-08-23T06:56:18Z,2020-02-15T06:59:50Z +5020,185,2,20,2.99,2005-05-25T01:48:41Z,2020-02-15T06:59:50Z +5021,185,2,154,0.99,2005-05-26T00:55:56Z,2020-02-15T06:59:50Z +5022,185,1,646,0.99,2005-05-28T19:16:14Z,2020-02-15T06:59:50Z +5023,185,1,2459,4.99,2005-06-18T19:44:08Z,2020-02-15T06:59:50Z +5024,185,1,3314,4.99,2005-06-21T08:17:00Z,2020-02-15T06:59:50Z +5025,185,1,3325,4.99,2005-06-21T08:51:44Z,2020-02-15T06:59:50Z +5026,185,1,4186,9.99,2005-07-07T10:32:25Z,2020-02-15T06:59:50Z +5027,185,1,4524,2.99,2005-07-08T03:10:48Z,2020-02-15T06:59:50Z +5028,185,2,4822,7.99,2005-07-08T17:28:47Z,2020-02-15T06:59:50Z +5029,185,2,6106,2.99,2005-07-11T07:05:06Z,2020-02-15T06:59:50Z +5030,185,1,6418,1.99,2005-07-11T23:36:27Z,2020-02-15T06:59:50Z +5031,185,1,6965,2.99,2005-07-27T00:15:18Z,2020-02-15T06:59:50Z +5032,185,1,7066,4.99,2005-07-27T03:53:52Z,2020-02-15T06:59:50Z +5033,185,1,8200,2.99,2005-07-28T23:10:46Z,2020-02-15T06:59:50Z +5034,185,2,8442,0.99,2005-07-29T07:33:07Z,2020-02-15T06:59:50Z +5035,185,1,8684,8.99,2005-07-29T16:16:33Z,2020-02-15T06:59:50Z +5036,185,2,9246,0.99,2005-07-30T14:12:31Z,2020-02-15T06:59:50Z +5037,185,2,9473,2.99,2005-07-30T23:04:13Z,2020-02-15T06:59:50Z +5038,185,2,11355,0.99,2005-08-02T17:37:43Z,2020-02-15T06:59:50Z +5039,185,1,12312,2.99,2005-08-18T06:07:26Z,2020-02-15T06:59:50Z +5040,185,1,12674,5.99,2005-08-18T19:24:56Z,2020-02-15T06:59:50Z +5041,185,1,12885,0.99,2005-08-19T03:37:25Z,2020-02-15T06:59:50Z +5042,185,2,14513,2.99,2005-08-21T14:51:35Z,2020-02-15T06:59:50Z +5043,186,1,581,1.99,2005-05-28T11:20:29Z,2020-02-15T06:59:50Z +5044,186,2,958,0.99,2005-05-30T17:58:03Z,2020-02-15T06:59:50Z +5045,186,1,1192,4.99,2005-06-15T01:18:39Z,2020-02-15T06:59:50Z +5046,186,1,1300,2.99,2005-06-15T09:36:19Z,2020-02-15T06:59:50Z +5047,186,1,1663,2.99,2005-06-16T10:14:15Z,2020-02-15T06:59:50Z +5048,186,2,2132,4.99,2005-06-17T21:05:06Z,2020-02-15T06:59:50Z +5049,186,2,2875,4.99,2005-06-20T00:47:18Z,2020-02-15T06:59:50Z +5050,186,1,3039,4.99,2005-06-20T12:32:30Z,2020-02-15T06:59:50Z +5051,186,2,6067,4.99,2005-07-11T04:34:49Z,2020-02-15T06:59:50Z +5052,186,2,7739,0.99,2005-07-28T05:21:51Z,2020-02-15T06:59:50Z +5053,186,1,7915,3.99,2005-07-28T11:49:46Z,2020-02-15T06:59:50Z +5054,186,1,8483,4.99,2005-07-29T08:50:18Z,2020-02-15T06:59:50Z +5055,186,2,8872,0.99,2005-07-30T00:13:54Z,2020-02-15T06:59:50Z +5056,186,2,9303,2.99,2005-07-30T16:35:59Z,2020-02-15T06:59:50Z +5057,186,2,9360,5.99,2005-07-30T18:39:43Z,2020-02-15T06:59:50Z +5058,186,1,10104,1.99,2005-07-31T20:49:14Z,2020-02-15T06:59:50Z +5059,186,1,10985,0.99,2005-08-02T04:30:19Z,2020-02-15T06:59:50Z +5060,186,1,11982,0.99,2005-08-17T18:13:07Z,2020-02-15T06:59:50Z +5061,186,1,12348,5.99,2005-08-18T07:21:47Z,2020-02-15T06:59:50Z +5062,186,1,12438,8.99,2005-08-18T10:42:52Z,2020-02-15T06:59:50Z +5063,186,1,13168,6.99,2005-08-19T13:37:28Z,2020-02-15T06:59:50Z +5064,186,2,13517,4.99,2005-08-20T02:33:17Z,2020-02-15T06:59:50Z +5065,186,1,13853,3.99,2005-08-20T14:47:02Z,2020-02-15T06:59:50Z +5066,186,1,14006,2.99,2005-08-20T20:21:36Z,2020-02-15T06:59:50Z +5067,186,2,14229,4.99,2005-08-21T04:57:15Z,2020-02-15T06:59:50Z +5068,186,2,14646,4.99,2005-08-21T19:14:48Z,2020-02-15T06:59:50Z +5069,186,2,14988,3.99,2005-08-22T07:46:05Z,2020-02-15T06:59:50Z +5070,186,2,15001,0.99,2005-08-22T08:00:49Z,2020-02-15T06:59:50Z +5071,186,2,15295,3.99,2005-08-22T19:36:21Z,2020-02-15T06:59:50Z +5072,186,1,15596,0.99,2005-08-23T06:19:51Z,2020-02-15T06:59:50Z +5073,186,1,14216,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5074,187,1,252,7.99,2005-05-26T14:39:53Z,2020-02-15T06:59:50Z +5075,187,2,1323,6.99,2005-06-15T10:55:17Z,2020-02-15T06:59:50Z +5076,187,2,1462,4.99,2005-06-15T20:37:40Z,2020-02-15T06:59:50Z +5077,187,2,1592,0.99,2005-06-16T05:14:37Z,2020-02-15T06:59:50Z +5078,187,2,2127,0.99,2005-06-17T20:54:48Z,2020-02-15T06:59:50Z +5079,187,2,2533,0.99,2005-06-19T01:34:26Z,2020-02-15T06:59:50Z +5080,187,1,2742,5.99,2005-06-19T16:05:47Z,2020-02-15T06:59:50Z +5081,187,1,3402,2.99,2005-06-21T15:54:37Z,2020-02-15T06:59:50Z +5082,187,2,3709,10.99,2005-07-06T10:26:56Z,2020-02-15T06:59:50Z +5083,187,1,4429,4.99,2005-07-07T22:32:47Z,2020-02-15T06:59:50Z +5084,187,2,5366,0.99,2005-07-09T18:28:37Z,2020-02-15T06:59:50Z +5085,187,1,5738,8.99,2005-07-10T11:50:51Z,2020-02-15T06:59:50Z +5086,187,2,5833,6.99,2005-07-10T16:39:24Z,2020-02-15T06:59:50Z +5087,187,1,6057,3.99,2005-07-11T04:03:40Z,2020-02-15T06:59:50Z +5088,187,2,6428,2.99,2005-07-12T00:01:51Z,2020-02-15T06:59:50Z +5089,187,2,7289,4.99,2005-07-27T12:26:51Z,2020-02-15T06:59:50Z +5090,187,2,7844,7.99,2005-07-28T09:16:19Z,2020-02-15T06:59:50Z +5091,187,2,7967,7.99,2005-07-28T13:56:51Z,2020-02-15T06:59:50Z +5092,187,1,9241,2.99,2005-07-30T13:58:41Z,2020-02-15T06:59:50Z +5093,187,1,11843,2.99,2005-08-17T13:14:50Z,2020-02-15T06:59:50Z +5094,187,2,12307,8.99,2005-08-18T05:48:23Z,2020-02-15T06:59:50Z +5095,187,2,12490,9.99,2005-08-18T12:48:45Z,2020-02-15T06:59:50Z +5096,187,1,12534,7.99,2005-08-18T14:04:41Z,2020-02-15T06:59:50Z +5097,187,2,13940,8.99,2005-08-20T17:28:57Z,2020-02-15T06:59:50Z +5098,187,2,14855,8.99,2005-08-22T02:27:32Z,2020-02-15T06:59:50Z +5099,187,2,15231,4.99,2005-08-22T17:32:57Z,2020-02-15T06:59:50Z +5100,187,2,15517,2.99,2005-08-23T03:13:01Z,2020-02-15T06:59:50Z +5101,187,2,15971,7.99,2005-08-23T19:59:33Z,2020-02-15T06:59:50Z +5102,188,2,1527,2.99,2005-06-16T00:31:40Z,2020-02-15T06:59:50Z +5103,188,2,1927,0.99,2005-06-17T06:48:19Z,2020-02-15T06:59:50Z +5104,188,1,2515,4.99,2005-06-18T23:57:31Z,2020-02-15T06:59:50Z +5105,188,2,2733,4.99,2005-06-19T15:21:53Z,2020-02-15T06:59:50Z +5106,188,2,3848,3.99,2005-07-06T16:47:32Z,2020-02-15T06:59:50Z +5107,188,2,4150,2.99,2005-07-07T08:43:22Z,2020-02-15T06:59:50Z +5108,188,2,5356,2.99,2005-07-09T18:08:28Z,2020-02-15T06:59:50Z +5109,188,2,5729,5.99,2005-07-10T11:27:25Z,2020-02-15T06:59:50Z +5110,188,2,6555,4.99,2005-07-12T05:08:16Z,2020-02-15T06:59:50Z +5111,188,2,7042,0.99,2005-07-27T03:20:18Z,2020-02-15T06:59:50Z +5112,188,1,7556,4.99,2005-07-27T22:17:17Z,2020-02-15T06:59:50Z +5113,188,2,9613,4.99,2005-07-31T03:58:53Z,2020-02-15T06:59:50Z +5114,188,2,10453,5.99,2005-08-01T09:13:27Z,2020-02-15T06:59:50Z +5115,188,1,10494,0.99,2005-08-01T10:45:21Z,2020-02-15T06:59:50Z +5116,188,2,10719,4.99,2005-08-01T19:00:28Z,2020-02-15T06:59:50Z +5117,188,2,10757,4.99,2005-08-01T20:22:44Z,2020-02-15T06:59:50Z +5118,188,2,11378,2.99,2005-08-02T18:16:52Z,2020-02-15T06:59:50Z +5119,188,1,13570,2.99,2005-08-20T05:04:57Z,2020-02-15T06:59:50Z +5120,188,1,13787,5.99,2005-08-20T12:15:23Z,2020-02-15T06:59:50Z +5121,188,1,14399,2.99,2005-08-21T10:33:23Z,2020-02-15T06:59:50Z +5122,188,2,14809,2.99,2005-08-22T01:00:42Z,2020-02-15T06:59:50Z +5123,188,2,15319,2.99,2005-08-22T20:17:17Z,2020-02-15T06:59:50Z +5124,188,2,15409,0.99,2005-08-22T23:26:32Z,2020-02-15T06:59:50Z +5125,188,2,15474,4.99,2005-08-23T01:39:10Z,2020-02-15T06:59:50Z +5126,188,1,14503,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5127,189,2,1117,5.99,2005-05-31T16:15:31Z,2020-02-15T06:59:50Z +5128,189,1,1541,0.99,2005-06-16T01:15:59Z,2020-02-15T06:59:50Z +5129,189,1,1834,0.99,2005-06-16T22:49:08Z,2020-02-15T06:59:50Z +5130,189,2,2905,1.99,2005-06-20T02:56:16Z,2020-02-15T06:59:50Z +5131,189,1,3108,6.99,2005-06-20T17:28:43Z,2020-02-15T06:59:50Z +5132,189,1,3346,2.99,2005-06-21T11:06:53Z,2020-02-15T06:59:50Z +5133,189,1,3763,0.99,2005-07-06T12:56:31Z,2020-02-15T06:59:50Z +5134,189,2,3813,4.99,2005-07-06T15:23:34Z,2020-02-15T06:59:50Z +5135,189,2,4203,0.99,2005-07-07T11:24:14Z,2020-02-15T06:59:50Z +5136,189,1,6193,5.99,2005-07-11T11:46:57Z,2020-02-15T06:59:50Z +5137,189,1,7469,4.99,2005-07-27T18:57:40Z,2020-02-15T06:59:50Z +5138,189,1,7675,4.99,2005-07-28T02:55:20Z,2020-02-15T06:59:50Z +5139,189,2,7790,2.99,2005-07-28T07:22:35Z,2020-02-15T06:59:50Z +5140,189,2,9171,5.99,2005-07-30T11:36:24Z,2020-02-15T06:59:50Z +5141,189,2,9386,0.99,2005-07-30T19:26:21Z,2020-02-15T06:59:50Z +5142,189,1,9506,4.99,2005-07-31T00:19:01Z,2020-02-15T06:59:50Z +5143,189,1,10247,9.99,2005-08-01T02:34:06Z,2020-02-15T06:59:50Z +5144,189,2,11059,6.99,2005-08-02T06:41:38Z,2020-02-15T06:59:50Z +5145,189,2,13601,6.99,2005-08-20T06:01:15Z,2020-02-15T06:59:50Z +5146,189,1,13766,3.99,2005-08-20T11:42:01Z,2020-02-15T06:59:50Z +5147,189,1,15773,1.99,2005-08-23T13:24:57Z,2020-02-15T06:59:50Z +5148,189,1,16008,5.99,2005-08-23T21:04:51Z,2020-02-15T06:59:50Z +5149,190,2,430,4.99,2005-05-27T16:22:10Z,2020-02-15T06:59:50Z +5150,190,1,693,2.99,2005-05-29T01:42:31Z,2020-02-15T06:59:50Z +5151,190,1,1319,2.99,2005-06-15T10:39:05Z,2020-02-15T06:59:50Z +5152,190,1,1347,2.99,2005-06-15T12:43:43Z,2020-02-15T06:59:50Z +5153,190,1,2057,4.99,2005-06-17T15:31:58Z,2020-02-15T06:59:50Z +5154,190,1,2568,3.99,2005-06-19T04:09:03Z,2020-02-15T06:59:50Z +5155,190,1,3386,4.99,2005-06-21T14:21:06Z,2020-02-15T06:59:50Z +5156,190,2,4005,5.99,2005-07-07T00:22:26Z,2020-02-15T06:59:50Z +5157,190,1,4140,2.99,2005-07-07T08:19:10Z,2020-02-15T06:59:50Z +5158,190,2,6867,3.99,2005-07-12T20:06:47Z,2020-02-15T06:59:50Z +5159,190,1,7175,4.99,2005-07-27T08:03:22Z,2020-02-15T06:59:50Z +5160,190,1,7386,5.99,2005-07-27T15:52:10Z,2020-02-15T06:59:50Z +5161,190,2,7404,2.99,2005-07-27T16:24:43Z,2020-02-15T06:59:50Z +5162,190,1,8498,0.99,2005-07-29T09:07:38Z,2020-02-15T06:59:50Z +5163,190,1,11082,5.99,2005-08-02T07:30:19Z,2020-02-15T06:59:50Z +5164,190,2,11158,6.99,2005-08-02T09:58:28Z,2020-02-15T06:59:50Z +5165,190,2,11276,4.99,2005-08-02T14:28:46Z,2020-02-15T06:59:50Z +5166,190,2,11312,6.99,2005-08-02T15:56:51Z,2020-02-15T06:59:50Z +5167,190,2,11750,0.99,2005-08-17T09:07:00Z,2020-02-15T06:59:50Z +5168,190,2,11950,9.99,2005-08-17T17:13:16Z,2020-02-15T06:59:50Z +5169,190,1,12270,2.99,2005-08-18T04:32:05Z,2020-02-15T06:59:50Z +5170,190,2,12381,0.99,2005-08-18T08:31:43Z,2020-02-15T06:59:50Z +5171,190,2,14065,0.99,2005-08-20T22:40:47Z,2020-02-15T06:59:50Z +5172,190,2,14141,4.99,2005-08-21T02:07:22Z,2020-02-15T06:59:50Z +5173,190,2,14166,2.99,2005-08-21T02:59:31Z,2020-02-15T06:59:50Z +5174,190,2,14650,0.99,2005-08-21T19:24:51Z,2020-02-15T06:59:50Z +5175,190,2,15167,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5176,191,1,1134,2.99,2005-05-31T19:14:15Z,2020-02-15T06:59:50Z +5177,191,2,1152,4.99,2005-05-31T21:32:17Z,2020-02-15T06:59:50Z +5178,191,2,1173,2.99,2005-06-14T23:54:46Z,2020-02-15T06:59:50Z +5179,191,1,1278,0.99,2005-06-15T08:09:12Z,2020-02-15T06:59:50Z +5180,191,1,1677,2.99,2005-06-16T11:07:11Z,2020-02-15T06:59:50Z +5181,191,2,1870,2.99,2005-06-17T02:24:36Z,2020-02-15T06:59:50Z +5182,191,1,2051,4.99,2005-06-17T15:10:16Z,2020-02-15T06:59:50Z +5183,191,2,2555,2.99,2005-06-19T03:07:02Z,2020-02-15T06:59:50Z +5184,191,1,5338,2.99,2005-07-09T17:07:07Z,2020-02-15T06:59:50Z +5185,191,2,5397,5.99,2005-07-09T19:43:51Z,2020-02-15T06:59:50Z +5186,191,1,5924,5.99,2005-07-10T21:41:23Z,2020-02-15T06:59:50Z +5187,191,1,7150,6.99,2005-07-27T07:11:14Z,2020-02-15T06:59:50Z +5188,191,1,7450,3.99,2005-07-27T18:18:35Z,2020-02-15T06:59:50Z +5189,191,1,7520,2.99,2005-07-27T21:02:02Z,2020-02-15T06:59:50Z +5190,191,2,8583,0.99,2005-07-29T12:04:50Z,2020-02-15T06:59:50Z +5191,191,1,9297,4.99,2005-07-30T16:26:29Z,2020-02-15T06:59:50Z +5192,191,1,9964,4.99,2005-07-31T16:17:39Z,2020-02-15T06:59:50Z +5193,191,2,10532,2.99,2005-08-01T12:06:35Z,2020-02-15T06:59:50Z +5194,191,2,15375,4.99,2005-08-22T22:12:02Z,2020-02-15T06:59:50Z +5195,191,1,14361,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5196,192,1,895,1.99,2005-05-30T08:50:43Z,2020-02-15T06:59:50Z +5197,192,1,2760,3.99,2005-06-19T17:16:33Z,2020-02-15T06:59:50Z +5198,192,1,3902,2.99,2005-07-06T19:25:18Z,2020-02-15T06:59:50Z +5199,192,1,4469,4.99,2005-07-08T00:18:32Z,2020-02-15T06:59:50Z +5200,192,1,5400,2.99,2005-07-09T19:56:40Z,2020-02-15T06:59:50Z +5201,192,2,6223,0.99,2005-07-11T13:27:09Z,2020-02-15T06:59:50Z +5202,192,2,6691,0.99,2005-07-12T12:26:38Z,2020-02-15T06:59:50Z +5203,192,2,7147,2.99,2005-07-27T07:02:34Z,2020-02-15T06:59:50Z +5204,192,2,8051,0.99,2005-07-28T16:56:16Z,2020-02-15T06:59:50Z +5205,192,2,8292,7.99,2005-07-29T02:29:36Z,2020-02-15T06:59:50Z +5206,192,1,9462,7.99,2005-07-30T22:30:44Z,2020-02-15T06:59:50Z +5207,192,1,9831,2.99,2005-07-31T11:59:32Z,2020-02-15T06:59:50Z +5208,192,2,10238,0.99,2005-08-01T02:08:05Z,2020-02-15T06:59:50Z +5209,192,1,10843,7.99,2005-08-01T23:43:03Z,2020-02-15T06:59:50Z +5210,192,1,11385,4.99,2005-08-02T18:23:11Z,2020-02-15T06:59:50Z +5211,192,1,11815,4.99,2005-08-17T12:13:26Z,2020-02-15T06:59:50Z +5212,192,1,13125,5.99,2005-08-19T11:57:49Z,2020-02-15T06:59:50Z +5213,192,2,14146,4.99,2005-08-21T02:13:31Z,2020-02-15T06:59:50Z +5214,192,2,14238,7.99,2005-08-21T05:16:40Z,2020-02-15T06:59:50Z +5215,192,1,14404,4.99,2005-08-21T10:43:04Z,2020-02-15T06:59:50Z +5216,192,2,14692,6.99,2005-08-21T20:43:21Z,2020-02-15T06:59:50Z +5217,192,2,15855,2.99,2005-08-23T15:59:01Z,2020-02-15T06:59:50Z +5218,192,1,11611,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5219,193,2,273,2.99,2005-05-26T16:29:36Z,2020-02-15T06:59:50Z +5220,193,2,464,0.99,2005-05-27T20:42:44Z,2020-02-15T06:59:50Z +5221,193,1,1325,4.99,2005-06-15T11:03:24Z,2020-02-15T06:59:50Z +5222,193,2,2377,6.99,2005-06-18T14:56:23Z,2020-02-15T06:59:50Z +5223,193,2,2841,6.99,2005-06-19T22:21:06Z,2020-02-15T06:59:50Z +5224,193,2,2846,4.99,2005-06-19T22:52:14Z,2020-02-15T06:59:50Z +5225,193,2,2880,2.99,2005-06-20T01:24:54Z,2020-02-15T06:59:50Z +5226,193,1,3297,8.99,2005-06-21T07:08:19Z,2020-02-15T06:59:50Z +5227,193,1,4892,6.99,2005-07-08T20:06:25Z,2020-02-15T06:59:50Z +5228,193,1,8211,2.99,2005-07-28T23:34:22Z,2020-02-15T06:59:50Z +5229,193,1,8379,4.99,2005-07-29T05:29:40Z,2020-02-15T06:59:50Z +5230,193,1,8431,4.99,2005-07-29T07:12:48Z,2020-02-15T06:59:50Z +5231,193,1,9079,2.99,2005-07-30T08:02:00Z,2020-02-15T06:59:50Z +5232,193,1,9575,4.99,2005-07-31T02:51:53Z,2020-02-15T06:59:50Z +5233,193,2,10462,2.99,2005-08-01T09:38:28Z,2020-02-15T06:59:50Z +5234,193,2,12384,0.99,2005-08-18T08:36:58Z,2020-02-15T06:59:50Z +5235,193,2,12658,4.99,2005-08-18T19:05:42Z,2020-02-15T06:59:50Z +5236,193,1,13529,2.99,2005-08-20T03:07:47Z,2020-02-15T06:59:50Z +5237,193,1,13608,0.99,2005-08-20T06:10:44Z,2020-02-15T06:59:50Z +5238,193,1,14679,2.99,2005-08-21T20:14:58Z,2020-02-15T06:59:50Z +5239,193,1,14927,4.99,2005-08-22T05:31:53Z,2020-02-15T06:59:50Z +5240,193,2,15164,4.99,2005-08-22T14:47:53Z,2020-02-15T06:59:50Z +5241,193,2,15344,6.99,2005-08-22T21:01:48Z,2020-02-15T06:59:50Z +5242,193,2,15495,5.99,2005-08-23T02:26:10Z,2020-02-15T06:59:50Z +5243,193,2,15729,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5244,194,2,334,4.99,2005-05-27T03:03:07Z,2020-02-15T06:59:50Z +5245,194,2,677,7.99,2005-05-28T23:00:08Z,2020-02-15T06:59:50Z +5246,194,1,1430,0.99,2005-06-15T18:24:55Z,2020-02-15T06:59:50Z +5247,194,1,2245,7.99,2005-06-18T04:52:59Z,2020-02-15T06:59:50Z +5248,194,1,2347,2.99,2005-06-18T12:12:29Z,2020-02-15T06:59:50Z +5249,194,1,2463,3.99,2005-06-18T20:01:43Z,2020-02-15T06:59:50Z +5250,194,1,2807,3.99,2005-06-19T19:32:53Z,2020-02-15T06:59:50Z +5251,194,2,4231,7.99,2005-07-07T12:48:19Z,2020-02-15T06:59:50Z +5252,194,2,5146,2.99,2005-07-09T08:14:58Z,2020-02-15T06:59:50Z +5253,194,1,5291,2.99,2005-07-09T15:15:02Z,2020-02-15T06:59:50Z +5254,194,2,5894,3.99,2005-07-10T20:09:34Z,2020-02-15T06:59:50Z +5255,194,1,9064,7.99,2005-07-30T07:24:55Z,2020-02-15T06:59:50Z +5256,194,2,11475,5.99,2005-08-02T21:55:09Z,2020-02-15T06:59:50Z +5257,194,2,12851,3.99,2005-08-19T02:12:12Z,2020-02-15T06:59:50Z +5258,194,1,13515,0.99,2005-08-20T02:29:47Z,2020-02-15T06:59:50Z +5259,194,2,13616,7.99,2005-08-20T06:30:33Z,2020-02-15T06:59:50Z +5260,194,1,14440,4.99,2005-08-21T11:59:04Z,2020-02-15T06:59:50Z +5261,194,2,15937,4.99,2005-08-23T18:43:22Z,2020-02-15T06:59:50Z +5262,195,1,4234,6.99,2005-07-07T13:01:35Z,2020-02-15T06:59:50Z +5263,195,1,4315,2.99,2005-07-07T17:40:26Z,2020-02-15T06:59:50Z +5264,195,1,5228,4.99,2005-07-09T12:26:01Z,2020-02-15T06:59:50Z +5265,195,1,5536,0.99,2005-07-10T02:29:42Z,2020-02-15T06:59:50Z +5266,195,2,6175,4.99,2005-07-11T10:44:37Z,2020-02-15T06:59:50Z +5267,195,1,7349,2.99,2005-07-27T14:33:00Z,2020-02-15T06:59:50Z +5268,195,2,8280,4.99,2005-07-29T01:45:51Z,2020-02-15T06:59:50Z +5269,195,2,8479,0.99,2005-07-29T08:42:04Z,2020-02-15T06:59:50Z +5270,195,2,9188,6.99,2005-07-30T12:19:54Z,2020-02-15T06:59:50Z +5271,195,1,9870,5.99,2005-07-31T13:22:51Z,2020-02-15T06:59:50Z +5272,195,1,9994,4.99,2005-07-31T17:30:31Z,2020-02-15T06:59:50Z +5273,195,2,10911,4.99,2005-08-02T01:58:36Z,2020-02-15T06:59:50Z +5274,195,1,11201,7.99,2005-08-02T11:49:16Z,2020-02-15T06:59:50Z +5275,195,2,11787,2.99,2005-08-17T10:59:00Z,2020-02-15T06:59:50Z +5276,195,2,12099,0.99,2005-08-17T22:38:54Z,2020-02-15T06:59:50Z +5277,195,2,12941,0.99,2005-08-19T05:39:26Z,2020-02-15T06:59:50Z +5278,195,2,13741,0.99,2005-08-20T10:48:47Z,2020-02-15T06:59:50Z +5279,195,2,14751,7.99,2005-08-21T23:11:23Z,2020-02-15T06:59:50Z +5280,195,2,16040,11.99,2005-08-23T22:19:33Z,2020-02-15T06:59:50Z +5281,196,2,106,11.99,2005-05-25T18:18:19Z,2020-02-15T06:59:50Z +5282,196,2,178,5.99,2005-05-26T04:21:46Z,2020-02-15T06:59:50Z +5283,196,2,491,2.99,2005-05-28T00:13:35Z,2020-02-15T06:59:50Z +5284,196,1,1053,1.99,2005-05-31T07:12:44Z,2020-02-15T06:59:50Z +5285,196,1,1182,5.99,2005-06-15T00:45:21Z,2020-02-15T06:59:50Z +5286,196,1,1348,2.99,2005-06-15T12:45:30Z,2020-02-15T06:59:50Z +5287,196,2,1600,0.99,2005-06-16T06:04:12Z,2020-02-15T06:59:50Z +5288,196,1,2681,0.99,2005-06-19T12:15:27Z,2020-02-15T06:59:50Z +5289,196,2,2912,4.99,2005-06-20T03:32:45Z,2020-02-15T06:59:50Z +5290,196,1,3104,4.99,2005-06-20T17:06:46Z,2020-02-15T06:59:50Z +5291,196,2,3271,5.99,2005-06-21T05:16:10Z,2020-02-15T06:59:50Z +5292,196,2,3342,4.99,2005-06-21T10:46:36Z,2020-02-15T06:59:50Z +5293,196,1,4879,2.99,2005-07-08T19:34:55Z,2020-02-15T06:59:50Z +5294,196,2,4999,4.99,2005-07-09T01:12:57Z,2020-02-15T06:59:50Z +5295,196,2,5143,4.99,2005-07-09T08:07:07Z,2020-02-15T06:59:50Z +5296,196,2,5353,3.99,2005-07-09T18:04:29Z,2020-02-15T06:59:50Z +5297,196,2,5768,4.99,2005-07-10T13:15:26Z,2020-02-15T06:59:50Z +5298,196,2,6857,4.99,2005-07-12T19:53:30Z,2020-02-15T06:59:50Z +5299,196,2,7666,3.99,2005-07-28T02:35:12Z,2020-02-15T06:59:50Z +5300,196,2,8266,0.99,2005-07-29T01:20:16Z,2020-02-15T06:59:50Z +5301,196,2,8472,1.99,2005-07-29T08:36:22Z,2020-02-15T06:59:50Z +5302,196,2,8700,0.99,2005-07-29T16:56:01Z,2020-02-15T06:59:50Z +5303,196,1,9346,5.99,2005-07-30T18:13:52Z,2020-02-15T06:59:50Z +5304,196,1,9721,6.99,2005-07-31T08:28:46Z,2020-02-15T06:59:50Z +5305,196,1,9804,4.99,2005-07-31T11:07:39Z,2020-02-15T06:59:50Z +5306,196,2,10122,10.99,2005-07-31T21:29:28Z,2020-02-15T06:59:50Z +5307,196,1,10191,4.99,2005-08-01T00:28:38Z,2020-02-15T06:59:50Z +5308,196,1,11104,2.99,2005-08-02T08:09:58Z,2020-02-15T06:59:50Z +5309,196,2,12430,0.99,2005-08-18T10:32:41Z,2020-02-15T06:59:50Z +5310,196,2,12684,0.99,2005-08-18T19:51:27Z,2020-02-15T06:59:50Z +5311,196,2,12836,0.99,2005-08-19T01:48:33Z,2020-02-15T06:59:50Z +5312,196,1,13799,8.99,2005-08-20T12:36:42Z,2020-02-15T06:59:50Z +5313,196,2,14410,5.99,2005-08-21T10:54:49Z,2020-02-15T06:59:50Z +5314,196,1,14698,5.99,2005-08-21T20:49:58Z,2020-02-15T06:59:50Z +5315,196,2,15980,0.99,2005-08-23T20:10:13Z,2020-02-15T06:59:50Z +5316,197,2,94,2.99,2005-05-25T16:03:42Z,2020-02-15T06:59:50Z +5317,197,1,215,0.99,2005-05-26T09:02:47Z,2020-02-15T06:59:50Z +5318,197,1,391,2.99,2005-05-27T11:03:55Z,2020-02-15T06:59:50Z +5319,197,2,649,1.99,2005-05-28T19:35:45Z,2020-02-15T06:59:50Z +5320,197,1,683,2.99,2005-05-29T00:09:48Z,2020-02-15T06:59:50Z +5321,197,2,730,3.99,2005-05-29T07:00:59Z,2020-02-15T06:59:50Z +5322,197,1,903,3.99,2005-05-30T10:11:29Z,2020-02-15T06:59:50Z +5323,197,1,918,0.99,2005-05-30T11:32:24Z,2020-02-15T06:59:50Z +5324,197,2,1175,2.99,2005-06-15T00:15:15Z,2020-02-15T06:59:50Z +5325,197,1,1363,0.99,2005-06-15T14:05:11Z,2020-02-15T06:59:50Z +5326,197,1,1503,2.99,2005-06-15T22:07:09Z,2020-02-15T06:59:50Z +5327,197,2,1605,8.99,2005-06-16T06:17:55Z,2020-02-15T06:59:50Z +5328,197,2,1919,4.99,2005-06-17T05:40:52Z,2020-02-15T06:59:50Z +5329,197,1,2090,2.99,2005-06-17T18:06:14Z,2020-02-15T06:59:50Z +5330,197,1,2750,4.99,2005-06-19T16:37:24Z,2020-02-15T06:59:50Z +5331,197,2,2781,2.99,2005-06-19T18:24:42Z,2020-02-15T06:59:50Z +5332,197,1,4486,8.99,2005-07-08T01:09:09Z,2020-02-15T06:59:50Z +5333,197,2,4739,4.99,2005-07-08T13:25:57Z,2020-02-15T06:59:50Z +5334,197,2,5182,6.99,2005-07-09T10:08:10Z,2020-02-15T06:59:50Z +5335,197,2,5344,0.99,2005-07-09T17:27:05Z,2020-02-15T06:59:50Z +5336,197,1,8165,2.99,2005-07-28T21:23:06Z,2020-02-15T06:59:50Z +5337,197,2,9378,4.99,2005-07-30T19:12:54Z,2020-02-15T06:59:50Z +5338,197,1,9476,0.99,2005-07-30T23:06:40Z,2020-02-15T06:59:50Z +5339,197,2,9585,4.99,2005-07-31T03:05:55Z,2020-02-15T06:59:50Z +5340,197,2,10460,3.99,2005-08-01T09:31:00Z,2020-02-15T06:59:50Z +5341,197,2,10666,0.99,2005-08-01T16:56:36Z,2020-02-15T06:59:50Z +5342,197,2,10739,4.99,2005-08-01T19:46:11Z,2020-02-15T06:59:50Z +5343,197,1,10743,2.99,2005-08-01T19:55:09Z,2020-02-15T06:59:50Z +5344,197,1,11018,4.99,2005-08-02T05:27:53Z,2020-02-15T06:59:50Z +5345,197,1,11215,4.99,2005-08-02T12:20:42Z,2020-02-15T06:59:50Z +5346,197,1,11311,4.99,2005-08-02T15:53:48Z,2020-02-15T06:59:50Z +5347,197,1,11478,2.99,2005-08-02T22:09:05Z,2020-02-15T06:59:50Z +5348,197,1,11643,1.99,2005-08-17T04:49:35Z,2020-02-15T06:59:50Z +5349,197,1,12799,0.99,2005-08-19T00:27:01Z,2020-02-15T06:59:50Z +5350,197,2,13913,3.99,2005-08-20T16:37:35Z,2020-02-15T06:59:50Z +5351,197,1,14069,9.99,2005-08-20T22:51:25Z,2020-02-15T06:59:50Z +5352,197,2,14951,4.99,2005-08-22T06:19:37Z,2020-02-15T06:59:50Z +5353,197,1,15078,2.99,2005-08-22T11:09:31Z,2020-02-15T06:59:50Z +5354,197,2,15233,0.99,2005-08-22T17:41:53Z,2020-02-15T06:59:50Z +5355,197,1,15540,8.99,2005-08-23T04:12:52Z,2020-02-15T06:59:50Z +5356,198,1,357,0.99,2005-05-27T06:37:15Z,2020-02-15T06:59:50Z +5357,198,1,582,4.99,2005-05-28T11:33:46Z,2020-02-15T06:59:50Z +5358,198,2,639,2.99,2005-05-28T18:25:02Z,2020-02-15T06:59:50Z +5359,198,1,932,2.99,2005-05-30T12:55:36Z,2020-02-15T06:59:50Z +5360,198,2,1132,4.99,2005-05-31T18:44:53Z,2020-02-15T06:59:50Z +5361,198,2,2185,0.99,2005-06-18T01:12:22Z,2020-02-15T06:59:50Z +5362,198,2,3770,2.99,2005-07-06T13:14:28Z,2020-02-15T06:59:50Z +5363,198,2,4588,2.99,2005-07-08T06:18:01Z,2020-02-15T06:59:50Z +5364,198,2,4750,0.99,2005-07-08T14:07:03Z,2020-02-15T06:59:50Z +5365,198,2,5794,4.99,2005-07-10T14:34:53Z,2020-02-15T06:59:50Z +5366,198,2,6567,4.99,2005-07-12T05:43:09Z,2020-02-15T06:59:50Z +5367,198,1,6819,4.99,2005-07-12T18:21:01Z,2020-02-15T06:59:50Z +5368,198,2,6889,4.99,2005-07-12T21:01:22Z,2020-02-15T06:59:50Z +5369,198,1,7287,0.99,2005-07-27T12:24:12Z,2020-02-15T06:59:50Z +5370,198,1,7441,5.99,2005-07-27T17:46:53Z,2020-02-15T06:59:50Z +5371,198,1,7583,2.99,2005-07-27T23:15:22Z,2020-02-15T06:59:50Z +5372,198,2,7622,0.99,2005-07-28T00:37:34Z,2020-02-15T06:59:50Z +5373,198,1,8145,5.99,2005-07-28T20:34:41Z,2020-02-15T06:59:50Z +5374,198,2,9389,0.99,2005-07-30T19:27:59Z,2020-02-15T06:59:50Z +5375,198,1,10112,4.99,2005-07-31T21:08:56Z,2020-02-15T06:59:50Z +5376,198,1,10147,2.99,2005-07-31T22:18:43Z,2020-02-15T06:59:50Z +5377,198,1,10679,0.99,2005-08-01T17:27:58Z,2020-02-15T06:59:50Z +5378,198,1,11351,3.99,2005-08-02T17:28:07Z,2020-02-15T06:59:50Z +5379,198,1,11594,6.99,2005-08-17T02:47:02Z,2020-02-15T06:59:50Z +5380,198,1,11756,2.99,2005-08-17T09:29:22Z,2020-02-15T06:59:50Z +5381,198,1,11836,4.99,2005-08-17T13:03:36Z,2020-02-15T06:59:50Z +5382,198,2,11949,2.99,2005-08-17T17:12:26Z,2020-02-15T06:59:50Z +5383,198,1,11957,1.99,2005-08-17T17:22:29Z,2020-02-15T06:59:50Z +5384,198,2,11985,2.99,2005-08-17T18:19:44Z,2020-02-15T06:59:50Z +5385,198,2,12594,4.99,2005-08-18T16:24:24Z,2020-02-15T06:59:50Z +5386,198,1,12862,5.99,2005-08-19T02:31:59Z,2020-02-15T06:59:50Z +5387,198,1,13768,5.99,2005-08-20T11:43:43Z,2020-02-15T06:59:50Z +5388,198,1,14214,5.99,2005-08-21T04:30:49Z,2020-02-15T06:59:50Z +5389,198,2,14380,2.99,2005-08-21T09:53:52Z,2020-02-15T06:59:50Z +5390,198,2,14990,4.99,2005-08-22T07:48:01Z,2020-02-15T06:59:50Z +5391,198,1,15256,6.99,2005-08-22T18:20:07Z,2020-02-15T06:59:50Z +5392,198,1,15433,4.99,2005-08-23T00:27:18Z,2020-02-15T06:59:50Z +5393,199,1,499,7.99,2005-05-28T01:05:07Z,2020-02-15T06:59:50Z +5394,199,1,1406,4.99,2005-06-15T16:44:00Z,2020-02-15T06:59:50Z +5395,199,1,1910,2.99,2005-06-17T05:11:27Z,2020-02-15T06:59:50Z +5396,199,1,3299,0.99,2005-06-21T07:23:34Z,2020-02-15T06:59:50Z +5397,199,1,4499,2.99,2005-07-08T02:08:48Z,2020-02-15T06:59:50Z +5398,199,2,4580,8.99,2005-07-08T06:04:23Z,2020-02-15T06:59:50Z +5399,199,1,4976,4.99,2005-07-09T00:03:30Z,2020-02-15T06:59:50Z +5400,199,2,5398,2.99,2005-07-09T19:44:58Z,2020-02-15T06:59:50Z +5401,199,2,5680,5.99,2005-07-10T08:47:36Z,2020-02-15T06:59:50Z +5402,199,2,6668,2.99,2005-07-12T11:37:45Z,2020-02-15T06:59:50Z +5403,199,2,6782,4.99,2005-07-12T16:23:25Z,2020-02-15T06:59:50Z +5404,199,1,7782,4.99,2005-07-28T07:13:40Z,2020-02-15T06:59:50Z +5405,199,1,8709,0.99,2005-07-29T17:25:54Z,2020-02-15T06:59:50Z +5406,199,1,9752,2.99,2005-07-31T09:22:02Z,2020-02-15T06:59:50Z +5407,199,2,9894,4.99,2005-07-31T14:07:44Z,2020-02-15T06:59:50Z +5408,199,1,9959,4.99,2005-07-31T16:04:22Z,2020-02-15T06:59:50Z +5409,199,1,10196,2.99,2005-08-01T00:34:51Z,2020-02-15T06:59:50Z +5410,199,2,10517,4.99,2005-08-01T11:41:57Z,2020-02-15T06:59:50Z +5411,199,1,10850,8.99,2005-08-01T23:53:45Z,2020-02-15T06:59:50Z +5412,199,1,11454,2.99,2005-08-02T21:04:39Z,2020-02-15T06:59:50Z +5413,199,1,12386,0.99,2005-08-18T08:45:57Z,2020-02-15T06:59:50Z +5414,199,2,14320,4.99,2005-08-21T08:04:40Z,2020-02-15T06:59:50Z +5415,199,2,15412,0.99,2005-08-22T23:37:11Z,2020-02-15T06:59:50Z +5416,199,2,15751,3.99,2005-08-23T12:41:07Z,2020-02-15T06:59:50Z +5417,199,2,13952,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5418,200,2,270,9.99,2005-05-26T16:20:56Z,2020-02-15T06:59:50Z +5419,200,2,1296,1.99,2005-06-15T09:23:59Z,2020-02-15T06:59:50Z +5420,200,2,1309,4.99,2005-06-15T10:10:49Z,2020-02-15T06:59:50Z +5421,200,2,1899,6.99,2005-06-17T04:29:15Z,2020-02-15T06:59:50Z +5422,200,1,2227,4.99,2005-06-18T03:43:23Z,2020-02-15T06:59:50Z +5423,200,2,2667,3.99,2005-06-19T11:28:46Z,2020-02-15T06:59:50Z +5424,200,2,2717,4.99,2005-06-19T14:46:10Z,2020-02-15T06:59:50Z +5425,200,1,3190,3.99,2005-06-20T23:27:15Z,2020-02-15T06:59:50Z +5426,200,1,3580,4.99,2005-07-06T03:48:44Z,2020-02-15T06:59:50Z +5427,200,1,5110,2.99,2005-07-09T06:57:25Z,2020-02-15T06:59:50Z +5428,200,1,6123,0.99,2005-07-11T08:02:27Z,2020-02-15T06:59:50Z +5429,200,2,6167,2.99,2005-07-11T10:21:21Z,2020-02-15T06:59:50Z +5430,200,1,6181,4.99,2005-07-11T11:10:11Z,2020-02-15T06:59:50Z +5431,200,1,6947,3.99,2005-07-26T23:42:03Z,2020-02-15T06:59:50Z +5432,200,1,7574,2.99,2005-07-27T22:53:00Z,2020-02-15T06:59:50Z +5433,200,2,8368,3.99,2005-07-29T05:15:41Z,2020-02-15T06:59:50Z +5434,200,2,8462,2.99,2005-07-29T08:15:42Z,2020-02-15T06:59:50Z +5435,200,1,9527,6.99,2005-07-31T01:02:24Z,2020-02-15T06:59:50Z +5436,200,1,10685,2.99,2005-08-01T17:49:38Z,2020-02-15T06:59:50Z +5437,200,1,11356,8.99,2005-08-02T17:42:40Z,2020-02-15T06:59:50Z +5438,200,1,13737,5.99,2005-08-20T10:41:50Z,2020-02-15T06:59:50Z +5439,200,1,14034,10.99,2005-08-20T21:31:52Z,2020-02-15T06:59:50Z +5440,200,2,14521,6.99,2005-08-21T15:01:32Z,2020-02-15T06:59:50Z +5441,200,2,15691,4.99,2005-08-23T09:53:54Z,2020-02-15T06:59:50Z +5442,200,2,15742,5.99,2005-08-23T12:11:37Z,2020-02-15T06:59:50Z +5443,200,1,15961,6.99,2005-08-23T19:35:42Z,2020-02-15T06:59:50Z +5444,200,2,11866,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5445,201,1,311,3.99,2005-05-26T22:51:37Z,2020-02-15T06:59:50Z +5446,201,1,670,6.99,2005-05-28T22:04:03Z,2020-02-15T06:59:50Z +5447,201,2,756,5.99,2005-05-29T10:28:45Z,2020-02-15T06:59:50Z +5448,201,1,2047,1.99,2005-06-17T14:40:58Z,2020-02-15T06:59:50Z +5449,201,1,2157,3.99,2005-06-17T23:30:52Z,2020-02-15T06:59:50Z +5450,201,2,2359,6.99,2005-06-18T13:04:42Z,2020-02-15T06:59:50Z +5451,201,1,3106,4.99,2005-06-20T17:18:06Z,2020-02-15T06:59:50Z +5452,201,1,3364,7.99,2005-06-21T12:37:46Z,2020-02-15T06:59:50Z +5453,201,2,3528,4.99,2005-07-06T01:13:27Z,2020-02-15T06:59:50Z +5454,201,2,3708,6.99,2005-07-06T10:23:27Z,2020-02-15T06:59:50Z +5455,201,1,7106,0.99,2005-07-27T05:21:24Z,2020-02-15T06:59:50Z +5456,201,2,7606,2.99,2005-07-28T00:02:15Z,2020-02-15T06:59:50Z +5457,201,2,9355,0.99,2005-07-30T18:35:25Z,2020-02-15T06:59:50Z +5458,201,2,10750,5.99,2005-08-01T20:06:00Z,2020-02-15T06:59:50Z +5459,201,2,10865,3.99,2005-08-02T00:22:46Z,2020-02-15T06:59:50Z +5460,201,1,10891,0.99,2005-08-02T01:09:55Z,2020-02-15T06:59:50Z +5461,201,2,11807,0.99,2005-08-17T11:51:15Z,2020-02-15T06:59:50Z +5462,201,2,13076,4.99,2005-08-19T10:10:26Z,2020-02-15T06:59:50Z +5463,201,2,13613,9.99,2005-08-20T06:23:53Z,2020-02-15T06:59:50Z +5464,201,2,13671,3.99,2005-08-20T08:27:03Z,2020-02-15T06:59:50Z +5465,201,2,13672,2.99,2005-08-20T08:27:27Z,2020-02-15T06:59:50Z +5466,201,2,14656,2.99,2005-08-21T19:39:28Z,2020-02-15T06:59:50Z +5467,201,1,14973,2.99,2005-08-22T06:59:28Z,2020-02-15T06:59:50Z +5468,201,1,15887,2.99,2005-08-23T16:54:09Z,2020-02-15T06:59:50Z +5469,201,2,15974,5.99,2005-08-23T20:06:04Z,2020-02-15T06:59:50Z +5470,202,1,1474,2.99,2005-06-15T20:55:42Z,2020-02-15T06:59:50Z +5471,202,1,1535,4.99,2005-06-16T00:52:04Z,2020-02-15T06:59:50Z +5472,202,1,3008,0.99,2005-06-20T10:23:25Z,2020-02-15T06:59:50Z +5473,202,2,3148,0.99,2005-06-20T20:27:18Z,2020-02-15T06:59:50Z +5474,202,1,3861,8.99,2005-07-06T17:24:49Z,2020-02-15T06:59:50Z +5475,202,2,4567,4.99,2005-07-08T05:20:04Z,2020-02-15T06:59:50Z +5476,202,2,5194,2.99,2005-07-09T10:31:34Z,2020-02-15T06:59:50Z +5477,202,1,5297,2.99,2005-07-09T15:32:29Z,2020-02-15T06:59:50Z +5478,202,2,5838,2.99,2005-07-10T17:04:56Z,2020-02-15T06:59:50Z +5479,202,1,7613,2.99,2005-07-28T00:13:58Z,2020-02-15T06:59:50Z +5480,202,1,8351,2.99,2005-07-29T04:50:53Z,2020-02-15T06:59:50Z +5481,202,1,8779,2.99,2005-07-29T20:15:00Z,2020-02-15T06:59:50Z +5482,202,1,8830,2.99,2005-07-29T22:34:35Z,2020-02-15T06:59:50Z +5483,202,2,8930,0.99,2005-07-30T02:28:38Z,2020-02-15T06:59:50Z +5484,202,2,9057,2.99,2005-07-30T07:14:18Z,2020-02-15T06:59:50Z +5485,202,2,9467,8.99,2005-07-30T22:45:34Z,2020-02-15T06:59:50Z +5486,202,2,9751,4.99,2005-07-31T09:20:50Z,2020-02-15T06:59:50Z +5487,202,1,10375,2.99,2005-08-01T06:26:22Z,2020-02-15T06:59:50Z +5488,202,1,11210,4.99,2005-08-02T12:15:54Z,2020-02-15T06:59:50Z +5489,202,2,11924,4.99,2005-08-17T16:22:05Z,2020-02-15T06:59:50Z +5490,202,2,12801,8.99,2005-08-19T00:27:19Z,2020-02-15T06:59:50Z +5491,202,1,13196,4.99,2005-08-19T14:40:32Z,2020-02-15T06:59:50Z +5492,202,1,13528,3.99,2005-08-20T03:03:31Z,2020-02-15T06:59:50Z +5493,202,1,14019,3.99,2005-08-20T20:59:15Z,2020-02-15T06:59:50Z +5494,202,1,15095,0.99,2005-08-22T11:41:35Z,2020-02-15T06:59:50Z +5495,202,2,15772,4.99,2005-08-23T13:22:56Z,2020-02-15T06:59:50Z +5496,203,1,314,0.99,2005-05-26T23:09:41Z,2020-02-15T06:59:50Z +5497,203,1,1217,4.99,2005-06-15T03:24:14Z,2020-02-15T06:59:50Z +5498,203,1,1715,2.99,2005-06-16T14:37:12Z,2020-02-15T06:59:50Z +5499,203,2,2939,7.99,2005-06-20T05:18:16Z,2020-02-15T06:59:50Z +5500,203,2,3406,2.99,2005-06-21T16:00:18Z,2020-02-15T06:59:50Z +5501,203,2,4136,2.99,2005-07-07T08:15:52Z,2020-02-15T06:59:50Z +5502,203,2,5579,5.99,2005-07-10T04:04:29Z,2020-02-15T06:59:50Z +5503,203,2,7787,6.99,2005-07-28T07:19:02Z,2020-02-15T06:59:50Z +5504,203,1,8039,0.99,2005-07-28T16:35:16Z,2020-02-15T06:59:50Z +5505,203,1,8463,4.99,2005-07-29T08:17:51Z,2020-02-15T06:59:50Z +5506,203,1,8792,7.99,2005-07-29T20:56:14Z,2020-02-15T06:59:50Z +5507,203,2,9015,10.99,2005-07-30T05:21:32Z,2020-02-15T06:59:50Z +5508,203,2,10700,3.99,2005-08-01T18:26:31Z,2020-02-15T06:59:50Z +5509,203,2,10805,2.99,2005-08-01T22:23:37Z,2020-02-15T06:59:50Z +5510,203,1,11712,2.99,2005-08-17T07:32:51Z,2020-02-15T06:59:50Z +5511,203,1,12519,0.99,2005-08-18T13:42:14Z,2020-02-15T06:59:50Z +5512,203,2,13841,4.99,2005-08-20T14:25:18Z,2020-02-15T06:59:50Z +5513,203,2,14505,5.99,2005-08-21T14:26:28Z,2020-02-15T06:59:50Z +5514,203,2,15798,2.99,2005-08-23T14:23:03Z,2020-02-15T06:59:50Z +5515,203,2,15991,2.99,2005-08-23T20:27:34Z,2020-02-15T06:59:50Z +5516,204,2,251,0.99,2005-05-26T14:35:40Z,2020-02-15T06:59:50Z +5517,204,2,399,4.99,2005-05-27T12:48:38Z,2020-02-15T06:59:50Z +5518,204,2,857,4.99,2005-05-30T02:01:23Z,2020-02-15T06:59:50Z +5519,204,1,1016,1.99,2005-05-31T02:49:43Z,2020-02-15T06:59:50Z +5520,204,1,1321,2.99,2005-06-15T10:49:17Z,2020-02-15T06:59:50Z +5521,204,1,1616,7.99,2005-06-16T07:04:52Z,2020-02-15T06:59:50Z +5522,204,1,1871,4.99,2005-06-17T02:25:12Z,2020-02-15T06:59:50Z +5523,204,2,1894,7.99,2005-06-17T04:18:48Z,2020-02-15T06:59:50Z +5524,204,2,2186,2.99,2005-06-18T01:15:27Z,2020-02-15T06:59:50Z +5525,204,2,2734,4.99,2005-06-19T15:36:27Z,2020-02-15T06:59:50Z +5526,204,1,4043,0.99,2005-07-07T03:09:50Z,2020-02-15T06:59:50Z +5527,204,1,4979,4.99,2005-07-09T00:24:34Z,2020-02-15T06:59:50Z +5528,204,2,5145,0.99,2005-07-09T08:13:25Z,2020-02-15T06:59:50Z +5529,204,1,5619,2.99,2005-07-10T05:29:33Z,2020-02-15T06:59:50Z +5530,204,2,6004,4.99,2005-07-11T01:34:25Z,2020-02-15T06:59:50Z +5531,204,2,6225,2.99,2005-07-11T13:45:14Z,2020-02-15T06:59:50Z +5532,204,2,6631,0.99,2005-07-12T09:31:43Z,2020-02-15T06:59:50Z +5533,204,1,6694,6.99,2005-07-12T12:39:23Z,2020-02-15T06:59:50Z +5534,204,2,6871,2.99,2005-07-12T20:13:49Z,2020-02-15T06:59:50Z +5535,204,1,7392,4.99,2005-07-27T16:01:05Z,2020-02-15T06:59:50Z +5536,204,2,9005,0.99,2005-07-30T05:04:58Z,2020-02-15T06:59:50Z +5537,204,1,9394,5.99,2005-07-30T20:06:24Z,2020-02-15T06:59:50Z +5538,204,2,9906,4.99,2005-07-31T14:38:12Z,2020-02-15T06:59:50Z +5539,204,2,10042,2.99,2005-07-31T19:01:25Z,2020-02-15T06:59:50Z +5540,204,2,10399,5.99,2005-08-01T07:13:39Z,2020-02-15T06:59:50Z +5541,204,1,11261,7.99,2005-08-02T13:54:26Z,2020-02-15T06:59:50Z +5542,204,2,11886,0.99,2005-08-17T14:58:51Z,2020-02-15T06:59:50Z +5543,204,1,12737,6.99,2005-08-18T22:11:37Z,2020-02-15T06:59:50Z +5544,204,1,13084,0.99,2005-08-19T10:27:25Z,2020-02-15T06:59:50Z +5545,204,1,13416,4.99,2005-08-19T22:48:48Z,2020-02-15T06:59:50Z +5546,204,2,13899,2.99,2005-08-20T16:05:11Z,2020-02-15T06:59:50Z +5547,204,2,14163,4.99,2005-08-21T02:56:52Z,2020-02-15T06:59:50Z +5548,204,1,14871,0.99,2005-08-22T03:23:24Z,2020-02-15T06:59:50Z +5549,204,1,15364,4.99,2005-08-22T21:41:41Z,2020-02-15T06:59:50Z +5550,204,2,15415,11.99,2005-08-22T23:48:56Z,2020-02-15T06:59:50Z +5551,205,1,1238,2.99,2005-06-15T04:49:08Z,2020-02-15T06:59:50Z +5552,205,1,1357,4.99,2005-06-15T13:26:23Z,2020-02-15T06:59:50Z +5553,205,1,1767,0.99,2005-06-16T18:01:36Z,2020-02-15T06:59:50Z +5554,205,2,2237,5.99,2005-06-18T04:17:44Z,2020-02-15T06:59:50Z +5555,205,1,3601,7.99,2005-07-06T05:20:25Z,2020-02-15T06:59:50Z +5556,205,2,4230,3.99,2005-07-07T12:46:47Z,2020-02-15T06:59:50Z +5557,205,2,4377,7.99,2005-07-07T20:28:57Z,2020-02-15T06:59:50Z +5558,205,1,4729,4.99,2005-07-08T12:59:40Z,2020-02-15T06:59:50Z +5559,205,1,7736,2.99,2005-07-28T05:12:04Z,2020-02-15T06:59:50Z +5560,205,2,7976,7.99,2005-07-28T14:13:24Z,2020-02-15T06:59:50Z +5561,205,2,8896,4.99,2005-07-30T00:51:21Z,2020-02-15T06:59:50Z +5562,205,2,10086,4.99,2005-07-31T20:14:08Z,2020-02-15T06:59:50Z +5563,205,1,13935,2.99,2005-08-20T17:20:49Z,2020-02-15T06:59:50Z +5564,205,1,14338,0.99,2005-08-21T08:36:03Z,2020-02-15T06:59:50Z +5565,205,2,14391,4.99,2005-08-21T10:16:27Z,2020-02-15T06:59:50Z +5566,205,1,14442,2.99,2005-08-21T12:00:21Z,2020-02-15T06:59:50Z +5567,205,2,14490,6.99,2005-08-21T13:54:15Z,2020-02-15T06:59:50Z +5568,205,2,15418,0.99,2005-08-22T23:54:14Z,2020-02-15T06:59:50Z +5569,206,2,1872,0.99,2005-06-17T02:27:03Z,2020-02-15T06:59:50Z +5570,206,2,2477,5.99,2005-06-18T20:58:46Z,2020-02-15T06:59:50Z +5571,206,2,3012,4.99,2005-06-20T10:43:13Z,2020-02-15T06:59:50Z +5572,206,1,3533,5.99,2005-07-06T01:26:44Z,2020-02-15T06:59:50Z +5573,206,2,3831,0.99,2005-07-06T16:06:35Z,2020-02-15T06:59:50Z +5574,206,1,3847,4.99,2005-07-06T16:44:41Z,2020-02-15T06:59:50Z +5575,206,2,4068,4.99,2005-07-07T04:34:38Z,2020-02-15T06:59:50Z +5576,206,2,4107,4.99,2005-07-07T06:36:32Z,2020-02-15T06:59:50Z +5577,206,2,4823,4.99,2005-07-08T17:28:54Z,2020-02-15T06:59:50Z +5578,206,1,6139,3.99,2005-07-11T08:39:33Z,2020-02-15T06:59:50Z +5579,206,1,6420,6.99,2005-07-11T23:38:49Z,2020-02-15T06:59:50Z +5580,206,1,7222,4.99,2005-07-27T09:38:43Z,2020-02-15T06:59:50Z +5581,206,2,7541,4.99,2005-07-27T21:40:05Z,2020-02-15T06:59:50Z +5582,206,1,8217,5.99,2005-07-28T23:44:13Z,2020-02-15T06:59:50Z +5583,206,1,8549,3.99,2005-07-29T11:12:13Z,2020-02-15T06:59:50Z +5584,206,2,9474,2.99,2005-07-30T23:05:44Z,2020-02-15T06:59:50Z +5585,206,2,10930,3.99,2005-08-02T02:38:07Z,2020-02-15T06:59:50Z +5586,206,1,11022,2.99,2005-08-02T05:35:03Z,2020-02-15T06:59:50Z +5587,206,2,11634,2.99,2005-08-17T04:31:49Z,2020-02-15T06:59:50Z +5588,206,1,13128,4.99,2005-08-19T12:04:16Z,2020-02-15T06:59:50Z +5589,206,2,13232,2.99,2005-08-19T16:13:32Z,2020-02-15T06:59:50Z +5590,206,2,13263,10.99,2005-08-19T17:26:55Z,2020-02-15T06:59:50Z +5591,206,2,13550,9.99,2005-08-20T03:58:51Z,2020-02-15T06:59:50Z +5592,206,2,13696,0.99,2005-08-20T09:16:15Z,2020-02-15T06:59:50Z +5593,206,2,14695,0.99,2005-08-21T20:46:47Z,2020-02-15T06:59:50Z +5594,206,2,15686,7.99,2005-08-23T09:42:21Z,2020-02-15T06:59:50Z +5595,206,1,15709,4.99,2005-08-23T10:36:00Z,2020-02-15T06:59:50Z +5596,207,1,39,0.99,2005-05-25T04:51:46Z,2020-02-15T06:59:50Z +5597,207,1,44,0.99,2005-05-25T05:53:23Z,2020-02-15T06:59:50Z +5598,207,1,659,0.99,2005-05-28T20:27:53Z,2020-02-15T06:59:50Z +5599,207,2,826,6.99,2005-05-29T21:56:15Z,2020-02-15T06:59:50Z +5600,207,2,896,3.99,2005-05-30T09:03:52Z,2020-02-15T06:59:50Z +5601,207,2,1144,3.99,2005-05-31T20:04:10Z,2020-02-15T06:59:50Z +5602,207,2,1945,3.99,2005-06-17T07:51:26Z,2020-02-15T06:59:50Z +5603,207,2,3584,2.99,2005-07-06T04:16:43Z,2020-02-15T06:59:50Z +5604,207,2,3687,9.99,2005-07-06T09:38:33Z,2020-02-15T06:59:50Z +5605,207,1,4018,2.99,2005-07-07T01:10:33Z,2020-02-15T06:59:50Z +5606,207,2,4713,5.99,2005-07-08T12:12:33Z,2020-02-15T06:59:50Z +5607,207,1,4816,0.99,2005-07-08T17:14:14Z,2020-02-15T06:59:50Z +5608,207,2,5007,0.99,2005-07-09T01:26:22Z,2020-02-15T06:59:50Z +5609,207,1,5258,0.99,2005-07-09T13:56:56Z,2020-02-15T06:59:50Z +5610,207,1,5259,4.99,2005-07-09T14:02:50Z,2020-02-15T06:59:50Z +5611,207,2,5939,0.99,2005-07-10T22:30:05Z,2020-02-15T06:59:50Z +5612,207,2,6465,5.99,2005-07-12T01:17:11Z,2020-02-15T06:59:50Z +5613,207,1,6537,0.99,2005-07-12T04:46:30Z,2020-02-15T06:59:50Z +5614,207,2,7306,5.99,2005-07-27T12:57:26Z,2020-02-15T06:59:50Z +5615,207,1,7540,5.99,2005-07-27T21:39:55Z,2020-02-15T06:59:50Z +5616,207,1,8800,5.99,2005-07-29T21:18:59Z,2020-02-15T06:59:50Z +5617,207,2,9652,2.99,2005-07-31T05:49:53Z,2020-02-15T06:59:50Z +5618,207,2,10234,3.99,2005-08-01T01:56:20Z,2020-02-15T06:59:50Z +5619,207,2,10300,0.99,2005-08-01T04:08:11Z,2020-02-15T06:59:50Z +5620,207,1,11112,2.99,2005-08-02T08:25:14Z,2020-02-15T06:59:50Z +5621,207,2,11260,0.99,2005-08-02T13:52:19Z,2020-02-15T06:59:50Z +5622,207,2,11286,5.99,2005-08-02T14:44:22Z,2020-02-15T06:59:50Z +5623,207,1,11724,6.99,2005-08-17T08:04:44Z,2020-02-15T06:59:50Z +5624,207,2,12108,6.99,2005-08-17T22:56:39Z,2020-02-15T06:59:50Z +5625,207,2,13655,2.99,2005-08-20T07:59:13Z,2020-02-15T06:59:50Z +5626,207,2,13809,8.99,2005-08-20T12:56:03Z,2020-02-15T06:59:50Z +5627,207,2,13912,9.99,2005-08-20T16:32:10Z,2020-02-15T06:59:50Z +5628,207,2,13954,3.99,2005-08-20T18:02:41Z,2020-02-15T06:59:50Z +5629,207,1,15625,1.99,2005-08-23T07:25:29Z,2020-02-15T06:59:50Z +5630,208,1,100,4.99,2005-05-25T16:50:28Z,2020-02-15T06:59:50Z +5631,208,1,1805,0.99,2005-06-16T20:36:00Z,2020-02-15T06:59:50Z +5632,208,1,1949,5.99,2005-06-17T08:19:22Z,2020-02-15T06:59:50Z +5633,208,2,2592,0.99,2005-06-19T05:36:54Z,2020-02-15T06:59:50Z +5634,208,1,2695,2.99,2005-06-19T13:25:53Z,2020-02-15T06:59:50Z +5635,208,2,2907,0.99,2005-06-20T03:15:09Z,2020-02-15T06:59:50Z +5636,208,2,3811,2.99,2005-07-06T15:20:37Z,2020-02-15T06:59:50Z +5637,208,1,4354,5.99,2005-07-07T19:21:02Z,2020-02-15T06:59:50Z +5638,208,2,4985,4.99,2005-07-09T00:36:02Z,2020-02-15T06:59:50Z +5639,208,1,5117,2.99,2005-07-09T07:11:22Z,2020-02-15T06:59:50Z +5640,208,2,5693,2.99,2005-07-10T09:35:43Z,2020-02-15T06:59:50Z +5641,208,2,6306,6.99,2005-07-11T18:04:26Z,2020-02-15T06:59:50Z +5642,208,1,6767,1.99,2005-07-12T15:46:55Z,2020-02-15T06:59:50Z +5643,208,1,7315,0.99,2005-07-27T13:14:56Z,2020-02-15T06:59:50Z +5644,208,1,7861,2.99,2005-07-28T10:02:01Z,2020-02-15T06:59:50Z +5645,208,2,7984,2.99,2005-07-28T14:27:51Z,2020-02-15T06:59:50Z +5646,208,1,8742,1.99,2005-07-29T18:56:12Z,2020-02-15T06:59:50Z +5647,208,2,9298,3.99,2005-07-30T16:27:53Z,2020-02-15T06:59:50Z +5648,208,1,9838,4.99,2005-07-31T12:18:49Z,2020-02-15T06:59:50Z +5649,208,2,10762,4.99,2005-08-01T20:28:39Z,2020-02-15T06:59:50Z +5650,208,2,10784,5.99,2005-08-01T21:24:28Z,2020-02-15T06:59:50Z +5651,208,2,11442,2.99,2005-08-02T20:26:19Z,2020-02-15T06:59:50Z +5652,208,2,11805,6.99,2005-08-17T11:48:47Z,2020-02-15T06:59:50Z +5653,208,2,11819,0.99,2005-08-17T12:25:17Z,2020-02-15T06:59:50Z +5654,208,1,13719,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5655,208,1,15717,0,2006-02-14T15:16:03Z,2020-02-15T06:59:50Z +5656,209,2,340,9.99,2005-05-27T03:55:25Z,2020-02-15T06:59:50Z +5657,209,1,471,0.99,2005-05-27T21:32:42Z,2020-02-15T06:59:50Z +5658,209,2,1143,2.99,2005-05-31T19:53:03Z,2020-02-15T06:59:50Z +5659,209,2,1201,4.99,2005-06-15T02:06:28Z,2020-02-15T06:59:50Z +5660,209,1,1657,4.99,2005-06-16T10:06:49Z,2020-02-15T06:59:50Z +5661,209,1,2650,4.99,2005-06-19T10:21:45Z,2020-02-15T06:59:50Z +5662,209,1,2796,4.99,2005-06-19T19:00:37Z,2020-02-15T06:59:50Z +5663,209,2,3504,2.99,2005-07-06T00:18:29Z,2020-02-15T06:59:50Z +5664,209,2,4071,5.99,2005-07-07T04:37:26Z,2020-02-15T06:59:50Z +5665,209,1,4309,5.99,2005-07-07T17:29:41Z,2020-02-15T06:59:50Z +5666,209,2,4810,4.99,2005-07-08T17:04:06Z,2020-02-15T06:59:50Z +5667,209,1,4907,4.99,2005-07-08T21:01:41Z,2020-02-15T06:59:50Z +5668,209,2,5170,3.99,2005-07-09T09:24:19Z,2020-02-15T06:59:50Z +5669,209,2,5219,5.99,2005-07-09T11:57:55Z,2020-02-15T06:59:50Z +5670,209,1,6210,0.99,2005-07-11T12:36:43Z,2020-02-15T06:59:50Z +5671,209,1,7116,6.99,2005-07-27T05:46:43Z,2020-02-15T06:59:50Z +5672,209,1,7269,3.99,2005-07-27T11:23:47Z,2020-02-15T06:59:50Z +5673,209,1,7505,4.99,2005-07-27T20:28:03Z,2020-02-15T06:59:50Z +5674,209,2,7752,5.99,2005-07-28T06:01:00Z,2020-02-15T06:59:50Z +5675,209,1,8067,4.99,2005-07-28T17:20:17Z,2020-02-15T06:59:50Z +5676,209,2,8759,8.99,2005-07-29T19:22:37Z,2020-02-15T06:59:51Z +5677,209,2,8816,2.99,2005-07-29T21:53:00Z,2020-02-15T06:59:51Z +5678,209,2,9054,6.99,2005-07-30T07:11:44Z,2020-02-15T06:59:51Z +5679,209,1,9923,0.99,2005-07-31T15:00:15Z,2020-02-15T06:59:51Z +5680,209,2,10554,2.99,2005-08-01T12:56:19Z,2020-02-15T06:59:51Z +5681,209,1,10646,4.99,2005-08-01T15:57:55Z,2020-02-15T06:59:51Z +5682,209,2,10811,6.99,2005-08-01T22:41:15Z,2020-02-15T06:59:51Z +5683,209,1,12025,0.99,2005-08-17T19:59:06Z,2020-02-15T06:59:51Z +5684,209,1,13796,8.99,2005-08-20T12:32:32Z,2020-02-15T06:59:51Z +5685,209,2,14631,6.99,2005-08-21T18:47:49Z,2020-02-15T06:59:51Z +5686,209,1,15254,2.99,2005-08-22T18:13:07Z,2020-02-15T06:59:51Z +5687,209,2,15510,9.99,2005-08-23T02:51:27Z,2020-02-15T06:59:51Z +5688,210,1,953,2.99,2005-05-30T16:34:02Z,2020-02-15T06:59:51Z +5689,210,2,1177,2.99,2005-06-15T00:33:04Z,2020-02-15T06:59:51Z +5690,210,2,2856,0.99,2005-06-19T23:13:04Z,2020-02-15T06:59:51Z +5691,210,2,3563,4.99,2005-07-06T02:57:01Z,2020-02-15T06:59:51Z +5692,210,2,3884,4.99,2005-07-06T18:41:33Z,2020-02-15T06:59:51Z +5693,210,2,4270,0.99,2005-07-07T14:38:41Z,2020-02-15T06:59:51Z +5694,210,1,4306,2.99,2005-07-07T17:12:32Z,2020-02-15T06:59:51Z +5695,210,1,4334,0.99,2005-07-07T18:32:04Z,2020-02-15T06:59:51Z +5696,210,2,4388,7.99,2005-07-07T20:58:03Z,2020-02-15T06:59:51Z +5697,210,1,4620,5.99,2005-07-08T08:01:44Z,2020-02-15T06:59:51Z +5698,210,1,4871,6.99,2005-07-08T19:19:52Z,2020-02-15T06:59:51Z +5699,210,1,4893,4.99,2005-07-08T20:19:55Z,2020-02-15T06:59:51Z +5700,210,1,4989,3.99,2005-07-09T00:46:56Z,2020-02-15T06:59:51Z +5701,210,2,5957,0.99,2005-07-10T23:24:02Z,2020-02-15T06:59:51Z +5702,210,2,6227,4.99,2005-07-11T13:56:46Z,2020-02-15T06:59:51Z +5703,210,1,6564,1.99,2005-07-12T05:34:44Z,2020-02-15T06:59:51Z +5704,210,1,7743,5.99,2005-07-28T05:36:13Z,2020-02-15T06:59:51Z +5705,210,2,7909,0.99,2005-07-28T11:38:08Z,2020-02-15T06:59:51Z +5706,210,2,8336,8.99,2005-07-29T04:20:42Z,2020-02-15T06:59:51Z +5707,210,2,8678,3.99,2005-07-29T16:04:00Z,2020-02-15T06:59:51Z +5708,210,2,8738,0.99,2005-07-29T18:32:47Z,2020-02-15T06:59:51Z +5709,210,2,10890,4.99,2005-08-02T00:58:46Z,2020-02-15T06:59:51Z +5710,210,2,12410,8.99,2005-08-18T09:45:33Z,2020-02-15T06:59:51Z +5711,210,1,12879,4.99,2005-08-19T03:22:55Z,2020-02-15T06:59:51Z +5712,210,2,12909,2.99,2005-08-19T04:20:25Z,2020-02-15T06:59:51Z +5713,210,2,12986,4.99,2005-08-19T07:09:36Z,2020-02-15T06:59:51Z +5714,210,1,14181,7.99,2005-08-21T03:16:30Z,2020-02-15T06:59:51Z +5715,210,2,14639,6.99,2005-08-21T19:01:39Z,2020-02-15T06:59:51Z +5716,210,2,14876,4.99,2005-08-22T03:39:29Z,2020-02-15T06:59:51Z +5717,210,2,15672,0.99,2005-08-23T09:09:18Z,2020-02-15T06:59:51Z +5718,210,2,15942,8.99,2005-08-23T18:48:40Z,2020-02-15T06:59:51Z +5719,211,1,238,4.99,2005-05-26T12:30:22Z,2020-02-15T06:59:51Z +5720,211,2,2812,8.99,2005-06-19T19:58:16Z,2020-02-15T06:59:51Z +5721,211,2,3437,6.99,2005-06-21T19:20:17Z,2020-02-15T06:59:51Z +5722,211,2,3937,8.99,2005-07-06T21:15:38Z,2020-02-15T06:59:51Z +5723,211,2,4060,2.99,2005-07-07T04:10:13Z,2020-02-15T06:59:51Z +5724,211,2,4441,5.99,2005-07-07T23:04:23Z,2020-02-15T06:59:51Z +5725,211,2,4479,2.99,2005-07-08T00:52:35Z,2020-02-15T06:59:51Z +5726,211,1,4857,2.99,2005-07-08T18:52:07Z,2020-02-15T06:59:51Z +5727,211,1,5668,5.99,2005-07-10T08:11:05Z,2020-02-15T06:59:51Z +5728,211,2,5699,3.99,2005-07-10T09:48:04Z,2020-02-15T06:59:51Z +5729,211,2,5785,4.99,2005-07-10T14:06:03Z,2020-02-15T06:59:51Z +5730,211,2,6438,0.99,2005-07-12T00:23:01Z,2020-02-15T06:59:51Z +5731,211,1,6628,4.99,2005-07-12T09:18:08Z,2020-02-15T06:59:51Z +5732,211,1,6722,1.99,2005-07-12T13:44:03Z,2020-02-15T06:59:51Z +5733,211,2,7484,0.99,2005-07-27T19:28:17Z,2020-02-15T06:59:51Z +5734,211,1,7975,2.99,2005-07-28T14:12:47Z,2020-02-15T06:59:51Z +5735,211,2,8961,6.99,2005-07-30T03:43:35Z,2020-02-15T06:59:51Z +5736,211,1,9111,3.99,2005-07-30T09:05:44Z,2020-02-15T06:59:51Z +5737,211,1,9953,0.99,2005-07-31T15:56:35Z,2020-02-15T06:59:51Z +5738,211,1,10445,2.99,2005-08-01T09:02:15Z,2020-02-15T06:59:51Z +5739,211,2,10928,4.99,2005-08-02T02:34:12Z,2020-02-15T06:59:51Z +5740,211,2,11076,8.99,2005-08-02T07:24:47Z,2020-02-15T06:59:51Z +5741,211,2,11963,3.99,2005-08-17T17:35:47Z,2020-02-15T06:59:51Z +5742,211,2,12311,0.99,2005-08-18T06:07:00Z,2020-02-15T06:59:51Z +5743,211,2,12565,4.99,2005-08-18T15:12:17Z,2020-02-15T06:59:51Z +5744,211,2,12570,5.99,2005-08-18T15:23:31Z,2020-02-15T06:59:51Z +5745,211,2,13942,2.99,2005-08-20T17:30:52Z,2020-02-15T06:59:51Z +5746,211,1,13979,2.99,2005-08-20T19:03:49Z,2020-02-15T06:59:51Z +5747,211,2,14782,0.99,2005-08-22T00:17:20Z,2020-02-15T06:59:51Z +5748,211,2,14812,1.99,2005-08-22T01:10:32Z,2020-02-15T06:59:51Z +5749,211,1,15404,7.99,2005-08-22T23:19:44Z,2020-02-15T06:59:51Z +5750,211,2,15538,6.99,2005-08-23T04:07:37Z,2020-02-15T06:59:51Z +5751,211,2,15670,5.99,2005-08-23T09:07:11Z,2020-02-15T06:59:51Z +5752,211,2,12746,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5753,212,1,1356,0.99,2005-06-15T13:17:01Z,2020-02-15T06:59:51Z +5754,212,2,1379,0.99,2005-06-15T15:05:10Z,2020-02-15T06:59:51Z +5755,212,1,1637,2.99,2005-06-16T08:29:58Z,2020-02-15T06:59:51Z +5756,212,2,2739,9.99,2005-06-19T15:58:38Z,2020-02-15T06:59:51Z +5757,212,2,4708,10.99,2005-07-08T11:59:19Z,2020-02-15T06:59:51Z +5758,212,2,4798,3.99,2005-07-08T16:45:16Z,2020-02-15T06:59:51Z +5759,212,2,4916,6.99,2005-07-08T21:32:17Z,2020-02-15T06:59:51Z +5760,212,1,5115,6.99,2005-07-09T07:07:18Z,2020-02-15T06:59:51Z +5761,212,2,7828,2.99,2005-07-28T08:40:46Z,2020-02-15T06:59:51Z +5762,212,2,8000,4.99,2005-07-28T15:10:25Z,2020-02-15T06:59:51Z +5763,212,1,8940,3.99,2005-07-30T02:57:26Z,2020-02-15T06:59:51Z +5764,212,2,10273,4.99,2005-08-01T03:14:47Z,2020-02-15T06:59:51Z +5765,212,2,10567,0.99,2005-08-01T13:16:01Z,2020-02-15T06:59:51Z +5766,212,1,12156,7.99,2005-08-18T00:27:33Z,2020-02-15T06:59:51Z +5767,212,2,12467,0.99,2005-08-18T11:40:09Z,2020-02-15T06:59:51Z +5768,212,2,12562,3.99,2005-08-18T15:00:03Z,2020-02-15T06:59:51Z +5769,212,1,14563,2.99,2005-08-21T16:23:53Z,2020-02-15T06:59:51Z +5770,212,2,14681,5.99,2005-08-21T20:25:13Z,2020-02-15T06:59:51Z +5771,212,1,15872,4.99,2005-08-23T16:27:24Z,2020-02-15T06:59:51Z +5772,212,2,15920,2.99,2005-08-23T18:05:10Z,2020-02-15T06:59:51Z +5773,213,2,385,0.99,2005-05-27T10:23:25Z,2020-02-15T06:59:51Z +5774,213,1,1489,0.99,2005-06-15T21:41:38Z,2020-02-15T06:59:51Z +5775,213,2,1936,4.99,2005-06-17T07:15:41Z,2020-02-15T06:59:51Z +5776,213,1,2322,5.99,2005-06-18T09:44:21Z,2020-02-15T06:59:51Z +5777,213,1,2509,0.99,2005-06-18T23:44:08Z,2020-02-15T06:59:51Z +5778,213,2,2569,6.99,2005-06-19T04:19:04Z,2020-02-15T06:59:51Z +5779,213,1,2889,4.99,2005-06-20T01:54:08Z,2020-02-15T06:59:51Z +5780,213,2,2946,4.99,2005-06-20T05:50:40Z,2020-02-15T06:59:51Z +5781,213,1,3252,2.99,2005-06-21T03:25:26Z,2020-02-15T06:59:51Z +5782,213,1,3313,2.99,2005-06-21T08:11:18Z,2020-02-15T06:59:51Z +5783,213,2,3989,4.99,2005-07-06T23:30:54Z,2020-02-15T06:59:51Z +5784,213,2,4236,4.99,2005-07-07T13:12:07Z,2020-02-15T06:59:51Z +5785,213,1,4655,8.99,2005-07-08T09:49:22Z,2020-02-15T06:59:51Z +5786,213,2,5159,4.99,2005-07-09T08:55:52Z,2020-02-15T06:59:51Z +5787,213,1,5431,0.99,2005-07-09T21:21:11Z,2020-02-15T06:59:51Z +5788,213,2,6725,2.99,2005-07-12T13:47:17Z,2020-02-15T06:59:51Z +5789,213,2,7528,0.99,2005-07-27T21:15:25Z,2020-02-15T06:59:51Z +5790,213,2,8444,2.99,2005-07-29T07:36:13Z,2020-02-15T06:59:51Z +5791,213,2,8542,4.99,2005-07-29T11:01:50Z,2020-02-15T06:59:51Z +5792,213,2,9150,6.99,2005-07-30T10:49:32Z,2020-02-15T06:59:51Z +5793,213,2,9340,2.99,2005-07-30T18:07:16Z,2020-02-15T06:59:51Z +5794,213,1,9477,4.99,2005-07-30T23:07:22Z,2020-02-15T06:59:51Z +5795,213,1,10449,2.99,2005-08-01T09:09:59Z,2020-02-15T06:59:51Z +5796,213,2,11778,3.99,2005-08-17T10:31:40Z,2020-02-15T06:59:51Z +5797,213,1,13354,4.99,2005-08-19T20:55:23Z,2020-02-15T06:59:51Z +5798,213,2,13426,0.99,2005-08-19T23:15:00Z,2020-02-15T06:59:51Z +5799,213,1,14744,6.99,2005-08-21T22:45:21Z,2020-02-15T06:59:51Z +5800,213,2,14374,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5801,214,1,242,1.99,2005-05-26T13:05:08Z,2020-02-15T06:59:51Z +5802,214,1,278,3.99,2005-05-26T17:40:58Z,2020-02-15T06:59:51Z +5803,214,1,1076,2.99,2005-05-31T10:14:31Z,2020-02-15T06:59:51Z +5804,214,2,1093,2.99,2005-05-31T12:32:26Z,2020-02-15T06:59:51Z +5805,214,2,1112,0.99,2005-05-31T15:51:39Z,2020-02-15T06:59:51Z +5806,214,2,1275,4.99,2005-06-15T07:55:43Z,2020-02-15T06:59:51Z +5807,214,2,2085,2.99,2005-06-17T17:30:56Z,2020-02-15T06:59:51Z +5808,214,2,2868,2.99,2005-06-20T00:08:58Z,2020-02-15T06:59:51Z +5809,214,2,4211,0.99,2005-07-07T11:50:41Z,2020-02-15T06:59:51Z +5810,214,1,4783,3.99,2005-07-08T16:09:24Z,2020-02-15T06:59:51Z +5811,214,2,4984,3.99,2005-07-09T00:35:31Z,2020-02-15T06:59:51Z +5812,214,2,5172,2.99,2005-07-09T09:31:27Z,2020-02-15T06:59:51Z +5813,214,1,6602,7.99,2005-07-12T07:50:24Z,2020-02-15T06:59:51Z +5814,214,2,7417,4.99,2005-07-27T16:58:33Z,2020-02-15T06:59:51Z +5815,214,2,7826,5.99,2005-07-28T08:35:51Z,2020-02-15T06:59:51Z +5816,214,1,8663,4.99,2005-07-29T15:33:18Z,2020-02-15T06:59:51Z +5817,214,1,10563,3.99,2005-08-01T13:06:03Z,2020-02-15T06:59:51Z +5818,214,2,10749,4.99,2005-08-01T20:02:01Z,2020-02-15T06:59:51Z +5819,214,2,11450,2.99,2005-08-02T20:45:54Z,2020-02-15T06:59:51Z +5820,214,2,11474,4.99,2005-08-02T21:53:08Z,2020-02-15T06:59:51Z +5821,214,2,12463,4.99,2005-08-18T11:31:34Z,2020-02-15T06:59:51Z +5822,214,2,13138,2.99,2005-08-19T12:30:01Z,2020-02-15T06:59:51Z +5823,214,2,13350,9.99,2005-08-19T20:44:00Z,2020-02-15T06:59:51Z +5824,214,1,13409,2.99,2005-08-19T22:36:26Z,2020-02-15T06:59:51Z +5825,214,1,13565,0.99,2005-08-20T04:38:52Z,2020-02-15T06:59:51Z +5826,214,1,13726,0.99,2005-08-20T10:08:40Z,2020-02-15T06:59:51Z +5827,214,1,13864,4.99,2005-08-20T14:59:55Z,2020-02-15T06:59:51Z +5828,214,2,14347,4.99,2005-08-21T08:42:31Z,2020-02-15T06:59:51Z +5829,214,1,14567,0.99,2005-08-21T16:27:25Z,2020-02-15T06:59:51Z +5830,214,2,15639,2.99,2005-08-23T08:03:25Z,2020-02-15T06:59:51Z +5831,214,2,15645,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5832,215,1,711,4.99,2005-05-29T03:49:03Z,2020-02-15T06:59:51Z +5833,215,2,1080,4.99,2005-05-31T10:55:26Z,2020-02-15T06:59:51Z +5834,215,2,1376,4.99,2005-06-15T14:59:06Z,2020-02-15T06:59:51Z +5835,215,2,1599,4.99,2005-06-16T06:03:33Z,2020-02-15T06:59:51Z +5836,215,2,1845,4.99,2005-06-16T23:56:11Z,2020-02-15T06:59:51Z +5837,215,2,2006,2.99,2005-06-17T11:47:03Z,2020-02-15T06:59:51Z +5838,215,2,2918,2.99,2005-06-20T04:09:04Z,2020-02-15T06:59:51Z +5839,215,1,3143,2.99,2005-06-20T20:01:52Z,2020-02-15T06:59:51Z +5840,215,2,4940,8.99,2005-07-08T22:36:06Z,2020-02-15T06:59:51Z +5841,215,1,5886,2.99,2005-07-10T19:36:25Z,2020-02-15T06:59:51Z +5842,215,2,5967,8.99,2005-07-11T00:02:19Z,2020-02-15T06:59:51Z +5843,215,1,7180,1.99,2005-07-27T08:14:34Z,2020-02-15T06:59:51Z +5844,215,2,9046,2.99,2005-07-30T06:46:55Z,2020-02-15T06:59:51Z +5845,215,1,9518,0.99,2005-07-31T00:43:26Z,2020-02-15T06:59:51Z +5846,215,2,9611,4.99,2005-07-31T03:54:43Z,2020-02-15T06:59:51Z +5847,215,1,11729,2.99,2005-08-17T08:14:41Z,2020-02-15T06:59:51Z +5848,215,2,12285,2.99,2005-08-18T04:56:43Z,2020-02-15T06:59:51Z +5849,215,1,12380,1.99,2005-08-18T08:27:28Z,2020-02-15T06:59:51Z +5850,215,2,13085,0.99,2005-08-19T10:28:22Z,2020-02-15T06:59:51Z +5851,215,2,14126,0.99,2005-08-21T01:32:17Z,2020-02-15T06:59:51Z +5852,215,2,14817,4.99,2005-08-22T01:17:16Z,2020-02-15T06:59:51Z +5853,215,1,15583,2.99,2005-08-23T05:47:55Z,2020-02-15T06:59:51Z +5854,215,2,15610,2.99,2005-08-23T06:56:15Z,2020-02-15T06:59:51Z +5855,215,2,15799,2.99,2005-08-23T14:23:23Z,2020-02-15T06:59:51Z +5856,215,1,15843,0.99,2005-08-23T15:37:31Z,2020-02-15T06:59:51Z +5857,215,2,15862,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5858,216,1,997,4.99,2005-05-31T00:08:25Z,2020-02-15T06:59:51Z +5859,216,2,1461,6.99,2005-06-15T20:32:08Z,2020-02-15T06:59:51Z +5860,216,1,1664,0.99,2005-06-16T10:15:20Z,2020-02-15T06:59:51Z +5861,216,1,1672,3.99,2005-06-16T10:37:34Z,2020-02-15T06:59:51Z +5862,216,2,2351,0.99,2005-06-18T12:27:57Z,2020-02-15T06:59:51Z +5863,216,1,3432,2.99,2005-06-21T19:02:03Z,2020-02-15T06:59:51Z +5864,216,2,4161,2.99,2005-07-07T09:15:11Z,2020-02-15T06:59:51Z +5865,216,1,6008,6.99,2005-07-11T01:51:29Z,2020-02-15T06:59:51Z +5866,216,2,6349,7.99,2005-07-11T20:25:05Z,2020-02-15T06:59:51Z +5867,216,1,8068,4.99,2005-07-28T17:22:28Z,2020-02-15T06:59:51Z +5868,216,2,8859,8.99,2005-07-29T23:44:43Z,2020-02-15T06:59:51Z +5869,216,1,9096,0.99,2005-07-30T08:39:23Z,2020-02-15T06:59:51Z +5870,216,1,10506,4.99,2005-08-01T11:16:05Z,2020-02-15T06:59:51Z +5871,216,1,11005,0.99,2005-08-02T05:05:23Z,2020-02-15T06:59:51Z +5872,216,2,11621,7.99,2005-08-17T04:13:45Z,2020-02-15T06:59:51Z +5873,216,2,13424,0.99,2005-08-19T23:10:09Z,2020-02-15T06:59:51Z +5874,216,2,14638,2.99,2005-08-21T19:01:36Z,2020-02-15T06:59:51Z +5875,216,2,14726,4.99,2005-08-21T22:08:52Z,2020-02-15T06:59:51Z +5876,216,1,15192,4.99,2005-08-22T16:06:23Z,2020-02-15T06:59:51Z +5877,216,2,15199,2.99,2005-08-22T16:17:49Z,2020-02-15T06:59:51Z +5878,216,2,15934,4.99,2005-08-23T18:40:41Z,2020-02-15T06:59:51Z +5879,216,1,12970,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5880,216,1,11676,0,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5881,217,2,828,2.99,2005-05-29T22:14:55Z,2020-02-15T06:59:51Z +5882,217,2,1141,8.99,2005-05-31T19:42:02Z,2020-02-15T06:59:51Z +5883,217,1,1322,2.99,2005-06-15T10:55:09Z,2020-02-15T06:59:51Z +5884,217,1,2076,6.99,2005-06-17T16:43:47Z,2020-02-15T06:59:51Z +5885,217,1,2842,4.99,2005-06-19T22:34:20Z,2020-02-15T06:59:51Z +5886,217,2,5576,2.99,2005-07-10T03:57:05Z,2020-02-15T06:59:51Z +5887,217,2,5762,3.99,2005-07-10T12:48:01Z,2020-02-15T06:59:51Z +5888,217,2,6570,4.99,2005-07-12T05:50:31Z,2020-02-15T06:59:51Z +5889,217,2,7104,2.99,2005-07-27T05:15:25Z,2020-02-15T06:59:51Z +5890,217,2,8332,4.99,2005-07-29T04:16:00Z,2020-02-15T06:59:51Z +5891,217,1,9159,0.99,2005-07-30T11:16:37Z,2020-02-15T06:59:51Z +5892,217,2,9317,2.99,2005-07-30T17:13:37Z,2020-02-15T06:59:51Z +5893,217,2,9632,6.99,2005-07-31T05:02:23Z,2020-02-15T06:59:51Z +5894,217,2,9745,2.99,2005-07-31T09:16:14Z,2020-02-15T06:59:51Z +5895,217,1,10581,5.99,2005-08-01T13:52:30Z,2020-02-15T06:59:51Z +5896,217,1,10836,6.99,2005-08-01T23:29:58Z,2020-02-15T06:59:51Z +5897,217,1,11347,2.99,2005-08-02T17:18:07Z,2020-02-15T06:59:51Z +5898,217,1,11649,2.99,2005-08-17T04:59:26Z,2020-02-15T06:59:51Z +5899,217,1,11958,4.99,2005-08-17T17:23:20Z,2020-02-15T06:59:51Z +5900,217,2,12210,4.99,2005-08-18T02:27:29Z,2020-02-15T06:59:51Z +5901,217,1,12871,4.99,2005-08-19T02:55:36Z,2020-02-15T06:59:51Z +5902,217,2,15116,0.99,2005-08-22T12:35:40Z,2020-02-15T06:59:51Z +5903,217,2,15277,2.99,2005-08-22T19:02:48Z,2020-02-15T06:59:51Z +5904,218,1,1459,2.99,2005-06-15T20:25:53Z,2020-02-15T06:59:51Z +5905,218,1,2262,0.99,2005-06-18T05:49:46Z,2020-02-15T06:59:51Z +5906,218,1,2267,0.99,2005-06-18T06:10:23Z,2020-02-15T06:59:51Z +5907,218,1,4898,6.99,2005-07-08T20:31:43Z,2020-02-15T06:59:51Z +5908,218,1,5226,0.99,2005-07-09T12:10:44Z,2020-02-15T06:59:51Z +5909,218,2,5737,0.99,2005-07-10T11:50:04Z,2020-02-15T06:59:51Z +5910,218,2,7090,4.99,2005-07-27T04:43:53Z,2020-02-15T06:59:51Z +5911,218,1,7236,8.99,2005-07-27T10:09:39Z,2020-02-15T06:59:51Z +5912,218,2,9018,6.99,2005-07-30T05:28:40Z,2020-02-15T06:59:51Z +5913,218,2,9902,6.99,2005-07-31T14:24:33Z,2020-02-15T06:59:51Z +5914,218,1,10114,0.99,2005-07-31T21:12:58Z,2020-02-15T06:59:51Z +5915,218,1,11654,2.99,2005-08-17T05:06:19Z,2020-02-15T06:59:51Z +5916,218,2,12481,2.99,2005-08-18T12:31:34Z,2020-02-15T06:59:51Z +5917,218,1,12974,0.99,2005-08-19T06:51:02Z,2020-02-15T06:59:51Z +5918,218,2,13708,5.99,2005-08-20T09:34:07Z,2020-02-15T06:59:51Z +5919,218,2,13947,5.99,2005-08-20T17:46:06Z,2020-02-15T06:59:51Z +5920,218,2,14848,4.99,2005-08-22T02:14:19Z,2020-02-15T06:59:51Z +5921,218,2,15575,0.99,2005-08-23T05:30:19Z,2020-02-15T06:59:51Z +5922,219,1,414,0.99,2005-05-27T14:48:20Z,2020-02-15T06:59:51Z +5923,219,2,2417,3.99,2005-06-18T17:12:01Z,2020-02-15T06:59:51Z +5924,219,2,2580,0.99,2005-06-19T04:44:30Z,2020-02-15T06:59:51Z +5925,219,2,4678,0.99,2005-07-08T10:30:40Z,2020-02-15T06:59:51Z +5926,219,2,4910,7.99,2005-07-08T21:13:56Z,2020-02-15T06:59:51Z +5927,219,2,5123,0.99,2005-07-09T07:20:30Z,2020-02-15T06:59:51Z +5928,219,2,5416,4.99,2005-07-09T20:33:50Z,2020-02-15T06:59:51Z +5929,219,2,5475,4.99,2005-07-09T23:31:38Z,2020-02-15T06:59:51Z +5930,219,2,5739,7.99,2005-07-10T11:51:50Z,2020-02-15T06:59:51Z +5931,219,2,6172,4.99,2005-07-11T10:32:09Z,2020-02-15T06:59:51Z +5932,219,1,6209,2.99,2005-07-11T12:36:05Z,2020-02-15T06:59:51Z +5933,219,2,6501,1.99,2005-07-12T03:11:55Z,2020-02-15T06:59:51Z +5934,219,2,7335,2.99,2005-07-27T14:06:50Z,2020-02-15T06:59:51Z +5935,219,1,7726,5.99,2005-07-28T04:52:19Z,2020-02-15T06:59:51Z +5936,219,1,8430,0.99,2005-07-29T07:12:17Z,2020-02-15T06:59:51Z +5937,219,2,8536,4.99,2005-07-29T10:37:23Z,2020-02-15T06:59:51Z +5938,219,1,8652,6.99,2005-07-29T15:02:54Z,2020-02-15T06:59:51Z +5939,219,1,9712,4.99,2005-07-31T08:13:11Z,2020-02-15T06:59:51Z +5940,219,1,11328,2.99,2005-08-02T16:42:38Z,2020-02-15T06:59:51Z +5941,219,2,11791,0.99,2005-08-17T11:01:11Z,2020-02-15T06:59:51Z +5942,219,1,13765,4.99,2005-08-20T11:39:00Z,2020-02-15T06:59:51Z +5943,219,2,14029,0.99,2005-08-20T21:23:11Z,2020-02-15T06:59:51Z +5944,219,1,14588,5.99,2005-08-21T17:25:53Z,2020-02-15T06:59:51Z +5945,219,1,14688,4.99,2005-08-21T20:32:37Z,2020-02-15T06:59:51Z +5946,219,1,15283,4.99,2005-08-22T19:16:04Z,2020-02-15T06:59:51Z +5947,219,1,11577,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +5948,220,2,409,0.99,2005-05-27T14:10:58Z,2020-02-15T06:59:51Z +5949,220,1,480,3.99,2005-05-27T22:47:39Z,2020-02-15T06:59:51Z +5950,220,1,1832,0.99,2005-06-16T22:35:20Z,2020-02-15T06:59:51Z +5951,220,2,4918,2.99,2005-07-08T21:37:31Z,2020-02-15T06:59:51Z +5952,220,2,5613,2.99,2005-07-10T05:15:43Z,2020-02-15T06:59:51Z +5953,220,2,5847,2.99,2005-07-10T17:27:42Z,2020-02-15T06:59:51Z +5954,220,2,5859,0.99,2005-07-10T18:02:02Z,2020-02-15T06:59:51Z +5955,220,2,6412,0.99,2005-07-11T23:19:21Z,2020-02-15T06:59:51Z +5956,220,2,6832,8.99,2005-07-12T18:51:41Z,2020-02-15T06:59:51Z +5957,220,2,7750,9.99,2005-07-28T05:55:30Z,2020-02-15T06:59:51Z +5958,220,1,8065,2.99,2005-07-28T17:15:48Z,2020-02-15T06:59:51Z +5959,220,1,8398,4.99,2005-07-29T06:12:40Z,2020-02-15T06:59:51Z +5960,220,2,9384,7.99,2005-07-30T19:25:35Z,2020-02-15T06:59:51Z +5961,220,2,9455,10.99,2005-07-30T22:20:29Z,2020-02-15T06:59:51Z +5962,220,1,10099,2.99,2005-07-31T20:47:14Z,2020-02-15T06:59:51Z +5963,220,2,10778,4.99,2005-08-01T21:11:39Z,2020-02-15T06:59:51Z +5964,220,1,10948,4.99,2005-08-02T03:23:23Z,2020-02-15T06:59:51Z +5965,220,1,11037,0.99,2005-08-02T05:58:12Z,2020-02-15T06:59:51Z +5966,220,1,11153,3.99,2005-08-02T09:54:19Z,2020-02-15T06:59:51Z +5967,220,1,11622,4.99,2005-08-17T04:15:46Z,2020-02-15T06:59:51Z +5968,220,2,11947,2.99,2005-08-17T17:08:13Z,2020-02-15T06:59:51Z +5969,220,1,12407,4.99,2005-08-18T09:39:26Z,2020-02-15T06:59:51Z +5970,220,1,12896,4.99,2005-08-19T03:52:44Z,2020-02-15T06:59:51Z +5971,220,2,13123,2.99,2005-08-19T11:55:13Z,2020-02-15T06:59:51Z +5972,220,1,13281,2.99,2005-08-19T18:07:47Z,2020-02-15T06:59:51Z +5973,220,2,14016,4.99,2005-08-20T20:52:03Z,2020-02-15T06:59:51Z +5974,220,2,15706,4.99,2005-08-23T10:32:52Z,2020-02-15T06:59:51Z +5975,221,2,226,4.99,2005-05-26T10:44:04Z,2020-02-15T06:59:51Z +5976,221,1,1369,0.99,2005-06-15T14:29:14Z,2020-02-15T06:59:51Z +5977,221,1,2331,2.99,2005-06-18T10:50:09Z,2020-02-15T06:59:51Z +5978,221,2,2473,2.99,2005-06-18T20:42:45Z,2020-02-15T06:59:51Z +5979,221,1,2660,10.99,2005-06-19T10:50:02Z,2020-02-15T06:59:51Z +5980,221,1,3200,5.99,2005-06-21T00:22:47Z,2020-02-15T06:59:51Z +5981,221,1,4293,4.99,2005-07-07T15:53:47Z,2020-02-15T06:59:51Z +5982,221,2,4649,4.99,2005-07-08T09:32:05Z,2020-02-15T06:59:51Z +5983,221,1,4693,6.99,2005-07-08T11:07:36Z,2020-02-15T06:59:51Z +5984,221,1,5058,5.99,2005-07-09T04:20:35Z,2020-02-15T06:59:51Z +5985,221,2,5920,5.99,2005-07-10T21:33:58Z,2020-02-15T06:59:51Z +5986,221,1,7101,2.99,2005-07-27T05:06:34Z,2020-02-15T06:59:51Z +5987,221,1,7129,0.99,2005-07-27T06:18:01Z,2020-02-15T06:59:51Z +5988,221,2,7531,8.99,2005-07-27T21:19:34Z,2020-02-15T06:59:51Z +5989,221,2,8486,0.99,2005-07-29T08:53:38Z,2020-02-15T06:59:51Z +5990,221,1,9320,6.99,2005-07-30T17:16:39Z,2020-02-15T06:59:51Z +5991,221,1,9453,7.99,2005-07-30T22:20:04Z,2020-02-15T06:59:51Z +5992,221,2,9853,0.99,2005-07-31T12:58:20Z,2020-02-15T06:59:51Z +5993,221,2,11680,4.99,2005-08-17T06:12:27Z,2020-02-15T06:59:51Z +5994,221,1,11693,4.99,2005-08-17T06:56:56Z,2020-02-15T06:59:51Z +5995,221,1,11802,2.99,2005-08-17T11:32:51Z,2020-02-15T06:59:51Z +5996,221,1,12324,0.99,2005-08-18T06:38:20Z,2020-02-15T06:59:51Z +5997,221,2,12620,3.99,2005-08-18T17:26:38Z,2020-02-15T06:59:51Z +5998,221,2,13434,2.99,2005-08-19T23:34:26Z,2020-02-15T06:59:51Z +5999,221,2,14322,5.99,2005-08-21T08:06:30Z,2020-02-15T06:59:51Z +6000,221,2,14371,0.99,2005-08-21T09:37:16Z,2020-02-15T06:59:51Z +6001,221,1,14419,7.99,2005-08-21T11:15:46Z,2020-02-15T06:59:51Z +6002,221,1,15125,8.99,2005-08-22T12:53:22Z,2020-02-15T06:59:51Z +6003,222,1,5,6.99,2005-05-24T23:05:21Z,2020-02-15T06:59:51Z +6004,222,1,134,4.99,2005-05-25T21:48:41Z,2020-02-15T06:59:51Z +6005,222,2,416,0.99,2005-05-27T15:02:10Z,2020-02-15T06:59:51Z +6006,222,2,809,3.99,2005-05-29T19:10:20Z,2020-02-15T06:59:51Z +6007,222,2,1006,2.99,2005-05-31T00:57:08Z,2020-02-15T06:59:51Z +6008,222,1,1368,8.99,2005-06-15T14:27:47Z,2020-02-15T06:59:51Z +6009,222,2,2603,6.99,2005-06-19T06:21:25Z,2020-02-15T06:59:51Z +6010,222,2,5209,8.99,2005-07-09T11:22:39Z,2020-02-15T06:59:51Z +6011,222,1,5266,3.99,2005-07-09T14:17:40Z,2020-02-15T06:59:51Z +6012,222,2,5592,6.99,2005-07-10T04:26:13Z,2020-02-15T06:59:51Z +6013,222,2,5635,5.99,2005-07-10T06:28:39Z,2020-02-15T06:59:51Z +6014,222,2,6129,2.99,2005-07-11T08:15:09Z,2020-02-15T06:59:51Z +6015,222,1,6497,0.99,2005-07-12T03:04:29Z,2020-02-15T06:59:51Z +6016,222,2,7786,0.99,2005-07-28T07:18:26Z,2020-02-15T06:59:51Z +6017,222,1,8300,1.99,2005-07-29T02:57:59Z,2020-02-15T06:59:51Z +6018,222,2,8597,6.99,2005-07-29T12:55:55Z,2020-02-15T06:59:51Z +6019,222,1,8787,4.99,2005-07-29T20:43:49Z,2020-02-15T06:59:51Z +6020,222,2,10043,1.99,2005-07-31T19:02:07Z,2020-02-15T06:59:51Z +6021,222,2,12179,2.99,2005-08-18T01:21:21Z,2020-02-15T06:59:51Z +6022,222,1,13477,2.99,2005-08-20T01:07:00Z,2020-02-15T06:59:51Z +6023,222,2,14350,2.99,2005-08-21T08:58:38Z,2020-02-15T06:59:51Z +6024,223,2,524,2.99,2005-05-28T03:57:28Z,2020-02-15T06:59:51Z +6025,223,2,1839,5.99,2005-06-16T23:22:22Z,2020-02-15T06:59:51Z +6026,223,1,2334,4.99,2005-06-18T10:56:24Z,2020-02-15T06:59:51Z +6027,223,1,3513,5.99,2005-07-06T00:45:57Z,2020-02-15T06:59:51Z +6028,223,1,3705,0.99,2005-07-06T10:17:59Z,2020-02-15T06:59:51Z +6029,223,1,4874,4.99,2005-07-08T19:23:38Z,2020-02-15T06:59:51Z +6030,223,2,5996,2.99,2005-07-11T01:18:33Z,2020-02-15T06:59:51Z +6031,223,2,7085,5.99,2005-07-27T04:35:44Z,2020-02-15T06:59:51Z +6032,223,2,8362,3.99,2005-07-29T05:09:11Z,2020-02-15T06:59:51Z +6033,223,2,10053,7.99,2005-07-31T19:15:39Z,2020-02-15T06:59:51Z +6034,223,2,11040,4.99,2005-08-02T06:03:22Z,2020-02-15T06:59:51Z +6035,223,1,12927,5.99,2005-08-19T05:02:46Z,2020-02-15T06:59:51Z +6036,223,1,13576,0.99,2005-08-20T05:19:56Z,2020-02-15T06:59:51Z +6037,223,2,14496,4.99,2005-08-21T14:07:35Z,2020-02-15T06:59:51Z +6038,223,1,15257,7.99,2005-08-22T18:21:04Z,2020-02-15T06:59:51Z +6039,223,2,15546,5.99,2005-08-23T04:20:38Z,2020-02-15T06:59:51Z +6040,223,1,15662,2.99,2005-08-23T08:52:50Z,2020-02-15T06:59:51Z +6041,224,1,1424,7.99,2005-06-15T18:08:14Z,2020-02-15T06:59:51Z +6042,224,1,2277,2.99,2005-06-18T06:35:03Z,2020-02-15T06:59:51Z +6043,224,2,3282,4.99,2005-06-21T06:18:42Z,2020-02-15T06:59:51Z +6044,224,1,4118,2.99,2005-07-07T07:03:30Z,2020-02-15T06:59:51Z +6045,224,2,4411,3.99,2005-07-07T21:54:58Z,2020-02-15T06:59:51Z +6046,224,1,4697,2.99,2005-07-08T11:19:14Z,2020-02-15T06:59:51Z +6047,224,1,6031,4.99,2005-07-11T02:42:14Z,2020-02-15T06:59:51Z +6048,224,2,6999,2.99,2005-07-27T01:21:19Z,2020-02-15T06:59:51Z +6049,224,2,8255,0.99,2005-07-29T01:02:30Z,2020-02-15T06:59:51Z +6050,224,2,8439,2.99,2005-07-29T07:28:43Z,2020-02-15T06:59:51Z +6051,224,1,8605,4.99,2005-07-29T13:13:34Z,2020-02-15T06:59:51Z +6052,224,1,9181,0.99,2005-07-30T12:05:58Z,2020-02-15T06:59:51Z +6053,224,1,11816,0.99,2005-08-17T12:14:16Z,2020-02-15T06:59:51Z +6054,224,1,12492,4.99,2005-08-18T12:49:04Z,2020-02-15T06:59:51Z +6055,224,1,12969,2.99,2005-08-19T06:38:59Z,2020-02-15T06:59:51Z +6056,224,2,13075,4.99,2005-08-19T10:10:10Z,2020-02-15T06:59:51Z +6057,224,2,14099,0.99,2005-08-21T00:31:03Z,2020-02-15T06:59:51Z +6058,224,2,14271,5.99,2005-08-21T06:23:29Z,2020-02-15T06:59:51Z +6059,224,2,14468,5.99,2005-08-21T13:07:10Z,2020-02-15T06:59:51Z +6060,224,2,14880,2.99,2005-08-22T03:44:36Z,2020-02-15T06:59:51Z +6061,224,1,15225,0.99,2005-08-22T17:18:32Z,2020-02-15T06:59:51Z +6062,224,1,15952,1.99,2005-08-23T19:11:29Z,2020-02-15T06:59:51Z +6063,225,1,812,4.99,2005-05-29T20:00:30Z,2020-02-15T06:59:51Z +6064,225,1,963,3.99,2005-05-30T18:52:53Z,2020-02-15T06:59:51Z +6065,225,2,2226,7.99,2005-06-18T03:39:56Z,2020-02-15T06:59:51Z +6066,225,2,3574,4.99,2005-07-06T03:36:01Z,2020-02-15T06:59:51Z +6067,225,1,4345,7.99,2005-07-07T18:52:57Z,2020-02-15T06:59:51Z +6068,225,1,4824,7.99,2005-07-08T17:37:39Z,2020-02-15T06:59:51Z +6069,225,2,4955,2.99,2005-07-08T23:16:21Z,2020-02-15T06:59:51Z +6070,225,1,5067,4.99,2005-07-09T04:52:35Z,2020-02-15T06:59:51Z +6071,225,1,6159,2.99,2005-07-11T09:55:34Z,2020-02-15T06:59:51Z +6072,225,1,6317,2.99,2005-07-11T18:47:41Z,2020-02-15T06:59:51Z +6073,225,2,6350,2.99,2005-07-11T20:30:15Z,2020-02-15T06:59:51Z +6074,225,1,6526,3.99,2005-07-12T04:21:20Z,2020-02-15T06:59:51Z +6075,225,2,6532,2.99,2005-07-12T04:38:32Z,2020-02-15T06:59:51Z +6076,225,2,7347,4.99,2005-07-27T14:31:24Z,2020-02-15T06:59:51Z +6077,225,1,7524,6.99,2005-07-27T21:11:44Z,2020-02-15T06:59:51Z +6078,225,1,8054,7.99,2005-07-28T17:02:18Z,2020-02-15T06:59:51Z +6079,225,2,8110,4.99,2005-07-28T19:07:45Z,2020-02-15T06:59:51Z +6080,225,1,9980,4.99,2005-07-31T17:02:00Z,2020-02-15T06:59:51Z +6081,225,2,9993,2.99,2005-07-31T17:30:20Z,2020-02-15T06:59:51Z +6082,225,2,10138,2.99,2005-07-31T22:02:09Z,2020-02-15T06:59:51Z +6083,225,1,10793,2.99,2005-08-01T21:48:03Z,2020-02-15T06:59:51Z +6084,225,2,11333,1.99,2005-08-02T16:53:00Z,2020-02-15T06:59:51Z +6085,225,2,11384,0.99,2005-08-02T18:23:01Z,2020-02-15T06:59:51Z +6086,225,2,11395,5.99,2005-08-02T18:47:44Z,2020-02-15T06:59:51Z +6087,225,2,11437,4.99,2005-08-02T20:20:06Z,2020-02-15T06:59:51Z +6088,225,2,14444,5.99,2005-08-21T12:07:25Z,2020-02-15T06:59:51Z +6089,226,2,3414,2.99,2005-06-21T16:58:50Z,2020-02-15T06:59:51Z +6090,226,1,3466,4.99,2005-06-21T22:13:33Z,2020-02-15T06:59:51Z +6091,226,1,3721,4.99,2005-07-06T11:10:09Z,2020-02-15T06:59:51Z +6092,226,1,4324,4.99,2005-07-07T17:57:56Z,2020-02-15T06:59:51Z +6093,226,1,5282,2.99,2005-07-09T15:01:23Z,2020-02-15T06:59:51Z +6094,226,1,5419,2.99,2005-07-09T20:47:36Z,2020-02-15T06:59:51Z +6095,226,1,6712,9.99,2005-07-12T13:24:47Z,2020-02-15T06:59:51Z +6096,226,2,7288,5.99,2005-07-27T12:24:59Z,2020-02-15T06:59:51Z +6097,226,1,7329,3.99,2005-07-27T13:55:34Z,2020-02-15T06:59:51Z +6098,226,2,8600,2.99,2005-07-29T13:01:19Z,2020-02-15T06:59:51Z +6099,226,1,8627,2.99,2005-07-29T14:05:12Z,2020-02-15T06:59:51Z +6100,226,1,12172,1.99,2005-08-18T01:07:00Z,2020-02-15T06:59:51Z +6101,226,1,14491,6.99,2005-08-21T13:55:39Z,2020-02-15T06:59:51Z +6102,226,1,14708,4.99,2005-08-21T21:07:23Z,2020-02-15T06:59:51Z +6103,226,1,14712,0.99,2005-08-21T21:22:56Z,2020-02-15T06:59:51Z +6104,226,2,14739,0.99,2005-08-21T22:33:22Z,2020-02-15T06:59:51Z +6105,226,2,14934,4.99,2005-08-22T05:47:15Z,2020-02-15T06:59:51Z +6106,226,2,15472,2.99,2005-08-23T01:39:05Z,2020-02-15T06:59:51Z +6107,226,1,15901,4.99,2005-08-23T17:19:17Z,2020-02-15T06:59:51Z +6108,226,1,15986,2.99,2005-08-23T20:20:37Z,2020-02-15T06:59:51Z +6109,226,1,16033,5.99,2005-08-23T22:06:15Z,2020-02-15T06:59:51Z +6110,227,1,111,4.99,2005-05-25T18:45:19Z,2020-02-15T06:59:51Z +6111,227,1,1023,3.99,2005-05-31T03:26:50Z,2020-02-15T06:59:51Z +6112,227,1,1679,2.99,2005-06-16T11:11:01Z,2020-02-15T06:59:51Z +6113,227,2,2155,1.99,2005-06-17T23:07:29Z,2020-02-15T06:59:51Z +6114,227,1,2164,6.99,2005-06-17T23:46:21Z,2020-02-15T06:59:51Z +6115,227,2,3065,0.99,2005-06-20T13:53:53Z,2020-02-15T06:59:51Z +6116,227,1,3576,5.99,2005-07-06T03:40:01Z,2020-02-15T06:59:51Z +6117,227,2,4340,2.99,2005-07-07T18:41:46Z,2020-02-15T06:59:51Z +6118,227,2,4459,4.99,2005-07-07T23:48:52Z,2020-02-15T06:59:51Z +6119,227,1,4680,2.99,2005-07-08T10:35:28Z,2020-02-15T06:59:51Z +6120,227,1,5046,3.99,2005-07-09T03:34:57Z,2020-02-15T06:59:51Z +6121,227,1,7132,7.99,2005-07-27T06:28:34Z,2020-02-15T06:59:51Z +6122,227,1,8219,2.99,2005-07-28T23:46:31Z,2020-02-15T06:59:51Z +6123,227,1,8234,0.99,2005-07-29T00:19:20Z,2020-02-15T06:59:51Z +6124,227,1,8384,0.99,2005-07-29T05:38:43Z,2020-02-15T06:59:51Z +6125,227,2,8417,4.99,2005-07-29T06:53:36Z,2020-02-15T06:59:51Z +6126,227,1,8936,2.99,2005-07-30T02:47:13Z,2020-02-15T06:59:51Z +6127,227,2,9521,2.99,2005-07-31T00:52:24Z,2020-02-15T06:59:51Z +6128,227,2,10999,3.99,2005-08-02T04:53:13Z,2020-02-15T06:59:51Z +6129,227,2,11892,0.99,2005-08-17T15:13:21Z,2020-02-15T06:59:51Z +6130,227,2,13379,4.99,2005-08-19T21:33:39Z,2020-02-15T06:59:51Z +6131,227,2,15406,0.99,2005-08-22T23:21:22Z,2020-02-15T06:59:51Z +6132,227,2,15976,4.99,2005-08-23T20:07:08Z,2020-02-15T06:59:51Z +6133,227,2,13374,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6134,228,2,492,4.99,2005-05-28T00:24:58Z,2020-02-15T06:59:51Z +6135,228,2,1070,0.99,2005-05-31T09:39:56Z,2020-02-15T06:59:51Z +6136,228,2,2284,3.99,2005-06-18T06:59:51Z,2020-02-15T06:59:51Z +6137,228,2,2863,2.99,2005-06-19T23:58:38Z,2020-02-15T06:59:51Z +6138,228,2,2934,2.99,2005-06-20T05:05:53Z,2020-02-15T06:59:51Z +6139,228,2,3433,3.99,2005-06-21T19:07:19Z,2020-02-15T06:59:51Z +6140,228,2,3538,0.99,2005-07-06T01:37:07Z,2020-02-15T06:59:51Z +6141,228,2,3710,8.99,2005-07-06T10:28:53Z,2020-02-15T06:59:51Z +6142,228,1,3715,6.99,2005-07-06T10:51:48Z,2020-02-15T06:59:51Z +6143,228,2,3796,0.99,2005-07-06T14:45:22Z,2020-02-15T06:59:51Z +6144,228,1,4217,3.99,2005-07-07T12:08:59Z,2020-02-15T06:59:51Z +6145,228,1,4636,4.99,2005-07-08T08:44:32Z,2020-02-15T06:59:51Z +6146,228,1,4909,0.99,2005-07-08T21:07:24Z,2020-02-15T06:59:51Z +6147,228,1,5151,2.99,2005-07-09T08:31:03Z,2020-02-15T06:59:51Z +6148,228,1,5320,4.99,2005-07-09T16:23:32Z,2020-02-15T06:59:51Z +6149,228,2,5902,0.99,2005-07-10T20:31:24Z,2020-02-15T06:59:51Z +6150,228,2,6141,1.99,2005-07-11T08:52:16Z,2020-02-15T06:59:51Z +6151,228,1,6948,2.99,2005-07-26T23:43:49Z,2020-02-15T06:59:51Z +6152,228,2,7509,8.99,2005-07-27T20:37:19Z,2020-02-15T06:59:51Z +6153,228,1,7601,0.99,2005-07-27T23:48:15Z,2020-02-15T06:59:51Z +6154,228,1,8147,2.99,2005-07-28T20:37:56Z,2020-02-15T06:59:51Z +6155,228,1,10585,4.99,2005-08-01T14:00:42Z,2020-02-15T06:59:51Z +6156,228,1,12304,0.99,2005-08-18T05:44:29Z,2020-02-15T06:59:51Z +6157,228,2,12952,2.99,2005-08-19T06:00:52Z,2020-02-15T06:59:51Z +6158,228,2,13458,4.99,2005-08-20T00:35:30Z,2020-02-15T06:59:51Z +6159,228,2,12672,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6160,228,1,15234,0,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6161,229,1,2200,4.99,2005-06-18T01:59:16Z,2020-02-15T06:59:51Z +6162,229,1,3208,0.99,2005-06-21T00:50:03Z,2020-02-15T06:59:51Z +6163,229,1,3277,7.99,2005-06-21T05:36:37Z,2020-02-15T06:59:51Z +6164,229,2,3280,0.99,2005-06-21T06:08:12Z,2020-02-15T06:59:51Z +6165,229,2,3933,4.99,2005-07-06T21:06:37Z,2020-02-15T06:59:51Z +6166,229,2,4458,2.99,2005-07-07T23:47:47Z,2020-02-15T06:59:51Z +6167,229,1,4515,4.99,2005-07-08T02:42:03Z,2020-02-15T06:59:51Z +6168,229,2,4694,0.99,2005-07-08T11:07:37Z,2020-02-15T06:59:51Z +6169,229,1,5623,2.99,2005-07-10T05:41:38Z,2020-02-15T06:59:51Z +6170,229,2,6155,4.99,2005-07-11T09:45:31Z,2020-02-15T06:59:51Z +6171,229,2,6578,4.99,2005-07-12T06:15:41Z,2020-02-15T06:59:51Z +6172,229,1,6880,2.99,2005-07-12T20:41:35Z,2020-02-15T06:59:51Z +6173,229,2,7305,0.99,2005-07-27T12:57:06Z,2020-02-15T06:59:51Z +6174,229,2,7308,5.99,2005-07-27T13:00:25Z,2020-02-15T06:59:51Z +6175,229,2,7629,0.99,2005-07-28T01:00:09Z,2020-02-15T06:59:51Z +6176,229,2,7640,7.99,2005-07-28T01:14:49Z,2020-02-15T06:59:51Z +6177,229,2,9913,3.99,2005-07-31T14:51:04Z,2020-02-15T06:59:51Z +6178,229,1,11521,4.99,2005-08-17T00:04:54Z,2020-02-15T06:59:51Z +6179,229,1,12866,2.99,2005-08-19T02:39:47Z,2020-02-15T06:59:51Z +6180,229,2,13306,0.99,2005-08-19T18:57:29Z,2020-02-15T06:59:51Z +6181,229,2,13431,4.99,2005-08-19T23:28:15Z,2020-02-15T06:59:51Z +6182,229,1,13679,5.99,2005-08-20T08:39:34Z,2020-02-15T06:59:51Z +6183,229,1,15740,4.99,2005-08-23T12:07:51Z,2020-02-15T06:59:51Z +6184,229,2,15912,2.99,2005-08-23T17:47:40Z,2020-02-15T06:59:51Z +6185,229,2,13295,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6186,230,1,32,0.99,2005-05-25T04:06:21Z,2020-02-15T06:59:51Z +6187,230,1,1078,4.99,2005-05-31T10:28:33Z,2020-02-15T06:59:51Z +6188,230,2,1468,3.99,2005-06-15T20:48:22Z,2020-02-15T06:59:51Z +6189,230,1,1744,4.99,2005-06-16T16:39:58Z,2020-02-15T06:59:51Z +6190,230,2,1793,0.99,2005-06-16T20:07:27Z,2020-02-15T06:59:51Z +6191,230,2,2450,8.99,2005-06-18T19:25:47Z,2020-02-15T06:59:51Z +6192,230,2,2675,0.99,2005-06-19T11:52:15Z,2020-02-15T06:59:51Z +6193,230,1,2777,0.99,2005-06-19T18:16:26Z,2020-02-15T06:59:51Z +6194,230,1,4509,3.99,2005-07-08T02:32:38Z,2020-02-15T06:59:51Z +6195,230,1,4935,0.99,2005-07-08T22:20:56Z,2020-02-15T06:59:51Z +6196,230,1,5045,4.99,2005-07-09T03:33:32Z,2020-02-15T06:59:51Z +6197,230,1,5061,0.99,2005-07-09T04:30:50Z,2020-02-15T06:59:51Z +6198,230,2,5269,2.99,2005-07-09T14:23:05Z,2020-02-15T06:59:51Z +6199,230,2,6126,4.99,2005-07-11T08:06:56Z,2020-02-15T06:59:51Z +6200,230,1,6251,2.99,2005-07-11T15:06:20Z,2020-02-15T06:59:51Z +6201,230,2,7333,4.99,2005-07-27T13:59:11Z,2020-02-15T06:59:51Z +6202,230,2,7390,4.99,2005-07-27T15:59:19Z,2020-02-15T06:59:51Z +6203,230,2,8032,4.99,2005-07-28T16:17:00Z,2020-02-15T06:59:51Z +6204,230,2,8653,0.99,2005-07-29T15:04:23Z,2020-02-15T06:59:51Z +6205,230,1,8815,2.99,2005-07-29T21:51:26Z,2020-02-15T06:59:51Z +6206,230,2,9778,3.99,2005-07-31T10:02:04Z,2020-02-15T06:59:51Z +6207,230,2,10050,3.99,2005-07-31T19:13:29Z,2020-02-15T06:59:51Z +6208,230,1,10057,9.99,2005-07-31T19:20:18Z,2020-02-15T06:59:51Z +6209,230,2,10874,2.99,2005-08-02T00:31:00Z,2020-02-15T06:59:51Z +6210,230,2,11148,5.99,2005-08-02T09:47:08Z,2020-02-15T06:59:51Z +6211,230,1,11552,5.99,2005-08-17T01:04:29Z,2020-02-15T06:59:51Z +6212,230,2,11914,2.99,2005-08-17T16:04:42Z,2020-02-15T06:59:51Z +6213,230,1,12079,1.99,2005-08-17T22:04:17Z,2020-02-15T06:59:51Z +6214,230,2,12523,7.99,2005-08-18T13:45:41Z,2020-02-15T06:59:51Z +6215,230,2,12542,0.99,2005-08-18T14:21:11Z,2020-02-15T06:59:51Z +6216,230,2,14017,0.99,2005-08-20T20:55:32Z,2020-02-15T06:59:51Z +6217,230,1,14073,5.99,2005-08-20T23:12:57Z,2020-02-15T06:59:51Z +6218,230,1,14340,2.99,2005-08-21T08:38:21Z,2020-02-15T06:59:51Z +6219,231,1,329,5.99,2005-05-27T01:57:14Z,2020-02-15T06:59:51Z +6220,231,1,479,6.99,2005-05-27T22:39:10Z,2020-02-15T06:59:51Z +6221,231,1,512,8.99,2005-05-28T03:07:50Z,2020-02-15T06:59:51Z +6222,231,2,2423,0.99,2005-06-18T17:32:08Z,2020-02-15T06:59:51Z +6223,231,2,3561,9.99,2005-07-06T02:54:33Z,2020-02-15T06:59:51Z +6224,231,1,3839,2.99,2005-07-06T16:30:30Z,2020-02-15T06:59:51Z +6225,231,2,4289,0.99,2005-07-07T15:45:58Z,2020-02-15T06:59:51Z +6226,231,2,4969,0.99,2005-07-08T23:51:26Z,2020-02-15T06:59:51Z +6227,231,1,5096,2.99,2005-07-09T06:08:23Z,2020-02-15T06:59:51Z +6228,231,1,5560,5.99,2005-07-10T03:13:24Z,2020-02-15T06:59:51Z +6229,231,1,6862,0.99,2005-07-12T19:58:09Z,2020-02-15T06:59:51Z +6230,231,1,6877,1.99,2005-07-12T20:32:58Z,2020-02-15T06:59:51Z +6231,231,1,8556,0.99,2005-07-29T11:18:27Z,2020-02-15T06:59:51Z +6232,231,2,8949,5.99,2005-07-30T03:17:02Z,2020-02-15T06:59:51Z +6233,231,2,9711,2.99,2005-07-31T08:06:41Z,2020-02-15T06:59:51Z +6234,231,2,11113,2.99,2005-08-02T08:26:24Z,2020-02-15T06:59:51Z +6235,231,1,11202,7.99,2005-08-02T11:51:57Z,2020-02-15T06:59:51Z +6236,231,1,11581,5.99,2005-08-17T02:03:02Z,2020-02-15T06:59:51Z +6237,231,1,12214,0.99,2005-08-18T02:34:22Z,2020-02-15T06:59:51Z +6238,231,2,12230,8.99,2005-08-18T03:11:04Z,2020-02-15T06:59:51Z +6239,231,1,12231,3.99,2005-08-18T03:11:44Z,2020-02-15T06:59:51Z +6240,231,2,13983,6.99,2005-08-20T19:08:32Z,2020-02-15T06:59:51Z +6241,231,1,14026,0.99,2005-08-20T21:21:08Z,2020-02-15T06:59:51Z +6242,231,1,14478,4.99,2005-08-21T13:33:28Z,2020-02-15T06:59:51Z +6243,231,2,14806,2.99,2005-08-22T00:53:08Z,2020-02-15T06:59:51Z +6244,231,1,15389,3.99,2005-08-22T22:51:13Z,2020-02-15T06:59:51Z +6245,232,1,28,4.99,2005-05-25T03:42:37Z,2020-02-15T06:59:51Z +6246,232,1,805,3.99,2005-05-29T18:18:18Z,2020-02-15T06:59:51Z +6247,232,2,1619,0.99,2005-06-16T07:14:13Z,2020-02-15T06:59:51Z +6248,232,1,2833,8.99,2005-06-19T21:34:54Z,2020-02-15T06:59:51Z +6249,232,2,6234,5.99,2005-07-11T14:16:10Z,2020-02-15T06:59:51Z +6250,232,1,6309,2.99,2005-07-11T18:13:24Z,2020-02-15T06:59:51Z +6251,232,1,7123,5.99,2005-07-27T06:08:48Z,2020-02-15T06:59:51Z +6252,232,2,7653,4.99,2005-07-28T01:58:30Z,2020-02-15T06:59:51Z +6253,232,2,7707,0.99,2005-07-28T04:07:47Z,2020-02-15T06:59:51Z +6254,232,1,7749,2.99,2005-07-28T05:53:36Z,2020-02-15T06:59:51Z +6255,232,1,7990,2.99,2005-07-28T14:43:08Z,2020-02-15T06:59:51Z +6256,232,1,8306,2.99,2005-07-29T03:12:26Z,2020-02-15T06:59:51Z +6257,232,2,8401,4.99,2005-07-29T06:25:08Z,2020-02-15T06:59:51Z +6258,232,2,8655,4.99,2005-07-29T15:04:42Z,2020-02-15T06:59:51Z +6259,232,2,9270,0.99,2005-07-30T15:03:16Z,2020-02-15T06:59:51Z +6260,232,2,9330,10.99,2005-07-30T17:44:24Z,2020-02-15T06:59:51Z +6261,232,2,9365,2.99,2005-07-30T18:46:02Z,2020-02-15T06:59:51Z +6262,232,2,10157,2.99,2005-07-31T22:38:48Z,2020-02-15T06:59:51Z +6263,232,1,10539,6.99,2005-08-01T12:23:00Z,2020-02-15T06:59:51Z +6264,232,2,11861,0.99,2005-08-17T13:53:47Z,2020-02-15T06:59:51Z +6265,232,2,12853,2.99,2005-08-19T02:15:32Z,2020-02-15T06:59:51Z +6266,232,2,13707,2.99,2005-08-20T09:33:58Z,2020-02-15T06:59:51Z +6267,232,2,14527,0.99,2005-08-21T15:07:42Z,2020-02-15T06:59:51Z +6268,232,2,14857,0.99,2005-08-22T02:42:39Z,2020-02-15T06:59:51Z +6269,232,2,15553,2.99,2005-08-23T04:33:39Z,2020-02-15T06:59:51Z +6270,233,2,1992,2.99,2005-06-17T10:58:53Z,2020-02-15T06:59:51Z +6271,233,2,2244,2.99,2005-06-18T04:46:33Z,2020-02-15T06:59:51Z +6272,233,1,2424,2.99,2005-06-18T17:35:08Z,2020-02-15T06:59:51Z +6273,233,2,2443,4.99,2005-06-18T18:52:30Z,2020-02-15T06:59:51Z +6274,233,1,3832,2.99,2005-07-06T16:12:23Z,2020-02-15T06:59:51Z +6275,233,1,4015,5.99,2005-07-07T00:59:46Z,2020-02-15T06:59:51Z +6276,233,1,4885,4.99,2005-07-08T19:51:17Z,2020-02-15T06:59:51Z +6277,233,2,5267,5.99,2005-07-09T14:21:10Z,2020-02-15T06:59:51Z +6278,233,1,5846,2.99,2005-07-10T17:25:24Z,2020-02-15T06:59:51Z +6279,233,1,6319,4.99,2005-07-11T18:50:45Z,2020-02-15T06:59:51Z +6280,233,1,6794,2.99,2005-07-12T16:38:23Z,2020-02-15T06:59:51Z +6281,233,1,7056,8.99,2005-07-27T03:46:27Z,2020-02-15T06:59:51Z +6282,233,2,7387,4.99,2005-07-27T15:54:19Z,2020-02-15T06:59:51Z +6283,233,2,8385,5.99,2005-07-29T05:39:16Z,2020-02-15T06:59:51Z +6284,233,2,8530,2.99,2005-07-29T10:26:14Z,2020-02-15T06:59:51Z +6285,233,2,8596,0.99,2005-07-29T12:48:54Z,2020-02-15T06:59:51Z +6286,233,1,9574,0.99,2005-07-31T02:49:20Z,2020-02-15T06:59:51Z +6287,233,1,10582,4.99,2005-08-01T13:54:22Z,2020-02-15T06:59:51Z +6288,233,1,12443,5.99,2005-08-18T10:50:59Z,2020-02-15T06:59:51Z +6289,233,2,14357,2.99,2005-08-21T09:13:09Z,2020-02-15T06:59:51Z +6290,233,2,15285,2.99,2005-08-22T19:17:24Z,2020-02-15T06:59:51Z +6291,233,1,15790,1.99,2005-08-23T14:01:07Z,2020-02-15T06:59:51Z +6292,233,2,15821,0.99,2005-08-23T15:03:58Z,2020-02-15T06:59:51Z +6293,234,2,1125,4.99,2005-05-31T17:23:44Z,2020-02-15T06:59:51Z +6294,234,2,1245,3.99,2005-06-15T05:09:01Z,2020-02-15T06:59:51Z +6295,234,2,1645,0.99,2005-06-16T09:10:06Z,2020-02-15T06:59:51Z +6296,234,1,1674,2.99,2005-06-16T10:57:00Z,2020-02-15T06:59:51Z +6297,234,2,1993,5.99,2005-06-17T10:59:24Z,2020-02-15T06:59:51Z +6298,234,1,2005,4.99,2005-06-17T11:44:54Z,2020-02-15T06:59:51Z +6299,234,2,2511,5.99,2005-06-18T23:45:30Z,2020-02-15T06:59:51Z +6300,234,2,3185,6.99,2005-06-20T22:58:01Z,2020-02-15T06:59:51Z +6301,234,2,3199,4.99,2005-06-21T00:12:40Z,2020-02-15T06:59:51Z +6302,234,2,4686,0.99,2005-07-08T10:53:39Z,2020-02-15T06:59:51Z +6303,234,1,4721,7.99,2005-07-08T12:39:31Z,2020-02-15T06:59:51Z +6304,234,2,10133,5.99,2005-07-31T21:55:07Z,2020-02-15T06:59:51Z +6305,234,2,10541,0.99,2005-08-01T12:24:54Z,2020-02-15T06:59:51Z +6306,234,2,10580,6.99,2005-08-01T13:51:14Z,2020-02-15T06:59:51Z +6307,234,2,10968,7.99,2005-08-02T04:03:13Z,2020-02-15T06:59:51Z +6308,234,1,11050,4.99,2005-08-02T06:17:16Z,2020-02-15T06:59:51Z +6309,234,1,11073,0.99,2005-08-02T07:13:03Z,2020-02-15T06:59:51Z +6310,234,1,11481,3.99,2005-08-02T22:18:41Z,2020-02-15T06:59:51Z +6311,234,1,11882,3.99,2005-08-17T14:33:41Z,2020-02-15T06:59:51Z +6312,234,1,12226,0.99,2005-08-18T03:00:48Z,2020-02-15T06:59:51Z +6313,234,2,12863,4.99,2005-08-19T02:35:59Z,2020-02-15T06:59:51Z +6314,234,1,12921,5.99,2005-08-19T04:47:48Z,2020-02-15T06:59:51Z +6315,234,2,13349,2.99,2005-08-19T20:43:16Z,2020-02-15T06:59:51Z +6316,234,2,15037,5.99,2005-08-22T09:36:33Z,2020-02-15T06:59:51Z +6317,234,1,15129,2.99,2005-08-22T13:03:52Z,2020-02-15T06:59:51Z +6318,234,1,15778,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6319,235,2,807,2.99,2005-05-29T18:50:50Z,2020-02-15T06:59:51Z +6320,235,1,1148,0.99,2005-05-31T20:38:40Z,2020-02-15T06:59:51Z +6321,235,1,1493,4.99,2005-06-15T21:50:32Z,2020-02-15T06:59:51Z +6322,235,2,1811,0.99,2005-06-16T21:06:20Z,2020-02-15T06:59:51Z +6323,235,2,3581,2.99,2005-07-06T03:57:35Z,2020-02-15T06:59:51Z +6324,235,1,3752,6.99,2005-07-06T12:30:12Z,2020-02-15T06:59:51Z +6325,235,1,3968,4.99,2005-07-06T22:47:09Z,2020-02-15T06:59:51Z +6326,235,2,4592,2.99,2005-07-08T06:31:28Z,2020-02-15T06:59:51Z +6327,235,1,5790,4.99,2005-07-10T14:15:21Z,2020-02-15T06:59:51Z +6328,235,1,6047,2.99,2005-07-11T03:27:01Z,2020-02-15T06:59:51Z +6329,235,2,6352,4.99,2005-07-11T20:34:13Z,2020-02-15T06:59:51Z +6330,235,2,6466,4.99,2005-07-12T01:21:03Z,2020-02-15T06:59:51Z +6331,235,1,8120,0.99,2005-07-28T19:24:24Z,2020-02-15T06:59:51Z +6332,235,2,8446,6.99,2005-07-29T07:38:10Z,2020-02-15T06:59:51Z +6333,235,2,8781,0.99,2005-07-29T20:20:16Z,2020-02-15T06:59:51Z +6334,235,1,9019,5.99,2005-07-30T05:28:53Z,2020-02-15T06:59:51Z +6335,235,2,9519,6.99,2005-07-31T00:45:57Z,2020-02-15T06:59:51Z +6336,235,1,9587,3.99,2005-07-31T03:10:30Z,2020-02-15T06:59:51Z +6337,235,2,10155,0.99,2005-07-31T22:31:43Z,2020-02-15T06:59:51Z +6338,235,2,12332,2.99,2005-08-18T06:51:05Z,2020-02-15T06:59:51Z +6339,235,1,12502,4.99,2005-08-18T13:16:31Z,2020-02-15T06:59:51Z +6340,235,2,13070,0.99,2005-08-19T09:56:23Z,2020-02-15T06:59:51Z +6341,235,1,13469,0.99,2005-08-20T00:59:36Z,2020-02-15T06:59:51Z +6342,235,2,14749,3.99,2005-08-21T23:08:33Z,2020-02-15T06:59:51Z +6343,235,1,15034,6.99,2005-08-22T09:33:08Z,2020-02-15T06:59:51Z +6344,236,2,262,2.99,2005-05-26T15:46:56Z,2020-02-15T06:59:51Z +6345,236,2,344,2.99,2005-05-27T04:30:22Z,2020-02-15T06:59:51Z +6346,236,1,1032,2.99,2005-05-31T04:28:43Z,2020-02-15T06:59:51Z +6347,236,1,1262,0.99,2005-06-15T06:54:53Z,2020-02-15T06:59:51Z +6348,236,2,1308,5.99,2005-06-15T10:07:48Z,2020-02-15T06:59:51Z +6349,236,2,2139,8.99,2005-06-17T21:29:34Z,2020-02-15T06:59:51Z +6350,236,2,2311,6.99,2005-06-18T08:51:29Z,2020-02-15T06:59:51Z +6351,236,1,2630,2.99,2005-06-19T08:47:21Z,2020-02-15T06:59:51Z +6352,236,2,2840,3.99,2005-06-19T22:17:44Z,2020-02-15T06:59:51Z +6353,236,1,3353,4.99,2005-06-21T11:29:23Z,2020-02-15T06:59:51Z +6354,236,2,3460,2.99,2005-06-21T21:46:56Z,2020-02-15T06:59:51Z +6355,236,1,3645,0.99,2005-07-06T07:22:09Z,2020-02-15T06:59:51Z +6356,236,2,3857,4.99,2005-07-06T17:07:54Z,2020-02-15T06:59:51Z +6357,236,2,4749,4.99,2005-07-08T14:05:58Z,2020-02-15T06:59:51Z +6358,236,1,4959,0.99,2005-07-08T23:22:23Z,2020-02-15T06:59:51Z +6359,236,1,5404,2.99,2005-07-09T20:10:43Z,2020-02-15T06:59:51Z +6360,236,1,5545,3.99,2005-07-10T02:50:29Z,2020-02-15T06:59:51Z +6361,236,2,5938,3.99,2005-07-10T22:17:42Z,2020-02-15T06:59:51Z +6362,236,2,6049,0.99,2005-07-11T03:32:32Z,2020-02-15T06:59:51Z +6363,236,2,6281,4.99,2005-07-11T16:38:16Z,2020-02-15T06:59:51Z +6364,236,1,6303,2.99,2005-07-11T17:55:43Z,2020-02-15T06:59:51Z +6365,236,2,6996,4.99,2005-07-27T01:13:45Z,2020-02-15T06:59:51Z +6366,236,2,7047,4.99,2005-07-27T03:31:11Z,2020-02-15T06:59:51Z +6367,236,2,7253,0.99,2005-07-27T10:46:37Z,2020-02-15T06:59:51Z +6368,236,1,7780,5.99,2005-07-28T07:11:55Z,2020-02-15T06:59:51Z +6369,236,1,7792,4.99,2005-07-28T07:24:02Z,2020-02-15T06:59:51Z +6370,236,2,7798,2.99,2005-07-28T07:41:59Z,2020-02-15T06:59:51Z +6371,236,1,8657,2.99,2005-07-29T15:09:25Z,2020-02-15T06:59:51Z +6372,236,1,9011,5.99,2005-07-30T05:16:29Z,2020-02-15T06:59:51Z +6373,236,1,9934,2.99,2005-07-31T15:25:26Z,2020-02-15T06:59:51Z +6374,236,2,10137,4.99,2005-07-31T22:01:41Z,2020-02-15T06:59:51Z +6375,236,2,11139,6.99,2005-08-02T09:27:36Z,2020-02-15T06:59:51Z +6376,236,2,11486,3.99,2005-08-02T22:34:06Z,2020-02-15T06:59:51Z +6377,236,2,11507,5.99,2005-08-16T23:26:43Z,2020-02-15T06:59:51Z +6378,236,1,11895,4.99,2005-08-17T15:15:07Z,2020-02-15T06:59:51Z +6379,236,1,12975,2.99,2005-08-19T06:51:19Z,2020-02-15T06:59:51Z +6380,236,1,13364,2.99,2005-08-19T21:09:30Z,2020-02-15T06:59:51Z +6381,236,1,13443,7.99,2005-08-19T23:53:42Z,2020-02-15T06:59:51Z +6382,236,2,14321,4.99,2005-08-21T08:05:12Z,2020-02-15T06:59:51Z +6383,236,1,14364,7.99,2005-08-21T09:25:11Z,2020-02-15T06:59:51Z +6384,236,2,14722,4.99,2005-08-21T21:50:53Z,2020-02-15T06:59:51Z +6385,236,1,12988,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6386,237,2,133,0.99,2005-05-25T21:48:30Z,2020-02-15T06:59:51Z +6387,237,1,182,4.99,2005-05-26T04:49:17Z,2020-02-15T06:59:51Z +6388,237,1,1500,0.99,2005-06-15T22:00:45Z,2020-02-15T06:59:51Z +6389,237,2,1518,0.99,2005-06-15T23:36:37Z,2020-02-15T06:59:51Z +6390,237,1,2156,4.99,2005-06-17T23:08:12Z,2020-02-15T06:59:51Z +6391,237,1,2492,2.99,2005-06-18T22:04:15Z,2020-02-15T06:59:51Z +6392,237,2,3069,2.99,2005-06-20T14:13:00Z,2020-02-15T06:59:51Z +6393,237,1,4844,4.99,2005-07-08T18:28:13Z,2020-02-15T06:59:51Z +6394,237,2,6053,4.99,2005-07-11T03:51:59Z,2020-02-15T06:59:51Z +6395,237,1,7193,2.99,2005-07-27T08:37:00Z,2020-02-15T06:59:51Z +6396,237,2,7330,3.99,2005-07-27T13:56:46Z,2020-02-15T06:59:51Z +6397,237,1,7812,4.99,2005-07-28T08:06:52Z,2020-02-15T06:59:51Z +6398,237,2,7951,8.99,2005-07-28T13:21:16Z,2020-02-15T06:59:51Z +6399,237,2,8102,2.99,2005-07-28T18:49:43Z,2020-02-15T06:59:51Z +6400,237,2,8748,2.99,2005-07-29T19:08:37Z,2020-02-15T06:59:51Z +6401,237,2,8799,6.99,2005-07-29T21:16:47Z,2020-02-15T06:59:51Z +6402,237,1,8835,3.99,2005-07-29T22:44:35Z,2020-02-15T06:59:51Z +6403,237,1,9276,5.99,2005-07-30T15:09:28Z,2020-02-15T06:59:51Z +6404,237,1,9661,4.99,2005-07-31T06:06:37Z,2020-02-15T06:59:51Z +6405,237,2,9715,1.99,2005-07-31T08:16:58Z,2020-02-15T06:59:51Z +6406,237,2,10056,0.99,2005-07-31T19:19:13Z,2020-02-15T06:59:51Z +6407,237,2,10058,2.99,2005-07-31T19:20:21Z,2020-02-15T06:59:51Z +6408,237,2,11125,4.99,2005-08-02T08:55:35Z,2020-02-15T06:59:51Z +6409,237,2,11479,11.99,2005-08-02T22:18:13Z,2020-02-15T06:59:51Z +6410,237,2,11772,5.99,2005-08-17T10:18:57Z,2020-02-15T06:59:51Z +6411,237,1,12469,0.99,2005-08-18T11:53:07Z,2020-02-15T06:59:51Z +6412,237,2,13914,6.99,2005-08-20T16:38:57Z,2020-02-15T06:59:51Z +6413,237,2,13922,6.99,2005-08-20T17:02:37Z,2020-02-15T06:59:51Z +6414,237,2,13969,6.99,2005-08-20T18:42:40Z,2020-02-15T06:59:51Z +6415,237,2,14453,3.99,2005-08-21T12:33:34Z,2020-02-15T06:59:51Z +6416,237,2,15139,8.99,2005-08-22T13:38:11Z,2020-02-15T06:59:51Z +6417,237,1,15337,0.99,2005-08-22T20:49:51Z,2020-02-15T06:59:51Z +6418,237,2,15931,1.99,2005-08-23T18:28:09Z,2020-02-15T06:59:51Z +6419,238,2,315,4.99,2005-05-26T23:12:55Z,2020-02-15T06:59:51Z +6420,238,1,842,2.99,2005-05-30T00:32:04Z,2020-02-15T06:59:51Z +6421,238,1,1199,2.99,2005-06-15T01:58:50Z,2020-02-15T06:59:51Z +6422,238,1,1660,4.99,2005-06-16T10:12:55Z,2020-02-15T06:59:51Z +6423,238,1,3181,2.99,2005-06-20T22:51:02Z,2020-02-15T06:59:51Z +6424,238,1,4143,0.99,2005-07-07T08:22:07Z,2020-02-15T06:59:51Z +6425,238,1,5616,5.99,2005-07-10T05:21:11Z,2020-02-15T06:59:51Z +6426,238,2,6403,0.99,2005-07-11T22:46:25Z,2020-02-15T06:59:51Z +6427,238,2,7243,4.99,2005-07-27T10:26:11Z,2020-02-15T06:59:51Z +6428,238,1,8310,8.99,2005-07-29T03:25:56Z,2020-02-15T06:59:51Z +6429,238,1,8382,6.99,2005-07-29T05:33:21Z,2020-02-15T06:59:51Z +6430,238,1,8465,0.99,2005-07-29T08:20:49Z,2020-02-15T06:59:51Z +6431,238,1,9065,4.99,2005-07-30T07:25:09Z,2020-02-15T06:59:51Z +6432,238,2,9841,7.99,2005-07-31T12:24:19Z,2020-02-15T06:59:51Z +6433,238,1,10659,5.99,2005-08-01T16:40:34Z,2020-02-15T06:59:51Z +6434,238,2,11543,5.99,2005-08-17T00:54:28Z,2020-02-15T06:59:51Z +6435,238,2,11632,2.99,2005-08-17T04:29:32Z,2020-02-15T06:59:51Z +6436,238,1,11897,2.99,2005-08-17T15:24:06Z,2020-02-15T06:59:51Z +6437,238,1,14312,4.99,2005-08-21T07:48:34Z,2020-02-15T06:59:51Z +6438,238,1,14343,8.99,2005-08-21T08:40:21Z,2020-02-15T06:59:51Z +6439,238,1,15455,0.99,2005-08-23T01:05:00Z,2020-02-15T06:59:51Z +6440,239,2,8,4.99,2005-05-24T23:31:46Z,2020-02-15T06:59:51Z +6441,239,1,444,2.99,2005-05-27T18:39:15Z,2020-02-15T06:59:51Z +6442,239,1,621,4.99,2005-05-28T15:58:12Z,2020-02-15T06:59:51Z +6443,239,1,636,6.99,2005-05-28T17:47:58Z,2020-02-15T06:59:51Z +6444,239,1,1022,7.99,2005-05-31T03:16:45Z,2020-02-15T06:59:51Z +6445,239,2,1082,5.99,2005-05-31T11:02:01Z,2020-02-15T06:59:51Z +6446,239,1,1160,4.99,2005-06-14T23:00:34Z,2020-02-15T06:59:51Z +6447,239,2,1560,4.99,2005-06-16T02:36:43Z,2020-02-15T06:59:51Z +6448,239,2,2215,2.99,2005-06-18T02:48:21Z,2020-02-15T06:59:51Z +6449,239,1,2390,4.99,2005-06-18T15:29:26Z,2020-02-15T06:59:51Z +6450,239,1,3383,5.99,2005-06-21T14:07:19Z,2020-02-15T06:59:51Z +6451,239,2,3547,0.99,2005-07-06T02:18:06Z,2020-02-15T06:59:51Z +6452,239,1,3552,5.99,2005-07-06T02:34:09Z,2020-02-15T06:59:51Z +6453,239,2,4920,7.99,2005-07-08T21:42:10Z,2020-02-15T06:59:51Z +6454,239,2,5651,4.99,2005-07-10T07:17:13Z,2020-02-15T06:59:51Z +6455,239,1,5960,0.99,2005-07-10T23:38:34Z,2020-02-15T06:59:51Z +6456,239,1,6573,0.99,2005-07-12T06:03:40Z,2020-02-15T06:59:51Z +6457,239,2,7012,8.99,2005-07-27T02:01:03Z,2020-02-15T06:59:51Z +6458,239,1,7426,0.99,2005-07-27T17:19:46Z,2020-02-15T06:59:51Z +6459,239,2,7491,2.99,2005-07-27T19:53:23Z,2020-02-15T06:59:51Z +6460,239,1,8457,6.99,2005-07-29T07:59:03Z,2020-02-15T06:59:51Z +6461,239,2,9676,0.99,2005-07-31T06:39:13Z,2020-02-15T06:59:51Z +6462,239,1,9863,5.99,2005-07-31T13:05:29Z,2020-02-15T06:59:51Z +6463,239,1,10755,0.99,2005-08-01T20:14:14Z,2020-02-15T06:59:51Z +6464,239,2,10923,2.99,2005-08-02T02:15:01Z,2020-02-15T06:59:51Z +6465,239,1,11487,2.99,2005-08-02T22:35:05Z,2020-02-15T06:59:51Z +6466,239,2,11900,4.99,2005-08-17T15:30:44Z,2020-02-15T06:59:51Z +6467,239,1,11968,0.99,2005-08-17T17:47:34Z,2020-02-15T06:59:51Z +6468,239,1,12340,4.99,2005-08-18T07:07:01Z,2020-02-15T06:59:51Z +6469,239,1,12721,1.99,2005-08-18T21:30:12Z,2020-02-15T06:59:51Z +6470,239,1,13175,4.99,2005-08-19T13:54:53Z,2020-02-15T06:59:51Z +6471,239,2,13427,4.99,2005-08-19T23:19:02Z,2020-02-15T06:59:51Z +6472,239,2,13999,3.99,2005-08-20T19:53:32Z,2020-02-15T06:59:51Z +6473,239,2,14062,1.99,2005-08-20T22:34:34Z,2020-02-15T06:59:51Z +6474,240,1,246,2.99,2005-05-26T13:57:07Z,2020-02-15T06:59:51Z +6475,240,1,460,2.99,2005-05-27T20:02:03Z,2020-02-15T06:59:51Z +6476,240,1,643,4.99,2005-05-28T18:52:11Z,2020-02-15T06:59:51Z +6477,240,2,2196,3.99,2005-06-18T01:47:07Z,2020-02-15T06:59:51Z +6478,240,1,2264,4.99,2005-06-18T05:58:45Z,2020-02-15T06:59:51Z +6479,240,2,2872,5.99,2005-06-20T00:38:21Z,2020-02-15T06:59:51Z +6480,240,2,4305,4.99,2005-07-07T17:07:11Z,2020-02-15T06:59:51Z +6481,240,2,5262,4.99,2005-07-09T14:08:01Z,2020-02-15T06:59:51Z +6482,240,1,5596,0.99,2005-07-10T04:43:14Z,2020-02-15T06:59:51Z +6483,240,1,6272,0.99,2005-07-11T16:03:49Z,2020-02-15T06:59:51Z +6484,240,2,6470,0.99,2005-07-12T01:29:41Z,2020-02-15T06:59:51Z +6485,240,1,6956,4.99,2005-07-26T23:55:57Z,2020-02-15T06:59:51Z +6486,240,1,7001,4.99,2005-07-27T01:25:34Z,2020-02-15T06:59:51Z +6487,240,1,7467,8.99,2005-07-27T18:51:54Z,2020-02-15T06:59:51Z +6488,240,2,7481,4.99,2005-07-27T19:20:25Z,2020-02-15T06:59:51Z +6489,240,1,7870,4.99,2005-07-28T10:16:03Z,2020-02-15T06:59:51Z +6490,240,2,8503,3.99,2005-07-29T09:16:50Z,2020-02-15T06:59:51Z +6491,240,2,8905,5.99,2005-07-30T01:11:11Z,2020-02-15T06:59:51Z +6492,240,1,10308,7.99,2005-08-01T04:22:49Z,2020-02-15T06:59:51Z +6493,240,1,11745,3.99,2005-08-17T09:00:01Z,2020-02-15T06:59:51Z +6494,240,2,12283,6.99,2005-08-18T04:54:25Z,2020-02-15T06:59:51Z +6495,240,2,13030,2.99,2005-08-19T08:28:11Z,2020-02-15T06:59:51Z +6496,240,2,13119,4.99,2005-08-19T11:44:59Z,2020-02-15T06:59:51Z +6497,240,1,13663,8.99,2005-08-20T08:12:33Z,2020-02-15T06:59:51Z +6498,240,2,14573,2.99,2005-08-21T16:44:32Z,2020-02-15T06:59:51Z +6499,240,2,15641,0.99,2005-08-23T08:06:49Z,2020-02-15T06:59:51Z +6500,241,1,627,7.99,2005-05-28T17:04:43Z,2020-02-15T06:59:51Z +6501,241,1,1059,3.99,2005-05-31T08:20:43Z,2020-02-15T06:59:51Z +6502,241,2,2428,0.99,2005-06-18T17:47:34Z,2020-02-15T06:59:51Z +6503,241,1,2455,0.99,2005-06-18T19:33:06Z,2020-02-15T06:59:51Z +6504,241,2,2478,5.99,2005-06-18T21:01:21Z,2020-02-15T06:59:51Z +6505,241,2,2683,2.99,2005-06-19T12:27:19Z,2020-02-15T06:59:51Z +6506,241,2,3258,0.99,2005-06-21T03:53:58Z,2020-02-15T06:59:51Z +6507,241,2,3822,0.99,2005-07-06T15:41:15Z,2020-02-15T06:59:51Z +6508,241,1,4731,0.99,2005-07-08T13:08:18Z,2020-02-15T06:59:51Z +6509,241,2,5017,2.99,2005-07-09T02:00:16Z,2020-02-15T06:59:51Z +6510,241,1,5211,0.99,2005-07-09T11:26:50Z,2020-02-15T06:59:51Z +6511,241,1,5438,4.99,2005-07-09T21:34:32Z,2020-02-15T06:59:51Z +6512,241,2,5525,3.99,2005-07-10T02:03:08Z,2020-02-15T06:59:51Z +6513,241,1,5981,4.99,2005-07-11T00:19:04Z,2020-02-15T06:59:51Z +6514,241,2,6090,6.99,2005-07-11T05:47:08Z,2020-02-15T06:59:51Z +6515,241,2,6245,2.99,2005-07-11T14:56:57Z,2020-02-15T06:59:51Z +6516,241,1,7320,0.99,2005-07-27T13:33:35Z,2020-02-15T06:59:51Z +6517,241,1,7434,2.99,2005-07-27T17:34:40Z,2020-02-15T06:59:51Z +6518,241,1,7860,2.99,2005-07-28T09:58:02Z,2020-02-15T06:59:51Z +6519,241,1,9500,6.99,2005-07-30T23:58:36Z,2020-02-15T06:59:51Z +6520,241,1,9528,3.99,2005-07-31T01:05:04Z,2020-02-15T06:59:51Z +6521,241,1,9944,5.99,2005-07-31T15:44:43Z,2020-02-15T06:59:51Z +6522,241,2,10447,3.99,2005-08-01T09:04:58Z,2020-02-15T06:59:51Z +6523,241,1,10652,2.99,2005-08-01T16:24:08Z,2020-02-15T06:59:51Z +6524,241,1,11423,1.99,2005-08-02T19:57:13Z,2020-02-15T06:59:51Z +6525,241,2,12418,4.99,2005-08-18T09:59:36Z,2020-02-15T06:59:51Z +6526,241,1,12956,4.99,2005-08-19T06:06:26Z,2020-02-15T06:59:51Z +6527,241,2,13077,2.99,2005-08-19T10:15:19Z,2020-02-15T06:59:51Z +6528,241,2,14269,7.99,2005-08-21T06:22:07Z,2020-02-15T06:59:51Z +6529,241,2,14485,2.99,2005-08-21T13:52:07Z,2020-02-15T06:59:51Z +6530,241,1,14936,0.99,2005-08-22T05:51:26Z,2020-02-15T06:59:51Z +6531,241,2,15137,2.99,2005-08-22T13:20:28Z,2020-02-15T06:59:51Z +6532,241,1,15429,2.99,2005-08-23T00:20:31Z,2020-02-15T06:59:51Z +6533,241,1,15767,4.99,2005-08-23T13:14:15Z,2020-02-15T06:59:51Z +6534,242,1,108,2.99,2005-05-25T18:30:05Z,2020-02-15T06:59:51Z +6535,242,2,283,3.99,2005-05-26T19:05:05Z,2020-02-15T06:59:51Z +6536,242,2,881,4.99,2005-05-30T06:15:36Z,2020-02-15T06:59:51Z +6537,242,2,1304,4.99,2005-06-15T09:56:02Z,2020-02-15T06:59:51Z +6538,242,1,1384,4.99,2005-06-15T15:22:03Z,2020-02-15T06:59:51Z +6539,242,1,1483,4.99,2005-06-15T21:21:58Z,2020-02-15T06:59:51Z +6540,242,2,1702,4.99,2005-06-16T13:21:05Z,2020-02-15T06:59:51Z +6541,242,1,2691,4.99,2005-06-19T13:06:50Z,2020-02-15T06:59:51Z +6542,242,2,2942,4.99,2005-06-20T05:27:31Z,2020-02-15T06:59:51Z +6543,242,1,3471,4.99,2005-07-05T22:51:44Z,2020-02-15T06:59:51Z +6544,242,2,3604,0.99,2005-07-06T05:25:22Z,2020-02-15T06:59:51Z +6545,242,1,4426,4.99,2005-07-07T22:28:32Z,2020-02-15T06:59:51Z +6546,242,2,4895,1.99,2005-07-08T20:22:05Z,2020-02-15T06:59:51Z +6547,242,2,5666,5.99,2005-07-10T08:10:29Z,2020-02-15T06:59:51Z +6548,242,2,7149,3.99,2005-07-27T07:10:40Z,2020-02-15T06:59:51Z +6549,242,1,8491,4.99,2005-07-29T09:02:13Z,2020-02-15T06:59:51Z +6550,242,1,9423,3.99,2005-07-30T21:10:14Z,2020-02-15T06:59:51Z +6551,242,1,9730,6.99,2005-07-31T08:50:08Z,2020-02-15T06:59:51Z +6552,242,2,10367,0.99,2005-08-01T06:12:19Z,2020-02-15T06:59:51Z +6553,242,2,10382,4.99,2005-08-01T06:36:45Z,2020-02-15T06:59:51Z +6554,242,2,10650,9.99,2005-08-01T16:18:45Z,2020-02-15T06:59:51Z +6555,242,2,11020,0.99,2005-08-02T05:29:48Z,2020-02-15T06:59:51Z +6556,242,1,11258,4.99,2005-08-02T13:45:39Z,2020-02-15T06:59:51Z +6557,242,2,11607,0.99,2005-08-17T03:36:06Z,2020-02-15T06:59:51Z +6558,242,1,11931,4.99,2005-08-17T16:35:14Z,2020-02-15T06:59:51Z +6559,242,2,12724,7.99,2005-08-18T21:37:20Z,2020-02-15T06:59:51Z +6560,242,1,12855,4.99,2005-08-19T02:18:58Z,2020-02-15T06:59:51Z +6561,242,1,13271,9.99,2005-08-19T17:42:06Z,2020-02-15T06:59:51Z +6562,242,2,13567,0.99,2005-08-20T04:49:21Z,2020-02-15T06:59:51Z +6563,242,2,13646,5.99,2005-08-20T07:47:08Z,2020-02-15T06:59:51Z +6564,242,1,14515,0.99,2005-08-21T14:52:14Z,2020-02-15T06:59:51Z +6565,242,1,15002,0.99,2005-08-22T08:06:00Z,2020-02-15T06:59:51Z +6566,243,1,188,4.99,2005-05-26T05:47:12Z,2020-02-15T06:59:51Z +6567,243,1,1405,5.99,2005-06-15T16:41:26Z,2020-02-15T06:59:51Z +6568,243,1,1452,0.99,2005-06-15T19:32:52Z,2020-02-15T06:59:51Z +6569,243,2,2757,5.99,2005-06-19T17:01:14Z,2020-02-15T06:59:51Z +6570,243,2,3854,5.99,2005-07-06T17:02:33Z,2020-02-15T06:59:51Z +6571,243,1,3965,4.99,2005-07-06T22:36:20Z,2020-02-15T06:59:51Z +6572,243,1,4831,0.99,2005-07-08T18:00:14Z,2020-02-15T06:59:51Z +6573,243,1,5502,0.99,2005-07-10T00:34:15Z,2020-02-15T06:59:51Z +6574,243,2,6038,3.99,2005-07-11T03:10:37Z,2020-02-15T06:59:51Z +6575,243,2,6820,2.99,2005-07-12T18:21:30Z,2020-02-15T06:59:51Z +6576,243,2,7022,2.99,2005-07-27T02:31:15Z,2020-02-15T06:59:51Z +6577,243,2,7165,0.99,2005-07-27T07:36:46Z,2020-02-15T06:59:51Z +6578,243,1,8834,4.99,2005-07-29T22:41:48Z,2020-02-15T06:59:51Z +6579,243,2,9035,2.99,2005-07-30T06:16:07Z,2020-02-15T06:59:51Z +6580,243,2,9514,4.99,2005-07-31T00:29:44Z,2020-02-15T06:59:51Z +6581,243,2,9675,2.99,2005-07-31T06:37:07Z,2020-02-15T06:59:51Z +6582,243,2,9988,5.99,2005-07-31T17:22:36Z,2020-02-15T06:59:51Z +6583,243,1,12209,2.99,2005-08-18T02:27:20Z,2020-02-15T06:59:51Z +6584,243,1,13291,2.99,2005-08-19T18:32:11Z,2020-02-15T06:59:51Z +6585,243,1,14033,2.99,2005-08-20T21:30:53Z,2020-02-15T06:59:51Z +6586,243,1,14108,0.99,2005-08-21T00:52:45Z,2020-02-15T06:59:51Z +6587,243,1,14272,3.99,2005-08-21T06:24:55Z,2020-02-15T06:59:51Z +6588,243,2,14581,1.99,2005-08-21T17:07:08Z,2020-02-15T06:59:51Z +6589,243,2,14705,2.99,2005-08-21T21:02:55Z,2020-02-15T06:59:51Z +6590,244,2,592,4.99,2005-05-28T13:21:08Z,2020-02-15T06:59:51Z +6591,244,1,797,1.99,2005-05-29T17:12:17Z,2020-02-15T06:59:51Z +6592,244,2,1189,6.99,2005-06-15T01:04:22Z,2020-02-15T06:59:51Z +6593,244,1,1595,5.99,2005-06-16T05:23:46Z,2020-02-15T06:59:51Z +6594,244,2,2955,3.99,2005-06-20T06:46:35Z,2020-02-15T06:59:51Z +6595,244,1,4814,4.99,2005-07-08T17:11:09Z,2020-02-15T06:59:51Z +6596,244,2,5387,4.99,2005-07-09T19:25:14Z,2020-02-15T06:59:51Z +6597,244,2,5461,0.99,2005-07-09T22:48:04Z,2020-02-15T06:59:51Z +6598,244,2,5692,0.99,2005-07-10T09:32:22Z,2020-02-15T06:59:51Z +6599,244,1,5779,4.99,2005-07-10T13:45:54Z,2020-02-15T06:59:51Z +6600,244,1,5803,3.99,2005-07-10T15:05:42Z,2020-02-15T06:59:51Z +6601,244,2,6374,4.99,2005-07-11T21:36:10Z,2020-02-15T06:59:51Z +6602,244,2,6608,2.99,2005-07-12T08:16:50Z,2020-02-15T06:59:51Z +6603,244,2,6683,2.99,2005-07-12T12:14:05Z,2020-02-15T06:59:51Z +6604,244,2,8454,0.99,2005-07-29T07:49:04Z,2020-02-15T06:59:51Z +6605,244,2,8844,5.99,2005-07-29T23:05:08Z,2020-02-15T06:59:51Z +6606,244,1,10001,4.99,2005-07-31T17:46:18Z,2020-02-15T06:59:51Z +6607,244,2,10047,4.99,2005-07-31T19:07:43Z,2020-02-15T06:59:51Z +6608,244,1,10152,5.99,2005-07-31T22:28:05Z,2020-02-15T06:59:51Z +6609,244,2,10684,6.99,2005-08-01T17:47:00Z,2020-02-15T06:59:51Z +6610,244,2,10969,2.99,2005-08-02T04:04:32Z,2020-02-15T06:59:51Z +6611,244,2,11157,0.99,2005-08-02T09:58:15Z,2020-02-15T06:59:51Z +6612,244,1,11267,9.99,2005-08-02T14:09:08Z,2020-02-15T06:59:51Z +6613,244,1,11762,9.99,2005-08-17T09:48:06Z,2020-02-15T06:59:51Z +6614,244,1,13630,4.99,2005-08-20T07:05:56Z,2020-02-15T06:59:51Z +6615,244,2,13774,0.99,2005-08-20T11:54:01Z,2020-02-15T06:59:51Z +6616,244,1,13928,0.99,2005-08-20T17:12:28Z,2020-02-15T06:59:51Z +6617,244,1,14367,0.99,2005-08-21T09:31:44Z,2020-02-15T06:59:51Z +6618,244,2,14657,0.99,2005-08-21T19:39:43Z,2020-02-15T06:59:51Z +6619,244,1,14919,1.99,2005-08-22T05:07:17Z,2020-02-15T06:59:51Z +6620,244,1,14975,3.99,2005-08-22T07:07:50Z,2020-02-15T06:59:51Z +6621,244,2,12736,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6622,245,2,79,4.99,2005-05-25T12:11:07Z,2020-02-15T06:59:51Z +6623,245,1,241,0.99,2005-05-26T12:49:01Z,2020-02-15T06:59:51Z +6624,245,1,519,7.99,2005-05-28T03:22:33Z,2020-02-15T06:59:51Z +6625,245,1,719,2.99,2005-05-29T05:16:05Z,2020-02-15T06:59:51Z +6626,245,2,725,2.99,2005-05-29T06:03:41Z,2020-02-15T06:59:51Z +6627,245,2,948,8.99,2005-05-30T15:44:27Z,2020-02-15T06:59:51Z +6628,245,1,1377,2.99,2005-06-15T15:02:03Z,2020-02-15T06:59:51Z +6629,245,1,2122,2.99,2005-06-17T20:48:27Z,2020-02-15T06:59:51Z +6630,245,1,3157,2.99,2005-06-20T21:07:54Z,2020-02-15T06:59:51Z +6631,245,1,3634,2.99,2005-07-06T06:51:14Z,2020-02-15T06:59:51Z +6632,245,2,5321,2.99,2005-07-09T16:26:33Z,2020-02-15T06:59:51Z +6633,245,1,5764,4.99,2005-07-10T12:58:16Z,2020-02-15T06:59:51Z +6634,245,2,6242,2.99,2005-07-11T14:45:04Z,2020-02-15T06:59:51Z +6635,245,1,6795,5.99,2005-07-12T16:41:00Z,2020-02-15T06:59:51Z +6636,245,2,6962,0.99,2005-07-27T00:10:58Z,2020-02-15T06:59:51Z +6637,245,1,7230,4.99,2005-07-27T10:01:41Z,2020-02-15T06:59:51Z +6638,245,2,7233,5.99,2005-07-27T10:08:36Z,2020-02-15T06:59:51Z +6639,245,1,7358,0.99,2005-07-27T14:49:44Z,2020-02-15T06:59:51Z +6640,245,2,7397,4.99,2005-07-27T16:05:00Z,2020-02-15T06:59:51Z +6641,245,2,8701,6.99,2005-07-29T17:02:35Z,2020-02-15T06:59:51Z +6642,245,1,8811,10.99,2005-07-29T21:46:21Z,2020-02-15T06:59:51Z +6643,245,2,9088,0.99,2005-07-30T08:21:02Z,2020-02-15T06:59:51Z +6644,245,2,9169,4.99,2005-07-30T11:35:00Z,2020-02-15T06:59:51Z +6645,245,1,9813,6.99,2005-07-31T11:29:23Z,2020-02-15T06:59:51Z +6646,245,1,10087,3.99,2005-07-31T20:15:22Z,2020-02-15T06:59:51Z +6647,245,2,11061,0.99,2005-08-02T06:50:18Z,2020-02-15T06:59:51Z +6648,245,1,11105,0.99,2005-08-02T08:13:31Z,2020-02-15T06:59:51Z +6649,245,1,11211,0.99,2005-08-02T12:16:48Z,2020-02-15T06:59:51Z +6650,245,1,12303,7.99,2005-08-18T05:43:22Z,2020-02-15T06:59:51Z +6651,245,1,13286,0.99,2005-08-19T18:28:07Z,2020-02-15T06:59:51Z +6652,245,1,15782,6.99,2005-08-23T13:43:26Z,2020-02-15T06:59:51Z +6653,245,2,12682,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6654,246,1,124,6.99,2005-05-25T20:46:11Z,2020-02-15T06:59:51Z +6655,246,2,421,8.99,2005-05-27T15:30:13Z,2020-02-15T06:59:51Z +6656,246,2,434,5.99,2005-05-27T16:54:27Z,2020-02-15T06:59:51Z +6657,246,1,699,3.99,2005-05-29T02:11:44Z,2020-02-15T06:59:51Z +6658,246,1,1051,4.99,2005-05-31T07:02:09Z,2020-02-15T06:59:51Z +6659,246,2,1448,1.99,2005-06-15T19:17:16Z,2020-02-15T06:59:51Z +6660,246,1,1968,2.99,2005-06-17T09:20:36Z,2020-02-15T06:59:51Z +6661,246,2,2704,1.99,2005-06-19T13:50:10Z,2020-02-15T06:59:51Z +6662,246,1,2725,0.99,2005-06-19T15:01:23Z,2020-02-15T06:59:51Z +6663,246,1,3152,4.99,2005-06-20T20:42:41Z,2020-02-15T06:59:51Z +6664,246,1,4092,7.99,2005-07-07T05:54:18Z,2020-02-15T06:59:51Z +6665,246,2,4905,4.99,2005-07-08T20:56:00Z,2020-02-15T06:59:51Z +6666,246,2,4994,2.99,2005-07-09T00:54:13Z,2020-02-15T06:59:51Z +6667,246,2,5347,0.99,2005-07-09T17:31:32Z,2020-02-15T06:59:51Z +6668,246,1,6688,4.99,2005-07-12T12:22:12Z,2020-02-15T06:59:51Z +6669,246,2,9525,5.99,2005-07-31T01:02:18Z,2020-02-15T06:59:51Z +6670,246,2,10208,4.99,2005-08-01T00:54:51Z,2020-02-15T06:59:51Z +6671,246,2,10683,2.99,2005-08-01T17:33:03Z,2020-02-15T06:59:51Z +6672,246,2,13418,5.99,2005-08-19T22:53:56Z,2020-02-15T06:59:51Z +6673,246,1,13750,6.99,2005-08-20T11:11:42Z,2020-02-15T06:59:51Z +6674,246,1,13987,4.99,2005-08-20T19:19:30Z,2020-02-15T06:59:51Z +6675,246,1,14360,6.99,2005-08-21T09:16:40Z,2020-02-15T06:59:51Z +6676,246,1,15746,2.99,2005-08-23T12:26:19Z,2020-02-15T06:59:51Z +6677,247,1,189,4.99,2005-05-26T06:01:41Z,2020-02-15T06:59:51Z +6678,247,2,448,3.99,2005-05-27T19:03:08Z,2020-02-15T06:59:51Z +6679,247,1,450,6.99,2005-05-27T19:18:54Z,2020-02-15T06:59:51Z +6680,247,1,2288,5.99,2005-06-18T07:23:17Z,2020-02-15T06:59:51Z +6681,247,2,3955,2.99,2005-07-06T21:58:08Z,2020-02-15T06:59:51Z +6682,247,2,4198,6.99,2005-07-07T11:08:11Z,2020-02-15T06:59:51Z +6683,247,1,4492,2.99,2005-07-08T01:32:04Z,2020-02-15T06:59:51Z +6684,247,2,4995,2.99,2005-07-09T00:57:46Z,2020-02-15T06:59:51Z +6685,247,1,5328,6.99,2005-07-09T16:48:29Z,2020-02-15T06:59:51Z +6686,247,1,5842,4.99,2005-07-10T17:11:37Z,2020-02-15T06:59:51Z +6687,247,1,7963,5.99,2005-07-28T13:48:38Z,2020-02-15T06:59:51Z +6688,247,1,10279,1.99,2005-08-01T03:26:44Z,2020-02-15T06:59:51Z +6689,247,1,10410,6.99,2005-08-01T07:53:29Z,2020-02-15T06:59:51Z +6690,247,2,11204,2.99,2005-08-02T11:56:31Z,2020-02-15T06:59:51Z +6691,247,2,11306,2.99,2005-08-02T15:45:10Z,2020-02-15T06:59:51Z +6692,247,1,11495,0.99,2005-08-16T22:51:20Z,2020-02-15T06:59:51Z +6693,247,2,12265,4.99,2005-08-18T04:22:01Z,2020-02-15T06:59:51Z +6694,247,1,12482,7.99,2005-08-18T12:37:36Z,2020-02-15T06:59:51Z +6695,247,1,12491,4.99,2005-08-18T12:48:45Z,2020-02-15T06:59:51Z +6696,247,1,12824,4.99,2005-08-19T01:18:00Z,2020-02-15T06:59:51Z +6697,247,1,14041,4.99,2005-08-20T21:45:23Z,2020-02-15T06:59:51Z +6698,247,1,15783,4.99,2005-08-23T13:45:44Z,2020-02-15T06:59:51Z +6699,248,2,330,7.99,2005-05-27T02:15:30Z,2020-02-15T06:59:51Z +6700,248,1,618,4.99,2005-05-28T15:50:07Z,2020-02-15T06:59:51Z +6701,248,1,2066,3.99,2005-06-17T16:07:08Z,2020-02-15T06:59:51Z +6702,248,2,2371,0.99,2005-06-18T14:35:29Z,2020-02-15T06:59:51Z +6703,248,1,3910,0.99,2005-07-06T20:05:18Z,2020-02-15T06:59:51Z +6704,248,2,4541,4.99,2005-07-08T04:04:19Z,2020-02-15T06:59:51Z +6705,248,1,4841,0.99,2005-07-08T18:18:23Z,2020-02-15T06:59:51Z +6706,248,1,5370,2.99,2005-07-09T18:43:19Z,2020-02-15T06:59:51Z +6707,248,2,6617,2.99,2005-07-12T08:39:56Z,2020-02-15T06:59:51Z +6708,248,2,7778,5.99,2005-07-28T07:10:11Z,2020-02-15T06:59:51Z +6709,248,2,10418,4.99,2005-08-01T08:11:07Z,2020-02-15T06:59:51Z +6710,248,1,12241,0.99,2005-08-18T03:33:17Z,2020-02-15T06:59:51Z +6711,248,1,13918,0.99,2005-08-20T16:47:32Z,2020-02-15T06:59:51Z +6712,248,2,14704,0.99,2005-08-21T21:02:22Z,2020-02-15T06:59:51Z +6713,248,2,14885,5.99,2005-08-22T03:58:29Z,2020-02-15T06:59:51Z +6714,249,2,316,4.99,2005-05-26T23:22:55Z,2020-02-15T06:59:51Z +6715,249,2,400,2.99,2005-05-27T12:51:44Z,2020-02-15T06:59:51Z +6716,249,1,438,6.99,2005-05-27T17:52:34Z,2020-02-15T06:59:51Z +6717,249,1,597,3.99,2005-05-28T14:01:02Z,2020-02-15T06:59:51Z +6718,249,1,1204,0.99,2005-06-15T02:21:46Z,2020-02-15T06:59:51Z +6719,249,1,1473,5.99,2005-06-15T20:55:20Z,2020-02-15T06:59:51Z +6720,249,2,1753,2.99,2005-06-16T17:08:17Z,2020-02-15T06:59:51Z +6721,249,2,2129,1.99,2005-06-17T20:58:32Z,2020-02-15T06:59:51Z +6722,249,2,3175,7.99,2005-06-20T22:30:23Z,2020-02-15T06:59:51Z +6723,249,1,4352,9.99,2005-07-07T19:15:58Z,2020-02-15T06:59:51Z +6724,249,1,5011,4.99,2005-07-09T01:44:40Z,2020-02-15T06:59:51Z +6725,249,1,5275,4.99,2005-07-09T14:34:18Z,2020-02-15T06:59:51Z +6726,249,2,5639,3.99,2005-07-10T06:33:39Z,2020-02-15T06:59:51Z +6727,249,2,6670,7.99,2005-07-12T11:44:33Z,2020-02-15T06:59:51Z +6728,249,1,7544,7.99,2005-07-27T21:47:37Z,2020-02-15T06:59:51Z +6729,249,1,7804,2.99,2005-07-28T07:56:00Z,2020-02-15T06:59:51Z +6730,249,2,7881,4.99,2005-07-28T10:33:22Z,2020-02-15T06:59:51Z +6731,249,1,11124,1.99,2005-08-02T08:55:25Z,2020-02-15T06:59:51Z +6732,249,1,11159,4.99,2005-08-02T10:00:55Z,2020-02-15T06:59:51Z +6733,249,2,11668,0.99,2005-08-17T05:47:32Z,2020-02-15T06:59:51Z +6734,249,2,13981,4.99,2005-08-20T19:07:20Z,2020-02-15T06:59:51Z +6735,249,2,14285,0.99,2005-08-21T06:50:48Z,2020-02-15T06:59:51Z +6736,249,1,15160,6.99,2005-08-22T14:33:50Z,2020-02-15T06:59:51Z +6737,250,1,61,5.99,2005-05-25T09:01:57Z,2020-02-15T06:59:51Z +6738,250,1,176,3.99,2005-05-26T03:47:39Z,2020-02-15T06:59:51Z +6739,250,1,637,4.99,2005-05-28T18:14:29Z,2020-02-15T06:59:51Z +6740,250,2,687,0.99,2005-05-29T00:32:09Z,2020-02-15T06:59:51Z +6741,250,1,1146,2.99,2005-05-31T20:34:45Z,2020-02-15T06:59:51Z +6742,250,1,2432,4.99,2005-06-18T17:59:18Z,2020-02-15T06:59:51Z +6743,250,1,3635,4.99,2005-07-06T06:55:36Z,2020-02-15T06:59:51Z +6744,250,1,3951,3.99,2005-07-06T21:50:41Z,2020-02-15T06:59:51Z +6745,250,1,5479,2.99,2005-07-09T23:47:33Z,2020-02-15T06:59:51Z +6746,250,1,5540,0.99,2005-07-10T02:44:21Z,2020-02-15T06:59:51Z +6747,250,1,5998,2.99,2005-07-11T01:20:46Z,2020-02-15T06:59:51Z +6748,250,1,8579,2.99,2005-07-29T11:59:22Z,2020-02-15T06:59:51Z +6749,250,2,9099,0.99,2005-07-30T08:45:48Z,2020-02-15T06:59:51Z +6750,250,2,10604,4.99,2005-08-01T14:35:08Z,2020-02-15T06:59:51Z +6751,250,1,12361,0.99,2005-08-18T07:47:31Z,2020-02-15T06:59:51Z +6752,250,1,12810,0.99,2005-08-19T00:44:10Z,2020-02-15T06:59:51Z +6753,250,2,14565,4.99,2005-08-21T16:24:45Z,2020-02-15T06:59:51Z +6754,250,1,14587,5.99,2005-08-21T17:20:55Z,2020-02-15T06:59:51Z +6755,250,2,14814,4.99,2005-08-22T01:12:14Z,2020-02-15T06:59:51Z +6756,250,2,15247,6.99,2005-08-22T17:52:05Z,2020-02-15T06:59:51Z +6757,251,1,264,2.99,2005-05-26T16:00:49Z,2020-02-15T06:59:51Z +6758,251,1,309,1.99,2005-05-26T22:38:10Z,2020-02-15T06:59:51Z +6759,251,2,393,2.99,2005-05-27T11:18:25Z,2020-02-15T06:59:51Z +6760,251,2,1069,3.99,2005-05-31T09:32:31Z,2020-02-15T06:59:51Z +6761,251,1,1091,4.99,2005-05-31T12:11:04Z,2020-02-15T06:59:51Z +6762,251,2,1155,2.99,2005-05-31T22:17:11Z,2020-02-15T06:59:51Z +6763,251,1,2238,6.99,2005-06-18T04:22:06Z,2020-02-15T06:59:51Z +6764,251,2,3422,7.99,2005-06-21T17:24:40Z,2020-02-15T06:59:51Z +6765,251,1,3464,2.99,2005-06-21T22:08:58Z,2020-02-15T06:59:51Z +6766,251,1,3799,4.99,2005-07-06T15:00:14Z,2020-02-15T06:59:51Z +6767,251,2,4026,3.99,2005-07-07T02:15:48Z,2020-02-15T06:59:51Z +6768,251,2,4848,2.99,2005-07-08T18:30:16Z,2020-02-15T06:59:51Z +6769,251,2,5012,2.99,2005-07-09T01:45:04Z,2020-02-15T06:59:51Z +6770,251,2,5979,2.99,2005-07-11T00:17:09Z,2020-02-15T06:59:51Z +6771,251,2,6413,6.99,2005-07-11T23:26:11Z,2020-02-15T06:59:51Z +6772,251,2,7338,8.99,2005-07-27T14:13:34Z,2020-02-15T06:59:51Z +6773,251,2,8443,2.99,2005-07-29T07:33:12Z,2020-02-15T06:59:51Z +6774,251,2,8982,0.99,2005-07-30T04:31:02Z,2020-02-15T06:59:51Z +6775,251,1,9196,2.99,2005-07-30T12:30:19Z,2020-02-15T06:59:51Z +6776,251,1,9892,0.99,2005-07-31T14:06:25Z,2020-02-15T06:59:51Z +6777,251,1,10575,7.99,2005-08-01T13:41:41Z,2020-02-15T06:59:51Z +6778,251,1,11733,0.99,2005-08-17T08:31:03Z,2020-02-15T06:59:51Z +6779,251,2,12047,3.99,2005-08-17T20:48:32Z,2020-02-15T06:59:51Z +6780,251,2,12666,4.99,2005-08-18T19:11:41Z,2020-02-15T06:59:51Z +6781,251,2,13121,2.99,2005-08-19T11:51:39Z,2020-02-15T06:59:51Z +6782,251,1,13243,2.99,2005-08-19T16:33:16Z,2020-02-15T06:59:51Z +6783,251,2,13260,6.99,2005-08-19T17:09:22Z,2020-02-15T06:59:51Z +6784,251,1,14292,0.99,2005-08-21T07:06:20Z,2020-02-15T06:59:51Z +6785,251,2,15647,2.99,2005-08-23T08:23:56Z,2020-02-15T06:59:51Z +6786,251,2,15870,4.99,2005-08-23T16:23:08Z,2020-02-15T06:59:51Z +6787,251,1,14107,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6788,252,1,707,4.99,2005-05-29T03:18:19Z,2020-02-15T06:59:51Z +6789,252,1,1095,0.99,2005-05-31T13:15:41Z,2020-02-15T06:59:51Z +6790,252,1,1395,5.99,2005-06-15T16:21:04Z,2020-02-15T06:59:51Z +6791,252,2,2716,4.99,2005-06-19T14:40:17Z,2020-02-15T06:59:51Z +6792,252,1,2968,0.99,2005-06-20T07:41:47Z,2020-02-15T06:59:51Z +6793,252,2,4372,0.99,2005-07-07T20:09:01Z,2020-02-15T06:59:51Z +6794,252,2,5554,2.99,2005-07-10T03:03:38Z,2020-02-15T06:59:51Z +6795,252,1,6357,0.99,2005-07-11T20:58:51Z,2020-02-15T06:59:51Z +6796,252,2,6369,0.99,2005-07-11T21:23:36Z,2020-02-15T06:59:51Z +6797,252,1,7024,4.99,2005-07-27T02:36:40Z,2020-02-15T06:59:51Z +6798,252,2,7121,0.99,2005-07-27T05:58:32Z,2020-02-15T06:59:51Z +6799,252,2,7168,0.99,2005-07-27T07:51:11Z,2020-02-15T06:59:51Z +6800,252,1,7670,0.99,2005-07-28T02:44:25Z,2020-02-15T06:59:51Z +6801,252,1,8636,5.99,2005-07-29T14:24:13Z,2020-02-15T06:59:51Z +6802,252,1,8899,0.99,2005-07-30T01:05:30Z,2020-02-15T06:59:51Z +6803,252,2,10314,0.99,2005-08-01T04:31:18Z,2020-02-15T06:59:51Z +6804,252,2,10834,2.99,2005-08-01T23:28:00Z,2020-02-15T06:59:51Z +6805,252,2,11764,0.99,2005-08-17T09:51:54Z,2020-02-15T06:59:51Z +6806,252,1,13385,4.99,2005-08-19T21:39:35Z,2020-02-15T06:59:51Z +6807,252,2,13989,5.99,2005-08-20T19:27:50Z,2020-02-15T06:59:51Z +6808,252,1,14774,4.99,2005-08-21T23:52:32Z,2020-02-15T06:59:51Z +6809,252,2,13756,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +6810,253,1,566,6.99,2005-05-28T09:51:39Z,2020-02-15T06:59:51Z +6811,253,1,648,0.99,2005-05-28T19:25:54Z,2020-02-15T06:59:51Z +6812,253,1,986,2.99,2005-05-30T22:22:52Z,2020-02-15T06:59:51Z +6813,253,2,1378,1.99,2005-06-15T15:03:15Z,2020-02-15T06:59:51Z +6814,253,2,1606,6.99,2005-06-16T06:18:31Z,2020-02-15T06:59:51Z +6815,253,2,2081,5.99,2005-06-17T17:05:02Z,2020-02-15T06:59:51Z +6816,253,1,2142,4.99,2005-06-17T21:55:43Z,2020-02-15T06:59:51Z +6817,253,1,2454,4.99,2005-06-18T19:32:51Z,2020-02-15T06:59:51Z +6818,253,2,2636,4.99,2005-06-19T09:13:06Z,2020-02-15T06:59:51Z +6819,253,1,3658,7.99,2005-07-06T08:01:08Z,2020-02-15T06:59:51Z +6820,253,1,5505,2.99,2005-07-10T00:38:48Z,2020-02-15T06:59:51Z +6821,253,1,5602,4.99,2005-07-10T05:02:22Z,2020-02-15T06:59:51Z +6822,253,2,7689,2.99,2005-07-28T03:21:24Z,2020-02-15T06:59:51Z +6823,253,2,7851,0.99,2005-07-28T09:31:58Z,2020-02-15T06:59:51Z +6824,253,2,7887,2.99,2005-07-28T10:40:12Z,2020-02-15T06:59:51Z +6825,253,2,8752,2.99,2005-07-29T19:15:07Z,2020-02-15T06:59:51Z +6826,253,2,9606,0.99,2005-07-31T03:50:46Z,2020-02-15T06:59:51Z +6827,253,2,9618,6.99,2005-07-31T04:16:14Z,2020-02-15T06:59:51Z +6828,253,2,10404,4.99,2005-08-01T07:31:25Z,2020-02-15T06:59:51Z +6829,253,1,10660,2.99,2005-08-01T16:48:01Z,2020-02-15T06:59:51Z +6830,253,2,10881,6.99,2005-08-02T00:38:14Z,2020-02-15T06:59:51Z +6831,253,1,12572,0.99,2005-08-18T15:32:54Z,2020-02-15T06:59:51Z +6832,253,2,12827,5.99,2005-08-19T01:27:23Z,2020-02-15T06:59:51Z +6833,253,1,13126,5.99,2005-08-19T12:00:28Z,2020-02-15T06:59:51Z +6834,253,2,14086,3.99,2005-08-20T23:47:54Z,2020-02-15T06:59:51Z +6835,253,2,14283,4.99,2005-08-21T06:44:14Z,2020-02-15T06:59:51Z +6836,253,1,14640,7.99,2005-08-21T19:03:19Z,2020-02-15T06:59:51Z +6837,253,2,14655,4.99,2005-08-21T19:37:10Z,2020-02-15T06:59:51Z +6838,253,2,15221,2.99,2005-08-22T17:12:29Z,2020-02-15T06:59:51Z +6839,254,1,183,2.99,2005-05-26T05:01:18Z,2020-02-15T06:59:51Z +6840,254,1,1108,5.99,2005-05-31T15:05:12Z,2020-02-15T06:59:51Z +6841,254,1,1285,2.99,2005-06-15T08:33:06Z,2020-02-15T06:59:51Z +6842,254,2,1390,0.99,2005-06-15T16:06:29Z,2020-02-15T06:59:51Z +6843,254,1,2082,2.99,2005-06-17T17:13:32Z,2020-02-15T06:59:51Z +6844,254,1,2138,2.99,2005-06-17T21:28:14Z,2020-02-15T06:59:51Z +6845,254,2,2687,3.99,2005-06-19T12:46:52Z,2020-02-15T06:59:51Z +6846,254,1,3882,4.99,2005-07-06T18:38:21Z,2020-02-15T06:59:51Z +6847,254,2,5042,2.99,2005-07-09T03:20:30Z,2020-02-15T06:59:51Z +6848,254,1,5072,3.99,2005-07-09T05:01:58Z,2020-02-15T06:59:51Z +6849,254,2,5080,2.99,2005-07-09T05:23:55Z,2020-02-15T06:59:51Z +6850,254,1,5537,0.99,2005-07-10T02:35:41Z,2020-02-15T06:59:51Z +6851,254,1,5550,5.99,2005-07-10T02:58:35Z,2020-02-15T06:59:51Z +6852,254,1,5826,7.99,2005-07-10T16:21:02Z,2020-02-15T06:59:51Z +6853,254,2,5930,4.99,2005-07-10T21:59:32Z,2020-02-15T06:59:51Z +6854,254,2,7011,0.99,2005-07-27T01:58:34Z,2020-02-15T06:59:51Z +6855,254,1,7413,4.99,2005-07-27T16:45:40Z,2020-02-15T06:59:51Z +6856,254,2,8216,7.99,2005-07-28T23:43:59Z,2020-02-15T06:59:51Z +6857,254,2,8581,4.99,2005-07-29T12:02:06Z,2020-02-15T06:59:51Z +6858,254,2,9494,1.99,2005-07-30T23:52:46Z,2020-02-15T06:59:51Z +6859,254,1,10522,4.99,2005-08-01T11:48:51Z,2020-02-15T06:59:51Z +6860,254,1,11190,0.99,2005-08-02T11:21:34Z,2020-02-15T06:59:51Z +6861,254,1,11665,6.99,2005-08-17T05:36:57Z,2020-02-15T06:59:51Z +6862,254,2,12148,0.99,2005-08-18T00:13:15Z,2020-02-15T06:59:51Z +6863,254,1,12206,0.99,2005-08-18T02:22:20Z,2020-02-15T06:59:51Z +6864,254,1,12247,2.99,2005-08-18T03:51:51Z,2020-02-15T06:59:51Z +6865,254,1,12874,0.99,2005-08-19T03:07:57Z,2020-02-15T06:59:51Z +6866,254,2,13001,4.99,2005-08-19T07:36:44Z,2020-02-15T06:59:51Z +6867,254,1,13045,4.99,2005-08-19T09:17:35Z,2020-02-15T06:59:51Z +6868,254,2,13130,2.99,2005-08-19T12:06:42Z,2020-02-15T06:59:51Z +6869,254,2,14497,4.99,2005-08-21T14:09:47Z,2020-02-15T06:59:51Z +6870,254,1,15774,0.99,2005-08-23T13:25:08Z,2020-02-15T06:59:51Z +6871,255,1,1235,2.99,2005-06-15T04:31:28Z,2020-02-15T06:59:51Z +6872,255,1,1420,6.99,2005-06-15T17:56:14Z,2020-02-15T06:59:51Z +6873,255,2,1681,2.99,2005-06-16T11:38:17Z,2020-02-15T06:59:51Z +6874,255,2,3442,2.99,2005-06-21T20:06:51Z,2020-02-15T06:59:51Z +6875,255,1,4547,0.99,2005-07-08T04:20:19Z,2020-02-15T06:59:51Z +6876,255,1,5706,1.99,2005-07-10T10:21:46Z,2020-02-15T06:59:51Z +6877,255,1,5943,0.99,2005-07-10T22:48:13Z,2020-02-15T06:59:51Z +6878,255,2,7475,8.99,2005-07-27T19:07:43Z,2020-02-15T06:59:51Z +6879,255,1,7646,2.99,2005-07-28T01:31:45Z,2020-02-15T06:59:51Z +6880,255,1,8562,0.99,2005-07-29T11:32:13Z,2020-02-15T06:59:51Z +6881,255,1,9061,6.99,2005-07-30T07:21:52Z,2020-02-15T06:59:51Z +6882,255,2,11979,4.99,2005-08-17T18:07:13Z,2020-02-15T06:59:51Z +6883,255,2,12176,7.99,2005-08-18T01:10:33Z,2020-02-15T06:59:51Z +6884,255,2,13154,2.99,2005-08-19T13:09:54Z,2020-02-15T06:59:51Z +6885,255,1,13268,0.99,2005-08-19T17:33:50Z,2020-02-15T06:59:51Z +6886,255,2,13683,0.99,2005-08-20T08:54:55Z,2020-02-15T06:59:51Z +6887,255,1,13758,8.99,2005-08-20T11:21:26Z,2020-02-15T06:59:51Z +6888,255,2,14600,3.99,2005-08-21T17:45:21Z,2020-02-15T06:59:51Z +6889,256,1,51,4.99,2005-05-25T06:49:10Z,2020-02-15T06:59:51Z +6890,256,1,232,0.99,2005-05-26T11:38:05Z,2020-02-15T06:59:51Z +6891,256,2,738,4.99,2005-05-29T08:20:08Z,2020-02-15T06:59:51Z +6892,256,1,935,2.99,2005-05-30T13:29:36Z,2020-02-15T06:59:51Z +6893,256,1,1116,0.99,2005-05-31T16:10:46Z,2020-02-15T06:59:51Z +6894,256,1,1555,2.99,2005-06-16T02:17:07Z,2020-02-15T06:59:51Z +6895,256,2,1965,0.99,2005-06-17T09:17:39Z,2020-02-15T06:59:51Z +6896,256,2,1973,4.99,2005-06-17T09:26:15Z,2020-02-15T06:59:51Z +6897,256,2,2230,4.99,2005-06-18T03:50:49Z,2020-02-15T06:59:51Z +6898,256,1,2380,6.99,2005-06-18T15:00:04Z,2020-02-15T06:59:51Z +6899,256,2,2561,4.99,2005-06-19T03:14:52Z,2020-02-15T06:59:51Z +6900,256,1,2839,4.99,2005-06-19T22:07:24Z,2020-02-15T06:59:51Z +6901,256,1,4130,0.99,2005-07-07T07:51:53Z,2020-02-15T06:59:51Z +6902,256,2,4182,0.99,2005-07-07T10:28:00Z,2020-02-15T06:59:51Z +6903,256,1,5179,2.99,2005-07-09T10:00:44Z,2020-02-15T06:59:51Z +6904,256,1,6298,0.99,2005-07-11T17:42:33Z,2020-02-15T06:59:51Z +6905,256,1,7661,3.99,2005-07-28T02:10:27Z,2020-02-15T06:59:51Z +6906,256,2,9424,2.99,2005-07-30T21:10:56Z,2020-02-15T06:59:51Z +6907,256,2,10759,4.99,2005-08-01T20:22:51Z,2020-02-15T06:59:51Z +6908,256,2,11011,2.99,2005-08-02T05:07:07Z,2020-02-15T06:59:51Z +6909,256,2,11628,8.99,2005-08-17T04:27:18Z,2020-02-15T06:59:51Z +6910,256,2,13457,0.99,2005-08-20T00:33:22Z,2020-02-15T06:59:51Z +6911,256,1,13651,0.99,2005-08-20T07:50:08Z,2020-02-15T06:59:51Z +6912,256,1,14003,6.99,2005-08-20T20:16:06Z,2020-02-15T06:59:51Z +6913,256,2,14036,4.99,2005-08-20T21:35:27Z,2020-02-15T06:59:51Z +6914,256,2,14445,2.99,2005-08-21T12:07:42Z,2020-02-15T06:59:51Z +6915,256,2,14458,3.99,2005-08-21T12:47:53Z,2020-02-15T06:59:51Z +6916,256,2,15609,2.99,2005-08-23T06:56:04Z,2020-02-15T06:59:51Z +6917,256,2,15861,4.99,2005-08-23T16:15:45Z,2020-02-15T06:59:51Z +6918,256,1,15864,7.99,2005-08-23T16:18:12Z,2020-02-15T06:59:51Z +6919,257,2,139,2.99,2005-05-25T23:00:21Z,2020-02-15T06:59:51Z +6920,257,2,244,2.99,2005-05-26T13:40:40Z,2020-02-15T06:59:51Z +6921,257,2,705,2.99,2005-05-29T02:48:52Z,2020-02-15T06:59:51Z +6922,257,1,2557,0.99,2005-06-19T03:08:51Z,2020-02-15T06:59:51Z +6923,257,2,3083,4.99,2005-06-20T15:33:47Z,2020-02-15T06:59:51Z +6924,257,2,4462,6.99,2005-07-08T00:02:49Z,2020-02-15T06:59:51Z +6925,257,2,4574,4.99,2005-07-08T05:39:42Z,2020-02-15T06:59:51Z +6926,257,1,5495,6.99,2005-07-10T00:16:54Z,2020-02-15T06:59:51Z +6927,257,1,5858,4.99,2005-07-10T18:00:07Z,2020-02-15T06:59:51Z +6928,257,1,6422,5.99,2005-07-11T23:46:19Z,2020-02-15T06:59:51Z +6929,257,2,6711,5.99,2005-07-12T13:23:40Z,2020-02-15T06:59:51Z +6930,257,2,7007,4.99,2005-07-27T01:43:39Z,2020-02-15T06:59:51Z +6931,257,1,7176,2.99,2005-07-27T08:04:28Z,2020-02-15T06:59:51Z +6932,257,1,7496,1.99,2005-07-27T20:04:05Z,2020-02-15T06:59:51Z +6933,257,2,7510,2.99,2005-07-27T20:37:57Z,2020-02-15T06:59:51Z +6934,257,2,7518,5.99,2005-07-27T21:01:16Z,2020-02-15T06:59:51Z +6935,257,2,8156,3.99,2005-07-28T20:59:04Z,2020-02-15T06:59:51Z +6936,257,2,8252,2.99,2005-07-29T00:54:17Z,2020-02-15T06:59:51Z +6937,257,1,8344,4.99,2005-07-29T04:45:25Z,2020-02-15T06:59:51Z +6938,257,1,8640,4.99,2005-07-29T14:34:17Z,2020-02-15T06:59:51Z +6939,257,2,8946,6.99,2005-07-30T03:14:53Z,2020-02-15T06:59:51Z +6940,257,1,9800,4.99,2005-07-31T11:00:58Z,2020-02-15T06:59:51Z +6941,257,2,10142,4.99,2005-07-31T22:10:54Z,2020-02-15T06:59:51Z +6942,257,1,11230,4.99,2005-08-02T12:59:08Z,2020-02-15T06:59:51Z +6943,257,1,11394,0.99,2005-08-02T18:44:45Z,2020-02-15T06:59:51Z +6944,257,2,11545,6.99,2005-08-17T00:56:06Z,2020-02-15T06:59:51Z +6945,257,2,11860,1.99,2005-08-17T13:52:26Z,2020-02-15T06:59:51Z +6946,257,2,12841,2.99,2005-08-19T01:55:55Z,2020-02-15T06:59:51Z +6947,257,1,12904,5.99,2005-08-19T04:10:50Z,2020-02-15T06:59:51Z +6948,257,2,13203,7.99,2005-08-19T15:00:58Z,2020-02-15T06:59:51Z +6949,257,2,13218,0.99,2005-08-19T15:39:39Z,2020-02-15T06:59:51Z +6950,257,1,13389,2.99,2005-08-19T21:52:51Z,2020-02-15T06:59:51Z +6951,257,2,13846,5.99,2005-08-20T14:32:31Z,2020-02-15T06:59:51Z +6952,257,2,14115,0.99,2005-08-21T01:10:29Z,2020-02-15T06:59:51Z +6953,257,1,15025,0.99,2005-08-22T08:57:24Z,2020-02-15T06:59:51Z +6954,257,1,15967,2.99,2005-08-23T19:50:06Z,2020-02-15T06:59:51Z +6955,257,2,15968,0.99,2005-08-23T19:51:29Z,2020-02-15T06:59:51Z +6956,258,1,1743,2.99,2005-06-16T16:38:10Z,2020-02-15T06:59:51Z +6957,258,2,2678,0.99,2005-06-19T12:12:23Z,2020-02-15T06:59:51Z +6958,258,2,2931,8.99,2005-06-20T04:50:45Z,2020-02-15T06:59:51Z +6959,258,2,4408,2.99,2005-07-07T21:41:06Z,2020-02-15T06:59:51Z +6960,258,1,4677,5.99,2005-07-08T10:30:36Z,2020-02-15T06:59:51Z +6961,258,2,4897,0.99,2005-07-08T20:25:11Z,2020-02-15T06:59:51Z +6962,258,2,5312,5.99,2005-07-09T16:03:09Z,2020-02-15T06:59:51Z +6963,258,1,5674,0.99,2005-07-10T08:26:26Z,2020-02-15T06:59:51Z +6964,258,1,5935,9.99,2005-07-10T22:11:04Z,2020-02-15T06:59:51Z +6965,258,2,6012,4.99,2005-07-11T02:00:12Z,2020-02-15T06:59:51Z +6966,258,1,7814,2.99,2005-07-28T08:09:48Z,2020-02-15T06:59:51Z +6967,258,1,8675,4.99,2005-07-29T15:56:18Z,2020-02-15T06:59:51Z +6968,258,2,9069,4.99,2005-07-30T07:39:59Z,2020-02-15T06:59:51Z +6969,258,2,10293,1.99,2005-08-01T03:44:26Z,2020-02-15T06:59:51Z +6970,258,2,10315,4.99,2005-08-01T04:34:45Z,2020-02-15T06:59:51Z +6971,258,1,10325,5.99,2005-08-01T04:52:12Z,2020-02-15T06:59:51Z +6972,258,2,10332,6.99,2005-08-01T04:57:32Z,2020-02-15T06:59:51Z +6973,258,1,10393,0.99,2005-08-01T06:52:50Z,2020-02-15T06:59:51Z +6974,258,1,12246,5.99,2005-08-18T03:48:41Z,2020-02-15T06:59:51Z +6975,258,2,12296,3.99,2005-08-18T05:16:28Z,2020-02-15T06:59:51Z +6976,258,1,13491,4.99,2005-08-20T01:30:56Z,2020-02-15T06:59:51Z +6977,258,1,13695,6.99,2005-08-20T09:13:25Z,2020-02-15T06:59:51Z +6978,258,2,13897,2.99,2005-08-20T16:02:28Z,2020-02-15T06:59:51Z +6979,258,2,14901,6.99,2005-08-22T04:31:37Z,2020-02-15T06:59:51Z +6980,259,2,722,6.99,2005-05-29T05:30:31Z,2020-02-15T06:59:51Z +6981,259,2,901,2.99,2005-05-30T09:40:40Z,2020-02-15T06:59:51Z +6982,259,1,1147,5.99,2005-05-31T20:37:52Z,2020-02-15T06:59:51Z +6983,259,1,1641,7.99,2005-06-16T08:46:26Z,2020-02-15T06:59:51Z +6984,259,2,1723,7.99,2005-06-16T15:14:18Z,2020-02-15T06:59:51Z +6985,259,2,1813,2.99,2005-06-16T21:11:00Z,2020-02-15T06:59:51Z +6986,259,2,2375,5.99,2005-06-18T14:47:29Z,2020-02-15T06:59:51Z +6987,259,2,4199,5.99,2005-07-07T11:13:07Z,2020-02-15T06:59:51Z +6988,259,2,4489,4.99,2005-07-08T01:23:58Z,2020-02-15T06:59:51Z +6989,259,1,6074,0.99,2005-07-11T04:59:56Z,2020-02-15T06:59:51Z +6990,259,2,6539,3.99,2005-07-12T04:50:49Z,2020-02-15T06:59:51Z +6991,259,2,7188,2.99,2005-07-27T08:32:08Z,2020-02-15T06:59:51Z +6992,259,2,7774,7.99,2005-07-28T07:03:25Z,2020-02-15T06:59:51Z +6993,259,1,7817,4.99,2005-07-28T08:20:55Z,2020-02-15T06:59:51Z +6994,259,2,9205,6.99,2005-07-30T12:46:40Z,2020-02-15T06:59:51Z +6995,259,1,9282,6.99,2005-07-30T15:17:31Z,2020-02-15T06:59:51Z +6996,259,1,9444,7.99,2005-07-30T21:48:44Z,2020-02-15T06:59:51Z +6997,259,1,10510,3.99,2005-08-01T11:28:30Z,2020-02-15T06:59:51Z +6998,259,1,10781,2.99,2005-08-01T21:22:41Z,2020-02-15T06:59:51Z +6999,259,1,11184,3.99,2005-08-02T11:01:26Z,2020-02-15T06:59:51Z +7000,259,2,12680,6.99,2005-08-18T19:43:46Z,2020-02-15T06:59:51Z +7001,259,1,13109,4.99,2005-08-19T11:23:20Z,2020-02-15T06:59:51Z +7002,259,2,13112,2.99,2005-08-19T11:27:10Z,2020-02-15T06:59:51Z +7003,259,2,13366,4.99,2005-08-19T21:14:45Z,2020-02-15T06:59:51Z +7004,259,1,13598,5.99,2005-08-20T05:59:17Z,2020-02-15T06:59:51Z +7005,259,2,13649,4.99,2005-08-20T07:48:38Z,2020-02-15T06:59:51Z +7006,259,2,14067,6.99,2005-08-20T22:49:23Z,2020-02-15T06:59:51Z +7007,259,2,14170,4.99,2005-08-21T03:00:39Z,2020-02-15T06:59:51Z +7008,259,2,14966,2.99,2005-08-22T06:45:57Z,2020-02-15T06:59:51Z +7009,259,1,15425,10.99,2005-08-23T00:05:57Z,2020-02-15T06:59:51Z +7010,259,1,15473,2.99,2005-08-23T01:39:10Z,2020-02-15T06:59:51Z +7011,259,2,,1.99,2005-08-23T06:13:16Z,2020-02-15T06:59:51Z +7012,259,1,15689,2.99,2005-08-23T09:52:55Z,2020-02-15T06:59:51Z +7013,260,1,1101,8.99,2005-05-31T14:13:59Z,2020-02-15T06:59:51Z +7014,260,1,1626,3.99,2005-06-16T07:49:47Z,2020-02-15T06:59:51Z +7015,260,2,2001,2.99,2005-06-17T11:35:09Z,2020-02-15T06:59:51Z +7016,260,2,2040,2.99,2005-06-17T14:18:37Z,2020-02-15T06:59:51Z +7017,260,1,2091,10.99,2005-06-17T18:09:04Z,2020-02-15T06:59:51Z +7018,260,1,2178,0.99,2005-06-18T00:38:35Z,2020-02-15T06:59:51Z +7019,260,1,2823,7.99,2005-06-19T20:30:21Z,2020-02-15T06:59:51Z +7020,260,2,2958,3.99,2005-06-20T06:56:20Z,2020-02-15T06:59:51Z +7021,260,1,3193,0.99,2005-06-20T23:52:30Z,2020-02-15T06:59:51Z +7022,260,2,4054,0.99,2005-07-07T03:42:07Z,2020-02-15T06:59:51Z +7023,260,2,4741,6.99,2005-07-08T13:31:23Z,2020-02-15T06:59:51Z +7024,260,1,4870,2.99,2005-07-08T19:14:45Z,2020-02-15T06:59:51Z +7025,260,2,6328,2.99,2005-07-11T19:09:33Z,2020-02-15T06:59:51Z +7026,260,2,7072,0.99,2005-07-27T04:02:33Z,2020-02-15T06:59:51Z +7027,260,1,7268,1.99,2005-07-27T11:23:09Z,2020-02-15T06:59:51Z +7028,260,1,7885,7.99,2005-07-28T10:37:41Z,2020-02-15T06:59:51Z +7029,260,1,8475,1.99,2005-07-29T08:37:41Z,2020-02-15T06:59:51Z +7030,260,1,8484,2.99,2005-07-29T08:51:59Z,2020-02-15T06:59:51Z +7031,260,1,8717,0.99,2005-07-29T17:40:45Z,2020-02-15T06:59:51Z +7032,260,1,8933,0.99,2005-07-30T02:36:06Z,2020-02-15T06:59:51Z +7033,260,2,9176,4.99,2005-07-30T11:50:54Z,2020-02-15T06:59:51Z +7034,260,2,10970,8.99,2005-08-02T04:06:46Z,2020-02-15T06:59:51Z +7035,260,1,12852,0.99,2005-08-19T02:12:40Z,2020-02-15T06:59:51Z +7036,260,2,13440,2.99,2005-08-19T23:42:52Z,2020-02-15T06:59:51Z +7037,260,1,13685,3.99,2005-08-20T08:57:11Z,2020-02-15T06:59:51Z +7038,260,1,13966,2.99,2005-08-20T18:28:28Z,2020-02-15T06:59:51Z +7039,260,2,13978,0.99,2005-08-20T19:03:25Z,2020-02-15T06:59:51Z +7040,260,2,14035,2.99,2005-08-20T21:31:58Z,2020-02-15T06:59:51Z +7041,260,2,14441,2.99,2005-08-21T11:59:38Z,2020-02-15T06:59:51Z +7042,260,1,14579,7.99,2005-08-21T16:54:47Z,2020-02-15T06:59:51Z +7043,260,1,14610,6.99,2005-08-21T17:59:09Z,2020-02-15T06:59:51Z +7044,261,1,12,4.99,2005-05-25T00:19:27Z,2020-02-15T06:59:51Z +7045,261,2,465,3.99,2005-05-27T20:44:36Z,2020-02-15T06:59:51Z +7046,261,2,542,6.99,2005-05-28T06:42:13Z,2020-02-15T06:59:51Z +7047,261,1,792,0.99,2005-05-29T16:32:10Z,2020-02-15T06:59:51Z +7048,261,1,1760,2.99,2005-06-16T17:48:37Z,2020-02-15T06:59:51Z +7049,261,1,1877,5.99,2005-06-17T02:54:16Z,2020-02-15T06:59:51Z +7050,261,2,1988,8.99,2005-06-17T10:42:34Z,2020-02-15T06:59:51Z +7051,261,2,2072,3.99,2005-06-17T16:33:32Z,2020-02-15T06:59:51Z +7052,261,2,2392,0.99,2005-06-18T15:34:18Z,2020-02-15T06:59:51Z +7053,261,1,3363,0.99,2005-06-21T12:25:07Z,2020-02-15T06:59:51Z +7054,261,1,5122,3.99,2005-07-09T07:19:35Z,2020-02-15T06:59:51Z +7055,261,1,5449,5.99,2005-07-09T22:12:01Z,2020-02-15T06:59:51Z +7056,261,2,6515,2.99,2005-07-12T03:50:32Z,2020-02-15T06:59:51Z +7057,261,1,6743,0.99,2005-07-12T14:29:25Z,2020-02-15T06:59:51Z +7058,261,2,9552,4.99,2005-07-31T02:05:32Z,2020-02-15T06:59:51Z +7059,261,1,9842,4.99,2005-07-31T12:24:58Z,2020-02-15T06:59:51Z +7060,261,1,9869,4.99,2005-07-31T13:21:54Z,2020-02-15T06:59:51Z +7061,261,2,10246,1.99,2005-08-01T02:29:50Z,2020-02-15T06:59:51Z +7062,261,1,11834,1.99,2005-08-17T13:00:40Z,2020-02-15T06:59:51Z +7063,261,2,11928,2.99,2005-08-17T16:28:24Z,2020-02-15T06:59:51Z +7064,261,1,12327,6.99,2005-08-18T06:43:22Z,2020-02-15T06:59:51Z +7065,261,2,13245,4.99,2005-08-19T16:43:41Z,2020-02-15T06:59:51Z +7066,261,2,13506,5.99,2005-08-20T02:07:06Z,2020-02-15T06:59:51Z +7067,261,1,13669,2.99,2005-08-20T08:26:32Z,2020-02-15T06:59:51Z +7068,261,1,13849,4.99,2005-08-20T14:42:34Z,2020-02-15T06:59:51Z +7069,261,2,15397,4.99,2005-08-22T23:08:46Z,2020-02-15T06:59:51Z +7070,262,2,984,4.99,2005-05-30T22:17:17Z,2020-02-15T06:59:51Z +7071,262,1,1563,2.99,2005-06-16T02:46:28Z,2020-02-15T06:59:51Z +7072,262,1,2771,6.99,2005-06-19T17:54:48Z,2020-02-15T06:59:51Z +7073,262,2,2850,8.99,2005-06-19T23:06:28Z,2020-02-15T06:59:51Z +7074,262,1,2915,1.99,2005-06-20T03:57:17Z,2020-02-15T06:59:51Z +7075,262,1,3521,1.99,2005-07-06T01:00:11Z,2020-02-15T06:59:51Z +7076,262,1,3699,3.99,2005-07-06T10:11:25Z,2020-02-15T06:59:51Z +7077,262,1,4501,0.99,2005-07-08T02:12:00Z,2020-02-15T06:59:51Z +7078,262,2,5503,0.99,2005-07-10T00:35:37Z,2020-02-15T06:59:51Z +7079,262,1,6291,0.99,2005-07-11T17:16:40Z,2020-02-15T06:59:51Z +7080,262,2,6547,7.99,2005-07-12T04:57:46Z,2020-02-15T06:59:51Z +7081,262,1,6724,3.99,2005-07-12T13:45:15Z,2020-02-15T06:59:51Z +7082,262,2,6762,7.99,2005-07-12T15:25:33Z,2020-02-15T06:59:51Z +7083,262,1,6805,6.99,2005-07-12T17:23:01Z,2020-02-15T06:59:51Z +7084,262,1,6986,4.99,2005-07-27T00:59:05Z,2020-02-15T06:59:51Z +7085,262,1,9105,6.99,2005-07-30T08:50:25Z,2020-02-15T06:59:51Z +7086,262,2,10421,0.99,2005-08-01T08:14:10Z,2020-02-15T06:59:51Z +7087,262,2,10770,0.99,2005-08-01T20:45:39Z,2020-02-15T06:59:51Z +7088,262,2,13466,2.99,2005-08-20T00:55:16Z,2020-02-15T06:59:51Z +7089,262,1,13808,5.99,2005-08-20T12:55:43Z,2020-02-15T06:59:51Z +7090,262,1,14180,4.99,2005-08-21T03:16:15Z,2020-02-15T06:59:51Z +7091,262,2,14465,3.99,2005-08-21T12:54:22Z,2020-02-15T06:59:51Z +7092,262,2,14834,6.99,2005-08-22T01:45:58Z,2020-02-15T06:59:51Z +7093,262,2,15270,3.99,2005-08-22T18:48:42Z,2020-02-15T06:59:51Z +7094,262,1,15456,0.99,2005-08-23T01:07:01Z,2020-02-15T06:59:51Z +7095,262,1,15640,4.99,2005-08-23T08:04:40Z,2020-02-15T06:59:51Z +7096,262,2,15771,4.99,2005-08-23T13:18:46Z,2020-02-15T06:59:51Z +7097,262,1,15918,3.99,2005-08-23T17:57:35Z,2020-02-15T06:59:51Z +7098,263,1,97,4.99,2005-05-25T16:34:24Z,2020-02-15T06:59:51Z +7099,263,1,266,0.99,2005-05-26T16:08:05Z,2020-02-15T06:59:51Z +7100,263,2,2126,8.99,2005-06-17T20:54:36Z,2020-02-15T06:59:51Z +7101,263,2,3257,1.99,2005-06-21T03:47:19Z,2020-02-15T06:59:51Z +7102,263,1,3578,4.99,2005-07-06T03:47:05Z,2020-02-15T06:59:51Z +7103,263,2,3773,2.99,2005-07-06T13:23:34Z,2020-02-15T06:59:51Z +7104,263,2,4637,0.99,2005-07-08T08:49:54Z,2020-02-15T06:59:51Z +7105,263,2,4682,2.99,2005-07-08T10:38:27Z,2020-02-15T06:59:51Z +7106,263,2,5125,2.99,2005-07-09T07:25:28Z,2020-02-15T06:59:51Z +7107,263,2,5254,1.99,2005-07-09T13:50:11Z,2020-02-15T06:59:51Z +7108,263,2,6376,4.99,2005-07-11T21:40:23Z,2020-02-15T06:59:51Z +7109,263,1,6483,2.99,2005-07-12T01:59:20Z,2020-02-15T06:59:51Z +7110,263,1,6808,1.99,2005-07-12T17:36:42Z,2020-02-15T06:59:51Z +7111,263,2,7291,4.99,2005-07-27T12:30:47Z,2020-02-15T06:59:51Z +7112,263,1,7425,4.99,2005-07-27T17:18:35Z,2020-02-15T06:59:51Z +7113,263,1,7706,4.99,2005-07-28T04:03:17Z,2020-02-15T06:59:51Z +7114,263,2,7833,1.99,2005-07-28T08:46:14Z,2020-02-15T06:59:51Z +7115,263,1,10476,6.99,2005-08-01T10:03:20Z,2020-02-15T06:59:51Z +7116,263,1,10775,2.99,2005-08-01T20:59:52Z,2020-02-15T06:59:51Z +7117,263,1,11339,2.99,2005-08-02T17:02:06Z,2020-02-15T06:59:51Z +7118,263,1,11822,0.99,2005-08-17T12:32:39Z,2020-02-15T06:59:51Z +7119,263,2,12057,9.99,2005-08-17T21:04:35Z,2020-02-15T06:59:51Z +7120,263,2,12432,5.99,2005-08-18T10:35:13Z,2020-02-15T06:59:51Z +7121,263,2,12919,6.99,2005-08-19T04:32:15Z,2020-02-15T06:59:51Z +7122,263,1,14335,3.99,2005-08-21T08:33:07Z,2020-02-15T06:59:51Z +7123,263,2,14448,6.99,2005-08-21T12:13:10Z,2020-02-15T06:59:51Z +7124,263,1,15322,4.99,2005-08-22T20:20:30Z,2020-02-15T06:59:51Z +7125,263,2,15922,7.99,2005-08-23T18:07:31Z,2020-02-15T06:59:51Z +7126,263,1,15293,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7127,264,2,1165,3.99,2005-06-14T23:16:27Z,2020-02-15T06:59:51Z +7128,264,1,1206,4.99,2005-06-15T02:27:07Z,2020-02-15T06:59:51Z +7129,264,1,3028,0.99,2005-06-20T11:50:52Z,2020-02-15T06:59:51Z +7130,264,1,3403,3.99,2005-06-21T15:55:06Z,2020-02-15T06:59:51Z +7131,264,1,3618,6.99,2005-07-06T05:58:45Z,2020-02-15T06:59:51Z +7132,264,1,4328,4.99,2005-07-07T18:03:17Z,2020-02-15T06:59:51Z +7133,264,1,4539,0.99,2005-07-08T04:01:02Z,2020-02-15T06:59:51Z +7134,264,1,6340,8.99,2005-07-11T19:46:05Z,2020-02-15T06:59:51Z +7135,264,2,6391,0.99,2005-07-11T22:23:09Z,2020-02-15T06:59:51Z +7136,264,1,6395,2.99,2005-07-11T22:29:29Z,2020-02-15T06:59:51Z +7137,264,1,6543,0.99,2005-07-12T04:54:32Z,2020-02-15T06:59:51Z +7138,264,1,7006,8.99,2005-07-27T01:42:20Z,2020-02-15T06:59:51Z +7139,264,2,9380,2.99,2005-07-30T19:17:31Z,2020-02-15T06:59:51Z +7140,264,2,9515,0.99,2005-07-31T00:35:05Z,2020-02-15T06:59:51Z +7141,264,1,9861,5.99,2005-07-31T13:04:14Z,2020-02-15T06:59:51Z +7142,264,1,9932,5.99,2005-07-31T15:19:48Z,2020-02-15T06:59:51Z +7143,264,2,10792,2.99,2005-08-01T21:44:24Z,2020-02-15T06:59:51Z +7144,264,1,11527,3.99,2005-08-17T00:25:06Z,2020-02-15T06:59:51Z +7145,264,2,11533,0.99,2005-08-17T00:34:53Z,2020-02-15T06:59:51Z +7146,264,1,11539,2.99,2005-08-17T00:45:41Z,2020-02-15T06:59:51Z +7147,264,1,12518,4.99,2005-08-18T13:41:32Z,2020-02-15T06:59:51Z +7148,264,2,13590,2.99,2005-08-20T05:48:59Z,2020-02-15T06:59:51Z +7149,264,1,13664,5.99,2005-08-20T08:18:36Z,2020-02-15T06:59:51Z +7150,264,1,15595,4.99,2005-08-23T06:19:12Z,2020-02-15T06:59:51Z +7151,264,2,14243,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7152,265,2,74,0.99,2005-05-25T11:09:48Z,2020-02-15T06:59:51Z +7153,265,2,2027,7.99,2005-06-17T13:06:56Z,2020-02-15T06:59:51Z +7154,265,2,2562,4.99,2005-06-19T03:15:05Z,2020-02-15T06:59:51Z +7155,265,1,2598,2.99,2005-06-19T05:59:57Z,2020-02-15T06:59:51Z +7156,265,1,3823,2.99,2005-07-06T15:41:27Z,2020-02-15T06:59:51Z +7157,265,1,4610,0.99,2005-07-08T07:28:05Z,2020-02-15T06:59:51Z +7158,265,1,4797,2.99,2005-07-08T16:39:05Z,2020-02-15T06:59:51Z +7159,265,2,5029,7.99,2005-07-09T02:35:32Z,2020-02-15T06:59:51Z +7160,265,1,5417,4.99,2005-07-09T20:34:09Z,2020-02-15T06:59:51Z +7161,265,1,5710,9.99,2005-07-10T10:32:52Z,2020-02-15T06:59:51Z +7162,265,1,6068,4.99,2005-07-11T04:41:09Z,2020-02-15T06:59:51Z +7163,265,2,6371,4.99,2005-07-11T21:31:51Z,2020-02-15T06:59:51Z +7164,265,2,6553,5.99,2005-07-12T05:06:39Z,2020-02-15T06:59:51Z +7165,265,2,6921,6.99,2005-07-12T22:39:03Z,2020-02-15T06:59:51Z +7166,265,2,7414,1.99,2005-07-27T16:46:07Z,2020-02-15T06:59:51Z +7167,265,1,7704,2.99,2005-07-28T04:02:13Z,2020-02-15T06:59:51Z +7168,265,1,8278,5.99,2005-07-29T01:42:55Z,2020-02-15T06:59:51Z +7169,265,2,8489,2.99,2005-07-29T08:58:03Z,2020-02-15T06:59:51Z +7170,265,2,8665,0.99,2005-07-29T15:39:29Z,2020-02-15T06:59:51Z +7171,265,1,9416,2.99,2005-07-30T20:52:45Z,2020-02-15T06:59:51Z +7172,265,2,10592,3.99,2005-08-01T14:13:00Z,2020-02-15T06:59:51Z +7173,265,2,11000,3.99,2005-08-02T04:56:14Z,2020-02-15T06:59:51Z +7174,265,1,12207,1.99,2005-08-18T02:24:07Z,2020-02-15T06:59:51Z +7175,265,2,12346,4.99,2005-08-18T07:17:55Z,2020-02-15T06:59:51Z +7176,265,2,13700,8.99,2005-08-20T09:26:17Z,2020-02-15T06:59:51Z +7177,265,2,14125,4.99,2005-08-21T01:32:16Z,2020-02-15T06:59:51Z +7178,265,1,14547,6.99,2005-08-21T15:51:38Z,2020-02-15T06:59:51Z +7179,265,2,14556,6.99,2005-08-21T16:03:27Z,2020-02-15T06:59:51Z +7180,265,1,14943,2.99,2005-08-22T05:59:59Z,2020-02-15T06:59:51Z +7181,266,1,86,1.99,2005-05-25T13:36:12Z,2020-02-15T06:59:51Z +7182,266,2,651,2.99,2005-05-28T19:46:50Z,2020-02-15T06:59:51Z +7183,266,2,1280,5.99,2005-06-15T08:16:06Z,2020-02-15T06:59:51Z +7184,266,2,2065,4.99,2005-06-17T16:03:46Z,2020-02-15T06:59:51Z +7185,266,2,3002,4.99,2005-06-20T09:56:12Z,2020-02-15T06:59:51Z +7186,266,1,3059,4.99,2005-06-20T13:38:41Z,2020-02-15T06:59:51Z +7187,266,2,3585,0.99,2005-07-06T04:22:36Z,2020-02-15T06:59:51Z +7188,266,2,5362,5.99,2005-07-09T18:16:08Z,2020-02-15T06:59:51Z +7189,266,1,5577,4.99,2005-07-10T03:58:40Z,2020-02-15T06:59:51Z +7190,266,1,8492,2.99,2005-07-29T09:04:17Z,2020-02-15T06:59:51Z +7191,266,2,9109,5.99,2005-07-30T08:58:24Z,2020-02-15T06:59:51Z +7192,266,2,10747,4.99,2005-08-01T19:59:41Z,2020-02-15T06:59:51Z +7193,266,2,10910,5.99,2005-08-02T01:54:34Z,2020-02-15T06:59:51Z +7194,266,2,11233,5.99,2005-08-02T13:06:11Z,2020-02-15T06:59:51Z +7195,266,1,11321,4.99,2005-08-02T16:15:07Z,2020-02-15T06:59:51Z +7196,266,2,11626,0.99,2005-08-17T04:25:42Z,2020-02-15T06:59:51Z +7197,266,1,11726,0.99,2005-08-17T08:11:10Z,2020-02-15T06:59:51Z +7198,266,1,12255,4.99,2005-08-18T04:07:20Z,2020-02-15T06:59:51Z +7199,266,2,12378,0.99,2005-08-18T08:26:13Z,2020-02-15T06:59:51Z +7200,266,1,12405,6.99,2005-08-18T09:37:30Z,2020-02-15T06:59:51Z +7201,266,1,12715,4.99,2005-08-18T21:09:38Z,2020-02-15T06:59:51Z +7202,266,1,13468,8.99,2005-08-20T00:56:44Z,2020-02-15T06:59:51Z +7203,266,1,13556,6.99,2005-08-20T04:10:26Z,2020-02-15T06:59:51Z +7204,266,1,14080,1.99,2005-08-20T23:29:50Z,2020-02-15T06:59:51Z +7205,266,1,14492,2.99,2005-08-21T13:59:08Z,2020-02-15T06:59:51Z +7206,266,1,14877,0.99,2005-08-22T03:39:56Z,2020-02-15T06:59:51Z +7207,266,1,15181,2.99,2005-08-22T15:46:20Z,2020-02-15T06:59:51Z +7208,266,1,15346,4.99,2005-08-22T21:06:00Z,2020-02-15T06:59:51Z +7209,267,2,91,6.99,2005-05-25T14:57:22Z,2020-02-15T06:59:51Z +7210,267,1,436,4.99,2005-05-27T17:21:04Z,2020-02-15T06:59:51Z +7211,267,2,1030,4.99,2005-05-31T04:06:47Z,2020-02-15T06:59:51Z +7212,267,2,1257,4.99,2005-06-15T06:15:36Z,2020-02-15T06:59:51Z +7213,267,2,1349,4.99,2005-06-15T12:49:02Z,2020-02-15T06:59:51Z +7214,267,2,2265,2.99,2005-06-18T06:03:27Z,2020-02-15T06:59:51Z +7215,267,2,2578,7.99,2005-06-19T04:40:06Z,2020-02-15T06:59:51Z +7216,267,1,2582,6.99,2005-06-19T04:56:27Z,2020-02-15T06:59:51Z +7217,267,2,2699,2.99,2005-06-19T13:29:28Z,2020-02-15T06:59:51Z +7218,267,2,2754,4.99,2005-06-19T16:55:59Z,2020-02-15T06:59:51Z +7219,267,1,2877,1.99,2005-06-20T01:07:16Z,2020-02-15T06:59:51Z +7220,267,2,3090,0.99,2005-06-20T16:00:19Z,2020-02-15T06:59:51Z +7221,267,1,3817,2.99,2005-07-06T15:31:45Z,2020-02-15T06:59:51Z +7222,267,1,5340,6.99,2005-07-09T17:11:35Z,2020-02-15T06:59:51Z +7223,267,1,6070,0.99,2005-07-11T04:47:42Z,2020-02-15T06:59:51Z +7224,267,1,6706,3.99,2005-07-12T12:59:16Z,2020-02-15T06:59:51Z +7225,267,1,8190,4.99,2005-07-28T22:47:06Z,2020-02-15T06:59:51Z +7226,267,1,8572,1.99,2005-07-29T11:51:24Z,2020-02-15T06:59:51Z +7227,267,2,9059,3.99,2005-07-30T07:18:44Z,2020-02-15T06:59:51Z +7228,267,1,9308,6.99,2005-07-30T16:53:21Z,2020-02-15T06:59:51Z +7229,267,2,9403,4.99,2005-07-30T20:18:53Z,2020-02-15T06:59:51Z +7230,267,2,9807,2.99,2005-07-31T11:13:52Z,2020-02-15T06:59:51Z +7231,267,2,10048,4.99,2005-07-31T19:08:56Z,2020-02-15T06:59:51Z +7232,267,1,10343,2.99,2005-08-01T05:15:47Z,2020-02-15T06:59:51Z +7233,267,2,11373,0.99,2005-08-02T18:14:12Z,2020-02-15T06:59:51Z +7234,267,1,11690,6.99,2005-08-17T06:44:22Z,2020-02-15T06:59:51Z +7235,267,1,12320,4.99,2005-08-18T06:26:51Z,2020-02-15T06:59:51Z +7236,267,1,12979,4.99,2005-08-19T07:00:35Z,2020-02-15T06:59:51Z +7237,267,2,13236,9.99,2005-08-19T16:18:24Z,2020-02-15T06:59:51Z +7238,267,1,14131,5.99,2005-08-21T01:43:40Z,2020-02-15T06:59:51Z +7239,267,2,15020,3.99,2005-08-22T08:54:12Z,2020-02-15T06:59:51Z +7240,267,1,15208,3.99,2005-08-22T16:35:47Z,2020-02-15T06:59:51Z +7241,267,1,15768,0.99,2005-08-23T13:14:47Z,2020-02-15T06:59:51Z +7242,267,1,15903,3.99,2005-08-23T17:30:40Z,2020-02-15T06:59:51Z +7243,267,2,12066,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7244,267,2,13713,0,2006-02-14T15:16:03Z,2020-02-15T06:59:51Z +7245,268,1,1394,2.99,2005-06-15T16:17:21Z,2020-02-15T06:59:51Z +7246,268,2,1450,4.99,2005-06-15T19:22:08Z,2020-02-15T06:59:51Z +7247,268,2,1551,3.99,2005-06-16T02:01:15Z,2020-02-15T06:59:51Z +7248,268,1,2133,0.99,2005-06-17T21:10:05Z,2020-02-15T06:59:51Z +7249,268,2,2324,4.99,2005-06-18T10:00:33Z,2020-02-15T06:59:51Z +7250,268,2,2858,2.99,2005-06-19T23:17:11Z,2020-02-15T06:59:51Z +7251,268,1,3066,3.99,2005-06-20T13:55:41Z,2020-02-15T06:59:51Z +7252,268,1,3361,1.99,2005-06-21T12:14:23Z,2020-02-15T06:59:51Z +7253,268,2,3670,4.99,2005-07-06T08:56:43Z,2020-02-15T06:59:51Z +7254,268,2,4626,4.99,2005-07-08T08:18:21Z,2020-02-15T06:59:51Z +7255,268,1,5039,7.99,2005-07-09T03:14:45Z,2020-02-15T06:59:51Z +7256,268,2,5671,2.99,2005-07-10T08:18:22Z,2020-02-15T06:59:51Z +7257,268,2,5793,2.99,2005-07-10T14:33:00Z,2020-02-15T06:59:51Z +7258,268,2,5888,6.99,2005-07-10T19:52:17Z,2020-02-15T06:59:51Z +7259,268,1,6120,3.99,2005-07-11T07:49:53Z,2020-02-15T06:59:51Z +7260,268,2,6489,1.99,2005-07-12T02:22:46Z,2020-02-15T06:59:51Z +7261,268,1,8931,2.99,2005-07-30T02:30:07Z,2020-02-15T06:59:51Z +7262,268,2,9436,7.99,2005-07-30T21:33:01Z,2020-02-15T06:59:51Z +7263,268,2,9531,3.99,2005-07-31T01:11:53Z,2020-02-15T06:59:51Z +7264,268,1,10040,1.99,2005-07-31T18:54:15Z,2020-02-15T06:59:51Z +7265,268,2,11462,7.99,2005-08-02T21:36:46Z,2020-02-15T06:59:51Z +7266,268,2,11828,6.99,2005-08-17T12:48:28Z,2020-02-15T06:59:51Z +7267,268,2,12007,2.99,2005-08-17T19:10:34Z,2020-02-15T06:59:51Z +7268,268,2,12694,4.99,2005-08-18T20:10:39Z,2020-02-15T06:59:51Z +7269,268,2,13880,5.99,2005-08-20T15:18:20Z,2020-02-15T06:59:51Z +7270,268,2,14249,4.99,2005-08-21T05:38:05Z,2020-02-15T06:59:51Z +7271,268,2,14373,4.99,2005-08-21T09:44:53Z,2020-02-15T06:59:51Z +7272,268,1,14874,0.99,2005-08-22T03:32:05Z,2020-02-15T06:59:51Z +7273,268,2,15183,2.99,2005-08-22T15:49:54Z,2020-02-15T06:59:51Z +7274,269,2,7,1.99,2005-05-24T23:11:53Z,2020-02-15T06:59:51Z +7275,269,1,98,0.99,2005-05-25T16:48:24Z,2020-02-15T06:59:51Z +7276,269,2,678,6.99,2005-05-28T23:15:48Z,2020-02-15T06:59:51Z +7277,269,2,703,0.99,2005-05-29T02:29:36Z,2020-02-15T06:59:51Z +7278,269,1,750,4.99,2005-05-29T09:41:40Z,2020-02-15T06:59:51Z +7279,269,2,1099,2.99,2005-05-31T13:54:48Z,2020-02-15T06:59:51Z +7280,269,1,1334,3.99,2005-06-15T11:43:09Z,2020-02-15T06:59:51Z +7281,269,2,1909,2.99,2005-06-17T05:11:04Z,2020-02-15T06:59:51Z +7282,269,2,2493,6.99,2005-06-18T22:12:09Z,2020-02-15T06:59:51Z +7283,269,1,4125,9.99,2005-07-07T07:20:29Z,2020-02-15T06:59:51Z +7284,269,2,4804,0.99,2005-07-08T16:57:30Z,2020-02-15T06:59:51Z +7285,269,2,4880,6.99,2005-07-08T19:36:17Z,2020-02-15T06:59:51Z +7286,269,1,6440,2.99,2005-07-12T00:25:04Z,2020-02-15T06:59:51Z +7287,269,1,6626,5.99,2005-07-12T09:16:24Z,2020-02-15T06:59:51Z +7288,269,2,6804,4.99,2005-07-12T17:22:06Z,2020-02-15T06:59:51Z +7289,269,1,7032,4.99,2005-07-27T03:03:09Z,2020-02-15T06:59:51Z +7290,269,1,7537,6.99,2005-07-27T21:36:09Z,2020-02-15T06:59:51Z +7291,269,1,7972,2.99,2005-07-28T14:07:46Z,2020-02-15T06:59:51Z +7292,269,2,10566,2.99,2005-08-01T13:12:11Z,2020-02-15T06:59:51Z +7293,269,1,10908,4.99,2005-08-02T01:53:06Z,2020-02-15T06:59:51Z +7294,269,1,11014,4.99,2005-08-02T05:12:22Z,2020-02-15T06:59:51Z +7295,269,1,11915,3.99,2005-08-17T16:05:28Z,2020-02-15T06:59:51Z +7296,269,1,12344,4.99,2005-08-18T07:15:19Z,2020-02-15T06:59:51Z +7297,269,2,13142,5.99,2005-08-19T12:42:28Z,2020-02-15T06:59:52Z +7298,269,2,13759,2.99,2005-08-20T11:24:48Z,2020-02-15T06:59:52Z +7299,269,1,14266,4.99,2005-08-21T06:20:51Z,2020-02-15T06:59:52Z +7300,269,2,14693,6.99,2005-08-21T20:44:19Z,2020-02-15T06:59:52Z +7301,269,2,15788,2.99,2005-08-23T13:54:39Z,2020-02-15T06:59:52Z +7302,269,1,13025,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7303,269,2,12610,0,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7304,270,1,193,1.99,2005-05-26T06:41:48Z,2020-02-15T06:59:52Z +7305,270,1,1040,4.99,2005-05-31T05:35:16Z,2020-02-15T06:59:52Z +7306,270,1,1345,4.99,2005-06-15T12:32:13Z,2020-02-15T06:59:52Z +7307,270,1,1896,6.99,2005-06-17T04:25:46Z,2020-02-15T06:59:52Z +7308,270,1,2115,3.99,2005-06-17T20:02:16Z,2020-02-15T06:59:52Z +7309,270,2,3164,5.99,2005-06-20T21:29:00Z,2020-02-15T06:59:52Z +7310,270,1,3501,3.99,2005-07-06T00:11:28Z,2020-02-15T06:59:52Z +7311,270,1,3987,9.99,2005-07-06T23:28:24Z,2020-02-15T06:59:52Z +7312,270,2,5533,0.99,2005-07-10T02:19:28Z,2020-02-15T06:59:52Z +7313,270,2,6520,4.99,2005-07-12T04:05:16Z,2020-02-15T06:59:52Z +7314,270,1,8355,2.99,2005-07-29T04:57:43Z,2020-02-15T06:59:52Z +7315,270,2,8618,3.99,2005-07-29T13:48:20Z,2020-02-15T06:59:52Z +7316,270,1,10069,3.99,2005-07-31T19:43:18Z,2020-02-15T06:59:52Z +7317,270,1,10461,7.99,2005-08-01T09:32:53Z,2020-02-15T06:59:52Z +7318,270,2,10579,5.99,2005-08-01T13:48:22Z,2020-02-15T06:59:52Z +7319,270,2,10648,4.99,2005-08-01T16:08:52Z,2020-02-15T06:59:52Z +7320,270,1,11389,2.99,2005-08-02T18:39:12Z,2020-02-15T06:59:52Z +7321,270,1,11810,0.99,2005-08-17T11:56:48Z,2020-02-15T06:59:52Z +7322,270,2,11841,2.99,2005-08-17T13:12:20Z,2020-02-15T06:59:52Z +7323,270,1,11917,2.99,2005-08-17T16:08:17Z,2020-02-15T06:59:52Z +7324,270,1,12192,2.99,2005-08-18T02:01:40Z,2020-02-15T06:59:52Z +7325,270,1,12442,2.99,2005-08-18T10:50:07Z,2020-02-15T06:59:52Z +7326,270,2,13945,1.99,2005-08-20T17:43:56Z,2020-02-15T06:59:52Z +7327,270,1,14618,0.99,2005-08-21T18:09:51Z,2020-02-15T06:59:52Z +7328,270,2,15620,6.99,2005-08-23T07:10:22Z,2020-02-15T06:59:52Z +7329,271,1,1096,8.99,2005-05-31T13:30:49Z,2020-02-15T06:59:52Z +7330,271,2,1852,2.99,2005-06-17T00:38:20Z,2020-02-15T06:59:52Z +7331,271,1,3640,1.99,2005-07-06T07:12:26Z,2020-02-15T06:59:52Z +7332,271,2,4545,2.99,2005-07-08T04:17:47Z,2020-02-15T06:59:52Z +7333,271,2,5878,1.99,2005-07-10T19:09:57Z,2020-02-15T06:59:52Z +7334,271,1,5922,2.99,2005-07-10T21:36:53Z,2020-02-15T06:59:52Z +7335,271,1,6024,2.99,2005-07-11T02:16:47Z,2020-02-15T06:59:52Z +7336,271,1,7618,3.99,2005-07-28T00:24:14Z,2020-02-15T06:59:52Z +7337,271,1,8592,0.99,2005-07-29T12:33:58Z,2020-02-15T06:59:52Z +7338,271,1,9821,4.99,2005-07-31T11:47:54Z,2020-02-15T06:59:52Z +7339,271,2,10143,7.99,2005-07-31T22:11:43Z,2020-02-15T06:59:52Z +7340,271,2,10310,4.99,2005-08-01T04:24:47Z,2020-02-15T06:59:52Z +7341,271,1,10599,3.99,2005-08-01T14:23:58Z,2020-02-15T06:59:52Z +7342,271,1,11431,2.99,2005-08-02T20:05:16Z,2020-02-15T06:59:52Z +7343,271,1,12219,4.99,2005-08-18T02:49:54Z,2020-02-15T06:59:52Z +7344,271,2,14234,0.99,2005-08-21T05:07:12Z,2020-02-15T06:59:52Z +7345,271,2,14355,4.99,2005-08-21T09:08:29Z,2020-02-15T06:59:52Z +7346,271,1,15244,2.99,2005-08-22T17:48:42Z,2020-02-15T06:59:52Z +7347,272,1,33,0.99,2005-05-25T04:18:51Z,2020-02-15T06:59:52Z +7348,272,1,405,6.99,2005-05-27T13:32:39Z,2020-02-15T06:59:52Z +7349,272,1,1041,6.99,2005-05-31T05:46:23Z,2020-02-15T06:59:52Z +7350,272,1,1072,0.99,2005-05-31T09:52:50Z,2020-02-15T06:59:52Z +7351,272,2,1604,4.99,2005-06-16T06:14:25Z,2020-02-15T06:59:52Z +7352,272,2,2546,5.99,2005-06-19T02:39:39Z,2020-02-15T06:59:52Z +7353,272,1,3323,5.99,2005-06-21T08:45:33Z,2020-02-15T06:59:52Z +7354,272,2,5047,3.99,2005-07-09T03:44:15Z,2020-02-15T06:59:52Z +7355,272,2,5158,2.99,2005-07-09T08:53:09Z,2020-02-15T06:59:52Z +7356,272,2,7300,7.99,2005-07-27T12:50:17Z,2020-02-15T06:59:52Z +7357,272,2,7658,2.99,2005-07-28T02:09:12Z,2020-02-15T06:59:52Z +7358,272,1,8248,7.99,2005-07-29T00:41:56Z,2020-02-15T06:59:52Z +7359,272,2,9787,10.99,2005-07-31T10:26:19Z,2020-02-15T06:59:52Z +7360,272,1,10736,2.99,2005-08-01T19:30:21Z,2020-02-15T06:59:52Z +7361,272,2,11003,2.99,2005-08-02T05:03:05Z,2020-02-15T06:59:52Z +7362,272,2,11597,8.99,2005-08-17T03:02:56Z,2020-02-15T06:59:52Z +7363,272,1,11881,0.99,2005-08-17T14:31:56Z,2020-02-15T06:59:52Z +7364,272,2,12006,6.99,2005-08-17T19:09:12Z,2020-02-15T06:59:52Z +7365,272,2,13274,2.99,2005-08-19T17:50:03Z,2020-02-15T06:59:52Z +7366,272,1,13903,2.99,2005-08-20T16:07:55Z,2020-02-15T06:59:52Z +7367,273,2,122,3.99,2005-05-25T19:46:21Z,2020-02-15T06:59:52Z +7368,273,2,980,0.99,2005-05-30T21:45:19Z,2020-02-15T06:59:52Z +7369,273,2,1391,6.99,2005-06-15T16:11:21Z,2020-02-15T06:59:52Z +7370,273,2,1747,6.99,2005-06-16T16:53:33Z,2020-02-15T06:59:52Z +7371,273,2,1765,4.99,2005-06-16T17:56:10Z,2020-02-15T06:59:52Z +7372,273,1,2301,1.99,2005-06-18T08:24:03Z,2020-02-15T06:59:52Z +7373,273,1,3202,0.99,2005-06-21T00:33:47Z,2020-02-15T06:59:52Z +7374,273,2,3556,2.99,2005-07-06T02:46:13Z,2020-02-15T06:59:52Z +7375,273,1,4937,5.99,2005-07-08T22:29:59Z,2020-02-15T06:59:52Z +7376,273,1,5256,7.99,2005-07-09T13:55:45Z,2020-02-15T06:59:52Z +7377,273,2,5435,7.99,2005-07-09T21:28:07Z,2020-02-15T06:59:52Z +7378,273,1,5605,2.99,2005-07-10T05:06:45Z,2020-02-15T06:59:52Z +7379,273,1,6592,8.99,2005-07-12T07:19:35Z,2020-02-15T06:59:52Z +7380,273,1,6635,1.99,2005-07-12T09:47:58Z,2020-02-15T06:59:52Z +7381,273,2,6696,2.99,2005-07-12T12:44:04Z,2020-02-15T06:59:52Z +7382,273,1,6717,5.99,2005-07-12T13:35:02Z,2020-02-15T06:59:52Z +7383,273,1,8449,2.99,2005-07-29T07:42:25Z,2020-02-15T06:59:52Z +7384,273,1,9186,4.99,2005-07-30T12:13:48Z,2020-02-15T06:59:52Z +7385,273,2,9285,5.99,2005-07-30T15:26:08Z,2020-02-15T06:59:52Z +7386,273,2,9391,0.99,2005-07-30T19:48:41Z,2020-02-15T06:59:52Z +7387,273,2,9693,3.99,2005-07-31T07:11:50Z,2020-02-15T06:59:52Z +7388,273,2,9729,0.99,2005-07-31T08:43:43Z,2020-02-15T06:59:52Z +7389,273,1,10272,8.99,2005-08-01T03:14:34Z,2020-02-15T06:59:52Z +7390,273,1,10753,3.99,2005-08-01T20:09:24Z,2020-02-15T06:59:52Z +7391,273,1,10768,6.99,2005-08-01T20:39:32Z,2020-02-15T06:59:52Z +7392,273,1,11282,4.99,2005-08-02T14:35:03Z,2020-02-15T06:59:52Z +7393,273,2,11509,4.99,2005-08-16T23:29:53Z,2020-02-15T06:59:52Z +7394,273,1,12692,0.99,2005-08-18T20:09:19Z,2020-02-15T06:59:52Z +7395,273,2,13738,4.99,2005-08-20T10:42:42Z,2020-02-15T06:59:52Z +7396,273,1,13955,5.99,2005-08-20T18:05:12Z,2020-02-15T06:59:52Z +7397,273,2,14092,4.99,2005-08-21T00:14:32Z,2020-02-15T06:59:52Z +7398,273,2,14558,2.99,2005-08-21T16:10:50Z,2020-02-15T06:59:52Z +7399,273,2,14911,2.99,2005-08-22T04:51:42Z,2020-02-15T06:59:52Z +7400,273,2,15372,2.99,2005-08-22T21:59:51Z,2020-02-15T06:59:52Z +7401,273,1,15760,6.99,2005-08-23T12:50:00Z,2020-02-15T06:59:52Z +7402,274,1,147,2.99,2005-05-26T00:17:50Z,2020-02-15T06:59:52Z +7403,274,1,208,4.99,2005-05-26T08:10:22Z,2020-02-15T06:59:52Z +7404,274,2,301,2.99,2005-05-26T21:06:14Z,2020-02-15T06:59:52Z +7405,274,1,394,5.99,2005-05-27T11:26:11Z,2020-02-15T06:59:52Z +7406,274,2,474,2.99,2005-05-27T22:11:56Z,2020-02-15T06:59:52Z +7407,274,1,892,4.99,2005-05-30T08:02:56Z,2020-02-15T06:59:52Z +7408,274,1,2098,0.99,2005-06-17T18:42:09Z,2020-02-15T06:59:52Z +7409,274,2,3291,9.99,2005-06-21T06:55:36Z,2020-02-15T06:59:52Z +7410,274,2,3532,5.99,2005-07-06T01:24:38Z,2020-02-15T06:59:52Z +7411,274,1,4147,2.99,2005-07-07T08:32:12Z,2020-02-15T06:59:52Z +7412,274,2,4582,2.99,2005-07-08T06:09:09Z,2020-02-15T06:59:52Z +7413,274,2,6389,3.99,2005-07-11T22:18:20Z,2020-02-15T06:59:52Z +7414,274,2,8259,0.99,2005-07-29T01:05:16Z,2020-02-15T06:59:52Z +7415,274,2,8406,5.99,2005-07-29T06:34:45Z,2020-02-15T06:59:52Z +7416,274,2,8517,7.99,2005-07-29T10:00:48Z,2020-02-15T06:59:52Z +7417,274,1,9331,4.99,2005-07-30T17:46:50Z,2020-02-15T06:59:52Z +7418,274,1,9677,4.99,2005-07-31T06:39:45Z,2020-02-15T06:59:52Z +7419,274,2,10059,4.99,2005-07-31T19:20:49Z,2020-02-15T06:59:52Z +7420,274,1,10790,1.99,2005-08-01T21:38:37Z,2020-02-15T06:59:52Z +7421,274,2,10855,0.99,2005-08-02T00:06:37Z,2020-02-15T06:59:52Z +7422,274,1,11058,3.99,2005-08-02T06:38:44Z,2020-02-15T06:59:52Z +7423,274,2,11363,2.99,2005-08-02T17:48:39Z,2020-02-15T06:59:52Z +7424,274,1,12321,3.99,2005-08-18T06:27:05Z,2020-02-15T06:59:52Z +7425,274,1,13103,2.99,2005-08-19T11:05:51Z,2020-02-15T06:59:52Z +7426,274,2,13129,8.99,2005-08-19T12:05:04Z,2020-02-15T06:59:52Z +7427,274,1,13549,8.99,2005-08-20T03:58:41Z,2020-02-15T06:59:52Z +7428,274,1,14012,0.99,2005-08-20T20:42:12Z,2020-02-15T06:59:52Z +7429,274,1,14066,7.99,2005-08-20T22:45:58Z,2020-02-15T06:59:52Z +7430,274,2,14164,7.99,2005-08-21T02:58:02Z,2020-02-15T06:59:52Z +7431,274,1,14388,4.99,2005-08-21T10:15:13Z,2020-02-15T06:59:52Z +7432,274,2,15143,2.99,2005-08-22T13:46:24Z,2020-02-15T06:59:52Z +7433,274,1,15260,2.99,2005-08-22T18:24:16Z,2020-02-15T06:59:52Z +7434,274,2,15328,2.99,2005-08-22T20:31:38Z,2020-02-15T06:59:52Z +7435,274,2,15819,3.99,2005-08-23T15:01:54Z,2020-02-15T06:59:52Z +7436,274,1,13486,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7437,275,2,336,2.99,2005-05-27T03:15:23Z,2020-02-15T06:59:52Z +7438,275,2,1797,3.99,2005-06-16T20:13:03Z,2020-02-15T06:59:52Z +7439,275,2,2414,0.99,2005-06-18T17:01:55Z,2020-02-15T06:59:52Z +7440,275,1,2646,4.99,2005-06-19T09:56:01Z,2020-02-15T06:59:52Z +7441,275,1,3355,2.99,2005-06-21T11:30:47Z,2020-02-15T06:59:52Z +7442,275,2,4396,0.99,2005-07-07T21:14:19Z,2020-02-15T06:59:52Z +7443,275,1,4634,0.99,2005-07-08T08:40:02Z,2020-02-15T06:59:52Z +7444,275,2,4912,9.99,2005-07-08T21:26:11Z,2020-02-15T06:59:52Z +7445,275,2,6301,5.99,2005-07-11T17:54:09Z,2020-02-15T06:59:52Z +7446,275,2,6856,0.99,2005-07-12T19:50:16Z,2020-02-15T06:59:52Z +7447,275,1,7553,2.99,2005-07-27T22:11:36Z,2020-02-15T06:59:52Z +7448,275,2,7596,4.99,2005-07-27T23:33:57Z,2020-02-15T06:59:52Z +7449,275,1,8746,2.99,2005-07-29T19:03:15Z,2020-02-15T06:59:52Z +7450,275,2,9258,2.99,2005-07-30T14:31:31Z,2020-02-15T06:59:52Z +7451,275,1,10479,6.99,2005-08-01T10:11:25Z,2020-02-15T06:59:52Z +7452,275,2,11309,1.99,2005-08-02T15:50:55Z,2020-02-15T06:59:52Z +7453,275,1,11610,4.99,2005-08-17T03:43:37Z,2020-02-15T06:59:52Z +7454,275,2,12589,5.99,2005-08-18T16:06:31Z,2020-02-15T06:59:52Z +7455,275,1,12606,1.99,2005-08-18T17:02:21Z,2020-02-15T06:59:52Z +7456,275,1,13037,3.99,2005-08-19T08:53:57Z,2020-02-15T06:59:52Z +7457,275,2,13860,2.99,2005-08-20T14:55:09Z,2020-02-15T06:59:52Z +7458,275,2,13865,1.99,2005-08-20T15:04:09Z,2020-02-15T06:59:52Z +7459,275,2,13902,0.99,2005-08-20T16:07:08Z,2020-02-15T06:59:52Z +7460,275,2,14063,0.99,2005-08-20T22:36:40Z,2020-02-15T06:59:52Z +7461,275,1,14187,5.99,2005-08-21T03:32:03Z,2020-02-15T06:59:52Z +7462,275,1,14296,2.99,2005-08-21T07:13:23Z,2020-02-15T06:59:52Z +7463,275,2,14483,5.99,2005-08-21T13:43:59Z,2020-02-15T06:59:52Z +7464,275,2,14727,4.99,2005-08-21T22:12:45Z,2020-02-15T06:59:52Z +7465,275,2,15269,2.99,2005-08-22T18:39:44Z,2020-02-15T06:59:52Z +7466,275,2,15496,3.99,2005-08-23T02:30:23Z,2020-02-15T06:59:52Z +7467,276,1,736,3.99,2005-05-29T08:10:07Z,2020-02-15T06:59:52Z +7468,276,1,860,10.99,2005-05-30T02:45:16Z,2020-02-15T06:59:52Z +7469,276,1,1352,0.99,2005-06-15T12:58:27Z,2020-02-15T06:59:52Z +7470,276,2,2763,4.99,2005-06-19T17:23:34Z,2020-02-15T06:59:52Z +7471,276,2,3064,6.99,2005-06-20T13:53:13Z,2020-02-15T06:59:52Z +7472,276,2,3714,2.99,2005-07-06T10:51:28Z,2020-02-15T06:59:52Z +7473,276,1,4715,0.99,2005-07-08T12:15:37Z,2020-02-15T06:59:52Z +7474,276,2,5186,4.99,2005-07-09T10:18:40Z,2020-02-15T06:59:52Z +7475,276,2,5246,4.99,2005-07-09T13:25:18Z,2020-02-15T06:59:52Z +7476,276,2,7282,5.99,2005-07-27T12:00:19Z,2020-02-15T06:59:52Z +7477,276,2,7842,2.99,2005-07-28T09:10:06Z,2020-02-15T06:59:52Z +7478,276,1,9070,0.99,2005-07-30T07:40:39Z,2020-02-15T06:59:52Z +7479,276,1,9080,1.99,2005-07-30T08:02:39Z,2020-02-15T06:59:52Z +7480,276,1,9102,4.99,2005-07-30T08:48:20Z,2020-02-15T06:59:52Z +7481,276,1,9229,8.99,2005-07-30T13:38:17Z,2020-02-15T06:59:52Z +7482,276,2,10149,5.99,2005-07-31T22:20:46Z,2020-02-15T06:59:52Z +7483,276,2,10691,0.99,2005-08-01T18:09:53Z,2020-02-15T06:59:52Z +7484,276,1,10763,2.99,2005-08-01T20:32:27Z,2020-02-15T06:59:52Z +7485,276,2,11085,2.99,2005-08-02T07:36:44Z,2020-02-15T06:59:52Z +7486,276,1,11636,4.99,2005-08-17T04:36:31Z,2020-02-15T06:59:52Z +7487,276,2,11961,3.99,2005-08-17T17:28:01Z,2020-02-15T06:59:52Z +7488,276,2,12178,5.99,2005-08-18T01:17:32Z,2020-02-15T06:59:52Z +7489,276,2,12251,4.99,2005-08-18T03:59:02Z,2020-02-15T06:59:52Z +7490,276,1,12650,4.99,2005-08-18T18:33:20Z,2020-02-15T06:59:52Z +7491,276,1,14000,4.99,2005-08-20T20:06:05Z,2020-02-15T06:59:52Z +7492,276,2,15718,2.99,2005-08-23T11:05:17Z,2020-02-15T06:59:52Z +7493,276,1,15769,3.99,2005-08-23T13:16:15Z,2020-02-15T06:59:52Z +7494,276,2,15923,4.99,2005-08-23T18:08:19Z,2020-02-15T06:59:52Z +7495,277,2,308,6.99,2005-05-26T22:01:39Z,2020-02-15T06:59:52Z +7496,277,1,1331,2.99,2005-06-15T11:34:33Z,2020-02-15T06:59:52Z +7497,277,2,1717,2.99,2005-06-16T14:47:16Z,2020-02-15T06:59:52Z +7498,277,2,2162,3.99,2005-06-17T23:45:47Z,2020-02-15T06:59:52Z +7499,277,2,2723,4.99,2005-06-19T14:55:23Z,2020-02-15T06:59:52Z +7500,277,1,3247,5.99,2005-06-21T03:12:15Z,2020-02-15T06:59:52Z +7501,277,2,3274,4.99,2005-06-21T05:30:36Z,2020-02-15T06:59:52Z +7502,277,1,3344,2.99,2005-06-21T10:57:27Z,2020-02-15T06:59:52Z +7503,277,2,3740,5.99,2005-07-06T11:55:35Z,2020-02-15T06:59:52Z +7504,277,2,3897,2.99,2005-07-06T19:11:43Z,2020-02-15T06:59:52Z +7505,277,1,4290,4.99,2005-07-07T15:47:10Z,2020-02-15T06:59:52Z +7506,277,2,4987,5.99,2005-07-09T00:45:41Z,2020-02-15T06:59:52Z +7507,277,1,5861,0.99,2005-07-10T18:14:22Z,2020-02-15T06:59:52Z +7508,277,1,5913,2.99,2005-07-10T20:58:55Z,2020-02-15T06:59:52Z +7509,277,2,6455,2.99,2005-07-12T01:01:58Z,2020-02-15T06:59:52Z +7510,277,1,6487,5.99,2005-07-12T02:17:00Z,2020-02-15T06:59:52Z +7511,277,2,7423,4.99,2005-07-27T17:11:47Z,2020-02-15T06:59:52Z +7512,277,2,8410,2.99,2005-07-29T06:41:36Z,2020-02-15T06:59:52Z +7513,277,2,9669,4.99,2005-07-31T06:31:36Z,2020-02-15T06:59:52Z +7514,277,1,9901,0.99,2005-07-31T14:20:59Z,2020-02-15T06:59:52Z +7515,277,2,11074,3.99,2005-08-02T07:21:43Z,2020-02-15T06:59:52Z +7516,277,2,11162,4.99,2005-08-02T10:07:54Z,2020-02-15T06:59:52Z +7517,277,2,11574,0.99,2005-08-17T01:38:19Z,2020-02-15T06:59:52Z +7518,277,2,12149,3.99,2005-08-18T00:13:51Z,2020-02-15T06:59:52Z +7519,277,1,12458,5.99,2005-08-18T11:22:53Z,2020-02-15T06:59:52Z +7520,277,1,13122,4.99,2005-08-19T11:53:49Z,2020-02-15T06:59:52Z +7521,277,2,13526,4.99,2005-08-20T02:58:42Z,2020-02-15T06:59:52Z +7522,277,1,13714,4.99,2005-08-20T09:41:09Z,2020-02-15T06:59:52Z +7523,277,2,14227,4.99,2005-08-21T04:56:31Z,2020-02-15T06:59:52Z +7524,277,2,14745,4.99,2005-08-21T22:53:01Z,2020-02-15T06:59:52Z +7525,277,1,15008,10.99,2005-08-22T08:24:32Z,2020-02-15T06:59:52Z +7526,277,1,15345,5.99,2005-08-22T21:05:50Z,2020-02-15T06:59:52Z +7527,278,1,1092,4.99,2005-05-31T12:15:57Z,2020-02-15T06:59:52Z +7528,278,2,1387,0.99,2005-06-15T15:40:56Z,2020-02-15T06:59:52Z +7529,278,1,1978,2.99,2005-06-17T09:42:34Z,2020-02-15T06:59:52Z +7530,278,2,2078,4.99,2005-06-17T16:48:55Z,2020-02-15T06:59:52Z +7531,278,1,3453,2.99,2005-06-21T21:12:11Z,2020-02-15T06:59:52Z +7532,278,1,3776,2.99,2005-07-06T13:31:37Z,2020-02-15T06:59:52Z +7533,278,1,4430,4.99,2005-07-07T22:35:24Z,2020-02-15T06:59:52Z +7534,278,2,4866,8.99,2005-07-08T19:09:59Z,2020-02-15T06:59:52Z +7535,278,2,6869,4.99,2005-07-12T20:12:06Z,2020-02-15T06:59:52Z +7536,278,1,7239,0.99,2005-07-27T10:20:27Z,2020-02-15T06:59:52Z +7537,278,2,7834,0.99,2005-07-28T08:46:43Z,2020-02-15T06:59:52Z +7538,278,2,8222,5.99,2005-07-28T23:51:53Z,2020-02-15T06:59:52Z +7539,278,1,8953,4.99,2005-07-30T03:21:05Z,2020-02-15T06:59:52Z +7540,278,2,9448,2.99,2005-07-30T21:56:13Z,2020-02-15T06:59:52Z +7541,278,1,10649,2.99,2005-08-01T16:11:40Z,2020-02-15T06:59:52Z +7542,278,1,10731,2.99,2005-08-01T19:21:48Z,2020-02-15T06:59:52Z +7543,278,2,10849,3.99,2005-08-01T23:51:00Z,2020-02-15T06:59:52Z +7544,278,1,11095,5.99,2005-08-02T08:03:20Z,2020-02-15T06:59:52Z +7545,278,2,11531,0.99,2005-08-17T00:30:04Z,2020-02-15T06:59:52Z +7546,278,1,12787,0.99,2005-08-19T00:07:58Z,2020-02-15T06:59:52Z +7547,278,1,13896,0.99,2005-08-20T15:59:56Z,2020-02-15T06:59:52Z +7548,278,2,13976,0.99,2005-08-20T19:02:16Z,2020-02-15T06:59:52Z +7549,278,1,14268,2.99,2005-08-21T06:21:24Z,2020-02-15T06:59:52Z +7550,278,2,14803,0.99,2005-08-22T00:49:10Z,2020-02-15T06:59:52Z +7551,278,1,14986,4.99,2005-08-22T07:37:24Z,2020-02-15T06:59:52Z +7552,278,1,16019,4.99,2005-08-23T21:30:45Z,2020-02-15T06:59:52Z +7553,279,1,979,2.99,2005-05-30T21:37:11Z,2020-02-15T06:59:52Z +7554,279,2,1019,0.99,2005-05-31T03:05:07Z,2020-02-15T06:59:52Z +7555,279,1,1178,2.99,2005-06-15T00:36:40Z,2020-02-15T06:59:52Z +7556,279,1,2147,4.99,2005-06-17T22:28:13Z,2020-02-15T06:59:52Z +7557,279,1,3215,0.99,2005-06-21T01:11:32Z,2020-02-15T06:59:52Z +7558,279,1,3374,2.99,2005-06-21T13:36:30Z,2020-02-15T06:59:52Z +7559,279,1,3375,4.99,2005-06-21T13:37:18Z,2020-02-15T06:59:52Z +7560,279,1,4476,4.99,2005-07-08T00:34:25Z,2020-02-15T06:59:52Z +7561,279,1,4978,7.99,2005-07-09T00:22:02Z,2020-02-15T06:59:52Z +7562,279,2,5248,2.99,2005-07-09T13:29:44Z,2020-02-15T06:59:52Z +7563,279,1,5361,9.99,2005-07-09T18:15:32Z,2020-02-15T06:59:52Z +7564,279,1,6176,0.99,2005-07-11T10:48:21Z,2020-02-15T06:59:52Z +7565,279,1,7947,2.99,2005-07-28T13:05:50Z,2020-02-15T06:59:52Z +7566,279,2,8559,3.99,2005-07-29T11:25:54Z,2020-02-15T06:59:52Z +7567,279,2,9820,5.99,2005-07-31T11:46:57Z,2020-02-15T06:59:52Z +7568,279,2,10177,2.99,2005-07-31T23:42:33Z,2020-02-15T06:59:52Z +7569,279,2,11250,6.99,2005-08-02T13:35:42Z,2020-02-15T06:59:52Z +7570,279,1,11515,2.99,2005-08-16T23:54:34Z,2020-02-15T06:59:52Z +7571,279,1,11703,4.99,2005-08-17T07:19:29Z,2020-02-15T06:59:52Z +7572,279,2,12935,2.99,2005-08-19T05:20:25Z,2020-02-15T06:59:52Z +7573,279,1,12949,4.99,2005-08-19T05:55:52Z,2020-02-15T06:59:52Z +7574,279,1,13105,7.99,2005-08-19T11:06:16Z,2020-02-15T06:59:52Z +7575,279,1,13233,2.99,2005-08-19T16:14:41Z,2020-02-15T06:59:52Z +7576,279,2,13588,4.99,2005-08-20T05:47:11Z,2020-02-15T06:59:52Z +7577,279,2,14206,2.99,2005-08-21T03:59:26Z,2020-02-15T06:59:52Z +7578,279,1,14714,3.99,2005-08-21T21:27:43Z,2020-02-15T06:59:52Z +7579,279,1,14779,5.99,2005-08-22T00:00:56Z,2020-02-15T06:59:52Z +7580,279,1,14789,4.99,2005-08-22T00:29:39Z,2020-02-15T06:59:52Z +7581,279,2,15580,6.99,2005-08-23T05:39:06Z,2020-02-15T06:59:52Z +7582,279,1,15606,2.99,2005-08-23T06:50:27Z,2020-02-15T06:59:52Z +7583,279,2,13538,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7584,280,1,1014,4.99,2005-05-31T02:39:16Z,2020-02-15T06:59:52Z +7585,280,1,2656,3.99,2005-06-19T10:42:33Z,2020-02-15T06:59:52Z +7586,280,2,3009,4.99,2005-06-20T10:24:44Z,2020-02-15T06:59:52Z +7587,280,2,3097,0.99,2005-06-20T16:26:14Z,2020-02-15T06:59:52Z +7588,280,1,4616,4.99,2005-07-08T07:48:12Z,2020-02-15T06:59:52Z +7589,280,2,6851,0.99,2005-07-12T19:32:14Z,2020-02-15T06:59:52Z +7590,280,1,7070,4.99,2005-07-27T04:01:08Z,2020-02-15T06:59:52Z +7591,280,2,7901,0.99,2005-07-28T11:12:12Z,2020-02-15T06:59:52Z +7592,280,2,8319,0.99,2005-07-29T03:44:52Z,2020-02-15T06:59:52Z +7593,280,1,8365,0.99,2005-07-29T05:11:00Z,2020-02-15T06:59:52Z +7594,280,1,8565,7.99,2005-07-29T11:35:23Z,2020-02-15T06:59:52Z +7595,280,2,8695,6.99,2005-07-29T16:44:55Z,2020-02-15T06:59:52Z +7596,280,2,8744,3.99,2005-07-29T18:58:24Z,2020-02-15T06:59:52Z +7597,280,1,8912,0.99,2005-07-30T01:31:25Z,2020-02-15T06:59:52Z +7598,280,2,9103,0.99,2005-07-30T08:49:26Z,2020-02-15T06:59:52Z +7599,280,1,10847,9.99,2005-08-01T23:49:33Z,2020-02-15T06:59:52Z +7600,280,1,11366,4.99,2005-08-02T18:01:25Z,2020-02-15T06:59:52Z +7601,280,1,11517,2.99,2005-08-16T23:56:28Z,2020-02-15T06:59:52Z +7602,280,1,12053,4.99,2005-08-17T20:57:27Z,2020-02-15T06:59:52Z +7603,280,1,12849,5.99,2005-08-19T02:05:37Z,2020-02-15T06:59:52Z +7604,280,2,13231,9.99,2005-08-19T16:12:49Z,2020-02-15T06:59:52Z +7605,280,1,13321,4.99,2005-08-19T19:40:37Z,2020-02-15T06:59:52Z +7606,280,1,13667,4.99,2005-08-20T08:25:34Z,2020-02-15T06:59:52Z +7607,280,2,15036,2.99,2005-08-22T09:36:00Z,2020-02-15T06:59:52Z +7608,280,1,15312,4.99,2005-08-22T19:58:15Z,2020-02-15T06:59:52Z +7609,280,2,15554,5.99,2005-08-23T04:48:12Z,2020-02-15T06:59:52Z +7610,280,2,15950,5.99,2005-08-23T19:09:39Z,2020-02-15T06:59:52Z +7611,281,2,650,2.99,2005-05-28T19:45:40Z,2020-02-15T06:59:52Z +7612,281,2,754,2.99,2005-05-29T10:18:59Z,2020-02-15T06:59:52Z +7613,281,2,1485,5.99,2005-06-15T21:24:10Z,2020-02-15T06:59:52Z +7614,281,1,2254,5.99,2005-06-18T05:15:14Z,2020-02-15T06:59:52Z +7615,281,1,4607,0.99,2005-07-08T07:15:14Z,2020-02-15T06:59:52Z +7616,281,2,4864,6.99,2005-07-08T19:05:34Z,2020-02-15T06:59:52Z +7617,281,2,5410,5.99,2005-07-09T20:21:10Z,2020-02-15T06:59:52Z +7618,281,2,6825,0.99,2005-07-12T18:28:12Z,2020-02-15T06:59:52Z +7619,281,2,7034,2.99,2005-07-27T03:03:37Z,2020-02-15T06:59:52Z +7620,281,1,7525,3.99,2005-07-27T21:13:28Z,2020-02-15T06:59:52Z +7621,281,2,8131,0.99,2005-07-28T19:55:21Z,2020-02-15T06:59:52Z +7622,281,2,8180,4.99,2005-07-28T22:05:24Z,2020-02-15T06:59:52Z +7623,281,1,13641,2.99,2005-08-20T07:34:42Z,2020-02-15T06:59:52Z +7624,281,1,14196,1.99,2005-08-21T03:40:40Z,2020-02-15T06:59:52Z +7625,282,2,48,1.99,2005-05-25T06:20:46Z,2020-02-15T06:59:52Z +7626,282,2,282,6.99,2005-05-26T18:56:26Z,2020-02-15T06:59:52Z +7627,282,2,564,0.99,2005-05-28T09:12:09Z,2020-02-15T06:59:52Z +7628,282,1,2016,2.99,2005-06-17T12:18:36Z,2020-02-15T06:59:52Z +7629,282,2,2176,2.99,2005-06-18T00:29:51Z,2020-02-15T06:59:52Z +7630,282,2,3408,4.99,2005-06-21T16:15:11Z,2020-02-15T06:59:52Z +7631,282,1,3417,2.99,2005-06-21T17:06:20Z,2020-02-15T06:59:52Z +7632,282,2,3675,2.99,2005-07-06T09:09:19Z,2020-02-15T06:59:52Z +7633,282,1,3885,2.99,2005-07-06T18:43:43Z,2020-02-15T06:59:52Z +7634,282,1,4359,2.99,2005-07-07T19:30:20Z,2020-02-15T06:59:52Z +7635,282,2,4412,4.99,2005-07-07T21:56:53Z,2020-02-15T06:59:52Z +7636,282,1,5113,0.99,2005-07-09T07:06:18Z,2020-02-15T06:59:52Z +7637,282,2,5319,8.99,2005-07-09T16:17:44Z,2020-02-15T06:59:52Z +7638,282,1,5926,6.99,2005-07-10T21:53:42Z,2020-02-15T06:59:52Z +7639,282,1,7433,2.99,2005-07-27T17:32:20Z,2020-02-15T06:59:52Z +7640,282,2,7534,3.99,2005-07-27T21:26:17Z,2020-02-15T06:59:52Z +7641,282,1,8223,6.99,2005-07-28T23:56:01Z,2020-02-15T06:59:52Z +7642,282,2,8270,4.99,2005-07-29T01:27:22Z,2020-02-15T06:59:52Z +7643,282,2,8468,1.99,2005-07-29T08:26:04Z,2020-02-15T06:59:52Z +7644,282,2,8743,0.99,2005-07-29T18:57:01Z,2020-02-15T06:59:52Z +7645,282,2,8973,1.99,2005-07-30T04:09:13Z,2020-02-15T06:59:52Z +7646,282,2,9658,9.99,2005-07-31T06:00:52Z,2020-02-15T06:59:52Z +7647,282,2,11226,2.99,2005-08-02T12:47:30Z,2020-02-15T06:59:52Z +7648,282,1,13278,2.99,2005-08-19T17:57:53Z,2020-02-15T06:59:52Z +7649,282,2,13749,2.99,2005-08-20T11:00:37Z,2020-02-15T06:59:52Z +7650,282,2,15543,4.99,2005-08-23T04:15:41Z,2020-02-15T06:59:52Z +7651,282,2,15430,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7652,283,1,1749,0.99,2005-06-16T16:56:00Z,2020-02-15T06:59:52Z +7653,283,2,1796,2.99,2005-06-16T20:10:43Z,2020-02-15T06:59:52Z +7654,283,2,2333,2.99,2005-06-18T10:55:54Z,2020-02-15T06:59:52Z +7655,283,1,2685,2.99,2005-06-19T12:35:21Z,2020-02-15T06:59:52Z +7656,283,2,2849,7.99,2005-06-19T23:06:00Z,2020-02-15T06:59:52Z +7657,283,1,3534,4.99,2005-07-06T01:32:27Z,2020-02-15T06:59:52Z +7658,283,1,3568,6.99,2005-07-06T03:11:57Z,2020-02-15T06:59:52Z +7659,283,2,3590,4.99,2005-07-06T04:35:12Z,2020-02-15T06:59:52Z +7660,283,2,3672,0.99,2005-07-06T09:01:56Z,2020-02-15T06:59:52Z +7661,283,2,4683,2.99,2005-07-08T10:38:28Z,2020-02-15T06:59:52Z +7662,283,2,4876,1.99,2005-07-08T19:27:50Z,2020-02-15T06:59:52Z +7663,283,2,5989,2.99,2005-07-11T00:57:53Z,2020-02-15T06:59:52Z +7664,283,1,6075,0.99,2005-07-11T05:03:03Z,2020-02-15T06:59:52Z +7665,283,1,6300,1.99,2005-07-11T17:50:09Z,2020-02-15T06:59:52Z +7666,283,2,6313,0.99,2005-07-11T18:29:52Z,2020-02-15T06:59:52Z +7667,283,1,6827,4.99,2005-07-12T18:33:45Z,2020-02-15T06:59:52Z +7668,283,1,7504,0.99,2005-07-27T20:24:31Z,2020-02-15T06:59:52Z +7669,283,1,7816,0.99,2005-07-28T08:14:12Z,2020-02-15T06:59:52Z +7670,283,2,9353,4.99,2005-07-30T18:30:37Z,2020-02-15T06:59:52Z +7671,283,2,9478,2.99,2005-07-30T23:12:53Z,2020-02-15T06:59:52Z +7672,283,2,9572,2.99,2005-07-31T02:44:10Z,2020-02-15T06:59:52Z +7673,283,2,9918,2.99,2005-07-31T14:55:22Z,2020-02-15T06:59:52Z +7674,283,1,11637,0.99,2005-08-17T04:36:39Z,2020-02-15T06:59:52Z +7675,283,2,11846,2.99,2005-08-17T13:18:29Z,2020-02-15T06:59:52Z +7676,283,2,11966,0.99,2005-08-17T17:40:04Z,2020-02-15T06:59:52Z +7677,283,1,12290,6.99,2005-08-18T05:08:03Z,2020-02-15T06:59:52Z +7678,283,1,13229,2.99,2005-08-19T16:08:33Z,2020-02-15T06:59:52Z +7679,283,1,15837,2.99,2005-08-23T15:29:41Z,2020-02-15T06:59:52Z +7680,284,2,423,0.99,2005-05-27T15:32:57Z,2020-02-15T06:59:52Z +7681,284,2,791,0.99,2005-05-29T16:30:42Z,2020-02-15T06:59:52Z +7682,284,1,1145,6.99,2005-05-31T20:13:45Z,2020-02-15T06:59:52Z +7683,284,1,1171,0.99,2005-06-14T23:50:11Z,2020-02-15T06:59:52Z +7684,284,2,2813,6.99,2005-06-19T20:01:47Z,2020-02-15T06:59:52Z +7685,284,2,3296,0.99,2005-06-21T07:04:53Z,2020-02-15T06:59:52Z +7686,284,1,3572,0.99,2005-07-06T03:33:23Z,2020-02-15T06:59:52Z +7687,284,2,4081,2.99,2005-07-07T05:10:08Z,2020-02-15T06:59:52Z +7688,284,1,4759,7.99,2005-07-08T14:39:22Z,2020-02-15T06:59:52Z +7689,284,2,4931,7.99,2005-07-08T22:16:18Z,2020-02-15T06:59:52Z +7690,284,1,5161,6.99,2005-07-09T08:57:56Z,2020-02-15T06:59:52Z +7691,284,1,6276,5.99,2005-07-11T16:15:50Z,2020-02-15T06:59:52Z +7692,284,2,6982,2.99,2005-07-27T00:53:41Z,2020-02-15T06:59:52Z +7693,284,1,7164,6.99,2005-07-27T07:36:34Z,2020-02-15T06:59:52Z +7694,284,1,7463,4.99,2005-07-27T18:48:32Z,2020-02-15T06:59:52Z +7695,284,2,7716,8.99,2005-07-28T04:33:15Z,2020-02-15T06:59:52Z +7696,284,1,8888,2.99,2005-07-30T00:39:36Z,2020-02-15T06:59:52Z +7697,284,1,9790,0.99,2005-07-31T10:34:08Z,2020-02-15T06:59:52Z +7698,284,1,10396,7.99,2005-08-01T07:08:46Z,2020-02-15T06:59:52Z +7699,284,1,10535,4.99,2005-08-01T12:21:13Z,2020-02-15T06:59:52Z +7700,284,2,12162,3.99,2005-08-18T00:44:30Z,2020-02-15T06:59:52Z +7701,284,1,14007,5.99,2005-08-20T20:22:47Z,2020-02-15T06:59:52Z +7702,284,1,14648,4.99,2005-08-21T19:18:01Z,2020-02-15T06:59:52Z +7703,284,2,14746,4.99,2005-08-21T22:54:02Z,2020-02-15T06:59:52Z +7704,284,1,14921,4.99,2005-08-22T05:12:24Z,2020-02-15T06:59:52Z +7705,284,2,15135,3.99,2005-08-22T13:19:19Z,2020-02-15T06:59:52Z +7706,284,1,12064,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7707,284,2,12959,0,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7708,285,2,1161,7.99,2005-06-14T23:07:08Z,2020-02-15T06:59:52Z +7709,285,2,1302,3.99,2005-06-15T09:48:37Z,2020-02-15T06:59:52Z +7710,285,1,2249,5.99,2005-06-18T05:03:08Z,2020-02-15T06:59:52Z +7711,285,2,4007,6.99,2005-07-07T00:26:05Z,2020-02-15T06:59:52Z +7712,285,2,5112,2.99,2005-07-09T07:04:04Z,2020-02-15T06:59:52Z +7713,285,1,5683,9.99,2005-07-10T08:52:13Z,2020-02-15T06:59:52Z +7714,285,1,6010,0.99,2005-07-11T01:52:28Z,2020-02-15T06:59:52Z +7715,285,2,6083,3.99,2005-07-11T05:12:49Z,2020-02-15T06:59:52Z +7716,285,1,6094,4.99,2005-07-11T05:54:42Z,2020-02-15T06:59:52Z +7717,285,2,6333,4.99,2005-07-11T19:20:16Z,2020-02-15T06:59:52Z +7718,285,2,6644,0.99,2005-07-12T10:39:39Z,2020-02-15T06:59:52Z +7719,285,1,7211,6.99,2005-07-27T09:20:00Z,2020-02-15T06:59:52Z +7720,285,1,7452,9.99,2005-07-27T18:26:39Z,2020-02-15T06:59:52Z +7721,285,1,7745,9.99,2005-07-28T05:46:28Z,2020-02-15T06:59:52Z +7722,285,1,8154,4.99,2005-07-28T20:56:18Z,2020-02-15T06:59:52Z +7723,285,2,8466,0.99,2005-07-29T08:24:47Z,2020-02-15T06:59:52Z +7724,285,1,10493,5.99,2005-08-01T10:43:12Z,2020-02-15T06:59:52Z +7725,285,2,10628,2.99,2005-08-01T15:33:19Z,2020-02-15T06:59:52Z +7726,285,1,10641,4.99,2005-08-01T15:44:57Z,2020-02-15T06:59:52Z +7727,285,1,12027,8.99,2005-08-17T20:01:12Z,2020-02-15T06:59:52Z +7728,285,1,12444,0.99,2005-08-18T10:53:12Z,2020-02-15T06:59:52Z +7729,285,1,12449,0.99,2005-08-18T11:03:04Z,2020-02-15T06:59:52Z +7730,285,2,12687,9.99,2005-08-18T19:57:39Z,2020-02-15T06:59:52Z +7731,285,2,13102,7.99,2005-08-19T11:02:03Z,2020-02-15T06:59:52Z +7732,285,2,15251,0.99,2005-08-22T18:03:57Z,2020-02-15T06:59:52Z +7733,285,1,15489,4.99,2005-08-23T02:06:41Z,2020-02-15T06:59:52Z +7734,286,2,81,6.99,2005-05-25T12:15:19Z,2020-02-15T06:59:52Z +7735,286,1,1690,8.99,2005-06-16T12:24:18Z,2020-02-15T06:59:52Z +7736,286,1,2195,4.99,2005-06-18T01:44:46Z,2020-02-15T06:59:52Z +7737,286,2,3592,4.99,2005-07-06T04:38:50Z,2020-02-15T06:59:52Z +7738,286,2,3692,3.99,2005-07-06T09:54:12Z,2020-02-15T06:59:52Z +7739,286,2,4242,6.99,2005-07-07T13:39:01Z,2020-02-15T06:59:52Z +7740,286,2,4461,9.99,2005-07-07T23:59:43Z,2020-02-15T06:59:52Z +7741,286,1,4707,4.99,2005-07-08T11:57:28Z,2020-02-15T06:59:52Z +7742,286,1,4894,2.99,2005-07-08T20:21:31Z,2020-02-15T06:59:52Z +7743,286,1,5796,4.99,2005-07-10T14:42:54Z,2020-02-15T06:59:52Z +7744,286,2,6611,2.99,2005-07-12T08:20:23Z,2020-02-15T06:59:52Z +7745,286,1,7254,2.99,2005-07-27T10:48:50Z,2020-02-15T06:59:52Z +7746,286,1,7299,2.99,2005-07-27T12:49:56Z,2020-02-15T06:59:52Z +7747,286,1,7368,0.99,2005-07-27T15:06:05Z,2020-02-15T06:59:52Z +7748,286,1,7422,2.99,2005-07-27T17:10:42Z,2020-02-15T06:59:52Z +7749,286,1,7719,6.99,2005-07-28T04:39:09Z,2020-02-15T06:59:52Z +7750,286,2,8399,0.99,2005-07-29T06:20:18Z,2020-02-15T06:59:52Z +7751,286,2,9280,6.99,2005-07-30T15:15:38Z,2020-02-15T06:59:52Z +7752,286,1,9809,3.99,2005-07-31T11:19:21Z,2020-02-15T06:59:52Z +7753,286,2,10105,5.99,2005-07-31T20:54:20Z,2020-02-15T06:59:52Z +7754,286,2,11670,0.99,2005-08-17T05:48:59Z,2020-02-15T06:59:52Z +7755,286,2,12595,0.99,2005-08-18T16:27:08Z,2020-02-15T06:59:52Z +7756,286,1,12656,0.99,2005-08-18T18:58:35Z,2020-02-15T06:59:52Z +7757,286,2,13635,5.99,2005-08-20T07:17:35Z,2020-02-15T06:59:52Z +7758,286,1,13975,4.99,2005-08-20T18:58:23Z,2020-02-15T06:59:52Z +7759,286,1,14905,0.99,2005-08-22T04:34:22Z,2020-02-15T06:59:52Z +7760,286,2,15629,4.99,2005-08-23T07:28:22Z,2020-02-15T06:59:52Z +7761,287,2,498,0.99,2005-05-28T01:01:21Z,2020-02-15T06:59:52Z +7762,287,1,655,2.99,2005-05-28T20:16:20Z,2020-02-15T06:59:52Z +7763,287,2,964,2.99,2005-05-30T18:53:21Z,2020-02-15T06:59:52Z +7764,287,1,1247,7.99,2005-06-15T05:16:40Z,2020-02-15T06:59:52Z +7765,287,2,1642,2.99,2005-06-16T08:54:15Z,2020-02-15T06:59:52Z +7766,287,2,2286,9.99,2005-06-18T07:02:32Z,2020-02-15T06:59:52Z +7767,287,2,2612,6.99,2005-06-19T07:19:41Z,2020-02-15T06:59:52Z +7768,287,2,4877,4.99,2005-07-08T19:31:02Z,2020-02-15T06:59:52Z +7769,287,2,5346,1.99,2005-07-09T17:29:01Z,2020-02-15T06:59:52Z +7770,287,1,5593,3.99,2005-07-10T04:33:13Z,2020-02-15T06:59:52Z +7771,287,2,5761,0.99,2005-07-10T12:45:36Z,2020-02-15T06:59:52Z +7772,287,2,6379,3.99,2005-07-11T21:51:25Z,2020-02-15T06:59:52Z +7773,287,1,6397,2.99,2005-07-11T22:34:02Z,2020-02-15T06:59:52Z +7774,287,2,7402,2.99,2005-07-27T16:19:40Z,2020-02-15T06:59:52Z +7775,287,2,7777,2.99,2005-07-28T07:04:42Z,2020-02-15T06:59:52Z +7776,287,2,8994,6.99,2005-07-30T04:51:32Z,2020-02-15T06:59:52Z +7777,287,2,9716,1.99,2005-07-31T08:23:53Z,2020-02-15T06:59:52Z +7778,287,1,10027,6.99,2005-07-31T18:33:51Z,2020-02-15T06:59:52Z +7779,287,2,10574,2.99,2005-08-01T13:36:51Z,2020-02-15T06:59:52Z +7780,287,2,10807,4.99,2005-08-01T22:26:10Z,2020-02-15T06:59:52Z +7781,287,2,11106,4.99,2005-08-02T08:17:38Z,2020-02-15T06:59:52Z +7782,287,1,11716,4.99,2005-08-17T07:40:55Z,2020-02-15T06:59:52Z +7783,287,2,12861,2.99,2005-08-19T02:30:24Z,2020-02-15T06:59:52Z +7784,287,2,14715,6.99,2005-08-21T21:28:18Z,2020-02-15T06:59:52Z +7785,287,2,15076,1.99,2005-08-22T11:05:34Z,2020-02-15T06:59:52Z +7786,287,1,15084,4.99,2005-08-22T11:17:59Z,2020-02-15T06:59:52Z +7787,287,2,15127,0.99,2005-08-22T12:56:29Z,2020-02-15T06:59:52Z +7788,287,1,15614,2.99,2005-08-23T07:05:15Z,2020-02-15T06:59:52Z +7789,287,2,14204,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +7790,288,2,93,3.99,2005-05-25T15:54:16Z,2020-02-15T06:59:52Z +7791,288,2,427,6.99,2005-05-27T16:10:04Z,2020-02-15T06:59:52Z +7792,288,1,503,4.99,2005-05-28T01:35:25Z,2020-02-15T06:59:52Z +7793,288,2,565,5.99,2005-05-28T09:26:31Z,2020-02-15T06:59:52Z +7794,288,1,1466,5.99,2005-06-15T20:46:04Z,2020-02-15T06:59:52Z +7795,288,1,3958,3.99,2005-07-06T22:07:33Z,2020-02-15T06:59:52Z +7796,288,1,4692,2.99,2005-07-08T11:07:06Z,2020-02-15T06:59:52Z +7797,288,2,4758,0.99,2005-07-08T14:38:02Z,2020-02-15T06:59:52Z +7798,288,1,6399,2.99,2005-07-11T22:39:05Z,2020-02-15T06:59:52Z +7799,288,2,6518,3.99,2005-07-12T03:59:42Z,2020-02-15T06:59:52Z +7800,288,2,7744,0.99,2005-07-28T05:38:20Z,2020-02-15T06:59:52Z +7801,288,2,7855,2.99,2005-07-28T09:43:02Z,2020-02-15T06:59:52Z +7802,288,2,9429,2.99,2005-07-30T21:19:26Z,2020-02-15T06:59:52Z +7803,288,1,9732,0.99,2005-07-31T08:56:08Z,2020-02-15T06:59:52Z +7804,288,1,10927,9.99,2005-08-02T02:31:15Z,2020-02-15T06:59:52Z +7805,288,2,11952,2.99,2005-08-17T17:14:57Z,2020-02-15T06:59:52Z +7806,288,1,12134,1.99,2005-08-17T23:49:43Z,2020-02-15T06:59:52Z +7807,288,1,13219,2.99,2005-08-19T15:40:28Z,2020-02-15T06:59:52Z +7808,288,1,13227,0.99,2005-08-19T16:05:38Z,2020-02-15T06:59:52Z +7809,288,2,13363,2.99,2005-08-19T21:07:59Z,2020-02-15T06:59:52Z +7810,288,2,14113,0.99,2005-08-21T01:03:30Z,2020-02-15T06:59:52Z +7811,288,2,14756,0.99,2005-08-21T23:21:23Z,2020-02-15T06:59:52Z +7812,288,2,15058,2.99,2005-08-22T10:20:55Z,2020-02-15T06:59:52Z +7813,288,1,15119,2.99,2005-08-22T12:41:33Z,2020-02-15T06:59:52Z +7814,289,2,1880,4.99,2005-06-17T03:08:59Z,2020-02-15T06:59:52Z +7815,289,2,2316,0.99,2005-06-18T09:04:59Z,2020-02-15T06:59:52Z +7816,289,1,2387,6.99,2005-06-18T15:24:19Z,2020-02-15T06:59:52Z +7817,289,1,2784,10.99,2005-06-19T18:40:29Z,2020-02-15T06:59:52Z +7818,289,2,2948,6.99,2005-06-20T06:02:35Z,2020-02-15T06:59:52Z +7819,289,2,3123,6.99,2005-06-20T18:26:14Z,2020-02-15T06:59:52Z +7820,289,1,3588,2.99,2005-07-06T04:29:13Z,2020-02-15T06:59:52Z +7821,289,2,4622,0.99,2005-07-08T08:02:42Z,2020-02-15T06:59:52Z +7822,289,1,5089,4.99,2005-07-09T05:45:40Z,2020-02-15T06:59:52Z +7823,289,2,5342,8.99,2005-07-09T17:20:03Z,2020-02-15T06:59:52Z +7824,289,2,5584,4.99,2005-07-10T04:15:25Z,2020-02-15T06:59:52Z +7825,289,2,5724,0.99,2005-07-10T11:18:12Z,2020-02-15T06:59:52Z +7826,289,2,6007,3.99,2005-07-11T01:43:06Z,2020-02-15T06:59:52Z +7827,289,2,6536,7.99,2005-07-12T04:44:25Z,2020-02-15T06:59:52Z +7828,289,1,7151,4.99,2005-07-27T07:14:31Z,2020-02-15T06:59:52Z +7829,289,1,7162,4.99,2005-07-27T07:32:45Z,2020-02-15T06:59:52Z +7830,289,2,7325,0.99,2005-07-27T13:46:55Z,2020-02-15T06:59:52Z +7831,289,1,9498,2.99,2005-07-30T23:56:55Z,2020-02-15T06:59:52Z +7832,289,2,10297,7.99,2005-08-01T04:05:04Z,2020-02-15T06:59:52Z +7833,289,1,12158,1.99,2005-08-18T00:34:20Z,2020-02-15T06:59:52Z +7834,289,1,12170,0.99,2005-08-18T01:06:10Z,2020-02-15T06:59:52Z +7835,289,2,12558,7.99,2005-08-18T14:52:35Z,2020-02-15T06:59:52Z +7836,289,2,13165,0.99,2005-08-19T13:34:10Z,2020-02-15T06:59:52Z +7837,289,2,13211,0.99,2005-08-19T15:23:41Z,2020-02-15T06:59:52Z +7838,289,2,13256,9.99,2005-08-19T16:54:12Z,2020-02-15T06:59:52Z +7839,289,2,13336,5.99,2005-08-19T20:03:22Z,2020-02-15T06:59:52Z +7840,289,2,13891,6.99,2005-08-20T15:42:05Z,2020-02-15T06:59:52Z +7841,289,1,14087,0.99,2005-08-20T23:53:40Z,2020-02-15T06:59:52Z +7842,289,2,14729,4.99,2005-08-21T22:16:57Z,2020-02-15T06:59:52Z +7843,289,2,14917,4.99,2005-08-22T05:03:59Z,2020-02-15T06:59:52Z +7844,290,1,160,2.99,2005-05-26T01:46:20Z,2020-02-15T06:59:52Z +7845,290,1,1220,6.99,2005-06-15T03:26:15Z,2020-02-15T06:59:52Z +7846,290,2,1336,8.99,2005-06-15T12:01:34Z,2020-02-15T06:59:52Z +7847,290,2,1496,4.99,2005-06-15T21:55:58Z,2020-02-15T06:59:52Z +7848,290,2,1532,0.99,2005-06-16T00:41:31Z,2020-02-15T06:59:52Z +7849,290,1,3013,3.99,2005-06-20T10:45:09Z,2020-02-15T06:59:52Z +7850,290,2,4039,4.99,2005-07-07T02:57:59Z,2020-02-15T06:59:52Z +7851,290,1,4073,0.99,2005-07-07T04:49:13Z,2020-02-15T06:59:52Z +7852,290,2,4416,0.99,2005-07-07T22:04:36Z,2020-02-15T06:59:52Z +7853,290,1,5105,2.99,2005-07-09T06:38:59Z,2020-02-15T06:59:52Z +7854,290,2,5214,5.99,2005-07-09T11:43:08Z,2020-02-15T06:59:52Z +7855,290,2,5827,2.99,2005-07-10T16:22:20Z,2020-02-15T06:59:52Z +7856,290,2,6816,4.99,2005-07-12T18:18:50Z,2020-02-15T06:59:52Z +7857,290,1,6952,4.99,2005-07-26T23:51:27Z,2020-02-15T06:59:52Z +7858,290,2,7265,2.99,2005-07-27T11:19:01Z,2020-02-15T06:59:52Z +7859,290,1,7650,1.99,2005-07-28T01:47:20Z,2020-02-15T06:59:52Z +7860,290,1,8639,4.99,2005-07-29T14:30:31Z,2020-02-15T06:59:52Z +7861,290,1,9000,7.99,2005-07-30T04:58:55Z,2020-02-15T06:59:52Z +7862,290,1,9413,0.99,2005-07-30T20:44:39Z,2020-02-15T06:59:52Z +7863,290,2,10096,3.99,2005-07-31T20:38:58Z,2020-02-15T06:59:52Z +7864,290,1,10194,1.99,2005-08-01T00:33:52Z,2020-02-15T06:59:52Z +7865,290,1,10901,2.99,2005-08-02T01:35:44Z,2020-02-15T06:59:52Z +7866,290,1,11596,6.99,2005-08-17T02:53:55Z,2020-02-15T06:59:52Z +7867,290,2,12193,3.99,2005-08-18T02:03:59Z,2020-02-15T06:59:52Z +7868,290,2,12778,4.99,2005-08-18T23:40:23Z,2020-02-15T06:59:52Z +7869,290,2,13190,1.99,2005-08-19T14:27:59Z,2020-02-15T06:59:52Z +7870,290,1,13367,2.99,2005-08-19T21:19:27Z,2020-02-15T06:59:52Z +7871,290,2,13687,2.99,2005-08-20T08:57:51Z,2020-02-15T06:59:52Z +7872,291,1,54,4.99,2005-05-25T07:23:25Z,2020-02-15T06:59:52Z +7873,291,2,747,4.99,2005-05-29T09:26:34Z,2020-02-15T06:59:52Z +7874,291,1,1012,2.99,2005-05-31T02:18:05Z,2020-02-15T06:59:52Z +7875,291,1,1191,2.99,2005-06-15T01:10:35Z,2020-02-15T06:59:52Z +7876,291,1,2300,2.99,2005-06-18T08:22:34Z,2020-02-15T06:59:52Z +7877,291,2,3042,2.99,2005-06-20T12:38:27Z,2020-02-15T06:59:52Z +7878,291,2,3512,4.99,2005-07-06T00:43:06Z,2020-02-15T06:59:52Z +7879,291,2,4862,3.99,2005-07-08T19:02:46Z,2020-02-15T06:59:52Z +7880,291,2,5754,2.99,2005-07-10T12:32:43Z,2020-02-15T06:59:52Z +7881,291,2,6516,4.99,2005-07-12T03:51:54Z,2020-02-15T06:59:52Z +7882,291,1,6796,2.99,2005-07-12T16:44:16Z,2020-02-15T06:59:52Z +7883,291,1,7561,5.99,2005-07-27T22:21:05Z,2020-02-15T06:59:52Z +7884,291,2,7564,0.99,2005-07-27T22:31:17Z,2020-02-15T06:59:52Z +7885,291,1,8690,0.99,2005-07-29T16:39:28Z,2020-02-15T06:59:52Z +7886,291,2,8697,4.99,2005-07-29T16:46:07Z,2020-02-15T06:59:52Z +7887,291,1,9165,5.99,2005-07-30T11:24:28Z,2020-02-15T06:59:52Z +7888,291,2,9201,5.99,2005-07-30T12:42:21Z,2020-02-15T06:59:52Z +7889,291,2,9919,7.99,2005-07-31T14:55:46Z,2020-02-15T06:59:52Z +7890,291,1,10463,4.99,2005-08-01T09:39:43Z,2020-02-15T06:59:52Z +7891,291,2,11145,0.99,2005-08-02T09:43:24Z,2020-02-15T06:59:52Z +7892,291,1,13665,5.99,2005-08-20T08:19:20Z,2020-02-15T06:59:52Z +7893,291,2,14241,4.99,2005-08-21T05:24:55Z,2020-02-15T06:59:52Z +7894,291,2,15663,3.99,2005-08-23T08:54:26Z,2020-02-15T06:59:52Z +7895,292,1,324,0.99,2005-05-27T01:00:04Z,2020-02-15T06:59:52Z +7896,292,1,1901,3.99,2005-06-17T04:35:19Z,2020-02-15T06:59:52Z +7897,292,2,2258,3.99,2005-06-18T05:30:36Z,2020-02-15T06:59:52Z +7898,292,1,2838,3.99,2005-06-19T22:06:06Z,2020-02-15T06:59:52Z +7899,292,2,3328,2.99,2005-06-21T09:08:44Z,2020-02-15T06:59:52Z +7900,292,2,3557,0.99,2005-07-06T02:48:39Z,2020-02-15T06:59:52Z +7901,292,1,4200,4.99,2005-07-07T11:15:11Z,2020-02-15T06:59:52Z +7902,292,2,5095,4.99,2005-07-09T06:08:22Z,2020-02-15T06:59:52Z +7903,292,2,5257,0.99,2005-07-09T13:56:43Z,2020-02-15T06:59:52Z +7904,292,1,5940,4.99,2005-07-10T22:31:01Z,2020-02-15T06:59:52Z +7905,292,1,6270,8.99,2005-07-11T15:59:10Z,2020-02-15T06:59:52Z +7906,292,1,6900,6.99,2005-07-12T21:45:25Z,2020-02-15T06:59:52Z +7907,292,2,7199,5.99,2005-07-27T08:53:23Z,2020-02-15T06:59:52Z +7908,292,1,7216,2.99,2005-07-27T09:27:45Z,2020-02-15T06:59:52Z +7909,292,1,7545,2.99,2005-07-27T21:48:03Z,2020-02-15T06:59:52Z +7910,292,1,7766,4.99,2005-07-28T06:41:57Z,2020-02-15T06:59:52Z +7911,292,1,8047,2.99,2005-07-28T16:49:43Z,2020-02-15T06:59:52Z +7912,292,2,8842,4.99,2005-07-29T23:03:40Z,2020-02-15T06:59:52Z +7913,292,1,8990,8.99,2005-07-30T04:41:42Z,2020-02-15T06:59:52Z +7914,292,1,9792,5.99,2005-07-31T10:43:41Z,2020-02-15T06:59:52Z +7915,292,2,9819,1.99,2005-07-31T11:39:13Z,2020-02-15T06:59:52Z +7916,292,1,11193,4.99,2005-08-02T11:31:33Z,2020-02-15T06:59:52Z +7917,292,1,12739,10.99,2005-08-18T22:15:18Z,2020-02-15T06:59:52Z +7918,292,1,13715,2.99,2005-08-20T09:43:06Z,2020-02-15T06:59:52Z +7919,292,1,14499,0.99,2005-08-21T14:11:19Z,2020-02-15T06:59:52Z +7920,292,2,14845,4.99,2005-08-22T02:12:44Z,2020-02-15T06:59:52Z +7921,292,1,15117,2.99,2005-08-22T12:38:20Z,2020-02-15T06:59:52Z +7922,293,2,445,0.99,2005-05-27T18:42:57Z,2020-02-15T06:59:52Z +7923,293,1,924,4.99,2005-05-30T12:10:59Z,2020-02-15T06:59:52Z +7924,293,2,1034,8.99,2005-05-31T04:53:40Z,2020-02-15T06:59:52Z +7925,293,1,1589,9.99,2005-06-16T04:58:03Z,2020-02-15T06:59:52Z +7926,293,1,1829,5.99,2005-06-16T22:14:21Z,2020-02-15T06:59:52Z +7927,293,2,1860,4.99,2005-06-17T01:17:12Z,2020-02-15T06:59:52Z +7928,293,1,2386,4.99,2005-06-18T15:22:51Z,2020-02-15T06:59:52Z +7929,293,2,3025,2.99,2005-06-20T11:46:48Z,2020-02-15T06:59:52Z +7930,293,1,3290,1.99,2005-06-21T06:45:34Z,2020-02-15T06:59:52Z +7931,293,2,3452,4.99,2005-06-21T21:11:27Z,2020-02-15T06:59:52Z +7932,293,1,3906,3.99,2005-07-06T19:35:55Z,2020-02-15T06:59:52Z +7933,293,2,4343,0.99,2005-07-07T18:48:54Z,2020-02-15T06:59:52Z +7934,293,2,4542,4.99,2005-07-08T04:06:30Z,2020-02-15T06:59:52Z +7935,293,2,4944,6.99,2005-07-08T22:44:28Z,2020-02-15T06:59:52Z +7936,293,2,5765,3.99,2005-07-10T13:03:02Z,2020-02-15T06:59:52Z +7937,293,1,6432,9.99,2005-07-12T00:09:41Z,2020-02-15T06:59:52Z +7938,293,2,7607,4.99,2005-07-28T00:05:53Z,2020-02-15T06:59:52Z +7939,293,1,8589,4.99,2005-07-29T12:28:17Z,2020-02-15T06:59:52Z +7940,293,1,8745,2.99,2005-07-29T19:03:05Z,2020-02-15T06:59:52Z +7941,293,2,9123,2.99,2005-07-30T09:39:15Z,2020-02-15T06:59:52Z +7942,293,2,11131,1.99,2005-08-02T09:10:04Z,2020-02-15T06:59:52Z +7943,293,1,11576,2.99,2005-08-17T01:53:20Z,2020-02-15T06:59:52Z +7944,293,2,13013,6.99,2005-08-19T07:55:51Z,2020-02-15T06:59:52Z +7945,293,1,13029,2.99,2005-08-19T08:28:04Z,2020-02-15T06:59:52Z +7946,293,2,13504,5.99,2005-08-20T02:01:48Z,2020-02-15T06:59:52Z +7947,293,1,13817,4.99,2005-08-20T13:15:30Z,2020-02-15T06:59:52Z +7948,293,1,14248,6.99,2005-08-21T05:35:57Z,2020-02-15T06:59:52Z +7949,293,1,15258,4.99,2005-08-22T18:22:44Z,2020-02-15T06:59:52Z +7950,293,1,15402,8.99,2005-08-22T23:17:41Z,2020-02-15T06:59:52Z +7951,293,1,15508,7.99,2005-08-23T02:49:04Z,2020-02-15T06:59:52Z +7952,293,2,15675,5.99,2005-08-23T09:18:52Z,2020-02-15T06:59:52Z +7953,294,1,595,1.99,2005-05-28T13:59:54Z,2020-02-15T06:59:52Z +7954,294,1,2900,2.99,2005-06-20T02:40:04Z,2020-02-15T06:59:52Z +7955,294,2,3330,2.99,2005-06-21T09:22:37Z,2020-02-15T06:59:52Z +7956,294,1,3681,4.99,2005-07-06T09:19:30Z,2020-02-15T06:59:52Z +7957,294,2,4019,4.99,2005-07-07T01:27:44Z,2020-02-15T06:59:52Z +7958,294,1,4786,7.99,2005-07-08T16:13:05Z,2020-02-15T06:59:52Z +7959,294,2,6185,5.99,2005-07-11T11:25:09Z,2020-02-15T06:59:52Z +7960,294,2,7415,6.99,2005-07-27T16:50:59Z,2020-02-15T06:59:52Z +7961,294,1,7765,4.99,2005-07-28T06:40:33Z,2020-02-15T06:59:52Z +7962,294,2,8843,4.99,2005-07-29T23:04:25Z,2020-02-15T06:59:52Z +7963,294,2,9194,2.99,2005-07-30T12:28:45Z,2020-02-15T06:59:52Z +7964,294,1,9522,2.99,2005-07-31T00:55:11Z,2020-02-15T06:59:52Z +7965,294,2,9607,0.99,2005-07-31T03:51:06Z,2020-02-15T06:59:52Z +7966,294,2,10186,0.99,2005-08-01T00:12:36Z,2020-02-15T06:59:52Z +7967,294,2,10220,4.99,2005-08-01T01:13:22Z,2020-02-15T06:59:52Z +7968,294,1,10551,6.99,2005-08-01T12:48:55Z,2020-02-15T06:59:52Z +7969,294,2,10600,2.99,2005-08-01T14:25:21Z,2020-02-15T06:59:52Z +7970,294,2,10642,4.99,2005-08-01T15:45:11Z,2020-02-15T06:59:52Z +7971,294,2,11071,2.99,2005-08-02T07:10:53Z,2020-02-15T06:59:52Z +7972,294,1,11390,2.99,2005-08-02T18:39:16Z,2020-02-15T06:59:52Z +7973,294,2,11875,4.99,2005-08-17T14:16:48Z,2020-02-15T06:59:52Z +7974,294,2,11981,2.99,2005-08-17T18:10:40Z,2020-02-15T06:59:52Z +7975,294,1,12278,5.99,2005-08-18T04:46:45Z,2020-02-15T06:59:52Z +7976,294,1,14474,2.99,2005-08-21T13:22:48Z,2020-02-15T06:59:52Z +7977,294,2,14630,7.99,2005-08-21T18:43:44Z,2020-02-15T06:59:52Z +7978,294,1,15839,5.99,2005-08-23T15:34:46Z,2020-02-15T06:59:52Z +7979,295,2,371,3.99,2005-05-27T08:08:18Z,2020-02-15T06:59:52Z +7980,295,1,1184,5.99,2005-06-15T00:49:36Z,2020-02-15T06:59:52Z +7981,295,1,1328,2.99,2005-06-15T11:23:27Z,2020-02-15T06:59:52Z +7982,295,2,1935,2.99,2005-06-17T07:14:15Z,2020-02-15T06:59:52Z +7983,295,1,2054,2.99,2005-06-17T15:26:37Z,2020-02-15T06:59:52Z +7984,295,1,2431,1.99,2005-06-18T17:53:03Z,2020-02-15T06:59:52Z +7985,295,1,2638,1.99,2005-06-19T09:23:30Z,2020-02-15T06:59:52Z +7986,295,1,2999,2.99,2005-06-20T09:30:34Z,2020-02-15T06:59:52Z +7987,295,1,3198,1.99,2005-06-21T00:08:54Z,2020-02-15T06:59:52Z +7988,295,2,3394,8.99,2005-06-21T15:17:39Z,2020-02-15T06:59:52Z +7989,295,2,3496,1.99,2005-07-05T23:59:15Z,2020-02-15T06:59:52Z +7990,295,1,3876,9.99,2005-07-06T18:21:13Z,2020-02-15T06:59:52Z +7991,295,1,4164,1.99,2005-07-07T09:20:11Z,2020-02-15T06:59:52Z +7992,295,1,4432,1.99,2005-07-07T22:40:02Z,2020-02-15T06:59:52Z +7993,295,1,5019,2.99,2005-07-09T02:04:32Z,2020-02-15T06:59:52Z +7994,295,2,5053,4.99,2005-07-09T03:59:46Z,2020-02-15T06:59:52Z +7995,295,2,5283,2.99,2005-07-09T15:07:17Z,2020-02-15T06:59:52Z +7996,295,2,5994,4.99,2005-07-11T01:14:10Z,2020-02-15T06:59:52Z +7997,295,1,6252,2.99,2005-07-11T15:06:29Z,2020-02-15T06:59:52Z +7998,295,2,6331,3.99,2005-07-11T19:17:21Z,2020-02-15T06:59:52Z +7999,295,2,8087,0.99,2005-07-28T18:21:16Z,2020-02-15T06:59:52Z +8000,295,1,8108,7.99,2005-07-28T19:07:38Z,2020-02-15T06:59:52Z +8001,295,1,8840,9.99,2005-07-29T22:55:38Z,2020-02-15T06:59:52Z +8002,295,2,8932,2.99,2005-07-30T02:31:26Z,2020-02-15T06:59:52Z +8003,295,1,9425,7.99,2005-07-30T21:11:21Z,2020-02-15T06:59:52Z +8004,295,2,9692,8.99,2005-07-31T07:11:04Z,2020-02-15T06:59:52Z +8005,295,2,9793,4.99,2005-07-31T10:45:11Z,2020-02-15T06:59:52Z +8006,295,2,10160,4.99,2005-07-31T23:07:40Z,2020-02-15T06:59:52Z +8007,295,2,10222,0.99,2005-08-01T01:17:42Z,2020-02-15T06:59:52Z +8008,295,1,10349,3.99,2005-08-01T05:27:13Z,2020-02-15T06:59:52Z +8009,295,2,11083,4.99,2005-08-02T07:32:01Z,2020-02-15T06:59:52Z +8010,295,2,11913,5.99,2005-08-17T15:53:17Z,2020-02-15T06:59:52Z +8011,295,2,12041,4.99,2005-08-17T20:34:33Z,2020-02-15T06:59:52Z +8012,295,1,12383,0.99,2005-08-18T08:36:03Z,2020-02-15T06:59:52Z +8013,295,1,14264,0.99,2005-08-21T06:18:22Z,2020-02-15T06:59:52Z +8014,295,1,14387,6.99,2005-08-21T10:10:01Z,2020-02-15T06:59:52Z +8015,295,1,14514,6.99,2005-08-21T14:51:52Z,2020-02-15T06:59:52Z +8016,295,2,15735,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8017,296,2,162,4.99,2005-05-26T02:02:05Z,2020-02-15T06:59:52Z +8018,296,1,511,5.99,2005-05-28T03:04:04Z,2020-02-15T06:59:52Z +8019,296,1,869,4.99,2005-05-30T04:22:06Z,2020-02-15T06:59:52Z +8020,296,2,956,2.99,2005-05-30T17:30:28Z,2020-02-15T06:59:52Z +8021,296,2,1659,4.99,2005-06-16T10:11:46Z,2020-02-15T06:59:52Z +8022,296,1,3034,0.99,2005-06-20T12:15:50Z,2020-02-15T06:59:52Z +8023,296,2,3119,0.99,2005-06-20T18:11:44Z,2020-02-15T06:59:52Z +8024,296,2,3486,7.99,2005-07-05T23:29:55Z,2020-02-15T06:59:52Z +8025,296,1,3810,2.99,2005-07-06T15:18:44Z,2020-02-15T06:59:52Z +8026,296,1,4480,4.99,2005-07-08T00:56:30Z,2020-02-15T06:59:52Z +8027,296,2,5090,0.99,2005-07-09T05:48:22Z,2020-02-15T06:59:52Z +8028,296,1,5589,4.99,2005-07-10T04:22:58Z,2020-02-15T06:59:52Z +8029,296,2,6016,4.99,2005-07-11T02:04:45Z,2020-02-15T06:59:52Z +8030,296,1,6398,5.99,2005-07-11T22:34:49Z,2020-02-15T06:59:52Z +8031,296,1,6967,6.99,2005-07-27T00:16:31Z,2020-02-15T06:59:52Z +8032,296,2,7568,4.99,2005-07-27T22:38:53Z,2020-02-15T06:59:52Z +8033,296,2,8171,0.99,2005-07-28T21:32:57Z,2020-02-15T06:59:52Z +8034,296,1,9249,5.99,2005-07-30T14:15:02Z,2020-02-15T06:59:52Z +8035,296,1,9304,2.99,2005-07-30T16:41:34Z,2020-02-15T06:59:52Z +8036,296,2,11571,4.99,2005-08-17T01:37:51Z,2020-02-15T06:59:52Z +8037,296,2,11825,4.99,2005-08-17T12:43:30Z,2020-02-15T06:59:52Z +8038,296,2,12689,3.99,2005-08-18T20:06:34Z,2020-02-15T06:59:52Z +8039,296,2,13471,2.99,2005-08-20T01:02:26Z,2020-02-15T06:59:52Z +8040,296,1,13702,2.99,2005-08-20T09:27:20Z,2020-02-15T06:59:52Z +8041,296,1,13819,4.99,2005-08-20T13:23:15Z,2020-02-15T06:59:52Z +8042,296,1,13991,1.99,2005-08-20T19:29:44Z,2020-02-15T06:59:52Z +8043,296,2,14571,7.99,2005-08-21T16:40:26Z,2020-02-15T06:59:52Z +8044,296,2,15023,2.99,2005-08-22T08:56:48Z,2020-02-15T06:59:52Z +8045,296,2,15866,7.99,2005-08-23T16:19:02Z,2020-02-15T06:59:52Z +8046,296,1,12009,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8047,297,2,143,0.99,2005-05-25T23:45:52Z,2020-02-15T06:59:52Z +8048,297,1,954,3.99,2005-05-30T16:57:29Z,2020-02-15T06:59:52Z +8049,297,1,1409,3.99,2005-06-15T16:58:12Z,2020-02-15T06:59:52Z +8050,297,1,2067,2.99,2005-06-17T16:11:08Z,2020-02-15T06:59:52Z +8051,297,1,2202,8.99,2005-06-18T02:09:24Z,2020-02-15T06:59:52Z +8052,297,1,2260,2.99,2005-06-18T05:38:36Z,2020-02-15T06:59:52Z +8053,297,2,2339,4.99,2005-06-18T11:29:22Z,2020-02-15T06:59:52Z +8054,297,1,3582,0.99,2005-07-06T04:10:35Z,2020-02-15T06:59:52Z +8055,297,2,4621,2.99,2005-07-08T08:02:18Z,2020-02-15T06:59:52Z +8056,297,1,4929,5.99,2005-07-08T22:06:18Z,2020-02-15T06:59:52Z +8057,297,1,5743,8.99,2005-07-10T11:57:38Z,2020-02-15T06:59:52Z +8058,297,2,6036,2.99,2005-07-11T03:02:28Z,2020-02-15T06:59:52Z +8059,297,1,6064,6.99,2005-07-11T04:23:18Z,2020-02-15T06:59:52Z +8060,297,1,6156,4.99,2005-07-11T09:45:48Z,2020-02-15T06:59:52Z +8061,297,1,6984,2.99,2005-07-27T00:56:30Z,2020-02-15T06:59:52Z +8062,297,2,7867,0.99,2005-07-28T10:08:54Z,2020-02-15T06:59:52Z +8063,297,1,7933,0.99,2005-07-28T12:27:27Z,2020-02-15T06:59:52Z +8064,297,2,9014,2.99,2005-07-30T05:19:27Z,2020-02-15T06:59:52Z +8065,297,2,9674,5.99,2005-07-31T06:36:53Z,2020-02-15T06:59:52Z +8066,297,1,10153,0.99,2005-07-31T22:30:10Z,2020-02-15T06:59:52Z +8067,297,2,10264,4.99,2005-08-01T03:03:12Z,2020-02-15T06:59:52Z +8068,297,2,11269,0.99,2005-08-02T14:11:41Z,2020-02-15T06:59:52Z +8069,297,2,11413,0.99,2005-08-02T19:35:19Z,2020-02-15T06:59:52Z +8070,297,2,11585,4.99,2005-08-17T02:14:36Z,2020-02-15T06:59:52Z +8071,297,1,11780,2.99,2005-08-17T10:34:24Z,2020-02-15T06:59:52Z +8072,297,1,11784,0.99,2005-08-17T10:48:05Z,2020-02-15T06:59:52Z +8073,297,1,12472,10.99,2005-08-18T11:58:48Z,2020-02-15T06:59:52Z +8074,297,1,13330,2.99,2005-08-19T19:59:21Z,2020-02-15T06:59:52Z +8075,297,2,13721,4.99,2005-08-20T10:02:59Z,2020-02-15T06:59:52Z +8076,297,1,13888,1.99,2005-08-20T15:39:42Z,2020-02-15T06:59:52Z +8077,297,1,14403,5.99,2005-08-21T10:40:34Z,2020-02-15T06:59:52Z +8078,297,2,15582,2.99,2005-08-23T05:45:44Z,2020-02-15T06:59:52Z +8079,297,1,15711,4.99,2005-08-23T10:43:00Z,2020-02-15T06:59:52Z +8080,298,1,383,3.99,2005-05-27T10:12:20Z,2020-02-15T06:59:52Z +8081,298,2,1454,4.99,2005-06-15T19:49:41Z,2020-02-15T06:59:52Z +8082,298,2,2385,3.99,2005-06-18T15:22:40Z,2020-02-15T06:59:52Z +8083,298,2,3095,4.99,2005-06-20T16:16:53Z,2020-02-15T06:59:52Z +8084,298,2,3400,4.99,2005-06-21T15:50:30Z,2020-02-15T06:59:52Z +8085,298,2,3479,0.99,2005-07-05T23:08:53Z,2020-02-15T06:59:52Z +8086,298,1,3728,2.99,2005-07-06T11:29:00Z,2020-02-15T06:59:52Z +8087,298,2,4291,2.99,2005-07-07T15:47:47Z,2020-02-15T06:59:52Z +8088,298,1,4936,3.99,2005-07-08T22:24:50Z,2020-02-15T06:59:52Z +8089,298,2,5166,2.99,2005-07-09T09:15:48Z,2020-02-15T06:59:52Z +8090,298,1,5247,2.99,2005-07-09T13:26:28Z,2020-02-15T06:59:52Z +8091,298,2,6802,0.99,2005-07-12T17:14:17Z,2020-02-15T06:59:52Z +8092,298,2,7802,0.99,2005-07-28T07:51:57Z,2020-02-15T06:59:52Z +8093,298,1,7869,7.99,2005-07-28T10:13:15Z,2020-02-15T06:59:52Z +8094,298,2,8737,5.99,2005-07-29T18:32:13Z,2020-02-15T06:59:52Z +8095,298,2,10248,6.99,2005-08-01T02:35:28Z,2020-02-15T06:59:52Z +8096,298,1,11070,0.99,2005-08-02T07:10:39Z,2020-02-15T06:59:52Z +8097,298,2,11288,6.99,2005-08-02T14:54:08Z,2020-02-15T06:59:52Z +8098,298,2,12076,0.99,2005-08-17T21:58:19Z,2020-02-15T06:59:52Z +8099,298,1,12765,8.99,2005-08-18T23:21:50Z,2020-02-15T06:59:52Z +8100,298,1,13172,0.99,2005-08-19T13:49:07Z,2020-02-15T06:59:52Z +8101,298,1,13244,4.99,2005-08-19T16:43:04Z,2020-02-15T06:59:52Z +8102,298,2,14473,0.99,2005-08-21T13:19:03Z,2020-02-15T06:59:52Z +8103,298,1,15245,3.99,2005-08-22T17:49:35Z,2020-02-15T06:59:52Z +8104,298,2,15262,4.99,2005-08-22T18:25:21Z,2020-02-15T06:59:52Z +8105,298,1,15643,4.99,2005-08-23T08:13:26Z,2020-02-15T06:59:52Z +8106,299,1,332,5.99,2005-05-27T02:27:10Z,2020-02-15T06:59:52Z +8107,299,2,606,8.99,2005-05-28T14:48:39Z,2020-02-15T06:59:52Z +8108,299,1,1650,8.99,2005-06-16T09:23:20Z,2020-02-15T06:59:52Z +8109,299,2,2664,4.99,2005-06-19T11:11:23Z,2020-02-15T06:59:52Z +8110,299,1,2774,2.99,2005-06-19T18:05:11Z,2020-02-15T06:59:52Z +8111,299,2,2791,4.99,2005-06-19T18:51:27Z,2020-02-15T06:59:52Z +8112,299,1,3074,0.99,2005-06-20T14:41:41Z,2020-02-15T06:59:52Z +8113,299,2,3223,2.99,2005-06-21T02:06:45Z,2020-02-15T06:59:52Z +8114,299,1,3288,5.99,2005-06-21T06:36:59Z,2020-02-15T06:59:52Z +8115,299,2,3497,0.99,2005-07-06T00:00:03Z,2020-02-15T06:59:52Z +8116,299,2,4153,5.99,2005-07-07T08:53:08Z,2020-02-15T06:59:52Z +8117,299,1,4350,2.99,2005-07-07T19:02:41Z,2020-02-15T06:59:52Z +8118,299,2,5033,1.99,2005-07-09T02:42:01Z,2020-02-15T06:59:52Z +8119,299,1,5642,2.99,2005-07-10T06:46:08Z,2020-02-15T06:59:52Z +8120,299,2,6732,0.99,2005-07-12T13:58:51Z,2020-02-15T06:59:52Z +8121,299,1,6853,7.99,2005-07-12T19:38:11Z,2020-02-15T06:59:52Z +8122,299,1,7264,4.99,2005-07-27T11:18:58Z,2020-02-15T06:59:52Z +8123,299,1,7746,2.99,2005-07-28T05:48:56Z,2020-02-15T06:59:52Z +8124,299,2,7862,9.99,2005-07-28T10:02:25Z,2020-02-15T06:59:52Z +8125,299,1,9520,2.99,2005-07-31T00:50:54Z,2020-02-15T06:59:52Z +8126,299,1,10201,0.99,2005-08-01T00:42:18Z,2020-02-15T06:59:52Z +8127,299,2,10440,2.99,2005-08-01T08:54:32Z,2020-02-15T06:59:52Z +8128,299,1,11629,6.99,2005-08-17T04:27:24Z,2020-02-15T06:59:52Z +8129,299,1,11746,5.99,2005-08-17T09:03:24Z,2020-02-15T06:59:52Z +8130,299,1,11998,0.99,2005-08-17T18:46:21Z,2020-02-15T06:59:52Z +8131,299,1,13069,4.99,2005-08-19T09:55:20Z,2020-02-15T06:59:52Z +8132,299,2,14208,0.99,2005-08-21T04:09:18Z,2020-02-15T06:59:52Z +8133,299,1,14548,3.99,2005-08-21T15:53:52Z,2020-02-15T06:59:52Z +8134,299,2,14889,4.99,2005-08-22T04:10:10Z,2020-02-15T06:59:52Z +8135,299,2,14898,6.99,2005-08-22T04:26:34Z,2020-02-15T06:59:52Z +8136,300,2,457,0.99,2005-05-27T19:52:29Z,2020-02-15T06:59:52Z +8137,300,1,780,3.99,2005-05-29T14:18:32Z,2020-02-15T06:59:52Z +8138,300,1,1111,4.99,2005-05-31T15:24:19Z,2020-02-15T06:59:52Z +8139,300,2,1381,0.99,2005-06-15T15:17:21Z,2020-02-15T06:59:52Z +8140,300,1,3177,2.99,2005-06-20T22:32:44Z,2020-02-15T06:59:52Z +8141,300,1,3775,0.99,2005-07-06T13:27:33Z,2020-02-15T06:59:52Z +8142,300,1,4030,0.99,2005-07-07T02:25:42Z,2020-02-15T06:59:52Z +8143,300,2,5562,2.99,2005-07-10T03:17:42Z,2020-02-15T06:59:52Z +8144,300,1,5705,10.99,2005-07-10T10:09:17Z,2020-02-15T06:59:52Z +8145,300,2,6111,4.99,2005-07-11T07:26:57Z,2020-02-15T06:59:52Z +8146,300,1,6822,5.99,2005-07-12T18:23:39Z,2020-02-15T06:59:52Z +8147,300,1,6998,4.99,2005-07-27T01:16:29Z,2020-02-15T06:59:52Z +8148,300,1,7815,4.99,2005-07-28T08:14:11Z,2020-02-15T06:59:52Z +8149,300,1,8117,6.99,2005-07-28T19:20:16Z,2020-02-15T06:59:52Z +8150,300,1,8210,6.99,2005-07-28T23:31:05Z,2020-02-15T06:59:52Z +8151,300,1,8283,3.99,2005-07-29T01:52:22Z,2020-02-15T06:59:52Z +8152,300,1,9078,0.99,2005-07-30T08:01:00Z,2020-02-15T06:59:52Z +8153,300,2,9127,2.99,2005-07-30T09:46:36Z,2020-02-15T06:59:52Z +8154,300,2,9791,0.99,2005-07-31T10:35:22Z,2020-02-15T06:59:52Z +8155,300,1,10977,4.99,2005-08-02T04:12:17Z,2020-02-15T06:59:52Z +8156,300,2,12484,2.99,2005-08-18T12:39:37Z,2020-02-15T06:59:52Z +8157,300,2,12644,5.99,2005-08-18T18:22:27Z,2020-02-15T06:59:52Z +8158,300,2,13257,3.99,2005-08-19T17:01:20Z,2020-02-15T06:59:52Z +8159,300,1,13296,0.99,2005-08-19T18:43:53Z,2020-02-15T06:59:52Z +8160,300,2,13499,6.99,2005-08-20T01:52:30Z,2020-02-15T06:59:52Z +8161,300,1,13717,5.99,2005-08-20T09:50:52Z,2020-02-15T06:59:52Z +8162,300,1,14674,7.99,2005-08-21T20:01:34Z,2020-02-15T06:59:52Z +8163,300,1,14709,9.99,2005-08-21T21:07:59Z,2020-02-15T06:59:52Z +8164,300,2,15051,2.99,2005-08-22T10:08:50Z,2020-02-15T06:59:52Z +8165,300,2,15811,5.99,2005-08-23T14:43:46Z,2020-02-15T06:59:52Z +8166,300,1,15695,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8167,301,2,27,4.99,2005-05-25T03:41:50Z,2020-02-15T06:59:52Z +8168,301,2,227,5.99,2005-05-26T10:51:46Z,2020-02-15T06:59:52Z +8169,301,1,955,0.99,2005-05-30T16:59:03Z,2020-02-15T06:59:52Z +8170,301,1,1853,0.99,2005-06-17T00:39:54Z,2020-02-15T06:59:52Z +8171,301,1,2611,4.99,2005-06-19T07:18:17Z,2020-02-15T06:59:52Z +8172,301,2,2925,2.99,2005-06-20T04:23:49Z,2020-02-15T06:59:52Z +8173,301,2,4316,4.99,2005-07-07T17:44:22Z,2020-02-15T06:59:52Z +8174,301,2,4834,3.99,2005-07-08T18:07:45Z,2020-02-15T06:59:52Z +8175,301,1,5119,6.99,2005-07-09T07:14:18Z,2020-02-15T06:59:52Z +8176,301,2,5511,4.99,2005-07-10T01:00:00Z,2020-02-15T06:59:52Z +8177,301,2,5730,2.99,2005-07-10T11:28:32Z,2020-02-15T06:59:52Z +8178,301,2,5807,2.99,2005-07-10T15:16:30Z,2020-02-15T06:59:52Z +8179,301,2,6833,6.99,2005-07-12T18:53:34Z,2020-02-15T06:59:52Z +8180,301,2,7318,4.99,2005-07-27T13:25:31Z,2020-02-15T06:59:52Z +8181,301,2,7818,4.99,2005-07-28T08:25:00Z,2020-02-15T06:59:52Z +8182,301,2,9435,4.99,2005-07-30T21:31:02Z,2020-02-15T06:59:52Z +8183,301,1,10883,0.99,2005-08-02T00:47:19Z,2020-02-15T06:59:52Z +8184,301,2,13183,5.99,2005-08-19T14:09:26Z,2020-02-15T06:59:52Z +8185,301,2,13633,2.99,2005-08-20T07:13:47Z,2020-02-15T06:59:52Z +8186,301,1,15201,10.99,2005-08-22T16:24:42Z,2020-02-15T06:59:52Z +8187,301,1,15268,1.99,2005-08-22T18:39:11Z,2020-02-15T06:59:52Z +8188,302,2,38,4.99,2005-05-25T04:47:44Z,2020-02-15T06:59:52Z +8189,302,2,92,5.99,2005-05-25T15:38:46Z,2020-02-15T06:59:52Z +8190,302,1,1231,2.99,2005-06-15T04:04:41Z,2020-02-15T06:59:52Z +8191,302,2,4676,4.99,2005-07-08T10:26:02Z,2020-02-15T06:59:52Z +8192,302,2,5498,0.99,2005-07-10T00:27:21Z,2020-02-15T06:59:52Z +8193,302,2,5682,2.99,2005-07-10T08:51:39Z,2020-02-15T06:59:52Z +8194,302,2,5709,0.99,2005-07-10T10:31:52Z,2020-02-15T06:59:52Z +8195,302,2,5821,4.99,2005-07-10T16:07:16Z,2020-02-15T06:59:52Z +8196,302,2,6623,7.99,2005-07-12T09:05:34Z,2020-02-15T06:59:52Z +8197,302,1,7183,0.99,2005-07-27T08:18:38Z,2020-02-15T06:59:52Z +8198,302,1,7411,6.99,2005-07-27T16:42:30Z,2020-02-15T06:59:52Z +8199,302,1,8363,6.99,2005-07-29T05:10:08Z,2020-02-15T06:59:52Z +8200,302,2,8646,0.99,2005-07-29T14:48:48Z,2020-02-15T06:59:52Z +8201,302,1,8795,2.99,2005-07-29T21:04:14Z,2020-02-15T06:59:52Z +8202,302,1,9146,7.99,2005-07-30T10:32:08Z,2020-02-15T06:59:52Z +8203,302,2,9358,2.99,2005-07-30T18:37:24Z,2020-02-15T06:59:52Z +8204,302,1,9374,8.99,2005-07-30T19:10:03Z,2020-02-15T06:59:52Z +8205,302,2,9581,5.99,2005-07-31T03:03:07Z,2020-02-15T06:59:52Z +8206,302,2,10329,0.99,2005-08-01T04:56:13Z,2020-02-15T06:59:52Z +8207,302,1,12126,7.99,2005-08-17T23:25:21Z,2020-02-15T06:59:52Z +8208,302,2,12516,4.99,2005-08-18T13:39:53Z,2020-02-15T06:59:52Z +8209,302,1,12903,2.99,2005-08-19T04:09:38Z,2020-02-15T06:59:52Z +8210,302,1,13916,2.99,2005-08-20T16:43:02Z,2020-02-15T06:59:52Z +8211,302,1,14120,4.99,2005-08-21T01:25:00Z,2020-02-15T06:59:52Z +8212,302,2,14247,3.99,2005-08-21T05:35:17Z,2020-02-15T06:59:52Z +8213,302,2,15578,2.99,2005-08-23T05:37:13Z,2020-02-15T06:59:52Z +8214,302,1,15622,5.99,2005-08-23T07:22:02Z,2020-02-15T06:59:52Z +8215,302,2,15734,0.99,2005-08-23T11:40:08Z,2020-02-15T06:59:52Z +8216,302,2,15987,6.99,2005-08-23T20:22:17Z,2020-02-15T06:59:52Z +8217,303,1,265,0.99,2005-05-26T16:07:38Z,2020-02-15T06:59:52Z +8218,303,1,871,2.99,2005-05-30T05:01:30Z,2020-02-15T06:59:52Z +8219,303,2,1050,4.99,2005-05-31T07:01:27Z,2020-02-15T06:59:52Z +8220,303,2,1970,4.99,2005-06-17T09:23:16Z,2020-02-15T06:59:52Z +8221,303,1,2223,8.99,2005-06-18T03:27:03Z,2020-02-15T06:59:52Z +8222,303,1,3077,3.99,2005-06-20T15:05:18Z,2020-02-15T06:59:52Z +8223,303,1,3107,2.99,2005-06-20T17:26:05Z,2020-02-15T06:59:52Z +8224,303,1,5140,4.99,2005-07-09T08:04:59Z,2020-02-15T06:59:52Z +8225,303,1,6205,4.99,2005-07-11T12:31:24Z,2020-02-15T06:59:52Z +8226,303,2,6219,4.99,2005-07-11T13:18:37Z,2020-02-15T06:59:52Z +8227,303,1,6464,4.99,2005-07-12T01:16:40Z,2020-02-15T06:59:52Z +8228,303,1,7023,4.99,2005-07-27T02:32:44Z,2020-02-15T06:59:52Z +8229,303,2,7502,2.99,2005-07-27T20:19:08Z,2020-02-15T06:59:52Z +8230,303,1,8409,0.99,2005-07-29T06:41:22Z,2020-02-15T06:59:52Z +8231,303,2,8734,6.99,2005-07-29T18:28:15Z,2020-02-15T06:59:52Z +8232,303,2,8764,0.99,2005-07-29T19:39:04Z,2020-02-15T06:59:52Z +8233,303,2,10209,2.99,2005-08-01T00:56:47Z,2020-02-15T06:59:52Z +8234,303,1,11253,4.99,2005-08-02T13:42:44Z,2020-02-15T06:59:52Z +8235,303,2,11673,2.99,2005-08-17T05:54:15Z,2020-02-15T06:59:52Z +8236,303,2,11993,2.99,2005-08-17T18:27:49Z,2020-02-15T06:59:52Z +8237,303,2,12117,0.99,2005-08-17T23:11:12Z,2020-02-15T06:59:52Z +8238,303,1,12365,0.99,2005-08-18T07:55:09Z,2020-02-15T06:59:52Z +8239,303,2,12473,2.99,2005-08-18T11:59:44Z,2020-02-15T06:59:52Z +8240,303,1,14750,5.99,2005-08-21T23:09:32Z,2020-02-15T06:59:52Z +8241,303,2,14795,4.99,2005-08-22T00:40:22Z,2020-02-15T06:59:52Z +8242,303,1,15511,3.99,2005-08-23T02:55:42Z,2020-02-15T06:59:52Z +8243,304,1,135,10.99,2005-05-25T21:58:58Z,2020-02-15T06:59:52Z +8244,304,1,415,0.99,2005-05-27T14:51:45Z,2020-02-15T06:59:52Z +8245,304,2,937,2.99,2005-05-30T14:47:31Z,2020-02-15T06:59:52Z +8246,304,1,1414,6.99,2005-06-15T17:26:32Z,2020-02-15T06:59:52Z +8247,304,2,1525,4.99,2005-06-16T00:26:07Z,2020-02-15T06:59:52Z +8248,304,1,2039,3.99,2005-06-17T14:03:43Z,2020-02-15T06:59:52Z +8249,304,2,2902,4.99,2005-06-20T02:45:35Z,2020-02-15T06:59:52Z +8250,304,1,4466,6.99,2005-07-08T00:12:53Z,2020-02-15T06:59:52Z +8251,304,2,4812,8.99,2005-07-08T17:07:11Z,2020-02-15T06:59:52Z +8252,304,1,5411,2.99,2005-07-09T20:23:38Z,2020-02-15T06:59:52Z +8253,304,1,5712,4.99,2005-07-10T10:40:32Z,2020-02-15T06:59:52Z +8254,304,2,5749,3.99,2005-07-10T12:20:36Z,2020-02-15T06:59:52Z +8255,304,2,5795,0.99,2005-07-10T14:36:29Z,2020-02-15T06:59:52Z +8256,304,2,6107,0.99,2005-07-11T07:07:09Z,2020-02-15T06:59:52Z +8257,304,1,6737,4.99,2005-07-12T14:16:52Z,2020-02-15T06:59:52Z +8258,304,2,7551,4.99,2005-07-27T21:59:15Z,2020-02-15T06:59:52Z +8259,304,2,8055,4.99,2005-07-28T17:02:32Z,2020-02-15T06:59:52Z +8260,304,1,9930,0.99,2005-07-31T15:18:03Z,2020-02-15T06:59:52Z +8261,304,1,9992,6.99,2005-07-31T17:29:48Z,2020-02-15T06:59:52Z +8262,304,1,10631,0.99,2005-08-01T15:35:14Z,2020-02-15T06:59:52Z +8263,304,2,11983,4.99,2005-08-17T18:13:55Z,2020-02-15T06:59:52Z +8264,304,1,12540,5.99,2005-08-18T14:17:30Z,2020-02-15T06:59:52Z +8265,304,2,13911,3.99,2005-08-20T16:31:33Z,2020-02-15T06:59:52Z +8266,304,1,14023,0.99,2005-08-20T21:10:32Z,2020-02-15T06:59:52Z +8267,304,1,14899,4.99,2005-08-22T04:26:38Z,2020-02-15T06:59:52Z +8268,304,1,14945,4.99,2005-08-22T06:05:38Z,2020-02-15T06:59:52Z +8269,305,2,69,2.99,2005-05-25T10:10:14Z,2020-02-15T06:59:52Z +8270,305,1,1574,4.99,2005-06-16T03:39:56Z,2020-02-15T06:59:52Z +8271,305,2,1884,0.99,2005-06-17T03:19:20Z,2020-02-15T06:59:52Z +8272,305,1,2166,11.99,2005-06-17T23:51:21Z,2020-02-15T06:59:52Z +8273,305,1,3387,0.99,2005-06-21T14:21:49Z,2020-02-15T06:59:52Z +8274,305,2,4260,4.99,2005-07-07T14:22:45Z,2020-02-15T06:59:52Z +8275,305,1,4638,2.99,2005-07-08T08:57:20Z,2020-02-15T06:59:52Z +8276,305,2,5041,0.99,2005-07-09T03:18:51Z,2020-02-15T06:59:52Z +8277,305,1,5052,2.99,2005-07-09T03:59:43Z,2020-02-15T06:59:52Z +8278,305,2,5582,4.99,2005-07-10T04:08:25Z,2020-02-15T06:59:52Z +8279,305,1,5745,8.99,2005-07-10T12:10:11Z,2020-02-15T06:59:52Z +8280,305,1,6134,7.99,2005-07-11T08:28:19Z,2020-02-15T06:59:52Z +8281,305,2,6619,0.99,2005-07-12T08:50:48Z,2020-02-15T06:59:52Z +8282,305,2,8865,4.99,2005-07-29T23:54:54Z,2020-02-15T06:59:52Z +8283,305,2,9119,4.99,2005-07-30T09:25:56Z,2020-02-15T06:59:52Z +8284,305,2,10426,4.99,2005-08-01T08:26:08Z,2020-02-15T06:59:52Z +8285,305,2,10929,4.99,2005-08-02T02:35:44Z,2020-02-15T06:59:52Z +8286,305,1,10981,2.99,2005-08-02T04:17:53Z,2020-02-15T06:59:52Z +8287,305,2,11035,5.99,2005-08-02T05:55:39Z,2020-02-15T06:59:52Z +8288,305,2,11809,3.99,2005-08-17T11:51:39Z,2020-02-15T06:59:52Z +8289,305,2,12592,3.99,2005-08-18T16:17:50Z,2020-02-15T06:59:52Z +8290,305,2,12846,0.99,2005-08-19T02:03:26Z,2020-02-15T06:59:52Z +8291,305,1,13782,4.99,2005-08-20T12:09:26Z,2020-02-15T06:59:52Z +8292,305,2,15417,2.99,2005-08-22T23:54:04Z,2020-02-15T06:59:52Z +8293,305,1,15612,6.99,2005-08-23T06:59:07Z,2020-02-15T06:59:52Z +8294,306,2,375,3.99,2005-05-27T08:49:21Z,2020-02-15T06:59:52Z +8295,306,2,672,6.99,2005-05-28T22:05:29Z,2020-02-15T06:59:52Z +8296,306,2,1172,0.99,2005-06-14T23:54:34Z,2020-02-15T06:59:52Z +8297,306,2,2836,6.99,2005-06-19T21:58:21Z,2020-02-15T06:59:52Z +8298,306,1,3814,6.99,2005-07-06T15:23:56Z,2020-02-15T06:59:52Z +8299,306,2,4484,5.99,2005-07-08T01:05:57Z,2020-02-15T06:59:52Z +8300,306,2,4596,1.99,2005-07-08T06:41:25Z,2020-02-15T06:59:52Z +8301,306,2,5581,2.99,2005-07-10T04:06:06Z,2020-02-15T06:59:52Z +8302,306,2,6868,2.99,2005-07-12T20:10:17Z,2020-02-15T06:59:52Z +8303,306,1,6953,4.99,2005-07-26T23:52:47Z,2020-02-15T06:59:52Z +8304,306,1,7225,6.99,2005-07-27T09:47:12Z,2020-02-15T06:59:52Z +8305,306,1,7232,4.99,2005-07-27T10:04:19Z,2020-02-15T06:59:52Z +8306,306,2,7701,2.99,2005-07-28T03:54:28Z,2020-02-15T06:59:52Z +8307,306,2,8620,0.99,2005-07-29T13:51:20Z,2020-02-15T06:59:52Z +8308,306,1,8702,0.99,2005-07-29T17:04:37Z,2020-02-15T06:59:52Z +8309,306,2,9242,4.99,2005-07-30T14:03:58Z,2020-02-15T06:59:52Z +8310,306,2,9395,4.99,2005-07-30T20:07:06Z,2020-02-15T06:59:52Z +8311,306,1,9774,0.99,2005-07-31T09:57:51Z,2020-02-15T06:59:52Z +8312,306,1,10202,6.99,2005-08-01T00:43:18Z,2020-02-15T06:59:52Z +8313,306,2,10893,5.99,2005-08-02T01:12:13Z,2020-02-15T06:59:52Z +8314,306,2,11142,4.99,2005-08-02T09:30:11Z,2020-02-15T06:59:52Z +8315,306,1,11440,0.99,2005-08-02T20:24:02Z,2020-02-15T06:59:52Z +8316,306,2,11674,6.99,2005-08-17T05:56:27Z,2020-02-15T06:59:52Z +8317,306,2,11776,0.99,2005-08-17T10:27:19Z,2020-02-15T06:59:52Z +8318,306,1,12225,7.99,2005-08-18T03:00:11Z,2020-02-15T06:59:52Z +8319,306,1,12989,2.99,2005-08-19T07:19:04Z,2020-02-15T06:59:52Z +8320,306,1,13686,4.99,2005-08-20T08:57:28Z,2020-02-15T06:59:52Z +8321,306,2,13725,5.99,2005-08-20T10:08:27Z,2020-02-15T06:59:52Z +8322,306,1,13873,0.99,2005-08-20T15:11:11Z,2020-02-15T06:59:52Z +8323,306,1,13996,4.99,2005-08-20T19:45:43Z,2020-02-15T06:59:52Z +8324,306,1,15457,2.99,2005-08-23T01:07:37Z,2020-02-15T06:59:52Z +8325,306,2,15868,7.99,2005-08-23T16:19:14Z,2020-02-15T06:59:52Z +8326,307,2,413,4.99,2005-05-27T14:45:37Z,2020-02-15T06:59:52Z +8327,307,1,535,4.99,2005-05-28T06:16:32Z,2020-02-15T06:59:52Z +8328,307,1,614,1.99,2005-05-28T15:33:28Z,2020-02-15T06:59:52Z +8329,307,1,970,6.99,2005-05-30T19:50:28Z,2020-02-15T06:59:52Z +8330,307,2,2152,2.99,2005-06-17T22:53:27Z,2020-02-15T06:59:52Z +8331,307,1,2167,0.99,2005-06-17T23:51:28Z,2020-02-15T06:59:52Z +8332,307,1,2787,4.99,2005-06-19T18:47:00Z,2020-02-15T06:59:52Z +8333,307,1,2881,2.99,2005-06-20T01:26:18Z,2020-02-15T06:59:52Z +8334,307,2,3057,5.99,2005-06-20T13:22:48Z,2020-02-15T06:59:52Z +8335,307,1,3209,4.99,2005-06-21T00:51:06Z,2020-02-15T06:59:52Z +8336,307,1,3962,6.99,2005-07-06T22:13:45Z,2020-02-15T06:59:52Z +8337,307,1,3985,4.99,2005-07-06T23:24:03Z,2020-02-15T06:59:52Z +8338,307,1,4522,2.99,2005-07-08T03:03:12Z,2020-02-15T06:59:52Z +8339,307,1,4868,4.99,2005-07-08T19:13:50Z,2020-02-15T06:59:52Z +8340,307,1,5871,3.99,2005-07-10T18:46:08Z,2020-02-15T06:59:52Z +8341,307,2,6125,6.99,2005-07-11T08:03:35Z,2020-02-15T06:59:52Z +8342,307,1,6256,0.99,2005-07-11T15:19:22Z,2020-02-15T06:59:52Z +8343,307,1,6991,10.99,2005-07-27T01:03:06Z,2020-02-15T06:59:52Z +8344,307,1,7536,2.99,2005-07-27T21:34:09Z,2020-02-15T06:59:52Z +8345,307,1,7760,3.99,2005-07-28T06:29:45Z,2020-02-15T06:59:52Z +8346,307,1,7929,0.99,2005-07-28T12:16:40Z,2020-02-15T06:59:52Z +8347,307,1,8647,6.99,2005-07-29T14:52:59Z,2020-02-15T06:59:52Z +8348,307,1,10135,4.99,2005-07-31T21:57:32Z,2020-02-15T06:59:52Z +8349,307,1,10374,0.99,2005-08-01T06:25:27Z,2020-02-15T06:59:52Z +8350,307,1,10745,2.99,2005-08-01T19:57:06Z,2020-02-15T06:59:52Z +8351,307,1,11491,7.99,2005-08-02T22:44:50Z,2020-02-15T06:59:52Z +8352,307,2,12391,4.99,2005-08-18T08:52:53Z,2020-02-15T06:59:52Z +8353,307,2,13365,6.99,2005-08-19T21:12:37Z,2020-02-15T06:59:52Z +8354,307,1,14231,0.99,2005-08-21T05:04:34Z,2020-02-15T06:59:52Z +8355,307,2,15515,4.99,2005-08-23T03:03:53Z,2020-02-15T06:59:52Z +8356,308,2,589,3.99,2005-05-28T12:27:50Z,2020-02-15T06:59:52Z +8357,308,1,2037,0.99,2005-06-17T13:54:20Z,2020-02-15T06:59:52Z +8358,308,1,2094,0.99,2005-06-17T18:18:56Z,2020-02-15T06:59:52Z +8359,308,2,2168,4.99,2005-06-17T23:53:24Z,2020-02-15T06:59:52Z +8360,308,1,2346,7.99,2005-06-18T12:08:16Z,2020-02-15T06:59:52Z +8361,308,2,2448,4.99,2005-06-18T19:13:45Z,2020-02-15T06:59:52Z +8362,308,1,4002,3.99,2005-07-07T00:08:18Z,2020-02-15T06:59:52Z +8363,308,1,4285,8.99,2005-07-07T15:34:35Z,2020-02-15T06:59:52Z +8364,308,1,5946,2.99,2005-07-10T22:57:29Z,2020-02-15T06:59:52Z +8365,308,2,8869,0.99,2005-07-30T00:06:32Z,2020-02-15T06:59:52Z +8366,308,1,9479,2.99,2005-07-30T23:22:09Z,2020-02-15T06:59:52Z +8367,308,1,9746,7.99,2005-07-31T09:16:48Z,2020-02-15T06:59:52Z +8368,308,1,10571,2.99,2005-08-01T13:25:30Z,2020-02-15T06:59:52Z +8369,308,2,10797,0.99,2005-08-01T22:02:51Z,2020-02-15T06:59:52Z +8370,308,1,10819,4.99,2005-08-01T22:52:57Z,2020-02-15T06:59:52Z +8371,308,1,11765,2.99,2005-08-17T09:55:28Z,2020-02-15T06:59:52Z +8372,308,1,11972,4.99,2005-08-17T17:55:46Z,2020-02-15T06:59:52Z +8373,308,2,12567,3.99,2005-08-18T15:14:36Z,2020-02-15T06:59:52Z +8374,308,1,12590,6.99,2005-08-18T16:11:35Z,2020-02-15T06:59:52Z +8375,308,2,12838,6.99,2005-08-19T01:51:50Z,2020-02-15T06:59:52Z +8376,308,1,13843,2.99,2005-08-20T14:30:01Z,2020-02-15T06:59:52Z +8377,308,2,14946,2.99,2005-08-22T06:07:10Z,2020-02-15T06:59:52Z +8378,308,1,15243,4.99,2005-08-22T17:48:28Z,2020-02-15T06:59:52Z +8379,308,2,15493,4.99,2005-08-23T02:20:53Z,2020-02-15T06:59:52Z +8380,308,2,15820,2.99,2005-08-23T15:03:13Z,2020-02-15T06:59:52Z +8381,309,2,218,6.99,2005-05-26T09:27:09Z,2020-02-15T06:59:52Z +8382,309,2,723,0.99,2005-05-29T05:34:44Z,2020-02-15T06:59:52Z +8383,309,1,1837,4.99,2005-06-16T23:16:15Z,2020-02-15T06:59:52Z +8384,309,2,2560,9.99,2005-06-19T03:12:42Z,2020-02-15T06:59:52Z +8385,309,2,2644,3.99,2005-06-19T09:42:30Z,2020-02-15T06:59:52Z +8386,309,2,2688,6.99,2005-06-19T12:50:56Z,2020-02-15T06:59:52Z +8387,309,2,3837,4.99,2005-07-06T16:27:43Z,2020-02-15T06:59:52Z +8388,309,2,3896,7.99,2005-07-06T19:09:15Z,2020-02-15T06:59:52Z +8389,309,2,4172,4.99,2005-07-07T09:49:09Z,2020-02-15T06:59:52Z +8390,309,1,4540,4.99,2005-07-08T04:03:28Z,2020-02-15T06:59:52Z +8391,309,2,5305,8.99,2005-07-09T15:55:36Z,2020-02-15T06:59:52Z +8392,309,1,5980,4.99,2005-07-11T00:18:21Z,2020-02-15T06:59:52Z +8393,309,2,6480,4.99,2005-07-12T01:49:29Z,2020-02-15T06:59:52Z +8394,309,2,7214,5.99,2005-07-27T09:23:33Z,2020-02-15T06:59:52Z +8395,309,2,7722,4.99,2005-07-28T04:44:58Z,2020-02-15T06:59:52Z +8396,309,1,7846,5.99,2005-07-28T09:21:18Z,2020-02-15T06:59:52Z +8397,309,1,8341,4.99,2005-07-29T04:42:01Z,2020-02-15T06:59:52Z +8398,309,1,8501,2.99,2005-07-29T09:12:51Z,2020-02-15T06:59:52Z +8399,309,1,8681,2.99,2005-07-29T16:12:01Z,2020-02-15T06:59:52Z +8400,309,1,8917,2.99,2005-07-30T01:47:02Z,2020-02-15T06:59:52Z +8401,309,2,9945,2.99,2005-07-31T15:47:51Z,2020-02-15T06:59:52Z +8402,309,1,9949,0.99,2005-07-31T15:50:10Z,2020-02-15T06:59:52Z +8403,309,1,10458,2.99,2005-08-01T09:19:48Z,2020-02-15T06:59:52Z +8404,309,1,10728,0.99,2005-08-01T19:15:09Z,2020-02-15T06:59:52Z +8405,309,1,10818,2.99,2005-08-01T22:52:45Z,2020-02-15T06:59:52Z +8406,309,2,11964,6.99,2005-08-17T17:37:03Z,2020-02-15T06:59:52Z +8407,309,2,13021,5.99,2005-08-19T08:08:04Z,2020-02-15T06:59:52Z +8408,309,2,13502,0.99,2005-08-20T01:58:15Z,2020-02-15T06:59:52Z +8409,309,2,13909,4.99,2005-08-20T16:26:36Z,2020-02-15T06:59:52Z +8410,309,2,14846,5.99,2005-08-22T02:13:48Z,2020-02-15T06:59:52Z +8411,309,2,15422,4.99,2005-08-22T23:58:09Z,2020-02-15T06:59:52Z +8412,310,2,104,0.99,2005-05-25T17:46:33Z,2020-02-15T06:59:52Z +8413,310,2,1162,4.99,2005-06-14T23:09:38Z,2020-02-15T06:59:52Z +8414,310,2,1333,2.99,2005-06-15T11:37:08Z,2020-02-15T06:59:52Z +8415,310,2,1918,3.99,2005-06-17T05:40:14Z,2020-02-15T06:59:52Z +8416,310,2,2088,6.99,2005-06-17T17:35:30Z,2020-02-15T06:59:52Z +8417,310,1,2480,5.99,2005-06-18T21:04:09Z,2020-02-15T06:59:52Z +8418,310,1,2618,2.99,2005-06-19T08:03:01Z,2020-02-15T06:59:52Z +8419,310,2,3830,10.99,2005-07-06T16:01:16Z,2020-02-15T06:59:52Z +8420,310,1,4072,0.99,2005-07-07T04:48:02Z,2020-02-15T06:59:52Z +8421,310,1,5621,5.99,2005-07-10T05:34:10Z,2020-02-15T06:59:52Z +8422,310,2,5836,0.99,2005-07-10T16:49:02Z,2020-02-15T06:59:52Z +8423,310,1,7648,5.99,2005-07-28T01:35:33Z,2020-02-15T06:59:52Z +8424,310,2,8637,5.99,2005-07-29T14:30:11Z,2020-02-15T06:59:52Z +8425,310,1,8981,7.99,2005-07-30T04:25:30Z,2020-02-15T06:59:52Z +8426,310,1,9536,2.99,2005-07-31T01:19:02Z,2020-02-15T06:59:52Z +8427,310,2,11137,2.99,2005-08-02T09:25:31Z,2020-02-15T06:59:52Z +8428,310,2,12500,4.99,2005-08-18T13:05:51Z,2020-02-15T06:59:52Z +8429,310,2,12710,7.99,2005-08-18T21:02:50Z,2020-02-15T06:59:52Z +8430,310,1,12929,4.99,2005-08-19T05:05:23Z,2020-02-15T06:59:52Z +8431,310,1,14972,5.99,2005-08-22T06:53:21Z,2020-02-15T06:59:52Z +8432,311,2,274,5.99,2005-05-26T16:48:51Z,2020-02-15T06:59:52Z +8433,311,2,544,6.99,2005-05-28T07:03:00Z,2020-02-15T06:59:52Z +8434,311,1,952,2.99,2005-05-30T16:28:07Z,2020-02-15T06:59:52Z +8435,311,2,990,3.99,2005-05-30T23:25:14Z,2020-02-15T06:59:52Z +8436,311,2,1128,6.99,2005-05-31T17:49:26Z,2020-02-15T06:59:52Z +8437,311,1,1622,4.99,2005-06-16T07:33:18Z,2020-02-15T06:59:52Z +8438,311,2,1955,0.99,2005-06-17T08:40:22Z,2020-02-15T06:59:52Z +8439,311,2,2967,6.99,2005-06-20T07:40:35Z,2020-02-15T06:59:52Z +8440,311,2,4836,3.99,2005-07-08T18:09:08Z,2020-02-15T06:59:52Z +8441,311,2,5224,5.99,2005-07-09T12:07:27Z,2020-02-15T06:59:52Z +8442,311,2,6419,4.99,2005-07-11T23:36:38Z,2020-02-15T06:59:52Z +8443,311,2,8167,6.99,2005-07-28T21:25:45Z,2020-02-15T06:59:52Z +8444,311,1,8473,2.99,2005-07-29T08:36:53Z,2020-02-15T06:59:52Z +8445,311,1,9503,6.99,2005-07-31T00:02:38Z,2020-02-15T06:59:52Z +8446,311,2,9882,8.99,2005-07-31T13:53:33Z,2020-02-15T06:59:52Z +8447,311,1,10134,4.99,2005-07-31T21:56:10Z,2020-02-15T06:59:52Z +8448,311,2,10448,4.99,2005-08-01T09:09:31Z,2020-02-15T06:59:52Z +8449,311,1,12997,2.99,2005-08-19T07:31:46Z,2020-02-15T06:59:52Z +8450,311,2,13310,0.99,2005-08-19T19:05:16Z,2020-02-15T06:59:52Z +8451,311,2,13423,1.99,2005-08-19T23:07:42Z,2020-02-15T06:59:52Z +8452,311,2,14517,4.99,2005-08-21T14:57:03Z,2020-02-15T06:59:52Z +8453,311,2,15826,9.99,2005-08-23T15:15:02Z,2020-02-15T06:59:52Z +8454,311,1,16020,8.99,2005-08-23T21:34:33Z,2020-02-15T06:59:52Z +8455,312,2,229,4.99,2005-05-26T11:19:20Z,2020-02-15T06:59:52Z +8456,312,1,530,0.99,2005-05-28T05:13:01Z,2020-02-15T06:59:52Z +8457,312,2,1049,4.99,2005-05-31T06:57:04Z,2020-02-15T06:59:52Z +8458,312,2,1079,6.99,2005-05-31T10:48:17Z,2020-02-15T06:59:52Z +8459,312,2,1419,0.99,2005-06-15T17:54:50Z,2020-02-15T06:59:52Z +8460,312,2,3457,3.99,2005-06-21T21:42:33Z,2020-02-15T06:59:52Z +8461,312,1,3766,2.99,2005-07-06T13:04:35Z,2020-02-15T06:59:52Z +8462,312,1,3792,1.99,2005-07-06T14:26:38Z,2020-02-15T06:59:52Z +8463,312,1,4647,3.99,2005-07-08T09:27:36Z,2020-02-15T06:59:52Z +8464,312,1,5031,5.99,2005-07-09T02:36:37Z,2020-02-15T06:59:52Z +8465,312,2,6751,2.99,2005-07-12T14:50:34Z,2020-02-15T06:59:52Z +8466,312,1,6866,2.99,2005-07-12T20:03:44Z,2020-02-15T06:59:52Z +8467,312,1,8137,4.99,2005-07-28T20:07:18Z,2020-02-15T06:59:52Z +8468,312,1,8412,6.99,2005-07-29T06:44:50Z,2020-02-15T06:59:52Z +8469,312,1,8721,4.99,2005-07-29T17:56:21Z,2020-02-15T06:59:52Z +8470,312,1,9016,6.99,2005-07-30T05:26:13Z,2020-02-15T06:59:52Z +8471,312,1,9154,3.99,2005-07-30T10:59:54Z,2020-02-15T06:59:52Z +8472,312,2,10858,2.99,2005-08-02T00:08:39Z,2020-02-15T06:59:52Z +8473,312,2,11248,0.99,2005-08-02T13:35:34Z,2020-02-15T06:59:52Z +8474,312,2,11879,5.99,2005-08-17T14:25:09Z,2020-02-15T06:59:52Z +8475,312,1,12186,2.99,2005-08-18T01:43:36Z,2020-02-15T06:59:52Z +8476,312,1,12945,0.99,2005-08-19T05:51:46Z,2020-02-15T06:59:52Z +8477,312,2,14362,2.99,2005-08-21T09:19:49Z,2020-02-15T06:59:52Z +8478,312,1,14504,3.99,2005-08-21T14:23:01Z,2020-02-15T06:59:52Z +8479,312,1,15100,4.99,2005-08-22T11:55:03Z,2020-02-15T06:59:52Z +8480,312,1,15882,6.99,2005-08-23T16:44:31Z,2020-02-15T06:59:52Z +8481,313,2,669,4.99,2005-05-28T22:03:25Z,2020-02-15T06:59:52Z +8482,313,2,712,2.99,2005-05-29T04:02:24Z,2020-02-15T06:59:52Z +8483,313,2,781,0.99,2005-05-29T14:23:58Z,2020-02-15T06:59:52Z +8484,313,2,843,0.99,2005-05-30T00:44:24Z,2020-02-15T06:59:52Z +8485,313,2,1312,2.99,2005-06-15T10:16:27Z,2020-02-15T06:59:52Z +8486,313,1,2617,7.99,2005-06-19T07:48:31Z,2020-02-15T06:59:52Z +8487,313,2,2711,4.99,2005-06-19T14:12:22Z,2020-02-15T06:59:52Z +8488,313,2,4552,2.99,2005-07-08T04:36:35Z,2020-02-15T06:59:52Z +8489,313,1,5255,5.99,2005-07-09T13:51:08Z,2020-02-15T06:59:52Z +8490,313,1,6384,2.99,2005-07-11T22:07:26Z,2020-02-15T06:59:52Z +8491,313,2,7294,0.99,2005-07-27T12:38:14Z,2020-02-15T06:59:52Z +8492,313,2,8381,4.99,2005-07-29T05:31:44Z,2020-02-15T06:59:52Z +8493,313,1,8970,3.99,2005-07-30T04:02:05Z,2020-02-15T06:59:52Z +8494,313,2,9836,2.99,2005-07-31T12:12:00Z,2020-02-15T06:59:52Z +8495,313,2,10237,5.99,2005-08-01T02:07:32Z,2020-02-15T06:59:52Z +8496,313,2,10933,7.99,2005-08-02T02:50:49Z,2020-02-15T06:59:52Z +8497,313,2,11854,2.99,2005-08-17T13:42:52Z,2020-02-15T06:59:52Z +8498,313,2,12011,2.99,2005-08-17T19:19:44Z,2020-02-15T06:59:52Z +8499,313,2,14250,2.99,2005-08-21T05:39:35Z,2020-02-15T06:59:52Z +8500,313,1,14325,4.99,2005-08-21T08:15:38Z,2020-02-15T06:59:52Z +8501,313,2,15081,2.99,2005-08-22T11:14:31Z,2020-02-15T06:59:52Z +8502,313,1,15340,0.99,2005-08-22T20:55:56Z,2020-02-15T06:59:52Z +8503,313,2,15569,6.99,2005-08-23T05:24:29Z,2020-02-15T06:59:52Z +8504,314,1,80,5.99,2005-05-25T12:12:07Z,2020-02-15T06:59:52Z +8505,314,1,440,4.99,2005-05-27T18:00:35Z,2020-02-15T06:59:52Z +8506,314,1,1598,3.99,2005-06-16T06:02:39Z,2020-02-15T06:59:52Z +8507,314,1,1624,2.99,2005-06-16T07:48:57Z,2020-02-15T06:59:52Z +8508,314,1,3517,0.99,2005-07-06T00:52:35Z,2020-02-15T06:59:52Z +8509,314,1,3656,2.99,2005-07-06T07:55:22Z,2020-02-15T06:59:52Z +8510,314,1,3808,0.99,2005-07-06T15:15:35Z,2020-02-15T06:59:52Z +8511,314,2,4386,0.99,2005-07-07T20:55:19Z,2020-02-15T06:59:52Z +8512,314,2,5241,4.99,2005-07-09T13:19:14Z,2020-02-15T06:59:52Z +8513,314,2,5856,0.99,2005-07-10T17:57:32Z,2020-02-15T06:59:52Z +8514,314,1,6192,5.99,2005-07-11T11:44:41Z,2020-02-15T06:59:52Z +8515,314,1,6666,2.99,2005-07-12T11:32:15Z,2020-02-15T06:59:52Z +8516,314,1,6763,3.99,2005-07-12T15:26:34Z,2020-02-15T06:59:52Z +8517,314,2,7004,4.99,2005-07-27T01:36:05Z,2020-02-15T06:59:52Z +8518,314,1,7276,2.99,2005-07-27T11:41:57Z,2020-02-15T06:59:52Z +8519,314,2,8022,6.99,2005-07-28T15:48:56Z,2020-02-15T06:59:52Z +8520,314,1,8073,3.99,2005-07-28T17:29:02Z,2020-02-15T06:59:52Z +8521,314,2,8105,0.99,2005-07-28T18:59:46Z,2020-02-15T06:59:52Z +8522,314,2,8328,6.99,2005-07-29T04:06:24Z,2020-02-15T06:59:52Z +8523,314,2,8644,4.99,2005-07-29T14:45:45Z,2020-02-15T06:59:52Z +8524,314,2,9191,3.99,2005-07-30T12:25:51Z,2020-02-15T06:59:52Z +8525,314,2,9318,6.99,2005-07-30T17:14:30Z,2020-02-15T06:59:52Z +8526,314,2,11908,3.99,2005-08-17T15:43:09Z,2020-02-15T06:59:52Z +8527,314,1,12434,0.99,2005-08-18T10:38:08Z,2020-02-15T06:59:52Z +8528,314,2,13120,3.99,2005-08-19T11:47:38Z,2020-02-15T06:59:52Z +8529,314,1,13265,2.99,2005-08-19T17:29:00Z,2020-02-15T06:59:52Z +8530,314,2,13553,3.99,2005-08-20T04:07:21Z,2020-02-15T06:59:52Z +8531,314,2,14145,4.99,2005-08-21T02:11:38Z,2020-02-15T06:59:52Z +8532,314,1,14409,4.99,2005-08-21T10:53:35Z,2020-02-15T06:59:52Z +8533,314,2,14682,4.99,2005-08-21T20:25:57Z,2020-02-15T06:59:52Z +8534,314,2,14815,4.99,2005-08-22T01:12:44Z,2020-02-15T06:59:52Z +8535,314,2,14873,5.99,2005-08-22T03:31:06Z,2020-02-15T06:59:52Z +8536,314,2,16021,3.99,2005-08-23T21:37:59Z,2020-02-15T06:59:52Z +8537,315,1,537,8.99,2005-05-28T06:20:55Z,2020-02-15T06:59:52Z +8538,315,1,551,4.99,2005-05-28T07:44:18Z,2020-02-15T06:59:52Z +8539,315,1,1701,2.99,2005-06-16T13:18:48Z,2020-02-15T06:59:52Z +8540,315,1,4021,2.99,2005-07-07T01:46:44Z,2020-02-15T06:59:52Z +8541,315,1,4992,4.99,2005-07-09T00:49:37Z,2020-02-15T06:59:52Z +8542,315,2,5126,6.99,2005-07-09T07:25:35Z,2020-02-15T06:59:52Z +8543,315,1,6661,4.99,2005-07-12T11:20:39Z,2020-02-15T06:59:52Z +8544,315,1,6894,4.99,2005-07-12T21:20:50Z,2020-02-15T06:59:52Z +8545,315,1,8416,5.99,2005-07-29T06:52:54Z,2020-02-15T06:59:52Z +8546,315,2,8677,6.99,2005-07-29T16:01:13Z,2020-02-15T06:59:52Z +8547,315,2,9735,9.99,2005-07-31T08:57:49Z,2020-02-15T06:59:52Z +8548,315,2,11254,0.99,2005-08-02T13:43:49Z,2020-02-15T06:59:52Z +8549,315,2,12155,2.99,2005-08-18T00:24:30Z,2020-02-15T06:59:52Z +8550,315,1,14106,2.99,2005-08-21T00:46:01Z,2020-02-15T06:59:52Z +8551,315,2,14162,2.99,2005-08-21T02:55:34Z,2020-02-15T06:59:52Z +8552,315,1,15504,6.99,2005-08-23T02:45:21Z,2020-02-15T06:59:52Z +8553,315,2,14426,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8554,316,1,16,4.99,2005-05-25T00:43:11Z,2020-02-15T06:59:52Z +8555,316,1,644,8.99,2005-05-28T18:59:12Z,2020-02-15T06:59:52Z +8556,316,1,1065,1.99,2005-05-31T08:54:56Z,2020-02-15T06:59:52Z +8557,316,1,1317,4.99,2005-06-15T10:30:19Z,2020-02-15T06:59:52Z +8558,316,2,1350,4.99,2005-06-15T12:50:25Z,2020-02-15T06:59:52Z +8559,316,1,2032,4.99,2005-06-17T13:24:07Z,2020-02-15T06:59:52Z +8560,316,2,2338,4.99,2005-06-18T11:24:54Z,2020-02-15T06:59:52Z +8561,316,2,2491,1.99,2005-06-18T22:01:31Z,2020-02-15T06:59:52Z +8562,316,1,2820,4.99,2005-06-19T20:20:33Z,2020-02-15T06:59:52Z +8563,316,2,3373,8.99,2005-06-21T13:35:32Z,2020-02-15T06:59:52Z +8564,316,1,4379,2.99,2005-07-07T20:32:30Z,2020-02-15T06:59:52Z +8565,316,2,5102,3.99,2005-07-09T06:25:48Z,2020-02-15T06:59:52Z +8566,316,2,5544,7.99,2005-07-10T02:48:07Z,2020-02-15T06:59:52Z +8567,316,1,5618,5.99,2005-07-10T05:28:58Z,2020-02-15T06:59:52Z +8568,316,2,6988,4.99,2005-07-27T01:00:08Z,2020-02-15T06:59:52Z +8569,316,2,7339,2.99,2005-07-27T14:17:48Z,2020-02-15T06:59:52Z +8570,316,2,7586,2.99,2005-07-27T23:19:29Z,2020-02-15T06:59:52Z +8571,316,1,7592,4.99,2005-07-27T23:26:04Z,2020-02-15T06:59:52Z +8572,316,1,7945,1.99,2005-07-28T12:53:58Z,2020-02-15T06:59:52Z +8573,316,1,8564,4.99,2005-07-29T11:33:00Z,2020-02-15T06:59:52Z +8574,316,1,9508,4.99,2005-07-31T00:22:39Z,2020-02-15T06:59:52Z +8575,316,2,9903,6.99,2005-07-31T14:31:44Z,2020-02-15T06:59:52Z +8576,316,1,10438,7.99,2005-08-01T08:53:04Z,2020-02-15T06:59:52Z +8577,316,1,12028,0.99,2005-08-17T20:03:47Z,2020-02-15T06:59:52Z +8578,316,2,12191,0.99,2005-08-18T01:57:11Z,2020-02-15T06:59:52Z +8579,316,2,12823,2.99,2005-08-19T01:15:47Z,2020-02-15T06:59:52Z +8580,316,2,13277,5.99,2005-08-19T17:57:35Z,2020-02-15T06:59:52Z +8581,316,1,14226,2.99,2005-08-21T04:55:37Z,2020-02-15T06:59:52Z +8582,316,2,15840,2.99,2005-08-23T15:34:49Z,2020-02-15T06:59:52Z +8583,317,1,107,6.99,2005-05-25T18:28:09Z,2020-02-15T06:59:52Z +8584,317,2,2287,6.99,2005-06-18T07:04:36Z,2020-02-15T06:59:52Z +8585,317,2,3029,2.99,2005-06-20T11:51:30Z,2020-02-15T06:59:52Z +8586,317,1,3251,0.99,2005-06-21T03:20:37Z,2020-02-15T06:59:52Z +8587,317,1,4138,0.99,2005-07-07T08:17:13Z,2020-02-15T06:59:52Z +8588,317,1,4177,8.99,2005-07-07T10:12:36Z,2020-02-15T06:59:52Z +8589,317,2,4700,0.99,2005-07-08T11:37:21Z,2020-02-15T06:59:52Z +8590,317,1,5548,0.99,2005-07-10T02:56:45Z,2020-02-15T06:59:52Z +8591,317,2,5942,7.99,2005-07-10T22:47:17Z,2020-02-15T06:59:52Z +8592,317,1,7309,2.99,2005-07-27T13:00:29Z,2020-02-15T06:59:52Z +8593,317,2,8062,2.99,2005-07-28T17:15:06Z,2020-02-15T06:59:52Z +8594,317,1,8327,2.99,2005-07-29T04:00:52Z,2020-02-15T06:59:52Z +8595,317,1,8458,4.99,2005-07-29T08:05:09Z,2020-02-15T06:59:52Z +8596,317,1,9110,2.99,2005-07-30T09:05:42Z,2020-02-15T06:59:52Z +8597,317,2,9513,4.99,2005-07-31T00:28:30Z,2020-02-15T06:59:52Z +8598,317,1,9770,8.99,2005-07-31T09:52:40Z,2020-02-15T06:59:52Z +8599,317,1,10364,2.99,2005-08-01T06:06:49Z,2020-02-15T06:59:52Z +8600,317,2,12111,2.99,2005-08-17T22:59:55Z,2020-02-15T06:59:52Z +8601,317,2,12138,7.99,2005-08-17T23:55:54Z,2020-02-15T06:59:52Z +8602,317,2,12301,2.99,2005-08-18T05:36:20Z,2020-02-15T06:59:52Z +8603,317,1,13388,4.99,2005-08-19T21:46:49Z,2020-02-15T06:59:52Z +8604,317,1,14032,5.99,2005-08-20T21:26:55Z,2020-02-15T06:59:52Z +8605,317,2,14385,0.99,2005-08-21T10:02:55Z,2020-02-15T06:59:52Z +8606,317,2,14669,2.99,2005-08-21T19:54:06Z,2020-02-15T06:59:52Z +8607,317,1,14791,4.99,2005-08-22T00:35:55Z,2020-02-15T06:59:52Z +8608,317,1,15204,2.99,2005-08-22T16:30:43Z,2020-02-15T06:59:52Z +8609,317,1,15280,4.99,2005-08-22T19:09:52Z,2020-02-15T06:59:52Z +8610,317,1,12574,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8611,318,1,224,9.99,2005-05-26T10:18:27Z,2020-02-15T06:59:52Z +8612,318,1,2634,2.99,2005-06-19T08:55:17Z,2020-02-15T06:59:52Z +8613,318,1,2643,2.99,2005-06-19T09:39:27Z,2020-02-15T06:59:52Z +8614,318,2,3337,0.99,2005-06-21T10:24:35Z,2020-02-15T06:59:52Z +8615,318,2,3376,7.99,2005-06-21T13:43:02Z,2020-02-15T06:59:52Z +8616,318,1,3732,4.99,2005-07-06T11:33:37Z,2020-02-15T06:59:52Z +8617,318,2,3974,2.99,2005-07-06T22:59:16Z,2020-02-15T06:59:52Z +8618,318,1,4356,8.99,2005-07-07T19:21:22Z,2020-02-15T06:59:52Z +8619,318,1,7649,0.99,2005-07-28T01:37:26Z,2020-02-15T06:59:52Z +8620,318,2,7853,0.99,2005-07-28T09:36:38Z,2020-02-15T06:59:52Z +8621,318,2,10023,5.99,2005-07-31T18:25:51Z,2020-02-15T06:59:52Z +8622,318,1,14276,2.99,2005-08-21T06:34:05Z,2020-02-15T06:59:52Z +8623,319,1,15,9.99,2005-05-25T00:39:22Z,2020-02-15T06:59:52Z +8624,319,1,149,3.99,2005-05-26T00:28:05Z,2020-02-15T06:59:52Z +8625,319,1,439,2.99,2005-05-27T17:54:48Z,2020-02-15T06:59:52Z +8626,319,1,1632,2.99,2005-06-16T08:03:42Z,2020-02-15T06:59:52Z +8627,319,1,1892,4.99,2005-06-17T04:17:33Z,2020-02-15T06:59:52Z +8628,319,2,2021,3.99,2005-06-17T12:41:18Z,2020-02-15T06:59:52Z +8629,319,2,2703,4.99,2005-06-19T13:36:06Z,2020-02-15T06:59:52Z +8630,319,2,2884,0.99,2005-06-20T01:31:16Z,2020-02-15T06:59:52Z +8631,319,2,3256,3.99,2005-06-21T03:45:42Z,2020-02-15T06:59:52Z +8632,319,2,4119,3.99,2005-07-07T07:06:03Z,2020-02-15T06:59:52Z +8633,319,2,4295,2.99,2005-07-07T16:08:51Z,2020-02-15T06:59:52Z +8634,319,1,4630,4.99,2005-07-08T08:33:38Z,2020-02-15T06:59:52Z +8635,319,1,5791,8.99,2005-07-10T14:16:22Z,2020-02-15T06:59:52Z +8636,319,1,5882,2.99,2005-07-10T19:20:34Z,2020-02-15T06:59:52Z +8637,319,2,6132,2.99,2005-07-11T08:24:44Z,2020-02-15T06:59:52Z +8638,319,1,6195,4.99,2005-07-11T12:00:32Z,2020-02-15T06:59:52Z +8639,319,1,6255,4.99,2005-07-11T15:11:33Z,2020-02-15T06:59:52Z +8640,319,1,6485,6.99,2005-07-12T02:07:59Z,2020-02-15T06:59:52Z +8641,319,2,7953,2.99,2005-07-28T13:24:32Z,2020-02-15T06:59:52Z +8642,319,2,9017,4.99,2005-07-30T05:26:20Z,2020-02-15T06:59:52Z +8643,319,2,9044,0.99,2005-07-30T06:35:21Z,2020-02-15T06:59:52Z +8644,319,1,11575,0.99,2005-08-17T01:50:26Z,2020-02-15T06:59:52Z +8645,319,2,11598,0.99,2005-08-17T03:03:07Z,2020-02-15T06:59:52Z +8646,319,1,11955,6.99,2005-08-17T17:21:35Z,2020-02-15T06:59:52Z +8647,319,2,11994,2.99,2005-08-17T18:29:35Z,2020-02-15T06:59:52Z +8648,319,1,12018,4.99,2005-08-17T19:44:46Z,2020-02-15T06:59:52Z +8649,319,2,12424,8.99,2005-08-18T10:16:57Z,2020-02-15T06:59:52Z +8650,319,1,13548,3.99,2005-08-20T03:53:20Z,2020-02-15T06:59:52Z +8651,319,2,14828,4.99,2005-08-22T01:34:05Z,2020-02-15T06:59:52Z +8652,319,2,15396,5.99,2005-08-22T23:07:57Z,2020-02-15T06:59:52Z +8653,320,2,1258,4.99,2005-06-15T06:21:30Z,2020-02-15T06:59:52Z +8654,320,2,1484,3.99,2005-06-15T21:22:35Z,2020-02-15T06:59:52Z +8655,320,2,1567,1.99,2005-06-16T03:13:30Z,2020-02-15T06:59:52Z +8656,320,1,2216,4.99,2005-06-18T03:08:17Z,2020-02-15T06:59:52Z +8657,320,2,2883,7.99,2005-06-20T01:29:10Z,2020-02-15T06:59:52Z +8658,320,2,3519,0.99,2005-07-06T00:57:29Z,2020-02-15T06:59:52Z +8659,320,2,3756,4.99,2005-07-06T12:40:38Z,2020-02-15T06:59:52Z +8660,320,2,4173,2.99,2005-07-07T09:57:26Z,2020-02-15T06:59:52Z +8661,320,2,7057,4.99,2005-07-27T03:50:03Z,2020-02-15T06:59:52Z +8662,320,2,7064,3.99,2005-07-27T03:53:29Z,2020-02-15T06:59:52Z +8663,320,2,7930,4.99,2005-07-28T12:21:08Z,2020-02-15T06:59:52Z +8664,320,2,8144,4.99,2005-07-28T20:30:55Z,2020-02-15T06:59:52Z +8665,320,2,8235,4.99,2005-07-29T00:22:56Z,2020-02-15T06:59:52Z +8666,320,1,8238,0.99,2005-07-29T00:30:06Z,2020-02-15T06:59:52Z +8667,320,2,8794,4.99,2005-07-29T20:59:38Z,2020-02-15T06:59:52Z +8668,320,1,9509,0.99,2005-07-31T00:22:42Z,2020-02-15T06:59:52Z +8669,320,1,11208,0.99,2005-08-02T12:02:37Z,2020-02-15T06:59:52Z +8670,320,2,11560,2.99,2005-08-17T01:20:30Z,2020-02-15T06:59:52Z +8671,320,2,14171,0.99,2005-08-21T03:00:42Z,2020-02-15T06:59:52Z +8672,320,1,15302,2.99,2005-08-22T19:44:53Z,2020-02-15T06:59:52Z +8673,321,2,200,4.99,2005-05-26T07:12:21Z,2020-02-15T06:59:52Z +8674,321,1,620,5.99,2005-05-28T15:54:45Z,2020-02-15T06:59:52Z +8675,321,2,818,4.99,2005-05-29T20:47:53Z,2020-02-15T06:59:52Z +8676,321,2,1750,5.99,2005-06-16T16:57:36Z,2020-02-15T06:59:52Z +8677,321,1,3410,0.99,2005-06-21T16:20:47Z,2020-02-15T06:59:52Z +8678,321,2,3901,5.99,2005-07-06T19:24:55Z,2020-02-15T06:59:52Z +8679,321,1,3920,4.99,2005-07-06T20:26:40Z,2020-02-15T06:59:52Z +8680,321,2,4281,4.99,2005-07-07T15:17:50Z,2020-02-15T06:59:52Z +8681,321,1,4318,5.99,2005-07-07T17:47:50Z,2020-02-15T06:59:52Z +8682,321,2,5202,2.99,2005-07-09T10:53:48Z,2020-02-15T06:59:52Z +8683,321,2,5867,8.99,2005-07-10T18:39:01Z,2020-02-15T06:59:52Z +8684,321,2,6190,2.99,2005-07-11T11:36:18Z,2020-02-15T06:59:52Z +8685,321,1,6859,5.99,2005-07-12T19:53:57Z,2020-02-15T06:59:52Z +8686,321,2,8685,6.99,2005-07-29T16:17:05Z,2020-02-15T06:59:52Z +8687,321,1,9981,0.99,2005-07-31T17:08:31Z,2020-02-15T06:59:52Z +8688,321,1,11722,2.99,2005-08-17T07:53:03Z,2020-02-15T06:59:52Z +8689,321,1,12033,6.99,2005-08-17T20:14:34Z,2020-02-15T06:59:52Z +8690,321,2,12034,7.99,2005-08-17T20:15:31Z,2020-02-15T06:59:52Z +8691,321,1,12398,4.99,2005-08-18T09:13:24Z,2020-02-15T06:59:52Z +8692,321,2,13623,6.99,2005-08-20T06:49:46Z,2020-02-15T06:59:52Z +8693,321,1,15673,6.99,2005-08-23T09:12:50Z,2020-02-15T06:59:52Z +8694,321,2,15888,5.99,2005-08-23T16:56:14Z,2020-02-15T06:59:52Z +8695,322,2,166,0.99,2005-05-26T02:49:11Z,2020-02-15T06:59:52Z +8696,322,1,269,4.99,2005-05-26T16:19:46Z,2020-02-15T06:59:52Z +8697,322,1,1386,2.99,2005-06-15T15:38:58Z,2020-02-15T06:59:52Z +8698,322,1,1588,8.99,2005-06-16T04:53:21Z,2020-02-15T06:59:52Z +8699,322,2,2481,4.99,2005-06-18T21:08:30Z,2020-02-15T06:59:52Z +8700,322,1,2554,0.99,2005-06-19T03:05:38Z,2020-02-15T06:59:52Z +8701,322,1,2983,7.99,2005-06-20T08:41:42Z,2020-02-15T06:59:52Z +8702,322,2,3054,5.99,2005-06-20T13:16:41Z,2020-02-15T06:59:52Z +8703,322,2,3413,8.99,2005-06-21T16:57:07Z,2020-02-15T06:59:52Z +8704,322,1,3478,0.99,2005-07-05T23:05:44Z,2020-02-15T06:59:52Z +8705,322,2,3627,1.99,2005-07-06T06:19:25Z,2020-02-15T06:59:52Z +8706,322,1,3646,4.99,2005-07-06T07:28:59Z,2020-02-15T06:59:52Z +8707,322,2,6033,2.99,2005-07-11T02:59:34Z,2020-02-15T06:59:52Z +8708,322,1,6511,3.99,2005-07-12T03:39:29Z,2020-02-15T06:59:52Z +8709,322,2,6673,0.99,2005-07-12T11:50:56Z,2020-02-15T06:59:52Z +8710,322,2,6709,4.99,2005-07-12T13:20:41Z,2020-02-15T06:59:52Z +8711,322,1,7091,4.99,2005-07-27T04:44:10Z,2020-02-15T06:59:52Z +8712,322,2,8142,4.99,2005-07-28T20:21:54Z,2020-02-15T06:59:52Z +8713,322,1,9104,7.99,2005-07-30T08:49:55Z,2020-02-15T06:59:52Z +8714,322,1,9115,4.99,2005-07-30T09:13:55Z,2020-02-15T06:59:52Z +8715,322,1,9252,1.99,2005-07-30T14:19:59Z,2020-02-15T06:59:52Z +8716,322,2,11120,4.99,2005-08-02T08:47:04Z,2020-02-15T06:59:52Z +8717,322,2,11456,0.99,2005-08-02T21:14:04Z,2020-02-15T06:59:52Z +8718,322,2,13180,4.99,2005-08-19T14:00:38Z,2020-02-15T06:59:52Z +8719,322,1,13650,9.99,2005-08-20T07:49:06Z,2020-02-15T06:59:52Z +8720,322,2,14042,4.99,2005-08-20T21:45:51Z,2020-02-15T06:59:52Z +8721,322,1,15450,0.99,2005-08-23T00:56:01Z,2020-02-15T06:59:52Z +8722,322,2,15703,8.99,2005-08-23T10:23:48Z,2020-02-15T06:59:52Z +8723,323,1,58,4.99,2005-05-25T08:53:14Z,2020-02-15T06:59:52Z +8724,323,2,729,2.99,2005-05-29T06:35:13Z,2020-02-15T06:59:52Z +8725,323,1,878,5.99,2005-05-30T05:49:13Z,2020-02-15T06:59:52Z +8726,323,2,1167,0.99,2005-06-14T23:25:58Z,2020-02-15T06:59:52Z +8727,323,2,1786,2.99,2005-06-16T19:30:54Z,2020-02-15T06:59:52Z +8728,323,1,2933,4.99,2005-06-20T04:52:23Z,2020-02-15T06:59:52Z +8729,323,2,3704,6.99,2005-07-06T10:16:45Z,2020-02-15T06:59:52Z +8730,323,2,4572,1.99,2005-07-08T05:36:59Z,2020-02-15T06:59:52Z +8731,323,2,5669,4.99,2005-07-10T08:12:53Z,2020-02-15T06:59:52Z +8732,323,2,5906,1.99,2005-07-10T20:41:41Z,2020-02-15T06:59:52Z +8733,323,1,6840,3.99,2005-07-12T19:03:22Z,2020-02-15T06:59:52Z +8734,323,2,7146,7.99,2005-07-27T07:02:30Z,2020-02-15T06:59:52Z +8735,323,2,7275,2.99,2005-07-27T11:39:08Z,2020-02-15T06:59:52Z +8736,323,2,7695,5.99,2005-07-28T03:41:13Z,2020-02-15T06:59:52Z +8737,323,1,7847,1.99,2005-07-28T09:23:14Z,2020-02-15T06:59:52Z +8738,323,2,7937,4.99,2005-07-28T12:38:22Z,2020-02-15T06:59:52Z +8739,323,2,8474,0.99,2005-07-29T08:36:56Z,2020-02-15T06:59:52Z +8740,323,1,8790,0.99,2005-07-29T20:51:41Z,2020-02-15T06:59:52Z +8741,323,1,9363,2.99,2005-07-30T18:44:23Z,2020-02-15T06:59:52Z +8742,323,2,10002,4.99,2005-07-31T17:48:16Z,2020-02-15T06:59:52Z +8743,323,1,10028,4.99,2005-07-31T18:35:54Z,2020-02-15T06:59:52Z +8744,323,1,10298,0.99,2005-08-01T04:06:03Z,2020-02-15T06:59:52Z +8745,323,1,10994,3.99,2005-08-02T04:46:53Z,2020-02-15T06:59:52Z +8746,323,2,11548,0.99,2005-08-17T00:59:47Z,2020-02-15T06:59:52Z +8747,323,1,12120,4.99,2005-08-17T23:16:46Z,2020-02-15T06:59:52Z +8748,323,1,12169,2.99,2005-08-18T01:05:54Z,2020-02-15T06:59:52Z +8749,323,1,13140,5.99,2005-08-19T12:35:56Z,2020-02-15T06:59:52Z +8750,323,1,14224,2.99,2005-08-21T04:53:08Z,2020-02-15T06:59:52Z +8751,323,1,14957,3.99,2005-08-22T06:29:34Z,2020-02-15T06:59:52Z +8752,323,1,15387,4.99,2005-08-22T22:49:13Z,2020-02-15T06:59:52Z +8753,323,1,15728,0.99,2005-08-23T11:30:32Z,2020-02-15T06:59:52Z +8754,324,2,563,3.99,2005-05-28T09:10:49Z,2020-02-15T06:59:52Z +8755,324,1,1740,0.99,2005-06-16T16:29:00Z,2020-02-15T06:59:52Z +8756,324,2,2590,2.99,2005-06-19T05:31:40Z,2020-02-15T06:59:52Z +8757,324,1,3947,4.99,2005-07-06T21:42:21Z,2020-02-15T06:59:52Z +8758,324,1,4197,0.99,2005-07-07T11:07:52Z,2020-02-15T06:59:52Z +8759,324,2,4368,4.99,2005-07-07T19:55:19Z,2020-02-15T06:59:52Z +8760,324,2,5702,2.99,2005-07-10T10:00:01Z,2020-02-15T06:59:52Z +8761,324,1,5778,0.99,2005-07-10T13:41:37Z,2020-02-15T06:59:52Z +8762,324,1,6034,2.99,2005-07-11T03:00:50Z,2020-02-15T06:59:52Z +8763,324,2,6299,4.99,2005-07-11T17:45:08Z,2020-02-15T06:59:52Z +8764,324,2,7240,3.99,2005-07-27T10:21:15Z,2020-02-15T06:59:52Z +8765,324,1,7263,7.99,2005-07-27T11:17:22Z,2020-02-15T06:59:52Z +8766,324,2,7960,6.99,2005-07-28T13:47:08Z,2020-02-15T06:59:52Z +8767,324,1,8698,3.99,2005-07-29T16:52:17Z,2020-02-15T06:59:52Z +8768,324,1,9651,4.99,2005-07-31T05:48:49Z,2020-02-15T06:59:52Z +8769,324,2,10212,2.99,2005-08-01T01:01:35Z,2020-02-15T06:59:52Z +8770,324,1,11617,2.99,2005-08-17T04:00:40Z,2020-02-15T06:59:52Z +8771,324,1,11771,6.99,2005-08-17T10:17:09Z,2020-02-15T06:59:52Z +8772,324,2,12543,2.99,2005-08-18T14:23:55Z,2020-02-15T06:59:52Z +8773,324,2,13356,0.99,2005-08-19T21:02:21Z,2020-02-15T06:59:52Z +8774,324,1,13386,2.99,2005-08-19T21:43:58Z,2020-02-15T06:59:52Z +8775,324,1,14262,8.99,2005-08-21T06:08:13Z,2020-02-15T06:59:52Z +8776,324,2,14479,7.99,2005-08-21T13:35:54Z,2020-02-15T06:59:52Z +8777,324,1,15263,4.99,2005-08-22T18:27:33Z,2020-02-15T06:59:52Z +8778,324,2,13965,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8779,325,1,131,5.99,2005-05-25T21:42:46Z,2020-02-15T06:59:52Z +8780,325,2,2502,4.99,2005-06-18T23:12:13Z,2020-02-15T06:59:52Z +8781,325,2,2507,4.99,2005-06-18T23:39:22Z,2020-02-15T06:59:52Z +8782,325,2,2808,2.99,2005-06-19T19:34:45Z,2020-02-15T06:59:52Z +8783,325,1,5470,5.99,2005-07-09T23:10:49Z,2020-02-15T06:59:52Z +8784,325,2,5740,2.99,2005-07-10T11:51:58Z,2020-02-15T06:59:52Z +8785,325,1,5775,4.99,2005-07-10T13:34:26Z,2020-02-15T06:59:52Z +8786,325,2,6135,4.99,2005-07-11T08:32:23Z,2020-02-15T06:59:52Z +8787,325,2,6622,0.99,2005-07-12T09:04:11Z,2020-02-15T06:59:52Z +8788,325,2,7223,9.99,2005-07-27T09:42:27Z,2020-02-15T06:59:52Z +8789,325,2,7687,2.99,2005-07-28T03:20:26Z,2020-02-15T06:59:52Z +8790,325,2,8539,0.99,2005-07-29T10:48:24Z,2020-02-15T06:59:52Z +8791,325,2,10030,2.99,2005-07-31T18:39:36Z,2020-02-15T06:59:52Z +8792,325,1,10070,4.99,2005-07-31T19:46:29Z,2020-02-15T06:59:52Z +8793,325,2,10326,4.99,2005-08-01T04:55:34Z,2020-02-15T06:59:52Z +8794,325,1,10412,0.99,2005-08-01T07:57:16Z,2020-02-15T06:59:52Z +8795,325,2,12097,4.99,2005-08-17T22:35:24Z,2020-02-15T06:59:52Z +8796,325,1,12779,3.99,2005-08-18T23:44:00Z,2020-02-15T06:59:52Z +8797,325,2,13054,4.99,2005-08-19T09:34:02Z,2020-02-15T06:59:52Z +8798,325,2,14452,3.99,2005-08-21T12:23:20Z,2020-02-15T06:59:52Z +8799,325,1,14672,5.99,2005-08-21T19:59:33Z,2020-02-15T06:59:52Z +8800,325,2,15009,0.99,2005-08-22T08:27:27Z,2020-02-15T06:59:52Z +8801,326,1,875,6.99,2005-05-30T05:38:24Z,2020-02-15T06:59:52Z +8802,326,2,981,4.99,2005-05-30T21:52:42Z,2020-02-15T06:59:52Z +8803,326,2,1149,3.99,2005-05-31T21:03:17Z,2020-02-15T06:59:52Z +8804,326,1,1311,4.99,2005-06-15T10:11:59Z,2020-02-15T06:59:52Z +8805,326,2,2086,0.99,2005-06-17T17:32:07Z,2020-02-15T06:59:52Z +8806,326,2,2317,4.99,2005-06-18T09:12:18Z,2020-02-15T06:59:52Z +8807,326,1,3441,4.99,2005-06-21T20:00:12Z,2020-02-15T06:59:52Z +8808,326,2,3886,0.99,2005-07-06T18:44:24Z,2020-02-15T06:59:52Z +8809,326,1,4160,7.99,2005-07-07T09:13:17Z,2020-02-15T06:59:52Z +8810,326,1,5147,5.99,2005-07-09T08:17:41Z,2020-02-15T06:59:52Z +8811,326,1,7117,2.99,2005-07-27T05:48:36Z,2020-02-15T06:59:52Z +8812,326,2,7725,2.99,2005-07-28T04:47:14Z,2020-02-15T06:59:52Z +8813,326,2,7931,4.99,2005-07-28T12:23:41Z,2020-02-15T06:59:52Z +8814,326,1,8467,5.99,2005-07-29T08:25:35Z,2020-02-15T06:59:52Z +8815,326,1,8604,4.99,2005-07-29T13:07:13Z,2020-02-15T06:59:52Z +8816,326,2,8739,2.99,2005-07-29T18:34:33Z,2020-02-15T06:59:52Z +8817,326,2,9855,0.99,2005-07-31T13:00:33Z,2020-02-15T06:59:52Z +8818,326,1,10108,0.99,2005-07-31T21:02:14Z,2020-02-15T06:59:52Z +8819,326,2,10173,4.99,2005-07-31T23:36:59Z,2020-02-15T06:59:52Z +8820,326,2,10720,0.99,2005-08-01T19:04:33Z,2020-02-15T06:59:52Z +8821,326,2,10976,4.99,2005-08-02T04:11:48Z,2020-02-15T06:59:52Z +8822,326,2,11010,0.99,2005-08-02T05:06:27Z,2020-02-15T06:59:52Z +8823,326,2,11428,2.99,2005-08-02T20:03:10Z,2020-02-15T06:59:52Z +8824,326,2,11485,4.99,2005-08-02T22:33:25Z,2020-02-15T06:59:52Z +8825,326,2,12829,2.99,2005-08-19T01:38:18Z,2020-02-15T06:59:52Z +8826,327,1,653,6.99,2005-05-28T20:12:20Z,2020-02-15T06:59:52Z +8827,327,1,1294,4.99,2005-06-15T09:09:27Z,2020-02-15T06:59:52Z +8828,327,2,1577,3.99,2005-06-16T04:03:28Z,2020-02-15T06:59:52Z +8829,327,2,1929,6.99,2005-06-17T06:49:30Z,2020-02-15T06:59:52Z +8830,327,1,2273,4.99,2005-06-18T06:30:02Z,2020-02-15T06:59:52Z +8831,327,2,2304,5.99,2005-06-18T08:30:15Z,2020-02-15T06:59:52Z +8832,327,2,2637,3.99,2005-06-19T09:20:56Z,2020-02-15T06:59:52Z +8833,327,1,4445,4.99,2005-07-07T23:08:22Z,2020-02-15T06:59:52Z +8834,327,1,4521,0.99,2005-07-08T02:57:56Z,2020-02-15T06:59:52Z +8835,327,1,6618,2.99,2005-07-12T08:41:42Z,2020-02-15T06:59:52Z +8836,327,2,7458,1.99,2005-07-27T18:36:17Z,2020-02-15T06:59:52Z +8837,327,2,7808,1.99,2005-07-28T07:58:56Z,2020-02-15T06:59:52Z +8838,327,1,10371,0.99,2005-08-01T06:20:29Z,2020-02-15T06:59:52Z +8839,327,1,11372,4.99,2005-08-02T18:10:50Z,2020-02-15T06:59:52Z +8840,327,2,11929,6.99,2005-08-17T16:28:51Z,2020-02-15T06:59:52Z +8841,327,1,12016,0.99,2005-08-17T19:33:24Z,2020-02-15T06:59:52Z +8842,327,2,13158,2.99,2005-08-19T13:18:10Z,2020-02-15T06:59:52Z +8843,327,1,13360,4.99,2005-08-19T21:05:11Z,2020-02-15T06:59:52Z +8844,327,1,13448,0.99,2005-08-20T00:12:43Z,2020-02-15T06:59:52Z +8845,327,1,14847,4.99,2005-08-22T02:13:51Z,2020-02-15T06:59:52Z +8846,327,2,15365,3.99,2005-08-22T21:42:17Z,2020-02-15T06:59:52Z +8847,327,1,15386,2.99,2005-08-22T22:41:14Z,2020-02-15T06:59:52Z +8848,327,1,15828,5.99,2005-08-23T15:16:32Z,2020-02-15T06:59:52Z +8849,327,1,15916,9.99,2005-08-23T17:56:01Z,2020-02-15T06:59:52Z +8850,327,2,15969,7.99,2005-08-23T19:51:30Z,2020-02-15T06:59:52Z +8851,327,1,15297,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:52Z +8852,328,2,862,2.99,2005-05-30T03:09:11Z,2020-02-15T06:59:52Z +8853,328,2,1670,2.99,2005-06-16T10:26:33Z,2020-02-15T06:59:52Z +8854,328,2,1980,6.99,2005-06-17T09:48:05Z,2020-02-15T06:59:52Z +8855,328,2,2243,5.99,2005-06-18T04:33:03Z,2020-02-15T06:59:52Z +8856,328,1,3024,4.99,2005-06-20T11:29:17Z,2020-02-15T06:59:52Z +8857,328,1,3239,0.99,2005-06-21T02:48:40Z,2020-02-15T06:59:52Z +8858,328,1,5450,4.99,2005-07-09T22:13:25Z,2020-02-15T06:59:52Z +8859,328,1,8017,1.99,2005-07-28T15:35:41Z,2020-02-15T06:59:52Z +8860,328,1,8577,6.99,2005-07-29T11:56:30Z,2020-02-15T06:59:52Z +8861,328,2,8780,4.99,2005-07-29T20:19:45Z,2020-02-15T06:59:52Z +8862,328,2,9557,2.99,2005-07-31T02:14:01Z,2020-02-15T06:59:52Z +8863,328,1,9835,2.99,2005-07-31T12:07:35Z,2020-02-15T06:59:52Z +8864,328,1,11174,2.99,2005-08-02T10:32:11Z,2020-02-15T06:59:52Z +8865,328,1,12175,4.99,2005-08-18T01:10:17Z,2020-02-15T06:59:52Z +8866,328,2,12825,0.99,2005-08-19T01:23:58Z,2020-02-15T06:59:52Z +8867,328,1,13609,2.99,2005-08-20T06:11:51Z,2020-02-15T06:59:52Z +8868,328,2,13681,7.99,2005-08-20T08:47:37Z,2020-02-15T06:59:52Z +8869,328,1,13907,3.99,2005-08-20T16:17:27Z,2020-02-15T06:59:52Z +8870,328,2,14307,3.99,2005-08-21T07:34:52Z,2020-02-15T06:59:52Z +8871,328,1,14755,3.99,2005-08-21T23:18:08Z,2020-02-15T06:59:52Z +8872,328,2,14939,2.99,2005-08-22T05:53:52Z,2020-02-15T06:59:52Z +8873,328,1,15179,4.99,2005-08-22T15:36:22Z,2020-02-15T06:59:52Z +8874,328,1,15863,0.99,2005-08-23T16:17:09Z,2020-02-15T06:59:52Z +8875,329,1,1183,2.99,2005-06-15T00:49:19Z,2020-02-15T06:59:52Z +8876,329,1,2010,5.99,2005-06-17T11:54:15Z,2020-02-15T06:59:52Z +8877,329,2,2024,0.99,2005-06-17T13:00:51Z,2020-02-15T06:59:52Z +8878,329,1,2151,0.99,2005-06-17T22:52:37Z,2020-02-15T06:59:52Z +8879,329,1,2303,2.99,2005-06-18T08:27:59Z,2020-02-15T06:59:52Z +8880,329,2,2702,2.99,2005-06-19T13:35:56Z,2020-02-15T06:59:52Z +8881,329,1,3052,5.99,2005-06-20T13:09:19Z,2020-02-15T06:59:52Z +8882,329,2,3053,0.99,2005-06-20T13:10:30Z,2020-02-15T06:59:52Z +8883,329,2,3268,4.99,2005-06-21T04:55:49Z,2020-02-15T06:59:52Z +8884,329,2,3976,2.99,2005-07-06T23:00:20Z,2020-02-15T06:59:52Z +8885,329,2,4076,4.99,2005-07-07T04:52:15Z,2020-02-15T06:59:52Z +8886,329,1,4415,4.99,2005-07-07T22:01:43Z,2020-02-15T06:59:52Z +8887,329,1,4465,1.99,2005-07-08T00:07:45Z,2020-02-15T06:59:52Z +8888,329,2,4674,2.99,2005-07-08T10:19:28Z,2020-02-15T06:59:52Z +8889,329,1,7980,4.99,2005-07-28T14:16:49Z,2020-02-15T06:59:52Z +8890,329,2,8172,7.99,2005-07-28T21:34:36Z,2020-02-15T06:59:52Z +8891,329,1,8460,6.99,2005-07-29T08:08:03Z,2020-02-15T06:59:52Z +8892,329,2,8941,0.99,2005-07-30T02:59:21Z,2020-02-15T06:59:52Z +8893,329,2,9024,4.99,2005-07-30T05:44:42Z,2020-02-15T06:59:52Z +8894,329,2,9219,0.99,2005-07-30T13:15:21Z,2020-02-15T06:59:52Z +8895,329,1,9381,0.99,2005-07-30T19:23:04Z,2020-02-15T06:59:52Z +8896,329,1,9827,6.99,2005-07-31T11:56:55Z,2020-02-15T06:59:52Z +8897,329,1,10473,7.99,2005-08-01T09:56:24Z,2020-02-15T06:59:52Z +8898,329,2,10490,0.99,2005-08-01T10:37:11Z,2020-02-15T06:59:52Z +8899,329,1,11130,2.99,2005-08-02T09:08:59Z,2020-02-15T06:59:52Z +8900,329,2,11169,3.99,2005-08-02T10:19:42Z,2020-02-15T06:59:52Z +8901,329,2,11697,0.99,2005-08-17T07:09:19Z,2020-02-15T06:59:52Z +8902,329,1,12659,6.99,2005-08-18T19:05:49Z,2020-02-15T06:59:52Z +8903,329,1,13627,8.99,2005-08-20T06:59:00Z,2020-02-15T06:59:52Z +8904,329,1,14900,4.99,2005-08-22T04:27:48Z,2020-02-15T06:59:52Z +8905,329,2,15011,4.99,2005-08-22T08:31:07Z,2020-02-15T06:59:52Z +8906,329,1,15308,2.99,2005-08-22T19:54:31Z,2020-02-15T06:59:52Z +8907,330,1,704,3.99,2005-05-29T02:44:43Z,2020-02-15T06:59:52Z +8908,330,2,967,7.99,2005-05-30T19:12:06Z,2020-02-15T06:59:52Z +8909,330,1,1219,6.99,2005-06-15T03:25:59Z,2020-02-15T06:59:52Z +8910,330,2,1511,5.99,2005-06-15T22:45:06Z,2020-02-15T06:59:52Z +8911,330,2,2885,0.99,2005-06-20T01:33:42Z,2020-02-15T06:59:52Z +8912,330,1,2936,4.99,2005-06-20T05:09:27Z,2020-02-15T06:59:52Z +8913,330,2,3061,2.99,2005-06-20T13:48:21Z,2020-02-15T06:59:52Z +8914,330,2,3603,4.99,2005-07-06T05:25:03Z,2020-02-15T06:59:53Z +8915,330,2,3659,2.99,2005-07-06T08:03:14Z,2020-02-15T06:59:53Z +8916,330,2,3760,2.99,2005-07-06T12:49:28Z,2020-02-15T06:59:53Z +8917,330,1,4124,1.99,2005-07-07T07:19:54Z,2020-02-15T06:59:53Z +8918,330,2,5149,2.99,2005-07-09T08:28:23Z,2020-02-15T06:59:53Z +8919,330,1,5750,5.99,2005-07-10T12:20:41Z,2020-02-15T06:59:53Z +8920,330,1,6656,0.99,2005-07-12T11:09:47Z,2020-02-15T06:59:53Z +8921,330,2,6678,2.99,2005-07-12T11:58:36Z,2020-02-15T06:59:53Z +8922,330,1,6719,2.99,2005-07-12T13:40:37Z,2020-02-15T06:59:53Z +8923,330,2,7894,2.99,2005-07-28T10:53:58Z,2020-02-15T06:59:53Z +8924,330,1,8680,4.99,2005-07-29T16:08:03Z,2020-02-15T06:59:53Z +8925,330,2,10100,4.99,2005-07-31T20:47:18Z,2020-02-15T06:59:53Z +8926,330,2,11259,3.99,2005-08-02T13:46:30Z,2020-02-15T06:59:53Z +8927,330,1,12062,2.99,2005-08-17T21:24:47Z,2020-02-15T06:59:53Z +8928,330,1,12394,2.99,2005-08-18T09:05:15Z,2020-02-15T06:59:53Z +8929,330,1,12740,4.99,2005-08-18T22:17:04Z,2020-02-15T06:59:53Z +8930,330,1,12867,0.99,2005-08-19T02:40:11Z,2020-02-15T06:59:53Z +8931,330,2,11709,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +8932,331,2,87,0.99,2005-05-25T13:52:43Z,2020-02-15T06:59:53Z +8933,331,1,996,2.99,2005-05-31T00:06:20Z,2020-02-15T06:59:53Z +8934,331,1,1415,2.99,2005-06-15T17:31:57Z,2020-02-15T06:59:53Z +8935,331,2,2528,6.99,2005-06-19T01:14:12Z,2020-02-15T06:59:53Z +8936,331,1,2587,2.99,2005-06-19T05:06:14Z,2020-02-15T06:59:53Z +8937,331,1,3505,4.99,2005-07-06T00:19:32Z,2020-02-15T06:59:53Z +8938,331,1,3613,4.99,2005-07-06T05:45:53Z,2020-02-15T06:59:53Z +8939,331,2,3871,8.99,2005-07-06T17:58:51Z,2020-02-15T06:59:53Z +8940,331,1,4051,4.99,2005-07-07T03:37:28Z,2020-02-15T06:59:53Z +8941,331,2,4063,5.99,2005-07-07T04:23:57Z,2020-02-15T06:59:53Z +8942,331,1,4326,10.99,2005-07-07T18:01:22Z,2020-02-15T06:59:53Z +8943,331,1,5152,2.99,2005-07-09T08:34:44Z,2020-02-15T06:59:53Z +8944,331,1,5885,1.99,2005-07-10T19:33:50Z,2020-02-15T06:59:53Z +8945,331,1,5947,5.99,2005-07-10T23:07:42Z,2020-02-15T06:59:53Z +8946,331,1,8231,0.99,2005-07-29T00:14:37Z,2020-02-15T06:59:53Z +8947,331,2,8995,4.99,2005-07-30T04:53:11Z,2020-02-15T06:59:53Z +8948,331,1,9401,5.99,2005-07-30T20:18:19Z,2020-02-15T06:59:53Z +8949,331,2,10188,6.99,2005-08-01T00:19:41Z,2020-02-15T06:59:53Z +8950,331,1,11052,5.99,2005-08-02T06:26:19Z,2020-02-15T06:59:53Z +8951,331,1,11362,2.99,2005-08-02T17:47:25Z,2020-02-15T06:59:53Z +8952,331,2,12533,4.99,2005-08-18T14:01:40Z,2020-02-15T06:59:53Z +8953,331,1,13795,0.99,2005-08-20T12:32:09Z,2020-02-15T06:59:53Z +8954,331,1,14256,7.99,2005-08-21T05:52:27Z,2020-02-15T06:59:53Z +8955,331,1,14628,1.99,2005-08-21T18:37:24Z,2020-02-15T06:59:53Z +8956,331,1,15339,2.99,2005-08-22T20:52:12Z,2020-02-15T06:59:53Z +8957,331,2,15447,3.99,2005-08-23T00:53:57Z,2020-02-15T06:59:53Z +8958,331,1,15521,2.99,2005-08-23T03:30:51Z,2020-02-15T06:59:53Z +8959,332,2,600,3.99,2005-05-28T14:08:19Z,2020-02-15T06:59:53Z +8960,332,1,1000,6.99,2005-05-31T00:25:56Z,2020-02-15T06:59:53Z +8961,332,1,4100,6.99,2005-07-07T06:20:52Z,2020-02-15T06:59:53Z +8962,332,1,4302,6.99,2005-07-07T16:47:53Z,2020-02-15T06:59:53Z +8963,332,2,5116,2.99,2005-07-09T07:10:12Z,2020-02-15T06:59:53Z +8964,332,1,5277,1.99,2005-07-09T14:40:42Z,2020-02-15T06:59:53Z +8965,332,2,5381,2.99,2005-07-09T19:11:11Z,2020-02-15T06:59:53Z +8966,332,2,5388,0.99,2005-07-09T19:25:25Z,2020-02-15T06:59:53Z +8967,332,1,5440,0.99,2005-07-09T21:45:17Z,2020-02-15T06:59:53Z +8968,332,2,7049,7.99,2005-07-27T03:32:41Z,2020-02-15T06:59:53Z +8969,332,2,7418,2.99,2005-07-27T16:59:09Z,2020-02-15T06:59:53Z +8970,332,2,7577,8.99,2005-07-27T22:56:07Z,2020-02-15T06:59:53Z +8971,332,2,7578,4.99,2005-07-27T22:58:17Z,2020-02-15T06:59:53Z +8972,332,2,7934,8.99,2005-07-28T12:33:10Z,2020-02-15T06:59:53Z +8973,332,2,8173,6.99,2005-07-28T21:35:44Z,2020-02-15T06:59:53Z +8974,332,1,9324,1.99,2005-07-30T17:28:52Z,2020-02-15T06:59:53Z +8975,332,1,9388,5.99,2005-07-30T19:27:22Z,2020-02-15T06:59:53Z +8976,332,1,9921,0.99,2005-07-31T14:59:21Z,2020-02-15T06:59:53Z +8977,332,1,10026,4.99,2005-07-31T18:31:51Z,2020-02-15T06:59:53Z +8978,332,1,10307,0.99,2005-08-01T04:21:54Z,2020-02-15T06:59:53Z +8979,332,2,10439,0.99,2005-08-01T08:54:26Z,2020-02-15T06:59:53Z +8980,332,1,11229,5.99,2005-08-02T12:56:37Z,2020-02-15T06:59:53Z +8981,332,2,11564,2.99,2005-08-17T01:27:49Z,2020-02-15T06:59:53Z +8982,332,2,12318,4.99,2005-08-18T06:21:56Z,2020-02-15T06:59:53Z +8983,332,2,13673,2.99,2005-08-20T08:27:30Z,2020-02-15T06:59:53Z +8984,332,2,14783,4.99,2005-08-22T00:21:57Z,2020-02-15T06:59:53Z +8985,332,2,15194,0.99,2005-08-22T16:07:34Z,2020-02-15T06:59:53Z +8986,332,1,15210,3.99,2005-08-22T16:37:36Z,2020-02-15T06:59:53Z +8987,333,1,4,4.99,2005-05-24T23:04:41Z,2020-02-15T06:59:53Z +8988,333,1,1667,2.99,2005-06-16T10:18:59Z,2020-02-15T06:59:53Z +8989,333,1,2149,6.99,2005-06-17T22:50:00Z,2020-02-15T06:59:53Z +8990,333,1,2929,1.99,2005-06-20T04:47:39Z,2020-02-15T06:59:53Z +8991,333,1,3110,2.99,2005-06-20T17:40:12Z,2020-02-15T06:59:53Z +8992,333,2,5032,0.99,2005-07-09T02:39:47Z,2020-02-15T06:59:53Z +8993,333,1,5645,1.99,2005-07-10T06:58:21Z,2020-02-15T06:59:53Z +8994,333,2,5892,4.99,2005-07-10T20:02:42Z,2020-02-15T06:59:53Z +8995,333,2,6275,0.99,2005-07-11T16:12:11Z,2020-02-15T06:59:53Z +8996,333,2,6931,4.99,2005-07-26T23:02:57Z,2020-02-15T06:59:53Z +8997,333,2,6958,0.99,2005-07-27T00:02:41Z,2020-02-15T06:59:53Z +8998,333,2,7076,6.99,2005-07-27T04:12:14Z,2020-02-15T06:59:53Z +8999,333,2,7246,0.99,2005-07-27T10:30:41Z,2020-02-15T06:59:53Z +9000,333,1,8719,4.99,2005-07-29T17:45:45Z,2020-02-15T06:59:53Z +9001,333,2,9148,4.99,2005-07-30T10:39:10Z,2020-02-15T06:59:53Z +9002,333,2,9338,10.99,2005-07-30T18:03:13Z,2020-02-15T06:59:53Z +9003,333,2,10035,4.99,2005-07-31T18:46:46Z,2020-02-15T06:59:53Z +9004,333,1,10062,2.99,2005-07-31T19:24:55Z,2020-02-15T06:59:53Z +9005,333,2,10844,4.99,2005-08-01T23:46:58Z,2020-02-15T06:59:53Z +9006,333,1,12427,6.99,2005-08-18T10:24:17Z,2020-02-15T06:59:53Z +9007,333,2,12661,0.99,2005-08-18T19:10:10Z,2020-02-15T06:59:53Z +9008,333,1,13579,3.99,2005-08-20T05:22:06Z,2020-02-15T06:59:53Z +9009,333,2,13710,4.99,2005-08-20T09:35:20Z,2020-02-15T06:59:53Z +9010,333,1,14057,4.99,2005-08-20T22:22:59Z,2020-02-15T06:59:53Z +9011,333,1,14740,2.99,2005-08-21T22:35:33Z,2020-02-15T06:59:53Z +9012,333,2,15253,2.99,2005-08-22T18:05:21Z,2020-02-15T06:59:53Z +9013,333,1,15313,4.99,2005-08-22T19:59:42Z,2020-02-15T06:59:53Z +9014,334,1,13,6.99,2005-05-25T00:22:55Z,2020-02-15T06:59:53Z +9015,334,1,431,8.99,2005-05-27T16:31:05Z,2020-02-15T06:59:53Z +9016,334,2,1187,4.99,2005-06-15T00:58:50Z,2020-02-15T06:59:53Z +9017,334,1,1298,4.99,2005-06-15T09:32:53Z,2020-02-15T06:59:53Z +9018,334,2,2476,0.99,2005-06-18T20:57:12Z,2020-02-15T06:59:53Z +9019,334,1,3662,4.99,2005-07-06T08:11:48Z,2020-02-15T06:59:53Z +9020,334,1,4603,6.99,2005-07-08T06:57:07Z,2020-02-15T06:59:53Z +9021,334,2,5014,4.99,2005-07-09T01:51:49Z,2020-02-15T06:59:53Z +9022,334,2,5434,0.99,2005-07-09T21:25:20Z,2020-02-15T06:59:53Z +9023,334,2,5818,5.99,2005-07-10T15:51:12Z,2020-02-15T06:59:53Z +9024,334,1,5845,4.99,2005-07-10T17:23:14Z,2020-02-15T06:59:53Z +9025,334,2,6641,5.99,2005-07-12T10:33:14Z,2020-02-15T06:59:53Z +9026,334,2,6749,4.99,2005-07-12T14:43:05Z,2020-02-15T06:59:53Z +9027,334,1,6987,2.99,2005-07-27T00:59:50Z,2020-02-15T06:59:53Z +9028,334,1,8977,7.99,2005-07-30T04:14:07Z,2020-02-15T06:59:53Z +9029,334,1,9633,2.99,2005-07-31T05:04:08Z,2020-02-15T06:59:53Z +9030,334,1,10207,3.99,2005-08-01T00:53:01Z,2020-02-15T06:59:53Z +9031,334,1,10408,4.99,2005-08-01T07:42:10Z,2020-02-15T06:59:53Z +9032,334,1,10492,2.99,2005-08-01T10:42:28Z,2020-02-15T06:59:53Z +9033,334,1,10879,1.99,2005-08-02T00:33:20Z,2020-02-15T06:59:53Z +9034,334,2,10997,7.99,2005-08-02T04:49:02Z,2020-02-15T06:59:53Z +9035,334,2,12677,4.99,2005-08-18T19:36:05Z,2020-02-15T06:59:53Z +9036,334,2,13325,4.99,2005-08-19T19:52:02Z,2020-02-15T06:59:53Z +9037,334,1,13876,2.99,2005-08-20T15:15:28Z,2020-02-15T06:59:53Z +9038,334,1,14645,0.99,2005-08-21T19:12:47Z,2020-02-15T06:59:53Z +9039,334,1,14984,7.99,2005-08-22T07:35:31Z,2020-02-15T06:59:53Z +9040,334,2,15548,0.99,2005-08-23T04:26:20Z,2020-02-15T06:59:53Z +9041,334,2,15656,4.99,2005-08-23T08:38:58Z,2020-02-15T06:59:53Z +9042,334,1,15669,3.99,2005-08-23T09:06:17Z,2020-02-15T06:59:53Z +9043,334,1,14219,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9044,335,1,3329,4.99,2005-06-21T09:20:31Z,2020-02-15T06:59:53Z +9045,335,1,3607,0.99,2005-07-06T05:30:09Z,2020-02-15T06:59:53Z +9046,335,2,4016,0.99,2005-07-07T01:05:50Z,2020-02-15T06:59:53Z +9047,335,2,4032,2.99,2005-07-07T02:34:13Z,2020-02-15T06:59:53Z +9048,335,1,4279,4.99,2005-07-07T15:01:53Z,2020-02-15T06:59:53Z +9049,335,1,4387,8.99,2005-07-07T20:56:47Z,2020-02-15T06:59:53Z +9050,335,1,5024,4.99,2005-07-09T02:25:12Z,2020-02-15T06:59:53Z +9051,335,1,5252,0.99,2005-07-09T13:40:44Z,2020-02-15T06:59:53Z +9052,335,2,5728,2.99,2005-07-10T11:26:14Z,2020-02-15T06:59:53Z +9053,335,1,6624,7.99,2005-07-12T09:05:50Z,2020-02-15T06:59:53Z +9054,335,1,6906,0.99,2005-07-12T22:03:02Z,2020-02-15T06:59:53Z +9055,335,2,8634,3.99,2005-07-29T14:19:57Z,2020-02-15T06:59:53Z +9056,335,1,8855,2.99,2005-07-29T23:40:10Z,2020-02-15T06:59:53Z +9057,335,1,9125,5.99,2005-07-30T09:43:39Z,2020-02-15T06:59:53Z +9058,335,2,9361,4.99,2005-07-30T18:43:49Z,2020-02-15T06:59:53Z +9059,335,1,9428,0.99,2005-07-30T21:18:37Z,2020-02-15T06:59:53Z +9060,335,2,10606,4.99,2005-08-01T14:39:15Z,2020-02-15T06:59:53Z +9061,335,2,13267,0.99,2005-08-19T17:31:36Z,2020-02-15T06:59:53Z +9062,335,1,13622,1.99,2005-08-20T06:45:32Z,2020-02-15T06:59:53Z +9063,335,1,14014,2.99,2005-08-20T20:47:09Z,2020-02-15T06:59:53Z +9064,335,2,15005,4.99,2005-08-22T08:15:44Z,2020-02-15T06:59:53Z +9065,335,2,15101,0.99,2005-08-22T11:56:02Z,2020-02-15T06:59:53Z +9066,335,2,11541,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9067,336,1,1478,2.99,2005-06-15T21:12:13Z,2020-02-15T06:59:53Z +9068,336,2,2212,2.99,2005-06-18T02:36:10Z,2020-02-15T06:59:53Z +9069,336,2,2475,2.99,2005-06-18T20:52:46Z,2020-02-15T06:59:53Z +9070,336,1,2575,2.99,2005-06-19T04:32:52Z,2020-02-15T06:59:53Z +9071,336,2,2719,4.99,2005-06-19T14:50:19Z,2020-02-15T06:59:53Z +9072,336,1,2954,2.99,2005-06-20T06:45:00Z,2020-02-15T06:59:53Z +9073,336,2,3204,4.99,2005-06-21T00:37:50Z,2020-02-15T06:59:53Z +9074,336,2,3349,0.99,2005-06-21T11:17:35Z,2020-02-15T06:59:53Z +9075,336,2,4323,5.99,2005-07-07T17:55:53Z,2020-02-15T06:59:53Z +9076,336,1,4595,2.99,2005-07-08T06:40:25Z,2020-02-15T06:59:53Z +9077,336,2,5649,2.99,2005-07-10T07:15:07Z,2020-02-15T06:59:53Z +9078,336,2,5667,0.99,2005-07-10T08:11:03Z,2020-02-15T06:59:53Z +9079,336,2,6263,4.99,2005-07-11T15:33:50Z,2020-02-15T06:59:53Z +9080,336,2,6382,6.99,2005-07-11T21:58:53Z,2020-02-15T06:59:53Z +9081,336,2,8275,4.99,2005-07-29T01:35:47Z,2020-02-15T06:59:53Z +9082,336,1,8407,6.99,2005-07-29T06:37:02Z,2020-02-15T06:59:53Z +9083,336,2,8607,4.99,2005-07-29T13:18:00Z,2020-02-15T06:59:53Z +9084,336,2,8951,8.99,2005-07-30T03:18:24Z,2020-02-15T06:59:53Z +9085,336,2,9306,0.99,2005-07-30T16:47:17Z,2020-02-15T06:59:53Z +9086,336,1,10055,0.99,2005-07-31T19:15:58Z,2020-02-15T06:59:53Z +9087,336,2,11743,2.99,2005-08-17T08:49:05Z,2020-02-15T06:59:53Z +9088,336,1,12323,8.99,2005-08-18T06:36:22Z,2020-02-15T06:59:53Z +9089,336,2,12794,0.99,2005-08-19T00:20:37Z,2020-02-15T06:59:53Z +9090,336,2,12926,3.99,2005-08-19T05:00:16Z,2020-02-15T06:59:53Z +9091,336,2,13066,0.99,2005-08-19T09:50:39Z,2020-02-15T06:59:53Z +9092,336,2,13689,4.99,2005-08-20T09:04:30Z,2020-02-15T06:59:53Z +9093,336,1,14295,2.99,2005-08-21T07:09:27Z,2020-02-15T06:59:53Z +9094,336,1,15073,10.99,2005-08-22T11:01:15Z,2020-02-15T06:59:53Z +9095,336,2,15848,2.99,2005-08-23T15:41:12Z,2020-02-15T06:59:53Z +9096,336,1,13022,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9097,337,1,374,6.99,2005-05-27T08:26:30Z,2020-02-15T06:59:53Z +9098,337,1,572,4.99,2005-05-28T10:30:13Z,2020-02-15T06:59:53Z +9099,337,1,839,8.99,2005-05-30T00:28:12Z,2020-02-15T06:59:53Z +9100,337,2,1969,4.99,2005-06-17T09:22:22Z,2020-02-15T06:59:53Z +9101,337,1,2014,5.99,2005-06-17T12:03:28Z,2020-02-15T06:59:53Z +9102,337,1,3626,5.99,2005-07-06T06:15:35Z,2020-02-15T06:59:53Z +9103,337,1,4091,6.99,2005-07-07T05:53:38Z,2020-02-15T06:59:53Z +9104,337,2,4093,4.99,2005-07-07T05:54:50Z,2020-02-15T06:59:53Z +9105,337,2,4855,4.99,2005-07-08T18:45:50Z,2020-02-15T06:59:53Z +9106,337,1,5050,2.99,2005-07-09T03:54:38Z,2020-02-15T06:59:53Z +9107,337,1,6212,0.99,2005-07-11T12:40:48Z,2020-02-15T06:59:53Z +9108,337,2,6305,7.99,2005-07-11T18:02:25Z,2020-02-15T06:59:53Z +9109,337,1,6620,2.99,2005-07-12T08:51:03Z,2020-02-15T06:59:53Z +9110,337,1,7410,4.99,2005-07-27T16:41:59Z,2020-02-15T06:59:53Z +9111,337,1,8516,4.99,2005-07-29T10:00:03Z,2020-02-15T06:59:53Z +9112,337,2,8919,8.99,2005-07-30T01:57:03Z,2020-02-15T06:59:53Z +9113,337,2,9051,5.99,2005-07-30T07:05:54Z,2020-02-15T06:59:53Z +9114,337,1,10664,0.99,2005-08-01T16:51:15Z,2020-02-15T06:59:53Z +9115,337,2,10765,0.99,2005-08-01T20:34:51Z,2020-02-15T06:59:53Z +9116,337,2,11252,2.99,2005-08-02T13:42:13Z,2020-02-15T06:59:53Z +9117,337,1,11734,3.99,2005-08-17T08:34:22Z,2020-02-15T06:59:53Z +9118,337,1,12369,6.99,2005-08-18T07:57:43Z,2020-02-15T06:59:53Z +9119,337,2,13305,6.99,2005-08-19T18:57:05Z,2020-02-15T06:59:53Z +9120,337,1,13678,4.99,2005-08-20T08:38:24Z,2020-02-15T06:59:53Z +9121,337,2,13892,3.99,2005-08-20T15:50:17Z,2020-02-15T06:59:53Z +9122,337,2,14118,5.99,2005-08-21T01:13:37Z,2020-02-15T06:59:53Z +9123,337,2,15241,4.99,2005-08-22T17:47:40Z,2020-02-15T06:59:53Z +9124,337,1,15292,4.99,2005-08-22T19:28:56Z,2020-02-15T06:59:53Z +9125,337,2,11847,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9126,338,1,675,0.99,2005-05-28T22:22:44Z,2020-02-15T06:59:53Z +9127,338,2,1510,4.99,2005-06-15T22:39:34Z,2020-02-15T06:59:53Z +9128,338,1,1807,5.99,2005-06-16T20:58:59Z,2020-02-15T06:59:53Z +9129,338,2,1952,4.99,2005-06-17T08:33:02Z,2020-02-15T06:59:53Z +9130,338,1,2148,6.99,2005-06-17T22:44:35Z,2020-02-15T06:59:53Z +9131,338,1,2179,0.99,2005-06-18T00:41:36Z,2020-02-15T06:59:53Z +9132,338,1,2495,4.99,2005-06-18T22:15:42Z,2020-02-15T06:59:53Z +9133,338,1,3458,5.99,2005-06-21T21:42:49Z,2020-02-15T06:59:53Z +9134,338,1,3516,0.99,2005-07-06T00:50:30Z,2020-02-15T06:59:53Z +9135,338,2,3772,2.99,2005-07-06T13:22:53Z,2020-02-15T06:59:53Z +9136,338,2,4104,5.99,2005-07-07T06:25:41Z,2020-02-15T06:59:53Z +9137,338,2,4779,4.99,2005-07-08T15:53:41Z,2020-02-15T06:59:53Z +9138,338,1,5309,4.99,2005-07-09T16:00:16Z,2020-02-15T06:59:53Z +9139,338,1,6236,2.99,2005-07-11T14:18:17Z,2020-02-15T06:59:53Z +9140,338,1,6360,4.99,2005-07-11T21:07:40Z,2020-02-15T06:59:53Z +9141,338,2,7584,3.99,2005-07-27T23:15:46Z,2020-02-15T06:59:53Z +9142,338,1,8766,0.99,2005-07-29T19:41:04Z,2020-02-15T06:59:53Z +9143,338,1,9485,7.99,2005-07-30T23:32:40Z,2020-02-15T06:59:53Z +9144,338,2,10791,2.99,2005-08-01T21:41:52Z,2020-02-15T06:59:53Z +9145,338,1,10897,0.99,2005-08-02T01:23:42Z,2020-02-15T06:59:53Z +9146,338,2,11064,4.99,2005-08-02T06:55:17Z,2020-02-15T06:59:53Z +9147,338,2,11671,4.99,2005-08-17T05:50:21Z,2020-02-15T06:59:53Z +9148,338,2,11719,5.99,2005-08-17T07:46:05Z,2020-02-15T06:59:53Z +9149,338,1,12167,2.99,2005-08-18T01:00:02Z,2020-02-15T06:59:53Z +9150,338,1,13284,3.99,2005-08-19T18:12:31Z,2020-02-15T06:59:53Z +9151,338,1,14619,2.99,2005-08-21T18:10:03Z,2020-02-15T06:59:53Z +9152,338,2,15105,0.99,2005-08-22T12:01:33Z,2020-02-15T06:59:53Z +9153,338,2,15173,6.99,2005-08-22T15:26:29Z,2020-02-15T06:59:53Z +9154,339,1,876,5.99,2005-05-30T05:41:22Z,2020-02-15T06:59:53Z +9155,339,2,1432,3.99,2005-06-15T18:27:24Z,2020-02-15T06:59:53Z +9156,339,1,1536,4.99,2005-06-16T00:52:22Z,2020-02-15T06:59:53Z +9157,339,2,1629,4.99,2005-06-16T07:53:47Z,2020-02-15T06:59:53Z +9158,339,1,3146,6.99,2005-06-20T20:21:48Z,2020-02-15T06:59:53Z +9159,339,1,3335,4.99,2005-06-21T10:09:08Z,2020-02-15T06:59:53Z +9160,339,2,3536,2.99,2005-07-06T01:36:11Z,2020-02-15T06:59:53Z +9161,339,1,4243,4.99,2005-07-07T13:39:58Z,2020-02-15T06:59:53Z +9162,339,1,4467,0.99,2005-07-08T00:13:52Z,2020-02-15T06:59:53Z +9163,339,2,4967,3.99,2005-07-08T23:48:03Z,2020-02-15T06:59:53Z +9164,339,1,5720,3.99,2005-07-10T11:09:12Z,2020-02-15T06:59:53Z +9165,339,1,6072,6.99,2005-07-11T04:52:40Z,2020-02-15T06:59:53Z +9166,339,1,6425,0.99,2005-07-11T23:54:52Z,2020-02-15T06:59:53Z +9167,339,2,6682,7.99,2005-07-12T12:12:43Z,2020-02-15T06:59:53Z +9168,339,2,7244,2.99,2005-07-27T10:27:33Z,2020-02-15T06:59:53Z +9169,339,2,7973,4.99,2005-07-28T14:10:06Z,2020-02-15T06:59:53Z +9170,339,1,8968,0.99,2005-07-30T03:57:32Z,2020-02-15T06:59:53Z +9171,339,2,9208,5.99,2005-07-30T12:54:03Z,2020-02-15T06:59:53Z +9172,339,1,9663,4.99,2005-07-31T06:10:48Z,2020-02-15T06:59:53Z +9173,339,2,10338,3.99,2005-08-01T05:03:03Z,2020-02-15T06:59:53Z +9174,339,2,11171,4.99,2005-08-02T10:23:41Z,2020-02-15T06:59:53Z +9175,339,1,11550,2.99,2005-08-17T01:02:06Z,2020-02-15T06:59:53Z +9176,339,2,11582,3.99,2005-08-17T02:03:49Z,2020-02-15T06:59:53Z +9177,339,2,11699,5.99,2005-08-17T07:11:58Z,2020-02-15T06:59:53Z +9178,339,1,12631,0.99,2005-08-18T17:52:51Z,2020-02-15T06:59:53Z +9179,339,1,13199,3.99,2005-08-19T14:53:22Z,2020-02-15T06:59:53Z +9180,339,1,13575,5.99,2005-08-20T05:15:20Z,2020-02-15T06:59:53Z +9181,339,1,13985,0.99,2005-08-20T19:13:06Z,2020-02-15T06:59:53Z +9182,339,1,14636,4.99,2005-08-21T18:59:17Z,2020-02-15T06:59:53Z +9183,339,2,14758,3.99,2005-08-21T23:24:52Z,2020-02-15T06:59:53Z +9184,340,2,1205,4.99,2005-06-15T02:25:56Z,2020-02-15T06:59:53Z +9185,340,1,1697,3.99,2005-06-16T12:55:20Z,2020-02-15T06:59:53Z +9186,340,1,2177,5.99,2005-06-18T00:34:45Z,2020-02-15T06:59:53Z +9187,340,2,2183,4.99,2005-06-18T01:06:01Z,2020-02-15T06:59:53Z +9188,340,2,2607,5.99,2005-06-19T06:55:01Z,2020-02-15T06:59:53Z +9189,340,1,2653,5.99,2005-06-19T10:36:53Z,2020-02-15T06:59:53Z +9190,340,1,3264,0.99,2005-06-21T04:19:03Z,2020-02-15T06:59:53Z +9191,340,1,3455,2.99,2005-06-21T21:17:51Z,2020-02-15T06:59:53Z +9192,340,2,4475,2.99,2005-07-08T00:27:30Z,2020-02-15T06:59:53Z +9193,340,1,4742,0.99,2005-07-08T13:35:23Z,2020-02-15T06:59:53Z +9194,340,2,6381,4.99,2005-07-11T21:58:48Z,2020-02-15T06:59:53Z +9195,340,2,7617,2.99,2005-07-28T00:18:40Z,2020-02-15T06:59:53Z +9196,340,2,8274,4.99,2005-07-29T01:34:32Z,2020-02-15T06:59:53Z +9197,340,1,8541,0.99,2005-07-29T10:55:01Z,2020-02-15T06:59:53Z +9198,340,2,8551,4.99,2005-07-29T11:13:11Z,2020-02-15T06:59:53Z +9199,340,1,8606,4.99,2005-07-29T13:14:24Z,2020-02-15T06:59:53Z +9200,340,1,9834,2.99,2005-07-31T12:05:42Z,2020-02-15T06:59:53Z +9201,340,1,10292,2.99,2005-08-01T03:42:40Z,2020-02-15T06:59:53Z +9202,340,1,10667,8.99,2005-08-01T16:58:22Z,2020-02-15T06:59:53Z +9203,340,2,10674,3.99,2005-08-01T17:11:52Z,2020-02-15T06:59:53Z +9204,340,1,10809,0.99,2005-08-01T22:39:27Z,2020-02-15T06:59:53Z +9205,340,1,10995,0.99,2005-08-02T04:48:00Z,2020-02-15T06:59:53Z +9206,340,2,12598,4.99,2005-08-18T16:34:03Z,2020-02-15T06:59:53Z +9207,340,2,12908,1.99,2005-08-19T04:19:05Z,2020-02-15T06:59:53Z +9208,340,2,12940,2.99,2005-08-19T05:38:29Z,2020-02-15T06:59:53Z +9209,340,1,13425,2.99,2005-08-19T23:11:44Z,2020-02-15T06:59:53Z +9210,340,1,14457,4.99,2005-08-21T12:47:38Z,2020-02-15T06:59:53Z +9211,340,2,14718,0.99,2005-08-21T21:39:25Z,2020-02-15T06:59:53Z +9212,340,1,14895,2.99,2005-08-22T04:19:23Z,2020-02-15T06:59:53Z +9213,340,2,15306,2.99,2005-08-22T19:46:36Z,2020-02-15T06:59:53Z +9214,340,1,15378,9.99,2005-08-22T22:25:17Z,2020-02-15T06:59:53Z +9215,341,1,1318,2.99,2005-06-15T10:34:26Z,2020-02-15T06:59:53Z +9216,341,2,1520,7.99,2005-06-15T23:57:20Z,2020-02-15T06:59:53Z +9217,341,1,1778,1.99,2005-06-16T18:54:48Z,2020-02-15T06:59:53Z +9218,341,1,1849,7.99,2005-06-17T00:13:19Z,2020-02-15T06:59:53Z +9219,341,2,2829,2.99,2005-06-19T21:11:30Z,2020-02-15T06:59:53Z +9220,341,2,3130,7.99,2005-06-20T19:03:22Z,2020-02-15T06:59:53Z +9221,341,1,3382,5.99,2005-06-21T14:05:23Z,2020-02-15T06:59:53Z +9222,341,2,3938,4.99,2005-07-06T21:15:45Z,2020-02-15T06:59:53Z +9223,341,1,4624,2.99,2005-07-08T08:12:17Z,2020-02-15T06:59:53Z +9224,341,2,5487,4.99,2005-07-10T00:01:50Z,2020-02-15T06:59:53Z +9225,341,2,5931,0.99,2005-07-10T22:04:19Z,2020-02-15T06:59:53Z +9226,341,2,7473,2.99,2005-07-27T19:05:40Z,2020-02-15T06:59:53Z +9227,341,1,8661,2.99,2005-07-29T15:28:24Z,2020-02-15T06:59:53Z +9228,341,1,8728,9.99,2005-07-29T18:12:49Z,2020-02-15T06:59:53Z +9229,341,2,10605,0.99,2005-08-01T14:36:26Z,2020-02-15T06:59:53Z +9230,341,1,11305,6.99,2005-08-02T15:44:55Z,2020-02-15T06:59:53Z +9231,341,1,11723,2.99,2005-08-17T07:56:22Z,2020-02-15T06:59:53Z +9232,341,2,13059,0.99,2005-08-19T09:42:01Z,2020-02-15T06:59:53Z +9233,341,2,13074,8.99,2005-08-19T10:06:53Z,2020-02-15T06:59:53Z +9234,341,2,13806,4.99,2005-08-20T12:53:46Z,2020-02-15T06:59:53Z +9235,341,2,14344,4.99,2005-08-21T08:40:56Z,2020-02-15T06:59:53Z +9236,341,2,15030,0.99,2005-08-22T09:10:21Z,2020-02-15T06:59:53Z +9237,341,2,15938,6.99,2005-08-23T18:43:31Z,2020-02-15T06:59:53Z +9238,342,2,2190,5.99,2005-06-18T01:29:51Z,2020-02-15T06:59:53Z +9239,342,1,2914,5.99,2005-06-20T03:43:18Z,2020-02-15T06:59:53Z +9240,342,1,3081,2.99,2005-06-20T15:29:13Z,2020-02-15T06:59:53Z +9241,342,1,5617,0.99,2005-07-10T05:28:50Z,2020-02-15T06:59:53Z +9242,342,2,6060,4.99,2005-07-11T04:06:17Z,2020-02-15T06:59:53Z +9243,342,2,6429,8.99,2005-07-12T00:02:50Z,2020-02-15T06:59:53Z +9244,342,1,6736,2.99,2005-07-12T14:16:50Z,2020-02-15T06:59:53Z +9245,342,2,6787,7.99,2005-07-12T16:33:28Z,2020-02-15T06:59:53Z +9246,342,2,6997,0.99,2005-07-27T01:14:02Z,2020-02-15T06:59:53Z +9247,342,2,7280,2.99,2005-07-27T11:50:52Z,2020-02-15T06:59:53Z +9248,342,1,9164,2.99,2005-07-30T11:24:14Z,2020-02-15T06:59:53Z +9249,342,1,9526,0.99,2005-07-31T01:02:22Z,2020-02-15T06:59:53Z +9250,342,2,9948,5.99,2005-07-31T15:49:41Z,2020-02-15T06:59:53Z +9251,342,1,9955,0.99,2005-07-31T16:01:26Z,2020-02-15T06:59:53Z +9252,342,2,9956,4.99,2005-07-31T16:03:47Z,2020-02-15T06:59:53Z +9253,342,1,10242,4.99,2005-08-01T02:18:12Z,2020-02-15T06:59:53Z +9254,342,2,11178,2.99,2005-08-02T10:48:10Z,2020-02-15T06:59:53Z +9255,342,2,11446,0.99,2005-08-02T20:33:37Z,2020-02-15T06:59:53Z +9256,342,1,11568,0.99,2005-08-17T01:30:01Z,2020-02-15T06:59:53Z +9257,342,1,12139,6.99,2005-08-17T23:57:13Z,2020-02-15T06:59:53Z +9258,342,1,12404,4.99,2005-08-18T09:36:34Z,2020-02-15T06:59:53Z +9259,342,1,12522,2.99,2005-08-18T13:45:40Z,2020-02-15T06:59:53Z +9260,342,2,12816,4.99,2005-08-19T01:04:05Z,2020-02-15T06:59:53Z +9261,342,2,13368,4.99,2005-08-19T21:19:35Z,2020-02-15T06:59:53Z +9262,342,2,13637,4.99,2005-08-20T07:21:15Z,2020-02-15T06:59:53Z +9263,342,1,13755,2.99,2005-08-20T11:18:53Z,2020-02-15T06:59:53Z +9264,342,2,13827,4.99,2005-08-20T13:47:19Z,2020-02-15T06:59:53Z +9265,342,2,14096,2.99,2005-08-21T00:27:46Z,2020-02-15T06:59:53Z +9266,342,2,14299,0.99,2005-08-21T07:18:57Z,2020-02-15T06:59:53Z +9267,342,2,14683,8.99,2005-08-21T20:27:44Z,2020-02-15T06:59:53Z +9268,342,1,15484,4.99,2005-08-23T02:04:49Z,2020-02-15T06:59:53Z +9269,342,1,15895,3.99,2005-08-23T17:09:31Z,2020-02-15T06:59:53Z +9270,343,2,102,3.99,2005-05-25T17:22:10Z,2020-02-15T06:59:53Z +9271,343,1,455,3.99,2005-05-27T19:43:29Z,2020-02-15T06:59:53Z +9272,343,2,1547,4.99,2005-06-16T01:42:24Z,2020-02-15T06:59:53Z +9273,343,1,1564,6.99,2005-06-16T02:47:07Z,2020-02-15T06:59:53Z +9274,343,2,1879,0.99,2005-06-17T02:57:34Z,2020-02-15T06:59:53Z +9275,343,2,1922,0.99,2005-06-17T06:04:25Z,2020-02-15T06:59:53Z +9276,343,2,2461,6.99,2005-06-18T19:58:12Z,2020-02-15T06:59:53Z +9277,343,1,2980,8.99,2005-06-20T08:35:03Z,2020-02-15T06:59:53Z +9278,343,1,3407,0.99,2005-06-21T16:14:02Z,2020-02-15T06:59:53Z +9279,343,1,3978,5.99,2005-07-06T23:04:33Z,2020-02-15T06:59:53Z +9280,343,1,4472,7.99,2005-07-08T00:22:06Z,2020-02-15T06:59:53Z +9281,343,2,5097,4.99,2005-07-09T06:09:51Z,2020-02-15T06:59:53Z +9282,343,1,5337,3.99,2005-07-09T17:03:50Z,2020-02-15T06:59:53Z +9283,343,1,7069,6.99,2005-07-27T03:59:35Z,2020-02-15T06:59:53Z +9284,343,2,8012,5.99,2005-07-28T15:29:00Z,2020-02-15T06:59:53Z +9285,343,2,8088,9.99,2005-07-28T18:23:49Z,2020-02-15T06:59:53Z +9286,343,2,9458,5.99,2005-07-30T22:24:34Z,2020-02-15T06:59:53Z +9287,343,2,9739,2.99,2005-07-31T09:08:03Z,2020-02-15T06:59:53Z +9288,343,1,10822,0.99,2005-08-01T22:54:28Z,2020-02-15T06:59:53Z +9289,343,1,11212,0.99,2005-08-02T12:18:29Z,2020-02-15T06:59:53Z +9290,343,2,11570,2.99,2005-08-17T01:34:32Z,2020-02-15T06:59:53Z +9291,343,2,13279,4.99,2005-08-19T18:02:18Z,2020-02-15T06:59:53Z +9292,343,2,13522,3.99,2005-08-20T02:44:06Z,2020-02-15T06:59:53Z +9293,343,2,13866,0.99,2005-08-20T15:05:29Z,2020-02-15T06:59:53Z +9294,343,2,15973,5.99,2005-08-23T20:04:41Z,2020-02-15T06:59:53Z +9295,344,2,157,2.99,2005-05-26T01:25:21Z,2020-02-15T06:59:53Z +9296,344,2,813,5.99,2005-05-29T20:14:34Z,2020-02-15T06:59:53Z +9297,344,1,1341,3.99,2005-06-15T12:26:18Z,2020-02-15T06:59:53Z +9298,344,2,1475,4.99,2005-06-15T21:08:01Z,2020-02-15T06:59:53Z +9299,344,1,1731,0.99,2005-06-16T15:32:12Z,2020-02-15T06:59:53Z +9300,344,2,4028,5.99,2005-07-07T02:19:14Z,2020-02-15T06:59:53Z +9301,344,2,4347,3.99,2005-07-07T18:58:57Z,2020-02-15T06:59:53Z +9302,344,2,6363,5.99,2005-07-11T21:13:19Z,2020-02-15T06:59:53Z +9303,344,2,7480,4.99,2005-07-27T19:19:53Z,2020-02-15T06:59:53Z +9304,344,2,8561,2.99,2005-07-29T11:29:12Z,2020-02-15T06:59:53Z +9305,344,2,9788,4.99,2005-07-31T10:28:21Z,2020-02-15T06:59:53Z +9306,344,2,11116,5.99,2005-08-02T08:34:40Z,2020-02-15T06:59:53Z +9307,344,2,12183,5.99,2005-08-18T01:34:13Z,2020-02-15T06:59:53Z +9308,344,2,13014,4.99,2005-08-19T07:56:08Z,2020-02-15T06:59:53Z +9309,344,1,13033,3.99,2005-08-19T08:34:39Z,2020-02-15T06:59:53Z +9310,344,1,14621,0.99,2005-08-21T18:17:59Z,2020-02-15T06:59:53Z +9311,344,2,14624,0.99,2005-08-21T18:32:42Z,2020-02-15T06:59:53Z +9312,344,1,15215,2.99,2005-08-22T16:55:26Z,2020-02-15T06:59:53Z +9313,345,1,206,0.99,2005-05-26T08:01:54Z,2020-02-15T06:59:53Z +9314,345,1,363,0.99,2005-05-27T07:14:00Z,2020-02-15T06:59:53Z +9315,345,2,1210,0.99,2005-06-15T02:57:51Z,2020-02-15T06:59:53Z +9316,345,1,1457,4.99,2005-06-15T20:05:49Z,2020-02-15T06:59:53Z +9317,345,2,1550,0.99,2005-06-16T01:58:35Z,2020-02-15T06:59:53Z +9318,345,2,2766,4.99,2005-06-19T17:45:15Z,2020-02-15T06:59:53Z +9319,345,2,4422,2.99,2005-07-07T22:09:45Z,2020-02-15T06:59:53Z +9320,345,1,4425,2.99,2005-07-07T22:22:44Z,2020-02-15T06:59:53Z +9321,345,2,4450,4.99,2005-07-07T23:20:05Z,2020-02-15T06:59:53Z +9322,345,2,5508,3.99,2005-07-10T00:50:01Z,2020-02-15T06:59:53Z +9323,345,1,6307,7.99,2005-07-11T18:04:29Z,2020-02-15T06:59:53Z +9324,345,1,7092,6.99,2005-07-27T04:46:00Z,2020-02-15T06:59:53Z +9325,345,2,8129,2.99,2005-07-28T19:47:02Z,2020-02-15T06:59:53Z +9326,345,2,8694,8.99,2005-07-29T16:44:48Z,2020-02-15T06:59:53Z +9327,345,1,9163,4.99,2005-07-30T11:23:22Z,2020-02-15T06:59:53Z +9328,345,2,9207,2.99,2005-07-30T12:49:57Z,2020-02-15T06:59:53Z +9329,345,2,10215,8.99,2005-08-01T01:04:28Z,2020-02-15T06:59:53Z +9330,345,2,10982,4.99,2005-08-02T04:19:11Z,2020-02-15T06:59:53Z +9331,345,1,11865,2.99,2005-08-17T14:03:46Z,2020-02-15T06:59:53Z +9332,345,1,12485,4.99,2005-08-18T12:41:41Z,2020-02-15T06:59:53Z +9333,345,2,12805,4.99,2005-08-19T00:36:34Z,2020-02-15T06:59:53Z +9334,345,1,14702,10.99,2005-08-21T21:00:03Z,2020-02-15T06:59:53Z +9335,345,1,15551,4.99,2005-08-23T04:28:25Z,2020-02-15T06:59:53Z +9336,346,1,65,4.99,2005-05-25T09:32:03Z,2020-02-15T06:59:53Z +9337,346,1,810,4.99,2005-05-29T19:12:04Z,2020-02-15T06:59:53Z +9338,346,1,1994,5.99,2005-06-17T11:07:06Z,2020-02-15T06:59:53Z +9339,346,2,3372,2.99,2005-06-21T13:34:19Z,2020-02-15T06:59:53Z +9340,346,1,3421,2.99,2005-06-21T17:22:58Z,2020-02-15T06:59:53Z +9341,346,2,4420,4.99,2005-07-07T22:07:31Z,2020-02-15T06:59:53Z +9342,346,1,4958,8.99,2005-07-08T23:19:52Z,2020-02-15T06:59:53Z +9343,346,1,5428,4.99,2005-07-09T21:12:50Z,2020-02-15T06:59:53Z +9344,346,2,5557,4.99,2005-07-10T03:10:21Z,2020-02-15T06:59:53Z +9345,346,2,6136,4.99,2005-07-11T08:34:09Z,2020-02-15T06:59:53Z +9346,346,2,6323,2.99,2005-07-11T19:02:19Z,2020-02-15T06:59:53Z +9347,346,2,6881,8.99,2005-07-12T20:46:35Z,2020-02-15T06:59:53Z +9348,346,2,7943,6.99,2005-07-28T12:50:55Z,2020-02-15T06:59:53Z +9349,346,2,8272,5.99,2005-07-29T01:29:51Z,2020-02-15T06:59:53Z +9350,346,1,8505,6.99,2005-07-29T09:22:52Z,2020-02-15T06:59:53Z +9351,346,2,8543,0.99,2005-07-29T11:01:57Z,2020-02-15T06:59:53Z +9352,346,2,8732,8.99,2005-07-29T18:25:03Z,2020-02-15T06:59:53Z +9353,346,2,9566,4.99,2005-07-31T02:32:10Z,2020-02-15T06:59:53Z +9354,346,1,9848,4.99,2005-07-31T12:44:33Z,2020-02-15T06:59:53Z +9355,346,1,9927,2.99,2005-07-31T15:12:13Z,2020-02-15T06:59:53Z +9356,346,1,10304,5.99,2005-08-01T04:14:12Z,2020-02-15T06:59:53Z +9357,346,2,10389,3.99,2005-08-01T06:46:43Z,2020-02-15T06:59:53Z +9358,346,2,10521,0.99,2005-08-01T11:46:17Z,2020-02-15T06:59:53Z +9359,346,2,11062,4.99,2005-08-02T06:52:54Z,2020-02-15T06:59:53Z +9360,346,1,11375,4.99,2005-08-02T18:14:56Z,2020-02-15T06:59:53Z +9361,346,2,11470,2.99,2005-08-02T21:48:28Z,2020-02-15T06:59:53Z +9362,346,1,14890,5.99,2005-08-22T04:10:49Z,2020-02-15T06:59:53Z +9363,346,2,15459,2.99,2005-08-23T01:09:48Z,2020-02-15T06:59:53Z +9364,346,1,15535,0.99,2005-08-23T03:58:02Z,2020-02-15T06:59:53Z +9365,346,1,15661,8.99,2005-08-23T08:52:03Z,2020-02-15T06:59:53Z +9366,346,2,15825,5.99,2005-08-23T15:10:42Z,2020-02-15T06:59:53Z +9367,346,1,15827,0.99,2005-08-23T15:15:19Z,2020-02-15T06:59:53Z +9368,347,2,1711,8.99,2005-06-16T14:11:52Z,2020-02-15T06:59:53Z +9369,347,2,2274,0.99,2005-06-18T06:31:15Z,2020-02-15T06:59:53Z +9370,347,1,3026,4.99,2005-06-20T11:48:00Z,2020-02-15T06:59:53Z +9371,347,1,3092,8.99,2005-06-20T16:04:42Z,2020-02-15T06:59:53Z +9372,347,1,3326,7.99,2005-06-21T09:04:50Z,2020-02-15T06:59:53Z +9373,347,2,3605,0.99,2005-07-06T05:27:15Z,2020-02-15T06:59:53Z +9374,347,2,3666,4.99,2005-07-06T08:27:43Z,2020-02-15T06:59:53Z +9375,347,1,4232,5.99,2005-07-07T12:49:12Z,2020-02-15T06:59:53Z +9376,347,1,4523,6.99,2005-07-08T03:06:59Z,2020-02-15T06:59:53Z +9377,347,2,5471,0.99,2005-07-09T23:11:52Z,2020-02-15T06:59:53Z +9378,347,1,5819,2.99,2005-07-10T15:56:20Z,2020-02-15T06:59:53Z +9379,347,2,6121,1.99,2005-07-11T07:55:27Z,2020-02-15T06:59:53Z +9380,347,1,7811,0.99,2005-07-28T08:06:01Z,2020-02-15T06:59:53Z +9381,347,2,8148,4.99,2005-07-28T20:39:47Z,2020-02-15T06:59:53Z +9382,347,2,8153,4.99,2005-07-28T20:55:49Z,2020-02-15T06:59:53Z +9383,347,2,8176,4.99,2005-07-28T21:42:08Z,2020-02-15T06:59:53Z +9384,347,2,8378,4.99,2005-07-29T05:28:35Z,2020-02-15T06:59:53Z +9385,347,2,8771,2.99,2005-07-29T19:54:41Z,2020-02-15T06:59:53Z +9386,347,1,9013,4.99,2005-07-30T05:19:20Z,2020-02-15T06:59:53Z +9387,347,1,9582,4.99,2005-07-31T03:05:19Z,2020-02-15T06:59:53Z +9388,347,1,9856,3.99,2005-07-31T13:00:35Z,2020-02-15T06:59:53Z +9389,347,1,9876,2.99,2005-07-31T13:37:51Z,2020-02-15T06:59:53Z +9390,347,2,11738,8.99,2005-08-17T08:45:55Z,2020-02-15T06:59:53Z +9391,347,1,12195,2.99,2005-08-18T02:07:49Z,2020-02-15T06:59:53Z +9392,347,2,12399,10.99,2005-08-18T09:13:42Z,2020-02-15T06:59:53Z +9393,347,2,13314,5.99,2005-08-19T19:12:43Z,2020-02-15T06:59:53Z +9394,347,2,14894,4.99,2005-08-22T04:16:56Z,2020-02-15T06:59:53Z +9395,347,2,14958,2.99,2005-08-22T06:30:10Z,2020-02-15T06:59:53Z +9396,347,2,15426,2.99,2005-08-23T00:07:19Z,2020-02-15T06:59:53Z +9397,347,2,15555,4.99,2005-08-23T04:51:52Z,2020-02-15T06:59:53Z +9398,348,2,153,0.99,2005-05-26T00:47:47Z,2020-02-15T06:59:53Z +9399,348,2,821,0.99,2005-05-29T21:31:12Z,2020-02-15T06:59:53Z +9400,348,1,1654,2.99,2005-06-16T09:42:48Z,2020-02-15T06:59:53Z +9401,348,1,2041,8.99,2005-06-17T14:19:00Z,2020-02-15T06:59:53Z +9402,348,2,2499,0.99,2005-06-18T23:01:36Z,2020-02-15T06:59:53Z +9403,348,2,3494,4.99,2005-07-05T23:47:30Z,2020-02-15T06:59:53Z +9404,348,2,3610,4.99,2005-07-06T05:36:59Z,2020-02-15T06:59:53Z +9405,348,2,4556,9.99,2005-07-08T04:48:41Z,2020-02-15T06:59:53Z +9406,348,2,4633,0.99,2005-07-08T08:39:39Z,2020-02-15T06:59:53Z +9407,348,1,4699,0.99,2005-07-08T11:36:56Z,2020-02-15T06:59:53Z +9408,348,1,4807,8.99,2005-07-08T17:01:48Z,2020-02-15T06:59:53Z +9409,348,1,5345,4.99,2005-07-09T17:28:18Z,2020-02-15T06:59:53Z +9410,348,2,5965,0.99,2005-07-10T23:51:52Z,2020-02-15T06:59:53Z +9411,348,2,6776,2.99,2005-07-12T16:02:09Z,2020-02-15T06:59:53Z +9412,348,2,7380,2.99,2005-07-27T15:37:01Z,2020-02-15T06:59:53Z +9413,348,1,7482,6.99,2005-07-27T19:24:16Z,2020-02-15T06:59:53Z +9414,348,2,7825,4.99,2005-07-28T08:34:57Z,2020-02-15T06:59:53Z +9415,348,1,8500,2.99,2005-07-29T09:12:01Z,2020-02-15T06:59:53Z +9416,348,1,8569,4.99,2005-07-29T11:39:17Z,2020-02-15T06:59:53Z +9417,348,2,8682,4.99,2005-07-29T16:15:26Z,2020-02-15T06:59:53Z +9418,348,2,9482,2.99,2005-07-30T23:29:16Z,2020-02-15T06:59:53Z +9419,348,1,10769,2.99,2005-08-01T20:43:02Z,2020-02-15T06:59:53Z +9420,348,2,10972,2.99,2005-08-02T04:08:25Z,2020-02-15T06:59:53Z +9421,348,1,11262,2.99,2005-08-02T13:58:55Z,2020-02-15T06:59:53Z +9422,348,1,11429,7.99,2005-08-02T20:03:52Z,2020-02-15T06:59:53Z +9423,348,2,12564,2.99,2005-08-18T15:11:35Z,2020-02-15T06:59:53Z +9424,348,2,12884,5.99,2005-08-19T03:34:04Z,2020-02-15T06:59:53Z +9425,348,2,12937,4.99,2005-08-19T05:25:30Z,2020-02-15T06:59:53Z +9426,348,2,13238,2.99,2005-08-19T16:20:56Z,2020-02-15T06:59:53Z +9427,348,2,13602,5.99,2005-08-20T06:02:02Z,2020-02-15T06:59:53Z +9428,348,2,13684,0.99,2005-08-20T08:55:53Z,2020-02-15T06:59:53Z +9429,348,1,13962,1.99,2005-08-20T18:18:06Z,2020-02-15T06:59:53Z +9430,348,2,14079,3.99,2005-08-20T23:29:25Z,2020-02-15T06:59:53Z +9431,348,2,14937,7.99,2005-08-22T05:51:59Z,2020-02-15T06:59:53Z +9432,348,2,15817,0.99,2005-08-23T14:59:51Z,2020-02-15T06:59:53Z +9433,348,1,15944,4.99,2005-08-23T18:50:54Z,2020-02-15T06:59:53Z +9434,349,1,890,4.99,2005-05-30T07:43:04Z,2020-02-15T06:59:53Z +9435,349,1,1197,2.99,2005-06-15T01:42:46Z,2020-02-15T06:59:53Z +9436,349,1,1523,0.99,2005-06-16T00:18:40Z,2020-02-15T06:59:53Z +9437,349,2,2987,6.99,2005-06-20T08:55:50Z,2020-02-15T06:59:53Z +9438,349,1,3067,8.99,2005-06-20T13:59:21Z,2020-02-15T06:59:53Z +9439,349,2,3488,3.99,2005-07-05T23:32:49Z,2020-02-15T06:59:53Z +9440,349,1,4190,2.99,2005-07-07T10:52:39Z,2020-02-15T06:59:53Z +9441,349,2,4494,5.99,2005-07-08T01:42:45Z,2020-02-15T06:59:53Z +9442,349,1,4881,0.99,2005-07-08T19:40:34Z,2020-02-15T06:59:53Z +9443,349,1,5433,4.99,2005-07-09T21:22:00Z,2020-02-15T06:59:53Z +9444,349,1,7002,4.99,2005-07-27T01:26:14Z,2020-02-15T06:59:53Z +9445,349,1,7046,4.99,2005-07-27T03:27:56Z,2020-02-15T06:59:53Z +9446,349,2,7702,2.99,2005-07-28T03:56:05Z,2020-02-15T06:59:53Z +9447,349,2,8297,4.99,2005-07-29T02:45:46Z,2020-02-15T06:59:53Z +9448,349,1,9262,1.99,2005-07-30T14:45:02Z,2020-02-15T06:59:53Z +9449,349,1,9670,5.99,2005-07-31T06:33:33Z,2020-02-15T06:59:53Z +9450,349,1,9731,0.99,2005-07-31T08:54:47Z,2020-02-15T06:59:53Z +9451,349,1,10987,4.99,2005-08-02T04:36:52Z,2020-02-15T06:59:53Z +9452,349,2,11192,4.99,2005-08-02T11:29:41Z,2020-02-15T06:59:53Z +9453,349,2,11492,8.99,2005-08-02T22:46:47Z,2020-02-15T06:59:53Z +9454,349,1,11905,3.99,2005-08-17T15:40:18Z,2020-02-15T06:59:53Z +9455,349,1,13258,4.99,2005-08-19T17:05:37Z,2020-02-15T06:59:53Z +9456,349,2,13636,4.99,2005-08-20T07:20:09Z,2020-02-15T06:59:53Z +9457,349,2,14200,6.99,2005-08-21T03:51:27Z,2020-02-15T06:59:53Z +9458,349,2,14721,6.99,2005-08-21T21:50:51Z,2020-02-15T06:59:53Z +9459,349,2,14908,4.99,2005-08-22T04:44:10Z,2020-02-15T06:59:53Z +9460,349,1,15833,6.99,2005-08-23T15:22:15Z,2020-02-15T06:59:53Z +9461,349,1,15955,5.99,2005-08-23T19:19:06Z,2020-02-15T06:59:53Z +9462,349,1,14915,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9463,350,1,24,4.99,2005-05-25T02:53:02Z,2020-02-15T06:59:53Z +9464,350,1,802,4.99,2005-05-29T17:38:59Z,2020-02-15T06:59:53Z +9465,350,2,2011,3.99,2005-06-17T11:56:09Z,2020-02-15T06:59:53Z +9466,350,1,2619,0.99,2005-06-19T08:03:12Z,2020-02-15T06:59:53Z +9467,350,1,3079,2.99,2005-06-20T15:13:40Z,2020-02-15T06:59:53Z +9468,350,2,3206,0.99,2005-06-21T00:39:39Z,2020-02-15T06:59:53Z +9469,350,1,3529,0.99,2005-07-06T01:15:26Z,2020-02-15T06:59:53Z +9470,350,1,3893,5.99,2005-07-06T18:59:31Z,2020-02-15T06:59:53Z +9471,350,1,4767,2.99,2005-07-08T15:18:53Z,2020-02-15T06:59:53Z +9472,350,1,5240,0.99,2005-07-09T13:14:48Z,2020-02-15T06:59:53Z +9473,350,1,5303,2.99,2005-07-09T15:44:09Z,2020-02-15T06:59:53Z +9474,350,1,5786,1.99,2005-07-10T14:06:44Z,2020-02-15T06:59:53Z +9475,350,2,6408,3.99,2005-07-11T23:03:02Z,2020-02-15T06:59:53Z +9476,350,2,7416,4.99,2005-07-27T16:55:25Z,2020-02-15T06:59:53Z +9477,350,2,11504,0.99,2005-08-16T23:16:46Z,2020-02-15T06:59:53Z +9478,350,2,11595,6.99,2005-08-17T02:53:14Z,2020-02-15T06:59:53Z +9479,350,2,11692,6.99,2005-08-17T06:52:41Z,2020-02-15T06:59:53Z +9480,350,1,11800,0.99,2005-08-17T11:29:52Z,2020-02-15T06:59:53Z +9481,350,2,12252,6.99,2005-08-18T03:59:51Z,2020-02-15T06:59:53Z +9482,350,2,12445,2.99,2005-08-18T10:56:20Z,2020-02-15T06:59:53Z +9483,350,2,13086,0.99,2005-08-19T10:32:28Z,2020-02-15T06:59:53Z +9484,350,2,15789,1.99,2005-08-23T13:56:40Z,2020-02-15T06:59:53Z +9485,350,1,15807,0.99,2005-08-23T14:35:10Z,2020-02-15T06:59:53Z +9486,351,1,1137,1.99,2005-05-31T19:20:14Z,2020-02-15T06:59:53Z +9487,351,2,1792,5.99,2005-06-16T20:04:50Z,2020-02-15T06:59:53Z +9488,351,1,1869,0.99,2005-06-17T02:08:00Z,2020-02-15T06:59:53Z +9489,351,1,2759,2.99,2005-06-19T17:10:24Z,2020-02-15T06:59:53Z +9490,351,1,3836,2.99,2005-07-06T16:26:04Z,2020-02-15T06:59:53Z +9491,351,1,4544,0.99,2005-07-08T04:11:04Z,2020-02-15T06:59:53Z +9492,351,1,4756,1.99,2005-07-08T14:24:00Z,2020-02-15T06:59:53Z +9493,351,2,4761,5.99,2005-07-08T14:51:45Z,2020-02-15T06:59:53Z +9494,351,1,5280,0.99,2005-07-09T14:55:07Z,2020-02-15T06:59:53Z +9495,351,1,5912,3.99,2005-07-10T20:58:22Z,2020-02-15T06:59:53Z +9496,351,2,6180,3.99,2005-07-11T11:06:50Z,2020-02-15T06:59:53Z +9497,351,1,6664,4.99,2005-07-12T11:28:22Z,2020-02-15T06:59:53Z +9498,351,2,6777,5.99,2005-07-12T16:04:40Z,2020-02-15T06:59:53Z +9499,351,2,7630,4.99,2005-07-28T01:01:03Z,2020-02-15T06:59:53Z +9500,351,2,8512,4.99,2005-07-29T09:48:03Z,2020-02-15T06:59:53Z +9501,351,1,9707,7.99,2005-07-31T07:44:18Z,2020-02-15T06:59:53Z +9502,351,2,10119,0.99,2005-07-31T21:20:59Z,2020-02-15T06:59:53Z +9503,351,2,10501,2.99,2005-08-01T11:04:46Z,2020-02-15T06:59:53Z +9504,351,2,11127,0.99,2005-08-02T09:00:59Z,2020-02-15T06:59:53Z +9505,351,1,14368,6.99,2005-08-21T09:31:47Z,2020-02-15T06:59:53Z +9506,351,2,15142,4.99,2005-08-22T13:44:32Z,2020-02-15T06:59:53Z +9507,351,1,15664,4.99,2005-08-23T08:57:11Z,2020-02-15T06:59:53Z +9508,351,2,15712,2.99,2005-08-23T10:43:56Z,2020-02-15T06:59:53Z +9509,351,1,15762,2.99,2005-08-23T13:01:43Z,2020-02-15T06:59:53Z +9510,352,1,784,2.99,2005-05-29T14:44:22Z,2020-02-15T06:59:53Z +9511,352,1,1498,0.99,2005-06-15T21:58:00Z,2020-02-15T06:59:53Z +9512,352,1,1649,4.99,2005-06-16T09:20:33Z,2020-02-15T06:59:53Z +9513,352,1,1678,4.99,2005-06-16T11:08:28Z,2020-02-15T06:59:53Z +9514,352,1,1780,4.99,2005-06-16T19:11:45Z,2020-02-15T06:59:53Z +9515,352,2,3331,4.99,2005-06-21T09:37:53Z,2020-02-15T06:59:53Z +9516,352,2,4116,4.99,2005-07-07T06:56:13Z,2020-02-15T06:59:53Z +9517,352,2,6329,5.99,2005-07-11T19:10:38Z,2020-02-15T06:59:53Z +9518,352,1,7033,2.99,2005-07-27T03:03:25Z,2020-02-15T06:59:53Z +9519,352,1,7419,7.99,2005-07-27T17:04:15Z,2020-02-15T06:59:53Z +9520,352,2,7512,6.99,2005-07-27T20:40:40Z,2020-02-15T06:59:53Z +9521,352,1,7579,4.99,2005-07-27T23:06:41Z,2020-02-15T06:59:53Z +9522,352,1,7845,5.99,2005-07-28T09:18:07Z,2020-02-15T06:59:53Z +9523,352,1,7886,2.99,2005-07-28T10:37:55Z,2020-02-15T06:59:53Z +9524,352,1,9463,0.99,2005-07-30T22:30:57Z,2020-02-15T06:59:53Z +9525,352,1,11793,5.99,2005-08-17T11:05:53Z,2020-02-15T06:59:53Z +9526,352,1,11823,6.99,2005-08-17T12:36:37Z,2020-02-15T06:59:53Z +9527,352,2,11986,0.99,2005-08-17T18:21:58Z,2020-02-15T06:59:53Z +9528,352,2,12234,5.99,2005-08-18T03:17:33Z,2020-02-15T06:59:53Z +9529,352,1,12751,2.99,2005-08-18T22:33:22Z,2020-02-15T06:59:53Z +9530,352,1,14130,4.99,2005-08-21T01:43:11Z,2020-02-15T06:59:53Z +9531,352,2,14852,0.99,2005-08-22T02:25:53Z,2020-02-15T06:59:53Z +9532,352,2,13578,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9533,353,2,1103,6.99,2005-05-31T14:24:18Z,2020-02-15T06:59:53Z +9534,353,2,1359,2.99,2005-06-15T13:30:30Z,2020-02-15T06:59:53Z +9535,353,2,1928,7.99,2005-06-17T06:48:31Z,2020-02-15T06:59:53Z +9536,353,2,3233,6.99,2005-06-21T02:39:31Z,2020-02-15T06:59:53Z +9537,353,2,4380,5.99,2005-07-07T20:35:00Z,2020-02-15T06:59:53Z +9538,353,2,6559,1.99,2005-07-12T05:20:35Z,2020-02-15T06:59:53Z +9539,353,1,6610,3.99,2005-07-12T08:20:02Z,2020-02-15T06:59:53Z +9540,353,2,7993,3.99,2005-07-28T14:56:41Z,2020-02-15T06:59:53Z +9541,353,2,10071,2.99,2005-07-31T19:49:35Z,2020-02-15T06:59:53Z +9542,353,1,11186,0.99,2005-08-02T11:12:08Z,2020-02-15T06:59:53Z +9543,353,2,11414,4.99,2005-08-02T19:43:07Z,2020-02-15T06:59:53Z +9544,353,2,11698,4.99,2005-08-17T07:09:59Z,2020-02-15T06:59:53Z +9545,353,1,12928,5.99,2005-08-19T05:04:09Z,2020-02-15T06:59:53Z +9546,353,2,13604,0.99,2005-08-20T06:03:33Z,2020-02-15T06:59:53Z +9547,353,1,14396,4.99,2005-08-21T10:24:54Z,2020-02-15T06:59:53Z +9548,353,1,15564,1.99,2005-08-23T05:10:42Z,2020-02-15T06:59:53Z +9549,353,2,15650,0.99,2005-08-23T08:29:53Z,2020-02-15T06:59:53Z +9550,353,2,15676,2.99,2005-08-23T09:23:08Z,2020-02-15T06:59:53Z +9551,354,1,140,0.99,2005-05-25T23:34:22Z,2020-02-15T06:59:53Z +9552,354,2,158,1.99,2005-05-26T01:27:11Z,2020-02-15T06:59:53Z +9553,354,2,402,0.99,2005-05-27T13:17:18Z,2020-02-15T06:59:53Z +9554,354,1,1491,0.99,2005-06-15T21:48:18Z,2020-02-15T06:59:53Z +9555,354,1,2275,4.99,2005-06-18T06:31:29Z,2020-02-15T06:59:53Z +9556,354,1,2769,6.99,2005-06-19T17:52:14Z,2020-02-15T06:59:53Z +9557,354,1,3139,2.99,2005-06-20T19:44:45Z,2020-02-15T06:59:53Z +9558,354,2,3821,2.99,2005-07-06T15:36:20Z,2020-02-15T06:59:53Z +9559,354,2,4034,0.99,2005-07-07T02:36:33Z,2020-02-15T06:59:53Z +9560,354,1,4449,5.99,2005-07-07T23:18:58Z,2020-02-15T06:59:53Z +9561,354,2,4745,2.99,2005-07-08T13:45:09Z,2020-02-15T06:59:53Z +9562,354,1,5354,4.99,2005-07-09T18:04:33Z,2020-02-15T06:59:53Z +9563,354,2,5556,4.99,2005-07-10T03:10:17Z,2020-02-15T06:59:53Z +9564,354,1,5873,3.99,2005-07-10T19:02:10Z,2020-02-15T06:59:53Z +9565,354,1,6054,0.99,2005-07-11T03:58:39Z,2020-02-15T06:59:53Z +9566,354,1,6838,4.99,2005-07-12T19:01:30Z,2020-02-15T06:59:53Z +9567,354,1,6926,0.99,2005-07-26T22:52:45Z,2020-02-15T06:59:53Z +9568,354,1,6939,5.99,2005-07-26T23:17:51Z,2020-02-15T06:59:53Z +9569,354,2,7148,0.99,2005-07-27T07:04:09Z,2020-02-15T06:59:53Z +9570,354,2,7235,2.99,2005-07-27T10:09:30Z,2020-02-15T06:59:53Z +9571,354,2,7241,0.99,2005-07-27T10:25:49Z,2020-02-15T06:59:53Z +9572,354,2,8321,4.99,2005-07-29T03:50:54Z,2020-02-15T06:59:53Z +9573,354,2,8477,8.99,2005-07-29T08:40:36Z,2020-02-15T06:59:53Z +9574,354,1,8609,4.99,2005-07-29T13:19:25Z,2020-02-15T06:59:53Z +9575,354,2,8921,0.99,2005-07-30T02:04:02Z,2020-02-15T06:59:53Z +9576,354,1,9130,2.99,2005-07-30T09:55:10Z,2020-02-15T06:59:53Z +9577,354,1,10420,6.99,2005-08-01T08:13:53Z,2020-02-15T06:59:53Z +9578,354,2,12243,6.99,2005-08-18T03:38:54Z,2020-02-15T06:59:53Z +9579,354,1,12544,3.99,2005-08-18T14:25:51Z,2020-02-15T06:59:53Z +9580,354,1,12998,4.99,2005-08-19T07:32:16Z,2020-02-15T06:59:53Z +9581,354,2,14212,2.99,2005-08-21T04:29:26Z,2020-02-15T06:59:53Z +9582,354,2,14245,0.99,2005-08-21T05:30:54Z,2020-02-15T06:59:53Z +9583,354,1,14840,5.99,2005-08-22T01:58:42Z,2020-02-15T06:59:53Z +9584,354,2,15956,0.99,2005-08-23T19:19:21Z,2020-02-15T06:59:53Z +9585,354,1,12759,7.98,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9586,354,1,11782,0,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9587,355,1,1110,3.99,2005-05-31T15:22:51Z,2020-02-15T06:59:53Z +9588,355,2,1488,0.99,2005-06-15T21:39:54Z,2020-02-15T06:59:53Z +9589,355,1,1612,2.99,2005-06-16T06:52:05Z,2020-02-15T06:59:53Z +9590,355,1,3567,5.99,2005-07-06T03:09:36Z,2020-02-15T06:59:53Z +9591,355,1,3730,6.99,2005-07-06T11:31:24Z,2020-02-15T06:59:53Z +9592,355,1,5210,4.99,2005-07-09T11:24:19Z,2020-02-15T06:59:53Z +9593,355,1,5564,5.99,2005-07-10T03:23:05Z,2020-02-15T06:59:53Z +9594,355,1,6127,0.99,2005-07-11T08:06:59Z,2020-02-15T06:59:53Z +9595,355,2,6262,6.99,2005-07-11T15:33:24Z,2020-02-15T06:59:53Z +9596,355,1,6437,2.99,2005-07-12T00:20:29Z,2020-02-15T06:59:53Z +9597,355,2,6669,4.99,2005-07-12T11:39:55Z,2020-02-15T06:59:53Z +9598,355,2,7108,4.99,2005-07-27T05:28:32Z,2020-02-15T06:59:53Z +9599,355,2,7477,5.99,2005-07-27T19:11:03Z,2020-02-15T06:59:53Z +9600,355,2,8418,1.99,2005-07-29T06:54:21Z,2020-02-15T06:59:53Z +9601,355,1,10498,0.99,2005-08-01T10:56:48Z,2020-02-15T06:59:53Z +9602,355,2,11471,0.99,2005-08-02T21:49:03Z,2020-02-15T06:59:53Z +9603,355,2,13821,1.99,2005-08-20T13:33:47Z,2020-02-15T06:59:53Z +9604,355,1,15367,3.99,2005-08-22T21:47:53Z,2020-02-15T06:59:53Z +9605,355,2,15531,2.99,2005-08-23T03:52:36Z,2020-02-15T06:59:53Z +9606,355,1,14760,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9607,356,2,1088,4.99,2005-05-31T11:35:13Z,2020-02-15T06:59:53Z +9608,356,1,1410,0.99,2005-06-15T16:59:46Z,2020-02-15T06:59:53Z +9609,356,1,2405,2.99,2005-06-18T16:36:38Z,2020-02-15T06:59:53Z +9610,356,1,2433,4.99,2005-06-18T18:10:17Z,2020-02-15T06:59:53Z +9611,356,2,3829,6.99,2005-07-06T15:59:40Z,2020-02-15T06:59:53Z +9612,356,2,4599,4.99,2005-07-08T06:48:26Z,2020-02-15T06:59:53Z +9613,356,1,5513,0.99,2005-07-10T01:05:41Z,2020-02-15T06:59:53Z +9614,356,1,6593,4.99,2005-07-12T07:21:17Z,2020-02-15T06:59:53Z +9615,356,1,6648,0.99,2005-07-12T10:46:30Z,2020-02-15T06:59:53Z +9616,356,1,7079,2.99,2005-07-27T04:21:58Z,2020-02-15T06:59:53Z +9617,356,1,7758,1.99,2005-07-28T06:23:41Z,2020-02-15T06:59:53Z +9618,356,1,7902,0.99,2005-07-28T11:14:19Z,2020-02-15T06:59:53Z +9619,356,1,8198,3.99,2005-07-28T23:08:05Z,2020-02-15T06:59:53Z +9620,356,1,8975,5.99,2005-07-30T04:10:18Z,2020-02-15T06:59:53Z +9621,356,2,9037,4.99,2005-07-30T06:23:14Z,2020-02-15T06:59:53Z +9622,356,2,9523,3.99,2005-07-31T00:56:09Z,2020-02-15T06:59:53Z +9623,356,2,9883,6.99,2005-07-31T13:53:37Z,2020-02-15T06:59:53Z +9624,356,1,10427,3.99,2005-08-01T08:30:11Z,2020-02-15T06:59:53Z +9625,356,1,10854,4.99,2005-08-02T00:02:06Z,2020-02-15T06:59:53Z +9626,356,1,11535,3.99,2005-08-17T00:39:54Z,2020-02-15T06:59:53Z +9627,356,2,11579,2.99,2005-08-17T01:57:49Z,2020-02-15T06:59:53Z +9628,356,2,12037,4.99,2005-08-17T20:21:35Z,2020-02-15T06:59:53Z +9629,356,2,12876,2.99,2005-08-19T03:12:19Z,2020-02-15T06:59:53Z +9630,356,1,12913,0.99,2005-08-19T04:25:39Z,2020-02-15T06:59:53Z +9631,356,2,13107,4.99,2005-08-19T11:13:58Z,2020-02-15T06:59:53Z +9632,356,2,13442,5.99,2005-08-19T23:50:45Z,2020-02-15T06:59:53Z +9633,356,2,13703,6.99,2005-08-20T09:29:35Z,2020-02-15T06:59:53Z +9634,356,1,15705,4.99,2005-08-23T10:32:52Z,2020-02-15T06:59:53Z +9635,356,2,15754,5.99,2005-08-23T12:43:42Z,2020-02-15T06:59:53Z +9636,356,1,15757,2.99,2005-08-23T12:47:16Z,2020-02-15T06:59:53Z +9637,357,1,144,2.99,2005-05-25T23:49:56Z,2020-02-15T06:59:53Z +9638,357,1,824,4.99,2005-05-29T21:45:32Z,2020-02-15T06:59:53Z +9639,357,2,945,0.99,2005-05-30T15:33:17Z,2020-02-15T06:59:53Z +9640,357,2,1246,5.99,2005-06-15T05:11:19Z,2020-02-15T06:59:53Z +9641,357,1,1788,1.99,2005-06-16T19:47:18Z,2020-02-15T06:59:53Z +9642,357,2,1971,1.99,2005-06-17T09:23:59Z,2020-02-15T06:59:53Z +9643,357,2,2153,6.99,2005-06-17T22:58:04Z,2020-02-15T06:59:53Z +9644,357,1,3865,3.99,2005-07-06T17:46:57Z,2020-02-15T06:59:53Z +9645,357,1,4478,0.99,2005-07-08T00:39:08Z,2020-02-15T06:59:53Z +9646,357,1,5896,0.99,2005-07-10T20:15:56Z,2020-02-15T06:59:53Z +9647,357,1,6288,8.99,2005-07-11T17:01:52Z,2020-02-15T06:59:53Z +9648,357,2,6367,4.99,2005-07-11T21:18:29Z,2020-02-15T06:59:53Z +9649,357,2,6405,2.99,2005-07-11T22:53:12Z,2020-02-15T06:59:53Z +9650,357,1,6839,0.99,2005-07-12T19:03:19Z,2020-02-15T06:59:53Z +9651,357,1,7353,2.99,2005-07-27T14:38:39Z,2020-02-15T06:59:53Z +9652,357,1,7366,5.99,2005-07-27T15:01:17Z,2020-02-15T06:59:53Z +9653,357,2,8041,2.99,2005-07-28T16:39:56Z,2020-02-15T06:59:53Z +9654,357,1,8124,2.99,2005-07-28T19:28:58Z,2020-02-15T06:59:53Z +9655,357,2,9233,3.99,2005-07-30T13:44:15Z,2020-02-15T06:59:53Z +9656,357,2,10391,2.99,2005-08-01T06:49:05Z,2020-02-15T06:59:53Z +9657,357,1,10502,2.99,2005-08-01T11:06:39Z,2020-02-15T06:59:53Z +9658,357,1,10503,6.99,2005-08-01T11:07:44Z,2020-02-15T06:59:53Z +9659,357,2,10764,0.99,2005-08-01T20:32:42Z,2020-02-15T06:59:53Z +9660,357,2,11065,2.99,2005-08-02T06:57:55Z,2020-02-15T06:59:53Z +9661,357,1,14926,0.99,2005-08-22T05:18:44Z,2020-02-15T06:59:53Z +9662,357,2,15869,2.99,2005-08-23T16:22:20Z,2020-02-15T06:59:53Z +9663,358,2,858,4.99,2005-05-30T02:10:32Z,2020-02-15T06:59:53Z +9664,358,1,1455,2.99,2005-06-15T19:51:06Z,2020-02-15T06:59:53Z +9665,358,2,1908,0.99,2005-06-17T05:10:36Z,2020-02-15T06:59:53Z +9666,358,1,2114,5.99,2005-06-17T20:00:25Z,2020-02-15T06:59:53Z +9667,358,1,2721,2.99,2005-06-19T14:53:24Z,2020-02-15T06:59:53Z +9668,358,1,2749,2.99,2005-06-19T16:27:35Z,2020-02-15T06:59:53Z +9669,358,1,3245,2.99,2005-06-21T03:06:11Z,2020-02-15T06:59:53Z +9670,358,1,3753,2.99,2005-07-06T12:34:06Z,2020-02-15T06:59:53Z +9671,358,1,3809,2.99,2005-07-06T15:16:37Z,2020-02-15T06:59:53Z +9672,358,2,5023,5.99,2005-07-09T02:23:16Z,2020-02-15T06:59:53Z +9673,358,1,6362,2.99,2005-07-11T21:09:31Z,2020-02-15T06:59:53Z +9674,358,1,8621,2.99,2005-07-29T13:52:42Z,2020-02-15T06:59:53Z +9675,358,2,9062,0.99,2005-07-30T07:23:17Z,2020-02-15T06:59:53Z +9676,358,1,9568,0.99,2005-07-31T02:37:44Z,2020-02-15T06:59:53Z +9677,358,1,10193,2.99,2005-08-01T00:33:27Z,2020-02-15T06:59:53Z +9678,358,1,10482,4.99,2005-08-01T10:17:47Z,2020-02-15T06:59:53Z +9679,358,2,11149,5.99,2005-08-02T09:51:43Z,2020-02-15T06:59:53Z +9680,358,2,11653,4.99,2005-08-17T05:06:10Z,2020-02-15T06:59:53Z +9681,358,1,12452,6.99,2005-08-18T11:14:35Z,2020-02-15T06:59:53Z +9682,358,1,13197,2.99,2005-08-19T14:44:03Z,2020-02-15T06:59:53Z +9683,358,1,14004,7.99,2005-08-20T20:16:35Z,2020-02-15T06:59:53Z +9684,359,1,284,8.99,2005-05-26T19:21:44Z,2020-02-15T06:59:53Z +9685,359,2,392,2.99,2005-05-27T11:14:42Z,2020-02-15T06:59:53Z +9686,359,1,528,3.99,2005-05-28T04:30:05Z,2020-02-15T06:59:53Z +9687,359,2,1329,4.99,2005-06-15T11:25:06Z,2020-02-15T06:59:53Z +9688,359,2,1770,1.99,2005-06-16T18:07:55Z,2020-02-15T06:59:53Z +9689,359,1,2401,0.99,2005-06-18T16:22:03Z,2020-02-15T06:59:53Z +9690,359,1,2736,4.99,2005-06-19T15:43:20Z,2020-02-15T06:59:53Z +9691,359,2,4830,7.99,2005-07-08T17:56:23Z,2020-02-15T06:59:53Z +9692,359,2,6424,9.99,2005-07-11T23:49:37Z,2020-02-15T06:59:53Z +9693,359,1,6542,2.99,2005-07-12T04:53:49Z,2020-02-15T06:59:53Z +9694,359,2,6741,0.99,2005-07-12T14:24:16Z,2020-02-15T06:59:53Z +9695,359,2,7098,0.99,2005-07-27T05:01:08Z,2020-02-15T06:59:53Z +9696,359,1,7115,0.99,2005-07-27T05:42:58Z,2020-02-15T06:59:53Z +9697,359,1,8174,4.99,2005-07-28T21:36:52Z,2020-02-15T06:59:53Z +9698,359,1,9898,4.99,2005-07-31T14:12:03Z,2020-02-15T06:59:53Z +9699,359,2,10174,5.99,2005-07-31T23:40:08Z,2020-02-15T06:59:53Z +9700,359,1,11032,4.99,2005-08-02T05:53:35Z,2020-02-15T06:59:53Z +9701,359,1,12611,1.99,2005-08-18T17:09:42Z,2020-02-15T06:59:53Z +9702,359,2,13297,2.99,2005-08-19T18:45:49Z,2020-02-15T06:59:53Z +9703,359,1,14258,1.99,2005-08-21T05:56:36Z,2020-02-15T06:59:53Z +9704,359,2,14598,5.99,2005-08-21T17:40:05Z,2020-02-15T06:59:53Z +9705,359,1,15104,2.99,2005-08-22T12:01:16Z,2020-02-15T06:59:53Z +9706,359,1,15148,4.99,2005-08-22T13:59:19Z,2020-02-15T06:59:53Z +9707,359,1,15453,1.99,2005-08-23T01:01:01Z,2020-02-15T06:59:53Z +9708,359,2,15655,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9709,360,1,633,0.99,2005-05-28T17:37:59Z,2020-02-15T06:59:53Z +9710,360,2,777,4.99,2005-05-29T14:07:58Z,2020-02-15T06:59:53Z +9711,360,2,1492,0.99,2005-06-15T21:48:35Z,2020-02-15T06:59:53Z +9712,360,2,2402,6.99,2005-06-18T16:24:45Z,2020-02-15T06:59:53Z +9713,360,2,2541,3.99,2005-06-19T02:08:10Z,2020-02-15T06:59:53Z +9714,360,2,2780,6.99,2005-06-19T18:19:33Z,2020-02-15T06:59:53Z +9715,360,1,4056,4.99,2005-07-07T03:57:36Z,2020-02-15T06:59:53Z +9716,360,1,4487,7.99,2005-07-08T01:20:22Z,2020-02-15T06:59:53Z +9717,360,2,5456,2.99,2005-07-09T22:31:45Z,2020-02-15T06:59:53Z +9718,360,1,5834,1.99,2005-07-10T16:44:12Z,2020-02-15T06:59:53Z +9719,360,1,5995,3.99,2005-07-11T01:15:39Z,2020-02-15T06:59:53Z +9720,360,1,6442,0.99,2005-07-12T00:29:45Z,2020-02-15T06:59:53Z +9721,360,2,6770,5.99,2005-07-12T15:49:40Z,2020-02-15T06:59:53Z +9722,360,1,7251,2.99,2005-07-27T10:44:55Z,2020-02-15T06:59:53Z +9723,360,2,7588,9.99,2005-07-27T23:23:31Z,2020-02-15T06:59:53Z +9724,360,1,7654,4.99,2005-07-28T02:00:14Z,2020-02-15T06:59:53Z +9725,360,2,7908,3.99,2005-07-28T11:32:57Z,2020-02-15T06:59:53Z +9726,360,1,8220,2.99,2005-07-28T23:46:41Z,2020-02-15T06:59:53Z +9727,360,2,8361,2.99,2005-07-29T05:08:57Z,2020-02-15T06:59:53Z +9728,360,1,9283,4.99,2005-07-30T15:25:19Z,2020-02-15T06:59:53Z +9729,360,2,9352,0.99,2005-07-30T18:29:26Z,2020-02-15T06:59:53Z +9730,360,1,9623,2.99,2005-07-31T04:30:02Z,2020-02-15T06:59:53Z +9731,360,2,9659,3.99,2005-07-31T06:02:14Z,2020-02-15T06:59:53Z +9732,360,2,10857,2.99,2005-08-02T00:07:20Z,2020-02-15T06:59:53Z +9733,360,2,11264,6.99,2005-08-02T14:05:18Z,2020-02-15T06:59:53Z +9734,360,2,11553,4.99,2005-08-17T01:04:31Z,2020-02-15T06:59:53Z +9735,360,2,12088,5.99,2005-08-17T22:20:16Z,2020-02-15T06:59:53Z +9736,360,1,12773,5.99,2005-08-18T23:32:19Z,2020-02-15T06:59:53Z +9737,360,2,12795,0.99,2005-08-19T00:21:52Z,2020-02-15T06:59:53Z +9738,360,1,12839,6.99,2005-08-19T01:53:43Z,2020-02-15T06:59:53Z +9739,360,1,12990,4.99,2005-08-19T07:20:39Z,2020-02-15T06:59:53Z +9740,360,2,13894,7.99,2005-08-20T15:55:20Z,2020-02-15T06:59:53Z +9741,360,1,14700,4.99,2005-08-21T20:53:40Z,2020-02-15T06:59:53Z +9742,360,1,15310,2.99,2005-08-22T19:56:41Z,2020-02-15T06:59:53Z +9743,361,1,368,5.99,2005-05-27T07:42:29Z,2020-02-15T06:59:53Z +9744,361,2,1120,4.99,2005-05-31T16:37:14Z,2020-02-15T06:59:53Z +9745,361,2,2353,4.99,2005-06-18T12:53:25Z,2020-02-15T06:59:53Z +9746,361,2,2558,1.99,2005-06-19T03:09:16Z,2020-02-15T06:59:53Z +9747,361,1,2851,2.99,2005-06-19T23:07:03Z,2020-02-15T06:59:53Z +9748,361,2,3303,2.99,2005-06-21T07:34:14Z,2020-02-15T06:59:53Z +9749,361,2,5154,2.99,2005-07-09T08:46:18Z,2020-02-15T06:59:53Z +9750,361,1,6152,0.99,2005-07-11T09:25:52Z,2020-02-15T06:59:53Z +9751,361,2,6829,4.99,2005-07-12T18:38:59Z,2020-02-15T06:59:53Z +9752,361,2,6911,0.99,2005-07-12T22:14:34Z,2020-02-15T06:59:53Z +9753,361,1,6914,1.99,2005-07-12T22:26:56Z,2020-02-15T06:59:53Z +9754,361,1,7538,2.99,2005-07-27T21:38:04Z,2020-02-15T06:59:53Z +9755,361,2,7712,2.99,2005-07-28T04:29:53Z,2020-02-15T06:59:53Z +9756,361,2,8189,4.99,2005-07-28T22:36:26Z,2020-02-15T06:59:53Z +9757,361,1,10145,1.99,2005-07-31T22:15:13Z,2020-02-15T06:59:53Z +9758,361,1,10151,4.99,2005-07-31T22:22:37Z,2020-02-15T06:59:53Z +9759,361,1,10414,0.99,2005-08-01T08:03:55Z,2020-02-15T06:59:53Z +9760,361,2,10975,0.99,2005-08-02T04:11:25Z,2020-02-15T06:59:53Z +9761,361,2,11031,5.99,2005-08-02T05:52:58Z,2020-02-15T06:59:53Z +9762,361,2,11243,5.99,2005-08-02T13:32:48Z,2020-02-15T06:59:53Z +9763,361,1,11327,2.99,2005-08-02T16:40:47Z,2020-02-15T06:59:53Z +9764,361,1,11991,3.99,2005-08-17T18:27:08Z,2020-02-15T06:59:53Z +9765,361,2,12626,5.99,2005-08-18T17:36:45Z,2020-02-15T06:59:53Z +9766,361,2,12690,2.99,2005-08-18T20:06:57Z,2020-02-15T06:59:53Z +9767,361,1,13135,0.99,2005-08-19T12:22:52Z,2020-02-15T06:59:53Z +9768,361,2,14031,0.99,2005-08-20T21:24:24Z,2020-02-15T06:59:53Z +9769,361,1,14422,0.99,2005-08-21T11:21:46Z,2020-02-15T06:59:53Z +9770,361,1,15759,6.99,2005-08-23T12:47:37Z,2020-02-15T06:59:53Z +9771,361,2,15935,2.99,2005-08-23T18:41:11Z,2020-02-15T06:59:53Z +9772,361,1,13298,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9773,361,1,14769,0,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9774,362,2,1035,4.99,2005-05-31T05:01:09Z,2020-02-15T06:59:53Z +9775,362,1,1429,2.99,2005-06-15T18:24:10Z,2020-02-15T06:59:53Z +9776,362,1,1529,2.99,2005-06-16T00:37:35Z,2020-02-15T06:59:53Z +9777,362,1,1615,2.99,2005-06-16T07:00:28Z,2020-02-15T06:59:53Z +9778,362,2,3197,2.99,2005-06-21T00:07:23Z,2020-02-15T06:59:53Z +9779,362,2,3393,2.99,2005-06-21T15:14:27Z,2020-02-15T06:59:53Z +9780,362,2,4646,8.99,2005-07-08T09:23:26Z,2020-02-15T06:59:53Z +9781,362,1,5227,4.99,2005-07-09T12:16:39Z,2020-02-15T06:59:53Z +9782,362,2,5563,1.99,2005-07-10T03:21:02Z,2020-02-15T06:59:53Z +9783,362,2,5690,5.99,2005-07-10T09:26:49Z,2020-02-15T06:59:53Z +9784,362,1,6204,4.99,2005-07-11T12:29:22Z,2020-02-15T06:59:53Z +9785,362,2,6576,4.99,2005-07-12T06:13:41Z,2020-02-15T06:59:53Z +9786,362,1,6981,4.99,2005-07-27T00:51:38Z,2020-02-15T06:59:53Z +9787,362,1,7172,1.99,2005-07-27T07:59:16Z,2020-02-15T06:59:53Z +9788,362,1,7485,2.99,2005-07-27T19:29:09Z,2020-02-15T06:59:53Z +9789,362,1,8081,2.99,2005-07-28T18:06:46Z,2020-02-15T06:59:53Z +9790,362,2,8325,2.99,2005-07-29T03:57:27Z,2020-02-15T06:59:53Z +9791,362,2,8364,4.99,2005-07-29T05:10:31Z,2020-02-15T06:59:53Z +9792,362,1,8662,0.99,2005-07-29T15:31:33Z,2020-02-15T06:59:53Z +9793,362,1,8714,2.99,2005-07-29T17:31:40Z,2020-02-15T06:59:53Z +9794,362,1,9784,4.99,2005-07-31T10:21:32Z,2020-02-15T06:59:53Z +9795,362,2,10546,3.99,2005-08-01T12:44:17Z,2020-02-15T06:59:53Z +9796,362,2,12244,4.99,2005-08-18T03:39:11Z,2020-02-15T06:59:53Z +9797,362,1,12854,6.99,2005-08-19T02:18:51Z,2020-02-15T06:59:53Z +9798,362,1,13603,6.99,2005-08-20T06:02:48Z,2020-02-15T06:59:53Z +9799,362,2,14051,6.99,2005-08-20T22:09:51Z,2020-02-15T06:59:53Z +9800,362,2,14129,2.99,2005-08-21T01:42:15Z,2020-02-15T06:59:53Z +9801,362,2,14336,4.99,2005-08-21T08:33:42Z,2020-02-15T06:59:53Z +9802,362,1,14752,5.99,2005-08-21T23:11:42Z,2020-02-15T06:59:53Z +9803,362,1,14759,11.99,2005-08-21T23:28:58Z,2020-02-15T06:59:53Z +9804,362,1,14808,4.99,2005-08-22T00:58:35Z,2020-02-15T06:59:53Z +9805,362,1,14950,2.99,2005-08-22T06:17:12Z,2020-02-15T06:59:53Z +9806,363,1,733,3.99,2005-05-29T07:35:21Z,2020-02-15T06:59:53Z +9807,363,2,1426,4.99,2005-06-15T18:16:24Z,2020-02-15T06:59:53Z +9808,363,2,1569,4.99,2005-06-16T03:19:09Z,2020-02-15T06:59:53Z +9809,363,1,1847,4.99,2005-06-17T00:05:22Z,2020-02-15T06:59:53Z +9810,363,1,2540,4.99,2005-06-19T02:04:48Z,2020-02-15T06:59:53Z +9811,363,2,3281,2.99,2005-06-21T06:08:47Z,2020-02-15T06:59:53Z +9812,363,1,3726,3.99,2005-07-06T11:15:49Z,2020-02-15T06:59:53Z +9813,363,2,5687,3.99,2005-07-10T09:07:19Z,2020-02-15T06:59:53Z +9814,363,1,5758,6.99,2005-07-10T12:42:43Z,2020-02-15T06:59:53Z +9815,363,2,6140,4.99,2005-07-11T08:40:47Z,2020-02-15T06:59:53Z +9816,363,2,6705,4.99,2005-07-12T12:53:11Z,2020-02-15T06:59:53Z +9817,363,2,6821,2.99,2005-07-12T18:22:10Z,2020-02-15T06:59:53Z +9818,363,2,6878,4.99,2005-07-12T20:37:13Z,2020-02-15T06:59:53Z +9819,363,1,7256,2.99,2005-07-27T10:58:32Z,2020-02-15T06:59:53Z +9820,363,2,7708,4.99,2005-07-28T04:19:15Z,2020-02-15T06:59:53Z +9821,363,2,8121,2.99,2005-07-28T19:25:45Z,2020-02-15T06:59:53Z +9822,363,2,8522,3.99,2005-07-29T10:16:19Z,2020-02-15T06:59:53Z +9823,363,2,8804,2.99,2005-07-29T21:28:19Z,2020-02-15T06:59:53Z +9824,363,2,8841,4.99,2005-07-29T22:56:07Z,2020-02-15T06:59:53Z +9825,363,1,9968,4.99,2005-07-31T16:32:16Z,2020-02-15T06:59:53Z +9826,363,1,9977,8.99,2005-07-31T16:58:42Z,2020-02-15T06:59:53Z +9827,363,1,10339,6.99,2005-08-01T05:05:50Z,2020-02-15T06:59:53Z +9828,363,2,12189,5.99,2005-08-18T01:51:44Z,2020-02-15T06:59:53Z +9829,363,2,12760,4.99,2005-08-18T23:03:19Z,2020-02-15T06:59:53Z +9830,363,1,13706,9.99,2005-08-20T09:32:56Z,2020-02-15T06:59:53Z +9831,363,1,14694,2.99,2005-08-21T20:46:42Z,2020-02-15T06:59:53Z +9832,363,1,14983,5.99,2005-08-22T07:32:23Z,2020-02-15T06:59:53Z +9833,363,2,15279,4.99,2005-08-22T19:08:49Z,2020-02-15T06:59:53Z +9834,363,1,15335,4.99,2005-08-22T20:44:55Z,2020-02-15T06:59:53Z +9835,364,1,462,5.99,2005-05-27T20:10:36Z,2020-02-15T06:59:53Z +9836,364,1,1722,2.99,2005-06-16T15:12:52Z,2020-02-15T06:59:53Z +9837,364,2,2442,2.99,2005-06-18T18:49:18Z,2020-02-15T06:59:53Z +9838,364,2,2606,4.99,2005-06-19T06:51:32Z,2020-02-15T06:59:53Z +9839,364,2,2857,4.99,2005-06-19T23:15:15Z,2020-02-15T06:59:53Z +9840,364,2,2962,3.99,2005-06-20T07:31:55Z,2020-02-15T06:59:53Z +9841,364,1,3678,4.99,2005-07-06T09:15:15Z,2020-02-15T06:59:53Z +9842,364,2,3961,4.99,2005-07-06T22:11:43Z,2020-02-15T06:59:53Z +9843,364,1,4047,0.99,2005-07-07T03:28:49Z,2020-02-15T06:59:53Z +9844,364,2,4689,4.99,2005-07-08T11:03:47Z,2020-02-15T06:59:53Z +9845,364,1,5872,10.99,2005-07-10T18:54:05Z,2020-02-15T06:59:53Z +9846,364,1,7272,2.99,2005-07-27T11:30:20Z,2020-02-15T06:59:53Z +9847,364,2,9266,4.99,2005-07-30T14:59:01Z,2020-02-15T06:59:53Z +9848,364,1,10092,0.99,2005-07-31T20:28:09Z,2020-02-15T06:59:53Z +9849,364,2,10290,5.99,2005-08-01T03:39:50Z,2020-02-15T06:59:53Z +9850,364,2,11932,4.99,2005-08-17T16:36:12Z,2020-02-15T06:59:53Z +9851,364,1,12557,4.99,2005-08-18T14:51:03Z,2020-02-15T06:59:53Z +9852,364,1,12761,1.99,2005-08-18T23:05:22Z,2020-02-15T06:59:53Z +9853,364,2,12912,3.99,2005-08-19T04:24:35Z,2020-02-15T06:59:53Z +9854,364,1,13698,4.99,2005-08-20T09:24:26Z,2020-02-15T06:59:53Z +9855,364,2,13936,0.99,2005-08-20T17:22:35Z,2020-02-15T06:59:53Z +9856,364,2,14293,4.99,2005-08-21T07:06:47Z,2020-02-15T06:59:53Z +9857,364,1,15242,0.99,2005-08-22T17:48:10Z,2020-02-15T06:59:53Z +9858,365,2,120,5.99,2005-05-25T19:37:47Z,2020-02-15T06:59:53Z +9859,365,1,231,4.99,2005-05-26T11:31:59Z,2020-02-15T06:59:53Z +9860,365,1,1303,1.99,2005-06-15T09:55:57Z,2020-02-15T06:59:53Z +9861,365,1,1578,6.99,2005-06-16T04:08:16Z,2020-02-15T06:59:53Z +9862,365,1,1983,4.99,2005-06-17T10:22:13Z,2020-02-15T06:59:53Z +9863,365,1,2525,2.99,2005-06-19T00:48:22Z,2020-02-15T06:59:53Z +9864,365,2,3156,0.99,2005-06-20T21:03:46Z,2020-02-15T06:59:53Z +9865,365,1,4583,1.99,2005-07-08T06:09:44Z,2020-02-15T06:59:53Z +9866,365,1,6604,4.99,2005-07-12T07:57:45Z,2020-02-15T06:59:53Z +9867,365,1,7488,7.99,2005-07-27T19:36:15Z,2020-02-15T06:59:53Z +9868,365,2,7634,4.99,2005-07-28T01:07:01Z,2020-02-15T06:59:53Z +9869,365,1,8168,4.99,2005-07-28T21:28:32Z,2020-02-15T06:59:53Z +9870,365,2,8782,4.99,2005-07-29T20:29:34Z,2020-02-15T06:59:53Z +9871,365,1,8856,3.99,2005-07-29T23:42:00Z,2020-02-15T06:59:53Z +9872,365,1,9122,2.99,2005-07-30T09:36:52Z,2020-02-15T06:59:53Z +9873,365,2,9184,4.99,2005-07-30T12:10:19Z,2020-02-15T06:59:53Z +9874,365,2,9540,2.99,2005-07-31T01:40:06Z,2020-02-15T06:59:53Z +9875,365,2,10717,2.99,2005-08-01T18:53:53Z,2020-02-15T06:59:53Z +9876,365,2,12322,2.99,2005-08-18T06:35:28Z,2020-02-15T06:59:53Z +9877,365,2,12375,4.99,2005-08-18T08:20:08Z,2020-02-15T06:59:53Z +9878,365,1,12804,8.99,2005-08-19T00:33:15Z,2020-02-15T06:59:53Z +9879,365,1,13619,2.99,2005-08-20T06:39:26Z,2020-02-15T06:59:53Z +9880,365,2,14463,6.99,2005-08-21T12:51:49Z,2020-02-15T06:59:53Z +9881,366,2,911,6.99,2005-05-30T10:50:22Z,2020-02-15T06:59:53Z +9882,366,2,1401,1.99,2005-06-15T16:30:22Z,2020-02-15T06:59:53Z +9883,366,2,2214,0.99,2005-06-18T02:44:37Z,2020-02-15T06:59:53Z +9884,366,2,3632,4.99,2005-07-06T06:38:21Z,2020-02-15T06:59:53Z +9885,366,1,3834,2.99,2005-07-06T16:19:56Z,2020-02-15T06:59:53Z +9886,366,2,4276,2.99,2005-07-07T14:50:59Z,2020-02-15T06:59:53Z +9887,366,1,4569,5.99,2005-07-08T05:30:51Z,2020-02-15T06:59:53Z +9888,366,2,5364,0.99,2005-07-09T18:24:48Z,2020-02-15T06:59:53Z +9889,366,1,6112,6.99,2005-07-11T07:28:05Z,2020-02-15T06:59:53Z +9890,366,1,6366,4.99,2005-07-11T21:18:16Z,2020-02-15T06:59:53Z +9891,366,2,6533,6.99,2005-07-12T04:39:38Z,2020-02-15T06:59:53Z +9892,366,2,6738,5.99,2005-07-12T14:17:55Z,2020-02-15T06:59:53Z +9893,366,1,6842,0.99,2005-07-12T19:07:55Z,2020-02-15T06:59:53Z +9894,366,2,6971,4.99,2005-07-27T00:26:17Z,2020-02-15T06:59:53Z +9895,366,1,7344,1.99,2005-07-27T14:29:28Z,2020-02-15T06:59:53Z +9896,366,1,7562,2.99,2005-07-27T22:25:15Z,2020-02-15T06:59:53Z +9897,366,2,7602,4.99,2005-07-27T23:48:35Z,2020-02-15T06:59:53Z +9898,366,1,7805,6.99,2005-07-28T07:56:41Z,2020-02-15T06:59:53Z +9899,366,2,8169,4.99,2005-07-28T21:29:46Z,2020-02-15T06:59:53Z +9900,366,2,8260,1.99,2005-07-29T01:11:00Z,2020-02-15T06:59:53Z +9901,366,2,8928,2.99,2005-07-30T02:18:19Z,2020-02-15T06:59:53Z +9902,366,1,9316,6.99,2005-07-30T17:11:58Z,2020-02-15T06:59:53Z +9903,366,1,10198,2.99,2005-08-01T00:36:15Z,2020-02-15T06:59:53Z +9904,366,1,10384,4.99,2005-08-01T06:39:14Z,2020-02-15T06:59:53Z +9905,366,2,11337,2.99,2005-08-02T16:59:09Z,2020-02-15T06:59:53Z +9906,366,2,11340,5.99,2005-08-02T17:05:43Z,2020-02-15T06:59:53Z +9907,366,2,12413,2.99,2005-08-18T09:50:34Z,2020-02-15T06:59:53Z +9908,366,1,12608,4.99,2005-08-18T17:05:15Z,2020-02-15T06:59:53Z +9909,366,2,13563,0.99,2005-08-20T04:33:31Z,2020-02-15T06:59:53Z +9910,366,1,13857,2.99,2005-08-20T14:50:06Z,2020-02-15T06:59:53Z +9911,366,1,14147,4.99,2005-08-21T02:14:03Z,2020-02-15T06:59:53Z +9912,366,1,14290,4.99,2005-08-21T07:02:59Z,2020-02-15T06:59:53Z +9913,366,1,14390,2.99,2005-08-21T10:15:38Z,2020-02-15T06:59:53Z +9914,366,1,14717,2.99,2005-08-21T21:30:39Z,2020-02-15T06:59:53Z +9915,366,1,14906,6.99,2005-08-22T04:38:18Z,2020-02-15T06:59:53Z +9916,366,1,15514,2.99,2005-08-23T03:03:40Z,2020-02-15T06:59:53Z +9917,366,1,13421,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +9918,367,1,939,0.99,2005-05-30T14:49:34Z,2020-02-15T06:59:53Z +9919,367,1,1089,2.99,2005-05-31T11:38:29Z,2020-02-15T06:59:53Z +9920,367,1,3078,0.99,2005-06-20T15:09:48Z,2020-02-15T06:59:53Z +9921,367,1,4251,8.99,2005-07-07T14:11:55Z,2020-02-15T06:59:53Z +9922,367,2,5490,4.99,2005-07-10T00:09:11Z,2020-02-15T06:59:53Z +9923,367,2,5538,4.99,2005-07-10T02:39:40Z,2020-02-15T06:59:53Z +9924,367,2,5839,2.99,2005-07-10T17:08:30Z,2020-02-15T06:59:53Z +9925,367,2,6228,2.99,2005-07-11T13:58:36Z,2020-02-15T06:59:53Z +9926,367,1,6716,0.99,2005-07-12T13:34:58Z,2020-02-15T06:59:53Z +9927,367,2,6835,5.99,2005-07-12T18:58:03Z,2020-02-15T06:59:53Z +9928,367,2,8490,0.99,2005-07-29T08:59:25Z,2020-02-15T06:59:53Z +9929,367,1,9030,3.99,2005-07-30T06:05:38Z,2020-02-15T06:59:53Z +9930,367,1,9430,4.99,2005-07-30T21:20:13Z,2020-02-15T06:59:53Z +9931,367,1,9912,4.99,2005-07-31T14:49:04Z,2020-02-15T06:59:53Z +9932,367,2,10344,4.99,2005-08-01T05:18:23Z,2020-02-15T06:59:53Z +9933,367,1,12152,4.99,2005-08-18T00:21:35Z,2020-02-15T06:59:53Z +9934,367,2,12362,0.99,2005-08-18T07:48:05Z,2020-02-15T06:59:53Z +9935,367,2,12373,8.99,2005-08-18T08:07:25Z,2020-02-15T06:59:53Z +9936,367,2,12911,6.99,2005-08-19T04:24:10Z,2020-02-15T06:59:53Z +9937,367,2,13235,4.99,2005-08-19T16:17:53Z,2020-02-15T06:59:53Z +9938,367,1,14413,6.99,2005-08-21T11:06:33Z,2020-02-15T06:59:53Z +9939,367,1,14481,10.99,2005-08-21T13:41:14Z,2020-02-15T06:59:53Z +9940,368,1,64,5.99,2005-05-25T09:21:29Z,2020-02-15T06:59:53Z +9941,368,1,125,5.99,2005-05-25T20:48:50Z,2020-02-15T06:59:53Z +9942,368,1,836,2.99,2005-05-29T23:56:42Z,2020-02-15T06:59:53Z +9943,368,1,949,2.99,2005-05-30T15:50:39Z,2020-02-15T06:59:53Z +9944,368,1,1186,0.99,2005-06-15T00:56:45Z,2020-02-15T06:59:53Z +9945,368,1,1513,9.99,2005-06-15T22:53:30Z,2020-02-15T06:59:53Z +9946,368,1,2531,4.99,2005-06-19T01:20:49Z,2020-02-15T06:59:53Z +9947,368,1,2694,4.99,2005-06-19T13:17:21Z,2020-02-15T06:59:53Z +9948,368,1,2744,4.99,2005-06-19T16:20:40Z,2020-02-15T06:59:53Z +9949,368,2,3275,4.99,2005-06-21T05:33:04Z,2020-02-15T06:59:53Z +9950,368,2,3608,4.99,2005-07-06T05:35:39Z,2020-02-15T06:59:53Z +9951,368,2,4066,0.99,2005-07-07T04:34:09Z,2020-02-15T06:59:53Z +9952,368,1,4584,0.99,2005-07-08T06:11:02Z,2020-02-15T06:59:53Z +9953,368,2,4913,8.99,2005-07-08T21:27:48Z,2020-02-15T06:59:53Z +9954,368,1,6124,4.99,2005-07-11T08:02:32Z,2020-02-15T06:59:53Z +9955,368,1,6154,5.99,2005-07-11T09:32:19Z,2020-02-15T06:59:53Z +9956,368,1,6681,2.99,2005-07-12T12:04:12Z,2020-02-15T06:59:53Z +9957,368,2,7571,4.99,2005-07-27T22:43:42Z,2020-02-15T06:59:53Z +9958,368,1,8045,0.99,2005-07-28T16:49:38Z,2020-02-15T06:59:53Z +9959,368,2,8226,2.99,2005-07-29T00:01:04Z,2020-02-15T06:59:53Z +9960,368,1,9400,5.99,2005-07-30T20:15:58Z,2020-02-15T06:59:53Z +9961,368,1,9833,6.99,2005-07-31T12:05:01Z,2020-02-15T06:59:53Z +9962,368,2,10730,8.99,2005-08-01T19:21:42Z,2020-02-15T06:59:53Z +9963,368,2,10848,1.99,2005-08-01T23:50:22Z,2020-02-15T06:59:53Z +9964,368,1,11844,0.99,2005-08-17T13:16:04Z,2020-02-15T06:59:53Z +9965,368,2,12319,2.99,2005-08-18T06:26:45Z,2020-02-15T06:59:53Z +9966,368,1,12796,4.99,2005-08-19T00:22:24Z,2020-02-15T06:59:53Z +9967,368,2,13189,8.99,2005-08-19T14:27:16Z,2020-02-15T06:59:53Z +9968,368,2,13280,2.99,2005-08-19T18:02:51Z,2020-02-15T06:59:53Z +9969,368,2,13378,0.99,2005-08-19T21:33:35Z,2020-02-15T06:59:53Z +9970,368,2,13781,7.99,2005-08-20T12:06:45Z,2020-02-15T06:59:53Z +9971,368,2,13963,1.99,2005-08-20T18:20:18Z,2020-02-15T06:59:53Z +9972,368,1,14393,7.99,2005-08-21T10:22:51Z,2020-02-15T06:59:53Z +9973,368,1,15353,2.99,2005-08-22T21:18:08Z,2020-02-15T06:59:53Z +9974,368,1,15437,2.99,2005-08-23T00:31:09Z,2020-02-15T06:59:53Z +9975,369,1,31,4.99,2005-05-25T04:05:17Z,2020-02-15T06:59:53Z +9976,369,1,294,4.99,2005-05-26T20:29:57Z,2020-02-15T06:59:53Z +9977,369,2,854,0.99,2005-05-30T01:56:11Z,2020-02-15T06:59:53Z +9978,369,2,913,7.99,2005-05-30T11:04:58Z,2020-02-15T06:59:53Z +9979,369,1,1224,0.99,2005-06-15T03:44:25Z,2020-02-15T06:59:53Z +9980,369,1,3490,6.99,2005-07-05T23:37:13Z,2020-02-15T06:59:53Z +9981,369,2,3903,2.99,2005-07-06T19:27:32Z,2020-02-15T06:59:53Z +9982,369,2,4859,4.99,2005-07-08T18:54:04Z,2020-02-15T06:59:53Z +9983,369,1,5043,1.99,2005-07-09T03:25:18Z,2020-02-15T06:59:53Z +9984,369,2,5496,7.99,2005-07-10T00:20:23Z,2020-02-15T06:59:53Z +9985,369,2,5561,2.99,2005-07-10T03:15:24Z,2020-02-15T06:59:53Z +9986,369,1,8236,2.99,2005-07-29T00:27:04Z,2020-02-15T06:59:53Z +9987,369,2,8826,2.99,2005-07-29T22:30:16Z,2020-02-15T06:59:53Z +9988,369,2,9032,4.99,2005-07-30T06:06:54Z,2020-02-15T06:59:53Z +9989,369,1,9089,0.99,2005-07-30T08:23:39Z,2020-02-15T06:59:53Z +9990,369,2,9543,0.99,2005-07-31T01:43:34Z,2020-02-15T06:59:53Z +9991,369,1,9973,4.99,2005-07-31T16:49:31Z,2020-02-15T06:59:53Z +9992,369,1,10299,0.99,2005-08-01T04:08:04Z,2020-02-15T06:59:53Z +9993,369,2,10359,3.99,2005-08-01T05:52:21Z,2020-02-15T06:59:53Z +9994,369,2,10713,2.99,2005-08-01T18:50:05Z,2020-02-15T06:59:53Z +9995,369,1,11084,4.99,2005-08-02T07:34:19Z,2020-02-15T06:59:53Z +9996,369,2,11388,1.99,2005-08-02T18:35:55Z,2020-02-15T06:59:53Z +9997,369,1,12521,0.99,2005-08-18T13:43:07Z,2020-02-15T06:59:53Z +9998,369,2,14684,5.99,2005-08-21T20:28:26Z,2020-02-15T06:59:53Z +9999,369,1,13898,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10000,370,2,1190,6.99,2005-06-15T01:05:32Z,2020-02-15T06:59:53Z +10001,370,2,4400,7.99,2005-07-07T21:22:26Z,2020-02-15T06:59:53Z +10002,370,2,6714,0.99,2005-07-12T13:29:06Z,2020-02-15T06:59:53Z +10003,370,1,6968,0.99,2005-07-27T00:16:45Z,2020-02-15T06:59:53Z +10004,370,2,7152,7.99,2005-07-27T07:15:01Z,2020-02-15T06:59:53Z +10005,370,1,7226,6.99,2005-07-27T09:47:53Z,2020-02-15T06:59:53Z +10006,370,2,7797,0.99,2005-07-28T07:41:07Z,2020-02-15T06:59:53Z +10007,370,2,8258,0.99,2005-07-29T01:03:42Z,2020-02-15T06:59:53Z +10008,370,2,10095,0.99,2005-07-31T20:38:35Z,2020-02-15T06:59:53Z +10009,370,1,10336,4.99,2005-08-01T04:59:53Z,2020-02-15T06:59:53Z +10010,370,1,11540,1.99,2005-08-17T00:48:03Z,2020-02-15T06:59:53Z +10011,370,2,11925,0.99,2005-08-17T16:23:04Z,2020-02-15T06:59:53Z +10012,370,1,12339,4.99,2005-08-18T07:05:06Z,2020-02-15T06:59:53Z +10013,370,1,13039,0.99,2005-08-19T08:55:19Z,2020-02-15T06:59:53Z +10014,370,1,14602,3.99,2005-08-21T17:48:49Z,2020-02-15T06:59:53Z +10015,370,2,14786,2.99,2005-08-22T00:24:42Z,2020-02-15T06:59:53Z +10016,370,2,15368,3.99,2005-08-22T21:57:15Z,2020-02-15T06:59:53Z +10017,370,1,15626,4.99,2005-08-23T07:25:34Z,2020-02-15T06:59:53Z +10018,370,1,15982,5.99,2005-08-23T20:13:31Z,2020-02-15T06:59:53Z +10019,371,1,26,3.99,2005-05-25T03:36:50Z,2020-02-15T06:59:53Z +10020,371,2,286,6.99,2005-05-26T19:44:51Z,2020-02-15T06:59:53Z +10021,371,2,381,4.99,2005-05-27T09:43:25Z,2020-02-15T06:59:53Z +10022,371,1,384,5.99,2005-05-27T10:18:20Z,2020-02-15T06:59:53Z +10023,371,1,825,0.99,2005-05-29T21:49:41Z,2020-02-15T06:59:53Z +10024,371,1,829,2.99,2005-05-29T22:16:42Z,2020-02-15T06:59:53Z +10025,371,2,1212,2.99,2005-06-15T03:03:33Z,2020-02-15T06:59:53Z +10026,371,1,1218,1.99,2005-06-15T03:24:44Z,2020-02-15T06:59:53Z +10027,371,1,1573,6.99,2005-06-16T03:31:39Z,2020-02-15T06:59:53Z +10028,371,2,1675,5.99,2005-06-16T11:04:47Z,2020-02-15T06:59:53Z +10029,371,2,2837,0.99,2005-06-19T22:03:50Z,2020-02-15T06:59:53Z +10030,371,1,3176,3.99,2005-06-20T22:31:54Z,2020-02-15T06:59:53Z +10031,371,2,3396,0.99,2005-06-21T15:23:08Z,2020-02-15T06:59:53Z +10032,371,2,4115,8.99,2005-07-07T06:52:23Z,2020-02-15T06:59:53Z +10033,371,1,4612,1.99,2005-07-08T07:40:44Z,2020-02-15T06:59:53Z +10034,371,1,5171,4.99,2005-07-09T09:26:55Z,2020-02-15T06:59:53Z +10035,371,2,5614,0.99,2005-07-10T05:16:56Z,2020-02-15T06:59:53Z +10036,371,1,6000,2.99,2005-07-11T01:23:06Z,2020-02-15T06:59:53Z +10037,371,1,6460,1.99,2005-07-12T01:13:44Z,2020-02-15T06:59:53Z +10038,371,1,6922,0.99,2005-07-12T22:39:48Z,2020-02-15T06:59:53Z +10039,371,1,7408,3.99,2005-07-27T16:31:40Z,2020-02-15T06:59:53Z +10040,371,1,8138,4.99,2005-07-28T20:12:17Z,2020-02-15T06:59:53Z +10041,371,1,9008,4.99,2005-07-30T05:10:26Z,2020-02-15T06:59:53Z +10042,371,1,9117,8.99,2005-07-30T09:20:59Z,2020-02-15T06:59:53Z +10043,371,1,9635,0.99,2005-07-31T05:12:27Z,2020-02-15T06:59:53Z +10044,371,1,11086,10.99,2005-08-02T07:38:44Z,2020-02-15T06:59:53Z +10045,371,2,12397,9.99,2005-08-18T09:12:52Z,2020-02-15T06:59:53Z +10046,371,2,12584,7.99,2005-08-18T15:51:36Z,2020-02-15T06:59:53Z +10047,371,1,13028,2.99,2005-08-19T08:27:23Z,2020-02-15T06:59:53Z +10048,371,2,13143,3.99,2005-08-19T12:44:38Z,2020-02-15T06:59:53Z +10049,371,1,13191,4.99,2005-08-19T14:28:48Z,2020-02-15T06:59:53Z +10050,371,2,13953,4.99,2005-08-20T18:00:37Z,2020-02-15T06:59:53Z +10051,371,1,14384,2.99,2005-08-21T10:02:37Z,2020-02-15T06:59:53Z +10052,371,1,15786,0.99,2005-08-23T13:48:34Z,2020-02-15T06:59:53Z +10053,371,1,15824,2.99,2005-08-23T15:09:17Z,2020-02-15T06:59:53Z +10054,372,1,617,2.99,2005-05-28T15:49:14Z,2020-02-15T06:59:53Z +10055,372,1,638,2.99,2005-05-28T18:24:43Z,2020-02-15T06:59:53Z +10056,372,1,2315,2.99,2005-06-18T09:03:39Z,2020-02-15T06:59:53Z +10057,372,1,2959,4.99,2005-06-20T07:07:54Z,2020-02-15T06:59:53Z +10058,372,1,3283,3.99,2005-06-21T06:19:07Z,2020-02-15T06:59:53Z +10059,372,1,5229,4.99,2005-07-09T12:30:18Z,2020-02-15T06:59:53Z +10060,372,1,5314,2.99,2005-07-09T16:05:28Z,2020-02-15T06:59:53Z +10061,372,1,5352,2.99,2005-07-09T17:54:58Z,2020-02-15T06:59:53Z +10062,372,1,5501,6.99,2005-07-10T00:33:48Z,2020-02-15T06:59:53Z +10063,372,2,5914,7.99,2005-07-10T21:01:12Z,2020-02-15T06:59:53Z +10064,372,2,6692,4.99,2005-07-12T12:35:39Z,2020-02-15T06:59:53Z +10065,372,1,7190,4.99,2005-07-27T08:36:01Z,2020-02-15T06:59:53Z +10066,372,2,7234,5.99,2005-07-27T10:08:45Z,2020-02-15T06:59:53Z +10067,372,2,7735,4.99,2005-07-28T05:09:56Z,2020-02-15T06:59:53Z +10068,372,2,8009,7.99,2005-07-28T15:25:58Z,2020-02-15T06:59:53Z +10069,372,1,8059,2.99,2005-07-28T17:09:59Z,2020-02-15T06:59:53Z +10070,372,1,8358,0.99,2005-07-29T05:00:58Z,2020-02-15T06:59:53Z +10071,372,1,8724,0.99,2005-07-29T18:05:21Z,2020-02-15T06:59:53Z +10072,372,1,8755,2.99,2005-07-29T19:18:31Z,2020-02-15T06:59:53Z +10073,372,2,8837,8.99,2005-07-29T22:49:00Z,2020-02-15T06:59:53Z +10074,372,1,9128,5.99,2005-07-30T09:51:14Z,2020-02-15T06:59:53Z +10075,372,2,11134,10.99,2005-08-02T09:19:22Z,2020-02-15T06:59:53Z +10076,372,2,11438,3.99,2005-08-02T20:21:08Z,2020-02-15T06:59:53Z +10077,372,2,11555,4.99,2005-08-17T01:08:59Z,2020-02-15T06:59:53Z +10078,372,1,12224,0.99,2005-08-18T02:59:09Z,2020-02-15T06:59:53Z +10079,372,1,12714,3.99,2005-08-18T21:08:01Z,2020-02-15T06:59:53Z +10080,372,2,13402,4.99,2005-08-19T22:16:53Z,2020-02-15T06:59:53Z +10081,372,2,13871,8.99,2005-08-20T15:10:13Z,2020-02-15T06:59:53Z +10082,372,2,14037,9.99,2005-08-20T21:35:58Z,2020-02-15T06:59:53Z +10083,372,1,14211,4.99,2005-08-21T04:29:11Z,2020-02-15T06:59:53Z +10084,372,1,14331,2.99,2005-08-21T08:29:38Z,2020-02-15T06:59:53Z +10085,372,1,14770,1.99,2005-08-21T23:47:16Z,2020-02-15T06:59:53Z +10086,372,2,15041,0.99,2005-08-22T09:43:18Z,2020-02-15T06:59:53Z +10087,372,1,15563,2.99,2005-08-23T05:08:58Z,2020-02-15T06:59:53Z +10088,373,2,257,4.99,2005-05-26T15:27:05Z,2020-02-15T06:59:53Z +10089,373,1,1472,6.99,2005-06-15T20:54:55Z,2020-02-15T06:59:53Z +10090,373,1,3161,2.99,2005-06-20T21:21:01Z,2020-02-15T06:59:53Z +10091,373,2,3609,2.99,2005-07-06T05:36:22Z,2020-02-15T06:59:53Z +10092,373,2,3667,4.99,2005-07-06T08:36:34Z,2020-02-15T06:59:53Z +10093,373,1,4325,7.99,2005-07-07T17:59:24Z,2020-02-15T06:59:53Z +10094,373,1,5120,5.99,2005-07-09T07:14:23Z,2020-02-15T06:59:53Z +10095,373,1,6202,3.99,2005-07-11T12:24:25Z,2020-02-15T06:59:53Z +10096,373,2,6311,0.99,2005-07-11T18:18:52Z,2020-02-15T06:59:53Z +10097,373,1,6944,4.99,2005-07-26T23:34:02Z,2020-02-15T06:59:53Z +10098,373,1,7094,0.99,2005-07-27T04:47:33Z,2020-02-15T06:59:53Z +10099,373,2,7206,3.99,2005-07-27T09:07:05Z,2020-02-15T06:59:53Z +10100,373,1,7615,0.99,2005-07-28T00:15:24Z,2020-02-15T06:59:53Z +10101,373,1,8611,3.99,2005-07-29T13:26:21Z,2020-02-15T06:59:53Z +10102,373,2,9327,8.99,2005-07-30T17:31:03Z,2020-02-15T06:59:53Z +10103,373,1,9397,4.99,2005-07-30T20:07:29Z,2020-02-15T06:59:53Z +10104,373,2,9480,0.99,2005-07-30T23:26:03Z,2020-02-15T06:59:53Z +10105,373,1,9966,4.99,2005-07-31T16:26:46Z,2020-02-15T06:59:53Z +10106,373,1,10010,6.99,2005-07-31T18:01:36Z,2020-02-15T06:59:53Z +10107,373,1,10221,4.99,2005-08-01T01:16:50Z,2020-02-15T06:59:53Z +10108,373,1,10758,5.99,2005-08-01T20:22:51Z,2020-02-15T06:59:53Z +10109,373,2,11066,7.99,2005-08-02T06:58:32Z,2020-02-15T06:59:53Z +10110,373,2,11512,7.99,2005-08-16T23:51:06Z,2020-02-15T06:59:53Z +10111,373,2,11663,3.99,2005-08-17T05:30:19Z,2020-02-15T06:59:53Z +10112,373,2,11976,3.99,2005-08-17T17:59:19Z,2020-02-15T06:59:53Z +10113,373,1,12142,5.99,2005-08-18T00:04:12Z,2020-02-15T06:59:53Z +10114,373,2,12536,5.99,2005-08-18T14:06:06Z,2020-02-15T06:59:53Z +10115,373,1,12748,7.99,2005-08-18T22:29:05Z,2020-02-15T06:59:53Z +10116,373,2,12780,0.99,2005-08-18T23:48:16Z,2020-02-15T06:59:53Z +10117,373,2,13299,2.99,2005-08-19T18:46:33Z,2020-02-15T06:59:53Z +10118,373,1,13329,3.99,2005-08-19T19:56:55Z,2020-02-15T06:59:53Z +10119,373,2,13467,2.99,2005-08-20T00:56:44Z,2020-02-15T06:59:53Z +10120,373,2,15014,6.99,2005-08-22T08:43:11Z,2020-02-15T06:59:53Z +10121,373,1,15068,3.99,2005-08-22T10:50:13Z,2020-02-15T06:59:53Z +10122,373,1,11739,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10123,374,1,521,0.99,2005-05-28T03:32:22Z,2020-02-15T06:59:53Z +10124,374,2,910,2.99,2005-05-30T10:46:16Z,2020-02-15T06:59:53Z +10125,374,2,919,0.99,2005-05-30T11:35:06Z,2020-02-15T06:59:53Z +10126,374,1,1548,1.99,2005-06-16T01:43:33Z,2020-02-15T06:59:53Z +10127,374,2,2046,1.99,2005-06-17T14:39:50Z,2020-02-15T06:59:53Z +10128,374,2,2487,4.99,2005-06-18T21:32:54Z,2020-02-15T06:59:53Z +10129,374,2,2641,2.99,2005-06-19T09:38:33Z,2020-02-15T06:59:53Z +10130,374,1,3797,1.99,2005-07-06T14:54:52Z,2020-02-15T06:59:53Z +10131,374,1,5463,4.99,2005-07-09T22:57:02Z,2020-02-15T06:59:53Z +10132,374,1,5570,6.99,2005-07-10T03:46:47Z,2020-02-15T06:59:53Z +10133,374,2,5591,3.99,2005-07-10T04:25:03Z,2020-02-15T06:59:53Z +10134,374,2,5945,2.99,2005-07-10T22:52:42Z,2020-02-15T06:59:53Z +10135,374,2,6315,0.99,2005-07-11T18:42:49Z,2020-02-15T06:59:53Z +10136,374,2,7837,0.99,2005-07-28T08:58:32Z,2020-02-15T06:59:53Z +10137,374,2,8586,7.99,2005-07-29T12:16:34Z,2020-02-15T06:59:53Z +10138,374,2,9113,0.99,2005-07-30T09:09:03Z,2020-02-15T06:59:53Z +10139,374,1,9866,6.99,2005-07-31T13:13:50Z,2020-02-15T06:59:53Z +10140,374,1,10695,2.99,2005-08-01T18:16:20Z,2020-02-15T06:59:53Z +10141,374,1,11619,0.99,2005-08-17T04:03:26Z,2020-02-15T06:59:53Z +10142,374,2,12696,2.99,2005-08-18T20:13:08Z,2020-02-15T06:59:53Z +10143,374,1,13337,2.99,2005-08-19T20:06:57Z,2020-02-15T06:59:53Z +10144,374,2,13734,4.99,2005-08-20T10:29:57Z,2020-02-15T06:59:53Z +10145,374,2,14524,8.99,2005-08-21T15:05:27Z,2020-02-15T06:59:53Z +10146,374,2,15053,5.99,2005-08-22T10:13:09Z,2020-02-15T06:59:53Z +10147,374,1,15200,2.99,2005-08-22T16:22:53Z,2020-02-15T06:59:53Z +10148,374,2,15202,4.99,2005-08-22T16:26:53Z,2020-02-15T06:59:53Z +10149,374,2,15366,6.99,2005-08-22T21:45:57Z,2020-02-15T06:59:53Z +10150,374,2,15966,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10151,375,2,307,8.99,2005-05-26T21:48:13Z,2020-02-15T06:59:53Z +10152,375,1,412,4.99,2005-05-27T14:17:23Z,2020-02-15T06:59:53Z +10153,375,2,749,4.99,2005-05-29T09:33:33Z,2020-02-15T06:59:53Z +10154,375,1,873,2.99,2005-05-30T05:15:20Z,2020-02-15T06:59:53Z +10155,375,2,1404,2.99,2005-06-15T16:38:53Z,2020-02-15T06:59:53Z +10156,375,1,1499,5.99,2005-06-15T21:58:07Z,2020-02-15T06:59:53Z +10157,375,1,2236,4.99,2005-06-18T04:12:33Z,2020-02-15T06:59:53Z +10158,375,1,3981,6.99,2005-07-06T23:12:12Z,2020-02-15T06:59:53Z +10159,375,2,4335,4.99,2005-07-07T18:33:57Z,2020-02-15T06:59:53Z +10160,375,2,5474,2.99,2005-07-09T23:23:57Z,2020-02-15T06:59:53Z +10161,375,1,7856,4.99,2005-07-28T09:48:24Z,2020-02-15T06:59:53Z +10162,375,2,8900,2.99,2005-07-30T01:07:03Z,2020-02-15T06:59:53Z +10163,375,1,10274,0.99,2005-08-01T03:16:51Z,2020-02-15T06:59:53Z +10164,375,2,10589,1.99,2005-08-01T14:11:09Z,2020-02-15T06:59:53Z +10165,375,1,10640,0.99,2005-08-01T15:44:51Z,2020-02-15T06:59:53Z +10166,375,1,10672,4.99,2005-08-01T17:10:54Z,2020-02-15T06:59:53Z +10167,375,1,10859,5.99,2005-08-02T00:11:39Z,2020-02-15T06:59:53Z +10168,375,1,10961,6.99,2005-08-02T03:47:55Z,2020-02-15T06:59:53Z +10169,375,2,11008,5.99,2005-08-02T05:06:17Z,2020-02-15T06:59:53Z +10170,375,2,12122,9.99,2005-08-17T23:20:45Z,2020-02-15T06:59:53Z +10171,375,2,12663,0.99,2005-08-18T19:10:52Z,2020-02-15T06:59:53Z +10172,375,1,13836,4.99,2005-08-20T14:18:16Z,2020-02-15T06:59:53Z +10173,375,1,15004,2.99,2005-08-22T08:15:21Z,2020-02-15T06:59:53Z +10174,375,1,15505,4.99,2005-08-23T02:46:13Z,2020-02-15T06:59:53Z +10175,376,1,554,0.99,2005-05-28T08:23:16Z,2020-02-15T06:59:53Z +10176,376,2,1208,0.99,2005-06-15T02:30:03Z,2020-02-15T06:59:53Z +10177,376,1,2779,0.99,2005-06-19T18:19:07Z,2020-02-15T06:59:53Z +10178,376,2,3719,2.99,2005-07-06T11:05:55Z,2020-02-15T06:59:53Z +10179,376,1,4163,0.99,2005-07-07T09:19:28Z,2020-02-15T06:59:53Z +10180,376,2,4166,8.99,2005-07-07T09:33:30Z,2020-02-15T06:59:53Z +10181,376,1,4320,3.99,2005-07-07T17:51:59Z,2020-02-15T06:59:53Z +10182,376,1,4554,5.99,2005-07-08T04:48:03Z,2020-02-15T06:59:53Z +10183,376,1,4869,4.99,2005-07-08T19:14:05Z,2020-02-15T06:59:53Z +10184,376,1,5675,4.99,2005-07-10T08:31:06Z,2020-02-15T06:59:53Z +10185,376,1,6524,6.99,2005-07-12T04:14:35Z,2020-02-15T06:59:53Z +10186,376,1,6545,8.99,2005-07-12T04:56:30Z,2020-02-15T06:59:53Z +10187,376,2,6807,2.99,2005-07-12T17:33:53Z,2020-02-15T06:59:53Z +10188,376,1,8269,2.99,2005-07-29T01:26:54Z,2020-02-15T06:59:53Z +10189,376,1,8420,5.99,2005-07-29T07:00:45Z,2020-02-15T06:59:53Z +10190,376,1,9773,4.99,2005-07-31T09:56:56Z,2020-02-15T06:59:53Z +10191,376,1,9828,2.99,2005-07-31T11:56:57Z,2020-02-15T06:59:53Z +10192,376,1,9872,0.99,2005-07-31T13:27:55Z,2020-02-15T06:59:53Z +10193,376,2,10413,3.99,2005-08-01T07:59:39Z,2020-02-15T06:59:53Z +10194,376,1,10810,3.99,2005-08-01T22:40:39Z,2020-02-15T06:59:53Z +10195,376,1,11144,4.99,2005-08-02T09:39:17Z,2020-02-15T06:59:53Z +10196,376,2,11792,4.99,2005-08-17T11:03:53Z,2020-02-15T06:59:53Z +10197,376,1,11851,4.99,2005-08-17T13:30:27Z,2020-02-15T06:59:53Z +10198,376,1,13009,0.99,2005-08-19T07:50:35Z,2020-02-15T06:59:53Z +10199,376,1,13141,0.99,2005-08-19T12:41:41Z,2020-02-15T06:59:53Z +10200,376,2,13761,4.99,2005-08-20T11:28:50Z,2020-02-15T06:59:53Z +10201,376,1,15107,4.99,2005-08-22T12:05:02Z,2020-02-15T06:59:53Z +10202,376,1,15382,2.99,2005-08-22T22:30:50Z,2020-02-15T06:59:53Z +10203,377,2,2556,3.99,2005-06-19T03:07:32Z,2020-02-15T06:59:53Z +10204,377,1,3080,1.99,2005-06-20T15:22:32Z,2020-02-15T06:59:53Z +10205,377,2,3086,0.99,2005-06-20T15:42:40Z,2020-02-15T06:59:53Z +10206,377,2,3136,2.99,2005-06-20T19:39:08Z,2020-02-15T06:59:53Z +10207,377,2,3443,4.99,2005-06-21T20:19:00Z,2020-02-15T06:59:53Z +10208,377,1,3858,2.99,2005-07-06T17:17:57Z,2020-02-15T06:59:53Z +10209,377,2,4053,0.99,2005-07-07T03:39:22Z,2020-02-15T06:59:53Z +10210,377,1,4077,0.99,2005-07-07T04:53:40Z,2020-02-15T06:59:53Z +10211,377,1,4225,0.99,2005-07-07T12:24:37Z,2020-02-15T06:59:53Z +10212,377,2,6893,7.99,2005-07-12T21:20:11Z,2020-02-15T06:59:53Z +10213,377,1,7697,1.99,2005-07-28T03:43:45Z,2020-02-15T06:59:53Z +10214,377,2,8018,10.99,2005-07-28T15:36:48Z,2020-02-15T06:59:53Z +10215,377,2,8916,4.99,2005-07-30T01:42:21Z,2020-02-15T06:59:53Z +10216,377,2,9461,3.99,2005-07-30T22:29:13Z,2020-02-15T06:59:53Z +10217,377,1,9564,0.99,2005-07-31T02:31:37Z,2020-02-15T06:59:53Z +10218,377,1,10013,4.99,2005-07-31T18:08:21Z,2020-02-15T06:59:53Z +10219,377,1,10183,8.99,2005-08-01T00:08:01Z,2020-02-15T06:59:53Z +10220,377,1,10738,3.99,2005-08-01T19:39:08Z,2020-02-15T06:59:53Z +10221,377,1,10943,2.99,2005-08-02T03:17:29Z,2020-02-15T06:59:53Z +10222,377,1,12390,1.99,2005-08-18T08:51:42Z,2020-02-15T06:59:53Z +10223,377,1,12549,4.99,2005-08-18T14:38:07Z,2020-02-15T06:59:53Z +10224,377,1,13249,2.99,2005-08-19T16:47:41Z,2020-02-15T06:59:53Z +10225,377,1,13275,0.99,2005-08-19T17:53:38Z,2020-02-15T06:59:53Z +10226,377,2,15088,0.99,2005-08-22T11:28:26Z,2020-02-15T06:59:53Z +10227,377,1,15995,0.99,2005-08-23T20:29:56Z,2020-02-15T06:59:53Z +10228,377,1,15999,7.99,2005-08-23T20:44:10Z,2020-02-15T06:59:53Z +10229,378,1,347,0.99,2005-05-27T04:40:33Z,2020-02-15T06:59:53Z +10230,378,2,1623,4.99,2005-06-16T07:48:50Z,2020-02-15T06:59:53Z +10231,378,1,1662,5.99,2005-06-16T10:13:35Z,2020-02-15T06:59:53Z +10232,378,2,2134,7.99,2005-06-17T21:13:44Z,2020-02-15T06:59:53Z +10233,378,2,2713,4.99,2005-06-19T14:23:09Z,2020-02-15T06:59:53Z +10234,378,1,3759,4.99,2005-07-06T12:46:38Z,2020-02-15T06:59:53Z +10235,378,2,4755,0.99,2005-07-08T14:23:41Z,2020-02-15T06:59:53Z +10236,378,1,5578,1.99,2005-07-10T04:00:31Z,2020-02-15T06:59:53Z +10237,378,2,6233,1.99,2005-07-11T14:10:47Z,2020-02-15T06:59:53Z +10238,378,1,7888,0.99,2005-07-28T10:40:24Z,2020-02-15T06:59:53Z +10239,378,2,8740,2.99,2005-07-29T18:41:31Z,2020-02-15T06:59:53Z +10240,378,2,9668,3.99,2005-07-31T06:31:03Z,2020-02-15T06:59:53Z +10241,378,1,9868,2.99,2005-07-31T13:20:08Z,2020-02-15T06:59:53Z +10242,378,1,10917,4.99,2005-08-02T02:06:18Z,2020-02-15T06:59:53Z +10243,378,1,11111,4.99,2005-08-02T08:21:27Z,2020-02-15T06:59:53Z +10244,378,1,12596,2.99,2005-08-18T16:29:35Z,2020-02-15T06:59:53Z +10245,378,1,12828,4.99,2005-08-19T01:37:47Z,2020-02-15T06:59:53Z +10246,378,2,14502,4.99,2005-08-21T14:22:28Z,2020-02-15T06:59:53Z +10247,378,1,14971,2.99,2005-08-22T06:52:49Z,2020-02-15T06:59:53Z +10248,379,2,209,4.99,2005-05-26T08:14:01Z,2020-02-15T06:59:53Z +10249,379,1,863,4.99,2005-05-30T03:14:59Z,2020-02-15T06:59:53Z +10250,379,1,1383,8.99,2005-06-15T15:20:06Z,2020-02-15T06:59:53Z +10251,379,1,2313,5.99,2005-06-18T08:56:45Z,2020-02-15T06:59:53Z +10252,379,1,2926,2.99,2005-06-20T04:37:45Z,2020-02-15T06:59:53Z +10253,379,1,3788,4.99,2005-07-06T14:02:02Z,2020-02-15T06:59:53Z +10254,379,2,4740,2.99,2005-07-08T13:30:35Z,2020-02-15T06:59:53Z +10255,379,1,5402,4.99,2005-07-09T20:01:58Z,2020-02-15T06:59:53Z +10256,379,1,6235,7.99,2005-07-11T14:17:51Z,2020-02-15T06:59:53Z +10257,379,2,7041,4.99,2005-07-27T03:18:32Z,2020-02-15T06:59:53Z +10258,379,1,10041,4.99,2005-07-31T19:01:02Z,2020-02-15T06:59:53Z +10259,379,2,11457,3.99,2005-08-02T21:14:16Z,2020-02-15T06:59:53Z +10260,379,1,12503,4.99,2005-08-18T13:16:46Z,2020-02-15T06:59:53Z +10261,379,1,13334,0.99,2005-08-19T20:02:33Z,2020-02-15T06:59:53Z +10262,379,2,13397,7.99,2005-08-19T22:06:35Z,2020-02-15T06:59:53Z +10263,379,1,13485,0.99,2005-08-20T01:20:14Z,2020-02-15T06:59:53Z +10264,379,1,14011,5.99,2005-08-20T20:32:56Z,2020-02-15T06:59:53Z +10265,379,2,14152,2.99,2005-08-21T02:23:50Z,2020-02-15T06:59:53Z +10266,379,1,14470,0.99,2005-08-21T13:09:41Z,2020-02-15T06:59:53Z +10267,379,1,14886,4.99,2005-08-22T03:59:01Z,2020-02-15T06:59:53Z +10268,379,2,15399,4.99,2005-08-22T23:11:59Z,2020-02-15T06:59:53Z +10269,379,1,15446,4.99,2005-08-23T00:49:24Z,2020-02-15T06:59:53Z +10270,379,2,15930,3.99,2005-08-23T18:26:51Z,2020-02-15T06:59:53Z +10271,380,1,847,3.99,2005-05-30T01:18:15Z,2020-02-15T06:59:53Z +10272,380,1,1868,3.99,2005-06-17T02:03:22Z,2020-02-15T06:59:53Z +10273,380,1,1984,2.99,2005-06-17T10:25:28Z,2020-02-15T06:59:53Z +10274,380,1,2018,3.99,2005-06-17T12:35:58Z,2020-02-15T06:59:53Z +10275,380,1,2440,2.99,2005-06-18T18:41:09Z,2020-02-15T06:59:53Z +10276,380,1,2464,4.99,2005-06-18T20:06:05Z,2020-02-15T06:59:53Z +10277,380,2,2998,1.99,2005-06-20T09:30:22Z,2020-02-15T06:59:53Z +10278,380,2,3099,1.99,2005-06-20T16:44:33Z,2020-02-15T06:59:53Z +10279,380,1,3260,4.99,2005-06-21T03:59:13Z,2020-02-15T06:59:53Z +10280,380,1,3637,2.99,2005-07-06T07:06:31Z,2020-02-15T06:59:53Z +10281,380,1,3688,4.99,2005-07-06T09:41:53Z,2020-02-15T06:59:53Z +10282,380,1,4675,2.99,2005-07-08T10:24:22Z,2020-02-15T06:59:53Z +10283,380,2,4706,4.99,2005-07-08T11:51:41Z,2020-02-15T06:59:53Z +10284,380,2,5339,0.99,2005-07-09T17:09:17Z,2020-02-15T06:59:53Z +10285,380,2,7021,8.99,2005-07-27T02:26:38Z,2020-02-15T06:59:53Z +10286,380,2,7167,2.99,2005-07-27T07:37:26Z,2020-02-15T06:59:53Z +10287,380,2,7435,0.99,2005-07-27T17:38:44Z,2020-02-15T06:59:53Z +10288,380,2,7443,2.99,2005-07-27T17:47:43Z,2020-02-15T06:59:53Z +10289,380,1,7773,2.99,2005-07-28T07:02:17Z,2020-02-15T06:59:53Z +10290,380,1,7974,3.99,2005-07-28T14:11:57Z,2020-02-15T06:59:53Z +10291,380,1,9056,0.99,2005-07-30T07:13:20Z,2020-02-15T06:59:53Z +10292,380,1,9261,6.99,2005-07-30T14:39:35Z,2020-02-15T06:59:53Z +10293,380,1,9710,10.99,2005-07-31T08:05:31Z,2020-02-15T06:59:53Z +10294,380,2,10450,1.99,2005-08-01T09:10:03Z,2020-02-15T06:59:53Z +10295,380,1,10983,3.99,2005-08-02T04:24:23Z,2020-02-15T06:59:53Z +10296,380,1,11936,0.99,2005-08-17T16:45:34Z,2020-02-15T06:59:53Z +10297,380,2,11945,0.99,2005-08-17T17:05:33Z,2020-02-15T06:59:53Z +10298,380,1,12636,3.99,2005-08-18T18:00:29Z,2020-02-15T06:59:53Z +10299,380,1,12996,6.99,2005-08-19T07:31:32Z,2020-02-15T06:59:53Z +10300,380,1,14529,6.99,2005-08-21T15:08:31Z,2020-02-15T06:59:53Z +10301,380,1,14935,1.99,2005-08-22T05:47:31Z,2020-02-15T06:59:53Z +10302,380,2,15175,5.99,2005-08-22T15:29:15Z,2020-02-15T06:59:53Z +10303,380,1,15361,2.99,2005-08-22T21:39:45Z,2020-02-15T06:59:53Z +10304,380,2,15636,2.99,2005-08-23T07:50:46Z,2020-02-15T06:59:53Z +10305,380,1,15697,2.99,2005-08-23T10:04:36Z,2020-02-15T06:59:53Z +10306,380,2,15748,2.99,2005-08-23T12:33:00Z,2020-02-15T06:59:53Z +10307,381,2,169,0.99,2005-05-26T03:09:30Z,2020-02-15T06:59:53Z +10308,381,2,406,2.99,2005-05-27T13:46:46Z,2020-02-15T06:59:53Z +10309,381,1,835,2.99,2005-05-29T23:37:00Z,2020-02-15T06:59:53Z +10310,381,1,1402,3.99,2005-06-15T16:31:08Z,2020-02-15T06:59:53Z +10311,381,1,1878,1.99,2005-06-17T02:55:32Z,2020-02-15T06:59:53Z +10312,381,2,2410,2.99,2005-06-18T16:55:08Z,2020-02-15T06:59:53Z +10313,381,1,2418,4.99,2005-06-18T17:14:42Z,2020-02-15T06:59:53Z +10314,381,2,3425,2.99,2005-06-21T18:07:07Z,2020-02-15T06:59:53Z +10315,381,2,3812,0.99,2005-07-06T15:22:19Z,2020-02-15T06:59:53Z +10316,381,2,3970,2.99,2005-07-06T22:48:17Z,2020-02-15T06:59:53Z +10317,381,1,4735,0.99,2005-07-08T13:12:27Z,2020-02-15T06:59:53Z +10318,381,2,5689,0.99,2005-07-10T09:24:17Z,2020-02-15T06:59:53Z +10319,381,2,6116,2.99,2005-07-11T07:37:38Z,2020-02-15T06:59:53Z +10320,381,2,6451,4.99,2005-07-12T00:52:19Z,2020-02-15T06:59:53Z +10321,381,2,6778,2.99,2005-07-12T16:06:00Z,2020-02-15T06:59:53Z +10322,381,1,7375,2.99,2005-07-27T15:22:33Z,2020-02-15T06:59:53Z +10323,381,1,7645,2.99,2005-07-28T01:27:42Z,2020-02-15T06:59:53Z +10324,381,2,8688,0.99,2005-07-29T16:31:32Z,2020-02-15T06:59:53Z +10325,381,2,9144,0.99,2005-07-30T10:22:15Z,2020-02-15T06:59:53Z +10326,381,2,9173,4.99,2005-07-30T11:40:10Z,2020-02-15T06:59:53Z +10327,381,1,9822,2.99,2005-07-31T11:48:25Z,2020-02-15T06:59:53Z +10328,381,2,10033,4.99,2005-07-31T18:44:29Z,2020-02-15T06:59:53Z +10329,381,1,10608,0.99,2005-08-01T14:48:41Z,2020-02-15T06:59:53Z +10330,381,2,10705,0.99,2005-08-01T18:38:54Z,2020-02-15T06:59:53Z +10331,381,1,11519,2.99,2005-08-17T00:01:27Z,2020-02-15T06:59:53Z +10332,381,2,12135,2.99,2005-08-17T23:50:24Z,2020-02-15T06:59:53Z +10333,381,2,12237,4.99,2005-08-18T03:24:38Z,2020-02-15T06:59:53Z +10334,381,2,12632,2.99,2005-08-18T17:54:21Z,2020-02-15T06:59:53Z +10335,381,2,13202,8.99,2005-08-19T14:58:30Z,2020-02-15T06:59:53Z +10336,381,2,13430,0.99,2005-08-19T23:25:43Z,2020-02-15T06:59:53Z +10337,381,1,13614,0.99,2005-08-20T06:28:37Z,2020-02-15T06:59:53Z +10338,381,2,13995,2.99,2005-08-20T19:34:43Z,2020-02-15T06:59:53Z +10339,381,1,14198,4.99,2005-08-21T03:48:31Z,2020-02-15T06:59:53Z +10340,381,2,15299,4.99,2005-08-22T19:42:57Z,2020-02-15T06:59:53Z +10341,381,1,15747,4.99,2005-08-23T12:29:24Z,2020-02-15T06:59:53Z +10342,382,2,356,2.99,2005-05-27T06:32:30Z,2020-02-15T06:59:53Z +10343,382,1,522,2.99,2005-05-28T03:33:20Z,2020-02-15T06:59:53Z +10344,382,1,2389,0.99,2005-06-18T15:27:47Z,2020-02-15T06:59:53Z +10345,382,1,2468,4.99,2005-06-18T20:23:52Z,2020-02-15T06:59:53Z +10346,382,1,2489,1.99,2005-06-18T22:00:44Z,2020-02-15T06:59:53Z +10347,382,1,2514,2.99,2005-06-18T23:56:44Z,2020-02-15T06:59:53Z +10348,382,2,3125,4.99,2005-06-20T18:31:58Z,2020-02-15T06:59:53Z +10349,382,2,3480,3.99,2005-07-05T23:11:43Z,2020-02-15T06:59:53Z +10350,382,2,4351,4.99,2005-07-07T19:04:24Z,2020-02-15T06:59:53Z +10351,382,1,5004,4.99,2005-07-09T01:20:50Z,2020-02-15T06:59:53Z +10352,382,1,5816,0.99,2005-07-10T15:48:47Z,2020-02-15T06:59:53Z +10353,382,2,7625,0.99,2005-07-28T00:47:56Z,2020-02-15T06:59:53Z +10354,382,2,8777,0.99,2005-07-29T20:10:21Z,2020-02-15T06:59:53Z +10355,382,1,8871,9.99,2005-07-30T00:12:41Z,2020-02-15T06:59:53Z +10356,382,1,8993,4.99,2005-07-30T04:51:25Z,2020-02-15T06:59:53Z +10357,382,1,9067,6.99,2005-07-30T07:31:01Z,2020-02-15T06:59:53Z +10358,382,2,9555,0.99,2005-07-31T02:11:16Z,2020-02-15T06:59:53Z +10359,382,2,10327,3.99,2005-08-01T04:55:35Z,2020-02-15T06:59:53Z +10360,382,2,12229,0.99,2005-08-18T03:08:23Z,2020-02-15T06:59:53Z +10361,382,2,12529,0.99,2005-08-18T13:53:36Z,2020-02-15T06:59:53Z +10362,382,1,14009,4.99,2005-08-20T20:26:53Z,2020-02-15T06:59:53Z +10363,382,2,14300,4.99,2005-08-21T07:19:37Z,2020-02-15T06:59:53Z +10364,382,2,14354,5.99,2005-08-21T09:08:14Z,2020-02-15T06:59:53Z +10365,382,2,15939,7.99,2005-08-23T18:44:21Z,2020-02-15T06:59:53Z +10366,383,2,63,0.99,2005-05-25T09:19:16Z,2020-02-15T06:59:53Z +10367,383,1,766,8.99,2005-05-29T11:47:02Z,2020-02-15T06:59:53Z +10368,383,1,1831,7.99,2005-06-16T22:22:17Z,2020-02-15T06:59:53Z +10369,383,2,2228,2.99,2005-06-18T03:44:50Z,2020-02-15T06:59:53Z +10370,383,1,2252,2.99,2005-06-18T05:05:18Z,2020-02-15T06:59:53Z +10371,383,2,2318,2.99,2005-06-18T09:13:54Z,2020-02-15T06:59:53Z +10372,383,1,2609,7.99,2005-06-19T07:13:12Z,2020-02-15T06:59:53Z +10373,383,1,3091,2.99,2005-06-20T16:02:59Z,2020-02-15T06:59:53Z +10374,383,2,4747,5.99,2005-07-08T13:53:01Z,2020-02-15T06:59:53Z +10375,383,2,6091,4.99,2005-07-11T05:49:18Z,2020-02-15T06:59:53Z +10376,383,2,6244,0.99,2005-07-11T14:53:38Z,2020-02-15T06:59:53Z +10377,383,1,6775,4.99,2005-07-12T16:01:44Z,2020-02-15T06:59:53Z +10378,383,1,7367,3.99,2005-07-27T15:05:45Z,2020-02-15T06:59:53Z +10379,383,2,8367,2.99,2005-07-29T05:11:19Z,2020-02-15T06:59:53Z +10380,383,1,8635,0.99,2005-07-29T14:22:48Z,2020-02-15T06:59:53Z +10381,383,1,9653,0.99,2005-07-31T05:55:38Z,2020-02-15T06:59:53Z +10382,383,1,9678,0.99,2005-07-31T06:40:47Z,2020-02-15T06:59:53Z +10383,383,2,10515,4.99,2005-08-01T11:41:33Z,2020-02-15T06:59:53Z +10384,383,1,10971,4.99,2005-08-02T04:08:17Z,2020-02-15T06:59:53Z +10385,383,2,10993,0.99,2005-08-02T04:45:01Z,2020-02-15T06:59:53Z +10386,383,2,11122,0.99,2005-08-02T08:49:09Z,2020-02-15T06:59:53Z +10387,383,1,11592,2.99,2005-08-17T02:36:04Z,2020-02-15T06:59:53Z +10388,383,1,12735,4.99,2005-08-18T22:04:54Z,2020-02-15T06:59:53Z +10389,383,2,14039,4.99,2005-08-20T21:39:43Z,2020-02-15T06:59:53Z +10390,383,2,14678,4.99,2005-08-21T20:12:43Z,2020-02-15T06:59:53Z +10391,383,1,15416,1.99,2005-08-22T23:51:23Z,2020-02-15T06:59:53Z +10392,383,1,15881,6.99,2005-08-23T16:44:25Z,2020-02-15T06:59:53Z +10393,384,2,103,4.99,2005-05-25T17:30:42Z,2020-02-15T06:59:53Z +10394,384,2,279,2.99,2005-05-26T18:02:50Z,2020-02-15T06:59:53Z +10395,384,1,898,0.99,2005-05-30T09:26:19Z,2020-02-15T06:59:53Z +10396,384,2,1013,2.99,2005-05-31T02:37:00Z,2020-02-15T06:59:53Z +10397,384,1,1961,0.99,2005-06-17T09:02:58Z,2020-02-15T06:59:53Z +10398,384,2,2020,0.99,2005-06-17T12:39:50Z,2020-02-15T06:59:53Z +10399,384,1,2378,7.99,2005-06-18T14:57:49Z,2020-02-15T06:59:53Z +10400,384,2,2510,5.99,2005-06-18T23:44:21Z,2020-02-15T06:59:53Z +10401,384,2,2935,3.99,2005-06-20T05:07:24Z,2020-02-15T06:59:53Z +10402,384,1,3088,9.99,2005-06-20T15:56:05Z,2020-02-15T06:59:53Z +10403,384,2,3101,4.99,2005-06-20T16:48:58Z,2020-02-15T06:59:53Z +10404,384,2,4424,0.99,2005-07-07T22:14:43Z,2020-02-15T06:59:53Z +10405,384,2,5250,0.99,2005-07-09T13:35:32Z,2020-02-15T06:59:53Z +10406,384,1,5608,4.99,2005-07-10T05:08:26Z,2020-02-15T06:59:53Z +10407,384,2,5797,4.99,2005-07-10T14:43:52Z,2020-02-15T06:59:53Z +10408,384,2,5966,2.99,2005-07-10T23:59:27Z,2020-02-15T06:59:53Z +10409,384,2,6387,0.99,2005-07-11T22:15:56Z,2020-02-15T06:59:53Z +10410,384,2,7799,0.99,2005-07-28T07:42:09Z,2020-02-15T06:59:53Z +10411,384,1,8445,1.99,2005-07-29T07:37:48Z,2020-02-15T06:59:53Z +10412,384,2,11773,5.99,2005-08-17T10:19:51Z,2020-02-15T06:59:53Z +10413,384,2,13521,2.99,2005-08-20T02:42:28Z,2020-02-15T06:59:53Z +10414,384,2,14416,2.99,2005-08-21T11:11:46Z,2020-02-15T06:59:53Z +10415,384,1,14841,0.99,2005-08-22T02:03:30Z,2020-02-15T06:59:53Z +10416,384,1,14963,5.99,2005-08-22T06:38:10Z,2020-02-15T06:59:53Z +10417,384,2,15321,4.99,2005-08-22T20:20:04Z,2020-02-15T06:59:53Z +10418,385,1,917,2.99,2005-05-30T11:27:06Z,2020-02-15T06:59:53Z +10419,385,2,1038,4.99,2005-05-31T05:23:47Z,2020-02-15T06:59:53Z +10420,385,1,1746,2.99,2005-06-16T16:41:19Z,2020-02-15T06:59:53Z +10421,385,1,1937,0.99,2005-06-17T07:16:46Z,2020-02-15T06:59:53Z +10422,385,1,3105,0.99,2005-06-20T17:11:46Z,2020-02-15T06:59:53Z +10423,385,2,3878,8.99,2005-07-06T18:27:09Z,2020-02-15T06:59:53Z +10424,385,2,3953,0.99,2005-07-06T21:54:55Z,2020-02-15T06:59:53Z +10425,385,1,4714,6.99,2005-07-08T12:12:48Z,2020-02-15T06:59:53Z +10426,385,1,5783,2.99,2005-07-10T13:55:33Z,2020-02-15T06:59:53Z +10427,385,1,6445,4.99,2005-07-12T00:37:02Z,2020-02-15T06:59:53Z +10428,385,2,6933,4.99,2005-07-26T23:09:23Z,2020-02-15T06:59:53Z +10429,385,2,7776,0.99,2005-07-28T07:04:36Z,2020-02-15T06:59:53Z +10430,385,1,8346,2.99,2005-07-29T04:48:22Z,2020-02-15T06:59:53Z +10431,385,1,8518,2.99,2005-07-29T10:05:27Z,2020-02-15T06:59:53Z +10432,385,1,9570,2.99,2005-07-31T02:40:37Z,2020-02-15T06:59:53Z +10433,385,1,9704,4.99,2005-07-31T07:39:32Z,2020-02-15T06:59:53Z +10434,385,1,10557,0.99,2005-08-01T12:59:24Z,2020-02-15T06:59:53Z +10435,385,1,10636,3.99,2005-08-01T15:40:35Z,2020-02-15T06:59:53Z +10436,385,1,10655,4.99,2005-08-01T16:33:27Z,2020-02-15T06:59:53Z +10437,385,1,11021,2.99,2005-08-02T05:30:11Z,2020-02-15T06:59:53Z +10438,385,1,11559,2.99,2005-08-17T01:20:26Z,2020-02-15T06:59:53Z +10439,385,2,12310,2.99,2005-08-18T06:02:34Z,2020-02-15T06:59:53Z +10440,385,2,12686,8.99,2005-08-18T19:55:09Z,2020-02-15T06:59:53Z +10441,385,2,13062,7.99,2005-08-19T09:44:17Z,2020-02-15T06:59:53Z +10442,385,1,13117,0.99,2005-08-19T11:33:20Z,2020-02-15T06:59:53Z +10443,385,1,15488,6.99,2005-08-23T02:06:01Z,2020-02-15T06:59:53Z +10444,386,1,583,7.99,2005-05-28T11:48:55Z,2020-02-15T06:59:53Z +10445,386,2,1585,3.99,2005-06-16T04:51:13Z,2020-02-15T06:59:53Z +10446,386,1,1608,2.99,2005-06-16T06:28:57Z,2020-02-15T06:59:53Z +10447,386,2,1819,5.99,2005-06-16T21:32:50Z,2020-02-15T06:59:53Z +10448,386,1,2732,0.99,2005-06-19T15:19:39Z,2020-02-15T06:59:53Z +10449,386,1,3351,2.99,2005-06-21T11:21:39Z,2020-02-15T06:59:53Z +10450,386,2,3783,6.99,2005-07-06T13:57:31Z,2020-02-15T06:59:53Z +10451,386,1,4189,8.99,2005-07-07T10:51:07Z,2020-02-15T06:59:53Z +10452,386,1,5524,0.99,2005-07-10T01:49:24Z,2020-02-15T06:59:53Z +10453,386,1,5953,2.99,2005-07-10T23:21:35Z,2020-02-15T06:59:53Z +10454,386,1,6037,4.99,2005-07-11T03:06:54Z,2020-02-15T06:59:53Z +10455,386,1,6222,2.99,2005-07-11T13:25:49Z,2020-02-15T06:59:53Z +10456,386,2,6261,2.99,2005-07-11T15:28:34Z,2020-02-15T06:59:53Z +10457,386,1,6324,3.99,2005-07-11T19:02:34Z,2020-02-15T06:59:53Z +10458,386,2,6715,4.99,2005-07-12T13:32:28Z,2020-02-15T06:59:53Z +10459,386,2,8340,4.99,2005-07-29T04:41:44Z,2020-02-15T06:59:53Z +10460,386,1,8751,2.99,2005-07-29T19:14:39Z,2020-02-15T06:59:53Z +10461,386,2,9602,0.99,2005-07-31T03:42:51Z,2020-02-15T06:59:53Z +10462,386,1,9686,5.99,2005-07-31T06:50:06Z,2020-02-15T06:59:53Z +10463,386,1,10572,4.99,2005-08-01T13:26:53Z,2020-02-15T06:59:53Z +10464,386,2,10618,3.99,2005-08-01T15:06:38Z,2020-02-15T06:59:53Z +10465,386,1,10715,2.99,2005-08-01T18:51:48Z,2020-02-15T06:59:53Z +10466,386,2,11128,2.99,2005-08-02T09:03:25Z,2020-02-15T06:59:53Z +10467,386,2,11695,4.99,2005-08-17T07:01:08Z,2020-02-15T06:59:53Z +10468,386,2,12961,2.99,2005-08-19T06:22:37Z,2020-02-15T06:59:53Z +10469,386,1,13716,3.99,2005-08-20T09:48:32Z,2020-02-15T06:59:53Z +10470,386,1,13764,2.99,2005-08-20T11:38:16Z,2020-02-15T06:59:53Z +10471,386,2,13869,6.99,2005-08-20T15:08:57Z,2020-02-15T06:59:53Z +10472,386,1,15949,0.99,2005-08-23T19:06:04Z,2020-02-15T06:59:53Z +10473,387,2,302,4.99,2005-05-26T21:13:46Z,2020-02-15T06:59:53Z +10474,387,1,697,7.99,2005-05-29T02:04:04Z,2020-02-15T06:59:53Z +10475,387,1,841,4.99,2005-05-30T00:31:17Z,2020-02-15T06:59:53Z +10476,387,1,1127,3.99,2005-05-31T17:45:49Z,2020-02-15T06:59:53Z +10477,387,1,1464,0.99,2005-06-15T20:38:14Z,2020-02-15T06:59:53Z +10478,387,2,1465,0.99,2005-06-15T20:43:08Z,2020-02-15T06:59:53Z +10479,387,1,2068,0.99,2005-06-17T16:11:46Z,2020-02-15T06:59:53Z +10480,387,2,2100,0.99,2005-06-17T18:53:21Z,2020-02-15T06:59:53Z +10481,387,2,2981,5.99,2005-06-20T08:35:17Z,2020-02-15T06:59:53Z +10482,387,2,3378,4.99,2005-06-21T13:51:28Z,2020-02-15T06:59:53Z +10483,387,2,6216,4.99,2005-07-11T12:57:05Z,2020-02-15T06:59:53Z +10484,387,2,6456,6.99,2005-07-12T01:05:11Z,2020-02-15T06:59:53Z +10485,387,1,6517,5.99,2005-07-12T03:52:39Z,2020-02-15T06:59:53Z +10486,387,1,7497,0.99,2005-07-27T20:05:27Z,2020-02-15T06:59:53Z +10487,387,1,8090,2.99,2005-07-28T18:27:29Z,2020-02-15T06:59:53Z +10488,387,1,10564,0.99,2005-08-01T13:07:34Z,2020-02-15T06:59:53Z +10489,387,1,10838,4.99,2005-08-01T23:36:10Z,2020-02-15T06:59:53Z +10490,387,2,11682,2.99,2005-08-17T06:13:40Z,2020-02-15T06:59:53Z +10491,387,2,12153,4.99,2005-08-18T00:22:30Z,2020-02-15T06:59:53Z +10492,387,1,12936,6.99,2005-08-19T05:25:06Z,2020-02-15T06:59:53Z +10493,387,2,13034,2.99,2005-08-19T08:41:29Z,2020-02-15T06:59:53Z +10494,387,1,13082,5.99,2005-08-19T10:19:19Z,2020-02-15T06:59:53Z +10495,387,2,13645,0.99,2005-08-20T07:47:05Z,2020-02-15T06:59:53Z +10496,387,2,13772,4.99,2005-08-20T11:47:52Z,2020-02-15T06:59:53Z +10497,387,2,14279,5.99,2005-08-21T06:39:08Z,2020-02-15T06:59:53Z +10498,387,2,14979,0.99,2005-08-22T07:16:36Z,2020-02-15T06:59:53Z +10499,388,2,21,4.99,2005-05-25T01:59:46Z,2020-02-15T06:59:53Z +10500,388,2,411,4.99,2005-05-27T14:14:14Z,2020-02-15T06:59:53Z +10501,388,2,1276,6.99,2005-06-15T08:00:13Z,2020-02-15T06:59:53Z +10502,388,1,2145,0.99,2005-06-17T22:10:36Z,2020-02-15T06:59:53Z +10503,388,1,2537,5.99,2005-06-19T01:52:21Z,2020-02-15T06:59:53Z +10504,388,1,2692,4.99,2005-06-19T13:08:19Z,2020-02-15T06:59:53Z +10505,388,2,3159,7.99,2005-06-20T21:11:50Z,2020-02-15T06:59:53Z +10506,388,2,4947,5.99,2005-07-08T22:49:37Z,2020-02-15T06:59:53Z +10507,388,2,5899,2.99,2005-07-10T20:21:52Z,2020-02-15T06:59:53Z +10508,388,2,6321,2.99,2005-07-11T18:51:02Z,2020-02-15T06:59:53Z +10509,388,1,6452,2.99,2005-07-12T00:57:31Z,2020-02-15T06:59:53Z +10510,388,2,7985,5.99,2005-07-28T14:29:01Z,2020-02-15T06:59:53Z +10511,388,2,8456,3.99,2005-07-29T07:58:31Z,2020-02-15T06:59:53Z +10512,388,2,9213,0.99,2005-07-30T13:07:11Z,2020-02-15T06:59:53Z +10513,388,2,9368,2.99,2005-07-30T18:50:53Z,2020-02-15T06:59:53Z +10514,388,2,9840,2.99,2005-07-31T12:23:18Z,2020-02-15T06:59:53Z +10515,388,2,9940,0.99,2005-07-31T15:29:06Z,2020-02-15T06:59:53Z +10516,388,2,10044,2.99,2005-07-31T19:02:33Z,2020-02-15T06:59:53Z +10517,388,2,11604,0.99,2005-08-17T03:28:27Z,2020-02-15T06:59:53Z +10518,388,2,12044,0.99,2005-08-17T20:39:37Z,2020-02-15T06:59:53Z +10519,388,1,12068,2.99,2005-08-17T21:37:08Z,2020-02-15T06:59:53Z +10520,388,2,12267,6.99,2005-08-18T04:24:30Z,2020-02-15T06:59:53Z +10521,388,2,12497,4.99,2005-08-18T12:58:40Z,2020-02-15T06:59:53Z +10522,388,2,12646,2.99,2005-08-18T18:25:06Z,2020-02-15T06:59:53Z +10523,388,1,12749,2.99,2005-08-18T22:31:21Z,2020-02-15T06:59:53Z +10524,388,1,12977,4.99,2005-08-19T06:55:33Z,2020-02-15T06:59:53Z +10525,388,1,14273,10.99,2005-08-21T06:26:48Z,2020-02-15T06:59:53Z +10526,388,2,14853,5.99,2005-08-22T02:26:33Z,2020-02-15T06:59:53Z +10527,388,2,15660,5.99,2005-08-23T08:51:21Z,2020-02-15T06:59:53Z +10528,388,1,12891,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:53Z +10529,389,1,998,4.99,2005-05-31T00:16:57Z,2020-02-15T06:59:53Z +10530,389,1,1763,4.99,2005-06-16T17:51:01Z,2020-02-15T06:59:53Z +10531,389,1,1946,4.99,2005-06-17T07:58:39Z,2020-02-15T06:59:53Z +10532,389,1,2552,3.99,2005-06-19T03:01:29Z,2020-02-15T06:59:53Z +10533,389,2,3527,0.99,2005-07-06T01:11:08Z,2020-02-15T06:59:53Z +10534,389,1,4443,6.99,2005-07-07T23:05:53Z,2020-02-15T06:59:53Z +10535,389,1,5249,0.99,2005-07-09T13:33:53Z,2020-02-15T06:59:53Z +10536,389,2,5626,3.99,2005-07-10T05:49:35Z,2020-02-15T06:59:53Z +10537,389,2,6104,2.99,2005-07-11T07:01:35Z,2020-02-15T06:59:53Z +10538,389,1,6600,3.99,2005-07-12T07:41:48Z,2020-02-15T06:59:53Z +10539,389,1,7029,4.99,2005-07-27T02:57:43Z,2020-02-15T06:59:53Z +10540,389,1,7896,8.99,2005-07-28T11:00:58Z,2020-02-15T06:59:53Z +10541,389,2,7977,4.99,2005-07-28T14:15:54Z,2020-02-15T06:59:53Z +10542,389,1,8338,6.99,2005-07-29T04:40:39Z,2020-02-15T06:59:53Z +10543,389,1,8887,4.99,2005-07-30T00:36:54Z,2020-02-15T06:59:53Z +10544,389,1,10217,4.99,2005-08-01T01:07:27Z,2020-02-15T06:59:53Z +10545,389,1,10949,2.99,2005-08-02T03:24:04Z,2020-02-15T06:59:53Z +10546,389,2,11348,4.99,2005-08-02T17:18:38Z,2020-02-15T06:59:53Z +10547,389,2,11441,2.99,2005-08-02T20:25:41Z,2020-02-15T06:59:53Z +10548,389,2,11944,3.99,2005-08-17T17:02:42Z,2020-02-15T06:59:53Z +10549,389,2,12069,4.99,2005-08-17T21:39:40Z,2020-02-15T06:59:53Z +10550,389,2,14493,7.99,2005-08-21T14:01:44Z,2020-02-15T06:59:53Z +10551,389,1,14578,2.99,2005-08-21T16:53:38Z,2020-02-15T06:59:54Z +10552,389,1,14777,2.99,2005-08-21T23:55:50Z,2020-02-15T06:59:54Z +10553,389,1,15462,5.99,2005-08-23T01:14:01Z,2020-02-15T06:59:54Z +10554,389,2,16011,9.99,2005-08-23T21:11:33Z,2020-02-15T06:59:54Z +10555,390,1,254,4.99,2005-05-26T14:43:48Z,2020-02-15T06:59:54Z +10556,390,2,912,4.99,2005-05-30T10:58:33Z,2020-02-15T06:59:54Z +10557,390,2,1539,5.99,2005-06-16T01:11:25Z,2020-02-15T06:59:54Z +10558,390,2,1730,2.99,2005-06-16T15:30:01Z,2020-02-15T06:59:54Z +10559,390,2,1893,2.99,2005-06-17T04:18:37Z,2020-02-15T06:59:54Z +10560,390,1,2330,7.99,2005-06-18T10:41:19Z,2020-02-15T06:59:54Z +10561,390,1,3147,5.99,2005-06-20T20:25:17Z,2020-02-15T06:59:54Z +10562,390,1,3999,2.99,2005-07-06T23:50:54Z,2020-02-15T06:59:54Z +10563,390,1,4022,4.99,2005-07-07T01:50:06Z,2020-02-15T06:59:54Z +10564,390,2,4191,3.99,2005-07-07T10:56:14Z,2020-02-15T06:59:54Z +10565,390,2,4310,2.99,2005-07-07T17:30:56Z,2020-02-15T06:59:54Z +10566,390,1,4968,5.99,2005-07-08T23:49:19Z,2020-02-15T06:59:54Z +10567,390,1,6215,4.99,2005-07-11T12:52:36Z,2020-02-15T06:59:54Z +10568,390,1,6430,0.99,2005-07-12T00:03:34Z,2020-02-15T06:59:54Z +10569,390,2,7515,3.99,2005-07-27T20:52:37Z,2020-02-15T06:59:54Z +10570,390,1,7595,5.99,2005-07-27T23:32:23Z,2020-02-15T06:59:54Z +10571,390,1,8493,0.99,2005-07-29T09:04:31Z,2020-02-15T06:59:54Z +10572,390,1,9251,5.99,2005-07-30T14:19:25Z,2020-02-15T06:59:54Z +10573,390,2,9314,2.99,2005-07-30T17:05:19Z,2020-02-15T06:59:54Z +10574,390,1,9825,4.99,2005-07-31T11:50:51Z,2020-02-15T06:59:54Z +10575,390,1,10061,4.99,2005-07-31T19:23:25Z,2020-02-15T06:59:54Z +10576,390,1,12105,5.99,2005-08-17T22:54:45Z,2020-02-15T06:59:54Z +10577,390,2,12803,2.99,2005-08-19T00:28:21Z,2020-02-15T06:59:54Z +10578,390,1,13413,3.99,2005-08-19T22:46:46Z,2020-02-15T06:59:54Z +10579,390,1,13473,4.99,2005-08-20T01:03:50Z,2020-02-15T06:59:54Z +10580,390,1,13501,0.99,2005-08-20T01:56:20Z,2020-02-15T06:59:54Z +10581,390,2,13546,3.99,2005-08-20T03:50:24Z,2020-02-15T06:59:54Z +10582,390,2,13591,3.99,2005-08-20T05:50:05Z,2020-02-15T06:59:54Z +10583,390,2,13618,7.99,2005-08-20T06:36:46Z,2020-02-15T06:59:54Z +10584,390,2,13893,5.99,2005-08-20T15:52:52Z,2020-02-15T06:59:54Z +10585,390,2,15222,4.99,2005-08-22T17:12:30Z,2020-02-15T06:59:54Z +10586,390,2,15303,8.99,2005-08-22T19:44:59Z,2020-02-15T06:59:54Z +10587,390,2,15376,4.99,2005-08-22T22:21:35Z,2020-02-15T06:59:54Z +10588,391,2,73,4.99,2005-05-25T11:00:07Z,2020-02-15T06:59:54Z +10589,391,1,210,2.99,2005-05-26T08:14:15Z,2020-02-15T06:59:54Z +10590,391,1,317,5.99,2005-05-26T23:23:56Z,2020-02-15T06:59:54Z +10591,391,2,870,2.99,2005-05-30T04:25:47Z,2020-02-15T06:59:54Z +10592,391,1,891,7.99,2005-05-30T07:43:12Z,2020-02-15T06:59:54Z +10593,391,2,1232,0.99,2005-06-15T04:18:10Z,2020-02-15T06:59:54Z +10594,391,2,1931,0.99,2005-06-17T06:51:56Z,2020-02-15T06:59:54Z +10595,391,1,2045,2.99,2005-06-17T14:38:11Z,2020-02-15T06:59:54Z +10596,391,1,2690,2.99,2005-06-19T13:00:02Z,2020-02-15T06:59:54Z +10597,391,2,3163,2.99,2005-06-20T21:22:13Z,2020-02-15T06:59:54Z +10598,391,1,4188,5.99,2005-07-07T10:45:29Z,2020-02-15T06:59:54Z +10599,391,1,4716,0.99,2005-07-08T12:18:51Z,2020-02-15T06:59:54Z +10600,391,2,4753,0.99,2005-07-08T14:18:41Z,2020-02-15T06:59:54Z +10601,391,2,5583,7.99,2005-07-10T04:08:48Z,2020-02-15T06:59:54Z +10602,391,1,5599,4.99,2005-07-10T04:52:04Z,2020-02-15T06:59:54Z +10603,391,1,6302,3.99,2005-07-11T17:55:38Z,2020-02-15T06:59:54Z +10604,391,1,6463,2.99,2005-07-12T01:16:11Z,2020-02-15T06:59:54Z +10605,391,2,8016,0.99,2005-07-28T15:35:41Z,2020-02-15T06:59:54Z +10606,391,1,8908,0.99,2005-07-30T01:26:05Z,2020-02-15T06:59:54Z +10607,391,2,8913,6.99,2005-07-30T01:35:01Z,2020-02-15T06:59:54Z +10608,391,1,9225,0.99,2005-07-30T13:29:47Z,2020-02-15T06:59:54Z +10609,391,1,10210,7.99,2005-08-01T00:58:52Z,2020-02-15T06:59:54Z +10610,391,2,10406,2.99,2005-08-01T07:37:05Z,2020-02-15T06:59:54Z +10611,391,1,11151,4.99,2005-08-02T09:52:44Z,2020-02-15T06:59:54Z +10612,391,2,11434,2.99,2005-08-02T20:13:14Z,2020-02-15T06:59:54Z +10613,391,1,11602,4.99,2005-08-17T03:21:19Z,2020-02-15T06:59:54Z +10614,391,1,12090,0.99,2005-08-17T22:21:43Z,2020-02-15T06:59:54Z +10615,391,1,12100,1.99,2005-08-17T22:41:10Z,2020-02-15T06:59:54Z +10616,391,1,13980,2.99,2005-08-20T19:04:40Z,2020-02-15T06:59:54Z +10617,391,1,14381,0.99,2005-08-21T09:55:47Z,2020-02-15T06:59:54Z +10618,392,2,1530,6.99,2005-06-16T00:38:07Z,2020-02-15T06:59:54Z +10619,392,2,1764,2.99,2005-06-16T17:51:54Z,2020-02-15T06:59:54Z +10620,392,2,2289,2.99,2005-06-18T07:29:43Z,2020-02-15T06:59:54Z +10621,392,2,2890,4.99,2005-06-20T02:00:45Z,2020-02-15T06:59:54Z +10622,392,1,3566,2.99,2005-07-06T03:08:51Z,2020-02-15T06:59:54Z +10623,392,2,6061,0.99,2005-07-11T04:06:25Z,2020-02-15T06:59:54Z +10624,392,2,6406,2.99,2005-07-11T22:55:27Z,2020-02-15T06:59:54Z +10625,392,1,7692,2.99,2005-07-28T03:30:21Z,2020-02-15T06:59:54Z +10626,392,1,7981,1.99,2005-07-28T14:18:25Z,2020-02-15T06:59:54Z +10627,392,1,8254,0.99,2005-07-29T00:59:31Z,2020-02-15T06:59:54Z +10628,392,2,8612,9.99,2005-07-29T13:28:20Z,2020-02-15T06:59:54Z +10629,392,2,10085,0.99,2005-07-31T20:12:02Z,2020-02-15T06:59:54Z +10630,392,1,10435,4.99,2005-08-01T08:50:51Z,2020-02-15T06:59:54Z +10631,392,1,11459,0.99,2005-08-02T21:25:25Z,2020-02-15T06:59:54Z +10632,392,1,11686,2.99,2005-08-17T06:39:30Z,2020-02-15T06:59:54Z +10633,392,2,12102,6.99,2005-08-17T22:45:26Z,2020-02-15T06:59:54Z +10634,392,1,12368,6.99,2005-08-18T07:57:38Z,2020-02-15T06:59:54Z +10635,392,2,12561,0.99,2005-08-18T14:58:51Z,2020-02-15T06:59:54Z +10636,392,1,13629,4.99,2005-08-20T07:04:07Z,2020-02-15T06:59:54Z +10637,392,2,14081,7.99,2005-08-20T23:35:13Z,2020-02-15T06:59:54Z +10638,392,1,14223,5.99,2005-08-21T04:51:51Z,2020-02-15T06:59:54Z +10639,392,2,14369,0.99,2005-08-21T09:33:44Z,2020-02-15T06:59:54Z +10640,392,2,14438,5.99,2005-08-21T11:51:10Z,2020-02-15T06:59:54Z +10641,393,1,599,4.99,2005-05-28T14:05:57Z,2020-02-15T06:59:54Z +10642,393,2,886,0.99,2005-05-30T06:54:51Z,2020-02-15T06:59:54Z +10643,393,1,1611,6.99,2005-06-16T06:41:35Z,2020-02-15T06:59:54Z +10644,393,2,1915,1.99,2005-06-17T05:28:28Z,2020-02-15T06:59:54Z +10645,393,2,2219,2.99,2005-06-18T03:16:54Z,2020-02-15T06:59:54Z +10646,393,1,2319,4.99,2005-06-18T09:24:22Z,2020-02-15T06:59:54Z +10647,393,2,3001,2.99,2005-06-20T09:50:16Z,2020-02-15T06:59:54Z +10648,393,2,4275,2.99,2005-07-07T14:43:51Z,2020-02-15T06:59:54Z +10649,393,2,4546,8.99,2005-07-08T04:18:36Z,2020-02-15T06:59:54Z +10650,393,2,4632,5.99,2005-07-08T08:38:57Z,2020-02-15T06:59:54Z +10651,393,2,4791,7.99,2005-07-08T16:27:24Z,2020-02-15T06:59:54Z +10652,393,1,5099,4.99,2005-07-09T06:14:30Z,2020-02-15T06:59:54Z +10653,393,1,6221,2.99,2005-07-11T13:24:27Z,2020-02-15T06:59:54Z +10654,393,2,6513,0.99,2005-07-12T03:44:43Z,2020-02-15T06:59:54Z +10655,393,1,6930,8.99,2005-07-26T23:00:01Z,2020-02-15T06:59:54Z +10656,393,2,7486,0.99,2005-07-27T19:29:24Z,2020-02-15T06:59:54Z +10657,393,2,8004,4.99,2005-07-28T15:14:07Z,2020-02-15T06:59:54Z +10658,393,2,8448,0.99,2005-07-29T07:41:54Z,2020-02-15T06:59:54Z +10659,393,2,9763,7.99,2005-07-31T09:34:03Z,2020-02-15T06:59:54Z +10660,393,1,10158,1.99,2005-07-31T22:40:31Z,2020-02-15T06:59:54Z +10661,393,2,12059,2.99,2005-08-17T21:09:23Z,2020-02-15T06:59:54Z +10662,393,1,12113,1.99,2005-08-17T23:01:00Z,2020-02-15T06:59:54Z +10663,393,1,12563,4.99,2005-08-18T15:08:29Z,2020-02-15T06:59:54Z +10664,393,1,12676,0.99,2005-08-18T19:34:40Z,2020-02-15T06:59:54Z +10665,393,1,13184,4.99,2005-08-19T14:16:18Z,2020-02-15T06:59:54Z +10666,393,2,13357,4.99,2005-08-19T21:02:59Z,2020-02-15T06:59:54Z +10667,393,2,13788,1.99,2005-08-20T12:15:41Z,2020-02-15T06:59:54Z +10668,393,1,15132,2.99,2005-08-22T13:11:25Z,2020-02-15T06:59:54Z +10669,393,2,15284,3.99,2005-08-22T19:17:08Z,2020-02-15T06:59:54Z +10670,393,2,15527,0.99,2005-08-23T03:44:51Z,2020-02-15T06:59:54Z +10671,393,2,16049,3.99,2005-08-23T22:50:12Z,2020-02-15T06:59:54Z +10672,394,1,213,3.99,2005-05-26T08:44:08Z,2020-02-15T06:59:54Z +10673,394,1,977,2.99,2005-05-30T21:22:26Z,2020-02-15T06:59:54Z +10674,394,2,1324,4.99,2005-06-15T11:02:45Z,2020-02-15T06:59:54Z +10675,394,2,3543,0.99,2005-07-06T02:01:08Z,2020-02-15T06:59:54Z +10676,394,1,3873,6.99,2005-07-06T18:03:16Z,2020-02-15T06:59:54Z +10677,394,2,4009,2.99,2005-07-07T00:28:55Z,2020-02-15T06:59:54Z +10678,394,1,4307,6.99,2005-07-07T17:20:39Z,2020-02-15T06:59:54Z +10679,394,2,5183,4.99,2005-07-09T10:13:45Z,2020-02-15T06:59:54Z +10680,394,1,5535,4.99,2005-07-10T02:27:42Z,2020-02-15T06:59:54Z +10681,394,2,6059,4.99,2005-07-11T04:03:54Z,2020-02-15T06:59:54Z +10682,394,2,7445,3.99,2005-07-27T17:57:15Z,2020-02-15T06:59:54Z +10683,394,1,9147,0.99,2005-07-30T10:38:59Z,2020-02-15T06:59:54Z +10684,394,2,9864,0.99,2005-07-31T13:06:54Z,2020-02-15T06:59:54Z +10685,394,1,10319,4.99,2005-08-01T04:37:19Z,2020-02-15T06:59:54Z +10686,394,1,10603,0.99,2005-08-01T14:30:35Z,2020-02-15T06:59:54Z +10687,394,1,10718,0.99,2005-08-01T18:55:38Z,2020-02-15T06:59:54Z +10688,394,1,12080,4.99,2005-08-17T22:08:04Z,2020-02-15T06:59:54Z +10689,394,1,12389,4.99,2005-08-18T08:48:36Z,2020-02-15T06:59:54Z +10690,394,2,12510,9.99,2005-08-18T13:22:25Z,2020-02-15T06:59:54Z +10691,394,2,13047,0.99,2005-08-19T09:24:49Z,2020-02-15T06:59:54Z +10692,394,1,14605,0.99,2005-08-21T17:56:06Z,2020-02-15T06:59:54Z +10693,394,2,13178,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +10694,395,1,1270,0.99,2005-06-15T07:30:22Z,2020-02-15T06:59:54Z +10695,395,1,1562,0.99,2005-06-16T02:46:27Z,2020-02-15T06:59:54Z +10696,395,2,1603,0.99,2005-06-16T06:14:03Z,2020-02-15T06:59:54Z +10697,395,1,3030,4.99,2005-06-20T11:51:59Z,2020-02-15T06:59:54Z +10698,395,1,3310,0.99,2005-06-21T08:04:51Z,2020-02-15T06:59:54Z +10699,395,1,3389,6.99,2005-06-21T14:37:55Z,2020-02-15T06:59:54Z +10700,395,2,3684,0.99,2005-07-06T09:29:22Z,2020-02-15T06:59:54Z +10701,395,1,4185,5.99,2005-07-07T10:31:05Z,2020-02-15T06:59:54Z +10702,395,1,4393,4.99,2005-07-07T21:12:36Z,2020-02-15T06:59:54Z +10703,395,1,5087,0.99,2005-07-09T05:44:28Z,2020-02-15T06:59:54Z +10704,395,2,5136,0.99,2005-07-09T07:55:01Z,2020-02-15T06:59:54Z +10705,395,1,7740,2.99,2005-07-28T05:23:36Z,2020-02-15T06:59:54Z +10706,395,2,7986,7.99,2005-07-28T14:30:13Z,2020-02-15T06:59:54Z +10707,395,1,11889,0.99,2005-08-17T15:08:27Z,2020-02-15T06:59:54Z +10708,395,1,14471,5.99,2005-08-21T13:10:40Z,2020-02-15T06:59:54Z +10709,395,2,14720,0.99,2005-08-21T21:43:53Z,2020-02-15T06:59:54Z +10710,395,1,15698,2.99,2005-08-23T10:11:40Z,2020-02-15T06:59:54Z +10711,395,1,15856,0.99,2005-08-23T15:59:12Z,2020-02-15T06:59:54Z +10712,395,1,15970,4.99,2005-08-23T19:54:24Z,2020-02-15T06:59:54Z +10713,396,2,641,5.99,2005-05-28T18:45:47Z,2020-02-15T06:59:54Z +10714,396,2,1370,1.99,2005-06-15T14:31:05Z,2020-02-15T06:59:54Z +10715,396,2,1385,4.99,2005-06-15T15:28:23Z,2020-02-15T06:59:54Z +10716,396,2,1408,6.99,2005-06-15T16:57:58Z,2020-02-15T06:59:54Z +10717,396,2,3909,6.99,2005-07-06T19:54:41Z,2020-02-15T06:59:54Z +10718,396,1,5059,1.99,2005-07-09T04:28:01Z,2020-02-15T06:59:54Z +10719,396,2,6335,2.99,2005-07-11T19:25:15Z,2020-02-15T06:59:54Z +10720,396,2,6764,4.99,2005-07-12T15:29:27Z,2020-02-15T06:59:54Z +10721,396,2,6771,2.99,2005-07-12T15:54:40Z,2020-02-15T06:59:54Z +10722,396,2,7142,0.99,2005-07-27T06:55:39Z,2020-02-15T06:59:54Z +10723,396,2,7313,2.99,2005-07-27T13:11:57Z,2020-02-15T06:59:54Z +10724,396,2,8371,2.99,2005-07-29T05:16:35Z,2020-02-15T06:59:54Z +10725,396,2,8807,2.99,2005-07-29T21:36:59Z,2020-02-15T06:59:54Z +10726,396,1,9344,5.99,2005-07-30T18:13:45Z,2020-02-15T06:59:54Z +10727,396,2,10120,2.99,2005-07-31T21:24:24Z,2020-02-15T06:59:54Z +10728,396,2,10124,0.99,2005-07-31T21:31:49Z,2020-02-15T06:59:54Z +10729,396,2,10195,6.99,2005-08-01T00:34:42Z,2020-02-15T06:59:54Z +10730,396,2,10610,0.99,2005-08-01T14:49:41Z,2020-02-15T06:59:54Z +10731,396,2,12393,5.99,2005-08-18T09:02:41Z,2020-02-15T06:59:54Z +10732,396,1,12895,4.99,2005-08-19T03:50:48Z,2020-02-15T06:59:54Z +10733,396,2,13355,4.99,2005-08-19T20:59:19Z,2020-02-15T06:59:54Z +10734,396,1,14078,3.99,2005-08-20T23:26:40Z,2020-02-15T06:59:54Z +10735,396,1,14169,4.99,2005-08-21T03:00:31Z,2020-02-15T06:59:54Z +10736,396,1,14508,2.99,2005-08-21T14:33:58Z,2020-02-15T06:59:54Z +10737,396,2,14778,5.99,2005-08-21T23:56:30Z,2020-02-15T06:59:54Z +10738,396,1,14792,1.99,2005-08-22T00:36:41Z,2020-02-15T06:59:54Z +10739,396,2,15198,7.99,2005-08-22T16:15:33Z,2020-02-15T06:59:54Z +10740,397,2,1002,0.99,2005-05-31T00:47:56Z,2020-02-15T06:59:54Z +10741,397,1,1769,5.99,2005-06-16T18:07:48Z,2020-02-15T06:59:54Z +10742,397,2,3027,1.99,2005-06-20T11:50:30Z,2020-02-15T06:59:54Z +10743,397,1,3489,5.99,2005-07-05T23:33:40Z,2020-02-15T06:59:54Z +10744,397,1,4036,0.99,2005-07-07T02:48:00Z,2020-02-15T06:59:54Z +10745,397,2,5103,4.99,2005-07-09T06:34:40Z,2020-02-15T06:59:54Z +10746,397,2,5598,4.99,2005-07-10T04:48:29Z,2020-02-15T06:59:54Z +10747,397,2,5763,4.99,2005-07-10T12:58:12Z,2020-02-15T06:59:54Z +10748,397,2,6014,2.99,2005-07-11T02:02:55Z,2020-02-15T06:59:54Z +10749,397,2,6266,2.99,2005-07-11T15:45:39Z,2020-02-15T06:59:54Z +10750,397,1,6471,4.99,2005-07-12T01:31:06Z,2020-02-15T06:59:54Z +10751,397,2,7356,2.99,2005-07-27T14:47:35Z,2020-02-15T06:59:54Z +10752,397,2,7892,4.99,2005-07-28T10:46:58Z,2020-02-15T06:59:54Z +10753,397,1,8103,6.99,2005-07-28T18:50:14Z,2020-02-15T06:59:54Z +10754,397,1,9495,0.99,2005-07-30T23:54:26Z,2020-02-15T06:59:54Z +10755,397,2,9608,1.99,2005-07-31T03:51:52Z,2020-02-15T06:59:54Z +10756,397,1,10534,0.99,2005-08-01T12:15:11Z,2020-02-15T06:59:54Z +10757,397,2,10598,4.99,2005-08-01T14:23:36Z,2020-02-15T06:59:54Z +10758,397,1,10785,1.99,2005-08-01T21:24:55Z,2020-02-15T06:59:54Z +10759,397,2,11511,4.99,2005-08-16T23:39:59Z,2020-02-15T06:59:54Z +10760,397,2,12223,2.99,2005-08-18T02:58:40Z,2020-02-15T06:59:54Z +10761,397,1,12276,0.99,2005-08-18T04:43:22Z,2020-02-15T06:59:54Z +10762,397,2,12329,1.99,2005-08-18T06:44:30Z,2020-02-15T06:59:54Z +10763,397,2,12700,0.99,2005-08-18T20:24:46Z,2020-02-15T06:59:54Z +10764,397,2,12726,2.99,2005-08-18T21:44:46Z,2020-02-15T06:59:54Z +10765,397,1,12772,4.99,2005-08-18T23:29:25Z,2020-02-15T06:59:54Z +10766,397,2,14100,3.99,2005-08-21T00:31:07Z,2020-02-15T06:59:54Z +10767,397,1,14790,6.99,2005-08-22T00:34:17Z,2020-02-15T06:59:54Z +10768,397,1,15083,6.99,2005-08-22T11:17:37Z,2020-02-15T06:59:54Z +10769,398,1,486,4.99,2005-05-27T23:51:12Z,2020-02-15T06:59:54Z +10770,398,2,1228,2.99,2005-06-15T03:50:36Z,2020-02-15T06:59:54Z +10771,398,1,2087,6.99,2005-06-17T17:35:10Z,2020-02-15T06:59:54Z +10772,398,2,3141,9.99,2005-06-20T19:55:47Z,2020-02-15T06:59:54Z +10773,398,2,5234,5.99,2005-07-09T12:44:47Z,2020-02-15T06:59:54Z +10774,398,2,8119,3.99,2005-07-28T19:23:15Z,2020-02-15T06:59:54Z +10775,398,2,8204,4.99,2005-07-28T23:18:29Z,2020-02-15T06:59:54Z +10776,398,1,8428,7.99,2005-07-29T07:10:14Z,2020-02-15T06:59:54Z +10777,398,1,9042,2.99,2005-07-30T06:33:55Z,2020-02-15T06:59:54Z +10778,398,2,9281,5.99,2005-07-30T15:15:51Z,2020-02-15T06:59:54Z +10779,398,1,9771,1.99,2005-07-31T09:55:36Z,2020-02-15T06:59:54Z +10780,398,1,10230,2.99,2005-08-01T01:49:36Z,2020-02-15T06:59:54Z +10781,398,2,11132,4.99,2005-08-02T09:14:09Z,2020-02-15T06:59:54Z +10782,398,2,12528,2.99,2005-08-18T13:52:41Z,2020-02-15T06:59:54Z +10783,398,2,13643,4.99,2005-08-20T07:42:24Z,2020-02-15T06:59:54Z +10784,398,1,15189,3.99,2005-08-22T15:56:42Z,2020-02-15T06:59:54Z +10785,399,2,10,5.99,2005-05-25T00:02:21Z,2020-02-15T06:59:54Z +10786,399,2,694,6.99,2005-05-29T01:49:43Z,2020-02-15T06:59:54Z +10787,399,2,883,4.99,2005-05-30T06:21:05Z,2020-02-15T06:59:54Z +10788,399,2,2961,2.99,2005-06-20T07:29:15Z,2020-02-15T06:59:54Z +10789,399,1,3036,5.99,2005-06-20T12:18:31Z,2020-02-15T06:59:54Z +10790,399,2,4957,0.99,2005-07-08T23:18:48Z,2020-02-15T06:59:54Z +10791,399,2,4981,4.99,2005-07-09T00:29:29Z,2020-02-15T06:59:54Z +10792,399,1,5507,0.99,2005-07-10T00:49:04Z,2020-02-15T06:59:54Z +10793,399,2,6006,2.99,2005-07-11T01:38:42Z,2020-02-15T06:59:54Z +10794,399,2,6229,6.99,2005-07-11T13:59:50Z,2020-02-15T06:59:54Z +10795,399,2,6674,4.99,2005-07-12T11:51:54Z,2020-02-15T06:59:54Z +10796,399,2,8461,5.99,2005-07-29T08:11:31Z,2020-02-15T06:59:54Z +10797,399,2,9728,2.99,2005-07-31T08:40:54Z,2020-02-15T06:59:54Z +10798,399,2,10654,2.99,2005-08-01T16:31:35Z,2020-02-15T06:59:54Z +10799,399,2,10960,5.99,2005-08-02T03:46:18Z,2020-02-15T06:59:54Z +10800,399,1,11329,4.99,2005-08-02T16:42:52Z,2020-02-15T06:59:54Z +10801,399,1,11953,3.99,2005-08-17T17:16:42Z,2020-02-15T06:59:54Z +10802,399,1,13253,4.99,2005-08-19T16:53:56Z,2020-02-15T06:59:54Z +10803,399,2,13293,4.99,2005-08-19T18:35:52Z,2020-02-15T06:59:54Z +10804,399,1,15300,0.99,2005-08-22T19:44:00Z,2020-02-15T06:59:54Z +10805,399,1,15468,4.99,2005-08-23T01:25:30Z,2020-02-15T06:59:54Z +10806,400,1,95,3.99,2005-05-25T16:12:52Z,2020-02-15T06:59:54Z +10807,400,2,171,6.99,2005-05-26T03:14:15Z,2020-02-15T06:59:54Z +10808,400,2,516,1.99,2005-05-28T03:11:47Z,2020-02-15T06:59:54Z +10809,400,2,894,5.99,2005-05-30T08:31:31Z,2020-02-15T06:59:54Z +10810,400,2,1364,0.99,2005-06-15T14:05:32Z,2020-02-15T06:59:54Z +10811,400,1,1917,3.99,2005-06-17T05:36:07Z,2020-02-15T06:59:54Z +10812,400,2,1923,6.99,2005-06-17T06:06:10Z,2020-02-15T06:59:54Z +10813,400,1,4573,6.99,2005-07-08T05:38:46Z,2020-02-15T06:59:54Z +10814,400,1,4645,2.99,2005-07-08T09:20:09Z,2020-02-15T06:59:54Z +10815,400,2,5212,6.99,2005-07-09T11:37:47Z,2020-02-15T06:59:54Z +10816,400,2,5222,5.99,2005-07-09T12:05:45Z,2020-02-15T06:59:54Z +10817,400,2,6790,5.99,2005-07-12T16:34:59Z,2020-02-15T06:59:54Z +10818,400,2,6994,2.99,2005-07-27T01:08:26Z,2020-02-15T06:59:54Z +10819,400,2,7296,2.99,2005-07-27T12:39:48Z,2020-02-15T06:59:54Z +10820,400,1,7682,5.99,2005-07-28T03:07:29Z,2020-02-15T06:59:54Z +10821,400,2,9177,5.99,2005-07-30T11:52:40Z,2020-02-15T06:59:54Z +10822,400,2,9756,4.99,2005-07-31T09:25:00Z,2020-02-15T06:59:54Z +10823,400,1,10187,2.99,2005-08-01T00:15:49Z,2020-02-15T06:59:54Z +10824,400,2,10484,2.99,2005-08-01T10:19:53Z,2020-02-15T06:59:54Z +10825,400,1,10711,0.99,2005-08-01T18:45:09Z,2020-02-15T06:59:54Z +10826,400,2,11510,6.99,2005-08-16T23:30:07Z,2020-02-15T06:59:54Z +10827,400,2,11530,2.99,2005-08-17T00:29:00Z,2020-02-15T06:59:54Z +10828,400,1,11600,5.99,2005-08-17T03:12:04Z,2020-02-15T06:59:54Z +10829,400,1,12514,2.99,2005-08-18T13:33:55Z,2020-02-15T06:59:54Z +10830,400,2,13449,2.99,2005-08-20T00:17:01Z,2020-02-15T06:59:54Z +10831,400,1,14775,2.99,2005-08-21T23:53:07Z,2020-02-15T06:59:54Z +10832,400,2,15533,4.99,2005-08-23T03:54:39Z,2020-02-15T06:59:54Z +10833,400,2,15988,4.99,2005-08-23T20:23:08Z,2020-02-15T06:59:54Z +10834,401,2,167,4.99,2005-05-26T02:50:31Z,2020-02-15T06:59:54Z +10835,401,2,446,4.99,2005-05-27T18:48:41Z,2020-02-15T06:59:54Z +10836,401,2,811,1.99,2005-05-29T19:30:42Z,2020-02-15T06:59:54Z +10837,401,1,4059,0.99,2005-07-07T04:04:26Z,2020-02-15T06:59:54Z +10838,401,2,4292,7.99,2005-07-07T15:48:38Z,2020-02-15T06:59:54Z +10839,401,2,5923,0.99,2005-07-10T21:40:06Z,2020-02-15T06:59:54Z +10840,401,1,,0.99,2005-07-12T06:26:10Z,2020-02-15T06:59:54Z +10841,401,2,7651,4.99,2005-07-28T01:48:32Z,2020-02-15T06:59:54Z +10842,401,1,8450,2.99,2005-07-29T07:44:05Z,2020-02-15T06:59:54Z +10843,401,2,8669,2.99,2005-07-29T15:44:55Z,2020-02-15T06:59:54Z +10844,401,1,8722,8.99,2005-07-29T17:58:58Z,2020-02-15T06:59:54Z +10845,401,2,9701,4.99,2005-07-31T07:32:21Z,2020-02-15T06:59:54Z +10846,401,2,10171,0.99,2005-07-31T23:29:05Z,2020-02-15T06:59:54Z +10847,401,1,11820,2.99,2005-08-17T12:25:33Z,2020-02-15T06:59:54Z +10848,401,1,12475,4.99,2005-08-18T12:14:21Z,2020-02-15T06:59:54Z +10849,401,2,12479,4.99,2005-08-18T12:26:37Z,2020-02-15T06:59:54Z +10850,401,1,12906,2.99,2005-08-19T04:13:43Z,2020-02-15T06:59:54Z +10851,401,1,13024,4.99,2005-08-19T08:19:21Z,2020-02-15T06:59:54Z +10852,401,1,14359,0.99,2005-08-21T09:16:19Z,2020-02-15T06:59:54Z +10853,401,2,14433,1.99,2005-08-21T11:36:34Z,2020-02-15T06:59:54Z +10854,401,1,15831,0.99,2005-08-23T15:21:19Z,2020-02-15T06:59:54Z +10855,401,1,15927,0.99,2005-08-23T18:23:11Z,2020-02-15T06:59:54Z +10856,402,2,801,1.99,2005-05-29T17:35:50Z,2020-02-15T06:59:54Z +10857,402,2,1194,4.99,2005-06-15T01:25:08Z,2020-02-15T06:59:54Z +10858,402,2,2490,4.99,2005-06-18T22:00:50Z,2020-02-15T06:59:54Z +10859,402,2,2913,2.99,2005-06-20T03:42:27Z,2020-02-15T06:59:54Z +10860,402,2,3564,6.99,2005-07-06T03:02:13Z,2020-02-15T06:59:54Z +10861,402,2,3612,3.99,2005-07-06T05:37:26Z,2020-02-15T06:59:54Z +10862,402,2,3755,5.99,2005-07-06T12:37:16Z,2020-02-15T06:59:54Z +10863,402,1,4399,2.99,2005-07-07T21:20:28Z,2020-02-15T06:59:54Z +10864,402,2,4604,3.99,2005-07-08T06:58:43Z,2020-02-15T06:59:54Z +10865,402,2,5329,4.99,2005-07-09T16:49:46Z,2020-02-15T06:59:54Z +10866,402,2,6183,2.99,2005-07-11T11:14:35Z,2020-02-15T06:59:54Z +10867,402,1,6283,3.99,2005-07-11T16:47:32Z,2020-02-15T06:59:54Z +10868,402,1,7633,0.99,2005-07-28T01:03:41Z,2020-02-15T06:59:54Z +10869,402,2,8521,7.99,2005-07-29T10:12:45Z,2020-02-15T06:59:54Z +10870,402,1,9657,6.99,2005-07-31T06:00:41Z,2020-02-15T06:59:54Z +10871,402,2,9779,0.99,2005-07-31T10:08:33Z,2020-02-15T06:59:54Z +10872,402,2,11045,0.99,2005-08-02T06:07:54Z,2020-02-15T06:59:54Z +10873,402,2,11549,4.99,2005-08-17T01:01:48Z,2020-02-15T06:59:54Z +10874,402,2,11920,0.99,2005-08-17T16:10:19Z,2020-02-15T06:59:54Z +10875,402,1,15428,4.99,2005-08-23T00:11:52Z,2020-02-15T06:59:54Z +10876,403,1,442,2.99,2005-05-27T18:12:13Z,2020-02-15T06:59:54Z +10877,403,1,517,0.99,2005-05-28T03:17:57Z,2020-02-15T06:59:54Z +10878,403,2,1221,4.99,2005-06-15T03:35:16Z,2020-02-15T06:59:54Z +10879,403,1,1249,8.99,2005-06-15T05:38:09Z,2020-02-15T06:59:54Z +10880,403,2,2488,3.99,2005-06-18T21:38:26Z,2020-02-15T06:59:54Z +10881,403,1,2927,4.99,2005-06-20T04:41:41Z,2020-02-15T06:59:54Z +10882,403,2,3049,6.99,2005-06-20T12:51:01Z,2020-02-15T06:59:54Z +10883,403,1,3356,5.99,2005-06-21T11:38:45Z,2020-02-15T06:59:54Z +10884,403,1,3644,6.99,2005-07-06T07:20:11Z,2020-02-15T06:59:54Z +10885,403,2,3737,3.99,2005-07-06T11:45:53Z,2020-02-15T06:59:54Z +10886,403,2,4096,4.99,2005-07-07T06:09:11Z,2020-02-15T06:59:54Z +10887,403,1,5982,4.99,2005-07-11T00:24:44Z,2020-02-15T06:59:54Z +10888,403,2,6322,2.99,2005-07-11T18:58:20Z,2020-02-15T06:59:54Z +10889,403,1,6342,4.99,2005-07-11T19:48:24Z,2020-02-15T06:59:54Z +10890,403,1,7103,4.99,2005-07-27T05:08:59Z,2020-02-15T06:59:54Z +10891,403,2,8013,5.99,2005-07-28T15:30:26Z,2020-02-15T06:59:54Z +10892,403,1,9058,2.99,2005-07-30T07:15:45Z,2020-02-15T06:59:54Z +10893,403,2,9486,7.99,2005-07-30T23:35:42Z,2020-02-15T06:59:54Z +10894,403,2,9794,4.99,2005-07-31T10:47:01Z,2020-02-15T06:59:54Z +10895,403,2,10109,5.99,2005-07-31T21:04:49Z,2020-02-15T06:59:54Z +10896,403,1,10443,2.99,2005-08-01T09:01:04Z,2020-02-15T06:59:54Z +10897,403,1,10547,6.99,2005-08-01T12:44:17Z,2020-02-15T06:59:54Z +10898,403,2,10789,2.99,2005-08-01T21:37:55Z,2020-02-15T06:59:54Z +10899,403,1,11038,7.99,2005-08-02T05:59:42Z,2020-02-15T06:59:54Z +10900,403,2,11391,9.99,2005-08-02T18:40:12Z,2020-02-15T06:59:54Z +10901,403,2,11427,2.99,2005-08-02T20:02:39Z,2020-02-15T06:59:54Z +10902,403,2,11460,0.99,2005-08-02T21:28:03Z,2020-02-15T06:59:54Z +10903,403,2,11558,0.99,2005-08-17T01:19:52Z,2020-02-15T06:59:54Z +10904,403,2,12005,5.99,2005-08-17T18:56:55Z,2020-02-15T06:59:54Z +10905,403,1,12132,2.99,2005-08-17T23:37:03Z,2020-02-15T06:59:54Z +10906,403,1,12793,5.99,2005-08-19T00:20:36Z,2020-02-15T06:59:54Z +10907,403,1,14519,2.99,2005-08-21T14:59:29Z,2020-02-15T06:59:54Z +10908,403,1,14662,0.99,2005-08-21T19:45:27Z,2020-02-15T06:59:54Z +10909,403,2,14725,4.99,2005-08-21T22:02:08Z,2020-02-15T06:59:54Z +10910,403,1,15410,4.99,2005-08-22T23:27:43Z,2020-02-15T06:59:54Z +10911,404,2,1081,5.99,2005-05-31T10:56:32Z,2020-02-15T06:59:54Z +10912,404,2,1506,2.99,2005-06-15T22:19:37Z,2020-02-15T06:59:54Z +10913,404,2,1840,4.99,2005-06-16T23:39:34Z,2020-02-15T06:59:54Z +10914,404,1,2715,4.99,2005-06-19T14:29:35Z,2020-02-15T06:59:54Z +10915,404,1,2951,2.99,2005-06-20T06:23:01Z,2020-02-15T06:59:54Z +10916,404,1,3927,2.99,2005-07-06T20:48:14Z,2020-02-15T06:59:54Z +10917,404,1,4495,2.99,2005-07-08T01:43:46Z,2020-02-15T06:59:54Z +10918,404,2,4615,8.99,2005-07-08T07:46:53Z,2020-02-15T06:59:54Z +10919,404,1,4653,4.99,2005-07-08T09:48:01Z,2020-02-15T06:59:54Z +10920,404,1,4963,4.99,2005-07-08T23:38:40Z,2020-02-15T06:59:54Z +10921,404,1,5632,3.99,2005-07-10T06:17:06Z,2020-02-15T06:59:54Z +10922,404,1,6114,1.99,2005-07-11T07:33:48Z,2020-02-15T06:59:54Z +10923,404,2,6779,0.99,2005-07-12T16:10:50Z,2020-02-15T06:59:54Z +10924,404,1,6964,4.99,2005-07-27T00:15:04Z,2020-02-15T06:59:54Z +10925,404,1,8058,5.99,2005-07-28T17:07:49Z,2020-02-15T06:59:54Z +10926,404,1,8455,3.99,2005-07-29T07:53:06Z,2020-02-15T06:59:54Z +10927,404,1,9206,4.99,2005-07-30T12:46:59Z,2020-02-15T06:59:54Z +10928,404,1,9472,4.99,2005-07-30T23:03:32Z,2020-02-15T06:59:54Z +10929,404,2,9824,2.99,2005-07-31T11:49:55Z,2020-02-15T06:59:54Z +10930,404,1,10651,2.99,2005-08-01T16:20:22Z,2020-02-15T06:59:54Z +10931,404,1,12325,5.99,2005-08-18T06:41:30Z,2020-02-15T06:59:54Z +10932,404,1,12554,8.99,2005-08-18T14:47:28Z,2020-02-15T06:59:54Z +10933,404,2,13412,5.99,2005-08-19T22:46:35Z,2020-02-15T06:59:54Z +10934,404,1,13422,4.99,2005-08-19T23:07:24Z,2020-02-15T06:59:54Z +10935,404,1,14691,0.99,2005-08-21T20:42:29Z,2020-02-15T06:59:54Z +10936,404,2,14835,5.99,2005-08-22T01:49:07Z,2020-02-15T06:59:54Z +10937,404,2,14838,4.99,2005-08-22T01:57:34Z,2020-02-15T06:59:54Z +10938,404,2,14912,4.99,2005-08-22T04:51:42Z,2020-02-15T06:59:54Z +10939,404,2,15087,0.99,2005-08-22T11:24:09Z,2020-02-15T06:59:54Z +10940,404,2,15290,10.99,2005-08-22T19:28:02Z,2020-02-15T06:59:54Z +10941,405,1,121,2.99,2005-05-25T19:41:29Z,2020-02-15T06:59:54Z +10942,405,2,770,4.99,2005-05-29T12:56:50Z,2020-02-15T06:59:54Z +10943,405,2,1315,4.99,2005-06-15T10:23:08Z,2020-02-15T06:59:54Z +10944,405,1,1888,0.99,2005-06-17T03:58:36Z,2020-02-15T06:59:54Z +10945,405,2,1953,5.99,2005-06-17T08:34:57Z,2020-02-15T06:59:54Z +10946,405,2,2654,3.99,2005-06-19T10:37:54Z,2020-02-15T06:59:54Z +10947,405,1,3240,4.99,2005-06-21T02:53:17Z,2020-02-15T06:59:54Z +10948,405,1,3253,5.99,2005-06-21T03:25:37Z,2020-02-15T06:59:54Z +10949,405,2,4223,0.99,2005-07-07T12:23:54Z,2020-02-15T06:59:54Z +10950,405,2,4401,0.99,2005-07-07T21:26:27Z,2020-02-15T06:59:54Z +10951,405,2,5040,7.99,2005-07-09T03:16:34Z,2020-02-15T06:59:54Z +10952,405,1,5231,0.99,2005-07-09T12:35:02Z,2020-02-15T06:59:54Z +10953,405,2,5512,1.99,2005-07-10T01:05:38Z,2020-02-15T06:59:54Z +10954,405,1,6110,2.99,2005-07-11T07:23:47Z,2020-02-15T06:59:54Z +10955,405,1,7455,2.99,2005-07-27T18:34:41Z,2020-02-15T06:59:54Z +10956,405,1,7759,0.99,2005-07-28T06:28:45Z,2020-02-15T06:59:54Z +10957,405,2,8482,2.99,2005-07-29T08:46:33Z,2020-02-15T06:59:54Z +10958,405,1,8955,5.99,2005-07-30T03:28:27Z,2020-02-15T06:59:54Z +10959,405,1,9569,0.99,2005-07-31T02:39:38Z,2020-02-15T06:59:54Z +10960,405,1,10472,4.99,2005-08-01T09:54:41Z,2020-02-15T06:59:54Z +10961,405,2,10823,4.99,2005-08-01T22:59:10Z,2020-02-15T06:59:54Z +10962,405,1,11345,7.99,2005-08-02T17:14:19Z,2020-02-15T06:59:54Z +10963,405,1,12050,0.99,2005-08-17T20:55:25Z,2020-02-15T06:59:54Z +10964,405,2,12425,5.99,2005-08-18T10:18:06Z,2020-02-15T06:59:54Z +10965,405,1,13304,1.99,2005-08-19T18:56:32Z,2020-02-15T06:59:54Z +10966,405,1,13398,0.99,2005-08-19T22:08:48Z,2020-02-15T06:59:54Z +10967,405,1,14274,4.99,2005-08-21T06:29:20Z,2020-02-15T06:59:54Z +10968,405,2,14537,0.99,2005-08-21T15:24:24Z,2020-02-15T06:59:54Z +10969,405,1,15072,1.99,2005-08-22T10:58:45Z,2020-02-15T06:59:54Z +10970,405,2,15383,2.99,2005-08-22T22:31:20Z,2020-02-15T06:59:54Z +10971,405,1,15932,4.99,2005-08-23T18:31:40Z,2020-02-15T06:59:54Z +10972,405,1,12792,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +10973,406,1,855,0.99,2005-05-30T02:00:28Z,2020-02-15T06:59:54Z +10974,406,1,2113,4.99,2005-06-17T19:57:46Z,2020-02-15T06:59:54Z +10975,406,2,2150,3.99,2005-06-17T22:50:36Z,2020-02-15T06:59:54Z +10976,406,1,2241,2.99,2005-06-18T04:31:41Z,2020-02-15T06:59:54Z +10977,406,2,2325,0.99,2005-06-18T10:08:07Z,2020-02-15T06:59:54Z +10978,406,2,2585,0.99,2005-06-19T05:05:03Z,2020-02-15T06:59:54Z +10979,406,1,3186,7.99,2005-06-20T23:04:20Z,2020-02-15T06:59:54Z +10980,406,1,3306,4.99,2005-06-21T07:46:58Z,2020-02-15T06:59:54Z +10981,406,2,4264,4.99,2005-07-07T14:25:28Z,2020-02-15T06:59:54Z +10982,406,2,5098,4.99,2005-07-09T06:13:54Z,2020-02-15T06:59:54Z +10983,406,2,5263,0.99,2005-07-09T14:10:36Z,2020-02-15T06:59:54Z +10984,406,1,5766,0.99,2005-07-10T13:07:31Z,2020-02-15T06:59:54Z +10985,406,2,6439,2.99,2005-07-12T00:23:48Z,2020-02-15T06:59:54Z +10986,406,2,7109,5.99,2005-07-27T05:28:57Z,2020-02-15T06:59:54Z +10987,406,1,7171,4.99,2005-07-27T07:58:35Z,2020-02-15T06:59:54Z +10988,406,1,7259,4.99,2005-07-27T11:06:00Z,2020-02-15T06:59:54Z +10989,406,2,7604,7.99,2005-07-27T23:54:52Z,2020-02-15T06:59:54Z +10990,406,2,8080,4.99,2005-07-28T18:05:06Z,2020-02-15T06:59:54Z +10991,406,2,8295,2.99,2005-07-29T02:42:14Z,2020-02-15T06:59:54Z +10992,406,2,8630,0.99,2005-07-29T14:07:59Z,2020-02-15T06:59:54Z +10993,406,1,8903,0.99,2005-07-30T01:08:06Z,2020-02-15T06:59:54Z +10994,406,2,8962,1.99,2005-07-30T03:43:45Z,2020-02-15T06:59:54Z +10995,406,2,9224,0.99,2005-07-30T13:25:37Z,2020-02-15T06:59:54Z +10996,406,1,9291,4.99,2005-07-30T16:03:39Z,2020-02-15T06:59:54Z +10997,406,2,9487,2.99,2005-07-30T23:40:22Z,2020-02-15T06:59:54Z +10998,406,1,9660,8.99,2005-07-31T06:03:17Z,2020-02-15T06:59:54Z +10999,406,1,10632,1.99,2005-08-01T15:36:56Z,2020-02-15T06:59:54Z +11000,406,1,11603,4.99,2005-08-17T03:22:10Z,2020-02-15T06:59:54Z +11001,406,2,12505,5.99,2005-08-18T13:17:30Z,2020-02-15T06:59:54Z +11002,406,2,14205,6.99,2005-08-21T03:57:15Z,2020-02-15T06:59:54Z +11003,406,2,14421,2.99,2005-08-21T11:20:21Z,2020-02-15T06:59:54Z +11004,406,2,14601,2.99,2005-08-21T17:45:52Z,2020-02-15T06:59:54Z +11005,407,1,619,7.99,2005-05-28T15:52:26Z,2020-02-15T06:59:54Z +11006,407,1,1698,2.99,2005-06-16T13:04:42Z,2020-02-15T06:59:54Z +11007,407,2,2597,0.99,2005-06-19T05:53:46Z,2020-02-15T06:59:54Z +11008,407,1,4296,0.99,2005-07-07T16:16:03Z,2020-02-15T06:59:54Z +11009,407,1,5070,4.99,2005-07-09T04:58:26Z,2020-02-15T06:59:54Z +11010,407,2,5590,9.99,2005-07-10T04:23:11Z,2020-02-15T06:59:54Z +11011,407,1,6727,0.99,2005-07-12T13:54:25Z,2020-02-15T06:59:54Z +11012,407,1,7363,5.99,2005-07-27T14:58:29Z,2020-02-15T06:59:54Z +11013,407,2,7643,4.99,2005-07-28T01:19:44Z,2020-02-15T06:59:54Z +11014,407,1,8078,2.99,2005-07-28T17:54:42Z,2020-02-15T06:59:54Z +11015,407,1,8109,4.99,2005-07-28T19:07:44Z,2020-02-15T06:59:54Z +11016,407,1,8197,9.99,2005-07-28T23:04:10Z,2020-02-15T06:59:54Z +11017,407,2,8571,0.99,2005-07-29T11:48:39Z,2020-02-15T06:59:54Z +11018,407,1,8802,2.99,2005-07-29T21:25:51Z,2020-02-15T06:59:54Z +11019,407,2,10774,4.99,2005-08-01T20:54:33Z,2020-02-15T06:59:54Z +11020,407,1,11214,8.99,2005-08-02T12:19:50Z,2020-02-15T06:59:54Z +11021,407,1,11222,2.99,2005-08-02T12:32:28Z,2020-02-15T06:59:54Z +11022,407,2,11382,5.99,2005-08-02T18:20:52Z,2020-02-15T06:59:54Z +11023,407,2,11518,4.99,2005-08-16T23:59:49Z,2020-02-15T06:59:54Z +11024,407,1,11677,0.99,2005-08-17T06:06:26Z,2020-02-15T06:59:54Z +11025,407,2,12566,0.99,2005-08-18T15:13:04Z,2020-02-15T06:59:54Z +11026,407,2,12931,2.99,2005-08-19T05:11:47Z,2020-02-15T06:59:54Z +11027,407,1,13800,0.99,2005-08-20T12:40:48Z,2020-02-15T06:59:54Z +11028,407,2,13856,6.99,2005-08-20T14:49:32Z,2020-02-15T06:59:54Z +11029,407,2,14401,6.99,2005-08-21T10:36:20Z,2020-02-15T06:59:54Z +11030,407,2,15320,0.99,2005-08-22T20:17:49Z,2020-02-15T06:59:54Z +11031,407,2,15334,1.99,2005-08-22T20:44:35Z,2020-02-15T06:59:54Z +11032,408,2,3,3.99,2005-05-24T23:03:39Z,2020-02-15T06:59:54Z +11033,408,2,59,5.99,2005-05-25T08:56:42Z,2020-02-15T06:59:54Z +11034,408,1,526,2.99,2005-05-28T04:27:37Z,2020-02-15T06:59:54Z +11035,408,2,2479,4.99,2005-06-18T21:03:08Z,2020-02-15T06:59:54Z +11036,408,1,2564,2.99,2005-06-19T03:41:10Z,2020-02-15T06:59:54Z +11037,408,2,2728,2.99,2005-06-19T15:04:04Z,2020-02-15T06:59:54Z +11038,408,2,4330,3.99,2005-07-07T18:09:41Z,2020-02-15T06:59:54Z +11039,408,2,5073,0.99,2005-07-09T05:02:35Z,2020-02-15T06:59:54Z +11040,408,1,6062,0.99,2005-07-11T04:11:58Z,2020-02-15T06:59:54Z +11041,408,2,6203,4.99,2005-07-11T12:28:57Z,2020-02-15T06:59:54Z +11042,408,2,6826,2.99,2005-07-12T18:32:02Z,2020-02-15T06:59:54Z +11043,408,1,7053,4.99,2005-07-27T03:38:54Z,2020-02-15T06:59:54Z +11044,408,2,7996,4.99,2005-07-28T15:00:49Z,2020-02-15T06:59:54Z +11045,408,2,8251,4.99,2005-07-29T00:50:14Z,2020-02-15T06:59:54Z +11046,408,2,8469,3.99,2005-07-29T08:26:27Z,2020-02-15T06:59:54Z +11047,408,2,8902,6.99,2005-07-30T01:08:06Z,2020-02-15T06:59:54Z +11048,408,1,9052,0.99,2005-07-30T07:06:08Z,2020-02-15T06:59:54Z +11049,408,2,9757,4.99,2005-07-31T09:25:14Z,2020-02-15T06:59:54Z +11050,408,2,11115,2.99,2005-08-02T08:31:06Z,2020-02-15T06:59:54Z +11051,408,1,12140,2.99,2005-08-17T23:57:55Z,2020-02-15T06:59:54Z +11052,408,1,12338,4.99,2005-08-18T07:04:24Z,2020-02-15T06:59:54Z +11053,408,1,12498,2.99,2005-08-18T13:01:08Z,2020-02-15T06:59:54Z +11054,408,2,12900,0.99,2005-08-19T04:03:49Z,2020-02-15T06:59:54Z +11055,408,1,13508,7.99,2005-08-20T02:12:54Z,2020-02-15T06:59:54Z +11056,408,2,13744,3.99,2005-08-20T10:51:45Z,2020-02-15T06:59:54Z +11057,408,1,13944,2.99,2005-08-20T17:41:16Z,2020-02-15T06:59:54Z +11058,408,2,14733,4.99,2005-08-21T22:22:33Z,2020-02-15T06:59:54Z +11059,408,1,15628,2.99,2005-08-23T07:28:04Z,2020-02-15T06:59:54Z +11060,408,2,15716,1.99,2005-08-23T11:02:00Z,2020-02-15T06:59:54Z +11061,408,1,15765,6.99,2005-08-23T13:06:19Z,2020-02-15T06:59:54Z +11062,409,1,310,6.99,2005-05-26T22:41:07Z,2020-02-15T06:59:54Z +11063,409,2,1226,5.99,2005-06-15T03:46:10Z,2020-02-15T06:59:54Z +11064,409,2,2310,8.99,2005-06-18T08:45:59Z,2020-02-15T06:59:54Z +11065,409,1,3866,5.99,2005-07-06T17:47:20Z,2020-02-15T06:59:54Z +11066,409,2,4550,4.99,2005-07-08T04:34:00Z,2020-02-15T06:59:54Z +11067,409,1,5175,3.99,2005-07-09T09:34:28Z,2020-02-15T06:59:54Z +11068,409,2,5306,5.99,2005-07-09T15:56:45Z,2020-02-15T06:59:54Z +11069,409,1,5422,0.99,2005-07-09T20:55:47Z,2020-02-15T06:59:54Z +11070,409,1,5848,2.99,2005-07-10T17:28:14Z,2020-02-15T06:59:54Z +11071,409,1,5955,7.99,2005-07-10T23:22:10Z,2020-02-15T06:59:54Z +11072,409,2,6026,4.99,2005-07-11T02:21:43Z,2020-02-15T06:59:54Z +11073,409,1,6596,2.99,2005-07-12T07:32:59Z,2020-02-15T06:59:54Z +11074,409,2,7673,2.99,2005-07-28T02:53:53Z,2020-02-15T06:59:54Z +11075,409,2,7940,0.99,2005-07-28T12:46:47Z,2020-02-15T06:59:54Z +11076,409,1,8037,4.99,2005-07-28T16:31:20Z,2020-02-15T06:59:54Z +11077,409,2,8265,5.99,2005-07-29T01:20:15Z,2020-02-15T06:59:54Z +11078,409,1,8726,1.99,2005-07-29T18:09:22Z,2020-02-15T06:59:54Z +11079,409,2,9267,0.99,2005-07-30T14:59:05Z,2020-02-15T06:59:54Z +11080,409,2,12830,0.99,2005-08-19T01:40:25Z,2020-02-15T06:59:54Z +11081,409,1,13392,8.99,2005-08-19T22:03:22Z,2020-02-15T06:59:54Z +11082,409,2,13632,6.99,2005-08-20T07:10:52Z,2020-02-15T06:59:54Z +11083,409,1,14103,1.99,2005-08-21T00:37:00Z,2020-02-15T06:59:54Z +11084,409,1,14697,4.99,2005-08-21T20:49:21Z,2020-02-15T06:59:54Z +11085,410,1,1514,2.99,2005-06-15T22:57:34Z,2020-02-15T06:59:54Z +11086,410,1,2073,2.99,2005-06-17T16:33:59Z,2020-02-15T06:59:54Z +11087,410,1,2255,4.99,2005-06-18T05:21:12Z,2020-02-15T06:59:54Z +11088,410,2,2400,5.99,2005-06-18T16:10:46Z,2020-02-15T06:59:54Z +11089,410,2,2971,0.99,2005-06-20T07:56:00Z,2020-02-15T06:59:54Z +11090,410,1,3249,4.99,2005-06-21T03:13:19Z,2020-02-15T06:59:54Z +11091,410,2,4062,0.99,2005-07-07T04:22:27Z,2020-02-15T06:59:54Z +11092,410,1,4267,0.99,2005-07-07T14:35:30Z,2020-02-15T06:59:54Z +11093,410,1,5150,3.99,2005-07-09T08:28:40Z,2020-02-15T06:59:54Z +11094,410,1,5192,4.99,2005-07-09T10:27:09Z,2020-02-15T06:59:54Z +11095,410,2,5330,5.99,2005-07-09T16:53:57Z,2020-02-15T06:59:54Z +11096,410,1,5336,2.99,2005-07-09T17:01:08Z,2020-02-15T06:59:54Z +11097,410,1,6148,4.99,2005-07-11T09:14:22Z,2020-02-15T06:59:54Z +11098,410,2,6218,5.99,2005-07-11T13:14:58Z,2020-02-15T06:59:54Z +11099,410,2,7350,4.99,2005-07-27T14:34:14Z,2020-02-15T06:59:54Z +11100,410,2,7407,5.99,2005-07-27T16:29:04Z,2020-02-15T06:59:54Z +11101,410,1,7523,4.99,2005-07-27T21:11:23Z,2020-02-15T06:59:54Z +11102,410,2,8625,3.99,2005-07-29T13:59:13Z,2020-02-15T06:59:54Z +11103,410,1,8882,0.99,2005-07-30T00:24:05Z,2020-02-15T06:59:54Z +11104,410,1,9263,2.99,2005-07-30T14:48:24Z,2020-02-15T06:59:54Z +11105,410,1,10402,4.99,2005-08-01T07:27:19Z,2020-02-15T06:59:54Z +11106,410,1,10837,2.99,2005-08-01T23:30:22Z,2020-02-15T06:59:54Z +11107,410,1,11107,0.99,2005-08-02T08:19:38Z,2020-02-15T06:59:54Z +11108,410,1,11187,10.99,2005-08-02T11:16:19Z,2020-02-15T06:59:54Z +11109,410,1,11472,6.99,2005-08-02T21:49:06Z,2020-02-15T06:59:54Z +11110,410,1,11694,6.99,2005-08-17T06:57:30Z,2020-02-15T06:59:54Z +11111,410,2,12955,8.99,2005-08-19T06:05:58Z,2020-02-15T06:59:54Z +11112,410,1,13460,4.99,2005-08-20T00:48:24Z,2020-02-15T06:59:54Z +11113,410,2,13748,2.99,2005-08-20T10:59:54Z,2020-02-15T06:59:54Z +11114,410,2,13948,6.99,2005-08-20T17:50:48Z,2020-02-15T06:59:54Z +11115,410,1,14237,3.99,2005-08-21T05:15:00Z,2020-02-15T06:59:54Z +11116,410,2,14298,4.99,2005-08-21T07:17:10Z,2020-02-15T06:59:54Z +11117,410,1,14319,4.99,2005-08-21T08:00:55Z,2020-02-15T06:59:54Z +11118,410,2,14819,2.99,2005-08-22T01:17:19Z,2020-02-15T06:59:54Z +11119,410,1,15211,2.99,2005-08-22T16:40:21Z,2020-02-15T06:59:54Z +11120,410,2,15392,3.99,2005-08-22T23:02:15Z,2020-02-15T06:59:54Z +11121,410,1,15518,4.99,2005-08-23T03:19:34Z,2020-02-15T06:59:54Z +11122,410,1,12665,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11123,411,2,686,4.99,2005-05-29T00:27:10Z,2020-02-15T06:59:54Z +11124,411,2,972,1.99,2005-05-30T20:21:07Z,2020-02-15T06:59:54Z +11125,411,1,1985,0.99,2005-06-17T10:31:37Z,2020-02-15T06:59:54Z +11126,411,2,1997,2.99,2005-06-17T11:19:43Z,2020-02-15T06:59:54Z +11127,411,2,2712,0.99,2005-06-19T14:20:13Z,2020-02-15T06:59:54Z +11128,411,1,3928,2.99,2005-07-06T20:52:09Z,2020-02-15T06:59:54Z +11129,411,2,4146,0.99,2005-07-07T08:30:16Z,2020-02-15T06:59:54Z +11130,411,1,4246,2.99,2005-07-07T13:49:03Z,2020-02-15T06:59:54Z +11131,411,2,5357,5.99,2005-07-09T18:08:59Z,2020-02-15T06:59:54Z +11132,411,1,5800,2.99,2005-07-10T14:58:36Z,2020-02-15T06:59:54Z +11133,411,1,7102,1.99,2005-07-27T05:07:21Z,2020-02-15T06:59:54Z +11134,411,2,7395,0.99,2005-07-27T16:03:11Z,2020-02-15T06:59:54Z +11135,411,1,7513,2.99,2005-07-27T20:51:04Z,2020-02-15T06:59:54Z +11136,411,1,7813,2.99,2005-07-28T08:08:27Z,2020-02-15T06:59:54Z +11137,411,1,8023,0.99,2005-07-28T15:53:29Z,2020-02-15T06:59:54Z +11138,411,2,8613,5.99,2005-07-29T13:30:58Z,2020-02-15T06:59:54Z +11139,411,2,9622,0.99,2005-07-31T04:21:45Z,2020-02-15T06:59:54Z +11140,411,2,11294,2.99,2005-08-02T15:08:27Z,2020-02-15T06:59:54Z +11141,411,1,11997,5.99,2005-08-17T18:34:38Z,2020-02-15T06:59:54Z +11142,411,2,13634,0.99,2005-08-20T07:16:45Z,2020-02-15T06:59:54Z +11143,411,2,13656,7.99,2005-08-20T08:01:07Z,2020-02-15T06:59:54Z +11144,411,2,14480,2.99,2005-08-21T13:36:40Z,2020-02-15T06:59:54Z +11145,411,1,14772,5.99,2005-08-21T23:50:39Z,2020-02-15T06:59:54Z +11146,411,2,14996,2.99,2005-08-22T07:52:41Z,2020-02-15T06:59:54Z +11147,411,1,15936,0.99,2005-08-23T18:43:11Z,2020-02-15T06:59:54Z +11148,411,2,13246,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11149,412,2,191,0.99,2005-05-26T06:14:06Z,2020-02-15T06:59:54Z +11150,412,1,333,4.99,2005-05-27T02:52:21Z,2020-02-15T06:59:54Z +11151,412,1,717,0.99,2005-05-29T04:37:44Z,2020-02-15T06:59:54Z +11152,412,2,1043,3.99,2005-05-31T06:11:40Z,2020-02-15T06:59:54Z +11153,412,1,3292,2.99,2005-06-21T06:59:11Z,2020-02-15T06:59:54Z +11154,412,2,3888,0.99,2005-07-06T18:54:20Z,2020-02-15T06:59:54Z +11155,412,2,4074,0.99,2005-07-07T04:49:49Z,2020-02-15T06:59:54Z +11156,412,1,8036,0.99,2005-07-28T16:27:43Z,2020-02-15T06:59:54Z +11157,412,2,8330,8.99,2005-07-29T04:09:07Z,2020-02-15T06:59:54Z +11158,412,1,8411,8.99,2005-07-29T06:44:23Z,2020-02-15T06:59:54Z +11159,412,1,8674,0.99,2005-07-29T15:54:22Z,2020-02-15T06:59:54Z +11160,412,1,9881,4.99,2005-07-31T13:50:38Z,2020-02-15T06:59:54Z +11161,412,2,10381,2.99,2005-08-01T06:36:37Z,2020-02-15T06:59:54Z +11162,412,1,10467,5.99,2005-08-01T09:45:58Z,2020-02-15T06:59:54Z +11163,412,2,11027,4.99,2005-08-02T05:47:10Z,2020-02-15T06:59:54Z +11164,412,1,14068,3.99,2005-08-20T22:50:59Z,2020-02-15T06:59:54Z +11165,412,1,14535,6.99,2005-08-21T15:22:37Z,2020-02-15T06:59:54Z +11166,412,2,15354,4.99,2005-08-22T21:18:59Z,2020-02-15T06:59:54Z +11167,412,2,15732,4.99,2005-08-23T11:35:12Z,2020-02-15T06:59:54Z +11168,412,1,15781,8.99,2005-08-23T13:41:05Z,2020-02-15T06:59:54Z +11169,412,1,15314,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11170,413,1,40,4.99,2005-05-25T05:09:04Z,2020-02-15T06:59:54Z +11171,413,1,999,4.99,2005-05-31T00:25:10Z,2020-02-15T06:59:54Z +11172,413,2,2130,5.99,2005-06-17T21:00:44Z,2020-02-15T06:59:54Z +11173,413,2,2545,4.99,2005-06-19T02:23:36Z,2020-02-15T06:59:54Z +11174,413,1,3762,4.99,2005-07-06T12:52:49Z,2020-02-15T06:59:54Z +11175,413,2,4491,0.99,2005-07-08T01:30:46Z,2020-02-15T06:59:54Z +11176,413,1,5897,7.99,2005-07-10T20:16:14Z,2020-02-15T06:59:54Z +11177,413,2,7100,4.99,2005-07-27T05:05:01Z,2020-02-15T06:59:54Z +11178,413,1,7635,0.99,2005-07-28T01:08:11Z,2020-02-15T06:59:54Z +11179,413,2,7731,0.99,2005-07-28T05:01:18Z,2020-02-15T06:59:54Z +11180,413,1,10909,2.99,2005-08-02T01:53:59Z,2020-02-15T06:59:54Z +11181,413,2,11304,2.99,2005-08-02T15:40:10Z,2020-02-15T06:59:54Z +11182,413,1,11468,0.99,2005-08-02T21:47:26Z,2020-02-15T06:59:54Z +11183,413,1,11532,0.99,2005-08-17T00:34:14Z,2020-02-15T06:59:54Z +11184,413,2,12552,2.99,2005-08-18T14:46:34Z,2020-02-15T06:59:54Z +11185,413,1,13010,3.99,2005-08-19T07:52:21Z,2020-02-15T06:59:54Z +11186,413,1,13318,2.99,2005-08-19T19:33:57Z,2020-02-15T06:59:54Z +11187,413,2,13824,4.99,2005-08-20T13:43:12Z,2020-02-15T06:59:54Z +11188,413,2,13887,4.99,2005-08-20T15:39:00Z,2020-02-15T06:59:54Z +11189,413,1,14773,2.99,2005-08-21T23:50:57Z,2020-02-15T06:59:54Z +11190,413,1,15678,2.99,2005-08-23T09:23:45Z,2020-02-15T06:59:54Z +11191,414,1,85,4.99,2005-05-25T13:05:34Z,2020-02-15T06:59:54Z +11192,414,1,261,3.99,2005-05-26T15:44:23Z,2020-02-15T06:59:54Z +11193,414,1,2246,4.99,2005-06-18T04:54:29Z,2020-02-15T06:59:54Z +11194,414,1,2559,9.99,2005-06-19T03:09:46Z,2020-02-15T06:59:54Z +11195,414,1,3318,5.99,2005-06-21T08:23:05Z,2020-02-15T06:59:54Z +11196,414,1,3957,10.99,2005-07-06T22:05:47Z,2020-02-15T06:59:54Z +11197,414,1,4437,3.99,2005-07-07T22:55:41Z,2020-02-15T06:59:54Z +11198,414,2,6462,7.99,2005-07-12T01:15:24Z,2020-02-15T06:59:54Z +11199,414,2,6728,0.99,2005-07-12T13:56:48Z,2020-02-15T06:59:54Z +11200,414,2,6845,0.99,2005-07-12T19:20:41Z,2020-02-15T06:59:54Z +11201,414,1,7009,0.99,2005-07-27T01:45:44Z,2020-02-15T06:59:54Z +11202,414,1,7779,2.99,2005-07-28T07:11:11Z,2020-02-15T06:59:54Z +11203,414,1,9650,2.99,2005-07-31T05:47:32Z,2020-02-15T06:59:54Z +11204,414,2,9991,2.99,2005-07-31T17:26:27Z,2020-02-15T06:59:54Z +11205,414,2,10107,5.99,2005-07-31T21:01:46Z,2020-02-15T06:59:54Z +11206,414,1,11706,0.99,2005-08-17T07:23:46Z,2020-02-15T06:59:54Z +11207,414,2,12930,4.99,2005-08-19T05:11:32Z,2020-02-15T06:59:54Z +11208,414,1,13042,0.99,2005-08-19T09:06:08Z,2020-02-15T06:59:54Z +11209,414,1,13242,2.99,2005-08-19T16:28:47Z,2020-02-15T06:59:54Z +11210,414,1,13308,7.99,2005-08-19T18:59:42Z,2020-02-15T06:59:54Z +11211,414,1,13404,0.99,2005-08-19T22:18:42Z,2020-02-15T06:59:54Z +11212,414,2,13494,2.99,2005-08-20T01:36:34Z,2020-02-15T06:59:54Z +11213,414,2,13657,4.99,2005-08-20T08:01:39Z,2020-02-15T06:59:54Z +11214,414,1,15140,6.99,2005-08-22T13:39:20Z,2020-02-15T06:59:54Z +11215,414,2,15481,0.99,2005-08-23T01:59:14Z,2020-02-15T06:59:54Z +11216,415,2,665,4.99,2005-05-28T21:38:39Z,2020-02-15T06:59:54Z +11217,415,2,1867,4.99,2005-06-17T02:01:37Z,2020-02-15T06:59:54Z +11218,415,1,3211,2.99,2005-06-21T01:01:29Z,2020-02-15T06:59:54Z +11219,415,2,4926,8.99,2005-07-08T22:01:48Z,2020-02-15T06:59:54Z +11220,415,2,5665,0.99,2005-07-10T08:10:08Z,2020-02-15T06:59:54Z +11221,415,2,5733,0.99,2005-07-10T11:37:24Z,2020-02-15T06:59:54Z +11222,415,2,6491,5.99,2005-07-12T02:28:31Z,2020-02-15T06:59:54Z +11223,415,1,6505,3.99,2005-07-12T03:27:37Z,2020-02-15T06:59:54Z +11224,415,1,7379,4.99,2005-07-27T15:36:43Z,2020-02-15T06:59:54Z +11225,415,2,7624,0.99,2005-07-28T00:37:44Z,2020-02-15T06:59:54Z +11226,415,1,7748,4.99,2005-07-28T05:52:23Z,2020-02-15T06:59:54Z +11227,415,2,8317,2.99,2005-07-29T03:39:07Z,2020-02-15T06:59:54Z +11228,415,2,9586,2.99,2005-07-31T03:07:16Z,2020-02-15T06:59:54Z +11229,415,1,9852,2.99,2005-07-31T12:52:17Z,2020-02-15T06:59:54Z +11230,415,1,10263,5.99,2005-08-01T03:02:48Z,2020-02-15T06:59:54Z +11231,415,1,10553,2.99,2005-08-01T12:54:06Z,2020-02-15T06:59:54Z +11232,415,2,11310,1.99,2005-08-02T15:51:58Z,2020-02-15T06:59:54Z +11233,415,2,12128,5.99,2005-08-17T23:31:09Z,2020-02-15T06:59:54Z +11234,415,2,12588,2.99,2005-08-18T16:04:45Z,2020-02-15T06:59:54Z +11235,415,2,13729,8.99,2005-08-20T10:17:08Z,2020-02-15T06:59:54Z +11236,415,1,14992,4.99,2005-08-22T07:51:47Z,2020-02-15T06:59:54Z +11237,415,2,15121,4.99,2005-08-22T12:46:37Z,2020-02-15T06:59:54Z +11238,415,1,15959,0.99,2005-08-23T19:27:04Z,2020-02-15T06:59:54Z +11239,416,2,253,0.99,2005-05-26T14:43:14Z,2020-02-15T06:59:54Z +11240,416,2,724,3.99,2005-05-29T05:53:23Z,2020-02-15T06:59:54Z +11241,416,2,1031,2.99,2005-05-31T04:23:01Z,2020-02-15T06:59:54Z +11242,416,2,1158,2.99,2005-06-14T22:53:33Z,2020-02-15T06:59:54Z +11243,416,1,1343,4.99,2005-06-15T12:27:19Z,2020-02-15T06:59:54Z +11244,416,2,1553,0.99,2005-06-16T02:02:44Z,2020-02-15T06:59:54Z +11245,416,2,1596,2.99,2005-06-16T05:30:58Z,2020-02-15T06:59:54Z +11246,416,2,1771,0.99,2005-06-16T18:12:17Z,2020-02-15T06:59:54Z +11247,416,1,3833,3.99,2005-07-06T16:18:28Z,2020-02-15T06:59:54Z +11248,416,1,3868,2.99,2005-07-06T17:54:13Z,2020-02-15T06:59:54Z +11249,416,1,6097,2.99,2005-07-11T06:21:43Z,2020-02-15T06:59:54Z +11250,416,1,6879,7.99,2005-07-12T20:37:37Z,2020-02-15T06:59:54Z +11251,416,1,7889,0.99,2005-07-28T10:43:21Z,2020-02-15T06:59:54Z +11252,416,1,7917,2.99,2005-07-28T11:56:57Z,2020-02-15T06:59:54Z +11253,416,2,8349,5.99,2005-07-29T04:50:22Z,2020-02-15T06:59:54Z +11254,416,2,8588,2.99,2005-07-29T12:22:20Z,2020-02-15T06:59:54Z +11255,416,2,8648,2.99,2005-07-29T14:56:21Z,2020-02-15T06:59:54Z +11256,416,2,9383,2.99,2005-07-30T19:24:50Z,2020-02-15T06:59:54Z +11257,416,1,10254,3.99,2005-08-01T02:42:03Z,2020-02-15T06:59:54Z +11258,416,1,10354,2.99,2005-08-01T05:47:10Z,2020-02-15T06:59:54Z +11259,416,1,10742,6.99,2005-08-01T19:53:13Z,2020-02-15T06:59:54Z +11260,416,1,10937,6.99,2005-08-02T03:00:18Z,2020-02-15T06:59:54Z +11261,416,2,11047,5.99,2005-08-02T06:09:20Z,2020-02-15T06:59:54Z +11262,416,1,11557,6.99,2005-08-17T01:19:20Z,2020-02-15T06:59:54Z +11263,416,1,12722,8.99,2005-08-18T21:33:53Z,2020-02-15T06:59:54Z +11264,416,1,12932,4.99,2005-08-19T05:17:30Z,2020-02-15T06:59:54Z +11265,416,1,14239,4.99,2005-08-21T05:18:57Z,2020-02-15T06:59:54Z +11266,416,1,15235,1.99,2005-08-22T17:43:12Z,2020-02-15T06:59:54Z +11267,416,2,15470,4.99,2005-08-23T01:35:12Z,2020-02-15T06:59:54Z +11268,416,1,15727,2.99,2005-08-23T11:28:49Z,2020-02-15T06:59:54Z +11269,416,2,15761,0.99,2005-08-23T12:55:51Z,2020-02-15T06:59:54Z +11270,417,1,267,4.99,2005-05-26T16:16:21Z,2020-02-15T06:59:54Z +11271,417,2,630,8.99,2005-05-28T17:24:51Z,2020-02-15T06:59:54Z +11272,417,2,833,4.99,2005-05-29T23:21:56Z,2020-02-15T06:59:54Z +11273,417,1,1921,3.99,2005-06-17T06:04:16Z,2020-02-15T06:59:54Z +11274,417,1,3952,4.99,2005-07-06T21:51:31Z,2020-02-15T06:59:54Z +11275,417,1,4418,2.99,2005-07-07T22:05:30Z,2020-02-15T06:59:54Z +11276,417,1,4421,9.99,2005-07-07T22:07:55Z,2020-02-15T06:59:54Z +11277,417,2,6258,6.99,2005-07-11T15:24:32Z,2020-02-15T06:59:54Z +11278,417,1,6312,4.99,2005-07-11T18:19:02Z,2020-02-15T06:59:54Z +11279,417,1,8877,2.99,2005-07-30T00:15:22Z,2020-02-15T06:59:54Z +11280,417,2,9049,2.99,2005-07-30T06:57:28Z,2020-02-15T06:59:54Z +11281,417,1,10478,0.99,2005-08-01T10:09:06Z,2020-02-15T06:59:54Z +11282,417,1,11217,7.99,2005-08-02T12:26:31Z,2020-02-15T06:59:54Z +11283,417,1,11291,6.99,2005-08-02T14:57:58Z,2020-02-15T06:59:54Z +11284,417,2,11303,0.99,2005-08-02T15:39:18Z,2020-02-15T06:59:54Z +11285,417,2,12074,0.99,2005-08-17T21:50:57Z,2020-02-15T06:59:54Z +11286,417,2,12281,4.99,2005-08-18T04:50:32Z,2020-02-15T06:59:54Z +11287,417,1,13545,4.99,2005-08-20T03:50:15Z,2020-02-15T06:59:54Z +11288,417,1,13927,1.99,2005-08-20T17:11:58Z,2020-02-15T06:59:54Z +11289,417,2,14121,4.99,2005-08-21T01:26:33Z,2020-02-15T06:59:54Z +11290,417,1,14304,6.99,2005-08-21T07:23:10Z,2020-02-15T06:59:54Z +11291,417,1,14607,2.99,2005-08-21T17:56:50Z,2020-02-15T06:59:54Z +11292,417,2,14882,2.99,2005-08-22T03:52:21Z,2020-02-15T06:59:54Z +11293,417,1,15795,0.99,2005-08-23T14:07:56Z,2020-02-15T06:59:54Z +11294,417,2,13261,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11295,418,1,2825,2.99,2005-06-19T20:32:19Z,2020-02-15T06:59:54Z +11296,418,2,2943,2.99,2005-06-20T05:43:05Z,2020-02-15T06:59:54Z +11297,418,2,2969,2.99,2005-06-20T07:44:27Z,2020-02-15T06:59:54Z +11298,418,1,3805,0.99,2005-07-06T15:08:42Z,2020-02-15T06:59:54Z +11299,418,2,4852,7.99,2005-07-08T18:43:15Z,2020-02-15T06:59:54Z +11300,418,1,4865,2.99,2005-07-08T19:09:04Z,2020-02-15T06:59:54Z +11301,418,1,4938,0.99,2005-07-08T22:32:53Z,2020-02-15T06:59:54Z +11302,418,1,6150,4.99,2005-07-11T09:23:56Z,2020-02-15T06:59:54Z +11303,418,1,6970,4.99,2005-07-27T00:26:14Z,2020-02-15T06:59:54Z +11304,418,2,8546,5.99,2005-07-29T11:08:48Z,2020-02-15T06:59:54Z +11305,418,2,8591,0.99,2005-07-29T12:32:33Z,2020-02-15T06:59:54Z +11306,418,2,8886,10.99,2005-07-30T00:36:31Z,2020-02-15T06:59:54Z +11307,418,1,9558,4.99,2005-07-31T02:14:35Z,2020-02-15T06:59:54Z +11308,418,2,10537,5.99,2005-08-01T12:22:28Z,2020-02-15T06:59:54Z +11309,418,1,10709,0.99,2005-08-01T18:43:57Z,2020-02-15T06:59:54Z +11310,418,2,10915,2.99,2005-08-02T02:05:04Z,2020-02-15T06:59:54Z +11311,418,1,11270,2.99,2005-08-02T14:18:07Z,2020-02-15T06:59:54Z +11312,418,2,11322,3.99,2005-08-02T16:23:17Z,2020-02-15T06:59:54Z +11313,418,2,11409,1.99,2005-08-02T19:26:51Z,2020-02-15T06:59:54Z +11314,418,1,11650,4.99,2005-08-17T05:00:03Z,2020-02-15T06:59:54Z +11315,418,1,11769,2.99,2005-08-17T10:04:49Z,2020-02-15T06:59:54Z +11316,418,1,11910,0.99,2005-08-17T15:44:37Z,2020-02-15T06:59:54Z +11317,418,2,13312,0.99,2005-08-19T19:09:14Z,2020-02-15T06:59:54Z +11318,418,1,13537,2.99,2005-08-20T03:39:15Z,2020-02-15T06:59:54Z +11319,418,1,13970,0.99,2005-08-20T18:43:34Z,2020-02-15T06:59:54Z +11320,418,1,14484,0.99,2005-08-21T13:47:29Z,2020-02-15T06:59:54Z +11321,418,1,14836,4.99,2005-08-22T01:52:26Z,2020-02-15T06:59:54Z +11322,418,2,14860,2.99,2005-08-22T02:47:07Z,2020-02-15T06:59:54Z +11323,418,1,15466,4.99,2005-08-23T01:16:55Z,2020-02-15T06:59:54Z +11324,418,2,15957,5.99,2005-08-23T19:21:22Z,2020-02-15T06:59:54Z +11325,419,1,62,2.99,2005-05-25T09:18:52Z,2020-02-15T06:59:54Z +11326,419,2,2793,2.99,2005-06-19T18:52:37Z,2020-02-15T06:59:54Z +11327,419,1,3596,0.99,2005-07-06T05:03:11Z,2020-02-15T06:59:54Z +11328,419,1,3694,4.99,2005-07-06T10:01:23Z,2020-02-15T06:59:54Z +11329,419,1,4224,0.99,2005-07-07T12:24:21Z,2020-02-15T06:59:54Z +11330,419,2,5333,5.99,2005-07-09T16:59:38Z,2020-02-15T06:59:54Z +11331,419,2,5863,0.99,2005-07-10T18:25:23Z,2020-02-15T06:59:54Z +11332,419,1,5900,3.99,2005-07-10T20:21:54Z,2020-02-15T06:59:54Z +11333,419,2,5933,0.99,2005-07-10T22:06:48Z,2020-02-15T06:59:54Z +11334,419,2,6173,0.99,2005-07-11T10:33:11Z,2020-02-15T06:59:54Z +11335,419,2,6587,3.99,2005-07-12T06:56:26Z,2020-02-15T06:59:54Z +11336,419,1,7362,4.99,2005-07-27T14:58:27Z,2020-02-15T06:59:54Z +11337,419,1,7619,2.99,2005-07-28T00:25:41Z,2020-02-15T06:59:54Z +11338,419,1,7796,4.99,2005-07-28T07:39:39Z,2020-02-15T06:59:54Z +11339,419,1,10150,2.99,2005-07-31T22:22:00Z,2020-02-15T06:59:54Z +11340,419,1,10372,2.99,2005-08-01T06:23:48Z,2020-02-15T06:59:54Z +11341,419,2,11025,4.99,2005-08-02T05:39:12Z,2020-02-15T06:59:54Z +11342,419,1,11313,2.99,2005-08-02T16:02:51Z,2020-02-15T06:59:54Z +11343,419,2,11323,2.99,2005-08-02T16:29:57Z,2020-02-15T06:59:54Z +11344,419,1,11425,2.99,2005-08-02T19:58:48Z,2020-02-15T06:59:54Z +11345,419,2,11689,6.99,2005-08-17T06:42:08Z,2020-02-15T06:59:54Z +11346,419,1,12460,7.99,2005-08-18T11:25:13Z,2020-02-15T06:59:54Z +11347,419,1,12720,5.99,2005-08-18T21:28:42Z,2020-02-15T06:59:54Z +11348,419,2,14308,0.99,2005-08-21T07:43:21Z,2020-02-15T06:59:54Z +11349,419,2,15779,4.99,2005-08-23T13:33:46Z,2020-02-15T06:59:54Z +11350,420,2,744,4.99,2005-05-29T09:13:08Z,2020-02-15T06:59:54Z +11351,420,2,2672,3.99,2005-06-19T11:42:04Z,2020-02-15T06:59:54Z +11352,420,1,2698,0.99,2005-06-19T13:29:11Z,2020-02-15T06:59:54Z +11353,420,1,2726,0.99,2005-06-19T15:02:20Z,2020-02-15T06:59:54Z +11354,420,1,4176,4.99,2005-07-07T10:03:34Z,2020-02-15T06:59:54Z +11355,420,2,5081,4.99,2005-07-09T05:25:20Z,2020-02-15T06:59:54Z +11356,420,1,5168,4.99,2005-07-09T09:20:01Z,2020-02-15T06:59:54Z +11357,420,2,5911,0.99,2005-07-10T20:51:42Z,2020-02-15T06:59:54Z +11358,420,2,6086,3.99,2005-07-11T05:29:03Z,2020-02-15T06:59:54Z +11359,420,2,6096,4.99,2005-07-11T06:18:04Z,2020-02-15T06:59:54Z +11360,420,2,6582,4.99,2005-07-12T06:28:12Z,2020-02-15T06:59:54Z +11361,420,1,6588,4.99,2005-07-12T06:57:40Z,2020-02-15T06:59:54Z +11362,420,2,7081,2.99,2005-07-27T04:25:59Z,2020-02-15T06:59:54Z +11363,420,2,8485,0.99,2005-07-29T08:53:09Z,2020-02-15T06:59:54Z +11364,420,1,9362,0.99,2005-07-30T18:44:16Z,2020-02-15T06:59:54Z +11365,420,2,10291,4.99,2005-08-01T03:39:57Z,2020-02-15T06:59:54Z +11366,420,2,10601,10.99,2005-08-01T14:25:40Z,2020-02-15T06:59:54Z +11367,420,1,10766,4.99,2005-08-01T20:36:29Z,2020-02-15T06:59:54Z +11368,420,2,11236,5.99,2005-08-02T13:17:21Z,2020-02-15T06:59:54Z +11369,420,2,14525,0.99,2005-08-21T15:06:49Z,2020-02-15T06:59:54Z +11370,420,2,15597,0.99,2005-08-23T06:21:20Z,2020-02-15T06:59:54Z +11371,421,1,507,0.99,2005-05-28T02:31:19Z,2020-02-15T06:59:54Z +11372,421,1,931,0.99,2005-05-30T12:53:01Z,2020-02-15T06:59:54Z +11373,421,1,1693,4.99,2005-06-16T12:39:51Z,2020-02-15T06:59:54Z +11374,421,2,2407,2.99,2005-06-18T16:50:41Z,2020-02-15T06:59:54Z +11375,421,1,3170,4.99,2005-06-20T22:02:54Z,2020-02-15T06:59:54Z +11376,421,1,3491,7.99,2005-07-05T23:41:08Z,2020-02-15T06:59:54Z +11377,421,2,3703,5.99,2005-07-06T10:15:26Z,2020-02-15T06:59:54Z +11378,421,1,3988,8.99,2005-07-06T23:30:42Z,2020-02-15T06:59:54Z +11379,421,2,4456,5.99,2005-07-07T23:45:21Z,2020-02-15T06:59:54Z +11380,421,1,6220,0.99,2005-07-11T13:22:06Z,2020-02-15T06:59:54Z +11381,421,2,6960,3.99,2005-07-27T00:08:33Z,2020-02-15T06:59:54Z +11382,421,2,7449,4.99,2005-07-27T18:17:41Z,2020-02-15T06:59:54Z +11383,421,2,8025,2.99,2005-07-28T16:03:27Z,2020-02-15T06:59:54Z +11384,421,1,8268,4.99,2005-07-29T01:23:23Z,2020-02-15T06:59:54Z +11385,421,1,8725,4.99,2005-07-29T18:08:42Z,2020-02-15T06:59:54Z +11386,421,2,9377,4.99,2005-07-30T19:12:18Z,2020-02-15T06:59:54Z +11387,421,2,9875,0.99,2005-07-31T13:37:41Z,2020-02-15T06:59:54Z +11388,421,1,10200,4.99,2005-08-01T00:39:05Z,2020-02-15T06:59:54Z +11389,421,2,11089,2.99,2005-08-02T07:52:20Z,2020-02-15T06:59:54Z +11390,421,1,11263,4.99,2005-08-02T14:02:19Z,2020-02-15T06:59:54Z +11391,421,1,11523,3.99,2005-08-17T00:10:10Z,2020-02-15T06:59:54Z +11392,421,1,12279,4.99,2005-08-18T04:47:30Z,2020-02-15T06:59:54Z +11393,421,2,13461,9.99,2005-08-20T00:49:04Z,2020-02-15T06:59:54Z +11394,421,1,13872,4.99,2005-08-20T15:10:30Z,2020-02-15T06:59:54Z +11395,421,1,14742,4.99,2005-08-21T22:39:01Z,2020-02-15T06:59:54Z +11396,421,1,14887,3.99,2005-08-22T04:04:31Z,2020-02-15T06:59:54Z +11397,421,2,15710,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11398,422,1,398,0.99,2005-05-27T12:44:03Z,2020-02-15T06:59:54Z +11399,422,1,1846,0.99,2005-06-17T00:02:44Z,2020-02-15T06:59:54Z +11400,422,1,1897,4.99,2005-06-17T04:26:23Z,2020-02-15T06:59:54Z +11401,422,2,2747,2.99,2005-06-19T16:22:07Z,2020-02-15T06:59:54Z +11402,422,1,2778,5.99,2005-06-19T18:18:12Z,2020-02-15T06:59:54Z +11403,422,1,3553,4.99,2005-07-06T02:35:41Z,2020-02-15T06:59:54Z +11404,422,2,4463,2.99,2005-07-08T00:04:59Z,2020-02-15T06:59:54Z +11405,422,2,4504,0.99,2005-07-08T02:19:27Z,2020-02-15T06:59:54Z +11406,422,1,5784,1.99,2005-07-10T14:03:28Z,2020-02-15T06:59:54Z +11407,422,2,7827,0.99,2005-07-28T08:37:22Z,2020-02-15T06:59:54Z +11408,422,2,8206,4.99,2005-07-28T23:20:31Z,2020-02-15T06:59:54Z +11409,422,2,9541,4.99,2005-07-31T01:40:14Z,2020-02-15T06:59:54Z +11410,422,2,10833,6.99,2005-08-01T23:25:55Z,2020-02-15T06:59:54Z +11411,422,2,11325,6.99,2005-08-02T16:33:11Z,2020-02-15T06:59:54Z +11412,422,1,11658,2.99,2005-08-17T05:19:17Z,2020-02-15T06:59:54Z +11413,422,1,11842,4.99,2005-08-17T13:13:37Z,2020-02-15T06:59:54Z +11414,422,1,12907,9.99,2005-08-19T04:16:13Z,2020-02-15T06:59:54Z +11415,422,2,13216,1.99,2005-08-19T15:36:05Z,2020-02-15T06:59:54Z +11416,422,2,13625,1.99,2005-08-20T06:52:03Z,2020-02-15T06:59:54Z +11417,422,2,13709,0.99,2005-08-20T09:34:51Z,2020-02-15T06:59:54Z +11418,422,2,13722,4.99,2005-08-20T10:03:45Z,2020-02-15T06:59:54Z +11419,422,1,14861,4.99,2005-08-22T02:48:05Z,2020-02-15T06:59:54Z +11420,422,1,15272,3.99,2005-08-22T18:49:40Z,2020-02-15T06:59:54Z +11421,422,1,15273,2.99,2005-08-22T18:53:28Z,2020-02-15T06:59:54Z +11422,422,2,15316,2.99,2005-08-22T20:07:03Z,2020-02-15T06:59:54Z +11423,422,2,15441,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11424,423,1,1504,3.99,2005-06-15T22:08:06Z,2020-02-15T06:59:54Z +11425,423,2,1827,0.99,2005-06-16T21:54:40Z,2020-02-15T06:59:54Z +11426,423,1,2600,6.99,2005-06-19T06:07:25Z,2020-02-15T06:59:54Z +11427,423,2,2758,6.99,2005-06-19T17:04:35Z,2020-02-15T06:59:54Z +11428,423,1,3072,8.99,2005-06-20T14:21:31Z,2020-02-15T06:59:54Z +11429,423,2,4105,0.99,2005-07-07T06:31:00Z,2020-02-15T06:59:54Z +11430,423,1,4250,0.99,2005-07-07T14:08:11Z,2020-02-15T06:59:54Z +11431,423,1,4679,2.99,2005-07-08T10:33:14Z,2020-02-15T06:59:54Z +11432,423,1,6506,1.99,2005-07-12T03:28:22Z,2020-02-15T06:59:54Z +11433,423,1,7016,5.99,2005-07-27T02:15:16Z,2020-02-15T06:59:54Z +11434,423,2,7141,2.99,2005-07-27T06:55:27Z,2020-02-15T06:59:54Z +11435,423,1,7157,4.99,2005-07-27T07:20:28Z,2020-02-15T06:59:54Z +11436,423,1,7290,0.99,2005-07-27T12:28:45Z,2020-02-15T06:59:54Z +11437,423,2,7539,9.99,2005-07-27T21:39:42Z,2020-02-15T06:59:54Z +11438,423,1,7849,9.99,2005-07-28T09:30:02Z,2020-02-15T06:59:54Z +11439,423,2,8082,3.99,2005-07-28T18:08:02Z,2020-02-15T06:59:54Z +11440,423,2,8595,9.99,2005-07-29T12:47:43Z,2020-02-15T06:59:54Z +11441,423,2,9026,2.99,2005-07-30T05:55:31Z,2020-02-15T06:59:54Z +11442,423,1,10488,2.99,2005-08-01T10:27:27Z,2020-02-15T06:59:54Z +11443,423,1,11091,2.99,2005-08-02T07:56:41Z,2020-02-15T06:59:54Z +11444,423,2,11514,4.99,2005-08-16T23:53:10Z,2020-02-15T06:59:54Z +11445,423,2,12806,4.99,2005-08-19T00:37:26Z,2020-02-15T06:59:54Z +11446,423,2,14191,6.99,2005-08-21T03:35:58Z,2020-02-15T06:59:54Z +11447,423,2,14902,4.99,2005-08-22T04:31:50Z,2020-02-15T06:59:54Z +11448,423,1,15380,0.99,2005-08-22T22:28:15Z,2020-02-15T06:59:54Z +11449,423,1,15755,4.99,2005-08-23T12:46:38Z,2020-02-15T06:59:54Z +11450,424,2,403,0.99,2005-05-27T13:28:52Z,2020-02-15T06:59:54Z +11451,424,2,3044,4.99,2005-06-20T12:38:49Z,2020-02-15T06:59:54Z +11452,424,1,3166,6.99,2005-06-20T21:32:32Z,2020-02-15T06:59:54Z +11453,424,2,3404,0.99,2005-06-21T15:57:52Z,2020-02-15T06:59:54Z +11454,424,2,3746,0.99,2005-07-06T12:10:51Z,2020-02-15T06:59:54Z +11455,424,2,4512,0.99,2005-07-08T02:38:56Z,2020-02-15T06:59:54Z +11456,424,2,4559,0.99,2005-07-08T04:56:49Z,2020-02-15T06:59:54Z +11457,424,2,4696,5.99,2005-07-08T11:12:27Z,2020-02-15T06:59:54Z +11458,424,1,5568,0.99,2005-07-10T03:36:56Z,2020-02-15T06:59:54Z +11459,424,1,5611,3.99,2005-07-10T05:13:43Z,2020-02-15T06:59:54Z +11460,424,1,6589,2.99,2005-07-12T07:06:29Z,2020-02-15T06:59:54Z +11461,424,1,7594,2.99,2005-07-27T23:30:41Z,2020-02-15T06:59:54Z +11462,424,2,8194,2.99,2005-07-28T22:51:44Z,2020-02-15T06:59:54Z +11463,424,1,8918,4.99,2005-07-30T01:56:22Z,2020-02-15T06:59:54Z +11464,424,2,8964,1.99,2005-07-30T03:49:35Z,2020-02-15T06:59:54Z +11465,424,2,8999,2.99,2005-07-30T04:55:46Z,2020-02-15T06:59:54Z +11466,424,1,9471,4.99,2005-07-30T23:02:36Z,2020-02-15T06:59:54Z +11467,424,1,9516,8.99,2005-07-31T00:40:58Z,2020-02-15T06:59:54Z +11468,424,2,9878,4.99,2005-07-31T13:42:02Z,2020-02-15T06:59:54Z +11469,424,1,10017,6.99,2005-07-31T18:13:22Z,2020-02-15T06:59:54Z +11470,424,2,10369,4.99,2005-08-01T06:13:44Z,2020-02-15T06:59:54Z +11471,424,1,10866,2.99,2005-08-02T00:22:49Z,2020-02-15T06:59:54Z +11472,424,2,11374,2.99,2005-08-02T18:14:54Z,2020-02-15T06:59:54Z +11473,424,2,11562,6.99,2005-08-17T01:23:39Z,2020-02-15T06:59:54Z +11474,424,2,11833,2.99,2005-08-17T13:00:33Z,2020-02-15T06:59:54Z +11475,424,2,12729,0.99,2005-08-18T21:52:59Z,2020-02-15T06:59:54Z +11476,424,2,13793,3.99,2005-08-20T12:22:04Z,2020-02-15T06:59:54Z +11477,424,2,15113,0.99,2005-08-22T12:23:59Z,2020-02-15T06:59:54Z +11478,424,2,15941,9.99,2005-08-23T18:46:44Z,2020-02-15T06:59:54Z +11479,424,1,15094,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11480,425,2,1098,5.99,2005-05-31T13:51:48Z,2020-02-15T06:59:54Z +11481,425,1,3276,6.99,2005-06-21T05:35:52Z,2020-02-15T06:59:54Z +11482,425,1,3807,4.99,2005-07-06T15:11:44Z,2020-02-15T06:59:54Z +11483,425,2,4361,2.99,2005-07-07T19:33:23Z,2020-02-15T06:59:54Z +11484,425,2,4362,5.99,2005-07-07T19:35:30Z,2020-02-15T06:59:54Z +11485,425,2,4483,8.99,2005-07-08T01:03:12Z,2020-02-15T06:59:54Z +11486,425,1,4659,2.99,2005-07-08T09:53:28Z,2020-02-15T06:59:54Z +11487,425,1,4884,7.99,2005-07-08T19:49:17Z,2020-02-15T06:59:54Z +11488,425,1,4939,7.99,2005-07-08T22:35:30Z,2020-02-15T06:59:54Z +11489,425,2,5363,2.99,2005-07-09T18:18:49Z,2020-02-15T06:59:54Z +11490,425,1,5371,4.99,2005-07-09T18:47:48Z,2020-02-15T06:59:54Z +11491,425,2,6318,2.99,2005-07-11T18:48:22Z,2020-02-15T06:59:54Z +11492,425,1,6603,2.99,2005-07-12T07:52:55Z,2020-02-15T06:59:54Z +11493,425,1,7249,4.99,2005-07-27T10:39:53Z,2020-02-15T06:59:54Z +11494,425,1,8974,0.99,2005-07-30T04:09:16Z,2020-02-15T06:59:54Z +11495,425,1,9170,0.99,2005-07-30T11:35:24Z,2020-02-15T06:59:54Z +11496,425,2,9682,2.99,2005-07-31T06:47:10Z,2020-02-15T06:59:54Z +11497,425,1,10121,0.99,2005-07-31T21:24:53Z,2020-02-15T06:59:54Z +11498,425,2,10163,0.99,2005-07-31T23:12:34Z,2020-02-15T06:59:54Z +11499,425,1,10545,0.99,2005-08-01T12:37:46Z,2020-02-15T06:59:54Z +11500,425,2,13040,0.99,2005-08-19T09:04:24Z,2020-02-15T06:59:54Z +11501,425,2,14089,5.99,2005-08-20T23:59:02Z,2020-02-15T06:59:54Z +11502,425,2,14881,4.99,2005-08-22T03:47:39Z,2020-02-15T06:59:54Z +11503,425,1,15064,0.99,2005-08-22T10:41:58Z,2020-02-15T06:59:54Z +11504,425,2,15784,6.99,2005-08-23T13:46:00Z,2020-02-15T06:59:54Z +11505,425,2,16036,2.99,2005-08-23T22:12:44Z,2020-02-15T06:59:54Z +11506,426,2,604,0.99,2005-05-28T14:37:07Z,2020-02-15T06:59:54Z +11507,426,1,1709,6.99,2005-06-16T14:10:15Z,2020-02-15T06:59:54Z +11508,426,1,1842,7.99,2005-06-16T23:45:59Z,2020-02-15T06:59:54Z +11509,426,1,2204,2.99,2005-06-18T02:11:38Z,2020-02-15T06:59:54Z +11510,426,1,2804,0.99,2005-06-19T19:24:54Z,2020-02-15T06:59:54Z +11511,426,1,3243,0.99,2005-06-21T03:00:11Z,2020-02-15T06:59:54Z +11512,426,2,4114,2.99,2005-07-07T06:51:12Z,2020-02-15T06:59:54Z +11513,426,2,4398,4.99,2005-07-07T21:18:44Z,2020-02-15T06:59:54Z +11514,426,1,4900,4.99,2005-07-08T20:38:06Z,2020-02-15T06:59:54Z +11515,426,1,5725,3.99,2005-07-10T11:21:21Z,2020-02-15T06:59:54Z +11516,426,1,7495,4.99,2005-07-27T20:01:20Z,2020-02-15T06:59:54Z +11517,426,1,7527,10.99,2005-07-27T21:14:28Z,2020-02-15T06:59:54Z +11518,426,1,7711,4.99,2005-07-28T04:26:42Z,2020-02-15T06:59:54Z +11519,426,1,7789,5.99,2005-07-28T07:22:07Z,2020-02-15T06:59:54Z +11520,426,1,9185,5.99,2005-07-30T12:10:40Z,2020-02-15T06:59:54Z +11521,426,2,9247,4.99,2005-07-30T14:13:56Z,2020-02-15T06:59:54Z +11522,426,2,10172,10.99,2005-07-31T23:29:51Z,2020-02-15T06:59:54Z +11523,426,1,10505,1.99,2005-08-01T11:13:59Z,2020-02-15T06:59:54Z +11524,426,2,11237,0.99,2005-08-02T13:24:01Z,2020-02-15T06:59:54Z +11525,426,2,11876,0.99,2005-08-17T14:18:21Z,2020-02-15T06:59:54Z +11526,426,2,11938,6.99,2005-08-17T16:54:54Z,2020-02-15T06:59:54Z +11527,426,2,12548,5.99,2005-08-18T14:35:26Z,2020-02-15T06:59:54Z +11528,426,2,12707,4.99,2005-08-18T20:52:02Z,2020-02-15T06:59:54Z +11529,426,1,12822,4.99,2005-08-19T01:15:24Z,2020-02-15T06:59:54Z +11530,426,2,13834,2.99,2005-08-20T14:03:08Z,2020-02-15T06:59:54Z +11531,426,2,14151,6.99,2005-08-21T02:23:25Z,2020-02-15T06:59:54Z +11532,426,2,14826,2.99,2005-08-22T01:32:14Z,2020-02-15T06:59:54Z +11533,427,2,82,6.99,2005-05-25T12:17:46Z,2020-02-15T06:59:54Z +11534,427,1,1342,5.99,2005-06-15T12:26:21Z,2020-02-15T06:59:54Z +11535,427,2,1628,3.99,2005-06-16T07:52:55Z,2020-02-15T06:59:54Z +11536,427,1,1648,5.99,2005-06-16T09:17:07Z,2020-02-15T06:59:54Z +11537,427,1,1857,1.99,2005-06-17T01:12:58Z,2020-02-15T06:59:54Z +11538,427,2,2466,0.99,2005-06-18T20:18:42Z,2020-02-15T06:59:54Z +11539,427,1,4793,3.99,2005-07-08T16:30:01Z,2020-02-15T06:59:54Z +11540,427,2,5476,2.99,2005-07-09T23:37:09Z,2020-02-15T06:59:54Z +11541,427,2,5586,5.99,2005-07-10T04:17:06Z,2020-02-15T06:59:54Z +11542,427,1,6423,6.99,2005-07-11T23:47:31Z,2020-02-15T06:59:54Z +11543,427,1,6509,2.99,2005-07-12T03:35:01Z,2020-02-15T06:59:54Z +11544,427,2,6938,7.99,2005-07-26T23:16:04Z,2020-02-15T06:59:54Z +11545,427,2,8182,3.99,2005-07-28T22:19:12Z,2020-02-15T06:59:54Z +11546,427,1,8531,5.99,2005-07-29T10:26:15Z,2020-02-15T06:59:54Z +11547,427,2,8658,5.99,2005-07-29T15:16:37Z,2020-02-15T06:59:54Z +11548,427,2,9978,2.99,2005-07-31T16:59:51Z,2020-02-15T06:59:54Z +11549,427,1,10417,4.99,2005-08-01T08:10:36Z,2020-02-15T06:59:54Z +11550,427,1,10464,5.99,2005-08-01T09:43:14Z,2020-02-15T06:59:54Z +11551,427,2,10560,4.99,2005-08-01T13:04:57Z,2020-02-15T06:59:54Z +11552,427,1,11024,5.99,2005-08-02T05:38:31Z,2020-02-15T06:59:54Z +11553,427,1,13720,1.99,2005-08-20T10:01:39Z,2020-02-15T06:59:54Z +11554,427,2,14201,6.99,2005-08-21T03:51:34Z,2020-02-15T06:59:54Z +11555,427,1,14287,3.99,2005-08-21T06:53:59Z,2020-02-15T06:59:54Z +11556,427,1,15330,3.99,2005-08-22T20:35:30Z,2020-02-15T06:59:54Z +11557,428,2,634,4.99,2005-05-28T17:40:35Z,2020-02-15T06:59:54Z +11558,428,1,1227,3.99,2005-06-15T03:50:03Z,2020-02-15T06:59:54Z +11559,428,2,1471,2.99,2005-06-15T20:53:26Z,2020-02-15T06:59:54Z +11560,428,1,1601,3.99,2005-06-16T06:11:13Z,2020-02-15T06:59:54Z +11561,428,1,2677,2.99,2005-06-19T12:01:59Z,2020-02-15T06:59:54Z +11562,428,2,3377,0.99,2005-06-21T13:51:12Z,2020-02-15T06:59:54Z +11563,428,1,3702,2.99,2005-07-06T10:13:56Z,2020-02-15T06:59:54Z +11564,428,1,3925,5.99,2005-07-06T20:41:44Z,2020-02-15T06:59:54Z +11565,428,1,4151,0.99,2005-07-07T08:49:02Z,2020-02-15T06:59:54Z +11566,428,1,5373,4.99,2005-07-09T18:48:57Z,2020-02-15T06:59:54Z +11567,428,1,6735,5.99,2005-07-12T14:08:20Z,2020-02-15T06:59:54Z +11568,428,1,7823,6.99,2005-07-28T08:32:53Z,2020-02-15T06:59:54Z +11569,428,1,8155,2.99,2005-07-28T20:57:06Z,2020-02-15T06:59:54Z +11570,428,2,8387,4.99,2005-07-29T05:47:27Z,2020-02-15T06:59:54Z +11571,428,2,8528,4.99,2005-07-29T10:24:22Z,2020-02-15T06:59:54Z +11572,428,1,9904,5.99,2005-07-31T14:34:17Z,2020-02-15T06:59:54Z +11573,428,2,9982,2.99,2005-07-31T17:09:02Z,2020-02-15T06:59:54Z +11574,428,2,10577,4.99,2005-08-01T13:46:38Z,2020-02-15T06:59:54Z +11575,428,2,10888,2.99,2005-08-02T00:52:45Z,2020-02-15T06:59:54Z +11576,428,2,11536,0.99,2005-08-17T00:40:03Z,2020-02-15T06:59:54Z +11577,429,2,150,5.99,2005-05-26T00:28:39Z,2020-02-15T06:59:54Z +11578,429,2,290,2.99,2005-05-26T20:08:33Z,2020-02-15T06:59:54Z +11579,429,2,601,7.99,2005-05-28T14:08:22Z,2020-02-15T06:59:54Z +11580,429,2,799,4.99,2005-05-29T17:24:48Z,2020-02-15T06:59:54Z +11581,429,2,844,4.99,2005-05-30T00:58:20Z,2020-02-15T06:59:54Z +11582,429,2,1781,5.99,2005-06-16T19:20:24Z,2020-02-15T06:59:54Z +11583,429,2,1798,2.99,2005-06-16T20:16:15Z,2020-02-15T06:59:54Z +11584,429,2,1916,7.99,2005-06-17T05:29:59Z,2020-02-15T06:59:54Z +11585,429,1,3409,2.99,2005-06-21T16:17:38Z,2020-02-15T06:59:54Z +11586,429,2,5868,4.99,2005-07-10T18:39:16Z,2020-02-15T06:59:54Z +11587,429,2,6196,7.99,2005-07-11T12:05:46Z,2020-02-15T06:59:54Z +11588,429,2,6886,6.99,2005-07-12T20:58:04Z,2020-02-15T06:59:54Z +11589,429,1,6977,6.99,2005-07-27T00:40:50Z,2020-02-15T06:59:54Z +11590,429,2,7352,4.99,2005-07-27T14:38:29Z,2020-02-15T06:59:54Z +11591,429,2,8136,1.99,2005-07-28T20:05:48Z,2020-02-15T06:59:54Z +11592,429,2,8143,2.99,2005-07-28T20:23:11Z,2020-02-15T06:59:54Z +11593,429,2,8175,7.99,2005-07-28T21:38:16Z,2020-02-15T06:59:54Z +11594,429,1,9849,0.99,2005-07-31T12:44:34Z,2020-02-15T06:59:54Z +11595,429,1,12259,2.99,2005-08-18T04:14:35Z,2020-02-15T06:59:54Z +11596,429,1,12953,4.99,2005-08-19T06:04:07Z,2020-02-15T06:59:54Z +11597,429,2,14495,4.99,2005-08-21T14:04:39Z,2020-02-15T06:59:54Z +11598,430,2,30,2.99,2005-05-25T04:01:32Z,2020-02-15T06:59:54Z +11599,430,1,364,4.99,2005-05-27T07:20:12Z,2020-02-15T06:59:54Z +11600,430,2,1207,0.99,2005-06-15T02:27:08Z,2020-02-15T06:59:54Z +11601,430,1,1274,2.99,2005-06-15T07:52:52Z,2020-02-15T06:59:54Z +11602,430,1,1538,2.99,2005-06-16T01:05:50Z,2020-02-15T06:59:54Z +11603,430,1,1759,6.99,2005-06-16T17:46:37Z,2020-02-15T06:59:54Z +11604,430,2,2892,0.99,2005-06-20T02:06:39Z,2020-02-15T06:59:54Z +11605,430,2,3153,0.99,2005-06-20T20:44:15Z,2020-02-15T06:59:54Z +11606,430,1,5002,4.99,2005-07-09T01:17:08Z,2020-02-15T06:59:54Z +11607,430,1,5217,5.99,2005-07-09T11:56:50Z,2020-02-15T06:59:54Z +11608,430,2,5879,6.99,2005-07-10T19:12:47Z,2020-02-15T06:59:54Z +11609,430,1,5958,6.99,2005-07-10T23:31:51Z,2020-02-15T06:59:54Z +11610,430,2,6043,0.99,2005-07-11T03:18:10Z,2020-02-15T06:59:54Z +11611,430,1,8560,4.99,2005-07-29T11:27:27Z,2020-02-15T06:59:54Z +11612,430,2,9450,2.99,2005-07-30T22:04:04Z,2020-02-15T06:59:54Z +11613,430,1,12723,0.99,2005-08-18T21:34:16Z,2020-02-15T06:59:54Z +11614,430,1,12965,4.99,2005-08-19T06:33:00Z,2020-02-15T06:59:54Z +11615,430,1,13007,0.99,2005-08-19T07:47:43Z,2020-02-15T06:59:54Z +11616,430,2,13452,0.99,2005-08-20T00:20:07Z,2020-02-15T06:59:54Z +11617,430,2,13454,2.99,2005-08-20T00:30:52Z,2020-02-15T06:59:54Z +11618,430,1,14058,5.99,2005-08-20T22:24:35Z,2020-02-15T06:59:54Z +11619,430,1,15031,4.99,2005-08-22T09:11:48Z,2020-02-15T06:59:54Z +11620,431,2,1126,2.99,2005-05-31T17:27:45Z,2020-02-15T06:59:54Z +11621,431,2,1561,2.99,2005-06-16T02:41:30Z,2020-02-15T06:59:54Z +11622,431,1,2096,4.99,2005-06-17T18:33:04Z,2020-02-15T06:59:54Z +11623,431,1,2269,3.99,2005-06-18T06:20:54Z,2020-02-15T06:59:54Z +11624,431,2,2281,4.99,2005-06-18T06:47:29Z,2020-02-15T06:59:54Z +11625,431,2,2761,2.99,2005-06-19T17:22:17Z,2020-02-15T06:59:54Z +11626,431,2,3304,6.99,2005-06-21T07:43:40Z,2020-02-15T06:59:54Z +11627,431,2,3369,8.99,2005-06-21T13:20:31Z,2020-02-15T06:59:54Z +11628,431,1,4144,3.99,2005-07-07T08:25:44Z,2020-02-15T06:59:54Z +11629,431,1,4801,2.99,2005-07-08T16:51:36Z,2020-02-15T06:59:54Z +11630,431,1,4863,0.99,2005-07-08T19:03:15Z,2020-02-15T06:59:54Z +11631,431,2,7978,4.99,2005-07-28T14:16:14Z,2020-02-15T06:59:54Z +11632,431,2,8810,4.99,2005-07-29T21:45:19Z,2020-02-15T06:59:54Z +11633,431,2,10508,0.99,2005-08-01T11:23:27Z,2020-02-15T06:59:54Z +11634,431,1,10527,4.99,2005-08-01T11:55:54Z,2020-02-15T06:59:54Z +11635,431,2,10959,6.99,2005-08-02T03:39:39Z,2020-02-15T06:59:54Z +11636,431,2,11538,2.99,2005-08-17T00:44:04Z,2020-02-15T06:59:54Z +11637,431,1,12273,6.99,2005-08-18T04:40:50Z,2020-02-15T06:59:54Z +11638,431,2,13153,1.99,2005-08-19T13:09:47Z,2020-02-15T06:59:54Z +11639,431,1,13784,4.99,2005-08-20T12:11:28Z,2020-02-15T06:59:54Z +11640,431,1,15809,2.99,2005-08-23T14:42:07Z,2020-02-15T06:59:54Z +11641,431,1,15960,2.99,2005-08-23T19:35:42Z,2020-02-15T06:59:54Z +11642,431,2,13587,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11643,432,2,326,7.99,2005-05-27T01:10:11Z,2020-02-15T06:59:54Z +11644,432,1,550,5.99,2005-05-28T07:39:16Z,2020-02-15T06:59:54Z +11645,432,1,897,8.99,2005-05-30T09:10:01Z,2020-02-15T06:59:54Z +11646,432,2,1180,5.99,2005-06-15T00:39:01Z,2020-02-15T06:59:54Z +11647,432,2,1597,2.99,2005-06-16T05:47:03Z,2020-02-15T06:59:54Z +11648,432,2,3194,4.99,2005-06-20T23:59:57Z,2020-02-15T06:59:54Z +11649,432,1,4965,5.99,2005-07-08T23:46:57Z,2020-02-15T06:59:54Z +11650,432,1,4973,4.99,2005-07-08T23:58:18Z,2020-02-15T06:59:54Z +11651,432,1,5204,2.99,2005-07-09T10:54:14Z,2020-02-15T06:59:54Z +11652,432,1,5322,6.99,2005-07-09T16:28:13Z,2020-02-15T06:59:54Z +11653,432,1,5944,4.99,2005-07-10T22:51:44Z,2020-02-15T06:59:54Z +11654,432,1,5990,4.99,2005-07-11T01:03:14Z,2020-02-15T06:59:54Z +11655,432,2,7326,4.99,2005-07-27T13:50:40Z,2020-02-15T06:59:54Z +11656,432,2,7681,0.99,2005-07-28T03:07:09Z,2020-02-15T06:59:54Z +11657,432,2,8079,4.99,2005-07-28T17:58:36Z,2020-02-15T06:59:54Z +11658,432,2,8094,6.99,2005-07-28T18:30:28Z,2020-02-15T06:59:54Z +11659,432,2,9916,4.99,2005-07-31T14:54:52Z,2020-02-15T06:59:54Z +11660,432,2,9984,2.99,2005-07-31T17:12:23Z,2020-02-15T06:59:54Z +11661,432,2,11870,0.99,2005-08-17T14:11:28Z,2020-02-15T06:59:54Z +11662,432,1,12767,6.99,2005-08-18T23:25:49Z,2020-02-15T06:59:54Z +11663,432,1,14027,2.99,2005-08-20T21:21:34Z,2020-02-15T06:59:54Z +11664,432,1,15523,4.99,2005-08-23T03:32:36Z,2020-02-15T06:59:54Z +11665,432,1,15713,6.99,2005-08-23T10:56:15Z,2020-02-15T06:59:54Z +11666,433,2,146,8.99,2005-05-26T00:07:11Z,2020-02-15T06:59:54Z +11667,433,1,691,10.99,2005-05-29T01:01:26Z,2020-02-15T06:59:54Z +11668,433,2,4087,6.99,2005-07-07T05:30:56Z,2020-02-15T06:59:54Z +11669,433,2,4158,0.99,2005-07-07T09:05:42Z,2020-02-15T06:59:54Z +11670,433,2,4988,7.99,2005-07-09T00:46:14Z,2020-02-15T06:59:54Z +11671,433,2,5457,0.99,2005-07-09T22:33:14Z,2020-02-15T06:59:54Z +11672,433,1,5969,8.99,2005-07-11T00:03:22Z,2020-02-15T06:59:54Z +11673,433,1,6765,5.99,2005-07-12T15:30:47Z,2020-02-15T06:59:54Z +11674,433,1,6848,0.99,2005-07-12T19:24:07Z,2020-02-15T06:59:54Z +11675,433,1,6850,4.99,2005-07-12T19:30:42Z,2020-02-15T06:59:54Z +11676,433,1,7821,4.99,2005-07-28T08:31:23Z,2020-02-15T06:59:54Z +11677,433,2,7907,4.99,2005-07-28T11:32:00Z,2020-02-15T06:59:54Z +11678,433,1,8414,5.99,2005-07-29T06:48:35Z,2020-02-15T06:59:54Z +11679,433,1,8713,2.99,2005-07-29T17:31:19Z,2020-02-15T06:59:54Z +11680,433,2,9161,4.99,2005-07-30T11:19:18Z,2020-02-15T06:59:54Z +11681,433,1,9294,3.99,2005-07-30T16:14:37Z,2020-02-15T06:59:54Z +11682,433,1,10663,4.99,2005-08-01T16:51:08Z,2020-02-15T06:59:54Z +11683,433,1,11664,2.99,2005-08-17T05:35:52Z,2020-02-15T06:59:54Z +11684,433,2,12669,6.99,2005-08-18T19:17:47Z,2020-02-15T06:59:54Z +11685,433,2,13273,4.99,2005-08-19T17:49:13Z,2020-02-15T06:59:54Z +11686,433,1,13801,4.99,2005-08-20T12:40:53Z,2020-02-15T06:59:54Z +11687,433,2,14523,4.99,2005-08-21T15:03:45Z,2020-02-15T06:59:54Z +11688,433,1,14559,6.99,2005-08-21T16:11:35Z,2020-02-15T06:59:54Z +11689,433,2,15476,4.99,2005-08-23T01:45:07Z,2020-02-15T06:59:54Z +11690,433,1,15502,5.99,2005-08-23T02:40:04Z,2020-02-15T06:59:54Z +11691,434,2,508,5.99,2005-05-28T02:40:50Z,2020-02-15T06:59:54Z +11692,434,1,1225,0.99,2005-06-15T03:45:35Z,2020-02-15T06:59:54Z +11693,434,2,1584,5.99,2005-06-16T04:50:50Z,2020-02-15T06:59:54Z +11694,434,2,2415,7.99,2005-06-18T17:02:42Z,2020-02-15T06:59:54Z +11695,434,1,2430,3.99,2005-06-18T17:51:46Z,2020-02-15T06:59:54Z +11696,434,1,2494,3.99,2005-06-18T22:15:09Z,2020-02-15T06:59:54Z +11697,434,1,3014,2.99,2005-06-20T10:45:20Z,2020-02-15T06:59:54Z +11698,434,2,3037,2.99,2005-06-20T12:28:03Z,2020-02-15T06:59:54Z +11699,434,1,4414,2.99,2005-07-07T22:00:21Z,2020-02-15T06:59:54Z +11700,434,2,4654,6.99,2005-07-08T09:48:03Z,2020-02-15T06:59:54Z +11701,434,2,4960,10.99,2005-07-08T23:27:16Z,2020-02-15T06:59:54Z +11702,434,2,5464,2.99,2005-07-09T22:58:14Z,2020-02-15T06:59:54Z +11703,434,2,6972,0.99,2005-07-27T00:31:25Z,2020-02-15T06:59:54Z +11704,434,1,7260,6.99,2005-07-27T11:09:28Z,2020-02-15T06:59:54Z +11705,434,2,7479,2.99,2005-07-27T19:18:17Z,2020-02-15T06:59:54Z +11706,434,1,8205,0.99,2005-07-28T23:18:48Z,2020-02-15T06:59:54Z +11707,434,1,9350,4.99,2005-07-30T18:24:30Z,2020-02-15T06:59:54Z +11708,434,1,11242,3.99,2005-08-02T13:32:00Z,2020-02-15T06:59:54Z +11709,434,1,11867,2.99,2005-08-17T14:04:28Z,2020-02-15T06:59:54Z +11710,434,2,12030,2.99,2005-08-17T20:10:48Z,2020-02-15T06:59:54Z +11711,434,2,12146,2.99,2005-08-18T00:10:04Z,2020-02-15T06:59:54Z +11712,434,2,12624,7.99,2005-08-18T17:35:00Z,2020-02-15T06:59:54Z +11713,434,2,13359,9.99,2005-08-19T21:04:49Z,2020-02-15T06:59:54Z +11714,434,1,13383,7.99,2005-08-19T21:38:44Z,2020-02-15T06:59:54Z +11715,434,2,14553,4.99,2005-08-21T15:59:40Z,2020-02-15T06:59:54Z +11716,434,2,15016,3.99,2005-08-22T08:47:35Z,2020-02-15T06:59:54Z +11717,434,2,15385,4.99,2005-08-22T22:37:34Z,2020-02-15T06:59:54Z +11718,435,1,757,7.99,2005-05-29T10:29:47Z,2020-02-15T06:59:54Z +11719,435,1,806,4.99,2005-05-29T18:31:30Z,2020-02-15T06:59:54Z +11720,435,2,1443,0.99,2005-06-15T18:57:51Z,2020-02-15T06:59:54Z +11721,435,1,2984,0.99,2005-06-20T08:43:44Z,2020-02-15T06:59:54Z +11722,435,1,3690,0.99,2005-07-06T09:46:03Z,2020-02-15T06:59:54Z +11723,435,1,3918,8.99,2005-07-06T20:26:15Z,2020-02-15T06:59:54Z +11724,435,2,5220,4.99,2005-07-09T11:59:04Z,2020-02-15T06:59:54Z +11725,435,2,6051,4.99,2005-07-11T03:46:41Z,2020-02-15T06:59:54Z +11726,435,1,6935,2.99,2005-07-26T23:13:10Z,2020-02-15T06:59:54Z +11727,435,1,8386,5.99,2005-07-29T05:45:30Z,2020-02-15T06:59:54Z +11728,435,2,8891,4.99,2005-07-30T00:46:55Z,2020-02-15T06:59:54Z +11729,435,2,9269,0.99,2005-07-30T15:02:33Z,2020-02-15T06:59:54Z +11730,435,1,9655,3.99,2005-07-31T05:57:54Z,2020-02-15T06:59:54Z +11731,435,2,9829,4.99,2005-07-31T11:58:38Z,2020-02-15T06:59:54Z +11732,435,1,10998,6.99,2005-08-02T04:50:55Z,2020-02-15T06:59:54Z +11733,435,1,11041,2.99,2005-08-02T06:03:53Z,2020-02-15T06:59:54Z +11734,435,1,11786,3.99,2005-08-17T10:57:40Z,2020-02-15T06:59:54Z +11735,435,1,11796,0.99,2005-08-17T11:16:47Z,2020-02-15T06:59:54Z +11736,435,2,12046,0.99,2005-08-17T20:47:46Z,2020-02-15T06:59:54Z +11737,435,1,12741,4.99,2005-08-18T22:17:05Z,2020-02-15T06:59:54Z +11738,435,2,13208,0.99,2005-08-19T15:18:55Z,2020-02-15T06:59:54Z +11739,435,1,14696,4.99,2005-08-21T20:48:05Z,2020-02-15T06:59:54Z +11740,435,1,14765,1.99,2005-08-21T23:40:28Z,2020-02-15T06:59:54Z +11741,435,1,14850,0.99,2005-08-22T02:16:55Z,2020-02-15T06:59:54Z +11742,435,1,15136,2.99,2005-08-22T13:19:25Z,2020-02-15T06:59:54Z +11743,436,1,45,7.99,2005-05-25T05:59:39Z,2020-02-15T06:59:54Z +11744,436,1,256,3.99,2005-05-26T15:20:58Z,2020-02-15T06:59:54Z +11745,436,1,848,5.99,2005-05-30T01:19:53Z,2020-02-15T06:59:54Z +11746,436,1,2291,9.99,2005-06-18T07:36:46Z,2020-02-15T06:59:54Z +11747,436,2,3851,1.99,2005-07-06T16:54:12Z,2020-02-15T06:59:54Z +11748,436,2,3944,2.99,2005-07-06T21:34:11Z,2020-02-15T06:59:54Z +11749,436,2,4643,0.99,2005-07-08T09:13:56Z,2020-02-15T06:59:54Z +11750,436,2,4751,2.99,2005-07-08T14:07:52Z,2020-02-15T06:59:54Z +11751,436,1,4782,4.99,2005-07-08T16:08:51Z,2020-02-15T06:59:54Z +11752,436,1,5959,0.99,2005-07-10T23:35:36Z,2020-02-15T06:59:54Z +11753,436,1,7593,4.99,2005-07-27T23:28:47Z,2020-02-15T06:59:54Z +11754,436,2,8027,5.99,2005-07-28T16:09:57Z,2020-02-15T06:59:54Z +11755,436,2,8097,9.99,2005-07-28T18:32:49Z,2020-02-15T06:59:54Z +11756,436,1,9345,9.99,2005-07-30T18:13:51Z,2020-02-15T06:59:54Z +11757,436,1,9539,0.99,2005-07-31T01:36:19Z,2020-02-15T06:59:54Z +11758,436,1,9638,5.99,2005-07-31T05:30:27Z,2020-02-15T06:59:54Z +11759,436,2,10216,3.99,2005-08-01T01:06:27Z,2020-02-15T06:59:54Z +11760,436,2,11160,0.99,2005-08-02T10:05:30Z,2020-02-15T06:59:54Z +11761,436,1,11580,2.99,2005-08-17T01:59:07Z,2020-02-15T06:59:54Z +11762,436,2,11615,4.99,2005-08-17T03:54:35Z,2020-02-15T06:59:54Z +11763,436,2,11896,5.99,2005-08-17T15:19:54Z,2020-02-15T06:59:54Z +11764,436,2,12297,0.99,2005-08-18T05:19:57Z,2020-02-15T06:59:54Z +11765,436,2,12429,6.99,2005-08-18T10:26:46Z,2020-02-15T06:59:54Z +11766,436,2,13099,9.99,2005-08-19T10:55:19Z,2020-02-15T06:59:54Z +11767,436,2,13382,7.99,2005-08-19T21:38:41Z,2020-02-15T06:59:54Z +11768,436,1,13533,3.99,2005-08-20T03:30:00Z,2020-02-15T06:59:54Z +11769,436,1,13760,5.99,2005-08-20T11:26:33Z,2020-02-15T06:59:54Z +11770,436,1,13814,0.99,2005-08-20T13:07:23Z,2020-02-15T06:59:54Z +11771,436,2,13826,2.99,2005-08-20T13:46:38Z,2020-02-15T06:59:54Z +11772,436,2,15766,4.99,2005-08-23T13:10:16Z,2020-02-15T06:59:54Z +11773,437,1,192,2.99,2005-05-26T06:20:37Z,2020-02-15T06:59:54Z +11774,437,2,656,4.99,2005-05-28T20:18:24Z,2020-02-15T06:59:54Z +11775,437,1,666,5.99,2005-05-28T21:48:51Z,2020-02-15T06:59:54Z +11776,437,2,2239,5.99,2005-06-18T04:23:54Z,2020-02-15T06:59:54Z +11777,437,1,2792,2.99,2005-06-19T18:52:25Z,2020-02-15T06:59:54Z +11778,437,2,3265,2.99,2005-06-21T04:23:13Z,2020-02-15T06:59:54Z +11779,437,1,3747,4.99,2005-07-06T12:11:14Z,2020-02-15T06:59:54Z +11780,437,2,4765,4.99,2005-07-08T15:08:45Z,2020-02-15T06:59:54Z +11781,437,2,5085,4.99,2005-07-09T05:36:49Z,2020-02-15T06:59:54Z +11782,437,1,5167,1.99,2005-07-09T09:18:43Z,2020-02-15T06:59:54Z +11783,437,2,5744,2.99,2005-07-10T12:08:33Z,2020-02-15T06:59:54Z +11784,437,2,5864,6.99,2005-07-10T18:29:57Z,2020-02-15T06:59:54Z +11785,437,2,8215,2.99,2005-07-28T23:43:56Z,2020-02-15T06:59:54Z +11786,437,2,9172,2.99,2005-07-30T11:36:38Z,2020-02-15T06:59:54Z +11787,437,2,9333,2.99,2005-07-30T17:53:45Z,2020-02-15T06:59:54Z +11788,437,2,10009,8.99,2005-07-31T18:00:28Z,2020-02-15T06:59:54Z +11789,437,2,10249,0.99,2005-08-01T02:35:39Z,2020-02-15T06:59:54Z +11790,437,2,11417,3.99,2005-08-02T19:44:46Z,2020-02-15T06:59:54Z +11791,437,1,12205,8.99,2005-08-18T02:21:08Z,2020-02-15T06:59:54Z +11792,437,2,13838,7.99,2005-08-20T14:22:46Z,2020-02-15T06:59:54Z +11793,437,1,13839,2.99,2005-08-20T14:23:16Z,2020-02-15T06:59:54Z +11794,437,1,13905,1.99,2005-08-20T16:12:48Z,2020-02-15T06:59:54Z +11795,437,1,14993,1.99,2005-08-22T07:52:18Z,2020-02-15T06:59:54Z +11796,438,2,23,4.99,2005-05-25T02:40:21Z,2020-02-15T06:59:54Z +11797,438,2,1036,0.99,2005-05-31T05:21:10Z,2020-02-15T06:59:54Z +11798,438,1,1138,6.99,2005-05-31T19:30:27Z,2020-02-15T06:59:54Z +11799,438,1,1431,4.99,2005-06-15T18:26:29Z,2020-02-15T06:59:54Z +11800,438,2,1779,0.99,2005-06-16T18:55:11Z,2020-02-15T06:59:54Z +11801,438,2,2206,0.99,2005-06-18T02:14:45Z,2020-02-15T06:59:54Z +11802,438,1,2591,4.99,2005-06-19T05:32:22Z,2020-02-15T06:59:54Z +11803,438,1,3315,4.99,2005-06-21T08:17:04Z,2020-02-15T06:59:54Z +11804,438,2,3368,0.99,2005-06-21T13:18:38Z,2020-02-15T06:59:54Z +11805,438,1,4355,4.99,2005-07-07T19:21:19Z,2020-02-15T06:59:54Z +11806,438,2,4446,2.99,2005-07-07T23:12:16Z,2020-02-15T06:59:54Z +11807,438,2,5316,4.99,2005-07-09T16:09:42Z,2020-02-15T06:59:54Z +11808,438,2,5426,4.99,2005-07-09T21:04:47Z,2020-02-15T06:59:54Z +11809,438,1,5870,2.99,2005-07-10T18:40:25Z,2020-02-15T06:59:54Z +11810,438,2,6138,4.99,2005-07-11T08:36:04Z,2020-02-15T06:59:54Z +11811,438,1,6563,3.99,2005-07-12T05:34:09Z,2020-02-15T06:59:54Z +11812,438,2,6615,4.99,2005-07-12T08:36:22Z,2020-02-15T06:59:54Z +11813,438,2,7357,1.99,2005-07-27T14:48:31Z,2020-02-15T06:59:54Z +11814,438,2,7374,8.99,2005-07-27T15:20:57Z,2020-02-15T06:59:54Z +11815,438,1,7598,0.99,2005-07-27T23:36:01Z,2020-02-15T06:59:54Z +11816,438,2,8547,2.99,2005-07-29T11:10:15Z,2020-02-15T06:59:54Z +11817,438,1,9082,3.99,2005-07-30T08:11:22Z,2020-02-15T06:59:54Z +11818,438,2,9782,0.99,2005-07-31T10:14:26Z,2020-02-15T06:59:54Z +11819,438,1,10512,6.99,2005-08-01T11:36:19Z,2020-02-15T06:59:54Z +11820,438,1,10607,4.99,2005-08-01T14:44:43Z,2020-02-15T06:59:54Z +11821,438,2,11644,4.99,2005-08-17T04:49:46Z,2020-02-15T06:59:54Z +11822,438,2,11933,4.99,2005-08-17T16:38:20Z,2020-02-15T06:59:54Z +11823,438,2,12654,0.99,2005-08-18T18:56:40Z,2020-02-15T06:59:54Z +11824,438,2,13319,7.99,2005-08-19T19:35:13Z,2020-02-15T06:59:54Z +11825,438,1,13414,4.99,2005-08-19T22:47:34Z,2020-02-15T06:59:54Z +11826,438,2,14582,5.99,2005-08-21T17:08:33Z,2020-02-15T06:59:54Z +11827,438,2,15893,5.99,2005-08-23T17:02:00Z,2020-02-15T06:59:54Z +11828,438,2,12524,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11829,439,1,126,2.99,2005-05-25T21:07:59Z,2020-02-15T06:59:54Z +11830,439,2,367,0.99,2005-05-27T07:37:02Z,2020-02-15T06:59:54Z +11831,439,1,786,9.99,2005-05-29T15:17:28Z,2020-02-15T06:59:54Z +11832,439,1,1264,4.99,2005-06-15T06:59:39Z,2020-02-15T06:59:54Z +11833,439,2,1557,0.99,2005-06-16T02:28:35Z,2020-02-15T06:59:54Z +11834,439,2,2097,4.99,2005-06-17T18:40:04Z,2020-02-15T06:59:54Z +11835,439,1,2621,2.99,2005-06-19T08:07:31Z,2020-02-15T06:59:54Z +11836,439,1,2992,2.99,2005-06-20T09:11:51Z,2020-02-15T06:59:54Z +11837,439,1,3294,6.99,2005-06-21T07:03:23Z,2020-02-15T06:59:54Z +11838,439,2,3774,5.99,2005-07-06T13:25:07Z,2020-02-15T06:59:54Z +11839,439,1,4528,2.99,2005-07-08T03:24:54Z,2020-02-15T06:59:54Z +11840,439,1,4813,4.99,2005-07-08T17:09:56Z,2020-02-15T06:59:54Z +11841,439,2,5801,5.99,2005-07-10T14:59:05Z,2020-02-15T06:59:54Z +11842,439,1,5893,2.99,2005-07-10T20:05:30Z,2020-02-15T06:59:54Z +11843,439,1,6577,2.99,2005-07-12T06:15:05Z,2020-02-15T06:59:54Z +11844,439,2,6672,2.99,2005-07-12T11:49:16Z,2020-02-15T06:59:54Z +11845,439,1,8343,2.99,2005-07-29T04:45:16Z,2020-02-15T06:59:54Z +11846,439,1,8624,2.99,2005-07-29T13:55:36Z,2020-02-15T06:59:54Z +11847,439,2,8703,2.99,2005-07-29T17:12:44Z,2020-02-15T06:59:54Z +11848,439,1,9275,0.99,2005-07-30T15:09:15Z,2020-02-15T06:59:54Z +11849,439,1,9322,6.99,2005-07-30T17:21:39Z,2020-02-15T06:59:54Z +11850,439,2,10744,1.99,2005-08-01T19:56:49Z,2020-02-15T06:59:54Z +11851,439,1,10905,2.99,2005-08-02T01:45:59Z,2020-02-15T06:59:54Z +11852,439,2,11042,6.99,2005-08-02T06:04:33Z,2020-02-15T06:59:54Z +11853,439,2,11544,5.99,2005-08-17T00:55:07Z,2020-02-15T06:59:54Z +11854,439,1,11989,2.99,2005-08-17T18:23:58Z,2020-02-15T06:59:54Z +11855,439,1,12621,2.99,2005-08-18T17:31:36Z,2020-02-15T06:59:54Z +11856,439,2,12755,5.99,2005-08-18T22:38:47Z,2020-02-15T06:59:54Z +11857,439,2,12826,3.99,2005-08-19T01:25:11Z,2020-02-15T06:59:54Z +11858,439,2,13358,4.99,2005-08-19T21:04:20Z,2020-02-15T06:59:54Z +11859,439,2,14730,5.99,2005-08-21T22:21:11Z,2020-02-15T06:59:54Z +11860,439,2,15044,9.99,2005-08-22T09:51:54Z,2020-02-15T06:59:54Z +11861,439,2,15162,4.99,2005-08-22T14:41:05Z,2020-02-15T06:59:54Z +11862,439,2,15653,4.99,2005-08-23T08:34:42Z,2020-02-15T06:59:54Z +11863,439,1,15818,1.99,2005-08-23T14:59:58Z,2020-02-15T06:59:54Z +11864,439,1,16018,0.99,2005-08-23T21:27:35Z,2020-02-15T06:59:54Z +11865,440,2,957,4.99,2005-05-30T17:53:29Z,2020-02-15T06:59:54Z +11866,440,1,4301,2.99,2005-07-07T16:37:23Z,2020-02-15T06:59:54Z +11867,440,1,4946,7.99,2005-07-08T22:46:23Z,2020-02-15T06:59:54Z +11868,440,2,5423,2.99,2005-07-09T20:56:48Z,2020-02-15T06:59:54Z +11869,440,2,5594,0.99,2005-07-10T04:33:36Z,2020-02-15T06:59:54Z +11870,440,2,5731,2.99,2005-07-10T11:31:52Z,2020-02-15T06:59:54Z +11871,440,2,5782,0.99,2005-07-10T13:52:56Z,2020-02-15T06:59:54Z +11872,440,2,7585,4.99,2005-07-27T23:18:22Z,2020-02-15T06:59:54Z +11873,440,1,7614,0.99,2005-07-28T00:14:38Z,2020-02-15T06:59:54Z +11874,440,1,7806,9.99,2005-07-28T07:58:17Z,2020-02-15T06:59:54Z +11875,440,1,9001,4.99,2005-07-30T04:59:41Z,2020-02-15T06:59:54Z +11876,440,1,9195,2.99,2005-07-30T12:29:43Z,2020-02-15T06:59:54Z +11877,440,1,9547,4.99,2005-07-31T01:52:34Z,2020-02-15T06:59:54Z +11878,440,2,12403,6.99,2005-08-18T09:31:05Z,2020-02-15T06:59:54Z +11879,440,1,12850,0.99,2005-08-19T02:08:06Z,2020-02-15T06:59:54Z +11880,440,2,13384,4.99,2005-08-19T21:38:51Z,2020-02-15T06:59:54Z +11881,440,2,13779,2.99,2005-08-20T12:03:54Z,2020-02-15T06:59:54Z +11882,440,1,14555,0.99,2005-08-21T16:03:02Z,2020-02-15T06:59:54Z +11883,440,2,14863,7.99,2005-08-22T02:57:04Z,2020-02-15T06:59:54Z +11884,440,2,15264,0.99,2005-08-22T18:27:38Z,2020-02-15T06:59:54Z +11885,440,1,15925,4.99,2005-08-23T18:15:06Z,2020-02-15T06:59:54Z +11886,440,1,13106,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11887,441,1,823,4.99,2005-05-29T21:39:37Z,2020-02-15T06:59:54Z +11888,441,1,1602,4.99,2005-06-16T06:12:40Z,2020-02-15T06:59:54Z +11889,441,2,2328,4.99,2005-06-18T10:17:21Z,2020-02-15T06:59:54Z +11890,441,2,3629,0.99,2005-07-06T06:23:22Z,2020-02-15T06:59:54Z +11891,441,2,3695,2.99,2005-07-06T10:02:08Z,2020-02-15T06:59:54Z +11892,441,1,4084,8.99,2005-07-07T05:16:00Z,2020-02-15T06:59:54Z +11893,441,2,4208,0.99,2005-07-07T11:34:22Z,2020-02-15T06:59:54Z +11894,441,2,5129,2.99,2005-07-09T07:28:33Z,2020-02-15T06:59:54Z +11895,441,1,5811,0.99,2005-07-10T15:27:04Z,2020-02-15T06:59:54Z +11896,441,2,6636,2.99,2005-07-12T09:49:46Z,2020-02-15T06:59:54Z +11897,441,1,6642,4.99,2005-07-12T10:37:52Z,2020-02-15T06:59:54Z +11898,441,1,6941,5.99,2005-07-26T23:18:49Z,2020-02-15T06:59:54Z +11899,441,2,8237,2.99,2005-07-29T00:29:56Z,2020-02-15T06:59:54Z +11900,441,1,8281,0.99,2005-07-29T01:46:00Z,2020-02-15T06:59:54Z +11901,441,1,8427,4.99,2005-07-29T07:08:36Z,2020-02-15T06:59:54Z +11902,441,1,8575,4.99,2005-07-29T11:52:47Z,2020-02-15T06:59:54Z +11903,441,2,8617,4.99,2005-07-29T13:46:14Z,2020-02-15T06:59:54Z +11904,441,2,9644,10.99,2005-07-31T05:40:35Z,2020-02-15T06:59:54Z +11905,441,2,9854,2.99,2005-07-31T12:59:34Z,2020-02-15T06:59:54Z +11906,441,2,10139,1.99,2005-07-31T22:02:20Z,2020-02-15T06:59:54Z +11907,441,1,10846,1.99,2005-08-01T23:47:54Z,2020-02-15T06:59:54Z +11908,441,2,11247,1.99,2005-08-02T13:34:08Z,2020-02-15T06:59:54Z +11909,441,2,13483,2.99,2005-08-20T01:16:38Z,2020-02-15T06:59:54Z +11910,441,2,13739,4.99,2005-08-20T10:45:10Z,2020-02-15T06:59:54Z +11911,441,1,13932,4.99,2005-08-20T17:17:00Z,2020-02-15T06:59:54Z +11912,441,2,14796,4.99,2005-08-22T00:40:49Z,2020-02-15T06:59:54Z +11913,441,2,15070,3.99,2005-08-22T10:55:45Z,2020-02-15T06:59:54Z +11914,441,1,14878,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +11915,442,2,466,0.99,2005-05-27T20:57:07Z,2020-02-15T06:59:54Z +11916,442,2,558,6.99,2005-05-28T08:38:43Z,2020-02-15T06:59:54Z +11917,442,1,632,5.99,2005-05-28T17:37:50Z,2020-02-15T06:59:54Z +11918,442,1,1251,5.99,2005-06-15T05:58:55Z,2020-02-15T06:59:54Z +11919,442,2,1358,0.99,2005-06-15T13:28:48Z,2020-02-15T06:59:54Z +11920,442,2,1576,8.99,2005-06-16T03:54:39Z,2020-02-15T06:59:54Z +11921,442,1,1774,2.99,2005-06-16T18:27:52Z,2020-02-15T06:59:54Z +11922,442,2,3545,4.99,2005-07-06T02:16:17Z,2020-02-15T06:59:54Z +11923,442,1,3661,2.99,2005-07-06T08:10:02Z,2020-02-15T06:59:54Z +11924,442,1,4052,5.99,2005-07-07T03:38:22Z,2020-02-15T06:59:54Z +11925,442,1,4058,2.99,2005-07-07T04:02:50Z,2020-02-15T06:59:54Z +11926,442,2,4365,2.99,2005-07-07T19:47:46Z,2020-02-15T06:59:54Z +11927,442,2,4577,3.99,2005-07-08T05:59:00Z,2020-02-15T06:59:54Z +11928,442,2,6590,4.99,2005-07-12T07:08:21Z,2020-02-15T06:59:54Z +11929,442,2,6632,2.99,2005-07-12T09:33:10Z,2020-02-15T06:59:54Z +11930,442,2,7427,2.99,2005-07-27T17:20:16Z,2020-02-15T06:59:54Z +11931,442,1,7460,0.99,2005-07-27T18:41:35Z,2020-02-15T06:59:54Z +11932,442,1,7671,2.99,2005-07-28T02:48:31Z,2020-02-15T06:59:54Z +11933,442,1,8044,2.99,2005-07-28T16:49:12Z,2020-02-15T06:59:54Z +11934,442,1,8758,4.99,2005-07-29T19:20:49Z,2020-02-15T06:59:54Z +11935,442,1,9180,4.99,2005-07-30T12:03:15Z,2020-02-15T06:59:54Z +11936,442,2,9873,5.99,2005-07-31T13:32:18Z,2020-02-15T06:59:54Z +11937,442,1,10034,2.99,2005-07-31T18:45:30Z,2020-02-15T06:59:54Z +11938,442,2,10365,6.99,2005-08-01T06:08:44Z,2020-02-15T06:59:54Z +11939,442,2,10452,0.99,2005-08-01T09:11:36Z,2020-02-15T06:59:54Z +11940,442,1,12948,0.99,2005-08-19T05:55:14Z,2020-02-15T06:59:54Z +11941,442,2,13004,0.99,2005-08-19T07:40:08Z,2020-02-15T06:59:54Z +11942,442,1,13155,7.99,2005-08-19T13:10:23Z,2020-02-15T06:59:54Z +11943,442,2,14199,0.99,2005-08-21T03:48:43Z,2020-02-15T06:59:54Z +11944,442,1,14418,1.99,2005-08-21T11:14:26Z,2020-02-15T06:59:54Z +11945,442,1,14466,0.99,2005-08-21T13:03:13Z,2020-02-15T06:59:54Z +11946,442,2,15207,2.99,2005-08-22T16:35:25Z,2020-02-15T06:59:54Z +11947,443,2,1068,4.99,2005-05-31T09:32:15Z,2020-02-15T06:59:54Z +11948,443,1,2871,2.99,2005-06-20T00:27:49Z,2020-02-15T06:59:54Z +11949,443,2,3510,5.99,2005-07-06T00:27:41Z,2020-02-15T06:59:54Z +11950,443,2,6625,5.99,2005-07-12T09:06:40Z,2020-02-15T06:59:54Z +11951,443,1,6913,4.99,2005-07-12T22:18:12Z,2020-02-15T06:59:54Z +11952,443,2,6983,2.99,2005-07-27T00:55:03Z,2020-02-15T06:59:54Z +11953,443,1,7317,2.99,2005-07-27T13:19:41Z,2020-02-15T06:59:54Z +11954,443,1,7667,8.99,2005-07-28T02:37:22Z,2020-02-15T06:59:54Z +11955,443,1,7987,9.99,2005-07-28T14:36:52Z,2020-02-15T06:59:54Z +11956,443,2,9740,1.99,2005-07-31T09:08:03Z,2020-02-15T06:59:54Z +11957,443,1,10014,4.99,2005-07-31T18:10:56Z,2020-02-15T06:59:54Z +11958,443,2,10081,5.99,2005-07-31T20:07:44Z,2020-02-15T06:59:54Z +11959,443,2,10360,0.99,2005-08-01T05:52:53Z,2020-02-15T06:59:54Z +11960,443,1,11449,4.99,2005-08-02T20:44:43Z,2020-02-15T06:59:54Z +11961,443,1,12415,4.99,2005-08-18T09:54:01Z,2020-02-15T06:59:54Z +11962,443,2,12857,4.99,2005-08-19T02:20:13Z,2020-02-15T06:59:54Z +11963,443,1,13489,2.99,2005-08-20T01:29:06Z,2020-02-15T06:59:54Z +11964,443,1,14561,2.99,2005-08-21T16:20:43Z,2020-02-15T06:59:54Z +11965,443,2,14611,6.99,2005-08-21T18:01:41Z,2020-02-15T06:59:54Z +11966,443,1,15182,0.99,2005-08-22T15:47:05Z,2020-02-15T06:59:54Z +11967,443,2,15393,4.99,2005-08-22T23:04:09Z,2020-02-15T06:59:54Z +11968,443,1,15519,0.99,2005-08-23T03:23:32Z,2020-02-15T06:59:54Z +11969,444,1,201,8.99,2005-05-26T07:13:45Z,2020-02-15T06:59:54Z +11970,444,1,557,0.99,2005-05-28T08:36:22Z,2020-02-15T06:59:54Z +11971,444,1,1239,0.99,2005-06-15T04:53:01Z,2020-02-15T06:59:54Z +11972,444,2,1397,3.99,2005-06-15T16:25:26Z,2020-02-15T06:59:54Z +11973,444,2,1441,1.99,2005-06-15T18:54:21Z,2020-02-15T06:59:54Z +11974,444,1,2551,4.99,2005-06-19T02:51:04Z,2020-02-15T06:59:54Z +11975,444,2,3301,7.99,2005-06-21T07:32:25Z,2020-02-15T06:59:54Z +11976,444,2,3415,5.99,2005-06-21T16:59:49Z,2020-02-15T06:59:54Z +11977,444,2,3498,4.99,2005-07-06T00:02:08Z,2020-02-15T06:59:54Z +11978,444,1,3539,0.99,2005-07-06T01:39:08Z,2020-02-15T06:59:54Z +11979,444,2,4648,6.99,2005-07-08T09:31:27Z,2020-02-15T06:59:54Z +11980,444,1,5753,2.99,2005-07-10T12:29:43Z,2020-02-15T06:59:54Z +11981,444,2,5825,2.99,2005-07-10T16:20:30Z,2020-02-15T06:59:54Z +11982,444,2,6285,2.99,2005-07-11T16:52:07Z,2020-02-15T06:59:54Z +11983,444,2,7679,3.99,2005-07-28T02:58:39Z,2020-02-15T06:59:54Z +11984,444,2,9634,1.99,2005-07-31T05:06:02Z,2020-02-15T06:59:54Z +11985,444,1,10529,4.99,2005-08-01T12:00:02Z,2020-02-15T06:59:54Z +11986,444,1,10693,4.99,2005-08-01T18:14:14Z,2020-02-15T06:59:54Z +11987,444,2,11353,0.99,2005-08-02T17:34:45Z,2020-02-15T06:59:54Z +11988,444,2,11419,6.99,2005-08-02T19:46:38Z,2020-02-15T06:59:54Z +11989,444,1,11728,4.99,2005-08-17T08:12:26Z,2020-02-15T06:59:54Z +11990,444,1,12161,6.99,2005-08-18T00:41:46Z,2020-02-15T06:59:54Z +11991,444,2,12712,2.99,2005-08-18T21:04:13Z,2020-02-15T06:59:54Z +11992,444,2,12946,2.99,2005-08-19T05:53:34Z,2020-02-15T06:59:54Z +11993,444,1,13488,0.99,2005-08-20T01:28:42Z,2020-02-15T06:59:54Z +11994,444,2,13559,2.99,2005-08-20T04:16:07Z,2020-02-15T06:59:54Z +11995,444,1,13924,0.99,2005-08-20T17:05:18Z,2020-02-15T06:59:54Z +11996,444,1,15249,4.99,2005-08-22T17:58:27Z,2020-02-15T06:59:54Z +11997,444,1,15557,0.99,2005-08-23T04:52:17Z,2020-02-15T06:59:54Z +11998,444,2,15815,4.99,2005-08-23T14:55:47Z,2020-02-15T06:59:54Z +11999,445,1,481,2.99,2005-05-27T22:49:27Z,2020-02-15T06:59:54Z +12000,445,1,960,2.99,2005-05-30T18:13:23Z,2020-02-15T06:59:54Z +12001,445,1,4041,0.99,2005-07-07T03:03:33Z,2020-02-15T06:59:54Z +12002,445,1,4193,0.99,2005-07-07T10:57:21Z,2020-02-15T06:59:54Z +12003,445,2,5225,2.99,2005-07-09T12:10:16Z,2020-02-15T06:59:54Z +12004,445,1,6346,0.99,2005-07-11T20:08:34Z,2020-02-15T06:59:54Z +12005,445,2,7351,2.99,2005-07-27T14:37:36Z,2020-02-15T06:59:54Z +12006,445,2,7971,4.99,2005-07-28T14:00:47Z,2020-02-15T06:59:54Z +12007,445,1,8851,8.99,2005-07-29T23:26:19Z,2020-02-15T06:59:54Z +12008,445,2,8911,0.99,2005-07-30T01:30:57Z,2020-02-15T06:59:54Z +12009,445,2,9625,4.99,2005-07-31T04:30:48Z,2020-02-15T06:59:54Z +12010,445,1,10007,0.99,2005-07-31T17:54:58Z,2020-02-15T06:59:54Z +12011,445,2,10334,1.99,2005-08-01T04:58:42Z,2020-02-15T06:59:54Z +12012,445,2,10341,0.99,2005-08-01T05:10:02Z,2020-02-15T06:59:54Z +12013,445,2,10936,9.99,2005-08-02T02:55:04Z,2020-02-15T06:59:54Z +12014,445,1,11383,7.99,2005-08-02T18:22:05Z,2020-02-15T06:59:54Z +12015,445,1,11868,4.99,2005-08-17T14:05:34Z,2020-02-15T06:59:54Z +12016,445,1,11877,3.99,2005-08-17T14:21:11Z,2020-02-15T06:59:54Z +12017,445,2,13586,0.99,2005-08-20T05:40:33Z,2020-02-15T06:59:54Z +12018,445,1,14612,6.99,2005-08-21T18:03:15Z,2020-02-15T06:59:54Z +12019,445,2,14673,2.99,2005-08-21T20:01:18Z,2020-02-15T06:59:54Z +12020,445,1,14866,6.99,2005-08-22T03:11:35Z,2020-02-15T06:59:54Z +12021,445,1,14955,4.99,2005-08-22T06:25:52Z,2020-02-15T06:59:54Z +12022,445,1,15123,3.99,2005-08-22T12:48:44Z,2020-02-15T06:59:54Z +12023,445,1,15791,6.99,2005-08-23T14:02:13Z,2020-02-15T06:59:54Z +12024,445,2,15906,2.99,2005-08-23T17:36:00Z,2020-02-15T06:59:54Z +12025,446,2,14,0.99,2005-05-25T00:31:15Z,2020-02-15T06:59:54Z +12026,446,1,236,0.99,2005-05-26T11:53:49Z,2020-02-15T06:59:54Z +12027,446,1,355,4.99,2005-05-27T06:15:33Z,2020-02-15T06:59:54Z +12028,446,1,2248,4.99,2005-06-18T04:59:48Z,2020-02-15T06:59:54Z +12029,446,2,2335,3.99,2005-06-18T10:59:36Z,2020-02-15T06:59:54Z +12030,446,2,2520,6.99,2005-06-19T00:29:00Z,2020-02-15T06:59:54Z +12031,446,2,2710,0.99,2005-06-19T14:03:56Z,2020-02-15T06:59:54Z +12032,446,1,3060,2.99,2005-06-20T13:47:20Z,2020-02-15T06:59:54Z +12033,446,2,3168,0.99,2005-06-20T21:46:01Z,2020-02-15T06:59:54Z +12034,446,2,4358,4.99,2005-07-07T19:27:04Z,2020-02-15T06:59:54Z +12035,446,2,5393,4.99,2005-07-09T19:35:12Z,2020-02-15T06:59:54Z +12036,446,2,5409,2.99,2005-07-09T20:17:19Z,2020-02-15T06:59:54Z +12037,446,2,6454,0.99,2005-07-12T01:00:12Z,2020-02-15T06:59:54Z +12038,446,1,6510,4.99,2005-07-12T03:35:39Z,2020-02-15T06:59:54Z +12039,446,1,6535,0.99,2005-07-12T04:43:43Z,2020-02-15T06:59:54Z +12040,446,1,6734,6.99,2005-07-12T14:04:24Z,2020-02-15T06:59:54Z +12041,446,1,7005,5.99,2005-07-27T01:38:36Z,2020-02-15T06:59:54Z +12042,446,2,7089,0.99,2005-07-27T04:43:42Z,2020-02-15T06:59:54Z +12043,446,1,7576,4.99,2005-07-27T22:54:35Z,2020-02-15T06:59:54Z +12044,446,2,8284,6.99,2005-07-29T01:56:40Z,2020-02-15T06:59:54Z +12045,446,1,8309,4.99,2005-07-29T03:22:20Z,2020-02-15T06:59:54Z +12046,446,2,8670,4.99,2005-07-29T15:49:03Z,2020-02-15T06:59:54Z +12047,446,2,8691,0.99,2005-07-29T16:41:23Z,2020-02-15T06:59:54Z +12048,446,2,8922,9.99,2005-07-30T02:08:25Z,2020-02-15T06:59:54Z +12049,446,1,8923,3.99,2005-07-30T02:08:49Z,2020-02-15T06:59:54Z +12050,446,1,9116,0.99,2005-07-30T09:19:41Z,2020-02-15T06:59:54Z +12051,446,1,11051,3.99,2005-08-02T06:23:39Z,2020-02-15T06:59:54Z +12052,446,2,12253,0.99,2005-08-18T04:00:50Z,2020-02-15T06:59:54Z +12053,446,2,12480,8.99,2005-08-18T12:26:43Z,2020-02-15T06:59:54Z +12054,446,1,15808,1.99,2005-08-23T14:38:37Z,2020-02-15T06:59:54Z +12055,446,2,15951,0.99,2005-08-23T19:10:32Z,2020-02-15T06:59:54Z +12056,447,1,461,2.99,2005-05-27T20:08:55Z,2020-02-15T06:59:54Z +12057,447,2,732,0.99,2005-05-29T07:32:51Z,2020-02-15T06:59:54Z +12058,447,2,1230,0.99,2005-06-15T04:04:09Z,2020-02-15T06:59:54Z +12059,447,2,1890,2.99,2005-06-17T04:06:13Z,2020-02-15T06:59:54Z +12060,447,1,2025,4.99,2005-06-17T13:04:00Z,2020-02-15T06:59:54Z +12061,447,2,2285,4.99,2005-06-18T07:00:54Z,2020-02-15T06:59:54Z +12062,447,2,4403,4.99,2005-07-07T21:29:40Z,2020-02-15T06:59:54Z +12063,447,1,4858,6.99,2005-07-08T18:53:24Z,2020-02-15T06:59:54Z +12064,447,1,5331,4.99,2005-07-09T16:54:06Z,2020-02-15T06:59:54Z +12065,447,1,5734,0.99,2005-07-10T11:37:28Z,2020-02-15T06:59:54Z +12066,447,2,5987,2.99,2005-07-11T00:55:31Z,2020-02-15T06:59:54Z +12067,447,1,6651,0.99,2005-07-12T10:57:28Z,2020-02-15T06:59:54Z +12068,447,1,6690,1.99,2005-07-12T12:23:02Z,2020-02-15T06:59:54Z +12069,447,1,8537,8.99,2005-07-29T10:44:54Z,2020-02-15T06:59:54Z +12070,447,2,8945,4.99,2005-07-30T03:11:48Z,2020-02-15T06:59:54Z +12071,447,2,9076,5.99,2005-07-30T07:58:12Z,2020-02-15T06:59:54Z +12072,447,1,9288,6.99,2005-07-30T15:56:39Z,2020-02-15T06:59:54Z +12073,447,1,10425,2.99,2005-08-01T08:23:25Z,2020-02-15T06:59:54Z +12074,447,2,10957,5.99,2005-08-02T03:33:30Z,2020-02-15T06:59:54Z +12075,447,2,11108,0.99,2005-08-02T08:20:01Z,2020-02-15T06:59:54Z +12076,447,1,11465,5.99,2005-08-02T21:43:52Z,2020-02-15T06:59:54Z +12077,447,2,12511,0.99,2005-08-18T13:23:19Z,2020-02-15T06:59:54Z +12078,447,1,13072,2.99,2005-08-19T10:03:30Z,2020-02-15T06:59:54Z +12079,447,2,13110,0.99,2005-08-19T11:24:37Z,2020-02-15T06:59:54Z +12080,447,1,13848,4.99,2005-08-20T14:37:49Z,2020-02-15T06:59:54Z +12081,447,2,14443,5.99,2005-08-21T12:06:32Z,2020-02-15T06:59:54Z +12082,447,1,15108,2.99,2005-08-22T12:10:07Z,2020-02-15T06:59:54Z +12083,447,1,15997,4.99,2005-08-23T20:40:31Z,2020-02-15T06:59:54Z +12084,447,2,16032,4.99,2005-08-23T21:59:57Z,2020-02-15T06:59:54Z +12085,448,1,299,4.99,2005-05-26T20:55:36Z,2020-02-15T06:59:54Z +12086,448,2,1123,2.99,2005-05-31T16:48:43Z,2020-02-15T06:59:54Z +12087,448,1,1313,5.99,2005-06-15T10:18:34Z,2020-02-15T06:59:54Z +12088,448,2,1823,7.99,2005-06-16T21:48:16Z,2020-02-15T06:59:54Z +12089,448,2,2697,0.99,2005-06-19T13:29:08Z,2020-02-15T06:59:54Z +12090,448,2,3225,3.99,2005-06-21T02:16:55Z,2020-02-15T06:59:54Z +12091,448,2,3347,5.99,2005-06-21T11:08:32Z,2020-02-15T06:59:54Z +12092,448,2,3959,5.99,2005-07-06T22:07:58Z,2020-02-15T06:59:54Z +12093,448,2,3992,6.99,2005-07-06T23:36:56Z,2020-02-15T06:59:54Z +12094,448,2,4024,0.99,2005-07-07T02:11:23Z,2020-02-15T06:59:54Z +12095,448,2,4206,2.99,2005-07-07T11:32:16Z,2020-02-15T06:59:54Z +12096,448,1,4406,1.99,2005-07-07T21:35:16Z,2020-02-15T06:59:54Z +12097,448,2,4537,2.99,2005-07-08T03:48:40Z,2020-02-15T06:59:54Z +12098,448,2,4558,2.99,2005-07-08T04:55:26Z,2020-02-15T06:59:54Z +12099,448,2,6341,2.99,2005-07-11T19:48:02Z,2020-02-15T06:59:54Z +12100,448,2,6985,4.99,2005-07-27T00:57:42Z,2020-02-15T06:59:54Z +12101,448,1,9178,10.99,2005-07-30T11:58:50Z,2020-02-15T06:59:54Z +12102,448,2,11608,8.99,2005-08-17T03:36:52Z,2020-02-15T06:59:54Z +12103,448,1,11798,9.99,2005-08-17T11:21:43Z,2020-02-15T06:59:54Z +12104,448,1,12446,2.99,2005-08-18T10:56:29Z,2020-02-15T06:59:54Z +12105,448,1,13220,2.99,2005-08-19T15:42:32Z,2020-02-15T06:59:54Z +12106,448,2,13250,3.99,2005-08-19T16:47:55Z,2020-02-15T06:59:54Z +12107,448,1,13982,3.99,2005-08-20T19:08:25Z,2020-02-15T06:59:54Z +12108,448,1,14580,3.99,2005-08-21T16:56:39Z,2020-02-15T06:59:54Z +12109,448,1,14711,2.99,2005-08-21T21:22:07Z,2020-02-15T06:59:54Z +12110,448,2,15358,9.99,2005-08-22T21:29:14Z,2020-02-15T06:59:54Z +12111,448,1,15427,4.99,2005-08-23T00:07:53Z,2020-02-15T06:59:54Z +12112,448,2,14734,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +12113,448,1,13577,0,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +12114,449,2,263,4.99,2005-05-26T15:47:40Z,2020-02-15T06:59:54Z +12115,449,2,325,5.99,2005-05-27T01:09:55Z,2020-02-15T06:59:54Z +12116,449,1,849,7.99,2005-05-30T01:23:07Z,2020-02-15T06:59:54Z +12117,449,2,1295,4.99,2005-06-15T09:17:20Z,2020-02-15T06:59:54Z +12118,449,1,2348,0.99,2005-06-18T12:15:43Z,2020-02-15T06:59:54Z +12119,449,2,2970,2.99,2005-06-20T07:51:51Z,2020-02-15T06:59:54Z +12120,449,1,3503,0.99,2005-07-06T00:17:24Z,2020-02-15T06:59:54Z +12121,449,1,3977,8.99,2005-07-06T23:00:49Z,2020-02-15T06:59:54Z +12122,449,2,4433,3.99,2005-07-07T22:45:41Z,2020-02-15T06:59:54Z +12123,449,1,5824,2.99,2005-07-10T16:19:53Z,2020-02-15T06:59:54Z +12124,449,2,7755,6.99,2005-07-28T06:22:18Z,2020-02-15T06:59:54Z +12125,449,2,7803,3.99,2005-07-28T07:52:13Z,2020-02-15T06:59:54Z +12126,449,2,8002,2.99,2005-07-28T15:11:00Z,2020-02-15T06:59:54Z +12127,449,2,10083,5.99,2005-07-31T20:10:19Z,2020-02-15T06:59:54Z +12128,449,2,10409,2.99,2005-08-01T07:49:15Z,2020-02-15T06:59:54Z +12129,449,1,10416,4.99,2005-08-01T08:08:39Z,2020-02-15T06:59:54Z +12130,449,1,10516,6.99,2005-08-01T11:41:55Z,2020-02-15T06:59:54Z +12131,449,2,10688,6.99,2005-08-01T17:53:43Z,2020-02-15T06:59:54Z +12132,449,1,12212,4.99,2005-08-18T02:33:29Z,2020-02-15T06:59:54Z +12133,449,2,14962,7.99,2005-08-22T06:37:43Z,2020-02-15T06:59:54Z +12134,450,2,548,3.99,2005-05-28T07:34:56Z,2020-02-15T06:59:54Z +12135,450,2,1639,4.99,2005-06-16T08:33:39Z,2020-02-15T06:59:54Z +12136,450,1,1739,0.99,2005-06-16T16:09:38Z,2020-02-15T06:59:54Z +12137,450,2,1914,2.99,2005-06-17T05:25:54Z,2020-02-15T06:59:54Z +12138,450,2,2278,0.99,2005-06-18T06:37:57Z,2020-02-15T06:59:54Z +12139,450,1,2501,4.99,2005-06-18T23:10:11Z,2020-02-15T06:59:54Z +12140,450,1,2626,2.99,2005-06-19T08:28:44Z,2020-02-15T06:59:54Z +12141,450,1,3155,4.99,2005-06-20T21:02:38Z,2020-02-15T06:59:54Z +12142,450,1,3570,3.99,2005-07-06T03:23:43Z,2020-02-15T06:59:54Z +12143,450,1,5999,7.99,2005-07-11T01:21:22Z,2020-02-15T06:59:54Z +12144,450,1,6028,4.99,2005-07-11T02:31:44Z,2020-02-15T06:59:54Z +12145,450,2,7365,2.99,2005-07-27T15:00:20Z,2020-02-15T06:59:54Z +12146,450,1,7610,0.99,2005-07-28T00:11:35Z,2020-02-15T06:59:54Z +12147,450,1,7626,0.99,2005-07-28T00:49:01Z,2020-02-15T06:59:54Z +12148,450,2,8733,4.99,2005-07-29T18:26:34Z,2020-02-15T06:59:54Z +12149,450,2,10432,2.99,2005-08-01T08:43:21Z,2020-02-15T06:59:54Z +12150,450,1,10984,3.99,2005-08-02T04:30:02Z,2020-02-15T06:59:54Z +12151,450,2,12812,0.99,2005-08-19T00:54:02Z,2020-02-15T06:59:54Z +12152,450,2,13731,4.99,2005-08-20T10:22:08Z,2020-02-15T06:59:54Z +12153,450,1,13810,0.99,2005-08-20T12:59:38Z,2020-02-15T06:59:54Z +12154,450,1,13828,4.99,2005-08-20T13:49:52Z,2020-02-15T06:59:54Z +12155,450,1,14282,4.99,2005-08-21T06:41:29Z,2020-02-15T06:59:54Z +12156,450,2,15019,0.99,2005-08-22T08:52:53Z,2020-02-15T06:59:54Z +12157,450,1,15327,4.99,2005-08-22T20:31:24Z,2020-02-15T06:59:54Z +12158,450,2,15419,4.99,2005-08-22T23:54:36Z,2020-02-15T06:59:54Z +12159,450,1,14172,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:54Z +12160,451,2,77,0.99,2005-05-25T11:31:59Z,2020-02-15T06:59:54Z +12161,451,2,328,2.99,2005-05-27T01:29:31Z,2020-02-15T06:59:54Z +12162,451,2,1113,2.99,2005-05-31T15:58:44Z,2020-02-15T06:59:54Z +12163,451,1,1202,0.99,2005-06-15T02:08:04Z,2020-02-15T06:59:54Z +12164,451,1,1851,0.99,2005-06-17T00:32:26Z,2020-02-15T06:59:54Z +12165,451,1,1940,6.99,2005-06-17T07:42:22Z,2020-02-15T06:59:54Z +12166,451,1,2671,1.99,2005-06-19T11:33:11Z,2020-02-15T06:59:54Z +12167,451,1,2909,3.99,2005-06-20T03:19:10Z,2020-02-15T06:59:54Z +12168,451,2,2917,0.99,2005-06-20T04:08:35Z,2020-02-15T06:59:55Z +12169,451,1,3316,6.99,2005-06-21T08:20:18Z,2020-02-15T06:59:55Z +12170,451,2,3826,4.99,2005-07-06T15:51:58Z,2020-02-15T06:59:55Z +12171,451,1,4538,2.99,2005-07-08T03:56:29Z,2020-02-15T06:59:55Z +12172,451,1,4794,8.99,2005-07-08T16:30:11Z,2020-02-15T06:59:55Z +12173,451,2,4930,4.99,2005-07-08T22:15:48Z,2020-02-15T06:59:55Z +12174,451,1,5005,3.99,2005-07-09T01:21:44Z,2020-02-15T06:59:55Z +12175,451,2,5518,8.99,2005-07-10T01:15:11Z,2020-02-15T06:59:55Z +12176,451,1,7018,2.99,2005-07-27T02:20:22Z,2020-02-15T06:59:55Z +12177,451,2,10337,8.99,2005-08-01T05:01:46Z,2020-02-15T06:59:55Z +12178,451,1,10856,2.99,2005-08-02T00:07:14Z,2020-02-15T06:59:55Z +12179,451,2,10950,2.99,2005-08-02T03:25:08Z,2020-02-15T06:59:55Z +12180,451,2,11167,6.99,2005-08-02T10:15:51Z,2020-02-15T06:59:55Z +12181,451,2,11381,6.99,2005-08-02T18:19:29Z,2020-02-15T06:59:55Z +12182,451,1,11790,2.99,2005-08-17T11:00:08Z,2020-02-15T06:59:55Z +12183,451,2,12371,2.99,2005-08-18T08:02:46Z,2020-02-15T06:59:55Z +12184,451,1,12422,4.99,2005-08-18T10:13:12Z,2020-02-15T06:59:55Z +12185,451,2,13003,1.99,2005-08-19T07:39:29Z,2020-02-15T06:59:55Z +12186,451,2,13100,2.99,2005-08-19T10:55:45Z,2020-02-15T06:59:55Z +12187,451,2,13252,2.99,2005-08-19T16:50:50Z,2020-02-15T06:59:55Z +12188,451,2,13380,0.99,2005-08-19T21:36:58Z,2020-02-15T06:59:55Z +12189,451,1,13666,2.99,2005-08-20T08:20:19Z,2020-02-15T06:59:55Z +12190,451,1,13705,2.99,2005-08-20T09:32:23Z,2020-02-15T06:59:55Z +12191,451,2,14500,0.99,2005-08-21T14:11:30Z,2020-02-15T06:59:55Z +12192,451,1,15651,4.99,2005-08-23T08:31:49Z,2020-02-15T06:59:55Z +12193,452,1,354,2.99,2005-05-27T06:12:26Z,2020-02-15T06:59:55Z +12194,452,2,714,2.99,2005-05-29T04:15:21Z,2020-02-15T06:59:55Z +12195,452,1,726,1.99,2005-05-29T06:05:29Z,2020-02-15T06:59:55Z +12196,452,2,1203,4.99,2005-06-15T02:09:02Z,2020-02-15T06:59:55Z +12197,452,1,1512,5.99,2005-06-15T22:53:03Z,2020-02-15T06:59:55Z +12198,452,1,1794,3.99,2005-06-16T20:08:37Z,2020-02-15T06:59:55Z +12199,452,1,2263,0.99,2005-06-18T05:57:47Z,2020-02-15T06:59:55Z +12200,452,2,2266,4.99,2005-06-18T06:05:02Z,2020-02-15T06:59:55Z +12201,452,1,2504,0.99,2005-06-18T23:19:53Z,2020-02-15T06:59:55Z +12202,452,2,2661,0.99,2005-06-19T10:50:52Z,2020-02-15T06:59:55Z +12203,452,2,3638,3.99,2005-07-06T07:08:17Z,2020-02-15T06:59:55Z +12204,452,1,3791,2.99,2005-07-06T14:24:56Z,2020-02-15T06:59:55Z +12205,452,2,3907,6.99,2005-07-06T19:39:14Z,2020-02-15T06:59:55Z +12206,452,1,4348,0.99,2005-07-07T19:02:05Z,2020-02-15T06:59:55Z +12207,452,2,4353,4.99,2005-07-07T19:19:05Z,2020-02-15T06:59:55Z +12208,452,2,4417,2.99,2005-07-07T22:05:05Z,2020-02-15T06:59:55Z +12209,452,1,4720,0.99,2005-07-08T12:34:34Z,2020-02-15T06:59:55Z +12210,452,1,5177,1.99,2005-07-09T09:43:21Z,2020-02-15T06:59:55Z +12211,452,2,5480,0.99,2005-07-09T23:49:07Z,2020-02-15T06:59:55Z +12212,452,2,6959,2.99,2005-07-27T00:07:51Z,2020-02-15T06:59:55Z +12213,452,2,7899,6.99,2005-07-28T11:10:12Z,2020-02-15T06:59:55Z +12214,452,1,8898,1.99,2005-07-30T01:02:20Z,2020-02-15T06:59:55Z +12215,452,2,9379,6.99,2005-07-30T19:13:01Z,2020-02-15T06:59:55Z +12216,452,2,11715,4.99,2005-08-17T07:40:55Z,2020-02-15T06:59:55Z +12217,452,1,11735,3.99,2005-08-17T08:35:42Z,2020-02-15T06:59:55Z +12218,452,1,12355,0.99,2005-08-18T07:36:23Z,2020-02-15T06:59:55Z +12219,452,1,12630,4.99,2005-08-18T17:49:28Z,2020-02-15T06:59:55Z +12220,452,1,13080,4.99,2005-08-19T10:18:00Z,2020-02-15T06:59:55Z +12221,452,1,13642,3.99,2005-08-20T07:42:17Z,2020-02-15T06:59:55Z +12222,452,1,14660,0.99,2005-08-21T19:43:21Z,2020-02-15T06:59:55Z +12223,452,1,15909,0.99,2005-08-23T17:42:42Z,2020-02-15T06:59:55Z +12224,452,1,14175,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12225,453,2,2852,5.99,2005-06-19T23:08:50Z,2020-02-15T06:59:55Z +12226,453,1,2853,7.99,2005-06-19T23:09:41Z,2020-02-15T06:59:55Z +12227,453,2,2887,4.99,2005-06-20T01:39:43Z,2020-02-15T06:59:55Z +12228,453,2,3929,0.99,2005-07-06T20:52:39Z,2020-02-15T06:59:55Z +12229,453,2,4033,8.99,2005-07-07T02:35:46Z,2020-02-15T06:59:55Z +12230,453,1,4717,4.99,2005-07-08T12:22:43Z,2020-02-15T06:59:55Z +12231,453,2,4805,2.99,2005-07-08T16:59:12Z,2020-02-15T06:59:55Z +12232,453,2,5359,6.99,2005-07-09T18:10:52Z,2020-02-15T06:59:55Z +12233,453,1,6752,4.99,2005-07-12T14:53:15Z,2020-02-15T06:59:55Z +12234,453,1,7563,0.99,2005-07-27T22:25:36Z,2020-02-15T06:59:55Z +12235,453,2,9289,6.99,2005-07-30T15:57:04Z,2020-02-15T06:59:55Z +12236,453,2,9406,6.99,2005-07-30T20:24:00Z,2020-02-15T06:59:55Z +12237,453,2,9900,1.99,2005-07-31T14:15:05Z,2020-02-15T06:59:55Z +12238,453,1,11794,4.99,2005-08-17T11:08:48Z,2020-02-15T06:59:55Z +12239,453,1,12703,2.99,2005-08-18T20:37:13Z,2020-02-15T06:59:55Z +12240,453,1,13711,7.99,2005-08-20T09:35:20Z,2020-02-15T06:59:55Z +12241,453,1,13785,4.99,2005-08-20T12:11:46Z,2020-02-15T06:59:55Z +12242,453,1,14133,2.99,2005-08-21T01:44:14Z,2020-02-15T06:59:55Z +12243,453,2,14306,5.99,2005-08-21T07:32:35Z,2020-02-15T06:59:55Z +12244,453,2,14644,4.99,2005-08-21T19:12:12Z,2020-02-15T06:59:55Z +12245,453,1,14652,4.99,2005-08-21T19:32:05Z,2020-02-15T06:59:55Z +12246,453,1,15252,0.99,2005-08-22T18:04:22Z,2020-02-15T06:59:55Z +12247,453,2,15627,4.99,2005-08-23T07:25:38Z,2020-02-15T06:59:55Z +12248,454,1,735,7.99,2005-05-29T08:08:13Z,2020-02-15T06:59:55Z +12249,454,2,1647,4.99,2005-06-16T09:14:58Z,2020-02-15T06:59:55Z +12250,454,2,1844,7.99,2005-06-16T23:53:53Z,2020-02-15T06:59:55Z +12251,454,1,1861,1.99,2005-06-17T01:17:31Z,2020-02-15T06:59:55Z +12252,454,1,1938,4.99,2005-06-17T07:18:36Z,2020-02-15T06:59:55Z +12253,454,2,2048,5.99,2005-06-17T14:55:29Z,2020-02-15T06:59:55Z +12254,454,2,2182,5.99,2005-06-18T00:56:18Z,2020-02-15T06:59:55Z +12255,454,1,2437,2.99,2005-06-18T18:30:26Z,2020-02-15T06:59:55Z +12256,454,2,2666,9.99,2005-06-19T11:17:12Z,2020-02-15T06:59:55Z +12257,454,1,3221,2.99,2005-06-21T01:49:47Z,2020-02-15T06:59:55Z +12258,454,1,3362,4.99,2005-06-21T12:19:54Z,2020-02-15T06:59:55Z +12259,454,1,3622,7.99,2005-07-06T06:05:04Z,2020-02-15T06:59:55Z +12260,454,2,4562,4.99,2005-07-08T05:08:32Z,2020-02-15T06:59:55Z +12261,454,2,5088,4.99,2005-07-09T05:45:16Z,2020-02-15T06:59:55Z +12262,454,2,5446,2.99,2005-07-09T21:59:55Z,2020-02-15T06:59:55Z +12263,454,2,6260,4.99,2005-07-11T15:26:29Z,2020-02-15T06:59:55Z +12264,454,2,6701,0.99,2005-07-12T12:47:59Z,2020-02-15T06:59:55Z +12265,454,2,8481,2.99,2005-07-29T08:45:57Z,2020-02-15T06:59:55Z +12266,454,1,8806,0.99,2005-07-29T21:36:34Z,2020-02-15T06:59:55Z +12267,454,2,9041,0.99,2005-07-30T06:32:36Z,2020-02-15T06:59:55Z +12268,454,1,9372,9.99,2005-07-30T19:04:30Z,2020-02-15T06:59:55Z +12269,454,1,10005,3.99,2005-07-31T17:53:51Z,2020-02-15T06:59:55Z +12270,454,2,12347,0.99,2005-08-18T07:18:10Z,2020-02-15T06:59:55Z +12271,454,1,12553,0.99,2005-08-18T14:46:54Z,2020-02-15T06:59:55Z +12272,454,2,13496,8.99,2005-08-20T01:42:29Z,2020-02-15T06:59:55Z +12273,454,2,13513,2.99,2005-08-20T02:27:53Z,2020-02-15T06:59:55Z +12274,454,2,13694,8.99,2005-08-20T09:13:23Z,2020-02-15T06:59:55Z +12275,454,1,13805,6.99,2005-08-20T12:53:12Z,2020-02-15T06:59:55Z +12276,454,1,14799,0.99,2005-08-22T00:44:57Z,2020-02-15T06:59:55Z +12277,454,2,14843,2.99,2005-08-22T02:05:25Z,2020-02-15T06:59:55Z +12278,454,2,15012,4.99,2005-08-22T08:42:32Z,2020-02-15T06:59:55Z +12279,454,1,15301,3.99,2005-08-22T19:44:16Z,2020-02-15T06:59:55Z +12280,454,2,15608,1.99,2005-08-23T06:55:26Z,2020-02-15T06:59:55Z +12281,455,2,115,0.99,2005-05-25T19:13:25Z,2020-02-15T06:59:55Z +12282,455,2,343,0.99,2005-05-27T04:13:41Z,2020-02-15T06:59:55Z +12283,455,2,1382,1.99,2005-06-15T15:18:08Z,2020-02-15T06:59:55Z +12284,455,1,1802,1.99,2005-06-16T20:23:30Z,2020-02-15T06:59:55Z +12285,455,1,1906,2.99,2005-06-17T04:53:35Z,2020-02-15T06:59:55Z +12286,455,2,2356,0.99,2005-06-18T12:59:23Z,2020-02-15T06:59:55Z +12287,455,2,4195,2.99,2005-07-07T11:00:02Z,2020-02-15T06:59:55Z +12288,455,1,4861,8.99,2005-07-08T18:57:30Z,2020-02-15T06:59:55Z +12289,455,1,4964,2.99,2005-07-08T23:46:38Z,2020-02-15T06:59:55Z +12290,455,1,5504,6.99,2005-07-10T00:36:38Z,2020-02-15T06:59:55Z +12291,455,2,6729,4.99,2005-07-12T13:58:23Z,2020-02-15T06:59:55Z +12292,455,1,7388,4.99,2005-07-27T15:54:19Z,2020-02-15T06:59:55Z +12293,455,2,7498,4.99,2005-07-27T20:09:31Z,2020-02-15T06:59:55Z +12294,455,2,7905,5.99,2005-07-28T11:26:57Z,2020-02-15T06:59:55Z +12295,455,2,8291,2.99,2005-07-29T02:28:25Z,2020-02-15T06:59:55Z +12296,455,1,10436,0.99,2005-08-01T08:50:59Z,2020-02-15T06:59:55Z +12297,455,1,11605,4.99,2005-08-17T03:30:57Z,2020-02-15T06:59:55Z +12298,455,1,12163,2.99,2005-08-18T00:46:01Z,2020-02-15T06:59:55Z +12299,455,1,12314,4.99,2005-08-18T06:10:02Z,2020-02-15T06:59:55Z +12300,455,2,13083,2.99,2005-08-19T10:26:45Z,2020-02-15T06:59:55Z +12301,455,2,13813,4.99,2005-08-20T13:03:26Z,2020-02-15T06:59:55Z +12302,455,1,14294,2.99,2005-08-21T07:07:26Z,2020-02-15T06:59:55Z +12303,455,2,14583,4.99,2005-08-21T17:11:47Z,2020-02-15T06:59:55Z +12304,455,1,15494,1.99,2005-08-23T02:25:09Z,2020-02-15T06:59:55Z +12305,456,2,19,4.99,2005-05-25T01:17:24Z,2020-02-15T06:59:55Z +12306,456,1,1288,2.99,2005-06-15T08:41:52Z,2020-02-15T06:59:55Z +12307,456,1,1700,0.99,2005-06-16T13:18:23Z,2020-02-15T06:59:55Z +12308,456,2,2103,5.99,2005-06-17T19:13:10Z,2020-02-15T06:59:55Z +12309,456,2,2146,6.99,2005-06-17T22:26:23Z,2020-02-15T06:59:55Z +12310,456,1,2192,4.99,2005-06-18T01:35:47Z,2020-02-15T06:59:55Z +12311,456,1,2404,0.99,2005-06-18T16:33:48Z,2020-02-15T06:59:55Z +12312,456,1,2581,2.99,2005-06-19T04:54:13Z,2020-02-15T06:59:55Z +12313,456,1,3743,7.99,2005-07-06T12:03:54Z,2020-02-15T06:59:55Z +12314,456,2,3881,2.99,2005-07-06T18:35:37Z,2020-02-15T06:59:55Z +12315,456,1,4141,3.99,2005-07-07T08:19:20Z,2020-02-15T06:59:55Z +12316,456,2,5964,0.99,2005-07-10T23:47:18Z,2020-02-15T06:59:55Z +12317,456,2,6023,0.99,2005-07-11T02:15:57Z,2020-02-15T06:59:55Z +12318,456,2,7248,2.99,2005-07-27T10:37:45Z,2020-02-15T06:59:55Z +12319,456,1,8749,4.99,2005-07-29T19:13:15Z,2020-02-15T06:59:55Z +12320,456,2,10519,5.99,2005-08-01T11:44:13Z,2020-02-15T06:59:55Z +12321,456,1,10813,2.99,2005-08-01T22:43:00Z,2020-02-15T06:59:55Z +12322,456,1,12188,4.99,2005-08-18T01:51:43Z,2020-02-15T06:59:55Z +12323,456,1,13144,8.99,2005-08-19T12:45:55Z,2020-02-15T06:59:55Z +12324,456,1,13348,4.99,2005-08-19T20:31:48Z,2020-02-15T06:59:55Z +12325,456,1,13547,4.99,2005-08-20T03:53:16Z,2020-02-15T06:59:55Z +12326,456,2,14253,2.99,2005-08-21T05:47:52Z,2020-02-15T06:59:55Z +12327,456,2,14690,1.99,2005-08-21T20:42:25Z,2020-02-15T06:59:55Z +12328,456,1,15720,3.99,2005-08-23T11:15:20Z,2020-02-15T06:59:55Z +12329,456,1,15910,2.99,2005-08-23T17:43:16Z,2020-02-15T06:59:55Z +12330,457,2,1024,7.99,2005-05-31T03:30:19Z,2020-02-15T06:59:55Z +12331,457,2,1453,4.99,2005-06-15T19:36:39Z,2020-02-15T06:59:55Z +12332,457,2,1727,0.99,2005-06-16T15:21:47Z,2020-02-15T06:59:55Z +12333,457,1,2030,0.99,2005-06-17T13:13:27Z,2020-02-15T06:59:55Z +12334,457,1,2172,7.99,2005-06-18T00:06:16Z,2020-02-15T06:59:55Z +12335,457,1,2670,4.99,2005-06-19T11:30:16Z,2020-02-15T06:59:55Z +12336,457,1,2762,3.99,2005-06-19T17:22:31Z,2020-02-15T06:59:55Z +12337,457,1,2811,0.99,2005-06-19T19:53:30Z,2020-02-15T06:59:55Z +12338,457,2,3115,2.99,2005-06-20T17:59:05Z,2020-02-15T06:59:55Z +12339,457,2,3184,2.99,2005-06-20T22:57:44Z,2020-02-15T06:59:55Z +12340,457,2,4600,5.99,2005-07-08T06:48:37Z,2020-02-15T06:59:55Z +12341,457,1,5500,0.99,2005-07-10T00:28:17Z,2020-02-15T06:59:55Z +12342,457,1,6467,7.99,2005-07-12T01:22:03Z,2020-02-15T06:59:55Z +12343,457,1,7184,1.99,2005-07-27T08:22:26Z,2020-02-15T06:59:55Z +12344,457,2,8373,4.99,2005-07-29T05:19:53Z,2020-02-15T06:59:55Z +12345,457,1,8502,2.99,2005-07-29T09:15:41Z,2020-02-15T06:59:55Z +12346,457,1,10049,2.99,2005-07-31T19:11:11Z,2020-02-15T06:59:55Z +12347,457,2,11956,6.99,2005-08-17T17:22:05Z,2020-02-15T06:59:55Z +12348,457,1,12115,4.99,2005-08-17T23:04:15Z,2020-02-15T06:59:55Z +12349,457,1,12171,4.99,2005-08-18T01:06:13Z,2020-02-15T06:59:55Z +12350,457,1,13088,0.99,2005-08-19T10:36:11Z,2020-02-15T06:59:55Z +12351,457,1,13150,2.99,2005-08-19T13:08:19Z,2020-02-15T06:59:55Z +12352,457,2,13934,0.99,2005-08-20T17:18:48Z,2020-02-15T06:59:55Z +12353,457,2,14327,10.99,2005-08-21T08:18:18Z,2020-02-15T06:59:55Z +12354,457,1,14365,6.99,2005-08-21T09:25:13Z,2020-02-15T06:59:55Z +12355,457,1,15128,3.99,2005-08-22T12:57:26Z,2020-02-15T06:59:55Z +12356,457,1,12645,3.98,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12357,457,2,14516,0,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12358,458,2,2629,5.99,2005-06-19T08:42:12Z,2020-02-15T06:59:55Z +12359,458,2,3322,0.99,2005-06-21T08:42:37Z,2020-02-15T06:59:55Z +12360,458,2,4525,2.99,2005-07-08T03:15:00Z,2020-02-15T06:59:55Z +12361,458,1,5412,2.99,2005-07-09T20:23:52Z,2020-02-15T06:59:55Z +12362,458,1,5572,0.99,2005-07-10T03:49:00Z,2020-02-15T06:59:55Z +12363,458,2,6250,3.99,2005-07-11T15:02:04Z,2020-02-15T06:59:55Z +12364,458,1,6431,5.99,2005-07-12T00:03:57Z,2020-02-15T06:59:55Z +12365,458,2,6595,7.99,2005-07-12T07:25:48Z,2020-02-15T06:59:55Z +12366,458,1,6654,1.99,2005-07-12T11:06:28Z,2020-02-15T06:59:55Z +12367,458,2,7923,3.99,2005-07-28T12:08:29Z,2020-02-15T06:59:55Z +12368,458,1,8158,0.99,2005-07-28T21:08:46Z,2020-02-15T06:59:55Z +12369,458,2,11138,2.99,2005-08-02T09:26:16Z,2020-02-15T06:59:55Z +12370,458,2,11975,2.99,2005-08-17T17:58:39Z,2020-02-15T06:59:55Z +12371,458,2,12768,0.99,2005-08-18T23:26:11Z,2020-02-15T06:59:55Z +12372,458,2,13259,2.99,2005-08-19T17:08:53Z,2020-02-15T06:59:55Z +12373,458,2,13487,2.99,2005-08-20T01:27:05Z,2020-02-15T06:59:55Z +12374,458,2,13571,4.99,2005-08-20T05:05:14Z,2020-02-15T06:59:55Z +12375,458,2,14428,4.99,2005-08-21T11:27:07Z,2020-02-15T06:59:55Z +12376,458,1,15604,4.99,2005-08-23T06:44:19Z,2020-02-15T06:59:55Z +12377,459,2,2,2.99,2005-05-24T22:54:33Z,2020-02-15T06:59:55Z +12378,459,2,1876,0.99,2005-06-17T02:50:51Z,2020-02-15T06:59:55Z +12379,459,2,1977,2.99,2005-06-17T09:38:22Z,2020-02-15T06:59:55Z +12380,459,2,2075,4.99,2005-06-17T16:40:33Z,2020-02-15T06:59:55Z +12381,459,1,2899,0.99,2005-06-20T02:39:21Z,2020-02-15T06:59:55Z +12382,459,2,3041,4.99,2005-06-20T12:35:44Z,2020-02-15T06:59:55Z +12383,459,2,3045,0.99,2005-06-20T12:42:00Z,2020-02-15T06:59:55Z +12384,459,2,3234,9.99,2005-06-21T02:39:44Z,2020-02-15T06:59:55Z +12385,459,1,3506,2.99,2005-07-06T00:22:29Z,2020-02-15T06:59:55Z +12386,459,2,4519,2.99,2005-07-08T02:51:23Z,2020-02-15T06:59:55Z +12387,459,1,5301,3.99,2005-07-09T15:42:10Z,2020-02-15T06:59:55Z +12388,459,1,5695,0.99,2005-07-10T09:43:40Z,2020-02-15T06:59:55Z +12389,459,1,6206,0.99,2005-07-11T12:32:14Z,2020-02-15T06:59:55Z +12390,459,2,6750,3.99,2005-07-12T14:49:39Z,2020-02-15T06:59:55Z +12391,459,1,7623,6.99,2005-07-28T00:37:41Z,2020-02-15T06:59:55Z +12392,459,2,7639,4.99,2005-07-28T01:14:36Z,2020-02-15T06:59:55Z +12393,459,1,7717,4.99,2005-07-28T04:33:54Z,2020-02-15T06:59:55Z +12394,459,1,7820,5.99,2005-07-28T08:28:51Z,2020-02-15T06:59:55Z +12395,459,1,7913,6.99,2005-07-28T11:47:23Z,2020-02-15T06:59:55Z +12396,459,1,8289,9.99,2005-07-29T02:23:24Z,2020-02-15T06:59:55Z +12397,459,2,8557,10.99,2005-07-29T11:19:59Z,2020-02-15T06:59:55Z +12398,459,1,8897,2.99,2005-07-30T01:00:17Z,2020-02-15T06:59:55Z +12399,459,1,9137,6.99,2005-07-30T10:09:24Z,2020-02-15T06:59:55Z +12400,459,2,9639,2.99,2005-07-31T05:32:10Z,2020-02-15T06:59:55Z +12401,459,1,9744,4.99,2005-07-31T09:15:38Z,2020-02-15T06:59:55Z +12402,459,2,10117,4.99,2005-07-31T21:14:31Z,2020-02-15T06:59:55Z +12403,459,1,10233,6.99,2005-08-01T01:54:23Z,2020-02-15T06:59:55Z +12404,459,2,10255,4.99,2005-08-01T02:46:13Z,2020-02-15T06:59:55Z +12405,459,1,10499,7.99,2005-08-01T11:00:20Z,2020-02-15T06:59:55Z +12406,459,1,10531,2.99,2005-08-01T12:06:30Z,2020-02-15T06:59:55Z +12407,459,1,12527,6.99,2005-08-18T13:48:46Z,2020-02-15T06:59:55Z +12408,459,1,12629,7.99,2005-08-18T17:40:33Z,2020-02-15T06:59:55Z +12409,459,2,13960,10.99,2005-08-20T18:16:26Z,2020-02-15T06:59:55Z +12410,459,1,13967,4.99,2005-08-20T18:28:46Z,2020-02-15T06:59:55Z +12411,459,1,14315,3.99,2005-08-21T07:56:39Z,2020-02-15T06:59:55Z +12412,459,1,15126,5.99,2005-08-22T12:53:58Z,2020-02-15T06:59:55Z +12413,459,2,15342,2.99,2005-08-22T20:56:41Z,2020-02-15T06:59:55Z +12414,459,1,15814,0.99,2005-08-23T14:52:50Z,2020-02-15T06:59:55Z +12415,460,1,223,4.99,2005-05-26T10:15:23Z,2020-02-15T06:59:55Z +12416,460,2,298,0.99,2005-05-26T20:52:26Z,2020-02-15T06:59:55Z +12417,460,1,880,0.99,2005-05-30T06:12:33Z,2020-02-15T06:59:55Z +12418,460,2,1064,4.99,2005-05-31T08:50:07Z,2020-02-15T06:59:55Z +12419,460,2,1392,0.99,2005-06-15T16:12:27Z,2020-02-15T06:59:55Z +12420,460,2,3820,4.99,2005-07-06T15:35:26Z,2020-02-15T06:59:55Z +12421,460,1,4452,7.99,2005-07-07T23:31:54Z,2020-02-15T06:59:55Z +12422,460,2,5482,3.99,2005-07-09T23:53:04Z,2020-02-15T06:59:55Z +12423,460,1,6613,4.99,2005-07-12T08:30:07Z,2020-02-15T06:59:55Z +12424,460,1,6788,5.99,2005-07-12T16:33:44Z,2020-02-15T06:59:55Z +12425,460,1,7125,6.99,2005-07-27T06:11:00Z,2020-02-15T06:59:55Z +12426,460,1,7785,3.99,2005-07-28T07:16:11Z,2020-02-15T06:59:55Z +12427,460,2,8656,2.99,2005-07-29T15:05:52Z,2020-02-15T06:59:55Z +12428,460,2,10754,10.99,2005-08-01T20:12:33Z,2020-02-15T06:59:55Z +12429,460,1,10926,1.99,2005-08-02T02:26:37Z,2020-02-15T06:59:55Z +12430,460,2,11554,2.99,2005-08-17T01:05:17Z,2020-02-15T06:59:55Z +12431,460,1,12056,5.99,2005-08-17T21:03:48Z,2020-02-15T06:59:55Z +12432,460,2,12586,4.99,2005-08-18T15:54:39Z,2020-02-15T06:59:55Z +12433,460,1,12865,0.99,2005-08-19T02:38:50Z,2020-02-15T06:59:55Z +12434,460,2,13215,8.99,2005-08-19T15:35:38Z,2020-02-15T06:59:55Z +12435,460,1,13341,3.99,2005-08-19T20:18:53Z,2020-02-15T06:59:55Z +12436,460,2,13920,5.99,2005-08-20T16:51:18Z,2020-02-15T06:59:55Z +12437,460,2,14864,0.99,2005-08-22T02:57:06Z,2020-02-15T06:59:55Z +12438,460,1,14923,3.99,2005-08-22T05:13:33Z,2020-02-15T06:59:55Z +12439,460,2,15954,2.99,2005-08-23T19:14:07Z,2020-02-15T06:59:55Z +12440,461,1,684,6.99,2005-05-29T00:13:15Z,2020-02-15T06:59:55Z +12441,461,2,3127,5.99,2005-06-20T18:39:43Z,2020-02-15T06:59:55Z +12442,461,2,3319,4.99,2005-06-21T08:25:46Z,2020-02-15T06:59:55Z +12443,461,2,3698,0.99,2005-07-06T10:09:20Z,2020-02-15T06:59:55Z +12444,461,2,4586,2.99,2005-07-08T06:12:33Z,2020-02-15T06:59:55Z +12445,461,1,5650,0.99,2005-07-10T07:17:01Z,2020-02-15T06:59:55Z +12446,461,1,5809,2.99,2005-07-10T15:19:30Z,2020-02-15T06:59:55Z +12447,461,2,7334,2.99,2005-07-27T13:59:58Z,2020-02-15T06:59:55Z +12448,461,2,7664,2.99,2005-07-28T02:24:23Z,2020-02-15T06:59:55Z +12449,461,2,8133,0.99,2005-07-28T20:01:06Z,2020-02-15T06:59:55Z +12450,461,2,8164,0.99,2005-07-28T21:17:19Z,2020-02-15T06:59:55Z +12451,461,2,9499,4.99,2005-07-30T23:58:30Z,2020-02-15T06:59:55Z +12452,461,1,9885,0.99,2005-07-31T13:59:32Z,2020-02-15T06:59:55Z +12453,461,2,10113,4.99,2005-07-31T21:10:03Z,2020-02-15T06:59:55Z +12454,461,1,10260,2.99,2005-08-01T02:58:07Z,2020-02-15T06:59:55Z +12455,461,2,11063,0.99,2005-08-02T06:53:48Z,2020-02-15T06:59:55Z +12456,461,2,11219,0.99,2005-08-02T12:30:20Z,2020-02-15T06:59:55Z +12457,461,2,12022,2.99,2005-08-17T19:52:45Z,2020-02-15T06:59:55Z +12458,461,1,13223,2.99,2005-08-19T15:52:04Z,2020-02-15T06:59:55Z +12459,461,1,13269,2.99,2005-08-19T17:34:00Z,2020-02-15T06:59:55Z +12460,461,1,14186,4.99,2005-08-21T03:31:07Z,2020-02-15T06:59:55Z +12461,461,1,14893,4.99,2005-08-22T04:15:48Z,2020-02-15T06:59:55Z +12462,461,1,15067,2.99,2005-08-22T10:49:21Z,2020-02-15T06:59:55Z +12463,461,2,15187,4.99,2005-08-22T15:53:32Z,2020-02-15T06:59:55Z +12464,461,1,15336,6.99,2005-08-22T20:47:48Z,2020-02-15T06:59:55Z +12465,461,2,15411,2.99,2005-08-22T23:35:41Z,2020-02-15T06:59:55Z +12466,461,2,15449,2.99,2005-08-23T00:55:43Z,2020-02-15T06:59:55Z +12467,461,2,15613,7.99,2005-08-23T07:03:19Z,2020-02-15T06:59:55Z +12468,462,2,156,2.99,2005-05-26T01:19:05Z,2020-02-15T06:59:55Z +12469,462,2,590,3.99,2005-05-28T13:06:50Z,2020-02-15T06:59:55Z +12470,462,2,1773,5.99,2005-06-16T18:13:43Z,2020-02-15T06:59:55Z +12471,462,2,1926,9.99,2005-06-17T06:24:30Z,2020-02-15T06:59:55Z +12472,462,1,3279,4.99,2005-06-21T06:05:53Z,2020-02-15T06:59:55Z +12473,462,1,4500,4.99,2005-07-08T02:10:01Z,2020-02-15T06:59:55Z +12474,462,2,4728,3.99,2005-07-08T12:59:01Z,2020-02-15T06:59:55Z +12475,462,1,6583,4.99,2005-07-12T06:42:31Z,2020-02-15T06:59:55Z +12476,462,1,6630,0.99,2005-07-12T09:30:05Z,2020-02-15T06:59:55Z +12477,462,1,6710,7.99,2005-07-12T13:23:09Z,2020-02-15T06:59:55Z +12478,462,1,6721,6.99,2005-07-12T13:42:58Z,2020-02-15T06:59:55Z +12479,462,2,7295,8.99,2005-07-27T12:38:47Z,2020-02-15T06:59:55Z +12480,462,1,7324,6.99,2005-07-27T13:42:39Z,2020-02-15T06:59:55Z +12481,462,1,7762,8.99,2005-07-28T06:34:23Z,2020-02-15T06:59:55Z +12482,462,1,7932,4.99,2005-07-28T12:24:54Z,2020-02-15T06:59:55Z +12483,462,2,7935,2.99,2005-07-28T12:33:17Z,2020-02-15T06:59:55Z +12484,462,1,8066,2.99,2005-07-28T17:20:09Z,2020-02-15T06:59:55Z +12485,462,1,8282,0.99,2005-07-29T01:49:04Z,2020-02-15T06:59:55Z +12486,462,1,8290,3.99,2005-07-29T02:24:08Z,2020-02-15T06:59:55Z +12487,462,2,8757,2.99,2005-07-29T19:19:10Z,2020-02-15T06:59:55Z +12488,462,1,9891,0.99,2005-07-31T14:05:44Z,2020-02-15T06:59:55Z +12489,462,1,10283,2.99,2005-08-01T03:29:45Z,2020-02-15T06:59:55Z +12490,462,2,11639,6.99,2005-08-17T04:43:29Z,2020-02-15T06:59:55Z +12491,462,1,11808,2.99,2005-08-17T11:51:16Z,2020-02-15T06:59:55Z +12492,462,1,12466,4.99,2005-08-18T11:36:55Z,2020-02-15T06:59:55Z +12493,462,2,12582,0.99,2005-08-18T15:51:12Z,2020-02-15T06:59:55Z +12494,462,1,12802,8.99,2005-08-19T00:27:41Z,2020-02-15T06:59:55Z +12495,462,2,13041,8.99,2005-08-19T09:05:38Z,2020-02-15T06:59:55Z +12496,462,1,13328,4.99,2005-08-19T19:56:01Z,2020-02-15T06:59:55Z +12497,462,1,13492,7.99,2005-08-20T01:32:04Z,2020-02-15T06:59:55Z +12498,462,2,15581,2.99,2005-08-23T05:42:13Z,2020-02-15T06:59:55Z +12499,462,1,15943,2.99,2005-08-23T18:49:32Z,2020-02-15T06:59:55Z +12500,462,1,16013,0.99,2005-08-23T21:17:17Z,2020-02-15T06:59:55Z +12501,463,1,560,1.99,2005-05-28T08:53:02Z,2020-02-15T06:59:55Z +12502,463,1,1284,2.99,2005-06-15T08:27:33Z,2020-02-15T06:59:55Z +12503,463,2,2527,4.99,2005-06-19T01:10:31Z,2020-02-15T06:59:55Z +12504,463,1,3217,2.99,2005-06-21T01:28:12Z,2020-02-15T06:59:55Z +12505,463,1,3309,4.99,2005-06-21T08:00:49Z,2020-02-15T06:59:55Z +12506,463,1,5026,2.99,2005-07-09T02:32:34Z,2020-02-15T06:59:55Z +12507,463,1,5157,2.99,2005-07-09T08:52:12Z,2020-02-15T06:59:55Z +12508,463,1,5448,0.99,2005-07-09T22:11:14Z,2020-02-15T06:59:55Z +12509,463,2,6294,0.99,2005-07-11T17:25:55Z,2020-02-15T06:59:55Z +12510,463,1,6932,6.99,2005-07-26T23:08:04Z,2020-02-15T06:59:55Z +12511,463,1,7013,0.99,2005-07-27T02:03:21Z,2020-02-15T06:59:55Z +12512,463,1,7361,0.99,2005-07-27T14:53:55Z,2020-02-15T06:59:55Z +12513,463,1,8762,2.99,2005-07-29T19:30:02Z,2020-02-15T06:59:55Z +12514,463,2,9405,7.99,2005-07-30T20:22:17Z,2020-02-15T06:59:55Z +12515,463,1,9954,2.99,2005-07-31T15:57:07Z,2020-02-15T06:59:55Z +12516,463,1,10275,3.99,2005-08-01T03:20:08Z,2020-02-15T06:59:55Z +12517,463,2,10405,0.99,2005-08-01T07:35:25Z,2020-02-15T06:59:55Z +12518,463,2,10906,2.99,2005-08-02T01:47:04Z,2020-02-15T06:59:55Z +12519,463,2,12096,7.99,2005-08-17T22:32:50Z,2020-02-15T06:59:55Z +12520,463,2,12679,6.99,2005-08-18T19:42:11Z,2020-02-15T06:59:55Z +12521,463,1,12950,2.99,2005-08-19T05:55:58Z,2020-02-15T06:59:55Z +12522,463,2,13938,4.99,2005-08-20T17:24:45Z,2020-02-15T06:59:55Z +12523,463,1,14689,0.99,2005-08-21T20:33:00Z,2020-02-15T06:59:55Z +12524,463,1,14859,2.99,2005-08-22T02:46:35Z,2020-02-15T06:59:55Z +12525,463,2,15151,7.99,2005-08-22T14:23:11Z,2020-02-15T06:59:55Z +12526,464,1,305,3.99,2005-05-26T21:22:07Z,2020-02-15T06:59:55Z +12527,464,2,373,1.99,2005-05-27T08:16:25Z,2020-02-15T06:59:55Z +12528,464,2,1277,4.99,2005-06-15T08:01:29Z,2020-02-15T06:59:55Z +12529,464,1,3167,2.99,2005-06-20T21:42:29Z,2020-02-15T06:59:55Z +12530,464,1,3761,4.99,2005-07-06T12:52:44Z,2020-02-15T06:59:55Z +12531,464,1,4337,5.99,2005-07-07T18:36:37Z,2020-02-15T06:59:55Z +12532,464,2,5455,6.99,2005-07-09T22:28:45Z,2020-02-15T06:59:55Z +12533,464,1,5910,4.99,2005-07-10T20:51:34Z,2020-02-15T06:59:55Z +12534,464,2,6601,3.99,2005-07-12T07:44:49Z,2020-02-15T06:59:55Z +12535,464,1,9600,5.99,2005-07-31T03:35:34Z,2020-02-15T06:59:55Z +12536,464,2,11275,1.99,2005-08-02T14:25:58Z,2020-02-15T06:59:55Z +12537,464,1,13644,8.99,2005-08-20T07:46:30Z,2020-02-15T06:59:55Z +12538,464,2,13943,2.99,2005-08-20T17:31:18Z,2020-02-15T06:59:55Z +12539,464,1,15092,6.99,2005-08-22T11:36:16Z,2020-02-15T06:59:55Z +12540,464,2,15854,0.99,2005-08-23T15:58:05Z,2020-02-15T06:59:55Z +12541,464,1,15983,4.99,2005-08-23T20:13:38Z,2020-02-15T06:59:55Z +12542,465,2,640,0.99,2005-05-28T18:43:26Z,2020-02-15T06:59:55Z +12543,465,1,1337,2.99,2005-06-15T12:12:42Z,2020-02-15T06:59:55Z +12544,465,1,2079,4.99,2005-06-17T16:49:45Z,2020-02-15T06:59:55Z +12545,465,1,2159,8.99,2005-06-17T23:37:29Z,2020-02-15T06:59:55Z +12546,465,2,2524,0.99,2005-06-19T00:48:11Z,2020-02-15T06:59:55Z +12547,465,1,4763,0.99,2005-07-08T14:57:32Z,2020-02-15T06:59:55Z +12548,465,2,6904,3.99,2005-07-12T22:02:09Z,2020-02-15T06:59:55Z +12549,465,2,7508,2.99,2005-07-27T20:33:08Z,2020-02-15T06:59:55Z +12550,465,1,10542,3.99,2005-08-01T12:32:23Z,2020-02-15T06:59:55Z +12551,465,1,11156,2.99,2005-08-02T09:56:06Z,2020-02-15T06:59:55Z +12552,465,1,11586,4.99,2005-08-17T02:20:42Z,2020-02-15T06:59:55Z +12553,465,2,11648,6.99,2005-08-17T04:56:16Z,2020-02-15T06:59:55Z +12554,465,2,12106,4.99,2005-08-17T22:55:32Z,2020-02-15T06:59:55Z +12555,465,1,12814,4.99,2005-08-19T00:58:24Z,2020-02-15T06:59:55Z +12556,465,1,12864,4.99,2005-08-19T02:38:26Z,2020-02-15T06:59:55Z +12557,465,1,15550,3.99,2005-08-23T04:27:54Z,2020-02-15T06:59:55Z +12558,465,2,15859,4.99,2005-08-23T16:08:15Z,2020-02-15T06:59:55Z +12559,466,2,1104,2.99,2005-05-31T14:30:01Z,2020-02-15T06:59:55Z +12560,466,2,1808,7.99,2005-06-16T20:59:35Z,2020-02-15T06:59:55Z +12561,466,2,2446,8.99,2005-06-18T19:04:41Z,2020-02-15T06:59:55Z +12562,466,1,3022,3.99,2005-06-20T11:17:20Z,2020-02-15T06:59:55Z +12563,466,2,3237,4.99,2005-06-21T02:47:56Z,2020-02-15T06:59:55Z +12564,466,2,3343,2.99,2005-06-21T10:56:59Z,2020-02-15T06:59:55Z +12565,466,2,5048,0.99,2005-07-09T03:46:33Z,2020-02-15T06:59:55Z +12566,466,1,5691,4.99,2005-07-10T09:29:49Z,2020-02-15T06:59:55Z +12567,466,1,6073,6.99,2005-07-11T04:54:31Z,2020-02-15T06:59:55Z +12568,466,2,7080,2.99,2005-07-27T04:25:25Z,2020-02-15T06:59:55Z +12569,466,2,8276,0.99,2005-07-29T01:38:43Z,2020-02-15T06:59:55Z +12570,466,1,9202,3.99,2005-07-30T12:43:24Z,2020-02-15T06:59:55Z +12571,466,1,9257,2.99,2005-07-30T14:30:38Z,2020-02-15T06:59:55Z +12572,466,1,10469,4.99,2005-08-01T09:51:11Z,2020-02-15T06:59:55Z +12573,466,2,11343,0.99,2005-08-02T17:12:30Z,2020-02-15T06:59:55Z +12574,466,1,11359,4.99,2005-08-02T17:45:55Z,2020-02-15T06:59:55Z +12575,466,1,12048,7.99,2005-08-17T20:49:24Z,2020-02-15T06:59:55Z +12576,466,1,13478,2.99,2005-08-20T01:07:14Z,2020-02-15T06:59:55Z +12577,466,1,13884,5.99,2005-08-20T15:30:51Z,2020-02-15T06:59:55Z +12578,466,1,13988,4.99,2005-08-20T19:21:28Z,2020-02-15T06:59:55Z +12579,466,2,14546,2.99,2005-08-21T15:50:50Z,2020-02-15T06:59:55Z +12580,466,2,15230,4.99,2005-08-22T17:31:41Z,2020-02-15T06:59:55Z +12581,466,1,16005,7.99,2005-08-23T21:00:22Z,2020-02-15T06:59:55Z +12582,467,2,225,4.99,2005-05-26T10:27:50Z,2020-02-15T06:59:55Z +12583,467,1,1737,8.99,2005-06-16T15:59:44Z,2020-02-15T06:59:55Z +12584,467,2,2121,4.99,2005-06-17T20:38:54Z,2020-02-15T06:59:55Z +12585,467,2,2870,9.99,2005-06-20T00:17:46Z,2020-02-15T06:59:55Z +12586,467,1,3250,6.99,2005-06-21T03:16:36Z,2020-02-15T06:59:55Z +12587,467,1,4216,0.99,2005-07-07T12:01:34Z,2020-02-15T06:59:55Z +12588,467,2,4222,4.99,2005-07-07T12:20:21Z,2020-02-15T06:59:55Z +12589,467,1,4259,4.99,2005-07-07T14:22:18Z,2020-02-15T06:59:55Z +12590,467,2,5160,4.99,2005-07-09T08:57:07Z,2020-02-15T06:59:55Z +12591,467,2,6271,6.99,2005-07-11T16:01:35Z,2020-02-15T06:59:55Z +12592,467,2,7360,2.99,2005-07-27T14:52:06Z,2020-02-15T06:59:55Z +12593,467,2,7573,5.99,2005-07-27T22:46:20Z,2020-02-15T06:59:55Z +12594,467,1,7611,2.99,2005-07-28T00:11:47Z,2020-02-15T06:59:55Z +12595,467,1,8010,7.99,2005-07-28T15:26:20Z,2020-02-15T06:59:55Z +12596,467,2,8061,6.99,2005-07-28T17:12:53Z,2020-02-15T06:59:55Z +12597,467,2,8224,2.99,2005-07-28T23:59:02Z,2020-02-15T06:59:55Z +12598,467,2,8480,8.99,2005-07-29T08:44:46Z,2020-02-15T06:59:55Z +12599,467,1,8767,4.99,2005-07-29T19:42:33Z,2020-02-15T06:59:55Z +12600,467,2,10239,0.99,2005-08-01T02:09:22Z,2020-02-15T06:59:55Z +12601,467,2,11332,2.99,2005-08-02T16:52:57Z,2020-02-15T06:59:55Z +12602,467,1,11874,4.99,2005-08-17T14:16:40Z,2020-02-15T06:59:55Z +12603,467,1,12266,2.99,2005-08-18T04:22:31Z,2020-02-15T06:59:55Z +12604,467,1,12437,9.99,2005-08-18T10:42:43Z,2020-02-15T06:59:55Z +12605,467,1,12641,2.99,2005-08-18T18:18:08Z,2020-02-15T06:59:55Z +12606,467,1,14402,2.99,2005-08-21T10:38:17Z,2020-02-15T06:59:55Z +12607,467,1,14451,0.99,2005-08-21T12:21:44Z,2020-02-15T06:59:55Z +12608,467,1,14842,3.99,2005-08-22T02:04:38Z,2020-02-15T06:59:55Z +12609,467,1,15032,0.99,2005-08-22T09:14:09Z,2020-02-15T06:59:55Z +12610,467,2,15830,2.99,2005-08-23T15:19:15Z,2020-02-15T06:59:55Z +12611,468,2,101,6.99,2005-05-25T17:17:04Z,2020-02-15T06:59:55Z +12612,468,1,186,4.99,2005-05-26T05:32:52Z,2020-02-15T06:59:55Z +12613,468,2,296,6.99,2005-05-26T20:35:19Z,2020-02-15T06:59:55Z +12614,468,2,459,0.99,2005-05-27T20:00:04Z,2020-02-15T06:59:55Z +12615,468,1,673,0.99,2005-05-28T22:07:30Z,2020-02-15T06:59:55Z +12616,468,2,1229,2.99,2005-06-15T03:53:13Z,2020-02-15T06:59:55Z +12617,468,1,1627,8.99,2005-06-16T07:51:09Z,2020-02-15T06:59:55Z +12618,468,1,1821,2.99,2005-06-16T21:42:49Z,2020-02-15T06:59:55Z +12619,468,1,1975,2.99,2005-06-17T09:32:10Z,2020-02-15T06:59:55Z +12620,468,2,2462,4.99,2005-06-18T20:00:15Z,2020-02-15T06:59:55Z +12621,468,1,2831,0.99,2005-06-19T21:17:06Z,2020-02-15T06:59:55Z +12622,468,2,3724,2.99,2005-07-06T11:12:48Z,2020-02-15T06:59:55Z +12623,468,1,3840,5.99,2005-07-06T16:30:59Z,2020-02-15T06:59:55Z +12624,468,2,4184,3.99,2005-07-07T10:30:08Z,2020-02-15T06:59:55Z +12625,468,2,4527,3.99,2005-07-08T03:20:10Z,2020-02-15T06:59:55Z +12626,468,1,5285,2.99,2005-07-09T15:10:44Z,2020-02-15T06:59:55Z +12627,468,1,6392,0.99,2005-07-11T22:25:19Z,2020-02-15T06:59:55Z +12628,468,1,6581,4.99,2005-07-12T06:26:49Z,2020-02-15T06:59:55Z +12629,468,2,6815,5.99,2005-07-12T18:14:10Z,2020-02-15T06:59:55Z +12630,468,2,7292,4.99,2005-07-27T12:34:14Z,2020-02-15T06:59:55Z +12631,468,1,7685,0.99,2005-07-28T03:13:00Z,2020-02-15T06:59:55Z +12632,468,2,8423,5.99,2005-07-29T07:02:57Z,2020-02-15T06:59:55Z +12633,468,2,8768,6.99,2005-07-29T19:43:02Z,2020-02-15T06:59:55Z +12634,468,1,9598,0.99,2005-07-31T03:30:41Z,2020-02-15T06:59:55Z +12635,468,1,9690,6.99,2005-07-31T07:06:29Z,2020-02-15T06:59:55Z +12636,468,2,11257,10.99,2005-08-02T13:45:05Z,2020-02-15T06:59:55Z +12637,468,2,11633,4.99,2005-08-17T04:30:09Z,2020-02-15T06:59:55Z +12638,468,2,12026,6.99,2005-08-17T20:00:10Z,2020-02-15T06:59:55Z +12639,468,2,13221,3.99,2005-08-19T15:45:47Z,2020-02-15T06:59:55Z +12640,468,1,13417,0.99,2005-08-19T22:51:39Z,2020-02-15T06:59:55Z +12641,468,2,14154,4.99,2005-08-21T02:30:00Z,2020-02-15T06:59:55Z +12642,468,2,14210,4.99,2005-08-21T04:28:02Z,2020-02-15T06:59:55Z +12643,468,1,14309,9.99,2005-08-21T07:44:17Z,2020-02-15T06:59:55Z +12644,468,1,14313,2.99,2005-08-21T07:49:53Z,2020-02-15T06:59:55Z +12645,468,1,14614,9.99,2005-08-21T18:03:51Z,2020-02-15T06:59:55Z +12646,468,2,15435,4.99,2005-08-23T00:28:19Z,2020-02-15T06:59:55Z +12647,468,1,15522,1.99,2005-08-23T03:32:31Z,2020-02-15T06:59:55Z +12648,468,1,15836,2.99,2005-08-23T15:29:17Z,2020-02-15T06:59:55Z +12649,468,2,16044,0.99,2005-08-23T22:24:39Z,2020-02-15T06:59:55Z +12650,469,1,168,0.99,2005-05-26T03:07:43Z,2020-02-15T06:59:55Z +12651,469,2,506,7.99,2005-05-28T02:09:19Z,2020-02-15T06:59:55Z +12652,469,2,529,4.99,2005-05-28T04:34:17Z,2020-02-15T06:59:55Z +12653,469,2,936,1.99,2005-05-30T13:52:49Z,2020-02-15T06:59:55Z +12654,469,1,1119,2.99,2005-05-31T16:34:27Z,2020-02-15T06:59:55Z +12655,469,2,1399,0.99,2005-06-15T16:29:51Z,2020-02-15T06:59:55Z +12656,469,1,1680,9.99,2005-06-16T11:17:22Z,2020-02-15T06:59:55Z +12657,469,2,3522,4.99,2005-07-06T01:00:21Z,2020-02-15T06:59:55Z +12658,469,1,3526,10.99,2005-07-06T01:03:29Z,2020-02-15T06:59:55Z +12659,469,2,4067,3.99,2005-07-07T04:34:23Z,2020-02-15T06:59:55Z +12660,469,2,4123,0.99,2005-07-07T07:16:19Z,2020-02-15T06:59:55Z +12661,469,1,5133,0.99,2005-07-09T07:43:22Z,2020-02-15T06:59:55Z +12662,469,1,5299,3.99,2005-07-09T15:38:09Z,2020-02-15T06:59:55Z +12663,469,2,5664,6.99,2005-07-10T08:04:41Z,2020-02-15T06:59:55Z +12664,469,2,6022,0.99,2005-07-11T02:15:53Z,2020-02-15T06:59:55Z +12665,469,2,6099,4.99,2005-07-11T06:24:44Z,2020-02-15T06:59:55Z +12666,469,1,6797,4.99,2005-07-12T16:47:06Z,2020-02-15T06:59:55Z +12667,469,1,6955,3.99,2005-07-26T23:55:48Z,2020-02-15T06:59:55Z +12668,469,2,7062,6.99,2005-07-27T03:52:01Z,2020-02-15T06:59:55Z +12669,469,2,7271,6.99,2005-07-27T11:29:11Z,2020-02-15T06:59:55Z +12670,469,2,7756,4.99,2005-07-28T06:22:52Z,2020-02-15T06:59:55Z +12671,469,1,7914,4.99,2005-07-28T11:48:08Z,2020-02-15T06:59:55Z +12672,469,2,8791,0.99,2005-07-29T20:53:23Z,2020-02-15T06:59:55Z +12673,469,1,9187,2.99,2005-07-30T12:14:03Z,2020-02-15T06:59:55Z +12674,469,2,10075,4.99,2005-07-31T19:58:42Z,2020-02-15T06:59:55Z +12675,469,1,10258,4.99,2005-08-01T02:51:09Z,2020-02-15T06:59:55Z +12676,469,1,10316,4.99,2005-08-01T04:34:57Z,2020-02-15T06:59:55Z +12677,469,1,10658,2.99,2005-08-01T16:39:18Z,2020-02-15T06:59:55Z +12678,469,1,10741,2.99,2005-08-01T19:52:52Z,2020-02-15T06:59:55Z +12679,469,2,11185,0.99,2005-08-02T11:04:35Z,2020-02-15T06:59:55Z +12680,469,2,12035,0.99,2005-08-17T20:18:06Z,2020-02-15T06:59:55Z +12681,469,1,12447,4.99,2005-08-18T10:57:01Z,2020-02-15T06:59:55Z +12682,469,1,12633,6.99,2005-08-18T17:55:38Z,2020-02-15T06:59:55Z +12683,469,1,13654,4.99,2005-08-20T07:58:21Z,2020-02-15T06:59:55Z +12684,469,1,13763,2.99,2005-08-20T11:37:56Z,2020-02-15T06:59:55Z +12685,469,2,14197,7.99,2005-08-21T03:47:25Z,2020-02-15T06:59:55Z +12686,469,2,14661,2.99,2005-08-21T19:44:21Z,2020-02-15T06:59:55Z +12687,469,1,15487,4.99,2005-08-23T02:05:51Z,2020-02-15T06:59:55Z +12688,469,1,15561,9.99,2005-08-23T05:02:31Z,2020-02-15T06:59:55Z +12689,469,1,15851,2.99,2005-08-23T15:46:33Z,2020-02-15T06:59:55Z +12690,470,2,60,2.99,2005-05-25T08:58:25Z,2020-02-15T06:59:55Z +12691,470,2,1256,0.99,2005-06-15T06:13:57Z,2020-02-15T06:59:55Z +12692,470,1,1283,0.99,2005-06-15T08:27:30Z,2020-02-15T06:59:55Z +12693,470,2,1594,7.99,2005-06-16T05:15:12Z,2020-02-15T06:59:55Z +12694,470,1,3764,5.99,2005-07-06T13:01:03Z,2020-02-15T06:59:55Z +12695,470,1,3841,4.99,2005-07-06T16:34:00Z,2020-02-15T06:59:55Z +12696,470,1,3922,4.99,2005-07-06T20:32:27Z,2020-02-15T06:59:55Z +12697,470,1,4373,4.99,2005-07-07T20:10:59Z,2020-02-15T06:59:55Z +12698,470,2,4502,6.99,2005-07-08T02:12:04Z,2020-02-15T06:59:55Z +12699,470,2,5082,4.99,2005-07-09T05:28:38Z,2020-02-15T06:59:55Z +12700,470,1,6009,3.99,2005-07-11T01:51:58Z,2020-02-15T06:59:55Z +12701,470,1,6198,2.99,2005-07-11T12:12:17Z,2020-02-15T06:59:55Z +12702,470,2,6703,4.99,2005-07-12T12:50:19Z,2020-02-15T06:59:55Z +12703,470,1,6927,10.99,2005-07-26T22:56:00Z,2020-02-15T06:59:55Z +12704,470,1,6942,5.99,2005-07-26T23:27:40Z,2020-02-15T06:59:55Z +12705,470,1,7663,4.99,2005-07-28T02:19:48Z,2020-02-15T06:59:55Z +12706,470,2,8476,8.99,2005-07-29T08:39:12Z,2020-02-15T06:59:55Z +12707,470,1,8890,6.99,2005-07-30T00:42:06Z,2020-02-15T06:59:55Z +12708,470,1,9422,5.99,2005-07-30T21:08:41Z,2020-02-15T06:59:55Z +12709,470,1,9687,2.99,2005-07-31T06:52:54Z,2020-02-15T06:59:55Z +12710,470,1,10006,4.99,2005-07-31T17:54:35Z,2020-02-15T06:59:55Z +12711,470,1,10236,0.99,2005-08-01T02:05:34Z,2020-02-15T06:59:55Z +12712,470,2,10944,4.99,2005-08-02T03:20:03Z,2020-02-15T06:59:55Z +12713,470,2,11397,1.99,2005-08-02T18:53:14Z,2020-02-15T06:59:55Z +12714,470,2,11711,2.99,2005-08-17T07:30:55Z,2020-02-15T06:59:55Z +12715,470,1,11742,0.99,2005-08-17T08:48:43Z,2020-02-15T06:59:55Z +12716,470,2,12177,3.99,2005-08-18T01:15:47Z,2020-02-15T06:59:55Z +12717,470,2,12423,8.99,2005-08-18T10:14:52Z,2020-02-15T06:59:55Z +12718,470,1,12753,10.99,2005-08-18T22:37:39Z,2020-02-15T06:59:55Z +12719,470,2,13585,4.99,2005-08-20T05:32:23Z,2020-02-15T06:59:55Z +12720,470,1,13592,4.99,2005-08-20T05:50:35Z,2020-02-15T06:59:55Z +12721,470,2,14405,4.99,2005-08-21T10:45:01Z,2020-02-15T06:59:55Z +12722,471,1,616,2.99,2005-05-28T15:45:39Z,2020-02-15T06:59:55Z +12723,471,1,1447,4.99,2005-06-15T19:13:51Z,2020-02-15T06:59:55Z +12724,471,2,1449,2.99,2005-06-15T19:19:16Z,2020-02-15T06:59:55Z +12725,471,2,2165,2.99,2005-06-17T23:51:10Z,2020-02-15T06:59:55Z +12726,471,2,2350,4.99,2005-06-18T12:25:29Z,2020-02-15T06:59:55Z +12727,471,2,3073,4.99,2005-06-20T14:33:26Z,2020-02-15T06:59:55Z +12728,471,1,3917,0.99,2005-07-06T20:19:29Z,2020-02-15T06:59:55Z +12729,471,1,4020,2.99,2005-07-07T01:42:22Z,2020-02-15T06:59:55Z +12730,471,2,6293,2.99,2005-07-11T17:24:57Z,2020-02-15T06:59:55Z +12731,471,1,6336,8.99,2005-07-11T19:30:13Z,2020-02-15T06:59:55Z +12732,471,1,6912,5.99,2005-07-12T22:17:16Z,2020-02-15T06:59:55Z +12733,471,1,8199,0.99,2005-07-28T23:10:25Z,2020-02-15T06:59:55Z +12734,471,1,9077,2.99,2005-07-30T08:00:19Z,2020-02-15T06:59:55Z +12735,471,1,9502,0.99,2005-07-31T00:02:10Z,2020-02-15T06:59:55Z +12736,471,2,9560,2.99,2005-07-31T02:17:27Z,2020-02-15T06:59:55Z +12737,471,1,10430,2.99,2005-08-01T08:37:06Z,2020-02-15T06:59:55Z +12738,471,2,10828,3.99,2005-08-01T23:16:10Z,2020-02-15T06:59:55Z +12739,471,2,11601,4.99,2005-08-17T03:14:47Z,2020-02-15T06:59:55Z +12740,471,1,12271,4.99,2005-08-18T04:33:11Z,2020-02-15T06:59:55Z +12741,471,1,13661,5.99,2005-08-20T08:05:59Z,2020-02-15T06:59:55Z +12742,471,1,14085,7.99,2005-08-20T23:46:24Z,2020-02-15T06:59:55Z +12743,471,1,14094,4.99,2005-08-21T00:21:35Z,2020-02-15T06:59:55Z +12744,471,1,14317,5.99,2005-08-21T08:00:40Z,2020-02-15T06:59:55Z +12745,471,2,14538,2.99,2005-08-21T15:28:15Z,2020-02-15T06:59:55Z +12746,471,2,14942,7.99,2005-08-22T05:58:27Z,2020-02-15T06:59:55Z +12747,471,2,15184,0.99,2005-08-22T15:51:12Z,2020-02-15T06:59:55Z +12748,471,1,15654,1.99,2005-08-23T08:34:53Z,2020-02-15T06:59:55Z +12749,472,2,142,0.99,2005-05-25T23:43:47Z,2020-02-15T06:59:55Z +12750,472,2,249,2.99,2005-05-26T14:19:09Z,2020-02-15T06:59:55Z +12751,472,2,800,0.99,2005-05-29T17:28:12Z,2020-02-15T06:59:55Z +12752,472,2,994,4.99,2005-05-30T23:55:36Z,2020-02-15T06:59:55Z +12753,472,1,1389,4.99,2005-06-15T15:49:01Z,2020-02-15T06:59:55Z +12754,472,2,1776,6.99,2005-06-16T18:46:58Z,2020-02-15T06:59:55Z +12755,472,1,2538,5.99,2005-06-19T01:56:59Z,2020-02-15T06:59:55Z +12756,472,1,2974,0.99,2005-06-20T08:00:24Z,2020-02-15T06:59:55Z +12757,472,1,2991,4.99,2005-06-20T09:10:43Z,2020-02-15T06:59:55Z +12758,472,1,3254,0.99,2005-06-21T03:27:10Z,2020-02-15T06:59:55Z +12759,472,2,3815,6.99,2005-07-06T15:26:36Z,2020-02-15T06:59:55Z +12760,472,2,5318,2.99,2005-07-09T16:11:33Z,2020-02-15T06:59:55Z +12761,472,1,5612,3.99,2005-07-10T05:15:12Z,2020-02-15T06:59:55Z +12762,472,1,6119,6.99,2005-07-11T07:44:46Z,2020-02-15T06:59:55Z +12763,472,2,6274,5.99,2005-07-11T16:09:42Z,2020-02-15T06:59:55Z +12764,472,1,6308,5.99,2005-07-11T18:08:41Z,2020-02-15T06:59:55Z +12765,472,1,6584,2.99,2005-07-12T06:43:36Z,2020-02-15T06:59:55Z +12766,472,2,8929,5.99,2005-07-30T02:28:22Z,2020-02-15T06:59:55Z +12767,472,2,9926,6.99,2005-07-31T15:11:51Z,2020-02-15T06:59:55Z +12768,472,1,10282,6.99,2005-08-01T03:29:10Z,2020-02-15T06:59:55Z +12769,472,1,10627,0.99,2005-08-01T15:33:03Z,2020-02-15T06:59:55Z +12770,472,1,11911,6.99,2005-08-17T15:51:35Z,2020-02-15T06:59:55Z +12771,472,2,12763,4.99,2005-08-18T23:07:01Z,2020-02-15T06:59:55Z +12772,472,2,13188,8.99,2005-08-19T14:27:03Z,2020-02-15T06:59:55Z +12773,472,1,14209,4.99,2005-08-21T04:17:56Z,2020-02-15T06:59:55Z +12774,472,2,14596,4.99,2005-08-21T17:38:37Z,2020-02-15T06:59:55Z +12775,472,1,14597,4.99,2005-08-21T17:39:41Z,2020-02-15T06:59:55Z +12776,472,2,15185,5.99,2005-08-22T15:52:50Z,2020-02-15T06:59:55Z +12777,472,2,15278,2.99,2005-08-22T19:06:47Z,2020-02-15T06:59:55Z +12778,472,2,14928,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12779,473,1,348,4.99,2005-05-27T04:50:56Z,2020-02-15T06:59:55Z +12780,473,2,942,2.99,2005-05-30T15:05:47Z,2020-02-15T06:59:55Z +12781,473,2,973,3.99,2005-05-30T20:27:45Z,2020-02-15T06:59:55Z +12782,473,2,1748,0.99,2005-06-16T16:54:03Z,2020-02-15T06:59:55Z +12783,473,1,2125,2.99,2005-06-17T20:53:42Z,2020-02-15T06:59:55Z +12784,473,2,2553,4.99,2005-06-19T03:04:59Z,2020-02-15T06:59:55Z +12785,473,2,2748,4.99,2005-06-19T16:22:26Z,2020-02-15T06:59:55Z +12786,473,1,3971,0.99,2005-07-06T22:50:40Z,2020-02-15T06:59:55Z +12787,473,2,4006,4.99,2005-07-07T00:25:29Z,2020-02-15T06:59:55Z +12788,473,2,4625,4.99,2005-07-08T08:14:26Z,2020-02-15T06:59:55Z +12789,473,1,4873,0.99,2005-07-08T19:23:32Z,2020-02-15T06:59:55Z +12790,473,2,5447,5.99,2005-07-09T22:09:28Z,2020-02-15T06:59:55Z +12791,473,1,6446,2.99,2005-07-12T00:44:08Z,2020-02-15T06:59:55Z +12792,473,2,6890,4.99,2005-07-12T21:03:03Z,2020-02-15T06:59:55Z +12793,473,1,7111,4.99,2005-07-27T05:38:16Z,2020-02-15T06:59:55Z +12794,473,1,7215,2.99,2005-07-27T09:24:00Z,2020-02-15T06:59:55Z +12795,473,2,7918,1.99,2005-07-28T11:58:53Z,2020-02-15T06:59:55Z +12796,473,2,7928,7.99,2005-07-28T12:15:51Z,2020-02-15T06:59:55Z +12797,473,1,9025,4.99,2005-07-30T05:50:08Z,2020-02-15T06:59:55Z +12798,473,2,9120,8.99,2005-07-30T09:26:08Z,2020-02-15T06:59:55Z +12799,473,1,10867,2.99,2005-08-02T00:24:15Z,2020-02-15T06:59:55Z +12800,473,2,11006,2.99,2005-08-02T05:05:52Z,2020-02-15T06:59:55Z +12801,473,1,11216,4.99,2005-08-02T12:23:43Z,2020-02-15T06:59:55Z +12802,473,1,11336,0.99,2005-08-02T16:58:56Z,2020-02-15T06:59:55Z +12803,473,2,11421,7.99,2005-08-02T19:51:53Z,2020-02-15T06:59:55Z +12804,473,1,11741,0.99,2005-08-17T08:48:39Z,2020-02-15T06:59:55Z +12805,473,2,13984,4.99,2005-08-20T19:12:30Z,2020-02-15T06:59:55Z +12806,473,2,14202,0.99,2005-08-21T03:51:52Z,2020-02-15T06:59:55Z +12807,473,2,14550,0.99,2005-08-21T15:56:39Z,2020-02-15T06:59:55Z +12808,473,2,14658,4.99,2005-08-21T19:41:50Z,2020-02-15T06:59:55Z +12809,473,2,14757,4.99,2005-08-21T23:23:37Z,2020-02-15T06:59:55Z +12810,473,1,15118,4.99,2005-08-22T12:38:37Z,2020-02-15T06:59:55Z +12811,473,2,15400,2.99,2005-08-22T23:13:03Z,2020-02-15T06:59:55Z +12812,473,2,16024,4.99,2005-08-23T21:46:47Z,2020-02-15T06:59:55Z +12813,474,1,816,7.99,2005-05-29T20:26:39Z,2020-02-15T06:59:55Z +12814,474,1,1758,8.99,2005-06-16T17:39:39Z,2020-02-15T06:59:55Z +12815,474,2,2944,7.99,2005-06-20T05:43:42Z,2020-02-15T06:59:55Z +12816,474,2,3787,4.99,2005-07-06T14:02:01Z,2020-02-15T06:59:55Z +12817,474,2,4048,1.99,2005-07-07T03:30:52Z,2020-02-15T06:59:55Z +12818,474,1,4481,2.99,2005-07-08T00:58:15Z,2020-02-15T06:59:55Z +12819,474,1,4533,0.99,2005-07-08T03:32:01Z,2020-02-15T06:59:55Z +12820,474,2,4785,0.99,2005-07-08T16:10:19Z,2020-02-15T06:59:55Z +12821,474,1,4809,2.99,2005-07-08T17:03:22Z,2020-02-15T06:59:55Z +12822,474,2,4886,4.99,2005-07-08T19:53:22Z,2020-02-15T06:59:55Z +12823,474,1,5251,0.99,2005-07-09T13:36:10Z,2020-02-15T06:59:55Z +12824,474,1,6499,7.99,2005-07-12T03:11:18Z,2020-02-15T06:59:55Z +12825,474,1,8991,2.99,2005-07-30T04:42:54Z,2020-02-15T06:59:55Z +12826,474,2,10376,5.99,2005-08-01T06:27:13Z,2020-02-15T06:59:55Z +12827,474,2,11117,0.99,2005-08-02T08:36:03Z,2020-02-15T06:59:55Z +12828,474,1,11489,2.99,2005-08-02T22:35:28Z,2020-02-15T06:59:55Z +12829,474,2,11537,2.99,2005-08-17T00:41:08Z,2020-02-15T06:59:55Z +12830,474,1,12083,2.99,2005-08-17T22:13:37Z,2020-02-15T06:59:55Z +12831,474,1,12236,4.99,2005-08-18T03:19:29Z,2020-02-15T06:59:55Z +12832,474,1,12440,0.99,2005-08-18T10:47:35Z,2020-02-15T06:59:55Z +12833,474,2,12597,2.99,2005-08-18T16:34:02Z,2020-02-15T06:59:55Z +12834,474,1,12702,4.99,2005-08-18T20:30:33Z,2020-02-15T06:59:55Z +12835,474,1,14728,0.99,2005-08-21T22:15:36Z,2020-02-15T06:59:55Z +12836,474,2,15046,4.99,2005-08-22T09:54:54Z,2020-02-15T06:59:55Z +12837,474,1,15558,6.99,2005-08-23T04:52:22Z,2020-02-15T06:59:55Z +12838,474,1,11909,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12839,475,2,417,4.99,2005-05-27T15:07:27Z,2020-02-15T06:59:55Z +12840,475,1,702,0.99,2005-05-29T02:27:30Z,2020-02-15T06:59:55Z +12841,475,2,3980,5.99,2005-07-06T23:11:11Z,2020-02-15T06:59:55Z +12842,475,1,4013,6.99,2005-07-07T00:58:00Z,2020-02-15T06:59:55Z +12843,475,1,4617,4.99,2005-07-08T07:55:08Z,2020-02-15T06:59:55Z +12844,475,2,5379,0.99,2005-07-09T19:08:03Z,2020-02-15T06:59:55Z +12845,475,1,5407,0.99,2005-07-09T20:16:07Z,2020-02-15T06:59:55Z +12846,475,2,5415,9.99,2005-07-09T20:30:03Z,2020-02-15T06:59:55Z +12847,475,2,5469,2.99,2005-07-09T23:08:07Z,2020-02-15T06:59:55Z +12848,475,1,6224,4.99,2005-07-11T13:42:18Z,2020-02-15T06:59:55Z +12849,475,1,7641,7.99,2005-07-28T01:15:45Z,2020-02-15T06:59:55Z +12850,475,1,7775,1.99,2005-07-28T07:04:36Z,2020-02-15T06:59:55Z +12851,475,2,8207,5.99,2005-07-28T23:26:31Z,2020-02-15T06:59:55Z +12852,475,1,9183,7.99,2005-07-30T12:09:56Z,2020-02-15T06:59:55Z +12853,475,1,9647,2.99,2005-07-31T05:45:15Z,2020-02-15T06:59:55Z +12854,475,1,9737,2.99,2005-07-31T08:59:18Z,2020-02-15T06:59:55Z +12855,475,2,10162,3.99,2005-07-31T23:11:01Z,2020-02-15T06:59:55Z +12856,475,1,10357,0.99,2005-08-01T05:49:49Z,2020-02-15T06:59:55Z +12857,475,1,10633,3.99,2005-08-01T15:37:17Z,2020-02-15T06:59:55Z +12858,475,1,11293,5.99,2005-08-02T15:00:43Z,2020-02-15T06:59:55Z +12859,475,1,11770,4.99,2005-08-17T10:05:05Z,2020-02-15T06:59:55Z +12860,475,2,14303,2.99,2005-08-21T07:22:43Z,2020-02-15T06:59:55Z +12861,475,1,15097,1.99,2005-08-22T11:43:42Z,2020-02-15T06:59:55Z +12862,475,1,15288,4.99,2005-08-22T19:23:58Z,2020-02-15T06:59:55Z +12863,476,1,489,4.99,2005-05-28T00:09:12Z,2020-02-15T06:59:55Z +12864,476,1,771,2.99,2005-05-29T12:59:14Z,2020-02-15T06:59:55Z +12865,476,1,1682,3.99,2005-06-16T11:54:25Z,2020-02-15T06:59:55Z +12866,476,1,2080,0.99,2005-06-17T16:59:40Z,2020-02-15T06:59:55Z +12867,476,2,2508,4.99,2005-06-18T23:43:58Z,2020-02-15T06:59:55Z +12868,476,2,3448,2.99,2005-06-21T20:59:20Z,2020-02-15T06:59:55Z +12869,476,2,3477,7.99,2005-07-05T23:05:17Z,2020-02-15T06:59:55Z +12870,476,1,4010,5.99,2005-07-07T00:47:00Z,2020-02-15T06:59:55Z +12871,476,2,4171,4.99,2005-07-07T09:49:04Z,2020-02-15T06:59:55Z +12872,476,2,5644,4.99,2005-07-10T06:57:44Z,2020-02-15T06:59:55Z +12873,476,1,6151,2.99,2005-07-11T09:25:17Z,2020-02-15T06:59:55Z +12874,476,1,7461,0.99,2005-07-27T18:45:15Z,2020-02-15T06:59:55Z +12875,476,1,8146,0.99,2005-07-28T20:37:36Z,2020-02-15T06:59:55Z +12876,476,2,9325,6.99,2005-07-30T17:29:19Z,2020-02-15T06:59:55Z +12877,476,2,9743,3.99,2005-07-31T09:12:42Z,2020-02-15T06:59:55Z +12878,476,1,10346,4.99,2005-08-01T05:19:23Z,2020-02-15T06:59:55Z +12879,476,1,10617,9.99,2005-08-01T15:05:52Z,2020-02-15T06:59:55Z +12880,476,1,10826,6.99,2005-08-01T23:07:56Z,2020-02-15T06:59:55Z +12881,476,1,12616,4.99,2005-08-18T17:22:41Z,2020-02-15T06:59:55Z +12882,476,2,12709,5.99,2005-08-18T20:59:51Z,2020-02-15T06:59:55Z +12883,476,1,15413,0.99,2005-08-22T23:38:01Z,2020-02-15T06:59:55Z +12884,476,1,13941,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12885,477,1,882,2.99,2005-05-30T06:16:06Z,2020-02-15T06:59:55Z +12886,477,1,1714,6.99,2005-06-16T14:29:59Z,2020-02-15T06:59:55Z +12887,477,1,2187,2.99,2005-06-18T01:17:27Z,2020-02-15T06:59:55Z +12888,477,1,2306,10.99,2005-06-18T08:33:23Z,2020-02-15T06:59:55Z +12889,477,2,2676,4.99,2005-06-19T11:54:57Z,2020-02-15T06:59:55Z +12890,477,2,4237,5.99,2005-07-07T13:16:55Z,2020-02-15T06:59:55Z +12891,477,1,4283,2.99,2005-07-07T15:29:35Z,2020-02-15T06:59:55Z +12892,477,2,4956,7.99,2005-07-08T23:17:10Z,2020-02-15T06:59:55Z +12893,477,2,6265,2.99,2005-07-11T15:43:51Z,2020-02-15T06:59:55Z +12894,477,2,7302,2.99,2005-07-27T12:52:13Z,2020-02-15T06:59:55Z +12895,477,2,7904,10.99,2005-07-28T11:25:39Z,2020-02-15T06:59:55Z +12896,477,1,8515,6.99,2005-07-29T09:55:20Z,2020-02-15T06:59:55Z +12897,477,1,8821,5.99,2005-07-29T22:18:12Z,2020-02-15T06:59:55Z +12898,477,2,8857,2.99,2005-07-29T23:44:22Z,2020-02-15T06:59:55Z +12899,477,2,9446,8.99,2005-07-30T21:53:01Z,2020-02-15T06:59:55Z +12900,477,1,10500,4.99,2005-08-01T11:01:01Z,2020-02-15T06:59:55Z +12901,477,2,10912,0.99,2005-08-02T02:00:03Z,2020-02-15T06:59:55Z +12902,477,2,12420,4.99,2005-08-18T10:01:50Z,2020-02-15T06:59:55Z +12903,477,1,13002,0.99,2005-08-19T07:37:58Z,2020-02-15T06:59:55Z +12904,477,2,14552,3.99,2005-08-21T15:59:27Z,2020-02-15T06:59:55Z +12905,477,2,15091,2.99,2005-08-22T11:34:43Z,2020-02-15T06:59:55Z +12906,477,1,15929,2.99,2005-08-23T18:23:30Z,2020-02-15T06:59:55Z +12907,478,1,1708,0.99,2005-06-16T14:08:44Z,2020-02-15T06:59:55Z +12908,478,2,2358,4.99,2005-06-18T13:00:51Z,2020-02-15T06:59:55Z +12909,478,1,2529,6.99,2005-06-19T01:18:27Z,2020-02-15T06:59:55Z +12910,478,2,2616,8.99,2005-06-19T07:33:00Z,2020-02-15T06:59:55Z +12911,478,2,2765,4.99,2005-06-19T17:34:39Z,2020-02-15T06:59:55Z +12912,478,2,3259,4.99,2005-06-21T03:57:15Z,2020-02-15T06:59:55Z +12913,478,1,3691,4.99,2005-07-06T09:46:12Z,2020-02-15T06:59:55Z +12914,478,1,5837,4.99,2005-07-10T16:57:50Z,2020-02-15T06:59:55Z +12915,478,1,7522,2.99,2005-07-27T21:11:03Z,2020-02-15T06:59:55Z +12916,478,2,8488,4.99,2005-07-29T08:57:38Z,2020-02-15T06:59:55Z +12917,478,1,9665,4.99,2005-07-31T06:17:33Z,2020-02-15T06:59:55Z +12918,478,2,10016,4.99,2005-07-31T18:13:06Z,2020-02-15T06:59:55Z +12919,478,2,10127,0.99,2005-07-31T21:39:48Z,2020-02-15T06:59:55Z +12920,478,1,11906,2.99,2005-08-17T15:40:46Z,2020-02-15T06:59:55Z +12921,478,2,13162,2.99,2005-08-19T13:28:26Z,2020-02-15T06:59:55Z +12922,478,2,13507,4.99,2005-08-20T02:10:27Z,2020-02-15T06:59:55Z +12923,478,1,15027,4.99,2005-08-22T09:03:04Z,2020-02-15T06:59:55Z +12924,478,2,15188,4.99,2005-08-22T15:55:48Z,2020-02-15T06:59:55Z +12925,478,1,15724,4.99,2005-08-23T11:22:09Z,2020-02-15T06:59:55Z +12926,479,2,132,3.99,2005-05-25T21:46:54Z,2020-02-15T06:59:55Z +12927,479,1,709,7.99,2005-05-29T03:48:01Z,2020-02-15T06:59:55Z +12928,479,1,1902,2.99,2005-06-17T04:35:52Z,2020-02-15T06:59:55Z +12929,479,2,1947,3.99,2005-06-17T08:02:20Z,2020-02-15T06:59:55Z +12930,479,2,1987,2.99,2005-06-17T10:40:36Z,2020-02-15T06:59:55Z +12931,479,2,2071,3.99,2005-06-17T16:33:17Z,2020-02-15T06:59:55Z +12932,479,2,2376,2.99,2005-06-18T14:55:30Z,2020-02-15T06:59:55Z +12933,479,2,2764,6.99,2005-06-19T17:27:25Z,2020-02-15T06:59:55Z +12934,479,2,3537,6.99,2005-07-06T01:36:53Z,2020-02-15T06:59:55Z +12935,479,1,3798,0.99,2005-07-06T14:57:53Z,2020-02-15T06:59:55Z +12936,479,2,4183,8.99,2005-07-07T10:28:33Z,2020-02-15T06:59:55Z +12937,479,1,5481,0.99,2005-07-09T23:51:57Z,2020-02-15T06:59:55Z +12938,479,1,5751,4.99,2005-07-10T12:25:11Z,2020-02-15T06:59:55Z +12939,479,2,6084,7.99,2005-07-11T05:16:20Z,2020-02-15T06:59:55Z +12940,479,1,6421,1.99,2005-07-11T23:45:25Z,2020-02-15T06:59:55Z +12941,479,1,6597,0.99,2005-07-12T07:37:02Z,2020-02-15T06:59:55Z +12942,479,2,6849,8.99,2005-07-12T19:29:19Z,2020-02-15T06:59:55Z +12943,479,1,7060,7.99,2005-07-27T03:51:04Z,2020-02-15T06:59:55Z +12944,479,2,7893,2.99,2005-07-28T10:49:27Z,2020-02-15T06:59:55Z +12945,479,1,9347,5.99,2005-07-30T18:16:03Z,2020-02-15T06:59:55Z +12946,479,1,9439,8.99,2005-07-30T21:38:12Z,2020-02-15T06:59:55Z +12947,479,2,9697,2.99,2005-07-31T07:23:11Z,2020-02-15T06:59:55Z +12948,479,2,9754,7.99,2005-07-31T09:23:43Z,2020-02-15T06:59:55Z +12949,479,2,10303,4.99,2005-08-01T04:13:33Z,2020-02-15T06:59:55Z +12950,479,2,11109,4.99,2005-08-02T08:20:29Z,2020-02-15T06:59:55Z +12951,479,2,11584,1.99,2005-08-17T02:13:26Z,2020-02-15T06:59:55Z +12952,479,2,11835,4.99,2005-08-17T13:03:13Z,2020-02-15T06:59:55Z +12953,479,2,12401,0.99,2005-08-18T09:20:51Z,2020-02-15T06:59:55Z +12954,479,2,13078,8.99,2005-08-19T10:16:43Z,2020-02-15T06:59:55Z +12955,479,1,13974,2.99,2005-08-20T18:54:59Z,2020-02-15T06:59:55Z +12956,479,1,12101,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +12957,480,1,518,0.99,2005-05-28T03:18:02Z,2020-02-15T06:59:55Z +12958,480,1,720,6.99,2005-05-29T05:17:30Z,2020-02-15T06:59:55Z +12959,480,2,822,9.99,2005-05-29T21:36:00Z,2020-02-15T06:59:55Z +12960,480,1,1353,0.99,2005-06-15T13:13:36Z,2020-02-15T06:59:55Z +12961,480,1,1733,0.99,2005-06-16T15:37:07Z,2020-02-15T06:59:55Z +12962,480,2,3507,7.99,2005-07-06T00:23:43Z,2020-02-15T06:59:55Z +12963,480,2,5633,2.99,2005-07-10T06:22:24Z,2020-02-15T06:59:55Z +12964,480,1,6191,2.99,2005-07-11T11:37:52Z,2020-02-15T06:59:55Z +12965,480,1,7257,2.99,2005-07-27T11:04:17Z,2020-02-15T06:59:55Z +12966,480,2,7910,9.99,2005-07-28T11:44:56Z,2020-02-15T06:59:55Z +12967,480,2,8847,4.99,2005-07-29T23:13:41Z,2020-02-15T06:59:55Z +12968,480,1,8967,6.99,2005-07-30T03:56:55Z,2020-02-15T06:59:55Z +12969,480,2,9332,4.99,2005-07-30T17:53:39Z,2020-02-15T06:59:55Z +12970,480,2,10808,1.99,2005-08-01T22:37:11Z,2020-02-15T06:59:55Z +12971,480,2,11017,0.99,2005-08-02T05:19:51Z,2020-02-15T06:59:55Z +12972,480,1,11369,5.99,2005-08-02T18:04:41Z,2020-02-15T06:59:55Z +12973,480,2,12905,4.99,2005-08-19T04:13:37Z,2020-02-15T06:59:55Z +12974,480,2,13092,0.99,2005-08-19T10:41:09Z,2020-02-15T06:59:55Z +12975,480,2,13131,9.99,2005-08-19T12:08:13Z,2020-02-15T06:59:55Z +12976,480,1,13831,4.99,2005-08-20T13:59:35Z,2020-02-15T06:59:55Z +12977,480,2,15363,2.99,2005-08-22T21:41:40Z,2020-02-15T06:59:55Z +12978,480,2,15579,4.99,2005-08-23T05:38:41Z,2020-02-15T06:59:55Z +12979,481,2,1109,5.99,2005-05-31T15:12:15Z,2020-02-15T06:59:55Z +12980,481,2,1168,2.99,2005-06-14T23:35:09Z,2020-02-15T06:59:55Z +12981,481,2,2296,4.99,2005-06-18T08:10:42Z,2020-02-15T06:59:55Z +12982,481,2,3285,4.99,2005-06-21T06:30:13Z,2020-02-15T06:59:55Z +12983,481,2,3293,0.99,2005-06-21T06:59:33Z,2020-02-15T06:59:55Z +12984,481,1,3863,0.99,2005-07-06T17:40:18Z,2020-02-15T06:59:55Z +12985,481,1,4473,2.99,2005-07-08T00:22:10Z,2020-02-15T06:59:55Z +12986,481,1,4505,1.99,2005-07-08T02:20:04Z,2020-02-15T06:59:55Z +12987,481,1,4532,0.99,2005-07-08T03:30:39Z,2020-02-15T06:59:55Z +12988,481,1,4668,10.99,2005-07-08T10:11:45Z,2020-02-15T06:59:55Z +12989,481,2,5711,2.99,2005-07-10T10:37:20Z,2020-02-15T06:59:55Z +12990,481,1,6044,0.99,2005-07-11T03:18:39Z,2020-02-15T06:59:55Z +12991,481,1,7228,4.99,2005-07-27T09:55:33Z,2020-02-15T06:59:55Z +12992,481,2,7836,7.99,2005-07-28T08:55:27Z,2020-02-15T06:59:55Z +12993,481,1,8243,6.99,2005-07-29T00:35:33Z,2020-02-15T06:59:55Z +12994,481,2,8271,6.99,2005-07-29T01:27:44Z,2020-02-15T06:59:55Z +12995,481,1,9481,4.99,2005-07-30T23:26:05Z,2020-02-15T06:59:55Z +12996,481,1,10018,3.99,2005-07-31T18:15:14Z,2020-02-15T06:59:55Z +12997,481,2,11207,0.99,2005-08-02T12:01:30Z,2020-02-15T06:59:55Z +12998,481,2,11387,2.99,2005-08-02T18:32:38Z,2020-02-15T06:59:55Z +12999,481,1,11752,4.99,2005-08-17T09:10:55Z,2020-02-15T06:59:55Z +13000,481,1,11885,4.99,2005-08-17T14:53:53Z,2020-02-15T06:59:55Z +13001,481,2,12160,2.99,2005-08-18T00:37:59Z,2020-02-15T06:59:55Z +13002,481,1,12981,4.99,2005-08-19T07:04:00Z,2020-02-15T06:59:55Z +13003,481,2,13497,2.99,2005-08-20T01:46:38Z,2020-02-15T06:59:55Z +13004,481,2,13878,4.99,2005-08-20T15:17:38Z,2020-02-15T06:59:55Z +13005,481,1,13990,1.99,2005-08-20T19:29:23Z,2020-02-15T06:59:55Z +13006,481,2,14280,4.99,2005-08-21T06:39:58Z,2020-02-15T06:59:55Z +13007,481,2,14584,0.99,2005-08-21T17:15:33Z,2020-02-15T06:59:55Z +13008,482,1,259,8.99,2005-05-26T15:32:46Z,2020-02-15T06:59:55Z +13009,482,2,680,2.99,2005-05-28T23:27:26Z,2020-02-15T06:59:55Z +13010,482,2,879,0.99,2005-05-30T05:49:42Z,2020-02-15T06:59:55Z +13011,482,2,3048,2.99,2005-06-20T12:49:55Z,2020-02-15T06:59:55Z +13012,482,2,3255,0.99,2005-06-21T03:39:52Z,2020-02-15T06:59:55Z +13013,482,2,3650,2.99,2005-07-06T07:34:15Z,2020-02-15T06:59:55Z +13014,482,1,4768,4.99,2005-07-08T15:28:20Z,2020-02-15T06:59:55Z +13015,482,1,5334,4.99,2005-07-09T17:00:13Z,2020-02-15T06:59:55Z +13016,482,1,5466,4.99,2005-07-09T23:03:21Z,2020-02-15T06:59:55Z +13017,482,2,5810,8.99,2005-07-10T15:22:04Z,2020-02-15T06:59:55Z +13018,482,2,5880,2.99,2005-07-10T19:14:58Z,2020-02-15T06:59:55Z +13019,482,1,6355,8.99,2005-07-11T20:56:29Z,2020-02-15T06:59:55Z +13020,482,2,6447,7.99,2005-07-12T00:45:17Z,2020-02-15T06:59:55Z +13021,482,2,6844,5.99,2005-07-12T19:14:53Z,2020-02-15T06:59:55Z +13022,482,2,7840,6.99,2005-07-28T09:03:02Z,2020-02-15T06:59:55Z +13023,482,2,8584,2.99,2005-07-29T12:07:53Z,2020-02-15T06:59:55Z +13024,482,2,9874,6.99,2005-07-31T13:32:31Z,2020-02-15T06:59:55Z +13025,482,2,10824,4.99,2005-08-01T23:00:22Z,2020-02-15T06:59:55Z +13026,482,2,10839,2.99,2005-08-01T23:37:39Z,2020-02-15T06:59:55Z +13027,482,2,11498,6.99,2005-08-16T22:52:54Z,2020-02-15T06:59:55Z +13028,482,1,13174,4.99,2005-08-19T13:52:50Z,2020-02-15T06:59:55Z +13029,482,2,14383,4.99,2005-08-21T10:02:05Z,2020-02-15T06:59:55Z +13030,482,2,14732,0.99,2005-08-21T22:22:29Z,2020-02-15T06:59:55Z +13031,482,2,14891,6.99,2005-08-22T04:11:02Z,2020-02-15T06:59:55Z +13032,482,2,14995,4.99,2005-08-22T07:52:31Z,2020-02-15T06:59:55Z +13033,482,1,15391,0.99,2005-08-22T23:01:45Z,2020-02-15T06:59:55Z +13034,482,1,15849,5.99,2005-08-23T15:41:20Z,2020-02-15T06:59:55Z +13035,482,2,15865,2.99,2005-08-23T16:18:25Z,2020-02-15T06:59:55Z +13036,482,1,15879,3.99,2005-08-23T16:42:53Z,2020-02-15T06:59:55Z +13037,483,2,742,6.99,2005-05-29T08:36:30Z,2020-02-15T06:59:55Z +13038,483,1,2855,4.99,2005-06-19T23:11:49Z,2020-02-15T06:59:55Z +13039,483,2,2867,0.99,2005-06-20T00:08:38Z,2020-02-15T06:59:55Z +13040,483,1,3380,8.99,2005-06-21T13:58:46Z,2020-02-15T06:59:55Z +13041,483,2,3559,4.99,2005-07-06T02:49:42Z,2020-02-15T06:59:55Z +13042,483,1,5823,4.99,2005-07-10T16:19:52Z,2020-02-15T06:59:55Z +13043,483,2,6478,4.99,2005-07-12T01:41:44Z,2020-02-15T06:59:55Z +13044,483,2,6899,9.99,2005-07-12T21:44:16Z,2020-02-15T06:59:55Z +13045,483,2,7137,0.99,2005-07-27T06:40:41Z,2020-02-15T06:59:55Z +13046,483,1,7381,4.99,2005-07-27T15:40:26Z,2020-02-15T06:59:55Z +13047,483,1,7669,4.99,2005-07-28T02:44:07Z,2020-02-15T06:59:55Z +13048,483,1,8057,7.99,2005-07-28T17:07:13Z,2020-02-15T06:59:55Z +13049,483,1,8356,4.99,2005-07-29T04:58:56Z,2020-02-15T06:59:55Z +13050,483,2,10677,0.99,2005-08-01T17:24:35Z,2020-02-15T06:59:55Z +13051,483,1,10953,6.99,2005-08-02T03:28:38Z,2020-02-15T06:59:55Z +13052,483,2,12331,3.99,2005-08-18T06:47:19Z,2020-02-15T06:59:55Z +13053,483,2,12695,2.99,2005-08-18T20:11:35Z,2020-02-15T06:59:55Z +13054,483,2,12875,2.99,2005-08-19T03:10:21Z,2020-02-15T06:59:55Z +13055,484,2,35,4.99,2005-05-25T04:24:36Z,2020-02-15T06:59:55Z +13056,484,2,668,2.99,2005-05-28T21:54:45Z,2020-02-15T06:59:55Z +13057,484,2,727,2.99,2005-05-29T06:08:15Z,2020-02-15T06:59:55Z +13058,484,1,1351,3.99,2005-06-15T12:51:03Z,2020-02-15T06:59:55Z +13059,484,2,1643,3.99,2005-06-16T08:55:35Z,2020-02-15T06:59:55Z +13060,484,1,2015,4.99,2005-06-17T12:16:29Z,2020-02-15T06:59:55Z +13061,484,1,2044,5.99,2005-06-17T14:37:57Z,2020-02-15T06:59:55Z +13062,484,1,4214,4.99,2005-07-07T11:54:33Z,2020-02-15T06:59:55Z +13063,484,1,5389,2.99,2005-07-09T19:25:45Z,2020-02-15T06:59:55Z +13064,484,2,5708,6.99,2005-07-10T10:29:19Z,2020-02-15T06:59:55Z +13065,484,1,5852,0.99,2005-07-10T17:43:30Z,2020-02-15T06:59:55Z +13066,484,2,5866,6.99,2005-07-10T18:35:14Z,2020-02-15T06:59:55Z +13067,484,2,5977,5.99,2005-07-11T00:16:38Z,2020-02-15T06:59:55Z +13068,484,2,6296,2.99,2005-07-11T17:34:04Z,2020-02-15T06:59:55Z +13069,484,1,6863,6.99,2005-07-12T19:58:34Z,2020-02-15T06:59:55Z +13070,484,2,7440,4.99,2005-07-27T17:43:27Z,2020-02-15T06:59:55Z +13071,484,2,7548,2.99,2005-07-27T21:53:18Z,2020-02-15T06:59:55Z +13072,484,2,8508,0.99,2005-07-29T09:34:38Z,2020-02-15T06:59:55Z +13073,484,2,9141,5.99,2005-07-30T10:16:04Z,2020-02-15T06:59:55Z +13074,484,2,9414,9.99,2005-07-30T20:46:02Z,2020-02-15T06:59:55Z +13075,484,1,9769,4.99,2005-07-31T09:52:16Z,2020-02-15T06:59:55Z +13076,484,2,10166,8.99,2005-07-31T23:22:20Z,2020-02-15T06:59:55Z +13077,484,2,11871,4.99,2005-08-17T14:11:44Z,2020-02-15T06:59:55Z +13078,484,1,12024,0.99,2005-08-17T19:57:34Z,2020-02-15T06:59:55Z +13079,484,1,12771,4.99,2005-08-18T23:29:23Z,2020-02-15T06:59:55Z +13080,484,1,12993,7.99,2005-08-19T07:24:03Z,2020-02-15T06:59:55Z +13081,484,2,13160,0.99,2005-08-19T13:21:04Z,2020-02-15T06:59:55Z +13082,484,2,13956,3.99,2005-08-20T18:08:19Z,2020-02-15T06:59:55Z +13083,484,1,15607,2.99,2005-08-23T06:54:06Z,2020-02-15T06:59:55Z +13084,484,1,16026,4.99,2005-08-23T21:49:22Z,2020-02-15T06:59:55Z +13085,485,1,1009,2.99,2005-05-31T01:47:35Z,2020-02-15T06:59:55Z +13086,485,2,1684,2.99,2005-06-16T11:57:34Z,2020-02-15T06:59:55Z +13087,485,1,1721,8.99,2005-06-16T15:01:36Z,2020-02-15T06:59:55Z +13088,485,2,3579,0.99,2005-07-06T03:47:47Z,2020-02-15T06:59:55Z +13089,485,1,3899,1.99,2005-07-06T19:12:40Z,2020-02-15T06:59:55Z +13090,485,1,3904,0.99,2005-07-06T19:30:57Z,2020-02-15T06:59:55Z +13091,485,2,4137,3.99,2005-07-07T08:17:06Z,2020-02-15T06:59:55Z +13092,485,2,4667,2.99,2005-07-08T10:06:26Z,2020-02-15T06:59:55Z +13093,485,1,5193,2.99,2005-07-09T10:28:18Z,2020-02-15T06:59:55Z +13094,485,1,5343,3.99,2005-07-09T17:23:43Z,2020-02-15T06:59:55Z +13095,485,1,5367,3.99,2005-07-09T18:39:15Z,2020-02-15T06:59:55Z +13096,485,1,5820,4.99,2005-07-10T16:04:59Z,2020-02-15T06:59:55Z +13097,485,2,6810,4.99,2005-07-12T17:54:19Z,2020-02-15T06:59:55Z +13098,485,2,6902,4.99,2005-07-12T21:57:16Z,2020-02-15T06:59:55Z +13099,485,1,7144,4.99,2005-07-27T07:00:37Z,2020-02-15T06:59:55Z +13100,485,2,8984,6.99,2005-07-30T04:31:50Z,2020-02-15T06:59:55Z +13101,485,2,9039,2.99,2005-07-30T06:24:28Z,2020-02-15T06:59:55Z +13102,485,1,9053,4.99,2005-07-30T07:07:39Z,2020-02-15T06:59:55Z +13103,485,2,9189,2.99,2005-07-30T12:20:59Z,2020-02-15T06:59:55Z +13104,485,1,9535,2.99,2005-07-31T01:18:53Z,2020-02-15T06:59:55Z +13105,485,1,9565,0.99,2005-07-31T02:32:00Z,2020-02-15T06:59:55Z +13106,485,1,10771,4.99,2005-08-01T20:49:35Z,2020-02-15T06:59:55Z +13107,485,2,10772,6.99,2005-08-01T20:51:10Z,2020-02-15T06:59:55Z +13108,485,2,11188,3.99,2005-08-02T11:17:11Z,2020-02-15T06:59:55Z +13109,485,1,11921,4.99,2005-08-17T16:12:27Z,2020-02-15T06:59:55Z +13110,485,1,11974,2.99,2005-08-17T17:56:48Z,2020-02-15T06:59:55Z +13111,485,2,12261,8.99,2005-08-18T04:16:06Z,2020-02-15T06:59:55Z +13112,485,2,12487,0.99,2005-08-18T12:45:24Z,2020-02-15T06:59:55Z +13113,485,2,13055,2.99,2005-08-19T09:36:28Z,2020-02-15T06:59:55Z +13114,486,1,909,8.99,2005-05-30T10:43:38Z,2020-02-15T06:59:55Z +13115,486,2,946,2.99,2005-05-30T15:35:08Z,2020-02-15T06:59:55Z +13116,486,2,1129,0.99,2005-05-31T18:00:48Z,2020-02-15T06:59:55Z +13117,486,1,2036,4.99,2005-06-17T13:46:52Z,2020-02-15T06:59:55Z +13118,486,1,2102,5.99,2005-06-17T19:05:22Z,2020-02-15T06:59:55Z +13119,486,2,2566,2.99,2005-06-19T03:45:39Z,2020-02-15T06:59:55Z +13120,486,2,2797,2.99,2005-06-19T19:04:32Z,2020-02-15T06:59:55Z +13121,486,1,3835,4.99,2005-07-06T16:22:45Z,2020-02-15T06:59:55Z +13122,486,2,4110,4.99,2005-07-07T06:44:27Z,2020-02-15T06:59:55Z +13123,486,1,4205,4.99,2005-07-07T11:25:39Z,2020-02-15T06:59:55Z +13124,486,1,4381,2.99,2005-07-07T20:37:53Z,2020-02-15T06:59:55Z +13125,486,1,4772,7.99,2005-07-08T15:41:11Z,2020-02-15T06:59:55Z +13126,486,2,5006,4.99,2005-07-09T01:24:07Z,2020-02-15T06:59:55Z +13127,486,2,6383,4.99,2005-07-11T22:06:53Z,2020-02-15T06:59:55Z +13128,486,2,7127,4.99,2005-07-27T06:13:48Z,2020-02-15T06:59:55Z +13129,486,2,7446,4.99,2005-07-27T18:00:24Z,2020-02-15T06:59:55Z +13130,486,2,8425,8.99,2005-07-29T07:06:21Z,2020-02-15T06:59:55Z +13131,486,2,9142,0.99,2005-07-30T10:21:03Z,2020-02-15T06:59:55Z +13132,486,1,10079,2.99,2005-07-31T20:05:45Z,2020-02-15T06:59:55Z +13133,486,2,10902,4.99,2005-08-02T01:35:46Z,2020-02-15T06:59:55Z +13134,486,1,12465,0.99,2005-08-18T11:35:02Z,2020-02-15T06:59:55Z +13135,486,2,12609,2.99,2005-08-18T17:06:22Z,2020-02-15T06:59:55Z +13136,486,1,13048,4.99,2005-08-19T09:25:06Z,2020-02-15T06:59:55Z +13137,486,2,13803,0.99,2005-08-20T12:46:17Z,2020-02-15T06:59:55Z +13138,486,2,14251,4.99,2005-08-21T05:42:20Z,2020-02-15T06:59:55Z +13139,486,2,14284,4.99,2005-08-21T06:44:37Z,2020-02-15T06:59:55Z +13140,487,2,3100,3.99,2005-06-20T16:47:57Z,2020-02-15T06:59:55Z +13141,487,2,3994,1.99,2005-07-06T23:39:01Z,2020-02-15T06:59:55Z +13142,487,2,4854,2.99,2005-07-08T18:44:44Z,2020-02-15T06:59:55Z +13143,487,1,5634,3.99,2005-07-10T06:25:48Z,2020-02-15T06:59:55Z +13144,487,1,6928,2.99,2005-07-26T22:56:21Z,2020-02-15T06:59:55Z +13145,487,1,7097,2.99,2005-07-27T04:56:09Z,2020-02-15T06:59:55Z +13146,487,1,7788,0.99,2005-07-28T07:21:55Z,2020-02-15T06:59:55Z +13147,487,2,7949,4.99,2005-07-28T13:07:24Z,2020-02-15T06:59:55Z +13148,487,2,8510,1.99,2005-07-29T09:41:38Z,2020-02-15T06:59:55Z +13149,487,2,8689,2.99,2005-07-29T16:38:58Z,2020-02-15T06:59:55Z +13150,487,1,8814,4.99,2005-07-29T21:49:43Z,2020-02-15T06:59:55Z +13151,487,1,8988,7.99,2005-07-30T04:38:49Z,2020-02-15T06:59:55Z +13152,487,2,9457,2.99,2005-07-30T22:23:05Z,2020-02-15T06:59:55Z +13153,487,1,9490,3.99,2005-07-30T23:45:09Z,2020-02-15T06:59:55Z +13154,487,2,10123,0.99,2005-07-31T21:30:46Z,2020-02-15T06:59:55Z +13155,487,2,10511,2.99,2005-08-01T11:32:16Z,2020-02-15T06:59:55Z +13156,487,2,10555,6.99,2005-08-01T12:56:38Z,2020-02-15T06:59:55Z +13157,487,1,10832,6.99,2005-08-01T23:24:53Z,2020-02-15T06:59:55Z +13158,487,2,10877,5.99,2005-08-02T00:32:04Z,2020-02-15T06:59:55Z +13159,487,1,10978,9.99,2005-08-02T04:12:27Z,2020-02-15T06:59:55Z +13160,487,1,11669,5.99,2005-08-17T05:48:51Z,2020-02-15T06:59:55Z +13161,487,2,11890,5.99,2005-08-17T15:08:43Z,2020-02-15T06:59:55Z +13162,487,1,12493,7.99,2005-08-18T12:53:38Z,2020-02-15T06:59:55Z +13163,487,2,13210,4.99,2005-08-19T15:23:38Z,2020-02-15T06:59:55Z +13164,487,1,13658,7.99,2005-08-20T08:02:22Z,2020-02-15T06:59:55Z +13165,487,2,15665,2.99,2005-08-23T08:59:12Z,2020-02-15T06:59:55Z +13166,488,2,1655,3.99,2005-06-16T09:51:39Z,2020-02-15T06:59:55Z +13167,488,2,1704,5.99,2005-06-16T13:45:56Z,2020-02-15T06:59:55Z +13168,488,2,4133,6.99,2005-07-07T08:12:26Z,2020-02-15T06:59:55Z +13169,488,2,4233,5.99,2005-07-07T13:00:20Z,2020-02-15T06:59:55Z +13170,488,1,5141,8.99,2005-07-09T08:05:14Z,2020-02-15T06:59:55Z +13171,488,2,6548,5.99,2005-07-12T05:00:46Z,2020-02-15T06:59:55Z +13172,488,1,7373,5.99,2005-07-27T15:19:33Z,2020-02-15T06:59:55Z +13173,488,1,8005,2.99,2005-07-28T15:15:11Z,2020-02-15T06:59:55Z +13174,488,2,8050,0.99,2005-07-28T16:55:47Z,2020-02-15T06:59:55Z +13175,488,2,8064,2.99,2005-07-28T17:15:38Z,2020-02-15T06:59:55Z +13176,488,2,9083,5.99,2005-07-30T08:14:27Z,2020-02-15T06:59:55Z +13177,488,1,9532,2.99,2005-07-31T01:16:51Z,2020-02-15T06:59:55Z +13178,488,1,9537,0.99,2005-07-31T01:23:00Z,2020-02-15T06:59:55Z +13179,488,2,10474,5.99,2005-08-01T10:01:42Z,2020-02-15T06:59:55Z +13180,488,1,10767,0.99,2005-08-01T20:37:23Z,2020-02-15T06:59:55Z +13181,488,1,11774,3.99,2005-08-17T10:20:39Z,2020-02-15T06:59:55Z +13182,488,2,12483,5.99,2005-08-18T12:38:37Z,2020-02-15T06:59:55Z +13183,488,2,13446,4.99,2005-08-20T00:06:13Z,2020-02-15T06:59:55Z +13184,488,2,14948,5.99,2005-08-22T06:10:53Z,2020-02-15T06:59:55Z +13185,488,2,15259,0.99,2005-08-22T18:23:23Z,2020-02-15T06:59:55Z +13186,488,1,15350,2.99,2005-08-22T21:15:29Z,2020-02-15T06:59:55Z +13187,488,2,15499,2.99,2005-08-23T02:37:19Z,2020-02-15T06:59:55Z +13188,489,1,219,4.99,2005-05-26T09:41:45Z,2020-02-15T06:59:55Z +13189,489,2,513,2.99,2005-05-28T03:08:10Z,2020-02-15T06:59:55Z +13190,489,2,1614,3.99,2005-06-16T06:58:02Z,2020-02-15T06:59:55Z +13191,489,1,2201,0.99,2005-06-18T02:08:27Z,2020-02-15T06:59:55Z +13192,489,1,2370,7.99,2005-06-18T14:29:54Z,2020-02-15T06:59:55Z +13193,489,1,2802,4.99,2005-06-19T19:18:17Z,2020-02-15T06:59:55Z +13194,489,2,3816,2.99,2005-07-06T15:27:04Z,2020-02-15T06:59:55Z +13195,489,1,4774,3.99,2005-07-08T15:42:28Z,2020-02-15T06:59:55Z +13196,489,1,6963,4.99,2005-07-27T00:13:02Z,2020-02-15T06:59:55Z +13197,489,2,9231,0.99,2005-07-30T13:42:15Z,2020-02-15T06:59:55Z +13198,489,1,9459,4.99,2005-07-30T22:24:46Z,2020-02-15T06:59:55Z +13199,489,2,11119,9.99,2005-08-02T08:44:44Z,2020-02-15T06:59:55Z +13200,489,1,11705,4.99,2005-08-17T07:22:25Z,2020-02-15T06:59:55Z +13201,489,1,12496,6.99,2005-08-18T12:58:25Z,2020-02-15T06:59:55Z +13202,489,2,12701,6.99,2005-08-18T20:26:47Z,2020-02-15T06:59:55Z +13203,489,1,13462,4.99,2005-08-20T00:49:19Z,2020-02-15T06:59:55Z +13204,489,2,14095,5.99,2005-08-21T00:25:45Z,2020-02-15T06:59:55Z +13205,489,2,14328,2.99,2005-08-21T08:18:20Z,2020-02-15T06:59:55Z +13206,489,2,14424,6.99,2005-08-21T11:24:11Z,2020-02-15T06:59:55Z +13207,489,1,15205,0.99,2005-08-22T16:32:23Z,2020-02-15T06:59:55Z +13208,489,1,15981,4.99,2005-08-23T20:12:17Z,2020-02-15T06:59:55Z +13209,490,2,585,6.99,2005-05-28T11:50:45Z,2020-02-15T06:59:55Z +13210,490,2,676,4.99,2005-05-28T22:27:51Z,2020-02-15T06:59:55Z +13211,490,1,1665,3.99,2005-06-16T10:16:02Z,2020-02-15T06:59:55Z +13212,490,1,3476,4.99,2005-07-05T23:02:37Z,2020-02-15T06:59:55Z +13213,490,2,3932,4.99,2005-07-06T21:06:17Z,2020-02-15T06:59:55Z +13214,490,1,4083,2.99,2005-07-07T05:13:15Z,2020-02-15T06:59:55Z +13215,490,1,4906,5.99,2005-07-08T20:59:13Z,2020-02-15T06:59:55Z +13216,490,2,5173,7.99,2005-07-09T09:31:44Z,2020-02-15T06:59:55Z +13217,490,2,5489,0.99,2005-07-10T00:07:03Z,2020-02-15T06:59:55Z +13218,490,1,5654,4.99,2005-07-10T07:24:46Z,2020-02-15T06:59:55Z +13219,490,2,6230,2.99,2005-07-11T14:02:19Z,2020-02-15T06:59:55Z +13220,490,1,6803,4.99,2005-07-12T17:21:49Z,2020-02-15T06:59:55Z +13221,490,2,6888,2.99,2005-07-12T21:01:11Z,2020-02-15T06:59:55Z +13222,490,2,6923,8.99,2005-07-12T22:40:48Z,2020-02-15T06:59:55Z +13223,490,1,8552,5.99,2005-07-29T11:14:02Z,2020-02-15T06:59:55Z +13224,490,2,9108,4.99,2005-07-30T08:56:36Z,2020-02-15T06:59:55Z +13225,490,1,9554,0.99,2005-07-31T02:06:49Z,2020-02-15T06:59:55Z +13226,490,1,10786,7.99,2005-08-01T21:29:34Z,2020-02-15T06:59:55Z +13227,490,1,10955,7.99,2005-08-02T03:32:34Z,2020-02-15T06:59:55Z +13228,490,2,11965,2.99,2005-08-17T17:39:45Z,2020-02-15T06:59:55Z +13229,490,2,14557,4.99,2005-08-21T16:05:11Z,2020-02-15T06:59:55Z +13230,490,2,14761,6.99,2005-08-21T23:30:28Z,2020-02-15T06:59:55Z +13231,490,2,15276,2.99,2005-08-22T18:59:01Z,2020-02-15T06:59:55Z +13232,490,1,15448,2.99,2005-08-23T00:55:24Z,2020-02-15T06:59:55Z +13233,491,1,484,2.99,2005-05-27T23:26:45Z,2020-02-15T06:59:55Z +13234,491,2,1097,0.99,2005-05-31T13:38:42Z,2020-02-15T06:59:55Z +13235,491,2,1198,2.99,2005-06-15T01:48:58Z,2020-02-15T06:59:55Z +13236,491,1,1371,4.99,2005-06-15T14:38:15Z,2020-02-15T06:59:55Z +13237,491,2,2026,4.99,2005-06-17T13:05:38Z,2020-02-15T06:59:55Z +13238,491,1,2259,4.99,2005-06-18T05:37:45Z,2020-02-15T06:59:55Z +13239,491,2,2391,4.99,2005-06-18T15:33:30Z,2020-02-15T06:59:55Z +13240,491,2,3031,4.99,2005-06-20T11:52:49Z,2020-02-15T06:59:55Z +13241,491,1,3440,3.99,2005-06-21T19:58:18Z,2020-02-15T06:59:55Z +13242,491,1,4046,8.99,2005-07-07T03:27:59Z,2020-02-15T06:59:55Z +13243,491,1,4392,2.99,2005-07-07T21:11:02Z,2020-02-15T06:59:55Z +13244,491,2,5134,6.99,2005-07-09T07:53:12Z,2020-02-15T06:59:55Z +13245,491,1,5889,4.99,2005-07-10T19:54:41Z,2020-02-15T06:59:55Z +13246,491,2,6171,2.99,2005-07-11T10:29:35Z,2020-02-15T06:59:55Z +13247,491,2,7019,3.99,2005-07-27T02:20:26Z,2020-02-15T06:59:55Z +13248,491,2,7281,6.99,2005-07-27T11:59:20Z,2020-02-15T06:59:55Z +13249,491,2,7688,7.99,2005-07-28T03:20:47Z,2020-02-15T06:59:55Z +13250,491,1,7871,6.99,2005-07-28T10:16:37Z,2020-02-15T06:59:55Z +13251,491,2,10036,2.99,2005-07-31T18:47:20Z,2020-02-15T06:59:55Z +13252,491,2,10178,4.99,2005-07-31T23:43:04Z,2020-02-15T06:59:55Z +13253,491,2,10974,6.99,2005-08-02T04:10:52Z,2020-02-15T06:59:55Z +13254,491,1,11048,4.99,2005-08-02T06:15:07Z,2020-02-15T06:59:55Z +13255,491,1,11590,0.99,2005-08-17T02:28:33Z,2020-02-15T06:59:55Z +13256,491,1,11840,4.99,2005-08-17T13:09:01Z,2020-02-15T06:59:55Z +13257,491,2,13607,2.99,2005-08-20T06:08:42Z,2020-02-15T06:59:55Z +13258,491,1,14780,0.99,2005-08-22T00:06:33Z,2020-02-15T06:59:55Z +13259,491,2,15685,5.99,2005-08-23T09:41:28Z,2020-02-15T06:59:55Z +13260,492,1,84,2.99,2005-05-25T12:36:30Z,2020-02-15T06:59:55Z +13261,492,2,1691,1.99,2005-06-16T12:24:28Z,2020-02-15T06:59:55Z +13262,492,2,1855,4.99,2005-06-17T00:54:58Z,2020-02-15T06:59:55Z +13263,492,2,1956,4.99,2005-06-17T08:43:32Z,2020-02-15T06:59:55Z +13264,492,1,3298,9.99,2005-06-21T07:09:44Z,2020-02-15T06:59:55Z +13265,492,2,4128,8.99,2005-07-07T07:35:25Z,2020-02-15T06:59:55Z +13266,492,1,4142,2.99,2005-07-07T08:19:45Z,2020-02-15T06:59:55Z +13267,492,2,4258,6.99,2005-07-07T14:20:59Z,2020-02-15T06:59:55Z +13268,492,2,5325,0.99,2005-07-09T16:35:47Z,2020-02-15T06:59:55Z +13269,492,1,5609,0.99,2005-07-10T05:09:46Z,2020-02-15T06:59:55Z +13270,492,1,6257,2.99,2005-07-11T15:23:46Z,2020-02-15T06:59:55Z +13271,492,2,7203,2.99,2005-07-27T09:01:23Z,2020-02-15T06:59:55Z +13272,492,2,12971,4.99,2005-08-19T06:42:43Z,2020-02-15T06:59:55Z +13273,492,1,14255,2.99,2005-08-21T05:51:37Z,2020-02-15T06:59:55Z +13274,492,2,15822,0.99,2005-08-23T15:05:59Z,2020-02-15T06:59:55Z +13275,492,1,15958,4.99,2005-08-23T19:22:36Z,2020-02-15T06:59:55Z +13276,493,1,543,7.99,2005-05-28T06:43:34Z,2020-02-15T06:59:55Z +13277,493,2,2109,3.99,2005-06-17T19:41:42Z,2020-02-15T06:59:55Z +13278,493,1,2365,4.99,2005-06-18T13:45:34Z,2020-02-15T06:59:55Z +13279,493,1,2579,0.99,2005-06-19T04:40:44Z,2020-02-15T06:59:55Z +13280,493,1,2864,2.99,2005-06-20T00:00:52Z,2020-02-15T06:59:55Z +13281,493,2,3586,4.99,2005-07-06T04:24:42Z,2020-02-15T06:59:55Z +13282,493,1,3655,5.99,2005-07-06T07:52:54Z,2020-02-15T06:59:55Z +13283,493,1,6549,7.99,2005-07-12T05:02:01Z,2020-02-15T06:59:55Z +13284,493,1,6552,4.99,2005-07-12T05:05:06Z,2020-02-15T06:59:55Z +13285,493,1,7026,2.99,2005-07-27T02:48:58Z,2020-02-15T06:59:55Z +13286,493,2,7043,7.99,2005-07-27T03:24:23Z,2020-02-15T06:59:55Z +13287,493,1,8298,4.99,2005-07-29T02:47:36Z,2020-02-15T06:59:55Z +13288,493,1,8616,2.99,2005-07-29T13:39:09Z,2020-02-15T06:59:55Z +13289,493,1,10777,6.99,2005-08-01T21:03:50Z,2020-02-15T06:59:55Z +13290,493,2,10885,7.99,2005-08-02T00:51:37Z,2020-02-15T06:59:55Z +13291,493,1,13638,2.99,2005-08-20T07:21:15Z,2020-02-15T06:59:55Z +13292,493,2,13675,6.99,2005-08-20T08:32:51Z,2020-02-15T06:59:55Z +13293,493,1,14117,4.99,2005-08-21T01:11:59Z,2020-02-15T06:59:55Z +13294,493,2,15177,4.99,2005-08-22T15:34:49Z,2020-02-15T06:59:55Z +13295,493,1,15355,0.99,2005-08-22T21:19:24Z,2020-02-15T06:59:55Z +13296,493,1,15490,6.99,2005-08-23T02:08:18Z,2020-02-15T06:59:55Z +13297,493,2,15878,2.99,2005-08-23T16:34:31Z,2020-02-15T06:59:55Z +13298,493,2,14160,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13299,494,1,608,4.99,2005-05-28T15:03:44Z,2020-02-15T06:59:55Z +13300,494,1,1683,2.99,2005-06-16T11:54:55Z,2020-02-15T06:59:55Z +13301,494,1,3511,0.99,2005-07-06T00:42:01Z,2020-02-15T06:59:55Z +13302,494,2,3803,2.99,2005-07-06T15:06:55Z,2020-02-15T06:59:55Z +13303,494,2,3913,0.99,2005-07-06T20:11:00Z,2020-02-15T06:59:55Z +13304,494,1,4086,3.99,2005-07-07T05:26:06Z,2020-02-15T06:59:55Z +13305,494,2,4397,5.99,2005-07-07T21:14:54Z,2020-02-15T06:59:55Z +13306,494,2,4551,7.99,2005-07-08T04:36:21Z,2020-02-15T06:59:55Z +13307,494,2,5083,4.99,2005-07-09T05:30:32Z,2020-02-15T06:59:55Z +13308,494,1,5180,2.99,2005-07-09T10:06:53Z,2020-02-15T06:59:55Z +13309,494,2,7258,3.99,2005-07-27T11:05:54Z,2020-02-15T06:59:55Z +13310,494,2,7546,8.99,2005-07-27T21:50:09Z,2020-02-15T06:59:55Z +13311,494,2,7737,1.99,2005-07-28T05:15:03Z,2020-02-15T06:59:55Z +13312,494,2,8333,2.99,2005-07-29T04:16:40Z,2020-02-15T06:59:55Z +13313,494,2,8895,2.99,2005-07-30T00:49:17Z,2020-02-15T06:59:55Z +13314,494,1,8934,4.99,2005-07-30T02:37:05Z,2020-02-15T06:59:55Z +13315,494,2,9012,4.99,2005-07-30T05:18:57Z,2020-02-15T06:59:55Z +13316,494,2,9510,7.99,2005-07-31T00:24:17Z,2020-02-15T06:59:55Z +13317,494,1,9799,2.99,2005-07-31T10:58:32Z,2020-02-15T06:59:55Z +13318,494,2,9943,7.99,2005-07-31T15:37:29Z,2020-02-15T06:59:55Z +13319,494,1,10403,0.99,2005-08-01T07:30:45Z,2020-02-15T06:59:55Z +13320,494,1,10623,2.99,2005-08-01T15:22:38Z,2020-02-15T06:59:55Z +13321,494,2,11152,3.99,2005-08-02T09:53:36Z,2020-02-15T06:59:55Z +13322,494,1,11987,5.99,2005-08-17T18:21:59Z,2020-02-15T06:59:55Z +13323,494,2,13094,0.99,2005-08-19T10:47:58Z,2020-02-15T06:59:55Z +13324,494,2,13301,3.99,2005-08-19T18:53:15Z,2020-02-15T06:59:55Z +13325,494,2,14634,5.99,2005-08-21T18:51:28Z,2020-02-15T06:59:55Z +13326,494,1,14832,4.99,2005-08-22T01:43:29Z,2020-02-15T06:59:55Z +13327,494,1,15086,6.99,2005-08-22T11:21:08Z,2020-02-15T06:59:55Z +13328,494,2,15156,9.99,2005-08-22T14:29:11Z,2020-02-15T06:59:55Z +13329,494,2,15291,4.99,2005-08-22T19:28:04Z,2020-02-15T06:59:55Z +13330,495,2,623,4.99,2005-05-28T16:01:28Z,2020-02-15T06:59:55Z +13331,495,2,741,4.99,2005-05-29T08:35:49Z,2020-02-15T06:59:55Z +13332,495,2,2074,2.99,2005-06-17T16:40:03Z,2020-02-15T06:59:55Z +13333,495,1,2349,4.99,2005-06-18T12:25:14Z,2020-02-15T06:59:55Z +13334,495,1,2549,7.99,2005-06-19T02:46:39Z,2020-02-15T06:59:55Z +13335,495,1,3129,3.99,2005-06-20T18:57:48Z,2020-02-15T06:59:55Z +13336,495,2,3966,2.99,2005-07-06T22:38:49Z,2020-02-15T06:59:55Z +13337,495,2,5484,7.99,2005-07-09T23:54:37Z,2020-02-15T06:59:55Z +13338,495,2,6426,7.99,2005-07-11T23:56:38Z,2020-02-15T06:59:55Z +13339,495,2,7191,2.99,2005-07-27T08:36:15Z,2020-02-15T06:59:55Z +13340,495,1,8151,0.99,2005-07-28T20:50:52Z,2020-02-15T06:59:55Z +13341,495,1,8383,1.99,2005-07-29T05:36:47Z,2020-02-15T06:59:55Z +13342,495,1,8451,5.99,2005-07-29T07:44:56Z,2020-02-15T06:59:55Z +13343,495,1,8672,5.99,2005-07-29T15:49:48Z,2020-02-15T06:59:55Z +13344,495,1,9387,9.99,2005-07-30T19:27:05Z,2020-02-15T06:59:55Z +13345,495,1,9741,4.99,2005-07-31T09:09:22Z,2020-02-15T06:59:55Z +13346,495,2,10065,4.99,2005-07-31T19:27:34Z,2020-02-15T06:59:55Z +13347,495,2,10643,5.99,2005-08-01T15:48:33Z,2020-02-15T06:59:55Z +13348,495,1,10783,4.99,2005-08-01T21:23:37Z,2020-02-15T06:59:55Z +13349,495,1,12782,5.99,2005-08-18T23:56:23Z,2020-02-15T06:59:55Z +13350,495,2,12837,0.99,2005-08-19T01:51:09Z,2020-02-15T06:59:55Z +13351,495,2,13205,3.99,2005-08-19T15:05:26Z,2020-02-15T06:59:55Z +13352,495,2,13445,2.99,2005-08-20T00:05:33Z,2020-02-15T06:59:55Z +13353,495,2,13818,4.99,2005-08-20T13:20:09Z,2020-02-15T06:59:55Z +13354,495,1,15984,2.99,2005-08-23T20:16:27Z,2020-02-15T06:59:55Z +13355,495,2,13753,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13356,496,2,322,4.99,2005-05-27T00:47:35Z,2020-02-15T06:59:55Z +13357,496,2,966,0.99,2005-05-30T19:00:37Z,2020-02-15T06:59:55Z +13358,496,1,2567,2.99,2005-06-19T04:04:46Z,2020-02-15T06:59:55Z +13359,496,2,3569,3.99,2005-07-06T03:17:23Z,2020-02-15T06:59:55Z +13360,496,1,4070,2.99,2005-07-07T04:37:09Z,2020-02-15T06:59:55Z +13361,496,1,4261,4.99,2005-07-07T14:23:56Z,2020-02-15T06:59:55Z +13362,496,1,4269,0.99,2005-07-07T14:38:33Z,2020-02-15T06:59:55Z +13363,496,1,5559,5.99,2005-07-10T03:13:07Z,2020-02-15T06:59:55Z +13364,496,2,5949,4.99,2005-07-10T23:13:00Z,2020-02-15T06:59:55Z +13365,496,1,7133,2.99,2005-07-27T06:29:23Z,2020-02-15T06:59:55Z +13366,496,2,8221,2.99,2005-07-28T23:47:19Z,2020-02-15T06:59:55Z +13367,496,1,11060,7.99,2005-08-02T06:48:18Z,2020-02-15T06:59:55Z +13368,496,2,11448,4.99,2005-08-02T20:44:33Z,2020-02-15T06:59:55Z +13369,496,1,11893,3.99,2005-08-17T15:13:29Z,2020-02-15T06:59:55Z +13370,496,2,12605,4.99,2005-08-18T16:59:37Z,2020-02-15T06:59:55Z +13371,496,1,13569,5.99,2005-08-20T05:02:59Z,2020-02-15T06:59:55Z +13372,496,2,14013,6.99,2005-08-20T20:42:50Z,2020-02-15T06:59:55Z +13373,496,1,14332,7.99,2005-08-21T08:30:43Z,2020-02-15T06:59:55Z +13374,496,1,14348,0.99,2005-08-21T08:54:26Z,2020-02-15T06:59:55Z +13375,496,2,15750,2.99,2005-08-23T12:36:05Z,2020-02-15T06:59:55Z +13376,496,1,13182,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13377,497,1,1100,7.99,2005-05-31T14:03:21Z,2020-02-15T06:59:55Z +13378,497,2,2180,8.99,2005-06-18T00:47:43Z,2020-02-15T06:59:55Z +13379,497,1,2298,5.99,2005-06-18T08:18:29Z,2020-02-15T06:59:55Z +13380,497,1,2406,2.99,2005-06-18T16:39:37Z,2020-02-15T06:59:55Z +13381,497,2,2818,4.99,2005-06-19T20:05:52Z,2020-02-15T06:59:55Z +13382,497,1,3696,2.99,2005-07-06T10:04:55Z,2020-02-15T06:59:55Z +13383,497,2,4218,7.99,2005-07-07T12:10:24Z,2020-02-15T06:59:55Z +13384,497,1,4516,4.99,2005-07-08T02:43:41Z,2020-02-15T06:59:55Z +13385,497,1,4578,0.99,2005-07-08T06:00:17Z,2020-02-15T06:59:55Z +13386,497,2,4795,0.99,2005-07-08T16:32:54Z,2020-02-15T06:59:55Z +13387,497,1,5030,4.99,2005-07-09T02:35:43Z,2020-02-15T06:59:55Z +13388,497,1,5239,4.99,2005-07-09T13:12:35Z,2020-02-15T06:59:55Z +13389,497,2,7603,2.99,2005-07-27T23:54:44Z,2020-02-15T06:59:55Z +13390,497,2,8011,2.99,2005-07-28T15:26:39Z,2020-02-15T06:59:55Z +13391,497,1,8150,6.99,2005-07-28T20:50:41Z,2020-02-15T06:59:55Z +13392,497,2,8813,6.99,2005-07-29T21:47:55Z,2020-02-15T06:59:55Z +13393,497,2,8867,4.99,2005-07-30T00:02:18Z,2020-02-15T06:59:55Z +13394,497,1,9273,9.99,2005-07-30T15:05:36Z,2020-02-15T06:59:55Z +13395,497,2,9850,4.99,2005-07-31T12:46:52Z,2020-02-15T06:59:55Z +13396,497,2,10760,7.99,2005-08-01T20:25:20Z,2020-02-15T06:59:55Z +13397,497,1,12123,0.99,2005-08-17T23:22:18Z,2020-02-15T06:59:55Z +13398,497,1,13159,4.99,2005-08-19T13:19:59Z,2020-02-15T06:59:55Z +13399,497,1,13289,2.99,2005-08-19T18:31:30Z,2020-02-15T06:59:55Z +13400,497,2,14134,0.99,2005-08-21T01:45:54Z,2020-02-15T06:59:55Z +13401,497,1,15362,5.99,2005-08-22T21:40:20Z,2020-02-15T06:59:55Z +13402,497,2,15633,0.99,2005-08-23T07:31:10Z,2020-02-15T06:59:55Z +13403,497,1,15919,0.99,2005-08-23T18:01:31Z,2020-02-15T06:59:55Z +13404,497,1,12698,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13405,498,2,49,2.99,2005-05-25T06:39:35Z,2020-02-15T06:59:55Z +13406,498,1,429,8.99,2005-05-27T16:21:26Z,2020-02-15T06:59:55Z +13407,498,2,718,2.99,2005-05-29T04:52:23Z,2020-02-15T06:59:55Z +13408,498,1,1253,6.99,2005-06-15T06:06:33Z,2020-02-15T06:59:55Z +13409,498,1,1782,2.99,2005-06-16T19:21:12Z,2020-02-15T06:59:55Z +13410,498,1,2344,2.99,2005-06-18T12:01:47Z,2020-02-15T06:59:55Z +13411,498,1,2449,4.99,2005-06-18T19:18:36Z,2020-02-15T06:59:55Z +13412,498,1,3098,0.99,2005-06-20T16:37:01Z,2020-02-15T06:59:55Z +13413,498,2,3360,0.99,2005-06-21T12:12:41Z,2020-02-15T06:59:55Z +13414,498,2,3828,0.99,2005-07-06T15:57:30Z,2020-02-15T06:59:55Z +13415,498,2,3856,2.99,2005-07-06T17:04:46Z,2020-02-15T06:59:55Z +13416,498,1,4311,4.99,2005-07-07T17:31:14Z,2020-02-15T06:59:55Z +13417,498,2,4972,2.99,2005-07-08T23:56:09Z,2020-02-15T06:59:55Z +13418,498,1,5286,2.99,2005-07-09T15:11:41Z,2020-02-15T06:59:55Z +13419,498,2,5884,0.99,2005-07-10T19:31:38Z,2020-02-15T06:59:55Z +13420,498,1,6058,2.99,2005-07-11T04:03:51Z,2020-02-15T06:59:55Z +13421,498,1,6088,1.99,2005-07-11T05:40:35Z,2020-02-15T06:59:55Z +13422,498,1,7285,4.99,2005-07-27T12:14:06Z,2020-02-15T06:59:55Z +13423,498,1,7286,6.99,2005-07-27T12:23:49Z,2020-02-15T06:59:55Z +13424,498,1,7341,4.99,2005-07-27T14:23:55Z,2020-02-15T06:59:55Z +13425,498,2,8020,4.99,2005-07-28T15:43:32Z,2020-02-15T06:59:55Z +13426,498,1,8229,2.99,2005-07-29T00:09:08Z,2020-02-15T06:59:55Z +13427,498,2,9021,0.99,2005-07-30T05:34:24Z,2020-02-15T06:59:55Z +13428,498,2,9689,4.99,2005-07-31T07:00:08Z,2020-02-15T06:59:55Z +13429,498,1,10225,0.99,2005-08-01T01:38:40Z,2020-02-15T06:59:55Z +13430,498,1,11455,6.99,2005-08-02T21:07:06Z,2020-02-15T06:59:55Z +13431,498,1,12893,2.99,2005-08-19T03:46:43Z,2020-02-15T06:59:55Z +13432,499,2,89,2.99,2005-05-25T14:28:29Z,2020-02-15T06:59:55Z +13433,499,1,1355,2.99,2005-06-15T13:13:59Z,2020-02-15T06:59:55Z +13434,499,2,1526,4.99,2005-06-16T00:27:51Z,2020-02-15T06:59:55Z +13435,499,2,1830,4.99,2005-06-16T22:18:43Z,2020-02-15T06:59:55Z +13436,499,2,3241,1.99,2005-06-21T02:54:32Z,2020-02-15T06:59:55Z +13437,499,1,3794,4.99,2005-07-06T14:35:26Z,2020-02-15T06:59:55Z +13438,499,1,5022,2.99,2005-07-09T02:10:54Z,2020-02-15T06:59:55Z +13439,499,2,5392,2.99,2005-07-09T19:32:30Z,2020-02-15T06:59:55Z +13440,499,2,5427,3.99,2005-07-09T21:12:26Z,2020-02-15T06:59:55Z +13441,499,1,5956,4.99,2005-07-10T23:23:08Z,2020-02-15T06:59:55Z +13442,499,2,6723,4.99,2005-07-12T13:44:57Z,2020-02-15T06:59:55Z +13443,499,1,7800,0.99,2005-07-28T07:50:59Z,2020-02-15T06:59:55Z +13444,499,1,7831,0.99,2005-07-28T08:44:21Z,2020-02-15T06:59:55Z +13445,499,1,7898,6.99,2005-07-28T11:08:22Z,2020-02-15T06:59:55Z +13446,499,2,8130,4.99,2005-07-28T19:48:15Z,2020-02-15T06:59:55Z +13447,499,1,8770,3.99,2005-07-29T19:53:50Z,2020-02-15T06:59:55Z +13448,499,1,9588,0.99,2005-07-31T03:13:13Z,2020-02-15T06:59:55Z +13449,499,2,10333,0.99,2005-08-01T04:58:32Z,2020-02-15T06:59:55Z +13450,499,2,10497,2.99,2005-08-01T10:55:59Z,2020-02-15T06:59:55Z +13451,499,1,11513,7.99,2005-08-16T23:51:33Z,2020-02-15T06:59:55Z +13452,499,2,11606,0.99,2005-08-17T03:32:43Z,2020-02-15T06:59:55Z +13453,499,2,11978,4.99,2005-08-17T18:02:10Z,2020-02-15T06:59:55Z +13454,499,1,12004,8.99,2005-08-17T18:56:53Z,2020-02-15T06:59:55Z +13455,499,1,12354,7.99,2005-08-18T07:34:07Z,2020-02-15T06:59:55Z +13456,499,1,12436,3.99,2005-08-18T10:41:05Z,2020-02-15T06:59:55Z +13457,499,1,12587,1.99,2005-08-18T16:03:13Z,2020-02-15T06:59:55Z +13458,499,2,12947,4.99,2005-08-19T05:54:21Z,2020-02-15T06:59:55Z +13459,499,2,13822,3.99,2005-08-20T13:39:28Z,2020-02-15T06:59:55Z +13460,499,1,14858,3.99,2005-08-22T02:46:18Z,2020-02-15T06:59:55Z +13461,499,1,15587,7.99,2005-08-23T06:00:28Z,2020-02-15T06:59:55Z +13462,500,1,112,8.99,2005-05-25T18:57:24Z,2020-02-15T06:59:55Z +13463,500,1,389,8.99,2005-05-27T10:45:41Z,2020-02-15T06:59:55Z +13464,500,1,610,0.99,2005-05-28T15:15:25Z,2020-02-15T06:59:55Z +13465,500,1,1375,5.99,2005-06-15T14:54:56Z,2020-02-15T06:59:55Z +13466,500,2,1388,5.99,2005-06-15T15:48:41Z,2020-02-15T06:59:55Z +13467,500,2,2189,3.99,2005-06-18T01:20:26Z,2020-02-15T06:59:55Z +13468,500,2,2526,6.99,2005-06-19T01:03:07Z,2020-02-15T06:59:55Z +13469,500,1,2996,2.99,2005-06-20T09:20:29Z,2020-02-15T06:59:55Z +13470,500,2,3926,4.99,2005-07-06T20:42:35Z,2020-02-15T06:59:55Z +13471,500,1,4561,0.99,2005-07-08T05:02:43Z,2020-02-15T06:59:55Z +13472,500,2,4790,4.99,2005-07-08T16:25:27Z,2020-02-15T06:59:55Z +13473,500,2,6018,4.99,2005-07-11T02:06:36Z,2020-02-15T06:59:55Z +13474,500,2,6187,2.99,2005-07-11T11:28:51Z,2020-02-15T06:59:55Z +13475,500,2,6801,3.99,2005-07-12T17:09:08Z,2020-02-15T06:59:55Z +13476,500,1,7857,0.99,2005-07-28T09:49:40Z,2020-02-15T06:59:55Z +13477,500,1,7925,2.99,2005-07-28T12:10:02Z,2020-02-15T06:59:55Z +13478,500,1,8538,6.99,2005-07-29T10:45:17Z,2020-02-15T06:59:55Z +13479,500,1,8925,0.99,2005-07-30T02:09:14Z,2020-02-15T06:59:55Z +13480,500,2,9290,3.99,2005-07-30T15:59:08Z,2020-02-15T06:59:55Z +13481,500,1,10947,6.99,2005-08-02T03:23:17Z,2020-02-15T06:59:55Z +13482,500,2,11218,1.99,2005-08-02T12:29:12Z,2020-02-15T06:59:55Z +13483,500,1,12639,2.99,2005-08-18T18:13:05Z,2020-02-15T06:59:55Z +13484,500,2,12813,2.99,2005-08-19T00:54:22Z,2020-02-15T06:59:55Z +13485,500,2,13628,4.99,2005-08-20T07:03:53Z,2020-02-15T06:59:55Z +13486,500,1,14407,0.99,2005-08-21T10:46:51Z,2020-02-15T06:59:55Z +13487,500,1,14964,4.99,2005-08-22T06:39:24Z,2020-02-15T06:59:55Z +13488,500,1,15584,2.99,2005-08-23T05:49:21Z,2020-02-15T06:59:55Z +13489,500,1,15853,2.99,2005-08-23T15:54:20Z,2020-02-15T06:59:55Z +13490,501,1,493,0.99,2005-05-28T00:34:11Z,2020-02-15T06:59:55Z +13491,501,1,605,1.99,2005-05-28T14:39:10Z,2020-02-15T06:59:55Z +13492,501,2,3222,5.99,2005-06-21T01:50:29Z,2020-02-15T06:59:55Z +13493,501,1,3412,7.99,2005-06-21T16:44:31Z,2020-02-15T06:59:55Z +13494,501,2,3541,6.99,2005-07-06T01:50:11Z,2020-02-15T06:59:55Z +13495,501,2,3723,6.99,2005-07-06T11:12:02Z,2020-02-15T06:59:55Z +13496,501,2,4769,2.99,2005-07-08T15:29:16Z,2020-02-15T06:59:55Z +13497,501,2,5520,1.99,2005-07-10T01:30:41Z,2020-02-15T06:59:55Z +13498,501,2,6095,7.99,2005-07-11T06:06:41Z,2020-02-15T06:59:55Z +13499,501,1,7456,0.99,2005-07-27T18:34:53Z,2020-02-15T06:59:55Z +13500,501,1,8021,2.99,2005-07-28T15:45:24Z,2020-02-15T06:59:55Z +13501,501,2,8529,2.99,2005-07-29T10:24:31Z,2020-02-15T06:59:55Z +13502,501,1,9359,2.99,2005-07-30T18:39:28Z,2020-02-15T06:59:55Z +13503,501,1,10817,4.99,2005-08-01T22:51:08Z,2020-02-15T06:59:55Z +13504,501,2,11393,4.99,2005-08-02T18:44:29Z,2020-02-15T06:59:55Z +13505,501,1,11640,1.99,2005-08-17T04:44:33Z,2020-02-15T06:59:55Z +13506,501,2,11799,6.99,2005-08-17T11:25:25Z,2020-02-15T06:59:55Z +13507,501,1,12914,4.99,2005-08-19T04:25:59Z,2020-02-15T06:59:55Z +13508,501,2,13889,0.99,2005-08-20T15:40:06Z,2020-02-15T06:59:55Z +13509,501,1,15239,4.99,2005-08-22T17:46:17Z,2020-02-15T06:59:55Z +13510,501,1,15699,5.99,2005-08-23T10:20:35Z,2020-02-15T06:59:55Z +13511,502,2,258,2.99,2005-05-26T15:28:14Z,2020-02-15T06:59:55Z +13512,502,1,861,0.99,2005-05-30T02:48:32Z,2020-02-15T06:59:55Z +13513,502,1,893,2.99,2005-05-30T08:06:59Z,2020-02-15T06:59:55Z +13514,502,2,965,0.99,2005-05-30T19:00:14Z,2020-02-15T06:59:55Z +13515,502,2,1696,7.99,2005-06-16T12:50:01Z,2020-02-15T06:59:55Z +13516,502,2,2420,0.99,2005-06-18T17:22:28Z,2020-02-15T06:59:55Z +13517,502,1,2911,0.99,2005-06-20T03:32:37Z,2020-02-15T06:59:55Z +13518,502,2,3614,2.99,2005-07-06T05:46:05Z,2020-02-15T06:59:55Z +13519,502,1,4606,2.99,2005-07-08T07:05:50Z,2020-02-15T06:59:55Z +13520,502,2,5368,5.99,2005-07-09T18:41:59Z,2020-02-15T06:59:55Z +13521,502,2,5662,2.99,2005-07-10T07:59:24Z,2020-02-15T06:59:55Z +13522,502,2,6414,7.99,2005-07-11T23:26:13Z,2020-02-15T06:59:55Z +13523,502,1,6760,8.99,2005-07-12T15:16:00Z,2020-02-15T06:59:55Z +13524,502,2,6828,2.99,2005-07-12T18:38:51Z,2020-02-15T06:59:55Z +13525,502,2,6924,8.99,2005-07-26T22:51:53Z,2020-02-15T06:59:55Z +13526,502,2,7213,3.99,2005-07-27T09:22:29Z,2020-02-15T06:59:55Z +13527,502,1,7255,4.99,2005-07-27T10:49:54Z,2020-02-15T06:59:55Z +13528,502,1,7757,4.99,2005-07-28T06:23:00Z,2020-02-15T06:59:55Z +13529,502,1,7884,4.99,2005-07-28T10:37:24Z,2020-02-15T06:59:55Z +13530,502,2,8034,4.99,2005-07-28T16:20:26Z,2020-02-15T06:59:55Z +13531,502,2,9232,0.99,2005-07-30T13:43:00Z,2020-02-15T06:59:55Z +13532,502,1,9599,4.99,2005-07-31T03:32:06Z,2020-02-15T06:59:55Z +13533,502,2,10390,4.99,2005-08-01T06:46:48Z,2020-02-15T06:59:55Z +13534,502,1,10938,0.99,2005-08-02T03:05:22Z,2020-02-15T06:59:55Z +13535,502,2,11036,4.99,2005-08-02T05:56:29Z,2020-02-15T06:59:55Z +13536,502,1,11301,0.99,2005-08-02T15:37:59Z,2020-02-15T06:59:55Z +13537,502,1,11317,4.99,2005-08-02T16:08:52Z,2020-02-15T06:59:55Z +13538,502,1,11435,0.99,2005-08-02T20:14:23Z,2020-02-15T06:59:55Z +13539,502,1,11620,0.99,2005-08-17T04:06:22Z,2020-02-15T06:59:55Z +13540,502,1,12762,4.99,2005-08-18T23:06:54Z,2020-02-15T06:59:55Z +13541,502,1,13052,9.99,2005-08-19T09:31:42Z,2020-02-15T06:59:55Z +13542,502,1,14411,4.99,2005-08-21T10:54:57Z,2020-02-15T06:59:55Z +13543,502,1,15486,3.99,2005-08-23T02:05:20Z,2020-02-15T06:59:55Z +13544,502,1,16034,3.99,2005-08-23T22:06:34Z,2020-02-15T06:59:55Z +13545,503,2,109,1.99,2005-05-25T18:40:20Z,2020-02-15T06:59:55Z +13546,503,1,353,5.99,2005-05-27T06:03:39Z,2020-02-15T06:59:55Z +13547,503,1,631,2.99,2005-05-28T17:36:32Z,2020-02-15T06:59:55Z +13548,503,1,1074,4.99,2005-05-31T10:04:42Z,2020-02-15T06:59:55Z +13549,503,2,2108,4.99,2005-06-17T19:35:26Z,2020-02-15T06:59:55Z +13550,503,1,2225,2.99,2005-06-18T03:35:40Z,2020-02-15T06:59:55Z +13551,503,2,3430,0.99,2005-06-21T18:46:08Z,2020-02-15T06:59:55Z +13552,503,2,3935,6.99,2005-07-06T21:08:29Z,2020-02-15T06:59:55Z +13553,503,2,4570,2.99,2005-07-08T05:33:59Z,2020-02-15T06:59:55Z +13554,503,2,5465,2.99,2005-07-09T23:01:13Z,2020-02-15T06:59:55Z +13555,503,1,5925,6.99,2005-07-10T21:41:27Z,2020-02-15T06:59:55Z +13556,503,1,6166,4.99,2005-07-11T10:19:05Z,2020-02-15T06:59:55Z +13557,503,1,6529,2.99,2005-07-12T04:31:04Z,2020-02-15T06:59:55Z +13558,503,2,6950,4.99,2005-07-26T23:45:33Z,2020-02-15T06:59:55Z +13559,503,1,8178,2.99,2005-07-28T21:54:31Z,2020-02-15T06:59:55Z +13560,503,2,9725,0.99,2005-07-31T08:35:18Z,2020-02-15T06:59:55Z +13561,503,1,9974,4.99,2005-07-31T16:51:11Z,2020-02-15T06:59:55Z +13562,503,2,11075,2.99,2005-08-02T07:24:23Z,2020-02-15T06:59:55Z +13563,503,1,11161,1.99,2005-08-02T10:05:57Z,2020-02-15T06:59:55Z +13564,503,1,11858,4.99,2005-08-17T13:50:31Z,2020-02-15T06:59:55Z +13565,503,2,12370,2.99,2005-08-18T07:57:47Z,2020-02-15T06:59:55Z +13566,503,2,12783,4.99,2005-08-19T00:01:14Z,2020-02-15T06:59:55Z +13567,503,1,13332,2.99,2005-08-19T20:00:51Z,2020-02-15T06:59:55Z +13568,503,1,13551,2.99,2005-08-20T04:00:30Z,2020-02-15T06:59:55Z +13569,503,1,14823,0.99,2005-08-22T01:24:42Z,2020-02-15T06:59:55Z +13570,503,1,14913,2.99,2005-08-22T04:52:13Z,2020-02-15T06:59:55Z +13571,503,2,15056,4.99,2005-08-22T10:15:54Z,2020-02-15T06:59:55Z +13572,503,2,15077,2.99,2005-08-22T11:09:18Z,2020-02-15T06:59:55Z +13573,503,1,15588,3.99,2005-08-23T06:02:35Z,2020-02-15T06:59:55Z +13574,503,1,15692,4.99,2005-08-23T10:00:02Z,2020-02-15T06:59:55Z +13575,503,1,15726,2.99,2005-08-23T11:28:26Z,2020-02-15T06:59:55Z +13576,503,1,15797,0.99,2005-08-23T14:13:47Z,2020-02-15T06:59:55Z +13577,504,2,136,5.99,2005-05-25T22:02:30Z,2020-02-15T06:59:55Z +13578,504,2,470,4.99,2005-05-27T21:17:08Z,2020-02-15T06:59:55Z +13579,504,1,838,4.99,2005-05-30T00:27:57Z,2020-02-15T06:59:55Z +13580,504,1,2720,1.99,2005-06-19T14:51:55Z,2020-02-15T06:59:55Z +13581,504,1,2938,6.99,2005-06-20T05:17:22Z,2020-02-15T06:59:55Z +13582,504,2,3712,9.99,2005-07-06T10:47:35Z,2020-02-15T06:59:55Z +13583,504,1,3713,6.99,2005-07-06T10:49:30Z,2020-02-15T06:59:55Z +13584,504,1,4329,5.99,2005-07-07T18:04:16Z,2020-02-15T06:59:55Z +13585,504,1,4757,0.99,2005-07-08T14:36:51Z,2020-02-15T06:59:55Z +13586,504,2,5153,6.99,2005-07-09T08:35:05Z,2020-02-15T06:59:55Z +13587,504,2,7342,3.99,2005-07-27T14:25:17Z,2020-02-15T06:59:55Z +13588,504,1,7567,2.99,2005-07-27T22:38:05Z,2020-02-15T06:59:55Z +13589,504,2,7807,2.99,2005-07-28T07:58:27Z,2020-02-15T06:59:55Z +13590,504,2,7875,1.99,2005-07-28T10:23:48Z,2020-02-15T06:59:55Z +13591,504,2,7944,4.99,2005-07-28T12:51:22Z,2020-02-15T06:59:55Z +13592,504,1,8393,9.99,2005-07-29T06:02:11Z,2020-02-15T06:59:55Z +13593,504,2,10397,0.99,2005-08-01T07:11:27Z,2020-02-15T06:59:55Z +13594,504,2,10509,3.99,2005-08-01T11:25:28Z,2020-02-15T06:59:55Z +13595,504,2,11569,2.99,2005-08-17T01:31:04Z,2020-02-15T06:59:55Z +13596,504,1,12769,1.99,2005-08-18T23:26:40Z,2020-02-15T06:59:55Z +13597,504,1,13166,2.99,2005-08-19T13:36:28Z,2020-02-15T06:59:55Z +13598,504,2,13206,2.99,2005-08-19T15:05:34Z,2020-02-15T06:59:55Z +13599,504,2,13387,2.99,2005-08-19T21:46:10Z,2020-02-15T06:59:55Z +13600,504,2,13859,5.99,2005-08-20T14:53:43Z,2020-02-15T06:59:55Z +13601,504,2,15018,4.99,2005-08-22T08:52:38Z,2020-02-15T06:59:55Z +13602,504,1,15166,6.99,2005-08-22T15:05:37Z,2020-02-15T06:59:55Z +13603,504,1,15723,8.99,2005-08-23T11:17:26Z,2020-02-15T06:59:55Z +13604,504,2,16022,4.99,2005-08-23T21:44:27Z,2020-02-15T06:59:55Z +13605,505,1,159,2.99,2005-05-26T01:34:28Z,2020-02-15T06:59:55Z +13606,505,1,645,2.99,2005-05-28T19:14:09Z,2020-02-15T06:59:55Z +13607,505,2,1799,5.99,2005-06-16T20:17:20Z,2020-02-15T06:59:55Z +13608,505,2,1886,4.99,2005-06-17T03:36:02Z,2020-02-15T06:59:55Z +13609,505,1,2773,7.99,2005-06-19T18:04:18Z,2020-02-15T06:59:55Z +13610,505,1,3137,5.99,2005-06-20T19:41:28Z,2020-02-15T06:59:55Z +13611,505,2,4008,5.99,2005-07-07T00:26:43Z,2020-02-15T06:59:55Z +13612,505,1,4507,6.99,2005-07-08T02:22:45Z,2020-02-15T06:59:55Z +13613,505,2,5976,9.99,2005-07-11T00:16:35Z,2020-02-15T06:59:55Z +13614,505,2,6292,4.99,2005-07-11T17:23:33Z,2020-02-15T06:59:55Z +13615,505,1,6441,0.99,2005-07-12T00:27:08Z,2020-02-15T06:59:55Z +13616,505,1,7784,4.99,2005-07-28T07:15:32Z,2020-02-15T06:59:55Z +13617,505,2,10219,5.99,2005-08-01T01:10:33Z,2020-02-15T06:59:55Z +13618,505,1,10896,2.99,2005-08-02T01:19:33Z,2020-02-15T06:59:55Z +13619,505,1,11163,0.99,2005-08-02T10:08:40Z,2020-02-15T06:59:55Z +13620,505,1,11907,2.99,2005-08-17T15:40:47Z,2020-02-15T06:59:55Z +13621,505,2,13612,3.99,2005-08-20T06:22:08Z,2020-02-15T06:59:55Z +13622,505,1,14398,2.99,2005-08-21T10:27:21Z,2020-02-15T06:59:55Z +13623,505,1,14802,2.99,2005-08-22T00:48:23Z,2020-02-15T06:59:55Z +13624,505,1,15436,4.99,2005-08-23T00:30:26Z,2020-02-15T06:59:55Z +13625,505,2,15867,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13626,506,1,114,3.99,2005-05-25T19:12:42Z,2020-02-15T06:59:55Z +13627,506,2,387,2.99,2005-05-27T10:35:27Z,2020-02-15T06:59:55Z +13628,506,2,410,3.99,2005-05-27T14:11:22Z,2020-02-15T06:59:55Z +13629,506,1,547,8.99,2005-05-28T07:24:28Z,2020-02-15T06:59:55Z +13630,506,2,907,0.99,2005-05-30T10:37:27Z,2020-02-15T06:59:55Z +13631,506,1,1042,2.99,2005-05-31T05:53:00Z,2020-02-15T06:59:55Z +13632,506,2,1153,4.99,2005-05-31T21:36:44Z,2020-02-15T06:59:55Z +13633,506,1,1446,6.99,2005-06-15T19:13:45Z,2020-02-15T06:59:55Z +13634,506,1,1467,2.99,2005-06-15T20:47:10Z,2020-02-15T06:59:55Z +13635,506,2,1565,0.99,2005-06-16T03:13:09Z,2020-02-15T06:59:55Z +13636,506,1,2755,9.99,2005-06-19T16:56:31Z,2020-02-15T06:59:55Z +13637,506,2,2824,6.99,2005-06-19T20:31:45Z,2020-02-15T06:59:55Z +13638,506,2,4594,7.99,2005-07-08T06:40:06Z,2020-02-15T06:59:55Z +13639,506,2,4640,6.99,2005-07-08T08:59:34Z,2020-02-15T06:59:55Z +13640,506,2,4806,8.99,2005-07-08T17:01:02Z,2020-02-15T06:59:55Z +13641,506,2,5985,0.99,2005-07-11T00:51:58Z,2020-02-15T06:59:55Z +13642,506,1,6783,2.99,2005-07-12T16:27:56Z,2020-02-15T06:59:55Z +13643,506,1,7020,0.99,2005-07-27T02:24:27Z,2020-02-15T06:59:55Z +13644,506,2,8096,9.99,2005-07-28T18:32:46Z,2020-02-15T06:59:55Z +13645,506,2,8506,0.99,2005-07-29T09:23:52Z,2020-02-15T06:59:55Z +13646,506,2,9654,3.99,2005-07-31T05:57:42Z,2020-02-15T06:59:55Z +13647,506,2,9972,2.99,2005-07-31T16:42:43Z,2020-02-15T06:59:55Z +13648,506,1,10477,2.99,2005-08-01T10:04:17Z,2020-02-15T06:59:55Z +13649,506,1,10873,4.99,2005-08-02T00:30:34Z,2020-02-15T06:59:55Z +13650,506,2,11238,0.99,2005-08-02T13:25:50Z,2020-02-15T06:59:55Z +13651,506,2,11781,4.99,2005-08-17T10:37:00Z,2020-02-15T06:59:55Z +13652,506,1,12994,0.99,2005-08-19T07:26:10Z,2020-02-15T06:59:55Z +13653,506,2,13073,2.99,2005-08-19T10:05:38Z,2020-02-15T06:59:55Z +13654,506,2,13767,0.99,2005-08-20T11:43:36Z,2020-02-15T06:59:55Z +13655,506,1,14074,1.99,2005-08-20T23:16:07Z,2020-02-15T06:59:55Z +13656,506,1,14337,2.99,2005-08-21T08:34:26Z,2020-02-15T06:59:55Z +13657,506,2,14395,6.99,2005-08-21T10:24:00Z,2020-02-15T06:59:55Z +13658,506,2,15022,5.99,2005-08-22T08:55:43Z,2020-02-15T06:59:55Z +13659,506,2,15572,1.99,2005-08-23T05:28:01Z,2020-02-15T06:59:55Z +13660,506,1,15694,9.99,2005-08-23T10:02:46Z,2020-02-15T06:59:55Z +13661,507,1,52,0.99,2005-05-25T06:51:29Z,2020-02-15T06:59:55Z +13662,507,2,713,4.99,2005-05-29T04:10:17Z,2020-02-15T06:59:55Z +13663,507,2,1307,4.99,2005-06-15T10:06:15Z,2020-02-15T06:59:55Z +13664,507,1,2143,4.99,2005-06-17T21:58:13Z,2020-02-15T06:59:55Z +13665,507,2,2283,4.99,2005-06-18T06:56:06Z,2020-02-15T06:59:55Z +13666,507,1,3660,4.99,2005-07-06T08:07:29Z,2020-02-15T06:59:55Z +13667,507,1,3880,2.99,2005-07-06T18:32:49Z,2020-02-15T06:59:55Z +13668,507,2,4440,0.99,2005-07-07T23:00:58Z,2020-02-15T06:59:55Z +13669,507,2,4455,2.99,2005-07-07T23:43:46Z,2020-02-15T06:59:55Z +13670,507,2,4744,0.99,2005-07-08T13:43:57Z,2020-02-15T06:59:55Z +13671,507,2,4901,2.99,2005-07-08T20:44:51Z,2020-02-15T06:59:55Z +13672,507,1,5962,0.99,2005-07-10T23:45:22Z,2020-02-15T06:59:55Z +13673,507,1,6351,6.99,2005-07-11T20:31:44Z,2020-02-15T06:59:55Z +13674,507,1,6396,1.99,2005-07-11T22:31:08Z,2020-02-15T06:59:55Z +13675,507,1,6891,2.99,2005-07-12T21:07:35Z,2020-02-15T06:59:55Z +13676,507,2,7770,5.99,2005-07-28T06:49:35Z,2020-02-15T06:59:55Z +13677,507,1,7970,5.99,2005-07-28T13:58:38Z,2020-02-15T06:59:55Z +13678,507,2,8369,2.99,2005-07-29T05:15:42Z,2020-02-15T06:59:55Z +13679,507,2,8976,2.99,2005-07-30T04:12:32Z,2020-02-15T06:59:55Z +13680,507,1,9003,2.99,2005-07-30T05:02:52Z,2020-02-15T06:59:55Z +13681,507,2,12071,6.99,2005-08-17T21:49:14Z,2020-02-15T06:59:55Z +13682,507,2,12275,4.99,2005-08-18T04:42:02Z,2020-02-15T06:59:55Z +13683,507,1,12343,4.99,2005-08-18T07:15:13Z,2020-02-15T06:59:55Z +13684,507,2,14625,4.99,2005-08-21T18:34:21Z,2020-02-15T06:59:55Z +13685,507,1,15394,2.99,2005-08-22T23:04:21Z,2020-02-15T06:59:55Z +13686,508,1,369,2.99,2005-05-27T07:46:49Z,2020-02-15T06:59:55Z +13687,508,2,921,2.99,2005-05-30T11:53:09Z,2020-02-15T06:59:55Z +13688,508,2,1661,4.99,2005-06-16T10:12:57Z,2020-02-15T06:59:55Z +13689,508,2,5657,9.99,2005-07-10T07:33:43Z,2020-02-15T06:59:55Z +13690,508,2,5978,6.99,2005-07-11T00:16:54Z,2020-02-15T06:59:55Z +13691,508,1,6101,4.99,2005-07-11T06:50:33Z,2020-02-15T06:59:55Z +13692,508,2,6646,0.99,2005-07-12T10:41:34Z,2020-02-15T06:59:55Z +13693,508,2,6929,8.99,2005-07-26T22:59:19Z,2020-02-15T06:59:55Z +13694,508,1,7283,5.99,2005-07-27T12:02:41Z,2020-02-15T06:59:55Z +13695,508,2,7322,3.99,2005-07-27T13:37:26Z,2020-02-15T06:59:55Z +13696,508,2,7327,7.99,2005-07-27T13:53:26Z,2020-02-15T06:59:55Z +13697,508,2,7668,2.99,2005-07-28T02:41:31Z,2020-02-15T06:59:55Z +13698,508,2,7676,4.99,2005-07-28T02:55:27Z,2020-02-15T06:59:55Z +13699,508,2,8191,4.99,2005-07-28T22:47:14Z,2020-02-15T06:59:55Z +13700,508,2,9694,5.99,2005-07-31T07:13:16Z,2020-02-15T06:59:55Z +13701,508,1,9706,2.99,2005-07-31T07:43:19Z,2020-02-15T06:59:55Z +13702,508,2,10128,2.99,2005-07-31T21:40:04Z,2020-02-15T06:59:55Z +13703,508,1,10746,8.99,2005-08-01T19:58:49Z,2020-02-15T06:59:55Z +13704,508,1,11365,2.99,2005-08-02T18:00:09Z,2020-02-15T06:59:55Z +13705,508,2,11447,6.99,2005-08-02T20:36:25Z,2020-02-15T06:59:55Z +13706,508,1,13095,6.99,2005-08-19T10:48:10Z,2020-02-15T06:59:55Z +13707,508,2,13201,2.99,2005-08-19T14:56:05Z,2020-02-15T06:59:55Z +13708,508,1,15010,6.99,2005-08-22T08:30:17Z,2020-02-15T06:59:55Z +13709,508,1,15195,4.99,2005-08-22T16:08:23Z,2020-02-15T06:59:55Z +13710,508,1,14318,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:55Z +13711,509,1,22,4.99,2005-05-25T02:19:23Z,2020-02-15T06:59:55Z +13712,509,1,831,8.99,2005-05-29T22:50:25Z,2020-02-15T06:59:55Z +13713,509,1,1267,2.99,2005-06-15T07:21:21Z,2020-02-15T06:59:55Z +13714,509,2,2919,4.99,2005-06-20T04:10:16Z,2020-02-15T06:59:55Z +13715,509,2,4139,1.99,2005-07-07T08:17:35Z,2020-02-15T06:59:55Z +13716,509,2,4266,4.99,2005-07-07T14:34:50Z,2020-02-15T06:59:55Z +13717,509,2,4832,2.99,2005-07-08T18:07:05Z,2020-02-15T06:59:55Z +13718,509,2,5008,2.99,2005-07-09T01:31:42Z,2020-02-15T06:59:55Z +13719,509,1,6591,5.99,2005-07-12T07:13:46Z,2020-02-15T06:59:55Z +13720,509,1,7848,6.99,2005-07-28T09:24:31Z,2020-02-15T06:59:55Z +13721,509,1,8114,8.99,2005-07-28T19:14:06Z,2020-02-15T06:59:55Z +13722,509,1,8214,5.99,2005-07-28T23:37:57Z,2020-02-15T06:59:55Z +13723,509,2,8240,0.99,2005-07-29T00:33:32Z,2020-02-15T06:59:55Z +13724,509,1,10189,4.99,2005-08-01T00:25:00Z,2020-02-15T06:59:55Z +13725,509,2,10988,5.99,2005-08-02T04:38:17Z,2020-02-15T06:59:55Z +13726,509,1,11814,6.99,2005-08-17T12:09:20Z,2020-02-15T06:59:55Z +13727,509,2,12109,4.99,2005-08-17T22:58:35Z,2020-02-15T06:59:55Z +13728,509,2,14045,4.99,2005-08-20T21:50:11Z,2020-02-15T06:59:55Z +13729,509,2,14994,5.99,2005-08-22T07:52:24Z,2020-02-15T06:59:55Z +13730,509,1,15965,2.99,2005-08-23T19:46:39Z,2020-02-15T06:59:55Z +13731,510,1,75,8.99,2005-05-25T11:13:34Z,2020-02-15T06:59:55Z +13732,510,1,372,5.99,2005-05-27T08:13:58Z,2020-02-15T06:59:55Z +13733,510,2,1118,4.99,2005-05-31T16:23:02Z,2020-02-15T06:59:55Z +13734,510,2,1435,5.99,2005-06-15T18:32:30Z,2020-02-15T06:59:55Z +13735,510,2,1757,0.99,2005-06-16T17:32:24Z,2020-02-15T06:59:55Z +13736,510,2,1925,0.99,2005-06-17T06:16:47Z,2020-02-15T06:59:55Z +13737,510,1,2729,8.99,2005-06-19T15:06:15Z,2020-02-15T06:59:55Z +13738,510,2,2806,0.99,2005-06-19T19:30:48Z,2020-02-15T06:59:55Z +13739,510,2,2817,0.99,2005-06-19T20:05:22Z,2020-02-15T06:59:55Z +13740,510,2,3352,8.99,2005-06-21T11:26:29Z,2020-02-15T06:59:55Z +13741,510,2,3465,5.99,2005-06-21T22:10:01Z,2020-02-15T06:59:55Z +13742,510,2,3744,2.99,2005-07-06T12:10:02Z,2020-02-15T06:59:55Z +13743,510,1,4014,4.99,2005-07-07T00:58:54Z,2020-02-15T06:59:55Z +13744,510,2,5851,4.99,2005-07-10T17:40:47Z,2020-02-15T06:59:55Z +13745,510,1,6531,1.99,2005-07-12T04:35:24Z,2020-02-15T06:59:55Z +13746,510,1,7457,2.99,2005-07-27T18:35:17Z,2020-02-15T06:59:55Z +13747,510,1,7678,8.99,2005-07-28T02:58:16Z,2020-02-15T06:59:55Z +13748,510,2,7794,9.99,2005-07-28T07:28:03Z,2020-02-15T06:59:55Z +13749,510,2,8763,3.99,2005-07-29T19:38:24Z,2020-02-15T06:59:55Z +13750,510,1,8926,4.99,2005-07-30T02:10:31Z,2020-02-15T06:59:55Z +13751,510,1,10131,0.99,2005-07-31T21:45:28Z,2020-02-15T06:59:55Z +13752,510,2,10265,7.99,2005-08-01T03:05:04Z,2020-02-15T06:59:55Z +13753,510,2,11996,4.99,2005-08-17T18:34:37Z,2020-02-15T06:59:55Z +13754,510,1,12317,0.99,2005-08-18T06:17:06Z,2020-02-15T06:59:55Z +13755,510,2,12406,2.99,2005-08-18T09:38:02Z,2020-02-15T06:59:55Z +13756,510,1,15065,4.99,2005-08-22T10:46:44Z,2020-02-15T06:59:55Z +13757,511,1,56,2.99,2005-05-25T08:28:11Z,2020-02-15T06:59:55Z +13758,511,1,819,3.99,2005-05-29T21:00:32Z,2020-02-15T06:59:55Z +13759,511,2,1281,2.99,2005-06-15T08:21:39Z,2020-02-15T06:59:55Z +13760,511,1,1508,2.99,2005-06-15T22:33:24Z,2020-02-15T06:59:55Z +13761,511,2,2966,10.99,2005-06-20T07:39:33Z,2020-02-15T06:59:55Z +13762,511,2,3366,4.99,2005-06-21T13:03:37Z,2020-02-15T06:59:55Z +13763,511,2,3600,4.99,2005-07-06T05:19:42Z,2020-02-15T06:59:55Z +13764,511,1,3852,0.99,2005-07-06T16:57:49Z,2020-02-15T06:59:55Z +13765,511,1,4482,4.99,2005-07-08T01:01:18Z,2020-02-15T06:59:55Z +13766,511,2,5164,3.99,2005-07-09T09:03:14Z,2020-02-15T06:59:55Z +13767,511,1,5601,0.99,2005-07-10T04:56:55Z,2020-02-15T06:59:55Z +13768,511,2,6040,0.99,2005-07-11T03:14:26Z,2020-02-15T06:59:55Z +13769,511,1,6320,0.99,2005-07-11T18:50:55Z,2020-02-15T06:59:55Z +13770,511,1,8026,4.99,2005-07-28T16:05:38Z,2020-02-15T06:59:55Z +13771,511,1,9095,0.99,2005-07-30T08:38:36Z,2020-02-15T06:59:55Z +13772,511,1,9143,6.99,2005-07-30T10:22:11Z,2020-02-15T06:59:55Z +13773,511,1,9760,4.99,2005-07-31T09:29:33Z,2020-02-15T06:59:55Z +13774,511,1,10231,2.99,2005-08-01T01:50:49Z,2020-02-15T06:59:55Z +13775,511,2,10429,2.99,2005-08-01T08:34:18Z,2020-02-15T06:59:55Z +13776,511,2,12110,6.99,2005-08-17T22:59:46Z,2020-02-15T06:59:55Z +13777,511,1,12920,4.99,2005-08-19T04:32:32Z,2020-02-15T06:59:55Z +13778,511,1,14213,4.99,2005-08-21T04:30:47Z,2020-02-15T06:59:56Z +13779,511,1,14302,6.99,2005-08-21T07:19:57Z,2020-02-15T06:59:56Z +13780,511,1,15172,4.99,2005-08-22T15:25:33Z,2020-02-15T06:59:56Z +13781,512,1,1176,6.99,2005-06-15T00:28:37Z,2020-02-15T06:59:56Z +13782,512,2,2029,4.99,2005-06-17T13:10:59Z,2020-02-15T06:59:56Z +13783,512,1,2364,2.99,2005-06-18T13:37:32Z,2020-02-15T06:59:56Z +13784,512,1,4752,5.99,2005-07-08T14:15:20Z,2020-02-15T06:59:56Z +13785,512,1,4799,0.99,2005-07-08T16:49:27Z,2020-02-15T06:59:56Z +13786,512,1,5064,6.99,2005-07-09T04:38:51Z,2020-02-15T06:59:56Z +13787,512,2,5813,3.99,2005-07-10T15:34:37Z,2020-02-15T06:59:56Z +13788,512,1,7219,2.99,2005-07-27T09:35:36Z,2020-02-15T06:59:56Z +13789,512,1,7507,0.99,2005-07-27T20:31:48Z,2020-02-15T06:59:56Z +13790,512,1,7715,6.99,2005-07-28T04:32:38Z,2020-02-15T06:59:56Z +13791,512,2,8868,4.99,2005-07-30T00:02:26Z,2020-02-15T06:59:56Z +13792,512,1,9055,2.99,2005-07-30T07:13:07Z,2020-02-15T06:59:56Z +13793,512,2,10232,4.99,2005-08-01T01:50:55Z,2020-02-15T06:59:56Z +13794,512,2,10670,3.99,2005-08-01T17:07:16Z,2020-02-15T06:59:56Z +13795,512,2,11818,9.99,2005-08-17T12:22:04Z,2020-02-15T06:59:56Z +13796,512,2,12957,8.99,2005-08-19T06:12:44Z,2020-02-15T06:59:56Z +13797,512,2,13156,4.99,2005-08-19T13:10:42Z,2020-02-15T06:59:56Z +13798,512,2,13771,0.99,2005-08-20T11:47:21Z,2020-02-15T06:59:56Z +13799,512,1,14288,4.99,2005-08-21T06:57:34Z,2020-02-15T06:59:56Z +13800,512,1,14870,2.99,2005-08-22T03:23:20Z,2020-02-15T06:59:56Z +13801,512,1,15153,2.99,2005-08-22T14:26:01Z,2020-02-15T06:59:56Z +13802,512,2,15265,3.99,2005-08-22T18:35:59Z,2020-02-15T06:59:56Z +13803,512,1,15317,3.99,2005-08-22T20:14:13Z,2020-02-15T06:59:56Z +13804,512,2,15733,4.99,2005-08-23T11:37:32Z,2020-02-15T06:59:56Z +13805,512,2,15990,4.99,2005-08-23T20:25:11Z,2020-02-15T06:59:56Z +13806,512,1,12786,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +13807,513,2,993,4.99,2005-05-30T23:54:19Z,2020-02-15T06:59:56Z +13808,513,1,1607,2.99,2005-06-16T06:25:35Z,2020-02-15T06:59:56Z +13809,513,2,2290,7.99,2005-06-18T07:34:37Z,2020-02-15T06:59:56Z +13810,513,2,2737,1.99,2005-06-19T15:48:33Z,2020-02-15T06:59:56Z +13811,513,2,3872,0.99,2005-07-06T18:00:19Z,2020-02-15T06:59:56Z +13812,513,2,4055,2.99,2005-07-07T03:49:13Z,2020-02-15T06:59:56Z +13813,513,2,4178,4.99,2005-07-07T10:14:31Z,2020-02-15T06:59:56Z +13814,513,2,4220,4.99,2005-07-07T12:12:36Z,2020-02-15T06:59:56Z +13815,513,1,5741,7.99,2005-07-10T11:55:40Z,2020-02-15T06:59:56Z +13816,513,1,6027,4.99,2005-07-11T02:26:29Z,2020-02-15T06:59:56Z +13817,513,1,7655,0.99,2005-07-28T02:01:11Z,2020-02-15T06:59:56Z +13818,513,2,8320,4.99,2005-07-29T03:49:58Z,2020-02-15T06:59:56Z +13819,513,1,8350,4.99,2005-07-29T04:50:39Z,2020-02-15T06:59:56Z +13820,513,2,8683,9.99,2005-07-29T16:15:43Z,2020-02-15T06:59:56Z +13821,513,1,8798,5.99,2005-07-29T21:15:38Z,2020-02-15T06:59:56Z +13822,513,2,9862,2.99,2005-07-31T13:05:03Z,2020-02-15T06:59:56Z +13823,513,1,10012,3.99,2005-07-31T18:06:06Z,2020-02-15T06:59:56Z +13824,513,2,11081,2.99,2005-08-02T07:30:14Z,2020-02-15T06:59:56Z +13825,513,1,11165,2.99,2005-08-02T10:12:17Z,2020-02-15T06:59:56Z +13826,513,1,11407,3.99,2005-08-02T19:18:43Z,2020-02-15T06:59:56Z +13827,513,1,11755,3.99,2005-08-17T09:15:35Z,2020-02-15T06:59:56Z +13828,513,1,12559,5.99,2005-08-18T14:53:58Z,2020-02-15T06:59:56Z +13829,513,2,12784,2.99,2005-08-19T00:02:46Z,2020-02-15T06:59:56Z +13830,513,2,12807,4.99,2005-08-19T00:38:46Z,2020-02-15T06:59:56Z +13831,513,1,13596,5.99,2005-08-20T05:58:58Z,2020-02-15T06:59:56Z +13832,513,1,13690,4.99,2005-08-20T09:07:27Z,2020-02-15T06:59:56Z +13833,513,2,14844,7.99,2005-08-22T02:09:12Z,2020-02-15T06:59:56Z +13834,513,1,14875,4.99,2005-08-22T03:34:39Z,2020-02-15T06:59:56Z +13835,513,1,15035,4.99,2005-08-22T09:34:32Z,2020-02-15T06:59:56Z +13836,513,2,15289,6.99,2005-08-22T19:27:24Z,2020-02-15T06:59:56Z +13837,513,2,15545,5.99,2005-08-23T04:20:16Z,2020-02-15T06:59:56Z +13838,514,2,536,4.99,2005-05-28T06:17:33Z,2020-02-15T06:59:56Z +13839,514,2,1692,4.99,2005-06-16T12:30:19Z,2020-02-15T06:59:56Z +13840,514,1,2002,3.99,2005-06-17T11:39:58Z,2020-02-15T06:59:56Z +13841,514,2,2362,0.99,2005-06-18T13:31:15Z,2020-02-15T06:59:56Z +13842,514,1,2789,0.99,2005-06-19T18:48:21Z,2020-02-15T06:59:56Z +13843,514,2,3084,2.99,2005-06-20T15:35:24Z,2020-02-15T06:59:56Z +13844,514,1,3385,0.99,2005-06-21T14:16:48Z,2020-02-15T06:59:56Z +13845,514,2,3668,5.99,2005-07-06T08:36:48Z,2020-02-15T06:59:56Z +13846,514,2,3860,2.99,2005-07-06T17:20:24Z,2020-02-15T06:59:56Z +13847,514,1,7791,4.99,2005-07-28T07:22:51Z,2020-02-15T06:59:56Z +13848,514,1,9038,3.99,2005-07-30T06:23:35Z,2020-02-15T06:59:56Z +13849,514,1,11675,1.99,2005-08-17T05:57:54Z,2020-02-15T06:59:56Z +13850,514,2,12067,4.99,2005-08-17T21:36:47Z,2020-02-15T06:59:56Z +13851,514,1,12293,4.99,2005-08-18T05:13:36Z,2020-02-15T06:59:56Z +13852,514,1,12302,4.99,2005-08-18T05:41:39Z,2020-02-15T06:59:56Z +13853,514,2,12578,0.99,2005-08-18T15:47:11Z,2020-02-15T06:59:56Z +13854,514,1,12752,2.99,2005-08-18T22:33:36Z,2020-02-15T06:59:56Z +13855,514,2,13344,3.99,2005-08-19T20:22:44Z,2020-02-15T06:59:56Z +13856,514,1,14052,0.99,2005-08-20T22:11:46Z,2020-02-15T06:59:56Z +13857,514,1,14386,1.99,2005-08-21T10:06:34Z,2020-02-15T06:59:56Z +13858,514,1,15451,2.99,2005-08-23T00:56:27Z,2020-02-15T06:59:56Z +13859,514,1,15776,5.99,2005-08-23T13:26:01Z,2020-02-15T06:59:56Z +13860,515,2,187,8.99,2005-05-26T05:42:37Z,2020-02-15T06:59:56Z +13861,515,2,292,6.99,2005-05-26T20:22:12Z,2020-02-15T06:59:56Z +13862,515,1,1244,4.99,2005-06-15T05:08:40Z,2020-02-15T06:59:56Z +13863,515,2,1531,5.99,2005-06-16T00:40:34Z,2020-02-15T06:59:56Z +13864,515,2,2003,4.99,2005-06-17T11:40:35Z,2020-02-15T06:59:56Z +13865,515,2,2484,4.99,2005-06-18T21:25:23Z,2020-02-15T06:59:56Z +13866,515,2,2513,0.99,2005-06-18T23:53:15Z,2020-02-15T06:59:56Z +13867,515,2,3063,3.99,2005-06-20T13:52:03Z,2020-02-15T06:59:56Z +13868,515,2,3782,0.99,2005-07-06T13:57:03Z,2020-02-15T06:59:56Z +13869,515,2,4111,6.99,2005-07-07T06:47:56Z,2020-02-15T06:59:56Z +13870,515,2,5216,0.99,2005-07-09T11:54:58Z,2020-02-15T06:59:56Z +13871,515,2,5546,2.99,2005-07-10T02:50:37Z,2020-02-15T06:59:56Z +13872,515,2,5697,4.99,2005-07-10T09:44:44Z,2020-02-15T06:59:56Z +13873,515,2,7429,3.99,2005-07-27T17:24:50Z,2020-02-15T06:59:56Z +13874,515,1,8706,4.99,2005-07-29T17:19:15Z,2020-02-15T06:59:56Z +13875,515,1,10159,4.99,2005-07-31T22:54:30Z,2020-02-15T06:59:56Z +13876,515,2,10716,0.99,2005-08-01T18:53:48Z,2020-02-15T06:59:56Z +13877,515,1,11451,3.99,2005-08-02T20:45:56Z,2020-02-15T06:59:56Z +13878,515,2,11572,4.99,2005-08-17T01:37:55Z,2020-02-15T06:59:56Z +13879,515,1,11691,3.99,2005-08-17T06:51:05Z,2020-02-15T06:59:56Z +13880,515,2,11937,6.99,2005-08-17T16:48:36Z,2020-02-15T06:59:56Z +13881,515,2,12416,2.99,2005-08-18T09:56:48Z,2020-02-15T06:59:56Z +13882,515,1,12486,8.99,2005-08-18T12:42:50Z,2020-02-15T06:59:56Z +13883,515,1,12889,5.99,2005-08-19T03:41:31Z,2020-02-15T06:59:56Z +13884,515,2,14072,4.99,2005-08-20T23:07:10Z,2020-02-15T06:59:56Z +13885,515,2,14378,3.99,2005-08-21T09:50:02Z,2020-02-15T06:59:56Z +13886,515,2,14414,0.99,2005-08-21T11:08:17Z,2020-02-15T06:59:56Z +13887,515,2,15274,4.99,2005-08-22T18:55:52Z,2020-02-15T06:59:56Z +13888,516,2,339,3.99,2005-05-27T03:47:18Z,2020-02-15T06:59:56Z +13889,516,1,571,1.99,2005-05-28T10:17:41Z,2020-02-15T06:59:56Z +13890,516,2,1159,4.99,2005-06-14T22:55:13Z,2020-02-15T06:59:56Z +13891,516,1,1200,1.99,2005-06-15T01:59:51Z,2020-02-15T06:59:56Z +13892,516,1,1718,10.99,2005-06-16T14:52:02Z,2020-02-15T06:59:56Z +13893,516,1,2017,0.99,2005-06-17T12:33:30Z,2020-02-15T06:59:56Z +13894,516,2,3068,0.99,2005-06-20T14:02:22Z,2020-02-15T06:59:56Z +13895,516,1,3431,2.99,2005-06-21T18:46:48Z,2020-02-15T06:59:56Z +13896,516,2,5780,3.99,2005-07-10T13:46:23Z,2020-02-15T06:59:56Z +13897,516,2,6677,6.99,2005-07-12T11:58:14Z,2020-02-15T06:59:56Z +13898,516,1,6858,6.99,2005-07-12T19:53:51Z,2020-02-15T06:59:56Z +13899,516,1,7628,4.99,2005-07-28T00:58:04Z,2020-02-15T06:59:56Z +13900,516,1,7882,4.99,2005-07-28T10:33:42Z,2020-02-15T06:59:56Z +13901,516,2,8396,4.99,2005-07-29T06:07:00Z,2020-02-15T06:59:56Z +13902,516,2,8534,5.99,2005-07-29T10:30:13Z,2020-02-15T06:59:56Z +13903,516,2,8585,2.99,2005-07-29T12:14:18Z,2020-02-15T06:59:56Z +13904,516,2,9243,4.99,2005-07-30T14:06:27Z,2020-02-15T06:59:56Z +13905,516,2,11926,0.99,2005-08-17T16:25:02Z,2020-02-15T06:59:56Z +13906,516,2,11939,1.99,2005-08-17T16:55:57Z,2020-02-15T06:59:56Z +13907,516,1,12535,1.99,2005-08-18T14:05:22Z,2020-02-15T06:59:56Z +13908,516,1,13276,8.99,2005-08-19T17:53:42Z,2020-02-15T06:59:56Z +13909,516,1,14932,0.99,2005-08-22T05:40:39Z,2020-02-15T06:59:56Z +13910,516,1,15526,0.99,2005-08-23T03:44:30Z,2020-02-15T06:59:56Z +13911,516,1,15701,0.99,2005-08-23T10:22:21Z,2020-02-15T06:59:56Z +13912,516,1,12130,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +13913,516,1,12915,0,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +13914,517,2,850,4.99,2005-05-30T01:35:12Z,2020-02-15T06:59:56Z +13915,517,2,1653,4.99,2005-06-16T09:34:45Z,2020-02-15T06:59:56Z +13916,517,1,1809,8.99,2005-06-16T21:00:20Z,2020-02-15T06:59:56Z +13917,517,1,1850,4.99,2005-06-17T00:31:35Z,2020-02-15T06:59:56Z +13918,517,2,2534,2.99,2005-06-19T01:38:39Z,2020-02-15T06:59:56Z +13919,517,1,3113,0.99,2005-06-20T17:56:40Z,2020-02-15T06:59:56Z +13920,517,2,4094,2.99,2005-07-07T06:00:21Z,2020-02-15T06:59:56Z +13921,517,1,4109,4.99,2005-07-07T06:39:43Z,2020-02-15T06:59:56Z +13922,517,1,4369,4.99,2005-07-07T20:01:38Z,2020-02-15T06:59:56Z +13923,517,2,4374,4.99,2005-07-07T20:13:58Z,2020-02-15T06:59:56Z +13924,517,2,4934,0.99,2005-07-08T22:18:42Z,2020-02-15T06:59:56Z +13925,517,1,4993,2.99,2005-07-09T00:49:47Z,2020-02-15T06:59:56Z +13926,517,1,5206,7.99,2005-07-09T11:11:01Z,2020-02-15T06:59:56Z +13927,517,2,5974,5.99,2005-07-11T00:10:37Z,2020-02-15T06:59:56Z +13928,517,2,6594,4.99,2005-07-12T07:25:43Z,2020-02-15T06:59:56Z +13929,517,2,6903,0.99,2005-07-12T21:58:15Z,2020-02-15T06:59:56Z +13930,517,2,7988,3.99,2005-07-28T14:37:18Z,2020-02-15T06:59:56Z +13931,517,1,10063,4.99,2005-07-31T19:25:13Z,2020-02-15T06:59:56Z +13932,517,2,10358,4.99,2005-08-01T05:50:07Z,2020-02-15T06:59:56Z +13933,517,2,10433,4.99,2005-08-01T08:45:56Z,2020-02-15T06:59:56Z +13934,517,1,11684,3.99,2005-08-17T06:27:15Z,2020-02-15T06:59:56Z +13935,517,2,12705,0.99,2005-08-18T20:44:14Z,2020-02-15T06:59:56Z +13936,517,1,13396,0.99,2005-08-19T22:06:09Z,2020-02-15T06:59:56Z +13937,517,2,14190,4.99,2005-08-21T03:35:21Z,2020-02-15T06:59:56Z +13938,517,1,15559,5.99,2005-08-23T04:55:05Z,2020-02-15T06:59:56Z +13939,518,1,710,2.99,2005-05-29T03:48:36Z,2020-02-15T06:59:56Z +13940,518,2,1552,5.99,2005-06-16T02:01:37Z,2020-02-15T06:59:56Z +13941,518,2,3311,0.99,2005-06-21T08:05:27Z,2020-02-15T06:59:56Z +13942,518,1,3652,0.99,2005-07-06T07:44:30Z,2020-02-15T06:59:56Z +13943,518,2,4029,7.99,2005-07-07T02:19:44Z,2020-02-15T06:59:56Z +13944,518,2,4661,4.99,2005-07-08T09:55:06Z,2020-02-15T06:59:56Z +13945,518,2,4948,6.99,2005-07-08T22:54:21Z,2020-02-15T06:59:56Z +13946,518,1,6652,2.99,2005-07-12T10:59:38Z,2020-02-15T06:59:56Z +13947,518,1,6957,2.99,2005-07-27T00:00:00Z,2020-02-15T06:59:56Z +13948,518,2,7038,3.99,2005-07-27T03:07:29Z,2020-02-15T06:59:56Z +13949,518,2,7154,4.99,2005-07-27T07:16:17Z,2020-02-15T06:59:56Z +13950,518,2,7382,2.99,2005-07-27T15:43:15Z,2020-02-15T06:59:56Z +13951,518,1,7657,2.99,2005-07-28T02:09:00Z,2020-02-15T06:59:56Z +13952,518,2,7839,6.99,2005-07-28T09:01:13Z,2020-02-15T06:59:56Z +13953,518,1,8107,3.99,2005-07-28T19:03:16Z,2020-02-15T06:59:56Z +13954,518,1,8397,2.99,2005-07-29T06:09:35Z,2020-02-15T06:59:56Z +13955,518,1,10751,5.99,2005-08-01T20:06:10Z,2020-02-15T06:59:56Z +13956,518,2,11433,3.99,2005-08-02T20:13:10Z,2020-02-15T06:59:56Z +13957,518,2,12450,2.99,2005-08-18T11:04:04Z,2020-02-15T06:59:56Z +13958,518,2,12681,2.99,2005-08-18T19:48:06Z,2020-02-15T06:59:56Z +13959,518,1,13065,4.99,2005-08-19T09:48:52Z,2020-02-15T06:59:56Z +13960,518,1,13539,6.99,2005-08-20T03:40:27Z,2020-02-15T06:59:56Z +13961,518,1,14088,6.99,2005-08-20T23:57:24Z,2020-02-15T06:59:56Z +13962,518,1,14149,4.99,2005-08-21T02:22:47Z,2020-02-15T06:59:56Z +13963,518,2,14980,0.99,2005-08-22T07:16:45Z,2020-02-15T06:59:56Z +13964,518,2,15434,4.99,2005-08-23T00:28:16Z,2020-02-15T06:59:56Z +13965,519,1,1056,3.99,2005-05-31T07:48:07Z,2020-02-15T06:59:56Z +13966,519,1,1941,2.99,2005-06-17T07:42:45Z,2020-02-15T06:59:56Z +13967,519,2,2505,8.99,2005-06-18T23:28:27Z,2020-02-15T06:59:56Z +13968,519,2,2997,5.99,2005-06-20T09:23:45Z,2020-02-15T06:59:56Z +13969,519,2,4564,0.99,2005-07-08T05:09:38Z,2020-02-15T06:59:56Z +13970,519,2,4773,2.99,2005-07-08T15:41:39Z,2020-02-15T06:59:56Z +13971,519,2,5236,0.99,2005-07-09T12:56:29Z,2020-02-15T06:59:56Z +13972,519,2,5547,5.99,2005-07-10T02:52:47Z,2020-02-15T06:59:56Z +13973,519,2,6063,0.99,2005-07-11T04:16:51Z,2020-02-15T06:59:56Z +13974,519,1,6599,3.99,2005-07-12T07:41:14Z,2020-02-15T06:59:56Z +13975,519,1,9417,6.99,2005-07-30T20:54:55Z,2020-02-15T06:59:56Z +13976,519,2,9441,4.99,2005-07-30T21:43:28Z,2020-02-15T06:59:56Z +13977,519,2,9534,7.99,2005-07-31T01:18:27Z,2020-02-15T06:59:56Z +13978,519,2,9645,0.99,2005-07-31T05:42:49Z,2020-02-15T06:59:56Z +13979,519,2,9886,7.99,2005-07-31T14:00:13Z,2020-02-15T06:59:56Z +13980,519,1,9905,0.99,2005-07-31T14:37:03Z,2020-02-15T06:59:56Z +13981,519,1,10097,5.99,2005-07-31T20:39:38Z,2020-02-15T06:59:56Z +13982,519,2,10697,4.99,2005-08-01T18:20:23Z,2020-02-15T06:59:56Z +13983,519,2,12648,7.99,2005-08-18T18:30:21Z,2020-02-15T06:59:56Z +13984,519,2,12924,2.99,2005-08-19T04:51:47Z,2020-02-15T06:59:56Z +13985,519,1,13647,7.99,2005-08-20T07:48:07Z,2020-02-15T06:59:56Z +13986,519,1,14182,2.99,2005-08-21T03:17:10Z,2020-02-15T06:59:56Z +13987,519,2,15347,2.99,2005-08-22T21:12:19Z,2020-02-15T06:59:56Z +13988,520,1,962,6.99,2005-05-30T18:45:17Z,2020-02-15T06:59:56Z +13989,520,1,1411,0.99,2005-06-15T17:05:36Z,2020-02-15T06:59:56Z +13990,520,2,2174,6.99,2005-06-18T00:09:01Z,2020-02-15T06:59:56Z +13991,520,1,2772,4.99,2005-06-19T17:59:27Z,2020-02-15T06:59:56Z +13992,520,2,3482,4.99,2005-07-05T23:13:22Z,2020-02-15T06:59:56Z +13993,520,1,3499,7.99,2005-07-06T00:04:20Z,2020-02-15T06:59:56Z +13994,520,2,4346,2.99,2005-07-07T18:58:45Z,2020-02-15T06:59:56Z +13995,520,2,5799,4.99,2005-07-10T14:53:35Z,2020-02-15T06:59:56Z +13996,520,1,5802,10.99,2005-07-10T15:02:17Z,2020-02-15T06:59:56Z +13997,520,1,5853,3.99,2005-07-10T17:45:13Z,2020-02-15T06:59:56Z +13998,520,1,6029,2.99,2005-07-11T02:36:46Z,2020-02-15T06:59:56Z +13999,520,2,7198,5.99,2005-07-27T08:50:07Z,2020-02-15T06:59:56Z +14000,520,1,7720,4.99,2005-07-28T04:41:44Z,2020-02-15T06:59:56Z +14001,520,1,7936,0.99,2005-07-28T12:33:21Z,2020-02-15T06:59:56Z +14002,520,1,8294,2.99,2005-07-29T02:32:41Z,2020-02-15T06:59:56Z +14003,520,2,8435,2.99,2005-07-29T07:20:16Z,2020-02-15T06:59:56Z +14004,520,1,9803,2.99,2005-07-31T11:06:02Z,2020-02-15T06:59:56Z +14005,520,1,10072,0.99,2005-07-31T19:50:37Z,2020-02-15T06:59:56Z +14006,520,2,10530,4.99,2005-08-01T12:01:17Z,2020-02-15T06:59:56Z +14007,520,1,11566,0.99,2005-08-17T01:28:35Z,2020-02-15T06:59:56Z +14008,520,1,12517,4.99,2005-08-18T13:40:20Z,2020-02-15T06:59:56Z +14009,520,1,12628,5.99,2005-08-18T17:40:25Z,2020-02-15T06:59:56Z +14010,520,1,12647,5.99,2005-08-18T18:29:51Z,2020-02-15T06:59:56Z +14011,520,1,13311,0.99,2005-08-19T19:07:09Z,2020-02-15T06:59:56Z +14012,520,2,13438,2.99,2005-08-19T23:38:02Z,2020-02-15T06:59:56Z +14013,520,2,13659,2.99,2005-08-20T08:05:52Z,2020-02-15T06:59:56Z +14014,520,2,13746,5.99,2005-08-20T10:55:28Z,2020-02-15T06:59:56Z +14015,520,1,14372,4.99,2005-08-21T09:39:50Z,2020-02-15T06:59:56Z +14016,520,1,14509,0.99,2005-08-21T14:39:58Z,2020-02-15T06:59:56Z +14017,520,1,15465,0.99,2005-08-23T01:16:33Z,2020-02-15T06:59:56Z +14018,520,2,15492,2.99,2005-08-23T02:13:46Z,2020-02-15T06:59:56Z +14019,520,1,15948,7.99,2005-08-23T18:59:33Z,2020-02-15T06:59:56Z +14020,521,1,1761,0.99,2005-06-16T17:49:57Z,2020-02-15T06:59:56Z +14021,521,2,2053,0.99,2005-06-17T15:19:34Z,2020-02-15T06:59:56Z +14022,521,2,4284,0.99,2005-07-07T15:31:57Z,2020-02-15T06:59:56Z +14023,521,2,4439,2.99,2005-07-07T22:57:30Z,2020-02-15T06:59:56Z +14024,521,1,5276,2.99,2005-07-09T14:35:13Z,2020-02-15T06:59:56Z +14025,521,2,5458,4.99,2005-07-09T22:35:49Z,2020-02-15T06:59:56Z +14026,521,2,5580,6.99,2005-07-10T04:05:49Z,2020-02-15T06:59:56Z +14027,521,2,5686,0.99,2005-07-10T09:06:03Z,2020-02-15T06:59:56Z +14028,521,1,7478,1.99,2005-07-27T19:16:02Z,2020-02-15T06:59:56Z +14029,521,1,9556,7.99,2005-07-31T02:13:30Z,2020-02-15T06:59:56Z +14030,521,2,9937,1.99,2005-07-31T15:28:10Z,2020-02-15T06:59:56Z +14031,521,1,10587,2.99,2005-08-01T14:03:38Z,2020-02-15T06:59:56Z +14032,521,2,11625,2.99,2005-08-17T04:18:52Z,2020-02-15T06:59:56Z +14033,521,1,11967,3.99,2005-08-17T17:45:00Z,2020-02-15T06:59:56Z +14034,521,2,12082,4.99,2005-08-17T22:13:15Z,2020-02-15T06:59:56Z +14035,521,1,12530,4.99,2005-08-18T13:54:48Z,2020-02-15T06:59:56Z +14036,521,1,13527,2.99,2005-08-20T03:00:47Z,2020-02-15T06:59:56Z +14037,521,1,14423,0.99,2005-08-21T11:23:59Z,2020-02-15T06:59:56Z +14038,521,2,14551,3.99,2005-08-21T15:57:25Z,2020-02-15T06:59:56Z +14039,521,2,14738,5.99,2005-08-21T22:29:13Z,2020-02-15T06:59:56Z +14040,521,2,15170,4.99,2005-08-22T15:22:15Z,2020-02-15T06:59:56Z +14041,521,2,15329,2.99,2005-08-22T20:32:39Z,2020-02-15T06:59:56Z +14042,521,2,11672,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14043,522,2,426,5.99,2005-05-27T15:56:57Z,2020-02-15T06:59:56Z +14044,522,1,1289,3.99,2005-06-15T08:44:09Z,2020-02-15T06:59:56Z +14045,522,2,3102,8.99,2005-06-20T16:55:55Z,2020-02-15T06:59:56Z +14046,522,1,3188,2.99,2005-06-20T23:10:27Z,2020-02-15T06:59:56Z +14047,522,2,3191,0.99,2005-06-20T23:46:39Z,2020-02-15T06:59:56Z +14048,522,1,3594,0.99,2005-07-06T04:42:47Z,2020-02-15T06:59:56Z +14049,522,2,4078,4.99,2005-07-07T05:05:05Z,2020-02-15T06:59:56Z +14050,522,2,4563,9.99,2005-07-08T05:08:55Z,2020-02-15T06:59:56Z +14051,522,2,4701,4.99,2005-07-08T11:38:48Z,2020-02-15T06:59:56Z +14052,522,2,5271,6.99,2005-07-09T14:25:01Z,2020-02-15T06:59:56Z +14053,522,2,5514,6.99,2005-07-10T01:09:42Z,2020-02-15T06:59:56Z +14054,522,2,5532,4.99,2005-07-10T02:17:31Z,2020-02-15T06:59:56Z +14055,522,2,5936,0.99,2005-07-10T22:14:30Z,2020-02-15T06:59:56Z +14056,522,2,7262,4.99,2005-07-27T11:15:36Z,2020-02-15T06:59:56Z +14057,522,1,7955,2.99,2005-07-28T13:31:36Z,2020-02-15T06:59:56Z +14058,522,2,8181,4.99,2005-07-28T22:18:38Z,2020-02-15T06:59:56Z +14059,522,1,8642,6.99,2005-07-29T14:38:17Z,2020-02-15T06:59:56Z +14060,522,1,8966,2.99,2005-07-30T03:54:12Z,2020-02-15T06:59:56Z +14061,522,1,9047,7.99,2005-07-30T06:56:33Z,2020-02-15T06:59:56Z +14062,522,2,9227,7.99,2005-07-30T13:36:13Z,2020-02-15T06:59:56Z +14063,522,1,9335,4.99,2005-07-30T18:00:53Z,2020-02-15T06:59:56Z +14064,522,1,9412,5.99,2005-07-30T20:44:10Z,2020-02-15T06:59:56Z +14065,522,2,9533,5.99,2005-07-31T01:18:10Z,2020-02-15T06:59:56Z +14066,522,2,10223,0.99,2005-08-01T01:23:15Z,2020-02-15T06:59:56Z +14067,522,1,10411,3.99,2005-08-01T07:56:32Z,2020-02-15T06:59:56Z +14068,522,1,10675,7.99,2005-08-01T17:11:57Z,2020-02-15T06:59:56Z +14069,522,2,10821,5.99,2005-08-01T22:54:27Z,2020-02-15T06:59:56Z +14070,522,2,11696,2.99,2005-08-17T07:01:09Z,2020-02-15T06:59:56Z +14071,522,2,11830,1.99,2005-08-17T12:53:15Z,2020-02-15T06:59:56Z +14072,522,2,12494,6.99,2005-08-18T12:53:49Z,2020-02-15T06:59:56Z +14073,522,2,13605,6.99,2005-08-20T06:06:17Z,2020-02-15T06:59:56Z +14074,522,2,14467,2.99,2005-08-21T13:03:33Z,2020-02-15T06:59:56Z +14075,522,1,15921,6.99,2005-08-23T18:06:54Z,2020-02-15T06:59:56Z +14076,523,1,42,4.99,2005-05-25T05:24:58Z,2020-02-15T06:59:56Z +14077,523,2,664,0.99,2005-05-28T21:31:08Z,2020-02-15T06:59:56Z +14078,523,2,1729,6.99,2005-06-16T15:29:47Z,2020-02-15T06:59:56Z +14079,523,1,2447,8.99,2005-06-18T19:10:55Z,2020-02-15T06:59:56Z +14080,523,1,2583,7.99,2005-06-19T05:01:40Z,2020-02-15T06:59:56Z +14081,523,2,2669,0.99,2005-06-19T11:28:52Z,2020-02-15T06:59:56Z +14082,523,1,4605,4.99,2005-07-08T07:00:14Z,2020-02-15T06:59:56Z +14083,523,2,5155,2.99,2005-07-09T08:46:54Z,2020-02-15T06:59:56Z +14084,523,1,5287,6.99,2005-07-09T15:11:54Z,2020-02-15T06:59:56Z +14085,523,2,5932,2.99,2005-07-10T22:05:15Z,2020-02-15T06:59:56Z +14086,523,2,6675,4.99,2005-07-12T11:53:06Z,2020-02-15T06:59:56Z +14087,523,2,7642,1.99,2005-07-28T01:16:51Z,2020-02-15T06:59:56Z +14088,523,2,8141,0.99,2005-07-28T20:21:19Z,2020-02-15T06:59:56Z +14089,523,1,8372,5.99,2005-07-29T05:18:08Z,2020-02-15T06:59:56Z +14090,523,1,9071,2.99,2005-07-30T07:40:58Z,2020-02-15T06:59:56Z +14091,523,2,9667,6.99,2005-07-31T06:23:52Z,2020-02-15T06:59:56Z +14092,523,2,10470,1.99,2005-08-01T09:52:26Z,2020-02-15T06:59:56Z +14093,523,1,11827,4.99,2005-08-17T12:44:27Z,2020-02-15T06:59:56Z +14094,523,1,12288,2.99,2005-08-18T05:01:20Z,2020-02-15T06:59:56Z +14095,523,1,13133,2.99,2005-08-19T12:11:03Z,2020-02-15T06:59:56Z +14096,523,1,14766,4.99,2005-08-21T23:42:20Z,2020-02-15T06:59:56Z +14097,523,1,15040,2.99,2005-08-22T09:41:09Z,2020-02-15T06:59:56Z +14098,524,2,118,0.99,2005-05-25T19:31:18Z,2020-02-15T06:59:56Z +14099,524,1,982,4.99,2005-05-30T22:15:24Z,2020-02-15T06:59:56Z +14100,524,1,1306,1.99,2005-06-15T09:59:24Z,2020-02-15T06:59:56Z +14101,524,2,1651,4.99,2005-06-16T09:24:38Z,2020-02-15T06:59:56Z +14102,524,2,3454,2.99,2005-06-21T21:12:13Z,2020-02-15T06:59:56Z +14103,524,1,4366,5.99,2005-07-07T19:48:36Z,2020-02-15T06:59:56Z +14104,524,2,5037,4.99,2005-07-09T02:59:10Z,2020-02-15T06:59:56Z +14105,524,2,6161,4.99,2005-07-11T10:11:54Z,2020-02-15T06:59:56Z +14106,524,1,6240,6.99,2005-07-11T14:32:41Z,2020-02-15T06:59:56Z +14107,524,2,6745,4.99,2005-07-12T14:30:51Z,2020-02-15T06:59:56Z +14108,524,2,7014,8.99,2005-07-27T02:14:40Z,2020-02-15T06:59:56Z +14109,524,1,7040,4.99,2005-07-27T03:17:19Z,2020-02-15T06:59:56Z +14110,524,1,8507,6.99,2005-07-29T09:29:44Z,2020-02-15T06:59:56Z +14111,524,2,13626,2.99,2005-08-20T06:55:24Z,2020-02-15T06:59:56Z +14112,524,2,14046,4.99,2005-08-20T21:53:21Z,2020-02-15T06:59:56Z +14113,524,1,14178,2.99,2005-08-21T03:13:45Z,2020-02-15T06:59:56Z +14114,524,1,14366,2.99,2005-08-21T09:31:39Z,2020-02-15T06:59:56Z +14115,524,2,14680,1.99,2005-08-21T20:19:52Z,2020-02-15T06:59:56Z +14116,524,2,15206,6.99,2005-08-22T16:33:39Z,2020-02-15T06:59:56Z +14117,525,1,437,5.99,2005-05-27T17:47:22Z,2020-02-15T06:59:56Z +14118,525,2,1772,2.99,2005-06-16T18:12:54Z,2020-02-15T06:59:56Z +14119,525,1,3993,6.99,2005-07-06T23:37:06Z,2020-02-15T06:59:56Z +14120,525,1,5841,2.99,2005-07-10T17:11:31Z,2020-02-15T06:59:56Z +14121,525,2,6098,7.99,2005-07-11T06:23:28Z,2020-02-15T06:59:56Z +14122,525,2,6388,6.99,2005-07-11T22:17:16Z,2020-02-15T06:59:56Z +14123,525,1,6689,1.99,2005-07-12T12:22:13Z,2020-02-15T06:59:56Z +14124,525,2,7337,4.99,2005-07-27T14:12:04Z,2020-02-15T06:59:56Z +14125,525,2,7591,4.99,2005-07-27T23:25:54Z,2020-02-15T06:59:56Z +14126,525,1,8007,0.99,2005-07-28T15:22:27Z,2020-02-15T06:59:56Z +14127,525,1,8960,4.99,2005-07-30T03:36:31Z,2020-02-15T06:59:56Z +14128,525,2,9507,5.99,2005-07-31T00:22:29Z,2020-02-15T06:59:56Z +14129,525,1,9702,0.99,2005-07-31T07:34:07Z,2020-02-15T06:59:56Z +14130,525,1,10496,2.99,2005-08-01T10:53:16Z,2020-02-15T06:59:56Z +14131,525,2,11406,2.99,2005-08-02T19:16:10Z,2020-02-15T06:59:56Z +14132,525,1,11660,1.99,2005-08-17T05:22:42Z,2020-02-15T06:59:56Z +14133,525,1,15159,0.99,2005-08-22T14:32:25Z,2020-02-15T06:59:56Z +14134,525,2,15623,3.99,2005-08-23T07:23:29Z,2020-02-15T06:59:56Z +14135,525,1,14954,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14136,526,1,495,4.99,2005-05-28T00:40:48Z,2020-02-15T06:59:56Z +14137,526,2,679,4.99,2005-05-28T23:24:57Z,2020-02-15T06:59:56Z +14138,526,2,1015,2.99,2005-05-31T02:44:57Z,2020-02-15T06:59:56Z +14139,526,1,1255,4.99,2005-06-15T06:13:45Z,2020-02-15T06:59:56Z +14140,526,2,1848,0.99,2005-06-17T00:07:07Z,2020-02-15T06:59:56Z +14141,526,2,1865,7.99,2005-06-17T01:49:36Z,2020-02-15T06:59:56Z +14142,526,2,1972,2.99,2005-06-17T09:25:49Z,2020-02-15T06:59:56Z +14143,526,1,1981,2.99,2005-06-17T10:03:34Z,2020-02-15T06:59:56Z +14144,526,2,2398,4.99,2005-06-18T15:56:53Z,2020-02-15T06:59:56Z +14145,526,1,2828,2.99,2005-06-19T20:51:33Z,2020-02-15T06:59:56Z +14146,526,2,2932,6.99,2005-06-20T04:51:19Z,2020-02-15T06:59:56Z +14147,526,1,3339,6.99,2005-06-21T10:37:11Z,2020-02-15T06:59:56Z +14148,526,1,3619,1.99,2005-07-06T05:59:44Z,2020-02-15T06:59:56Z +14149,526,2,3905,5.99,2005-07-06T19:33:34Z,2020-02-15T06:59:56Z +14150,526,1,4423,6.99,2005-07-07T22:11:28Z,2020-02-15T06:59:56Z +14151,526,2,5056,2.99,2005-07-09T04:13:45Z,2020-02-15T06:59:56Z +14152,526,2,5121,3.99,2005-07-09T07:18:31Z,2020-02-15T06:59:56Z +14153,526,1,6316,7.99,2005-07-11T18:44:52Z,2020-02-15T06:59:56Z +14154,526,1,6404,4.99,2005-07-11T22:49:50Z,2020-02-15T06:59:56Z +14155,526,2,6650,2.99,2005-07-12T10:57:10Z,2020-02-15T06:59:56Z +14156,526,1,6671,3.99,2005-07-12T11:48:48Z,2020-02-15T06:59:56Z +14157,526,2,7270,7.99,2005-07-27T11:29:02Z,2020-02-15T06:59:56Z +14158,526,2,7343,0.99,2005-07-27T14:27:13Z,2020-02-15T06:59:56Z +14159,526,2,7399,1.99,2005-07-27T16:16:02Z,2020-02-15T06:59:56Z +14160,526,2,7543,5.99,2005-07-27T21:44:28Z,2020-02-15T06:59:56Z +14161,526,2,7883,2.99,2005-07-28T10:37:20Z,2020-02-15T06:59:56Z +14162,526,1,8053,4.99,2005-07-28T16:59:41Z,2020-02-15T06:59:56Z +14163,526,1,8232,4.99,2005-07-29T00:14:37Z,2020-02-15T06:59:56Z +14164,526,1,8441,2.99,2005-07-29T07:33:05Z,2020-02-15T06:59:56Z +14165,526,2,9577,6.99,2005-07-31T02:53:33Z,2020-02-15T06:59:56Z +14166,526,2,10020,4.99,2005-07-31T18:21:08Z,2020-02-15T06:59:56Z +14167,526,2,10199,2.99,2005-08-01T00:38:55Z,2020-02-15T06:59:56Z +14168,526,2,11046,4.99,2005-08-02T06:08:34Z,2020-02-15T06:59:56Z +14169,526,1,11503,10.99,2005-08-16T23:10:34Z,2020-02-15T06:59:56Z +14170,526,1,11612,2.99,2005-08-17T03:48:51Z,2020-02-15T06:59:56Z +14171,526,2,11702,4.99,2005-08-17T07:18:56Z,2020-02-15T06:59:56Z +14172,526,1,12607,0.99,2005-08-18T17:03:49Z,2020-02-15T06:59:56Z +14173,526,2,13224,8.99,2005-08-19T15:52:13Z,2020-02-15T06:59:56Z +14174,526,2,13580,0.99,2005-08-20T05:23:34Z,2020-02-15T06:59:56Z +14175,526,1,13617,8.99,2005-08-20T06:35:30Z,2020-02-15T06:59:56Z +14176,526,2,14487,6.99,2005-08-21T13:53:33Z,2020-02-15T06:59:56Z +14177,526,1,14590,7.99,2005-08-21T17:29:10Z,2020-02-15T06:59:56Z +14178,526,1,15168,2.99,2005-08-22T15:14:20Z,2020-02-15T06:59:56Z +14179,526,1,15395,4.99,2005-08-22T23:06:25Z,2020-02-15T06:59:56Z +14180,526,1,16043,9.99,2005-08-23T22:21:03Z,2020-02-15T06:59:56Z +14181,527,1,1398,2.99,2005-06-15T16:28:42Z,2020-02-15T06:59:56Z +14182,527,1,2422,0.99,2005-06-18T17:28:57Z,2020-02-15T06:59:56Z +14183,527,2,2496,0.99,2005-06-18T22:20:11Z,2020-02-15T06:59:56Z +14184,527,1,2539,2.99,2005-06-19T01:58:39Z,2020-02-15T06:59:56Z +14185,527,1,4888,0.99,2005-07-08T20:04:27Z,2020-02-15T06:59:56Z +14186,527,1,5365,0.99,2005-07-09T18:27:00Z,2020-02-15T06:59:56Z +14187,527,2,6003,3.99,2005-07-11T01:28:33Z,2020-02-15T06:59:56Z +14188,527,2,6011,4.99,2005-07-11T01:54:48Z,2020-02-15T06:59:56Z +14189,527,1,6050,2.99,2005-07-11T03:34:29Z,2020-02-15T06:59:56Z +14190,527,2,6975,1.99,2005-07-27T00:39:54Z,2020-02-15T06:59:56Z +14191,527,1,7506,8.99,2005-07-27T20:28:34Z,2020-02-15T06:59:56Z +14192,527,1,8854,0.99,2005-07-29T23:40:07Z,2020-02-15T06:59:56Z +14193,527,2,9750,0.99,2005-07-31T09:19:46Z,2020-02-15T06:59:56Z +14194,527,2,10486,3.99,2005-08-01T10:23:43Z,2020-02-15T06:59:56Z +14195,527,2,10613,0.99,2005-08-01T14:56:14Z,2020-02-15T06:59:56Z +14196,527,1,11013,5.99,2005-08-02T05:10:54Z,2020-02-15T06:59:56Z +14197,527,1,11150,2.99,2005-08-02T09:51:46Z,2020-02-15T06:59:56Z +14198,527,1,11624,0.99,2005-08-17T04:17:42Z,2020-02-15T06:59:56Z +14199,527,1,12136,7.99,2005-08-17T23:51:30Z,2020-02-15T06:59:56Z +14200,527,1,12513,6.99,2005-08-18T13:31:45Z,2020-02-15T06:59:56Z +14201,527,1,14352,6.99,2005-08-21T09:06:29Z,2020-02-15T06:59:56Z +14202,527,1,15144,2.99,2005-08-22T13:49:18Z,2020-02-15T06:59:56Z +14203,527,1,15552,3.99,2005-08-23T04:33:23Z,2020-02-15T06:59:56Z +14204,527,1,14267,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14205,528,1,204,0.99,2005-05-26T07:30:37Z,2020-02-15T06:59:56Z +14206,528,2,472,0.99,2005-05-27T21:36:15Z,2020-02-15T06:59:56Z +14207,528,1,533,5.99,2005-05-28T06:14:46Z,2020-02-15T06:59:56Z +14208,528,2,695,3.99,2005-05-29T01:50:53Z,2020-02-15T06:59:56Z +14209,528,2,793,5.99,2005-05-29T16:44:08Z,2020-02-15T06:59:56Z +14210,528,2,1875,2.99,2005-06-17T02:45:10Z,2020-02-15T06:59:56Z +14211,528,1,2019,4.99,2005-06-17T12:38:44Z,2020-02-15T06:59:56Z +14212,528,2,3654,4.99,2005-07-06T07:45:31Z,2020-02-15T06:59:56Z +14213,528,1,3664,0.99,2005-07-06T08:15:57Z,2020-02-15T06:59:56Z +14214,528,2,4050,9.99,2005-07-07T03:35:33Z,2020-02-15T06:59:56Z +14215,528,1,4593,5.99,2005-07-08T06:38:12Z,2020-02-15T06:59:56Z +14216,528,2,5215,3.99,2005-07-09T11:47:58Z,2020-02-15T06:59:56Z +14217,528,2,6561,0.99,2005-07-12T05:24:02Z,2020-02-15T06:59:56Z +14218,528,1,7569,7.99,2005-07-27T22:38:53Z,2020-02-15T06:59:56Z +14219,528,2,8112,4.99,2005-07-28T19:11:07Z,2020-02-15T06:59:56Z +14220,528,1,8727,3.99,2005-07-29T18:09:57Z,2020-02-15T06:59:56Z +14221,528,2,9488,8.99,2005-07-30T23:42:42Z,2020-02-15T06:59:56Z +14222,528,1,10084,3.99,2005-07-31T20:11:29Z,2020-02-15T06:59:56Z +14223,528,1,10673,0.99,2005-08-01T17:11:51Z,2020-02-15T06:59:56Z +14224,528,1,10880,2.99,2005-08-02T00:34:12Z,2020-02-15T06:59:56Z +14225,528,1,12818,3.99,2005-08-19T01:04:59Z,2020-02-15T06:59:56Z +14226,528,2,13518,2.99,2005-08-20T02:36:17Z,2020-02-15T06:59:56Z +14227,528,1,13600,7.99,2005-08-20T06:00:25Z,2020-02-15T06:59:56Z +14228,528,2,14148,2.99,2005-08-21T02:17:49Z,2020-02-15T06:59:56Z +14229,528,2,15880,6.99,2005-08-23T16:43:54Z,2020-02-15T06:59:56Z +14230,529,1,453,2.99,2005-05-27T19:31:16Z,2020-02-15T06:59:56Z +14231,529,1,1234,1.99,2005-06-15T04:21:52Z,2020-02-15T06:59:56Z +14232,529,2,1686,0.99,2005-06-16T12:08:20Z,2020-02-15T06:59:56Z +14233,529,2,3354,0.99,2005-06-21T11:29:49Z,2020-02-15T06:59:56Z +14234,529,2,4045,0.99,2005-07-07T03:26:14Z,2020-02-15T06:59:56Z +14235,529,2,4254,0.99,2005-07-07T14:13:52Z,2020-02-15T06:59:56Z +14236,529,2,4444,5.99,2005-07-07T23:07:44Z,2020-02-15T06:59:56Z +14237,529,1,4553,0.99,2005-07-08T04:43:41Z,2020-02-15T06:59:56Z +14238,529,1,5993,4.99,2005-07-11T01:06:41Z,2020-02-15T06:59:56Z +14239,529,2,6538,6.99,2005-07-12T04:50:26Z,2020-02-15T06:59:56Z +14240,529,2,6541,5.99,2005-07-12T04:53:41Z,2020-02-15T06:59:56Z +14241,529,1,6908,7.99,2005-07-12T22:08:46Z,2020-02-15T06:59:56Z +14242,529,1,7128,3.99,2005-07-27T06:14:36Z,2020-02-15T06:59:56Z +14243,529,2,8708,2.99,2005-07-29T17:24:13Z,2020-02-15T06:59:56Z +14244,529,1,8979,5.99,2005-07-30T04:20:25Z,2020-02-15T06:59:56Z +14245,529,2,9310,4.99,2005-07-30T16:57:09Z,2020-02-15T06:59:56Z +14246,529,2,9375,0.99,2005-07-30T19:10:17Z,2020-02-15T06:59:56Z +14247,529,2,10361,10.99,2005-08-01T05:53:49Z,2020-02-15T06:59:56Z +14248,529,1,11862,2.99,2005-08-17T13:54:53Z,2020-02-15T06:59:56Z +14249,529,2,12356,2.99,2005-08-18T07:37:05Z,2020-02-15T06:59:56Z +14250,529,1,12622,3.99,2005-08-18T17:34:11Z,2020-02-15T06:59:56Z +14251,529,1,13011,4.99,2005-08-19T07:53:58Z,2020-02-15T06:59:56Z +14252,529,2,13132,3.99,2005-08-19T12:10:57Z,2020-02-15T06:59:56Z +14253,529,1,13797,2.99,2005-08-20T12:33:36Z,2020-02-15T06:59:56Z +14254,529,2,13946,9.99,2005-08-20T17:44:32Z,2020-02-15T06:59:56Z +14255,529,2,14449,4.99,2005-08-21T12:13:18Z,2020-02-15T06:59:56Z +14256,529,2,14764,0.99,2005-08-21T23:37:47Z,2020-02-15T06:59:56Z +14257,529,1,14970,5.99,2005-08-22T06:49:29Z,2020-02-15T06:59:56Z +14258,529,2,15305,2.99,2005-08-22T19:46:05Z,2020-02-15T06:59:56Z +14259,530,1,851,0.99,2005-05-30T01:35:15Z,2020-02-15T06:59:56Z +14260,530,2,1273,1.99,2005-06-15T07:52:35Z,2020-02-15T06:59:56Z +14261,530,1,1516,0.99,2005-06-15T23:11:10Z,2020-02-15T06:59:56Z +14262,530,1,2158,2.99,2005-06-17T23:36:27Z,2020-02-15T06:59:56Z +14263,530,2,3669,2.99,2005-07-06T08:38:29Z,2020-02-15T06:59:56Z +14264,530,2,3887,4.99,2005-07-06T18:46:34Z,2020-02-15T06:59:56Z +14265,530,2,5663,0.99,2005-07-10T08:01:33Z,2020-02-15T06:59:56Z +14266,530,1,7031,3.99,2005-07-27T03:02:07Z,2020-02-15T06:59:56Z +14267,530,2,7075,1.99,2005-07-27T04:11:40Z,2020-02-15T06:59:56Z +14268,530,1,7218,4.99,2005-07-27T09:34:24Z,2020-02-15T06:59:56Z +14269,530,2,8208,4.99,2005-07-28T23:26:35Z,2020-02-15T06:59:56Z +14270,530,1,8736,0.99,2005-07-29T18:31:15Z,2020-02-15T06:59:56Z +14271,530,1,9914,4.99,2005-07-31T14:51:19Z,2020-02-15T06:59:56Z +14272,530,2,10211,3.99,2005-08-01T01:01:16Z,2020-02-15T06:59:56Z +14273,530,2,10504,4.99,2005-08-01T11:10:55Z,2020-02-15T06:59:56Z +14274,530,1,11326,0.99,2005-08-02T16:34:29Z,2020-02-15T06:59:56Z +14275,530,1,12220,4.99,2005-08-18T02:50:02Z,2020-02-15T06:59:56Z +14276,530,1,12387,2.99,2005-08-18T08:46:24Z,2020-02-15T06:59:56Z +14277,530,1,12649,4.99,2005-08-18T18:31:47Z,2020-02-15T06:59:56Z +14278,530,1,13998,5.99,2005-08-20T19:52:38Z,2020-02-15T06:59:56Z +14279,530,2,14707,5.99,2005-08-21T21:06:29Z,2020-02-15T06:59:56Z +14280,530,2,15066,0.99,2005-08-22T10:49:06Z,2020-02-15T06:59:56Z +14281,530,1,13561,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14282,531,1,233,4.99,2005-05-26T11:43:44Z,2020-02-15T06:59:56Z +14283,531,1,681,2.99,2005-05-28T23:39:44Z,2020-02-15T06:59:56Z +14284,531,2,2972,2.99,2005-06-20T07:57:54Z,2020-02-15T06:59:56Z +14285,531,2,3921,5.99,2005-07-06T20:29:48Z,2020-02-15T06:59:56Z +14286,531,1,5587,5.99,2005-07-10T04:17:25Z,2020-02-15T06:59:56Z +14287,531,2,5850,0.99,2005-07-10T17:36:27Z,2020-02-15T06:59:56Z +14288,531,2,5904,4.99,2005-07-10T20:39:44Z,2020-02-15T06:59:56Z +14289,531,1,6756,4.99,2005-07-12T15:08:28Z,2020-02-15T06:59:56Z +14290,531,1,6876,4.99,2005-07-12T20:32:50Z,2020-02-15T06:59:56Z +14291,531,2,7204,2.99,2005-07-27T09:02:31Z,2020-02-15T06:59:56Z +14292,531,1,7391,6.99,2005-07-27T16:00:00Z,2020-02-15T06:59:56Z +14293,531,2,7444,2.99,2005-07-27T17:49:16Z,2020-02-15T06:59:56Z +14294,531,2,7753,6.99,2005-07-28T06:09:19Z,2020-02-15T06:59:56Z +14295,531,2,8359,5.99,2005-07-29T05:02:12Z,2020-02-15T06:59:56Z +14296,531,2,8860,4.99,2005-07-29T23:45:57Z,2020-02-15T06:59:56Z +14297,531,2,8943,0.99,2005-07-30T03:06:48Z,2020-02-15T06:59:56Z +14298,531,2,9107,4.99,2005-07-30T08:52:45Z,2020-02-15T06:59:56Z +14299,531,2,10920,4.99,2005-08-02T02:14:10Z,2020-02-15T06:59:56Z +14300,531,1,10941,5.99,2005-08-02T03:11:33Z,2020-02-15T06:59:56Z +14301,531,2,11026,4.99,2005-08-02T05:46:05Z,2020-02-15T06:59:56Z +14302,531,1,11265,10.99,2005-08-02T14:05:42Z,2020-02-15T06:59:56Z +14303,531,1,11666,2.99,2005-08-17T05:45:10Z,2020-02-15T06:59:56Z +14304,531,1,12923,2.99,2005-08-19T04:50:20Z,2020-02-15T06:59:56Z +14305,531,2,13300,8.99,2005-08-19T18:46:56Z,2020-02-15T06:59:56Z +14306,531,2,15360,0.99,2005-08-22T21:36:51Z,2020-02-15T06:59:56Z +14307,532,1,43,2.99,2005-05-25T05:39:25Z,2020-02-15T06:59:56Z +14308,532,1,1694,4.99,2005-06-16T12:40:23Z,2020-02-15T06:59:56Z +14309,532,2,2821,3.99,2005-06-19T20:26:52Z,2020-02-15T06:59:56Z +14310,532,1,4336,2.99,2005-07-07T18:34:36Z,2020-02-15T06:59:56Z +14311,532,2,4962,4.99,2005-07-08T23:36:13Z,2020-02-15T06:59:56Z +14312,532,2,5190,2.99,2005-07-09T10:25:24Z,2020-02-15T06:59:56Z +14313,532,1,5253,7.99,2005-07-09T13:41:17Z,2020-02-15T06:59:56Z +14314,532,2,5278,4.99,2005-07-09T14:44:23Z,2020-02-15T06:59:56Z +14315,532,2,5805,8.99,2005-07-10T15:08:41Z,2020-02-15T06:59:56Z +14316,532,1,5887,2.99,2005-07-10T19:45:47Z,2020-02-15T06:59:56Z +14317,532,2,6345,7.99,2005-07-11T20:05:18Z,2020-02-15T06:59:56Z +14318,532,2,6598,4.99,2005-07-12T07:38:25Z,2020-02-15T06:59:56Z +14319,532,1,6730,3.99,2005-07-12T13:58:25Z,2020-02-15T06:59:56Z +14320,532,1,7192,4.99,2005-07-27T08:36:55Z,2020-02-15T06:59:56Z +14321,532,2,7572,2.99,2005-07-27T22:44:29Z,2020-02-15T06:59:56Z +14322,532,1,8273,5.99,2005-07-29T01:33:16Z,2020-02-15T06:59:56Z +14323,532,1,9843,2.99,2005-07-31T12:25:28Z,2020-02-15T06:59:56Z +14324,532,2,10286,6.99,2005-08-01T03:35:58Z,2020-02-15T06:59:56Z +14325,532,2,10712,5.99,2005-08-01T18:47:56Z,2020-02-15T06:59:56Z +14326,532,1,10945,5.99,2005-08-02T03:20:23Z,2020-02-15T06:59:56Z +14327,532,2,11251,2.99,2005-08-02T13:40:49Z,2020-02-15T06:59:56Z +14328,532,2,11318,4.99,2005-08-02T16:09:11Z,2020-02-15T06:59:56Z +14329,532,2,12061,3.99,2005-08-17T21:13:35Z,2020-02-15T06:59:56Z +14330,532,2,12295,5.99,2005-08-18T05:15:46Z,2020-02-15T06:59:56Z +14331,532,2,13038,4.99,2005-08-19T08:55:16Z,2020-02-15T06:59:56Z +14332,532,1,13192,8.99,2005-08-19T14:30:06Z,2020-02-15T06:59:56Z +14333,532,1,13254,4.99,2005-08-19T16:54:01Z,2020-02-15T06:59:56Z +14334,532,1,13908,4.99,2005-08-20T16:21:40Z,2020-02-15T06:59:56Z +14335,532,2,15180,0.99,2005-08-22T15:42:57Z,2020-02-15T06:59:56Z +14336,532,2,15414,1.99,2005-08-22T23:43:54Z,2020-02-15T06:59:56Z +14337,532,1,16014,5.99,2005-08-23T21:18:31Z,2020-02-15T06:59:56Z +14338,532,1,14616,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14339,533,1,173,0.99,2005-05-26T03:42:10Z,2020-02-15T06:59:56Z +14340,533,2,190,1.99,2005-05-26T06:11:28Z,2020-02-15T06:59:56Z +14341,533,1,615,5.99,2005-05-28T15:35:52Z,2020-02-15T06:59:56Z +14342,533,1,1421,5.99,2005-06-15T17:57:04Z,2020-02-15T06:59:56Z +14343,533,1,1652,0.99,2005-06-16T09:31:37Z,2020-02-15T06:59:56Z +14344,533,1,1859,0.99,2005-06-17T01:13:38Z,2020-02-15T06:59:56Z +14345,533,1,1954,2.99,2005-06-17T08:37:55Z,2020-02-15T06:59:56Z +14346,533,2,2770,6.99,2005-06-19T17:54:22Z,2020-02-15T06:59:56Z +14347,533,1,2956,0.99,2005-06-20T06:47:23Z,2020-02-15T06:59:56Z +14348,533,1,4112,8.99,2005-07-07T06:49:09Z,2020-02-15T06:59:56Z +14349,533,1,4788,4.99,2005-07-08T16:17:35Z,2020-02-15T06:59:56Z +14350,533,2,6781,2.99,2005-07-12T16:21:47Z,2020-02-15T06:59:56Z +14351,533,2,6834,0.99,2005-07-12T18:53:37Z,2020-02-15T06:59:56Z +14352,533,2,6837,9.99,2005-07-12T18:59:45Z,2020-02-15T06:59:56Z +14353,533,2,7555,4.99,2005-07-27T22:17:05Z,2020-02-15T06:59:56Z +14354,533,1,8093,8.99,2005-07-28T18:29:16Z,2020-02-15T06:59:56Z +14355,533,2,8104,2.99,2005-07-28T18:59:36Z,2020-02-15T06:59:56Z +14356,533,2,8250,2.99,2005-07-29T00:49:15Z,2020-02-15T06:59:56Z +14357,533,1,8471,2.99,2005-07-29T08:32:11Z,2020-02-15T06:59:56Z +14358,533,1,8676,1.99,2005-07-29T15:59:06Z,2020-02-15T06:59:56Z +14359,533,2,8786,1.99,2005-07-29T20:39:49Z,2020-02-15T06:59:56Z +14360,533,2,10090,3.99,2005-07-31T20:22:01Z,2020-02-15T06:59:56Z +14361,533,1,10380,2.99,2005-08-01T06:34:36Z,2020-02-15T06:59:56Z +14362,533,1,10614,6.99,2005-08-01T14:57:00Z,2020-02-15T06:59:56Z +14363,533,2,11524,7.99,2005-08-17T00:10:55Z,2020-02-15T06:59:56Z +14364,533,1,11758,8.99,2005-08-17T09:33:02Z,2020-02-15T06:59:56Z +14365,533,1,11918,2.99,2005-08-17T16:08:42Z,2020-02-15T06:59:56Z +14366,533,1,12602,0.99,2005-08-18T16:49:50Z,2020-02-15T06:59:56Z +14367,533,1,12655,6.99,2005-08-18T18:57:44Z,2020-02-15T06:59:56Z +14368,533,1,14263,7.99,2005-08-21T06:08:15Z,2020-02-15T06:59:56Z +14369,533,1,14800,4.99,2005-08-22T00:46:18Z,2020-02-15T06:59:56Z +14370,533,2,16006,0.99,2005-08-23T21:01:09Z,2020-02-15T06:59:56Z +14371,533,2,14018,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14372,534,2,304,5.99,2005-05-26T21:21:28Z,2020-02-15T06:59:56Z +14373,534,2,940,0.99,2005-05-30T15:01:02Z,2020-02-15T06:59:56Z +14374,534,1,1610,4.99,2005-06-16T06:36:33Z,2020-02-15T06:59:56Z +14375,534,1,1673,2.99,2005-06-16T10:40:17Z,2020-02-15T06:59:56Z +14376,534,1,2436,0.99,2005-06-18T18:13:32Z,2020-02-15T06:59:56Z +14377,534,2,3213,1.99,2005-06-21T01:05:19Z,2020-02-15T06:59:56Z +14378,534,1,3216,4.99,2005-06-21T01:19:37Z,2020-02-15T06:59:56Z +14379,534,1,3735,2.99,2005-07-06T11:42:04Z,2020-02-15T06:59:56Z +14380,534,2,4998,4.99,2005-07-09T01:07:21Z,2020-02-15T06:59:56Z +14381,534,2,7113,2.99,2005-07-27T05:41:20Z,2020-02-15T06:59:56Z +14382,534,1,7662,2.99,2005-07-28T02:16:08Z,2020-02-15T06:59:56Z +14383,534,2,8633,0.99,2005-07-29T14:19:53Z,2020-02-15T06:59:56Z +14384,534,1,9456,5.99,2005-07-30T22:22:16Z,2020-02-15T06:59:56Z +14385,534,2,9464,4.99,2005-07-30T22:31:31Z,2020-02-15T06:59:56Z +14386,534,2,10465,5.99,2005-08-01T09:45:25Z,2020-02-15T06:59:56Z +14387,534,2,10725,6.99,2005-08-01T19:11:04Z,2020-02-15T06:59:56Z +14388,534,1,10796,0.99,2005-08-01T21:56:41Z,2020-02-15T06:59:56Z +14389,534,2,11180,5.99,2005-08-02T10:54:30Z,2020-02-15T06:59:56Z +14390,534,2,12305,2.99,2005-08-18T05:46:29Z,2020-02-15T06:59:56Z +14391,534,1,12691,5.99,2005-08-18T20:07:46Z,2020-02-15T06:59:56Z +14392,534,2,12798,4.99,2005-08-19T00:24:33Z,2020-02-15T06:59:56Z +14393,534,2,13294,0.99,2005-08-19T18:36:35Z,2020-02-15T06:59:56Z +14394,534,2,14816,1.99,2005-08-22T01:15:51Z,2020-02-15T06:59:56Z +14395,534,1,14526,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14396,535,1,37,0.99,2005-05-25T04:44:31Z,2020-02-15T06:59:56Z +14397,535,2,541,2.99,2005-05-28T06:41:58Z,2020-02-15T06:59:56Z +14398,535,1,778,3.99,2005-05-29T14:09:53Z,2020-02-15T06:59:56Z +14399,535,2,959,4.99,2005-05-30T18:07:00Z,2020-02-15T06:59:56Z +14400,535,1,1712,4.99,2005-06-16T14:25:09Z,2020-02-15T06:59:56Z +14401,535,1,3228,4.99,2005-06-21T02:20:24Z,2020-02-15T06:59:56Z +14402,535,1,4331,4.99,2005-07-07T18:22:30Z,2020-02-15T06:59:56Z +14403,535,1,4718,6.99,2005-07-08T12:32:08Z,2020-02-15T06:59:56Z +14404,535,1,4743,2.99,2005-07-08T13:42:36Z,2020-02-15T06:59:56Z +14405,535,2,4914,6.99,2005-07-08T21:30:53Z,2020-02-15T06:59:56Z +14406,535,1,5588,0.99,2005-07-10T04:21:10Z,2020-02-15T06:59:56Z +14407,535,2,5890,8.99,2005-07-10T20:00:25Z,2020-02-15T06:59:56Z +14408,535,1,6504,2.99,2005-07-12T03:19:14Z,2020-02-15T06:59:56Z +14409,535,1,8395,2.99,2005-07-29T06:03:30Z,2020-02-15T06:59:56Z +14410,535,1,8645,4.99,2005-07-29T14:47:45Z,2020-02-15T06:59:56Z +14411,535,2,9440,0.99,2005-07-30T21:40:15Z,2020-02-15T06:59:56Z +14412,535,1,9524,4.99,2005-07-31T01:01:06Z,2020-02-15T06:59:56Z +14413,535,2,10322,5.99,2005-08-01T04:44:13Z,2020-02-15T06:59:56Z +14414,535,2,10353,3.99,2005-08-01T05:46:33Z,2020-02-15T06:59:56Z +14415,535,2,11736,8.99,2005-08-17T08:40:55Z,2020-02-15T06:59:56Z +14416,535,1,11855,7.99,2005-08-17T13:43:07Z,2020-02-15T06:59:56Z +14417,535,2,12168,2.99,2005-08-18T01:03:52Z,2020-02-15T06:59:56Z +14418,535,1,12233,0.99,2005-08-18T03:16:54Z,2020-02-15T06:59:56Z +14419,535,2,12673,4.99,2005-08-18T19:21:56Z,2020-02-15T06:59:56Z +14420,535,1,12732,0.99,2005-08-18T21:57:50Z,2020-02-15T06:59:56Z +14421,535,2,12750,1.99,2005-08-18T22:32:39Z,2020-02-15T06:59:56Z +14422,535,1,13631,4.99,2005-08-20T07:07:37Z,2020-02-15T06:59:56Z +14423,535,1,13852,0.99,2005-08-20T14:45:23Z,2020-02-15T06:59:56Z +14424,535,1,14522,4.99,2005-08-21T15:01:34Z,2020-02-15T06:59:56Z +14425,535,2,15075,5.99,2005-08-22T11:04:52Z,2020-02-15T06:59:56Z +14426,535,1,15287,6.99,2005-08-22T19:19:37Z,2020-02-15T06:59:56Z +14427,535,1,16017,0.99,2005-08-23T21:27:11Z,2020-02-15T06:59:56Z +14428,536,1,237,0.99,2005-05-26T12:15:13Z,2020-02-15T06:59:56Z +14429,536,1,929,6.99,2005-05-30T12:32:39Z,2020-02-15T06:59:56Z +14430,536,1,1582,4.99,2005-06-16T04:31:57Z,2020-02-15T06:59:56Z +14431,536,2,1962,2.99,2005-06-17T09:08:58Z,2020-02-15T06:59:56Z +14432,536,2,2403,2.99,2005-06-18T16:33:22Z,2020-02-15T06:59:56Z +14433,536,1,3483,4.99,2005-07-05T23:13:51Z,2020-02-15T06:59:56Z +14434,536,1,3514,0.99,2005-07-06T00:46:54Z,2020-02-15T06:59:56Z +14435,536,1,4448,2.99,2005-07-07T23:17:12Z,2020-02-15T06:59:56Z +14436,536,2,5196,0.99,2005-07-09T10:43:34Z,2020-02-15T06:59:56Z +14437,536,1,6400,5.99,2005-07-11T22:43:44Z,2020-02-15T06:59:56Z +14438,536,1,7065,4.99,2005-07-27T03:53:43Z,2020-02-15T06:59:56Z +14439,536,2,8535,4.99,2005-07-29T10:32:33Z,2020-02-15T06:59:56Z +14440,536,1,8679,4.99,2005-07-29T16:07:47Z,2020-02-15T06:59:56Z +14441,536,1,8958,2.99,2005-07-30T03:34:26Z,2020-02-15T06:59:56Z +14442,536,1,9411,8.99,2005-07-30T20:38:22Z,2020-02-15T06:59:56Z +14443,536,1,9727,4.99,2005-07-31T08:39:13Z,2020-02-15T06:59:56Z +14444,536,2,10019,3.99,2005-07-31T18:20:56Z,2020-02-15T06:59:56Z +14445,536,1,11473,6.99,2005-08-02T21:52:03Z,2020-02-15T06:59:56Z +14446,536,1,11826,2.99,2005-08-17T12:43:46Z,2020-02-15T06:59:56Z +14447,536,2,11977,4.99,2005-08-17T18:01:15Z,2020-02-15T06:59:56Z +14448,536,2,12052,8.99,2005-08-17T20:57:02Z,2020-02-15T06:59:56Z +14449,536,2,13505,4.99,2005-08-20T02:05:57Z,2020-02-15T06:59:56Z +14450,536,1,15130,7.99,2005-08-22T13:04:32Z,2020-02-15T06:59:56Z +14451,536,1,15978,8.99,2005-08-23T20:08:18Z,2020-02-15T06:59:56Z +14452,536,1,15979,0.99,2005-08-23T20:08:26Z,2020-02-15T06:59:56Z +14453,537,2,603,4.99,2005-05-28T14:27:51Z,2020-02-15T06:59:56Z +14454,537,1,1445,2.99,2005-06-15T19:10:07Z,2020-02-15T06:59:56Z +14455,537,2,2184,2.99,2005-06-18T01:10:36Z,2020-02-15T06:59:56Z +14456,537,1,2586,8.99,2005-06-19T05:05:11Z,2020-02-15T06:59:56Z +14457,537,2,3134,8.99,2005-06-20T19:29:09Z,2020-02-15T06:59:56Z +14458,537,1,3555,0.99,2005-07-06T02:45:35Z,2020-02-15T06:59:56Z +14459,537,2,3853,0.99,2005-07-06T16:59:20Z,2020-02-15T06:59:56Z +14460,537,1,5630,2.99,2005-07-10T06:08:14Z,2020-02-15T06:59:56Z +14461,537,2,5877,5.99,2005-07-10T19:08:51Z,2020-02-15T06:59:56Z +14462,537,2,6310,2.99,2005-07-11T18:14:05Z,2020-02-15T06:59:56Z +14463,537,1,6409,4.99,2005-07-11T23:05:49Z,2020-02-15T06:59:56Z +14464,537,1,6746,0.99,2005-07-12T14:33:01Z,2020-02-15T06:59:56Z +14465,537,1,7179,2.99,2005-07-27T08:10:29Z,2020-02-15T06:59:56Z +14466,537,2,7810,4.99,2005-07-28T08:00:38Z,2020-02-15T06:59:56Z +14467,537,2,8126,4.99,2005-07-28T19:32:41Z,2020-02-15T06:59:56Z +14468,537,2,8256,4.99,2005-07-29T01:02:42Z,2020-02-15T06:59:56Z +14469,537,1,9967,2.99,2005-07-31T16:31:17Z,2020-02-15T06:59:56Z +14470,537,2,12984,4.99,2005-08-19T07:06:51Z,2020-02-15T06:59:56Z +14471,537,2,13885,4.99,2005-08-20T15:32:09Z,2020-02-15T06:59:56Z +14472,537,1,14010,4.99,2005-08-20T20:29:46Z,2020-02-15T06:59:56Z +14473,537,2,14506,0.99,2005-08-21T14:32:27Z,2020-02-15T06:59:56Z +14474,537,1,14670,0.99,2005-08-21T19:54:11Z,2020-02-15T06:59:56Z +14475,537,1,15149,2.99,2005-08-22T14:08:06Z,2020-02-15T06:59:56Z +14476,537,1,15832,8.99,2005-08-23T15:21:35Z,2020-02-15T06:59:56Z +14477,537,1,13419,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14478,538,2,594,2.99,2005-05-28T13:41:56Z,2020-02-15T06:59:56Z +14479,538,2,734,4.99,2005-05-29T07:38:52Z,2020-02-15T06:59:56Z +14480,538,1,1314,5.99,2005-06-15T10:21:45Z,2020-02-15T06:59:56Z +14481,538,1,1912,4.99,2005-06-17T05:18:32Z,2020-02-15T06:59:56Z +14482,538,1,2682,4.99,2005-06-19T12:18:17Z,2020-02-15T06:59:56Z +14483,538,2,3189,2.99,2005-06-20T23:19:33Z,2020-02-15T06:59:56Z +14484,538,2,3554,4.99,2005-07-06T02:37:10Z,2020-02-15T06:59:56Z +14485,538,2,5135,8.99,2005-07-09T07:53:22Z,2020-02-15T06:59:56Z +14486,538,1,5369,4.99,2005-07-09T18:42:16Z,2020-02-15T06:59:56Z +14487,538,1,5486,2.99,2005-07-09T23:57:44Z,2020-02-15T06:59:56Z +14488,538,1,5898,2.99,2005-07-10T20:18:09Z,2020-02-15T06:59:56Z +14489,538,2,6130,2.99,2005-07-11T08:19:56Z,2020-02-15T06:59:56Z +14490,538,1,6332,0.99,2005-07-11T19:19:06Z,2020-02-15T06:59:56Z +14491,538,2,6936,0.99,2005-07-26T23:13:34Z,2020-02-15T06:59:56Z +14492,538,1,7694,0.99,2005-07-28T03:39:25Z,2020-02-15T06:59:56Z +14493,538,1,8765,0.99,2005-07-29T19:40:08Z,2020-02-15T06:59:56Z +14494,538,1,9307,0.99,2005-07-30T16:52:43Z,2020-02-15T06:59:56Z +14495,538,1,9643,4.99,2005-07-31T05:35:48Z,2020-02-15T06:59:56Z +14496,538,2,9897,4.99,2005-07-31T14:11:57Z,2020-02-15T06:59:56Z +14497,538,2,9939,8.99,2005-07-31T15:29:00Z,2020-02-15T06:59:56Z +14498,538,2,10701,3.99,2005-08-01T18:28:17Z,2020-02-15T06:59:56Z +14499,538,1,10732,5.99,2005-08-01T19:25:18Z,2020-02-15T06:59:56Z +14500,538,1,10962,4.99,2005-08-02T03:48:13Z,2020-02-15T06:59:56Z +14501,538,2,12089,5.99,2005-08-17T22:20:29Z,2020-02-15T06:59:56Z +14502,538,1,13544,1.99,2005-08-20T03:44:26Z,2020-02-15T06:59:56Z +14503,538,2,13770,4.99,2005-08-20T11:45:54Z,2020-02-15T06:59:56Z +14504,538,2,14572,2.99,2005-08-21T16:44:31Z,2020-02-15T06:59:56Z +14505,538,1,14591,0.99,2005-08-21T17:30:09Z,2020-02-15T06:59:56Z +14506,538,1,15343,6.99,2005-08-22T21:01:25Z,2020-02-15T06:59:56Z +14507,539,2,250,4.99,2005-05-26T14:30:24Z,2020-02-15T06:59:56Z +14508,539,1,342,0.99,2005-05-27T04:11:04Z,2020-02-15T06:59:56Z +14509,539,2,1282,3.99,2005-06-15T08:25:33Z,2020-02-15T06:59:56Z +14510,539,1,1327,0.99,2005-06-15T11:11:39Z,2020-02-15T06:59:56Z +14511,539,2,1444,4.99,2005-06-15T19:08:16Z,2020-02-15T06:59:56Z +14512,539,1,4035,2.99,2005-07-07T02:45:02Z,2020-02-15T06:59:56Z +14513,539,1,4247,0.99,2005-07-07T13:51:54Z,2020-02-15T06:59:56Z +14514,539,2,5086,4.99,2005-07-09T05:40:04Z,2020-02-15T06:59:56Z +14515,539,2,5139,7.99,2005-07-09T08:01:51Z,2020-02-15T06:59:56Z +14516,539,2,5493,2.99,2005-07-10T00:11:44Z,2020-02-15T06:59:56Z +14517,539,2,6874,5.99,2005-07-12T20:20:53Z,2020-02-15T06:59:56Z +14518,539,1,7781,2.99,2005-07-28T07:13:20Z,2020-02-15T06:59:56Z +14519,539,2,8247,6.99,2005-07-29T00:41:38Z,2020-02-15T06:59:56Z +14520,539,2,8761,5.99,2005-07-29T19:26:47Z,2020-02-15T06:59:56Z +14521,539,2,9250,0.99,2005-07-30T14:18:16Z,2020-02-15T06:59:56Z +14522,539,1,9777,7.99,2005-07-31T10:01:06Z,2020-02-15T06:59:56Z +14523,539,1,9796,4.99,2005-07-31T10:52:43Z,2020-02-15T06:59:56Z +14524,539,2,10922,3.99,2005-08-02T02:14:40Z,2020-02-15T06:59:56Z +14525,539,1,12848,2.99,2005-08-19T02:05:11Z,2020-02-15T06:59:56Z +14526,539,2,13615,2.99,2005-08-20T06:28:53Z,2020-02-15T06:59:56Z +14527,539,2,13778,5.99,2005-08-20T12:03:44Z,2020-02-15T06:59:56Z +14528,539,1,15356,2.99,2005-08-22T21:24:19Z,2020-02-15T06:59:56Z +14529,540,2,1263,2.99,2005-06-15T06:56:39Z,2020-02-15T06:59:56Z +14530,540,2,1290,4.99,2005-06-15T08:52:44Z,2020-02-15T06:59:56Z +14531,540,2,2640,2.99,2005-06-19T09:26:13Z,2020-02-15T06:59:56Z +14532,540,1,2953,3.99,2005-06-20T06:39:11Z,2020-02-15T06:59:56Z +14533,540,1,3340,3.99,2005-06-21T10:37:23Z,2020-02-15T06:59:56Z +14534,540,2,4628,4.99,2005-07-08T08:25:52Z,2020-02-15T06:59:56Z +14535,540,2,4991,4.99,2005-07-09T00:49:03Z,2020-02-15T06:59:56Z +14536,540,1,6103,2.99,2005-07-11T06:59:55Z,2020-02-15T06:59:56Z +14537,540,2,6145,7.99,2005-07-11T09:07:01Z,2020-02-15T06:59:56Z +14538,540,2,6182,2.99,2005-07-11T11:11:38Z,2020-02-15T06:59:56Z +14539,540,1,6748,6.99,2005-07-12T14:39:27Z,2020-02-15T06:59:56Z +14540,540,1,6919,0.99,2005-07-12T22:32:17Z,2020-02-15T06:59:56Z +14541,540,2,9762,4.99,2005-07-31T09:32:54Z,2020-02-15T06:59:56Z +14542,540,2,9815,2.99,2005-07-31T11:30:51Z,2020-02-15T06:59:56Z +14543,540,1,10924,8.99,2005-08-02T02:20:19Z,2020-02-15T06:59:56Z +14544,540,1,11198,3.99,2005-08-02T11:45:15Z,2020-02-15T06:59:56Z +14545,540,2,11324,4.99,2005-08-02T16:31:17Z,2020-02-15T06:59:56Z +14546,540,2,11432,6.99,2005-08-02T20:10:01Z,2020-02-15T06:59:56Z +14547,540,2,12058,8.99,2005-08-17T21:07:41Z,2020-02-15T06:59:56Z +14548,540,2,12201,4.99,2005-08-18T02:14:06Z,2020-02-15T06:59:56Z +14549,540,1,12300,6.99,2005-08-18T05:36:14Z,2020-02-15T06:59:56Z +14550,540,2,14910,0.99,2005-08-22T04:50:52Z,2020-02-15T06:59:56Z +14551,540,2,15079,2.99,2005-08-22T11:09:56Z,2020-02-15T06:59:56Z +14552,540,2,15953,3.99,2005-08-23T19:13:46Z,2020-02-15T06:59:56Z +14553,541,1,1021,7.99,2005-05-31T03:16:15Z,2020-02-15T06:59:56Z +14554,541,1,1066,4.99,2005-05-31T09:07:33Z,2020-02-15T06:59:56Z +14555,541,2,1986,2.99,2005-06-17T10:34:59Z,2020-02-15T06:59:56Z +14556,541,1,2708,6.99,2005-06-19T13:59:05Z,2020-02-15T06:59:56Z +14557,541,1,5018,2.99,2005-07-09T02:01:05Z,2020-02-15T06:59:56Z +14558,541,2,5197,4.99,2005-07-09T10:43:54Z,2020-02-15T06:59:56Z +14559,541,2,6468,7.99,2005-07-12T01:27:09Z,2020-02-15T06:59:56Z +14560,541,2,6718,2.99,2005-07-12T13:38:06Z,2020-02-15T06:59:56Z +14561,541,1,8113,8.99,2005-07-28T19:14:00Z,2020-02-15T06:59:56Z +14562,541,1,8322,4.99,2005-07-29T03:52:49Z,2020-02-15T06:59:56Z +14563,541,2,9603,0.99,2005-07-31T03:43:43Z,2020-02-15T06:59:56Z +14564,541,1,10306,5.99,2005-08-01T04:19:18Z,2020-02-15T06:59:56Z +14565,541,2,11273,0.99,2005-08-02T14:20:55Z,2020-02-15T06:59:56Z +14566,541,1,12306,4.99,2005-08-18T05:47:55Z,2020-02-15T06:59:56Z +14567,541,2,12395,4.99,2005-08-18T09:06:30Z,2020-02-15T06:59:56Z +14568,541,1,12894,7.99,2005-08-19T03:49:28Z,2020-02-15T06:59:56Z +14569,541,2,13239,4.99,2005-08-19T16:22:13Z,2020-02-15T06:59:56Z +14570,541,2,13640,0.99,2005-08-20T07:22:53Z,2020-02-15T06:59:56Z +14571,541,2,14938,6.99,2005-08-22T05:52:39Z,2020-02-15T06:59:56Z +14572,541,1,15071,4.99,2005-08-22T10:58:43Z,2020-02-15T06:59:56Z +14573,541,2,15141,3.99,2005-08-22T13:41:49Z,2020-02-15T06:59:56Z +14574,541,1,15223,1.99,2005-08-22T17:13:39Z,2020-02-15T06:59:56Z +14575,541,1,15421,0.99,2005-08-22T23:56:37Z,2020-02-15T06:59:56Z +14576,541,2,15924,1.99,2005-08-23T18:08:59Z,2020-02-15T06:59:56Z +14577,542,1,220,4.99,2005-05-26T10:06:49Z,2020-02-15T06:59:56Z +14578,542,2,376,4.99,2005-05-27T08:58:15Z,2020-02-15T06:59:56Z +14579,542,1,2610,4.99,2005-06-19T07:16:20Z,2020-02-15T06:59:56Z +14580,542,2,2957,10.99,2005-06-20T06:53:47Z,2020-02-15T06:59:56Z +14581,542,2,5293,0.99,2005-07-09T15:17:23Z,2020-02-15T06:59:56Z +14582,542,1,5477,6.99,2005-07-09T23:43:49Z,2020-02-15T06:59:56Z +14583,542,2,6077,5.99,2005-07-11T05:06:08Z,2020-02-15T06:59:56Z +14584,542,2,6325,5.99,2005-07-11T19:06:01Z,2020-02-15T06:59:56Z +14585,542,1,6887,9.99,2005-07-12T21:00:23Z,2020-02-15T06:59:56Z +14586,542,2,7672,8.99,2005-07-28T02:49:41Z,2020-02-15T06:59:56Z +14587,542,1,8533,4.99,2005-07-29T10:29:16Z,2020-02-15T06:59:56Z +14588,542,2,8544,3.99,2005-07-29T11:02:08Z,2020-02-15T06:59:56Z +14589,542,1,10280,4.99,2005-08-01T03:27:15Z,2020-02-15T06:59:56Z +14590,542,2,11583,0.99,2005-08-17T02:08:13Z,2020-02-15T06:59:56Z +14591,542,2,11903,2.99,2005-08-17T15:37:45Z,2020-02-15T06:59:56Z +14592,542,1,12819,0.99,2005-08-19T01:05:05Z,2020-02-15T06:59:56Z +14593,542,1,13447,0.99,2005-08-20T00:09:36Z,2020-02-15T06:59:56Z +14594,542,2,14982,9.99,2005-08-22T07:20:55Z,2020-02-15T06:59:56Z +14595,543,1,243,6.99,2005-05-26T13:06:05Z,2020-02-15T06:59:56Z +14596,543,2,476,1.99,2005-05-27T22:31:36Z,2020-02-15T06:59:56Z +14597,543,2,1720,4.99,2005-06-16T15:00:14Z,2020-02-15T06:59:56Z +14598,543,1,2426,2.99,2005-06-18T17:40:44Z,2020-02-15T06:59:56Z +14599,543,2,3070,4.99,2005-06-20T14:15:39Z,2020-02-15T06:59:56Z +14600,543,1,3128,2.99,2005-06-20T18:41:47Z,2020-02-15T06:59:56Z +14601,543,2,3467,5.99,2005-06-21T22:19:25Z,2020-02-15T06:59:56Z +14602,543,1,4887,2.99,2005-07-08T19:59:14Z,2020-02-15T06:59:56Z +14603,543,2,5467,4.99,2005-07-09T23:05:47Z,2020-02-15T06:59:56Z +14604,543,2,6013,4.99,2005-07-11T02:02:03Z,2020-02-15T06:59:56Z +14605,543,2,7312,2.99,2005-07-27T13:03:14Z,2020-02-15T06:59:56Z +14606,543,1,8580,2.99,2005-07-29T12:00:27Z,2020-02-15T06:59:56Z +14607,543,2,8845,4.99,2005-07-29T23:06:13Z,2020-02-15T06:59:56Z +14608,543,1,9505,2.99,2005-07-31T00:11:19Z,2020-02-15T06:59:56Z +14609,543,1,9999,0.99,2005-07-31T17:40:53Z,2020-02-15T06:59:56Z +14610,543,2,10257,0.99,2005-08-01T02:49:43Z,2020-02-15T06:59:56Z +14611,543,1,10520,4.99,2005-08-01T11:45:58Z,2020-02-15T06:59:56Z +14612,543,2,11241,9.99,2005-08-02T13:29:24Z,2020-02-15T06:59:56Z +14613,543,1,11681,2.99,2005-08-17T06:13:30Z,2020-02-15T06:59:56Z +14614,543,1,13187,0.99,2005-08-19T14:24:48Z,2020-02-15T06:59:56Z +14615,543,2,15281,1.99,2005-08-22T19:10:26Z,2020-02-15T06:59:56Z +14616,543,1,15785,1.99,2005-08-23T13:46:27Z,2020-02-15T06:59:56Z +14617,544,1,397,2.99,2005-05-27T12:29:02Z,2020-02-15T06:59:56Z +14618,544,1,864,2.99,2005-05-30T03:27:17Z,2020-02-15T06:59:56Z +14619,544,1,1248,1.99,2005-06-15T05:33:52Z,2020-02-15T06:59:56Z +14620,544,2,1434,10.99,2005-06-15T18:30:46Z,2020-02-15T06:59:56Z +14621,544,1,2373,0.99,2005-06-18T14:37:57Z,2020-02-15T06:59:56Z +14622,544,1,2395,2.99,2005-06-18T15:45:15Z,2020-02-15T06:59:56Z +14623,544,1,4395,0.99,2005-07-07T21:13:22Z,2020-02-15T06:59:56Z +14624,544,1,4703,2.99,2005-07-08T11:44:56Z,2020-02-15T06:59:56Z +14625,544,2,4847,6.99,2005-07-08T18:29:13Z,2020-02-15T06:59:56Z +14626,544,2,8566,2.99,2005-07-29T11:35:46Z,2020-02-15T06:59:56Z +14627,544,1,8937,5.99,2005-07-30T02:53:21Z,2020-02-15T06:59:56Z +14628,544,1,8963,9.99,2005-07-30T03:46:26Z,2020-02-15T06:59:56Z +14629,544,1,10735,0.99,2005-08-01T19:29:45Z,2020-02-15T06:59:56Z +14630,544,1,11401,3.99,2005-08-02T19:05:06Z,2020-02-15T06:59:56Z +14631,544,2,11766,2.99,2005-08-17T09:58:40Z,2020-02-15T06:59:56Z +14632,544,2,12640,3.99,2005-08-18T18:14:49Z,2020-02-15T06:59:56Z +14633,544,2,14142,4.99,2005-08-21T02:07:43Z,2020-02-15T06:59:56Z +14634,544,1,14498,4.99,2005-08-21T14:10:44Z,2020-02-15T06:59:56Z +14635,544,2,14651,8.99,2005-08-21T19:31:09Z,2020-02-15T06:59:56Z +14636,544,1,14981,2.99,2005-08-22T07:19:05Z,2020-02-15T06:59:56Z +14637,544,1,15219,6.99,2005-08-22T17:00:31Z,2020-02-15T06:59:56Z +14638,544,1,15605,4.99,2005-08-23T06:48:47Z,2020-02-15T06:59:56Z +14639,545,2,248,0.99,2005-05-26T14:07:58Z,2020-02-15T06:59:56Z +14640,545,2,715,3.99,2005-05-29T04:22:41Z,2020-02-15T06:59:56Z +14641,545,1,2123,2.99,2005-06-17T20:48:30Z,2020-02-15T06:59:56Z +14642,545,2,3693,8.99,2005-07-06T09:56:09Z,2020-02-15T06:59:56Z +14643,545,1,3975,5.99,2005-07-06T23:00:09Z,2020-02-15T06:59:56Z +14644,545,1,4597,5.99,2005-07-08T06:43:42Z,2020-02-15T06:59:56Z +14645,545,1,5264,0.99,2005-07-09T14:11:28Z,2020-02-15T06:59:56Z +14646,545,1,7078,5.99,2005-07-27T04:16:37Z,2020-02-15T06:59:56Z +14647,545,2,8599,3.99,2005-07-29T12:58:52Z,2020-02-15T06:59:56Z +14648,545,2,8848,2.99,2005-07-29T23:20:58Z,2020-02-15T06:59:56Z +14649,545,2,9810,2.99,2005-07-31T11:22:41Z,2020-02-15T06:59:56Z +14650,545,2,9942,4.99,2005-07-31T15:35:43Z,2020-02-15T06:59:56Z +14651,545,2,10931,2.99,2005-08-02T02:44:59Z,2020-02-15T06:59:56Z +14652,545,2,11760,2.99,2005-08-17T09:44:22Z,2020-02-15T06:59:56Z +14653,545,1,12098,4.99,2005-08-17T22:38:31Z,2020-02-15T06:59:56Z +14654,545,1,12349,2.99,2005-08-18T07:23:42Z,2020-02-15T06:59:56Z +14655,545,2,12667,10.99,2005-08-18T19:11:45Z,2020-02-15T06:59:56Z +14656,545,1,12800,2.99,2005-08-19T00:27:11Z,2020-02-15T06:59:56Z +14657,545,1,13595,4.99,2005-08-20T05:54:27Z,2020-02-15T06:59:56Z +14658,545,1,15585,0.99,2005-08-23T05:55:22Z,2020-02-15T06:59:56Z +14659,545,2,15998,4.99,2005-08-23T20:41:09Z,2020-02-15T06:59:56Z +14660,546,1,197,5.99,2005-05-26T06:59:21Z,2020-02-15T06:59:56Z +14661,546,1,482,6.99,2005-05-27T22:53:02Z,2020-02-15T06:59:56Z +14662,546,1,1181,1.99,2005-06-15T00:42:17Z,2020-02-15T06:59:56Z +14663,546,2,1403,0.99,2005-06-15T16:31:59Z,2020-02-15T06:59:56Z +14664,546,1,1787,3.99,2005-06-16T19:30:59Z,2020-02-15T06:59:56Z +14665,546,1,2361,5.99,2005-06-18T13:19:05Z,2020-02-15T06:59:56Z +14666,546,1,3738,4.99,2005-07-06T11:50:57Z,2020-02-15T06:59:56Z +14667,546,2,4664,0.99,2005-07-08T10:01:28Z,2020-02-15T06:59:56Z +14668,546,1,4734,0.99,2005-07-08T13:12:12Z,2020-02-15T06:59:56Z +14669,546,1,5629,0.99,2005-07-10T06:02:25Z,2020-02-15T06:59:56Z +14670,546,2,6758,9.99,2005-07-12T15:13:49Z,2020-02-15T06:59:56Z +14671,546,1,6786,2.99,2005-07-12T16:32:33Z,2020-02-15T06:59:56Z +14672,546,2,6910,6.99,2005-07-12T22:11:21Z,2020-02-15T06:59:56Z +14673,546,1,8532,4.99,2005-07-29T10:26:56Z,2020-02-15T06:59:56Z +14674,546,1,9087,4.99,2005-07-30T08:19:47Z,2020-02-15T06:59:56Z +14675,546,1,,3.99,2005-07-30T21:16:20Z,2020-02-15T06:59:56Z +14676,546,2,9626,1.99,2005-07-31T04:37:41Z,2020-02-15T06:59:56Z +14677,546,2,10370,0.99,2005-08-01T06:18:04Z,2020-02-15T06:59:56Z +14678,546,2,11352,5.99,2005-08-02T17:29:39Z,2020-02-15T06:59:56Z +14679,546,1,11797,4.99,2005-08-17T11:17:21Z,2020-02-15T06:59:56Z +14680,546,2,12591,2.99,2005-08-18T16:16:41Z,2020-02-15T06:59:56Z +14681,546,2,13850,5.99,2005-08-20T14:43:03Z,2020-02-15T06:59:56Z +14682,546,1,14797,4.99,2005-08-22T00:41:24Z,2020-02-15T06:59:56Z +14683,546,1,14829,2.99,2005-08-22T01:35:37Z,2020-02-15T06:59:56Z +14684,546,1,14929,3.99,2005-08-22T05:32:38Z,2020-02-15T06:59:56Z +14685,546,2,15565,4.99,2005-08-23T05:13:09Z,2020-02-15T06:59:56Z +14686,547,1,306,0.99,2005-05-26T21:31:57Z,2020-02-15T06:59:56Z +14687,547,2,443,8.99,2005-05-27T18:35:20Z,2020-02-15T06:59:56Z +14688,547,2,1094,1.99,2005-05-31T13:03:49Z,2020-02-15T06:59:56Z +14689,547,2,2022,8.99,2005-06-17T12:44:39Z,2020-02-15T06:59:56Z +14690,547,2,3679,4.99,2005-07-06T09:15:57Z,2020-02-15T06:59:56Z +14691,547,1,3765,4.99,2005-07-06T13:01:47Z,2020-02-15T06:59:56Z +14692,547,2,5327,4.99,2005-07-09T16:39:49Z,2020-02-15T06:59:56Z +14693,547,2,5854,4.99,2005-07-10T17:47:34Z,2020-02-15T06:59:56Z +14694,547,1,6605,0.99,2005-07-12T08:01:07Z,2020-02-15T06:59:56Z +14695,547,2,7420,4.99,2005-07-27T17:09:39Z,2020-02-15T06:59:56Z +14696,547,2,7547,3.99,2005-07-27T21:51:48Z,2020-02-15T06:59:56Z +14697,547,1,7835,4.99,2005-07-28T08:49:39Z,2020-02-15T06:59:56Z +14698,547,1,7859,3.99,2005-07-28T09:57:17Z,2020-02-15T06:59:56Z +14699,547,1,8828,2.99,2005-07-29T22:32:54Z,2020-02-15T06:59:56Z +14700,547,1,10903,2.99,2005-08-02T01:41:59Z,2020-02-15T06:59:56Z +14701,547,1,10980,4.99,2005-08-02T04:17:32Z,2020-02-15T06:59:56Z +14702,547,2,11170,5.99,2005-08-02T10:21:53Z,2020-02-15T06:59:56Z +14703,547,2,11361,0.99,2005-08-02T17:46:34Z,2020-02-15T06:59:56Z +14704,547,1,12579,0.99,2005-08-18T15:47:49Z,2020-02-15T06:59:56Z +14705,547,2,12943,2.99,2005-08-19T05:46:26Z,2020-02-15T06:59:56Z +14706,547,2,13307,2.99,2005-08-19T18:58:44Z,2020-02-15T06:59:56Z +14707,547,1,14510,9.99,2005-08-21T14:44:41Z,2020-02-15T06:59:56Z +14708,547,2,14884,4.99,2005-08-22T03:57:08Z,2020-02-15T06:59:56Z +14709,548,2,177,6.99,2005-05-26T04:14:29Z,2020-02-15T06:59:56Z +14710,548,1,743,4.99,2005-05-29T08:39:02Z,2020-02-15T06:59:56Z +14711,548,2,872,3.99,2005-05-30T05:03:04Z,2020-02-15T06:59:56Z +14712,548,1,1326,1.99,2005-06-15T11:07:39Z,2020-02-15T06:59:56Z +14713,548,1,2280,2.99,2005-06-18T06:46:54Z,2020-02-15T06:59:56Z +14714,548,2,2978,0.99,2005-06-20T08:25:16Z,2020-02-15T06:59:56Z +14715,548,1,3686,2.99,2005-07-06T09:37:50Z,2020-02-15T06:59:56Z +14716,548,2,3777,2.99,2005-07-06T13:36:48Z,2020-02-15T06:59:56Z +14717,548,1,4155,7.99,2005-07-07T09:00:49Z,2020-02-15T06:59:56Z +14718,548,2,5138,4.99,2005-07-09T08:00:46Z,2020-02-15T06:59:56Z +14719,548,2,6490,4.99,2005-07-12T02:28:03Z,2020-02-15T06:59:56Z +14720,548,1,9614,5.99,2005-07-31T03:59:31Z,2020-02-15T06:59:56Z +14721,548,2,10318,0.99,2005-08-01T04:36:53Z,2020-02-15T06:59:56Z +14722,548,1,12860,5.99,2005-08-19T02:24:41Z,2020-02-15T06:59:56Z +14723,548,1,13691,3.99,2005-08-20T09:07:39Z,2020-02-15T06:59:56Z +14724,548,2,13730,7.99,2005-08-20T10:17:09Z,2020-02-15T06:59:56Z +14725,548,2,14188,0.99,2005-08-21T03:32:04Z,2020-02-15T06:59:56Z +14726,548,2,14723,6.99,2005-08-21T21:52:32Z,2020-02-15T06:59:56Z +14727,548,1,13584,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14728,549,1,6,0.99,2005-05-24T23:08:07Z,2020-02-15T06:59:56Z +14729,549,2,852,4.99,2005-05-30T01:36:57Z,2020-02-15T06:59:56Z +14730,549,1,906,3.99,2005-05-30T10:30:38Z,2020-02-15T06:59:56Z +14731,549,2,1086,4.99,2005-05-31T11:17:37Z,2020-02-15T06:59:56Z +14732,549,1,2050,2.99,2005-06-17T15:07:30Z,2020-02-15T06:59:56Z +14733,549,2,3523,2.99,2005-07-06T01:01:38Z,2020-02-15T06:59:56Z +14734,549,2,3892,4.99,2005-07-06T18:58:58Z,2020-02-15T06:59:56Z +14735,549,1,4447,0.99,2005-07-07T23:15:28Z,2020-02-15T06:59:56Z +14736,549,1,7252,7.99,2005-07-27T10:45:28Z,2020-02-15T06:59:56Z +14737,549,2,8239,0.99,2005-07-29T00:31:39Z,2020-02-15T06:59:56Z +14738,549,1,8316,4.99,2005-07-29T03:38:49Z,2020-02-15T06:59:56Z +14739,549,2,9445,7.99,2005-07-30T21:50:42Z,2020-02-15T06:59:56Z +14740,549,2,9511,9.99,2005-07-31T00:25:05Z,2020-02-15T06:59:56Z +14741,549,2,9887,0.99,2005-07-31T14:00:32Z,2020-02-15T06:59:56Z +14742,549,2,10281,0.99,2005-08-01T03:28:33Z,2020-02-15T06:59:56Z +14743,549,2,11737,4.99,2005-08-17T08:42:08Z,2020-02-15T06:59:56Z +14744,549,2,11878,2.99,2005-08-17T14:23:52Z,2020-02-15T06:59:56Z +14745,549,2,12634,2.99,2005-08-18T17:58:14Z,2020-02-15T06:59:56Z +14746,549,2,12747,4.99,2005-08-18T22:28:22Z,2020-02-15T06:59:56Z +14747,549,1,14434,0.99,2005-08-21T11:40:46Z,2020-02-15T06:59:56Z +14748,550,2,922,7.99,2005-05-30T11:55:55Z,2020-02-15T06:59:56Z +14749,550,1,1233,6.99,2005-06-15T04:18:37Z,2020-02-15T06:59:56Z +14750,550,1,1863,3.99,2005-06-17T01:31:46Z,2020-02-15T06:59:56Z +14751,550,2,1883,4.99,2005-06-17T03:18:51Z,2020-02-15T06:59:56Z +14752,550,1,3154,2.99,2005-06-20T20:44:40Z,2020-02-15T06:59:56Z +14753,550,2,3236,9.99,2005-06-21T02:47:43Z,2020-02-15T06:59:56Z +14754,550,1,3272,10.99,2005-06-21T05:18:27Z,2020-02-15T06:59:56Z +14755,550,1,3979,4.99,2005-07-06T23:04:35Z,2020-02-15T06:59:56Z +14756,550,1,5727,4.99,2005-07-10T11:25:28Z,2020-02-15T06:59:56Z +14757,550,1,6695,2.99,2005-07-12T12:39:39Z,2020-02-15T06:59:56Z +14758,550,1,7030,0.99,2005-07-27T03:01:40Z,2020-02-15T06:59:56Z +14759,550,2,7838,2.99,2005-07-28T09:00:21Z,2020-02-15T06:59:56Z +14760,550,1,8628,6.99,2005-07-29T14:06:24Z,2020-02-15T06:59:56Z +14761,550,2,8838,2.99,2005-07-29T22:52:23Z,2020-02-15T06:59:56Z +14762,550,1,8959,8.99,2005-07-30T03:35:49Z,2020-02-15T06:59:56Z +14763,550,1,9616,2.99,2005-07-31T04:05:01Z,2020-02-15T06:59:56Z +14764,550,1,9748,0.99,2005-07-31T09:17:56Z,2020-02-15T06:59:56Z +14765,550,2,10140,4.99,2005-07-31T22:03:20Z,2020-02-15T06:59:56Z +14766,550,1,11246,2.99,2005-08-02T13:33:56Z,2020-02-15T06:59:56Z +14767,550,2,11320,0.99,2005-08-02T16:13:28Z,2020-02-15T06:59:56Z +14768,550,1,11969,4.99,2005-08-17T17:49:37Z,2020-02-15T06:59:56Z +14769,550,1,12063,2.99,2005-08-17T21:24:48Z,2020-02-15T06:59:56Z +14770,550,2,12077,4.99,2005-08-17T21:59:14Z,2020-02-15T06:59:56Z +14771,550,1,13114,10.99,2005-08-19T11:27:32Z,2020-02-15T06:59:56Z +14772,550,2,14071,2.99,2005-08-20T23:01:56Z,2020-02-15T06:59:56Z +14773,550,2,14127,4.99,2005-08-21T01:33:32Z,2020-02-15T06:59:56Z +14774,550,2,14375,6.99,2005-08-21T09:46:35Z,2020-02-15T06:59:56Z +14775,550,1,14687,4.99,2005-08-21T20:32:16Z,2020-02-15T06:59:56Z +14776,550,2,15431,9.99,2005-08-23T00:26:47Z,2020-02-15T06:59:56Z +14777,550,1,15883,0.99,2005-08-23T16:44:56Z,2020-02-15T06:59:56Z +14778,550,2,15977,4.99,2005-08-23T20:07:10Z,2020-02-15T06:59:56Z +14779,550,2,11757,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14780,551,2,155,7.99,2005-05-26T01:15:05Z,2020-02-15T06:59:56Z +14781,551,1,728,2.99,2005-05-29T06:12:38Z,2020-02-15T06:59:56Z +14782,551,1,795,0.99,2005-05-29T16:57:39Z,2020-02-15T06:59:56Z +14783,551,2,969,4.99,2005-05-30T19:23:48Z,2020-02-15T06:59:56Z +14784,551,2,1005,3.99,2005-05-31T00:53:25Z,2020-02-15T06:59:56Z +14785,551,2,2069,4.99,2005-06-17T16:19:39Z,2020-02-15T06:59:56Z +14786,551,1,2776,3.99,2005-06-19T18:16:24Z,2020-02-15T06:59:56Z +14787,551,2,3996,5.99,2005-07-06T23:46:43Z,2020-02-15T06:59:56Z +14788,551,1,5201,1.99,2005-07-09T10:52:53Z,2020-02-15T06:59:56Z +14789,551,2,5528,0.99,2005-07-10T02:09:21Z,2020-02-15T06:59:56Z +14790,551,1,6041,0.99,2005-07-11T03:14:58Z,2020-02-15T06:59:56Z +14791,551,2,7095,9.99,2005-07-27T04:51:15Z,2020-02-15T06:59:56Z +14792,551,1,8986,0.99,2005-07-30T04:37:20Z,2020-02-15T06:59:56Z +14793,551,1,9287,2.99,2005-07-30T15:35:39Z,2020-02-15T06:59:56Z +14794,551,2,9765,4.99,2005-07-31T09:44:40Z,2020-02-15T06:59:56Z +14795,551,2,11380,0.99,2005-08-02T18:17:32Z,2020-02-15T06:59:56Z +14796,551,2,11883,2.99,2005-08-17T14:41:28Z,2020-02-15T06:59:56Z +14797,551,2,12208,4.99,2005-08-18T02:25:25Z,2020-02-15T06:59:56Z +14798,551,2,12868,0.99,2005-08-19T02:47:19Z,2020-02-15T06:59:56Z +14799,551,1,13439,3.99,2005-08-19T23:42:16Z,2020-02-15T06:59:56Z +14800,551,1,14420,0.99,2005-08-21T11:16:15Z,2020-02-15T06:59:56Z +14801,551,2,14609,4.99,2005-08-21T17:57:26Z,2020-02-15T06:59:56Z +14802,551,2,14633,2.99,2005-08-21T18:51:10Z,2020-02-15T06:59:56Z +14803,551,1,14833,2.99,2005-08-22T01:45:18Z,2020-02-15T06:59:56Z +14804,551,1,15377,4.99,2005-08-22T22:22:33Z,2020-02-15T06:59:56Z +14805,551,2,15390,6.99,2005-08-22T22:57:25Z,2020-02-15T06:59:56Z +14806,552,2,174,0.99,2005-05-26T03:44:10Z,2020-02-15T06:59:56Z +14807,552,2,2320,0.99,2005-06-18T09:24:50Z,2020-02-15T06:59:56Z +14808,552,2,3397,4.99,2005-06-21T15:30:11Z,2020-02-15T06:59:56Z +14809,552,1,4477,6.99,2005-07-08T00:38:24Z,2020-02-15T06:59:56Z +14810,552,1,5213,7.99,2005-07-09T11:39:43Z,2020-02-15T06:59:56Z +14811,552,2,6189,4.99,2005-07-11T11:36:03Z,2020-02-15T06:59:56Z +14812,552,1,7772,2.99,2005-07-28T06:59:09Z,2020-02-15T06:59:56Z +14813,552,1,8085,2.99,2005-07-28T18:13:15Z,2020-02-15T06:59:56Z +14814,552,2,8192,2.99,2005-07-28T22:49:11Z,2020-02-15T06:59:56Z +14815,552,2,8614,5.99,2005-07-29T13:32:05Z,2020-02-15T06:59:56Z +14816,552,2,8894,4.99,2005-07-30T00:48:31Z,2020-02-15T06:59:56Z +14817,552,1,9342,8.99,2005-07-30T18:09:56Z,2020-02-15T06:59:56Z +14818,552,1,11146,1.99,2005-08-02T09:45:32Z,2020-02-15T06:59:56Z +14819,552,2,11205,4.99,2005-08-02T11:56:54Z,2020-02-15T06:59:56Z +14820,552,2,11300,7.99,2005-08-02T15:37:42Z,2020-02-15T06:59:56Z +14821,552,2,12433,4.99,2005-08-18T10:37:49Z,2020-02-15T06:59:56Z +14822,552,2,12880,2.99,2005-08-19T03:27:17Z,2020-02-15T06:59:56Z +14823,552,2,13574,2.99,2005-08-20T05:10:39Z,2020-02-15T06:59:56Z +14824,552,1,13693,0.99,2005-08-20T09:11:42Z,2020-02-15T06:59:56Z +14825,552,2,14724,4.99,2005-08-21T21:53:47Z,2020-02-15T06:59:56Z +14826,552,2,15700,2.99,2005-08-23T10:21:21Z,2020-02-15T06:59:56Z +14827,553,2,789,4.99,2005-05-29T16:17:07Z,2020-02-15T06:59:56Z +14828,553,2,1862,3.99,2005-06-17T01:29:30Z,2020-02-15T06:59:56Z +14829,553,1,2460,8.99,2005-06-18T19:54:13Z,2020-02-15T06:59:56Z +14830,553,2,3103,6.99,2005-06-20T16:58:19Z,2020-02-15T06:59:56Z +14831,553,1,3495,6.99,2005-07-05T23:50:04Z,2020-02-15T06:59:56Z +14832,553,2,3793,4.99,2005-07-06T14:32:44Z,2020-02-15T06:59:56Z +14833,553,2,3859,2.99,2005-07-06T17:18:15Z,2020-02-15T06:59:56Z +14834,553,1,3890,4.99,2005-07-06T18:58:15Z,2020-02-15T06:59:56Z +14835,553,2,3891,4.99,2005-07-06T18:58:25Z,2020-02-15T06:59:56Z +14836,553,2,3942,4.99,2005-07-06T21:21:34Z,2020-02-15T06:59:56Z +14837,553,1,4257,4.99,2005-07-07T14:18:41Z,2020-02-15T06:59:56Z +14838,553,2,4662,0.99,2005-07-08T09:58:54Z,2020-02-15T06:59:56Z +14839,553,2,4845,4.99,2005-07-08T18:28:20Z,2020-02-15T06:59:56Z +14840,553,2,4941,3.99,2005-07-08T22:39:10Z,2020-02-15T06:59:56Z +14841,553,1,6069,2.99,2005-07-11T04:44:59Z,2020-02-15T06:59:56Z +14842,553,2,6657,0.99,2005-07-12T11:11:36Z,2020-02-15T06:59:56Z +14843,553,1,6812,6.99,2005-07-12T18:03:25Z,2020-02-15T06:59:56Z +14844,553,1,7890,4.99,2005-07-28T10:43:40Z,2020-02-15T06:59:56Z +14845,553,2,9272,4.99,2005-07-30T15:05:22Z,2020-02-15T06:59:56Z +14846,553,2,9601,2.99,2005-07-31T03:42:17Z,2020-02-15T06:59:56Z +14847,553,2,11710,4.99,2005-08-17T07:29:44Z,2020-02-15T06:59:56Z +14848,553,1,13972,2.99,2005-08-20T18:52:17Z,2020-02-15T06:59:56Z +14849,553,1,15042,4.99,2005-08-22T09:47:37Z,2020-02-15T06:59:56Z +14850,553,1,15506,0.99,2005-08-23T02:48:24Z,2020-02-15T06:59:56Z +14851,554,1,607,2.99,2005-05-28T15:02:41Z,2020-02-15T06:59:56Z +14852,554,1,817,2.99,2005-05-29T20:39:14Z,2020-02-15T06:59:56Z +14853,554,1,1959,4.99,2005-06-17T08:54:10Z,2020-02-15T06:59:56Z +14854,554,1,2279,6.99,2005-06-18T06:38:22Z,2020-02-15T06:59:56Z +14855,554,2,3278,2.99,2005-06-21T05:41:30Z,2020-02-15T06:59:56Z +14856,554,1,3312,6.99,2005-06-21T08:05:32Z,2020-02-15T06:59:56Z +14857,554,2,4902,4.99,2005-07-08T20:49:30Z,2020-02-15T06:59:56Z +14858,554,1,5527,2.99,2005-07-10T02:06:01Z,2020-02-15T06:59:56Z +14859,554,1,5968,5.99,2005-07-11T00:03:11Z,2020-02-15T06:59:56Z +14860,554,1,6144,2.99,2005-07-11T09:02:53Z,2020-02-15T06:59:56Z +14861,554,1,10612,6.99,2005-08-01T14:55:31Z,2020-02-15T06:59:56Z +14862,554,2,10829,7.99,2005-08-01T23:17:06Z,2020-02-15T06:59:56Z +14863,554,2,11589,9.99,2005-08-17T02:28:22Z,2020-02-15T06:59:56Z +14864,554,1,11873,0.99,2005-08-17T14:14:39Z,2020-02-15T06:59:56Z +14865,554,1,12010,8.99,2005-08-17T19:17:54Z,2020-02-15T06:59:56Z +14866,554,1,12014,0.99,2005-08-17T19:29:44Z,2020-02-15T06:59:56Z +14867,554,2,13139,4.99,2005-08-19T12:32:10Z,2020-02-15T06:59:56Z +14868,554,2,14015,2.99,2005-08-20T20:47:43Z,2020-02-15T06:59:56Z +14869,554,1,14098,3.99,2005-08-21T00:30:32Z,2020-02-15T06:59:56Z +14870,554,1,14469,0.99,2005-08-21T13:07:24Z,2020-02-15T06:59:56Z +14871,554,1,14626,2.99,2005-08-21T18:35:44Z,2020-02-15T06:59:56Z +14872,554,2,15690,4.99,2005-08-23T09:53:30Z,2020-02-15T06:59:56Z +14873,555,2,3232,1.99,2005-06-21T02:30:37Z,2020-02-15T06:59:56Z +14874,555,2,4875,2.99,2005-07-08T19:24:17Z,2020-02-15T06:59:56Z +14875,555,1,8161,0.99,2005-07-28T21:11:00Z,2020-02-15T06:59:56Z +14876,555,1,8245,3.99,2005-07-29T00:37:09Z,2020-02-15T06:59:56Z +14877,555,1,9299,5.99,2005-07-30T16:32:51Z,2020-02-15T06:59:56Z +14878,555,2,9990,7.99,2005-07-31T17:24:21Z,2020-02-15T06:59:56Z +14879,555,2,10076,7.99,2005-07-31T20:00:34Z,2020-02-15T06:59:56Z +14880,555,1,10921,3.99,2005-08-02T02:14:33Z,2020-02-15T06:59:56Z +14881,555,1,11168,4.99,2005-08-02T10:19:42Z,2020-02-15T06:59:56Z +14882,555,1,11718,4.99,2005-08-17T07:44:42Z,2020-02-15T06:59:56Z +14883,555,2,11747,2.99,2005-08-17T09:03:31Z,2020-02-15T06:59:56Z +14884,555,2,12091,4.99,2005-08-17T22:22:50Z,2020-02-15T06:59:56Z +14885,555,2,12150,2.99,2005-08-18T00:13:55Z,2020-02-15T06:59:56Z +14886,555,2,12182,2.99,2005-08-18T01:30:19Z,2020-02-15T06:59:56Z +14887,555,1,12388,2.99,2005-08-18T08:48:09Z,2020-02-15T06:59:56Z +14888,555,1,12883,4.99,2005-08-19T03:33:47Z,2020-02-15T06:59:56Z +14889,555,2,15102,6.99,2005-08-22T11:58:58Z,2020-02-15T06:59:56Z +14890,556,1,184,0.99,2005-05-26T05:29:49Z,2020-02-15T06:59:56Z +14891,556,2,772,5.99,2005-05-29T13:08:06Z,2020-02-15T06:59:56Z +14892,556,1,1083,3.99,2005-05-31T11:04:48Z,2020-02-15T06:59:56Z +14893,556,1,2092,6.99,2005-06-17T18:12:16Z,2020-02-15T06:59:56Z +14894,556,2,2593,5.99,2005-06-19T05:40:11Z,2020-02-15T06:59:56Z +14895,556,2,2986,0.99,2005-06-20T08:50:28Z,2020-02-15T06:59:56Z +14896,556,1,3093,4.99,2005-06-20T16:06:14Z,2020-02-15T06:59:56Z +14897,556,2,3438,6.99,2005-06-21T19:31:40Z,2020-02-15T06:59:56Z +14898,556,2,4719,2.99,2005-07-08T12:33:00Z,2020-02-15T06:59:56Z +14899,556,2,4839,3.99,2005-07-08T18:13:10Z,2020-02-15T06:59:56Z +14900,556,1,4846,0.99,2005-07-08T18:29:05Z,2020-02-15T06:59:56Z +14901,556,2,5722,0.99,2005-07-10T11:10:04Z,2020-02-15T06:59:56Z +14902,556,2,6484,2.99,2005-07-12T02:04:10Z,2020-02-15T06:59:56Z +14903,556,1,8909,5.99,2005-07-30T01:28:03Z,2020-02-15T06:59:56Z +14904,556,2,10106,4.99,2005-07-31T21:00:47Z,2020-02-15T06:59:56Z +14905,556,2,10518,6.99,2005-08-01T11:44:08Z,2020-02-15T06:59:56Z +14906,556,1,11466,1.99,2005-08-02T21:46:46Z,2020-02-15T06:59:56Z +14907,556,2,11804,3.99,2005-08-17T11:42:45Z,2020-02-15T06:59:56Z +14908,556,1,12045,4.99,2005-08-17T20:40:46Z,2020-02-15T06:59:56Z +14909,556,1,14176,2.99,2005-08-21T03:09:23Z,2020-02-15T06:59:56Z +14910,556,1,15568,2.99,2005-08-23T05:24:09Z,2020-02-15T06:59:56Z +14911,557,2,467,4.99,2005-05-27T21:10:03Z,2020-02-15T06:59:56Z +14912,557,1,478,4.99,2005-05-27T22:38:20Z,2020-02-15T06:59:56Z +14913,557,1,1666,0.99,2005-06-16T10:17:19Z,2020-02-15T06:59:56Z +14914,557,2,2988,6.99,2005-06-20T08:59:08Z,2020-02-15T06:59:56Z +14915,557,1,3050,3.99,2005-06-20T13:03:03Z,2020-02-15T06:59:56Z +14916,557,1,4651,0.99,2005-07-08T09:39:39Z,2020-02-15T06:59:56Z +14917,557,1,4851,1.99,2005-07-08T18:40:05Z,2020-02-15T06:59:56Z +14918,557,1,6459,0.99,2005-07-12T01:12:03Z,2020-02-15T06:59:56Z +14919,557,2,6713,3.99,2005-07-12T13:27:36Z,2020-02-15T06:59:56Z +14920,557,2,6823,4.99,2005-07-12T18:24:31Z,2020-02-15T06:59:56Z +14921,557,2,6898,0.99,2005-07-12T21:39:04Z,2020-02-15T06:59:56Z +14922,557,1,9336,0.99,2005-07-30T18:01:15Z,2020-02-15T06:59:56Z +14923,557,1,9341,2.99,2005-07-30T18:07:58Z,2020-02-15T06:59:56Z +14924,557,2,9366,1.99,2005-07-30T18:48:57Z,2020-02-15T06:59:56Z +14925,557,2,9367,6.99,2005-07-30T18:49:58Z,2020-02-15T06:59:56Z +14926,557,1,11181,0.99,2005-08-02T10:55:03Z,2020-02-15T06:59:56Z +14927,557,1,12555,1.99,2005-08-18T14:49:22Z,2020-02-15T06:59:56Z +14928,557,1,12789,2.99,2005-08-19T00:16:19Z,2020-02-15T06:59:56Z +14929,557,1,13540,2.99,2005-08-20T03:41:23Z,2020-02-15T06:59:56Z +14930,557,2,13794,2.99,2005-08-20T12:25:32Z,2020-02-15T06:59:56Z +14931,557,2,15236,0.99,2005-08-22T17:44:27Z,2020-02-15T06:59:56Z +14932,557,2,15570,5.99,2005-08-23T05:24:55Z,2020-02-15T06:59:56Z +14933,557,2,15914,0.99,2005-08-23T17:49:26Z,2020-02-15T06:59:56Z +14934,557,1,14278,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +14935,558,2,1967,4.99,2005-06-17T09:19:52Z,2020-02-15T06:59:56Z +14936,558,1,2411,1.99,2005-06-18T16:55:54Z,2020-02-15T06:59:56Z +14937,558,2,2544,4.99,2005-06-19T02:16:17Z,2020-02-15T06:59:56Z +14938,558,2,3016,4.99,2005-06-20T10:55:08Z,2020-02-15T06:59:56Z +14939,558,2,3451,10.99,2005-06-21T21:10:39Z,2020-02-15T06:59:56Z +14940,558,1,3731,9.99,2005-07-06T11:33:36Z,2020-02-15T06:59:56Z +14941,558,1,3954,0.99,2005-07-06T21:57:44Z,2020-02-15T06:59:56Z +14942,558,1,3990,3.99,2005-07-06T23:32:44Z,2020-02-15T06:59:56Z +14943,558,1,4192,5.99,2005-07-07T10:57:06Z,2020-02-15T06:59:56Z +14944,558,1,4932,2.99,2005-07-08T22:17:40Z,2020-02-15T06:59:56Z +14945,558,2,5375,6.99,2005-07-09T18:52:55Z,2020-02-15T06:59:56Z +14946,558,1,5492,3.99,2005-07-10T00:11:09Z,2020-02-15T06:59:56Z +14947,558,2,6278,7.99,2005-07-11T16:20:02Z,2020-02-15T06:59:56Z +14948,558,2,6479,9.99,2005-07-12T01:49:00Z,2020-02-15T06:59:56Z +14949,558,2,6742,4.99,2005-07-12T14:25:31Z,2020-02-15T06:59:56Z +14950,558,1,6757,0.99,2005-07-12T15:09:48Z,2020-02-15T06:59:56Z +14951,558,1,7424,0.99,2005-07-27T17:14:19Z,2020-02-15T06:59:56Z +14952,558,1,8523,2.99,2005-07-29T10:18:27Z,2020-02-15T06:59:56Z +14953,558,1,8858,4.99,2005-07-29T23:44:35Z,2020-02-15T06:59:56Z +14954,558,1,8889,2.99,2005-07-30T00:39:43Z,2020-02-15T06:59:56Z +14955,558,2,10707,0.99,2005-08-01T18:41:34Z,2020-02-15T06:59:56Z +14956,558,1,11268,0.99,2005-08-02T14:10:39Z,2020-02-15T06:59:56Z +14957,558,2,11567,5.99,2005-08-17T01:28:43Z,2020-02-15T06:59:56Z +14958,558,2,12040,6.99,2005-08-17T20:29:56Z,2020-02-15T06:59:56Z +14959,558,1,12194,1.99,2005-08-18T02:04:47Z,2020-02-15T06:59:56Z +14960,558,2,13566,5.99,2005-08-20T04:45:32Z,2020-02-15T06:59:56Z +14961,558,2,14235,7.99,2005-08-21T05:08:42Z,2020-02-15T06:59:56Z +14962,558,1,14286,5.99,2005-08-21T06:53:53Z,2020-02-15T06:59:56Z +14963,559,2,2576,4.99,2005-06-19T04:34:15Z,2020-02-15T06:59:56Z +14964,559,1,2706,0.99,2005-06-19T13:56:51Z,2020-02-15T06:59:56Z +14965,559,2,3046,4.99,2005-06-20T12:42:59Z,2020-02-15T06:59:56Z +14966,559,1,3370,1.99,2005-06-21T13:27:01Z,2020-02-15T06:59:56Z +14967,559,1,3674,5.99,2005-07-06T09:03:13Z,2020-02-15T06:59:56Z +14968,559,1,4120,4.99,2005-07-07T07:07:03Z,2020-02-15T06:59:56Z +14969,559,1,4370,7.99,2005-07-07T20:05:36Z,2020-02-15T06:59:56Z +14970,559,2,5396,1.99,2005-07-09T19:42:52Z,2020-02-15T06:59:56Z +14971,559,1,6201,4.99,2005-07-11T12:18:07Z,2020-02-15T06:59:56Z +14972,559,1,6915,2.99,2005-07-12T22:28:09Z,2020-02-15T06:59:56Z +14973,559,1,7169,1.99,2005-07-27T07:51:39Z,2020-02-15T06:59:56Z +14974,559,1,7680,1.99,2005-07-28T02:59:08Z,2020-02-15T06:59:56Z +14975,559,1,8631,1.99,2005-07-29T14:08:06Z,2020-02-15T06:59:56Z +14976,559,2,9134,0.99,2005-07-30T10:00:21Z,2020-02-15T06:59:56Z +14977,559,1,9877,2.99,2005-07-31T13:41:57Z,2020-02-15T06:59:56Z +14978,559,2,10146,2.99,2005-07-31T22:17:56Z,2020-02-15T06:59:56Z +14979,559,1,10377,3.99,2005-08-01T06:28:28Z,2020-02-15T06:59:56Z +14980,559,1,10669,8.99,2005-08-01T17:03:28Z,2020-02-15T06:59:56Z +14981,559,2,10876,0.99,2005-08-02T00:31:58Z,2020-02-15T06:59:56Z +14982,559,2,11136,1.99,2005-08-02T09:22:57Z,2020-02-15T06:59:56Z +14983,559,1,13234,1.99,2005-08-19T16:17:15Z,2020-02-15T06:59:56Z +14984,559,2,13248,6.99,2005-08-19T16:47:41Z,2020-02-15T06:59:56Z +14985,559,2,13322,4.99,2005-08-19T19:43:08Z,2020-02-15T06:59:56Z +14986,559,1,13845,5.99,2005-08-20T14:31:21Z,2020-02-15T06:59:56Z +14987,559,1,14342,4.99,2005-08-21T08:39:26Z,2020-02-15T06:59:56Z +14988,559,2,14622,4.99,2005-08-21T18:25:59Z,2020-02-15T06:59:56Z +14989,559,2,15440,4.99,2005-08-23T00:37:21Z,2020-02-15T06:59:56Z +14990,559,1,15877,4.99,2005-08-23T16:33:33Z,2020-02-15T06:59:56Z +14991,560,1,137,2.99,2005-05-25T22:25:18Z,2020-02-15T06:59:56Z +14992,560,1,1271,4.99,2005-06-15T07:32:24Z,2020-02-15T06:59:56Z +14993,560,2,1572,1.99,2005-06-16T03:23:22Z,2020-02-15T06:59:56Z +14994,560,1,3941,4.99,2005-07-06T21:20:37Z,2020-02-15T06:59:56Z +14995,560,1,4298,2.99,2005-07-07T16:27:25Z,2020-02-15T06:59:56Z +14996,560,2,4375,9.99,2005-07-07T20:20:29Z,2020-02-15T06:59:56Z +14997,560,1,4453,0.99,2005-07-07T23:32:39Z,2020-02-15T06:59:56Z +14998,560,2,5208,2.99,2005-07-09T11:16:56Z,2020-02-15T06:59:56Z +14999,560,1,6410,4.99,2005-07-11T23:08:06Z,2020-02-15T06:59:56Z +15000,560,1,6945,2.99,2005-07-26T23:35:29Z,2020-02-15T06:59:56Z +15001,560,2,7202,4.99,2005-07-27T09:00:20Z,2020-02-15T06:59:56Z +15002,560,1,7891,3.99,2005-07-28T10:43:56Z,2020-02-15T06:59:56Z +15003,560,1,8753,2.99,2005-07-29T19:15:50Z,2020-02-15T06:59:56Z +15004,560,2,8861,5.99,2005-07-29T23:47:29Z,2020-02-15T06:59:56Z +15005,560,2,8906,4.99,2005-07-30T01:21:39Z,2020-02-15T06:59:56Z +15006,560,1,9265,0.99,2005-07-30T14:55:25Z,2020-02-15T06:59:56Z +15007,560,2,9895,5.99,2005-07-31T14:07:56Z,2020-02-15T06:59:56Z +15008,560,2,10480,4.99,2005-08-01T10:13:41Z,2020-02-15T06:59:56Z +15009,560,1,10702,4.99,2005-08-01T18:34:59Z,2020-02-15T06:59:56Z +15010,560,1,10733,7.99,2005-08-01T19:28:01Z,2020-02-15T06:59:56Z +15011,560,1,11334,7.99,2005-08-02T16:53:20Z,2020-02-15T06:59:56Z +15012,560,1,11788,4.99,2005-08-17T10:59:18Z,2020-02-15T06:59:56Z +15013,560,2,14008,5.99,2005-08-20T20:26:00Z,2020-02-15T06:59:56Z +15014,560,1,14341,1.99,2005-08-21T08:38:24Z,2020-02-15T06:59:56Z +15015,560,2,14363,4.99,2005-08-21T09:20:03Z,2020-02-15T06:59:56Z +15016,560,1,14436,2.99,2005-08-21T11:48:27Z,2020-02-15T06:59:56Z +15017,560,2,14785,2.99,2005-08-22T00:24:37Z,2020-02-15T06:59:56Z +15018,560,1,15352,6.99,2005-08-22T21:16:54Z,2020-02-15T06:59:56Z +15019,560,2,12116,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15020,560,2,14425,0,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15021,561,1,902,4.99,2005-05-30T09:53:36Z,2020-02-15T06:59:56Z +15022,561,2,971,4.99,2005-05-30T20:10:52Z,2020-02-15T06:59:56Z +15023,561,2,1193,2.99,2005-06-15T01:24:20Z,2020-02-15T06:59:56Z +15024,561,2,1505,2.99,2005-06-15T22:12:50Z,2020-02-15T06:59:56Z +15025,561,2,1620,4.99,2005-06-16T07:21:30Z,2020-02-15T06:59:56Z +15026,561,1,2119,4.99,2005-06-17T20:34:42Z,2020-02-15T06:59:56Z +15027,561,1,2357,5.99,2005-06-18T12:59:41Z,2020-02-15T06:59:56Z +15028,561,1,2548,0.99,2005-06-19T02:45:35Z,2020-02-15T06:59:56Z +15029,561,1,2950,4.99,2005-06-20T06:08:36Z,2020-02-15T06:59:56Z +15030,561,1,3160,4.99,2005-06-20T21:20:51Z,2020-02-15T06:59:56Z +15031,561,1,3427,0.99,2005-06-21T18:31:09Z,2020-02-15T06:59:56Z +15032,561,2,6361,2.99,2005-07-11T21:09:14Z,2020-02-15T06:59:56Z +15033,561,1,6435,0.99,2005-07-12T00:16:19Z,2020-02-15T06:59:56Z +15034,561,1,6621,0.99,2005-07-12T08:57:30Z,2020-02-15T06:59:56Z +15035,561,1,6843,4.99,2005-07-12T19:14:05Z,2020-02-15T06:59:56Z +15036,561,1,7698,0.99,2005-07-28T03:44:14Z,2020-02-15T06:59:56Z +15037,561,1,8504,10.99,2005-07-29T09:20:16Z,2020-02-15T06:59:56Z +15038,561,2,9839,7.99,2005-07-31T12:21:16Z,2020-02-15T06:59:56Z +15039,561,2,10317,2.99,2005-08-01T04:35:34Z,2020-02-15T06:59:56Z +15040,561,1,10907,4.99,2005-08-02T01:51:48Z,2020-02-15T06:59:56Z +15041,561,1,11371,2.99,2005-08-02T18:07:36Z,2020-02-15T06:59:56Z +15042,561,2,11402,2.99,2005-08-02T19:07:21Z,2020-02-15T06:59:56Z +15043,561,2,12441,2.99,2005-08-18T10:47:57Z,2020-02-15T06:59:56Z +15044,561,2,14139,0.99,2005-08-21T02:04:33Z,2020-02-15T06:59:56Z +15045,561,1,15573,0.99,2005-08-23T05:28:36Z,2020-02-15T06:59:56Z +15046,561,1,15946,2.99,2005-08-23T18:54:07Z,2020-02-15T06:59:56Z +15047,561,1,14415,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15048,562,2,788,2.99,2005-05-29T16:13:55Z,2020-02-15T06:59:56Z +15049,562,1,941,2.99,2005-05-30T15:02:25Z,2020-02-15T06:59:56Z +15050,562,1,1139,5.99,2005-05-31T19:34:52Z,2020-02-15T06:59:56Z +15051,562,1,1998,3.99,2005-06-17T11:24:57Z,2020-02-15T06:59:56Z +15052,562,1,2705,4.99,2005-06-19T13:54:30Z,2020-02-15T06:59:56Z +15053,562,1,2746,3.99,2005-06-19T16:21:40Z,2020-02-15T06:59:56Z +15054,562,2,3242,4.99,2005-06-21T02:56:24Z,2020-02-15T06:59:56Z +15055,562,2,4732,5.99,2005-07-08T13:09:45Z,2020-02-15T06:59:56Z +15056,562,1,4802,4.99,2005-07-08T16:55:17Z,2020-02-15T06:59:56Z +15057,562,2,5360,0.99,2005-07-09T18:14:03Z,2020-02-15T06:59:56Z +15058,562,2,6065,6.99,2005-07-11T04:25:51Z,2020-02-15T06:59:56Z +15059,562,1,6607,8.99,2005-07-12T08:08:50Z,2020-02-15T06:59:56Z +15060,562,2,7166,3.99,2005-07-27T07:36:56Z,2020-02-15T06:59:56Z +15061,562,1,7430,2.99,2005-07-27T17:26:14Z,2020-02-15T06:59:56Z +15062,562,2,7560,2.99,2005-07-27T22:20:17Z,2020-02-15T06:59:56Z +15063,562,2,8132,0.99,2005-07-28T19:57:31Z,2020-02-15T06:59:56Z +15064,562,2,10868,6.99,2005-08-02T00:25:15Z,2020-02-15T06:59:56Z +15065,562,2,12008,4.99,2005-08-17T19:16:18Z,2020-02-15T06:59:56Z +15066,562,1,12248,5.99,2005-08-18T03:53:18Z,2020-02-15T06:59:56Z +15067,562,2,13225,2.99,2005-08-19T15:54:33Z,2020-02-15T06:59:56Z +15068,562,2,13347,10.99,2005-08-19T20:28:48Z,2020-02-15T06:59:56Z +15069,562,2,13639,0.99,2005-08-20T07:22:07Z,2020-02-15T06:59:56Z +15070,562,1,15212,2.99,2005-08-22T16:44:26Z,2020-02-15T06:59:56Z +15071,562,2,15475,2.99,2005-08-23T01:44:43Z,2020-02-15T06:59:56Z +15072,562,1,15900,1.99,2005-08-23T17:16:30Z,2020-02-15T06:59:56Z +15073,563,1,758,4.99,2005-05-29T10:31:56Z,2020-02-15T06:59:56Z +15074,563,2,773,5.99,2005-05-29T13:18:05Z,2020-02-15T06:59:56Z +15075,563,2,1545,4.99,2005-06-16T01:31:23Z,2020-02-15T06:59:56Z +15076,563,2,2573,0.99,2005-06-19T04:23:18Z,2020-02-15T06:59:56Z +15077,563,1,4106,1.99,2005-07-07T06:33:35Z,2020-02-15T06:59:56Z +15078,563,2,4436,0.99,2005-07-07T22:52:04Z,2020-02-15T06:59:56Z +15079,563,1,4565,3.99,2005-07-08T05:12:28Z,2020-02-15T06:59:56Z +15080,563,2,4629,6.99,2005-07-08T08:31:26Z,2020-02-15T06:59:56Z +15081,563,2,4711,2.99,2005-07-08T12:06:58Z,2020-02-15T06:59:56Z +15082,563,2,4776,5.99,2005-07-08T15:44:20Z,2020-02-15T06:59:56Z +15083,563,2,4808,3.99,2005-07-08T17:02:49Z,2020-02-15T06:59:56Z +15084,563,2,4825,4.99,2005-07-08T17:43:01Z,2020-02-15T06:59:56Z +15085,563,1,4883,0.99,2005-07-08T19:46:58Z,2020-02-15T06:59:56Z +15086,563,1,5406,0.99,2005-07-09T20:13:23Z,2020-02-15T06:59:56Z +15087,563,2,6326,2.99,2005-07-11T19:06:55Z,2020-02-15T06:59:56Z +15088,563,2,7612,0.99,2005-07-28T00:11:55Z,2020-02-15T06:59:56Z +15089,563,1,8262,1.99,2005-07-29T01:11:18Z,2020-02-15T06:59:56Z +15090,563,1,8610,5.99,2005-07-29T13:25:02Z,2020-02-15T06:59:56Z +15091,563,2,8632,6.99,2005-07-29T14:11:25Z,2020-02-15T06:59:56Z +15092,563,2,8812,7.99,2005-07-29T21:47:40Z,2020-02-15T06:59:56Z +15093,563,2,11829,0.99,2005-08-17T12:52:04Z,2020-02-15T06:59:56Z +15094,563,1,12039,1.99,2005-08-17T20:29:08Z,2020-02-15T06:59:56Z +15095,563,1,12202,1.99,2005-08-18T02:14:08Z,2020-02-15T06:59:56Z +15096,563,1,12832,2.99,2005-08-19T01:41:44Z,2020-02-15T06:59:56Z +15097,563,2,13863,9.99,2005-08-20T14:57:50Z,2020-02-15T06:59:56Z +15098,563,2,14592,4.99,2005-08-21T17:30:17Z,2020-02-15T06:59:56Z +15099,563,2,15507,0.99,2005-08-23T02:48:26Z,2020-02-15T06:59:56Z +15100,563,2,15638,3.99,2005-08-23T07:54:54Z,2020-02-15T06:59:56Z +15101,563,1,15850,4.99,2005-08-23T15:45:42Z,2020-02-15T06:59:56Z +15102,564,2,195,5.99,2005-05-26T06:52:36Z,2020-02-15T06:59:56Z +15103,564,1,985,2.99,2005-05-30T22:18:35Z,2020-02-15T06:59:56Z +15104,564,2,1705,2.99,2005-06-16T13:59:42Z,2020-02-15T06:59:56Z +15105,564,1,4196,2.99,2005-07-07T11:06:33Z,2020-02-15T06:59:56Z +15106,564,2,4385,0.99,2005-07-07T20:48:38Z,2020-02-15T06:59:56Z +15107,564,1,6973,2.99,2005-07-27T00:32:04Z,2020-02-15T06:59:56Z +15108,564,2,7470,10.99,2005-07-27T19:01:03Z,2020-02-15T06:59:56Z +15109,564,2,8426,4.99,2005-07-29T07:07:48Z,2020-02-15T06:59:56Z +15110,564,1,8874,0.99,2005-07-30T00:14:45Z,2020-02-15T06:59:56Z +15111,564,2,9063,3.99,2005-07-30T07:24:34Z,2020-02-15T06:59:56Z +15112,564,2,9929,2.99,2005-07-31T15:17:24Z,2020-02-15T06:59:56Z +15113,564,1,10129,6.99,2005-07-31T21:41:35Z,2020-02-15T06:59:56Z +15114,564,2,10352,1.99,2005-08-01T05:44:36Z,2020-02-15T06:59:56Z +15115,564,2,10401,4.99,2005-08-01T07:27:09Z,2020-02-15T06:59:56Z +15116,564,1,10528,2.99,2005-08-01T11:56:22Z,2020-02-15T06:59:56Z +15117,564,2,11768,2.99,2005-08-17T10:02:29Z,2020-02-15T06:59:56Z +15118,564,2,12197,6.99,2005-08-18T02:08:58Z,2020-02-15T06:59:56Z +15119,564,2,12617,2.99,2005-08-18T17:22:48Z,2020-02-15T06:59:56Z +15120,564,2,13324,0.99,2005-08-19T19:51:00Z,2020-02-15T06:59:56Z +15121,564,2,13558,0.99,2005-08-20T04:13:17Z,2020-02-15T06:59:56Z +15122,564,1,13701,0.99,2005-08-20T09:27:05Z,2020-02-15T06:59:56Z +15123,564,2,14439,5.99,2005-08-21T11:52:41Z,2020-02-15T06:59:56Z +15124,564,1,14593,0.99,2005-08-21T17:33:18Z,2020-02-15T06:59:56Z +15125,564,2,15059,8.99,2005-08-22T10:22:00Z,2020-02-15T06:59:56Z +15126,565,1,458,6.99,2005-05-27T19:58:36Z,2020-02-15T06:59:56Z +15127,565,1,1004,0.99,2005-05-31T00:48:36Z,2020-02-15T06:59:56Z +15128,565,2,1460,4.99,2005-06-15T20:27:02Z,2020-02-15T06:59:56Z +15129,565,1,2321,5.99,2005-06-18T09:42:42Z,2020-02-15T06:59:56Z +15130,565,1,3300,5.99,2005-06-21T07:25:01Z,2020-02-15T06:59:56Z +15131,565,2,3470,0.99,2005-07-05T22:49:24Z,2020-02-15T06:59:56Z +15132,565,1,3838,2.99,2005-07-06T16:29:43Z,2020-02-15T06:59:56Z +15133,565,1,4413,2.99,2005-07-07T22:00:04Z,2020-02-15T06:59:56Z +15134,565,2,5020,0.99,2005-07-09T02:07:56Z,2020-02-15T06:59:56Z +15135,565,1,5124,4.99,2005-07-09T07:25:19Z,2020-02-15T06:59:56Z +15136,565,1,6264,2.99,2005-07-11T15:42:35Z,2020-02-15T06:59:56Z +15137,565,1,6627,2.99,2005-07-12T09:16:46Z,2020-02-15T06:59:56Z +15138,565,1,6699,0.99,2005-07-12T12:45:21Z,2020-02-15T06:59:56Z +15139,565,2,7242,5.99,2005-07-27T10:25:51Z,2020-02-15T06:59:56Z +15140,565,1,9628,2.99,2005-07-31T04:51:11Z,2020-02-15T06:59:56Z +15141,565,1,10025,5.99,2005-07-31T18:29:09Z,2020-02-15T06:59:56Z +15142,565,2,10776,10.99,2005-08-01T20:59:58Z,2020-02-15T06:59:56Z +15143,565,2,10913,3.99,2005-08-02T02:04:03Z,2020-02-15T06:59:56Z +15144,565,2,11189,6.99,2005-08-02T11:17:23Z,2020-02-15T06:59:56Z +15145,565,1,11399,3.99,2005-08-02T18:56:28Z,2020-02-15T06:59:56Z +15146,565,2,11506,4.99,2005-08-16T23:25:48Z,2020-02-15T06:59:56Z +15147,565,1,11588,3.99,2005-08-17T02:26:23Z,2020-02-15T06:59:56Z +15148,565,1,11795,2.99,2005-08-17T11:13:38Z,2020-02-15T06:59:56Z +15149,565,2,12743,5.99,2005-08-18T22:22:31Z,2020-02-15T06:59:56Z +15150,565,2,13195,4.99,2005-08-19T14:39:14Z,2020-02-15T06:59:56Z +15151,565,2,13217,4.99,2005-08-19T15:38:39Z,2020-02-15T06:59:56Z +15152,565,1,13362,0.99,2005-08-19T21:07:54Z,2020-02-15T06:59:56Z +15153,565,1,13925,8.99,2005-08-20T17:05:34Z,2020-02-15T06:59:56Z +15154,565,1,15885,2.99,2005-08-23T16:50:43Z,2020-02-15T06:59:56Z +15155,566,2,234,5.99,2005-05-26T11:47:20Z,2020-02-15T06:59:56Z +15156,566,2,768,4.99,2005-05-29T12:30:46Z,2020-02-15T06:59:56Z +15157,566,1,1635,5.99,2005-06-16T08:26:56Z,2020-02-15T06:59:56Z +15158,566,2,1982,4.99,2005-06-17T10:12:15Z,2020-02-15T06:59:56Z +15159,566,1,2367,0.99,2005-06-18T14:00:31Z,2020-02-15T06:59:56Z +15160,566,1,3379,4.99,2005-06-21T13:54:58Z,2020-02-15T06:59:56Z +15161,566,2,3663,4.99,2005-07-06T08:15:47Z,2020-02-15T06:59:56Z +15162,566,1,3943,0.99,2005-07-06T21:22:17Z,2020-02-15T06:59:56Z +15163,566,1,3998,3.99,2005-07-06T23:49:20Z,2020-02-15T06:59:56Z +15164,566,1,5079,9.99,2005-07-09T05:20:40Z,2020-02-15T06:59:56Z +15165,566,2,6365,2.99,2005-07-11T21:17:40Z,2020-02-15T06:59:56Z +15166,566,1,7677,2.99,2005-07-28T02:56:37Z,2020-02-15T06:59:56Z +15167,566,2,7941,0.99,2005-07-28T12:47:20Z,2020-02-15T06:59:56Z +15168,566,2,8118,2.99,2005-07-28T19:22:22Z,2020-02-15T06:59:56Z +15169,566,1,8157,6.99,2005-07-28T21:06:45Z,2020-02-15T06:59:56Z +15170,566,1,8257,2.99,2005-07-29T01:03:20Z,2020-02-15T06:59:56Z +15171,566,2,8305,1.99,2005-07-29T03:08:47Z,2020-02-15T06:59:56Z +15172,566,2,8660,6.99,2005-07-29T15:26:59Z,2020-02-15T06:59:56Z +15173,566,1,8710,0.99,2005-07-29T17:26:03Z,2020-02-15T06:59:56Z +15174,566,1,8797,4.99,2005-07-29T21:10:37Z,2020-02-15T06:59:56Z +15175,566,2,9101,4.99,2005-07-30T08:47:13Z,2020-02-15T06:59:56Z +15176,566,2,9470,4.99,2005-07-30T23:01:31Z,2020-02-15T06:59:56Z +15177,566,1,9688,3.99,2005-07-31T06:56:08Z,2020-02-15T06:59:56Z +15178,566,2,9915,2.99,2005-07-31T14:52:26Z,2020-02-15T06:59:56Z +15179,566,2,10259,2.99,2005-08-01T02:52:05Z,2020-02-15T06:59:56Z +15180,566,2,10289,6.99,2005-08-01T03:39:48Z,2020-02-15T06:59:56Z +15181,566,2,11129,2.99,2005-08-02T09:08:44Z,2020-02-15T06:59:56Z +15182,566,1,11717,0.99,2005-08-17T07:44:09Z,2020-02-15T06:59:56Z +15183,566,1,11941,1.99,2005-08-17T16:56:57Z,2020-02-15T06:59:56Z +15184,566,2,12382,8.99,2005-08-18T08:32:33Z,2020-02-15T06:59:56Z +15185,566,2,12995,4.99,2005-08-19T07:26:30Z,2020-02-15T06:59:56Z +15186,566,2,13762,4.99,2005-08-20T11:29:32Z,2020-02-15T06:59:56Z +15187,566,1,14277,3.99,2005-08-21T06:34:41Z,2020-02-15T06:59:56Z +15188,566,1,14297,2.99,2005-08-21T07:13:46Z,2020-02-15T06:59:56Z +15189,567,2,2689,4.99,2005-06-19T12:58:53Z,2020-02-15T06:59:56Z +15190,567,1,3010,2.99,2005-06-20T10:29:59Z,2020-02-15T06:59:56Z +15191,567,1,3769,5.99,2005-07-06T13:11:33Z,2020-02-15T06:59:56Z +15192,567,2,4457,0.99,2005-07-07T23:45:38Z,2020-02-15T06:59:56Z +15193,567,2,4576,0.99,2005-07-08T05:51:19Z,2020-02-15T06:59:56Z +15194,567,1,4949,4.99,2005-07-08T22:57:10Z,2020-02-15T06:59:56Z +15195,567,2,6358,2.99,2005-07-11T21:03:12Z,2020-02-15T06:59:56Z +15196,567,2,6551,0.99,2005-07-12T05:03:43Z,2020-02-15T06:59:56Z +15197,567,2,7340,2.99,2005-07-27T14:18:10Z,2020-02-15T06:59:56Z +15198,567,1,8201,2.99,2005-07-28T23:10:48Z,2020-02-15T06:59:56Z +15199,567,1,8629,2.99,2005-07-29T14:06:35Z,2020-02-15T06:59:56Z +15200,567,1,9279,7.99,2005-07-30T15:15:21Z,2020-02-15T06:59:56Z +15201,567,1,9475,6.99,2005-07-30T23:06:33Z,2020-02-15T06:59:56Z +15202,567,2,10708,7.99,2005-08-01T18:43:28Z,2020-02-15T06:59:56Z +15203,567,2,11749,2.99,2005-08-17T09:04:03Z,2020-02-15T06:59:56Z +15204,567,1,12119,2.99,2005-08-17T23:16:44Z,2020-02-15T06:59:56Z +15205,567,2,13031,2.99,2005-08-19T08:30:04Z,2020-02-15T06:59:56Z +15206,567,2,14839,2.99,2005-08-22T01:58:15Z,2020-02-15T06:59:56Z +15207,567,2,15074,5.99,2005-08-22T11:02:52Z,2020-02-15T06:59:56Z +15208,567,2,15594,10.99,2005-08-23T06:18:43Z,2020-02-15T06:59:56Z +15209,568,2,1658,4.99,2005-06-16T10:07:10Z,2020-02-15T06:59:56Z +15210,568,2,2382,4.99,2005-06-18T15:03:52Z,2020-02-15T06:59:56Z +15211,568,2,2668,0.99,2005-06-19T11:28:47Z,2020-02-15T06:59:56Z +15212,568,1,3227,4.99,2005-06-21T02:18:25Z,2020-02-15T06:59:56Z +15213,568,2,3462,1.99,2005-06-21T21:52:52Z,2020-02-15T06:59:56Z +15214,568,1,4322,2.99,2005-07-07T17:54:37Z,2020-02-15T06:59:56Z +15215,568,2,5332,2.99,2005-07-09T16:59:23Z,2020-02-15T06:59:56Z +15216,568,1,5622,0.99,2005-07-10T05:39:37Z,2020-02-15T06:59:56Z +15217,568,1,5776,4.99,2005-07-10T13:35:22Z,2020-02-15T06:59:56Z +15218,568,2,7068,2.99,2005-07-27T03:57:50Z,2020-02-15T06:59:56Z +15219,568,2,8185,0.99,2005-07-28T22:23:49Z,2020-02-15T06:59:56Z +15220,568,2,9583,6.99,2005-07-31T03:05:21Z,2020-02-15T06:59:56Z +15221,568,1,9738,0.99,2005-07-31T09:04:14Z,2020-02-15T06:59:56Z +15222,568,1,10340,2.99,2005-08-01T05:07:03Z,2020-02-15T06:59:56Z +15223,568,2,10689,0.99,2005-08-01T18:04:18Z,2020-02-15T06:59:56Z +15224,568,2,10869,0.99,2005-08-02T00:26:54Z,2020-02-15T06:59:56Z +15225,568,1,11331,2.99,2005-08-02T16:49:01Z,2020-02-15T06:59:56Z +15226,568,1,13883,4.99,2005-08-20T15:28:53Z,2020-02-15T06:59:56Z +15227,568,2,15069,5.99,2005-08-22T10:55:42Z,2020-02-15T06:59:56Z +15228,568,1,15203,2.99,2005-08-22T16:28:00Z,2020-02-15T06:59:56Z +15229,568,2,14531,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15230,569,2,53,4.99,2005-05-25T07:19:16Z,2020-02-15T06:59:56Z +15231,569,1,487,4.99,2005-05-28T00:00:30Z,2020-02-15T06:59:56Z +15232,569,1,624,4.99,2005-05-28T16:13:22Z,2020-02-15T06:59:56Z +15233,569,1,647,1.99,2005-05-28T19:22:52Z,2020-02-15T06:59:56Z +15234,569,2,1037,3.99,2005-05-31T05:22:25Z,2020-02-15T06:59:56Z +15235,569,1,1463,6.99,2005-06-15T20:37:51Z,2020-02-15T06:59:56Z +15236,569,2,1668,5.99,2005-06-16T10:19:52Z,2020-02-15T06:59:56Z +15237,569,1,4204,5.99,2005-07-07T11:24:18Z,2020-02-15T06:59:56Z +15238,569,2,5003,0.99,2005-07-09T01:19:03Z,2020-02-15T06:59:56Z +15239,569,2,6046,5.99,2005-07-11T03:21:49Z,2020-02-15T06:59:56Z +15240,569,1,8910,2.99,2005-07-30T01:29:48Z,2020-02-15T06:59:56Z +15241,569,2,9220,1.99,2005-07-30T13:17:27Z,2020-02-15T06:59:56Z +15242,569,1,9399,4.99,2005-07-30T20:14:50Z,2020-02-15T06:59:56Z +15243,569,2,9960,1.99,2005-07-31T16:05:52Z,2020-02-15T06:59:56Z +15244,569,2,10192,2.99,2005-08-01T00:33:00Z,2020-02-15T06:59:56Z +15245,569,2,10884,0.99,2005-08-02T00:47:33Z,2020-02-15T06:59:56Z +15246,569,1,11030,1.99,2005-08-02T05:51:20Z,2020-02-15T06:59:56Z +15247,569,2,11255,4.99,2005-08-02T13:44:30Z,2020-02-15T06:59:56Z +15248,569,1,11354,6.99,2005-08-02T17:35:10Z,2020-02-15T06:59:56Z +15249,569,1,11946,4.99,2005-08-17T17:05:53Z,2020-02-15T06:59:56Z +15250,569,1,12157,2.99,2005-08-18T00:33:45Z,2020-02-15T06:59:56Z +15251,569,2,12308,0.99,2005-08-18T05:48:53Z,2020-02-15T06:59:56Z +15252,569,1,12568,3.99,2005-08-18T15:15:44Z,2020-02-15T06:59:56Z +15253,569,2,12958,2.99,2005-08-19T06:19:21Z,2020-02-15T06:59:56Z +15254,569,1,13287,7.99,2005-08-19T18:28:24Z,2020-02-15T06:59:56Z +15255,569,2,13554,9.99,2005-08-20T04:08:39Z,2020-02-15T06:59:56Z +15256,569,2,14207,4.99,2005-08-21T04:08:19Z,2020-02-15T06:59:56Z +15257,569,2,14400,0.99,2005-08-21T10:33:45Z,2020-02-15T06:59:56Z +15258,569,1,14896,8.99,2005-08-22T04:20:55Z,2020-02-15T06:59:56Z +15259,569,1,14959,2.99,2005-08-22T06:30:28Z,2020-02-15T06:59:56Z +15260,569,2,15617,0.99,2005-08-23T07:07:22Z,2020-02-15T06:59:56Z +15261,569,2,16025,4.99,2005-08-23T21:48:54Z,2020-02-15T06:59:56Z +15262,570,2,1060,7.99,2005-05-31T08:21:43Z,2020-02-15T06:59:56Z +15263,570,1,1259,4.99,2005-06-15T06:37:55Z,2020-02-15T06:59:56Z +15264,570,2,1417,4.99,2005-06-15T17:45:51Z,2020-02-15T06:59:56Z +15265,570,2,1804,2.99,2005-06-16T20:33:15Z,2020-02-15T06:59:56Z +15266,570,2,2008,5.99,2005-06-17T11:48:05Z,2020-02-15T06:59:56Z +15267,570,2,2031,6.99,2005-06-17T13:14:03Z,2020-02-15T06:59:56Z +15268,570,2,2261,3.99,2005-06-18T05:46:15Z,2020-02-15T06:59:56Z +15269,570,2,3138,2.99,2005-06-20T19:43:45Z,2020-02-15T06:59:56Z +15270,570,2,3984,0.99,2005-07-06T23:22:36Z,2020-02-15T06:59:56Z +15271,570,1,4069,0.99,2005-07-07T04:35:06Z,2020-02-15T06:59:56Z +15272,570,1,4698,0.99,2005-07-08T11:19:31Z,2020-02-15T06:59:56Z +15273,570,2,5638,4.99,2005-07-10T06:32:49Z,2020-02-15T06:59:56Z +15274,570,1,6253,4.99,2005-07-11T15:07:19Z,2020-02-15T06:59:56Z +15275,570,1,6556,0.99,2005-07-12T05:10:16Z,2020-02-15T06:59:56Z +15276,570,2,7174,4.99,2005-07-27T08:00:36Z,2020-02-15T06:59:56Z +15277,570,2,8735,4.99,2005-07-29T18:28:54Z,2020-02-15T06:59:56Z +15278,570,1,9385,7.99,2005-07-30T19:25:49Z,2020-02-15T06:59:56Z +15279,570,1,9398,0.99,2005-07-30T20:09:00Z,2020-02-15T06:59:56Z +15280,570,2,9432,2.99,2005-07-30T21:26:18Z,2020-02-15T06:59:56Z +15281,570,1,9766,4.99,2005-07-31T09:46:29Z,2020-02-15T06:59:56Z +15282,570,1,10004,0.99,2005-07-31T17:51:23Z,2020-02-15T06:59:56Z +15283,570,2,10168,2.99,2005-07-31T23:25:24Z,2020-02-15T06:59:56Z +15284,570,1,11098,3.99,2005-08-02T08:06:18Z,2020-02-15T06:59:56Z +15285,570,2,12042,4.99,2005-08-17T20:36:37Z,2020-02-15T06:59:56Z +15286,570,2,14768,3.99,2005-08-21T23:44:53Z,2020-02-15T06:59:56Z +15287,570,1,12716,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:56Z +15288,571,1,228,9.99,2005-05-26T10:54:28Z,2020-02-15T06:59:56Z +15289,571,2,689,3.99,2005-05-29T00:46:53Z,2020-02-15T06:59:56Z +15290,571,1,1254,4.99,2005-06-15T06:11:16Z,2020-02-15T06:59:56Z +15291,571,2,1400,3.99,2005-06-15T16:29:56Z,2020-02-15T06:59:56Z +15292,571,1,1756,4.99,2005-06-16T17:22:33Z,2020-02-15T06:59:56Z +15293,571,2,1990,4.99,2005-06-17T10:48:44Z,2020-02-15T06:59:56Z +15294,571,1,2327,2.99,2005-06-18T10:16:40Z,2020-02-15T06:59:56Z +15295,571,1,2977,10.99,2005-06-20T08:15:27Z,2020-02-15T06:59:56Z +15296,571,2,3616,2.99,2005-07-06T05:52:13Z,2020-02-15T06:59:56Z +15297,571,1,4162,4.99,2005-07-07T09:17:26Z,2020-02-15T06:59:56Z +15298,571,2,5789,4.99,2005-07-10T14:11:26Z,2020-02-15T06:59:56Z +15299,571,2,6676,8.99,2005-07-12T11:53:40Z,2020-02-15T06:59:56Z +15300,571,1,6792,8.99,2005-07-12T16:37:28Z,2020-02-15T06:59:56Z +15301,571,1,8084,5.99,2005-07-28T18:11:58Z,2020-02-15T06:59:56Z +15302,571,1,8638,4.99,2005-07-29T14:30:23Z,2020-02-15T06:59:56Z +15303,571,2,9300,1.99,2005-07-30T16:33:12Z,2020-02-15T06:59:56Z +15304,571,1,9408,4.99,2005-07-30T20:32:09Z,2020-02-15T06:59:56Z +15305,571,1,10227,2.99,2005-08-01T01:42:22Z,2020-02-15T06:59:56Z +15306,571,2,11080,2.99,2005-08-02T07:29:56Z,2020-02-15T06:59:56Z +15307,571,2,11191,7.99,2005-08-02T11:24:07Z,2020-02-15T06:59:56Z +15308,571,1,13228,2.99,2005-08-19T16:08:16Z,2020-02-15T06:59:56Z +15309,571,2,13266,2.99,2005-08-19T17:31:20Z,2020-02-15T06:59:56Z +15310,571,1,14956,0.99,2005-08-22T06:26:16Z,2020-02-15T06:59:56Z +15311,571,1,15841,4.99,2005-08-23T15:35:59Z,2020-02-15T06:59:56Z +15312,572,2,559,7.99,2005-05-28T08:39:02Z,2020-02-15T06:59:56Z +15313,572,2,1889,10.99,2005-06-17T04:05:12Z,2020-02-15T06:59:56Z +15314,572,1,2007,0.99,2005-06-17T11:47:17Z,2020-02-15T06:59:56Z +15315,572,1,2458,0.99,2005-06-18T19:39:05Z,2020-02-15T06:59:56Z +15316,572,1,4601,2.99,2005-07-08T06:49:10Z,2020-02-15T06:59:56Z +15317,572,1,5595,4.99,2005-07-10T04:33:45Z,2020-02-15T06:59:56Z +15318,572,1,5713,6.99,2005-07-10T10:46:15Z,2020-02-15T06:59:56Z +15319,572,2,6108,2.99,2005-07-11T07:19:24Z,2020-02-15T06:59:56Z +15320,572,1,7161,4.99,2005-07-27T07:26:32Z,2020-02-15T06:59:56Z +15321,572,1,7345,4.99,2005-07-27T14:29:53Z,2020-02-15T06:59:56Z +15322,572,2,7713,6.99,2005-07-28T04:32:14Z,2020-02-15T06:59:56Z +15323,572,2,8342,0.99,2005-07-29T04:45:05Z,2020-02-15T06:59:56Z +15324,572,1,8432,0.99,2005-07-29T07:13:33Z,2020-02-15T06:59:56Z +15325,572,1,9081,3.99,2005-07-30T08:09:58Z,2020-02-15T06:59:56Z +15326,572,2,9950,5.99,2005-07-31T15:50:22Z,2020-02-15T06:59:56Z +15327,572,2,10204,4.99,2005-08-01T00:47:39Z,2020-02-15T06:59:56Z +15328,572,1,11114,0.99,2005-08-02T08:26:45Z,2020-02-15T06:59:56Z +15329,572,1,11121,4.99,2005-08-02T08:48:31Z,2020-02-15T06:59:56Z +15330,572,2,11415,2.99,2005-08-02T19:43:38Z,2020-02-15T06:59:56Z +15331,572,1,11426,4.99,2005-08-02T20:00:09Z,2020-02-15T06:59:56Z +15332,572,1,11526,4.99,2005-08-17T00:17:38Z,2020-02-15T06:59:56Z +15333,572,1,12256,1.99,2005-08-18T04:09:39Z,2020-02-15T06:59:56Z +15334,572,2,13377,1.99,2005-08-19T21:32:23Z,2020-02-15T06:59:56Z +15335,572,2,13523,6.99,2005-08-20T02:47:03Z,2020-02-15T06:59:56Z +15336,572,1,13688,5.99,2005-08-20T08:59:38Z,2020-02-15T06:59:56Z +15337,573,2,827,2.99,2005-05-29T21:58:43Z,2020-02-15T06:59:56Z +15338,573,1,1613,4.99,2005-06-16T06:55:10Z,2020-02-15T06:59:56Z +15339,573,2,2622,5.99,2005-06-19T08:10:41Z,2020-02-15T06:59:56Z +15340,573,1,2995,1.99,2005-06-20T09:18:22Z,2020-02-15T06:59:56Z +15341,573,1,3295,7.99,2005-06-21T07:04:17Z,2020-02-15T06:59:56Z +15342,573,2,3768,0.99,2005-07-06T13:07:30Z,2020-02-15T06:59:56Z +15343,573,1,3930,2.99,2005-07-06T20:54:07Z,2020-02-15T06:59:56Z +15344,573,2,4023,4.99,2005-07-07T01:55:25Z,2020-02-15T06:59:56Z +15345,573,1,4085,0.99,2005-07-07T05:25:39Z,2020-02-15T06:59:56Z +15346,573,1,4609,0.99,2005-07-08T07:22:29Z,2020-02-15T06:59:56Z +15347,573,1,4770,2.99,2005-07-08T15:29:46Z,2020-02-15T06:59:56Z +15348,573,1,5036,5.99,2005-07-09T02:58:41Z,2020-02-15T06:59:56Z +15349,573,2,5522,9.99,2005-07-10T01:46:29Z,2020-02-15T06:59:56Z +15350,573,2,5903,2.99,2005-07-10T20:39:04Z,2020-02-15T06:59:56Z +15351,573,1,6693,7.99,2005-07-12T12:37:00Z,2020-02-15T06:59:56Z +15352,573,1,8400,4.99,2005-07-29T06:23:56Z,2020-02-15T06:59:56Z +15353,573,2,9837,10.99,2005-07-31T12:14:19Z,2020-02-15T06:59:56Z +15354,573,2,9846,4.99,2005-07-31T12:30:12Z,2020-02-15T06:59:56Z +15355,573,2,9963,2.99,2005-07-31T16:16:46Z,2020-02-15T06:59:56Z +15356,573,2,9971,5.99,2005-07-31T16:42:16Z,2020-02-15T06:59:56Z +15357,573,1,10296,0.99,2005-08-01T04:04:37Z,2020-02-15T06:59:56Z +15358,573,1,10887,2.99,2005-08-02T00:52:35Z,2020-02-15T06:59:56Z +15359,573,1,11043,0.99,2005-08-02T06:04:44Z,2020-02-15T06:59:56Z +15360,573,2,11912,5.99,2005-08-17T15:51:49Z,2020-02-15T06:59:56Z +15361,573,1,12017,1.99,2005-08-17T19:33:49Z,2020-02-15T06:59:56Z +15362,573,1,12125,1.99,2005-08-17T23:24:25Z,2020-02-15T06:59:56Z +15363,573,1,12269,6.99,2005-08-18T04:27:54Z,2020-02-15T06:59:56Z +15364,573,1,12791,0.99,2005-08-19T00:17:09Z,2020-02-15T06:59:56Z +15365,573,2,13113,2.99,2005-08-19T11:27:20Z,2020-02-15T06:59:56Z +15366,574,2,433,0.99,2005-05-27T16:40:40Z,2020-02-15T06:59:56Z +15367,574,1,1559,0.99,2005-06-16T02:35:03Z,2020-02-15T06:59:56Z +15368,574,2,1636,5.99,2005-06-16T08:28:54Z,2020-02-15T06:59:56Z +15369,574,1,1817,0.99,2005-06-16T21:20:52Z,2020-02-15T06:59:56Z +15370,574,1,2632,0.99,2005-06-19T08:51:47Z,2020-02-15T06:59:56Z +15371,574,1,3220,6.99,2005-06-21T01:46:25Z,2020-02-15T06:59:56Z +15372,574,1,3583,7.99,2005-07-06T04:10:43Z,2020-02-15T06:59:56Z +15373,574,1,4004,4.99,2005-07-07T00:20:51Z,2020-02-15T06:59:56Z +15374,574,1,4212,4.99,2005-07-07T11:53:14Z,2020-02-15T06:59:56Z +15375,574,2,4890,2.99,2005-07-08T20:05:38Z,2020-02-15T06:59:56Z +15376,574,2,5010,4.99,2005-07-09T01:33:23Z,2020-02-15T06:59:56Z +15377,574,1,5076,3.99,2005-07-09T05:13:22Z,2020-02-15T06:59:56Z +15378,574,1,5077,3.99,2005-07-09T05:18:01Z,2020-02-15T06:59:56Z +15379,574,1,5640,2.99,2005-07-10T06:38:00Z,2020-02-15T06:59:56Z +15380,574,1,6523,2.99,2005-07-12T04:14:19Z,2020-02-15T06:59:56Z +15381,574,1,7093,1.99,2005-07-27T04:47:00Z,2020-02-15T06:59:56Z +15382,574,1,7134,2.99,2005-07-27T06:33:06Z,2020-02-15T06:59:56Z +15383,574,1,7964,2.99,2005-07-28T13:49:58Z,2020-02-15T06:59:56Z +15384,574,1,8303,4.99,2005-07-29T03:05:56Z,2020-02-15T06:59:56Z +15385,574,1,9589,7.99,2005-07-31T03:13:29Z,2020-02-15T06:59:56Z +15386,574,1,9759,3.99,2005-07-31T09:25:57Z,2020-02-15T06:59:57Z +15387,574,1,10347,4.99,2005-08-01T05:20:03Z,2020-02-15T06:59:57Z +15388,574,2,11775,3.99,2005-08-17T10:25:53Z,2020-02-15T06:59:57Z +15389,574,1,12462,2.99,2005-08-18T11:28:55Z,2020-02-15T06:59:57Z +15390,574,1,13589,4.99,2005-08-20T05:47:25Z,2020-02-15T06:59:57Z +15391,574,1,14076,4.99,2005-08-20T23:20:10Z,2020-02-15T06:59:57Z +15392,574,2,14941,2.99,2005-08-22T05:58:23Z,2020-02-15T06:59:57Z +15393,574,2,15214,2.99,2005-08-22T16:53:29Z,2020-02-15T06:59:57Z +15394,575,1,17,2.99,2005-05-25T01:06:36Z,2020-02-15T06:59:57Z +15395,575,1,395,0.99,2005-05-27T11:45:49Z,2020-02-15T06:59:57Z +15396,575,2,454,4.99,2005-05-27T19:31:36Z,2020-02-15T06:59:57Z +15397,575,2,769,2.99,2005-05-29T12:51:44Z,2020-02-15T06:59:57Z +15398,575,1,774,4.99,2005-05-29T13:19:43Z,2020-02-15T06:59:57Z +15399,575,2,1494,2.99,2005-06-15T21:54:20Z,2020-02-15T06:59:57Z +15400,575,1,1824,2.99,2005-06-16T21:51:04Z,2020-02-15T06:59:57Z +15401,575,2,1866,4.99,2005-06-17T01:53:19Z,2020-02-15T06:59:57Z +15402,575,1,3558,6.99,2005-07-06T02:49:06Z,2020-02-15T06:59:57Z +15403,575,2,5875,8.99,2005-07-10T19:06:47Z,2020-02-15T06:59:57Z +15404,575,2,6907,2.99,2005-07-12T22:03:49Z,2020-02-15T06:59:57Z +15405,575,1,7083,0.99,2005-07-27T04:28:39Z,2020-02-15T06:59:57Z +15406,575,1,7139,2.99,2005-07-27T06:52:21Z,2020-02-15T06:59:57Z +15407,575,2,8711,2.99,2005-07-29T17:27:15Z,2020-02-15T06:59:57Z +15408,575,2,8904,0.99,2005-07-30T01:08:33Z,2020-02-15T06:59:57Z +15409,575,2,8989,4.99,2005-07-30T04:39:19Z,2020-02-15T06:59:57Z +15410,575,1,9733,4.99,2005-07-31T08:57:35Z,2020-02-15T06:59:57Z +15411,575,1,10331,4.99,2005-08-01T04:57:14Z,2020-02-15T06:59:57Z +15412,575,2,10629,7.99,2005-08-01T15:33:32Z,2020-02-15T06:59:57Z +15413,575,1,11097,3.99,2005-08-02T08:05:46Z,2020-02-15T06:59:57Z +15414,575,1,11458,4.99,2005-08-02T21:24:02Z,2020-02-15T06:59:57Z +15415,575,1,12204,7.99,2005-08-18T02:20:35Z,2020-02-15T06:59:57Z +15416,575,2,12289,8.99,2005-08-18T05:05:28Z,2020-02-15T06:59:57Z +15417,575,2,12770,5.99,2005-08-18T23:29:00Z,2020-02-15T06:59:57Z +15418,575,2,13408,4.99,2005-08-19T22:34:51Z,2020-02-15T06:59:57Z +15419,575,2,13465,2.99,2005-08-20T00:54:14Z,2020-02-15T06:59:57Z +15420,575,2,14952,2.99,2005-08-22T06:20:07Z,2020-02-15T06:59:57Z +15421,575,2,15749,4.99,2005-08-23T12:33:41Z,2020-02-15T06:59:57Z +15422,575,2,15857,0.99,2005-08-23T15:59:51Z,2020-02-15T06:59:57Z +15423,576,2,755,2.99,2005-05-29T10:26:29Z,2020-02-15T06:59:57Z +15424,576,1,968,0.99,2005-05-30T19:20:03Z,2020-02-15T06:59:57Z +15425,576,1,1366,4.99,2005-06-15T14:21:00Z,2020-02-15T06:59:57Z +15426,576,2,1742,2.99,2005-06-16T16:37:48Z,2020-02-15T06:59:57Z +15427,576,1,2309,0.99,2005-06-18T08:43:24Z,2020-02-15T06:59:57Z +15428,576,2,2444,8.99,2005-06-18T18:58:12Z,2020-02-15T06:59:57Z +15429,576,1,2651,3.99,2005-06-19T10:22:56Z,2020-02-15T06:59:57Z +15430,576,2,2799,4.99,2005-06-19T19:15:21Z,2020-02-15T06:59:57Z +15431,576,2,3226,6.99,2005-06-21T02:18:14Z,2020-02-15T06:59:57Z +15432,576,1,3877,4.99,2005-07-06T18:22:10Z,2020-02-15T06:59:57Z +15433,576,2,3889,0.99,2005-07-06T18:56:25Z,2020-02-15T06:59:57Z +15434,576,2,3934,4.99,2005-07-06T21:07:23Z,2020-02-15T06:59:57Z +15435,576,1,4514,4.99,2005-07-08T02:41:25Z,2020-02-15T06:59:57Z +15436,576,2,5597,3.99,2005-07-10T04:47:57Z,2020-02-15T06:59:57Z +15437,576,1,5934,4.99,2005-07-10T22:07:59Z,2020-02-15T06:59:57Z +15438,576,2,7319,1.99,2005-07-27T13:31:25Z,2020-02-15T06:59:57Z +15439,576,1,7605,3.99,2005-07-27T23:57:01Z,2020-02-15T06:59:57Z +15440,576,1,8907,4.99,2005-07-30T01:25:03Z,2020-02-15T06:59:57Z +15441,576,1,9133,5.99,2005-07-30T09:59:00Z,2020-02-15T06:59:57Z +15442,576,2,9548,5.99,2005-07-31T01:54:19Z,2020-02-15T06:59:57Z +15443,576,2,9620,8.99,2005-07-31T04:19:18Z,2020-02-15T06:59:57Z +15444,576,2,9962,0.99,2005-07-31T16:10:36Z,2020-02-15T06:59:57Z +15445,576,1,9979,2.99,2005-07-31T17:00:07Z,2020-02-15T06:59:57Z +15446,576,1,10000,2.99,2005-07-31T17:41:05Z,2020-02-15T06:59:57Z +15447,576,2,10724,3.99,2005-08-01T19:10:59Z,2020-02-15T06:59:57Z +15448,576,2,12112,5.99,2005-08-17T23:00:31Z,2020-02-15T06:59:57Z +15449,576,1,12245,4.99,2005-08-18T03:46:40Z,2020-02-15T06:59:57Z +15450,576,1,13061,4.99,2005-08-19T09:43:39Z,2020-02-15T06:59:57Z +15451,576,1,13326,4.99,2005-08-19T19:52:52Z,2020-02-15T06:59:57Z +15452,576,1,14501,4.99,2005-08-21T14:14:38Z,2020-02-15T06:59:57Z +15453,576,1,14541,0.99,2005-08-21T15:34:32Z,2020-02-15T06:59:57Z +15454,576,1,15634,0.99,2005-08-23T07:34:18Z,2020-02-15T06:59:57Z +15455,576,2,11942,5.98,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15456,576,1,13464,0,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15457,577,2,291,5.99,2005-05-26T20:20:47Z,2020-02-15T06:59:57Z +15458,577,2,,0.99,2005-05-27T00:46:39Z,2020-02-15T06:59:57Z +15459,577,2,2399,3.99,2005-06-18T16:06:14Z,2020-02-15T06:59:57Z +15460,577,2,3286,2.99,2005-06-21T06:31:29Z,2020-02-15T06:59:57Z +15461,577,2,3401,6.99,2005-06-21T15:52:43Z,2020-02-15T06:59:57Z +15462,577,2,3599,0.99,2005-07-06T05:16:36Z,2020-02-15T06:59:57Z +15463,577,1,3785,7.99,2005-07-06T14:00:13Z,2020-02-15T06:59:57Z +15464,577,1,4922,2.99,2005-07-08T21:44:00Z,2020-02-15T06:59:57Z +15465,577,1,6500,2.99,2005-07-12T03:11:23Z,2020-02-15T06:59:57Z +15466,577,2,6534,2.99,2005-07-12T04:39:43Z,2020-02-15T06:59:57Z +15467,577,2,7197,0.99,2005-07-27T08:49:32Z,2020-02-15T06:59:57Z +15468,577,1,7371,4.99,2005-07-27T15:18:42Z,2020-02-15T06:59:57Z +15469,577,2,7876,8.99,2005-07-28T10:24:22Z,2020-02-15T06:59:57Z +15470,577,1,8043,5.99,2005-07-28T16:45:44Z,2020-02-15T06:59:57Z +15471,577,1,8060,6.99,2005-07-28T17:10:02Z,2020-02-15T06:59:57Z +15472,577,2,8671,6.99,2005-07-29T15:49:37Z,2020-02-15T06:59:57Z +15473,577,2,10323,4.99,2005-08-01T04:44:58Z,2020-02-15T06:59:57Z +15474,577,1,10487,0.99,2005-08-01T10:26:34Z,2020-02-15T06:59:57Z +15475,577,1,10782,4.99,2005-08-01T21:23:25Z,2020-02-15T06:59:57Z +15476,577,1,11054,7.99,2005-08-02T06:33:07Z,2020-02-15T06:59:57Z +15477,577,2,11464,0.99,2005-08-02T21:42:07Z,2020-02-15T06:59:57Z +15478,577,1,12664,4.99,2005-08-18T19:10:54Z,2020-02-15T06:59:57Z +15479,577,2,12671,0.99,2005-08-18T19:19:59Z,2020-02-15T06:59:57Z +15480,577,2,13200,3.99,2005-08-19T14:55:58Z,2020-02-15T06:59:57Z +15481,577,2,13500,3.99,2005-08-20T01:54:39Z,2020-02-15T06:59:57Z +15482,577,2,15480,2.99,2005-08-23T01:57:20Z,2020-02-15T06:59:57Z +15483,577,2,15873,2.99,2005-08-23T16:27:59Z,2020-02-15T06:59:57Z +15484,577,2,16003,4.99,2005-08-23T20:47:28Z,2020-02-15T06:59:57Z +15485,578,2,660,0.99,2005-05-28T20:53:31Z,2020-02-15T06:59:57Z +15486,578,2,1826,6.99,2005-06-16T21:53:52Z,2020-02-15T06:59:57Z +15487,578,2,2615,4.99,2005-06-19T07:29:13Z,2020-02-15T06:59:57Z +15488,578,1,3305,2.99,2005-06-21T07:46:57Z,2020-02-15T06:59:57Z +15489,578,2,4496,4.99,2005-07-08T01:44:19Z,2020-02-15T06:59:57Z +15490,578,1,5377,4.99,2005-07-09T19:04:30Z,2020-02-15T06:59:57Z +15491,578,1,5445,0.99,2005-07-09T21:59:41Z,2020-02-15T06:59:57Z +15492,578,2,5876,4.99,2005-07-10T19:07:15Z,2020-02-15T06:59:57Z +15493,578,1,6784,4.99,2005-07-12T16:28:49Z,2020-02-15T06:59:57Z +15494,578,1,6830,0.99,2005-07-12T18:42:55Z,2020-02-15T06:59:57Z +15495,578,2,7059,5.99,2005-07-27T03:51:02Z,2020-02-15T06:59:57Z +15496,578,1,8179,2.99,2005-07-28T22:05:13Z,2020-02-15T06:59:57Z +15497,578,1,8218,2.99,2005-07-28T23:45:41Z,2020-02-15T06:59:57Z +15498,578,2,9970,4.99,2005-07-31T16:38:24Z,2020-02-15T06:59:57Z +15499,578,1,10029,6.99,2005-07-31T18:37:47Z,2020-02-15T06:59:57Z +15500,578,2,10182,2.99,2005-08-01T00:08:01Z,2020-02-15T06:59:57Z +15501,578,1,10779,7.99,2005-08-01T21:11:54Z,2020-02-15T06:59:57Z +15502,578,1,11199,7.99,2005-08-02T11:47:40Z,2020-02-15T06:59:57Z +15503,578,2,13071,5.99,2005-08-19T10:01:07Z,2020-02-15T06:59:57Z +15504,578,2,13498,5.99,2005-08-20T01:51:23Z,2020-02-15T06:59:57Z +15505,578,2,13552,2.99,2005-08-20T04:03:51Z,2020-02-15T06:59:57Z +15506,578,1,15652,0.99,2005-08-23T08:34:10Z,2020-02-15T06:59:57Z +15507,579,2,2425,5.99,2005-06-18T17:37:45Z,2020-02-15T06:59:57Z +15508,579,1,2522,3.99,2005-06-19T00:43:42Z,2020-02-15T06:59:57Z +15509,579,1,3111,2.99,2005-06-20T17:46:47Z,2020-02-15T06:59:57Z +15510,579,1,4619,9.99,2005-07-08T08:01:09Z,2020-02-15T06:59:57Z +15511,579,1,4933,2.99,2005-07-08T22:18:29Z,2020-02-15T06:59:57Z +15512,579,1,6304,4.99,2005-07-11T18:02:16Z,2020-02-15T06:59:57Z +15513,579,2,6814,1.99,2005-07-12T18:11:58Z,2020-02-15T06:59:57Z +15514,579,2,6824,6.99,2005-07-12T18:26:46Z,2020-02-15T06:59:57Z +15515,579,2,6969,8.99,2005-07-27T00:23:54Z,2020-02-15T06:59:57Z +15516,579,2,7221,2.99,2005-07-27T09:37:35Z,2020-02-15T06:59:57Z +15517,579,1,8354,0.99,2005-07-29T04:56:26Z,2020-02-15T06:59:57Z +15518,579,1,8876,0.99,2005-07-30T00:15:09Z,2020-02-15T06:59:57Z +15519,579,1,8996,0.99,2005-07-30T04:53:23Z,2020-02-15T06:59:57Z +15520,579,2,9349,9.99,2005-07-30T18:20:08Z,2020-02-15T06:59:57Z +15521,579,2,9553,5.99,2005-07-31T02:06:34Z,2020-02-15T06:59:57Z +15522,579,2,9976,2.99,2005-07-31T16:57:49Z,2020-02-15T06:59:57Z +15523,579,2,9997,4.99,2005-07-31T17:37:30Z,2020-02-15T06:59:57Z +15524,579,1,11494,3.99,2005-08-02T22:51:23Z,2020-02-15T06:59:57Z +15525,579,2,12051,6.99,2005-08-17T20:56:15Z,2020-02-15T06:59:57Z +15526,579,2,12315,5.99,2005-08-18T06:15:06Z,2020-02-15T06:59:57Z +15527,579,2,14047,2.99,2005-08-20T22:00:43Z,2020-02-15T06:59:57Z +15528,579,1,14185,0.99,2005-08-21T03:28:37Z,2020-02-15T06:59:57Z +15529,579,1,14543,1.99,2005-08-21T15:39:01Z,2020-02-15T06:59:57Z +15530,579,2,14560,2.99,2005-08-21T16:13:47Z,2020-02-15T06:59:57Z +15531,579,2,15601,0.99,2005-08-23T06:33:26Z,2020-02-15T06:59:57Z +15532,579,1,15838,4.99,2005-08-23T15:30:48Z,2020-02-15T06:59:57Z +15533,579,2,15794,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15534,580,1,611,0.99,2005-05-28T15:18:18Z,2020-02-15T06:59:57Z +15535,580,1,1469,0.99,2005-06-15T20:52:36Z,2020-02-15T06:59:57Z +15536,580,2,3571,1.99,2005-07-06T03:32:31Z,2020-02-15T06:59:57Z +15537,580,2,3867,1.99,2005-07-06T17:52:19Z,2020-02-15T06:59:57Z +15538,580,2,4169,1.99,2005-07-07T09:39:18Z,2020-02-15T06:59:57Z +15539,580,2,4590,3.99,2005-07-08T06:27:48Z,2020-02-15T06:59:57Z +15540,580,1,5937,6.99,2005-07-10T22:16:08Z,2020-02-15T06:59:57Z +15541,580,1,6089,2.99,2005-07-11T05:45:59Z,2020-02-15T06:59:57Z +15542,580,2,6170,2.99,2005-07-11T10:29:21Z,2020-02-15T06:59:57Z +15543,580,1,7620,0.99,2005-07-28T00:27:17Z,2020-02-15T06:59:57Z +15544,580,2,8784,4.99,2005-07-29T20:35:37Z,2020-02-15T06:59:57Z +15545,580,1,8839,3.99,2005-07-29T22:52:34Z,2020-02-15T06:59:57Z +15546,580,1,9199,0.99,2005-07-30T12:38:00Z,2020-02-15T06:59:57Z +15547,580,1,9239,3.99,2005-07-30T13:50:52Z,2020-02-15T06:59:57Z +15548,580,1,9460,5.99,2005-07-30T22:25:39Z,2020-02-15T06:59:57Z +15549,580,2,9604,4.99,2005-07-31T03:47:12Z,2020-02-15T06:59:57Z +15550,580,2,9865,0.99,2005-07-31T13:10:45Z,2020-02-15T06:59:57Z +15551,580,1,10723,3.99,2005-08-01T19:10:49Z,2020-02-15T06:59:57Z +15552,580,2,10965,3.99,2005-08-02T04:00:19Z,2020-02-15T06:59:57Z +15553,580,1,11164,8.99,2005-08-02T10:10:56Z,2020-02-15T06:59:57Z +15554,580,2,12670,2.99,2005-08-18T19:17:58Z,2020-02-15T06:59:57Z +15555,580,2,13313,2.99,2005-08-19T19:11:41Z,2020-02-15T06:59:57Z +15556,580,2,13742,2.99,2005-08-20T10:49:15Z,2020-02-15T06:59:57Z +15557,580,2,14818,2.99,2005-08-22T01:17:18Z,2020-02-15T06:59:57Z +15558,580,1,15157,6.99,2005-08-22T14:30:09Z,2020-02-15T06:59:57Z +15559,580,1,15630,6.99,2005-08-23T07:29:13Z,2020-02-15T06:59:57Z +15560,580,1,15947,4.99,2005-08-23T18:54:32Z,2020-02-15T06:59:57Z +15561,581,1,976,4.99,2005-05-30T21:11:19Z,2020-02-15T06:59:57Z +15562,581,1,1151,4.99,2005-05-31T21:29:00Z,2020-02-15T06:59:57Z +15563,581,2,1958,3.99,2005-06-17T08:52:01Z,2020-02-15T06:59:57Z +15564,581,2,2101,2.99,2005-06-17T18:57:02Z,2020-02-15T06:59:57Z +15565,581,1,2137,4.99,2005-06-17T21:18:28Z,2020-02-15T06:59:57Z +15566,581,2,4210,2.99,2005-07-07T11:36:20Z,2020-02-15T06:59:57Z +15567,581,2,4244,2.99,2005-07-07T13:41:58Z,2020-02-15T06:59:57Z +15568,581,1,4338,4.99,2005-07-07T18:39:56Z,2020-02-15T06:59:57Z +15569,581,2,4613,0.99,2005-07-08T07:44:49Z,2020-02-15T06:59:57Z +15570,581,1,4669,5.99,2005-07-08T10:13:08Z,2020-02-15T06:59:57Z +15571,581,1,4815,8.99,2005-07-08T17:12:51Z,2020-02-15T06:59:57Z +15572,581,1,4833,1.99,2005-07-08T18:07:35Z,2020-02-15T06:59:57Z +15573,581,1,5516,4.99,2005-07-10T01:13:52Z,2020-02-15T06:59:57Z +15574,581,1,5707,4.99,2005-07-10T10:26:14Z,2020-02-15T06:59:57Z +15575,581,2,5812,2.99,2005-07-10T15:27:56Z,2020-02-15T06:59:57Z +15576,581,2,7048,7.99,2005-07-27T03:31:48Z,2020-02-15T06:59:57Z +15577,581,1,7783,2.99,2005-07-28T07:14:43Z,2020-02-15T06:59:57Z +15578,581,1,9278,2.99,2005-07-30T15:15:19Z,2020-02-15T06:59:57Z +15579,581,1,9449,1.99,2005-07-30T22:02:34Z,2020-02-15T06:59:57Z +15580,581,2,11443,2.99,2005-08-02T20:29:30Z,2020-02-15T06:59:57Z +15581,581,2,11707,2.99,2005-08-17T07:24:59Z,2020-02-15T06:59:57Z +15582,581,2,13621,0.99,2005-08-20T06:43:44Z,2020-02-15T06:59:57Z +15583,581,2,13712,2.99,2005-08-20T09:38:04Z,2020-02-15T06:59:57Z +15584,581,2,14070,8.99,2005-08-20T22:56:34Z,2020-02-15T06:59:57Z +15585,581,1,14976,2.99,2005-08-22T07:10:26Z,2020-02-15T06:59:57Z +15586,581,1,15403,0.99,2005-08-22T23:18:10Z,2020-02-15T06:59:57Z +15587,581,2,15792,4.99,2005-08-23T14:05:37Z,2020-02-15T06:59:57Z +15588,582,1,281,0.99,2005-05-26T18:49:35Z,2020-02-15T06:59:57Z +15589,582,1,1719,2.99,2005-06-16T14:55:53Z,2020-02-15T06:59:57Z +15590,582,1,2337,7.99,2005-06-18T11:15:27Z,2020-02-15T06:59:57Z +15591,582,2,3071,0.99,2005-06-20T14:20:42Z,2020-02-15T06:59:57Z +15592,582,1,3767,0.99,2005-07-06T13:07:27Z,2020-02-15T06:59:57Z +15593,582,2,6629,5.99,2005-07-12T09:18:35Z,2020-02-15T06:59:57Z +15594,582,2,7126,4.99,2005-07-27T06:13:13Z,2020-02-15T06:59:57Z +15595,582,2,7311,6.99,2005-07-27T13:02:54Z,2020-02-15T06:59:57Z +15596,582,2,7412,5.99,2005-07-27T16:44:34Z,2020-02-15T06:59:57Z +15597,582,1,7575,2.99,2005-07-27T22:53:52Z,2020-02-15T06:59:57Z +15598,582,2,8308,5.99,2005-07-29T03:22:15Z,2020-02-15T06:59:57Z +15599,582,1,8554,2.99,2005-07-29T11:16:29Z,2020-02-15T06:59:57Z +15600,582,1,8778,6.99,2005-07-29T20:14:25Z,2020-02-15T06:59:57Z +15601,582,1,9768,9.99,2005-07-31T09:48:41Z,2020-02-15T06:59:57Z +15602,582,2,11290,7.99,2005-08-02T14:57:44Z,2020-02-15T06:59:57Z +15603,582,1,11667,5.99,2005-08-17T05:46:55Z,2020-02-15T06:59:57Z +15604,582,1,11708,2.99,2005-08-17T07:26:47Z,2020-02-15T06:59:57Z +15605,582,2,13815,5.99,2005-08-20T13:08:53Z,2020-02-15T06:59:57Z +15606,582,1,14376,4.99,2005-08-21T09:48:56Z,2020-02-15T06:59:57Z +15607,582,1,14568,0.99,2005-08-21T16:30:48Z,2020-02-15T06:59:57Z +15608,582,1,15090,5.99,2005-08-22T11:34:33Z,2020-02-15T06:59:57Z +15609,582,1,15503,2.99,2005-08-23T02:44:49Z,2020-02-15T06:59:57Z +15610,582,1,15539,0.99,2005-08-23T04:09:03Z,2020-02-15T06:59:57Z +15611,582,2,15911,4.99,2005-08-23T17:44:53Z,2020-02-15T06:59:57Z +15612,582,2,12127,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15613,583,1,1428,3.99,2005-06-15T18:19:30Z,2020-02-15T06:59:57Z +15614,583,1,2429,9.99,2005-06-18T17:48:28Z,2020-02-15T06:59:57Z +15615,583,2,2663,4.99,2005-06-19T10:54:00Z,2020-02-15T06:59:57Z +15616,583,2,2845,5.99,2005-06-19T22:46:37Z,2020-02-15T06:59:57Z +15617,583,2,2879,3.99,2005-06-20T01:24:10Z,2020-02-15T06:59:57Z +15618,583,1,3424,0.99,2005-06-21T17:42:51Z,2020-02-15T06:59:57Z +15619,583,1,3779,2.99,2005-07-06T13:46:36Z,2020-02-15T06:59:57Z +15620,583,1,3842,4.99,2005-07-06T16:34:32Z,2020-02-15T06:59:57Z +15621,583,2,3991,9.99,2005-07-06T23:33:41Z,2020-02-15T06:59:57Z +15622,583,1,4464,4.99,2005-07-08T00:07:18Z,2020-02-15T06:59:57Z +15623,583,1,5462,0.99,2005-07-09T22:56:53Z,2020-02-15T06:59:57Z +15624,583,1,5478,5.99,2005-07-09T23:45:15Z,2020-02-15T06:59:57Z +15625,583,2,5747,7.99,2005-07-10T12:15:33Z,2020-02-15T06:59:57Z +15626,583,2,6684,6.99,2005-07-12T12:14:42Z,2020-02-15T06:59:57Z +15627,583,1,7401,5.99,2005-07-27T16:17:55Z,2020-02-15T06:59:57Z +15628,583,2,8568,7.99,2005-07-29T11:38:22Z,2020-02-15T06:59:57Z +15629,583,1,9550,7.99,2005-07-31T01:57:34Z,2020-02-15T06:59:57Z +15630,583,2,9808,1.99,2005-07-31T11:17:22Z,2020-02-15T06:59:57Z +15631,583,2,10301,4.99,2005-08-01T04:09:37Z,2020-02-15T06:59:57Z +15632,583,2,10586,2.99,2005-08-01T14:00:59Z,2020-02-15T06:59:57Z +15633,583,2,10800,4.99,2005-08-01T22:07:44Z,2020-02-15T06:59:57Z +15634,583,2,11002,4.99,2005-08-02T05:02:56Z,2020-02-15T06:59:57Z +15635,583,1,14259,0.99,2005-08-21T06:00:22Z,2020-02-15T06:59:57Z +15636,584,2,379,4.99,2005-05-27T09:25:32Z,2020-02-15T06:59:57Z +15637,584,1,626,4.99,2005-05-28T16:58:09Z,2020-02-15T06:59:57Z +15638,584,1,920,4.99,2005-05-30T11:44:01Z,2020-02-15T06:59:57Z +15639,584,2,1436,3.99,2005-06-15T18:35:40Z,2020-02-15T06:59:57Z +15640,584,2,3317,6.99,2005-06-21T08:22:32Z,2020-02-15T06:59:57Z +15641,584,2,3741,2.99,2005-07-06T12:00:18Z,2020-02-15T06:59:57Z +15642,584,2,3895,7.99,2005-07-06T19:04:24Z,2020-02-15T06:59:57Z +15643,584,1,4410,0.99,2005-07-07T21:48:16Z,2020-02-15T06:59:57Z +15644,584,1,4977,0.99,2005-07-09T00:15:50Z,2020-02-15T06:59:57Z +15645,584,2,6954,0.99,2005-07-26T23:55:13Z,2020-02-15T06:59:57Z +15646,584,1,7186,2.99,2005-07-27T08:26:12Z,2020-02-15T06:59:57Z +15647,584,1,7372,4.99,2005-07-27T15:18:42Z,2020-02-15T06:59:57Z +15648,584,1,7659,4.99,2005-07-28T02:09:45Z,2020-02-15T06:59:57Z +15649,584,2,8879,4.99,2005-07-30T00:16:02Z,2020-02-15T06:59:57Z +15650,584,2,9451,3.99,2005-07-30T22:10:17Z,2020-02-15T06:59:57Z +15651,584,1,9719,5.99,2005-07-31T08:25:13Z,2020-02-15T06:59:57Z +15652,584,2,10073,2.99,2005-07-31T19:53:15Z,2020-02-15T06:59:57Z +15653,584,1,10914,4.99,2005-08-02T02:04:43Z,2020-02-15T06:59:57Z +15654,584,2,10966,0.99,2005-08-02T04:00:47Z,2020-02-15T06:59:57Z +15655,584,1,11213,4.99,2005-08-02T12:18:35Z,2020-02-15T06:59:57Z +15656,584,2,11500,6.99,2005-08-16T23:01:22Z,2020-02-15T06:59:57Z +15657,584,2,12507,8.99,2005-08-18T13:19:13Z,2020-02-15T06:59:57Z +15658,584,2,12541,2.99,2005-08-18T14:18:30Z,2020-02-15T06:59:57Z +15659,584,2,12693,5.99,2005-08-18T20:10:19Z,2020-02-15T06:59:57Z +15660,584,1,12844,2.99,2005-08-19T01:59:08Z,2020-02-15T06:59:57Z +15661,584,2,14102,5.99,2005-08-21T00:35:21Z,2020-02-15T06:59:57Z +15662,584,2,14230,5.99,2005-08-21T04:57:29Z,2020-02-15T06:59:57Z +15663,584,2,14447,4.99,2005-08-21T12:12:05Z,2020-02-15T06:59:57Z +15664,584,1,14930,1.99,2005-08-22T05:38:32Z,2020-02-15T06:59:57Z +15665,584,1,15615,0.99,2005-08-23T07:06:00Z,2020-02-15T06:59:57Z +15666,585,1,1344,0.99,2005-06-15T12:29:41Z,2020-02-15T06:59:57Z +15667,585,2,1346,7.99,2005-06-15T12:39:52Z,2020-02-15T06:59:57Z +15668,585,1,2674,0.99,2005-06-19T11:47:59Z,2020-02-15T06:59:57Z +15669,585,1,2930,3.99,2005-06-20T04:50:29Z,2020-02-15T06:59:57Z +15670,585,2,4156,4.99,2005-07-07T09:03:51Z,2020-02-15T06:59:57Z +15671,585,2,4579,4.99,2005-07-08T06:01:56Z,2020-02-15T06:59:57Z +15672,585,1,4684,9.99,2005-07-08T10:41:06Z,2020-02-15T06:59:57Z +15673,585,2,5284,2.99,2005-07-09T15:08:21Z,2020-02-15T06:59:57Z +15674,585,2,5950,4.99,2005-07-10T23:13:45Z,2020-02-15T06:59:57Z +15675,585,2,6733,6.99,2005-07-12T14:04:01Z,2020-02-15T06:59:57Z +15676,585,1,7131,2.99,2005-07-27T06:25:06Z,2020-02-15T06:59:57Z +15677,585,1,7384,4.99,2005-07-27T15:49:45Z,2020-02-15T06:59:57Z +15678,585,2,7409,4.99,2005-07-27T16:38:24Z,2020-02-15T06:59:57Z +15679,585,2,8353,2.99,2005-07-29T04:52:10Z,2020-02-15T06:59:57Z +15680,585,2,9407,8.99,2005-07-30T20:25:24Z,2020-02-15T06:59:57Z +15681,585,1,9590,3.99,2005-07-31T03:17:16Z,2020-02-15T06:59:57Z +15682,585,1,9860,6.99,2005-07-31T13:03:24Z,2020-02-15T06:59:57Z +15683,585,2,10573,0.99,2005-08-01T13:27:24Z,2020-02-15T06:59:57Z +15684,585,1,11285,9.99,2005-08-02T14:44:02Z,2020-02-15T06:59:57Z +15685,585,2,13593,3.99,2005-08-20T05:50:52Z,2020-02-15T06:59:57Z +15686,585,2,13939,0.99,2005-08-20T17:28:01Z,2020-02-15T06:59:57Z +15687,585,1,15804,4.99,2005-08-23T14:29:16Z,2020-02-15T06:59:57Z +15688,585,1,15896,6.99,2005-08-23T17:09:56Z,2020-02-15T06:59:57Z +15689,585,2,14604,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15690,586,1,138,4.99,2005-05-25T22:48:22Z,2020-02-15T06:59:57Z +15691,586,1,900,8.99,2005-05-30T09:38:41Z,2020-02-15T06:59:57Z +15692,586,1,1260,2.99,2005-06-15T06:42:25Z,2020-02-15T06:59:57Z +15693,586,2,1540,0.99,2005-06-16T01:14:56Z,2020-02-15T06:59:57Z +15694,586,2,3487,6.99,2005-07-05T23:30:36Z,2020-02-15T06:59:57Z +15695,586,2,3733,4.99,2005-07-06T11:33:55Z,2020-02-15T06:59:57Z +15696,586,2,5382,2.99,2005-07-09T19:12:57Z,2020-02-15T06:59:57Z +15697,586,1,6679,2.99,2005-07-12T12:01:07Z,2020-02-15T06:59:57Z +15698,586,2,9786,2.99,2005-07-31T10:25:21Z,2020-02-15T06:59:57Z +15699,586,2,9896,2.99,2005-07-31T14:09:48Z,2020-02-15T06:59:57Z +15700,586,1,11034,2.99,2005-08-02T05:54:53Z,2020-02-15T06:59:57Z +15701,586,1,11763,0.99,2005-08-17T09:51:39Z,2020-02-15T06:59:57Z +15702,586,1,12013,4.99,2005-08-17T19:23:02Z,2020-02-15T06:59:57Z +15703,586,1,12898,0.99,2005-08-19T03:54:34Z,2020-02-15T06:59:57Z +15704,586,2,14043,2.99,2005-08-20T21:46:43Z,2020-02-15T06:59:57Z +15705,586,1,14392,1.99,2005-08-21T10:19:25Z,2020-02-15T06:59:57Z +15706,586,2,14533,2.99,2005-08-21T15:15:19Z,2020-02-15T06:59:57Z +15707,586,1,15666,3.99,2005-08-23T09:01:10Z,2020-02-15T06:59:57Z +15708,586,2,15684,0.99,2005-08-23T09:40:04Z,2020-02-15T06:59:57Z +15709,587,1,181,4.99,2005-05-26T04:47:06Z,2020-02-15T06:59:57Z +15710,587,1,361,0.99,2005-05-27T07:03:28Z,2020-02-15T06:59:57Z +15711,587,2,1330,2.99,2005-06-15T11:29:17Z,2020-02-15T06:59:57Z +15712,587,2,2034,4.99,2005-06-17T13:27:16Z,2020-02-15T06:59:57Z +15713,587,1,2220,2.99,2005-06-18T03:21:36Z,2020-02-15T06:59:57Z +15714,587,1,2329,4.99,2005-06-18T10:22:52Z,2020-02-15T06:59:57Z +15715,587,2,3562,2.99,2005-07-06T02:54:36Z,2020-02-15T06:59:57Z +15716,587,2,3969,0.99,2005-07-06T22:47:59Z,2020-02-15T06:59:57Z +15717,587,2,5243,3.99,2005-07-09T13:22:08Z,2020-02-15T06:59:57Z +15718,587,1,6639,0.99,2005-07-12T10:00:44Z,2020-02-15T06:59:57Z +15719,587,2,6665,6.99,2005-07-12T11:29:14Z,2020-02-15T06:59:57Z +15720,587,1,7501,8.99,2005-07-27T20:16:59Z,2020-02-15T06:59:57Z +15721,587,2,8776,5.99,2005-07-29T20:07:06Z,2020-02-15T06:59:57Z +15722,587,2,9720,6.99,2005-07-31T08:25:21Z,2020-02-15T06:59:57Z +15723,587,2,9785,4.99,2005-07-31T10:22:15Z,2020-02-15T06:59:57Z +15724,587,2,9909,5.99,2005-07-31T14:43:34Z,2020-02-15T06:59:57Z +15725,587,2,10224,4.99,2005-08-01T01:31:56Z,2020-02-15T06:59:57Z +15726,587,1,10825,2.99,2005-08-01T23:05:33Z,2020-02-15T06:59:57Z +15727,587,1,11078,2.99,2005-08-02T07:26:58Z,2020-02-15T06:59:57Z +15728,587,2,11403,4.99,2005-08-02T19:10:21Z,2020-02-15T06:59:57Z +15729,587,2,12164,4.99,2005-08-18T00:46:38Z,2020-02-15T06:59:57Z +15730,587,2,12330,6.99,2005-08-18T06:46:33Z,2020-02-15T06:59:57Z +15731,587,2,14710,4.99,2005-08-21T21:15:23Z,2020-02-15T06:59:57Z +15732,587,2,15348,2.99,2005-08-22T21:13:46Z,2020-02-15T06:59:57Z +15733,587,2,15349,0.99,2005-08-22T21:13:51Z,2020-02-15T06:59:57Z +15734,587,1,12144,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15735,588,1,576,2.99,2005-05-28T10:56:10Z,2020-02-15T06:59:57Z +15736,588,1,961,4.99,2005-05-30T18:16:44Z,2020-02-15T06:59:57Z +15737,588,2,1885,2.99,2005-06-17T03:35:59Z,2020-02-15T06:59:57Z +15738,588,2,1903,6.99,2005-06-17T04:37:20Z,2020-02-15T06:59:57Z +15739,588,2,2270,7.99,2005-06-18T06:29:01Z,2020-02-15T06:59:57Z +15740,588,1,2453,2.99,2005-06-18T19:30:53Z,2020-02-15T06:59:57Z +15741,588,2,2920,3.99,2005-06-20T04:12:46Z,2020-02-15T06:59:57Z +15742,588,1,3628,4.99,2005-07-06T06:19:43Z,2020-02-15T06:59:57Z +15743,588,1,4101,0.99,2005-07-07T06:25:11Z,2020-02-15T06:59:57Z +15744,588,2,4207,5.99,2005-07-07T11:32:45Z,2020-02-15T06:59:57Z +15745,588,2,5203,2.99,2005-07-09T10:53:59Z,2020-02-15T06:59:57Z +15746,588,1,5335,4.99,2005-07-09T17:00:49Z,2020-02-15T06:59:57Z +15747,588,1,6368,4.99,2005-07-11T21:19:01Z,2020-02-15T06:59:57Z +15748,588,2,7377,2.99,2005-07-27T15:31:28Z,2020-02-15T06:59:57Z +15749,588,2,7903,2.99,2005-07-28T11:20:36Z,2020-02-15T06:59:57Z +15750,588,1,8421,4.99,2005-07-29T07:00:47Z,2020-02-15T06:59:57Z +15751,588,1,8429,2.99,2005-07-29T07:11:49Z,2020-02-15T06:59:57Z +15752,588,2,8519,2.99,2005-07-29T10:09:43Z,2020-02-15T06:59:57Z +15753,588,1,8769,2.99,2005-07-29T19:45:33Z,2020-02-15T06:59:57Z +15754,588,2,9326,2.99,2005-07-30T17:30:03Z,2020-02-15T06:59:57Z +15755,588,2,9370,4.99,2005-07-30T18:57:29Z,2020-02-15T06:59:57Z +15756,588,2,10373,4.99,2005-08-01T06:24:26Z,2020-02-15T06:59:57Z +15757,588,1,12185,2.99,2005-08-18T01:40:14Z,2020-02-15T06:59:57Z +15758,588,2,12815,4.99,2005-08-19T00:59:42Z,2020-02-15T06:59:57Z +15759,588,1,13064,4.99,2005-08-19T09:46:53Z,2020-02-15T06:59:57Z +15760,588,1,13923,1.99,2005-08-20T17:05:02Z,2020-02-15T06:59:57Z +15761,588,1,15109,1.99,2005-08-22T12:12:58Z,2020-02-15T06:59:57Z +15762,588,1,15158,2.99,2005-08-22T14:30:39Z,2020-02-15T06:59:57Z +15763,588,1,15209,4.99,2005-08-22T16:37:32Z,2020-02-15T06:59:57Z +15764,589,1,531,0.99,2005-05-28T05:23:38Z,2020-02-15T06:59:57Z +15765,589,1,596,4.99,2005-05-28T14:00:03Z,2020-02-15T06:59:57Z +15766,589,1,737,4.99,2005-05-29T08:11:31Z,2020-02-15T06:59:57Z +15767,589,1,1439,4.99,2005-06-15T18:45:32Z,2020-02-15T06:59:57Z +15768,589,2,1703,4.99,2005-06-16T13:28:44Z,2020-02-15T06:59:57Z +15769,589,2,2652,8.99,2005-06-19T10:35:26Z,2020-02-15T06:59:57Z +15770,589,1,2707,8.99,2005-06-19T13:57:08Z,2020-02-15T06:59:57Z +15771,589,1,2979,2.99,2005-06-20T08:31:05Z,2020-02-15T06:59:57Z +15772,589,2,4986,2.99,2005-07-09T00:44:33Z,2020-02-15T06:59:57Z +15773,589,1,5951,0.99,2005-07-10T23:14:29Z,2020-02-15T06:59:57Z +15774,589,2,6177,4.99,2005-07-11T10:53:49Z,2020-02-15T06:59:57Z +15775,589,2,6247,3.99,2005-07-11T15:00:05Z,2020-02-15T06:59:57Z +15776,589,2,7250,0.99,2005-07-27T10:44:09Z,2020-02-15T06:59:57Z +15777,589,2,7431,3.99,2005-07-27T17:27:27Z,2020-02-15T06:59:57Z +15778,589,2,7948,9.99,2005-07-28T13:06:16Z,2020-02-15T06:59:57Z +15779,589,2,8056,0.99,2005-07-28T17:04:15Z,2020-02-15T06:59:57Z +15780,589,1,8374,3.99,2005-07-29T05:24:02Z,2020-02-15T06:59:57Z +15781,589,1,9153,4.99,2005-07-30T10:58:16Z,2020-02-15T06:59:57Z +15782,589,2,10544,4.99,2005-08-01T12:36:21Z,2020-02-15T06:59:57Z +15783,589,1,11980,4.99,2005-08-17T18:10:18Z,2020-02-15T06:59:57Z +15784,589,1,12738,7.99,2005-08-18T22:11:47Z,2020-02-15T06:59:57Z +15785,589,2,12933,8.99,2005-08-19T05:18:20Z,2020-02-15T06:59:57Z +15786,589,1,14038,6.99,2005-08-20T21:39:23Z,2020-02-15T06:59:57Z +15787,589,1,14254,6.99,2005-08-21T05:51:28Z,2020-02-15T06:59:57Z +15788,589,1,14544,0.99,2005-08-21T15:41:01Z,2020-02-15T06:59:57Z +15789,589,2,14706,0.99,2005-08-21T21:04:42Z,2020-02-15T06:59:57Z +15790,589,2,15917,5.99,2005-08-23T17:57:28Z,2020-02-15T06:59:57Z +15791,589,2,15992,0.99,2005-08-23T20:28:32Z,2020-02-15T06:59:57Z +15792,590,1,602,3.99,2005-05-28T14:15:54Z,2020-02-15T06:59:57Z +15793,590,2,1456,7.99,2005-06-15T20:00:11Z,2020-02-15T06:59:57Z +15794,590,2,2352,2.99,2005-06-18T12:40:15Z,2020-02-15T06:59:57Z +15795,590,2,2775,2.99,2005-06-19T18:14:20Z,2020-02-15T06:59:57Z +15796,590,1,2916,6.99,2005-06-20T04:01:04Z,2020-02-15T06:59:57Z +15797,590,1,2964,9.99,2005-06-20T07:33:29Z,2020-02-15T06:59:57Z +15798,590,2,4685,4.99,2005-07-08T10:45:13Z,2020-02-15T06:59:57Z +15799,590,1,4710,2.99,2005-07-08T12:04:53Z,2020-02-15T06:59:57Z +15800,590,2,4722,4.99,2005-07-08T12:42:27Z,2020-02-15T06:59:57Z +15801,590,1,5165,0.99,2005-07-09T09:08:53Z,2020-02-15T06:59:57Z +15802,590,1,5529,2.99,2005-07-10T02:11:13Z,2020-02-15T06:59:57Z +15803,590,1,5991,4.99,2005-07-11T01:03:38Z,2020-02-15T06:59:57Z +15804,590,2,6232,4.99,2005-07-11T14:08:27Z,2020-02-15T06:59:57Z +15805,590,2,6492,4.99,2005-07-12T02:28:40Z,2020-02-15T06:59:57Z +15806,590,1,7010,4.99,2005-07-27T01:56:01Z,2020-02-15T06:59:57Z +15807,590,2,7665,2.99,2005-07-28T02:28:30Z,2020-02-15T06:59:57Z +15808,590,1,8195,5.99,2005-07-28T22:52:58Z,2020-02-15T06:59:57Z +15809,590,1,8801,4.99,2005-07-29T21:25:22Z,2020-02-15T06:59:57Z +15810,590,2,9126,0.99,2005-07-30T09:44:15Z,2020-02-15T06:59:57Z +15811,590,1,9884,4.99,2005-07-31T13:56:24Z,2020-02-15T06:59:57Z +15812,590,1,10657,4.99,2005-08-01T16:38:44Z,2020-02-15T06:59:57Z +15813,590,2,11578,5.99,2005-08-17T01:54:13Z,2020-02-15T06:59:57Z +15814,590,2,11713,3.99,2005-08-17T07:34:05Z,2020-02-15T06:59:57Z +15815,590,1,14830,2.99,2005-08-22T01:37:19Z,2020-02-15T06:59:57Z +15816,590,2,15458,2.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15817,591,1,1418,0.99,2005-06-15T17:51:27Z,2020-02-15T06:59:57Z +15818,591,2,3341,2.99,2005-06-21T10:37:25Z,2020-02-15T06:59:57Z +15819,591,2,3435,4.99,2005-06-21T19:14:58Z,2020-02-15T06:59:57Z +15820,591,1,3636,0.99,2005-07-06T07:03:52Z,2020-02-15T06:59:57Z +15821,591,2,4383,11.99,2005-07-07T20:45:51Z,2020-02-15T06:59:57Z +15822,591,1,4581,6.99,2005-07-08T06:05:06Z,2020-02-15T06:59:57Z +15823,591,1,5704,5.99,2005-07-10T10:06:29Z,2020-02-15T06:59:57Z +15824,591,1,5759,6.99,2005-07-10T12:43:22Z,2020-02-15T06:59:57Z +15825,591,1,7118,8.99,2005-07-27T05:53:50Z,2020-02-15T06:59:57Z +15826,591,1,7212,2.99,2005-07-27T09:21:22Z,2020-02-15T06:59:57Z +15827,591,2,7511,4.99,2005-07-27T20:38:40Z,2020-02-15T06:59:57Z +15828,591,1,7549,3.99,2005-07-27T21:53:21Z,2020-02-15T06:59:57Z +15829,591,2,7741,0.99,2005-07-28T05:25:55Z,2020-02-15T06:59:57Z +15830,591,1,7997,4.99,2005-07-28T15:02:25Z,2020-02-15T06:59:57Z +15831,591,1,8149,3.99,2005-07-28T20:48:12Z,2020-02-15T06:59:57Z +15832,591,2,8666,5.99,2005-07-29T15:39:38Z,2020-02-15T06:59:57Z +15833,591,2,8819,4.99,2005-07-29T22:14:26Z,2020-02-15T06:59:57Z +15834,591,1,9684,0.99,2005-07-31T06:48:33Z,2020-02-15T06:59:57Z +15835,591,1,10415,4.99,2005-08-01T08:05:59Z,2020-02-15T06:59:57Z +15836,591,2,12203,5.99,2005-08-18T02:18:52Z,2020-02-15T06:59:57Z +15837,591,2,12227,4.99,2005-08-18T03:04:28Z,2020-02-15T06:59:57Z +15838,591,1,12547,4.99,2005-08-18T14:29:39Z,2020-02-15T06:59:57Z +15839,591,1,12571,5.99,2005-08-18T15:31:18Z,2020-02-15T06:59:57Z +15840,591,1,12934,5.99,2005-08-19T05:18:42Z,2020-02-15T06:59:57Z +15841,591,2,13104,2.99,2005-08-19T11:06:06Z,2020-02-15T06:59:57Z +15842,591,2,13343,3.99,2005-08-19T20:22:08Z,2020-02-15T06:59:57Z +15843,591,1,13867,9.99,2005-08-20T15:05:42Z,2020-02-15T06:59:57Z +15844,592,2,1163,6.99,2005-06-14T23:12:46Z,2020-02-15T06:59:57Z +15845,592,2,1423,5.99,2005-06-15T18:08:12Z,2020-02-15T06:59:57Z +15846,592,1,1479,2.99,2005-06-15T21:13:38Z,2020-02-15T06:59:57Z +15847,592,1,2627,0.99,2005-06-19T08:32:00Z,2020-02-15T06:59:57Z +15848,592,1,3158,7.99,2005-06-20T21:08:19Z,2020-02-15T06:59:57Z +15849,592,2,3560,2.99,2005-07-06T02:51:37Z,2020-02-15T06:59:57Z +15850,592,1,3973,11.99,2005-07-06T22:58:31Z,2020-02-15T06:59:57Z +15851,592,1,4129,1.99,2005-07-07T07:37:03Z,2020-02-15T06:59:57Z +15852,592,1,4145,9.99,2005-07-07T08:26:39Z,2020-02-15T06:59:57Z +15853,592,1,4460,0.99,2005-07-07T23:50:14Z,2020-02-15T06:59:57Z +15854,592,1,4518,2.99,2005-07-08T02:48:36Z,2020-02-15T06:59:57Z +15855,592,1,6937,0.99,2005-07-26T23:15:50Z,2020-02-15T06:59:57Z +15856,592,2,7173,0.99,2005-07-27T07:59:24Z,2020-02-15T06:59:57Z +15857,592,1,7278,3.99,2005-07-27T11:50:34Z,2020-02-15T06:59:57Z +15858,592,2,7364,4.99,2005-07-27T14:58:40Z,2020-02-15T06:59:57Z +15859,592,1,8730,2.99,2005-07-29T18:23:34Z,2020-02-15T06:59:57Z +15860,592,2,8773,0.99,2005-07-29T19:55:34Z,2020-02-15T06:59:57Z +15861,592,1,9268,4.99,2005-07-30T15:02:30Z,2020-02-15T06:59:57Z +15862,592,1,9437,3.99,2005-07-30T21:36:04Z,2020-02-15T06:59:57Z +15863,592,2,9666,6.99,2005-07-31T06:20:58Z,2020-02-15T06:59:57Z +15864,592,2,10383,0.99,2005-08-01T06:37:16Z,2020-02-15T06:59:57Z +15865,592,2,10634,2.99,2005-08-01T15:37:48Z,2020-02-15T06:59:57Z +15866,592,1,11410,8.99,2005-08-02T19:29:01Z,2020-02-15T06:59:57Z +15867,592,2,12043,0.99,2005-08-17T20:38:21Z,2020-02-15T06:59:57Z +15868,592,2,12619,0.99,2005-08-18T17:24:15Z,2020-02-15T06:59:57Z +15869,592,1,12976,1.99,2005-08-19T06:52:58Z,2020-02-15T06:59:57Z +15870,592,1,13157,2.99,2005-08-19T13:12:28Z,2020-02-15T06:59:57Z +15871,592,2,13662,3.99,2005-08-20T08:11:58Z,2020-02-15T06:59:57Z +15872,592,2,14606,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15873,593,1,790,2.99,2005-05-29T16:19:29Z,2020-02-15T06:59:57Z +15874,593,1,991,8.99,2005-05-30T23:29:22Z,2020-02-15T06:59:57Z +15875,593,2,2055,5.99,2005-06-17T15:27:03Z,2020-02-15T06:59:57Z +15876,593,2,2205,4.99,2005-06-18T02:14:34Z,2020-02-15T06:59:57Z +15877,593,1,2441,4.99,2005-06-18T18:45:11Z,2020-02-15T06:59:57Z +15878,593,1,2832,4.99,2005-06-19T21:21:53Z,2020-02-15T06:59:57Z +15879,593,2,3542,2.99,2005-07-06T01:51:42Z,2020-02-15T06:59:57Z +15880,593,2,4075,2.99,2005-07-07T04:51:44Z,2020-02-15T06:59:57Z +15881,593,2,4280,3.99,2005-07-07T15:09:31Z,2020-02-15T06:59:57Z +15882,593,2,4623,0.99,2005-07-08T08:03:22Z,2020-02-15T06:59:57Z +15883,593,2,4781,4.99,2005-07-08T16:06:55Z,2020-02-15T06:59:57Z +15884,593,2,4867,0.99,2005-07-08T19:10:52Z,2020-02-15T06:59:57Z +15885,593,1,6386,2.99,2005-07-11T22:14:57Z,2020-02-15T06:59:57Z +15886,593,1,6731,2.99,2005-07-12T13:58:27Z,2020-02-15T06:59:57Z +15887,593,2,7958,4.99,2005-07-28T13:34:34Z,2020-02-15T06:59:57Z +15888,593,1,8497,2.99,2005-07-29T09:07:03Z,2020-02-15T06:59:57Z +15889,593,2,9329,6.99,2005-07-30T17:42:38Z,2020-02-15T06:59:57Z +15890,593,1,9483,6.99,2005-07-30T23:31:31Z,2020-02-15T06:59:57Z +15891,593,1,10368,3.99,2005-08-01T06:13:38Z,2020-02-15T06:59:57Z +15892,593,2,10533,3.99,2005-08-01T12:14:16Z,2020-02-15T06:59:57Z +15893,593,1,10840,5.99,2005-08-01T23:38:34Z,2020-02-15T06:59:57Z +15894,593,2,10904,4.99,2005-08-02T01:43:02Z,2020-02-15T06:59:57Z +15895,593,2,12744,2.99,2005-08-18T22:22:36Z,2020-02-15T06:59:57Z +15896,593,1,13524,6.99,2005-08-20T02:48:43Z,2020-02-15T06:59:57Z +15897,593,1,14408,5.99,2005-08-21T10:47:24Z,2020-02-15T06:59:57Z +15898,593,1,14653,0.99,2005-08-21T19:35:59Z,2020-02-15T06:59:57Z +15899,594,1,313,4.99,2005-05-26T22:56:19Z,2020-02-15T06:59:57Z +15900,594,1,360,8.99,2005-05-27T06:51:14Z,2020-02-15T06:59:57Z +15901,594,2,1018,0.99,2005-05-31T02:53:42Z,2020-02-15T06:59:57Z +15902,594,1,1045,6.99,2005-05-31T06:29:01Z,2020-02-15T06:59:57Z +15903,594,2,1537,5.99,2005-06-16T00:52:51Z,2020-02-15T06:59:57Z +15904,594,1,1816,4.99,2005-06-16T21:20:41Z,2020-02-15T06:59:57Z +15905,594,1,1950,2.99,2005-06-17T08:26:52Z,2020-02-15T06:59:57Z +15906,594,1,2276,6.99,2005-06-18T06:33:48Z,2020-02-15T06:59:57Z +15907,594,2,2786,0.99,2005-06-19T18:46:43Z,2020-02-15T06:59:57Z +15908,594,2,3302,1.99,2005-06-21T07:33:40Z,2020-02-15T06:59:57Z +15909,594,2,3474,0.99,2005-07-05T22:59:53Z,2020-02-15T06:59:57Z +15910,594,1,3546,4.99,2005-07-06T02:17:54Z,2020-02-15T06:59:57Z +15911,594,2,3960,2.99,2005-07-06T22:08:53Z,2020-02-15T06:59:57Z +15912,594,1,4037,5.99,2005-07-07T02:52:52Z,2020-02-15T06:59:57Z +15913,594,1,4154,3.99,2005-07-07T08:58:23Z,2020-02-15T06:59:57Z +15914,594,2,5386,2.99,2005-07-09T19:19:09Z,2020-02-15T06:59:57Z +15915,594,1,6473,6.99,2005-07-12T01:35:40Z,2020-02-15T06:59:57Z +15916,594,1,7533,8.99,2005-07-27T21:24:33Z,2020-02-15T06:59:57Z +15917,594,1,8567,1.99,2005-07-29T11:37:30Z,2020-02-15T06:59:57Z +15918,594,1,8603,2.99,2005-07-29T13:07:07Z,2020-02-15T06:59:57Z +15919,594,2,8820,5.99,2005-07-29T22:14:56Z,2020-02-15T06:59:57Z +15920,594,1,9545,7.99,2005-07-31T01:46:24Z,2020-02-15T06:59:57Z +15921,594,1,9698,3.99,2005-07-31T07:24:35Z,2020-02-15T06:59:57Z +15922,594,2,9802,4.99,2005-07-31T11:04:20Z,2020-02-15T06:59:57Z +15923,594,2,10704,8.99,2005-08-01T18:38:02Z,2020-02-15T06:59:57Z +15924,594,2,14824,4.99,2005-08-22T01:27:51Z,2020-02-15T06:59:57Z +15925,594,1,14999,4.99,2005-08-22T07:54:47Z,2020-02-15T06:59:57Z +15926,595,1,613,6.99,2005-05-28T15:27:22Z,2020-02-15T06:59:57Z +15927,595,2,1170,2.99,2005-06-14T23:47:35Z,2020-02-15T06:59:57Z +15928,595,2,3371,4.99,2005-06-21T13:27:22Z,2020-02-15T06:59:57Z +15929,595,1,3789,9.99,2005-07-06T14:02:26Z,2020-02-15T06:59:57Z +15930,595,1,4017,4.99,2005-07-07T01:08:18Z,2020-02-15T06:59:57Z +15931,595,1,4241,4.99,2005-07-07T13:39:00Z,2020-02-15T06:59:57Z +15932,595,2,4775,2.99,2005-07-08T15:44:05Z,2020-02-15T06:59:57Z +15933,595,1,5631,1.99,2005-07-10T06:15:45Z,2020-02-15T06:59:57Z +15934,595,1,5952,1.99,2005-07-10T23:18:20Z,2020-02-15T06:59:57Z +15935,595,1,6105,6.99,2005-07-11T07:03:19Z,2020-02-15T06:59:57Z +15936,595,1,6704,6.99,2005-07-12T12:50:24Z,2020-02-15T06:59:57Z +15937,595,1,7086,4.99,2005-07-27T04:39:46Z,2020-02-15T06:59:57Z +15938,595,2,7307,0.99,2005-07-27T12:59:10Z,2020-02-15T06:59:57Z +15939,595,1,7396,4.99,2005-07-27T16:03:53Z,2020-02-15T06:59:57Z +15940,595,2,7490,3.99,2005-07-27T19:48:12Z,2020-02-15T06:59:57Z +15941,595,1,9152,2.99,2005-07-30T10:51:27Z,2020-02-15T06:59:57Z +15942,595,2,9223,2.99,2005-07-30T13:23:20Z,2020-02-15T06:59:57Z +15943,595,1,9354,4.99,2005-07-30T18:32:51Z,2020-02-15T06:59:57Z +15944,595,2,9497,0.99,2005-07-30T23:56:54Z,2020-02-15T06:59:57Z +15945,595,2,9542,4.99,2005-07-31T01:41:48Z,2020-02-15T06:59:57Z +15946,595,1,9631,2.99,2005-07-31T05:02:00Z,2020-02-15T06:59:57Z +15947,595,2,9826,10.99,2005-07-31T11:51:46Z,2020-02-15T06:59:57Z +15948,595,1,10729,2.99,2005-08-01T19:21:11Z,2020-02-15T06:59:57Z +15949,595,1,10932,2.99,2005-08-02T02:46:22Z,2020-02-15T06:59:57Z +15950,595,2,11748,0.99,2005-08-17T09:04:02Z,2020-02-15T06:59:57Z +15951,595,1,12235,0.99,2005-08-18T03:17:50Z,2020-02-15T06:59:57Z +15952,595,1,14334,0.99,2005-08-21T08:32:32Z,2020-02-15T06:59:57Z +15953,595,2,15576,2.99,2005-08-23T05:32:03Z,2020-02-15T06:59:57Z +15954,595,2,15994,0.99,2005-08-23T20:29:10Z,2020-02-15T06:59:57Z +15955,595,2,16016,2.99,2005-08-23T21:26:35Z,2020-02-15T06:59:57Z +15956,596,2,303,4.99,2005-05-26T21:16:52Z,2020-02-15T06:59:57Z +15957,596,2,625,0.99,2005-05-28T16:35:46Z,2020-02-15T06:59:57Z +15958,596,2,667,4.99,2005-05-28T21:49:02Z,2020-02-15T06:59:57Z +15959,596,2,782,1.99,2005-05-29T14:38:57Z,2020-02-15T06:59:57Z +15960,596,1,914,2.99,2005-05-30T11:06:00Z,2020-02-15T06:59:57Z +15961,596,1,974,6.99,2005-05-30T20:28:42Z,2020-02-15T06:59:57Z +15962,596,1,1644,1.99,2005-06-16T08:58:18Z,2020-02-15T06:59:57Z +15963,596,1,2767,1.99,2005-06-19T17:46:35Z,2020-02-15T06:59:57Z +15964,596,2,5742,3.99,2005-07-10T11:56:18Z,2020-02-15T06:59:57Z +15965,596,1,6015,2.99,2005-07-11T02:04:12Z,2020-02-15T06:59:57Z +15966,596,1,6017,0.99,2005-07-11T02:05:32Z,2020-02-15T06:59:57Z +15967,596,1,6197,4.99,2005-07-11T12:09:51Z,2020-02-15T06:59:57Z +15968,596,2,6883,4.99,2005-07-12T20:50:48Z,2020-02-15T06:59:57Z +15969,596,1,10094,3.99,2005-07-31T20:31:18Z,2020-02-15T06:59:57Z +15970,596,2,10692,4.99,2005-08-01T18:12:35Z,2020-02-15T06:59:57Z +15971,596,1,10756,2.99,2005-08-01T20:17:03Z,2020-02-15T06:59:57Z +15972,596,2,10804,0.99,2005-08-01T22:22:11Z,2020-02-15T06:59:57Z +15973,596,2,11009,4.99,2005-08-02T05:06:23Z,2020-02-15T06:59:57Z +15974,596,2,11852,3.99,2005-08-17T13:38:27Z,2020-02-15T06:59:57Z +15975,596,1,11934,0.99,2005-08-17T16:40:00Z,2020-02-15T06:59:57Z +15976,596,2,12560,4.99,2005-08-18T14:54:19Z,2020-02-15T06:59:57Z +15977,596,1,12878,4.99,2005-08-19T03:17:08Z,2020-02-15T06:59:57Z +15978,596,1,13648,4.99,2005-08-20T07:48:10Z,2020-02-15T06:59:57Z +15979,596,1,14050,3.99,2005-08-20T22:09:04Z,2020-02-15T06:59:57Z +15980,596,1,14417,0.99,2005-08-21T11:13:35Z,2020-02-15T06:59:57Z +15981,596,1,15405,0.99,2005-08-22T23:20:41Z,2020-02-15T06:59:57Z +15982,596,1,15899,6.99,2005-08-23T17:16:28Z,2020-02-15T06:59:57Z +15983,596,1,15423,0.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +15984,597,2,34,2.99,2005-05-25T04:19:28Z,2020-02-15T06:59:57Z +15985,597,2,514,8.99,2005-05-28T03:09:28Z,2020-02-15T06:59:57Z +15986,597,1,2379,0.99,2005-06-18T14:59:39Z,2020-02-15T06:59:57Z +15987,597,1,2696,4.99,2005-06-19T13:28:42Z,2020-02-15T06:59:57Z +15988,597,1,3201,1.99,2005-06-21T00:30:26Z,2020-02-15T06:59:57Z +15989,597,1,5093,0.99,2005-07-09T05:59:12Z,2020-02-15T06:59:57Z +15990,597,1,5348,4.99,2005-07-09T17:34:11Z,2020-02-15T06:59:57Z +15991,597,2,5732,2.99,2005-07-10T11:36:32Z,2020-02-15T06:59:57Z +15992,597,1,6508,2.99,2005-07-12T03:34:50Z,2020-02-15T06:59:57Z +15993,597,2,7968,4.99,2005-07-28T13:57:35Z,2020-02-15T06:59:57Z +15994,597,2,8948,4.99,2005-07-30T03:16:18Z,2020-02-15T06:59:57Z +15995,597,2,10021,4.99,2005-07-31T18:24:39Z,2020-02-15T06:59:57Z +15996,597,1,10214,0.99,2005-08-01T01:04:15Z,2020-02-15T06:59:57Z +15997,597,2,10986,5.99,2005-08-02T04:35:24Z,2020-02-15T06:59:57Z +15998,597,2,11147,4.99,2005-08-02T09:45:54Z,2020-02-15T06:59:57Z +15999,597,2,11223,2.99,2005-08-02T12:34:27Z,2020-02-15T06:59:57Z +16000,597,1,11240,2.99,2005-08-02T13:28:30Z,2020-02-15T06:59:57Z +16001,597,1,11880,5.99,2005-08-17T14:28:28Z,2020-02-15T06:59:57Z +16002,597,1,12081,4.99,2005-08-17T22:10:46Z,2020-02-15T06:59:57Z +16003,597,1,12992,0.99,2005-08-19T07:23:06Z,2020-02-15T06:59:57Z +16004,597,2,13019,2.99,2005-08-19T08:07:43Z,2020-02-15T06:59:57Z +16005,597,1,13152,6.99,2005-08-19T13:09:32Z,2020-02-15T06:59:57Z +16006,597,2,15275,2.99,2005-08-22T18:57:39Z,2020-02-15T06:59:57Z +16007,597,1,15469,4.99,2005-08-23T01:29:59Z,2020-02-15T06:59:57Z +16008,597,1,11652,4.99,2006-02-14T15:16:03Z,2020-02-15T06:59:57Z +16009,598,1,3005,2.99,2005-06-20T10:10:29Z,2020-02-15T06:59:57Z +16010,598,1,3648,0.99,2005-07-06T07:30:41Z,2020-02-15T06:59:57Z +16011,598,2,3950,6.99,2005-07-06T21:48:44Z,2020-02-15T06:59:57Z +16012,598,1,3972,4.99,2005-07-06T22:53:57Z,2020-02-15T06:59:57Z +16013,598,1,4181,4.99,2005-07-07T10:27:54Z,2020-02-15T06:59:57Z +16014,598,2,5688,5.99,2005-07-10T09:16:08Z,2020-02-15T06:59:57Z +16015,598,1,6519,4.99,2005-07-12T04:00:36Z,2020-02-15T06:59:57Z +16016,598,2,6528,4.99,2005-07-12T04:29:44Z,2020-02-15T06:59:57Z +16017,598,2,6575,0.99,2005-07-12T06:12:53Z,2020-02-15T06:59:57Z +16018,598,2,6660,3.99,2005-07-12T11:20:12Z,2020-02-15T06:59:57Z +16019,598,2,7201,6.99,2005-07-27T08:57:40Z,2020-02-15T06:59:57Z +16020,598,2,7354,0.99,2005-07-27T14:42:11Z,2020-02-15T06:59:57Z +16021,598,1,7998,0.99,2005-07-28T15:08:48Z,2020-02-15T06:59:57Z +16022,598,2,8436,0.99,2005-07-29T07:21:20Z,2020-02-15T06:59:57Z +16023,598,1,8511,5.99,2005-07-29T09:42:42Z,2020-02-15T06:59:57Z +16024,598,1,8939,4.99,2005-07-30T02:56:53Z,2020-02-15T06:59:57Z +16025,598,1,10054,4.99,2005-07-31T19:15:52Z,2020-02-15T06:59:57Z +16026,598,2,11350,0.99,2005-08-02T17:22:59Z,2020-02-15T06:59:57Z +16027,598,2,12601,2.99,2005-08-18T16:47:52Z,2020-02-15T06:59:57Z +16028,598,2,14345,0.99,2005-08-21T08:41:15Z,2020-02-15T06:59:57Z +16029,598,2,15307,2.99,2005-08-22T19:54:26Z,2020-02-15T06:59:57Z +16030,598,1,15443,7.99,2005-08-23T00:44:15Z,2020-02-15T06:59:57Z +16031,599,2,1008,4.99,2005-05-31T01:18:56Z,2020-02-15T06:59:57Z +16032,599,1,2272,1.99,2005-06-18T06:29:53Z,2020-02-15T06:59:57Z +16033,599,2,3043,6.99,2005-06-20T12:38:35Z,2020-02-15T06:59:57Z +16034,599,2,3398,4.99,2005-06-21T15:34:38Z,2020-02-15T06:59:57Z +16035,599,1,3429,6.99,2005-06-21T18:46:05Z,2020-02-15T06:59:57Z +16036,599,1,5065,0.99,2005-07-09T04:42:00Z,2020-02-15T06:59:57Z +16037,599,1,5843,2.99,2005-07-10T17:14:27Z,2020-02-15T06:59:57Z +16038,599,2,6800,9.99,2005-07-12T17:03:56Z,2020-02-15T06:59:57Z +16039,599,2,6895,2.99,2005-07-12T21:23:59Z,2020-02-15T06:59:57Z +16040,599,1,8965,6.99,2005-07-30T03:52:37Z,2020-02-15T06:59:57Z +16041,599,2,9630,2.99,2005-07-31T04:57:07Z,2020-02-15T06:59:57Z +16042,599,2,9679,2.99,2005-07-31T06:41:19Z,2020-02-15T06:59:57Z +16043,599,2,11522,3.99,2005-08-17T00:05:05Z,2020-02-15T06:59:57Z +16044,599,1,14233,1.99,2005-08-21T05:07:08Z,2020-02-15T06:59:57Z +16045,599,1,14599,4.99,2005-08-21T17:43:42Z,2020-02-15T06:59:57Z +16046,599,1,14719,1.99,2005-08-21T21:41:57Z,2020-02-15T06:59:57Z +16047,599,2,15590,8.99,2005-08-23T06:09:44Z,2020-02-15T06:59:57Z +16048,599,2,15719,2.99,2005-08-23T11:08:46Z,2020-02-15T06:59:57Z +16049,599,2,15725,2.99,2005-08-23T11:25:00Z,2020-02-15T06:59:57Z diff --git a/drivers/csv/testdata/sakila-csv/rental.csv b/drivers/csv/testdata/sakila-csv/rental.csv new file mode 100644 index 00000000..d0c11b55 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/rental.csv @@ -0,0 +1,16045 @@ +rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update +1,2005-05-24T22:53:30Z,367,130,2005-05-26T22:04:30Z,1,2020-02-15T06:59:36Z +2,2005-05-24T22:54:33Z,1525,459,2005-05-28T19:40:33Z,1,2020-02-15T06:59:36Z +3,2005-05-24T23:03:39Z,1711,408,2005-06-01T22:12:39Z,1,2020-02-15T06:59:36Z +4,2005-05-24T23:04:41Z,2452,333,2005-06-03T01:43:41Z,2,2020-02-15T06:59:36Z +5,2005-05-24T23:05:21Z,2079,222,2005-06-02T04:33:21Z,1,2020-02-15T06:59:36Z +6,2005-05-24T23:08:07Z,2792,549,2005-05-27T01:32:07Z,1,2020-02-15T06:59:36Z +7,2005-05-24T23:11:53Z,3995,269,2005-05-29T20:34:53Z,2,2020-02-15T06:59:36Z +8,2005-05-24T23:31:46Z,2346,239,2005-05-27T23:33:46Z,2,2020-02-15T06:59:36Z +9,2005-05-25T00:00:40Z,2580,126,2005-05-28T00:22:40Z,1,2020-02-15T06:59:36Z +10,2005-05-25T00:02:21Z,1824,399,2005-05-31T22:44:21Z,2,2020-02-15T06:59:36Z +11,2005-05-25T00:09:02Z,4443,142,2005-06-02T20:56:02Z,2,2020-02-15T06:59:36Z +12,2005-05-25T00:19:27Z,1584,261,2005-05-30T05:44:27Z,2,2020-02-15T06:59:36Z +13,2005-05-25T00:22:55Z,2294,334,2005-05-30T04:28:55Z,1,2020-02-15T06:59:36Z +14,2005-05-25T00:31:15Z,2701,446,2005-05-26T02:56:15Z,1,2020-02-15T06:59:36Z +15,2005-05-25T00:39:22Z,3049,319,2005-06-03T03:30:22Z,1,2020-02-15T06:59:36Z +16,2005-05-25T00:43:11Z,389,316,2005-05-26T04:42:11Z,2,2020-02-15T06:59:36Z +17,2005-05-25T01:06:36Z,830,575,2005-05-27T00:43:36Z,1,2020-02-15T06:59:36Z +18,2005-05-25T01:10:47Z,3376,19,2005-05-31T06:35:47Z,2,2020-02-15T06:59:36Z +19,2005-05-25T01:17:24Z,1941,456,2005-05-31T06:00:24Z,1,2020-02-15T06:59:36Z +20,2005-05-25T01:48:41Z,3517,185,2005-05-27T02:20:41Z,2,2020-02-15T06:59:36Z +21,2005-05-25T01:59:46Z,146,388,2005-05-26T01:01:46Z,2,2020-02-15T06:59:36Z +22,2005-05-25T02:19:23Z,727,509,2005-05-26T04:52:23Z,2,2020-02-15T06:59:36Z +23,2005-05-25T02:40:21Z,4441,438,2005-05-29T06:34:21Z,1,2020-02-15T06:59:36Z +24,2005-05-25T02:53:02Z,3273,350,2005-05-27T01:15:02Z,1,2020-02-15T06:59:36Z +25,2005-05-25T03:21:20Z,3961,37,2005-05-27T21:25:20Z,2,2020-02-15T06:59:36Z +26,2005-05-25T03:36:50Z,4371,371,2005-05-31T00:34:50Z,1,2020-02-15T06:59:36Z +27,2005-05-25T03:41:50Z,1225,301,2005-05-30T01:13:50Z,2,2020-02-15T06:59:36Z +28,2005-05-25T03:42:37Z,4068,232,2005-05-26T09:26:37Z,2,2020-02-15T06:59:36Z +29,2005-05-25T03:47:12Z,611,44,2005-05-30T00:31:12Z,2,2020-02-15T06:59:36Z +30,2005-05-25T04:01:32Z,3744,430,2005-05-30T03:12:32Z,1,2020-02-15T06:59:36Z +31,2005-05-25T04:05:17Z,4482,369,2005-05-30T07:15:17Z,1,2020-02-15T06:59:36Z +32,2005-05-25T04:06:21Z,3832,230,2005-05-25T23:55:21Z,1,2020-02-15T06:59:36Z +33,2005-05-25T04:18:51Z,1681,272,2005-05-27T03:58:51Z,1,2020-02-15T06:59:36Z +34,2005-05-25T04:19:28Z,2613,597,2005-05-29T00:10:28Z,2,2020-02-15T06:59:36Z +35,2005-05-25T04:24:36Z,1286,484,2005-05-27T07:02:36Z,2,2020-02-15T06:59:36Z +36,2005-05-25T04:36:26Z,1308,88,2005-05-29T00:31:26Z,1,2020-02-15T06:59:36Z +37,2005-05-25T04:44:31Z,403,535,2005-05-29T01:03:31Z,1,2020-02-15T06:59:36Z +38,2005-05-25T04:47:44Z,2540,302,2005-06-01T00:58:44Z,1,2020-02-15T06:59:36Z +39,2005-05-25T04:51:46Z,4466,207,2005-05-31T03:14:46Z,2,2020-02-15T06:59:36Z +40,2005-05-25T05:09:04Z,2638,413,2005-05-27T23:12:04Z,1,2020-02-15T06:59:36Z +41,2005-05-25T05:12:29Z,1761,174,2005-06-02T00:28:29Z,1,2020-02-15T06:59:36Z +42,2005-05-25T05:24:58Z,380,523,2005-05-31T02:47:58Z,2,2020-02-15T06:59:36Z +43,2005-05-25T05:39:25Z,2578,532,2005-05-26T06:54:25Z,2,2020-02-15T06:59:36Z +44,2005-05-25T05:53:23Z,3098,207,2005-05-29T10:56:23Z,2,2020-02-15T06:59:36Z +45,2005-05-25T05:59:39Z,1853,436,2005-06-02T09:56:39Z,2,2020-02-15T06:59:36Z +46,2005-05-25T06:04:08Z,3318,7,2005-06-02T08:18:08Z,2,2020-02-15T06:59:36Z +47,2005-05-25T06:05:20Z,2211,35,2005-05-30T03:04:20Z,1,2020-02-15T06:59:36Z +48,2005-05-25T06:20:46Z,1780,282,2005-06-02T05:42:46Z,1,2020-02-15T06:59:36Z +49,2005-05-25T06:39:35Z,2965,498,2005-05-30T10:12:35Z,2,2020-02-15T06:59:36Z +50,2005-05-25T06:44:53Z,1983,18,2005-05-28T11:28:53Z,2,2020-02-15T06:59:36Z +51,2005-05-25T06:49:10Z,1257,256,2005-05-26T06:42:10Z,1,2020-02-15T06:59:36Z +52,2005-05-25T06:51:29Z,4017,507,2005-05-31T01:27:29Z,2,2020-02-15T06:59:36Z +53,2005-05-25T07:19:16Z,1255,569,2005-05-27T05:19:16Z,2,2020-02-15T06:59:36Z +54,2005-05-25T07:23:25Z,2787,291,2005-06-01T05:05:25Z,2,2020-02-15T06:59:36Z +55,2005-05-25T08:26:13Z,1139,131,2005-05-30T10:57:13Z,1,2020-02-15T06:59:36Z +56,2005-05-25T08:28:11Z,1352,511,2005-05-26T14:21:11Z,1,2020-02-15T06:59:36Z +57,2005-05-25T08:43:32Z,3938,6,2005-05-29T06:42:32Z,2,2020-02-15T06:59:36Z +58,2005-05-25T08:53:14Z,3050,323,2005-05-28T14:40:14Z,1,2020-02-15T06:59:36Z +59,2005-05-25T08:56:42Z,2884,408,2005-06-01T09:52:42Z,1,2020-02-15T06:59:36Z +60,2005-05-25T08:58:25Z,330,470,2005-05-30T14:14:25Z,1,2020-02-15T06:59:36Z +61,2005-05-25T09:01:57Z,4210,250,2005-06-02T07:22:57Z,2,2020-02-15T06:59:36Z +62,2005-05-25T09:18:52Z,261,419,2005-05-30T10:55:52Z,1,2020-02-15T06:59:36Z +63,2005-05-25T09:19:16Z,4008,383,2005-05-27T04:24:16Z,1,2020-02-15T06:59:36Z +64,2005-05-25T09:21:29Z,79,368,2005-06-03T11:31:29Z,1,2020-02-15T06:59:36Z +65,2005-05-25T09:32:03Z,3552,346,2005-05-29T14:21:03Z,1,2020-02-15T06:59:36Z +66,2005-05-25T09:35:12Z,1162,86,2005-05-29T04:16:12Z,2,2020-02-15T06:59:36Z +67,2005-05-25T09:41:01Z,239,119,2005-05-27T13:46:01Z,2,2020-02-15T06:59:36Z +68,2005-05-25T09:47:31Z,4029,120,2005-05-31T10:20:31Z,2,2020-02-15T06:59:36Z +69,2005-05-25T10:10:14Z,3207,305,2005-05-27T14:02:14Z,2,2020-02-15T06:59:36Z +70,2005-05-25T10:15:23Z,2168,73,2005-05-27T05:56:23Z,2,2020-02-15T06:59:36Z +71,2005-05-25T10:26:39Z,2408,100,2005-05-28T04:59:39Z,1,2020-02-15T06:59:36Z +72,2005-05-25T10:52:13Z,2260,48,2005-05-28T05:52:13Z,2,2020-02-15T06:59:36Z +73,2005-05-25T11:00:07Z,517,391,2005-06-01T13:56:07Z,2,2020-02-15T06:59:36Z +74,2005-05-25T11:09:48Z,1744,265,2005-05-26T12:23:48Z,2,2020-02-15T06:59:36Z +75,2005-05-25T11:13:34Z,3393,510,2005-06-03T12:58:34Z,1,2020-02-15T06:59:36Z +76,2005-05-25T11:30:37Z,3021,1,2005-06-03T12:00:37Z,2,2020-02-15T06:59:36Z +77,2005-05-25T11:31:59Z,1303,451,2005-05-26T16:53:59Z,2,2020-02-15T06:59:36Z +78,2005-05-25T11:35:18Z,4067,135,2005-05-31T12:48:18Z,2,2020-02-15T06:59:36Z +79,2005-05-25T12:11:07Z,3299,245,2005-06-03T10:54:07Z,2,2020-02-15T06:59:36Z +80,2005-05-25T12:12:07Z,2478,314,2005-05-31T17:46:07Z,2,2020-02-15T06:59:36Z +81,2005-05-25T12:15:19Z,2610,286,2005-06-02T14:08:19Z,2,2020-02-15T06:59:36Z +82,2005-05-25T12:17:46Z,1388,427,2005-06-01T10:48:46Z,1,2020-02-15T06:59:36Z +83,2005-05-25T12:30:15Z,466,131,2005-05-27T15:40:15Z,1,2020-02-15T06:59:36Z +84,2005-05-25T12:36:30Z,1829,492,2005-05-29T18:33:30Z,1,2020-02-15T06:59:36Z +85,2005-05-25T13:05:34Z,470,414,2005-05-29T16:53:34Z,1,2020-02-15T06:59:36Z +86,2005-05-25T13:36:12Z,2275,266,2005-05-30T14:53:12Z,1,2020-02-15T06:59:36Z +87,2005-05-25T13:52:43Z,1586,331,2005-05-29T11:12:43Z,2,2020-02-15T06:59:36Z +88,2005-05-25T14:13:54Z,2221,53,2005-05-29T09:32:54Z,2,2020-02-15T06:59:36Z +89,2005-05-25T14:28:29Z,2181,499,2005-05-29T14:33:29Z,1,2020-02-15T06:59:36Z +90,2005-05-25T14:31:25Z,2984,25,2005-06-01T10:07:25Z,1,2020-02-15T06:59:36Z +91,2005-05-25T14:57:22Z,139,267,2005-06-01T18:32:22Z,1,2020-02-15T06:59:36Z +92,2005-05-25T15:38:46Z,775,302,2005-05-31T13:40:46Z,2,2020-02-15T06:59:36Z +93,2005-05-25T15:54:16Z,4360,288,2005-06-03T20:18:16Z,1,2020-02-15T06:59:36Z +94,2005-05-25T16:03:42Z,1675,197,2005-05-30T14:23:42Z,1,2020-02-15T06:59:36Z +95,2005-05-25T16:12:52Z,178,400,2005-06-02T18:55:52Z,2,2020-02-15T06:59:36Z +96,2005-05-25T16:32:19Z,3418,49,2005-05-30T10:47:19Z,2,2020-02-15T06:59:36Z +97,2005-05-25T16:34:24Z,1283,263,2005-05-28T12:13:24Z,2,2020-02-15T06:59:36Z +98,2005-05-25T16:48:24Z,2970,269,2005-05-27T11:29:24Z,2,2020-02-15T06:59:36Z +99,2005-05-25T16:50:20Z,535,44,2005-05-28T18:52:20Z,1,2020-02-15T06:59:36Z +100,2005-05-25T16:50:28Z,2599,208,2005-06-02T22:11:28Z,1,2020-02-15T06:59:36Z +101,2005-05-25T17:17:04Z,617,468,2005-05-31T19:47:04Z,1,2020-02-15T06:59:36Z +102,2005-05-25T17:22:10Z,373,343,2005-05-31T19:47:10Z,1,2020-02-15T06:59:36Z +103,2005-05-25T17:30:42Z,3343,384,2005-06-03T22:36:42Z,1,2020-02-15T06:59:36Z +104,2005-05-25T17:46:33Z,4281,310,2005-05-27T15:20:33Z,1,2020-02-15T06:59:36Z +105,2005-05-25T17:54:12Z,794,108,2005-05-30T12:03:12Z,2,2020-02-15T06:59:36Z +106,2005-05-25T18:18:19Z,3627,196,2005-06-04T00:01:19Z,2,2020-02-15T06:59:36Z +107,2005-05-25T18:28:09Z,2833,317,2005-06-03T22:46:09Z,2,2020-02-15T06:59:36Z +108,2005-05-25T18:30:05Z,3289,242,2005-05-30T19:40:05Z,1,2020-02-15T06:59:36Z +109,2005-05-25T18:40:20Z,1044,503,2005-05-29T20:39:20Z,2,2020-02-15T06:59:36Z +110,2005-05-25T18:43:49Z,4108,19,2005-06-03T18:13:49Z,2,2020-02-15T06:59:36Z +111,2005-05-25T18:45:19Z,3725,227,2005-05-28T17:18:19Z,1,2020-02-15T06:59:36Z +112,2005-05-25T18:57:24Z,2153,500,2005-06-02T20:44:24Z,1,2020-02-15T06:59:36Z +113,2005-05-25T19:07:40Z,2963,93,2005-05-27T22:16:40Z,2,2020-02-15T06:59:36Z +114,2005-05-25T19:12:42Z,4502,506,2005-06-01T23:10:42Z,1,2020-02-15T06:59:36Z +115,2005-05-25T19:13:25Z,749,455,2005-05-29T20:17:25Z,1,2020-02-15T06:59:36Z +116,2005-05-25T19:27:51Z,4453,18,2005-05-26T16:23:51Z,1,2020-02-15T06:59:36Z +117,2005-05-25T19:30:46Z,4278,7,2005-05-31T23:59:46Z,2,2020-02-15T06:59:36Z +118,2005-05-25T19:31:18Z,872,524,2005-05-31T15:00:18Z,1,2020-02-15T06:59:36Z +119,2005-05-25T19:37:02Z,1359,51,2005-05-29T23:51:02Z,2,2020-02-15T06:59:36Z +120,2005-05-25T19:37:47Z,37,365,2005-06-01T23:29:47Z,2,2020-02-15T06:59:36Z +121,2005-05-25T19:41:29Z,1053,405,2005-05-29T21:31:29Z,1,2020-02-15T06:59:36Z +122,2005-05-25T19:46:21Z,2908,273,2005-06-02T19:07:21Z,1,2020-02-15T06:59:36Z +123,2005-05-25T20:26:42Z,1795,43,2005-05-26T19:41:42Z,1,2020-02-15T06:59:36Z +124,2005-05-25T20:46:11Z,212,246,2005-05-30T00:47:11Z,2,2020-02-15T06:59:36Z +125,2005-05-25T20:48:50Z,952,368,2005-06-02T21:39:50Z,1,2020-02-15T06:59:36Z +126,2005-05-25T21:07:59Z,2047,439,2005-05-28T18:51:59Z,1,2020-02-15T06:59:36Z +127,2005-05-25T21:10:40Z,2026,94,2005-06-02T21:38:40Z,1,2020-02-15T06:59:36Z +128,2005-05-25T21:19:53Z,4322,40,2005-05-29T23:34:53Z,1,2020-02-15T06:59:36Z +129,2005-05-25T21:20:03Z,4154,23,2005-06-04T01:25:03Z,2,2020-02-15T06:59:36Z +130,2005-05-25T21:21:56Z,3990,56,2005-05-30T22:41:56Z,2,2020-02-15T06:59:36Z +131,2005-05-25T21:42:46Z,815,325,2005-05-30T23:25:46Z,2,2020-02-15T06:59:36Z +132,2005-05-25T21:46:54Z,3367,479,2005-05-31T21:02:54Z,1,2020-02-15T06:59:36Z +133,2005-05-25T21:48:30Z,399,237,2005-05-30T00:26:30Z,2,2020-02-15T06:59:36Z +134,2005-05-25T21:48:41Z,2272,222,2005-06-02T18:28:41Z,1,2020-02-15T06:59:36Z +135,2005-05-25T21:58:58Z,103,304,2005-06-03T17:50:58Z,1,2020-02-15T06:59:36Z +136,2005-05-25T22:02:30Z,2296,504,2005-05-31T18:06:30Z,1,2020-02-15T06:59:36Z +137,2005-05-25T22:25:18Z,2591,560,2005-06-01T02:30:18Z,2,2020-02-15T06:59:36Z +138,2005-05-25T22:48:22Z,4134,586,2005-05-29T20:21:22Z,2,2020-02-15T06:59:36Z +139,2005-05-25T23:00:21Z,327,257,2005-05-29T17:12:21Z,1,2020-02-15T06:59:36Z +140,2005-05-25T23:34:22Z,655,354,2005-05-27T01:10:22Z,1,2020-02-15T06:59:36Z +141,2005-05-25T23:34:53Z,811,89,2005-06-02T01:57:53Z,1,2020-02-15T06:59:36Z +142,2005-05-25T23:43:47Z,4407,472,2005-05-29T00:46:47Z,2,2020-02-15T06:59:36Z +143,2005-05-25T23:45:52Z,847,297,2005-05-27T21:41:52Z,2,2020-02-15T06:59:36Z +144,2005-05-25T23:49:56Z,1689,357,2005-06-01T21:41:56Z,2,2020-02-15T06:59:36Z +145,2005-05-25T23:59:03Z,3905,82,2005-05-31T02:56:03Z,1,2020-02-15T06:59:36Z +146,2005-05-26T00:07:11Z,1431,433,2005-06-04T00:20:11Z,2,2020-02-15T06:59:36Z +147,2005-05-26T00:17:50Z,633,274,2005-05-29T23:21:50Z,2,2020-02-15T06:59:36Z +148,2005-05-26T00:25:23Z,4252,142,2005-06-01T19:29:23Z,2,2020-02-15T06:59:36Z +149,2005-05-26T00:28:05Z,1084,319,2005-06-02T21:30:05Z,2,2020-02-15T06:59:36Z +150,2005-05-26T00:28:39Z,909,429,2005-06-01T02:10:39Z,2,2020-02-15T06:59:36Z +151,2005-05-26T00:37:28Z,2942,14,2005-05-30T06:28:28Z,1,2020-02-15T06:59:36Z +152,2005-05-26T00:41:10Z,2622,57,2005-06-03T06:05:10Z,1,2020-02-15T06:59:36Z +153,2005-05-26T00:47:47Z,3888,348,2005-05-27T21:28:47Z,1,2020-02-15T06:59:36Z +154,2005-05-26T00:55:56Z,1354,185,2005-05-29T23:18:56Z,2,2020-02-15T06:59:36Z +155,2005-05-26T01:15:05Z,288,551,2005-06-01T00:03:05Z,1,2020-02-15T06:59:36Z +156,2005-05-26T01:19:05Z,3193,462,2005-05-27T23:43:05Z,1,2020-02-15T06:59:36Z +157,2005-05-26T01:25:21Z,887,344,2005-05-26T21:17:21Z,2,2020-02-15T06:59:36Z +158,2005-05-26T01:27:11Z,2395,354,2005-06-03T00:30:11Z,2,2020-02-15T06:59:36Z +159,2005-05-26T01:34:28Z,3453,505,2005-05-29T04:00:28Z,1,2020-02-15T06:59:36Z +160,2005-05-26T01:46:20Z,1885,290,2005-06-01T05:45:20Z,1,2020-02-15T06:59:36Z +161,2005-05-26T01:51:48Z,2941,182,2005-05-27T05:42:48Z,1,2020-02-15T06:59:36Z +162,2005-05-26T02:02:05Z,1229,296,2005-05-27T03:38:05Z,2,2020-02-15T06:59:36Z +163,2005-05-26T02:26:23Z,2306,104,2005-06-04T06:36:23Z,1,2020-02-15T06:59:36Z +164,2005-05-26T02:26:49Z,1070,151,2005-05-28T00:32:49Z,1,2020-02-15T06:59:36Z +165,2005-05-26T02:28:36Z,2735,33,2005-06-02T03:21:36Z,1,2020-02-15T06:59:36Z +166,2005-05-26T02:49:11Z,3894,322,2005-05-31T01:28:11Z,1,2020-02-15T06:59:36Z +167,2005-05-26T02:50:31Z,865,401,2005-05-27T03:07:31Z,1,2020-02-15T06:59:36Z +168,2005-05-26T03:07:43Z,2714,469,2005-06-02T02:09:43Z,2,2020-02-15T06:59:36Z +169,2005-05-26T03:09:30Z,1758,381,2005-05-27T01:37:30Z,2,2020-02-15T06:59:36Z +170,2005-05-26T03:11:12Z,3688,107,2005-06-02T03:53:12Z,1,2020-02-15T06:59:36Z +171,2005-05-26T03:14:15Z,4483,400,2005-06-03T00:24:15Z,2,2020-02-15T06:59:36Z +172,2005-05-26T03:17:42Z,2873,176,2005-05-29T04:11:42Z,2,2020-02-15T06:59:36Z +173,2005-05-26T03:42:10Z,3596,533,2005-05-28T01:37:10Z,2,2020-02-15T06:59:36Z +174,2005-05-26T03:44:10Z,3954,552,2005-05-28T07:13:10Z,2,2020-02-15T06:59:36Z +175,2005-05-26T03:46:26Z,4346,47,2005-06-03T06:01:26Z,2,2020-02-15T06:59:36Z +176,2005-05-26T03:47:39Z,851,250,2005-06-01T02:36:39Z,2,2020-02-15T06:59:36Z +177,2005-05-26T04:14:29Z,3545,548,2005-06-01T08:16:29Z,2,2020-02-15T06:59:36Z +178,2005-05-26T04:21:46Z,1489,196,2005-06-04T07:09:46Z,2,2020-02-15T06:59:36Z +179,2005-05-26T04:26:06Z,2575,19,2005-06-03T10:06:06Z,1,2020-02-15T06:59:36Z +180,2005-05-26T04:46:23Z,2752,75,2005-06-01T09:58:23Z,1,2020-02-15T06:59:36Z +181,2005-05-26T04:47:06Z,2417,587,2005-05-29T06:34:06Z,2,2020-02-15T06:59:36Z +182,2005-05-26T04:49:17Z,4396,237,2005-06-01T05:43:17Z,2,2020-02-15T06:59:36Z +183,2005-05-26T05:01:18Z,2877,254,2005-06-01T09:04:18Z,1,2020-02-15T06:59:36Z +184,2005-05-26T05:29:49Z,1970,556,2005-05-28T10:10:49Z,1,2020-02-15T06:59:36Z +185,2005-05-26T05:30:03Z,2598,125,2005-06-02T09:48:03Z,2,2020-02-15T06:59:36Z +186,2005-05-26T05:32:52Z,1799,468,2005-06-03T07:19:52Z,2,2020-02-15T06:59:36Z +187,2005-05-26T05:42:37Z,4004,515,2005-06-04T00:38:37Z,1,2020-02-15T06:59:36Z +188,2005-05-26T05:47:12Z,3342,243,2005-05-26T23:48:12Z,1,2020-02-15T06:59:36Z +189,2005-05-26T06:01:41Z,984,247,2005-05-27T06:11:41Z,1,2020-02-15T06:59:36Z +190,2005-05-26T06:11:28Z,3962,533,2005-06-01T09:44:28Z,1,2020-02-15T06:59:36Z +191,2005-05-26T06:14:06Z,4365,412,2005-05-28T05:33:06Z,1,2020-02-15T06:59:36Z +192,2005-05-26T06:20:37Z,1897,437,2005-06-02T10:57:37Z,1,2020-02-15T06:59:36Z +193,2005-05-26T06:41:48Z,3900,270,2005-05-30T06:21:48Z,2,2020-02-15T06:59:36Z +194,2005-05-26T06:52:33Z,1337,29,2005-05-30T04:08:33Z,2,2020-02-15T06:59:36Z +195,2005-05-26T06:52:36Z,506,564,2005-05-31T02:47:36Z,2,2020-02-15T06:59:36Z +196,2005-05-26T06:55:58Z,190,184,2005-05-27T10:54:58Z,1,2020-02-15T06:59:36Z +197,2005-05-26T06:59:21Z,4212,546,2005-06-03T05:04:21Z,2,2020-02-15T06:59:36Z +198,2005-05-26T07:03:49Z,1789,54,2005-06-04T11:45:49Z,1,2020-02-15T06:59:36Z +199,2005-05-26T07:11:58Z,2135,71,2005-05-28T09:06:58Z,1,2020-02-15T06:59:36Z +200,2005-05-26T07:12:21Z,3926,321,2005-05-31T12:07:21Z,1,2020-02-15T06:59:36Z +201,2005-05-26T07:13:45Z,776,444,2005-06-04T02:02:45Z,2,2020-02-15T06:59:36Z +202,2005-05-26T07:27:36Z,674,20,2005-06-02T03:52:36Z,1,2020-02-15T06:59:36Z +203,2005-05-26T07:27:57Z,3374,109,2005-06-03T12:52:57Z,1,2020-02-15T06:59:36Z +204,2005-05-26T07:30:37Z,1842,528,2005-05-30T08:11:37Z,1,2020-02-15T06:59:36Z +205,2005-05-26T07:59:37Z,303,114,2005-05-29T09:43:37Z,2,2020-02-15T06:59:36Z +206,2005-05-26T08:01:54Z,1717,345,2005-05-27T06:26:54Z,1,2020-02-15T06:59:36Z +207,2005-05-26T08:04:38Z,102,47,2005-05-27T09:32:38Z,2,2020-02-15T06:59:36Z +208,2005-05-26T08:10:22Z,3669,274,2005-05-27T03:55:22Z,1,2020-02-15T06:59:36Z +209,2005-05-26T08:14:01Z,729,379,2005-05-27T09:00:01Z,1,2020-02-15T06:59:36Z +210,2005-05-26T08:14:15Z,1801,391,2005-05-27T12:12:15Z,2,2020-02-15T06:59:36Z +211,2005-05-26T08:33:10Z,4005,170,2005-05-28T14:09:10Z,1,2020-02-15T06:59:36Z +212,2005-05-26T08:34:41Z,764,59,2005-05-30T12:46:41Z,2,2020-02-15T06:59:36Z +213,2005-05-26T08:44:08Z,1505,394,2005-05-31T12:33:08Z,2,2020-02-15T06:59:36Z +214,2005-05-26T08:48:49Z,1453,98,2005-05-31T04:06:49Z,2,2020-02-15T06:59:36Z +215,2005-05-26T09:02:47Z,679,197,2005-05-28T09:45:47Z,2,2020-02-15T06:59:36Z +216,2005-05-26T09:17:43Z,1398,91,2005-06-03T08:21:43Z,1,2020-02-15T06:59:36Z +217,2005-05-26T09:24:26Z,4395,121,2005-05-31T03:24:26Z,2,2020-02-15T06:59:36Z +218,2005-05-26T09:27:09Z,2291,309,2005-06-04T11:53:09Z,2,2020-02-15T06:59:36Z +219,2005-05-26T09:41:45Z,3074,489,2005-05-28T04:40:45Z,1,2020-02-15T06:59:36Z +220,2005-05-26T10:06:49Z,1259,542,2005-06-01T07:43:49Z,1,2020-02-15T06:59:36Z +221,2005-05-26T10:14:09Z,3578,143,2005-05-29T05:57:09Z,1,2020-02-15T06:59:36Z +222,2005-05-26T10:14:38Z,2745,83,2005-05-31T08:36:38Z,2,2020-02-15T06:59:36Z +223,2005-05-26T10:15:23Z,3121,460,2005-05-30T11:43:23Z,1,2020-02-15T06:59:36Z +224,2005-05-26T10:18:27Z,4285,318,2005-06-04T06:59:27Z,1,2020-02-15T06:59:36Z +225,2005-05-26T10:27:50Z,651,467,2005-06-01T07:01:50Z,2,2020-02-15T06:59:36Z +226,2005-05-26T10:44:04Z,4181,221,2005-05-31T13:26:04Z,2,2020-02-15T06:59:36Z +227,2005-05-26T10:51:46Z,214,301,2005-05-30T07:24:46Z,1,2020-02-15T06:59:36Z +228,2005-05-26T10:54:28Z,511,571,2005-06-04T09:39:28Z,1,2020-02-15T06:59:36Z +229,2005-05-26T11:19:20Z,1131,312,2005-05-31T11:56:20Z,2,2020-02-15T06:59:36Z +230,2005-05-26T11:31:50Z,1085,58,2005-05-30T15:22:50Z,1,2020-02-15T06:59:36Z +231,2005-05-26T11:31:59Z,4032,365,2005-05-27T07:27:59Z,1,2020-02-15T06:59:36Z +232,2005-05-26T11:38:05Z,2945,256,2005-05-27T08:42:05Z,2,2020-02-15T06:59:36Z +233,2005-05-26T11:43:44Z,715,531,2005-05-28T17:28:44Z,2,2020-02-15T06:59:36Z +234,2005-05-26T11:47:20Z,1321,566,2005-06-03T10:39:20Z,2,2020-02-15T06:59:36Z +235,2005-05-26T11:51:09Z,3537,119,2005-06-04T09:36:09Z,1,2020-02-15T06:59:36Z +236,2005-05-26T11:53:49Z,1265,446,2005-05-28T13:55:49Z,1,2020-02-15T06:59:36Z +237,2005-05-26T12:15:13Z,241,536,2005-05-29T18:10:13Z,1,2020-02-15T06:59:36Z +238,2005-05-26T12:30:22Z,503,211,2005-05-27T06:49:22Z,1,2020-02-15T06:59:36Z +239,2005-05-26T12:30:26Z,131,49,2005-06-01T13:26:26Z,2,2020-02-15T06:59:36Z +240,2005-05-26T12:40:23Z,3420,103,2005-06-04T07:22:23Z,1,2020-02-15T06:59:36Z +241,2005-05-26T12:49:01Z,4438,245,2005-05-28T11:43:01Z,2,2020-02-15T06:59:36Z +242,2005-05-26T13:05:08Z,2095,214,2005-06-02T15:26:08Z,1,2020-02-15T06:59:36Z +243,2005-05-26T13:06:05Z,1721,543,2005-06-03T17:28:05Z,2,2020-02-15T06:59:36Z +244,2005-05-26T13:40:40Z,1041,257,2005-05-31T11:58:40Z,1,2020-02-15T06:59:36Z +245,2005-05-26T13:46:59Z,3045,158,2005-05-27T09:58:59Z,2,2020-02-15T06:59:36Z +246,2005-05-26T13:57:07Z,2829,240,2005-05-29T10:12:07Z,2,2020-02-15T06:59:36Z +247,2005-05-26T14:01:05Z,4095,102,2005-05-28T13:38:05Z,2,2020-02-15T06:59:36Z +248,2005-05-26T14:07:58Z,1913,545,2005-05-31T14:03:58Z,2,2020-02-15T06:59:36Z +249,2005-05-26T14:19:09Z,2428,472,2005-05-28T17:47:09Z,2,2020-02-15T06:59:36Z +250,2005-05-26T14:30:24Z,368,539,2005-05-27T08:50:24Z,1,2020-02-15T06:59:36Z +251,2005-05-26T14:35:40Z,4352,204,2005-05-29T17:17:40Z,1,2020-02-15T06:59:36Z +252,2005-05-26T14:39:53Z,1203,187,2005-06-02T14:48:53Z,1,2020-02-15T06:59:36Z +253,2005-05-26T14:43:14Z,2969,416,2005-05-27T12:21:14Z,1,2020-02-15T06:59:36Z +254,2005-05-26T14:43:48Z,1835,390,2005-05-31T09:19:48Z,2,2020-02-15T06:59:36Z +255,2005-05-26T14:52:15Z,3264,114,2005-05-27T12:45:15Z,1,2020-02-15T06:59:36Z +256,2005-05-26T15:20:58Z,3194,436,2005-05-31T15:58:58Z,1,2020-02-15T06:59:36Z +257,2005-05-26T15:27:05Z,2570,373,2005-05-29T16:25:05Z,2,2020-02-15T06:59:36Z +258,2005-05-26T15:28:14Z,3534,502,2005-05-30T18:38:14Z,2,2020-02-15T06:59:36Z +259,2005-05-26T15:32:46Z,30,482,2005-06-04T15:27:46Z,2,2020-02-15T06:59:36Z +260,2005-05-26T15:42:20Z,435,21,2005-05-31T13:21:20Z,2,2020-02-15T06:59:36Z +261,2005-05-26T15:44:23Z,1369,414,2005-06-02T09:47:23Z,2,2020-02-15T06:59:36Z +262,2005-05-26T15:46:56Z,4261,236,2005-05-28T15:49:56Z,2,2020-02-15T06:59:36Z +263,2005-05-26T15:47:40Z,1160,449,2005-05-30T10:07:40Z,2,2020-02-15T06:59:36Z +264,2005-05-26T16:00:49Z,2069,251,2005-05-27T10:12:49Z,2,2020-02-15T06:59:36Z +265,2005-05-26T16:07:38Z,2276,303,2005-06-01T14:20:38Z,1,2020-02-15T06:59:36Z +266,2005-05-26T16:08:05Z,3303,263,2005-05-27T10:55:05Z,2,2020-02-15T06:59:36Z +267,2005-05-26T16:16:21Z,1206,417,2005-05-30T16:53:21Z,2,2020-02-15T06:59:36Z +268,2005-05-26T16:19:08Z,1714,75,2005-05-27T14:35:08Z,1,2020-02-15T06:59:36Z +269,2005-05-26T16:19:46Z,3501,322,2005-05-27T15:59:46Z,2,2020-02-15T06:59:36Z +270,2005-05-26T16:20:56Z,207,200,2005-06-03T12:40:56Z,2,2020-02-15T06:59:36Z +271,2005-05-26T16:22:01Z,2388,92,2005-06-03T17:30:01Z,2,2020-02-15T06:59:36Z +272,2005-05-26T16:27:11Z,971,71,2005-06-03T13:10:11Z,2,2020-02-15T06:59:36Z +273,2005-05-26T16:29:36Z,1590,193,2005-05-29T18:49:36Z,2,2020-02-15T06:59:36Z +274,2005-05-26T16:48:51Z,656,311,2005-06-03T18:17:51Z,1,2020-02-15T06:59:36Z +275,2005-05-26T17:09:53Z,1718,133,2005-06-04T22:35:53Z,1,2020-02-15T06:59:36Z +276,2005-05-26T17:16:07Z,1221,58,2005-06-03T12:59:07Z,1,2020-02-15T06:59:36Z +277,2005-05-26T17:32:11Z,1409,45,2005-05-28T22:54:11Z,1,2020-02-15T06:59:36Z +278,2005-05-26T17:40:58Z,182,214,2005-06-02T16:43:58Z,2,2020-02-15T06:59:36Z +279,2005-05-26T18:02:50Z,661,384,2005-06-03T18:48:50Z,2,2020-02-15T06:59:36Z +280,2005-05-26T18:36:58Z,1896,167,2005-05-27T23:42:58Z,1,2020-02-15T06:59:36Z +281,2005-05-26T18:49:35Z,1208,582,2005-05-27T18:11:35Z,2,2020-02-15T06:59:36Z +282,2005-05-26T18:56:26Z,4486,282,2005-06-01T16:32:26Z,2,2020-02-15T06:59:36Z +283,2005-05-26T19:05:05Z,3530,242,2005-05-31T19:19:05Z,1,2020-02-15T06:59:36Z +284,2005-05-26T19:21:44Z,350,359,2005-06-04T14:18:44Z,2,2020-02-15T06:59:36Z +285,2005-05-26T19:41:40Z,2486,162,2005-05-31T16:58:40Z,2,2020-02-15T06:59:36Z +286,2005-05-26T19:44:51Z,314,371,2005-06-04T18:00:51Z,2,2020-02-15T06:59:36Z +287,2005-05-26T19:44:54Z,3631,17,2005-06-02T01:10:54Z,1,2020-02-15T06:59:36Z +288,2005-05-26T19:47:49Z,3546,82,2005-06-03T20:53:49Z,2,2020-02-15T06:59:36Z +289,2005-05-26T20:01:09Z,2449,81,2005-05-28T15:09:09Z,1,2020-02-15T06:59:36Z +290,2005-05-26T20:08:33Z,2776,429,2005-05-30T00:32:33Z,1,2020-02-15T06:59:36Z +291,2005-05-26T20:20:47Z,485,577,2005-06-03T02:06:47Z,2,2020-02-15T06:59:36Z +292,2005-05-26T20:22:12Z,4264,515,2005-06-05T00:58:12Z,1,2020-02-15T06:59:36Z +293,2005-05-26T20:27:02Z,1828,158,2005-06-03T16:45:02Z,2,2020-02-15T06:59:36Z +294,2005-05-26T20:29:57Z,2751,369,2005-05-28T17:20:57Z,1,2020-02-15T06:59:36Z +295,2005-05-26T20:33:20Z,4030,65,2005-05-27T18:23:20Z,2,2020-02-15T06:59:36Z +296,2005-05-26T20:35:19Z,3878,468,2005-06-04T02:31:19Z,2,2020-02-15T06:59:36Z +297,2005-05-26T20:48:48Z,1594,48,2005-05-27T19:52:48Z,2,2020-02-15T06:59:36Z +298,2005-05-26T20:52:26Z,1083,460,2005-05-29T22:08:26Z,2,2020-02-15T06:59:36Z +299,2005-05-26T20:55:36Z,4376,448,2005-05-28T00:25:36Z,2,2020-02-15T06:59:36Z +300,2005-05-26T20:57:00Z,249,47,2005-06-05T01:34:00Z,2,2020-02-15T06:59:36Z +301,2005-05-26T21:06:14Z,3448,274,2005-06-01T01:54:14Z,2,2020-02-15T06:59:36Z +302,2005-05-26T21:13:46Z,2921,387,2005-06-03T15:49:46Z,2,2020-02-15T06:59:36Z +303,2005-05-26T21:16:52Z,1111,596,2005-05-27T23:41:52Z,2,2020-02-15T06:59:36Z +304,2005-05-26T21:21:28Z,1701,534,2005-06-02T00:05:28Z,1,2020-02-15T06:59:36Z +305,2005-05-26T21:22:07Z,2665,464,2005-06-02T22:33:07Z,2,2020-02-15T06:59:36Z +306,2005-05-26T21:31:57Z,2781,547,2005-05-28T19:37:57Z,1,2020-02-15T06:59:36Z +307,2005-05-26T21:48:13Z,1097,375,2005-06-04T22:24:13Z,1,2020-02-15T06:59:36Z +308,2005-05-26T22:01:39Z,187,277,2005-06-04T20:24:39Z,2,2020-02-15T06:59:36Z +309,2005-05-26T22:38:10Z,1946,251,2005-06-02T03:10:10Z,2,2020-02-15T06:59:36Z +310,2005-05-26T22:41:07Z,593,409,2005-06-02T04:09:07Z,1,2020-02-15T06:59:36Z +311,2005-05-26T22:51:37Z,2830,201,2005-06-01T00:02:37Z,1,2020-02-15T06:59:36Z +312,2005-05-26T22:52:19Z,2008,143,2005-06-02T18:14:19Z,2,2020-02-15T06:59:36Z +313,2005-05-26T22:56:19Z,4156,594,2005-05-29T01:29:19Z,2,2020-02-15T06:59:36Z +314,2005-05-26T23:09:41Z,2851,203,2005-05-28T22:49:41Z,2,2020-02-15T06:59:36Z +315,2005-05-26T23:12:55Z,2847,238,2005-05-29T23:33:55Z,1,2020-02-15T06:59:36Z +316,2005-05-26T23:22:55Z,3828,249,2005-05-29T23:25:55Z,2,2020-02-15T06:59:36Z +317,2005-05-26T23:23:56Z,26,391,2005-06-01T19:56:56Z,2,2020-02-15T06:59:36Z +318,2005-05-26T23:37:39Z,2559,60,2005-06-03T04:31:39Z,2,2020-02-15T06:59:36Z +319,2005-05-26T23:52:13Z,3024,77,2005-05-30T18:55:13Z,1,2020-02-15T06:59:36Z +320,2005-05-27T00:09:24Z,1090,2,2005-05-28T04:30:24Z,2,2020-02-15T06:59:36Z +322,2005-05-27T00:47:35Z,4556,496,2005-06-02T00:32:35Z,1,2020-02-15T06:59:36Z +323,2005-05-27T00:49:27Z,2362,144,2005-05-30T03:12:27Z,1,2020-02-15T06:59:36Z +324,2005-05-27T01:00:04Z,3364,292,2005-05-30T04:27:04Z,1,2020-02-15T06:59:36Z +325,2005-05-27T01:09:55Z,2510,449,2005-05-31T07:01:55Z,2,2020-02-15T06:59:36Z +326,2005-05-27T01:10:11Z,3979,432,2005-06-04T20:25:11Z,2,2020-02-15T06:59:36Z +327,2005-05-27T01:18:57Z,2678,105,2005-06-04T04:06:57Z,1,2020-02-15T06:59:36Z +328,2005-05-27T01:29:31Z,2524,451,2005-06-01T02:27:31Z,1,2020-02-15T06:59:36Z +329,2005-05-27T01:57:14Z,2659,231,2005-05-31T04:19:14Z,2,2020-02-15T06:59:36Z +330,2005-05-27T02:15:30Z,1536,248,2005-06-04T05:09:30Z,2,2020-02-15T06:59:36Z +331,2005-05-27T02:22:26Z,1872,67,2005-06-05T00:25:26Z,1,2020-02-15T06:59:36Z +332,2005-05-27T02:27:10Z,1529,299,2005-06-03T01:26:10Z,2,2020-02-15T06:59:36Z +333,2005-05-27T02:52:21Z,4001,412,2005-06-01T00:55:21Z,2,2020-02-15T06:59:36Z +334,2005-05-27T03:03:07Z,3973,194,2005-05-29T03:54:07Z,1,2020-02-15T06:59:36Z +335,2005-05-27T03:07:10Z,1411,16,2005-06-05T00:15:10Z,2,2020-02-15T06:59:36Z +336,2005-05-27T03:15:23Z,1811,275,2005-05-29T22:43:23Z,1,2020-02-15T06:59:36Z +337,2005-05-27T03:22:30Z,751,19,2005-06-02T03:27:30Z,1,2020-02-15T06:59:36Z +338,2005-05-27T03:42:52Z,2596,165,2005-06-01T05:23:52Z,2,2020-02-15T06:59:36Z +339,2005-05-27T03:47:18Z,2410,516,2005-06-04T05:46:18Z,2,2020-02-15T06:59:36Z +340,2005-05-27T03:55:25Z,946,209,2005-06-04T07:57:25Z,2,2020-02-15T06:59:36Z +341,2005-05-27T04:01:42Z,4168,56,2005-06-05T08:51:42Z,1,2020-02-15T06:59:36Z +342,2005-05-27T04:11:04Z,4019,539,2005-05-29T01:28:04Z,2,2020-02-15T06:59:36Z +343,2005-05-27T04:13:41Z,3301,455,2005-05-28T08:34:41Z,1,2020-02-15T06:59:36Z +344,2005-05-27T04:30:22Z,2327,236,2005-05-29T10:13:22Z,2,2020-02-15T06:59:36Z +345,2005-05-27T04:32:25Z,1396,144,2005-05-31T09:50:25Z,1,2020-02-15T06:59:36Z +346,2005-05-27T04:34:41Z,4319,14,2005-06-05T04:24:41Z,2,2020-02-15T06:59:36Z +347,2005-05-27T04:40:33Z,1625,378,2005-05-28T09:56:33Z,2,2020-02-15T06:59:36Z +348,2005-05-27T04:50:56Z,1825,473,2005-06-01T04:43:56Z,1,2020-02-15T06:59:36Z +349,2005-05-27T04:53:11Z,2920,36,2005-05-28T06:33:11Z,2,2020-02-15T06:59:36Z +350,2005-05-27T05:01:28Z,2756,9,2005-06-04T05:01:28Z,2,2020-02-15T06:59:36Z +351,2005-05-27T05:39:03Z,3371,118,2005-06-01T11:10:03Z,1,2020-02-15T06:59:36Z +352,2005-05-27T05:48:19Z,4369,157,2005-05-29T09:05:19Z,1,2020-02-15T06:59:36Z +353,2005-05-27T06:03:39Z,3989,503,2005-06-03T04:39:39Z,2,2020-02-15T06:59:36Z +354,2005-05-27T06:12:26Z,2058,452,2005-06-01T06:48:26Z,1,2020-02-15T06:59:36Z +355,2005-05-27T06:15:33Z,141,446,2005-06-01T02:50:33Z,2,2020-02-15T06:59:36Z +356,2005-05-27T06:32:30Z,2868,382,2005-05-30T06:24:30Z,2,2020-02-15T06:59:36Z +357,2005-05-27T06:37:15Z,4417,198,2005-05-30T07:04:15Z,2,2020-02-15T06:59:36Z +358,2005-05-27T06:43:59Z,1925,102,2005-05-29T11:28:59Z,2,2020-02-15T06:59:36Z +359,2005-05-27T06:48:33Z,1156,152,2005-05-29T03:55:33Z,1,2020-02-15T06:59:36Z +360,2005-05-27T06:51:14Z,3489,594,2005-06-03T01:58:14Z,1,2020-02-15T06:59:36Z +361,2005-05-27T07:03:28Z,6,587,2005-05-31T08:01:28Z,1,2020-02-15T06:59:36Z +362,2005-05-27T07:10:25Z,2324,147,2005-06-01T08:34:25Z,1,2020-02-15T06:59:36Z +363,2005-05-27T07:14:00Z,4282,345,2005-05-28T12:22:00Z,2,2020-02-15T06:59:36Z +364,2005-05-27T07:20:12Z,833,430,2005-05-31T10:44:12Z,2,2020-02-15T06:59:36Z +365,2005-05-27T07:31:20Z,2887,167,2005-06-04T04:46:20Z,1,2020-02-15T06:59:36Z +366,2005-05-27T07:33:54Z,360,134,2005-06-04T01:55:54Z,2,2020-02-15T06:59:36Z +367,2005-05-27T07:37:02Z,3437,439,2005-05-30T05:43:02Z,2,2020-02-15T06:59:36Z +368,2005-05-27T07:42:29Z,1247,361,2005-06-04T11:20:29Z,2,2020-02-15T06:59:36Z +369,2005-05-27T07:46:49Z,944,508,2005-06-01T06:20:49Z,2,2020-02-15T06:59:36Z +370,2005-05-27T07:49:43Z,3347,22,2005-06-05T06:39:43Z,2,2020-02-15T06:59:36Z +371,2005-05-27T08:08:18Z,1235,295,2005-06-05T03:05:18Z,2,2020-02-15T06:59:36Z +372,2005-05-27T08:13:58Z,4089,510,2005-06-04T03:50:58Z,2,2020-02-15T06:59:36Z +373,2005-05-27T08:16:25Z,1649,464,2005-06-01T11:41:25Z,1,2020-02-15T06:59:36Z +374,2005-05-27T08:26:30Z,4420,337,2005-06-05T07:13:30Z,1,2020-02-15T06:59:36Z +375,2005-05-27T08:49:21Z,1815,306,2005-06-04T14:11:21Z,1,2020-02-15T06:59:36Z +376,2005-05-27T08:58:15Z,3197,542,2005-06-02T04:48:15Z,1,2020-02-15T06:59:36Z +377,2005-05-27T09:04:05Z,3012,170,2005-06-02T03:36:05Z,2,2020-02-15T06:59:36Z +378,2005-05-27T09:23:22Z,2242,53,2005-05-29T15:20:22Z,1,2020-02-15T06:59:36Z +379,2005-05-27T09:25:32Z,3462,584,2005-06-02T06:19:32Z,1,2020-02-15T06:59:36Z +380,2005-05-27T09:34:39Z,1777,176,2005-06-04T11:45:39Z,1,2020-02-15T06:59:36Z +381,2005-05-27T09:43:25Z,2748,371,2005-05-31T12:00:25Z,1,2020-02-15T06:59:36Z +382,2005-05-27T10:12:00Z,4358,183,2005-05-31T15:03:00Z,1,2020-02-15T06:59:36Z +383,2005-05-27T10:12:20Z,955,298,2005-06-03T10:37:20Z,1,2020-02-15T06:59:36Z +384,2005-05-27T10:18:20Z,910,371,2005-06-02T09:21:20Z,2,2020-02-15T06:59:36Z +385,2005-05-27T10:23:25Z,1565,213,2005-05-30T15:27:25Z,2,2020-02-15T06:59:36Z +386,2005-05-27T10:26:31Z,1288,109,2005-05-30T08:32:31Z,1,2020-02-15T06:59:36Z +387,2005-05-27T10:35:27Z,2684,506,2005-06-01T13:37:27Z,2,2020-02-15T06:59:36Z +388,2005-05-27T10:37:27Z,434,28,2005-05-30T05:45:27Z,1,2020-02-15T06:59:36Z +389,2005-05-27T10:45:41Z,691,500,2005-06-05T06:22:41Z,2,2020-02-15T06:59:36Z +390,2005-05-27T11:02:26Z,3759,48,2005-06-02T16:09:26Z,2,2020-02-15T06:59:36Z +391,2005-05-27T11:03:55Z,2193,197,2005-06-01T11:59:55Z,2,2020-02-15T06:59:36Z +392,2005-05-27T11:14:42Z,263,359,2005-06-01T14:28:42Z,2,2020-02-15T06:59:36Z +393,2005-05-27T11:18:25Z,145,251,2005-05-28T07:10:25Z,2,2020-02-15T06:59:36Z +394,2005-05-27T11:26:11Z,1890,274,2005-06-03T16:44:11Z,2,2020-02-15T06:59:36Z +395,2005-05-27T11:45:49Z,752,575,2005-05-31T13:42:49Z,1,2020-02-15T06:59:36Z +396,2005-05-27T11:47:04Z,1020,112,2005-05-29T10:14:04Z,1,2020-02-15T06:59:36Z +397,2005-05-27T12:29:02Z,4193,544,2005-05-28T17:36:02Z,2,2020-02-15T06:59:36Z +398,2005-05-27T12:44:03Z,1686,422,2005-06-02T08:19:03Z,1,2020-02-15T06:59:36Z +399,2005-05-27T12:48:38Z,553,204,2005-05-29T15:27:38Z,1,2020-02-15T06:59:36Z +400,2005-05-27T12:51:44Z,258,249,2005-05-31T08:34:44Z,2,2020-02-15T06:59:36Z +401,2005-05-27T12:57:55Z,2179,46,2005-05-29T17:55:55Z,2,2020-02-15T06:59:36Z +402,2005-05-27T13:17:18Z,461,354,2005-05-30T08:53:18Z,2,2020-02-15T06:59:36Z +403,2005-05-27T13:28:52Z,3983,424,2005-05-29T11:47:52Z,2,2020-02-15T06:59:36Z +404,2005-05-27T13:31:51Z,1293,168,2005-05-30T16:58:51Z,1,2020-02-15T06:59:36Z +405,2005-05-27T13:32:39Z,4090,272,2005-06-05T18:53:39Z,2,2020-02-15T06:59:36Z +406,2005-05-27T13:46:46Z,2136,381,2005-05-30T12:43:46Z,1,2020-02-15T06:59:36Z +407,2005-05-27T13:57:38Z,1077,44,2005-05-31T18:23:38Z,1,2020-02-15T06:59:36Z +408,2005-05-27T13:57:39Z,1438,84,2005-05-28T11:57:39Z,1,2020-02-15T06:59:36Z +409,2005-05-27T14:10:58Z,3652,220,2005-06-02T10:40:58Z,2,2020-02-15T06:59:36Z +410,2005-05-27T14:11:22Z,4010,506,2005-06-02T20:06:22Z,2,2020-02-15T06:59:36Z +411,2005-05-27T14:14:14Z,1434,388,2005-06-03T17:39:14Z,1,2020-02-15T06:59:36Z +412,2005-05-27T14:17:23Z,1400,375,2005-05-29T15:07:23Z,2,2020-02-15T06:59:36Z +413,2005-05-27T14:45:37Z,3516,307,2005-06-03T11:11:37Z,1,2020-02-15T06:59:36Z +414,2005-05-27T14:48:20Z,1019,219,2005-05-31T14:39:20Z,2,2020-02-15T06:59:36Z +415,2005-05-27T14:51:45Z,3698,304,2005-05-28T19:07:45Z,2,2020-02-15T06:59:36Z +416,2005-05-27T15:02:10Z,2371,222,2005-05-29T10:34:10Z,2,2020-02-15T06:59:36Z +417,2005-05-27T15:07:27Z,2253,475,2005-05-29T20:01:27Z,2,2020-02-15T06:59:36Z +418,2005-05-27T15:13:17Z,3063,151,2005-06-04T12:05:17Z,2,2020-02-15T06:59:36Z +419,2005-05-27T15:15:11Z,2514,77,2005-06-02T11:53:11Z,1,2020-02-15T06:59:36Z +420,2005-05-27T15:19:38Z,619,93,2005-06-03T15:07:38Z,2,2020-02-15T06:59:36Z +421,2005-05-27T15:30:13Z,2985,246,2005-06-04T13:19:13Z,2,2020-02-15T06:59:36Z +422,2005-05-27T15:31:55Z,1152,150,2005-06-01T11:47:55Z,2,2020-02-15T06:59:36Z +423,2005-05-27T15:32:57Z,1783,284,2005-06-02T19:03:57Z,1,2020-02-15T06:59:36Z +424,2005-05-27T15:34:01Z,2815,35,2005-06-05T09:44:01Z,1,2020-02-15T06:59:36Z +425,2005-05-27T15:51:30Z,1518,182,2005-06-03T16:52:30Z,2,2020-02-15T06:59:36Z +426,2005-05-27T15:56:57Z,1103,522,2005-06-05T11:45:57Z,1,2020-02-15T06:59:36Z +427,2005-05-27T16:10:04Z,1677,288,2005-06-05T13:22:04Z,2,2020-02-15T06:59:36Z +428,2005-05-27T16:10:58Z,3349,161,2005-05-31T17:24:58Z,2,2020-02-15T06:59:36Z +429,2005-05-27T16:21:26Z,129,498,2005-06-05T20:23:26Z,2,2020-02-15T06:59:36Z +430,2005-05-27T16:22:10Z,1920,190,2005-06-05T13:10:10Z,1,2020-02-15T06:59:36Z +431,2005-05-27T16:31:05Z,4507,334,2005-06-05T11:29:05Z,1,2020-02-15T06:59:36Z +432,2005-05-27T16:40:29Z,1119,46,2005-05-29T16:20:29Z,1,2020-02-15T06:59:36Z +433,2005-05-27T16:40:40Z,4364,574,2005-05-30T19:55:40Z,2,2020-02-15T06:59:36Z +434,2005-05-27T16:54:27Z,3360,246,2005-06-04T22:26:27Z,1,2020-02-15T06:59:36Z +435,2005-05-27T17:17:09Z,3328,3,2005-06-02T11:20:09Z,2,2020-02-15T06:59:36Z +436,2005-05-27T17:21:04Z,4317,267,2005-05-30T21:26:04Z,2,2020-02-15T06:59:36Z +437,2005-05-27T17:47:22Z,1800,525,2005-06-05T14:22:22Z,2,2020-02-15T06:59:36Z +438,2005-05-27T17:52:34Z,4260,249,2005-06-05T22:23:34Z,2,2020-02-15T06:59:36Z +439,2005-05-27T17:54:48Z,354,319,2005-06-02T23:01:48Z,2,2020-02-15T06:59:36Z +440,2005-05-27T18:00:35Z,4452,314,2005-05-29T16:15:35Z,1,2020-02-15T06:59:36Z +441,2005-05-27T18:11:05Z,1578,54,2005-05-30T22:45:05Z,1,2020-02-15T06:59:36Z +442,2005-05-27T18:12:13Z,1457,403,2005-05-30T12:30:13Z,2,2020-02-15T06:59:36Z +443,2005-05-27T18:35:20Z,2021,547,2005-06-04T18:58:20Z,1,2020-02-15T06:59:36Z +444,2005-05-27T18:39:15Z,723,239,2005-06-01T15:56:15Z,1,2020-02-15T06:59:36Z +445,2005-05-27T18:42:57Z,1757,293,2005-05-30T22:35:57Z,2,2020-02-15T06:59:36Z +446,2005-05-27T18:48:41Z,1955,401,2005-06-03T16:42:41Z,2,2020-02-15T06:59:36Z +447,2005-05-27T18:57:02Z,3890,133,2005-06-05T18:38:02Z,1,2020-02-15T06:59:36Z +448,2005-05-27T19:03:08Z,2671,247,2005-06-03T20:28:08Z,2,2020-02-15T06:59:36Z +449,2005-05-27T19:13:15Z,2469,172,2005-06-04T01:08:15Z,2,2020-02-15T06:59:36Z +450,2005-05-27T19:18:54Z,1343,247,2005-06-05T23:52:54Z,1,2020-02-15T06:59:36Z +451,2005-05-27T19:27:54Z,205,87,2005-05-29T01:07:54Z,2,2020-02-15T06:59:36Z +452,2005-05-27T19:30:33Z,2993,127,2005-05-30T20:53:33Z,2,2020-02-15T06:59:36Z +453,2005-05-27T19:31:16Z,4425,529,2005-05-29T23:06:16Z,1,2020-02-15T06:59:36Z +454,2005-05-27T19:31:36Z,3499,575,2005-05-30T15:46:36Z,1,2020-02-15T06:59:36Z +455,2005-05-27T19:43:29Z,3344,343,2005-06-04T23:40:29Z,2,2020-02-15T06:59:36Z +456,2005-05-27T19:50:06Z,1699,92,2005-06-02T22:14:06Z,1,2020-02-15T06:59:36Z +457,2005-05-27T19:52:29Z,2368,300,2005-06-02T17:17:29Z,2,2020-02-15T06:59:37Z +458,2005-05-27T19:58:36Z,3350,565,2005-06-06T00:51:36Z,1,2020-02-15T06:59:37Z +459,2005-05-27T20:00:04Z,597,468,2005-05-29T22:47:04Z,1,2020-02-15T06:59:37Z +460,2005-05-27T20:02:03Z,4238,240,2005-05-28T16:14:03Z,1,2020-02-15T06:59:37Z +461,2005-05-27T20:08:55Z,2077,447,2005-06-01T14:32:55Z,1,2020-02-15T06:59:37Z +462,2005-05-27T20:10:36Z,2314,364,2005-06-03T21:12:36Z,2,2020-02-15T06:59:37Z +463,2005-05-27T20:11:47Z,826,21,2005-06-04T21:18:47Z,1,2020-02-15T06:59:37Z +464,2005-05-27T20:42:44Z,1313,193,2005-05-30T00:49:44Z,2,2020-02-15T06:59:37Z +465,2005-05-27T20:44:36Z,20,261,2005-06-02T02:43:36Z,1,2020-02-15T06:59:37Z +466,2005-05-27T20:57:07Z,1786,442,2005-05-29T15:52:07Z,1,2020-02-15T06:59:37Z +467,2005-05-27T21:10:03Z,339,557,2005-06-01T16:08:03Z,1,2020-02-15T06:59:37Z +468,2005-05-27T21:13:10Z,2656,101,2005-06-04T15:26:10Z,2,2020-02-15T06:59:37Z +469,2005-05-27T21:14:26Z,4463,154,2005-06-05T21:51:26Z,1,2020-02-15T06:59:37Z +470,2005-05-27T21:17:08Z,1613,504,2005-06-04T17:47:08Z,1,2020-02-15T06:59:37Z +471,2005-05-27T21:32:42Z,2872,209,2005-05-31T00:39:42Z,2,2020-02-15T06:59:37Z +472,2005-05-27T21:36:15Z,1338,528,2005-05-29T21:07:15Z,1,2020-02-15T06:59:37Z +473,2005-05-27T21:36:34Z,802,105,2005-06-05T17:02:34Z,1,2020-02-15T06:59:37Z +474,2005-05-27T22:11:56Z,1474,274,2005-05-31T19:07:56Z,1,2020-02-15T06:59:37Z +475,2005-05-27T22:16:26Z,2520,159,2005-05-28T19:58:26Z,1,2020-02-15T06:59:37Z +476,2005-05-27T22:31:36Z,2451,543,2005-06-03T19:12:36Z,1,2020-02-15T06:59:37Z +477,2005-05-27T22:33:33Z,2437,161,2005-06-02T18:35:33Z,2,2020-02-15T06:59:37Z +478,2005-05-27T22:38:20Z,424,557,2005-05-31T18:39:20Z,2,2020-02-15T06:59:37Z +479,2005-05-27T22:39:10Z,2060,231,2005-06-05T22:46:10Z,2,2020-02-15T06:59:37Z +480,2005-05-27T22:47:39Z,2108,220,2005-06-04T21:17:39Z,2,2020-02-15T06:59:37Z +481,2005-05-27T22:49:27Z,72,445,2005-05-30T17:46:27Z,2,2020-02-15T06:59:37Z +482,2005-05-27T22:53:02Z,4178,546,2005-06-01T22:53:02Z,2,2020-02-15T06:59:37Z +483,2005-05-27T23:00:25Z,1510,32,2005-05-28T21:30:25Z,1,2020-02-15T06:59:37Z +484,2005-05-27T23:26:45Z,3115,491,2005-05-29T21:16:45Z,2,2020-02-15T06:59:37Z +485,2005-05-27T23:40:52Z,2392,105,2005-05-28T22:40:52Z,2,2020-02-15T06:59:37Z +486,2005-05-27T23:51:12Z,1822,398,2005-05-28T20:26:12Z,1,2020-02-15T06:59:37Z +487,2005-05-28T00:00:30Z,3774,569,2005-05-28T19:18:30Z,2,2020-02-15T06:59:37Z +488,2005-05-28T00:07:50Z,393,168,2005-06-03T22:30:50Z,2,2020-02-15T06:59:37Z +489,2005-05-28T00:09:12Z,1940,476,2005-05-31T04:44:12Z,2,2020-02-15T06:59:37Z +490,2005-05-28T00:09:56Z,3524,95,2005-05-30T22:32:56Z,2,2020-02-15T06:59:37Z +491,2005-05-28T00:13:35Z,1326,196,2005-05-29T00:11:35Z,2,2020-02-15T06:59:37Z +492,2005-05-28T00:24:58Z,1999,228,2005-05-28T22:34:58Z,1,2020-02-15T06:59:37Z +493,2005-05-28T00:34:11Z,184,501,2005-05-30T18:40:11Z,1,2020-02-15T06:59:37Z +494,2005-05-28T00:39:31Z,1850,64,2005-06-02T19:35:31Z,1,2020-02-15T06:59:37Z +495,2005-05-28T00:40:48Z,1007,526,2005-05-29T06:07:48Z,1,2020-02-15T06:59:37Z +496,2005-05-28T00:43:41Z,1785,56,2005-06-04T03:56:41Z,1,2020-02-15T06:59:37Z +497,2005-05-28T00:54:39Z,2636,20,2005-06-03T20:47:39Z,2,2020-02-15T06:59:37Z +498,2005-05-28T01:01:21Z,458,287,2005-05-30T21:20:21Z,2,2020-02-15T06:59:37Z +499,2005-05-28T01:05:07Z,2381,199,2005-06-05T19:54:07Z,2,2020-02-15T06:59:37Z +500,2005-05-28T01:05:25Z,4500,145,2005-05-31T20:04:25Z,1,2020-02-15T06:59:37Z +501,2005-05-28T01:09:36Z,601,162,2005-05-30T06:14:36Z,2,2020-02-15T06:59:37Z +502,2005-05-28T01:34:43Z,3131,179,2005-05-31T01:02:43Z,2,2020-02-15T06:59:37Z +503,2005-05-28T01:35:25Z,3005,288,2005-05-28T22:12:25Z,2,2020-02-15T06:59:37Z +504,2005-05-28T02:05:34Z,2086,170,2005-05-30T23:03:34Z,1,2020-02-15T06:59:37Z +505,2005-05-28T02:06:37Z,71,111,2005-05-29T06:57:37Z,1,2020-02-15T06:59:37Z +506,2005-05-28T02:09:19Z,667,469,2005-06-05T20:34:19Z,1,2020-02-15T06:59:37Z +507,2005-05-28T02:31:19Z,3621,421,2005-06-02T05:07:19Z,2,2020-02-15T06:59:37Z +508,2005-05-28T02:40:50Z,4179,434,2005-06-05T03:05:50Z,1,2020-02-15T06:59:37Z +509,2005-05-28T02:51:12Z,3416,147,2005-05-31T06:27:12Z,1,2020-02-15T06:59:37Z +510,2005-05-28T02:52:14Z,4338,113,2005-05-30T21:20:14Z,2,2020-02-15T06:59:37Z +511,2005-05-28T03:04:04Z,3827,296,2005-06-03T04:58:04Z,1,2020-02-15T06:59:37Z +512,2005-05-28T03:07:50Z,2176,231,2005-06-05T02:12:50Z,2,2020-02-15T06:59:37Z +513,2005-05-28T03:08:10Z,225,489,2005-05-29T07:22:10Z,1,2020-02-15T06:59:37Z +514,2005-05-28T03:09:28Z,1697,597,2005-06-05T00:49:28Z,2,2020-02-15T06:59:37Z +515,2005-05-28T03:10:10Z,3369,110,2005-06-04T02:18:10Z,2,2020-02-15T06:59:37Z +516,2005-05-28T03:11:47Z,4357,400,2005-06-04T02:19:47Z,1,2020-02-15T06:59:37Z +517,2005-05-28T03:17:57Z,234,403,2005-05-29T06:33:57Z,1,2020-02-15T06:59:37Z +518,2005-05-28T03:18:02Z,4087,480,2005-05-30T05:32:02Z,1,2020-02-15T06:59:37Z +519,2005-05-28T03:22:33Z,3564,245,2005-06-03T05:06:33Z,1,2020-02-15T06:59:37Z +520,2005-05-28T03:27:37Z,3845,161,2005-06-04T05:47:37Z,1,2020-02-15T06:59:37Z +521,2005-05-28T03:32:22Z,2397,374,2005-05-28T22:37:22Z,1,2020-02-15T06:59:37Z +522,2005-05-28T03:33:20Z,3195,382,2005-05-31T04:23:20Z,1,2020-02-15T06:59:37Z +523,2005-05-28T03:53:26Z,1905,138,2005-05-31T05:58:26Z,2,2020-02-15T06:59:37Z +524,2005-05-28T03:57:28Z,1962,223,2005-05-31T05:20:28Z,1,2020-02-15T06:59:37Z +525,2005-05-28T04:25:33Z,1817,14,2005-06-06T04:18:33Z,1,2020-02-15T06:59:37Z +526,2005-05-28T04:27:37Z,1387,408,2005-05-30T07:52:37Z,1,2020-02-15T06:59:37Z +527,2005-05-28T04:28:38Z,266,169,2005-06-02T08:19:38Z,1,2020-02-15T06:59:37Z +528,2005-05-28T04:30:05Z,1655,359,2005-06-03T10:01:05Z,2,2020-02-15T06:59:37Z +529,2005-05-28T04:34:17Z,2624,469,2005-05-30T00:35:17Z,1,2020-02-15T06:59:37Z +530,2005-05-28T05:13:01Z,3332,312,2005-06-01T10:21:01Z,2,2020-02-15T06:59:37Z +531,2005-05-28T05:23:38Z,1113,589,2005-05-29T08:00:38Z,2,2020-02-15T06:59:37Z +532,2005-05-28T05:36:58Z,2793,120,2005-06-02T01:50:58Z,1,2020-02-15T06:59:37Z +533,2005-05-28T06:14:46Z,4306,528,2005-06-01T06:26:46Z,2,2020-02-15T06:59:37Z +534,2005-05-28T06:15:25Z,992,184,2005-06-06T07:51:25Z,1,2020-02-15T06:59:37Z +535,2005-05-28T06:16:32Z,4209,307,2005-05-31T02:48:32Z,1,2020-02-15T06:59:37Z +536,2005-05-28T06:17:33Z,2962,514,2005-06-03T10:02:33Z,2,2020-02-15T06:59:37Z +537,2005-05-28T06:20:55Z,3095,315,2005-06-05T11:48:55Z,2,2020-02-15T06:59:37Z +538,2005-05-28T06:21:05Z,2262,110,2005-06-02T01:22:05Z,2,2020-02-15T06:59:37Z +539,2005-05-28T06:26:16Z,3427,161,2005-05-30T02:02:16Z,1,2020-02-15T06:59:37Z +540,2005-05-28T06:40:25Z,3321,119,2005-06-06T00:47:25Z,1,2020-02-15T06:59:37Z +541,2005-05-28T06:41:58Z,1662,535,2005-06-02T09:12:58Z,2,2020-02-15T06:59:37Z +542,2005-05-28T06:42:13Z,4444,261,2005-06-03T09:05:13Z,1,2020-02-15T06:59:37Z +543,2005-05-28T06:43:34Z,530,493,2005-06-06T07:16:34Z,2,2020-02-15T06:59:37Z +544,2005-05-28T07:03:00Z,2964,311,2005-06-06T06:23:00Z,1,2020-02-15T06:59:37Z +545,2005-05-28T07:10:20Z,1086,54,2005-06-04T01:47:20Z,2,2020-02-15T06:59:37Z +546,2005-05-28T07:16:25Z,487,20,2005-06-01T08:36:25Z,1,2020-02-15T06:59:37Z +547,2005-05-28T07:24:28Z,2065,506,2005-06-06T01:31:28Z,2,2020-02-15T06:59:37Z +548,2005-05-28T07:34:56Z,3704,450,2005-06-05T03:14:56Z,2,2020-02-15T06:59:37Z +549,2005-05-28T07:35:37Z,1818,159,2005-06-02T09:08:37Z,1,2020-02-15T06:59:37Z +550,2005-05-28T07:39:16Z,3632,432,2005-06-06T12:20:16Z,2,2020-02-15T06:59:37Z +551,2005-05-28T07:44:18Z,3119,315,2005-06-02T12:55:18Z,2,2020-02-15T06:59:37Z +552,2005-05-28T07:53:38Z,23,106,2005-06-04T12:45:38Z,2,2020-02-15T06:59:37Z +553,2005-05-28T08:14:44Z,1349,176,2005-06-02T03:01:44Z,2,2020-02-15T06:59:37Z +554,2005-05-28T08:23:16Z,1951,376,2005-05-31T03:29:16Z,2,2020-02-15T06:59:37Z +555,2005-05-28T08:31:14Z,4397,55,2005-05-30T07:34:14Z,2,2020-02-15T06:59:37Z +556,2005-05-28T08:31:36Z,1814,22,2005-06-06T07:29:36Z,2,2020-02-15T06:59:37Z +557,2005-05-28T08:36:22Z,158,444,2005-06-03T10:42:22Z,2,2020-02-15T06:59:37Z +558,2005-05-28T08:38:43Z,4163,442,2005-06-06T13:52:43Z,1,2020-02-15T06:59:37Z +559,2005-05-28T08:39:02Z,1227,572,2005-06-05T08:38:02Z,2,2020-02-15T06:59:37Z +560,2005-05-28T08:53:02Z,644,463,2005-06-04T12:27:02Z,2,2020-02-15T06:59:37Z +561,2005-05-28T08:54:06Z,928,77,2005-06-05T05:54:06Z,1,2020-02-15T06:59:37Z +562,2005-05-28T09:01:21Z,3390,102,2005-06-02T05:26:21Z,2,2020-02-15T06:59:37Z +563,2005-05-28T09:10:49Z,53,324,2005-06-06T11:32:49Z,1,2020-02-15T06:59:37Z +564,2005-05-28T09:12:09Z,2973,282,2005-05-29T05:07:09Z,1,2020-02-15T06:59:37Z +565,2005-05-28T09:26:31Z,1494,288,2005-06-01T07:28:31Z,1,2020-02-15T06:59:37Z +566,2005-05-28T09:51:39Z,4330,253,2005-06-05T09:35:39Z,1,2020-02-15T06:59:37Z +567,2005-05-28T09:56:20Z,3308,184,2005-06-01T06:41:20Z,2,2020-02-15T06:59:37Z +568,2005-05-28T09:57:36Z,2232,155,2005-05-31T15:44:36Z,1,2020-02-15T06:59:37Z +569,2005-05-28T10:12:41Z,4534,56,2005-06-03T10:08:41Z,2,2020-02-15T06:59:37Z +570,2005-05-28T10:15:04Z,1122,21,2005-05-30T08:32:04Z,1,2020-02-15T06:59:37Z +571,2005-05-28T10:17:41Z,4250,516,2005-06-05T07:56:41Z,1,2020-02-15T06:59:37Z +572,2005-05-28T10:30:13Z,1899,337,2005-06-02T05:04:13Z,2,2020-02-15T06:59:37Z +573,2005-05-28T10:35:23Z,4020,1,2005-06-03T06:32:23Z,1,2020-02-15T06:59:37Z +574,2005-05-28T10:44:28Z,3883,76,2005-06-04T11:42:28Z,1,2020-02-15T06:59:37Z +575,2005-05-28T10:56:09Z,4451,142,2005-06-05T15:39:09Z,1,2020-02-15T06:59:37Z +576,2005-05-28T10:56:10Z,1866,588,2005-06-04T13:15:10Z,2,2020-02-15T06:59:37Z +577,2005-05-28T11:09:14Z,375,6,2005-06-01T13:27:14Z,2,2020-02-15T06:59:37Z +578,2005-05-28T11:15:48Z,2938,173,2005-06-02T09:59:48Z,1,2020-02-15T06:59:37Z +579,2005-05-28T11:19:23Z,3481,181,2005-06-02T13:51:23Z,1,2020-02-15T06:59:37Z +580,2005-05-28T11:19:53Z,3515,17,2005-06-01T10:44:53Z,2,2020-02-15T06:59:37Z +581,2005-05-28T11:20:29Z,1380,186,2005-06-04T12:37:29Z,2,2020-02-15T06:59:37Z +582,2005-05-28T11:33:46Z,4579,198,2005-05-29T08:33:46Z,1,2020-02-15T06:59:37Z +583,2005-05-28T11:48:55Z,2679,386,2005-06-04T07:09:55Z,2,2020-02-15T06:59:37Z +584,2005-05-28T11:49:00Z,1833,69,2005-06-01T11:54:00Z,1,2020-02-15T06:59:37Z +585,2005-05-28T11:50:45Z,3544,490,2005-06-03T15:35:45Z,2,2020-02-15T06:59:37Z +586,2005-05-28T12:03:00Z,898,77,2005-05-29T13:16:00Z,1,2020-02-15T06:59:37Z +587,2005-05-28T12:05:33Z,1413,64,2005-05-30T13:45:33Z,2,2020-02-15T06:59:37Z +588,2005-05-28T12:08:37Z,95,89,2005-05-29T16:25:37Z,2,2020-02-15T06:59:37Z +589,2005-05-28T12:27:50Z,4231,308,2005-06-03T07:15:50Z,2,2020-02-15T06:59:37Z +590,2005-05-28T13:06:50Z,473,462,2005-06-02T09:18:50Z,1,2020-02-15T06:59:37Z +591,2005-05-28T13:11:04Z,377,19,2005-05-29T17:20:04Z,2,2020-02-15T06:59:37Z +592,2005-05-28T13:21:08Z,638,244,2005-05-29T16:55:08Z,1,2020-02-15T06:59:37Z +593,2005-05-28T13:33:23Z,1810,16,2005-05-30T17:10:23Z,2,2020-02-15T06:59:37Z +594,2005-05-28T13:41:56Z,2766,538,2005-05-30T12:00:56Z,1,2020-02-15T06:59:37Z +595,2005-05-28T13:59:54Z,595,294,2005-06-05T15:16:54Z,1,2020-02-15T06:59:37Z +596,2005-05-28T14:00:03Z,821,589,2005-05-29T17:10:03Z,1,2020-02-15T06:59:37Z +597,2005-05-28T14:01:02Z,4469,249,2005-06-06T19:06:02Z,2,2020-02-15T06:59:37Z +598,2005-05-28T14:04:50Z,599,159,2005-06-03T18:00:50Z,2,2020-02-15T06:59:37Z +599,2005-05-28T14:05:57Z,4136,393,2005-06-01T16:41:57Z,2,2020-02-15T06:59:37Z +600,2005-05-28T14:08:19Z,1567,332,2005-06-03T11:57:19Z,2,2020-02-15T06:59:37Z +601,2005-05-28T14:08:22Z,3225,429,2005-06-04T10:50:22Z,1,2020-02-15T06:59:37Z +602,2005-05-28T14:15:54Z,1300,590,2005-06-05T15:16:54Z,2,2020-02-15T06:59:37Z +603,2005-05-28T14:27:51Z,3248,537,2005-05-29T13:13:51Z,1,2020-02-15T06:59:37Z +604,2005-05-28T14:37:07Z,1585,426,2005-06-03T11:03:07Z,2,2020-02-15T06:59:37Z +605,2005-05-28T14:39:10Z,4232,501,2005-06-01T09:28:10Z,2,2020-02-15T06:59:37Z +606,2005-05-28T14:48:39Z,3509,299,2005-06-04T09:44:39Z,2,2020-02-15T06:59:37Z +607,2005-05-28T15:02:41Z,2561,554,2005-05-30T12:54:41Z,2,2020-02-15T06:59:37Z +608,2005-05-28T15:03:44Z,4254,494,2005-06-04T17:14:44Z,2,2020-02-15T06:59:37Z +609,2005-05-28T15:04:02Z,2944,150,2005-06-05T14:47:02Z,2,2020-02-15T06:59:37Z +610,2005-05-28T15:15:25Z,3642,500,2005-06-02T12:30:25Z,2,2020-02-15T06:59:37Z +611,2005-05-28T15:18:18Z,1230,580,2005-05-31T20:15:18Z,2,2020-02-15T06:59:37Z +612,2005-05-28T15:24:54Z,2180,161,2005-05-30T14:22:54Z,2,2020-02-15T06:59:37Z +613,2005-05-28T15:27:22Z,270,595,2005-06-02T20:01:22Z,1,2020-02-15T06:59:37Z +614,2005-05-28T15:33:28Z,280,307,2005-06-04T12:27:28Z,2,2020-02-15T06:59:37Z +615,2005-05-28T15:35:52Z,3397,533,2005-06-03T17:35:52Z,2,2020-02-15T06:59:37Z +616,2005-05-28T15:45:39Z,989,471,2005-06-02T09:55:39Z,1,2020-02-15T06:59:37Z +617,2005-05-28T15:49:14Z,4142,372,2005-05-31T14:29:14Z,2,2020-02-15T06:59:37Z +618,2005-05-28T15:50:07Z,4445,248,2005-06-01T19:45:07Z,1,2020-02-15T06:59:37Z +619,2005-05-28T15:52:26Z,2482,407,2005-06-06T17:55:26Z,2,2020-02-15T06:59:37Z +620,2005-05-28T15:54:45Z,2444,321,2005-06-04T20:26:45Z,1,2020-02-15T06:59:37Z +621,2005-05-28T15:58:12Z,1144,239,2005-05-30T21:54:12Z,1,2020-02-15T06:59:37Z +622,2005-05-28T15:58:22Z,2363,109,2005-06-04T10:13:22Z,1,2020-02-15T06:59:37Z +623,2005-05-28T16:01:28Z,1222,495,2005-05-30T11:19:28Z,1,2020-02-15T06:59:37Z +624,2005-05-28T16:13:22Z,3660,569,2005-06-06T20:35:22Z,1,2020-02-15T06:59:37Z +625,2005-05-28T16:35:46Z,2889,596,2005-06-01T14:19:46Z,1,2020-02-15T06:59:37Z +626,2005-05-28T16:58:09Z,452,584,2005-06-01T14:02:09Z,2,2020-02-15T06:59:37Z +627,2005-05-28T17:04:43Z,425,241,2005-06-04T19:58:43Z,2,2020-02-15T06:59:37Z +628,2005-05-28T17:05:46Z,2513,173,2005-06-06T16:29:46Z,2,2020-02-15T06:59:37Z +629,2005-05-28T17:19:15Z,1527,94,2005-06-02T20:01:15Z,2,2020-02-15T06:59:37Z +630,2005-05-28T17:24:51Z,1254,417,2005-06-05T20:05:51Z,2,2020-02-15T06:59:37Z +631,2005-05-28T17:36:32Z,2465,503,2005-06-03T14:56:32Z,2,2020-02-15T06:59:37Z +632,2005-05-28T17:37:50Z,1287,442,2005-06-03T16:04:50Z,1,2020-02-15T06:59:37Z +633,2005-05-28T17:37:59Z,58,360,2005-06-03T22:49:59Z,2,2020-02-15T06:59:37Z +634,2005-05-28T17:40:35Z,2630,428,2005-06-05T16:18:35Z,2,2020-02-15T06:59:37Z +635,2005-05-28T17:46:57Z,1648,42,2005-06-06T18:24:57Z,1,2020-02-15T06:59:37Z +636,2005-05-28T17:47:58Z,4213,239,2005-06-04T16:32:58Z,1,2020-02-15T06:59:37Z +637,2005-05-28T18:14:29Z,1581,250,2005-05-29T23:48:29Z,2,2020-02-15T06:59:37Z +638,2005-05-28T18:24:43Z,2685,372,2005-06-02T19:03:43Z,2,2020-02-15T06:59:37Z +639,2005-05-28T18:25:02Z,4204,198,2005-05-29T18:22:02Z,1,2020-02-15T06:59:37Z +640,2005-05-28T18:43:26Z,495,465,2005-05-30T13:39:26Z,1,2020-02-15T06:59:37Z +641,2005-05-28T18:45:47Z,3548,396,2005-06-04T15:24:47Z,1,2020-02-15T06:59:37Z +642,2005-05-28T18:49:12Z,140,157,2005-06-01T20:50:12Z,2,2020-02-15T06:59:37Z +643,2005-05-28T18:52:11Z,3105,240,2005-05-31T15:15:11Z,2,2020-02-15T06:59:37Z +644,2005-05-28T18:59:12Z,4304,316,2005-06-04T18:06:12Z,1,2020-02-15T06:59:37Z +645,2005-05-28T19:14:09Z,3128,505,2005-06-05T14:01:09Z,1,2020-02-15T06:59:37Z +646,2005-05-28T19:16:14Z,1922,185,2005-05-31T16:50:14Z,2,2020-02-15T06:59:37Z +647,2005-05-28T19:22:52Z,3435,569,2005-06-01T00:10:52Z,1,2020-02-15T06:59:37Z +648,2005-05-28T19:25:54Z,3476,253,2005-06-03T15:57:54Z,2,2020-02-15T06:59:37Z +649,2005-05-28T19:35:45Z,1781,197,2005-06-05T16:00:45Z,1,2020-02-15T06:59:37Z +650,2005-05-28T19:45:40Z,4384,281,2005-05-29T21:02:40Z,1,2020-02-15T06:59:37Z +651,2005-05-28T19:46:50Z,739,266,2005-05-30T16:29:50Z,1,2020-02-15T06:59:37Z +652,2005-05-28T20:08:47Z,1201,43,2005-05-29T14:57:47Z,2,2020-02-15T06:59:37Z +653,2005-05-28T20:12:20Z,126,327,2005-06-04T14:44:20Z,2,2020-02-15T06:59:37Z +654,2005-05-28T20:15:30Z,2312,23,2005-05-30T22:02:30Z,2,2020-02-15T06:59:37Z +655,2005-05-28T20:16:20Z,331,287,2005-05-31T16:46:20Z,2,2020-02-15T06:59:37Z +656,2005-05-28T20:18:24Z,2846,437,2005-05-30T16:19:24Z,1,2020-02-15T06:59:37Z +657,2005-05-28T20:23:09Z,848,65,2005-06-01T02:11:09Z,1,2020-02-15T06:59:37Z +658,2005-05-28T20:23:23Z,3226,103,2005-06-06T19:31:23Z,2,2020-02-15T06:59:37Z +659,2005-05-28T20:27:53Z,1382,207,2005-05-31T01:36:53Z,2,2020-02-15T06:59:37Z +660,2005-05-28T20:53:31Z,1414,578,2005-05-30T15:26:31Z,1,2020-02-15T06:59:37Z +661,2005-05-28T21:01:25Z,2247,51,2005-06-02T01:22:25Z,2,2020-02-15T06:59:37Z +662,2005-05-28T21:09:31Z,2968,166,2005-06-01T19:00:31Z,2,2020-02-15T06:59:37Z +663,2005-05-28T21:23:02Z,3997,176,2005-06-02T17:39:02Z,2,2020-02-15T06:59:37Z +664,2005-05-28T21:31:08Z,87,523,2005-06-02T20:56:08Z,2,2020-02-15T06:59:37Z +665,2005-05-28T21:38:39Z,1012,415,2005-05-29T21:37:39Z,1,2020-02-15T06:59:37Z +666,2005-05-28T21:48:51Z,3075,437,2005-06-05T16:45:51Z,2,2020-02-15T06:59:37Z +667,2005-05-28T21:49:02Z,797,596,2005-05-31T03:07:02Z,1,2020-02-15T06:59:37Z +668,2005-05-28T21:54:45Z,3528,484,2005-05-29T22:32:45Z,1,2020-02-15T06:59:37Z +669,2005-05-28T22:03:25Z,3677,313,2005-06-03T03:39:25Z,1,2020-02-15T06:59:37Z +670,2005-05-28T22:04:03Z,227,201,2005-06-06T22:43:03Z,2,2020-02-15T06:59:37Z +671,2005-05-28T22:04:30Z,1027,14,2005-06-03T01:21:30Z,2,2020-02-15T06:59:37Z +672,2005-05-28T22:05:29Z,697,306,2005-06-06T02:10:29Z,2,2020-02-15T06:59:37Z +673,2005-05-28T22:07:30Z,1769,468,2005-06-01T23:42:30Z,1,2020-02-15T06:59:37Z +674,2005-05-28T22:11:35Z,1150,87,2005-06-01T23:58:35Z,2,2020-02-15T06:59:37Z +675,2005-05-28T22:22:44Z,1273,338,2005-06-01T02:57:44Z,2,2020-02-15T06:59:37Z +676,2005-05-28T22:27:51Z,2329,490,2005-05-29T20:36:51Z,2,2020-02-15T06:59:37Z +677,2005-05-28T23:00:08Z,4558,194,2005-06-05T19:11:08Z,2,2020-02-15T06:59:37Z +678,2005-05-28T23:15:48Z,3741,269,2005-06-03T04:43:48Z,2,2020-02-15T06:59:37Z +679,2005-05-28T23:24:57Z,907,526,2005-06-06T21:59:57Z,2,2020-02-15T06:59:37Z +680,2005-05-28T23:27:26Z,4147,482,2005-06-02T02:28:26Z,2,2020-02-15T06:59:37Z +681,2005-05-28T23:39:44Z,3346,531,2005-06-01T01:42:44Z,1,2020-02-15T06:59:37Z +682,2005-05-28T23:53:18Z,3160,148,2005-05-29T19:14:18Z,2,2020-02-15T06:59:37Z +683,2005-05-29T00:09:48Z,2038,197,2005-06-02T04:27:48Z,1,2020-02-15T06:59:37Z +684,2005-05-29T00:13:15Z,3242,461,2005-06-04T21:26:15Z,2,2020-02-15T06:59:37Z +685,2005-05-29T00:17:51Z,1385,172,2005-06-05T05:32:51Z,2,2020-02-15T06:59:37Z +686,2005-05-29T00:27:10Z,2441,411,2005-05-30T02:29:10Z,1,2020-02-15T06:59:37Z +687,2005-05-29T00:32:09Z,1731,250,2005-05-31T23:53:09Z,1,2020-02-15T06:59:37Z +688,2005-05-29T00:45:24Z,4135,162,2005-06-02T01:30:24Z,1,2020-02-15T06:59:37Z +689,2005-05-29T00:46:53Z,742,571,2005-06-03T23:48:53Z,2,2020-02-15T06:59:37Z +690,2005-05-29T00:54:53Z,2646,85,2005-06-06T00:45:53Z,1,2020-02-15T06:59:37Z +691,2005-05-29T01:01:26Z,4034,433,2005-06-07T06:21:26Z,1,2020-02-15T06:59:37Z +692,2005-05-29T01:32:10Z,800,18,2005-06-02T03:54:10Z,2,2020-02-15T06:59:37Z +693,2005-05-29T01:42:31Z,635,190,2005-06-03T02:29:31Z,2,2020-02-15T06:59:37Z +694,2005-05-29T01:49:43Z,592,399,2005-06-05T06:52:43Z,1,2020-02-15T06:59:37Z +695,2005-05-29T01:50:53Z,4276,528,2005-06-03T02:28:53Z,1,2020-02-15T06:59:37Z +696,2005-05-29T01:59:10Z,2076,19,2005-06-01T02:45:10Z,1,2020-02-15T06:59:37Z +697,2005-05-29T02:04:04Z,3949,387,2005-06-04T00:47:04Z,2,2020-02-15T06:59:37Z +698,2005-05-29T02:10:52Z,1412,109,2005-06-01T21:52:52Z,1,2020-02-15T06:59:37Z +699,2005-05-29T02:11:44Z,130,246,2005-06-04T20:23:44Z,2,2020-02-15T06:59:37Z +700,2005-05-29T02:18:54Z,500,117,2005-05-30T05:54:54Z,1,2020-02-15T06:59:37Z +701,2005-05-29T02:26:27Z,372,112,2005-06-03T04:59:27Z,1,2020-02-15T06:59:37Z +702,2005-05-29T02:27:30Z,2556,475,2005-05-30T01:52:30Z,2,2020-02-15T06:59:37Z +703,2005-05-29T02:29:36Z,1123,269,2005-06-03T04:54:36Z,2,2020-02-15T06:59:37Z +704,2005-05-29T02:44:43Z,2628,330,2005-06-06T01:51:43Z,2,2020-02-15T06:59:37Z +705,2005-05-29T02:48:52Z,2809,257,2005-05-30T06:21:52Z,1,2020-02-15T06:59:37Z +706,2005-05-29T03:05:49Z,2278,60,2005-06-04T22:48:49Z,1,2020-02-15T06:59:37Z +707,2005-05-29T03:18:19Z,819,252,2005-05-30T02:45:19Z,1,2020-02-15T06:59:37Z +708,2005-05-29T03:23:47Z,3133,127,2005-05-31T21:27:47Z,2,2020-02-15T06:59:37Z +709,2005-05-29T03:48:01Z,2459,479,2005-06-06T05:21:01Z,1,2020-02-15T06:59:37Z +710,2005-05-29T03:48:36Z,194,518,2005-06-03T05:03:36Z,1,2020-02-15T06:59:37Z +711,2005-05-29T03:49:03Z,4581,215,2005-05-31T08:29:03Z,2,2020-02-15T06:59:37Z +712,2005-05-29T04:02:24Z,4191,313,2005-05-30T03:09:24Z,2,2020-02-15T06:59:37Z +713,2005-05-29T04:10:17Z,3664,507,2005-06-07T07:13:17Z,1,2020-02-15T06:59:37Z +714,2005-05-29T04:15:21Z,2010,452,2005-06-01T23:05:21Z,2,2020-02-15T06:59:37Z +715,2005-05-29T04:22:41Z,2030,545,2005-06-05T09:28:41Z,1,2020-02-15T06:59:37Z +716,2005-05-29T04:35:29Z,85,36,2005-06-01T07:42:29Z,2,2020-02-15T06:59:37Z +717,2005-05-29T04:37:44Z,1383,412,2005-05-30T05:48:44Z,2,2020-02-15T06:59:37Z +718,2005-05-29T04:52:23Z,1736,498,2005-06-02T02:27:23Z,1,2020-02-15T06:59:37Z +719,2005-05-29T05:16:05Z,267,245,2005-06-01T07:53:05Z,2,2020-02-15T06:59:37Z +720,2005-05-29T05:17:30Z,3687,480,2005-06-06T02:47:30Z,2,2020-02-15T06:59:37Z +721,2005-05-29T05:28:47Z,1116,44,2005-05-31T11:24:47Z,1,2020-02-15T06:59:37Z +722,2005-05-29T05:30:31Z,4540,259,2005-06-06T04:51:31Z,1,2020-02-15T06:59:37Z +723,2005-05-29T05:34:44Z,3407,309,2005-05-30T05:50:44Z,1,2020-02-15T06:59:37Z +724,2005-05-29T05:53:23Z,3770,416,2005-06-05T04:01:23Z,2,2020-02-15T06:59:37Z +725,2005-05-29T06:03:41Z,4088,245,2005-06-03T08:52:41Z,2,2020-02-15T06:59:37Z +726,2005-05-29T06:05:29Z,933,452,2005-06-05T04:40:29Z,2,2020-02-15T06:59:37Z +727,2005-05-29T06:08:15Z,1629,484,2005-05-30T07:16:15Z,1,2020-02-15T06:59:37Z +728,2005-05-29T06:12:38Z,242,551,2005-06-03T07:41:38Z,1,2020-02-15T06:59:37Z +729,2005-05-29T06:35:13Z,1688,323,2005-06-04T03:23:13Z,2,2020-02-15T06:59:37Z +730,2005-05-29T07:00:59Z,3473,197,2005-06-06T01:17:59Z,1,2020-02-15T06:59:37Z +731,2005-05-29T07:25:16Z,4124,5,2005-05-30T05:21:16Z,1,2020-02-15T06:59:37Z +732,2005-05-29T07:32:51Z,2530,447,2005-05-30T10:08:51Z,2,2020-02-15T06:59:37Z +733,2005-05-29T07:35:21Z,2951,363,2005-06-05T09:14:21Z,1,2020-02-15T06:59:37Z +734,2005-05-29T07:38:52Z,3084,538,2005-06-03T10:17:52Z,2,2020-02-15T06:59:37Z +735,2005-05-29T08:08:13Z,3421,454,2005-06-07T13:35:13Z,1,2020-02-15T06:59:37Z +736,2005-05-29T08:10:07Z,3689,276,2005-06-05T10:21:07Z,2,2020-02-15T06:59:37Z +737,2005-05-29T08:11:31Z,769,589,2005-06-04T11:18:31Z,2,2020-02-15T06:59:37Z +738,2005-05-29T08:20:08Z,2284,256,2005-06-06T08:59:08Z,2,2020-02-15T06:59:37Z +739,2005-05-29T08:28:18Z,1183,84,2005-06-06T09:21:18Z,2,2020-02-15T06:59:37Z +740,2005-05-29T08:30:36Z,600,89,2005-06-04T12:47:36Z,2,2020-02-15T06:59:37Z +741,2005-05-29T08:35:49Z,3189,495,2005-06-04T11:55:49Z,1,2020-02-15T06:59:37Z +742,2005-05-29T08:36:30Z,273,483,2005-06-05T11:30:30Z,1,2020-02-15T06:59:37Z +743,2005-05-29T08:39:02Z,2528,548,2005-06-06T08:42:02Z,2,2020-02-15T06:59:37Z +744,2005-05-29T09:13:08Z,3722,420,2005-06-01T07:05:08Z,2,2020-02-15T06:59:37Z +745,2005-05-29T09:22:57Z,581,152,2005-06-01T09:10:57Z,1,2020-02-15T06:59:37Z +746,2005-05-29T09:25:10Z,4272,130,2005-06-02T04:20:10Z,2,2020-02-15T06:59:37Z +747,2005-05-29T09:26:34Z,1993,291,2005-06-05T07:28:34Z,1,2020-02-15T06:59:37Z +748,2005-05-29T09:27:00Z,2803,7,2005-06-03T04:25:00Z,1,2020-02-15T06:59:37Z +749,2005-05-29T09:33:33Z,1146,375,2005-05-31T11:45:33Z,2,2020-02-15T06:59:37Z +750,2005-05-29T09:41:40Z,730,269,2005-05-30T13:31:40Z,1,2020-02-15T06:59:37Z +751,2005-05-29T09:55:43Z,2711,53,2005-06-02T04:54:43Z,1,2020-02-15T06:59:37Z +752,2005-05-29T10:14:15Z,1720,126,2005-06-04T06:30:15Z,1,2020-02-15T06:59:37Z +753,2005-05-29T10:16:42Z,1021,135,2005-06-05T08:52:42Z,2,2020-02-15T06:59:37Z +754,2005-05-29T10:18:59Z,734,281,2005-06-04T05:03:59Z,2,2020-02-15T06:59:37Z +755,2005-05-29T10:26:29Z,3090,576,2005-06-01T10:25:29Z,2,2020-02-15T06:59:37Z +756,2005-05-29T10:28:45Z,3152,201,2005-06-04T12:50:45Z,1,2020-02-15T06:59:37Z +757,2005-05-29T10:29:47Z,1067,435,2005-06-07T15:27:47Z,1,2020-02-15T06:59:37Z +758,2005-05-29T10:31:56Z,1191,563,2005-06-01T14:53:56Z,2,2020-02-15T06:59:37Z +759,2005-05-29T10:57:57Z,2367,179,2005-06-07T16:23:57Z,2,2020-02-15T06:59:37Z +760,2005-05-29T11:07:25Z,3250,77,2005-06-02T14:16:25Z,1,2020-02-15T06:59:37Z +761,2005-05-29T11:09:01Z,2342,58,2005-06-03T16:18:01Z,2,2020-02-15T06:59:37Z +762,2005-05-29T11:15:51Z,3683,146,2005-06-06T07:48:51Z,1,2020-02-15T06:59:37Z +763,2005-05-29T11:32:15Z,2022,50,2005-05-31T17:31:15Z,1,2020-02-15T06:59:37Z +764,2005-05-29T11:37:35Z,1069,149,2005-05-31T16:47:35Z,1,2020-02-15T06:59:37Z +765,2005-05-29T11:38:34Z,515,69,2005-06-02T17:04:34Z,1,2020-02-15T06:59:37Z +766,2005-05-29T11:47:02Z,2154,383,2005-06-06T07:14:02Z,1,2020-02-15T06:59:37Z +767,2005-05-29T12:20:19Z,687,67,2005-06-02T14:15:19Z,2,2020-02-15T06:59:37Z +768,2005-05-29T12:30:46Z,2895,566,2005-06-07T09:00:46Z,2,2020-02-15T06:59:37Z +769,2005-05-29T12:51:44Z,1523,575,2005-06-01T17:43:44Z,1,2020-02-15T06:59:37Z +770,2005-05-29T12:56:50Z,2491,405,2005-06-07T15:54:50Z,2,2020-02-15T06:59:37Z +771,2005-05-29T12:59:14Z,353,476,2005-06-01T16:05:14Z,2,2020-02-15T06:59:37Z +772,2005-05-29T13:08:06Z,3319,556,2005-06-06T08:19:06Z,1,2020-02-15T06:59:37Z +773,2005-05-29T13:18:05Z,245,563,2005-06-07T17:22:05Z,1,2020-02-15T06:59:37Z +774,2005-05-29T13:19:43Z,1188,575,2005-06-01T18:51:43Z,1,2020-02-15T06:59:37Z +775,2005-05-29T13:23:26Z,1197,124,2005-05-30T07:53:26Z,2,2020-02-15T06:59:37Z +776,2005-05-29T13:35:35Z,4339,113,2005-06-03T17:33:35Z,1,2020-02-15T06:59:37Z +777,2005-05-29T14:07:58Z,451,360,2005-06-03T08:41:58Z,2,2020-02-15T06:59:37Z +778,2005-05-29T14:09:53Z,1816,535,2005-06-05T20:05:53Z,1,2020-02-15T06:59:37Z +779,2005-05-29T14:17:17Z,533,105,2005-06-06T16:46:17Z,1,2020-02-15T06:59:37Z +780,2005-05-29T14:18:32Z,1919,300,2005-06-06T20:14:32Z,1,2020-02-15T06:59:37Z +781,2005-05-29T14:23:58Z,88,313,2005-05-30T17:44:58Z,1,2020-02-15T06:59:37Z +782,2005-05-29T14:38:57Z,2255,596,2005-06-02T13:18:57Z,2,2020-02-15T06:59:37Z +783,2005-05-29T14:41:18Z,3046,53,2005-06-06T10:39:18Z,2,2020-02-15T06:59:37Z +784,2005-05-29T14:44:22Z,2936,352,2005-06-01T17:28:22Z,2,2020-02-15T06:59:37Z +785,2005-05-29T15:08:41Z,39,72,2005-05-30T15:51:41Z,1,2020-02-15T06:59:37Z +786,2005-05-29T15:17:28Z,2637,439,2005-06-07T10:07:28Z,2,2020-02-15T06:59:37Z +787,2005-05-29T16:03:03Z,3919,27,2005-06-07T11:07:03Z,2,2020-02-15T06:59:37Z +788,2005-05-29T16:13:55Z,763,562,2005-05-31T16:40:55Z,1,2020-02-15T06:59:37Z +789,2005-05-29T16:17:07Z,708,553,2005-06-06T18:15:07Z,1,2020-02-15T06:59:37Z +790,2005-05-29T16:19:29Z,2858,593,2005-06-02T17:22:29Z,2,2020-02-15T06:59:37Z +791,2005-05-29T16:30:42Z,1554,284,2005-06-01T19:11:42Z,1,2020-02-15T06:59:37Z +792,2005-05-29T16:32:10Z,2841,261,2005-05-31T18:01:10Z,1,2020-02-15T06:59:37Z +793,2005-05-29T16:44:08Z,379,528,2005-06-06T19:21:08Z,2,2020-02-15T06:59:37Z +794,2005-05-29T16:44:11Z,1995,50,2005-06-05T16:11:11Z,1,2020-02-15T06:59:37Z +795,2005-05-29T16:57:39Z,609,551,2005-06-01T11:33:39Z,2,2020-02-15T06:59:37Z +796,2005-05-29T16:59:44Z,2697,26,2005-06-03T16:22:44Z,2,2020-02-15T06:59:37Z +797,2005-05-29T17:12:17Z,1446,244,2005-06-03T16:06:17Z,1,2020-02-15T06:59:37Z +798,2005-05-29T17:23:43Z,1102,134,2005-06-01T13:06:43Z,2,2020-02-15T06:59:37Z +799,2005-05-29T17:24:48Z,1713,429,2005-06-05T12:25:48Z,1,2020-02-15T06:59:37Z +800,2005-05-29T17:28:12Z,441,472,2005-05-30T14:59:12Z,1,2020-02-15T06:59:37Z +801,2005-05-29T17:35:50Z,1642,402,2005-06-04T17:05:50Z,2,2020-02-15T06:59:37Z +802,2005-05-29T17:38:59Z,785,350,2005-05-31T22:42:59Z,2,2020-02-15T06:59:37Z +803,2005-05-29T17:52:30Z,1602,32,2005-05-30T14:35:30Z,2,2020-02-15T06:59:37Z +804,2005-05-29T18:10:24Z,3909,171,2005-06-06T22:53:24Z,1,2020-02-15T06:59:37Z +805,2005-05-29T18:18:18Z,3132,232,2005-06-07T15:11:18Z,2,2020-02-15T06:59:37Z +806,2005-05-29T18:31:30Z,2386,435,2005-05-31T00:18:30Z,2,2020-02-15T06:59:37Z +807,2005-05-29T18:50:50Z,2195,235,2005-06-03T18:36:50Z,2,2020-02-15T06:59:37Z +808,2005-05-29T19:08:20Z,1928,104,2005-06-06T20:32:20Z,2,2020-02-15T06:59:37Z +809,2005-05-29T19:10:20Z,2114,222,2005-06-05T19:05:20Z,2,2020-02-15T06:59:37Z +810,2005-05-29T19:12:04Z,2533,346,2005-06-04T21:12:04Z,2,2020-02-15T06:59:37Z +811,2005-05-29T19:30:42Z,4419,401,2005-06-02T16:19:42Z,2,2020-02-15T06:59:37Z +812,2005-05-29T20:00:30Z,1099,225,2005-05-30T19:43:30Z,2,2020-02-15T06:59:37Z +813,2005-05-29T20:14:34Z,4554,344,2005-06-05T20:56:34Z,1,2020-02-15T06:59:37Z +814,2005-05-29T20:16:12Z,1572,134,2005-06-07T17:47:12Z,1,2020-02-15T06:59:37Z +815,2005-05-29T20:24:28Z,3757,14,2005-06-03T15:32:28Z,1,2020-02-15T06:59:37Z +816,2005-05-29T20:26:39Z,630,474,2005-06-06T22:31:39Z,2,2020-02-15T06:59:37Z +817,2005-05-29T20:39:14Z,186,554,2005-05-31T18:24:14Z,1,2020-02-15T06:59:37Z +818,2005-05-29T20:47:53Z,4106,321,2005-06-02T23:18:53Z,2,2020-02-15T06:59:37Z +819,2005-05-29T21:00:32Z,623,511,2005-06-02T15:15:32Z,2,2020-02-15T06:59:37Z +820,2005-05-29T21:07:22Z,2584,22,2005-06-07T00:22:22Z,2,2020-02-15T06:59:37Z +821,2005-05-29T21:31:12Z,3380,348,2005-06-04T22:49:12Z,1,2020-02-15T06:59:37Z +822,2005-05-29T21:36:00Z,2634,480,2005-06-07T17:24:00Z,1,2020-02-15T06:59:37Z +823,2005-05-29T21:39:37Z,3249,441,2005-05-30T22:06:37Z,1,2020-02-15T06:59:37Z +824,2005-05-29T21:45:32Z,3518,357,2005-05-31T19:01:32Z,1,2020-02-15T06:59:37Z +825,2005-05-29T21:49:41Z,712,371,2005-06-04T20:27:41Z,2,2020-02-15T06:59:37Z +826,2005-05-29T21:56:15Z,2263,207,2005-06-08T03:18:15Z,1,2020-02-15T06:59:37Z +827,2005-05-29T21:58:43Z,62,573,2005-06-06T00:54:43Z,1,2020-02-15T06:59:37Z +828,2005-05-29T22:14:55Z,2468,217,2005-05-30T17:22:55Z,1,2020-02-15T06:59:37Z +829,2005-05-29T22:16:42Z,1684,371,2005-06-06T01:38:42Z,1,2020-02-15T06:59:37Z +830,2005-05-29T22:43:55Z,3464,3,2005-06-01T17:43:55Z,1,2020-02-15T06:59:37Z +831,2005-05-29T22:50:25Z,3912,509,2005-06-06T02:27:25Z,1,2020-02-15T06:59:37Z +832,2005-05-29T22:51:20Z,1381,159,2005-06-07T17:37:20Z,2,2020-02-15T06:59:37Z +833,2005-05-29T23:21:56Z,2898,417,2005-06-02T18:40:56Z,1,2020-02-15T06:59:37Z +834,2005-05-29T23:24:30Z,3628,84,2005-05-30T22:00:30Z,2,2020-02-15T06:59:37Z +835,2005-05-29T23:37:00Z,299,381,2005-06-02T23:38:00Z,1,2020-02-15T06:59:37Z +836,2005-05-29T23:56:42Z,3140,368,2005-05-31T04:11:42Z,2,2020-02-15T06:59:37Z +837,2005-05-30T00:02:08Z,977,172,2005-06-02T05:31:08Z,2,2020-02-15T06:59:37Z +838,2005-05-30T00:27:57Z,2859,504,2005-06-06T22:19:57Z,2,2020-02-15T06:59:37Z +839,2005-05-30T00:28:12Z,1886,337,2005-06-08T02:43:12Z,1,2020-02-15T06:59:37Z +840,2005-05-30T00:28:41Z,4049,79,2005-05-31T20:39:41Z,2,2020-02-15T06:59:37Z +841,2005-05-30T00:31:17Z,4318,387,2005-06-02T19:14:17Z,1,2020-02-15T06:59:37Z +842,2005-05-30T00:32:04Z,2328,238,2005-06-01T02:21:04Z,1,2020-02-15T06:59:37Z +843,2005-05-30T00:44:24Z,2214,313,2005-05-31T00:58:24Z,2,2020-02-15T06:59:37Z +844,2005-05-30T00:58:20Z,536,429,2005-06-01T00:38:20Z,1,2020-02-15T06:59:37Z +845,2005-05-30T01:17:25Z,2001,72,2005-06-07T02:00:25Z,1,2020-02-15T06:59:37Z +846,2005-05-30T01:17:45Z,938,49,2005-06-01T00:56:45Z,2,2020-02-15T06:59:37Z +847,2005-05-30T01:18:15Z,4387,380,2005-06-06T20:20:15Z,2,2020-02-15T06:59:37Z +848,2005-05-30T01:19:53Z,1363,436,2005-06-05T23:40:53Z,1,2020-02-15T06:59:37Z +849,2005-05-30T01:23:07Z,2424,449,2005-06-07T01:50:07Z,1,2020-02-15T06:59:37Z +850,2005-05-30T01:35:12Z,2390,517,2005-05-31T01:51:12Z,1,2020-02-15T06:59:37Z +851,2005-05-30T01:35:15Z,2780,530,2005-06-06T07:27:15Z,1,2020-02-15T06:59:37Z +852,2005-05-30T01:36:57Z,1622,549,2005-06-01T22:44:57Z,1,2020-02-15T06:59:37Z +853,2005-05-30T01:43:31Z,3693,122,2005-06-01T02:05:31Z,1,2020-02-15T06:59:37Z +854,2005-05-30T01:56:11Z,921,369,2005-06-01T06:34:11Z,2,2020-02-15T06:59:37Z +855,2005-05-30T02:00:28Z,2527,406,2005-06-03T20:16:28Z,2,2020-02-15T06:59:37Z +856,2005-05-30T02:01:21Z,3969,53,2005-06-07T03:25:21Z,1,2020-02-15T06:59:37Z +857,2005-05-30T02:01:23Z,2569,204,2005-06-02T06:07:23Z,2,2020-02-15T06:59:37Z +858,2005-05-30T02:10:32Z,1258,358,2005-06-01T04:42:32Z,1,2020-02-15T06:59:37Z +859,2005-05-30T02:36:20Z,3032,79,2005-06-02T07:49:20Z,2,2020-02-15T06:59:37Z +860,2005-05-30T02:45:16Z,578,276,2005-06-08T07:28:16Z,1,2020-02-15T06:59:37Z +861,2005-05-30T02:48:32Z,3711,502,2005-06-06T05:43:32Z,1,2020-02-15T06:59:37Z +862,2005-05-30T03:09:11Z,1186,328,2005-06-03T21:27:11Z,1,2020-02-15T06:59:37Z +863,2005-05-30T03:14:59Z,3999,379,2005-06-05T04:34:59Z,2,2020-02-15T06:59:37Z +864,2005-05-30T03:27:17Z,2777,544,2005-06-06T08:28:17Z,1,2020-02-15T06:59:37Z +865,2005-05-30T03:39:44Z,3183,154,2005-06-07T08:10:44Z,2,2020-02-15T06:59:37Z +866,2005-05-30T03:43:54Z,2867,8,2005-06-08T04:28:54Z,1,2020-02-15T06:59:37Z +867,2005-05-30T03:54:43Z,3389,99,2005-06-01T22:59:43Z,1,2020-02-15T06:59:37Z +868,2005-05-30T04:19:55Z,3604,28,2005-05-31T02:28:55Z,1,2020-02-15T06:59:37Z +869,2005-05-30T04:22:06Z,3399,296,2005-06-03T09:18:06Z,2,2020-02-15T06:59:37Z +870,2005-05-30T04:25:47Z,2903,391,2005-06-06T04:32:47Z,1,2020-02-15T06:59:37Z +871,2005-05-30T05:01:30Z,4573,303,2005-06-04T06:22:30Z,2,2020-02-15T06:59:37Z +872,2005-05-30T05:03:04Z,3904,548,2005-06-06T10:35:04Z,1,2020-02-15T06:59:37Z +873,2005-05-30T05:15:20Z,4568,375,2005-06-07T00:49:20Z,2,2020-02-15T06:59:37Z +874,2005-05-30T05:36:21Z,363,52,2005-06-01T09:32:21Z,1,2020-02-15T06:59:37Z +875,2005-05-30T05:38:24Z,1428,326,2005-06-06T00:34:24Z,2,2020-02-15T06:59:37Z +876,2005-05-30T05:41:22Z,1471,339,2005-06-07T09:06:22Z,2,2020-02-15T06:59:37Z +877,2005-05-30T05:48:59Z,886,9,2005-06-02T09:30:59Z,1,2020-02-15T06:59:37Z +878,2005-05-30T05:49:13Z,4265,323,2005-06-07T04:35:13Z,1,2020-02-15T06:59:37Z +879,2005-05-30T05:49:42Z,4021,482,2005-06-05T01:45:42Z,2,2020-02-15T06:59:37Z +880,2005-05-30T06:12:33Z,1819,460,2005-06-02T04:35:33Z,2,2020-02-15T06:59:37Z +881,2005-05-30T06:15:36Z,602,242,2005-06-02T10:21:36Z,1,2020-02-15T06:59:37Z +882,2005-05-30T06:16:06Z,3841,477,2005-06-02T11:57:06Z,1,2020-02-15T06:59:37Z +883,2005-05-30T06:21:05Z,2271,399,2005-06-07T04:50:05Z,2,2020-02-15T06:59:37Z +884,2005-05-30T06:41:32Z,4079,17,2005-05-31T07:39:32Z,1,2020-02-15T06:59:37Z +885,2005-05-30T06:54:28Z,646,62,2005-06-03T07:03:28Z,2,2020-02-15T06:59:37Z +886,2005-05-30T06:54:51Z,4356,393,2005-06-01T06:04:51Z,2,2020-02-15T06:59:37Z +887,2005-05-30T07:10:00Z,2727,16,2005-06-01T06:48:00Z,2,2020-02-15T06:59:37Z +888,2005-05-30T07:13:14Z,387,128,2005-06-06T09:50:14Z,1,2020-02-15T06:59:37Z +889,2005-05-30T07:14:53Z,1299,114,2005-05-31T07:56:53Z,2,2020-02-15T06:59:37Z +890,2005-05-30T07:43:04Z,1464,349,2005-06-01T11:26:04Z,1,2020-02-15T06:59:37Z +891,2005-05-30T07:43:12Z,2611,391,2005-06-08T09:21:12Z,1,2020-02-15T06:59:37Z +892,2005-05-30T08:02:56Z,471,274,2005-06-05T12:51:56Z,1,2020-02-15T06:59:37Z +893,2005-05-30T08:06:59Z,3260,502,2005-06-07T08:23:59Z,2,2020-02-15T06:59:37Z +894,2005-05-30T08:31:31Z,1118,400,2005-06-07T12:39:31Z,1,2020-02-15T06:59:37Z +895,2005-05-30T08:50:43Z,2744,192,2005-06-05T10:58:43Z,1,2020-02-15T06:59:37Z +896,2005-05-30T09:03:52Z,2817,207,2005-06-05T07:37:52Z,2,2020-02-15T06:59:37Z +897,2005-05-30T09:10:01Z,1334,432,2005-06-08T03:43:01Z,1,2020-02-15T06:59:37Z +898,2005-05-30T09:26:19Z,3497,384,2005-06-01T10:45:19Z,2,2020-02-15T06:59:37Z +899,2005-05-30T09:29:30Z,1096,156,2005-06-06T12:39:30Z,2,2020-02-15T06:59:37Z +900,2005-05-30T09:38:41Z,3543,586,2005-06-07T11:54:41Z,1,2020-02-15T06:59:37Z +901,2005-05-30T09:40:40Z,760,259,2005-06-02T10:32:40Z,1,2020-02-15T06:59:37Z +902,2005-05-30T09:53:36Z,1514,561,2005-06-07T12:10:36Z,1,2020-02-15T06:59:37Z +903,2005-05-30T10:11:29Z,2423,197,2005-06-03T09:33:29Z,1,2020-02-15T06:59:37Z +904,2005-05-30T10:19:42Z,2466,44,2005-06-05T04:58:42Z,2,2020-02-15T06:59:37Z +905,2005-05-30T10:25:00Z,4372,50,2005-06-06T06:23:00Z,1,2020-02-15T06:59:37Z +906,2005-05-30T10:30:38Z,1862,549,2005-06-07T06:44:38Z,2,2020-02-15T06:59:37Z +907,2005-05-30T10:37:27Z,3320,506,2005-06-02T09:51:27Z,1,2020-02-15T06:59:37Z +908,2005-05-30T10:38:37Z,4427,85,2005-06-03T09:56:37Z,1,2020-02-15T06:59:37Z +909,2005-05-30T10:43:38Z,3775,486,2005-06-08T12:07:38Z,1,2020-02-15T06:59:37Z +910,2005-05-30T10:46:16Z,2601,374,2005-06-04T13:32:16Z,1,2020-02-15T06:59:37Z +911,2005-05-30T10:50:22Z,1404,366,2005-06-07T12:26:22Z,2,2020-02-15T06:59:37Z +912,2005-05-30T10:58:33Z,3200,390,2005-05-31T09:31:33Z,2,2020-02-15T06:59:37Z +913,2005-05-30T11:04:58Z,3213,369,2005-06-07T13:22:58Z,2,2020-02-15T06:59:37Z +914,2005-05-30T11:06:00Z,1393,596,2005-06-04T06:07:00Z,2,2020-02-15T06:59:37Z +915,2005-05-30T11:20:27Z,1859,115,2005-06-02T11:55:27Z,1,2020-02-15T06:59:37Z +916,2005-05-30T11:25:01Z,1290,6,2005-05-31T09:06:01Z,1,2020-02-15T06:59:37Z +917,2005-05-30T11:27:06Z,3629,385,2005-06-02T08:31:06Z,1,2020-02-15T06:59:37Z +918,2005-05-30T11:32:24Z,818,197,2005-05-31T07:55:24Z,2,2020-02-15T06:59:37Z +919,2005-05-30T11:35:06Z,4052,374,2005-06-02T13:16:06Z,2,2020-02-15T06:59:37Z +920,2005-05-30T11:44:01Z,3860,584,2005-06-02T08:19:01Z,2,2020-02-15T06:59:37Z +921,2005-05-30T11:53:09Z,1827,508,2005-06-03T10:00:09Z,2,2020-02-15T06:59:37Z +922,2005-05-30T11:55:55Z,2442,550,2005-06-08T10:12:55Z,2,2020-02-15T06:59:37Z +923,2005-05-30T11:58:50Z,1884,37,2005-06-05T09:57:50Z,1,2020-02-15T06:59:37Z +924,2005-05-30T12:10:59Z,3279,293,2005-06-04T17:28:59Z,1,2020-02-15T06:59:37Z +925,2005-05-30T12:13:52Z,3203,137,2005-06-02T14:41:52Z,2,2020-02-15T06:59:37Z +926,2005-05-30T12:15:54Z,4327,76,2005-06-01T08:53:54Z,2,2020-02-15T06:59:37Z +927,2005-05-30T12:16:40Z,1158,167,2005-05-31T16:20:40Z,2,2020-02-15T06:59:37Z +928,2005-05-30T12:27:14Z,246,79,2005-06-05T13:56:14Z,2,2020-02-15T06:59:37Z +929,2005-05-30T12:32:39Z,4296,536,2005-06-06T12:17:39Z,1,2020-02-15T06:59:37Z +930,2005-05-30T12:44:57Z,2835,141,2005-06-04T10:53:57Z,2,2020-02-15T06:59:37Z +931,2005-05-30T12:53:01Z,3384,421,2005-05-31T14:28:01Z,1,2020-02-15T06:59:37Z +932,2005-05-30T12:55:36Z,719,198,2005-05-31T10:30:36Z,2,2020-02-15T06:59:37Z +933,2005-05-30T13:08:45Z,3672,66,2005-06-01T18:56:45Z,1,2020-02-15T06:59:37Z +934,2005-05-30T13:24:46Z,3595,60,2005-06-08T16:44:46Z,2,2020-02-15T06:59:37Z +935,2005-05-30T13:29:36Z,2421,256,2005-06-02T11:08:36Z,1,2020-02-15T06:59:37Z +936,2005-05-30T13:52:49Z,901,469,2005-06-07T16:56:49Z,1,2020-02-15T06:59:37Z +937,2005-05-30T14:47:31Z,1054,304,2005-06-05T09:53:31Z,2,2020-02-15T06:59:37Z +938,2005-05-30T14:47:31Z,1521,46,2005-06-04T10:10:31Z,2,2020-02-15T06:59:37Z +939,2005-05-30T14:49:34Z,1314,367,2005-06-01T19:00:34Z,1,2020-02-15T06:59:37Z +940,2005-05-30T15:01:02Z,1278,534,2005-06-01T18:26:02Z,1,2020-02-15T06:59:37Z +941,2005-05-30T15:02:25Z,3630,562,2005-06-01T17:19:25Z,1,2020-02-15T06:59:37Z +942,2005-05-30T15:05:47Z,4279,473,2005-06-08T15:59:47Z,2,2020-02-15T06:59:37Z +943,2005-05-30T15:20:19Z,3737,57,2005-06-06T18:53:19Z,1,2020-02-15T06:59:37Z +944,2005-05-30T15:26:24Z,151,131,2005-06-07T18:09:24Z,2,2020-02-15T06:59:37Z +945,2005-05-30T15:33:17Z,1441,357,2005-06-02T15:02:17Z,2,2020-02-15T06:59:37Z +946,2005-05-30T15:35:08Z,1264,486,2005-06-08T11:38:08Z,1,2020-02-15T06:59:37Z +947,2005-05-30T15:36:57Z,4478,62,2005-06-04T18:48:57Z,1,2020-02-15T06:59:37Z +948,2005-05-30T15:44:27Z,585,245,2005-06-08T17:30:27Z,2,2020-02-15T06:59:37Z +949,2005-05-30T15:50:39Z,2202,368,2005-06-03T14:25:39Z,1,2020-02-15T06:59:37Z +950,2005-05-30T16:06:08Z,491,83,2005-06-01T11:43:08Z,1,2020-02-15T06:59:37Z +951,2005-05-30T16:10:35Z,1395,59,2005-05-31T19:01:35Z,2,2020-02-15T06:59:37Z +952,2005-05-30T16:28:07Z,4389,311,2005-06-02T16:12:07Z,2,2020-02-15T06:59:37Z +953,2005-05-30T16:34:02Z,2194,210,2005-05-31T20:34:02Z,1,2020-02-15T06:59:37Z +954,2005-05-30T16:57:29Z,1231,297,2005-06-08T13:30:29Z,2,2020-02-15T06:59:37Z +955,2005-05-30T16:59:03Z,4140,301,2005-05-31T11:58:03Z,2,2020-02-15T06:59:37Z +956,2005-05-30T17:30:28Z,647,296,2005-06-07T13:54:28Z,2,2020-02-15T06:59:37Z +957,2005-05-30T17:53:29Z,4428,440,2005-06-03T15:31:29Z,2,2020-02-15T06:59:37Z +958,2005-05-30T17:58:03Z,548,186,2005-06-01T19:17:03Z,2,2020-02-15T06:59:37Z +959,2005-05-30T18:07:00Z,3108,535,2005-06-02T14:37:00Z,2,2020-02-15T06:59:37Z +960,2005-05-30T18:13:23Z,1966,445,2005-06-04T00:12:23Z,2,2020-02-15T06:59:37Z +961,2005-05-30T18:16:44Z,3293,588,2005-06-04T23:40:44Z,2,2020-02-15T06:59:37Z +962,2005-05-30T18:45:17Z,4535,520,2005-06-05T22:47:17Z,1,2020-02-15T06:59:37Z +963,2005-05-30T18:52:53Z,1921,225,2005-06-07T16:19:53Z,2,2020-02-15T06:59:37Z +964,2005-05-30T18:53:21Z,657,287,2005-06-04T22:32:21Z,2,2020-02-15T06:59:37Z +965,2005-05-30T19:00:14Z,3363,502,2005-05-31T17:10:14Z,2,2020-02-15T06:59:37Z +966,2005-05-30T19:00:37Z,1294,496,2005-05-31T23:51:37Z,1,2020-02-15T06:59:37Z +967,2005-05-30T19:12:06Z,1954,330,2005-06-09T00:02:06Z,2,2020-02-15T06:59:37Z +968,2005-05-30T19:20:03Z,119,576,2005-05-31T18:17:03Z,2,2020-02-15T06:59:37Z +969,2005-05-30T19:23:48Z,443,551,2005-05-31T21:14:48Z,1,2020-02-15T06:59:37Z +970,2005-05-30T19:50:28Z,1520,307,2005-06-09T01:19:28Z,1,2020-02-15T06:59:37Z +971,2005-05-30T20:10:52Z,2911,561,2005-06-06T20:47:52Z,1,2020-02-15T06:59:37Z +972,2005-05-30T20:21:07Z,2,411,2005-06-06T00:36:07Z,1,2020-02-15T06:59:37Z +973,2005-05-30T20:27:45Z,1914,473,2005-06-08T22:47:45Z,2,2020-02-15T06:59:37Z +974,2005-05-30T20:28:42Z,2617,596,2005-06-08T23:45:42Z,2,2020-02-15T06:59:37Z +975,2005-05-30T21:07:15Z,3109,7,2005-06-03T01:48:15Z,2,2020-02-15T06:59:37Z +976,2005-05-30T21:11:19Z,2290,581,2005-06-06T02:16:19Z,2,2020-02-15T06:59:37Z +977,2005-05-30T21:22:26Z,2029,394,2005-06-04T22:32:26Z,2,2020-02-15T06:59:37Z +978,2005-05-30T21:30:52Z,407,154,2005-06-07T16:22:52Z,1,2020-02-15T06:59:37Z +979,2005-05-30T21:37:11Z,3917,279,2005-06-08T00:24:11Z,2,2020-02-15T06:59:37Z +980,2005-05-30T21:45:19Z,4169,273,2005-06-01T20:32:19Z,1,2020-02-15T06:59:37Z +981,2005-05-30T21:52:42Z,2913,326,2005-06-01T03:15:42Z,2,2020-02-15T06:59:37Z +982,2005-05-30T22:15:24Z,3560,524,2005-06-02T16:18:24Z,1,2020-02-15T06:59:37Z +983,2005-05-30T22:15:51Z,63,115,2005-06-02T22:56:51Z,1,2020-02-15T06:59:37Z +984,2005-05-30T22:17:17Z,2305,262,2005-06-01T20:15:17Z,2,2020-02-15T06:59:37Z +985,2005-05-30T22:18:35Z,1573,564,2005-06-04T23:36:35Z,1,2020-02-15T06:59:37Z +986,2005-05-30T22:22:52Z,4045,253,2005-06-01T02:24:52Z,1,2020-02-15T06:59:37Z +987,2005-05-30T22:59:12Z,390,11,2005-06-07T20:56:12Z,1,2020-02-15T06:59:37Z +988,2005-05-30T23:08:03Z,1364,12,2005-06-07T00:22:03Z,1,2020-02-15T06:59:37Z +989,2005-05-30T23:11:51Z,4388,83,2005-06-03T20:36:51Z,2,2020-02-15T06:59:37Z +990,2005-05-30T23:25:14Z,4171,311,2005-06-06T18:41:14Z,2,2020-02-15T06:59:37Z +991,2005-05-30T23:29:22Z,2863,593,2005-06-07T23:16:22Z,1,2020-02-15T06:59:37Z +992,2005-05-30T23:47:56Z,3572,123,2005-06-05T19:01:56Z,1,2020-02-15T06:59:37Z +993,2005-05-30T23:54:19Z,2080,513,2005-06-04T21:27:19Z,1,2020-02-15T06:59:37Z +994,2005-05-30T23:55:36Z,2798,472,2005-06-04T01:00:36Z,2,2020-02-15T06:59:37Z +995,2005-05-31T00:06:02Z,17,150,2005-06-06T02:30:02Z,2,2020-02-15T06:59:37Z +996,2005-05-31T00:06:20Z,2075,331,2005-05-31T21:29:20Z,2,2020-02-15T06:59:37Z +997,2005-05-31T00:08:25Z,4243,216,2005-06-02T00:17:25Z,2,2020-02-15T06:59:37Z +998,2005-05-31T00:16:57Z,3395,389,2005-06-01T22:41:57Z,1,2020-02-15T06:59:37Z +999,2005-05-31T00:25:10Z,4433,413,2005-06-03T06:05:10Z,2,2020-02-15T06:59:37Z +1000,2005-05-31T00:25:56Z,1774,332,2005-06-08T19:42:56Z,2,2020-02-15T06:59:37Z +1001,2005-05-31T00:46:31Z,1498,64,2005-06-06T06:14:31Z,2,2020-02-15T06:59:37Z +1002,2005-05-31T00:47:56Z,709,397,2005-06-06T19:51:56Z,1,2020-02-15T06:59:37Z +1003,2005-05-31T00:48:20Z,133,161,2005-06-02T04:53:20Z,2,2020-02-15T06:59:37Z +1004,2005-05-31T00:48:36Z,1588,565,2005-06-01T20:56:36Z,1,2020-02-15T06:59:37Z +1005,2005-05-31T00:53:25Z,4006,551,2005-06-04T01:21:25Z,2,2020-02-15T06:59:37Z +1006,2005-05-31T00:57:08Z,3461,222,2005-06-02T22:35:08Z,1,2020-02-15T06:59:37Z +1007,2005-05-31T01:02:28Z,3185,24,2005-06-07T01:36:28Z,2,2020-02-15T06:59:37Z +1008,2005-05-31T01:18:56Z,914,599,2005-06-01T01:24:56Z,2,2020-02-15T06:59:37Z +1009,2005-05-31T01:47:35Z,2523,485,2005-06-03T20:26:35Z,1,2020-02-15T06:59:37Z +1010,2005-05-31T01:57:32Z,4038,49,2005-06-01T06:50:32Z,2,2020-02-15T06:59:37Z +1011,2005-05-31T02:05:39Z,118,164,2005-06-04T21:27:39Z,2,2020-02-15T06:59:37Z +1012,2005-05-31T02:18:05Z,688,291,2005-06-03T06:47:05Z,1,2020-02-15T06:59:37Z +1013,2005-05-31T02:37:00Z,4522,384,2005-06-02T06:39:00Z,2,2020-02-15T06:59:37Z +1014,2005-05-31T02:39:16Z,766,280,2005-06-01T06:03:16Z,2,2020-02-15T06:59:37Z +1015,2005-05-31T02:44:57Z,3702,526,2005-06-07T23:01:57Z,2,2020-02-15T06:59:37Z +1016,2005-05-31T02:49:43Z,3423,204,2005-06-04T03:48:43Z,1,2020-02-15T06:59:37Z +1017,2005-05-31T02:53:36Z,1242,16,2005-06-03T05:04:36Z,1,2020-02-15T06:59:37Z +1018,2005-05-31T02:53:42Z,1930,594,2005-06-03T00:47:42Z,2,2020-02-15T06:59:37Z +1019,2005-05-31T03:05:07Z,3975,279,2005-06-03T08:34:07Z,1,2020-02-15T06:59:37Z +1020,2005-05-31T03:06:08Z,3402,138,2005-06-02T08:57:08Z,2,2020-02-15T06:59:37Z +1021,2005-05-31T03:16:15Z,2724,541,2005-06-08T06:43:15Z,2,2020-02-15T06:59:37Z +1022,2005-05-31T03:16:45Z,842,239,2005-06-08T09:04:45Z,1,2020-02-15T06:59:37Z +1023,2005-05-31T03:26:50Z,2483,227,2005-06-05T08:19:50Z,2,2020-02-15T06:59:37Z +1024,2005-05-31T03:30:19Z,2310,457,2005-06-09T05:52:19Z,2,2020-02-15T06:59:37Z +1025,2005-05-31T03:41:37Z,1618,93,2005-06-08T07:05:37Z,2,2020-02-15T06:59:37Z +1026,2005-05-31T03:45:26Z,632,107,2005-06-06T22:30:26Z,2,2020-02-15T06:59:37Z +1027,2005-05-31T03:46:19Z,2718,55,2005-06-09T03:50:19Z,1,2020-02-15T06:59:37Z +1028,2005-05-31T03:48:05Z,4479,51,2005-06-01T03:51:05Z,1,2020-02-15T06:59:37Z +1029,2005-05-31T03:52:02Z,2082,50,2005-06-06T08:10:02Z,1,2020-02-15T06:59:37Z +1030,2005-05-31T04:06:47Z,3948,267,2005-06-02T02:59:47Z,1,2020-02-15T06:59:37Z +1031,2005-05-31T04:23:01Z,917,416,2005-06-06T08:35:01Z,1,2020-02-15T06:59:37Z +1032,2005-05-31T04:28:43Z,2937,236,2005-06-02T02:00:43Z,2,2020-02-15T06:59:37Z +1033,2005-05-31T04:50:07Z,14,25,2005-06-02T01:53:07Z,1,2020-02-15T06:59:37Z +1034,2005-05-31T04:53:40Z,4117,293,2005-06-09T08:25:40Z,2,2020-02-15T06:59:37Z +1035,2005-05-31T05:01:09Z,949,362,2005-06-02T03:59:09Z,1,2020-02-15T06:59:37Z +1036,2005-05-31T05:21:10Z,2164,438,2005-06-04T04:19:10Z,1,2020-02-15T06:59:37Z +1037,2005-05-31T05:22:25Z,810,569,2005-06-09T04:52:25Z,1,2020-02-15T06:59:37Z +1038,2005-05-31T05:23:47Z,1253,385,2005-06-02T03:57:47Z,2,2020-02-15T06:59:37Z +1039,2005-05-31T05:32:29Z,2479,124,2005-06-01T06:04:29Z,2,2020-02-15T06:59:37Z +1040,2005-05-31T05:35:16Z,2546,270,2005-06-09T04:14:16Z,1,2020-02-15T06:59:37Z +1041,2005-05-31T05:46:23Z,4432,272,2005-06-06T09:50:23Z,2,2020-02-15T06:59:37Z +1042,2005-05-31T05:53:00Z,3155,506,2005-06-01T05:24:00Z,1,2020-02-15T06:59:37Z +1043,2005-05-31T06:11:40Z,2322,412,2005-06-08T09:15:40Z,2,2020-02-15T06:59:37Z +1044,2005-05-31T06:24:44Z,2574,70,2005-06-03T04:51:44Z,1,2020-02-15T06:59:37Z +1045,2005-05-31T06:29:01Z,3470,594,2005-06-09T04:31:01Z,1,2020-02-15T06:59:37Z +1046,2005-05-31T06:42:30Z,468,179,2005-06-03T04:33:30Z,2,2020-02-15T06:59:37Z +1047,2005-05-31T06:45:57Z,1366,72,2005-06-04T09:49:57Z,2,2020-02-15T06:59:37Z +1048,2005-05-31T06:49:53Z,2811,55,2005-06-02T11:33:53Z,1,2020-02-15T06:59:37Z +1049,2005-05-31T06:57:04Z,3913,312,2005-06-02T11:32:04Z,2,2020-02-15T06:59:37Z +1050,2005-05-31T07:01:27Z,726,303,2005-06-03T07:50:27Z,2,2020-02-15T06:59:37Z +1051,2005-05-31T07:02:09Z,1025,246,2005-06-03T01:32:09Z,1,2020-02-15T06:59:37Z +1052,2005-05-31T07:07:03Z,2157,156,2005-06-05T09:38:03Z,1,2020-02-15T06:59:37Z +1053,2005-05-31T07:12:44Z,3734,196,2005-06-04T12:33:44Z,1,2020-02-15T06:59:37Z +1054,2005-05-31T07:33:25Z,1575,126,2005-06-02T01:40:25Z,2,2020-02-15T06:59:37Z +1055,2005-05-31T07:47:18Z,1639,108,2005-06-03T01:57:18Z,1,2020-02-15T06:59:37Z +1056,2005-05-31T07:48:07Z,1591,519,2005-06-05T08:51:07Z,2,2020-02-15T06:59:37Z +1057,2005-05-31T07:58:06Z,497,124,2005-06-06T03:21:06Z,1,2020-02-15T06:59:37Z +1058,2005-05-31T08:04:17Z,40,116,2005-06-03T11:12:17Z,2,2020-02-15T06:59:37Z +1059,2005-05-31T08:20:43Z,3041,241,2005-06-04T09:05:43Z,2,2020-02-15T06:59:37Z +1060,2005-05-31T08:21:43Z,2676,570,2005-06-09T04:02:43Z,2,2020-02-15T06:59:37Z +1061,2005-05-31T08:27:58Z,965,109,2005-06-07T02:34:58Z,1,2020-02-15T06:59:37Z +1062,2005-05-31T08:38:20Z,2223,176,2005-06-09T08:23:20Z,2,2020-02-15T06:59:37Z +1063,2005-05-31T08:44:29Z,2484,7,2005-06-09T08:00:29Z,1,2020-02-15T06:59:37Z +1064,2005-05-31T08:50:07Z,2373,460,2005-06-02T14:47:07Z,2,2020-02-15T06:59:37Z +1065,2005-05-31T08:54:56Z,3379,316,2005-06-08T09:21:56Z,1,2020-02-15T06:59:37Z +1066,2005-05-31T09:07:33Z,2383,541,2005-06-09T05:34:33Z,2,2020-02-15T06:59:37Z +1067,2005-05-31T09:12:13Z,2345,32,2005-06-01T06:15:13Z,1,2020-02-15T06:59:37Z +1068,2005-05-31T09:32:15Z,150,443,2005-06-01T11:20:15Z,1,2020-02-15T06:59:37Z +1069,2005-05-31T09:32:31Z,3057,251,2005-06-08T10:19:31Z,2,2020-02-15T06:59:37Z +1070,2005-05-31T09:39:56Z,3170,228,2005-06-05T10:23:56Z,1,2020-02-15T06:59:37Z +1071,2005-05-31T09:48:56Z,469,174,2005-06-02T03:52:56Z,2,2020-02-15T06:59:37Z +1072,2005-05-31T09:52:50Z,2557,272,2005-06-05T05:39:50Z,1,2020-02-15T06:59:37Z +1073,2005-05-31T09:55:04Z,522,146,2005-06-07T03:55:04Z,1,2020-02-15T06:59:37Z +1074,2005-05-31T10:04:42Z,2508,503,2005-06-02T15:27:42Z,2,2020-02-15T06:59:37Z +1075,2005-05-31T10:13:34Z,2279,9,2005-06-09T08:11:34Z,1,2020-02-15T06:59:37Z +1076,2005-05-31T10:14:31Z,2551,214,2005-06-05T10:13:31Z,2,2020-02-15T06:59:37Z +1077,2005-05-31T10:22:54Z,1986,24,2005-06-02T12:21:54Z,1,2020-02-15T06:59:37Z +1078,2005-05-31T10:28:33Z,3682,230,2005-06-03T14:45:33Z,2,2020-02-15T06:59:37Z +1079,2005-05-31T10:48:17Z,268,312,2005-06-08T12:30:17Z,1,2020-02-15T06:59:37Z +1080,2005-05-31T10:55:26Z,3491,215,2005-06-03T13:13:26Z,2,2020-02-15T06:59:37Z +1081,2005-05-31T10:56:32Z,4524,404,2005-06-06T11:31:32Z,1,2020-02-15T06:59:37Z +1082,2005-05-31T11:02:01Z,4510,239,2005-06-05T08:43:01Z,1,2020-02-15T06:59:37Z +1083,2005-05-31T11:04:48Z,2393,556,2005-06-05T13:32:48Z,1,2020-02-15T06:59:37Z +1084,2005-05-31T11:10:17Z,4577,12,2005-06-01T11:15:17Z,1,2020-02-15T06:59:37Z +1085,2005-05-31T11:15:43Z,301,5,2005-06-07T12:02:43Z,1,2020-02-15T06:59:37Z +1086,2005-05-31T11:17:37Z,2909,549,2005-06-06T13:58:37Z,2,2020-02-15T06:59:37Z +1087,2005-05-31T11:18:08Z,431,169,2005-06-04T08:33:08Z,1,2020-02-15T06:59:37Z +1088,2005-05-31T11:35:13Z,3988,356,2005-06-06T16:01:13Z,2,2020-02-15T06:59:37Z +1089,2005-05-31T11:38:29Z,3784,367,2005-06-02T08:06:29Z,1,2020-02-15T06:59:37Z +1090,2005-05-31T12:03:44Z,3329,23,2005-06-02T15:54:44Z,2,2020-02-15T06:59:37Z +1091,2005-05-31T12:11:04Z,3853,251,2005-06-04T11:42:04Z,1,2020-02-15T06:59:37Z +1092,2005-05-31T12:15:57Z,4412,278,2005-06-03T15:39:57Z,2,2020-02-15T06:59:37Z +1093,2005-05-31T12:32:26Z,2189,214,2005-06-03T07:51:26Z,2,2020-02-15T06:59:37Z +1094,2005-05-31T13:03:49Z,3810,547,2005-06-05T14:30:49Z,2,2020-02-15T06:59:37Z +1095,2005-05-31T13:15:41Z,4546,252,2005-06-05T12:10:41Z,1,2020-02-15T06:59:37Z +1096,2005-05-31T13:30:49Z,1066,271,2005-06-09T13:53:49Z,1,2020-02-15T06:59:37Z +1097,2005-05-31T13:38:42Z,2285,491,2005-06-01T13:54:42Z,2,2020-02-15T06:59:37Z +1098,2005-05-31T13:51:48Z,1050,425,2005-06-09T18:42:48Z,2,2020-02-15T06:59:37Z +1099,2005-05-31T13:54:48Z,924,269,2005-06-05T13:04:48Z,2,2020-02-15T06:59:37Z +1100,2005-05-31T14:03:21Z,316,497,2005-06-06T16:08:21Z,1,2020-02-15T06:59:37Z +1101,2005-05-31T14:13:59Z,1174,260,2005-06-07T15:49:59Z,1,2020-02-15T06:59:37Z +1102,2005-05-31T14:20:29Z,2052,115,2005-06-04T17:38:29Z,2,2020-02-15T06:59:37Z +1103,2005-05-31T14:24:18Z,3154,353,2005-06-09T10:27:18Z,1,2020-02-15T06:59:37Z +1104,2005-05-31T14:30:01Z,1619,466,2005-06-05T12:07:01Z,1,2020-02-15T06:59:37Z +1105,2005-05-31T14:33:56Z,1708,26,2005-06-07T11:30:56Z,1,2020-02-15T06:59:37Z +1106,2005-05-31T14:36:52Z,4185,109,2005-06-01T14:33:52Z,2,2020-02-15T06:59:37Z +1107,2005-05-31T15:04:05Z,3449,53,2005-06-07T16:42:05Z,2,2020-02-15T06:59:37Z +1108,2005-05-31T15:05:12Z,2562,254,2005-06-09T19:48:12Z,2,2020-02-15T06:59:37Z +1109,2005-05-31T15:12:15Z,2031,481,2005-06-09T16:21:15Z,1,2020-02-15T06:59:37Z +1110,2005-05-31T15:22:51Z,2085,355,2005-06-07T14:32:51Z,1,2020-02-15T06:59:37Z +1111,2005-05-31T15:24:19Z,1137,300,2005-06-08T21:18:19Z,1,2020-02-15T06:59:37Z +1112,2005-05-31T15:51:39Z,2453,214,2005-06-03T14:04:39Z,1,2020-02-15T06:59:37Z +1113,2005-05-31T15:58:44Z,2078,451,2005-06-05T18:05:44Z,2,2020-02-15T06:59:37Z +1114,2005-05-31T16:00:33Z,2287,117,2005-06-01T19:05:33Z,1,2020-02-15T06:59:37Z +1115,2005-05-31T16:07:09Z,2140,109,2005-06-04T18:51:09Z,1,2020-02-15T06:59:37Z +1116,2005-05-31T16:10:46Z,1356,256,2005-06-01T20:27:46Z,2,2020-02-15T06:59:37Z +1117,2005-05-31T16:15:31Z,4125,189,2005-06-04T17:20:31Z,1,2020-02-15T06:59:37Z +1118,2005-05-31T16:23:02Z,213,510,2005-06-03T20:00:02Z,1,2020-02-15T06:59:37Z +1119,2005-05-31T16:34:27Z,4401,469,2005-06-02T10:54:27Z,1,2020-02-15T06:59:37Z +1120,2005-05-31T16:37:14Z,2897,361,2005-06-04T12:53:14Z,1,2020-02-15T06:59:37Z +1121,2005-05-31T16:37:36Z,1691,74,2005-06-06T21:02:36Z,1,2020-02-15T06:59:37Z +1122,2005-05-31T16:39:33Z,1392,180,2005-06-04T17:25:33Z,1,2020-02-15T06:59:37Z +1123,2005-05-31T16:48:43Z,142,448,2005-06-02T19:17:43Z,2,2020-02-15T06:59:37Z +1124,2005-05-31T16:49:34Z,4560,134,2005-06-04T19:32:34Z,2,2020-02-15T06:59:37Z +1125,2005-05-31T17:23:44Z,1172,234,2005-06-01T15:02:44Z,1,2020-02-15T06:59:37Z +1126,2005-05-31T17:27:45Z,2765,431,2005-06-04T20:06:45Z,2,2020-02-15T06:59:37Z +1127,2005-05-31T17:45:49Z,2412,387,2005-06-08T22:41:49Z,2,2020-02-15T06:59:37Z +1128,2005-05-31T17:49:26Z,1496,311,2005-06-05T19:51:26Z,2,2020-02-15T06:59:37Z +1129,2005-05-31T18:00:48Z,386,486,2005-06-04T23:05:48Z,1,2020-02-15T06:59:37Z +1130,2005-05-31T18:13:57Z,3186,124,2005-06-06T22:50:57Z,2,2020-02-15T06:59:37Z +1131,2005-05-31T18:44:19Z,2654,128,2005-06-01T20:13:19Z,1,2020-02-15T06:59:37Z +1132,2005-05-31T18:44:53Z,1763,198,2005-06-07T22:02:53Z,2,2020-02-15T06:59:37Z +1133,2005-05-31T19:12:21Z,4271,73,2005-06-02T20:12:21Z,1,2020-02-15T06:59:37Z +1134,2005-05-31T19:14:15Z,143,191,2005-06-02T17:13:15Z,2,2020-02-15T06:59:37Z +1135,2005-05-31T19:15:11Z,3118,122,2005-06-01T14:44:11Z,2,2020-02-15T06:59:37Z +1136,2005-05-31T19:19:36Z,3963,50,2005-06-09T16:04:36Z,2,2020-02-15T06:59:37Z +1137,2005-05-31T19:20:14Z,3259,351,2005-06-07T16:10:14Z,1,2020-02-15T06:59:37Z +1138,2005-05-31T19:30:27Z,3944,438,2005-06-05T21:42:27Z,1,2020-02-15T06:59:37Z +1139,2005-05-31T19:34:52Z,666,562,2005-06-06T17:40:52Z,1,2020-02-15T06:59:37Z +1140,2005-05-31T19:36:30Z,3731,10,2005-06-07T18:33:30Z,2,2020-02-15T06:59:37Z +1141,2005-05-31T19:42:02Z,4128,217,2005-06-07T00:59:02Z,2,2020-02-15T06:59:37Z +1142,2005-05-31T19:46:38Z,3998,5,2005-06-05T14:03:38Z,1,2020-02-15T06:59:37Z +1143,2005-05-31T19:53:03Z,2632,209,2005-06-06T20:56:03Z,2,2020-02-15T06:59:37Z +1144,2005-05-31T20:04:10Z,2450,207,2005-06-09T16:34:10Z,1,2020-02-15T06:59:37Z +1145,2005-05-31T20:13:45Z,1133,284,2005-06-08T02:10:45Z,1,2020-02-15T06:59:37Z +1146,2005-05-31T20:34:45Z,3134,250,2005-06-03T18:12:45Z,2,2020-02-15T06:59:37Z +1147,2005-05-31T20:37:52Z,622,259,2005-06-06T19:23:52Z,2,2020-02-15T06:59:37Z +1148,2005-05-31T20:38:40Z,3307,235,2005-06-02T18:35:40Z,2,2020-02-15T06:59:37Z +1149,2005-05-31T21:03:17Z,352,326,2005-06-08T19:58:17Z,2,2020-02-15T06:59:37Z +1150,2005-05-31T21:20:09Z,1632,136,2005-06-03T19:15:09Z,2,2020-02-15T06:59:37Z +1151,2005-05-31T21:29:00Z,1281,581,2005-06-03T23:24:00Z,1,2020-02-15T06:59:37Z +1152,2005-05-31T21:32:17Z,210,191,2005-06-04T21:07:17Z,2,2020-02-15T06:59:37Z +1153,2005-05-31T21:36:44Z,2725,506,2005-06-10T01:26:44Z,2,2020-02-15T06:59:37Z +1154,2005-05-31T21:42:09Z,2732,59,2005-06-08T16:40:09Z,1,2020-02-15T06:59:37Z +1155,2005-05-31T22:17:11Z,2048,251,2005-06-04T20:27:11Z,2,2020-02-15T06:59:37Z +1156,2005-05-31T22:37:34Z,460,106,2005-06-01T23:02:34Z,2,2020-02-15T06:59:37Z +1157,2005-05-31T22:47:45Z,1449,61,2005-06-02T18:01:45Z,1,2020-02-15T06:59:37Z +1158,2005-06-14T22:53:33Z,1632,416,2005-06-18T21:37:33Z,2,2020-02-15T06:59:37Z +1159,2005-06-14T22:55:13Z,4395,516,2005-06-17T02:11:13Z,1,2020-02-15T06:59:37Z +1160,2005-06-14T23:00:34Z,2795,239,2005-06-18T01:58:34Z,2,2020-02-15T06:59:37Z +1161,2005-06-14T23:07:08Z,1690,285,2005-06-21T17:12:08Z,1,2020-02-15T06:59:37Z +1162,2005-06-14T23:09:38Z,987,310,2005-06-23T22:00:38Z,1,2020-02-15T06:59:37Z +1163,2005-06-14T23:12:46Z,4209,592,2005-06-23T21:53:46Z,1,2020-02-15T06:59:37Z +1164,2005-06-14T23:16:26Z,3691,49,2005-06-16T21:00:26Z,1,2020-02-15T06:59:37Z +1165,2005-06-14T23:16:27Z,2855,264,2005-06-20T02:40:27Z,2,2020-02-15T06:59:37Z +1166,2005-06-14T23:17:03Z,2508,46,2005-06-15T20:43:03Z,1,2020-02-15T06:59:37Z +1167,2005-06-14T23:25:58Z,4021,323,2005-06-18T05:18:58Z,2,2020-02-15T06:59:37Z +1168,2005-06-14T23:35:09Z,4368,481,2005-06-19T03:20:09Z,1,2020-02-15T06:59:37Z +1169,2005-06-14T23:42:56Z,1062,139,2005-06-16T04:02:56Z,2,2020-02-15T06:59:37Z +1170,2005-06-14T23:47:35Z,2444,595,2005-06-17T05:28:35Z,2,2020-02-15T06:59:37Z +1171,2005-06-14T23:50:11Z,4082,284,2005-06-17T21:44:11Z,2,2020-02-15T06:59:37Z +1172,2005-06-14T23:54:34Z,2685,306,2005-06-16T02:26:34Z,1,2020-02-15T06:59:37Z +1173,2005-06-14T23:54:46Z,1050,191,2005-06-19T23:26:46Z,2,2020-02-15T06:59:37Z +1174,2005-06-15T00:12:51Z,2653,95,2005-06-21T02:10:51Z,2,2020-02-15T06:59:37Z +1175,2005-06-15T00:15:15Z,3255,197,2005-06-20T19:23:15Z,2,2020-02-15T06:59:37Z +1176,2005-06-15T00:28:37Z,2715,512,2005-06-21T21:42:37Z,1,2020-02-15T06:59:37Z +1177,2005-06-15T00:33:04Z,1897,210,2005-06-16T03:47:04Z,2,2020-02-15T06:59:37Z +1178,2005-06-15T00:36:40Z,2553,279,2005-06-21T00:27:40Z,2,2020-02-15T06:59:37Z +1179,2005-06-15T00:36:50Z,816,119,2005-06-22T22:09:50Z,1,2020-02-15T06:59:37Z +1180,2005-06-15T00:39:01Z,3119,432,2005-06-21T22:44:01Z,2,2020-02-15T06:59:37Z +1181,2005-06-15T00:42:17Z,2973,546,2005-06-19T03:36:17Z,2,2020-02-15T06:59:37Z +1182,2005-06-15T00:45:21Z,1061,196,2005-06-22T03:52:21Z,1,2020-02-15T06:59:37Z +1183,2005-06-15T00:49:19Z,706,329,2005-06-20T04:33:19Z,1,2020-02-15T06:59:37Z +1184,2005-06-15T00:49:36Z,473,295,2005-06-22T23:39:36Z,2,2020-02-15T06:59:37Z +1185,2005-06-15T00:54:12Z,2785,1,2005-06-23T02:42:12Z,2,2020-02-15T06:59:37Z +1186,2005-06-15T00:56:45Z,1556,368,2005-06-16T02:23:45Z,1,2020-02-15T06:59:37Z +1187,2005-06-15T00:58:50Z,1108,334,2005-06-23T02:19:50Z,1,2020-02-15T06:59:37Z +1188,2005-06-15T01:04:07Z,246,173,2005-06-19T03:48:07Z,1,2020-02-15T06:59:37Z +1189,2005-06-15T01:04:22Z,142,244,2005-06-24T06:48:22Z,1,2020-02-15T06:59:37Z +1190,2005-06-15T01:05:32Z,2572,370,2005-06-23T02:34:32Z,2,2020-02-15T06:59:37Z +1191,2005-06-15T01:10:35Z,2221,291,2005-06-17T20:36:35Z,2,2020-02-15T06:59:37Z +1192,2005-06-15T01:18:39Z,4134,186,2005-06-19T22:46:39Z,1,2020-02-15T06:59:37Z +1193,2005-06-15T01:24:20Z,4504,561,2005-06-21T02:29:20Z,2,2020-02-15T06:59:37Z +1194,2005-06-15T01:25:08Z,3774,402,2005-06-21T01:16:08Z,2,2020-02-15T06:59:37Z +1195,2005-06-15T01:37:38Z,2272,84,2005-06-17T21:50:38Z,1,2020-02-15T06:59:37Z +1196,2005-06-15T01:38:31Z,994,52,2005-06-18T06:55:31Z,1,2020-02-15T06:59:37Z +1197,2005-06-15T01:42:46Z,3812,349,2005-06-20T00:22:46Z,1,2020-02-15T06:59:37Z +1198,2005-06-15T01:48:58Z,1138,491,2005-06-20T01:07:58Z,2,2020-02-15T06:59:37Z +1199,2005-06-15T01:58:50Z,253,238,2005-06-16T20:30:50Z,2,2020-02-15T06:59:37Z +1200,2005-06-15T01:59:51Z,3329,516,2005-06-21T21:33:51Z,1,2020-02-15T06:59:37Z +1201,2005-06-15T02:06:28Z,2679,209,2005-06-16T21:38:28Z,2,2020-02-15T06:59:37Z +1202,2005-06-15T02:08:04Z,2821,451,2005-06-16T21:56:04Z,1,2020-02-15T06:59:37Z +1203,2005-06-15T02:09:02Z,2223,452,2005-06-21T00:04:02Z,1,2020-02-15T06:59:37Z +1204,2005-06-15T02:21:46Z,2450,249,2005-06-20T07:14:46Z,2,2020-02-15T06:59:37Z +1205,2005-06-15T02:25:56Z,470,340,2005-06-22T23:19:56Z,1,2020-02-15T06:59:37Z +1206,2005-06-15T02:27:07Z,1097,264,2005-06-18T22:46:07Z,2,2020-02-15T06:59:37Z +1207,2005-06-15T02:27:08Z,2277,430,2005-06-19T08:18:08Z,2,2020-02-15T06:59:37Z +1208,2005-06-15T02:30:03Z,750,376,2005-06-18T00:04:03Z,1,2020-02-15T06:59:37Z +1209,2005-06-15T02:31:12Z,1494,146,2005-06-21T07:39:12Z,1,2020-02-15T06:59:37Z +1210,2005-06-15T02:57:51Z,7,345,2005-06-20T01:41:51Z,2,2020-02-15T06:59:37Z +1211,2005-06-15T03:01:20Z,3360,122,2005-06-18T07:52:20Z,2,2020-02-15T06:59:37Z +1212,2005-06-15T03:03:33Z,3611,371,2005-06-17T06:31:33Z,1,2020-02-15T06:59:37Z +1213,2005-06-15T03:14:05Z,3191,94,2005-06-15T21:41:05Z,2,2020-02-15T06:59:37Z +1214,2005-06-15T03:18:40Z,4482,46,2005-06-20T07:32:40Z,1,2020-02-15T06:59:37Z +1215,2005-06-15T03:21:00Z,242,102,2005-06-19T03:39:00Z,1,2020-02-15T06:59:37Z +1216,2005-06-15T03:23:48Z,3973,100,2005-06-18T03:35:48Z,1,2020-02-15T06:59:37Z +1217,2005-06-15T03:24:14Z,600,203,2005-06-18T22:37:14Z,2,2020-02-15T06:59:37Z +1218,2005-06-15T03:24:44Z,239,371,2005-06-21T22:45:44Z,2,2020-02-15T06:59:37Z +1219,2005-06-15T03:25:59Z,3005,330,2005-06-20T00:37:59Z,1,2020-02-15T06:59:37Z +1220,2005-06-15T03:26:15Z,1621,290,2005-06-23T08:17:15Z,1,2020-02-15T06:59:37Z +1221,2005-06-15T03:35:16Z,2124,403,2005-06-18T03:11:16Z,1,2020-02-15T06:59:37Z +1222,2005-06-15T03:38:49Z,2799,168,2005-06-17T22:30:49Z,1,2020-02-15T06:59:37Z +1223,2005-06-15T03:38:53Z,1299,50,2005-06-20T01:00:53Z,2,2020-02-15T06:59:37Z +1224,2005-06-15T03:44:25Z,1572,369,2005-06-17T03:49:25Z,2,2020-02-15T06:59:37Z +1225,2005-06-15T03:45:35Z,1929,434,2005-06-19T02:03:35Z,1,2020-02-15T06:59:37Z +1226,2005-06-15T03:46:10Z,2290,409,2005-06-23T02:00:10Z,1,2020-02-15T06:59:37Z +1227,2005-06-15T03:50:03Z,654,428,2005-06-21T23:48:03Z,2,2020-02-15T06:59:37Z +1228,2005-06-15T03:50:36Z,4473,398,2005-06-17T22:41:36Z,1,2020-02-15T06:59:37Z +1229,2005-06-15T03:53:13Z,2140,468,2005-06-18T04:09:13Z,1,2020-02-15T06:59:37Z +1230,2005-06-15T04:04:09Z,2324,447,2005-06-16T02:21:09Z,1,2020-02-15T06:59:37Z +1231,2005-06-15T04:04:41Z,3003,302,2005-06-20T23:52:41Z,2,2020-02-15T06:59:37Z +1232,2005-06-15T04:18:10Z,2743,391,2005-06-17T06:02:10Z,2,2020-02-15T06:59:37Z +1233,2005-06-15T04:18:37Z,4214,550,2005-06-22T03:36:37Z,1,2020-02-15T06:59:37Z +1234,2005-06-15T04:21:52Z,709,529,2005-06-22T03:25:52Z,1,2020-02-15T06:59:37Z +1235,2005-06-15T04:31:28Z,1000,255,2005-06-22T10:08:28Z,1,2020-02-15T06:59:37Z +1236,2005-06-15T04:34:27Z,3182,66,2005-06-18T08:15:27Z,1,2020-02-15T06:59:37Z +1237,2005-06-15T04:44:10Z,3249,49,2005-06-23T07:00:10Z,2,2020-02-15T06:59:37Z +1238,2005-06-15T04:49:08Z,3534,205,2005-06-20T00:06:08Z,1,2020-02-15T06:59:37Z +1239,2005-06-15T04:53:01Z,3731,444,2005-06-16T07:03:01Z,1,2020-02-15T06:59:37Z +1240,2005-06-15T04:58:07Z,3841,28,2005-06-17T23:56:07Z,1,2020-02-15T06:59:37Z +1241,2005-06-15T04:59:43Z,4377,62,2005-06-24T03:32:43Z,2,2020-02-15T06:59:37Z +1242,2005-06-15T05:05:07Z,821,141,2005-06-22T04:57:07Z,1,2020-02-15T06:59:37Z +1243,2005-06-15T05:07:32Z,2629,107,2005-06-21T08:17:32Z,2,2020-02-15T06:59:37Z +1244,2005-06-15T05:08:40Z,1026,515,2005-06-20T10:41:40Z,1,2020-02-15T06:59:37Z +1245,2005-06-15T05:09:01Z,1314,234,2005-06-22T06:55:01Z,2,2020-02-15T06:59:37Z +1246,2005-06-15T05:11:19Z,431,357,2005-06-21T02:21:19Z,1,2020-02-15T06:59:37Z +1247,2005-06-15T05:16:40Z,4049,287,2005-06-23T11:01:40Z,1,2020-02-15T06:59:37Z +1248,2005-06-15T05:33:52Z,3878,544,2005-06-19T06:56:52Z,2,2020-02-15T06:59:37Z +1249,2005-06-15T05:38:09Z,2120,403,2005-06-22T10:29:09Z,1,2020-02-15T06:59:37Z +1250,2005-06-15T05:55:40Z,4360,38,2005-06-23T03:11:40Z,2,2020-02-15T06:59:37Z +1251,2005-06-15T05:58:55Z,3307,442,2005-06-23T02:45:55Z,2,2020-02-15T06:59:37Z +1252,2005-06-15T06:05:18Z,1147,89,2005-06-24T07:40:18Z,1,2020-02-15T06:59:37Z +1253,2005-06-15T06:06:33Z,3242,498,2005-06-21T04:13:33Z,2,2020-02-15T06:59:37Z +1254,2005-06-15T06:11:16Z,3986,571,2005-06-21T06:40:16Z,2,2020-02-15T06:59:37Z +1255,2005-06-15T06:13:45Z,1433,526,2005-06-16T03:59:45Z,2,2020-02-15T06:59:37Z +1256,2005-06-15T06:13:57Z,1437,470,2005-06-16T06:54:57Z,2,2020-02-15T06:59:37Z +1257,2005-06-15T06:15:36Z,1938,267,2005-06-21T01:04:36Z,2,2020-02-15T06:59:37Z +1258,2005-06-15T06:21:30Z,4530,320,2005-06-18T05:43:30Z,2,2020-02-15T06:59:37Z +1259,2005-06-15T06:37:55Z,4460,570,2005-06-23T04:02:55Z,2,2020-02-15T06:59:37Z +1260,2005-06-15T06:42:25Z,330,586,2005-06-16T10:44:25Z,2,2020-02-15T06:59:37Z +1261,2005-06-15T06:52:57Z,2447,95,2005-06-21T01:47:57Z,2,2020-02-15T06:59:37Z +1262,2005-06-15T06:54:53Z,4495,236,2005-06-22T08:09:53Z,2,2020-02-15T06:59:37Z +1263,2005-06-15T06:56:39Z,4144,540,2005-06-16T11:08:39Z,1,2020-02-15T06:59:37Z +1264,2005-06-15T06:59:39Z,4176,439,2005-06-18T08:10:39Z,2,2020-02-15T06:59:37Z +1265,2005-06-15T07:00:50Z,982,163,2005-06-19T12:27:50Z,1,2020-02-15T06:59:37Z +1266,2005-06-15T07:11:39Z,2230,96,2005-06-21T02:59:39Z,2,2020-02-15T06:59:37Z +1267,2005-06-15T07:21:21Z,4246,509,2005-06-17T08:12:21Z,2,2020-02-15T06:59:37Z +1268,2005-06-15T07:29:30Z,3641,142,2005-06-23T12:36:30Z,1,2020-02-15T06:59:37Z +1269,2005-06-15T07:29:59Z,108,59,2005-06-16T13:26:59Z,2,2020-02-15T06:59:37Z +1270,2005-06-15T07:30:22Z,62,395,2005-06-18T11:31:22Z,2,2020-02-15T06:59:37Z +1271,2005-06-15T07:32:24Z,379,560,2005-06-21T05:12:24Z,1,2020-02-15T06:59:37Z +1272,2005-06-15T07:42:58Z,3128,135,2005-06-18T12:00:58Z,1,2020-02-15T06:59:37Z +1273,2005-06-15T07:52:35Z,361,530,2005-06-21T04:55:35Z,1,2020-02-15T06:59:37Z +1274,2005-06-15T07:52:52Z,2765,430,2005-06-20T10:01:52Z,1,2020-02-15T06:59:37Z +1275,2005-06-15T07:55:43Z,950,214,2005-06-20T06:30:43Z,1,2020-02-15T06:59:37Z +1276,2005-06-15T08:00:13Z,1508,388,2005-06-24T02:55:13Z,2,2020-02-15T06:59:37Z +1277,2005-06-15T08:01:29Z,76,464,2005-06-22T07:16:29Z,2,2020-02-15T06:59:37Z +1278,2005-06-15T08:09:12Z,4471,191,2005-06-17T04:05:12Z,2,2020-02-15T06:59:37Z +1279,2005-06-15T08:13:57Z,698,183,2005-06-18T09:36:57Z,2,2020-02-15T06:59:37Z +1280,2005-06-15T08:16:06Z,2597,266,2005-06-21T04:10:06Z,2,2020-02-15T06:59:37Z +1281,2005-06-15T08:21:39Z,2963,511,2005-06-17T11:03:39Z,1,2020-02-15T06:59:37Z +1282,2005-06-15T08:25:33Z,186,539,2005-06-21T04:02:33Z,1,2020-02-15T06:59:37Z +1283,2005-06-15T08:27:30Z,3177,470,2005-06-16T09:46:30Z,2,2020-02-15T06:59:37Z +1284,2005-06-15T08:27:33Z,1387,463,2005-06-17T03:58:33Z,1,2020-02-15T06:59:37Z +1285,2005-06-15T08:33:06Z,1054,254,2005-06-19T07:36:06Z,1,2020-02-15T06:59:37Z +1286,2005-06-15T08:41:13Z,774,179,2005-06-23T13:13:13Z,2,2020-02-15T06:59:37Z +1287,2005-06-15T08:41:38Z,4204,104,2005-06-22T14:02:38Z,1,2020-02-15T06:59:37Z +1288,2005-06-15T08:41:52Z,830,456,2005-06-19T05:30:52Z,2,2020-02-15T06:59:37Z +1289,2005-06-15T08:44:09Z,3154,522,2005-06-21T06:04:09Z,1,2020-02-15T06:59:37Z +1290,2005-06-15T08:52:44Z,1921,540,2005-06-24T13:36:44Z,2,2020-02-15T06:59:37Z +1291,2005-06-15T08:55:01Z,3090,176,2005-06-24T04:22:01Z,1,2020-02-15T06:59:37Z +1292,2005-06-15T09:03:52Z,4535,178,2005-06-21T07:53:52Z,1,2020-02-15T06:59:37Z +1293,2005-06-15T09:06:24Z,2882,127,2005-06-18T06:58:24Z,1,2020-02-15T06:59:37Z +1294,2005-06-15T09:09:27Z,339,327,2005-06-19T04:43:27Z,1,2020-02-15T06:59:37Z +1295,2005-06-15T09:17:20Z,2897,449,2005-06-18T10:14:20Z,2,2020-02-15T06:59:37Z +1296,2005-06-15T09:23:59Z,1760,200,2005-06-19T03:44:59Z,2,2020-02-15T06:59:37Z +1297,2005-06-15T09:31:28Z,1075,4,2005-06-19T04:33:28Z,1,2020-02-15T06:59:37Z +1298,2005-06-15T09:32:53Z,4163,334,2005-06-16T12:40:53Z,2,2020-02-15T06:59:37Z +1299,2005-06-15T09:34:50Z,1584,91,2005-06-21T12:07:50Z,1,2020-02-15T06:59:37Z +1300,2005-06-15T09:36:19Z,2524,186,2005-06-17T13:54:19Z,2,2020-02-15T06:59:37Z +1301,2005-06-15T09:46:33Z,1484,33,2005-06-24T08:56:33Z,2,2020-02-15T06:59:37Z +1302,2005-06-15T09:48:37Z,324,285,2005-06-22T06:18:37Z,1,2020-02-15T06:59:37Z +1303,2005-06-15T09:55:57Z,2001,365,2005-06-20T14:26:57Z,2,2020-02-15T06:59:37Z +1304,2005-06-15T09:56:02Z,1304,242,2005-06-24T07:00:02Z,1,2020-02-15T06:59:37Z +1305,2005-06-15T09:59:16Z,187,8,2005-06-19T09:48:16Z,2,2020-02-15T06:59:37Z +1306,2005-06-15T09:59:24Z,2132,524,2005-06-19T09:37:24Z,2,2020-02-15T06:59:37Z +1307,2005-06-15T10:06:15Z,368,507,2005-06-20T04:50:15Z,2,2020-02-15T06:59:37Z +1308,2005-06-15T10:07:48Z,220,236,2005-06-24T15:24:48Z,1,2020-02-15T06:59:37Z +1309,2005-06-15T10:10:49Z,2356,200,2005-06-16T12:44:49Z,1,2020-02-15T06:59:37Z +1310,2005-06-15T10:11:42Z,2045,27,2005-06-16T15:00:42Z,1,2020-02-15T06:59:37Z +1311,2005-06-15T10:11:59Z,3114,326,2005-06-17T08:44:59Z,2,2020-02-15T06:59:37Z +1312,2005-06-15T10:16:27Z,3608,313,2005-06-20T06:53:27Z,1,2020-02-15T06:59:37Z +1313,2005-06-15T10:18:34Z,1657,448,2005-06-23T06:25:34Z,1,2020-02-15T06:59:37Z +1314,2005-06-15T10:21:45Z,1359,538,2005-06-21T14:10:45Z,1,2020-02-15T06:59:37Z +1315,2005-06-15T10:23:08Z,3844,405,2005-06-21T15:06:08Z,1,2020-02-15T06:59:37Z +1316,2005-06-15T10:26:23Z,3891,138,2005-06-21T09:25:23Z,2,2020-02-15T06:59:37Z +1317,2005-06-15T10:30:19Z,3696,316,2005-06-24T08:18:19Z,1,2020-02-15T06:59:37Z +1318,2005-06-15T10:34:26Z,2760,341,2005-06-20T16:20:26Z,1,2020-02-15T06:59:37Z +1319,2005-06-15T10:39:05Z,4296,190,2005-06-18T05:25:05Z,1,2020-02-15T06:59:37Z +1320,2005-06-15T10:42:13Z,4484,84,2005-06-17T13:44:13Z,1,2020-02-15T06:59:37Z +1321,2005-06-15T10:49:17Z,3516,204,2005-06-16T15:30:17Z,1,2020-02-15T06:59:37Z +1322,2005-06-15T10:55:09Z,2076,217,2005-06-18T15:14:09Z,2,2020-02-15T06:59:37Z +1323,2005-06-15T10:55:17Z,3273,187,2005-06-24T09:51:17Z,1,2020-02-15T06:59:37Z +1324,2005-06-15T11:02:45Z,764,394,2005-06-17T07:14:45Z,1,2020-02-15T06:59:37Z +1325,2005-06-15T11:03:24Z,52,193,2005-06-20T10:54:24Z,1,2020-02-15T06:59:37Z +1326,2005-06-15T11:07:39Z,59,548,2005-06-22T05:55:39Z,2,2020-02-15T06:59:37Z +1327,2005-06-15T11:11:39Z,403,539,2005-06-22T10:45:39Z,1,2020-02-15T06:59:37Z +1328,2005-06-15T11:23:27Z,3665,295,2005-06-19T12:42:27Z,2,2020-02-15T06:59:37Z +1329,2005-06-15T11:25:06Z,1154,359,2005-06-17T16:10:06Z,2,2020-02-15T06:59:37Z +1330,2005-06-15T11:29:17Z,1219,587,2005-06-24T13:36:17Z,2,2020-02-15T06:59:37Z +1331,2005-06-15T11:34:33Z,3089,277,2005-06-21T09:46:33Z,1,2020-02-15T06:59:37Z +1332,2005-06-15T11:36:01Z,1412,116,2005-06-17T14:29:01Z,1,2020-02-15T06:59:37Z +1333,2005-06-15T11:37:08Z,448,310,2005-06-16T10:13:08Z,2,2020-02-15T06:59:37Z +1334,2005-06-15T11:43:09Z,1242,269,2005-06-20T15:45:09Z,2,2020-02-15T06:59:37Z +1335,2005-06-15T11:51:30Z,1713,64,2005-06-16T16:42:30Z,2,2020-02-15T06:59:37Z +1336,2005-06-15T12:01:34Z,1696,290,2005-06-23T12:05:34Z,1,2020-02-15T06:59:37Z +1337,2005-06-15T12:12:42Z,4014,465,2005-06-20T12:38:42Z,2,2020-02-15T06:59:37Z +1338,2005-06-15T12:17:34Z,1206,25,2005-06-19T07:40:34Z,2,2020-02-15T06:59:37Z +1339,2005-06-15T12:21:56Z,424,162,2005-06-19T07:46:56Z,1,2020-02-15T06:59:37Z +1340,2005-06-15T12:24:15Z,251,100,2005-06-22T13:02:15Z,1,2020-02-15T06:59:37Z +1341,2005-06-15T12:26:18Z,3363,344,2005-06-21T07:26:18Z,2,2020-02-15T06:59:37Z +1342,2005-06-15T12:26:21Z,4429,427,2005-06-22T11:23:21Z,1,2020-02-15T06:59:37Z +1343,2005-06-15T12:27:19Z,2393,416,2005-06-21T16:57:19Z,1,2020-02-15T06:59:37Z +1344,2005-06-15T12:29:41Z,1625,585,2005-06-22T12:45:41Z,2,2020-02-15T06:59:37Z +1345,2005-06-15T12:32:13Z,1041,270,2005-06-24T14:02:13Z,1,2020-02-15T06:59:37Z +1346,2005-06-15T12:39:52Z,4540,585,2005-06-24T17:43:52Z,1,2020-02-15T06:59:37Z +1347,2005-06-15T12:43:43Z,374,190,2005-06-16T09:55:43Z,1,2020-02-15T06:59:37Z +1348,2005-06-15T12:45:30Z,2078,196,2005-06-17T17:12:30Z,1,2020-02-15T06:59:37Z +1349,2005-06-15T12:49:02Z,1131,267,2005-06-17T15:20:02Z,1,2020-02-15T06:59:37Z +1350,2005-06-15T12:50:25Z,4261,316,2005-06-23T11:35:25Z,1,2020-02-15T06:59:37Z +1351,2005-06-15T12:51:03Z,2364,484,2005-06-22T07:23:03Z,1,2020-02-15T06:59:37Z +1352,2005-06-15T12:58:27Z,4352,276,2005-06-18T10:57:27Z,1,2020-02-15T06:59:37Z +1353,2005-06-15T13:13:36Z,2711,480,2005-06-21T08:46:36Z,2,2020-02-15T06:59:37Z +1354,2005-06-15T13:13:49Z,1294,83,2005-06-23T13:08:49Z,2,2020-02-15T06:59:37Z +1355,2005-06-15T13:13:59Z,4203,499,2005-06-20T12:23:59Z,1,2020-02-15T06:59:37Z +1356,2005-06-15T13:17:01Z,1318,212,2005-06-19T16:22:01Z,1,2020-02-15T06:59:37Z +1357,2005-06-15T13:26:23Z,2285,205,2005-06-23T14:12:23Z,1,2020-02-15T06:59:37Z +1358,2005-06-15T13:28:48Z,2025,442,2005-06-21T13:40:48Z,1,2020-02-15T06:59:37Z +1359,2005-06-15T13:30:30Z,3140,353,2005-06-17T14:55:30Z,1,2020-02-15T06:59:37Z +1360,2005-06-15T13:32:15Z,4107,14,2005-06-18T10:59:15Z,2,2020-02-15T06:59:37Z +1361,2005-06-15T13:37:38Z,4338,115,2005-06-19T17:08:38Z,1,2020-02-15T06:59:37Z +1362,2005-06-15T13:53:32Z,4524,98,2005-06-19T16:05:32Z,1,2020-02-15T06:59:37Z +1363,2005-06-15T14:05:11Z,771,197,2005-06-17T19:53:11Z,2,2020-02-15T06:59:37Z +1364,2005-06-15T14:05:32Z,115,400,2005-06-16T15:31:32Z,1,2020-02-15T06:59:37Z +1365,2005-06-15T14:09:55Z,3813,25,2005-06-19T18:11:55Z,2,2020-02-15T06:59:37Z +1366,2005-06-15T14:21:00Z,4238,576,2005-06-24T17:36:00Z,1,2020-02-15T06:59:37Z +1367,2005-06-15T14:25:17Z,1505,94,2005-06-21T19:15:17Z,1,2020-02-15T06:59:37Z +1368,2005-06-15T14:27:47Z,2020,222,2005-06-23T18:07:47Z,2,2020-02-15T06:59:37Z +1369,2005-06-15T14:29:14Z,679,221,2005-06-16T13:01:14Z,1,2020-02-15T06:59:37Z +1370,2005-06-15T14:31:05Z,644,396,2005-06-22T19:23:05Z,2,2020-02-15T06:59:37Z +1371,2005-06-15T14:38:15Z,760,491,2005-06-23T15:36:15Z,1,2020-02-15T06:59:37Z +1372,2005-06-15T14:45:48Z,3740,108,2005-06-17T18:02:48Z,2,2020-02-15T06:59:37Z +1373,2005-06-15T14:48:04Z,284,51,2005-06-22T09:48:04Z,1,2020-02-15T06:59:37Z +1374,2005-06-15T14:49:54Z,3353,120,2005-06-22T12:30:54Z,1,2020-02-15T06:59:37Z +1375,2005-06-15T14:54:56Z,3555,500,2005-06-21T14:48:56Z,2,2020-02-15T06:59:37Z +1376,2005-06-15T14:59:06Z,4271,215,2005-06-19T17:34:06Z,1,2020-02-15T06:59:37Z +1377,2005-06-15T15:02:03Z,3410,245,2005-06-22T14:54:03Z,2,2020-02-15T06:59:37Z +1378,2005-06-15T15:03:15Z,4372,253,2005-06-19T16:50:15Z,1,2020-02-15T06:59:37Z +1379,2005-06-15T15:05:10Z,810,212,2005-06-18T12:11:10Z,1,2020-02-15T06:59:37Z +1380,2005-06-15T15:13:10Z,3376,158,2005-06-18T12:42:10Z,2,2020-02-15T06:59:37Z +1381,2005-06-15T15:17:21Z,3262,300,2005-06-20T17:07:21Z,2,2020-02-15T06:59:37Z +1382,2005-06-15T15:18:08Z,3133,455,2005-06-22T09:22:08Z,2,2020-02-15T06:59:37Z +1383,2005-06-15T15:20:06Z,1281,379,2005-06-24T18:42:06Z,2,2020-02-15T06:59:37Z +1384,2005-06-15T15:22:03Z,4242,242,2005-06-18T18:11:03Z,1,2020-02-15T06:59:37Z +1385,2005-06-15T15:28:23Z,4073,396,2005-06-18T18:37:23Z,1,2020-02-15T06:59:37Z +1386,2005-06-15T15:38:58Z,1296,322,2005-06-20T16:28:58Z,2,2020-02-15T06:59:37Z +1387,2005-06-15T15:40:56Z,515,278,2005-06-17T10:39:56Z,1,2020-02-15T06:59:37Z +1388,2005-06-15T15:48:41Z,3987,500,2005-06-22T17:51:41Z,1,2020-02-15T06:59:37Z +1389,2005-06-15T15:49:01Z,965,472,2005-06-19T11:08:01Z,2,2020-02-15T06:59:37Z +1390,2005-06-15T16:06:29Z,4502,254,2005-06-19T13:11:29Z,1,2020-02-15T06:59:37Z +1391,2005-06-15T16:11:21Z,4213,273,2005-06-22T21:32:21Z,1,2020-02-15T06:59:37Z +1392,2005-06-15T16:12:27Z,363,460,2005-06-16T17:30:27Z,2,2020-02-15T06:59:37Z +1393,2005-06-15T16:12:50Z,2767,177,2005-06-19T10:40:50Z,2,2020-02-15T06:59:37Z +1394,2005-06-15T16:17:21Z,2802,268,2005-06-21T20:44:21Z,2,2020-02-15T06:59:37Z +1395,2005-06-15T16:21:04Z,753,252,2005-06-23T12:52:04Z,2,2020-02-15T06:59:37Z +1396,2005-06-15T16:22:38Z,1007,103,2005-06-17T15:53:38Z,2,2020-02-15T06:59:37Z +1397,2005-06-15T16:25:26Z,1830,444,2005-06-21T20:45:26Z,1,2020-02-15T06:59:37Z +1398,2005-06-15T16:28:42Z,4402,527,2005-06-16T12:11:42Z,1,2020-02-15T06:59:37Z +1399,2005-06-15T16:29:51Z,1435,469,2005-06-18T14:06:51Z,1,2020-02-15T06:59:37Z +1400,2005-06-15T16:29:56Z,230,571,2005-06-21T14:43:56Z,2,2020-02-15T06:59:37Z +1401,2005-06-15T16:30:22Z,4081,366,2005-06-21T11:07:22Z,2,2020-02-15T06:59:37Z +1402,2005-06-15T16:31:08Z,1951,381,2005-06-24T19:31:08Z,1,2020-02-15T06:59:37Z +1403,2005-06-15T16:31:59Z,3380,546,2005-06-22T14:23:59Z,2,2020-02-15T06:59:37Z +1404,2005-06-15T16:38:53Z,2776,375,2005-06-16T20:37:53Z,1,2020-02-15T06:59:37Z +1405,2005-06-15T16:41:26Z,3184,243,2005-06-21T18:16:26Z,1,2020-02-15T06:59:37Z +1406,2005-06-15T16:44:00Z,3118,199,2005-06-21T11:22:00Z,2,2020-02-15T06:59:37Z +1407,2005-06-15T16:45:07Z,1286,89,2005-06-23T14:01:07Z,1,2020-02-15T06:59:37Z +1408,2005-06-15T16:57:58Z,2655,396,2005-06-22T21:08:58Z,1,2020-02-15T06:59:37Z +1409,2005-06-15T16:58:12Z,1398,297,2005-06-21T11:21:12Z,2,2020-02-15T06:59:37Z +1410,2005-06-15T16:59:46Z,809,356,2005-06-21T16:38:46Z,1,2020-02-15T06:59:37Z +1411,2005-06-15T17:05:36Z,2276,520,2005-06-21T14:05:36Z,1,2020-02-15T06:59:37Z +1412,2005-06-15T17:09:48Z,4236,166,2005-06-18T17:05:48Z,2,2020-02-15T06:59:37Z +1413,2005-06-15T17:25:07Z,3625,96,2005-06-21T17:17:07Z,2,2020-02-15T06:59:37Z +1414,2005-06-15T17:26:32Z,4005,304,2005-06-22T22:30:32Z,1,2020-02-15T06:59:37Z +1415,2005-06-15T17:31:57Z,1885,331,2005-06-16T22:22:57Z,2,2020-02-15T06:59:37Z +1416,2005-06-15T17:44:57Z,3816,167,2005-06-22T20:53:57Z,2,2020-02-15T06:59:37Z +1417,2005-06-15T17:45:51Z,1334,570,2005-06-19T14:00:51Z,2,2020-02-15T06:59:37Z +1418,2005-06-15T17:51:27Z,2974,591,2005-06-18T23:20:27Z,2,2020-02-15T06:59:37Z +1419,2005-06-15T17:54:50Z,1208,312,2005-06-17T19:44:50Z,2,2020-02-15T06:59:37Z +1420,2005-06-15T17:56:14Z,4149,255,2005-06-24T15:45:14Z,2,2020-02-15T06:59:37Z +1421,2005-06-15T17:57:04Z,2439,533,2005-06-21T20:38:04Z,2,2020-02-15T06:59:37Z +1422,2005-06-15T18:02:53Z,1021,1,2005-06-19T15:54:53Z,2,2020-02-15T06:59:37Z +1423,2005-06-15T18:08:12Z,1396,592,2005-06-24T19:13:12Z,1,2020-02-15T06:59:37Z +1424,2005-06-15T18:08:14Z,887,224,2005-06-24T23:16:14Z,2,2020-02-15T06:59:37Z +1425,2005-06-15T18:13:46Z,1308,108,2005-06-18T22:50:46Z,2,2020-02-15T06:59:37Z +1426,2005-06-15T18:16:24Z,4412,363,2005-06-18T22:15:24Z,2,2020-02-15T06:59:37Z +1427,2005-06-15T18:17:28Z,14,100,2005-06-16T15:47:28Z,1,2020-02-15T06:59:37Z +1428,2005-06-15T18:19:30Z,3689,583,2005-06-22T23:05:30Z,2,2020-02-15T06:59:37Z +1429,2005-06-15T18:24:10Z,4116,362,2005-06-18T16:30:10Z,1,2020-02-15T06:59:37Z +1430,2005-06-15T18:24:55Z,3412,194,2005-06-16T12:26:55Z,1,2020-02-15T06:59:37Z +1431,2005-06-15T18:26:29Z,3193,438,2005-06-21T17:33:29Z,1,2020-02-15T06:59:37Z +1432,2005-06-15T18:27:24Z,523,339,2005-06-21T14:03:24Z,2,2020-02-15T06:59:37Z +1433,2005-06-15T18:30:00Z,2310,88,2005-06-16T15:14:00Z,1,2020-02-15T06:59:37Z +1434,2005-06-15T18:30:46Z,4228,544,2005-06-24T17:51:46Z,1,2020-02-15T06:59:37Z +1435,2005-06-15T18:32:30Z,2769,510,2005-06-24T12:44:30Z,2,2020-02-15T06:59:37Z +1436,2005-06-15T18:35:40Z,924,584,2005-06-21T15:04:40Z,1,2020-02-15T06:59:37Z +1437,2005-06-15T18:37:04Z,3263,96,2005-06-20T12:56:04Z,1,2020-02-15T06:59:37Z +1438,2005-06-15T18:38:51Z,1816,82,2005-06-17T23:50:51Z,1,2020-02-15T06:59:37Z +1439,2005-06-15T18:45:32Z,3155,589,2005-06-22T15:57:32Z,2,2020-02-15T06:59:37Z +1440,2005-06-15T18:53:14Z,2921,26,2005-06-24T15:28:14Z,1,2020-02-15T06:59:37Z +1441,2005-06-15T18:54:21Z,2095,444,2005-06-22T22:48:21Z,2,2020-02-15T06:59:37Z +1442,2005-06-15T18:55:34Z,3912,122,2005-06-22T20:41:34Z,2,2020-02-15T06:59:37Z +1443,2005-06-15T18:57:51Z,2485,435,2005-06-18T14:18:51Z,2,2020-02-15T06:59:37Z +1444,2005-06-15T19:08:16Z,1303,539,2005-06-24T15:20:16Z,2,2020-02-15T06:59:37Z +1445,2005-06-15T19:10:07Z,3189,537,2005-06-19T20:27:07Z,2,2020-02-15T06:59:37Z +1446,2005-06-15T19:13:45Z,1989,506,2005-06-23T19:43:45Z,2,2020-02-15T06:59:37Z +1447,2005-06-15T19:13:51Z,984,471,2005-06-21T22:56:51Z,1,2020-02-15T06:59:37Z +1448,2005-06-15T19:17:16Z,2781,246,2005-06-23T21:56:16Z,2,2020-02-15T06:59:37Z +1449,2005-06-15T19:19:16Z,1525,471,2005-06-18T15:24:16Z,2,2020-02-15T06:59:37Z +1450,2005-06-15T19:22:08Z,4132,268,2005-06-16T17:53:08Z,2,2020-02-15T06:59:37Z +1451,2005-06-15T19:30:18Z,3560,18,2005-06-19T19:22:18Z,2,2020-02-15T06:59:37Z +1452,2005-06-15T19:32:52Z,4348,243,2005-06-16T13:45:52Z,1,2020-02-15T06:59:37Z +1453,2005-06-15T19:36:39Z,3274,457,2005-06-19T00:16:39Z,2,2020-02-15T06:59:37Z +1454,2005-06-15T19:49:41Z,102,298,2005-06-17T15:17:41Z,2,2020-02-15T06:59:37Z +1455,2005-06-15T19:51:06Z,2194,358,2005-06-18T21:54:06Z,2,2020-02-15T06:59:37Z +1456,2005-06-15T20:00:11Z,632,590,2005-06-23T18:03:11Z,2,2020-02-15T06:59:37Z +1457,2005-06-15T20:05:49Z,730,345,2005-06-19T15:35:49Z,1,2020-02-15T06:59:37Z +1458,2005-06-15T20:24:05Z,3546,178,2005-06-21T01:22:05Z,1,2020-02-15T06:59:37Z +1459,2005-06-15T20:25:53Z,1862,218,2005-06-22T23:34:53Z,2,2020-02-15T06:59:37Z +1460,2005-06-15T20:27:02Z,1405,565,2005-06-16T16:21:02Z,1,2020-02-15T06:59:37Z +1461,2005-06-15T20:32:08Z,4479,216,2005-06-23T01:08:08Z,1,2020-02-15T06:59:37Z +1462,2005-06-15T20:37:40Z,653,187,2005-06-18T19:36:40Z,2,2020-02-15T06:59:37Z +1463,2005-06-15T20:37:51Z,2984,569,2005-06-21T16:46:51Z,2,2020-02-15T06:59:37Z +1464,2005-06-15T20:38:14Z,4113,387,2005-06-17T14:52:14Z,2,2020-02-15T06:59:37Z +1465,2005-06-15T20:43:08Z,609,387,2005-06-18T23:00:08Z,1,2020-02-15T06:59:37Z +1466,2005-06-15T20:46:04Z,1057,288,2005-06-24T22:46:04Z,1,2020-02-15T06:59:37Z +1467,2005-06-15T20:47:10Z,688,506,2005-06-22T00:30:10Z,1,2020-02-15T06:59:37Z +1468,2005-06-15T20:48:22Z,228,230,2005-06-21T19:48:22Z,1,2020-02-15T06:59:37Z +1469,2005-06-15T20:52:36Z,2451,580,2005-06-21T19:55:36Z,1,2020-02-15T06:59:37Z +1470,2005-06-15T20:53:07Z,4044,11,2005-06-25T02:12:07Z,1,2020-02-15T06:59:37Z +1471,2005-06-15T20:53:26Z,565,428,2005-06-24T18:25:26Z,2,2020-02-15T06:59:37Z +1472,2005-06-15T20:54:55Z,4233,373,2005-06-24T21:52:55Z,2,2020-02-15T06:59:37Z +1473,2005-06-15T20:55:20Z,2377,249,2005-06-21T16:40:20Z,2,2020-02-15T06:59:37Z +1474,2005-06-15T20:55:42Z,164,202,2005-06-19T02:41:42Z,2,2020-02-15T06:59:37Z +1475,2005-06-15T21:08:01Z,1834,344,2005-06-18T22:33:01Z,2,2020-02-15T06:59:37Z +1476,2005-06-15T21:08:46Z,1407,1,2005-06-25T02:26:46Z,1,2020-02-15T06:59:37Z +1477,2005-06-15T21:11:18Z,418,51,2005-06-19T02:05:18Z,1,2020-02-15T06:59:37Z +1478,2005-06-15T21:12:13Z,435,336,2005-06-18T21:43:13Z,2,2020-02-15T06:59:37Z +1479,2005-06-15T21:13:38Z,172,592,2005-06-17T01:26:38Z,2,2020-02-15T06:59:37Z +1480,2005-06-15T21:17:17Z,2598,27,2005-06-23T22:01:17Z,1,2020-02-15T06:59:37Z +1481,2005-06-15T21:17:58Z,3041,125,2005-06-18T17:53:58Z,2,2020-02-15T06:59:37Z +1482,2005-06-15T21:18:16Z,3980,60,2005-06-16T17:07:16Z,1,2020-02-15T06:59:37Z +1483,2005-06-15T21:21:58Z,1926,242,2005-06-24T00:44:58Z,2,2020-02-15T06:59:37Z +1484,2005-06-15T21:22:35Z,1589,320,2005-06-20T02:27:35Z,2,2020-02-15T06:59:37Z +1485,2005-06-15T21:24:10Z,194,281,2005-06-24T23:03:10Z,1,2020-02-15T06:59:37Z +1486,2005-06-15T21:25:30Z,847,62,2005-06-16T16:36:30Z,1,2020-02-15T06:59:37Z +1487,2005-06-15T21:27:42Z,3791,76,2005-06-22T03:09:42Z,2,2020-02-15T06:59:37Z +1488,2005-06-15T21:39:54Z,1081,355,2005-06-16T20:33:54Z,1,2020-02-15T06:59:37Z +1489,2005-06-15T21:41:38Z,699,213,2005-06-22T17:00:38Z,1,2020-02-15T06:59:37Z +1490,2005-06-15T21:42:17Z,3515,123,2005-06-22T02:01:17Z,2,2020-02-15T06:59:37Z +1491,2005-06-15T21:48:18Z,848,354,2005-06-20T16:40:18Z,1,2020-02-15T06:59:37Z +1492,2005-06-15T21:48:35Z,4148,360,2005-06-17T17:18:35Z,1,2020-02-15T06:59:37Z +1493,2005-06-15T21:50:32Z,4581,235,2005-06-17T01:02:32Z,2,2020-02-15T06:59:37Z +1494,2005-06-15T21:54:20Z,244,575,2005-06-19T18:46:20Z,1,2020-02-15T06:59:37Z +1495,2005-06-15T21:54:31Z,1842,175,2005-06-19T00:08:31Z,2,2020-02-15T06:59:37Z +1496,2005-06-15T21:55:58Z,3915,290,2005-06-17T02:28:58Z,2,2020-02-15T06:59:37Z +1497,2005-06-15T21:56:39Z,2958,44,2005-06-20T20:32:39Z,1,2020-02-15T06:59:37Z +1498,2005-06-15T21:58:00Z,3690,352,2005-06-17T21:50:00Z,1,2020-02-15T06:59:37Z +1499,2005-06-15T21:58:07Z,165,375,2005-06-22T19:37:07Z,2,2020-02-15T06:59:37Z +1500,2005-06-15T22:00:45Z,2652,237,2005-06-18T16:19:45Z,2,2020-02-15T06:59:37Z +1501,2005-06-15T22:02:35Z,1780,148,2005-06-23T18:59:35Z,1,2020-02-15T06:59:37Z +1502,2005-06-15T22:03:14Z,3277,5,2005-06-23T18:42:14Z,2,2020-02-15T06:59:37Z +1503,2005-06-15T22:07:09Z,763,197,2005-06-20T23:15:09Z,1,2020-02-15T06:59:37Z +1504,2005-06-15T22:08:06Z,3621,423,2005-06-24T01:16:06Z,2,2020-02-15T06:59:37Z +1505,2005-06-15T22:12:50Z,2961,561,2005-06-17T21:37:50Z,2,2020-02-15T06:59:37Z +1506,2005-06-15T22:19:37Z,4085,404,2005-06-22T18:28:37Z,1,2020-02-15T06:59:37Z +1507,2005-06-15T22:25:26Z,2514,172,2005-06-19T17:00:26Z,1,2020-02-15T06:59:37Z +1508,2005-06-15T22:33:24Z,1141,511,2005-06-18T02:27:24Z,2,2020-02-15T06:59:37Z +1509,2005-06-15T22:35:53Z,655,167,2005-06-23T17:09:53Z,2,2020-02-15T06:59:37Z +1510,2005-06-15T22:39:34Z,989,338,2005-06-24T19:21:34Z,2,2020-02-15T06:59:37Z +1511,2005-06-15T22:45:06Z,1135,330,2005-06-22T22:48:06Z,1,2020-02-15T06:59:37Z +1512,2005-06-15T22:53:03Z,1628,452,2005-06-23T18:56:03Z,1,2020-02-15T06:59:37Z +1513,2005-06-15T22:53:30Z,1173,368,2005-06-23T01:00:30Z,1,2020-02-15T06:59:37Z +1514,2005-06-15T22:57:34Z,2937,410,2005-06-19T20:27:34Z,1,2020-02-15T06:59:37Z +1515,2005-06-15T23:07:50Z,3244,115,2005-06-20T02:33:50Z,2,2020-02-15T06:59:37Z +1516,2005-06-15T23:11:10Z,3702,530,2005-06-17T20:37:10Z,1,2020-02-15T06:59:37Z +1517,2005-06-15T23:20:26Z,3728,148,2005-06-23T23:23:26Z,1,2020-02-15T06:59:37Z +1518,2005-06-15T23:36:37Z,4537,237,2005-06-16T18:24:37Z,2,2020-02-15T06:59:37Z +1519,2005-06-15T23:55:27Z,1553,155,2005-06-21T04:06:27Z,2,2020-02-15T06:59:37Z +1520,2005-06-15T23:57:20Z,3419,341,2005-06-24T23:46:20Z,1,2020-02-15T06:59:37Z +1521,2005-06-15T23:58:53Z,4299,149,2005-06-18T03:10:53Z,1,2020-02-15T06:59:37Z +1522,2005-06-16T00:17:39Z,235,133,2005-06-22T05:38:39Z,1,2020-02-15T06:59:37Z +1523,2005-06-16T00:18:40Z,681,349,2005-06-17T02:50:40Z,2,2020-02-15T06:59:37Z +1524,2005-06-16T00:25:52Z,3439,177,2005-06-19T03:32:52Z,1,2020-02-15T06:59:37Z +1525,2005-06-16T00:26:07Z,1467,304,2005-06-19T22:37:07Z,2,2020-02-15T06:59:37Z +1526,2005-06-16T00:27:51Z,1940,499,2005-06-19T00:19:51Z,1,2020-02-15T06:59:37Z +1527,2005-06-16T00:31:40Z,296,188,2005-06-21T05:20:40Z,1,2020-02-15T06:59:37Z +1528,2005-06-16T00:32:52Z,4297,110,2005-06-25T01:07:52Z,2,2020-02-15T06:59:37Z +1529,2005-06-16T00:37:35Z,1688,362,2005-06-22T18:58:35Z,2,2020-02-15T06:59:37Z +1530,2005-06-16T00:38:07Z,2421,392,2005-06-24T02:45:07Z,2,2020-02-15T06:59:37Z +1531,2005-06-16T00:40:34Z,1388,515,2005-06-22T02:44:34Z,1,2020-02-15T06:59:37Z +1532,2005-06-16T00:41:31Z,3793,290,2005-06-20T21:36:31Z,1,2020-02-15T06:59:37Z +1533,2005-06-16T00:46:02Z,2452,116,2005-06-17T20:11:02Z,1,2020-02-15T06:59:37Z +1534,2005-06-16T00:49:32Z,3124,42,2005-06-18T02:41:32Z,1,2020-02-15T06:59:37Z +1535,2005-06-16T00:52:04Z,1096,202,2005-06-20T22:47:04Z,2,2020-02-15T06:59:37Z +1536,2005-06-16T00:52:22Z,3248,339,2005-06-17T21:43:22Z,1,2020-02-15T06:59:37Z +1537,2005-06-16T00:52:51Z,4577,594,2005-06-20T19:33:51Z,2,2020-02-15T06:59:37Z +1538,2005-06-16T01:05:50Z,708,430,2005-06-18T19:48:50Z,1,2020-02-15T06:59:37Z +1539,2005-06-16T01:11:25Z,267,390,2005-06-23T03:43:25Z,2,2020-02-15T06:59:37Z +1540,2005-06-16T01:14:56Z,2707,586,2005-06-20T23:31:56Z,2,2020-02-15T06:59:37Z +1541,2005-06-16T01:15:59Z,1911,189,2005-06-22T21:26:59Z,2,2020-02-15T06:59:37Z +1542,2005-06-16T01:20:05Z,1714,182,2005-06-22T03:59:05Z,1,2020-02-15T06:59:37Z +1543,2005-06-16T01:24:08Z,1188,28,2005-06-18T06:24:08Z,2,2020-02-15T06:59:37Z +1544,2005-06-16T01:28:22Z,269,43,2005-06-17T06:57:22Z,2,2020-02-15T06:59:37Z +1545,2005-06-16T01:31:23Z,762,563,2005-06-24T05:50:23Z,1,2020-02-15T06:59:37Z +1546,2005-06-16T01:34:05Z,3913,3,2005-06-24T04:27:05Z,1,2020-02-15T06:59:37Z +1547,2005-06-16T01:42:24Z,2909,343,2005-06-19T01:13:24Z,1,2020-02-15T06:59:37Z +1548,2005-06-16T01:43:33Z,2094,374,2005-06-23T22:04:33Z,2,2020-02-15T06:59:37Z +1549,2005-06-16T01:57:15Z,266,69,2005-06-18T23:30:15Z,1,2020-02-15T06:59:37Z +1550,2005-06-16T01:58:35Z,2003,345,2005-06-18T23:56:35Z,1,2020-02-15T06:59:37Z +1551,2005-06-16T02:01:15Z,4088,268,2005-06-22T07:33:15Z,1,2020-02-15T06:59:37Z +1552,2005-06-16T02:01:37Z,819,518,2005-06-21T00:59:37Z,2,2020-02-15T06:59:37Z +1553,2005-06-16T02:02:44Z,4026,416,2005-06-19T07:50:44Z,1,2020-02-15T06:59:37Z +1554,2005-06-16T02:16:47Z,715,155,2005-06-22T05:15:47Z,1,2020-02-15T06:59:37Z +1555,2005-06-16T02:17:07Z,4168,256,2005-06-22T06:28:07Z,1,2020-02-15T06:59:37Z +1556,2005-06-16T02:19:02Z,533,54,2005-06-17T22:36:02Z,2,2020-02-15T06:59:37Z +1557,2005-06-16T02:28:35Z,2617,439,2005-06-16T22:11:35Z,2,2020-02-15T06:59:37Z +1558,2005-06-16T02:33:53Z,4350,20,2005-06-19T20:50:53Z,2,2020-02-15T06:59:37Z +1559,2005-06-16T02:35:03Z,716,574,2005-06-19T21:22:03Z,1,2020-02-15T06:59:37Z +1560,2005-06-16T02:36:43Z,3418,239,2005-06-24T23:10:43Z,2,2020-02-15T06:59:37Z +1561,2005-06-16T02:41:30Z,2263,431,2005-06-22T05:19:30Z,1,2020-02-15T06:59:37Z +1562,2005-06-16T02:46:27Z,595,395,2005-06-23T00:56:27Z,2,2020-02-15T06:59:37Z +1563,2005-06-16T02:46:28Z,1516,262,2005-06-18T02:37:28Z,1,2020-02-15T06:59:37Z +1564,2005-06-16T02:47:07Z,145,343,2005-06-24T03:12:07Z,1,2020-02-15T06:59:37Z +1565,2005-06-16T03:13:09Z,3833,506,2005-06-16T22:42:09Z,2,2020-02-15T06:59:37Z +1566,2005-06-16T03:13:20Z,3215,174,2005-06-24T01:59:20Z,2,2020-02-15T06:59:37Z +1567,2005-06-16T03:13:30Z,3098,320,2005-06-21T23:56:30Z,1,2020-02-15T06:59:37Z +1568,2005-06-16T03:14:01Z,635,178,2005-06-19T21:17:01Z,2,2020-02-15T06:59:37Z +1569,2005-06-16T03:19:09Z,3927,363,2005-06-18T21:55:09Z,2,2020-02-15T06:59:37Z +1570,2005-06-16T03:21:33Z,3711,82,2005-06-22T22:03:33Z,2,2020-02-15T06:59:37Z +1571,2005-06-16T03:22:00Z,1019,54,2005-06-22T23:27:00Z,1,2020-02-15T06:59:37Z +1572,2005-06-16T03:23:22Z,4179,560,2005-06-20T06:03:22Z,2,2020-02-15T06:59:37Z +1573,2005-06-16T03:31:39Z,4536,371,2005-06-25T04:04:39Z,1,2020-02-15T06:59:37Z +1574,2005-06-16T03:39:56Z,161,305,2005-06-22T05:40:56Z,2,2020-02-15T06:59:37Z +1575,2005-06-16T03:41:38Z,3317,6,2005-06-22T03:01:38Z,2,2020-02-15T06:59:37Z +1576,2005-06-16T03:54:39Z,1014,442,2005-06-24T21:55:39Z,2,2020-02-15T06:59:37Z +1577,2005-06-16T04:03:28Z,367,327,2005-06-24T22:40:28Z,2,2020-02-15T06:59:37Z +1578,2005-06-16T04:08:16Z,3397,365,2005-06-23T07:57:16Z,1,2020-02-15T06:59:37Z +1579,2005-06-16T04:09:08Z,158,35,2005-06-21T05:21:08Z,2,2020-02-15T06:59:37Z +1580,2005-06-16T04:12:25Z,2479,87,2005-06-20T06:53:25Z,1,2020-02-15T06:59:37Z +1581,2005-06-16T04:28:45Z,4004,109,2005-06-18T07:07:45Z,1,2020-02-15T06:59:37Z +1582,2005-06-16T04:31:57Z,163,536,2005-06-22T01:25:57Z,1,2020-02-15T06:59:37Z +1583,2005-06-16T04:44:23Z,270,37,2005-06-18T03:44:23Z,1,2020-02-15T06:59:37Z +1584,2005-06-16T04:50:50Z,3545,434,2005-06-21T22:51:50Z,2,2020-02-15T06:59:37Z +1585,2005-06-16T04:51:13Z,1708,386,2005-06-24T00:23:13Z,2,2020-02-15T06:59:37Z +1586,2005-06-16T04:51:18Z,769,140,2005-06-21T06:54:18Z,2,2020-02-15T06:59:37Z +1587,2005-06-16T04:52:28Z,1781,62,2005-06-23T07:36:28Z,1,2020-02-15T06:59:37Z +1588,2005-06-16T04:53:21Z,4472,322,2005-06-25T07:29:21Z,2,2020-02-15T06:59:37Z +1589,2005-06-16T04:58:03Z,4307,293,2005-06-24T08:36:03Z,1,2020-02-15T06:59:37Z +1590,2005-06-16T05:11:41Z,3685,98,2005-06-23T10:11:41Z,1,2020-02-15T06:59:37Z +1591,2005-06-16T05:12:37Z,1648,83,2005-06-25T06:28:37Z,2,2020-02-15T06:59:37Z +1592,2005-06-16T05:14:37Z,3798,187,2005-06-20T10:52:37Z,2,2020-02-15T06:59:37Z +1593,2005-06-16T05:14:52Z,766,111,2005-06-24T08:00:52Z,2,2020-02-15T06:59:37Z +1594,2005-06-16T05:15:12Z,3858,470,2005-06-25T00:38:12Z,1,2020-02-15T06:59:37Z +1595,2005-06-16T05:23:46Z,1481,244,2005-06-20T00:37:46Z,1,2020-02-15T06:59:37Z +1596,2005-06-16T05:30:58Z,2552,416,2005-06-21T04:18:58Z,2,2020-02-15T06:59:37Z +1597,2005-06-16T05:47:03Z,743,432,2005-06-18T04:21:03Z,1,2020-02-15T06:59:37Z +1598,2005-06-16T06:02:39Z,4171,314,2005-06-23T09:09:39Z,1,2020-02-15T06:59:37Z +1599,2005-06-16T06:03:33Z,1476,215,2005-06-21T07:46:33Z,2,2020-02-15T06:59:37Z +1600,2005-06-16T06:04:12Z,2264,196,2005-06-19T09:39:12Z,2,2020-02-15T06:59:37Z +1601,2005-06-16T06:11:13Z,3115,428,2005-06-21T08:57:13Z,2,2020-02-15T06:59:37Z +1602,2005-06-16T06:12:40Z,1777,441,2005-06-19T03:50:40Z,2,2020-02-15T06:59:37Z +1603,2005-06-16T06:14:03Z,3308,395,2005-06-17T06:04:03Z,2,2020-02-15T06:59:37Z +1604,2005-06-16T06:14:25Z,3226,272,2005-06-17T03:53:25Z,2,2020-02-15T06:59:37Z +1605,2005-06-16T06:17:55Z,593,197,2005-06-25T01:25:55Z,1,2020-02-15T06:59:37Z +1606,2005-06-16T06:18:31Z,4290,253,2005-06-25T09:15:31Z,1,2020-02-15T06:59:37Z +1607,2005-06-16T06:25:35Z,3289,513,2005-06-20T02:50:35Z,2,2020-02-15T06:59:37Z +1608,2005-06-16T06:28:57Z,2581,386,2005-06-24T05:20:57Z,2,2020-02-15T06:59:37Z +1609,2005-06-16T06:34:59Z,2279,174,2005-06-17T09:41:59Z,2,2020-02-15T06:59:37Z +1610,2005-06-16T06:36:33Z,3551,534,2005-06-19T07:12:33Z,1,2020-02-15T06:59:37Z +1611,2005-06-16T06:41:35Z,1739,393,2005-06-25T06:13:35Z,2,2020-02-15T06:59:37Z +1612,2005-06-16T06:52:05Z,3025,355,2005-06-19T01:51:05Z,1,2020-02-15T06:59:37Z +1613,2005-06-16T06:55:10Z,4462,573,2005-06-24T12:08:10Z,1,2020-02-15T06:59:37Z +1614,2005-06-16T06:58:02Z,23,489,2005-06-23T11:24:02Z,1,2020-02-15T06:59:37Z +1615,2005-06-16T07:00:28Z,3894,362,2005-06-25T08:53:28Z,1,2020-02-15T06:59:37Z +1616,2005-06-16T07:04:52Z,2296,204,2005-06-24T04:06:52Z,1,2020-02-15T06:59:37Z +1617,2005-06-16T07:06:06Z,1382,83,2005-06-25T03:35:06Z,1,2020-02-15T06:59:37Z +1618,2005-06-16T07:08:38Z,3741,134,2005-06-25T05:26:38Z,2,2020-02-15T06:59:37Z +1619,2005-06-16T07:14:13Z,4258,232,2005-06-19T05:50:13Z,2,2020-02-15T06:59:37Z +1620,2005-06-16T07:21:30Z,389,561,2005-06-17T09:46:30Z,1,2020-02-15T06:59:37Z +1621,2005-06-16T07:24:12Z,3677,177,2005-06-19T02:35:12Z,1,2020-02-15T06:59:37Z +1622,2005-06-16T07:33:18Z,1774,311,2005-06-21T07:23:18Z,1,2020-02-15T06:59:37Z +1623,2005-06-16T07:48:50Z,4485,378,2005-06-17T03:53:50Z,2,2020-02-15T06:59:37Z +1624,2005-06-16T07:48:57Z,1066,314,2005-06-17T05:52:57Z,1,2020-02-15T06:59:37Z +1625,2005-06-16T07:49:08Z,3367,39,2005-06-24T09:08:08Z,2,2020-02-15T06:59:37Z +1626,2005-06-16T07:49:47Z,694,260,2005-06-22T13:32:47Z,2,2020-02-15T06:59:37Z +1627,2005-06-16T07:51:09Z,4135,468,2005-06-24T02:24:09Z,1,2020-02-15T06:59:37Z +1628,2005-06-16T07:52:55Z,868,427,2005-06-25T11:09:55Z,1,2020-02-15T06:59:37Z +1629,2005-06-16T07:53:47Z,4375,339,2005-06-22T13:03:47Z,1,2020-02-15T06:59:37Z +1630,2005-06-16T07:55:01Z,2413,130,2005-06-19T06:38:01Z,1,2020-02-15T06:59:37Z +1631,2005-06-16T08:01:02Z,2466,5,2005-06-19T09:04:02Z,1,2020-02-15T06:59:37Z +1632,2005-06-16T08:03:42Z,1518,319,2005-06-17T03:40:42Z,1,2020-02-15T06:59:37Z +1633,2005-06-16T08:08:40Z,280,4,2005-06-17T11:12:40Z,1,2020-02-15T06:59:37Z +1634,2005-06-16T08:16:05Z,3990,121,2005-06-17T04:49:05Z,1,2020-02-15T06:59:37Z +1635,2005-06-16T08:26:56Z,1187,566,2005-06-25T06:17:56Z,2,2020-02-15T06:59:37Z +1636,2005-06-16T08:28:54Z,2052,574,2005-06-24T09:23:54Z,1,2020-02-15T06:59:37Z +1637,2005-06-16T08:29:58Z,906,212,2005-06-23T04:55:58Z,2,2020-02-15T06:59:37Z +1638,2005-06-16T08:32:36Z,1905,181,2005-06-18T07:11:36Z,2,2020-02-15T06:59:37Z +1639,2005-06-16T08:33:39Z,176,450,2005-06-25T07:51:39Z,1,2020-02-15T06:59:37Z +1640,2005-06-16T08:35:39Z,443,86,2005-06-17T05:37:39Z,2,2020-02-15T06:59:37Z +1641,2005-06-16T08:46:26Z,2925,259,2005-06-24T14:39:26Z,2,2020-02-15T06:59:37Z +1642,2005-06-16T08:54:15Z,3875,287,2005-06-18T12:36:15Z,1,2020-02-15T06:59:37Z +1643,2005-06-16T08:55:35Z,1352,484,2005-06-21T05:36:35Z,2,2020-02-15T06:59:37Z +1644,2005-06-16T08:58:18Z,749,596,2005-06-21T06:47:18Z,1,2020-02-15T06:59:37Z +1645,2005-06-16T09:10:06Z,4434,234,2005-06-23T04:36:06Z,2,2020-02-15T06:59:37Z +1646,2005-06-16T09:12:53Z,4037,131,2005-06-24T08:03:53Z,2,2020-02-15T06:59:37Z +1647,2005-06-16T09:14:58Z,1936,454,2005-06-17T10:46:58Z,1,2020-02-15T06:59:37Z +1648,2005-06-16T09:17:07Z,457,427,2005-06-24T06:31:07Z,2,2020-02-15T06:59:37Z +1649,2005-06-16T09:20:33Z,390,352,2005-06-18T13:42:33Z,1,2020-02-15T06:59:37Z +1650,2005-06-16T09:23:20Z,4125,299,2005-06-23T11:25:20Z,1,2020-02-15T06:59:37Z +1651,2005-06-16T09:24:38Z,4444,524,2005-06-17T09:50:38Z,2,2020-02-15T06:59:37Z +1652,2005-06-16T09:31:37Z,3416,533,2005-06-19T14:02:37Z,2,2020-02-15T06:59:37Z +1653,2005-06-16T09:34:45Z,2294,517,2005-06-18T09:13:45Z,1,2020-02-15T06:59:37Z +1654,2005-06-16T09:42:48Z,1039,348,2005-06-20T14:28:48Z,2,2020-02-15T06:59:37Z +1655,2005-06-16T09:51:39Z,3693,488,2005-06-23T14:53:39Z,2,2020-02-15T06:59:37Z +1656,2005-06-16T10:05:40Z,2253,31,2005-06-22T06:26:40Z,1,2020-02-15T06:59:37Z +1657,2005-06-16T10:06:49Z,953,209,2005-06-22T10:34:49Z,2,2020-02-15T06:59:37Z +1658,2005-06-16T10:07:10Z,272,568,2005-06-21T09:23:10Z,2,2020-02-15T06:59:37Z +1659,2005-06-16T10:11:46Z,1182,296,2005-06-20T13:51:46Z,1,2020-02-15T06:59:37Z +1660,2005-06-16T10:12:55Z,2374,238,2005-06-18T05:56:55Z,2,2020-02-15T06:59:37Z +1661,2005-06-16T10:12:57Z,2403,508,2005-06-24T09:23:57Z,2,2020-02-15T06:59:37Z +1662,2005-06-16T10:13:35Z,3552,378,2005-06-23T13:54:35Z,1,2020-02-15T06:59:37Z +1663,2005-06-16T10:14:15Z,1558,186,2005-06-23T08:34:15Z,2,2020-02-15T06:59:37Z +1664,2005-06-16T10:15:20Z,2464,216,2005-06-18T12:11:20Z,2,2020-02-15T06:59:37Z +1665,2005-06-16T10:16:02Z,2613,490,2005-06-23T09:32:02Z,1,2020-02-15T06:59:37Z +1666,2005-06-16T10:17:19Z,4019,557,2005-06-21T05:50:19Z,1,2020-02-15T06:59:37Z +1667,2005-06-16T10:18:59Z,2362,333,2005-06-22T14:45:59Z,2,2020-02-15T06:59:37Z +1668,2005-06-16T10:19:52Z,2483,569,2005-06-23T12:22:52Z,2,2020-02-15T06:59:37Z +1669,2005-06-16T10:20:20Z,360,73,2005-06-18T04:26:20Z,1,2020-02-15T06:59:37Z +1670,2005-06-16T10:26:33Z,2066,328,2005-06-19T07:15:33Z,1,2020-02-15T06:59:37Z +1671,2005-06-16T10:30:22Z,3805,135,2005-06-22T11:08:22Z,2,2020-02-15T06:59:37Z +1672,2005-06-16T10:37:34Z,4206,216,2005-06-23T05:30:34Z,1,2020-02-15T06:59:37Z +1673,2005-06-16T10:40:17Z,907,534,2005-06-18T16:13:17Z,1,2020-02-15T06:59:37Z +1674,2005-06-16T10:57:00Z,3606,234,2005-06-18T07:31:00Z,2,2020-02-15T06:59:37Z +1675,2005-06-16T11:04:47Z,3048,371,2005-06-24T06:56:47Z,2,2020-02-15T06:59:37Z +1676,2005-06-16T11:06:09Z,931,171,2005-06-21T05:17:09Z,1,2020-02-15T06:59:37Z +1677,2005-06-16T11:07:11Z,240,191,2005-06-23T10:50:11Z,1,2020-02-15T06:59:37Z +1678,2005-06-16T11:08:28Z,1856,352,2005-06-19T15:44:28Z,1,2020-02-15T06:59:37Z +1679,2005-06-16T11:11:01Z,3959,227,2005-06-23T08:11:01Z,1,2020-02-15T06:59:37Z +1680,2005-06-16T11:17:22Z,4441,469,2005-06-25T15:55:22Z,2,2020-02-15T06:59:37Z +1681,2005-06-16T11:38:17Z,530,255,2005-06-19T13:05:17Z,1,2020-02-15T06:59:37Z +1682,2005-06-16T11:54:25Z,2165,476,2005-06-22T11:09:25Z,2,2020-02-15T06:59:37Z +1683,2005-06-16T11:54:55Z,2361,494,2005-06-18T08:51:55Z,2,2020-02-15T06:59:37Z +1684,2005-06-16T11:57:34Z,806,485,2005-06-19T09:12:34Z,1,2020-02-15T06:59:37Z +1685,2005-06-16T12:06:57Z,2754,85,2005-06-21T16:53:57Z,2,2020-02-15T06:59:37Z +1686,2005-06-16T12:08:20Z,3883,529,2005-06-20T10:59:20Z,1,2020-02-15T06:59:37Z +1687,2005-06-16T12:09:20Z,3686,140,2005-06-18T06:18:20Z,2,2020-02-15T06:59:37Z +1688,2005-06-16T12:11:20Z,383,49,2005-06-18T08:39:20Z,2,2020-02-15T06:59:37Z +1689,2005-06-16T12:18:41Z,4036,48,2005-06-24T13:33:41Z,2,2020-02-15T06:59:37Z +1690,2005-06-16T12:24:18Z,1099,286,2005-06-25T15:00:18Z,1,2020-02-15T06:59:37Z +1691,2005-06-16T12:24:28Z,4438,492,2005-06-24T08:24:28Z,1,2020-02-15T06:59:37Z +1692,2005-06-16T12:30:19Z,3544,514,2005-06-17T17:31:19Z,2,2020-02-15T06:59:37Z +1693,2005-06-16T12:39:51Z,2386,421,2005-06-19T16:19:51Z,2,2020-02-15T06:59:37Z +1694,2005-06-16T12:40:23Z,147,532,2005-06-20T09:18:23Z,2,2020-02-15T06:59:37Z +1695,2005-06-16T12:40:28Z,4436,159,2005-06-22T13:41:28Z,1,2020-02-15T06:59:37Z +1696,2005-06-16T12:50:01Z,3928,502,2005-06-24T12:08:01Z,2,2020-02-15T06:59:37Z +1697,2005-06-16T12:55:20Z,1801,340,2005-06-23T17:41:20Z,2,2020-02-15T06:59:37Z +1698,2005-06-16T13:04:42Z,1474,407,2005-06-21T15:54:42Z,1,2020-02-15T06:59:37Z +1699,2005-06-16T13:05:09Z,4507,27,2005-06-17T09:53:09Z,2,2020-02-15T06:59:37Z +1700,2005-06-16T13:18:23Z,4251,456,2005-06-21T16:46:23Z,2,2020-02-15T06:59:37Z +1701,2005-06-16T13:18:48Z,3000,315,2005-06-22T15:00:48Z,1,2020-02-15T06:59:37Z +1702,2005-06-16T13:21:05Z,1822,242,2005-06-19T10:13:05Z,2,2020-02-15T06:59:37Z +1703,2005-06-16T13:28:44Z,2346,589,2005-06-17T11:03:44Z,1,2020-02-15T06:59:37Z +1704,2005-06-16T13:45:56Z,4425,488,2005-06-24T18:12:56Z,1,2020-02-15T06:59:37Z +1705,2005-06-16T13:59:42Z,123,564,2005-06-18T19:54:42Z,2,2020-02-15T06:59:37Z +1706,2005-06-16T14:01:02Z,2935,26,2005-06-25T19:29:02Z,1,2020-02-15T06:59:37Z +1707,2005-06-16T14:01:27Z,185,4,2005-06-18T09:35:27Z,1,2020-02-15T06:59:37Z +1708,2005-06-16T14:08:44Z,2259,478,2005-06-19T08:35:44Z,1,2020-02-15T06:59:37Z +1709,2005-06-16T14:10:15Z,3501,426,2005-06-24T16:38:15Z,2,2020-02-15T06:59:37Z +1710,2005-06-16T14:11:24Z,144,77,2005-06-22T15:26:24Z,1,2020-02-15T06:59:37Z +1711,2005-06-16T14:11:52Z,273,347,2005-06-25T08:49:52Z,1,2020-02-15T06:59:37Z +1712,2005-06-16T14:25:09Z,1363,535,2005-06-17T17:55:09Z,1,2020-02-15T06:59:37Z +1713,2005-06-16T14:28:33Z,2580,164,2005-06-18T09:02:33Z,1,2020-02-15T06:59:37Z +1714,2005-06-16T14:29:59Z,535,477,2005-06-24T17:27:59Z,2,2020-02-15T06:59:37Z +1715,2005-06-16T14:37:12Z,1594,203,2005-06-20T19:36:12Z,1,2020-02-15T06:59:37Z +1716,2005-06-16T14:39:31Z,20,24,2005-06-19T15:37:31Z,1,2020-02-15T06:59:37Z +1717,2005-06-16T14:47:16Z,3007,277,2005-06-19T10:11:16Z,2,2020-02-15T06:59:37Z +1718,2005-06-16T14:52:02Z,288,516,2005-06-25T10:53:02Z,2,2020-02-15T06:59:37Z +1719,2005-06-16T14:55:53Z,2699,582,2005-06-18T14:12:53Z,1,2020-02-15T06:59:37Z +1720,2005-06-16T15:00:14Z,3500,543,2005-06-21T13:57:14Z,2,2020-02-15T06:59:37Z +1721,2005-06-16T15:01:36Z,3521,485,2005-06-23T10:48:36Z,1,2020-02-15T06:59:37Z +1722,2005-06-16T15:12:52Z,2142,364,2005-06-19T13:01:52Z,2,2020-02-15T06:59:37Z +1723,2005-06-16T15:14:18Z,2417,259,2005-06-23T15:45:18Z,2,2020-02-15T06:59:37Z +1724,2005-06-16T15:15:43Z,61,146,2005-06-23T10:14:43Z,2,2020-02-15T06:59:37Z +1725,2005-06-16T15:18:57Z,726,1,2005-06-17T21:05:57Z,1,2020-02-15T06:59:37Z +1726,2005-06-16T15:19:10Z,116,3,2005-06-25T11:39:10Z,2,2020-02-15T06:59:37Z +1727,2005-06-16T15:21:47Z,2951,457,2005-06-17T14:12:47Z,1,2020-02-15T06:59:37Z +1728,2005-06-16T15:29:29Z,1366,59,2005-06-23T12:47:29Z,1,2020-02-15T06:59:37Z +1729,2005-06-16T15:29:47Z,3364,523,2005-06-25T20:55:47Z,2,2020-02-15T06:59:37Z +1730,2005-06-16T15:30:01Z,1372,390,2005-06-19T12:56:01Z,1,2020-02-15T06:59:37Z +1731,2005-06-16T15:32:12Z,3698,344,2005-06-19T18:58:12Z,2,2020-02-15T06:59:37Z +1732,2005-06-16T15:34:41Z,2287,129,2005-06-18T13:05:41Z,1,2020-02-15T06:59:37Z +1733,2005-06-16T15:37:07Z,542,480,2005-06-23T15:53:07Z,2,2020-02-15T06:59:37Z +1734,2005-06-16T15:49:30Z,1113,94,2005-06-22T13:52:30Z,2,2020-02-15T06:59:37Z +1735,2005-06-16T15:51:52Z,97,4,2005-06-20T13:27:52Z,1,2020-02-15T06:59:37Z +1736,2005-06-16T15:52:32Z,3771,139,2005-06-21T14:39:32Z,2,2020-02-15T06:59:37Z +1737,2005-06-16T15:59:44Z,4029,467,2005-06-23T12:22:44Z,1,2020-02-15T06:59:37Z +1738,2005-06-16T16:07:27Z,3260,177,2005-06-20T15:22:27Z,1,2020-02-15T06:59:37Z +1739,2005-06-16T16:09:38Z,2557,450,2005-06-22T18:04:38Z,2,2020-02-15T06:59:37Z +1740,2005-06-16T16:29:00Z,2282,324,2005-06-20T14:07:00Z,2,2020-02-15T06:59:37Z +1741,2005-06-16T16:31:37Z,3722,176,2005-06-25T21:38:37Z,1,2020-02-15T06:59:37Z +1742,2005-06-16T16:37:48Z,2772,576,2005-06-17T19:47:48Z,2,2020-02-15T06:59:37Z +1743,2005-06-16T16:38:10Z,2777,258,2005-06-17T13:13:10Z,1,2020-02-15T06:59:37Z +1744,2005-06-16T16:39:58Z,3075,230,2005-06-18T19:50:58Z,2,2020-02-15T06:59:37Z +1745,2005-06-16T16:41:16Z,2812,178,2005-06-23T21:02:16Z,2,2020-02-15T06:59:37Z +1746,2005-06-16T16:41:19Z,4272,385,2005-06-19T11:28:19Z,2,2020-02-15T06:59:37Z +1747,2005-06-16T16:53:33Z,1661,273,2005-06-25T21:48:33Z,2,2020-02-15T06:59:37Z +1748,2005-06-16T16:54:03Z,2434,473,2005-06-18T20:11:03Z,1,2020-02-15T06:59:37Z +1749,2005-06-16T16:56:00Z,1554,283,2005-06-21T21:02:00Z,2,2020-02-15T06:59:37Z +1750,2005-06-16T16:57:36Z,1103,321,2005-06-25T21:51:36Z,1,2020-02-15T06:59:37Z +1751,2005-06-16T17:00:14Z,138,123,2005-06-17T12:12:14Z,2,2020-02-15T06:59:37Z +1752,2005-06-16T17:02:55Z,3529,12,2005-06-23T19:09:55Z,2,2020-02-15T06:59:37Z +1753,2005-06-16T17:08:17Z,3817,249,2005-06-21T21:47:17Z,2,2020-02-15T06:59:37Z +1754,2005-06-16T17:13:23Z,4106,25,2005-06-22T20:46:23Z,1,2020-02-15T06:59:37Z +1755,2005-06-16T17:18:44Z,1721,117,2005-06-17T16:54:44Z,1,2020-02-15T06:59:37Z +1756,2005-06-16T17:22:33Z,1401,571,2005-06-21T16:52:33Z,1,2020-02-15T06:59:37Z +1757,2005-06-16T17:32:24Z,4491,510,2005-06-18T13:12:24Z,1,2020-02-15T06:59:37Z +1758,2005-06-16T17:39:39Z,2654,474,2005-06-25T13:06:39Z,1,2020-02-15T06:59:37Z +1759,2005-06-16T17:46:37Z,1402,430,2005-06-24T19:40:37Z,2,2020-02-15T06:59:37Z +1760,2005-06-16T17:48:37Z,3929,261,2005-06-18T16:01:37Z,2,2020-02-15T06:59:37Z +1761,2005-06-16T17:49:57Z,1570,521,2005-06-17T21:03:57Z,2,2020-02-15T06:59:37Z +1762,2005-06-16T17:50:19Z,3050,116,2005-06-19T21:35:19Z,2,2020-02-15T06:59:37Z +1763,2005-06-16T17:51:01Z,1941,389,2005-06-20T17:27:01Z,1,2020-02-15T06:59:37Z +1764,2005-06-16T17:51:54Z,705,392,2005-06-21T20:36:54Z,2,2020-02-15T06:59:37Z +1765,2005-06-16T17:56:10Z,822,273,2005-06-19T23:40:10Z,2,2020-02-15T06:59:37Z +1766,2005-06-16T17:59:37Z,2041,118,2005-06-18T16:32:37Z,2,2020-02-15T06:59:37Z +1767,2005-06-16T18:01:36Z,1162,205,2005-06-18T12:39:36Z,2,2020-02-15T06:59:37Z +1768,2005-06-16T18:02:06Z,2131,131,2005-06-23T17:19:06Z,2,2020-02-15T06:59:37Z +1769,2005-06-16T18:07:48Z,1229,397,2005-06-22T12:39:48Z,1,2020-02-15T06:59:37Z +1770,2005-06-16T18:07:55Z,1681,359,2005-06-23T23:49:55Z,2,2020-02-15T06:59:37Z +1771,2005-06-16T18:12:17Z,1769,416,2005-06-18T16:11:17Z,1,2020-02-15T06:59:37Z +1772,2005-06-16T18:12:54Z,1269,525,2005-06-24T19:55:54Z,1,2020-02-15T06:59:37Z +1773,2005-06-16T18:13:43Z,4396,462,2005-06-24T17:43:43Z,2,2020-02-15T06:59:37Z +1774,2005-06-16T18:27:52Z,3058,442,2005-06-21T13:35:52Z,2,2020-02-15T06:59:37Z +1775,2005-06-16T18:28:19Z,1922,123,2005-06-25T13:09:19Z,2,2020-02-15T06:59:37Z +1776,2005-06-16T18:46:58Z,1404,472,2005-06-24T16:01:58Z,1,2020-02-15T06:59:37Z +1777,2005-06-16T18:52:12Z,3325,49,2005-06-25T13:55:12Z,1,2020-02-15T06:59:37Z +1778,2005-06-16T18:54:48Z,2512,341,2005-06-22T16:08:48Z,2,2020-02-15T06:59:37Z +1779,2005-06-16T18:55:11Z,1044,438,2005-06-17T20:11:11Z,1,2020-02-15T06:59:37Z +1780,2005-06-16T19:11:45Z,146,352,2005-06-19T15:34:45Z,2,2020-02-15T06:59:37Z +1781,2005-06-16T19:20:24Z,2841,429,2005-06-25T17:02:24Z,2,2020-02-15T06:59:37Z +1782,2005-06-16T19:21:12Z,1820,498,2005-06-22T16:03:12Z,2,2020-02-15T06:59:37Z +1783,2005-06-16T19:23:23Z,50,18,2005-06-18T00:57:23Z,1,2020-02-15T06:59:37Z +1784,2005-06-16T19:25:32Z,3792,134,2005-06-20T00:00:32Z,2,2020-02-15T06:59:37Z +1785,2005-06-16T19:27:12Z,3413,50,2005-06-24T19:25:12Z,1,2020-02-15T06:59:37Z +1786,2005-06-16T19:30:54Z,263,323,2005-06-19T14:24:54Z,1,2020-02-15T06:59:37Z +1787,2005-06-16T19:30:59Z,3823,546,2005-06-21T18:25:59Z,2,2020-02-15T06:59:37Z +1788,2005-06-16T19:47:18Z,3794,357,2005-06-22T23:10:18Z,1,2020-02-15T06:59:37Z +1789,2005-06-16T19:49:18Z,4264,105,2005-06-23T17:07:18Z,2,2020-02-15T06:59:37Z +1790,2005-06-16T19:58:40Z,1070,158,2005-06-17T19:31:40Z,2,2020-02-15T06:59:37Z +1791,2005-06-16T20:04:28Z,301,76,2005-06-23T22:30:28Z,1,2020-02-15T06:59:37Z +1792,2005-06-16T20:04:50Z,3800,351,2005-06-26T00:57:50Z,1,2020-02-15T06:59:37Z +1793,2005-06-16T20:07:27Z,4356,230,2005-06-19T20:55:27Z,1,2020-02-15T06:59:37Z +1794,2005-06-16T20:08:37Z,497,452,2005-06-22T01:54:37Z,1,2020-02-15T06:59:37Z +1795,2005-06-16T20:09:01Z,536,56,2005-06-24T17:50:01Z,2,2020-02-15T06:59:37Z +1796,2005-06-16T20:10:43Z,3229,283,2005-06-20T19:12:43Z,1,2020-02-15T06:59:37Z +1797,2005-06-16T20:13:03Z,3435,275,2005-06-22T22:56:03Z,1,2020-02-15T06:59:37Z +1798,2005-06-16T20:16:15Z,1654,429,2005-06-20T22:23:15Z,2,2020-02-15T06:59:37Z +1799,2005-06-16T20:17:20Z,2847,505,2005-06-20T23:55:20Z,1,2020-02-15T06:59:37Z +1800,2005-06-16T20:18:46Z,2058,149,2005-06-20T17:12:46Z,1,2020-02-15T06:59:37Z +1801,2005-06-16T20:21:53Z,1015,10,2005-06-18T23:18:53Z,1,2020-02-15T06:59:37Z +1802,2005-06-16T20:23:30Z,4174,455,2005-06-21T20:02:30Z,1,2020-02-15T06:59:37Z +1803,2005-06-16T20:32:47Z,3784,127,2005-06-21T02:03:47Z,1,2020-02-15T06:59:37Z +1804,2005-06-16T20:33:15Z,1152,570,2005-06-18T02:31:15Z,2,2020-02-15T06:59:37Z +1805,2005-06-16T20:36:00Z,3962,208,2005-06-17T16:27:00Z,1,2020-02-15T06:59:37Z +1806,2005-06-16T20:41:57Z,2053,45,2005-06-18T19:25:57Z,2,2020-02-15T06:59:37Z +1807,2005-06-16T20:58:59Z,1174,338,2005-06-20T21:31:59Z,2,2020-02-15T06:59:37Z +1808,2005-06-16T20:59:35Z,2424,466,2005-06-24T15:31:35Z,1,2020-02-15T06:59:37Z +1809,2005-06-16T21:00:20Z,1071,517,2005-06-25T20:25:20Z,1,2020-02-15T06:59:37Z +1810,2005-06-16T21:06:00Z,2368,7,2005-06-21T21:24:00Z,1,2020-02-15T06:59:37Z +1811,2005-06-16T21:06:20Z,3700,235,2005-06-21T21:59:20Z,2,2020-02-15T06:59:37Z +1812,2005-06-16T21:08:46Z,751,37,2005-06-21T15:44:46Z,2,2020-02-15T06:59:37Z +1813,2005-06-16T21:11:00Z,1236,259,2005-06-24T15:30:00Z,1,2020-02-15T06:59:37Z +1814,2005-06-16T21:15:22Z,39,144,2005-06-23T17:00:22Z,1,2020-02-15T06:59:37Z +1815,2005-06-16T21:16:07Z,1551,84,2005-06-17T16:37:07Z,2,2020-02-15T06:59:37Z +1816,2005-06-16T21:20:41Z,2861,594,2005-06-18T02:21:41Z,1,2020-02-15T06:59:37Z +1817,2005-06-16T21:20:52Z,1354,574,2005-06-19T16:24:52Z,2,2020-02-15T06:59:37Z +1818,2005-06-16T21:30:34Z,1218,63,2005-06-20T03:27:34Z,2,2020-02-15T06:59:37Z +1819,2005-06-16T21:32:50Z,1689,386,2005-06-26T01:11:50Z,1,2020-02-15T06:59:37Z +1820,2005-06-16T21:34:50Z,3672,120,2005-06-20T16:50:50Z,1,2020-02-15T06:59:37Z +1821,2005-06-16T21:42:49Z,3207,468,2005-06-20T16:25:49Z,2,2020-02-15T06:59:37Z +1822,2005-06-16T21:43:45Z,674,86,2005-06-17T21:37:45Z,1,2020-02-15T06:59:37Z +1823,2005-06-16T21:48:16Z,3871,448,2005-06-22T03:09:16Z,1,2020-02-15T06:59:37Z +1824,2005-06-16T21:51:04Z,2269,575,2005-06-18T18:12:04Z,1,2020-02-15T06:59:37Z +1825,2005-06-16T21:53:05Z,2908,55,2005-06-20T17:22:05Z,2,2020-02-15T06:59:37Z +1826,2005-06-16T21:53:52Z,421,578,2005-06-25T18:46:52Z,2,2020-02-15T06:59:37Z +1827,2005-06-16T21:54:40Z,3804,423,2005-06-19T21:28:40Z,2,2020-02-15T06:59:37Z +1828,2005-06-16T22:04:34Z,316,68,2005-06-20T21:07:34Z,2,2020-02-15T06:59:37Z +1829,2005-06-16T22:14:21Z,617,293,2005-06-21T16:51:21Z,1,2020-02-15T06:59:37Z +1830,2005-06-16T22:18:43Z,4010,499,2005-06-23T21:14:43Z,2,2020-02-15T06:59:37Z +1831,2005-06-16T22:22:17Z,2610,383,2005-06-25T23:23:17Z,2,2020-02-15T06:59:37Z +1832,2005-06-16T22:35:20Z,500,220,2005-06-19T03:09:20Z,1,2020-02-15T06:59:37Z +1833,2005-06-16T22:45:03Z,1337,121,2005-06-20T22:02:03Z,2,2020-02-15T06:59:37Z +1834,2005-06-16T22:49:08Z,4018,189,2005-06-22T21:08:08Z,1,2020-02-15T06:59:37Z +1835,2005-06-16T23:05:36Z,1482,112,2005-06-19T04:46:36Z,1,2020-02-15T06:59:37Z +1836,2005-06-16T23:13:05Z,2753,176,2005-06-24T01:40:05Z,2,2020-02-15T06:59:37Z +1837,2005-06-16T23:16:15Z,1259,309,2005-06-21T21:54:15Z,1,2020-02-15T06:59:37Z +1838,2005-06-16T23:20:16Z,513,31,2005-06-20T02:34:16Z,1,2020-02-15T06:59:37Z +1839,2005-06-16T23:22:22Z,2750,223,2005-06-23T00:33:22Z,1,2020-02-15T06:59:37Z +1840,2005-06-16T23:39:34Z,340,404,2005-06-21T23:36:34Z,1,2020-02-15T06:59:37Z +1841,2005-06-16T23:44:13Z,2363,6,2005-06-22T04:09:13Z,1,2020-02-15T06:59:37Z +1842,2005-06-16T23:45:59Z,1472,426,2005-06-26T05:31:59Z,1,2020-02-15T06:59:37Z +1843,2005-06-16T23:53:42Z,2714,132,2005-06-22T18:33:42Z,2,2020-02-15T06:59:37Z +1844,2005-06-16T23:53:53Z,2307,454,2005-06-22T02:19:53Z,2,2020-02-15T06:59:37Z +1845,2005-06-16T23:56:11Z,3395,215,2005-06-19T01:41:11Z,2,2020-02-15T06:59:37Z +1846,2005-06-17T00:02:44Z,1725,422,2005-06-18T23:47:44Z,2,2020-02-15T06:59:37Z +1847,2005-06-17T00:05:22Z,1189,363,2005-06-20T21:09:22Z,1,2020-02-15T06:59:37Z +1848,2005-06-17T00:07:07Z,3797,526,2005-06-21T21:41:07Z,2,2020-02-15T06:59:37Z +1849,2005-06-17T00:13:19Z,2507,341,2005-06-23T18:37:19Z,2,2020-02-15T06:59:37Z +1850,2005-06-17T00:31:35Z,761,517,2005-06-25T05:19:35Z,1,2020-02-15T06:59:37Z +1851,2005-06-17T00:32:26Z,1121,451,2005-06-22T19:54:26Z,2,2020-02-15T06:59:37Z +1852,2005-06-17T00:38:20Z,4122,271,2005-06-22T20:04:20Z,2,2020-02-15T06:59:37Z +1853,2005-06-17T00:39:54Z,2949,301,2005-06-19T00:22:54Z,2,2020-02-15T06:59:37Z +1854,2005-06-17T00:43:57Z,119,37,2005-06-23T05:49:57Z,1,2020-02-15T06:59:37Z +1855,2005-06-17T00:54:58Z,4457,492,2005-06-20T19:29:58Z,1,2020-02-15T06:59:37Z +1856,2005-06-17T01:02:00Z,3034,161,2005-06-19T21:29:00Z,2,2020-02-15T06:59:37Z +1857,2005-06-17T01:12:58Z,4257,427,2005-06-21T04:49:58Z,1,2020-02-15T06:59:37Z +1858,2005-06-17T01:13:11Z,3200,99,2005-06-18T21:33:11Z,2,2020-02-15T06:59:37Z +1859,2005-06-17T01:13:38Z,3405,533,2005-06-18T03:13:38Z,1,2020-02-15T06:59:37Z +1860,2005-06-17T01:17:12Z,1853,293,2005-06-21T22:35:12Z,1,2020-02-15T06:59:37Z +1861,2005-06-17T01:17:31Z,135,454,2005-06-25T02:11:31Z,1,2020-02-15T06:59:37Z +1862,2005-06-17T01:29:30Z,3299,553,2005-06-25T20:43:30Z,1,2020-02-15T06:59:37Z +1863,2005-06-17T01:31:46Z,4466,550,2005-06-26T02:09:46Z,2,2020-02-15T06:59:37Z +1864,2005-06-17T01:39:47Z,1815,130,2005-06-24T19:39:47Z,2,2020-02-15T06:59:37Z +1865,2005-06-17T01:49:36Z,2657,526,2005-06-23T21:13:36Z,1,2020-02-15T06:59:37Z +1866,2005-06-17T01:53:19Z,2579,575,2005-06-19T06:14:19Z,2,2020-02-15T06:59:37Z +1867,2005-06-17T02:01:37Z,3537,415,2005-06-25T04:52:37Z,2,2020-02-15T06:59:37Z +1868,2005-06-17T02:03:22Z,2412,380,2005-06-25T04:38:22Z,1,2020-02-15T06:59:37Z +1869,2005-06-17T02:08:00Z,871,351,2005-06-19T21:43:00Z,1,2020-02-15T06:59:37Z +1870,2005-06-17T02:24:36Z,895,191,2005-06-17T23:04:36Z,2,2020-02-15T06:59:37Z +1871,2005-06-17T02:25:12Z,481,204,2005-06-23T03:16:12Z,2,2020-02-15T06:59:37Z +1872,2005-06-17T02:27:03Z,3596,206,2005-06-20T22:41:03Z,2,2020-02-15T06:59:37Z +1873,2005-06-17T02:38:28Z,2933,71,2005-06-23T04:39:28Z,1,2020-02-15T06:59:37Z +1874,2005-06-17T02:39:20Z,3884,30,2005-06-24T04:41:20Z,2,2020-02-15T06:59:37Z +1875,2005-06-17T02:45:10Z,1652,528,2005-06-22T22:54:10Z,2,2020-02-15T06:59:37Z +1876,2005-06-17T02:50:51Z,384,459,2005-06-18T07:21:51Z,1,2020-02-15T06:59:37Z +1877,2005-06-17T02:54:16Z,3404,261,2005-06-25T21:51:16Z,2,2020-02-15T06:59:37Z +1878,2005-06-17T02:55:32Z,3319,381,2005-06-21T03:44:32Z,1,2020-02-15T06:59:37Z +1879,2005-06-17T02:57:34Z,3983,343,2005-06-19T00:00:34Z,1,2020-02-15T06:59:37Z +1880,2005-06-17T03:08:59Z,1133,289,2005-06-19T07:16:59Z,1,2020-02-15T06:59:37Z +1881,2005-06-17T03:09:56Z,159,134,2005-06-18T01:49:56Z,1,2020-02-15T06:59:37Z +1882,2005-06-17T03:17:21Z,1400,47,2005-06-19T22:23:21Z,2,2020-02-15T06:59:37Z +1883,2005-06-17T03:18:51Z,3504,550,2005-06-18T05:46:51Z,1,2020-02-15T06:59:37Z +1884,2005-06-17T03:19:20Z,4567,305,2005-06-21T00:19:20Z,1,2020-02-15T06:59:37Z +1885,2005-06-17T03:35:59Z,740,588,2005-06-21T05:57:59Z,2,2020-02-15T06:59:37Z +1886,2005-06-17T03:36:02Z,2367,505,2005-06-19T08:12:02Z,2,2020-02-15T06:59:37Z +1887,2005-06-17T03:53:18Z,3591,32,2005-06-25T07:37:18Z,2,2020-02-15T06:59:37Z +1888,2005-06-17T03:58:36Z,2872,405,2005-06-22T09:28:36Z,1,2020-02-15T06:59:37Z +1889,2005-06-17T04:05:12Z,3909,572,2005-06-26T04:13:12Z,1,2020-02-15T06:59:37Z +1890,2005-06-17T04:06:13Z,1764,447,2005-06-22T07:46:13Z,2,2020-02-15T06:59:37Z +1891,2005-06-17T04:16:44Z,3576,109,2005-06-24T07:20:44Z,1,2020-02-15T06:59:37Z +1892,2005-06-17T04:17:33Z,139,319,2005-06-20T00:06:33Z,1,2020-02-15T06:59:37Z +1893,2005-06-17T04:18:37Z,3346,390,2005-06-23T23:35:37Z,2,2020-02-15T06:59:37Z +1894,2005-06-17T04:18:48Z,3707,204,2005-06-26T00:07:48Z,1,2020-02-15T06:59:38Z +1895,2005-06-17T04:25:12Z,680,30,2005-06-26T08:44:12Z,1,2020-02-15T06:59:38Z +1896,2005-06-17T04:25:46Z,2077,270,2005-06-26T09:37:46Z,1,2020-02-15T06:59:38Z +1897,2005-06-17T04:26:23Z,4142,422,2005-06-25T09:32:23Z,2,2020-02-15T06:59:38Z +1898,2005-06-17T04:28:11Z,2873,143,2005-06-25T07:04:11Z,2,2020-02-15T06:59:38Z +1899,2005-06-17T04:29:15Z,858,200,2005-06-26T08:39:15Z,1,2020-02-15T06:59:38Z +1900,2005-06-17T04:29:58Z,1425,34,2005-06-21T05:58:58Z,1,2020-02-15T06:59:38Z +1901,2005-06-17T04:35:19Z,2469,292,2005-06-25T06:09:19Z,2,2020-02-15T06:59:38Z +1902,2005-06-17T04:35:52Z,2905,479,2005-06-20T06:52:52Z,2,2020-02-15T06:59:38Z +1903,2005-06-17T04:37:20Z,1939,588,2005-06-26T09:05:20Z,2,2020-02-15T06:59:38Z +1904,2005-06-17T04:45:41Z,2472,87,2005-06-17T23:56:41Z,2,2020-02-15T06:59:38Z +1905,2005-06-17T04:51:43Z,1043,39,2005-06-24T09:35:43Z,1,2020-02-15T06:59:38Z +1906,2005-06-17T04:53:35Z,1049,455,2005-06-21T01:16:35Z,2,2020-02-15T06:59:38Z +1907,2005-06-17T05:08:27Z,988,66,2005-06-23T09:13:27Z,1,2020-02-15T06:59:38Z +1908,2005-06-17T05:10:36Z,399,358,2005-06-19T03:52:36Z,1,2020-02-15T06:59:38Z +1909,2005-06-17T05:11:04Z,2599,269,2005-06-19T04:33:04Z,2,2020-02-15T06:59:38Z +1910,2005-06-17T05:11:27Z,3903,199,2005-06-23T23:16:27Z,1,2020-02-15T06:59:38Z +1911,2005-06-17T05:15:15Z,910,3,2005-06-24T11:05:15Z,2,2020-02-15T06:59:38Z +1912,2005-06-17T05:18:32Z,4136,538,2005-06-20T10:01:32Z,2,2020-02-15T06:59:38Z +1913,2005-06-17T05:19:47Z,1825,116,2005-06-21T03:39:47Z,1,2020-02-15T06:59:38Z +1914,2005-06-17T05:25:54Z,3406,450,2005-06-24T04:25:54Z,2,2020-02-15T06:59:38Z +1915,2005-06-17T05:28:28Z,2620,393,2005-06-21T07:12:28Z,2,2020-02-15T06:59:38Z +1916,2005-06-17T05:29:59Z,4428,429,2005-06-26T05:35:59Z,2,2020-02-15T06:59:38Z +1917,2005-06-17T05:36:07Z,2667,400,2005-06-24T01:44:07Z,1,2020-02-15T06:59:38Z +1918,2005-06-17T05:40:14Z,3749,310,2005-06-21T08:53:14Z,2,2020-02-15T06:59:38Z +1919,2005-06-17T05:40:52Z,3855,197,2005-06-23T05:58:52Z,1,2020-02-15T06:59:38Z +1920,2005-06-17T06:00:23Z,2199,75,2005-06-24T04:49:23Z,1,2020-02-15T06:59:38Z +1921,2005-06-17T06:04:16Z,4369,417,2005-06-23T05:26:16Z,2,2020-02-15T06:59:38Z +1922,2005-06-17T06:04:25Z,2484,343,2005-06-18T09:15:25Z,2,2020-02-15T06:59:38Z +1923,2005-06-17T06:06:10Z,691,400,2005-06-24T04:29:10Z,2,2020-02-15T06:59:38Z +1924,2005-06-17T06:13:34Z,2577,86,2005-06-18T01:51:34Z,1,2020-02-15T06:59:38Z +1925,2005-06-17T06:16:47Z,3995,510,2005-06-21T06:03:47Z,1,2020-02-15T06:59:38Z +1926,2005-06-17T06:24:30Z,3509,462,2005-06-25T03:39:30Z,2,2020-02-15T06:59:38Z +1927,2005-06-17T06:48:19Z,3304,188,2005-06-21T03:23:19Z,1,2020-02-15T06:59:38Z +1928,2005-06-17T06:48:31Z,3454,353,2005-06-26T08:17:31Z,1,2020-02-15T06:59:38Z +1929,2005-06-17T06:49:30Z,573,327,2005-06-22T12:07:30Z,2,2020-02-15T06:59:38Z +1930,2005-06-17T06:50:46Z,79,112,2005-06-19T08:51:46Z,2,2020-02-15T06:59:38Z +1931,2005-06-17T06:51:56Z,1411,391,2005-06-22T08:27:56Z,1,2020-02-15T06:59:38Z +1932,2005-06-17T06:54:41Z,3185,120,2005-06-19T05:12:41Z,2,2020-02-15T06:59:38Z +1933,2005-06-17T06:54:42Z,980,13,2005-06-26T02:00:42Z,1,2020-02-15T06:59:38Z +1934,2005-06-17T07:04:57Z,4000,16,2005-06-25T12:21:57Z,2,2020-02-15T06:59:38Z +1935,2005-06-17T07:14:15Z,1962,295,2005-06-20T05:59:15Z,1,2020-02-15T06:59:38Z +1936,2005-06-17T07:15:41Z,3037,213,2005-06-18T11:37:41Z,2,2020-02-15T06:59:38Z +1937,2005-06-17T07:16:46Z,1266,385,2005-06-21T04:22:46Z,2,2020-02-15T06:59:38Z +1938,2005-06-17T07:18:36Z,570,454,2005-06-19T01:43:36Z,2,2020-02-15T06:59:38Z +1939,2005-06-17T07:26:45Z,605,11,2005-06-25T13:06:45Z,2,2020-02-15T06:59:38Z +1940,2005-06-17T07:42:22Z,105,451,2005-06-22T11:59:22Z,1,2020-02-15T06:59:38Z +1941,2005-06-17T07:42:45Z,1063,519,2005-06-20T07:12:45Z,1,2020-02-15T06:59:38Z +1942,2005-06-17T07:43:39Z,261,143,2005-06-25T02:24:39Z,1,2020-02-15T06:59:38Z +1943,2005-06-17T07:49:17Z,4327,144,2005-06-20T03:47:17Z,1,2020-02-15T06:59:38Z +1944,2005-06-17T07:50:53Z,318,16,2005-06-23T02:52:53Z,2,2020-02-15T06:59:38Z +1945,2005-06-17T07:51:26Z,3366,207,2005-06-23T13:22:26Z,2,2020-02-15T06:59:38Z +1946,2005-06-17T07:58:39Z,2335,389,2005-06-25T06:49:39Z,2,2020-02-15T06:59:38Z +1947,2005-06-17T08:02:20Z,3344,479,2005-06-25T10:25:20Z,1,2020-02-15T06:59:38Z +1948,2005-06-17T08:06:53Z,46,89,2005-06-21T05:00:53Z,1,2020-02-15T06:59:38Z +1949,2005-06-17T08:19:22Z,1478,208,2005-06-25T08:43:22Z,1,2020-02-15T06:59:38Z +1950,2005-06-17T08:26:52Z,723,594,2005-06-22T08:08:52Z,2,2020-02-15T06:59:38Z +1951,2005-06-17T08:30:35Z,955,123,2005-06-20T10:43:35Z,2,2020-02-15T06:59:38Z +1952,2005-06-17T08:33:02Z,1823,338,2005-06-21T14:00:02Z,2,2020-02-15T06:59:38Z +1953,2005-06-17T08:34:57Z,3549,405,2005-06-24T09:38:57Z,2,2020-02-15T06:59:38Z +1954,2005-06-17T08:37:55Z,3203,533,2005-06-20T02:55:55Z,2,2020-02-15T06:59:38Z +1955,2005-06-17T08:40:22Z,811,311,2005-06-19T10:47:22Z,1,2020-02-15T06:59:38Z +1956,2005-06-17T08:43:32Z,1403,492,2005-06-21T11:08:32Z,1,2020-02-15T06:59:38Z +1957,2005-06-17T08:50:58Z,2496,68,2005-06-26T13:39:58Z,2,2020-02-15T06:59:38Z +1958,2005-06-17T08:52:01Z,1843,581,2005-06-23T07:55:01Z,2,2020-02-15T06:59:38Z +1959,2005-06-17T08:54:10Z,1464,554,2005-06-20T05:02:10Z,2,2020-02-15T06:59:38Z +1960,2005-06-17T08:59:57Z,2202,27,2005-06-23T14:38:57Z,2,2020-02-15T06:59:38Z +1961,2005-06-17T09:02:58Z,2851,384,2005-06-20T03:07:58Z,1,2020-02-15T06:59:38Z +1962,2005-06-17T09:08:58Z,4386,536,2005-06-23T14:55:58Z,1,2020-02-15T06:59:38Z +1963,2005-06-17T09:09:31Z,1943,154,2005-06-24T13:16:31Z,2,2020-02-15T06:59:38Z +1964,2005-06-17T09:10:09Z,3390,53,2005-06-21T15:08:09Z,1,2020-02-15T06:59:38Z +1965,2005-06-17T09:17:39Z,480,256,2005-06-18T12:35:39Z,2,2020-02-15T06:59:38Z +1966,2005-06-17T09:19:45Z,2085,6,2005-06-20T11:19:45Z,1,2020-02-15T06:59:38Z +1967,2005-06-17T09:19:52Z,3225,558,2005-06-21T03:35:52Z,1,2020-02-15T06:59:38Z +1968,2005-06-17T09:20:36Z,1139,246,2005-06-18T11:06:36Z,2,2020-02-15T06:59:38Z +1969,2005-06-17T09:22:22Z,4450,337,2005-06-21T05:31:22Z,2,2020-02-15T06:59:38Z +1970,2005-06-17T09:23:16Z,1358,303,2005-06-22T09:40:16Z,2,2020-02-15T06:59:38Z +1971,2005-06-17T09:23:59Z,2870,357,2005-06-25T13:20:59Z,2,2020-02-15T06:59:38Z +1972,2005-06-17T09:25:49Z,2758,526,2005-06-24T09:59:49Z,2,2020-02-15T06:59:38Z +1973,2005-06-17T09:26:15Z,3669,256,2005-06-21T10:18:15Z,1,2020-02-15T06:59:38Z +1974,2005-06-17T09:30:05Z,1979,111,2005-06-21T12:10:05Z,1,2020-02-15T06:59:38Z +1975,2005-06-17T09:32:10Z,2520,468,2005-06-23T03:50:10Z,2,2020-02-15T06:59:38Z +1976,2005-06-17T09:38:08Z,3631,184,2005-06-23T07:23:08Z,2,2020-02-15T06:59:38Z +1977,2005-06-17T09:38:22Z,2468,459,2005-06-23T14:19:22Z,2,2020-02-15T06:59:38Z +1978,2005-06-17T09:42:34Z,1590,278,2005-06-20T09:13:34Z,2,2020-02-15T06:59:38Z +1979,2005-06-17T09:45:30Z,3470,45,2005-06-20T10:52:30Z,1,2020-02-15T06:59:38Z +1980,2005-06-17T09:48:05Z,2985,328,2005-06-23T14:43:05Z,1,2020-02-15T06:59:38Z +1981,2005-06-17T10:03:34Z,3186,526,2005-06-20T13:14:34Z,2,2020-02-15T06:59:38Z +1982,2005-06-17T10:12:15Z,1091,566,2005-06-20T13:56:15Z,1,2020-02-15T06:59:38Z +1983,2005-06-17T10:22:13Z,1955,365,2005-06-24T05:04:13Z,1,2020-02-15T06:59:38Z +1984,2005-06-17T10:25:28Z,3417,380,2005-06-23T08:18:28Z,2,2020-02-15T06:59:38Z +1985,2005-06-17T10:31:37Z,87,411,2005-06-22T11:17:37Z,1,2020-02-15T06:59:38Z +1986,2005-06-17T10:34:59Z,2894,541,2005-06-24T04:57:59Z,2,2020-02-15T06:59:38Z +1987,2005-06-17T10:40:36Z,110,479,2005-06-23T14:23:36Z,1,2020-02-15T06:59:38Z +1988,2005-06-17T10:42:34Z,3054,261,2005-06-25T11:47:34Z,2,2020-02-15T06:59:38Z +1989,2005-06-17T10:47:24Z,634,35,2005-06-19T05:12:24Z,1,2020-02-15T06:59:38Z +1990,2005-06-17T10:48:44Z,1471,571,2005-06-24T08:11:44Z,1,2020-02-15T06:59:38Z +1991,2005-06-17T10:49:23Z,3963,105,2005-06-25T10:48:23Z,1,2020-02-15T06:59:38Z +1992,2005-06-17T10:58:53Z,636,233,2005-06-19T08:42:53Z,2,2020-02-15T06:59:38Z +1993,2005-06-17T10:59:24Z,168,234,2005-06-23T07:30:24Z,2,2020-02-15T06:59:38Z +1994,2005-06-17T11:07:06Z,2203,346,2005-06-25T08:32:06Z,2,2020-02-15T06:59:38Z +1995,2005-06-17T11:11:14Z,1866,10,2005-06-26T16:37:14Z,1,2020-02-15T06:59:38Z +1996,2005-06-17T11:17:45Z,3074,149,2005-06-26T09:42:45Z,1,2020-02-15T06:59:38Z +1997,2005-06-17T11:19:43Z,846,411,2005-06-19T14:18:43Z,1,2020-02-15T06:59:38Z +1998,2005-06-17T11:24:57Z,4365,562,2005-06-26T09:48:57Z,1,2020-02-15T06:59:38Z +1999,2005-06-17T11:30:08Z,3704,111,2005-06-23T08:36:08Z,1,2020-02-15T06:59:38Z +2000,2005-06-17T11:32:30Z,323,163,2005-06-22T13:37:30Z,1,2020-02-15T06:59:38Z +2001,2005-06-17T11:35:09Z,2069,260,2005-06-21T14:52:09Z,2,2020-02-15T06:59:38Z +2002,2005-06-17T11:39:58Z,2406,514,2005-06-24T15:41:58Z,2,2020-02-15T06:59:38Z +2003,2005-06-17T11:40:35Z,1581,515,2005-06-19T08:30:35Z,2,2020-02-15T06:59:38Z +2004,2005-06-17T11:43:38Z,1342,171,2005-06-24T08:05:38Z,2,2020-02-15T06:59:38Z +2005,2005-06-17T11:44:54Z,4177,234,2005-06-19T10:53:54Z,1,2020-02-15T06:59:38Z +2006,2005-06-17T11:47:03Z,992,215,2005-06-19T13:47:03Z,2,2020-02-15T06:59:38Z +2007,2005-06-17T11:47:17Z,1123,572,2005-06-21T07:19:17Z,1,2020-02-15T06:59:38Z +2008,2005-06-17T11:48:05Z,2081,570,2005-06-25T13:16:05Z,1,2020-02-15T06:59:38Z +2009,2005-06-17T11:48:31Z,1902,119,2005-06-18T09:34:31Z,2,2020-02-15T06:59:38Z +2010,2005-06-17T11:54:15Z,2845,329,2005-06-21T05:55:15Z,1,2020-02-15T06:59:38Z +2011,2005-06-17T11:56:09Z,734,350,2005-06-24T06:47:09Z,2,2020-02-15T06:59:38Z +2012,2005-06-17T11:57:15Z,3588,84,2005-06-24T17:18:15Z,1,2020-02-15T06:59:38Z +2013,2005-06-17T12:03:01Z,3256,165,2005-06-24T10:04:01Z,1,2020-02-15T06:59:38Z +2014,2005-06-17T12:03:28Z,2969,337,2005-06-25T16:00:28Z,2,2020-02-15T06:59:38Z +2015,2005-06-17T12:16:29Z,3776,484,2005-06-18T14:40:29Z,2,2020-02-15T06:59:38Z +2016,2005-06-17T12:18:36Z,4265,282,2005-06-20T12:13:36Z,1,2020-02-15T06:59:38Z +2017,2005-06-17T12:33:30Z,1434,516,2005-06-19T10:08:30Z,2,2020-02-15T06:59:38Z +2018,2005-06-17T12:35:58Z,1278,380,2005-06-26T13:16:58Z,2,2020-02-15T06:59:38Z +2019,2005-06-17T12:38:44Z,2314,528,2005-06-23T17:38:44Z,2,2020-02-15T06:59:38Z +2020,2005-06-17T12:39:50Z,1914,384,2005-06-19T14:59:50Z,1,2020-02-15T06:59:38Z +2021,2005-06-17T12:41:18Z,2852,319,2005-06-23T17:17:18Z,2,2020-02-15T06:59:38Z +2022,2005-06-17T12:44:39Z,3053,547,2005-06-25T12:32:39Z,1,2020-02-15T06:59:38Z +2023,2005-06-17T12:52:58Z,787,169,2005-06-23T11:07:58Z,1,2020-02-15T06:59:38Z +2024,2005-06-17T13:00:51Z,2566,329,2005-06-22T07:03:51Z,1,2020-02-15T06:59:38Z +2025,2005-06-17T13:04:00Z,1203,447,2005-06-18T18:45:00Z,2,2020-02-15T06:59:38Z +2026,2005-06-17T13:05:38Z,3681,491,2005-06-21T17:19:38Z,1,2020-02-15T06:59:38Z +2027,2005-06-17T13:06:56Z,4309,265,2005-06-23T13:46:56Z,1,2020-02-15T06:59:38Z +2028,2005-06-17T13:08:08Z,4451,155,2005-06-23T10:54:08Z,1,2020-02-15T06:59:38Z +2029,2005-06-17T13:10:59Z,914,512,2005-06-19T18:15:59Z,1,2020-02-15T06:59:38Z +2030,2005-06-17T13:13:27Z,4024,457,2005-06-19T10:44:27Z,1,2020-02-15T06:59:38Z +2031,2005-06-17T13:14:03Z,4275,570,2005-06-25T10:06:03Z,2,2020-02-15T06:59:38Z +2032,2005-06-17T13:24:07Z,425,316,2005-06-18T18:18:07Z,1,2020-02-15T06:59:38Z +2033,2005-06-17T13:24:43Z,58,90,2005-06-20T12:34:43Z,1,2020-02-15T06:59:38Z +2034,2005-06-17T13:27:16Z,1512,587,2005-06-22T08:53:16Z,2,2020-02-15T06:59:38Z +2035,2005-06-17T13:45:09Z,4371,158,2005-06-26T15:30:09Z,2,2020-02-15T06:59:38Z +2036,2005-06-17T13:46:52Z,100,486,2005-06-18T15:42:52Z,2,2020-02-15T06:59:38Z +2037,2005-06-17T13:54:20Z,2582,308,2005-06-20T14:49:20Z,2,2020-02-15T06:59:38Z +2038,2005-06-17T14:00:51Z,4231,138,2005-06-19T11:54:51Z,2,2020-02-15T06:59:38Z +2039,2005-06-17T14:03:43Z,1514,304,2005-06-24T09:21:43Z,1,2020-02-15T06:59:38Z +2040,2005-06-17T14:18:37Z,227,260,2005-06-22T19:08:37Z,1,2020-02-15T06:59:38Z +2041,2005-06-17T14:19:00Z,782,348,2005-06-26T08:38:00Z,2,2020-02-15T06:59:38Z +2042,2005-06-17T14:31:02Z,3102,84,2005-06-18T14:43:02Z,1,2020-02-15T06:59:38Z +2043,2005-06-17T14:31:12Z,2495,4,2005-06-19T11:04:12Z,2,2020-02-15T06:59:38Z +2044,2005-06-17T14:37:57Z,2418,484,2005-06-22T17:15:57Z,2,2020-02-15T06:59:38Z +2045,2005-06-17T14:38:11Z,561,391,2005-06-26T13:44:11Z,2,2020-02-15T06:59:38Z +2046,2005-06-17T14:39:50Z,872,374,2005-06-24T16:02:50Z,1,2020-02-15T06:59:38Z +2047,2005-06-17T14:40:58Z,2371,201,2005-06-21T08:52:58Z,1,2020-02-15T06:59:38Z +2048,2005-06-17T14:55:29Z,2055,454,2005-06-23T16:29:29Z,2,2020-02-15T06:59:38Z +2049,2005-06-17T14:58:36Z,1053,182,2005-06-22T14:53:36Z,2,2020-02-15T06:59:38Z +2050,2005-06-17T15:07:30Z,1963,549,2005-06-18T14:43:30Z,1,2020-02-15T06:59:38Z +2051,2005-06-17T15:10:16Z,2366,191,2005-06-19T20:45:16Z,1,2020-02-15T06:59:38Z +2052,2005-06-17T15:14:43Z,1686,172,2005-06-21T11:08:43Z,1,2020-02-15T06:59:38Z +2053,2005-06-17T15:19:34Z,4279,521,2005-06-19T10:06:34Z,2,2020-02-15T06:59:38Z +2054,2005-06-17T15:26:37Z,1588,295,2005-06-26T14:22:37Z,1,2020-02-15T06:59:38Z +2055,2005-06-17T15:27:03Z,1399,593,2005-06-25T13:44:03Z,1,2020-02-15T06:59:38Z +2056,2005-06-17T15:27:33Z,229,42,2005-06-20T13:04:33Z,2,2020-02-15T06:59:38Z +2057,2005-06-17T15:31:58Z,2803,190,2005-06-25T09:39:58Z,1,2020-02-15T06:59:38Z +2058,2005-06-17T15:34:41Z,1324,57,2005-06-25T14:50:41Z,1,2020-02-15T06:59:38Z +2059,2005-06-17T15:36:12Z,739,114,2005-06-18T19:01:12Z,2,2020-02-15T06:59:38Z +2060,2005-06-17T15:42:42Z,1523,64,2005-06-22T16:39:42Z,1,2020-02-15T06:59:38Z +2061,2005-06-17T15:47:00Z,4575,108,2005-06-24T16:36:00Z,2,2020-02-15T06:59:38Z +2062,2005-06-17T15:56:43Z,1749,55,2005-06-20T21:37:43Z,2,2020-02-15T06:59:38Z +2063,2005-06-17T15:56:53Z,4323,5,2005-06-21T14:19:53Z,1,2020-02-15T06:59:38Z +2064,2005-06-17T15:57:56Z,1970,67,2005-06-23T21:04:56Z,2,2020-02-15T06:59:38Z +2065,2005-06-17T16:03:46Z,844,266,2005-06-22T16:41:46Z,2,2020-02-15T06:59:38Z +2066,2005-06-17T16:07:08Z,2561,248,2005-06-24T15:20:08Z,2,2020-02-15T06:59:38Z +2067,2005-06-17T16:11:08Z,1711,297,2005-06-22T13:01:08Z,2,2020-02-15T06:59:38Z +2068,2005-06-17T16:11:46Z,4252,387,2005-06-20T11:28:46Z,1,2020-02-15T06:59:38Z +2069,2005-06-17T16:19:39Z,2746,551,2005-06-26T16:48:39Z,1,2020-02-15T06:59:38Z +2070,2005-06-17T16:27:51Z,2609,24,2005-06-20T20:46:51Z,1,2020-02-15T06:59:38Z +2071,2005-06-17T16:33:17Z,2867,479,2005-06-23T21:51:17Z,1,2020-02-15T06:59:38Z +2072,2005-06-17T16:33:32Z,86,261,2005-06-23T13:22:32Z,1,2020-02-15T06:59:38Z +2073,2005-06-17T16:33:59Z,3530,410,2005-06-19T11:57:59Z,1,2020-02-15T06:59:38Z +2074,2005-06-17T16:40:03Z,71,495,2005-06-20T21:34:03Z,1,2020-02-15T06:59:38Z +2075,2005-06-17T16:40:33Z,2415,459,2005-06-19T13:55:33Z,2,2020-02-15T06:59:38Z +2076,2005-06-17T16:43:47Z,2242,217,2005-06-24T11:12:47Z,1,2020-02-15T06:59:38Z +2077,2005-06-17T16:46:11Z,4478,113,2005-06-19T15:10:11Z,1,2020-02-15T06:59:38Z +2078,2005-06-17T16:48:55Z,2021,278,2005-06-19T18:01:55Z,1,2020-02-15T06:59:38Z +2079,2005-06-17T16:49:45Z,3853,465,2005-06-18T18:10:45Z,1,2020-02-15T06:59:38Z +2080,2005-06-17T16:59:40Z,1231,476,2005-06-21T11:28:40Z,2,2020-02-15T06:59:38Z +2081,2005-06-17T17:05:02Z,917,253,2005-06-26T20:26:02Z,1,2020-02-15T06:59:38Z +2082,2005-06-17T17:13:32Z,434,254,2005-06-19T16:16:32Z,1,2020-02-15T06:59:38Z +2083,2005-06-17T17:14:00Z,2423,97,2005-06-18T18:31:00Z,2,2020-02-15T06:59:38Z +2084,2005-06-17T17:17:19Z,428,92,2005-06-22T14:57:19Z,1,2020-02-15T06:59:38Z +2085,2005-06-17T17:30:56Z,2275,214,2005-06-23T12:13:56Z,1,2020-02-15T06:59:38Z +2086,2005-06-17T17:32:07Z,898,326,2005-06-21T20:19:07Z,2,2020-02-15T06:59:38Z +2087,2005-06-17T17:35:10Z,466,398,2005-06-26T13:52:10Z,1,2020-02-15T06:59:38Z +2088,2005-06-17T17:35:30Z,506,310,2005-06-23T20:13:30Z,2,2020-02-15T06:59:38Z +2089,2005-06-17T17:45:09Z,4030,156,2005-06-25T16:41:09Z,1,2020-02-15T06:59:38Z +2090,2005-06-17T18:06:14Z,17,197,2005-06-22T23:52:14Z,1,2020-02-15T06:59:38Z +2091,2005-06-17T18:09:04Z,4033,260,2005-06-26T12:11:04Z,1,2020-02-15T06:59:38Z +2092,2005-06-17T18:12:16Z,4427,556,2005-06-25T15:06:16Z,2,2020-02-15T06:59:38Z +2093,2005-06-17T18:14:08Z,814,26,2005-06-26T18:10:08Z,1,2020-02-15T06:59:38Z +2094,2005-06-17T18:18:56Z,2205,308,2005-06-18T19:36:56Z,1,2020-02-15T06:59:38Z +2095,2005-06-17T18:21:35Z,1907,8,2005-06-23T23:49:35Z,2,2020-02-15T06:59:38Z +2096,2005-06-17T18:33:04Z,1069,431,2005-06-21T17:29:04Z,2,2020-02-15T06:59:38Z +2097,2005-06-17T18:40:04Z,569,439,2005-06-23T13:49:04Z,1,2020-02-15T06:59:38Z +2098,2005-06-17T18:42:09Z,3951,274,2005-06-19T20:40:09Z,1,2020-02-15T06:59:38Z +2099,2005-06-17T18:47:26Z,3660,146,2005-06-24T22:31:26Z,2,2020-02-15T06:59:38Z +2100,2005-06-17T18:53:21Z,2267,387,2005-06-19T21:49:21Z,2,2020-02-15T06:59:38Z +2101,2005-06-17T18:57:02Z,2137,581,2005-06-20T15:38:02Z,2,2020-02-15T06:59:38Z +2102,2005-06-17T19:05:22Z,2316,486,2005-06-23T23:21:22Z,2,2020-02-15T06:59:38Z +2103,2005-06-17T19:13:10Z,1469,456,2005-06-21T21:32:10Z,2,2020-02-15T06:59:38Z +2104,2005-06-17T19:14:30Z,3084,136,2005-06-19T16:26:30Z,1,2020-02-15T06:59:38Z +2105,2005-06-17T19:15:45Z,4090,57,2005-06-20T16:00:45Z,1,2020-02-15T06:59:38Z +2106,2005-06-17T19:29:03Z,643,66,2005-06-23T18:17:03Z,2,2020-02-15T06:59:38Z +2107,2005-06-17T19:31:16Z,1270,104,2005-06-18T23:33:16Z,1,2020-02-15T06:59:38Z +2108,2005-06-17T19:35:26Z,1395,503,2005-06-25T15:45:26Z,1,2020-02-15T06:59:38Z +2109,2005-06-17T19:41:42Z,2292,493,2005-06-25T17:03:42Z,2,2020-02-15T06:59:38Z +2110,2005-06-17T19:45:49Z,3592,163,2005-06-26T18:59:49Z,2,2020-02-15T06:59:38Z +2111,2005-06-17T19:47:21Z,2108,76,2005-06-19T22:46:21Z,2,2020-02-15T06:59:38Z +2112,2005-06-17T19:52:42Z,1629,18,2005-06-25T00:00:42Z,2,2020-02-15T06:59:38Z +2113,2005-06-17T19:57:46Z,1509,406,2005-06-24T00:22:46Z,1,2020-02-15T06:59:38Z +2114,2005-06-17T20:00:25Z,3541,358,2005-06-23T18:51:25Z,1,2020-02-15T06:59:38Z +2115,2005-06-17T20:02:16Z,3448,270,2005-06-25T16:56:16Z,2,2020-02-15T06:59:38Z +2116,2005-06-17T20:16:12Z,2373,24,2005-06-18T17:03:12Z,2,2020-02-15T06:59:38Z +2117,2005-06-17T20:24:00Z,2,170,2005-06-23T17:45:00Z,2,2020-02-15T06:59:38Z +2118,2005-06-17T20:28:29Z,1261,103,2005-06-23T22:47:29Z,1,2020-02-15T06:59:38Z +2119,2005-06-17T20:34:42Z,2104,561,2005-06-22T00:05:42Z,1,2020-02-15T06:59:38Z +2120,2005-06-17T20:36:50Z,1498,182,2005-06-27T01:18:50Z,2,2020-02-15T06:59:38Z +2121,2005-06-17T20:38:54Z,141,467,2005-06-22T23:06:54Z,2,2020-02-15T06:59:38Z +2122,2005-06-17T20:48:27Z,2932,245,2005-06-23T00:58:27Z,2,2020-02-15T06:59:38Z +2123,2005-06-17T20:48:30Z,2497,545,2005-06-18T19:17:30Z,2,2020-02-15T06:59:38Z +2124,2005-06-17T20:49:14Z,1273,178,2005-06-23T17:44:14Z,1,2020-02-15T06:59:38Z +2125,2005-06-17T20:53:42Z,4303,473,2005-06-19T01:53:42Z,2,2020-02-15T06:59:38Z +2126,2005-06-17T20:54:36Z,4276,263,2005-06-27T02:16:36Z,1,2020-02-15T06:59:38Z +2127,2005-06-17T20:54:48Z,3757,187,2005-06-18T16:28:48Z,2,2020-02-15T06:59:38Z +2128,2005-06-17T20:54:58Z,352,2,2005-06-24T00:41:58Z,2,2020-02-15T06:59:38Z +2129,2005-06-17T20:58:32Z,1930,249,2005-06-23T22:22:32Z,1,2020-02-15T06:59:38Z +2130,2005-06-17T21:00:44Z,1369,413,2005-06-26T00:05:44Z,2,2020-02-15T06:59:38Z +2131,2005-06-17T21:02:25Z,4424,85,2005-06-25T18:45:25Z,1,2020-02-15T06:59:38Z +2132,2005-06-17T21:05:06Z,2636,186,2005-06-20T18:10:06Z,1,2020-02-15T06:59:38Z +2133,2005-06-17T21:10:05Z,932,268,2005-06-23T22:41:05Z,1,2020-02-15T06:59:38Z +2134,2005-06-17T21:13:44Z,1699,378,2005-06-26T16:28:44Z,2,2020-02-15T06:59:38Z +2135,2005-06-17T21:14:02Z,4091,39,2005-06-19T00:59:02Z,1,2020-02-15T06:59:38Z +2136,2005-06-17T21:16:41Z,2651,20,2005-06-24T22:42:41Z,2,2020-02-15T06:59:38Z +2137,2005-06-17T21:18:28Z,1158,581,2005-06-20T21:05:28Z,1,2020-02-15T06:59:38Z +2138,2005-06-17T21:28:14Z,512,254,2005-06-22T01:16:14Z,2,2020-02-15T06:59:38Z +2139,2005-06-17T21:29:34Z,807,236,2005-06-26T21:05:34Z,1,2020-02-15T06:59:38Z +2140,2005-06-17T21:40:29Z,2395,56,2005-06-19T00:42:29Z,1,2020-02-15T06:59:38Z +2141,2005-06-17T21:41:34Z,2176,86,2005-06-19T00:15:34Z,1,2020-02-15T06:59:38Z +2142,2005-06-17T21:55:43Z,1787,253,2005-06-26T19:41:43Z,2,2020-02-15T06:59:38Z +2143,2005-06-17T21:58:13Z,1257,507,2005-06-19T23:59:13Z,2,2020-02-15T06:59:38Z +2144,2005-06-17T22:05:40Z,3303,46,2005-06-21T02:53:40Z,1,2020-02-15T06:59:38Z +2145,2005-06-17T22:10:36Z,238,388,2005-06-18T21:07:36Z,2,2020-02-15T06:59:38Z +2146,2005-06-17T22:26:23Z,326,456,2005-06-26T17:10:23Z,1,2020-02-15T06:59:38Z +2147,2005-06-17T22:28:13Z,2752,279,2005-06-22T20:50:13Z,1,2020-02-15T06:59:38Z +2148,2005-06-17T22:44:35Z,315,338,2005-06-26T19:43:35Z,1,2020-02-15T06:59:38Z +2149,2005-06-17T22:50:00Z,3365,333,2005-06-26T18:40:00Z,1,2020-02-15T06:59:38Z +2150,2005-06-17T22:50:36Z,1910,406,2005-06-21T19:33:36Z,1,2020-02-15T06:59:38Z +2151,2005-06-17T22:52:37Z,407,329,2005-06-20T22:00:37Z,1,2020-02-15T06:59:38Z +2152,2005-06-17T22:53:27Z,2665,307,2005-06-23T19:19:27Z,1,2020-02-15T06:59:38Z +2153,2005-06-17T22:58:04Z,2440,357,2005-06-24T19:38:04Z,2,2020-02-15T06:59:38Z +2154,2005-06-17T22:59:42Z,1655,30,2005-06-24T04:11:42Z,1,2020-02-15T06:59:38Z +2155,2005-06-17T23:07:29Z,3640,227,2005-06-25T03:23:29Z,2,2020-02-15T06:59:38Z +2156,2005-06-17T23:08:12Z,623,237,2005-06-22T19:44:12Z,2,2020-02-15T06:59:38Z +2157,2005-06-17T23:30:52Z,1619,201,2005-06-24T01:56:52Z,2,2020-02-15T06:59:38Z +2158,2005-06-17T23:36:27Z,243,530,2005-06-19T19:25:27Z,2,2020-02-15T06:59:38Z +2159,2005-06-17T23:37:29Z,3095,465,2005-06-25T00:18:29Z,2,2020-02-15T06:59:38Z +2160,2005-06-17T23:39:11Z,1644,32,2005-06-22T20:04:11Z,1,2020-02-15T06:59:38Z +2161,2005-06-17T23:39:50Z,3149,75,2005-06-26T23:28:50Z,2,2020-02-15T06:59:38Z +2162,2005-06-17T23:45:47Z,1790,277,2005-06-21T21:03:47Z,1,2020-02-15T06:59:38Z +2163,2005-06-17T23:46:16Z,2600,130,2005-06-22T22:48:16Z,2,2020-02-15T06:59:38Z +2164,2005-06-17T23:46:21Z,3442,227,2005-06-24T19:10:21Z,2,2020-02-15T06:59:38Z +2165,2005-06-17T23:51:10Z,2392,471,2005-06-21T23:54:10Z,1,2020-02-15T06:59:38Z +2166,2005-06-17T23:51:21Z,4343,305,2005-06-27T01:06:21Z,2,2020-02-15T06:59:38Z +2167,2005-06-17T23:51:28Z,3796,307,2005-06-21T00:43:28Z,2,2020-02-15T06:59:38Z +2168,2005-06-17T23:53:24Z,802,308,2005-06-20T01:11:24Z,1,2020-02-15T06:59:38Z +2169,2005-06-17T23:57:23Z,785,120,2005-06-19T20:14:23Z,2,2020-02-15T06:59:38Z +2170,2005-06-17T23:57:34Z,3989,42,2005-06-22T03:37:34Z,2,2020-02-15T06:59:38Z +2171,2005-06-18T00:06:04Z,1768,147,2005-06-24T18:09:04Z,2,2020-02-15T06:59:38Z +2172,2005-06-18T00:06:16Z,2912,457,2005-06-26T00:50:16Z,1,2020-02-15T06:59:38Z +2173,2005-06-18T00:08:20Z,995,65,2005-06-25T05:30:20Z,1,2020-02-15T06:59:38Z +2174,2005-06-18T00:09:01Z,3279,520,2005-06-25T23:14:01Z,1,2020-02-15T06:59:38Z +2175,2005-06-18T00:17:58Z,4038,17,2005-06-22T23:18:58Z,2,2020-02-15T06:59:38Z +2176,2005-06-18T00:29:51Z,4201,282,2005-06-21T01:41:51Z,1,2020-02-15T06:59:38Z +2177,2005-06-18T00:34:45Z,492,340,2005-06-26T18:40:45Z,1,2020-02-15T06:59:38Z +2178,2005-06-18T00:38:35Z,2950,260,2005-06-21T02:56:35Z,1,2020-02-15T06:59:38Z +2179,2005-06-18T00:41:36Z,4334,338,2005-06-19T02:17:36Z,1,2020-02-15T06:59:38Z +2180,2005-06-18T00:47:43Z,3564,497,2005-06-25T04:12:43Z,2,2020-02-15T06:59:38Z +2181,2005-06-18T00:48:31Z,3481,176,2005-06-25T06:43:31Z,2,2020-02-15T06:59:38Z +2182,2005-06-18T00:56:18Z,3494,454,2005-06-26T20:01:18Z,1,2020-02-15T06:59:38Z +2183,2005-06-18T01:06:01Z,1776,340,2005-06-22T01:20:01Z,1,2020-02-15T06:59:38Z +2184,2005-06-18T01:10:36Z,3468,537,2005-06-21T05:59:36Z,2,2020-02-15T06:59:38Z +2185,2005-06-18T01:12:22Z,4326,198,2005-06-20T20:41:22Z,1,2020-02-15T06:59:38Z +2186,2005-06-18T01:15:27Z,2050,204,2005-06-21T06:16:27Z,1,2020-02-15T06:59:38Z +2187,2005-06-18T01:17:27Z,1385,477,2005-06-20T22:18:27Z,1,2020-02-15T06:59:38Z +2188,2005-06-18T01:19:04Z,712,183,2005-06-25T03:59:04Z,2,2020-02-15T06:59:38Z +2189,2005-06-18T01:20:26Z,249,500,2005-06-25T00:30:26Z,1,2020-02-15T06:59:38Z +2190,2005-06-18T01:29:51Z,4398,342,2005-06-26T04:31:51Z,2,2020-02-15T06:59:38Z +2191,2005-06-18T01:33:09Z,3369,58,2005-06-19T20:18:09Z,1,2020-02-15T06:59:38Z +2192,2005-06-18T01:35:47Z,1886,456,2005-06-23T23:38:47Z,2,2020-02-15T06:59:38Z +2193,2005-06-18T01:38:45Z,1013,112,2005-06-22T19:51:45Z,1,2020-02-15T06:59:38Z +2194,2005-06-18T01:41:37Z,1827,149,2005-06-25T04:27:37Z,1,2020-02-15T06:59:38Z +2195,2005-06-18T01:44:46Z,2247,286,2005-06-25T20:50:46Z,1,2020-02-15T06:59:38Z +2196,2005-06-18T01:47:07Z,1925,240,2005-06-26T03:18:07Z,2,2020-02-15T06:59:38Z +2197,2005-06-18T01:50:27Z,3350,103,2005-06-19T01:31:27Z,2,2020-02-15T06:59:38Z +2198,2005-06-18T01:51:22Z,1983,109,2005-06-26T06:57:22Z,2,2020-02-15T06:59:38Z +2199,2005-06-18T01:57:56Z,99,171,2005-06-23T20:34:56Z,2,2020-02-15T06:59:38Z +2200,2005-06-18T01:59:16Z,1085,229,2005-06-26T23:25:16Z,2,2020-02-15T06:59:38Z +2201,2005-06-18T02:08:27Z,1864,489,2005-06-23T01:40:27Z,1,2020-02-15T06:59:38Z +2202,2005-06-18T02:09:24Z,815,297,2005-06-26T07:17:24Z,2,2020-02-15T06:59:38Z +2203,2005-06-18T02:10:42Z,1347,46,2005-06-22T06:25:42Z,2,2020-02-15T06:59:38Z +2204,2005-06-18T02:11:38Z,1137,426,2005-06-24T00:28:38Z,1,2020-02-15T06:59:38Z +2205,2005-06-18T02:14:34Z,1245,593,2005-06-25T05:11:34Z,1,2020-02-15T06:59:38Z +2206,2005-06-18T02:14:45Z,3651,438,2005-06-24T23:20:45Z,2,2020-02-15T06:59:38Z +2207,2005-06-18T02:19:21Z,182,78,2005-06-24T02:25:21Z,2,2020-02-15T06:59:38Z +2208,2005-06-18T02:22:07Z,2345,132,2005-06-23T07:24:07Z,2,2020-02-15T06:59:38Z +2209,2005-06-18T02:24:01Z,2441,13,2005-06-22T04:13:01Z,2,2020-02-15T06:59:38Z +2210,2005-06-18T02:27:01Z,219,108,2005-06-21T00:45:01Z,1,2020-02-15T06:59:38Z +2211,2005-06-18T02:29:10Z,4114,166,2005-06-22T02:02:10Z,1,2020-02-15T06:59:38Z +2212,2005-06-18T02:36:10Z,2458,336,2005-06-19T21:21:10Z,1,2020-02-15T06:59:38Z +2213,2005-06-18T02:36:47Z,949,98,2005-06-23T05:02:47Z,1,2020-02-15T06:59:38Z +2214,2005-06-18T02:44:37Z,2430,366,2005-06-18T23:37:37Z,2,2020-02-15T06:59:38Z +2215,2005-06-18T02:48:21Z,2060,239,2005-06-22T01:03:21Z,2,2020-02-15T06:59:38Z +2216,2005-06-18T03:08:17Z,1428,320,2005-06-19T08:13:17Z,1,2020-02-15T06:59:38Z +2217,2005-06-18T03:12:29Z,2260,118,2005-06-20T06:08:29Z,1,2020-02-15T06:59:38Z +2218,2005-06-18T03:13:13Z,3577,176,2005-06-18T21:16:13Z,1,2020-02-15T06:59:38Z +2219,2005-06-18T03:16:54Z,1881,393,2005-06-22T01:29:54Z,1,2020-02-15T06:59:38Z +2220,2005-06-18T03:21:36Z,320,587,2005-06-21T07:45:36Z,2,2020-02-15T06:59:38Z +2221,2005-06-18T03:24:56Z,3905,156,2005-06-22T08:27:56Z,1,2020-02-15T06:59:38Z +2222,2005-06-18T03:26:23Z,3834,10,2005-06-26T08:50:23Z,2,2020-02-15T06:59:38Z +2223,2005-06-18T03:27:03Z,4068,303,2005-06-27T09:19:03Z,2,2020-02-15T06:59:38Z +2224,2005-06-18T03:33:58Z,1336,153,2005-06-18T22:10:58Z,1,2020-02-15T06:59:38Z +2225,2005-06-18T03:35:40Z,2829,503,2005-06-23T03:05:40Z,1,2020-02-15T06:59:38Z +2226,2005-06-18T03:39:56Z,3487,225,2005-06-24T07:26:56Z,2,2020-02-15T06:59:38Z +2227,2005-06-18T03:43:23Z,3623,200,2005-06-19T05:55:23Z,2,2020-02-15T06:59:38Z +2228,2005-06-18T03:44:50Z,490,383,2005-06-23T00:28:50Z,1,2020-02-15T06:59:38Z +2229,2005-06-18T03:50:18Z,2840,35,2005-06-26T07:16:18Z,2,2020-02-15T06:59:38Z +2230,2005-06-18T03:50:49Z,833,256,2005-06-25T01:12:49Z,2,2020-02-15T06:59:38Z +2231,2005-06-18T03:52:14Z,2280,35,2005-06-23T06:52:14Z,1,2020-02-15T06:59:38Z +2232,2005-06-18T03:54:31Z,2463,52,2005-06-22T07:29:31Z,1,2020-02-15T06:59:38Z +2233,2005-06-18T03:57:36Z,3063,31,2005-06-21T09:42:36Z,2,2020-02-15T06:59:38Z +2234,2005-06-18T04:01:28Z,234,182,2005-06-24T04:55:28Z,2,2020-02-15T06:59:38Z +2235,2005-06-18T04:08:50Z,3463,21,2005-06-27T07:58:50Z,1,2020-02-15T06:59:38Z +2236,2005-06-18T04:12:33Z,4001,375,2005-06-23T04:07:33Z,1,2020-02-15T06:59:38Z +2237,2005-06-18T04:17:44Z,1821,205,2005-06-27T09:08:44Z,1,2020-02-15T06:59:38Z +2238,2005-06-18T04:22:06Z,2859,251,2005-06-27T03:29:06Z,2,2020-02-15T06:59:38Z +2239,2005-06-18T04:23:54Z,4419,437,2005-06-26T00:12:54Z,2,2020-02-15T06:59:38Z +2240,2005-06-18T04:28:27Z,1409,122,2005-06-22T07:48:27Z,2,2020-02-15T06:59:38Z +2241,2005-06-18T04:31:41Z,921,406,2005-06-24T22:34:41Z,2,2020-02-15T06:59:38Z +2242,2005-06-18T04:32:28Z,1995,146,2005-06-24T03:26:28Z,2,2020-02-15T06:59:38Z +2243,2005-06-18T04:33:03Z,1254,328,2005-06-23T04:14:03Z,2,2020-02-15T06:59:38Z +2244,2005-06-18T04:46:33Z,3629,233,2005-06-20T04:28:33Z,1,2020-02-15T06:59:38Z +2245,2005-06-18T04:52:59Z,1496,194,2005-06-24T05:07:59Z,2,2020-02-15T06:59:38Z +2246,2005-06-18T04:54:29Z,4287,414,2005-06-22T09:14:29Z,1,2020-02-15T06:59:38Z +2248,2005-06-18T04:59:48Z,1999,446,2005-06-19T08:51:48Z,2,2020-02-15T06:59:38Z +2249,2005-06-18T05:03:08Z,117,285,2005-06-26T05:43:08Z,2,2020-02-15T06:59:38Z +2250,2005-06-18T05:03:36Z,4042,7,2005-06-22T02:25:36Z,2,2020-02-15T06:59:38Z +2251,2005-06-18T05:05:08Z,1458,143,2005-06-23T08:34:08Z,1,2020-02-15T06:59:38Z +2252,2005-06-18T05:05:18Z,1987,383,2005-06-21T08:19:18Z,1,2020-02-15T06:59:38Z +2253,2005-06-18T05:11:43Z,3719,122,2005-06-25T03:30:43Z,2,2020-02-15T06:59:38Z +2254,2005-06-18T05:15:14Z,1084,281,2005-06-27T04:10:14Z,2,2020-02-15T06:59:38Z +2255,2005-06-18T05:21:12Z,24,410,2005-06-26T09:19:12Z,1,2020-02-15T06:59:38Z +2256,2005-06-18T05:21:56Z,1863,93,2005-06-27T02:06:56Z,2,2020-02-15T06:59:38Z +2257,2005-06-18T05:29:52Z,2846,34,2005-06-22T00:19:52Z,1,2020-02-15T06:59:38Z +2258,2005-06-18T05:30:36Z,4573,292,2005-06-24T09:09:36Z,1,2020-02-15T06:59:38Z +2259,2005-06-18T05:37:45Z,4103,491,2005-06-21T01:51:45Z,1,2020-02-15T06:59:38Z +2260,2005-06-18T05:38:36Z,2773,297,2005-06-20T08:08:36Z,1,2020-02-15T06:59:38Z +2261,2005-06-18T05:46:15Z,1763,570,2005-06-24T05:06:15Z,1,2020-02-15T06:59:38Z +2262,2005-06-18T05:49:46Z,4172,218,2005-06-20T00:25:46Z,2,2020-02-15T06:59:38Z +2263,2005-06-18T05:57:47Z,3259,452,2005-06-20T06:13:47Z,1,2020-02-15T06:59:38Z +2264,2005-06-18T05:58:45Z,150,240,2005-06-19T00:57:45Z,1,2020-02-15T06:59:38Z +2265,2005-06-18T06:03:27Z,3069,267,2005-06-20T01:16:27Z,1,2020-02-15T06:59:38Z +2266,2005-06-18T06:05:02Z,2596,452,2005-06-20T06:54:02Z,1,2020-02-15T06:59:38Z +2267,2005-06-18T06:10:23Z,2086,218,2005-06-20T00:39:23Z,2,2020-02-15T06:59:38Z +2268,2005-06-18T06:13:41Z,4380,21,2005-06-22T08:53:41Z,2,2020-02-15T06:59:38Z +2269,2005-06-18T06:20:54Z,3088,431,2005-06-25T04:51:54Z,2,2020-02-15T06:59:38Z +2270,2005-06-18T06:29:01Z,3447,588,2005-06-26T07:21:01Z,2,2020-02-15T06:59:38Z +2271,2005-06-18T06:29:52Z,2416,145,2005-06-21T09:46:52Z,2,2020-02-15T06:59:38Z +2272,2005-06-18T06:29:53Z,1364,599,2005-06-23T10:58:53Z,1,2020-02-15T06:59:38Z +2273,2005-06-18T06:30:02Z,4456,327,2005-06-20T07:07:02Z,1,2020-02-15T06:59:38Z +2274,2005-06-18T06:31:15Z,3021,347,2005-06-21T01:24:15Z,2,2020-02-15T06:59:38Z +2275,2005-06-18T06:31:29Z,2805,354,2005-06-24T10:04:29Z,2,2020-02-15T06:59:38Z +2276,2005-06-18T06:33:48Z,1145,594,2005-06-25T00:50:48Z,2,2020-02-15T06:59:38Z +2277,2005-06-18T06:35:03Z,3770,224,2005-06-19T01:26:03Z,1,2020-02-15T06:59:38Z +2278,2005-06-18T06:37:57Z,1166,450,2005-06-22T10:57:57Z,1,2020-02-15T06:59:38Z +2279,2005-06-18T06:38:22Z,1953,554,2005-06-27T07:16:22Z,1,2020-02-15T06:59:38Z +2280,2005-06-18T06:46:54Z,4568,548,2005-06-26T09:48:54Z,2,2020-02-15T06:59:38Z +2281,2005-06-18T06:47:29Z,4212,431,2005-06-20T10:27:29Z,2,2020-02-15T06:59:38Z +2282,2005-06-18T06:48:23Z,4388,113,2005-06-24T11:04:23Z,2,2020-02-15T06:59:38Z +2283,2005-06-18T06:56:06Z,2056,507,2005-06-19T05:11:06Z,2,2020-02-15T06:59:38Z +2284,2005-06-18T06:59:51Z,2682,228,2005-06-24T04:58:51Z,2,2020-02-15T06:59:38Z +2285,2005-06-18T07:00:54Z,755,447,2005-06-25T08:58:54Z,2,2020-02-15T06:59:38Z +2286,2005-06-18T07:02:32Z,618,287,2005-06-27T12:33:32Z,1,2020-02-15T06:59:38Z +2287,2005-06-18T07:04:36Z,1473,317,2005-06-27T03:00:36Z,2,2020-02-15T06:59:38Z +2288,2005-06-18T07:23:17Z,877,247,2005-06-26T07:44:17Z,2,2020-02-15T06:59:38Z +2289,2005-06-18T07:29:43Z,2030,392,2005-06-24T11:16:43Z,2,2020-02-15T06:59:38Z +2290,2005-06-18T07:34:37Z,200,513,2005-06-26T11:45:37Z,1,2020-02-15T06:59:38Z +2291,2005-06-18T07:36:46Z,3949,436,2005-06-26T04:57:46Z,2,2020-02-15T06:59:38Z +2292,2005-06-18T07:37:48Z,173,130,2005-06-20T02:45:48Z,2,2020-02-15T06:59:38Z +2293,2005-06-18T07:45:03Z,3209,178,2005-06-24T08:12:03Z,1,2020-02-15T06:59:38Z +2294,2005-06-18T07:46:34Z,2096,72,2005-06-22T12:34:34Z,2,2020-02-15T06:59:38Z +2295,2005-06-18T07:56:18Z,3250,106,2005-06-21T07:10:18Z,1,2020-02-15T06:59:38Z +2296,2005-06-18T08:10:42Z,4558,481,2005-06-20T12:26:42Z,2,2020-02-15T06:59:38Z +2297,2005-06-18T08:17:41Z,2262,111,2005-06-26T05:08:41Z,2,2020-02-15T06:59:38Z +2298,2005-06-18T08:18:29Z,1227,497,2005-06-24T11:51:29Z,1,2020-02-15T06:59:38Z +2299,2005-06-18T08:18:52Z,4339,28,2005-06-26T11:48:52Z,1,2020-02-15T06:59:38Z +2300,2005-06-18T08:22:34Z,1617,291,2005-06-24T04:51:34Z,2,2020-02-15T06:59:38Z +2301,2005-06-18T08:24:03Z,869,273,2005-06-25T10:31:03Z,2,2020-02-15T06:59:38Z +2302,2005-06-18T08:27:33Z,1852,42,2005-06-22T02:46:33Z,2,2020-02-15T06:59:38Z +2303,2005-06-18T08:27:59Z,1524,329,2005-06-22T10:58:59Z,1,2020-02-15T06:59:38Z +2304,2005-06-18T08:30:15Z,3543,327,2005-06-23T06:17:15Z,1,2020-02-15T06:59:38Z +2305,2005-06-18T08:31:18Z,622,149,2005-06-24T06:18:18Z,2,2020-02-15T06:59:38Z +2306,2005-06-18T08:33:23Z,208,477,2005-06-27T10:01:23Z,2,2020-02-15T06:59:38Z +2307,2005-06-18T08:34:59Z,4576,47,2005-06-23T04:42:59Z,1,2020-02-15T06:59:38Z +2308,2005-06-18T08:41:48Z,197,1,2005-06-22T03:36:48Z,2,2020-02-15T06:59:38Z +2309,2005-06-18T08:43:24Z,611,576,2005-06-20T03:56:24Z,1,2020-02-15T06:59:38Z +2310,2005-06-18T08:45:59Z,2590,409,2005-06-26T05:06:59Z,2,2020-02-15T06:59:38Z +2311,2005-06-18T08:51:29Z,4506,236,2005-06-25T07:51:29Z,1,2020-02-15T06:59:38Z +2312,2005-06-18T08:55:46Z,402,184,2005-06-24T04:34:46Z,2,2020-02-15T06:59:38Z +2313,2005-06-18T08:56:45Z,3134,379,2005-06-26T10:30:45Z,2,2020-02-15T06:59:38Z +2314,2005-06-18T09:03:19Z,2157,160,2005-06-19T12:14:19Z,1,2020-02-15T06:59:38Z +2315,2005-06-18T09:03:39Z,2766,372,2005-06-22T11:18:39Z,1,2020-02-15T06:59:38Z +2316,2005-06-18T09:04:59Z,372,289,2005-06-20T09:39:59Z,2,2020-02-15T06:59:38Z +2317,2005-06-18T09:12:18Z,1602,326,2005-06-21T05:50:18Z,2,2020-02-15T06:59:38Z +2318,2005-06-18T09:13:54Z,2328,383,2005-06-23T07:19:54Z,1,2020-02-15T06:59:38Z +2319,2005-06-18T09:24:22Z,1521,393,2005-06-26T14:12:22Z,2,2020-02-15T06:59:38Z +2320,2005-06-18T09:24:50Z,597,552,2005-06-24T07:59:50Z,1,2020-02-15T06:59:38Z +2321,2005-06-18T09:42:42Z,1160,565,2005-06-25T14:28:42Z,1,2020-02-15T06:59:38Z +2322,2005-06-18T09:44:21Z,1893,213,2005-06-25T09:29:21Z,1,2020-02-15T06:59:38Z +2323,2005-06-18T09:55:02Z,207,54,2005-06-23T07:19:02Z,1,2020-02-15T06:59:38Z +2324,2005-06-18T10:00:33Z,2987,268,2005-06-23T14:10:33Z,1,2020-02-15T06:59:38Z +2325,2005-06-18T10:08:07Z,752,406,2005-06-21T15:07:07Z,1,2020-02-15T06:59:38Z +2326,2005-06-18T10:14:22Z,3829,174,2005-06-24T07:01:22Z,2,2020-02-15T06:59:38Z +2327,2005-06-18T10:16:40Z,1351,571,2005-06-20T15:06:40Z,1,2020-02-15T06:59:38Z +2328,2005-06-18T10:17:21Z,2304,441,2005-06-21T04:18:21Z,1,2020-02-15T06:59:38Z +2329,2005-06-18T10:22:52Z,4156,587,2005-06-20T12:03:52Z,2,2020-02-15T06:59:38Z +2330,2005-06-18T10:41:19Z,4285,390,2005-06-25T10:48:19Z,1,2020-02-15T06:59:38Z +2331,2005-06-18T10:50:09Z,1546,221,2005-06-25T14:30:09Z,1,2020-02-15T06:59:38Z +2332,2005-06-18T10:53:51Z,2152,140,2005-06-24T12:06:51Z,2,2020-02-15T06:59:38Z +2333,2005-06-18T10:55:54Z,2323,283,2005-06-25T07:09:54Z,2,2020-02-15T06:59:38Z +2334,2005-06-18T10:56:24Z,3076,223,2005-06-22T10:38:24Z,2,2020-02-15T06:59:38Z +2335,2005-06-18T10:59:36Z,3968,446,2005-06-26T06:42:36Z,2,2020-02-15T06:59:38Z +2336,2005-06-18T11:00:05Z,3888,124,2005-06-25T06:02:05Z,2,2020-02-15T06:59:38Z +2337,2005-06-18T11:15:27Z,4522,582,2005-06-26T06:59:27Z,2,2020-02-15T06:59:38Z +2338,2005-06-18T11:24:54Z,3165,316,2005-06-19T07:34:54Z,1,2020-02-15T06:59:38Z +2339,2005-06-18T11:29:22Z,313,297,2005-06-21T10:29:22Z,1,2020-02-15T06:59:38Z +2340,2005-06-18T11:30:56Z,1913,157,2005-06-23T06:00:56Z,1,2020-02-15T06:59:38Z +2341,2005-06-18T11:35:30Z,638,31,2005-06-27T11:56:30Z,2,2020-02-15T06:59:38Z +2342,2005-06-18T11:42:40Z,2169,146,2005-06-20T14:40:40Z,1,2020-02-15T06:59:38Z +2343,2005-06-18T11:46:26Z,4554,20,2005-06-22T11:37:26Z,2,2020-02-15T06:59:38Z +2344,2005-06-18T12:01:47Z,2015,498,2005-06-19T11:56:47Z,2,2020-02-15T06:59:38Z +2345,2005-06-18T12:03:23Z,1818,6,2005-06-22T14:25:23Z,2,2020-02-15T06:59:38Z +2346,2005-06-18T12:08:16Z,2575,308,2005-06-27T15:02:16Z,1,2020-02-15T06:59:38Z +2347,2005-06-18T12:12:29Z,4516,194,2005-06-23T14:03:29Z,1,2020-02-15T06:59:38Z +2348,2005-06-18T12:15:43Z,3622,449,2005-06-24T14:03:43Z,2,2020-02-15T06:59:38Z +2349,2005-06-18T12:25:14Z,1536,495,2005-06-19T11:24:14Z,2,2020-02-15T06:59:38Z +2350,2005-06-18T12:25:29Z,1179,471,2005-06-23T11:35:29Z,1,2020-02-15T06:59:38Z +2351,2005-06-18T12:27:57Z,2942,216,2005-06-23T16:14:57Z,1,2020-02-15T06:59:38Z +2352,2005-06-18T12:40:15Z,2141,590,2005-06-22T07:07:15Z,2,2020-02-15T06:59:38Z +2353,2005-06-18T12:53:25Z,3223,361,2005-06-19T13:53:25Z,1,2020-02-15T06:59:38Z +2354,2005-06-18T12:54:18Z,2793,77,2005-06-26T07:23:18Z,2,2020-02-15T06:59:38Z +2355,2005-06-18T12:57:06Z,3613,125,2005-06-26T07:32:06Z,1,2020-02-15T06:59:38Z +2356,2005-06-18T12:59:23Z,2207,455,2005-06-21T10:12:23Z,2,2020-02-15T06:59:38Z +2357,2005-06-18T12:59:41Z,1323,561,2005-06-26T16:40:41Z,1,2020-02-15T06:59:38Z +2358,2005-06-18T13:00:51Z,1728,478,2005-06-26T12:58:51Z,1,2020-02-15T06:59:38Z +2359,2005-06-18T13:04:42Z,3087,201,2005-06-25T11:52:42Z,1,2020-02-15T06:59:38Z +2360,2005-06-18T13:11:13Z,37,57,2005-06-23T15:32:13Z,2,2020-02-15T06:59:38Z +2361,2005-06-18T13:19:05Z,3547,546,2005-06-23T07:59:05Z,1,2020-02-15T06:59:38Z +2362,2005-06-18T13:31:15Z,2815,514,2005-06-19T12:35:15Z,1,2020-02-15T06:59:38Z +2363,2005-06-18T13:33:59Z,3497,1,2005-06-19T17:40:59Z,1,2020-02-15T06:59:38Z +2364,2005-06-18T13:37:32Z,2856,512,2005-06-23T14:18:32Z,1,2020-02-15T06:59:38Z +2365,2005-06-18T13:45:34Z,3109,493,2005-06-21T12:12:34Z,2,2020-02-15T06:59:38Z +2366,2005-06-18T13:46:39Z,1413,162,2005-06-23T18:49:39Z,2,2020-02-15T06:59:38Z +2367,2005-06-18T14:00:31Z,4086,566,2005-06-22T14:45:31Z,2,2020-02-15T06:59:38Z +2368,2005-06-18T14:10:27Z,1058,99,2005-06-23T10:49:27Z,1,2020-02-15T06:59:38Z +2369,2005-06-18T14:25:29Z,1515,44,2005-06-23T18:45:29Z,2,2020-02-15T06:59:38Z +2370,2005-06-18T14:29:54Z,2656,489,2005-06-24T10:23:54Z,1,2020-02-15T06:59:38Z +2371,2005-06-18T14:35:29Z,178,248,2005-06-22T09:38:29Z,2,2020-02-15T06:59:38Z +2372,2005-06-18T14:37:37Z,1567,96,2005-06-21T08:40:37Z,2,2020-02-15T06:59:38Z +2373,2005-06-18T14:37:57Z,2780,544,2005-06-23T19:29:57Z,2,2020-02-15T06:59:38Z +2374,2005-06-18T14:44:06Z,2634,71,2005-06-22T17:14:06Z,1,2020-02-15T06:59:38Z +2375,2005-06-18T14:47:29Z,2175,259,2005-06-26T13:52:29Z,2,2020-02-15T06:59:38Z +2376,2005-06-18T14:55:30Z,3664,479,2005-06-25T17:40:30Z,1,2020-02-15T06:59:38Z +2377,2005-06-18T14:56:23Z,3568,193,2005-06-27T12:36:23Z,1,2020-02-15T06:59:38Z +2378,2005-06-18T14:57:49Z,2796,384,2005-06-26T18:23:49Z,2,2020-02-15T06:59:38Z +2379,2005-06-18T14:59:39Z,2708,597,2005-06-24T13:26:39Z,2,2020-02-15T06:59:38Z +2380,2005-06-18T15:00:04Z,4413,256,2005-06-24T13:29:04Z,2,2020-02-15T06:59:38Z +2381,2005-06-18T15:00:30Z,1491,167,2005-06-22T11:38:30Z,1,2020-02-15T06:59:38Z +2382,2005-06-18T15:03:52Z,915,568,2005-06-20T10:16:52Z,2,2020-02-15T06:59:38Z +2383,2005-06-18T15:17:59Z,2459,149,2005-06-26T18:42:59Z,2,2020-02-15T06:59:38Z +2384,2005-06-18T15:18:49Z,3378,132,2005-06-21T18:10:49Z,1,2020-02-15T06:59:38Z +2385,2005-06-18T15:22:40Z,1641,298,2005-06-26T10:02:40Z,1,2020-02-15T06:59:38Z +2386,2005-06-18T15:22:51Z,1361,293,2005-06-22T20:01:51Z,1,2020-02-15T06:59:38Z +2387,2005-06-18T15:24:19Z,692,289,2005-06-25T17:41:19Z,2,2020-02-15T06:59:38Z +2388,2005-06-18T15:26:30Z,2923,53,2005-06-20T20:24:30Z,1,2020-02-15T06:59:38Z +2389,2005-06-18T15:27:47Z,731,382,2005-06-21T12:26:47Z,1,2020-02-15T06:59:38Z +2390,2005-06-18T15:29:26Z,2748,239,2005-06-23T17:50:26Z,1,2020-02-15T06:59:38Z +2391,2005-06-18T15:33:30Z,2850,491,2005-06-25T14:30:30Z,1,2020-02-15T06:59:38Z +2392,2005-06-18T15:34:18Z,2213,261,2005-06-19T16:22:18Z,1,2020-02-15T06:59:38Z +2393,2005-06-18T15:37:55Z,3143,21,2005-06-25T17:11:55Z,1,2020-02-15T06:59:38Z +2394,2005-06-18T15:42:30Z,2669,60,2005-06-26T16:12:30Z,1,2020-02-15T06:59:38Z +2395,2005-06-18T15:45:15Z,899,544,2005-06-27T19:11:15Z,2,2020-02-15T06:59:38Z +2396,2005-06-18T15:49:48Z,1986,31,2005-06-27T20:31:48Z,2,2020-02-15T06:59:38Z +2397,2005-06-18T15:51:25Z,2895,76,2005-06-24T15:52:25Z,1,2020-02-15T06:59:38Z +2398,2005-06-18T15:56:53Z,3001,526,2005-06-27T14:25:53Z,2,2020-02-15T06:59:38Z +2399,2005-06-18T16:06:14Z,2492,577,2005-06-26T16:56:14Z,2,2020-02-15T06:59:38Z +2400,2005-06-18T16:10:46Z,3194,410,2005-06-25T20:34:46Z,1,2020-02-15T06:59:38Z +2401,2005-06-18T16:22:03Z,85,359,2005-06-19T13:49:03Z,2,2020-02-15T06:59:38Z +2402,2005-06-18T16:24:45Z,2833,360,2005-06-27T14:39:45Z,1,2020-02-15T06:59:38Z +2403,2005-06-18T16:33:22Z,2697,536,2005-06-23T19:25:22Z,1,2020-02-15T06:59:38Z +2404,2005-06-18T16:33:48Z,4138,456,2005-06-23T20:39:48Z,2,2020-02-15T06:59:38Z +2405,2005-06-18T16:36:38Z,3604,356,2005-06-21T19:15:38Z,1,2020-02-15T06:59:38Z +2406,2005-06-18T16:39:37Z,1321,497,2005-06-23T12:04:37Z,1,2020-02-15T06:59:38Z +2407,2005-06-18T16:50:41Z,2547,421,2005-06-24T15:29:41Z,2,2020-02-15T06:59:38Z +2408,2005-06-18T16:50:44Z,258,87,2005-06-19T20:11:44Z,1,2020-02-15T06:59:38Z +2409,2005-06-18T16:53:33Z,656,84,2005-06-20T18:23:33Z,1,2020-02-15T06:59:38Z +2410,2005-06-18T16:55:08Z,265,381,2005-06-20T12:40:08Z,2,2020-02-15T06:59:38Z +2411,2005-06-18T16:55:54Z,3302,558,2005-06-25T12:44:54Z,1,2020-02-15T06:59:38Z +2412,2005-06-18T16:58:58Z,1946,127,2005-06-27T22:57:58Z,1,2020-02-15T06:59:38Z +2413,2005-06-18T16:59:34Z,1851,170,2005-06-27T16:10:34Z,2,2020-02-15T06:59:38Z +2414,2005-06-18T17:01:55Z,4500,275,2005-06-20T17:42:55Z,1,2020-02-15T06:59:38Z +2415,2005-06-18T17:02:42Z,3105,434,2005-06-25T13:16:42Z,2,2020-02-15T06:59:38Z +2416,2005-06-18T17:07:34Z,2868,26,2005-06-24T19:16:34Z,1,2020-02-15T06:59:38Z +2417,2005-06-18T17:12:01Z,1956,219,2005-06-26T13:32:01Z,1,2020-02-15T06:59:38Z +2418,2005-06-18T17:14:42Z,2756,381,2005-06-26T16:33:42Z,1,2020-02-15T06:59:38Z +2419,2005-06-18T17:21:24Z,1255,102,2005-06-26T18:25:24Z,1,2020-02-15T06:59:38Z +2420,2005-06-18T17:22:28Z,241,502,2005-06-23T17:45:28Z,1,2020-02-15T06:59:38Z +2421,2005-06-18T17:25:05Z,3524,26,2005-06-23T21:09:05Z,2,2020-02-15T06:59:38Z +2422,2005-06-18T17:28:57Z,3170,527,2005-06-23T15:22:57Z,1,2020-02-15T06:59:38Z +2423,2005-06-18T17:32:08Z,1744,231,2005-06-21T11:58:08Z,1,2020-02-15T06:59:38Z +2424,2005-06-18T17:35:08Z,1884,233,2005-06-23T15:33:08Z,1,2020-02-15T06:59:38Z +2425,2005-06-18T17:37:45Z,2630,579,2005-06-27T18:40:45Z,2,2020-02-15T06:59:38Z +2426,2005-06-18T17:40:44Z,474,543,2005-06-22T14:30:44Z,2,2020-02-15T06:59:38Z +2427,2005-06-18T17:45:00Z,4278,176,2005-06-27T20:07:00Z,2,2020-02-15T06:59:38Z +2428,2005-06-18T17:47:34Z,3892,241,2005-06-19T14:39:34Z,2,2020-02-15T06:59:38Z +2429,2005-06-18T17:48:28Z,3238,583,2005-06-27T15:52:28Z,1,2020-02-15T06:59:38Z +2430,2005-06-18T17:51:46Z,1984,434,2005-06-23T19:17:46Z,1,2020-02-15T06:59:38Z +2431,2005-06-18T17:53:03Z,1383,295,2005-06-25T15:08:03Z,2,2020-02-15T06:59:38Z +2432,2005-06-18T17:59:18Z,4420,250,2005-06-25T15:19:18Z,2,2020-02-15T06:59:38Z +2433,2005-06-18T18:10:17Z,937,356,2005-06-23T14:46:17Z,2,2020-02-15T06:59:38Z +2434,2005-06-18T18:11:51Z,3739,12,2005-06-23T12:52:51Z,2,2020-02-15T06:59:38Z +2435,2005-06-18T18:12:26Z,3548,173,2005-06-22T13:43:26Z,2,2020-02-15T06:59:38Z +2436,2005-06-18T18:13:32Z,3328,534,2005-06-21T13:33:32Z,2,2020-02-15T06:59:38Z +2437,2005-06-18T18:30:26Z,1799,454,2005-06-21T18:36:26Z,1,2020-02-15T06:59:38Z +2438,2005-06-18T18:34:21Z,184,31,2005-06-19T16:50:21Z,1,2020-02-15T06:59:38Z +2439,2005-06-18T18:35:04Z,909,39,2005-06-21T19:47:04Z,2,2020-02-15T06:59:38Z +2440,2005-06-18T18:41:09Z,2866,380,2005-06-22T12:46:09Z,1,2020-02-15T06:59:38Z +2441,2005-06-18T18:45:11Z,3148,593,2005-06-20T00:42:11Z,1,2020-02-15T06:59:38Z +2442,2005-06-18T18:49:18Z,4045,364,2005-06-22T16:18:18Z,1,2020-02-15T06:59:38Z +2443,2005-06-18T18:52:30Z,1622,233,2005-06-24T21:27:30Z,1,2020-02-15T06:59:38Z +2444,2005-06-18T18:58:12Z,2233,576,2005-06-27T20:48:12Z,1,2020-02-15T06:59:38Z +2445,2005-06-18T19:02:11Z,2887,98,2005-06-23T22:25:11Z,1,2020-02-15T06:59:38Z +2446,2005-06-18T19:04:41Z,1283,466,2005-06-27T17:10:41Z,2,2020-02-15T06:59:38Z +2447,2005-06-18T19:10:55Z,2353,523,2005-06-27T16:35:55Z,1,2020-02-15T06:59:38Z +2448,2005-06-18T19:13:45Z,1642,308,2005-06-27T14:43:45Z,1,2020-02-15T06:59:38Z +2449,2005-06-18T19:18:36Z,3630,498,2005-06-27T23:49:36Z,1,2020-02-15T06:59:38Z +2450,2005-06-18T19:25:47Z,863,230,2005-06-27T15:54:47Z,1,2020-02-15T06:59:38Z +2451,2005-06-18T19:28:02Z,835,24,2005-06-23T16:41:02Z,1,2020-02-15T06:59:38Z +2452,2005-06-18T19:29:21Z,4318,77,2005-06-26T22:27:21Z,1,2020-02-15T06:59:38Z +2453,2005-06-18T19:30:53Z,2562,588,2005-06-20T17:22:53Z,1,2020-02-15T06:59:38Z +2454,2005-06-18T19:32:51Z,314,253,2005-06-24T20:03:51Z,2,2020-02-15T06:59:38Z +2455,2005-06-18T19:33:06Z,870,241,2005-06-21T15:21:06Z,1,2020-02-15T06:59:38Z +2456,2005-06-18T19:36:50Z,553,147,2005-06-23T22:48:50Z,1,2020-02-15T06:59:38Z +2457,2005-06-18T19:38:20Z,1277,91,2005-06-26T20:48:20Z,1,2020-02-15T06:59:38Z +2458,2005-06-18T19:39:05Z,599,572,2005-06-21T13:54:05Z,2,2020-02-15T06:59:38Z +2459,2005-06-18T19:44:08Z,1024,185,2005-06-23T19:14:08Z,2,2020-02-15T06:59:38Z +2460,2005-06-18T19:54:13Z,3933,553,2005-06-27T22:36:13Z,2,2020-02-15T06:59:38Z +2461,2005-06-18T19:58:12Z,78,343,2005-06-28T01:35:12Z,2,2020-02-15T06:59:38Z +2462,2005-06-18T20:00:15Z,2151,468,2005-06-21T21:54:15Z,2,2020-02-15T06:59:38Z +2463,2005-06-18T20:01:43Z,1186,194,2005-06-25T15:04:43Z,2,2020-02-15T06:59:38Z +2464,2005-06-18T20:06:05Z,463,380,2005-06-20T19:22:05Z,1,2020-02-15T06:59:38Z +2465,2005-06-18T20:07:02Z,3783,160,2005-06-25T20:55:02Z,1,2020-02-15T06:59:38Z +2466,2005-06-18T20:18:42Z,1356,427,2005-06-20T01:32:42Z,1,2020-02-15T06:59:38Z +2467,2005-06-18T20:20:05Z,4387,177,2005-06-20T17:01:05Z,1,2020-02-15T06:59:38Z +2468,2005-06-18T20:23:52Z,1833,382,2005-06-23T14:34:52Z,1,2020-02-15T06:59:38Z +2469,2005-06-18T20:24:23Z,1993,137,2005-06-27T15:39:23Z,1,2020-02-15T06:59:38Z +2470,2005-06-18T20:28:31Z,4319,40,2005-06-25T18:48:31Z,1,2020-02-15T06:59:38Z +2471,2005-06-18T20:31:00Z,3399,183,2005-06-24T18:01:00Z,2,2020-02-15T06:59:38Z +2472,2005-06-18T20:32:40Z,4556,70,2005-06-20T00:40:40Z,2,2020-02-15T06:59:38Z +2473,2005-06-18T20:42:45Z,3876,221,2005-06-19T20:17:45Z,1,2020-02-15T06:59:38Z +2474,2005-06-18T20:51:34Z,3450,151,2005-06-25T01:39:34Z,1,2020-02-15T06:59:38Z +2475,2005-06-18T20:52:46Z,889,336,2005-06-21T19:40:46Z,2,2020-02-15T06:59:38Z +2476,2005-06-18T20:57:12Z,3998,334,2005-06-20T15:42:12Z,1,2020-02-15T06:59:38Z +2477,2005-06-18T20:58:46Z,2510,206,2005-06-22T21:49:46Z,1,2020-02-15T06:59:38Z +2478,2005-06-18T21:01:21Z,2798,241,2005-06-24T00:20:21Z,1,2020-02-15T06:59:38Z +2479,2005-06-18T21:03:08Z,1624,408,2005-06-22T16:49:08Z,1,2020-02-15T06:59:38Z +2480,2005-06-18T21:04:09Z,4078,310,2005-06-22T16:24:09Z,1,2020-02-15T06:59:38Z +2481,2005-06-18T21:08:30Z,800,322,2005-06-23T02:35:30Z,2,2020-02-15T06:59:38Z +2482,2005-06-18T21:10:44Z,452,122,2005-06-19T20:39:44Z,1,2020-02-15T06:59:38Z +2483,2005-06-18T21:22:23Z,4225,88,2005-06-25T01:14:23Z,1,2020-02-15T06:59:38Z +2484,2005-06-18T21:25:23Z,1511,515,2005-06-24T16:03:23Z,2,2020-02-15T06:59:38Z +2485,2005-06-18T21:26:03Z,1562,56,2005-06-21T22:09:03Z,2,2020-02-15T06:59:38Z +2486,2005-06-18T21:26:56Z,268,15,2005-06-22T23:42:56Z,1,2020-02-15T06:59:38Z +2487,2005-06-18T21:32:54Z,3683,374,2005-06-23T21:11:54Z,2,2020-02-15T06:59:38Z +2488,2005-06-18T21:38:26Z,1338,403,2005-06-24T02:08:26Z,2,2020-02-15T06:59:38Z +2489,2005-06-18T22:00:44Z,4012,382,2005-06-22T02:06:44Z,2,2020-02-15T06:59:38Z +2490,2005-06-18T22:00:50Z,1934,402,2005-06-19T23:45:50Z,2,2020-02-15T06:59:38Z +2491,2005-06-18T22:01:31Z,1779,316,2005-06-26T02:46:31Z,1,2020-02-15T06:59:38Z +2492,2005-06-18T22:04:15Z,2858,237,2005-06-23T21:58:15Z,1,2020-02-15T06:59:38Z +2493,2005-06-18T22:12:09Z,4121,269,2005-06-27T23:44:09Z,1,2020-02-15T06:59:38Z +2494,2005-06-18T22:15:09Z,1313,434,2005-06-25T17:23:09Z,1,2020-02-15T06:59:38Z +2495,2005-06-18T22:15:42Z,3826,338,2005-06-21T23:21:42Z,1,2020-02-15T06:59:38Z +2496,2005-06-18T22:20:11Z,646,527,2005-06-20T03:08:11Z,2,2020-02-15T06:59:38Z +2497,2005-06-18T22:50:40Z,2327,171,2005-06-26T22:39:40Z,1,2020-02-15T06:59:38Z +2498,2005-06-18T22:56:26Z,2291,74,2005-06-22T20:02:26Z,1,2020-02-15T06:59:38Z +2499,2005-06-18T23:01:36Z,3172,348,2005-06-20T21:50:36Z,2,2020-02-15T06:59:38Z +2500,2005-06-18T23:07:12Z,4241,12,2005-06-26T17:27:12Z,1,2020-02-15T06:59:38Z +2501,2005-06-18T23:10:11Z,1185,450,2005-06-24T18:40:11Z,2,2020-02-15T06:59:38Z +2502,2005-06-18T23:12:13Z,2622,325,2005-06-20T04:19:13Z,2,2020-02-15T06:59:38Z +2503,2005-06-18T23:17:19Z,2486,176,2005-06-23T03:57:19Z,2,2020-02-15T06:59:38Z +2504,2005-06-18T23:19:53Z,1684,452,2005-06-21T04:43:53Z,2,2020-02-15T06:59:38Z +2505,2005-06-18T23:28:27Z,1670,519,2005-06-26T01:36:27Z,1,2020-02-15T06:59:38Z +2506,2005-06-18T23:29:53Z,2308,82,2005-06-25T18:11:53Z,2,2020-02-15T06:59:38Z +2507,2005-06-18T23:39:22Z,3121,325,2005-06-21T19:23:22Z,1,2020-02-15T06:59:38Z +2508,2005-06-18T23:43:58Z,4322,476,2005-06-20T19:26:58Z,2,2020-02-15T06:59:38Z +2509,2005-06-18T23:44:08Z,4469,213,2005-06-20T01:36:08Z,2,2020-02-15T06:59:38Z +2510,2005-06-18T23:44:21Z,3827,384,2005-06-24T00:31:21Z,1,2020-02-15T06:59:38Z +2511,2005-06-18T23:45:30Z,1824,234,2005-06-24T01:21:30Z,2,2020-02-15T06:59:38Z +2512,2005-06-18T23:48:47Z,4515,27,2005-06-21T04:58:47Z,2,2020-02-15T06:59:38Z +2513,2005-06-18T23:53:15Z,3379,515,2005-06-24T21:16:15Z,2,2020-02-15T06:59:38Z +2514,2005-06-18T23:56:44Z,2559,382,2005-06-23T21:10:44Z,1,2020-02-15T06:59:38Z +2515,2005-06-18T23:57:31Z,3213,188,2005-06-22T05:31:31Z,2,2020-02-15T06:59:38Z +2516,2005-06-19T00:03:28Z,2678,87,2005-06-21T00:30:28Z,2,2020-02-15T06:59:38Z +2517,2005-06-19T00:11:26Z,53,74,2005-06-25T02:19:26Z,1,2020-02-15T06:59:38Z +2518,2005-06-19T00:16:23Z,3503,86,2005-06-25T19:28:23Z,2,2020-02-15T06:59:38Z +2519,2005-06-19T00:19:21Z,1172,128,2005-06-25T01:46:21Z,1,2020-02-15T06:59:38Z +2520,2005-06-19T00:29:00Z,4181,446,2005-06-28T04:36:00Z,1,2020-02-15T06:59:38Z +2521,2005-06-19T00:41:08Z,132,92,2005-06-22T00:40:08Z,1,2020-02-15T06:59:38Z +2522,2005-06-19T00:43:42Z,550,579,2005-06-28T04:26:42Z,1,2020-02-15T06:59:38Z +2523,2005-06-19T00:45:56Z,460,89,2005-06-21T00:54:56Z,2,2020-02-15T06:59:38Z +2524,2005-06-19T00:48:11Z,441,465,2005-06-25T01:46:11Z,2,2020-02-15T06:59:38Z +2525,2005-06-19T00:48:22Z,1307,365,2005-06-24T19:10:22Z,2,2020-02-15T06:59:38Z +2526,2005-06-19T01:03:07Z,3309,500,2005-06-28T06:57:07Z,1,2020-02-15T06:59:38Z +2527,2005-06-19T01:10:31Z,387,463,2005-06-20T05:37:31Z,2,2020-02-15T06:59:38Z +2528,2005-06-19T01:14:12Z,1836,331,2005-06-26T05:08:12Z,2,2020-02-15T06:59:38Z +2529,2005-06-19T01:18:27Z,2306,478,2005-06-24T00:26:27Z,1,2020-02-15T06:59:38Z +2530,2005-06-19T01:20:00Z,4166,31,2005-06-23T04:10:00Z,1,2020-02-15T06:59:38Z +2531,2005-06-19T01:20:49Z,768,368,2005-06-22T01:50:49Z,2,2020-02-15T06:59:38Z +2532,2005-06-19T01:27:46Z,1870,26,2005-06-20T02:15:46Z,1,2020-02-15T06:59:38Z +2533,2005-06-19T01:34:26Z,4564,187,2005-06-22T20:19:26Z,1,2020-02-15T06:59:38Z +2534,2005-06-19T01:38:39Z,2540,517,2005-06-23T00:16:39Z,1,2020-02-15T06:59:38Z +2535,2005-06-19T01:39:04Z,901,130,2005-06-28T01:33:04Z,2,2020-02-15T06:59:38Z +2536,2005-06-19T01:41:34Z,4232,163,2005-06-27T03:11:34Z,1,2020-02-15T06:59:38Z +2537,2005-06-19T01:52:21Z,3499,388,2005-06-26T02:09:21Z,1,2020-02-15T06:59:38Z +2538,2005-06-19T01:56:59Z,1287,472,2005-06-25T00:54:59Z,2,2020-02-15T06:59:38Z +2539,2005-06-19T01:58:39Z,4474,527,2005-06-19T22:17:39Z,2,2020-02-15T06:59:38Z +2540,2005-06-19T02:04:48Z,4305,363,2005-06-20T22:42:48Z,2,2020-02-15T06:59:38Z +2541,2005-06-19T02:08:10Z,129,360,2005-06-23T23:32:10Z,1,2020-02-15T06:59:38Z +2542,2005-06-19T02:08:39Z,1446,67,2005-06-26T20:25:39Z,1,2020-02-15T06:59:38Z +2543,2005-06-19T02:14:11Z,1729,58,2005-06-21T00:40:11Z,2,2020-02-15T06:59:38Z +2544,2005-06-19T02:16:17Z,1465,558,2005-06-22T21:45:17Z,1,2020-02-15T06:59:38Z +2545,2005-06-19T02:23:36Z,3237,413,2005-06-20T03:17:36Z,2,2020-02-15T06:59:38Z +2546,2005-06-19T02:39:39Z,971,272,2005-06-23T03:56:39Z,2,2020-02-15T06:59:38Z +2547,2005-06-19T02:44:17Z,4560,162,2005-06-24T08:01:17Z,2,2020-02-15T06:59:38Z +2548,2005-06-19T02:45:35Z,4292,561,2005-06-22T06:52:35Z,2,2020-02-15T06:59:38Z +2549,2005-06-19T02:46:39Z,3854,495,2005-06-26T22:30:39Z,2,2020-02-15T06:59:38Z +2550,2005-06-19T02:49:55Z,1370,38,2005-06-24T01:37:55Z,1,2020-02-15T06:59:38Z +2551,2005-06-19T02:51:04Z,2007,444,2005-06-28T05:02:04Z,1,2020-02-15T06:59:38Z +2552,2005-06-19T03:01:29Z,664,389,2005-06-28T04:13:29Z,1,2020-02-15T06:59:38Z +2553,2005-06-19T03:04:59Z,923,473,2005-06-26T02:36:59Z,2,2020-02-15T06:59:38Z +2554,2005-06-19T03:05:38Z,3916,322,2005-06-25T23:03:38Z,1,2020-02-15T06:59:38Z +2555,2005-06-19T03:07:02Z,260,191,2005-06-25T05:25:02Z,2,2020-02-15T06:59:38Z +2556,2005-06-19T03:07:32Z,125,377,2005-06-23T23:09:32Z,1,2020-02-15T06:59:38Z +2557,2005-06-19T03:08:51Z,4546,257,2005-06-20T07:59:51Z,1,2020-02-15T06:59:38Z +2558,2005-06-19T03:09:16Z,2920,361,2005-06-24T05:29:16Z,1,2020-02-15T06:59:38Z +2559,2005-06-19T03:09:46Z,4433,414,2005-06-28T07:49:46Z,1,2020-02-15T06:59:38Z +2560,2005-06-19T03:12:42Z,3340,309,2005-06-28T02:28:42Z,1,2020-02-15T06:59:38Z +2561,2005-06-19T03:14:52Z,4128,256,2005-06-21T02:42:52Z,2,2020-02-15T06:59:38Z +2562,2005-06-19T03:15:05Z,51,265,2005-06-21T08:26:05Z,2,2020-02-15T06:59:38Z +2563,2005-06-19T03:24:17Z,1935,41,2005-06-23T04:08:17Z,2,2020-02-15T06:59:38Z +2564,2005-06-19T03:41:10Z,4008,408,2005-06-24T03:10:10Z,1,2020-02-15T06:59:38Z +2565,2005-06-19T03:44:03Z,2347,128,2005-06-24T01:26:03Z,2,2020-02-15T06:59:38Z +2566,2005-06-19T03:45:39Z,495,486,2005-06-25T08:43:39Z,2,2020-02-15T06:59:38Z +2567,2005-06-19T04:04:46Z,216,496,2005-06-19T23:39:46Z,2,2020-02-15T06:59:38Z +2568,2005-06-19T04:09:03Z,3032,190,2005-06-24T23:24:03Z,1,2020-02-15T06:59:38Z +2569,2005-06-19T04:19:04Z,30,213,2005-06-26T04:31:04Z,1,2020-02-15T06:59:38Z +2570,2005-06-19T04:20:13Z,1105,5,2005-06-25T07:00:13Z,1,2020-02-15T06:59:38Z +2571,2005-06-19T04:20:14Z,1800,66,2005-06-21T07:28:14Z,2,2020-02-15T06:59:38Z +2572,2005-06-19T04:21:26Z,2449,159,2005-06-23T09:22:26Z,2,2020-02-15T06:59:38Z +2573,2005-06-19T04:23:18Z,3354,563,2005-06-23T06:04:18Z,1,2020-02-15T06:59:38Z +2574,2005-06-19T04:23:52Z,3320,143,2005-06-20T05:24:52Z,1,2020-02-15T06:59:38Z +2575,2005-06-19T04:32:52Z,354,336,2005-06-24T09:37:52Z,1,2020-02-15T06:59:38Z +2576,2005-06-19T04:34:15Z,2928,559,2005-06-28T10:02:15Z,2,2020-02-15T06:59:38Z +2577,2005-06-19T04:36:03Z,447,66,2005-06-28T00:38:03Z,2,2020-02-15T06:59:38Z +2578,2005-06-19T04:40:06Z,1695,267,2005-06-26T09:37:06Z,2,2020-02-15T06:59:38Z +2579,2005-06-19T04:40:44Z,3836,493,2005-06-22T09:22:44Z,1,2020-02-15T06:59:38Z +2580,2005-06-19T04:44:30Z,2527,219,2005-06-23T04:15:30Z,1,2020-02-15T06:59:38Z +2581,2005-06-19T04:54:13Z,376,456,2005-06-23T23:28:13Z,2,2020-02-15T06:59:38Z +2582,2005-06-19T04:56:27Z,201,267,2005-06-26T08:56:27Z,2,2020-02-15T06:59:38Z +2583,2005-06-19T05:01:40Z,3999,523,2005-06-28T00:04:40Z,1,2020-02-15T06:59:38Z +2584,2005-06-19T05:02:36Z,3733,90,2005-06-28T04:52:36Z,2,2020-02-15T06:59:38Z +2585,2005-06-19T05:05:03Z,91,406,2005-06-20T09:28:03Z,1,2020-02-15T06:59:38Z +2586,2005-06-19T05:05:11Z,4104,537,2005-06-27T00:23:11Z,1,2020-02-15T06:59:38Z +2587,2005-06-19T05:06:14Z,2188,331,2005-06-24T10:50:14Z,2,2020-02-15T06:59:38Z +2588,2005-06-19T05:20:31Z,3626,143,2005-06-22T04:20:31Z,2,2020-02-15T06:59:38Z +2589,2005-06-19T05:21:27Z,225,164,2005-06-21T09:55:27Z,2,2020-02-15T06:59:38Z +2590,2005-06-19T05:31:40Z,3572,324,2005-06-20T07:58:40Z,2,2020-02-15T06:59:38Z +2591,2005-06-19T05:32:22Z,4481,438,2005-06-25T23:42:22Z,1,2020-02-15T06:59:38Z +2592,2005-06-19T05:36:54Z,282,208,2005-06-21T08:44:54Z,1,2020-02-15T06:59:38Z +2593,2005-06-19T05:40:11Z,2031,556,2005-06-28T08:11:11Z,1,2020-02-15T06:59:38Z +2594,2005-06-19T05:43:43Z,829,123,2005-06-25T03:41:43Z,2,2020-02-15T06:59:38Z +2595,2005-06-19T05:43:55Z,3197,122,2005-06-25T10:20:55Z,1,2020-02-15T06:59:38Z +2596,2005-06-19T05:48:26Z,2229,80,2005-06-24T10:16:26Z,1,2020-02-15T06:59:38Z +2597,2005-06-19T05:53:46Z,2278,407,2005-06-20T05:14:46Z,1,2020-02-15T06:59:38Z +2598,2005-06-19T05:59:57Z,2079,265,2005-06-24T11:44:57Z,2,2020-02-15T06:59:38Z +2599,2005-06-19T06:06:07Z,461,171,2005-06-27T01:10:07Z,1,2020-02-15T06:59:38Z +2600,2005-06-19T06:07:25Z,469,423,2005-06-28T03:37:25Z,2,2020-02-15T06:59:38Z +2601,2005-06-19T06:09:44Z,2898,98,2005-06-20T08:03:44Z,1,2020-02-15T06:59:38Z +2602,2005-06-19T06:10:08Z,4124,173,2005-06-24T00:39:08Z,2,2020-02-15T06:59:38Z +2603,2005-06-19T06:21:25Z,587,222,2005-06-26T03:19:25Z,1,2020-02-15T06:59:38Z +2604,2005-06-19T06:30:10Z,2889,28,2005-06-25T11:16:10Z,2,2020-02-15T06:59:38Z +2605,2005-06-19T06:48:01Z,2342,38,2005-06-25T07:00:01Z,1,2020-02-15T06:59:38Z +2606,2005-06-19T06:51:32Z,4133,364,2005-06-21T03:15:32Z,2,2020-02-15T06:59:38Z +2607,2005-06-19T06:55:01Z,3922,340,2005-06-25T03:21:01Z,2,2020-02-15T06:59:38Z +2608,2005-06-19T07:10:36Z,1618,132,2005-06-24T13:09:36Z,1,2020-02-15T06:59:38Z +2609,2005-06-19T07:13:12Z,2254,383,2005-06-28T12:30:12Z,2,2020-02-15T06:59:38Z +2610,2005-06-19T07:16:20Z,3845,542,2005-06-25T09:39:20Z,2,2020-02-15T06:59:38Z +2611,2005-06-19T07:18:17Z,3682,301,2005-06-21T10:19:17Z,1,2020-02-15T06:59:38Z +2612,2005-06-19T07:19:41Z,1691,287,2005-06-25T11:10:41Z,1,2020-02-15T06:59:38Z +2613,2005-06-19T07:25:50Z,3830,179,2005-06-21T03:04:50Z,1,2020-02-15T06:59:38Z +2614,2005-06-19T07:28:11Z,4147,145,2005-06-22T12:33:11Z,1,2020-02-15T06:59:38Z +2615,2005-06-19T07:29:13Z,3810,578,2005-06-27T12:50:13Z,1,2020-02-15T06:59:38Z +2616,2005-06-19T07:33:00Z,581,478,2005-06-28T03:05:00Z,1,2020-02-15T06:59:38Z +2617,2005-06-19T07:48:31Z,204,313,2005-06-27T11:56:31Z,1,2020-02-15T06:59:38Z +2618,2005-06-19T08:03:01Z,2465,310,2005-06-24T03:23:01Z,2,2020-02-15T06:59:38Z +2619,2005-06-19T08:03:12Z,1848,350,2005-06-21T05:02:12Z,2,2020-02-15T06:59:38Z +2620,2005-06-19T08:06:29Z,3183,94,2005-06-24T11:42:29Z,1,2020-02-15T06:59:38Z +2621,2005-06-19T08:07:31Z,1746,439,2005-06-28T05:36:31Z,1,2020-02-15T06:59:38Z +2622,2005-06-19T08:10:41Z,1393,573,2005-06-28T10:44:41Z,2,2020-02-15T06:59:38Z +2623,2005-06-19T08:11:51Z,4477,12,2005-06-26T12:28:51Z,2,2020-02-15T06:59:38Z +2624,2005-06-19T08:22:09Z,3071,32,2005-06-27T11:13:09Z,1,2020-02-15T06:59:38Z +2625,2005-06-19T08:23:11Z,3946,25,2005-06-26T09:52:11Z,2,2020-02-15T06:59:38Z +2626,2005-06-19T08:28:44Z,2816,450,2005-06-24T03:58:44Z,1,2020-02-15T06:59:38Z +2627,2005-06-19T08:32:00Z,2779,592,2005-06-24T04:31:00Z,2,2020-02-15T06:59:38Z +2628,2005-06-19T08:34:53Z,3917,3,2005-06-28T04:19:53Z,2,2020-02-15T06:59:38Z +2629,2005-06-19T08:42:12Z,1810,458,2005-06-28T03:38:12Z,2,2020-02-15T06:59:38Z +2630,2005-06-19T08:47:21Z,3904,236,2005-06-25T09:31:21Z,1,2020-02-15T06:59:38Z +2631,2005-06-19T08:49:53Z,3471,39,2005-06-26T03:25:53Z,1,2020-02-15T06:59:38Z +2632,2005-06-19T08:51:47Z,2274,574,2005-06-23T07:13:47Z,2,2020-02-15T06:59:38Z +2633,2005-06-19T08:53:10Z,3462,68,2005-06-20T07:56:10Z,1,2020-02-15T06:59:38Z +2634,2005-06-19T08:55:17Z,3687,318,2005-06-20T11:44:17Z,2,2020-02-15T06:59:38Z +2635,2005-06-19T09:08:45Z,3332,105,2005-06-26T09:20:45Z,1,2020-02-15T06:59:38Z +2636,2005-06-19T09:13:06Z,2102,253,2005-06-25T07:47:06Z,2,2020-02-15T06:59:38Z +2637,2005-06-19T09:20:56Z,2736,327,2005-06-27T10:09:56Z,2,2020-02-15T06:59:38Z +2638,2005-06-19T09:23:30Z,2944,295,2005-06-26T14:56:30Z,1,2020-02-15T06:59:38Z +2639,2005-06-19T09:24:02Z,3971,116,2005-06-21T14:16:02Z,2,2020-02-15T06:59:38Z +2640,2005-06-19T09:26:13Z,721,540,2005-06-20T14:38:13Z,1,2020-02-15T06:59:38Z +2641,2005-06-19T09:38:33Z,231,374,2005-06-22T09:55:33Z,1,2020-02-15T06:59:38Z +2642,2005-06-19T09:39:01Z,2065,4,2005-06-25T08:33:01Z,1,2020-02-15T06:59:38Z +2643,2005-06-19T09:39:27Z,1928,318,2005-06-26T10:27:27Z,2,2020-02-15T06:59:38Z +2644,2005-06-19T09:42:30Z,1923,309,2005-06-27T07:23:30Z,2,2020-02-15T06:59:38Z +2645,2005-06-19T09:50:35Z,2284,181,2005-06-28T06:47:35Z,2,2020-02-15T06:59:38Z +2646,2005-06-19T09:56:01Z,3511,275,2005-06-21T04:15:01Z,2,2020-02-15T06:59:38Z +2647,2005-06-19T09:57:56Z,1954,54,2005-06-22T15:55:56Z,1,2020-02-15T06:59:38Z +2648,2005-06-19T10:06:20Z,1620,31,2005-06-21T04:30:20Z,2,2020-02-15T06:59:38Z +2649,2005-06-19T10:20:09Z,98,153,2005-06-21T10:05:09Z,1,2020-02-15T06:59:38Z +2650,2005-06-19T10:21:45Z,4211,209,2005-06-21T08:01:45Z,1,2020-02-15T06:59:38Z +2651,2005-06-19T10:22:56Z,2181,576,2005-06-27T13:37:56Z,1,2020-02-15T06:59:38Z +2652,2005-06-19T10:35:26Z,3108,589,2005-06-28T08:03:26Z,1,2020-02-15T06:59:38Z +2653,2005-06-19T10:36:53Z,3528,340,2005-06-26T15:15:53Z,1,2020-02-15T06:59:38Z +2654,2005-06-19T10:37:54Z,3697,405,2005-06-27T11:44:54Z,2,2020-02-15T06:59:38Z +2655,2005-06-19T10:38:42Z,1649,29,2005-06-23T14:20:42Z,1,2020-02-15T06:59:38Z +2656,2005-06-19T10:42:33Z,559,280,2005-06-24T08:31:33Z,2,2020-02-15T06:59:38Z +2657,2005-06-19T10:42:59Z,3595,19,2005-06-28T12:37:59Z,1,2020-02-15T06:59:38Z +2658,2005-06-19T10:43:42Z,3281,156,2005-06-24T16:23:42Z,1,2020-02-15T06:59:38Z +2659,2005-06-19T10:47:42Z,66,139,2005-06-23T14:03:42Z,1,2020-02-15T06:59:38Z +2660,2005-06-19T10:50:02Z,4341,221,2005-06-28T12:49:02Z,1,2020-02-15T06:59:38Z +2661,2005-06-19T10:50:52Z,3652,452,2005-06-25T08:44:52Z,2,2020-02-15T06:59:38Z +2662,2005-06-19T10:53:42Z,3936,68,2005-06-20T11:41:42Z,1,2020-02-15T06:59:38Z +2663,2005-06-19T10:54:00Z,1012,583,2005-06-20T16:48:00Z,1,2020-02-15T06:59:38Z +2664,2005-06-19T11:11:23Z,3496,299,2005-06-28T08:30:23Z,2,2020-02-15T06:59:38Z +2665,2005-06-19T11:12:35Z,4531,133,2005-06-26T11:55:35Z,2,2020-02-15T06:59:38Z +2666,2005-06-19T11:17:12Z,1872,454,2005-06-28T12:47:12Z,1,2020-02-15T06:59:38Z +2667,2005-06-19T11:28:46Z,1028,200,2005-06-27T11:48:46Z,2,2020-02-15T06:59:38Z +2668,2005-06-19T11:28:47Z,3127,568,2005-06-24T10:12:47Z,2,2020-02-15T06:59:38Z +2669,2005-06-19T11:28:52Z,2734,523,2005-06-20T16:43:52Z,1,2020-02-15T06:59:38Z +2670,2005-06-19T11:30:16Z,3518,457,2005-06-21T17:25:16Z,2,2020-02-15T06:59:38Z +2671,2005-06-19T11:33:11Z,2164,451,2005-06-26T14:30:11Z,2,2020-02-15T06:59:38Z +2672,2005-06-19T11:42:04Z,1164,420,2005-06-25T09:14:04Z,2,2020-02-15T06:59:38Z +2673,2005-06-19T11:42:20Z,2487,29,2005-06-23T07:16:20Z,1,2020-02-15T06:59:38Z +2674,2005-06-19T11:47:59Z,3744,585,2005-06-20T08:09:59Z,1,2020-02-15T06:59:38Z +2675,2005-06-19T11:52:15Z,3078,230,2005-06-23T16:45:15Z,1,2020-02-15T06:59:38Z +2676,2005-06-19T11:54:57Z,3938,477,2005-06-24T15:34:57Z,2,2020-02-15T06:59:38Z +2677,2005-06-19T12:01:59Z,4384,428,2005-06-21T06:15:59Z,2,2020-02-15T06:59:38Z +2678,2005-06-19T12:12:23Z,4230,258,2005-06-21T16:28:23Z,2,2020-02-15T06:59:38Z +2679,2005-06-19T12:12:30Z,1994,109,2005-06-27T08:27:30Z,1,2020-02-15T06:59:38Z +2680,2005-06-19T12:13:37Z,865,114,2005-06-27T15:15:37Z,1,2020-02-15T06:59:38Z +2681,2005-06-19T12:15:27Z,2704,196,2005-06-21T16:48:27Z,2,2020-02-15T06:59:38Z +2682,2005-06-19T12:18:17Z,3609,538,2005-06-28T14:09:17Z,1,2020-02-15T06:59:38Z +2683,2005-06-19T12:27:19Z,2860,241,2005-06-21T16:26:19Z,2,2020-02-15T06:59:38Z +2684,2005-06-19T12:29:08Z,1225,17,2005-06-28T08:50:08Z,2,2020-02-15T06:59:38Z +2685,2005-06-19T12:35:21Z,1170,283,2005-06-22T16:58:21Z,1,2020-02-15T06:59:38Z +2686,2005-06-19T12:44:20Z,2686,68,2005-06-20T16:00:20Z,1,2020-02-15T06:59:38Z +2687,2005-06-19T12:46:52Z,3152,254,2005-06-23T06:58:52Z,2,2020-02-15T06:59:38Z +2688,2005-06-19T12:50:56Z,4281,309,2005-06-28T17:58:56Z,2,2020-02-15T06:59:38Z +2689,2005-06-19T12:58:53Z,2478,567,2005-06-24T17:35:53Z,1,2020-02-15T06:59:38Z +2690,2005-06-19T13:00:02Z,1381,391,2005-06-27T14:29:02Z,1,2020-02-15T06:59:38Z +2691,2005-06-19T13:06:50Z,3469,242,2005-06-26T15:56:50Z,1,2020-02-15T06:59:38Z +2692,2005-06-19T13:08:19Z,3162,388,2005-06-21T16:45:19Z,1,2020-02-15T06:59:38Z +2693,2005-06-19T13:11:47Z,2570,107,2005-06-27T11:17:47Z,1,2020-02-15T06:59:38Z +2694,2005-06-19T13:17:21Z,380,368,2005-06-24T15:09:21Z,1,2020-02-15T06:59:38Z +2695,2005-06-19T13:25:53Z,190,208,2005-06-24T17:12:53Z,2,2020-02-15T06:59:38Z +2696,2005-06-19T13:28:42Z,2110,597,2005-06-28T14:06:42Z,2,2020-02-15T06:59:38Z +2697,2005-06-19T13:29:08Z,2271,448,2005-06-23T13:21:08Z,1,2020-02-15T06:59:38Z +2698,2005-06-19T13:29:11Z,3900,420,2005-06-20T07:31:11Z,2,2020-02-15T06:59:38Z +2699,2005-06-19T13:29:28Z,72,267,2005-06-24T11:15:28Z,2,2020-02-15T06:59:38Z +2700,2005-06-19T13:31:52Z,928,180,2005-06-27T19:30:52Z,1,2020-02-15T06:59:38Z +2701,2005-06-19T13:33:06Z,1623,29,2005-06-28T15:11:06Z,2,2020-02-15T06:59:38Z +2702,2005-06-19T13:35:56Z,1736,329,2005-06-20T14:07:56Z,2,2020-02-15T06:59:38Z +2703,2005-06-19T13:36:06Z,4080,319,2005-06-28T08:26:06Z,2,2020-02-15T06:59:38Z +2704,2005-06-19T13:50:10Z,2026,246,2005-06-26T18:25:10Z,2,2020-02-15T06:59:38Z +2705,2005-06-19T13:54:30Z,1191,562,2005-06-20T12:31:30Z,1,2020-02-15T06:59:38Z +2706,2005-06-19T13:56:51Z,373,559,2005-06-21T17:23:51Z,2,2020-02-15T06:59:38Z +2707,2005-06-19T13:57:08Z,4486,589,2005-06-27T11:09:08Z,2,2020-02-15T06:59:38Z +2708,2005-06-19T13:59:05Z,2659,541,2005-06-24T10:02:05Z,2,2020-02-15T06:59:38Z +2709,2005-06-19T14:00:26Z,2877,7,2005-06-23T14:56:26Z,2,2020-02-15T06:59:38Z +2710,2005-06-19T14:03:56Z,2965,446,2005-06-21T16:15:56Z,1,2020-02-15T06:59:38Z +2711,2005-06-19T14:12:22Z,3944,313,2005-06-21T09:29:22Z,1,2020-02-15T06:59:38Z +2712,2005-06-19T14:20:13Z,3132,411,2005-06-22T19:08:13Z,1,2020-02-15T06:59:38Z +2713,2005-06-19T14:23:09Z,3979,378,2005-06-20T17:55:09Z,1,2020-02-15T06:59:38Z +2714,2005-06-19T14:26:09Z,2853,81,2005-06-23T17:24:09Z,2,2020-02-15T06:59:38Z +2715,2005-06-19T14:29:35Z,2082,404,2005-06-26T08:44:35Z,2,2020-02-15T06:59:38Z +2716,2005-06-19T14:40:17Z,944,252,2005-06-27T17:45:17Z,2,2020-02-15T06:59:38Z +2717,2005-06-19T14:46:10Z,140,200,2005-06-22T20:17:10Z,1,2020-02-15T06:59:38Z +2718,2005-06-19T14:49:42Z,4443,139,2005-06-26T19:37:42Z,1,2020-02-15T06:59:38Z +2719,2005-06-19T14:50:19Z,1200,336,2005-06-20T14:33:19Z,2,2020-02-15T06:59:38Z +2720,2005-06-19T14:51:55Z,3597,504,2005-06-27T13:06:55Z,1,2020-02-15T06:59:38Z +2721,2005-06-19T14:53:24Z,3786,358,2005-06-21T18:22:24Z,2,2020-02-15T06:59:38Z +2722,2005-06-19T14:55:17Z,952,45,2005-06-25T13:11:17Z,2,2020-02-15T06:59:38Z +2723,2005-06-19T14:55:23Z,4317,277,2005-06-20T14:28:23Z,1,2020-02-15T06:59:38Z +2724,2005-06-19T14:57:54Z,3879,103,2005-06-22T16:31:54Z,2,2020-02-15T06:59:38Z +2725,2005-06-19T15:01:23Z,63,246,2005-06-22T09:08:23Z,1,2020-02-15T06:59:38Z +2726,2005-06-19T15:02:20Z,2970,420,2005-06-21T15:38:20Z,1,2020-02-15T06:59:38Z +2727,2005-06-19T15:02:39Z,3261,129,2005-06-28T17:49:39Z,1,2020-02-15T06:59:38Z +2728,2005-06-19T15:04:04Z,775,408,2005-06-22T12:22:04Z,2,2020-02-15T06:59:38Z +2729,2005-06-19T15:06:15Z,4449,510,2005-06-27T17:58:15Z,2,2020-02-15T06:59:38Z +2730,2005-06-19T15:10:09Z,1264,30,2005-06-28T13:05:09Z,1,2020-02-15T06:59:38Z +2731,2005-06-19T15:14:55Z,4218,138,2005-06-27T14:30:55Z,2,2020-02-15T06:59:38Z +2732,2005-06-19T15:19:39Z,610,386,2005-06-25T19:39:39Z,2,2020-02-15T06:59:38Z +2733,2005-06-19T15:21:53Z,1535,188,2005-06-23T11:58:53Z,2,2020-02-15T06:59:38Z +2734,2005-06-19T15:36:27Z,794,204,2005-06-20T13:44:27Z,2,2020-02-15T06:59:38Z +2735,2005-06-19T15:42:07Z,4550,29,2005-06-22T17:28:07Z,1,2020-02-15T06:59:38Z +2736,2005-06-19T15:43:20Z,4510,359,2005-06-21T13:03:20Z,1,2020-02-15T06:59:38Z +2737,2005-06-19T15:48:33Z,3131,513,2005-06-26T18:44:33Z,2,2020-02-15T06:59:38Z +2738,2005-06-19T15:56:30Z,350,75,2005-06-20T16:14:30Z,2,2020-02-15T06:59:38Z +2739,2005-06-19T15:58:38Z,213,212,2005-06-27T15:01:38Z,2,2020-02-15T06:59:38Z +2740,2005-06-19T15:59:04Z,1534,92,2005-06-28T12:18:04Z,2,2020-02-15T06:59:38Z +2741,2005-06-19T16:05:41Z,1662,36,2005-06-20T20:48:41Z,1,2020-02-15T06:59:38Z +2742,2005-06-19T16:05:47Z,4154,187,2005-06-26T21:34:47Z,1,2020-02-15T06:59:38Z +2743,2005-06-19T16:15:56Z,2611,35,2005-06-23T12:30:56Z,1,2020-02-15T06:59:38Z +2744,2005-06-19T16:20:40Z,4511,368,2005-06-22T11:44:40Z,2,2020-02-15T06:59:38Z +2745,2005-06-19T16:21:19Z,1253,26,2005-06-21T22:07:19Z,2,2020-02-15T06:59:38Z +2746,2005-06-19T16:21:40Z,933,562,2005-06-28T11:56:40Z,2,2020-02-15T06:59:38Z +2747,2005-06-19T16:22:07Z,1374,422,2005-06-24T19:28:07Z,1,2020-02-15T06:59:38Z +2748,2005-06-19T16:22:26Z,511,473,2005-06-21T21:55:26Z,1,2020-02-15T06:59:38Z +2749,2005-06-19T16:27:35Z,1540,358,2005-06-25T21:06:35Z,2,2020-02-15T06:59:38Z +2750,2005-06-19T16:37:24Z,3775,197,2005-06-20T13:55:24Z,2,2020-02-15T06:59:38Z +2751,2005-06-19T16:39:23Z,1291,148,2005-06-25T13:57:23Z,1,2020-02-15T06:59:38Z +2752,2005-06-19T16:44:18Z,386,149,2005-06-22T12:40:18Z,2,2020-02-15T06:59:38Z +2753,2005-06-19T16:44:35Z,2408,23,2005-06-24T13:45:35Z,1,2020-02-15T06:59:38Z +2754,2005-06-19T16:55:59Z,1761,267,2005-06-26T18:11:59Z,1,2020-02-15T06:59:38Z +2755,2005-06-19T16:56:31Z,946,506,2005-06-27T12:02:31Z,2,2020-02-15T06:59:38Z +2756,2005-06-19T16:57:42Z,3264,144,2005-06-26T15:30:42Z,2,2020-02-15T06:59:38Z +2757,2005-06-19T17:01:14Z,3814,243,2005-06-28T11:38:14Z,1,2020-02-15T06:59:38Z +2758,2005-06-19T17:04:35Z,3558,423,2005-06-26T14:45:35Z,2,2020-02-15T06:59:38Z +2759,2005-06-19T17:10:24Z,687,351,2005-06-24T21:56:24Z,2,2020-02-15T06:59:38Z +2760,2005-06-19T17:16:33Z,2602,192,2005-06-26T14:58:33Z,1,2020-02-15T06:59:38Z +2761,2005-06-19T17:22:17Z,2134,431,2005-06-20T20:20:17Z,2,2020-02-15T06:59:38Z +2762,2005-06-19T17:22:31Z,3431,457,2005-06-25T22:43:31Z,2,2020-02-15T06:59:38Z +2763,2005-06-19T17:23:34Z,3096,276,2005-06-21T21:37:34Z,2,2020-02-15T06:59:38Z +2764,2005-06-19T17:27:25Z,1718,479,2005-06-28T17:18:25Z,2,2020-02-15T06:59:38Z +2765,2005-06-19T17:34:39Z,1017,478,2005-06-27T23:26:39Z,1,2020-02-15T06:59:38Z +2766,2005-06-19T17:45:15Z,3421,345,2005-06-23T20:11:15Z,2,2020-02-15T06:59:38Z +2767,2005-06-19T17:46:35Z,4052,596,2005-06-24T22:42:35Z,1,2020-02-15T06:59:38Z +2768,2005-06-19T17:46:52Z,3018,129,2005-06-25T21:49:52Z,1,2020-02-15T06:59:38Z +2769,2005-06-19T17:52:14Z,1222,354,2005-06-26T20:30:14Z,2,2020-02-15T06:59:38Z +2770,2005-06-19T17:54:22Z,3042,533,2005-06-26T23:09:22Z,2,2020-02-15T06:59:38Z +2771,2005-06-19T17:54:48Z,40,262,2005-06-27T17:14:48Z,1,2020-02-15T06:59:38Z +2772,2005-06-19T17:59:27Z,1221,520,2005-06-23T17:52:27Z,1,2020-02-15T06:59:38Z +2773,2005-06-19T18:04:18Z,4155,505,2005-06-28T23:52:18Z,1,2020-02-15T06:59:38Z +2774,2005-06-19T18:05:11Z,2809,299,2005-06-21T16:21:11Z,2,2020-02-15T06:59:38Z +2775,2005-06-19T18:14:20Z,672,590,2005-06-26T19:52:20Z,1,2020-02-15T06:59:38Z +2776,2005-06-19T18:16:24Z,1726,551,2005-06-26T14:43:24Z,2,2020-02-15T06:59:38Z +2777,2005-06-19T18:16:26Z,4092,230,2005-06-20T13:43:26Z,2,2020-02-15T06:59:38Z +2778,2005-06-19T18:18:12Z,3357,422,2005-06-28T21:43:12Z,1,2020-02-15T06:59:38Z +2779,2005-06-19T18:19:07Z,1020,376,2005-06-23T18:25:07Z,2,2020-02-15T06:59:38Z +2780,2005-06-19T18:19:33Z,1513,360,2005-06-28T22:29:33Z,1,2020-02-15T06:59:38Z +2781,2005-06-19T18:24:42Z,1230,197,2005-06-27T17:02:42Z,2,2020-02-15T06:59:38Z +2782,2005-06-19T18:25:07Z,3644,156,2005-06-22T14:10:07Z,1,2020-02-15T06:59:38Z +2783,2005-06-19T18:29:10Z,2778,113,2005-06-21T22:09:10Z,1,2020-02-15T06:59:38Z +2784,2005-06-19T18:40:29Z,2305,289,2005-06-28T15:27:29Z,1,2020-02-15T06:59:38Z +2785,2005-06-19T18:43:57Z,826,137,2005-06-24T15:36:57Z,2,2020-02-15T06:59:38Z +2786,2005-06-19T18:46:43Z,2255,594,2005-06-22T16:52:43Z,1,2020-02-15T06:59:38Z +2787,2005-06-19T18:47:00Z,3371,307,2005-06-22T20:22:00Z,2,2020-02-15T06:59:38Z +2788,2005-06-19T18:48:11Z,1457,171,2005-06-21T13:32:11Z,1,2020-02-15T06:59:38Z +2789,2005-06-19T18:48:21Z,2398,514,2005-06-21T21:50:21Z,1,2020-02-15T06:59:38Z +2790,2005-06-19T18:49:45Z,202,97,2005-06-21T00:13:45Z,1,2020-02-15T06:59:38Z +2791,2005-06-19T18:51:27Z,2174,299,2005-06-22T19:35:27Z,2,2020-02-15T06:59:38Z +2792,2005-06-19T18:52:25Z,3057,437,2005-06-23T17:39:25Z,1,2020-02-15T06:59:38Z +2793,2005-06-19T18:52:37Z,732,419,2005-06-25T19:45:37Z,2,2020-02-15T06:59:38Z +2794,2005-06-19T18:53:05Z,1957,85,2005-06-22T13:15:05Z,1,2020-02-15T06:59:38Z +2795,2005-06-19T18:58:53Z,3694,129,2005-06-28T18:56:53Z,1,2020-02-15T06:59:38Z +2796,2005-06-19T19:00:37Z,2337,209,2005-06-25T17:18:37Z,2,2020-02-15T06:59:38Z +2797,2005-06-19T19:04:32Z,3222,486,2005-06-20T22:43:32Z,1,2020-02-15T06:59:38Z +2798,2005-06-19T19:07:48Z,1343,180,2005-06-23T00:09:48Z,2,2020-02-15T06:59:38Z +2799,2005-06-19T19:15:21Z,4579,576,2005-06-21T21:35:21Z,1,2020-02-15T06:59:38Z +2800,2005-06-19T19:15:56Z,183,146,2005-06-23T00:15:56Z,1,2020-02-15T06:59:38Z +2801,2005-06-19T19:18:09Z,4572,29,2005-06-20T20:11:09Z,2,2020-02-15T06:59:38Z +2802,2005-06-19T19:18:17Z,4067,489,2005-06-21T17:58:17Z,2,2020-02-15T06:59:38Z +2803,2005-06-19T19:18:27Z,103,120,2005-06-27T21:48:27Z,1,2020-02-15T06:59:38Z +2804,2005-06-19T19:24:54Z,88,426,2005-06-25T01:19:54Z,2,2020-02-15T06:59:38Z +2805,2005-06-19T19:29:17Z,2153,80,2005-06-27T23:14:17Z,2,2020-02-15T06:59:38Z +2806,2005-06-19T19:30:48Z,2114,510,2005-06-20T19:42:48Z,2,2020-02-15T06:59:38Z +2807,2005-06-19T19:32:53Z,2825,194,2005-06-25T00:30:53Z,2,2020-02-15T06:59:38Z +2808,2005-06-19T19:34:45Z,65,325,2005-06-27T14:49:45Z,1,2020-02-15T06:59:38Z +2809,2005-06-19T19:40:27Z,1786,44,2005-06-27T15:28:27Z,2,2020-02-15T06:59:38Z +2810,2005-06-19T19:44:12Z,2558,67,2005-06-20T19:41:12Z,2,2020-02-15T06:59:38Z +2811,2005-06-19T19:53:30Z,3890,457,2005-06-22T23:21:30Z,2,2020-02-15T06:59:38Z +2812,2005-06-19T19:58:16Z,3016,211,2005-06-26T15:26:16Z,1,2020-02-15T06:59:38Z +2813,2005-06-19T20:01:47Z,3420,284,2005-06-27T01:51:47Z,1,2020-02-15T06:59:38Z +2814,2005-06-19T20:01:59Z,1783,10,2005-06-26T01:28:59Z,2,2020-02-15T06:59:38Z +2815,2005-06-19T20:03:29Z,3046,27,2005-06-25T22:50:29Z,2,2020-02-15T06:59:38Z +2816,2005-06-19T20:04:23Z,2180,94,2005-06-20T21:09:23Z,2,2020-02-15T06:59:38Z +2817,2005-06-19T20:05:22Z,3476,510,2005-06-24T23:29:22Z,1,2020-02-15T06:59:38Z +2818,2005-06-19T20:05:52Z,2376,497,2005-06-22T01:01:52Z,2,2020-02-15T06:59:38Z +2819,2005-06-19T20:13:33Z,4100,82,2005-06-26T16:44:33Z,1,2020-02-15T06:59:38Z +2820,2005-06-19T20:20:33Z,851,316,2005-06-26T20:32:33Z,1,2020-02-15T06:59:38Z +2821,2005-06-19T20:26:52Z,2551,532,2005-06-27T23:48:52Z,1,2020-02-15T06:59:38Z +2822,2005-06-19T20:29:24Z,3599,48,2005-06-23T02:21:24Z,1,2020-02-15T06:59:38Z +2823,2005-06-19T20:30:21Z,3566,260,2005-06-26T17:58:21Z,1,2020-02-15T06:59:38Z +2824,2005-06-19T20:31:45Z,2878,506,2005-06-29T00:40:45Z,2,2020-02-15T06:59:38Z +2825,2005-06-19T20:32:19Z,2601,418,2005-06-22T22:32:19Z,1,2020-02-15T06:59:38Z +2826,2005-06-19T20:41:35Z,2980,125,2005-06-25T17:23:35Z,1,2020-02-15T06:59:38Z +2827,2005-06-19T20:50:01Z,2745,23,2005-06-20T18:54:01Z,2,2020-02-15T06:59:38Z +2828,2005-06-19T20:51:33Z,3230,526,2005-06-25T17:38:33Z,1,2020-02-15T06:59:38Z +2829,2005-06-19T21:11:30Z,2047,341,2005-06-24T18:10:30Z,1,2020-02-15T06:59:38Z +2830,2005-06-19T21:14:33Z,2080,21,2005-06-21T17:46:33Z,1,2020-02-15T06:59:38Z +2831,2005-06-19T21:17:06Z,4089,468,2005-06-22T16:56:06Z,2,2020-02-15T06:59:38Z +2832,2005-06-19T21:21:53Z,828,593,2005-06-28T23:00:53Z,1,2020-02-15T06:59:38Z +2833,2005-06-19T21:34:54Z,1976,232,2005-06-28T16:21:54Z,1,2020-02-15T06:59:38Z +2834,2005-06-19T21:41:46Z,2876,122,2005-06-24T20:47:46Z,1,2020-02-15T06:59:38Z +2835,2005-06-19T21:44:11Z,4411,89,2005-06-26T16:46:11Z,2,2020-02-15T06:59:38Z +2836,2005-06-19T21:58:21Z,1453,306,2005-06-27T00:41:21Z,2,2020-02-15T06:59:38Z +2837,2005-06-19T22:03:50Z,417,371,2005-06-20T21:24:50Z,1,2020-02-15T06:59:38Z +2838,2005-06-19T22:06:06Z,143,292,2005-06-25T22:30:06Z,1,2020-02-15T06:59:38Z +2839,2005-06-19T22:07:24Z,3856,256,2005-06-23T16:37:24Z,2,2020-02-15T06:59:38Z +2840,2005-06-19T22:17:44Z,1102,236,2005-06-26T00:36:44Z,2,2020-02-15T06:59:38Z +2841,2005-06-19T22:21:06Z,614,193,2005-06-28T00:56:06Z,1,2020-02-15T06:59:38Z +2842,2005-06-19T22:34:20Z,4183,217,2005-06-22T03:46:20Z,2,2020-02-15T06:59:38Z +2843,2005-06-19T22:36:39Z,1520,148,2005-06-26T22:33:39Z,2,2020-02-15T06:59:38Z +2844,2005-06-19T22:40:12Z,4452,178,2005-06-24T03:58:12Z,2,2020-02-15T06:59:38Z +2845,2005-06-19T22:46:37Z,3948,583,2005-06-23T03:31:37Z,1,2020-02-15T06:59:38Z +2846,2005-06-19T22:52:14Z,651,193,2005-06-22T17:12:14Z,1,2020-02-15T06:59:38Z +2847,2005-06-19T22:54:01Z,1247,148,2005-06-27T23:05:01Z,2,2020-02-15T06:59:38Z +2848,2005-06-19T22:55:37Z,3449,19,2005-06-25T23:10:37Z,1,2020-02-15T06:59:38Z +2849,2005-06-19T23:06:00Z,3628,283,2005-06-25T18:36:00Z,1,2020-02-15T06:59:38Z +2850,2005-06-19T23:06:28Z,206,262,2005-06-28T03:30:28Z,2,2020-02-15T06:59:38Z +2851,2005-06-19T23:07:03Z,2168,361,2005-06-22T17:26:03Z,1,2020-02-15T06:59:38Z +2852,2005-06-19T23:08:50Z,2695,453,2005-06-26T04:00:50Z,1,2020-02-15T06:59:38Z +2853,2005-06-19T23:09:41Z,2578,453,2005-06-28T00:51:41Z,2,2020-02-15T06:59:38Z +2854,2005-06-19T23:11:48Z,4453,81,2005-06-23T19:37:48Z,2,2020-02-15T06:59:38Z +2855,2005-06-19T23:11:49Z,3495,483,2005-06-26T21:52:49Z,1,2020-02-15T06:59:38Z +2856,2005-06-19T23:13:04Z,1859,210,2005-06-23T22:47:04Z,1,2020-02-15T06:59:38Z +2857,2005-06-19T23:15:15Z,2886,364,2005-06-25T04:24:15Z,2,2020-02-15T06:59:38Z +2858,2005-06-19T23:17:11Z,2628,268,2005-06-21T19:07:11Z,1,2020-02-15T06:59:38Z +2859,2005-06-19T23:18:42Z,126,147,2005-06-20T22:38:42Z,1,2020-02-15T06:59:38Z +2860,2005-06-19T23:20:40Z,3045,107,2005-06-21T04:59:40Z,1,2020-02-15T06:59:38Z +2861,2005-06-19T23:21:34Z,1489,116,2005-06-26T17:32:34Z,1,2020-02-15T06:59:38Z +2862,2005-06-19T23:47:24Z,4260,52,2005-06-23T03:39:24Z,2,2020-02-15T06:59:38Z +2863,2005-06-19T23:58:38Z,2410,228,2005-06-23T23:27:38Z,2,2020-02-15T06:59:38Z +2864,2005-06-20T00:00:52Z,1056,493,2005-06-26T04:21:52Z,2,2020-02-15T06:59:38Z +2865,2005-06-20T00:00:55Z,1569,10,2005-06-21T02:20:55Z,1,2020-02-15T06:59:38Z +2866,2005-06-20T00:01:36Z,2718,44,2005-06-20T21:39:36Z,1,2020-02-15T06:59:38Z +2867,2005-06-20T00:08:38Z,95,483,2005-06-23T19:35:38Z,1,2020-02-15T06:59:38Z +2868,2005-06-20T00:08:58Z,1213,214,2005-06-25T21:23:58Z,2,2020-02-15T06:59:38Z +2869,2005-06-20T00:09:25Z,1331,155,2005-06-24T04:40:25Z,2,2020-02-15T06:59:38Z +2870,2005-06-20T00:17:46Z,214,467,2005-06-28T20:21:46Z,1,2020-02-15T06:59:38Z +2871,2005-06-20T00:27:49Z,1731,443,2005-06-29T01:36:49Z,1,2020-02-15T06:59:38Z +2872,2005-06-20T00:38:21Z,3779,240,2005-06-26T19:56:21Z,1,2020-02-15T06:59:38Z +2873,2005-06-20T00:41:25Z,3321,160,2005-06-25T02:06:25Z,1,2020-02-15T06:59:38Z +2874,2005-06-20T00:42:26Z,331,166,2005-06-28T01:37:26Z,2,2020-02-15T06:59:38Z +2875,2005-06-20T00:47:18Z,3012,186,2005-06-25T18:54:18Z,2,2020-02-15T06:59:38Z +2876,2005-06-20T01:06:34Z,3117,39,2005-06-23T04:55:34Z,1,2020-02-15T06:59:38Z +2877,2005-06-20T01:07:16Z,485,267,2005-06-24T01:05:16Z,1,2020-02-15T06:59:38Z +2878,2005-06-20T01:09:14Z,4120,88,2005-06-21T21:40:14Z,2,2020-02-15T06:59:38Z +2879,2005-06-20T01:24:10Z,1920,583,2005-06-28T20:12:10Z,2,2020-02-15T06:59:38Z +2880,2005-06-20T01:24:54Z,1700,193,2005-06-23T02:42:54Z,2,2020-02-15T06:59:38Z +2881,2005-06-20T01:26:18Z,1391,307,2005-06-26T23:42:18Z,1,2020-02-15T06:59:38Z +2882,2005-06-20T01:26:26Z,205,152,2005-06-21T19:33:26Z,1,2020-02-15T06:59:38Z +2883,2005-06-20T01:29:10Z,585,320,2005-06-28T06:12:10Z,1,2020-02-15T06:59:38Z +2884,2005-06-20T01:31:16Z,3384,319,2005-06-21T04:03:16Z,2,2020-02-15T06:59:38Z +2885,2005-06-20T01:33:42Z,2701,330,2005-06-22T22:23:42Z,1,2020-02-15T06:59:38Z +2886,2005-06-20T01:38:39Z,1755,154,2005-06-23T04:28:39Z,2,2020-02-15T06:59:38Z +2887,2005-06-20T01:39:43Z,1073,453,2005-06-25T05:22:43Z,2,2020-02-15T06:59:38Z +2888,2005-06-20T01:50:56Z,468,7,2005-06-22T05:05:56Z,2,2020-02-15T06:59:38Z +2889,2005-06-20T01:54:08Z,151,213,2005-06-23T06:33:08Z,1,2020-02-15T06:59:38Z +2890,2005-06-20T02:00:45Z,3437,392,2005-06-27T21:12:45Z,1,2020-02-15T06:59:38Z +2891,2005-06-20T02:02:05Z,343,32,2005-06-25T02:45:05Z,1,2020-02-15T06:59:38Z +2892,2005-06-20T02:06:39Z,2993,430,2005-06-21T02:50:39Z,2,2020-02-15T06:59:38Z +2893,2005-06-20T02:22:08Z,397,153,2005-06-26T21:01:08Z,2,2020-02-15T06:59:38Z +2894,2005-06-20T02:22:42Z,4316,76,2005-06-22T00:38:42Z,1,2020-02-15T06:59:38Z +2895,2005-06-20T02:26:31Z,4445,141,2005-06-27T23:42:31Z,2,2020-02-15T06:59:38Z +2896,2005-06-20T02:33:42Z,1086,40,2005-06-26T05:29:42Z,2,2020-02-15T06:59:38Z +2897,2005-06-20T02:34:23Z,3464,107,2005-06-25T05:29:23Z,1,2020-02-15T06:59:38Z +2898,2005-06-20T02:38:06Z,3106,178,2005-06-29T08:18:06Z,2,2020-02-15T06:59:38Z +2899,2005-06-20T02:39:21Z,1919,459,2005-06-23T06:47:21Z,1,2020-02-15T06:59:38Z +2900,2005-06-20T02:40:04Z,3407,294,2005-06-27T20:47:04Z,2,2020-02-15T06:59:38Z +2901,2005-06-20T02:41:28Z,667,25,2005-06-23T04:43:28Z,2,2020-02-15T06:59:38Z +2902,2005-06-20T02:45:35Z,2787,304,2005-06-26T07:51:35Z,1,2020-02-15T06:59:38Z +2903,2005-06-20T02:49:01Z,3580,53,2005-06-25T05:03:01Z,2,2020-02-15T06:59:38Z +2904,2005-06-20T02:54:06Z,2195,55,2005-06-21T06:57:06Z,2,2020-02-15T06:59:38Z +2905,2005-06-20T02:56:16Z,3898,189,2005-06-24T23:51:16Z,2,2020-02-15T06:59:38Z +2906,2005-06-20T03:04:56Z,1087,58,2005-06-23T05:57:56Z,2,2020-02-15T06:59:38Z +2907,2005-06-20T03:15:09Z,2516,208,2005-06-20T21:56:09Z,2,2020-02-15T06:59:38Z +2908,2005-06-20T03:16:52Z,517,91,2005-06-22T08:46:52Z,1,2020-02-15T06:59:38Z +2909,2005-06-20T03:19:10Z,1701,451,2005-06-25T06:06:10Z,2,2020-02-15T06:59:38Z +2910,2005-06-20T03:31:18Z,630,57,2005-06-28T00:35:18Z,1,2020-02-15T06:59:38Z +2911,2005-06-20T03:32:37Z,3645,502,2005-06-22T22:06:37Z,1,2020-02-15T06:59:38Z +2912,2005-06-20T03:32:45Z,1076,196,2005-06-21T23:32:45Z,1,2020-02-15T06:59:38Z +2913,2005-06-20T03:42:27Z,3456,402,2005-06-23T04:47:27Z,1,2020-02-15T06:59:38Z +2914,2005-06-20T03:43:18Z,2419,342,2005-06-25T03:44:18Z,2,2020-02-15T06:59:38Z +2915,2005-06-20T03:57:17Z,1293,262,2005-06-24T05:59:17Z,2,2020-02-15T06:59:38Z +2916,2005-06-20T04:01:04Z,3086,590,2005-06-27T22:40:04Z,2,2020-02-15T06:59:38Z +2917,2005-06-20T04:08:35Z,647,451,2005-06-24T01:17:35Z,1,2020-02-15T06:59:38Z +2918,2005-06-20T04:09:04Z,1985,215,2005-06-21T10:07:04Z,1,2020-02-15T06:59:38Z +2919,2005-06-20T04:10:16Z,2835,509,2005-06-27T06:34:16Z,1,2020-02-15T06:59:38Z +2920,2005-06-20T04:12:46Z,487,588,2005-06-26T23:34:46Z,2,2020-02-15T06:59:38Z +2921,2005-06-20T04:13:04Z,1785,59,2005-06-28T01:28:04Z,1,2020-02-15T06:59:38Z +2922,2005-06-20T04:13:47Z,1671,176,2005-06-22T04:38:47Z,2,2020-02-15T06:59:38Z +2923,2005-06-20T04:16:07Z,109,29,2005-06-21T05:04:07Z,1,2020-02-15T06:59:38Z +2924,2005-06-20T04:20:14Z,580,132,2005-06-21T01:13:14Z,1,2020-02-15T06:59:38Z +2925,2005-06-20T04:23:49Z,804,301,2005-06-22T04:37:49Z,2,2020-02-15T06:59:38Z +2926,2005-06-20T04:37:45Z,1055,379,2005-06-26T02:17:45Z,1,2020-02-15T06:59:38Z +2927,2005-06-20T04:41:41Z,393,403,2005-06-23T01:59:41Z,1,2020-02-15T06:59:38Z +2928,2005-06-20T04:43:45Z,1265,104,2005-06-21T06:58:45Z,2,2020-02-15T06:59:38Z +2929,2005-06-20T04:47:39Z,3389,333,2005-06-25T23:16:39Z,2,2020-02-15T06:59:38Z +2930,2005-06-20T04:50:29Z,3615,585,2005-06-28T06:00:29Z,2,2020-02-15T06:59:38Z +2931,2005-06-20T04:50:45Z,3122,258,2005-06-29T09:18:45Z,1,2020-02-15T06:59:38Z +2932,2005-06-20T04:51:19Z,4418,526,2005-06-29T08:31:19Z,1,2020-02-15T06:59:38Z +2933,2005-06-20T04:52:23Z,4483,323,2005-06-26T07:12:23Z,2,2020-02-15T06:59:38Z +2934,2005-06-20T05:05:53Z,697,228,2005-06-22T02:44:53Z,1,2020-02-15T06:59:38Z +2935,2005-06-20T05:07:24Z,2735,384,2005-06-28T09:17:24Z,2,2020-02-15T06:59:38Z +2936,2005-06-20T05:09:27Z,2675,330,2005-06-26T10:16:27Z,2,2020-02-15T06:59:38Z +2937,2005-06-20T05:15:37Z,1998,15,2005-06-27T02:45:37Z,1,2020-02-15T06:59:38Z +2938,2005-06-20T05:17:22Z,1795,504,2005-06-26T09:38:22Z,1,2020-02-15T06:59:38Z +2939,2005-06-20T05:18:16Z,2638,203,2005-06-26T06:56:16Z,1,2020-02-15T06:59:38Z +2940,2005-06-20T05:20:01Z,2504,73,2005-06-28T06:11:01Z,2,2020-02-15T06:59:38Z +2941,2005-06-20T05:22:18Z,3632,135,2005-06-26T07:40:18Z,2,2020-02-15T06:59:38Z +2942,2005-06-20T05:27:31Z,999,242,2005-06-29T00:35:31Z,1,2020-02-15T06:59:38Z +2943,2005-06-20T05:43:05Z,2591,418,2005-06-25T04:31:05Z,1,2020-02-15T06:59:38Z +2944,2005-06-20T05:43:42Z,1550,474,2005-06-29T09:40:42Z,2,2020-02-15T06:59:38Z +2945,2005-06-20T05:49:27Z,4193,153,2005-06-26T09:48:27Z,1,2020-02-15T06:59:38Z +2946,2005-06-20T05:50:40Z,3737,213,2005-06-21T00:42:40Z,2,2020-02-15T06:59:38Z +2947,2005-06-20T06:00:21Z,4302,151,2005-06-23T10:04:21Z,2,2020-02-15T06:59:38Z +2948,2005-06-20T06:02:35Z,4254,289,2005-06-29T09:12:35Z,2,2020-02-15T06:59:38Z +2949,2005-06-20T06:05:53Z,375,78,2005-06-29T03:19:53Z,2,2020-02-15T06:59:38Z +2950,2005-06-20T06:08:36Z,1438,561,2005-06-27T07:45:36Z,2,2020-02-15T06:59:38Z +2951,2005-06-20T06:23:01Z,2903,404,2005-06-24T00:26:01Z,2,2020-02-15T06:59:38Z +2952,2005-06-20T06:26:57Z,3759,13,2005-06-22T11:51:57Z,1,2020-02-15T06:59:38Z +2953,2005-06-20T06:39:11Z,1829,540,2005-06-26T06:19:11Z,1,2020-02-15T06:59:38Z +2954,2005-06-20T06:45:00Z,377,336,2005-06-23T11:43:00Z,1,2020-02-15T06:59:38Z +2955,2005-06-20T06:46:35Z,2312,244,2005-06-25T05:34:35Z,2,2020-02-15T06:59:38Z +2956,2005-06-20T06:47:23Z,2684,533,2005-06-22T07:24:23Z,2,2020-02-15T06:59:38Z +2957,2005-06-20T06:53:47Z,4034,542,2005-06-29T09:21:47Z,2,2020-02-15T06:59:38Z +2958,2005-06-20T06:56:20Z,1380,260,2005-06-29T02:33:20Z,2,2020-02-15T06:59:38Z +2959,2005-06-20T07:07:54Z,4185,372,2005-06-27T03:31:54Z,1,2020-02-15T06:59:38Z +2960,2005-06-20T07:10:09Z,3970,16,2005-06-26T08:14:09Z,2,2020-02-15T06:59:38Z +2961,2005-06-20T07:29:15Z,4539,399,2005-06-24T08:05:15Z,1,2020-02-15T06:59:38Z +2962,2005-06-20T07:31:55Z,2978,364,2005-06-26T04:43:55Z,1,2020-02-15T06:59:38Z +2963,2005-06-20T07:33:09Z,1444,24,2005-06-28T09:23:09Z,1,2020-02-15T06:59:38Z +2964,2005-06-20T07:33:29Z,1201,590,2005-06-29T12:48:29Z,1,2020-02-15T06:59:38Z +2965,2005-06-20T07:33:38Z,27,46,2005-06-29T11:45:38Z,1,2020-02-15T06:59:38Z +2966,2005-06-20T07:39:33Z,3483,511,2005-06-29T07:48:33Z,1,2020-02-15T06:59:38Z +2967,2005-06-20T07:40:35Z,4243,311,2005-06-29T05:50:35Z,2,2020-02-15T06:59:38Z +2968,2005-06-20T07:41:47Z,4415,252,2005-06-23T04:27:47Z,1,2020-02-15T06:59:38Z +2969,2005-06-20T07:44:27Z,1748,418,2005-06-22T06:12:27Z,2,2020-02-15T06:59:38Z +2970,2005-06-20T07:51:51Z,1167,449,2005-06-28T10:14:51Z,2,2020-02-15T06:59:38Z +2971,2005-06-20T07:56:00Z,1585,410,2005-06-27T11:38:00Z,2,2020-02-15T06:59:38Z +2972,2005-06-20T07:57:54Z,2232,531,2005-06-21T12:48:54Z,1,2020-02-15T06:59:38Z +2973,2005-06-20T07:59:27Z,2626,96,2005-06-24T12:31:27Z,1,2020-02-15T06:59:38Z +2974,2005-06-20T08:00:24Z,2322,472,2005-06-25T05:10:24Z,2,2020-02-15T06:59:38Z +2975,2005-06-20T08:06:18Z,4534,46,2005-06-21T08:01:18Z,1,2020-02-15T06:59:38Z +2976,2005-06-20T08:09:11Z,4210,55,2005-06-21T10:45:11Z,1,2020-02-15T06:59:38Z +2977,2005-06-20T08:15:27Z,2645,571,2005-06-29T04:30:27Z,2,2020-02-15T06:59:38Z +2978,2005-06-20T08:25:16Z,4364,548,2005-06-23T05:42:16Z,1,2020-02-15T06:59:38Z +2979,2005-06-20T08:31:05Z,3961,589,2005-06-27T12:25:05Z,1,2020-02-15T06:59:38Z +2980,2005-06-20T08:35:03Z,310,343,2005-06-29T07:57:03Z,2,2020-02-15T06:59:38Z +2981,2005-06-20T08:35:17Z,522,387,2005-06-28T09:14:17Z,1,2020-02-15T06:59:38Z +2982,2005-06-20T08:38:29Z,2574,130,2005-06-28T13:21:29Z,1,2020-02-15T06:59:38Z +2983,2005-06-20T08:41:42Z,1349,322,2005-06-29T04:02:42Z,2,2020-02-15T06:59:38Z +2984,2005-06-20T08:43:44Z,1819,435,2005-06-22T03:08:44Z,2,2020-02-15T06:59:38Z +2985,2005-06-20T08:45:08Z,122,154,2005-06-22T04:26:08Z,2,2020-02-15T06:59:38Z +2986,2005-06-20T08:50:28Z,478,556,2005-06-26T05:24:28Z,2,2020-02-15T06:59:38Z +2987,2005-06-20T08:55:50Z,1531,349,2005-06-28T13:02:50Z,2,2020-02-15T06:59:38Z +2988,2005-06-20T08:59:08Z,3160,557,2005-06-28T04:31:08Z,2,2020-02-15T06:59:38Z +2989,2005-06-20T08:59:37Z,1586,56,2005-06-22T03:27:37Z,2,2020-02-15T06:59:38Z +2990,2005-06-20T09:02:51Z,4559,18,2005-06-29T13:19:51Z,2,2020-02-15T06:59:38Z +2991,2005-06-20T09:10:43Z,4308,472,2005-06-23T13:04:43Z,1,2020-02-15T06:59:38Z +2992,2005-06-20T09:11:51Z,3347,439,2005-06-24T05:59:51Z,1,2020-02-15T06:59:38Z +2993,2005-06-20T09:12:12Z,1527,40,2005-06-22T13:36:12Z,2,2020-02-15T06:59:38Z +2994,2005-06-20T09:17:05Z,1290,163,2005-06-29T04:41:05Z,1,2020-02-15T06:59:38Z +2995,2005-06-20T09:18:22Z,4544,573,2005-06-26T14:31:22Z,1,2020-02-15T06:59:38Z +2996,2005-06-20T09:20:29Z,4064,500,2005-06-27T09:18:29Z,1,2020-02-15T06:59:38Z +2997,2005-06-20T09:23:45Z,1449,519,2005-06-29T08:15:45Z,1,2020-02-15T06:59:38Z +2998,2005-06-20T09:30:22Z,1288,380,2005-06-24T06:31:22Z,2,2020-02-15T06:59:38Z +2999,2005-06-20T09:30:34Z,735,295,2005-06-26T05:51:34Z,2,2020-02-15T06:59:38Z +3000,2005-06-20T09:32:33Z,549,50,2005-06-22T07:45:33Z,1,2020-02-15T06:59:38Z +3001,2005-06-20T09:50:16Z,2941,393,2005-06-28T05:13:16Z,2,2020-02-15T06:59:38Z +3002,2005-06-20T09:56:12Z,2749,266,2005-06-24T12:15:12Z,2,2020-02-15T06:59:38Z +3003,2005-06-20T10:00:51Z,616,38,2005-06-22T06:28:51Z,2,2020-02-15T06:59:38Z +3004,2005-06-20T10:04:36Z,2836,113,2005-06-23T07:38:36Z,2,2020-02-15T06:59:38Z +3005,2005-06-20T10:10:29Z,286,598,2005-06-28T15:48:29Z,2,2020-02-15T06:59:38Z +3006,2005-06-20T10:10:29Z,1677,133,2005-06-22T07:26:29Z,2,2020-02-15T06:59:38Z +3007,2005-06-20T10:11:53Z,1950,7,2005-06-25T04:51:53Z,2,2020-02-15T06:59:38Z +3008,2005-06-20T10:23:25Z,3383,202,2005-06-26T11:00:25Z,2,2020-02-15T06:59:38Z +3009,2005-06-20T10:24:44Z,2721,280,2005-06-23T13:39:44Z,1,2020-02-15T06:59:38Z +3010,2005-06-20T10:29:59Z,1298,567,2005-06-27T06:52:59Z,1,2020-02-15T06:59:38Z +3011,2005-06-20T10:39:10Z,4376,147,2005-06-28T07:02:10Z,2,2020-02-15T06:59:38Z +3012,2005-06-20T10:43:13Z,1392,206,2005-06-28T10:07:13Z,2,2020-02-15T06:59:38Z +3013,2005-06-20T10:45:09Z,4146,290,2005-06-26T04:55:09Z,1,2020-02-15T06:59:38Z +3014,2005-06-20T10:45:20Z,2179,434,2005-06-23T06:29:20Z,1,2020-02-15T06:59:38Z +3015,2005-06-20T10:48:56Z,1311,23,2005-06-26T11:30:56Z,2,2020-02-15T06:59:38Z +3016,2005-06-20T10:55:08Z,3514,558,2005-06-24T14:05:08Z,1,2020-02-15T06:59:38Z +3017,2005-06-20T11:08:56Z,2513,151,2005-06-28T16:26:56Z,1,2020-02-15T06:59:38Z +3018,2005-06-20T11:10:35Z,4150,112,2005-06-25T07:17:35Z,2,2020-02-15T06:59:38Z +3019,2005-06-20T11:11:52Z,491,144,2005-06-27T08:30:52Z,2,2020-02-15T06:59:38Z +3020,2005-06-20T11:12:04Z,4363,74,2005-06-27T07:31:04Z,2,2020-02-15T06:59:38Z +3021,2005-06-20T11:13:01Z,120,62,2005-06-28T16:15:01Z,2,2020-02-15T06:59:38Z +3022,2005-06-20T11:17:20Z,3745,466,2005-06-26T13:15:20Z,2,2020-02-15T06:59:38Z +3023,2005-06-20T11:18:11Z,4304,106,2005-06-21T12:43:11Z,1,2020-02-15T06:59:38Z +3024,2005-06-20T11:29:17Z,1966,328,2005-06-27T12:51:17Z,2,2020-02-15T06:59:38Z +3025,2005-06-20T11:46:48Z,1309,293,2005-06-22T08:43:48Z,1,2020-02-15T06:59:38Z +3026,2005-06-20T11:48:00Z,4032,347,2005-06-21T12:51:00Z,2,2020-02-15T06:59:38Z +3027,2005-06-20T11:50:30Z,4028,397,2005-06-25T15:58:30Z,2,2020-02-15T06:59:38Z +3028,2005-06-20T11:50:52Z,886,264,2005-06-21T11:05:52Z,2,2020-02-15T06:59:38Z +3029,2005-06-20T11:51:30Z,327,317,2005-06-25T16:42:30Z,1,2020-02-15T06:59:38Z +3030,2005-06-20T11:51:59Z,1543,395,2005-06-24T10:51:59Z,1,2020-02-15T06:59:38Z +3031,2005-06-20T11:52:49Z,1184,491,2005-06-22T07:00:49Z,1,2020-02-15T06:59:38Z +3032,2005-06-20T11:58:30Z,3734,172,2005-06-24T09:49:30Z,1,2020-02-15T06:59:38Z +3033,2005-06-20T12:02:05Z,4422,107,2005-06-26T15:58:05Z,1,2020-02-15T06:59:38Z +3034,2005-06-20T12:15:50Z,2755,296,2005-06-24T06:21:50Z,2,2020-02-15T06:59:38Z +3035,2005-06-20T12:17:03Z,1223,62,2005-06-26T17:42:03Z,2,2020-02-15T06:59:38Z +3036,2005-06-20T12:18:31Z,4463,399,2005-06-29T09:52:31Z,1,2020-02-15T06:59:38Z +3037,2005-06-20T12:28:03Z,2033,434,2005-06-21T08:21:03Z,1,2020-02-15T06:59:38Z +3038,2005-06-20T12:28:59Z,2919,27,2005-06-25T07:48:59Z,1,2020-02-15T06:59:38Z +3039,2005-06-20T12:32:30Z,4098,186,2005-06-21T07:38:30Z,1,2020-02-15T06:59:38Z +3040,2005-06-20T12:34:13Z,2568,162,2005-06-21T12:33:13Z,1,2020-02-15T06:59:38Z +3041,2005-06-20T12:35:44Z,2676,459,2005-06-23T18:28:44Z,2,2020-02-15T06:59:38Z +3042,2005-06-20T12:38:27Z,3103,291,2005-06-26T11:18:27Z,1,2020-02-15T06:59:38Z +3043,2005-06-20T12:38:35Z,633,599,2005-06-29T14:16:35Z,2,2020-02-15T06:59:38Z +3044,2005-06-20T12:38:49Z,3216,424,2005-06-25T07:49:49Z,1,2020-02-15T06:59:38Z +3045,2005-06-20T12:42:00Z,3065,459,2005-06-23T10:49:00Z,2,2020-02-15T06:59:38Z +3046,2005-06-20T12:42:59Z,471,559,2005-06-26T17:40:59Z,2,2020-02-15T06:59:38Z +3047,2005-06-20T12:45:33Z,624,13,2005-06-29T13:09:33Z,2,2020-02-15T06:59:38Z +3048,2005-06-20T12:49:55Z,4389,482,2005-06-26T11:06:55Z,1,2020-02-15T06:59:38Z +3049,2005-06-20T12:51:01Z,518,403,2005-06-29T10:53:01Z,1,2020-02-15T06:59:38Z +3050,2005-06-20T13:03:03Z,2397,557,2005-06-29T07:22:03Z,1,2020-02-15T06:59:38Z +3051,2005-06-20T13:06:52Z,1408,65,2005-06-25T13:03:52Z,2,2020-02-15T06:59:38Z +3052,2005-06-20T13:09:19Z,2359,329,2005-06-29T11:55:19Z,2,2020-02-15T06:59:38Z +3053,2005-06-20T13:10:30Z,818,329,2005-06-25T17:22:30Z,2,2020-02-15T06:59:38Z +3054,2005-06-20T13:16:41Z,2817,322,2005-06-28T13:45:41Z,2,2020-02-15T06:59:38Z +3055,2005-06-20T13:19:58Z,1510,23,2005-06-27T14:54:58Z,1,2020-02-15T06:59:38Z +3056,2005-06-20T13:20:58Z,2010,95,2005-06-26T08:35:58Z,2,2020-02-15T06:59:38Z +3057,2005-06-20T13:22:48Z,1101,307,2005-06-26T17:22:48Z,2,2020-02-15T06:59:38Z +3058,2005-06-20T13:28:35Z,938,137,2005-06-28T13:57:35Z,2,2020-02-15T06:59:38Z +3059,2005-06-20T13:38:41Z,2911,266,2005-06-21T10:13:41Z,2,2020-02-15T06:59:38Z +3060,2005-06-20T13:47:20Z,2075,446,2005-06-25T16:00:20Z,2,2020-02-15T06:59:38Z +3061,2005-06-20T13:48:21Z,4202,330,2005-06-22T17:36:21Z,2,2020-02-15T06:59:38Z +3062,2005-06-20T13:50:00Z,591,75,2005-06-27T08:18:00Z,1,2020-02-15T06:59:38Z +3063,2005-06-20T13:52:03Z,3954,515,2005-06-28T13:36:03Z,2,2020-02-15T06:59:38Z +3064,2005-06-20T13:53:13Z,2624,276,2005-06-25T16:33:13Z,2,2020-02-15T06:59:38Z +3065,2005-06-20T13:53:53Z,1687,227,2005-06-24T11:31:53Z,1,2020-02-15T06:59:38Z +3066,2005-06-20T13:55:41Z,1116,268,2005-06-26T09:38:41Z,2,2020-02-15T06:59:38Z +3067,2005-06-20T13:59:21Z,3094,349,2005-06-28T19:09:21Z,2,2020-02-15T06:59:38Z +3068,2005-06-20T14:02:22Z,1958,516,2005-06-22T12:52:22Z,2,2020-02-15T06:59:38Z +3069,2005-06-20T14:13:00Z,1952,237,2005-06-28T10:57:00Z,1,2020-02-15T06:59:38Z +3070,2005-06-20T14:15:39Z,3860,543,2005-06-25T12:52:39Z,2,2020-02-15T06:59:38Z +3071,2005-06-20T14:20:42Z,1198,582,2005-06-24T19:01:42Z,1,2020-02-15T06:59:38Z +3072,2005-06-20T14:21:31Z,4131,423,2005-06-27T18:46:31Z,2,2020-02-15T06:59:38Z +3073,2005-06-20T14:33:26Z,3164,471,2005-06-26T08:42:26Z,2,2020-02-15T06:59:38Z +3074,2005-06-20T14:41:41Z,1441,299,2005-06-21T15:56:41Z,1,2020-02-15T06:59:38Z +3075,2005-06-20T14:52:19Z,4346,161,2005-06-28T18:48:19Z,2,2020-02-15T06:59:38Z +3076,2005-06-20T15:01:19Z,1344,109,2005-06-28T16:53:19Z,2,2020-02-15T06:59:38Z +3077,2005-06-20T15:05:18Z,1675,303,2005-06-26T20:52:18Z,2,2020-02-15T06:59:38Z +3078,2005-06-20T15:09:48Z,3642,367,2005-06-24T16:54:48Z,1,2020-02-15T06:59:38Z +3079,2005-06-20T15:13:40Z,2135,350,2005-06-21T12:03:40Z,1,2020-02-15T06:59:38Z +3080,2005-06-20T15:22:32Z,118,377,2005-06-24T11:08:32Z,1,2020-02-15T06:59:38Z +3081,2005-06-20T15:29:13Z,2071,342,2005-06-24T21:00:13Z,2,2020-02-15T06:59:38Z +3082,2005-06-20T15:32:11Z,4431,164,2005-06-28T13:08:11Z,1,2020-02-15T06:59:38Z +3083,2005-06-20T15:33:47Z,2896,257,2005-06-26T16:14:47Z,2,2020-02-15T06:59:38Z +3084,2005-06-20T15:35:24Z,3578,514,2005-06-23T19:11:24Z,1,2020-02-15T06:59:38Z +3085,2005-06-20T15:42:33Z,4282,166,2005-06-21T16:51:33Z,2,2020-02-15T06:59:38Z +3086,2005-06-20T15:42:40Z,4437,377,2005-06-25T19:21:40Z,1,2020-02-15T06:59:38Z +3087,2005-06-20T15:53:59Z,1305,111,2005-06-27T10:54:59Z,2,2020-02-15T06:59:38Z +3088,2005-06-20T15:56:05Z,3049,384,2005-06-29T13:02:05Z,1,2020-02-15T06:59:38Z +3089,2005-06-20T15:57:01Z,539,151,2005-06-25T13:15:01Z,2,2020-02-15T06:59:38Z +3090,2005-06-20T16:00:19Z,3301,267,2005-06-23T14:55:19Z,1,2020-02-15T06:59:38Z +3091,2005-06-20T16:02:59Z,854,383,2005-06-22T21:30:59Z,2,2020-02-15T06:59:38Z +3092,2005-06-20T16:04:42Z,4344,347,2005-06-27T19:54:42Z,1,2020-02-15T06:59:38Z +3093,2005-06-20T16:06:14Z,2534,556,2005-06-22T13:22:14Z,2,2020-02-15T06:59:38Z +3094,2005-06-20T16:06:51Z,2048,114,2005-06-24T13:23:51Z,1,2020-02-15T06:59:38Z +3095,2005-06-20T16:16:53Z,3937,298,2005-06-22T10:35:53Z,2,2020-02-15T06:59:38Z +3096,2005-06-20T16:17:56Z,3851,79,2005-06-24T10:17:56Z,2,2020-02-15T06:59:38Z +3097,2005-06-20T16:26:14Z,4337,280,2005-06-23T14:46:14Z,1,2020-02-15T06:59:38Z +3098,2005-06-20T16:37:01Z,3409,498,2005-06-22T22:24:01Z,1,2020-02-15T06:59:38Z +3099,2005-06-20T16:44:33Z,3756,380,2005-06-27T12:17:33Z,2,2020-02-15T06:59:38Z +3100,2005-06-20T16:47:57Z,2428,487,2005-06-26T16:59:57Z,1,2020-02-15T06:59:38Z +3101,2005-06-20T16:48:58Z,1738,384,2005-06-27T18:13:58Z,2,2020-02-15T06:59:38Z +3102,2005-06-20T16:55:55Z,1144,522,2005-06-29T13:49:55Z,1,2020-02-15T06:59:38Z +3103,2005-06-20T16:58:19Z,1877,553,2005-06-25T21:18:19Z,1,2020-02-15T06:59:38Z +3104,2005-06-20T17:06:46Z,1490,196,2005-06-28T13:18:46Z,2,2020-02-15T06:59:38Z +3105,2005-06-20T17:11:46Z,130,385,2005-06-21T11:48:46Z,2,2020-02-15T06:59:38Z +3106,2005-06-20T17:18:06Z,2637,201,2005-06-24T14:50:06Z,2,2020-02-15T06:59:38Z +3107,2005-06-20T17:26:05Z,4527,303,2005-06-25T12:36:05Z,1,2020-02-15T06:59:38Z +3108,2005-06-20T17:28:43Z,2218,189,2005-06-27T21:23:43Z,1,2020-02-15T06:59:38Z +3109,2005-06-20T17:33:55Z,977,93,2005-06-22T23:09:55Z,1,2020-02-15T06:59:38Z +3110,2005-06-20T17:40:12Z,2008,333,2005-06-24T17:09:12Z,1,2020-02-15T06:59:38Z +3111,2005-06-20T17:46:47Z,4494,579,2005-06-29T19:45:47Z,1,2020-02-15T06:59:38Z +3112,2005-06-20T17:53:30Z,3725,35,2005-06-26T16:03:30Z,1,2020-02-15T06:59:38Z +3113,2005-06-20T17:56:40Z,3620,517,2005-06-23T14:45:40Z,1,2020-02-15T06:59:38Z +3114,2005-06-20T17:57:47Z,2388,8,2005-06-21T19:18:47Z,2,2020-02-15T06:59:38Z +3115,2005-06-20T17:59:05Z,2193,457,2005-06-26T13:28:05Z,1,2020-02-15T06:59:38Z +3116,2005-06-20T18:04:55Z,276,108,2005-06-21T12:12:55Z,2,2020-02-15T06:59:38Z +3117,2005-06-20T18:05:15Z,2184,31,2005-06-26T17:28:15Z,1,2020-02-15T06:59:38Z +3118,2005-06-20T18:05:57Z,1258,125,2005-06-23T23:01:57Z,1,2020-02-15T06:59:38Z +3119,2005-06-20T18:11:44Z,683,296,2005-06-27T16:14:44Z,2,2020-02-15T06:59:38Z +3120,2005-06-20T18:19:29Z,2530,107,2005-06-23T23:40:29Z,1,2020-02-15T06:59:38Z +3121,2005-06-20T18:23:30Z,797,132,2005-06-21T20:36:30Z,1,2020-02-15T06:59:38Z +3122,2005-06-20T18:25:57Z,2720,87,2005-06-29T16:08:57Z,1,2020-02-15T06:59:38Z +3123,2005-06-20T18:26:14Z,1656,289,2005-06-29T17:17:14Z,1,2020-02-15T06:59:38Z +3124,2005-06-20T18:28:19Z,3342,113,2005-06-28T21:08:19Z,1,2020-02-15T06:59:38Z +3125,2005-06-20T18:31:58Z,3293,382,2005-06-21T15:03:58Z,1,2020-02-15T06:59:38Z +3126,2005-06-20T18:38:22Z,1183,5,2005-06-26T00:00:22Z,1,2020-02-15T06:59:38Z +3127,2005-06-20T18:39:43Z,1292,461,2005-06-28T17:55:43Z,1,2020-02-15T06:59:38Z +3128,2005-06-20T18:41:47Z,189,543,2005-06-24T20:54:47Z,2,2020-02-15T06:59:38Z +3129,2005-06-20T18:57:48Z,1789,495,2005-06-28T13:45:48Z,1,2020-02-15T06:59:38Z +3130,2005-06-20T19:03:22Z,2569,341,2005-06-29T18:05:22Z,2,2020-02-15T06:59:38Z +3131,2005-06-20T19:08:00Z,3678,146,2005-06-24T20:59:00Z,2,2020-02-15T06:59:38Z +3132,2005-06-20T19:09:46Z,711,90,2005-06-24T19:42:46Z,1,2020-02-15T06:59:38Z +3133,2005-06-20T19:18:32Z,4529,120,2005-06-26T17:54:32Z,2,2020-02-15T06:59:38Z +3134,2005-06-20T19:29:09Z,1389,537,2005-06-29T19:31:09Z,2,2020-02-15T06:59:38Z +3135,2005-06-20T19:33:52Z,1122,12,2005-06-29T18:20:52Z,1,2020-02-15T06:59:38Z +3136,2005-06-20T19:39:08Z,3349,377,2005-06-22T23:35:08Z,2,2020-02-15T06:59:38Z +3137,2005-06-20T19:41:28Z,786,505,2005-06-28T00:32:28Z,1,2020-02-15T06:59:38Z +3138,2005-06-20T19:43:45Z,2265,570,2005-06-26T20:41:45Z,1,2020-02-15T06:59:38Z +3139,2005-06-20T19:44:45Z,3474,354,2005-06-23T16:24:45Z,1,2020-02-15T06:59:38Z +3140,2005-06-20T19:47:12Z,2936,53,2005-06-24T23:24:12Z,1,2020-02-15T06:59:38Z +3141,2005-06-20T19:55:47Z,1806,398,2005-06-30T00:31:47Z,1,2020-02-15T06:59:38Z +3142,2005-06-20T19:59:28Z,3926,9,2005-06-28T19:51:28Z,2,2020-02-15T06:59:38Z +3143,2005-06-20T20:01:52Z,1355,215,2005-06-26T19:26:52Z,2,2020-02-15T06:59:38Z +3144,2005-06-20T20:14:20Z,1300,114,2005-06-30T01:46:20Z,1,2020-02-15T06:59:38Z +3145,2005-06-20T20:21:17Z,2211,144,2005-06-22T14:44:17Z,1,2020-02-15T06:59:38Z +3146,2005-06-20T20:21:48Z,2249,339,2005-06-29T22:57:48Z,2,2020-02-15T06:59:38Z +3147,2005-06-20T20:25:17Z,615,390,2005-06-28T20:22:17Z,2,2020-02-15T06:59:38Z +3148,2005-06-20T20:27:18Z,4490,202,2005-06-24T20:30:18Z,2,2020-02-15T06:59:38Z +3149,2005-06-20T20:34:55Z,3295,55,2005-06-21T18:51:55Z,1,2020-02-15T06:59:38Z +3150,2005-06-20T20:35:28Z,94,34,2005-06-26T01:01:28Z,1,2020-02-15T06:59:38Z +3151,2005-06-20T20:36:53Z,2976,77,2005-06-25T18:56:53Z,1,2020-02-15T06:59:38Z +3152,2005-06-20T20:42:41Z,1022,246,2005-06-28T21:12:41Z,1,2020-02-15T06:59:38Z +3153,2005-06-20T20:44:15Z,659,430,2005-06-23T16:04:15Z,1,2020-02-15T06:59:38Z +3154,2005-06-20T20:44:40Z,3195,550,2005-06-23T19:10:40Z,1,2020-02-15T06:59:38Z +3155,2005-06-20T21:02:38Z,458,450,2005-06-27T19:34:38Z,1,2020-02-15T06:59:38Z +3156,2005-06-20T21:03:46Z,2217,365,2005-06-21T23:32:46Z,2,2020-02-15T06:59:38Z +3157,2005-06-20T21:07:54Z,1899,245,2005-06-23T16:01:54Z,1,2020-02-15T06:59:38Z +3158,2005-06-20T21:08:19Z,3461,592,2005-06-29T18:59:19Z,1,2020-02-15T06:59:38Z +3159,2005-06-20T21:11:50Z,33,388,2005-06-29T19:35:50Z,2,2020-02-15T06:59:38Z +3160,2005-06-20T21:20:51Z,4333,561,2005-06-29T18:06:51Z,2,2020-02-15T06:59:38Z +3161,2005-06-20T21:21:01Z,1326,373,2005-06-21T18:22:01Z,2,2020-02-15T06:59:38Z +3162,2005-06-20T21:21:15Z,3220,113,2005-06-29T18:42:15Z,1,2020-02-15T06:59:38Z +3163,2005-06-20T21:22:13Z,2632,391,2005-06-26T15:22:13Z,2,2020-02-15T06:59:38Z +3164,2005-06-20T21:29:00Z,155,270,2005-06-27T15:50:00Z,1,2020-02-15T06:59:38Z +3165,2005-06-20T21:29:17Z,796,85,2005-06-22T18:03:17Z,1,2020-02-15T06:59:38Z +3166,2005-06-20T21:32:32Z,1850,424,2005-06-27T20:29:32Z,1,2020-02-15T06:59:38Z +3167,2005-06-20T21:42:29Z,353,464,2005-06-22T00:36:29Z,2,2020-02-15T06:59:38Z +3168,2005-06-20T21:46:01Z,2407,446,2005-06-22T20:40:01Z,1,2020-02-15T06:59:38Z +3169,2005-06-20T21:55:54Z,2437,50,2005-06-25T19:45:54Z,1,2020-02-15T06:59:38Z +3170,2005-06-20T22:02:54Z,1306,421,2005-06-29T00:41:54Z,2,2020-02-15T06:59:38Z +3171,2005-06-20T22:15:47Z,2838,140,2005-06-24T18:14:47Z,1,2020-02-15T06:59:38Z +3172,2005-06-20T22:19:25Z,1758,31,2005-06-24T17:18:25Z,2,2020-02-15T06:59:38Z +3173,2005-06-20T22:21:10Z,4306,33,2005-06-27T19:41:10Z,2,2020-02-15T06:59:38Z +3174,2005-06-20T22:24:00Z,3331,107,2005-06-22T21:22:00Z,2,2020-02-15T06:59:38Z +3175,2005-06-20T22:30:23Z,4093,249,2005-06-30T03:28:23Z,2,2020-02-15T06:59:38Z +3176,2005-06-20T22:31:54Z,1982,371,2005-06-25T02:58:54Z,1,2020-02-15T06:59:38Z +3177,2005-06-20T22:32:44Z,2546,300,2005-06-22T23:01:44Z,1,2020-02-15T06:59:38Z +3178,2005-06-20T22:35:12Z,3517,79,2005-06-23T19:39:12Z,1,2020-02-15T06:59:38Z +3179,2005-06-20T22:37:59Z,2214,163,2005-06-26T22:26:59Z,2,2020-02-15T06:59:38Z +3180,2005-06-20T22:48:44Z,3997,162,2005-06-21T21:25:44Z,1,2020-02-15T06:59:38Z +3181,2005-06-20T22:51:02Z,3473,238,2005-06-27T21:21:02Z,1,2020-02-15T06:59:38Z +3182,2005-06-20T22:52:18Z,4017,15,2005-06-21T21:00:18Z,2,2020-02-15T06:59:38Z +3183,2005-06-20T22:55:55Z,4397,129,2005-06-23T17:22:55Z,1,2020-02-15T06:59:38Z +3184,2005-06-20T22:57:44Z,3179,457,2005-06-29T20:57:44Z,1,2020-02-15T06:59:38Z +3185,2005-06-20T22:58:01Z,601,234,2005-06-27T00:26:01Z,1,2020-02-15T06:59:38Z +3186,2005-06-20T23:04:20Z,3198,406,2005-06-29T02:56:20Z,2,2020-02-15T06:59:38Z +3187,2005-06-20T23:06:07Z,4357,150,2005-06-27T01:14:07Z,2,2020-02-15T06:59:38Z +3188,2005-06-20T23:10:27Z,2471,522,2005-06-25T19:37:27Z,2,2020-02-15T06:59:38Z +3189,2005-06-20T23:19:33Z,1502,538,2005-06-24T17:46:33Z,1,2020-02-15T06:59:38Z +3190,2005-06-20T23:27:15Z,351,200,2005-06-28T01:22:15Z,2,2020-02-15T06:59:38Z +3191,2005-06-20T23:46:39Z,4358,522,2005-06-25T03:21:39Z,2,2020-02-15T06:59:38Z +3192,2005-06-20T23:49:12Z,3713,11,2005-06-24T03:00:12Z,1,2020-02-15T06:59:38Z +3193,2005-06-20T23:52:30Z,3176,260,2005-06-22T21:21:30Z,1,2020-02-15T06:59:38Z +3194,2005-06-20T23:59:57Z,1835,432,2005-06-24T19:21:57Z,1,2020-02-15T06:59:38Z +3195,2005-06-21T00:02:10Z,2383,165,2005-06-21T23:11:10Z,2,2020-02-15T06:59:38Z +3196,2005-06-21T00:02:28Z,1575,52,2005-06-22T23:08:28Z,1,2020-02-15T06:59:38Z +3197,2005-06-21T00:07:23Z,1811,362,2005-06-23T00:53:23Z,2,2020-02-15T06:59:38Z +3198,2005-06-21T00:08:54Z,1626,295,2005-06-29T02:11:54Z,2,2020-02-15T06:59:38Z +3199,2005-06-21T00:12:40Z,3824,234,2005-06-27T23:26:40Z,1,2020-02-15T06:59:38Z +3200,2005-06-21T00:22:47Z,4117,221,2005-06-27T05:52:47Z,2,2020-02-15T06:59:38Z +3201,2005-06-21T00:30:26Z,6,597,2005-06-28T03:42:26Z,1,2020-02-15T06:59:38Z +3202,2005-06-21T00:33:47Z,2725,273,2005-06-24T04:05:47Z,2,2020-02-15T06:59:38Z +3203,2005-06-21T00:34:56Z,442,158,2005-06-29T23:30:56Z,1,2020-02-15T06:59:38Z +3204,2005-06-21T00:37:50Z,2848,336,2005-06-22T23:46:50Z,1,2020-02-15T06:59:38Z +3205,2005-06-21T00:38:47Z,2964,31,2005-06-21T22:49:47Z,1,2020-02-15T06:59:38Z +3206,2005-06-21T00:39:39Z,2196,350,2005-06-22T05:12:39Z,1,2020-02-15T06:59:38Z +3207,2005-06-21T00:43:16Z,4020,86,2005-06-24T22:13:16Z,1,2020-02-15T06:59:38Z +3208,2005-06-21T00:50:03Z,3169,229,2005-06-24T06:15:03Z,2,2020-02-15T06:59:38Z +3209,2005-06-21T00:51:06Z,287,307,2005-06-22T21:49:06Z,2,2020-02-15T06:59:38Z +3210,2005-06-21T01:00:25Z,467,75,2005-06-23T06:10:25Z,2,2020-02-15T06:59:38Z +3211,2005-06-21T01:01:29Z,1150,415,2005-06-23T04:05:29Z,1,2020-02-15T06:59:38Z +3212,2005-06-21T01:04:35Z,4178,21,2005-06-30T00:10:35Z,2,2020-02-15T06:59:38Z +3213,2005-06-21T01:05:19Z,3832,534,2005-06-27T21:55:19Z,2,2020-02-15T06:59:38Z +3214,2005-06-21T01:08:26Z,776,142,2005-06-23T03:24:26Z,2,2020-02-15T06:59:38Z +3215,2005-06-21T01:11:32Z,4140,279,2005-06-26T19:42:32Z,1,2020-02-15T06:59:38Z +3216,2005-06-21T01:19:37Z,719,534,2005-06-29T06:45:37Z,2,2020-02-15T06:59:38Z +3217,2005-06-21T01:28:12Z,1027,463,2005-06-25T02:51:12Z,2,2020-02-15T06:59:38Z +3218,2005-06-21T01:38:09Z,1828,117,2005-06-23T02:00:09Z,1,2020-02-15T06:59:38Z +3219,2005-06-21T01:43:26Z,3024,129,2005-06-28T23:50:26Z,2,2020-02-15T06:59:38Z +3220,2005-06-21T01:46:25Z,1880,574,2005-06-26T07:44:25Z,2,2020-02-15T06:59:38Z +3221,2005-06-21T01:49:47Z,245,454,2005-06-25T06:31:47Z,1,2020-02-15T06:59:38Z +3222,2005-06-21T01:50:29Z,4023,501,2005-06-27T00:52:29Z,2,2020-02-15T06:59:38Z +3223,2005-06-21T02:06:45Z,1033,299,2005-06-22T07:16:45Z,2,2020-02-15T06:59:38Z +3224,2005-06-21T02:11:36Z,3318,173,2005-06-23T21:17:36Z,1,2020-02-15T06:59:38Z +3225,2005-06-21T02:16:55Z,1003,448,2005-06-27T05:39:55Z,2,2020-02-15T06:59:38Z +3226,2005-06-21T02:18:14Z,4079,576,2005-06-26T22:32:14Z,2,2020-02-15T06:59:38Z +3227,2005-06-21T02:18:25Z,1156,568,2005-06-27T00:59:25Z,1,2020-02-15T06:59:38Z +3228,2005-06-21T02:20:24Z,2489,535,2005-06-29T00:50:24Z,2,2020-02-15T06:59:38Z +3229,2005-06-21T02:20:41Z,2301,81,2005-06-26T00:39:41Z,1,2020-02-15T06:59:38Z +3230,2005-06-21T02:23:16Z,215,83,2005-06-22T01:37:16Z,2,2020-02-15T06:59:38Z +3231,2005-06-21T02:25:00Z,237,28,2005-06-23T05:46:00Z,2,2020-02-15T06:59:38Z +3232,2005-06-21T02:30:37Z,1972,555,2005-06-29T03:10:37Z,1,2020-02-15T06:59:38Z +3233,2005-06-21T02:39:31Z,3542,353,2005-06-28T05:23:31Z,2,2020-02-15T06:59:38Z +3234,2005-06-21T02:39:44Z,3252,459,2005-06-29T07:27:44Z,1,2020-02-15T06:59:38Z +3235,2005-06-21T02:46:17Z,212,49,2005-06-22T20:58:17Z,1,2020-02-15T06:59:38Z +3236,2005-06-21T02:47:43Z,1492,550,2005-06-29T08:04:43Z,2,2020-02-15T06:59:38Z +3237,2005-06-21T02:47:56Z,4399,466,2005-06-27T03:16:56Z,2,2020-02-15T06:59:38Z +3238,2005-06-21T02:48:21Z,2732,77,2005-06-23T04:43:21Z,1,2020-02-15T06:59:38Z +3239,2005-06-21T02:48:40Z,3402,328,2005-06-22T02:49:40Z,2,2020-02-15T06:59:38Z +3240,2005-06-21T02:53:17Z,2938,405,2005-06-30T03:25:17Z,2,2020-02-15T06:59:38Z +3241,2005-06-21T02:54:32Z,1442,499,2005-06-26T21:56:32Z,2,2020-02-15T06:59:38Z +3242,2005-06-21T02:56:24Z,1421,562,2005-06-29T21:41:24Z,2,2020-02-15T06:59:38Z +3243,2005-06-21T03:00:11Z,2556,426,2005-06-25T21:53:11Z,1,2020-02-15T06:59:38Z +3244,2005-06-21T03:01:10Z,291,53,2005-06-24T06:59:10Z,2,2020-02-15T06:59:38Z +3245,2005-06-21T03:06:11Z,2057,358,2005-06-25T08:06:11Z,2,2020-02-15T06:59:38Z +3246,2005-06-21T03:10:01Z,4432,41,2005-06-28T00:46:01Z,1,2020-02-15T06:59:38Z +3247,2005-06-21T03:12:15Z,1406,277,2005-06-27T00:44:15Z,1,2020-02-15T06:59:38Z +3248,2005-06-21T03:12:21Z,3656,78,2005-06-28T03:54:21Z,2,2020-02-15T06:59:38Z +3249,2005-06-21T03:13:19Z,703,410,2005-06-29T04:04:19Z,2,2020-02-15T06:59:38Z +3250,2005-06-21T03:16:36Z,736,467,2005-06-29T00:53:36Z,2,2020-02-15T06:59:38Z +3251,2005-06-21T03:20:37Z,1414,317,2005-06-23T04:54:37Z,2,2020-02-15T06:59:38Z +3252,2005-06-21T03:25:26Z,2009,213,2005-06-24T00:38:26Z,2,2020-02-15T06:59:38Z +3253,2005-06-21T03:25:37Z,1906,405,2005-06-27T02:46:37Z,2,2020-02-15T06:59:38Z +3254,2005-06-21T03:27:10Z,3893,472,2005-06-22T22:01:10Z,2,2020-02-15T06:59:38Z +3255,2005-06-21T03:39:52Z,2564,482,2005-06-24T04:02:52Z,1,2020-02-15T06:59:38Z +3256,2005-06-21T03:45:42Z,1235,319,2005-06-30T02:51:42Z,2,2020-02-15T06:59:38Z +3257,2005-06-21T03:47:19Z,3975,263,2005-06-28T01:24:19Z,2,2020-02-15T06:59:38Z +3258,2005-06-21T03:53:58Z,4417,241,2005-06-22T22:49:58Z,2,2020-02-15T06:59:38Z +3259,2005-06-21T03:57:15Z,2751,478,2005-06-24T03:32:15Z,1,2020-02-15T06:59:38Z +3260,2005-06-21T03:59:13Z,3627,380,2005-06-23T03:29:13Z,1,2020-02-15T06:59:38Z +3261,2005-06-21T04:07:41Z,2029,169,2005-06-24T06:25:41Z,2,2020-02-15T06:59:38Z +3262,2005-06-21T04:08:43Z,3773,9,2005-06-28T02:55:43Z,1,2020-02-15T06:59:38Z +3263,2005-06-21T04:15:52Z,3491,118,2005-06-24T02:19:52Z,2,2020-02-15T06:59:38Z +3264,2005-06-21T04:19:03Z,1666,340,2005-06-23T01:29:03Z,1,2020-02-15T06:59:38Z +3265,2005-06-21T04:23:13Z,3637,437,2005-06-28T03:37:13Z,1,2020-02-15T06:59:38Z +3266,2005-06-21T04:49:07Z,2533,175,2005-06-26T05:19:07Z,2,2020-02-15T06:59:38Z +3267,2005-06-21T04:55:21Z,1118,134,2005-06-29T23:46:21Z,1,2020-02-15T06:59:38Z +3268,2005-06-21T04:55:49Z,4366,329,2005-06-30T00:23:49Z,2,2020-02-15T06:59:38Z +3269,2005-06-21T05:06:30Z,3828,17,2005-06-27T09:26:30Z,2,2020-02-15T06:59:38Z +3270,2005-06-21T05:07:31Z,1578,86,2005-06-22T07:45:31Z,2,2020-02-15T06:59:38Z +3271,2005-06-21T05:16:10Z,4191,196,2005-06-27T10:46:10Z,1,2020-02-15T06:59:38Z +3272,2005-06-21T05:18:27Z,1090,550,2005-06-30T02:51:27Z,1,2020-02-15T06:59:38Z +3273,2005-06-21T05:24:17Z,3538,104,2005-06-23T01:21:17Z,2,2020-02-15T06:59:38Z +3274,2005-06-21T05:30:36Z,2156,277,2005-06-24T05:12:36Z,1,2020-02-15T06:59:38Z +3275,2005-06-21T05:33:04Z,2320,368,2005-06-30T00:37:04Z,2,2020-02-15T06:59:38Z +3276,2005-06-21T05:35:52Z,1890,425,2005-06-29T03:26:52Z,2,2020-02-15T06:59:38Z +3277,2005-06-21T05:36:37Z,1330,229,2005-06-29T10:54:37Z,1,2020-02-15T06:59:38Z +3278,2005-06-21T05:41:30Z,2832,554,2005-06-22T03:43:30Z,1,2020-02-15T06:59:38Z +3279,2005-06-21T06:05:53Z,1672,462,2005-06-25T09:40:53Z,1,2020-02-15T06:59:38Z +3280,2005-06-21T06:08:12Z,661,229,2005-06-24T09:34:12Z,1,2020-02-15T06:59:38Z +3281,2005-06-21T06:08:47Z,4006,363,2005-06-24T11:22:47Z,1,2020-02-15T06:59:38Z +3282,2005-06-21T06:18:42Z,1676,224,2005-06-28T09:18:42Z,1,2020-02-15T06:59:38Z +3283,2005-06-21T06:19:07Z,3988,372,2005-06-26T10:59:07Z,2,2020-02-15T06:59:38Z +3284,2005-06-21T06:24:45Z,4566,1,2005-06-28T03:28:45Z,1,2020-02-15T06:59:38Z +3285,2005-06-21T06:30:13Z,948,481,2005-06-23T10:31:13Z,2,2020-02-15T06:59:38Z +3286,2005-06-21T06:31:29Z,742,577,2005-06-25T00:46:29Z,2,2020-02-15T06:59:38Z +3287,2005-06-21T06:32:39Z,4406,62,2005-06-24T09:29:39Z,2,2020-02-15T06:59:38Z +3288,2005-06-21T06:36:59Z,1961,299,2005-06-30T06:50:59Z,1,2020-02-15T06:59:38Z +3289,2005-06-21T06:41:48Z,2248,115,2005-06-30T00:54:48Z,1,2020-02-15T06:59:38Z +3290,2005-06-21T06:45:34Z,2727,293,2005-06-28T09:44:34Z,1,2020-02-15T06:59:38Z +3291,2005-06-21T06:55:36Z,3866,274,2005-06-29T03:41:36Z,1,2020-02-15T06:59:38Z +3292,2005-06-21T06:59:11Z,3288,412,2005-06-23T07:11:11Z,1,2020-02-15T06:59:38Z +3293,2005-06-21T06:59:33Z,4407,481,2005-06-25T06:54:33Z,2,2020-02-15T06:59:38Z +3294,2005-06-21T07:03:23Z,2390,439,2005-06-30T02:22:23Z,2,2020-02-15T06:59:38Z +3295,2005-06-21T07:04:17Z,1703,573,2005-06-29T01:52:17Z,1,2020-02-15T06:59:38Z +3296,2005-06-21T07:04:53Z,2453,284,2005-06-25T08:36:53Z,1,2020-02-15T06:59:38Z +3297,2005-06-21T07:08:19Z,3969,193,2005-06-28T11:53:19Z,2,2020-02-15T06:59:38Z +3298,2005-06-21T07:09:44Z,444,492,2005-06-30T11:26:44Z,2,2020-02-15T06:59:38Z +3299,2005-06-21T07:23:34Z,3427,199,2005-06-27T04:02:34Z,1,2020-02-15T06:59:38Z +3300,2005-06-21T07:25:01Z,2505,565,2005-06-25T01:47:01Z,1,2020-02-15T06:59:38Z +3301,2005-06-21T07:32:25Z,503,444,2005-06-28T06:26:25Z,2,2020-02-15T06:59:38Z +3302,2005-06-21T07:33:40Z,562,594,2005-06-29T06:02:40Z,1,2020-02-15T06:59:38Z +3303,2005-06-21T07:34:14Z,1565,361,2005-06-26T13:18:14Z,2,2020-02-15T06:59:38Z +3304,2005-06-21T07:43:40Z,2154,431,2005-06-27T08:06:40Z,2,2020-02-15T06:59:38Z +3305,2005-06-21T07:46:57Z,2811,578,2005-06-27T06:16:57Z,1,2020-02-15T06:59:38Z +3306,2005-06-21T07:46:58Z,1669,406,2005-06-26T11:22:58Z,2,2020-02-15T06:59:38Z +3307,2005-06-21T07:52:30Z,462,85,2005-06-25T02:36:30Z,2,2020-02-15T06:59:38Z +3308,2005-06-21T07:58:36Z,3129,96,2005-06-23T05:23:36Z,2,2020-02-15T06:59:38Z +3309,2005-06-21T08:00:49Z,248,463,2005-06-29T04:11:49Z,2,2020-02-15T06:59:38Z +3310,2005-06-21T08:04:51Z,1717,395,2005-06-22T04:20:51Z,2,2020-02-15T06:59:38Z +3311,2005-06-21T08:05:27Z,3438,518,2005-06-22T06:51:27Z,2,2020-02-15T06:59:38Z +3312,2005-06-21T08:05:32Z,1008,554,2005-06-27T03:34:32Z,2,2020-02-15T06:59:38Z +3313,2005-06-21T08:11:18Z,4267,213,2005-06-23T04:28:18Z,2,2020-02-15T06:59:38Z +3314,2005-06-21T08:17:00Z,4332,185,2005-06-22T06:00:00Z,2,2020-02-15T06:59:38Z +3315,2005-06-21T08:17:04Z,4108,438,2005-06-24T11:04:04Z,1,2020-02-15T06:59:38Z +3316,2005-06-21T08:20:18Z,3271,451,2005-06-28T07:44:18Z,1,2020-02-15T06:59:38Z +3317,2005-06-21T08:22:32Z,4095,584,2005-06-26T14:18:32Z,2,2020-02-15T06:59:39Z +3318,2005-06-21T08:23:05Z,1111,414,2005-06-27T14:07:05Z,2,2020-02-15T06:59:39Z +3319,2005-06-21T08:25:46Z,2482,461,2005-06-27T03:54:46Z,2,2020-02-15T06:59:39Z +3320,2005-06-21T08:29:41Z,860,47,2005-06-29T13:54:41Z,2,2020-02-15T06:59:39Z +3321,2005-06-21T08:33:26Z,1750,144,2005-06-24T10:09:26Z,2,2020-02-15T06:59:39Z +3322,2005-06-21T08:42:37Z,4324,458,2005-06-22T13:17:37Z,1,2020-02-15T06:59:39Z +3323,2005-06-21T08:45:33Z,2252,272,2005-06-28T08:17:33Z,2,2020-02-15T06:59:39Z +3324,2005-06-21T08:49:16Z,2830,29,2005-06-22T12:31:16Z,1,2020-02-15T06:59:39Z +3325,2005-06-21T08:51:44Z,1720,185,2005-06-27T06:16:44Z,1,2020-02-15T06:59:39Z +3326,2005-06-21T09:04:50Z,1025,347,2005-06-30T12:10:50Z,2,2020-02-15T06:59:39Z +3327,2005-06-21T09:04:50Z,3083,62,2005-06-30T05:45:50Z,1,2020-02-15T06:59:39Z +3328,2005-06-21T09:08:44Z,2462,292,2005-06-30T12:28:44Z,1,2020-02-15T06:59:39Z +3329,2005-06-21T09:20:31Z,3506,335,2005-06-22T10:00:31Z,2,2020-02-15T06:59:39Z +3330,2005-06-21T09:22:37Z,299,294,2005-06-23T07:16:37Z,2,2020-02-15T06:59:39Z +3331,2005-06-21T09:37:53Z,2913,352,2005-06-26T04:01:53Z,2,2020-02-15T06:59:39Z +3332,2005-06-21T09:55:12Z,1975,82,2005-06-25T08:32:12Z,2,2020-02-15T06:59:39Z +3333,2005-06-21T10:01:36Z,3688,111,2005-06-25T10:27:36Z,2,2020-02-15T06:59:39Z +3334,2005-06-21T10:04:33Z,2491,66,2005-06-29T06:09:33Z,2,2020-02-15T06:59:39Z +3335,2005-06-21T10:09:08Z,3033,339,2005-06-27T11:33:08Z,1,2020-02-15T06:59:39Z +3336,2005-06-21T10:14:27Z,2122,173,2005-06-22T09:29:27Z,1,2020-02-15T06:59:39Z +3337,2005-06-21T10:24:35Z,1176,318,2005-06-22T13:51:35Z,1,2020-02-15T06:59:39Z +3338,2005-06-21T10:27:31Z,2097,171,2005-06-30T14:15:31Z,2,2020-02-15T06:59:39Z +3339,2005-06-21T10:37:11Z,312,526,2005-06-30T05:04:11Z,2,2020-02-15T06:59:39Z +3340,2005-06-21T10:37:23Z,2962,540,2005-06-26T07:21:23Z,2,2020-02-15T06:59:39Z +3341,2005-06-21T10:37:25Z,2189,591,2005-06-26T15:38:25Z,1,2020-02-15T06:59:39Z +3342,2005-06-21T10:46:36Z,2884,196,2005-06-23T09:46:36Z,2,2020-02-15T06:59:39Z +3343,2005-06-21T10:56:59Z,2038,466,2005-06-25T16:41:59Z,1,2020-02-15T06:59:39Z +3344,2005-06-21T10:57:27Z,4401,277,2005-06-28T10:53:27Z,1,2020-02-15T06:59:39Z +3345,2005-06-21T11:05:07Z,4442,71,2005-06-26T15:14:07Z,2,2020-02-15T06:59:39Z +3346,2005-06-21T11:06:53Z,4393,189,2005-06-22T15:19:53Z,2,2020-02-15T06:59:39Z +3347,2005-06-21T11:08:32Z,4330,448,2005-06-28T09:59:32Z,1,2020-02-15T06:59:39Z +3348,2005-06-21T11:16:42Z,2945,16,2005-06-27T13:50:42Z,2,2020-02-15T06:59:39Z +3349,2005-06-21T11:17:35Z,3885,336,2005-06-22T12:51:35Z,2,2020-02-15T06:59:39Z +3350,2005-06-21T11:21:38Z,3221,20,2005-06-28T15:37:38Z,2,2020-02-15T06:59:39Z +3351,2005-06-21T11:21:39Z,1591,386,2005-06-23T07:23:39Z,2,2020-02-15T06:59:39Z +3352,2005-06-21T11:26:29Z,578,510,2005-06-28T07:26:29Z,1,2020-02-15T06:59:39Z +3353,2005-06-21T11:29:23Z,3984,236,2005-06-27T15:06:23Z,1,2020-02-15T06:59:39Z +3354,2005-06-21T11:29:49Z,1083,529,2005-06-25T07:39:49Z,2,2020-02-15T06:59:39Z +3355,2005-06-21T11:30:47Z,1960,275,2005-06-23T06:04:47Z,1,2020-02-15T06:59:39Z +3356,2005-06-21T11:38:45Z,4532,403,2005-06-26T17:18:45Z,1,2020-02-15T06:59:39Z +3357,2005-06-21T11:55:42Z,2528,57,2005-06-22T07:19:42Z,2,2020-02-15T06:59:39Z +3358,2005-06-21T11:56:40Z,1772,69,2005-06-26T08:28:40Z,2,2020-02-15T06:59:39Z +3359,2005-06-21T12:08:18Z,3825,67,2005-06-25T16:35:18Z,2,2020-02-15T06:59:39Z +3360,2005-06-21T12:12:41Z,2792,498,2005-06-26T06:32:41Z,1,2020-02-15T06:59:39Z +3361,2005-06-21T12:14:23Z,2671,268,2005-06-26T10:01:23Z,2,2020-02-15T06:59:39Z +3362,2005-06-21T12:19:54Z,1284,454,2005-06-23T06:59:54Z,2,2020-02-15T06:59:39Z +3363,2005-06-21T12:25:07Z,538,261,2005-06-27T11:52:07Z,2,2020-02-15T06:59:39Z +3364,2005-06-21T12:37:46Z,2329,201,2005-06-28T07:18:46Z,2,2020-02-15T06:59:39Z +3365,2005-06-21T12:55:48Z,657,133,2005-06-23T13:38:48Z,2,2020-02-15T06:59:39Z +3366,2005-06-21T13:03:37Z,2584,511,2005-06-26T16:29:37Z,1,2020-02-15T06:59:39Z +3367,2005-06-21T13:08:21Z,2442,80,2005-06-26T08:43:21Z,2,2020-02-15T06:59:39Z +3368,2005-06-21T13:18:38Z,548,438,2005-06-23T11:13:38Z,1,2020-02-15T06:59:39Z +3369,2005-06-21T13:20:31Z,303,431,2005-06-30T13:45:31Z,2,2020-02-15T06:59:39Z +3370,2005-06-21T13:27:01Z,1573,559,2005-06-25T09:27:01Z,1,2020-02-15T06:59:39Z +3371,2005-06-21T13:27:22Z,2526,595,2005-06-29T14:04:22Z,2,2020-02-15T06:59:39Z +3372,2005-06-21T13:34:19Z,4169,346,2005-06-27T08:41:19Z,2,2020-02-15T06:59:39Z +3373,2005-06-21T13:35:32Z,2219,316,2005-06-30T12:03:32Z,1,2020-02-15T06:59:39Z +3374,2005-06-21T13:36:30Z,1067,279,2005-06-23T15:10:30Z,2,2020-02-15T06:59:39Z +3375,2005-06-21T13:37:18Z,912,279,2005-06-22T11:26:18Z,2,2020-02-15T06:59:39Z +3376,2005-06-21T13:43:02Z,3055,318,2005-06-28T18:07:02Z,1,2020-02-15T06:59:39Z +3377,2005-06-21T13:51:12Z,1845,428,2005-06-22T18:16:12Z,1,2020-02-15T06:59:39Z +3378,2005-06-21T13:51:28Z,35,387,2005-06-25T09:21:28Z,1,2020-02-15T06:59:39Z +3379,2005-06-21T13:54:58Z,2022,566,2005-06-23T13:43:58Z,2,2020-02-15T06:59:39Z +3380,2005-06-21T13:58:46Z,3212,483,2005-06-30T09:29:46Z,1,2020-02-15T06:59:39Z +3381,2005-06-21T14:02:59Z,1373,183,2005-06-29T18:11:59Z,2,2020-02-15T06:59:39Z +3382,2005-06-21T14:05:23Z,131,341,2005-06-29T19:13:23Z,2,2020-02-15T06:59:39Z +3383,2005-06-21T14:07:19Z,2968,239,2005-06-29T17:00:19Z,2,2020-02-15T06:59:39Z +3384,2005-06-21T14:07:35Z,409,91,2005-06-26T16:34:35Z,1,2020-02-15T06:59:39Z +3385,2005-06-21T14:16:48Z,2810,514,2005-06-24T10:32:48Z,2,2020-02-15T06:59:39Z +3386,2005-06-21T14:21:06Z,1224,190,2005-06-24T08:32:06Z,2,2020-02-15T06:59:39Z +3387,2005-06-21T14:21:49Z,2709,305,2005-06-24T16:46:49Z,2,2020-02-15T06:59:39Z +3388,2005-06-21T14:34:51Z,556,119,2005-06-28T18:19:51Z,1,2020-02-15T06:59:39Z +3389,2005-06-21T14:37:55Z,727,395,2005-06-28T18:13:55Z,1,2020-02-15T06:59:39Z +3390,2005-06-21T15:10:50Z,2034,151,2005-06-26T12:38:50Z,1,2020-02-15T06:59:39Z +3391,2005-06-21T15:11:02Z,26,45,2005-06-25T14:12:02Z,1,2020-02-15T06:59:39Z +3392,2005-06-21T15:12:44Z,3343,38,2005-06-29T18:19:44Z,1,2020-02-15T06:59:39Z +3393,2005-06-21T15:14:27Z,1631,362,2005-06-25T19:54:27Z,2,2020-02-15T06:59:39Z +3394,2005-06-21T15:17:39Z,3393,295,2005-06-30T13:55:39Z,2,2020-02-15T06:59:39Z +3395,2005-06-21T15:19:19Z,3764,66,2005-06-29T14:23:19Z,2,2020-02-15T06:59:39Z +3396,2005-06-21T15:23:08Z,2744,371,2005-06-23T10:25:08Z,1,2020-02-15T06:59:39Z +3397,2005-06-21T15:30:11Z,602,552,2005-06-22T21:12:11Z,1,2020-02-15T06:59:39Z +3398,2005-06-21T15:34:38Z,221,599,2005-06-29T11:23:38Z,1,2020-02-15T06:59:39Z +3399,2005-06-21T15:47:48Z,619,98,2005-06-26T13:46:48Z,1,2020-02-15T06:59:39Z +3400,2005-06-21T15:50:30Z,1697,298,2005-06-25T18:07:30Z,1,2020-02-15T06:59:39Z +3401,2005-06-21T15:52:43Z,3423,577,2005-06-30T21:09:43Z,2,2020-02-15T06:59:39Z +3402,2005-06-21T15:54:37Z,596,187,2005-06-30T13:43:37Z,1,2020-02-15T06:59:39Z +3403,2005-06-21T15:55:06Z,1741,264,2005-06-27T12:34:06Z,1,2020-02-15T06:59:39Z +3404,2005-06-21T15:57:52Z,2005,424,2005-06-24T20:58:52Z,2,2020-02-15T06:59:39Z +3405,2005-06-21T15:58:25Z,2344,155,2005-06-23T10:58:25Z,1,2020-02-15T06:59:39Z +3406,2005-06-21T16:00:18Z,2049,203,2005-06-23T18:25:18Z,1,2020-02-15T06:59:39Z +3407,2005-06-21T16:14:02Z,3919,343,2005-06-24T15:38:02Z,2,2020-02-15T06:59:39Z +3408,2005-06-21T16:15:11Z,3453,282,2005-06-27T14:55:11Z,1,2020-02-15T06:59:39Z +3409,2005-06-21T16:17:38Z,3374,429,2005-06-22T14:16:38Z,1,2020-02-15T06:59:39Z +3410,2005-06-21T16:20:47Z,1197,321,2005-06-24T19:09:47Z,2,2020-02-15T06:59:39Z +3411,2005-06-21T16:31:27Z,4250,12,2005-06-28T12:27:27Z,2,2020-02-15T06:59:39Z +3412,2005-06-21T16:44:31Z,3036,501,2005-06-28T16:15:31Z,2,2020-02-15T06:59:39Z +3413,2005-06-21T16:57:07Z,666,322,2005-06-30T12:03:07Z,2,2020-02-15T06:59:39Z +3414,2005-06-21T16:58:50Z,2929,226,2005-06-24T17:26:50Z,1,2020-02-15T06:59:39Z +3415,2005-06-21T16:59:49Z,3540,444,2005-06-27T17:19:49Z,1,2020-02-15T06:59:39Z +3416,2005-06-21T17:05:29Z,1215,76,2005-06-23T17:58:29Z,2,2020-02-15T06:59:39Z +3417,2005-06-21T17:06:20Z,874,282,2005-06-23T17:00:20Z,2,2020-02-15T06:59:39Z +3418,2005-06-21T17:06:38Z,4115,85,2005-06-25T19:43:38Z,1,2020-02-15T06:59:39Z +3419,2005-06-21T17:18:01Z,4022,22,2005-06-22T15:08:01Z,1,2020-02-15T06:59:39Z +3420,2005-06-21T17:22:36Z,2523,27,2005-06-28T12:34:36Z,1,2020-02-15T06:59:39Z +3421,2005-06-21T17:22:58Z,3930,346,2005-06-24T18:57:58Z,1,2020-02-15T06:59:39Z +3422,2005-06-21T17:24:40Z,2724,251,2005-06-29T13:59:40Z,2,2020-02-15T06:59:39Z +3423,2005-06-21T17:38:02Z,3612,19,2005-06-23T19:47:02Z,1,2020-02-15T06:59:39Z +3424,2005-06-21T17:42:51Z,1279,583,2005-06-24T23:22:51Z,2,2020-02-15T06:59:39Z +3425,2005-06-21T18:07:07Z,4548,381,2005-06-27T22:59:07Z,2,2020-02-15T06:59:39Z +3426,2005-06-21T18:12:10Z,3019,95,2005-06-23T18:22:10Z,1,2020-02-15T06:59:39Z +3427,2005-06-21T18:31:09Z,560,561,2005-06-22T14:18:09Z,2,2020-02-15T06:59:39Z +3428,2005-06-21T18:39:34Z,1959,40,2005-06-22T18:23:34Z,2,2020-02-15T06:59:39Z +3429,2005-06-21T18:46:05Z,456,599,2005-06-30T17:28:05Z,1,2020-02-15T06:59:39Z +3430,2005-06-21T18:46:08Z,1613,503,2005-06-22T13:49:08Z,2,2020-02-15T06:59:39Z +3431,2005-06-21T18:46:48Z,133,516,2005-06-26T23:08:48Z,1,2020-02-15T06:59:39Z +3432,2005-06-21T19:02:03Z,1814,216,2005-06-25T00:57:03Z,2,2020-02-15T06:59:39Z +3433,2005-06-21T19:07:19Z,1077,228,2005-06-29T18:01:19Z,2,2020-02-15T06:59:39Z +3434,2005-06-21T19:08:28Z,2295,141,2005-06-23T14:25:28Z,1,2020-02-15T06:59:39Z +3435,2005-06-21T19:14:58Z,451,591,2005-06-24T19:58:58Z,1,2020-02-15T06:59:39Z +3436,2005-06-21T19:16:09Z,2740,137,2005-06-30T13:58:09Z,2,2020-02-15T06:59:39Z +3437,2005-06-21T19:20:17Z,1798,211,2005-07-01T01:09:17Z,2,2020-02-15T06:59:39Z +3438,2005-06-21T19:31:40Z,1757,556,2005-06-30T19:08:40Z,1,2020-02-15T06:59:39Z +3439,2005-06-21T19:36:15Z,1529,46,2005-06-23T14:54:15Z,2,2020-02-15T06:59:39Z +3440,2005-06-21T19:58:18Z,853,491,2005-06-27T22:08:18Z,1,2020-02-15T06:59:39Z +3441,2005-06-21T20:00:12Z,2863,326,2005-06-24T00:24:12Z,2,2020-02-15T06:59:39Z +3442,2005-06-21T20:06:51Z,1896,255,2005-06-25T17:35:51Z,2,2020-02-15T06:59:39Z +3443,2005-06-21T20:19:00Z,1639,377,2005-06-30T15:39:00Z,1,2020-02-15T06:59:39Z +3444,2005-06-21T20:39:39Z,493,45,2005-06-25T23:44:39Z,2,2020-02-15T06:59:39Z +3445,2005-06-21T20:40:28Z,2381,74,2005-06-29T00:47:28Z,2,2020-02-15T06:59:39Z +3446,2005-06-21T20:45:51Z,1817,174,2005-06-26T17:02:51Z,1,2020-02-15T06:59:39Z +3447,2005-06-21T20:53:31Z,1146,25,2005-06-24T02:20:31Z,2,2020-02-15T06:59:39Z +3448,2005-06-21T20:59:20Z,592,476,2005-06-24T15:40:20Z,1,2020-02-15T06:59:39Z +3449,2005-06-21T21:01:27Z,210,181,2005-06-27T21:20:27Z,1,2020-02-15T06:59:39Z +3450,2005-06-21T21:01:57Z,2268,126,2005-06-25T23:57:57Z,1,2020-02-15T06:59:39Z +3451,2005-06-21T21:10:39Z,3489,558,2005-06-30T19:03:39Z,2,2020-02-15T06:59:39Z +3452,2005-06-21T21:11:27Z,2646,293,2005-06-24T16:31:27Z,1,2020-02-15T06:59:39Z +3453,2005-06-21T21:12:11Z,842,278,2005-06-23T17:39:11Z,2,2020-02-15T06:59:39Z +3454,2005-06-21T21:12:13Z,3009,524,2005-06-25T23:23:13Z,1,2020-02-15T06:59:39Z +3455,2005-06-21T21:17:51Z,4403,340,2005-06-23T17:22:51Z,1,2020-02-15T06:59:39Z +3456,2005-06-21T21:19:47Z,1119,150,2005-06-28T18:18:47Z,2,2020-02-15T06:59:39Z +3457,2005-06-21T21:42:33Z,883,312,2005-06-30T19:54:33Z,2,2020-02-15T06:59:39Z +3458,2005-06-21T21:42:49Z,2136,338,2005-06-29T01:26:49Z,1,2020-02-15T06:59:39Z +3459,2005-06-21T21:45:47Z,3080,97,2005-06-25T00:46:47Z,1,2020-02-15T06:59:39Z +3460,2005-06-21T21:46:56Z,1765,236,2005-06-29T20:08:56Z,1,2020-02-15T06:59:39Z +3461,2005-06-21T21:49:18Z,1715,23,2005-06-26T19:51:18Z,1,2020-02-15T06:59:39Z +3462,2005-06-21T21:52:52Z,547,568,2005-06-28T21:41:52Z,1,2020-02-15T06:59:39Z +3463,2005-06-21T22:00:00Z,3436,96,2005-06-22T19:22:00Z,2,2020-02-15T06:59:39Z +3464,2005-06-21T22:08:58Z,2698,251,2005-06-26T16:23:58Z,2,2020-02-15T06:59:39Z +3465,2005-06-21T22:10:01Z,1488,510,2005-06-30T21:35:01Z,1,2020-02-15T06:59:39Z +3466,2005-06-21T22:13:33Z,371,226,2005-06-25T21:01:33Z,2,2020-02-15T06:59:39Z +3467,2005-06-21T22:19:25Z,729,543,2005-06-27T00:03:25Z,2,2020-02-15T06:59:39Z +3468,2005-06-21T22:43:45Z,2899,100,2005-06-30T01:49:45Z,1,2020-02-15T06:59:39Z +3469,2005-06-21T22:48:59Z,4087,181,2005-06-28T19:32:59Z,1,2020-02-15T06:59:39Z +3470,2005-07-05T22:49:24Z,883,565,2005-07-07T19:36:24Z,1,2020-02-15T06:59:39Z +3471,2005-07-05T22:51:44Z,1724,242,2005-07-13T01:38:44Z,2,2020-02-15T06:59:39Z +3472,2005-07-05T22:56:33Z,841,37,2005-07-13T17:18:33Z,2,2020-02-15T06:59:39Z +3473,2005-07-05T22:57:34Z,2735,60,2005-07-12T23:53:34Z,1,2020-02-15T06:59:39Z +3474,2005-07-05T22:59:53Z,97,594,2005-07-08T20:32:53Z,1,2020-02-15T06:59:39Z +3475,2005-07-05T23:01:21Z,2189,8,2005-07-13T23:07:21Z,2,2020-02-15T06:59:39Z +3476,2005-07-05T23:02:37Z,3011,490,2005-07-10T22:17:37Z,2,2020-02-15T06:59:39Z +3477,2005-07-05T23:05:17Z,4289,476,2005-07-15T02:20:17Z,2,2020-02-15T06:59:39Z +3478,2005-07-05T23:05:44Z,2528,322,2005-07-07T00:14:44Z,2,2020-02-15T06:59:39Z +3479,2005-07-05T23:08:53Z,2277,298,2005-07-11T21:42:53Z,1,2020-02-15T06:59:39Z +3480,2005-07-05T23:11:43Z,1488,382,2005-07-12T02:01:43Z,2,2020-02-15T06:59:39Z +3481,2005-07-05T23:13:07Z,3575,138,2005-07-07T20:36:07Z,2,2020-02-15T06:59:39Z +3482,2005-07-05T23:13:22Z,1291,520,2005-07-12T19:02:22Z,2,2020-02-15T06:59:39Z +3483,2005-07-05T23:13:51Z,79,536,2005-07-13T18:31:51Z,1,2020-02-15T06:59:39Z +3484,2005-07-05T23:23:11Z,1934,114,2005-07-11T00:27:11Z,2,2020-02-15T06:59:39Z +3485,2005-07-05T23:25:54Z,117,111,2005-07-09T17:38:54Z,1,2020-02-15T06:59:39Z +3486,2005-07-05T23:29:55Z,4067,296,2005-07-13T19:54:55Z,1,2020-02-15T06:59:39Z +3487,2005-07-05T23:30:36Z,1575,586,2005-07-11T04:00:36Z,1,2020-02-15T06:59:39Z +3488,2005-07-05T23:32:49Z,898,349,2005-07-15T02:01:49Z,2,2020-02-15T06:59:39Z +3489,2005-07-05T23:33:40Z,2936,397,2005-07-15T02:15:40Z,2,2020-02-15T06:59:39Z +3490,2005-07-05T23:37:13Z,3041,369,2005-07-12T22:07:13Z,1,2020-02-15T06:59:39Z +3491,2005-07-05T23:41:08Z,1835,421,2005-07-13T21:53:08Z,1,2020-02-15T06:59:39Z +3492,2005-07-05T23:44:37Z,980,142,2005-07-14T03:54:37Z,1,2020-02-15T06:59:39Z +3493,2005-07-05T23:46:19Z,473,169,2005-07-15T02:31:19Z,1,2020-02-15T06:59:39Z +3494,2005-07-05T23:47:30Z,3149,348,2005-07-11T18:10:30Z,1,2020-02-15T06:59:39Z +3495,2005-07-05T23:50:04Z,2306,553,2005-07-10T01:06:04Z,1,2020-02-15T06:59:39Z +3496,2005-07-05T23:59:15Z,2430,295,2005-07-09T19:39:15Z,2,2020-02-15T06:59:39Z +3497,2005-07-06T00:00:03Z,1970,299,2005-07-09T01:27:03Z,1,2020-02-15T06:59:39Z +3498,2005-07-06T00:02:08Z,1869,444,2005-07-10T00:19:08Z,1,2020-02-15T06:59:39Z +3499,2005-07-06T00:04:20Z,1850,520,2005-07-14T21:12:20Z,2,2020-02-15T06:59:39Z +3500,2005-07-06T00:11:13Z,2447,32,2005-07-13T19:01:13Z,2,2020-02-15T06:59:39Z +3501,2005-07-06T00:11:28Z,2219,270,2005-07-10T20:32:28Z,2,2020-02-15T06:59:39Z +3502,2005-07-06T00:15:06Z,1026,126,2005-07-13T01:35:06Z,1,2020-02-15T06:59:39Z +3503,2005-07-06T00:17:24Z,2944,449,2005-07-08T03:47:24Z,1,2020-02-15T06:59:39Z +3504,2005-07-06T00:18:29Z,268,209,2005-07-10T00:24:29Z,2,2020-02-15T06:59:39Z +3505,2005-07-06T00:19:32Z,2630,331,2005-07-14T20:14:32Z,2,2020-02-15T06:59:39Z +3506,2005-07-06T00:22:29Z,19,459,2005-07-07T22:15:29Z,1,2020-02-15T06:59:39Z +3507,2005-07-06T00:23:43Z,166,480,2005-07-15T04:19:43Z,1,2020-02-15T06:59:39Z +3508,2005-07-06T00:24:25Z,2381,34,2005-07-10T05:38:25Z,2,2020-02-15T06:59:39Z +3509,2005-07-06T00:24:57Z,4394,182,2005-07-09T18:48:57Z,2,2020-02-15T06:59:39Z +3510,2005-07-06T00:27:41Z,2250,443,2005-07-14T23:20:41Z,2,2020-02-15T06:59:39Z +3511,2005-07-06T00:42:01Z,2128,494,2005-07-09T23:08:01Z,1,2020-02-15T06:59:39Z +3512,2005-07-06T00:43:06Z,371,291,2005-07-12T06:18:06Z,2,2020-02-15T06:59:39Z +3513,2005-07-06T00:45:57Z,4225,223,2005-07-11T19:04:57Z,2,2020-02-15T06:59:39Z +3514,2005-07-06T00:46:54Z,4546,536,2005-07-09T05:47:54Z,1,2020-02-15T06:59:39Z +3515,2005-07-06T00:48:55Z,3220,131,2005-07-09T00:15:55Z,1,2020-02-15T06:59:39Z +3516,2005-07-06T00:50:30Z,385,338,2005-07-09T19:12:30Z,2,2020-02-15T06:59:39Z +3517,2005-07-06T00:52:35Z,2762,314,2005-07-08T20:10:35Z,2,2020-02-15T06:59:39Z +3518,2005-07-06T00:56:03Z,2502,167,2005-07-14T02:27:03Z,1,2020-02-15T06:59:39Z +3519,2005-07-06T00:57:29Z,4314,320,2005-07-10T21:12:29Z,2,2020-02-15T06:59:39Z +3520,2005-07-06T00:58:27Z,2872,102,2005-07-14T05:56:27Z,1,2020-02-15T06:59:39Z +3521,2005-07-06T01:00:11Z,1440,262,2005-07-11T19:15:11Z,2,2020-02-15T06:59:39Z +3522,2005-07-06T01:00:21Z,4522,469,2005-07-11T01:18:21Z,1,2020-02-15T06:59:39Z +3523,2005-07-06T01:01:38Z,2171,549,2005-07-10T20:24:38Z,2,2020-02-15T06:59:39Z +3524,2005-07-06T01:01:51Z,1626,88,2005-07-11T19:52:51Z,2,2020-02-15T06:59:39Z +3525,2005-07-06T01:02:39Z,208,51,2005-07-14T02:27:39Z,1,2020-02-15T06:59:39Z +3526,2005-07-06T01:03:29Z,3871,469,2005-07-15T01:22:29Z,2,2020-02-15T06:59:39Z +3527,2005-07-06T01:11:08Z,4537,389,2005-07-08T01:21:08Z,1,2020-02-15T06:59:39Z +3528,2005-07-06T01:13:27Z,1954,201,2005-07-06T23:45:27Z,2,2020-02-15T06:59:39Z +3529,2005-07-06T01:15:26Z,4316,350,2005-07-07T04:28:26Z,1,2020-02-15T06:59:39Z +3530,2005-07-06T01:22:45Z,4542,168,2005-07-10T03:23:45Z,1,2020-02-15T06:59:39Z +3531,2005-07-06T01:24:08Z,1890,165,2005-07-11T22:00:08Z,2,2020-02-15T06:59:39Z +3532,2005-07-06T01:24:38Z,2635,274,2005-07-11T06:42:38Z,2,2020-02-15T06:59:39Z +3533,2005-07-06T01:26:44Z,2028,206,2005-07-14T21:37:44Z,1,2020-02-15T06:59:39Z +3534,2005-07-06T01:32:27Z,2055,283,2005-07-08T23:14:27Z,1,2020-02-15T06:59:39Z +3535,2005-07-06T01:32:46Z,4214,65,2005-07-11T03:15:46Z,1,2020-02-15T06:59:39Z +3536,2005-07-06T01:36:11Z,2328,339,2005-07-12T20:00:11Z,2,2020-02-15T06:59:39Z +3537,2005-07-06T01:36:53Z,4220,479,2005-07-13T07:01:53Z,2,2020-02-15T06:59:39Z +3538,2005-07-06T01:37:07Z,4361,228,2005-07-11T06:02:07Z,2,2020-02-15T06:59:39Z +3539,2005-07-06T01:39:08Z,4081,444,2005-07-07T05:38:08Z,1,2020-02-15T06:59:39Z +3540,2005-07-06T01:47:20Z,1295,97,2005-07-08T23:48:20Z,2,2020-02-15T06:59:39Z +3541,2005-07-06T01:50:11Z,1204,501,2005-07-12T03:24:11Z,1,2020-02-15T06:59:39Z +3542,2005-07-06T01:51:42Z,4391,593,2005-07-11T03:29:42Z,1,2020-02-15T06:59:39Z +3543,2005-07-06T02:01:08Z,3997,394,2005-07-07T03:14:08Z,1,2020-02-15T06:59:39Z +3544,2005-07-06T02:06:32Z,3098,115,2005-07-09T04:35:32Z,2,2020-02-15T06:59:39Z +3545,2005-07-06T02:16:17Z,3924,442,2005-07-11T00:54:17Z,1,2020-02-15T06:59:39Z +3546,2005-07-06T02:17:54Z,959,594,2005-07-07T00:19:54Z,1,2020-02-15T06:59:39Z +3547,2005-07-06T02:18:06Z,2730,239,2005-07-08T05:24:06Z,1,2020-02-15T06:59:39Z +3548,2005-07-06T02:23:39Z,4498,16,2005-07-08T07:53:39Z,2,2020-02-15T06:59:39Z +3549,2005-07-06T02:24:55Z,3921,19,2005-07-06T21:40:55Z,2,2020-02-15T06:59:39Z +3550,2005-07-06T02:29:21Z,2417,15,2005-07-13T05:26:21Z,2,2020-02-15T06:59:39Z +3551,2005-07-06T02:33:48Z,3602,111,2005-07-13T04:38:48Z,1,2020-02-15T06:59:39Z +3552,2005-07-06T02:34:09Z,1099,239,2005-07-12T05:31:09Z,1,2020-02-15T06:59:39Z +3553,2005-07-06T02:35:41Z,4510,422,2005-07-08T06:38:41Z,2,2020-02-15T06:59:39Z +3554,2005-07-06T02:37:10Z,793,538,2005-07-09T01:58:10Z,1,2020-02-15T06:59:39Z +3555,2005-07-06T02:45:35Z,869,537,2005-07-10T07:17:35Z,1,2020-02-15T06:59:39Z +3556,2005-07-06T02:46:13Z,3142,273,2005-07-06T22:08:13Z,1,2020-02-15T06:59:39Z +3557,2005-07-06T02:48:39Z,3832,292,2005-07-08T22:52:39Z,2,2020-02-15T06:59:39Z +3558,2005-07-06T02:49:06Z,1742,575,2005-07-15T01:38:06Z,2,2020-02-15T06:59:39Z +3559,2005-07-06T02:49:42Z,2211,483,2005-07-12T04:44:42Z,1,2020-02-15T06:59:39Z +3560,2005-07-06T02:51:37Z,888,592,2005-07-10T01:35:37Z,2,2020-02-15T06:59:39Z +3561,2005-07-06T02:54:33Z,213,231,2005-07-14T07:44:33Z,2,2020-02-15T06:59:39Z +3562,2005-07-06T02:54:36Z,1660,587,2005-07-11T05:48:36Z,1,2020-02-15T06:59:39Z +3563,2005-07-06T02:57:01Z,4261,210,2005-07-14T02:25:01Z,2,2020-02-15T06:59:39Z +3564,2005-07-06T03:02:13Z,1096,402,2005-07-13T01:41:13Z,2,2020-02-15T06:59:39Z +3565,2005-07-06T03:02:58Z,599,97,2005-07-13T21:31:58Z,2,2020-02-15T06:59:39Z +3566,2005-07-06T03:08:51Z,2774,392,2005-07-12T05:04:51Z,1,2020-02-15T06:59:39Z +3567,2005-07-06T03:09:36Z,27,355,2005-07-12T02:15:36Z,1,2020-02-15T06:59:39Z +3568,2005-07-06T03:11:57Z,2084,283,2005-07-15T03:14:57Z,1,2020-02-15T06:59:39Z +3569,2005-07-06T03:17:23Z,1929,496,2005-07-14T03:58:23Z,1,2020-02-15T06:59:39Z +3570,2005-07-06T03:23:43Z,1300,450,2005-07-14T07:28:43Z,2,2020-02-15T06:59:39Z +3571,2005-07-06T03:32:31Z,4166,580,2005-07-11T06:15:31Z,1,2020-02-15T06:59:39Z +3572,2005-07-06T03:33:23Z,1915,284,2005-07-08T07:54:23Z,1,2020-02-15T06:59:39Z +3573,2005-07-06T03:33:48Z,146,66,2005-07-07T22:39:48Z,1,2020-02-15T06:59:39Z +3574,2005-07-06T03:36:01Z,2799,225,2005-07-10T01:29:01Z,2,2020-02-15T06:59:39Z +3575,2005-07-06T03:36:19Z,3234,49,2005-07-08T06:21:19Z,1,2020-02-15T06:59:39Z +3576,2005-07-06T03:40:01Z,324,227,2005-07-15T07:22:01Z,1,2020-02-15T06:59:39Z +3577,2005-07-06T03:40:36Z,4390,152,2005-07-10T05:54:36Z,2,2020-02-15T06:59:39Z +3578,2005-07-06T03:47:05Z,2954,263,2005-07-08T02:26:05Z,1,2020-02-15T06:59:39Z +3579,2005-07-06T03:47:47Z,3309,485,2005-07-08T02:16:47Z,2,2020-02-15T06:59:39Z +3580,2005-07-06T03:48:44Z,3837,200,2005-07-13T01:15:44Z,2,2020-02-15T06:59:39Z +3581,2005-07-06T03:57:35Z,4520,235,2005-07-07T08:07:35Z,2,2020-02-15T06:59:39Z +3582,2005-07-06T04:10:35Z,1866,297,2005-07-11T01:29:35Z,2,2020-02-15T06:59:39Z +3583,2005-07-06T04:10:43Z,204,574,2005-07-14T22:17:43Z,2,2020-02-15T06:59:39Z +3584,2005-07-06T04:16:43Z,367,207,2005-07-13T07:08:43Z,1,2020-02-15T06:59:39Z +3585,2005-07-06T04:22:36Z,2726,266,2005-07-09T06:16:36Z,2,2020-02-15T06:59:39Z +3586,2005-07-06T04:24:42Z,616,493,2005-07-09T02:37:42Z,1,2020-02-15T06:59:39Z +3587,2005-07-06T04:27:52Z,462,110,2005-07-13T08:19:52Z,1,2020-02-15T06:59:39Z +3588,2005-07-06T04:29:13Z,3154,289,2005-07-07T23:49:13Z,1,2020-02-15T06:59:39Z +3589,2005-07-06T04:30:18Z,3740,137,2005-07-10T09:18:18Z,1,2020-02-15T06:59:39Z +3590,2005-07-06T04:35:12Z,1510,283,2005-07-10T05:14:12Z,2,2020-02-15T06:59:39Z +3591,2005-07-06T04:37:10Z,1241,53,2005-07-09T23:32:10Z,1,2020-02-15T06:59:39Z +3592,2005-07-06T04:38:50Z,1272,286,2005-07-15T06:36:50Z,2,2020-02-15T06:59:39Z +3593,2005-07-06T04:39:52Z,619,78,2005-07-11T23:20:52Z,2,2020-02-15T06:59:39Z +3594,2005-07-06T04:42:47Z,4566,522,2005-07-10T00:49:47Z,1,2020-02-15T06:59:39Z +3595,2005-07-06T04:59:49Z,1431,92,2005-07-15T06:26:49Z,2,2020-02-15T06:59:39Z +3596,2005-07-06T05:03:11Z,594,419,2005-07-07T05:30:11Z,2,2020-02-15T06:59:39Z +3597,2005-07-06T05:03:59Z,4080,35,2005-07-13T06:49:59Z,2,2020-02-15T06:59:39Z +3598,2005-07-06T05:11:04Z,1317,68,2005-07-09T02:03:04Z,2,2020-02-15T06:59:39Z +3599,2005-07-06T05:16:36Z,3262,577,2005-07-13T07:14:36Z,2,2020-02-15T06:59:39Z +3600,2005-07-06T05:19:42Z,2748,511,2005-07-11T00:34:42Z,2,2020-02-15T06:59:39Z +3601,2005-07-06T05:20:25Z,2806,205,2005-07-15T03:13:25Z,1,2020-02-15T06:59:39Z +3602,2005-07-06T05:23:10Z,2192,100,2005-07-15T03:22:10Z,2,2020-02-15T06:59:39Z +3603,2005-07-06T05:25:03Z,2442,330,2005-07-12T08:14:03Z,1,2020-02-15T06:59:39Z +3604,2005-07-06T05:25:22Z,1380,242,2005-07-07T23:52:22Z,1,2020-02-15T06:59:39Z +3605,2005-07-06T05:27:15Z,384,347,2005-07-10T00:05:15Z,2,2020-02-15T06:59:39Z +3606,2005-07-06T05:28:02Z,1737,166,2005-07-10T04:51:02Z,1,2020-02-15T06:59:39Z +3607,2005-07-06T05:30:09Z,542,335,2005-07-08T01:36:09Z,2,2020-02-15T06:59:39Z +3608,2005-07-06T05:35:39Z,3095,368,2005-07-10T07:46:39Z,2,2020-02-15T06:59:39Z +3609,2005-07-06T05:36:22Z,1064,373,2005-07-10T05:55:22Z,1,2020-02-15T06:59:39Z +3610,2005-07-06T05:36:59Z,1509,348,2005-07-13T07:07:59Z,1,2020-02-15T06:59:39Z +3611,2005-07-06T05:37:18Z,4502,86,2005-07-10T05:14:18Z,1,2020-02-15T06:59:39Z +3612,2005-07-06T05:37:26Z,2465,402,2005-07-14T01:51:26Z,1,2020-02-15T06:59:39Z +3613,2005-07-06T05:45:53Z,3776,331,2005-07-07T10:02:53Z,1,2020-02-15T06:59:39Z +3614,2005-07-06T05:46:05Z,853,502,2005-07-11T01:24:05Z,2,2020-02-15T06:59:39Z +3615,2005-07-06T05:47:47Z,711,49,2005-07-11T05:01:47Z,1,2020-02-15T06:59:39Z +3616,2005-07-06T05:52:13Z,557,571,2005-07-10T10:24:13Z,1,2020-02-15T06:59:39Z +3617,2005-07-06T05:58:06Z,1337,125,2005-07-13T02:10:06Z,1,2020-02-15T06:59:39Z +3618,2005-07-06T05:58:45Z,330,264,2005-07-15T09:13:45Z,2,2020-02-15T06:59:39Z +3619,2005-07-06T05:59:44Z,3350,526,2005-07-11T08:58:44Z,2,2020-02-15T06:59:39Z +3620,2005-07-06T06:01:50Z,1661,88,2005-07-08T05:04:50Z,1,2020-02-15T06:59:39Z +3621,2005-07-06T06:03:55Z,3132,171,2005-07-11T09:25:55Z,2,2020-02-15T06:59:39Z +3622,2005-07-06T06:05:04Z,3489,454,2005-07-12T03:14:04Z,2,2020-02-15T06:59:39Z +3623,2005-07-06T06:05:23Z,430,80,2005-07-07T05:59:23Z,1,2020-02-15T06:59:39Z +3624,2005-07-06T06:06:27Z,1778,115,2005-07-13T08:30:27Z,2,2020-02-15T06:59:39Z +3625,2005-07-06T06:12:52Z,1133,175,2005-07-12T07:37:52Z,1,2020-02-15T06:59:39Z +3626,2005-07-06T06:15:35Z,1599,337,2005-07-10T10:18:35Z,2,2020-02-15T06:59:39Z +3627,2005-07-06T06:19:25Z,1087,322,2005-07-11T05:53:25Z,1,2020-02-15T06:59:39Z +3628,2005-07-06T06:19:43Z,3509,588,2005-07-07T02:23:43Z,1,2020-02-15T06:59:39Z +3629,2005-07-06T06:23:22Z,4019,441,2005-07-08T09:32:22Z,2,2020-02-15T06:59:39Z +3630,2005-07-06T06:27:15Z,2448,102,2005-07-12T10:36:15Z,1,2020-02-15T06:59:39Z +3631,2005-07-06T06:36:53Z,4068,47,2005-07-07T10:32:53Z,1,2020-02-15T06:59:39Z +3632,2005-07-06T06:38:21Z,2583,366,2005-07-11T03:19:21Z,1,2020-02-15T06:59:39Z +3633,2005-07-06T06:43:26Z,2978,95,2005-07-10T04:54:26Z,1,2020-02-15T06:59:39Z +3634,2005-07-06T06:51:14Z,3688,245,2005-07-10T02:30:14Z,1,2020-02-15T06:59:39Z +3635,2005-07-06T06:55:36Z,421,250,2005-07-09T07:57:36Z,2,2020-02-15T06:59:39Z +3636,2005-07-06T07:03:52Z,3379,591,2005-07-08T03:14:52Z,2,2020-02-15T06:59:39Z +3637,2005-07-06T07:06:31Z,3823,380,2005-07-10T02:11:31Z,2,2020-02-15T06:59:39Z +3638,2005-07-06T07:08:17Z,190,452,2005-07-13T12:30:17Z,1,2020-02-15T06:59:39Z +3639,2005-07-06T07:09:17Z,2812,7,2005-07-15T05:12:17Z,2,2020-02-15T06:59:39Z +3640,2005-07-06T07:12:26Z,3432,271,2005-07-10T04:54:26Z,2,2020-02-15T06:59:39Z +3641,2005-07-06T07:17:09Z,3834,79,2005-07-11T07:25:09Z,1,2020-02-15T06:59:39Z +3642,2005-07-06T07:18:20Z,4204,166,2005-07-09T01:37:20Z,1,2020-02-15T06:59:39Z +3643,2005-07-06T07:20:08Z,845,176,2005-07-11T07:01:08Z,1,2020-02-15T06:59:39Z +3644,2005-07-06T07:20:11Z,4309,403,2005-07-11T10:26:11Z,2,2020-02-15T06:59:39Z +3645,2005-07-06T07:22:09Z,3390,236,2005-07-10T11:45:09Z,1,2020-02-15T06:59:39Z +3646,2005-07-06T07:28:59Z,3591,322,2005-07-11T05:19:59Z,1,2020-02-15T06:59:39Z +3647,2005-07-06T07:29:17Z,3762,145,2005-07-13T08:32:17Z,1,2020-02-15T06:59:39Z +3648,2005-07-06T07:30:41Z,2810,598,2005-07-10T06:00:41Z,2,2020-02-15T06:59:39Z +3649,2005-07-06T07:32:42Z,3564,24,2005-07-12T09:37:42Z,1,2020-02-15T06:59:39Z +3650,2005-07-06T07:34:15Z,3606,482,2005-07-08T01:50:15Z,2,2020-02-15T06:59:39Z +3651,2005-07-06T07:40:31Z,3323,170,2005-07-08T03:39:31Z,2,2020-02-15T06:59:39Z +3652,2005-07-06T07:44:30Z,1231,518,2005-07-08T04:41:30Z,1,2020-02-15T06:59:39Z +3653,2005-07-06T07:45:13Z,2513,148,2005-07-10T11:51:13Z,2,2020-02-15T06:59:39Z +3654,2005-07-06T07:45:31Z,1621,528,2005-07-12T09:59:31Z,2,2020-02-15T06:59:39Z +3655,2005-07-06T07:52:54Z,1540,493,2005-07-15T10:49:54Z,2,2020-02-15T06:59:39Z +3656,2005-07-06T07:55:22Z,4544,314,2005-07-13T10:36:22Z,2,2020-02-15T06:59:39Z +3657,2005-07-06T07:55:30Z,4134,113,2005-07-11T07:18:30Z,1,2020-02-15T06:59:39Z +3658,2005-07-06T08:01:08Z,3453,253,2005-07-15T06:36:08Z,1,2020-02-15T06:59:39Z +3659,2005-07-06T08:03:14Z,2271,330,2005-07-12T09:50:14Z,1,2020-02-15T06:59:39Z +3660,2005-07-06T08:07:29Z,1129,507,2005-07-14T08:46:29Z,1,2020-02-15T06:59:39Z +3661,2005-07-06T08:10:02Z,2600,442,2005-07-10T10:17:02Z,1,2020-02-15T06:59:39Z +3662,2005-07-06T08:11:48Z,3827,334,2005-07-09T12:25:48Z,2,2020-02-15T06:59:39Z +3663,2005-07-06T08:15:47Z,2646,566,2005-07-07T08:57:47Z,1,2020-02-15T06:59:39Z +3664,2005-07-06T08:15:57Z,3366,528,2005-07-08T06:11:57Z,1,2020-02-15T06:59:39Z +3665,2005-07-06T08:23:08Z,922,102,2005-07-13T13:38:08Z,2,2020-02-15T06:59:39Z +3666,2005-07-06T08:27:43Z,4212,347,2005-07-09T07:37:43Z,2,2020-02-15T06:59:39Z +3667,2005-07-06T08:36:34Z,447,373,2005-07-15T04:25:34Z,2,2020-02-15T06:59:39Z +3668,2005-07-06T08:36:48Z,269,514,2005-07-10T11:31:48Z,1,2020-02-15T06:59:39Z +3669,2005-07-06T08:38:29Z,1299,530,2005-07-10T05:28:29Z,1,2020-02-15T06:59:39Z +3670,2005-07-06T08:56:43Z,4271,268,2005-07-11T09:11:43Z,1,2020-02-15T06:59:39Z +3671,2005-07-06T09:01:29Z,2821,179,2005-07-15T08:08:29Z,1,2020-02-15T06:59:39Z +3672,2005-07-06T09:01:56Z,3883,283,2005-07-11T14:18:56Z,1,2020-02-15T06:59:39Z +3673,2005-07-06T09:02:09Z,1837,88,2005-07-15T06:45:09Z,2,2020-02-15T06:59:39Z +3674,2005-07-06T09:03:13Z,3686,559,2005-07-13T08:43:13Z,1,2020-02-15T06:59:39Z +3675,2005-07-06T09:09:19Z,3662,282,2005-07-12T08:51:19Z,1,2020-02-15T06:59:39Z +3676,2005-07-06T09:10:37Z,1967,137,2005-07-14T08:24:37Z,1,2020-02-15T06:59:39Z +3677,2005-07-06T09:11:58Z,600,5,2005-07-08T10:50:58Z,2,2020-02-15T06:59:39Z +3678,2005-07-06T09:15:15Z,3861,364,2005-07-10T05:01:15Z,1,2020-02-15T06:59:39Z +3679,2005-07-06T09:15:57Z,2186,547,2005-07-08T03:20:57Z,1,2020-02-15T06:59:39Z +3680,2005-07-06T09:16:10Z,2427,82,2005-07-08T07:52:10Z,2,2020-02-15T06:59:39Z +3681,2005-07-06T09:19:30Z,3325,294,2005-07-11T09:40:30Z,1,2020-02-15T06:59:39Z +3682,2005-07-06T09:22:48Z,2597,98,2005-07-14T11:17:48Z,2,2020-02-15T06:59:39Z +3683,2005-07-06T09:25:56Z,3020,43,2005-07-14T12:10:56Z,1,2020-02-15T06:59:39Z +3684,2005-07-06T09:29:22Z,3261,395,2005-07-12T08:19:22Z,1,2020-02-15T06:59:39Z +3685,2005-07-06T09:30:45Z,2015,58,2005-07-11T15:16:45Z,2,2020-02-15T06:59:39Z +3686,2005-07-06T09:37:50Z,376,548,2005-07-09T10:15:50Z,2,2020-02-15T06:59:39Z +3687,2005-07-06T09:38:33Z,2040,207,2005-07-14T07:50:33Z,1,2020-02-15T06:59:39Z +3688,2005-07-06T09:41:53Z,1102,380,2005-07-14T10:30:53Z,2,2020-02-15T06:59:39Z +3689,2005-07-06T09:43:01Z,3168,129,2005-07-11T09:57:01Z,1,2020-02-15T06:59:39Z +3690,2005-07-06T09:46:03Z,4405,435,2005-07-07T12:12:03Z,1,2020-02-15T06:59:39Z +3691,2005-07-06T09:46:12Z,1937,478,2005-07-07T14:08:12Z,1,2020-02-15T06:59:39Z +3692,2005-07-06T09:54:12Z,1237,286,2005-07-11T09:42:12Z,2,2020-02-15T06:59:39Z +3693,2005-07-06T09:56:09Z,2989,545,2005-07-15T06:50:09Z,2,2020-02-15T06:59:39Z +3694,2005-07-06T10:01:23Z,3848,419,2005-07-08T11:44:23Z,2,2020-02-15T06:59:39Z +3695,2005-07-06T10:02:08Z,2823,441,2005-07-09T15:43:08Z,1,2020-02-15T06:59:39Z +3696,2005-07-06T10:04:55Z,3244,497,2005-07-11T15:58:55Z,2,2020-02-15T06:59:39Z +3697,2005-07-06T10:07:22Z,1223,182,2005-07-13T14:04:22Z,2,2020-02-15T06:59:39Z +3698,2005-07-06T10:09:20Z,1263,461,2005-07-08T15:49:20Z,1,2020-02-15T06:59:39Z +3699,2005-07-06T10:11:25Z,418,262,2005-07-14T05:18:25Z,1,2020-02-15T06:59:39Z +3700,2005-07-06T10:12:19Z,343,72,2005-07-07T14:21:19Z,2,2020-02-15T06:59:39Z +3701,2005-07-06T10:12:45Z,3679,31,2005-07-09T08:52:45Z,1,2020-02-15T06:59:39Z +3702,2005-07-06T10:13:56Z,2204,428,2005-07-10T08:12:56Z,1,2020-02-15T06:59:39Z +3703,2005-07-06T10:15:26Z,4276,421,2005-07-13T13:00:26Z,1,2020-02-15T06:59:39Z +3704,2005-07-06T10:16:45Z,2687,323,2005-07-13T12:44:45Z,2,2020-02-15T06:59:39Z +3705,2005-07-06T10:17:59Z,65,223,2005-07-10T15:31:59Z,1,2020-02-15T06:59:39Z +3706,2005-07-06T10:18:01Z,681,132,2005-07-09T09:07:01Z,2,2020-02-15T06:59:39Z +3707,2005-07-06T10:21:49Z,1080,14,2005-07-12T05:14:49Z,2,2020-02-15T06:59:39Z +3708,2005-07-06T10:23:27Z,2105,201,2005-07-14T09:26:27Z,1,2020-02-15T06:59:39Z +3709,2005-07-06T10:26:56Z,4033,187,2005-07-15T13:51:56Z,2,2020-02-15T06:59:39Z +3710,2005-07-06T10:28:53Z,2596,228,2005-07-15T06:17:53Z,2,2020-02-15T06:59:39Z +3711,2005-07-06T10:46:15Z,1914,75,2005-07-07T09:25:15Z,2,2020-02-15T06:59:39Z +3712,2005-07-06T10:47:35Z,3741,504,2005-07-15T09:39:35Z,1,2020-02-15T06:59:39Z +3713,2005-07-06T10:49:30Z,1823,504,2005-07-13T10:44:30Z,1,2020-02-15T06:59:39Z +3714,2005-07-06T10:51:28Z,1985,276,2005-07-09T13:57:28Z,2,2020-02-15T06:59:39Z +3715,2005-07-06T10:51:48Z,4456,228,2005-07-11T06:08:48Z,1,2020-02-15T06:59:39Z +3716,2005-07-06T10:52:32Z,3271,92,2005-07-14T08:45:32Z,2,2020-02-15T06:59:39Z +3717,2005-07-06T10:53:34Z,1677,173,2005-07-07T13:43:34Z,2,2020-02-15T06:59:39Z +3718,2005-07-06T10:57:56Z,2624,56,2005-07-12T12:54:56Z,1,2020-02-15T06:59:39Z +3719,2005-07-06T11:05:55Z,3573,376,2005-07-11T08:10:55Z,2,2020-02-15T06:59:39Z +3720,2005-07-06T11:06:57Z,2958,96,2005-07-09T14:16:57Z,1,2020-02-15T06:59:39Z +3721,2005-07-06T11:10:09Z,2654,226,2005-07-11T07:45:09Z,2,2020-02-15T06:59:39Z +3722,2005-07-06T11:10:27Z,604,83,2005-07-13T12:56:27Z,2,2020-02-15T06:59:39Z +3723,2005-07-06T11:12:02Z,4554,501,2005-07-14T16:45:02Z,2,2020-02-15T06:59:39Z +3724,2005-07-06T11:12:48Z,3622,468,2005-07-14T14:41:48Z,1,2020-02-15T06:59:39Z +3725,2005-07-06T11:15:04Z,2789,126,2005-07-09T06:39:04Z,1,2020-02-15T06:59:39Z +3726,2005-07-06T11:15:49Z,742,363,2005-07-11T05:54:49Z,2,2020-02-15T06:59:39Z +3727,2005-07-06T11:16:43Z,2886,57,2005-07-07T15:39:43Z,1,2020-02-15T06:59:39Z +3728,2005-07-06T11:29:00Z,1798,298,2005-07-11T06:28:00Z,1,2020-02-15T06:59:39Z +3729,2005-07-06T11:30:29Z,3156,90,2005-07-12T07:18:29Z,1,2020-02-15T06:59:39Z +3730,2005-07-06T11:31:24Z,1665,355,2005-07-15T06:53:24Z,1,2020-02-15T06:59:39Z +3731,2005-07-06T11:33:36Z,4133,558,2005-07-15T12:23:36Z,2,2020-02-15T06:59:39Z +3732,2005-07-06T11:33:37Z,106,318,2005-07-08T08:31:37Z,1,2020-02-15T06:59:39Z +3733,2005-07-06T11:33:55Z,3242,586,2005-07-09T10:08:55Z,2,2020-02-15T06:59:39Z +3734,2005-07-06T11:40:27Z,4569,37,2005-07-14T12:08:27Z,1,2020-02-15T06:59:39Z +3735,2005-07-06T11:42:04Z,2262,534,2005-07-12T14:33:04Z,2,2020-02-15T06:59:39Z +3736,2005-07-06T11:43:44Z,1515,23,2005-07-13T07:55:44Z,2,2020-02-15T06:59:39Z +3737,2005-07-06T11:45:53Z,123,403,2005-07-13T15:27:53Z,1,2020-02-15T06:59:39Z +3738,2005-07-06T11:50:57Z,578,546,2005-07-09T08:07:57Z,1,2020-02-15T06:59:39Z +3739,2005-07-06T11:54:18Z,4333,157,2005-07-09T10:48:18Z,1,2020-02-15T06:59:39Z +3740,2005-07-06T11:55:35Z,1829,277,2005-07-14T09:44:35Z,2,2020-02-15T06:59:39Z +3741,2005-07-06T12:00:18Z,1449,584,2005-07-12T09:02:18Z,2,2020-02-15T06:59:39Z +3742,2005-07-06T12:01:38Z,2873,96,2005-07-15T10:46:38Z,1,2020-02-15T06:59:39Z +3743,2005-07-06T12:03:54Z,1012,456,2005-07-13T10:56:54Z,2,2020-02-15T06:59:39Z +3744,2005-07-06T12:10:02Z,3343,510,2005-07-08T11:49:02Z,2,2020-02-15T06:59:39Z +3745,2005-07-06T12:10:32Z,1518,171,2005-07-12T15:20:32Z,1,2020-02-15T06:59:39Z +3746,2005-07-06T12:10:51Z,3387,424,2005-07-07T11:36:51Z,2,2020-02-15T06:59:39Z +3747,2005-07-06T12:11:14Z,1093,437,2005-07-09T17:14:14Z,2,2020-02-15T06:59:39Z +3748,2005-07-06T12:11:22Z,2920,79,2005-07-12T07:22:22Z,1,2020-02-15T06:59:39Z +3749,2005-07-06T12:18:03Z,1531,170,2005-07-11T07:25:03Z,1,2020-02-15T06:59:39Z +3750,2005-07-06T12:19:28Z,2422,103,2005-07-14T13:16:28Z,2,2020-02-15T06:59:39Z +3751,2005-07-06T12:23:41Z,3652,128,2005-07-10T06:58:41Z,1,2020-02-15T06:59:39Z +3752,2005-07-06T12:30:12Z,4561,235,2005-07-13T12:13:12Z,1,2020-02-15T06:59:39Z +3753,2005-07-06T12:34:06Z,774,358,2005-07-07T14:19:06Z,2,2020-02-15T06:59:39Z +3754,2005-07-06T12:35:44Z,4042,83,2005-07-08T16:28:44Z,1,2020-02-15T06:59:39Z +3755,2005-07-06T12:37:16Z,3147,402,2005-07-13T07:22:16Z,1,2020-02-15T06:59:39Z +3756,2005-07-06T12:40:38Z,30,320,2005-07-11T09:29:38Z,1,2020-02-15T06:59:39Z +3757,2005-07-06T12:42:26Z,2816,66,2005-07-11T10:30:26Z,1,2020-02-15T06:59:39Z +3758,2005-07-06T12:43:11Z,2498,48,2005-07-14T12:52:11Z,2,2020-02-15T06:59:39Z +3759,2005-07-06T12:46:38Z,4165,378,2005-07-10T11:31:38Z,1,2020-02-15T06:59:39Z +3760,2005-07-06T12:49:28Z,1306,330,2005-07-09T16:29:28Z,1,2020-02-15T06:59:39Z +3761,2005-07-06T12:52:44Z,4304,464,2005-07-08T17:22:44Z,1,2020-02-15T06:59:39Z +3762,2005-07-06T12:52:49Z,1941,413,2005-07-12T11:41:49Z,1,2020-02-15T06:59:39Z +3763,2005-07-06T12:56:31Z,1573,189,2005-07-09T14:49:31Z,1,2020-02-15T06:59:39Z +3764,2005-07-06T13:01:03Z,3115,470,2005-07-13T15:26:03Z,1,2020-02-15T06:59:39Z +3765,2005-07-06T13:01:47Z,1805,547,2005-07-09T07:10:47Z,1,2020-02-15T06:59:39Z +3766,2005-07-06T13:04:35Z,4504,312,2005-07-07T15:46:35Z,1,2020-02-15T06:59:39Z +3767,2005-07-06T13:07:27Z,923,582,2005-07-08T18:48:27Z,1,2020-02-15T06:59:39Z +3768,2005-07-06T13:07:30Z,3995,573,2005-07-09T16:26:30Z,2,2020-02-15T06:59:39Z +3769,2005-07-06T13:11:33Z,467,567,2005-07-14T17:54:33Z,2,2020-02-15T06:59:39Z +3770,2005-07-06T13:14:28Z,3836,198,2005-07-13T09:23:28Z,1,2020-02-15T06:59:39Z +3771,2005-07-06T13:19:34Z,1373,56,2005-07-10T10:27:34Z,2,2020-02-15T06:59:39Z +3772,2005-07-06T13:22:53Z,434,338,2005-07-10T11:54:53Z,2,2020-02-15T06:59:39Z +3773,2005-07-06T13:23:34Z,2034,263,2005-07-08T17:23:34Z,2,2020-02-15T06:59:39Z +3774,2005-07-06T13:25:07Z,4044,439,2005-07-15T12:56:07Z,2,2020-02-15T06:59:39Z +3775,2005-07-06T13:27:33Z,3696,300,2005-07-09T10:27:33Z,1,2020-02-15T06:59:39Z +3776,2005-07-06T13:31:37Z,4387,278,2005-07-10T10:53:37Z,2,2020-02-15T06:59:39Z +3777,2005-07-06T13:36:48Z,2470,548,2005-07-11T14:26:48Z,1,2020-02-15T06:59:39Z +3778,2005-07-06T13:44:48Z,2181,122,2005-07-13T09:31:48Z,2,2020-02-15T06:59:39Z +3779,2005-07-06T13:46:36Z,634,583,2005-07-10T15:49:36Z,2,2020-02-15T06:59:39Z +3780,2005-07-06T13:52:02Z,1209,99,2005-07-15T08:41:02Z,2,2020-02-15T06:59:39Z +3781,2005-07-06T13:53:41Z,3894,23,2005-07-15T10:03:41Z,1,2020-02-15T06:59:39Z +3782,2005-07-06T13:57:03Z,3365,515,2005-07-09T11:13:03Z,2,2020-02-15T06:59:39Z +3783,2005-07-06T13:57:31Z,2345,386,2005-07-14T10:44:31Z,2,2020-02-15T06:59:39Z +3784,2005-07-06T13:57:56Z,2287,165,2005-07-14T17:24:56Z,2,2020-02-15T06:59:39Z +3785,2005-07-06T14:00:13Z,3279,577,2005-07-14T10:13:13Z,2,2020-02-15T06:59:39Z +3786,2005-07-06T14:00:41Z,4508,152,2005-07-13T16:49:41Z,1,2020-02-15T06:59:39Z +3787,2005-07-06T14:02:01Z,288,474,2005-07-09T19:09:01Z,2,2020-02-15T06:59:39Z +3788,2005-07-06T14:02:02Z,1363,379,2005-07-10T18:24:02Z,1,2020-02-15T06:59:39Z +3789,2005-07-06T14:02:26Z,3560,595,2005-07-14T18:13:26Z,1,2020-02-15T06:59:39Z +3790,2005-07-06T14:13:45Z,1711,10,2005-07-14T13:35:45Z,1,2020-02-15T06:59:39Z +3791,2005-07-06T14:24:56Z,3426,452,2005-07-14T11:06:56Z,2,2020-02-15T06:59:39Z +3792,2005-07-06T14:26:38Z,2651,312,2005-07-11T16:34:38Z,1,2020-02-15T06:59:39Z +3793,2005-07-06T14:32:44Z,4558,553,2005-07-08T13:55:44Z,1,2020-02-15T06:59:39Z +3794,2005-07-06T14:35:26Z,584,499,2005-07-11T14:40:26Z,2,2020-02-15T06:59:39Z +3795,2005-07-06T14:37:41Z,240,153,2005-07-11T20:27:41Z,2,2020-02-15T06:59:39Z +3796,2005-07-06T14:45:22Z,1649,228,2005-07-07T11:01:22Z,2,2020-02-15T06:59:39Z +3797,2005-07-06T14:54:52Z,1047,374,2005-07-10T09:50:52Z,2,2020-02-15T06:59:39Z +3798,2005-07-06T14:57:53Z,1942,479,2005-07-07T10:48:53Z,2,2020-02-15T06:59:39Z +3799,2005-07-06T15:00:14Z,4532,251,2005-07-10T15:39:14Z,1,2020-02-15T06:59:39Z +3800,2005-07-06T15:01:27Z,4004,100,2005-07-15T11:12:27Z,2,2020-02-15T06:59:39Z +3801,2005-07-06T15:05:50Z,4209,68,2005-07-12T12:56:50Z,1,2020-02-15T06:59:39Z +3802,2005-07-06T15:06:09Z,1017,91,2005-07-08T09:33:09Z,2,2020-02-15T06:59:39Z +3803,2005-07-06T15:06:55Z,2062,494,2005-07-08T18:53:55Z,1,2020-02-15T06:59:39Z +3804,2005-07-06T15:08:08Z,537,126,2005-07-15T14:01:08Z,2,2020-02-15T06:59:39Z +3805,2005-07-06T15:08:42Z,1716,418,2005-07-07T14:34:42Z,1,2020-02-15T06:59:39Z +3806,2005-07-06T15:09:41Z,3555,154,2005-07-14T09:14:41Z,2,2020-02-15T06:59:39Z +3807,2005-07-06T15:11:44Z,39,425,2005-07-10T09:20:44Z,1,2020-02-15T06:59:39Z +3808,2005-07-06T15:15:35Z,4339,314,2005-07-07T16:10:35Z,1,2020-02-15T06:59:39Z +3809,2005-07-06T15:16:37Z,2932,358,2005-07-09T14:45:37Z,1,2020-02-15T06:59:39Z +3810,2005-07-06T15:18:44Z,342,296,2005-07-12T09:52:44Z,2,2020-02-15T06:59:39Z +3811,2005-07-06T15:20:37Z,695,208,2005-07-08T16:26:37Z,2,2020-02-15T06:59:39Z +3812,2005-07-06T15:22:19Z,4490,381,2005-07-08T13:04:19Z,1,2020-02-15T06:59:39Z +3813,2005-07-06T15:23:34Z,4100,189,2005-07-08T19:03:34Z,1,2020-02-15T06:59:39Z +3814,2005-07-06T15:23:56Z,3826,306,2005-07-13T20:51:56Z,2,2020-02-15T06:59:39Z +3815,2005-07-06T15:26:36Z,4038,472,2005-07-11T17:07:36Z,2,2020-02-15T06:59:39Z +3816,2005-07-06T15:27:04Z,2941,489,2005-07-14T13:12:04Z,1,2020-02-15T06:59:39Z +3817,2005-07-06T15:31:45Z,2933,267,2005-07-11T17:11:45Z,1,2020-02-15T06:59:39Z +3818,2005-07-06T15:33:31Z,653,97,2005-07-11T16:35:31Z,1,2020-02-15T06:59:39Z +3819,2005-07-06T15:35:06Z,1814,74,2005-07-14T19:08:06Z,1,2020-02-15T06:59:39Z +3820,2005-07-06T15:35:26Z,4192,460,2005-07-11T12:22:26Z,2,2020-02-15T06:59:39Z +3821,2005-07-06T15:36:20Z,4385,354,2005-07-11T20:04:20Z,1,2020-02-15T06:59:39Z +3822,2005-07-06T15:41:15Z,1314,241,2005-07-07T16:41:15Z,1,2020-02-15T06:59:39Z +3823,2005-07-06T15:41:27Z,124,265,2005-07-09T09:48:27Z,1,2020-02-15T06:59:39Z +3824,2005-07-06T15:43:15Z,3107,107,2005-07-13T16:05:15Z,2,2020-02-15T06:59:39Z +3825,2005-07-06T15:50:03Z,630,132,2005-07-09T19:20:03Z,1,2020-02-15T06:59:39Z +3826,2005-07-06T15:51:58Z,73,451,2005-07-13T12:35:58Z,1,2020-02-15T06:59:39Z +3827,2005-07-06T15:52:03Z,2072,41,2005-07-08T21:43:03Z,2,2020-02-15T06:59:39Z +3828,2005-07-06T15:57:30Z,4493,498,2005-07-10T12:17:30Z,2,2020-02-15T06:59:39Z +3829,2005-07-06T15:59:40Z,4126,356,2005-07-11T10:29:40Z,1,2020-02-15T06:59:39Z +3830,2005-07-06T16:01:16Z,553,310,2005-07-15T19:35:16Z,2,2020-02-15T06:59:39Z +3831,2005-07-06T16:06:35Z,1338,206,2005-07-08T15:14:35Z,2,2020-02-15T06:59:39Z +3832,2005-07-06T16:12:23Z,4499,233,2005-07-12T21:29:23Z,1,2020-02-15T06:59:39Z +3833,2005-07-06T16:18:28Z,3232,416,2005-07-14T20:09:28Z,2,2020-02-15T06:59:39Z +3834,2005-07-06T16:19:56Z,3001,366,2005-07-13T11:38:56Z,2,2020-02-15T06:59:39Z +3835,2005-07-06T16:22:45Z,935,486,2005-07-11T17:04:45Z,2,2020-02-15T06:59:39Z +3836,2005-07-06T16:26:04Z,1148,351,2005-07-10T15:08:04Z,1,2020-02-15T06:59:39Z +3837,2005-07-06T16:27:43Z,3166,309,2005-07-07T18:02:43Z,1,2020-02-15T06:59:39Z +3838,2005-07-06T16:29:43Z,3404,565,2005-07-11T20:50:43Z,1,2020-02-15T06:59:39Z +3839,2005-07-06T16:30:30Z,3230,231,2005-07-11T19:00:30Z,1,2020-02-15T06:59:39Z +3840,2005-07-06T16:30:59Z,4384,468,2005-07-15T22:08:59Z,2,2020-02-15T06:59:39Z +3841,2005-07-06T16:34:00Z,4228,470,2005-07-08T15:12:00Z,2,2020-02-15T06:59:39Z +3842,2005-07-06T16:34:32Z,3119,583,2005-07-08T11:55:32Z,2,2020-02-15T06:59:39Z +3843,2005-07-06T16:35:40Z,3844,62,2005-07-07T18:29:40Z,1,2020-02-15T06:59:39Z +3844,2005-07-06T16:37:58Z,2814,179,2005-07-09T19:54:58Z,2,2020-02-15T06:59:39Z +3845,2005-07-06T16:38:14Z,4495,28,2005-07-09T14:59:14Z,2,2020-02-15T06:59:39Z +3846,2005-07-06T16:43:10Z,2829,88,2005-07-14T11:09:10Z,2,2020-02-15T06:59:39Z +3847,2005-07-06T16:44:41Z,782,206,2005-07-07T21:54:41Z,2,2020-02-15T06:59:39Z +3848,2005-07-06T16:47:32Z,2906,188,2005-07-14T15:00:32Z,1,2020-02-15T06:59:39Z +3849,2005-07-06T16:49:43Z,3660,60,2005-07-12T17:20:43Z,1,2020-02-15T06:59:39Z +3850,2005-07-06T16:51:21Z,1700,103,2005-07-12T13:58:21Z,1,2020-02-15T06:59:39Z +3851,2005-07-06T16:54:12Z,493,436,2005-07-11T22:49:12Z,1,2020-02-15T06:59:39Z +3852,2005-07-06T16:57:49Z,3329,511,2005-07-11T17:11:49Z,1,2020-02-15T06:59:39Z +3853,2005-07-06T16:59:20Z,1411,537,2005-07-07T12:30:20Z,2,2020-02-15T06:59:39Z +3854,2005-07-06T17:02:33Z,2054,243,2005-07-12T17:32:33Z,2,2020-02-15T06:59:39Z +3855,2005-07-06T17:03:48Z,2931,46,2005-07-12T14:32:48Z,1,2020-02-15T06:59:39Z +3856,2005-07-06T17:04:46Z,3083,498,2005-07-14T19:23:46Z,2,2020-02-15T06:59:39Z +3857,2005-07-06T17:07:54Z,1135,236,2005-07-07T13:28:54Z,1,2020-02-15T06:59:39Z +3858,2005-07-06T17:17:57Z,829,377,2005-07-10T23:10:57Z,2,2020-02-15T06:59:39Z +3859,2005-07-06T17:18:15Z,2548,553,2005-07-09T16:48:15Z,1,2020-02-15T06:59:39Z +3860,2005-07-06T17:20:24Z,144,514,2005-07-09T22:33:24Z,1,2020-02-15T06:59:39Z +3861,2005-07-06T17:24:49Z,4506,202,2005-07-15T22:19:49Z,2,2020-02-15T06:59:39Z +3862,2005-07-06T17:35:22Z,471,181,2005-07-15T17:13:22Z,1,2020-02-15T06:59:39Z +3863,2005-07-06T17:40:18Z,363,481,2005-07-07T17:58:18Z,2,2020-02-15T06:59:39Z +3864,2005-07-06T17:41:42Z,2811,68,2005-07-08T14:17:42Z,1,2020-02-15T06:59:39Z +3865,2005-07-06T17:46:57Z,3579,357,2005-07-12T12:20:57Z,1,2020-02-15T06:59:39Z +3866,2005-07-06T17:47:20Z,194,409,2005-07-15T18:12:20Z,1,2020-02-15T06:59:39Z +3867,2005-07-06T17:52:19Z,3620,580,2005-07-13T21:48:19Z,1,2020-02-15T06:59:39Z +3868,2005-07-06T17:54:13Z,1606,416,2005-07-10T14:51:13Z,1,2020-02-15T06:59:39Z +3869,2005-07-06T17:56:46Z,2540,183,2005-07-10T20:44:46Z,1,2020-02-15T06:59:39Z +3870,2005-07-06T17:57:54Z,3357,12,2005-07-13T12:30:54Z,1,2020-02-15T06:59:39Z +3871,2005-07-06T17:58:51Z,3114,331,2005-07-15T22:18:51Z,2,2020-02-15T06:59:39Z +3872,2005-07-06T18:00:19Z,1785,513,2005-07-07T17:26:19Z,1,2020-02-15T06:59:39Z +3873,2005-07-06T18:03:16Z,4148,394,2005-07-15T23:58:16Z,2,2020-02-15T06:59:39Z +3874,2005-07-06T18:06:12Z,1870,137,2005-07-12T16:55:12Z,1,2020-02-15T06:59:39Z +3875,2005-07-06T18:15:39Z,712,108,2005-07-11T17:34:39Z,1,2020-02-15T06:59:39Z +3876,2005-07-06T18:21:13Z,4039,295,2005-07-14T16:57:13Z,2,2020-02-15T06:59:39Z +3877,2005-07-06T18:22:10Z,2796,576,2005-07-07T23:38:10Z,1,2020-02-15T06:59:39Z +3878,2005-07-06T18:27:09Z,4022,385,2005-07-15T20:13:09Z,2,2020-02-15T06:59:39Z +3879,2005-07-06T18:31:20Z,1376,81,2005-07-09T19:03:20Z,2,2020-02-15T06:59:39Z +3880,2005-07-06T18:32:49Z,42,507,2005-07-07T20:46:49Z,2,2020-02-15T06:59:39Z +3881,2005-07-06T18:35:37Z,143,456,2005-07-10T00:06:37Z,2,2020-02-15T06:59:39Z +3882,2005-07-06T18:38:21Z,788,254,2005-07-09T14:55:21Z,1,2020-02-15T06:59:39Z +3883,2005-07-06T18:39:38Z,3238,69,2005-07-14T15:59:38Z,2,2020-02-15T06:59:39Z +3884,2005-07-06T18:41:33Z,1806,210,2005-07-07T22:06:33Z,1,2020-02-15T06:59:39Z +3885,2005-07-06T18:43:43Z,1820,282,2005-07-12T19:48:43Z,2,2020-02-15T06:59:39Z +3886,2005-07-06T18:44:24Z,2368,326,2005-07-08T15:11:24Z,1,2020-02-15T06:59:39Z +3887,2005-07-06T18:46:34Z,1695,530,2005-07-07T13:15:34Z,1,2020-02-15T06:59:39Z +3888,2005-07-06T18:54:20Z,1945,412,2005-07-12T17:13:20Z,2,2020-02-15T06:59:39Z +3889,2005-07-06T18:56:25Z,2005,576,2005-07-08T21:22:25Z,2,2020-02-15T06:59:39Z +3890,2005-07-06T18:58:15Z,2570,553,2005-07-10T18:51:15Z,1,2020-02-15T06:59:39Z +3891,2005-07-06T18:58:25Z,3216,553,2005-07-09T23:20:25Z,2,2020-02-15T06:59:39Z +3892,2005-07-06T18:58:58Z,778,549,2005-07-10T19:29:58Z,1,2020-02-15T06:59:39Z +3893,2005-07-06T18:59:31Z,1281,350,2005-07-12T19:21:31Z,1,2020-02-15T06:59:39Z +3894,2005-07-06T19:01:39Z,2087,149,2005-07-12T21:35:39Z,2,2020-02-15T06:59:39Z +3895,2005-07-06T19:04:24Z,145,584,2005-07-15T17:48:24Z,2,2020-02-15T06:59:39Z +3896,2005-07-06T19:09:15Z,1755,309,2005-07-16T00:52:15Z,2,2020-02-15T06:59:39Z +3897,2005-07-06T19:11:43Z,14,277,2005-07-11T21:50:43Z,2,2020-02-15T06:59:39Z +3898,2005-07-06T19:12:37Z,3858,53,2005-07-11T15:50:37Z,1,2020-02-15T06:59:39Z +3899,2005-07-06T19:12:40Z,4020,485,2005-07-13T23:41:40Z,1,2020-02-15T06:59:39Z +3900,2005-07-06T19:21:28Z,1497,129,2005-07-15T21:06:28Z,2,2020-02-15T06:59:39Z +3901,2005-07-06T19:24:55Z,3367,321,2005-07-14T20:30:55Z,2,2020-02-15T06:59:39Z +3902,2005-07-06T19:25:18Z,2868,192,2005-07-10T17:42:18Z,2,2020-02-15T06:59:39Z +3903,2005-07-06T19:27:32Z,3614,369,2005-07-08T23:27:32Z,1,2020-02-15T06:59:39Z +3904,2005-07-06T19:30:57Z,3600,485,2005-07-11T18:47:57Z,2,2020-02-15T06:59:39Z +3905,2005-07-06T19:33:34Z,3817,526,2005-07-15T17:55:34Z,1,2020-02-15T06:59:39Z +3906,2005-07-06T19:35:55Z,1383,293,2005-07-15T22:35:55Z,1,2020-02-15T06:59:39Z +3907,2005-07-06T19:39:14Z,2507,452,2005-07-11T17:45:14Z,1,2020-02-15T06:59:39Z +3908,2005-07-06T19:47:26Z,3980,116,2005-07-13T19:59:26Z,1,2020-02-15T06:59:39Z +3909,2005-07-06T19:54:41Z,3423,396,2005-07-15T18:11:41Z,2,2020-02-15T06:59:39Z +3910,2005-07-06T20:05:18Z,2085,248,2005-07-10T18:51:18Z,1,2020-02-15T06:59:39Z +3911,2005-07-06T20:09:11Z,4548,34,2005-07-08T23:53:11Z,1,2020-02-15T06:59:39Z +3912,2005-07-06T20:10:03Z,2449,154,2005-07-08T18:39:03Z,2,2020-02-15T06:59:39Z +3913,2005-07-06T20:11:00Z,752,494,2005-07-08T14:42:00Z,1,2020-02-15T06:59:39Z +3914,2005-07-06T20:11:10Z,4092,159,2005-07-14T14:42:10Z,2,2020-02-15T06:59:39Z +3915,2005-07-06T20:16:46Z,125,163,2005-07-10T17:24:46Z,1,2020-02-15T06:59:39Z +3916,2005-07-06T20:18:50Z,3198,46,2005-07-12T21:56:50Z,1,2020-02-15T06:59:39Z +3917,2005-07-06T20:19:29Z,2747,471,2005-07-11T00:49:29Z,1,2020-02-15T06:59:39Z +3918,2005-07-06T20:26:15Z,1111,435,2005-07-15T20:32:15Z,1,2020-02-15T06:59:39Z +3919,2005-07-06T20:26:21Z,2695,147,2005-07-15T00:13:21Z,1,2020-02-15T06:59:39Z +3920,2005-07-06T20:26:40Z,1551,321,2005-07-15T15:00:40Z,2,2020-02-15T06:59:39Z +3921,2005-07-06T20:29:48Z,949,531,2005-07-14T01:44:48Z,1,2020-02-15T06:59:39Z +3922,2005-07-06T20:32:27Z,2878,470,2005-07-14T19:00:27Z,1,2020-02-15T06:59:39Z +3923,2005-07-06T20:34:10Z,2039,63,2005-07-13T19:20:10Z,1,2020-02-15T06:59:39Z +3924,2005-07-06T20:38:02Z,187,114,2005-07-11T23:35:02Z,2,2020-02-15T06:59:39Z +3925,2005-07-06T20:41:44Z,2653,428,2005-07-15T21:05:44Z,2,2020-02-15T06:59:39Z +3926,2005-07-06T20:42:35Z,4241,500,2005-07-09T16:30:35Z,2,2020-02-15T06:59:39Z +3927,2005-07-06T20:48:14Z,2194,404,2005-07-10T15:37:14Z,1,2020-02-15T06:59:39Z +3928,2005-07-06T20:52:09Z,1960,411,2005-07-08T18:51:09Z,1,2020-02-15T06:59:39Z +3929,2005-07-06T20:52:39Z,1235,453,2005-07-12T00:27:39Z,2,2020-02-15T06:59:39Z +3930,2005-07-06T20:54:07Z,165,573,2005-07-10T18:31:07Z,1,2020-02-15T06:59:39Z +3931,2005-07-06T21:03:46Z,182,176,2005-07-16T01:32:46Z,1,2020-02-15T06:59:39Z +3932,2005-07-06T21:06:17Z,4396,490,2005-07-07T19:25:17Z,2,2020-02-15T06:59:39Z +3933,2005-07-06T21:06:37Z,1202,229,2005-07-08T20:23:37Z,1,2020-02-15T06:59:39Z +3934,2005-07-06T21:07:23Z,3187,576,2005-07-10T18:20:23Z,2,2020-02-15T06:59:39Z +3935,2005-07-06T21:08:29Z,3402,503,2005-07-15T23:28:29Z,2,2020-02-15T06:59:39Z +3936,2005-07-06T21:15:03Z,4258,129,2005-07-08T17:45:03Z,2,2020-02-15T06:59:39Z +3937,2005-07-06T21:15:38Z,2091,211,2005-07-15T00:01:38Z,2,2020-02-15T06:59:39Z +3938,2005-07-06T21:15:45Z,1991,341,2005-07-13T20:02:45Z,2,2020-02-15T06:59:39Z +3939,2005-07-06T21:16:32Z,3627,149,2005-07-11T03:12:32Z,2,2020-02-15T06:59:39Z +3940,2005-07-06T21:16:59Z,1502,116,2005-07-07T19:17:59Z,2,2020-02-15T06:59:39Z +3941,2005-07-06T21:20:37Z,382,560,2005-07-09T01:35:37Z,2,2020-02-15T06:59:39Z +3942,2005-07-06T21:21:34Z,677,553,2005-07-15T02:34:34Z,1,2020-02-15T06:59:39Z +3943,2005-07-06T21:22:17Z,1816,566,2005-07-07T21:26:17Z,1,2020-02-15T06:59:39Z +3944,2005-07-06T21:34:11Z,4213,436,2005-07-08T23:46:11Z,2,2020-02-15T06:59:39Z +3945,2005-07-06T21:35:00Z,754,86,2005-07-08T00:31:00Z,2,2020-02-15T06:59:39Z +3946,2005-07-06T21:39:24Z,294,13,2005-07-11T16:10:24Z,1,2020-02-15T06:59:39Z +3947,2005-07-06T21:42:21Z,4188,324,2005-07-08T19:37:21Z,1,2020-02-15T06:59:39Z +3948,2005-07-06T21:45:53Z,2254,161,2005-07-08T19:24:53Z,2,2020-02-15T06:59:39Z +3949,2005-07-06T21:46:36Z,1765,153,2005-07-11T03:18:36Z,1,2020-02-15T06:59:39Z +3950,2005-07-06T21:48:44Z,4153,598,2005-07-14T02:25:44Z,1,2020-02-15T06:59:39Z +3951,2005-07-06T21:50:41Z,2288,250,2005-07-12T02:09:41Z,2,2020-02-15T06:59:39Z +3952,2005-07-06T21:51:31Z,1719,417,2005-07-13T15:54:31Z,1,2020-02-15T06:59:39Z +3953,2005-07-06T21:54:55Z,3879,385,2005-07-09T18:52:55Z,1,2020-02-15T06:59:39Z +3954,2005-07-06T21:57:44Z,4250,558,2005-07-08T02:37:44Z,2,2020-02-15T06:59:39Z +3955,2005-07-06T21:58:08Z,2523,247,2005-07-08T03:43:08Z,1,2020-02-15T06:59:39Z +3956,2005-07-06T22:01:51Z,15,147,2005-07-12T21:35:51Z,2,2020-02-15T06:59:39Z +3957,2005-07-06T22:05:47Z,443,414,2005-07-16T01:08:47Z,1,2020-02-15T06:59:39Z +3958,2005-07-06T22:07:33Z,4117,288,2005-07-10T19:31:33Z,2,2020-02-15T06:59:39Z +3959,2005-07-06T22:07:58Z,40,448,2005-07-13T02:30:58Z,1,2020-02-15T06:59:39Z +3960,2005-07-06T22:08:53Z,2090,594,2005-07-07T23:21:53Z,2,2020-02-15T06:59:39Z +3961,2005-07-06T22:11:43Z,4320,364,2005-07-09T03:14:43Z,1,2020-02-15T06:59:39Z +3962,2005-07-06T22:13:45Z,379,307,2005-07-15T00:22:45Z,2,2020-02-15T06:59:39Z +3963,2005-07-06T22:19:17Z,3912,111,2005-07-15T01:22:17Z,2,2020-02-15T06:59:39Z +3964,2005-07-06T22:23:02Z,1853,30,2005-07-07T22:21:02Z,1,2020-02-15T06:59:39Z +3965,2005-07-06T22:36:20Z,2863,243,2005-07-09T17:45:20Z,1,2020-02-15T06:59:39Z +3966,2005-07-06T22:38:49Z,556,495,2005-07-07T23:33:49Z,1,2020-02-15T06:59:39Z +3967,2005-07-06T22:45:10Z,2510,31,2005-07-09T23:54:10Z,2,2020-02-15T06:59:39Z +3968,2005-07-06T22:47:09Z,558,235,2005-07-12T21:01:09Z,1,2020-02-15T06:59:39Z +3969,2005-07-06T22:47:59Z,383,587,2005-07-08T02:11:59Z,1,2020-02-15T06:59:39Z +3970,2005-07-06T22:48:17Z,701,381,2005-07-15T19:07:17Z,1,2020-02-15T06:59:39Z +3971,2005-07-06T22:50:40Z,4415,473,2005-07-08T01:02:40Z,1,2020-02-15T06:59:39Z +3972,2005-07-06T22:53:57Z,1895,598,2005-07-11T01:32:57Z,1,2020-02-15T06:59:39Z +3973,2005-07-06T22:58:31Z,2625,592,2005-07-16T03:27:31Z,2,2020-02-15T06:59:39Z +3974,2005-07-06T22:59:16Z,4282,318,2005-07-11T22:30:16Z,1,2020-02-15T06:59:39Z +3975,2005-07-06T23:00:09Z,4343,545,2005-07-10T01:39:09Z,2,2020-02-15T06:59:39Z +3976,2005-07-06T23:00:20Z,2424,329,2005-07-07T21:51:20Z,2,2020-02-15T06:59:39Z +3977,2005-07-06T23:00:49Z,1284,449,2005-07-15T00:41:49Z,1,2020-02-15T06:59:39Z +3978,2005-07-06T23:04:33Z,4341,343,2005-07-10T17:45:33Z,2,2020-02-15T06:59:39Z +3979,2005-07-06T23:04:35Z,794,550,2005-07-13T01:38:35Z,2,2020-02-15T06:59:39Z +3980,2005-07-06T23:11:11Z,1845,475,2005-07-14T18:22:11Z,1,2020-02-15T06:59:39Z +3981,2005-07-06T23:12:12Z,842,375,2005-07-13T01:47:12Z,2,2020-02-15T06:59:39Z +3982,2005-07-06T23:14:16Z,4327,64,2005-07-08T21:21:16Z,2,2020-02-15T06:59:39Z +3983,2005-07-06T23:14:21Z,1261,6,2005-07-12T17:55:21Z,2,2020-02-15T06:59:39Z +3984,2005-07-06T23:22:36Z,2205,570,2005-07-08T21:40:36Z,2,2020-02-15T06:59:39Z +3985,2005-07-06T23:24:03Z,2096,307,2005-07-10T00:20:03Z,2,2020-02-15T06:59:39Z +3986,2005-07-06T23:25:13Z,3737,122,2005-07-09T21:26:13Z,2,2020-02-15T06:59:39Z +3987,2005-07-06T23:28:24Z,3104,270,2005-07-15T00:52:24Z,1,2020-02-15T06:59:39Z +3988,2005-07-06T23:30:42Z,2981,421,2005-07-13T03:06:42Z,2,2020-02-15T06:59:39Z +3989,2005-07-06T23:30:54Z,2366,213,2005-07-12T01:28:54Z,1,2020-02-15T06:59:39Z +3990,2005-07-06T23:32:44Z,2009,558,2005-07-14T01:35:44Z,2,2020-02-15T06:59:39Z +3991,2005-07-06T23:33:41Z,587,583,2005-07-16T01:31:41Z,1,2020-02-15T06:59:39Z +3992,2005-07-06T23:36:56Z,3219,448,2005-07-15T03:13:56Z,1,2020-02-15T06:59:39Z +3993,2005-07-06T23:37:06Z,1061,525,2005-07-14T19:31:06Z,1,2020-02-15T06:59:39Z +3994,2005-07-06T23:39:01Z,902,487,2005-07-14T00:33:01Z,1,2020-02-15T06:59:39Z +3995,2005-07-06T23:43:03Z,3990,128,2005-07-13T04:13:03Z,2,2020-02-15T06:59:39Z +3996,2005-07-06T23:46:43Z,2857,551,2005-07-14T22:34:43Z,2,2020-02-15T06:59:39Z +3997,2005-07-06T23:46:52Z,3895,52,2005-07-14T05:39:52Z,2,2020-02-15T06:59:39Z +3998,2005-07-06T23:49:20Z,1245,566,2005-07-12T20:39:20Z,1,2020-02-15T06:59:39Z +3999,2005-07-06T23:50:54Z,707,390,2005-07-09T22:09:54Z,1,2020-02-15T06:59:39Z +4000,2005-07-06T23:58:37Z,2122,95,2005-07-08T21:43:37Z,1,2020-02-15T06:59:39Z +4001,2005-07-07T00:07:00Z,864,120,2005-07-13T21:27:00Z,2,2020-02-15T06:59:39Z +4002,2005-07-07T00:08:18Z,2790,308,2005-07-14T01:29:18Z,2,2020-02-15T06:59:39Z +4003,2005-07-07T00:09:02Z,4054,8,2005-07-08T04:27:02Z,1,2020-02-15T06:59:39Z +4004,2005-07-07T00:20:51Z,667,574,2005-07-11T18:55:51Z,2,2020-02-15T06:59:39Z +4005,2005-07-07T00:22:26Z,3677,190,2005-07-15T04:34:26Z,2,2020-02-15T06:59:39Z +4006,2005-07-07T00:25:29Z,397,473,2005-07-08T05:30:29Z,2,2020-02-15T06:59:39Z +4007,2005-07-07T00:26:05Z,2071,285,2005-07-15T19:53:05Z,1,2020-02-15T06:59:39Z +4008,2005-07-07T00:26:43Z,1107,505,2005-07-16T03:58:43Z,2,2020-02-15T06:59:39Z +4009,2005-07-07T00:28:55Z,3607,394,2005-07-10T00:37:55Z,1,2020-02-15T06:59:39Z +4010,2005-07-07T00:47:00Z,4509,476,2005-07-12T06:23:00Z,2,2020-02-15T06:59:39Z +4011,2005-07-07T00:48:25Z,2052,20,2005-07-13T06:30:25Z,2,2020-02-15T06:59:39Z +4012,2005-07-07T00:56:09Z,1400,104,2005-07-10T21:49:09Z,1,2020-02-15T06:59:39Z +4013,2005-07-07T00:58:00Z,2344,475,2005-07-15T19:42:00Z,2,2020-02-15T06:59:39Z +4014,2005-07-07T00:58:54Z,583,510,2005-07-12T02:40:54Z,1,2020-02-15T06:59:39Z +4015,2005-07-07T00:59:46Z,3032,233,2005-07-14T03:16:46Z,2,2020-02-15T06:59:39Z +4016,2005-07-07T01:05:50Z,3318,335,2005-07-09T05:59:50Z,1,2020-02-15T06:59:39Z +4017,2005-07-07T01:08:18Z,3117,595,2005-07-09T01:47:18Z,2,2020-02-15T06:59:39Z +4018,2005-07-07T01:10:33Z,906,207,2005-07-12T20:54:33Z,2,2020-02-15T06:59:39Z +4019,2005-07-07T01:27:44Z,3200,294,2005-07-10T21:30:44Z,1,2020-02-15T06:59:39Z +4020,2005-07-07T01:42:22Z,3760,471,2005-07-10T00:53:22Z,1,2020-02-15T06:59:39Z +4021,2005-07-07T01:46:44Z,1676,315,2005-07-12T00:16:44Z,2,2020-02-15T06:59:39Z +4022,2005-07-07T01:50:06Z,3914,390,2005-07-09T21:47:06Z,2,2020-02-15T06:59:39Z +4023,2005-07-07T01:55:25Z,274,573,2005-07-08T02:43:25Z,2,2020-02-15T06:59:39Z +4024,2005-07-07T02:11:23Z,3976,448,2005-07-11T02:00:23Z,1,2020-02-15T06:59:39Z +4025,2005-07-07T02:13:24Z,3908,114,2005-07-08T00:47:24Z,1,2020-02-15T06:59:39Z +4026,2005-07-07T02:15:48Z,4142,251,2005-07-14T04:15:48Z,2,2020-02-15T06:59:39Z +4027,2005-07-07T02:19:01Z,56,116,2005-07-10T01:12:01Z,1,2020-02-15T06:59:39Z +4028,2005-07-07T02:19:14Z,1651,344,2005-07-15T08:09:14Z,2,2020-02-15T06:59:39Z +4029,2005-07-07T02:19:44Z,4075,518,2005-07-15T02:30:44Z,2,2020-02-15T06:59:39Z +4030,2005-07-07T02:25:42Z,1734,300,2005-07-08T22:53:42Z,2,2020-02-15T06:59:39Z +4031,2005-07-07T02:32:07Z,3094,143,2005-07-14T06:01:07Z,2,2020-02-15T06:59:39Z +4032,2005-07-07T02:34:13Z,2628,335,2005-07-14T22:43:13Z,1,2020-02-15T06:59:39Z +4033,2005-07-07T02:35:46Z,203,453,2005-07-16T01:12:46Z,1,2020-02-15T06:59:39Z +4034,2005-07-07T02:36:33Z,1666,354,2005-07-09T08:32:33Z,2,2020-02-15T06:59:39Z +4035,2005-07-07T02:45:02Z,3611,539,2005-07-14T01:41:02Z,1,2020-02-15T06:59:39Z +4036,2005-07-07T02:48:00Z,500,397,2005-07-07T22:46:00Z,1,2020-02-15T06:59:39Z +4037,2005-07-07T02:52:52Z,3903,594,2005-07-16T00:09:52Z,1,2020-02-15T06:59:39Z +4038,2005-07-07T02:52:53Z,1264,27,2005-07-11T22:32:53Z,2,2020-02-15T06:59:39Z +4039,2005-07-07T02:57:59Z,4050,290,2005-07-12T03:44:59Z,2,2020-02-15T06:59:39Z +4040,2005-07-07T03:02:40Z,3046,103,2005-07-16T06:05:40Z,2,2020-02-15T06:59:39Z +4041,2005-07-07T03:03:33Z,2217,445,2005-07-09T07:57:33Z,2,2020-02-15T06:59:39Z +4042,2005-07-07T03:06:40Z,50,10,2005-07-10T02:37:40Z,1,2020-02-15T06:59:39Z +4043,2005-07-07T03:09:50Z,3427,204,2005-07-10T07:49:50Z,2,2020-02-15T06:59:39Z +4044,2005-07-07T03:22:23Z,3263,94,2005-07-13T03:23:23Z,1,2020-02-15T06:59:39Z +4045,2005-07-07T03:26:14Z,1422,529,2005-07-11T06:52:14Z,1,2020-02-15T06:59:39Z +4046,2005-07-07T03:27:59Z,3518,491,2005-07-14T01:14:59Z,1,2020-02-15T06:59:39Z +4047,2005-07-07T03:28:49Z,3475,364,2005-07-09T02:42:49Z,2,2020-02-15T06:59:39Z +4048,2005-07-07T03:30:52Z,659,474,2005-07-14T05:05:52Z,2,2020-02-15T06:59:39Z +4049,2005-07-07T03:34:53Z,4172,79,2005-07-15T04:10:53Z,2,2020-02-15T06:59:39Z +4050,2005-07-07T03:35:33Z,104,528,2005-07-15T03:11:33Z,1,2020-02-15T06:59:39Z +4051,2005-07-07T03:37:28Z,2715,331,2005-07-09T01:40:28Z,1,2020-02-15T06:59:39Z +4052,2005-07-07T03:38:22Z,206,442,2005-07-13T02:56:22Z,2,2020-02-15T06:59:39Z +4053,2005-07-07T03:39:22Z,2889,377,2005-07-09T22:32:22Z,1,2020-02-15T06:59:39Z +4054,2005-07-07T03:42:07Z,3885,260,2005-07-10T03:22:07Z,1,2020-02-15T06:59:39Z +4055,2005-07-07T03:49:13Z,2561,513,2005-07-11T03:15:13Z,2,2020-02-15T06:59:39Z +4056,2005-07-07T03:57:36Z,4211,360,2005-07-09T08:53:36Z,2,2020-02-15T06:59:39Z +4057,2005-07-07T04:00:20Z,2838,141,2005-07-12T08:14:20Z,1,2020-02-15T06:59:39Z +4058,2005-07-07T04:02:50Z,3877,442,2005-07-10T04:30:50Z,2,2020-02-15T06:59:39Z +4059,2005-07-07T04:04:26Z,292,401,2005-07-10T22:35:26Z,1,2020-02-15T06:59:39Z +4060,2005-07-07T04:10:13Z,2697,211,2005-07-13T07:44:13Z,1,2020-02-15T06:59:39Z +4061,2005-07-07T04:13:35Z,62,70,2005-07-10T23:58:35Z,2,2020-02-15T06:59:39Z +4062,2005-07-07T04:22:27Z,1323,410,2005-07-09T03:27:27Z,1,2020-02-15T06:59:39Z +4063,2005-07-07T04:23:57Z,1452,331,2005-07-14T23:35:57Z,2,2020-02-15T06:59:39Z +4064,2005-07-07T04:29:20Z,1402,47,2005-07-14T05:48:20Z,2,2020-02-15T06:59:39Z +4065,2005-07-07T04:32:28Z,1339,26,2005-07-12T08:30:28Z,1,2020-02-15T06:59:39Z +4066,2005-07-07T04:34:09Z,1975,368,2005-07-10T23:54:09Z,1,2020-02-15T06:59:39Z +4067,2005-07-07T04:34:23Z,2945,469,2005-07-16T04:04:23Z,1,2020-02-15T06:59:39Z +4068,2005-07-07T04:34:38Z,4152,206,2005-07-11T09:16:38Z,2,2020-02-15T06:59:39Z +4069,2005-07-07T04:35:06Z,3361,570,2005-07-10T23:59:06Z,2,2020-02-15T06:59:39Z +4070,2005-07-07T04:37:09Z,2926,496,2005-07-08T04:19:09Z,2,2020-02-15T06:59:39Z +4071,2005-07-07T04:37:26Z,2883,209,2005-07-13T06:45:26Z,2,2020-02-15T06:59:39Z +4072,2005-07-07T04:48:02Z,3130,310,2005-07-12T10:32:02Z,2,2020-02-15T06:59:39Z +4073,2005-07-07T04:49:13Z,647,290,2005-07-10T03:20:13Z,2,2020-02-15T06:59:39Z +4074,2005-07-07T04:49:49Z,2347,412,2005-07-12T04:51:49Z,2,2020-02-15T06:59:39Z +4075,2005-07-07T04:51:44Z,1989,593,2005-07-09T03:07:44Z,2,2020-02-15T06:59:39Z +4076,2005-07-07T04:52:15Z,3148,329,2005-07-13T23:22:15Z,1,2020-02-15T06:59:39Z +4077,2005-07-07T04:53:40Z,2445,377,2005-07-09T09:56:40Z,2,2020-02-15T06:59:39Z +4078,2005-07-07T05:05:05Z,1671,522,2005-07-10T05:39:05Z,1,2020-02-15T06:59:39Z +4079,2005-07-07T05:06:27Z,2202,84,2005-07-16T08:46:27Z,1,2020-02-15T06:59:39Z +4080,2005-07-07T05:09:54Z,1364,148,2005-07-11T23:58:54Z,1,2020-02-15T06:59:39Z +4081,2005-07-07T05:10:08Z,1138,284,2005-07-12T00:47:08Z,1,2020-02-15T06:59:39Z +4082,2005-07-07T05:11:53Z,2904,108,2005-07-12T00:55:53Z,1,2020-02-15T06:59:39Z +4083,2005-07-07T05:13:15Z,3454,490,2005-07-08T09:11:15Z,1,2020-02-15T06:59:39Z +4084,2005-07-07T05:16:00Z,2588,441,2005-07-15T09:23:00Z,1,2020-02-15T06:59:39Z +4085,2005-07-07T05:25:39Z,1683,573,2005-07-12T04:30:39Z,1,2020-02-15T06:59:39Z +4086,2005-07-07T05:26:06Z,253,494,2005-07-12T00:45:06Z,2,2020-02-15T06:59:39Z +4087,2005-07-07T05:30:56Z,3066,433,2005-07-16T10:20:56Z,1,2020-02-15T06:59:39Z +4088,2005-07-07T05:31:55Z,234,66,2005-07-15T07:35:55Z,1,2020-02-15T06:59:39Z +4089,2005-07-07T05:45:59Z,3431,102,2005-07-16T07:34:59Z,2,2020-02-15T06:59:39Z +4090,2005-07-07T05:47:33Z,3096,67,2005-07-08T04:25:33Z,2,2020-02-15T06:59:39Z +4091,2005-07-07T05:53:38Z,3928,337,2005-07-14T03:12:38Z,2,2020-02-15T06:59:39Z +4092,2005-07-07T05:54:18Z,1721,246,2005-07-16T09:14:18Z,1,2020-02-15T06:59:39Z +4093,2005-07-07T05:54:50Z,1534,337,2005-07-12T00:34:50Z,1,2020-02-15T06:59:39Z +4094,2005-07-07T06:00:21Z,2412,517,2005-07-10T03:24:21Z,2,2020-02-15T06:59:39Z +4095,2005-07-07T06:01:48Z,2900,33,2005-07-15T02:52:48Z,2,2020-02-15T06:59:39Z +4096,2005-07-07T06:09:11Z,3911,403,2005-07-08T09:17:11Z,2,2020-02-15T06:59:39Z +4097,2005-07-07T06:10:55Z,2454,56,2005-07-11T02:45:55Z,1,2020-02-15T06:59:39Z +4098,2005-07-07T06:14:51Z,2865,35,2005-07-14T06:51:51Z,2,2020-02-15T06:59:39Z +4099,2005-07-07T06:20:33Z,1930,76,2005-07-16T08:39:33Z,1,2020-02-15T06:59:39Z +4100,2005-07-07T06:20:52Z,2346,332,2005-07-15T05:58:52Z,2,2020-02-15T06:59:39Z +4101,2005-07-07T06:25:11Z,2891,588,2005-07-12T07:44:11Z,2,2020-02-15T06:59:39Z +4102,2005-07-07T06:25:19Z,3998,135,2005-07-11T00:50:19Z,2,2020-02-15T06:59:39Z +4103,2005-07-07T06:25:28Z,3632,91,2005-07-12T11:18:28Z,1,2020-02-15T06:59:39Z +4104,2005-07-07T06:25:41Z,1066,338,2005-07-13T04:18:41Z,2,2020-02-15T06:59:39Z +4105,2005-07-07T06:31:00Z,439,423,2005-07-09T03:52:00Z,1,2020-02-15T06:59:39Z +4106,2005-07-07T06:33:35Z,4083,563,2005-07-13T04:03:35Z,1,2020-02-15T06:59:39Z +4107,2005-07-07T06:36:32Z,4232,206,2005-07-14T03:36:32Z,1,2020-02-15T06:59:39Z +4108,2005-07-07T06:38:31Z,4535,66,2005-07-08T10:44:31Z,1,2020-02-15T06:59:39Z +4109,2005-07-07T06:39:43Z,532,517,2005-07-10T06:30:43Z,1,2020-02-15T06:59:39Z +4110,2005-07-07T06:44:27Z,226,486,2005-07-12T05:43:27Z,2,2020-02-15T06:59:39Z +4111,2005-07-07T06:47:56Z,1009,515,2005-07-13T02:13:56Z,1,2020-02-15T06:59:39Z +4112,2005-07-07T06:49:09Z,3284,533,2005-07-16T06:53:09Z,2,2020-02-15T06:59:39Z +4113,2005-07-07T06:49:52Z,915,170,2005-07-12T04:00:52Z,1,2020-02-15T06:59:39Z +4114,2005-07-07T06:51:12Z,4109,426,2005-07-15T01:36:12Z,1,2020-02-15T06:59:39Z +4115,2005-07-07T06:52:23Z,102,371,2005-07-14T06:12:23Z,2,2020-02-15T06:59:39Z +4116,2005-07-07T06:56:13Z,666,352,2005-07-11T11:13:13Z,2,2020-02-15T06:59:39Z +4117,2005-07-07T06:58:14Z,780,158,2005-07-16T05:28:14Z,1,2020-02-15T06:59:39Z +4118,2005-07-07T07:03:30Z,355,224,2005-07-08T09:20:30Z,1,2020-02-15T06:59:39Z +4119,2005-07-07T07:06:03Z,2078,319,2005-07-13T01:56:03Z,2,2020-02-15T06:59:39Z +4120,2005-07-07T07:07:03Z,987,559,2005-07-16T04:07:03Z,1,2020-02-15T06:59:39Z +4121,2005-07-07T07:13:50Z,2429,176,2005-07-13T04:32:50Z,2,2020-02-15T06:59:39Z +4122,2005-07-07T07:15:35Z,273,31,2005-07-14T12:10:35Z,1,2020-02-15T06:59:39Z +4123,2005-07-07T07:16:19Z,2707,469,2005-07-10T05:23:19Z,1,2020-02-15T06:59:39Z +4124,2005-07-07T07:19:54Z,2856,330,2005-07-11T05:54:54Z,1,2020-02-15T06:59:39Z +4125,2005-07-07T07:20:29Z,4131,269,2005-07-15T06:41:29Z,2,2020-02-15T06:59:39Z +4126,2005-07-07T07:24:11Z,3018,163,2005-07-15T07:31:11Z,1,2020-02-15T06:59:39Z +4127,2005-07-07T07:26:19Z,1774,15,2005-07-14T07:50:19Z,2,2020-02-15T06:59:39Z +4128,2005-07-07T07:35:25Z,3563,492,2005-07-14T08:13:25Z,1,2020-02-15T06:59:39Z +4129,2005-07-07T07:37:03Z,1413,592,2005-07-14T13:31:03Z,1,2020-02-15T06:59:39Z +4130,2005-07-07T07:51:53Z,4170,256,2005-07-11T12:41:53Z,2,2020-02-15T06:59:39Z +4131,2005-07-07T07:53:18Z,2621,58,2005-07-08T04:48:18Z,1,2020-02-15T06:59:39Z +4132,2005-07-07T08:06:07Z,993,154,2005-07-10T14:04:07Z,1,2020-02-15T06:59:39Z +4133,2005-07-07T08:12:26Z,3672,488,2005-07-16T03:43:26Z,1,2020-02-15T06:59:39Z +4134,2005-07-07T08:14:24Z,2917,183,2005-07-09T10:42:24Z,1,2020-02-15T06:59:39Z +4135,2005-07-07T08:15:03Z,3384,36,2005-07-11T10:56:03Z,1,2020-02-15T06:59:39Z +4136,2005-07-07T08:15:52Z,3461,203,2005-07-10T04:22:52Z,2,2020-02-15T06:59:39Z +4137,2005-07-07T08:17:06Z,2065,485,2005-07-11T10:52:06Z,2,2020-02-15T06:59:39Z +4138,2005-07-07T08:17:13Z,1588,317,2005-07-14T05:18:13Z,2,2020-02-15T06:59:39Z +4139,2005-07-07T08:17:35Z,2094,509,2005-07-14T14:01:35Z,2,2020-02-15T06:59:39Z +4140,2005-07-07T08:19:10Z,1897,190,2005-07-14T07:27:10Z,2,2020-02-15T06:59:39Z +4141,2005-07-07T08:19:20Z,1904,456,2005-07-11T06:54:20Z,1,2020-02-15T06:59:39Z +4142,2005-07-07T08:19:45Z,4045,492,2005-07-08T13:55:45Z,1,2020-02-15T06:59:39Z +4143,2005-07-07T08:22:07Z,597,238,2005-07-13T11:42:07Z,1,2020-02-15T06:59:39Z +4144,2005-07-07T08:25:44Z,550,431,2005-07-16T13:10:44Z,2,2020-02-15T06:59:39Z +4145,2005-07-07T08:26:39Z,3050,592,2005-07-16T12:54:39Z,2,2020-02-15T06:59:39Z +4146,2005-07-07T08:30:16Z,176,411,2005-07-12T07:52:16Z,1,2020-02-15T06:59:39Z +4147,2005-07-07T08:32:12Z,2776,274,2005-07-12T10:10:12Z,2,2020-02-15T06:59:39Z +4148,2005-07-07T08:36:58Z,260,59,2005-07-09T05:51:58Z,1,2020-02-15T06:59:39Z +4149,2005-07-07T08:40:17Z,3028,50,2005-07-10T02:58:17Z,2,2020-02-15T06:59:39Z +4150,2005-07-07T08:43:22Z,4424,188,2005-07-08T05:21:22Z,2,2020-02-15T06:59:39Z +4151,2005-07-07T08:49:02Z,4564,428,2005-07-11T05:19:02Z,1,2020-02-15T06:59:39Z +4152,2005-07-07T08:50:33Z,1761,89,2005-07-14T10:56:33Z,2,2020-02-15T06:59:39Z +4153,2005-07-07T08:53:08Z,2185,299,2005-07-11T05:09:08Z,2,2020-02-15T06:59:39Z +4154,2005-07-07T08:58:23Z,191,594,2005-07-14T03:16:23Z,2,2020-02-15T06:59:39Z +4155,2005-07-07T09:00:49Z,212,548,2005-07-13T10:59:49Z,2,2020-02-15T06:59:39Z +4156,2005-07-07T09:03:51Z,1259,585,2005-07-12T09:46:51Z,2,2020-02-15T06:59:39Z +4157,2005-07-07T09:04:26Z,304,183,2005-07-08T09:55:26Z,1,2020-02-15T06:59:39Z +4158,2005-07-07T09:05:42Z,291,433,2005-07-09T04:28:42Z,1,2020-02-15T06:59:39Z +4159,2005-07-07T09:10:57Z,3625,62,2005-07-09T10:19:57Z,2,2020-02-15T06:59:39Z +4160,2005-07-07T09:13:17Z,1909,326,2005-07-15T11:50:17Z,2,2020-02-15T06:59:39Z +4161,2005-07-07T09:15:11Z,4021,216,2005-07-15T06:59:11Z,1,2020-02-15T06:59:39Z +4162,2005-07-07T09:17:26Z,745,571,2005-07-15T10:15:26Z,2,2020-02-15T06:59:39Z +4163,2005-07-07T09:19:28Z,3176,376,2005-07-10T06:47:28Z,2,2020-02-15T06:59:39Z +4164,2005-07-07T09:20:11Z,3133,295,2005-07-14T09:35:11Z,1,2020-02-15T06:59:39Z +4165,2005-07-07T09:23:27Z,3845,66,2005-07-15T06:00:27Z,1,2020-02-15T06:59:39Z +4166,2005-07-07T09:33:30Z,3267,376,2005-07-16T06:06:30Z,1,2020-02-15T06:59:39Z +4167,2005-07-07T09:37:08Z,3771,175,2005-07-16T06:16:08Z,2,2020-02-15T06:59:39Z +4168,2005-07-07T09:37:24Z,1872,132,2005-07-09T14:32:24Z,2,2020-02-15T06:59:39Z +4169,2005-07-07T09:39:18Z,3360,580,2005-07-11T13:43:18Z,1,2020-02-15T06:59:39Z +4170,2005-07-07T09:44:36Z,2665,99,2005-07-13T14:10:36Z,1,2020-02-15T06:59:39Z +4171,2005-07-07T09:49:04Z,4199,476,2005-07-14T03:58:04Z,2,2020-02-15T06:59:39Z +4172,2005-07-07T09:49:09Z,1158,309,2005-07-11T15:14:09Z,2,2020-02-15T06:59:39Z +4173,2005-07-07T09:57:26Z,4272,320,2005-07-10T04:05:26Z,1,2020-02-15T06:59:39Z +4174,2005-07-07T09:59:49Z,3814,182,2005-07-11T13:34:49Z,1,2020-02-15T06:59:39Z +4175,2005-07-07T10:02:03Z,1979,8,2005-07-10T06:09:03Z,2,2020-02-15T06:59:39Z +4176,2005-07-07T10:03:34Z,2745,420,2005-07-16T08:43:34Z,1,2020-02-15T06:59:39Z +4177,2005-07-07T10:12:36Z,4106,317,2005-07-15T15:48:36Z,2,2020-02-15T06:59:39Z +4178,2005-07-07T10:14:31Z,2898,513,2005-07-12T09:38:31Z,2,2020-02-15T06:59:39Z +4179,2005-07-07T10:17:15Z,559,75,2005-07-10T05:12:15Z,2,2020-02-15T06:59:39Z +4180,2005-07-07T10:23:25Z,1704,3,2005-07-10T13:18:25Z,1,2020-02-15T06:59:39Z +4181,2005-07-07T10:27:54Z,3725,598,2005-07-13T06:09:54Z,1,2020-02-15T06:59:39Z +4182,2005-07-07T10:28:00Z,3080,256,2005-07-08T12:50:00Z,1,2020-02-15T06:59:39Z +4183,2005-07-07T10:28:33Z,3342,479,2005-07-15T12:29:33Z,1,2020-02-15T06:59:39Z +4184,2005-07-07T10:30:08Z,1022,468,2005-07-14T12:56:08Z,1,2020-02-15T06:59:39Z +4185,2005-07-07T10:31:05Z,2425,395,2005-07-13T05:30:05Z,2,2020-02-15T06:59:39Z +4186,2005-07-07T10:32:25Z,3910,185,2005-07-15T06:22:25Z,1,2020-02-15T06:59:39Z +4187,2005-07-07T10:41:31Z,2,161,2005-07-11T06:25:31Z,1,2020-02-15T06:59:39Z +4188,2005-07-07T10:45:29Z,3243,391,2005-07-16T09:39:29Z,1,2020-02-15T06:59:39Z +4189,2005-07-07T10:51:07Z,1492,386,2005-07-14T14:46:07Z,2,2020-02-15T06:59:39Z +4190,2005-07-07T10:52:39Z,826,349,2005-07-11T13:19:39Z,1,2020-02-15T06:59:39Z +4191,2005-07-07T10:56:14Z,2475,390,2005-07-11T09:56:14Z,1,2020-02-15T06:59:39Z +4192,2005-07-07T10:57:06Z,624,558,2005-07-13T16:30:06Z,1,2020-02-15T06:59:39Z +4193,2005-07-07T10:57:21Z,3791,445,2005-07-09T07:33:21Z,2,2020-02-15T06:59:39Z +4194,2005-07-07T10:59:39Z,1753,153,2005-07-15T09:34:39Z,1,2020-02-15T06:59:39Z +4195,2005-07-07T11:00:02Z,450,455,2005-07-14T16:54:02Z,1,2020-02-15T06:59:39Z +4196,2005-07-07T11:06:33Z,3407,564,2005-07-14T13:46:33Z,1,2020-02-15T06:59:39Z +4197,2005-07-07T11:07:52Z,2515,324,2005-07-10T10:19:52Z,1,2020-02-15T06:59:39Z +4198,2005-07-07T11:08:11Z,333,247,2005-07-16T15:29:11Z,1,2020-02-15T06:59:39Z +4199,2005-07-07T11:13:07Z,2120,259,2005-07-11T07:17:07Z,1,2020-02-15T06:59:39Z +4200,2005-07-07T11:15:11Z,1097,292,2005-07-11T11:46:11Z,2,2020-02-15T06:59:39Z +4201,2005-07-07T11:19:51Z,3682,145,2005-07-16T08:48:51Z,1,2020-02-15T06:59:39Z +4202,2005-07-07T11:23:48Z,2274,38,2005-07-16T16:32:48Z,1,2020-02-15T06:59:39Z +4203,2005-07-07T11:24:14Z,2743,189,2005-07-11T16:26:14Z,1,2020-02-15T06:59:39Z +4204,2005-07-07T11:24:18Z,1513,569,2005-07-15T12:42:18Z,1,2020-02-15T06:59:39Z +4205,2005-07-07T11:25:39Z,3922,486,2005-07-11T06:12:39Z,1,2020-02-15T06:59:39Z +4206,2005-07-07T11:32:16Z,1557,448,2005-07-14T13:07:16Z,2,2020-02-15T06:59:39Z +4207,2005-07-07T11:32:45Z,1119,588,2005-07-14T05:49:45Z,2,2020-02-15T06:59:39Z +4208,2005-07-07T11:34:22Z,3617,441,2005-07-09T08:25:22Z,1,2020-02-15T06:59:39Z +4209,2005-07-07T11:35:08Z,2010,100,2005-07-10T10:58:08Z,1,2020-02-15T06:59:39Z +4210,2005-07-07T11:36:20Z,1972,581,2005-07-16T12:38:20Z,1,2020-02-15T06:59:39Z +4211,2005-07-07T11:50:41Z,2001,214,2005-07-09T13:58:41Z,2,2020-02-15T06:59:39Z +4212,2005-07-07T11:53:14Z,1825,574,2005-07-09T07:12:14Z,1,2020-02-15T06:59:39Z +4213,2005-07-07T11:53:49Z,705,103,2005-07-13T07:51:49Z,1,2020-02-15T06:59:39Z +4214,2005-07-07T11:54:33Z,2534,484,2005-07-08T10:49:33Z,2,2020-02-15T06:59:39Z +4215,2005-07-07T12:00:52Z,1239,22,2005-07-11T15:14:52Z,2,2020-02-15T06:59:39Z +4216,2005-07-07T12:01:34Z,1216,467,2005-07-08T09:59:34Z,1,2020-02-15T06:59:39Z +4217,2005-07-07T12:08:59Z,3186,228,2005-07-11T15:07:59Z,2,2020-02-15T06:59:39Z +4218,2005-07-07T12:10:24Z,152,497,2005-07-15T16:09:24Z,1,2020-02-15T06:59:39Z +4219,2005-07-07T12:11:22Z,2800,16,2005-07-11T11:05:22Z,1,2020-02-15T06:59:39Z +4220,2005-07-07T12:12:36Z,821,513,2005-07-10T13:37:36Z,1,2020-02-15T06:59:39Z +4221,2005-07-07T12:18:57Z,4567,143,2005-07-12T09:47:57Z,2,2020-02-15T06:59:39Z +4222,2005-07-07T12:20:21Z,2053,467,2005-07-11T11:09:21Z,2,2020-02-15T06:59:39Z +4223,2005-07-07T12:23:54Z,2407,405,2005-07-10T14:46:54Z,2,2020-02-15T06:59:39Z +4224,2005-07-07T12:24:21Z,3659,419,2005-07-10T11:48:21Z,1,2020-02-15T06:59:39Z +4225,2005-07-07T12:24:37Z,1766,377,2005-07-12T06:47:37Z,2,2020-02-15T06:59:39Z +4226,2005-07-07T12:37:56Z,1692,57,2005-07-09T08:48:56Z,2,2020-02-15T06:59:39Z +4227,2005-07-07T12:41:36Z,4186,78,2005-07-15T12:33:36Z,1,2020-02-15T06:59:39Z +4228,2005-07-07T12:42:02Z,1020,38,2005-07-12T10:52:02Z,1,2020-02-15T06:59:39Z +4229,2005-07-07T12:43:23Z,953,106,2005-07-13T15:00:23Z,2,2020-02-15T06:59:39Z +4230,2005-07-07T12:46:47Z,353,205,2005-07-15T06:52:47Z,1,2020-02-15T06:59:39Z +4231,2005-07-07T12:48:19Z,3522,194,2005-07-13T18:45:19Z,1,2020-02-15T06:59:39Z +4232,2005-07-07T12:49:12Z,3841,347,2005-07-15T16:45:12Z,1,2020-02-15T06:59:39Z +4233,2005-07-07T13:00:20Z,1849,488,2005-07-13T16:37:20Z,1,2020-02-15T06:59:39Z +4234,2005-07-07T13:01:35Z,1179,195,2005-07-15T13:05:35Z,1,2020-02-15T06:59:39Z +4235,2005-07-07T13:05:52Z,3525,86,2005-07-10T12:17:52Z,2,2020-02-15T06:59:39Z +4236,2005-07-07T13:12:07Z,642,213,2005-07-08T15:00:07Z,2,2020-02-15T06:59:39Z +4237,2005-07-07T13:16:55Z,3773,477,2005-07-15T16:33:55Z,1,2020-02-15T06:59:39Z +4238,2005-07-07T13:22:20Z,3024,7,2005-07-10T07:44:20Z,2,2020-02-15T06:59:39Z +4239,2005-07-07T13:23:17Z,3866,122,2005-07-13T17:49:17Z,1,2020-02-15T06:59:39Z +4240,2005-07-07T13:33:12Z,1024,65,2005-07-13T12:28:12Z,1,2020-02-15T06:59:39Z +4241,2005-07-07T13:39:00Z,4154,595,2005-07-12T17:49:00Z,2,2020-02-15T06:59:39Z +4242,2005-07-07T13:39:01Z,3626,286,2005-07-12T18:29:01Z,1,2020-02-15T06:59:39Z +4243,2005-07-07T13:39:58Z,4559,339,2005-07-12T19:27:58Z,1,2020-02-15T06:59:39Z +4244,2005-07-07T13:41:58Z,592,581,2005-07-09T15:32:58Z,2,2020-02-15T06:59:39Z +4245,2005-07-07T13:48:33Z,3743,91,2005-07-10T09:54:33Z,1,2020-02-15T06:59:39Z +4246,2005-07-07T13:49:03Z,1141,411,2005-07-09T13:01:03Z,1,2020-02-15T06:59:39Z +4247,2005-07-07T13:51:54Z,808,539,2005-07-10T09:43:54Z,2,2020-02-15T06:59:39Z +4248,2005-07-07T13:59:20Z,773,161,2005-07-14T15:18:20Z,2,2020-02-15T06:59:39Z +4249,2005-07-07T14:05:17Z,4185,111,2005-07-10T09:21:17Z,2,2020-02-15T06:59:39Z +4250,2005-07-07T14:08:11Z,2556,423,2005-07-13T08:09:11Z,2,2020-02-15T06:59:39Z +4251,2005-07-07T14:11:55Z,3541,367,2005-07-16T14:01:55Z,2,2020-02-15T06:59:39Z +4252,2005-07-07T14:13:05Z,474,154,2005-07-09T14:17:05Z,1,2020-02-15T06:59:39Z +4253,2005-07-07T14:13:13Z,3355,157,2005-07-16T18:55:13Z,2,2020-02-15T06:59:39Z +4254,2005-07-07T14:13:52Z,3957,529,2005-07-12T10:39:52Z,2,2020-02-15T06:59:39Z +4255,2005-07-07T14:14:13Z,749,10,2005-07-12T18:32:13Z,1,2020-02-15T06:59:39Z +4256,2005-07-07T14:14:36Z,1386,129,2005-07-10T09:41:36Z,1,2020-02-15T06:59:39Z +4257,2005-07-07T14:18:41Z,3927,553,2005-07-08T14:58:41Z,1,2020-02-15T06:59:39Z +4258,2005-07-07T14:20:59Z,1562,492,2005-07-16T10:03:59Z,1,2020-02-15T06:59:39Z +4259,2005-07-07T14:22:18Z,4378,467,2005-07-11T19:38:18Z,1,2020-02-15T06:59:39Z +4260,2005-07-07T14:22:45Z,4575,305,2005-07-08T15:10:45Z,2,2020-02-15T06:59:39Z +4261,2005-07-07T14:23:56Z,1405,496,2005-07-13T15:26:56Z,1,2020-02-15T06:59:39Z +4262,2005-07-07T14:24:30Z,3122,29,2005-07-14T13:12:30Z,1,2020-02-15T06:59:39Z +4263,2005-07-07T14:24:44Z,2975,16,2005-07-13T18:22:44Z,1,2020-02-15T06:59:39Z +4264,2005-07-07T14:25:28Z,3499,406,2005-07-08T08:49:28Z,2,2020-02-15T06:59:39Z +4265,2005-07-07T14:27:51Z,1685,69,2005-07-12T19:55:51Z,2,2020-02-15T06:59:39Z +4266,2005-07-07T14:34:50Z,1578,509,2005-07-08T09:23:50Z,2,2020-02-15T06:59:39Z +4267,2005-07-07T14:35:30Z,136,410,2005-07-11T10:41:30Z,1,2020-02-15T06:59:39Z +4268,2005-07-07T14:36:05Z,432,80,2005-07-16T14:36:05Z,1,2020-02-15T06:59:39Z +4269,2005-07-07T14:38:33Z,415,496,2005-07-09T10:27:33Z,1,2020-02-15T06:59:39Z +4270,2005-07-07T14:38:41Z,183,210,2005-07-10T19:07:41Z,2,2020-02-15T06:59:39Z +4271,2005-07-07T14:38:52Z,533,150,2005-07-15T12:05:52Z,1,2020-02-15T06:59:39Z +4272,2005-07-07T14:39:20Z,488,120,2005-07-13T08:57:20Z,2,2020-02-15T06:59:39Z +4273,2005-07-07T14:40:22Z,4163,159,2005-07-13T09:58:22Z,2,2020-02-15T06:59:39Z +4274,2005-07-07T14:42:04Z,787,26,2005-07-13T20:23:04Z,1,2020-02-15T06:59:39Z +4275,2005-07-07T14:43:51Z,1167,393,2005-07-15T18:04:51Z,2,2020-02-15T06:59:39Z +4276,2005-07-07T14:50:59Z,221,366,2005-07-09T15:42:59Z,2,2020-02-15T06:59:39Z +4277,2005-07-07T14:52:12Z,1983,106,2005-07-09T13:10:12Z,1,2020-02-15T06:59:39Z +4278,2005-07-07T14:53:24Z,3693,6,2005-07-13T14:21:24Z,2,2020-02-15T06:59:39Z +4279,2005-07-07T15:01:53Z,581,335,2005-07-08T09:43:53Z,1,2020-02-15T06:59:39Z +4280,2005-07-07T15:09:31Z,1115,593,2005-07-13T14:47:31Z,1,2020-02-15T06:59:39Z +4281,2005-07-07T15:17:50Z,1182,321,2005-07-08T11:42:50Z,2,2020-02-15T06:59:39Z +4282,2005-07-07T15:26:31Z,3134,25,2005-07-11T14:27:31Z,1,2020-02-15T06:59:39Z +4283,2005-07-07T15:29:35Z,2807,477,2005-07-11T17:12:35Z,1,2020-02-15T06:59:39Z +4284,2005-07-07T15:31:57Z,1313,521,2005-07-09T10:20:57Z,2,2020-02-15T06:59:39Z +4285,2005-07-07T15:34:35Z,511,308,2005-07-15T09:43:35Z,2,2020-02-15T06:59:39Z +4286,2005-07-07T15:36:44Z,4496,111,2005-07-11T13:04:44Z,2,2020-02-15T06:59:39Z +4287,2005-07-07T15:37:31Z,3558,94,2005-07-16T19:59:31Z,2,2020-02-15T06:59:39Z +4288,2005-07-07T15:38:25Z,1508,64,2005-07-13T16:23:25Z,2,2020-02-15T06:59:39Z +4289,2005-07-07T15:45:58Z,3172,231,2005-07-09T11:11:58Z,2,2020-02-15T06:59:39Z +4290,2005-07-07T15:47:10Z,4174,277,2005-07-15T15:03:10Z,1,2020-02-15T06:59:39Z +4291,2005-07-07T15:47:47Z,2074,298,2005-07-10T11:45:47Z,1,2020-02-15T06:59:39Z +4292,2005-07-07T15:48:38Z,3084,401,2005-07-15T17:53:38Z,1,2020-02-15T06:59:39Z +4293,2005-07-07T15:53:47Z,984,221,2005-07-10T18:11:47Z,1,2020-02-15T06:59:39Z +4294,2005-07-07T15:56:23Z,2845,41,2005-07-15T14:50:23Z,2,2020-02-15T06:59:39Z +4295,2005-07-07T16:08:51Z,2490,319,2005-07-13T13:06:51Z,2,2020-02-15T06:59:39Z +4296,2005-07-07T16:16:03Z,977,407,2005-07-08T20:16:03Z,2,2020-02-15T06:59:39Z +4297,2005-07-07T16:24:09Z,882,141,2005-07-13T15:08:09Z,2,2020-02-15T06:59:39Z +4298,2005-07-07T16:27:25Z,1055,560,2005-07-12T18:20:25Z,1,2020-02-15T06:59:39Z +4299,2005-07-07T16:33:48Z,870,80,2005-07-16T11:48:48Z,1,2020-02-15T06:59:39Z +4300,2005-07-07T16:36:16Z,1189,38,2005-07-10T13:59:16Z,2,2020-02-15T06:59:39Z +4301,2005-07-07T16:37:23Z,1630,440,2005-07-11T18:05:23Z,2,2020-02-15T06:59:39Z +4302,2005-07-07T16:47:53Z,3669,332,2005-07-16T22:22:53Z,2,2020-02-15T06:59:39Z +4303,2005-07-07T16:57:32Z,818,108,2005-07-14T17:42:32Z,2,2020-02-15T06:59:39Z +4304,2005-07-07T17:01:19Z,3382,165,2005-07-12T22:47:19Z,2,2020-02-15T06:59:39Z +4305,2005-07-07T17:07:11Z,3926,240,2005-07-08T16:15:11Z,2,2020-02-15T06:59:39Z +4306,2005-07-07T17:12:32Z,1219,210,2005-07-16T11:24:32Z,2,2020-02-15T06:59:39Z +4307,2005-07-07T17:20:39Z,2827,394,2005-07-16T14:42:39Z,1,2020-02-15T06:59:39Z +4308,2005-07-07T17:29:16Z,1482,168,2005-07-11T21:47:16Z,1,2020-02-15T06:59:39Z +4309,2005-07-07T17:29:41Z,3549,209,2005-07-14T22:22:41Z,2,2020-02-15T06:59:39Z +4310,2005-07-07T17:30:56Z,3842,390,2005-07-12T13:19:56Z,2,2020-02-15T06:59:39Z +4311,2005-07-07T17:31:14Z,2985,498,2005-07-11T19:21:14Z,2,2020-02-15T06:59:39Z +4312,2005-07-07T17:34:59Z,3870,97,2005-07-09T17:45:59Z,2,2020-02-15T06:59:39Z +4313,2005-07-07T17:36:56Z,91,29,2005-07-13T12:00:56Z,1,2020-02-15T06:59:39Z +4314,2005-07-07T17:38:31Z,539,184,2005-07-09T20:24:31Z,1,2020-02-15T06:59:39Z +4315,2005-07-07T17:40:26Z,1472,195,2005-07-09T22:58:26Z,2,2020-02-15T06:59:39Z +4316,2005-07-07T17:44:22Z,517,301,2005-07-14T15:12:22Z,2,2020-02-15T06:59:39Z +4317,2005-07-07T17:44:49Z,2234,110,2005-07-08T21:48:49Z,2,2020-02-15T06:59:39Z +4318,2005-07-07T17:47:50Z,1607,321,2005-07-14T12:15:50Z,2,2020-02-15T06:59:39Z +4319,2005-07-07T17:50:27Z,3389,25,2005-07-10T13:53:27Z,2,2020-02-15T06:59:39Z +4320,2005-07-07T17:51:59Z,3437,376,2005-07-13T18:39:59Z,1,2020-02-15T06:59:39Z +4321,2005-07-07T17:52:38Z,612,91,2005-07-11T23:37:38Z,1,2020-02-15T06:59:39Z +4322,2005-07-07T17:54:37Z,1522,568,2005-07-14T13:56:37Z,1,2020-02-15T06:59:39Z +4323,2005-07-07T17:55:53Z,1287,336,2005-07-13T16:43:53Z,2,2020-02-15T06:59:39Z +4324,2005-07-07T17:57:56Z,952,226,2005-07-13T22:34:56Z,1,2020-02-15T06:59:39Z +4325,2005-07-07T17:59:24Z,3728,373,2005-07-16T17:10:24Z,2,2020-02-15T06:59:39Z +4326,2005-07-07T18:01:22Z,4037,331,2005-07-16T15:45:22Z,1,2020-02-15T06:59:39Z +4327,2005-07-07T18:01:39Z,860,73,2005-07-12T22:40:39Z,1,2020-02-15T06:59:39Z +4328,2005-07-07T18:03:17Z,2174,264,2005-07-14T16:14:17Z,1,2020-02-15T06:59:39Z +4329,2005-07-07T18:04:16Z,638,504,2005-07-15T17:58:16Z,2,2020-02-15T06:59:39Z +4330,2005-07-07T18:09:41Z,2408,408,2005-07-14T22:05:41Z,1,2020-02-15T06:59:39Z +4331,2005-07-07T18:22:30Z,419,535,2005-07-13T18:20:30Z,1,2020-02-15T06:59:39Z +4332,2005-07-07T18:25:26Z,1714,137,2005-07-16T15:05:26Z,1,2020-02-15T06:59:39Z +4333,2005-07-07T18:31:50Z,76,113,2005-07-08T21:26:50Z,1,2020-02-15T06:59:39Z +4334,2005-07-07T18:32:04Z,3021,210,2005-07-08T16:19:04Z,1,2020-02-15T06:59:39Z +4335,2005-07-07T18:33:57Z,1332,375,2005-07-11T13:23:57Z,1,2020-02-15T06:59:39Z +4336,2005-07-07T18:34:36Z,482,532,2005-07-10T17:58:36Z,2,2020-02-15T06:59:39Z +4337,2005-07-07T18:36:37Z,2313,464,2005-07-14T14:59:37Z,2,2020-02-15T06:59:39Z +4338,2005-07-07T18:39:56Z,3152,581,2005-07-12T21:03:56Z,1,2020-02-15T06:59:39Z +4339,2005-07-07T18:41:42Z,3215,130,2005-07-08T13:00:42Z,1,2020-02-15T06:59:39Z +4340,2005-07-07T18:41:46Z,3919,227,2005-07-16T21:27:46Z,1,2020-02-15T06:59:39Z +4341,2005-07-07T18:44:23Z,4523,124,2005-07-15T18:13:23Z,1,2020-02-15T06:59:39Z +4342,2005-07-07T18:47:03Z,1355,120,2005-07-09T21:59:03Z,2,2020-02-15T06:59:39Z +4343,2005-07-07T18:48:54Z,1926,293,2005-07-12T15:19:54Z,1,2020-02-15T06:59:39Z +4344,2005-07-07T18:50:47Z,1185,99,2005-07-12T16:38:47Z,2,2020-02-15T06:59:39Z +4345,2005-07-07T18:52:57Z,2235,225,2005-07-15T21:24:57Z,2,2020-02-15T06:59:39Z +4346,2005-07-07T18:58:45Z,1906,520,2005-07-10T16:37:45Z,1,2020-02-15T06:59:39Z +4347,2005-07-07T18:58:57Z,1964,344,2005-07-14T16:35:57Z,2,2020-02-15T06:59:39Z +4348,2005-07-07T19:02:05Z,1948,452,2005-07-09T20:51:05Z,2,2020-02-15T06:59:39Z +4349,2005-07-07T19:02:37Z,3430,182,2005-07-09T17:25:37Z,2,2020-02-15T06:59:39Z +4350,2005-07-07T19:02:41Z,2223,299,2005-07-09T15:27:41Z,1,2020-02-15T06:59:39Z +4351,2005-07-07T19:04:24Z,3567,382,2005-07-14T00:03:24Z,2,2020-02-15T06:59:39Z +4352,2005-07-07T19:15:58Z,2636,249,2005-07-16T20:22:58Z,2,2020-02-15T06:59:39Z +4353,2005-07-07T19:19:05Z,368,452,2005-07-13T13:40:05Z,1,2020-02-15T06:59:39Z +4354,2005-07-07T19:21:02Z,4423,208,2005-07-15T17:03:02Z,2,2020-02-15T06:59:39Z +4355,2005-07-07T19:21:19Z,4557,438,2005-07-09T00:55:19Z,2,2020-02-15T06:59:39Z +4356,2005-07-07T19:21:22Z,1907,318,2005-07-16T15:57:22Z,1,2020-02-15T06:59:39Z +4357,2005-07-07T19:24:39Z,3413,103,2005-07-12T00:11:39Z,1,2020-02-15T06:59:39Z +4358,2005-07-07T19:27:04Z,3136,446,2005-07-14T23:46:04Z,1,2020-02-15T06:59:39Z +4359,2005-07-07T19:30:20Z,3222,282,2005-07-09T13:34:20Z,1,2020-02-15T06:59:39Z +4360,2005-07-07T19:31:12Z,1811,92,2005-07-10T23:11:12Z,2,2020-02-15T06:59:39Z +4361,2005-07-07T19:33:23Z,116,425,2005-07-12T22:36:23Z,1,2020-02-15T06:59:39Z +4362,2005-07-07T19:35:30Z,3759,425,2005-07-14T14:59:30Z,1,2020-02-15T06:59:39Z +4363,2005-07-07T19:43:28Z,3202,168,2005-07-13T00:15:28Z,2,2020-02-15T06:59:39Z +4364,2005-07-07T19:46:51Z,10,145,2005-07-08T21:55:51Z,1,2020-02-15T06:59:39Z +4365,2005-07-07T19:47:46Z,3207,442,2005-07-08T23:21:46Z,2,2020-02-15T06:59:39Z +4366,2005-07-07T19:48:36Z,2961,524,2005-07-14T01:14:36Z,1,2020-02-15T06:59:39Z +4367,2005-07-07T19:52:01Z,4529,48,2005-07-13T19:41:01Z,2,2020-02-15T06:59:39Z +4368,2005-07-07T19:55:19Z,736,324,2005-07-09T00:11:19Z,1,2020-02-15T06:59:39Z +4369,2005-07-07T20:01:38Z,3552,517,2005-07-13T01:19:38Z,2,2020-02-15T06:59:39Z +4370,2005-07-07T20:05:36Z,1591,559,2005-07-16T23:58:36Z,1,2020-02-15T06:59:39Z +4371,2005-07-07T20:06:45Z,2533,90,2005-07-08T18:50:45Z,1,2020-02-15T06:59:39Z +4372,2005-07-07T20:09:01Z,2207,252,2005-07-09T18:24:01Z,1,2020-02-15T06:59:39Z +4373,2005-07-07T20:10:59Z,3593,470,2005-07-12T21:30:59Z,2,2020-02-15T06:59:39Z +4374,2005-07-07T20:13:58Z,4377,517,2005-07-11T18:11:58Z,2,2020-02-15T06:59:39Z +4375,2005-07-07T20:20:29Z,3035,560,2005-07-16T19:29:29Z,2,2020-02-15T06:59:39Z +4376,2005-07-07T20:24:33Z,1344,151,2005-07-11T18:32:33Z,1,2020-02-15T06:59:39Z +4377,2005-07-07T20:28:57Z,3294,205,2005-07-16T02:13:57Z,2,2020-02-15T06:59:39Z +4378,2005-07-07T20:29:08Z,1244,24,2005-07-12T19:17:08Z,2,2020-02-15T06:59:39Z +4379,2005-07-07T20:32:30Z,2773,316,2005-07-11T20:40:30Z,2,2020-02-15T06:59:39Z +4380,2005-07-07T20:35:00Z,3164,353,2005-07-14T17:06:00Z,1,2020-02-15T06:59:39Z +4381,2005-07-07T20:37:53Z,3727,486,2005-07-10T16:54:53Z,1,2020-02-15T06:59:39Z +4382,2005-07-07T20:41:03Z,657,26,2005-07-14T15:15:03Z,1,2020-02-15T06:59:39Z +4383,2005-07-07T20:45:51Z,2649,591,2005-07-17T00:52:51Z,2,2020-02-15T06:59:39Z +4384,2005-07-07T20:46:45Z,1178,59,2005-07-16T21:54:45Z,1,2020-02-15T06:59:39Z +4385,2005-07-07T20:48:38Z,849,564,2005-07-11T17:03:38Z,2,2020-02-15T06:59:39Z +4386,2005-07-07T20:55:19Z,499,314,2005-07-10T21:51:19Z,1,2020-02-15T06:59:39Z +4387,2005-07-07T20:56:47Z,591,335,2005-07-16T00:51:47Z,1,2020-02-15T06:59:39Z +4388,2005-07-07T20:58:03Z,3150,210,2005-07-16T20:05:03Z,2,2020-02-15T06:59:39Z +4389,2005-07-07T20:58:58Z,1672,166,2005-07-13T19:57:58Z,2,2020-02-15T06:59:39Z +4390,2005-07-07T20:59:06Z,6,44,2005-07-09T00:04:06Z,2,2020-02-15T06:59:39Z +4391,2005-07-07T21:09:38Z,2135,42,2005-07-09T17:35:38Z,1,2020-02-15T06:59:39Z +4392,2005-07-07T21:11:02Z,4236,491,2005-07-13T21:52:02Z,1,2020-02-15T06:59:39Z +4393,2005-07-07T21:12:36Z,4034,395,2005-07-09T22:41:36Z,2,2020-02-15T06:59:39Z +4394,2005-07-07T21:12:45Z,563,156,2005-07-16T18:24:45Z,2,2020-02-15T06:59:39Z +4395,2005-07-07T21:13:22Z,360,544,2005-07-08T22:59:22Z,2,2020-02-15T06:59:39Z +4396,2005-07-07T21:14:19Z,750,275,2005-07-10T19:22:19Z,1,2020-02-15T06:59:39Z +4397,2005-07-07T21:14:54Z,3085,494,2005-07-13T19:24:54Z,2,2020-02-15T06:59:39Z +4398,2005-07-07T21:18:44Z,3628,426,2005-07-10T22:45:44Z,1,2020-02-15T06:59:39Z +4399,2005-07-07T21:20:28Z,4515,402,2005-07-12T20:57:28Z,2,2020-02-15T06:59:39Z +4400,2005-07-07T21:22:26Z,49,370,2005-07-16T00:59:26Z,2,2020-02-15T06:59:39Z +4401,2005-07-07T21:26:27Z,2725,405,2005-07-12T17:18:27Z,2,2020-02-15T06:59:39Z +4402,2005-07-07T21:28:46Z,1198,26,2005-07-08T17:04:46Z,1,2020-02-15T06:59:39Z +4403,2005-07-07T21:29:40Z,3973,447,2005-07-09T17:58:40Z,1,2020-02-15T06:59:39Z +4404,2005-07-07T21:31:53Z,944,25,2005-07-13T19:00:53Z,1,2020-02-15T06:59:39Z +4405,2005-07-07T21:33:16Z,2102,145,2005-07-15T00:33:16Z,2,2020-02-15T06:59:39Z +4406,2005-07-07T21:35:16Z,438,448,2005-07-15T16:13:16Z,2,2020-02-15T06:59:39Z +4407,2005-07-07T21:39:45Z,267,20,2005-07-11T23:40:45Z,1,2020-02-15T06:59:39Z +4408,2005-07-07T21:41:06Z,2482,258,2005-07-11T00:32:06Z,1,2020-02-15T06:59:39Z +4409,2005-07-07T21:47:29Z,3153,8,2005-07-11T20:14:29Z,2,2020-02-15T06:59:39Z +4410,2005-07-07T21:48:16Z,2754,584,2005-07-09T03:15:16Z,1,2020-02-15T06:59:39Z +4411,2005-07-07T21:54:58Z,320,224,2005-07-14T16:14:58Z,2,2020-02-15T06:59:39Z +4412,2005-07-07T21:56:53Z,1181,282,2005-07-11T19:28:53Z,1,2020-02-15T06:59:39Z +4413,2005-07-07T22:00:04Z,1062,565,2005-07-10T18:20:04Z,2,2020-02-15T06:59:39Z +4414,2005-07-07T22:00:21Z,991,434,2005-07-12T02:51:21Z,1,2020-02-15T06:59:39Z +4415,2005-07-07T22:01:43Z,1403,329,2005-07-13T03:09:43Z,2,2020-02-15T06:59:39Z +4416,2005-07-07T22:04:36Z,1247,290,2005-07-09T02:44:36Z,2,2020-02-15T06:59:39Z +4417,2005-07-07T22:05:05Z,743,452,2005-07-09T16:16:05Z,2,2020-02-15T06:59:39Z +4418,2005-07-07T22:05:30Z,4368,417,2005-07-11T18:42:30Z,1,2020-02-15T06:59:39Z +4419,2005-07-07T22:06:24Z,783,39,2005-07-15T23:59:24Z,1,2020-02-15T06:59:39Z +4420,2005-07-07T22:07:31Z,4427,346,2005-07-12T19:14:31Z,2,2020-02-15T06:59:39Z +4421,2005-07-07T22:07:55Z,4103,417,2005-07-16T20:21:55Z,1,2020-02-15T06:59:39Z +4422,2005-07-07T22:09:45Z,1741,345,2005-07-10T01:43:45Z,1,2020-02-15T06:59:39Z +4423,2005-07-07T22:11:28Z,2721,526,2005-07-14T18:49:28Z,2,2020-02-15T06:59:39Z +4424,2005-07-07T22:14:43Z,662,384,2005-07-11T01:17:43Z,1,2020-02-15T06:59:39Z +4425,2005-07-07T22:22:44Z,877,345,2005-07-08T22:23:44Z,2,2020-02-15T06:59:39Z +4426,2005-07-07T22:28:32Z,364,242,2005-07-16T02:04:32Z,1,2020-02-15T06:59:39Z +4427,2005-07-07T22:28:51Z,1021,69,2005-07-11T21:37:51Z,2,2020-02-15T06:59:39Z +4428,2005-07-07T22:29:40Z,2575,181,2005-07-11T02:46:40Z,2,2020-02-15T06:59:39Z +4429,2005-07-07T22:32:47Z,2949,187,2005-07-15T03:10:47Z,2,2020-02-15T06:59:39Z +4430,2005-07-07T22:35:24Z,3436,278,2005-07-14T23:49:24Z,1,2020-02-15T06:59:39Z +4431,2005-07-07T22:39:02Z,936,26,2005-07-16T19:24:02Z,1,2020-02-15T06:59:39Z +4432,2005-07-07T22:40:02Z,2779,295,2005-07-15T01:46:02Z,1,2020-02-15T06:59:39Z +4433,2005-07-07T22:45:41Z,88,449,2005-07-16T23:30:41Z,2,2020-02-15T06:59:39Z +4434,2005-07-07T22:48:34Z,1801,32,2005-07-09T18:55:34Z,1,2020-02-15T06:59:39Z +4435,2005-07-07T22:51:04Z,3815,157,2005-07-14T23:15:04Z,2,2020-02-15T06:59:39Z +4436,2005-07-07T22:52:04Z,4326,563,2005-07-10T04:51:04Z,1,2020-02-15T06:59:39Z +4437,2005-07-07T22:55:41Z,3578,414,2005-07-13T19:40:41Z,1,2020-02-15T06:59:39Z +4438,2005-07-07T22:56:17Z,4371,104,2005-07-16T17:28:17Z,1,2020-02-15T06:59:39Z +4439,2005-07-07T22:57:30Z,2393,521,2005-07-10T18:28:30Z,1,2020-02-15T06:59:39Z +4440,2005-07-07T23:00:58Z,1236,507,2005-07-08T21:31:58Z,2,2020-02-15T06:59:39Z +4441,2005-07-07T23:04:23Z,3680,211,2005-07-13T19:07:23Z,1,2020-02-15T06:59:39Z +4442,2005-07-07T23:05:30Z,461,123,2005-07-13T22:20:30Z,2,2020-02-15T06:59:39Z +4443,2005-07-07T23:05:53Z,72,389,2005-07-16T01:46:53Z,1,2020-02-15T06:59:39Z +4444,2005-07-07T23:07:44Z,764,529,2005-07-14T02:51:44Z,2,2020-02-15T06:59:39Z +4445,2005-07-07T23:08:22Z,3328,327,2005-07-16T03:49:22Z,1,2020-02-15T06:59:39Z +4446,2005-07-07T23:12:16Z,2629,438,2005-07-13T19:42:16Z,1,2020-02-15T06:59:39Z +4447,2005-07-07T23:15:28Z,404,549,2005-07-14T22:53:28Z,2,2020-02-15T06:59:39Z +4448,2005-07-07T23:17:12Z,2768,536,2005-07-13T18:26:12Z,1,2020-02-15T06:59:39Z +4449,2005-07-07T23:18:58Z,2813,354,2005-07-15T20:40:58Z,2,2020-02-15T06:59:39Z +4450,2005-07-07T23:20:05Z,1252,345,2005-07-13T19:50:05Z,2,2020-02-15T06:59:39Z +4451,2005-07-07T23:29:54Z,179,85,2005-07-10T23:29:54Z,2,2020-02-15T06:59:39Z +4452,2005-07-07T23:31:54Z,2414,460,2005-07-14T04:05:54Z,1,2020-02-15T06:59:39Z +4453,2005-07-07T23:32:39Z,89,560,2005-07-12T01:38:39Z,2,2020-02-15T06:59:39Z +4454,2005-07-07T23:37:00Z,1395,9,2005-07-11T02:30:00Z,1,2020-02-15T06:59:39Z +4455,2005-07-07T23:43:46Z,1396,507,2005-07-08T21:34:46Z,2,2020-02-15T06:59:39Z +4456,2005-07-07T23:45:21Z,3395,421,2005-07-13T23:03:21Z,2,2020-02-15T06:59:39Z +4457,2005-07-07T23:45:38Z,407,567,2005-07-09T20:02:38Z,1,2020-02-15T06:59:39Z +4458,2005-07-07T23:47:47Z,1307,229,2005-07-09T19:17:47Z,2,2020-02-15T06:59:39Z +4459,2005-07-07T23:48:52Z,3987,227,2005-07-13T19:37:52Z,2,2020-02-15T06:59:39Z +4460,2005-07-07T23:50:14Z,4121,592,2005-07-09T21:55:14Z,1,2020-02-15T06:59:39Z +4461,2005-07-07T23:59:43Z,3656,286,2005-07-16T19:44:43Z,2,2020-02-15T06:59:39Z +4462,2005-07-08T00:02:49Z,4120,257,2005-07-15T20:48:49Z,2,2020-02-15T06:59:39Z +4463,2005-07-08T00:04:59Z,4356,422,2005-07-16T01:19:59Z,1,2020-02-15T06:59:39Z +4464,2005-07-08T00:07:18Z,4484,583,2005-07-08T22:14:18Z,2,2020-02-15T06:59:39Z +4465,2005-07-08T00:07:45Z,2877,329,2005-07-13T18:08:45Z,2,2020-02-15T06:59:39Z +4466,2005-07-08T00:12:53Z,3320,304,2005-07-17T03:49:53Z,2,2020-02-15T06:59:39Z +4467,2005-07-08T00:13:52Z,4466,339,2005-07-09T00:52:52Z,1,2020-02-15T06:59:39Z +4468,2005-07-08T00:17:59Z,3302,170,2005-07-12T05:51:59Z,2,2020-02-15T06:59:39Z +4469,2005-07-08T00:18:32Z,2173,192,2005-07-12T21:17:32Z,2,2020-02-15T06:59:39Z +4470,2005-07-08T00:20:57Z,3605,145,2005-07-10T02:31:57Z,1,2020-02-15T06:59:39Z +4471,2005-07-08T00:21:29Z,263,30,2005-07-11T18:48:29Z,2,2020-02-15T06:59:39Z +4472,2005-07-08T00:22:06Z,2089,343,2005-07-16T20:16:06Z,1,2020-02-15T06:59:39Z +4473,2005-07-08T00:22:10Z,1387,481,2005-07-09T21:11:10Z,1,2020-02-15T06:59:39Z +4474,2005-07-08T00:26:56Z,4474,137,2005-07-12T23:07:56Z,1,2020-02-15T06:59:39Z +4475,2005-07-08T00:27:30Z,3466,340,2005-07-09T05:39:30Z,1,2020-02-15T06:59:39Z +4476,2005-07-08T00:34:25Z,395,279,2005-07-08T22:55:25Z,1,2020-02-15T06:59:39Z +4477,2005-07-08T00:38:24Z,1602,552,2005-07-13T05:14:24Z,1,2020-02-15T06:59:39Z +4478,2005-07-08T00:39:08Z,1764,357,2005-07-11T21:57:08Z,2,2020-02-15T06:59:39Z +4479,2005-07-08T00:52:35Z,3516,211,2005-07-09T20:19:35Z,2,2020-02-15T06:59:39Z +4480,2005-07-08T00:56:30Z,4457,296,2005-07-10T20:52:30Z,2,2020-02-15T06:59:39Z +4481,2005-07-08T00:58:15Z,1669,474,2005-07-11T23:22:15Z,2,2020-02-15T06:59:39Z +4482,2005-07-08T01:01:18Z,3500,511,2005-07-11T01:18:18Z,1,2020-02-15T06:59:39Z +4483,2005-07-08T01:03:12Z,1222,425,2005-07-17T00:20:12Z,1,2020-02-15T06:59:39Z +4484,2005-07-08T01:05:57Z,2867,306,2005-07-16T00:41:57Z,2,2020-02-15T06:59:39Z +4485,2005-07-08T01:07:54Z,2614,130,2005-07-16T03:19:54Z,2,2020-02-15T06:59:39Z +4486,2005-07-08T01:09:09Z,837,197,2005-07-16T23:40:09Z,1,2020-02-15T06:59:39Z +4487,2005-07-08T01:20:22Z,2220,360,2005-07-16T21:23:22Z,2,2020-02-15T06:59:39Z +4488,2005-07-08T01:22:23Z,2108,89,2005-07-13T21:17:23Z,1,2020-02-15T06:59:39Z +4489,2005-07-08T01:23:58Z,4306,259,2005-07-09T01:35:58Z,2,2020-02-15T06:59:39Z +4490,2005-07-08T01:26:32Z,2690,161,2005-07-09T01:13:32Z,1,2020-02-15T06:59:39Z +4491,2005-07-08T01:30:46Z,1168,413,2005-07-11T03:12:46Z,1,2020-02-15T06:59:39Z +4492,2005-07-08T01:32:04Z,1152,247,2005-07-10T22:11:04Z,1,2020-02-15T06:59:39Z +4493,2005-07-08T01:40:24Z,1369,167,2005-07-09T02:17:24Z,2,2020-02-15T06:59:39Z +4494,2005-07-08T01:42:45Z,1655,349,2005-07-16T22:29:45Z,2,2020-02-15T06:59:39Z +4495,2005-07-08T01:43:46Z,3515,404,2005-07-10T07:38:46Z,1,2020-02-15T06:59:39Z +4496,2005-07-08T01:44:19Z,150,578,2005-07-08T20:34:19Z,2,2020-02-15T06:59:39Z +4497,2005-07-08T01:51:32Z,1995,142,2005-07-15T22:56:32Z,1,2020-02-15T06:59:39Z +4498,2005-07-08T02:07:50Z,4299,43,2005-07-12T23:54:50Z,2,2020-02-15T06:59:39Z +4499,2005-07-08T02:08:48Z,851,199,2005-07-10T07:06:48Z,2,2020-02-15T06:59:39Z +4500,2005-07-08T02:10:01Z,398,462,2005-07-15T05:49:01Z,2,2020-02-15T06:59:39Z +4501,2005-07-08T02:12:00Z,1412,262,2005-07-10T02:16:00Z,2,2020-02-15T06:59:39Z +4502,2005-07-08T02:12:04Z,225,470,2005-07-15T02:19:04Z,2,2020-02-15T06:59:39Z +4503,2005-07-08T02:17:12Z,1503,8,2005-07-13T08:12:12Z,1,2020-02-15T06:59:39Z +4504,2005-07-08T02:19:27Z,361,422,2005-07-12T21:15:27Z,1,2020-02-15T06:59:39Z +4505,2005-07-08T02:20:04Z,1864,481,2005-07-14T20:28:04Z,2,2020-02-15T06:59:39Z +4506,2005-07-08T02:22:18Z,1484,133,2005-07-13T04:54:18Z,2,2020-02-15T06:59:39Z +4507,2005-07-08T02:22:45Z,819,505,2005-07-14T20:53:45Z,1,2020-02-15T06:59:39Z +4508,2005-07-08T02:28:41Z,3996,97,2005-07-16T23:59:41Z,1,2020-02-15T06:59:39Z +4509,2005-07-08T02:32:38Z,1760,230,2005-07-14T01:05:38Z,2,2020-02-15T06:59:39Z +4510,2005-07-08T02:34:51Z,1085,27,2005-07-17T06:03:51Z,2,2020-02-15T06:59:39Z +4511,2005-07-08T02:36:21Z,4438,75,2005-07-15T06:01:21Z,1,2020-02-15T06:59:39Z +4512,2005-07-08T02:38:56Z,1569,424,2005-07-10T20:46:56Z,1,2020-02-15T06:59:39Z +4513,2005-07-08T02:39:59Z,3704,182,2005-07-14T07:48:59Z,2,2020-02-15T06:59:39Z +4514,2005-07-08T02:41:25Z,1938,576,2005-07-15T06:17:25Z,1,2020-02-15T06:59:39Z +4515,2005-07-08T02:42:03Z,1998,229,2005-07-10T07:22:03Z,2,2020-02-15T06:59:39Z +4516,2005-07-08T02:43:41Z,2314,497,2005-07-14T02:20:41Z,1,2020-02-15T06:59:39Z +4517,2005-07-08T02:45:19Z,453,16,2005-07-12T03:04:19Z,2,2020-02-15T06:59:39Z +4518,2005-07-08T02:48:36Z,697,592,2005-07-13T04:53:36Z,2,2020-02-15T06:59:39Z +4519,2005-07-08T02:51:23Z,4425,459,2005-07-12T06:52:23Z,2,2020-02-15T06:59:39Z +4520,2005-07-08T02:53:46Z,3505,104,2005-07-08T22:27:46Z,2,2020-02-15T06:59:39Z +4521,2005-07-08T02:57:56Z,2652,327,2005-07-11T22:49:56Z,2,2020-02-15T06:59:39Z +4522,2005-07-08T03:03:12Z,4114,307,2005-07-10T04:49:12Z,1,2020-02-15T06:59:39Z +4523,2005-07-08T03:06:59Z,2785,347,2005-07-17T04:44:59Z,1,2020-02-15T06:59:39Z +4524,2005-07-08T03:10:48Z,2218,185,2005-07-09T07:49:48Z,2,2020-02-15T06:59:39Z +4525,2005-07-08T03:15:00Z,3631,458,2005-07-11T04:53:00Z,1,2020-02-15T06:59:39Z +4526,2005-07-08T03:17:05Z,1443,1,2005-07-14T01:19:05Z,2,2020-02-15T06:59:39Z +4527,2005-07-08T03:20:10Z,2263,468,2005-07-15T02:21:10Z,1,2020-02-15T06:59:39Z +4528,2005-07-08T03:24:54Z,3209,439,2005-07-09T03:50:54Z,2,2020-02-15T06:59:39Z +4529,2005-07-08T03:26:20Z,1361,104,2005-07-16T05:04:20Z,1,2020-02-15T06:59:39Z +4530,2005-07-08T03:27:05Z,3775,79,2005-07-11T07:44:05Z,1,2020-02-15T06:59:39Z +4531,2005-07-08T03:27:59Z,3108,142,2005-07-10T22:48:59Z,1,2020-02-15T06:59:39Z +4532,2005-07-08T03:30:39Z,4012,481,2005-07-11T21:49:39Z,1,2020-02-15T06:59:39Z +4533,2005-07-08T03:32:01Z,1105,474,2005-07-10T21:57:01Z,1,2020-02-15T06:59:39Z +4534,2005-07-08T03:36:55Z,2518,132,2005-07-16T00:49:55Z,2,2020-02-15T06:59:39Z +4535,2005-07-08T03:40:46Z,561,29,2005-07-13T06:53:46Z,2,2020-02-15T06:59:39Z +4536,2005-07-08T03:43:22Z,220,26,2005-07-15T08:44:22Z,1,2020-02-15T06:59:39Z +4537,2005-07-08T03:48:40Z,1305,448,2005-07-13T22:54:40Z,2,2020-02-15T06:59:39Z +4538,2005-07-08T03:56:29Z,3638,451,2005-07-15T08:24:29Z,1,2020-02-15T06:59:39Z +4539,2005-07-08T04:01:02Z,2450,264,2005-07-14T22:32:02Z,1,2020-02-15T06:59:39Z +4540,2005-07-08T04:03:28Z,4160,309,2005-07-13T03:31:28Z,2,2020-02-15T06:59:39Z +4541,2005-07-08T04:04:19Z,1976,248,2005-07-13T07:27:19Z,2,2020-02-15T06:59:39Z +4542,2005-07-08T04:06:30Z,4169,293,2005-07-16T06:54:30Z,2,2020-02-15T06:59:39Z +4543,2005-07-08T04:06:55Z,913,41,2005-07-12T23:17:55Z,2,2020-02-15T06:59:39Z +4544,2005-07-08T04:11:04Z,4471,351,2005-07-09T22:48:04Z,1,2020-02-15T06:59:39Z +4545,2005-07-08T04:17:47Z,3658,271,2005-07-13T07:19:47Z,1,2020-02-15T06:59:39Z +4546,2005-07-08T04:18:36Z,4507,393,2005-07-17T08:23:36Z,1,2020-02-15T06:59:39Z +4547,2005-07-08T04:20:19Z,3386,255,2005-07-09T00:28:19Z,2,2020-02-15T06:59:39Z +4548,2005-07-08T04:21:54Z,765,164,2005-07-14T23:16:54Z,2,2020-02-15T06:59:39Z +4549,2005-07-08T04:25:03Z,2797,98,2005-07-10T09:01:03Z,2,2020-02-15T06:59:39Z +4550,2005-07-08T04:34:00Z,615,409,2005-07-14T23:45:00Z,2,2020-02-15T06:59:39Z +4551,2005-07-08T04:36:21Z,1160,494,2005-07-17T10:23:21Z,2,2020-02-15T06:59:39Z +4552,2005-07-08T04:36:35Z,2549,313,2005-07-14T05:48:35Z,2,2020-02-15T06:59:39Z +4553,2005-07-08T04:43:41Z,2114,529,2005-07-09T23:55:41Z,1,2020-02-15T06:59:39Z +4554,2005-07-08T04:48:03Z,3878,376,2005-07-16T04:34:03Z,1,2020-02-15T06:59:39Z +4555,2005-07-08T04:48:36Z,1757,68,2005-07-17T07:57:36Z,1,2020-02-15T06:59:39Z +4556,2005-07-08T04:48:41Z,4099,348,2005-07-16T08:51:41Z,2,2020-02-15T06:59:39Z +4557,2005-07-08T04:49:15Z,1191,132,2005-07-14T00:00:15Z,2,2020-02-15T06:59:39Z +4558,2005-07-08T04:55:26Z,828,448,2005-07-09T10:53:26Z,2,2020-02-15T06:59:39Z +4559,2005-07-08T04:56:49Z,1911,424,2005-07-12T08:56:49Z,2,2020-02-15T06:59:39Z +4560,2005-07-08T04:58:48Z,303,36,2005-07-10T04:27:48Z,1,2020-02-15T06:59:39Z +4561,2005-07-08T05:02:43Z,1643,500,2005-07-11T04:56:43Z,1,2020-02-15T06:59:39Z +4562,2005-07-08T05:08:32Z,963,454,2005-07-12T08:16:32Z,2,2020-02-15T06:59:39Z +4563,2005-07-08T05:08:55Z,287,522,2005-07-16T05:44:55Z,2,2020-02-15T06:59:39Z +4564,2005-07-08T05:09:38Z,2494,519,2005-07-11T05:37:38Z,2,2020-02-15T06:59:39Z +4565,2005-07-08T05:12:28Z,3755,563,2005-07-17T03:38:28Z,2,2020-02-15T06:59:39Z +4566,2005-07-08T05:18:50Z,4302,133,2005-07-15T01:53:50Z,1,2020-02-15T06:59:39Z +4567,2005-07-08T05:20:04Z,4073,202,2005-07-10T01:35:04Z,1,2020-02-15T06:59:39Z +4568,2005-07-08T05:23:59Z,2626,122,2005-07-09T06:07:59Z,1,2020-02-15T06:59:39Z +4569,2005-07-08T05:30:51Z,2925,366,2005-07-14T04:14:51Z,2,2020-02-15T06:59:39Z +4570,2005-07-08T05:33:59Z,2612,503,2005-07-14T09:27:59Z,1,2020-02-15T06:59:39Z +4571,2005-07-08T05:34:41Z,2416,86,2005-07-17T02:15:41Z,1,2020-02-15T06:59:39Z +4572,2005-07-08T05:36:59Z,1324,323,2005-07-12T04:46:59Z,2,2020-02-15T06:59:39Z +4573,2005-07-08T05:38:46Z,2478,400,2005-07-15T07:07:46Z,1,2020-02-15T06:59:39Z +4574,2005-07-08T05:39:42Z,536,257,2005-07-08T23:44:42Z,2,2020-02-15T06:59:39Z +4575,2005-07-08T05:49:14Z,231,41,2005-07-11T04:08:14Z,2,2020-02-15T06:59:39Z +4576,2005-07-08T05:51:19Z,1920,567,2005-07-10T11:36:19Z,1,2020-02-15T06:59:39Z +4577,2005-07-08T05:59:00Z,1688,442,2005-07-16T06:23:00Z,2,2020-02-15T06:59:39Z +4578,2005-07-08T06:00:17Z,1533,497,2005-07-10T06:58:17Z,2,2020-02-15T06:59:39Z +4579,2005-07-08T06:01:56Z,4290,585,2005-07-13T11:24:56Z,1,2020-02-15T06:59:39Z +4580,2005-07-08T06:04:23Z,3512,199,2005-07-15T05:42:23Z,2,2020-02-15T06:59:39Z +4581,2005-07-08T06:05:06Z,887,591,2005-07-16T00:54:06Z,1,2020-02-15T06:59:39Z +4582,2005-07-08T06:09:09Z,688,274,2005-07-14T02:23:09Z,1,2020-02-15T06:59:39Z +4583,2005-07-08T06:09:44Z,4151,365,2005-07-12T03:44:44Z,1,2020-02-15T06:59:39Z +4584,2005-07-08T06:11:02Z,2322,368,2005-07-11T05:14:02Z,1,2020-02-15T06:59:39Z +4585,2005-07-08T06:11:58Z,1622,143,2005-07-17T01:58:58Z,1,2020-02-15T06:59:39Z +4586,2005-07-08T06:12:33Z,1374,461,2005-07-13T11:06:33Z,2,2020-02-15T06:59:39Z +4587,2005-07-08T06:16:26Z,3502,63,2005-07-13T00:59:26Z,1,2020-02-15T06:59:39Z +4588,2005-07-08T06:18:01Z,3629,198,2005-07-10T08:59:01Z,1,2020-02-15T06:59:39Z +4589,2005-07-08T06:26:04Z,1192,99,2005-07-09T10:31:04Z,2,2020-02-15T06:59:39Z +4590,2005-07-08T06:27:48Z,4233,580,2005-07-14T07:46:48Z,1,2020-02-15T06:59:39Z +4591,2005-07-08T06:29:43Z,2276,182,2005-07-17T07:20:43Z,1,2020-02-15T06:59:39Z +4592,2005-07-08T06:31:28Z,2141,235,2005-07-10T06:08:28Z,2,2020-02-15T06:59:39Z +4593,2005-07-08T06:38:12Z,2897,528,2005-07-16T10:48:12Z,2,2020-02-15T06:59:39Z +4594,2005-07-08T06:40:06Z,26,506,2005-07-16T05:51:06Z,2,2020-02-15T06:59:39Z +4595,2005-07-08T06:40:25Z,760,336,2005-07-14T08:54:25Z,1,2020-02-15T06:59:39Z +4596,2005-07-08T06:41:25Z,2280,306,2005-07-14T01:36:25Z,1,2020-02-15T06:59:39Z +4597,2005-07-08T06:43:42Z,3767,545,2005-07-13T01:32:42Z,1,2020-02-15T06:59:39Z +4598,2005-07-08T06:46:26Z,258,82,2005-07-16T01:21:26Z,1,2020-02-15T06:59:39Z +4599,2005-07-08T06:48:26Z,2098,356,2005-07-11T07:06:26Z,1,2020-02-15T06:59:39Z +4600,2005-07-08T06:48:37Z,1526,457,2005-07-15T10:11:37Z,1,2020-02-15T06:59:39Z +4601,2005-07-08T06:49:10Z,3184,572,2005-07-09T07:43:10Z,1,2020-02-15T06:59:39Z +4602,2005-07-08T06:52:40Z,3616,129,2005-07-10T06:30:40Z,1,2020-02-15T06:59:39Z +4603,2005-07-08T06:57:07Z,755,334,2005-07-17T04:32:07Z,1,2020-02-15T06:59:39Z +4604,2005-07-08T06:58:43Z,4230,402,2005-07-14T06:41:43Z,1,2020-02-15T06:59:39Z +4605,2005-07-08T07:00:14Z,1139,523,2005-07-16T08:38:14Z,1,2020-02-15T06:59:39Z +4606,2005-07-08T07:05:50Z,1946,502,2005-07-16T09:11:50Z,2,2020-02-15T06:59:39Z +4607,2005-07-08T07:15:14Z,1193,281,2005-07-11T01:32:14Z,1,2020-02-15T06:59:39Z +4608,2005-07-08T07:19:11Z,758,11,2005-07-11T01:37:11Z,1,2020-02-15T06:59:39Z +4609,2005-07-08T07:22:29Z,3711,573,2005-07-10T08:06:29Z,1,2020-02-15T06:59:39Z +4610,2005-07-08T07:28:05Z,1279,265,2005-07-14T02:10:05Z,1,2020-02-15T06:59:39Z +4611,2005-07-08T07:33:56Z,3486,1,2005-07-12T13:25:56Z,2,2020-02-15T06:59:39Z +4612,2005-07-08T07:40:44Z,82,371,2005-07-12T03:48:44Z,1,2020-02-15T06:59:39Z +4613,2005-07-08T07:44:49Z,476,581,2005-07-09T04:47:49Z,1,2020-02-15T06:59:39Z +4614,2005-07-08T07:45:17Z,2579,71,2005-07-12T02:10:17Z,2,2020-02-15T06:59:39Z +4615,2005-07-08T07:46:53Z,1200,404,2005-07-16T12:43:53Z,2,2020-02-15T06:59:39Z +4616,2005-07-08T07:48:12Z,2580,280,2005-07-10T08:13:12Z,2,2020-02-15T06:59:39Z +4617,2005-07-08T07:55:08Z,3784,475,2005-07-17T02:49:08Z,2,2020-02-15T06:59:39Z +4618,2005-07-08T08:00:20Z,3691,179,2005-07-14T05:59:20Z,1,2020-02-15T06:59:39Z +4619,2005-07-08T08:01:09Z,2127,579,2005-07-16T05:52:09Z,2,2020-02-15T06:59:39Z +4620,2005-07-08T08:01:44Z,3467,210,2005-07-16T07:43:44Z,2,2020-02-15T06:59:39Z +4621,2005-07-08T08:02:18Z,1594,297,2005-07-12T08:53:18Z,2,2020-02-15T06:59:39Z +4622,2005-07-08T08:02:42Z,2710,289,2005-07-10T07:46:42Z,2,2020-02-15T06:59:39Z +4623,2005-07-08T08:03:22Z,4171,593,2005-07-12T09:11:22Z,2,2020-02-15T06:59:39Z +4624,2005-07-08T08:12:17Z,1548,341,2005-07-15T12:24:17Z,2,2020-02-15T06:59:39Z +4625,2005-07-08T08:14:26Z,318,473,2005-07-09T03:45:26Z,1,2020-02-15T06:59:39Z +4626,2005-07-08T08:18:21Z,37,268,2005-07-10T11:36:21Z,1,2020-02-15T06:59:39Z +4627,2005-07-08T08:24:39Z,2383,78,2005-07-13T11:04:39Z,2,2020-02-15T06:59:39Z +4628,2005-07-08T08:25:52Z,1888,540,2005-07-10T11:22:52Z,1,2020-02-15T06:59:39Z +4629,2005-07-08T08:31:26Z,228,563,2005-07-17T12:07:26Z,1,2020-02-15T06:59:39Z +4630,2005-07-08T08:33:38Z,3446,319,2005-07-09T13:09:38Z,2,2020-02-15T06:59:39Z +4631,2005-07-08T08:38:22Z,470,59,2005-07-11T03:33:22Z,2,2020-02-15T06:59:39Z +4632,2005-07-08T08:38:57Z,4330,393,2005-07-15T09:33:57Z,1,2020-02-15T06:59:39Z +4633,2005-07-08T08:39:39Z,3178,348,2005-07-15T10:23:39Z,1,2020-02-15T06:59:39Z +4634,2005-07-08T08:40:02Z,811,275,2005-07-12T04:45:02Z,2,2020-02-15T06:59:39Z +4635,2005-07-08T08:42:40Z,2434,65,2005-07-14T10:31:40Z,1,2020-02-15T06:59:39Z +4636,2005-07-08T08:44:32Z,1858,228,2005-07-10T08:59:32Z,2,2020-02-15T06:59:39Z +4637,2005-07-08T08:49:54Z,1917,263,2005-07-11T13:12:54Z,2,2020-02-15T06:59:39Z +4638,2005-07-08T08:57:20Z,2240,305,2005-07-10T05:08:20Z,2,2020-02-15T06:59:39Z +4639,2005-07-08T08:57:21Z,2459,75,2005-07-14T11:22:21Z,2,2020-02-15T06:59:39Z +4640,2005-07-08T08:59:34Z,1147,506,2005-07-15T03:31:34Z,1,2020-02-15T06:59:39Z +4641,2005-07-08T09:09:46Z,2436,26,2005-07-17T03:54:46Z,2,2020-02-15T06:59:39Z +4642,2005-07-08T09:13:28Z,1962,30,2005-07-10T06:17:28Z,2,2020-02-15T06:59:39Z +4643,2005-07-08T09:13:56Z,239,436,2005-07-10T12:09:56Z,2,2020-02-15T06:59:39Z +4644,2005-07-08T09:14:29Z,3239,38,2005-07-10T07:20:29Z,2,2020-02-15T06:59:39Z +4645,2005-07-08T09:20:09Z,687,400,2005-07-09T06:07:09Z,2,2020-02-15T06:59:39Z +4646,2005-07-08T09:23:26Z,618,362,2005-07-16T04:03:26Z,1,2020-02-15T06:59:39Z +4647,2005-07-08T09:27:36Z,674,312,2005-07-16T14:56:36Z,2,2020-02-15T06:59:39Z +4648,2005-07-08T09:31:27Z,3490,444,2005-07-13T03:55:27Z,2,2020-02-15T06:59:39Z +4649,2005-07-08T09:32:05Z,1116,221,2005-07-15T08:37:05Z,2,2020-02-15T06:59:39Z +4650,2005-07-08T09:32:08Z,2850,108,2005-07-15T15:20:08Z,1,2020-02-15T06:59:39Z +4651,2005-07-08T09:39:39Z,4064,557,2005-07-09T12:14:39Z,2,2020-02-15T06:59:39Z +4652,2005-07-08T09:47:51Z,4198,127,2005-07-16T04:09:51Z,2,2020-02-15T06:59:39Z +4653,2005-07-08T09:48:01Z,2511,404,2005-07-17T05:18:01Z,1,2020-02-15T06:59:39Z +4654,2005-07-08T09:48:03Z,4210,434,2005-07-17T13:17:03Z,1,2020-02-15T06:59:39Z +4655,2005-07-08T09:49:22Z,4078,213,2005-07-15T13:08:22Z,1,2020-02-15T06:59:39Z +4656,2005-07-08T09:50:10Z,839,141,2005-07-13T15:00:10Z,1,2020-02-15T06:59:39Z +4657,2005-07-08T09:51:02Z,1002,54,2005-07-09T09:29:02Z,2,2020-02-15T06:59:39Z +4658,2005-07-08T09:51:11Z,3131,166,2005-07-10T12:30:11Z,2,2020-02-15T06:59:39Z +4659,2005-07-08T09:53:28Z,4389,425,2005-07-14T14:56:28Z,2,2020-02-15T06:59:39Z +4660,2005-07-08T09:54:47Z,1208,139,2005-07-11T15:19:47Z,2,2020-02-15T06:59:39Z +4661,2005-07-08T09:55:06Z,2641,518,2005-07-11T08:26:06Z,1,2020-02-15T06:59:39Z +4662,2005-07-08T09:58:54Z,1370,553,2005-07-10T12:51:54Z,1,2020-02-15T06:59:39Z +4663,2005-07-08T09:59:18Z,2959,139,2005-07-10T11:25:18Z,1,2020-02-15T06:59:39Z +4664,2005-07-08T10:01:28Z,1318,546,2005-07-12T10:37:28Z,2,2020-02-15T06:59:39Z +4665,2005-07-08T10:04:24Z,575,106,2005-07-14T15:13:24Z,1,2020-02-15T06:59:39Z +4666,2005-07-08T10:05:02Z,4576,120,2005-07-16T07:28:02Z,1,2020-02-15T06:59:39Z +4667,2005-07-08T10:06:26Z,3348,485,2005-07-14T04:48:26Z,1,2020-02-15T06:59:39Z +4668,2005-07-08T10:11:45Z,3971,481,2005-07-17T13:01:45Z,2,2020-02-15T06:59:39Z +4669,2005-07-08T10:13:08Z,3494,581,2005-07-16T07:52:08Z,1,2020-02-15T06:59:39Z +4670,2005-07-08T10:14:18Z,3317,153,2005-07-16T15:10:18Z,2,2020-02-15T06:59:39Z +4671,2005-07-08T10:15:32Z,2139,55,2005-07-14T08:19:32Z,2,2020-02-15T06:59:39Z +4672,2005-07-08T10:15:38Z,1922,18,2005-07-16T05:06:38Z,1,2020-02-15T06:59:39Z +4673,2005-07-08T10:16:00Z,2792,91,2005-07-17T10:03:00Z,2,2020-02-15T06:59:39Z +4674,2005-07-08T10:19:28Z,1617,329,2005-07-12T12:54:28Z,2,2020-02-15T06:59:39Z +4675,2005-07-08T10:24:22Z,1309,380,2005-07-14T11:09:22Z,1,2020-02-15T06:59:39Z +4676,2005-07-08T10:26:02Z,2590,302,2005-07-10T13:38:02Z,2,2020-02-15T06:59:39Z +4677,2005-07-08T10:30:36Z,1226,258,2005-07-14T12:40:36Z,1,2020-02-15T06:59:39Z +4678,2005-07-08T10:30:40Z,241,219,2005-07-13T11:08:40Z,1,2020-02-15T06:59:39Z +4679,2005-07-08T10:33:14Z,3610,423,2005-07-15T14:30:14Z,2,2020-02-15T06:59:39Z +4680,2005-07-08T10:35:28Z,4043,227,2005-07-14T08:42:28Z,1,2020-02-15T06:59:39Z +4681,2005-07-08T10:36:03Z,1025,133,2005-07-16T09:21:03Z,2,2020-02-15T06:59:39Z +4682,2005-07-08T10:38:27Z,873,263,2005-07-11T06:29:27Z,2,2020-02-15T06:59:39Z +4683,2005-07-08T10:38:28Z,3464,283,2005-07-09T12:07:28Z,1,2020-02-15T06:59:39Z +4684,2005-07-08T10:41:06Z,503,585,2005-07-17T10:35:06Z,1,2020-02-15T06:59:39Z +4685,2005-07-08T10:45:13Z,602,590,2005-07-12T08:29:13Z,1,2020-02-15T06:59:39Z +4686,2005-07-08T10:53:39Z,1398,234,2005-07-10T05:34:39Z,2,2020-02-15T06:59:39Z +4687,2005-07-08T10:54:19Z,1156,169,2005-07-10T08:00:19Z,2,2020-02-15T06:59:39Z +4688,2005-07-08T11:03:29Z,3574,80,2005-07-17T15:41:29Z,2,2020-02-15T06:59:39Z +4689,2005-07-08T11:03:47Z,2519,364,2005-07-16T06:07:47Z,2,2020-02-15T06:59:39Z +4690,2005-07-08T11:04:02Z,3304,64,2005-07-15T10:27:02Z,2,2020-02-15T06:59:39Z +4691,2005-07-08T11:04:53Z,596,126,2005-07-09T07:48:53Z,1,2020-02-15T06:59:39Z +4692,2005-07-08T11:07:06Z,1490,288,2005-07-09T14:08:06Z,1,2020-02-15T06:59:39Z +4693,2005-07-08T11:07:36Z,1694,221,2005-07-14T08:40:36Z,1,2020-02-15T06:59:39Z +4694,2005-07-08T11:07:37Z,3637,229,2005-07-12T06:53:37Z,2,2020-02-15T06:59:39Z +4695,2005-07-08T11:07:59Z,805,39,2005-07-17T16:35:59Z,1,2020-02-15T06:59:39Z +4696,2005-07-08T11:12:27Z,1358,424,2005-07-14T05:41:27Z,1,2020-02-15T06:59:39Z +4697,2005-07-08T11:19:14Z,4143,224,2005-07-12T07:14:14Z,2,2020-02-15T06:59:39Z +4698,2005-07-08T11:19:31Z,3963,570,2005-07-13T13:45:31Z,2,2020-02-15T06:59:39Z +4699,2005-07-08T11:36:56Z,2462,348,2005-07-14T11:35:56Z,2,2020-02-15T06:59:39Z +4700,2005-07-08T11:37:21Z,3889,317,2005-07-12T15:41:21Z,1,2020-02-15T06:59:39Z +4701,2005-07-08T11:38:48Z,3012,522,2005-07-13T15:59:48Z,2,2020-02-15T06:59:39Z +4702,2005-07-08T11:41:36Z,2593,56,2005-07-10T06:55:36Z,1,2020-02-15T06:59:39Z +4703,2005-07-08T11:44:56Z,2859,544,2005-07-13T09:17:56Z,1,2020-02-15T06:59:39Z +4704,2005-07-08T11:45:35Z,2291,28,2005-07-10T09:46:35Z,1,2020-02-15T06:59:39Z +4705,2005-07-08T11:50:38Z,3709,85,2005-07-12T15:58:38Z,2,2020-02-15T06:59:39Z +4706,2005-07-08T11:51:41Z,2512,380,2005-07-17T12:58:41Z,1,2020-02-15T06:59:39Z +4707,2005-07-08T11:57:28Z,52,286,2005-07-10T17:47:28Z,1,2020-02-15T06:59:39Z +4708,2005-07-08T11:59:19Z,3249,212,2005-07-17T07:11:19Z,2,2020-02-15T06:59:39Z +4709,2005-07-08T12:04:34Z,3964,124,2005-07-15T06:48:34Z,1,2020-02-15T06:59:39Z +4710,2005-07-08T12:04:53Z,248,590,2005-07-13T11:28:53Z,2,2020-02-15T06:59:39Z +4711,2005-07-08T12:06:58Z,2327,563,2005-07-12T08:37:58Z,1,2020-02-15T06:59:39Z +4712,2005-07-08T12:10:50Z,2371,39,2005-07-17T14:54:50Z,2,2020-02-15T06:59:39Z +4713,2005-07-08T12:12:33Z,1399,207,2005-07-16T17:13:33Z,1,2020-02-15T06:59:39Z +4714,2005-07-08T12:12:48Z,1932,385,2005-07-17T08:43:48Z,2,2020-02-15T06:59:39Z +4715,2005-07-08T12:15:37Z,4010,276,2005-07-10T10:37:37Z,2,2020-02-15T06:59:39Z +4716,2005-07-08T12:18:51Z,1923,391,2005-07-11T11:06:51Z,2,2020-02-15T06:59:39Z +4717,2005-07-08T12:22:43Z,1491,453,2005-07-11T10:24:43Z,2,2020-02-15T06:59:39Z +4718,2005-07-08T12:32:08Z,1653,535,2005-07-17T17:34:08Z,2,2020-02-15T06:59:39Z +4719,2005-07-08T12:33:00Z,1315,556,2005-07-15T12:30:00Z,1,2020-02-15T06:59:39Z +4720,2005-07-08T12:34:34Z,2669,452,2005-07-09T10:28:34Z,1,2020-02-15T06:59:39Z +4721,2005-07-08T12:39:31Z,3105,234,2005-07-15T18:07:31Z,1,2020-02-15T06:59:39Z +4722,2005-07-08T12:42:27Z,3738,590,2005-07-09T09:14:27Z,2,2020-02-15T06:59:39Z +4723,2005-07-08T12:44:59Z,965,44,2005-07-17T07:22:59Z,2,2020-02-15T06:59:39Z +4724,2005-07-08T12:46:30Z,3375,18,2005-07-14T12:39:30Z,1,2020-02-15T06:59:39Z +4725,2005-07-08T12:47:11Z,2058,3,2005-07-15T09:08:11Z,2,2020-02-15T06:59:39Z +4726,2005-07-08T12:50:54Z,4369,144,2005-07-17T07:09:54Z,2,2020-02-15T06:59:39Z +4727,2005-07-08T12:54:15Z,1251,39,2005-07-17T14:32:15Z,2,2020-02-15T06:59:39Z +4728,2005-07-08T12:59:01Z,3687,462,2005-07-13T13:00:01Z,1,2020-02-15T06:59:39Z +4729,2005-07-08T12:59:40Z,1429,205,2005-07-10T13:35:40Z,2,2020-02-15T06:59:39Z +4730,2005-07-08T12:59:49Z,1619,126,2005-07-14T16:15:49Z,2,2020-02-15T06:59:39Z +4731,2005-07-08T13:08:18Z,4124,241,2005-07-09T13:16:18Z,2,2020-02-15T06:59:39Z +4732,2005-07-08T13:09:45Z,308,562,2005-07-14T10:10:45Z,1,2020-02-15T06:59:39Z +4733,2005-07-08T13:12:07Z,2230,93,2005-07-13T07:34:07Z,1,2020-02-15T06:59:39Z +4734,2005-07-08T13:12:12Z,1928,546,2005-07-10T09:01:12Z,2,2020-02-15T06:59:39Z +4735,2005-07-08T13:12:27Z,4324,381,2005-07-13T10:06:27Z,2,2020-02-15T06:59:39Z +4736,2005-07-08T13:22:55Z,3009,79,2005-07-17T07:27:55Z,1,2020-02-15T06:59:39Z +4737,2005-07-08T13:23:53Z,4286,116,2005-07-12T18:49:53Z,1,2020-02-15T06:59:39Z +4738,2005-07-08T13:24:58Z,2021,31,2005-07-17T17:44:58Z,2,2020-02-15T06:59:39Z +4739,2005-07-08T13:25:57Z,140,197,2005-07-11T17:36:57Z,1,2020-02-15T06:59:39Z +4740,2005-07-08T13:30:35Z,2559,379,2005-07-14T18:43:35Z,1,2020-02-15T06:59:39Z +4741,2005-07-08T13:31:23Z,516,260,2005-07-17T12:02:23Z,2,2020-02-15T06:59:39Z +4742,2005-07-08T13:35:23Z,3022,340,2005-07-11T10:24:23Z,2,2020-02-15T06:59:39Z +4743,2005-07-08T13:42:36Z,80,535,2005-07-11T18:54:36Z,2,2020-02-15T06:59:39Z +4744,2005-07-08T13:43:57Z,2948,507,2005-07-12T09:21:57Z,2,2020-02-15T06:59:39Z +4745,2005-07-08T13:45:09Z,1351,354,2005-07-12T18:54:09Z,1,2020-02-15T06:59:39Z +4746,2005-07-08T13:47:55Z,173,148,2005-07-11T09:06:55Z,2,2020-02-15T06:59:39Z +4747,2005-07-08T13:53:01Z,3942,383,2005-07-12T17:10:01Z,2,2020-02-15T06:59:39Z +4748,2005-07-08T13:59:38Z,4279,9,2005-07-15T16:51:38Z,1,2020-02-15T06:59:39Z +4749,2005-07-08T14:05:58Z,1190,236,2005-07-10T18:35:58Z,2,2020-02-15T06:59:39Z +4750,2005-07-08T14:07:03Z,3383,198,2005-07-13T18:05:03Z,1,2020-02-15T06:59:40Z +4751,2005-07-08T14:07:52Z,3469,436,2005-07-13T10:37:52Z,2,2020-02-15T06:59:40Z +4752,2005-07-08T14:15:20Z,3250,512,2005-07-12T13:22:20Z,1,2020-02-15T06:59:40Z +4753,2005-07-08T14:18:41Z,1642,391,2005-07-09T10:00:41Z,2,2020-02-15T06:59:40Z +4754,2005-07-08T14:20:01Z,3177,108,2005-07-11T11:50:01Z,1,2020-02-15T06:59:40Z +4755,2005-07-08T14:23:41Z,661,378,2005-07-10T19:35:41Z,1,2020-02-15T06:59:40Z +4756,2005-07-08T14:24:00Z,3068,351,2005-07-12T16:16:00Z,1,2020-02-15T06:59:40Z +4757,2005-07-08T14:36:51Z,1278,504,2005-07-12T15:28:51Z,1,2020-02-15T06:59:40Z +4758,2005-07-08T14:38:02Z,3698,288,2005-07-13T12:09:02Z,2,2020-02-15T06:59:40Z +4759,2005-07-08T14:39:22Z,3999,284,2005-07-17T15:02:22Z,2,2020-02-15T06:59:40Z +4760,2005-07-08T14:48:07Z,3718,177,2005-07-10T12:41:07Z,2,2020-02-15T06:59:40Z +4761,2005-07-08T14:51:45Z,3556,351,2005-07-14T20:28:45Z,1,2020-02-15T06:59:40Z +4762,2005-07-08T14:54:42Z,390,36,2005-07-12T18:08:42Z,1,2020-02-15T06:59:40Z +4763,2005-07-08T14:57:32Z,899,465,2005-07-15T10:00:32Z,2,2020-02-15T06:59:40Z +4764,2005-07-08T15:01:25Z,1188,89,2005-07-17T15:16:25Z,1,2020-02-15T06:59:40Z +4765,2005-07-08T15:08:45Z,469,437,2005-07-13T10:44:45Z,1,2020-02-15T06:59:40Z +4766,2005-07-08T15:16:04Z,1057,149,2005-07-15T11:04:04Z,2,2020-02-15T06:59:40Z +4767,2005-07-08T15:18:53Z,3744,350,2005-07-13T15:48:53Z,1,2020-02-15T06:59:40Z +4768,2005-07-08T15:28:20Z,2787,482,2005-07-09T11:46:20Z,1,2020-02-15T06:59:40Z +4769,2005-07-08T15:29:16Z,3462,501,2005-07-09T18:42:16Z,2,2020-02-15T06:59:40Z +4770,2005-07-08T15:29:46Z,2406,573,2005-07-14T13:31:46Z,1,2020-02-15T06:59:40Z +4771,2005-07-08T15:33:32Z,1060,32,2005-07-10T12:38:32Z,1,2020-02-15T06:59:40Z +4772,2005-07-08T15:41:11Z,2156,486,2005-07-17T15:25:11Z,1,2020-02-15T06:59:40Z +4773,2005-07-08T15:41:39Z,3025,519,2005-07-13T18:16:39Z,1,2020-02-15T06:59:40Z +4774,2005-07-08T15:42:28Z,673,489,2005-07-16T18:29:28Z,2,2020-02-15T06:59:40Z +4775,2005-07-08T15:44:05Z,4277,595,2005-07-11T20:39:05Z,2,2020-02-15T06:59:40Z +4776,2005-07-08T15:44:20Z,2598,563,2005-07-17T10:50:20Z,2,2020-02-15T06:59:40Z +4777,2005-07-08T15:48:34Z,449,102,2005-07-16T15:25:34Z,1,2020-02-15T06:59:40Z +4778,2005-07-08T15:51:51Z,611,78,2005-07-12T16:58:51Z,2,2020-02-15T06:59:40Z +4779,2005-07-08T15:53:41Z,1321,338,2005-07-15T20:30:41Z,1,2020-02-15T06:59:40Z +4780,2005-07-08T16:06:51Z,2740,115,2005-07-13T18:34:51Z,1,2020-02-15T06:59:40Z +4781,2005-07-08T16:06:55Z,1818,593,2005-07-16T11:22:55Z,2,2020-02-15T06:59:40Z +4782,2005-07-08T16:08:51Z,445,436,2005-07-17T17:56:51Z,1,2020-02-15T06:59:40Z +4783,2005-07-08T16:09:24Z,3952,214,2005-07-16T21:53:24Z,2,2020-02-15T06:59:40Z +4784,2005-07-08T16:09:56Z,549,182,2005-07-09T20:35:56Z,1,2020-02-15T06:59:40Z +4785,2005-07-08T16:10:19Z,58,474,2005-07-11T18:52:19Z,1,2020-02-15T06:59:40Z +4786,2005-07-08T16:13:05Z,2724,294,2005-07-16T15:29:05Z,1,2020-02-15T06:59:40Z +4787,2005-07-08T16:16:04Z,3929,7,2005-07-14T18:02:04Z,2,2020-02-15T06:59:40Z +4788,2005-07-08T16:17:35Z,691,533,2005-07-11T11:56:35Z,2,2020-02-15T06:59:40Z +4789,2005-07-08T16:22:01Z,20,73,2005-07-15T18:29:01Z,2,2020-02-15T06:59:40Z +4790,2005-07-08T16:25:27Z,100,500,2005-07-11T11:35:27Z,1,2020-02-15T06:59:40Z +4791,2005-07-08T16:27:24Z,2505,393,2005-07-14T21:50:24Z,2,2020-02-15T06:59:40Z +4792,2005-07-08T16:29:38Z,2132,147,2005-07-10T16:31:38Z,2,2020-02-15T06:59:40Z +4793,2005-07-08T16:30:01Z,3090,427,2005-07-15T17:56:01Z,1,2020-02-15T06:59:40Z +4794,2005-07-08T16:30:11Z,2497,451,2005-07-17T12:41:11Z,2,2020-02-15T06:59:40Z +4795,2005-07-08T16:32:54Z,3409,497,2005-07-09T14:15:54Z,1,2020-02-15T06:59:40Z +4796,2005-07-08T16:35:44Z,2484,9,2005-07-13T11:08:44Z,2,2020-02-15T06:59:40Z +4797,2005-07-08T16:39:05Z,1389,265,2005-07-09T11:41:05Z,1,2020-02-15T06:59:40Z +4798,2005-07-08T16:45:16Z,3874,212,2005-07-16T13:45:16Z,2,2020-02-15T06:59:40Z +4799,2005-07-08T16:49:27Z,4112,512,2005-07-12T19:58:27Z,2,2020-02-15T06:59:40Z +4800,2005-07-08T16:51:08Z,1940,99,2005-07-13T14:16:08Z,2,2020-02-15T06:59:40Z +4801,2005-07-08T16:51:36Z,761,431,2005-07-13T17:23:36Z,1,2020-02-15T06:59:40Z +4802,2005-07-08T16:55:17Z,22,562,2005-07-15T19:34:17Z,1,2020-02-15T06:59:40Z +4803,2005-07-08T16:56:34Z,1786,174,2005-07-14T20:16:34Z,1,2020-02-15T06:59:40Z +4804,2005-07-08T16:57:30Z,3756,269,2005-07-10T18:25:30Z,1,2020-02-15T06:59:40Z +4805,2005-07-08T16:59:12Z,377,453,2005-07-09T15:02:12Z,1,2020-02-15T06:59:40Z +4806,2005-07-08T17:01:02Z,214,506,2005-07-15T21:41:02Z,1,2020-02-15T06:59:40Z +4807,2005-07-08T17:01:48Z,4511,348,2005-07-16T22:33:48Z,2,2020-02-15T06:59:40Z +4808,2005-07-08T17:02:49Z,2544,563,2005-07-12T22:49:49Z,2,2020-02-15T06:59:40Z +4809,2005-07-08T17:03:22Z,4251,474,2005-07-17T22:39:22Z,1,2020-02-15T06:59:40Z +4810,2005-07-08T17:04:06Z,4056,209,2005-07-09T13:41:06Z,1,2020-02-15T06:59:40Z +4811,2005-07-08T17:04:24Z,4032,127,2005-07-12T16:41:24Z,2,2020-02-15T06:59:40Z +4812,2005-07-08T17:07:11Z,3281,304,2005-07-17T21:03:11Z,2,2020-02-15T06:59:40Z +4813,2005-07-08T17:09:56Z,2752,439,2005-07-09T22:29:56Z,1,2020-02-15T06:59:40Z +4814,2005-07-08T17:11:09Z,3497,244,2005-07-17T12:43:09Z,2,2020-02-15T06:59:40Z +4815,2005-07-08T17:12:51Z,840,581,2005-07-17T13:14:51Z,1,2020-02-15T06:59:40Z +4816,2005-07-08T17:14:14Z,2700,207,2005-07-11T15:03:14Z,1,2020-02-15T06:59:40Z +4817,2005-07-08T17:17:31Z,1608,145,2005-07-09T22:32:31Z,2,2020-02-15T06:59:40Z +4818,2005-07-08T17:18:22Z,115,144,2005-07-14T14:40:22Z,1,2020-02-15T06:59:40Z +4819,2005-07-08T17:19:15Z,1342,64,2005-07-16T14:32:15Z,1,2020-02-15T06:59:40Z +4820,2005-07-08T17:25:23Z,2672,172,2005-07-17T20:32:23Z,2,2020-02-15T06:59:40Z +4821,2005-07-08T17:28:08Z,1690,172,2005-07-11T17:44:08Z,1,2020-02-15T06:59:40Z +4822,2005-07-08T17:28:47Z,3970,185,2005-07-14T13:06:47Z,1,2020-02-15T06:59:40Z +4823,2005-07-08T17:28:54Z,155,206,2005-07-11T23:10:54Z,1,2020-02-15T06:59:40Z +4824,2005-07-08T17:37:39Z,1855,225,2005-07-16T18:27:39Z,1,2020-02-15T06:59:40Z +4825,2005-07-08T17:43:01Z,2419,563,2005-07-11T20:58:01Z,1,2020-02-15T06:59:40Z +4826,2005-07-08T17:44:25Z,911,180,2005-07-16T20:14:25Z,2,2020-02-15T06:59:40Z +4827,2005-07-08T17:46:30Z,4455,110,2005-07-11T14:12:30Z,2,2020-02-15T06:59:40Z +4828,2005-07-08T17:52:29Z,1100,92,2005-07-11T14:35:29Z,1,2020-02-15T06:59:40Z +4829,2005-07-08T17:54:18Z,2661,133,2005-07-11T23:41:18Z,1,2020-02-15T06:59:40Z +4830,2005-07-08T17:56:23Z,1150,359,2005-07-17T21:40:23Z,2,2020-02-15T06:59:40Z +4831,2005-07-08T18:00:14Z,2739,243,2005-07-12T15:54:14Z,2,2020-02-15T06:59:40Z +4832,2005-07-08T18:07:05Z,1838,509,2005-07-10T19:37:05Z,2,2020-02-15T06:59:40Z +4833,2005-07-08T18:07:35Z,2921,581,2005-07-13T15:29:35Z,2,2020-02-15T06:59:40Z +4834,2005-07-08T18:07:45Z,1288,301,2005-07-14T15:27:45Z,1,2020-02-15T06:59:40Z +4835,2005-07-08T18:08:13Z,2499,95,2005-07-17T16:51:13Z,2,2020-02-15T06:59:40Z +4836,2005-07-08T18:09:08Z,2756,311,2005-07-15T20:19:08Z,1,2020-02-15T06:59:40Z +4837,2005-07-08T18:09:12Z,1944,149,2005-07-11T16:40:12Z,1,2020-02-15T06:59:40Z +4838,2005-07-08T18:11:00Z,3733,84,2005-07-17T12:57:00Z,2,2020-02-15T06:59:40Z +4839,2005-07-08T18:13:10Z,1810,556,2005-07-15T12:49:10Z,1,2020-02-15T06:59:40Z +4840,2005-07-08T18:18:16Z,1670,119,2005-07-16T14:59:16Z,1,2020-02-15T06:59:40Z +4841,2005-07-08T18:18:23Z,518,248,2005-07-11T16:51:23Z,2,2020-02-15T06:59:40Z +4842,2005-07-08T18:21:30Z,1438,160,2005-07-10T22:25:30Z,2,2020-02-15T06:59:40Z +4843,2005-07-08T18:27:28Z,3640,45,2005-07-15T00:26:28Z,2,2020-02-15T06:59:40Z +4844,2005-07-08T18:28:13Z,4057,237,2005-07-09T21:17:13Z,2,2020-02-15T06:59:40Z +4845,2005-07-08T18:28:20Z,2337,553,2005-07-09T14:38:20Z,2,2020-02-15T06:59:40Z +4846,2005-07-08T18:29:05Z,417,556,2005-07-10T22:33:05Z,2,2020-02-15T06:59:40Z +4847,2005-07-08T18:29:13Z,3397,544,2005-07-15T18:12:13Z,2,2020-02-15T06:59:40Z +4848,2005-07-08T18:30:16Z,2962,251,2005-07-12T19:53:16Z,2,2020-02-15T06:59:40Z +4849,2005-07-08T18:34:34Z,4323,146,2005-07-14T20:27:34Z,2,2020-02-15T06:59:40Z +4850,2005-07-08T18:39:31Z,3039,154,2005-07-13T00:18:31Z,2,2020-02-15T06:59:40Z +4851,2005-07-08T18:40:05Z,134,557,2005-07-12T21:46:05Z,1,2020-02-15T06:59:40Z +4852,2005-07-08T18:43:15Z,3545,418,2005-07-15T18:48:15Z,2,2020-02-15T06:59:40Z +4853,2005-07-08T18:43:18Z,1454,23,2005-07-12T14:28:18Z,2,2020-02-15T06:59:40Z +4854,2005-07-08T18:44:44Z,3644,487,2005-07-13T13:37:44Z,1,2020-02-15T06:59:40Z +4855,2005-07-08T18:45:50Z,1146,337,2005-07-11T18:23:50Z,2,2020-02-15T06:59:40Z +4856,2005-07-08T18:47:38Z,2441,7,2005-07-13T15:02:38Z,2,2020-02-15T06:59:40Z +4857,2005-07-08T18:52:07Z,2069,211,2005-07-11T22:06:07Z,1,2020-02-15T06:59:40Z +4858,2005-07-08T18:53:24Z,3424,447,2005-07-17T20:32:24Z,2,2020-02-15T06:59:40Z +4859,2005-07-08T18:54:04Z,1939,369,2005-07-13T13:04:04Z,1,2020-02-15T06:59:40Z +4860,2005-07-08T18:54:07Z,428,123,2005-07-17T15:09:07Z,2,2020-02-15T06:59:40Z +4861,2005-07-08T18:57:30Z,2984,455,2005-07-16T15:12:30Z,2,2020-02-15T06:59:40Z +4862,2005-07-08T19:02:46Z,293,291,2005-07-17T20:17:46Z,1,2020-02-15T06:59:40Z +4863,2005-07-08T19:03:15Z,1,431,2005-07-11T21:29:15Z,2,2020-02-15T06:59:40Z +4864,2005-07-08T19:05:34Z,2974,281,2005-07-17T15:05:34Z,2,2020-02-15T06:59:40Z +4865,2005-07-08T19:09:04Z,1614,418,2005-07-13T21:25:04Z,2,2020-02-15T06:59:40Z +4866,2005-07-08T19:09:59Z,4036,278,2005-07-15T00:51:59Z,2,2020-02-15T06:59:40Z +4867,2005-07-08T19:10:52Z,4090,593,2005-07-09T21:43:52Z,2,2020-02-15T06:59:40Z +4868,2005-07-08T19:13:50Z,1157,307,2005-07-14T20:59:50Z,2,2020-02-15T06:59:40Z +4869,2005-07-08T19:14:05Z,2860,376,2005-07-15T22:27:05Z,1,2020-02-15T06:59:40Z +4870,2005-07-08T19:14:45Z,3089,260,2005-07-12T18:58:45Z,2,2020-02-15T06:59:40Z +4871,2005-07-08T19:19:52Z,2509,210,2005-07-13T20:27:52Z,2,2020-02-15T06:59:40Z +4872,2005-07-08T19:23:16Z,1836,103,2005-07-10T14:17:16Z,2,2020-02-15T06:59:40Z +4873,2005-07-08T19:23:32Z,4500,473,2005-07-11T15:24:32Z,1,2020-02-15T06:59:40Z +4874,2005-07-08T19:23:38Z,2386,223,2005-07-13T14:39:38Z,2,2020-02-15T06:59:40Z +4875,2005-07-08T19:24:17Z,843,555,2005-07-11T19:15:17Z,2,2020-02-15T06:59:40Z +4876,2005-07-08T19:27:50Z,1959,283,2005-07-14T15:42:50Z,1,2020-02-15T06:59:40Z +4877,2005-07-08T19:31:02Z,1846,287,2005-07-15T19:05:02Z,1,2020-02-15T06:59:40Z +4878,2005-07-08T19:33:49Z,4009,172,2005-07-17T17:47:49Z,1,2020-02-15T06:59:40Z +4879,2005-07-08T19:34:55Z,1406,196,2005-07-09T15:53:55Z,1,2020-02-15T06:59:40Z +4880,2005-07-08T19:36:17Z,4178,269,2005-07-13T00:01:17Z,1,2020-02-15T06:59:40Z +4881,2005-07-08T19:40:34Z,4346,349,2005-07-09T17:08:34Z,2,2020-02-15T06:59:40Z +4882,2005-07-08T19:42:03Z,4540,184,2005-07-16T22:24:03Z,1,2020-02-15T06:59:40Z +4883,2005-07-08T19:46:58Z,1366,563,2005-07-10T15:48:58Z,1,2020-02-15T06:59:40Z +4884,2005-07-08T19:49:17Z,3543,425,2005-07-15T23:14:17Z,2,2020-02-15T06:59:40Z +4885,2005-07-08T19:51:17Z,442,233,2005-07-12T16:02:17Z,2,2020-02-15T06:59:40Z +4886,2005-07-08T19:53:22Z,3393,474,2005-07-09T17:05:22Z,1,2020-02-15T06:59:40Z +4887,2005-07-08T19:59:14Z,3613,543,2005-07-15T22:53:14Z,1,2020-02-15T06:59:40Z +4888,2005-07-08T20:04:27Z,1220,527,2005-07-10T14:53:27Z,2,2020-02-15T06:59:40Z +4889,2005-07-08T20:04:43Z,4463,5,2005-07-13T17:57:43Z,2,2020-02-15T06:59:40Z +4890,2005-07-08T20:05:38Z,3576,574,2005-07-14T14:55:38Z,2,2020-02-15T06:59:40Z +4891,2005-07-08T20:06:19Z,1787,59,2005-07-16T18:52:19Z,1,2020-02-15T06:59:40Z +4892,2005-07-08T20:06:25Z,3566,193,2005-07-14T20:04:25Z,1,2020-02-15T06:59:40Z +4893,2005-07-08T20:19:55Z,2060,210,2005-07-15T21:28:55Z,2,2020-02-15T06:59:40Z +4894,2005-07-08T20:21:31Z,1028,286,2005-07-11T01:59:31Z,1,2020-02-15T06:59:40Z +4895,2005-07-08T20:22:05Z,2620,242,2005-07-12T20:49:05Z,1,2020-02-15T06:59:40Z +4896,2005-07-08T20:23:15Z,3006,129,2005-07-10T15:38:15Z,1,2020-02-15T06:59:40Z +4897,2005-07-08T20:25:11Z,2950,258,2005-07-09T17:16:11Z,1,2020-02-15T06:59:40Z +4898,2005-07-08T20:31:43Z,3212,218,2005-07-15T15:58:43Z,2,2020-02-15T06:59:40Z +4899,2005-07-08T20:37:11Z,414,32,2005-07-10T21:53:11Z,1,2020-02-15T06:59:40Z +4900,2005-07-08T20:38:06Z,3487,426,2005-07-09T22:45:06Z,2,2020-02-15T06:59:40Z +4901,2005-07-08T20:44:51Z,2187,507,2005-07-10T01:04:51Z,1,2020-02-15T06:59:40Z +4902,2005-07-08T20:49:30Z,2238,554,2005-07-13T16:54:30Z,2,2020-02-15T06:59:40Z +4903,2005-07-08T20:50:05Z,1769,132,2005-07-13T15:27:05Z,1,2020-02-15T06:59:40Z +4904,2005-07-08T20:53:27Z,2051,173,2005-07-18T01:16:27Z,1,2020-02-15T06:59:40Z +4905,2005-07-08T20:56:00Z,4101,246,2005-07-12T00:19:00Z,2,2020-02-15T06:59:40Z +4906,2005-07-08T20:59:13Z,1527,490,2005-07-15T01:12:13Z,2,2020-02-15T06:59:40Z +4907,2005-07-08T21:01:41Z,1206,209,2005-07-13T02:23:41Z,2,2020-02-15T06:59:40Z +4908,2005-07-08T21:05:44Z,1963,160,2005-07-17T21:33:44Z,2,2020-02-15T06:59:40Z +4909,2005-07-08T21:07:24Z,1451,228,2005-07-10T22:34:24Z,1,2020-02-15T06:59:40Z +4910,2005-07-08T21:13:56Z,3675,219,2005-07-18T02:39:56Z,2,2020-02-15T06:59:40Z +4911,2005-07-08T21:20:26Z,4479,66,2005-07-15T03:11:26Z,1,2020-02-15T06:59:40Z +4912,2005-07-08T21:26:11Z,2012,275,2005-07-18T02:19:11Z,1,2020-02-15T06:59:40Z +4913,2005-07-08T21:27:48Z,982,368,2005-07-18T02:51:48Z,1,2020-02-15T06:59:40Z +4914,2005-07-08T21:30:53Z,298,535,2005-07-17T01:29:53Z,1,2020-02-15T06:59:40Z +4915,2005-07-08T21:31:22Z,2772,178,2005-07-13T16:45:22Z,2,2020-02-15T06:59:40Z +4916,2005-07-08T21:32:17Z,2680,212,2005-07-14T20:55:17Z,2,2020-02-15T06:59:40Z +4917,2005-07-08T21:32:30Z,3231,104,2005-07-09T15:34:30Z,1,2020-02-15T06:59:40Z +4918,2005-07-08T21:37:31Z,3819,220,2005-07-11T20:16:31Z,2,2020-02-15T06:59:40Z +4919,2005-07-08T21:41:54Z,2106,157,2005-07-11T23:14:54Z,1,2020-02-15T06:59:40Z +4920,2005-07-08T21:42:10Z,4285,239,2005-07-15T03:08:10Z,1,2020-02-15T06:59:40Z +4921,2005-07-08T21:43:21Z,425,109,2005-07-10T16:06:21Z,2,2020-02-15T06:59:40Z +4922,2005-07-08T21:44:00Z,2928,577,2005-07-10T02:58:00Z,2,2020-02-15T06:59:40Z +4923,2005-07-08T21:44:39Z,932,18,2005-07-17T15:50:39Z,2,2020-02-15T06:59:40Z +4924,2005-07-08T21:55:25Z,4344,180,2005-07-16T16:52:25Z,1,2020-02-15T06:59:40Z +4925,2005-07-08T21:56:00Z,2169,68,2005-07-14T17:17:00Z,2,2020-02-15T06:59:40Z +4926,2005-07-08T22:01:48Z,4155,415,2005-07-18T03:27:48Z,1,2020-02-15T06:59:40Z +4927,2005-07-08T22:05:35Z,2566,136,2005-07-14T23:22:35Z,2,2020-02-15T06:59:40Z +4928,2005-07-08T22:05:41Z,4363,77,2005-07-09T23:09:41Z,2,2020-02-15T06:59:40Z +4929,2005-07-08T22:06:18Z,734,297,2005-07-17T18:17:18Z,2,2020-02-15T06:59:40Z +4930,2005-07-08T22:15:48Z,2057,451,2005-07-15T21:02:48Z,2,2020-02-15T06:59:40Z +4931,2005-07-08T22:16:18Z,2750,284,2005-07-17T03:42:18Z,1,2020-02-15T06:59:40Z +4932,2005-07-08T22:17:40Z,4237,558,2005-07-15T22:13:40Z,2,2020-02-15T06:59:40Z +4933,2005-07-08T22:18:29Z,322,579,2005-07-13T03:47:29Z,2,2020-02-15T06:59:40Z +4934,2005-07-08T22:18:42Z,1744,517,2005-07-10T20:44:42Z,2,2020-02-15T06:59:40Z +4935,2005-07-08T22:20:56Z,2708,230,2005-07-12T01:01:56Z,2,2020-02-15T06:59:40Z +4936,2005-07-08T22:24:50Z,2033,298,2005-07-15T03:14:50Z,2,2020-02-15T06:59:40Z +4937,2005-07-08T22:29:59Z,33,273,2005-07-15T21:51:59Z,2,2020-02-15T06:59:40Z +4938,2005-07-08T22:32:53Z,2164,418,2005-07-14T16:48:53Z,2,2020-02-15T06:59:40Z +4939,2005-07-08T22:35:30Z,3201,425,2005-07-17T22:05:30Z,1,2020-02-15T06:59:40Z +4940,2005-07-08T22:36:06Z,971,215,2005-07-15T04:28:06Z,1,2020-02-15T06:59:40Z +4941,2005-07-08T22:39:10Z,3816,553,2005-07-15T17:49:10Z,2,2020-02-15T06:59:40Z +4942,2005-07-08T22:42:47Z,4467,120,2005-07-15T04:36:47Z,2,2020-02-15T06:59:40Z +4943,2005-07-08T22:43:05Z,2732,11,2005-07-15T18:17:05Z,2,2020-02-15T06:59:40Z +4944,2005-07-08T22:44:28Z,3648,293,2005-07-17T21:51:28Z,2,2020-02-15T06:59:40Z +4945,2005-07-08T22:45:02Z,2079,165,2005-07-11T23:59:02Z,2,2020-02-15T06:59:40Z +4946,2005-07-08T22:46:23Z,272,440,2005-07-16T17:19:23Z,1,2020-02-15T06:59:40Z +4947,2005-07-08T22:49:37Z,3905,388,2005-07-17T21:03:37Z,1,2020-02-15T06:59:40Z +4948,2005-07-08T22:54:21Z,2972,518,2005-07-17T03:52:21Z,2,2020-02-15T06:59:40Z +4949,2005-07-08T22:57:10Z,1184,567,2005-07-11T01:26:10Z,2,2020-02-15T06:59:40Z +4950,2005-07-08T22:58:07Z,3291,148,2005-07-09T20:41:07Z,2,2020-02-15T06:59:40Z +4951,2005-07-08T22:58:21Z,2766,28,2005-07-16T18:58:21Z,1,2020-02-15T06:59:40Z +4952,2005-07-08T23:00:07Z,459,14,2005-07-09T21:47:07Z,1,2020-02-15T06:59:40Z +4953,2005-07-08T23:09:48Z,2460,168,2005-07-11T02:08:48Z,2,2020-02-15T06:59:40Z +4954,2005-07-08T23:14:16Z,627,99,2005-07-14T23:23:16Z,2,2020-02-15T06:59:40Z +4955,2005-07-08T23:16:21Z,1103,225,2005-07-14T02:09:21Z,2,2020-02-15T06:59:40Z +4956,2005-07-08T23:17:10Z,1512,477,2005-07-18T00:14:10Z,1,2020-02-15T06:59:40Z +4957,2005-07-08T23:18:48Z,4082,399,2005-07-09T23:13:48Z,1,2020-02-15T06:59:40Z +4958,2005-07-08T23:19:52Z,2354,346,2005-07-17T20:31:52Z,1,2020-02-15T06:59:40Z +4959,2005-07-08T23:22:23Z,3898,236,2005-07-10T03:17:23Z,2,2020-02-15T06:59:40Z +4960,2005-07-08T23:27:16Z,2176,434,2005-07-18T02:01:16Z,1,2020-02-15T06:59:40Z +4961,2005-07-08T23:35:53Z,3668,96,2005-07-14T22:46:53Z,2,2020-02-15T06:59:40Z +4962,2005-07-08T23:36:13Z,4399,532,2005-07-15T03:39:13Z,1,2020-02-15T06:59:40Z +4963,2005-07-08T23:38:40Z,737,404,2005-07-12T05:33:40Z,2,2020-02-15T06:59:40Z +4964,2005-07-08T23:46:38Z,1033,455,2005-07-09T22:19:38Z,2,2020-02-15T06:59:40Z +4965,2005-07-08T23:46:57Z,535,432,2005-07-15T18:47:57Z,1,2020-02-15T06:59:40Z +4966,2005-07-08T23:47:25Z,4360,118,2005-07-14T03:35:25Z,1,2020-02-15T06:59:40Z +4967,2005-07-08T23:48:03Z,108,339,2005-07-15T23:51:03Z,2,2020-02-15T06:59:40Z +4968,2005-07-08T23:49:19Z,3204,390,2005-07-14T02:46:19Z,1,2020-02-15T06:59:40Z +4969,2005-07-08T23:51:26Z,4563,231,2005-07-12T03:21:26Z,2,2020-02-15T06:59:40Z +4970,2005-07-08T23:54:29Z,2983,100,2005-07-16T22:47:29Z,1,2020-02-15T06:59:40Z +4971,2005-07-08T23:54:49Z,460,64,2005-07-16T00:15:49Z,1,2020-02-15T06:59:40Z +4972,2005-07-08T23:56:09Z,2451,498,2005-07-16T19:15:09Z,1,2020-02-15T06:59:40Z +4973,2005-07-08T23:58:18Z,391,432,2005-07-14T21:42:18Z,1,2020-02-15T06:59:40Z +4974,2005-07-09T00:00:36Z,1071,152,2005-07-13T21:03:36Z,1,2020-02-15T06:59:40Z +4975,2005-07-09T00:02:46Z,3730,101,2005-07-14T18:05:46Z,2,2020-02-15T06:59:40Z +4976,2005-07-09T00:03:30Z,617,199,2005-07-10T19:05:30Z,1,2020-02-15T06:59:40Z +4977,2005-07-09T00:15:50Z,3310,584,2005-07-10T00:34:50Z,2,2020-02-15T06:59:40Z +4978,2005-07-09T00:22:02Z,2578,279,2005-07-18T04:37:02Z,1,2020-02-15T06:59:40Z +4979,2005-07-09T00:24:34Z,3447,204,2005-07-12T20:04:34Z,1,2020-02-15T06:59:40Z +4980,2005-07-09T00:26:59Z,2638,100,2005-07-14T19:42:59Z,1,2020-02-15T06:59:40Z +4981,2005-07-09T00:29:29Z,3363,399,2005-07-16T19:06:29Z,2,2020-02-15T06:59:40Z +4982,2005-07-09T00:30:52Z,249,162,2005-07-15T23:50:52Z,1,2020-02-15T06:59:40Z +4983,2005-07-09T00:34:16Z,1469,81,2005-07-17T03:21:16Z,2,2020-02-15T06:59:40Z +4984,2005-07-09T00:35:31Z,1303,214,2005-07-17T03:44:31Z,1,2020-02-15T06:59:40Z +4985,2005-07-09T00:36:02Z,2146,208,2005-07-14T04:06:02Z,2,2020-02-15T06:59:40Z +4986,2005-07-09T00:44:33Z,3517,589,2005-07-09T19:45:33Z,2,2020-02-15T06:59:40Z +4987,2005-07-09T00:45:41Z,996,277,2005-07-14T03:32:41Z,2,2020-02-15T06:59:40Z +4988,2005-07-09T00:46:14Z,2718,433,2005-07-16T01:45:14Z,2,2020-02-15T06:59:40Z +4989,2005-07-09T00:46:56Z,3326,210,2005-07-17T06:24:56Z,1,2020-02-15T06:59:40Z +4990,2005-07-09T00:48:49Z,3305,35,2005-07-10T06:36:49Z,2,2020-02-15T06:59:40Z +4991,2005-07-09T00:49:03Z,1856,540,2005-07-13T05:02:03Z,1,2020-02-15T06:59:40Z +4992,2005-07-09T00:49:37Z,2081,315,2005-07-16T02:05:37Z,1,2020-02-15T06:59:40Z +4993,2005-07-09T00:49:47Z,1740,517,2005-07-11T21:19:47Z,1,2020-02-15T06:59:40Z +4994,2005-07-09T00:54:13Z,2546,246,2005-07-09T21:02:13Z,1,2020-02-15T06:59:40Z +4995,2005-07-09T00:57:46Z,2063,247,2005-07-13T03:32:46Z,1,2020-02-15T06:59:40Z +4996,2005-07-09T00:59:46Z,4440,129,2005-07-16T01:30:46Z,2,2020-02-15T06:59:40Z +4997,2005-07-09T01:06:03Z,186,102,2005-07-18T04:21:03Z,2,2020-02-15T06:59:40Z +4998,2005-07-09T01:07:21Z,202,534,2005-07-10T05:48:21Z,2,2020-02-15T06:59:40Z +4999,2005-07-09T01:12:57Z,1797,196,2005-07-17T00:12:57Z,1,2020-02-15T06:59:40Z +5000,2005-07-09T01:16:13Z,668,146,2005-07-14T21:55:13Z,1,2020-02-15T06:59:40Z +5001,2005-07-09T01:17:04Z,2025,40,2005-07-16T03:25:04Z,2,2020-02-15T06:59:40Z +5002,2005-07-09T01:17:08Z,2388,430,2005-07-15T21:53:08Z,1,2020-02-15T06:59:40Z +5003,2005-07-09T01:19:03Z,3438,569,2005-07-10T04:28:03Z,2,2020-02-15T06:59:40Z +5004,2005-07-09T01:20:50Z,2637,382,2005-07-09T19:56:50Z,1,2020-02-15T06:59:40Z +5005,2005-07-09T01:21:44Z,3034,451,2005-07-14T20:27:44Z,1,2020-02-15T06:59:40Z +5006,2005-07-09T01:24:07Z,1277,486,2005-07-18T03:56:07Z,1,2020-02-15T06:59:40Z +5007,2005-07-09T01:26:22Z,3079,207,2005-07-12T20:48:22Z,1,2020-02-15T06:59:40Z +5008,2005-07-09T01:31:42Z,824,509,2005-07-11T22:34:42Z,2,2020-02-15T06:59:40Z +5009,2005-07-09T01:32:17Z,1539,102,2005-07-18T03:39:17Z,2,2020-02-15T06:59:40Z +5010,2005-07-09T01:33:23Z,1999,574,2005-07-14T04:00:23Z,2,2020-02-15T06:59:40Z +5011,2005-07-09T01:44:40Z,463,249,2005-07-11T00:58:40Z,2,2020-02-15T06:59:40Z +5012,2005-07-09T01:45:04Z,1456,251,2005-07-12T02:13:04Z,1,2020-02-15T06:59:40Z +5013,2005-07-09T01:46:45Z,3000,35,2005-07-16T06:57:45Z,1,2020-02-15T06:59:40Z +5014,2005-07-09T01:51:49Z,4095,334,2005-07-10T04:48:49Z,1,2020-02-15T06:59:40Z +5015,2005-07-09T01:54:24Z,1564,178,2005-07-12T20:07:24Z,1,2020-02-15T06:59:40Z +5016,2005-07-09T01:57:57Z,1871,5,2005-07-09T22:07:57Z,1,2020-02-15T06:59:40Z +5017,2005-07-09T02:00:16Z,3745,241,2005-07-14T06:28:16Z,1,2020-02-15T06:59:40Z +5018,2005-07-09T02:01:05Z,2317,541,2005-07-10T04:09:05Z,1,2020-02-15T06:59:40Z +5019,2005-07-09T02:04:32Z,3534,295,2005-07-15T07:01:32Z,2,2020-02-15T06:59:40Z +5020,2005-07-09T02:07:56Z,4113,565,2005-07-09T23:59:56Z,1,2020-02-15T06:59:40Z +5021,2005-07-09T02:09:41Z,3445,73,2005-07-13T05:47:41Z,1,2020-02-15T06:59:40Z +5022,2005-07-09T02:10:54Z,928,499,2005-07-17T08:07:54Z,2,2020-02-15T06:59:40Z +5023,2005-07-09T02:23:16Z,3206,358,2005-07-15T20:37:16Z,1,2020-02-15T06:59:40Z +5024,2005-07-09T02:25:12Z,2987,335,2005-07-12T03:15:12Z,1,2020-02-15T06:59:40Z +5025,2005-07-09T02:28:24Z,153,91,2005-07-12T04:43:24Z,2,2020-02-15T06:59:40Z +5026,2005-07-09T02:32:34Z,989,463,2005-07-13T04:39:34Z,2,2020-02-15T06:59:40Z +5027,2005-07-09T02:32:37Z,2179,109,2005-07-16T23:13:37Z,1,2020-02-15T06:59:40Z +5028,2005-07-09T02:34:45Z,4531,30,2005-07-14T20:45:45Z,2,2020-02-15T06:59:40Z +5029,2005-07-09T02:35:32Z,3938,265,2005-07-17T22:46:32Z,1,2020-02-15T06:59:40Z +5030,2005-07-09T02:35:43Z,25,497,2005-07-17T02:05:43Z,1,2020-02-15T06:59:40Z +5031,2005-07-09T02:36:37Z,4224,312,2005-07-14T03:09:37Z,2,2020-02-15T06:59:40Z +5032,2005-07-09T02:39:47Z,2257,333,2005-07-10T07:45:47Z,1,2020-02-15T06:59:40Z +5033,2005-07-09T02:42:01Z,2841,299,2005-07-14T00:29:01Z,1,2020-02-15T06:59:40Z +5034,2005-07-09T02:48:15Z,340,148,2005-07-11T23:13:15Z,2,2020-02-15T06:59:40Z +5035,2005-07-09T02:51:34Z,3699,99,2005-07-16T21:38:34Z,1,2020-02-15T06:59:40Z +5036,2005-07-09T02:58:41Z,75,573,2005-07-17T04:09:41Z,1,2020-02-15T06:59:40Z +5037,2005-07-09T02:59:10Z,435,524,2005-07-15T07:54:10Z,2,2020-02-15T06:59:40Z +5038,2005-07-09T03:12:52Z,3086,10,2005-07-17T22:27:52Z,2,2020-02-15T06:59:40Z +5039,2005-07-09T03:14:45Z,2020,268,2005-07-16T06:57:45Z,2,2020-02-15T06:59:40Z +5040,2005-07-09T03:16:34Z,2479,405,2005-07-17T01:13:34Z,2,2020-02-15T06:59:40Z +5041,2005-07-09T03:18:51Z,2711,305,2005-07-13T03:08:51Z,1,2020-02-15T06:59:40Z +5042,2005-07-09T03:20:30Z,3609,254,2005-07-15T07:22:30Z,1,2020-02-15T06:59:40Z +5043,2005-07-09T03:25:18Z,2979,369,2005-07-13T00:57:18Z,2,2020-02-15T06:59:40Z +5044,2005-07-09T03:30:25Z,1625,147,2005-07-11T02:32:25Z,2,2020-02-15T06:59:40Z +5045,2005-07-09T03:33:32Z,1041,230,2005-07-18T06:15:32Z,1,2020-02-15T06:59:40Z +5046,2005-07-09T03:34:57Z,1639,227,2005-07-17T22:36:57Z,2,2020-02-15T06:59:40Z +5047,2005-07-09T03:44:15Z,230,272,2005-07-15T09:07:15Z,2,2020-02-15T06:59:40Z +5048,2005-07-09T03:46:33Z,1271,466,2005-07-15T01:14:33Z,1,2020-02-15T06:59:40Z +5049,2005-07-09T03:54:12Z,3336,144,2005-07-11T22:39:12Z,2,2020-02-15T06:59:40Z +5050,2005-07-09T03:54:38Z,3876,337,2005-07-10T02:23:38Z,2,2020-02-15T06:59:40Z +5051,2005-07-09T03:57:53Z,4091,85,2005-07-16T08:22:53Z,2,2020-02-15T06:59:40Z +5052,2005-07-09T03:59:43Z,1884,305,2005-07-12T05:48:43Z,1,2020-02-15T06:59:40Z +5053,2005-07-09T03:59:46Z,570,295,2005-07-09T23:53:46Z,2,2020-02-15T06:59:40Z +5054,2005-07-09T04:01:02Z,4001,135,2005-07-18T05:16:02Z,2,2020-02-15T06:59:40Z +5055,2005-07-09T04:05:28Z,751,54,2005-07-14T04:26:28Z,2,2020-02-15T06:59:40Z +5056,2005-07-09T04:13:45Z,2599,526,2005-07-10T06:17:45Z,2,2020-02-15T06:59:40Z +5057,2005-07-09T04:20:29Z,1076,178,2005-07-14T23:59:29Z,1,2020-02-15T06:59:40Z +5058,2005-07-09T04:20:35Z,917,221,2005-07-18T08:09:35Z,2,2020-02-15T06:59:40Z +5059,2005-07-09T04:28:01Z,3951,396,2005-07-15T22:57:01Z,1,2020-02-15T06:59:40Z +5060,2005-07-09T04:28:03Z,4317,57,2005-07-12T07:41:03Z,2,2020-02-15T06:59:40Z +5061,2005-07-09T04:30:50Z,3893,230,2005-07-12T03:24:50Z,1,2020-02-15T06:59:40Z +5062,2005-07-09T04:36:49Z,2190,141,2005-07-10T06:26:49Z,1,2020-02-15T06:59:40Z +5063,2005-07-09T04:37:31Z,1027,133,2005-07-13T09:56:31Z,2,2020-02-15T06:59:40Z +5064,2005-07-09T04:38:51Z,373,512,2005-07-18T00:33:51Z,2,2020-02-15T06:59:40Z +5065,2005-07-09T04:42:00Z,1788,599,2005-07-12T08:55:00Z,1,2020-02-15T06:59:40Z +5066,2005-07-09T04:48:50Z,1702,169,2005-07-12T22:54:50Z,2,2020-02-15T06:59:40Z +5067,2005-07-09T04:52:35Z,1480,225,2005-07-11T23:33:35Z,2,2020-02-15T06:59:40Z +5068,2005-07-09T04:53:18Z,2937,10,2005-07-13T09:21:18Z,1,2020-02-15T06:59:40Z +5069,2005-07-09T04:56:30Z,4417,183,2005-07-13T23:53:30Z,2,2020-02-15T06:59:40Z +5070,2005-07-09T04:58:26Z,2305,407,2005-07-09T23:00:26Z,2,2020-02-15T06:59:40Z +5071,2005-07-09T05:00:39Z,4358,12,2005-07-09T23:08:39Z,1,2020-02-15T06:59:40Z +5072,2005-07-09T05:01:58Z,94,254,2005-07-18T08:17:58Z,2,2020-02-15T06:59:40Z +5073,2005-07-09T05:02:35Z,546,408,2005-07-15T01:22:35Z,2,2020-02-15T06:59:40Z +5074,2005-07-09T05:06:24Z,1379,12,2005-07-12T04:37:24Z,1,2020-02-15T06:59:40Z +5075,2005-07-09T05:12:07Z,903,170,2005-07-12T08:29:07Z,1,2020-02-15T06:59:40Z +5076,2005-07-09T05:13:22Z,4388,574,2005-07-16T09:11:22Z,1,2020-02-15T06:59:40Z +5077,2005-07-09T05:18:01Z,686,574,2005-07-17T10:39:01Z,2,2020-02-15T06:59:40Z +5078,2005-07-09T05:20:24Z,1994,78,2005-07-13T06:41:24Z,2,2020-02-15T06:59:40Z +5079,2005-07-09T05:20:40Z,3948,566,2005-07-17T00:06:40Z,1,2020-02-15T06:59:40Z +5080,2005-07-09T05:23:55Z,635,254,2005-07-11T05:56:55Z,2,2020-02-15T06:59:40Z +5081,2005-07-09T05:25:20Z,1953,420,2005-07-13T23:45:20Z,1,2020-02-15T06:59:40Z +5082,2005-07-09T05:28:38Z,1584,470,2005-07-10T02:46:38Z,2,2020-02-15T06:59:40Z +5083,2005-07-09T05:30:32Z,148,494,2005-07-11T02:20:32Z,1,2020-02-15T06:59:40Z +5084,2005-07-09T05:33:27Z,3113,87,2005-07-17T08:54:27Z,2,2020-02-15T06:59:40Z +5085,2005-07-09T05:36:49Z,4164,437,2005-07-13T09:26:49Z,1,2020-02-15T06:59:40Z +5086,2005-07-09T05:40:04Z,3072,539,2005-07-16T07:51:04Z,1,2020-02-15T06:59:40Z +5087,2005-07-09T05:44:28Z,3716,395,2005-07-10T02:25:28Z,2,2020-02-15T06:59:40Z +5088,2005-07-09T05:45:16Z,3324,454,2005-07-15T00:41:16Z,2,2020-02-15T06:59:40Z +5089,2005-07-09T05:45:40Z,451,289,2005-07-15T05:31:40Z,1,2020-02-15T06:59:40Z +5090,2005-07-09T05:48:22Z,1728,296,2005-07-11T06:50:22Z,2,2020-02-15T06:59:40Z +5091,2005-07-09T05:52:54Z,4572,149,2005-07-10T02:49:54Z,1,2020-02-15T06:59:40Z +5092,2005-07-09T05:57:39Z,3256,139,2005-07-12T00:45:39Z,2,2020-02-15T06:59:40Z +5093,2005-07-09T05:59:12Z,2734,597,2005-07-10T11:45:12Z,2,2020-02-15T06:59:40Z +5094,2005-07-09T05:59:47Z,4451,178,2005-07-18T05:34:47Z,2,2020-02-15T06:59:40Z +5095,2005-07-09T06:08:22Z,2788,292,2005-07-11T10:52:22Z,1,2020-02-15T06:59:40Z +5096,2005-07-09T06:08:23Z,490,231,2005-07-14T11:36:23Z,1,2020-02-15T06:59:40Z +5097,2005-07-09T06:09:51Z,3252,343,2005-07-10T03:55:51Z,2,2020-02-15T06:59:40Z +5098,2005-07-09T06:13:54Z,1772,406,2005-07-10T04:27:54Z,1,2020-02-15T06:59:40Z +5099,2005-07-09T06:14:30Z,768,393,2005-07-12T08:23:30Z,2,2020-02-15T06:59:40Z +5100,2005-07-09T06:16:03Z,3193,101,2005-07-10T10:21:03Z,1,2020-02-15T06:59:40Z +5101,2005-07-09T06:21:29Z,2737,154,2005-07-11T02:58:29Z,1,2020-02-15T06:59:40Z +5102,2005-07-09T06:25:48Z,242,316,2005-07-16T11:32:48Z,2,2020-02-15T06:59:40Z +5103,2005-07-09T06:34:40Z,2390,397,2005-07-10T03:44:40Z,2,2020-02-15T06:59:40Z +5104,2005-07-09T06:37:07Z,2109,14,2005-07-14T12:32:07Z,1,2020-02-15T06:59:40Z +5105,2005-07-09T06:38:59Z,2555,290,2005-07-17T03:06:59Z,2,2020-02-15T06:59:40Z +5106,2005-07-09T06:40:24Z,110,137,2005-07-13T10:28:24Z,1,2020-02-15T06:59:40Z +5107,2005-07-09T06:42:32Z,1697,21,2005-07-10T08:21:32Z,2,2020-02-15T06:59:40Z +5108,2005-07-09T06:44:30Z,4229,30,2005-07-17T04:24:30Z,1,2020-02-15T06:59:40Z +5109,2005-07-09T06:48:49Z,2373,102,2005-07-14T01:17:49Z,1,2020-02-15T06:59:40Z +5110,2005-07-09T06:57:25Z,195,200,2005-07-12T05:39:25Z,2,2020-02-15T06:59:40Z +5111,2005-07-09T07:02:19Z,2875,12,2005-07-10T06:27:19Z,2,2020-02-15T06:59:40Z +5112,2005-07-09T07:04:04Z,3529,285,2005-07-13T08:42:04Z,1,2020-02-15T06:59:40Z +5113,2005-07-09T07:06:18Z,3618,282,2005-07-13T07:10:18Z,2,2020-02-15T06:59:40Z +5114,2005-07-09T07:07:05Z,3734,64,2005-07-15T03:06:05Z,1,2020-02-15T06:59:40Z +5115,2005-07-09T07:07:18Z,2296,212,2005-07-16T03:28:18Z,2,2020-02-15T06:59:40Z +5116,2005-07-09T07:10:12Z,2491,332,2005-07-14T09:16:12Z,2,2020-02-15T06:59:40Z +5117,2005-07-09T07:11:22Z,2284,208,2005-07-15T08:44:22Z,1,2020-02-15T06:59:40Z +5118,2005-07-09T07:13:52Z,957,5,2005-07-18T05:18:52Z,2,2020-02-15T06:59:40Z +5119,2005-07-09T07:14:18Z,2996,301,2005-07-18T04:07:18Z,1,2020-02-15T06:59:40Z +5120,2005-07-09T07:14:23Z,4431,373,2005-07-14T04:00:23Z,2,2020-02-15T06:59:40Z +5121,2005-07-09T07:18:31Z,3321,526,2005-07-15T01:48:31Z,1,2020-02-15T06:59:40Z +5122,2005-07-09T07:19:35Z,1423,261,2005-07-16T03:04:35Z,2,2020-02-15T06:59:40Z +5123,2005-07-09T07:20:30Z,4278,219,2005-07-14T05:24:30Z,1,2020-02-15T06:59:40Z +5124,2005-07-09T07:25:19Z,1857,565,2005-07-15T01:51:19Z,1,2020-02-15T06:59:40Z +5125,2005-07-09T07:25:28Z,990,263,2005-07-12T12:34:28Z,1,2020-02-15T06:59:40Z +5126,2005-07-09T07:25:35Z,3312,315,2005-07-18T05:05:35Z,1,2020-02-15T06:59:40Z +5127,2005-07-09T07:25:47Z,3649,129,2005-07-13T11:44:47Z,2,2020-02-15T06:59:40Z +5128,2005-07-09T07:25:54Z,3757,155,2005-07-16T04:04:54Z,2,2020-02-15T06:59:40Z +5129,2005-07-09T07:28:33Z,4516,441,2005-07-14T05:12:33Z,2,2020-02-15T06:59:40Z +5130,2005-07-09T07:29:45Z,3264,93,2005-07-13T05:56:45Z,1,2020-02-15T06:59:40Z +5131,2005-07-09T07:35:03Z,3179,167,2005-07-10T06:05:03Z,1,2020-02-15T06:59:40Z +5132,2005-07-09T07:40:32Z,4158,101,2005-07-16T02:16:32Z,2,2020-02-15T06:59:40Z +5133,2005-07-09T07:43:22Z,3403,469,2005-07-12T04:52:22Z,1,2020-02-15T06:59:40Z +5134,2005-07-09T07:53:12Z,149,491,2005-07-16T05:30:12Z,1,2020-02-15T06:59:40Z +5135,2005-07-09T07:53:22Z,3005,538,2005-07-16T04:50:22Z,2,2020-02-15T06:59:40Z +5136,2005-07-09T07:55:01Z,3498,395,2005-07-11T05:26:01Z,2,2020-02-15T06:59:40Z +5137,2005-07-09T08:00:34Z,409,126,2005-07-12T05:34:34Z,1,2020-02-15T06:59:40Z +5138,2005-07-09T08:00:46Z,1283,548,2005-07-12T09:31:46Z,2,2020-02-15T06:59:40Z +5139,2005-07-09T08:01:51Z,51,539,2005-07-18T09:16:51Z,2,2020-02-15T06:59:40Z +5140,2005-07-09T08:04:59Z,947,303,2005-07-11T08:28:59Z,2,2020-02-15T06:59:40Z +5141,2005-07-09T08:05:14Z,590,488,2005-07-18T04:36:14Z,1,2020-02-15T06:59:40Z +5142,2005-07-09T08:05:23Z,369,56,2005-07-13T12:37:23Z,2,2020-02-15T06:59:40Z +5143,2005-07-09T08:07:07Z,3803,196,2005-07-18T10:17:07Z,1,2020-02-15T06:59:40Z +5144,2005-07-09T08:09:53Z,3530,89,2005-07-18T07:11:53Z,2,2020-02-15T06:59:40Z +5145,2005-07-09T08:13:25Z,2397,204,2005-07-10T03:56:25Z,2,2020-02-15T06:59:40Z +5146,2005-07-09T08:14:58Z,776,194,2005-07-11T07:04:58Z,1,2020-02-15T06:59:40Z +5147,2005-07-09T08:17:41Z,2270,326,2005-07-18T09:45:41Z,2,2020-02-15T06:59:40Z +5148,2005-07-09T08:22:46Z,456,48,2005-07-18T04:36:46Z,1,2020-02-15T06:59:40Z +5149,2005-07-09T08:28:23Z,1500,330,2005-07-16T06:19:23Z,2,2020-02-15T06:59:40Z +5150,2005-07-09T08:28:40Z,1961,410,2005-07-16T04:47:40Z,1,2020-02-15T06:59:40Z +5151,2005-07-09T08:31:03Z,224,228,2005-07-10T08:18:03Z,2,2020-02-15T06:59:40Z +5152,2005-07-09T08:34:44Z,4005,331,2005-07-10T05:26:44Z,1,2020-02-15T06:59:40Z +5153,2005-07-09T08:35:05Z,2826,504,2005-07-18T14:21:05Z,1,2020-02-15T06:59:40Z +5154,2005-07-09T08:46:18Z,3785,361,2005-07-14T03:19:18Z,1,2020-02-15T06:59:40Z +5155,2005-07-09T08:46:54Z,988,523,2005-07-14T04:13:54Z,1,2020-02-15T06:59:40Z +5156,2005-07-09T08:51:42Z,416,5,2005-07-15T03:59:42Z,2,2020-02-15T06:59:40Z +5157,2005-07-09T08:52:12Z,637,463,2005-07-12T04:32:12Z,2,2020-02-15T06:59:40Z +5158,2005-07-09T08:53:09Z,2825,272,2005-07-10T11:05:09Z,1,2020-02-15T06:59:40Z +5159,2005-07-09T08:55:52Z,3479,213,2005-07-10T04:32:52Z,1,2020-02-15T06:59:40Z +5160,2005-07-09T08:57:07Z,1925,467,2005-07-18T06:01:07Z,1,2020-02-15T06:59:40Z +5161,2005-07-09T08:57:56Z,2617,284,2005-07-18T07:41:56Z,2,2020-02-15T06:59:40Z +5162,2005-07-09T09:00:11Z,2765,43,2005-07-17T07:26:11Z,1,2020-02-15T06:59:40Z +5163,2005-07-09T09:00:28Z,1486,103,2005-07-17T08:07:28Z,2,2020-02-15T06:59:40Z +5164,2005-07-09T09:03:14Z,1170,511,2005-07-14T04:20:14Z,1,2020-02-15T06:59:40Z +5165,2005-07-09T09:08:53Z,280,590,2005-07-14T06:01:53Z,1,2020-02-15T06:59:40Z +5166,2005-07-09T09:15:48Z,2771,298,2005-07-16T06:04:48Z,1,2020-02-15T06:59:40Z +5167,2005-07-09T09:18:43Z,2485,437,2005-07-14T12:59:43Z,2,2020-02-15T06:59:40Z +5168,2005-07-09T09:20:01Z,4096,420,2005-07-11T14:42:01Z,1,2020-02-15T06:59:40Z +5169,2005-07-09T09:22:25Z,2608,116,2005-07-10T03:48:25Z,1,2020-02-15T06:59:40Z +5170,2005-07-09T09:24:19Z,66,209,2005-07-18T04:02:19Z,1,2020-02-15T06:59:40Z +5171,2005-07-09T09:26:55Z,2099,371,2005-07-10T10:34:55Z,1,2020-02-15T06:59:40Z +5172,2005-07-09T09:31:27Z,4046,214,2005-07-13T04:03:27Z,1,2020-02-15T06:59:40Z +5173,2005-07-09T09:31:44Z,2848,490,2005-07-15T04:20:44Z,2,2020-02-15T06:59:40Z +5174,2005-07-09T09:31:59Z,3621,47,2005-07-15T03:49:59Z,1,2020-02-15T06:59:40Z +5175,2005-07-09T09:34:28Z,1003,409,2005-07-15T15:19:28Z,2,2020-02-15T06:59:40Z +5176,2005-07-09T09:39:31Z,328,119,2005-07-17T11:56:31Z,2,2020-02-15T06:59:40Z +5177,2005-07-09T09:43:21Z,1675,452,2005-07-13T07:29:21Z,1,2020-02-15T06:59:40Z +5178,2005-07-09T09:59:52Z,1750,167,2005-07-18T13:01:52Z,2,2020-02-15T06:59:40Z +5179,2005-07-09T10:00:44Z,2995,256,2005-07-11T06:52:44Z,1,2020-02-15T06:59:40Z +5180,2005-07-09T10:06:53Z,3684,494,2005-07-12T15:25:53Z,1,2020-02-15T06:59:40Z +5181,2005-07-09T10:07:27Z,2569,45,2005-07-17T10:18:27Z,2,2020-02-15T06:59:40Z +5182,2005-07-09T10:08:10Z,725,197,2005-07-16T14:36:10Z,2,2020-02-15T06:59:40Z +5183,2005-07-09T10:13:45Z,2866,394,2005-07-16T15:55:45Z,2,2020-02-15T06:59:40Z +5184,2005-07-09T10:14:34Z,1101,166,2005-07-14T16:05:34Z,2,2020-02-15T06:59:40Z +5185,2005-07-09T10:14:39Z,357,53,2005-07-10T13:31:39Z,1,2020-02-15T06:59:40Z +5186,2005-07-09T10:18:40Z,2415,276,2005-07-13T05:05:40Z,2,2020-02-15T06:59:40Z +5187,2005-07-09T10:19:51Z,2631,91,2005-07-14T10:35:51Z,1,2020-02-15T06:59:40Z +5188,2005-07-09T10:22:31Z,3265,34,2005-07-13T04:41:31Z,1,2020-02-15T06:59:40Z +5189,2005-07-09T10:23:21Z,2539,113,2005-07-14T08:06:21Z,1,2020-02-15T06:59:40Z +5190,2005-07-09T10:25:24Z,2213,532,2005-07-18T04:33:24Z,1,2020-02-15T06:59:40Z +5191,2005-07-09T10:26:48Z,2131,167,2005-07-10T15:52:48Z,2,2020-02-15T06:59:40Z +5192,2005-07-09T10:27:09Z,1225,410,2005-07-10T12:04:09Z,1,2020-02-15T06:59:40Z +5193,2005-07-09T10:28:18Z,2166,485,2005-07-12T12:18:18Z,1,2020-02-15T06:59:40Z +5194,2005-07-09T10:31:34Z,3809,202,2005-07-15T08:50:34Z,2,2020-02-15T06:59:40Z +5195,2005-07-09T10:39:31Z,3399,59,2005-07-18T13:54:31Z,1,2020-02-15T06:59:40Z +5196,2005-07-09T10:43:34Z,2278,536,2005-07-13T12:10:34Z,2,2020-02-15T06:59:40Z +5197,2005-07-09T10:43:54Z,1571,541,2005-07-16T10:19:54Z,1,2020-02-15T06:59:40Z +5198,2005-07-09T10:49:10Z,218,101,2005-07-13T04:52:10Z,1,2020-02-15T06:59:40Z +5199,2005-07-09T10:50:56Z,349,42,2005-07-10T06:43:56Z,1,2020-02-15T06:59:40Z +5200,2005-07-09T10:52:09Z,4528,125,2005-07-13T15:12:09Z,1,2020-02-15T06:59:40Z +5201,2005-07-09T10:52:53Z,2453,551,2005-07-16T12:41:53Z,2,2020-02-15T06:59:40Z +5202,2005-07-09T10:53:48Z,3417,321,2005-07-15T13:31:48Z,1,2020-02-15T06:59:40Z +5203,2005-07-09T10:53:59Z,3661,588,2005-07-15T09:45:59Z,2,2020-02-15T06:59:40Z +5204,2005-07-09T10:54:14Z,1791,432,2005-07-12T14:29:14Z,2,2020-02-15T06:59:40Z +5205,2005-07-09T10:56:37Z,161,79,2005-07-13T05:45:37Z,1,2020-02-15T06:59:40Z +5206,2005-07-09T11:11:01Z,692,517,2005-07-17T07:23:01Z,2,2020-02-15T06:59:40Z +5207,2005-07-09T11:15:44Z,3496,59,2005-07-17T06:00:44Z,1,2020-02-15T06:59:40Z +5208,2005-07-09T11:16:56Z,1881,560,2005-07-10T07:21:56Z,2,2020-02-15T06:59:40Z +5209,2005-07-09T11:22:39Z,4441,222,2005-07-17T09:31:39Z,1,2020-02-15T06:59:40Z +5210,2005-07-09T11:24:19Z,4514,355,2005-07-11T06:27:19Z,1,2020-02-15T06:59:40Z +5211,2005-07-09T11:26:50Z,2216,241,2005-07-16T15:30:50Z,1,2020-02-15T06:59:40Z +5212,2005-07-09T11:37:47Z,3240,400,2005-07-15T14:42:47Z,1,2020-02-15T06:59:40Z +5213,2005-07-09T11:39:43Z,3708,552,2005-07-18T16:20:43Z,2,2020-02-15T06:59:40Z +5214,2005-07-09T11:43:08Z,1657,290,2005-07-17T08:58:08Z,2,2020-02-15T06:59:40Z +5215,2005-07-09T11:47:58Z,3888,528,2005-07-18T09:58:58Z,1,2020-02-15T06:59:40Z +5216,2005-07-09T11:54:58Z,1644,515,2005-07-12T09:46:58Z,2,2020-02-15T06:59:40Z +5217,2005-07-09T11:56:50Z,4150,430,2005-07-17T07:10:50Z,1,2020-02-15T06:59:40Z +5218,2005-07-09T11:57:12Z,1121,83,2005-07-13T06:34:12Z,2,2020-02-15T06:59:40Z +5219,2005-07-09T11:57:55Z,3933,209,2005-07-15T09:43:55Z,2,2020-02-15T06:59:40Z +5220,2005-07-09T11:59:04Z,2577,435,2005-07-15T06:20:04Z,1,2020-02-15T06:59:40Z +5221,2005-07-09T12:02:23Z,2339,84,2005-07-16T15:43:23Z,1,2020-02-15T06:59:40Z +5222,2005-07-09T12:05:45Z,2508,400,2005-07-13T12:11:45Z,1,2020-02-15T06:59:40Z +5223,2005-07-09T12:06:03Z,2335,72,2005-07-17T15:50:03Z,1,2020-02-15T06:59:40Z +5224,2005-07-09T12:07:27Z,279,311,2005-07-17T08:59:27Z,1,2020-02-15T06:59:40Z +5225,2005-07-09T12:10:16Z,703,445,2005-07-12T09:55:16Z,2,2020-02-15T06:59:40Z +5226,2005-07-09T12:10:44Z,3128,218,2005-07-11T17:32:44Z,2,2020-02-15T06:59:40Z +5227,2005-07-09T12:16:39Z,1862,362,2005-07-18T15:38:39Z,2,2020-02-15T06:59:40Z +5228,2005-07-09T12:26:01Z,622,195,2005-07-14T13:31:01Z,2,2020-02-15T06:59:40Z +5229,2005-07-09T12:30:18Z,4472,372,2005-07-14T15:31:18Z,2,2020-02-15T06:59:40Z +5230,2005-07-09T12:30:23Z,3707,51,2005-07-13T08:41:23Z,1,2020-02-15T06:59:40Z +5231,2005-07-09T12:35:02Z,1275,405,2005-07-10T09:22:02Z,1,2020-02-15T06:59:40Z +5232,2005-07-09T12:35:08Z,3353,175,2005-07-14T14:55:08Z,1,2020-02-15T06:59:40Z +5233,2005-07-09T12:44:26Z,1401,131,2005-07-15T12:31:26Z,1,2020-02-15T06:59:40Z +5234,2005-07-09T12:44:47Z,4182,398,2005-07-17T10:02:47Z,1,2020-02-15T06:59:40Z +5235,2005-07-09T12:54:25Z,1044,122,2005-07-18T16:28:25Z,1,2020-02-15T06:59:40Z +5236,2005-07-09T12:56:29Z,1215,519,2005-07-13T08:26:29Z,1,2020-02-15T06:59:40Z +5237,2005-07-09T12:56:58Z,2341,84,2005-07-11T15:41:58Z,1,2020-02-15T06:59:40Z +5238,2005-07-09T13:11:14Z,3297,100,2005-07-10T07:27:14Z,2,2020-02-15T06:59:40Z +5239,2005-07-09T13:12:35Z,380,497,2005-07-10T13:37:35Z,1,2020-02-15T06:59:40Z +5240,2005-07-09T13:14:48Z,1378,350,2005-07-10T18:47:48Z,2,2020-02-15T06:59:40Z +5241,2005-07-09T13:19:14Z,4079,314,2005-07-11T14:32:14Z,1,2020-02-15T06:59:40Z +5242,2005-07-09T13:20:25Z,848,12,2005-07-18T07:38:25Z,1,2020-02-15T06:59:40Z +5243,2005-07-09T13:22:08Z,122,587,2005-07-16T09:25:08Z,1,2020-02-15T06:59:40Z +5244,2005-07-09T13:24:07Z,3726,1,2005-07-14T14:01:07Z,2,2020-02-15T06:59:40Z +5245,2005-07-09T13:24:14Z,3547,115,2005-07-12T11:16:14Z,1,2020-02-15T06:59:40Z +5246,2005-07-09T13:25:18Z,3548,276,2005-07-13T18:38:18Z,1,2020-02-15T06:59:40Z +5247,2005-07-09T13:26:28Z,1186,298,2005-07-12T14:00:28Z,2,2020-02-15T06:59:40Z +5248,2005-07-09T13:29:44Z,246,279,2005-07-12T18:12:44Z,1,2020-02-15T06:59:40Z +5249,2005-07-09T13:33:53Z,1950,389,2005-07-11T12:55:53Z,2,2020-02-15T06:59:40Z +5250,2005-07-09T13:35:32Z,2162,384,2005-07-13T12:19:32Z,1,2020-02-15T06:59:40Z +5251,2005-07-09T13:36:10Z,478,474,2005-07-15T11:40:10Z,1,2020-02-15T06:59:40Z +5252,2005-07-09T13:40:44Z,2581,335,2005-07-14T09:41:44Z,1,2020-02-15T06:59:40Z +5253,2005-07-09T13:41:17Z,2241,532,2005-07-17T17:09:17Z,1,2020-02-15T06:59:40Z +5254,2005-07-09T13:50:11Z,654,263,2005-07-13T09:07:11Z,1,2020-02-15T06:59:40Z +5255,2005-07-09T13:51:08Z,4418,313,2005-07-17T13:58:08Z,2,2020-02-15T06:59:40Z +5256,2005-07-09T13:55:45Z,4226,273,2005-07-15T17:02:45Z,1,2020-02-15T06:59:40Z +5257,2005-07-09T13:56:43Z,286,292,2005-07-10T14:26:43Z,2,2020-02-15T06:59:40Z +5258,2005-07-09T13:56:56Z,3125,207,2005-07-11T16:01:56Z,2,2020-02-15T06:59:40Z +5259,2005-07-09T14:02:50Z,1310,207,2005-07-11T19:13:50Z,2,2020-02-15T06:59:40Z +5260,2005-07-09T14:05:45Z,3143,75,2005-07-14T08:41:45Z,2,2020-02-15T06:59:40Z +5261,2005-07-09T14:06:56Z,2899,105,2005-07-11T14:21:56Z,2,2020-02-15T06:59:40Z +5262,2005-07-09T14:08:01Z,1092,240,2005-07-12T16:48:01Z,1,2020-02-15T06:59:40Z +5263,2005-07-09T14:10:36Z,119,406,2005-07-12T15:07:36Z,1,2020-02-15T06:59:40Z +5264,2005-07-09T14:11:28Z,3307,545,2005-07-12T18:24:28Z,2,2020-02-15T06:59:40Z +5265,2005-07-09T14:15:01Z,4482,139,2005-07-18T14:43:01Z,2,2020-02-15T06:59:40Z +5266,2005-07-09T14:17:40Z,2409,222,2005-07-16T10:42:40Z,1,2020-02-15T06:59:40Z +5267,2005-07-09T14:21:10Z,2242,233,2005-07-15T12:02:10Z,1,2020-02-15T06:59:40Z +5268,2005-07-09T14:22:43Z,1083,119,2005-07-12T08:27:43Z,1,2020-02-15T06:59:40Z +5269,2005-07-09T14:23:05Z,3886,230,2005-07-17T14:03:05Z,1,2020-02-15T06:59:40Z +5270,2005-07-09T14:23:46Z,1523,128,2005-07-13T15:04:46Z,1,2020-02-15T06:59:40Z +5271,2005-07-09T14:25:01Z,2691,522,2005-07-16T17:28:01Z,1,2020-02-15T06:59:40Z +5272,2005-07-09T14:26:01Z,1547,90,2005-07-12T20:20:01Z,1,2020-02-15T06:59:40Z +5273,2005-07-09T14:31:24Z,4570,38,2005-07-14T13:27:24Z,2,2020-02-15T06:59:40Z +5274,2005-07-09T14:34:09Z,4579,108,2005-07-14T13:02:09Z,1,2020-02-15T06:59:40Z +5275,2005-07-09T14:34:18Z,729,249,2005-07-13T12:56:18Z,2,2020-02-15T06:59:40Z +5276,2005-07-09T14:35:13Z,2524,521,2005-07-12T14:24:13Z,2,2020-02-15T06:59:40Z +5277,2005-07-09T14:40:42Z,2026,332,2005-07-16T14:18:42Z,2,2020-02-15T06:59:40Z +5278,2005-07-09T14:44:23Z,2573,532,2005-07-15T10:48:23Z,1,2020-02-15T06:59:40Z +5279,2005-07-09T14:46:36Z,709,64,2005-07-17T10:04:36Z,2,2020-02-15T06:59:40Z +5280,2005-07-09T14:55:07Z,1177,351,2005-07-12T10:05:07Z,2,2020-02-15T06:59:40Z +5281,2005-07-09T14:55:07Z,1966,71,2005-07-13T15:24:07Z,2,2020-02-15T06:59:40Z +5282,2005-07-09T15:01:23Z,4386,226,2005-07-13T11:06:23Z,2,2020-02-15T06:59:40Z +5283,2005-07-09T15:07:17Z,644,295,2005-07-17T09:52:17Z,2,2020-02-15T06:59:40Z +5284,2005-07-09T15:08:21Z,1036,585,2005-07-16T09:53:21Z,2,2020-02-15T06:59:40Z +5285,2005-07-09T15:10:44Z,676,468,2005-07-16T13:02:44Z,2,2020-02-15T06:59:40Z +5286,2005-07-09T15:11:41Z,483,498,2005-07-10T19:19:41Z,2,2020-02-15T06:59:40Z +5287,2005-07-09T15:11:54Z,3110,523,2005-07-16T16:05:54Z,2,2020-02-15T06:59:40Z +5288,2005-07-09T15:13:07Z,850,120,2005-07-16T12:39:07Z,1,2020-02-15T06:59:40Z +5289,2005-07-09T15:14:08Z,4336,30,2005-07-12T12:51:08Z,2,2020-02-15T06:59:40Z +5290,2005-07-09T15:14:47Z,277,50,2005-07-11T20:30:47Z,2,2020-02-15T06:59:40Z +5291,2005-07-09T15:15:02Z,1367,194,2005-07-15T10:22:02Z,2,2020-02-15T06:59:40Z +5292,2005-07-09T15:16:54Z,3195,62,2005-07-11T15:21:54Z,1,2020-02-15T06:59:40Z +5293,2005-07-09T15:17:23Z,2880,542,2005-07-11T11:23:23Z,2,2020-02-15T06:59:40Z +5294,2005-07-09T15:23:42Z,3237,22,2005-07-15T15:28:42Z,2,2020-02-15T06:59:40Z +5295,2005-07-09T15:25:06Z,4460,86,2005-07-10T12:40:06Z,1,2020-02-15T06:59:40Z +5296,2005-07-09T15:26:27Z,495,109,2005-07-15T10:03:27Z,2,2020-02-15T06:59:40Z +5297,2005-07-09T15:32:29Z,3434,202,2005-07-14T14:58:29Z,1,2020-02-15T06:59:40Z +5298,2005-07-09T15:36:17Z,3491,149,2005-07-18T19:07:17Z,2,2020-02-15T06:59:40Z +5299,2005-07-09T15:38:09Z,4416,469,2005-07-15T16:39:09Z,2,2020-02-15T06:59:40Z +5300,2005-07-09T15:40:46Z,2520,8,2005-07-15T13:46:46Z,1,2020-02-15T06:59:40Z +5301,2005-07-09T15:42:10Z,245,459,2005-07-16T21:27:10Z,2,2020-02-15T06:59:40Z +5302,2005-07-09T15:42:36Z,4270,72,2005-07-10T21:04:36Z,2,2020-02-15T06:59:40Z +5303,2005-07-09T15:44:09Z,3572,350,2005-07-15T18:09:09Z,2,2020-02-15T06:59:40Z +5304,2005-07-09T15:48:06Z,4411,51,2005-07-14T19:29:06Z,1,2020-02-15T06:59:40Z +5305,2005-07-09T15:55:36Z,625,309,2005-07-18T15:59:36Z,1,2020-02-15T06:59:40Z +5306,2005-07-09T15:56:45Z,2221,409,2005-07-15T19:02:45Z,2,2020-02-15T06:59:40Z +5307,2005-07-09T15:57:15Z,2847,32,2005-07-17T13:42:15Z,2,2020-02-15T06:59:40Z +5308,2005-07-09T15:58:38Z,1684,52,2005-07-15T13:55:38Z,2,2020-02-15T06:59:40Z +5309,2005-07-09T16:00:16Z,4026,338,2005-07-17T17:56:16Z,1,2020-02-15T06:59:40Z +5310,2005-07-09T16:00:34Z,1565,24,2005-07-12T12:45:34Z,2,2020-02-15T06:59:40Z +5311,2005-07-09T16:02:54Z,986,107,2005-07-18T10:44:54Z,1,2020-02-15T06:59:40Z +5312,2005-07-09T16:03:09Z,2123,258,2005-07-13T16:41:09Z,2,2020-02-15T06:59:40Z +5313,2005-07-09T16:04:45Z,1885,52,2005-07-17T18:53:45Z,2,2020-02-15T06:59:40Z +5314,2005-07-09T16:05:28Z,3770,372,2005-07-10T18:18:28Z,1,2020-02-15T06:59:40Z +5315,2005-07-09T16:09:19Z,585,134,2005-07-14T21:10:19Z,1,2020-02-15T06:59:40Z +5316,2005-07-09T16:09:42Z,3856,438,2005-07-11T15:20:42Z,1,2020-02-15T06:59:40Z +5317,2005-07-09T16:10:25Z,2693,14,2005-07-18T17:10:25Z,2,2020-02-15T06:59:40Z +5318,2005-07-09T16:11:33Z,1738,472,2005-07-14T12:49:33Z,2,2020-02-15T06:59:40Z +5319,2005-07-09T16:17:44Z,1899,282,2005-07-18T16:35:44Z,1,2020-02-15T06:59:40Z +5320,2005-07-09T16:23:32Z,3140,228,2005-07-18T18:16:32Z,1,2020-02-15T06:59:40Z +5321,2005-07-09T16:26:33Z,3347,245,2005-07-15T15:05:33Z,2,2020-02-15T06:59:40Z +5322,2005-07-09T16:28:13Z,4420,432,2005-07-18T14:53:13Z,1,2020-02-15T06:59:40Z +5323,2005-07-09T16:34:07Z,1302,35,2005-07-13T21:37:07Z,1,2020-02-15T06:59:40Z +5324,2005-07-09T16:34:18Z,4024,113,2005-07-15T12:35:18Z,2,2020-02-15T06:59:40Z +5325,2005-07-09T16:35:47Z,2703,492,2005-07-10T11:52:47Z,1,2020-02-15T06:59:40Z +5326,2005-07-09T16:38:01Z,797,1,2005-07-13T18:02:01Z,1,2020-02-15T06:59:40Z +5327,2005-07-09T16:39:49Z,3657,547,2005-07-12T18:47:49Z,2,2020-02-15T06:59:40Z +5328,2005-07-09T16:48:29Z,2444,247,2005-07-17T20:20:29Z,2,2020-02-15T06:59:40Z +5329,2005-07-09T16:49:46Z,1628,402,2005-07-16T19:05:46Z,1,2020-02-15T06:59:40Z +5330,2005-07-09T16:53:57Z,3812,410,2005-07-18T19:54:57Z,1,2020-02-15T06:59:40Z +5331,2005-07-09T16:54:06Z,4181,447,2005-07-10T19:04:06Z,1,2020-02-15T06:59:40Z +5332,2005-07-09T16:59:23Z,3269,568,2005-07-10T16:01:23Z,2,2020-02-15T06:59:40Z +5333,2005-07-09T16:59:38Z,2142,419,2005-07-16T17:23:38Z,2,2020-02-15T06:59:40Z +5334,2005-07-09T17:00:13Z,3852,482,2005-07-11T15:50:13Z,1,2020-02-15T06:59:40Z +5335,2005-07-09T17:00:49Z,2353,588,2005-07-12T12:21:49Z,2,2020-02-15T06:59:40Z +5336,2005-07-09T17:01:08Z,4144,410,2005-07-11T19:22:08Z,2,2020-02-15T06:59:40Z +5337,2005-07-09T17:03:50Z,4168,343,2005-07-16T22:25:50Z,2,2020-02-15T06:59:40Z +5338,2005-07-09T17:07:07Z,3449,191,2005-07-14T11:15:07Z,1,2020-02-15T06:59:40Z +5339,2005-07-09T17:09:17Z,698,380,2005-07-10T21:07:17Z,2,2020-02-15T06:59:40Z +5340,2005-07-09T17:11:35Z,650,267,2005-07-17T17:59:35Z,2,2020-02-15T06:59:40Z +5341,2005-07-09T17:13:23Z,2522,8,2005-07-14T18:11:23Z,2,2020-02-15T06:59:40Z +5342,2005-07-09T17:20:03Z,3828,289,2005-07-18T12:44:03Z,2,2020-02-15T06:59:40Z +5343,2005-07-09T17:23:43Z,92,485,2005-07-18T22:14:43Z,1,2020-02-15T06:59:40Z +5344,2005-07-09T17:27:05Z,159,197,2005-07-10T15:51:05Z,2,2020-02-15T06:59:40Z +5345,2005-07-09T17:28:18Z,3055,348,2005-07-11T14:30:18Z,2,2020-02-15T06:59:40Z +5346,2005-07-09T17:29:01Z,2488,287,2005-07-14T12:47:01Z,2,2020-02-15T06:59:40Z +5347,2005-07-09T17:31:32Z,1293,246,2005-07-10T21:06:32Z,2,2020-02-15T06:59:40Z +5348,2005-07-09T17:34:11Z,3495,597,2005-07-15T18:32:11Z,2,2020-02-15T06:59:40Z +5349,2005-07-09T17:35:35Z,3139,161,2005-07-18T14:05:35Z,1,2020-02-15T06:59:40Z +5350,2005-07-09T17:39:30Z,724,129,2005-07-11T16:43:30Z,2,2020-02-15T06:59:40Z +5351,2005-07-09T17:40:52Z,3722,112,2005-07-14T16:55:52Z,2,2020-02-15T06:59:40Z +5352,2005-07-09T17:54:58Z,908,372,2005-07-15T16:20:58Z,1,2020-02-15T06:59:40Z +5353,2005-07-09T18:04:29Z,2994,196,2005-07-15T17:46:29Z,2,2020-02-15T06:59:40Z +5354,2005-07-09T18:04:33Z,951,354,2005-07-15T18:19:33Z,1,2020-02-15T06:59:40Z +5355,2005-07-09T18:07:17Z,2458,100,2005-07-16T20:33:17Z,2,2020-02-15T06:59:40Z +5356,2005-07-09T18:08:28Z,2905,188,2005-07-14T14:11:28Z,2,2020-02-15T06:59:40Z +5357,2005-07-09T18:08:59Z,1988,411,2005-07-16T17:28:59Z,2,2020-02-15T06:59:40Z +5358,2005-07-09T18:09:21Z,3764,71,2005-07-14T23:59:21Z,2,2020-02-15T06:59:40Z +5359,2005-07-09T18:10:52Z,4392,453,2005-07-18T13:34:52Z,2,2020-02-15T06:59:40Z +5360,2005-07-09T18:14:03Z,679,562,2005-07-10T15:17:03Z,2,2020-02-15T06:59:40Z +5361,2005-07-09T18:15:32Z,2045,279,2005-07-17T23:32:32Z,2,2020-02-15T06:59:40Z +5362,2005-07-09T18:16:08Z,24,266,2005-07-18T18:27:08Z,1,2020-02-15T06:59:40Z +5363,2005-07-09T18:18:49Z,2180,425,2005-07-14T22:16:49Z,1,2020-02-15T06:59:40Z +5364,2005-07-09T18:24:48Z,2746,366,2005-07-10T12:30:48Z,1,2020-02-15T06:59:40Z +5365,2005-07-09T18:27:00Z,4469,527,2005-07-11T14:18:00Z,1,2020-02-15T06:59:40Z +5366,2005-07-09T18:28:37Z,886,187,2005-07-13T20:45:37Z,1,2020-02-15T06:59:40Z +5367,2005-07-09T18:39:15Z,1446,485,2005-07-16T14:19:15Z,2,2020-02-15T06:59:40Z +5368,2005-07-09T18:41:59Z,4429,502,2005-07-16T00:32:59Z,2,2020-02-15T06:59:40Z +5369,2005-07-09T18:42:16Z,1550,538,2005-07-12T18:16:16Z,2,2020-02-15T06:59:40Z +5370,2005-07-09T18:43:19Z,2193,248,2005-07-15T19:59:19Z,1,2020-02-15T06:59:40Z +5371,2005-07-09T18:47:48Z,789,425,2005-07-14T14:39:48Z,2,2020-02-15T06:59:40Z +5372,2005-07-09T18:48:39Z,3551,148,2005-07-11T17:40:39Z,1,2020-02-15T06:59:40Z +5373,2005-07-09T18:48:57Z,950,428,2005-07-10T16:34:57Z,1,2020-02-15T06:59:40Z +5374,2005-07-09T18:52:08Z,946,144,2005-07-16T16:34:08Z,1,2020-02-15T06:59:40Z +5375,2005-07-09T18:52:55Z,1407,558,2005-07-16T15:32:55Z,2,2020-02-15T06:59:40Z +5376,2005-07-09T18:54:08Z,1730,104,2005-07-17T22:01:08Z,1,2020-02-15T06:59:40Z +5377,2005-07-09T19:04:30Z,3118,578,2005-07-11T14:42:30Z,1,2020-02-15T06:59:40Z +5378,2005-07-09T19:05:56Z,1570,138,2005-07-10T18:03:56Z,2,2020-02-15T06:59:40Z +5379,2005-07-09T19:08:03Z,2110,475,2005-07-10T17:58:03Z,1,2020-02-15T06:59:40Z +5380,2005-07-09T19:08:44Z,3047,166,2005-07-11T20:09:44Z,1,2020-02-15T06:59:40Z +5381,2005-07-09T19:11:11Z,3033,332,2005-07-13T17:10:11Z,2,2020-02-15T06:59:40Z +5382,2005-07-09T19:12:57Z,78,586,2005-07-14T15:44:57Z,1,2020-02-15T06:59:40Z +5383,2005-07-09T19:14:32Z,573,14,2005-07-11T19:57:32Z,1,2020-02-15T06:59:40Z +5384,2005-07-09T19:17:46Z,1729,180,2005-07-12T13:50:46Z,1,2020-02-15T06:59:40Z +5385,2005-07-09T19:18:11Z,4291,112,2005-07-16T18:50:11Z,2,2020-02-15T06:59:40Z +5386,2005-07-09T19:19:09Z,721,594,2005-07-13T00:13:09Z,2,2020-02-15T06:59:40Z +5387,2005-07-09T19:25:14Z,4452,244,2005-07-11T21:00:14Z,1,2020-02-15T06:59:40Z +5388,2005-07-09T19:25:25Z,1546,332,2005-07-14T19:51:25Z,2,2020-02-15T06:59:40Z +5389,2005-07-09T19:25:45Z,3882,484,2005-07-17T13:31:45Z,1,2020-02-15T06:59:40Z +5390,2005-07-09T19:26:22Z,715,139,2005-07-14T22:46:22Z,1,2020-02-15T06:59:40Z +5391,2005-07-09T19:28:34Z,402,132,2005-07-18T01:07:34Z,1,2020-02-15T06:59:40Z +5392,2005-07-09T19:32:30Z,2552,499,2005-07-16T15:01:30Z,1,2020-02-15T06:59:40Z +5393,2005-07-09T19:35:12Z,1417,446,2005-07-11T14:00:12Z,1,2020-02-15T06:59:40Z +5394,2005-07-09T19:36:15Z,1828,83,2005-07-18T18:10:15Z,2,2020-02-15T06:59:40Z +5395,2005-07-09T19:42:37Z,4428,131,2005-07-10T15:39:37Z,1,2020-02-15T06:59:40Z +5396,2005-07-09T19:42:52Z,3795,559,2005-07-15T21:45:52Z,1,2020-02-15T06:59:40Z +5397,2005-07-09T19:43:51Z,4376,191,2005-07-17T00:11:51Z,1,2020-02-15T06:59:40Z +5398,2005-07-09T19:44:58Z,4352,199,2005-07-17T00:56:58Z,1,2020-02-15T06:59:40Z +5399,2005-07-09T19:52:44Z,261,67,2005-07-10T18:31:44Z,2,2020-02-15T06:59:40Z +5400,2005-07-09T19:56:40Z,3435,192,2005-07-14T20:43:40Z,2,2020-02-15T06:59:40Z +5401,2005-07-09T19:59:10Z,431,43,2005-07-11T23:21:10Z,2,2020-02-15T06:59:40Z +5402,2005-07-09T20:01:58Z,4450,379,2005-07-10T14:07:58Z,1,2020-02-15T06:59:40Z +5403,2005-07-09T20:07:09Z,3991,36,2005-07-12T18:33:09Z,1,2020-02-15T06:59:40Z +5404,2005-07-09T20:10:43Z,3685,236,2005-07-13T15:16:43Z,1,2020-02-15T06:59:40Z +5405,2005-07-09T20:11:49Z,799,45,2005-07-18T18:37:49Z,2,2020-02-15T06:59:40Z +5406,2005-07-09T20:13:23Z,1322,563,2005-07-11T22:05:23Z,2,2020-02-15T06:59:40Z +5407,2005-07-09T20:16:07Z,3641,475,2005-07-14T21:41:07Z,2,2020-02-15T06:59:40Z +5408,2005-07-09T20:16:51Z,3162,144,2005-07-18T22:19:51Z,1,2020-02-15T06:59:40Z +5409,2005-07-09T20:17:19Z,3538,446,2005-07-13T23:30:19Z,1,2020-02-15T06:59:40Z +5410,2005-07-09T20:21:10Z,2261,281,2005-07-18T21:43:10Z,2,2020-02-15T06:59:40Z +5411,2005-07-09T20:23:38Z,4292,304,2005-07-16T01:17:38Z,2,2020-02-15T06:59:40Z +5412,2005-07-09T20:23:52Z,3174,458,2005-07-18T18:40:52Z,1,2020-02-15T06:59:40Z +5413,2005-07-09T20:28:42Z,2056,167,2005-07-10T19:23:42Z,2,2020-02-15T06:59:40Z +5414,2005-07-09T20:29:36Z,1201,174,2005-07-13T01:55:36Z,2,2020-02-15T06:59:40Z +5415,2005-07-09T20:30:03Z,4413,475,2005-07-18T00:20:03Z,1,2020-02-15T06:59:40Z +5416,2005-07-09T20:33:50Z,568,219,2005-07-14T01:50:50Z,2,2020-02-15T06:59:40Z +5417,2005-07-09T20:34:09Z,3569,265,2005-07-14T00:36:09Z,2,2020-02-15T06:59:40Z +5418,2005-07-09T20:41:35Z,55,114,2005-07-14T00:15:35Z,1,2020-02-15T06:59:40Z +5419,2005-07-09T20:47:36Z,1516,226,2005-07-12T01:36:36Z,1,2020-02-15T06:59:40Z +5420,2005-07-09T20:48:42Z,1739,80,2005-07-15T21:35:42Z,2,2020-02-15T06:59:40Z +5421,2005-07-09T20:49:12Z,2437,33,2005-07-10T16:30:12Z,1,2020-02-15T06:59:40Z +5422,2005-07-09T20:55:47Z,436,409,2005-07-15T15:15:47Z,2,2020-02-15T06:59:40Z +5423,2005-07-09T20:56:48Z,1952,440,2005-07-17T14:58:48Z,2,2020-02-15T06:59:40Z +5424,2005-07-09T20:59:09Z,3694,72,2005-07-12T00:05:09Z,2,2020-02-15T06:59:40Z +5425,2005-07-09T21:02:26Z,531,37,2005-07-16T23:38:26Z,2,2020-02-15T06:59:40Z +5426,2005-07-09T21:04:47Z,251,438,2005-07-17T00:55:47Z,1,2020-02-15T06:59:40Z +5427,2005-07-09T21:12:26Z,3197,499,2005-07-14T01:02:26Z,1,2020-02-15T06:59:40Z +5428,2005-07-09T21:12:50Z,3109,346,2005-07-14T16:25:50Z,2,2020-02-15T06:59:40Z +5429,2005-07-09T21:14:03Z,2467,105,2005-07-18T01:33:03Z,1,2020-02-15T06:59:40Z +5430,2005-07-09T21:19:54Z,1441,173,2005-07-15T22:53:54Z,1,2020-02-15T06:59:40Z +5431,2005-07-09T21:21:11Z,2780,213,2005-07-10T21:16:11Z,1,2020-02-15T06:59:40Z +5432,2005-07-09T21:21:25Z,1958,64,2005-07-14T21:34:25Z,2,2020-02-15T06:59:40Z +5433,2005-07-09T21:22:00Z,2679,349,2005-07-10T21:18:00Z,2,2020-02-15T06:59:40Z +5434,2005-07-09T21:25:20Z,3790,334,2005-07-15T03:12:20Z,2,2020-02-15T06:59:40Z +5435,2005-07-09T21:28:07Z,2884,273,2005-07-18T21:16:07Z,2,2020-02-15T06:59:40Z +5436,2005-07-09T21:31:11Z,2364,89,2005-07-13T16:59:11Z,2,2020-02-15T06:59:40Z +5437,2005-07-09T21:32:29Z,3532,26,2005-07-15T00:27:29Z,2,2020-02-15T06:59:40Z +5438,2005-07-09T21:34:32Z,487,241,2005-07-16T02:21:32Z,2,2020-02-15T06:59:40Z +5439,2005-07-09T21:39:35Z,1993,58,2005-07-13T17:45:35Z,2,2020-02-15T06:59:40Z +5440,2005-07-09T21:45:17Z,138,332,2005-07-11T22:43:17Z,2,2020-02-15T06:59:40Z +5441,2005-07-09T21:52:05Z,3913,7,2005-07-17T02:54:05Z,1,2020-02-15T06:59:40Z +5442,2005-07-09T21:55:19Z,3093,29,2005-07-19T01:18:19Z,2,2020-02-15T06:59:40Z +5443,2005-07-09T21:56:09Z,2951,137,2005-07-16T00:33:09Z,2,2020-02-15T06:59:40Z +5444,2005-07-09T21:58:57Z,2968,10,2005-07-11T03:09:57Z,2,2020-02-15T06:59:40Z +5445,2005-07-09T21:59:41Z,565,578,2005-07-15T00:40:41Z,1,2020-02-15T06:59:40Z +5446,2005-07-09T21:59:55Z,2769,454,2005-07-11T01:45:55Z,2,2020-02-15T06:59:40Z +5447,2005-07-09T22:09:28Z,2530,473,2005-07-18T20:03:28Z,2,2020-02-15T06:59:40Z +5448,2005-07-09T22:11:14Z,646,463,2005-07-15T21:08:14Z,2,2020-02-15T06:59:40Z +5449,2005-07-09T22:12:01Z,921,261,2005-07-18T01:18:01Z,2,2020-02-15T06:59:40Z +5450,2005-07-09T22:13:25Z,2356,328,2005-07-13T23:28:25Z,1,2020-02-15T06:59:40Z +5451,2005-07-09T22:22:10Z,3484,39,2005-07-11T02:43:10Z,1,2020-02-15T06:59:40Z +5452,2005-07-09T22:23:21Z,2036,80,2005-07-17T00:20:21Z,1,2020-02-15T06:59:40Z +5453,2005-07-09T22:24:11Z,1780,106,2005-07-19T04:08:11Z,1,2020-02-15T06:59:40Z +5454,2005-07-09T22:24:25Z,3049,97,2005-07-11T01:52:25Z,1,2020-02-15T06:59:40Z +5455,2005-07-09T22:28:45Z,1955,464,2005-07-18T02:50:45Z,2,2020-02-15T06:59:40Z +5456,2005-07-09T22:31:45Z,3003,360,2005-07-12T03:53:45Z,1,2020-02-15T06:59:40Z +5457,2005-07-09T22:33:14Z,4179,433,2005-07-12T02:30:14Z,1,2020-02-15T06:59:40Z +5458,2005-07-09T22:35:49Z,2203,521,2005-07-16T22:55:49Z,1,2020-02-15T06:59:40Z +5459,2005-07-09T22:43:56Z,1847,168,2005-07-12T18:05:56Z,1,2020-02-15T06:59:40Z +5460,2005-07-09T22:46:14Z,2410,38,2005-07-12T21:26:14Z,2,2020-02-15T06:59:40Z +5461,2005-07-09T22:48:04Z,53,244,2005-07-10T17:56:04Z,2,2020-02-15T06:59:40Z +5462,2005-07-09T22:56:53Z,871,583,2005-07-11T21:50:53Z,2,2020-02-15T06:59:40Z +5463,2005-07-09T22:57:02Z,601,374,2005-07-11T03:10:02Z,1,2020-02-15T06:59:40Z +5464,2005-07-09T22:58:14Z,3692,434,2005-07-15T02:48:14Z,1,2020-02-15T06:59:40Z +5465,2005-07-09T23:01:13Z,723,503,2005-07-13T01:03:13Z,1,2020-02-15T06:59:40Z +5466,2005-07-09T23:03:21Z,2302,482,2005-07-10T20:11:21Z,2,2020-02-15T06:59:40Z +5467,2005-07-09T23:05:47Z,374,543,2005-07-16T17:06:47Z,2,2020-02-15T06:59:40Z +5468,2005-07-09T23:06:09Z,2196,81,2005-07-13T00:48:09Z,1,2020-02-15T06:59:40Z +5469,2005-07-09T23:08:07Z,2201,475,2005-07-13T19:13:07Z,1,2020-02-15T06:59:40Z +5470,2005-07-09T23:10:49Z,3254,325,2005-07-18T04:30:49Z,1,2020-02-15T06:59:40Z +5471,2005-07-09T23:11:52Z,4086,347,2005-07-13T02:08:52Z,2,2020-02-15T06:59:40Z +5472,2005-07-09T23:16:40Z,865,165,2005-07-10T18:43:40Z,2,2020-02-15T06:59:40Z +5473,2005-07-09T23:19:11Z,4283,51,2005-07-19T02:30:11Z,2,2020-02-15T06:59:40Z +5474,2005-07-09T23:23:57Z,3608,375,2005-07-15T03:11:57Z,1,2020-02-15T06:59:40Z +5475,2005-07-09T23:31:38Z,726,219,2005-07-12T03:51:38Z,1,2020-02-15T06:59:40Z +5476,2005-07-09T23:37:09Z,1199,427,2005-07-15T23:57:09Z,1,2020-02-15T06:59:40Z +5477,2005-07-09T23:43:49Z,994,542,2005-07-15T05:03:49Z,2,2020-02-15T06:59:40Z +5478,2005-07-09T23:45:15Z,3213,583,2005-07-15T22:48:15Z,1,2020-02-15T06:59:40Z +5479,2005-07-09T23:47:33Z,216,250,2005-07-13T01:09:33Z,1,2020-02-15T06:59:40Z +5480,2005-07-09T23:49:07Z,847,452,2005-07-12T00:15:07Z,1,2020-02-15T06:59:40Z +5481,2005-07-09T23:51:57Z,562,479,2005-07-11T05:28:57Z,2,2020-02-15T06:59:40Z +5482,2005-07-09T23:53:04Z,2136,460,2005-07-15T04:59:04Z,1,2020-02-15T06:59:40Z +5483,2005-07-09T23:54:09Z,4362,89,2005-07-17T23:36:09Z,1,2020-02-15T06:59:40Z +5484,2005-07-09T23:54:37Z,3248,495,2005-07-15T02:05:37Z,1,2020-02-15T06:59:40Z +5485,2005-07-09T23:55:25Z,3930,173,2005-07-14T04:08:25Z,1,2020-02-15T06:59:40Z +5486,2005-07-09T23:57:44Z,2864,538,2005-07-14T00:23:44Z,1,2020-02-15T06:59:40Z +5487,2005-07-10T00:01:50Z,1144,341,2005-07-10T20:43:50Z,1,2020-02-15T06:59:40Z +5488,2005-07-10T00:02:06Z,4262,173,2005-07-15T01:45:06Z,2,2020-02-15T06:59:40Z +5489,2005-07-10T00:07:03Z,2319,490,2005-07-15T19:52:03Z,1,2020-02-15T06:59:40Z +5490,2005-07-10T00:09:11Z,3044,367,2005-07-14T21:23:11Z,1,2020-02-15T06:59:40Z +5491,2005-07-10T00:09:45Z,2007,49,2005-07-11T02:25:45Z,1,2020-02-15T06:59:40Z +5492,2005-07-10T00:11:09Z,4524,558,2005-07-14T01:27:09Z,1,2020-02-15T06:59:40Z +5493,2005-07-10T00:11:44Z,2037,539,2005-07-15T19:24:44Z,2,2020-02-15T06:59:40Z +5494,2005-07-10T00:15:00Z,3087,139,2005-07-17T01:12:00Z,2,2020-02-15T06:59:40Z +5495,2005-07-10T00:16:54Z,2199,257,2005-07-19T01:22:54Z,2,2020-02-15T06:59:40Z +5496,2005-07-10T00:20:23Z,3182,369,2005-07-18T21:10:23Z,2,2020-02-15T06:59:40Z +5497,2005-07-10T00:23:23Z,4473,92,2005-07-16T03:54:23Z,1,2020-02-15T06:59:40Z +5498,2005-07-10T00:27:21Z,63,302,2005-07-13T20:11:21Z,2,2020-02-15T06:59:40Z +5499,2005-07-10T00:27:45Z,1525,127,2005-07-17T06:11:45Z,1,2020-02-15T06:59:40Z +5500,2005-07-10T00:28:17Z,3380,457,2005-07-15T19:09:17Z,1,2020-02-15T06:59:40Z +5501,2005-07-10T00:33:48Z,3979,372,2005-07-17T02:58:48Z,1,2020-02-15T06:59:40Z +5502,2005-07-10T00:34:15Z,3712,243,2005-07-11T21:44:15Z,1,2020-02-15T06:59:40Z +5503,2005-07-10T00:35:37Z,3892,262,2005-07-12T20:29:37Z,1,2020-02-15T06:59:40Z +5504,2005-07-10T00:36:38Z,3053,455,2005-07-16T19:36:38Z,1,2020-02-15T06:59:40Z +5505,2005-07-10T00:38:48Z,896,253,2005-07-12T03:12:48Z,2,2020-02-15T06:59:40Z +5506,2005-07-10T00:45:48Z,2432,117,2005-07-18T20:35:48Z,2,2020-02-15T06:59:40Z +5507,2005-07-10T00:49:04Z,716,399,2005-07-15T22:06:04Z,2,2020-02-15T06:59:40Z +5508,2005-07-10T00:50:01Z,2977,345,2005-07-16T19:07:01Z,1,2020-02-15T06:59:40Z +5509,2005-07-10T00:54:46Z,1142,102,2005-07-16T05:10:46Z,1,2020-02-15T06:59:40Z +5510,2005-07-10T00:58:37Z,1298,67,2005-07-17T22:02:37Z,2,2020-02-15T06:59:40Z +5511,2005-07-10T01:00:00Z,3678,301,2005-07-12T20:44:00Z,1,2020-02-15T06:59:40Z +5512,2005-07-10T01:05:38Z,4470,405,2005-07-17T20:47:38Z,1,2020-02-15T06:59:40Z +5513,2005-07-10T01:05:41Z,2558,356,2005-07-11T02:05:41Z,2,2020-02-15T06:59:40Z +5514,2005-07-10T01:09:42Z,1824,522,2005-07-17T05:47:42Z,1,2020-02-15T06:59:40Z +5515,2005-07-10T01:12:44Z,3772,39,2005-07-13T00:39:44Z,1,2020-02-15T06:59:40Z +5516,2005-07-10T01:13:52Z,1902,581,2005-07-15T22:56:52Z,1,2020-02-15T06:59:40Z +5517,2005-07-10T01:15:00Z,3689,42,2005-07-19T01:59:00Z,1,2020-02-15T06:59:40Z +5518,2005-07-10T01:15:11Z,3340,451,2005-07-18T19:28:11Z,2,2020-02-15T06:59:40Z +5519,2005-07-10T01:18:32Z,1312,85,2005-07-11T20:39:32Z,1,2020-02-15T06:59:40Z +5520,2005-07-10T01:30:41Z,2527,501,2005-07-15T21:37:41Z,2,2020-02-15T06:59:40Z +5521,2005-07-10T01:31:22Z,1956,182,2005-07-17T05:42:22Z,2,2020-02-15T06:59:40Z +5522,2005-07-10T01:46:29Z,2622,573,2005-07-18T00:41:29Z,2,2020-02-15T06:59:40Z +5523,2005-07-10T01:47:55Z,2233,125,2005-07-18T22:25:55Z,1,2020-02-15T06:59:40Z +5524,2005-07-10T01:49:24Z,3596,386,2005-07-14T22:55:24Z,1,2020-02-15T06:59:40Z +5525,2005-07-10T02:03:08Z,3141,241,2005-07-18T07:32:08Z,1,2020-02-15T06:59:40Z +5526,2005-07-10T02:04:03Z,3909,144,2005-07-16T22:15:03Z,2,2020-02-15T06:59:40Z +5527,2005-07-10T02:06:01Z,4462,554,2005-07-15T00:55:01Z,2,2020-02-15T06:59:40Z +5528,2005-07-10T02:09:21Z,680,551,2005-07-17T06:22:21Z,2,2020-02-15T06:59:40Z +5529,2005-07-10T02:11:13Z,1652,590,2005-07-15T06:56:13Z,2,2020-02-15T06:59:40Z +5530,2005-07-10T02:13:49Z,2701,74,2005-07-18T08:01:49Z,2,2020-02-15T06:59:40Z +5531,2005-07-10T02:13:59Z,2992,173,2005-07-15T00:01:59Z,2,2020-02-15T06:59:40Z +5532,2005-07-10T02:17:31Z,983,522,2005-07-16T02:57:31Z,2,2020-02-15T06:59:40Z +5533,2005-07-10T02:19:28Z,2567,270,2005-07-11T01:37:28Z,1,2020-02-15T06:59:40Z +5534,2005-07-10T02:26:49Z,3251,156,2005-07-11T07:13:49Z,1,2020-02-15T06:59:40Z +5535,2005-07-10T02:27:42Z,1623,394,2005-07-12T21:13:42Z,1,2020-02-15T06:59:40Z +5536,2005-07-10T02:29:42Z,1919,195,2005-07-13T04:06:42Z,2,2020-02-15T06:59:40Z +5537,2005-07-10T02:35:41Z,1781,254,2005-07-13T07:11:41Z,2,2020-02-15T06:59:40Z +5538,2005-07-10T02:39:40Z,2119,367,2005-07-12T01:39:40Z,2,2020-02-15T06:59:40Z +5539,2005-07-10T02:42:58Z,3217,90,2005-07-16T02:27:58Z,2,2020-02-15T06:59:40Z +5540,2005-07-10T02:44:21Z,132,250,2005-07-11T07:13:21Z,1,2020-02-15T06:59:40Z +5541,2005-07-10T02:44:27Z,1211,135,2005-07-13T04:13:27Z,2,2020-02-15T06:59:40Z +5542,2005-07-10T02:45:53Z,1713,105,2005-07-15T23:23:53Z,2,2020-02-15T06:59:40Z +5543,2005-07-10T02:48:03Z,1496,71,2005-07-17T05:49:03Z,2,2020-02-15T06:59:40Z +5544,2005-07-10T02:48:07Z,1014,316,2005-07-17T01:08:07Z,1,2020-02-15T06:59:40Z +5545,2005-07-10T02:50:29Z,118,236,2005-07-16T02:11:29Z,1,2020-02-15T06:59:40Z +5546,2005-07-10T02:50:37Z,2918,515,2005-07-16T08:22:37Z,1,2020-02-15T06:59:40Z +5547,2005-07-10T02:52:47Z,1432,519,2005-07-16T02:10:47Z,1,2020-02-15T06:59:40Z +5548,2005-07-10T02:56:45Z,2973,317,2005-07-13T01:33:45Z,2,2020-02-15T06:59:40Z +5549,2005-07-10T02:58:29Z,2685,163,2005-07-17T05:24:29Z,2,2020-02-15T06:59:40Z +5550,2005-07-10T02:58:35Z,1905,254,2005-07-16T02:38:35Z,2,2020-02-15T06:59:40Z +5551,2005-07-10T03:01:09Z,4238,44,2005-07-18T02:04:09Z,2,2020-02-15T06:59:40Z +5552,2005-07-10T03:01:19Z,2879,27,2005-07-13T06:53:19Z,2,2020-02-15T06:59:40Z +5553,2005-07-10T03:03:35Z,1686,6,2005-07-14T07:49:35Z,2,2020-02-15T06:59:40Z +5554,2005-07-10T03:03:38Z,4084,252,2005-07-17T00:00:38Z,2,2020-02-15T06:59:40Z +5555,2005-07-10T03:08:55Z,2551,79,2005-07-11T01:36:55Z,2,2020-02-15T06:59:40Z +5556,2005-07-10T03:10:17Z,4483,354,2005-07-14T02:47:17Z,1,2020-02-15T06:59:40Z +5557,2005-07-10T03:10:21Z,1433,346,2005-07-11T21:34:21Z,1,2020-02-15T06:59:40Z +5558,2005-07-10T03:12:08Z,1123,96,2005-07-14T03:09:08Z,2,2020-02-15T06:59:40Z +5559,2005-07-10T03:13:07Z,4122,496,2005-07-18T08:33:07Z,1,2020-02-15T06:59:40Z +5560,2005-07-10T03:13:24Z,720,231,2005-07-19T06:03:24Z,2,2020-02-15T06:59:40Z +5561,2005-07-10T03:15:24Z,1048,369,2005-07-15T06:46:24Z,1,2020-02-15T06:59:40Z +5562,2005-07-10T03:17:42Z,3604,300,2005-07-12T03:26:42Z,1,2020-02-15T06:59:40Z +5563,2005-07-10T03:21:02Z,2258,362,2005-07-14T07:40:02Z,1,2020-02-15T06:59:40Z +5564,2005-07-10T03:23:05Z,196,355,2005-07-16T07:46:05Z,2,2020-02-15T06:59:40Z +5565,2005-07-10T03:29:48Z,3368,14,2005-07-17T04:43:48Z,1,2020-02-15T06:59:40Z +5566,2005-07-10T03:30:17Z,1343,124,2005-07-13T06:32:17Z,1,2020-02-15T06:59:40Z +5567,2005-07-10T03:36:46Z,1616,147,2005-07-15T23:22:46Z,2,2020-02-15T06:59:40Z +5568,2005-07-10T03:36:56Z,1130,424,2005-07-11T08:35:56Z,2,2020-02-15T06:59:40Z +5569,2005-07-10T03:38:32Z,2835,69,2005-07-16T00:02:32Z,2,2020-02-15T06:59:40Z +5570,2005-07-10T03:46:47Z,2013,374,2005-07-17T09:28:47Z,1,2020-02-15T06:59:40Z +5571,2005-07-10T03:48:20Z,1084,76,2005-07-11T02:09:20Z,2,2020-02-15T06:59:40Z +5572,2005-07-10T03:49:00Z,2709,458,2005-07-14T01:25:00Z,1,2020-02-15T06:59:40Z +5573,2005-07-10T03:50:47Z,2957,170,2005-07-17T06:40:47Z,2,2020-02-15T06:59:40Z +5574,2005-07-10T03:54:38Z,2307,163,2005-07-19T07:20:38Z,2,2020-02-15T06:59:40Z +5575,2005-07-10T03:55:50Z,2316,107,2005-07-12T08:40:50Z,1,2020-02-15T06:59:40Z +5576,2005-07-10T03:57:05Z,1453,217,2005-07-13T02:16:05Z,2,2020-02-15T06:59:40Z +5577,2005-07-10T03:58:40Z,3779,266,2005-07-14T03:36:40Z,1,2020-02-15T06:59:40Z +5578,2005-07-10T04:00:31Z,4543,378,2005-07-16T08:06:31Z,2,2020-02-15T06:59:40Z +5579,2005-07-10T04:04:29Z,945,203,2005-07-14T04:31:29Z,1,2020-02-15T06:59:40Z +5580,2005-07-10T04:05:49Z,2753,521,2005-07-18T22:36:49Z,2,2020-02-15T06:59:40Z +5581,2005-07-10T04:06:06Z,3450,306,2005-07-15T08:31:06Z,2,2020-02-15T06:59:40Z +5582,2005-07-10T04:08:25Z,3341,305,2005-07-13T06:04:25Z,1,2020-02-15T06:59:40Z +5583,2005-07-10T04:08:48Z,1242,391,2005-07-19T07:59:48Z,1,2020-02-15T06:59:40Z +5584,2005-07-10T04:15:25Z,2606,289,2005-07-16T22:54:25Z,2,2020-02-15T06:59:40Z +5585,2005-07-10T04:15:43Z,3524,63,2005-07-15T08:24:43Z,1,2020-02-15T06:59:40Z +5586,2005-07-10T04:17:06Z,2965,427,2005-07-18T07:11:06Z,1,2020-02-15T06:59:40Z +5587,2005-07-10T04:17:25Z,4485,531,2005-07-15T01:41:25Z,1,2020-02-15T06:59:40Z +5588,2005-07-10T04:21:10Z,1166,535,2005-07-16T02:58:10Z,2,2020-02-15T06:59:40Z +5589,2005-07-10T04:22:58Z,3673,296,2005-07-10T23:13:58Z,1,2020-02-15T06:59:40Z +5590,2005-07-10T04:23:11Z,4442,407,2005-07-19T09:03:11Z,1,2020-02-15T06:59:40Z +5591,2005-07-10T04:25:03Z,378,374,2005-07-16T04:21:03Z,1,2020-02-15T06:59:40Z +5592,2005-07-10T04:26:13Z,2471,222,2005-07-19T02:32:13Z,2,2020-02-15T06:59:40Z +5593,2005-07-10T04:33:13Z,702,287,2005-07-17T08:44:13Z,2,2020-02-15T06:59:40Z +5594,2005-07-10T04:33:36Z,61,440,2005-07-12T08:13:36Z,2,2020-02-15T06:59:40Z +5595,2005-07-10T04:33:45Z,264,572,2005-07-16T04:04:45Z,1,2020-02-15T06:59:40Z +5596,2005-07-10T04:43:14Z,1662,240,2005-07-11T22:58:14Z,2,2020-02-15T06:59:40Z +5597,2005-07-10T04:47:57Z,4264,576,2005-07-17T01:54:57Z,2,2020-02-15T06:59:40Z +5598,2005-07-10T04:48:29Z,3412,397,2005-07-18T10:33:29Z,2,2020-02-15T06:59:40Z +5599,2005-07-10T04:52:04Z,3054,391,2005-07-13T05:19:04Z,1,2020-02-15T06:59:40Z +5600,2005-07-10T04:55:45Z,3713,138,2005-07-18T03:10:45Z,2,2020-02-15T06:59:40Z +5601,2005-07-10T04:56:55Z,3062,511,2005-07-11T00:14:55Z,1,2020-02-15T06:59:40Z +5602,2005-07-10T05:02:22Z,3544,253,2005-07-14T23:40:22Z,2,2020-02-15T06:59:40Z +5603,2005-07-10T05:04:54Z,1308,74,2005-07-12T01:54:54Z,2,2020-02-15T06:59:40Z +5604,2005-07-10T05:05:00Z,3702,78,2005-07-12T08:04:00Z,1,2020-02-15T06:59:40Z +5605,2005-07-10T05:06:45Z,2964,273,2005-07-15T02:51:45Z,2,2020-02-15T06:59:40Z +5606,2005-07-10T05:07:55Z,2896,51,2005-07-15T00:14:55Z,2,2020-02-15T06:59:40Z +5607,2005-07-10T05:08:10Z,4257,52,2005-07-15T00:40:10Z,2,2020-02-15T06:59:40Z +5608,2005-07-10T05:08:26Z,3854,384,2005-07-10T23:24:26Z,1,2020-02-15T06:59:40Z +5609,2005-07-10T05:09:46Z,1553,492,2005-07-12T10:38:46Z,1,2020-02-15T06:59:40Z +5610,2005-07-10T05:09:52Z,481,131,2005-07-13T07:08:52Z,2,2020-02-15T06:59:40Z +5611,2005-07-10T05:13:43Z,2832,424,2005-07-16T05:56:43Z,1,2020-02-15T06:59:40Z +5612,2005-07-10T05:15:12Z,2363,472,2005-07-17T09:50:12Z,2,2020-02-15T06:59:40Z +5613,2005-07-10T05:15:43Z,4517,220,2005-07-13T05:17:43Z,2,2020-02-15T06:59:40Z +5614,2005-07-10T05:16:56Z,133,371,2005-07-13T02:03:56Z,1,2020-02-15T06:59:40Z +5615,2005-07-10T05:18:51Z,1521,173,2005-07-17T11:05:51Z,2,2020-02-15T06:59:40Z +5616,2005-07-10T05:21:11Z,4014,238,2005-07-18T08:42:11Z,2,2020-02-15T06:59:40Z +5617,2005-07-10T05:28:50Z,2324,342,2005-07-12T00:02:50Z,2,2020-02-15T06:59:40Z +5618,2005-07-10T05:28:58Z,757,316,2005-07-18T01:38:58Z,1,2020-02-15T06:59:40Z +5619,2005-07-10T05:29:33Z,113,204,2005-07-15T00:40:33Z,1,2020-02-15T06:59:40Z +5620,2005-07-10T05:30:52Z,2980,92,2005-07-16T04:13:52Z,1,2020-02-15T06:59:40Z +5621,2005-07-10T05:34:10Z,552,310,2005-07-14T02:49:10Z,1,2020-02-15T06:59:40Z +5622,2005-07-10T05:39:37Z,1783,568,2005-07-15T00:48:37Z,2,2020-02-15T06:59:40Z +5623,2005-07-10T05:41:38Z,4464,229,2005-07-14T01:01:38Z,2,2020-02-15T06:59:40Z +5624,2005-07-10T05:43:16Z,1015,114,2005-07-12T05:33:16Z,1,2020-02-15T06:59:40Z +5625,2005-07-10T05:44:02Z,1751,114,2005-07-12T00:03:02Z,2,2020-02-15T06:59:40Z +5626,2005-07-10T05:49:35Z,3029,389,2005-07-15T08:05:35Z,1,2020-02-15T06:59:40Z +5627,2005-07-10T05:51:12Z,244,136,2005-07-17T09:56:12Z,2,2020-02-15T06:59:40Z +5628,2005-07-10T05:56:40Z,4040,87,2005-07-17T11:13:40Z,1,2020-02-15T06:59:40Z +5629,2005-07-10T06:02:25Z,400,546,2005-07-16T07:33:25Z,1,2020-02-15T06:59:40Z +5630,2005-07-10T06:08:14Z,1151,537,2005-07-14T03:37:14Z,2,2020-02-15T06:59:40Z +5631,2005-07-10T06:15:45Z,2095,595,2005-07-17T09:53:45Z,2,2020-02-15T06:59:40Z +5632,2005-07-10T06:17:06Z,2632,404,2005-07-17T02:32:06Z,2,2020-02-15T06:59:40Z +5633,2005-07-10T06:22:24Z,1056,480,2005-07-11T05:59:24Z,2,2020-02-15T06:59:40Z +5634,2005-07-10T06:25:48Z,323,487,2005-07-17T09:07:48Z,2,2020-02-15T06:59:40Z +5635,2005-07-10T06:28:39Z,1457,222,2005-07-17T08:35:39Z,2,2020-02-15T06:59:40Z +5636,2005-07-10T06:31:24Z,4116,2,2005-07-13T02:36:24Z,1,2020-02-15T06:59:40Z +5637,2005-07-10T06:31:37Z,4436,45,2005-07-17T01:16:37Z,1,2020-02-15T06:59:40Z +5638,2005-07-10T06:32:49Z,1528,570,2005-07-13T04:32:49Z,2,2020-02-15T06:59:40Z +5639,2005-07-10T06:33:39Z,2452,249,2005-07-19T07:47:39Z,1,2020-02-15T06:59:40Z +5640,2005-07-10T06:38:00Z,2706,574,2005-07-18T08:56:00Z,2,2020-02-15T06:59:40Z +5641,2005-07-10T06:43:43Z,3568,50,2005-07-15T06:33:43Z,1,2020-02-15T06:59:40Z +5642,2005-07-10T06:46:08Z,3630,299,2005-07-13T10:03:08Z,1,2020-02-15T06:59:40Z +5643,2005-07-10T06:49:00Z,796,34,2005-07-14T01:53:00Z,1,2020-02-15T06:59:40Z +5644,2005-07-10T06:57:44Z,4069,476,2005-07-15T03:52:44Z,2,2020-02-15T06:59:40Z +5645,2005-07-10T06:58:21Z,1586,333,2005-07-18T04:19:21Z,2,2020-02-15T06:59:40Z +5646,2005-07-10T07:08:09Z,1471,166,2005-07-14T03:48:09Z,2,2020-02-15T06:59:40Z +5647,2005-07-10T07:08:40Z,1466,128,2005-07-13T05:19:40Z,2,2020-02-15T06:59:40Z +5648,2005-07-10T07:09:21Z,4359,24,2005-07-16T07:23:21Z,2,2020-02-15T06:59:40Z +5649,2005-07-10T07:15:07Z,1349,336,2005-07-12T11:57:07Z,2,2020-02-15T06:59:40Z +5650,2005-07-10T07:17:01Z,2793,461,2005-07-15T11:59:01Z,1,2020-02-15T06:59:40Z +5651,2005-07-10T07:17:13Z,301,239,2005-07-15T12:13:13Z,2,2020-02-15T06:59:40Z +5652,2005-07-10T07:18:58Z,927,42,2005-07-19T07:52:58Z,1,2020-02-15T06:59:40Z +5653,2005-07-10T07:21:27Z,919,28,2005-07-16T01:58:27Z,1,2020-02-15T06:59:40Z +5654,2005-07-10T07:24:46Z,3419,490,2005-07-14T07:39:46Z,2,2020-02-15T06:59:40Z +5655,2005-07-10T07:31:06Z,3470,113,2005-07-17T08:22:06Z,1,2020-02-15T06:59:40Z +5656,2005-07-10T07:31:07Z,4138,159,2005-07-15T04:44:07Z,1,2020-02-15T06:59:40Z +5657,2005-07-10T07:33:43Z,4342,508,2005-07-18T01:55:43Z,2,2020-02-15T06:59:40Z +5658,2005-07-10T07:34:08Z,4402,165,2005-07-19T04:21:08Z,2,2020-02-15T06:59:40Z +5659,2005-07-10T07:45:40Z,4265,9,2005-07-15T05:20:40Z,1,2020-02-15T06:59:40Z +5660,2005-07-10T07:46:12Z,1404,171,2005-07-17T07:48:12Z,1,2020-02-15T06:59:40Z +5661,2005-07-10T07:53:51Z,1878,108,2005-07-14T12:57:51Z,2,2020-02-15T06:59:40Z +5662,2005-07-10T07:59:24Z,219,502,2005-07-14T13:06:24Z,1,2020-02-15T06:59:40Z +5663,2005-07-10T08:01:33Z,3078,530,2005-07-15T03:36:33Z,2,2020-02-15T06:59:40Z +5664,2005-07-10T08:04:41Z,2375,469,2005-07-17T10:29:41Z,1,2020-02-15T06:59:40Z +5665,2005-07-10T08:10:08Z,1175,415,2005-07-11T05:22:08Z,2,2020-02-15T06:59:40Z +5666,2005-07-10T08:10:29Z,2225,242,2005-07-17T04:54:29Z,2,2020-02-15T06:59:40Z +5667,2005-07-10T08:11:03Z,683,336,2005-07-15T08:23:03Z,2,2020-02-15T06:59:40Z +5668,2005-07-10T08:11:05Z,309,211,2005-07-16T13:15:05Z,1,2020-02-15T06:59:40Z +5669,2005-07-10T08:12:53Z,1173,323,2005-07-11T05:48:53Z,2,2020-02-15T06:59:40Z +5670,2005-07-10T08:14:52Z,610,121,2005-07-14T04:13:52Z,2,2020-02-15T06:59:40Z +5671,2005-07-10T08:18:22Z,1304,268,2005-07-11T07:03:22Z,2,2020-02-15T06:59:40Z +5672,2005-07-10T08:19:38Z,2326,158,2005-07-16T06:28:38Z,2,2020-02-15T06:59:40Z +5673,2005-07-10T08:21:54Z,4018,117,2005-07-11T05:54:54Z,2,2020-02-15T06:59:40Z +5674,2005-07-10T08:26:26Z,548,258,2005-07-16T02:43:26Z,1,2020-02-15T06:59:40Z +5675,2005-07-10T08:31:06Z,2134,376,2005-07-17T11:48:06Z,1,2020-02-15T06:59:40Z +5676,2005-07-10T08:38:32Z,3595,153,2005-07-13T10:11:32Z,1,2020-02-15T06:59:40Z +5677,2005-07-10T08:41:28Z,2647,105,2005-07-12T09:05:28Z,2,2020-02-15T06:59:40Z +5678,2005-07-10T08:42:42Z,4366,96,2005-07-19T03:48:42Z,1,2020-02-15T06:59:40Z +5679,2005-07-10T08:44:02Z,389,138,2005-07-14T05:30:02Z,1,2020-02-15T06:59:40Z +5680,2005-07-10T08:47:36Z,3503,199,2005-07-17T06:10:36Z,1,2020-02-15T06:59:40Z +5681,2005-07-10T08:48:39Z,4176,50,2005-07-18T07:17:39Z,1,2020-02-15T06:59:40Z +5682,2005-07-10T08:51:39Z,17,302,2005-07-12T14:44:39Z,2,2020-02-15T06:59:40Z +5683,2005-07-10T08:52:13Z,4433,285,2005-07-19T10:25:13Z,1,2020-02-15T06:59:40Z +5684,2005-07-10T08:59:03Z,99,132,2005-07-15T07:21:03Z,1,2020-02-15T06:59:40Z +5685,2005-07-10T09:01:38Z,1462,170,2005-07-17T10:58:38Z,1,2020-02-15T06:59:40Z +5686,2005-07-10T09:06:03Z,717,521,2005-07-11T10:59:03Z,2,2020-02-15T06:59:40Z +5687,2005-07-10T09:07:19Z,2170,363,2005-07-16T11:17:19Z,2,2020-02-15T06:59:40Z +5688,2005-07-10T09:16:08Z,3036,598,2005-07-15T09:44:08Z,1,2020-02-15T06:59:40Z +5689,2005-07-10T09:24:17Z,1731,381,2005-07-15T05:36:17Z,1,2020-02-15T06:59:40Z +5690,2005-07-10T09:26:49Z,1326,362,2005-07-19T07:17:49Z,2,2020-02-15T06:59:40Z +5691,2005-07-10T09:29:49Z,3526,466,2005-07-16T13:37:49Z,1,2020-02-15T06:59:40Z +5692,2005-07-10T09:32:22Z,59,244,2005-07-15T15:20:22Z,2,2020-02-15T06:59:40Z +5693,2005-07-10T09:35:43Z,2167,208,2005-07-12T08:05:43Z,2,2020-02-15T06:59:40Z +5694,2005-07-10T09:40:38Z,3476,57,2005-07-14T09:16:38Z,1,2020-02-15T06:59:40Z +5695,2005-07-10T09:43:40Z,440,459,2005-07-13T15:04:40Z,2,2020-02-15T06:59:40Z +5696,2005-07-10T09:44:32Z,128,96,2005-07-12T13:38:32Z,2,2020-02-15T06:59:40Z +5697,2005-07-10T09:44:44Z,934,515,2005-07-12T12:13:44Z,2,2020-02-15T06:59:40Z +5698,2005-07-10T09:47:00Z,639,46,2005-07-16T06:26:00Z,1,2020-02-15T06:59:40Z +5699,2005-07-10T09:48:04Z,958,211,2005-07-17T09:07:04Z,1,2020-02-15T06:59:40Z +5700,2005-07-10T09:49:42Z,3961,87,2005-07-19T04:20:42Z,1,2020-02-15T06:59:40Z +5701,2005-07-10T09:56:24Z,2395,91,2005-07-16T15:11:24Z,2,2020-02-15T06:59:40Z +5702,2005-07-10T10:00:01Z,3349,324,2005-07-11T15:29:01Z,1,2020-02-15T06:59:40Z +5703,2005-07-10T10:04:15Z,1585,132,2005-07-16T07:43:15Z,1,2020-02-15T06:59:40Z +5704,2005-07-10T10:06:29Z,2104,591,2005-07-17T10:48:29Z,1,2020-02-15T06:59:40Z +5705,2005-07-10T10:09:17Z,4030,300,2005-07-19T07:24:17Z,2,2020-02-15T06:59:40Z +5706,2005-07-10T10:21:46Z,3701,255,2005-07-16T04:37:46Z,2,2020-02-15T06:59:40Z +5707,2005-07-10T10:26:14Z,708,581,2005-07-18T06:19:14Z,1,2020-02-15T06:59:40Z +5708,2005-07-10T10:29:19Z,571,484,2005-07-18T06:50:19Z,1,2020-02-15T06:59:40Z +5709,2005-07-10T10:31:52Z,732,302,2005-07-12T10:47:52Z,1,2020-02-15T06:59:40Z +5710,2005-07-10T10:32:52Z,2843,265,2005-07-18T06:28:52Z,1,2020-02-15T06:59:40Z +5711,2005-07-10T10:37:20Z,3988,481,2005-07-13T11:20:20Z,1,2020-02-15T06:59:40Z +5712,2005-07-10T10:40:32Z,3480,304,2005-07-12T11:45:32Z,1,2020-02-15T06:59:40Z +5713,2005-07-10T10:46:15Z,1213,572,2005-07-19T14:34:15Z,1,2020-02-15T06:59:40Z +5714,2005-07-10T10:46:57Z,3706,17,2005-07-18T14:07:57Z,1,2020-02-15T06:59:40Z +5715,2005-07-10T10:48:03Z,1638,132,2005-07-18T11:27:03Z,1,2020-02-15T06:59:40Z +5716,2005-07-10T10:59:23Z,3416,102,2005-07-16T12:25:23Z,2,2020-02-15T06:59:40Z +5717,2005-07-10T11:02:03Z,529,15,2005-07-13T13:00:03Z,1,2020-02-15T06:59:40Z +5718,2005-07-10T11:03:20Z,3719,20,2005-07-19T15:38:20Z,2,2020-02-15T06:59:40Z +5719,2005-07-10T11:07:40Z,2100,94,2005-07-15T14:14:40Z,2,2020-02-15T06:59:40Z +5720,2005-07-10T11:09:12Z,576,339,2005-07-16T07:31:12Z,1,2020-02-15T06:59:40Z +5721,2005-07-10T11:09:35Z,2348,5,2005-07-17T16:41:35Z,2,2020-02-15T06:59:40Z +5722,2005-07-10T11:10:04Z,2890,556,2005-07-12T16:31:04Z,2,2020-02-15T06:59:40Z +5723,2005-07-10T11:14:48Z,605,33,2005-07-11T15:46:48Z,2,2020-02-15T06:59:40Z +5724,2005-07-10T11:18:12Z,3597,289,2005-07-16T14:53:12Z,2,2020-02-15T06:59:40Z +5725,2005-07-10T11:21:21Z,4293,426,2005-07-14T05:34:21Z,2,2020-02-15T06:59:40Z +5726,2005-07-10T11:22:08Z,3582,131,2005-07-13T05:55:08Z,1,2020-02-15T06:59:40Z +5727,2005-07-10T11:25:28Z,3338,550,2005-07-11T11:03:28Z,2,2020-02-15T06:59:40Z +5728,2005-07-10T11:26:14Z,636,335,2005-07-15T12:55:14Z,1,2020-02-15T06:59:40Z +5729,2005-07-10T11:27:25Z,4137,188,2005-07-15T06:13:25Z,2,2020-02-15T06:59:40Z +5730,2005-07-10T11:28:32Z,1903,301,2005-07-11T11:45:32Z,2,2020-02-15T06:59:40Z +5731,2005-07-10T11:31:52Z,2960,440,2005-07-14T11:44:52Z,1,2020-02-15T06:59:40Z +5732,2005-07-10T11:36:32Z,2833,597,2005-07-12T13:09:32Z,2,2020-02-15T06:59:40Z +5733,2005-07-10T11:37:24Z,3806,415,2005-07-11T12:34:24Z,2,2020-02-15T06:59:40Z +5734,2005-07-10T11:37:28Z,399,447,2005-07-16T11:10:28Z,1,2020-02-15T06:59:40Z +5735,2005-07-10T11:39:15Z,3259,65,2005-07-19T09:52:15Z,1,2020-02-15T06:59:40Z +5736,2005-07-10T11:45:48Z,1172,27,2005-07-13T16:40:48Z,1,2020-02-15T06:59:40Z +5737,2005-07-10T11:50:04Z,1118,218,2005-07-13T10:37:04Z,1,2020-02-15T06:59:40Z +5738,2005-07-10T11:50:51Z,200,187,2005-07-19T17:46:51Z,1,2020-02-15T06:59:40Z +5739,2005-07-10T11:51:50Z,163,219,2005-07-19T17:40:50Z,1,2020-02-15T06:59:40Z +5740,2005-07-10T11:51:58Z,2147,325,2005-07-12T07:53:58Z,2,2020-02-15T06:59:40Z +5741,2005-07-10T11:55:40Z,2041,513,2005-07-16T15:02:40Z,2,2020-02-15T06:59:40Z +5742,2005-07-10T11:56:18Z,3975,596,2005-07-19T06:59:18Z,2,2020-02-15T06:59:40Z +5743,2005-07-10T11:57:38Z,593,297,2005-07-19T15:38:38Z,2,2020-02-15T06:59:40Z +5744,2005-07-10T12:08:33Z,1372,437,2005-07-14T12:34:33Z,2,2020-02-15T06:59:40Z +5745,2005-07-10T12:10:11Z,41,305,2005-07-19T06:56:11Z,1,2020-02-15T06:59:40Z +5746,2005-07-10T12:15:12Z,3071,82,2005-07-16T07:02:12Z,1,2020-02-15T06:59:40Z +5747,2005-07-10T12:15:33Z,4562,583,2005-07-18T10:11:33Z,1,2020-02-15T06:59:40Z +5748,2005-07-10T12:19:59Z,1618,99,2005-07-12T12:59:59Z,1,2020-02-15T06:59:40Z +5749,2005-07-10T12:20:36Z,1768,304,2005-07-19T10:39:36Z,1,2020-02-15T06:59:40Z +5750,2005-07-10T12:20:41Z,3855,330,2005-07-17T08:25:41Z,2,2020-02-15T06:59:40Z +5751,2005-07-10T12:25:11Z,387,479,2005-07-11T15:23:11Z,1,2020-02-15T06:59:40Z +5752,2005-07-10T12:27:38Z,4444,86,2005-07-18T09:22:38Z,2,2020-02-15T06:59:40Z +5753,2005-07-10T12:29:43Z,3639,444,2005-07-17T12:50:43Z,2,2020-02-15T06:59:40Z +5754,2005-07-10T12:32:43Z,162,291,2005-07-12T13:11:43Z,2,2020-02-15T06:59:40Z +5755,2005-07-10T12:38:56Z,2760,2,2005-07-19T17:02:56Z,1,2020-02-15T06:59:40Z +5756,2005-07-10T12:39:28Z,130,183,2005-07-11T14:08:28Z,2,2020-02-15T06:59:40Z +5757,2005-07-10T12:40:17Z,1827,101,2005-07-12T14:02:17Z,1,2020-02-15T06:59:40Z +5758,2005-07-10T12:42:43Z,502,363,2005-07-16T10:18:43Z,2,2020-02-15T06:59:40Z +5759,2005-07-10T12:43:22Z,816,591,2005-07-16T16:42:22Z,1,2020-02-15T06:59:40Z +5760,2005-07-10T12:44:48Z,1050,154,2005-07-14T12:25:48Z,1,2020-02-15T06:59:40Z +5761,2005-07-10T12:45:36Z,1763,287,2005-07-13T10:05:36Z,2,2020-02-15T06:59:40Z +5762,2005-07-10T12:48:01Z,1815,217,2005-07-18T16:43:01Z,1,2020-02-15T06:59:40Z +5763,2005-07-10T12:58:12Z,753,397,2005-07-14T08:52:12Z,1,2020-02-15T06:59:40Z +5764,2005-07-10T12:58:16Z,1556,245,2005-07-19T07:28:16Z,1,2020-02-15T06:59:40Z +5765,2005-07-10T13:03:02Z,2619,293,2005-07-16T09:31:02Z,1,2020-02-15T06:59:40Z +5766,2005-07-10T13:07:31Z,7,406,2005-07-16T13:03:31Z,1,2020-02-15T06:59:40Z +5767,2005-07-10T13:13:18Z,2871,32,2005-07-17T14:41:18Z,2,2020-02-15T06:59:40Z +5768,2005-07-10T13:15:26Z,345,196,2005-07-15T09:42:26Z,1,2020-02-15T06:59:40Z +5769,2005-07-10T13:17:58Z,4052,141,2005-07-11T11:32:58Z,1,2020-02-15T06:59:40Z +5770,2005-07-10T13:21:28Z,914,71,2005-07-11T08:59:28Z,2,2020-02-15T06:59:40Z +5771,2005-07-10T13:26:45Z,3275,153,2005-07-14T15:43:45Z,1,2020-02-15T06:59:40Z +5772,2005-07-10T13:27:40Z,3635,21,2005-07-17T08:24:40Z,1,2020-02-15T06:59:40Z +5773,2005-07-10T13:31:09Z,3277,180,2005-07-15T08:21:09Z,2,2020-02-15T06:59:40Z +5774,2005-07-10T13:31:56Z,326,113,2005-07-18T07:32:56Z,1,2020-02-15T06:59:40Z +5775,2005-07-10T13:34:26Z,2175,325,2005-07-15T10:01:26Z,1,2020-02-15T06:59:40Z +5776,2005-07-10T13:35:22Z,3592,568,2005-07-12T17:58:22Z,1,2020-02-15T06:59:40Z +5777,2005-07-10T13:38:41Z,3959,40,2005-07-17T15:48:41Z,2,2020-02-15T06:59:40Z +5778,2005-07-10T13:41:37Z,4435,324,2005-07-14T16:26:37Z,1,2020-02-15T06:59:40Z +5779,2005-07-10T13:45:54Z,3266,244,2005-07-15T18:13:54Z,1,2020-02-15T06:59:40Z +5780,2005-07-10T13:46:23Z,168,516,2005-07-14T17:19:23Z,2,2020-02-15T06:59:40Z +5781,2005-07-10T13:49:30Z,3191,167,2005-07-11T12:11:30Z,2,2020-02-15T06:59:40Z +5782,2005-07-10T13:52:56Z,2514,440,2005-07-15T09:32:56Z,2,2020-02-15T06:59:40Z +5783,2005-07-10T13:55:33Z,3331,385,2005-07-16T12:13:33Z,1,2020-02-15T06:59:40Z +5784,2005-07-10T14:03:28Z,2323,422,2005-07-16T16:22:28Z,1,2020-02-15T06:59:40Z +5785,2005-07-10T14:06:03Z,142,211,2005-07-17T17:59:03Z,2,2020-02-15T06:59:40Z +5786,2005-07-10T14:06:44Z,2290,350,2005-07-14T19:55:44Z,2,2020-02-15T06:59:40Z +5787,2005-07-10T14:08:49Z,1075,44,2005-07-19T18:29:49Z,1,2020-02-15T06:59:40Z +5788,2005-07-10T14:10:22Z,1707,63,2005-07-14T19:46:22Z,2,2020-02-15T06:59:40Z +5789,2005-07-10T14:11:26Z,2601,571,2005-07-18T16:19:26Z,1,2020-02-15T06:59:40Z +5790,2005-07-10T14:15:21Z,1696,235,2005-07-14T08:53:21Z,2,2020-02-15T06:59:40Z +5791,2005-07-10T14:16:22Z,2795,319,2005-07-19T13:38:22Z,2,2020-02-15T06:59:40Z +5792,2005-07-10T14:22:19Z,4234,92,2005-07-19T09:08:19Z,1,2020-02-15T06:59:40Z +5793,2005-07-10T14:33:00Z,2927,268,2005-07-13T19:27:00Z,1,2020-02-15T06:59:40Z +5794,2005-07-10T14:34:53Z,1164,198,2005-07-17T11:50:53Z,2,2020-02-15T06:59:40Z +5795,2005-07-10T14:36:29Z,3958,304,2005-07-14T13:26:29Z,1,2020-02-15T06:59:40Z +5796,2005-07-10T14:42:54Z,1631,286,2005-07-17T08:47:54Z,2,2020-02-15T06:59:40Z +5797,2005-07-10T14:43:52Z,1880,384,2005-07-13T16:12:52Z,2,2020-02-15T06:59:40Z +5798,2005-07-10T14:45:09Z,331,107,2005-07-16T13:43:09Z,1,2020-02-15T06:59:40Z +5799,2005-07-10T14:53:35Z,3045,520,2005-07-14T16:18:35Z,2,2020-02-15T06:59:40Z +5800,2005-07-10T14:58:36Z,2466,411,2005-07-11T19:50:36Z,2,2020-02-15T06:59:40Z +5801,2005-07-10T14:59:05Z,3511,439,2005-07-14T17:55:05Z,2,2020-02-15T06:59:40Z +5802,2005-07-10T15:02:17Z,2295,520,2005-07-19T15:43:17Z,2,2020-02-15T06:59:40Z +5803,2005-07-10T15:05:42Z,1982,244,2005-07-15T10:19:42Z,1,2020-02-15T06:59:40Z +5804,2005-07-10T15:06:31Z,2168,137,2005-07-14T11:00:31Z,1,2020-02-15T06:59:40Z +5805,2005-07-10T15:08:41Z,3553,532,2005-07-19T16:35:41Z,2,2020-02-15T06:59:40Z +5806,2005-07-10T15:11:54Z,29,108,2005-07-15T11:51:54Z,2,2020-02-15T06:59:40Z +5807,2005-07-10T15:16:30Z,2092,301,2005-07-11T14:02:30Z,2,2020-02-15T06:59:40Z +5808,2005-07-10T15:17:33Z,2310,170,2005-07-14T12:14:33Z,2,2020-02-15T06:59:40Z +5809,2005-07-10T15:19:30Z,1748,461,2005-07-13T12:31:30Z,2,2020-02-15T06:59:40Z +5810,2005-07-10T15:22:04Z,1426,482,2005-07-18T21:05:04Z,2,2020-02-15T06:59:40Z +5811,2005-07-10T15:27:04Z,4007,441,2005-07-12T17:20:04Z,1,2020-02-15T06:59:40Z +5812,2005-07-10T15:27:56Z,1681,581,2005-07-18T15:37:56Z,2,2020-02-15T06:59:40Z +5813,2005-07-10T15:34:37Z,942,512,2005-07-17T16:14:37Z,2,2020-02-15T06:59:40Z +5814,2005-07-10T15:46:50Z,2537,71,2005-07-13T15:28:50Z,2,2020-02-15T06:59:40Z +5815,2005-07-10T15:48:19Z,2934,22,2005-07-13T12:09:19Z,1,2020-02-15T06:59:40Z +5816,2005-07-10T15:48:47Z,1746,382,2005-07-13T11:51:47Z,2,2020-02-15T06:59:40Z +5817,2005-07-10T15:49:12Z,2993,28,2005-07-18T19:30:12Z,2,2020-02-15T06:59:40Z +5818,2005-07-10T15:51:12Z,3940,334,2005-07-14T14:10:12Z,2,2020-02-15T06:59:40Z +5819,2005-07-10T15:56:20Z,3439,347,2005-07-12T19:59:20Z,2,2020-02-15T06:59:40Z +5820,2005-07-10T16:04:59Z,1511,485,2005-07-16T12:10:59Z,1,2020-02-15T06:59:40Z +5821,2005-07-10T16:07:16Z,147,302,2005-07-14T19:48:16Z,1,2020-02-15T06:59:40Z +5822,2005-07-10T16:10:39Z,1385,38,2005-07-13T19:05:39Z,2,2020-02-15T06:59:40Z +5823,2005-07-10T16:19:52Z,1879,483,2005-07-11T12:33:52Z,2,2020-02-15T06:59:40Z +5824,2005-07-10T16:19:53Z,1980,449,2005-07-12T11:17:53Z,2,2020-02-15T06:59:40Z +5825,2005-07-10T16:20:30Z,3843,444,2005-07-11T18:58:30Z,1,2020-02-15T06:59:40Z +5826,2005-07-10T16:21:02Z,4104,254,2005-07-17T21:08:02Z,1,2020-02-15T06:59:40Z +5827,2005-07-10T16:22:20Z,1296,290,2005-07-15T21:13:20Z,2,2020-02-15T06:59:40Z +5828,2005-07-10T16:27:25Z,2999,156,2005-07-11T18:42:25Z,1,2020-02-15T06:59:40Z +5829,2005-07-10T16:29:41Z,3405,118,2005-07-14T22:03:41Z,1,2020-02-15T06:59:40Z +5830,2005-07-10T16:34:00Z,2358,59,2005-07-18T16:42:00Z,1,2020-02-15T06:59:40Z +5831,2005-07-10T16:34:02Z,830,43,2005-07-11T14:27:02Z,2,2020-02-15T06:59:40Z +5832,2005-07-10T16:34:48Z,2387,63,2005-07-17T17:25:48Z,1,2020-02-15T06:59:40Z +5833,2005-07-10T16:39:24Z,3829,187,2005-07-17T12:52:24Z,1,2020-02-15T06:59:40Z +5834,2005-07-10T16:44:12Z,85,360,2005-07-14T11:34:12Z,2,2020-02-15T06:59:40Z +5835,2005-07-10T16:44:58Z,800,11,2005-07-17T16:03:58Z,2,2020-02-15T06:59:40Z +5836,2005-07-10T16:49:02Z,1842,310,2005-07-11T22:35:02Z,2,2020-02-15T06:59:40Z +5837,2005-07-10T16:57:50Z,1648,478,2005-07-18T14:07:50Z,2,2020-02-15T06:59:40Z +5838,2005-07-10T17:04:56Z,1627,202,2005-07-11T15:15:56Z,1,2020-02-15T06:59:40Z +5839,2005-07-10T17:08:30Z,252,367,2005-07-13T21:21:30Z,2,2020-02-15T06:59:40Z +5840,2005-07-10T17:09:09Z,1073,72,2005-07-15T22:52:09Z,1,2020-02-15T06:59:40Z +5841,2005-07-10T17:11:31Z,1230,525,2005-07-18T15:50:31Z,2,2020-02-15T06:59:40Z +5842,2005-07-10T17:11:37Z,139,247,2005-07-14T21:43:37Z,1,2020-02-15T06:59:40Z +5843,2005-07-10T17:14:27Z,1615,599,2005-07-15T21:18:27Z,2,2020-02-15T06:59:40Z +5844,2005-07-10T17:14:43Z,609,147,2005-07-12T19:27:43Z,1,2020-02-15T06:59:40Z +5845,2005-07-10T17:23:14Z,2882,334,2005-07-12T16:29:14Z,2,2020-02-15T06:59:40Z +5846,2005-07-10T17:25:24Z,938,233,2005-07-12T13:41:24Z,2,2020-02-15T06:59:40Z +5847,2005-07-10T17:27:42Z,4403,220,2005-07-12T14:51:42Z,2,2020-02-15T06:59:40Z +5848,2005-07-10T17:28:14Z,4549,409,2005-07-14T11:54:14Z,1,2020-02-15T06:59:40Z +5849,2005-07-10T17:32:33Z,1632,44,2005-07-19T22:39:33Z,1,2020-02-15T06:59:40Z +5850,2005-07-10T17:36:27Z,4015,531,2005-07-15T16:44:27Z,2,2020-02-15T06:59:40Z +5851,2005-07-10T17:40:47Z,3944,510,2005-07-11T19:24:47Z,2,2020-02-15T06:59:40Z +5852,2005-07-10T17:43:30Z,3890,484,2005-07-15T15:05:30Z,2,2020-02-15T06:59:40Z +5853,2005-07-10T17:45:13Z,3026,520,2005-07-17T21:37:13Z,1,2020-02-15T06:59:40Z +5854,2005-07-10T17:47:34Z,997,547,2005-07-13T20:14:34Z,2,2020-02-15T06:59:40Z +5855,2005-07-10T17:54:06Z,2457,166,2005-07-18T15:41:06Z,2,2020-02-15T06:59:40Z +5856,2005-07-10T17:57:32Z,497,314,2005-07-11T13:57:32Z,1,2020-02-15T06:59:40Z +5857,2005-07-10T17:59:29Z,1265,29,2005-07-18T18:13:29Z,1,2020-02-15T06:59:40Z +5858,2005-07-10T18:00:07Z,2913,257,2005-07-11T20:01:07Z,2,2020-02-15T06:59:40Z +5859,2005-07-10T18:02:02Z,131,220,2005-07-11T23:24:02Z,1,2020-02-15T06:59:40Z +5860,2005-07-10T18:08:49Z,3897,180,2005-07-16T16:43:49Z,2,2020-02-15T06:59:40Z +5861,2005-07-10T18:14:22Z,3881,277,2005-07-14T15:32:22Z,1,2020-02-15T06:59:40Z +5862,2005-07-10T18:20:48Z,2075,157,2005-07-17T00:09:48Z,1,2020-02-15T06:59:40Z +5863,2005-07-10T18:25:23Z,2557,419,2005-07-15T23:49:23Z,1,2020-02-15T06:59:40Z +5864,2005-07-10T18:29:57Z,4380,437,2005-07-19T14:27:57Z,2,2020-02-15T06:59:40Z +5865,2005-07-10T18:31:05Z,1382,126,2005-07-12T18:29:05Z,2,2020-02-15T06:59:40Z +5866,2005-07-10T18:35:14Z,457,484,2005-07-19T19:41:14Z,2,2020-02-15T06:59:40Z +5867,2005-07-10T18:39:01Z,730,321,2005-07-19T21:56:01Z,2,2020-02-15T06:59:40Z +5868,2005-07-10T18:39:16Z,452,429,2005-07-15T21:19:16Z,1,2020-02-15T06:59:40Z +5869,2005-07-10T18:40:09Z,2157,40,2005-07-17T18:42:09Z,1,2020-02-15T06:59:40Z +5870,2005-07-10T18:40:25Z,1524,438,2005-07-12T15:39:25Z,2,2020-02-15T06:59:40Z +5871,2005-07-10T18:46:08Z,3288,307,2005-07-16T17:32:08Z,1,2020-02-15T06:59:40Z +5872,2005-07-10T18:54:05Z,270,364,2005-07-19T15:41:05Z,1,2020-02-15T06:59:40Z +5873,2005-07-10T19:02:10Z,3151,354,2005-07-14T19:13:10Z,2,2020-02-15T06:59:40Z +5874,2005-07-10T19:02:51Z,2255,131,2005-07-16T13:14:51Z,1,2020-02-15T06:59:40Z +5875,2005-07-10T19:06:47Z,964,575,2005-07-18T17:33:47Z,2,2020-02-15T06:59:40Z +5876,2005-07-10T19:07:15Z,4445,578,2005-07-14T17:29:15Z,2,2020-02-15T06:59:40Z +5877,2005-07-10T19:08:51Z,1520,537,2005-07-19T19:48:51Z,1,2020-02-15T06:59:40Z +5878,2005-07-10T19:09:57Z,3805,271,2005-07-16T17:22:57Z,1,2020-02-15T06:59:40Z +5879,2005-07-10T19:12:47Z,3851,430,2005-07-16T16:32:47Z,1,2020-02-15T06:59:40Z +5880,2005-07-10T19:14:58Z,359,482,2005-07-17T01:13:58Z,1,2020-02-15T06:59:40Z +5881,2005-07-10T19:19:43Z,236,25,2005-07-12T20:11:43Z,1,2020-02-15T06:59:40Z +5882,2005-07-10T19:20:34Z,2830,319,2005-07-11T18:39:34Z,2,2020-02-15T06:59:40Z +5883,2005-07-10T19:25:21Z,2820,17,2005-07-16T20:50:21Z,2,2020-02-15T06:59:40Z +5884,2005-07-10T19:31:38Z,916,498,2005-07-11T20:30:38Z,1,2020-02-15T06:59:40Z +5885,2005-07-10T19:33:50Z,3129,331,2005-07-17T00:26:50Z,2,2020-02-15T06:59:40Z +5886,2005-07-10T19:36:25Z,907,215,2005-07-11T22:24:25Z,2,2020-02-15T06:59:40Z +5887,2005-07-10T19:45:47Z,2602,532,2005-07-15T22:15:47Z,1,2020-02-15T06:59:40Z +5888,2005-07-10T19:52:17Z,1620,268,2005-07-18T20:32:17Z,2,2020-02-15T06:59:40Z +5889,2005-07-10T19:54:41Z,1706,491,2005-07-12T20:08:41Z,2,2020-02-15T06:59:40Z +5890,2005-07-10T20:00:25Z,1463,535,2005-07-18T17:57:25Z,2,2020-02-15T06:59:40Z +5891,2005-07-10T20:01:17Z,4355,184,2005-07-12T00:15:17Z,1,2020-02-15T06:59:40Z +5892,2005-07-10T20:02:42Z,4322,333,2005-07-11T20:02:42Z,1,2020-02-15T06:59:40Z +5893,2005-07-10T20:05:30Z,1689,439,2005-07-14T23:05:30Z,1,2020-02-15T06:59:40Z +5894,2005-07-10T20:09:34Z,2264,194,2005-07-17T15:39:34Z,1,2020-02-15T06:59:40Z +5895,2005-07-10T20:13:19Z,2272,164,2005-07-17T17:51:19Z,1,2020-02-15T06:59:40Z +5896,2005-07-10T20:15:56Z,731,357,2005-07-12T00:39:56Z,1,2020-02-15T06:59:40Z +5897,2005-07-10T20:16:14Z,740,413,2005-07-19T15:49:14Z,2,2020-02-15T06:59:40Z +5898,2005-07-10T20:18:09Z,3257,538,2005-07-16T14:44:09Z,1,2020-02-15T06:59:40Z +5899,2005-07-10T20:21:52Z,1391,388,2005-07-13T00:46:52Z,1,2020-02-15T06:59:40Z +5900,2005-07-10T20:21:54Z,1081,419,2005-07-17T00:26:54Z,1,2020-02-15T06:59:40Z +5901,2005-07-10T20:22:12Z,86,165,2005-07-19T16:43:12Z,2,2020-02-15T06:59:40Z +5902,2005-07-10T20:31:24Z,2727,228,2005-07-11T20:50:24Z,1,2020-02-15T06:59:40Z +5903,2005-07-10T20:39:04Z,1388,573,2005-07-11T17:41:04Z,1,2020-02-15T06:59:40Z +5904,2005-07-10T20:39:44Z,350,531,2005-07-13T17:57:44Z,2,2020-02-15T06:59:40Z +5905,2005-07-10T20:41:09Z,3891,10,2005-07-19T14:49:09Z,1,2020-02-15T06:59:40Z +5906,2005-07-10T20:41:41Z,514,323,2005-07-14T00:12:41Z,2,2020-02-15T06:59:40Z +5907,2005-07-10T20:41:41Z,4432,168,2005-07-15T21:18:41Z,2,2020-02-15T06:59:40Z +5908,2005-07-10T20:44:14Z,810,156,2005-07-13T15:05:14Z,2,2020-02-15T06:59:40Z +5909,2005-07-10T20:46:13Z,2333,44,2005-07-14T18:01:13Z,2,2020-02-15T06:59:40Z +5910,2005-07-10T20:51:34Z,1039,464,2005-07-19T14:54:34Z,1,2020-02-15T06:59:40Z +5911,2005-07-10T20:51:42Z,4140,420,2005-07-14T21:58:42Z,2,2020-02-15T06:59:40Z +5912,2005-07-10T20:58:22Z,1187,351,2005-07-17T01:15:22Z,2,2020-02-15T06:59:40Z +5913,2005-07-10T20:58:55Z,2767,277,2005-07-13T15:18:55Z,1,2020-02-15T06:59:40Z +5914,2005-07-10T21:01:12Z,2639,372,2005-07-16T18:27:12Z,2,2020-02-15T06:59:40Z +5915,2005-07-10T21:12:16Z,2464,66,2005-07-15T16:59:16Z,2,2020-02-15T06:59:40Z +5916,2005-07-10T21:26:31Z,2267,35,2005-07-19T20:23:31Z,1,2020-02-15T06:59:40Z +5917,2005-07-10T21:30:22Z,2910,74,2005-07-12T18:54:22Z,2,2020-02-15T06:59:40Z +5918,2005-07-10T21:32:06Z,120,34,2005-07-19T21:35:06Z,1,2020-02-15T06:59:40Z +5919,2005-07-10T21:32:14Z,164,92,2005-07-12T16:47:14Z,1,2020-02-15T06:59:40Z +5920,2005-07-10T21:33:58Z,1893,221,2005-07-17T19:41:58Z,2,2020-02-15T06:59:40Z +5921,2005-07-10T21:35:12Z,3920,7,2005-07-18T19:59:12Z,1,2020-02-15T06:59:40Z +5922,2005-07-10T21:36:53Z,1392,271,2005-07-16T02:51:53Z,1,2020-02-15T06:59:40Z +5923,2005-07-10T21:40:06Z,1817,401,2005-07-13T00:01:06Z,1,2020-02-15T06:59:40Z +5924,2005-07-10T21:41:23Z,629,191,2005-07-16T21:33:23Z,1,2020-02-15T06:59:40Z +5925,2005-07-10T21:41:27Z,3724,503,2005-07-18T18:35:27Z,2,2020-02-15T06:59:40Z +5926,2005-07-10T21:53:42Z,2840,282,2005-07-20T01:04:42Z,1,2020-02-15T06:59:40Z +5927,2005-07-10T21:57:14Z,807,70,2005-07-16T19:32:14Z,1,2020-02-15T06:59:40Z +5928,2005-07-10T21:58:30Z,4132,50,2005-07-15T19:41:30Z,1,2020-02-15T06:59:40Z +5929,2005-07-10T21:59:29Z,4303,54,2005-07-14T20:20:29Z,2,2020-02-15T06:59:40Z +5930,2005-07-10T21:59:32Z,2338,254,2005-07-11T18:40:32Z,2,2020-02-15T06:59:40Z +5931,2005-07-10T22:04:19Z,2259,341,2005-07-13T00:45:19Z,2,2020-02-15T06:59:40Z +5932,2005-07-10T22:05:15Z,2269,523,2005-07-12T17:04:15Z,2,2020-02-15T06:59:40Z +5933,2005-07-10T22:06:48Z,4372,419,2005-07-12T23:58:48Z,2,2020-02-15T06:59:40Z +5934,2005-07-10T22:07:59Z,3825,576,2005-07-15T21:07:59Z,2,2020-02-15T06:59:40Z +5935,2005-07-10T22:11:04Z,3371,258,2005-07-19T18:12:04Z,2,2020-02-15T06:59:40Z +5936,2005-07-10T22:14:30Z,1951,522,2005-07-15T01:32:30Z,1,2020-02-15T06:59:40Z +5937,2005-07-10T22:16:08Z,1579,580,2005-07-16T03:08:08Z,2,2020-02-15T06:59:40Z +5938,2005-07-10T22:17:42Z,2834,236,2005-07-16T22:38:42Z,2,2020-02-15T06:59:40Z +5939,2005-07-10T22:30:05Z,4491,207,2005-07-14T00:02:05Z,2,2020-02-15T06:59:40Z +5940,2005-07-10T22:31:01Z,3295,292,2005-07-14T00:52:01Z,1,2020-02-15T06:59:40Z +5941,2005-07-10T22:40:47Z,492,43,2005-07-17T00:19:47Z,2,2020-02-15T06:59:40Z +5942,2005-07-10T22:47:17Z,2861,317,2005-07-17T01:54:17Z,2,2020-02-15T06:59:40Z +5943,2005-07-10T22:48:13Z,3019,255,2005-07-16T01:33:13Z,1,2020-02-15T06:59:40Z +5944,2005-07-10T22:51:44Z,3904,432,2005-07-18T17:54:44Z,2,2020-02-15T06:59:40Z +5945,2005-07-10T22:52:42Z,427,374,2005-07-11T21:52:42Z,1,2020-02-15T06:59:40Z +5946,2005-07-10T22:57:29Z,1629,308,2005-07-12T00:08:29Z,1,2020-02-15T06:59:40Z +5947,2005-07-10T23:07:42Z,327,331,2005-07-18T23:13:42Z,1,2020-02-15T06:59:40Z +5948,2005-07-10T23:12:08Z,3260,57,2005-07-18T19:06:08Z,2,2020-02-15T06:59:40Z +5949,2005-07-10T23:13:00Z,4397,496,2005-07-14T01:10:00Z,2,2020-02-15T06:59:40Z +5950,2005-07-10T23:13:45Z,4319,585,2005-07-13T02:35:45Z,1,2020-02-15T06:59:40Z +5951,2005-07-10T23:14:29Z,2501,589,2005-07-13T01:01:29Z,1,2020-02-15T06:59:40Z +5952,2005-07-10T23:18:20Z,3406,595,2005-07-16T17:42:20Z,1,2020-02-15T06:59:40Z +5953,2005-07-10T23:21:35Z,992,386,2005-07-14T20:48:35Z,2,2020-02-15T06:59:40Z +5954,2005-07-10T23:22:01Z,2627,32,2005-07-14T04:42:01Z,2,2020-02-15T06:59:40Z +5955,2005-07-10T23:22:10Z,834,409,2005-07-17T17:55:10Z,2,2020-02-15T06:59:40Z +5956,2005-07-10T23:23:08Z,2536,499,2005-07-13T17:36:08Z,1,2020-02-15T06:59:40Z +5957,2005-07-10T23:24:02Z,2517,210,2005-07-12T20:28:02Z,1,2020-02-15T06:59:40Z +5958,2005-07-10T23:31:51Z,3468,430,2005-07-19T00:36:51Z,2,2020-02-15T06:59:40Z +5959,2005-07-10T23:35:36Z,3169,436,2005-07-13T02:19:36Z,1,2020-02-15T06:59:40Z +5960,2005-07-10T23:38:34Z,3884,239,2005-07-11T19:21:34Z,1,2020-02-15T06:59:40Z +5961,2005-07-10T23:43:23Z,3537,21,2005-07-15T05:21:23Z,2,2020-02-15T06:59:40Z +5962,2005-07-10T23:45:22Z,1292,507,2005-07-13T03:49:22Z,2,2020-02-15T06:59:40Z +5963,2005-07-10T23:47:08Z,4434,35,2005-07-12T04:27:08Z,1,2020-02-15T06:59:40Z +5964,2005-07-10T23:47:18Z,3981,456,2005-07-12T03:55:18Z,2,2020-02-15T06:59:40Z +5965,2005-07-10T23:51:52Z,4476,348,2005-07-11T23:29:52Z,1,2020-02-15T06:59:40Z +5966,2005-07-10T23:59:27Z,2076,384,2005-07-14T23:38:27Z,2,2020-02-15T06:59:40Z +5967,2005-07-11T00:02:19Z,2125,215,2005-07-18T23:08:19Z,1,2020-02-15T06:59:40Z +5968,2005-07-11T00:03:11Z,3273,554,2005-07-19T18:46:11Z,1,2020-02-15T06:59:40Z +5969,2005-07-11T00:03:22Z,4177,433,2005-07-18T01:28:22Z,2,2020-02-15T06:59:40Z +5970,2005-07-11T00:04:50Z,1514,94,2005-07-19T03:36:50Z,1,2020-02-15T06:59:40Z +5971,2005-07-11T00:05:58Z,2191,84,2005-07-19T04:50:58Z,2,2020-02-15T06:59:40Z +5972,2005-07-11T00:08:54Z,4577,30,2005-07-17T21:01:54Z,1,2020-02-15T06:59:40Z +5973,2005-07-11T00:09:17Z,1194,165,2005-07-14T19:18:17Z,1,2020-02-15T06:59:40Z +5974,2005-07-11T00:10:37Z,3984,517,2005-07-18T18:48:37Z,2,2020-02-15T06:59:40Z +5975,2005-07-11T00:14:19Z,2997,15,2005-07-16T04:21:19Z,1,2020-02-15T06:59:40Z +5976,2005-07-11T00:16:35Z,1693,505,2005-07-20T01:30:35Z,2,2020-02-15T06:59:40Z +5977,2005-07-11T00:16:38Z,4011,484,2005-07-19T21:00:38Z,1,2020-02-15T06:59:40Z +5978,2005-07-11T00:16:54Z,1720,508,2005-07-19T18:55:54Z,1,2020-02-15T06:59:40Z +5979,2005-07-11T00:17:09Z,1736,251,2005-07-14T00:38:09Z,1,2020-02-15T06:59:40Z +5980,2005-07-11T00:18:21Z,1777,309,2005-07-14T21:26:21Z,1,2020-02-15T06:59:40Z +5981,2005-07-11T00:19:04Z,2151,241,2005-07-13T19:10:04Z,1,2020-02-15T06:59:40Z +5982,2005-07-11T00:24:44Z,2329,403,2005-07-14T04:42:44Z,2,2020-02-15T06:59:40Z +5983,2005-07-11T00:34:11Z,351,127,2005-07-15T05:37:11Z,1,2020-02-15T06:59:40Z +5984,2005-07-11T00:44:36Z,2801,178,2005-07-15T00:04:36Z,1,2020-02-15T06:59:40Z +5985,2005-07-11T00:51:58Z,1108,506,2005-07-14T22:02:58Z,2,2020-02-15T06:59:40Z +5986,2005-07-11T00:54:56Z,1624,171,2005-07-13T22:52:56Z,2,2020-02-15T06:59:40Z +5987,2005-07-11T00:55:31Z,1000,447,2005-07-16T06:28:31Z,2,2020-02-15T06:59:40Z +5988,2005-07-11T00:55:38Z,151,158,2005-07-13T21:36:38Z,2,2020-02-15T06:59:40Z +5989,2005-07-11T00:57:53Z,696,283,2005-07-15T02:24:53Z,1,2020-02-15T06:59:40Z +5990,2005-07-11T01:03:14Z,1561,432,2005-07-15T19:32:14Z,1,2020-02-15T06:59:40Z +5991,2005-07-11T01:03:38Z,3623,590,2005-07-12T22:32:38Z,2,2020-02-15T06:59:40Z +5992,2005-07-11T01:06:21Z,4216,54,2005-07-13T19:15:21Z,2,2020-02-15T06:59:40Z +5993,2005-07-11T01:06:41Z,3588,529,2005-07-14T19:19:41Z,1,2020-02-15T06:59:40Z +5994,2005-07-11T01:14:10Z,4287,295,2005-07-12T00:42:10Z,2,2020-02-15T06:59:40Z +5995,2005-07-11T01:15:39Z,4357,360,2005-07-20T05:01:39Z,2,2020-02-15T06:59:40Z +5996,2005-07-11T01:18:33Z,4263,223,2005-07-17T04:18:33Z,1,2020-02-15T06:59:40Z +5997,2005-07-11T01:19:50Z,3542,128,2005-07-16T06:29:50Z,1,2020-02-15T06:59:40Z +5998,2005-07-11T01:20:46Z,1458,250,2005-07-15T21:41:46Z,1,2020-02-15T06:59:40Z +5999,2005-07-11T01:21:22Z,211,450,2005-07-19T01:35:22Z,1,2020-02-15T06:59:40Z +6000,2005-07-11T01:23:06Z,1986,371,2005-07-12T04:39:06Z,2,2020-02-15T06:59:40Z +6001,2005-07-11T01:24:44Z,1779,45,2005-07-11T22:55:44Z,1,2020-02-15T06:59:40Z +6002,2005-07-11T01:27:49Z,4422,45,2005-07-12T06:02:49Z,1,2020-02-15T06:59:40Z +6003,2005-07-11T01:28:33Z,296,527,2005-07-17T21:24:33Z,1,2020-02-15T06:59:40Z +6004,2005-07-11T01:34:25Z,1756,204,2005-07-18T00:48:25Z,2,2020-02-15T06:59:40Z +6005,2005-07-11T01:36:42Z,809,78,2005-07-14T04:47:42Z,2,2020-02-15T06:59:40Z +6006,2005-07-11T01:38:42Z,4201,399,2005-07-17T05:18:42Z,2,2020-02-15T06:59:40Z +6007,2005-07-11T01:43:06Z,4393,289,2005-07-17T04:46:06Z,1,2020-02-15T06:59:40Z +6008,2005-07-11T01:51:29Z,1227,216,2005-07-18T01:39:29Z,1,2020-02-15T06:59:40Z +6009,2005-07-11T01:51:58Z,494,470,2005-07-18T07:12:58Z,2,2020-02-15T06:59:40Z +6010,2005-07-11T01:52:28Z,771,285,2005-07-13T03:13:28Z,1,2020-02-15T06:59:40Z +6011,2005-07-11T01:54:48Z,3899,527,2005-07-18T07:17:48Z,2,2020-02-15T06:59:40Z +6012,2005-07-11T02:00:12Z,2609,258,2005-07-17T02:49:12Z,2,2020-02-15T06:59:40Z +6013,2005-07-11T02:02:03Z,3774,543,2005-07-14T02:07:03Z,1,2020-02-15T06:59:40Z +6014,2005-07-11T02:02:55Z,3748,397,2005-07-12T23:49:55Z,1,2020-02-15T06:59:40Z +6015,2005-07-11T02:04:12Z,295,596,2005-07-13T02:43:12Z,2,2020-02-15T06:59:40Z +6016,2005-07-11T02:04:45Z,651,296,2005-07-17T22:22:45Z,1,2020-02-15T06:59:40Z +6017,2005-07-11T02:05:32Z,4088,596,2005-07-14T22:50:32Z,1,2020-02-15T06:59:40Z +6018,2005-07-11T02:06:36Z,4555,500,2005-07-12T02:16:36Z,2,2020-02-15T06:59:40Z +6019,2005-07-11T02:08:29Z,3483,9,2005-07-13T02:19:29Z,2,2020-02-15T06:59:40Z +6020,2005-07-11T02:08:55Z,1974,71,2005-07-16T22:07:55Z,1,2020-02-15T06:59:40Z +6021,2005-07-11T02:10:18Z,3949,173,2005-07-13T05:19:18Z,1,2020-02-15T06:59:40Z +6022,2005-07-11T02:15:53Z,2435,469,2005-07-13T03:40:53Z,2,2020-02-15T06:59:40Z +6023,2005-07-11T02:15:57Z,3794,456,2005-07-15T21:30:57Z,2,2020-02-15T06:59:40Z +6024,2005-07-11T02:16:47Z,2923,271,2005-07-12T05:54:47Z,1,2020-02-15T06:59:40Z +6025,2005-07-11T02:18:13Z,3306,113,2005-07-11T23:30:13Z,1,2020-02-15T06:59:40Z +6026,2005-07-11T02:21:43Z,3936,409,2005-07-13T03:49:43Z,1,2020-02-15T06:59:40Z +6027,2005-07-11T02:26:29Z,4536,513,2005-07-18T23:05:29Z,1,2020-02-15T06:59:40Z +6028,2005-07-11T02:31:44Z,784,450,2005-07-14T03:18:44Z,1,2020-02-15T06:59:40Z +6029,2005-07-11T02:36:46Z,2030,520,2005-07-14T20:51:46Z,2,2020-02-15T06:59:40Z +6030,2005-07-11T02:37:51Z,95,36,2005-07-16T22:34:51Z,2,2020-02-15T06:59:40Z +6031,2005-07-11T02:42:14Z,1530,224,2005-07-14T03:24:14Z,2,2020-02-15T06:59:40Z +6032,2005-07-11T02:49:01Z,3792,28,2005-07-18T05:05:01Z,2,2020-02-15T06:59:40Z +6033,2005-07-11T02:59:34Z,2819,322,2005-07-16T03:48:34Z,2,2020-02-15T06:59:40Z +6034,2005-07-11T03:00:50Z,1735,324,2005-07-16T06:19:50Z,1,2020-02-15T06:59:40Z +6035,2005-07-11T03:01:45Z,3474,176,2005-07-14T01:04:45Z,2,2020-02-15T06:59:40Z +6036,2005-07-11T03:02:28Z,2553,297,2005-07-15T22:12:28Z,2,2020-02-15T06:59:40Z +6037,2005-07-11T03:06:54Z,1886,386,2005-07-12T22:46:54Z,2,2020-02-15T06:59:40Z +6038,2005-07-11T03:10:37Z,1555,243,2005-07-19T05:14:37Z,2,2020-02-15T06:59:40Z +6039,2005-07-11T03:12:19Z,1776,137,2005-07-19T05:46:19Z,1,2020-02-15T06:59:40Z +6040,2005-07-11T03:14:26Z,2161,511,2005-07-14T01:12:26Z,2,2020-02-15T06:59:40Z +6041,2005-07-11T03:14:58Z,2815,551,2005-07-13T00:48:58Z,2,2020-02-15T06:59:40Z +6042,2005-07-11T03:17:04Z,2153,5,2005-07-19T07:08:04Z,1,2020-02-15T06:59:40Z +6043,2005-07-11T03:18:10Z,3303,430,2005-07-12T05:50:10Z,1,2020-02-15T06:59:40Z +6044,2005-07-11T03:18:39Z,1270,481,2005-07-13T06:58:39Z,2,2020-02-15T06:59:40Z +6045,2005-07-11T03:21:05Z,2003,39,2005-07-17T23:10:05Z,1,2020-02-15T06:59:40Z +6046,2005-07-11T03:21:49Z,1935,569,2005-07-19T23:58:49Z,1,2020-02-15T06:59:40Z +6047,2005-07-11T03:27:01Z,4147,235,2005-07-16T06:42:01Z,2,2020-02-15T06:59:40Z +6048,2005-07-11T03:32:23Z,975,154,2005-07-14T07:39:23Z,1,2020-02-15T06:59:40Z +6049,2005-07-11T03:32:32Z,2582,236,2005-07-15T06:57:32Z,2,2020-02-15T06:59:40Z +6050,2005-07-11T03:34:29Z,825,527,2005-07-15T02:55:29Z,1,2020-02-15T06:59:40Z +6051,2005-07-11T03:46:41Z,2675,435,2005-07-11T22:36:41Z,2,2020-02-15T06:59:40Z +6052,2005-07-11T03:51:27Z,881,75,2005-07-16T02:55:27Z,2,2020-02-15T06:59:40Z +6053,2005-07-11T03:51:59Z,2836,237,2005-07-19T09:13:59Z,2,2020-02-15T06:59:40Z +6054,2005-07-11T03:58:39Z,1176,354,2005-07-13T23:08:39Z,1,2020-02-15T06:59:40Z +6055,2005-07-11T03:59:08Z,595,125,2005-07-18T05:35:08Z,2,2020-02-15T06:59:40Z +6056,2005-07-11T04:01:27Z,3069,145,2005-07-12T04:14:27Z,1,2020-02-15T06:59:40Z +6057,2005-07-11T04:03:40Z,1340,187,2005-07-17T01:34:40Z,2,2020-02-15T06:59:40Z +6058,2005-07-11T04:03:51Z,3761,498,2005-07-14T03:52:51Z,1,2020-02-15T06:59:40Z +6059,2005-07-11T04:03:54Z,1437,394,2005-07-18T01:35:54Z,1,2020-02-15T06:59:40Z +6060,2005-07-11T04:06:17Z,3146,342,2005-07-12T03:05:17Z,1,2020-02-15T06:59:40Z +6061,2005-07-11T04:06:25Z,1859,392,2005-07-11T23:11:25Z,1,2020-02-15T06:59:40Z +6062,2005-07-11T04:11:58Z,3301,408,2005-07-15T05:00:58Z,1,2020-02-15T06:59:40Z +6063,2005-07-11T04:16:51Z,1715,519,2005-07-13T08:35:51Z,2,2020-02-15T06:59:40Z +6064,2005-07-11T04:23:18Z,265,297,2005-07-19T02:21:18Z,1,2020-02-15T06:59:40Z +6065,2005-07-11T04:25:51Z,1007,562,2005-07-17T08:19:51Z,1,2020-02-15T06:59:40Z +6066,2005-07-11T04:32:42Z,1877,155,2005-07-15T03:56:42Z,2,2020-02-15T06:59:40Z +6067,2005-07-11T04:34:49Z,2097,186,2005-07-16T09:33:49Z,1,2020-02-15T06:59:40Z +6068,2005-07-11T04:41:09Z,2331,265,2005-07-14T04:45:09Z,1,2020-02-15T06:59:40Z +6069,2005-07-11T04:44:59Z,256,553,2005-07-13T01:00:59Z,1,2020-02-15T06:59:40Z +6070,2005-07-11T04:47:42Z,1679,267,2005-07-13T01:49:42Z,2,2020-02-15T06:59:40Z +6071,2005-07-11T04:50:03Z,889,179,2005-07-19T23:52:03Z,1,2020-02-15T06:59:40Z +6072,2005-07-11T04:52:40Z,1790,339,2005-07-18T01:02:40Z,1,2020-02-15T06:59:40Z +6073,2005-07-11T04:54:31Z,4243,466,2005-07-20T07:23:31Z,1,2020-02-15T06:59:40Z +6074,2005-07-11T04:59:56Z,2876,259,2005-07-13T23:31:56Z,1,2020-02-15T06:59:40Z +6075,2005-07-11T05:03:03Z,2160,283,2005-07-12T01:28:03Z,1,2020-02-15T06:59:40Z +6076,2005-07-11T05:05:30Z,1792,143,2005-07-18T04:22:30Z,1,2020-02-15T06:59:40Z +6077,2005-07-11T05:06:08Z,2154,542,2005-07-16T10:29:08Z,1,2020-02-15T06:59:40Z +6078,2005-07-11T05:06:52Z,3985,91,2005-07-17T06:13:52Z,2,2020-02-15T06:59:40Z +6079,2005-07-11T05:07:14Z,1494,119,2005-07-17T08:45:14Z,1,2020-02-15T06:59:40Z +6080,2005-07-11T05:08:11Z,2682,115,2005-07-16T09:54:11Z,2,2020-02-15T06:59:40Z +6081,2005-07-11T05:11:09Z,2286,72,2005-07-13T05:33:09Z,2,2020-02-15T06:59:40Z +6082,2005-07-11T05:12:41Z,1091,82,2005-07-16T03:40:41Z,2,2020-02-15T06:59:40Z +6083,2005-07-11T05:12:49Z,3183,285,2005-07-15T00:46:49Z,2,2020-02-15T06:59:40Z +6084,2005-07-11T05:16:20Z,1334,479,2005-07-19T01:38:20Z,2,2020-02-15T06:59:40Z +6085,2005-07-11T05:24:36Z,312,155,2005-07-16T03:49:36Z,2,2020-02-15T06:59:40Z +6086,2005-07-11T05:29:03Z,1505,420,2005-07-16T01:17:03Z,1,2020-02-15T06:59:40Z +6087,2005-07-11T05:29:22Z,198,155,2005-07-12T23:33:22Z,2,2020-02-15T06:59:40Z +6088,2005-07-11T05:40:35Z,3796,498,2005-07-17T07:14:35Z,2,2020-02-15T06:59:40Z +6089,2005-07-11T05:45:59Z,3298,580,2005-07-17T11:04:59Z,2,2020-02-15T06:59:40Z +6090,2005-07-11T05:47:08Z,71,241,2005-07-20T07:52:08Z,2,2020-02-15T06:59:40Z +6091,2005-07-11T05:49:18Z,580,383,2005-07-15T07:26:18Z,1,2020-02-15T06:59:40Z +6092,2005-07-11T05:51:31Z,2129,75,2005-07-17T03:42:31Z,1,2020-02-15T06:59:40Z +6093,2005-07-11T05:52:50Z,1868,117,2005-07-20T11:45:50Z,1,2020-02-15T06:59:40Z +6094,2005-07-11T05:54:42Z,2684,285,2005-07-18T08:19:42Z,2,2020-02-15T06:59:40Z +6095,2005-07-11T06:06:41Z,727,501,2005-07-19T06:14:41Z,1,2020-02-15T06:59:40Z +6096,2005-07-11T06:18:04Z,2720,420,2005-07-14T01:15:04Z,1,2020-02-15T06:59:40Z +6097,2005-07-11T06:21:43Z,297,416,2005-07-16T10:04:43Z,1,2020-02-15T06:59:40Z +6098,2005-07-11T06:23:28Z,3016,525,2005-07-17T04:05:28Z,1,2020-02-15T06:59:40Z +6099,2005-07-11T06:24:44Z,3865,469,2005-07-15T08:03:44Z,2,2020-02-15T06:59:40Z +6100,2005-07-11T06:40:31Z,3485,16,2005-07-14T10:59:31Z,2,2020-02-15T06:59:40Z +6101,2005-07-11T06:50:33Z,2618,508,2005-07-18T01:52:33Z,2,2020-02-15T06:59:40Z +6102,2005-07-11T06:53:09Z,4305,146,2005-07-17T07:05:09Z,1,2020-02-15T06:59:40Z +6103,2005-07-11T06:59:55Z,262,540,2005-07-16T09:30:55Z,1,2020-02-15T06:59:40Z +6104,2005-07-11T07:01:35Z,3531,389,2005-07-17T02:29:35Z,1,2020-02-15T06:59:40Z +6105,2005-07-11T07:03:19Z,3501,595,2005-07-19T06:46:19Z,1,2020-02-15T06:59:40Z +6106,2005-07-11T07:05:06Z,2714,185,2005-07-20T09:27:06Z,1,2020-02-15T06:59:40Z +6107,2005-07-11T07:07:09Z,3798,304,2005-07-14T07:32:09Z,2,2020-02-15T06:59:40Z +6108,2005-07-11T07:19:24Z,4296,572,2005-07-13T12:38:24Z,2,2020-02-15T06:59:40Z +6109,2005-07-11T07:20:57Z,3603,163,2005-07-13T07:29:57Z,2,2020-02-15T06:59:40Z +6110,2005-07-11T07:23:47Z,541,405,2005-07-20T03:17:47Z,2,2020-02-15T06:59:40Z +6111,2005-07-11T07:26:57Z,3504,300,2005-07-13T10:43:57Z,2,2020-02-15T06:59:40Z +6112,2005-07-11T07:28:05Z,1311,366,2005-07-18T07:29:05Z,1,2020-02-15T06:59:40Z +6113,2005-07-11T07:31:08Z,4437,115,2005-07-20T11:01:08Z,2,2020-02-15T06:59:40Z +6114,2005-07-11T07:33:48Z,479,404,2005-07-18T06:13:48Z,2,2020-02-15T06:59:40Z +6115,2005-07-11T07:36:50Z,3415,27,2005-07-13T11:30:50Z,1,2020-02-15T06:59:40Z +6116,2005-07-11T07:37:38Z,247,381,2005-07-14T11:53:38Z,2,2020-02-15T06:59:40Z +6117,2005-07-11T07:39:38Z,2613,135,2005-07-18T12:07:38Z,2,2020-02-15T06:59:40Z +6118,2005-07-11T07:43:08Z,3013,13,2005-07-20T03:17:08Z,1,2020-02-15T06:59:40Z +6119,2005-07-11T07:44:46Z,4281,472,2005-07-20T04:41:46Z,2,2020-02-15T06:59:40Z +6120,2005-07-11T07:49:53Z,3299,268,2005-07-19T04:56:53Z,2,2020-02-15T06:59:40Z +6121,2005-07-11T07:55:27Z,1613,347,2005-07-16T03:43:27Z,2,2020-02-15T06:59:40Z +6122,2005-07-11T07:58:07Z,2212,32,2005-07-16T09:52:07Z,1,2020-02-15T06:59:40Z +6123,2005-07-11T08:02:27Z,1354,200,2005-07-15T08:58:27Z,2,2020-02-15T06:59:40Z +6124,2005-07-11T08:02:32Z,2022,368,2005-07-12T05:58:32Z,2,2020-02-15T06:59:40Z +6125,2005-07-11T08:03:35Z,2439,307,2005-07-18T12:46:35Z,1,2020-02-15T06:59:40Z +6126,2005-07-11T08:06:56Z,1069,230,2005-07-16T11:42:56Z,1,2020-02-15T06:59:40Z +6127,2005-07-11T08:06:59Z,285,355,2005-07-12T09:01:59Z,1,2020-02-15T06:59:40Z +6128,2005-07-11T08:15:08Z,2050,18,2005-07-13T03:36:08Z,1,2020-02-15T06:59:40Z +6129,2005-07-11T08:15:09Z,3875,222,2005-07-18T13:00:09Z,1,2020-02-15T06:59:40Z +6130,2005-07-11T08:19:56Z,2547,538,2005-07-16T12:02:56Z,2,2020-02-15T06:59:40Z +6131,2005-07-11T08:22:05Z,3313,107,2005-07-14T07:40:05Z,1,2020-02-15T06:59:40Z +6132,2005-07-11T08:24:44Z,3229,319,2005-07-13T06:41:44Z,1,2020-02-15T06:59:40Z +6133,2005-07-11T08:25:22Z,1992,107,2005-07-13T13:17:22Z,1,2020-02-15T06:59:40Z +6134,2005-07-11T08:28:19Z,3225,305,2005-07-18T09:20:19Z,2,2020-02-15T06:59:40Z +6135,2005-07-11T08:32:23Z,833,325,2005-07-17T08:43:23Z,1,2020-02-15T06:59:40Z +6136,2005-07-11T08:34:09Z,205,346,2005-07-14T06:11:09Z,1,2020-02-15T06:59:40Z +6137,2005-07-11T08:34:20Z,2029,67,2005-07-13T03:31:20Z,2,2020-02-15T06:59:40Z +6138,2005-07-11T08:36:04Z,1808,438,2005-07-13T10:30:04Z,2,2020-02-15T06:59:40Z +6139,2005-07-11T08:39:33Z,3065,206,2005-07-17T08:00:33Z,2,2020-02-15T06:59:40Z +6140,2005-07-11T08:40:47Z,2749,363,2005-07-14T07:26:47Z,1,2020-02-15T06:59:40Z +6141,2005-07-11T08:52:16Z,2279,228,2005-07-17T03:00:16Z,1,2020-02-15T06:59:40Z +6142,2005-07-11T08:54:09Z,1722,136,2005-07-18T05:23:09Z,2,2020-02-15T06:59:40Z +6143,2005-07-11T09:02:37Z,1030,169,2005-07-19T05:57:37Z,2,2020-02-15T06:59:40Z +6144,2005-07-11T09:02:53Z,1077,554,2005-07-15T10:58:53Z,2,2020-02-15T06:59:40Z +6145,2005-07-11T09:07:01Z,1359,540,2005-07-19T08:21:01Z,1,2020-02-15T06:59:40Z +6146,2005-07-11T09:09:59Z,3374,11,2005-07-20T11:42:59Z,2,2020-02-15T06:59:40Z +6147,2005-07-11T09:13:08Z,910,35,2005-07-17T03:48:08Z,1,2020-02-15T06:59:40Z +6148,2005-07-11T09:14:22Z,4318,410,2005-07-12T08:01:22Z,1,2020-02-15T06:59:40Z +6149,2005-07-11T09:19:31Z,4337,26,2005-07-17T14:45:31Z,2,2020-02-15T06:59:40Z +6150,2005-07-11T09:23:56Z,1110,418,2005-07-15T10:56:56Z,2,2020-02-15T06:59:40Z +6151,2005-07-11T09:25:17Z,352,476,2005-07-12T05:11:17Z,1,2020-02-15T06:59:40Z +6152,2005-07-11T09:25:52Z,560,361,2005-07-17T07:40:52Z,2,2020-02-15T06:59:40Z +6153,2005-07-11T09:31:04Z,105,47,2005-07-19T03:41:04Z,1,2020-02-15T06:59:40Z +6154,2005-07-11T09:32:19Z,2717,368,2005-07-16T15:10:19Z,1,2020-02-15T06:59:40Z +6155,2005-07-11T09:45:31Z,785,229,2005-07-18T08:09:31Z,1,2020-02-15T06:59:40Z +6156,2005-07-11T09:45:48Z,302,297,2005-07-15T04:51:48Z,1,2020-02-15T06:59:40Z +6157,2005-07-11T09:48:16Z,4481,133,2005-07-16T05:00:16Z,2,2020-02-15T06:59:40Z +6158,2005-07-11T09:50:24Z,3954,92,2005-07-13T04:49:24Z,2,2020-02-15T06:59:40Z +6159,2005-07-11T09:55:34Z,126,225,2005-07-13T10:01:34Z,2,2020-02-15T06:59:40Z +6160,2005-07-11T10:08:13Z,2716,110,2005-07-14T08:18:13Z,1,2020-02-15T06:59:40Z +6161,2005-07-11T10:11:54Z,3681,524,2005-07-15T12:12:54Z,2,2020-02-15T06:59:40Z +6162,2005-07-11T10:12:30Z,786,79,2005-07-19T06:02:30Z,2,2020-02-15T06:59:40Z +6163,2005-07-11T10:13:46Z,1330,1,2005-07-19T13:15:46Z,2,2020-02-15T06:59:40Z +6164,2005-07-11T10:16:23Z,2755,47,2005-07-14T11:21:23Z,1,2020-02-15T06:59:40Z +6165,2005-07-11T10:17:29Z,3540,9,2005-07-17T07:27:29Z,1,2020-02-15T06:59:40Z +6166,2005-07-11T10:19:05Z,967,503,2005-07-12T14:30:05Z,1,2020-02-15T06:59:40Z +6167,2005-07-11T10:21:21Z,3255,200,2005-07-14T15:38:21Z,1,2020-02-15T06:59:40Z +6168,2005-07-11T10:21:38Z,284,77,2005-07-14T09:55:38Z,2,2020-02-15T06:59:41Z +6169,2005-07-11T10:25:56Z,2781,148,2005-07-19T07:18:56Z,2,2020-02-15T06:59:41Z +6170,2005-07-11T10:29:21Z,278,580,2005-07-16T05:13:21Z,2,2020-02-15T06:59:41Z +6171,2005-07-11T10:29:35Z,448,491,2005-07-16T12:01:35Z,1,2020-02-15T06:59:41Z +6172,2005-07-11T10:32:09Z,3514,219,2005-07-14T16:23:09Z,1,2020-02-15T06:59:41Z +6173,2005-07-11T10:33:11Z,4252,419,2005-07-15T10:57:11Z,1,2020-02-15T06:59:41Z +6174,2005-07-11T10:36:28Z,3123,7,2005-07-18T16:19:28Z,2,2020-02-15T06:59:41Z +6175,2005-07-11T10:44:37Z,3037,195,2005-07-15T08:13:37Z,1,2020-02-15T06:59:41Z +6176,2005-07-11T10:48:21Z,2969,279,2005-07-12T15:54:21Z,2,2020-02-15T06:59:41Z +6177,2005-07-11T10:53:49Z,313,589,2005-07-17T14:54:49Z,1,2020-02-15T06:59:41Z +6178,2005-07-11T10:59:09Z,2777,91,2005-07-16T11:19:09Z,2,2020-02-15T06:59:41Z +6179,2005-07-11T10:59:59Z,3665,42,2005-07-17T06:02:59Z,1,2020-02-15T06:59:41Z +6180,2005-07-11T11:06:50Z,4401,351,2005-07-19T09:03:50Z,2,2020-02-15T06:59:41Z +6181,2005-07-11T11:10:11Z,4398,200,2005-07-15T09:33:11Z,1,2020-02-15T06:59:41Z +6182,2005-07-11T11:11:38Z,2562,540,2005-07-17T08:33:38Z,2,2020-02-15T06:59:41Z +6183,2005-07-11T11:14:35Z,856,402,2005-07-16T15:35:35Z,1,2020-02-15T06:59:41Z +6184,2005-07-11T11:19:21Z,1131,146,2005-07-19T07:35:21Z,1,2020-02-15T06:59:41Z +6185,2005-07-11T11:25:09Z,4331,294,2005-07-18T12:09:09Z,2,2020-02-15T06:59:41Z +6186,2005-07-11T11:26:41Z,2086,128,2005-07-17T12:02:41Z,2,2020-02-15T06:59:41Z +6187,2005-07-11T11:28:51Z,3344,500,2005-07-12T15:44:51Z,1,2020-02-15T06:59:41Z +6188,2005-07-11T11:31:47Z,189,114,2005-07-15T09:28:47Z,1,2020-02-15T06:59:41Z +6189,2005-07-11T11:36:03Z,3800,552,2005-07-20T15:33:03Z,2,2020-02-15T06:59:41Z +6190,2005-07-11T11:36:18Z,2564,321,2005-07-19T17:05:18Z,2,2020-02-15T06:59:41Z +6191,2005-07-11T11:37:52Z,3448,480,2005-07-17T12:45:52Z,1,2020-02-15T06:59:41Z +6192,2005-07-11T11:44:41Z,4573,314,2005-07-19T10:12:41Z,1,2020-02-15T06:59:41Z +6193,2005-07-11T11:46:57Z,465,189,2005-07-19T14:11:57Z,2,2020-02-15T06:59:41Z +6194,2005-07-11T11:51:00Z,1049,83,2005-07-15T12:34:00Z,2,2020-02-15T06:59:41Z +6195,2005-07-11T12:00:32Z,4193,319,2005-07-16T15:00:32Z,2,2020-02-15T06:59:41Z +6196,2005-07-11T12:05:46Z,995,429,2005-07-18T08:27:46Z,2,2020-02-15T06:59:41Z +6197,2005-07-11T12:09:51Z,4156,596,2005-07-12T06:15:51Z,1,2020-02-15T06:59:41Z +6198,2005-07-11T12:12:17Z,3345,470,2005-07-18T07:40:17Z,2,2020-02-15T06:59:41Z +6199,2005-07-11T12:16:03Z,4329,80,2005-07-18T15:33:03Z,2,2020-02-15T06:59:41Z +6200,2005-07-11T12:16:42Z,3258,137,2005-07-17T09:27:42Z,2,2020-02-15T06:59:41Z +6201,2005-07-11T12:18:07Z,4530,559,2005-07-12T12:11:07Z,2,2020-02-15T06:59:41Z +6202,2005-07-11T12:24:25Z,1424,373,2005-07-18T08:13:25Z,1,2020-02-15T06:59:41Z +6203,2005-07-11T12:28:57Z,1001,408,2005-07-15T14:10:57Z,1,2020-02-15T06:59:41Z +6204,2005-07-11T12:29:22Z,2572,362,2005-07-13T10:41:22Z,2,2020-02-15T06:59:41Z +6205,2005-07-11T12:31:24Z,3442,303,2005-07-13T11:31:24Z,2,2020-02-15T06:59:41Z +6206,2005-07-11T12:32:14Z,1368,459,2005-07-15T15:01:14Z,2,2020-02-15T06:59:41Z +6207,2005-07-11T12:34:24Z,3226,143,2005-07-14T10:15:24Z,2,2020-02-15T06:59:41Z +6208,2005-07-11T12:34:56Z,672,31,2005-07-19T15:17:56Z,1,2020-02-15T06:59:41Z +6209,2005-07-11T12:36:05Z,3091,219,2005-07-17T14:48:05Z,2,2020-02-15T06:59:41Z +6210,2005-07-11T12:36:43Z,931,209,2005-07-17T17:45:43Z,2,2020-02-15T06:59:41Z +6211,2005-07-11T12:39:01Z,2699,6,2005-07-20T15:59:01Z,2,2020-02-15T06:59:41Z +6212,2005-07-11T12:40:48Z,3962,337,2005-07-15T17:49:48Z,2,2020-02-15T06:59:41Z +6213,2005-07-11T12:43:07Z,485,23,2005-07-16T07:23:07Z,2,2020-02-15T06:59:41Z +6214,2005-07-11T12:49:48Z,1258,49,2005-07-18T07:41:48Z,2,2020-02-15T06:59:41Z +6215,2005-07-11T12:52:36Z,316,390,2005-07-12T08:33:36Z,1,2020-02-15T06:59:41Z +6216,2005-07-11T12:57:05Z,3571,387,2005-07-13T12:31:05Z,1,2020-02-15T06:59:41Z +6217,2005-07-11T13:13:45Z,1090,177,2005-07-19T16:37:45Z,2,2020-02-15T06:59:41Z +6218,2005-07-11T13:14:58Z,815,410,2005-07-16T08:13:58Z,2,2020-02-15T06:59:41Z +6219,2005-07-11T13:18:37Z,38,303,2005-07-13T13:18:37Z,2,2020-02-15T06:59:41Z +6220,2005-07-11T13:22:06Z,1717,421,2005-07-12T17:46:06Z,2,2020-02-15T06:59:41Z +6221,2005-07-11T13:24:27Z,1699,393,2005-07-15T17:51:27Z,1,2020-02-15T06:59:41Z +6222,2005-07-11T13:25:49Z,2066,386,2005-07-13T14:32:49Z,1,2020-02-15T06:59:41Z +6223,2005-07-11T13:27:09Z,3754,192,2005-07-12T14:02:09Z,1,2020-02-15T06:59:41Z +6224,2005-07-11T13:42:18Z,3274,475,2005-07-16T09:28:18Z,1,2020-02-15T06:59:41Z +6225,2005-07-11T13:45:14Z,2483,204,2005-07-14T10:23:14Z,1,2020-02-15T06:59:41Z +6226,2005-07-11T13:48:11Z,2758,134,2005-07-15T17:18:11Z,2,2020-02-15T06:59:41Z +6227,2005-07-11T13:56:46Z,1654,210,2005-07-18T12:53:46Z,1,2020-02-15T06:59:41Z +6228,2005-07-11T13:58:36Z,2281,367,2005-07-17T19:03:36Z,2,2020-02-15T06:59:41Z +6229,2005-07-11T13:59:50Z,3137,399,2005-07-20T09:26:50Z,1,2020-02-15T06:59:41Z +6230,2005-07-11T14:02:19Z,2260,490,2005-07-17T08:11:19Z,2,2020-02-15T06:59:41Z +6231,2005-07-11T14:02:36Z,2526,122,2005-07-13T19:04:36Z,2,2020-02-15T06:59:41Z +6232,2005-07-11T14:08:27Z,2492,590,2005-07-20T19:34:27Z,2,2020-02-15T06:59:41Z +6233,2005-07-11T14:10:47Z,3731,378,2005-07-15T15:13:47Z,2,2020-02-15T06:59:41Z +6234,2005-07-11T14:16:10Z,2911,232,2005-07-19T19:55:10Z,1,2020-02-15T06:59:41Z +6235,2005-07-11T14:17:51Z,2659,379,2005-07-17T11:14:51Z,2,2020-02-15T06:59:41Z +6236,2005-07-11T14:18:17Z,3813,338,2005-07-14T08:47:17Z,2,2020-02-15T06:59:41Z +6237,2005-07-11T14:19:12Z,2215,166,2005-07-15T15:05:12Z,1,2020-02-15T06:59:41Z +6238,2005-07-11T14:20:18Z,3749,23,2005-07-14T18:34:18Z,1,2020-02-15T06:59:41Z +6239,2005-07-11T14:20:48Z,4107,132,2005-07-17T13:41:48Z,2,2020-02-15T06:59:41Z +6240,2005-07-11T14:32:41Z,640,524,2005-07-20T18:38:41Z,1,2020-02-15T06:59:41Z +6241,2005-07-11T14:40:48Z,4449,74,2005-07-18T09:51:48Z,1,2020-02-15T06:59:41Z +6242,2005-07-11T14:45:04Z,670,245,2005-07-12T18:34:04Z,2,2020-02-15T06:59:41Z +6243,2005-07-11T14:53:25Z,3456,26,2005-07-15T09:26:25Z,2,2020-02-15T06:59:41Z +6244,2005-07-11T14:53:38Z,1558,383,2005-07-12T16:42:38Z,1,2020-02-15T06:59:41Z +6245,2005-07-11T14:56:57Z,512,241,2005-07-16T14:35:57Z,1,2020-02-15T06:59:41Z +6246,2005-07-11T14:57:51Z,2376,172,2005-07-19T19:10:51Z,2,2020-02-15T06:59:41Z +6247,2005-07-11T15:00:05Z,2504,589,2005-07-18T13:47:05Z,1,2020-02-15T06:59:41Z +6248,2005-07-11T15:01:54Z,2686,6,2005-07-19T16:58:54Z,1,2020-02-15T06:59:41Z +6249,2005-07-11T15:02:02Z,4334,30,2005-07-14T11:37:02Z,2,2020-02-15T06:59:41Z +6250,2005-07-11T15:02:04Z,4087,458,2005-07-17T10:54:04Z,1,2020-02-15T06:59:41Z +6251,2005-07-11T15:06:20Z,3956,230,2005-07-18T20:11:20Z,2,2020-02-15T06:59:41Z +6252,2005-07-11T15:06:29Z,1294,295,2005-07-16T14:07:29Z,1,2020-02-15T06:59:41Z +6253,2005-07-11T15:07:19Z,1425,570,2005-07-13T11:00:19Z,1,2020-02-15T06:59:41Z +6254,2005-07-11T15:10:18Z,2038,20,2005-07-17T14:20:18Z,2,2020-02-15T06:59:41Z +6255,2005-07-11T15:11:33Z,1459,319,2005-07-15T19:55:33Z,2,2020-02-15T06:59:41Z +6256,2005-07-11T15:19:22Z,480,307,2005-07-13T12:43:22Z,1,2020-02-15T06:59:41Z +6257,2005-07-11T15:23:46Z,3253,492,2005-07-14T17:26:46Z,2,2020-02-15T06:59:41Z +6258,2005-07-11T15:24:32Z,632,417,2005-07-18T18:29:32Z,1,2020-02-15T06:59:41Z +6259,2005-07-11T15:25:52Z,3007,84,2005-07-13T11:54:52Z,2,2020-02-15T06:59:41Z +6260,2005-07-11T15:26:29Z,4308,454,2005-07-13T17:37:29Z,2,2020-02-15T06:59:41Z +6261,2005-07-11T15:28:34Z,694,386,2005-07-14T17:54:34Z,1,2020-02-15T06:59:41Z +6262,2005-07-11T15:33:24Z,4136,355,2005-07-17T12:40:24Z,1,2020-02-15T06:59:41Z +6263,2005-07-11T15:33:50Z,2391,336,2005-07-17T12:49:50Z,2,2020-02-15T06:59:41Z +6264,2005-07-11T15:42:35Z,4246,565,2005-07-12T11:29:35Z,2,2020-02-15T06:59:41Z +6265,2005-07-11T15:43:51Z,3931,477,2005-07-12T12:51:51Z,2,2020-02-15T06:59:41Z +6266,2005-07-11T15:45:39Z,941,397,2005-07-15T18:29:39Z,1,2020-02-15T06:59:41Z +6267,2005-07-11T15:53:00Z,2152,20,2005-07-17T18:09:00Z,2,2020-02-15T06:59:41Z +6268,2005-07-11T15:55:34Z,1154,125,2005-07-19T17:25:34Z,1,2020-02-15T06:59:41Z +6269,2005-07-11T15:58:43Z,3915,167,2005-07-13T13:25:43Z,1,2020-02-15T06:59:41Z +6270,2005-07-11T15:59:10Z,2308,292,2005-07-18T10:29:10Z,2,2020-02-15T06:59:41Z +6271,2005-07-11T16:01:35Z,1246,467,2005-07-20T12:07:35Z,2,2020-02-15T06:59:41Z +6272,2005-07-11T16:03:49Z,3103,240,2005-07-15T19:54:49Z,1,2020-02-15T06:59:41Z +6273,2005-07-11T16:08:41Z,2403,152,2005-07-14T16:41:41Z,2,2020-02-15T06:59:41Z +6274,2005-07-11T16:09:42Z,2998,472,2005-07-19T20:46:42Z,1,2020-02-15T06:59:41Z +6275,2005-07-11T16:12:11Z,3599,333,2005-07-17T20:19:11Z,2,2020-02-15T06:59:41Z +6276,2005-07-11T16:15:50Z,1826,284,2005-07-19T20:50:50Z,2,2020-02-15T06:59:41Z +6277,2005-07-11T16:19:01Z,4023,92,2005-07-18T21:00:01Z,2,2020-02-15T06:59:41Z +6278,2005-07-11T16:20:02Z,2232,558,2005-07-19T19:29:02Z,2,2020-02-15T06:59:41Z +6279,2005-07-11T16:26:07Z,1254,49,2005-07-17T21:05:07Z,2,2020-02-15T06:59:41Z +6280,2005-07-11T16:36:17Z,4055,33,2005-07-13T14:04:17Z,2,2020-02-15T06:59:41Z +6281,2005-07-11T16:38:16Z,835,236,2005-07-13T10:57:16Z,2,2020-02-15T06:59:41Z +6282,2005-07-11T16:46:22Z,4453,60,2005-07-15T13:19:22Z,1,2020-02-15T06:59:41Z +6283,2005-07-11T16:47:32Z,3319,402,2005-07-17T21:46:32Z,1,2020-02-15T06:59:41Z +6284,2005-07-11T16:51:39Z,2938,177,2005-07-15T19:59:39Z,1,2020-02-15T06:59:41Z +6285,2005-07-11T16:52:07Z,2140,444,2005-07-13T21:33:07Z,2,2020-02-15T06:59:41Z +6286,2005-07-11T16:55:35Z,1070,140,2005-07-13T22:51:35Z,1,2020-02-15T06:59:41Z +6287,2005-07-11T17:00:04Z,35,93,2005-07-12T13:16:04Z,1,2020-02-15T06:59:41Z +6288,2005-07-11T17:01:52Z,3235,357,2005-07-19T15:11:52Z,1,2020-02-15T06:59:41Z +6289,2005-07-11T17:06:39Z,3185,99,2005-07-12T15:54:39Z,2,2020-02-15T06:59:41Z +6290,2005-07-11T17:12:42Z,2634,66,2005-07-19T21:53:42Z,2,2020-02-15T06:59:41Z +6291,2005-07-11T17:16:40Z,3126,262,2005-07-13T18:24:40Z,2,2020-02-15T06:59:41Z +6292,2005-07-11T17:23:33Z,4375,505,2005-07-12T16:27:33Z,2,2020-02-15T06:59:41Z +6293,2005-07-11T17:24:57Z,4260,471,2005-07-13T18:45:57Z,2,2020-02-15T06:59:41Z +6294,2005-07-11T17:25:55Z,1732,463,2005-07-15T17:48:55Z,1,2020-02-15T06:59:41Z +6295,2005-07-11T17:30:58Z,1393,7,2005-07-15T15:50:58Z,1,2020-02-15T06:59:41Z +6296,2005-07-11T17:34:04Z,4202,484,2005-07-17T21:12:04Z,1,2020-02-15T06:59:41Z +6297,2005-07-11T17:37:22Z,2738,69,2005-07-19T13:54:22Z,2,2020-02-15T06:59:41Z +6298,2005-07-11T17:42:33Z,3906,256,2005-07-13T18:14:33Z,2,2020-02-15T06:59:41Z +6299,2005-07-11T17:45:08Z,4125,324,2005-07-13T16:36:08Z,2,2020-02-15T06:59:41Z +6300,2005-07-11T17:50:09Z,1269,283,2005-07-18T13:11:09Z,1,2020-02-15T06:59:41Z +6301,2005-07-11T17:54:09Z,3528,275,2005-07-18T20:42:09Z,2,2020-02-15T06:59:41Z +6302,2005-07-11T17:55:38Z,3221,391,2005-07-17T22:11:38Z,1,2020-02-15T06:59:41Z +6303,2005-07-11T17:55:43Z,846,236,2005-07-13T12:50:43Z,1,2020-02-15T06:59:41Z +6304,2005-07-11T18:02:16Z,4183,579,2005-07-14T14:01:16Z,1,2020-02-15T06:59:41Z +6305,2005-07-11T18:02:25Z,1544,337,2005-07-20T13:29:25Z,1,2020-02-15T06:59:41Z +6306,2005-07-11T18:04:26Z,486,208,2005-07-20T14:22:26Z,2,2020-02-15T06:59:41Z +6307,2005-07-11T18:04:29Z,4029,345,2005-07-17T23:40:29Z,2,2020-02-15T06:59:41Z +6308,2005-07-11T18:08:41Z,3155,472,2005-07-19T15:48:41Z,2,2020-02-15T06:59:41Z +6309,2005-07-11T18:13:24Z,1054,232,2005-07-13T23:11:24Z,1,2020-02-15T06:59:41Z +6310,2005-07-11T18:14:05Z,3064,537,2005-07-16T15:39:05Z,2,2020-02-15T06:59:41Z +6311,2005-07-11T18:18:52Z,1789,373,2005-07-16T17:52:52Z,2,2020-02-15T06:59:41Z +6312,2005-07-11T18:19:02Z,2188,417,2005-07-18T00:00:02Z,1,2020-02-15T06:59:41Z +6313,2005-07-11T18:29:52Z,2976,283,2005-07-14T21:34:52Z,1,2020-02-15T06:59:41Z +6314,2005-07-11T18:32:44Z,4128,55,2005-07-17T23:58:44Z,1,2020-02-15T06:59:41Z +6315,2005-07-11T18:42:49Z,608,374,2005-07-12T23:19:49Z,2,2020-02-15T06:59:41Z +6316,2005-07-11T18:44:52Z,1910,526,2005-07-19T23:35:52Z,2,2020-02-15T06:59:41Z +6317,2005-07-11T18:47:41Z,4206,225,2005-07-14T18:18:41Z,1,2020-02-15T06:59:41Z +6318,2005-07-11T18:48:22Z,2048,425,2005-07-12T13:39:22Z,1,2020-02-15T06:59:41Z +6319,2005-07-11T18:50:45Z,3739,233,2005-07-12T15:26:45Z,1,2020-02-15T06:59:41Z +6320,2005-07-11T18:50:55Z,441,511,2005-07-13T22:46:55Z,2,2020-02-15T06:59:41Z +6321,2005-07-11T18:51:02Z,2655,388,2005-07-14T20:57:02Z,2,2020-02-15T06:59:41Z +6322,2005-07-11T18:58:20Z,4115,403,2005-07-14T16:41:20Z,2,2020-02-15T06:59:41Z +6323,2005-07-11T19:02:19Z,1352,346,2005-07-14T15:54:19Z,1,2020-02-15T06:59:41Z +6324,2005-07-11T19:02:34Z,655,386,2005-07-17T15:57:34Z,1,2020-02-15T06:59:41Z +6325,2005-07-11T19:06:01Z,4556,542,2005-07-18T18:25:01Z,2,2020-02-15T06:59:41Z +6326,2005-07-11T19:06:55Z,2137,563,2005-07-12T20:41:55Z,1,2020-02-15T06:59:41Z +6327,2005-07-11T19:07:29Z,909,146,2005-07-15T16:09:29Z,1,2020-02-15T06:59:41Z +6328,2005-07-11T19:09:33Z,999,260,2005-07-12T20:16:33Z,2,2020-02-15T06:59:41Z +6329,2005-07-11T19:10:38Z,2763,352,2005-07-19T14:46:38Z,2,2020-02-15T06:59:41Z +6330,2005-07-11T19:15:42Z,3917,119,2005-07-17T19:10:42Z,1,2020-02-15T06:59:41Z +6331,2005-07-11T19:17:21Z,1356,295,2005-07-18T18:35:21Z,2,2020-02-15T06:59:41Z +6332,2005-07-11T19:19:06Z,1733,538,2005-07-13T13:51:06Z,2,2020-02-15T06:59:41Z +6333,2005-07-11T19:20:16Z,2610,285,2005-07-17T15:33:16Z,1,2020-02-15T06:59:41Z +6334,2005-07-11T19:20:44Z,948,168,2005-07-19T18:49:44Z,2,2020-02-15T06:59:41Z +6335,2005-07-11T19:25:15Z,2757,396,2005-07-16T17:02:15Z,1,2020-02-15T06:59:41Z +6336,2005-07-11T19:30:13Z,1229,471,2005-07-20T21:27:13Z,2,2020-02-15T06:59:41Z +6337,2005-07-11T19:30:47Z,3967,47,2005-07-19T20:27:47Z,2,2020-02-15T06:59:41Z +6338,2005-07-11T19:39:41Z,1691,54,2005-07-18T01:13:41Z,2,2020-02-15T06:59:41Z +6339,2005-07-11T19:45:32Z,2401,145,2005-07-18T22:34:32Z,2,2020-02-15T06:59:41Z +6340,2005-07-11T19:46:05Z,2374,264,2005-07-20T16:51:05Z,2,2020-02-15T06:59:41Z +6341,2005-07-11T19:48:02Z,3580,448,2005-07-15T01:31:02Z,1,2020-02-15T06:59:41Z +6342,2005-07-11T19:48:24Z,1851,403,2005-07-13T14:09:24Z,2,2020-02-15T06:59:41Z +6343,2005-07-11T19:51:35Z,513,147,2005-07-12T19:13:35Z,1,2020-02-15T06:59:41Z +6344,2005-07-11T20:04:43Z,3074,78,2005-07-18T14:35:43Z,2,2020-02-15T06:59:41Z +6345,2005-07-11T20:05:18Z,4332,532,2005-07-20T17:28:18Z,1,2020-02-15T06:59:41Z +6346,2005-07-11T20:08:34Z,4066,445,2005-07-16T16:35:34Z,2,2020-02-15T06:59:41Z +6347,2005-07-11T20:18:53Z,3160,178,2005-07-16T20:45:53Z,1,2020-02-15T06:59:41Z +6348,2005-07-11T20:21:18Z,21,66,2005-07-19T15:56:18Z,2,2020-02-15T06:59:41Z +6349,2005-07-11T20:25:05Z,1581,216,2005-07-21T00:35:05Z,2,2020-02-15T06:59:41Z +6350,2005-07-11T20:30:15Z,2853,225,2005-07-16T21:30:15Z,1,2020-02-15T06:59:41Z +6351,2005-07-11T20:31:44Z,1852,507,2005-07-18T17:16:44Z,2,2020-02-15T06:59:41Z +6352,2005-07-11T20:34:13Z,1143,235,2005-07-13T19:49:13Z,1,2020-02-15T06:59:41Z +6353,2005-07-11T20:48:56Z,699,130,2005-07-21T00:11:56Z,1,2020-02-15T06:59:41Z +6354,2005-07-11T20:54:27Z,3203,176,2005-07-18T23:46:27Z,2,2020-02-15T06:59:41Z +6355,2005-07-11T20:56:29Z,2472,482,2005-07-20T01:50:29Z,2,2020-02-15T06:59:41Z +6356,2005-07-11T20:57:48Z,2645,149,2005-07-12T22:40:48Z,2,2020-02-15T06:59:41Z +6357,2005-07-11T20:58:51Z,658,252,2005-07-12T15:06:51Z,1,2020-02-15T06:59:41Z +6358,2005-07-11T21:03:12Z,4527,567,2005-07-15T20:06:12Z,2,2020-02-15T06:59:41Z +6359,2005-07-11T21:06:17Z,1656,30,2005-07-16T02:51:17Z,2,2020-02-15T06:59:41Z +6360,2005-07-11T21:07:40Z,3075,338,2005-07-16T15:11:40Z,1,2020-02-15T06:59:41Z +6361,2005-07-11T21:09:14Z,2903,561,2005-07-14T18:26:14Z,2,2020-02-15T06:59:41Z +6362,2005-07-11T21:09:31Z,4259,358,2005-07-13T23:08:31Z,1,2020-02-15T06:59:41Z +6363,2005-07-11T21:13:19Z,4167,344,2005-07-20T15:44:19Z,1,2020-02-15T06:59:41Z +6364,2005-07-11T21:14:48Z,4146,160,2005-07-20T23:20:48Z,2,2020-02-15T06:59:41Z +6365,2005-07-11T21:17:40Z,4550,566,2005-07-14T20:53:40Z,1,2020-02-15T06:59:41Z +6366,2005-07-11T21:18:16Z,3989,366,2005-07-17T00:21:16Z,1,2020-02-15T06:59:41Z +6367,2005-07-11T21:18:29Z,1465,357,2005-07-15T01:05:29Z,1,2020-02-15T06:59:41Z +6368,2005-07-11T21:19:01Z,3666,588,2005-07-13T17:56:01Z,2,2020-02-15T06:59:41Z +6369,2005-07-11T21:23:36Z,1086,252,2005-07-13T22:23:36Z,2,2020-02-15T06:59:41Z +6370,2005-07-11T21:28:32Z,1410,99,2005-07-20T02:51:32Z,2,2020-02-15T06:59:41Z +6371,2005-07-11T21:31:51Z,4297,265,2005-07-16T23:10:51Z,1,2020-02-15T06:59:41Z +6372,2005-07-11T21:35:06Z,741,64,2005-07-15T02:30:06Z,2,2020-02-15T06:59:41Z +6373,2005-07-11T21:35:20Z,1042,115,2005-07-13T23:22:20Z,2,2020-02-15T06:59:41Z +6374,2005-07-11T21:36:10Z,266,244,2005-07-17T15:50:10Z,2,2020-02-15T06:59:41Z +6375,2005-07-11T21:39:46Z,1936,8,2005-07-18T02:12:46Z,2,2020-02-15T06:59:41Z +6376,2005-07-11T21:40:23Z,1834,263,2005-07-13T23:16:23Z,1,2020-02-15T06:59:41Z +6377,2005-07-11T21:41:16Z,4017,118,2005-07-15T20:05:16Z,1,2020-02-15T06:59:41Z +6378,2005-07-11T21:45:23Z,3170,145,2005-07-14T16:56:23Z,1,2020-02-15T06:59:41Z +6379,2005-07-11T21:51:25Z,522,287,2005-07-17T03:38:25Z,2,2020-02-15T06:59:41Z +6380,2005-07-11T21:55:40Z,3378,172,2005-07-17T20:42:40Z,1,2020-02-15T06:59:41Z +6381,2005-07-11T21:58:48Z,2584,340,2005-07-16T16:18:48Z,1,2020-02-15T06:59:41Z +6382,2005-07-11T21:58:53Z,3223,336,2005-07-17T21:18:53Z,2,2020-02-15T06:59:41Z +6383,2005-07-11T22:06:53Z,4275,486,2005-07-17T16:09:53Z,1,2020-02-15T06:59:41Z +6384,2005-07-11T22:07:26Z,491,313,2005-07-16T22:39:26Z,1,2020-02-15T06:59:41Z +6385,2005-07-11T22:07:32Z,1830,69,2005-07-20T16:57:32Z,1,2020-02-15T06:59:41Z +6386,2005-07-11T22:14:57Z,633,593,2005-07-15T16:41:57Z,2,2020-02-15T06:59:41Z +6387,2005-07-11T22:15:56Z,1726,384,2005-07-14T20:20:56Z,2,2020-02-15T06:59:41Z +6388,2005-07-11T22:17:16Z,3506,525,2005-07-19T23:50:16Z,2,2020-02-15T06:59:41Z +6389,2005-07-11T22:18:20Z,2268,274,2005-07-16T16:57:20Z,2,2020-02-15T06:59:41Z +6390,2005-07-11T22:19:23Z,3057,77,2005-07-15T20:10:23Z,2,2020-02-15T06:59:41Z +6391,2005-07-11T22:23:09Z,1745,264,2005-07-15T23:02:09Z,1,2020-02-15T06:59:41Z +6392,2005-07-11T22:25:19Z,4406,468,2005-07-16T04:24:19Z,1,2020-02-15T06:59:41Z +6393,2005-07-11T22:28:12Z,3802,164,2005-07-14T18:03:12Z,1,2020-02-15T06:59:41Z +6394,2005-07-11T22:29:15Z,2574,52,2005-07-20T02:19:15Z,2,2020-02-15T06:59:41Z +6395,2005-07-11T22:29:29Z,3058,264,2005-07-18T00:50:29Z,1,2020-02-15T06:59:41Z +6396,2005-07-11T22:31:08Z,2394,507,2005-07-19T17:19:08Z,2,2020-02-15T06:59:41Z +6397,2005-07-11T22:34:02Z,2423,287,2005-07-13T23:01:02Z,1,2020-02-15T06:59:41Z +6398,2005-07-11T22:34:49Z,1409,296,2005-07-17T17:58:49Z,2,2020-02-15T06:59:41Z +6399,2005-07-11T22:39:05Z,2031,288,2005-07-16T01:12:05Z,1,2020-02-15T06:59:41Z +6400,2005-07-11T22:43:44Z,3289,536,2005-07-19T03:58:44Z,2,2020-02-15T06:59:41Z +6401,2005-07-11T22:44:34Z,1427,35,2005-07-12T22:18:34Z,2,2020-02-15T06:59:41Z +6402,2005-07-11T22:46:10Z,2576,66,2005-07-16T04:02:10Z,1,2020-02-15T06:59:41Z +6403,2005-07-11T22:46:25Z,1019,238,2005-07-13T22:15:25Z,1,2020-02-15T06:59:41Z +6404,2005-07-11T22:49:50Z,1183,526,2005-07-14T18:29:50Z,2,2020-02-15T06:59:41Z +6405,2005-07-11T22:53:12Z,3983,357,2005-07-18T23:02:12Z,2,2020-02-15T06:59:41Z +6406,2005-07-11T22:55:27Z,4439,392,2005-07-20T04:50:27Z,2,2020-02-15T06:59:41Z +6407,2005-07-11T23:02:19Z,775,140,2005-07-21T00:30:19Z,1,2020-02-15T06:59:41Z +6408,2005-07-11T23:03:02Z,2008,350,2005-07-19T23:09:02Z,2,2020-02-15T06:59:41Z +6409,2005-07-11T23:05:49Z,3859,537,2005-07-13T00:13:49Z,2,2020-02-15T06:59:41Z +6410,2005-07-11T23:08:06Z,1127,560,2005-07-19T19:57:06Z,2,2020-02-15T06:59:41Z +6411,2005-07-11T23:10:50Z,4347,124,2005-07-19T17:15:50Z,1,2020-02-15T06:59:41Z +6412,2005-07-11T23:19:21Z,3797,220,2005-07-16T19:48:21Z,1,2020-02-15T06:59:41Z +6413,2005-07-11T23:26:11Z,4446,251,2005-07-17T21:58:11Z,2,2020-02-15T06:59:41Z +6414,2005-07-11T23:26:13Z,814,502,2005-07-18T17:29:13Z,1,2020-02-15T06:59:41Z +6415,2005-07-11T23:27:52Z,4175,84,2005-07-19T22:29:52Z,2,2020-02-15T06:59:41Z +6416,2005-07-11T23:29:14Z,1063,158,2005-07-13T20:20:14Z,1,2020-02-15T06:59:41Z +6417,2005-07-11T23:35:11Z,3042,80,2005-07-18T20:00:11Z,2,2020-02-15T06:59:41Z +6418,2005-07-11T23:36:27Z,3101,185,2005-07-16T18:42:27Z,1,2020-02-15T06:59:41Z +6419,2005-07-11T23:36:38Z,3683,311,2005-07-13T03:23:38Z,1,2020-02-15T06:59:41Z +6420,2005-07-11T23:38:49Z,4443,206,2005-07-17T17:46:49Z,2,2020-02-15T06:59:41Z +6421,2005-07-11T23:45:25Z,4477,479,2005-07-15T20:45:25Z,2,2020-02-15T06:59:41Z +6422,2005-07-11T23:46:19Z,762,257,2005-07-20T22:12:19Z,1,2020-02-15T06:59:41Z +6423,2005-07-11T23:47:31Z,892,427,2005-07-19T18:16:31Z,1,2020-02-15T06:59:41Z +6424,2005-07-11T23:49:37Z,3040,359,2005-07-21T00:53:37Z,1,2020-02-15T06:59:41Z +6425,2005-07-11T23:54:52Z,2487,339,2005-07-13T18:37:52Z,1,2020-02-15T06:59:41Z +6426,2005-07-11T23:56:38Z,498,495,2005-07-21T05:22:38Z,1,2020-02-15T06:59:41Z +6427,2005-07-11T23:57:34Z,1043,122,2005-07-14T18:05:34Z,2,2020-02-15T06:59:41Z +6428,2005-07-12T00:01:51Z,4365,187,2005-07-20T22:02:51Z,2,2020-02-15T06:59:41Z +6429,2005-07-12T00:02:50Z,141,342,2005-07-21T02:08:50Z,1,2020-02-15T06:59:41Z +6430,2005-07-12T00:03:34Z,178,390,2005-07-15T03:11:34Z,1,2020-02-15T06:59:41Z +6431,2005-07-12T00:03:57Z,3471,458,2005-07-20T03:47:57Z,1,2020-02-15T06:59:41Z +6432,2005-07-12T00:09:41Z,970,293,2005-07-20T20:06:41Z,1,2020-02-15T06:59:41Z +6433,2005-07-12T00:12:02Z,1357,101,2005-07-21T04:25:02Z,2,2020-02-15T06:59:41Z +6434,2005-07-12T00:14:25Z,1478,102,2005-07-20T19:54:25Z,2,2020-02-15T06:59:41Z +6435,2005-07-12T00:16:19Z,1957,561,2005-07-17T19:15:19Z,1,2020-02-15T06:59:41Z +6436,2005-07-12T00:18:42Z,3758,122,2005-07-13T03:57:42Z,2,2020-02-15T06:59:41Z +6437,2005-07-12T00:20:29Z,4539,355,2005-07-12T22:26:29Z,1,2020-02-15T06:59:41Z +6438,2005-07-12T00:23:01Z,412,211,2005-07-17T22:45:01Z,1,2020-02-15T06:59:41Z +6439,2005-07-12T00:23:48Z,3463,406,2005-07-13T00:54:48Z,2,2020-02-15T06:59:41Z +6440,2005-07-12T00:25:04Z,2148,269,2005-07-13T04:52:04Z,2,2020-02-15T06:59:41Z +6441,2005-07-12T00:27:08Z,2489,505,2005-07-14T03:12:08Z,1,2020-02-15T06:59:41Z +6442,2005-07-12T00:29:45Z,1273,360,2005-07-15T19:37:45Z,2,2020-02-15T06:59:41Z +6443,2005-07-12T00:35:51Z,895,155,2005-07-16T04:50:51Z,1,2020-02-15T06:59:41Z +6444,2005-07-12T00:36:02Z,2214,168,2005-07-18T05:53:02Z,1,2020-02-15T06:59:41Z +6445,2005-07-12T00:37:02Z,582,385,2005-07-17T22:05:02Z,2,2020-02-15T06:59:41Z +6446,2005-07-12T00:44:08Z,3634,473,2005-07-14T20:39:08Z,2,2020-02-15T06:59:41Z +6447,2005-07-12T00:45:17Z,3945,482,2005-07-18T05:56:17Z,2,2020-02-15T06:59:41Z +6448,2005-07-12T00:45:59Z,2663,160,2005-07-17T00:34:59Z,1,2020-02-15T06:59:41Z +6449,2005-07-12T00:48:58Z,4395,117,2005-07-21T02:57:58Z,1,2020-02-15T06:59:41Z +6450,2005-07-12T00:49:05Z,2413,32,2005-07-13T01:54:05Z,2,2020-02-15T06:59:41Z +6451,2005-07-12T00:52:19Z,1008,381,2005-07-16T21:30:19Z,2,2020-02-15T06:59:41Z +6452,2005-07-12T00:57:31Z,109,388,2005-07-14T20:41:31Z,1,2020-02-15T06:59:41Z +6453,2005-07-12T00:59:53Z,2506,169,2005-07-14T19:17:53Z,2,2020-02-15T06:59:41Z +6454,2005-07-12T01:00:12Z,4028,446,2005-07-16T22:12:12Z,1,2020-02-15T06:59:41Z +6455,2005-07-12T01:01:58Z,4267,277,2005-07-16T02:42:58Z,2,2020-02-15T06:59:41Z +6456,2005-07-12T01:05:11Z,259,387,2005-07-20T23:26:11Z,2,2020-02-15T06:59:41Z +6457,2005-07-12T01:06:35Z,2970,64,2005-07-14T03:27:35Z,1,2020-02-15T06:59:41Z +6458,2005-07-12T01:08:52Z,2809,138,2005-07-16T20:22:52Z,1,2020-02-15T06:59:41Z +6459,2005-07-12T01:12:03Z,4025,557,2005-07-15T23:48:03Z,1,2020-02-15T06:59:41Z +6460,2005-07-12T01:13:44Z,2402,371,2005-07-17T04:51:44Z,2,2020-02-15T06:59:41Z +6461,2005-07-12T01:14:03Z,1799,135,2005-07-19T21:12:03Z,1,2020-02-15T06:59:41Z +6462,2005-07-12T01:15:24Z,4534,414,2005-07-19T05:11:24Z,2,2020-02-15T06:59:41Z +6463,2005-07-12T01:16:11Z,2930,391,2005-07-13T01:37:11Z,1,2020-02-15T06:59:41Z +6464,2005-07-12T01:16:40Z,3100,303,2005-07-20T00:53:40Z,1,2020-02-15T06:59:41Z +6465,2005-07-12T01:17:11Z,2047,207,2005-07-20T00:29:11Z,2,2020-02-15T06:59:41Z +6466,2005-07-12T01:21:03Z,3369,235,2005-07-14T04:05:03Z,1,2020-02-15T06:59:41Z +6467,2005-07-12T01:22:03Z,2067,457,2005-07-20T04:37:03Z,2,2020-02-15T06:59:41Z +6468,2005-07-12T01:27:09Z,4560,541,2005-07-20T00:37:09Z,2,2020-02-15T06:59:41Z +6469,2005-07-12T01:29:27Z,3830,147,2005-07-16T20:22:27Z,2,2020-02-15T06:59:41Z +6470,2005-07-12T01:29:41Z,1680,240,2005-07-15T21:33:41Z,2,2020-02-15T06:59:41Z +6471,2005-07-12T01:31:06Z,2253,397,2005-07-13T05:26:06Z,1,2020-02-15T06:59:41Z +6472,2005-07-12T01:33:25Z,3780,183,2005-07-15T20:26:25Z,1,2020-02-15T06:59:41Z +6473,2005-07-12T01:35:40Z,527,594,2005-07-20T20:11:40Z,1,2020-02-15T06:59:41Z +6474,2005-07-12T01:36:46Z,310,43,2005-07-16T07:24:46Z,2,2020-02-15T06:59:41Z +6475,2005-07-12T01:36:57Z,2035,74,2005-07-17T21:22:57Z,1,2020-02-15T06:59:41Z +6476,2005-07-12T01:37:48Z,978,28,2005-07-12T20:21:48Z,2,2020-02-15T06:59:41Z +6477,2005-07-12T01:38:42Z,804,181,2005-07-17T05:19:42Z,2,2020-02-15T06:59:41Z +6478,2005-07-12T01:41:44Z,2589,483,2005-07-15T20:48:44Z,1,2020-02-15T06:59:41Z +6479,2005-07-12T01:49:00Z,2587,558,2005-07-21T04:26:00Z,1,2020-02-15T06:59:41Z +6480,2005-07-12T01:49:29Z,3076,309,2005-07-17T01:00:29Z,1,2020-02-15T06:59:41Z +6481,2005-07-12T01:50:15Z,2392,128,2005-07-20T03:03:15Z,1,2020-02-15T06:59:41Z +6482,2005-07-12T01:50:21Z,4135,57,2005-07-14T06:49:21Z,2,2020-02-15T06:59:41Z +6483,2005-07-12T01:59:20Z,1053,263,2005-07-12T22:22:20Z,2,2020-02-15T06:59:41Z +6484,2005-07-12T02:04:10Z,4093,556,2005-07-17T23:18:10Z,2,2020-02-15T06:59:41Z +6485,2005-07-12T02:07:59Z,1224,319,2005-07-19T22:56:59Z,1,2020-02-15T06:59:41Z +6486,2005-07-12T02:09:36Z,4008,75,2005-07-14T03:04:36Z,2,2020-02-15T06:59:41Z +6487,2005-07-12T02:17:00Z,4000,277,2005-07-19T00:57:00Z,2,2020-02-15T06:59:41Z +6488,2005-07-12T02:20:09Z,3974,169,2005-07-20T00:53:09Z,2,2020-02-15T06:59:41Z +6489,2005-07-12T02:22:46Z,1821,268,2005-07-17T06:16:46Z,2,2020-02-15T06:59:41Z +6490,2005-07-12T02:28:03Z,2249,548,2005-07-19T03:06:03Z,2,2020-02-15T06:59:41Z +6491,2005-07-12T02:28:31Z,2803,415,2005-07-21T00:38:31Z,1,2020-02-15T06:59:41Z +6492,2005-07-12T02:28:40Z,466,590,2005-07-17T05:58:40Z,2,2020-02-15T06:59:41Z +6493,2005-07-12T02:40:41Z,16,184,2005-07-16T04:56:41Z,1,2020-02-15T06:59:41Z +6494,2005-07-12T02:42:51Z,1124,57,2005-07-20T06:57:51Z,1,2020-02-15T06:59:41Z +6495,2005-07-12T02:57:02Z,2440,19,2005-07-14T08:35:02Z,1,2020-02-15T06:59:41Z +6496,2005-07-12T02:57:39Z,3550,139,2005-07-20T01:43:39Z,1,2020-02-15T06:59:41Z +6497,2005-07-12T03:04:29Z,933,222,2005-07-17T21:36:29Z,2,2020-02-15T06:59:41Z +6498,2005-07-12T03:05:38Z,243,48,2005-07-19T07:12:38Z,1,2020-02-15T06:59:41Z +6499,2005-07-12T03:11:18Z,3165,474,2005-07-21T07:50:18Z,2,2020-02-15T06:59:41Z +6500,2005-07-12T03:11:23Z,4521,577,2005-07-13T00:51:23Z,2,2020-02-15T06:59:41Z +6501,2005-07-12T03:11:55Z,2851,219,2005-07-16T02:08:55Z,2,2020-02-15T06:59:41Z +6502,2005-07-12T03:15:45Z,1641,40,2005-07-17T08:47:45Z,2,2020-02-15T06:59:41Z +6503,2005-07-12T03:18:07Z,1319,120,2005-07-15T00:05:07Z,1,2020-02-15T06:59:41Z +6504,2005-07-12T03:19:14Z,3786,535,2005-07-17T01:13:14Z,2,2020-02-15T06:59:41Z +6505,2005-07-12T03:27:37Z,3986,415,2005-07-17T22:42:37Z,2,2020-02-15T06:59:41Z +6506,2005-07-12T03:28:22Z,386,423,2005-07-17T22:43:22Z,1,2020-02-15T06:59:41Z +6507,2005-07-12T03:33:12Z,2463,118,2005-07-20T03:56:12Z,1,2020-02-15T06:59:41Z +6508,2005-07-12T03:34:50Z,1474,597,2005-07-17T02:57:50Z,2,2020-02-15T06:59:41Z +6509,2005-07-12T03:35:01Z,2468,427,2005-07-13T06:50:01Z,2,2020-02-15T06:59:41Z +6510,2005-07-12T03:35:39Z,905,446,2005-07-21T01:41:39Z,1,2020-02-15T06:59:41Z +6511,2005-07-12T03:39:29Z,1350,322,2005-07-17T01:01:29Z,2,2020-02-15T06:59:41Z +6512,2005-07-12T03:42:49Z,1703,68,2005-07-13T05:01:49Z,2,2020-02-15T06:59:41Z +6513,2005-07-12T03:44:43Z,2671,393,2005-07-13T05:54:43Z,1,2020-02-15T06:59:41Z +6514,2005-07-12T03:47:44Z,3562,73,2005-07-20T00:11:44Z,1,2020-02-15T06:59:41Z +6515,2005-07-12T03:50:32Z,706,261,2005-07-15T03:54:32Z,2,2020-02-15T06:59:41Z +6516,2005-07-12T03:51:54Z,863,291,2005-07-14T03:41:54Z,2,2020-02-15T06:59:41Z +6517,2005-07-12T03:52:39Z,185,387,2005-07-20T08:00:39Z,1,2020-02-15T06:59:41Z +6518,2005-07-12T03:59:42Z,2698,288,2005-07-19T22:21:42Z,2,2020-02-15T06:59:41Z +6519,2005-07-12T04:00:36Z,4149,598,2005-07-19T01:15:36Z,1,2020-02-15T06:59:41Z +6520,2005-07-12T04:05:16Z,1535,270,2005-07-15T08:26:16Z,1,2020-02-15T06:59:41Z +6521,2005-07-12T04:06:11Z,3293,49,2005-07-21T05:50:11Z,1,2020-02-15T06:59:41Z +6522,2005-07-12T04:11:58Z,3916,142,2005-07-15T08:32:58Z,1,2020-02-15T06:59:41Z +6523,2005-07-12T04:14:19Z,1848,574,2005-07-17T00:38:19Z,1,2020-02-15T06:59:41Z +6524,2005-07-12T04:14:35Z,1467,376,2005-07-17T03:59:35Z,2,2020-02-15T06:59:41Z +6525,2005-07-12T04:17:15Z,1408,103,2005-07-18T23:11:15Z,1,2020-02-15T06:59:41Z +6526,2005-07-12T04:21:20Z,1718,225,2005-07-18T23:45:20Z,2,2020-02-15T06:59:41Z +6527,2005-07-12T04:23:06Z,538,65,2005-07-17T00:20:06Z,1,2020-02-15T06:59:41Z +6528,2005-07-12T04:29:44Z,3824,598,2005-07-18T02:39:44Z,2,2020-02-15T06:59:41Z +6529,2005-07-12T04:31:04Z,1058,503,2005-07-17T07:09:04Z,2,2020-02-15T06:59:41Z +6530,2005-07-12T04:33:19Z,3410,75,2005-07-15T08:26:19Z,1,2020-02-15T06:59:41Z +6531,2005-07-12T04:35:24Z,4231,510,2005-07-16T05:37:24Z,2,2020-02-15T06:59:41Z +6532,2005-07-12T04:38:32Z,2361,225,2005-07-13T03:54:32Z,1,2020-02-15T06:59:41Z +6533,2005-07-12T04:39:38Z,3853,366,2005-07-18T05:29:38Z,1,2020-02-15T06:59:41Z +6534,2005-07-12T04:39:43Z,2359,577,2005-07-16T06:33:43Z,1,2020-02-15T06:59:41Z +6535,2005-07-12T04:43:43Z,1921,446,2005-07-17T04:52:43Z,1,2020-02-15T06:59:41Z +6536,2005-07-12T04:44:25Z,3521,289,2005-07-18T01:52:25Z,2,2020-02-15T06:59:41Z +6537,2005-07-12T04:46:30Z,3381,207,2005-07-19T03:04:30Z,2,2020-02-15T06:59:41Z +6538,2005-07-12T04:50:26Z,1987,529,2005-07-20T23:44:26Z,2,2020-02-15T06:59:41Z +6539,2005-07-12T04:50:49Z,2275,259,2005-07-19T03:23:49Z,1,2020-02-15T06:59:41Z +6540,2005-07-12T04:51:13Z,937,156,2005-07-21T03:38:13Z,1,2020-02-15T06:59:41Z +6541,2005-07-12T04:53:41Z,1795,529,2005-07-17T23:17:41Z,2,2020-02-15T06:59:41Z +6542,2005-07-12T04:53:49Z,2421,359,2005-07-13T01:48:49Z,1,2020-02-15T06:59:41Z +6543,2005-07-12T04:54:32Z,2568,264,2005-07-15T09:50:32Z,2,2020-02-15T06:59:41Z +6544,2005-07-12T04:56:15Z,1218,97,2005-07-17T08:28:15Z,1,2020-02-15T06:59:41Z +6545,2005-07-12T04:56:30Z,4447,376,2005-07-20T05:41:30Z,1,2020-02-15T06:59:41Z +6546,2005-07-12T04:57:17Z,393,105,2005-07-17T09:29:17Z,2,2020-02-15T06:59:41Z +6547,2005-07-12T04:57:46Z,2656,262,2005-07-18T08:36:46Z,2,2020-02-15T06:59:41Z +6548,2005-07-12T05:00:46Z,2480,488,2005-07-19T04:40:46Z,2,2020-02-15T06:59:41Z +6549,2005-07-12T05:02:01Z,2688,493,2005-07-20T06:19:01Z,2,2020-02-15T06:59:41Z +6550,2005-07-12T05:03:14Z,2184,112,2005-07-19T04:06:14Z,1,2020-02-15T06:59:41Z +6551,2005-07-12T05:03:43Z,282,567,2005-07-13T10:44:43Z,1,2020-02-15T06:59:41Z +6552,2005-07-12T05:05:06Z,766,493,2005-07-13T05:12:06Z,2,2020-02-15T06:59:41Z +6553,2005-07-12T05:06:39Z,1137,265,2005-07-21T10:37:39Z,1,2020-02-15T06:59:41Z +6554,2005-07-12T05:07:26Z,2741,178,2005-07-21T06:06:26Z,2,2020-02-15T06:59:41Z +6555,2005-07-12T05:08:16Z,1282,188,2005-07-14T04:09:16Z,1,2020-02-15T06:59:41Z +6556,2005-07-12T05:10:16Z,3901,570,2005-07-13T04:16:16Z,2,2020-02-15T06:59:41Z +6557,2005-07-12T05:12:03Z,1442,116,2005-07-20T06:49:03Z,1,2020-02-15T06:59:41Z +6558,2005-07-12T05:16:07Z,2195,164,2005-07-13T05:32:07Z,2,2020-02-15T06:59:41Z +6559,2005-07-12T05:20:35Z,458,353,2005-07-16T08:44:35Z,2,2020-02-15T06:59:41Z +6560,2005-07-12T05:22:06Z,433,54,2005-07-15T00:04:06Z,2,2020-02-15T06:59:41Z +6561,2005-07-12T05:24:02Z,4568,528,2005-07-16T03:43:02Z,2,2020-02-15T06:59:41Z +6562,2005-07-12T05:26:26Z,3969,27,2005-07-16T05:10:26Z,2,2020-02-15T06:59:41Z +6563,2005-07-12T05:34:09Z,87,438,2005-07-21T07:37:09Z,1,2020-02-15T06:59:41Z +6564,2005-07-12T05:34:44Z,2320,210,2005-07-18T06:12:44Z,2,2020-02-15T06:59:41Z +6565,2005-07-12T05:39:50Z,2751,35,2005-07-13T01:07:50Z,2,2020-02-15T06:59:41Z +6566,2005-07-12T05:42:53Z,1822,178,2005-07-19T01:23:53Z,2,2020-02-15T06:59:41Z +6567,2005-07-12T05:43:09Z,1336,198,2005-07-19T08:18:09Z,2,2020-02-15T06:59:41Z +6568,2005-07-12T05:45:47Z,4203,13,2005-07-15T05:18:47Z,2,2020-02-15T06:59:41Z +6569,2005-07-12T05:47:40Z,759,183,2005-07-20T06:23:40Z,2,2020-02-15T06:59:41Z +6570,2005-07-12T05:50:31Z,2082,217,2005-07-13T09:58:31Z,1,2020-02-15T06:59:41Z +6571,2005-07-12T05:51:47Z,3700,140,2005-07-15T11:31:47Z,1,2020-02-15T06:59:41Z +6572,2005-07-12T05:56:38Z,3121,35,2005-07-16T10:41:38Z,1,2020-02-15T06:59:41Z +6573,2005-07-12T06:03:40Z,3308,239,2005-07-13T11:49:40Z,2,2020-02-15T06:59:41Z +6574,2005-07-12T06:04:22Z,621,115,2005-07-18T03:19:22Z,2,2020-02-15T06:59:41Z +6575,2005-07-12T06:12:53Z,1414,598,2005-07-18T07:55:53Z,2,2020-02-15T06:59:41Z +6576,2005-07-12T06:13:41Z,339,362,2005-07-16T03:22:41Z,1,2020-02-15T06:59:41Z +6577,2005-07-12T06:15:05Z,4191,439,2005-07-15T06:23:05Z,1,2020-02-15T06:59:41Z +6578,2005-07-12T06:15:41Z,2304,229,2005-07-15T10:43:41Z,1,2020-02-15T06:59:41Z +6580,2005-07-12T06:26:10Z,1543,31,2005-07-13T06:44:10Z,1,2020-02-15T06:59:41Z +6581,2005-07-12T06:26:49Z,2121,468,2005-07-14T05:07:49Z,2,2020-02-15T06:59:41Z +6582,2005-07-12T06:28:12Z,2077,420,2005-07-19T06:19:12Z,1,2020-02-15T06:59:41Z +6583,2005-07-12T06:42:31Z,2343,462,2005-07-15T07:51:31Z,1,2020-02-15T06:59:41Z +6584,2005-07-12T06:43:36Z,1800,472,2005-07-16T12:18:36Z,2,2020-02-15T06:59:41Z +6585,2005-07-12T06:50:52Z,2064,136,2005-07-21T06:51:52Z,1,2020-02-15T06:59:41Z +6586,2005-07-12T06:56:24Z,3860,93,2005-07-17T09:36:24Z,1,2020-02-15T06:59:41Z +6587,2005-07-12T06:56:26Z,238,419,2005-07-20T05:53:26Z,2,2020-02-15T06:59:41Z +6588,2005-07-12T06:57:40Z,1257,420,2005-07-16T04:27:40Z,1,2020-02-15T06:59:41Z +6589,2005-07-12T07:06:29Z,1595,424,2005-07-14T12:06:29Z,2,2020-02-15T06:59:41Z +6590,2005-07-12T07:08:21Z,1067,442,2005-07-18T06:16:21Z,2,2020-02-15T06:59:41Z +6591,2005-07-12T07:13:46Z,2846,509,2005-07-16T05:15:46Z,2,2020-02-15T06:59:41Z +6592,2005-07-12T07:19:35Z,3481,273,2005-07-19T07:15:35Z,1,2020-02-15T06:59:41Z +6593,2005-07-12T07:21:17Z,3441,356,2005-07-14T02:35:17Z,2,2020-02-15T06:59:41Z +6594,2005-07-12T07:25:43Z,4458,517,2005-07-13T07:59:43Z,1,2020-02-15T06:59:41Z +6595,2005-07-12T07:25:48Z,1286,458,2005-07-20T02:24:48Z,2,2020-02-15T06:59:41Z +6596,2005-07-12T07:32:59Z,890,409,2005-07-13T02:47:59Z,1,2020-02-15T06:59:41Z +6597,2005-07-12T07:37:02Z,979,479,2005-07-16T10:24:02Z,2,2020-02-15T06:59:41Z +6598,2005-07-12T07:38:25Z,2049,532,2005-07-19T07:58:25Z,1,2020-02-15T06:59:41Z +6599,2005-07-12T07:41:14Z,4348,519,2005-07-21T02:45:14Z,2,2020-02-15T06:59:41Z +6600,2005-07-12T07:41:48Z,3315,389,2005-07-18T12:36:48Z,2,2020-02-15T06:59:41Z +6601,2005-07-12T07:44:49Z,1640,464,2005-07-20T03:22:49Z,2,2020-02-15T06:59:41Z +6602,2005-07-12T07:50:24Z,2382,214,2005-07-20T03:25:24Z,2,2020-02-15T06:59:41Z +6603,2005-07-12T07:52:55Z,3583,425,2005-07-16T13:19:55Z,2,2020-02-15T06:59:41Z +6604,2005-07-12T07:57:45Z,822,365,2005-07-16T05:41:45Z,2,2020-02-15T06:59:41Z +6605,2005-07-12T08:01:07Z,2892,547,2005-07-19T03:12:07Z,1,2020-02-15T06:59:41Z +6606,2005-07-12T08:03:40Z,2805,178,2005-07-13T09:05:40Z,1,2020-02-15T06:59:41Z +6607,2005-07-12T08:08:50Z,337,562,2005-07-20T09:17:50Z,1,2020-02-15T06:59:41Z +6608,2005-07-12T08:16:50Z,3577,244,2005-07-18T07:08:50Z,2,2020-02-15T06:59:41Z +6609,2005-07-12T08:19:41Z,3332,133,2005-07-19T08:19:41Z,2,2020-02-15T06:59:41Z +6610,2005-07-12T08:20:02Z,645,353,2005-07-21T09:16:02Z,2,2020-02-15T06:59:41Z +6611,2005-07-12T08:20:23Z,1604,286,2005-07-16T07:19:23Z,1,2020-02-15T06:59:41Z +6612,2005-07-12T08:28:33Z,235,152,2005-07-17T06:25:33Z,1,2020-02-15T06:59:41Z +6613,2005-07-12T08:30:07Z,3421,460,2005-07-14T10:25:07Z,2,2020-02-15T06:59:41Z +6614,2005-07-12T08:33:49Z,3004,144,2005-07-18T07:28:49Z,2,2020-02-15T06:59:41Z +6615,2005-07-12T08:36:22Z,23,438,2005-07-20T09:03:22Z,1,2020-02-15T06:59:41Z +6616,2005-07-12T08:37:30Z,1833,179,2005-07-20T10:33:30Z,1,2020-02-15T06:59:41Z +6617,2005-07-12T08:39:56Z,2292,248,2005-07-14T09:32:56Z,2,2020-02-15T06:59:41Z +6618,2005-07-12T08:41:42Z,4266,327,2005-07-14T05:34:42Z,1,2020-02-15T06:59:41Z +6619,2005-07-12T08:50:48Z,4062,305,2005-07-14T11:54:48Z,1,2020-02-15T06:59:41Z +6620,2005-07-12T08:51:03Z,2362,337,2005-07-16T03:59:03Z,2,2020-02-15T06:59:41Z +6621,2005-07-12T08:57:30Z,2229,561,2005-07-14T09:47:30Z,1,2020-02-15T06:59:41Z +6622,2005-07-12T09:04:11Z,4350,325,2005-07-13T04:27:11Z,1,2020-02-15T06:59:41Z +6623,2005-07-12T09:05:34Z,4412,302,2005-07-19T13:54:34Z,2,2020-02-15T06:59:41Z +6624,2005-07-12T09:05:50Z,3946,335,2005-07-18T13:59:50Z,2,2020-02-15T06:59:41Z +6625,2005-07-12T09:06:40Z,735,443,2005-07-21T04:57:40Z,2,2020-02-15T06:59:41Z +6626,2005-07-12T09:16:24Z,2418,269,2005-07-17T04:06:24Z,2,2020-02-15T06:59:41Z +6627,2005-07-12T09:16:46Z,626,565,2005-07-17T10:58:46Z,1,2020-02-15T06:59:41Z +6628,2005-07-12T09:18:08Z,2894,211,2005-07-21T04:27:08Z,2,2020-02-15T06:59:41Z +6629,2005-07-12T09:18:35Z,2855,582,2005-07-20T11:34:35Z,2,2020-02-15T06:59:41Z +6630,2005-07-12T09:30:05Z,1843,462,2005-07-14T08:29:05Z,2,2020-02-15T06:59:41Z +6631,2005-07-12T09:31:43Z,2340,204,2005-07-15T05:00:43Z,2,2020-02-15T06:59:41Z +6632,2005-07-12T09:33:10Z,2929,442,2005-07-15T11:36:10Z,1,2020-02-15T06:59:41Z +6633,2005-07-12T09:35:42Z,2908,150,2005-07-13T12:56:42Z,2,2020-02-15T06:59:41Z +6634,2005-07-12T09:37:18Z,2943,50,2005-07-13T09:28:18Z,1,2020-02-15T06:59:41Z +6635,2005-07-12T09:47:58Z,515,273,2005-07-16T15:43:58Z,1,2020-02-15T06:59:41Z +6636,2005-07-12T09:49:46Z,3270,441,2005-07-14T12:15:46Z,1,2020-02-15T06:59:41Z +6637,2005-07-12T09:57:39Z,2852,164,2005-07-19T08:40:39Z,1,2020-02-15T06:59:41Z +6638,2005-07-12T09:58:02Z,207,87,2005-07-13T09:40:02Z,1,2020-02-15T06:59:41Z +6639,2005-07-12T10:00:44Z,3385,587,2005-07-19T04:56:44Z,1,2020-02-15T06:59:41Z +6640,2005-07-12T10:27:19Z,2794,148,2005-07-21T06:28:19Z,2,2020-02-15T06:59:41Z +6641,2005-07-12T10:33:14Z,2165,334,2005-07-20T08:24:14Z,2,2020-02-15T06:59:41Z +6642,2005-07-12T10:37:52Z,201,441,2005-07-13T15:13:52Z,1,2020-02-15T06:59:41Z +6643,2005-07-12T10:39:22Z,174,88,2005-07-18T13:52:22Z,1,2020-02-15T06:59:41Z +6644,2005-07-12T10:39:39Z,2667,285,2005-07-14T11:50:39Z,1,2020-02-15T06:59:41Z +6645,2005-07-12T10:39:55Z,2858,73,2005-07-17T07:41:55Z,1,2020-02-15T06:59:41Z +6646,2005-07-12T10:41:34Z,4061,508,2005-07-15T05:31:34Z,1,2020-02-15T06:59:41Z +6647,2005-07-12T10:43:53Z,1841,8,2005-07-14T05:37:53Z,1,2020-02-15T06:59:41Z +6648,2005-07-12T10:46:30Z,718,356,2005-07-14T16:15:30Z,1,2020-02-15T06:59:41Z +6649,2005-07-12T10:51:09Z,70,57,2005-07-14T16:05:09Z,2,2020-02-15T06:59:41Z +6650,2005-07-12T10:57:10Z,1589,526,2005-07-14T07:24:10Z,1,2020-02-15T06:59:41Z +6651,2005-07-12T10:57:28Z,98,447,2005-07-15T06:06:28Z,2,2020-02-15T06:59:41Z +6652,2005-07-12T10:59:38Z,2200,518,2005-07-13T13:52:38Z,1,2020-02-15T06:59:41Z +6653,2005-07-12T11:06:17Z,614,25,2005-07-19T16:52:17Z,2,2020-02-15T06:59:41Z +6654,2005-07-12T11:06:28Z,2870,458,2005-07-20T10:27:28Z,1,2020-02-15T06:59:41Z +6655,2005-07-12T11:08:32Z,3937,100,2005-07-15T15:17:32Z,1,2020-02-15T06:59:41Z +6656,2005-07-12T11:09:47Z,2282,330,2005-07-14T05:50:47Z,1,2020-02-15T06:59:41Z +6657,2005-07-12T11:11:36Z,3697,553,2005-07-16T15:56:36Z,1,2020-02-15T06:59:41Z +6658,2005-07-12T11:13:21Z,172,27,2005-07-17T09:10:21Z,2,2020-02-15T06:59:41Z +6659,2005-07-12T11:18:05Z,2285,134,2005-07-16T16:45:05Z,2,2020-02-15T06:59:41Z +6660,2005-07-12T11:20:12Z,446,598,2005-07-20T12:58:12Z,2,2020-02-15T06:59:41Z +6661,2005-07-12T11:20:39Z,2367,315,2005-07-16T08:17:39Z,2,2020-02-15T06:59:41Z +6662,2005-07-12T11:21:06Z,1464,99,2005-07-13T13:00:06Z,1,2020-02-15T06:59:41Z +6663,2005-07-12T11:27:35Z,4364,5,2005-07-21T16:35:35Z,1,2020-02-15T06:59:41Z +6664,2005-07-12T11:28:22Z,4578,351,2005-07-15T09:30:22Z,1,2020-02-15T06:59:41Z +6665,2005-07-12T11:29:14Z,2912,587,2005-07-19T11:26:14Z,2,2020-02-15T06:59:41Z +6666,2005-07-12T11:32:15Z,3194,314,2005-07-14T16:09:15Z,2,2020-02-15T06:59:41Z +6667,2005-07-12T11:36:22Z,215,50,2005-07-19T12:53:22Z,1,2020-02-15T06:59:41Z +6668,2005-07-12T11:37:45Z,1498,199,2005-07-14T13:28:45Z,2,2020-02-15T06:59:41Z +6669,2005-07-12T11:39:55Z,1420,355,2005-07-20T05:56:55Z,1,2020-02-15T06:59:41Z +6670,2005-07-12T11:44:33Z,3106,249,2005-07-19T07:54:33Z,2,2020-02-15T06:59:41Z +6671,2005-07-12T11:48:48Z,955,526,2005-07-19T16:55:48Z,2,2020-02-15T06:59:41Z +6672,2005-07-12T11:49:16Z,375,439,2005-07-13T07:03:16Z,2,2020-02-15T06:59:41Z +6673,2005-07-12T11:50:56Z,1997,322,2005-07-13T14:27:56Z,1,2020-02-15T06:59:41Z +6674,2005-07-12T11:51:54Z,2385,399,2005-07-13T16:57:54Z,1,2020-02-15T06:59:41Z +6675,2005-07-12T11:53:06Z,2124,523,2005-07-13T06:09:06Z,1,2020-02-15T06:59:41Z +6676,2005-07-12T11:53:40Z,2294,571,2005-07-19T09:15:40Z,1,2020-02-15T06:59:41Z +6677,2005-07-12T11:58:14Z,2389,516,2005-07-21T06:05:14Z,2,2020-02-15T06:59:41Z +6678,2005-07-12T11:58:36Z,3473,330,2005-07-15T17:50:36Z,2,2020-02-15T06:59:41Z +6679,2005-07-12T12:01:07Z,3664,586,2005-07-14T11:36:07Z,1,2020-02-15T06:59:41Z +6680,2005-07-12T12:01:56Z,2887,43,2005-07-16T17:32:56Z,1,2020-02-15T06:59:41Z +6681,2005-07-12T12:04:12Z,854,368,2005-07-19T11:01:12Z,2,2020-02-15T06:59:41Z +6682,2005-07-12T12:12:43Z,1984,339,2005-07-21T10:49:43Z,2,2020-02-15T06:59:41Z +6683,2005-07-12T12:14:05Z,3433,244,2005-07-17T14:02:05Z,2,2020-02-15T06:59:41Z +6684,2005-07-12T12:14:42Z,2817,583,2005-07-21T11:07:42Z,2,2020-02-15T06:59:41Z +6685,2005-07-12T12:16:28Z,1434,5,2005-07-19T17:03:28Z,1,2020-02-15T06:59:41Z +6686,2005-07-12T12:18:38Z,3804,6,2005-07-13T17:56:38Z,2,2020-02-15T06:59:41Z +6687,2005-07-12T12:19:23Z,2736,128,2005-07-19T17:12:23Z,1,2020-02-15T06:59:41Z +6688,2005-07-12T12:22:12Z,2377,246,2005-07-14T14:05:12Z,1,2020-02-15T06:59:41Z +6689,2005-07-12T12:22:13Z,1568,525,2005-07-16T07:44:13Z,1,2020-02-15T06:59:41Z +6690,2005-07-12T12:23:02Z,4254,447,2005-07-16T15:39:02Z,2,2020-02-15T06:59:41Z +6691,2005-07-12T12:26:38Z,403,192,2005-07-18T13:26:38Z,2,2020-02-15T06:59:41Z +6692,2005-07-12T12:35:39Z,2837,372,2005-07-20T11:20:39Z,2,2020-02-15T06:59:41Z +6693,2005-07-12T12:37:00Z,2014,573,2005-07-20T09:36:00Z,1,2020-02-15T06:59:41Z +6694,2005-07-12T12:39:23Z,586,204,2005-07-19T14:47:23Z,1,2020-02-15T06:59:41Z +6695,2005-07-12T12:39:39Z,3088,550,2005-07-17T13:36:39Z,2,2020-02-15T06:59:41Z +6696,2005-07-12T12:44:04Z,299,273,2005-07-16T14:17:04Z,1,2020-02-15T06:59:41Z +6697,2005-07-12T12:44:57Z,210,103,2005-07-19T13:02:57Z,1,2020-02-15T06:59:41Z +6698,2005-07-12T12:45:00Z,4419,64,2005-07-16T11:16:00Z,2,2020-02-15T06:59:41Z +6699,2005-07-12T12:45:21Z,3411,565,2005-07-15T12:59:21Z,1,2020-02-15T06:59:41Z +6700,2005-07-12T12:47:22Z,3063,184,2005-07-21T16:04:22Z,1,2020-02-15T06:59:41Z +6701,2005-07-12T12:47:59Z,3428,454,2005-07-13T10:28:59Z,1,2020-02-15T06:59:41Z +6702,2005-07-12T12:48:03Z,233,164,2005-07-13T11:55:03Z,1,2020-02-15T06:59:41Z +6703,2005-07-12T12:50:19Z,46,470,2005-07-16T13:41:19Z,1,2020-02-15T06:59:41Z +6704,2005-07-12T12:50:24Z,1590,595,2005-07-20T16:41:24Z,2,2020-02-15T06:59:41Z +6705,2005-07-12T12:53:11Z,4268,363,2005-07-13T07:17:11Z,1,2020-02-15T06:59:41Z +6706,2005-07-12T12:59:16Z,4552,267,2005-07-19T10:37:16Z,1,2020-02-15T06:59:41Z +6707,2005-07-12T13:07:55Z,406,80,2005-07-16T16:26:55Z,2,2020-02-15T06:59:41Z +6708,2005-07-12T13:10:55Z,372,82,2005-07-21T07:36:55Z,1,2020-02-15T06:59:41Z +6709,2005-07-12T13:20:41Z,4049,322,2005-07-16T10:37:41Z,2,2020-02-15T06:59:41Z +6710,2005-07-12T13:23:09Z,806,462,2005-07-20T10:10:09Z,2,2020-02-15T06:59:41Z +6711,2005-07-12T13:23:40Z,2247,257,2005-07-20T11:45:40Z,2,2020-02-15T06:59:41Z +6712,2005-07-12T13:24:47Z,4581,226,2005-07-20T09:35:47Z,2,2020-02-15T06:59:41Z +6713,2005-07-12T13:27:36Z,4218,557,2005-07-16T11:14:36Z,1,2020-02-15T06:59:41Z +6714,2005-07-12T13:29:06Z,1947,370,2005-07-18T16:02:06Z,2,2020-02-15T06:59:41Z +6715,2005-07-12T13:32:28Z,643,386,2005-07-15T17:01:28Z,2,2020-02-15T06:59:41Z +6716,2005-07-12T13:34:58Z,2783,367,2005-07-19T15:09:58Z,1,2020-02-15T06:59:41Z +6717,2005-07-12T13:35:02Z,523,273,2005-07-20T15:03:02Z,1,2020-02-15T06:59:41Z +6718,2005-07-12T13:38:06Z,2283,541,2005-07-18T09:05:06Z,1,2020-02-15T06:59:41Z +6719,2005-07-12T13:40:37Z,739,330,2005-07-15T15:23:37Z,2,2020-02-15T06:59:41Z +6720,2005-07-12T13:41:16Z,2704,151,2005-07-13T14:41:16Z,2,2020-02-15T06:59:41Z +6721,2005-07-12T13:42:58Z,2798,462,2005-07-19T16:39:58Z,2,2020-02-15T06:59:41Z +6722,2005-07-12T13:44:03Z,3124,211,2005-07-19T12:43:03Z,2,2020-02-15T06:59:41Z +6723,2005-07-12T13:44:57Z,2678,499,2005-07-14T15:57:57Z,2,2020-02-15T06:59:41Z +6724,2005-07-12T13:45:15Z,2486,262,2005-07-19T19:18:15Z,1,2020-02-15T06:59:41Z +6725,2005-07-12T13:47:17Z,831,213,2005-07-17T13:31:17Z,1,2020-02-15T06:59:41Z +6726,2005-07-12T13:48:14Z,4494,97,2005-07-16T11:11:14Z,1,2020-02-15T06:59:41Z +6727,2005-07-12T13:54:25Z,3793,407,2005-07-14T17:29:25Z,1,2020-02-15T06:59:41Z +6728,2005-07-12T13:56:48Z,2113,414,2005-07-15T18:49:48Z,1,2020-02-15T06:59:41Z +6729,2005-07-12T13:58:23Z,2495,455,2005-07-19T09:34:23Z,2,2020-02-15T06:59:41Z +6730,2005-07-12T13:58:25Z,1552,532,2005-07-20T13:01:25Z,1,2020-02-15T06:59:41Z +6731,2005-07-12T13:58:27Z,844,593,2005-07-15T10:04:27Z,2,2020-02-15T06:59:41Z +6732,2005-07-12T13:58:51Z,1913,299,2005-07-17T17:42:51Z,1,2020-02-15T06:59:41Z +6733,2005-07-12T14:04:01Z,1476,585,2005-07-21T18:57:01Z,2,2020-02-15T06:59:41Z +6734,2005-07-12T14:04:24Z,2248,446,2005-07-21T19:47:24Z,1,2020-02-15T06:59:41Z +6735,2005-07-12T14:08:20Z,276,428,2005-07-18T09:41:20Z,2,2020-02-15T06:59:41Z +6736,2005-07-12T14:16:50Z,530,342,2005-07-15T16:26:50Z,1,2020-02-15T06:59:41Z +6737,2005-07-12T14:16:52Z,315,304,2005-07-18T19:48:52Z,1,2020-02-15T06:59:41Z +6738,2005-07-12T14:17:55Z,1197,366,2005-07-21T10:11:55Z,2,2020-02-15T06:59:41Z +6739,2005-07-12T14:22:08Z,1221,71,2005-07-18T16:57:08Z,2,2020-02-15T06:59:41Z +6740,2005-07-12T14:22:08Z,2431,139,2005-07-14T14:35:08Z,1,2020-02-15T06:59:41Z +6741,2005-07-12T14:24:16Z,237,359,2005-07-15T08:31:16Z,1,2020-02-15T06:59:41Z +6742,2005-07-12T14:25:31Z,4242,558,2005-07-17T08:50:31Z,2,2020-02-15T06:59:41Z +6743,2005-07-12T14:29:25Z,158,261,2005-07-13T13:13:25Z,1,2020-02-15T06:59:41Z +6744,2005-07-12T14:30:28Z,2565,64,2005-07-14T16:20:28Z,1,2020-02-15T06:59:41Z +6745,2005-07-12T14:30:51Z,1331,524,2005-07-13T13:42:51Z,2,2020-02-15T06:59:41Z +6746,2005-07-12T14:33:01Z,3127,537,2005-07-17T19:52:01Z,2,2020-02-15T06:59:41Z +6747,2005-07-12T14:33:21Z,3651,126,2005-07-13T09:59:21Z,2,2020-02-15T06:59:41Z +6748,2005-07-12T14:39:27Z,3655,540,2005-07-18T13:40:27Z,2,2020-02-15T06:59:41Z +6749,2005-07-12T14:43:05Z,2895,334,2005-07-21T15:13:05Z,2,2020-02-15T06:59:41Z +6750,2005-07-12T14:49:39Z,3838,459,2005-07-18T18:43:39Z,2,2020-02-15T06:59:41Z +6751,2005-07-12T14:50:34Z,1749,312,2005-07-15T19:39:34Z,2,2020-02-15T06:59:41Z +6752,2005-07-12T14:53:15Z,3392,453,2005-07-20T09:23:15Z,1,2020-02-15T06:59:41Z +6753,2005-07-12T14:55:42Z,2591,147,2005-07-18T19:16:42Z,1,2020-02-15T06:59:41Z +6754,2005-07-12T14:59:24Z,1460,114,2005-07-14T11:04:24Z,2,2020-02-15T06:59:41Z +6755,2005-07-12T15:07:49Z,2542,126,2005-07-21T18:43:49Z,2,2020-02-15T06:59:41Z +6756,2005-07-12T15:08:28Z,1174,531,2005-07-13T14:25:28Z,2,2020-02-15T06:59:41Z +6757,2005-07-12T15:09:48Z,547,558,2005-07-17T15:04:48Z,2,2020-02-15T06:59:41Z +6758,2005-07-12T15:13:49Z,4098,546,2005-07-20T09:31:49Z,2,2020-02-15T06:59:41Z +6759,2005-07-12T15:14:48Z,3624,49,2005-07-15T11:29:48Z,1,2020-02-15T06:59:41Z +6760,2005-07-12T15:16:00Z,501,502,2005-07-20T13:20:00Z,2,2020-02-15T06:59:41Z +6761,2005-07-12T15:17:42Z,3645,7,2005-07-18T17:59:42Z,2,2020-02-15T06:59:41Z +6762,2005-07-12T15:25:33Z,3857,262,2005-07-21T18:57:33Z,1,2020-02-15T06:59:41Z +6763,2005-07-12T15:26:34Z,3364,314,2005-07-18T16:38:34Z,2,2020-02-15T06:59:41Z +6764,2005-07-12T15:29:27Z,4407,396,2005-07-21T20:00:27Z,2,2020-02-15T06:59:41Z +6765,2005-07-12T15:30:47Z,2571,433,2005-07-19T14:19:47Z,2,2020-02-15T06:59:41Z +6766,2005-07-12T15:32:01Z,3615,171,2005-07-18T14:03:01Z,2,2020-02-15T06:59:41Z +6767,2005-07-12T15:46:55Z,1819,208,2005-07-17T17:36:55Z,2,2020-02-15T06:59:41Z +6768,2005-07-12T15:47:51Z,3418,151,2005-07-19T21:17:51Z,2,2020-02-15T06:59:41Z +6769,2005-07-12T15:48:54Z,1687,63,2005-07-21T14:39:54Z,2,2020-02-15T06:59:41Z +6770,2005-07-12T15:49:40Z,2080,360,2005-07-20T10:14:40Z,2,2020-02-15T06:59:41Z +6771,2005-07-12T15:54:40Z,1113,396,2005-07-17T15:56:40Z,2,2020-02-15T06:59:41Z +6772,2005-07-12T15:55:35Z,3810,89,2005-07-18T10:47:35Z,1,2020-02-15T06:59:41Z +6773,2005-07-12T15:55:39Z,3346,12,2005-07-18T17:52:39Z,2,2020-02-15T06:59:41Z +6774,2005-07-12T15:56:08Z,868,171,2005-07-13T18:42:08Z,1,2020-02-15T06:59:41Z +6775,2005-07-12T16:01:44Z,2909,383,2005-07-19T14:11:44Z,1,2020-02-15T06:59:41Z +6776,2005-07-12T16:02:09Z,2398,348,2005-07-20T16:31:09Z,1,2020-02-15T06:59:41Z +6777,2005-07-12T16:04:40Z,4089,351,2005-07-20T15:05:40Z,2,2020-02-15T06:59:41Z +6778,2005-07-12T16:06:00Z,4503,381,2005-07-14T21:57:00Z,2,2020-02-15T06:59:41Z +6779,2005-07-12T16:10:50Z,4468,404,2005-07-17T14:51:50Z,2,2020-02-15T06:59:41Z +6780,2005-07-12T16:18:12Z,1255,121,2005-07-13T17:56:12Z,2,2020-02-15T06:59:41Z +6781,2005-07-12T16:21:47Z,3783,533,2005-07-15T19:52:47Z,1,2020-02-15T06:59:41Z +6782,2005-07-12T16:23:25Z,2742,199,2005-07-20T18:46:25Z,2,2020-02-15T06:59:41Z +6783,2005-07-12T16:27:56Z,3633,506,2005-07-13T12:11:56Z,2,2020-02-15T06:59:41Z +6784,2005-07-12T16:28:49Z,197,578,2005-07-15T17:27:49Z,1,2020-02-15T06:59:41Z +6785,2005-07-12T16:30:57Z,4448,69,2005-07-18T20:46:57Z,1,2020-02-15T06:59:41Z +6786,2005-07-12T16:32:33Z,2011,546,2005-07-16T12:42:33Z,2,2020-02-15T06:59:41Z +6787,2005-07-12T16:33:28Z,1481,342,2005-07-18T21:48:28Z,2,2020-02-15T06:59:41Z +6788,2005-07-12T16:33:44Z,1162,460,2005-07-20T15:38:44Z,2,2020-02-15T06:59:41Z +6789,2005-07-12T16:34:40Z,1973,76,2005-07-14T17:02:40Z,2,2020-02-15T06:59:41Z +6790,2005-07-12T16:34:59Z,4486,400,2005-07-17T21:43:59Z,2,2020-02-15T06:59:41Z +6791,2005-07-12T16:35:07Z,1495,144,2005-07-20T15:32:07Z,2,2020-02-15T06:59:41Z +6792,2005-07-12T16:37:28Z,510,571,2005-07-20T11:20:28Z,2,2020-02-15T06:59:41Z +6793,2005-07-12T16:37:55Z,103,148,2005-07-21T16:04:55Z,2,2020-02-15T06:59:41Z +6794,2005-07-12T16:38:23Z,813,233,2005-07-20T17:36:23Z,2,2020-02-15T06:59:41Z +6795,2005-07-12T16:41:00Z,1489,245,2005-07-21T20:52:00Z,1,2020-02-15T06:59:41Z +6796,2005-07-12T16:44:16Z,227,291,2005-07-16T14:48:16Z,2,2020-02-15T06:59:41Z +6797,2005-07-12T16:47:06Z,1536,469,2005-07-14T14:38:06Z,2,2020-02-15T06:59:41Z +6798,2005-07-12T16:49:11Z,275,115,2005-07-19T12:11:11Z,2,2020-02-15T06:59:41Z +6799,2005-07-12T16:52:13Z,2778,42,2005-07-14T15:11:13Z,2,2020-02-15T06:59:41Z +6800,2005-07-12T17:03:56Z,3742,599,2005-07-21T20:32:56Z,2,2020-02-15T06:59:41Z +6801,2005-07-12T17:09:08Z,872,500,2005-07-21T22:25:08Z,1,2020-02-15T06:59:41Z +6802,2005-07-12T17:14:17Z,2942,298,2005-07-17T11:54:17Z,2,2020-02-15T06:59:41Z +6803,2005-07-12T17:21:49Z,2676,490,2005-07-14T18:01:49Z,2,2020-02-15T06:59:41Z +6804,2005-07-12T17:22:06Z,1554,269,2005-07-21T11:37:06Z,1,2020-02-15T06:59:41Z +6805,2005-07-12T17:23:01Z,1758,262,2005-07-21T19:38:01Z,2,2020-02-15T06:59:41Z +6806,2005-07-12T17:31:43Z,656,179,2005-07-17T14:36:43Z,1,2020-02-15T06:59:41Z +6807,2005-07-12T17:33:53Z,669,376,2005-07-18T16:28:53Z,2,2020-02-15T06:59:41Z +6808,2005-07-12T17:36:42Z,362,263,2005-07-18T23:33:42Z,2,2020-02-15T06:59:41Z +6809,2005-07-12T17:51:54Z,3455,168,2005-07-17T15:10:54Z,1,2020-02-15T06:59:41Z +6810,2005-07-12T17:54:19Z,2802,485,2005-07-20T16:58:19Z,2,2020-02-15T06:59:41Z +6811,2005-07-12T17:54:33Z,1572,107,2005-07-20T17:39:33Z,1,2020-02-15T06:59:41Z +6812,2005-07-12T18:03:25Z,2227,553,2005-07-20T18:33:25Z,2,2020-02-15T06:59:41Z +6813,2005-07-12T18:03:50Z,135,54,2005-07-16T16:30:50Z,1,2020-02-15T06:59:41Z +6814,2005-07-12T18:11:58Z,1863,579,2005-07-18T20:37:58Z,2,2020-02-15T06:59:41Z +6815,2005-07-12T18:14:10Z,3236,468,2005-07-17T14:16:10Z,1,2020-02-15T06:59:41Z +6816,2005-07-12T18:18:50Z,2963,290,2005-07-18T21:09:50Z,2,2020-02-15T06:59:41Z +6817,2005-07-12T18:19:57Z,184,135,2005-07-19T22:53:57Z,1,2020-02-15T06:59:41Z +6818,2005-07-12T18:20:54Z,1013,153,2005-07-21T00:03:54Z,2,2020-02-15T06:59:41Z +6819,2005-07-12T18:21:01Z,1253,198,2005-07-13T21:14:01Z,1,2020-02-15T06:59:41Z +6820,2005-07-12T18:21:30Z,223,243,2005-07-14T15:14:30Z,1,2020-02-15T06:59:41Z +6821,2005-07-12T18:22:10Z,623,363,2005-07-14T13:25:10Z,2,2020-02-15T06:59:41Z +6822,2005-07-12T18:23:39Z,1592,300,2005-07-19T21:06:39Z,1,2020-02-15T06:59:41Z +6823,2005-07-12T18:24:31Z,795,557,2005-07-17T23:13:31Z,1,2020-02-15T06:59:41Z +6824,2005-07-12T18:26:46Z,858,579,2005-07-21T15:23:46Z,1,2020-02-15T06:59:41Z +6825,2005-07-12T18:28:12Z,2342,281,2005-07-15T19:24:12Z,1,2020-02-15T06:59:41Z +6826,2005-07-12T18:32:02Z,1708,408,2005-07-16T23:21:02Z,1,2020-02-15T06:59:41Z +6827,2005-07-12T18:33:45Z,1529,283,2005-07-13T19:09:45Z,1,2020-02-15T06:59:41Z +6828,2005-07-12T18:38:51Z,874,502,2005-07-14T20:10:51Z,1,2020-02-15T06:59:41Z +6829,2005-07-12T18:38:59Z,4184,361,2005-07-16T23:25:59Z,1,2020-02-15T06:59:41Z +6830,2005-07-12T18:42:55Z,1943,578,2005-07-17T17:58:55Z,1,2020-02-15T06:59:41Z +6831,2005-07-12T18:44:04Z,924,163,2005-07-16T21:39:04Z,2,2020-02-15T06:59:41Z +6832,2005-07-12T18:51:41Z,444,220,2005-07-20T13:29:41Z,2,2020-02-15T06:59:41Z +6833,2005-07-12T18:53:34Z,912,301,2005-07-19T22:21:34Z,2,2020-02-15T06:59:41Z +6834,2005-07-12T18:53:37Z,897,533,2005-07-19T13:42:37Z,1,2020-02-15T06:59:41Z +6835,2005-07-12T18:58:03Z,1444,367,2005-07-18T00:41:03Z,1,2020-02-15T06:59:41Z +6836,2005-07-12T18:58:05Z,2744,113,2005-07-15T17:45:05Z,1,2020-02-15T06:59:41Z +6837,2005-07-12T18:59:45Z,1203,533,2005-07-21T22:47:45Z,2,2020-02-15T06:59:41Z +6838,2005-07-12T19:01:30Z,3492,354,2005-07-17T23:42:30Z,1,2020-02-15T06:59:41Z +6839,2005-07-12T19:03:19Z,3900,357,2005-07-15T23:48:19Z,1,2020-02-15T06:59:41Z +6840,2005-07-12T19:03:22Z,1381,323,2005-07-21T18:34:22Z,2,2020-02-15T06:59:41Z +6841,2005-07-12T19:04:24Z,2265,108,2005-07-14T23:58:24Z,1,2020-02-15T06:59:41Z +6842,2005-07-12T19:07:55Z,3376,366,2005-07-19T22:47:55Z,1,2020-02-15T06:59:41Z +6843,2005-07-12T19:14:05Z,746,561,2005-07-20T23:15:05Z,1,2020-02-15T06:59:41Z +6844,2005-07-12T19:14:53Z,3211,482,2005-07-18T16:07:53Z,2,2020-02-15T06:59:41Z +6845,2005-07-12T19:20:41Z,3833,414,2005-07-14T15:27:41Z,1,2020-02-15T06:59:41Z +6846,2005-07-12T19:20:45Z,1214,18,2005-07-17T00:06:45Z,1,2020-02-15T06:59:41Z +6847,2005-07-12T19:22:37Z,346,63,2005-07-21T18:53:37Z,2,2020-02-15T06:59:41Z +6848,2005-07-12T19:24:07Z,1782,433,2005-07-14T17:03:07Z,1,2020-02-15T06:59:41Z +6849,2005-07-12T19:29:19Z,4307,479,2005-07-19T22:03:19Z,1,2020-02-15T06:59:41Z +6850,2005-07-12T19:30:42Z,1145,433,2005-07-17T21:26:42Z,2,2020-02-15T06:59:41Z +6851,2005-07-12T19:32:14Z,664,280,2005-07-17T21:03:14Z,1,2020-02-15T06:59:41Z +6852,2005-07-12T19:33:49Z,2182,75,2005-07-13T20:01:49Z,2,2020-02-15T06:59:41Z +6853,2005-07-12T19:38:11Z,4006,299,2005-07-20T00:14:11Z,1,2020-02-15T06:59:41Z +6854,2005-07-12T19:38:57Z,3173,151,2005-07-16T16:28:57Z,1,2020-02-15T06:59:41Z +6855,2005-07-12T19:46:29Z,2657,24,2005-07-15T16:56:29Z,2,2020-02-15T06:59:41Z +6856,2005-07-12T19:50:16Z,4338,275,2005-07-14T22:25:16Z,1,2020-02-15T06:59:41Z +6857,2005-07-12T19:53:30Z,424,196,2005-07-13T15:22:30Z,1,2020-02-15T06:59:41Z +6858,2005-07-12T19:53:51Z,1095,516,2005-07-19T14:12:51Z,1,2020-02-15T06:59:41Z +6859,2005-07-12T19:53:57Z,4108,321,2005-07-17T19:48:57Z,2,2020-02-15T06:59:41Z +6860,2005-07-12T19:54:17Z,2907,91,2005-07-18T13:59:17Z,1,2020-02-15T06:59:41Z +6861,2005-07-12T19:56:52Z,354,83,2005-07-13T16:02:52Z,1,2020-02-15T06:59:41Z +6862,2005-07-12T19:58:09Z,3477,231,2005-07-18T15:48:09Z,2,2020-02-15T06:59:41Z +6863,2005-07-12T19:58:34Z,229,484,2005-07-21T16:57:34Z,1,2020-02-15T06:59:41Z +6864,2005-07-12T19:59:25Z,2252,38,2005-07-19T15:52:25Z,2,2020-02-15T06:59:41Z +6865,2005-07-12T20:02:40Z,1428,175,2005-07-20T00:39:40Z,2,2020-02-15T06:59:41Z +6866,2005-07-12T20:03:44Z,2481,312,2005-07-15T01:55:44Z,1,2020-02-15T06:59:41Z +6867,2005-07-12T20:06:47Z,3354,190,2005-07-19T16:59:47Z,1,2020-02-15T06:59:41Z +6868,2005-07-12T20:10:17Z,719,306,2005-07-15T22:34:17Z,2,2020-02-15T06:59:41Z +6869,2005-07-12T20:12:06Z,3546,278,2005-07-13T18:37:06Z,1,2020-02-15T06:59:41Z +6870,2005-07-12T20:13:45Z,3102,13,2005-07-16T22:09:45Z,2,2020-02-15T06:59:41Z +6871,2005-07-12T20:13:49Z,3612,204,2005-07-14T20:11:49Z,2,2020-02-15T06:59:41Z +6872,2005-07-12T20:15:04Z,3246,86,2005-07-18T18:19:04Z,1,2020-02-15T06:59:41Z +6873,2005-07-12T20:20:50Z,802,161,2005-07-17T01:51:50Z,1,2020-02-15T06:59:41Z +6874,2005-07-12T20:20:53Z,4478,539,2005-07-19T19:41:53Z,1,2020-02-15T06:59:41Z +6875,2005-07-12T20:23:05Z,3420,172,2005-07-19T00:09:05Z,2,2020-02-15T06:59:41Z +6876,2005-07-12T20:32:50Z,34,531,2005-07-16T21:12:50Z,1,2020-02-15T06:59:41Z +6877,2005-07-12T20:32:58Z,3968,231,2005-07-18T18:01:58Z,1,2020-02-15T06:59:41Z +6878,2005-07-12T20:37:13Z,2428,363,2005-07-19T20:13:13Z,2,2020-02-15T06:59:41Z +6879,2005-07-12T20:37:37Z,1901,416,2005-07-20T15:40:37Z,2,2020-02-15T06:59:41Z +6880,2005-07-12T20:41:35Z,1473,229,2005-07-17T02:22:35Z,1,2020-02-15T06:59:41Z +6881,2005-07-12T20:46:35Z,2496,346,2005-07-21T00:26:35Z,2,2020-02-15T06:59:41Z +6882,2005-07-12T20:50:39Z,2469,166,2005-07-14T21:01:39Z,1,2020-02-15T06:59:41Z +6883,2005-07-12T20:50:48Z,468,596,2005-07-19T16:00:48Z,2,2020-02-15T06:59:41Z +6884,2005-07-12T20:52:41Z,3642,17,2005-07-20T23:13:41Z,1,2020-02-15T06:59:41Z +6885,2005-07-12T20:56:04Z,3972,159,2005-07-15T19:21:04Z,2,2020-02-15T06:59:41Z +6886,2005-07-12T20:58:04Z,4533,429,2005-07-18T16:56:04Z,2,2020-02-15T06:59:41Z +6887,2005-07-12T21:00:23Z,4487,542,2005-07-21T17:46:23Z,1,2020-02-15T06:59:41Z +6888,2005-07-12T21:01:11Z,1896,490,2005-07-17T21:49:11Z,2,2020-02-15T06:59:41Z +6889,2005-07-12T21:01:22Z,2919,198,2005-07-20T20:16:22Z,2,2020-02-15T06:59:41Z +6890,2005-07-12T21:03:03Z,2538,473,2005-07-14T00:47:03Z,1,2020-02-15T06:59:41Z +6891,2005-07-12T21:07:35Z,3189,507,2005-07-14T16:59:35Z,2,2020-02-15T06:59:41Z +6892,2005-07-12T21:10:04Z,1567,138,2005-07-13T23:03:04Z,2,2020-02-15T06:59:41Z +6893,2005-07-12T21:20:11Z,2611,377,2005-07-21T18:55:11Z,2,2020-02-15T06:59:41Z +6894,2005-07-12T21:20:50Z,1347,315,2005-07-20T23:42:50Z,2,2020-02-15T06:59:41Z +6895,2005-07-12T21:23:59Z,2935,599,2005-07-19T20:47:59Z,2,2020-02-15T06:59:41Z +6896,2005-07-12T21:25:37Z,1266,111,2005-07-20T23:51:37Z,1,2020-02-15T06:59:41Z +6897,2005-07-12T21:30:41Z,170,13,2005-07-15T03:19:41Z,1,2020-02-15T06:59:41Z +6898,2005-07-12T21:39:04Z,1725,557,2005-07-15T20:30:04Z,1,2020-02-15T06:59:41Z +6899,2005-07-12T21:44:16Z,3565,483,2005-07-21T22:21:16Z,2,2020-02-15T06:59:41Z +6900,2005-07-12T21:45:25Z,129,292,2005-07-19T21:19:25Z,1,2020-02-15T06:59:41Z +6901,2005-07-12T21:46:33Z,4574,158,2005-07-16T21:36:33Z,1,2020-02-15T06:59:41Z +6902,2005-07-12T21:57:16Z,314,485,2005-07-14T20:56:16Z,1,2020-02-15T06:59:41Z +6903,2005-07-12T21:58:15Z,3690,517,2005-07-14T01:38:15Z,2,2020-02-15T06:59:41Z +6904,2005-07-12T22:02:09Z,2312,465,2005-07-17T16:42:09Z,1,2020-02-15T06:59:41Z +6905,2005-07-12T22:02:18Z,763,25,2005-07-18T23:30:18Z,1,2020-02-15T06:59:41Z +6906,2005-07-12T22:03:02Z,1435,335,2005-07-15T00:35:02Z,1,2020-02-15T06:59:41Z +6907,2005-07-12T22:03:49Z,2516,575,2005-07-18T19:18:49Z,1,2020-02-15T06:59:41Z +6908,2005-07-12T22:08:46Z,3161,529,2005-07-21T00:21:46Z,2,2020-02-15T06:59:41Z +6909,2005-07-12T22:09:30Z,769,174,2005-07-17T02:05:30Z,2,2020-02-15T06:59:41Z +6910,2005-07-12T22:11:21Z,1290,546,2005-07-21T02:35:21Z,1,2020-02-15T06:59:41Z +6911,2005-07-12T22:14:34Z,901,361,2005-07-18T20:17:34Z,1,2020-02-15T06:59:41Z +6912,2005-07-12T22:17:16Z,1701,471,2005-07-19T18:18:16Z,1,2020-02-15T06:59:41Z +6913,2005-07-12T22:18:12Z,569,443,2005-07-14T23:03:12Z,2,2020-02-15T06:59:41Z +6914,2005-07-12T22:26:56Z,496,361,2005-07-17T20:03:56Z,1,2020-02-15T06:59:41Z +6915,2005-07-12T22:28:09Z,1243,559,2005-07-14T00:53:09Z,1,2020-02-15T06:59:41Z +6916,2005-07-12T22:29:18Z,3311,88,2005-07-19T16:46:18Z,1,2020-02-15T06:59:41Z +6917,2005-07-12T22:30:15Z,3048,23,2005-07-20T03:20:15Z,1,2020-02-15T06:59:41Z +6918,2005-07-12T22:30:29Z,4085,140,2005-07-19T22:51:29Z,1,2020-02-15T06:59:41Z +6919,2005-07-12T22:32:17Z,1122,540,2005-07-18T20:09:17Z,1,2020-02-15T06:59:41Z +6920,2005-07-12T22:32:58Z,2301,109,2005-07-19T20:29:58Z,2,2020-02-15T06:59:41Z +6921,2005-07-12T22:39:03Z,3322,265,2005-07-21T18:54:03Z,2,2020-02-15T06:59:41Z +6922,2005-07-12T22:39:48Z,1114,371,2005-07-14T18:35:48Z,1,2020-02-15T06:59:41Z +6923,2005-07-12T22:40:48Z,2642,490,2005-07-19T23:07:48Z,2,2020-02-15T06:59:41Z +6924,2005-07-26T22:51:53Z,1257,502,2005-08-03T19:04:53Z,2,2020-02-15T06:59:41Z +6925,2005-07-26T22:52:32Z,2919,42,2005-07-29T21:22:32Z,1,2020-02-15T06:59:41Z +6926,2005-07-26T22:52:45Z,1276,354,2005-07-28T18:32:45Z,1,2020-02-15T06:59:41Z +6927,2005-07-26T22:56:00Z,4511,470,2005-08-05T03:16:00Z,2,2020-02-15T06:59:41Z +6928,2005-07-26T22:56:21Z,3605,487,2005-07-30T04:46:21Z,1,2020-02-15T06:59:41Z +6929,2005-07-26T22:59:19Z,3339,508,2005-08-03T22:40:19Z,1,2020-02-15T06:59:41Z +6930,2005-07-26T23:00:01Z,2989,393,2005-08-04T01:57:01Z,2,2020-02-15T06:59:41Z +6931,2005-07-26T23:02:57Z,2794,333,2005-07-28T04:48:57Z,2,2020-02-15T06:59:41Z +6932,2005-07-26T23:08:04Z,4517,463,2005-08-05T01:35:04Z,1,2020-02-15T06:59:41Z +6933,2005-07-26T23:09:23Z,1334,385,2005-07-31T20:50:23Z,1,2020-02-15T06:59:41Z +6934,2005-07-26T23:11:03Z,455,107,2005-08-04T19:18:03Z,1,2020-02-15T06:59:41Z +6935,2005-07-26T23:13:10Z,2771,435,2005-07-27T18:09:10Z,1,2020-02-15T06:59:41Z +6936,2005-07-26T23:13:34Z,60,538,2005-07-30T19:14:34Z,1,2020-02-15T06:59:41Z +6937,2005-07-26T23:15:50Z,1768,592,2005-07-27T19:14:50Z,1,2020-02-15T06:59:41Z +6938,2005-07-26T23:16:04Z,2058,427,2005-08-05T00:59:04Z,2,2020-02-15T06:59:41Z +6939,2005-07-26T23:17:51Z,278,354,2005-08-03T21:12:51Z,2,2020-02-15T06:59:41Z +6940,2005-07-26T23:18:35Z,3876,149,2005-08-05T01:44:35Z,2,2020-02-15T06:59:41Z +6941,2005-07-26T23:18:49Z,1575,441,2005-07-31T00:23:49Z,2,2020-02-15T06:59:41Z +6942,2005-07-26T23:27:40Z,1203,470,2005-07-31T03:17:40Z,2,2020-02-15T06:59:41Z +6943,2005-07-26T23:28:13Z,2436,21,2005-07-30T02:22:13Z,2,2020-02-15T06:59:41Z +6944,2005-07-26T23:34:02Z,1168,373,2005-08-05T01:27:02Z,1,2020-02-15T06:59:41Z +6945,2005-07-26T23:35:29Z,1627,560,2005-07-28T00:12:29Z,1,2020-02-15T06:59:41Z +6946,2005-07-26T23:40:07Z,1854,181,2005-08-04T01:18:07Z,2,2020-02-15T06:59:41Z +6947,2005-07-26T23:42:03Z,760,200,2005-08-02T05:06:03Z,2,2020-02-15T06:59:41Z +6948,2005-07-26T23:43:49Z,3088,228,2005-07-27T21:24:49Z,2,2020-02-15T06:59:41Z +6949,2005-07-26T23:44:12Z,1594,103,2005-07-30T05:39:12Z,2,2020-02-15T06:59:41Z +6950,2005-07-26T23:45:33Z,197,503,2005-07-31T04:40:33Z,2,2020-02-15T06:59:41Z +6951,2005-07-26T23:47:31Z,3348,98,2005-07-31T22:17:31Z,1,2020-02-15T06:59:41Z +6952,2005-07-26T23:51:27Z,4288,290,2005-07-30T02:45:27Z,2,2020-02-15T06:59:41Z +6953,2005-07-26T23:52:47Z,2910,306,2005-07-30T23:07:47Z,1,2020-02-15T06:59:41Z +6954,2005-07-26T23:55:13Z,1112,584,2005-07-28T19:01:13Z,2,2020-02-15T06:59:41Z +6955,2005-07-26T23:55:48Z,1104,469,2005-08-02T03:25:48Z,2,2020-02-15T06:59:41Z +6956,2005-07-26T23:55:57Z,2499,240,2005-08-03T21:41:57Z,1,2020-02-15T06:59:41Z +6957,2005-07-27T00:00:00Z,2231,518,2005-07-29T19:32:00Z,2,2020-02-15T06:59:41Z +6958,2005-07-27T00:02:41Z,657,333,2005-07-28T00:53:41Z,2,2020-02-15T06:59:41Z +6959,2005-07-27T00:07:51Z,1618,452,2005-07-27T20:45:51Z,2,2020-02-15T06:59:41Z +6960,2005-07-27T00:08:33Z,192,421,2005-08-03T20:58:33Z,2,2020-02-15T06:59:41Z +6961,2005-07-27T00:10:49Z,2205,38,2005-07-30T00:26:49Z,2,2020-02-15T06:59:41Z +6962,2005-07-27T00:10:58Z,4500,245,2005-07-30T02:11:58Z,2,2020-02-15T06:59:41Z +6963,2005-07-27T00:13:02Z,4284,489,2005-08-03T18:13:02Z,1,2020-02-15T06:59:41Z +6964,2005-07-27T00:15:04Z,1537,404,2005-07-31T00:04:04Z,2,2020-02-15T06:59:41Z +6965,2005-07-27T00:15:18Z,74,185,2005-07-28T04:30:18Z,2,2020-02-15T06:59:41Z +6966,2005-07-27T00:15:35Z,1577,45,2005-08-05T03:04:35Z,2,2020-02-15T06:59:41Z +6967,2005-07-27T00:16:31Z,1145,296,2005-08-03T22:19:31Z,1,2020-02-15T06:59:41Z +6968,2005-07-27T00:16:45Z,1662,370,2005-07-30T23:16:45Z,2,2020-02-15T06:59:41Z +6969,2005-07-27T00:23:54Z,2650,579,2005-08-03T04:34:54Z,1,2020-02-15T06:59:41Z +6970,2005-07-27T00:26:14Z,17,418,2005-08-03T20:00:14Z,2,2020-02-15T06:59:41Z +6971,2005-07-27T00:26:17Z,3493,366,2005-08-01T03:59:17Z,2,2020-02-15T06:59:41Z +6972,2005-07-27T00:31:25Z,1716,434,2005-07-28T22:15:25Z,2,2020-02-15T06:59:41Z +6973,2005-07-27T00:32:04Z,4572,564,2005-07-29T01:05:04Z,2,2020-02-15T06:59:41Z +6974,2005-07-27T00:39:16Z,2924,122,2005-08-04T01:59:16Z,2,2020-02-15T06:59:41Z +6975,2005-07-27T00:39:54Z,3328,527,2005-08-02T19:49:54Z,1,2020-02-15T06:59:41Z +6976,2005-07-27T00:40:01Z,3096,41,2005-07-31T22:30:01Z,2,2020-02-15T06:59:41Z +6977,2005-07-27T00:40:50Z,3545,429,2005-08-02T19:08:50Z,2,2020-02-15T06:59:41Z +6978,2005-07-27T00:47:40Z,3645,132,2005-07-31T04:32:40Z,2,2020-02-15T06:59:41Z +6979,2005-07-27T00:49:53Z,1001,141,2005-07-31T03:59:53Z,2,2020-02-15T06:59:41Z +6980,2005-07-27T00:50:30Z,1127,164,2005-08-03T23:35:30Z,1,2020-02-15T06:59:41Z +6981,2005-07-27T00:51:38Z,154,362,2005-07-28T01:06:38Z,2,2020-02-15T06:59:41Z +6982,2005-07-27T00:53:41Z,3843,284,2005-07-31T06:19:41Z,2,2020-02-15T06:59:41Z +6983,2005-07-27T00:55:03Z,1758,443,2005-08-01T21:19:03Z,2,2020-02-15T06:59:41Z +6984,2005-07-27T00:56:30Z,2407,297,2005-08-02T01:14:30Z,2,2020-02-15T06:59:41Z +6985,2005-07-27T00:57:42Z,1834,448,2005-07-31T00:53:42Z,1,2020-02-15T06:59:41Z +6986,2005-07-27T00:59:05Z,2104,262,2005-07-29T00:31:05Z,1,2020-02-15T06:59:41Z +6987,2005-07-27T00:59:50Z,3134,334,2005-07-28T01:47:50Z,1,2020-02-15T06:59:41Z +6988,2005-07-27T01:00:08Z,756,316,2005-07-31T04:35:08Z,2,2020-02-15T06:59:41Z +6989,2005-07-27T01:00:34Z,4036,120,2005-07-30T23:53:34Z,1,2020-02-15T06:59:41Z +6990,2005-07-27T01:02:46Z,4065,146,2005-07-31T00:22:46Z,1,2020-02-15T06:59:41Z +6991,2005-07-27T01:03:06Z,319,307,2005-08-05T04:18:06Z,2,2020-02-15T06:59:41Z +6992,2005-07-27T01:04:45Z,3411,106,2005-07-28T02:34:45Z,2,2020-02-15T06:59:41Z +6993,2005-07-27T01:05:24Z,3114,154,2005-07-30T06:23:24Z,2,2020-02-15T06:59:41Z +6994,2005-07-27T01:08:26Z,4316,400,2005-08-04T22:58:26Z,2,2020-02-15T06:59:41Z +6995,2005-07-27T01:12:13Z,1630,66,2005-07-29T21:26:13Z,1,2020-02-15T06:59:41Z +6996,2005-07-27T01:13:45Z,3237,236,2005-07-28T20:43:45Z,1,2020-02-15T06:59:41Z +6997,2005-07-27T01:14:02Z,2130,342,2005-07-29T01:12:02Z,2,2020-02-15T06:59:41Z +6998,2005-07-27T01:16:29Z,788,300,2005-07-30T05:50:29Z,2,2020-02-15T06:59:41Z +6999,2005-07-27T01:21:19Z,12,224,2005-07-29T20:33:19Z,2,2020-02-15T06:59:41Z +7000,2005-07-27T01:23:24Z,2024,31,2005-08-03T02:10:24Z,2,2020-02-15T06:59:41Z +7001,2005-07-27T01:25:34Z,1460,240,2005-07-31T23:30:34Z,2,2020-02-15T06:59:41Z +7002,2005-07-27T01:26:14Z,4157,349,2005-08-01T20:10:14Z,1,2020-02-15T06:59:41Z +7003,2005-07-27T01:32:06Z,636,161,2005-07-30T21:33:06Z,2,2020-02-15T06:59:41Z +7004,2005-07-27T01:36:05Z,4416,314,2005-08-03T23:46:05Z,1,2020-02-15T06:59:41Z +7005,2005-07-27T01:38:36Z,2438,446,2005-08-02T05:56:36Z,2,2020-02-15T06:59:41Z +7006,2005-07-27T01:42:20Z,3522,264,2005-08-03T03:19:20Z,1,2020-02-15T06:59:41Z +7007,2005-07-27T01:43:39Z,4186,257,2005-07-31T21:04:39Z,1,2020-02-15T06:59:41Z +7008,2005-07-27T01:44:03Z,3659,12,2005-07-28T21:19:03Z,2,2020-02-15T06:59:41Z +7009,2005-07-27T01:45:44Z,1585,414,2005-07-28T05:50:44Z,1,2020-02-15T06:59:41Z +7010,2005-07-27T01:56:01Z,3016,590,2005-07-30T04:40:01Z,1,2020-02-15T06:59:41Z +7011,2005-07-27T01:58:34Z,4082,254,2005-07-28T06:11:34Z,1,2020-02-15T06:59:41Z +7012,2005-07-27T02:01:03Z,779,239,2005-08-05T07:34:03Z,2,2020-02-15T06:59:41Z +7013,2005-07-27T02:03:21Z,3919,463,2005-07-31T22:12:21Z,1,2020-02-15T06:59:41Z +7014,2005-07-27T02:14:40Z,714,524,2005-08-03T00:32:40Z,2,2020-02-15T06:59:41Z +7015,2005-07-27T02:15:01Z,376,34,2005-07-28T07:46:01Z,2,2020-02-15T06:59:41Z +7016,2005-07-27T02:15:16Z,1425,423,2005-08-01T23:08:16Z,2,2020-02-15T06:59:41Z +7017,2005-07-27T02:16:03Z,753,176,2005-07-31T07:49:03Z,1,2020-02-15T06:59:41Z +7018,2005-07-27T02:20:22Z,1078,451,2005-08-02T05:04:22Z,2,2020-02-15T06:59:41Z +7019,2005-07-27T02:20:26Z,3837,491,2005-08-02T22:48:26Z,1,2020-02-15T06:59:41Z +7020,2005-07-27T02:24:27Z,3965,506,2005-07-29T01:27:27Z,2,2020-02-15T06:59:41Z +7021,2005-07-27T02:26:38Z,2690,380,2005-08-05T01:18:38Z,1,2020-02-15T06:59:41Z +7022,2005-07-27T02:31:15Z,1711,243,2005-07-29T02:52:15Z,1,2020-02-15T06:59:41Z +7023,2005-07-27T02:32:44Z,4196,303,2005-08-03T04:06:44Z,1,2020-02-15T06:59:41Z +7024,2005-07-27T02:36:40Z,3113,252,2005-07-28T06:58:40Z,1,2020-02-15T06:59:41Z +7025,2005-07-27T02:40:29Z,3530,176,2005-07-29T23:02:29Z,2,2020-02-15T06:59:41Z +7026,2005-07-27T02:48:58Z,3456,493,2005-07-29T03:41:58Z,2,2020-02-15T06:59:41Z +7027,2005-07-27T02:50:15Z,3280,61,2005-08-04T02:58:15Z,1,2020-02-15T06:59:41Z +7028,2005-07-27T02:54:25Z,834,179,2005-08-02T06:16:25Z,2,2020-02-15T06:59:41Z +7029,2005-07-27T02:57:43Z,2862,389,2005-07-30T08:24:43Z,1,2020-02-15T06:59:41Z +7030,2005-07-27T03:01:40Z,1277,550,2005-07-31T07:01:40Z,1,2020-02-15T06:59:41Z +7031,2005-07-27T03:02:07Z,1435,530,2005-08-02T07:14:07Z,1,2020-02-15T06:59:41Z +7032,2005-07-27T03:03:09Z,3397,269,2005-07-28T22:57:09Z,1,2020-02-15T06:59:41Z +7033,2005-07-27T03:03:25Z,2803,352,2005-07-28T01:57:25Z,2,2020-02-15T06:59:41Z +7034,2005-07-27T03:03:37Z,1712,281,2005-07-28T23:18:37Z,1,2020-02-15T06:59:41Z +7035,2005-07-27T03:06:09Z,2439,90,2005-08-02T21:59:09Z,2,2020-02-15T06:59:41Z +7036,2005-07-27T03:06:12Z,2569,70,2005-07-28T23:26:12Z,2,2020-02-15T06:59:41Z +7037,2005-07-27T03:06:44Z,3155,171,2005-08-02T04:51:44Z,2,2020-02-15T06:59:41Z +7038,2005-07-27T03:07:29Z,1909,518,2005-07-31T04:55:29Z,2,2020-02-15T06:59:41Z +7039,2005-07-27T03:11:48Z,1906,99,2005-08-01T23:55:48Z,1,2020-02-15T06:59:41Z +7040,2005-07-27T03:17:19Z,470,524,2005-07-29T07:03:19Z,2,2020-02-15T06:59:41Z +7041,2005-07-27T03:18:32Z,4212,379,2005-07-30T06:40:32Z,2,2020-02-15T06:59:41Z +7042,2005-07-27T03:20:18Z,399,188,2005-08-01T02:23:18Z,1,2020-02-15T06:59:41Z +7043,2005-07-27T03:24:23Z,3422,493,2005-08-05T02:55:23Z,2,2020-02-15T06:59:41Z +7044,2005-07-27T03:27:29Z,88,147,2005-08-01T07:00:29Z,2,2020-02-15T06:59:41Z +7045,2005-07-27T03:27:35Z,1788,64,2005-08-01T06:31:35Z,2,2020-02-15T06:59:41Z +7046,2005-07-27T03:27:56Z,3740,349,2005-07-30T00:54:56Z,2,2020-02-15T06:59:41Z +7047,2005-07-27T03:31:11Z,2866,236,2005-08-03T23:40:11Z,1,2020-02-15T06:59:41Z +7048,2005-07-27T03:31:48Z,3707,581,2005-08-05T07:30:48Z,2,2020-02-15T06:59:41Z +7049,2005-07-27T03:32:41Z,3043,332,2005-08-04T08:32:41Z,2,2020-02-15T06:59:41Z +7050,2005-07-27T03:33:17Z,1135,55,2005-08-02T03:12:17Z,1,2020-02-15T06:59:41Z +7051,2005-07-27T03:34:37Z,1310,184,2005-07-31T03:48:37Z,2,2020-02-15T06:59:41Z +7052,2005-07-27T03:36:38Z,3798,75,2005-08-03T21:51:38Z,1,2020-02-15T06:59:41Z +7053,2005-07-27T03:38:54Z,149,408,2005-07-31T01:13:54Z,1,2020-02-15T06:59:41Z +7054,2005-07-27T03:43:28Z,2661,179,2005-08-04T09:15:28Z,1,2020-02-15T06:59:41Z +7055,2005-07-27T03:45:42Z,4305,154,2005-07-30T05:11:42Z,1,2020-02-15T06:59:41Z +7056,2005-07-27T03:46:27Z,805,233,2005-08-05T07:46:27Z,1,2020-02-15T06:59:41Z +7057,2005-07-27T03:50:03Z,1196,320,2005-08-04T04:36:03Z,1,2020-02-15T06:59:41Z +7058,2005-07-27T03:50:46Z,716,90,2005-08-04T07:40:46Z,2,2020-02-15T06:59:41Z +7059,2005-07-27T03:51:02Z,129,578,2005-08-02T22:04:02Z,1,2020-02-15T06:59:41Z +7060,2005-07-27T03:51:04Z,3912,479,2005-08-03T07:53:04Z,1,2020-02-15T06:59:41Z +7061,2005-07-27T03:51:10Z,880,145,2005-07-31T05:36:10Z,1,2020-02-15T06:59:41Z +7062,2005-07-27T03:52:01Z,226,469,2005-08-03T08:26:01Z,1,2020-02-15T06:59:41Z +7063,2005-07-27T03:52:27Z,2125,58,2005-08-04T07:53:27Z,1,2020-02-15T06:59:41Z +7064,2005-07-27T03:53:29Z,4204,320,2005-08-03T06:32:29Z,1,2020-02-15T06:59:41Z +7065,2005-07-27T03:53:43Z,3570,536,2005-07-30T23:41:43Z,2,2020-02-15T06:59:41Z +7066,2005-07-27T03:53:52Z,1862,185,2005-08-05T03:32:52Z,1,2020-02-15T06:59:41Z +7067,2005-07-27T03:55:10Z,870,60,2005-08-01T02:56:10Z,1,2020-02-15T06:59:41Z +7068,2005-07-27T03:57:50Z,4465,568,2005-07-30T04:27:50Z,1,2020-02-15T06:59:41Z +7069,2005-07-27T03:59:35Z,2073,343,2005-08-05T03:33:35Z,1,2020-02-15T06:59:41Z +7070,2005-07-27T04:01:08Z,4182,280,2005-07-30T08:10:08Z,2,2020-02-15T06:59:41Z +7071,2005-07-27T04:01:15Z,4361,61,2005-08-03T05:18:15Z,2,2020-02-15T06:59:41Z +7072,2005-07-27T04:02:33Z,3899,260,2005-07-28T09:26:33Z,2,2020-02-15T06:59:41Z +7073,2005-07-27T04:03:26Z,3859,92,2005-08-03T05:50:26Z,1,2020-02-15T06:59:41Z +7074,2005-07-27T04:06:24Z,1390,165,2005-07-28T02:04:24Z,1,2020-02-15T06:59:41Z +7075,2005-07-27T04:11:40Z,4414,530,2005-08-03T08:16:40Z,2,2020-02-15T06:59:41Z +7076,2005-07-27T04:12:14Z,2821,333,2005-08-05T00:44:14Z,1,2020-02-15T06:59:41Z +7077,2005-07-27T04:13:02Z,3186,155,2005-07-31T23:15:02Z,1,2020-02-15T06:59:41Z +7078,2005-07-27T04:16:37Z,4518,545,2005-08-05T02:34:37Z,1,2020-02-15T06:59:41Z +7079,2005-07-27T04:21:58Z,4356,356,2005-08-04T08:08:58Z,1,2020-02-15T06:59:41Z +7080,2005-07-27T04:25:25Z,710,466,2005-08-04T04:22:25Z,2,2020-02-15T06:59:41Z +7081,2005-07-27T04:25:59Z,462,420,2005-08-01T00:14:59Z,1,2020-02-15T06:59:41Z +7082,2005-07-27T04:27:32Z,2032,64,2005-07-30T06:06:32Z,2,2020-02-15T06:59:41Z +7083,2005-07-27T04:28:39Z,2663,575,2005-07-30T04:35:39Z,2,2020-02-15T06:59:41Z +7084,2005-07-27T04:34:07Z,785,32,2005-08-05T00:21:07Z,2,2020-02-15T06:59:41Z +7085,2005-07-27T04:35:44Z,2603,223,2005-08-05T07:10:44Z,2,2020-02-15T06:59:41Z +7086,2005-07-27T04:39:46Z,2938,595,2005-08-05T00:32:46Z,2,2020-02-15T06:59:41Z +7087,2005-07-27T04:42:08Z,1159,22,2005-08-02T00:53:08Z,1,2020-02-15T06:59:41Z +7088,2005-07-27T04:42:28Z,373,88,2005-08-04T07:09:28Z,2,2020-02-15T06:59:41Z +7089,2005-07-27T04:43:42Z,1380,446,2005-07-30T10:04:42Z,1,2020-02-15T06:59:41Z +7090,2005-07-27T04:43:53Z,3495,218,2005-07-29T07:33:53Z,2,2020-02-15T06:59:41Z +7091,2005-07-27T04:44:10Z,2593,322,2005-07-31T07:14:10Z,1,2020-02-15T06:59:41Z +7092,2005-07-27T04:46:00Z,1433,345,2005-08-03T07:22:00Z,2,2020-02-15T06:59:41Z +7093,2005-07-27T04:47:00Z,3065,574,2005-07-31T10:15:00Z,1,2020-02-15T06:59:41Z +7094,2005-07-27T04:47:33Z,867,373,2005-07-31T04:07:33Z,2,2020-02-15T06:59:41Z +7095,2005-07-27T04:51:15Z,1008,551,2005-08-05T10:25:15Z,2,2020-02-15T06:59:41Z +7096,2005-07-27T04:54:42Z,2575,3,2005-08-03T01:42:42Z,2,2020-02-15T06:59:41Z +7097,2005-07-27T04:56:09Z,258,487,2005-07-31T05:47:09Z,1,2020-02-15T06:59:41Z +7098,2005-07-27T05:01:08Z,2555,359,2005-08-02T07:49:08Z,2,2020-02-15T06:59:41Z +7099,2005-07-27T05:03:44Z,3136,6,2005-07-29T00:12:44Z,2,2020-02-15T06:59:41Z +7100,2005-07-27T05:05:01Z,4224,413,2005-07-28T23:12:01Z,2,2020-02-15T06:59:41Z +7101,2005-07-27T05:06:34Z,2006,221,2005-07-29T06:12:34Z,1,2020-02-15T06:59:41Z +7102,2005-07-27T05:07:21Z,1081,411,2005-08-01T09:41:21Z,2,2020-02-15T06:59:41Z +7103,2005-07-27T05:08:59Z,1697,403,2005-07-29T03:42:59Z,2,2020-02-15T06:59:41Z +7104,2005-07-27T05:15:25Z,118,217,2005-08-01T05:36:25Z,2,2020-02-15T06:59:41Z +7105,2005-07-27T05:15:37Z,864,15,2005-07-28T05:49:37Z,2,2020-02-15T06:59:41Z +7106,2005-07-27T05:21:24Z,1415,201,2005-08-02T01:58:24Z,2,2020-02-15T06:59:41Z +7107,2005-07-27T05:22:04Z,1883,104,2005-08-02T06:38:04Z,1,2020-02-15T06:59:41Z +7108,2005-07-27T05:28:32Z,2720,355,2005-07-31T07:52:32Z,1,2020-02-15T06:59:41Z +7109,2005-07-27T05:28:57Z,1658,406,2005-08-04T10:41:57Z,2,2020-02-15T06:59:41Z +7110,2005-07-27T05:30:48Z,3289,157,2005-07-28T01:43:48Z,1,2020-02-15T06:59:41Z +7111,2005-07-27T05:38:16Z,1252,473,2005-07-29T04:28:16Z,2,2020-02-15T06:59:41Z +7112,2005-07-27T05:38:42Z,4056,101,2005-08-03T05:35:42Z,1,2020-02-15T06:59:41Z +7113,2005-07-27T05:41:20Z,1963,534,2005-07-30T04:50:20Z,1,2020-02-15T06:59:41Z +7114,2005-07-27T05:42:13Z,3892,121,2005-07-29T01:59:13Z,1,2020-02-15T06:59:41Z +7115,2005-07-27T05:42:58Z,3620,359,2005-08-02T05:35:58Z,2,2020-02-15T06:59:41Z +7116,2005-07-27T05:46:43Z,1755,209,2005-08-05T05:54:43Z,1,2020-02-15T06:59:41Z +7117,2005-07-27T05:48:36Z,2772,326,2005-08-01T00:33:36Z,1,2020-02-15T06:59:41Z +7118,2005-07-27T05:53:50Z,582,591,2005-08-05T04:19:50Z,2,2020-02-15T06:59:41Z +7119,2005-07-27T05:55:32Z,1732,102,2005-07-29T03:19:32Z,1,2020-02-15T06:59:41Z +7120,2005-07-27T05:56:39Z,416,98,2005-08-04T10:57:39Z,1,2020-02-15T06:59:41Z +7121,2005-07-27T05:58:32Z,1264,252,2005-07-29T06:14:32Z,1,2020-02-15T06:59:41Z +7122,2005-07-27T06:03:18Z,1699,172,2005-08-04T10:43:18Z,2,2020-02-15T06:59:41Z +7123,2005-07-27T06:08:48Z,134,232,2005-08-04T05:26:48Z,1,2020-02-15T06:59:41Z +7124,2005-07-27T06:09:30Z,3449,34,2005-08-02T09:31:30Z,1,2020-02-15T06:59:41Z +7125,2005-07-27T06:11:00Z,801,460,2005-08-04T09:41:00Z,2,2020-02-15T06:59:41Z +7126,2005-07-27T06:13:13Z,3240,582,2005-07-28T08:22:13Z,2,2020-02-15T06:59:41Z +7127,2005-07-27T06:13:48Z,273,486,2005-08-01T02:50:48Z,2,2020-02-15T06:59:41Z +7128,2005-07-27T06:14:36Z,143,529,2005-08-02T05:18:36Z,1,2020-02-15T06:59:41Z +7129,2005-07-27T06:18:01Z,1930,221,2005-07-28T02:38:01Z,1,2020-02-15T06:59:41Z +7130,2005-07-27T06:23:36Z,420,81,2005-07-28T10:23:36Z,1,2020-02-15T06:59:41Z +7131,2005-07-27T06:25:06Z,2832,585,2005-07-31T09:07:06Z,1,2020-02-15T06:59:41Z +7132,2005-07-27T06:28:34Z,3201,227,2005-08-05T06:02:34Z,2,2020-02-15T06:59:41Z +7133,2005-07-27T06:29:23Z,2995,496,2005-07-29T03:20:23Z,2,2020-02-15T06:59:41Z +7134,2005-07-27T06:33:06Z,1058,574,2005-07-28T06:15:06Z,1,2020-02-15T06:59:41Z +7135,2005-07-27T06:34:32Z,2959,172,2005-07-28T03:01:32Z,1,2020-02-15T06:59:41Z +7136,2005-07-27T06:38:25Z,1929,6,2005-08-03T05:13:25Z,1,2020-02-15T06:59:41Z +7137,2005-07-27T06:40:41Z,3957,483,2005-07-29T09:05:41Z,2,2020-02-15T06:59:41Z +7138,2005-07-27T06:47:13Z,1418,31,2005-08-03T01:12:13Z,2,2020-02-15T06:59:41Z +7139,2005-07-27T06:52:21Z,846,575,2005-07-30T01:45:21Z,1,2020-02-15T06:59:41Z +7140,2005-07-27T06:54:12Z,2028,35,2005-08-03T10:36:12Z,2,2020-02-15T06:59:41Z +7141,2005-07-27T06:55:27Z,3579,423,2005-08-01T11:10:27Z,1,2020-02-15T06:59:41Z +7142,2005-07-27T06:55:39Z,1743,396,2005-07-28T01:41:39Z,2,2020-02-15T06:59:41Z +7143,2005-07-27T06:56:31Z,2877,91,2005-07-31T04:38:31Z,2,2020-02-15T06:59:41Z +7144,2005-07-27T07:00:37Z,4506,485,2005-08-01T06:57:37Z,1,2020-02-15T06:59:41Z +7145,2005-07-27T07:01:00Z,3653,109,2005-07-31T02:31:00Z,1,2020-02-15T06:59:41Z +7146,2005-07-27T07:02:30Z,2245,323,2005-08-05T10:29:30Z,1,2020-02-15T06:59:41Z +7147,2005-07-27T07:02:34Z,990,192,2005-08-01T02:16:34Z,1,2020-02-15T06:59:41Z +7148,2005-07-27T07:04:09Z,1783,354,2005-08-03T10:20:09Z,2,2020-02-15T06:59:41Z +7149,2005-07-27T07:10:40Z,3902,242,2005-08-03T07:37:40Z,2,2020-02-15T06:59:41Z +7150,2005-07-27T07:11:14Z,457,191,2005-08-05T06:55:14Z,2,2020-02-15T06:59:41Z +7151,2005-07-27T07:14:31Z,1259,289,2005-08-01T01:35:31Z,2,2020-02-15T06:59:41Z +7152,2005-07-27T07:15:01Z,2338,370,2005-08-05T04:50:01Z,1,2020-02-15T06:59:41Z +7153,2005-07-27T07:15:38Z,2657,41,2005-07-28T09:56:38Z,1,2020-02-15T06:59:41Z +7154,2005-07-27T07:16:17Z,2019,518,2005-07-28T04:04:17Z,2,2020-02-15T06:59:41Z +7155,2005-07-27T07:18:46Z,171,23,2005-08-04T10:28:46Z,1,2020-02-15T06:59:41Z +7156,2005-07-27T07:19:34Z,34,154,2005-07-31T04:31:34Z,1,2020-02-15T06:59:41Z +7157,2005-07-27T07:20:28Z,1353,423,2005-08-02T07:19:28Z,1,2020-02-15T06:59:41Z +7158,2005-07-27T07:23:58Z,2432,38,2005-08-03T06:00:58Z,2,2020-02-15T06:59:41Z +7159,2005-07-27T07:24:00Z,1220,158,2005-08-05T11:13:00Z,1,2020-02-15T06:59:41Z +7160,2005-07-27T07:26:06Z,3905,71,2005-07-31T04:54:06Z,2,2020-02-15T06:59:41Z +7161,2005-07-27T07:26:32Z,378,572,2005-08-03T01:26:32Z,2,2020-02-15T06:59:41Z +7162,2005-07-27T07:32:45Z,2251,289,2005-07-30T03:48:45Z,1,2020-02-15T06:59:41Z +7163,2005-07-27T07:36:11Z,3666,38,2005-08-04T06:03:11Z,2,2020-02-15T06:59:41Z +7164,2005-07-27T07:36:34Z,527,284,2005-08-04T05:05:34Z,2,2020-02-15T06:59:41Z +7165,2005-07-27T07:36:46Z,497,243,2005-07-30T09:22:46Z,2,2020-02-15T06:59:41Z +7166,2005-07-27T07:36:56Z,1375,562,2005-08-02T03:46:56Z,1,2020-02-15T06:59:41Z +7167,2005-07-27T07:37:26Z,238,380,2005-08-03T06:39:26Z,1,2020-02-15T06:59:41Z +7168,2005-07-27T07:51:11Z,6,252,2005-08-01T04:08:11Z,2,2020-02-15T06:59:41Z +7169,2005-07-27T07:51:39Z,735,559,2005-08-01T06:42:39Z,1,2020-02-15T06:59:41Z +7170,2005-07-27T07:58:26Z,370,140,2005-07-28T02:30:26Z,1,2020-02-15T06:59:41Z +7171,2005-07-27T07:58:35Z,4381,406,2005-08-03T07:45:35Z,1,2020-02-15T06:59:41Z +7172,2005-07-27T07:59:16Z,2405,362,2005-08-01T04:46:16Z,1,2020-02-15T06:59:41Z +7173,2005-07-27T07:59:24Z,177,592,2005-07-28T02:23:24Z,2,2020-02-15T06:59:41Z +7174,2005-07-27T08:00:36Z,46,570,2005-08-01T03:11:36Z,1,2020-02-15T06:59:41Z +7175,2005-07-27T08:03:22Z,568,190,2005-08-01T02:47:22Z,2,2020-02-15T06:59:41Z +7176,2005-07-27T08:04:28Z,227,257,2005-07-29T14:00:28Z,2,2020-02-15T06:59:41Z +7177,2005-07-27T08:07:39Z,3818,133,2005-07-30T03:17:39Z,2,2020-02-15T06:59:41Z +7178,2005-07-27T08:09:25Z,1899,31,2005-07-29T13:00:25Z,2,2020-02-15T06:59:41Z +7179,2005-07-27T08:10:29Z,2365,537,2005-07-28T12:24:29Z,2,2020-02-15T06:59:41Z +7180,2005-07-27T08:14:34Z,460,215,2005-07-31T05:24:34Z,1,2020-02-15T06:59:41Z +7181,2005-07-27T08:14:34Z,2788,130,2005-07-28T03:09:34Z,1,2020-02-15T06:59:41Z +7182,2005-07-27T08:15:38Z,3209,97,2005-08-03T12:48:38Z,2,2020-02-15T06:59:41Z +7183,2005-07-27T08:18:38Z,3384,302,2005-08-01T03:24:38Z,1,2020-02-15T06:59:41Z +7184,2005-07-27T08:22:26Z,2324,457,2005-08-02T09:34:26Z,2,2020-02-15T06:59:41Z +7185,2005-07-27T08:23:54Z,2340,121,2005-07-30T09:50:54Z,1,2020-02-15T06:59:41Z +7186,2005-07-27T08:26:12Z,4005,584,2005-07-28T12:21:12Z,1,2020-02-15T06:59:41Z +7187,2005-07-27T08:27:58Z,2733,169,2005-08-05T09:05:58Z,1,2020-02-15T06:59:41Z +7188,2005-07-27T08:32:08Z,2199,259,2005-07-28T08:02:08Z,1,2020-02-15T06:59:41Z +7189,2005-07-27T08:35:02Z,4419,151,2005-07-30T14:00:02Z,2,2020-02-15T06:59:41Z +7190,2005-07-27T08:36:01Z,1330,372,2005-07-30T08:32:01Z,2,2020-02-15T06:59:41Z +7191,2005-07-27T08:36:15Z,4292,495,2005-08-03T08:54:15Z,1,2020-02-15T06:59:41Z +7192,2005-07-27T08:36:55Z,4329,532,2005-07-30T11:58:55Z,2,2020-02-15T06:59:41Z +7193,2005-07-27T08:37:00Z,1801,237,2005-07-30T12:51:00Z,2,2020-02-15T06:59:41Z +7194,2005-07-27T08:39:58Z,254,172,2005-08-01T03:12:58Z,1,2020-02-15T06:59:41Z +7195,2005-07-27T08:47:01Z,721,157,2005-07-30T08:40:01Z,2,2020-02-15T06:59:41Z +7196,2005-07-27T08:49:08Z,2998,118,2005-07-29T03:54:08Z,1,2020-02-15T06:59:41Z +7197,2005-07-27T08:49:32Z,2109,577,2005-07-31T13:50:32Z,1,2020-02-15T06:59:41Z +7198,2005-07-27T08:50:07Z,4283,520,2005-08-04T09:46:07Z,2,2020-02-15T06:59:41Z +7199,2005-07-27T08:53:23Z,3685,292,2005-08-03T10:01:23Z,1,2020-02-15T06:59:41Z +7200,2005-07-27T08:57:38Z,4406,78,2005-08-02T12:29:38Z,2,2020-02-15T06:59:41Z +7201,2005-07-27T08:57:40Z,482,598,2005-08-04T09:55:40Z,2,2020-02-15T06:59:41Z +7202,2005-07-27T09:00:20Z,109,560,2005-08-04T03:09:20Z,1,2020-02-15T06:59:41Z +7203,2005-07-27T09:01:23Z,1685,492,2005-08-04T14:14:23Z,1,2020-02-15T06:59:41Z +7204,2005-07-27T09:02:31Z,2512,531,2005-08-03T08:56:31Z,2,2020-02-15T06:59:41Z +7205,2005-07-27T09:06:13Z,2828,36,2005-08-05T07:11:13Z,1,2020-02-15T06:59:41Z +7206,2005-07-27T09:07:05Z,3752,373,2005-07-31T03:13:05Z,2,2020-02-15T06:59:41Z +7207,2005-07-27T09:13:26Z,336,51,2005-08-01T10:24:26Z,1,2020-02-15T06:59:41Z +7208,2005-07-27T09:16:28Z,1523,138,2005-07-28T09:40:28Z,1,2020-02-15T06:59:41Z +7209,2005-07-27T09:16:53Z,3766,49,2005-07-30T08:09:53Z,2,2020-02-15T06:59:41Z +7210,2005-07-27T09:19:05Z,1984,176,2005-07-28T04:35:05Z,1,2020-02-15T06:59:41Z +7211,2005-07-27T09:20:00Z,4445,285,2005-08-02T14:53:00Z,1,2020-02-15T06:59:41Z +7212,2005-07-27T09:21:22Z,2905,591,2005-08-01T04:47:22Z,2,2020-02-15T06:59:41Z +7213,2005-07-27T09:22:29Z,2836,502,2005-08-03T13:53:29Z,2,2020-02-15T06:59:41Z +7214,2005-07-27T09:23:33Z,802,309,2005-08-03T13:14:33Z,2,2020-02-15T06:59:41Z +7215,2005-07-27T09:24:00Z,2713,473,2005-08-05T07:37:00Z,2,2020-02-15T06:59:41Z +7216,2005-07-27T09:27:45Z,1812,292,2005-08-03T13:08:45Z,1,2020-02-15T06:59:41Z +7217,2005-07-27T09:31:44Z,2646,20,2005-07-29T10:48:44Z,1,2020-02-15T06:59:41Z +7218,2005-07-27T09:34:24Z,2458,530,2005-08-01T07:00:24Z,1,2020-02-15T06:59:41Z +7219,2005-07-27T09:35:36Z,4046,512,2005-07-29T04:44:36Z,1,2020-02-15T06:59:41Z +7220,2005-07-27T09:35:54Z,3867,79,2005-08-04T06:00:54Z,2,2020-02-15T06:59:41Z +7221,2005-07-27T09:37:35Z,3820,579,2005-07-28T11:25:35Z,1,2020-02-15T06:59:41Z +7222,2005-07-27T09:38:43Z,2330,206,2005-07-28T06:25:43Z,1,2020-02-15T06:59:41Z +7223,2005-07-27T09:42:27Z,2623,325,2005-08-04T04:02:27Z,1,2020-02-15T06:59:41Z +7224,2005-07-27T09:44:26Z,2701,106,2005-08-05T12:46:26Z,2,2020-02-15T06:59:41Z +7225,2005-07-27T09:47:12Z,632,306,2005-08-03T13:19:12Z,2,2020-02-15T06:59:41Z +7226,2005-07-27T09:47:53Z,3507,370,2005-08-01T08:24:53Z,1,2020-02-15T06:59:41Z +7227,2005-07-27T09:53:43Z,791,164,2005-08-05T09:36:43Z,2,2020-02-15T06:59:41Z +7228,2005-07-27T09:55:33Z,1693,481,2005-07-29T04:33:33Z,2,2020-02-15T06:59:41Z +7229,2005-07-27T10:00:54Z,978,182,2005-07-28T13:58:54Z,2,2020-02-15T06:59:41Z +7230,2005-07-27T10:01:41Z,1152,245,2005-08-02T11:00:41Z,1,2020-02-15T06:59:41Z +7231,2005-07-27T10:01:51Z,1638,86,2005-08-05T13:38:51Z,2,2020-02-15T06:59:41Z +7232,2005-07-27T10:04:19Z,1147,306,2005-07-28T09:43:19Z,2,2020-02-15T06:59:41Z +7233,2005-07-27T10:08:36Z,213,245,2005-07-31T16:00:36Z,1,2020-02-15T06:59:41Z +7234,2005-07-27T10:08:45Z,3873,372,2005-07-31T13:58:45Z,1,2020-02-15T06:59:41Z +7235,2005-07-27T10:09:30Z,1261,354,2005-08-05T11:44:30Z,2,2020-02-15T06:59:41Z +7236,2005-07-27T10:09:39Z,3004,218,2005-08-03T16:05:39Z,1,2020-02-15T06:59:41Z +7237,2005-07-27T10:12:36Z,1904,29,2005-07-31T08:40:36Z,2,2020-02-15T06:59:41Z +7238,2005-07-27T10:13:41Z,1197,116,2005-07-29T11:07:41Z,1,2020-02-15T06:59:41Z +7239,2005-07-27T10:20:27Z,1786,278,2005-07-29T10:15:27Z,1,2020-02-15T06:59:41Z +7240,2005-07-27T10:21:15Z,4565,324,2005-08-03T05:04:15Z,1,2020-02-15T06:59:41Z +7241,2005-07-27T10:25:49Z,2433,354,2005-07-28T05:30:49Z,2,2020-02-15T06:59:41Z +7242,2005-07-27T10:25:51Z,1966,565,2005-08-04T16:02:51Z,2,2020-02-15T06:59:41Z +7243,2005-07-27T10:26:11Z,1287,238,2005-07-29T11:43:11Z,2,2020-02-15T06:59:41Z +7244,2005-07-27T10:27:33Z,1329,339,2005-07-30T13:09:33Z,1,2020-02-15T06:59:41Z +7245,2005-07-27T10:29:06Z,260,95,2005-08-05T12:09:06Z,2,2020-02-15T06:59:41Z +7246,2005-07-27T10:30:41Z,2003,333,2005-07-30T05:44:41Z,1,2020-02-15T06:59:41Z +7247,2005-07-27T10:32:58Z,1445,102,2005-07-29T05:00:58Z,2,2020-02-15T06:59:41Z +7248,2005-07-27T10:37:45Z,4256,456,2005-08-01T13:13:45Z,1,2020-02-15T06:59:41Z +7249,2005-07-27T10:39:53Z,2441,425,2005-07-28T14:48:53Z,2,2020-02-15T06:59:41Z +7250,2005-07-27T10:44:09Z,3410,589,2005-07-28T11:47:09Z,1,2020-02-15T06:59:41Z +7251,2005-07-27T10:44:55Z,1737,360,2005-08-01T16:12:55Z,1,2020-02-15T06:59:41Z +7252,2005-07-27T10:45:28Z,3107,549,2005-08-04T06:24:28Z,2,2020-02-15T06:59:41Z +7253,2005-07-27T10:46:37Z,1950,236,2005-07-28T11:18:37Z,1,2020-02-15T06:59:41Z +7254,2005-07-27T10:48:50Z,2697,286,2005-07-28T10:34:50Z,1,2020-02-15T06:59:41Z +7255,2005-07-27T10:49:54Z,2101,502,2005-07-31T10:40:54Z,2,2020-02-15T06:59:41Z +7256,2005-07-27T10:58:32Z,4275,363,2005-07-29T08:58:32Z,2,2020-02-15T06:59:41Z +7257,2005-07-27T11:04:17Z,3302,480,2005-08-04T12:32:17Z,2,2020-02-15T06:59:41Z +7258,2005-07-27T11:05:54Z,2079,494,2005-08-02T11:36:54Z,1,2020-02-15T06:59:41Z +7259,2005-07-27T11:06:00Z,2345,406,2005-08-02T06:44:00Z,2,2020-02-15T06:59:41Z +7260,2005-07-27T11:09:28Z,3827,434,2005-08-03T09:41:28Z,1,2020-02-15T06:59:41Z +7261,2005-07-27T11:15:01Z,942,172,2005-07-28T09:42:01Z,2,2020-02-15T06:59:41Z +7262,2005-07-27T11:15:36Z,4097,522,2005-07-30T10:49:36Z,2,2020-02-15T06:59:41Z +7263,2005-07-27T11:17:22Z,725,324,2005-08-04T10:59:22Z,1,2020-02-15T06:59:41Z +7264,2005-07-27T11:18:58Z,2391,299,2005-08-03T07:43:58Z,2,2020-02-15T06:59:41Z +7265,2005-07-27T11:19:01Z,3465,290,2005-08-01T09:29:01Z,1,2020-02-15T06:59:41Z +7266,2005-07-27T11:22:17Z,3379,24,2005-08-04T05:45:17Z,1,2020-02-15T06:59:41Z +7267,2005-07-27T11:22:55Z,3661,122,2005-08-01T08:13:55Z,1,2020-02-15T06:59:41Z +7268,2005-07-27T11:23:09Z,2740,260,2005-08-01T12:42:09Z,2,2020-02-15T06:59:41Z +7269,2005-07-27T11:23:47Z,2089,209,2005-07-31T13:10:47Z,1,2020-02-15T06:59:41Z +7270,2005-07-27T11:29:02Z,1888,526,2005-08-05T08:04:02Z,1,2020-02-15T06:59:41Z +7271,2005-07-27T11:29:11Z,858,469,2005-08-05T15:33:11Z,1,2020-02-15T06:59:41Z +7272,2005-07-27T11:30:20Z,250,364,2005-07-29T17:16:20Z,2,2020-02-15T06:59:41Z +7273,2005-07-27T11:31:22Z,2465,1,2005-07-31T06:50:22Z,1,2020-02-15T06:59:41Z +7274,2005-07-27T11:35:34Z,4087,180,2005-08-01T07:10:34Z,1,2020-02-15T06:59:41Z +7275,2005-07-27T11:39:08Z,775,323,2005-07-30T13:37:08Z,2,2020-02-15T06:59:41Z +7276,2005-07-27T11:41:57Z,1665,314,2005-08-01T10:39:57Z,1,2020-02-15T06:59:41Z +7277,2005-07-27T11:48:37Z,1544,67,2005-08-03T07:20:37Z,1,2020-02-15T06:59:41Z +7278,2005-07-27T11:50:34Z,531,592,2005-08-01T10:22:34Z,1,2020-02-15T06:59:41Z +7279,2005-07-27T11:50:47Z,1424,12,2005-07-30T11:19:47Z,2,2020-02-15T06:59:41Z +7280,2005-07-27T11:50:52Z,236,342,2005-07-30T15:53:52Z,2,2020-02-15T06:59:41Z +7281,2005-07-27T11:59:20Z,1350,491,2005-08-04T12:48:20Z,1,2020-02-15T06:59:41Z +7282,2005-07-27T12:00:19Z,4418,276,2005-08-04T14:48:19Z,2,2020-02-15T06:59:41Z +7283,2005-07-27T12:02:41Z,3101,508,2005-08-05T07:25:41Z,1,2020-02-15T06:59:41Z +7284,2005-07-27T12:12:04Z,2336,52,2005-07-31T11:17:04Z,2,2020-02-15T06:59:41Z +7285,2005-07-27T12:14:06Z,2855,498,2005-08-03T14:57:06Z,2,2020-02-15T06:59:41Z +7286,2005-07-27T12:23:49Z,3452,498,2005-08-04T07:57:49Z,1,2020-02-15T06:59:41Z +7287,2005-07-27T12:24:12Z,926,198,2005-07-31T15:34:12Z,1,2020-02-15T06:59:41Z +7288,2005-07-27T12:24:59Z,45,226,2005-08-02T15:52:59Z,2,2020-02-15T06:59:41Z +7289,2005-07-27T12:26:51Z,2157,187,2005-08-02T18:20:51Z,2,2020-02-15T06:59:41Z +7290,2005-07-27T12:28:45Z,3652,423,2005-08-01T16:18:45Z,1,2020-02-15T06:59:41Z +7291,2005-07-27T12:30:47Z,310,263,2005-08-01T12:45:47Z,1,2020-02-15T06:59:41Z +7292,2005-07-27T12:34:14Z,795,468,2005-08-01T18:16:14Z,2,2020-02-15T06:59:41Z +7293,2005-07-27T12:37:28Z,3333,5,2005-07-30T15:12:28Z,2,2020-02-15T06:59:41Z +7294,2005-07-27T12:38:14Z,487,313,2005-07-30T13:01:14Z,1,2020-02-15T06:59:41Z +7295,2005-07-27T12:38:47Z,3396,462,2005-08-05T10:12:47Z,1,2020-02-15T06:59:41Z +7296,2005-07-27T12:39:48Z,1681,400,2005-08-04T18:24:48Z,2,2020-02-15T06:59:41Z +7297,2005-07-27T12:39:48Z,1855,135,2005-07-29T17:50:48Z,2,2020-02-15T06:59:41Z +7298,2005-07-27T12:45:14Z,1653,121,2005-07-30T07:02:14Z,1,2020-02-15T06:59:41Z +7299,2005-07-27T12:49:56Z,3002,286,2005-08-03T12:25:56Z,1,2020-02-15T06:59:41Z +7300,2005-07-27T12:50:17Z,4561,272,2005-08-04T18:43:17Z,1,2020-02-15T06:59:41Z +7301,2005-07-27T12:50:23Z,3367,93,2005-08-01T09:43:23Z,2,2020-02-15T06:59:41Z +7302,2005-07-27T12:52:13Z,4539,477,2005-07-29T15:13:13Z,2,2020-02-15T06:59:41Z +7303,2005-07-27T12:54:39Z,1398,163,2005-07-31T09:26:39Z,2,2020-02-15T06:59:41Z +7304,2005-07-27T12:56:56Z,1162,74,2005-08-05T09:19:56Z,2,2020-02-15T06:59:41Z +7305,2005-07-27T12:57:06Z,2464,229,2005-07-30T13:13:06Z,2,2020-02-15T06:59:41Z +7306,2005-07-27T12:57:26Z,2269,207,2005-08-03T09:35:26Z,2,2020-02-15T06:59:41Z +7307,2005-07-27T12:59:10Z,3882,595,2005-07-29T11:35:10Z,1,2020-02-15T06:59:41Z +7308,2005-07-27T13:00:25Z,1452,229,2005-08-03T16:04:25Z,1,2020-02-15T06:59:41Z +7309,2005-07-27T13:00:29Z,633,317,2005-07-29T12:15:29Z,2,2020-02-15T06:59:41Z +7310,2005-07-27T13:00:55Z,3711,103,2005-07-28T17:54:55Z,1,2020-02-15T06:59:41Z +7311,2005-07-27T13:02:54Z,2807,582,2005-08-04T09:52:54Z,1,2020-02-15T06:59:41Z +7312,2005-07-27T13:03:14Z,228,543,2005-07-31T07:56:14Z,2,2020-02-15T06:59:41Z +7313,2005-07-27T13:11:57Z,1884,396,2005-08-02T07:31:57Z,1,2020-02-15T06:59:41Z +7314,2005-07-27T13:13:32Z,1376,11,2005-08-03T09:24:32Z,2,2020-02-15T06:59:41Z +7315,2005-07-27T13:14:56Z,974,208,2005-08-03T08:44:56Z,2,2020-02-15T06:59:41Z +7316,2005-07-27T13:19:03Z,3344,114,2005-07-28T07:43:03Z,2,2020-02-15T06:59:41Z +7317,2005-07-27T13:19:41Z,1518,443,2005-07-29T16:16:41Z,2,2020-02-15T06:59:41Z +7318,2005-07-27T13:25:31Z,1954,301,2005-07-31T11:44:31Z,2,2020-02-15T06:59:41Z +7319,2005-07-27T13:31:25Z,2370,576,2005-08-04T07:31:25Z,1,2020-02-15T06:59:41Z +7320,2005-07-27T13:33:35Z,4348,241,2005-07-31T13:22:35Z,2,2020-02-15T06:59:41Z +7321,2005-07-27T13:33:38Z,3525,38,2005-08-03T07:35:38Z,2,2020-02-15T06:59:41Z +7322,2005-07-27T13:37:26Z,1810,508,2005-08-03T18:00:26Z,2,2020-02-15T06:59:41Z +7323,2005-07-27T13:39:40Z,3830,125,2005-07-29T08:45:40Z,2,2020-02-15T06:59:41Z +7324,2005-07-27T13:42:39Z,2572,462,2005-08-04T10:33:39Z,2,2020-02-15T06:59:41Z +7325,2005-07-27T13:46:55Z,1727,289,2005-07-28T14:21:55Z,1,2020-02-15T06:59:41Z +7326,2005-07-27T13:50:40Z,2844,432,2005-07-30T08:16:40Z,1,2020-02-15T06:59:41Z +7327,2005-07-27T13:53:26Z,4074,508,2005-08-04T17:58:26Z,2,2020-02-15T06:59:41Z +7328,2005-07-27T13:55:18Z,663,26,2005-08-01T19:52:18Z,1,2020-02-15T06:59:41Z +7329,2005-07-27T13:55:34Z,906,226,2005-08-04T15:15:34Z,1,2020-02-15T06:59:41Z +7330,2005-07-27T13:56:46Z,3705,237,2005-08-04T07:56:46Z,1,2020-02-15T06:59:41Z +7331,2005-07-27T13:57:50Z,2090,60,2005-07-31T08:59:50Z,1,2020-02-15T06:59:41Z +7332,2005-07-27T13:58:57Z,1761,151,2005-08-02T12:40:57Z,1,2020-02-15T06:59:41Z +7333,2005-07-27T13:59:11Z,1331,230,2005-07-30T16:04:11Z,1,2020-02-15T06:59:41Z +7334,2005-07-27T13:59:58Z,3006,461,2005-07-29T11:33:58Z,1,2020-02-15T06:59:41Z +7335,2005-07-27T14:06:50Z,1219,219,2005-08-05T18:27:50Z,2,2020-02-15T06:59:41Z +7336,2005-07-27T14:11:45Z,2706,46,2005-07-28T11:00:45Z,2,2020-02-15T06:59:41Z +7337,2005-07-27T14:12:04Z,3314,525,2005-08-03T14:57:04Z,2,2020-02-15T06:59:41Z +7338,2005-07-27T14:13:34Z,107,251,2005-08-03T18:36:34Z,2,2020-02-15T06:59:41Z +7339,2005-07-27T14:17:48Z,3343,316,2005-07-31T12:47:48Z,2,2020-02-15T06:59:41Z +7340,2005-07-27T14:18:10Z,1344,567,2005-07-30T09:57:10Z,1,2020-02-15T06:59:41Z +7341,2005-07-27T14:23:55Z,3567,498,2005-07-28T14:11:55Z,2,2020-02-15T06:59:41Z +7342,2005-07-27T14:25:17Z,4083,504,2005-08-04T10:02:17Z,2,2020-02-15T06:59:41Z +7343,2005-07-27T14:27:13Z,1177,526,2005-07-30T09:27:13Z,2,2020-02-15T06:59:41Z +7344,2005-07-27T14:29:28Z,1714,366,2005-07-31T15:36:28Z,1,2020-02-15T06:59:41Z +7345,2005-07-27T14:29:53Z,2434,572,2005-08-03T18:38:53Z,2,2020-02-15T06:59:41Z +7346,2005-07-27T14:30:42Z,741,2,2005-08-02T16:48:42Z,1,2020-02-15T06:59:41Z +7347,2005-07-27T14:31:24Z,3779,225,2005-07-31T16:19:24Z,1,2020-02-15T06:59:41Z +7348,2005-07-27T14:32:32Z,3238,43,2005-07-28T17:05:32Z,1,2020-02-15T06:59:41Z +7349,2005-07-27T14:33:00Z,861,195,2005-08-01T15:01:00Z,2,2020-02-15T06:59:41Z +7350,2005-07-27T14:34:14Z,737,410,2005-08-02T19:19:14Z,2,2020-02-15T06:59:41Z +7351,2005-07-27T14:37:36Z,2147,445,2005-07-30T09:58:36Z,2,2020-02-15T06:59:41Z +7352,2005-07-27T14:38:29Z,35,429,2005-07-28T14:24:29Z,1,2020-02-15T06:59:41Z +7353,2005-07-27T14:38:39Z,1308,357,2005-07-31T19:50:39Z,1,2020-02-15T06:59:41Z +7354,2005-07-27T14:42:11Z,2395,598,2005-08-03T18:19:11Z,2,2020-02-15T06:59:41Z +7355,2005-07-27T14:45:59Z,3803,115,2005-08-02T17:23:59Z,2,2020-02-15T06:59:41Z +7356,2005-07-27T14:47:35Z,309,397,2005-07-28T18:10:35Z,2,2020-02-15T06:59:41Z +7357,2005-07-27T14:48:31Z,1917,438,2005-08-02T18:07:31Z,2,2020-02-15T06:59:41Z +7358,2005-07-27T14:49:44Z,175,245,2005-07-28T20:00:44Z,1,2020-02-15T06:59:41Z +7359,2005-07-27T14:51:04Z,174,183,2005-07-31T16:03:04Z,2,2020-02-15T06:59:41Z +7360,2005-07-27T14:52:06Z,1312,467,2005-08-02T12:24:06Z,2,2020-02-15T06:59:41Z +7361,2005-07-27T14:53:55Z,4567,463,2005-07-31T19:48:55Z,2,2020-02-15T06:59:41Z +7362,2005-07-27T14:58:27Z,1902,419,2005-08-01T11:51:27Z,1,2020-02-15T06:59:41Z +7363,2005-07-27T14:58:29Z,1649,407,2005-08-05T09:02:29Z,1,2020-02-15T06:59:41Z +7364,2005-07-27T14:58:40Z,3046,592,2005-08-03T09:01:40Z,2,2020-02-15T06:59:41Z +7365,2005-07-27T15:00:20Z,3283,450,2005-07-30T12:58:20Z,1,2020-02-15T06:59:41Z +7366,2005-07-27T15:01:17Z,461,357,2005-08-04T20:28:17Z,1,2020-02-15T06:59:41Z +7367,2005-07-27T15:05:45Z,1738,383,2005-08-02T13:46:45Z,1,2020-02-15T06:59:41Z +7368,2005-07-27T15:06:05Z,2265,286,2005-07-31T14:10:05Z,2,2020-02-15T06:59:41Z +7369,2005-07-27T15:07:58Z,3889,139,2005-07-30T09:16:58Z,2,2020-02-15T06:59:41Z +7370,2005-07-27T15:15:53Z,2022,89,2005-08-03T19:53:53Z,2,2020-02-15T06:59:41Z +7371,2005-07-27T15:18:42Z,1807,577,2005-08-01T09:58:42Z,1,2020-02-15T06:59:41Z +7372,2005-07-27T15:18:42Z,3202,584,2005-08-01T15:18:42Z,2,2020-02-15T06:59:41Z +7373,2005-07-27T15:19:33Z,3074,488,2005-08-04T10:45:33Z,1,2020-02-15T06:59:41Z +7374,2005-07-27T15:20:57Z,3184,438,2005-08-05T13:09:57Z,2,2020-02-15T06:59:41Z +7375,2005-07-27T15:22:33Z,2970,381,2005-08-01T20:06:33Z,1,2020-02-15T06:59:41Z +7376,2005-07-27T15:23:02Z,488,2,2005-08-04T10:35:02Z,2,2020-02-15T06:59:41Z +7377,2005-07-27T15:31:28Z,1369,588,2005-08-02T19:59:28Z,2,2020-02-15T06:59:41Z +7378,2005-07-27T15:31:33Z,3297,144,2005-08-03T17:15:33Z,2,2020-02-15T06:59:41Z +7379,2005-07-27T15:36:43Z,424,415,2005-07-30T16:37:43Z,2,2020-02-15T06:59:41Z +7380,2005-07-27T15:37:01Z,988,348,2005-08-03T19:24:01Z,1,2020-02-15T06:59:41Z +7381,2005-07-27T15:40:26Z,1595,483,2005-08-02T17:26:26Z,2,2020-02-15T06:59:41Z +7382,2005-07-27T15:43:15Z,356,518,2005-07-28T11:18:15Z,2,2020-02-15T06:59:41Z +7383,2005-07-27T15:46:53Z,3860,50,2005-08-03T11:10:53Z,1,2020-02-15T06:59:41Z +7384,2005-07-27T15:49:45Z,3573,585,2005-08-04T15:17:45Z,1,2020-02-15T06:59:41Z +7385,2005-07-27T15:49:46Z,2996,56,2005-07-28T13:50:46Z,2,2020-02-15T06:59:41Z +7386,2005-07-27T15:52:10Z,3569,190,2005-08-04T15:13:10Z,1,2020-02-15T06:59:41Z +7387,2005-07-27T15:54:19Z,3274,233,2005-08-03T14:46:19Z,1,2020-02-15T06:59:41Z +7388,2005-07-27T15:54:19Z,4559,455,2005-08-01T17:02:19Z,2,2020-02-15T06:59:41Z +7389,2005-07-27T15:56:15Z,3822,156,2005-07-30T21:28:15Z,2,2020-02-15T06:59:41Z +7390,2005-07-27T15:59:19Z,1723,230,2005-08-04T10:09:19Z,2,2020-02-15T06:59:41Z +7391,2005-07-27T16:00:00Z,1153,531,2005-08-04T18:07:00Z,2,2020-02-15T06:59:41Z +7392,2005-07-27T16:01:05Z,3159,204,2005-08-01T17:23:05Z,2,2020-02-15T06:59:41Z +7393,2005-07-27T16:02:52Z,2369,181,2005-08-02T13:24:52Z,1,2020-02-15T06:59:41Z +7394,2005-07-27T16:03:08Z,2399,30,2005-08-04T11:27:08Z,2,2020-02-15T06:59:41Z +7395,2005-07-27T16:03:11Z,2888,411,2005-07-31T20:26:11Z,2,2020-02-15T06:59:41Z +7396,2005-07-27T16:03:53Z,3346,595,2005-08-05T10:36:53Z,2,2020-02-15T06:59:41Z +7397,2005-07-27T16:05:00Z,4474,245,2005-08-01T20:29:00Z,1,2020-02-15T06:59:41Z +7398,2005-07-27T16:07:22Z,1572,51,2005-08-05T16:16:22Z,1,2020-02-15T06:59:41Z +7399,2005-07-27T16:16:02Z,1682,526,2005-08-03T18:02:02Z,2,2020-02-15T06:59:41Z +7400,2005-07-27T16:16:37Z,2874,133,2005-07-31T12:34:37Z,2,2020-02-15T06:59:41Z +7401,2005-07-27T16:17:55Z,2759,583,2005-08-04T15:48:55Z,1,2020-02-15T06:59:41Z +7402,2005-07-27T16:19:40Z,2707,287,2005-08-05T14:48:40Z,2,2020-02-15T06:59:41Z +7403,2005-07-27T16:22:09Z,2551,163,2005-08-01T15:32:09Z,1,2020-02-15T06:59:41Z +7404,2005-07-27T16:24:43Z,2359,190,2005-07-29T11:40:43Z,2,2020-02-15T06:59:41Z +7405,2005-07-27T16:25:11Z,2312,42,2005-08-01T12:33:11Z,2,2020-02-15T06:59:41Z +7406,2005-07-27T16:25:45Z,1412,77,2005-08-05T20:39:45Z,1,2020-02-15T06:59:41Z +7407,2005-07-27T16:29:04Z,3093,410,2005-08-01T17:47:04Z,2,2020-02-15T06:59:41Z +7408,2005-07-27T16:31:40Z,625,371,2005-07-31T11:56:40Z,2,2020-02-15T06:59:41Z +7409,2005-07-27T16:38:24Z,2352,585,2005-07-30T18:06:24Z,1,2020-02-15T06:59:41Z +7410,2005-07-27T16:41:59Z,1559,337,2005-07-29T22:11:59Z,1,2020-02-15T06:59:41Z +7411,2005-07-27T16:42:30Z,515,302,2005-08-05T17:38:30Z,1,2020-02-15T06:59:41Z +7412,2005-07-27T16:44:34Z,950,582,2005-08-04T15:06:34Z,2,2020-02-15T06:59:41Z +7413,2005-07-27T16:45:40Z,2909,254,2005-07-31T12:02:40Z,1,2020-02-15T06:59:41Z +7414,2005-07-27T16:46:07Z,3276,265,2005-08-02T20:04:07Z,1,2020-02-15T06:59:41Z +7415,2005-07-27T16:50:59Z,4410,294,2005-08-02T11:21:59Z,1,2020-02-15T06:59:41Z +7416,2005-07-27T16:55:25Z,653,350,2005-07-29T11:27:25Z,1,2020-02-15T06:59:41Z +7417,2005-07-27T16:58:33Z,2952,214,2005-07-30T22:17:33Z,1,2020-02-15T06:59:41Z +7418,2005-07-27T16:59:09Z,3029,332,2005-07-29T15:08:09Z,2,2020-02-15T06:59:41Z +7419,2005-07-27T17:04:15Z,3454,352,2005-08-05T21:54:15Z,2,2020-02-15T06:59:41Z +7420,2005-07-27T17:09:39Z,3505,547,2005-07-30T12:30:39Z,2,2020-02-15T06:59:41Z +7421,2005-07-27T17:10:05Z,3548,70,2005-08-05T17:55:05Z,1,2020-02-15T06:59:41Z +7422,2005-07-27T17:10:42Z,3954,286,2005-08-03T19:32:42Z,1,2020-02-15T06:59:41Z +7423,2005-07-27T17:11:47Z,666,277,2005-07-29T12:29:47Z,2,2020-02-15T06:59:41Z +7424,2005-07-27T17:14:19Z,660,558,2005-08-01T19:21:19Z,2,2020-02-15T06:59:41Z +7425,2005-07-27T17:18:35Z,435,263,2005-08-02T11:18:35Z,1,2020-02-15T06:59:41Z +7426,2005-07-27T17:19:46Z,4420,239,2005-07-29T21:41:46Z,1,2020-02-15T06:59:41Z +7427,2005-07-27T17:20:16Z,2548,442,2005-08-03T20:38:16Z,2,2020-02-15T06:59:41Z +7428,2005-07-27T17:21:52Z,243,90,2005-08-05T17:13:52Z,2,2020-02-15T06:59:41Z +7429,2005-07-27T17:24:50Z,2160,515,2005-08-05T23:02:50Z,1,2020-02-15T06:59:41Z +7430,2005-07-27T17:26:14Z,4205,562,2005-08-01T13:02:14Z,2,2020-02-15T06:59:41Z +7431,2005-07-27T17:27:27Z,3931,589,2005-07-31T18:40:27Z,1,2020-02-15T06:59:41Z +7432,2005-07-27T17:31:40Z,3169,132,2005-07-28T17:44:40Z,2,2020-02-15T06:59:41Z +7433,2005-07-27T17:32:20Z,1748,282,2005-08-01T18:49:20Z,1,2020-02-15T06:59:41Z +7434,2005-07-27T17:34:40Z,2927,241,2005-07-29T15:01:40Z,1,2020-02-15T06:59:41Z +7435,2005-07-27T17:38:44Z,1574,380,2005-07-30T16:57:44Z,1,2020-02-15T06:59:41Z +7436,2005-07-27T17:39:12Z,299,45,2005-08-01T12:40:12Z,2,2020-02-15T06:59:41Z +7437,2005-07-27T17:39:18Z,2617,135,2005-07-28T18:33:18Z,2,2020-02-15T06:59:41Z +7438,2005-07-27T17:40:40Z,1364,52,2005-08-05T15:25:40Z,1,2020-02-15T06:59:41Z +7439,2005-07-27T17:42:31Z,4091,102,2005-08-05T16:34:31Z,1,2020-02-15T06:59:41Z +7440,2005-07-27T17:43:27Z,1476,484,2005-08-03T22:12:27Z,1,2020-02-15T06:59:41Z +7441,2005-07-27T17:46:53Z,4039,198,2005-07-31T23:05:53Z,1,2020-02-15T06:59:41Z +7442,2005-07-27T17:47:00Z,2471,105,2005-07-28T21:37:00Z,1,2020-02-15T06:59:41Z +7443,2005-07-27T17:47:43Z,703,380,2005-07-29T13:15:43Z,1,2020-02-15T06:59:41Z +7444,2005-07-27T17:49:16Z,120,531,2005-07-28T15:05:16Z,1,2020-02-15T06:59:41Z +7445,2005-07-27T17:57:15Z,4115,394,2005-07-31T20:24:15Z,1,2020-02-15T06:59:41Z +7446,2005-07-27T18:00:24Z,2337,486,2005-07-29T13:40:24Z,1,2020-02-15T06:59:41Z +7447,2005-07-27T18:02:08Z,1795,107,2005-07-29T21:15:08Z,1,2020-02-15T06:59:41Z +7448,2005-07-27T18:06:30Z,3584,175,2005-07-29T15:43:30Z,1,2020-02-15T06:59:41Z +7449,2005-07-27T18:17:41Z,2084,421,2005-08-01T18:52:41Z,1,2020-02-15T06:59:41Z +7450,2005-07-27T18:18:35Z,3496,191,2005-08-04T15:18:35Z,1,2020-02-15T06:59:41Z +7451,2005-07-27T18:18:41Z,2382,29,2005-08-03T13:55:41Z,2,2020-02-15T06:59:41Z +7452,2005-07-27T18:26:39Z,3482,285,2005-08-04T17:35:39Z,2,2020-02-15T06:59:41Z +7453,2005-07-27T18:27:13Z,2992,29,2005-07-29T23:52:13Z,1,2020-02-15T06:59:41Z +7454,2005-07-27T18:27:26Z,3248,75,2005-07-30T23:50:26Z,1,2020-02-15T06:59:41Z +7455,2005-07-27T18:34:41Z,3815,405,2005-07-31T17:32:41Z,1,2020-02-15T06:59:41Z +7456,2005-07-27T18:34:53Z,1959,501,2005-07-29T17:46:53Z,2,2020-02-15T06:59:41Z +7457,2005-07-27T18:35:17Z,3635,510,2005-07-30T12:41:17Z,2,2020-02-15T06:59:41Z +7458,2005-07-27T18:36:17Z,2964,327,2005-07-31T22:43:17Z,1,2020-02-15T06:59:41Z +7459,2005-07-27T18:40:20Z,2053,2,2005-08-02T21:07:20Z,2,2020-02-15T06:59:41Z +7460,2005-07-27T18:41:35Z,919,442,2005-07-29T15:16:35Z,2,2020-02-15T06:59:41Z +7461,2005-07-27T18:45:15Z,1236,476,2005-07-29T17:19:15Z,1,2020-02-15T06:59:41Z +7462,2005-07-27T18:47:47Z,878,114,2005-07-29T20:46:47Z,2,2020-02-15T06:59:41Z +7463,2005-07-27T18:48:32Z,3676,284,2005-07-29T23:54:32Z,2,2020-02-15T06:59:41Z +7464,2005-07-27T18:49:42Z,845,31,2005-07-28T20:45:42Z,2,2020-02-15T06:59:41Z +7465,2005-07-27T18:50:30Z,2357,115,2005-07-30T20:55:30Z,1,2020-02-15T06:59:41Z +7466,2005-07-27T18:51:17Z,2791,53,2005-07-31T16:58:17Z,1,2020-02-15T06:59:41Z +7467,2005-07-27T18:51:54Z,3869,240,2005-08-03T23:27:54Z,2,2020-02-15T06:59:41Z +7468,2005-07-27T18:52:27Z,3166,113,2005-08-03T19:29:27Z,2,2020-02-15T06:59:41Z +7469,2005-07-27T18:57:40Z,3723,189,2005-07-31T00:17:40Z,1,2020-02-15T06:59:41Z +7470,2005-07-27T19:01:03Z,289,564,2005-08-05T19:16:03Z,2,2020-02-15T06:59:41Z +7471,2005-07-27T19:02:19Z,1776,95,2005-07-30T15:12:19Z,1,2020-02-15T06:59:41Z +7472,2005-07-27T19:04:19Z,1535,103,2005-08-03T00:08:19Z,2,2020-02-15T06:59:41Z +7473,2005-07-27T19:05:40Z,401,341,2005-08-05T14:47:40Z,1,2020-02-15T06:59:41Z +7474,2005-07-27T19:07:17Z,2971,110,2005-07-30T00:37:17Z,1,2020-02-15T06:59:41Z +7475,2005-07-27T19:07:43Z,1670,255,2005-08-04T22:12:43Z,2,2020-02-15T06:59:41Z +7476,2005-07-27T19:08:56Z,2288,64,2005-07-31T16:36:56Z,2,2020-02-15T06:59:41Z +7477,2005-07-27T19:11:03Z,2692,355,2005-08-02T19:25:03Z,1,2020-02-15T06:59:41Z +7478,2005-07-27T19:16:02Z,3791,521,2005-08-04T22:30:02Z,2,2020-02-15T06:59:41Z +7479,2005-07-27T19:18:17Z,218,434,2005-07-30T18:55:17Z,1,2020-02-15T06:59:41Z +7480,2005-07-27T19:19:53Z,452,344,2005-08-02T01:01:53Z,1,2020-02-15T06:59:41Z +7481,2005-07-27T19:20:25Z,1804,240,2005-07-29T19:07:25Z,2,2020-02-15T06:59:41Z +7482,2005-07-27T19:24:16Z,485,348,2005-08-05T18:49:16Z,2,2020-02-15T06:59:41Z +7483,2005-07-27T19:25:00Z,3678,106,2005-07-29T21:19:00Z,2,2020-02-15T06:59:41Z +7484,2005-07-27T19:28:17Z,2746,211,2005-07-31T20:05:17Z,2,2020-02-15T06:59:41Z +7485,2005-07-27T19:29:09Z,631,362,2005-07-30T16:28:09Z,1,2020-02-15T06:59:41Z +7486,2005-07-27T19:29:24Z,4362,393,2005-08-02T20:46:24Z,2,2020-02-15T06:59:41Z +7487,2005-07-27T19:32:45Z,4451,58,2005-07-28T15:11:45Z,1,2020-02-15T06:59:41Z +7488,2005-07-27T19:36:15Z,554,365,2005-08-05T14:14:15Z,1,2020-02-15T06:59:41Z +7489,2005-07-27T19:39:38Z,3732,16,2005-07-30T23:10:38Z,2,2020-02-15T06:59:41Z +7490,2005-07-27T19:48:12Z,4503,595,2005-08-04T17:15:12Z,1,2020-02-15T06:59:41Z +7491,2005-07-27T19:53:23Z,4261,239,2005-07-28T23:25:23Z,2,2020-02-15T06:59:41Z +7492,2005-07-27T19:54:18Z,908,155,2005-07-31T15:36:18Z,2,2020-02-15T06:59:41Z +7493,2005-07-27T19:55:46Z,2868,177,2005-08-02T19:46:46Z,2,2020-02-15T06:59:41Z +7494,2005-07-27T19:56:31Z,2259,60,2005-07-30T14:28:31Z,1,2020-02-15T06:59:41Z +7495,2005-07-27T20:01:20Z,3446,426,2005-07-30T16:40:20Z,1,2020-02-15T06:59:41Z +7496,2005-07-27T20:04:05Z,2449,257,2005-08-02T20:12:05Z,1,2020-02-15T06:59:41Z +7497,2005-07-27T20:05:27Z,286,387,2005-07-30T22:47:27Z,1,2020-02-15T06:59:41Z +7498,2005-07-27T20:09:31Z,1144,455,2005-07-29T23:38:31Z,1,2020-02-15T06:59:41Z +7499,2005-07-27T20:10:28Z,3503,157,2005-07-30T16:24:28Z,1,2020-02-15T06:59:41Z +7500,2005-07-27T20:16:03Z,609,160,2005-07-29T18:50:03Z,1,2020-02-15T06:59:41Z +7501,2005-07-27T20:16:59Z,1464,587,2005-08-04T00:11:59Z,2,2020-02-15T06:59:41Z +7502,2005-07-27T20:19:08Z,3229,303,2005-07-28T18:32:08Z,2,2020-02-15T06:59:41Z +7503,2005-07-27T20:23:12Z,579,3,2005-08-05T18:46:12Z,2,2020-02-15T06:59:41Z +7504,2005-07-27T20:24:31Z,3354,283,2005-07-30T21:25:31Z,2,2020-02-15T06:59:41Z +7505,2005-07-27T20:28:03Z,1342,209,2005-08-03T17:04:03Z,1,2020-02-15T06:59:41Z +7506,2005-07-27T20:28:34Z,2091,527,2005-08-05T18:14:34Z,1,2020-02-15T06:59:41Z +7507,2005-07-27T20:31:48Z,3618,512,2005-08-02T17:27:48Z,1,2020-02-15T06:59:41Z +7508,2005-07-27T20:33:08Z,3401,465,2005-08-01T01:29:08Z,1,2020-02-15T06:59:41Z +7509,2005-07-27T20:37:19Z,4134,228,2005-08-04T19:35:19Z,2,2020-02-15T06:59:41Z +7510,2005-07-27T20:37:57Z,1617,257,2005-08-01T17:14:57Z,2,2020-02-15T06:59:41Z +7511,2005-07-27T20:38:40Z,4044,591,2005-08-04T22:36:40Z,2,2020-02-15T06:59:41Z +7512,2005-07-27T20:40:40Z,1343,352,2005-08-05T01:44:40Z,1,2020-02-15T06:59:41Z +7513,2005-07-27T20:51:04Z,939,411,2005-08-03T20:15:04Z,2,2020-02-15T06:59:41Z +7514,2005-07-27T20:51:49Z,400,44,2005-07-29T18:21:49Z,2,2020-02-15T06:59:41Z +7515,2005-07-27T20:52:37Z,1211,390,2005-08-02T20:17:37Z,2,2020-02-15T06:59:41Z +7516,2005-07-27T20:55:28Z,2178,134,2005-07-30T00:50:28Z,1,2020-02-15T06:59:41Z +7517,2005-07-27T20:57:07Z,3177,41,2005-08-04T15:08:07Z,1,2020-02-15T06:59:41Z +7518,2005-07-27T21:01:16Z,2676,257,2005-08-03T15:26:16Z,1,2020-02-15T06:59:41Z +7519,2005-07-27T21:01:41Z,4009,124,2005-08-05T19:15:41Z,1,2020-02-15T06:59:41Z +7520,2005-07-27T21:02:02Z,3875,191,2005-07-28T18:18:02Z,1,2020-02-15T06:59:41Z +7521,2005-07-27T21:04:42Z,3144,176,2005-08-03T16:06:42Z,1,2020-02-15T06:59:41Z +7522,2005-07-27T21:11:03Z,2038,478,2005-08-02T16:40:03Z,1,2020-02-15T06:59:41Z +7523,2005-07-27T21:11:23Z,4153,410,2005-07-28T16:37:23Z,1,2020-02-15T06:59:41Z +7524,2005-07-27T21:11:44Z,4295,225,2005-08-03T02:17:44Z,1,2020-02-15T06:59:41Z +7525,2005-07-27T21:13:28Z,4084,281,2005-08-04T19:44:28Z,2,2020-02-15T06:59:41Z +7526,2005-07-27T21:13:47Z,696,44,2005-08-05T15:23:47Z,2,2020-02-15T06:59:41Z +7527,2005-07-27T21:14:28Z,2124,426,2005-08-05T21:08:28Z,1,2020-02-15T06:59:41Z +7528,2005-07-27T21:15:25Z,1218,213,2005-08-03T19:12:25Z,1,2020-02-15T06:59:41Z +7529,2005-07-27T21:18:08Z,3644,145,2005-08-06T00:59:08Z,1,2020-02-15T06:59:41Z +7530,2005-07-27T21:18:58Z,3810,98,2005-07-31T01:51:58Z,2,2020-02-15T06:59:41Z +7531,2005-07-27T21:19:34Z,2393,221,2005-08-06T01:07:34Z,2,2020-02-15T06:59:41Z +7532,2005-07-27T21:20:52Z,677,34,2005-07-30T21:38:52Z,1,2020-02-15T06:59:41Z +7533,2005-07-27T21:24:33Z,1791,594,2005-08-05T16:33:33Z,2,2020-02-15T06:59:41Z +7534,2005-07-27T21:26:17Z,2276,282,2005-08-05T00:23:17Z,2,2020-02-15T06:59:41Z +7535,2005-07-27T21:32:39Z,772,123,2005-08-05T23:42:39Z,1,2020-02-15T06:59:41Z +7536,2005-07-27T21:34:09Z,3417,307,2005-08-02T03:26:09Z,1,2020-02-15T06:59:41Z +7537,2005-07-27T21:36:09Z,4456,269,2005-08-01T01:51:09Z,1,2020-02-15T06:59:41Z +7538,2005-07-27T21:38:04Z,2486,361,2005-08-02T03:14:04Z,1,2020-02-15T06:59:41Z +7539,2005-07-27T21:39:42Z,1849,423,2005-08-06T00:12:42Z,1,2020-02-15T06:59:41Z +7540,2005-07-27T21:39:55Z,2198,207,2005-08-04T18:10:55Z,2,2020-02-15T06:59:41Z +7541,2005-07-27T21:40:05Z,4100,206,2005-07-29T16:13:05Z,1,2020-02-15T06:59:41Z +7542,2005-07-27T21:43:04Z,1912,110,2005-07-30T00:02:04Z,1,2020-02-15T06:59:41Z +7543,2005-07-27T21:44:28Z,1289,526,2005-08-04T21:42:28Z,2,2020-02-15T06:59:41Z +7544,2005-07-27T21:47:37Z,766,249,2005-08-05T02:29:37Z,2,2020-02-15T06:59:41Z +7545,2005-07-27T21:48:03Z,2541,292,2005-08-01T22:23:03Z,2,2020-02-15T06:59:41Z +7546,2005-07-27T21:50:09Z,3683,494,2005-08-05T03:07:09Z,2,2020-02-15T06:59:41Z +7547,2005-07-27T21:51:48Z,1733,547,2005-08-06T01:05:48Z,2,2020-02-15T06:59:41Z +7548,2005-07-27T21:53:18Z,2194,484,2005-08-02T17:50:18Z,1,2020-02-15T06:59:41Z +7549,2005-07-27T21:53:21Z,1765,591,2005-08-05T18:53:21Z,1,2020-02-15T06:59:41Z +7550,2005-07-27T21:55:07Z,4488,71,2005-07-28T23:34:07Z,2,2020-02-15T06:59:41Z +7551,2005-07-27T21:59:15Z,2635,304,2005-07-31T19:54:15Z,2,2020-02-15T06:59:41Z +7552,2005-07-27T22:03:41Z,2166,16,2005-07-28T22:24:41Z,1,2020-02-15T06:59:41Z +7553,2005-07-27T22:11:36Z,1643,275,2005-08-03T17:52:36Z,1,2020-02-15T06:59:41Z +7554,2005-07-27T22:12:41Z,1805,135,2005-08-04T01:34:41Z,2,2020-02-15T06:59:41Z +7555,2005-07-27T22:17:05Z,3421,533,2005-08-02T02:50:05Z,2,2020-02-15T06:59:41Z +7556,2005-07-27T22:17:17Z,794,188,2005-07-28T19:17:17Z,2,2020-02-15T06:59:41Z +7557,2005-07-27T22:18:19Z,3152,131,2005-07-29T00:24:19Z,1,2020-02-15T06:59:41Z +7558,2005-07-27T22:19:08Z,550,80,2005-07-30T21:31:08Z,1,2020-02-15T06:59:41Z +7559,2005-07-27T22:20:03Z,661,149,2005-08-06T00:26:03Z,2,2020-02-15T06:59:41Z +7560,2005-07-27T22:20:17Z,3574,562,2005-08-02T23:00:17Z,2,2020-02-15T06:59:41Z +7561,2005-07-27T22:21:05Z,3433,291,2005-08-04T01:02:05Z,1,2020-02-15T06:59:41Z +7562,2005-07-27T22:25:15Z,4417,366,2005-08-01T01:21:15Z,2,2020-02-15T06:59:41Z +7563,2005-07-27T22:25:36Z,2709,453,2005-08-01T03:59:36Z,2,2020-02-15T06:59:41Z +7564,2005-07-27T22:31:17Z,2887,291,2005-08-01T01:05:17Z,2,2020-02-15T06:59:41Z +7565,2005-07-27T22:33:59Z,1028,114,2005-07-30T03:03:59Z,2,2020-02-15T06:59:41Z +7566,2005-07-27T22:34:45Z,1802,144,2005-08-01T22:20:45Z,1,2020-02-15T06:59:41Z +7567,2005-07-27T22:38:05Z,1066,504,2005-07-30T17:20:05Z,1,2020-02-15T06:59:41Z +7568,2005-07-27T22:38:53Z,1578,296,2005-07-29T00:51:53Z,1,2020-02-15T06:59:41Z +7569,2005-07-27T22:38:53Z,2315,528,2005-08-05T19:03:53Z,2,2020-02-15T06:59:41Z +7570,2005-07-27T22:40:06Z,3189,110,2005-07-28T23:14:06Z,1,2020-02-15T06:59:41Z +7571,2005-07-27T22:43:42Z,3850,368,2005-07-30T22:17:42Z,1,2020-02-15T06:59:41Z +7572,2005-07-27T22:44:29Z,3068,532,2005-08-01T03:04:29Z,1,2020-02-15T06:59:41Z +7573,2005-07-27T22:46:20Z,314,467,2005-08-04T01:55:20Z,1,2020-02-15T06:59:41Z +7574,2005-07-27T22:53:00Z,298,200,2005-07-29T18:39:00Z,2,2020-02-15T06:59:41Z +7575,2005-07-27T22:53:52Z,702,582,2005-07-29T02:02:52Z,1,2020-02-15T06:59:41Z +7576,2005-07-27T22:54:35Z,3374,446,2005-08-03T03:53:35Z,2,2020-02-15T06:59:41Z +7577,2005-07-27T22:56:07Z,2723,332,2005-08-05T21:23:07Z,2,2020-02-15T06:59:41Z +7578,2005-07-27T22:58:17Z,4210,332,2005-07-29T23:14:17Z,1,2020-02-15T06:59:41Z +7579,2005-07-27T23:06:41Z,501,352,2005-07-31T20:08:41Z,2,2020-02-15T06:59:41Z +7580,2005-07-27T23:07:40Z,338,28,2005-08-05T02:17:40Z,1,2020-02-15T06:59:41Z +7581,2005-07-27T23:14:35Z,2051,166,2005-07-29T21:30:35Z,1,2020-02-15T06:59:41Z +7582,2005-07-27T23:15:14Z,3941,128,2005-07-29T03:18:14Z,2,2020-02-15T06:59:41Z +7583,2005-07-27T23:15:22Z,2890,198,2005-08-04T04:39:22Z,2,2020-02-15T06:59:41Z +7584,2005-07-27T23:15:46Z,4390,338,2005-08-03T02:18:46Z,2,2020-02-15T06:59:41Z +7585,2005-07-27T23:18:22Z,467,440,2005-07-30T23:08:22Z,1,2020-02-15T06:59:41Z +7586,2005-07-27T23:19:29Z,15,316,2005-07-29T23:04:29Z,1,2020-02-15T06:59:41Z +7587,2005-07-27T23:23:03Z,655,113,2005-08-01T17:34:03Z,1,2020-02-15T06:59:41Z +7588,2005-07-27T23:23:31Z,4033,360,2005-08-04T02:54:31Z,1,2020-02-15T06:59:41Z +7589,2005-07-27T23:23:36Z,1569,32,2005-08-04T00:16:36Z,1,2020-02-15T06:59:41Z +7590,2005-07-27T23:24:24Z,2152,73,2005-07-28T19:53:24Z,2,2020-02-15T06:59:41Z +7591,2005-07-27T23:25:54Z,651,525,2005-08-02T22:54:54Z,1,2020-02-15T06:59:41Z +7592,2005-07-27T23:26:04Z,4105,316,2005-07-29T23:48:04Z,2,2020-02-15T06:59:41Z +7593,2005-07-27T23:28:47Z,1158,436,2005-08-02T19:51:47Z,1,2020-02-15T06:59:41Z +7594,2005-07-27T23:30:41Z,3230,424,2005-08-02T04:29:41Z,1,2020-02-15T06:59:41Z +7595,2005-07-27T23:32:23Z,4313,390,2005-08-03T05:28:23Z,1,2020-02-15T06:59:41Z +7596,2005-07-27T23:33:57Z,2097,275,2005-08-01T20:46:57Z,2,2020-02-15T06:59:41Z +7597,2005-07-27T23:35:49Z,2856,169,2005-07-30T21:38:49Z,1,2020-02-15T06:59:41Z +7598,2005-07-27T23:36:01Z,4545,438,2005-07-29T23:35:01Z,2,2020-02-15T06:59:41Z +7599,2005-07-27T23:38:46Z,3272,87,2005-07-28T22:52:46Z,1,2020-02-15T06:59:41Z +7600,2005-07-27T23:41:18Z,3492,107,2005-08-06T04:40:18Z,1,2020-02-15T06:59:41Z +7601,2005-07-27T23:48:15Z,903,228,2005-07-29T02:45:15Z,1,2020-02-15T06:59:41Z +7602,2005-07-27T23:48:35Z,2516,366,2005-08-04T17:58:35Z,1,2020-02-15T06:59:41Z +7603,2005-07-27T23:54:44Z,124,497,2005-07-29T01:24:44Z,1,2020-02-15T06:59:41Z +7604,2005-07-27T23:54:52Z,3720,406,2005-08-05T03:04:52Z,2,2020-02-15T06:59:41Z +7605,2005-07-27T23:57:01Z,1391,576,2005-08-03T04:11:01Z,1,2020-02-15T06:59:41Z +7606,2005-07-28T00:02:15Z,637,201,2005-07-29T03:14:15Z,2,2020-02-15T06:59:41Z +7607,2005-07-28T00:05:53Z,3914,293,2005-07-31T04:13:53Z,1,2020-02-15T06:59:41Z +7608,2005-07-28T00:08:36Z,1256,167,2005-07-28T18:13:36Z,1,2020-02-15T06:59:41Z +7609,2005-07-28T00:11:00Z,3655,179,2005-07-31T03:04:00Z,1,2020-02-15T06:59:41Z +7610,2005-07-28T00:11:35Z,1279,450,2005-07-31T00:33:35Z,1,2020-02-15T06:59:41Z +7611,2005-07-28T00:11:47Z,3347,467,2005-07-28T18:35:47Z,1,2020-02-15T06:59:41Z +7612,2005-07-28T00:11:55Z,1411,563,2005-07-30T00:47:55Z,1,2020-02-15T06:59:41Z +7613,2005-07-28T00:13:58Z,4253,202,2005-08-06T05:36:58Z,2,2020-02-15T06:59:41Z +7614,2005-07-28T00:14:38Z,3475,440,2005-07-29T18:18:38Z,1,2020-02-15T06:59:41Z +7615,2005-07-28T00:15:24Z,3884,373,2005-07-31T02:00:24Z,1,2020-02-15T06:59:41Z +7616,2005-07-28T00:15:26Z,3790,9,2005-07-30T21:52:26Z,1,2020-02-15T06:59:41Z +7617,2005-07-28T00:18:40Z,2904,340,2005-08-01T01:17:40Z,1,2020-02-15T06:59:41Z +7618,2005-07-28T00:24:14Z,774,271,2005-08-01T04:35:14Z,1,2020-02-15T06:59:41Z +7619,2005-07-28T00:25:41Z,1057,419,2005-07-30T04:35:41Z,2,2020-02-15T06:59:41Z +7620,2005-07-28T00:27:17Z,931,580,2005-07-31T02:04:17Z,1,2020-02-15T06:59:41Z +7621,2005-07-28T00:34:06Z,1833,88,2005-08-06T00:13:06Z,1,2020-02-15T06:59:41Z +7622,2005-07-28T00:37:34Z,4014,198,2005-07-31T23:27:34Z,2,2020-02-15T06:59:41Z +7623,2005-07-28T00:37:41Z,1146,459,2005-08-04T19:38:41Z,2,2020-02-15T06:59:41Z +7624,2005-07-28T00:37:44Z,2756,415,2005-07-30T21:26:44Z,1,2020-02-15T06:59:41Z +7625,2005-07-28T00:47:56Z,3129,382,2005-08-02T23:34:56Z,1,2020-02-15T06:59:41Z +7626,2005-07-28T00:49:01Z,4200,450,2005-07-31T00:43:01Z,1,2020-02-15T06:59:41Z +7627,2005-07-28T00:56:47Z,782,52,2005-08-02T04:16:47Z,1,2020-02-15T06:59:41Z +7628,2005-07-28T00:58:04Z,1240,516,2005-08-03T19:16:04Z,1,2020-02-15T06:59:41Z +7629,2005-07-28T01:00:09Z,2453,229,2005-07-30T06:49:09Z,1,2020-02-15T06:59:41Z +7630,2005-07-28T01:01:03Z,2798,351,2005-07-31T01:08:03Z,2,2020-02-15T06:59:41Z +7631,2005-07-28T01:01:15Z,2437,132,2005-08-01T06:16:15Z,2,2020-02-15T06:59:41Z +7632,2005-07-28T01:02:40Z,3233,181,2005-07-30T05:31:40Z,2,2020-02-15T06:59:41Z +7633,2005-07-28T01:03:41Z,4171,402,2005-08-01T23:54:41Z,2,2020-02-15T06:59:41Z +7634,2005-07-28T01:07:01Z,4487,365,2005-07-31T05:00:01Z,1,2020-02-15T06:59:41Z +7635,2005-07-28T01:08:11Z,55,413,2005-08-01T03:32:11Z,2,2020-02-15T06:59:41Z +7636,2005-07-28T01:08:36Z,202,51,2005-08-03T21:36:36Z,1,2020-02-15T06:59:41Z +7637,2005-07-28T01:12:25Z,87,91,2005-08-02T03:48:25Z,1,2020-02-15T06:59:41Z +7638,2005-07-28T01:13:26Z,1890,172,2005-07-28T20:34:26Z,1,2020-02-15T06:59:41Z +7639,2005-07-28T01:14:36Z,767,459,2005-07-29T00:19:36Z,1,2020-02-15T06:59:41Z +7640,2005-07-28T01:14:49Z,3014,229,2005-08-03T21:50:49Z,1,2020-02-15T06:59:41Z +7641,2005-07-28T01:15:45Z,1868,475,2005-08-04T23:50:45Z,1,2020-02-15T06:59:41Z +7642,2005-07-28T01:16:51Z,3995,523,2005-08-02T00:45:51Z,2,2020-02-15T06:59:41Z +7643,2005-07-28T01:19:44Z,4369,407,2005-08-04T21:16:44Z,1,2020-02-15T06:59:41Z +7644,2005-07-28T01:27:33Z,882,173,2005-07-31T22:58:33Z,2,2020-02-15T06:59:41Z +7645,2005-07-28T01:27:42Z,830,381,2005-08-03T07:16:42Z,2,2020-02-15T06:59:41Z +7646,2005-07-28T01:31:45Z,1615,255,2005-07-31T07:16:45Z,1,2020-02-15T06:59:41Z +7647,2005-07-28T01:35:17Z,3079,36,2005-08-01T00:14:17Z,1,2020-02-15T06:59:41Z +7648,2005-07-28T01:35:33Z,797,310,2005-08-04T06:21:33Z,2,2020-02-15T06:59:41Z +7649,2005-07-28T01:37:26Z,2704,318,2005-07-28T21:18:26Z,1,2020-02-15T06:59:41Z +7650,2005-07-28T01:47:20Z,701,290,2005-08-05T06:00:20Z,2,2020-02-15T06:59:41Z +7651,2005-07-28T01:48:32Z,2753,401,2005-08-03T03:10:32Z,2,2020-02-15T06:59:41Z +7652,2005-07-28T01:50:29Z,92,5,2005-07-30T22:23:29Z,2,2020-02-15T06:59:41Z +7653,2005-07-28T01:58:30Z,814,232,2005-07-28T23:32:30Z,2,2020-02-15T06:59:41Z +7654,2005-07-28T02:00:14Z,1009,360,2005-07-31T20:50:14Z,2,2020-02-15T06:59:41Z +7655,2005-07-28T02:01:11Z,2665,513,2005-07-30T23:12:11Z,2,2020-02-15T06:59:41Z +7656,2005-07-28T02:07:19Z,178,148,2005-07-31T04:05:19Z,1,2020-02-15T06:59:41Z +7657,2005-07-28T02:09:00Z,2319,518,2005-08-04T21:44:00Z,1,2020-02-15T06:59:41Z +7658,2005-07-28T02:09:12Z,1798,272,2005-07-30T00:54:12Z,2,2020-02-15T06:59:41Z +7659,2005-07-28T02:09:45Z,1622,584,2005-08-02T05:34:45Z,2,2020-02-15T06:59:41Z +7660,2005-07-28T02:10:10Z,4385,4,2005-07-30T04:29:10Z,2,2020-02-15T06:59:41Z +7661,2005-07-28T02:10:27Z,3060,256,2005-08-05T03:45:27Z,2,2020-02-15T06:59:41Z +7662,2005-07-28T02:16:08Z,1017,534,2005-08-03T21:51:08Z,1,2020-02-15T06:59:41Z +7663,2005-07-28T02:19:48Z,832,470,2005-07-30T21:43:48Z,2,2020-02-15T06:59:41Z +7664,2005-07-28T02:24:23Z,1989,461,2005-07-29T23:01:23Z,1,2020-02-15T06:59:41Z +7665,2005-07-28T02:28:30Z,1455,590,2005-07-31T20:42:30Z,1,2020-02-15T06:59:41Z +7666,2005-07-28T02:35:12Z,688,196,2005-08-05T05:43:12Z,2,2020-02-15T06:59:41Z +7667,2005-07-28T02:37:22Z,2415,443,2005-08-05T21:37:22Z,1,2020-02-15T06:59:41Z +7668,2005-07-28T02:41:31Z,3880,508,2005-08-02T06:08:31Z,1,2020-02-15T06:59:41Z +7669,2005-07-28T02:44:07Z,2624,483,2005-07-29T00:54:07Z,1,2020-02-15T06:59:41Z +7670,2005-07-28T02:44:25Z,1356,252,2005-07-29T21:55:25Z,2,2020-02-15T06:59:41Z +7671,2005-07-28T02:48:31Z,3464,442,2005-07-30T23:04:31Z,1,2020-02-15T06:59:41Z +7672,2005-07-28T02:49:41Z,573,542,2005-08-04T02:38:41Z,1,2020-02-15T06:59:41Z +7673,2005-07-28T02:53:53Z,2368,409,2005-08-06T00:07:53Z,1,2020-02-15T06:59:42Z +7674,2005-07-28T02:54:30Z,682,177,2005-08-05T23:09:30Z,1,2020-02-15T06:59:42Z +7675,2005-07-28T02:55:20Z,153,189,2005-07-31T05:27:20Z,1,2020-02-15T06:59:42Z +7676,2005-07-28T02:55:27Z,1110,508,2005-08-01T03:50:27Z,2,2020-02-15T06:59:42Z +7677,2005-07-28T02:56:37Z,4464,566,2005-07-31T02:21:37Z,1,2020-02-15T06:59:42Z +7678,2005-07-28T02:58:16Z,3398,510,2005-08-06T04:22:16Z,1,2020-02-15T06:59:42Z +7679,2005-07-28T02:58:39Z,1063,444,2005-08-02T04:58:39Z,1,2020-02-15T06:59:42Z +7680,2005-07-28T02:59:08Z,1784,559,2005-08-03T03:37:08Z,2,2020-02-15T06:59:42Z +7681,2005-07-28T03:07:09Z,1176,432,2005-07-29T08:30:09Z,2,2020-02-15T06:59:42Z +7682,2005-07-28T03:07:29Z,3296,400,2005-08-04T08:48:29Z,2,2020-02-15T06:59:42Z +7683,2005-07-28T03:11:29Z,1760,73,2005-08-04T00:14:29Z,1,2020-02-15T06:59:42Z +7684,2005-07-28T03:11:54Z,3365,40,2005-07-31T04:40:54Z,2,2020-02-15T06:59:42Z +7685,2005-07-28T03:13:00Z,2213,468,2005-08-01T00:29:00Z,2,2020-02-15T06:59:42Z +7686,2005-07-28T03:19:23Z,2144,184,2005-08-04T05:17:23Z,2,2020-02-15T06:59:42Z +7687,2005-07-28T03:20:26Z,689,325,2005-08-02T05:48:26Z,2,2020-02-15T06:59:42Z +7688,2005-07-28T03:20:47Z,1179,491,2005-08-06T06:07:47Z,2,2020-02-15T06:59:42Z +7689,2005-07-28T03:21:24Z,1803,253,2005-07-31T08:01:24Z,2,2020-02-15T06:59:42Z +7690,2005-07-28T03:26:21Z,1076,150,2005-07-29T00:08:21Z,1,2020-02-15T06:59:42Z +7691,2005-07-28T03:30:09Z,1579,112,2005-07-29T21:31:09Z,1,2020-02-15T06:59:42Z +7692,2005-07-28T03:30:21Z,267,392,2005-07-30T22:25:21Z,1,2020-02-15T06:59:42Z +7693,2005-07-28T03:31:22Z,2479,148,2005-07-31T06:42:22Z,2,2020-02-15T06:59:42Z +7694,2005-07-28T03:39:25Z,2892,538,2005-07-31T05:47:25Z,1,2020-02-15T06:59:42Z +7695,2005-07-28T03:41:13Z,2742,323,2005-08-06T05:06:13Z,2,2020-02-15T06:59:42Z +7696,2005-07-28T03:41:35Z,3463,56,2005-08-06T05:48:35Z,2,2020-02-15T06:59:42Z +7697,2005-07-28T03:43:45Z,3966,377,2005-08-03T07:55:45Z,2,2020-02-15T06:59:42Z +7698,2005-07-28T03:44:14Z,3650,561,2005-08-04T03:44:14Z,2,2020-02-15T06:59:42Z +7699,2005-07-28T03:52:21Z,4332,53,2005-08-01T05:00:21Z,2,2020-02-15T06:59:42Z +7700,2005-07-28T03:54:14Z,3546,124,2005-08-05T06:20:14Z,2,2020-02-15T06:59:42Z +7701,2005-07-28T03:54:28Z,1604,306,2005-08-01T08:39:28Z,2,2020-02-15T06:59:42Z +7702,2005-07-28T03:56:05Z,253,349,2005-07-31T03:29:05Z,1,2020-02-15T06:59:42Z +7703,2005-07-28T03:59:21Z,2150,3,2005-08-05T08:52:21Z,1,2020-02-15T06:59:42Z +7704,2005-07-28T04:02:13Z,2342,265,2005-08-04T00:51:13Z,1,2020-02-15T06:59:42Z +7705,2005-07-28T04:02:58Z,1072,22,2005-08-05T01:19:58Z,2,2020-02-15T06:59:42Z +7706,2005-07-28T04:03:17Z,994,263,2005-07-29T22:16:17Z,2,2020-02-15T06:59:42Z +7707,2005-07-28T04:07:47Z,2563,232,2005-07-29T02:02:47Z,1,2020-02-15T06:59:42Z +7708,2005-07-28T04:19:15Z,398,363,2005-08-04T04:41:15Z,1,2020-02-15T06:59:42Z +7709,2005-07-28T04:22:14Z,3800,81,2005-07-31T09:18:14Z,2,2020-02-15T06:59:42Z +7710,2005-07-28T04:24:07Z,3716,77,2005-08-03T22:49:07Z,2,2020-02-15T06:59:42Z +7711,2005-07-28T04:26:42Z,2695,426,2005-07-29T07:30:42Z,2,2020-02-15T06:59:42Z +7712,2005-07-28T04:29:53Z,3256,361,2005-08-02T00:57:53Z,2,2020-02-15T06:59:42Z +7713,2005-07-28T04:32:14Z,2018,572,2005-08-03T04:30:14Z,2,2020-02-15T06:59:42Z +7714,2005-07-28T04:32:30Z,940,70,2005-08-02T07:10:30Z,2,2020-02-15T06:59:42Z +7715,2005-07-28T04:32:38Z,3210,512,2005-08-05T00:37:38Z,2,2020-02-15T06:59:42Z +7716,2005-07-28T04:33:15Z,1493,284,2005-08-04T00:08:15Z,2,2020-02-15T06:59:42Z +7717,2005-07-28T04:33:54Z,730,459,2005-07-30T02:46:54Z,2,2020-02-15T06:59:42Z +7718,2005-07-28T04:37:59Z,3587,4,2005-07-29T09:20:59Z,2,2020-02-15T06:59:42Z +7719,2005-07-28T04:39:09Z,2481,286,2005-08-05T03:15:09Z,1,2020-02-15T06:59:42Z +7720,2005-07-28T04:41:44Z,185,520,2005-08-04T06:51:44Z,2,2020-02-15T06:59:42Z +7721,2005-07-28T04:42:58Z,2228,83,2005-07-31T07:52:58Z,1,2020-02-15T06:59:42Z +7722,2005-07-28T04:44:58Z,3828,309,2005-07-30T01:29:58Z,1,2020-02-15T06:59:42Z +7723,2005-07-28T04:45:37Z,3263,147,2005-07-30T09:03:37Z,2,2020-02-15T06:59:42Z +7724,2005-07-28T04:46:30Z,346,3,2005-08-04T08:41:30Z,1,2020-02-15T06:59:42Z +7725,2005-07-28T04:47:14Z,1922,326,2005-08-04T09:03:14Z,1,2020-02-15T06:59:42Z +7726,2005-07-28T04:52:19Z,2578,219,2005-08-04T09:05:19Z,1,2020-02-15T06:59:42Z +7727,2005-07-28T04:52:43Z,2274,123,2005-08-03T01:12:43Z,2,2020-02-15T06:59:42Z +7728,2005-07-28T04:56:33Z,492,130,2005-07-31T07:54:33Z,1,2020-02-15T06:59:42Z +7729,2005-07-28T04:57:57Z,1491,89,2005-07-30T09:38:57Z,1,2020-02-15T06:59:42Z +7730,2005-07-28T04:59:48Z,3118,155,2005-08-04T04:35:48Z,2,2020-02-15T06:59:42Z +7731,2005-07-28T05:01:18Z,1533,413,2005-07-29T02:22:18Z,1,2020-02-15T06:59:42Z +7732,2005-07-28T05:03:32Z,3597,158,2005-07-29T10:20:32Z,1,2020-02-15T06:59:42Z +7733,2005-07-28T05:04:47Z,10,82,2005-08-05T05:12:47Z,2,2020-02-15T06:59:42Z +7734,2005-07-28T05:08:44Z,2726,135,2005-07-30T09:42:44Z,2,2020-02-15T06:59:42Z +7735,2005-07-28T05:09:56Z,3949,372,2005-07-31T23:34:56Z,2,2020-02-15T06:59:42Z +7736,2005-07-28T05:12:04Z,4466,205,2005-08-05T02:28:04Z,2,2020-02-15T06:59:42Z +7737,2005-07-28T05:15:03Z,1235,494,2005-08-04T01:24:03Z,1,2020-02-15T06:59:42Z +7738,2005-07-28T05:21:42Z,80,10,2005-08-03T09:46:42Z,2,2020-02-15T06:59:42Z +7739,2005-07-28T05:21:51Z,1554,186,2005-07-30T02:06:51Z,2,2020-02-15T06:59:42Z +7740,2005-07-28T05:23:36Z,3613,395,2005-08-01T02:20:36Z,2,2020-02-15T06:59:42Z +7741,2005-07-28T05:25:55Z,3917,591,2005-08-02T02:40:55Z,1,2020-02-15T06:59:42Z +7742,2005-07-28T05:33:16Z,1808,49,2005-08-06T01:04:16Z,2,2020-02-15T06:59:42Z +7743,2005-07-28T05:36:13Z,2883,210,2005-08-03T11:28:13Z,2,2020-02-15T06:59:42Z +7744,2005-07-28T05:38:20Z,1863,288,2005-07-31T11:00:20Z,1,2020-02-15T06:59:42Z +7745,2005-07-28T05:46:28Z,1014,285,2005-08-06T07:44:28Z,2,2020-02-15T06:59:42Z +7746,2005-07-28T05:48:56Z,176,299,2005-08-04T07:33:56Z,1,2020-02-15T06:59:42Z +7747,2005-07-28T05:50:11Z,1775,78,2005-08-03T09:51:11Z,1,2020-02-15T06:59:42Z +7748,2005-07-28T05:52:23Z,3523,415,2005-07-31T01:35:23Z,2,2020-02-15T06:59:42Z +7749,2005-07-28T05:53:36Z,3585,232,2005-08-01T03:49:36Z,1,2020-02-15T06:59:42Z +7750,2005-07-28T05:55:30Z,820,220,2005-08-06T04:32:30Z,2,2020-02-15T06:59:42Z +7751,2005-07-28T05:56:13Z,4425,176,2005-08-05T08:08:13Z,1,2020-02-15T06:59:42Z +7752,2005-07-28T06:01:00Z,2218,209,2005-08-03T06:09:00Z,1,2020-02-15T06:59:42Z +7753,2005-07-28T06:09:19Z,3071,531,2005-08-06T06:17:19Z,1,2020-02-15T06:59:42Z +7754,2005-07-28T06:10:55Z,1981,138,2005-07-29T02:46:55Z,1,2020-02-15T06:59:42Z +7755,2005-07-28T06:22:18Z,1247,449,2005-08-06T11:38:18Z,2,2020-02-15T06:59:42Z +7756,2005-07-28T06:22:52Z,1611,469,2005-08-05T11:55:52Z,2,2020-02-15T06:59:42Z +7757,2005-07-28T06:23:00Z,3445,502,2005-07-30T12:02:00Z,1,2020-02-15T06:59:42Z +7758,2005-07-28T06:23:41Z,4333,356,2005-08-03T06:06:41Z,2,2020-02-15T06:59:42Z +7759,2005-07-28T06:28:45Z,3381,405,2005-08-03T11:38:45Z,1,2020-02-15T06:59:42Z +7760,2005-07-28T06:29:45Z,409,307,2005-08-03T01:36:45Z,1,2020-02-15T06:59:42Z +7761,2005-07-28T06:31:45Z,3568,112,2005-07-30T01:36:45Z,2,2020-02-15T06:59:42Z +7762,2005-07-28T06:34:23Z,3234,462,2005-08-05T09:55:23Z,2,2020-02-15T06:59:42Z +7763,2005-07-28T06:35:16Z,2461,116,2005-08-03T02:46:16Z,2,2020-02-15T06:59:42Z +7764,2005-07-28T06:40:05Z,3537,142,2005-07-30T02:51:05Z,2,2020-02-15T06:59:42Z +7765,2005-07-28T06:40:33Z,4098,294,2005-07-31T01:25:33Z,1,2020-02-15T06:59:42Z +7766,2005-07-28T06:41:57Z,2774,292,2005-08-06T11:21:57Z,2,2020-02-15T06:59:42Z +7767,2005-07-28T06:42:02Z,329,139,2005-08-05T11:19:02Z,2,2020-02-15T06:59:42Z +7768,2005-07-28T06:44:03Z,2450,123,2005-07-29T09:46:03Z,1,2020-02-15T06:59:42Z +7769,2005-07-28T06:45:23Z,3250,30,2005-07-30T12:18:23Z,1,2020-02-15T06:59:42Z +7770,2005-07-28T06:49:35Z,1486,507,2005-08-06T08:16:35Z,1,2020-02-15T06:59:42Z +7771,2005-07-28T06:52:12Z,1003,175,2005-07-30T12:48:12Z,1,2020-02-15T06:59:42Z +7772,2005-07-28T06:59:09Z,986,552,2005-08-01T10:49:09Z,1,2020-02-15T06:59:42Z +7773,2005-07-28T07:02:17Z,4143,380,2005-07-30T04:16:17Z,2,2020-02-15T06:59:42Z +7774,2005-07-28T07:03:25Z,3483,259,2005-08-03T02:05:25Z,1,2020-02-15T06:59:42Z +7775,2005-07-28T07:04:36Z,3795,475,2005-08-03T06:36:36Z,2,2020-02-15T06:59:42Z +7776,2005-07-28T07:04:36Z,4170,385,2005-08-01T09:32:36Z,1,2020-02-15T06:59:42Z +7777,2005-07-28T07:04:42Z,4422,287,2005-07-29T01:57:42Z,1,2020-02-15T06:59:42Z +7778,2005-07-28T07:10:11Z,1044,248,2005-08-05T05:09:11Z,1,2020-02-15T06:59:42Z +7779,2005-07-28T07:11:11Z,3663,414,2005-07-30T11:12:11Z,1,2020-02-15T06:59:42Z +7780,2005-07-28T07:11:55Z,3069,236,2005-08-06T05:41:55Z,1,2020-02-15T06:59:42Z +7781,2005-07-28T07:13:20Z,541,539,2005-08-06T05:43:20Z,2,2020-02-15T06:59:42Z +7782,2005-07-28T07:13:40Z,3770,199,2005-08-05T06:50:40Z,1,2020-02-15T06:59:42Z +7783,2005-07-28T07:14:43Z,3817,581,2005-08-01T05:03:43Z,2,2020-02-15T06:59:42Z +7784,2005-07-28T07:15:32Z,3611,505,2005-08-06T05:00:32Z,1,2020-02-15T06:59:42Z +7785,2005-07-28T07:16:11Z,4277,460,2005-08-02T03:43:11Z,1,2020-02-15T06:59:42Z +7786,2005-07-28T07:18:26Z,2285,222,2005-07-29T03:00:26Z,1,2020-02-15T06:59:42Z +7787,2005-07-28T07:19:02Z,2191,203,2005-08-06T02:38:02Z,2,2020-02-15T06:59:42Z +7788,2005-07-28T07:21:55Z,95,487,2005-08-03T06:33:55Z,1,2020-02-15T06:59:42Z +7789,2005-07-28T07:22:07Z,2837,426,2005-08-06T10:47:07Z,1,2020-02-15T06:59:42Z +7790,2005-07-28T07:22:35Z,2327,189,2005-07-30T02:59:35Z,1,2020-02-15T06:59:42Z +7791,2005-07-28T07:22:51Z,822,514,2005-07-30T03:09:51Z,1,2020-02-15T06:59:42Z +7792,2005-07-28T07:24:02Z,3736,236,2005-08-04T11:13:02Z,1,2020-02-15T06:59:42Z +7793,2005-07-28T07:26:14Z,24,32,2005-08-03T07:45:14Z,1,2020-02-15T06:59:42Z +7794,2005-07-28T07:28:03Z,4509,510,2005-08-06T12:32:03Z,2,2020-02-15T06:59:42Z +7795,2005-07-28T07:28:16Z,1278,38,2005-07-31T12:03:16Z,1,2020-02-15T06:59:42Z +7796,2005-07-28T07:39:39Z,622,419,2005-08-02T05:34:39Z,2,2020-02-15T06:59:42Z +7797,2005-07-28T07:41:07Z,4180,370,2005-07-31T04:13:07Z,1,2020-02-15T06:59:42Z +7798,2005-07-28T07:41:59Z,3281,236,2005-07-31T12:36:59Z,1,2020-02-15T06:59:42Z +7799,2005-07-28T07:42:09Z,2163,384,2005-08-02T10:02:09Z,2,2020-02-15T06:59:42Z +7800,2005-07-28T07:50:59Z,3386,499,2005-07-29T07:31:59Z,2,2020-02-15T06:59:42Z +7801,2005-07-28T07:51:56Z,2052,9,2005-07-30T12:18:56Z,1,2020-02-15T06:59:42Z +7802,2005-07-28T07:51:57Z,1108,298,2005-07-29T09:32:57Z,1,2020-02-15T06:59:42Z +7803,2005-07-28T07:52:13Z,3438,449,2005-08-03T13:35:13Z,1,2020-02-15T06:59:42Z +7804,2005-07-28T07:56:00Z,592,249,2005-07-30T10:33:00Z,2,2020-02-15T06:59:42Z +7805,2005-07-28T07:56:41Z,3204,366,2005-08-04T06:53:41Z,1,2020-02-15T06:59:42Z +7806,2005-07-28T07:58:17Z,4317,440,2005-08-06T10:15:17Z,1,2020-02-15T06:59:42Z +7807,2005-07-28T07:58:27Z,2204,504,2005-08-01T02:48:27Z,2,2020-02-15T06:59:42Z +7808,2005-07-28T07:58:56Z,4052,327,2005-08-02T10:49:56Z,1,2020-02-15T06:59:42Z +7809,2005-07-28T07:59:46Z,4150,94,2005-08-02T02:56:46Z,1,2020-02-15T06:59:42Z +7810,2005-07-28T08:00:38Z,30,537,2005-08-02T06:14:38Z,2,2020-02-15T06:59:42Z +7811,2005-07-28T08:06:01Z,3891,347,2005-07-30T10:08:01Z,2,2020-02-15T06:59:42Z +7812,2005-07-28T08:06:52Z,4556,237,2005-07-31T09:57:52Z,2,2020-02-15T06:59:42Z +7813,2005-07-28T08:08:27Z,4216,411,2005-07-30T03:08:27Z,2,2020-02-15T06:59:42Z +7814,2005-07-28T08:09:48Z,2662,258,2005-08-01T13:14:48Z,2,2020-02-15T06:59:42Z +7815,2005-07-28T08:14:11Z,3551,300,2005-07-30T02:34:11Z,2,2020-02-15T06:59:42Z +7816,2005-07-28T08:14:12Z,1422,283,2005-07-30T08:00:12Z,2,2020-02-15T06:59:42Z +7817,2005-07-28T08:20:55Z,600,259,2005-07-30T11:55:55Z,1,2020-02-15T06:59:42Z +7818,2005-07-28T08:25:00Z,1672,301,2005-07-29T14:07:00Z,1,2020-02-15T06:59:42Z +7819,2005-07-28T08:27:14Z,3182,100,2005-08-02T12:34:14Z,2,2020-02-15T06:59:42Z +7820,2005-07-28T08:28:51Z,4475,459,2005-08-05T10:00:51Z,1,2020-02-15T06:59:42Z +7821,2005-07-28T08:31:23Z,1184,433,2005-08-03T05:08:23Z,2,2020-02-15T06:59:42Z +7822,2005-07-28T08:31:45Z,1428,156,2005-07-31T11:06:45Z,1,2020-02-15T06:59:42Z +7823,2005-07-28T08:32:53Z,84,428,2005-08-06T11:59:53Z,1,2020-02-15T06:59:42Z +7824,2005-07-28T08:34:47Z,2241,153,2005-08-05T09:43:47Z,2,2020-02-15T06:59:42Z +7825,2005-07-28T08:34:57Z,4340,348,2005-08-06T02:45:57Z,1,2020-02-15T06:59:42Z +7826,2005-07-28T08:35:51Z,1473,214,2005-08-05T07:57:51Z,2,2020-02-15T06:59:42Z +7827,2005-07-28T08:37:22Z,659,422,2005-07-31T04:27:22Z,1,2020-02-15T06:59:42Z +7828,2005-07-28T08:40:46Z,1710,212,2005-07-30T14:22:46Z,1,2020-02-15T06:59:42Z +7829,2005-07-28T08:43:39Z,111,5,2005-08-04T14:33:39Z,1,2020-02-15T06:59:42Z +7830,2005-07-28T08:43:49Z,4492,144,2005-08-04T09:30:49Z,2,2020-02-15T06:59:42Z +7831,2005-07-28T08:44:21Z,4436,499,2005-07-30T03:25:21Z,2,2020-02-15T06:59:42Z +7832,2005-07-28T08:46:11Z,284,92,2005-08-04T06:55:11Z,1,2020-02-15T06:59:42Z +7833,2005-07-28T08:46:14Z,1166,263,2005-08-04T06:13:14Z,1,2020-02-15T06:59:42Z +7834,2005-07-28T08:46:43Z,4124,278,2005-07-31T07:09:43Z,2,2020-02-15T06:59:42Z +7835,2005-07-28T08:49:39Z,43,547,2005-08-02T07:16:39Z,2,2020-02-15T06:59:42Z +7836,2005-07-28T08:55:27Z,1770,481,2005-08-05T09:35:27Z,1,2020-02-15T06:59:42Z +7837,2005-07-28T08:58:32Z,115,374,2005-07-29T14:11:32Z,1,2020-02-15T06:59:42Z +7838,2005-07-28T09:00:21Z,2222,550,2005-07-29T05:52:21Z,1,2020-02-15T06:59:42Z +7839,2005-07-28T09:01:13Z,914,518,2005-08-04T11:46:13Z,1,2020-02-15T06:59:42Z +7840,2005-07-28T09:03:02Z,2899,482,2005-08-06T06:15:02Z,1,2020-02-15T06:59:42Z +7841,2005-07-28T09:04:45Z,1092,1,2005-07-30T12:37:45Z,2,2020-02-15T06:59:42Z +7842,2005-07-28T09:10:06Z,2447,276,2005-08-04T06:52:06Z,2,2020-02-15T06:59:42Z +7843,2005-07-28T09:10:22Z,3962,75,2005-08-01T11:27:22Z,2,2020-02-15T06:59:42Z +7844,2005-07-28T09:16:19Z,4220,187,2005-08-05T14:06:19Z,2,2020-02-15T06:59:42Z +7845,2005-07-28T09:18:07Z,38,352,2005-08-04T10:23:07Z,2,2020-02-15T06:59:42Z +7846,2005-07-28T09:21:18Z,4201,309,2005-08-06T07:10:18Z,2,2020-02-15T06:59:42Z +7847,2005-07-28T09:23:14Z,3602,323,2005-08-02T11:02:14Z,2,2020-02-15T06:59:42Z +7848,2005-07-28T09:24:31Z,162,509,2005-08-05T05:11:31Z,2,2020-02-15T06:59:42Z +7849,2005-07-28T09:30:02Z,996,423,2005-08-06T12:41:02Z,2,2020-02-15T06:59:42Z +7850,2005-07-28T09:31:13Z,2913,118,2005-08-02T14:06:13Z,2,2020-02-15T06:59:42Z +7851,2005-07-28T09:31:58Z,3596,253,2005-08-04T09:58:58Z,2,2020-02-15T06:59:42Z +7852,2005-07-28T09:34:29Z,3462,123,2005-07-30T05:48:29Z,1,2020-02-15T06:59:42Z +7853,2005-07-28T09:36:38Z,4053,318,2005-07-29T15:01:38Z,1,2020-02-15T06:59:42Z +7854,2005-07-28T09:42:31Z,3531,84,2005-08-02T09:25:31Z,1,2020-02-15T06:59:42Z +7855,2005-07-28T09:43:02Z,2474,288,2005-07-30T12:57:02Z,2,2020-02-15T06:59:42Z +7856,2005-07-28T09:48:24Z,2376,375,2005-07-29T09:49:24Z,2,2020-02-15T06:59:42Z +7857,2005-07-28T09:49:40Z,4027,500,2005-08-01T05:34:40Z,2,2020-02-15T06:59:42Z +7858,2005-07-28T09:50:18Z,992,144,2005-08-05T14:33:18Z,1,2020-02-15T06:59:42Z +7859,2005-07-28T09:57:17Z,3392,547,2005-08-04T06:04:17Z,1,2020-02-15T06:59:42Z +7860,2005-07-28T09:58:02Z,2400,241,2005-08-05T06:04:02Z,1,2020-02-15T06:59:42Z +7861,2005-07-28T10:02:01Z,1781,208,2005-08-06T13:17:01Z,1,2020-02-15T06:59:42Z +7862,2005-07-28T10:02:25Z,2507,299,2005-08-05T13:10:25Z,1,2020-02-15T06:59:42Z +7863,2005-07-28T10:05:46Z,1212,182,2005-07-29T14:42:46Z,1,2020-02-15T06:59:42Z +7864,2005-07-28T10:06:10Z,1238,20,2005-08-04T08:38:10Z,1,2020-02-15T06:59:42Z +7865,2005-07-28T10:07:04Z,2334,148,2005-08-06T08:16:04Z,2,2020-02-15T06:59:42Z +7866,2005-07-28T10:08:01Z,1602,101,2005-08-04T09:29:01Z,2,2020-02-15T06:59:42Z +7867,2005-07-28T10:08:54Z,713,297,2005-07-30T10:26:54Z,2,2020-02-15T06:59:42Z +7868,2005-07-28T10:08:55Z,3589,43,2005-07-30T11:52:55Z,1,2020-02-15T06:59:42Z +7869,2005-07-28T10:13:15Z,3005,298,2005-08-03T12:58:15Z,1,2020-02-15T06:59:42Z +7870,2005-07-28T10:16:03Z,970,240,2005-07-31T16:06:03Z,1,2020-02-15T06:59:42Z +7871,2005-07-28T10:16:37Z,3990,491,2005-08-05T11:24:37Z,2,2020-02-15T06:59:42Z +7872,2005-07-28T10:18:16Z,826,66,2005-07-31T10:57:16Z,1,2020-02-15T06:59:42Z +7873,2005-07-28T10:19:46Z,2947,82,2005-07-31T04:43:46Z,2,2020-02-15T06:59:42Z +7874,2005-07-28T10:21:52Z,2981,86,2005-08-06T16:19:52Z,1,2020-02-15T06:59:42Z +7875,2005-07-28T10:23:48Z,3693,504,2005-08-02T12:09:48Z,1,2020-02-15T06:59:42Z +7876,2005-07-28T10:24:22Z,3563,577,2005-08-04T07:15:22Z,1,2020-02-15T06:59:42Z +7877,2005-07-28T10:25:36Z,2576,65,2005-08-05T12:46:36Z,1,2020-02-15T06:59:42Z +7878,2005-07-28T10:27:10Z,1564,141,2005-07-29T11:22:10Z,1,2020-02-15T06:59:42Z +7879,2005-07-28T10:27:46Z,1969,125,2005-07-31T07:48:46Z,1,2020-02-15T06:59:42Z +7880,2005-07-28T10:30:37Z,3670,182,2005-08-03T08:05:37Z,2,2020-02-15T06:59:42Z +7881,2005-07-28T10:33:22Z,533,249,2005-08-02T12:10:22Z,1,2020-02-15T06:59:42Z +7882,2005-07-28T10:33:42Z,3922,516,2005-07-29T13:49:42Z,1,2020-02-15T06:59:42Z +7883,2005-07-28T10:37:20Z,447,526,2005-08-02T05:08:20Z,1,2020-02-15T06:59:42Z +7884,2005-07-28T10:37:24Z,3871,502,2005-07-31T10:31:24Z,1,2020-02-15T06:59:42Z +7885,2005-07-28T10:37:41Z,4294,260,2005-08-05T07:56:41Z,1,2020-02-15T06:59:42Z +7886,2005-07-28T10:37:55Z,237,352,2005-08-04T13:22:55Z,2,2020-02-15T06:59:42Z +7887,2005-07-28T10:40:12Z,2820,253,2005-08-02T06:09:12Z,1,2020-02-15T06:59:42Z +7888,2005-07-28T10:40:24Z,545,378,2005-08-01T16:18:24Z,1,2020-02-15T06:59:42Z +7889,2005-07-28T10:43:21Z,3123,416,2005-07-30T09:11:21Z,1,2020-02-15T06:59:42Z +7890,2005-07-28T10:43:40Z,3443,553,2005-07-31T06:07:40Z,1,2020-02-15T06:59:42Z +7891,2005-07-28T10:43:56Z,3637,560,2005-08-05T14:04:56Z,2,2020-02-15T06:59:42Z +7892,2005-07-28T10:46:58Z,2717,397,2005-07-30T16:03:58Z,1,2020-02-15T06:59:42Z +7893,2005-07-28T10:49:27Z,3058,479,2005-08-02T06:46:27Z,1,2020-02-15T06:59:42Z +7894,2005-07-28T10:53:58Z,3532,330,2005-08-02T13:42:58Z,2,2020-02-15T06:59:42Z +7895,2005-07-28T10:57:15Z,900,67,2005-08-02T15:10:15Z,2,2020-02-15T06:59:42Z +7896,2005-07-28T11:00:58Z,3561,389,2005-08-04T14:30:58Z,2,2020-02-15T06:59:42Z +7897,2005-07-28T11:01:51Z,1396,75,2005-07-31T13:13:51Z,1,2020-02-15T06:59:42Z +7898,2005-07-28T11:08:22Z,2680,499,2005-08-03T12:28:22Z,1,2020-02-15T06:59:42Z +7899,2005-07-28T11:10:12Z,4130,452,2005-08-02T13:20:12Z,2,2020-02-15T06:59:42Z +7900,2005-07-28T11:11:33Z,2781,154,2005-08-05T06:29:33Z,2,2020-02-15T06:59:42Z +7901,2005-07-28T11:12:12Z,4435,280,2005-08-01T08:13:12Z,1,2020-02-15T06:59:42Z +7902,2005-07-28T11:14:19Z,3066,356,2005-07-30T09:01:19Z,2,2020-02-15T06:59:42Z +7903,2005-07-28T11:20:36Z,2767,588,2005-07-31T09:16:36Z,1,2020-02-15T06:59:42Z +7904,2005-07-28T11:25:39Z,316,477,2005-08-06T08:22:39Z,2,2020-02-15T06:59:42Z +7905,2005-07-28T11:26:57Z,4287,455,2005-08-02T06:14:57Z,1,2020-02-15T06:59:42Z +7906,2005-07-28T11:31:42Z,1216,85,2005-08-01T11:56:42Z,2,2020-02-15T06:59:42Z +7907,2005-07-28T11:32:00Z,3252,433,2005-07-30T15:27:00Z,1,2020-02-15T06:59:42Z +7908,2005-07-28T11:32:57Z,3646,360,2005-08-03T13:30:57Z,2,2020-02-15T06:59:42Z +7909,2005-07-28T11:38:08Z,3355,210,2005-07-29T13:54:08Z,1,2020-02-15T06:59:42Z +7910,2005-07-28T11:44:56Z,2044,480,2005-08-05T14:37:56Z,2,2020-02-15T06:59:42Z +7911,2005-07-28T11:46:45Z,390,3,2005-07-29T07:19:45Z,1,2020-02-15T06:59:42Z +7912,2005-07-28T11:46:58Z,745,127,2005-08-05T12:50:58Z,1,2020-02-15T06:59:42Z +7913,2005-07-28T11:47:23Z,4001,459,2005-08-05T06:36:23Z,1,2020-02-15T06:59:42Z +7914,2005-07-28T11:48:08Z,2796,469,2005-07-30T14:14:08Z,1,2020-02-15T06:59:42Z +7915,2005-07-28T11:49:46Z,2088,186,2005-08-04T12:21:46Z,2,2020-02-15T06:59:42Z +7916,2005-07-28T11:49:53Z,3877,13,2005-07-29T15:01:53Z,1,2020-02-15T06:59:42Z +7917,2005-07-28T11:56:57Z,2071,416,2005-07-29T14:06:57Z,1,2020-02-15T06:59:42Z +7918,2005-07-28T11:58:53Z,63,473,2005-08-04T12:08:53Z,2,2020-02-15T06:59:42Z +7919,2005-07-28T11:59:45Z,2138,36,2005-08-06T11:19:45Z,1,2020-02-15T06:59:42Z +7920,2005-07-28T12:01:19Z,66,48,2005-08-05T07:08:19Z,1,2020-02-15T06:59:42Z +7921,2005-07-28T12:02:46Z,116,100,2005-08-01T12:08:46Z,2,2020-02-15T06:59:42Z +7922,2005-07-28T12:05:25Z,817,125,2005-08-02T12:13:25Z,2,2020-02-15T06:59:42Z +7923,2005-07-28T12:08:29Z,2273,458,2005-08-04T12:30:29Z,1,2020-02-15T06:59:42Z +7924,2005-07-28T12:08:53Z,656,97,2005-07-30T06:45:53Z,2,2020-02-15T06:59:42Z +7925,2005-07-28T12:10:02Z,1763,500,2005-08-02T15:50:02Z,1,2020-02-15T06:59:42Z +7926,2005-07-28T12:13:02Z,180,78,2005-08-05T08:54:02Z,1,2020-02-15T06:59:42Z +7927,2005-07-28T12:13:42Z,1263,27,2005-08-05T12:02:42Z,1,2020-02-15T06:59:42Z +7928,2005-07-28T12:15:51Z,912,473,2005-08-05T06:34:51Z,1,2020-02-15T06:59:42Z +7929,2005-07-28T12:16:40Z,2652,307,2005-07-31T13:09:40Z,2,2020-02-15T06:59:42Z +7930,2005-07-28T12:21:08Z,4181,320,2005-07-30T11:56:08Z,1,2020-02-15T06:59:42Z +7931,2005-07-28T12:23:41Z,1923,326,2005-08-06T09:49:41Z,2,2020-02-15T06:59:42Z +7932,2005-07-28T12:24:54Z,3738,462,2005-07-30T11:33:54Z,1,2020-02-15T06:59:42Z +7933,2005-07-28T12:27:27Z,3175,297,2005-07-29T10:34:27Z,2,2020-02-15T06:59:42Z +7934,2005-07-28T12:33:10Z,2642,332,2005-08-04T07:40:10Z,2,2020-02-15T06:59:42Z +7935,2005-07-28T12:33:17Z,3664,462,2005-08-04T14:40:17Z,2,2020-02-15T06:59:42Z +7936,2005-07-28T12:33:21Z,563,520,2005-07-30T13:31:21Z,2,2020-02-15T06:59:42Z +7937,2005-07-28T12:38:22Z,3944,323,2005-07-29T09:19:22Z,1,2020-02-15T06:59:42Z +7938,2005-07-28T12:39:11Z,2579,114,2005-08-04T16:56:11Z,1,2020-02-15T06:59:42Z +7939,2005-07-28T12:45:47Z,2004,37,2005-07-30T18:32:47Z,2,2020-02-15T06:59:42Z +7940,2005-07-28T12:46:47Z,901,409,2005-07-29T06:46:47Z,2,2020-02-15T06:59:42Z +7941,2005-07-28T12:47:20Z,439,566,2005-08-01T08:46:20Z,1,2020-02-15T06:59:42Z +7942,2005-07-28T12:49:44Z,1636,56,2005-07-31T18:07:44Z,2,2020-02-15T06:59:42Z +7943,2005-07-28T12:50:55Z,2914,346,2005-08-04T11:29:55Z,2,2020-02-15T06:59:42Z +7944,2005-07-28T12:51:22Z,3148,504,2005-07-30T12:19:22Z,1,2020-02-15T06:59:42Z +7945,2005-07-28T12:53:58Z,3326,316,2005-08-03T14:04:58Z,1,2020-02-15T06:59:42Z +7946,2005-07-28T13:01:22Z,99,90,2005-08-03T15:27:22Z,2,2020-02-15T06:59:42Z +7947,2005-07-28T13:05:50Z,2504,279,2005-08-02T11:16:50Z,2,2020-02-15T06:59:42Z +7948,2005-07-28T13:06:16Z,215,589,2005-08-05T08:38:16Z,1,2020-02-15T06:59:42Z +7949,2005-07-28T13:07:24Z,2145,487,2005-08-02T09:41:24Z,1,2020-02-15T06:59:42Z +7950,2005-07-28T13:21:00Z,2286,122,2005-08-05T18:47:00Z,2,2020-02-15T06:59:42Z +7951,2005-07-28T13:21:16Z,3979,237,2005-08-06T08:21:16Z,1,2020-02-15T06:59:42Z +7952,2005-07-28T13:23:49Z,3313,158,2005-08-01T08:50:49Z,1,2020-02-15T06:59:42Z +7953,2005-07-28T13:24:32Z,4471,319,2005-08-05T16:09:32Z,2,2020-02-15T06:59:42Z +7954,2005-07-28T13:25:05Z,3735,145,2005-07-29T18:50:05Z,2,2020-02-15T06:59:42Z +7955,2005-07-28T13:31:36Z,1519,522,2005-07-30T10:03:36Z,1,2020-02-15T06:59:42Z +7956,2005-07-28T13:32:17Z,4335,118,2005-08-06T14:51:17Z,2,2020-02-15T06:59:42Z +7957,2005-07-28T13:34:08Z,1623,78,2005-08-05T07:58:08Z,1,2020-02-15T06:59:42Z +7958,2005-07-28T13:34:34Z,421,593,2005-07-29T16:03:34Z,1,2020-02-15T06:59:42Z +7959,2005-07-28T13:43:20Z,1549,178,2005-08-02T12:13:20Z,2,2020-02-15T06:59:42Z +7960,2005-07-28T13:47:08Z,2718,324,2005-08-03T15:17:08Z,1,2020-02-15T06:59:42Z +7961,2005-07-28T13:47:21Z,3284,45,2005-08-01T09:33:21Z,1,2020-02-15T06:59:42Z +7962,2005-07-28T13:48:09Z,1746,126,2005-08-03T19:21:09Z,1,2020-02-15T06:59:42Z +7963,2005-07-28T13:48:38Z,921,247,2005-08-06T19:37:38Z,2,2020-02-15T06:59:42Z +7964,2005-07-28T13:49:58Z,2528,574,2005-08-03T10:03:58Z,2,2020-02-15T06:59:42Z +7965,2005-07-28T13:52:57Z,3671,134,2005-07-29T14:54:57Z,1,2020-02-15T06:59:42Z +7966,2005-07-28T13:53:54Z,2514,91,2005-08-06T15:32:54Z,1,2020-02-15T06:59:42Z +7967,2005-07-28T13:56:51Z,2040,187,2005-08-03T19:38:51Z,1,2020-02-15T06:59:42Z +7968,2005-07-28T13:57:35Z,3865,597,2005-08-04T13:40:35Z,1,2020-02-15T06:59:42Z +7969,2005-07-28T13:57:37Z,2224,123,2005-08-04T19:31:37Z,1,2020-02-15T06:59:42Z +7970,2005-07-28T13:58:38Z,998,507,2005-08-02T12:27:38Z,1,2020-02-15T06:59:42Z +7971,2005-07-28T14:00:47Z,1910,445,2005-08-02T10:01:47Z,1,2020-02-15T06:59:42Z +7972,2005-07-28T14:07:46Z,2930,269,2005-08-01T11:28:46Z,2,2020-02-15T06:59:42Z +7973,2005-07-28T14:10:06Z,3936,339,2005-07-29T11:26:06Z,2,2020-02-15T06:59:42Z +7974,2005-07-28T14:11:57Z,2442,380,2005-08-02T19:25:57Z,2,2020-02-15T06:59:42Z +7975,2005-07-28T14:12:47Z,2565,211,2005-08-05T09:18:47Z,1,2020-02-15T06:59:42Z +7976,2005-07-28T14:13:24Z,2296,205,2005-08-05T09:01:24Z,1,2020-02-15T06:59:42Z +7977,2005-07-28T14:15:54Z,3162,389,2005-08-01T18:58:54Z,2,2020-02-15T06:59:42Z +7978,2005-07-28T14:16:14Z,508,431,2005-08-01T12:53:14Z,2,2020-02-15T06:59:42Z +7979,2005-07-28T14:16:30Z,3303,94,2005-08-03T09:39:30Z,2,2020-02-15T06:59:42Z +7980,2005-07-28T14:16:49Z,1019,329,2005-08-05T09:20:49Z,1,2020-02-15T06:59:42Z +7981,2005-07-28T14:18:25Z,90,392,2005-08-04T15:21:25Z,2,2020-02-15T06:59:42Z +7982,2005-07-28T14:19:59Z,668,71,2005-07-29T14:09:59Z,2,2020-02-15T06:59:42Z +7983,2005-07-28T14:23:01Z,1836,115,2005-07-29T11:51:01Z,1,2020-02-15T06:59:42Z +7984,2005-07-28T14:27:51Z,2893,208,2005-08-04T17:34:51Z,1,2020-02-15T06:59:42Z +7985,2005-07-28T14:29:01Z,4022,388,2005-08-03T17:20:01Z,2,2020-02-15T06:59:42Z +7986,2005-07-28T14:30:13Z,1283,395,2005-08-05T09:35:13Z,1,2020-02-15T06:59:42Z +7987,2005-07-28T14:36:52Z,288,443,2005-08-05T16:49:52Z,2,2020-02-15T06:59:42Z +7988,2005-07-28T14:37:18Z,2906,517,2005-08-05T10:53:18Z,1,2020-02-15T06:59:42Z +7989,2005-07-28T14:39:05Z,3196,149,2005-08-05T13:58:05Z,2,2020-02-15T06:59:42Z +7990,2005-07-28T14:43:08Z,188,232,2005-08-01T10:51:08Z,2,2020-02-15T06:59:42Z +7991,2005-07-28T14:45:45Z,1133,59,2005-07-29T15:05:45Z,2,2020-02-15T06:59:42Z +7992,2005-07-28T14:53:06Z,1851,33,2005-07-29T18:17:06Z,1,2020-02-15T06:59:42Z +7993,2005-07-28T14:56:41Z,2926,353,2005-08-01T17:01:41Z,2,2020-02-15T06:59:42Z +7994,2005-07-28T14:56:54Z,2431,21,2005-07-30T09:56:54Z,2,2020-02-15T06:59:42Z +7995,2005-07-28T15:00:09Z,536,89,2005-08-01T12:33:09Z,2,2020-02-15T06:59:42Z +7996,2005-07-28T15:00:49Z,2171,408,2005-08-04T20:58:49Z,2,2020-02-15T06:59:42Z +7997,2005-07-28T15:02:25Z,1845,591,2005-08-04T14:35:25Z,1,2020-02-15T06:59:42Z +7998,2005-07-28T15:08:48Z,1397,598,2005-07-31T16:14:48Z,2,2020-02-15T06:59:42Z +7999,2005-07-28T15:10:14Z,2750,170,2005-08-06T17:08:14Z,2,2020-02-15T06:59:42Z +8000,2005-07-28T15:10:25Z,1644,212,2005-08-06T19:15:25Z,1,2020-02-15T06:59:42Z +8001,2005-07-28T15:10:55Z,2570,10,2005-08-05T18:23:55Z,1,2020-02-15T06:59:42Z +8002,2005-07-28T15:11:00Z,22,449,2005-07-31T15:46:00Z,2,2020-02-15T06:59:42Z +8003,2005-07-28T15:11:27Z,2775,89,2005-08-04T18:35:27Z,1,2020-02-15T06:59:42Z +8004,2005-07-28T15:14:07Z,4428,393,2005-07-30T19:32:07Z,2,2020-02-15T06:59:42Z +8005,2005-07-28T15:15:11Z,670,488,2005-07-29T14:54:11Z,1,2020-02-15T06:59:42Z +8006,2005-07-28T15:15:41Z,3959,109,2005-08-05T19:29:41Z,2,2020-02-15T06:59:42Z +8007,2005-07-28T15:22:27Z,1942,525,2005-07-30T13:06:27Z,2,2020-02-15T06:59:42Z +8008,2005-07-28T15:25:55Z,2093,41,2005-08-04T13:16:55Z,1,2020-02-15T06:59:42Z +8009,2005-07-28T15:25:58Z,337,372,2005-08-04T10:16:58Z,2,2020-02-15T06:59:42Z +8010,2005-07-28T15:26:20Z,68,467,2005-08-04T18:39:20Z,2,2020-02-15T06:59:42Z +8011,2005-07-28T15:26:39Z,4274,497,2005-07-30T13:59:39Z,1,2020-02-15T06:59:42Z +8012,2005-07-28T15:29:00Z,1513,343,2005-08-05T12:28:00Z,2,2020-02-15T06:59:42Z +8013,2005-07-28T15:30:26Z,2074,403,2005-08-05T16:29:26Z,1,2020-02-15T06:59:42Z +8014,2005-07-28T15:32:07Z,2339,11,2005-07-31T20:52:07Z,1,2020-02-15T06:59:42Z +8015,2005-07-28T15:33:03Z,1814,23,2005-07-30T15:32:03Z,2,2020-02-15T06:59:42Z +8016,2005-07-28T15:35:41Z,516,391,2005-07-30T20:06:41Z,2,2020-02-15T06:59:42Z +8017,2005-07-28T15:35:41Z,1764,328,2005-08-01T19:12:41Z,1,2020-02-15T06:59:42Z +8018,2005-07-28T15:36:48Z,4129,377,2005-08-06T20:04:48Z,1,2020-02-15T06:59:42Z +8019,2005-07-28T15:37:43Z,1844,84,2005-08-04T15:40:43Z,2,2020-02-15T06:59:42Z +8020,2005-07-28T15:43:32Z,4459,498,2005-08-05T12:19:32Z,1,2020-02-15T06:59:42Z +8021,2005-07-28T15:45:24Z,1920,501,2005-08-04T10:49:24Z,1,2020-02-15T06:59:42Z +8022,2005-07-28T15:48:56Z,294,314,2005-08-06T13:40:56Z,1,2020-02-15T06:59:42Z +8023,2005-07-28T15:53:29Z,2133,411,2005-07-31T12:26:29Z,1,2020-02-15T06:59:42Z +8024,2005-07-28T15:55:40Z,1735,90,2005-08-02T09:56:40Z,1,2020-02-15T06:59:42Z +8025,2005-07-28T16:03:27Z,2932,421,2005-08-03T21:58:27Z,2,2020-02-15T06:59:42Z +8026,2005-07-28T16:05:38Z,4225,511,2005-07-29T21:28:38Z,2,2020-02-15T06:59:42Z +8027,2005-07-28T16:09:57Z,1335,436,2005-08-05T18:17:57Z,1,2020-02-15T06:59:42Z +8028,2005-07-28T16:11:15Z,2715,137,2005-08-05T15:11:15Z,1,2020-02-15T06:59:42Z +8029,2005-07-28T16:11:21Z,4273,61,2005-08-05T13:52:21Z,1,2020-02-15T06:59:42Z +8030,2005-07-28T16:12:53Z,2633,30,2005-07-31T17:15:53Z,1,2020-02-15T06:59:42Z +8031,2005-07-28T16:15:49Z,2196,40,2005-08-02T18:27:49Z,2,2020-02-15T06:59:42Z +8032,2005-07-28T16:17:00Z,431,230,2005-07-29T13:32:00Z,1,2020-02-15T06:59:42Z +8033,2005-07-28T16:18:23Z,4268,1,2005-07-30T17:56:23Z,1,2020-02-15T06:59:42Z +8034,2005-07-28T16:20:26Z,1997,502,2005-08-04T19:11:26Z,2,2020-02-15T06:59:42Z +8035,2005-07-28T16:23:01Z,1503,14,2005-08-05T10:52:01Z,1,2020-02-15T06:59:42Z +8036,2005-07-28T16:27:43Z,2741,412,2005-08-01T13:41:43Z,2,2020-02-15T06:59:42Z +8037,2005-07-28T16:31:20Z,3973,409,2005-07-31T12:18:20Z,2,2020-02-15T06:59:42Z +8038,2005-07-28T16:32:55Z,1225,30,2005-07-30T21:08:55Z,1,2020-02-15T06:59:42Z +8039,2005-07-28T16:35:16Z,1996,203,2005-07-30T14:49:16Z,1,2020-02-15T06:59:42Z +8040,2005-07-28T16:39:43Z,4543,163,2005-08-02T20:00:43Z,2,2020-02-15T06:59:42Z +8041,2005-07-28T16:39:56Z,763,357,2005-07-30T18:44:56Z,1,2020-02-15T06:59:42Z +8042,2005-07-28T16:45:11Z,4325,14,2005-08-04T17:16:11Z,2,2020-02-15T06:59:42Z +8043,2005-07-28T16:45:44Z,208,577,2005-08-01T12:26:44Z,1,2020-02-15T06:59:42Z +8044,2005-07-28T16:49:12Z,879,442,2005-08-02T22:41:12Z,1,2020-02-15T06:59:42Z +8045,2005-07-28T16:49:38Z,3427,368,2005-08-03T15:42:38Z,1,2020-02-15T06:59:42Z +8046,2005-07-28T16:49:41Z,2873,120,2005-07-31T21:33:41Z,1,2020-02-15T06:59:42Z +8047,2005-07-28T16:49:43Z,2936,292,2005-08-03T14:48:43Z,2,2020-02-15T06:59:42Z +8048,2005-07-28T16:50:26Z,2721,182,2005-08-06T19:20:26Z,1,2020-02-15T06:59:42Z +8049,2005-07-28T16:51:58Z,673,42,2005-07-31T22:18:58Z,1,2020-02-15T06:59:42Z +8050,2005-07-28T16:55:47Z,1864,488,2005-08-02T13:20:47Z,1,2020-02-15T06:59:42Z +8051,2005-07-28T16:56:16Z,4405,192,2005-07-29T22:48:16Z,1,2020-02-15T06:59:42Z +8052,2005-07-28T16:57:31Z,2460,166,2005-08-03T18:03:31Z,2,2020-02-15T06:59:42Z +8053,2005-07-28T16:59:41Z,1511,526,2005-08-03T22:28:41Z,2,2020-02-15T06:59:42Z +8054,2005-07-28T17:02:18Z,1062,225,2005-08-06T11:55:18Z,1,2020-02-15T06:59:42Z +8055,2005-07-28T17:02:32Z,4162,304,2005-07-31T22:05:32Z,2,2020-02-15T06:59:42Z +8056,2005-07-28T17:04:15Z,4018,589,2005-08-03T19:11:15Z,2,2020-02-15T06:59:42Z +8057,2005-07-28T17:07:13Z,4177,483,2005-08-03T16:25:13Z,1,2020-02-15T06:59:42Z +8058,2005-07-28T17:07:49Z,2148,404,2005-08-03T22:57:49Z,1,2020-02-15T06:59:42Z +8059,2005-07-28T17:09:59Z,2611,372,2005-07-31T15:42:59Z,2,2020-02-15T06:59:42Z +8060,2005-07-28T17:10:02Z,3765,577,2005-08-05T17:11:02Z,1,2020-02-15T06:59:42Z +8061,2005-07-28T17:12:53Z,650,467,2005-08-05T13:56:53Z,2,2020-02-15T06:59:42Z +8062,2005-07-28T17:15:06Z,1384,317,2005-07-30T16:56:06Z,2,2020-02-15T06:59:42Z +8063,2005-07-28T17:15:11Z,935,163,2005-08-04T16:45:11Z,1,2020-02-15T06:59:42Z +8064,2005-07-28T17:15:38Z,3788,488,2005-08-04T18:04:38Z,2,2020-02-15T06:59:42Z +8065,2005-07-28T17:15:48Z,413,220,2005-08-04T15:49:48Z,2,2020-02-15T06:59:42Z +8066,2005-07-28T17:20:09Z,3208,462,2005-07-31T18:36:09Z,2,2020-02-15T06:59:42Z +8067,2005-07-28T17:20:17Z,3923,209,2005-07-29T21:55:17Z,1,2020-02-15T06:59:42Z +8068,2005-07-28T17:22:28Z,209,216,2005-07-29T12:24:28Z,2,2020-02-15T06:59:42Z +8069,2005-07-28T17:23:46Z,2822,178,2005-07-30T16:19:46Z,1,2020-02-15T06:59:42Z +8070,2005-07-28T17:26:56Z,1606,89,2005-08-01T17:33:56Z,1,2020-02-15T06:59:42Z +8071,2005-07-28T17:27:48Z,2582,131,2005-08-03T11:48:48Z,2,2020-02-15T06:59:42Z +8072,2005-07-28T17:27:59Z,2347,99,2005-07-30T19:08:59Z,1,2020-02-15T06:59:42Z +8073,2005-07-28T17:29:02Z,630,314,2005-08-01T22:17:02Z,2,2020-02-15T06:59:42Z +8074,2005-07-28T17:33:39Z,1558,1,2005-07-29T20:17:39Z,1,2020-02-15T06:59:42Z +8075,2005-07-28T17:37:28Z,2175,61,2005-07-29T11:56:28Z,2,2020-02-15T06:59:42Z +8076,2005-07-28T17:45:58Z,214,17,2005-08-04T18:07:58Z,2,2020-02-15T06:59:42Z +8077,2005-07-28T17:54:35Z,3253,122,2005-07-29T19:28:35Z,2,2020-02-15T06:59:42Z +8078,2005-07-28T17:54:42Z,3839,407,2005-07-30T18:18:42Z,2,2020-02-15T06:59:42Z +8079,2005-07-28T17:58:36Z,3564,432,2005-07-29T14:48:36Z,2,2020-02-15T06:59:42Z +8080,2005-07-28T18:05:06Z,3035,406,2005-07-29T22:44:06Z,2,2020-02-15T06:59:42Z +8081,2005-07-28T18:06:46Z,4404,362,2005-08-04T18:54:46Z,1,2020-02-15T06:59:42Z +8082,2005-07-28T18:08:02Z,3089,423,2005-08-04T14:33:02Z,2,2020-02-15T06:59:42Z +8083,2005-07-28T18:09:48Z,2187,30,2005-08-04T21:47:48Z,2,2020-02-15T06:59:42Z +8084,2005-07-28T18:11:58Z,911,571,2005-08-03T23:41:58Z,2,2020-02-15T06:59:42Z +8085,2005-07-28T18:13:15Z,3059,552,2005-08-04T13:45:15Z,2,2020-02-15T06:59:42Z +8086,2005-07-28T18:17:14Z,1182,3,2005-07-30T18:22:14Z,2,2020-02-15T06:59:42Z +8087,2005-07-28T18:21:16Z,1913,295,2005-08-03T12:38:16Z,2,2020-02-15T06:59:42Z +8088,2005-07-28T18:23:49Z,2590,343,2005-08-06T23:25:49Z,2,2020-02-15T06:59:42Z +8089,2005-07-28T18:26:47Z,1414,50,2005-08-03T21:28:47Z,1,2020-02-15T06:59:42Z +8090,2005-07-28T18:27:29Z,1336,387,2005-08-02T14:08:29Z,2,2020-02-15T06:59:42Z +8091,2005-07-28T18:27:29Z,3025,126,2005-08-01T19:45:29Z,2,2020-02-15T06:59:42Z +8092,2005-07-28T18:28:07Z,2034,167,2005-07-30T19:17:07Z,2,2020-02-15T06:59:42Z +8093,2005-07-28T18:29:16Z,1427,533,2005-08-05T21:49:16Z,1,2020-02-15T06:59:42Z +8094,2005-07-28T18:30:28Z,4276,432,2005-08-05T17:37:28Z,2,2020-02-15T06:59:42Z +8095,2005-07-28T18:32:40Z,2685,42,2005-08-06T23:45:40Z,1,2020-02-15T06:59:42Z +8096,2005-07-28T18:32:46Z,502,506,2005-08-06T15:00:46Z,1,2020-02-15T06:59:42Z +8097,2005-07-28T18:32:49Z,2719,436,2005-08-06T16:09:49Z,1,2020-02-15T06:59:42Z +8098,2005-07-28T18:34:20Z,1757,41,2005-07-31T19:07:20Z,2,2020-02-15T06:59:42Z +8099,2005-07-28T18:35:12Z,3694,36,2005-07-30T15:44:12Z,2,2020-02-15T06:59:42Z +8100,2005-07-28T18:43:11Z,2859,11,2005-08-02T15:56:11Z,2,2020-02-15T06:59:42Z +8101,2005-07-28T18:47:23Z,731,6,2005-07-31T16:23:23Z,1,2020-02-15T06:59:42Z +8102,2005-07-28T18:49:43Z,4505,237,2005-08-03T23:04:43Z,2,2020-02-15T06:59:42Z +8103,2005-07-28T18:50:14Z,4472,397,2005-08-04T16:53:14Z,1,2020-02-15T06:59:42Z +8104,2005-07-28T18:59:36Z,1080,533,2005-08-03T22:05:36Z,2,2020-02-15T06:59:42Z +8105,2005-07-28T18:59:46Z,1316,314,2005-07-29T22:51:46Z,1,2020-02-15T06:59:42Z +8106,2005-07-28T19:02:46Z,963,137,2005-07-30T20:48:46Z,2,2020-02-15T06:59:42Z +8107,2005-07-28T19:03:16Z,1318,518,2005-08-05T17:18:16Z,2,2020-02-15T06:59:42Z +8108,2005-07-28T19:07:38Z,1600,295,2005-08-03T15:13:38Z,2,2020-02-15T06:59:42Z +8109,2005-07-28T19:07:44Z,652,407,2005-07-31T14:59:44Z,1,2020-02-15T06:59:42Z +8110,2005-07-28T19:07:45Z,1244,225,2005-08-04T22:12:45Z,1,2020-02-15T06:59:42Z +8111,2005-07-28T19:10:03Z,3226,148,2005-07-29T22:25:03Z,1,2020-02-15T06:59:42Z +8112,2005-07-28T19:11:07Z,2444,528,2005-08-03T18:41:07Z,1,2020-02-15T06:59:42Z +8113,2005-07-28T19:14:00Z,4269,541,2005-08-06T00:05:00Z,2,2020-02-15T06:59:42Z +8114,2005-07-28T19:14:06Z,815,509,2005-08-05T13:16:06Z,1,2020-02-15T06:59:42Z +8115,2005-07-28T19:14:17Z,2080,106,2005-08-03T14:58:17Z,2,2020-02-15T06:59:42Z +8116,2005-07-28T19:20:07Z,4497,1,2005-07-29T22:54:07Z,1,2020-02-15T06:59:42Z +8117,2005-07-28T19:20:16Z,1502,300,2005-08-05T23:55:16Z,1,2020-02-15T06:59:42Z +8118,2005-07-28T19:22:22Z,331,566,2005-08-01T22:13:22Z,1,2020-02-15T06:59:42Z +8119,2005-07-28T19:23:15Z,1542,398,2005-08-04T15:53:15Z,2,2020-02-15T06:59:42Z +8120,2005-07-28T19:24:24Z,3993,235,2005-07-31T14:31:24Z,2,2020-02-15T06:59:42Z +8121,2005-07-28T19:25:45Z,2229,363,2005-08-02T13:30:45Z,2,2020-02-15T06:59:42Z +8122,2005-07-28T19:27:37Z,2141,18,2005-07-29T19:48:37Z,2,2020-02-15T06:59:42Z +8123,2005-07-28T19:28:23Z,2256,138,2005-08-04T19:41:23Z,1,2020-02-15T06:59:42Z +8124,2005-07-28T19:28:58Z,1187,357,2005-07-31T00:45:58Z,1,2020-02-15T06:59:42Z +8125,2005-07-28T19:31:48Z,4330,96,2005-07-30T01:09:48Z,1,2020-02-15T06:59:42Z +8126,2005-07-28T19:32:41Z,719,537,2005-08-05T00:33:41Z,2,2020-02-15T06:59:42Z +8127,2005-07-28T19:45:19Z,4265,20,2005-07-31T22:07:19Z,2,2020-02-15T06:59:42Z +8128,2005-07-28T19:46:06Z,2872,71,2005-08-06T16:10:06Z,2,2020-02-15T06:59:42Z +8129,2005-07-28T19:47:02Z,2546,345,2005-07-31T21:33:02Z,2,2020-02-15T06:59:42Z +8130,2005-07-28T19:48:15Z,4055,499,2005-08-05T14:18:15Z,2,2020-02-15T06:59:42Z +8131,2005-07-28T19:55:21Z,437,281,2005-08-02T21:52:21Z,2,2020-02-15T06:59:42Z +8132,2005-07-28T19:57:31Z,1303,562,2005-08-02T22:16:31Z,2,2020-02-15T06:59:42Z +8133,2005-07-28T20:01:06Z,849,461,2005-08-01T20:01:06Z,1,2020-02-15T06:59:42Z +8134,2005-07-28T20:01:23Z,1695,41,2005-08-03T01:00:23Z,2,2020-02-15T06:59:42Z +8135,2005-07-28T20:03:25Z,1339,164,2005-08-03T01:28:25Z,2,2020-02-15T06:59:42Z +8136,2005-07-28T20:05:48Z,3434,429,2005-08-01T20:31:48Z,2,2020-02-15T06:59:42Z +8137,2005-07-28T20:07:18Z,3188,312,2005-08-03T17:41:18Z,1,2020-02-15T06:59:42Z +8138,2005-07-28T20:12:17Z,1258,371,2005-08-01T15:21:17Z,2,2020-02-15T06:59:42Z +8139,2005-07-28T20:16:30Z,3651,177,2005-08-03T18:00:30Z,2,2020-02-15T06:59:42Z +8140,2005-07-28T20:17:50Z,4270,119,2005-07-30T18:07:50Z,1,2020-02-15T06:59:42Z +8141,2005-07-28T20:21:19Z,361,523,2005-07-30T19:16:19Z,2,2020-02-15T06:59:42Z +8142,2005-07-28T20:21:54Z,1075,322,2005-07-31T18:39:54Z,2,2020-02-15T06:59:42Z +8143,2005-07-28T20:23:11Z,3629,429,2005-08-01T18:17:11Z,1,2020-02-15T06:59:42Z +8144,2005-07-28T20:30:55Z,3556,320,2005-07-31T18:10:55Z,2,2020-02-15T06:59:42Z +8145,2005-07-28T20:34:41Z,937,198,2005-08-05T15:28:41Z,2,2020-02-15T06:59:42Z +8146,2005-07-28T20:37:36Z,2430,476,2005-07-31T16:03:36Z,2,2020-02-15T06:59:42Z +8147,2005-07-28T20:37:56Z,628,228,2005-07-30T18:26:56Z,1,2020-02-15T06:59:42Z +8148,2005-07-28T20:39:47Z,537,347,2005-08-02T16:29:47Z,1,2020-02-15T06:59:42Z +8149,2005-07-28T20:48:12Z,1790,591,2005-08-01T20:07:12Z,2,2020-02-15T06:59:42Z +8150,2005-07-28T20:50:41Z,3489,497,2005-08-02T00:43:41Z,1,2020-02-15T06:59:42Z +8151,2005-07-28T20:50:52Z,4370,495,2005-07-31T14:50:52Z,1,2020-02-15T06:59:42Z +8152,2005-07-28T20:53:05Z,2557,46,2005-08-06T20:03:05Z,2,2020-02-15T06:59:42Z +8153,2005-07-28T20:55:49Z,2173,347,2005-08-01T15:56:49Z,2,2020-02-15T06:59:42Z +8154,2005-07-28T20:56:18Z,1180,285,2005-08-01T21:56:18Z,2,2020-02-15T06:59:42Z +8155,2005-07-28T20:57:06Z,3023,428,2005-08-02T18:40:06Z,2,2020-02-15T06:59:42Z +8156,2005-07-28T20:59:04Z,1977,257,2005-08-01T01:52:04Z,1,2020-02-15T06:59:42Z +8157,2005-07-28T21:06:45Z,915,566,2005-08-04T16:06:45Z,1,2020-02-15T06:59:42Z +8158,2005-07-28T21:08:46Z,4327,458,2005-08-01T21:50:46Z,2,2020-02-15T06:59:42Z +8159,2005-07-28T21:09:28Z,1118,47,2005-08-04T15:34:28Z,1,2020-02-15T06:59:42Z +8160,2005-07-28T21:10:30Z,2446,138,2005-08-05T16:52:30Z,2,2020-02-15T06:59:42Z +8161,2005-07-28T21:11:00Z,848,555,2005-08-03T23:32:00Z,1,2020-02-15T06:59:42Z +8162,2005-07-28T21:11:46Z,4393,107,2005-08-04T18:26:46Z,1,2020-02-15T06:59:42Z +8163,2005-07-28T21:11:48Z,1919,157,2005-07-31T18:30:48Z,1,2020-02-15T06:59:42Z +8164,2005-07-28T21:17:19Z,1674,461,2005-07-30T21:12:19Z,2,2020-02-15T06:59:42Z +8165,2005-07-28T21:23:06Z,3460,197,2005-08-01T21:32:06Z,1,2020-02-15T06:59:42Z +8166,2005-07-28T21:23:33Z,3906,42,2005-08-03T21:07:33Z,2,2020-02-15T06:59:42Z +8167,2005-07-28T21:25:45Z,3181,311,2005-08-04T18:04:45Z,1,2020-02-15T06:59:42Z +8168,2005-07-28T21:28:32Z,1120,365,2005-07-30T02:10:32Z,1,2020-02-15T06:59:42Z +8169,2005-07-28T21:29:46Z,4086,366,2005-08-06T22:29:46Z,1,2020-02-15T06:59:42Z +8170,2005-07-28T21:32:29Z,2495,40,2005-08-03T22:02:29Z,1,2020-02-15T06:59:42Z +8171,2005-07-28T21:32:57Z,3380,296,2005-07-30T21:19:57Z,1,2020-02-15T06:59:42Z +8172,2005-07-28T21:34:36Z,1237,329,2005-08-06T23:53:36Z,1,2020-02-15T06:59:42Z +8173,2005-07-28T21:35:44Z,4377,332,2005-08-06T19:15:44Z,2,2020-02-15T06:59:42Z +8174,2005-07-28T21:36:52Z,465,359,2005-08-04T00:32:52Z,1,2020-02-15T06:59:42Z +8175,2005-07-28T21:38:16Z,641,429,2005-08-07T01:34:16Z,2,2020-02-15T06:59:42Z +8176,2005-07-28T21:42:08Z,3527,347,2005-08-03T22:59:08Z,2,2020-02-15T06:59:42Z +8177,2005-07-28T21:43:54Z,3696,122,2005-08-02T22:38:54Z,2,2020-02-15T06:59:42Z +8178,2005-07-28T21:54:31Z,2825,503,2005-08-02T23:56:31Z,2,2020-02-15T06:59:42Z +8179,2005-07-28T22:05:13Z,2902,578,2005-07-30T21:57:13Z,2,2020-02-15T06:59:42Z +8180,2005-07-28T22:05:24Z,3236,281,2005-08-01T19:09:24Z,1,2020-02-15T06:59:42Z +8181,2005-07-28T22:18:38Z,357,522,2005-08-06T02:43:38Z,2,2020-02-15T06:59:42Z +8182,2005-07-28T22:19:12Z,4120,427,2005-08-01T22:40:12Z,2,2020-02-15T06:59:42Z +8183,2005-07-28T22:21:07Z,1545,119,2005-08-04T19:20:07Z,2,2020-02-15T06:59:42Z +8184,2005-07-28T22:22:35Z,1249,160,2005-07-31T19:30:35Z,1,2020-02-15T06:59:42Z +8185,2005-07-28T22:23:49Z,2452,568,2005-07-31T00:07:49Z,1,2020-02-15T06:59:42Z +8186,2005-07-28T22:30:27Z,4255,102,2005-07-31T21:08:27Z,1,2020-02-15T06:59:42Z +8187,2005-07-28T22:33:53Z,945,87,2005-08-03T03:54:53Z,1,2020-02-15T06:59:42Z +8188,2005-07-28T22:34:12Z,3826,10,2005-08-01T02:32:12Z,2,2020-02-15T06:59:42Z +8189,2005-07-28T22:36:26Z,3515,361,2005-08-04T00:12:26Z,2,2020-02-15T06:59:42Z +8190,2005-07-28T22:47:06Z,2290,267,2005-08-04T21:51:06Z,1,2020-02-15T06:59:42Z +8191,2005-07-28T22:47:14Z,1777,508,2005-07-31T23:13:14Z,2,2020-02-15T06:59:42Z +8192,2005-07-28T22:49:11Z,255,552,2005-07-30T04:13:11Z,1,2020-02-15T06:59:42Z +8193,2005-07-28T22:50:50Z,2402,15,2005-08-01T04:14:50Z,2,2020-02-15T06:59:42Z +8194,2005-07-28T22:51:44Z,1148,424,2005-07-29T17:13:44Z,1,2020-02-15T06:59:42Z +8195,2005-07-28T22:52:58Z,3989,590,2005-08-04T02:12:58Z,1,2020-02-15T06:59:42Z +8196,2005-07-28T22:56:11Z,3435,21,2005-08-06T04:53:11Z,1,2020-02-15T06:59:42Z +8197,2005-07-28T23:04:10Z,4126,407,2005-08-05T00:06:10Z,2,2020-02-15T06:59:42Z +8198,2005-07-28T23:08:05Z,1767,356,2005-08-06T00:43:05Z,2,2020-02-15T06:59:42Z +8199,2005-07-28T23:10:25Z,404,471,2005-08-04T23:30:25Z,1,2020-02-15T06:59:42Z +8200,2005-07-28T23:10:46Z,353,185,2005-07-29T18:35:46Z,1,2020-02-15T06:59:42Z +8201,2005-07-28T23:10:48Z,220,567,2005-08-01T00:50:48Z,2,2020-02-15T06:59:42Z +8202,2005-07-28T23:11:45Z,3802,75,2005-08-03T21:57:45Z,2,2020-02-15T06:59:42Z +8203,2005-07-28T23:14:56Z,3878,100,2005-07-31T04:19:56Z,2,2020-02-15T06:59:42Z +8204,2005-07-28T23:18:29Z,2472,398,2005-08-02T04:49:29Z,1,2020-02-15T06:59:42Z +8205,2005-07-28T23:18:48Z,2944,434,2005-07-30T00:37:48Z,2,2020-02-15T06:59:42Z +8206,2005-07-28T23:20:31Z,2979,422,2005-08-04T21:36:31Z,1,2020-02-15T06:59:42Z +8207,2005-07-28T23:26:31Z,1195,475,2005-08-06T03:26:31Z,1,2020-02-15T06:59:42Z +8208,2005-07-28T23:26:35Z,1362,530,2005-08-01T23:00:35Z,2,2020-02-15T06:59:42Z +8209,2005-07-28T23:29:28Z,2484,127,2005-08-07T04:22:28Z,2,2020-02-15T06:59:42Z +8210,2005-07-28T23:31:05Z,3424,300,2005-08-06T17:36:05Z,1,2020-02-15T06:59:42Z +8211,2005-07-28T23:34:22Z,1859,193,2005-08-04T21:18:22Z,1,2020-02-15T06:59:42Z +8212,2005-07-28T23:37:23Z,1305,159,2005-08-04T04:33:23Z,2,2020-02-15T06:59:42Z +8213,2005-07-28T23:37:33Z,3816,17,2005-07-31T00:32:33Z,2,2020-02-15T06:59:42Z +8214,2005-07-28T23:37:57Z,352,509,2005-08-07T00:29:57Z,2,2020-02-15T06:59:42Z +8215,2005-07-28T23:43:56Z,2921,437,2005-08-03T19:30:56Z,2,2020-02-15T06:59:42Z +8216,2005-07-28T23:43:59Z,2211,254,2005-08-06T05:05:59Z,1,2020-02-15T06:59:42Z +8217,2005-07-28T23:44:13Z,3747,206,2005-08-03T21:27:13Z,2,2020-02-15T06:59:42Z +8218,2005-07-28T23:45:41Z,2769,578,2005-08-02T00:14:41Z,1,2020-02-15T06:59:42Z +8219,2005-07-28T23:46:31Z,3609,227,2005-08-03T00:11:31Z,2,2020-02-15T06:59:42Z +8220,2005-07-28T23:46:41Z,1061,360,2005-07-31T22:14:41Z,2,2020-02-15T06:59:42Z +8221,2005-07-28T23:47:19Z,3138,496,2005-08-02T20:42:19Z,1,2020-02-15T06:59:42Z +8222,2005-07-28T23:51:53Z,2999,278,2005-08-05T22:48:53Z,1,2020-02-15T06:59:42Z +8223,2005-07-28T23:56:01Z,4508,282,2005-08-03T22:27:01Z,1,2020-02-15T06:59:42Z +8224,2005-07-28T23:59:02Z,1995,467,2005-08-02T04:54:02Z,1,2020-02-15T06:59:42Z +8225,2005-07-28T23:59:29Z,3631,41,2005-07-30T03:27:29Z,2,2020-02-15T06:59:42Z +8226,2005-07-29T00:01:04Z,3541,368,2005-08-01T19:08:04Z,2,2020-02-15T06:59:42Z +8227,2005-07-29T00:02:22Z,269,167,2005-07-31T04:05:22Z,1,2020-02-15T06:59:42Z +8228,2005-07-29T00:08:58Z,1955,72,2005-08-03T00:12:58Z,2,2020-02-15T06:59:42Z +8229,2005-07-29T00:09:08Z,4272,498,2005-07-31T19:29:08Z,2,2020-02-15T06:59:42Z +8230,2005-07-29T00:12:59Z,1937,2,2005-08-06T19:52:59Z,2,2020-02-15T06:59:42Z +8231,2005-07-29T00:14:37Z,1083,331,2005-07-31T19:12:37Z,1,2020-02-15T06:59:42Z +8232,2005-07-29T00:14:37Z,3255,526,2005-08-06T00:57:37Z,1,2020-02-15T06:59:42Z +8233,2005-07-29T00:16:23Z,1640,93,2005-08-03T05:17:23Z,2,2020-02-15T06:59:42Z +8234,2005-07-29T00:19:20Z,644,227,2005-08-03T19:16:20Z,2,2020-02-15T06:59:42Z +8235,2005-07-29T00:22:56Z,1581,320,2005-08-03T04:03:56Z,2,2020-02-15T06:59:42Z +8236,2005-07-29T00:27:04Z,1901,369,2005-07-31T05:02:04Z,2,2020-02-15T06:59:42Z +8237,2005-07-29T00:29:56Z,608,441,2005-08-06T03:10:56Z,1,2020-02-15T06:59:42Z +8238,2005-07-29T00:30:06Z,2941,320,2005-08-02T22:52:06Z,2,2020-02-15T06:59:42Z +8239,2005-07-29T00:31:39Z,3951,549,2005-07-29T19:33:39Z,1,2020-02-15T06:59:42Z +8240,2005-07-29T00:33:32Z,1975,509,2005-08-05T21:25:32Z,2,2020-02-15T06:59:42Z +8241,2005-07-29T00:33:36Z,4297,26,2005-08-03T01:31:36Z,1,2020-02-15T06:59:42Z +8242,2005-07-29T00:34:27Z,509,99,2005-08-05T23:13:27Z,2,2020-02-15T06:59:42Z +8243,2005-07-29T00:35:33Z,1873,481,2005-08-04T06:02:33Z,2,2020-02-15T06:59:42Z +8244,2005-07-29T00:35:34Z,1552,175,2005-08-05T04:18:34Z,2,2020-02-15T06:59:42Z +8245,2005-07-29T00:37:09Z,3330,555,2005-08-05T05:48:09Z,2,2020-02-15T06:59:42Z +8246,2005-07-29T00:38:41Z,1724,146,2005-08-05T06:28:41Z,2,2020-02-15T06:59:42Z +8247,2005-07-29T00:41:38Z,2607,539,2005-08-06T20:29:38Z,2,2020-02-15T06:59:42Z +8248,2005-07-29T00:41:56Z,2017,272,2005-08-05T18:53:56Z,2,2020-02-15T06:59:42Z +8249,2005-07-29T00:48:44Z,3331,57,2005-08-07T04:25:44Z,2,2020-02-15T06:59:42Z +8250,2005-07-29T00:49:15Z,4519,533,2005-08-04T02:53:15Z,1,2020-02-15T06:59:42Z +8251,2005-07-29T00:50:14Z,2317,408,2005-08-03T23:52:14Z,2,2020-02-15T06:59:42Z +8252,2005-07-29T00:54:17Z,3312,257,2005-07-31T20:34:17Z,1,2020-02-15T06:59:42Z +8253,2005-07-29T00:57:06Z,2388,76,2005-08-07T01:46:06Z,1,2020-02-15T06:59:42Z +8254,2005-07-29T00:59:31Z,1787,392,2005-08-03T23:43:31Z,2,2020-02-15T06:59:42Z +8255,2005-07-29T01:02:30Z,3715,224,2005-08-01T22:39:30Z,1,2020-02-15T06:59:42Z +8256,2005-07-29T01:02:42Z,1483,537,2005-07-31T22:29:42Z,2,2020-02-15T06:59:42Z +8257,2005-07-29T01:03:20Z,3024,566,2005-08-04T21:54:20Z,1,2020-02-15T06:59:42Z +8258,2005-07-29T01:03:42Z,1379,370,2005-08-04T22:08:42Z,2,2020-02-15T06:59:42Z +8259,2005-07-29T01:05:16Z,343,274,2005-08-01T23:27:16Z,2,2020-02-15T06:59:42Z +8260,2005-07-29T01:11:00Z,4249,366,2005-08-06T00:36:00Z,1,2020-02-15T06:59:42Z +8261,2005-07-29T01:11:05Z,1915,50,2005-08-04T03:13:05Z,2,2020-02-15T06:59:42Z +8262,2005-07-29T01:11:18Z,1341,563,2005-08-02T05:17:18Z,2,2020-02-15T06:59:42Z +8263,2005-07-29T01:11:23Z,28,5,2005-07-31T01:53:23Z,2,2020-02-15T06:59:42Z +8264,2005-07-29T01:18:50Z,2987,175,2005-08-03T05:31:50Z,2,2020-02-15T06:59:42Z +8265,2005-07-29T01:20:15Z,2389,409,2005-08-06T19:32:15Z,2,2020-02-15T06:59:42Z +8266,2005-07-29T01:20:16Z,1972,196,2005-07-30T04:31:16Z,1,2020-02-15T06:59:42Z +8267,2005-07-29T01:21:02Z,4107,131,2005-08-04T19:34:02Z,2,2020-02-15T06:59:42Z +8268,2005-07-29T01:23:23Z,4239,421,2005-08-05T01:36:23Z,1,2020-02-15T06:59:42Z +8269,2005-07-29T01:26:54Z,2778,376,2005-08-04T22:42:54Z,1,2020-02-15T06:59:42Z +8270,2005-07-29T01:27:22Z,3565,282,2005-07-29T20:55:22Z,1,2020-02-15T06:59:42Z +8271,2005-07-29T01:27:44Z,83,481,2005-08-07T05:01:44Z,2,2020-02-15T06:59:42Z +8272,2005-07-29T01:29:51Z,70,346,2005-08-03T21:56:51Z,2,2020-02-15T06:59:42Z +8273,2005-07-29T01:33:16Z,4244,532,2005-08-06T04:26:16Z,2,2020-02-15T06:59:42Z +8274,2005-07-29T01:34:32Z,2634,340,2005-08-01T20:15:32Z,2,2020-02-15T06:59:42Z +8275,2005-07-29T01:35:47Z,4432,336,2005-07-30T02:16:47Z,1,2020-02-15T06:59:42Z +8276,2005-07-29T01:38:43Z,2451,466,2005-08-03T23:00:43Z,1,2020-02-15T06:59:42Z +8277,2005-07-29T01:38:53Z,1296,13,2005-08-04T07:09:53Z,2,2020-02-15T06:59:42Z +8278,2005-07-29T01:42:55Z,768,265,2005-08-05T01:55:55Z,2,2020-02-15T06:59:42Z +8279,2005-07-29T01:43:37Z,3838,176,2005-08-03T02:36:37Z,1,2020-02-15T06:59:42Z +8280,2005-07-29T01:45:51Z,1208,195,2005-08-05T22:51:51Z,2,2020-02-15T06:59:42Z +8281,2005-07-29T01:46:00Z,899,441,2005-08-04T23:09:00Z,1,2020-02-15T06:59:42Z +8282,2005-07-29T01:49:04Z,980,462,2005-08-05T01:51:04Z,2,2020-02-15T06:59:42Z +8283,2005-07-29T01:52:22Z,2002,300,2005-08-05T03:22:22Z,2,2020-02-15T06:59:42Z +8284,2005-07-29T01:56:40Z,4371,446,2005-08-07T07:15:40Z,2,2020-02-15T06:59:42Z +8285,2005-07-29T02:00:18Z,678,56,2005-08-03T20:43:18Z,2,2020-02-15T06:59:42Z +8286,2005-07-29T02:02:46Z,4092,87,2005-08-06T06:00:46Z,1,2020-02-15T06:59:42Z +8287,2005-07-29T02:03:58Z,812,178,2005-08-07T02:11:58Z,1,2020-02-15T06:59:42Z +8288,2005-07-29T02:04:22Z,1822,55,2005-08-05T04:21:22Z,2,2020-02-15T06:59:42Z +8289,2005-07-29T02:23:24Z,4579,459,2005-08-06T03:23:24Z,2,2020-02-15T06:59:42Z +8290,2005-07-29T02:24:08Z,3823,462,2005-08-03T01:02:08Z,2,2020-02-15T06:59:42Z +8291,2005-07-29T02:28:25Z,2817,455,2005-08-03T20:57:25Z,2,2020-02-15T06:59:42Z +8292,2005-07-29T02:29:36Z,4003,192,2005-08-07T08:06:36Z,1,2020-02-15T06:59:42Z +8293,2005-07-29T02:30:50Z,831,71,2005-08-04T03:09:50Z,2,2020-02-15T06:59:42Z +8294,2005-07-29T02:32:41Z,1811,520,2005-08-02T06:28:41Z,1,2020-02-15T06:59:42Z +8295,2005-07-29T02:42:14Z,2065,406,2005-07-30T22:22:14Z,1,2020-02-15T06:59:42Z +8296,2005-07-29T02:43:25Z,2543,88,2005-08-01T00:23:25Z,1,2020-02-15T06:59:42Z +8297,2005-07-29T02:45:46Z,3774,349,2005-07-31T20:49:46Z,1,2020-02-15T06:59:42Z +8298,2005-07-29T02:47:36Z,952,493,2005-08-05T07:58:36Z,2,2020-02-15T06:59:42Z +8299,2005-07-29T02:56:00Z,1797,173,2005-07-30T22:35:00Z,2,2020-02-15T06:59:42Z +8300,2005-07-29T02:57:59Z,4364,222,2005-08-05T01:12:59Z,2,2020-02-15T06:59:42Z +8301,2005-07-29T03:00:08Z,562,101,2005-08-01T04:26:08Z,2,2020-02-15T06:59:42Z +8302,2005-07-29T03:01:24Z,1314,103,2005-07-30T01:08:24Z,2,2020-02-15T06:59:42Z +8303,2005-07-29T03:05:56Z,1620,574,2005-08-04T06:13:56Z,1,2020-02-15T06:59:42Z +8304,2005-07-29T03:08:30Z,4431,119,2005-08-02T03:04:30Z,2,2020-02-15T06:59:42Z +8305,2005-07-29T03:08:47Z,3916,566,2005-08-06T07:49:47Z,2,2020-02-15T06:59:42Z +8306,2005-07-29T03:12:26Z,1708,232,2005-08-01T23:26:26Z,1,2020-02-15T06:59:42Z +8307,2005-07-29T03:18:34Z,3197,39,2005-08-06T05:51:34Z,2,2020-02-15T06:59:42Z +8308,2005-07-29T03:22:15Z,601,582,2005-08-04T21:38:15Z,2,2020-02-15T06:59:42Z +8309,2005-07-29T03:22:20Z,2250,446,2005-08-01T06:30:20Z,1,2020-02-15T06:59:42Z +8310,2005-07-29T03:25:56Z,2637,238,2005-08-06T23:18:56Z,2,2020-02-15T06:59:42Z +8311,2005-07-29T03:26:07Z,3623,63,2005-08-02T01:46:07Z,1,2020-02-15T06:59:42Z +8312,2005-07-29T03:32:38Z,3996,143,2005-07-31T02:12:38Z,1,2020-02-15T06:59:42Z +8313,2005-07-29T03:34:21Z,2736,91,2005-08-02T01:32:21Z,1,2020-02-15T06:59:42Z +8314,2005-07-29T03:35:04Z,2182,118,2005-08-06T08:43:04Z,2,2020-02-15T06:59:42Z +8315,2005-07-29T03:37:07Z,1420,135,2005-07-29T23:22:07Z,2,2020-02-15T06:59:42Z +8316,2005-07-29T03:38:49Z,4118,549,2005-08-03T07:41:49Z,1,2020-02-15T06:59:42Z +8317,2005-07-29T03:39:07Z,3898,415,2005-08-03T00:14:07Z,1,2020-02-15T06:59:42Z +8318,2005-07-29T03:44:30Z,4524,167,2005-07-30T05:03:30Z,2,2020-02-15T06:59:42Z +8319,2005-07-29T03:44:52Z,747,280,2005-08-01T00:35:52Z,2,2020-02-15T06:59:42Z +8320,2005-07-29T03:49:58Z,1285,513,2005-08-03T01:00:58Z,1,2020-02-15T06:59:42Z +8321,2005-07-29T03:50:54Z,1875,354,2005-08-01T02:08:54Z,1,2020-02-15T06:59:42Z +8322,2005-07-29T03:52:49Z,301,541,2005-08-02T22:53:49Z,1,2020-02-15T06:59:42Z +8323,2005-07-29T03:52:59Z,2766,87,2005-08-06T01:49:59Z,2,2020-02-15T06:59:42Z +8324,2005-07-29T03:56:05Z,1467,98,2005-08-02T01:41:05Z,1,2020-02-15T06:59:42Z +8325,2005-07-29T03:57:27Z,932,362,2005-08-06T22:30:27Z,1,2020-02-15T06:59:42Z +8326,2005-07-29T03:58:49Z,108,1,2005-08-01T05:16:49Z,2,2020-02-15T06:59:42Z +8327,2005-07-29T04:00:52Z,2928,317,2005-07-31T08:27:52Z,1,2020-02-15T06:59:42Z +8328,2005-07-29T04:06:24Z,4454,314,2005-08-03T22:24:24Z,1,2020-02-15T06:59:42Z +8329,2005-07-29T04:06:33Z,3468,108,2005-08-06T01:46:33Z,1,2020-02-15T06:59:42Z +8330,2005-07-29T04:09:07Z,2294,412,2005-08-05T05:00:07Z,2,2020-02-15T06:59:42Z +8331,2005-07-29T04:13:29Z,18,148,2005-08-04T07:09:29Z,1,2020-02-15T06:59:42Z +8332,2005-07-29T04:16:00Z,1142,217,2005-08-03T03:34:00Z,1,2020-02-15T06:59:42Z +8333,2005-07-29T04:16:40Z,823,494,2005-08-02T10:10:40Z,2,2020-02-15T06:59:42Z +8334,2005-07-29T04:18:25Z,982,154,2005-08-07T07:18:25Z,2,2020-02-15T06:59:42Z +8335,2005-07-29T04:18:25Z,1719,143,2005-07-31T08:12:25Z,2,2020-02-15T06:59:42Z +8336,2005-07-29T04:20:42Z,2120,210,2005-08-05T10:17:42Z,1,2020-02-15T06:59:42Z +8337,2005-07-29T04:31:55Z,752,157,2005-08-02T02:38:55Z,2,2020-02-15T06:59:42Z +8338,2005-07-29T04:40:39Z,2257,389,2005-08-07T04:40:39Z,2,2020-02-15T06:59:42Z +8339,2005-07-29T04:41:13Z,1870,129,2005-07-30T09:01:13Z,2,2020-02-15T06:59:42Z +8340,2005-07-29T04:41:44Z,1553,386,2005-08-07T10:33:44Z,1,2020-02-15T06:59:42Z +8341,2005-07-29T04:42:01Z,4208,309,2005-08-04T00:58:01Z,1,2020-02-15T06:59:42Z +8342,2005-07-29T04:45:05Z,3301,572,2005-08-01T07:20:05Z,1,2020-02-15T06:59:42Z +8343,2005-07-29T04:45:16Z,4267,439,2005-08-02T03:37:16Z,1,2020-02-15T06:59:42Z +8344,2005-07-29T04:45:25Z,221,257,2005-08-06T01:53:25Z,1,2020-02-15T06:59:42Z +8345,2005-07-29T04:47:37Z,1034,129,2005-08-02T07:25:37Z,1,2020-02-15T06:59:42Z +8346,2005-07-29T04:48:22Z,2475,385,2005-08-01T04:22:22Z,1,2020-02-15T06:59:42Z +8347,2005-07-29T04:49:25Z,4407,157,2005-07-31T00:57:25Z,2,2020-02-15T06:59:42Z +8348,2005-07-29T04:49:26Z,4533,174,2005-08-05T03:26:26Z,2,2020-02-15T06:59:42Z +8349,2005-07-29T04:50:22Z,534,416,2005-08-05T08:50:22Z,1,2020-02-15T06:59:42Z +8350,2005-07-29T04:50:39Z,3726,513,2005-07-31T05:36:39Z,2,2020-02-15T06:59:42Z +8351,2005-07-29T04:50:53Z,2963,202,2005-07-30T07:28:53Z,2,2020-02-15T06:59:42Z +8352,2005-07-29T04:52:01Z,2710,168,2005-08-06T07:39:01Z,2,2020-02-15T06:59:42Z +8353,2005-07-29T04:52:10Z,26,585,2005-07-30T04:01:10Z,1,2020-02-15T06:59:42Z +8354,2005-07-29T04:56:26Z,4476,579,2005-08-01T08:04:26Z,2,2020-02-15T06:59:42Z +8355,2005-07-29T04:57:43Z,4569,270,2005-08-03T06:25:43Z,1,2020-02-15T06:59:42Z +8356,2005-07-29T04:58:56Z,2951,483,2005-08-06T03:07:56Z,1,2020-02-15T06:59:42Z +8357,2005-07-29T04:59:44Z,892,76,2005-08-01T04:26:44Z,1,2020-02-15T06:59:42Z +8358,2005-07-29T05:00:58Z,1449,372,2005-08-01T02:49:58Z,2,2020-02-15T06:59:42Z +8359,2005-07-29T05:02:12Z,140,531,2005-08-04T08:52:12Z,1,2020-02-15T06:59:42Z +8360,2005-07-29T05:08:00Z,4135,62,2005-08-02T00:40:00Z,1,2020-02-15T06:59:42Z +8361,2005-07-29T05:08:57Z,3404,360,2005-08-03T02:49:57Z,1,2020-02-15T06:59:42Z +8362,2005-07-29T05:09:11Z,2287,223,2005-08-04T00:08:11Z,2,2020-02-15T06:59:42Z +8363,2005-07-29T05:10:08Z,1607,302,2005-08-06T00:11:08Z,1,2020-02-15T06:59:42Z +8364,2005-07-29T05:10:31Z,1361,362,2005-07-30T04:02:31Z,2,2020-02-15T06:59:42Z +8365,2005-07-29T05:11:00Z,53,280,2005-07-30T05:30:00Z,2,2020-02-15T06:59:42Z +8366,2005-07-29T05:11:14Z,479,39,2005-08-05T01:48:14Z,1,2020-02-15T06:59:42Z +8367,2005-07-29T05:11:19Z,4551,383,2005-08-02T00:35:19Z,1,2020-02-15T06:59:42Z +8368,2005-07-29T05:15:41Z,1410,200,2005-08-07T01:35:41Z,1,2020-02-15T06:59:42Z +8369,2005-07-29T05:15:42Z,1456,507,2005-08-01T03:36:42Z,2,2020-02-15T06:59:42Z +8370,2005-07-29T05:16:21Z,1206,121,2005-08-06T23:16:21Z,1,2020-02-15T06:59:42Z +8371,2005-07-29T05:16:35Z,2466,396,2005-07-31T01:49:35Z,1,2020-02-15T06:59:42Z +8372,2005-07-29T05:18:08Z,754,523,2005-08-06T09:39:08Z,1,2020-02-15T06:59:42Z +8373,2005-07-29T05:19:53Z,2070,457,2005-08-04T04:39:53Z,1,2020-02-15T06:59:42Z +8374,2005-07-29T05:24:02Z,1084,589,2005-08-05T03:55:02Z,1,2020-02-15T06:59:42Z +8375,2005-07-29T05:25:30Z,3634,125,2005-08-04T01:43:30Z,2,2020-02-15T06:59:42Z +8376,2005-07-29T05:25:32Z,3588,43,2005-08-01T07:42:32Z,2,2020-02-15T06:59:42Z +8377,2005-07-29T05:27:40Z,270,73,2005-07-30T02:52:40Z,2,2020-02-15T06:59:42Z +8378,2005-07-29T05:28:35Z,3500,347,2005-08-02T05:55:35Z,1,2020-02-15T06:59:42Z +8379,2005-07-29T05:29:40Z,3907,193,2005-08-06T05:56:40Z,2,2020-02-15T06:59:42Z +8380,2005-07-29T05:31:29Z,2279,145,2005-08-02T01:27:29Z,1,2020-02-15T06:59:42Z +8381,2005-07-29T05:31:44Z,865,313,2005-07-31T09:20:44Z,1,2020-02-15T06:59:42Z +8382,2005-07-29T05:33:21Z,317,238,2005-08-03T03:38:21Z,1,2020-02-15T06:59:42Z +8383,2005-07-29T05:36:47Z,3809,495,2005-08-03T05:53:47Z,2,2020-02-15T06:59:42Z +8384,2005-07-29T05:38:43Z,3807,227,2005-08-01T07:31:43Z,2,2020-02-15T06:59:42Z +8385,2005-07-29T05:39:16Z,4108,233,2005-08-03T00:30:16Z,1,2020-02-15T06:59:42Z +8386,2005-07-29T05:45:30Z,388,435,2005-08-05T03:56:30Z,2,2020-02-15T06:59:42Z +8387,2005-07-29T05:47:27Z,910,428,2005-07-31T06:26:27Z,1,2020-02-15T06:59:42Z +8388,2005-07-29T05:48:15Z,770,178,2005-08-05T06:24:15Z,2,2020-02-15T06:59:42Z +8389,2005-07-29T05:50:09Z,1241,133,2005-08-06T05:15:09Z,2,2020-02-15T06:59:42Z +8390,2005-07-29T05:52:26Z,581,32,2005-08-04T08:12:26Z,2,2020-02-15T06:59:42Z +8391,2005-07-29T05:52:50Z,2134,36,2005-08-03T04:45:50Z,2,2020-02-15T06:59:42Z +8392,2005-07-29T06:00:27Z,1323,65,2005-08-02T00:30:27Z,2,2020-02-15T06:59:42Z +8393,2005-07-29T06:02:11Z,3369,504,2005-08-07T03:23:11Z,1,2020-02-15T06:59:42Z +8394,2005-07-29T06:02:14Z,3933,148,2005-08-03T08:15:14Z,1,2020-02-15T06:59:42Z +8395,2005-07-29T06:03:30Z,1471,535,2005-07-31T09:08:30Z,2,2020-02-15T06:59:42Z +8396,2005-07-29T06:07:00Z,3911,516,2005-07-30T05:32:00Z,2,2020-02-15T06:59:42Z +8397,2005-07-29T06:09:35Z,3542,518,2005-08-01T02:08:35Z,1,2020-02-15T06:59:42Z +8398,2005-07-29T06:12:40Z,348,220,2005-08-02T05:01:40Z,2,2020-02-15T06:59:42Z +8399,2005-07-29T06:20:18Z,233,286,2005-08-04T01:26:18Z,1,2020-02-15T06:59:42Z +8400,2005-07-29T06:23:56Z,3680,573,2005-07-31T02:41:56Z,2,2020-02-15T06:59:42Z +8401,2005-07-29T06:25:08Z,3121,232,2005-08-01T06:49:08Z,1,2020-02-15T06:59:42Z +8402,2005-07-29T06:25:45Z,186,47,2005-08-07T10:48:45Z,1,2020-02-15T06:59:42Z +8403,2005-07-29T06:26:39Z,1360,163,2005-08-02T05:37:39Z,1,2020-02-15T06:59:42Z +8404,2005-07-29T06:27:01Z,2086,65,2005-08-07T04:33:01Z,1,2020-02-15T06:59:42Z +8405,2005-07-29T06:28:19Z,2164,76,2005-08-07T08:14:19Z,2,2020-02-15T06:59:42Z +8406,2005-07-29T06:34:45Z,2047,274,2005-08-06T02:28:45Z,1,2020-02-15T06:59:42Z +8407,2005-07-29T06:37:02Z,2985,336,2005-08-04T03:13:02Z,1,2020-02-15T06:59:42Z +8408,2005-07-29T06:40:40Z,1841,90,2005-07-30T10:02:40Z,2,2020-02-15T06:59:42Z +8409,2005-07-29T06:41:22Z,4314,303,2005-07-31T11:21:22Z,1,2020-02-15T06:59:42Z +8410,2005-07-29T06:41:36Z,3448,277,2005-08-02T08:38:36Z,1,2020-02-15T06:59:42Z +8411,2005-07-29T06:44:23Z,3085,412,2005-08-07T03:56:23Z,1,2020-02-15T06:59:42Z +8412,2005-07-29T06:44:50Z,743,312,2005-08-06T05:04:50Z,1,2020-02-15T06:59:42Z +8413,2005-07-29T06:47:39Z,2762,104,2005-08-02T09:15:39Z,2,2020-02-15T06:59:42Z +8414,2005-07-29T06:48:35Z,1337,433,2005-08-06T10:54:35Z,2,2020-02-15T06:59:42Z +8415,2005-07-29T06:52:27Z,2903,128,2005-08-02T10:40:27Z,1,2020-02-15T06:59:42Z +8416,2005-07-29T06:52:54Z,1999,315,2005-08-05T09:50:54Z,2,2020-02-15T06:59:42Z +8417,2005-07-29T06:53:36Z,750,227,2005-08-06T09:31:36Z,2,2020-02-15T06:59:42Z +8418,2005-07-29T06:54:21Z,3081,355,2005-08-05T06:50:21Z,2,2020-02-15T06:59:42Z +8419,2005-07-29T06:54:48Z,4574,37,2005-08-06T05:02:48Z,1,2020-02-15T06:59:42Z +8420,2005-07-29T07:00:45Z,4184,376,2005-08-06T02:20:45Z,1,2020-02-15T06:59:42Z +8421,2005-07-29T07:00:47Z,3399,588,2005-08-02T08:03:47Z,2,2020-02-15T06:59:42Z +8422,2005-07-29T07:02:55Z,3104,7,2005-08-03T12:35:55Z,1,2020-02-15T06:59:42Z +8423,2005-07-29T07:02:57Z,187,468,2005-08-06T04:59:57Z,1,2020-02-15T06:59:42Z +8424,2005-07-29T07:06:03Z,366,138,2005-08-06T12:00:03Z,2,2020-02-15T06:59:42Z +8425,2005-07-29T07:06:21Z,3491,486,2005-08-05T07:57:21Z,2,2020-02-15T06:59:42Z +8426,2005-07-29T07:07:48Z,1840,564,2005-08-07T08:56:48Z,2,2020-02-15T06:59:42Z +8427,2005-07-29T07:08:36Z,1624,441,2005-07-30T11:54:36Z,2,2020-02-15T06:59:42Z +8428,2005-07-29T07:10:14Z,2545,398,2005-08-06T02:29:14Z,2,2020-02-15T06:59:42Z +8429,2005-07-29T07:11:49Z,2456,588,2005-07-31T02:45:49Z,1,2020-02-15T06:59:42Z +8430,2005-07-29T07:12:17Z,3377,219,2005-08-03T09:53:17Z,2,2020-02-15T06:59:42Z +8431,2005-07-29T07:12:48Z,1583,193,2005-08-01T10:03:48Z,1,2020-02-15T06:59:42Z +8432,2005-07-29T07:13:33Z,3896,572,2005-07-30T03:14:33Z,1,2020-02-15T06:59:42Z +8433,2005-07-29T07:19:16Z,1957,125,2005-08-05T03:29:16Z,1,2020-02-15T06:59:42Z +8434,2005-07-29T07:20:14Z,40,141,2005-07-30T08:50:14Z,2,2020-02-15T06:59:42Z +8435,2005-07-29T07:20:16Z,4462,520,2005-08-02T09:54:16Z,2,2020-02-15T06:59:42Z +8436,2005-07-29T07:21:20Z,2702,598,2005-07-31T12:56:20Z,2,2020-02-15T06:59:42Z +8437,2005-07-29T07:23:43Z,2118,96,2005-08-04T10:52:43Z,1,2020-02-15T06:59:42Z +8438,2005-07-29T07:25:42Z,720,97,2005-08-04T07:39:42Z,1,2020-02-15T06:59:42Z +8439,2005-07-29T07:28:43Z,182,224,2005-08-04T11:22:43Z,1,2020-02-15T06:59:42Z +8440,2005-07-29T07:31:26Z,489,175,2005-08-04T07:04:26Z,1,2020-02-15T06:59:42Z +8441,2005-07-29T07:33:05Z,1000,526,2005-08-04T04:00:05Z,2,2020-02-15T06:59:42Z +8442,2005-07-29T07:33:07Z,4345,185,2005-08-03T03:09:07Z,2,2020-02-15T06:59:42Z +8443,2005-07-29T07:33:12Z,1059,251,2005-08-02T01:36:12Z,2,2020-02-15T06:59:42Z +8444,2005-07-29T07:36:13Z,3329,213,2005-08-05T04:55:13Z,1,2020-02-15T06:59:42Z +8445,2005-07-29T07:37:48Z,2792,384,2005-08-04T10:43:48Z,1,2020-02-15T06:59:42Z +8446,2005-07-29T07:38:10Z,1593,235,2005-08-06T04:39:10Z,2,2020-02-15T06:59:42Z +8447,2005-07-29T07:38:14Z,930,11,2005-08-05T02:27:14Z,2,2020-02-15T06:59:42Z +8448,2005-07-29T07:41:54Z,4349,393,2005-08-02T13:12:54Z,1,2020-02-15T06:59:42Z +8449,2005-07-29T07:42:25Z,2610,273,2005-07-30T06:07:25Z,2,2020-02-15T06:59:42Z +8450,2005-07-29T07:44:05Z,484,401,2005-08-01T12:23:05Z,1,2020-02-15T06:59:42Z +8451,2005-07-29T07:44:56Z,3309,495,2005-08-06T02:29:56Z,1,2020-02-15T06:59:42Z +8452,2005-07-29T07:45:00Z,4312,16,2005-08-05T09:46:00Z,2,2020-02-15T06:59:42Z +8453,2005-07-29T07:46:29Z,2907,32,2005-07-30T07:07:29Z,1,2020-02-15T06:59:42Z +8454,2005-07-29T07:49:04Z,159,244,2005-08-03T04:43:04Z,2,2020-02-15T06:59:42Z +8455,2005-07-29T07:53:06Z,4043,404,2005-08-05T05:29:06Z,1,2020-02-15T06:59:42Z +8456,2005-07-29T07:58:31Z,671,388,2005-08-05T07:17:31Z,2,2020-02-15T06:59:42Z +8457,2005-07-29T07:59:03Z,3371,239,2005-08-04T08:42:03Z,1,2020-02-15T06:59:42Z +8458,2005-07-29T08:05:09Z,3857,317,2005-08-02T03:42:09Z,1,2020-02-15T06:59:42Z +8459,2005-07-29T08:05:40Z,3441,144,2005-08-04T03:24:40Z,1,2020-02-15T06:59:42Z +8460,2005-07-29T08:08:03Z,2826,329,2005-08-07T06:53:03Z,2,2020-02-15T06:59:42Z +8461,2005-07-29T08:11:31Z,3373,399,2005-08-06T09:23:31Z,1,2020-02-15T06:59:42Z +8462,2005-07-29T08:15:42Z,3633,200,2005-08-04T03:57:42Z,1,2020-02-15T06:59:42Z +8463,2005-07-29T08:17:51Z,466,203,2005-08-03T13:41:51Z,1,2020-02-15T06:59:42Z +8464,2005-07-29T08:18:20Z,2343,28,2005-08-03T04:50:20Z,2,2020-02-15T06:59:42Z +8465,2005-07-29T08:20:49Z,4109,238,2005-07-31T04:02:49Z,2,2020-02-15T06:59:42Z +8466,2005-07-29T08:24:47Z,4010,285,2005-07-31T03:43:47Z,1,2020-02-15T06:59:42Z +8467,2005-07-29T08:25:35Z,263,326,2005-08-07T03:28:35Z,2,2020-02-15T06:59:42Z +8468,2005-07-29T08:26:04Z,1338,282,2005-08-02T07:18:04Z,1,2020-02-15T06:59:42Z +8469,2005-07-29T08:26:27Z,2754,408,2005-08-05T04:26:27Z,2,2020-02-15T06:59:42Z +8470,2005-07-29T08:28:50Z,3717,159,2005-07-30T13:40:50Z,2,2020-02-15T06:59:42Z +8471,2005-07-29T08:32:11Z,1520,533,2005-08-01T13:55:11Z,1,2020-02-15T06:59:42Z +8472,2005-07-29T08:36:22Z,2975,196,2005-08-02T07:55:22Z,1,2020-02-15T06:59:42Z +8473,2005-07-29T08:36:53Z,4141,311,2005-07-31T12:14:53Z,1,2020-02-15T06:59:42Z +8474,2005-07-29T08:36:56Z,4346,323,2005-08-01T03:07:56Z,1,2020-02-15T06:59:42Z +8475,2005-07-29T08:37:41Z,3695,260,2005-08-04T10:03:41Z,2,2020-02-15T06:59:42Z +8476,2005-07-29T08:39:12Z,3741,470,2005-08-06T03:03:12Z,1,2020-02-15T06:59:42Z +8477,2005-07-29T08:40:36Z,3571,354,2005-08-06T08:28:36Z,2,2020-02-15T06:59:42Z +8478,2005-07-29T08:40:36Z,3742,162,2005-08-01T10:23:36Z,1,2020-02-15T06:59:42Z +8479,2005-07-29T08:42:04Z,1990,195,2005-08-01T03:10:04Z,1,2020-02-15T06:59:42Z +8480,2005-07-29T08:44:46Z,3512,467,2005-08-05T13:22:46Z,1,2020-02-15T06:59:42Z +8481,2005-07-29T08:45:57Z,1739,454,2005-08-01T12:50:57Z,2,2020-02-15T06:59:42Z +8482,2005-07-29T08:46:33Z,2686,405,2005-07-31T11:07:33Z,2,2020-02-15T06:59:42Z +8483,2005-07-29T08:50:18Z,2786,186,2005-08-03T06:46:18Z,1,2020-02-15T06:59:42Z +8484,2005-07-29T08:51:59Z,742,260,2005-07-30T09:07:59Z,1,2020-02-15T06:59:42Z +8485,2005-07-29T08:53:09Z,3172,420,2005-07-30T11:25:09Z,1,2020-02-15T06:59:42Z +8486,2005-07-29T08:53:38Z,1759,221,2005-08-01T14:12:38Z,2,2020-02-15T06:59:42Z +8487,2005-07-29T08:53:49Z,1893,82,2005-07-31T09:10:49Z,2,2020-02-15T06:59:42Z +8488,2005-07-29T08:57:38Z,2176,478,2005-08-02T04:16:38Z,1,2020-02-15T06:59:42Z +8489,2005-07-29T08:58:03Z,375,265,2005-08-02T07:50:03Z,2,2020-02-15T06:59:42Z +8490,2005-07-29T08:59:25Z,1943,367,2005-08-05T14:02:25Z,2,2020-02-15T06:59:42Z +8491,2005-07-29T09:02:13Z,1806,242,2005-08-03T04:32:13Z,1,2020-02-15T06:59:42Z +8492,2005-07-29T09:04:17Z,4553,266,2005-08-02T08:48:17Z,2,2020-02-15T06:59:42Z +8493,2005-07-29T09:04:31Z,664,390,2005-08-04T05:17:31Z,2,2020-02-15T06:59:42Z +8494,2005-07-29T09:04:32Z,3524,92,2005-07-31T10:30:32Z,1,2020-02-15T06:59:42Z +8495,2005-07-29T09:05:06Z,344,51,2005-08-06T05:48:06Z,2,2020-02-15T06:59:42Z +8496,2005-07-29T09:05:33Z,765,114,2005-08-02T06:32:33Z,1,2020-02-15T06:59:42Z +8497,2005-07-29T09:07:03Z,1837,593,2005-08-02T09:18:03Z,2,2020-02-15T06:59:42Z +8498,2005-07-29T09:07:38Z,4468,190,2005-08-04T07:01:38Z,1,2020-02-15T06:59:42Z +8499,2005-07-29T09:10:41Z,219,42,2005-08-05T10:01:41Z,1,2020-02-15T06:59:42Z +8500,2005-07-29T09:12:01Z,4516,348,2005-07-31T10:15:01Z,1,2020-02-15T06:59:42Z +8501,2005-07-29T09:12:51Z,1052,309,2005-07-30T11:19:51Z,2,2020-02-15T06:59:42Z +8502,2005-07-29T09:15:41Z,2149,457,2005-07-30T10:41:41Z,1,2020-02-15T06:59:42Z +8503,2005-07-29T09:16:50Z,1164,240,2005-08-04T11:34:50Z,2,2020-02-15T06:59:42Z +8504,2005-07-29T09:20:16Z,2295,561,2005-08-07T04:27:16Z,2,2020-02-15T06:59:42Z +8505,2005-07-29T09:22:52Z,1454,346,2005-08-06T05:23:52Z,1,2020-02-15T06:59:42Z +8506,2005-07-29T09:23:52Z,3714,506,2005-07-31T04:42:52Z,1,2020-02-15T06:59:42Z +8507,2005-07-29T09:29:44Z,3273,524,2005-08-07T05:48:44Z,2,2020-02-15T06:59:42Z +8508,2005-07-29T09:34:38Z,4173,484,2005-08-01T14:52:38Z,2,2020-02-15T06:59:42Z +8509,2005-07-29T09:38:19Z,1332,80,2005-08-04T11:45:19Z,1,2020-02-15T06:59:42Z +8510,2005-07-29T09:41:38Z,7,487,2005-08-05T05:30:38Z,2,2020-02-15T06:59:42Z +8511,2005-07-29T09:42:42Z,3667,598,2005-08-06T14:22:42Z,2,2020-02-15T06:59:42Z +8512,2005-07-29T09:48:03Z,4132,351,2005-07-31T13:40:03Z,1,2020-02-15T06:59:42Z +8513,2005-07-29T09:52:59Z,3156,142,2005-07-31T12:05:59Z,1,2020-02-15T06:59:42Z +8514,2005-07-29T09:53:33Z,3755,99,2005-07-30T06:34:33Z,2,2020-02-15T06:59:42Z +8515,2005-07-29T09:55:20Z,1071,477,2005-08-05T07:08:20Z,2,2020-02-15T06:59:42Z +8516,2005-07-29T10:00:03Z,981,337,2005-08-02T09:34:03Z,1,2020-02-15T06:59:42Z +8517,2005-07-29T10:00:48Z,2064,274,2005-08-06T14:37:48Z,2,2020-02-15T06:59:42Z +8518,2005-07-29T10:05:27Z,2311,385,2005-08-02T05:39:27Z,1,2020-02-15T06:59:42Z +8519,2005-07-29T10:09:43Z,1163,588,2005-08-03T08:14:43Z,2,2020-02-15T06:59:42Z +8520,2005-07-29T10:10:02Z,2440,103,2005-08-02T05:25:02Z,2,2020-02-15T06:59:42Z +8521,2005-07-29T10:12:45Z,2608,402,2005-08-07T04:37:45Z,2,2020-02-15T06:59:42Z +8522,2005-07-29T10:16:19Z,3636,363,2005-08-06T14:58:19Z,1,2020-02-15T06:59:42Z +8523,2005-07-29T10:18:27Z,3614,558,2005-08-04T09:31:27Z,1,2020-02-15T06:59:42Z +8524,2005-07-29T10:20:07Z,2110,124,2005-08-03T04:30:07Z,1,2020-02-15T06:59:42Z +8525,2005-07-29T10:20:19Z,1322,111,2005-07-30T05:49:19Z,2,2020-02-15T06:59:42Z +8526,2005-07-29T10:20:48Z,575,88,2005-08-03T14:15:48Z,1,2020-02-15T06:59:42Z +8527,2005-07-29T10:21:00Z,709,168,2005-08-05T16:05:00Z,2,2020-02-15T06:59:42Z +8528,2005-07-29T10:24:22Z,2107,428,2005-08-07T10:34:22Z,1,2020-02-15T06:59:42Z +8529,2005-07-29T10:24:31Z,1055,501,2005-08-01T16:06:31Z,1,2020-02-15T06:59:42Z +8530,2005-07-29T10:26:14Z,4528,233,2005-07-31T10:24:14Z,1,2020-02-15T06:59:42Z +8531,2005-07-29T10:26:15Z,1631,427,2005-08-06T09:28:15Z,1,2020-02-15T06:59:42Z +8532,2005-07-29T10:26:56Z,3045,546,2005-08-02T13:23:56Z,2,2020-02-15T06:59:42Z +8533,2005-07-29T10:29:16Z,551,542,2005-08-01T06:52:16Z,1,2020-02-15T06:59:42Z +8534,2005-07-29T10:30:13Z,4029,516,2005-08-02T04:47:13Z,1,2020-02-15T06:59:42Z +8535,2005-07-29T10:32:33Z,4489,536,2005-07-31T05:46:33Z,1,2020-02-15T06:59:42Z +8536,2005-07-29T10:37:23Z,4510,219,2005-07-31T07:21:23Z,2,2020-02-15T06:59:42Z +8537,2005-07-29T10:44:54Z,1012,447,2005-08-06T14:55:54Z,2,2020-02-15T06:59:42Z +8538,2005-07-29T10:45:17Z,3768,500,2005-08-04T15:12:17Z,1,2020-02-15T06:59:42Z +8539,2005-07-29T10:48:24Z,599,325,2005-07-30T06:29:24Z,2,2020-02-15T06:59:42Z +8540,2005-07-29T10:52:51Z,539,180,2005-08-07T11:44:51Z,2,2020-02-15T06:59:42Z +8541,2005-07-29T10:55:01Z,976,340,2005-07-31T10:53:01Z,1,2020-02-15T06:59:42Z +8542,2005-07-29T11:01:50Z,792,213,2005-07-30T08:19:50Z,1,2020-02-15T06:59:42Z +8543,2005-07-29T11:01:57Z,403,346,2005-08-03T06:03:57Z,1,2020-02-15T06:59:42Z +8544,2005-07-29T11:02:08Z,412,542,2005-08-06T15:06:08Z,2,2020-02-15T06:59:42Z +8545,2005-07-29T11:07:04Z,3261,3,2005-08-06T13:30:04Z,2,2020-02-15T06:59:42Z +8546,2005-07-29T11:08:48Z,3224,418,2005-08-03T16:50:48Z,2,2020-02-15T06:59:42Z +8547,2005-07-29T11:10:15Z,875,438,2005-08-03T12:50:15Z,1,2020-02-15T06:59:42Z +8548,2005-07-29T11:11:33Z,3366,14,2005-08-04T11:52:33Z,2,2020-02-15T06:59:42Z +8549,2005-07-29T11:12:13Z,1866,206,2005-08-06T06:04:13Z,2,2020-02-15T06:59:42Z +8550,2005-07-29T11:12:37Z,1340,70,2005-07-30T15:05:37Z,2,2020-02-15T06:59:42Z +8551,2005-07-29T11:13:11Z,2083,340,2005-08-05T05:17:11Z,2,2020-02-15T06:59:42Z +8552,2005-07-29T11:14:02Z,1987,490,2005-08-05T14:13:02Z,2,2020-02-15T06:59:42Z +8553,2005-07-29T11:15:36Z,2645,49,2005-08-07T16:37:36Z,1,2020-02-15T06:59:42Z +8554,2005-07-29T11:16:29Z,1563,582,2005-07-31T06:38:29Z,2,2020-02-15T06:59:42Z +8555,2005-07-29T11:18:01Z,2784,18,2005-07-30T10:47:01Z,2,2020-02-15T06:59:42Z +8556,2005-07-29T11:18:27Z,2793,231,2005-07-30T05:21:27Z,2,2020-02-15T06:59:42Z +8557,2005-07-29T11:19:59Z,1481,459,2005-08-07T12:50:59Z,1,2020-02-15T06:59:42Z +8558,2005-07-29T11:24:49Z,1160,169,2005-07-31T15:03:49Z,1,2020-02-15T06:59:42Z +8559,2005-07-29T11:25:54Z,2078,279,2005-08-04T10:16:54Z,2,2020-02-15T06:59:42Z +8560,2005-07-29T11:27:27Z,3499,430,2005-08-01T12:05:27Z,2,2020-02-15T06:59:42Z +8561,2005-07-29T11:29:12Z,2207,344,2005-08-05T09:17:12Z,1,2020-02-15T06:59:42Z +8562,2005-07-29T11:32:13Z,3595,255,2005-07-30T08:23:13Z,2,2020-02-15T06:59:42Z +8563,2005-07-29T11:32:58Z,61,67,2005-08-05T07:21:58Z,2,2020-02-15T06:59:42Z +8564,2005-07-29T11:33:00Z,2830,316,2005-08-05T15:35:00Z,1,2020-02-15T06:59:42Z +8565,2005-07-29T11:35:23Z,3211,280,2005-08-06T08:28:23Z,1,2020-02-15T06:59:42Z +8566,2005-07-29T11:35:46Z,2011,544,2005-07-30T13:50:46Z,1,2020-02-15T06:59:42Z +8567,2005-07-29T11:37:30Z,1612,594,2005-08-03T05:58:30Z,2,2020-02-15T06:59:42Z +8568,2005-07-29T11:38:22Z,1599,583,2005-08-04T13:22:22Z,2,2020-02-15T06:59:42Z +8569,2005-07-29T11:39:17Z,276,348,2005-07-31T07:50:17Z,2,2020-02-15T06:59:42Z +8570,2005-07-29T11:40:08Z,3094,131,2005-08-06T10:23:08Z,1,2020-02-15T06:59:42Z +8571,2005-07-29T11:48:39Z,1778,407,2005-08-03T06:35:39Z,2,2020-02-15T06:59:42Z +8572,2005-07-29T11:51:24Z,2815,267,2005-08-02T11:44:24Z,1,2020-02-15T06:59:42Z +8573,2005-07-29T11:51:25Z,1637,179,2005-08-07T08:53:25Z,1,2020-02-15T06:59:42Z +8574,2005-07-29T11:51:53Z,2949,71,2005-08-03T05:59:53Z,2,2020-02-15T06:59:42Z +8575,2005-07-29T11:52:47Z,1668,441,2005-08-03T08:14:47Z,2,2020-02-15T06:59:42Z +8576,2005-07-29T11:55:01Z,3552,157,2005-08-03T08:41:01Z,2,2020-02-15T06:59:42Z +8577,2005-07-29T11:56:30Z,520,328,2005-08-07T15:41:30Z,1,2020-02-15T06:59:42Z +8578,2005-07-29T11:58:14Z,3737,148,2005-08-03T06:25:14Z,1,2020-02-15T06:59:42Z +8579,2005-07-29T11:59:22Z,4045,250,2005-07-30T11:41:22Z,2,2020-02-15T06:59:42Z +8580,2005-07-29T12:00:27Z,4040,543,2005-08-04T16:39:27Z,1,2020-02-15T06:59:42Z +8581,2005-07-29T12:02:06Z,2102,254,2005-08-02T10:32:06Z,2,2020-02-15T06:59:42Z +8582,2005-07-29T12:03:27Z,841,162,2005-08-03T07:02:27Z,1,2020-02-15T06:59:42Z +8583,2005-07-29T12:04:50Z,3130,191,2005-08-04T17:21:50Z,1,2020-02-15T06:59:42Z +8584,2005-07-29T12:07:53Z,1656,482,2005-07-31T09:27:53Z,1,2020-02-15T06:59:42Z +8585,2005-07-29T12:14:18Z,512,516,2005-08-03T08:31:18Z,2,2020-02-15T06:59:42Z +8586,2005-07-29T12:16:34Z,2752,374,2005-08-07T06:48:34Z,1,2020-02-15T06:59:42Z +8587,2005-07-29T12:18:40Z,1941,108,2005-08-03T14:01:40Z,1,2020-02-15T06:59:42Z +8588,2005-07-29T12:22:20Z,2858,416,2005-07-31T10:49:20Z,1,2020-02-15T06:59:42Z +8589,2005-07-29T12:28:17Z,1628,293,2005-08-05T11:40:17Z,1,2020-02-15T06:59:42Z +8590,2005-07-29T12:32:20Z,2505,114,2005-08-07T08:00:20Z,1,2020-02-15T06:59:42Z +8591,2005-07-29T12:32:33Z,2568,418,2005-08-01T16:19:33Z,2,2020-02-15T06:59:42Z +8592,2005-07-29T12:33:58Z,1952,271,2005-08-04T07:14:58Z,2,2020-02-15T06:59:42Z +8593,2005-07-29T12:38:14Z,2601,181,2005-08-07T07:04:14Z,1,2020-02-15T06:59:42Z +8594,2005-07-29T12:42:13Z,4155,115,2005-08-02T07:38:13Z,1,2020-02-15T06:59:42Z +8595,2005-07-29T12:47:43Z,3225,423,2005-08-07T13:51:43Z,2,2020-02-15T06:59:42Z +8596,2005-07-29T12:48:54Z,59,233,2005-08-04T07:19:54Z,2,2020-02-15T06:59:42Z +8597,2005-07-29T12:55:55Z,4218,222,2005-08-05T18:54:55Z,1,2020-02-15T06:59:42Z +8598,2005-07-29T12:56:59Z,626,2,2005-08-01T08:39:59Z,2,2020-02-15T06:59:42Z +8599,2005-07-29T12:58:52Z,1169,545,2005-08-03T08:19:52Z,1,2020-02-15T06:59:42Z +8600,2005-07-29T13:01:19Z,1488,226,2005-07-31T15:40:19Z,2,2020-02-15T06:59:42Z +8601,2005-07-29T13:03:31Z,3247,181,2005-08-06T16:32:31Z,1,2020-02-15T06:59:42Z +8602,2005-07-29T13:04:27Z,4002,64,2005-08-03T12:21:27Z,2,2020-02-15T06:59:42Z +8603,2005-07-29T13:07:07Z,3007,594,2005-08-04T18:32:07Z,2,2020-02-15T06:59:42Z +8604,2005-07-29T13:07:13Z,3909,326,2005-07-31T18:00:13Z,2,2020-02-15T06:59:42Z +8605,2005-07-29T13:13:34Z,3805,224,2005-08-07T08:29:34Z,1,2020-02-15T06:59:42Z +8606,2005-07-29T13:14:24Z,4051,340,2005-07-30T14:52:24Z,1,2020-02-15T06:59:42Z +8607,2005-07-29T13:18:00Z,4290,336,2005-07-30T18:51:00Z,2,2020-02-15T06:59:42Z +8608,2005-07-29T13:18:52Z,2976,165,2005-07-30T19:01:52Z,2,2020-02-15T06:59:42Z +8609,2005-07-29T13:19:25Z,3997,354,2005-08-06T08:33:25Z,2,2020-02-15T06:59:42Z +8610,2005-07-29T13:25:02Z,4222,563,2005-08-03T08:10:02Z,2,2020-02-15T06:59:42Z +8611,2005-07-29T13:26:21Z,610,373,2005-08-07T18:20:21Z,2,2020-02-15T06:59:42Z +8612,2005-07-29T13:28:20Z,3518,392,2005-08-06T14:39:20Z,2,2020-02-15T06:59:42Z +8613,2005-07-29T13:30:58Z,394,411,2005-08-05T16:21:58Z,2,2020-02-15T06:59:42Z +8614,2005-07-29T13:32:05Z,604,552,2005-08-04T15:26:05Z,1,2020-02-15T06:59:42Z +8615,2005-07-29T13:36:01Z,4453,15,2005-08-03T13:15:01Z,1,2020-02-15T06:59:42Z +8616,2005-07-29T13:39:09Z,2583,493,2005-08-01T16:49:09Z,1,2020-02-15T06:59:42Z +8617,2005-07-29T13:46:14Z,385,441,2005-08-06T13:26:14Z,2,2020-02-15T06:59:42Z +8618,2005-07-29T13:48:20Z,985,270,2005-08-06T14:12:20Z,2,2020-02-15T06:59:42Z +8619,2005-07-29T13:50:08Z,2169,50,2005-08-06T13:15:08Z,1,2020-02-15T06:59:42Z +8620,2005-07-29T13:51:20Z,3718,306,2005-08-02T13:05:20Z,1,2020-02-15T06:59:42Z +8621,2005-07-29T13:52:42Z,2473,358,2005-07-30T11:42:42Z,2,2020-02-15T06:59:42Z +8622,2005-07-29T13:53:28Z,4076,98,2005-07-31T16:12:28Z,2,2020-02-15T06:59:42Z +8623,2005-07-29T13:55:11Z,458,142,2005-08-05T11:16:11Z,1,2020-02-15T06:59:42Z +8624,2005-07-29T13:55:36Z,4402,439,2005-08-02T12:23:36Z,2,2020-02-15T06:59:42Z +8625,2005-07-29T13:59:13Z,884,410,2005-08-07T17:56:13Z,2,2020-02-15T06:59:42Z +8626,2005-07-29T14:03:20Z,3092,148,2005-08-02T09:05:20Z,1,2020-02-15T06:59:42Z +8627,2005-07-29T14:05:12Z,4235,226,2005-08-05T16:53:12Z,2,2020-02-15T06:59:42Z +8628,2005-07-29T14:06:24Z,4484,550,2005-08-06T10:42:24Z,2,2020-02-15T06:59:42Z +8629,2005-07-29T14:06:35Z,853,567,2005-08-03T16:59:35Z,2,2020-02-15T06:59:42Z +8630,2005-07-29T14:07:59Z,1378,406,2005-08-03T13:18:59Z,2,2020-02-15T06:59:42Z +8631,2005-07-29T14:08:06Z,98,559,2005-08-05T14:57:06Z,1,2020-02-15T06:59:42Z +8632,2005-07-29T14:11:25Z,1666,563,2005-08-07T15:32:25Z,1,2020-02-15T06:59:42Z +8633,2005-07-29T14:19:53Z,3436,534,2005-08-01T11:31:53Z,2,2020-02-15T06:59:42Z +8634,2005-07-29T14:19:57Z,2023,335,2005-08-07T13:44:57Z,1,2020-02-15T06:59:42Z +8635,2005-07-29T14:22:48Z,2894,383,2005-08-01T11:59:48Z,2,2020-02-15T06:59:42Z +8636,2005-07-29T14:24:13Z,4308,252,2005-08-02T14:39:13Z,1,2020-02-15T06:59:42Z +8637,2005-07-29T14:30:11Z,1069,310,2005-08-04T14:00:11Z,1,2020-02-15T06:59:42Z +8638,2005-07-29T14:30:23Z,4060,571,2005-08-01T10:32:23Z,1,2020-02-15T06:59:42Z +8639,2005-07-29T14:30:31Z,3504,290,2005-08-02T16:04:31Z,1,2020-02-15T06:59:42Z +8640,2005-07-29T14:34:17Z,1874,257,2005-08-01T13:09:17Z,2,2020-02-15T06:59:42Z +8641,2005-07-29T14:37:30Z,3199,30,2005-08-02T19:32:30Z,2,2020-02-15T06:59:42Z +8642,2005-07-29T14:38:17Z,3947,522,2005-08-03T14:41:17Z,1,2020-02-15T06:59:42Z +8643,2005-07-29T14:45:23Z,381,59,2005-08-04T18:42:23Z,1,2020-02-15T06:59:42Z +8644,2005-07-29T14:45:45Z,4507,314,2005-08-03T20:10:45Z,2,2020-02-15T06:59:42Z +8645,2005-07-29T14:47:45Z,2532,535,2005-07-30T14:56:45Z,2,2020-02-15T06:59:42Z +8646,2005-07-29T14:48:48Z,89,302,2005-08-03T18:11:48Z,2,2020-02-15T06:59:42Z +8647,2005-07-29T14:52:59Z,556,307,2005-08-06T11:09:59Z,2,2020-02-15T06:59:42Z +8648,2005-07-29T14:56:21Z,160,416,2005-07-31T16:56:21Z,2,2020-02-15T06:59:42Z +8649,2005-07-29T14:57:33Z,789,69,2005-08-07T09:43:33Z,2,2020-02-15T06:59:42Z +8650,2005-07-29T14:59:04Z,1272,134,2005-08-04T13:13:04Z,2,2020-02-15T06:59:42Z +8651,2005-07-29T15:02:18Z,2095,61,2005-08-07T09:34:18Z,2,2020-02-15T06:59:42Z +8652,2005-07-29T15:02:54Z,2729,219,2005-08-07T17:21:54Z,2,2020-02-15T06:59:42Z +8653,2005-07-29T15:04:23Z,4440,230,2005-08-02T09:39:23Z,2,2020-02-15T06:59:42Z +8654,2005-07-29T15:04:27Z,3925,84,2005-08-07T18:37:27Z,1,2020-02-15T06:59:42Z +8655,2005-07-29T15:04:42Z,3986,232,2005-08-04T11:26:42Z,1,2020-02-15T06:59:42Z +8656,2005-07-29T15:05:52Z,1385,460,2005-07-31T20:57:52Z,2,2020-02-15T06:59:42Z +8657,2005-07-29T15:09:25Z,3194,236,2005-07-31T19:10:25Z,1,2020-02-15T06:59:42Z +8658,2005-07-29T15:16:37Z,2033,427,2005-08-07T20:45:37Z,2,2020-02-15T06:59:42Z +8659,2005-07-29T15:26:31Z,558,168,2005-08-06T19:05:31Z,2,2020-02-15T06:59:42Z +8660,2005-07-29T15:26:59Z,3122,566,2005-08-05T21:04:59Z,2,2020-02-15T06:59:42Z +8661,2005-07-29T15:28:24Z,3409,341,2005-08-05T20:04:24Z,2,2020-02-15T06:59:42Z +8662,2005-07-29T15:31:33Z,3758,362,2005-07-30T09:39:33Z,2,2020-02-15T06:59:42Z +8663,2005-07-29T15:33:18Z,1281,214,2005-07-30T18:03:18Z,1,2020-02-15T06:59:42Z +8664,2005-07-29T15:36:27Z,198,102,2005-08-04T20:11:27Z,1,2020-02-15T06:59:42Z +8665,2005-07-29T15:39:29Z,1113,265,2005-08-01T10:33:29Z,2,2020-02-15T06:59:42Z +8666,2005-07-29T15:39:38Z,3669,591,2005-08-06T17:12:38Z,1,2020-02-15T06:59:42Z +8667,2005-07-29T15:40:57Z,3439,25,2005-07-31T20:59:57Z,1,2020-02-15T06:59:42Z +8668,2005-07-29T15:41:31Z,4531,71,2005-08-01T16:20:31Z,2,2020-02-15T06:59:42Z +8669,2005-07-29T15:44:55Z,1667,401,2005-08-01T14:09:55Z,2,2020-02-15T06:59:42Z +8670,2005-07-29T15:49:03Z,2354,446,2005-08-01T20:19:03Z,2,2020-02-15T06:59:42Z +8671,2005-07-29T15:49:37Z,1431,577,2005-08-05T18:20:37Z,1,2020-02-15T06:59:42Z +8672,2005-07-29T15:49:48Z,405,495,2005-08-06T17:59:48Z,2,2020-02-15T06:59:42Z +8673,2005-07-29T15:50:14Z,2167,29,2005-08-03T18:30:14Z,1,2020-02-15T06:59:42Z +8674,2005-07-29T15:54:22Z,1744,412,2005-07-31T12:15:22Z,1,2020-02-15T06:59:42Z +8675,2005-07-29T15:56:18Z,1026,258,2005-07-30T18:50:18Z,1,2020-02-15T06:59:42Z +8676,2005-07-29T15:59:06Z,283,533,2005-08-05T19:12:06Z,2,2020-02-15T06:59:42Z +8677,2005-07-29T16:01:13Z,513,315,2005-08-07T19:21:13Z,2,2020-02-15T06:59:42Z +8678,2005-07-29T16:04:00Z,3991,210,2005-08-05T12:37:00Z,1,2020-02-15T06:59:42Z +8679,2005-07-29T16:07:47Z,3549,536,2005-08-02T18:37:47Z,1,2020-02-15T06:59:42Z +8680,2005-07-29T16:08:03Z,1227,330,2005-07-31T17:26:03Z,1,2020-02-15T06:59:42Z +8681,2005-07-29T16:12:01Z,4004,309,2005-08-01T18:14:01Z,2,2020-02-15T06:59:42Z +8682,2005-07-29T16:15:26Z,4328,348,2005-08-03T20:15:26Z,2,2020-02-15T06:59:42Z +8683,2005-07-29T16:15:43Z,3915,513,2005-08-07T19:19:43Z,1,2020-02-15T06:59:42Z +8684,2005-07-29T16:16:33Z,2457,185,2005-08-07T12:27:33Z,2,2020-02-15T06:59:42Z +8685,2005-07-29T16:17:05Z,1827,321,2005-08-07T17:44:05Z,1,2020-02-15T06:59:42Z +8686,2005-07-29T16:17:49Z,4160,52,2005-08-01T12:50:49Z,2,2020-02-15T06:59:42Z +8687,2005-07-29T16:19:17Z,222,117,2005-08-01T15:28:17Z,1,2020-02-15T06:59:42Z +8688,2005-07-29T16:31:32Z,2263,381,2005-07-30T12:39:32Z,1,2020-02-15T06:59:42Z +8689,2005-07-29T16:38:58Z,824,487,2005-08-01T17:09:58Z,2,2020-02-15T06:59:42Z +8690,2005-07-29T16:39:28Z,1292,291,2005-08-01T14:03:28Z,2,2020-02-15T06:59:42Z +8691,2005-07-29T16:41:23Z,672,446,2005-08-02T12:32:23Z,2,2020-02-15T06:59:42Z +8692,2005-07-29T16:43:39Z,3192,88,2005-08-01T15:54:39Z,2,2020-02-15T06:59:42Z +8693,2005-07-29T16:44:13Z,917,51,2005-08-01T15:56:13Z,1,2020-02-15T06:59:42Z +8694,2005-07-29T16:44:48Z,503,345,2005-08-06T16:28:48Z,1,2020-02-15T06:59:42Z +8695,2005-07-29T16:44:55Z,694,280,2005-08-07T12:47:55Z,1,2020-02-15T06:59:42Z +8696,2005-07-29T16:45:18Z,2553,178,2005-08-07T18:51:18Z,1,2020-02-15T06:59:42Z +8697,2005-07-29T16:46:07Z,443,291,2005-08-02T19:27:07Z,2,2020-02-15T06:59:42Z +8698,2005-07-29T16:52:17Z,2973,324,2005-08-04T13:20:17Z,2,2020-02-15T06:59:42Z +8699,2005-07-29T16:53:00Z,4080,123,2005-08-07T20:31:00Z,1,2020-02-15T06:59:42Z +8700,2005-07-29T16:56:01Z,3710,196,2005-07-31T16:19:01Z,2,2020-02-15T06:59:42Z +8701,2005-07-29T17:02:35Z,3158,245,2005-08-07T19:55:35Z,2,2020-02-15T06:59:42Z +8702,2005-07-29T17:04:37Z,2215,306,2005-08-05T15:30:37Z,2,2020-02-15T06:59:42Z +8703,2005-07-29T17:12:44Z,1065,439,2005-07-30T19:38:44Z,1,2020-02-15T06:59:42Z +8704,2005-07-29T17:13:45Z,2117,107,2005-08-03T20:03:45Z,2,2020-02-15T06:59:42Z +8705,2005-07-29T17:14:29Z,4038,2,2005-08-02T16:01:29Z,1,2020-02-15T06:59:42Z +8706,2005-07-29T17:19:15Z,2886,515,2005-08-03T22:52:15Z,1,2020-02-15T06:59:42Z +8707,2005-07-29T17:21:58Z,2525,157,2005-08-02T14:47:58Z,2,2020-02-15T06:59:42Z +8708,2005-07-29T17:24:13Z,4054,529,2005-08-04T13:57:13Z,1,2020-02-15T06:59:42Z +8709,2005-07-29T17:25:54Z,902,199,2005-08-02T22:35:54Z,1,2020-02-15T06:59:42Z +8710,2005-07-29T17:26:03Z,3391,566,2005-07-30T19:51:03Z,1,2020-02-15T06:59:42Z +8711,2005-07-29T17:27:15Z,3471,575,2005-07-31T12:57:15Z,1,2020-02-15T06:59:42Z +8712,2005-07-29T17:30:06Z,2800,41,2005-08-03T22:55:06Z,2,2020-02-15T06:59:42Z +8713,2005-07-29T17:31:19Z,473,433,2005-08-02T16:37:19Z,2,2020-02-15T06:59:42Z +8714,2005-07-29T17:31:40Z,4547,362,2005-08-04T16:12:40Z,2,2020-02-15T06:59:42Z +8715,2005-07-29T17:33:45Z,860,11,2005-08-01T17:30:45Z,1,2020-02-15T06:59:42Z +8716,2005-07-29T17:39:09Z,2123,48,2005-08-03T20:26:09Z,2,2020-02-15T06:59:42Z +8717,2005-07-29T17:40:45Z,1821,260,2005-08-01T22:38:45Z,2,2020-02-15T06:59:42Z +8718,2005-07-29T17:41:14Z,137,23,2005-08-01T18:22:14Z,2,2020-02-15T06:59:42Z +8719,2005-07-29T17:45:45Z,995,333,2005-08-01T13:53:45Z,1,2020-02-15T06:59:42Z +8720,2005-07-29T17:48:32Z,152,180,2005-08-04T14:30:32Z,2,2020-02-15T06:59:42Z +8721,2005-07-29T17:56:21Z,2416,312,2005-08-02T21:30:21Z,2,2020-02-15T06:59:42Z +8722,2005-07-29T17:58:58Z,1389,401,2005-08-07T23:40:58Z,1,2020-02-15T06:59:42Z +8723,2005-07-29T18:03:47Z,224,39,2005-08-06T18:53:47Z,1,2020-02-15T06:59:42Z +8724,2005-07-29T18:05:21Z,898,372,2005-08-01T15:41:21Z,1,2020-02-15T06:59:42Z +8725,2005-07-29T18:08:42Z,2385,421,2005-08-04T16:01:42Z,2,2020-02-15T06:59:42Z +8726,2005-07-29T18:09:22Z,897,409,2005-08-06T16:24:22Z,1,2020-02-15T06:59:42Z +8727,2005-07-29T18:09:57Z,3031,528,2005-08-03T13:41:57Z,2,2020-02-15T06:59:42Z +8728,2005-07-29T18:12:49Z,973,341,2005-08-06T22:45:49Z,1,2020-02-15T06:59:42Z +8729,2005-07-29T18:23:02Z,3342,83,2005-07-31T16:09:02Z,2,2020-02-15T06:59:42Z +8730,2005-07-29T18:23:34Z,4191,592,2005-08-01T19:56:34Z,1,2020-02-15T06:59:42Z +8731,2005-07-29T18:23:57Z,2638,179,2005-08-05T19:38:57Z,1,2020-02-15T06:59:42Z +8732,2005-07-29T18:25:03Z,1143,346,2005-08-07T18:56:03Z,2,2020-02-15T06:59:42Z +8733,2005-07-29T18:26:34Z,3187,450,2005-08-03T15:06:34Z,1,2020-02-15T06:59:42Z +8734,2005-07-29T18:28:15Z,2374,303,2005-08-05T23:38:15Z,1,2020-02-15T06:59:42Z +8735,2005-07-29T18:28:54Z,2881,570,2005-08-03T12:43:54Z,2,2020-02-15T06:59:42Z +8736,2005-07-29T18:31:15Z,1726,530,2005-07-30T16:24:15Z,2,2020-02-15T06:59:42Z +8737,2005-07-29T18:32:13Z,4154,298,2005-08-05T21:07:13Z,2,2020-02-15T06:59:42Z +8738,2005-07-29T18:32:47Z,3893,210,2005-08-02T13:05:47Z,2,2020-02-15T06:59:42Z +8739,2005-07-29T18:34:33Z,4310,326,2005-08-02T16:05:33Z,1,2020-02-15T06:59:42Z +8740,2005-07-29T18:41:31Z,3781,378,2005-08-01T18:38:31Z,1,2020-02-15T06:59:42Z +8741,2005-07-29T18:44:57Z,165,4,2005-08-03T18:25:57Z,2,2020-02-15T06:59:42Z +8742,2005-07-29T18:56:12Z,918,208,2005-08-03T16:42:12Z,1,2020-02-15T06:59:42Z +8743,2005-07-29T18:57:01Z,2664,282,2005-07-31T22:09:01Z,2,2020-02-15T06:59:42Z +8744,2005-07-29T18:58:24Z,1086,280,2005-08-05T17:56:24Z,1,2020-02-15T06:59:42Z +8745,2005-07-29T19:03:05Z,1766,293,2005-08-06T14:06:05Z,2,2020-02-15T06:59:42Z +8746,2005-07-29T19:03:15Z,2179,275,2005-07-30T17:06:15Z,1,2020-02-15T06:59:42Z +8747,2005-07-29T19:07:57Z,2584,70,2005-07-30T16:01:57Z,1,2020-02-15T06:59:42Z +8748,2005-07-29T19:08:37Z,2184,237,2005-08-01T16:24:37Z,1,2020-02-15T06:59:42Z +8749,2005-07-29T19:13:15Z,2252,456,2005-08-01T15:02:15Z,1,2020-02-15T06:59:42Z +8750,2005-07-29T19:14:21Z,3157,158,2005-07-31T17:22:21Z,2,2020-02-15T06:59:42Z +8751,2005-07-29T19:14:39Z,3467,386,2005-07-31T23:11:39Z,1,2020-02-15T06:59:42Z +8752,2005-07-29T19:15:07Z,4202,253,2005-07-31T13:27:07Z,1,2020-02-15T06:59:42Z +8753,2005-07-29T19:15:50Z,1345,560,2005-07-31T19:13:50Z,2,2020-02-15T06:59:42Z +8754,2005-07-29T19:18:30Z,1678,174,2005-08-05T18:39:30Z,2,2020-02-15T06:59:42Z +8755,2005-07-29T19:18:31Z,1498,372,2005-07-31T19:20:31Z,2,2020-02-15T06:59:42Z +8756,2005-07-29T19:18:57Z,4146,120,2005-08-02T20:07:57Z,2,2020-02-15T06:59:42Z +8757,2005-07-29T19:19:10Z,3473,462,2005-08-02T13:47:10Z,2,2020-02-15T06:59:42Z +8758,2005-07-29T19:20:49Z,2816,442,2005-08-05T21:57:49Z,2,2020-02-15T06:59:42Z +8759,2005-07-29T19:22:37Z,844,209,2005-08-07T15:36:37Z,2,2020-02-15T06:59:42Z +8760,2005-07-29T19:22:40Z,3566,118,2005-08-05T01:09:40Z,2,2020-02-15T06:59:42Z +8761,2005-07-29T19:26:47Z,1317,539,2005-08-08T00:09:47Z,1,2020-02-15T06:59:42Z +8762,2005-07-29T19:30:02Z,2765,463,2005-08-04T18:38:02Z,1,2020-02-15T06:59:42Z +8763,2005-07-29T19:38:24Z,374,510,2005-08-04T16:51:24Z,1,2020-02-15T06:59:42Z +8764,2005-07-29T19:39:04Z,2348,303,2005-08-01T13:52:04Z,1,2020-02-15T06:59:42Z +8765,2005-07-29T19:40:08Z,2631,538,2005-07-31T14:24:08Z,2,2020-02-15T06:59:42Z +8766,2005-07-29T19:41:04Z,3888,338,2005-08-02T00:41:04Z,2,2020-02-15T06:59:42Z +8767,2005-07-29T19:42:33Z,962,467,2005-08-01T20:52:33Z,2,2020-02-15T06:59:42Z +8768,2005-07-29T19:43:02Z,1601,468,2005-08-03T23:36:02Z,1,2020-02-15T06:59:42Z +8769,2005-07-29T19:45:33Z,2180,588,2005-08-05T22:09:33Z,2,2020-02-15T06:59:42Z +8770,2005-07-29T19:53:50Z,4025,499,2005-08-05T14:22:50Z,1,2020-02-15T06:59:42Z +8771,2005-07-29T19:54:41Z,3533,347,2005-08-03T20:38:41Z,1,2020-02-15T06:59:42Z +8772,2005-07-29T19:55:25Z,3526,122,2005-08-05T18:48:25Z,1,2020-02-15T06:59:42Z +8773,2005-07-29T19:55:34Z,131,592,2005-07-30T14:11:34Z,1,2020-02-15T06:59:42Z +8774,2005-07-29T20:05:04Z,315,161,2005-07-31T14:32:04Z,1,2020-02-15T06:59:42Z +8775,2005-07-29T20:05:38Z,1358,44,2005-07-30T21:13:38Z,1,2020-02-15T06:59:42Z +8776,2005-07-29T20:07:06Z,1565,587,2005-08-06T20:42:06Z,2,2020-02-15T06:59:42Z +8777,2005-07-29T20:10:21Z,2462,382,2005-07-30T20:32:21Z,2,2020-02-15T06:59:42Z +8778,2005-07-29T20:14:25Z,3654,582,2005-08-04T00:50:25Z,1,2020-02-15T06:59:42Z +8779,2005-07-29T20:15:00Z,3245,202,2005-08-03T21:17:00Z,1,2020-02-15T06:59:42Z +8780,2005-07-29T20:19:45Z,1095,328,2005-08-03T22:22:45Z,2,2020-02-15T06:59:42Z +8781,2005-07-29T20:20:16Z,3746,235,2005-07-30T16:19:16Z,2,2020-02-15T06:59:42Z +8782,2005-07-29T20:29:34Z,4379,365,2005-08-04T02:19:34Z,1,2020-02-15T06:59:42Z +8783,2005-07-29T20:31:28Z,2316,71,2005-08-02T19:33:28Z,2,2020-02-15T06:59:42Z +8784,2005-07-29T20:35:37Z,2308,580,2005-07-30T17:22:37Z,1,2020-02-15T06:59:42Z +8785,2005-07-29T20:36:26Z,216,42,2005-07-30T15:06:26Z,1,2020-02-15T06:59:42Z +8786,2005-07-29T20:39:49Z,2404,533,2005-08-03T18:08:49Z,1,2020-02-15T06:59:42Z +8787,2005-07-29T20:43:49Z,2366,222,2005-07-31T15:15:49Z,1,2020-02-15T06:59:42Z +8788,2005-07-29T20:46:44Z,3412,121,2005-08-03T02:25:44Z,2,2020-02-15T06:59:42Z +8789,2005-07-29T20:47:27Z,3062,71,2005-08-05T18:36:27Z,1,2020-02-15T06:59:42Z +8790,2005-07-29T20:51:41Z,751,323,2005-07-30T17:30:41Z,2,2020-02-15T06:59:42Z +8791,2005-07-29T20:53:23Z,1677,469,2005-07-31T18:14:23Z,1,2020-02-15T06:59:42Z +8792,2005-07-29T20:56:14Z,3764,203,2005-08-07T16:44:14Z,2,2020-02-15T06:59:42Z +8793,2005-07-29T20:57:22Z,1819,167,2005-08-02T01:40:22Z,2,2020-02-15T06:59:42Z +8794,2005-07-29T20:59:38Z,3509,320,2005-07-31T00:15:38Z,2,2020-02-15T06:59:42Z +8795,2005-07-29T21:04:14Z,1896,302,2005-07-31T02:58:14Z,2,2020-02-15T06:59:42Z +8796,2005-07-29T21:09:11Z,2234,74,2005-08-04T22:55:11Z,1,2020-02-15T06:59:42Z +8797,2005-07-29T21:10:37Z,2929,566,2005-08-07T21:43:37Z,1,2020-02-15T06:59:42Z +8798,2005-07-29T21:15:38Z,800,513,2005-08-05T02:46:38Z,2,2020-02-15T06:59:42Z +8799,2005-07-29T21:16:47Z,326,237,2005-08-07T22:09:47Z,2,2020-02-15T06:59:42Z +8800,2005-07-29T21:18:59Z,2082,207,2005-08-06T19:59:59Z,2,2020-02-15T06:59:42Z +8801,2005-07-29T21:25:22Z,1111,590,2005-08-01T00:02:22Z,1,2020-02-15T06:59:42Z +8802,2005-07-29T21:25:51Z,296,407,2005-07-30T18:15:51Z,2,2020-02-15T06:59:42Z +8803,2005-07-29T21:26:24Z,2814,86,2005-08-06T18:05:24Z,2,2020-02-15T06:59:42Z +8804,2005-07-29T21:28:19Z,4461,363,2005-08-01T20:15:19Z,2,2020-02-15T06:59:42Z +8805,2005-07-29T21:29:58Z,4041,39,2005-08-04T23:12:58Z,1,2020-02-15T06:59:42Z +8806,2005-07-29T21:36:34Z,4085,454,2005-08-02T00:58:34Z,1,2020-02-15T06:59:42Z +8807,2005-07-29T21:36:59Z,2612,396,2005-08-01T17:40:59Z,1,2020-02-15T06:59:42Z +8808,2005-07-29T21:39:07Z,593,173,2005-08-03T02:09:07Z,2,2020-02-15T06:59:42Z +8809,2005-07-29T21:42:49Z,3278,8,2005-08-04T01:13:49Z,1,2020-02-15T06:59:42Z +8810,2005-07-29T21:45:19Z,1233,431,2005-08-08T01:45:19Z,2,2020-02-15T06:59:42Z +8811,2005-07-29T21:46:21Z,2041,245,2005-08-07T16:51:21Z,2,2020-02-15T06:59:42Z +8812,2005-07-29T21:47:40Z,1172,563,2005-08-04T01:18:40Z,2,2020-02-15T06:59:42Z +8813,2005-07-29T21:47:55Z,3442,497,2005-08-05T01:16:55Z,1,2020-02-15T06:59:42Z +8814,2005-07-29T21:49:43Z,1492,487,2005-08-01T19:56:43Z,1,2020-02-15T06:59:42Z +8815,2005-07-29T21:51:26Z,3469,230,2005-08-03T22:37:26Z,1,2020-02-15T06:59:42Z +8816,2005-07-29T21:53:00Z,3984,209,2005-08-01T21:20:00Z,1,2020-02-15T06:59:42Z +8817,2005-07-29T22:09:08Z,2716,175,2005-08-01T19:07:08Z,1,2020-02-15T06:59:42Z +8818,2005-07-29T22:14:04Z,3090,98,2005-08-07T17:26:04Z,1,2020-02-15T06:59:42Z +8819,2005-07-29T22:14:26Z,3100,591,2005-08-06T23:02:26Z,2,2020-02-15T06:59:42Z +8820,2005-07-29T22:14:56Z,481,594,2005-08-05T23:36:56Z,2,2020-02-15T06:59:42Z +8821,2005-07-29T22:18:12Z,52,477,2005-08-05T22:00:12Z,1,2020-02-15T06:59:42Z +8822,2005-07-29T22:20:21Z,744,35,2005-08-06T03:00:21Z,2,2020-02-15T06:59:42Z +8823,2005-07-29T22:22:12Z,951,75,2005-08-07T21:03:12Z,1,2020-02-15T06:59:42Z +8824,2005-07-29T22:22:58Z,3506,164,2005-07-31T21:02:58Z,2,2020-02-15T06:59:42Z +8825,2005-07-29T22:24:16Z,881,101,2005-08-05T00:27:16Z,2,2020-02-15T06:59:42Z +8826,2005-07-29T22:30:16Z,1800,369,2005-07-30T19:43:16Z,1,2020-02-15T06:59:42Z +8827,2005-07-29T22:31:24Z,1517,157,2005-08-06T21:05:24Z,2,2020-02-15T06:59:42Z +8828,2005-07-29T22:32:54Z,1608,547,2005-07-30T20:41:54Z,1,2020-02-15T06:59:42Z +8829,2005-07-29T22:33:34Z,1466,173,2005-08-05T20:23:34Z,2,2020-02-15T06:59:42Z +8830,2005-07-29T22:34:35Z,1751,202,2005-08-05T20:12:35Z,2,2020-02-15T06:59:42Z +8831,2005-07-29T22:37:41Z,3520,13,2005-08-08T04:28:41Z,1,2020-02-15T06:59:42Z +8832,2005-07-29T22:37:49Z,380,125,2005-08-04T23:32:49Z,1,2020-02-15T06:59:42Z +8833,2005-07-29T22:39:36Z,1741,101,2005-08-05T21:19:36Z,1,2020-02-15T06:59:42Z +8834,2005-07-29T22:41:48Z,4477,243,2005-08-05T03:21:48Z,2,2020-02-15T06:59:42Z +8835,2005-07-29T22:44:35Z,2653,237,2005-08-05T23:28:35Z,1,2020-02-15T06:59:42Z +8836,2005-07-29T22:46:08Z,3265,14,2005-08-02T19:53:08Z,2,2020-02-15T06:59:42Z +8837,2005-07-29T22:49:00Z,42,372,2005-08-07T21:56:00Z,2,2020-02-15T06:59:42Z +8838,2005-07-29T22:52:23Z,133,550,2005-08-03T22:49:23Z,1,2020-02-15T06:59:42Z +8839,2005-07-29T22:52:34Z,3440,580,2005-08-05T03:24:34Z,2,2020-02-15T06:59:42Z +8840,2005-07-29T22:55:38Z,1484,295,2005-08-06T02:11:38Z,1,2020-02-15T06:59:42Z +8841,2005-07-29T22:56:07Z,3935,363,2005-08-01T21:21:07Z,2,2020-02-15T06:59:42Z +8842,2005-07-29T23:03:40Z,4203,292,2005-08-06T23:23:40Z,2,2020-02-15T06:59:42Z +8843,2005-07-29T23:04:25Z,406,294,2005-08-05T22:12:25Z,1,2020-02-15T06:59:42Z +8844,2005-07-29T23:05:08Z,327,244,2005-08-06T00:24:08Z,2,2020-02-15T06:59:42Z +8845,2005-07-29T23:06:13Z,3036,543,2005-08-02T20:16:13Z,1,2020-02-15T06:59:42Z +8846,2005-07-29T23:10:28Z,2912,108,2005-08-03T22:07:28Z,2,2020-02-15T06:59:42Z +8847,2005-07-29T23:13:41Z,4133,480,2005-07-31T23:55:41Z,1,2020-02-15T06:59:42Z +8848,2005-07-29T23:20:58Z,2972,545,2005-08-03T17:28:58Z,2,2020-02-15T06:59:42Z +8849,2005-07-29T23:21:01Z,4300,79,2005-08-03T20:01:01Z,1,2020-02-15T06:59:42Z +8850,2005-07-29T23:24:20Z,355,86,2005-07-31T00:43:20Z,2,2020-02-15T06:59:42Z +8851,2005-07-29T23:26:19Z,212,445,2005-08-05T03:59:19Z,2,2020-02-15T06:59:42Z +8852,2005-07-29T23:30:03Z,1138,42,2005-08-05T05:22:03Z,2,2020-02-15T06:59:42Z +8853,2005-07-29T23:34:21Z,2323,58,2005-07-31T21:20:21Z,2,2020-02-15T06:59:42Z +8854,2005-07-29T23:40:07Z,1365,527,2005-08-01T00:35:07Z,2,2020-02-15T06:59:42Z +8855,2005-07-29T23:40:10Z,4388,335,2005-08-02T18:07:10Z,2,2020-02-15T06:59:42Z +8856,2005-07-29T23:42:00Z,2942,365,2005-08-07T03:00:00Z,1,2020-02-15T06:59:42Z +8857,2005-07-29T23:44:22Z,1348,477,2005-07-31T21:32:22Z,2,2020-02-15T06:59:42Z +8858,2005-07-29T23:44:35Z,2378,558,2005-08-01T05:25:35Z,2,2020-02-15T06:59:42Z +8859,2005-07-29T23:44:43Z,603,216,2005-08-07T18:14:43Z,2,2020-02-15T06:59:42Z +8860,2005-07-29T23:45:57Z,2841,531,2005-08-06T02:14:57Z,2,2020-02-15T06:59:42Z +8861,2005-07-29T23:47:29Z,759,560,2005-08-07T01:27:29Z,1,2020-02-15T06:59:42Z +8862,2005-07-29T23:49:23Z,916,21,2005-08-04T20:11:23Z,1,2020-02-15T06:59:42Z +8863,2005-07-29T23:52:01Z,75,47,2005-08-04T20:28:01Z,1,2020-02-15T06:59:42Z +8864,2005-07-29T23:52:12Z,2321,167,2005-07-30T22:12:12Z,1,2020-02-15T06:59:42Z +8865,2005-07-29T23:54:54Z,1835,305,2005-07-31T05:10:54Z,2,2020-02-15T06:59:42Z +8866,2005-07-29T23:58:19Z,1530,44,2005-08-01T05:19:19Z,2,2020-02-15T06:59:42Z +8867,2005-07-30T00:02:18Z,1388,497,2005-08-04T00:44:18Z,2,2020-02-15T06:59:42Z +8868,2005-07-30T00:02:26Z,1229,512,2005-08-01T22:28:26Z,2,2020-02-15T06:59:42Z +8869,2005-07-30T00:06:32Z,4353,308,2005-07-31T20:49:32Z,2,2020-02-15T06:59:42Z +8870,2005-07-30T00:08:08Z,4104,90,2005-08-08T00:15:08Z,2,2020-02-15T06:59:42Z +8871,2005-07-30T00:12:41Z,4535,382,2005-08-08T03:53:41Z,1,2020-02-15T06:59:42Z +8872,2005-07-30T00:13:54Z,2669,186,2005-08-01T18:34:54Z,1,2020-02-15T06:59:42Z +8873,2005-07-30T00:14:32Z,3498,91,2005-08-04T20:42:32Z,2,2020-02-15T06:59:42Z +8874,2005-07-30T00:14:45Z,459,564,2005-08-02T22:34:45Z,2,2020-02-15T06:59:42Z +8875,2005-07-30T00:15:09Z,1294,121,2005-08-04T02:54:09Z,2,2020-02-15T06:59:42Z +8876,2005-07-30T00:15:09Z,2394,579,2005-08-02T23:56:09Z,1,2020-02-15T06:59:42Z +8877,2005-07-30T00:15:22Z,1140,417,2005-07-31T00:53:22Z,1,2020-02-15T06:59:42Z +8878,2005-07-30T00:15:57Z,440,25,2005-08-01T00:22:57Z,2,2020-02-15T06:59:42Z +8879,2005-07-30T00:16:02Z,2956,584,2005-08-06T20:10:02Z,2,2020-02-15T06:59:42Z +8880,2005-07-30T00:16:55Z,2920,51,2005-08-01T01:05:55Z,1,2020-02-15T06:59:42Z +8881,2005-07-30T00:22:31Z,2012,118,2005-08-04T19:10:31Z,1,2020-02-15T06:59:42Z +8882,2005-07-30T00:24:05Z,441,410,2005-08-03T19:48:05Z,2,2020-02-15T06:59:42Z +8883,2005-07-30T00:24:48Z,1421,168,2005-08-04T00:24:48Z,2,2020-02-15T06:59:42Z +8884,2005-07-30T00:26:22Z,3050,80,2005-08-05T03:24:22Z,1,2020-02-15T06:59:42Z +8885,2005-07-30T00:36:26Z,2984,135,2005-08-06T03:05:26Z,1,2020-02-15T06:59:42Z +8886,2005-07-30T00:36:31Z,1469,418,2005-08-08T06:18:31Z,1,2020-02-15T06:59:42Z +8887,2005-07-30T00:36:54Z,4119,389,2005-08-04T19:07:54Z,1,2020-02-15T06:59:42Z +8888,2005-07-30T00:39:36Z,2824,284,2005-08-01T02:28:36Z,2,2020-02-15T06:59:42Z +8889,2005-07-30T00:39:43Z,3457,558,2005-08-02T23:22:43Z,1,2020-02-15T06:59:42Z +8890,2005-07-30T00:42:06Z,3656,470,2005-08-05T21:04:06Z,1,2020-02-15T06:59:42Z +8891,2005-07-30T00:46:55Z,4093,435,2005-08-06T23:32:55Z,2,2020-02-15T06:59:42Z +8892,2005-07-30T00:47:03Z,1584,184,2005-08-06T03:23:03Z,2,2020-02-15T06:59:42Z +8893,2005-07-30T00:48:19Z,1048,147,2005-08-01T03:25:19Z,1,2020-02-15T06:59:42Z +8894,2005-07-30T00:48:31Z,2055,552,2005-07-31T05:49:31Z,1,2020-02-15T06:59:42Z +8895,2005-07-30T00:49:17Z,3217,494,2005-07-31T01:56:17Z,1,2020-02-15T06:59:42Z +8896,2005-07-30T00:51:21Z,3560,205,2005-07-31T22:33:21Z,1,2020-02-15T06:59:42Z +8897,2005-07-30T01:00:17Z,1964,459,2005-08-01T03:41:17Z,1,2020-02-15T06:59:42Z +8898,2005-07-30T01:02:20Z,3961,452,2005-08-05T22:02:20Z,2,2020-02-15T06:59:42Z +8899,2005-07-30T01:05:30Z,4148,252,2005-08-01T23:32:30Z,1,2020-02-15T06:59:42Z +8900,2005-07-30T01:07:03Z,3057,375,2005-08-06T04:07:03Z,1,2020-02-15T06:59:42Z +8901,2005-07-30T01:07:12Z,4392,28,2005-08-02T06:34:12Z,1,2020-02-15T06:59:42Z +8902,2005-07-30T01:08:06Z,2983,408,2005-08-05T00:00:06Z,2,2020-02-15T06:59:42Z +8903,2005-07-30T01:08:06Z,4546,406,2005-07-30T21:47:06Z,2,2020-02-15T06:59:42Z +8904,2005-07-30T01:08:33Z,3622,575,2005-08-04T02:33:33Z,1,2020-02-15T06:59:42Z +8905,2005-07-30T01:11:11Z,2154,240,2005-08-04T22:39:11Z,1,2020-02-15T06:59:42Z +8906,2005-07-30T01:21:39Z,2667,560,2005-08-07T02:14:39Z,2,2020-02-15T06:59:42Z +8907,2005-07-30T01:25:03Z,3239,576,2005-08-03T05:41:03Z,1,2020-02-15T06:59:42Z +8908,2005-07-30T01:26:05Z,4498,391,2005-07-31T20:39:05Z,1,2020-02-15T06:59:42Z +8909,2005-07-30T01:28:03Z,2606,556,2005-08-06T04:40:03Z,2,2020-02-15T06:59:42Z +8910,2005-07-30T01:29:48Z,1039,569,2005-07-31T21:33:48Z,2,2020-02-15T06:59:42Z +8911,2005-07-30T01:30:57Z,2159,445,2005-08-02T20:01:57Z,1,2020-02-15T06:59:42Z +8912,2005-07-30T01:31:25Z,1686,280,2005-08-02T07:14:25Z,2,2020-02-15T06:59:42Z +8913,2005-07-30T01:35:01Z,429,391,2005-08-06T06:13:01Z,1,2020-02-15T06:59:42Z +8914,2005-07-30T01:42:03Z,1347,32,2005-08-04T03:53:03Z,1,2020-02-15T06:59:42Z +8915,2005-07-30T01:42:09Z,3030,42,2005-08-04T23:29:09Z,2,2020-02-15T06:59:42Z +8916,2005-07-30T01:42:21Z,3852,377,2005-08-03T05:28:21Z,1,2020-02-15T06:59:42Z +8917,2005-07-30T01:47:02Z,4460,309,2005-08-05T21:10:02Z,2,2020-02-15T06:59:42Z +8918,2005-07-30T01:56:22Z,2544,424,2005-08-04T01:58:22Z,2,2020-02-15T06:59:42Z +8919,2005-07-30T01:57:03Z,4006,337,2005-08-08T05:14:03Z,1,2020-02-15T06:59:42Z +8920,2005-07-30T01:59:24Z,4079,78,2005-08-02T22:37:24Z,2,2020-02-15T06:59:42Z +8921,2005-07-30T02:04:02Z,1016,354,2005-07-31T06:18:02Z,1,2020-02-15T06:59:42Z +8922,2005-07-30T02:08:25Z,1696,446,2005-08-08T07:19:25Z,2,2020-02-15T06:59:42Z +8923,2005-07-30T02:08:49Z,2425,446,2005-08-03T23:45:49Z,2,2020-02-15T06:59:42Z +8924,2005-07-30T02:08:58Z,2291,38,2005-08-05T02:13:58Z,2,2020-02-15T06:59:42Z +8925,2005-07-30T02:09:14Z,3753,500,2005-07-30T21:39:14Z,1,2020-02-15T06:59:42Z +8926,2005-07-30T02:10:31Z,3677,510,2005-08-03T23:56:31Z,1,2020-02-15T06:59:42Z +8927,2005-07-30T02:13:31Z,272,15,2005-08-01T01:34:31Z,1,2020-02-15T06:59:42Z +8928,2005-07-30T02:18:19Z,706,366,2005-08-05T00:49:19Z,2,2020-02-15T06:59:42Z +8929,2005-07-30T02:28:22Z,3501,472,2005-08-06T06:13:22Z,1,2020-02-15T06:59:42Z +8930,2005-07-30T02:28:38Z,1107,202,2005-08-02T01:43:38Z,2,2020-02-15T06:59:42Z +8931,2005-07-30T02:30:07Z,16,268,2005-08-02T08:24:07Z,2,2020-02-15T06:59:42Z +8932,2005-07-30T02:31:26Z,4537,295,2005-08-04T02:17:26Z,2,2020-02-15T06:59:42Z +8933,2005-07-30T02:36:06Z,1664,260,2005-08-02T23:37:06Z,2,2020-02-15T06:59:42Z +8934,2005-07-30T02:37:05Z,3223,494,2005-08-01T20:42:05Z,1,2020-02-15T06:59:42Z +8935,2005-07-30T02:38:45Z,285,76,2005-08-02T07:11:45Z,2,2020-02-15T06:59:42Z +8936,2005-07-30T02:47:13Z,1408,227,2005-08-01T02:25:13Z,2,2020-02-15T06:59:42Z +8937,2005-07-30T02:53:21Z,2406,544,2005-08-08T03:33:21Z,2,2020-02-15T06:59:42Z +8938,2005-07-30T02:56:08Z,4031,92,2005-07-31T23:08:08Z,2,2020-02-15T06:59:42Z +8939,2005-07-30T02:56:53Z,4175,598,2005-08-01T21:19:53Z,1,2020-02-15T06:59:42Z +8940,2005-07-30T02:57:26Z,1566,212,2005-08-05T22:05:26Z,1,2020-02-15T06:59:42Z +8941,2005-07-30T02:59:21Z,4147,329,2005-08-02T05:18:21Z,2,2020-02-15T06:59:42Z +8942,2005-07-30T03:01:07Z,4375,77,2005-08-06T22:50:07Z,2,2020-02-15T06:59:42Z +8943,2005-07-30T03:06:48Z,3698,531,2005-08-02T00:59:48Z,2,2020-02-15T06:59:42Z +8944,2005-07-30T03:11:44Z,3513,172,2005-08-06T23:15:44Z,2,2020-02-15T06:59:42Z +8945,2005-07-30T03:11:48Z,1441,447,2005-08-07T07:53:48Z,2,2020-02-15T06:59:42Z +8946,2005-07-30T03:14:53Z,3510,257,2005-08-04T00:50:53Z,1,2020-02-15T06:59:42Z +8947,2005-07-30T03:15:37Z,341,24,2005-08-04T07:10:37Z,2,2020-02-15T06:59:42Z +8948,2005-07-30T03:16:18Z,948,597,2005-08-04T03:16:18Z,1,2020-02-15T06:59:42Z +8949,2005-07-30T03:17:02Z,2876,231,2005-08-08T07:38:02Z,1,2020-02-15T06:59:42Z +8950,2005-07-30T03:17:13Z,3015,11,2005-08-07T00:20:13Z,1,2020-02-15T06:59:42Z +8951,2005-07-30T03:18:24Z,127,336,2005-08-08T08:50:24Z,2,2020-02-15T06:59:42Z +8952,2005-07-30T03:20:38Z,4397,36,2005-08-02T02:54:38Z,1,2020-02-15T06:59:42Z +8953,2005-07-30T03:21:05Z,535,278,2005-08-02T05:24:05Z,2,2020-02-15T06:59:42Z +8954,2005-07-30T03:25:51Z,991,137,2005-08-06T05:10:51Z,2,2020-02-15T06:59:42Z +8955,2005-07-30T03:28:27Z,4532,405,2005-08-04T04:56:27Z,2,2020-02-15T06:59:42Z +8956,2005-07-30T03:32:29Z,2129,71,2005-08-01T03:08:29Z,2,2020-02-15T06:59:42Z +8957,2005-07-30T03:34:10Z,811,158,2005-08-06T07:05:10Z,1,2020-02-15T06:59:42Z +8958,2005-07-30T03:34:26Z,1556,536,2005-08-06T08:14:26Z,1,2020-02-15T06:59:42Z +8959,2005-07-30T03:35:49Z,3508,550,2005-08-06T02:02:49Z,2,2020-02-15T06:59:42Z +8960,2005-07-30T03:36:31Z,391,525,2005-08-01T23:46:31Z,2,2020-02-15T06:59:42Z +8961,2005-07-30T03:43:35Z,3679,211,2005-08-06T07:42:35Z,1,2020-02-15T06:59:42Z +8962,2005-07-30T03:43:45Z,4439,406,2005-08-07T00:33:45Z,1,2020-02-15T06:59:42Z +8963,2005-07-30T03:46:26Z,100,544,2005-08-08T06:12:26Z,1,2020-02-15T06:59:42Z +8964,2005-07-30T03:49:35Z,280,424,2005-08-06T23:28:35Z,2,2020-02-15T06:59:42Z +8965,2005-07-30T03:52:37Z,2419,599,2005-08-05T01:28:37Z,2,2020-02-15T06:59:42Z +8966,2005-07-30T03:54:12Z,1903,522,2005-07-31T04:51:12Z,1,2020-02-15T06:59:42Z +8967,2005-07-30T03:56:55Z,1536,480,2005-08-06T05:25:55Z,2,2020-02-15T06:59:42Z +8968,2005-07-30T03:57:32Z,2280,339,2005-07-31T00:09:32Z,1,2020-02-15T06:59:42Z +8969,2005-07-30T04:00:19Z,2043,121,2005-08-06T04:39:19Z,1,2020-02-15T06:59:42Z +8970,2005-07-30T04:02:05Z,2940,313,2005-08-07T03:40:05Z,2,2020-02-15T06:59:42Z +8971,2005-07-30T04:03:58Z,3572,35,2005-08-08T04:16:58Z,2,2020-02-15T06:59:42Z +8972,2005-07-30T04:06:25Z,1974,89,2005-08-04T22:49:25Z,1,2020-02-15T06:59:42Z +8973,2005-07-30T04:09:13Z,886,282,2005-08-07T22:30:13Z,2,2020-02-15T06:59:42Z +8974,2005-07-30T04:09:16Z,3376,425,2005-08-04T06:55:16Z,1,2020-02-15T06:59:42Z +8975,2005-07-30T04:10:18Z,3288,356,2005-08-07T01:06:18Z,2,2020-02-15T06:59:42Z +8976,2005-07-30T04:12:32Z,2135,507,2005-08-04T23:08:32Z,1,2020-02-15T06:59:42Z +8977,2005-07-30T04:14:07Z,4099,334,2005-08-05T23:45:07Z,2,2020-02-15T06:59:42Z +8978,2005-07-30T04:14:28Z,711,5,2005-08-06T09:08:28Z,1,2020-02-15T06:59:42Z +8979,2005-07-30T04:20:25Z,1394,529,2005-08-08T03:39:25Z,2,2020-02-15T06:59:42Z +8980,2005-07-30T04:22:15Z,3061,105,2005-08-04T08:16:15Z,1,2020-02-15T06:59:42Z +8981,2005-07-30T04:25:30Z,4413,310,2005-08-06T02:37:30Z,1,2020-02-15T06:59:42Z +8982,2005-07-30T04:31:02Z,1128,251,2005-07-31T04:22:02Z,1,2020-02-15T06:59:42Z +8983,2005-07-30T04:31:08Z,1861,144,2005-07-31T09:28:08Z,1,2020-02-15T06:59:42Z +8984,2005-07-30T04:31:50Z,2126,485,2005-08-04T03:24:50Z,1,2020-02-15T06:59:42Z +8985,2005-07-30T04:34:51Z,3179,12,2005-08-06T00:45:51Z,2,2020-02-15T06:59:42Z +8986,2005-07-30T04:37:20Z,3992,551,2005-07-31T23:54:20Z,1,2020-02-15T06:59:42Z +8987,2005-07-30T04:37:36Z,1434,135,2005-08-08T10:14:36Z,2,2020-02-15T06:59:42Z +8988,2005-07-30T04:38:49Z,777,487,2005-08-07T07:00:49Z,2,2020-02-15T06:59:42Z +8989,2005-07-30T04:39:19Z,954,575,2005-08-06T02:11:19Z,1,2020-02-15T06:59:42Z +8990,2005-07-30T04:41:42Z,1869,292,2005-08-07T22:50:42Z,2,2020-02-15T06:59:42Z +8991,2005-07-30T04:42:54Z,4540,474,2005-08-01T23:51:54Z,1,2020-02-15T06:59:42Z +8992,2005-07-30T04:44:18Z,4478,54,2005-08-01T00:29:18Z,1,2020-02-15T06:59:42Z +8993,2005-07-30T04:51:25Z,1891,382,2005-08-01T01:04:25Z,1,2020-02-15T06:59:42Z +8994,2005-07-30T04:51:32Z,1527,287,2005-08-07T09:41:32Z,1,2020-02-15T06:59:42Z +8995,2005-07-30T04:53:11Z,3575,331,2005-08-07T00:24:11Z,1,2020-02-15T06:59:42Z +8996,2005-07-30T04:53:23Z,1970,579,2005-07-31T06:01:23Z,1,2020-02-15T06:59:42Z +8997,2005-07-30T04:53:56Z,850,31,2005-08-03T07:10:56Z,1,2020-02-15T06:59:42Z +8998,2005-07-30T04:54:14Z,1573,120,2005-08-08T08:18:14Z,2,2020-02-15T06:59:42Z +8999,2005-07-30T04:55:46Z,3458,424,2005-08-01T00:16:46Z,2,2020-02-15T06:59:42Z +9000,2005-07-30T04:58:55Z,3763,290,2005-08-08T04:01:55Z,2,2020-02-15T06:59:42Z +9001,2005-07-30T04:59:41Z,3682,440,2005-07-31T08:56:41Z,2,2020-02-15T06:59:42Z +9002,2005-07-30T05:02:21Z,1936,137,2005-07-31T04:58:21Z,1,2020-02-15T06:59:42Z +9003,2005-07-30T05:02:52Z,1605,507,2005-07-31T10:33:52Z,1,2020-02-15T06:59:42Z +9004,2005-07-30T05:04:27Z,3775,178,2005-07-31T00:49:27Z,1,2020-02-15T06:59:42Z +9005,2005-07-30T05:04:58Z,157,204,2005-08-03T07:41:58Z,2,2020-02-15T06:59:42Z +9006,2005-07-30T05:06:32Z,3315,49,2005-07-31T08:24:32Z,1,2020-02-15T06:59:42Z +9007,2005-07-30T05:09:32Z,2813,63,2005-08-02T06:12:32Z,2,2020-02-15T06:59:42Z +9008,2005-07-30T05:10:26Z,3592,371,2005-07-31T08:13:26Z,1,2020-02-15T06:59:42Z +9009,2005-07-30T05:12:01Z,4136,166,2005-08-07T10:58:01Z,1,2020-02-15T06:59:42Z +9010,2005-07-30T05:12:04Z,1698,152,2005-08-06T02:54:04Z,2,2020-02-15T06:59:42Z +9011,2005-07-30T05:16:29Z,2799,236,2005-08-05T06:57:29Z,1,2020-02-15T06:59:42Z +9012,2005-07-30T05:18:57Z,3604,494,2005-08-06T06:21:57Z,1,2020-02-15T06:59:42Z +9013,2005-07-30T05:19:20Z,2367,347,2005-08-04T01:35:20Z,1,2020-02-15T06:59:42Z +9014,2005-07-30T05:19:27Z,311,297,2005-08-01T01:10:27Z,2,2020-02-15T06:59:42Z +9015,2005-07-30T05:21:32Z,4128,203,2005-08-08T07:03:32Z,2,2020-02-15T06:59:42Z +9016,2005-07-30T05:26:13Z,4309,312,2005-08-04T00:25:13Z,2,2020-02-15T06:59:42Z +9017,2005-07-30T05:26:20Z,3325,319,2005-08-04T10:00:20Z,2,2020-02-15T06:59:42Z +9018,2005-07-30T05:28:40Z,1982,218,2005-08-07T01:34:40Z,1,2020-02-15T06:59:42Z +9019,2005-07-30T05:28:53Z,946,235,2005-08-03T02:16:53Z,2,2020-02-15T06:59:42Z +9020,2005-07-30T05:31:27Z,1700,142,2005-08-08T06:44:27Z,2,2020-02-15T06:59:42Z +9021,2005-07-30T05:34:24Z,674,498,2005-08-03T04:13:24Z,1,2020-02-15T06:59:42Z +9022,2005-07-30T05:34:45Z,4473,159,2005-08-03T23:57:45Z,2,2020-02-15T06:59:42Z +9023,2005-07-30T05:36:40Z,2911,148,2005-08-07T06:20:40Z,1,2020-02-15T06:59:42Z +9024,2005-07-30T05:44:42Z,164,329,2005-08-05T03:15:42Z,2,2020-02-15T06:59:42Z +9025,2005-07-30T05:50:08Z,2244,473,2005-07-31T09:58:08Z,1,2020-02-15T06:59:42Z +9026,2005-07-30T05:55:31Z,1524,423,2005-08-01T03:19:31Z,1,2020-02-15T06:59:42Z +9027,2005-07-30T05:58:27Z,449,72,2005-08-03T03:02:27Z,1,2020-02-15T06:59:42Z +9028,2005-07-30T06:00:35Z,2687,119,2005-08-02T01:35:35Z,1,2020-02-15T06:59:42Z +9029,2005-07-30T06:03:11Z,2220,52,2005-08-04T01:42:11Z,1,2020-02-15T06:59:42Z +9030,2005-07-30T06:05:38Z,2237,367,2005-08-03T00:19:38Z,1,2020-02-15T06:59:42Z +9031,2005-07-30T06:06:10Z,2377,2,2005-08-04T10:45:10Z,2,2020-02-15T06:59:42Z +9032,2005-07-30T06:06:54Z,4448,369,2005-08-01T05:27:54Z,1,2020-02-15T06:59:42Z +9033,2005-07-30T06:07:42Z,3416,35,2005-08-05T01:18:42Z,1,2020-02-15T06:59:42Z +9034,2005-07-30T06:10:58Z,3847,144,2005-08-08T05:00:58Z,2,2020-02-15T06:59:42Z +9035,2005-07-30T06:16:07Z,3785,243,2005-08-06T09:22:07Z,1,2020-02-15T06:59:42Z +9036,2005-07-30T06:18:38Z,790,18,2005-07-31T01:22:38Z,1,2020-02-15T06:59:42Z +9037,2005-07-30T06:23:14Z,3833,356,2005-08-08T06:25:14Z,1,2020-02-15T06:59:42Z +9038,2005-07-30T06:23:35Z,217,514,2005-08-06T11:10:35Z,1,2020-02-15T06:59:42Z +9039,2005-07-30T06:24:28Z,4493,485,2005-08-08T00:28:28Z,1,2020-02-15T06:59:42Z +9040,2005-07-30T06:31:45Z,392,33,2005-08-03T12:20:45Z,1,2020-02-15T06:59:42Z +9041,2005-07-30T06:32:36Z,1103,454,2005-08-01T10:28:36Z,2,2020-02-15T06:59:42Z +9042,2005-07-30T06:33:55Z,2770,398,2005-08-04T09:31:55Z,2,2020-02-15T06:59:42Z +9043,2005-07-30T06:34:07Z,4127,9,2005-08-02T01:16:07Z,1,2020-02-15T06:59:42Z +9044,2005-07-30T06:35:21Z,3796,319,2005-07-31T10:27:21Z,1,2020-02-15T06:59:42Z +9045,2005-07-30T06:36:57Z,4521,46,2005-08-08T01:51:57Z,1,2020-02-15T06:59:42Z +9046,2005-07-30T06:46:55Z,1736,215,2005-08-01T02:21:55Z,2,2020-02-15T06:59:42Z +9047,2005-07-30T06:56:33Z,256,522,2005-08-08T06:40:33Z,2,2020-02-15T06:59:42Z +9048,2005-07-30T06:57:07Z,3929,100,2005-08-05T00:57:07Z,1,2020-02-15T06:59:42Z +9049,2005-07-30T06:57:28Z,2620,417,2005-08-04T09:02:28Z,1,2020-02-15T06:59:42Z +9050,2005-07-30T06:59:55Z,106,40,2005-08-06T06:37:55Z,1,2020-02-15T06:59:42Z +9051,2005-07-30T07:05:54Z,1847,337,2005-08-07T09:12:54Z,2,2020-02-15T06:59:42Z +9052,2005-07-30T07:06:08Z,3351,408,2005-08-03T10:30:08Z,1,2020-02-15T06:59:42Z +9053,2005-07-30T07:07:39Z,2535,485,2005-08-01T09:22:39Z,2,2020-02-15T06:59:42Z +9054,2005-07-30T07:11:44Z,2860,209,2005-08-08T01:55:44Z,2,2020-02-15T06:59:42Z +9055,2005-07-30T07:13:07Z,634,512,2005-08-01T12:18:07Z,1,2020-02-15T06:59:42Z +9056,2005-07-30T07:13:20Z,4363,380,2005-08-03T07:36:20Z,1,2020-02-15T06:59:42Z +9057,2005-07-30T07:14:18Z,3141,202,2005-08-01T05:10:18Z,2,2020-02-15T06:59:42Z +9058,2005-07-30T07:15:45Z,4214,403,2005-07-31T02:57:45Z,2,2020-02-15T06:59:42Z +9059,2005-07-30T07:18:44Z,480,267,2005-08-08T08:39:44Z,1,2020-02-15T06:59:42Z +9060,2005-07-30T07:20:36Z,4360,87,2005-08-03T10:51:36Z,1,2020-02-15T06:59:42Z +9061,2005-07-30T07:21:52Z,1933,255,2005-08-08T10:52:52Z,1,2020-02-15T06:59:42Z +9062,2005-07-30T07:23:17Z,2780,358,2005-08-02T12:07:17Z,1,2020-02-15T06:59:42Z +9063,2005-07-30T07:24:34Z,2851,564,2005-08-05T01:28:34Z,2,2020-02-15T06:59:42Z +9064,2005-07-30T07:24:55Z,1417,194,2005-08-07T08:44:55Z,2,2020-02-15T06:59:42Z +9065,2005-07-30T07:25:09Z,349,238,2005-07-31T05:18:09Z,2,2020-02-15T06:59:42Z +9066,2005-07-30T07:28:54Z,196,171,2005-08-02T05:23:54Z,1,2020-02-15T06:59:42Z +9067,2005-07-30T07:31:01Z,3628,382,2005-08-04T11:44:01Z,2,2020-02-15T06:59:42Z +9068,2005-07-30T07:31:45Z,2264,78,2005-08-08T06:40:45Z,1,2020-02-15T06:59:42Z +9069,2005-07-30T07:39:59Z,1852,258,2005-08-02T04:10:59Z,1,2020-02-15T06:59:42Z +9070,2005-07-30T07:40:39Z,3690,276,2005-08-01T04:19:39Z,2,2020-02-15T06:59:42Z +9071,2005-07-30T07:40:58Z,3151,523,2005-08-01T06:59:58Z,2,2020-02-15T06:59:42Z +9072,2005-07-30T07:45:49Z,4536,106,2005-08-04T10:00:49Z,1,2020-02-15T06:59:42Z +9073,2005-07-30T07:49:56Z,2185,141,2005-08-05T06:25:56Z,2,2020-02-15T06:59:42Z +9074,2005-07-30T07:50:10Z,3244,84,2005-08-01T11:21:10Z,2,2020-02-15T06:59:42Z +9075,2005-07-30T07:55:14Z,1931,20,2005-08-02T13:49:14Z,1,2020-02-15T06:59:42Z +9076,2005-07-30T07:58:12Z,496,447,2005-08-08T06:04:12Z,1,2020-02-15T06:59:42Z +9077,2005-07-30T08:00:19Z,4324,471,2005-08-08T11:21:19Z,1,2020-02-15T06:59:42Z +9078,2005-07-30T08:01:00Z,955,300,2005-07-31T10:39:00Z,1,2020-02-15T06:59:42Z +9079,2005-07-30T08:02:00Z,2143,193,2005-07-31T04:02:00Z,2,2020-02-15T06:59:42Z +9080,2005-07-30T08:02:39Z,94,276,2005-08-06T12:02:39Z,1,2020-02-15T06:59:42Z +9081,2005-07-30T08:09:58Z,3040,572,2005-08-03T13:27:58Z,1,2020-02-15T06:59:42Z +9082,2005-07-30T08:11:22Z,4042,438,2005-08-06T09:26:22Z,2,2020-02-15T06:59:42Z +9083,2005-07-30T08:14:27Z,456,488,2005-08-07T14:02:27Z,1,2020-02-15T06:59:42Z +9084,2005-07-30T08:14:29Z,3950,171,2005-08-03T11:12:29Z,2,2020-02-15T06:59:42Z +9085,2005-07-30T08:17:24Z,3400,33,2005-08-03T09:35:24Z,2,2020-02-15T06:59:42Z +9086,2005-07-30T08:18:46Z,2779,57,2005-08-06T06:10:46Z,2,2020-02-15T06:59:42Z +9087,2005-07-30T08:19:47Z,4048,546,2005-08-02T07:15:47Z,1,2020-02-15T06:59:42Z +9088,2005-07-30T08:21:02Z,3407,245,2005-08-01T09:55:02Z,1,2020-02-15T06:59:42Z +9089,2005-07-30T08:23:39Z,490,369,2005-07-31T06:00:39Z,1,2020-02-15T06:59:42Z +9090,2005-07-30T08:24:42Z,3426,104,2005-08-08T06:17:42Z,2,2020-02-15T06:59:42Z +9091,2005-07-30T08:30:45Z,2249,66,2005-08-07T13:28:45Z,1,2020-02-15T06:59:42Z +9092,2005-07-30T08:30:56Z,1877,17,2005-08-06T08:09:56Z,2,2020-02-15T06:59:42Z +9093,2005-07-30T08:33:24Z,2208,96,2005-08-04T11:07:24Z,1,2020-02-15T06:59:42Z +9094,2005-07-30T08:35:10Z,2699,140,2005-08-07T08:18:10Z,2,2020-02-15T06:59:42Z +9095,2005-07-30T08:38:36Z,3019,511,2005-07-31T06:14:36Z,1,2020-02-15T06:59:42Z +9096,2005-07-30T08:39:23Z,540,216,2005-08-01T03:33:23Z,1,2020-02-15T06:59:42Z +9097,2005-07-30T08:40:35Z,570,173,2005-08-04T11:19:35Z,2,2020-02-15T06:59:42Z +9098,2005-07-30T08:44:21Z,1267,144,2005-08-08T12:31:21Z,1,2020-02-15T06:59:42Z +9099,2005-07-30T08:45:48Z,594,250,2005-08-01T03:18:48Z,2,2020-02-15T06:59:42Z +9100,2005-07-30T08:46:09Z,4117,4,2005-08-05T10:34:09Z,1,2020-02-15T06:59:42Z +9101,2005-07-30T08:47:13Z,3165,566,2005-08-02T12:52:13Z,1,2020-02-15T06:59:42Z +9102,2005-07-30T08:48:20Z,1154,276,2005-08-04T10:19:20Z,1,2020-02-15T06:59:42Z +9103,2005-07-30T08:49:26Z,3806,280,2005-07-31T14:15:26Z,1,2020-02-15T06:59:42Z +9104,2005-07-30T08:49:55Z,3372,322,2005-08-06T12:23:55Z,1,2020-02-15T06:59:42Z +9105,2005-07-30T08:50:25Z,4443,262,2005-08-05T06:08:25Z,1,2020-02-15T06:59:42Z +9106,2005-07-30T08:52:34Z,2935,148,2005-08-02T07:38:34Z,2,2020-02-15T06:59:42Z +9107,2005-07-30T08:52:45Z,1068,531,2005-08-05T08:39:45Z,2,2020-02-15T06:59:42Z +9108,2005-07-30T08:56:36Z,3977,490,2005-08-04T11:07:36Z,1,2020-02-15T06:59:42Z +9109,2005-07-30T08:58:24Z,787,266,2005-08-07T06:56:24Z,1,2020-02-15T06:59:42Z +9110,2005-07-30T09:05:42Z,1474,317,2005-08-03T05:15:42Z,1,2020-02-15T06:59:42Z +9111,2005-07-30T09:05:44Z,166,211,2005-08-04T14:27:44Z,2,2020-02-15T06:59:42Z +9112,2005-07-30T09:06:31Z,395,74,2005-08-04T05:12:31Z,2,2020-02-15T06:59:42Z +9113,2005-07-30T09:09:03Z,3903,374,2005-07-31T03:13:03Z,1,2020-02-15T06:59:42Z +9114,2005-07-30T09:13:21Z,893,18,2005-08-05T06:00:21Z,2,2020-02-15T06:59:42Z +9115,2005-07-30T09:13:55Z,3750,322,2005-08-04T04:02:55Z,2,2020-02-15T06:59:42Z +9116,2005-07-30T09:19:41Z,2917,446,2005-08-03T08:01:41Z,2,2020-02-15T06:59:42Z +9117,2005-07-30T09:20:59Z,3055,371,2005-08-07T08:47:59Z,1,2020-02-15T06:59:42Z +9118,2005-07-30T09:24:18Z,4538,172,2005-08-02T14:46:18Z,2,2020-02-15T06:59:42Z +9119,2005-07-30T09:25:56Z,275,305,2005-08-03T03:36:56Z,1,2020-02-15T06:59:42Z +9120,2005-07-30T09:26:08Z,139,473,2005-08-08T09:52:08Z,1,2020-02-15T06:59:42Z +9121,2005-07-30T09:36:26Z,3098,150,2005-08-05T15:17:26Z,2,2020-02-15T06:59:42Z +9122,2005-07-30T09:36:52Z,627,365,2005-08-05T13:20:52Z,1,2020-02-15T06:59:42Z +9123,2005-07-30T09:39:15Z,3748,293,2005-08-02T08:12:15Z,2,2020-02-15T06:59:42Z +9124,2005-07-30T09:43:12Z,4552,105,2005-08-06T06:17:12Z,1,2020-02-15T06:59:42Z +9125,2005-07-30T09:43:39Z,333,335,2005-08-07T14:02:39Z,1,2020-02-15T06:59:42Z +9126,2005-07-30T09:44:15Z,4495,590,2005-08-02T11:02:15Z,2,2020-02-15T06:59:42Z +9127,2005-07-30T09:46:36Z,4114,300,2005-07-31T07:43:36Z,1,2020-02-15T06:59:42Z +9128,2005-07-30T09:51:14Z,3647,372,2005-08-07T06:23:14Z,1,2020-02-15T06:59:42Z +9129,2005-07-30T09:51:21Z,2658,125,2005-08-07T08:50:21Z,2,2020-02-15T06:59:42Z +9130,2005-07-30T09:55:10Z,1715,354,2005-08-04T08:57:10Z,1,2020-02-15T06:59:42Z +9131,2005-07-30T09:55:57Z,623,142,2005-08-01T14:21:57Z,1,2020-02-15T06:59:42Z +9132,2005-07-30T09:56:00Z,402,159,2005-08-02T09:22:00Z,1,2020-02-15T06:59:42Z +9133,2005-07-30T09:59:00Z,408,576,2005-08-07T04:24:00Z,1,2020-02-15T06:59:42Z +9134,2005-07-30T10:00:21Z,3797,559,2005-08-01T05:01:21Z,1,2020-02-15T06:59:42Z +9135,2005-07-30T10:06:53Z,821,161,2005-08-03T13:57:53Z,2,2020-02-15T06:59:42Z +9136,2005-07-30T10:07:20Z,1734,57,2005-07-31T08:20:20Z,2,2020-02-15T06:59:42Z +9137,2005-07-30T10:09:24Z,840,459,2005-08-06T04:30:24Z,2,2020-02-15T06:59:42Z +9138,2005-07-30T10:11:52Z,2550,17,2005-07-31T07:05:52Z,2,2020-02-15T06:59:42Z +9139,2005-07-30T10:11:52Z,2809,133,2005-08-03T12:44:52Z,1,2020-02-15T06:59:42Z +9140,2005-07-30T10:12:01Z,4095,25,2005-08-06T09:16:01Z,2,2020-02-15T06:59:42Z +9141,2005-07-30T10:16:04Z,3087,484,2005-08-05T08:01:04Z,1,2020-02-15T06:59:42Z +9142,2005-07-30T10:21:03Z,4467,486,2005-08-04T15:14:03Z,1,2020-02-15T06:59:42Z +9143,2005-07-30T10:22:11Z,2962,511,2005-08-07T06:13:11Z,2,2020-02-15T06:59:42Z +9144,2005-07-30T10:22:15Z,718,381,2005-08-05T08:14:15Z,1,2020-02-15T06:59:42Z +9145,2005-07-30T10:27:55Z,559,176,2005-08-07T14:41:55Z,2,2020-02-15T06:59:42Z +9146,2005-07-30T10:32:08Z,483,302,2005-08-08T14:30:08Z,1,2020-02-15T06:59:42Z +9147,2005-07-30T10:38:59Z,4167,394,2005-08-02T11:45:59Z,2,2020-02-15T06:59:42Z +9148,2005-07-30T10:39:10Z,1407,333,2005-08-04T07:17:10Z,2,2020-02-15T06:59:42Z +9149,2005-07-30T10:45:12Z,2632,21,2005-08-01T09:40:12Z,1,2020-02-15T06:59:42Z +9150,2005-07-30T10:49:32Z,2834,213,2005-08-08T15:43:32Z,1,2020-02-15T06:59:42Z +9151,2005-07-30T10:50:53Z,3956,102,2005-08-07T08:19:53Z,1,2020-02-15T06:59:42Z +9152,2005-07-30T10:51:27Z,3607,595,2005-07-31T06:38:27Z,2,2020-02-15T06:59:42Z +9153,2005-07-30T10:58:16Z,3743,589,2005-08-03T06:16:16Z,2,2020-02-15T06:59:42Z +9154,2005-07-30T10:59:54Z,576,312,2005-08-05T16:47:54Z,1,2020-02-15T06:59:42Z +9155,2005-07-30T11:00:00Z,3787,107,2005-08-02T05:24:00Z,2,2020-02-15T06:59:42Z +9156,2005-07-30T11:04:55Z,1747,145,2005-07-31T14:10:55Z,2,2020-02-15T06:59:42Z +9157,2005-07-30T11:06:23Z,146,19,2005-08-05T05:29:23Z,2,2020-02-15T06:59:42Z +9158,2005-07-30T11:12:03Z,4017,16,2005-08-02T05:55:03Z,2,2020-02-15T06:59:42Z +9159,2005-07-30T11:16:37Z,1234,217,2005-08-03T10:32:37Z,1,2020-02-15T06:59:42Z +9160,2005-07-30T11:17:33Z,183,34,2005-08-06T15:16:33Z,2,2020-02-15T06:59:42Z +9161,2005-07-30T11:19:18Z,969,433,2005-08-02T05:32:18Z,1,2020-02-15T06:59:42Z +9162,2005-07-30T11:21:56Z,4198,184,2005-08-02T15:32:56Z,1,2020-02-15T06:59:42Z +9163,2005-07-30T11:23:22Z,4562,345,2005-07-31T07:34:22Z,2,2020-02-15T06:59:42Z +9164,2005-07-30T11:24:14Z,4434,342,2005-08-08T16:24:14Z,1,2020-02-15T06:59:42Z +9165,2005-07-30T11:24:28Z,4034,291,2005-08-03T09:38:28Z,1,2020-02-15T06:59:42Z +9166,2005-07-30T11:26:28Z,308,12,2005-08-04T12:32:28Z,1,2020-02-15T06:59:42Z +9167,2005-07-30T11:30:37Z,1785,162,2005-08-08T17:13:37Z,1,2020-02-15T06:59:42Z +9168,2005-07-30T11:31:17Z,2035,75,2005-08-08T16:56:17Z,2,2020-02-15T06:59:42Z +9169,2005-07-30T11:35:00Z,1567,245,2005-08-06T16:16:00Z,2,2020-02-15T06:59:42Z +9170,2005-07-30T11:35:24Z,4279,425,2005-08-05T05:36:24Z,1,2020-02-15T06:59:42Z +9171,2005-07-30T11:36:24Z,1832,189,2005-08-07T06:04:24Z,2,2020-02-15T06:59:42Z +9172,2005-07-30T11:36:38Z,695,437,2005-08-04T09:39:38Z,1,2020-02-15T06:59:42Z +9173,2005-07-30T11:40:10Z,2103,381,2005-08-04T05:40:10Z,2,2020-02-15T06:59:42Z +9174,2005-07-30T11:42:10Z,2636,144,2005-07-31T09:52:10Z,1,2020-02-15T06:59:42Z +9175,2005-07-30T11:47:48Z,358,133,2005-08-02T08:13:48Z,1,2020-02-15T06:59:42Z +9176,2005-07-30T11:50:54Z,2659,260,2005-08-02T14:25:54Z,2,2020-02-15T06:59:42Z +9177,2005-07-30T11:52:40Z,1088,400,2005-08-08T09:35:40Z,1,2020-02-15T06:59:42Z +9178,2005-07-30T11:58:50Z,2046,448,2005-08-08T15:24:50Z,2,2020-02-15T06:59:42Z +9179,2005-07-30T12:02:41Z,62,50,2005-08-05T15:23:41Z,2,2020-02-15T06:59:42Z +9180,2005-07-30T12:03:15Z,3479,442,2005-08-01T14:25:15Z,1,2020-02-15T06:59:42Z +9181,2005-07-30T12:05:58Z,3953,224,2005-08-02T06:22:58Z,1,2020-02-15T06:59:42Z +9182,2005-07-30T12:06:58Z,2533,165,2005-08-08T11:33:58Z,2,2020-02-15T06:59:42Z +9183,2005-07-30T12:09:56Z,4320,475,2005-08-06T11:50:56Z,2,2020-02-15T06:59:42Z +9184,2005-07-30T12:10:19Z,51,365,2005-08-01T07:35:19Z,2,2020-02-15T06:59:42Z +9185,2005-07-30T12:10:40Z,2268,426,2005-08-06T07:01:40Z,1,2020-02-15T06:59:42Z +9186,2005-07-30T12:13:48Z,4513,273,2005-07-31T11:59:48Z,1,2020-02-15T06:59:42Z +9187,2005-07-30T12:14:03Z,4008,469,2005-08-04T13:10:03Z,2,2020-02-15T06:59:42Z +9188,2005-07-30T12:19:54Z,727,195,2005-08-06T09:12:54Z,2,2020-02-15T06:59:42Z +9189,2005-07-30T12:20:59Z,4529,485,2005-08-06T16:15:59Z,1,2020-02-15T06:59:42Z +9190,2005-07-30T12:24:17Z,4421,177,2005-08-03T07:41:17Z,2,2020-02-15T06:59:42Z +9191,2005-07-30T12:25:51Z,500,314,2005-08-05T16:13:51Z,1,2020-02-15T06:59:42Z +9192,2005-07-30T12:26:26Z,2372,102,2005-08-04T07:54:26Z,2,2020-02-15T06:59:42Z +9193,2005-07-30T12:28:42Z,3470,69,2005-08-02T12:17:42Z,2,2020-02-15T06:59:42Z +9194,2005-07-30T12:28:45Z,2467,294,2005-08-06T14:38:45Z,1,2020-02-15T06:59:42Z +9195,2005-07-30T12:29:43Z,944,440,2005-08-04T12:35:43Z,1,2020-02-15T06:59:42Z +9196,2005-07-30T12:30:19Z,4298,251,2005-07-31T18:01:19Z,2,2020-02-15T06:59:42Z +9197,2005-07-30T12:31:36Z,3214,168,2005-08-03T09:05:36Z,1,2020-02-15T06:59:42Z +9198,2005-07-30T12:37:08Z,2371,105,2005-08-07T16:37:08Z,2,2020-02-15T06:59:42Z +9199,2005-07-30T12:38:00Z,4336,580,2005-08-01T07:09:00Z,1,2020-02-15T06:59:42Z +9200,2005-07-30T12:39:52Z,3277,137,2005-08-08T09:43:52Z,2,2020-02-15T06:59:42Z +9201,2005-07-30T12:42:21Z,4387,291,2005-08-08T06:50:21Z,1,2020-02-15T06:59:42Z +9202,2005-07-30T12:43:24Z,4525,466,2005-08-07T10:39:24Z,2,2020-02-15T06:59:42Z +9203,2005-07-30T12:43:40Z,2112,169,2005-08-01T09:31:40Z,2,2020-02-15T06:59:42Z +9204,2005-07-30T12:43:58Z,4378,43,2005-08-03T16:26:58Z,2,2020-02-15T06:59:42Z +9205,2005-07-30T12:46:40Z,4165,259,2005-08-08T14:58:40Z,1,2020-02-15T06:59:42Z +9206,2005-07-30T12:46:59Z,2021,404,2005-08-03T14:58:59Z,1,2020-02-15T06:59:42Z +9207,2005-07-30T12:49:57Z,1346,345,2005-07-31T14:32:57Z,2,2020-02-15T06:59:42Z +9208,2005-07-30T12:54:03Z,2751,339,2005-08-06T17:22:03Z,2,2020-02-15T06:59:42Z +9209,2005-07-30T12:55:36Z,3940,23,2005-08-03T11:31:36Z,2,2020-02-15T06:59:42Z +9210,2005-07-30T12:56:44Z,101,105,2005-08-08T09:41:44Z,2,2020-02-15T06:59:42Z +9211,2005-07-30T12:59:45Z,595,57,2005-08-07T18:17:45Z,2,2020-02-15T06:59:42Z +9212,2005-07-30T13:03:13Z,2111,73,2005-08-06T09:48:13Z,1,2020-02-15T06:59:42Z +9213,2005-07-30T13:07:11Z,184,388,2005-08-01T15:30:11Z,1,2020-02-15T06:59:43Z +9214,2005-07-30T13:10:14Z,2823,181,2005-08-06T14:22:14Z,2,2020-02-15T06:59:43Z +9215,2005-07-30T13:11:11Z,3591,128,2005-08-06T13:06:11Z,1,2020-02-15T06:59:43Z +9216,2005-07-30T13:11:19Z,2783,38,2005-07-31T11:27:19Z,2,2020-02-15T06:59:43Z +9217,2005-07-30T13:13:55Z,1561,112,2005-08-05T17:27:55Z,1,2020-02-15T06:59:43Z +9218,2005-07-30T13:14:35Z,119,172,2005-08-07T18:03:35Z,1,2020-02-15T06:59:43Z +9219,2005-07-30T13:15:21Z,771,329,2005-08-01T11:39:21Z,1,2020-02-15T06:59:43Z +9220,2005-07-30T13:17:27Z,2463,569,2005-08-07T11:34:27Z,2,2020-02-15T06:59:43Z +9221,2005-07-30T13:20:06Z,2496,113,2005-08-06T13:58:06Z,2,2020-02-15T06:59:43Z +9222,2005-07-30T13:21:08Z,3648,95,2005-08-08T10:42:08Z,2,2020-02-15T06:59:43Z +9223,2005-07-30T13:23:20Z,3231,595,2005-08-04T11:24:20Z,1,2020-02-15T06:59:43Z +9224,2005-07-30T13:25:37Z,2260,406,2005-08-01T15:13:37Z,2,2020-02-15T06:59:43Z +9225,2005-07-30T13:29:47Z,1992,391,2005-08-02T17:08:47Z,2,2020-02-15T06:59:43Z +9226,2005-07-30T13:31:20Z,4315,3,2005-08-06T16:42:20Z,1,2020-02-15T06:59:43Z +9227,2005-07-30T13:36:13Z,2353,522,2005-08-07T17:39:13Z,1,2020-02-15T06:59:43Z +9228,2005-07-30T13:36:57Z,2325,91,2005-08-05T10:43:57Z,1,2020-02-15T06:59:43Z +9229,2005-07-30T13:38:17Z,3780,276,2005-08-08T18:17:17Z,2,2020-02-15T06:59:43Z +9230,2005-07-30T13:39:42Z,1199,109,2005-07-31T19:20:42Z,1,2020-02-15T06:59:43Z +9231,2005-07-30T13:42:15Z,1587,489,2005-08-02T19:27:15Z,1,2020-02-15T06:59:43Z +9232,2005-07-30T13:43:00Z,1991,502,2005-08-02T11:39:00Z,2,2020-02-15T06:59:43Z +9233,2005-07-30T13:44:15Z,2320,357,2005-08-07T13:02:15Z,2,2020-02-15T06:59:43Z +9234,2005-07-30T13:45:54Z,1660,128,2005-08-02T15:33:54Z,1,2020-02-15T06:59:43Z +9235,2005-07-30T13:47:17Z,984,181,2005-08-06T17:15:17Z,2,2020-02-15T06:59:43Z +9236,2005-07-30T13:47:43Z,4030,2,2005-08-08T18:52:43Z,1,2020-02-15T06:59:43Z +9237,2005-07-30T13:48:17Z,2777,157,2005-07-31T13:57:17Z,2,2020-02-15T06:59:43Z +9238,2005-07-30T13:49:43Z,3356,12,2005-08-08T08:25:43Z,2,2020-02-15T06:59:43Z +9239,2005-07-30T13:50:52Z,1728,580,2005-08-06T16:28:52Z,1,2020-02-15T06:59:43Z +9240,2005-07-30T13:57:54Z,587,92,2005-08-03T12:23:54Z,2,2020-02-15T06:59:43Z +9241,2005-07-30T13:58:41Z,4145,187,2005-08-04T09:44:41Z,2,2020-02-15T06:59:43Z +9242,2005-07-30T14:03:58Z,755,306,2005-08-02T18:09:58Z,2,2020-02-15T06:59:43Z +9243,2005-07-30T14:06:27Z,876,516,2005-08-06T09:26:27Z,2,2020-02-15T06:59:43Z +9244,2005-07-30T14:06:53Z,3640,27,2005-08-03T19:46:53Z,1,2020-02-15T06:59:43Z +9245,2005-07-30T14:07:50Z,2586,116,2005-08-06T17:59:50Z,2,2020-02-15T06:59:43Z +9246,2005-07-30T14:12:31Z,3390,185,2005-08-02T14:25:31Z,2,2020-02-15T06:59:43Z +9247,2005-07-30T14:13:56Z,4106,426,2005-08-02T16:34:56Z,2,2020-02-15T06:59:43Z +9248,2005-07-30T14:14:11Z,1382,2,2005-08-05T11:19:11Z,1,2020-02-15T06:59:43Z +9249,2005-07-30T14:15:02Z,2015,296,2005-08-05T13:02:02Z,1,2020-02-15T06:59:43Z +9250,2005-07-30T14:18:16Z,4544,539,2005-08-04T12:31:16Z,1,2020-02-15T06:59:43Z +9251,2005-07-30T14:19:25Z,2948,390,2005-08-08T11:22:25Z,2,2020-02-15T06:59:43Z +9252,2005-07-30T14:19:59Z,2350,322,2005-08-07T15:17:59Z,1,2020-02-15T06:59:43Z +9253,2005-07-30T14:20:12Z,4183,151,2005-07-31T11:31:12Z,2,2020-02-15T06:59:43Z +9254,2005-07-30T14:26:11Z,495,33,2005-08-04T16:12:11Z,1,2020-02-15T06:59:43Z +9255,2005-07-30T14:26:46Z,1596,23,2005-08-07T18:16:46Z,1,2020-02-15T06:59:43Z +9256,2005-07-30T14:29:29Z,4021,19,2005-08-05T16:59:29Z,1,2020-02-15T06:59:43Z +9257,2005-07-30T14:30:38Z,2615,466,2005-08-04T17:57:38Z,1,2020-02-15T06:59:43Z +9258,2005-07-30T14:31:31Z,2007,275,2005-08-05T16:29:31Z,2,2020-02-15T06:59:43Z +9259,2005-07-30T14:37:44Z,97,138,2005-08-06T18:05:44Z,2,2020-02-15T06:59:43Z +9260,2005-07-30T14:38:22Z,3969,13,2005-08-07T18:47:22Z,2,2020-02-15T06:59:43Z +9261,2005-07-30T14:39:35Z,372,380,2005-08-08T11:26:35Z,1,2020-02-15T06:59:43Z +9262,2005-07-30T14:45:02Z,2322,349,2005-08-05T15:18:02Z,2,2020-02-15T06:59:43Z +9263,2005-07-30T14:48:24Z,73,410,2005-08-04T19:06:24Z,2,2020-02-15T06:59:43Z +9264,2005-07-30T14:51:36Z,4071,157,2005-08-02T10:06:36Z,1,2020-02-15T06:59:43Z +9265,2005-07-30T14:55:25Z,3700,560,2005-08-02T11:34:25Z,1,2020-02-15T06:59:43Z +9266,2005-07-30T14:59:01Z,1705,364,2005-07-31T17:01:01Z,2,2020-02-15T06:59:43Z +9267,2005-07-30T14:59:05Z,645,409,2005-08-04T10:17:05Z,1,2020-02-15T06:59:43Z +9268,2005-07-30T15:02:30Z,3593,592,2005-08-05T12:50:30Z,1,2020-02-15T06:59:43Z +9269,2005-07-30T15:02:33Z,548,435,2005-08-02T16:32:33Z,1,2020-02-15T06:59:43Z +9270,2005-07-30T15:03:16Z,700,232,2005-07-31T16:09:16Z,2,2020-02-15T06:59:43Z +9271,2005-07-30T15:04:31Z,2660,100,2005-07-31T20:33:31Z,1,2020-02-15T06:59:43Z +9272,2005-07-30T15:05:22Z,1352,553,2005-08-05T10:02:22Z,2,2020-02-15T06:59:43Z +9273,2005-07-30T15:05:36Z,1867,497,2005-08-08T09:07:36Z,1,2020-02-15T06:59:43Z +9274,2005-07-30T15:07:04Z,4424,47,2005-08-06T11:17:04Z,2,2020-02-15T06:59:43Z +9275,2005-07-30T15:09:15Z,1916,439,2005-07-31T10:23:15Z,2,2020-02-15T06:59:43Z +9276,2005-07-30T15:09:28Z,1528,237,2005-08-06T19:39:28Z,1,2020-02-15T06:59:43Z +9277,2005-07-30T15:13:45Z,3734,82,2005-08-05T10:25:45Z,2,2020-02-15T06:59:43Z +9278,2005-07-30T15:15:19Z,3782,581,2005-08-03T20:21:19Z,1,2020-02-15T06:59:43Z +9279,2005-07-30T15:15:21Z,1070,567,2005-08-07T18:46:21Z,1,2020-02-15T06:59:43Z +9280,2005-07-30T15:15:38Z,4103,286,2005-08-05T19:20:38Z,2,2020-02-15T06:59:43Z +9281,2005-07-30T15:15:51Z,3086,398,2005-08-05T12:58:51Z,1,2020-02-15T06:59:43Z +9282,2005-07-30T15:17:31Z,736,259,2005-08-07T20:46:31Z,1,2020-02-15T06:59:43Z +9283,2005-07-30T15:25:19Z,1858,360,2005-08-01T15:35:19Z,2,2020-02-15T06:59:43Z +9284,2005-07-30T15:25:19Z,3976,38,2005-08-01T17:45:19Z,2,2020-02-15T06:59:43Z +9285,2005-07-30T15:26:08Z,3686,273,2005-08-06T15:59:08Z,2,2020-02-15T06:59:43Z +9286,2005-07-30T15:32:28Z,2477,154,2005-07-31T20:42:28Z,2,2020-02-15T06:59:43Z +9287,2005-07-30T15:35:39Z,2048,551,2005-08-02T10:15:39Z,1,2020-02-15T06:59:43Z +9288,2005-07-30T15:56:39Z,2640,447,2005-08-04T13:25:39Z,2,2020-02-15T06:59:43Z +9289,2005-07-30T15:57:04Z,389,453,2005-08-07T18:46:04Z,1,2020-02-15T06:59:43Z +9290,2005-07-30T15:59:08Z,2275,500,2005-08-06T21:49:08Z,2,2020-02-15T06:59:43Z +9291,2005-07-30T16:03:39Z,2884,406,2005-08-05T11:11:39Z,2,2020-02-15T06:59:43Z +9292,2005-07-30T16:08:21Z,1702,11,2005-08-07T10:38:21Z,2,2020-02-15T06:59:43Z +9293,2005-07-30T16:12:28Z,1676,65,2005-08-05T18:34:28Z,2,2020-02-15T06:59:43Z +9294,2005-07-30T16:14:37Z,2468,433,2005-08-07T18:49:37Z,1,2020-02-15T06:59:43Z +9295,2005-07-30T16:18:39Z,494,102,2005-08-03T12:46:39Z,1,2020-02-15T06:59:43Z +9296,2005-07-30T16:21:13Z,4088,2,2005-08-08T11:57:13Z,1,2020-02-15T06:59:43Z +9297,2005-07-30T16:26:29Z,3502,191,2005-08-03T13:51:29Z,1,2020-02-15T06:59:43Z +9298,2005-07-30T16:27:53Z,2106,208,2005-08-07T12:32:53Z,2,2020-02-15T06:59:43Z +9299,2005-07-30T16:32:51Z,1515,555,2005-08-08T15:28:51Z,2,2020-02-15T06:59:43Z +9300,2005-07-30T16:33:12Z,1639,571,2005-08-05T15:56:12Z,1,2020-02-15T06:59:43Z +9301,2005-07-30T16:34:29Z,1073,174,2005-07-31T18:41:29Z,2,2020-02-15T06:59:43Z +9302,2005-07-30T16:34:57Z,2326,55,2005-07-31T11:08:57Z,2,2020-02-15T06:59:43Z +9303,2005-07-30T16:35:59Z,4299,186,2005-08-03T18:31:59Z,1,2020-02-15T06:59:43Z +9304,2005-07-30T16:41:34Z,2937,296,2005-08-02T13:55:34Z,2,2020-02-15T06:59:43Z +9305,2005-07-30T16:45:56Z,1224,82,2005-08-08T21:15:56Z,2,2020-02-15T06:59:43Z +9306,2005-07-30T16:47:17Z,3983,336,2005-08-02T22:15:17Z,1,2020-02-15T06:59:43Z +9307,2005-07-30T16:52:43Z,3831,538,2005-08-01T11:58:43Z,1,2020-02-15T06:59:43Z +9308,2005-07-30T16:53:21Z,2202,267,2005-08-08T15:33:21Z,2,2020-02-15T06:59:43Z +9309,2005-07-30T16:55:53Z,3616,30,2005-08-07T11:23:53Z,1,2020-02-15T06:59:43Z +9310,2005-07-30T16:57:09Z,2957,529,2005-08-03T18:14:09Z,1,2020-02-15T06:59:43Z +9311,2005-07-30T16:58:31Z,1432,178,2005-08-07T15:23:31Z,1,2020-02-15T06:59:43Z +9312,2005-07-30T16:59:17Z,2483,76,2005-08-03T17:24:17Z,2,2020-02-15T06:59:43Z +9313,2005-07-30T16:59:43Z,4070,41,2005-08-05T14:06:43Z,2,2020-02-15T06:59:43Z +9314,2005-07-30T17:05:19Z,2358,390,2005-07-31T12:19:19Z,1,2020-02-15T06:59:43Z +9315,2005-07-30T17:05:29Z,444,96,2005-08-01T12:47:29Z,1,2020-02-15T06:59:43Z +9316,2005-07-30T17:11:58Z,4409,366,2005-08-05T14:36:58Z,1,2020-02-15T06:59:43Z +9317,2005-07-30T17:13:37Z,4138,217,2005-08-08T11:33:37Z,1,2020-02-15T06:59:43Z +9318,2005-07-30T17:14:30Z,2426,314,2005-08-06T16:53:30Z,1,2020-02-15T06:59:43Z +9319,2005-07-30T17:15:27Z,4066,136,2005-08-03T14:03:27Z,1,2020-02-15T06:59:43Z +9320,2005-07-30T17:16:39Z,909,221,2005-08-06T18:43:39Z,2,2020-02-15T06:59:43Z +9321,2005-07-30T17:19:44Z,3558,112,2005-08-06T22:42:44Z,2,2020-02-15T06:59:43Z +9322,2005-07-30T17:21:39Z,223,439,2005-08-06T16:58:39Z,2,2020-02-15T06:59:43Z +9323,2005-07-30T17:21:44Z,3749,131,2005-08-03T16:28:44Z,1,2020-02-15T06:59:43Z +9324,2005-07-30T17:28:52Z,1231,332,2005-08-06T19:02:52Z,1,2020-02-15T06:59:43Z +9325,2005-07-30T17:29:19Z,1938,476,2005-08-08T12:55:19Z,2,2020-02-15T06:59:43Z +9326,2005-07-30T17:30:03Z,3772,588,2005-08-01T13:41:03Z,2,2020-02-15T06:59:43Z +9327,2005-07-30T17:31:03Z,345,373,2005-08-08T19:16:03Z,1,2020-02-15T06:59:43Z +9328,2005-07-30T17:32:11Z,1087,89,2005-08-05T13:36:11Z,1,2020-02-15T06:59:43Z +9329,2005-07-30T17:42:38Z,1293,593,2005-08-08T23:17:38Z,1,2020-02-15T06:59:43Z +9330,2005-07-30T17:44:24Z,4227,232,2005-08-08T17:39:24Z,1,2020-02-15T06:59:43Z +9331,2005-07-30T17:46:50Z,2248,274,2005-08-01T19:03:50Z,1,2020-02-15T06:59:43Z +9332,2005-07-30T17:53:39Z,1156,480,2005-08-02T12:25:39Z,1,2020-02-15T06:59:43Z +9333,2005-07-30T17:53:45Z,1377,437,2005-07-31T22:35:45Z,2,2020-02-15T06:59:43Z +9334,2005-07-30T17:56:38Z,1499,25,2005-08-03T21:27:38Z,1,2020-02-15T06:59:43Z +9335,2005-07-30T18:00:53Z,1006,522,2005-08-01T16:05:53Z,1,2020-02-15T06:59:43Z +9336,2005-07-30T18:01:15Z,1911,557,2005-08-05T23:10:15Z,1,2020-02-15T06:59:43Z +9337,2005-07-30T18:02:25Z,2363,90,2005-07-31T12:30:25Z,2,2020-02-15T06:59:43Z +9338,2005-07-30T18:03:13Z,1482,333,2005-08-08T23:57:13Z,2,2020-02-15T06:59:43Z +9339,2005-07-30T18:03:28Z,3171,68,2005-08-08T19:45:28Z,2,2020-02-15T06:59:43Z +9340,2005-07-30T18:07:16Z,3228,213,2005-08-04T14:33:16Z,2,2020-02-15T06:59:43Z +9341,2005-07-30T18:07:58Z,894,557,2005-08-01T17:43:58Z,1,2020-02-15T06:59:43Z +9342,2005-07-30T18:09:56Z,2318,552,2005-08-08T13:54:56Z,2,2020-02-15T06:59:43Z +9343,2005-07-30T18:13:13Z,3521,53,2005-08-02T13:48:13Z,1,2020-02-15T06:59:43Z +9344,2005-07-30T18:13:45Z,1005,396,2005-08-07T15:23:45Z,2,2020-02-15T06:59:43Z +9345,2005-07-30T18:13:51Z,2042,436,2005-08-07T13:45:51Z,2,2020-02-15T06:59:43Z +9346,2005-07-30T18:13:52Z,2845,196,2005-08-03T17:58:52Z,1,2020-02-15T06:59:43Z +9347,2005-07-30T18:16:03Z,3557,479,2005-08-05T18:35:03Z,1,2020-02-15T06:59:43Z +9348,2005-07-30T18:17:09Z,3128,87,2005-08-07T15:25:09Z,1,2020-02-15T06:59:43Z +9349,2005-07-30T18:20:08Z,3739,579,2005-08-08T22:06:08Z,1,2020-02-15T06:59:43Z +9350,2005-07-30T18:24:30Z,798,434,2005-08-02T15:34:30Z,2,2020-02-15T06:59:43Z +9351,2005-07-30T18:28:30Z,2063,107,2005-08-02T17:26:30Z,1,2020-02-15T06:59:43Z +9352,2005-07-30T18:29:26Z,2619,360,2005-07-31T19:43:26Z,1,2020-02-15T06:59:43Z +9353,2005-07-30T18:30:37Z,3581,283,2005-08-06T22:32:37Z,2,2020-02-15T06:59:43Z +9354,2005-07-30T18:32:51Z,510,595,2005-08-02T21:28:51Z,2,2020-02-15T06:59:43Z +9355,2005-07-30T18:35:25Z,1122,201,2005-08-03T20:33:25Z,2,2020-02-15T06:59:43Z +9356,2005-07-30T18:36:24Z,4188,60,2005-08-03T14:10:24Z,1,2020-02-15T06:59:43Z +9357,2005-07-30T18:37:00Z,3927,181,2005-08-08T19:57:00Z,2,2020-02-15T06:59:43Z +9358,2005-07-30T18:37:24Z,712,302,2005-08-07T23:34:24Z,2,2020-02-15T06:59:43Z +9359,2005-07-30T18:39:28Z,21,501,2005-07-31T15:39:28Z,1,2020-02-15T06:59:43Z +9360,2005-07-30T18:39:43Z,2119,186,2005-08-04T22:41:43Z,2,2020-02-15T06:59:43Z +9361,2005-07-30T18:43:49Z,4163,335,2005-08-06T21:24:49Z,1,2020-02-15T06:59:43Z +9362,2005-07-30T18:44:16Z,3357,420,2005-08-01T20:14:16Z,1,2020-02-15T06:59:43Z +9363,2005-07-30T18:44:23Z,873,323,2005-08-04T15:03:23Z,1,2020-02-15T06:59:43Z +9364,2005-07-30T18:44:44Z,306,87,2005-08-08T23:55:44Z,2,2020-02-15T06:59:43Z +9365,2005-07-30T18:46:02Z,1539,232,2005-08-03T20:15:02Z,1,2020-02-15T06:59:43Z +9366,2005-07-30T18:48:57Z,4013,557,2005-08-03T15:17:57Z,2,2020-02-15T06:59:43Z +9367,2005-07-30T18:49:58Z,793,557,2005-08-08T22:04:58Z,1,2020-02-15T06:59:43Z +9368,2005-07-30T18:50:53Z,3026,388,2005-08-05T17:56:53Z,2,2020-02-15T06:59:43Z +9369,2005-07-30T18:52:19Z,3538,36,2005-08-01T12:53:19Z,1,2020-02-15T06:59:43Z +9370,2005-07-30T18:57:29Z,4433,588,2005-08-01T21:35:29Z,2,2020-02-15T06:59:43Z +9371,2005-07-30T18:58:00Z,2980,4,2005-08-03T15:14:00Z,1,2020-02-15T06:59:43Z +9372,2005-07-30T19:04:30Z,4075,454,2005-08-09T00:18:30Z,2,2020-02-15T06:59:43Z +9373,2005-07-30T19:05:36Z,3478,180,2005-08-05T16:16:36Z,2,2020-02-15T06:59:43Z +9374,2005-07-30T19:10:03Z,103,302,2005-08-06T21:54:03Z,2,2020-02-15T06:59:43Z +9375,2005-07-30T19:10:17Z,3063,529,2005-08-02T23:00:17Z,1,2020-02-15T06:59:43Z +9376,2005-07-30T19:11:49Z,451,86,2005-08-04T18:14:49Z,1,2020-02-15T06:59:43Z +9377,2005-07-30T19:12:18Z,4164,421,2005-08-05T19:38:18Z,1,2020-02-15T06:59:43Z +9378,2005-07-30T19:12:54Z,2209,197,2005-08-05T18:16:54Z,1,2020-02-15T06:59:43Z +9379,2005-07-30T19:13:01Z,3855,452,2005-08-07T19:18:01Z,2,2020-02-15T06:59:43Z +9380,2005-07-30T19:17:31Z,4403,264,2005-08-01T20:46:31Z,1,2020-02-15T06:59:43Z +9381,2005-07-30T19:23:04Z,4064,329,2005-07-31T23:37:04Z,2,2020-02-15T06:59:43Z +9382,2005-07-30T19:23:44Z,2127,17,2005-08-06T16:20:44Z,2,2020-02-15T06:59:43Z +9383,2005-07-30T19:24:50Z,2806,416,2005-08-01T21:41:50Z,2,2020-02-15T06:59:43Z +9384,2005-07-30T19:25:35Z,2313,220,2005-08-08T21:50:35Z,1,2020-02-15T06:59:43Z +9385,2005-07-30T19:25:49Z,3453,570,2005-08-08T17:08:49Z,2,2020-02-15T06:59:43Z +9386,2005-07-30T19:26:21Z,1123,189,2005-08-05T21:00:21Z,2,2020-02-15T06:59:43Z +9387,2005-07-30T19:27:05Z,577,495,2005-08-07T21:19:05Z,2,2020-02-15T06:59:43Z +9388,2005-07-30T19:27:22Z,2116,332,2005-08-08T15:31:22Z,2,2020-02-15T06:59:43Z +9389,2005-07-30T19:27:59Z,3124,198,2005-08-04T18:25:59Z,2,2020-02-15T06:59:43Z +9390,2005-07-30T19:42:07Z,1794,103,2005-08-01T23:17:07Z,1,2020-02-15T06:59:43Z +9391,2005-07-30T19:48:41Z,665,273,2005-08-04T15:27:41Z,1,2020-02-15T06:59:43Z +9392,2005-07-30T19:50:13Z,2797,29,2005-08-03T22:38:13Z,2,2020-02-15T06:59:43Z +9393,2005-07-30T20:04:48Z,843,158,2005-08-02T15:52:48Z,2,2020-02-15T06:59:43Z +9394,2005-07-30T20:06:24Z,161,204,2005-08-06T22:36:24Z,1,2020-02-15T06:59:43Z +9395,2005-07-30T20:07:06Z,1298,306,2005-08-08T21:21:06Z,1,2020-02-15T06:59:43Z +9396,2005-07-30T20:07:24Z,1250,91,2005-08-03T21:20:24Z,2,2020-02-15T06:59:43Z +9397,2005-07-30T20:07:29Z,1550,373,2005-08-05T00:36:29Z,1,2020-02-15T06:59:43Z +9398,2005-07-30T20:09:00Z,1175,570,2005-08-01T23:35:00Z,2,2020-02-15T06:59:43Z +9399,2005-07-30T20:14:50Z,3668,569,2005-08-03T17:30:50Z,1,2020-02-15T06:59:43Z +9400,2005-07-30T20:15:58Z,3910,368,2005-08-03T21:21:58Z,1,2020-02-15T06:59:43Z +9401,2005-07-30T20:18:19Z,2057,331,2005-08-07T15:46:19Z,1,2020-02-15T06:59:43Z +9402,2005-07-30T20:18:27Z,2424,48,2005-08-07T21:29:27Z,2,2020-02-15T06:59:43Z +9403,2005-07-30T20:18:53Z,3466,267,2005-08-06T19:54:53Z,1,2020-02-15T06:59:43Z +9404,2005-07-30T20:21:35Z,3832,140,2005-08-02T15:52:35Z,1,2020-02-15T06:59:43Z +9405,2005-07-30T20:22:17Z,1983,463,2005-08-08T16:55:17Z,1,2020-02-15T06:59:43Z +9406,2005-07-30T20:24:00Z,3419,453,2005-08-07T19:50:00Z,1,2020-02-15T06:59:43Z +9407,2005-07-30T20:25:24Z,2594,585,2005-08-08T22:51:24Z,2,2020-02-15T06:59:43Z +9408,2005-07-30T20:32:09Z,4383,571,2005-08-04T20:14:09Z,2,2020-02-15T06:59:43Z +9409,2005-07-30T20:33:53Z,3053,156,2005-08-05T18:32:53Z,2,2020-02-15T06:59:43Z +9410,2005-07-30T20:38:05Z,1789,22,2005-07-31T19:57:05Z,2,2020-02-15T06:59:43Z +9411,2005-07-30T20:38:22Z,3484,536,2005-08-06T01:23:22Z,2,2020-02-15T06:59:43Z +9412,2005-07-30T20:44:10Z,2482,522,2005-08-06T21:13:10Z,2,2020-02-15T06:59:43Z +9413,2005-07-30T20:44:39Z,2618,290,2005-08-01T01:56:39Z,2,2020-02-15T06:59:43Z +9414,2005-07-30T20:46:02Z,578,484,2005-08-07T21:23:02Z,2,2020-02-15T06:59:43Z +9415,2005-07-30T20:48:31Z,3336,139,2005-08-05T19:45:31Z,2,2020-02-15T06:59:43Z +9416,2005-07-30T20:52:45Z,1470,265,2005-08-02T17:38:45Z,2,2020-02-15T06:59:43Z +9417,2005-07-30T20:54:55Z,2509,519,2005-08-04T00:54:55Z,2,2020-02-15T06:59:43Z +9418,2005-07-30T21:00:52Z,241,168,2005-08-08T15:56:52Z,2,2020-02-15T06:59:43Z +9419,2005-07-30T21:04:59Z,4427,142,2005-08-06T15:47:59Z,2,2020-02-15T06:59:43Z +9420,2005-07-30T21:05:18Z,147,72,2005-08-05T23:52:18Z,2,2020-02-15T06:59:43Z +9421,2005-07-30T21:08:32Z,2206,161,2005-08-02T00:43:32Z,1,2020-02-15T06:59:43Z +9422,2005-07-30T21:08:41Z,1843,470,2005-08-07T15:55:41Z,1,2020-02-15T06:59:43Z +9423,2005-07-30T21:10:14Z,3145,242,2005-08-07T16:34:14Z,2,2020-02-15T06:59:43Z +9424,2005-07-30T21:10:56Z,4499,256,2005-08-05T00:01:56Z,1,2020-02-15T06:59:43Z +9425,2005-07-30T21:11:21Z,271,295,2005-08-05T19:00:21Z,1,2020-02-15T06:59:43Z +9427,2005-07-30T21:16:33Z,1494,85,2005-08-05T17:23:33Z,2,2020-02-15T06:59:43Z +9428,2005-07-30T21:18:37Z,1948,335,2005-08-05T16:09:37Z,1,2020-02-15T06:59:43Z +9429,2005-07-30T21:19:26Z,1769,288,2005-08-07T18:39:26Z,1,2020-02-15T06:59:43Z +9430,2005-07-30T21:20:13Z,1529,367,2005-08-04T21:45:13Z,2,2020-02-15T06:59:43Z +9431,2005-07-30T21:24:22Z,3364,39,2005-08-03T01:22:22Z,2,2020-02-15T06:59:43Z +9432,2005-07-30T21:26:18Z,2489,570,2005-08-05T00:23:18Z,1,2020-02-15T06:59:43Z +9433,2005-07-30T21:28:17Z,1082,128,2005-08-08T18:20:17Z,2,2020-02-15T06:59:43Z +9434,2005-07-30T21:29:41Z,3792,13,2005-08-01T16:30:41Z,2,2020-02-15T06:59:43Z +9435,2005-07-30T21:31:02Z,3116,301,2005-08-05T22:34:02Z,1,2020-02-15T06:59:43Z +9436,2005-07-30T21:33:01Z,2329,268,2005-08-06T17:38:01Z,1,2020-02-15T06:59:43Z +9437,2005-07-30T21:36:04Z,1230,592,2005-08-08T01:26:04Z,1,2020-02-15T06:59:43Z +9438,2005-07-30T21:36:15Z,121,14,2005-08-07T16:54:15Z,2,2020-02-15T06:59:43Z +9439,2005-07-30T21:38:12Z,290,479,2005-08-06T00:03:12Z,1,2020-02-15T06:59:43Z +9440,2005-07-30T21:40:15Z,414,535,2005-08-04T15:45:15Z,2,2020-02-15T06:59:43Z +9441,2005-07-30T21:43:28Z,3982,519,2005-08-08T16:57:28Z,1,2020-02-15T06:59:43Z +9442,2005-07-30T21:44:31Z,44,75,2005-08-04T01:29:31Z,1,2020-02-15T06:59:43Z +9443,2005-07-30T21:45:46Z,1675,3,2005-08-05T21:22:46Z,1,2020-02-15T06:59:43Z +9444,2005-07-30T21:48:44Z,1134,259,2005-08-08T22:36:44Z,2,2020-02-15T06:59:43Z +9445,2005-07-30T21:50:42Z,1480,549,2005-08-05T18:34:42Z,2,2020-02-15T06:59:43Z +9446,2005-07-30T21:53:01Z,1880,477,2005-08-06T19:00:01Z,2,2020-02-15T06:59:43Z +9447,2005-07-30T21:54:22Z,1053,82,2005-08-09T01:07:22Z,2,2020-02-15T06:59:43Z +9448,2005-07-30T21:56:13Z,1213,278,2005-08-04T18:03:13Z,1,2020-02-15T06:59:43Z +9449,2005-07-30T22:02:34Z,2,581,2005-08-06T02:09:34Z,1,2020-02-15T06:59:43Z +9450,2005-07-30T22:04:04Z,1371,430,2005-08-05T18:39:04Z,2,2020-02-15T06:59:43Z +9451,2005-07-30T22:10:17Z,685,584,2005-08-07T02:53:17Z,2,2020-02-15T06:59:43Z +9452,2005-07-30T22:19:16Z,3178,130,2005-08-04T19:26:16Z,1,2020-02-15T06:59:43Z +9453,2005-07-30T22:20:04Z,1988,221,2005-08-08T02:27:04Z,1,2020-02-15T06:59:43Z +9454,2005-07-30T22:20:09Z,3028,81,2005-08-04T01:33:09Z,2,2020-02-15T06:59:43Z +9455,2005-07-30T22:20:29Z,2647,220,2005-08-08T20:08:29Z,1,2020-02-15T06:59:43Z +9456,2005-07-30T22:22:16Z,2068,534,2005-08-05T18:56:16Z,2,2020-02-15T06:59:43Z +9457,2005-07-30T22:23:05Z,2172,487,2005-07-31T23:07:05Z,2,2020-02-15T06:59:43Z +9458,2005-07-30T22:24:34Z,3105,343,2005-08-04T21:26:34Z,2,2020-02-15T06:59:43Z +9459,2005-07-30T22:24:46Z,1132,489,2005-08-02T00:44:46Z,2,2020-02-15T06:59:43Z +9460,2005-07-30T22:25:39Z,4463,580,2005-08-08T20:56:39Z,2,2020-02-15T06:59:43Z +9461,2005-07-30T22:29:13Z,1679,377,2005-08-05T20:55:13Z,2,2020-02-15T06:59:43Z +9462,2005-07-30T22:30:44Z,4090,192,2005-08-09T03:54:44Z,2,2020-02-15T06:59:43Z +9463,2005-07-30T22:30:57Z,883,352,2005-08-03T22:53:57Z,1,2020-02-15T06:59:43Z +9464,2005-07-30T22:31:31Z,3904,534,2005-08-07T01:10:31Z,2,2020-02-15T06:59:43Z +9465,2005-07-30T22:39:53Z,3084,2,2005-08-06T16:43:53Z,2,2020-02-15T06:59:43Z +9466,2005-07-30T22:44:36Z,2595,137,2005-08-07T02:35:36Z,2,2020-02-15T06:59:43Z +9467,2005-07-30T22:45:34Z,1905,202,2005-08-08T00:58:34Z,2,2020-02-15T06:59:43Z +9468,2005-07-30T22:53:52Z,4366,20,2005-08-07T00:22:52Z,2,2020-02-15T06:59:43Z +9469,2005-07-30T22:56:34Z,967,59,2005-08-07T03:16:34Z,2,2020-02-15T06:59:43Z +9470,2005-07-30T23:01:31Z,3908,566,2005-08-07T01:35:31Z,2,2020-02-15T06:59:43Z +9471,2005-07-30T23:02:36Z,2390,424,2005-08-04T17:49:36Z,1,2020-02-15T06:59:43Z +9472,2005-07-30T23:03:32Z,4178,404,2005-08-01T18:02:32Z,1,2020-02-15T06:59:43Z +9473,2005-07-30T23:04:13Z,1717,185,2005-08-04T21:48:13Z,2,2020-02-15T06:59:43Z +9474,2005-07-30T23:05:44Z,3771,206,2005-08-05T23:46:44Z,1,2020-02-15T06:59:43Z +9475,2005-07-30T23:06:33Z,2186,567,2005-08-04T23:23:33Z,1,2020-02-15T06:59:43Z +9476,2005-07-30T23:06:40Z,3599,197,2005-08-04T22:52:40Z,2,2020-02-15T06:59:43Z +9477,2005-07-30T23:07:22Z,1932,213,2005-08-04T20:54:22Z,1,2020-02-15T06:59:43Z +9478,2005-07-30T23:12:53Z,1139,283,2005-08-04T02:41:53Z,1,2020-02-15T06:59:43Z +9479,2005-07-30T23:22:09Z,3461,308,2005-07-31T22:26:09Z,2,2020-02-15T06:59:43Z +9480,2005-07-30T23:26:03Z,597,373,2005-08-04T21:18:03Z,2,2020-02-15T06:59:43Z +9481,2005-07-30T23:26:05Z,613,481,2005-08-04T17:46:05Z,1,2020-02-15T06:59:43Z +9482,2005-07-30T23:29:16Z,2421,348,2005-08-02T20:37:16Z,2,2020-02-15T06:59:43Z +9483,2005-07-30T23:31:31Z,1136,593,2005-08-09T04:29:31Z,2,2020-02-15T06:59:43Z +9484,2005-07-30T23:31:40Z,3389,26,2005-08-02T18:25:40Z,1,2020-02-15T06:59:43Z +9485,2005-07-30T23:32:40Z,3722,338,2005-08-08T17:44:40Z,1,2020-02-15T06:59:43Z +9486,2005-07-30T23:35:42Z,2787,403,2005-08-09T02:08:42Z,2,2020-02-15T06:59:43Z +9487,2005-07-30T23:40:22Z,2165,406,2005-08-01T22:29:22Z,1,2020-02-15T06:59:43Z +9488,2005-07-30T23:42:42Z,4221,528,2005-08-08T22:15:42Z,1,2020-02-15T06:59:43Z +9489,2005-07-30T23:43:32Z,4011,17,2005-07-31T20:45:32Z,2,2020-02-15T06:59:43Z +9490,2005-07-30T23:45:09Z,1302,487,2005-08-07T18:50:09Z,1,2020-02-15T06:59:43Z +9491,2005-07-30T23:45:23Z,3624,179,2005-08-01T00:33:23Z,2,2020-02-15T06:59:43Z +9492,2005-07-30T23:52:21Z,639,126,2005-08-08T20:50:21Z,2,2020-02-15T06:59:43Z +9493,2005-07-30T23:52:30Z,1522,5,2005-08-08T05:22:30Z,1,2020-02-15T06:59:43Z +9494,2005-07-30T23:52:46Z,3799,254,2005-08-05T23:13:46Z,2,2020-02-15T06:59:43Z +9495,2005-07-30T23:54:26Z,2128,397,2005-08-01T22:02:26Z,2,2020-02-15T06:59:43Z +9496,2005-07-30T23:55:20Z,453,125,2005-08-02T02:47:20Z,2,2020-02-15T06:59:43Z +9497,2005-07-30T23:56:54Z,933,595,2005-08-04T19:52:54Z,1,2020-02-15T06:59:43Z +9498,2005-07-30T23:56:55Z,1035,289,2005-08-03T18:34:55Z,2,2020-02-15T06:59:43Z +9499,2005-07-30T23:58:30Z,602,461,2005-08-01T00:55:30Z,2,2020-02-15T06:59:43Z +9500,2005-07-30T23:58:36Z,2808,241,2005-08-07T21:08:36Z,2,2020-02-15T06:59:43Z +9501,2005-07-30T23:59:21Z,4398,75,2005-08-05T19:50:21Z,2,2020-02-15T06:59:43Z +9502,2005-07-31T00:02:10Z,2700,471,2005-08-01T19:47:10Z,1,2020-02-15T06:59:43Z +9503,2005-07-31T00:02:38Z,1013,311,2005-08-06T06:01:38Z,1,2020-02-15T06:59:43Z +9504,2005-07-31T00:09:07Z,91,125,2005-08-02T05:44:07Z,1,2020-02-15T06:59:43Z +9505,2005-07-31T00:11:19Z,4047,543,2005-08-05T18:24:19Z,2,2020-02-15T06:59:43Z +9506,2005-07-31T00:19:01Z,3872,189,2005-08-02T00:20:01Z,1,2020-02-15T06:59:43Z +9507,2005-07-31T00:22:29Z,387,525,2005-08-07T05:59:29Z,2,2020-02-15T06:59:43Z +9508,2005-07-31T00:22:39Z,1204,316,2005-08-04T05:40:39Z,1,2020-02-15T06:59:43Z +9509,2005-07-31T00:22:42Z,818,320,2005-08-03T23:24:42Z,1,2020-02-15T06:59:43Z +9510,2005-07-31T00:24:17Z,2301,494,2005-08-08T18:47:17Z,2,2020-02-15T06:59:43Z +9511,2005-07-31T00:25:05Z,964,549,2005-08-09T02:46:05Z,1,2020-02-15T06:59:43Z +9512,2005-07-31T00:26:30Z,3786,173,2005-08-04T23:43:30Z,2,2020-02-15T06:59:43Z +9513,2005-07-31T00:28:30Z,396,317,2005-08-01T00:22:30Z,2,2020-02-15T06:59:43Z +9514,2005-07-31T00:29:44Z,1892,243,2005-08-02T23:49:44Z,1,2020-02-15T06:59:43Z +9515,2005-07-31T00:35:05Z,3099,264,2005-08-02T23:35:05Z,2,2020-02-15T06:59:43Z +9516,2005-07-31T00:40:58Z,3519,424,2005-08-07T02:13:58Z,2,2020-02-15T06:59:43Z +9517,2005-07-31T00:41:23Z,3299,170,2005-08-02T23:08:23Z,1,2020-02-15T06:59:43Z +9518,2005-07-31T00:43:26Z,2714,215,2005-08-04T19:12:26Z,2,2020-02-15T06:59:43Z +9519,2005-07-31T00:45:57Z,3767,235,2005-08-06T00:59:57Z,2,2020-02-15T06:59:43Z +9520,2005-07-31T00:50:54Z,1306,299,2005-08-04T20:05:54Z,1,2020-02-15T06:59:43Z +9521,2005-07-31T00:52:24Z,1423,227,2005-08-06T03:33:24Z,2,2020-02-15T06:59:43Z +9522,2005-07-31T00:55:11Z,4266,294,2005-08-03T06:41:11Z,2,2020-02-15T06:59:43Z +9523,2005-07-31T00:56:09Z,891,356,2005-08-05T05:44:09Z,2,2020-02-15T06:59:43Z +9524,2005-07-31T01:01:06Z,1796,535,2005-08-04T04:06:06Z,2,2020-02-15T06:59:43Z +9525,2005-07-31T01:02:18Z,2990,246,2005-08-06T21:31:18Z,1,2020-02-15T06:59:43Z +9526,2005-07-31T01:02:22Z,417,342,2005-08-04T03:00:22Z,1,2020-02-15T06:59:43Z +9527,2005-07-31T01:02:24Z,2539,200,2005-08-09T02:08:24Z,2,2020-02-15T06:59:43Z +9528,2005-07-31T01:05:04Z,193,241,2005-08-07T01:16:04Z,1,2020-02-15T06:59:43Z +9529,2005-07-31T01:05:26Z,816,123,2005-08-02T22:30:26Z,2,2020-02-15T06:59:43Z +9530,2005-07-31T01:09:06Z,1718,148,2005-08-04T23:47:06Z,2,2020-02-15T06:59:43Z +9531,2005-07-31T01:11:53Z,4550,268,2005-08-07T02:49:53Z,1,2020-02-15T06:59:43Z +9532,2005-07-31T01:16:51Z,1309,488,2005-08-01T20:23:51Z,1,2020-02-15T06:59:43Z +9533,2005-07-31T01:18:10Z,4156,522,2005-08-07T19:58:10Z,1,2020-02-15T06:59:43Z +9534,2005-07-31T01:18:27Z,4457,519,2005-08-06T00:28:27Z,1,2020-02-15T06:59:43Z +9535,2005-07-31T01:18:53Z,2413,485,2005-08-04T03:04:53Z,2,2020-02-15T06:59:43Z +9536,2005-07-31T01:19:02Z,2547,310,2005-08-02T19:38:02Z,1,2020-02-15T06:59:43Z +9537,2005-07-31T01:23:00Z,546,488,2005-08-01T01:16:00Z,2,2020-02-15T06:59:43Z +9538,2005-07-31T01:25:22Z,3402,68,2005-08-06T00:10:22Z,2,2020-02-15T06:59:43Z +9539,2005-07-31T01:36:19Z,3793,436,2005-08-04T23:47:19Z,1,2020-02-15T06:59:43Z +9540,2005-07-31T01:40:06Z,2200,365,2005-08-01T01:09:06Z,1,2020-02-15T06:59:43Z +9541,2005-07-31T01:40:14Z,1774,422,2005-08-05T06:34:14Z,2,2020-02-15T06:59:43Z +9542,2005-07-31T01:41:48Z,2243,595,2005-08-01T00:49:48Z,2,2020-02-15T06:59:43Z +9543,2005-07-31T01:43:34Z,956,369,2005-08-01T06:49:34Z,1,2020-02-15T06:59:43Z +9544,2005-07-31T01:44:51Z,2383,28,2005-08-05T05:25:51Z,2,2020-02-15T06:59:43Z +9545,2005-07-31T01:46:24Z,3451,594,2005-08-09T06:11:24Z,1,2020-02-15T06:59:43Z +9546,2005-07-31T01:47:40Z,211,63,2005-08-02T07:25:40Z,2,2020-02-15T06:59:43Z +9547,2005-07-31T01:52:34Z,2414,440,2005-08-03T23:12:34Z,2,2020-02-15T06:59:43Z +9548,2005-07-31T01:54:19Z,3038,576,2005-08-05T00:50:19Z,2,2020-02-15T06:59:43Z +9549,2005-07-31T01:57:04Z,2409,63,2005-08-07T21:00:04Z,2,2020-02-15T06:59:43Z +9550,2005-07-31T01:57:34Z,2233,583,2005-08-08T23:33:34Z,1,2020-02-15T06:59:43Z +9551,2005-07-31T02:04:58Z,1260,30,2005-08-06T04:07:58Z,2,2020-02-15T06:59:43Z +9552,2005-07-31T02:05:32Z,3544,261,2005-08-01T06:59:32Z,1,2020-02-15T06:59:43Z +9553,2005-07-31T02:06:34Z,4187,579,2005-08-08T02:20:34Z,1,2020-02-15T06:59:43Z +9554,2005-07-31T02:06:49Z,2581,490,2005-08-01T22:27:49Z,1,2020-02-15T06:59:43Z +9555,2005-07-31T02:11:16Z,2108,382,2005-08-03T06:58:16Z,2,2020-02-15T06:59:43Z +9556,2005-07-31T02:13:30Z,3269,521,2005-08-08T06:46:30Z,1,2020-02-15T06:59:43Z +9557,2005-07-31T02:14:01Z,708,328,2005-08-05T23:55:01Z,1,2020-02-15T06:59:43Z +9558,2005-07-31T02:14:35Z,1161,418,2005-08-06T03:00:35Z,1,2020-02-15T06:59:43Z +9559,2005-07-31T02:15:53Z,2882,159,2005-08-08T02:38:53Z,1,2020-02-15T06:59:43Z +9560,2005-07-31T02:17:27Z,4236,471,2005-08-07T03:33:27Z,1,2020-02-15T06:59:43Z +9561,2005-07-31T02:22:13Z,1079,58,2005-08-03T07:00:13Z,2,2020-02-15T06:59:43Z +9562,2005-07-31T02:23:20Z,1571,116,2005-08-06T21:01:20Z,2,2020-02-15T06:59:43Z +9563,2005-07-31T02:28:39Z,3858,167,2005-08-05T22:10:39Z,1,2020-02-15T06:59:43Z +9564,2005-07-31T02:31:37Z,383,377,2005-08-03T22:57:37Z,2,2020-02-15T06:59:43Z +9565,2005-07-31T02:32:00Z,3621,485,2005-08-04T05:45:00Z,1,2020-02-15T06:59:43Z +9566,2005-07-31T02:32:10Z,643,346,2005-08-02T23:54:10Z,2,2020-02-15T06:59:43Z +9567,2005-07-31T02:36:11Z,3688,37,2005-08-07T01:19:11Z,2,2020-02-15T06:59:43Z +9568,2005-07-31T02:37:44Z,1248,358,2005-08-02T07:07:44Z,2,2020-02-15T06:59:43Z +9569,2005-07-31T02:39:38Z,813,405,2005-08-02T05:09:38Z,2,2020-02-15T06:59:43Z +9570,2005-07-31T02:40:37Z,591,385,2005-08-01T01:59:37Z,1,2020-02-15T06:59:43Z +9571,2005-07-31T02:42:18Z,2219,1,2005-08-02T23:26:18Z,2,2020-02-15T06:59:43Z +9572,2005-07-31T02:44:10Z,1453,283,2005-08-01T03:30:10Z,2,2020-02-15T06:59:43Z +9573,2005-07-31T02:45:38Z,3745,59,2005-08-09T04:31:38Z,2,2020-02-15T06:59:43Z +9574,2005-07-31T02:49:20Z,2782,233,2005-08-05T02:36:20Z,2,2020-02-15T06:59:43Z +9575,2005-07-31T02:51:53Z,3971,193,2005-08-03T20:54:53Z,2,2020-02-15T06:59:43Z +9576,2005-07-31T02:52:59Z,3327,145,2005-08-05T23:35:59Z,2,2020-02-15T06:59:43Z +9577,2005-07-31T02:53:33Z,2423,526,2005-08-07T05:56:33Z,1,2020-02-15T06:59:43Z +9578,2005-07-31T02:54:31Z,2965,115,2005-08-02T02:48:31Z,1,2020-02-15T06:59:43Z +9579,2005-07-31T02:59:20Z,3547,35,2005-08-06T03:52:20Z,2,2020-02-15T06:59:43Z +9580,2005-07-31T03:01:11Z,532,22,2005-08-05T06:01:11Z,1,2020-02-15T06:59:43Z +9581,2005-07-31T03:03:07Z,2588,302,2005-08-05T23:01:07Z,1,2020-02-15T06:59:43Z +9582,2005-07-31T03:05:19Z,3913,347,2005-08-04T07:26:19Z,1,2020-02-15T06:59:43Z +9583,2005-07-31T03:05:21Z,3543,568,2005-08-06T00:14:21Z,2,2020-02-15T06:59:43Z +9584,2005-07-31T03:05:48Z,419,141,2005-08-01T05:50:48Z,2,2020-02-15T06:59:43Z +9585,2005-07-31T03:05:55Z,3249,197,2005-08-02T23:54:55Z,2,2020-02-15T06:59:43Z +9586,2005-07-31T03:07:16Z,3987,415,2005-08-04T00:39:16Z,1,2020-02-15T06:59:43Z +9587,2005-07-31T03:10:30Z,2966,235,2005-08-06T06:54:30Z,2,2020-02-15T06:59:43Z +9588,2005-07-31T03:13:13Z,1368,499,2005-08-02T04:06:13Z,1,2020-02-15T06:59:43Z +9589,2005-07-31T03:13:29Z,2604,574,2005-08-09T01:51:29Z,2,2020-02-15T06:59:43Z +9590,2005-07-31T03:17:16Z,2293,585,2005-08-08T04:24:16Z,1,2020-02-15T06:59:43Z +9591,2005-07-31T03:19:28Z,504,97,2005-08-01T07:30:28Z,1,2020-02-15T06:59:43Z +9592,2005-07-31T03:21:16Z,1828,14,2005-08-05T08:32:16Z,1,2020-02-15T06:59:43Z +9593,2005-07-31T03:22:30Z,1223,28,2005-08-05T08:23:30Z,1,2020-02-15T06:59:43Z +9594,2005-07-31T03:23:52Z,4382,148,2005-08-04T23:06:52Z,1,2020-02-15T06:59:43Z +9595,2005-07-31T03:27:58Z,2829,3,2005-08-03T05:58:58Z,1,2020-02-15T06:59:43Z +9596,2005-07-31T03:28:47Z,2847,55,2005-08-04T03:43:47Z,2,2020-02-15T06:59:43Z +9597,2005-07-31T03:29:07Z,3317,61,2005-08-09T03:33:07Z,2,2020-02-15T06:59:43Z +9598,2005-07-31T03:30:41Z,1105,468,2005-08-04T03:54:41Z,1,2020-02-15T06:59:43Z +9599,2005-07-31T03:32:06Z,3164,502,2005-08-04T07:47:06Z,2,2020-02-15T06:59:43Z +9600,2005-07-31T03:35:34Z,3731,464,2005-08-08T22:50:34Z,1,2020-02-15T06:59:43Z +9601,2005-07-31T03:42:17Z,1592,553,2005-08-04T02:02:17Z,2,2020-02-15T06:59:43Z +9602,2005-07-31T03:42:51Z,3173,386,2005-08-01T08:39:51Z,1,2020-02-15T06:59:43Z +9603,2005-07-31T03:43:43Z,2266,541,2005-08-02T00:11:43Z,2,2020-02-15T06:59:43Z +9604,2005-07-31T03:47:12Z,4342,580,2005-08-03T06:48:12Z,1,2020-02-15T06:59:43Z +9605,2005-07-31T03:50:07Z,1477,94,2005-08-07T09:15:07Z,2,2020-02-15T06:59:43Z +9606,2005-07-31T03:50:46Z,1357,253,2005-08-01T05:29:46Z,2,2020-02-15T06:59:43Z +9607,2005-07-31T03:51:06Z,3414,294,2005-08-02T00:18:06Z,2,2020-02-15T06:59:43Z +9608,2005-07-31T03:51:52Z,363,397,2005-08-06T05:38:52Z,2,2020-02-15T06:59:43Z +9609,2005-07-31T03:53:24Z,693,112,2005-08-05T08:32:24Z,2,2020-02-15T06:59:43Z +9610,2005-07-31T03:54:05Z,3110,16,2005-08-06T23:11:05Z,1,2020-02-15T06:59:43Z +9611,2005-07-31T03:54:43Z,1976,215,2005-08-05T03:54:43Z,2,2020-02-15T06:59:43Z +9612,2005-07-31T03:58:31Z,2142,69,2005-08-04T07:34:31Z,2,2020-02-15T06:59:43Z +9613,2005-07-31T03:58:53Z,3251,188,2005-08-02T00:10:53Z,1,2020-02-15T06:59:43Z +9614,2005-07-31T03:59:31Z,2955,548,2005-08-08T04:19:31Z,1,2020-02-15T06:59:43Z +9615,2005-07-31T03:59:56Z,3370,50,2005-08-02T00:46:56Z,2,2020-02-15T06:59:43Z +9616,2005-07-31T04:05:01Z,1210,550,2005-08-05T00:10:01Z,1,2020-02-15T06:59:43Z +9617,2005-07-31T04:15:38Z,529,102,2005-08-02T04:24:38Z,1,2020-02-15T06:59:43Z +9618,2005-07-31T04:16:14Z,2688,253,2005-08-07T02:43:14Z,2,2020-02-15T06:59:43Z +9619,2005-07-31T04:17:02Z,1730,138,2005-08-05T06:36:02Z,2,2020-02-15T06:59:43Z +9620,2005-07-31T04:19:18Z,2177,576,2005-08-08T09:20:18Z,1,2020-02-15T06:59:43Z +9621,2005-07-31T04:21:08Z,325,38,2005-08-08T03:50:08Z,2,2020-02-15T06:59:43Z +9622,2005-07-31T04:21:45Z,2255,411,2005-08-02T09:20:45Z,1,2020-02-15T06:59:43Z +9623,2005-07-31T04:30:02Z,113,360,2005-08-06T23:34:02Z,1,2020-02-15T06:59:43Z +9624,2005-07-31T04:30:03Z,3480,7,2005-08-06T09:13:03Z,1,2020-02-15T06:59:43Z +9625,2005-07-31T04:30:48Z,1703,445,2005-08-03T01:12:48Z,1,2020-02-15T06:59:43Z +9626,2005-07-31T04:37:41Z,2216,546,2005-08-08T04:00:41Z,1,2020-02-15T06:59:43Z +9627,2005-07-31T04:42:46Z,471,12,2005-08-08T00:42:46Z,2,2020-02-15T06:59:43Z +9628,2005-07-31T04:51:11Z,1387,565,2005-07-31T23:11:11Z,2,2020-02-15T06:59:43Z +9629,2005-07-31T04:54:43Z,2773,8,2005-08-02T08:36:43Z,1,2020-02-15T06:59:43Z +9630,2005-07-31T04:57:07Z,2008,599,2005-08-07T10:55:07Z,2,2020-02-15T06:59:43Z +9631,2005-07-31T05:02:00Z,321,595,2005-08-02T02:04:00Z,2,2020-02-15T06:59:43Z +9632,2005-07-31T05:02:23Z,3368,217,2005-08-06T04:49:23Z,2,2020-02-15T06:59:43Z +9633,2005-07-31T05:04:08Z,1141,334,2005-08-06T00:52:08Z,2,2020-02-15T06:59:43Z +9634,2005-07-31T05:06:02Z,924,444,2005-08-04T06:53:02Z,1,2020-02-15T06:59:43Z +9635,2005-07-31T05:12:27Z,1687,371,2005-08-02T00:24:27Z,2,2020-02-15T06:59:43Z +9636,2005-07-31T05:12:59Z,1725,27,2005-08-09T07:31:59Z,2,2020-02-15T06:59:43Z +9637,2005-07-31T05:18:54Z,3013,130,2005-08-03T01:23:54Z,2,2020-02-15T06:59:43Z +9638,2005-07-31T05:30:27Z,1616,436,2005-08-09T02:04:27Z,1,2020-02-15T06:59:43Z +9639,2005-07-31T05:32:10Z,1373,459,2005-08-03T07:04:10Z,2,2020-02-15T06:59:43Z +9640,2005-07-31T05:33:25Z,1067,67,2005-08-09T09:41:25Z,1,2020-02-15T06:59:43Z +9641,2005-07-31T05:33:48Z,1085,30,2005-08-04T07:43:48Z,1,2020-02-15T06:59:43Z +9642,2005-07-31T05:33:57Z,3550,68,2005-08-05T04:54:57Z,1,2020-02-15T06:59:43Z +9643,2005-07-31T05:35:48Z,3576,538,2005-08-08T04:28:48Z,2,2020-02-15T06:59:43Z +9644,2005-07-31T05:40:35Z,4577,441,2005-08-09T08:18:35Z,1,2020-02-15T06:59:43Z +9645,2005-07-31T05:42:49Z,3413,519,2005-08-04T00:08:49Z,1,2020-02-15T06:59:43Z +9646,2005-07-31T05:43:28Z,3756,89,2005-08-08T04:00:28Z,1,2020-02-15T06:59:43Z +9647,2005-07-31T05:45:15Z,3415,475,2005-08-06T08:54:15Z,1,2020-02-15T06:59:43Z +9648,2005-07-31T05:46:03Z,4063,72,2005-08-09T04:36:03Z,2,2020-02-15T06:59:43Z +9649,2005-07-31T05:46:54Z,1588,51,2005-08-04T08:42:54Z,2,2020-02-15T06:59:43Z +9650,2005-07-31T05:47:32Z,2997,414,2005-08-04T00:50:32Z,2,2020-02-15T06:59:43Z +9651,2005-07-31T05:48:49Z,4059,324,2005-08-04T06:53:49Z,1,2020-02-15T06:59:43Z +9652,2005-07-31T05:49:53Z,448,207,2005-08-06T07:38:53Z,2,2020-02-15T06:59:43Z +9653,2005-07-31T05:55:38Z,1451,383,2005-08-03T09:35:38Z,2,2020-02-15T06:59:43Z +9654,2005-07-31T05:57:42Z,3286,506,2005-08-06T04:19:42Z,1,2020-02-15T06:59:43Z +9655,2005-07-31T05:57:54Z,3403,435,2005-08-06T02:00:54Z,1,2020-02-15T06:59:43Z +9656,2005-07-31T06:00:21Z,4215,39,2005-08-05T04:36:21Z,1,2020-02-15T06:59:43Z +9657,2005-07-31T06:00:41Z,2681,402,2005-08-06T06:51:41Z,2,2020-02-15T06:59:43Z +9658,2005-07-31T06:00:52Z,2332,282,2005-08-09T04:47:52Z,2,2020-02-15T06:59:43Z +9659,2005-07-31T06:02:14Z,4262,360,2005-08-07T00:54:14Z,2,2020-02-15T06:59:43Z +9660,2005-07-31T06:03:17Z,1090,406,2005-08-07T06:59:17Z,2,2020-02-15T06:59:43Z +9661,2005-07-31T06:06:37Z,2693,237,2005-08-04T07:37:37Z,1,2020-02-15T06:59:43Z +9662,2005-07-31T06:09:53Z,2757,96,2005-08-08T00:50:53Z,2,2020-02-15T06:59:43Z +9663,2005-07-31T06:10:48Z,2099,339,2005-08-01T11:40:48Z,2,2020-02-15T06:59:43Z +9664,2005-07-31T06:12:08Z,360,13,2005-08-04T02:19:08Z,2,2020-02-15T06:59:43Z +9665,2005-07-31T06:17:33Z,2863,478,2005-08-04T08:53:33Z,1,2020-02-15T06:59:43Z +9666,2005-07-31T06:20:58Z,4318,592,2005-08-06T06:09:58Z,2,2020-02-15T06:59:43Z +9667,2005-07-31T06:23:52Z,4289,523,2005-08-09T09:12:52Z,1,2020-02-15T06:59:43Z +9668,2005-07-31T06:31:03Z,1647,378,2005-08-07T06:19:03Z,2,2020-02-15T06:59:43Z +9669,2005-07-31T06:31:36Z,4496,277,2005-08-08T03:05:36Z,2,2020-02-15T06:59:43Z +9670,2005-07-31T06:33:33Z,3709,349,2005-08-07T04:51:33Z,1,2020-02-15T06:59:43Z +9671,2005-07-31T06:33:41Z,920,133,2005-08-02T07:50:41Z,1,2020-02-15T06:59:43Z +9672,2005-07-31T06:34:06Z,4394,183,2005-08-08T10:29:06Z,2,2020-02-15T06:59:43Z +9673,2005-07-31T06:34:55Z,339,27,2005-08-09T09:15:55Z,2,2020-02-15T06:59:43Z +9674,2005-07-31T06:36:53Z,3213,297,2005-08-06T02:50:53Z,2,2020-02-15T06:59:43Z +9675,2005-07-31T06:37:07Z,2523,243,2005-08-03T07:03:07Z,1,2020-02-15T06:59:43Z +9676,2005-07-31T06:39:13Z,681,239,2005-08-05T09:31:13Z,2,2020-02-15T06:59:43Z +9677,2005-07-31T06:39:45Z,3200,274,2005-08-01T02:37:45Z,2,2020-02-15T06:59:43Z +9678,2005-07-31T06:40:47Z,3430,383,2005-08-02T00:57:47Z,2,2020-02-15T06:59:43Z +9679,2005-07-31T06:41:19Z,3819,599,2005-08-02T07:23:19Z,1,2020-02-15T06:59:43Z +9680,2005-07-31T06:41:46Z,3010,84,2005-08-01T11:02:46Z,2,2020-02-15T06:59:43Z +9681,2005-07-31T06:42:09Z,64,160,2005-08-06T08:21:09Z,1,2020-02-15T06:59:43Z +9682,2005-07-31T06:47:10Z,2427,425,2005-08-04T09:07:10Z,1,2020-02-15T06:59:43Z +9683,2005-07-31T06:47:13Z,856,141,2005-08-04T05:52:13Z,2,2020-02-15T06:59:43Z +9684,2005-07-31T06:48:33Z,362,591,2005-08-01T07:07:33Z,2,2020-02-15T06:59:43Z +9685,2005-07-31T06:49:18Z,3097,165,2005-08-04T03:19:18Z,1,2020-02-15T06:59:43Z +9686,2005-07-31T06:50:06Z,3825,386,2005-08-06T08:41:06Z,1,2020-02-15T06:59:43Z +9687,2005-07-31T06:52:54Z,3540,470,2005-08-01T03:40:54Z,2,2020-02-15T06:59:43Z +9688,2005-07-31T06:56:08Z,1304,566,2005-08-08T03:31:08Z,2,2020-02-15T06:59:43Z +9689,2005-07-31T07:00:08Z,819,498,2005-08-04T03:33:08Z,2,2020-02-15T06:59:43Z +9690,2005-07-31T07:06:29Z,4449,468,2005-08-06T09:45:29Z,2,2020-02-15T06:59:43Z +9691,2005-07-31T07:09:55Z,2626,50,2005-08-09T02:29:55Z,1,2020-02-15T06:59:43Z +9692,2005-07-31T07:11:04Z,3481,295,2005-08-07T06:34:04Z,2,2020-02-15T06:59:43Z +9693,2005-07-31T07:11:50Z,1031,273,2005-08-08T09:55:50Z,1,2020-02-15T06:59:43Z +9694,2005-07-31T07:13:16Z,3447,508,2005-08-06T09:12:16Z,2,2020-02-15T06:59:43Z +9695,2005-07-31T07:13:30Z,726,95,2005-08-07T05:38:30Z,2,2020-02-15T06:59:43Z +9696,2005-07-31T07:13:46Z,2703,156,2005-08-03T10:49:46Z,2,2020-02-15T06:59:43Z +9697,2005-07-31T07:23:11Z,762,479,2005-08-05T08:04:11Z,2,2020-02-15T06:59:43Z +9698,2005-07-31T07:24:35Z,3477,594,2005-08-09T04:52:35Z,2,2020-02-15T06:59:43Z +9699,2005-07-31T07:29:25Z,199,21,2005-08-06T01:35:25Z,1,2020-02-15T06:59:43Z +9700,2005-07-31T07:29:59Z,2678,40,2005-08-02T09:53:59Z,1,2020-02-15T06:59:43Z +9701,2005-07-31T07:32:21Z,4581,401,2005-08-01T05:07:21Z,2,2020-02-15T06:59:43Z +9702,2005-07-31T07:34:07Z,3353,525,2005-08-02T06:13:07Z,2,2020-02-15T06:59:43Z +9703,2005-07-31T07:34:52Z,2708,57,2005-08-03T13:33:52Z,2,2020-02-15T06:59:43Z +9704,2005-07-31T07:39:32Z,1402,385,2005-08-06T01:50:32Z,2,2020-02-15T06:59:43Z +9705,2005-07-31T07:40:33Z,4158,28,2005-08-01T03:50:33Z,2,2020-02-15T06:59:43Z +9706,2005-07-31T07:43:19Z,142,508,2005-08-05T11:11:19Z,1,2020-02-15T06:59:43Z +9707,2005-07-31T07:44:18Z,203,351,2005-08-08T12:45:18Z,1,2020-02-15T06:59:43Z +9708,2005-07-31T07:45:33Z,3264,12,2005-08-08T08:56:33Z,1,2020-02-15T06:59:43Z +9709,2005-07-31T08:04:55Z,2096,137,2005-08-07T08:58:55Z,1,2020-02-15T06:59:43Z +9710,2005-07-31T08:05:31Z,3486,380,2005-08-09T03:29:31Z,2,2020-02-15T06:59:43Z +9711,2005-07-31T08:06:41Z,1525,231,2005-08-02T10:30:41Z,2,2020-02-15T06:59:43Z +9712,2005-07-31T08:13:11Z,2487,219,2005-08-08T12:40:11Z,2,2020-02-15T06:59:43Z +9713,2005-07-31T08:13:28Z,929,158,2005-08-07T10:11:28Z,1,2020-02-15T06:59:43Z +9714,2005-07-31T08:15:32Z,1532,144,2005-08-03T08:33:32Z,2,2020-02-15T06:59:43Z +9715,2005-07-31T08:16:58Z,3319,237,2005-08-04T11:13:58Z,1,2020-02-15T06:59:43Z +9716,2005-07-31T08:23:53Z,3385,287,2005-08-08T12:03:53Z,2,2020-02-15T06:59:43Z +9717,2005-07-31T08:24:41Z,4207,114,2005-08-04T02:51:41Z,1,2020-02-15T06:59:43Z +9718,2005-07-31T08:25:03Z,2747,23,2005-08-08T04:16:03Z,2,2020-02-15T06:59:43Z +9719,2005-07-31T08:25:13Z,335,584,2005-08-05T08:22:13Z,1,2020-02-15T06:59:43Z +9720,2005-07-31T08:25:21Z,1282,587,2005-08-07T11:30:21Z,2,2020-02-15T06:59:43Z +9721,2005-07-31T08:28:46Z,3942,196,2005-08-05T14:03:46Z,1,2020-02-15T06:59:43Z +9722,2005-07-31T08:29:48Z,4260,125,2005-08-07T07:52:48Z,2,2020-02-15T06:59:43Z +9723,2005-07-31T08:31:18Z,3968,24,2005-08-03T10:25:18Z,1,2020-02-15T06:59:43Z +9724,2005-07-31T08:33:08Z,518,130,2005-08-08T04:50:08Z,1,2020-02-15T06:59:43Z +9725,2005-07-31T08:35:18Z,3960,503,2005-08-03T03:46:18Z,2,2020-02-15T06:59:43Z +9726,2005-07-31T08:37:07Z,1701,162,2005-08-09T06:09:07Z,1,2020-02-15T06:59:43Z +9727,2005-07-31T08:39:13Z,3076,536,2005-08-03T07:54:13Z,1,2020-02-15T06:59:43Z +9728,2005-07-31T08:40:54Z,3630,399,2005-08-03T04:14:54Z,2,2020-02-15T06:59:43Z +9729,2005-07-31T08:43:43Z,4199,273,2005-08-01T13:25:43Z,2,2020-02-15T06:59:43Z +9730,2005-07-31T08:50:08Z,2605,242,2005-08-08T12:21:08Z,2,2020-02-15T06:59:43Z +9731,2005-07-31T08:54:47Z,3713,349,2005-08-05T03:47:47Z,1,2020-02-15T06:59:43Z +9732,2005-07-31T08:56:08Z,3262,288,2005-08-07T11:05:08Z,2,2020-02-15T06:59:43Z +9733,2005-07-31T08:57:35Z,1255,575,2005-08-04T04:47:35Z,1,2020-02-15T06:59:43Z +9734,2005-07-31T08:57:45Z,3320,125,2005-08-05T11:57:45Z,1,2020-02-15T06:59:43Z +9735,2005-07-31T08:57:49Z,4228,315,2005-08-08T13:51:49Z,2,2020-02-15T06:59:43Z +9736,2005-07-31T08:58:40Z,2072,13,2005-08-09T08:34:40Z,2,2020-02-15T06:59:43Z +9737,2005-07-31T08:59:18Z,1720,475,2005-08-03T12:19:18Z,2,2020-02-15T06:59:43Z +9738,2005-07-31T09:04:14Z,2278,568,2005-08-05T14:40:14Z,2,2020-02-15T06:59:43Z +9739,2005-07-31T09:08:03Z,1328,343,2005-08-04T13:57:03Z,1,2020-02-15T06:59:43Z +9740,2005-07-31T09:08:03Z,3497,443,2005-08-06T04:48:03Z,2,2020-02-15T06:59:43Z +9741,2005-07-31T09:09:22Z,1971,495,2005-08-07T10:01:22Z,1,2020-02-15T06:59:43Z +9742,2005-07-31T09:10:20Z,4058,48,2005-08-08T10:07:20Z,1,2020-02-15T06:59:43Z +9743,2005-07-31T09:12:42Z,1740,476,2005-08-06T11:57:42Z,2,2020-02-15T06:59:43Z +9744,2005-07-31T09:15:38Z,839,459,2005-08-03T10:31:38Z,2,2020-02-15T06:59:43Z +9745,2005-07-31T09:16:14Z,3610,217,2005-08-07T12:11:14Z,1,2020-02-15T06:59:43Z +9746,2005-07-31T09:16:48Z,1459,308,2005-08-07T06:36:48Z,2,2020-02-15T06:59:43Z +9747,2005-07-31T09:16:57Z,2455,106,2005-08-08T06:47:57Z,2,2020-02-15T06:59:43Z +9748,2005-07-31T09:17:56Z,3308,550,2005-08-02T14:54:56Z,1,2020-02-15T06:59:43Z +9749,2005-07-31T09:18:33Z,658,52,2005-08-06T07:41:33Z,1,2020-02-15T06:59:43Z +9750,2005-07-31T09:19:46Z,3174,527,2005-08-06T08:07:46Z,1,2020-02-15T06:59:43Z +9751,2005-07-31T09:20:50Z,36,202,2005-08-01T05:34:50Z,2,2020-02-15T06:59:43Z +9752,2005-07-31T09:22:02Z,249,199,2005-08-02T14:34:02Z,1,2020-02-15T06:59:43Z +9753,2005-07-31T09:22:38Z,3529,98,2005-08-01T08:45:38Z,1,2020-02-15T06:59:43Z +9754,2005-07-31T09:23:43Z,3751,479,2005-08-08T06:04:43Z,1,2020-02-15T06:59:43Z +9755,2005-07-31T09:24:55Z,86,108,2005-08-07T06:00:55Z,2,2020-02-15T06:59:43Z +9756,2005-07-31T09:25:00Z,207,400,2005-08-02T05:11:00Z,1,2020-02-15T06:59:43Z +9757,2005-07-31T09:25:14Z,2596,408,2005-08-01T14:43:14Z,2,2020-02-15T06:59:43Z +9758,2005-07-31T09:25:38Z,1307,160,2005-08-03T14:16:38Z,1,2020-02-15T06:59:43Z +9759,2005-07-31T09:25:57Z,2950,574,2005-08-07T12:56:57Z,2,2020-02-15T06:59:43Z +9760,2005-07-31T09:29:33Z,426,511,2005-08-09T07:32:33Z,2,2020-02-15T06:59:43Z +9761,2005-07-31T09:31:54Z,3778,60,2005-08-03T11:02:54Z,2,2020-02-15T06:59:43Z +9762,2005-07-31T09:32:54Z,155,540,2005-08-05T04:55:54Z,1,2020-02-15T06:59:43Z +9763,2005-07-31T09:34:03Z,126,393,2005-08-08T05:30:03Z,1,2020-02-15T06:59:43Z +9764,2005-07-31T09:42:58Z,3761,136,2005-08-07T07:22:58Z,2,2020-02-15T06:59:43Z +9765,2005-07-31T09:44:40Z,472,551,2005-08-05T10:57:40Z,1,2020-02-15T06:59:43Z +9766,2005-07-31T09:46:29Z,4049,570,2005-08-01T05:08:29Z,1,2020-02-15T06:59:43Z +9767,2005-07-31T09:46:49Z,3432,89,2005-08-03T11:20:49Z,1,2020-02-15T06:59:43Z +9768,2005-07-31T09:48:41Z,2656,582,2005-08-08T11:40:41Z,2,2020-02-15T06:59:43Z +9769,2005-07-31T09:52:16Z,2958,484,2005-08-06T09:26:16Z,1,2020-02-15T06:59:43Z +9770,2005-07-31T09:52:40Z,1226,317,2005-08-09T06:44:40Z,1,2020-02-15T06:59:43Z +9771,2005-07-31T09:55:36Z,4123,398,2005-08-04T10:11:36Z,2,2020-02-15T06:59:43Z +9772,2005-07-31T09:56:07Z,3639,147,2005-08-01T13:50:07Z,2,2020-02-15T06:59:43Z +9773,2005-07-31T09:56:56Z,4555,376,2005-08-04T09:38:56Z,1,2020-02-15T06:59:43Z +9774,2005-07-31T09:57:51Z,4174,306,2005-08-02T09:08:51Z,2,2020-02-15T06:59:43Z +9775,2005-07-31T10:00:00Z,2818,162,2005-08-01T08:57:00Z,2,2020-02-15T06:59:43Z +9776,2005-07-31T10:01:03Z,2524,73,2005-08-03T07:20:03Z,2,2020-02-15T06:59:43Z +9777,2005-07-31T10:01:06Z,225,539,2005-08-08T04:44:06Z,2,2020-02-15T06:59:43Z +9778,2005-07-31T10:02:04Z,304,230,2005-08-04T07:44:04Z,2,2020-02-15T06:59:43Z +9779,2005-07-31T10:08:33Z,1280,402,2005-08-03T14:56:33Z,1,2020-02-15T06:59:43Z +9780,2005-07-31T10:10:22Z,3241,102,2005-08-02T11:43:22Z,1,2020-02-15T06:59:43Z +9781,2005-07-31T10:13:02Z,2310,155,2005-08-09T14:46:02Z,1,2020-02-15T06:59:43Z +9782,2005-07-31T10:14:26Z,2397,438,2005-08-06T16:11:26Z,1,2020-02-15T06:59:43Z +9783,2005-07-31T10:15:46Z,836,75,2005-08-09T13:22:46Z,2,2020-02-15T06:59:43Z +9784,2005-07-31T10:21:32Z,2761,362,2005-08-07T09:20:32Z,2,2020-02-15T06:59:43Z +9785,2005-07-31T10:22:15Z,4101,587,2005-08-02T10:02:15Z,1,2020-02-15T06:59:43Z +9786,2005-07-31T10:25:21Z,2560,586,2005-08-03T04:28:21Z,1,2020-02-15T06:59:43Z +9787,2005-07-31T10:26:19Z,3559,272,2005-08-09T09:02:19Z,1,2020-02-15T06:59:43Z +9788,2005-07-31T10:28:21Z,4367,344,2005-08-09T13:45:21Z,1,2020-02-15T06:59:43Z +9789,2005-07-31T10:30:25Z,619,137,2005-08-03T14:58:25Z,1,2020-02-15T06:59:43Z +9790,2005-07-31T10:34:08Z,3643,284,2005-08-04T11:19:08Z,2,2020-02-15T06:59:43Z +9791,2005-07-31T10:35:22Z,3642,300,2005-08-03T05:34:22Z,1,2020-02-15T06:59:43Z +9792,2005-07-31T10:43:41Z,3163,292,2005-08-07T10:18:41Z,1,2020-02-15T06:59:43Z +9793,2005-07-31T10:45:11Z,4576,295,2005-08-03T14:29:11Z,1,2020-02-15T06:59:43Z +9794,2005-07-31T10:47:01Z,1771,403,2005-08-02T06:52:01Z,2,2020-02-15T06:59:43Z +9795,2005-07-31T10:47:19Z,2005,63,2005-08-04T09:32:19Z,2,2020-02-15T06:59:43Z +9796,2005-07-31T10:52:43Z,1038,539,2005-08-09T06:08:43Z,1,2020-02-15T06:59:43Z +9797,2005-07-31T10:53:44Z,687,52,2005-08-09T05:51:44Z,1,2020-02-15T06:59:43Z +9798,2005-07-31T10:55:18Z,3759,55,2005-08-01T07:37:18Z,2,2020-02-15T06:59:43Z +9799,2005-07-31T10:58:32Z,3008,494,2005-08-01T12:08:32Z,1,2020-02-15T06:59:43Z +9800,2005-07-31T11:00:58Z,2153,257,2005-08-02T10:13:58Z,2,2020-02-15T06:59:43Z +9801,2005-07-31T11:03:13Z,3033,158,2005-08-04T10:55:13Z,2,2020-02-15T06:59:43Z +9802,2005-07-31T11:04:20Z,2156,594,2005-08-03T05:28:20Z,1,2020-02-15T06:59:43Z +9803,2005-07-31T11:06:02Z,3783,520,2005-08-01T06:25:02Z,1,2020-02-15T06:59:43Z +9804,2005-07-31T11:07:39Z,2490,196,2005-08-09T11:57:39Z,1,2020-02-15T06:59:43Z +9805,2005-07-31T11:11:10Z,4179,36,2005-08-03T07:36:10Z,2,2020-02-15T06:59:43Z +9806,2005-07-31T11:13:49Z,245,46,2005-08-04T06:18:49Z,1,2020-02-15T06:59:43Z +9807,2005-07-31T11:13:52Z,2137,267,2005-08-02T07:34:52Z,1,2020-02-15T06:59:43Z +9808,2005-07-31T11:17:22Z,3259,583,2005-08-07T15:54:22Z,1,2020-02-15T06:59:43Z +9809,2005-07-31T11:19:21Z,359,286,2005-08-08T12:43:21Z,2,2020-02-15T06:59:43Z +9810,2005-07-31T11:22:41Z,2066,545,2005-08-01T09:40:41Z,2,2020-02-15T06:59:43Z +9811,2005-07-31T11:23:45Z,3305,77,2005-08-06T15:51:45Z,1,2020-02-15T06:59:43Z +9812,2005-07-31T11:28:07Z,1540,57,2005-08-01T12:35:07Z,2,2020-02-15T06:59:43Z +9813,2005-07-31T11:29:23Z,1706,245,2005-08-07T08:01:23Z,2,2020-02-15T06:59:43Z +9814,2005-07-31T11:29:46Z,136,79,2005-08-08T15:49:46Z,1,2020-02-15T06:59:43Z +9815,2005-07-31T11:30:51Z,2728,540,2005-08-08T12:52:51Z,1,2020-02-15T06:59:43Z +9816,2005-07-31T11:32:58Z,4560,3,2005-08-04T17:12:58Z,2,2020-02-15T06:59:43Z +9817,2005-07-31T11:33:31Z,4019,170,2005-08-08T14:49:31Z,2,2020-02-15T06:59:43Z +9818,2005-07-31T11:34:32Z,1254,183,2005-08-04T08:20:32Z,1,2020-02-15T06:59:43Z +9819,2005-07-31T11:39:13Z,1927,292,2005-08-06T09:11:13Z,2,2020-02-15T06:59:43Z +9820,2005-07-31T11:46:57Z,499,279,2005-08-08T13:35:57Z,1,2020-02-15T06:59:43Z +9821,2005-07-31T11:47:54Z,386,271,2005-08-08T06:21:54Z,2,2020-02-15T06:59:43Z +9822,2005-07-31T11:48:25Z,2469,381,2005-08-05T15:52:25Z,2,2020-02-15T06:59:43Z +9823,2005-07-31T11:49:00Z,4423,129,2005-08-07T09:06:00Z,2,2020-02-15T06:59:43Z +9824,2005-07-31T11:49:55Z,4368,404,2005-08-07T16:54:55Z,2,2020-02-15T06:59:43Z +9825,2005-07-31T11:50:51Z,4322,390,2005-08-02T07:18:51Z,1,2020-02-15T06:59:43Z +9826,2005-07-31T11:51:46Z,2649,595,2005-08-09T17:18:46Z,1,2020-02-15T06:59:43Z +9827,2005-07-31T11:56:55Z,3840,329,2005-08-09T16:29:55Z,1,2020-02-15T06:59:43Z +9828,2005-07-31T11:56:57Z,3845,376,2005-08-02T17:05:57Z,1,2020-02-15T06:59:43Z +9829,2005-07-31T11:58:38Z,231,435,2005-08-07T08:11:38Z,2,2020-02-15T06:59:43Z +9830,2005-07-31T11:59:05Z,170,112,2005-08-06T10:38:05Z,1,2020-02-15T06:59:43Z +9831,2005-07-31T11:59:32Z,1961,192,2005-08-04T07:14:32Z,1,2020-02-15T06:59:43Z +9832,2005-07-31T12:01:49Z,3126,64,2005-08-08T09:21:49Z,1,2020-02-15T06:59:43Z +9833,2005-07-31T12:05:01Z,4243,368,2005-08-09T09:25:01Z,2,2020-02-15T06:59:43Z +9834,2005-07-31T12:05:42Z,2292,340,2005-08-07T15:26:42Z,1,2020-02-15T06:59:43Z +9835,2005-07-31T12:07:35Z,1051,328,2005-08-04T07:32:35Z,2,2020-02-15T06:59:43Z +9836,2005-07-31T12:12:00Z,2870,313,2005-08-09T06:53:00Z,1,2020-02-15T06:59:43Z +9837,2005-07-31T12:14:19Z,3488,573,2005-08-09T17:08:19Z,1,2020-02-15T06:59:43Z +9838,2005-07-31T12:18:49Z,3866,208,2005-08-03T16:49:49Z,2,2020-02-15T06:59:43Z +9839,2005-07-31T12:21:16Z,1591,561,2005-08-09T13:41:16Z,2,2020-02-15T06:59:43Z +9840,2005-07-31T12:23:18Z,364,388,2005-08-06T15:59:18Z,1,2020-02-15T06:59:43Z +9841,2005-07-31T12:24:19Z,4554,238,2005-08-09T15:31:19Z,1,2020-02-15T06:59:43Z +9842,2005-07-31T12:24:58Z,2896,261,2005-08-02T11:01:58Z,2,2020-02-15T06:59:43Z +9843,2005-07-31T12:25:28Z,2923,532,2005-08-01T09:51:28Z,2,2020-02-15T06:59:43Z +9844,2005-07-31T12:26:31Z,3930,181,2005-08-05T13:58:31Z,1,2020-02-15T06:59:43Z +9845,2005-07-31T12:28:05Z,2417,79,2005-08-06T06:47:05Z,1,2020-02-15T06:59:43Z +9846,2005-07-31T12:30:12Z,4240,573,2005-08-05T08:24:12Z,2,2020-02-15T06:59:43Z +9847,2005-07-31T12:33:43Z,1137,174,2005-08-04T14:15:43Z,2,2020-02-15T06:59:43Z +9848,2005-07-31T12:44:33Z,3290,346,2005-08-07T13:49:33Z,2,2020-02-15T06:59:43Z +9849,2005-07-31T12:44:34Z,2230,429,2005-08-02T16:49:34Z,1,2020-02-15T06:59:43Z +9850,2005-07-31T12:46:52Z,1461,497,2005-08-04T10:52:52Z,2,2020-02-15T06:59:43Z +9851,2005-07-31T12:50:24Z,25,49,2005-08-08T08:30:24Z,2,2020-02-15T06:59:43Z +9852,2005-07-31T12:52:17Z,4257,415,2005-08-05T07:59:17Z,2,2020-02-15T06:59:43Z +9853,2005-07-31T12:58:20Z,1782,221,2005-08-04T10:47:20Z,1,2020-02-15T06:59:43Z +9854,2005-07-31T12:59:34Z,1049,441,2005-08-03T07:20:34Z,2,2020-02-15T06:59:43Z +9855,2005-07-31T13:00:33Z,1246,326,2005-08-03T16:18:33Z,2,2020-02-15T06:59:43Z +9856,2005-07-31T13:00:35Z,723,347,2005-08-07T18:07:35Z,1,2020-02-15T06:59:43Z +9857,2005-07-31T13:00:53Z,3316,168,2005-08-09T15:56:53Z,1,2020-02-15T06:59:43Z +9858,2005-07-31T13:02:07Z,252,128,2005-08-03T15:14:07Z,2,2020-02-15T06:59:43Z +9859,2005-07-31T13:02:55Z,4094,127,2005-08-05T11:04:55Z,1,2020-02-15T06:59:43Z +9860,2005-07-31T13:03:24Z,3266,585,2005-08-07T07:28:24Z,2,2020-02-15T06:59:43Z +9861,2005-07-31T13:04:14Z,1050,264,2005-08-09T15:22:14Z,1,2020-02-15T06:59:43Z +9862,2005-07-31T13:05:03Z,474,513,2005-08-01T09:05:03Z,2,2020-02-15T06:59:43Z +9863,2005-07-31T13:05:29Z,19,239,2005-08-08T12:33:29Z,1,2020-02-15T06:59:43Z +9864,2005-07-31T13:06:54Z,3619,394,2005-08-02T11:47:54Z,2,2020-02-15T06:59:43Z +9865,2005-07-31T13:10:45Z,1355,580,2005-08-02T09:19:45Z,2,2020-02-15T06:59:43Z +9866,2005-07-31T13:13:50Z,3555,374,2005-08-07T15:11:50Z,1,2020-02-15T06:59:43Z +9867,2005-07-31T13:17:04Z,2485,83,2005-08-05T07:17:04Z,2,2020-02-15T06:59:43Z +9868,2005-07-31T13:20:08Z,266,378,2005-08-01T18:17:08Z,2,2020-02-15T06:59:43Z +9869,2005-07-31T13:21:54Z,783,261,2005-08-07T09:09:54Z,1,2020-02-15T06:59:43Z +9870,2005-07-31T13:22:51Z,442,195,2005-08-05T16:04:51Z,1,2020-02-15T06:59:43Z +9871,2005-07-31T13:25:46Z,194,109,2005-08-01T13:12:46Z,2,2020-02-15T06:59:43Z +9872,2005-07-31T13:27:55Z,1021,376,2005-08-04T14:33:55Z,1,2020-02-15T06:59:43Z +9873,2005-07-31T13:32:18Z,667,442,2005-08-06T11:15:18Z,2,2020-02-15T06:59:43Z +9874,2005-07-31T13:32:31Z,2476,482,2005-08-07T09:50:31Z,2,2020-02-15T06:59:43Z +9875,2005-07-31T13:37:41Z,2878,421,2005-08-03T15:17:41Z,2,2020-02-15T06:59:43Z +9876,2005-07-31T13:37:51Z,828,347,2005-08-07T18:05:51Z,2,2020-02-15T06:59:43Z +9877,2005-07-31T13:41:57Z,1299,559,2005-08-06T15:27:57Z,2,2020-02-15T06:59:43Z +9878,2005-07-31T13:42:02Z,1753,424,2005-08-05T10:15:02Z,2,2020-02-15T06:59:43Z +9879,2005-07-31T13:45:32Z,1935,178,2005-08-07T17:12:32Z,1,2020-02-15T06:59:43Z +9880,2005-07-31T13:49:02Z,3590,64,2005-08-08T10:31:02Z,2,2020-02-15T06:59:43Z +9881,2005-07-31T13:50:38Z,4209,412,2005-08-06T08:58:38Z,1,2020-02-15T06:59:43Z +9882,2005-07-31T13:53:33Z,1429,311,2005-08-09T15:55:33Z,1,2020-02-15T06:59:43Z +9883,2005-07-31T13:53:37Z,4286,356,2005-08-06T15:45:37Z,1,2020-02-15T06:59:43Z +9884,2005-07-31T13:56:24Z,511,590,2005-08-01T16:59:24Z,1,2020-02-15T06:59:43Z +9885,2005-07-31T13:59:32Z,3600,461,2005-08-07T12:30:32Z,2,2020-02-15T06:59:43Z +9886,2005-07-31T14:00:13Z,1386,519,2005-08-08T19:30:13Z,1,2020-02-15T06:59:43Z +9887,2005-07-31T14:00:32Z,436,549,2005-08-05T19:16:32Z,1,2020-02-15T06:59:43Z +9888,2005-07-31T14:00:53Z,4400,5,2005-08-08T18:51:53Z,2,2020-02-15T06:59:43Z +9889,2005-07-31T14:02:50Z,2842,143,2005-08-05T12:09:50Z,2,2020-02-15T06:59:43Z +9890,2005-07-31T14:04:44Z,1024,151,2005-08-01T11:24:44Z,1,2020-02-15T06:59:43Z +9891,2005-07-31T14:05:44Z,3359,462,2005-08-02T16:21:44Z,2,2020-02-15T06:59:43Z +9892,2005-07-31T14:06:25Z,1045,251,2005-08-03T18:11:25Z,2,2020-02-15T06:59:43Z +9893,2005-07-31T14:07:21Z,2445,179,2005-08-01T09:20:21Z,2,2020-02-15T06:59:43Z +9894,2005-07-31T14:07:44Z,3724,199,2005-08-05T18:01:44Z,2,2020-02-15T06:59:43Z +9895,2005-07-31T14:07:56Z,835,560,2005-08-05T14:56:56Z,1,2020-02-15T06:59:43Z +9896,2005-07-31T14:09:48Z,2591,586,2005-08-01T20:02:48Z,1,2020-02-15T06:59:43Z +9897,2005-07-31T14:11:57Z,3945,538,2005-08-02T12:20:57Z,1,2020-02-15T06:59:43Z +9898,2005-07-31T14:12:03Z,2151,359,2005-08-01T12:27:03Z,1,2020-02-15T06:59:43Z +9899,2005-07-31T14:12:36Z,3352,168,2005-08-08T08:59:36Z,1,2020-02-15T06:59:43Z +9900,2005-07-31T14:15:05Z,3132,453,2005-08-07T11:58:05Z,2,2020-02-15T06:59:43Z +9901,2005-07-31T14:20:59Z,3332,277,2005-08-03T09:30:59Z,1,2020-02-15T06:59:43Z +9902,2005-07-31T14:24:33Z,486,218,2005-08-09T11:11:33Z,2,2020-02-15T06:59:43Z +9903,2005-07-31T14:31:44Z,1621,316,2005-08-08T20:03:44Z,1,2020-02-15T06:59:43Z +9904,2005-07-31T14:34:17Z,4089,428,2005-08-08T17:19:17Z,1,2020-02-15T06:59:43Z +9905,2005-07-31T14:37:03Z,2839,519,2005-08-01T15:55:03Z,2,2020-02-15T06:59:43Z +9906,2005-07-31T14:38:12Z,4241,204,2005-08-01T13:56:12Z,1,2020-02-15T06:59:43Z +9907,2005-07-31T14:39:50Z,4282,120,2005-08-09T09:39:50Z,1,2020-02-15T06:59:43Z +9908,2005-07-31T14:39:52Z,4408,27,2005-08-09T09:46:52Z,2,2020-02-15T06:59:43Z +9909,2005-07-31T14:43:34Z,2600,587,2005-08-09T15:31:34Z,1,2020-02-15T06:59:43Z +9910,2005-07-31T14:47:57Z,368,122,2005-08-05T18:20:57Z,1,2020-02-15T06:59:43Z +9911,2005-07-31T14:48:01Z,3879,112,2005-08-06T11:55:01Z,1,2020-02-15T06:59:43Z +9912,2005-07-31T14:49:04Z,3119,367,2005-08-03T15:40:04Z,1,2020-02-15T06:59:43Z +9913,2005-07-31T14:51:04Z,3744,229,2005-08-06T12:12:04Z,1,2020-02-15T06:59:43Z +9914,2005-07-31T14:51:19Z,3147,530,2005-08-05T09:51:19Z,1,2020-02-15T06:59:43Z +9915,2005-07-31T14:52:26Z,2933,566,2005-08-03T11:53:26Z,1,2020-02-15T06:59:43Z +9916,2005-07-31T14:54:52Z,949,432,2005-08-07T13:18:52Z,1,2020-02-15T06:59:43Z +9917,2005-07-31T14:55:11Z,3829,159,2005-08-02T13:58:11Z,2,2020-02-15T06:59:43Z +9918,2005-07-31T14:55:22Z,2519,283,2005-08-04T09:02:22Z,2,2020-02-15T06:59:43Z +9919,2005-07-31T14:55:46Z,3205,291,2005-08-08T11:43:46Z,2,2020-02-15T06:59:43Z +9920,2005-07-31T14:57:13Z,3108,139,2005-08-03T18:58:13Z,2,2020-02-15T06:59:43Z +9921,2005-07-31T14:59:21Z,1004,332,2005-08-01T12:40:21Z,2,2020-02-15T06:59:43Z +9922,2005-07-31T14:59:37Z,3615,25,2005-08-06T14:05:37Z,1,2020-02-15T06:59:43Z +9923,2005-07-31T15:00:15Z,1635,209,2005-08-05T11:09:15Z,2,2020-02-15T06:59:43Z +9924,2005-07-31T15:04:57Z,1986,64,2005-08-05T20:07:57Z,2,2020-02-15T06:59:43Z +9925,2005-07-31T15:08:47Z,2351,24,2005-08-02T20:27:47Z,1,2020-02-15T06:59:43Z +9926,2005-07-31T15:11:51Z,3733,472,2005-08-09T18:26:51Z,1,2020-02-15T06:59:43Z +9927,2005-07-31T15:12:13Z,999,346,2005-08-01T11:37:13Z,1,2020-02-15T06:59:43Z +9928,2005-07-31T15:13:57Z,3627,53,2005-08-06T20:39:57Z,1,2020-02-15T06:59:43Z +9929,2005-07-31T15:17:24Z,2521,564,2005-08-03T17:27:24Z,1,2020-02-15T06:59:43Z +9930,2005-07-31T15:18:03Z,4491,304,2005-08-01T12:36:03Z,2,2020-02-15T06:59:43Z +9931,2005-07-31T15:18:19Z,3455,183,2005-08-04T14:23:19Z,2,2020-02-15T06:59:43Z +9932,2005-07-31T15:19:48Z,1691,264,2005-08-05T21:09:48Z,1,2020-02-15T06:59:43Z +9933,2005-07-31T15:24:46Z,2349,111,2005-08-01T10:00:46Z,1,2020-02-15T06:59:43Z +9934,2005-07-31T15:25:26Z,2492,236,2005-08-05T17:13:26Z,1,2020-02-15T06:59:43Z +9935,2005-07-31T15:27:07Z,2247,10,2005-08-05T11:23:07Z,1,2020-02-15T06:59:43Z +9936,2005-07-31T15:27:41Z,979,153,2005-08-06T16:25:41Z,1,2020-02-15T06:59:43Z +9937,2005-07-31T15:28:10Z,3697,521,2005-08-06T21:20:10Z,2,2020-02-15T06:59:43Z +9938,2005-07-31T15:28:47Z,2871,63,2005-08-09T21:24:47Z,2,2020-02-15T06:59:43Z +9939,2005-07-31T15:29:00Z,3049,538,2005-08-08T11:09:00Z,1,2020-02-15T06:59:43Z +9940,2005-07-31T15:29:06Z,3975,388,2005-08-06T14:26:06Z,2,2020-02-15T06:59:43Z +9941,2005-07-31T15:31:25Z,1756,175,2005-08-05T17:23:25Z,1,2020-02-15T06:59:43Z +9942,2005-07-31T15:35:43Z,4573,545,2005-08-07T17:37:43Z,2,2020-02-15T06:59:43Z +9943,2005-07-31T15:37:29Z,887,494,2005-08-09T18:25:29Z,1,2020-02-15T06:59:43Z +9944,2005-07-31T15:44:43Z,2540,241,2005-08-08T10:30:43Z,1,2020-02-15T06:59:43Z +9945,2005-07-31T15:47:51Z,2075,309,2005-08-02T19:06:51Z,1,2020-02-15T06:59:43Z +9946,2005-07-31T15:48:54Z,2100,29,2005-08-03T12:42:54Z,2,2020-02-15T06:59:43Z +9947,2005-07-31T15:49:40Z,1173,138,2005-08-08T11:11:40Z,1,2020-02-15T06:59:43Z +9948,2005-07-31T15:49:41Z,806,342,2005-08-06T12:36:41Z,1,2020-02-15T06:59:43Z +9949,2005-07-31T15:50:10Z,3258,309,2005-08-01T17:53:10Z,2,2020-02-15T06:59:43Z +9950,2005-07-31T15:50:22Z,1657,572,2005-08-08T19:10:22Z,2,2020-02-15T06:59:43Z +9951,2005-07-31T15:51:16Z,4412,95,2005-08-03T14:54:16Z,1,2020-02-15T06:59:43Z +9952,2005-07-31T15:52:37Z,1634,128,2005-08-06T10:50:37Z,2,2020-02-15T06:59:43Z +9953,2005-07-31T15:56:35Z,1646,211,2005-08-02T12:01:35Z,2,2020-02-15T06:59:43Z +9954,2005-07-31T15:57:07Z,1830,463,2005-08-05T12:04:07Z,2,2020-02-15T06:59:43Z +9955,2005-07-31T16:01:26Z,1745,342,2005-08-04T11:15:26Z,2,2020-02-15T06:59:43Z +9956,2005-07-31T16:03:47Z,4485,342,2005-08-01T16:40:47Z,2,2020-02-15T06:59:43Z +9957,2005-07-31T16:03:55Z,1857,85,2005-08-04T15:16:55Z,2,2020-02-15T06:59:43Z +9958,2005-07-31T16:03:56Z,4142,157,2005-08-04T15:21:56Z,2,2020-02-15T06:59:43Z +9959,2005-07-31T16:04:22Z,340,199,2005-08-03T21:51:22Z,2,2020-02-15T06:59:43Z +9960,2005-07-31T16:05:52Z,1022,569,2005-08-05T14:15:52Z,2,2020-02-15T06:59:43Z +9961,2005-07-31T16:07:50Z,1856,40,2005-08-07T18:37:50Z,2,2020-02-15T06:59:43Z +9962,2005-07-31T16:10:36Z,1951,576,2005-08-02T17:09:36Z,1,2020-02-15T06:59:43Z +9963,2005-07-31T16:16:46Z,1609,573,2005-08-02T22:00:46Z,1,2020-02-15T06:59:43Z +9964,2005-07-31T16:17:39Z,3149,191,2005-08-03T15:03:39Z,1,2020-02-15T06:59:43Z +9965,2005-07-31T16:19:32Z,3946,101,2005-08-05T20:18:32Z,2,2020-02-15T06:59:43Z +9966,2005-07-31T16:26:46Z,4137,373,2005-08-03T14:29:46Z,1,2020-02-15T06:59:43Z +9967,2005-07-31T16:31:17Z,958,537,2005-08-06T13:52:17Z,1,2020-02-15T06:59:43Z +9968,2005-07-31T16:32:16Z,2666,363,2005-08-08T12:23:16Z,1,2020-02-15T06:59:43Z +9969,2005-07-31T16:38:12Z,938,151,2005-08-05T11:45:12Z,2,2020-02-15T06:59:43Z +9970,2005-07-31T16:38:24Z,2846,578,2005-08-02T12:59:24Z,2,2020-02-15T06:59:43Z +9971,2005-07-31T16:42:16Z,2674,573,2005-08-09T18:08:16Z,2,2020-02-15T06:59:43Z +9972,2005-07-31T16:42:43Z,190,506,2005-08-02T11:05:43Z,2,2020-02-15T06:59:43Z +9973,2005-07-31T16:49:31Z,1850,369,2005-08-03T22:03:31Z,2,2020-02-15T06:59:43Z +9974,2005-07-31T16:51:11Z,430,503,2005-08-05T16:04:11Z,1,2020-02-15T06:59:43Z +9975,2005-07-31T16:53:43Z,2564,40,2005-08-07T20:13:43Z,2,2020-02-15T06:59:43Z +9976,2005-07-31T16:57:49Z,4219,579,2005-08-03T16:33:49Z,2,2020-02-15T06:59:43Z +9977,2005-07-31T16:58:42Z,2300,363,2005-08-09T13:34:42Z,1,2020-02-15T06:59:43Z +9978,2005-07-31T16:59:51Z,2812,427,2005-08-06T16:48:51Z,2,2020-02-15T06:59:43Z +9979,2005-07-31T17:00:07Z,646,576,2005-08-08T20:40:07Z,1,2020-02-15T06:59:43Z +9980,2005-07-31T17:02:00Z,122,225,2005-08-08T11:11:00Z,2,2020-02-15T06:59:43Z +9981,2005-07-31T17:08:31Z,1354,321,2005-08-01T22:46:31Z,2,2020-02-15T06:59:43Z +9982,2005-07-31T17:09:02Z,2698,428,2005-08-02T13:02:02Z,2,2020-02-15T06:59:43Z +9983,2005-07-31T17:09:36Z,350,129,2005-08-08T20:26:36Z,1,2020-02-15T06:59:43Z +9984,2005-07-31T17:12:23Z,433,432,2005-08-01T21:04:23Z,2,2020-02-15T06:59:43Z +9985,2005-07-31T17:14:47Z,1831,85,2005-08-01T12:11:47Z,2,2020-02-15T06:59:43Z +9986,2005-07-31T17:16:50Z,1242,124,2005-08-05T18:34:50Z,2,2020-02-15T06:59:43Z +9987,2005-07-31T17:22:35Z,1619,15,2005-08-01T21:19:35Z,2,2020-02-15T06:59:43Z +9988,2005-07-31T17:22:36Z,3844,243,2005-08-07T18:35:36Z,2,2020-02-15T06:59:43Z +9989,2005-07-31T17:22:39Z,1713,79,2005-08-01T18:55:39Z,1,2020-02-15T06:59:43Z +9990,2005-07-31T17:24:21Z,4481,555,2005-08-09T17:14:21Z,2,2020-02-15T06:59:43Z +9991,2005-07-31T17:26:27Z,3662,414,2005-08-03T17:36:27Z,1,2020-02-15T06:59:43Z +9992,2005-07-31T17:29:48Z,4242,304,2005-08-09T13:02:48Z,2,2020-02-15T06:59:43Z +9993,2005-07-31T17:30:20Z,2503,225,2005-08-01T20:53:20Z,2,2020-02-15T06:59:43Z +9994,2005-07-31T17:30:31Z,2155,195,2005-08-01T11:35:31Z,1,2020-02-15T06:59:43Z +9995,2005-07-31T17:30:47Z,1978,180,2005-08-04T12:20:47Z,2,2020-02-15T06:59:43Z +9996,2005-07-31T17:32:03Z,3271,104,2005-08-06T16:17:03Z,2,2020-02-15T06:59:43Z +9997,2005-07-31T17:37:30Z,640,579,2005-08-02T14:49:30Z,1,2020-02-15T06:59:43Z +9998,2005-07-31T17:40:35Z,2549,30,2005-08-04T18:15:35Z,1,2020-02-15T06:59:43Z +9999,2005-07-31T17:40:53Z,1438,543,2005-08-01T14:25:53Z,1,2020-02-15T06:59:43Z +10000,2005-07-31T17:41:05Z,3221,576,2005-08-02T20:51:05Z,1,2020-02-15T06:59:43Z +10001,2005-07-31T17:46:18Z,2188,244,2005-08-07T20:38:18Z,1,2020-02-15T06:59:43Z +10002,2005-07-31T17:48:16Z,1002,323,2005-08-06T16:15:16Z,1,2020-02-15T06:59:43Z +10003,2005-07-31T17:48:51Z,1603,13,2005-08-02T14:23:51Z,1,2020-02-15T06:59:43Z +10004,2005-07-31T17:51:23Z,2396,570,2005-08-03T19:12:23Z,1,2020-02-15T06:59:43Z +10005,2005-07-31T17:53:51Z,928,454,2005-08-09T21:39:51Z,1,2020-02-15T06:59:43Z +10006,2005-07-31T17:54:35Z,2538,470,2005-08-02T20:40:35Z,2,2020-02-15T06:59:43Z +10007,2005-07-31T17:54:58Z,293,445,2005-08-05T17:24:58Z,2,2020-02-15T06:59:43Z +10008,2005-07-31T17:59:36Z,2589,91,2005-08-03T22:43:36Z,2,2020-02-15T06:59:43Z +10009,2005-07-31T18:00:28Z,4441,437,2005-08-08T22:24:28Z,2,2020-02-15T06:59:43Z +10010,2005-07-31T18:01:36Z,2655,373,2005-08-07T20:27:36Z,2,2020-02-15T06:59:43Z +10011,2005-07-31T18:02:41Z,606,128,2005-08-08T17:04:41Z,1,2020-02-15T06:59:43Z +10012,2005-07-31T18:06:06Z,2554,513,2005-08-09T16:47:06Z,2,2020-02-15T06:59:43Z +10013,2005-07-31T18:08:21Z,2364,377,2005-08-08T13:22:21Z,2,2020-02-15T06:59:43Z +10014,2005-07-31T18:10:56Z,2344,443,2005-08-02T23:36:56Z,1,2020-02-15T06:59:43Z +10015,2005-07-31T18:11:17Z,67,153,2005-08-03T15:48:17Z,2,2020-02-15T06:59:43Z +10016,2005-07-31T18:13:06Z,2183,478,2005-08-09T22:11:06Z,1,2020-02-15T06:59:43Z +10017,2005-07-31T18:13:22Z,1495,424,2005-08-05T16:03:22Z,1,2020-02-15T06:59:43Z +10018,2005-07-31T18:15:14Z,3708,481,2005-08-05T14:44:14Z,2,2020-02-15T06:59:43Z +10019,2005-07-31T18:20:56Z,2114,536,2005-08-07T14:25:56Z,1,2020-02-15T06:59:43Z +10020,2005-07-31T18:21:08Z,302,526,2005-08-02T14:03:08Z,2,2020-02-15T06:59:43Z +10021,2005-07-31T18:24:39Z,3235,597,2005-08-01T19:16:39Z,1,2020-02-15T06:59:43Z +10022,2005-07-31T18:25:30Z,1900,115,2005-08-04T13:35:30Z,1,2020-02-15T06:59:43Z +10023,2005-07-31T18:25:51Z,384,318,2005-08-09T18:00:51Z,1,2020-02-15T06:59:43Z +10024,2005-07-31T18:26:36Z,265,129,2005-08-09T16:16:36Z,1,2020-02-15T06:59:43Z +10025,2005-07-31T18:29:09Z,475,565,2005-08-07T14:20:09Z,2,2020-02-15T06:59:43Z +10026,2005-07-31T18:31:51Z,39,332,2005-08-03T21:14:51Z,2,2020-02-15T06:59:43Z +10027,2005-07-31T18:33:51Z,525,287,2005-08-09T18:40:51Z,1,2020-02-15T06:59:43Z +10028,2005-07-31T18:35:54Z,2305,323,2005-08-01T13:01:54Z,2,2020-02-15T06:59:43Z +10029,2005-07-31T18:37:47Z,505,578,2005-08-06T14:58:47Z,2,2020-02-15T06:59:43Z +10030,2005-07-31T18:39:36Z,1392,325,2005-08-03T15:29:36Z,2,2020-02-15T06:59:43Z +10031,2005-07-31T18:40:15Z,3048,96,2005-08-03T14:38:15Z,1,2020-02-15T06:59:43Z +10032,2005-07-31T18:41:55Z,2331,126,2005-08-04T22:45:55Z,1,2020-02-15T06:59:43Z +10033,2005-07-31T18:44:29Z,4480,381,2005-08-04T19:52:29Z,1,2020-02-15T06:59:43Z +10034,2005-07-31T18:45:30Z,354,442,2005-08-04T21:13:30Z,2,2020-02-15T06:59:43Z +10035,2005-07-31T18:46:46Z,2694,333,2005-08-04T20:33:46Z,1,2020-02-15T06:59:43Z +10036,2005-07-31T18:47:20Z,41,491,2005-08-03T22:53:20Z,1,2020-02-15T06:59:43Z +10037,2005-07-31T18:48:08Z,438,58,2005-08-09T19:11:08Z,2,2020-02-15T06:59:43Z +10038,2005-07-31T18:49:12Z,3727,112,2005-08-01T18:02:12Z,1,2020-02-15T06:59:43Z +10039,2005-07-31T18:50:40Z,4391,111,2005-08-01T18:49:40Z,2,2020-02-15T06:59:43Z +10040,2005-07-31T18:54:15Z,2281,268,2005-08-05T17:33:15Z,2,2020-02-15T06:59:43Z +10041,2005-07-31T19:01:02Z,2994,379,2005-08-07T21:32:02Z,1,2020-02-15T06:59:43Z +10042,2005-07-31T19:01:25Z,123,204,2005-08-06T14:21:25Z,1,2020-02-15T06:59:43Z +10043,2005-07-31T19:02:07Z,2558,222,2005-08-07T17:58:07Z,1,2020-02-15T06:59:43Z +10044,2005-07-31T19:02:33Z,3349,388,2005-08-05T13:24:33Z,2,2020-02-15T06:59:43Z +10045,2005-07-31T19:04:35Z,58,118,2005-08-07T16:53:35Z,1,2020-02-15T06:59:43Z +10046,2005-07-31T19:07:11Z,4302,50,2005-08-03T13:25:11Z,1,2020-02-15T06:59:43Z +10047,2005-07-31T19:07:43Z,4195,244,2005-08-07T00:20:43Z,2,2020-02-15T06:59:43Z +10048,2005-07-31T19:08:56Z,3821,267,2005-08-05T20:15:56Z,2,2020-02-15T06:59:43Z +10049,2005-07-31T19:11:11Z,854,457,2005-08-03T22:15:11Z,1,2020-02-15T06:59:43Z +10050,2005-07-31T19:13:29Z,295,230,2005-08-06T15:44:29Z,1,2020-02-15T06:59:43Z +10051,2005-07-31T19:14:20Z,163,74,2005-08-05T19:45:20Z,1,2020-02-15T06:59:43Z +10052,2005-07-31T19:15:13Z,3307,39,2005-08-07T22:47:13Z,2,2020-02-15T06:59:43Z +10053,2005-07-31T19:15:39Z,4102,223,2005-08-07T22:32:39Z,1,2020-02-15T06:59:43Z +10054,2005-07-31T19:15:52Z,2303,598,2005-08-04T19:54:52Z,1,2020-02-15T06:59:43Z +10055,2005-07-31T19:15:58Z,2725,336,2005-08-05T20:23:58Z,1,2020-02-15T06:59:43Z +10056,2005-07-31T19:19:13Z,281,237,2005-08-01T16:09:13Z,2,2020-02-15T06:59:43Z +10057,2005-07-31T19:20:18Z,3485,230,2005-08-08T17:59:18Z,2,2020-02-15T06:59:43Z +10058,2005-07-31T19:20:21Z,758,237,2005-08-04T00:41:21Z,2,2020-02-15T06:59:43Z +10059,2005-07-31T19:20:49Z,2020,274,2005-08-03T14:39:49Z,1,2020-02-15T06:59:43Z +10060,2005-07-31T19:23:00Z,1979,42,2005-08-08T19:07:00Z,1,2020-02-15T06:59:43Z +10061,2005-07-31T19:23:25Z,1401,390,2005-08-04T19:38:25Z,1,2020-02-15T06:59:43Z +10062,2005-07-31T19:24:55Z,1815,333,2005-08-03T22:51:55Z,2,2020-02-15T06:59:43Z +10063,2005-07-31T19:25:13Z,3003,517,2005-08-09T15:55:13Z,1,2020-02-15T06:59:43Z +10064,2005-07-31T19:27:02Z,3140,41,2005-08-06T21:15:02Z,1,2020-02-15T06:59:43Z +10065,2005-07-31T19:27:34Z,1426,495,2005-08-01T13:45:34Z,2,2020-02-15T06:59:43Z +10066,2005-07-31T19:30:01Z,4285,123,2005-08-01T14:45:01Z,2,2020-02-15T06:59:43Z +10067,2005-07-31T19:37:58Z,1940,148,2005-08-04T17:32:58Z,2,2020-02-15T06:59:43Z +10068,2005-07-31T19:39:38Z,4000,58,2005-08-05T22:49:38Z,1,2020-02-15T06:59:43Z +10069,2005-07-31T19:43:18Z,2168,270,2005-08-06T19:40:18Z,2,2020-02-15T06:59:43Z +10070,2005-07-31T19:46:29Z,1010,325,2005-08-03T22:21:29Z,1,2020-02-15T06:59:43Z +10071,2005-07-31T19:49:35Z,2360,353,2005-08-03T00:00:35Z,2,2020-02-15T06:59:43Z +10072,2005-07-31T19:50:37Z,3963,520,2005-08-03T00:25:37Z,2,2020-02-15T06:59:43Z +10073,2005-07-31T19:53:15Z,4246,584,2005-08-05T23:12:15Z,2,2020-02-15T06:59:43Z +10074,2005-07-31T19:57:16Z,1268,69,2005-08-04T00:54:16Z,1,2020-02-15T06:59:43Z +10075,2005-07-31T19:58:42Z,2037,469,2005-08-08T19:49:42Z,1,2020-02-15T06:59:43Z +10076,2005-07-31T20:00:34Z,1117,555,2005-08-10T00:37:34Z,2,2020-02-15T06:59:43Z +10077,2005-07-31T20:01:06Z,2333,19,2005-08-09T16:07:06Z,1,2020-02-15T06:59:43Z +10078,2005-07-31T20:02:02Z,3198,151,2005-08-04T00:45:02Z,1,2020-02-15T06:59:43Z +10079,2005-07-31T20:05:45Z,4541,486,2005-08-04T16:25:45Z,2,2020-02-15T06:59:43Z +10080,2005-07-31T20:07:10Z,4355,62,2005-08-04T23:07:10Z,2,2020-02-15T06:59:43Z +10081,2005-07-31T20:07:44Z,3183,443,2005-08-06T20:04:44Z,1,2020-02-15T06:59:43Z +10082,2005-07-31T20:09:32Z,1275,76,2005-08-01T15:41:32Z,2,2020-02-15T06:59:43Z +10083,2005-07-31T20:10:19Z,2585,449,2005-08-06T23:18:19Z,1,2020-02-15T06:59:43Z +10084,2005-07-31T20:11:29Z,524,528,2005-08-06T22:28:29Z,2,2020-02-15T06:59:43Z +10085,2005-07-31T20:12:02Z,2556,392,2005-08-03T00:03:02Z,2,2020-02-15T06:59:43Z +10086,2005-07-31T20:14:08Z,2853,205,2005-08-07T01:33:08Z,2,2020-02-15T06:59:43Z +10087,2005-07-31T20:15:22Z,1393,245,2005-08-07T01:33:22Z,1,2020-02-15T06:59:43Z +10088,2005-07-31T20:16:21Z,4293,46,2005-08-01T22:47:21Z,2,2020-02-15T06:59:43Z +10089,2005-07-31T20:17:09Z,248,160,2005-08-01T19:14:09Z,2,2020-02-15T06:59:43Z +10090,2005-07-31T20:22:01Z,4023,533,2005-08-04T17:30:01Z,1,2020-02-15T06:59:43Z +10091,2005-07-31T20:23:13Z,1878,135,2005-08-02T21:58:13Z,2,2020-02-15T06:59:43Z +10092,2005-07-31T20:28:09Z,4151,364,2005-08-01T21:37:09Z,1,2020-02-15T06:59:43Z +10093,2005-07-31T20:30:32Z,3943,162,2005-08-04T00:04:32Z,2,2020-02-15T06:59:43Z +10094,2005-07-31T20:31:18Z,2865,596,2005-08-06T18:31:18Z,2,2020-02-15T06:59:43Z +10095,2005-07-31T20:38:35Z,4062,370,2005-08-02T02:33:35Z,1,2020-02-15T06:59:43Z +10096,2005-07-31T20:38:58Z,3606,290,2005-08-06T02:34:58Z,1,2020-02-15T06:59:43Z +10097,2005-07-31T20:39:38Z,784,519,2005-08-08T22:22:38Z,1,2020-02-15T06:59:43Z +10098,2005-07-31T20:41:17Z,1324,155,2005-08-02T00:06:17Z,2,2020-02-15T06:59:43Z +10099,2005-07-31T20:47:14Z,1960,220,2005-08-02T17:25:14Z,1,2020-02-15T06:59:43Z +10100,2005-07-31T20:47:18Z,4050,330,2005-08-03T16:58:18Z,2,2020-02-15T06:59:43Z +10101,2005-07-31T20:47:29Z,2513,119,2005-08-04T21:28:29Z,1,2020-02-15T06:59:43Z +10102,2005-07-31T20:49:10Z,4078,170,2005-08-08T20:15:10Z,1,2020-02-15T06:59:43Z +10103,2005-07-31T20:49:13Z,77,25,2005-08-05T15:55:13Z,2,2020-02-15T06:59:43Z +10104,2005-07-31T20:49:14Z,3358,186,2005-08-05T01:11:14Z,2,2020-02-15T06:59:43Z +10105,2005-07-31T20:54:20Z,112,286,2005-08-09T17:45:20Z,1,2020-02-15T06:59:43Z +10106,2005-07-31T21:00:47Z,3444,556,2005-08-02T20:11:47Z,2,2020-02-15T06:59:43Z +10107,2005-07-31T21:01:46Z,1326,414,2005-08-09T01:33:46Z,2,2020-02-15T06:59:43Z +10108,2005-07-31T21:02:14Z,3703,326,2005-08-01T18:28:14Z,1,2020-02-15T06:59:43Z +10109,2005-07-31T21:04:49Z,2852,403,2005-08-08T19:25:49Z,1,2020-02-15T06:59:43Z +10110,2005-07-31T21:06:12Z,4081,138,2005-08-03T02:03:12Z,2,2020-02-15T06:59:43Z +10111,2005-07-31T21:08:33Z,3474,38,2005-08-06T02:58:33Z,2,2020-02-15T06:59:43Z +10112,2005-07-31T21:08:56Z,2643,198,2005-08-01T23:35:56Z,2,2020-02-15T06:59:43Z +10113,2005-07-31T21:10:03Z,3974,461,2005-08-02T21:13:03Z,2,2020-02-15T06:59:43Z +10114,2005-07-31T21:12:58Z,3881,218,2005-08-02T19:45:58Z,2,2020-02-15T06:59:43Z +10115,2005-07-31T21:13:47Z,2731,68,2005-08-10T00:44:47Z,1,2020-02-15T06:59:43Z +10116,2005-07-31T21:14:02Z,738,28,2005-08-03T01:48:02Z,2,2020-02-15T06:59:43Z +10117,2005-07-31T21:14:31Z,1894,459,2005-08-01T15:59:31Z,2,2020-02-15T06:59:43Z +10118,2005-07-31T21:16:31Z,1209,143,2005-08-03T02:32:31Z,1,2020-02-15T06:59:43Z +10119,2005-07-31T21:20:59Z,54,351,2005-08-02T23:14:59Z,2,2020-02-15T06:59:43Z +10120,2005-07-31T21:24:24Z,1709,396,2005-08-03T17:44:24Z,2,2020-02-15T06:59:43Z +10121,2005-07-31T21:24:53Z,2969,425,2005-08-03T22:24:53Z,1,2020-02-15T06:59:43Z +10122,2005-07-31T21:29:28Z,4229,196,2005-08-09T00:04:28Z,1,2020-02-15T06:59:43Z +10123,2005-07-31T21:30:46Z,4564,487,2005-08-06T16:28:46Z,1,2020-02-15T06:59:43Z +10124,2005-07-31T21:31:49Z,1956,396,2005-08-04T00:06:49Z,1,2020-02-15T06:59:43Z +10125,2005-07-31T21:33:03Z,493,178,2005-08-01T19:10:03Z,1,2020-02-15T06:59:43Z +10126,2005-07-31T21:36:07Z,3,39,2005-08-03T23:59:07Z,1,2020-02-15T06:59:43Z +10127,2005-07-31T21:39:48Z,717,478,2005-08-06T00:10:48Z,1,2020-02-15T06:59:43Z +10128,2005-07-31T21:40:04Z,2559,508,2005-08-02T02:21:04Z,1,2020-02-15T06:59:43Z +10129,2005-07-31T21:41:35Z,2848,564,2005-08-05T17:05:35Z,1,2020-02-15T06:59:43Z +10130,2005-07-31T21:44:30Z,3964,95,2005-08-04T17:06:30Z,1,2020-02-15T06:59:43Z +10131,2005-07-31T21:45:28Z,4169,510,2005-08-04T00:19:28Z,2,2020-02-15T06:59:43Z +10132,2005-07-31T21:50:24Z,3934,23,2005-08-07T23:37:24Z,2,2020-02-15T06:59:43Z +10133,2005-07-31T21:55:07Z,614,234,2005-08-08T23:04:07Z,1,2020-02-15T06:59:43Z +10134,2005-07-31T21:56:10Z,4483,311,2005-08-06T21:20:10Z,1,2020-02-15T06:59:43Z +10135,2005-07-31T21:57:32Z,4193,307,2005-08-05T22:23:32Z,1,2020-02-15T06:59:43Z +10136,2005-07-31T21:58:56Z,3142,2,2005-08-03T19:44:56Z,1,2020-02-15T06:59:43Z +10137,2005-07-31T22:01:41Z,612,236,2005-08-07T22:24:41Z,1,2020-02-15T06:59:43Z +10138,2005-07-31T22:02:09Z,179,225,2005-08-07T20:46:09Z,2,2020-02-15T06:59:43Z +10139,2005-07-31T22:02:20Z,407,441,2005-08-04T02:09:20Z,1,2020-02-15T06:59:43Z +10140,2005-07-31T22:03:20Z,2494,550,2005-08-07T23:15:20Z,2,2020-02-15T06:59:43Z +10141,2005-07-31T22:08:29Z,8,8,2005-08-06T16:59:29Z,1,2020-02-15T06:59:43Z +10142,2005-07-31T22:10:54Z,1839,257,2005-08-09T19:04:54Z,2,2020-02-15T06:59:43Z +10143,2005-07-31T22:11:43Z,2139,271,2005-08-09T17:48:43Z,2,2020-02-15T06:59:43Z +10144,2005-07-31T22:13:52Z,3011,49,2005-08-05T19:27:52Z,1,2020-02-15T06:59:43Z +10145,2005-07-31T22:15:13Z,2511,361,2005-08-06T23:26:13Z,1,2020-02-15T06:59:43Z +10146,2005-07-31T22:17:56Z,1721,559,2005-08-02T21:27:56Z,1,2020-02-15T06:59:43Z +10147,2005-07-31T22:18:43Z,1351,198,2005-08-02T23:08:43Z,2,2020-02-15T06:59:43Z +10148,2005-07-31T22:19:16Z,1381,63,2005-08-05T00:15:16Z,2,2020-02-15T06:59:43Z +10149,2005-07-31T22:20:46Z,890,276,2005-08-07T23:12:46Z,2,2020-02-15T06:59:43Z +10150,2005-07-31T22:22:00Z,2328,419,2005-08-05T01:17:00Z,2,2020-02-15T06:59:43Z +10151,2005-07-31T22:22:37Z,4442,361,2005-08-01T22:20:37Z,1,2020-02-15T06:59:43Z +10152,2005-07-31T22:28:05Z,1114,244,2005-08-08T22:39:05Z,2,2020-02-15T06:59:43Z +10153,2005-07-31T22:30:10Z,2945,297,2005-08-06T02:32:10Z,2,2020-02-15T06:59:43Z +10154,2005-07-31T22:30:49Z,2745,149,2005-08-07T03:05:49Z,2,2020-02-15T06:59:43Z +10155,2005-07-31T22:31:43Z,3176,235,2005-08-07T02:43:43Z,1,2020-02-15T06:59:43Z +10156,2005-07-31T22:36:00Z,141,179,2005-08-02T00:03:00Z,2,2020-02-15T06:59:43Z +10157,2005-07-31T22:38:48Z,2960,232,2005-08-01T21:38:48Z,1,2020-02-15T06:59:43Z +10158,2005-07-31T22:40:31Z,1626,393,2005-08-08T18:25:31Z,2,2020-02-15T06:59:43Z +10159,2005-07-31T22:54:30Z,1174,515,2005-08-03T00:43:30Z,2,2020-02-15T06:59:43Z +10160,2005-07-31T23:07:40Z,863,295,2005-08-05T23:34:40Z,1,2020-02-15T06:59:43Z +10161,2005-07-31T23:09:41Z,2651,120,2005-08-02T20:46:41Z,2,2020-02-15T06:59:43Z +10162,2005-07-31T23:11:01Z,1327,475,2005-08-07T01:52:01Z,2,2020-02-15T06:59:43Z +10163,2005-07-31T23:12:34Z,2811,425,2005-08-01T22:47:34Z,2,2020-02-15T06:59:43Z +10164,2005-07-31T23:17:57Z,1405,89,2005-08-05T19:43:57Z,1,2020-02-15T06:59:43Z +10165,2005-07-31T23:21:23Z,3476,50,2005-08-06T18:06:23Z,1,2020-02-15T06:59:43Z +10166,2005-07-31T23:22:20Z,4304,484,2005-08-07T18:06:20Z,2,2020-02-15T06:59:43Z +10167,2005-07-31T23:24:31Z,1222,129,2005-08-06T17:42:31Z,2,2020-02-15T06:59:43Z +10168,2005-07-31T23:25:24Z,4548,570,2005-08-02T19:03:24Z,1,2020-02-15T06:59:43Z +10169,2005-07-31T23:27:13Z,2675,57,2005-08-05T20:32:13Z,2,2020-02-15T06:59:43Z +10170,2005-07-31T23:27:31Z,804,41,2005-08-08T04:53:31Z,2,2020-02-15T06:59:43Z +10171,2005-07-31T23:29:05Z,1367,401,2005-08-03T19:39:05Z,1,2020-02-15T06:59:43Z +10172,2005-07-31T23:29:51Z,2506,426,2005-08-09T01:57:51Z,1,2020-02-15T06:59:43Z +10173,2005-07-31T23:36:59Z,2527,326,2005-08-08T20:20:59Z,2,2020-02-15T06:59:43Z +10174,2005-07-31T23:40:08Z,2459,359,2005-08-06T21:08:08Z,2,2020-02-15T06:59:43Z +10175,2005-07-31T23:40:11Z,3672,137,2005-08-09T02:22:11Z,1,2020-02-15T06:59:43Z +10176,2005-07-31T23:40:35Z,1181,19,2005-08-09T00:46:35Z,2,2020-02-15T06:59:43Z +10177,2005-07-31T23:42:33Z,2242,279,2005-08-03T01:30:33Z,2,2020-02-15T06:59:43Z +10178,2005-07-31T23:43:04Z,1582,491,2005-08-03T00:43:04Z,1,2020-02-15T06:59:43Z +10179,2005-07-31T23:49:54Z,2136,131,2005-08-01T20:46:54Z,2,2020-02-15T06:59:43Z +10180,2005-07-31T23:57:43Z,757,50,2005-08-09T04:04:43Z,2,2020-02-15T06:59:43Z +10181,2005-08-01T00:00:44Z,3111,113,2005-08-04T19:33:44Z,1,2020-02-15T06:59:43Z +10182,2005-08-01T00:08:01Z,4112,578,2005-08-09T18:14:01Z,2,2020-02-15T06:59:43Z +10183,2005-08-01T00:08:01Z,4319,377,2005-08-09T20:41:01Z,1,2020-02-15T06:59:43Z +10184,2005-08-01T00:09:33Z,2785,77,2005-08-05T04:12:33Z,2,2020-02-15T06:59:43Z +10185,2005-08-01T00:12:11Z,1266,64,2005-08-03T03:03:11Z,1,2020-02-15T06:59:43Z +10186,2005-08-01T00:12:36Z,4563,294,2005-08-07T05:08:36Z,1,2020-02-15T06:59:43Z +10187,2005-08-01T00:15:49Z,1629,400,2005-08-05T01:00:49Z,2,2020-02-15T06:59:43Z +10188,2005-08-01T00:19:41Z,1221,331,2005-08-08T00:19:41Z,2,2020-02-15T06:59:43Z +10189,2005-08-01T00:25:00Z,616,509,2005-08-03T06:01:00Z,2,2020-02-15T06:59:43Z +10190,2005-08-01T00:27:53Z,4411,138,2005-08-01T20:32:53Z,2,2020-02-15T06:59:43Z +10191,2005-08-01T00:28:38Z,1131,196,2005-08-06T02:23:38Z,1,2020-02-15T06:59:43Z +10192,2005-08-01T00:33:00Z,1632,569,2005-08-05T03:37:00Z,2,2020-02-15T06:59:43Z +10193,2005-08-01T00:33:27Z,2036,358,2005-08-07T20:15:27Z,1,2020-02-15T06:59:43Z +10194,2005-08-01T00:33:52Z,1447,290,2005-08-06T04:50:52Z,2,2020-02-15T06:59:43Z +10195,2005-08-01T00:34:42Z,2691,396,2005-08-08T05:04:42Z,2,2020-02-15T06:59:43Z +10196,2005-08-01T00:34:51Z,3070,199,2005-08-05T03:43:51Z,1,2020-02-15T06:59:43Z +10197,2005-08-01T00:35:25Z,1186,127,2005-08-07T06:04:25Z,2,2020-02-15T06:59:43Z +10198,2005-08-01T00:36:15Z,1297,366,2005-08-07T06:18:15Z,2,2020-02-15T06:59:43Z +10199,2005-08-01T00:38:55Z,3665,526,2005-08-05T03:41:55Z,1,2020-02-15T06:59:43Z +10200,2005-08-01T00:39:05Z,580,421,2005-08-05T01:07:05Z,1,2020-02-15T06:59:43Z +10201,2005-08-01T00:42:18Z,3649,299,2005-08-08T20:49:18Z,2,2020-02-15T06:59:43Z +10202,2005-08-01T00:43:18Z,1099,306,2005-08-08T23:26:18Z,1,2020-02-15T06:59:43Z +10203,2005-08-01T00:45:27Z,1096,157,2005-08-04T22:45:27Z,2,2020-02-15T06:59:43Z +10204,2005-08-01T00:47:39Z,764,572,2005-08-05T01:11:39Z,1,2020-02-15T06:59:43Z +10205,2005-08-01T00:48:24Z,33,87,2005-08-06T23:53:24Z,1,2020-02-15T06:59:43Z +10206,2005-08-01T00:52:40Z,4479,90,2005-08-10T02:36:40Z,2,2020-02-15T06:59:43Z +10207,2005-08-01T00:53:01Z,2925,334,2005-08-05T05:51:01Z,2,2020-02-15T06:59:43Z +10208,2005-08-01T00:54:51Z,3324,246,2005-08-04T22:39:51Z,2,2020-02-15T06:59:43Z +10209,2005-08-01T00:56:47Z,2429,303,2005-08-03T19:58:47Z,2,2020-02-15T06:59:43Z +10210,2005-08-01T00:58:52Z,49,391,2005-08-10T01:16:52Z,1,2020-02-15T06:59:43Z +10211,2005-08-01T01:01:16Z,810,530,2005-08-10T01:31:16Z,1,2020-02-15T06:59:43Z +10212,2005-08-01T01:01:35Z,3728,324,2005-08-02T23:02:35Z,1,2020-02-15T06:59:43Z +10213,2005-08-01T01:03:18Z,1462,106,2005-08-09T20:07:18Z,1,2020-02-15T06:59:43Z +10214,2005-08-01T01:04:15Z,648,597,2005-08-01T19:31:15Z,2,2020-02-15T06:59:43Z +10215,2005-08-01T01:04:28Z,838,345,2005-08-09T21:43:28Z,2,2020-02-15T06:59:43Z +10216,2005-08-01T01:06:27Z,3603,436,2005-08-08T22:41:27Z,2,2020-02-15T06:59:43Z +10217,2005-08-01T01:07:27Z,1193,389,2005-08-09T00:42:27Z,1,2020-02-15T06:59:43Z +10218,2005-08-01T01:09:44Z,3886,101,2005-08-05T20:08:44Z,1,2020-02-15T06:59:43Z +10219,2005-08-01T01:10:33Z,2262,505,2005-08-10T02:45:33Z,2,2020-02-15T06:59:43Z +10220,2005-08-01T01:13:22Z,3920,294,2005-08-04T22:57:22Z,2,2020-02-15T06:59:43Z +10221,2005-08-01T01:16:50Z,3051,373,2005-08-03T05:35:50Z,2,2020-02-15T06:59:43Z +10222,2005-08-01T01:17:42Z,1214,295,2005-08-08T02:45:42Z,1,2020-02-15T06:59:43Z +10223,2005-08-01T01:23:15Z,1370,522,2005-08-02T19:39:15Z,1,2020-02-15T06:59:43Z +10224,2005-08-01T01:31:56Z,1443,587,2005-08-05T21:21:56Z,2,2020-02-15T06:59:43Z +10225,2005-08-01T01:38:40Z,3131,498,2005-08-06T20:00:40Z,1,2020-02-15T06:59:43Z +10226,2005-08-01T01:40:04Z,3067,107,2005-08-08T01:02:04Z,1,2020-02-15T06:59:43Z +10227,2005-08-01T01:42:22Z,872,571,2005-08-09T23:45:22Z,2,2020-02-15T06:59:43Z +10228,2005-08-01T01:43:18Z,1742,106,2005-08-06T22:10:18Z,2,2020-02-15T06:59:43Z +10229,2005-08-01T01:45:26Z,3459,175,2005-08-10T06:21:26Z,1,2020-02-15T06:59:43Z +10230,2005-08-01T01:49:36Z,76,398,2005-08-05T01:29:36Z,2,2020-02-15T06:59:43Z +10231,2005-08-01T01:50:49Z,1056,511,2005-08-06T03:12:49Z,1,2020-02-15T06:59:43Z +10232,2005-08-01T01:50:55Z,586,512,2005-08-03T04:12:55Z,1,2020-02-15T06:59:43Z +10233,2005-08-01T01:54:23Z,4571,459,2005-08-10T00:23:23Z,2,2020-02-15T06:59:43Z +10234,2005-08-01T01:56:20Z,1641,207,2005-08-09T01:51:20Z,2,2020-02-15T06:59:43Z +10235,2005-08-01T01:57:48Z,2850,30,2005-08-10T07:38:48Z,2,2020-02-15T06:59:43Z +10236,2005-08-01T02:05:34Z,3754,470,2005-08-01T23:40:34Z,1,2020-02-15T06:59:43Z +10237,2005-08-01T02:07:32Z,432,313,2005-08-07T03:54:32Z,1,2020-02-15T06:59:43Z +10238,2005-08-01T02:08:05Z,561,192,2005-08-02T01:52:05Z,1,2020-02-15T06:59:43Z +10239,2005-08-01T02:09:22Z,1232,467,2005-08-04T01:35:22Z,2,2020-02-15T06:59:43Z +10240,2005-08-01T02:09:33Z,4494,109,2005-08-07T02:22:33Z,2,2020-02-15T06:59:43Z +10241,2005-08-01T02:12:25Z,1526,161,2005-08-08T00:37:25Z,1,2020-02-15T06:59:43Z +10242,2005-08-01T02:18:12Z,1825,342,2005-08-02T22:32:12Z,2,2020-02-15T06:59:43Z +10243,2005-08-01T02:18:46Z,2236,132,2005-08-06T21:45:46Z,1,2020-02-15T06:59:43Z +10244,2005-08-01T02:20:01Z,567,51,2005-08-06T23:06:01Z,2,2020-02-15T06:59:43Z +10245,2005-08-01T02:24:09Z,2880,163,2005-08-02T02:31:09Z,1,2020-02-15T06:59:43Z +10246,2005-08-01T02:29:50Z,3598,261,2005-08-09T01:17:50Z,2,2020-02-15T06:59:43Z +10247,2005-08-01T02:34:06Z,4035,189,2005-08-09T02:33:06Z,1,2020-02-15T06:59:43Z +10248,2005-08-01T02:35:28Z,2146,298,2005-08-08T02:24:28Z,2,2020-02-15T06:59:43Z +10249,2005-08-01T02:35:39Z,135,437,2005-08-06T06:50:39Z,1,2020-02-15T06:59:43Z +10250,2005-08-01T02:38:42Z,3706,116,2005-08-07T03:59:42Z,2,2020-02-15T06:59:43Z +10251,2005-08-01T02:39:12Z,2986,39,2005-08-06T03:51:12Z,1,2020-02-15T06:59:43Z +10252,2005-08-01T02:39:39Z,2380,86,2005-08-10T00:40:39Z,2,2020-02-15T06:59:43Z +10253,2005-08-01T02:39:49Z,1406,101,2005-08-08T04:28:49Z,2,2020-02-15T06:59:43Z +10254,2005-08-01T02:42:03Z,2238,416,2005-08-05T23:31:03Z,1,2020-02-15T06:59:43Z +10255,2005-08-01T02:46:13Z,4558,459,2005-08-03T05:54:13Z,1,2020-02-15T06:59:43Z +10256,2005-08-01T02:47:11Z,780,58,2005-08-05T05:21:11Z,2,2020-02-15T06:59:43Z +10257,2005-08-01T02:49:43Z,2403,543,2005-08-04T04:45:43Z,2,2020-02-15T06:59:43Z +10258,2005-08-01T02:51:09Z,2062,469,2005-08-08T23:57:09Z,2,2020-02-15T06:59:43Z +10259,2005-08-01T02:52:05Z,1881,566,2005-08-03T20:54:05Z,1,2020-02-15T06:59:43Z +10260,2005-08-01T02:58:07Z,2864,461,2005-08-05T02:06:07Z,2,2020-02-15T06:59:43Z +10261,2005-08-01T02:58:27Z,2346,50,2005-08-01T21:55:27Z,2,2020-02-15T06:59:43Z +10262,2005-08-01T03:01:26Z,3842,181,2005-08-08T08:03:26Z,2,2020-02-15T06:59:43Z +10263,2005-08-01T03:02:48Z,2420,415,2005-08-08T02:16:48Z,2,2020-02-15T06:59:43Z +10264,2005-08-01T03:03:12Z,1374,297,2005-08-08T00:34:12Z,2,2020-02-15T06:59:43Z +10265,2005-08-01T03:05:04Z,3338,510,2005-08-08T08:09:04Z,1,2020-02-15T06:59:43Z +10266,2005-08-01T03:05:59Z,476,49,2005-08-06T06:23:59Z,1,2020-02-15T06:59:43Z +10267,2005-08-01T03:07:26Z,3883,72,2005-08-07T22:49:26Z,1,2020-02-15T06:59:43Z +10268,2005-08-01T03:08:56Z,2755,138,2005-08-08T02:41:56Z,1,2020-02-15T06:59:43Z +10269,2005-08-01T03:09:26Z,2537,39,2005-08-02T00:01:26Z,1,2020-02-15T06:59:43Z +10270,2005-08-01T03:10:24Z,2025,168,2005-08-07T03:04:24Z,2,2020-02-15T06:59:43Z +10271,2005-08-01T03:13:39Z,3692,6,2005-08-07T23:40:39Z,1,2020-02-15T06:59:43Z +10272,2005-08-01T03:14:34Z,128,273,2005-08-10T05:56:34Z,2,2020-02-15T06:59:43Z +10273,2005-08-01T03:14:47Z,1458,212,2005-08-07T03:59:47Z,1,2020-02-15T06:59:43Z +10274,2005-08-01T03:16:51Z,2916,375,2005-08-04T22:22:51Z,2,2020-02-15T06:59:43Z +10275,2005-08-01T03:20:08Z,669,463,2005-08-08T06:48:08Z,1,2020-02-15T06:59:43Z +10276,2005-08-01T03:22:23Z,2201,48,2005-08-03T07:59:23Z,1,2020-02-15T06:59:43Z +10277,2005-08-01T03:22:41Z,1472,176,2005-08-05T05:07:41Z,1,2020-02-15T06:59:43Z +10278,2005-08-01T03:25:27Z,2497,154,2005-08-08T07:52:27Z,1,2020-02-15T06:59:43Z +10279,2005-08-01T03:26:44Z,3794,247,2005-08-07T22:35:44Z,2,2020-02-15T06:59:43Z +10280,2005-08-01T03:27:15Z,1457,542,2005-08-07T23:01:15Z,2,2020-02-15T06:59:43Z +10281,2005-08-01T03:28:33Z,1047,549,2005-08-02T05:06:33Z,1,2020-02-15T06:59:43Z +10282,2005-08-01T03:29:10Z,617,472,2005-08-07T06:16:10Z,1,2020-02-15T06:59:43Z +10283,2005-08-01T03:29:45Z,4237,462,2005-08-07T04:19:45Z,1,2020-02-15T06:59:43Z +10284,2005-08-01T03:33:19Z,2879,20,2005-08-09T07:58:19Z,1,2020-02-15T06:59:43Z +10285,2005-08-01T03:35:11Z,4523,167,2005-08-05T03:55:11Z,2,2020-02-15T06:59:43Z +10286,2005-08-01T03:35:58Z,498,532,2005-08-10T05:17:58Z,2,2020-02-15T06:59:43Z +10287,2005-08-01T03:37:01Z,125,141,2005-08-05T23:03:01Z,2,2020-02-15T06:59:43Z +10288,2005-08-01T03:38:42Z,572,63,2005-08-06T04:34:42Z,1,2020-02-15T06:59:43Z +10289,2005-08-01T03:39:48Z,3153,566,2005-08-08T02:56:48Z,1,2020-02-15T06:59:43Z +10290,2005-08-01T03:39:50Z,4542,364,2005-08-08T22:29:50Z,2,2020-02-15T06:59:43Z +10291,2005-08-01T03:39:57Z,2056,420,2005-08-05T02:05:57Z,2,2020-02-15T06:59:43Z +10292,2005-08-01T03:42:40Z,2562,340,2005-08-01T23:36:40Z,2,2020-02-15T06:59:43Z +10293,2005-08-01T03:44:26Z,1570,258,2005-08-05T04:16:26Z,2,2020-02-15T06:59:43Z +10294,2005-08-01T03:48:12Z,528,28,2005-08-09T01:19:12Z,2,2020-02-15T06:59:43Z +10295,2005-08-01T03:53:49Z,2355,123,2005-08-10T03:56:49Z,1,2020-02-15T06:59:43Z +10296,2005-08-01T04:04:37Z,1958,573,2005-08-01T23:59:37Z,1,2020-02-15T06:59:43Z +10297,2005-08-01T04:05:04Z,2795,289,2005-08-09T06:08:04Z,1,2020-02-15T06:59:43Z +10298,2005-08-01T04:06:03Z,1383,323,2005-08-05T05:59:03Z,2,2020-02-15T06:59:43Z +10299,2005-08-01T04:08:04Z,1125,369,2005-08-04T08:11:04Z,1,2020-02-15T06:59:43Z +10300,2005-08-01T04:08:11Z,4334,207,2005-08-04T00:24:11Z,1,2020-02-15T06:59:43Z +10301,2005-08-01T04:09:37Z,3072,583,2005-08-04T23:14:37Z,2,2020-02-15T06:59:43Z +10302,2005-08-01T04:12:08Z,1043,144,2005-08-01T22:12:08Z,2,2020-02-15T06:59:43Z +10303,2005-08-01T04:13:33Z,936,479,2005-08-06T02:16:33Z,2,2020-02-15T06:59:43Z +10304,2005-08-01T04:14:12Z,1538,346,2005-08-07T22:38:12Z,1,2020-02-15T06:59:43Z +10305,2005-08-01T04:16:16Z,2946,160,2005-08-07T23:47:16Z,1,2020-02-15T06:59:43Z +10306,2005-08-01T04:19:18Z,2819,541,2005-08-09T02:16:18Z,1,2020-02-15T06:59:43Z +10307,2005-08-01T04:21:54Z,975,332,2005-08-04T09:24:54Z,2,2020-02-15T06:59:43Z +10308,2005-08-01T04:22:49Z,588,240,2005-08-09T04:39:49Z,2,2020-02-15T06:59:43Z +10309,2005-08-01T04:24:18Z,1505,156,2005-08-09T08:32:18Z,2,2020-02-15T06:59:43Z +10310,2005-08-01T04:24:47Z,9,271,2005-08-04T05:36:47Z,2,2020-02-15T06:59:43Z +10311,2005-08-01T04:27:59Z,4211,151,2005-08-02T08:51:59Z,1,2020-02-15T06:59:43Z +10312,2005-08-01T04:29:06Z,4389,172,2005-08-08T04:52:06Z,2,2020-02-15T06:59:43Z +10313,2005-08-01T04:29:29Z,1194,80,2005-08-04T08:12:29Z,2,2020-02-15T06:59:43Z +10314,2005-08-01T04:31:18Z,1548,252,2005-08-06T01:49:18Z,2,2020-02-15T06:59:43Z +10315,2005-08-01T04:34:45Z,895,258,2005-08-07T05:27:45Z,1,2020-02-15T06:59:43Z +10316,2005-08-01T04:34:57Z,1907,469,2005-08-06T02:34:57Z,2,2020-02-15T06:59:43Z +10317,2005-08-01T04:35:34Z,110,561,2005-08-06T02:27:34Z,2,2020-02-15T06:59:43Z +10318,2005-08-01T04:36:53Z,885,548,2005-08-04T00:54:53Z,1,2020-02-15T06:59:43Z +10319,2005-08-01T04:37:19Z,3120,394,2005-08-05T03:18:19Z,2,2020-02-15T06:59:43Z +10320,2005-08-01T04:39:26Z,2298,152,2005-08-08T06:01:26Z,1,2020-02-15T06:59:43Z +10321,2005-08-01T04:40:02Z,4512,177,2005-08-03T04:18:02Z,1,2020-02-15T06:59:43Z +10322,2005-08-01T04:44:13Z,1543,535,2005-08-08T00:20:13Z,2,2020-02-15T06:59:43Z +10323,2005-08-01T04:44:58Z,3539,577,2005-08-06T07:56:58Z,1,2020-02-15T06:59:43Z +10324,2005-08-01T04:49:06Z,523,25,2005-08-09T08:04:06Z,2,2020-02-15T06:59:43Z +10325,2005-08-01T04:52:12Z,2749,258,2005-08-08T09:31:12Z,1,2020-02-15T06:59:43Z +10326,2005-08-01T04:55:34Z,3856,325,2005-08-02T05:18:34Z,1,2020-02-15T06:59:43Z +10327,2005-08-01T04:55:35Z,328,382,2005-08-07T08:17:35Z,2,2020-02-15T06:59:43Z +10328,2005-08-01T04:56:10Z,1191,85,2005-08-01T23:22:10Z,2,2020-02-15T06:59:43Z +10329,2005-08-01T04:56:13Z,2289,302,2005-08-03T03:54:13Z,1,2020-02-15T06:59:43Z +10330,2005-08-01T04:57:04Z,1580,7,2005-08-07T23:00:04Z,2,2020-02-15T06:59:43Z +10331,2005-08-01T04:57:14Z,4152,575,2005-08-07T06:46:14Z,1,2020-02-15T06:59:43Z +10332,2005-08-01T04:57:32Z,642,258,2005-08-10T02:42:32Z,2,2020-02-15T06:59:43Z +10333,2005-08-01T04:58:32Z,3955,499,2005-08-04T00:51:32Z,2,2020-02-15T06:59:43Z +10334,2005-08-01T04:58:42Z,3387,445,2005-08-09T02:00:42Z,1,2020-02-15T06:59:43Z +10335,2005-08-01T04:59:30Z,323,33,2005-08-05T02:26:30Z,1,2020-02-15T06:59:43Z +10336,2005-08-01T04:59:53Z,1091,370,2005-08-03T08:05:53Z,2,2020-02-15T06:59:43Z +10337,2005-08-01T05:01:46Z,307,451,2005-08-10T02:41:46Z,1,2020-02-15T06:59:43Z +10338,2005-08-01T05:03:03Z,1295,339,2005-08-09T05:13:03Z,2,2020-02-15T06:59:43Z +10339,2005-08-01T05:05:50Z,615,363,2005-08-10T07:15:50Z,2,2020-02-15T06:59:43Z +10340,2005-08-01T05:07:03Z,3608,568,2005-08-06T01:03:03Z,1,2020-02-15T06:59:43Z +10341,2005-08-01T05:10:02Z,3304,445,2005-08-07T11:01:02Z,1,2020-02-15T06:59:43Z +10342,2005-08-01T05:11:11Z,332,140,2005-08-10T00:27:11Z,1,2020-02-15T06:59:43Z +10343,2005-08-01T05:15:47Z,2627,267,2005-08-02T04:48:47Z,2,2020-02-15T06:59:43Z +10344,2005-08-01T05:18:23Z,3673,367,2005-08-06T05:20:23Z,1,2020-02-15T06:59:43Z +10345,2005-08-01T05:18:56Z,3985,42,2005-08-04T01:34:56Z,2,2020-02-15T06:59:43Z +10346,2005-08-01T05:19:23Z,4192,476,2005-08-06T01:00:23Z,1,2020-02-15T06:59:43Z +10347,2005-08-01T05:20:03Z,953,574,2005-08-04T10:03:03Z,1,2020-02-15T06:59:43Z +10348,2005-08-01T05:23:00Z,2076,14,2005-08-04T01:12:00Z,2,2020-02-15T06:59:43Z +10349,2005-08-01T05:27:13Z,114,295,2005-08-08T10:15:13Z,1,2020-02-15T06:59:43Z +10350,2005-08-01T05:30:05Z,2067,78,2005-08-05T09:59:05Z,1,2020-02-15T06:59:43Z +10351,2005-08-01T05:32:13Z,3725,173,2005-08-08T09:48:13Z,1,2020-02-15T06:59:43Z +10352,2005-08-01T05:44:36Z,1288,564,2005-08-05T07:15:36Z,2,2020-02-15T06:59:43Z +10353,2005-08-01T05:46:33Z,1446,535,2005-08-08T09:14:33Z,1,2020-02-15T06:59:43Z +10354,2005-08-01T05:47:10Z,1680,416,2005-08-06T09:04:10Z,1,2020-02-15T06:59:43Z +10355,2005-08-01T05:47:37Z,2158,161,2005-08-02T09:28:37Z,2,2020-02-15T06:59:43Z +10356,2005-08-01T05:49:17Z,313,56,2005-08-10T05:57:17Z,1,2020-02-15T06:59:43Z +10357,2005-08-01T05:49:49Z,3102,475,2005-08-04T02:34:49Z,2,2020-02-15T06:59:43Z +10358,2005-08-01T05:50:07Z,3039,517,2005-08-03T08:18:07Z,1,2020-02-15T06:59:43Z +10359,2005-08-01T05:52:21Z,259,369,2005-08-06T05:52:21Z,2,2020-02-15T06:59:43Z +10360,2005-08-01T05:52:53Z,1129,443,2005-08-05T10:55:53Z,1,2020-02-15T06:59:43Z +10361,2005-08-01T05:53:49Z,318,529,2005-08-10T00:42:49Z,2,2020-02-15T06:59:43Z +10362,2005-08-01T05:55:13Z,72,181,2005-08-10T10:23:13Z,2,2020-02-15T06:59:43Z +10363,2005-08-01T06:01:52Z,320,174,2005-08-05T03:56:52Z,1,2020-02-15T06:59:43Z +10364,2005-08-01T06:06:49Z,1842,317,2005-08-09T06:05:49Z,2,2020-02-15T06:59:43Z +10365,2005-08-01T06:08:44Z,4032,442,2005-08-06T02:07:44Z,1,2020-02-15T06:59:43Z +10366,2005-08-01T06:09:37Z,2654,119,2005-08-05T03:19:37Z,1,2020-02-15T06:59:43Z +10367,2005-08-01T06:12:19Z,3408,242,2005-08-04T12:11:19Z,2,2020-02-15T06:59:43Z +10368,2005-08-01T06:13:38Z,3535,593,2005-08-08T04:40:38Z,2,2020-02-15T06:59:43Z +10369,2005-08-01T06:13:44Z,2534,424,2005-08-07T09:46:44Z,1,2020-02-15T06:59:43Z +10370,2005-08-01T06:18:04Z,4358,546,2005-08-05T01:41:04Z,2,2020-02-15T06:59:43Z +10371,2005-08-01T06:20:29Z,923,327,2005-08-04T00:31:29Z,2,2020-02-15T06:59:43Z +10372,2005-08-01T06:23:48Z,635,419,2005-08-06T03:47:48Z,1,2020-02-15T06:59:43Z +10373,2005-08-01T06:24:26Z,1754,588,2005-08-02T12:07:26Z,1,2020-02-15T06:59:43Z +10374,2005-08-01T06:25:27Z,4351,307,2005-08-07T05:44:27Z,2,2020-02-15T06:59:43Z +10375,2005-08-01T06:26:22Z,857,202,2005-08-06T02:51:22Z,2,2020-02-15T06:59:43Z +10376,2005-08-01T06:27:13Z,4194,474,2005-08-07T06:11:13Z,2,2020-02-15T06:59:43Z +10377,2005-08-01T06:28:28Z,2401,559,2005-08-10T05:45:28Z,2,2020-02-15T06:59:43Z +10378,2005-08-01T06:30:04Z,4110,113,2005-08-06T09:10:04Z,1,2020-02-15T06:59:43Z +10379,2005-08-01T06:34:29Z,3103,141,2005-08-06T07:49:29Z,1,2020-02-15T06:59:43Z +10380,2005-08-01T06:34:36Z,2225,533,2005-08-02T09:08:36Z,1,2020-02-15T06:59:43Z +10381,2005-08-01T06:36:37Z,522,412,2005-08-05T11:17:37Z,1,2020-02-15T06:59:43Z +10382,2005-08-01T06:36:45Z,4455,242,2005-08-02T06:06:45Z,1,2020-02-15T06:59:43Z +10383,2005-08-01T06:37:16Z,4166,592,2005-08-03T07:36:16Z,2,2020-02-15T06:59:43Z +10384,2005-08-01T06:39:14Z,2622,366,2005-08-02T03:06:14Z,1,2020-02-15T06:59:43Z +10385,2005-08-01T06:39:55Z,778,179,2005-08-06T02:16:55Z,1,2020-02-15T06:59:43Z +10386,2005-08-01T06:42:20Z,1568,26,2005-08-07T06:12:20Z,2,2020-02-15T06:59:43Z +10387,2005-08-01T06:42:31Z,1651,87,2005-08-08T07:44:31Z,1,2020-02-15T06:59:43Z +10388,2005-08-01T06:42:44Z,3180,99,2005-08-09T11:43:44Z,2,2020-02-15T06:59:43Z +10389,2005-08-01T06:46:43Z,3534,346,2005-08-08T07:07:43Z,2,2020-02-15T06:59:43Z +10390,2005-08-01T06:46:48Z,1489,502,2005-08-09T02:55:48Z,2,2020-02-15T06:59:43Z +10391,2005-08-01T06:49:05Z,2203,357,2005-08-04T01:51:05Z,2,2020-02-15T06:59:43Z +10392,2005-08-01T06:50:26Z,3017,12,2005-08-10T10:52:26Z,1,2020-02-15T06:59:43Z +10393,2005-08-01T06:52:50Z,808,258,2005-08-05T08:45:50Z,1,2020-02-15T06:59:43Z +10394,2005-08-01T06:58:17Z,1655,128,2005-08-05T02:09:17Z,1,2020-02-15T06:59:43Z +10395,2005-08-01T07:08:22Z,279,129,2005-08-05T08:00:22Z,2,2020-02-15T06:59:43Z +10396,2005-08-01T07:08:46Z,2982,284,2005-08-08T03:47:46Z,1,2020-02-15T06:59:43Z +10397,2005-08-01T07:11:27Z,4168,504,2005-08-03T07:51:27Z,1,2020-02-15T06:59:43Z +10398,2005-08-01T07:11:49Z,4306,174,2005-08-04T05:54:49Z,1,2020-02-15T06:59:43Z +10399,2005-08-01T07:13:39Z,2515,204,2005-08-10T06:56:39Z,1,2020-02-15T06:59:43Z +10400,2005-08-01T07:18:24Z,3897,132,2005-08-10T08:38:24Z,1,2020-02-15T06:59:43Z +10401,2005-08-01T07:27:09Z,1560,564,2005-08-02T01:38:09Z,1,2020-02-15T06:59:43Z +10402,2005-08-01T07:27:19Z,274,410,2005-08-04T12:30:19Z,1,2020-02-15T06:59:43Z +10403,2005-08-01T07:30:45Z,1968,494,2005-08-03T03:03:45Z,2,2020-02-15T06:59:43Z +10404,2005-08-01T07:31:25Z,2580,253,2005-08-07T09:23:25Z,1,2020-02-15T06:59:43Z +10405,2005-08-01T07:35:25Z,3641,463,2005-08-05T05:38:25Z,2,2020-02-15T06:59:43Z +10406,2005-08-01T07:37:05Z,2614,391,2005-08-02T06:11:05Z,1,2020-02-15T06:59:43Z +10407,2005-08-01T07:38:07Z,543,101,2005-08-02T05:38:07Z,2,2020-02-15T06:59:43Z +10408,2005-08-01T07:42:10Z,4144,334,2005-08-09T02:29:10Z,2,2020-02-15T06:59:43Z +10409,2005-08-01T07:49:15Z,2804,449,2005-08-02T13:42:15Z,2,2020-02-15T06:59:43Z +10410,2005-08-01T07:53:29Z,3901,247,2005-08-10T08:56:29Z,1,2020-02-15T06:59:43Z +10411,2005-08-01T07:56:32Z,1946,522,2005-08-10T04:58:32Z,2,2020-02-15T06:59:43Z +10412,2005-08-01T07:57:16Z,1555,325,2005-08-04T11:44:16Z,2,2020-02-15T06:59:43Z +10413,2005-08-01T07:59:39Z,1018,376,2005-08-08T03:55:39Z,1,2020-02-15T06:59:43Z +10414,2005-08-01T08:03:55Z,1271,361,2005-08-04T08:44:55Z,2,2020-02-15T06:59:43Z +10415,2005-08-01T08:05:59Z,2597,591,2005-08-04T13:46:59Z,1,2020-02-15T06:59:43Z +10416,2005-08-01T08:08:39Z,2629,449,2005-08-10T09:26:39Z,2,2020-02-15T06:59:43Z +10417,2005-08-01T08:10:36Z,3675,427,2005-08-02T03:42:36Z,2,2020-02-15T06:59:43Z +10418,2005-08-01T08:11:07Z,1692,248,2005-08-04T11:12:07Z,2,2020-02-15T06:59:43Z +10419,2005-08-01T08:13:22Z,415,66,2005-08-06T04:45:22Z,2,2020-02-15T06:59:43Z +10420,2005-08-01T08:13:53Z,3490,354,2005-08-06T08:05:53Z,2,2020-02-15T06:59:43Z +10421,2005-08-01T08:14:10Z,925,262,2005-08-03T05:56:10Z,2,2020-02-15T06:59:43Z +10422,2005-08-01T08:17:11Z,37,166,2005-08-10T10:08:11Z,2,2020-02-15T06:59:43Z +10423,2005-08-01T08:19:53Z,739,7,2005-08-08T10:25:53Z,1,2020-02-15T06:59:43Z +10424,2005-08-01T08:22:54Z,1921,88,2005-08-06T13:44:54Z,1,2020-02-15T06:59:43Z +10425,2005-08-01T08:23:25Z,322,447,2005-08-05T04:29:25Z,1,2020-02-15T06:59:43Z +10426,2005-08-01T08:26:08Z,1325,305,2005-08-09T04:09:08Z,1,2020-02-15T06:59:43Z +10427,2005-08-01T08:30:11Z,2978,356,2005-08-07T06:18:11Z,2,2020-02-15T06:59:43Z +10428,2005-08-01T08:30:11Z,4245,46,2005-08-02T09:30:11Z,2,2020-02-15T06:59:43Z +10429,2005-08-01T08:34:18Z,3894,511,2005-08-10T12:38:18Z,1,2020-02-15T06:59:43Z +10430,2005-08-01T08:37:06Z,1150,471,2005-08-03T07:25:06Z,1,2020-02-15T06:59:43Z +10431,2005-08-01T08:41:54Z,1074,138,2005-08-07T09:44:54Z,2,2020-02-15T06:59:43Z +10432,2005-08-01T08:43:21Z,4238,450,2005-08-08T13:09:21Z,2,2020-02-15T06:59:43Z +10433,2005-08-01T08:45:56Z,1508,517,2005-08-05T09:46:56Z,2,2020-02-15T06:59:43Z +10434,2005-08-01T08:47:00Z,4073,73,2005-08-06T08:34:00Z,1,2020-02-15T06:59:43Z +10435,2005-08-01T08:50:51Z,1934,392,2005-08-08T12:23:51Z,1,2020-02-15T06:59:43Z +10436,2005-08-01T08:50:59Z,4026,455,2005-08-04T05:23:59Z,1,2020-02-15T06:59:43Z +10437,2005-08-01T08:51:04Z,14,1,2005-08-10T12:12:04Z,1,2020-02-15T06:59:43Z +10438,2005-08-01T08:53:04Z,4217,316,2005-08-09T06:39:04Z,2,2020-02-15T06:59:43Z +10439,2005-08-01T08:54:26Z,2711,332,2005-08-08T14:04:26Z,1,2020-02-15T06:59:43Z +10440,2005-08-01T08:54:32Z,842,299,2005-08-02T10:59:32Z,2,2020-02-15T06:59:43Z +10441,2005-08-01T08:55:56Z,4122,176,2005-08-03T10:26:56Z,2,2020-02-15T06:59:43Z +10442,2005-08-01T08:58:08Z,4570,40,2005-08-05T09:07:08Z,2,2020-02-15T06:59:43Z +10443,2005-08-01T09:01:04Z,1965,403,2005-08-04T09:07:04Z,2,2020-02-15T06:59:43Z +10444,2005-08-01T09:01:40Z,3242,106,2005-08-09T11:31:40Z,1,2020-02-15T06:59:43Z +10445,2005-08-01T09:02:15Z,3582,211,2005-08-08T10:26:15Z,2,2020-02-15T06:59:43Z +10446,2005-08-01T09:02:17Z,2671,95,2005-08-04T10:00:17Z,2,2020-02-15T06:59:43Z +10447,2005-08-01T09:04:58Z,1198,241,2005-08-08T06:24:58Z,1,2020-02-15T06:59:43Z +10448,2005-08-01T09:09:31Z,2254,311,2005-08-02T09:55:31Z,2,2020-02-15T06:59:43Z +10449,2005-08-01T09:09:59Z,1395,213,2005-08-05T11:25:59Z,1,2020-02-15T06:59:43Z +10450,2005-08-01T09:10:03Z,234,380,2005-08-08T12:34:03Z,1,2020-02-15T06:59:43Z +10451,2005-08-01T09:11:25Z,2435,9,2005-08-03T12:37:25Z,2,2020-02-15T06:59:43Z +10452,2005-08-01T09:11:36Z,1973,442,2005-08-04T13:28:36Z,2,2020-02-15T06:59:43Z +10453,2005-08-01T09:13:27Z,1531,188,2005-08-08T11:34:27Z,2,2020-02-15T06:59:43Z +10454,2005-08-01T09:14:00Z,397,9,2005-08-04T04:52:00Z,2,2020-02-15T06:59:43Z +10455,2005-08-01T09:15:00Z,4197,99,2005-08-05T13:35:00Z,1,2020-02-15T06:59:43Z +10456,2005-08-01T09:17:21Z,4339,81,2005-08-06T10:30:21Z,1,2020-02-15T06:59:43Z +10457,2005-08-01T09:17:34Z,3052,121,2005-08-06T07:28:34Z,2,2020-02-15T06:59:43Z +10458,2005-08-01T09:19:48Z,1500,309,2005-08-02T10:16:48Z,1,2020-02-15T06:59:43Z +10459,2005-08-01T09:20:09Z,201,131,2005-08-03T11:36:09Z,1,2020-02-15T06:59:43Z +10460,2005-08-01T09:31:00Z,4504,197,2005-08-09T09:28:00Z,1,2020-02-15T06:59:43Z +10461,2005-08-01T09:32:53Z,3212,270,2005-08-09T10:19:53Z,1,2020-02-15T06:59:43Z +10462,2005-08-01T09:38:28Z,4526,193,2005-08-02T09:52:28Z,2,2020-02-15T06:59:43Z +10463,2005-08-01T09:39:43Z,1301,291,2005-08-10T03:42:43Z,1,2020-02-15T06:59:43Z +10464,2005-08-01T09:43:14Z,464,427,2005-08-06T09:01:14Z,1,2020-02-15T06:59:43Z +10465,2005-08-01T09:45:25Z,4384,534,2005-08-10T09:08:25Z,2,2020-02-15T06:59:43Z +10466,2005-08-01T09:45:26Z,138,2,2005-08-06T06:28:26Z,1,2020-02-15T06:59:43Z +10467,2005-08-01T09:45:58Z,3773,412,2005-08-09T10:17:58Z,2,2020-02-15T06:59:43Z +10468,2005-08-01T09:48:29Z,2115,129,2005-08-05T09:58:29Z,2,2020-02-15T06:59:43Z +10469,2005-08-01T09:51:11Z,3054,466,2005-08-05T06:53:11Z,2,2020-02-15T06:59:43Z +10470,2005-08-01T09:52:26Z,82,523,2005-08-05T06:52:26Z,1,2020-02-15T06:59:43Z +10471,2005-08-01T09:52:37Z,1684,135,2005-08-07T09:40:37Z,2,2020-02-15T06:59:43Z +10472,2005-08-01T09:54:41Z,506,405,2005-08-04T13:31:41Z,1,2020-02-15T06:59:43Z +10473,2005-08-01T09:56:24Z,3034,329,2005-08-10T12:36:24Z,2,2020-02-15T06:59:43Z +10474,2005-08-01T10:01:42Z,4482,488,2005-08-08T12:32:42Z,1,2020-02-15T06:59:43Z +10475,2005-08-01T10:03:17Z,2931,115,2005-08-10T15:50:17Z,2,2020-02-15T06:59:43Z +10476,2005-08-01T10:03:20Z,1993,263,2005-08-10T06:52:20Z,1,2020-02-15T06:59:43Z +10477,2005-08-01T10:04:17Z,235,506,2005-08-06T11:32:17Z,2,2020-02-15T06:59:43Z +10478,2005-08-01T10:09:06Z,3885,417,2005-08-06T05:05:06Z,1,2020-02-15T06:59:43Z +10479,2005-08-01T10:11:25Z,4580,275,2005-08-06T04:52:25Z,1,2020-02-15T06:59:43Z +10480,2005-08-01T10:13:41Z,553,560,2005-08-03T10:27:41Z,1,2020-02-15T06:59:43Z +10481,2005-08-01T10:17:26Z,229,170,2005-08-09T08:50:26Z,1,2020-02-15T06:59:43Z +10482,2005-08-01T10:17:47Z,48,358,2005-08-02T15:04:47Z,2,2020-02-15T06:59:43Z +10483,2005-08-01T10:19:45Z,1521,129,2005-08-04T09:29:45Z,1,2020-02-15T06:59:43Z +10484,2005-08-01T10:19:53Z,1908,400,2005-08-03T05:36:53Z,1,2020-02-15T06:59:43Z +10485,2005-08-01T10:20:34Z,29,50,2005-08-09T09:20:34Z,1,2020-02-15T06:59:43Z +10486,2005-08-01T10:23:43Z,2454,527,2005-08-05T07:11:43Z,2,2020-02-15T06:59:43Z +10487,2005-08-01T10:26:34Z,1121,577,2005-08-07T16:11:34Z,1,2020-02-15T06:59:43Z +10488,2005-08-01T10:27:27Z,297,423,2005-08-02T11:05:27Z,2,2020-02-15T06:59:43Z +10489,2005-08-01T10:27:42Z,4067,54,2005-08-07T12:56:42Z,1,2020-02-15T06:59:43Z +10490,2005-08-01T10:37:11Z,4365,329,2005-08-03T10:01:11Z,2,2020-02-15T06:59:43Z +10491,2005-08-01T10:38:27Z,3091,24,2005-08-04T04:55:27Z,2,2020-02-15T06:59:43Z +10492,2005-08-01T10:42:28Z,1669,334,2005-08-02T07:05:28Z,1,2020-02-15T06:59:43Z +10493,2005-08-01T10:43:12Z,2375,285,2005-08-07T08:13:12Z,2,2020-02-15T06:59:43Z +10494,2005-08-01T10:45:21Z,847,188,2005-08-02T12:34:21Z,1,2020-02-15T06:59:43Z +10495,2005-08-01T10:45:51Z,2232,41,2005-08-06T08:11:51Z,1,2020-02-15T06:59:43Z +10496,2005-08-01T10:53:16Z,411,525,2005-08-08T10:34:16Z,2,2020-02-15T06:59:43Z +10497,2005-08-01T10:55:59Z,1060,499,2005-08-07T11:15:59Z,1,2020-02-15T06:59:43Z +10498,2005-08-01T10:56:48Z,2672,355,2005-08-03T15:46:48Z,2,2020-02-15T06:59:43Z +10499,2005-08-01T11:00:20Z,3293,459,2005-08-10T11:52:20Z,2,2020-02-15T06:59:43Z +10500,2005-08-01T11:01:01Z,469,477,2005-08-06T08:59:01Z,2,2020-02-15T06:59:43Z +10501,2005-08-01T11:04:46Z,1792,351,2005-08-02T12:10:46Z,2,2020-02-15T06:59:43Z +10502,2005-08-01T11:06:39Z,3193,357,2005-08-05T07:11:39Z,1,2020-02-15T06:59:43Z +10503,2005-08-01T11:07:44Z,1823,357,2005-08-08T08:22:44Z,1,2020-02-15T06:59:43Z +10504,2005-08-01T11:10:55Z,3345,530,2005-08-10T10:16:55Z,1,2020-02-15T06:59:43Z +10505,2005-08-01T11:13:59Z,2977,426,2005-08-05T07:20:59Z,2,2020-02-15T06:59:43Z +10506,2005-08-01T11:16:05Z,1171,216,2005-08-03T05:37:05Z,2,2020-02-15T06:59:43Z +10507,2005-08-01T11:22:20Z,367,45,2005-08-04T13:18:20Z,2,2020-02-15T06:59:43Z +10508,2005-08-01T11:23:27Z,3890,431,2005-08-02T10:17:27Z,1,2020-02-15T06:59:43Z +10509,2005-08-01T11:25:28Z,96,504,2005-08-10T09:19:28Z,2,2020-02-15T06:59:43Z +10510,2005-08-01T11:28:30Z,410,259,2005-08-07T11:37:30Z,1,2020-02-15T06:59:43Z +10511,2005-08-01T11:32:16Z,3874,487,2005-08-04T09:38:16Z,1,2020-02-15T06:59:43Z +10512,2005-08-01T11:36:19Z,3294,438,2005-08-09T06:52:19Z,2,2020-02-15T06:59:43Z +10513,2005-08-01T11:37:34Z,4057,105,2005-08-02T17:15:34Z,2,2020-02-15T06:59:43Z +10514,2005-08-01T11:39:26Z,1512,7,2005-08-03T07:53:26Z,2,2020-02-15T06:59:43Z +10515,2005-08-01T11:41:33Z,874,383,2005-08-08T06:23:33Z,2,2020-02-15T06:59:43Z +10516,2005-08-01T11:41:55Z,3924,449,2005-08-08T17:16:55Z,1,2020-02-15T06:59:43Z +10517,2005-08-01T11:41:57Z,2299,199,2005-08-05T06:14:57Z,1,2020-02-15T06:59:43Z +10518,2005-08-01T11:44:08Z,4444,556,2005-08-07T07:58:08Z,2,2020-02-15T06:59:43Z +10519,2005-08-01T11:44:13Z,1967,456,2005-08-09T16:57:13Z,1,2020-02-15T06:59:43Z +10520,2005-08-01T11:45:58Z,4396,543,2005-08-06T17:28:58Z,2,2020-02-15T06:59:43Z +10521,2005-08-01T11:46:17Z,662,346,2005-08-05T11:06:17Z,2,2020-02-15T06:59:43Z +10522,2005-08-01T11:48:51Z,4159,254,2005-08-05T12:40:51Z,1,2020-02-15T06:59:43Z +10523,2005-08-01T11:52:32Z,2408,34,2005-08-02T10:47:32Z,1,2020-02-15T06:59:43Z +10524,2005-08-01T11:53:12Z,4116,38,2005-08-08T10:40:12Z,2,2020-02-15T06:59:43Z +10525,2005-08-01T11:53:17Z,3811,36,2005-08-07T07:24:17Z,1,2020-02-15T06:59:43Z +10526,2005-08-01T11:55:33Z,27,14,2005-08-08T16:42:33Z,1,2020-02-15T06:59:43Z +10527,2005-08-01T11:55:54Z,4530,431,2005-08-05T15:56:54Z,2,2020-02-15T06:59:43Z +10528,2005-08-01T11:56:22Z,4401,564,2005-08-07T07:13:22Z,1,2020-02-15T06:59:43Z +10529,2005-08-01T12:00:02Z,851,444,2005-08-08T16:18:02Z,1,2020-02-15T06:59:43Z +10530,2005-08-01T12:01:17Z,3216,520,2005-08-06T09:55:17Z,2,2020-02-15T06:59:43Z +10531,2005-08-01T12:06:30Z,3846,459,2005-08-04T10:23:30Z,2,2020-02-15T06:59:43Z +10532,2005-08-01T12:06:35Z,746,191,2005-08-07T16:04:35Z,2,2020-02-15T06:59:43Z +10533,2005-08-01T12:14:16Z,1924,593,2005-08-09T17:13:16Z,2,2020-02-15T06:59:43Z +10534,2005-08-01T12:15:11Z,4354,397,2005-08-04T17:06:11Z,1,2020-02-15T06:59:43Z +10535,2005-08-01T12:21:13Z,1838,284,2005-08-09T08:58:13Z,1,2020-02-15T06:59:43Z +10536,2005-08-01T12:21:53Z,1251,86,2005-08-04T13:08:53Z,2,2020-02-15T06:59:43Z +10537,2005-08-01T12:22:28Z,2140,418,2005-08-08T07:27:28Z,1,2020-02-15T06:59:43Z +10538,2005-08-01T12:22:41Z,686,37,2005-08-02T10:31:41Z,2,2020-02-15T06:59:43Z +10539,2005-08-01T12:23:00Z,3341,232,2005-08-07T10:25:00Z,2,2020-02-15T06:59:43Z +10540,2005-08-01T12:24:42Z,4121,84,2005-08-03T08:39:42Z,2,2020-02-15T06:59:43Z +10541,2005-08-01T12:24:54Z,1413,234,2005-08-03T16:18:54Z,1,2020-02-15T06:59:43Z +10542,2005-08-01T12:32:23Z,1102,465,2005-08-08T16:26:23Z,1,2020-02-15T06:59:43Z +10543,2005-08-01T12:36:09Z,624,29,2005-08-07T07:42:09Z,1,2020-02-15T06:59:43Z +10544,2005-08-01T12:36:21Z,3195,589,2005-08-07T12:25:21Z,2,2020-02-15T06:59:43Z +10545,2005-08-01T12:37:46Z,4230,425,2005-08-04T16:02:46Z,2,2020-02-15T06:59:43Z +10546,2005-08-01T12:44:17Z,1589,362,2005-08-06T16:26:17Z,2,2020-02-15T06:59:43Z +10547,2005-08-01T12:44:17Z,1707,403,2005-08-08T06:53:17Z,1,2020-02-15T06:59:43Z +10548,2005-08-01T12:44:32Z,1914,85,2005-08-07T09:17:32Z,1,2020-02-15T06:59:43Z +10549,2005-08-01T12:46:39Z,3719,61,2005-08-06T17:17:39Z,1,2020-02-15T06:59:43Z +10550,2005-08-01T12:46:52Z,1980,129,2005-08-05T16:48:52Z,2,2020-02-15T06:59:43Z +10551,2005-08-01T12:48:55Z,2974,294,2005-08-10T16:11:55Z,1,2020-02-15T06:59:43Z +10552,2005-08-01T12:49:44Z,4263,119,2005-08-04T16:20:44Z,2,2020-02-15T06:59:43Z +10553,2005-08-01T12:54:06Z,2768,415,2005-08-06T15:27:06Z,1,2020-02-15T06:59:43Z +10554,2005-08-01T12:56:19Z,3220,209,2005-08-03T09:44:19Z,2,2020-02-15T06:59:43Z +10555,2005-08-01T12:56:38Z,377,487,2005-08-10T18:19:38Z,1,2020-02-15T06:59:43Z +10556,2005-08-01T12:58:42Z,144,117,2005-08-03T07:18:42Z,2,2020-02-15T06:59:43Z +10557,2005-08-01T12:59:24Z,240,385,2005-08-04T17:08:24Z,2,2020-02-15T06:59:43Z +10558,2005-08-01T13:00:20Z,4399,117,2005-08-05T16:31:20Z,1,2020-02-15T06:59:43Z +10559,2005-08-01T13:02:58Z,2861,174,2005-08-09T10:03:58Z,2,2020-02-15T06:59:43Z +10560,2005-08-01T13:04:57Z,1534,427,2005-08-05T18:25:57Z,2,2020-02-15T06:59:43Z +10561,2005-08-01T13:05:35Z,2195,8,2005-08-04T08:34:35Z,2,2020-02-15T06:59:43Z +10562,2005-08-01T13:05:52Z,1947,178,2005-08-02T17:05:52Z,1,2020-02-15T06:59:43Z +10563,2005-08-01T13:06:03Z,1885,214,2005-08-09T08:39:03Z,2,2020-02-15T06:59:43Z +10564,2005-08-01T13:07:34Z,4469,387,2005-08-06T15:14:34Z,2,2020-02-15T06:59:43Z +10565,2005-08-01T13:08:27Z,347,165,2005-08-02T10:30:27Z,1,2020-02-15T06:59:43Z +10566,2005-08-01T13:12:11Z,3988,269,2005-08-05T11:16:11Z,2,2020-02-15T06:59:43Z +10567,2005-08-01T13:16:01Z,2744,212,2005-08-05T14:59:01Z,1,2020-02-15T06:59:43Z +10568,2005-08-01T13:17:28Z,3009,130,2005-08-08T17:04:28Z,1,2020-02-15T06:59:43Z +10569,2005-08-01T13:18:23Z,611,179,2005-08-10T13:33:23Z,1,2020-02-15T06:59:43Z +10570,2005-08-01T13:23:06Z,369,21,2005-08-05T15:30:06Z,2,2020-02-15T06:59:43Z +10571,2005-08-01T13:25:30Z,3660,308,2005-08-02T16:43:30Z,2,2020-02-15T06:59:43Z +10572,2005-08-01T13:26:53Z,1239,386,2005-08-07T18:47:53Z,2,2020-02-15T06:59:43Z +10573,2005-08-01T13:27:24Z,4252,585,2005-08-04T15:09:24Z,2,2020-02-15T06:59:43Z +10574,2005-08-01T13:36:51Z,679,287,2005-08-10T13:25:51Z,2,2020-02-15T06:59:43Z +10575,2005-08-01T13:41:41Z,4447,251,2005-08-08T11:30:41Z,1,2020-02-15T06:59:43Z +10576,2005-08-01T13:46:02Z,1876,180,2005-08-05T10:19:02Z,1,2020-02-15T06:59:43Z +10577,2005-08-01T13:46:38Z,2240,428,2005-08-06T11:35:38Z,2,2020-02-15T06:59:43Z +10578,2005-08-01T13:48:02Z,3704,113,2005-08-07T13:40:02Z,1,2020-02-15T06:59:43Z +10579,2005-08-01T13:48:22Z,4068,270,2005-08-07T11:51:22Z,1,2020-02-15T06:59:43Z +10580,2005-08-01T13:51:14Z,590,234,2005-08-08T11:49:14Z,2,2020-02-15T06:59:43Z +10581,2005-08-01T13:52:30Z,2801,217,2005-08-10T19:11:30Z,1,2020-02-15T06:59:43Z +10582,2005-08-01T13:54:22Z,2536,233,2005-08-05T16:46:22Z,2,2020-02-15T06:59:43Z +10583,2005-08-01T13:54:35Z,704,125,2005-08-03T18:21:35Z,1,2020-02-15T06:59:43Z +10584,2005-08-01T13:58:47Z,715,86,2005-08-06T13:38:47Z,2,2020-02-15T06:59:43Z +10585,2005-08-01T14:00:42Z,2670,228,2005-08-09T11:42:42Z,2,2020-02-15T06:59:43Z +10586,2005-08-01T14:00:59Z,3306,583,2005-08-06T10:00:59Z,2,2020-02-15T06:59:43Z +10587,2005-08-01T14:03:38Z,3000,521,2005-08-08T19:59:38Z,2,2020-02-15T06:59:43Z +10588,2005-08-01T14:10:21Z,2384,49,2005-08-03T13:47:21Z,2,2020-02-15T06:59:43Z +10589,2005-08-01T14:11:09Z,4280,375,2005-08-09T09:28:09Z,2,2020-02-15T06:59:43Z +10590,2005-08-01T14:11:53Z,740,78,2005-08-04T20:04:53Z,1,2020-02-15T06:59:43Z +10591,2005-08-01T14:12:29Z,3360,52,2005-08-04T08:46:29Z,2,2020-02-15T06:59:43Z +10592,2005-08-01T14:13:00Z,829,265,2005-08-09T13:03:00Z,2,2020-02-15T06:59:43Z +10593,2005-08-01T14:13:19Z,1886,144,2005-08-06T08:48:19Z,2,2020-02-15T06:59:43Z +10594,2005-08-01T14:14:59Z,1826,53,2005-08-07T10:48:59Z,2,2020-02-15T06:59:43Z +10595,2005-08-01T14:16:28Z,966,137,2005-08-03T10:37:28Z,1,2020-02-15T06:59:43Z +10596,2005-08-01T14:18:57Z,803,112,2005-08-07T14:59:57Z,2,2020-02-15T06:59:43Z +10597,2005-08-01T14:19:48Z,3292,3,2005-08-08T20:01:48Z,1,2020-02-15T06:59:43Z +10598,2005-08-01T14:23:36Z,2341,397,2005-08-10T14:07:36Z,2,2020-02-15T06:59:43Z +10599,2005-08-01T14:23:58Z,2422,271,2005-08-06T10:45:58Z,2,2020-02-15T06:59:43Z +10600,2005-08-01T14:25:21Z,3900,294,2005-08-06T18:00:21Z,1,2020-02-15T06:59:43Z +10601,2005-08-01T14:25:40Z,2843,420,2005-08-10T09:07:40Z,1,2020-02-15T06:59:43Z +10602,2005-08-01T14:30:23Z,1506,111,2005-08-07T15:20:23Z,1,2020-02-15T06:59:43Z +10603,2005-08-01T14:30:35Z,4024,394,2005-08-05T11:13:35Z,2,2020-02-15T06:59:43Z +10604,2005-08-01T14:35:08Z,2833,250,2005-08-08T10:19:08Z,2,2020-02-15T06:59:43Z +10605,2005-08-01T14:36:26Z,680,341,2005-08-06T12:04:26Z,2,2020-02-15T06:59:43Z +10606,2005-08-01T14:39:15Z,81,335,2005-08-08T11:31:15Z,1,2020-02-15T06:59:43Z +10607,2005-08-01T14:44:43Z,3999,438,2005-08-02T16:39:43Z,2,2020-02-15T06:59:43Z +10608,2005-08-01T14:48:41Z,3835,381,2005-08-04T17:32:41Z,2,2020-02-15T06:59:43Z +10609,2005-08-01T14:48:45Z,2587,5,2005-08-04T13:41:45Z,2,2020-02-15T06:59:43Z +10610,2005-08-01T14:49:41Z,1865,396,2005-08-03T13:07:41Z,1,2020-02-15T06:59:43Z +10611,2005-08-01T14:53:52Z,957,135,2005-08-07T09:15:52Z,2,2020-02-15T06:59:43Z +10612,2005-08-01T14:55:31Z,287,554,2005-08-06T19:01:31Z,1,2020-02-15T06:59:43Z +10613,2005-08-01T14:56:14Z,4357,527,2005-08-07T09:33:14Z,1,2020-02-15T06:59:43Z +10614,2005-08-01T14:57:00Z,232,533,2005-08-10T09:31:00Z,2,2020-02-15T06:59:43Z +10615,2005-08-01T14:58:14Z,2639,34,2005-08-02T13:38:14Z,1,2020-02-15T06:59:43Z +10616,2005-08-01T14:59:50Z,1094,20,2005-08-07T11:38:50Z,2,2020-02-15T06:59:43Z +10617,2005-08-01T15:05:52Z,4344,476,2005-08-09T18:54:52Z,1,2020-02-15T06:59:43Z +10618,2005-08-01T15:06:38Z,3729,386,2005-08-06T15:52:38Z,2,2020-02-15T06:59:43Z +10619,2005-08-01T15:07:04Z,2189,132,2005-08-07T11:42:04Z,2,2020-02-15T06:59:43Z +10620,2005-08-01T15:09:17Z,3064,183,2005-08-09T13:58:17Z,1,2020-02-15T06:59:43Z +10621,2005-08-01T15:10:26Z,1650,172,2005-08-04T10:58:26Z,1,2020-02-15T06:59:43Z +10622,2005-08-01T15:12:00Z,3044,171,2005-08-08T14:09:00Z,1,2020-02-15T06:59:43Z +10623,2005-08-01T15:22:38Z,4426,494,2005-08-03T11:03:38Z,2,2020-02-15T06:59:43Z +10624,2005-08-01T15:27:05Z,3801,74,2005-08-05T19:50:05Z,1,2020-02-15T06:59:43Z +10625,2005-08-01T15:27:10Z,3022,5,2005-08-02T13:16:10Z,1,2020-02-15T06:59:43Z +10626,2005-08-01T15:32:41Z,1042,122,2005-08-05T18:08:41Z,1,2020-02-15T06:59:43Z +10627,2005-08-01T15:33:03Z,2026,472,2005-08-02T21:26:03Z,1,2020-02-15T06:59:43Z +10628,2005-08-01T15:33:19Z,427,285,2005-08-05T17:27:19Z,1,2020-02-15T06:59:43Z +10629,2005-08-01T15:33:32Z,997,575,2005-08-08T12:40:32Z,2,2020-02-15T06:59:43Z +10630,2005-08-01T15:34:46Z,2335,39,2005-08-03T10:50:46Z,1,2020-02-15T06:59:43Z +10631,2005-08-01T15:35:14Z,2712,304,2005-08-03T10:48:14Z,1,2020-02-15T06:59:43Z +10632,2005-08-01T15:36:56Z,1290,406,2005-08-05T17:32:56Z,1,2020-02-15T06:59:43Z +10633,2005-08-01T15:37:17Z,3125,475,2005-08-10T14:30:17Z,2,2020-02-15T06:59:43Z +10634,2005-08-01T15:37:48Z,445,592,2005-08-02T12:11:48Z,2,2020-02-15T06:59:43Z +10635,2005-08-01T15:37:58Z,547,52,2005-08-07T11:15:58Z,2,2020-02-15T06:59:43Z +10636,2005-08-01T15:40:35Z,621,385,2005-08-05T18:46:35Z,1,2020-02-15T06:59:43Z +10637,2005-08-01T15:44:09Z,1243,161,2005-08-04T14:42:09Z,1,2020-02-15T06:59:43Z +10638,2005-08-01T15:44:20Z,2239,132,2005-08-08T16:05:20Z,2,2020-02-15T06:59:43Z +10639,2005-08-01T15:44:43Z,1015,39,2005-08-10T13:51:43Z,1,2020-02-15T06:59:43Z +10640,2005-08-01T15:44:51Z,3020,375,2005-08-06T15:52:51Z,1,2020-02-15T06:59:43Z +10641,2005-08-01T15:44:57Z,972,285,2005-08-04T18:15:57Z,2,2020-02-15T06:59:43Z +10642,2005-08-01T15:45:11Z,2573,294,2005-08-02T20:13:11Z,1,2020-02-15T06:59:43Z +10643,2005-08-01T15:48:33Z,3853,495,2005-08-06T20:24:33Z,2,2020-02-15T06:59:43Z +10644,2005-08-01T15:52:00Z,4374,7,2005-08-08T16:08:00Z,1,2020-02-15T06:59:43Z +10645,2005-08-01T15:52:01Z,3864,130,2005-08-09T18:58:01Z,1,2020-02-15T06:59:43Z +10646,2005-08-01T15:57:55Z,1752,209,2005-08-02T19:08:55Z,1,2020-02-15T06:59:43Z +10647,2005-08-01T16:08:46Z,3137,115,2005-08-06T20:37:46Z,2,2020-02-15T06:59:43Z +10648,2005-08-01T16:08:52Z,691,270,2005-08-05T20:17:52Z,1,2020-02-15T06:59:43Z +10649,2005-08-01T16:11:40Z,1032,278,2005-08-06T14:09:40Z,2,2020-02-15T06:59:43Z +10650,2005-08-01T16:18:45Z,2306,242,2005-08-09T16:29:45Z,1,2020-02-15T06:59:43Z +10651,2005-08-01T16:20:22Z,1541,404,2005-08-03T15:53:22Z,1,2020-02-15T06:59:43Z +10652,2005-08-01T16:24:08Z,1633,241,2005-08-03T16:00:08Z,2,2020-02-15T06:59:43Z +10653,2005-08-01T16:28:07Z,1190,75,2005-08-07T21:22:07Z,2,2020-02-15T06:59:43Z +10654,2005-08-01T16:31:35Z,2522,399,2005-08-05T12:04:35Z,2,2020-02-15T06:59:43Z +10655,2005-08-01T16:33:27Z,1399,385,2005-08-08T17:17:27Z,2,2020-02-15T06:59:43Z +10656,2005-08-01T16:38:04Z,2571,80,2005-08-09T19:37:04Z,2,2020-02-15T06:59:43Z +10657,2005-08-01T16:38:44Z,3075,590,2005-08-06T16:05:44Z,2,2020-02-15T06:59:43Z +10658,2005-08-01T16:39:18Z,2943,469,2005-08-09T18:17:18Z,2,2020-02-15T06:59:43Z +10659,2005-08-01T16:40:34Z,786,238,2005-08-09T21:00:34Z,2,2020-02-15T06:59:43Z +10660,2005-08-01T16:48:01Z,2518,253,2005-08-07T14:42:01Z,2,2020-02-15T06:59:43Z +10661,2005-08-01T16:48:31Z,3311,177,2005-08-02T21:02:31Z,1,2020-02-15T06:59:43Z +10662,2005-08-01T16:50:57Z,2857,151,2005-08-03T17:19:57Z,1,2020-02-15T06:59:43Z +10663,2005-08-01T16:51:08Z,4258,433,2005-08-08T21:17:08Z,2,2020-02-15T06:59:43Z +10664,2005-08-01T16:51:15Z,3167,337,2005-08-04T19:14:15Z,2,2020-02-15T06:59:43Z +10665,2005-08-01T16:56:17Z,3594,133,2005-08-03T18:58:17Z,1,2020-02-15T06:59:43Z +10666,2005-08-01T16:56:36Z,1945,197,2005-08-07T22:23:36Z,2,2020-02-15T06:59:43Z +10667,2005-08-01T16:58:22Z,3937,340,2005-08-10T15:41:22Z,1,2020-02-15T06:59:43Z +10668,2005-08-01T17:00:27Z,2085,58,2005-08-02T14:49:27Z,2,2020-02-15T06:59:43Z +10669,2005-08-01T17:03:28Z,2121,559,2005-08-08T21:34:28Z,2,2020-02-15T06:59:43Z +10670,2005-08-01T17:07:16Z,156,512,2005-08-10T11:46:16Z,2,2020-02-15T06:59:43Z +10671,2005-08-01T17:09:59Z,4430,10,2005-08-09T21:36:59Z,1,2020-02-15T06:59:43Z +10672,2005-08-01T17:10:54Z,3674,375,2005-08-07T12:19:54Z,2,2020-02-15T06:59:43Z +10673,2005-08-01T17:11:51Z,2735,528,2005-08-03T13:32:51Z,1,2020-02-15T06:59:43Z +10674,2005-08-01T17:11:52Z,1962,340,2005-08-08T19:34:52Z,1,2020-02-15T06:59:43Z +10675,2005-08-01T17:11:57Z,649,522,2005-08-10T17:18:57Z,1,2020-02-15T06:59:43Z +10676,2005-08-01T17:14:15Z,629,79,2005-08-04T12:34:15Z,1,2020-02-15T06:59:43Z +10677,2005-08-01T17:24:35Z,4350,483,2005-08-04T20:03:35Z,1,2020-02-15T06:59:43Z +10678,2005-08-01T17:26:24Z,4438,56,2005-08-05T22:55:24Z,1,2020-02-15T06:59:43Z +10679,2005-08-01T17:27:58Z,4437,198,2005-08-08T16:06:58Z,1,2020-02-15T06:59:43Z +10680,2005-08-01T17:28:05Z,2498,60,2005-08-04T19:34:05Z,1,2020-02-15T06:59:43Z +10681,2005-08-01T17:30:35Z,1468,119,2005-08-02T14:48:35Z,2,2020-02-15T06:59:43Z +10682,2005-08-01T17:32:53Z,4557,18,2005-08-06T15:49:53Z,2,2020-02-15T06:59:43Z +10683,2005-08-01T17:33:03Z,244,246,2005-08-04T23:12:03Z,1,2020-02-15T06:59:43Z +10684,2005-08-01T17:47:00Z,1985,244,2005-08-09T15:00:00Z,2,2020-02-15T06:59:43Z +10685,2005-08-01T17:49:38Z,2029,200,2005-08-07T21:04:38Z,2,2020-02-15T06:59:43Z +10686,2005-08-01T17:51:21Z,2542,150,2005-08-03T19:01:21Z,1,2020-02-15T06:59:43Z +10687,2005-08-01T17:53:02Z,3191,16,2005-08-05T19:16:02Z,2,2020-02-15T06:59:43Z +10688,2005-08-01T17:53:43Z,3161,449,2005-08-09T21:50:43Z,1,2020-02-15T06:59:43Z +10689,2005-08-01T18:04:18Z,1442,568,2005-08-05T21:17:18Z,2,2020-02-15T06:59:43Z +10690,2005-08-01T18:05:54Z,807,80,2005-08-10T21:43:54Z,2,2020-02-15T06:59:43Z +10691,2005-08-01T18:09:53Z,4281,276,2005-08-03T16:32:53Z,1,2020-02-15T06:59:43Z +10692,2005-08-01T18:12:35Z,371,596,2005-08-07T13:06:35Z,1,2020-02-15T06:59:44Z +10693,2005-08-01T18:14:14Z,2387,444,2005-08-03T22:00:14Z,2,2020-02-15T06:59:44Z +10694,2005-08-01T18:15:07Z,3429,98,2005-08-10T15:38:07Z,1,2020-02-15T06:59:44Z +10695,2005-08-01T18:16:20Z,3612,374,2005-08-03T12:21:20Z,2,2020-02-15T06:59:44Z +10696,2005-08-01T18:18:13Z,47,120,2005-08-04T14:09:13Z,1,2020-02-15T06:59:44Z +10697,2005-08-01T18:20:23Z,3115,519,2005-08-07T21:18:23Z,1,2020-02-15T06:59:44Z +10698,2005-08-01T18:24:41Z,2738,135,2005-08-08T18:59:41Z,2,2020-02-15T06:59:44Z +10699,2005-08-01T18:24:51Z,1029,125,2005-08-06T20:18:51Z,1,2020-02-15T06:59:44Z +10700,2005-08-01T18:26:31Z,4259,203,2005-08-07T19:51:31Z,2,2020-02-15T06:59:44Z +10701,2005-08-01T18:28:17Z,3958,538,2005-08-09T21:51:17Z,1,2020-02-15T06:59:44Z +10702,2005-08-01T18:34:59Z,2802,560,2005-08-09T23:44:59Z,2,2020-02-15T06:59:44Z +10703,2005-08-01T18:37:39Z,1818,181,2005-08-07T23:50:39Z,2,2020-02-15T06:59:44Z +10704,2005-08-01T18:38:02Z,960,594,2005-08-08T20:19:02Z,1,2020-02-15T06:59:44Z +10705,2005-08-01T18:38:54Z,4338,381,2005-08-04T18:00:54Z,1,2020-02-15T06:59:44Z +10706,2005-08-01T18:41:28Z,1183,147,2005-08-10T14:30:28Z,1,2020-02-15T06:59:44Z +10707,2005-08-01T18:41:34Z,1165,558,2005-08-06T12:41:34Z,1,2020-02-15T06:59:44Z +10708,2005-08-01T18:43:28Z,3978,567,2005-08-09T15:24:28Z,1,2020-02-15T06:59:44Z +10709,2005-08-01T18:43:57Z,282,418,2005-08-06T13:17:57Z,2,2020-02-15T06:59:44Z +10710,2005-08-01T18:44:36Z,3082,177,2005-08-03T13:17:36Z,1,2020-02-15T06:59:44Z +10711,2005-08-01T18:45:09Z,4278,400,2005-08-02T19:47:09Z,2,2020-02-15T06:59:44Z +10712,2005-08-01T18:47:56Z,1188,532,2005-08-07T19:26:56Z,2,2020-02-15T06:59:44Z +10713,2005-08-01T18:50:05Z,2030,369,2005-08-05T00:43:05Z,2,2020-02-15T06:59:44Z +10714,2005-08-01T18:51:29Z,1465,64,2005-08-04T18:49:29Z,2,2020-02-15T06:59:44Z +10715,2005-08-01T18:51:48Z,1054,386,2005-08-06T14:44:48Z,1,2020-02-15T06:59:44Z +10716,2005-08-01T18:53:48Z,3405,515,2005-08-04T13:49:48Z,1,2020-02-15T06:59:44Z +10717,2005-08-01T18:53:53Z,2934,365,2005-08-05T21:28:53Z,1,2020-02-15T06:59:44Z +10718,2005-08-01T18:55:38Z,2763,394,2005-08-04T14:45:38Z,1,2020-02-15T06:59:44Z +10719,2005-08-01T19:00:28Z,3861,188,2005-08-07T17:04:28Z,1,2020-02-15T06:59:44Z +10720,2005-08-01T19:04:33Z,3712,326,2005-08-06T23:12:33Z,2,2020-02-15T06:59:44Z +10721,2005-08-01T19:05:18Z,904,18,2005-08-09T20:45:18Z,2,2020-02-15T06:59:44Z +10722,2005-08-01T19:07:08Z,2849,90,2005-08-04T14:09:08Z,2,2020-02-15T06:59:44Z +10723,2005-08-01T19:10:49Z,2526,580,2005-08-08T19:21:49Z,2,2020-02-15T06:59:44Z +10724,2005-08-01T19:10:59Z,3425,576,2005-08-07T18:44:59Z,1,2020-02-15T06:59:44Z +10725,2005-08-01T19:11:04Z,4486,534,2005-08-07T18:16:04Z,2,2020-02-15T06:59:44Z +10726,2005-08-01T19:14:53Z,749,75,2005-08-08T23:56:53Z,2,2020-02-15T06:59:44Z +10727,2005-08-01T19:15:08Z,2049,16,2005-08-03T13:52:08Z,1,2020-02-15T06:59:44Z +10728,2005-08-01T19:15:09Z,3133,309,2005-08-04T19:35:09Z,1,2020-02-15T06:59:44Z +10729,2005-08-01T19:21:11Z,2918,595,2005-08-07T21:20:11Z,2,2020-02-15T06:59:44Z +10730,2005-08-01T19:21:42Z,1793,368,2005-08-10T21:18:42Z,1,2020-02-15T06:59:44Z +10731,2005-08-01T19:21:48Z,4248,278,2005-08-08T22:01:48Z,2,2020-02-15T06:59:44Z +10732,2005-08-01T19:25:18Z,2810,538,2005-08-10T22:26:18Z,1,2020-02-15T06:59:44Z +10733,2005-08-01T19:28:01Z,3980,560,2005-08-09T18:41:01Z,1,2020-02-15T06:59:44Z +10734,2005-08-01T19:28:47Z,1130,21,2005-08-03T00:41:47Z,2,2020-02-15T06:59:44Z +10735,2005-08-01T19:29:45Z,4061,544,2005-08-02T19:50:45Z,2,2020-02-15T06:59:44Z +10736,2005-08-01T19:30:21Z,2227,272,2005-08-02T22:37:21Z,1,2020-02-15T06:59:44Z +10737,2005-08-01T19:31:24Z,1773,149,2005-08-10T19:17:24Z,1,2020-02-15T06:59:44Z +10738,2005-08-01T19:39:08Z,544,377,2005-08-10T20:37:08Z,1,2020-02-15T06:59:44Z +10739,2005-08-01T19:46:11Z,3160,197,2005-08-06T21:08:11Z,2,2020-02-15T06:59:44Z +10740,2005-08-01T19:50:32Z,3215,144,2005-08-07T23:25:32Z,1,2020-02-15T06:59:44Z +10741,2005-08-01T19:52:52Z,3300,469,2005-08-04T19:58:52Z,1,2020-02-15T06:59:44Z +10742,2005-08-01T19:53:13Z,3658,416,2005-08-10T15:05:13Z,1,2020-02-15T06:59:44Z +10743,2005-08-01T19:55:09Z,4206,197,2005-08-03T19:29:09Z,1,2020-02-15T06:59:44Z +10744,2005-08-01T19:56:49Z,565,439,2005-08-09T16:33:49Z,2,2020-02-15T06:59:44Z +10745,2005-08-01T19:57:06Z,446,307,2005-08-07T18:04:06Z,1,2020-02-15T06:59:44Z +10746,2005-08-01T19:58:49Z,305,508,2005-08-10T19:00:49Z,2,2020-02-15T06:59:44Z +10747,2005-08-01T19:59:41Z,4527,266,2005-08-10T00:00:41Z,2,2020-02-15T06:59:44Z +10748,2005-08-01T20:01:24Z,3769,181,2005-08-05T19:55:24Z,1,2020-02-15T06:59:44Z +10749,2005-08-01T20:02:01Z,2953,214,2005-08-03T14:20:01Z,1,2020-02-15T06:59:44Z +10750,2005-08-01T20:06:00Z,3206,201,2005-08-07T15:48:00Z,1,2020-02-15T06:59:44Z +10751,2005-08-01T20:06:10Z,3257,518,2005-08-10T22:36:10Z,2,2020-02-15T06:59:44Z +10752,2005-08-01T20:08:49Z,3203,147,2005-08-10T15:41:49Z,2,2020-02-15T06:59:44Z +10753,2005-08-01T20:09:24Z,1557,273,2005-08-09T19:31:24Z,1,2020-02-15T06:59:44Z +10754,2005-08-01T20:12:33Z,2122,460,2005-08-10T01:07:33Z,2,2020-02-15T06:59:44Z +10755,2005-08-01T20:14:14Z,1217,239,2005-08-07T01:04:14Z,1,2020-02-15T06:59:44Z +10756,2005-08-01T20:17:03Z,4247,596,2005-08-08T18:31:03Z,2,2020-02-15T06:59:44Z +10757,2005-08-01T20:22:44Z,102,188,2005-08-04T19:48:44Z,2,2020-02-15T06:59:44Z +10758,2005-08-01T20:22:51Z,191,373,2005-08-10T16:11:51Z,1,2020-02-15T06:59:44Z +10759,2005-08-01T20:22:51Z,3528,256,2005-08-07T22:07:51Z,1,2020-02-15T06:59:44Z +10760,2005-08-01T20:25:20Z,1311,497,2005-08-09T16:57:20Z,1,2020-02-15T06:59:44Z +10761,2005-08-01T20:25:35Z,3967,36,2005-08-08T15:20:35Z,2,2020-02-15T06:59:44Z +10762,2005-08-01T20:28:39Z,1363,208,2005-08-05T17:36:39Z,1,2020-02-15T06:59:44Z +10763,2005-08-01T20:32:27Z,987,276,2005-08-05T01:24:27Z,2,2020-02-15T06:59:44Z +10764,2005-08-01T20:32:42Z,3808,357,2005-08-03T22:14:42Z,2,2020-02-15T06:59:44Z +10765,2005-08-01T20:34:51Z,566,337,2005-08-04T00:02:51Z,1,2020-02-15T06:59:44Z +10766,2005-08-01T20:36:29Z,947,420,2005-08-04T00:30:29Z,1,2020-02-15T06:59:44Z +10767,2005-08-01T20:37:23Z,2875,488,2005-08-04T23:15:23Z,2,2020-02-15T06:59:44Z +10768,2005-08-01T20:39:32Z,454,273,2005-08-10T19:41:32Z,1,2020-02-15T06:59:44Z +10769,2005-08-01T20:43:02Z,3222,348,2005-08-05T02:32:02Z,1,2020-02-15T06:59:44Z +10770,2005-08-01T20:45:39Z,2567,262,2005-08-04T19:21:39Z,1,2020-02-15T06:59:44Z +10771,2005-08-01T20:49:35Z,1274,485,2005-08-10T16:58:35Z,1,2020-02-15T06:59:44Z +10772,2005-08-01T20:51:10Z,132,485,2005-08-10T15:50:10Z,1,2020-02-15T06:59:44Z +10773,2005-08-01T20:53:45Z,3854,181,2005-08-07T00:16:45Z,1,2020-02-15T06:59:44Z +10774,2005-08-01T20:54:33Z,4231,407,2005-08-08T20:59:33Z,2,2020-02-15T06:59:44Z +10775,2005-08-01T20:59:52Z,4190,263,2005-08-04T19:31:52Z,2,2020-02-15T06:59:44Z +10776,2005-08-01T20:59:58Z,1598,565,2005-08-10T20:33:58Z,2,2020-02-15T06:59:44Z +10777,2005-08-01T21:03:50Z,3487,493,2005-08-06T19:29:50Z,1,2020-02-15T06:59:44Z +10778,2005-08-01T21:11:39Z,1939,220,2005-08-02T22:59:39Z,2,2020-02-15T06:59:44Z +10779,2005-08-01T21:11:54Z,2092,578,2005-08-09T21:00:54Z,2,2020-02-15T06:59:44Z +10780,2005-08-01T21:14:24Z,1450,51,2005-08-07T16:32:24Z,2,2020-02-15T06:59:44Z +10781,2005-08-01T21:22:41Z,1321,259,2005-08-06T01:02:41Z,1,2020-02-15T06:59:44Z +10782,2005-08-01T21:23:25Z,1507,577,2005-08-03T20:15:25Z,2,2020-02-15T06:59:44Z +10783,2005-08-01T21:23:37Z,1192,495,2005-08-09T20:18:37Z,1,2020-02-15T06:59:44Z +10784,2005-08-01T21:24:28Z,3494,208,2005-08-09T19:23:28Z,1,2020-02-15T06:59:44Z +10785,2005-08-01T21:24:55Z,2282,397,2005-08-06T17:47:55Z,1,2020-02-15T06:59:44Z +10786,2005-08-01T21:29:34Z,50,490,2005-08-10T17:27:34Z,1,2020-02-15T06:59:44Z +10787,2005-08-01T21:35:01Z,3246,127,2005-08-10T23:30:01Z,1,2020-02-15T06:59:44Z +10788,2005-08-01T21:37:10Z,3350,160,2005-08-03T01:33:10Z,1,2020-02-15T06:59:44Z +10789,2005-08-01T21:37:55Z,3298,403,2005-08-07T17:01:55Z,2,2020-02-15T06:59:44Z +10790,2005-08-01T21:38:37Z,3080,274,2005-08-08T17:20:37Z,2,2020-02-15T06:59:44Z +10791,2005-08-01T21:41:52Z,2061,338,2005-08-04T03:28:52Z,2,2020-02-15T06:59:44Z +10792,2005-08-01T21:44:24Z,1037,264,2005-08-02T19:48:24Z,2,2020-02-15T06:59:44Z +10793,2005-08-01T21:48:03Z,3018,225,2005-08-10T19:16:03Z,1,2020-02-15T06:59:44Z +10794,2005-08-01T21:51:15Z,889,27,2005-08-10T18:51:15Z,2,2020-02-15T06:59:44Z +10795,2005-08-01T21:56:37Z,2748,76,2005-08-03T01:36:37Z,1,2020-02-15T06:59:44Z +10796,2005-08-01T21:56:41Z,2113,534,2005-08-05T01:09:41Z,1,2020-02-15T06:59:44Z +10797,2005-08-01T22:02:51Z,1731,308,2005-08-03T23:07:51Z,1,2020-02-15T06:59:44Z +10798,2005-08-01T22:03:10Z,382,141,2005-08-08T01:34:10Z,1,2020-02-15T06:59:44Z +10799,2005-08-01T22:03:31Z,3282,145,2005-08-06T20:19:31Z,2,2020-02-15T06:59:44Z +10800,2005-08-01T22:07:44Z,507,583,2005-08-05T22:45:44Z,1,2020-02-15T06:59:44Z +10801,2005-08-01T22:09:35Z,3757,116,2005-08-08T22:23:35Z,1,2020-02-15T06:59:44Z +10802,2005-08-01T22:18:32Z,3998,178,2005-08-10T18:41:32Z,2,2020-02-15T06:59:44Z +10803,2005-08-01T22:22:07Z,3318,46,2005-08-08T02:37:07Z,2,2020-02-15T06:59:44Z +10804,2005-08-01T22:22:11Z,2915,596,2005-08-03T03:42:11Z,2,2020-02-15T06:59:44Z +10805,2005-08-01T22:23:37Z,557,203,2005-08-05T01:22:37Z,2,2020-02-15T06:59:44Z +10806,2005-08-01T22:25:29Z,3553,89,2005-08-04T18:46:29Z,2,2020-02-15T06:59:44Z +10807,2005-08-01T22:26:10Z,1673,287,2005-08-05T21:55:10Z,1,2020-02-15T06:59:44Z +10808,2005-08-01T22:37:11Z,596,480,2005-08-09T02:37:11Z,1,2020-02-15T06:59:44Z +10809,2005-08-01T22:39:27Z,1167,340,2005-08-03T03:44:27Z,2,2020-02-15T06:59:44Z +10810,2005-08-01T22:40:39Z,2314,376,2005-08-06T19:47:39Z,1,2020-02-15T06:59:44Z +10811,2005-08-01T22:41:15Z,4012,209,2005-08-10T00:10:15Z,1,2020-02-15T06:59:44Z +10812,2005-08-01T22:41:16Z,3762,11,2005-08-07T00:50:16Z,1,2020-02-15T06:59:44Z +10813,2005-08-01T22:43:00Z,3580,456,2005-08-03T21:43:00Z,1,2020-02-15T06:59:44Z +10814,2005-08-01T22:43:12Z,2758,49,2005-08-05T02:35:12Z,2,2020-02-15T06:59:44Z +10815,2005-08-01T22:46:21Z,877,62,2005-08-03T02:43:21Z,2,2020-02-15T06:59:44Z +10816,2005-08-01T22:48:57Z,905,129,2005-08-10T04:39:57Z,2,2020-02-15T06:59:44Z +10817,2005-08-01T22:51:08Z,3056,501,2005-08-10T16:55:08Z,2,2020-02-15T06:59:44Z +10818,2005-08-01T22:52:45Z,4549,309,2005-08-06T04:07:45Z,1,2020-02-15T06:59:44Z +10819,2005-08-01T22:52:57Z,983,308,2005-08-06T00:08:57Z,1,2020-02-15T06:59:44Z +10820,2005-08-01T22:53:40Z,1487,97,2005-08-02T17:59:40Z,2,2020-02-15T06:59:44Z +10821,2005-08-01T22:54:27Z,2016,522,2005-08-07T02:15:27Z,2,2020-02-15T06:59:44Z +10822,2005-08-01T22:54:28Z,3895,343,2005-08-02T17:19:28Z,1,2020-02-15T06:59:44Z +10823,2005-08-01T22:59:10Z,3322,405,2005-08-08T23:44:10Z,1,2020-02-15T06:59:44Z +10824,2005-08-01T23:00:22Z,3948,482,2005-08-04T04:14:22Z,2,2020-02-15T06:59:44Z +10825,2005-08-01T23:05:33Z,4386,587,2005-08-04T04:33:33Z,1,2020-02-15T06:59:44Z +10826,2005-08-01T23:07:56Z,1228,476,2005-08-08T04:10:56Z,2,2020-02-15T06:59:44Z +10827,2005-08-01T23:13:00Z,1590,46,2005-08-08T02:51:00Z,1,2020-02-15T06:59:44Z +10828,2005-08-01T23:16:10Z,2448,471,2005-08-09T21:17:10Z,1,2020-02-15T06:59:44Z +10829,2005-08-01T23:17:06Z,168,554,2005-08-09T17:22:06Z,2,2020-02-15T06:59:44Z +10830,2005-08-01T23:18:06Z,4176,148,2005-08-06T23:15:06Z,2,2020-02-15T06:59:44Z +10831,2005-08-01T23:22:45Z,1496,78,2005-08-07T01:05:45Z,2,2020-02-15T06:59:44Z +10832,2005-08-01T23:24:53Z,4096,487,2005-08-06T23:18:53Z,1,2020-02-15T06:59:44Z +10833,2005-08-01T23:25:55Z,4380,422,2005-08-10T18:01:55Z,1,2020-02-15T06:59:44Z +10834,2005-08-01T23:28:00Z,2270,252,2005-08-07T01:21:00Z,1,2020-02-15T06:59:44Z +10835,2005-08-01T23:28:49Z,351,90,2005-08-10T21:28:49Z,2,2020-02-15T06:59:44Z +10836,2005-08-01T23:29:58Z,4534,217,2005-08-07T23:03:58Z,2,2020-02-15T06:59:44Z +10837,2005-08-01T23:30:22Z,1816,410,2005-08-07T23:02:22Z,1,2020-02-15T06:59:44Z +10838,2005-08-01T23:36:10Z,69,387,2005-08-05T04:55:10Z,2,2020-02-15T06:59:44Z +10839,2005-08-01T23:37:39Z,2867,482,2005-08-02T20:18:39Z,1,2020-02-15T06:59:44Z +10840,2005-08-01T23:38:34Z,583,593,2005-08-07T02:36:34Z,2,2020-02-15T06:59:44Z +10841,2005-08-01T23:39:21Z,4337,102,2005-08-07T20:47:21Z,1,2020-02-15T06:59:44Z +10842,2005-08-01T23:41:24Z,1300,137,2005-08-11T03:48:24Z,1,2020-02-15T06:59:44Z +10843,2005-08-01T23:43:03Z,1286,192,2005-08-09T23:49:03Z,2,2020-02-15T06:59:44Z +10844,2005-08-01T23:46:58Z,1516,333,2005-08-09T19:42:58Z,2,2020-02-15T06:59:44Z +10845,2005-08-01T23:47:03Z,2737,42,2005-08-08T01:57:03Z,1,2020-02-15T06:59:44Z +10846,2005-08-01T23:47:54Z,2277,441,2005-08-08T01:10:54Z,1,2020-02-15T06:59:44Z +10847,2005-08-01T23:49:33Z,1200,280,2005-08-10T05:37:33Z,2,2020-02-15T06:59:44Z +10848,2005-08-01T23:50:22Z,2630,368,2005-08-06T00:52:22Z,1,2020-02-15T06:59:44Z +10849,2005-08-01T23:51:00Z,1683,278,2005-08-10T19:59:00Z,2,2020-02-15T06:59:44Z +10850,2005-08-01T23:53:45Z,1853,199,2005-08-10T21:11:45Z,1,2020-02-15T06:59:44Z +10851,2005-08-01T23:58:45Z,1359,154,2005-08-04T00:59:45Z,1,2020-02-15T06:59:44Z +10852,2005-08-02T00:00:33Z,3862,27,2005-08-03T23:09:33Z,1,2020-02-15T06:59:44Z +10853,2005-08-02T00:00:54Z,2682,41,2005-08-10T05:37:54Z,2,2020-02-15T06:59:44Z +10854,2005-08-02T00:02:06Z,3295,356,2005-08-02T21:55:06Z,2,2020-02-15T06:59:44Z +10855,2005-08-02T00:06:37Z,1366,274,2005-08-03T00:39:37Z,1,2020-02-15T06:59:44Z +10856,2005-08-02T00:07:14Z,2010,451,2005-08-04T02:48:14Z,2,2020-02-15T06:59:44Z +10857,2005-08-02T00:07:20Z,2961,360,2005-08-04T02:35:20Z,1,2020-02-15T06:59:44Z +10858,2005-08-02T00:08:39Z,852,312,2005-08-05T00:58:39Z,2,2020-02-15T06:59:44Z +10859,2005-08-02T00:11:39Z,277,375,2005-08-08T19:52:39Z,1,2020-02-15T06:59:44Z +10860,2005-08-02T00:12:32Z,2827,25,2005-08-04T03:50:32Z,1,2020-02-15T06:59:44Z +10861,2005-08-02T00:12:46Z,2162,131,2005-08-09T04:09:46Z,2,2020-02-15T06:59:44Z +10862,2005-08-02T00:17:34Z,1077,176,2005-08-08T00:31:34Z,2,2020-02-15T06:59:44Z +10863,2005-08-02T00:18:07Z,1170,161,2005-08-10T06:16:07Z,2,2020-02-15T06:59:44Z +10864,2005-08-02T00:18:59Z,1694,134,2005-08-08T22:20:59Z,1,2020-02-15T06:59:44Z +10865,2005-08-02T00:22:46Z,1485,201,2005-08-09T05:08:46Z,2,2020-02-15T06:59:44Z +10866,2005-08-02T00:22:49Z,117,424,2005-08-07T04:38:49Z,1,2020-02-15T06:59:44Z +10867,2005-08-02T00:24:15Z,2577,473,2005-08-05T21:09:15Z,1,2020-02-15T06:59:44Z +10868,2005-08-02T00:25:15Z,2443,562,2005-08-10T02:31:15Z,2,2020-02-15T06:59:44Z +10869,2005-08-02T00:26:54Z,2967,568,2005-08-04T03:40:54Z,2,2020-02-15T06:59:44Z +10870,2005-08-02T00:27:12Z,1509,33,2005-08-02T20:00:12Z,2,2020-02-15T06:59:44Z +10871,2005-08-02T00:27:24Z,104,75,2005-08-05T06:25:24Z,1,2020-02-15T06:59:44Z +10872,2005-08-02T00:27:50Z,2470,84,2005-08-06T20:34:50Z,2,2020-02-15T06:59:44Z +10873,2005-08-02T00:30:34Z,169,506,2005-08-07T00:16:34Z,2,2020-02-15T06:59:44Z +10874,2005-08-02T00:31:00Z,2552,230,2005-08-07T05:04:00Z,1,2020-02-15T06:59:44Z +10875,2005-08-02T00:31:44Z,862,175,2005-08-05T22:24:44Z,2,2020-02-15T06:59:44Z +10876,2005-08-02T00:31:58Z,2161,559,2005-08-05T21:45:58Z,1,2020-02-15T06:59:44Z +10877,2005-08-02T00:32:04Z,3337,487,2005-08-07T19:44:04Z,2,2020-02-15T06:59:44Z +10878,2005-08-02T00:33:12Z,3511,45,2005-08-07T06:02:12Z,1,2020-02-15T06:59:44Z +10879,2005-08-02T00:33:20Z,4415,334,2005-08-09T04:13:20Z,2,2020-02-15T06:59:44Z +10880,2005-08-02T00:34:12Z,450,528,2005-08-06T21:15:12Z,2,2020-02-15T06:59:44Z +10881,2005-08-02T00:38:14Z,781,253,2005-08-09T22:02:14Z,2,2020-02-15T06:59:44Z +10882,2005-08-02T00:47:16Z,1349,54,2005-08-09T22:11:16Z,1,2020-02-15T06:59:44Z +10883,2005-08-02T00:47:19Z,4,301,2005-08-03T00:02:19Z,1,2020-02-15T06:59:44Z +10884,2005-08-02T00:47:33Z,3702,569,2005-08-03T04:38:33Z,1,2020-02-15T06:59:44Z +10885,2005-08-02T00:51:37Z,4223,493,2005-08-09T20:49:37Z,2,2020-02-15T06:59:44Z +10886,2005-08-02T00:52:34Z,943,77,2005-08-08T00:30:34Z,1,2020-02-15T06:59:44Z +10887,2005-08-02T00:52:35Z,3450,573,2005-08-03T05:37:35Z,1,2020-02-15T06:59:44Z +10888,2005-08-02T00:52:45Z,2412,428,2005-08-03T03:07:45Z,1,2020-02-15T06:59:44Z +10889,2005-08-02T00:54:33Z,2098,64,2005-08-07T19:42:33Z,1,2020-02-15T06:59:44Z +10890,2005-08-02T00:58:46Z,78,210,2005-08-10T02:13:46Z,1,2020-02-15T06:59:44Z +10891,2005-08-02T01:09:55Z,1269,201,2005-08-05T05:03:55Z,2,2020-02-15T06:59:44Z +10892,2005-08-02T01:12:06Z,3243,109,2005-08-09T23:53:06Z,1,2020-02-15T06:59:44Z +10893,2005-08-02T01:12:13Z,2529,306,2005-08-11T05:53:13Z,2,2020-02-15T06:59:44Z +10894,2005-08-02T01:12:35Z,598,51,2005-08-09T22:55:35Z,1,2020-02-15T06:59:44Z +10895,2005-08-02T01:16:59Z,93,77,2005-08-03T02:41:59Z,2,2020-02-15T06:59:44Z +10896,2005-08-02T01:19:33Z,2283,505,2005-08-08T06:54:33Z,1,2020-02-15T06:59:44Z +10897,2005-08-02T01:23:42Z,291,338,2005-08-03T23:27:42Z,1,2020-02-15T06:59:44Z +10898,2005-08-02T01:29:57Z,3814,23,2005-08-06T00:07:57Z,2,2020-02-15T06:59:44Z +10899,2005-08-02T01:30:21Z,859,29,2005-08-06T05:01:21Z,2,2020-02-15T06:59:44Z +10900,2005-08-02T01:34:26Z,1749,139,2005-08-07T00:52:26Z,2,2020-02-15T06:59:44Z +10901,2005-08-02T01:35:44Z,3813,290,2005-08-04T21:20:44Z,2,2020-02-15T06:59:44Z +10902,2005-08-02T01:35:46Z,3863,486,2005-08-09T01:59:46Z,1,2020-02-15T06:59:44Z +10903,2005-08-02T01:41:59Z,2696,547,2005-08-06T23:03:59Z,1,2020-02-15T06:59:44Z +10904,2005-08-02T01:43:02Z,3681,593,2005-08-04T04:34:02Z,1,2020-02-15T06:59:44Z +10905,2005-08-02T01:45:59Z,2835,439,2005-08-04T22:28:59Z,1,2020-02-15T06:59:44Z +10906,2005-08-02T01:47:04Z,3139,463,2005-08-07T20:41:04Z,2,2020-02-15T06:59:44Z +10907,2005-08-02T01:51:48Z,1430,561,2005-08-02T19:53:48Z,1,2020-02-15T06:59:44Z +10908,2005-08-02T01:53:06Z,1284,269,2005-08-04T02:46:06Z,2,2020-02-15T06:59:44Z +10909,2005-08-02T01:53:59Z,3516,413,2005-08-03T04:36:59Z,2,2020-02-15T06:59:44Z +10910,2005-08-02T01:54:34Z,2428,266,2005-08-10T04:04:34Z,2,2020-02-15T06:59:44Z +10911,2005-08-02T01:58:36Z,769,195,2005-08-08T07:37:36Z,2,2020-02-15T06:59:44Z +10912,2005-08-02T02:00:03Z,732,477,2005-08-06T05:55:03Z,1,2020-02-15T06:59:44Z +10913,2005-08-02T02:04:03Z,3388,565,2005-08-09T03:21:03Z,1,2020-02-15T06:59:44Z +10914,2005-08-02T02:04:43Z,585,584,2005-08-06T03:00:43Z,1,2020-02-15T06:59:44Z +10915,2005-08-02T02:05:04Z,4568,418,2005-08-10T21:58:04Z,2,2020-02-15T06:59:44Z +10916,2005-08-02T02:05:59Z,3841,25,2005-08-06T03:46:59Z,2,2020-02-15T06:59:44Z +10917,2005-08-02T02:06:18Z,3146,378,2005-08-03T22:42:18Z,1,2020-02-15T06:59:44Z +10918,2005-08-02T02:10:56Z,3418,2,2005-08-02T21:23:56Z,1,2020-02-15T06:59:44Z +10919,2005-08-02T02:11:03Z,868,115,2005-08-04T01:49:03Z,1,2020-02-15T06:59:44Z +10920,2005-08-02T02:14:10Z,3106,531,2005-08-06T23:36:10Z,1,2020-02-15T06:59:44Z +10921,2005-08-02T02:14:33Z,1820,555,2005-08-09T20:58:33Z,2,2020-02-15T06:59:44Z +10922,2005-08-02T02:14:40Z,4522,539,2005-08-06T06:04:40Z,1,2020-02-15T06:59:44Z +10923,2005-08-02T02:15:01Z,2602,239,2005-08-03T04:18:01Z,1,2020-02-15T06:59:44Z +10924,2005-08-02T02:20:19Z,589,540,2005-08-11T05:50:19Z,2,2020-02-15T06:59:44Z +10925,2005-08-02T02:24:38Z,1475,98,2005-08-03T05:06:38Z,1,2020-02-15T06:59:44Z +10926,2005-08-02T02:26:37Z,4016,460,2005-08-09T20:55:37Z,1,2020-02-15T06:59:44Z +10927,2005-08-02T02:31:15Z,4125,288,2005-08-10T20:41:15Z,1,2020-02-15T06:59:44Z +10928,2005-08-02T02:34:12Z,2885,211,2005-08-07T21:13:12Z,1,2020-02-15T06:59:44Z +10929,2005-08-02T02:35:44Z,913,305,2005-08-05T03:52:44Z,1,2020-02-15T06:59:44Z +10930,2005-08-02T02:38:07Z,2027,206,2005-08-08T05:15:07Z,2,2020-02-15T06:59:44Z +10931,2005-08-02T02:44:59Z,3268,545,2005-08-04T02:02:59Z,1,2020-02-15T06:59:44Z +10932,2005-08-02T02:46:22Z,1688,595,2005-08-06T01:49:22Z,2,2020-02-15T06:59:44Z +10933,2005-08-02T02:50:49Z,3970,313,2005-08-08T04:39:49Z,1,2020-02-15T06:59:44Z +10934,2005-08-02T02:52:18Z,4458,142,2005-08-06T01:23:18Z,2,2020-02-15T06:59:44Z +10935,2005-08-02T02:54:53Z,4373,42,2005-08-10T00:07:53Z,2,2020-02-15T06:59:44Z +10936,2005-08-02T02:55:04Z,463,445,2005-08-11T07:56:04Z,1,2020-02-15T06:59:44Z +10937,2005-08-02T03:00:18Z,1320,416,2005-08-11T03:44:18Z,2,2020-02-15T06:59:44Z +10938,2005-08-02T03:05:22Z,3918,502,2005-08-05T08:31:22Z,1,2020-02-15T06:59:44Z +10939,2005-08-02T03:06:20Z,2131,161,2005-08-04T01:22:20Z,2,2020-02-15T06:59:44Z +10940,2005-08-02T03:08:29Z,3760,120,2005-08-07T21:28:29Z,2,2020-02-15T06:59:44Z +10941,2005-08-02T03:11:33Z,2132,531,2005-08-10T07:31:33Z,1,2020-02-15T06:59:44Z +10942,2005-08-02T03:16:31Z,2304,78,2005-08-11T02:46:31Z,2,2020-02-15T06:59:44Z +10943,2005-08-02T03:17:29Z,1036,377,2005-08-03T00:50:29Z,2,2020-02-15T06:59:44Z +10944,2005-08-02T03:20:03Z,2373,470,2005-08-04T04:13:03Z,2,2020-02-15T06:59:44Z +10945,2005-08-02T03:20:23Z,3684,532,2005-08-09T03:23:23Z,1,2020-02-15T06:59:44Z +10946,2005-08-02T03:20:39Z,4271,56,2005-08-05T02:59:39Z,1,2020-02-15T06:59:44Z +10947,2005-08-02T03:23:17Z,2510,500,2005-08-07T05:25:17Z,1,2020-02-15T06:59:44Z +10948,2005-08-02T03:23:23Z,4429,220,2005-08-05T23:18:23Z,1,2020-02-15T06:59:44Z +10949,2005-08-02T03:24:04Z,2309,389,2005-08-06T08:36:04Z,2,2020-02-15T06:59:44Z +10950,2005-08-02T03:25:08Z,707,451,2005-08-07T23:11:08Z,2,2020-02-15T06:59:44Z +10951,2005-08-02T03:26:35Z,173,144,2005-08-07T22:03:35Z,1,2020-02-15T06:59:44Z +10952,2005-08-02T03:28:21Z,3218,111,2005-08-09T01:41:21Z,1,2020-02-15T06:59:44Z +10953,2005-08-02T03:28:38Z,1510,483,2005-08-11T03:53:38Z,1,2020-02-15T06:59:44Z +10954,2005-08-02T03:30:24Z,3406,20,2005-08-08T05:52:24Z,2,2020-02-15T06:59:44Z +10955,2005-08-02T03:32:34Z,618,490,2005-08-09T21:53:34Z,2,2020-02-15T06:59:44Z +10956,2005-08-02T03:33:14Z,4372,54,2005-08-09T09:20:14Z,2,2020-02-15T06:59:44Z +10957,2005-08-02T03:33:30Z,1652,447,2005-08-10T06:19:30Z,2,2020-02-15T06:59:44Z +10958,2005-08-02T03:37:13Z,2174,160,2005-08-04T23:28:13Z,2,2020-02-15T06:59:44Z +10959,2005-08-02T03:39:39Z,4233,431,2005-08-11T07:20:39Z,1,2020-02-15T06:59:44Z +10960,2005-08-02T03:46:18Z,3536,399,2005-08-11T01:29:18Z,1,2020-02-15T06:59:44Z +10961,2005-08-02T03:47:55Z,1416,375,2005-08-09T02:03:55Z,1,2020-02-15T06:59:44Z +10962,2005-08-02T03:48:13Z,1953,538,2005-08-07T00:04:13Z,1,2020-02-15T06:59:44Z +10963,2005-08-02T03:48:17Z,4501,36,2005-08-02T22:15:17Z,1,2020-02-15T06:59:44Z +10964,2005-08-02T03:56:23Z,2356,36,2005-08-09T23:11:23Z,2,2020-02-15T06:59:44Z +10965,2005-08-02T04:00:19Z,2192,580,2005-08-09T03:27:19Z,1,2020-02-15T06:59:44Z +10966,2005-08-02T04:00:47Z,478,584,2005-08-08T01:58:47Z,2,2020-02-15T06:59:44Z +10967,2005-08-02T04:02:16Z,683,149,2005-08-09T07:57:16Z,1,2020-02-15T06:59:44Z +10968,2005-08-02T04:03:13Z,888,234,2005-08-11T08:36:13Z,1,2020-02-15T06:59:44Z +10969,2005-08-02T04:04:32Z,1898,244,2005-08-09T23:18:32Z,1,2020-02-15T06:59:44Z +10970,2005-08-02T04:06:46Z,1202,260,2005-08-10T04:27:46Z,1,2020-02-15T06:59:44Z +10971,2005-08-02T04:08:17Z,2789,383,2005-08-09T00:02:17Z,1,2020-02-15T06:59:44Z +10972,2005-08-02T04:08:25Z,1928,348,2005-08-09T23:25:25Z,1,2020-02-15T06:59:44Z +10973,2005-08-02T04:09:42Z,3562,127,2005-08-08T05:24:42Z,2,2020-02-15T06:59:44Z +10974,2005-08-02T04:10:52Z,690,491,2005-08-09T08:26:52Z,1,2020-02-15T06:59:44Z +10975,2005-08-02T04:11:25Z,2616,361,2005-08-04T04:39:25Z,2,2020-02-15T06:59:44Z +10976,2005-08-02T04:11:48Z,2418,326,2005-08-06T06:30:48Z,2,2020-02-15T06:59:44Z +10977,2005-08-02T04:12:17Z,2302,300,2005-08-06T06:52:17Z,2,2020-02-15T06:59:44Z +10978,2005-08-02T04:12:27Z,1597,487,2005-08-10T08:19:27Z,2,2020-02-15T06:59:44Z +10979,2005-08-02T04:16:37Z,2625,160,2005-08-06T00:01:37Z,2,2020-02-15T06:59:44Z +10980,2005-08-02T04:17:32Z,150,547,2005-08-04T05:12:32Z,1,2020-02-15T06:59:44Z +10981,2005-08-02T04:17:53Z,3699,305,2005-08-09T03:45:53Z,2,2020-02-15T06:59:44Z +10982,2005-08-02T04:19:11Z,2508,345,2005-08-04T00:20:11Z,2,2020-02-15T06:59:44Z +10983,2005-08-02T04:24:23Z,4502,380,2005-08-09T08:05:23Z,2,2020-02-15T06:59:44Z +10984,2005-08-02T04:30:02Z,1813,450,2005-08-10T02:51:02Z,1,2020-02-15T06:59:44Z +10985,2005-08-02T04:30:19Z,2734,186,2005-08-03T05:18:19Z,1,2020-02-15T06:59:44Z +10986,2005-08-02T04:35:24Z,555,597,2005-08-09T07:34:24Z,2,2020-02-15T06:59:44Z +10987,2005-08-02T04:36:52Z,968,349,2005-08-04T00:03:52Z,1,2020-02-15T06:59:44Z +10988,2005-08-02T04:38:17Z,1157,509,2005-08-09T00:09:17Z,1,2020-02-15T06:59:44Z +10989,2005-08-02T04:40:54Z,2272,7,2005-08-09T03:39:54Z,2,2020-02-15T06:59:44Z +10990,2005-08-02T04:41:06Z,262,111,2005-08-10T05:02:06Z,2,2020-02-15T06:59:44Z +10991,2005-08-02T04:41:12Z,2854,77,2005-08-05T05:36:12Z,2,2020-02-15T06:59:44Z +10992,2005-08-02T04:41:17Z,11,180,2005-08-09T02:13:17Z,1,2020-02-15T06:59:44Z +10993,2005-08-02T04:45:01Z,292,383,2005-08-04T03:32:01Z,1,2020-02-15T06:59:44Z +10994,2005-08-02T04:46:53Z,647,323,2005-08-11T10:30:53Z,1,2020-02-15T06:59:44Z +10995,2005-08-02T04:48:00Z,2891,340,2005-08-07T05:00:00Z,1,2020-02-15T06:59:44Z +10996,2005-08-02T04:48:11Z,2235,26,2005-08-06T08:00:11Z,1,2020-02-15T06:59:44Z +10997,2005-08-02T04:49:02Z,300,334,2005-08-10T08:13:02Z,2,2020-02-15T06:59:44Z +10998,2005-08-02T04:50:55Z,1479,435,2005-08-11T03:43:55Z,1,2020-02-15T06:59:44Z +10999,2005-08-02T04:53:13Z,2013,227,2005-08-06T04:36:13Z,2,2020-02-15T06:59:44Z +11000,2005-08-02T04:56:14Z,264,265,2005-08-07T01:39:14Z,2,2020-02-15T06:59:44Z +11001,2005-08-02T04:56:45Z,3701,5,2005-08-11T08:04:45Z,1,2020-02-15T06:59:44Z +11002,2005-08-02T05:02:56Z,3073,583,2005-08-05T07:04:56Z,2,2020-02-15T06:59:44Z +11003,2005-08-02T05:03:05Z,4301,272,2005-08-05T10:48:05Z,2,2020-02-15T06:59:44Z +11004,2005-08-02T05:04:18Z,200,45,2005-08-11T00:03:18Z,2,2020-02-15T06:59:44Z +11005,2005-08-02T05:05:23Z,1547,216,2005-08-07T23:28:23Z,2,2020-02-15T06:59:44Z +11006,2005-08-02T05:05:52Z,2776,473,2005-08-05T03:33:52Z,1,2020-02-15T06:59:44Z +11007,2005-08-02T05:05:53Z,4172,98,2005-08-05T01:56:53Z,2,2020-02-15T06:59:44Z +11008,2005-08-02T05:06:17Z,2831,375,2005-08-10T01:22:17Z,2,2020-02-15T06:59:44Z +11009,2005-08-02T05:06:23Z,2574,596,2005-08-08T03:02:23Z,1,2020-02-15T06:59:44Z +11010,2005-08-02T05:06:27Z,869,326,2005-08-03T23:47:27Z,2,2020-02-15T06:59:44Z +11011,2005-08-02T05:07:07Z,3981,256,2005-08-09T07:16:07Z,1,2020-02-15T06:59:44Z +11012,2005-08-02T05:09:42Z,542,162,2005-08-05T07:22:42Z,2,2020-02-15T06:59:44Z +11013,2005-08-02T05:10:54Z,2993,527,2005-08-10T08:59:54Z,1,2020-02-15T06:59:44Z +11014,2005-08-02T05:12:22Z,393,269,2005-08-07T09:33:22Z,1,2020-02-15T06:59:44Z +11015,2005-08-02T05:13:00Z,4331,138,2005-08-08T04:18:00Z,2,2020-02-15T06:59:44Z +11016,2005-08-02T05:19:13Z,4446,116,2005-08-05T05:31:13Z,1,2020-02-15T06:59:44Z +11017,2005-08-02T05:19:51Z,4140,480,2005-08-09T00:36:51Z,2,2020-02-15T06:59:44Z +11018,2005-08-02T05:27:53Z,2988,197,2005-08-07T10:48:53Z,1,2020-02-15T06:59:44Z +11019,2005-08-02T05:29:31Z,3227,112,2005-08-04T00:42:31Z,1,2020-02-15T06:59:44Z +11020,2005-08-02T05:29:48Z,1645,242,2005-08-06T05:36:48Z,2,2020-02-15T06:59:44Z +11021,2005-08-02T05:30:11Z,2069,385,2005-08-05T05:50:11Z,2,2020-02-15T06:59:44Z +11022,2005-08-02T05:35:03Z,827,206,2005-08-09T10:20:03Z,2,2020-02-15T06:59:44Z +11023,2005-08-02T05:36:38Z,3617,6,2005-08-10T05:39:38Z,1,2020-02-15T06:59:44Z +11024,2005-08-02T05:38:31Z,2284,427,2005-08-11T04:47:31Z,1,2020-02-15T06:59:44Z +11025,2005-08-02T05:39:12Z,2253,419,2005-08-08T00:09:12Z,2,2020-02-15T06:59:44Z +11026,2005-08-02T05:46:05Z,3554,531,2005-08-07T06:27:05Z,2,2020-02-15T06:59:44Z +11027,2005-08-02T05:47:10Z,571,412,2005-08-05T23:51:10Z,1,2020-02-15T06:59:44Z +11028,2005-08-02T05:48:20Z,2764,66,2005-08-10T11:21:20Z,1,2020-02-15T06:59:44Z +11029,2005-08-02T05:51:10Z,1023,45,2005-08-05T04:15:10Z,1,2020-02-15T06:59:44Z +11030,2005-08-02T05:51:20Z,1437,569,2005-08-06T04:20:20Z,1,2020-02-15T06:59:44Z +11031,2005-08-02T05:52:58Z,1205,361,2005-08-07T07:14:58Z,2,2020-02-15T06:59:44Z +11032,2005-08-02T05:53:35Z,1119,359,2005-08-05T02:58:35Z,2,2020-02-15T06:59:44Z +11033,2005-08-02T05:54:17Z,3323,155,2005-08-09T10:50:17Z,2,2020-02-15T06:59:44Z +11034,2005-08-02T05:54:53Z,2939,586,2005-08-09T04:14:53Z,1,2020-02-15T06:59:44Z +11035,2005-08-02T05:55:39Z,3776,305,2005-08-08T06:46:39Z,2,2020-02-15T06:59:44Z +11036,2005-08-02T05:56:29Z,2054,502,2005-08-05T05:00:29Z,2,2020-02-15T06:59:44Z +11037,2005-08-02T05:58:12Z,4291,220,2005-08-07T11:26:12Z,1,2020-02-15T06:59:44Z +11038,2005-08-02T05:59:42Z,4452,403,2005-08-08T04:37:42Z,2,2020-02-15T06:59:44Z +11039,2005-08-02T06:00:53Z,549,170,2005-08-05T06:19:53Z,2,2020-02-15T06:59:44Z +11040,2005-08-02T06:03:22Z,2297,223,2005-08-03T07:58:22Z,1,2020-02-15T06:59:44Z +11041,2005-08-02T06:03:53Z,1897,435,2005-08-03T11:57:53Z,1,2020-02-15T06:59:44Z +11042,2005-08-02T06:04:33Z,4149,439,2005-08-11T01:30:33Z,1,2020-02-15T06:59:44Z +11043,2005-08-02T06:04:44Z,65,573,2005-08-06T11:37:44Z,1,2020-02-15T06:59:44Z +11044,2005-08-02T06:05:27Z,2922,122,2005-08-06T05:15:27Z,1,2020-02-15T06:59:44Z +11045,2005-08-02T06:07:54Z,2214,402,2005-08-08T00:37:54Z,1,2020-02-15T06:59:44Z +11046,2005-08-02T06:08:34Z,2105,526,2005-08-06T08:45:34Z,2,2020-02-15T06:59:44Z +11047,2005-08-02T06:09:20Z,2267,416,2005-08-11T08:36:20Z,1,2020-02-15T06:59:44Z +11048,2005-08-02T06:15:07Z,206,491,2005-08-04T02:47:07Z,2,2020-02-15T06:59:44Z +11049,2005-08-02T06:15:40Z,4352,38,2005-08-11T10:09:40Z,2,2020-02-15T06:59:44Z +11050,2005-08-02T06:17:16Z,2077,234,2005-08-09T05:58:16Z,1,2020-02-15T06:59:44Z +11051,2005-08-02T06:23:39Z,4189,446,2005-08-06T06:46:39Z,2,2020-02-15T06:59:44Z +11052,2005-08-02T06:26:19Z,1089,331,2005-08-06T04:20:19Z,2,2020-02-15T06:59:44Z +11053,2005-08-02T06:27:13Z,2599,50,2005-08-09T11:24:13Z,2,2020-02-15T06:59:44Z +11054,2005-08-02T06:33:07Z,728,577,2005-08-10T02:52:07Z,2,2020-02-15T06:59:44Z +11055,2005-08-02T06:36:05Z,3851,182,2005-08-06T00:36:05Z,1,2020-02-15T06:59:44Z +11056,2005-08-02T06:36:27Z,1404,88,2005-08-10T06:02:27Z,1,2020-02-15T06:59:44Z +11057,2005-08-02T06:38:19Z,3143,137,2005-08-11T03:43:19Z,1,2020-02-15T06:59:44Z +11058,2005-08-02T06:38:44Z,3270,274,2005-08-06T06:45:44Z,1,2020-02-15T06:59:44Z +11059,2005-08-02T06:41:38Z,428,189,2005-08-09T04:34:38Z,1,2020-02-15T06:59:44Z +11060,2005-08-02T06:48:18Z,3395,496,2005-08-10T11:49:18Z,1,2020-02-15T06:59:44Z +11061,2005-08-02T06:50:18Z,809,245,2005-08-07T07:41:18Z,2,2020-02-15T06:59:44Z +11062,2005-08-02T06:52:54Z,2014,346,2005-08-07T10:59:54Z,1,2020-02-15T06:59:44Z +11063,2005-08-02T06:53:48Z,2261,461,2005-08-05T03:38:48Z,2,2020-02-15T06:59:44Z +11064,2005-08-02T06:55:17Z,3012,338,2005-08-06T03:29:17Z,1,2020-02-15T06:59:44Z +11065,2005-08-02T06:57:55Z,2226,357,2005-08-06T01:31:55Z,2,2020-02-15T06:59:44Z +11066,2005-08-02T06:58:32Z,4213,373,2005-08-10T01:27:32Z,2,2020-02-15T06:59:44Z +11067,2005-08-02T07:03:24Z,965,85,2005-08-10T08:59:24Z,2,2020-02-15T06:59:44Z +11068,2005-08-02T07:08:07Z,1262,52,2005-08-09T11:15:07Z,2,2020-02-15T06:59:44Z +11069,2005-08-02T07:09:34Z,57,4,2005-08-08T08:39:34Z,1,2020-02-15T06:59:44Z +11070,2005-08-02T07:10:39Z,4020,298,2005-08-03T07:43:39Z,1,2020-02-15T06:59:44Z +11071,2005-08-02T07:10:53Z,4264,294,2005-08-07T09:58:53Z,1,2020-02-15T06:59:44Z +11072,2005-08-02T07:10:57Z,3078,21,2005-08-04T07:42:57Z,1,2020-02-15T06:59:44Z +11073,2005-08-02T07:13:03Z,4232,234,2005-08-03T05:46:03Z,1,2020-02-15T06:59:44Z +11074,2005-08-02T07:21:43Z,1439,277,2005-08-08T05:18:43Z,1,2020-02-15T06:59:44Z +11075,2005-08-02T07:24:23Z,3027,503,2005-08-08T04:55:23Z,1,2020-02-15T06:59:44Z +11076,2005-08-02T07:24:47Z,837,211,2005-08-10T09:16:47Z,1,2020-02-15T06:59:44Z +11077,2005-08-02T07:26:43Z,4254,158,2005-08-09T10:34:43Z,2,2020-02-15T06:59:44Z +11078,2005-08-02T07:26:58Z,2362,587,2005-08-07T01:59:58Z,2,2020-02-15T06:59:44Z +11079,2005-08-02T07:29:10Z,3185,29,2005-08-07T01:59:10Z,2,2020-02-15T06:59:44Z +11080,2005-08-02T07:29:56Z,4303,571,2005-08-08T05:58:56Z,1,2020-02-15T06:59:44Z +11081,2005-08-02T07:30:14Z,3804,513,2005-08-09T08:50:14Z,1,2020-02-15T06:59:44Z +11082,2005-08-02T07:30:19Z,3037,190,2005-08-07T05:20:19Z,2,2020-02-15T06:59:44Z +11083,2005-08-02T07:32:01Z,4395,295,2005-08-08T02:23:01Z,1,2020-02-15T06:59:44Z +11084,2005-08-02T07:34:19Z,32,369,2005-08-07T09:30:19Z,1,2020-02-15T06:59:44Z +11085,2005-08-02T07:36:44Z,3207,276,2005-08-04T03:32:44Z,1,2020-02-15T06:59:44Z +11086,2005-08-02T07:38:44Z,552,371,2005-08-11T06:30:44Z,1,2020-02-15T06:59:44Z +11087,2005-08-02T07:41:41Z,654,2,2005-08-10T10:37:41Z,2,2020-02-15T06:59:44Z +11088,2005-08-02T07:48:31Z,2739,138,2005-08-05T08:09:31Z,2,2020-02-15T06:59:44Z +11089,2005-08-02T07:52:20Z,825,421,2005-08-07T07:24:20Z,1,2020-02-15T06:59:44Z +11090,2005-08-02T07:56:40Z,2743,89,2005-08-10T07:58:40Z,1,2020-02-15T06:59:44Z +11091,2005-08-02T07:56:41Z,1659,423,2005-08-07T05:35:41Z,2,2020-02-15T06:59:44Z +11092,2005-08-02T07:58:50Z,569,60,2005-08-04T03:23:50Z,2,2020-02-15T06:59:44Z +11093,2005-08-02T07:59:49Z,239,82,2005-08-11T06:01:49Z,1,2020-02-15T06:59:44Z +11094,2005-08-02T08:03:02Z,3095,18,2005-08-03T11:34:02Z,1,2020-02-15T06:59:44Z +11095,2005-08-02T08:03:20Z,3517,278,2005-08-10T05:20:20Z,1,2020-02-15T06:59:44Z +11096,2005-08-02T08:05:19Z,1436,34,2005-08-04T07:28:19Z,2,2020-02-15T06:59:44Z +11097,2005-08-02T08:05:46Z,2493,575,2005-08-10T12:00:46Z,2,2020-02-15T06:59:44Z +11098,2005-08-02T08:06:18Z,158,570,2005-08-11T04:50:18Z,2,2020-02-15T06:59:44Z +11099,2005-08-02T08:07:12Z,1444,102,2005-08-07T12:11:12Z,2,2020-02-15T06:59:44Z +11100,2005-08-02T08:08:00Z,3047,65,2005-08-10T07:19:00Z,1,2020-02-15T06:59:44Z +11101,2005-08-02T08:08:24Z,2621,80,2005-08-06T05:55:24Z,1,2020-02-15T06:59:44Z +11102,2005-08-02T08:08:30Z,3112,73,2005-08-04T09:16:30Z,1,2020-02-15T06:59:44Z +11103,2005-08-02T08:09:54Z,1879,158,2005-08-07T12:05:54Z,1,2020-02-15T06:59:44Z +11104,2005-08-02T08:09:58Z,3042,196,2005-08-05T11:55:58Z,1,2020-02-15T06:59:44Z +11105,2005-08-02T08:13:31Z,3170,245,2005-08-03T11:08:31Z,1,2020-02-15T06:59:44Z +11106,2005-08-02T08:17:38Z,2307,287,2005-08-03T07:54:38Z,1,2020-02-15T06:59:44Z +11107,2005-08-02T08:19:38Z,2217,410,2005-08-07T08:46:38Z,2,2020-02-15T06:59:44Z +11108,2005-08-02T08:20:01Z,560,447,2005-08-03T13:22:01Z,2,2020-02-15T06:59:44Z +11109,2005-08-02T08:20:29Z,2683,479,2005-08-09T11:35:29Z,2,2020-02-15T06:59:44Z +11110,2005-08-02T08:20:31Z,4311,4,2005-08-04T05:06:31Z,2,2020-02-15T06:59:44Z +11111,2005-08-02T08:21:27Z,334,378,2005-08-06T07:48:27Z,2,2020-02-15T06:59:44Z +11112,2005-08-02T08:25:14Z,526,207,2005-08-03T08:41:14Z,1,2020-02-15T06:59:44Z +11113,2005-08-02T08:26:24Z,1654,231,2005-08-07T09:24:24Z,2,2020-02-15T06:59:44Z +11114,2005-08-02T08:26:45Z,1273,572,2005-08-03T08:41:45Z,2,2020-02-15T06:59:44Z +11115,2005-08-02T08:31:06Z,3812,408,2005-08-04T02:36:06Z,2,2020-02-15T06:59:44Z +11116,2005-08-02T08:34:40Z,434,344,2005-08-09T04:56:40Z,1,2020-02-15T06:59:44Z +11117,2005-08-02T08:36:03Z,1613,474,2005-08-05T06:56:03Z,2,2020-02-15T06:59:44Z +11118,2005-08-02T08:44:18Z,2411,15,2005-08-05T08:08:18Z,2,2020-02-15T06:59:44Z +11119,2005-08-02T08:44:44Z,4307,489,2005-08-10T11:32:44Z,2,2020-02-15T06:59:44Z +11120,2005-08-02T08:47:04Z,4185,322,2005-08-05T05:33:04Z,1,2020-02-15T06:59:44Z +11121,2005-08-02T08:48:31Z,1025,572,2005-08-04T05:08:31Z,2,2020-02-15T06:59:44Z +11122,2005-08-02T08:49:09Z,3021,383,2005-08-08T04:33:09Z,1,2020-02-15T06:59:44Z +11123,2005-08-02T08:54:17Z,1926,150,2005-08-09T11:11:17Z,2,2020-02-15T06:59:44Z +11124,2005-08-02T08:55:25Z,698,249,2005-08-10T10:59:25Z,1,2020-02-15T06:59:44Z +11125,2005-08-02T08:55:35Z,2081,237,2005-08-03T09:12:35Z,1,2020-02-15T06:59:44Z +11126,2005-08-02T08:59:04Z,3310,47,2005-08-04T11:00:04Z,1,2020-02-15T06:59:44Z +11127,2005-08-02T09:00:59Z,1106,351,2005-08-05T11:54:59Z,2,2020-02-15T06:59:44Z +11128,2005-08-02T09:03:25Z,3472,386,2005-08-09T04:36:25Z,1,2020-02-15T06:59:44Z +11129,2005-08-02T09:08:44Z,23,566,2005-08-04T04:00:44Z,1,2020-02-15T06:59:44Z +11130,2005-08-02T09:08:59Z,684,329,2005-08-09T07:50:59Z,2,2020-02-15T06:59:44Z +11131,2005-08-02T09:10:04Z,1860,293,2005-08-08T09:59:04Z,2,2020-02-15T06:59:44Z +11132,2005-08-02T09:14:09Z,2212,398,2005-08-08T06:39:09Z,1,2020-02-15T06:59:44Z +11133,2005-08-02T09:15:45Z,675,120,2005-08-04T10:39:45Z,1,2020-02-15T06:59:44Z +11134,2005-08-02T09:19:22Z,2641,372,2005-08-11T03:56:22Z,1,2020-02-15T06:59:44Z +11135,2005-08-02T09:22:25Z,799,32,2005-08-04T14:30:25Z,2,2020-02-15T06:59:44Z +11136,2005-08-02T09:22:57Z,1315,559,2005-08-08T14:12:57Z,2,2020-02-15T06:59:44Z +11137,2005-08-02T09:25:31Z,2500,310,2005-08-08T08:10:31Z,1,2020-02-15T06:59:44Z +11138,2005-08-02T09:26:16Z,4250,458,2005-08-11T07:50:16Z,2,2020-02-15T06:59:44Z +11139,2005-08-02T09:27:36Z,1011,236,2005-08-08T14:07:36Z,2,2020-02-15T06:59:44Z +11140,2005-08-02T09:27:45Z,3836,132,2005-08-05T04:10:45Z,1,2020-02-15T06:59:44Z +11141,2005-08-02T09:29:11Z,1614,15,2005-08-04T07:50:11Z,1,2020-02-15T06:59:44Z +11142,2005-08-02T09:30:11Z,2954,306,2005-08-05T06:52:11Z,1,2020-02-15T06:59:44Z +11143,2005-08-02T09:32:54Z,3382,100,2005-08-05T12:04:54Z,2,2020-02-15T06:59:44Z +11144,2005-08-02T09:39:17Z,2724,376,2005-08-03T11:53:17Z,2,2020-02-15T06:59:44Z +11145,2005-08-02T09:43:24Z,1270,291,2005-08-05T15:29:24Z,1,2020-02-15T06:59:44Z +11146,2005-08-02T09:45:32Z,2488,552,2005-08-07T07:33:32Z,1,2020-02-15T06:59:44Z +11147,2005-08-02T09:45:54Z,1562,597,2005-08-07T07:28:54Z,1,2020-02-15T06:59:44Z +11148,2005-08-02T09:47:08Z,2991,230,2005-08-08T10:57:08Z,1,2020-02-15T06:59:44Z +11149,2005-08-02T09:51:43Z,3254,358,2005-08-11T09:40:43Z,2,2020-02-15T06:59:44Z +11150,2005-08-02T09:51:46Z,2193,527,2005-08-05T09:03:46Z,2,2020-02-15T06:59:44Z +11151,2005-08-02T09:52:44Z,3939,391,2005-08-05T06:29:44Z,2,2020-02-15T06:59:44Z +11152,2005-08-02T09:53:36Z,3887,494,2005-08-11T14:58:36Z,1,2020-02-15T06:59:44Z +11153,2005-08-02T09:54:19Z,1546,220,2005-08-10T14:57:19Z,1,2020-02-15T06:59:44Z +11154,2005-08-02T09:54:50Z,697,160,2005-08-06T14:48:50Z,2,2020-02-15T06:59:44Z +11155,2005-08-02T09:55:28Z,2001,73,2005-08-03T06:00:28Z,2,2020-02-15T06:59:44Z +11156,2005-08-02T09:56:06Z,907,465,2005-08-04T13:36:06Z,2,2020-02-15T06:59:44Z +11157,2005-08-02T09:58:15Z,1313,244,2005-08-06T04:23:15Z,2,2020-02-15T06:59:44Z +11158,2005-08-02T09:58:28Z,530,190,2005-08-10T13:54:28Z,2,2020-02-15T06:59:44Z +11159,2005-08-02T10:00:55Z,4575,249,2005-08-05T10:38:55Z,1,2020-02-15T06:59:44Z +11160,2005-08-02T10:05:30Z,3260,436,2005-08-07T08:30:30Z,1,2020-02-15T06:59:44Z +11161,2005-08-02T10:05:57Z,3321,503,2005-08-06T05:05:57Z,2,2020-02-15T06:59:44Z +11162,2005-08-02T10:07:54Z,1809,277,2005-08-05T11:35:54Z,2,2020-02-15T06:59:44Z +11163,2005-08-02T10:08:40Z,1925,505,2005-08-05T14:59:40Z,1,2020-02-15T06:59:44Z +11164,2005-08-02T10:10:56Z,4450,580,2005-08-10T11:20:56Z,2,2020-02-15T06:59:44Z +11165,2005-08-02T10:12:17Z,2059,513,2005-08-04T11:09:17Z,1,2020-02-15T06:59:44Z +11166,2005-08-02T10:14:58Z,638,11,2005-08-11T11:43:58Z,1,2020-02-15T06:59:44Z +11167,2005-08-02T10:15:51Z,148,451,2005-08-09T09:18:51Z,1,2020-02-15T06:59:44Z +11168,2005-08-02T10:19:42Z,468,555,2005-08-04T08:42:42Z,1,2020-02-15T06:59:44Z +11169,2005-08-02T10:19:42Z,2392,329,2005-08-07T05:45:42Z,1,2020-02-15T06:59:44Z +11170,2005-08-02T10:21:53Z,1333,547,2005-08-08T11:08:53Z,1,2020-02-15T06:59:44Z +11171,2005-08-02T10:23:41Z,3117,339,2005-08-04T14:22:41Z,2,2020-02-15T06:59:44Z +11172,2005-08-02T10:27:52Z,1207,76,2005-08-11T12:47:52Z,1,2020-02-15T06:59:44Z +11173,2005-08-02T10:28:00Z,4296,146,2005-08-10T14:53:00Z,1,2020-02-15T06:59:44Z +11174,2005-08-02T10:32:11Z,1551,328,2005-08-09T12:30:11Z,1,2020-02-15T06:59:44Z +11175,2005-08-02T10:38:47Z,85,164,2005-08-07T07:11:47Z,2,2020-02-15T06:59:44Z +11176,2005-08-02T10:39:43Z,1448,37,2005-08-09T14:42:43Z,2,2020-02-15T06:59:44Z +11177,2005-08-02T10:43:48Z,1149,2,2005-08-10T10:55:48Z,2,2020-02-15T06:59:44Z +11178,2005-08-02T10:48:10Z,2613,342,2005-08-06T06:07:10Z,1,2020-02-15T06:59:44Z +11179,2005-08-02T10:50:06Z,4376,5,2005-08-04T05:24:06Z,1,2020-02-15T06:59:44Z +11180,2005-08-02T10:54:30Z,3632,534,2005-08-11T15:55:30Z,1,2020-02-15T06:59:44Z +11181,2005-08-02T10:55:03Z,3127,557,2005-08-07T10:43:03Z,1,2020-02-15T06:59:44Z +11182,2005-08-02T10:55:14Z,605,54,2005-08-06T05:58:14Z,1,2020-02-15T06:59:44Z +11183,2005-08-02T11:00:32Z,833,102,2005-08-04T08:59:32Z,2,2020-02-15T06:59:44Z +11184,2005-08-02T11:01:26Z,871,259,2005-08-11T06:29:26Z,1,2020-02-15T06:59:44Z +11185,2005-08-02T11:04:35Z,1215,469,2005-08-05T13:48:35Z,2,2020-02-15T06:59:44Z +11186,2005-08-02T11:12:08Z,733,353,2005-08-03T10:46:08Z,1,2020-02-15T06:59:44Z +11187,2005-08-02T11:16:19Z,3626,410,2005-08-11T06:11:19Z,1,2020-02-15T06:59:44Z +11188,2005-08-02T11:17:11Z,1372,485,2005-08-08T16:46:11Z,2,2020-02-15T06:59:44Z +11189,2005-08-02T11:17:23Z,729,565,2005-08-09T16:30:23Z,2,2020-02-15T06:59:44Z +11190,2005-08-02T11:21:34Z,922,254,2005-08-05T05:23:34Z,1,2020-02-15T06:59:44Z +11191,2005-08-02T11:24:07Z,1097,571,2005-08-10T10:39:07Z,1,2020-02-15T06:59:44Z +11192,2005-08-02T11:29:41Z,1998,349,2005-08-07T06:01:41Z,2,2020-02-15T06:59:44Z +11193,2005-08-02T11:31:33Z,2246,292,2005-08-04T14:00:33Z,1,2020-02-15T06:59:44Z +11194,2005-08-02T11:35:53Z,2732,135,2005-08-10T11:28:53Z,1,2020-02-15T06:59:44Z +11195,2005-08-02T11:42:23Z,4359,177,2005-08-03T08:29:23Z,1,2020-02-15T06:59:44Z +11196,2005-08-02T11:42:40Z,2648,126,2005-08-10T11:58:40Z,2,2020-02-15T06:59:44Z +11197,2005-08-02T11:45:07Z,3041,122,2005-08-03T09:07:07Z,1,2020-02-15T06:59:44Z +11198,2005-08-02T11:45:15Z,2908,540,2005-08-10T11:42:15Z,2,2020-02-15T06:59:44Z +11199,2005-08-02T11:47:40Z,3926,578,2005-08-10T06:52:40Z,2,2020-02-15T06:59:44Z +11200,2005-08-02T11:48:36Z,2730,98,2005-08-07T08:35:36Z,2,2020-02-15T06:59:44Z +11201,2005-08-02T11:49:16Z,1501,195,2005-08-11T08:39:16Z,1,2020-02-15T06:59:44Z +11202,2005-08-02T11:51:57Z,3625,231,2005-08-08T09:41:57Z,1,2020-02-15T06:59:44Z +11203,2005-08-02T11:52:41Z,4520,92,2005-08-10T15:52:41Z,2,2020-02-15T06:59:44Z +11204,2005-08-02T11:56:31Z,3578,247,2005-08-06T14:16:31Z,2,2020-02-15T06:59:44Z +11205,2005-08-02T11:56:54Z,4321,552,2005-08-05T08:24:54Z,1,2020-02-15T06:59:44Z +11206,2005-08-02T11:58:03Z,4131,72,2005-08-07T12:36:03Z,2,2020-02-15T06:59:44Z +11207,2005-08-02T12:01:30Z,4470,481,2005-08-05T07:56:30Z,1,2020-02-15T06:59:44Z +11208,2005-08-02T12:02:37Z,4566,320,2005-08-05T10:56:37Z,1,2020-02-15T06:59:44Z +11209,2005-08-02T12:09:45Z,3219,24,2005-08-07T08:52:45Z,1,2020-02-15T06:59:44Z +11210,2005-08-02T12:15:54Z,422,202,2005-08-04T16:18:54Z,2,2020-02-15T06:59:44Z +11211,2005-08-02T12:16:48Z,1722,245,2005-08-03T10:40:48Z,1,2020-02-15T06:59:44Z +11212,2005-08-02T12:18:29Z,4007,343,2005-08-05T16:05:29Z,2,2020-02-15T06:59:44Z +11213,2005-08-02T12:18:35Z,1007,584,2005-08-05T08:44:35Z,2,2020-02-15T06:59:44Z +11214,2005-08-02T12:19:50Z,2722,407,2005-08-11T06:38:50Z,1,2020-02-15T06:59:44Z +11215,2005-08-02T12:20:42Z,379,197,2005-08-06T14:01:42Z,1,2020-02-15T06:59:44Z +11216,2005-08-02T12:23:43Z,1109,473,2005-08-03T13:19:43Z,1,2020-02-15T06:59:44Z +11217,2005-08-02T12:26:31Z,1201,417,2005-08-09T09:53:31Z,2,2020-02-15T06:59:44Z +11218,2005-08-02T12:29:12Z,1126,500,2005-08-10T16:13:12Z,2,2020-02-15T06:59:44Z +11219,2005-08-02T12:30:20Z,2889,461,2005-08-08T13:42:20Z,2,2020-02-15T06:59:44Z +11220,2005-08-02T12:31:41Z,3777,84,2005-08-05T08:23:41Z,2,2020-02-15T06:59:44Z +11221,2005-08-02T12:32:12Z,1689,146,2005-08-03T17:13:12Z,1,2020-02-15T06:59:44Z +11222,2005-08-02T12:32:28Z,1780,407,2005-08-11T18:15:28Z,2,2020-02-15T06:59:44Z +11223,2005-08-02T12:34:27Z,1994,597,2005-08-07T14:21:27Z,1,2020-02-15T06:59:44Z +11224,2005-08-02T12:40:38Z,3938,181,2005-08-04T10:02:38Z,2,2020-02-15T06:59:44Z +11225,2005-08-02T12:43:27Z,3721,159,2005-08-04T18:41:27Z,2,2020-02-15T06:59:44Z +11226,2005-08-02T12:47:30Z,79,282,2005-08-06T11:24:30Z,1,2020-02-15T06:59:44Z +11227,2005-08-02T12:48:05Z,1101,65,2005-08-11T14:08:05Z,1,2020-02-15T06:59:44Z +11228,2005-08-02T12:55:23Z,2561,144,2005-08-08T12:31:23Z,1,2020-02-15T06:59:44Z +11229,2005-08-02T12:56:37Z,941,332,2005-08-11T11:13:37Z,2,2020-02-15T06:59:44Z +11230,2005-08-02T12:59:08Z,1463,257,2005-08-04T13:42:08Z,1,2020-02-15T06:59:44Z +11231,2005-08-02T13:02:11Z,1100,90,2005-08-07T10:05:11Z,2,2020-02-15T06:59:44Z +11232,2005-08-02T13:04:12Z,971,8,2005-08-10T15:39:12Z,1,2020-02-15T06:59:44Z +11233,2005-08-02T13:06:11Z,2221,266,2005-08-08T15:02:11Z,1,2020-02-15T06:59:44Z +11234,2005-08-02T13:12:17Z,1020,27,2005-08-05T17:37:17Z,1,2020-02-15T06:59:44Z +11235,2005-08-02T13:13:21Z,2501,127,2005-08-03T07:17:21Z,1,2020-02-15T06:59:44Z +11236,2005-08-02T13:17:21Z,145,420,2005-08-09T09:53:21Z,2,2020-02-15T06:59:44Z +11237,2005-08-02T13:24:01Z,2668,426,2005-08-05T11:41:01Z,2,2020-02-15T06:59:44Z +11238,2005-08-02T13:25:50Z,2705,506,2005-08-08T19:12:50Z,2,2020-02-15T06:59:44Z +11239,2005-08-02T13:27:11Z,189,111,2005-08-03T14:36:11Z,1,2020-02-15T06:59:44Z +11240,2005-08-02T13:28:30Z,2170,597,2005-08-05T11:40:30Z,1,2020-02-15T06:59:44Z +11241,2005-08-02T13:29:24Z,3657,543,2005-08-11T11:36:24Z,2,2020-02-15T06:59:44Z +11242,2005-08-02T13:32:00Z,1041,434,2005-08-10T19:24:00Z,2,2020-02-15T06:59:44Z +11243,2005-08-02T13:32:48Z,2517,361,2005-08-11T18:55:48Z,1,2020-02-15T06:59:44Z +11244,2005-08-02T13:33:24Z,3423,142,2005-08-10T10:18:24Z,2,2020-02-15T06:59:44Z +11245,2005-08-02T13:33:50Z,2609,92,2005-08-04T10:20:50Z,2,2020-02-15T06:59:44Z +11246,2005-08-02T13:33:56Z,3577,550,2005-08-03T08:52:56Z,2,2020-02-15T06:59:44Z +11247,2005-08-02T13:34:08Z,1661,441,2005-08-06T16:23:08Z,2,2020-02-15T06:59:44Z +11248,2005-08-02T13:35:34Z,4139,312,2005-08-03T10:37:34Z,1,2020-02-15T06:59:44Z +11249,2005-08-02T13:35:40Z,3394,157,2005-08-07T11:22:40Z,1,2020-02-15T06:59:44Z +11250,2005-08-02T13:35:42Z,2223,279,2005-08-10T12:32:42Z,2,2020-02-15T06:59:44Z +11251,2005-08-02T13:40:49Z,2181,532,2005-08-09T14:16:49Z,2,2020-02-15T06:59:44Z +11252,2005-08-02T13:42:13Z,2410,337,2005-08-06T19:04:13Z,2,2020-02-15T06:59:44Z +11253,2005-08-02T13:42:44Z,2898,303,2005-08-09T17:06:44Z,2,2020-02-15T06:59:44Z +11254,2005-08-02T13:43:49Z,56,315,2005-08-08T13:16:49Z,1,2020-02-15T06:59:44Z +11255,2005-08-02T13:44:30Z,3393,569,2005-08-03T12:00:30Z,1,2020-02-15T06:59:44Z +11256,2005-08-02T13:44:53Z,2060,2,2005-08-04T16:39:53Z,1,2020-02-15T06:59:44Z +11257,2005-08-02T13:45:05Z,105,468,2005-08-11T16:37:05Z,1,2020-02-15T06:59:44Z +11258,2005-08-02T13:45:39Z,1576,242,2005-08-06T07:57:39Z,1,2020-02-15T06:59:44Z +11259,2005-08-02T13:46:30Z,896,330,2005-08-07T14:03:30Z,1,2020-02-15T06:59:44Z +11260,2005-08-02T13:52:19Z,4015,207,2005-08-06T08:13:19Z,2,2020-02-15T06:59:44Z +11261,2005-08-02T13:54:26Z,31,204,2005-08-10T19:04:26Z,2,2020-02-15T06:59:44Z +11262,2005-08-02T13:58:55Z,71,348,2005-08-05T18:09:55Z,2,2020-02-15T06:59:44Z +11263,2005-08-02T14:02:19Z,1189,421,2005-08-07T14:03:19Z,2,2020-02-15T06:59:44Z +11264,2005-08-02T14:05:18Z,3420,360,2005-08-10T08:46:18Z,2,2020-02-15T06:59:44Z +11265,2005-08-02T14:05:42Z,3870,531,2005-08-11T15:27:42Z,2,2020-02-15T06:59:44Z +11266,2005-08-02T14:07:35Z,3972,99,2005-08-04T13:31:35Z,1,2020-02-15T06:59:44Z +11267,2005-08-02T14:09:08Z,2045,244,2005-08-10T12:33:08Z,1,2020-02-15T06:59:44Z +11268,2005-08-02T14:10:39Z,3275,558,2005-08-04T14:35:39Z,1,2020-02-15T06:59:44Z +11269,2005-08-02T14:11:41Z,2398,297,2005-08-08T18:53:41Z,1,2020-02-15T06:59:44Z +11270,2005-08-02T14:18:07Z,1882,418,2005-08-03T08:20:07Z,1,2020-02-15T06:59:44Z +11271,2005-08-02T14:18:22Z,4323,93,2005-08-07T09:35:22Z,2,2020-02-15T06:59:44Z +11272,2005-08-02T14:20:27Z,4111,158,2005-08-07T12:24:27Z,2,2020-02-15T06:59:44Z +11273,2005-08-02T14:20:55Z,3383,541,2005-08-07T12:57:55Z,1,2020-02-15T06:59:44Z +11274,2005-08-02T14:24:08Z,1253,70,2005-08-11T14:56:08Z,1,2020-02-15T06:59:44Z +11275,2005-08-02T14:25:58Z,2838,464,2005-08-07T11:20:58Z,1,2020-02-15T06:59:44Z +11276,2005-08-02T14:28:46Z,4226,190,2005-08-04T14:00:46Z,1,2020-02-15T06:59:44Z +11277,2005-08-02T14:28:50Z,2050,68,2005-08-04T13:50:50Z,1,2020-02-15T06:59:44Z +11278,2005-08-02T14:29:43Z,961,143,2005-08-07T10:13:43Z,1,2020-02-15T06:59:44Z +11279,2005-08-02T14:30:03Z,151,125,2005-08-10T09:49:03Z,2,2020-02-15T06:59:44Z +11280,2005-08-02T14:34:33Z,1846,134,2005-08-08T15:40:33Z,2,2020-02-15T06:59:44Z +11281,2005-08-02T14:35:01Z,2210,137,2005-08-07T17:28:01Z,1,2020-02-15T06:59:44Z +11282,2005-08-02T14:35:03Z,1824,273,2005-08-03T16:02:03Z,2,2020-02-15T06:59:44Z +11283,2005-08-02T14:39:46Z,312,134,2005-08-05T10:19:46Z,2,2020-02-15T06:59:44Z +11284,2005-08-02T14:42:45Z,172,8,2005-08-04T11:55:45Z,2,2020-02-15T06:59:44Z +11285,2005-08-02T14:44:02Z,3849,585,2005-08-11T16:45:02Z,2,2020-02-15T06:59:44Z +11286,2005-08-02T14:44:22Z,1319,207,2005-08-10T09:01:22Z,2,2020-02-15T06:59:44Z +11287,2005-08-02T14:49:51Z,927,55,2005-08-09T09:19:51Z,2,2020-02-15T06:59:44Z +11288,2005-08-02T14:54:08Z,1478,298,2005-08-11T12:22:08Z,1,2020-02-15T06:59:44Z +11289,2005-08-02T14:55:00Z,2869,10,2005-08-11T13:57:00Z,1,2020-02-15T06:59:44Z +11290,2005-08-02T14:57:44Z,425,582,2005-08-09T19:36:44Z,2,2020-02-15T06:59:44Z +11291,2005-08-02T14:57:58Z,491,417,2005-08-11T09:04:58Z,2,2020-02-15T06:59:44Z +11292,2005-08-02T14:58:41Z,210,13,2005-08-06T14:38:41Z,2,2020-02-15T06:59:44Z +11293,2005-08-02T15:00:43Z,1514,475,2005-08-11T17:49:43Z,1,2020-02-15T06:59:44Z +11294,2005-08-02T15:08:27Z,855,411,2005-08-03T18:28:27Z,1,2020-02-15T06:59:44Z +11295,2005-08-02T15:10:06Z,423,67,2005-08-10T09:52:06Z,1,2020-02-15T06:59:44Z +11296,2005-08-02T15:15:27Z,247,154,2005-08-11T16:12:27Z,1,2020-02-15T06:59:44Z +11297,2005-08-02T15:22:47Z,2531,62,2005-08-11T18:45:47Z,1,2020-02-15T06:59:44Z +11298,2005-08-02T15:32:32Z,1663,35,2005-08-06T20:22:32Z,1,2020-02-15T06:59:44Z +11299,2005-08-02T15:36:52Z,3232,1,2005-08-10T16:40:52Z,2,2020-02-15T06:59:44Z +11300,2005-08-02T15:37:42Z,3032,552,2005-08-11T14:25:42Z,1,2020-02-15T06:59:44Z +11301,2005-08-02T15:37:59Z,676,502,2005-08-04T10:57:59Z,2,2020-02-15T06:59:44Z +11302,2005-08-02T15:38:03Z,1918,51,2005-08-09T10:33:03Z,2,2020-02-15T06:59:44Z +11303,2005-08-02T15:39:18Z,1817,417,2005-08-05T10:59:18Z,1,2020-02-15T06:59:44Z +11304,2005-08-02T15:40:10Z,2592,413,2005-08-06T16:12:10Z,2,2020-02-15T06:59:44Z +11305,2005-08-02T15:44:55Z,1690,341,2005-08-08T16:42:55Z,2,2020-02-15T06:59:44Z +11306,2005-08-02T15:45:10Z,13,247,2005-08-03T21:14:10Z,2,2020-02-15T06:59:44Z +11307,2005-08-02T15:48:08Z,1490,15,2005-08-06T20:33:08Z,2,2020-02-15T06:59:44Z +11308,2005-08-02T15:50:44Z,699,16,2005-08-05T11:38:44Z,2,2020-02-15T06:59:44Z +11309,2005-08-02T15:50:55Z,607,275,2005-08-09T18:28:55Z,1,2020-02-15T06:59:44Z +11310,2005-08-02T15:51:58Z,3601,415,2005-08-07T12:34:58Z,1,2020-02-15T06:59:44Z +11311,2005-08-02T15:53:48Z,204,197,2005-08-03T16:32:48Z,1,2020-02-15T06:59:44Z +11312,2005-08-02T15:56:51Z,1093,190,2005-08-07T20:56:51Z,2,2020-02-15T06:59:44Z +11313,2005-08-02T16:02:51Z,2689,419,2005-08-03T14:54:51Z,1,2020-02-15T06:59:44Z +11314,2005-08-02T16:04:08Z,2790,26,2005-08-04T18:47:08Z,1,2020-02-15T06:59:44Z +11315,2005-08-02T16:05:17Z,1116,13,2005-08-05T16:33:17Z,1,2020-02-15T06:59:44Z +11316,2005-08-02T16:07:49Z,521,108,2005-08-10T13:22:49Z,1,2020-02-15T06:59:44Z +11317,2005-08-02T16:08:52Z,1889,502,2005-08-08T21:12:52Z,1,2020-02-15T06:59:44Z +11318,2005-08-02T16:09:11Z,2386,532,2005-08-07T11:28:11Z,2,2020-02-15T06:59:44Z +11319,2005-08-02T16:10:09Z,4069,178,2005-08-09T11:21:09Z,2,2020-02-15T06:59:44Z +11320,2005-08-02T16:13:28Z,3362,550,2005-08-05T21:23:28Z,1,2020-02-15T06:59:44Z +11321,2005-08-02T16:15:07Z,205,266,2005-08-04T20:35:07Z,2,2020-02-15T06:59:44Z +11322,2005-08-02T16:23:17Z,761,418,2005-08-09T19:55:17Z,2,2020-02-15T06:59:44Z +11323,2005-08-02T16:29:57Z,3784,419,2005-08-06T16:01:57Z,1,2020-02-15T06:59:44Z +11324,2005-08-02T16:31:17Z,2900,540,2005-08-08T15:38:17Z,2,2020-02-15T06:59:44Z +11325,2005-08-02T16:33:11Z,4514,422,2005-08-08T13:42:11Z,1,2020-02-15T06:59:44Z +11326,2005-08-02T16:34:29Z,1762,530,2005-08-03T17:40:29Z,2,2020-02-15T06:59:44Z +11327,2005-08-02T16:40:47Z,773,361,2005-08-03T22:13:47Z,1,2020-02-15T06:59:44Z +11328,2005-08-02T16:42:38Z,2031,219,2005-08-04T21:02:38Z,1,2020-02-15T06:59:44Z +11329,2005-08-02T16:42:52Z,2677,399,2005-08-08T16:45:52Z,1,2020-02-15T06:59:44Z +11330,2005-08-02T16:45:33Z,4326,75,2005-08-04T15:15:33Z,2,2020-02-15T06:59:44Z +11331,2005-08-02T16:49:01Z,3789,568,2005-08-09T19:15:01Z,1,2020-02-15T06:59:44Z +11332,2005-08-02T16:52:57Z,2381,467,2005-08-04T14:13:57Z,1,2020-02-15T06:59:44Z +11333,2005-08-02T16:53:00Z,3335,225,2005-08-07T20:49:00Z,2,2020-02-15T06:59:44Z +11334,2005-08-02T16:53:20Z,1504,560,2005-08-11T20:47:20Z,1,2020-02-15T06:59:44Z +11335,2005-08-02T16:57:37Z,2968,157,2005-08-09T19:43:37Z,1,2020-02-15T06:59:44Z +11336,2005-08-02T16:58:56Z,1949,473,2005-08-06T16:56:56Z,1,2020-02-15T06:59:44Z +11337,2005-08-02T16:59:09Z,3428,366,2005-08-10T20:41:09Z,2,2020-02-15T06:59:44Z +11338,2005-08-02T17:00:12Z,3689,26,2005-08-03T18:54:12Z,1,2020-02-15T06:59:44Z +11339,2005-08-02T17:02:06Z,705,263,2005-08-08T21:12:06Z,1,2020-02-15T06:59:44Z +11340,2005-08-02T17:05:43Z,1403,366,2005-08-09T13:25:43Z,1,2020-02-15T06:59:44Z +11341,2005-08-02T17:09:24Z,3586,15,2005-08-09T19:48:24Z,2,2020-02-15T06:59:44Z +11342,2005-08-02T17:11:35Z,4251,179,2005-08-07T15:04:35Z,1,2020-02-15T06:59:44Z +11343,2005-08-02T17:12:30Z,564,466,2005-08-09T12:08:30Z,1,2020-02-15T06:59:44Z +11344,2005-08-02T17:13:26Z,365,38,2005-08-07T16:44:26Z,1,2020-02-15T06:59:44Z +11345,2005-08-02T17:14:19Z,1895,405,2005-08-11T14:02:19Z,2,2020-02-15T06:59:44Z +11346,2005-08-02T17:15:38Z,584,100,2005-08-04T13:31:38Z,2,2020-02-15T06:59:44Z +11347,2005-08-02T17:18:07Z,195,217,2005-08-05T12:30:07Z,1,2020-02-15T06:59:44Z +11348,2005-08-02T17:18:38Z,1704,389,2005-08-06T16:11:38Z,2,2020-02-15T06:59:44Z +11349,2005-08-02T17:21:49Z,1871,73,2005-08-06T18:40:49Z,1,2020-02-15T06:59:44Z +11350,2005-08-02T17:22:59Z,1265,598,2005-08-09T19:56:59Z,2,2020-02-15T06:59:44Z +11351,2005-08-02T17:28:07Z,242,198,2005-08-09T21:55:07Z,1,2020-02-15T06:59:44Z +11352,2005-08-02T17:29:39Z,2760,546,2005-08-10T15:31:39Z,1,2020-02-15T06:59:44Z +11353,2005-08-02T17:34:45Z,1729,444,2005-08-09T16:01:45Z,1,2020-02-15T06:59:44Z +11354,2005-08-02T17:35:10Z,1887,569,2005-08-09T12:07:10Z,2,2020-02-15T06:59:44Z +11355,2005-08-02T17:37:43Z,2673,185,2005-08-05T19:59:43Z,1,2020-02-15T06:59:44Z +11356,2005-08-02T17:42:40Z,303,200,2005-08-11T23:29:40Z,1,2020-02-15T06:59:44Z +11357,2005-08-02T17:42:49Z,2644,148,2005-08-11T18:14:49Z,1,2020-02-15T06:59:44Z +11358,2005-08-02T17:45:02Z,2361,56,2005-08-11T18:16:02Z,1,2020-02-15T06:59:44Z +11359,2005-08-02T17:45:55Z,1648,466,2005-08-10T20:53:55Z,2,2020-02-15T06:59:44Z +11360,2005-08-02T17:46:04Z,1750,66,2005-08-04T21:02:04Z,2,2020-02-15T06:59:44Z +11361,2005-08-02T17:46:34Z,1124,547,2005-08-03T15:21:34Z,1,2020-02-15T06:59:44Z +11362,2005-08-02T17:47:25Z,2628,331,2005-08-07T20:14:25Z,1,2020-02-15T06:59:44Z +11363,2005-08-02T17:48:39Z,3190,274,2005-08-05T17:20:39Z,1,2020-02-15T06:59:44Z +11364,2005-08-02T17:53:36Z,4515,44,2005-08-03T14:16:36Z,1,2020-02-15T06:59:44Z +11365,2005-08-02T18:00:09Z,1151,508,2005-08-04T13:40:09Z,2,2020-02-15T06:59:44Z +11366,2005-08-02T18:01:25Z,3583,280,2005-08-11T15:02:25Z,1,2020-02-15T06:59:44Z +11367,2005-08-02T18:01:38Z,1440,1,2005-08-04T13:19:38Z,1,2020-02-15T06:59:44Z +11368,2005-08-02T18:03:05Z,866,153,2005-08-07T20:40:05Z,1,2020-02-15T06:59:44Z +11369,2005-08-02T18:04:41Z,2480,480,2005-08-09T18:41:41Z,1,2020-02-15T06:59:44Z +11370,2005-08-02T18:06:01Z,3077,146,2005-08-04T15:10:01Z,1,2020-02-15T06:59:44Z +11371,2005-08-02T18:07:36Z,324,561,2005-08-06T17:52:36Z,1,2020-02-15T06:59:44Z +11372,2005-08-02T18:10:50Z,796,327,2005-08-07T17:58:50Z,1,2020-02-15T06:59:44Z +11373,2005-08-02T18:14:12Z,181,267,2005-08-06T23:37:12Z,1,2020-02-15T06:59:44Z +11374,2005-08-02T18:14:54Z,2805,424,2005-08-04T18:22:54Z,1,2020-02-15T06:59:44Z +11375,2005-08-02T18:14:56Z,1064,346,2005-08-08T23:29:56Z,1,2020-02-15T06:59:44Z +11376,2005-08-02T18:16:00Z,2530,177,2005-08-11T23:38:00Z,2,2020-02-15T06:59:44Z +11377,2005-08-02T18:16:47Z,3334,119,2005-08-08T13:46:47Z,1,2020-02-15T06:59:44Z +11378,2005-08-02T18:16:52Z,3824,188,2005-08-03T14:25:52Z,1,2020-02-15T06:59:44Z +11379,2005-08-02T18:16:55Z,251,61,2005-08-07T18:12:55Z,1,2020-02-15T06:59:44Z +11380,2005-08-02T18:17:32Z,1046,551,2005-08-03T19:26:32Z,2,2020-02-15T06:59:44Z +11381,2005-08-02T18:19:29Z,993,451,2005-08-08T20:39:29Z,2,2020-02-15T06:59:44Z +11382,2005-08-02T18:20:52Z,3848,407,2005-08-07T17:06:52Z,1,2020-02-15T06:59:44Z +11383,2005-08-02T18:22:05Z,257,445,2005-08-11T17:18:05Z,1,2020-02-15T06:59:44Z +11384,2005-08-02T18:23:01Z,2840,225,2005-08-05T17:59:01Z,1,2020-02-15T06:59:44Z +11385,2005-08-02T18:23:11Z,2478,192,2005-08-06T12:37:11Z,1,2020-02-15T06:59:44Z +11386,2005-08-02T18:24:03Z,519,183,2005-08-06T21:22:03Z,1,2020-02-15T06:59:44Z +11387,2005-08-02T18:32:38Z,2491,481,2005-08-07T19:08:38Z,2,2020-02-15T06:59:44Z +11388,2005-08-02T18:35:55Z,477,369,2005-08-09T21:56:55Z,1,2020-02-15T06:59:44Z +11389,2005-08-02T18:39:12Z,3267,270,2005-08-03T23:23:12Z,2,2020-02-15T06:59:44Z +11390,2005-08-02T18:39:16Z,3135,294,2005-08-04T21:43:16Z,1,2020-02-15T06:59:44Z +11391,2005-08-02T18:40:12Z,2039,403,2005-08-10T15:55:12Z,1,2020-02-15T06:59:44Z +11392,2005-08-02T18:41:11Z,261,146,2005-08-11T21:41:11Z,1,2020-02-15T06:59:44Z +11393,2005-08-02T18:44:29Z,1033,501,2005-08-11T23:58:29Z,1,2020-02-15T06:59:44Z +11394,2005-08-02T18:44:45Z,2087,257,2005-08-06T22:51:45Z,2,2020-02-15T06:59:44Z +11395,2005-08-02T18:47:44Z,4234,225,2005-08-10T17:07:44Z,2,2020-02-15T06:59:44Z +11396,2005-08-02T18:48:29Z,1155,59,2005-08-04T16:05:29Z,2,2020-02-15T06:59:44Z +11397,2005-08-02T18:53:14Z,2566,470,2005-08-09T18:09:14Z,1,2020-02-15T06:59:44Z +11398,2005-08-02T18:55:15Z,3952,6,2005-08-10T19:50:15Z,2,2020-02-15T06:59:44Z +11399,2005-08-02T18:56:28Z,2094,565,2005-08-11T23:19:28Z,1,2020-02-15T06:59:44Z +11400,2005-08-02T19:00:52Z,3150,9,2005-08-09T19:45:52Z,2,2020-02-15T06:59:44Z +11401,2005-08-02T19:05:06Z,1799,544,2005-08-09T22:34:06Z,1,2020-02-15T06:59:44Z +11402,2005-08-02T19:07:21Z,3291,561,2005-08-07T20:59:21Z,1,2020-02-15T06:59:44Z +11403,2005-08-02T19:10:21Z,4072,587,2005-08-04T00:44:21Z,2,2020-02-15T06:59:44Z +11404,2005-08-02T19:12:40Z,3285,60,2005-08-11T22:38:40Z,2,2020-02-15T06:59:44Z +11405,2005-08-02T19:13:39Z,418,10,2005-08-07T19:19:39Z,2,2020-02-15T06:59:44Z +11406,2005-08-02T19:16:10Z,2502,525,2005-08-04T20:51:10Z,2,2020-02-15T06:59:44Z +11407,2005-08-02T19:18:43Z,3437,513,2005-08-08T16:15:43Z,2,2020-02-15T06:59:44Z +11408,2005-08-02T19:25:13Z,1779,83,2005-08-06T17:12:13Z,1,2020-02-15T06:59:44Z +11409,2005-08-02T19:26:51Z,3691,418,2005-08-07T19:55:51Z,1,2020-02-15T06:59:44Z +11410,2005-08-02T19:29:01Z,692,592,2005-08-11T16:50:01Z,1,2020-02-15T06:59:44Z +11411,2005-08-02T19:29:47Z,1497,141,2005-08-09T16:27:47Z,2,2020-02-15T06:59:44Z +11412,2005-08-02T19:32:51Z,2271,141,2005-08-11T22:16:51Z,1,2020-02-15T06:59:44Z +11413,2005-08-02T19:35:19Z,1115,297,2005-08-05T21:33:19Z,2,2020-02-15T06:59:44Z +11414,2005-08-02T19:43:07Z,1772,353,2005-08-07T15:22:07Z,2,2020-02-15T06:59:44Z +11415,2005-08-02T19:43:38Z,2197,572,2005-08-10T15:13:38Z,1,2020-02-15T06:59:44Z +11416,2005-08-02T19:44:04Z,1848,58,2005-08-11T15:30:04Z,1,2020-02-15T06:59:44Z +11417,2005-08-02T19:44:46Z,3083,437,2005-08-11T21:43:46Z,2,2020-02-15T06:59:44Z +11418,2005-08-02T19:45:33Z,4490,91,2005-08-06T17:40:33Z,1,2020-02-15T06:59:44Z +11419,2005-08-02T19:46:38Z,514,444,2005-08-11T14:49:38Z,1,2020-02-15T06:59:44Z +11420,2005-08-02T19:47:56Z,3928,158,2005-08-05T21:48:56Z,2,2020-02-15T06:59:44Z +11421,2005-08-02T19:51:53Z,3361,473,2005-08-12T00:50:53Z,2,2020-02-15T06:59:44Z +11422,2005-08-02T19:52:08Z,342,72,2005-08-11T18:40:08Z,2,2020-02-15T06:59:44Z +11423,2005-08-02T19:57:13Z,3431,241,2005-08-06T00:54:13Z,2,2020-02-15T06:59:44Z +11424,2005-08-02T19:57:42Z,1030,84,2005-08-10T16:57:42Z,2,2020-02-15T06:59:44Z +11425,2005-08-02T19:58:48Z,989,419,2005-08-03T19:30:48Z,2,2020-02-15T06:59:44Z +11426,2005-08-02T20:00:09Z,130,572,2005-08-09T01:30:09Z,2,2020-02-15T06:59:44Z +11427,2005-08-02T20:02:39Z,3287,403,2005-08-04T22:26:39Z,2,2020-02-15T06:59:44Z +11428,2005-08-02T20:03:10Z,722,326,2005-08-04T01:55:10Z,1,2020-02-15T06:59:44Z +11429,2005-08-02T20:03:52Z,1098,348,2005-08-10T16:38:52Z,2,2020-02-15T06:59:44Z +11430,2005-08-02T20:04:36Z,2258,140,2005-08-08T19:43:36Z,1,2020-02-15T06:59:44Z +11431,2005-08-02T20:05:16Z,1409,271,2005-08-04T00:05:16Z,2,2020-02-15T06:59:44Z +11432,2005-08-02T20:10:01Z,959,540,2005-08-07T01:28:01Z,1,2020-02-15T06:59:44Z +11433,2005-08-02T20:13:10Z,1,518,2005-08-11T21:35:10Z,1,2020-02-15T06:59:44Z +11434,2005-08-02T20:13:14Z,3154,391,2005-08-05T15:01:14Z,1,2020-02-15T06:59:44Z +11435,2005-08-02T20:14:23Z,1625,502,2005-08-05T20:40:23Z,1,2020-02-15T06:59:44Z +11436,2005-08-02T20:16:06Z,3834,106,2005-08-05T20:40:06Z,2,2020-02-15T06:59:44Z +11437,2005-08-02T20:20:06Z,2679,225,2005-08-05T22:17:06Z,2,2020-02-15T06:59:44Z +11438,2005-08-02T20:21:08Z,1040,372,2005-08-10T22:12:08Z,1,2020-02-15T06:59:44Z +11439,2005-08-02T20:22:45Z,2897,18,2005-08-04T18:30:45Z,1,2020-02-15T06:59:44Z +11440,2005-08-02T20:24:02Z,2727,306,2005-08-07T16:42:02Z,2,2020-02-15T06:59:44Z +11441,2005-08-02T20:25:41Z,1027,389,2005-08-05T00:05:41Z,2,2020-02-15T06:59:44Z +11442,2005-08-02T20:26:19Z,2598,208,2005-08-07T00:33:19Z,2,2020-02-15T06:59:44Z +11443,2005-08-02T20:29:30Z,1291,581,2005-08-07T01:08:30Z,2,2020-02-15T06:59:44Z +11444,2005-08-02T20:32:55Z,1419,28,2005-08-08T23:21:55Z,2,2020-02-15T06:59:44Z +11445,2005-08-02T20:33:35Z,3340,108,2005-08-08T16:02:35Z,2,2020-02-15T06:59:44Z +11446,2005-08-02T20:33:37Z,748,342,2005-08-03T18:22:37Z,1,2020-02-15T06:59:44Z +11447,2005-08-02T20:36:25Z,3868,508,2005-08-07T18:52:25Z,1,2020-02-15T06:59:44Z +11448,2005-08-02T20:44:33Z,1185,496,2005-08-05T22:58:33Z,2,2020-02-15T06:59:44Z +11449,2005-08-02T20:44:43Z,3279,443,2005-08-07T23:47:43Z,2,2020-02-15T06:59:44Z +11450,2005-08-02T20:45:54Z,2009,214,2005-08-08T17:17:54Z,2,2020-02-15T06:59:44Z +11451,2005-08-02T20:45:56Z,776,515,2005-08-06T21:42:56Z,2,2020-02-15T06:59:44Z +11452,2005-08-02T20:59:52Z,1245,35,2005-08-12T01:16:52Z,1,2020-02-15T06:59:44Z +11453,2005-08-02T21:00:05Z,4578,84,2005-08-08T22:03:05Z,2,2020-02-15T06:59:44Z +11454,2005-08-02T21:04:39Z,2901,199,2005-08-05T19:03:39Z,1,2020-02-15T06:59:44Z +11455,2005-08-02T21:07:06Z,2000,498,2005-08-12T01:21:06Z,1,2020-02-15T06:59:44Z +11456,2005-08-02T21:14:04Z,3638,322,2005-08-07T19:49:04Z,2,2020-02-15T06:59:44Z +11457,2005-08-02T21:14:16Z,1642,379,2005-08-10T02:39:16Z,2,2020-02-15T06:59:44Z +11458,2005-08-02T21:24:02Z,3514,575,2005-08-04T01:32:02Z,2,2020-02-15T06:59:44Z +11459,2005-08-02T21:25:25Z,3730,392,2005-08-04T19:57:25Z,2,2020-02-15T06:59:44Z +11460,2005-08-02T21:28:03Z,4113,403,2005-08-08T18:24:03Z,1,2020-02-15T06:59:44Z +11461,2005-08-02T21:35:00Z,4343,65,2005-08-05T01:34:00Z,1,2020-02-15T06:59:44Z +11462,2005-08-02T21:36:46Z,167,268,2005-08-10T01:48:46Z,1,2020-02-15T06:59:44Z +11463,2005-08-02T21:37:36Z,1944,138,2005-08-08T03:11:36Z,2,2020-02-15T06:59:44Z +11464,2005-08-02T21:42:07Z,538,577,2005-08-03T21:44:07Z,2,2020-02-15T06:59:44Z +11465,2005-08-02T21:43:52Z,2190,447,2005-08-10T22:24:52Z,1,2020-02-15T06:59:44Z +11466,2005-08-02T21:46:46Z,3363,556,2005-08-06T01:42:46Z,1,2020-02-15T06:59:44Z +11467,2005-08-02T21:47:07Z,246,117,2005-08-09T00:50:07Z,1,2020-02-15T06:59:44Z +11468,2005-08-02T21:47:26Z,3168,413,2005-08-05T02:30:26Z,2,2020-02-15T06:59:44Z +11469,2005-08-02T21:48:09Z,230,77,2005-08-06T18:37:09Z,1,2020-02-15T06:59:44Z +11470,2005-08-02T21:48:28Z,2379,346,2005-08-05T23:58:28Z,2,2020-02-15T06:59:44Z +11471,2005-08-02T21:49:03Z,3378,355,2005-08-08T00:17:03Z,1,2020-02-15T06:59:44Z +11472,2005-08-02T21:49:06Z,1829,410,2005-08-11T20:17:06Z,1,2020-02-15T06:59:44Z +11473,2005-08-02T21:52:03Z,620,536,2005-08-09T02:01:03Z,1,2020-02-15T06:59:44Z +11474,2005-08-02T21:53:08Z,574,214,2005-08-05T22:36:08Z,1,2020-02-15T06:59:44Z +11475,2005-08-02T21:55:09Z,3687,194,2005-08-09T20:28:09Z,2,2020-02-15T06:59:44Z +11476,2005-08-02T22:03:47Z,724,144,2005-08-09T02:19:47Z,1,2020-02-15T06:59:44Z +11477,2005-08-02T22:09:01Z,1671,47,2005-08-07T03:46:01Z,2,2020-02-15T06:59:44Z +11478,2005-08-02T22:09:05Z,3932,197,2005-08-04T18:02:05Z,1,2020-02-15T06:59:44Z +11479,2005-08-02T22:18:13Z,4077,237,2005-08-12T00:43:13Z,1,2020-02-15T06:59:44Z +11480,2005-08-02T22:18:24Z,4161,14,2005-08-04T21:22:24Z,2,2020-02-15T06:59:44Z +11481,2005-08-02T22:18:41Z,4028,234,2005-08-09T23:43:41Z,2,2020-02-15T06:59:44Z +11482,2005-08-02T22:24:31Z,1400,134,2005-08-04T01:48:31Z,1,2020-02-15T06:59:44Z +11483,2005-08-02T22:28:22Z,1586,45,2005-08-11T18:06:22Z,1,2020-02-15T06:59:44Z +11484,2005-08-02T22:28:23Z,330,165,2005-08-04T20:51:23Z,2,2020-02-15T06:59:44Z +11485,2005-08-02T22:33:25Z,1872,326,2005-08-04T23:26:25Z,2,2020-02-15T06:59:44Z +11486,2005-08-02T22:34:06Z,1610,236,2005-08-09T00:46:06Z,2,2020-02-15T06:59:44Z +11487,2005-08-02T22:35:05Z,734,239,2005-08-08T00:54:05Z,2,2020-02-15T06:59:44Z +11488,2005-08-02T22:35:15Z,2520,45,2005-08-09T00:28:15Z,2,2020-02-15T06:59:44Z +11489,2005-08-02T22:35:28Z,3001,474,2005-08-04T00:29:28Z,2,2020-02-15T06:59:44Z +11490,2005-08-02T22:36:00Z,1178,156,2005-08-09T16:36:00Z,1,2020-02-15T06:59:44Z +11491,2005-08-02T22:44:50Z,268,307,2005-08-11T01:55:50Z,2,2020-02-15T06:59:44Z +11492,2005-08-02T22:46:47Z,4037,349,2005-08-09T19:54:47Z,2,2020-02-15T06:59:44Z +11493,2005-08-02T22:47:00Z,3375,124,2005-08-10T20:53:00Z,2,2020-02-15T06:59:44Z +11494,2005-08-02T22:51:23Z,3994,579,2005-08-09T01:52:23Z,1,2020-02-15T06:59:44Z +11495,2005-08-16T22:51:20Z,1265,247,2005-08-23T00:44:20Z,1,2020-02-15T06:59:44Z +11496,2006-02-14T15:16:03Z,2047,155,,1,2020-02-15T06:59:44Z +11497,2005-08-16T22:52:30Z,436,12,2005-08-21T19:52:30Z,1,2020-02-15T06:59:44Z +11498,2005-08-16T22:52:54Z,487,482,2005-08-25T03:27:54Z,2,2020-02-15T06:59:44Z +11499,2005-08-16T22:54:12Z,3857,172,2005-08-24T03:37:12Z,2,2020-02-15T06:59:44Z +11500,2005-08-16T23:01:22Z,4003,584,2005-08-24T22:54:22Z,1,2020-02-15T06:59:44Z +11501,2005-08-16T23:04:53Z,2147,23,2005-08-19T20:57:53Z,2,2020-02-15T06:59:44Z +11502,2005-08-16T23:06:30Z,4470,11,2005-08-19T03:49:30Z,1,2020-02-15T06:59:44Z +11503,2005-08-16T23:10:34Z,1496,526,2005-08-25T03:55:34Z,1,2020-02-15T06:59:44Z +11504,2005-08-16T23:16:46Z,2132,350,2005-08-18T20:49:46Z,2,2020-02-15T06:59:44Z +11505,2005-08-16T23:18:47Z,3344,34,2005-08-23T19:52:47Z,2,2020-02-15T06:59:44Z +11506,2005-08-16T23:25:48Z,1529,565,2005-08-22T18:17:48Z,1,2020-02-15T06:59:44Z +11507,2005-08-16T23:26:43Z,4197,236,2005-08-24T22:48:43Z,2,2020-02-15T06:59:44Z +11508,2005-08-16T23:27:36Z,2688,19,2005-08-25T01:34:36Z,2,2020-02-15T06:59:44Z +11509,2005-08-16T23:29:53Z,2750,273,2005-08-19T02:09:53Z,1,2020-02-15T06:59:44Z +11510,2005-08-16T23:30:07Z,2997,400,2005-08-25T17:35:07Z,1,2020-02-15T06:59:44Z +11511,2005-08-16T23:39:59Z,2127,397,2005-08-18T18:04:59Z,1,2020-02-15T06:59:44Z +11512,2005-08-16T23:51:06Z,1248,373,2005-08-26T02:06:06Z,2,2020-02-15T06:59:44Z +11513,2005-08-16T23:51:33Z,4473,499,2005-08-24T01:37:33Z,2,2020-02-15T06:59:44Z +11514,2005-08-16T23:53:10Z,4240,423,2005-08-23T22:04:10Z,1,2020-02-15T06:59:44Z +11515,2005-08-16T23:54:34Z,1053,279,2005-08-21T19:00:34Z,1,2020-02-15T06:59:44Z +11516,2005-08-16T23:54:47Z,1860,90,2005-08-17T20:05:47Z,1,2020-02-15T06:59:44Z +11517,2005-08-16T23:56:28Z,4266,280,2005-08-21T22:40:28Z,1,2020-02-15T06:59:44Z +11518,2005-08-16T23:59:49Z,3297,407,2005-08-17T22:51:49Z,2,2020-02-15T06:59:44Z +11519,2005-08-17T00:01:27Z,1034,381,2005-08-19T04:54:27Z,2,2020-02-15T06:59:44Z +11520,2005-08-17T00:04:28Z,3536,119,2005-08-26T02:03:28Z,1,2020-02-15T06:59:44Z +11521,2005-08-17T00:04:54Z,463,229,2005-08-21T00:57:54Z,1,2020-02-15T06:59:44Z +11522,2005-08-17T00:05:05Z,2033,599,2005-08-24T04:56:05Z,1,2020-02-15T06:59:44Z +11523,2005-08-17T00:10:10Z,1329,421,2005-08-24T22:39:10Z,1,2020-02-15T06:59:44Z +11524,2005-08-17T00:10:55Z,317,533,2005-08-23T05:30:55Z,1,2020-02-15T06:59:44Z +11525,2005-08-17T00:15:31Z,1107,174,2005-08-20T21:14:31Z,1,2020-02-15T06:59:44Z +11526,2005-08-17T00:17:38Z,2419,572,2005-08-18T03:59:38Z,2,2020-02-15T06:59:44Z +11527,2005-08-17T00:25:06Z,162,264,2005-08-22T21:13:06Z,1,2020-02-15T06:59:44Z +11528,2005-08-17T00:27:23Z,893,14,2005-08-22T06:12:23Z,2,2020-02-15T06:59:44Z +11529,2005-08-17T00:28:01Z,3071,4,2005-08-19T04:47:01Z,2,2020-02-15T06:59:44Z +11530,2005-08-17T00:29:00Z,365,400,2005-08-22T03:22:00Z,1,2020-02-15T06:59:44Z +11531,2005-08-17T00:30:04Z,1817,278,2005-08-20T01:12:04Z,2,2020-02-15T06:59:44Z +11532,2005-08-17T00:34:14Z,1947,413,2005-08-22T19:37:14Z,2,2020-02-15T06:59:44Z +11533,2005-08-17T00:34:53Z,4252,264,2005-08-22T06:10:53Z,1,2020-02-15T06:59:44Z +11534,2005-08-17T00:35:27Z,2414,144,2005-08-24T01:36:27Z,1,2020-02-15T06:59:44Z +11535,2005-08-17T00:39:54Z,1649,356,2005-08-24T20:46:54Z,2,2020-02-15T06:59:44Z +11536,2005-08-17T00:40:03Z,2735,428,2005-08-21T19:11:03Z,1,2020-02-15T06:59:44Z +11537,2005-08-17T00:41:08Z,190,474,2005-08-19T00:25:08Z,2,2020-02-15T06:59:44Z +11538,2005-08-17T00:44:04Z,554,431,2005-08-18T03:43:04Z,2,2020-02-15T06:59:44Z +11539,2005-08-17T00:45:41Z,2064,264,2005-08-19T06:03:41Z,1,2020-02-15T06:59:44Z +11540,2005-08-17T00:48:03Z,3385,370,2005-08-25T03:46:03Z,1,2020-02-15T06:59:44Z +11541,2006-02-14T15:16:03Z,2026,335,,1,2020-02-15T06:59:44Z +11542,2005-08-17T00:51:32Z,2155,7,2005-08-24T20:29:32Z,2,2020-02-15T06:59:44Z +11543,2005-08-17T00:54:28Z,2860,238,2005-08-25T04:31:28Z,2,2020-02-15T06:59:44Z +11544,2005-08-17T00:55:07Z,836,439,2005-08-22T19:25:07Z,1,2020-02-15T06:59:44Z +11545,2005-08-17T00:56:06Z,3198,257,2005-08-25T22:47:06Z,1,2020-02-15T06:59:44Z +11546,2005-08-17T00:57:36Z,2522,24,2005-08-18T23:16:36Z,1,2020-02-15T06:59:44Z +11547,2005-08-17T00:59:24Z,737,114,2005-08-20T04:03:24Z,2,2020-02-15T06:59:44Z +11548,2005-08-17T00:59:47Z,480,323,2005-08-22T05:09:47Z,1,2020-02-15T06:59:44Z +11549,2005-08-17T01:01:48Z,945,402,2005-08-19T21:24:48Z,2,2020-02-15T06:59:44Z +11550,2005-08-17T01:02:06Z,2972,339,2005-08-22T21:44:06Z,1,2020-02-15T06:59:44Z +11551,2005-08-17T01:03:49Z,3356,168,2005-08-18T22:31:49Z,1,2020-02-15T06:59:44Z +11552,2005-08-17T01:04:29Z,1143,230,2005-08-23T23:07:29Z,1,2020-02-15T06:59:44Z +11553,2005-08-17T01:04:31Z,3317,360,2005-08-24T00:44:31Z,1,2020-02-15T06:59:44Z +11554,2005-08-17T01:05:17Z,2212,460,2005-08-20T06:20:17Z,2,2020-02-15T06:59:44Z +11555,2005-08-17T01:08:59Z,2569,372,2005-08-18T06:09:59Z,2,2020-02-15T06:59:44Z +11556,2005-08-17T01:11:53Z,373,9,2005-08-18T23:41:53Z,1,2020-02-15T06:59:44Z +11557,2005-08-17T01:19:20Z,2376,416,2005-08-24T02:25:20Z,1,2020-02-15T06:59:44Z +11558,2005-08-17T01:19:52Z,1681,403,2005-08-19T00:47:52Z,2,2020-02-15T06:59:44Z +11559,2005-08-17T01:20:26Z,1812,385,2005-08-24T03:11:26Z,1,2020-02-15T06:59:44Z +11560,2005-08-17T01:20:30Z,2316,320,2005-08-18T04:29:30Z,2,2020-02-15T06:59:44Z +11561,2005-08-17T01:23:09Z,189,149,2005-08-23T21:02:09Z,2,2020-02-15T06:59:44Z +11562,2005-08-17T01:23:39Z,2992,424,2005-08-26T06:16:39Z,1,2020-02-15T06:59:44Z +11563,2006-02-14T15:16:03Z,1545,83,,1,2020-02-15T06:59:44Z +11564,2005-08-17T01:27:49Z,2237,332,2005-08-19T22:07:49Z,1,2020-02-15T06:59:44Z +11565,2005-08-17T01:28:05Z,173,83,2005-08-23T23:33:05Z,2,2020-02-15T06:59:44Z +11566,2005-08-17T01:28:35Z,4020,520,2005-08-20T22:42:35Z,1,2020-02-15T06:59:44Z +11567,2005-08-17T01:28:43Z,567,558,2005-08-24T20:20:43Z,2,2020-02-15T06:59:44Z +11568,2005-08-17T01:30:01Z,183,342,2005-08-18T22:21:01Z,2,2020-02-15T06:59:44Z +11569,2005-08-17T01:31:04Z,2592,504,2005-08-24T03:36:04Z,2,2020-02-15T06:59:44Z +11570,2005-08-17T01:34:32Z,2466,343,2005-08-24T05:47:32Z,1,2020-02-15T06:59:44Z +11571,2005-08-17T01:37:51Z,203,296,2005-08-17T20:30:51Z,1,2020-02-15T06:59:44Z +11572,2005-08-17T01:37:55Z,3512,515,2005-08-19T06:22:55Z,2,2020-02-15T06:59:44Z +11573,2005-08-17T01:38:18Z,639,146,2005-08-19T05:06:18Z,2,2020-02-15T06:59:44Z +11574,2005-08-17T01:38:19Z,3596,277,2005-08-18T20:30:19Z,2,2020-02-15T06:59:44Z +11575,2005-08-17T01:50:26Z,1725,319,2005-08-18T00:43:26Z,1,2020-02-15T06:59:44Z +11576,2005-08-17T01:53:20Z,327,293,2005-08-19T00:15:20Z,1,2020-02-15T06:59:44Z +11577,2006-02-14T15:16:03Z,4106,219,,2,2020-02-15T06:59:44Z +11578,2005-08-17T01:54:13Z,192,590,2005-08-26T02:00:13Z,2,2020-02-15T06:59:44Z +11579,2005-08-17T01:57:49Z,4256,356,2005-08-22T02:42:49Z,1,2020-02-15T06:59:44Z +11580,2005-08-17T01:59:07Z,1346,436,2005-08-21T06:18:07Z,2,2020-02-15T06:59:44Z +11581,2005-08-17T02:03:02Z,1249,231,2005-08-24T03:53:02Z,2,2020-02-15T06:59:44Z +11582,2005-08-17T02:03:49Z,2115,339,2005-08-24T03:29:49Z,1,2020-02-15T06:59:44Z +11583,2005-08-17T02:08:13Z,133,542,2005-08-20T23:13:13Z,2,2020-02-15T06:59:44Z +11584,2005-08-17T02:13:26Z,3906,479,2005-08-22T01:24:26Z,2,2020-02-15T06:59:44Z +11585,2005-08-17T02:14:36Z,753,297,2005-08-20T07:37:36Z,2,2020-02-15T06:59:44Z +11586,2005-08-17T02:20:42Z,3140,465,2005-08-26T05:01:42Z,1,2020-02-15T06:59:44Z +11587,2005-08-17T02:21:03Z,1319,156,2005-08-25T21:02:03Z,2,2020-02-15T06:59:44Z +11588,2005-08-17T02:26:23Z,2480,565,2005-08-22T02:32:23Z,1,2020-02-15T06:59:44Z +11589,2005-08-17T02:28:22Z,3480,554,2005-08-25T00:08:22Z,1,2020-02-15T06:59:44Z +11590,2005-08-17T02:28:33Z,3600,491,2005-08-20T03:13:33Z,1,2020-02-15T06:59:44Z +11591,2005-08-17T02:29:41Z,1670,6,2005-08-23T20:47:41Z,1,2020-02-15T06:59:44Z +11592,2005-08-17T02:36:04Z,720,383,2005-08-19T00:31:04Z,1,2020-02-15T06:59:44Z +11593,2006-02-14T15:16:03Z,817,99,,1,2020-02-15T06:59:44Z +11594,2005-08-17T02:47:02Z,319,198,2005-08-22T05:14:02Z,2,2020-02-15T06:59:44Z +11595,2005-08-17T02:53:14Z,466,350,2005-08-26T02:05:14Z,1,2020-02-15T06:59:44Z +11596,2005-08-17T02:53:55Z,1674,290,2005-08-26T02:19:55Z,1,2020-02-15T06:59:44Z +11597,2005-08-17T03:02:56Z,4073,272,2005-08-26T04:47:56Z,1,2020-02-15T06:59:44Z +11598,2005-08-17T03:03:07Z,1949,319,2005-08-22T21:05:07Z,2,2020-02-15T06:59:44Z +11599,2005-08-17T03:08:10Z,3749,112,2005-08-25T05:01:10Z,2,2020-02-15T06:59:44Z +11600,2005-08-17T03:12:04Z,1978,400,2005-08-23T07:10:04Z,1,2020-02-15T06:59:44Z +11601,2005-08-17T03:14:47Z,1098,471,2005-08-20T00:21:47Z,2,2020-02-15T06:59:44Z +11602,2005-08-17T03:21:19Z,2082,391,2005-08-19T05:23:19Z,1,2020-02-15T06:59:44Z +11603,2005-08-17T03:22:10Z,3910,406,2005-08-18T06:48:10Z,1,2020-02-15T06:59:44Z +11604,2005-08-17T03:28:27Z,1820,388,2005-08-19T05:38:27Z,2,2020-02-15T06:59:44Z +11605,2005-08-17T03:30:57Z,1292,455,2005-08-24T07:02:57Z,2,2020-02-15T06:59:44Z +11606,2005-08-17T03:32:43Z,4138,499,2005-08-18T04:30:43Z,1,2020-02-15T06:59:44Z +11607,2005-08-17T03:36:06Z,4345,242,2005-08-20T01:06:06Z,1,2020-02-15T06:59:44Z +11608,2005-08-17T03:36:52Z,1673,448,2005-08-25T07:17:52Z,2,2020-02-15T06:59:44Z +11609,2005-08-17T03:41:11Z,351,73,2005-08-25T01:30:11Z,2,2020-02-15T06:59:44Z +11610,2005-08-17T03:43:37Z,3048,275,2005-08-20T22:14:37Z,1,2020-02-15T06:59:44Z +11611,2006-02-14T15:16:03Z,1857,192,,2,2020-02-15T06:59:44Z +11612,2005-08-17T03:48:51Z,375,526,2005-08-20T03:03:51Z,1,2020-02-15T06:59:44Z +11613,2005-08-17T03:50:33Z,2486,126,2005-08-25T00:37:33Z,2,2020-02-15T06:59:44Z +11614,2005-08-17T03:52:18Z,805,2,2005-08-20T07:04:18Z,1,2020-02-15T06:59:44Z +11615,2005-08-17T03:54:35Z,4331,436,2005-08-23T06:54:35Z,2,2020-02-15T06:59:44Z +11616,2005-08-17T04:00:01Z,2588,36,2005-08-20T23:03:01Z,2,2020-02-15T06:59:44Z +11617,2005-08-17T04:00:40Z,1898,324,2005-08-18T00:36:40Z,1,2020-02-15T06:59:44Z +11618,2005-08-17T04:01:36Z,954,175,2005-08-23T01:02:36Z,1,2020-02-15T06:59:44Z +11619,2005-08-17T04:03:26Z,3652,374,2005-08-22T03:07:26Z,1,2020-02-15T06:59:44Z +11620,2005-08-17T04:06:22Z,3801,502,2005-08-17T23:53:22Z,1,2020-02-15T06:59:44Z +11621,2005-08-17T04:13:45Z,3708,216,2005-08-26T01:00:45Z,1,2020-02-15T06:59:44Z +11622,2005-08-17T04:15:46Z,499,220,2005-08-24T04:48:46Z,1,2020-02-15T06:59:44Z +11623,2005-08-17T04:15:47Z,759,163,2005-08-19T04:11:47Z,2,2020-02-15T06:59:44Z +11624,2005-08-17T04:17:42Z,606,527,2005-08-18T02:46:42Z,1,2020-02-15T06:59:44Z +11625,2005-08-17T04:18:52Z,712,521,2005-08-25T03:05:52Z,2,2020-02-15T06:59:44Z +11626,2005-08-17T04:25:42Z,4279,266,2005-08-23T05:46:42Z,1,2020-02-15T06:59:44Z +11627,2005-08-17T04:25:47Z,3945,168,2005-08-26T02:54:47Z,2,2020-02-15T06:59:44Z +11628,2005-08-17T04:27:18Z,3656,256,2005-08-25T01:12:18Z,2,2020-02-15T06:59:44Z +11629,2005-08-17T04:27:24Z,786,299,2005-08-26T10:25:24Z,2,2020-02-15T06:59:44Z +11630,2005-08-17T04:27:46Z,688,72,2005-08-19T09:58:46Z,2,2020-02-15T06:59:44Z +11631,2005-08-17T04:28:56Z,59,168,2005-08-24T00:42:56Z,2,2020-02-15T06:59:44Z +11632,2005-08-17T04:29:32Z,2551,238,2005-08-22T03:44:32Z,1,2020-02-15T06:59:44Z +11633,2005-08-17T04:30:09Z,1706,468,2005-08-20T06:56:09Z,1,2020-02-15T06:59:44Z +11634,2005-08-17T04:31:49Z,2576,206,2005-08-21T02:51:49Z,1,2020-02-15T06:59:44Z +11635,2005-08-17T04:33:17Z,2642,98,2005-08-21T07:50:17Z,2,2020-02-15T06:59:44Z +11636,2005-08-17T04:36:31Z,791,276,2005-08-24T00:03:31Z,2,2020-02-15T06:59:44Z +11637,2005-08-17T04:36:39Z,479,283,2005-08-18T02:17:39Z,1,2020-02-15T06:59:44Z +11638,2005-08-17T04:39:09Z,3421,152,2005-08-25T06:42:09Z,2,2020-02-15T06:59:44Z +11639,2005-08-17T04:43:29Z,3985,462,2005-08-25T01:04:29Z,2,2020-02-15T06:59:44Z +11640,2005-08-17T04:44:33Z,1718,501,2005-08-21T09:29:33Z,2,2020-02-15T06:59:44Z +11641,2005-08-17T04:45:39Z,2717,79,2005-08-20T10:38:39Z,1,2020-02-15T06:59:44Z +11642,2005-08-17T04:48:05Z,3790,25,2005-08-18T01:53:05Z,2,2020-02-15T06:59:44Z +11643,2005-08-17T04:49:35Z,1378,197,2005-08-24T07:05:35Z,1,2020-02-15T06:59:44Z +11644,2005-08-17T04:49:46Z,1760,438,2005-08-24T08:49:46Z,1,2020-02-15T06:59:44Z +11645,2005-08-17T04:50:56Z,4261,35,2005-08-25T23:03:56Z,1,2020-02-15T06:59:44Z +11646,2006-02-14T15:16:03Z,478,11,,2,2020-02-15T06:59:44Z +11647,2005-08-17T04:54:14Z,3016,110,2005-08-23T04:16:14Z,2,2020-02-15T06:59:44Z +11648,2005-08-17T04:56:16Z,3362,465,2005-08-26T00:53:16Z,2,2020-02-15T06:59:44Z +11649,2005-08-17T04:59:26Z,3222,217,2005-08-20T04:02:26Z,2,2020-02-15T06:59:44Z +11650,2005-08-17T05:00:03Z,3979,418,2005-08-22T01:45:03Z,2,2020-02-15T06:59:44Z +11651,2005-08-17T05:02:25Z,3681,143,2005-08-24T08:15:25Z,2,2020-02-15T06:59:44Z +11652,2006-02-14T15:16:03Z,1622,597,,2,2020-02-15T06:59:44Z +11653,2005-08-17T05:06:10Z,4475,358,2005-08-24T03:09:10Z,2,2020-02-15T06:59:44Z +11654,2005-08-17T05:06:19Z,1048,218,2005-08-18T04:32:19Z,2,2020-02-15T06:59:44Z +11655,2005-08-17T05:11:07Z,1699,113,2005-08-26T10:18:07Z,1,2020-02-15T06:59:44Z +11656,2005-08-17T05:11:09Z,1451,56,2005-08-25T07:51:09Z,1,2020-02-15T06:59:44Z +11657,2006-02-14T15:16:03Z,3043,53,,2,2020-02-15T06:59:44Z +11658,2005-08-17T05:19:17Z,2008,422,2005-08-24T07:03:17Z,2,2020-02-15T06:59:44Z +11659,2005-08-17T05:20:45Z,2881,112,2005-08-22T10:18:45Z,1,2020-02-15T06:59:44Z +11660,2005-08-17T05:22:42Z,4081,525,2005-08-23T01:03:42Z,1,2020-02-15T06:59:44Z +11661,2005-08-17T05:25:57Z,1008,27,2005-08-25T04:37:57Z,1,2020-02-15T06:59:44Z +11662,2005-08-17T05:27:37Z,2730,177,2005-08-26T09:56:37Z,2,2020-02-15T06:59:44Z +11663,2005-08-17T05:30:19Z,3798,373,2005-08-25T08:14:19Z,1,2020-02-15T06:59:44Z +11664,2005-08-17T05:35:52Z,1343,433,2005-08-18T02:40:52Z,1,2020-02-15T06:59:44Z +11665,2005-08-17T05:36:57Z,334,254,2005-08-23T01:38:57Z,1,2020-02-15T06:59:44Z +11666,2005-08-17T05:45:10Z,250,531,2005-08-19T06:47:10Z,2,2020-02-15T06:59:44Z +11667,2005-08-17T05:46:55Z,1516,582,2005-08-26T08:19:55Z,1,2020-02-15T06:59:44Z +11668,2005-08-17T05:47:32Z,2162,249,2005-08-20T03:11:32Z,1,2020-02-15T06:59:44Z +11669,2005-08-17T05:48:51Z,3224,487,2005-08-22T01:22:51Z,1,2020-02-15T06:59:44Z +11670,2005-08-17T05:48:59Z,4437,286,2005-08-19T08:51:59Z,1,2020-02-15T06:59:44Z +11671,2005-08-17T05:50:21Z,3569,338,2005-08-20T03:43:21Z,1,2020-02-15T06:59:44Z +11672,2006-02-14T15:16:03Z,3947,521,,2,2020-02-15T06:59:44Z +11673,2005-08-17T05:54:15Z,823,303,2005-08-21T08:12:15Z,2,2020-02-15T06:59:44Z +11674,2005-08-17T05:56:27Z,582,306,2005-08-24T08:50:27Z,2,2020-02-15T06:59:44Z +11675,2005-08-17T05:57:54Z,1322,514,2005-08-21T23:57:54Z,1,2020-02-15T06:59:44Z +11676,2006-02-14T15:16:03Z,4496,216,,2,2020-02-15T06:59:44Z +11677,2005-08-17T06:06:26Z,2206,407,2005-08-20T04:35:26Z,2,2020-02-15T06:59:44Z +11678,2005-08-17T06:07:39Z,3511,176,2005-08-21T10:51:39Z,2,2020-02-15T06:59:44Z +11679,2005-08-17T06:08:54Z,3337,72,2005-08-21T07:50:54Z,1,2020-02-15T06:59:44Z +11680,2005-08-17T06:12:27Z,4538,221,2005-08-23T08:54:27Z,1,2020-02-15T06:59:44Z +11681,2005-08-17T06:13:30Z,1260,543,2005-08-26T01:29:30Z,2,2020-02-15T06:59:44Z +11682,2005-08-17T06:13:40Z,2544,387,2005-08-18T06:11:40Z,1,2020-02-15T06:59:44Z +11683,2005-08-17T06:15:17Z,2603,66,2005-08-26T05:33:17Z,1,2020-02-15T06:59:44Z +11684,2005-08-17T06:27:15Z,4277,517,2005-08-22T02:11:15Z,2,2020-02-15T06:59:44Z +11685,2005-08-17T06:39:16Z,3552,51,2005-08-22T04:20:16Z,2,2020-02-15T06:59:44Z +11686,2005-08-17T06:39:30Z,1393,392,2005-08-21T10:19:30Z,2,2020-02-15T06:59:44Z +11687,2005-08-17T06:39:59Z,1977,169,2005-08-23T04:53:59Z,1,2020-02-15T06:59:44Z +11688,2005-08-17T06:41:58Z,2229,82,2005-08-25T04:38:58Z,1,2020-02-15T06:59:44Z +11689,2005-08-17T06:42:08Z,2390,419,2005-08-26T06:09:08Z,1,2020-02-15T06:59:44Z +11690,2005-08-17T06:44:22Z,3934,267,2005-08-24T03:49:22Z,1,2020-02-15T06:59:44Z +11691,2005-08-17T06:51:05Z,2529,515,2005-08-24T09:53:05Z,1,2020-02-15T06:59:44Z +11692,2005-08-17T06:52:41Z,1222,350,2005-08-24T12:17:41Z,2,2020-02-15T06:59:44Z +11693,2005-08-17T06:56:56Z,793,221,2005-08-24T06:20:56Z,2,2020-02-15T06:59:44Z +11694,2005-08-17T06:57:30Z,3540,410,2005-08-24T07:52:30Z,1,2020-02-15T06:59:44Z +11695,2005-08-17T07:01:08Z,1110,386,2005-08-21T09:21:08Z,1,2020-02-15T06:59:44Z +11696,2005-08-17T07:01:09Z,3816,522,2005-08-21T09:12:09Z,2,2020-02-15T06:59:44Z +11697,2005-08-17T07:09:19Z,383,329,2005-08-19T02:02:19Z,1,2020-02-15T06:59:44Z +11698,2005-08-17T07:09:59Z,3946,353,2005-08-19T04:31:59Z,1,2020-02-15T06:59:44Z +11699,2005-08-17T07:11:58Z,3997,339,2005-08-26T12:08:58Z,1,2020-02-15T06:59:44Z +11700,2005-08-17T07:12:31Z,2365,104,2005-08-18T04:21:31Z,2,2020-02-15T06:59:44Z +11701,2005-08-17T07:15:47Z,993,34,2005-08-19T01:44:47Z,2,2020-02-15T06:59:44Z +11702,2005-08-17T07:18:56Z,3286,526,2005-08-24T06:33:56Z,1,2020-02-15T06:59:44Z +11703,2005-08-17T07:19:29Z,1692,279,2005-08-20T09:35:29Z,2,2020-02-15T06:59:44Z +11704,2005-08-17T07:21:22Z,1099,135,2005-08-25T06:06:22Z,1,2020-02-15T06:59:44Z +11705,2005-08-17T07:22:25Z,4242,489,2005-08-18T06:42:25Z,1,2020-02-15T06:59:44Z +11706,2005-08-17T07:23:46Z,4234,414,2005-08-18T10:13:46Z,2,2020-02-15T06:59:44Z +11707,2005-08-17T07:24:59Z,1030,581,2005-08-24T10:40:59Z,1,2020-02-15T06:59:44Z +11708,2005-08-17T07:26:47Z,76,582,2005-08-22T04:11:47Z,1,2020-02-15T06:59:44Z +11709,2006-02-14T15:16:03Z,1720,330,,1,2020-02-15T06:59:44Z +11710,2005-08-17T07:29:44Z,613,553,2005-08-19T02:06:44Z,2,2020-02-15T06:59:44Z +11711,2005-08-17T07:30:55Z,1503,470,2005-08-18T09:21:55Z,1,2020-02-15T06:59:44Z +11712,2005-08-17T07:32:51Z,3607,203,2005-08-21T09:18:51Z,2,2020-02-15T06:59:44Z +11713,2005-08-17T07:34:05Z,1919,590,2005-08-25T07:49:05Z,1,2020-02-15T06:59:44Z +11714,2005-08-17T07:34:55Z,17,151,2005-08-18T04:07:55Z,1,2020-02-15T06:59:44Z +11715,2005-08-17T07:40:55Z,1615,452,2005-08-25T11:19:55Z,1,2020-02-15T06:59:44Z +11716,2005-08-17T07:40:55Z,3054,287,2005-08-21T05:56:55Z,1,2020-02-15T06:59:44Z +11717,2005-08-17T07:44:09Z,1371,566,2005-08-20T09:39:09Z,2,2020-02-15T06:59:44Z +11718,2005-08-17T07:44:42Z,3673,555,2005-08-23T03:02:42Z,2,2020-02-15T06:59:44Z +11719,2005-08-17T07:46:05Z,2054,338,2005-08-23T08:52:05Z,1,2020-02-15T06:59:44Z +11720,2005-08-17T07:46:54Z,1707,121,2005-08-26T04:19:54Z,2,2020-02-15T06:59:44Z +11721,2005-08-17T07:49:17Z,1923,46,2005-08-18T04:08:17Z,1,2020-02-15T06:59:44Z +11722,2005-08-17T07:53:03Z,2430,321,2005-08-22T06:56:03Z,2,2020-02-15T06:59:44Z +11723,2005-08-17T07:56:22Z,1665,341,2005-08-22T03:49:22Z,1,2020-02-15T06:59:44Z +11724,2005-08-17T08:04:44Z,4484,207,2005-08-25T03:25:44Z,2,2020-02-15T06:59:44Z +11725,2005-08-17T08:09:00Z,519,45,2005-08-18T09:50:00Z,1,2020-02-15T06:59:44Z +11726,2005-08-17T08:11:10Z,4438,266,2005-08-22T05:45:10Z,1,2020-02-15T06:59:44Z +11727,2005-08-17T08:12:20Z,98,6,2005-08-19T12:45:20Z,1,2020-02-15T06:59:44Z +11728,2005-08-17T08:12:26Z,726,444,2005-08-18T03:26:26Z,1,2020-02-15T06:59:44Z +11729,2005-08-17T08:14:41Z,2819,215,2005-08-22T02:54:41Z,1,2020-02-15T06:59:44Z +11730,2005-08-17T08:22:00Z,3817,98,2005-08-22T05:43:00Z,2,2020-02-15T06:59:44Z +11731,2005-08-17T08:24:35Z,917,52,2005-08-24T02:54:35Z,2,2020-02-15T06:59:44Z +11732,2005-08-17T08:29:46Z,460,137,2005-08-23T14:21:46Z,2,2020-02-15T06:59:44Z +11733,2005-08-17T08:31:03Z,439,251,2005-08-21T05:44:03Z,2,2020-02-15T06:59:44Z +11734,2005-08-17T08:34:22Z,4063,337,2005-08-25T11:56:22Z,2,2020-02-15T06:59:44Z +11735,2005-08-17T08:35:42Z,2555,452,2005-08-26T11:04:42Z,1,2020-02-15T06:59:44Z +11736,2005-08-17T08:40:55Z,4217,535,2005-08-26T09:03:55Z,1,2020-02-15T06:59:44Z +11737,2005-08-17T08:42:08Z,4128,549,2005-08-19T08:14:08Z,1,2020-02-15T06:59:44Z +11738,2005-08-17T08:45:55Z,3042,347,2005-08-26T07:09:55Z,1,2020-02-15T06:59:44Z +11739,2006-02-14T15:16:03Z,4568,373,,2,2020-02-15T06:59:44Z +11740,2005-08-17T08:48:31Z,2441,27,2005-08-24T07:47:31Z,2,2020-02-15T06:59:44Z +11741,2005-08-17T08:48:39Z,1819,473,2005-08-20T07:37:39Z,1,2020-02-15T06:59:44Z +11742,2005-08-17T08:48:43Z,596,470,2005-08-23T07:18:43Z,2,2020-02-15T06:59:44Z +11743,2005-08-17T08:49:05Z,294,336,2005-08-22T08:53:05Z,2,2020-02-15T06:59:44Z +11744,2005-08-17T08:54:30Z,297,26,2005-08-25T03:28:30Z,1,2020-02-15T06:59:44Z +11745,2005-08-17T09:00:01Z,4018,240,2005-08-26T14:29:01Z,2,2020-02-15T06:59:44Z +11746,2005-08-17T09:03:24Z,4571,299,2005-08-25T06:08:24Z,2,2020-02-15T06:59:44Z +11747,2005-08-17T09:03:31Z,1041,555,2005-08-19T08:23:31Z,2,2020-02-15T06:59:44Z +11748,2005-08-17T09:04:02Z,1175,595,2005-08-21T12:22:02Z,2,2020-02-15T06:59:44Z +11749,2005-08-17T09:04:03Z,4141,567,2005-08-19T09:32:03Z,2,2020-02-15T06:59:44Z +11750,2005-08-17T09:07:00Z,665,190,2005-08-23T08:16:00Z,2,2020-02-15T06:59:44Z +11751,2005-08-17T09:07:56Z,3309,51,2005-08-26T13:16:56Z,1,2020-02-15T06:59:44Z +11752,2005-08-17T09:10:55Z,1833,481,2005-08-18T06:22:55Z,1,2020-02-15T06:59:44Z +11753,2005-08-17T09:11:52Z,2599,43,2005-08-25T05:03:52Z,2,2020-02-15T06:59:44Z +11754,2006-02-14T15:16:03Z,3747,163,,2,2020-02-15T06:59:44Z +11755,2005-08-17T09:15:35Z,3457,513,2005-08-23T06:28:35Z,2,2020-02-15T06:59:44Z +11756,2005-08-17T09:29:22Z,1798,198,2005-08-21T12:17:22Z,1,2020-02-15T06:59:44Z +11757,2006-02-14T15:16:03Z,1295,550,,2,2020-02-15T06:59:44Z +11758,2005-08-17T09:33:02Z,11,533,2005-08-24T05:03:02Z,2,2020-02-15T06:59:44Z +11759,2005-08-17T09:41:23Z,2655,108,2005-08-19T11:58:23Z,2,2020-02-15T06:59:44Z +11760,2005-08-17T09:44:22Z,626,545,2005-08-24T14:39:22Z,2,2020-02-15T06:59:44Z +11761,2005-08-17T09:44:59Z,2230,13,2005-08-25T07:46:59Z,1,2020-02-15T06:59:44Z +11762,2005-08-17T09:48:06Z,1204,244,2005-08-26T13:12:06Z,2,2020-02-15T06:59:44Z +11763,2005-08-17T09:51:39Z,872,586,2005-08-21T10:15:39Z,2,2020-02-15T06:59:44Z +11764,2005-08-17T09:51:54Z,4502,252,2005-08-20T07:11:54Z,1,2020-02-15T06:59:44Z +11765,2005-08-17T09:55:28Z,4311,308,2005-08-19T15:53:28Z,2,2020-02-15T06:59:44Z +11766,2005-08-17T09:58:40Z,2999,544,2005-08-21T04:59:40Z,1,2020-02-15T06:59:44Z +11767,2005-08-17T10:00:40Z,2374,77,2005-08-25T04:14:40Z,2,2020-02-15T06:59:44Z +11768,2005-08-17T10:02:29Z,1307,564,2005-08-23T10:26:29Z,1,2020-02-15T06:59:44Z +11769,2005-08-17T10:04:49Z,1406,418,2005-08-20T09:22:49Z,1,2020-02-15T06:59:44Z +11770,2005-08-17T10:05:05Z,2862,475,2005-08-20T15:59:05Z,1,2020-02-15T06:59:44Z +11771,2005-08-17T10:17:09Z,2575,324,2005-08-25T10:58:09Z,1,2020-02-15T06:59:44Z +11772,2005-08-17T10:18:57Z,1021,237,2005-08-26T12:48:57Z,2,2020-02-15T06:59:44Z +11773,2005-08-17T10:19:51Z,1886,384,2005-08-23T04:30:51Z,1,2020-02-15T06:59:44Z +11774,2005-08-17T10:20:39Z,1679,488,2005-08-23T13:37:39Z,1,2020-02-15T06:59:44Z +11775,2005-08-17T10:25:53Z,256,574,2005-08-22T08:37:53Z,2,2020-02-15T06:59:44Z +11776,2005-08-17T10:27:19Z,2400,306,2005-08-20T14:02:19Z,2,2020-02-15T06:59:44Z +11777,2005-08-17T10:27:19Z,4065,83,2005-08-26T13:10:19Z,1,2020-02-15T06:59:44Z +11778,2005-08-17T10:31:40Z,1306,213,2005-08-25T13:53:40Z,2,2020-02-15T06:59:44Z +11779,2005-08-17T10:31:58Z,181,126,2005-08-24T15:28:58Z,2,2020-02-15T06:59:44Z +11780,2005-08-17T10:34:24Z,2268,297,2005-08-21T04:55:24Z,1,2020-02-15T06:59:44Z +11781,2005-08-17T10:37:00Z,1853,506,2005-08-21T12:03:00Z,2,2020-02-15T06:59:44Z +11782,2006-02-14T15:16:03Z,4098,354,,1,2020-02-15T06:59:44Z +11783,2005-08-17T10:39:24Z,979,152,2005-08-21T12:43:24Z,2,2020-02-15T06:59:44Z +11784,2005-08-17T10:48:05Z,3101,297,2005-08-19T06:47:05Z,1,2020-02-15T06:59:44Z +11785,2005-08-17T10:54:46Z,2760,182,2005-08-23T14:15:46Z,2,2020-02-15T06:59:44Z +11786,2005-08-17T10:57:40Z,1487,435,2005-08-24T06:48:40Z,2,2020-02-15T06:59:44Z +11787,2005-08-17T10:59:00Z,1980,195,2005-08-19T05:56:00Z,1,2020-02-15T06:59:44Z +11788,2005-08-17T10:59:18Z,1310,560,2005-08-22T11:12:18Z,1,2020-02-15T06:59:44Z +11789,2005-08-17T10:59:24Z,851,150,2005-08-26T16:17:24Z,1,2020-02-15T06:59:44Z +11790,2005-08-17T11:00:08Z,2384,451,2005-08-20T05:15:08Z,2,2020-02-15T06:59:44Z +11791,2005-08-17T11:01:11Z,3640,219,2005-08-22T06:31:11Z,2,2020-02-15T06:59:44Z +11792,2005-08-17T11:03:53Z,3703,376,2005-08-26T06:34:53Z,1,2020-02-15T06:59:44Z +11793,2005-08-17T11:05:53Z,1955,352,2005-08-25T12:25:53Z,1,2020-02-15T06:59:44Z +11794,2005-08-17T11:08:48Z,3486,453,2005-08-20T13:36:48Z,2,2020-02-15T06:59:44Z +11795,2005-08-17T11:13:38Z,2220,565,2005-08-19T14:20:38Z,2,2020-02-15T06:59:44Z +11796,2005-08-17T11:16:47Z,3983,435,2005-08-18T16:55:47Z,2,2020-02-15T06:59:44Z +11797,2005-08-17T11:17:21Z,1142,546,2005-08-18T09:14:21Z,2,2020-02-15T06:59:44Z +11798,2005-08-17T11:21:43Z,3974,448,2005-08-25T07:43:43Z,2,2020-02-15T06:59:44Z +11799,2005-08-17T11:25:25Z,40,501,2005-08-25T13:03:25Z,2,2020-02-15T06:59:44Z +11800,2005-08-17T11:29:52Z,2284,350,2005-08-21T08:37:52Z,1,2020-02-15T06:59:44Z +11801,2005-08-17T11:30:11Z,659,126,2005-08-23T09:54:11Z,1,2020-02-15T06:59:44Z +11802,2005-08-17T11:32:51Z,2815,221,2005-08-22T10:56:51Z,1,2020-02-15T06:59:44Z +11803,2005-08-17T11:42:08Z,3648,160,2005-08-22T07:45:08Z,2,2020-02-15T06:59:44Z +11804,2005-08-17T11:42:45Z,1040,556,2005-08-25T07:11:45Z,1,2020-02-15T06:59:44Z +11805,2005-08-17T11:48:47Z,1208,208,2005-08-26T11:06:47Z,2,2020-02-15T06:59:44Z +11806,2005-08-17T11:49:28Z,3203,125,2005-08-22T15:42:28Z,1,2020-02-15T06:59:44Z +11807,2005-08-17T11:51:15Z,4052,201,2005-08-21T11:47:15Z,2,2020-02-15T06:59:44Z +11808,2005-08-17T11:51:16Z,4042,462,2005-08-18T14:01:16Z,2,2020-02-15T06:59:44Z +11809,2005-08-17T11:51:39Z,1136,305,2005-08-24T17:14:39Z,1,2020-02-15T06:59:44Z +11810,2005-08-17T11:56:48Z,1548,270,2005-08-20T17:39:48Z,1,2020-02-15T06:59:44Z +11811,2005-08-17T11:59:18Z,195,130,2005-08-18T09:13:18Z,2,2020-02-15T06:59:44Z +11812,2005-08-17T12:00:54Z,119,132,2005-08-18T16:08:54Z,1,2020-02-15T06:59:44Z +11813,2005-08-17T12:06:54Z,1074,36,2005-08-21T17:52:54Z,2,2020-02-15T06:59:44Z +11814,2005-08-17T12:09:20Z,3462,509,2005-08-25T16:56:20Z,2,2020-02-15T06:59:44Z +11815,2005-08-17T12:13:26Z,272,192,2005-08-22T17:15:26Z,2,2020-02-15T06:59:44Z +11816,2005-08-17T12:14:16Z,3897,224,2005-08-19T06:15:16Z,2,2020-02-15T06:59:44Z +11817,2005-08-17T12:20:01Z,2297,38,2005-08-19T18:06:01Z,1,2020-02-15T06:59:44Z +11818,2005-08-17T12:22:04Z,213,512,2005-08-25T15:59:04Z,2,2020-02-15T06:59:44Z +11819,2005-08-17T12:25:17Z,656,208,2005-08-19T16:12:17Z,1,2020-02-15T06:59:44Z +11820,2005-08-17T12:25:33Z,2801,401,2005-08-19T07:04:33Z,2,2020-02-15T06:59:44Z +11821,2005-08-17T12:27:55Z,2711,20,2005-08-18T07:07:55Z,1,2020-02-15T06:59:44Z +11822,2005-08-17T12:32:39Z,1317,263,2005-08-18T12:30:39Z,2,2020-02-15T06:59:44Z +11823,2005-08-17T12:36:37Z,2626,352,2005-08-22T11:10:37Z,2,2020-02-15T06:59:44Z +11824,2005-08-17T12:37:54Z,2639,1,2005-08-19T10:11:54Z,2,2020-02-15T06:59:44Z +11825,2005-08-17T12:43:30Z,2656,296,2005-08-20T15:25:30Z,1,2020-02-15T06:59:44Z +11826,2005-08-17T12:43:46Z,1837,536,2005-08-19T16:59:46Z,2,2020-02-15T06:59:44Z +11827,2005-08-17T12:44:27Z,3064,523,2005-08-24T13:31:27Z,1,2020-02-15T06:59:44Z +11828,2005-08-17T12:48:28Z,2593,268,2005-08-24T09:24:28Z,2,2020-02-15T06:59:44Z +11829,2005-08-17T12:52:04Z,2207,563,2005-08-19T10:50:04Z,2,2020-02-15T06:59:44Z +11830,2005-08-17T12:53:15Z,3713,522,2005-08-25T08:08:15Z,1,2020-02-15T06:59:44Z +11831,2005-08-17T12:54:47Z,4562,32,2005-08-21T11:21:47Z,1,2020-02-15T06:59:44Z +11832,2005-08-17T12:55:31Z,2331,125,2005-08-19T08:31:31Z,1,2020-02-15T06:59:44Z +11833,2005-08-17T13:00:33Z,3728,424,2005-08-18T13:45:33Z,2,2020-02-15T06:59:44Z +11834,2005-08-17T13:00:40Z,2407,261,2005-08-22T12:50:40Z,1,2020-02-15T06:59:44Z +11835,2005-08-17T13:03:13Z,2796,479,2005-08-19T10:50:13Z,1,2020-02-15T06:59:44Z +11836,2005-08-17T13:03:36Z,2253,198,2005-08-19T17:15:36Z,1,2020-02-15T06:59:44Z +11837,2005-08-17T13:04:41Z,1085,81,2005-08-26T14:19:41Z,1,2020-02-15T06:59:44Z +11838,2005-08-17T13:06:00Z,3576,161,2005-08-20T11:44:00Z,1,2020-02-15T06:59:44Z +11839,2005-08-17T13:08:45Z,2282,80,2005-08-18T15:05:45Z,2,2020-02-15T06:59:44Z +11840,2005-08-17T13:09:01Z,1824,491,2005-08-19T17:42:01Z,1,2020-02-15T06:59:44Z +11841,2005-08-17T13:12:20Z,1524,270,2005-08-21T11:16:20Z,2,2020-02-15T06:59:44Z +11842,2005-08-17T13:13:37Z,2680,422,2005-08-20T08:32:37Z,1,2020-02-15T06:59:44Z +11843,2005-08-17T13:14:50Z,3091,187,2005-08-22T11:31:50Z,2,2020-02-15T06:59:44Z +11844,2005-08-17T13:16:04Z,3791,368,2005-08-18T10:16:04Z,1,2020-02-15T06:59:44Z +11845,2005-08-17T13:16:38Z,14,65,2005-08-18T11:21:38Z,1,2020-02-15T06:59:44Z +11846,2005-08-17T13:18:29Z,3306,283,2005-08-22T18:05:29Z,2,2020-02-15T06:59:44Z +11847,2006-02-14T15:16:03Z,1784,337,,1,2020-02-15T06:59:44Z +11848,2006-02-14T15:16:03Z,3680,152,,1,2020-02-15T06:59:44Z +11849,2005-08-17T13:24:55Z,1191,92,2005-08-22T12:50:55Z,2,2020-02-15T06:59:44Z +11850,2005-08-17T13:30:15Z,1437,80,2005-08-21T17:24:15Z,1,2020-02-15T06:59:44Z +11851,2005-08-17T13:30:27Z,3225,376,2005-08-20T15:34:27Z,2,2020-02-15T06:59:44Z +11852,2005-08-17T13:38:27Z,2358,596,2005-08-24T08:50:27Z,1,2020-02-15T06:59:44Z +11853,2005-08-17T13:39:32Z,3888,6,2005-08-23T18:44:32Z,2,2020-02-15T06:59:44Z +11854,2005-08-17T13:42:52Z,137,313,2005-08-26T14:04:52Z,1,2020-02-15T06:59:44Z +11855,2005-08-17T13:43:07Z,1062,535,2005-08-26T08:07:07Z,1,2020-02-15T06:59:44Z +11856,2005-08-17T13:44:49Z,305,28,2005-08-21T17:20:49Z,1,2020-02-15T06:59:44Z +11857,2005-08-17T13:48:30Z,101,146,2005-08-18T15:55:30Z,1,2020-02-15T06:59:44Z +11858,2005-08-17T13:50:31Z,3483,503,2005-08-19T08:45:31Z,2,2020-02-15T06:59:44Z +11859,2005-08-17T13:51:20Z,423,144,2005-08-21T13:47:20Z,2,2020-02-15T06:59:44Z +11860,2005-08-17T13:52:26Z,4354,257,2005-08-24T14:47:26Z,1,2020-02-15T06:59:44Z +11861,2005-08-17T13:53:47Z,2674,232,2005-08-21T16:07:47Z,1,2020-02-15T06:59:44Z +11862,2005-08-17T13:54:53Z,2604,529,2005-08-19T10:48:53Z,1,2020-02-15T06:59:44Z +11863,2005-08-17T13:56:01Z,1003,112,2005-08-23T18:38:01Z,1,2020-02-15T06:59:44Z +11864,2005-08-17T14:02:01Z,2985,96,2005-08-21T19:54:01Z,1,2020-02-15T06:59:44Z +11865,2005-08-17T14:03:46Z,2577,345,2005-08-19T08:39:46Z,1,2020-02-15T06:59:44Z +11866,2006-02-14T15:16:03Z,2758,200,,2,2020-02-15T06:59:44Z +11867,2005-08-17T14:04:28Z,938,434,2005-08-21T10:08:28Z,1,2020-02-15T06:59:44Z +11868,2005-08-17T14:05:34Z,2909,445,2005-08-19T15:47:34Z,1,2020-02-15T06:59:44Z +11869,2005-08-17T14:10:22Z,3453,19,2005-08-24T18:39:22Z,1,2020-02-15T06:59:44Z +11870,2005-08-17T14:11:28Z,4251,432,2005-08-24T16:43:28Z,1,2020-02-15T06:59:44Z +11871,2005-08-17T14:11:44Z,3013,484,2005-08-18T17:50:44Z,1,2020-02-15T06:59:44Z +11872,2005-08-17T14:11:45Z,4306,113,2005-08-21T17:02:45Z,2,2020-02-15T06:59:44Z +11873,2005-08-17T14:14:39Z,4021,554,2005-08-18T17:20:39Z,2,2020-02-15T06:59:44Z +11874,2005-08-17T14:16:40Z,2637,467,2005-08-18T15:51:40Z,2,2020-02-15T06:59:44Z +11875,2005-08-17T14:16:48Z,1787,294,2005-08-26T14:20:48Z,1,2020-02-15T06:59:44Z +11876,2005-08-17T14:18:21Z,3982,426,2005-08-20T19:48:21Z,1,2020-02-15T06:59:44Z +11877,2005-08-17T14:21:11Z,4528,445,2005-08-25T19:46:11Z,1,2020-02-15T06:59:44Z +11878,2005-08-17T14:23:52Z,255,549,2005-08-21T14:23:52Z,1,2020-02-15T06:59:44Z +11879,2005-08-17T14:25:09Z,2500,312,2005-08-26T09:19:09Z,1,2020-02-15T06:59:44Z +11880,2005-08-17T14:28:28Z,1539,597,2005-08-26T12:32:28Z,2,2020-02-15T06:59:44Z +11881,2005-08-17T14:31:56Z,3124,272,2005-08-21T11:05:56Z,1,2020-02-15T06:59:44Z +11882,2005-08-17T14:33:41Z,2401,234,2005-08-26T17:25:41Z,2,2020-02-15T06:59:44Z +11883,2005-08-17T14:41:28Z,221,551,2005-08-19T09:54:28Z,1,2020-02-15T06:59:44Z +11884,2005-08-17T14:43:23Z,797,178,2005-08-25T15:38:23Z,1,2020-02-15T06:59:44Z +11885,2005-08-17T14:53:53Z,3931,481,2005-08-22T10:59:53Z,1,2020-02-15T06:59:44Z +11886,2005-08-17T14:58:51Z,608,204,2005-08-19T16:07:51Z,2,2020-02-15T06:59:44Z +11887,2005-08-17T15:03:13Z,3290,54,2005-08-19T09:49:13Z,1,2020-02-15T06:59:44Z +11888,2005-08-17T15:04:05Z,1100,160,2005-08-25T18:52:05Z,2,2020-02-15T06:59:44Z +11889,2005-08-17T15:08:27Z,293,395,2005-08-18T17:10:27Z,1,2020-02-15T06:59:44Z +11890,2005-08-17T15:08:43Z,3023,487,2005-08-26T14:56:43Z,2,2020-02-15T06:59:44Z +11891,2005-08-17T15:11:55Z,2619,115,2005-08-22T11:11:55Z,2,2020-02-15T06:59:44Z +11892,2005-08-17T15:13:21Z,746,227,2005-08-21T09:19:21Z,2,2020-02-15T06:59:44Z +11893,2005-08-17T15:13:29Z,2321,496,2005-08-25T11:09:29Z,1,2020-02-15T06:59:44Z +11894,2005-08-17T15:15:01Z,1223,67,2005-08-26T13:49:01Z,1,2020-02-15T06:59:44Z +11895,2005-08-17T15:15:07Z,2156,236,2005-08-18T11:00:07Z,2,2020-02-15T06:59:44Z +11896,2005-08-17T15:19:54Z,259,436,2005-08-24T18:22:54Z,2,2020-02-15T06:59:44Z +11897,2005-08-17T15:24:06Z,3904,238,2005-08-23T11:50:06Z,2,2020-02-15T06:59:44Z +11898,2005-08-17T15:24:12Z,3163,169,2005-08-24T13:36:12Z,2,2020-02-15T06:59:44Z +11899,2005-08-17T15:29:12Z,3179,84,2005-08-24T17:41:12Z,1,2020-02-15T06:59:44Z +11900,2005-08-17T15:30:44Z,1931,239,2005-08-19T16:12:44Z,1,2020-02-15T06:59:44Z +11901,2005-08-17T15:35:47Z,4274,70,2005-08-20T10:33:47Z,2,2020-02-15T06:59:44Z +11902,2005-08-17T15:37:34Z,1387,63,2005-08-22T17:28:34Z,2,2020-02-15T06:59:44Z +11903,2005-08-17T15:37:45Z,1196,542,2005-08-23T18:31:45Z,2,2020-02-15T06:59:44Z +11904,2005-08-17T15:39:26Z,2846,145,2005-08-21T18:24:26Z,2,2020-02-15T06:59:44Z +11905,2005-08-17T15:40:18Z,2725,349,2005-08-26T15:14:18Z,2,2020-02-15T06:59:44Z +11906,2005-08-17T15:40:46Z,325,478,2005-08-20T15:20:46Z,2,2020-02-15T06:59:44Z +11907,2005-08-17T15:40:47Z,3928,505,2005-08-20T19:55:47Z,2,2020-02-15T06:59:44Z +11908,2005-08-17T15:43:09Z,3390,314,2005-08-24T14:32:09Z,2,2020-02-15T06:59:44Z +11909,2006-02-14T15:16:03Z,871,474,,1,2020-02-15T06:59:44Z +11910,2005-08-17T15:44:37Z,4254,418,2005-08-19T10:58:37Z,2,2020-02-15T06:59:44Z +11911,2005-08-17T15:51:35Z,3578,472,2005-08-26T20:26:35Z,2,2020-02-15T06:59:44Z +11912,2005-08-17T15:51:49Z,744,573,2005-08-24T18:48:49Z,1,2020-02-15T06:59:44Z +11913,2005-08-17T15:53:17Z,741,295,2005-08-24T18:50:17Z,2,2020-02-15T06:59:44Z +11914,2005-08-17T16:04:42Z,1634,230,2005-08-22T19:29:42Z,1,2020-02-15T06:59:44Z +11915,2005-08-17T16:05:28Z,1557,269,2005-08-25T19:53:28Z,2,2020-02-15T06:59:44Z +11916,2005-08-17T16:05:51Z,2631,86,2005-08-20T10:23:51Z,1,2020-02-15T06:59:44Z +11917,2005-08-17T16:08:17Z,1608,270,2005-08-20T20:01:17Z,1,2020-02-15T06:59:44Z +11918,2005-08-17T16:08:42Z,2169,533,2005-08-20T20:12:42Z,1,2020-02-15T06:59:44Z +11919,2005-08-17T16:08:49Z,4497,40,2005-08-20T16:59:49Z,2,2020-02-15T06:59:44Z +11920,2005-08-17T16:10:19Z,4253,402,2005-08-20T13:54:19Z,2,2020-02-15T06:59:44Z +11921,2005-08-17T16:12:27Z,494,485,2005-08-25T22:07:27Z,1,2020-02-15T06:59:44Z +11922,2005-08-17T16:20:37Z,3707,15,2005-08-26T16:53:37Z,2,2020-02-15T06:59:44Z +11923,2005-08-17T16:21:47Z,1907,72,2005-08-18T14:26:47Z,2,2020-02-15T06:59:44Z +11924,2005-08-17T16:22:05Z,1711,202,2005-08-26T12:34:05Z,1,2020-02-15T06:59:44Z +11925,2005-08-17T16:23:04Z,1441,370,2005-08-21T11:38:04Z,1,2020-02-15T06:59:44Z +11926,2005-08-17T16:25:02Z,2111,516,2005-08-22T11:36:02Z,1,2020-02-15T06:59:44Z +11927,2005-08-17T16:25:03Z,3134,178,2005-08-23T16:41:03Z,1,2020-02-15T06:59:44Z +11928,2005-08-17T16:28:24Z,79,261,2005-08-23T17:50:24Z,2,2020-02-15T06:59:44Z +11929,2005-08-17T16:28:51Z,3765,327,2005-08-25T19:36:51Z,1,2020-02-15T06:59:44Z +11930,2005-08-17T16:28:53Z,1299,5,2005-08-25T10:31:53Z,1,2020-02-15T06:59:44Z +11931,2005-08-17T16:35:14Z,2022,242,2005-08-19T19:16:14Z,1,2020-02-15T06:59:44Z +11932,2005-08-17T16:36:12Z,151,364,2005-08-18T19:34:12Z,2,2020-02-15T06:59:44Z +11933,2005-08-17T16:38:20Z,2574,438,2005-08-22T14:31:20Z,1,2020-02-15T06:59:44Z +11934,2005-08-17T16:40:00Z,1230,596,2005-08-20T20:13:00Z,2,2020-02-15T06:59:44Z +11935,2005-08-17T16:42:13Z,1640,66,2005-08-22T20:38:13Z,2,2020-02-15T06:59:44Z +11936,2005-08-17T16:45:34Z,1127,380,2005-08-21T13:33:34Z,2,2020-02-15T06:59:44Z +11937,2005-08-17T16:48:36Z,2926,515,2005-08-24T19:01:36Z,1,2020-02-15T06:59:44Z +11938,2005-08-17T16:54:54Z,3927,426,2005-08-24T19:18:54Z,1,2020-02-15T06:59:44Z +11939,2005-08-17T16:55:57Z,3305,516,2005-08-24T21:36:57Z,1,2020-02-15T06:59:44Z +11940,2005-08-17T16:56:28Z,1188,163,2005-08-18T15:09:28Z,1,2020-02-15T06:59:44Z +11941,2005-08-17T16:56:57Z,159,566,2005-08-24T16:29:57Z,1,2020-02-15T06:59:44Z +11942,2006-02-14T15:16:03Z,4094,576,,2,2020-02-15T06:59:44Z +11943,2005-08-17T17:00:42Z,4466,69,2005-08-26T22:07:42Z,1,2020-02-15T06:59:44Z +11944,2005-08-17T17:02:42Z,27,389,2005-08-21T16:40:42Z,2,2020-02-15T06:59:44Z +11945,2005-08-17T17:05:33Z,1108,380,2005-08-20T18:37:33Z,2,2020-02-15T06:59:44Z +11946,2005-08-17T17:05:53Z,2953,569,2005-08-19T13:56:53Z,1,2020-02-15T06:59:44Z +11947,2005-08-17T17:08:13Z,2928,220,2005-08-23T21:53:13Z,1,2020-02-15T06:59:44Z +11948,2005-08-17T17:11:05Z,3329,40,2005-08-25T21:16:05Z,2,2020-02-15T06:59:44Z +11949,2005-08-17T17:12:26Z,854,198,2005-08-23T20:48:26Z,1,2020-02-15T06:59:44Z +11950,2005-08-17T17:13:16Z,4412,190,2005-08-26T21:25:16Z,1,2020-02-15T06:59:44Z +11951,2005-08-17T17:14:02Z,1394,155,2005-08-26T12:04:02Z,2,2020-02-15T06:59:44Z +11952,2005-08-17T17:14:57Z,2411,288,2005-08-19T19:15:57Z,1,2020-02-15T06:59:44Z +11953,2005-08-17T17:16:42Z,2993,399,2005-08-23T18:28:42Z,1,2020-02-15T06:59:44Z +11954,2005-08-17T17:18:36Z,220,145,2005-08-18T19:49:36Z,1,2020-02-15T06:59:44Z +11955,2005-08-17T17:21:35Z,1221,319,2005-08-24T22:06:35Z,1,2020-02-15T06:59:44Z +11956,2005-08-17T17:22:05Z,2533,457,2005-08-25T22:19:05Z,2,2020-02-15T06:59:44Z +11957,2005-08-17T17:22:29Z,1924,198,2005-08-23T21:47:29Z,2,2020-02-15T06:59:44Z +11958,2005-08-17T17:23:20Z,2061,217,2005-08-24T14:47:20Z,2,2020-02-15T06:59:44Z +11959,2005-08-17T17:23:35Z,2694,101,2005-08-20T20:57:35Z,1,2020-02-15T06:59:44Z +11960,2005-08-17T17:24:30Z,3924,84,2005-08-18T14:28:30Z,1,2020-02-15T06:59:44Z +11961,2005-08-17T17:28:01Z,2015,276,2005-08-21T20:43:01Z,1,2020-02-15T06:59:44Z +11962,2005-08-17T17:34:38Z,4384,29,2005-08-21T12:59:38Z,2,2020-02-15T06:59:44Z +11963,2005-08-17T17:35:47Z,232,211,2005-08-23T16:19:47Z,2,2020-02-15T06:59:44Z +11964,2005-08-17T17:37:03Z,2225,309,2005-08-25T11:55:03Z,2,2020-02-15T06:59:44Z +11965,2005-08-17T17:39:45Z,194,490,2005-08-19T12:05:45Z,1,2020-02-15T06:59:44Z +11966,2005-08-17T17:40:04Z,3702,283,2005-08-20T15:45:04Z,1,2020-02-15T06:59:44Z +11967,2005-08-17T17:45:00Z,1151,521,2005-08-22T13:03:00Z,1,2020-02-15T06:59:44Z +11968,2005-08-17T17:47:34Z,698,239,2005-08-18T19:40:34Z,1,2020-02-15T06:59:44Z +11969,2005-08-17T17:49:37Z,668,550,2005-08-19T19:45:37Z,2,2020-02-15T06:59:44Z +11970,2005-08-17T17:53:09Z,1779,21,2005-08-24T14:41:09Z,1,2020-02-15T06:59:44Z +11971,2005-08-17T17:53:42Z,2756,131,2005-08-18T12:11:42Z,2,2020-02-15T06:59:44Z +11972,2005-08-17T17:55:46Z,1282,308,2005-08-22T15:31:46Z,2,2020-02-15T06:59:44Z +11973,2005-08-17T17:55:58Z,1472,131,2005-08-21T19:55:58Z,2,2020-02-15T06:59:44Z +11974,2005-08-17T17:56:48Z,1609,485,2005-08-21T19:14:48Z,2,2020-02-15T06:59:44Z +11975,2005-08-17T17:58:39Z,3843,458,2005-08-20T19:11:39Z,2,2020-02-15T06:59:44Z +11976,2005-08-17T17:59:19Z,498,373,2005-08-23T14:51:19Z,2,2020-02-15T06:59:44Z +11977,2005-08-17T18:01:15Z,1528,536,2005-08-23T23:03:15Z,1,2020-02-15T06:59:44Z +11978,2005-08-17T18:02:10Z,4380,499,2005-08-18T20:40:10Z,2,2020-02-15T06:59:44Z +11979,2005-08-17T18:07:13Z,568,255,2005-08-19T23:12:13Z,1,2020-02-15T06:59:44Z +11980,2005-08-17T18:10:18Z,4165,589,2005-08-20T13:28:18Z,1,2020-02-15T06:59:44Z +11981,2005-08-17T18:10:40Z,3228,294,2005-08-20T16:56:40Z,1,2020-02-15T06:59:44Z +11982,2005-08-17T18:13:07Z,118,186,2005-08-18T19:06:07Z,1,2020-02-15T06:59:44Z +11983,2005-08-17T18:13:55Z,2580,304,2005-08-23T18:27:55Z,2,2020-02-15T06:59:44Z +11984,2005-08-17T18:16:30Z,3577,96,2005-08-24T21:09:30Z,2,2020-02-15T06:59:44Z +11985,2005-08-17T18:19:44Z,2208,198,2005-08-18T19:14:44Z,2,2020-02-15T06:59:44Z +11986,2005-08-17T18:21:58Z,1610,352,2005-08-18T13:05:58Z,1,2020-02-15T06:59:44Z +11987,2005-08-17T18:21:59Z,1478,494,2005-08-25T19:20:59Z,1,2020-02-15T06:59:44Z +11988,2005-08-17T18:23:50Z,3429,62,2005-08-18T22:30:50Z,2,2020-02-15T06:59:44Z +11989,2005-08-17T18:23:58Z,3686,439,2005-08-20T20:31:58Z,2,2020-02-15T06:59:44Z +11990,2005-08-17T18:26:22Z,3012,17,2005-08-19T14:34:22Z,2,2020-02-15T06:59:44Z +11991,2005-08-17T18:27:08Z,940,361,2005-08-25T14:07:08Z,1,2020-02-15T06:59:44Z +11992,2005-08-17T18:27:22Z,4132,136,2005-08-26T22:38:22Z,2,2020-02-15T06:59:44Z +11993,2005-08-17T18:27:49Z,295,303,2005-08-21T00:04:49Z,1,2020-02-15T06:59:44Z +11994,2005-08-17T18:29:35Z,3428,319,2005-08-25T23:39:35Z,1,2020-02-15T06:59:44Z +11995,2006-02-14T15:16:03Z,3953,69,,1,2020-02-15T06:59:44Z +11996,2005-08-17T18:34:37Z,2720,510,2005-08-20T22:25:37Z,2,2020-02-15T06:59:44Z +11997,2005-08-17T18:34:38Z,2193,411,2005-08-26T00:12:38Z,2,2020-02-15T06:59:44Z +11998,2005-08-17T18:46:21Z,4258,299,2005-08-18T20:29:21Z,1,2020-02-15T06:59:44Z +11999,2005-08-17T18:47:07Z,4333,125,2005-08-20T23:26:07Z,2,2020-02-15T06:59:44Z +12000,2005-08-17T18:49:44Z,2256,149,2005-08-24T16:34:44Z,2,2020-02-15T06:59:44Z +12001,2006-02-14T15:16:03Z,4158,52,,2,2020-02-15T06:59:44Z +12002,2005-08-17T18:56:02Z,1386,75,2005-08-20T17:36:02Z,1,2020-02-15T06:59:44Z +12003,2005-08-17T18:56:05Z,3868,70,2005-08-18T23:52:05Z,1,2020-02-15T06:59:44Z +12004,2005-08-17T18:56:53Z,2690,499,2005-08-26T14:56:53Z,1,2020-02-15T06:59:44Z +12005,2005-08-17T18:56:55Z,2062,403,2005-08-25T20:23:55Z,2,2020-02-15T06:59:44Z +12006,2005-08-17T19:09:12Z,4072,272,2005-08-24T13:50:12Z,1,2020-02-15T06:59:44Z +12007,2005-08-17T19:10:34Z,3007,268,2005-08-24T14:09:34Z,1,2020-02-15T06:59:44Z +12008,2005-08-17T19:16:18Z,865,562,2005-08-18T14:24:18Z,2,2020-02-15T06:59:44Z +12009,2006-02-14T15:16:03Z,2134,296,,2,2020-02-15T06:59:44Z +12010,2005-08-17T19:17:54Z,1076,554,2005-08-26T00:41:54Z,1,2020-02-15T06:59:44Z +12011,2005-08-17T19:19:44Z,495,313,2005-08-23T00:56:44Z,2,2020-02-15T06:59:44Z +12012,2005-08-17T19:20:48Z,2698,69,2005-08-22T16:50:48Z,1,2020-02-15T06:59:44Z +12013,2005-08-17T19:23:02Z,3530,586,2005-08-23T00:31:02Z,2,2020-02-15T06:59:44Z +12014,2005-08-17T19:29:44Z,1778,554,2005-08-23T20:40:44Z,1,2020-02-15T06:59:44Z +12015,2005-08-17T19:32:44Z,593,11,2005-08-23T13:36:44Z,2,2020-02-15T06:59:44Z +12016,2005-08-17T19:33:24Z,2109,327,2005-08-21T19:59:24Z,2,2020-02-15T06:59:44Z +12017,2005-08-17T19:33:49Z,344,573,2005-08-22T01:16:49Z,2,2020-02-15T06:59:44Z +12018,2005-08-17T19:44:46Z,1921,319,2005-08-26T20:24:46Z,1,2020-02-15T06:59:44Z +12019,2005-08-17T19:48:55Z,2566,90,2005-08-21T18:20:55Z,1,2020-02-15T06:59:44Z +12020,2005-08-17T19:50:33Z,3258,72,2005-08-25T17:54:33Z,1,2020-02-15T06:59:44Z +12021,2005-08-17T19:52:43Z,3977,27,2005-08-23T21:49:43Z,1,2020-02-15T06:59:44Z +12022,2005-08-17T19:52:45Z,2067,461,2005-08-18T18:26:45Z,2,2020-02-15T06:59:44Z +12023,2005-08-17T19:54:54Z,247,22,2005-08-26T23:03:54Z,1,2020-02-15T06:59:44Z +12024,2005-08-17T19:57:34Z,2398,484,2005-08-21T23:00:34Z,2,2020-02-15T06:59:44Z +12025,2005-08-17T19:59:06Z,4019,209,2005-08-23T14:39:06Z,2,2020-02-15T06:59:44Z +12026,2005-08-17T20:00:10Z,1568,468,2005-08-26T01:54:10Z,1,2020-02-15T06:59:44Z +12027,2005-08-17T20:01:12Z,45,285,2005-08-26T21:08:12Z,2,2020-02-15T06:59:44Z +12028,2005-08-17T20:03:47Z,607,316,2005-08-23T17:09:47Z,2,2020-02-15T06:59:44Z +12029,2005-08-17T20:07:01Z,3516,148,2005-08-19T19:36:01Z,2,2020-02-15T06:59:44Z +12030,2005-08-17T20:10:48Z,449,434,2005-08-19T00:32:48Z,1,2020-02-15T06:59:44Z +12031,2005-08-17T20:11:35Z,2793,10,2005-08-24T23:48:35Z,2,2020-02-15T06:59:44Z +12032,2005-08-17T20:14:26Z,1106,141,2005-08-26T16:01:26Z,1,2020-02-15T06:59:44Z +12033,2005-08-17T20:14:34Z,2731,321,2005-08-26T00:22:34Z,2,2020-02-15T06:59:44Z +12034,2005-08-17T20:15:31Z,834,321,2005-08-24T15:46:31Z,2,2020-02-15T06:59:44Z +12035,2005-08-17T20:18:06Z,2335,469,2005-08-21T16:41:06Z,2,2020-02-15T06:59:44Z +12036,2005-08-17T20:19:06Z,3620,85,2005-08-18T19:57:06Z,2,2020-02-15T06:59:44Z +12037,2005-08-17T20:21:35Z,766,356,2005-08-22T17:16:35Z,2,2020-02-15T06:59:44Z +12038,2005-08-17T20:28:26Z,3794,148,2005-08-20T23:09:26Z,2,2020-02-15T06:59:44Z +12039,2005-08-17T20:29:08Z,4404,563,2005-08-23T21:20:08Z,2,2020-02-15T06:59:44Z +12040,2005-08-17T20:29:56Z,1288,558,2005-08-26T22:17:56Z,1,2020-02-15T06:59:44Z +12041,2005-08-17T20:34:33Z,2389,295,2005-08-19T00:47:33Z,1,2020-02-15T06:59:44Z +12042,2005-08-17T20:36:37Z,1772,570,2005-08-21T15:03:37Z,1,2020-02-15T06:59:44Z +12043,2005-08-17T20:38:21Z,3706,592,2005-08-22T16:52:21Z,2,2020-02-15T06:59:44Z +12044,2005-08-17T20:39:37Z,3377,388,2005-08-19T18:34:37Z,1,2020-02-15T06:59:44Z +12045,2005-08-17T20:40:46Z,469,556,2005-08-20T18:18:46Z,2,2020-02-15T06:59:44Z +12046,2005-08-17T20:47:46Z,3895,435,2005-08-19T16:09:46Z,2,2020-02-15T06:59:44Z +12047,2005-08-17T20:48:32Z,3886,251,2005-08-26T00:07:32Z,1,2020-02-15T06:59:44Z +12048,2005-08-17T20:49:24Z,3773,466,2005-08-27T02:01:24Z,2,2020-02-15T06:59:44Z +12049,2005-08-17T20:53:27Z,2433,178,2005-08-26T19:45:27Z,2,2020-02-15T06:59:44Z +12050,2005-08-17T20:55:25Z,2348,405,2005-08-22T20:31:25Z,2,2020-02-15T06:59:44Z +12051,2005-08-17T20:56:15Z,4001,579,2005-08-25T19:08:15Z,1,2020-02-15T06:59:44Z +12052,2005-08-17T20:57:02Z,99,536,2005-08-25T19:04:02Z,1,2020-02-15T06:59:44Z +12053,2005-08-17T20:57:27Z,4448,280,2005-08-20T19:51:27Z,1,2020-02-15T06:59:44Z +12054,2005-08-17T20:59:56Z,3780,53,2005-08-23T19:57:56Z,1,2020-02-15T06:59:44Z +12055,2005-08-17T21:02:19Z,1481,35,2005-08-18T15:24:19Z,1,2020-02-15T06:59:44Z +12056,2005-08-17T21:03:48Z,1091,460,2005-08-21T22:42:48Z,2,2020-02-15T06:59:44Z +12057,2005-08-17T21:04:35Z,1878,263,2005-08-25T00:17:35Z,1,2020-02-15T06:59:44Z +12058,2005-08-17T21:07:41Z,2438,540,2005-08-26T16:07:41Z,1,2020-02-15T06:59:44Z +12059,2005-08-17T21:09:23Z,4111,393,2005-08-25T23:09:23Z,1,2020-02-15T06:59:44Z +12060,2005-08-17T21:11:57Z,2373,127,2005-08-21T01:42:57Z,1,2020-02-15T06:59:44Z +12061,2005-08-17T21:13:35Z,144,532,2005-08-22T19:18:35Z,1,2020-02-15T06:59:44Z +12062,2005-08-17T21:24:47Z,1791,330,2005-08-20T20:35:47Z,2,2020-02-15T06:59:44Z +12063,2005-08-17T21:24:48Z,1141,550,2005-08-23T22:10:48Z,2,2020-02-15T06:59:44Z +12064,2006-02-14T15:16:03Z,298,284,,1,2020-02-15T06:59:44Z +12065,2005-08-17T21:31:46Z,3644,77,2005-08-26T02:26:46Z,2,2020-02-15T06:59:44Z +12066,2006-02-14T15:16:03Z,2474,267,,2,2020-02-15T06:59:44Z +12067,2005-08-17T21:36:47Z,2013,514,2005-08-22T01:10:47Z,2,2020-02-15T06:59:44Z +12068,2005-08-17T21:37:08Z,4327,388,2005-08-26T00:10:08Z,1,2020-02-15T06:59:44Z +12069,2005-08-17T21:39:40Z,631,389,2005-08-22T01:12:40Z,2,2020-02-15T06:59:44Z +12070,2005-08-17T21:46:47Z,1357,158,2005-08-22T22:59:47Z,1,2020-02-15T06:59:44Z +12071,2005-08-17T21:49:14Z,1874,507,2005-08-22T18:20:14Z,1,2020-02-15T06:59:44Z +12072,2005-08-17T21:50:25Z,209,61,2005-08-25T22:36:25Z,2,2020-02-15T06:59:44Z +12073,2005-08-17T21:50:39Z,2939,173,2005-08-21T02:59:39Z,1,2020-02-15T06:59:44Z +12074,2005-08-17T21:50:57Z,711,417,2005-08-20T00:58:57Z,2,2020-02-15T06:59:44Z +12075,2005-08-17T21:54:55Z,3147,125,2005-08-23T23:04:55Z,1,2020-02-15T06:59:44Z +12076,2005-08-17T21:58:19Z,4278,298,2005-08-20T22:10:19Z,1,2020-02-15T06:59:44Z +12077,2005-08-17T21:59:14Z,3589,550,2005-08-22T03:23:14Z,1,2020-02-15T06:59:44Z +12078,2005-08-17T22:00:22Z,684,137,2005-08-24T02:54:22Z,2,2020-02-15T06:59:44Z +12079,2005-08-17T22:04:17Z,646,230,2005-08-24T20:22:17Z,2,2020-02-15T06:59:44Z +12080,2005-08-17T22:08:04Z,1491,394,2005-08-19T22:55:04Z,2,2020-02-15T06:59:44Z +12081,2005-08-17T22:10:46Z,620,597,2005-08-22T22:37:46Z,1,2020-02-15T06:59:44Z +12082,2005-08-17T22:13:15Z,3435,521,2005-08-24T18:30:15Z,1,2020-02-15T06:59:44Z +12083,2005-08-17T22:13:37Z,1985,474,2005-08-19T19:01:37Z,2,2020-02-15T06:59:44Z +12084,2005-08-17T22:16:49Z,2706,60,2005-08-24T17:42:49Z,2,2020-02-15T06:59:44Z +12085,2005-08-17T22:17:09Z,600,31,2005-08-21T01:45:09Z,1,2020-02-15T06:59:44Z +12086,2005-08-17T22:20:01Z,3963,140,2005-08-26T02:14:01Z,1,2020-02-15T06:59:44Z +12087,2005-08-17T22:20:12Z,324,144,2005-08-20T02:11:12Z,2,2020-02-15T06:59:44Z +12088,2005-08-17T22:20:16Z,1754,360,2005-08-25T23:30:16Z,2,2020-02-15T06:59:44Z +12089,2005-08-17T22:20:29Z,651,538,2005-08-24T02:12:29Z,1,2020-02-15T06:59:44Z +12090,2005-08-17T22:21:43Z,3392,391,2005-08-20T23:53:43Z,2,2020-02-15T06:59:44Z +12091,2005-08-17T22:22:50Z,2161,555,2005-08-27T03:55:50Z,1,2020-02-15T06:59:44Z +12092,2005-08-17T22:28:15Z,3964,38,2005-08-18T16:46:15Z,2,2020-02-15T06:59:44Z +12093,2005-08-17T22:28:40Z,216,141,2005-08-22T02:05:40Z,1,2020-02-15T06:59:44Z +12094,2005-08-17T22:31:04Z,1050,130,2005-08-23T22:45:04Z,1,2020-02-15T06:59:44Z +12095,2005-08-17T22:32:37Z,1089,46,2005-08-20T04:00:37Z,1,2020-02-15T06:59:44Z +12096,2005-08-17T22:32:50Z,44,463,2005-08-25T03:33:50Z,1,2020-02-15T06:59:44Z +12097,2005-08-17T22:35:24Z,4135,325,2005-08-18T20:31:24Z,2,2020-02-15T06:59:44Z +12098,2005-08-17T22:38:31Z,534,545,2005-08-20T01:56:31Z,1,2020-02-15T06:59:44Z +12099,2005-08-17T22:38:54Z,1743,195,2005-08-18T21:29:54Z,2,2020-02-15T06:59:44Z +12100,2005-08-17T22:41:10Z,4365,391,2005-08-24T21:31:10Z,2,2020-02-15T06:59:44Z +12101,2006-02-14T15:16:03Z,1556,479,,1,2020-02-15T06:59:44Z +12102,2005-08-17T22:45:26Z,4268,392,2005-08-24T01:47:26Z,2,2020-02-15T06:59:44Z +12103,2005-08-17T22:49:09Z,4363,153,2005-08-24T21:53:09Z,1,2020-02-15T06:59:44Z +12104,2005-08-17T22:53:00Z,4551,16,2005-08-23T19:49:00Z,1,2020-02-15T06:59:44Z +12105,2005-08-17T22:54:45Z,2848,390,2005-08-21T00:33:45Z,2,2020-02-15T06:59:44Z +12106,2005-08-17T22:55:32Z,3234,465,2005-08-19T23:55:32Z,2,2020-02-15T06:59:44Z +12107,2005-08-17T22:56:24Z,1060,141,2005-08-24T19:36:24Z,1,2020-02-15T06:59:44Z +12108,2005-08-17T22:56:39Z,1675,207,2005-08-26T19:37:39Z,1,2020-02-15T06:59:44Z +12109,2005-08-17T22:58:35Z,1423,509,2005-08-25T19:44:35Z,2,2020-02-15T06:59:44Z +12110,2005-08-17T22:59:46Z,2984,511,2005-08-23T17:51:46Z,1,2020-02-15T06:59:44Z +12111,2005-08-17T22:59:55Z,2905,317,2005-08-22T19:33:55Z,2,2020-02-15T06:59:44Z +12112,2005-08-17T23:00:31Z,4290,576,2005-08-25T02:05:31Z,1,2020-02-15T06:59:44Z +12113,2005-08-17T23:01:00Z,2707,393,2005-08-25T03:57:00Z,2,2020-02-15T06:59:44Z +12114,2005-08-17T23:02:00Z,1405,65,2005-08-26T18:02:00Z,1,2020-02-15T06:59:44Z +12115,2005-08-17T23:04:15Z,1228,457,2005-08-20T22:25:15Z,2,2020-02-15T06:59:44Z +12116,2006-02-14T15:16:03Z,3082,560,,2,2020-02-15T06:59:44Z +12117,2005-08-17T23:11:12Z,4140,303,2005-08-22T23:56:12Z,1,2020-02-15T06:59:44Z +12118,2005-08-17T23:14:25Z,158,89,2005-08-26T22:26:25Z,1,2020-02-15T06:59:44Z +12119,2005-08-17T23:16:44Z,4298,567,2005-08-20T02:13:44Z,2,2020-02-15T06:59:44Z +12120,2005-08-17T23:16:46Z,2912,323,2005-08-19T00:11:46Z,2,2020-02-15T06:59:44Z +12121,2005-08-17T23:20:40Z,3423,69,2005-08-22T21:30:40Z,2,2020-02-15T06:59:44Z +12122,2005-08-17T23:20:45Z,4030,375,2005-08-25T04:23:45Z,2,2020-02-15T06:59:44Z +12123,2005-08-17T23:22:18Z,361,497,2005-08-19T23:36:18Z,2,2020-02-15T06:59:44Z +12124,2005-08-17T23:22:46Z,2036,22,2005-08-21T01:40:46Z,1,2020-02-15T06:59:44Z +12125,2005-08-17T23:24:25Z,136,573,2005-08-25T03:08:25Z,2,2020-02-15T06:59:44Z +12126,2005-08-17T23:25:21Z,2304,302,2005-08-23T21:51:21Z,1,2020-02-15T06:59:44Z +12127,2006-02-14T15:16:03Z,4218,582,,2,2020-02-15T06:59:44Z +12128,2005-08-17T23:31:09Z,2252,415,2005-08-24T05:07:09Z,2,2020-02-15T06:59:44Z +12129,2005-08-17T23:31:25Z,891,146,2005-08-26T19:10:25Z,2,2020-02-15T06:59:44Z +12130,2006-02-14T15:16:03Z,1358,516,,2,2020-02-15T06:59:44Z +12131,2005-08-17T23:34:16Z,3380,21,2005-08-26T01:18:16Z,1,2020-02-15T06:59:44Z +12132,2005-08-17T23:37:03Z,2600,403,2005-08-22T04:53:03Z,2,2020-02-15T06:59:44Z +12133,2005-08-17T23:47:16Z,1958,132,2005-08-19T03:46:16Z,2,2020-02-15T06:59:44Z +12134,2005-08-17T23:49:43Z,2682,288,2005-08-21T21:00:43Z,1,2020-02-15T06:59:44Z +12135,2005-08-17T23:50:24Z,1019,381,2005-08-23T18:01:24Z,2,2020-02-15T06:59:44Z +12136,2005-08-17T23:51:30Z,3944,527,2005-08-23T01:35:30Z,1,2020-02-15T06:59:44Z +12137,2005-08-17T23:52:26Z,3632,109,2005-08-27T00:19:26Z,1,2020-02-15T06:59:44Z +12138,2005-08-17T23:55:54Z,388,317,2005-08-26T23:32:54Z,1,2020-02-15T06:59:44Z +12139,2005-08-17T23:57:13Z,1537,342,2005-08-24T19:13:13Z,1,2020-02-15T06:59:44Z +12140,2005-08-17T23:57:55Z,322,408,2005-08-21T20:09:55Z,2,2020-02-15T06:59:44Z +12141,2006-02-14T15:16:03Z,731,101,,1,2020-02-15T06:59:44Z +12142,2005-08-18T00:04:12Z,3748,373,2005-08-24T01:24:12Z,2,2020-02-15T06:59:44Z +12143,2005-08-18T00:06:26Z,2876,117,2005-08-24T02:45:26Z,2,2020-02-15T06:59:44Z +12144,2006-02-14T15:16:03Z,512,587,,1,2020-02-15T06:59:44Z +12145,2005-08-18T00:10:04Z,3482,5,2005-08-26T00:51:04Z,1,2020-02-15T06:59:44Z +12146,2005-08-18T00:10:04Z,3833,434,2005-08-25T19:18:04Z,2,2020-02-15T06:59:44Z +12147,2005-08-18T00:10:20Z,705,41,2005-08-23T20:36:20Z,2,2020-02-15T06:59:44Z +12148,2005-08-18T00:13:15Z,2409,254,2005-08-20T01:27:15Z,2,2020-02-15T06:59:44Z +12149,2005-08-18T00:13:51Z,3696,277,2005-08-26T19:47:51Z,1,2020-02-15T06:59:44Z +12150,2005-08-18T00:13:55Z,3781,555,2005-08-20T23:35:55Z,2,2020-02-15T06:59:44Z +12151,2005-08-18T00:14:03Z,1976,4,2005-08-18T23:52:03Z,2,2020-02-15T06:59:44Z +12152,2005-08-18T00:21:35Z,2797,367,2005-08-22T02:51:35Z,1,2020-02-15T06:59:44Z +12153,2005-08-18T00:22:30Z,3929,387,2005-08-23T04:13:30Z,2,2020-02-15T06:59:44Z +12154,2005-08-18T00:23:56Z,2491,163,2005-08-21T00:31:56Z,2,2020-02-15T06:59:44Z +12155,2005-08-18T00:24:30Z,2065,315,2005-08-18T19:12:30Z,2,2020-02-15T06:59:44Z +12156,2005-08-18T00:27:33Z,3270,212,2005-08-26T01:43:33Z,1,2020-02-15T06:59:44Z +12157,2005-08-18T00:33:45Z,2311,569,2005-08-22T19:33:45Z,1,2020-02-15T06:59:44Z +12158,2005-08-18T00:34:20Z,4121,289,2005-08-22T20:10:20Z,2,2020-02-15T06:59:44Z +12159,2005-08-18T00:36:09Z,2243,106,2005-08-27T06:31:09Z,1,2020-02-15T06:59:44Z +12160,2005-08-18T00:37:59Z,1328,481,2005-08-19T20:51:59Z,1,2020-02-15T06:59:44Z +12161,2005-08-18T00:41:46Z,2420,444,2005-08-26T22:59:46Z,2,2020-02-15T06:59:44Z +12162,2005-08-18T00:44:30Z,2697,284,2005-08-25T03:34:30Z,1,2020-02-15T06:59:44Z +12163,2005-08-18T00:46:01Z,1349,455,2005-08-22T06:16:01Z,1,2020-02-15T06:59:44Z +12164,2005-08-18T00:46:38Z,3849,587,2005-08-19T04:38:38Z,2,2020-02-15T06:59:44Z +12165,2005-08-18T00:53:37Z,4215,24,2005-08-27T00:09:37Z,2,2020-02-15T06:59:44Z +12166,2005-08-18T00:57:06Z,3627,184,2005-08-26T03:13:06Z,2,2020-02-15T06:59:44Z +12167,2005-08-18T01:00:02Z,3085,338,2005-08-21T00:04:02Z,2,2020-02-15T06:59:44Z +12168,2005-08-18T01:03:52Z,2859,535,2005-08-18T20:19:52Z,1,2020-02-15T06:59:44Z +12169,2005-08-18T01:05:54Z,2281,323,2005-08-24T02:16:54Z,2,2020-02-15T06:59:44Z +12170,2005-08-18T01:06:10Z,1125,289,2005-08-25T02:40:10Z,2,2020-02-15T06:59:44Z +12171,2005-08-18T01:06:13Z,454,457,2005-08-22T19:39:13Z,2,2020-02-15T06:59:44Z +12172,2005-08-18T01:07:00Z,1162,226,2005-08-22T21:01:00Z,2,2020-02-15T06:59:44Z +12173,2005-08-18T01:08:34Z,2830,41,2005-08-24T20:52:34Z,1,2020-02-15T06:59:44Z +12174,2005-08-18T01:08:53Z,1458,101,2005-08-20T03:28:53Z,1,2020-02-15T06:59:44Z +12175,2005-08-18T01:10:17Z,4558,328,2005-08-19T05:25:17Z,2,2020-02-15T06:59:44Z +12176,2005-08-18T01:10:33Z,3873,255,2005-08-24T02:45:33Z,2,2020-02-15T06:59:44Z +12177,2005-08-18T01:15:47Z,522,470,2005-08-24T23:23:47Z,2,2020-02-15T06:59:44Z +12178,2005-08-18T01:17:32Z,1152,276,2005-08-25T19:32:32Z,1,2020-02-15T06:59:44Z +12179,2005-08-18T01:21:21Z,1499,222,2005-08-19T00:59:21Z,1,2020-02-15T06:59:44Z +12180,2005-08-18T01:28:15Z,2276,20,2005-08-20T20:52:15Z,2,2020-02-15T06:59:44Z +12181,2005-08-18T01:28:18Z,532,81,2005-08-23T21:17:18Z,2,2020-02-15T06:59:44Z +12182,2005-08-18T01:30:19Z,296,555,2005-08-21T05:52:19Z,1,2020-02-15T06:59:44Z +12183,2005-08-18T01:34:13Z,3153,344,2005-08-24T04:38:13Z,1,2020-02-15T06:59:44Z +12184,2005-08-18T01:36:00Z,1723,51,2005-08-21T01:59:00Z,1,2020-02-15T06:59:44Z +12185,2005-08-18T01:40:14Z,1558,588,2005-08-25T05:04:14Z,1,2020-02-15T06:59:44Z +12186,2005-08-18T01:43:36Z,1342,312,2005-08-23T07:13:36Z,1,2020-02-15T06:59:44Z +12187,2005-08-18T01:45:50Z,3360,38,2005-08-22T20:12:50Z,1,2020-02-15T06:59:44Z +12188,2005-08-18T01:51:43Z,2989,456,2005-08-18T22:23:43Z,1,2020-02-15T06:59:44Z +12189,2005-08-18T01:51:44Z,1764,363,2005-08-26T01:01:44Z,1,2020-02-15T06:59:44Z +12190,2005-08-18T01:54:44Z,2464,28,2005-08-27T04:32:44Z,1,2020-02-15T06:59:44Z +12191,2005-08-18T01:57:11Z,2667,316,2005-08-22T22:53:11Z,2,2020-02-15T06:59:44Z +12192,2005-08-18T02:01:40Z,3450,270,2005-08-21T05:45:40Z,1,2020-02-15T06:59:44Z +12193,2005-08-18T02:03:59Z,1086,290,2005-08-25T05:32:59Z,2,2020-02-15T06:59:44Z +12194,2005-08-18T02:04:47Z,292,558,2005-08-25T20:45:47Z,2,2020-02-15T06:59:44Z +12195,2005-08-18T02:07:49Z,943,347,2005-08-19T23:54:49Z,2,2020-02-15T06:59:44Z +12196,2005-08-18T02:08:48Z,4302,111,2005-08-26T00:39:48Z,1,2020-02-15T06:59:44Z +12197,2005-08-18T02:08:58Z,3687,564,2005-08-26T21:54:58Z,2,2020-02-15T06:59:44Z +12198,2005-08-18T02:09:20Z,1628,86,2005-08-21T21:28:20Z,2,2020-02-15T06:59:44Z +12199,2005-08-18T02:09:23Z,424,96,2005-08-22T20:33:23Z,1,2020-02-15T06:59:44Z +12200,2005-08-18T02:12:33Z,840,52,2005-08-18T20:47:33Z,2,2020-02-15T06:59:44Z +12201,2005-08-18T02:14:06Z,3676,540,2005-08-23T04:44:06Z,1,2020-02-15T06:59:44Z +12202,2005-08-18T02:14:08Z,672,563,2005-08-24T04:35:08Z,1,2020-02-15T06:59:44Z +12203,2005-08-18T02:18:52Z,4228,591,2005-08-22T21:01:52Z,1,2020-02-15T06:59:44Z +12204,2005-08-18T02:20:35Z,304,575,2005-08-26T01:27:35Z,2,2020-02-15T06:59:44Z +12205,2005-08-18T02:21:08Z,774,437,2005-08-27T00:08:08Z,2,2020-02-15T06:59:44Z +12206,2005-08-18T02:22:20Z,3275,254,2005-08-23T05:36:20Z,1,2020-02-15T06:59:44Z +12207,2005-08-18T02:24:07Z,3745,265,2005-08-22T07:53:07Z,1,2020-02-15T06:59:44Z +12208,2005-08-18T02:25:25Z,2039,551,2005-08-20T04:53:25Z,2,2020-02-15T06:59:44Z +12209,2005-08-18T02:27:20Z,279,243,2005-08-21T00:41:20Z,2,2020-02-15T06:59:44Z +12210,2005-08-18T02:27:29Z,3035,217,2005-08-20T23:32:29Z,2,2020-02-15T06:59:44Z +12211,2005-08-18T02:31:18Z,1484,19,2005-08-26T02:36:18Z,1,2020-02-15T06:59:44Z +12212,2005-08-18T02:33:29Z,3898,449,2005-08-25T07:10:29Z,2,2020-02-15T06:59:44Z +12213,2005-08-18T02:33:55Z,4058,157,2005-08-24T03:14:55Z,1,2020-02-15T06:59:44Z +12214,2005-08-18T02:34:22Z,2094,231,2005-08-21T07:48:22Z,2,2020-02-15T06:59:44Z +12215,2005-08-18T02:35:39Z,4095,47,2005-08-24T00:36:39Z,1,2020-02-15T06:59:44Z +12216,2005-08-18T02:37:07Z,4139,131,2005-08-19T02:09:07Z,2,2020-02-15T06:59:44Z +12217,2005-08-18T02:44:44Z,2556,105,2005-08-24T03:27:44Z,1,2020-02-15T06:59:44Z +12218,2005-08-18T02:48:14Z,1933,70,2005-08-21T01:52:14Z,2,2020-02-15T06:59:44Z +12219,2005-08-18T02:49:54Z,2249,271,2005-08-23T07:52:54Z,1,2020-02-15T06:59:44Z +12220,2005-08-18T02:50:02Z,982,530,2005-08-22T00:20:02Z,1,2020-02-15T06:59:44Z +12221,2005-08-18T02:50:51Z,2488,98,2005-08-27T06:22:51Z,2,2020-02-15T06:59:44Z +12222,2006-02-14T15:16:03Z,3949,22,,1,2020-02-15T06:59:44Z +12223,2005-08-18T02:58:40Z,4142,397,2005-08-23T23:30:40Z,2,2020-02-15T06:59:44Z +12224,2005-08-18T02:59:09Z,1781,372,2005-08-19T06:22:09Z,1,2020-02-15T06:59:44Z +12225,2005-08-18T03:00:11Z,1876,306,2005-08-24T05:01:11Z,1,2020-02-15T06:59:44Z +12226,2005-08-18T03:00:48Z,682,234,2005-08-25T00:43:48Z,2,2020-02-15T06:59:44Z +12227,2005-08-18T03:04:28Z,3671,591,2005-08-21T08:52:28Z,2,2020-02-15T06:59:44Z +12228,2005-08-18T03:08:10Z,2772,9,2005-08-20T02:48:10Z,1,2020-02-15T06:59:44Z +12229,2005-08-18T03:08:23Z,1123,382,2005-08-22T03:42:23Z,1,2020-02-15T06:59:44Z +12230,2005-08-18T03:11:04Z,1910,231,2005-08-27T04:06:04Z,1,2020-02-15T06:59:44Z +12231,2005-08-18T03:11:44Z,1115,231,2005-08-24T03:26:44Z,1,2020-02-15T06:59:44Z +12232,2005-08-18T03:14:14Z,2399,87,2005-08-19T05:44:14Z,2,2020-02-15T06:59:44Z +12233,2005-08-18T03:16:54Z,174,535,2005-08-22T04:48:54Z,2,2020-02-15T06:59:44Z +12234,2005-08-18T03:17:33Z,3823,352,2005-08-25T04:44:33Z,2,2020-02-15T06:59:44Z +12235,2005-08-18T03:17:50Z,957,595,2005-08-20T02:49:50Z,1,2020-02-15T06:59:44Z +12236,2005-08-18T03:19:29Z,1190,474,2005-08-23T07:39:29Z,2,2020-02-15T06:59:44Z +12237,2005-08-18T03:24:38Z,4422,381,2005-08-25T09:05:38Z,1,2020-02-15T06:59:44Z +12238,2005-08-18T03:25:08Z,4043,46,2005-08-20T02:41:08Z,2,2020-02-15T06:59:44Z +12239,2005-08-18T03:26:42Z,1948,75,2005-08-24T23:48:42Z,1,2020-02-15T06:59:44Z +12240,2005-08-18T03:27:11Z,1168,30,2005-08-26T04:34:11Z,2,2020-02-15T06:59:44Z +12241,2005-08-18T03:33:17Z,1261,248,2005-08-21T03:13:17Z,2,2020-02-15T06:59:44Z +12242,2005-08-18T03:37:31Z,2095,121,2005-08-25T06:50:31Z,1,2020-02-15T06:59:44Z +12243,2005-08-18T03:38:54Z,1829,354,2005-08-27T06:56:54Z,2,2020-02-15T06:59:44Z +12244,2005-08-18T03:39:11Z,4441,362,2005-08-21T02:57:11Z,2,2020-02-15T06:59:44Z +12245,2005-08-18T03:46:40Z,2960,576,2005-08-24T22:27:40Z,2,2020-02-15T06:59:44Z +12246,2005-08-18T03:48:41Z,3199,258,2005-08-25T05:12:41Z,1,2020-02-15T06:59:44Z +12247,2005-08-18T03:51:51Z,2264,254,2005-08-24T05:36:51Z,2,2020-02-15T06:59:44Z +12248,2005-08-18T03:53:18Z,2120,562,2005-08-22T04:53:18Z,1,2020-02-15T06:59:44Z +12249,2005-08-18T03:53:34Z,3586,135,2005-08-21T01:14:34Z,1,2020-02-15T06:59:44Z +12250,2005-08-18T03:57:29Z,921,1,2005-08-22T23:05:29Z,1,2020-02-15T06:59:44Z +12251,2005-08-18T03:59:02Z,3044,276,2005-08-19T02:38:02Z,1,2020-02-15T06:59:44Z +12252,2005-08-18T03:59:51Z,127,350,2005-08-25T08:54:51Z,2,2020-02-15T06:59:44Z +12253,2005-08-18T04:00:50Z,566,446,2005-08-19T04:43:50Z,1,2020-02-15T06:59:44Z +12254,2005-08-18T04:05:29Z,2858,6,2005-08-23T04:17:29Z,1,2020-02-15T06:59:44Z +12255,2005-08-18T04:07:20Z,2100,266,2005-08-21T22:19:20Z,1,2020-02-15T06:59:44Z +12256,2005-08-18T04:09:39Z,2975,572,2005-08-22T01:53:39Z,2,2020-02-15T06:59:45Z +12257,2005-08-18T04:11:03Z,269,87,2005-08-25T01:20:03Z,2,2020-02-15T06:59:45Z +12258,2005-08-18T04:11:13Z,2861,83,2005-08-21T23:40:13Z,2,2020-02-15T06:59:45Z +12259,2005-08-18T04:14:35Z,2904,429,2005-08-18T22:30:35Z,2,2020-02-15T06:59:45Z +12260,2005-08-18T04:15:43Z,1352,150,2005-08-26T23:31:43Z,1,2020-02-15T06:59:45Z +12261,2005-08-18T04:16:06Z,4076,485,2005-08-27T08:04:06Z,1,2020-02-15T06:59:45Z +12262,2005-08-18T04:16:15Z,591,125,2005-08-20T09:16:15Z,1,2020-02-15T06:59:45Z +12263,2005-08-18T04:16:18Z,4053,131,2005-08-21T07:22:18Z,1,2020-02-15T06:59:45Z +12264,2005-08-18T04:17:33Z,3073,87,2005-08-26T08:07:33Z,1,2020-02-15T06:59:45Z +12265,2005-08-18T04:22:01Z,537,247,2005-08-20T03:22:01Z,1,2020-02-15T06:59:45Z +12266,2005-08-18T04:22:31Z,2192,467,2005-08-19T04:25:31Z,2,2020-02-15T06:59:45Z +12267,2005-08-18T04:24:30Z,652,388,2005-08-26T03:01:30Z,2,2020-02-15T06:59:45Z +12268,2005-08-18T04:26:54Z,93,39,2005-08-23T06:40:54Z,2,2020-02-15T06:59:45Z +12269,2005-08-18T04:27:54Z,724,573,2005-08-25T07:03:54Z,1,2020-02-15T06:59:45Z +12270,2005-08-18T04:32:05Z,2456,190,2005-08-21T01:37:05Z,2,2020-02-15T06:59:45Z +12271,2005-08-18T04:33:11Z,3866,471,2005-08-20T23:10:11Z,1,2020-02-15T06:59:45Z +12272,2005-08-18T04:39:10Z,1964,15,2005-08-24T09:41:10Z,1,2020-02-15T06:59:45Z +12273,2005-08-18T04:40:50Z,3539,431,2005-08-25T01:44:50Z,2,2020-02-15T06:59:45Z +12274,2005-08-18T04:41:47Z,265,47,2005-08-27T07:00:47Z,1,2020-02-15T06:59:45Z +12275,2005-08-18T04:42:02Z,1474,507,2005-08-25T00:50:02Z,1,2020-02-15T06:59:45Z +12276,2005-08-18T04:43:22Z,4491,397,2005-08-22T01:49:22Z,2,2020-02-15T06:59:45Z +12277,2006-02-14T15:16:03Z,407,33,,2,2020-02-15T06:59:45Z +12278,2005-08-18T04:46:45Z,3205,294,2005-08-24T08:59:45Z,2,2020-02-15T06:59:45Z +12279,2005-08-18T04:47:30Z,4159,421,2005-08-19T09:47:30Z,2,2020-02-15T06:59:45Z +12280,2005-08-18T04:49:27Z,4032,46,2005-08-21T03:39:27Z,2,2020-02-15T06:59:45Z +12281,2005-08-18T04:50:32Z,4576,417,2005-08-21T00:14:32Z,2,2020-02-15T06:59:45Z +12282,2005-08-18T04:54:20Z,3623,173,2005-08-23T05:28:20Z,2,2020-02-15T06:59:45Z +12283,2005-08-18T04:54:25Z,574,240,2005-08-23T04:02:25Z,1,2020-02-15T06:59:45Z +12284,2005-08-18T04:55:49Z,3162,147,2005-08-22T08:45:49Z,2,2020-02-15T06:59:45Z +12285,2005-08-18T04:56:43Z,3531,215,2005-08-19T23:32:43Z,2,2020-02-15T06:59:45Z +12286,2005-08-18T04:57:59Z,3729,34,2005-08-18T23:20:59Z,2,2020-02-15T06:59:45Z +12287,2005-08-18T04:58:06Z,2238,136,2005-08-24T00:06:06Z,1,2020-02-15T06:59:45Z +12288,2005-08-18T05:01:20Z,4401,523,2005-08-25T09:51:20Z,2,2020-02-15T06:59:45Z +12289,2005-08-18T05:05:28Z,443,575,2005-08-26T09:02:28Z,1,2020-02-15T06:59:45Z +12290,2005-08-18T05:08:03Z,4100,283,2005-08-23T08:10:03Z,2,2020-02-15T06:59:45Z +12291,2005-08-18T05:08:37Z,4270,73,2005-08-23T09:01:37Z,1,2020-02-15T06:59:45Z +12292,2005-08-18T05:08:54Z,1417,58,2005-08-27T02:51:54Z,1,2020-02-15T06:59:45Z +12293,2005-08-18T05:13:36Z,614,514,2005-08-25T04:00:36Z,2,2020-02-15T06:59:45Z +12294,2005-08-18T05:14:44Z,2479,4,2005-08-27T01:32:44Z,2,2020-02-15T06:59:45Z +12295,2005-08-18T05:15:46Z,1651,532,2005-08-26T02:23:46Z,2,2020-02-15T06:59:45Z +12296,2005-08-18T05:16:28Z,2091,258,2005-08-22T10:32:28Z,1,2020-02-15T06:59:45Z +12297,2005-08-18T05:19:57Z,903,436,2005-08-21T00:53:57Z,1,2020-02-15T06:59:45Z +12298,2005-08-18T05:30:31Z,904,46,2005-08-27T07:33:31Z,1,2020-02-15T06:59:45Z +12299,2005-08-18T05:32:32Z,892,176,2005-08-22T08:14:32Z,2,2020-02-15T06:59:45Z +12300,2005-08-18T05:36:14Z,3213,540,2005-08-25T00:20:14Z,2,2020-02-15T06:59:45Z +12301,2005-08-18T05:36:20Z,2293,317,2005-08-23T03:15:20Z,1,2020-02-15T06:59:45Z +12302,2005-08-18T05:41:39Z,765,514,2005-08-22T06:02:39Z,1,2020-02-15T06:59:45Z +12303,2005-08-18T05:43:22Z,1604,245,2005-08-27T08:54:22Z,2,2020-02-15T06:59:45Z +12304,2005-08-18T05:44:29Z,1381,228,2005-08-24T04:31:29Z,1,2020-02-15T06:59:45Z +12305,2005-08-18T05:46:29Z,4463,534,2005-08-22T11:14:29Z,2,2020-02-15T06:59:45Z +12306,2005-08-18T05:47:55Z,3853,541,2005-08-21T01:56:55Z,1,2020-02-15T06:59:45Z +12307,2005-08-18T05:48:23Z,2679,187,2005-08-26T02:32:23Z,1,2020-02-15T06:59:45Z +12308,2005-08-18T05:48:53Z,2877,569,2005-08-22T09:03:53Z,1,2020-02-15T06:59:45Z +12309,2005-08-18T05:58:40Z,762,9,2005-08-20T02:20:40Z,2,2020-02-15T06:59:45Z +12310,2005-08-18T06:02:34Z,3814,385,2005-08-24T01:08:34Z,2,2020-02-15T06:59:45Z +12311,2005-08-18T06:07:00Z,1650,211,2005-08-21T07:54:00Z,2,2020-02-15T06:59:45Z +12312,2005-08-18T06:07:26Z,80,185,2005-08-21T02:07:26Z,2,2020-02-15T06:59:45Z +12313,2005-08-18T06:07:31Z,2053,180,2005-08-27T00:20:31Z,1,2020-02-15T06:59:45Z +12314,2005-08-18T06:10:02Z,2204,455,2005-08-25T02:48:02Z,1,2020-02-15T06:59:45Z +12315,2005-08-18T06:15:06Z,2012,579,2005-08-24T07:45:06Z,2,2020-02-15T06:59:45Z +12316,2005-08-18T06:16:09Z,4325,94,2005-08-27T05:54:09Z,2,2020-02-15T06:59:45Z +12317,2005-08-18T06:17:06Z,90,510,2005-08-22T08:56:06Z,1,2020-02-15T06:59:45Z +12318,2005-08-18T06:21:56Z,3694,332,2005-08-27T06:07:56Z,1,2020-02-15T06:59:45Z +12319,2005-08-18T06:26:45Z,999,368,2005-08-23T01:35:45Z,1,2020-02-15T06:59:45Z +12320,2005-08-18T06:26:51Z,3248,267,2005-08-20T04:00:51Z,1,2020-02-15T06:59:45Z +12321,2005-08-18T06:27:05Z,516,274,2005-08-24T02:26:05Z,1,2020-02-15T06:59:45Z +12322,2005-08-18T06:35:28Z,4235,365,2005-08-23T07:34:28Z,1,2020-02-15T06:59:45Z +12323,2005-08-18T06:36:22Z,4107,336,2005-08-26T11:36:22Z,1,2020-02-15T06:59:45Z +12324,2005-08-18T06:38:20Z,2436,221,2005-08-20T02:28:20Z,2,2020-02-15T06:59:45Z +12325,2005-08-18T06:41:30Z,1844,404,2005-08-26T02:49:30Z,1,2020-02-15T06:59:45Z +12326,2005-08-18T06:41:59Z,1865,114,2005-08-19T10:16:59Z,2,2020-02-15T06:59:45Z +12327,2005-08-18T06:43:22Z,2425,261,2005-08-25T10:50:22Z,2,2020-02-15T06:59:45Z +12328,2005-08-18T06:43:56Z,1355,77,2005-08-23T10:19:56Z,2,2020-02-15T06:59:45Z +12329,2005-08-18T06:44:30Z,3127,397,2005-08-25T04:05:30Z,1,2020-02-15T06:59:45Z +12330,2005-08-18T06:46:33Z,889,587,2005-08-26T11:35:33Z,2,2020-02-15T06:59:45Z +12331,2005-08-18T06:47:19Z,4565,483,2005-08-25T05:51:19Z,2,2020-02-15T06:59:45Z +12332,2005-08-18T06:51:05Z,627,235,2005-08-20T04:28:05Z,2,2020-02-15T06:59:45Z +12333,2005-08-18T06:51:39Z,4370,18,2005-08-21T01:44:39Z,2,2020-02-15T06:59:45Z +12334,2005-08-18T06:52:36Z,2629,160,2005-08-25T12:06:36Z,1,2020-02-15T06:59:45Z +12335,2005-08-18T06:59:15Z,2776,150,2005-08-20T06:47:15Z,1,2020-02-15T06:59:45Z +12336,2005-08-18T06:59:41Z,2484,75,2005-08-23T01:36:41Z,1,2020-02-15T06:59:45Z +12337,2005-08-18T07:02:24Z,4221,117,2005-08-20T10:11:24Z,1,2020-02-15T06:59:45Z +12338,2005-08-18T07:04:24Z,274,408,2005-08-19T08:36:24Z,2,2020-02-15T06:59:45Z +12339,2005-08-18T07:05:06Z,1600,370,2005-08-19T02:27:06Z,2,2020-02-15T06:59:45Z +12340,2005-08-18T07:07:01Z,3561,239,2005-08-20T05:06:01Z,1,2020-02-15T06:59:45Z +12341,2005-08-18T07:09:27Z,130,154,2005-08-21T03:44:27Z,1,2020-02-15T06:59:45Z +12342,2005-08-18T07:12:46Z,1408,63,2005-08-21T07:44:46Z,1,2020-02-15T06:59:45Z +12343,2005-08-18T07:15:13Z,448,507,2005-08-27T11:07:13Z,1,2020-02-15T06:59:45Z +12344,2005-08-18T07:15:19Z,3675,269,2005-08-24T04:58:19Z,2,2020-02-15T06:59:45Z +12345,2005-08-18T07:16:58Z,2359,44,2005-08-25T05:50:58Z,1,2020-02-15T06:59:45Z +12346,2005-08-18T07:17:55Z,1200,265,2005-08-21T11:35:55Z,2,2020-02-15T06:59:45Z +12347,2005-08-18T07:18:10Z,1788,454,2005-08-19T05:49:10Z,1,2020-02-15T06:59:45Z +12348,2005-08-18T07:21:47Z,434,186,2005-08-25T04:41:47Z,2,2020-02-15T06:59:45Z +12349,2005-08-18T07:23:42Z,4191,545,2005-08-19T04:25:42Z,1,2020-02-15T06:59:45Z +12350,2005-08-18T07:29:46Z,1333,172,2005-08-21T12:50:46Z,1,2020-02-15T06:59:45Z +12351,2005-08-18T07:32:12Z,2299,95,2005-08-24T04:29:12Z,2,2020-02-15T06:59:45Z +12352,2006-02-14T15:16:03Z,643,155,,1,2020-02-15T06:59:45Z +12353,2005-08-18T07:33:08Z,1594,141,2005-08-21T03:42:08Z,2,2020-02-15T06:59:45Z +12354,2005-08-18T07:34:07Z,2913,499,2005-08-26T05:56:07Z,1,2020-02-15T06:59:45Z +12355,2005-08-18T07:36:23Z,4112,452,2005-08-20T08:59:23Z,1,2020-02-15T06:59:45Z +12356,2005-08-18T07:37:05Z,493,529,2005-08-24T10:49:05Z,1,2020-02-15T06:59:45Z +12357,2005-08-18T07:40:52Z,166,19,2005-08-22T02:51:52Z,1,2020-02-15T06:59:45Z +12358,2005-08-18T07:41:43Z,504,16,2005-08-20T03:46:43Z,1,2020-02-15T06:59:45Z +12359,2005-08-18T07:44:05Z,4172,28,2005-08-19T02:26:05Z,1,2020-02-15T06:59:45Z +12360,2005-08-18T07:46:35Z,929,123,2005-08-26T12:01:35Z,1,2020-02-15T06:59:45Z +12361,2005-08-18T07:47:31Z,1418,250,2005-08-22T12:08:31Z,2,2020-02-15T06:59:45Z +12362,2005-08-18T07:48:05Z,3131,367,2005-08-20T05:16:05Z,2,2020-02-15T06:59:45Z +12363,2005-08-18T07:52:49Z,3447,181,2005-08-26T03:20:49Z,2,2020-02-15T06:59:45Z +12364,2005-08-18T07:55:09Z,3398,84,2005-08-19T05:29:09Z,2,2020-02-15T06:59:45Z +12365,2005-08-18T07:55:09Z,4350,303,2005-08-24T05:42:09Z,1,2020-02-15T06:59:45Z +12366,2005-08-18T07:55:14Z,3799,115,2005-08-22T06:12:14Z,1,2020-02-15T06:59:45Z +12367,2005-08-18T07:57:14Z,1822,7,2005-08-27T07:07:14Z,2,2020-02-15T06:59:45Z +12368,2005-08-18T07:57:38Z,3777,392,2005-08-25T05:49:38Z,2,2020-02-15T06:59:45Z +12369,2005-08-18T07:57:43Z,484,337,2005-08-26T09:36:43Z,1,2020-02-15T06:59:45Z +12370,2005-08-18T07:57:47Z,3343,503,2005-08-22T11:32:47Z,1,2020-02-15T06:59:45Z +12371,2005-08-18T08:02:46Z,622,451,2005-08-19T02:50:46Z,2,2020-02-15T06:59:45Z +12372,2005-08-18T08:04:35Z,2982,131,2005-08-27T08:13:35Z,2,2020-02-15T06:59:45Z +12373,2005-08-18T08:07:25Z,777,367,2005-08-27T03:41:25Z,1,2020-02-15T06:59:45Z +12374,2005-08-18T08:07:45Z,939,74,2005-08-26T10:42:45Z,2,2020-02-15T06:59:45Z +12375,2005-08-18T08:20:08Z,3508,365,2005-08-21T08:50:08Z,2,2020-02-15T06:59:45Z +12376,2005-08-18T08:20:29Z,852,116,2005-08-20T13:20:29Z,1,2020-02-15T06:59:45Z +12377,2005-08-18T08:26:05Z,4564,31,2005-08-23T02:51:05Z,2,2020-02-15T06:59:45Z +12378,2005-08-18T08:26:13Z,4418,266,2005-08-19T07:21:13Z,1,2020-02-15T06:59:45Z +12379,2005-08-18T08:26:48Z,2879,99,2005-08-19T10:08:48Z,2,2020-02-15T06:59:45Z +12380,2005-08-18T08:27:28Z,55,215,2005-08-25T02:58:28Z,2,2020-02-15T06:59:45Z +12381,2005-08-18T08:31:43Z,3651,190,2005-08-23T12:24:43Z,2,2020-02-15T06:59:45Z +12382,2005-08-18T08:32:33Z,3049,566,2005-08-26T03:45:33Z,2,2020-02-15T06:59:45Z +12383,2005-08-18T08:36:03Z,1641,295,2005-08-23T03:30:03Z,2,2020-02-15T06:59:45Z +12384,2005-08-18T08:36:58Z,2557,193,2005-08-23T05:08:58Z,1,2020-02-15T06:59:45Z +12385,2005-08-18T08:39:33Z,3143,146,2005-08-21T14:22:33Z,1,2020-02-15T06:59:45Z +12386,2005-08-18T08:45:57Z,3303,199,2005-08-24T04:50:57Z,2,2020-02-15T06:59:45Z +12387,2005-08-18T08:46:24Z,3604,530,2005-08-21T02:56:24Z,2,2020-02-15T06:59:45Z +12388,2005-08-18T08:48:09Z,4016,555,2005-08-26T09:05:09Z,2,2020-02-15T06:59:45Z +12389,2005-08-18T08:48:36Z,1891,394,2005-08-22T08:59:36Z,2,2020-02-15T06:59:45Z +12390,2005-08-18T08:51:42Z,3603,377,2005-08-23T13:06:42Z,1,2020-02-15T06:59:45Z +12391,2005-08-18T08:52:53Z,1507,307,2005-08-22T12:15:53Z,2,2020-02-15T06:59:45Z +12392,2005-08-18T08:57:58Z,2695,113,2005-08-25T05:20:58Z,2,2020-02-15T06:59:45Z +12393,2005-08-18T09:02:41Z,2435,396,2005-08-26T12:47:41Z,1,2020-02-15T06:59:45Z +12394,2005-08-18T09:05:15Z,3605,330,2005-08-23T11:10:15Z,1,2020-02-15T06:59:45Z +12395,2005-08-18T09:06:30Z,2020,541,2005-08-21T12:09:30Z,2,2020-02-15T06:59:45Z +12396,2005-08-18T09:11:23Z,3624,40,2005-08-26T05:35:23Z,2,2020-02-15T06:59:45Z +12397,2005-08-18T09:12:52Z,1872,371,2005-08-27T10:44:52Z,2,2020-02-15T06:59:45Z +12398,2005-08-18T09:13:24Z,4247,321,2005-08-27T14:58:24Z,1,2020-02-15T06:59:45Z +12399,2005-08-18T09:13:42Z,3950,347,2005-08-27T11:44:42Z,1,2020-02-15T06:59:45Z +12400,2005-08-18T09:19:12Z,1767,10,2005-08-26T06:52:12Z,1,2020-02-15T06:59:45Z +12401,2005-08-18T09:20:51Z,4314,479,2005-08-21T05:50:51Z,2,2020-02-15T06:59:45Z +12402,2005-08-18T09:27:34Z,385,123,2005-08-25T13:10:34Z,2,2020-02-15T06:59:45Z +12403,2005-08-18T09:31:05Z,2124,440,2005-08-23T09:54:05Z,2,2020-02-15T06:59:45Z +12404,2005-08-18T09:36:34Z,1097,342,2005-08-23T10:12:34Z,2,2020-02-15T06:59:45Z +12405,2005-08-18T09:37:30Z,228,266,2005-08-27T13:11:30Z,2,2020-02-15T06:59:45Z +12406,2005-08-18T09:38:02Z,4368,510,2005-08-22T12:56:02Z,1,2020-02-15T06:59:45Z +12407,2005-08-18T09:39:26Z,391,220,2005-08-24T05:19:26Z,2,2020-02-15T06:59:45Z +12408,2005-08-18T09:40:38Z,2360,143,2005-08-19T04:45:38Z,1,2020-02-15T06:59:45Z +12409,2005-08-18T09:43:58Z,2568,64,2005-08-19T15:02:58Z,2,2020-02-15T06:59:45Z +12410,2005-08-18T09:45:33Z,1904,210,2005-08-27T08:50:33Z,1,2020-02-15T06:59:45Z +12411,2005-08-18T09:47:57Z,1234,181,2005-08-21T05:54:57Z,2,2020-02-15T06:59:45Z +12412,2005-08-18T09:49:52Z,1578,75,2005-08-23T12:32:52Z,2,2020-02-15T06:59:45Z +12413,2005-08-18T09:50:34Z,3466,366,2005-08-23T05:57:34Z,2,2020-02-15T06:59:45Z +12414,2005-08-18T09:50:40Z,4454,32,2005-08-26T06:45:40Z,2,2020-02-15T06:59:45Z +12415,2005-08-18T09:54:01Z,392,443,2005-08-24T15:41:01Z,1,2020-02-15T06:59:45Z +12416,2005-08-18T09:56:48Z,3784,515,2005-08-22T12:34:48Z,1,2020-02-15T06:59:45Z +12417,2005-08-18T09:57:00Z,3500,71,2005-08-19T08:56:00Z,1,2020-02-15T06:59:45Z +12418,2005-08-18T09:59:36Z,4186,241,2005-08-19T11:35:36Z,2,2020-02-15T06:59:45Z +12419,2005-08-18T10:01:48Z,3111,133,2005-08-19T13:40:48Z,1,2020-02-15T06:59:45Z +12420,2005-08-18T10:01:50Z,452,477,2005-08-22T08:14:50Z,1,2020-02-15T06:59:45Z +12421,2005-08-18T10:04:06Z,4067,158,2005-08-24T08:45:06Z,2,2020-02-15T06:59:45Z +12422,2005-08-18T10:13:12Z,1855,451,2005-08-20T14:36:12Z,2,2020-02-15T06:59:45Z +12423,2005-08-18T10:14:52Z,1014,470,2005-08-26T13:16:52Z,2,2020-02-15T06:59:45Z +12424,2005-08-18T10:16:57Z,2055,319,2005-08-27T04:41:57Z,1,2020-02-15T06:59:45Z +12425,2005-08-18T10:18:06Z,2000,405,2005-08-27T08:16:06Z,2,2020-02-15T06:59:45Z +12426,2005-08-18T10:24:11Z,799,75,2005-08-22T15:34:11Z,2,2020-02-15T06:59:45Z +12427,2005-08-18T10:24:17Z,1759,333,2005-08-27T14:22:17Z,1,2020-02-15T06:59:45Z +12428,2005-08-18T10:24:21Z,3735,121,2005-08-24T05:12:21Z,1,2020-02-15T06:59:45Z +12429,2005-08-18T10:26:46Z,2994,436,2005-08-27T13:23:46Z,1,2020-02-15T06:59:45Z +12430,2005-08-18T10:32:41Z,2840,196,2005-08-22T16:16:41Z,1,2020-02-15T06:59:45Z +12431,2005-08-18T10:34:59Z,4461,89,2005-08-22T14:42:59Z,1,2020-02-15T06:59:45Z +12432,2005-08-18T10:35:13Z,2543,263,2005-08-26T08:20:13Z,2,2020-02-15T06:59:45Z +12433,2005-08-18T10:37:49Z,1776,552,2005-08-19T08:00:49Z,1,2020-02-15T06:59:45Z +12434,2005-08-18T10:38:08Z,3078,314,2005-08-22T16:14:08Z,2,2020-02-15T06:59:45Z +12435,2005-08-18T10:38:31Z,3211,160,2005-08-26T15:18:31Z,1,2020-02-15T06:59:45Z +12436,2005-08-18T10:41:05Z,3761,499,2005-08-23T07:36:05Z,2,2020-02-15T06:59:45Z +12437,2005-08-18T10:42:43Z,4036,467,2005-08-26T11:58:43Z,2,2020-02-15T06:59:45Z +12438,2005-08-18T10:42:52Z,2043,186,2005-08-25T11:42:52Z,1,2020-02-15T06:59:45Z +12439,2005-08-18T10:44:57Z,3204,153,2005-08-22T06:51:57Z,1,2020-02-15T06:59:45Z +12440,2005-08-18T10:47:35Z,2779,474,2005-08-21T11:10:35Z,2,2020-02-15T06:59:45Z +12441,2005-08-18T10:47:57Z,2163,561,2005-08-26T07:11:57Z,2,2020-02-15T06:59:45Z +12442,2005-08-18T10:50:07Z,78,270,2005-08-21T08:06:07Z,1,2020-02-15T06:59:45Z +12443,2005-08-18T10:50:59Z,2048,233,2005-08-26T07:48:59Z,2,2020-02-15T06:59:45Z +12444,2005-08-18T10:53:12Z,1639,285,2005-08-19T13:54:12Z,2,2020-02-15T06:59:45Z +12445,2005-08-18T10:56:20Z,3347,350,2005-08-21T16:46:20Z,1,2020-02-15T06:59:45Z +12446,2005-08-18T10:56:29Z,2138,448,2005-08-23T05:30:29Z,1,2020-02-15T06:59:45Z +12447,2005-08-18T10:57:01Z,4084,469,2005-08-27T06:05:01Z,1,2020-02-15T06:59:45Z +12448,2005-08-18T10:59:04Z,3889,72,2005-08-21T06:45:04Z,2,2020-02-15T06:59:45Z +12449,2005-08-18T11:03:04Z,663,285,2005-08-19T07:34:04Z,1,2020-02-15T06:59:45Z +12450,2005-08-18T11:04:04Z,3439,518,2005-08-22T07:24:04Z,1,2020-02-15T06:59:45Z +12451,2005-08-18T11:04:42Z,2780,183,2005-08-20T08:20:42Z,1,2020-02-15T06:59:45Z +12452,2005-08-18T11:14:35Z,4260,358,2005-08-27T09:09:35Z,1,2020-02-15T06:59:45Z +12453,2005-08-18T11:17:07Z,2487,104,2005-08-25T12:34:07Z,1,2020-02-15T06:59:45Z +12454,2005-08-18T11:19:02Z,4219,184,2005-08-19T12:00:02Z,2,2020-02-15T06:59:45Z +12455,2005-08-18T11:19:47Z,4478,46,2005-08-22T16:08:47Z,2,2020-02-15T06:59:45Z +12456,2005-08-18T11:21:51Z,4578,85,2005-08-21T13:28:51Z,1,2020-02-15T06:59:45Z +12457,2006-02-14T15:16:03Z,2145,80,,2,2020-02-15T06:59:45Z +12458,2005-08-18T11:22:53Z,4579,277,2005-08-22T14:30:53Z,2,2020-02-15T06:59:45Z +12459,2005-08-18T11:25:11Z,421,39,2005-08-22T06:13:11Z,1,2020-02-15T06:59:45Z +12460,2005-08-18T11:25:13Z,3550,419,2005-08-27T06:27:13Z,2,2020-02-15T06:59:45Z +12461,2005-08-18T11:28:14Z,1569,27,2005-08-21T09:47:14Z,1,2020-02-15T06:59:45Z +12462,2005-08-18T11:28:55Z,890,574,2005-08-20T12:06:55Z,2,2020-02-15T06:59:45Z +12463,2005-08-18T11:31:34Z,30,214,2005-08-23T12:04:34Z,1,2020-02-15T06:59:45Z +12464,2005-08-18T11:33:34Z,1954,157,2005-08-27T14:33:34Z,1,2020-02-15T06:59:45Z +12465,2005-08-18T11:35:02Z,1733,486,2005-08-21T11:52:02Z,2,2020-02-15T06:59:45Z +12466,2005-08-18T11:36:55Z,2686,462,2005-08-23T13:46:55Z,1,2020-02-15T06:59:45Z +12467,2005-08-18T11:40:09Z,1414,212,2005-08-19T13:33:09Z,2,2020-02-15T06:59:45Z +12468,2005-08-18T11:41:47Z,1689,80,2005-08-24T16:43:47Z,2,2020-02-15T06:59:45Z +12469,2005-08-18T11:53:07Z,2395,237,2005-08-24T16:00:07Z,1,2020-02-15T06:59:45Z +12470,2005-08-18T11:55:42Z,1290,82,2005-08-24T08:27:42Z,2,2020-02-15T06:59:45Z +12471,2005-08-18T11:57:00Z,242,101,2005-08-26T13:17:00Z,2,2020-02-15T06:59:45Z +12472,2005-08-18T11:58:48Z,4458,297,2005-08-27T16:37:48Z,2,2020-02-15T06:59:45Z +12473,2005-08-18T11:59:44Z,1237,303,2005-08-21T13:38:44Z,1,2020-02-15T06:59:45Z +12474,2005-08-18T12:10:03Z,2240,78,2005-08-27T17:05:03Z,1,2020-02-15T06:59:45Z +12475,2005-08-18T12:14:21Z,3118,401,2005-08-24T14:43:21Z,2,2020-02-15T06:59:45Z +12476,2005-08-18T12:22:40Z,2784,122,2005-08-20T17:29:40Z,2,2020-02-15T06:59:45Z +12477,2005-08-18T12:25:01Z,4516,74,2005-08-25T17:25:01Z,2,2020-02-15T06:59:45Z +12478,2005-08-18T12:25:16Z,4512,42,2005-08-22T06:27:16Z,2,2020-02-15T06:59:45Z +12479,2005-08-18T12:26:37Z,1119,401,2005-08-21T18:08:37Z,2,2020-02-15T06:59:45Z +12480,2005-08-18T12:26:43Z,3339,446,2005-08-26T13:23:43Z,1,2020-02-15T06:59:45Z +12481,2005-08-18T12:31:34Z,2424,218,2005-08-21T16:08:34Z,2,2020-02-15T06:59:45Z +12482,2005-08-18T12:37:36Z,3778,247,2005-08-26T09:53:36Z,1,2020-02-15T06:59:45Z +12483,2005-08-18T12:38:37Z,1805,488,2005-08-24T13:26:37Z,1,2020-02-15T06:59:45Z +12484,2005-08-18T12:39:37Z,3690,300,2005-08-24T08:47:37Z,2,2020-02-15T06:59:45Z +12485,2005-08-18T12:41:41Z,422,345,2005-08-22T16:38:41Z,2,2020-02-15T06:59:45Z +12486,2005-08-18T12:42:50Z,2991,515,2005-08-27T13:41:50Z,2,2020-02-15T06:59:45Z +12487,2005-08-18T12:45:24Z,2554,485,2005-08-22T12:39:24Z,1,2020-02-15T06:59:45Z +12488,2005-08-18T12:48:22Z,3323,29,2005-08-19T16:19:22Z,1,2020-02-15T06:59:45Z +12489,2006-02-14T15:16:03Z,387,60,,2,2020-02-15T06:59:45Z +12490,2005-08-18T12:48:45Z,1577,187,2005-08-27T15:53:45Z,1,2020-02-15T06:59:45Z +12491,2005-08-18T12:48:45Z,2354,247,2005-08-22T12:40:45Z,2,2020-02-15T06:59:45Z +12492,2005-08-18T12:49:04Z,2839,224,2005-08-26T17:55:04Z,1,2020-02-15T06:59:45Z +12493,2005-08-18T12:53:38Z,3029,487,2005-08-27T13:15:38Z,2,2020-02-15T06:59:45Z +12494,2005-08-18T12:53:49Z,3845,522,2005-08-26T15:52:49Z,1,2020-02-15T06:59:45Z +12495,2005-08-18T12:56:37Z,1225,102,2005-08-22T06:58:37Z,1,2020-02-15T06:59:45Z +12496,2005-08-18T12:58:25Z,456,489,2005-08-27T18:43:25Z,2,2020-02-15T06:59:45Z +12497,2005-08-18T12:58:40Z,824,388,2005-08-24T08:24:40Z,1,2020-02-15T06:59:45Z +12498,2005-08-18T13:01:08Z,1063,408,2005-08-21T13:12:08Z,1,2020-02-15T06:59:45Z +12499,2005-08-18T13:05:37Z,2611,42,2005-08-19T07:41:37Z,1,2020-02-15T06:59:45Z +12500,2005-08-18T13:05:51Z,36,310,2005-08-19T14:54:51Z,2,2020-02-15T06:59:45Z +12501,2005-08-18T13:13:13Z,728,173,2005-08-23T07:24:13Z,2,2020-02-15T06:59:45Z +12502,2005-08-18T13:16:31Z,2153,235,2005-08-19T17:47:31Z,1,2020-02-15T06:59:45Z +12503,2005-08-18T13:16:46Z,3548,379,2005-08-19T10:24:46Z,2,2020-02-15T06:59:45Z +12504,2005-08-18T13:17:07Z,4429,44,2005-08-24T09:13:07Z,2,2020-02-15T06:59:45Z +12505,2005-08-18T13:17:30Z,3741,406,2005-08-23T18:03:30Z,1,2020-02-15T06:59:45Z +12506,2006-02-14T15:16:03Z,1132,114,,2,2020-02-15T06:59:45Z +12507,2005-08-18T13:19:13Z,199,584,2005-08-27T11:48:13Z,2,2020-02-15T06:59:45Z +12508,2005-08-18T13:20:13Z,1059,29,2005-08-22T12:55:13Z,1,2020-02-15T06:59:45Z +12509,2005-08-18T13:21:52Z,2462,175,2005-08-20T12:14:52Z,2,2020-02-15T06:59:45Z +12510,2005-08-18T13:22:25Z,3051,394,2005-08-27T17:38:25Z,2,2020-02-15T06:59:45Z +12511,2005-08-18T13:23:19Z,919,447,2005-08-22T11:43:19Z,2,2020-02-15T06:59:45Z +12512,2005-08-18T13:28:27Z,3959,148,2005-08-26T19:08:27Z,2,2020-02-15T06:59:45Z +12513,2005-08-18T13:31:45Z,29,527,2005-08-25T08:26:45Z,1,2020-02-15T06:59:45Z +12514,2005-08-18T13:33:55Z,3310,400,2005-08-23T12:50:55Z,2,2020-02-15T06:59:45Z +12515,2005-08-18T13:39:26Z,2703,63,2005-08-22T09:05:26Z,1,2020-02-15T06:59:45Z +12516,2005-08-18T13:39:53Z,1332,302,2005-08-20T08:33:53Z,1,2020-02-15T06:59:45Z +12517,2005-08-18T13:40:20Z,2908,520,2005-08-27T14:04:20Z,1,2020-02-15T06:59:45Z +12518,2005-08-18T13:41:32Z,3860,264,2005-08-23T13:01:32Z,1,2020-02-15T06:59:45Z +12519,2005-08-18T13:42:14Z,2394,203,2005-08-24T16:44:14Z,1,2020-02-15T06:59:45Z +12520,2005-08-18T13:42:45Z,681,52,2005-08-23T12:54:45Z,2,2020-02-15T06:59:45Z +12521,2005-08-18T13:43:07Z,1022,369,2005-08-21T07:53:07Z,1,2020-02-15T06:59:45Z +12522,2005-08-18T13:45:40Z,4435,342,2005-08-27T17:05:40Z,1,2020-02-15T06:59:45Z +12523,2005-08-18T13:45:41Z,888,230,2005-08-27T10:46:41Z,1,2020-02-15T06:59:45Z +12524,2006-02-14T15:16:03Z,857,438,,1,2020-02-15T06:59:45Z +12525,2005-08-18T13:48:31Z,2357,96,2005-08-23T13:04:31Z,2,2020-02-15T06:59:45Z +12526,2005-08-18T13:48:43Z,3541,54,2005-08-19T10:05:43Z,1,2020-02-15T06:59:45Z +12527,2005-08-18T13:48:46Z,2536,459,2005-08-26T13:31:46Z,2,2020-02-15T06:59:45Z +12528,2005-08-18T13:52:41Z,3381,398,2005-08-27T09:09:41Z,2,2020-02-15T06:59:45Z +12529,2005-08-18T13:53:36Z,1956,382,2005-08-19T18:20:36Z,2,2020-02-15T06:59:45Z +12530,2005-08-18T13:54:48Z,1054,521,2005-08-26T08:58:48Z,2,2020-02-15T06:59:45Z +12531,2005-08-18T13:57:50Z,2771,27,2005-08-22T09:46:50Z,2,2020-02-15T06:59:45Z +12532,2005-08-18T13:57:58Z,114,184,2005-08-24T14:58:58Z,2,2020-02-15T06:59:45Z +12533,2005-08-18T14:01:40Z,795,331,2005-08-20T15:32:40Z,1,2020-02-15T06:59:45Z +12534,2005-08-18T14:04:41Z,995,187,2005-08-25T16:57:41Z,1,2020-02-15T06:59:45Z +12535,2005-08-18T14:05:22Z,2944,516,2005-08-25T16:35:22Z,1,2020-02-15T06:59:45Z +12536,2005-08-18T14:06:06Z,2343,373,2005-08-25T14:21:06Z,1,2020-02-15T06:59:45Z +12537,2005-08-18T14:06:39Z,57,56,2005-08-25T09:36:39Z,2,2020-02-15T06:59:45Z +12538,2005-08-18T14:09:09Z,1373,118,2005-08-23T19:12:09Z,1,2020-02-15T06:59:45Z +12539,2005-08-18T14:10:09Z,3259,136,2005-08-19T19:44:09Z,2,2020-02-15T06:59:45Z +12540,2005-08-18T14:17:30Z,2826,304,2005-08-26T15:33:30Z,2,2020-02-15T06:59:45Z +12541,2005-08-18T14:18:30Z,4357,584,2005-08-26T10:24:30Z,1,2020-02-15T06:59:45Z +12542,2005-08-18T14:21:11Z,1920,230,2005-08-20T16:06:11Z,2,2020-02-15T06:59:45Z +12543,2005-08-18T14:23:55Z,330,324,2005-08-20T12:42:55Z,1,2020-02-15T06:59:45Z +12544,2005-08-18T14:25:51Z,3783,354,2005-08-26T18:42:51Z,1,2020-02-15T06:59:45Z +12545,2005-08-18T14:28:00Z,1988,168,2005-08-26T14:10:00Z,1,2020-02-15T06:59:45Z +12546,2005-08-18T14:29:37Z,610,30,2005-08-26T09:47:37Z,1,2020-02-15T06:59:45Z +12547,2005-08-18T14:29:39Z,3046,591,2005-08-22T16:52:39Z,2,2020-02-15T06:59:45Z +12548,2005-08-18T14:35:26Z,750,426,2005-08-27T18:58:26Z,1,2020-02-15T06:59:45Z +12549,2005-08-18T14:38:07Z,1010,377,2005-08-21T08:45:07Z,1,2020-02-15T06:59:45Z +12550,2005-08-18T14:40:38Z,4267,138,2005-08-19T13:33:38Z,2,2020-02-15T06:59:45Z +12551,2005-08-18T14:46:26Z,2195,15,2005-08-19T16:59:26Z,2,2020-02-15T06:59:45Z +12552,2005-08-18T14:46:34Z,4303,413,2005-08-20T11:02:34Z,2,2020-02-15T06:59:45Z +12553,2005-08-18T14:46:54Z,2893,454,2005-08-22T13:41:54Z,1,2020-02-15T06:59:45Z +12554,2005-08-18T14:47:28Z,715,404,2005-08-25T14:34:28Z,2,2020-02-15T06:59:45Z +12555,2005-08-18T14:49:22Z,4434,557,2005-08-26T14:11:22Z,2,2020-02-15T06:59:45Z +12556,2005-08-18T14:49:55Z,1984,3,2005-08-24T15:20:55Z,2,2020-02-15T06:59:45Z +12557,2005-08-18T14:51:03Z,313,364,2005-08-19T13:30:03Z,2,2020-02-15T06:59:45Z +12558,2005-08-18T14:52:35Z,167,289,2005-08-26T09:45:35Z,2,2020-02-15T06:59:45Z +12559,2005-08-18T14:53:58Z,39,513,2005-08-25T20:22:58Z,1,2020-02-15T06:59:45Z +12560,2005-08-18T14:54:19Z,829,596,2005-08-27T13:39:19Z,1,2020-02-15T06:59:45Z +12561,2005-08-18T14:58:51Z,812,392,2005-08-20T10:53:51Z,1,2020-02-15T06:59:45Z +12562,2005-08-18T15:00:03Z,529,212,2005-08-23T12:55:03Z,2,2020-02-15T06:59:45Z +12563,2005-08-18T15:08:29Z,2552,393,2005-08-27T15:15:29Z,1,2020-02-15T06:59:45Z +12564,2005-08-18T15:11:35Z,263,348,2005-08-22T11:45:35Z,2,2020-02-15T06:59:45Z +12565,2005-08-18T15:12:17Z,1284,211,2005-08-19T12:26:17Z,2,2020-02-15T06:59:45Z +12566,2005-08-18T15:13:04Z,1684,407,2005-08-21T19:29:04Z,2,2020-02-15T06:59:45Z +12567,2005-08-18T15:14:36Z,2931,308,2005-08-26T18:56:36Z,1,2020-02-15T06:59:45Z +12568,2005-08-18T15:15:44Z,2654,569,2005-08-22T19:32:44Z,2,2020-02-15T06:59:45Z +12569,2005-08-18T15:20:46Z,1009,29,2005-08-24T12:38:46Z,2,2020-02-15T06:59:45Z +12570,2005-08-18T15:23:31Z,3973,211,2005-08-22T09:59:31Z,2,2020-02-15T06:59:45Z +12571,2005-08-18T15:31:18Z,1013,591,2005-08-23T15:20:18Z,2,2020-02-15T06:59:45Z +12572,2005-08-18T15:32:54Z,1366,253,2005-08-21T10:30:54Z,1,2020-02-15T06:59:45Z +12573,2005-08-18T15:32:57Z,1416,182,2005-08-21T18:29:57Z,2,2020-02-15T06:59:45Z +12574,2006-02-14T15:16:03Z,177,317,,2,2020-02-15T06:59:45Z +12575,2005-08-18T15:37:42Z,3441,117,2005-08-25T19:17:42Z,1,2020-02-15T06:59:45Z +12576,2005-08-18T15:38:31Z,329,119,2005-08-22T21:29:31Z,2,2020-02-15T06:59:45Z +12577,2005-08-18T15:39:46Z,4134,16,2005-08-25T18:05:46Z,2,2020-02-15T06:59:45Z +12578,2005-08-18T15:47:11Z,930,514,2005-08-21T10:55:11Z,1,2020-02-15T06:59:45Z +12579,2005-08-18T15:47:49Z,3021,547,2005-08-20T18:12:49Z,2,2020-02-15T06:59:45Z +12580,2005-08-18T15:49:08Z,1197,53,2005-08-24T11:03:08Z,2,2020-02-15T06:59:45Z +12581,2005-08-18T15:49:15Z,4309,70,2005-08-23T20:18:15Z,1,2020-02-15T06:59:45Z +12582,2005-08-18T15:51:12Z,4467,462,2005-08-20T12:05:12Z,1,2020-02-15T06:59:45Z +12583,2005-08-18T15:51:36Z,3090,108,2005-08-20T18:47:36Z,2,2020-02-15T06:59:45Z +12584,2005-08-18T15:51:36Z,4487,371,2005-08-25T19:21:36Z,1,2020-02-15T06:59:45Z +12585,2005-08-18T15:52:12Z,773,110,2005-08-22T21:00:12Z,1,2020-02-15T06:59:45Z +12586,2005-08-18T15:54:39Z,4245,460,2005-08-21T19:29:39Z,1,2020-02-15T06:59:45Z +12587,2005-08-18T16:03:13Z,3081,499,2005-08-25T19:30:13Z,1,2020-02-15T06:59:45Z +12588,2005-08-18T16:04:45Z,694,415,2005-08-23T20:30:45Z,1,2020-02-15T06:59:45Z +12589,2005-08-18T16:06:31Z,956,275,2005-08-27T17:20:31Z,1,2020-02-15T06:59:45Z +12590,2005-08-18T16:11:35Z,2624,308,2005-08-23T10:35:35Z,1,2020-02-15T06:59:45Z +12591,2005-08-18T16:16:41Z,723,546,2005-08-24T10:29:41Z,2,2020-02-15T06:59:45Z +12592,2005-08-18T16:17:50Z,1618,305,2005-08-25T20:20:50Z,1,2020-02-15T06:59:45Z +12593,2005-08-18T16:17:54Z,4092,72,2005-08-21T18:02:54Z,2,2020-02-15T06:59:45Z +12594,2005-08-18T16:24:24Z,4421,198,2005-08-25T15:45:24Z,1,2020-02-15T06:59:45Z +12595,2005-08-18T16:27:08Z,1662,286,2005-08-19T14:53:08Z,1,2020-02-15T06:59:45Z +12596,2005-08-18T16:29:35Z,3662,378,2005-08-24T16:48:35Z,1,2020-02-15T06:59:45Z +12597,2005-08-18T16:34:02Z,3804,474,2005-08-25T17:30:02Z,2,2020-02-15T06:59:45Z +12598,2005-08-18T16:34:03Z,3159,340,2005-08-22T16:44:03Z,1,2020-02-15T06:59:45Z +12599,2005-08-18T16:42:45Z,2032,34,2005-08-23T18:27:45Z,2,2020-02-15T06:59:45Z +12600,2005-08-18T16:44:24Z,1475,171,2005-08-25T17:28:24Z,1,2020-02-15T06:59:45Z +12601,2005-08-18T16:47:52Z,3099,598,2005-08-24T11:05:52Z,1,2020-02-15T06:59:45Z +12602,2005-08-18T16:49:50Z,2001,533,2005-08-21T11:13:50Z,2,2020-02-15T06:59:45Z +12603,2005-08-18T16:56:20Z,2769,119,2005-08-25T11:50:20Z,2,2020-02-15T06:59:45Z +12604,2005-08-18T16:58:48Z,4127,12,2005-08-19T19:36:48Z,1,2020-02-15T06:59:45Z +12605,2005-08-18T16:59:37Z,1359,496,2005-08-20T18:09:37Z,1,2020-02-15T06:59:45Z +12606,2005-08-18T17:02:21Z,359,275,2005-08-24T22:38:21Z,1,2020-02-15T06:59:45Z +12607,2005-08-18T17:03:49Z,2130,526,2005-08-19T18:29:49Z,1,2020-02-15T06:59:45Z +12608,2005-08-18T17:05:15Z,624,366,2005-08-23T17:00:15Z,2,2020-02-15T06:59:45Z +12609,2005-08-18T17:06:22Z,2327,486,2005-08-20T21:30:22Z,1,2020-02-15T06:59:45Z +12610,2006-02-14T15:16:03Z,3181,269,,1,2020-02-15T06:59:45Z +12611,2005-08-18T17:09:42Z,1925,359,2005-08-24T11:57:42Z,2,2020-02-15T06:59:45Z +12612,2005-08-18T17:10:05Z,1035,129,2005-08-26T15:55:05Z,2,2020-02-15T06:59:45Z +12613,2005-08-18T17:16:01Z,3877,8,2005-08-23T18:40:01Z,2,2020-02-15T06:59:45Z +12614,2005-08-18T17:16:03Z,2233,60,2005-08-26T16:56:03Z,2,2020-02-15T06:59:45Z +12615,2005-08-18T17:16:07Z,2191,29,2005-08-27T12:57:07Z,1,2020-02-15T06:59:45Z +12616,2005-08-18T17:22:41Z,2952,476,2005-08-25T18:52:41Z,2,2020-02-15T06:59:45Z +12617,2005-08-18T17:22:48Z,3573,564,2005-08-24T17:40:48Z,2,2020-02-15T06:59:45Z +12618,2005-08-18T17:24:02Z,302,117,2005-08-19T15:22:02Z,1,2020-02-15T06:59:45Z +12619,2005-08-18T17:24:15Z,980,592,2005-08-21T15:56:15Z,1,2020-02-15T06:59:45Z +12620,2005-08-18T17:26:38Z,2663,221,2005-08-25T13:24:38Z,1,2020-02-15T06:59:45Z +12621,2005-08-18T17:31:36Z,4566,439,2005-08-24T16:43:36Z,2,2020-02-15T06:59:45Z +12622,2005-08-18T17:34:11Z,278,529,2005-08-24T16:10:11Z,1,2020-02-15T06:59:45Z +12623,2005-08-18T17:34:19Z,3670,177,2005-08-20T21:30:19Z,1,2020-02-15T06:59:45Z +12624,2005-08-18T17:35:00Z,1135,434,2005-08-27T12:18:00Z,2,2020-02-15T06:59:45Z +12625,2005-08-18T17:36:19Z,2645,108,2005-08-23T11:42:19Z,1,2020-02-15T06:59:45Z +12626,2005-08-18T17:36:45Z,4230,361,2005-08-26T17:12:45Z,1,2020-02-15T06:59:45Z +12627,2005-08-18T17:37:11Z,3760,150,2005-08-19T14:59:11Z,2,2020-02-15T06:59:45Z +12628,2005-08-18T17:40:25Z,3210,520,2005-08-25T13:39:25Z,1,2020-02-15T06:59:45Z +12629,2005-08-18T17:40:33Z,1705,459,2005-08-26T21:09:33Z,1,2020-02-15T06:59:45Z +12630,2005-08-18T17:49:28Z,1457,452,2005-08-24T12:23:28Z,1,2020-02-15T06:59:45Z +12631,2005-08-18T17:52:51Z,2782,339,2005-08-25T14:40:51Z,2,2020-02-15T06:59:45Z +12632,2005-08-18T17:54:21Z,827,381,2005-08-22T18:58:21Z,1,2020-02-15T06:59:45Z +12633,2005-08-18T17:55:38Z,4341,469,2005-08-23T17:19:38Z,2,2020-02-15T06:59:45Z +12634,2005-08-18T17:58:14Z,1037,549,2005-08-19T21:08:14Z,2,2020-02-15T06:59:45Z +12635,2005-08-18T18:00:23Z,331,15,2005-08-23T16:40:23Z,2,2020-02-15T06:59:45Z +12636,2005-08-18T18:00:29Z,1645,380,2005-08-26T20:08:29Z,2,2020-02-15T06:59:45Z +12637,2005-08-18T18:06:53Z,4005,145,2005-08-19T17:36:53Z,1,2020-02-15T06:59:45Z +12638,2005-08-18T18:11:39Z,2849,172,2005-08-25T21:54:39Z,2,2020-02-15T06:59:45Z +12639,2005-08-18T18:13:05Z,562,500,2005-08-27T16:00:05Z,2,2020-02-15T06:59:45Z +12640,2005-08-18T18:14:49Z,1715,544,2005-08-24T21:25:49Z,1,2020-02-15T06:59:45Z +12641,2005-08-18T18:18:08Z,776,467,2005-08-19T23:17:08Z,1,2020-02-15T06:59:45Z +12642,2005-08-18T18:19:16Z,2080,167,2005-08-20T17:30:16Z,2,2020-02-15T06:59:45Z +12643,2005-08-18T18:21:06Z,2245,165,2005-08-24T14:26:06Z,1,2020-02-15T06:59:45Z +12644,2005-08-18T18:22:27Z,1511,300,2005-08-26T00:01:27Z,1,2020-02-15T06:59:45Z +12645,2006-02-14T15:16:03Z,1658,457,,1,2020-02-15T06:59:45Z +12646,2005-08-18T18:25:06Z,3103,388,2005-08-24T18:45:06Z,1,2020-02-15T06:59:45Z +12647,2005-08-18T18:29:51Z,323,520,2005-08-27T22:51:51Z,1,2020-02-15T06:59:45Z +12648,2005-08-18T18:30:21Z,3545,519,2005-08-25T19:17:21Z,1,2020-02-15T06:59:45Z +12649,2005-08-18T18:31:47Z,3201,530,2005-08-22T21:07:47Z,2,2020-02-15T06:59:45Z +12650,2005-08-18T18:33:20Z,3237,276,2005-08-21T17:45:20Z,2,2020-02-15T06:59:45Z +12651,2005-08-18T18:36:16Z,8,34,2005-08-22T22:01:16Z,1,2020-02-15T06:59:45Z +12652,2005-08-18T18:48:58Z,2118,9,2005-08-21T14:15:58Z,1,2020-02-15T06:59:45Z +12653,2005-08-18T18:53:17Z,3353,78,2005-08-26T14:08:17Z,1,2020-02-15T06:59:45Z +12654,2005-08-18T18:56:40Z,2217,438,2005-08-20T17:51:40Z,2,2020-02-15T06:59:45Z +12655,2005-08-18T18:57:44Z,859,533,2005-08-27T22:40:44Z,2,2020-02-15T06:59:45Z +12656,2005-08-18T18:58:35Z,3981,286,2005-08-21T00:41:35Z,1,2020-02-15T06:59:45Z +12657,2005-08-18T19:02:16Z,3621,100,2005-08-21T14:59:16Z,1,2020-02-15T06:59:45Z +12658,2005-08-18T19:05:42Z,4320,193,2005-08-19T19:08:42Z,1,2020-02-15T06:59:45Z +12659,2005-08-18T19:05:49Z,336,329,2005-08-24T22:12:49Z,2,2020-02-15T06:59:45Z +12660,2005-08-18T19:07:23Z,414,21,2005-08-27T17:20:23Z,2,2020-02-15T06:59:45Z +12661,2005-08-18T19:10:10Z,1547,333,2005-08-22T20:30:10Z,1,2020-02-15T06:59:45Z +12662,2005-08-18T19:10:41Z,1412,75,2005-08-23T16:59:41Z,1,2020-02-15T06:59:45Z +12663,2005-08-18T19:10:52Z,1163,375,2005-08-19T15:46:52Z,1,2020-02-15T06:59:45Z +12664,2005-08-18T19:10:54Z,2732,577,2005-08-25T19:19:54Z,1,2020-02-15T06:59:45Z +12665,2006-02-14T15:16:03Z,1701,410,,2,2020-02-15T06:59:45Z +12666,2005-08-18T19:11:41Z,4156,251,2005-08-21T18:04:41Z,2,2020-02-15T06:59:45Z +12667,2005-08-18T19:11:45Z,104,545,2005-08-27T13:34:45Z,2,2020-02-15T06:59:45Z +12668,2005-08-18T19:16:47Z,1986,14,2005-08-19T16:31:47Z,1,2020-02-15T06:59:45Z +12669,2005-08-18T19:17:47Z,4530,433,2005-08-24T14:55:47Z,1,2020-02-15T06:59:45Z +12670,2005-08-18T19:17:58Z,1716,580,2005-08-23T20:54:58Z,2,2020-02-15T06:59:45Z +12671,2005-08-18T19:19:59Z,1734,577,2005-08-23T17:53:59Z,2,2020-02-15T06:59:45Z +12672,2006-02-14T15:16:03Z,1722,228,,1,2020-02-15T06:59:45Z +12673,2005-08-18T19:21:56Z,4204,535,2005-08-26T22:44:56Z,2,2020-02-15T06:59:45Z +12674,2005-08-18T19:24:56Z,636,185,2005-08-26T22:16:56Z,2,2020-02-15T06:59:45Z +12675,2005-08-18T19:34:02Z,569,140,2005-08-23T13:36:02Z,2,2020-02-15T06:59:45Z +12676,2005-08-18T19:34:40Z,2581,393,2005-08-20T18:03:40Z,2,2020-02-15T06:59:45Z +12677,2005-08-18T19:36:05Z,1311,334,2005-08-22T21:23:05Z,2,2020-02-15T06:59:45Z +12678,2005-08-18T19:41:27Z,2504,181,2005-08-23T15:14:27Z,2,2020-02-15T06:59:45Z +12679,2005-08-18T19:42:11Z,1535,463,2005-08-25T01:01:11Z,1,2020-02-15T06:59:45Z +12680,2005-08-18T19:43:46Z,833,259,2005-08-27T00:08:46Z,2,2020-02-15T06:59:45Z +12681,2005-08-18T19:48:06Z,1570,518,2005-08-23T15:05:06Z,2,2020-02-15T06:59:45Z +12682,2006-02-14T15:16:03Z,1148,245,,2,2020-02-15T06:59:45Z +12683,2005-08-18T19:50:43Z,1802,166,2005-08-26T00:47:43Z,1,2020-02-15T06:59:45Z +12684,2005-08-18T19:51:27Z,978,196,2005-08-19T15:56:27Z,1,2020-02-15T06:59:45Z +12685,2005-08-18T19:51:29Z,4283,114,2005-08-27T14:58:29Z,2,2020-02-15T06:59:45Z +12686,2005-08-18T19:55:09Z,501,385,2005-08-26T14:17:09Z,1,2020-02-15T06:59:45Z +12687,2005-08-18T19:57:39Z,3092,285,2005-08-27T01:36:39Z,2,2020-02-15T06:59:45Z +12688,2005-08-18T19:59:54Z,2315,65,2005-08-26T18:52:54Z,2,2020-02-15T06:59:45Z +12689,2005-08-18T20:06:34Z,1066,296,2005-08-22T20:11:34Z,2,2020-02-15T06:59:45Z +12690,2005-08-18T20:06:57Z,3574,361,2005-08-24T20:54:57Z,2,2020-02-15T06:59:45Z +12691,2005-08-18T20:07:46Z,3744,534,2005-08-26T18:49:46Z,2,2020-02-15T06:59:45Z +12692,2005-08-18T20:09:19Z,2781,273,2005-08-21T00:14:19Z,1,2020-02-15T06:59:45Z +12693,2005-08-18T20:10:19Z,1543,584,2005-08-25T21:11:19Z,1,2020-02-15T06:59:45Z +12694,2005-08-18T20:10:39Z,1741,268,2005-08-25T20:47:39Z,1,2020-02-15T06:59:45Z +12695,2005-08-18T20:11:35Z,446,483,2005-08-25T18:29:35Z,1,2020-02-15T06:59:45Z +12696,2005-08-18T20:13:08Z,3989,374,2005-08-19T18:02:08Z,2,2020-02-15T06:59:45Z +12697,2005-08-18T20:14:56Z,2774,152,2005-08-23T21:54:56Z,1,2020-02-15T06:59:45Z +12698,2006-02-14T15:16:03Z,3657,497,,1,2020-02-15T06:59:45Z +12699,2005-08-18T20:20:59Z,3695,66,2005-08-22T17:00:59Z,1,2020-02-15T06:59:45Z +12700,2005-08-18T20:24:46Z,540,397,2005-08-23T21:50:46Z,1,2020-02-15T06:59:45Z +12701,2005-08-18T20:26:47Z,2337,489,2005-08-26T23:36:47Z,2,2020-02-15T06:59:45Z +12702,2005-08-18T20:30:33Z,1884,474,2005-08-27T01:22:33Z,2,2020-02-15T06:59:45Z +12703,2005-08-18T20:37:13Z,1278,453,2005-08-26T16:13:13Z,1,2020-02-15T06:59:45Z +12704,2005-08-18T20:43:00Z,51,93,2005-08-21T22:28:00Z,2,2020-02-15T06:59:45Z +12705,2005-08-18T20:44:14Z,2342,517,2005-08-23T20:46:14Z,1,2020-02-15T06:59:45Z +12706,2005-08-18T20:44:34Z,1079,170,2005-08-26T21:47:34Z,1,2020-02-15T06:59:45Z +12707,2005-08-18T20:52:02Z,1565,426,2005-08-25T19:03:02Z,2,2020-02-15T06:59:45Z +12708,2005-08-18T20:59:17Z,3448,28,2005-08-24T22:40:17Z,1,2020-02-15T06:59:45Z +12709,2005-08-18T20:59:51Z,3878,476,2005-08-26T01:21:51Z,2,2020-02-15T06:59:45Z +12710,2005-08-18T21:02:50Z,3011,310,2005-08-26T15:07:50Z,2,2020-02-15T06:59:45Z +12711,2005-08-18T21:03:32Z,2530,122,2005-08-26T17:31:32Z,1,2020-02-15T06:59:45Z +12712,2005-08-18T21:04:13Z,2628,444,2005-08-25T18:15:13Z,2,2020-02-15T06:59:45Z +12713,2005-08-18T21:07:28Z,1505,56,2005-08-24T17:46:28Z,1,2020-02-15T06:59:45Z +12714,2005-08-18T21:08:01Z,868,372,2005-08-27T17:09:01Z,2,2020-02-15T06:59:45Z +12715,2005-08-18T21:09:38Z,3768,266,2005-08-21T20:25:38Z,1,2020-02-15T06:59:45Z +12716,2006-02-14T15:16:03Z,858,570,,2,2020-02-15T06:59:45Z +12717,2005-08-18T21:15:40Z,3551,167,2005-08-20T00:59:40Z,2,2020-02-15T06:59:45Z +12718,2005-08-18T21:21:44Z,3221,176,2005-08-20T01:01:44Z,1,2020-02-15T06:59:45Z +12719,2006-02-14T15:16:03Z,1094,87,,2,2020-02-15T06:59:45Z +12720,2005-08-18T21:28:42Z,2676,419,2005-08-25T18:02:42Z,1,2020-02-15T06:59:45Z +12721,2005-08-18T21:30:12Z,1045,239,2005-08-22T22:45:12Z,1,2020-02-15T06:59:45Z +12722,2005-08-18T21:33:53Z,913,416,2005-08-27T23:47:53Z,2,2020-02-15T06:59:45Z +12723,2005-08-18T21:34:16Z,4167,430,2005-08-22T22:37:16Z,1,2020-02-15T06:59:45Z +12724,2005-08-18T21:37:20Z,2224,242,2005-08-27T21:56:20Z,2,2020-02-15T06:59:45Z +12725,2005-08-18T21:43:09Z,4071,51,2005-08-23T18:50:09Z,1,2020-02-15T06:59:45Z +12726,2005-08-18T21:44:46Z,20,397,2005-08-19T21:58:46Z,2,2020-02-15T06:59:45Z +12727,2005-08-18T21:45:15Z,15,178,2005-08-24T15:52:15Z,1,2020-02-15T06:59:45Z +12728,2005-08-18T21:47:48Z,3156,129,2005-08-25T16:13:48Z,1,2020-02-15T06:59:45Z +12729,2005-08-18T21:52:59Z,3711,424,2005-08-21T00:02:59Z,1,2020-02-15T06:59:45Z +12730,2005-08-18T21:55:01Z,75,7,2005-08-22T01:23:01Z,1,2020-02-15T06:59:45Z +12731,2005-08-18T21:55:38Z,1719,128,2005-08-23T20:30:38Z,1,2020-02-15T06:59:45Z +12732,2005-08-18T21:57:50Z,3307,535,2005-08-19T18:28:50Z,2,2020-02-15T06:59:45Z +12733,2005-08-18T21:59:00Z,3243,144,2005-08-24T02:25:00Z,1,2020-02-15T06:59:45Z +12734,2005-08-18T22:04:52Z,3619,121,2005-08-25T00:34:52Z,1,2020-02-15T06:59:45Z +12735,2005-08-18T22:04:54Z,3679,383,2005-08-23T21:19:54Z,2,2020-02-15T06:59:45Z +12736,2006-02-14T15:16:03Z,3591,244,,2,2020-02-15T06:59:45Z +12737,2005-08-18T22:11:37Z,736,204,2005-08-26T04:08:37Z,1,2020-02-15T06:59:45Z +12738,2005-08-18T22:11:47Z,4313,589,2005-08-27T17:55:47Z,2,2020-02-15T06:59:45Z +12739,2005-08-18T22:15:18Z,4129,292,2005-08-27T00:37:18Z,2,2020-02-15T06:59:45Z +12740,2005-08-18T22:17:04Z,1157,330,2005-08-23T23:42:04Z,1,2020-02-15T06:59:45Z +12741,2005-08-18T22:17:05Z,2084,435,2005-08-25T20:07:05Z,2,2020-02-15T06:59:45Z +12742,2005-08-18T22:22:03Z,1742,68,2005-08-22T04:01:03Z,1,2020-02-15T06:59:45Z +12743,2005-08-18T22:22:31Z,2630,565,2005-08-27T00:31:31Z,1,2020-02-15T06:59:45Z +12744,2005-08-18T22:22:36Z,3815,593,2005-08-24T00:26:36Z,1,2020-02-15T06:59:45Z +12745,2005-08-18T22:22:45Z,262,24,2005-08-20T01:44:45Z,2,2020-02-15T06:59:45Z +12746,2006-02-14T15:16:03Z,1012,211,,1,2020-02-15T06:59:45Z +12747,2005-08-18T22:28:22Z,4075,549,2005-08-22T22:25:22Z,2,2020-02-15T06:59:45Z +12748,2005-08-18T22:29:05Z,3249,373,2005-08-24T18:25:05Z,2,2020-02-15T06:59:45Z +12749,2005-08-18T22:31:21Z,828,388,2005-08-20T22:53:21Z,1,2020-02-15T06:59:45Z +12750,2005-08-18T22:32:39Z,3717,535,2005-08-26T01:54:39Z,1,2020-02-15T06:59:45Z +12751,2005-08-18T22:33:22Z,2791,352,2005-08-20T20:28:22Z,2,2020-02-15T06:59:45Z +12752,2005-08-18T22:33:36Z,3595,514,2005-08-27T23:55:36Z,1,2020-02-15T06:59:45Z +12753,2005-08-18T22:37:39Z,1494,470,2005-08-27T00:21:39Z,2,2020-02-15T06:59:45Z +12754,2005-08-18T22:37:41Z,4154,134,2005-08-27T20:17:41Z,2,2020-02-15T06:59:45Z +12755,2005-08-18T22:38:47Z,105,439,2005-08-22T23:58:47Z,1,2020-02-15T06:59:45Z +12756,2005-08-18T22:52:13Z,1840,89,2005-08-21T17:22:13Z,1,2020-02-15T06:59:45Z +12757,2005-08-18T22:57:45Z,1095,147,2005-08-21T22:43:45Z,1,2020-02-15T06:59:45Z +12758,2005-08-18T22:58:34Z,2279,30,2005-08-22T23:33:34Z,1,2020-02-15T06:59:45Z +12759,2006-02-14T15:16:03Z,4193,354,,2,2020-02-15T06:59:45Z +12760,2005-08-18T23:03:19Z,4188,363,2005-08-24T17:53:19Z,1,2020-02-15T06:59:45Z +12761,2005-08-18T23:05:22Z,2684,364,2005-08-22T01:08:22Z,2,2020-02-15T06:59:45Z +12762,2005-08-18T23:06:54Z,3909,502,2005-08-21T18:30:54Z,1,2020-02-15T06:59:45Z +12763,2005-08-18T23:07:01Z,393,472,2005-08-21T18:45:01Z,1,2020-02-15T06:59:45Z +12764,2005-08-18T23:14:15Z,26,183,2005-08-22T20:23:15Z,1,2020-02-15T06:59:45Z +12765,2005-08-18T23:21:50Z,2244,298,2005-08-28T04:42:50Z,2,2020-02-15T06:59:45Z +12766,2005-08-18T23:25:20Z,3737,50,2005-08-27T04:43:20Z,1,2020-02-15T06:59:45Z +12767,2005-08-18T23:25:49Z,3351,432,2005-08-28T02:40:49Z,2,2020-02-15T06:59:45Z +12768,2005-08-18T23:26:11Z,1993,458,2005-08-19T20:31:11Z,2,2020-02-15T06:59:45Z +12769,2005-08-18T23:26:40Z,926,504,2005-08-25T03:03:40Z,1,2020-02-15T06:59:45Z +12770,2005-08-18T23:29:00Z,1654,575,2005-08-26T20:57:00Z,2,2020-02-15T06:59:45Z +12771,2005-08-18T23:29:23Z,3076,484,2005-08-22T17:31:23Z,2,2020-02-15T06:59:45Z +12772,2005-08-18T23:29:25Z,1179,397,2005-08-23T20:32:25Z,1,2020-02-15T06:59:45Z +12773,2005-08-18T23:32:19Z,4390,360,2005-08-27T04:40:19Z,1,2020-02-15T06:59:45Z +12774,2005-08-18T23:34:22Z,3601,21,2005-08-28T05:00:22Z,2,2020-02-15T06:59:45Z +12775,2005-08-18T23:35:56Z,4374,54,2005-08-26T18:37:56Z,1,2020-02-15T06:59:45Z +12776,2005-08-18T23:37:33Z,2345,55,2005-08-23T03:07:33Z,1,2020-02-15T06:59:45Z +12777,2005-08-18T23:39:22Z,3467,130,2005-08-27T20:28:22Z,1,2020-02-15T06:59:45Z +12778,2005-08-18T23:40:23Z,3626,290,2005-08-19T18:14:23Z,2,2020-02-15T06:59:45Z +12779,2005-08-18T23:44:00Z,1814,325,2005-08-26T05:27:00Z,2,2020-02-15T06:59:45Z +12780,2005-08-18T23:48:16Z,54,373,2005-08-20T18:13:16Z,2,2020-02-15T06:59:45Z +12781,2005-08-18T23:50:24Z,1187,168,2005-08-21T02:31:24Z,1,2020-02-15T06:59:45Z +12782,2005-08-18T23:56:23Z,1454,495,2005-08-25T18:47:23Z,1,2020-02-15T06:59:45Z +12783,2005-08-19T00:01:14Z,1109,503,2005-08-21T22:02:14Z,2,2020-02-15T06:59:45Z +12784,2005-08-19T00:02:46Z,447,513,2005-08-20T04:39:46Z,1,2020-02-15T06:59:45Z +12785,2005-08-19T00:05:49Z,4190,145,2005-08-21T04:39:49Z,2,2020-02-15T06:59:45Z +12786,2006-02-14T15:16:03Z,97,512,,1,2020-02-15T06:59:45Z +12787,2005-08-19T00:07:58Z,2023,278,2005-08-24T00:42:58Z,2,2020-02-15T06:59:45Z +12788,2005-08-19T00:15:09Z,644,90,2005-08-27T21:54:09Z,1,2020-02-15T06:59:45Z +12789,2005-08-19T00:16:19Z,2412,557,2005-08-25T00:18:19Z,2,2020-02-15T06:59:45Z +12790,2005-08-19T00:16:54Z,1281,44,2005-08-26T02:00:54Z,1,2020-02-15T06:59:45Z +12791,2005-08-19T00:17:09Z,3594,573,2005-08-22T23:46:09Z,1,2020-02-15T06:59:45Z +12792,2006-02-14T15:16:03Z,1435,405,,2,2020-02-15T06:59:45Z +12793,2005-08-19T00:20:36Z,1195,403,2005-08-28T02:43:36Z,1,2020-02-15T06:59:45Z +12794,2005-08-19T00:20:37Z,1586,336,2005-08-26T01:48:37Z,1,2020-02-15T06:59:45Z +12795,2005-08-19T00:21:52Z,2745,360,2005-08-22T22:13:52Z,2,2020-02-15T06:59:45Z +12796,2005-08-19T00:22:24Z,1285,368,2005-08-19T22:53:24Z,2,2020-02-15T06:59:45Z +12797,2005-08-19T00:24:08Z,1595,5,2005-08-21T22:53:08Z,2,2020-02-15T06:59:45Z +12798,2005-08-19T00:24:33Z,4244,534,2005-08-21T23:01:33Z,2,2020-02-15T06:59:45Z +12799,2005-08-19T00:27:01Z,3885,197,2005-08-22T03:30:01Z,2,2020-02-15T06:59:45Z +12800,2005-08-19T00:27:11Z,257,545,2005-08-22T01:08:11Z,1,2020-02-15T06:59:45Z +12801,2005-08-19T00:27:19Z,960,202,2005-08-26T03:10:19Z,1,2020-02-15T06:59:45Z +12802,2005-08-19T00:27:41Z,2461,462,2005-08-28T03:24:41Z,1,2020-02-15T06:59:45Z +12803,2005-08-19T00:28:21Z,1058,390,2005-08-23T02:02:21Z,1,2020-02-15T06:59:45Z +12804,2005-08-19T00:33:15Z,147,365,2005-08-28T02:16:15Z,2,2020-02-15T06:59:45Z +12805,2005-08-19T00:36:34Z,2964,345,2005-08-26T20:38:34Z,1,2020-02-15T06:59:45Z +12806,2005-08-19T00:37:26Z,4488,423,2005-08-23T18:49:26Z,2,2020-02-15T06:59:45Z +12807,2005-08-19T00:38:46Z,2323,513,2005-08-28T03:37:46Z,2,2020-02-15T06:59:45Z +12808,2005-08-19T00:40:41Z,3920,55,2005-08-21T06:39:41Z,2,2020-02-15T06:59:45Z +12809,2005-08-19T00:42:24Z,2005,22,2005-08-23T06:06:24Z,1,2020-02-15T06:59:45Z +12810,2005-08-19T00:44:10Z,1340,250,2005-08-22T22:30:10Z,2,2020-02-15T06:59:45Z +12811,2005-08-19T00:51:28Z,641,54,2005-08-24T01:57:28Z,2,2020-02-15T06:59:45Z +12812,2005-08-19T00:54:02Z,4024,450,2005-08-22T20:35:02Z,2,2020-02-15T06:59:45Z +12813,2005-08-19T00:54:22Z,3285,500,2005-08-19T21:17:22Z,2,2020-02-15T06:59:45Z +12814,2005-08-19T00:58:24Z,204,465,2005-08-21T05:46:24Z,1,2020-02-15T06:59:45Z +12815,2005-08-19T00:59:42Z,435,588,2005-08-25T21:43:42Z,2,2020-02-15T06:59:45Z +12816,2005-08-19T01:04:05Z,4051,342,2005-08-24T01:25:05Z,1,2020-02-15T06:59:45Z +12817,2005-08-19T01:04:35Z,1246,113,2005-08-25T21:14:35Z,1,2020-02-15T06:59:45Z +12818,2005-08-19T01:04:59Z,3069,528,2005-08-26T21:39:59Z,2,2020-02-15T06:59:45Z +12819,2005-08-19T01:05:05Z,1117,542,2005-08-22T05:50:05Z,1,2020-02-15T06:59:45Z +12820,2005-08-19T01:05:08Z,2936,127,2005-08-21T05:37:08Z,2,2020-02-15T06:59:45Z +12821,2005-08-19T01:07:02Z,3418,41,2005-08-23T01:22:02Z,2,2020-02-15T06:59:45Z +12822,2005-08-19T01:15:24Z,419,426,2005-08-20T06:38:24Z,1,2020-02-15T06:59:45Z +12823,2005-08-19T01:15:47Z,426,316,2005-08-22T05:32:47Z,2,2020-02-15T06:59:45Z +12824,2005-08-19T01:18:00Z,1875,247,2005-08-22T01:12:00Z,2,2020-02-15T06:59:45Z +12825,2005-08-19T01:23:58Z,4495,328,2005-08-20T00:19:58Z,2,2020-02-15T06:59:45Z +12826,2005-08-19T01:25:11Z,1277,439,2005-08-27T01:22:11Z,1,2020-02-15T06:59:45Z +12827,2005-08-19T01:27:23Z,880,253,2005-08-27T02:22:23Z,2,2020-02-15T06:59:45Z +12828,2005-08-19T01:37:47Z,4208,378,2005-08-24T22:31:47Z,2,2020-02-15T06:59:45Z +12829,2005-08-19T01:38:18Z,1129,326,2005-08-25T22:23:18Z,2,2020-02-15T06:59:45Z +12830,2005-08-19T01:40:25Z,4080,409,2005-08-20T23:49:25Z,2,2020-02-15T06:59:45Z +12831,2005-08-19T01:40:43Z,1916,183,2005-08-28T05:22:43Z,1,2020-02-15T06:59:45Z +12832,2005-08-19T01:41:44Z,2820,563,2005-08-24T23:15:44Z,2,2020-02-15T06:59:45Z +12833,2005-08-19T01:42:28Z,3723,59,2005-08-26T20:13:28Z,1,2020-02-15T06:59:45Z +12834,2005-08-19T01:47:30Z,757,133,2005-08-24T20:08:30Z,1,2020-02-15T06:59:45Z +12835,2005-08-19T01:47:45Z,1477,124,2005-08-26T00:58:45Z,2,2020-02-15T06:59:45Z +12836,2005-08-19T01:48:33Z,1380,196,2005-08-23T04:46:33Z,1,2020-02-15T06:59:45Z +12837,2005-08-19T01:51:09Z,2288,495,2005-08-22T07:14:09Z,2,2020-02-15T06:59:45Z +12838,2005-08-19T01:51:50Z,1207,308,2005-08-27T23:12:50Z,1,2020-02-15T06:59:45Z +12839,2005-08-19T01:53:43Z,1970,360,2005-08-28T02:27:43Z,2,2020-02-15T06:59:45Z +12840,2005-08-19T01:54:11Z,2098,182,2005-08-28T01:11:11Z,2,2020-02-15T06:59:45Z +12841,2005-08-19T01:55:55Z,4233,257,2005-08-24T02:56:55Z,1,2020-02-15T06:59:45Z +12842,2005-08-19T01:57:21Z,2540,119,2005-08-28T01:10:21Z,1,2020-02-15T06:59:45Z +12843,2005-08-19T01:58:54Z,3279,128,2005-08-20T00:20:54Z,2,2020-02-15T06:59:45Z +12844,2005-08-19T01:59:08Z,4146,584,2005-08-24T22:21:08Z,1,2020-02-15T06:59:45Z +12845,2005-08-19T02:02:37Z,1698,106,2005-08-22T01:08:37Z,1,2020-02-15T06:59:45Z +12846,2005-08-19T02:03:26Z,286,305,2005-08-25T07:39:26Z,2,2020-02-15T06:59:45Z +12847,2005-08-19T02:04:07Z,384,91,2005-08-23T20:13:07Z,2,2020-02-15T06:59:45Z +12848,2005-08-19T02:05:11Z,2833,539,2005-08-24T05:27:11Z,2,2020-02-15T06:59:45Z +12849,2005-08-19T02:05:37Z,3489,280,2005-08-23T07:00:37Z,1,2020-02-15T06:59:45Z +12850,2005-08-19T02:08:06Z,1816,440,2005-08-20T21:06:06Z,2,2020-02-15T06:59:45Z +12851,2005-08-19T02:12:12Z,3311,194,2005-08-25T23:51:12Z,1,2020-02-15T06:59:45Z +12852,2005-08-19T02:12:40Z,2446,260,2005-08-19T23:42:40Z,1,2020-02-15T06:59:45Z +12853,2005-08-19T02:15:32Z,3753,232,2005-08-27T21:26:32Z,2,2020-02-15T06:59:45Z +12854,2005-08-19T02:18:51Z,4577,362,2005-08-24T04:16:51Z,2,2020-02-15T06:59:45Z +12855,2005-08-19T02:18:58Z,2900,242,2005-08-19T20:50:58Z,1,2020-02-15T06:59:45Z +12856,2005-08-19T02:19:13Z,132,4,2005-08-23T07:49:13Z,2,2020-02-15T06:59:45Z +12857,2005-08-19T02:20:13Z,4307,443,2005-08-20T20:20:13Z,1,2020-02-15T06:59:45Z +12858,2005-08-19T02:22:16Z,3024,144,2005-08-26T07:25:16Z,2,2020-02-15T06:59:45Z +12859,2005-08-19T02:23:23Z,2289,139,2005-08-28T04:55:23Z,2,2020-02-15T06:59:45Z +12860,2005-08-19T02:24:41Z,778,548,2005-08-25T07:43:41Z,1,2020-02-15T06:59:45Z +12861,2005-08-19T02:30:24Z,3115,287,2005-08-22T08:23:24Z,1,2020-02-15T06:59:45Z +12862,2005-08-19T02:31:59Z,473,198,2005-08-26T08:16:59Z,2,2020-02-15T06:59:45Z +12863,2005-08-19T02:35:59Z,780,234,2005-08-21T21:13:59Z,1,2020-02-15T06:59:45Z +12864,2005-08-19T02:38:26Z,4481,465,2005-08-22T21:42:26Z,2,2020-02-15T06:59:45Z +12865,2005-08-19T02:38:50Z,3437,460,2005-08-21T02:33:50Z,1,2020-02-15T06:59:45Z +12866,2005-08-19T02:39:47Z,1766,229,2005-08-27T02:14:47Z,1,2020-02-15T06:59:45Z +12867,2005-08-19T02:40:11Z,4499,330,2005-08-20T04:01:11Z,1,2020-02-15T06:59:45Z +12868,2005-08-19T02:47:19Z,4054,551,2005-08-20T00:30:19Z,2,2020-02-15T06:59:45Z +12869,2005-08-19T02:50:36Z,3939,99,2005-08-26T21:38:36Z,2,2020-02-15T06:59:45Z +12870,2005-08-19T02:54:38Z,991,86,2005-08-27T00:45:38Z,1,2020-02-15T06:59:45Z +12871,2005-08-19T02:55:36Z,2625,217,2005-08-22T01:00:36Z,2,2020-02-15T06:59:45Z +12872,2005-08-19T02:57:37Z,1975,54,2005-08-22T23:23:37Z,1,2020-02-15T06:59:45Z +12873,2005-08-19T03:05:41Z,2140,138,2005-08-22T06:57:41Z,2,2020-02-15T06:59:45Z +12874,2005-08-19T03:07:57Z,848,254,2005-08-22T22:42:57Z,2,2020-02-15T06:59:45Z +12875,2005-08-19T03:10:21Z,1708,483,2005-08-26T01:00:21Z,2,2020-02-15T06:59:45Z +12876,2005-08-19T03:12:19Z,803,356,2005-08-20T02:24:19Z,2,2020-02-15T06:59:45Z +12877,2005-08-19T03:16:58Z,1016,40,2005-08-25T02:10:58Z,2,2020-02-15T06:59:45Z +12878,2005-08-19T03:17:08Z,1182,596,2005-08-23T03:44:08Z,1,2020-02-15T06:59:45Z +12879,2005-08-19T03:22:55Z,3556,210,2005-08-24T22:00:55Z,1,2020-02-15T06:59:45Z +12880,2005-08-19T03:27:17Z,3386,552,2005-08-28T06:16:17Z,2,2020-02-15T06:59:45Z +12881,2005-08-19T03:28:13Z,1432,121,2005-08-25T05:25:13Z,1,2020-02-15T06:59:45Z +12882,2005-08-19T03:33:46Z,911,153,2005-08-21T22:49:46Z,1,2020-02-15T06:59:45Z +12883,2005-08-19T03:33:47Z,964,555,2005-08-23T21:55:47Z,1,2020-02-15T06:59:45Z +12884,2005-08-19T03:34:04Z,2768,348,2005-08-28T01:00:04Z,2,2020-02-15T06:59:45Z +12885,2005-08-19T03:37:25Z,883,185,2005-08-20T22:10:25Z,1,2020-02-15T06:59:45Z +12886,2005-08-19T03:38:32Z,2157,174,2005-08-26T02:17:32Z,1,2020-02-15T06:59:45Z +12887,2005-08-19T03:38:54Z,1214,150,2005-08-27T08:45:54Z,1,2020-02-15T06:59:45Z +12888,2005-08-19T03:41:09Z,4398,146,2005-08-24T07:09:09Z,2,2020-02-15T06:59:45Z +12889,2005-08-19T03:41:31Z,4376,515,2005-08-27T00:46:31Z,2,2020-02-15T06:59:45Z +12890,2005-08-19T03:42:08Z,3831,150,2005-08-19T23:08:08Z,1,2020-02-15T06:59:45Z +12891,2006-02-14T15:16:03Z,2764,388,,2,2020-02-15T06:59:45Z +12892,2005-08-19T03:46:34Z,1044,121,2005-08-21T05:11:34Z,2,2020-02-15T06:59:45Z +12893,2005-08-19T03:46:43Z,168,498,2005-08-20T08:38:43Z,2,2020-02-15T06:59:45Z +12894,2005-08-19T03:49:28Z,4581,541,2005-08-25T01:51:28Z,2,2020-02-15T06:59:45Z +12895,2005-08-19T03:50:48Z,4372,396,2005-08-26T09:13:48Z,1,2020-02-15T06:59:45Z +12896,2005-08-19T03:52:44Z,148,220,2005-08-24T22:27:44Z,1,2020-02-15T06:59:45Z +12897,2006-02-14T15:16:03Z,1512,178,,2,2020-02-15T06:59:45Z +12898,2005-08-19T03:54:34Z,1555,586,2005-08-23T08:14:34Z,2,2020-02-15T06:59:45Z +12899,2005-08-19T04:03:34Z,830,105,2005-08-20T08:34:34Z,2,2020-02-15T06:59:45Z +12900,2005-08-19T04:03:49Z,849,408,2005-08-24T22:11:49Z,2,2020-02-15T06:59:45Z +12901,2006-02-14T15:16:03Z,2799,180,,2,2020-02-15T06:59:45Z +12902,2006-02-14T15:16:03Z,464,91,,2,2020-02-15T06:59:45Z +12903,2005-08-19T04:09:38Z,2340,302,2005-08-26T03:24:38Z,2,2020-02-15T06:59:45Z +12904,2005-08-19T04:10:50Z,459,257,2005-08-27T23:24:50Z,1,2020-02-15T06:59:45Z +12905,2005-08-19T04:13:37Z,1043,480,2005-08-26T23:52:37Z,1,2020-02-15T06:59:45Z +12906,2005-08-19T04:13:43Z,2060,401,2005-08-20T04:24:43Z,1,2020-02-15T06:59:45Z +12907,2005-08-19T04:16:13Z,2844,422,2005-08-27T02:43:13Z,1,2020-02-15T06:59:45Z +12908,2005-08-19T04:19:05Z,175,340,2005-08-25T09:50:05Z,1,2020-02-15T06:59:45Z +12909,2005-08-19T04:20:25Z,4300,210,2005-08-24T06:40:25Z,2,2020-02-15T06:59:45Z +12910,2005-08-19T04:23:13Z,3968,128,2005-08-20T22:27:13Z,1,2020-02-15T06:59:45Z +12911,2005-08-19T04:24:10Z,1770,367,2005-08-26T00:35:10Z,2,2020-02-15T06:59:45Z +12912,2005-08-19T04:24:35Z,1747,364,2005-08-27T07:13:35Z,2,2020-02-15T06:59:45Z +12913,2005-08-19T04:25:39Z,3719,356,2005-08-25T07:23:39Z,1,2020-02-15T06:59:45Z +12914,2005-08-19T04:25:59Z,4396,501,2005-08-23T08:04:59Z,2,2020-02-15T06:59:45Z +12915,2006-02-14T15:16:03Z,2651,516,,1,2020-02-15T06:59:45Z +12916,2005-08-19T04:27:05Z,2277,157,2005-08-21T02:33:05Z,2,2020-02-15T06:59:45Z +12917,2005-08-19T04:27:11Z,107,152,2005-08-20T03:04:11Z,2,2020-02-15T06:59:45Z +12918,2005-08-19T04:31:36Z,972,13,2005-08-25T05:50:36Z,1,2020-02-15T06:59:45Z +12919,2005-08-19T04:32:15Z,2121,263,2005-08-24T05:56:15Z,2,2020-02-15T06:59:45Z +12920,2005-08-19T04:32:32Z,2516,511,2005-08-27T00:44:32Z,2,2020-02-15T06:59:45Z +12921,2005-08-19T04:47:48Z,781,234,2005-08-25T00:07:48Z,2,2020-02-15T06:59:45Z +12922,2005-08-19T04:48:48Z,342,25,2005-08-23T23:32:48Z,1,2020-02-15T06:59:45Z +12923,2005-08-19T04:50:20Z,1390,531,2005-08-22T10:42:20Z,1,2020-02-15T06:59:45Z +12924,2005-08-19T04:51:47Z,3807,519,2005-08-26T07:50:47Z,1,2020-02-15T06:59:45Z +12925,2005-08-19T04:59:01Z,3361,57,2005-08-27T02:03:01Z,2,2020-02-15T06:59:45Z +12926,2005-08-19T05:00:16Z,23,336,2005-08-26T06:12:16Z,2,2020-02-15T06:59:45Z +12927,2005-08-19T05:02:46Z,1171,223,2005-08-23T01:08:46Z,1,2020-02-15T06:59:45Z +12928,2005-08-19T05:04:09Z,4531,353,2005-08-24T09:09:09Z,2,2020-02-15T06:59:45Z +12929,2005-08-19T05:05:23Z,1531,310,2005-08-25T04:37:23Z,1,2020-02-15T06:59:45Z +12930,2005-08-19T05:11:32Z,4410,414,2005-08-22T02:20:32Z,2,2020-02-15T06:59:45Z +12931,2005-08-19T05:11:47Z,3070,407,2005-08-21T00:59:47Z,1,2020-02-15T06:59:45Z +12932,2005-08-19T05:17:30Z,2295,416,2005-08-21T09:24:30Z,1,2020-02-15T06:59:45Z +12933,2005-08-19T05:18:20Z,4103,589,2005-08-27T00:13:20Z,1,2020-02-15T06:59:45Z +12934,2005-08-19T05:18:42Z,3242,591,2005-08-24T10:42:42Z,1,2020-02-15T06:59:45Z +12935,2005-08-19T05:20:25Z,193,279,2005-08-21T03:10:25Z,2,2020-02-15T06:59:45Z +12936,2005-08-19T05:25:06Z,654,387,2005-08-28T08:21:06Z,1,2020-02-15T06:59:45Z +12937,2005-08-19T05:25:30Z,3826,348,2005-08-22T10:40:30Z,2,2020-02-15T06:59:45Z +12938,2006-02-14T15:16:03Z,3987,28,,1,2020-02-15T06:59:45Z +12939,2005-08-19T05:38:25Z,3375,181,2005-08-23T23:52:25Z,1,2020-02-15T06:59:45Z +12940,2005-08-19T05:38:29Z,2222,340,2005-08-20T08:15:29Z,1,2020-02-15T06:59:45Z +12941,2005-08-19T05:39:26Z,2951,195,2005-08-22T09:50:26Z,2,2020-02-15T06:59:45Z +12942,2005-08-19T05:40:36Z,3938,103,2005-08-27T02:04:36Z,1,2020-02-15T06:59:45Z +12943,2005-08-19T05:46:26Z,3930,547,2005-08-22T03:26:26Z,2,2020-02-15T06:59:45Z +12944,2005-08-19T05:48:12Z,2956,148,2005-08-28T10:10:12Z,1,2020-02-15T06:59:45Z +12945,2005-08-19T05:51:46Z,3638,312,2005-08-23T11:22:46Z,2,2020-02-15T06:59:45Z +12946,2005-08-19T05:53:34Z,2066,444,2005-08-20T07:30:34Z,1,2020-02-15T06:59:45Z +12947,2005-08-19T05:54:21Z,935,499,2005-08-22T09:17:21Z,1,2020-02-15T06:59:45Z +12948,2005-08-19T05:55:14Z,4173,442,2005-08-22T01:05:14Z,2,2020-02-15T06:59:45Z +12949,2005-08-19T05:55:52Z,4209,279,2005-08-23T00:01:52Z,1,2020-02-15T06:59:45Z +12950,2005-08-19T05:55:58Z,1064,463,2005-08-23T08:05:58Z,1,2020-02-15T06:59:45Z +12951,2005-08-19T05:56:44Z,2143,70,2005-08-24T11:28:44Z,2,2020-02-15T06:59:45Z +12952,2005-08-19T06:00:52Z,2460,228,2005-08-20T02:17:52Z,1,2020-02-15T06:59:45Z +12953,2005-08-19T06:04:07Z,3954,429,2005-08-28T11:05:07Z,1,2020-02-15T06:59:45Z +12954,2005-08-19T06:04:34Z,3592,63,2005-08-28T02:12:34Z,2,2020-02-15T06:59:45Z +12955,2005-08-19T06:05:58Z,2040,410,2005-08-26T04:24:58Z,2,2020-02-15T06:59:45Z +12956,2005-08-19T06:06:26Z,3613,241,2005-08-28T08:37:26Z,2,2020-02-15T06:59:45Z +12957,2005-08-19T06:12:44Z,2219,512,2005-08-28T10:49:44Z,2,2020-02-15T06:59:45Z +12958,2005-08-19T06:19:21Z,4214,569,2005-08-20T02:21:21Z,1,2020-02-15T06:59:45Z +12959,2006-02-14T15:16:03Z,1540,284,,2,2020-02-15T06:59:45Z +12960,2005-08-19T06:21:52Z,3498,152,2005-08-25T04:16:52Z,1,2020-02-15T06:59:45Z +12961,2005-08-19T06:22:37Z,4529,386,2005-08-23T00:49:37Z,1,2020-02-15T06:59:45Z +12962,2005-08-19T06:22:48Z,575,171,2005-08-27T07:47:48Z,1,2020-02-15T06:59:45Z +12963,2005-08-19T06:26:04Z,1521,2,2005-08-23T11:37:04Z,2,2020-02-15T06:59:45Z +12964,2005-08-19T06:29:13Z,2854,142,2005-08-22T12:23:13Z,2,2020-02-15T06:59:45Z +12965,2005-08-19T06:33:00Z,4308,430,2005-08-22T02:02:00Z,1,2020-02-15T06:59:45Z +12966,2005-08-19T06:37:48Z,3196,69,2005-08-26T03:59:48Z,2,2020-02-15T06:59:45Z +12967,2005-08-19T06:37:51Z,3404,170,2005-08-25T06:58:51Z,2,2020-02-15T06:59:45Z +12968,2005-08-19T06:38:18Z,3108,166,2005-08-20T08:29:18Z,1,2020-02-15T06:59:45Z +12969,2005-08-19T06:38:59Z,191,224,2005-08-25T09:09:59Z,2,2020-02-15T06:59:45Z +12970,2006-02-14T15:16:03Z,3999,216,,1,2020-02-15T06:59:45Z +12971,2005-08-19T06:42:43Z,3504,492,2005-08-23T10:49:43Z,2,2020-02-15T06:59:45Z +12972,2005-08-19T06:43:28Z,1218,55,2005-08-27T11:30:28Z,1,2020-02-15T06:59:45Z +12973,2005-08-19T06:48:11Z,128,163,2005-08-22T07:18:11Z,2,2020-02-15T06:59:45Z +12974,2005-08-19T06:51:02Z,3599,218,2005-08-25T11:48:02Z,2,2020-02-15T06:59:45Z +12975,2005-08-19T06:51:19Z,3300,236,2005-08-25T04:22:19Z,1,2020-02-15T06:59:45Z +12976,2005-08-19T06:52:58Z,66,592,2005-08-26T11:23:58Z,2,2020-02-15T06:59:45Z +12977,2005-08-19T06:55:33Z,2004,388,2005-08-27T07:38:33Z,2,2020-02-15T06:59:45Z +12978,2005-08-19T06:57:27Z,3252,167,2005-08-20T09:10:27Z,2,2020-02-15T06:59:45Z +12979,2005-08-19T07:00:35Z,1227,267,2005-08-21T06:12:35Z,2,2020-02-15T06:59:45Z +12980,2005-08-19T07:03:14Z,1854,144,2005-08-26T05:07:14Z,1,2020-02-15T06:59:45Z +12981,2005-08-19T07:04:00Z,3925,481,2005-08-21T09:17:00Z,1,2020-02-15T06:59:45Z +12982,2005-08-19T07:06:34Z,1258,44,2005-08-21T06:53:34Z,1,2020-02-15T06:59:45Z +12983,2005-08-19T07:06:51Z,406,148,2005-08-28T10:35:51Z,2,2020-02-15T06:59:45Z +12984,2005-08-19T07:06:51Z,4211,537,2005-08-22T04:04:51Z,1,2020-02-15T06:59:45Z +12985,2005-08-19T07:08:05Z,4133,83,2005-08-24T02:25:05Z,1,2020-02-15T06:59:45Z +12986,2005-08-19T07:09:36Z,1145,210,2005-08-22T05:01:36Z,1,2020-02-15T06:59:45Z +12987,2005-08-19T07:11:44Z,3665,134,2005-08-20T04:17:44Z,1,2020-02-15T06:59:45Z +12988,2006-02-14T15:16:03Z,81,236,,2,2020-02-15T06:59:45Z +12989,2005-08-19T07:19:04Z,2929,306,2005-08-21T10:58:04Z,1,2020-02-15T06:59:45Z +12990,2005-08-19T07:20:39Z,1825,360,2005-08-21T12:31:39Z,2,2020-02-15T06:59:45Z +12991,2005-08-19T07:21:24Z,2227,126,2005-08-21T04:31:24Z,2,2020-02-15T06:59:45Z +12992,2005-08-19T07:23:06Z,3022,597,2005-08-23T06:11:06Z,2,2020-02-15T06:59:45Z +12993,2005-08-19T07:24:03Z,4225,484,2005-08-26T07:15:03Z,2,2020-02-15T06:59:45Z +12994,2005-08-19T07:26:10Z,3809,506,2005-08-20T07:02:10Z,2,2020-02-15T06:59:45Z +12995,2005-08-19T07:26:30Z,2069,566,2005-08-25T12:47:30Z,2,2020-02-15T06:59:45Z +12996,2005-08-19T07:31:32Z,4445,380,2005-08-25T11:59:32Z,1,2020-02-15T06:59:45Z +12997,2005-08-19T07:31:46Z,1661,311,2005-08-24T09:20:46Z,2,2020-02-15T06:59:45Z +12998,2005-08-19T07:32:16Z,2301,354,2005-08-24T01:56:16Z,2,2020-02-15T06:59:45Z +12999,2005-08-19T07:34:53Z,661,24,2005-08-26T03:57:53Z,1,2020-02-15T06:59:45Z +13000,2005-08-19T07:36:42Z,2341,141,2005-08-22T08:50:42Z,1,2020-02-15T06:59:45Z +13001,2005-08-19T07:36:44Z,2505,254,2005-08-22T13:06:44Z,1,2020-02-15T06:59:45Z +13002,2005-08-19T07:37:58Z,3892,477,2005-08-26T11:32:58Z,2,2020-02-15T06:59:45Z +13003,2005-08-19T07:39:29Z,3431,451,2005-08-23T05:48:29Z,2,2020-02-15T06:59:45Z +13004,2005-08-19T07:40:08Z,771,442,2005-08-20T11:49:08Z,1,2020-02-15T06:59:45Z +13005,2005-08-19T07:45:42Z,3417,104,2005-08-20T12:45:42Z,2,2020-02-15T06:59:45Z +13006,2005-08-19T07:47:16Z,3157,134,2005-08-21T06:17:16Z,1,2020-02-15T06:59:45Z +13007,2005-08-19T07:47:43Z,4280,430,2005-08-26T02:48:43Z,2,2020-02-15T06:59:45Z +13008,2006-02-14T15:16:03Z,1838,181,,1,2020-02-15T06:59:45Z +13009,2005-08-19T07:50:35Z,677,376,2005-08-21T06:04:35Z,1,2020-02-15T06:59:45Z +13010,2005-08-19T07:52:21Z,825,413,2005-08-27T12:51:21Z,1,2020-02-15T06:59:45Z +13011,2005-08-19T07:53:58Z,1998,529,2005-08-24T12:00:58Z,1,2020-02-15T06:59:45Z +13012,2005-08-19T07:54:59Z,1690,145,2005-08-26T09:50:59Z,2,2020-02-15T06:59:45Z +13013,2005-08-19T07:55:51Z,841,293,2005-08-26T05:14:51Z,1,2020-02-15T06:59:45Z +13014,2005-08-19T07:56:08Z,3400,344,2005-08-21T10:20:08Z,2,2020-02-15T06:59:45Z +13015,2005-08-19T07:56:51Z,3461,126,2005-08-28T07:05:51Z,2,2020-02-15T06:59:45Z +13016,2005-08-19T07:57:14Z,3095,175,2005-08-23T03:29:14Z,1,2020-02-15T06:59:45Z +13017,2005-08-19T08:02:24Z,2160,104,2005-08-26T07:32:24Z,1,2020-02-15T06:59:45Z +13018,2005-08-19T08:04:50Z,2122,168,2005-08-26T11:46:50Z,1,2020-02-15T06:59:45Z +13019,2005-08-19T08:07:43Z,2827,597,2005-08-20T12:09:43Z,2,2020-02-15T06:59:45Z +13020,2005-08-19T08:07:50Z,4501,92,2005-08-28T11:42:50Z,1,2020-02-15T06:59:45Z +13021,2005-08-19T08:08:04Z,1242,309,2005-08-26T12:04:04Z,2,2020-02-15T06:59:45Z +13022,2006-02-14T15:16:03Z,2266,336,,2,2020-02-15T06:59:45Z +13023,2005-08-19T08:13:54Z,1566,69,2005-08-27T13:18:54Z,1,2020-02-15T06:59:45Z +13024,2005-08-19T08:19:21Z,2917,401,2005-08-27T05:18:21Z,1,2020-02-15T06:59:45Z +13025,2006-02-14T15:16:03Z,4066,269,,1,2020-02-15T06:59:45Z +13026,2005-08-19T08:22:45Z,3026,79,2005-08-21T09:31:45Z,1,2020-02-15T06:59:45Z +13027,2005-08-19T08:25:16Z,3756,128,2005-08-25T13:42:16Z,1,2020-02-15T06:59:45Z +13028,2005-08-19T08:27:23Z,2165,371,2005-08-24T03:46:23Z,1,2020-02-15T06:59:45Z +13029,2005-08-19T08:28:04Z,3283,293,2005-08-22T12:25:04Z,2,2020-02-15T06:59:45Z +13030,2005-08-19T08:28:11Z,2614,240,2005-08-24T07:20:11Z,1,2020-02-15T06:59:45Z +13031,2005-08-19T08:30:04Z,1525,567,2005-08-23T09:35:04Z,2,2020-02-15T06:59:45Z +13032,2005-08-19T08:31:50Z,3699,82,2005-08-23T04:00:50Z,2,2020-02-15T06:59:45Z +13033,2005-08-19T08:34:39Z,1682,344,2005-08-28T10:13:39Z,1,2020-02-15T06:59:45Z +13034,2005-08-19T08:41:29Z,990,387,2005-08-20T07:36:29Z,2,2020-02-15T06:59:45Z +13035,2005-08-19T08:46:45Z,4082,135,2005-08-22T11:42:45Z,1,2020-02-15T06:59:45Z +13036,2005-08-19T08:48:37Z,1469,20,2005-08-22T04:13:37Z,2,2020-02-15T06:59:45Z +13037,2005-08-19T08:53:57Z,65,275,2005-08-28T08:56:57Z,2,2020-02-15T06:59:45Z +13038,2005-08-19T08:55:16Z,2226,532,2005-08-25T12:23:16Z,2,2020-02-15T06:59:45Z +13039,2005-08-19T08:55:19Z,1952,370,2005-08-20T07:39:19Z,2,2020-02-15T06:59:45Z +13040,2005-08-19T09:04:24Z,4113,425,2005-08-23T12:36:24Z,2,2020-02-15T06:59:45Z +13041,2005-08-19T09:05:38Z,1576,462,2005-08-27T06:34:38Z,1,2020-02-15T06:59:45Z +13042,2005-08-19T09:06:08Z,1047,414,2005-08-22T13:46:08Z,2,2020-02-15T06:59:45Z +13043,2005-08-19T09:07:13Z,24,127,2005-08-27T07:49:13Z,1,2020-02-15T06:59:45Z +13044,2005-08-19T09:14:31Z,809,142,2005-08-20T11:16:31Z,1,2020-02-15T06:59:45Z +13045,2005-08-19T09:17:35Z,389,254,2005-08-23T12:04:35Z,1,2020-02-15T06:59:45Z +13046,2005-08-19T09:21:10Z,965,37,2005-08-26T13:00:10Z,2,2020-02-15T06:59:45Z +13047,2005-08-19T09:24:49Z,2704,394,2005-08-24T11:06:49Z,2,2020-02-15T06:59:45Z +13048,2005-08-19T09:25:06Z,1029,486,2005-08-28T11:18:06Z,2,2020-02-15T06:59:45Z +13049,2005-08-19T09:25:40Z,4122,53,2005-08-27T10:19:40Z,2,2020-02-15T06:59:45Z +13050,2005-08-19T09:31:23Z,3682,131,2005-08-26T06:56:23Z,2,2020-02-15T06:59:45Z +13051,2005-08-19T09:31:33Z,4064,90,2005-08-28T06:15:33Z,1,2020-02-15T06:59:45Z +13052,2005-08-19T09:31:42Z,3036,502,2005-08-28T15:11:42Z,2,2020-02-15T06:59:45Z +13053,2005-08-19T09:31:48Z,2044,140,2005-08-28T07:51:48Z,2,2020-02-15T06:59:45Z +13054,2005-08-19T09:34:02Z,2983,325,2005-08-23T05:25:02Z,2,2020-02-15T06:59:45Z +13055,2005-08-19T09:36:28Z,3580,485,2005-08-24T05:53:28Z,2,2020-02-15T06:59:45Z +13056,2006-02-14T15:16:03Z,3751,115,,2,2020-02-15T06:59:45Z +13057,2005-08-19T09:40:05Z,876,105,2005-08-28T13:22:05Z,2,2020-02-15T06:59:45Z +13058,2005-08-19T09:40:53Z,2437,24,2005-08-26T05:48:53Z,2,2020-02-15T06:59:45Z +13059,2005-08-19T09:42:01Z,3810,341,2005-08-21T12:07:01Z,1,2020-02-15T06:59:45Z +13060,2005-08-19T09:43:25Z,507,22,2005-08-28T15:22:25Z,1,2020-02-15T06:59:45Z +13061,2005-08-19T09:43:39Z,730,576,2005-08-24T10:03:39Z,1,2020-02-15T06:59:45Z +13062,2005-08-19T09:44:17Z,1790,385,2005-08-27T11:42:17Z,1,2020-02-15T06:59:45Z +13063,2005-08-19T09:45:41Z,1192,5,2005-08-24T09:11:41Z,2,2020-02-15T06:59:45Z +13064,2005-08-19T09:46:53Z,4131,588,2005-08-21T08:29:53Z,1,2020-02-15T06:59:45Z +13065,2005-08-19T09:48:52Z,1887,518,2005-08-22T07:12:52Z,1,2020-02-15T06:59:45Z +13066,2005-08-19T09:50:39Z,3730,336,2005-08-22T14:01:39Z,1,2020-02-15T06:59:45Z +13067,2005-08-19T09:51:17Z,3825,172,2005-08-25T09:58:17Z,2,2020-02-15T06:59:45Z +13068,2005-08-19T09:55:16Z,3019,1,2005-08-20T14:44:16Z,2,2020-02-15T06:59:45Z +13069,2005-08-19T09:55:20Z,368,299,2005-08-24T04:10:20Z,2,2020-02-15T06:59:45Z +13070,2005-08-19T09:56:23Z,2214,235,2005-08-24T09:08:23Z,2,2020-02-15T06:59:45Z +13071,2005-08-19T10:01:07Z,527,578,2005-08-26T14:26:07Z,1,2020-02-15T06:59:45Z +13072,2005-08-19T10:03:30Z,2313,447,2005-08-22T14:27:30Z,2,2020-02-15T06:59:45Z +13073,2005-08-19T10:05:38Z,855,506,2005-08-26T07:37:38Z,2,2020-02-15T06:59:45Z +13074,2005-08-19T10:06:53Z,3266,341,2005-08-28T09:56:53Z,2,2020-02-15T06:59:45Z +13075,2005-08-19T10:10:10Z,4125,224,2005-08-21T08:44:10Z,2,2020-02-15T06:59:45Z +13076,2005-08-19T10:10:26Z,1226,201,2005-08-22T05:41:26Z,1,2020-02-15T06:59:45Z +13077,2005-08-19T10:15:19Z,433,241,2005-08-21T06:51:19Z,2,2020-02-15T06:59:45Z +13078,2005-08-19T10:16:43Z,4104,479,2005-08-27T11:35:43Z,2,2020-02-15T06:59:45Z +13079,2006-02-14T15:16:03Z,733,107,,1,2020-02-15T06:59:45Z +13080,2005-08-19T10:18:00Z,4222,452,2005-08-22T06:37:00Z,2,2020-02-15T06:59:45Z +13081,2005-08-19T10:19:06Z,3077,170,2005-08-20T05:49:06Z,1,2020-02-15T06:59:45Z +13082,2005-08-19T10:19:19Z,2117,387,2005-08-28T05:02:19Z,1,2020-02-15T06:59:45Z +13083,2005-08-19T10:26:45Z,3469,455,2005-08-23T05:31:45Z,2,2020-02-15T06:59:45Z +13084,2005-08-19T10:27:25Z,3792,204,2005-08-26T07:32:25Z,2,2020-02-15T06:59:45Z +13085,2005-08-19T10:28:22Z,360,215,2005-08-22T07:37:22Z,2,2020-02-15T06:59:45Z +13086,2005-08-19T10:32:28Z,3712,350,2005-08-26T07:57:28Z,2,2020-02-15T06:59:45Z +13087,2005-08-19T10:33:52Z,2693,171,2005-08-27T09:15:52Z,2,2020-02-15T06:59:45Z +13088,2005-08-19T10:36:11Z,4281,457,2005-08-21T09:12:11Z,1,2020-02-15T06:59:45Z +13089,2005-08-19T10:38:56Z,1783,63,2005-08-24T12:41:56Z,1,2020-02-15T06:59:45Z +13090,2005-08-19T10:39:54Z,1447,52,2005-08-28T10:31:54Z,1,2020-02-15T06:59:45Z +13091,2005-08-19T10:40:10Z,1815,127,2005-08-23T09:03:10Z,1,2020-02-15T06:59:45Z +13092,2005-08-19T10:41:09Z,4359,480,2005-08-25T05:11:09Z,2,2020-02-15T06:59:45Z +13093,2005-08-19T10:46:16Z,1667,160,2005-08-26T08:05:16Z,1,2020-02-15T06:59:45Z +13094,2005-08-19T10:47:58Z,3178,494,2005-08-21T06:20:58Z,1,2020-02-15T06:59:45Z +13095,2005-08-19T10:48:10Z,520,508,2005-08-28T06:15:10Z,1,2020-02-15T06:59:45Z +13096,2005-08-19T10:49:03Z,420,13,2005-08-21T05:33:03Z,1,2020-02-15T06:59:45Z +13097,2005-08-19T10:50:43Z,4194,157,2005-08-24T11:10:43Z,2,2020-02-15T06:59:45Z +13098,2005-08-19T10:51:59Z,3770,51,2005-08-24T11:27:59Z,1,2020-02-15T06:59:45Z +13099,2005-08-19T10:55:19Z,969,436,2005-08-27T10:54:19Z,1,2020-02-15T06:59:45Z +13100,2005-08-19T10:55:45Z,916,451,2005-08-25T12:28:45Z,1,2020-02-15T06:59:45Z +13101,2005-08-19T11:01:54Z,1804,39,2005-08-27T16:06:54Z,2,2020-02-15T06:59:45Z +13102,2005-08-19T11:02:03Z,2885,285,2005-08-28T13:05:03Z,2,2020-02-15T06:59:45Z +13103,2005-08-19T11:05:51Z,1751,274,2005-08-26T09:16:51Z,2,2020-02-15T06:59:45Z +13104,2005-08-19T11:06:06Z,310,591,2005-08-21T13:50:06Z,2,2020-02-15T06:59:45Z +13105,2005-08-19T11:06:16Z,729,279,2005-08-27T15:21:16Z,1,2020-02-15T06:59:45Z +13106,2006-02-14T15:16:03Z,3212,440,,1,2020-02-15T06:59:45Z +13107,2005-08-19T11:13:58Z,3870,356,2005-08-20T15:03:58Z,2,2020-02-15T06:59:45Z +13108,2006-02-14T15:16:03Z,3630,73,,1,2020-02-15T06:59:45Z +13109,2005-08-19T11:23:20Z,46,259,2005-08-25T17:05:20Z,1,2020-02-15T06:59:45Z +13110,2005-08-19T11:24:37Z,62,447,2005-08-21T05:48:37Z,1,2020-02-15T06:59:45Z +13111,2005-08-19T11:25:10Z,580,26,2005-08-21T05:52:10Z,2,2020-02-15T06:59:45Z +13112,2005-08-19T11:27:10Z,2074,259,2005-08-22T05:32:10Z,1,2020-02-15T06:59:45Z +13113,2005-08-19T11:27:20Z,2393,573,2005-08-23T12:40:20Z,1,2020-02-15T06:59:45Z +13114,2005-08-19T11:27:32Z,4342,550,2005-08-28T11:21:32Z,2,2020-02-15T06:59:45Z +13115,2005-08-19T11:27:43Z,1961,84,2005-08-20T10:58:43Z,1,2020-02-15T06:59:45Z +13116,2005-08-19T11:31:41Z,1544,150,2005-08-27T16:05:41Z,1,2020-02-15T06:59:45Z +13117,2005-08-19T11:33:20Z,3430,385,2005-08-20T11:55:20Z,2,2020-02-15T06:59:45Z +13118,2005-08-19T11:39:58Z,470,181,2005-08-25T14:44:58Z,1,2020-02-15T06:59:45Z +13119,2005-08-19T11:44:59Z,1401,240,2005-08-20T12:30:59Z,2,2020-02-15T06:59:45Z +13120,2005-08-19T11:47:38Z,2273,314,2005-08-26T08:20:38Z,2,2020-02-15T06:59:45Z +13121,2005-08-19T11:51:39Z,3517,251,2005-08-22T11:50:39Z,2,2020-02-15T06:59:45Z +13122,2005-08-19T11:53:49Z,3319,277,2005-08-26T16:01:49Z,2,2020-02-15T06:59:45Z +13123,2005-08-19T11:55:13Z,2804,220,2005-08-21T05:55:13Z,2,2020-02-15T06:59:45Z +13124,2005-08-19T11:55:59Z,2105,78,2005-08-26T06:01:59Z,2,2020-02-15T06:59:45Z +13125,2005-08-19T11:57:49Z,3722,192,2005-08-26T07:53:49Z,1,2020-02-15T06:59:45Z +13126,2005-08-19T12:00:28Z,1392,253,2005-08-28T17:27:28Z,1,2020-02-15T06:59:45Z +13127,2005-08-19T12:04:03Z,2582,178,2005-08-27T13:56:03Z,1,2020-02-15T06:59:45Z +13128,2005-08-19T12:04:16Z,485,206,2005-08-26T16:06:16Z,2,2020-02-15T06:59:45Z +13129,2005-08-19T12:05:04Z,4455,274,2005-08-26T10:24:04Z,1,2020-02-15T06:59:45Z +13130,2005-08-19T12:06:42Z,2006,254,2005-08-23T12:08:42Z,1,2020-02-15T06:59:45Z +13131,2005-08-19T12:08:13Z,1466,480,2005-08-27T13:43:13Z,2,2020-02-15T06:59:45Z +13132,2005-08-19T12:10:57Z,1748,529,2005-08-27T12:22:57Z,2,2020-02-15T06:59:45Z +13133,2005-08-19T12:11:03Z,1635,523,2005-08-28T12:36:03Z,2,2020-02-15T06:59:45Z +13134,2005-08-19T12:14:14Z,1354,184,2005-08-20T11:52:14Z,1,2020-02-15T06:59:45Z +13135,2005-08-19T12:22:52Z,1585,361,2005-08-21T14:04:52Z,2,2020-02-15T06:59:45Z +13136,2005-08-19T12:24:23Z,2532,50,2005-08-28T08:37:23Z,2,2020-02-15T06:59:45Z +13137,2005-08-19T12:26:32Z,4431,20,2005-08-22T13:26:32Z,1,2020-02-15T06:59:45Z +13138,2005-08-19T12:30:01Z,3138,214,2005-08-21T06:35:01Z,2,2020-02-15T06:59:45Z +13139,2005-08-19T12:32:10Z,2099,554,2005-08-24T12:12:10Z,1,2020-02-15T06:59:45Z +13140,2005-08-19T12:35:56Z,4210,323,2005-08-27T18:24:56Z,2,2020-02-15T06:59:45Z +13141,2005-08-19T12:41:41Z,4545,376,2005-08-21T08:17:41Z,2,2020-02-15T06:59:45Z +13142,2005-08-19T12:42:28Z,1404,269,2005-08-26T14:52:28Z,1,2020-02-15T06:59:45Z +13143,2005-08-19T12:44:38Z,1655,371,2005-08-25T10:59:38Z,2,2020-02-15T06:59:45Z +13144,2005-08-19T12:45:55Z,3766,456,2005-08-27T10:37:55Z,2,2020-02-15T06:59:45Z +13145,2005-08-19T12:53:53Z,1383,72,2005-08-23T08:06:53Z,1,2020-02-15T06:59:45Z +13146,2005-08-19T12:54:42Z,1463,116,2005-08-26T07:31:42Z,1,2020-02-15T06:59:45Z +13147,2005-08-19T12:55:09Z,3490,37,2005-08-22T18:10:09Z,1,2020-02-15T06:59:45Z +13148,2005-08-19T12:55:30Z,1762,137,2005-08-21T11:01:30Z,1,2020-02-15T06:59:45Z +13149,2005-08-19T13:07:12Z,1436,40,2005-08-28T18:12:12Z,1,2020-02-15T06:59:45Z +13150,2005-08-19T13:08:19Z,1514,457,2005-08-25T18:00:19Z,1,2020-02-15T06:59:45Z +13151,2005-08-19T13:08:23Z,3045,16,2005-08-20T12:38:23Z,2,2020-02-15T06:59:45Z +13152,2005-08-19T13:09:32Z,3571,597,2005-08-25T14:47:32Z,1,2020-02-15T06:59:45Z +13153,2005-08-19T13:09:47Z,3896,431,2005-08-23T17:35:47Z,2,2020-02-15T06:59:45Z +13154,2005-08-19T13:09:54Z,2465,255,2005-08-26T16:40:54Z,1,2020-02-15T06:59:45Z +13155,2005-08-19T13:10:23Z,290,442,2005-08-25T19:07:23Z,2,2020-02-15T06:59:45Z +13156,2005-08-19T13:10:42Z,770,512,2005-08-25T15:08:42Z,2,2020-02-15T06:59:45Z +13157,2005-08-19T13:12:28Z,4391,592,2005-08-20T10:41:28Z,1,2020-02-15T06:59:45Z +13158,2005-08-19T13:18:10Z,944,327,2005-08-25T09:27:10Z,1,2020-02-15T06:59:45Z +13159,2005-08-19T13:19:59Z,2300,497,2005-08-21T09:22:59Z,2,2020-02-15T06:59:45Z +13160,2005-08-19T13:21:04Z,410,484,2005-08-22T18:49:04Z,1,2020-02-15T06:59:45Z +13161,2006-02-14T15:16:03Z,986,175,,1,2020-02-15T06:59:45Z +13162,2005-08-19T13:28:26Z,1845,478,2005-08-24T17:37:26Z,1,2020-02-15T06:59:45Z +13163,2005-08-19T13:29:46Z,3068,57,2005-08-22T07:48:46Z,2,2020-02-15T06:59:45Z +13164,2005-08-19T13:30:55Z,1104,145,2005-08-26T10:12:55Z,2,2020-02-15T06:59:45Z +13165,2005-08-19T13:34:10Z,138,289,2005-08-21T18:33:10Z,2,2020-02-15T06:59:45Z +13166,2005-08-19T13:36:28Z,4386,504,2005-08-22T07:57:28Z,1,2020-02-15T06:59:45Z +13167,2005-08-19T13:36:41Z,557,120,2005-08-23T15:29:41Z,2,2020-02-15T06:59:45Z +13168,2005-08-19T13:37:28Z,2210,186,2005-08-27T17:54:28Z,2,2020-02-15T06:59:45Z +13169,2005-08-19T13:43:35Z,1709,141,2005-08-26T09:31:35Z,1,2020-02-15T06:59:45Z +13170,2005-08-19T13:45:48Z,1072,176,2005-08-27T11:00:48Z,2,2020-02-15T06:59:45Z +13171,2005-08-19T13:48:54Z,1765,122,2005-08-27T18:57:54Z,1,2020-02-15T06:59:45Z +13172,2005-08-19T13:49:07Z,1301,298,2005-08-20T19:39:07Z,2,2020-02-15T06:59:45Z +13173,2005-08-19T13:50:36Z,1304,29,2005-08-26T12:34:36Z,2,2020-02-15T06:59:45Z +13174,2005-08-19T13:52:50Z,2303,482,2005-08-22T14:43:50Z,2,2020-02-15T06:59:45Z +13175,2005-08-19T13:54:53Z,3187,239,2005-08-20T16:25:53Z,2,2020-02-15T06:59:45Z +13176,2005-08-19T13:56:54Z,2269,1,2005-08-23T08:50:54Z,2,2020-02-15T06:59:45Z +13177,2005-08-19T13:56:58Z,3172,126,2005-08-23T13:13:58Z,2,2020-02-15T06:59:45Z +13178,2006-02-14T15:16:03Z,693,394,,1,2020-02-15T06:59:45Z +13179,2005-08-19T13:59:53Z,1624,104,2005-08-25T12:10:53Z,1,2020-02-15T06:59:45Z +13180,2005-08-19T14:00:38Z,3443,322,2005-08-20T09:56:38Z,1,2020-02-15T06:59:45Z +13181,2005-08-19T14:00:56Z,1256,128,2005-08-24T13:52:56Z,2,2020-02-15T06:59:45Z +13182,2006-02-14T15:16:03Z,364,496,,2,2020-02-15T06:59:45Z +13183,2005-08-19T14:09:26Z,2404,301,2005-08-28T08:44:26Z,2,2020-02-15T06:59:45Z +13184,2005-08-19T14:16:18Z,4395,393,2005-08-20T08:44:18Z,1,2020-02-15T06:59:45Z +13185,2005-08-19T14:22:30Z,241,174,2005-08-20T10:13:30Z,2,2020-02-15T06:59:45Z +13186,2005-08-19T14:23:19Z,2802,176,2005-08-28T11:26:19Z,1,2020-02-15T06:59:45Z +13187,2005-08-19T14:24:48Z,1944,543,2005-08-20T19:37:48Z,1,2020-02-15T06:59:45Z +13188,2005-08-19T14:27:03Z,583,472,2005-08-28T09:15:03Z,2,2020-02-15T06:59:45Z +13189,2005-08-19T14:27:16Z,3444,368,2005-08-28T10:34:16Z,1,2020-02-15T06:59:45Z +13190,2005-08-19T14:27:59Z,4316,290,2005-08-26T13:45:59Z,1,2020-02-15T06:59:45Z +13191,2005-08-19T14:28:48Z,2753,371,2005-08-23T12:53:48Z,2,2020-02-15T06:59:45Z +13192,2005-08-19T14:30:06Z,966,532,2005-08-27T15:20:06Z,1,2020-02-15T06:59:45Z +13193,2005-08-19T14:33:45Z,523,118,2005-08-28T08:46:45Z,2,2020-02-15T06:59:45Z +13194,2005-08-19T14:34:12Z,2473,58,2005-08-26T10:18:12Z,2,2020-02-15T06:59:45Z +13195,2005-08-19T14:39:14Z,2537,565,2005-08-24T10:30:14Z,2,2020-02-15T06:59:45Z +13196,2005-08-19T14:40:32Z,458,202,2005-08-26T18:15:32Z,2,2020-02-15T06:59:45Z +13197,2005-08-19T14:44:03Z,3190,358,2005-08-22T10:11:03Z,1,2020-02-15T06:59:45Z +13198,2005-08-19T14:47:18Z,4273,169,2005-08-21T18:09:18Z,2,2020-02-15T06:59:45Z +13199,2005-08-19T14:53:22Z,4291,339,2005-08-27T19:03:22Z,2,2020-02-15T06:59:45Z +13200,2005-08-19T14:55:58Z,2746,577,2005-08-27T11:35:58Z,2,2020-02-15T06:59:45Z +13201,2005-08-19T14:56:05Z,111,508,2005-08-25T14:37:05Z,1,2020-02-15T06:59:45Z +13202,2005-08-19T14:58:30Z,3546,381,2005-08-27T17:10:30Z,1,2020-02-15T06:59:45Z +13203,2005-08-19T15:00:58Z,804,257,2005-08-27T15:38:58Z,2,2020-02-15T06:59:45Z +13204,2005-08-19T15:02:48Z,4524,152,2005-08-24T18:07:48Z,1,2020-02-15T06:59:45Z +13205,2005-08-19T15:05:26Z,2616,495,2005-08-25T10:41:26Z,2,2020-02-15T06:59:45Z +13206,2005-08-19T15:05:34Z,2477,504,2005-08-21T20:37:34Z,2,2020-02-15T06:59:45Z +13207,2005-08-19T15:14:38Z,674,58,2005-08-27T16:09:38Z,1,2020-02-15T06:59:45Z +13208,2005-08-19T15:18:55Z,609,435,2005-08-24T11:59:55Z,1,2020-02-15T06:59:45Z +13209,2006-02-14T15:16:03Z,1574,5,,2,2020-02-15T06:59:45Z +13210,2005-08-19T15:23:38Z,2789,487,2005-08-21T11:57:38Z,1,2020-02-15T06:59:45Z +13211,2005-08-19T15:23:41Z,1968,289,2005-08-22T16:58:41Z,1,2020-02-15T06:59:45Z +13212,2005-08-19T15:24:07Z,3691,158,2005-08-24T21:03:07Z,1,2020-02-15T06:59:45Z +13213,2005-08-19T15:25:48Z,1546,13,2005-08-22T09:32:48Z,1,2020-02-15T06:59:45Z +13214,2005-08-19T15:31:06Z,2675,157,2005-08-20T19:58:06Z,2,2020-02-15T06:59:45Z +13215,2005-08-19T15:35:38Z,3740,460,2005-08-27T12:16:38Z,1,2020-02-15T06:59:45Z +13216,2005-08-19T15:36:05Z,4335,422,2005-08-25T19:03:05Z,2,2020-02-15T06:59:45Z +13217,2005-08-19T15:38:39Z,616,565,2005-08-21T14:33:39Z,1,2020-02-15T06:59:45Z +13218,2005-08-19T15:39:39Z,4148,257,2005-08-22T17:28:39Z,1,2020-02-15T06:59:45Z +13219,2005-08-19T15:40:28Z,2075,288,2005-08-22T21:20:28Z,2,2020-02-15T06:59:45Z +13220,2005-08-19T15:42:32Z,1017,448,2005-08-25T13:37:32Z,1,2020-02-15T06:59:45Z +13221,2005-08-19T15:45:47Z,120,468,2005-08-26T21:10:47Z,1,2020-02-15T06:59:45Z +13222,2005-08-19T15:47:58Z,1656,91,2005-08-26T12:43:58Z,1,2020-02-15T06:59:45Z +13223,2005-08-19T15:52:04Z,332,461,2005-08-22T16:27:04Z,1,2020-02-15T06:59:45Z +13224,2005-08-19T15:52:13Z,3086,526,2005-08-28T20:53:13Z,2,2020-02-15T06:59:45Z +13225,2005-08-19T15:54:33Z,1420,562,2005-08-25T16:40:33Z,1,2020-02-15T06:59:45Z +13226,2005-08-19T16:05:36Z,2850,46,2005-08-21T10:07:36Z,2,2020-02-15T06:59:45Z +13227,2005-08-19T16:05:38Z,2759,288,2005-08-20T21:39:38Z,1,2020-02-15T06:59:45Z +13228,2005-08-19T16:08:16Z,2497,571,2005-08-20T18:55:16Z,1,2020-02-15T06:59:45Z +13229,2005-08-19T16:08:33Z,634,283,2005-08-22T19:54:33Z,2,2020-02-15T06:59:45Z +13230,2005-08-19T16:12:07Z,3645,151,2005-08-21T12:19:07Z,1,2020-02-15T06:59:45Z +13231,2005-08-19T16:12:49Z,2126,280,2005-08-27T17:14:49Z,2,2020-02-15T06:59:45Z +13232,2005-08-19T16:13:32Z,2370,206,2005-08-28T14:42:32Z,2,2020-02-15T06:59:45Z +13233,2005-08-19T16:14:41Z,1057,279,2005-08-24T21:13:41Z,1,2020-02-15T06:59:45Z +13234,2005-08-19T16:17:15Z,976,559,2005-08-27T12:36:15Z,1,2020-02-15T06:59:45Z +13235,2005-08-19T16:17:53Z,3902,367,2005-08-27T14:57:53Z,1,2020-02-15T06:59:45Z +13236,2005-08-19T16:18:24Z,4574,267,2005-08-27T17:48:24Z,2,2020-02-15T06:59:45Z +13237,2005-08-19T16:18:36Z,1272,169,2005-08-25T15:22:36Z,2,2020-02-15T06:59:45Z +13238,2005-08-19T16:20:56Z,985,348,2005-08-23T15:51:56Z,2,2020-02-15T06:59:45Z +13239,2005-08-19T16:22:13Z,3296,541,2005-08-23T19:26:13Z,1,2020-02-15T06:59:45Z +13240,2005-08-19T16:22:14Z,1411,179,2005-08-20T13:24:14Z,1,2020-02-15T06:59:45Z +13241,2005-08-19T16:25:00Z,3106,33,2005-08-26T12:27:00Z,2,2020-02-15T06:59:45Z +13242,2005-08-19T16:28:47Z,230,414,2005-08-24T22:13:47Z,2,2020-02-15T06:59:45Z +13243,2005-08-19T16:33:16Z,355,251,2005-08-25T13:19:16Z,2,2020-02-15T06:59:45Z +13244,2005-08-19T16:43:04Z,3246,298,2005-08-22T15:21:04Z,2,2020-02-15T06:59:45Z +13245,2005-08-19T16:43:41Z,1001,261,2005-08-20T21:17:41Z,1,2020-02-15T06:59:45Z +13246,2006-02-14T15:16:03Z,1849,411,,2,2020-02-15T06:59:45Z +13247,2005-08-19T16:45:59Z,1271,24,2005-08-25T15:25:59Z,1,2020-02-15T06:59:45Z +13248,2005-08-19T16:47:41Z,2864,559,2005-08-28T18:11:41Z,2,2020-02-15T06:59:45Z +13249,2005-08-19T16:47:41Z,3084,377,2005-08-20T13:30:41Z,1,2020-02-15T06:59:45Z +13250,2005-08-19T16:47:55Z,2524,448,2005-08-26T16:54:55Z,2,2020-02-15T06:59:45Z +13251,2005-08-19T16:48:37Z,4216,111,2005-08-20T16:33:37Z,1,2020-02-15T06:59:45Z +13252,2005-08-19T16:50:50Z,775,451,2005-08-22T22:09:50Z,2,2020-02-15T06:59:45Z +13253,2005-08-19T16:53:56Z,472,399,2005-08-20T11:38:56Z,2,2020-02-15T06:59:45Z +13254,2005-08-19T16:54:01Z,3412,532,2005-08-27T19:50:01Z,2,2020-02-15T06:59:45Z +13255,2005-08-19T16:54:12Z,1101,150,2005-08-28T17:00:12Z,1,2020-02-15T06:59:45Z +13256,2005-08-19T16:54:12Z,2719,289,2005-08-28T16:54:12Z,1,2020-02-15T06:59:45Z +13257,2005-08-19T17:01:20Z,164,300,2005-08-24T17:26:20Z,1,2020-02-15T06:59:45Z +13258,2005-08-19T17:05:37Z,2246,349,2005-08-24T17:36:37Z,2,2020-02-15T06:59:45Z +13259,2005-08-19T17:08:53Z,2518,458,2005-08-23T14:14:53Z,1,2020-02-15T06:59:45Z +13260,2005-08-19T17:09:22Z,578,251,2005-08-24T21:31:22Z,2,2020-02-15T06:59:45Z +13261,2006-02-14T15:16:03Z,3538,417,,1,2020-02-15T06:59:45Z +13262,2005-08-19T17:20:15Z,4483,184,2005-08-26T18:28:15Z,2,2020-02-15T06:59:45Z +13263,2005-08-19T17:26:55Z,214,206,2005-08-28T20:07:55Z,2,2020-02-15T06:59:45Z +13264,2005-08-19T17:27:10Z,1881,109,2005-08-27T16:00:10Z,1,2020-02-15T06:59:45Z +13265,2005-08-19T17:29:00Z,3933,314,2005-08-20T12:59:00Z,2,2020-02-15T06:59:45Z +13266,2005-08-19T17:31:20Z,1326,571,2005-08-21T11:41:20Z,2,2020-02-15T06:59:45Z +13267,2005-08-19T17:31:36Z,550,335,2005-08-21T13:47:36Z,1,2020-02-15T06:59:45Z +13268,2005-08-19T17:33:50Z,1166,255,2005-08-25T17:15:50Z,2,2020-02-15T06:59:45Z +13269,2005-08-19T17:34:00Z,2382,461,2005-08-20T15:17:00Z,2,2020-02-15T06:59:45Z +13270,2005-08-19T17:41:16Z,405,159,2005-08-23T20:22:16Z,2,2020-02-15T06:59:45Z +13271,2005-08-19T17:42:06Z,3872,242,2005-08-27T18:39:06Z,2,2020-02-15T06:59:45Z +13272,2005-08-19T17:49:13Z,2531,145,2005-08-23T15:49:13Z,2,2020-02-15T06:59:45Z +13273,2005-08-19T17:49:13Z,4181,433,2005-08-21T14:15:13Z,1,2020-02-15T06:59:45Z +13274,2005-08-19T17:50:03Z,704,272,2005-08-20T14:39:03Z,2,2020-02-15T06:59:45Z +13275,2005-08-19T17:53:38Z,710,377,2005-08-23T16:29:38Z,2,2020-02-15T06:59:45Z +13276,2005-08-19T17:53:42Z,625,516,2005-08-28T20:49:42Z,2,2020-02-15T06:59:45Z +13277,2005-08-19T17:57:35Z,3820,316,2005-08-25T15:45:35Z,2,2020-02-15T06:59:45Z +13278,2005-08-19T17:57:53Z,2691,282,2005-08-22T23:16:53Z,1,2020-02-15T06:59:45Z +13279,2005-08-19T18:02:18Z,2472,343,2005-08-24T22:15:18Z,2,2020-02-15T06:59:45Z +13280,2005-08-19T18:02:51Z,218,368,2005-08-21T23:17:51Z,2,2020-02-15T06:59:45Z +13281,2005-08-19T18:07:47Z,113,220,2005-08-20T21:51:47Z,2,2020-02-15T06:59:45Z +13282,2005-08-19T18:08:18Z,4373,59,2005-08-24T14:08:18Z,1,2020-02-15T06:59:45Z +13283,2005-08-19T18:10:19Z,2602,180,2005-08-23T16:09:19Z,2,2020-02-15T06:59:45Z +13284,2005-08-19T18:12:31Z,2128,338,2005-08-25T21:26:31Z,2,2020-02-15T06:59:45Z +13285,2005-08-19T18:18:44Z,2139,182,2005-08-20T12:33:44Z,1,2020-02-15T06:59:45Z +13286,2005-08-19T18:28:07Z,2685,245,2005-08-22T17:23:07Z,2,2020-02-15T06:59:45Z +13287,2005-08-19T18:28:24Z,2716,569,2005-08-26T20:13:24Z,2,2020-02-15T06:59:45Z +13288,2005-08-19T18:30:10Z,3558,162,2005-08-20T19:20:10Z,2,2020-02-15T06:59:45Z +13289,2005-08-19T18:31:30Z,3527,497,2005-08-20T13:43:30Z,1,2020-02-15T06:59:45Z +13290,2005-08-19T18:31:50Z,4174,23,2005-08-25T15:49:50Z,2,2020-02-15T06:59:45Z +13291,2005-08-19T18:32:11Z,1631,243,2005-08-20T18:22:11Z,2,2020-02-15T06:59:45Z +13292,2005-08-19T18:35:32Z,1336,171,2005-08-22T00:27:32Z,1,2020-02-15T06:59:45Z +13293,2005-08-19T18:35:52Z,380,399,2005-08-23T17:18:52Z,2,2020-02-15T06:59:45Z +13294,2005-08-19T18:36:35Z,156,534,2005-08-20T13:57:35Z,1,2020-02-15T06:59:45Z +13295,2006-02-14T15:16:03Z,2408,229,,1,2020-02-15T06:59:45Z +13296,2005-08-19T18:43:53Z,1728,300,2005-08-21T23:30:53Z,2,2020-02-15T06:59:45Z +13297,2005-08-19T18:45:49Z,3818,359,2005-08-22T14:58:49Z,2,2020-02-15T06:59:45Z +13298,2006-02-14T15:16:03Z,2133,361,,2,2020-02-15T06:59:45Z +13299,2005-08-19T18:46:33Z,4385,373,2005-08-22T20:45:33Z,1,2020-02-15T06:59:45Z +13300,2005-08-19T18:46:56Z,842,531,2005-08-28T20:23:56Z,2,2020-02-15T06:59:45Z +13301,2005-08-19T18:53:15Z,2261,494,2005-08-26T21:37:15Z,1,2020-02-15T06:59:45Z +13302,2005-08-19T18:54:26Z,4041,51,2005-08-21T23:01:26Z,1,2020-02-15T06:59:45Z +13303,2005-08-19T18:55:21Z,34,184,2005-08-23T18:49:21Z,2,2020-02-15T06:59:45Z +13304,2005-08-19T18:56:32Z,2979,405,2005-08-23T20:04:32Z,2,2020-02-15T06:59:45Z +13305,2005-08-19T18:57:05Z,2386,337,2005-08-28T22:28:05Z,1,2020-02-15T06:59:45Z +13306,2005-08-19T18:57:29Z,2742,229,2005-08-20T20:09:29Z,2,2020-02-15T06:59:45Z +13307,2005-08-19T18:58:44Z,2242,547,2005-08-22T00:15:44Z,1,2020-02-15T06:59:45Z +13308,2005-08-19T18:59:42Z,3189,414,2005-08-28T13:21:42Z,2,2020-02-15T06:59:45Z +13309,2005-08-19T19:04:00Z,2108,91,2005-08-28T23:08:00Z,2,2020-02-15T06:59:45Z +13310,2005-08-19T19:05:16Z,2563,311,2005-08-23T22:47:16Z,1,2020-02-15T06:59:45Z +13311,2005-08-19T19:07:09Z,3890,520,2005-08-20T23:07:09Z,1,2020-02-15T06:59:45Z +13312,2005-08-19T19:09:14Z,2891,418,2005-08-23T00:50:14Z,2,2020-02-15T06:59:45Z +13313,2005-08-19T19:11:41Z,3709,580,2005-08-21T23:53:41Z,2,2020-02-15T06:59:45Z +13314,2005-08-19T19:12:43Z,2899,347,2005-08-27T00:20:43Z,2,2020-02-15T06:59:45Z +13315,2005-08-19T19:16:18Z,3151,54,2005-08-21T20:58:18Z,1,2020-02-15T06:59:45Z +13316,2005-08-19T19:23:30Z,4450,10,2005-08-22T23:37:30Z,1,2020-02-15T06:59:45Z +13317,2005-08-19T19:25:42Z,3349,20,2005-08-20T20:57:42Z,2,2020-02-15T06:59:45Z +13318,2005-08-19T19:33:57Z,1389,413,2005-08-21T17:52:57Z,2,2020-02-15T06:59:45Z +13319,2005-08-19T19:35:13Z,2496,438,2005-08-27T17:59:13Z,1,2020-02-15T06:59:45Z +13320,2005-08-19T19:35:33Z,4522,172,2005-08-24T20:09:33Z,2,2020-02-15T06:59:45Z +13321,2005-08-19T19:40:37Z,4183,280,2005-08-21T19:09:37Z,2,2020-02-15T06:59:45Z +13322,2005-08-19T19:43:08Z,2149,559,2005-08-24T16:30:08Z,2,2020-02-15T06:59:45Z +13323,2005-08-19T19:48:07Z,1055,133,2005-08-23T15:28:07Z,1,2020-02-15T06:59:45Z +13324,2005-08-19T19:51:00Z,4349,564,2005-08-20T20:26:00Z,1,2020-02-15T06:59:45Z +13325,2005-08-19T19:52:02Z,2388,334,2005-08-22T21:14:02Z,1,2020-02-15T06:59:45Z +13326,2005-08-19T19:52:52Z,429,576,2005-08-20T18:56:52Z,1,2020-02-15T06:59:45Z +13327,2005-08-19T19:55:45Z,1808,72,2005-08-22T15:05:45Z,2,2020-02-15T06:59:45Z +13328,2005-08-19T19:56:01Z,605,462,2005-08-20T22:16:01Z,2,2020-02-15T06:59:45Z +13329,2005-08-19T19:56:55Z,3136,373,2005-08-25T01:19:55Z,2,2020-02-15T06:59:45Z +13330,2005-08-19T19:59:21Z,4276,297,2005-08-20T15:34:21Z,2,2020-02-15T06:59:45Z +13331,2005-08-19T20:00:25Z,3867,23,2005-08-21T17:03:25Z,1,2020-02-15T06:59:45Z +13332,2005-08-19T20:00:51Z,3144,503,2005-08-25T14:30:51Z,1,2020-02-15T06:59:45Z +13333,2006-02-14T15:16:03Z,1092,64,,2,2020-02-15T06:59:45Z +13334,2005-08-19T20:02:33Z,461,379,2005-08-22T00:45:33Z,1,2020-02-15T06:59:45Z +13335,2005-08-19T20:03:18Z,1861,74,2005-08-24T20:09:18Z,2,2020-02-15T06:59:45Z +13336,2005-08-19T20:03:22Z,1011,289,2005-08-24T23:42:22Z,1,2020-02-15T06:59:45Z +13337,2005-08-19T20:06:57Z,3584,374,2005-08-20T16:31:57Z,1,2020-02-15T06:59:45Z +13338,2005-08-19T20:09:59Z,3739,86,2005-08-23T22:59:59Z,2,2020-02-15T06:59:45Z +13339,2005-08-19T20:18:36Z,1428,15,2005-08-28T21:34:36Z,1,2020-02-15T06:59:45Z +13340,2005-08-19T20:18:39Z,4358,45,2005-08-28T21:06:39Z,2,2020-02-15T06:59:45Z +13341,2005-08-19T20:18:53Z,1749,460,2005-08-27T14:36:53Z,1,2020-02-15T06:59:45Z +13342,2005-08-19T20:21:36Z,3476,172,2005-08-21T16:26:36Z,1,2020-02-15T06:59:45Z +13343,2005-08-19T20:22:08Z,1032,591,2005-08-27T17:21:08Z,1,2020-02-15T06:59:45Z +13344,2005-08-19T20:22:44Z,4392,514,2005-08-25T18:39:44Z,1,2020-02-15T06:59:45Z +13345,2005-08-19T20:25:24Z,47,55,2005-08-27T20:38:24Z,1,2020-02-15T06:59:45Z +13346,2005-08-19T20:28:21Z,4541,131,2005-08-28T00:28:21Z,2,2020-02-15T06:59:45Z +13347,2005-08-19T20:28:48Z,4038,562,2005-08-28T19:33:48Z,2,2020-02-15T06:59:45Z +13348,2005-08-19T20:31:48Z,275,456,2005-08-21T21:01:48Z,1,2020-02-15T06:59:45Z +13349,2005-08-19T20:43:16Z,4262,234,2005-08-20T16:21:16Z,1,2020-02-15T06:59:45Z +13350,2005-08-19T20:44:00Z,3523,214,2005-08-27T01:23:00Z,2,2020-02-15T06:59:45Z +13351,2006-02-14T15:16:03Z,4130,42,,2,2020-02-15T06:59:45Z +13352,2005-08-19T20:51:40Z,2689,80,2005-08-24T01:22:40Z,1,2020-02-15T06:59:45Z +13353,2005-08-19T20:53:43Z,2790,131,2005-08-25T01:25:43Z,1,2020-02-15T06:59:45Z +13354,2005-08-19T20:55:23Z,1356,213,2005-08-27T20:09:23Z,2,2020-02-15T06:59:45Z +13355,2005-08-19T20:59:19Z,585,396,2005-08-23T21:44:19Z,1,2020-02-15T06:59:45Z +13356,2005-08-19T21:02:21Z,2713,324,2005-08-24T00:31:21Z,1,2020-02-15T06:59:45Z +13357,2005-08-19T21:02:59Z,3295,393,2005-08-25T23:46:59Z,2,2020-02-15T06:59:45Z +13358,2005-08-19T21:04:20Z,1510,439,2005-08-24T20:49:20Z,2,2020-02-15T06:59:45Z +13359,2005-08-19T21:04:49Z,4175,434,2005-08-27T01:46:49Z,1,2020-02-15T06:59:45Z +13360,2005-08-19T21:05:11Z,3396,327,2005-08-24T16:05:11Z,2,2020-02-15T06:59:45Z +13361,2005-08-19T21:07:22Z,4289,107,2005-08-21T21:26:22Z,2,2020-02-15T06:59:45Z +13362,2005-08-19T21:07:54Z,869,565,2005-08-20T17:29:54Z,2,2020-02-15T06:59:45Z +13363,2005-08-19T21:07:59Z,588,288,2005-08-21T17:08:59Z,1,2020-02-15T06:59:45Z +13364,2005-08-19T21:09:30Z,2773,236,2005-08-25T18:37:30Z,1,2020-02-15T06:59:45Z +13365,2005-08-19T21:12:37Z,4136,307,2005-08-25T19:56:37Z,2,2020-02-15T06:59:45Z +13366,2005-08-19T21:14:45Z,602,259,2005-08-21T03:06:45Z,1,2020-02-15T06:59:45Z +13367,2005-08-19T21:19:27Z,4569,290,2005-08-24T15:22:27Z,2,2020-02-15T06:59:45Z +13368,2005-08-19T21:19:35Z,1073,342,2005-08-21T16:12:35Z,2,2020-02-15T06:59:45Z +13369,2005-08-19T21:19:47Z,2728,116,2005-08-24T23:25:47Z,1,2020-02-15T06:59:45Z +13370,2005-08-19T21:20:11Z,239,101,2005-08-25T22:51:11Z,1,2020-02-15T06:59:45Z +13371,2005-08-19T21:21:47Z,3401,34,2005-08-26T16:17:47Z,2,2020-02-15T06:59:45Z +13372,2005-08-19T21:23:19Z,3366,150,2005-08-24T22:12:19Z,1,2020-02-15T06:59:45Z +13373,2005-08-19T21:23:31Z,4045,7,2005-08-25T22:38:31Z,1,2020-02-15T06:59:45Z +13374,2006-02-14T15:16:03Z,2721,227,,1,2020-02-15T06:59:45Z +13375,2005-08-19T21:31:31Z,949,120,2005-08-29T00:17:31Z,1,2020-02-15T06:59:45Z +13376,2005-08-19T21:31:45Z,898,40,2005-08-22T01:14:45Z,2,2020-02-15T06:59:45Z +13377,2005-08-19T21:32:23Z,1316,572,2005-08-25T22:24:23Z,1,2020-02-15T06:59:45Z +13378,2005-08-19T21:33:35Z,2708,368,2005-08-20T22:47:35Z,1,2020-02-15T06:59:45Z +13379,2005-08-19T21:33:39Z,1623,227,2005-08-22T21:00:39Z,1,2020-02-15T06:59:45Z +13380,2005-08-19T21:36:58Z,4250,451,2005-08-22T23:55:58Z,1,2020-02-15T06:59:45Z +13381,2005-08-19T21:37:57Z,2823,21,2005-08-21T18:07:57Z,2,2020-02-15T06:59:45Z +13382,2005-08-19T21:38:41Z,3720,436,2005-08-28T15:49:41Z,1,2020-02-15T06:59:45Z +13383,2005-08-19T21:38:44Z,3193,434,2005-08-28T23:22:44Z,2,2020-02-15T06:59:45Z +13384,2005-08-19T21:38:51Z,1462,440,2005-08-23T17:55:51Z,1,2020-02-15T06:59:45Z +13385,2005-08-19T21:39:35Z,4323,252,2005-08-22T22:38:35Z,2,2020-02-15T06:59:45Z +13386,2005-08-19T21:43:58Z,4476,324,2005-08-24T20:29:58Z,2,2020-02-15T06:59:45Z +13387,2005-08-19T21:46:10Z,123,504,2005-08-24T01:16:10Z,1,2020-02-15T06:59:45Z +13388,2005-08-19T21:46:49Z,942,317,2005-08-27T16:18:49Z,1,2020-02-15T06:59:45Z +13389,2005-08-19T21:52:51Z,3352,257,2005-08-25T02:38:51Z,1,2020-02-15T06:59:45Z +13390,2006-02-14T15:16:03Z,2855,135,,1,2020-02-15T06:59:45Z +13391,2005-08-19T22:01:42Z,4220,16,2005-08-24T22:20:42Z,2,2020-02-15T06:59:45Z +13392,2005-08-19T22:03:22Z,692,409,2005-08-28T19:27:22Z,1,2020-02-15T06:59:45Z +13393,2005-08-19T22:03:46Z,958,15,2005-08-28T19:19:46Z,2,2020-02-15T06:59:45Z +13394,2005-08-19T22:05:19Z,2597,45,2005-08-21T23:53:19Z,1,2020-02-15T06:59:45Z +13395,2005-08-19T22:05:40Z,53,80,2005-08-22T01:31:40Z,2,2020-02-15T06:59:45Z +13396,2005-08-19T22:06:09Z,4169,517,2005-08-23T23:26:09Z,2,2020-02-15T06:59:45Z +13397,2005-08-19T22:06:35Z,3863,379,2005-08-29T01:11:35Z,2,2020-02-15T06:59:45Z +13398,2005-08-19T22:08:48Z,3376,405,2005-08-23T03:24:48Z,1,2020-02-15T06:59:45Z +13399,2005-08-19T22:09:28Z,2309,21,2005-08-25T20:25:28Z,2,2020-02-15T06:59:45Z +13400,2005-08-19T22:11:44Z,2173,179,2005-08-20T23:27:44Z,2,2020-02-15T06:59:45Z +13401,2005-08-19T22:16:16Z,488,139,2005-08-25T19:01:16Z,2,2020-02-15T06:59:45Z +13402,2005-08-19T22:16:53Z,3264,372,2005-08-22T22:28:53Z,1,2020-02-15T06:59:45Z +13403,2005-08-19T22:18:07Z,3241,3,2005-08-27T19:23:07Z,1,2020-02-15T06:59:45Z +13404,2005-08-19T22:18:42Z,416,414,2005-08-23T16:29:42Z,2,2020-02-15T06:59:45Z +13405,2005-08-19T22:20:49Z,1554,181,2005-08-28T21:21:49Z,1,2020-02-15T06:59:45Z +13406,2005-08-19T22:22:01Z,3031,113,2005-08-22T18:16:01Z,1,2020-02-15T06:59:45Z +13407,2005-08-19T22:26:26Z,2512,131,2005-08-22T16:34:26Z,1,2020-02-15T06:59:45Z +13408,2005-08-19T22:34:51Z,2795,575,2005-08-21T03:30:51Z,1,2020-02-15T06:59:45Z +13409,2005-08-19T22:36:26Z,873,214,2005-08-22T01:52:26Z,2,2020-02-15T06:59:45Z +13410,2005-08-19T22:41:44Z,1421,104,2005-08-26T18:05:44Z,2,2020-02-15T06:59:45Z +13411,2005-08-19T22:43:38Z,4425,21,2005-08-26T18:29:38Z,2,2020-02-15T06:59:45Z +13412,2005-08-19T22:46:35Z,2806,404,2005-08-26T18:06:35Z,1,2020-02-15T06:59:45Z +13413,2005-08-19T22:46:46Z,1501,390,2005-08-24T22:52:46Z,1,2020-02-15T06:59:45Z +13414,2005-08-19T22:47:34Z,4126,438,2005-08-21T02:50:34Z,1,2020-02-15T06:59:45Z +13415,2005-08-19T22:48:09Z,1105,181,2005-08-25T02:09:09Z,1,2020-02-15T06:59:45Z +13416,2005-08-19T22:48:48Z,1075,204,2005-08-21T22:09:48Z,2,2020-02-15T06:59:45Z +13417,2005-08-19T22:51:39Z,92,468,2005-08-23T03:34:39Z,1,2020-02-15T06:59:45Z +13418,2005-08-19T22:53:56Z,2113,246,2005-08-28T02:05:56Z,2,2020-02-15T06:59:45Z +13419,2006-02-14T15:16:03Z,3507,537,,1,2020-02-15T06:59:45Z +13420,2005-08-19T22:57:25Z,1796,102,2005-08-28T22:46:25Z,1,2020-02-15T06:59:45Z +13421,2006-02-14T15:16:03Z,9,366,,1,2020-02-15T06:59:45Z +13422,2005-08-19T23:07:24Z,3835,404,2005-08-28T04:12:24Z,2,2020-02-15T06:59:45Z +13423,2005-08-19T23:07:42Z,546,311,2005-08-26T20:45:42Z,1,2020-02-15T06:59:45Z +13424,2005-08-19T23:10:09Z,4340,216,2005-08-23T02:25:09Z,1,2020-02-15T06:59:45Z +13425,2005-08-19T23:11:44Z,2274,340,2005-08-25T21:19:44Z,2,2020-02-15T06:59:45Z +13426,2005-08-19T23:15:00Z,3409,213,2005-08-21T01:53:00Z,2,2020-02-15T06:59:45Z +13427,2005-08-19T23:19:02Z,3120,239,2005-08-21T18:30:02Z,1,2020-02-15T06:59:45Z +13428,2006-02-14T15:16:03Z,106,44,,2,2020-02-15T06:59:45Z +13429,2005-08-19T23:25:37Z,3677,23,2005-08-28T01:04:37Z,2,2020-02-15T06:59:45Z +13430,2005-08-19T23:25:43Z,2852,381,2005-08-22T18:41:43Z,1,2020-02-15T06:59:45Z +13431,2005-08-19T23:28:15Z,1700,229,2005-08-25T04:44:15Z,1,2020-02-15T06:59:45Z +13432,2005-08-19T23:29:06Z,2216,78,2005-08-23T00:57:06Z,1,2020-02-15T06:59:45Z +13433,2005-08-19T23:30:53Z,1647,171,2005-08-22T05:18:53Z,2,2020-02-15T06:59:45Z +13434,2005-08-19T23:34:26Z,2073,221,2005-08-23T18:33:26Z,1,2020-02-15T06:59:45Z +13435,2005-08-19T23:35:44Z,3919,30,2005-08-24T18:14:44Z,2,2020-02-15T06:59:45Z +13436,2005-08-19T23:36:25Z,2499,29,2005-08-23T18:38:25Z,1,2020-02-15T06:59:45Z +13437,2005-08-19T23:37:52Z,2292,67,2005-08-28T22:17:52Z,1,2020-02-15T06:59:45Z +13438,2005-08-19T23:38:02Z,1750,520,2005-08-26T21:36:02Z,1,2020-02-15T06:59:45Z +13439,2005-08-19T23:42:16Z,3535,551,2005-08-26T21:24:16Z,2,2020-02-15T06:59:45Z +13440,2005-08-19T23:42:52Z,2842,260,2005-08-25T19:19:52Z,1,2020-02-15T06:59:45Z +13441,2005-08-19T23:48:23Z,3188,125,2005-08-28T23:47:23Z,1,2020-02-15T06:59:45Z +13442,2005-08-19T23:50:45Z,2432,356,2005-08-27T22:01:45Z,2,2020-02-15T06:59:45Z +13443,2005-08-19T23:53:42Z,3161,236,2005-08-28T05:37:42Z,1,2020-02-15T06:59:45Z +13444,2005-08-20T00:00:24Z,2564,37,2005-08-21T05:59:24Z,2,2020-02-15T06:59:45Z +13445,2005-08-20T00:05:33Z,1630,495,2005-08-21T21:20:33Z,1,2020-02-15T06:59:45Z +13446,2005-08-20T00:06:13Z,3226,488,2005-08-22T19:56:13Z,1,2020-02-15T06:59:45Z +13447,2005-08-20T00:09:36Z,285,542,2005-08-25T01:22:36Z,1,2020-02-15T06:59:45Z +13448,2005-08-20T00:12:43Z,2870,327,2005-08-25T02:33:43Z,1,2020-02-15T06:59:45Z +13449,2005-08-20T00:17:01Z,1297,400,2005-08-23T20:42:01Z,2,2020-02-15T06:59:45Z +13450,2005-08-20T00:18:15Z,135,61,2005-08-24T19:36:15Z,1,2020-02-15T06:59:45Z +13451,2005-08-20T00:18:25Z,3837,6,2005-08-29T01:08:25Z,1,2020-02-15T06:59:45Z +13452,2005-08-20T00:20:07Z,2449,430,2005-08-25T05:43:07Z,1,2020-02-15T06:59:45Z +13453,2005-08-20T00:30:51Z,2203,164,2005-08-28T18:43:51Z,2,2020-02-15T06:59:45Z +13454,2005-08-20T00:30:52Z,1553,430,2005-08-27T19:45:52Z,2,2020-02-15T06:59:45Z +13455,2005-08-20T00:32:17Z,1315,133,2005-08-26T19:33:17Z,1,2020-02-15T06:59:45Z +13456,2005-08-20T00:33:19Z,1644,13,2005-08-22T01:47:19Z,1,2020-02-15T06:59:45Z +13457,2005-08-20T00:33:22Z,1220,256,2005-08-26T21:37:22Z,2,2020-02-15T06:59:45Z +13458,2005-08-20T00:35:30Z,4223,228,2005-08-21T20:51:30Z,1,2020-02-15T06:59:45Z +13459,2005-08-20T00:45:40Z,3666,114,2005-08-29T02:53:40Z,2,2020-02-15T06:59:45Z +13460,2005-08-20T00:48:24Z,244,410,2005-08-28T04:13:24Z,2,2020-02-15T06:59:45Z +13461,2005-08-20T00:49:04Z,2621,421,2005-08-28T02:49:04Z,2,2020-02-15T06:59:45Z +13462,2005-08-20T00:49:19Z,3865,489,2005-08-26T06:21:19Z,2,2020-02-15T06:59:45Z +13463,2005-08-20T00:50:54Z,510,21,2005-08-28T23:00:54Z,1,2020-02-15T06:59:45Z +13464,2006-02-14T15:16:03Z,4292,576,,1,2020-02-15T06:59:45Z +13465,2005-08-20T00:54:14Z,1305,575,2005-08-21T20:55:14Z,2,2020-02-15T06:59:45Z +13466,2005-08-20T00:55:16Z,3088,262,2005-08-22T22:48:16Z,1,2020-02-15T06:59:45Z +13467,2005-08-20T00:56:44Z,696,373,2005-08-20T20:16:44Z,1,2020-02-15T06:59:45Z +13468,2005-08-20T00:56:44Z,1851,266,2005-08-29T06:26:44Z,1,2020-02-15T06:59:45Z +13469,2005-08-20T00:59:36Z,1410,235,2005-08-24T22:41:36Z,1,2020-02-15T06:59:45Z +13470,2005-08-20T01:01:16Z,3097,141,2005-08-21T03:19:16Z,1,2020-02-15T06:59:45Z +13471,2005-08-20T01:02:26Z,1391,296,2005-08-25T06:37:26Z,2,2020-02-15T06:59:45Z +13472,2005-08-20T01:03:31Z,3074,137,2005-08-28T02:54:31Z,1,2020-02-15T06:59:45Z +13473,2005-08-20T01:03:50Z,381,390,2005-08-22T02:33:50Z,2,2020-02-15T06:59:45Z +13474,2005-08-20T01:04:32Z,1209,116,2005-08-21T20:26:32Z,2,2020-02-15T06:59:45Z +13475,2005-08-20T01:05:05Z,3214,68,2005-08-20T20:22:05Z,2,2020-02-15T06:59:45Z +13476,2005-08-20T01:06:04Z,2866,7,2005-08-24T23:56:04Z,1,2020-02-15T06:59:45Z +13477,2005-08-20T01:07:00Z,1442,222,2005-08-26T02:47:00Z,1,2020-02-15T06:59:45Z +13478,2005-08-20T01:07:14Z,2190,466,2005-08-22T03:41:14Z,1,2020-02-15T06:59:45Z +13479,2005-08-20T01:09:11Z,1262,87,2005-08-26T05:35:11Z,2,2020-02-15T06:59:45Z +13480,2005-08-20T01:10:27Z,206,16,2005-08-27T22:18:27Z,2,2020-02-15T06:59:45Z +13481,2005-08-20T01:11:12Z,2678,157,2005-08-26T23:07:12Z,2,2020-02-15T06:59:45Z +13482,2005-08-20T01:14:30Z,1627,183,2005-08-24T04:57:30Z,1,2020-02-15T06:59:45Z +13483,2005-08-20T01:16:38Z,2550,441,2005-08-21T20:43:38Z,2,2020-02-15T06:59:45Z +13484,2005-08-20T01:16:52Z,1533,152,2005-08-22T23:47:52Z,2,2020-02-15T06:59:45Z +13485,2005-08-20T01:20:14Z,3802,379,2005-08-22T01:28:14Z,2,2020-02-15T06:59:45Z +13486,2006-02-14T15:16:03Z,4460,274,,1,2020-02-15T06:59:45Z +13487,2005-08-20T01:27:05Z,2609,458,2005-08-24T00:41:05Z,2,2020-02-15T06:59:45Z +13488,2005-08-20T01:28:42Z,867,444,2005-08-25T06:17:42Z,2,2020-02-15T06:59:45Z +13489,2005-08-20T01:29:06Z,2934,443,2005-08-27T21:11:06Z,1,2020-02-15T06:59:45Z +13490,2005-08-20T01:29:29Z,238,18,2005-08-21T22:36:29Z,2,2020-02-15T06:59:45Z +13491,2005-08-20T01:30:56Z,2503,258,2005-08-28T23:26:56Z,2,2020-02-15T06:59:45Z +13492,2005-08-20T01:32:04Z,1155,462,2005-08-29T02:14:04Z,2,2020-02-15T06:59:45Z +13493,2005-08-20T01:33:36Z,2927,37,2005-08-24T06:32:36Z,1,2020-02-15T06:59:45Z +13494,2005-08-20T01:36:34Z,1632,414,2005-08-21T06:52:34Z,1,2020-02-15T06:59:45Z +13495,2005-08-20T01:40:25Z,3881,92,2005-08-23T06:32:25Z,2,2020-02-15T06:59:45Z +13496,2005-08-20T01:42:29Z,3040,454,2005-08-29T06:47:29Z,2,2020-02-15T06:59:45Z +13497,2005-08-20T01:46:38Z,1296,481,2005-08-26T05:37:38Z,2,2020-02-15T06:59:45Z +13498,2005-08-20T01:51:23Z,1603,578,2005-08-24T05:32:23Z,1,2020-02-15T06:59:45Z +13499,2005-08-20T01:52:30Z,1893,300,2005-08-28T04:57:30Z,1,2020-02-15T06:59:45Z +13500,2005-08-20T01:54:39Z,1353,577,2005-08-25T21:23:39Z,1,2020-02-15T06:59:45Z +13501,2005-08-20T01:56:20Z,4369,390,2005-08-22T23:07:20Z,2,2020-02-15T06:59:45Z +13502,2005-08-20T01:58:15Z,1324,309,2005-08-21T20:21:15Z,1,2020-02-15T06:59:45Z +13503,2005-08-20T02:00:33Z,453,15,2005-08-28T21:03:33Z,1,2020-02-15T06:59:45Z +13504,2005-08-20T02:01:48Z,4322,293,2005-08-25T21:52:48Z,2,2020-02-15T06:59:45Z +13505,2005-08-20T02:05:57Z,914,536,2005-08-23T05:52:57Z,1,2020-02-15T06:59:45Z +13506,2005-08-20T02:07:06Z,1334,261,2005-08-26T08:06:06Z,1,2020-02-15T06:59:45Z +13507,2005-08-20T02:10:27Z,3324,478,2005-08-23T04:03:27Z,2,2020-02-15T06:59:45Z +13508,2005-08-20T02:12:54Z,4120,408,2005-08-28T21:47:54Z,2,2020-02-15T06:59:45Z +13509,2005-08-20T02:14:16Z,3698,128,2005-08-22T06:36:16Z,2,2020-02-15T06:59:45Z +13510,2005-08-20T02:18:30Z,691,107,2005-08-27T01:33:30Z,1,2020-02-15T06:59:45Z +13511,2005-08-20T02:21:40Z,2973,23,2005-08-21T03:26:40Z,1,2020-02-15T06:59:45Z +13512,2005-08-20T02:27:13Z,4508,62,2005-08-28T04:40:13Z,2,2020-02-15T06:59:45Z +13513,2005-08-20T02:27:53Z,1653,454,2005-08-22T06:10:53Z,1,2020-02-15T06:59:45Z +13514,2005-08-20T02:28:09Z,3407,96,2005-08-25T00:41:09Z,1,2020-02-15T06:59:45Z +13515,2005-08-20T02:29:47Z,3438,194,2005-08-23T08:12:47Z,2,2020-02-15T06:59:45Z +13516,2005-08-20T02:32:45Z,4286,95,2005-08-27T04:38:45Z,1,2020-02-15T06:59:45Z +13517,2005-08-20T02:33:17Z,533,186,2005-08-23T22:40:17Z,2,2020-02-15T06:59:45Z +13518,2005-08-20T02:36:17Z,352,528,2005-08-24T08:06:17Z,1,2020-02-15T06:59:45Z +13519,2005-08-20T02:37:07Z,182,12,2005-08-23T01:26:07Z,2,2020-02-15T06:59:45Z +13520,2005-08-20T02:41:46Z,3326,74,2005-08-22T01:53:46Z,1,2020-02-15T06:59:45Z +13521,2005-08-20T02:42:28Z,2586,384,2005-08-22T06:12:28Z,1,2020-02-15T06:59:45Z +13522,2005-08-20T02:44:06Z,2940,343,2005-08-28T05:30:06Z,1,2020-02-15T06:59:45Z +13523,2005-08-20T02:47:03Z,163,572,2005-08-28T07:43:03Z,1,2020-02-15T06:59:45Z +13524,2005-08-20T02:48:43Z,4557,593,2005-08-27T03:14:43Z,2,2020-02-15T06:59:45Z +13525,2005-08-20T02:50:44Z,3514,111,2005-08-26T22:58:44Z,2,2020-02-15T06:59:45Z +13526,2005-08-20T02:58:42Z,1966,277,2005-08-27T22:36:42Z,2,2020-02-15T06:59:45Z +13527,2005-08-20T03:00:47Z,4424,521,2005-08-25T01:03:47Z,1,2020-02-15T06:59:45Z +13528,2005-08-20T03:03:31Z,1847,202,2005-08-26T03:09:31Z,1,2020-02-15T06:59:45Z +13529,2005-08-20T03:07:47Z,1979,193,2005-08-21T21:50:47Z,1,2020-02-15T06:59:45Z +13530,2005-08-20T03:12:43Z,597,156,2005-08-23T09:01:43Z,2,2020-02-15T06:59:45Z +13531,2005-08-20T03:26:10Z,2778,156,2005-08-25T03:41:10Z,1,2020-02-15T06:59:45Z +13532,2005-08-20T03:29:28Z,1433,168,2005-08-23T22:53:28Z,2,2020-02-15T06:59:45Z +13533,2005-08-20T03:30:00Z,1801,436,2005-08-27T05:53:00Z,1,2020-02-15T06:59:45Z +13534,2006-02-14T15:16:03Z,2476,75,,1,2020-02-15T06:59:45Z +13535,2005-08-20T03:30:25Z,1563,86,2005-08-28T04:35:25Z,1,2020-02-15T06:59:45Z +13536,2005-08-20T03:35:16Z,667,183,2005-08-25T04:06:16Z,2,2020-02-15T06:59:45Z +13537,2005-08-20T03:39:15Z,2521,418,2005-08-23T22:03:15Z,2,2020-02-15T06:59:45Z +13538,2006-02-14T15:16:03Z,581,279,,1,2020-02-15T06:59:45Z +13539,2005-08-20T03:40:27Z,3110,518,2005-08-27T07:15:27Z,1,2020-02-15T06:59:45Z +13540,2005-08-20T03:41:23Z,3785,557,2005-08-27T09:09:23Z,2,2020-02-15T06:59:45Z +13541,2005-08-20T03:41:41Z,1363,15,2005-08-24T23:14:41Z,1,2020-02-15T06:59:45Z +13542,2005-08-20T03:41:57Z,4543,147,2005-08-29T03:21:57Z,2,2020-02-15T06:59:45Z +13543,2005-08-20T03:43:13Z,2142,163,2005-08-29T07:14:13Z,2,2020-02-15T06:59:45Z +13544,2005-08-20T03:44:26Z,58,538,2005-08-27T22:11:26Z,1,2020-02-15T06:59:45Z +13545,2005-08-20T03:50:15Z,615,417,2005-08-27T22:24:15Z,1,2020-02-15T06:59:45Z +13546,2005-08-20T03:50:24Z,2492,390,2005-08-28T03:04:24Z,2,2020-02-15T06:59:45Z +13547,2005-08-20T03:53:16Z,3122,456,2005-08-25T04:02:16Z,1,2020-02-15T06:59:45Z +13548,2005-08-20T03:53:20Z,4389,319,2005-08-27T21:54:20Z,1,2020-02-15T06:59:45Z +13549,2005-08-20T03:58:41Z,508,274,2005-08-28T22:49:41Z,1,2020-02-15T06:59:45Z +13550,2005-08-20T03:58:51Z,208,206,2005-08-28T00:45:51Z,2,2020-02-15T06:59:45Z +13551,2005-08-20T04:00:30Z,1049,503,2005-08-21T06:26:30Z,2,2020-02-15T06:59:45Z +13552,2005-08-20T04:03:51Z,758,578,2005-08-23T02:48:51Z,2,2020-02-15T06:59:45Z +13553,2005-08-20T04:07:21Z,4407,314,2005-08-28T09:55:21Z,1,2020-02-15T06:59:45Z +13554,2005-08-20T04:08:39Z,2648,569,2005-08-28T07:11:39Z,2,2020-02-15T06:59:45Z +13555,2005-08-20T04:09:50Z,3176,93,2005-08-29T05:20:50Z,1,2020-02-15T06:59:45Z +13556,2005-08-20T04:10:26Z,3914,266,2005-08-26T06:45:26Z,2,2020-02-15T06:59:45Z +13557,2005-08-20T04:12:41Z,2290,23,2005-08-21T02:33:41Z,2,2020-02-15T06:59:45Z +13558,2005-08-20T04:13:17Z,1551,564,2005-08-24T06:38:17Z,1,2020-02-15T06:59:45Z +13559,2005-08-20T04:16:07Z,2413,444,2005-08-24T23:23:07Z,1,2020-02-15T06:59:45Z +13560,2005-08-20T04:17:16Z,820,56,2005-08-28T08:38:16Z,1,2020-02-15T06:59:45Z +13561,2006-02-14T15:16:03Z,3202,530,,1,2020-02-15T06:59:45Z +13562,2005-08-20T04:31:45Z,4547,36,2005-08-25T09:59:45Z,1,2020-02-15T06:59:45Z +13563,2005-08-20T04:33:31Z,599,366,2005-08-24T07:08:31Z,2,2020-02-15T06:59:45Z +13564,2005-08-20T04:34:46Z,678,36,2005-08-28T23:18:46Z,2,2020-02-15T06:59:45Z +13565,2005-08-20T04:38:52Z,3378,214,2005-08-27T07:17:52Z,1,2020-02-15T06:59:45Z +13566,2005-08-20T04:45:32Z,4397,558,2005-08-28T02:12:32Z,2,2020-02-15T06:59:45Z +13567,2005-08-20T04:49:21Z,543,242,2005-08-26T10:27:21Z,1,2020-02-15T06:59:45Z +13568,2005-08-20T05:02:46Z,1243,151,2005-08-27T03:12:46Z,2,2020-02-15T06:59:45Z +13569,2005-08-20T05:02:59Z,1934,496,2005-08-28T00:51:59Z,1,2020-02-15T06:59:45Z +13570,2005-08-20T05:04:57Z,2808,188,2005-08-24T06:19:57Z,2,2020-02-15T06:59:45Z +13571,2005-08-20T05:05:14Z,1251,458,2005-08-25T03:59:14Z,2,2020-02-15T06:59:45Z +13572,2005-08-20T05:07:27Z,660,11,2005-08-23T23:33:27Z,1,2020-02-15T06:59:45Z +13573,2005-08-20T05:10:14Z,3032,59,2005-08-22T00:59:14Z,1,2020-02-15T06:59:45Z +13574,2005-08-20T05:10:39Z,2383,552,2005-08-21T02:21:39Z,2,2020-02-15T06:59:45Z +13575,2005-08-20T05:15:20Z,2729,339,2005-08-28T07:36:20Z,2,2020-02-15T06:59:45Z +13576,2005-08-20T05:19:56Z,2669,223,2005-08-22T09:08:56Z,2,2020-02-15T06:59:45Z +13577,2006-02-14T15:16:03Z,3844,448,,2,2020-02-15T06:59:45Z +13578,2006-02-14T15:16:03Z,4301,352,,2,2020-02-15T06:59:45Z +13579,2005-08-20T05:22:06Z,4237,333,2005-08-28T02:33:06Z,2,2020-02-15T06:59:45Z +13580,2005-08-20T05:23:34Z,4419,526,2005-08-23T02:45:34Z,1,2020-02-15T06:59:45Z +13581,2005-08-20T05:26:15Z,1753,119,2005-08-21T11:07:15Z,2,2020-02-15T06:59:45Z +13582,2005-08-20T05:28:11Z,211,166,2005-08-23T02:06:11Z,2,2020-02-15T06:59:45Z +13583,2005-08-20T05:29:45Z,176,74,2005-08-26T06:49:45Z,1,2020-02-15T06:59:45Z +13584,2006-02-14T15:16:03Z,3966,548,,2,2020-02-15T06:59:45Z +13585,2005-08-20T05:32:23Z,3314,470,2005-08-27T23:36:23Z,1,2020-02-15T06:59:45Z +13586,2005-08-20T05:40:33Z,4544,445,2005-08-25T01:32:33Z,2,2020-02-15T06:59:45Z +13587,2006-02-14T15:16:03Z,2455,431,,2,2020-02-15T06:59:45Z +13588,2005-08-20T05:47:11Z,702,279,2005-08-28T02:45:11Z,2,2020-02-15T06:59:45Z +13589,2005-08-20T05:47:25Z,3216,574,2005-08-23T01:29:25Z,2,2020-02-15T06:59:45Z +13590,2005-08-20T05:48:59Z,4417,264,2005-08-25T00:44:59Z,2,2020-02-15T06:59:45Z +13591,2005-08-20T05:50:05Z,3089,390,2005-08-27T08:43:05Z,2,2020-02-15T06:59:45Z +13592,2005-08-20T05:50:35Z,1509,470,2005-08-23T04:52:35Z,1,2020-02-15T06:59:45Z +13593,2005-08-20T05:50:52Z,261,585,2005-08-27T05:28:52Z,2,2020-02-15T06:59:45Z +13594,2005-08-20T05:53:31Z,3424,7,2005-08-23T09:01:31Z,1,2020-02-15T06:59:45Z +13595,2005-08-20T05:54:27Z,673,545,2005-08-29T01:25:27Z,1,2020-02-15T06:59:45Z +13596,2005-08-20T05:58:58Z,482,513,2005-08-27T08:35:58Z,1,2020-02-15T06:59:45Z +13597,2005-08-20T05:59:05Z,3697,72,2005-08-24T05:38:05Z,2,2020-02-15T06:59:45Z +13598,2005-08-20T05:59:17Z,2803,259,2005-08-29T01:02:17Z,1,2020-02-15T06:59:45Z +13599,2005-08-20T06:00:03Z,3333,150,2005-08-29T07:56:03Z,1,2020-02-15T06:59:45Z +13600,2005-08-20T06:00:25Z,431,528,2005-08-28T02:39:25Z,1,2020-02-15T06:59:45Z +13601,2005-08-20T06:01:15Z,2166,189,2005-08-29T06:14:15Z,2,2020-02-15T06:59:45Z +13602,2005-08-20T06:02:02Z,2805,348,2005-08-27T04:51:02Z,1,2020-02-15T06:59:45Z +13603,2005-08-20T06:02:48Z,937,362,2005-08-29T09:39:48Z,1,2020-02-15T06:59:45Z +13604,2005-08-20T06:03:33Z,4352,353,2005-08-21T07:06:33Z,1,2020-02-15T06:59:45Z +13605,2005-08-20T06:06:17Z,4446,522,2005-08-26T00:53:17Z,2,2020-02-15T06:59:45Z +13606,2005-08-20T06:07:01Z,83,146,2005-08-27T04:59:01Z,2,2020-02-15T06:59:45Z +13607,2005-08-20T06:08:42Z,2692,491,2005-08-21T01:59:42Z,2,2020-02-15T06:59:45Z +13608,2005-08-20T06:10:44Z,4110,193,2005-08-24T07:08:44Z,1,2020-02-15T06:59:45Z +13609,2005-08-20T06:11:51Z,299,328,2005-08-23T04:13:51Z,2,2020-02-15T06:59:45Z +13610,2005-08-20T06:14:12Z,2526,3,2005-08-26T00:44:12Z,2,2020-02-15T06:59:45Z +13611,2005-08-20T06:20:42Z,1460,112,2005-08-28T10:07:42Z,1,2020-02-15T06:59:45Z +13612,2005-08-20T06:22:08Z,675,505,2005-08-28T02:22:08Z,1,2020-02-15T06:59:45Z +13613,2005-08-20T06:23:53Z,2415,201,2005-08-29T11:40:53Z,2,2020-02-15T06:59:45Z +13614,2005-08-20T06:28:37Z,3736,381,2005-08-22T07:54:37Z,2,2020-02-15T06:59:45Z +13615,2005-08-20T06:28:53Z,1864,539,2005-08-27T11:40:53Z,2,2020-02-15T06:59:45Z +13616,2005-08-20T06:30:33Z,1694,194,2005-08-27T09:29:33Z,2,2020-02-15T06:59:45Z +13617,2005-08-20T06:35:30Z,4059,526,2005-08-29T09:03:30Z,1,2020-02-15T06:59:45Z +13618,2005-08-20T06:36:46Z,390,390,2005-08-29T05:17:46Z,2,2020-02-15T06:59:45Z +13619,2005-08-20T06:39:26Z,1068,365,2005-08-23T05:22:26Z,2,2020-02-15T06:59:45Z +13620,2005-08-20T06:41:27Z,2361,92,2005-08-24T11:02:27Z,1,2020-02-15T06:59:45Z +13621,2005-08-20T06:43:44Z,3754,581,2005-08-23T06:25:44Z,2,2020-02-15T06:59:45Z +13622,2005-08-20T06:45:32Z,3355,335,2005-08-25T02:40:32Z,1,2020-02-15T06:59:45Z +13623,2005-08-20T06:49:46Z,3948,321,2005-08-25T05:19:46Z,2,2020-02-15T06:59:45Z +13624,2005-08-20T06:51:02Z,430,63,2005-08-29T02:39:02Z,1,2020-02-15T06:59:45Z +13625,2005-08-20T06:52:03Z,60,422,2005-08-27T07:43:03Z,1,2020-02-15T06:59:45Z +13626,2005-08-20T06:55:24Z,594,524,2005-08-29T12:32:24Z,1,2020-02-15T06:59:45Z +13627,2005-08-20T06:59:00Z,603,329,2005-08-29T11:43:00Z,2,2020-02-15T06:59:45Z +13628,2005-08-20T07:03:53Z,1006,500,2005-08-22T11:27:53Z,2,2020-02-15T06:59:45Z +13629,2005-08-20T07:04:07Z,1834,392,2005-08-25T12:36:07Z,1,2020-02-15T06:59:45Z +13630,2005-08-20T07:05:56Z,3346,244,2005-08-29T04:15:56Z,1,2020-02-15T06:59:45Z +13631,2005-08-20T07:07:37Z,1015,535,2005-08-22T04:01:37Z,1,2020-02-15T06:59:45Z +13632,2005-08-20T07:10:52Z,4008,409,2005-08-29T10:19:52Z,2,2020-02-15T06:59:45Z +13633,2005-08-20T07:13:47Z,3227,301,2005-08-24T11:25:47Z,1,2020-02-15T06:59:45Z +13634,2005-08-20T07:16:45Z,850,411,2005-08-22T03:38:45Z,1,2020-02-15T06:59:45Z +13635,2005-08-20T07:17:35Z,669,286,2005-08-29T06:27:35Z,1,2020-02-15T06:59:45Z +13636,2005-08-20T07:20:09Z,1467,349,2005-08-23T09:58:09Z,1,2020-02-15T06:59:45Z +13637,2005-08-20T07:21:15Z,2298,342,2005-08-24T10:13:15Z,2,2020-02-15T06:59:45Z +13638,2005-08-20T07:21:15Z,3255,493,2005-08-23T11:09:15Z,2,2020-02-15T06:59:45Z +13639,2005-08-20T07:22:07Z,2489,562,2005-08-23T11:24:07Z,2,2020-02-15T06:59:45Z +13640,2005-08-20T07:22:53Z,3427,541,2005-08-21T11:54:53Z,2,2020-02-15T06:59:45Z +13641,2005-08-20T07:34:42Z,367,281,2005-08-26T05:18:42Z,1,2020-02-15T06:59:45Z +13642,2005-08-20T07:42:17Z,4415,452,2005-08-29T10:49:17Z,1,2020-02-15T06:59:45Z +13643,2005-08-20T07:42:24Z,2443,398,2005-08-26T09:13:24Z,2,2020-02-15T06:59:45Z +13644,2005-08-20T07:46:30Z,970,464,2005-08-27T01:54:30Z,1,2020-02-15T06:59:45Z +13645,2005-08-20T07:47:05Z,157,387,2005-08-23T02:58:05Z,1,2020-02-15T06:59:45Z +13646,2005-08-20T07:47:08Z,1347,242,2005-08-29T08:33:08Z,1,2020-02-15T06:59:45Z +13647,2005-08-20T07:48:07Z,3269,519,2005-08-28T07:56:07Z,2,2020-02-15T06:59:45Z +13648,2005-08-20T07:48:10Z,3921,596,2005-08-22T12:15:10Z,2,2020-02-15T06:59:45Z +13649,2005-08-20T07:48:38Z,1495,259,2005-08-23T07:43:38Z,2,2020-02-15T06:59:45Z +13650,2005-08-20T07:49:06Z,2644,322,2005-08-28T10:11:06Z,1,2020-02-15T06:59:45Z +13651,2005-08-20T07:50:08Z,1082,256,2005-08-21T07:11:08Z,1,2020-02-15T06:59:45Z +13652,2005-08-20T07:52:34Z,2548,67,2005-08-23T08:58:34Z,2,2020-02-15T06:59:45Z +13653,2005-08-20T07:54:54Z,4029,129,2005-08-29T06:43:54Z,1,2020-02-15T06:59:45Z +13654,2005-08-20T07:58:21Z,1582,469,2005-08-21T09:40:21Z,2,2020-02-15T06:59:45Z +13655,2005-08-20T07:59:13Z,4294,207,2005-08-22T12:04:13Z,1,2020-02-15T06:59:45Z +13656,2005-08-20T08:01:07Z,3180,411,2005-08-28T13:16:07Z,2,2020-02-15T06:59:45Z +13657,2005-08-20T08:01:39Z,1752,414,2005-08-23T07:31:39Z,1,2020-02-15T06:59:45Z +13658,2005-08-20T08:02:22Z,3827,487,2005-08-28T06:00:22Z,1,2020-02-15T06:59:45Z +13659,2005-08-20T08:05:52Z,3610,520,2005-08-24T12:38:52Z,1,2020-02-15T06:59:45Z +13660,2005-08-20T08:05:56Z,3972,72,2005-08-22T13:22:56Z,1,2020-02-15T06:59:45Z +13661,2005-08-20T08:05:59Z,3996,471,2005-08-29T12:15:59Z,1,2020-02-15T06:59:45Z +13662,2005-08-20T08:11:58Z,3880,592,2005-08-26T13:34:58Z,1,2020-02-15T06:59:45Z +13663,2005-08-20T08:12:33Z,3969,240,2005-08-27T03:23:33Z,2,2020-02-15T06:59:45Z +13664,2005-08-20T08:18:36Z,3750,264,2005-08-26T11:04:36Z,1,2020-02-15T06:59:45Z +13665,2005-08-20T08:19:20Z,117,291,2005-08-28T06:26:20Z,1,2020-02-15T06:59:45Z +13666,2005-08-20T08:20:19Z,2007,451,2005-08-22T03:22:19Z,1,2020-02-15T06:59:45Z +13667,2005-08-20T08:25:34Z,3856,280,2005-08-24T07:04:34Z,2,2020-02-15T06:59:45Z +13668,2005-08-20T08:26:06Z,3659,123,2005-08-25T05:52:06Z,2,2020-02-15T06:59:45Z +13669,2005-08-20T08:26:32Z,4504,261,2005-08-27T08:10:32Z,2,2020-02-15T06:59:45Z +13670,2005-08-20T08:27:01Z,1951,147,2005-08-29T05:59:01Z,2,2020-02-15T06:59:45Z +13671,2005-08-20T08:27:03Z,1473,201,2005-08-26T03:56:03Z,1,2020-02-15T06:59:45Z +13672,2005-08-20T08:27:27Z,2068,201,2005-08-22T06:15:27Z,2,2020-02-15T06:59:45Z +13673,2005-08-20T08:27:30Z,343,332,2005-08-26T05:14:30Z,1,2020-02-15T06:59:45Z +13674,2005-08-20T08:30:54Z,3397,36,2005-08-22T02:59:54Z,1,2020-02-15T06:59:45Z +13675,2005-08-20T08:32:51Z,350,493,2005-08-27T03:52:51Z,2,2020-02-15T06:59:45Z +13676,2005-08-20T08:33:21Z,3170,103,2005-08-25T02:51:21Z,1,2020-02-15T06:59:45Z +13677,2005-08-20T08:34:41Z,4013,15,2005-08-26T11:51:41Z,2,2020-02-15T06:59:45Z +13678,2005-08-20T08:38:24Z,1118,337,2005-08-27T13:54:24Z,2,2020-02-15T06:59:45Z +13679,2005-08-20T08:39:34Z,2878,229,2005-08-29T10:06:34Z,2,2020-02-15T06:59:45Z +13680,2005-08-20T08:44:06Z,2822,70,2005-08-27T09:58:06Z,2,2020-02-15T06:59:45Z +13681,2005-08-20T08:47:37Z,3039,328,2005-08-27T09:47:37Z,1,2020-02-15T06:59:45Z +13682,2005-08-20T08:50:39Z,287,30,2005-08-21T09:05:39Z,2,2020-02-15T06:59:45Z +13683,2005-08-20T08:54:55Z,1729,255,2005-08-24T14:10:55Z,2,2020-02-15T06:59:45Z +13684,2005-08-20T08:55:53Z,2213,348,2005-08-25T08:11:53Z,1,2020-02-15T06:59:45Z +13685,2005-08-20T08:57:11Z,3336,260,2005-08-27T07:26:11Z,1,2020-02-15T06:59:45Z +13686,2005-08-20T08:57:28Z,666,306,2005-08-24T07:21:28Z,2,2020-02-15T06:59:45Z +13687,2005-08-20T08:57:51Z,3629,290,2005-08-22T07:02:51Z,2,2020-02-15T06:59:45Z +13688,2005-08-20T08:59:38Z,1116,572,2005-08-28T04:54:38Z,2,2020-02-15T06:59:45Z +13689,2005-08-20T09:04:30Z,819,336,2005-08-22T05:38:30Z,2,2020-02-15T06:59:45Z +13690,2005-08-20T09:07:27Z,3721,513,2005-08-23T08:03:27Z,2,2020-02-15T06:59:45Z +13691,2005-08-20T09:07:39Z,676,548,2005-08-28T15:03:39Z,1,2020-02-15T06:59:45Z +13692,2005-08-20T09:07:52Z,1928,65,2005-08-21T05:17:52Z,1,2020-02-15T06:59:45Z +13693,2005-08-20T09:11:42Z,933,552,2005-08-24T15:00:42Z,2,2020-02-15T06:59:45Z +13694,2005-08-20T09:13:23Z,3654,454,2005-08-28T06:10:23Z,1,2020-02-15T06:59:45Z +13695,2005-08-20T09:13:25Z,3114,258,2005-08-27T11:51:25Z,2,2020-02-15T06:59:45Z +13696,2005-08-20T09:16:15Z,1279,206,2005-08-21T03:33:15Z,1,2020-02-15T06:59:45Z +13697,2005-08-20T09:21:08Z,291,76,2005-08-29T12:33:08Z,1,2020-02-15T06:59:45Z +13698,2005-08-20T09:24:26Z,3829,364,2005-08-22T05:04:26Z,2,2020-02-15T06:59:45Z +13699,2005-08-20T09:26:14Z,3913,21,2005-08-29T08:16:14Z,2,2020-02-15T06:59:45Z +13700,2005-08-20T09:26:17Z,4229,265,2005-08-27T05:49:17Z,2,2020-02-15T06:59:45Z +13701,2005-08-20T09:27:05Z,1643,564,2005-08-21T14:54:05Z,1,2020-02-15T06:59:45Z +13702,2005-08-20T09:27:20Z,700,296,2005-08-29T15:04:20Z,2,2020-02-15T06:59:45Z +13703,2005-08-20T09:29:35Z,2296,356,2005-08-27T08:03:35Z,2,2020-02-15T06:59:45Z +13704,2005-08-20T09:32:04Z,3373,4,2005-08-23T14:29:04Z,2,2020-02-15T06:59:45Z +13705,2005-08-20T09:32:23Z,3663,451,2005-08-21T13:51:23Z,1,2020-02-15T06:59:45Z +13706,2005-08-20T09:32:56Z,3005,363,2005-08-28T05:22:56Z,2,2020-02-15T06:59:45Z +13707,2005-08-20T09:33:58Z,826,232,2005-08-23T07:44:58Z,2,2020-02-15T06:59:45Z +13708,2005-08-20T09:34:07Z,2236,218,2005-08-26T10:17:07Z,1,2020-02-15T06:59:45Z +13709,2005-08-20T09:34:51Z,4089,422,2005-08-23T04:13:51Z,1,2020-02-15T06:59:45Z +13710,2005-08-20T09:35:20Z,756,333,2005-08-21T05:29:20Z,2,2020-02-15T06:59:45Z +13711,2005-08-20T09:35:20Z,2318,453,2005-08-28T09:06:20Z,2,2020-02-15T06:59:45Z +13712,2005-08-20T09:38:04Z,1039,581,2005-08-21T06:10:04Z,1,2020-02-15T06:59:45Z +13713,2006-02-14T15:16:03Z,3075,267,,1,2020-02-15T06:59:45Z +13714,2005-08-20T09:41:09Z,2659,277,2005-08-22T06:28:09Z,1,2020-02-15T06:59:45Z +13715,2005-08-20T09:43:06Z,1028,292,2005-08-27T10:22:06Z,1,2020-02-15T06:59:45Z +13716,2005-08-20T09:48:32Z,86,386,2005-08-26T07:20:32Z,2,2020-02-15T06:59:45Z +13717,2005-08-20T09:50:52Z,1629,300,2005-08-28T11:32:52Z,2,2020-02-15T06:59:45Z +13718,2005-08-20T09:53:44Z,205,19,2005-08-29T13:46:44Z,2,2020-02-15T06:59:45Z +13719,2006-02-14T15:16:03Z,3547,208,,1,2020-02-15T06:59:45Z +13720,2005-08-20T10:01:39Z,813,427,2005-08-27T08:26:39Z,1,2020-02-15T06:59:45Z +13721,2005-08-20T10:02:59Z,1444,297,2005-08-24T07:02:59Z,2,2020-02-15T06:59:45Z +13722,2005-08-20T10:03:45Z,1581,422,2005-08-25T04:26:45Z,1,2020-02-15T06:59:45Z +13723,2005-08-20T10:05:30Z,411,110,2005-08-27T07:43:30Z,2,2020-02-15T06:59:45Z +13724,2005-08-20T10:07:28Z,200,80,2005-08-24T07:47:28Z,2,2020-02-15T06:59:45Z +13725,2005-08-20T10:08:27Z,3861,306,2005-08-28T06:52:27Z,2,2020-02-15T06:59:45Z +13726,2005-08-20T10:08:40Z,2258,214,2005-08-23T14:58:40Z,1,2020-02-15T06:59:45Z +13727,2005-08-20T10:08:53Z,4201,85,2005-08-27T09:30:53Z,1,2020-02-15T06:59:45Z +13728,2005-08-20T10:11:07Z,1962,157,2005-08-23T10:32:07Z,1,2020-02-15T06:59:45Z +13729,2005-08-20T10:17:08Z,4108,415,2005-08-28T15:35:08Z,1,2020-02-15T06:59:45Z +13730,2005-08-20T10:17:09Z,1330,548,2005-08-28T10:45:09Z,1,2020-02-15T06:59:45Z +13731,2005-08-20T10:22:08Z,1133,450,2005-08-21T12:04:08Z,2,2020-02-15T06:59:45Z +13732,2005-08-20T10:24:41Z,1138,17,2005-08-22T04:44:41Z,1,2020-02-15T06:59:45Z +13733,2005-08-20T10:25:12Z,3994,85,2005-08-21T10:49:12Z,2,2020-02-15T06:59:45Z +13734,2005-08-20T10:29:57Z,4561,374,2005-08-25T14:41:57Z,2,2020-02-15T06:59:45Z +13735,2005-08-20T10:31:01Z,1813,35,2005-08-26T05:00:01Z,1,2020-02-15T06:59:45Z +13736,2005-08-20T10:31:23Z,3369,32,2005-08-28T06:51:23Z,1,2020-02-15T06:59:45Z +13737,2005-08-20T10:41:50Z,4319,200,2005-08-25T14:33:50Z,2,2020-02-15T06:59:45Z +13738,2005-08-20T10:42:42Z,2748,273,2005-08-25T09:32:42Z,1,2020-02-15T06:59:45Z +13739,2005-08-20T10:45:10Z,3027,441,2005-08-28T08:46:10Z,2,2020-02-15T06:59:45Z +13740,2005-08-20T10:48:43Z,4366,21,2005-08-29T15:30:43Z,1,2020-02-15T06:59:45Z +13741,2005-08-20T10:48:47Z,3887,195,2005-08-21T11:19:47Z,1,2020-02-15T06:59:45Z +13742,2005-08-20T10:49:15Z,1377,580,2005-08-21T11:05:15Z,2,2020-02-15T06:59:45Z +13743,2005-08-20T10:51:27Z,3693,57,2005-08-24T15:54:27Z,1,2020-02-15T06:59:45Z +13744,2005-08-20T10:51:45Z,2962,408,2005-08-25T06:42:45Z,2,2020-02-15T06:59:45Z +13745,2005-08-20T10:53:49Z,1264,142,2005-08-25T13:25:49Z,1,2020-02-15T06:59:45Z +13746,2005-08-20T10:55:28Z,3742,520,2005-08-25T07:48:28Z,2,2020-02-15T06:59:45Z +13747,2005-08-20T10:56:06Z,3332,74,2005-08-29T10:29:06Z,1,2020-02-15T06:59:45Z +13748,2005-08-20T10:59:54Z,2198,410,2005-08-23T12:33:54Z,1,2020-02-15T06:59:45Z +13749,2005-08-20T11:00:37Z,2811,282,2005-08-26T12:04:37Z,1,2020-02-15T06:59:45Z +13750,2005-08-20T11:11:42Z,3363,246,2005-08-29T16:16:42Z,2,2020-02-15T06:59:45Z +13751,2005-08-20T11:17:03Z,185,105,2005-08-22T14:12:03Z,2,2020-02-15T06:59:45Z +13752,2005-08-20T11:17:45Z,1794,77,2005-08-29T13:25:45Z,2,2020-02-15T06:59:45Z +13753,2006-02-14T15:16:03Z,3746,495,,1,2020-02-15T06:59:45Z +13754,2005-08-20T11:18:08Z,1740,108,2005-08-22T11:55:08Z,1,2020-02-15T06:59:45Z +13755,2005-08-20T11:18:53Z,1927,342,2005-08-27T06:51:53Z,2,2020-02-15T06:59:45Z +13756,2006-02-14T15:16:03Z,1146,252,,2,2020-02-15T06:59:45Z +13757,2005-08-20T11:20:12Z,1147,14,2005-08-23T10:14:12Z,2,2020-02-15T06:59:45Z +13758,2005-08-20T11:21:26Z,864,255,2005-08-29T14:37:26Z,2,2020-02-15T06:59:45Z +13759,2005-08-20T11:24:48Z,595,269,2005-08-29T10:29:48Z,1,2020-02-15T06:59:45Z +13760,2005-08-20T11:26:33Z,3459,436,2005-08-27T11:12:33Z,2,2020-02-15T06:59:45Z +13761,2005-08-20T11:28:50Z,3149,376,2005-08-21T12:05:50Z,2,2020-02-15T06:59:45Z +13762,2005-08-20T11:29:32Z,451,566,2005-08-23T17:25:32Z,1,2020-02-15T06:59:45Z +13763,2005-08-20T11:37:56Z,4171,469,2005-08-26T13:12:56Z,1,2020-02-15T06:59:45Z +13764,2005-08-20T11:38:16Z,989,386,2005-08-27T08:01:16Z,1,2020-02-15T06:59:45Z +13765,2005-08-20T11:39:00Z,2104,219,2005-08-21T06:05:00Z,1,2020-02-15T06:59:46Z +13766,2005-08-20T11:42:01Z,1313,189,2005-08-27T13:44:01Z,2,2020-02-15T06:59:46Z +13767,2005-08-20T11:43:36Z,2739,506,2005-08-22T17:10:36Z,1,2020-02-15T06:59:46Z +13768,2005-08-20T11:43:43Z,3847,198,2005-08-27T07:56:43Z,2,2020-02-15T06:59:46Z +13769,2005-08-20T11:43:52Z,2868,56,2005-08-28T13:19:52Z,1,2020-02-15T06:59:46Z +13770,2005-08-20T11:45:54Z,998,538,2005-08-22T17:08:54Z,1,2020-02-15T06:59:46Z +13771,2005-08-20T11:47:21Z,2278,512,2005-08-22T17:09:21Z,1,2020-02-15T06:59:46Z +13772,2005-08-20T11:47:52Z,2038,387,2005-08-28T05:50:52Z,2,2020-02-15T06:59:46Z +13773,2005-08-20T11:50:14Z,3389,64,2005-08-26T12:35:14Z,1,2020-02-15T06:59:46Z +13774,2005-08-20T11:54:01Z,735,244,2005-08-22T13:25:01Z,2,2020-02-15T06:59:46Z +13775,2005-08-20T11:56:30Z,1858,116,2005-08-28T12:48:30Z,2,2020-02-15T06:59:46Z +13776,2005-08-20T11:57:06Z,2439,137,2005-08-26T10:55:06Z,1,2020-02-15T06:59:46Z +13777,2005-08-20T12:03:35Z,3587,29,2005-08-27T10:13:35Z,1,2020-02-15T06:59:46Z +13778,2005-08-20T12:03:44Z,2385,539,2005-08-28T12:09:44Z,1,2020-02-15T06:59:46Z +13779,2005-08-20T12:03:54Z,63,440,2005-08-28T15:24:54Z,2,2020-02-15T06:59:46Z +13780,2006-02-14T15:16:03Z,1775,14,,2,2020-02-15T06:59:46Z +13781,2005-08-20T12:06:45Z,971,368,2005-08-26T06:50:45Z,2,2020-02-15T06:59:46Z +13782,2005-08-20T12:09:26Z,577,305,2005-08-23T08:31:26Z,2,2020-02-15T06:59:46Z +13783,2005-08-20T12:11:03Z,2643,28,2005-08-21T15:53:03Z,2,2020-02-15T06:59:46Z +13784,2005-08-20T12:11:28Z,3087,431,2005-08-25T08:11:28Z,1,2020-02-15T06:59:46Z +13785,2005-08-20T12:11:46Z,379,453,2005-08-21T06:39:46Z,1,2020-02-15T06:59:46Z +13786,2005-08-20T12:13:24Z,515,94,2005-08-28T07:24:24Z,2,2020-02-15T06:59:46Z +13787,2005-08-20T12:15:23Z,253,188,2005-08-27T06:24:23Z,2,2020-02-15T06:59:46Z +13788,2005-08-20T12:15:41Z,3177,393,2005-08-28T16:28:41Z,2,2020-02-15T06:59:46Z +13789,2005-08-20T12:16:38Z,2523,53,2005-08-25T07:29:38Z,1,2020-02-15T06:59:46Z +13790,2005-08-20T12:17:27Z,1385,11,2005-08-25T12:20:27Z,1,2020-02-15T06:59:46Z +13791,2005-08-20T12:21:05Z,1890,67,2005-08-22T17:58:05Z,1,2020-02-15T06:59:46Z +13792,2005-08-20T12:21:37Z,4157,78,2005-08-27T14:28:37Z,1,2020-02-15T06:59:46Z +13793,2005-08-20T12:22:04Z,2598,424,2005-08-27T09:51:04Z,2,2020-02-15T06:59:46Z +13794,2005-08-20T12:25:32Z,2148,557,2005-08-23T06:38:32Z,2,2020-02-15T06:59:46Z +13795,2005-08-20T12:32:09Z,2837,331,2005-08-21T17:28:09Z,1,2020-02-15T06:59:46Z +13796,2005-08-20T12:32:32Z,28,209,2005-08-29T10:48:32Z,2,2020-02-15T06:59:46Z +13797,2005-08-20T12:33:36Z,2857,529,2005-08-25T18:03:36Z,1,2020-02-15T06:59:46Z +13798,2006-02-14T15:16:03Z,526,15,,2,2020-02-15T06:59:46Z +13799,2005-08-20T12:36:42Z,4413,196,2005-08-28T08:47:42Z,1,2020-02-15T06:59:46Z +13800,2005-08-20T12:40:48Z,1552,407,2005-08-22T15:06:48Z,1,2020-02-15T06:59:46Z +13801,2005-08-20T12:40:53Z,1464,433,2005-08-21T16:29:53Z,1,2020-02-15T06:59:46Z +13802,2005-08-20T12:44:53Z,2079,156,2005-08-22T09:18:53Z,2,2020-02-15T06:59:46Z +13803,2005-08-20T12:46:17Z,1084,486,2005-08-24T15:44:17Z,2,2020-02-15T06:59:46Z +13804,2005-08-20T12:46:32Z,2232,19,2005-08-29T14:04:32Z,2,2020-02-15T06:59:46Z +13805,2005-08-20T12:53:12Z,349,454,2005-08-27T15:21:12Z,1,2020-02-15T06:59:46Z +13806,2005-08-20T12:53:46Z,444,341,2005-08-21T10:36:46Z,1,2020-02-15T06:59:46Z +13807,2005-08-20T12:55:40Z,3822,4,2005-08-28T09:06:40Z,2,2020-02-15T06:59:46Z +13808,2005-08-20T12:55:43Z,3689,262,2005-08-29T11:01:43Z,2,2020-02-15T06:59:46Z +13809,2005-08-20T12:56:03Z,1597,207,2005-08-27T11:58:03Z,1,2020-02-15T06:59:46Z +13810,2005-08-20T12:59:38Z,2228,450,2005-08-21T17:40:38Z,1,2020-02-15T06:59:46Z +13811,2005-08-20T13:00:30Z,1235,168,2005-08-24T10:18:30Z,1,2020-02-15T06:59:46Z +13812,2005-08-20T13:01:43Z,2788,122,2005-08-22T16:32:43Z,2,2020-02-15T06:59:46Z +13813,2005-08-20T13:03:26Z,601,455,2005-08-25T08:42:26Z,1,2020-02-15T06:59:46Z +13814,2005-08-20T13:07:23Z,2129,436,2005-08-22T16:23:23Z,2,2020-02-15T06:59:46Z +13815,2005-08-20T13:08:53Z,3388,582,2005-08-29T13:11:53Z,2,2020-02-15T06:59:46Z +13816,2005-08-20T13:13:56Z,273,27,2005-08-25T09:46:56Z,1,2020-02-15T06:59:46Z +13817,2005-08-20T13:15:30Z,1935,293,2005-08-22T18:48:30Z,2,2020-02-15T06:59:46Z +13818,2005-08-20T13:20:09Z,1283,495,2005-08-21T18:41:09Z,1,2020-02-15T06:59:46Z +13819,2005-08-20T13:23:15Z,1459,296,2005-08-22T16:02:15Z,2,2020-02-15T06:59:46Z +13820,2005-08-20T13:26:37Z,3191,81,2005-08-27T14:05:37Z,1,2020-02-15T06:59:46Z +13821,2005-08-20T13:33:47Z,2402,355,2005-08-25T18:09:47Z,1,2020-02-15T06:59:46Z +13822,2005-08-20T13:39:28Z,807,499,2005-08-24T07:40:28Z,1,2020-02-15T06:59:46Z +13823,2005-08-20T13:42:10Z,3875,89,2005-08-22T18:45:10Z,1,2020-02-15T06:59:46Z +13824,2005-08-20T13:43:12Z,2845,413,2005-08-22T17:26:12Z,1,2020-02-15T06:59:46Z +13825,2005-08-20T13:43:22Z,2135,167,2005-08-29T19:13:22Z,1,2020-02-15T06:59:46Z +13826,2005-08-20T13:46:38Z,401,436,2005-08-29T13:07:38Z,1,2020-02-15T06:59:46Z +13827,2005-08-20T13:47:19Z,1103,342,2005-08-28T09:13:19Z,1,2020-02-15T06:59:46Z +13828,2005-08-20T13:49:52Z,2391,450,2005-08-25T07:49:52Z,2,2020-02-15T06:59:46Z +13829,2005-08-20T13:50:17Z,3980,146,2005-08-24T11:30:17Z,2,2020-02-15T06:59:46Z +13830,2005-08-20T13:57:59Z,2874,61,2005-08-25T11:29:59Z,1,2020-02-15T06:59:46Z +13831,2005-08-20T13:59:35Z,570,480,2005-08-24T12:50:35Z,1,2020-02-15T06:59:46Z +13832,2005-08-20T14:00:25Z,3299,29,2005-08-28T10:11:25Z,1,2020-02-15T06:59:46Z +13833,2005-08-20T14:00:29Z,792,175,2005-08-29T12:01:29Z,2,2020-02-15T06:59:46Z +13834,2005-08-20T14:03:08Z,875,426,2005-08-22T10:12:08Z,1,2020-02-15T06:59:46Z +13835,2005-08-20T14:06:33Z,3738,143,2005-08-26T12:15:33Z,2,2020-02-15T06:59:46Z +13836,2005-08-20T14:18:16Z,4271,375,2005-08-21T18:13:16Z,2,2020-02-15T06:59:46Z +13837,2005-08-20T14:19:03Z,3220,67,2005-08-22T16:25:03Z,2,2020-02-15T06:59:46Z +13838,2005-08-20T14:22:46Z,1134,437,2005-08-29T12:28:46Z,2,2020-02-15T06:59:46Z +13839,2005-08-20T14:23:16Z,1056,437,2005-08-26T19:11:16Z,2,2020-02-15T06:59:46Z +13840,2005-08-20T14:23:20Z,1211,40,2005-08-28T11:53:20Z,1,2020-02-15T06:59:46Z +13841,2005-08-20T14:25:18Z,3277,203,2005-08-29T15:49:18Z,1,2020-02-15T06:59:46Z +13842,2005-08-20T14:29:37Z,4337,180,2005-08-29T18:19:37Z,1,2020-02-15T06:59:46Z +13843,2005-08-20T14:30:01Z,3058,308,2005-08-27T10:06:01Z,2,2020-02-15T06:59:46Z +13844,2005-08-20T14:30:26Z,983,179,2005-08-29T17:08:26Z,1,2020-02-15T06:59:46Z +13845,2005-08-20T14:31:21Z,3993,559,2005-08-29T18:29:21Z,1,2020-02-15T06:59:46Z +13846,2005-08-20T14:32:31Z,3289,257,2005-08-28T16:58:31Z,1,2020-02-15T06:59:46Z +13847,2005-08-20T14:33:59Z,2647,82,2005-08-25T08:49:59Z,1,2020-02-15T06:59:46Z +13848,2005-08-20T14:37:49Z,802,447,2005-08-25T13:15:49Z,1,2020-02-15T06:59:46Z +13849,2005-08-20T14:42:34Z,3774,261,2005-08-24T13:09:34Z,2,2020-02-15T06:59:46Z +13850,2005-08-20T14:43:03Z,3030,546,2005-08-27T11:41:03Z,2,2020-02-15T06:59:46Z +13851,2005-08-20T14:44:22Z,3278,80,2005-08-22T18:10:22Z,1,2020-02-15T06:59:46Z +13852,2005-08-20T14:45:23Z,85,535,2005-08-22T16:47:23Z,2,2020-02-15T06:59:46Z +13853,2005-08-20T14:47:02Z,1680,186,2005-08-26T20:32:02Z,1,2020-02-15T06:59:46Z +13854,2005-08-20T14:48:42Z,4192,158,2005-08-21T14:55:42Z,2,2020-02-15T06:59:46Z +13855,2005-08-20T14:48:55Z,1617,96,2005-08-28T14:45:55Z,1,2020-02-15T06:59:46Z +13856,2005-08-20T14:49:32Z,4196,407,2005-08-29T12:37:32Z,2,2020-02-15T06:59:46Z +13857,2005-08-20T14:50:06Z,2542,366,2005-08-24T10:38:06Z,2,2020-02-15T06:59:46Z +13858,2005-08-20T14:50:57Z,2167,33,2005-08-23T12:10:57Z,2,2020-02-15T06:59:46Z +13859,2005-08-20T14:53:43Z,4381,504,2005-08-28T09:50:43Z,1,2020-02-15T06:59:46Z +13860,2005-08-20T14:55:09Z,558,275,2005-08-22T20:42:09Z,1,2020-02-15T06:59:46Z +13861,2005-08-20T14:56:53Z,303,154,2005-08-22T18:13:53Z,2,2020-02-15T06:59:46Z +13862,2005-08-20T14:57:01Z,3271,170,2005-08-27T10:48:01Z,2,2020-02-15T06:59:46Z +13863,2005-08-20T14:57:50Z,2417,563,2005-08-29T15:36:50Z,2,2020-02-15T06:59:46Z +13864,2005-08-20T14:59:55Z,3935,214,2005-08-22T09:30:55Z,2,2020-02-15T06:59:46Z +13865,2005-08-20T15:04:09Z,3647,275,2005-08-24T10:06:09Z,2,2020-02-15T06:59:46Z +13866,2005-08-20T15:05:29Z,3432,343,2005-08-23T11:27:29Z,2,2020-02-15T06:59:46Z +13867,2005-08-20T15:05:42Z,4514,591,2005-08-29T10:48:42Z,2,2020-02-15T06:59:46Z +13868,2005-08-20T15:06:26Z,3173,51,2005-08-22T19:08:26Z,2,2020-02-15T06:59:46Z +13869,2005-08-20T15:08:57Z,1990,386,2005-08-29T13:13:57Z,2,2020-02-15T06:59:46Z +13870,2005-08-20T15:09:16Z,563,167,2005-08-28T10:00:16Z,2,2020-02-15T06:59:46Z +13871,2005-08-20T15:10:13Z,3206,372,2005-08-29T19:43:13Z,2,2020-02-15T06:59:46Z +13872,2005-08-20T15:10:30Z,2416,421,2005-08-24T10:14:30Z,2,2020-02-15T06:59:46Z +13873,2005-08-20T15:11:11Z,1683,306,2005-08-22T20:13:11Z,2,2020-02-15T06:59:46Z +13874,2005-08-20T15:11:48Z,72,86,2005-08-21T18:26:48Z,2,2020-02-15T06:59:46Z +13875,2005-08-20T15:13:11Z,348,83,2005-08-21T13:11:11Z,1,2020-02-15T06:59:46Z +13876,2005-08-20T15:15:28Z,3137,334,2005-08-23T12:42:28Z,2,2020-02-15T06:59:46Z +13877,2005-08-20T15:16:18Z,3387,5,2005-08-22T18:20:18Z,1,2020-02-15T06:59:46Z +13878,2005-08-20T15:17:38Z,49,481,2005-08-21T21:11:38Z,2,2020-02-15T06:59:46Z +13879,2005-08-20T15:18:10Z,4022,112,2005-08-22T19:23:10Z,2,2020-02-15T06:59:46Z +13880,2005-08-20T15:18:20Z,3911,268,2005-08-24T18:03:20Z,2,2020-02-15T06:59:46Z +13881,2005-08-20T15:18:55Z,2831,144,2005-08-25T11:25:55Z,1,2020-02-15T06:59:46Z +13882,2005-08-20T15:23:26Z,3245,51,2005-08-22T13:03:26Z,1,2020-02-15T06:59:46Z +13883,2005-08-20T15:28:53Z,584,568,2005-08-21T13:11:53Z,1,2020-02-15T06:59:46Z +13884,2005-08-20T15:30:51Z,3182,466,2005-08-26T13:34:51Z,1,2020-02-15T06:59:46Z +13885,2005-08-20T15:32:09Z,3195,537,2005-08-26T15:54:09Z,1,2020-02-15T06:59:46Z +13886,2005-08-20T15:34:43Z,2248,73,2005-08-26T11:48:43Z,2,2020-02-15T06:59:46Z +13887,2005-08-20T15:39:00Z,4002,413,2005-08-24T16:17:00Z,2,2020-02-15T06:59:46Z +13888,2005-08-20T15:39:42Z,1943,297,2005-08-28T13:41:42Z,1,2020-02-15T06:59:46Z +13889,2005-08-20T15:40:06Z,4406,501,2005-08-22T14:09:06Z,2,2020-02-15T06:59:46Z +13890,2005-08-20T15:41:00Z,2965,54,2005-08-22T16:00:00Z,1,2020-02-15T06:59:46Z +13891,2005-08-20T15:42:05Z,2042,289,2005-08-25T13:26:05Z,1,2020-02-15T06:59:46Z +13892,2005-08-20T15:50:17Z,1236,337,2005-08-29T13:33:17Z,2,2020-02-15T06:59:46Z +13893,2005-08-20T15:52:52Z,3503,390,2005-08-27T16:21:52Z,2,2020-02-15T06:59:46Z +13894,2005-08-20T15:55:20Z,2649,360,2005-08-26T17:26:20Z,2,2020-02-15T06:59:46Z +13895,2005-08-20T15:58:28Z,3060,12,2005-08-26T15:07:28Z,2,2020-02-15T06:59:46Z +13896,2005-08-20T15:59:56Z,1338,278,2005-08-21T20:14:56Z,2,2020-02-15T06:59:46Z +13897,2005-08-20T16:02:28Z,628,258,2005-08-23T14:29:28Z,1,2020-02-15T06:59:46Z +13898,2006-02-14T15:16:03Z,4007,369,,2,2020-02-15T06:59:46Z +13899,2005-08-20T16:05:11Z,427,204,2005-08-23T15:14:11Z,2,2020-02-15T06:59:46Z +13900,2005-08-20T16:05:41Z,1140,66,2005-08-22T15:13:41Z,1,2020-02-15T06:59:46Z +13901,2005-08-20T16:06:53Z,3281,166,2005-08-28T11:30:53Z,1,2020-02-15T06:59:46Z +13902,2005-08-20T16:07:08Z,1165,275,2005-08-24T16:43:08Z,2,2020-02-15T06:59:46Z +13903,2005-08-20T16:07:55Z,1676,272,2005-08-25T18:26:55Z,1,2020-02-15T06:59:46Z +13904,2005-08-20T16:11:34Z,721,93,2005-08-26T12:46:34Z,1,2020-02-15T06:59:46Z +13905,2005-08-20T16:12:48Z,2714,437,2005-08-28T16:05:48Z,1,2020-02-15T06:59:46Z +13906,2005-08-20T16:16:03Z,3960,87,2005-08-21T13:29:03Z,2,2020-02-15T06:59:46Z +13907,2005-08-20T16:17:27Z,806,328,2005-08-24T20:14:27Z,2,2020-02-15T06:59:46Z +13908,2005-08-20T16:21:40Z,3661,532,2005-08-29T21:16:40Z,1,2020-02-15T06:59:46Z +13909,2005-08-20T16:26:36Z,1508,309,2005-08-21T20:59:36Z,2,2020-02-15T06:59:46Z +13910,2005-08-20T16:30:49Z,252,133,2005-08-24T13:30:49Z,2,2020-02-15T06:59:46Z +13911,2005-08-20T16:31:33Z,4400,304,2005-08-28T19:26:33Z,2,2020-02-15T06:59:46Z +13912,2005-08-20T16:32:10Z,968,207,2005-08-29T17:37:10Z,2,2020-02-15T06:59:46Z +13913,2005-08-20T16:37:35Z,4259,197,2005-08-26T13:12:35Z,2,2020-02-15T06:59:46Z +13914,2005-08-20T16:38:57Z,3037,237,2005-08-26T14:53:57Z,2,2020-02-15T06:59:46Z +13915,2005-08-20T16:42:53Z,1180,129,2005-08-23T20:30:53Z,2,2020-02-15T06:59:46Z +13916,2005-08-20T16:43:02Z,2971,302,2005-08-25T19:21:02Z,1,2020-02-15T06:59:46Z +13917,2005-08-20T16:43:28Z,4326,10,2005-08-29T16:44:28Z,2,2020-02-15T06:59:46Z +13918,2005-08-20T16:47:32Z,3301,248,2005-08-21T12:00:32Z,2,2020-02-15T06:59:46Z +13919,2005-08-20T16:47:34Z,909,129,2005-08-23T21:27:34Z,2,2020-02-15T06:59:46Z +13920,2005-08-20T16:51:18Z,3200,460,2005-08-27T16:05:18Z,2,2020-02-15T06:59:46Z +13921,2005-08-20T16:57:11Z,3943,59,2005-08-22T19:25:11Z,2,2020-02-15T06:59:46Z +13922,2005-08-20T17:02:37Z,1398,237,2005-08-29T19:28:37Z,1,2020-02-15T06:59:46Z +13923,2005-08-20T17:05:02Z,3129,588,2005-08-27T11:22:02Z,2,2020-02-15T06:59:46Z +13924,2005-08-20T17:05:18Z,3066,444,2005-08-23T16:54:18Z,2,2020-02-15T06:59:46Z +13925,2005-08-20T17:05:34Z,4034,565,2005-08-27T15:32:34Z,2,2020-02-15T06:59:46Z +13926,2005-08-20T17:09:27Z,932,158,2005-08-28T13:42:27Z,2,2020-02-15T06:59:46Z +13927,2005-08-20T17:11:58Z,4284,417,2005-08-24T12:44:58Z,1,2020-02-15T06:59:46Z +13928,2005-08-20T17:12:28Z,1121,244,2005-08-21T13:33:28Z,1,2020-02-15T06:59:46Z +13929,2005-08-20T17:13:48Z,946,57,2005-08-28T15:19:48Z,1,2020-02-15T06:59:46Z +13930,2005-08-20T17:15:06Z,3585,58,2005-08-21T14:29:06Z,1,2020-02-15T06:59:46Z +13931,2005-08-20T17:16:10Z,3884,32,2005-08-27T12:03:10Z,2,2020-02-15T06:59:46Z +13932,2005-08-20T17:17:00Z,471,441,2005-08-24T14:06:00Z,1,2020-02-15T06:59:46Z +13933,2005-08-20T17:17:07Z,647,159,2005-08-22T18:10:07Z,2,2020-02-15T06:59:46Z +13934,2005-08-20T17:18:48Z,4567,457,2005-08-26T15:31:48Z,1,2020-02-15T06:59:46Z +13935,2005-08-20T17:20:49Z,4426,205,2005-08-24T16:52:49Z,2,2020-02-15T06:59:46Z +13936,2005-08-20T17:22:35Z,1731,364,2005-08-23T20:07:35Z,2,2020-02-15T06:59:46Z +13937,2005-08-20T17:22:51Z,1755,172,2005-08-27T15:51:51Z,1,2020-02-15T06:59:46Z +13938,2005-08-20T17:24:45Z,3743,463,2005-08-21T18:39:45Z,1,2020-02-15T06:59:46Z +13939,2005-08-20T17:28:01Z,2700,585,2005-08-23T14:40:01Z,2,2020-02-15T06:59:46Z +13940,2005-08-20T17:28:57Z,2638,187,2005-08-27T22:07:57Z,1,2020-02-15T06:59:46Z +13941,2006-02-14T15:16:03Z,2727,476,,2,2020-02-15T06:59:46Z +13942,2005-08-20T17:30:52Z,4403,211,2005-08-25T13:46:52Z,2,2020-02-15T06:59:46Z +13943,2005-08-20T17:31:18Z,22,464,2005-08-24T11:33:18Z,1,2020-02-15T06:59:46Z +13944,2005-08-20T17:41:16Z,3685,408,2005-08-23T12:02:16Z,1,2020-02-15T06:59:46Z +13945,2005-08-20T17:43:56Z,3328,270,2005-08-26T19:19:56Z,1,2020-02-15T06:59:46Z +13946,2005-08-20T17:44:32Z,3564,529,2005-08-28T19:19:32Z,1,2020-02-15T06:59:46Z +13947,2005-08-20T17:46:06Z,2562,218,2005-08-29T23:44:06Z,2,2020-02-15T06:59:46Z +13948,2005-08-20T17:50:48Z,4033,410,2005-08-25T20:56:48Z,2,2020-02-15T06:59:46Z +13949,2005-08-20T17:55:13Z,1518,34,2005-08-22T20:49:13Z,1,2020-02-15T06:59:46Z +13950,2005-08-20T17:58:00Z,3978,93,2005-08-29T23:23:00Z,1,2020-02-15T06:59:46Z +13951,2005-08-20T17:58:11Z,2034,40,2005-08-26T14:50:11Z,2,2020-02-15T06:59:46Z +13952,2006-02-14T15:16:03Z,224,199,,2,2020-02-15T06:59:46Z +13953,2005-08-20T18:00:37Z,1818,371,2005-08-28T14:52:37Z,1,2020-02-15T06:59:46Z +13954,2005-08-20T18:02:41Z,3812,207,2005-08-27T21:52:41Z,2,2020-02-15T06:59:46Z +13955,2005-08-20T18:05:12Z,2613,273,2005-08-29T18:25:12Z,1,2020-02-15T06:59:46Z +13956,2005-08-20T18:08:19Z,3757,484,2005-08-29T17:03:19Z,1,2020-02-15T06:59:46Z +13957,2005-08-20T18:09:04Z,2889,179,2005-08-23T16:52:04Z,1,2020-02-15T06:59:46Z +13958,2005-08-20T18:11:44Z,2380,33,2005-08-28T14:59:44Z,1,2020-02-15T06:59:46Z +13959,2005-08-20T18:16:21Z,2283,142,2005-08-22T13:56:21Z,2,2020-02-15T06:59:46Z +13960,2005-08-20T18:16:26Z,4177,459,2005-08-29T14:06:26Z,1,2020-02-15T06:59:46Z +13961,2005-08-20T18:16:34Z,2271,129,2005-08-21T16:14:34Z,1,2020-02-15T06:59:46Z +13962,2005-08-20T18:18:06Z,1434,348,2005-08-24T22:16:06Z,2,2020-02-15T06:59:46Z +13963,2005-08-20T18:20:18Z,4145,368,2005-08-24T21:26:18Z,1,2020-02-15T06:59:46Z +13964,2005-08-20T18:24:26Z,108,128,2005-08-21T21:19:26Z,2,2020-02-15T06:59:46Z +13965,2006-02-14T15:16:03Z,670,324,,2,2020-02-15T06:59:46Z +13966,2005-08-20T18:28:28Z,4520,260,2005-08-22T16:49:28Z,2,2020-02-15T06:59:46Z +13967,2005-08-20T18:28:46Z,2751,459,2005-08-26T17:37:46Z,2,2020-02-15T06:59:46Z +13968,2006-02-14T15:16:03Z,3715,15,,2,2020-02-15T06:59:46Z +13969,2005-08-20T18:42:40Z,1836,237,2005-08-27T17:33:40Z,2,2020-02-15T06:59:46Z +13970,2005-08-20T18:43:34Z,1942,418,2005-08-22T15:17:34Z,2,2020-02-15T06:59:46Z +13971,2005-08-20T18:44:53Z,1678,64,2005-08-22T16:25:53Z,2,2020-02-15T06:59:46Z +13972,2005-08-20T18:52:17Z,1687,553,2005-08-28T15:19:17Z,1,2020-02-15T06:59:46Z +13973,2005-08-20T18:52:43Z,1181,58,2005-08-21T19:11:43Z,1,2020-02-15T06:59:46Z +13974,2005-08-20T18:54:59Z,1912,479,2005-08-28T13:02:59Z,1,2020-02-15T06:59:46Z +13975,2005-08-20T18:58:23Z,3821,286,2005-08-25T20:58:23Z,1,2020-02-15T06:59:46Z +13976,2005-08-20T19:02:16Z,1785,278,2005-08-25T17:58:16Z,2,2020-02-15T06:59:46Z +13977,2005-08-20T19:02:34Z,1126,115,2005-08-24T14:14:34Z,1,2020-02-15T06:59:46Z +13978,2005-08-20T19:03:25Z,1263,260,2005-08-27T18:02:25Z,2,2020-02-15T06:59:46Z +13979,2005-08-20T19:03:49Z,2998,211,2005-08-24T21:23:49Z,1,2020-02-15T06:59:46Z +13980,2005-08-20T19:04:40Z,1067,391,2005-08-21T18:36:40Z,2,2020-02-15T06:59:46Z +13981,2005-08-20T19:07:20Z,3342,249,2005-08-23T15:13:20Z,1,2020-02-15T06:59:46Z +13982,2005-08-20T19:08:25Z,2901,448,2005-08-28T15:59:25Z,2,2020-02-15T06:59:46Z +13983,2005-08-20T19:08:32Z,457,231,2005-08-29T23:45:32Z,1,2020-02-15T06:59:46Z +13984,2005-08-20T19:12:30Z,2183,473,2005-08-29T22:04:30Z,1,2020-02-15T06:59:46Z +13985,2005-08-20T19:13:06Z,1081,339,2005-08-24T21:24:06Z,2,2020-02-15T06:59:46Z +13986,2005-08-20T19:13:23Z,3701,152,2005-08-22T20:59:23Z,2,2020-02-15T06:59:46Z +13987,2005-08-20T19:19:30Z,1443,246,2005-08-23T15:37:30Z,2,2020-02-15T06:59:46Z +13988,2005-08-20T19:21:28Z,3567,466,2005-08-21T22:20:28Z,2,2020-02-15T06:59:46Z +13989,2005-08-20T19:27:50Z,1470,252,2005-08-28T15:17:50Z,2,2020-02-15T06:59:46Z +13990,2005-08-20T19:29:23Z,2272,481,2005-08-25T18:50:23Z,2,2020-02-15T06:59:46Z +13991,2005-08-20T19:29:44Z,1971,296,2005-08-24T21:10:44Z,1,2020-02-15T06:59:46Z +13992,2005-08-20T19:30:35Z,2798,136,2005-08-24T19:09:35Z,2,2020-02-15T06:59:46Z +13993,2005-08-20T19:32:29Z,1158,93,2005-08-26T16:59:29Z,2,2020-02-15T06:59:46Z +13994,2005-08-20T19:33:21Z,142,180,2005-08-24T20:55:21Z,1,2020-02-15T06:59:46Z +13995,2005-08-20T19:34:43Z,3789,381,2005-08-25T22:25:43Z,2,2020-02-15T06:59:46Z +13996,2005-08-20T19:45:43Z,3341,306,2005-08-22T16:47:43Z,2,2020-02-15T06:59:46Z +13997,2005-08-20T19:51:28Z,2330,175,2005-08-26T01:29:28Z,2,2020-02-15T06:59:46Z +13998,2005-08-20T19:52:38Z,3936,530,2005-08-26T14:57:38Z,1,2020-02-15T06:59:46Z +13999,2005-08-20T19:53:32Z,4149,239,2005-08-26T19:01:32Z,1,2020-02-15T06:59:46Z +14000,2005-08-20T20:06:05Z,3907,276,2005-08-28T17:02:05Z,1,2020-02-15T06:59:46Z +14001,2005-08-20T20:07:15Z,1318,120,2005-08-27T00:50:15Z,2,2020-02-15T06:59:46Z +14002,2005-08-20T20:12:19Z,87,33,2005-08-23T00:23:19Z,1,2020-02-15T06:59:46Z +14003,2005-08-20T20:16:06Z,3165,256,2005-08-28T14:36:06Z,1,2020-02-15T06:59:46Z +14004,2005-08-20T20:16:35Z,3445,358,2005-08-28T17:23:35Z,2,2020-02-15T06:59:46Z +14005,2005-08-20T20:19:05Z,1415,135,2005-08-26T01:42:05Z,2,2020-02-15T06:59:46Z +14006,2005-08-20T20:21:36Z,2189,186,2005-08-21T15:26:36Z,1,2020-02-15T06:59:46Z +14007,2005-08-20T20:22:47Z,374,284,2005-08-28T20:40:47Z,2,2020-02-15T06:59:46Z +14008,2005-08-20T20:26:00Z,2427,560,2005-08-28T17:23:00Z,2,2020-02-15T06:59:46Z +14009,2005-08-20T20:26:53Z,3004,382,2005-08-21T23:32:53Z,2,2020-02-15T06:59:46Z +14010,2005-08-20T20:29:46Z,934,537,2005-08-26T17:37:46Z,2,2020-02-15T06:59:46Z +14011,2005-08-20T20:32:56Z,1212,379,2005-08-28T21:44:56Z,1,2020-02-15T06:59:46Z +14012,2005-08-20T20:42:12Z,1866,274,2005-08-23T23:10:12Z,2,2020-02-15T06:59:46Z +14013,2005-08-20T20:42:50Z,3941,496,2005-08-25T21:37:50Z,2,2020-02-15T06:59:46Z +14014,2005-08-20T20:47:09Z,2188,335,2005-08-21T22:08:09Z,2,2020-02-15T06:59:46Z +14015,2005-08-20T20:47:43Z,3145,554,2005-08-26T19:37:43Z,1,2020-02-15T06:59:46Z +14016,2005-08-20T20:52:03Z,509,220,2005-08-23T18:04:03Z,2,2020-02-15T06:59:46Z +14017,2005-08-20T20:55:32Z,920,230,2005-08-23T16:12:32Z,1,2020-02-15T06:59:46Z +14018,2006-02-14T15:16:03Z,2136,533,,2,2020-02-15T06:59:46Z +14019,2005-08-20T20:59:15Z,1929,202,2005-08-28T17:29:15Z,2,2020-02-15T06:59:46Z +14020,2005-08-20T20:59:43Z,2257,72,2005-08-23T17:11:43Z,2,2020-02-15T06:59:46Z +14021,2005-08-20T21:02:12Z,4394,147,2005-08-27T22:15:12Z,1,2020-02-15T06:59:46Z +14022,2005-08-20T21:08:49Z,4068,170,2005-08-29T21:57:49Z,1,2020-02-15T06:59:46Z +14023,2005-08-20T21:10:32Z,2668,304,2005-08-23T20:57:32Z,1,2020-02-15T06:59:46Z +14024,2005-08-20T21:13:58Z,1492,87,2005-08-29T23:02:58Z,1,2020-02-15T06:59:46Z +14025,2005-08-20T21:19:36Z,4521,37,2005-08-29T23:39:36Z,1,2020-02-15T06:59:46Z +14026,2005-08-20T21:21:08Z,115,231,2005-08-22T23:19:08Z,2,2020-02-15T06:59:46Z +14027,2005-08-20T21:21:34Z,284,432,2005-08-28T17:46:34Z,1,2020-02-15T06:59:46Z +14028,2005-08-20T21:23:03Z,4061,158,2005-08-25T17:29:03Z,2,2020-02-15T06:59:46Z +14029,2005-08-20T21:23:11Z,2653,219,2005-08-22T18:01:11Z,2,2020-02-15T06:59:46Z +14030,2005-08-20T21:23:54Z,1027,127,2005-08-27T01:19:54Z,1,2020-02-15T06:59:46Z +14031,2005-08-20T21:24:24Z,440,361,2005-08-23T21:47:24Z,2,2020-02-15T06:59:46Z +14032,2005-08-20T21:26:55Z,3542,317,2005-08-26T19:19:55Z,1,2020-02-15T06:59:46Z +14033,2005-08-20T21:30:53Z,525,243,2005-08-23T01:45:53Z,2,2020-02-15T06:59:46Z +14034,2005-08-20T21:31:52Z,3484,200,2005-08-29T00:13:52Z,1,2020-02-15T06:59:46Z +14035,2005-08-20T21:31:58Z,2035,260,2005-08-22T16:28:58Z,1,2020-02-15T06:59:46Z +14036,2005-08-20T21:35:27Z,202,256,2005-08-23T03:29:27Z,1,2020-02-15T06:59:46Z +14037,2005-08-20T21:35:58Z,3655,372,2005-08-29T23:06:58Z,2,2020-02-15T06:59:46Z +14038,2005-08-20T21:39:23Z,1069,589,2005-08-27T23:57:23Z,2,2020-02-15T06:59:46Z +14039,2005-08-20T21:39:43Z,4187,383,2005-08-24T19:03:43Z,1,2020-02-15T06:59:46Z +14040,2005-08-20T21:43:44Z,905,17,2005-08-25T16:30:44Z,1,2020-02-15T06:59:46Z +14041,2005-08-20T21:45:23Z,52,247,2005-08-26T01:42:23Z,1,2020-02-15T06:59:46Z +14042,2005-08-20T21:45:51Z,505,322,2005-08-23T19:57:51Z,2,2020-02-15T06:59:46Z +14043,2005-08-20T21:46:43Z,1485,586,2005-08-21T18:27:43Z,2,2020-02-15T06:59:46Z +14044,2005-08-20T21:48:38Z,1422,145,2005-08-29T02:56:38Z,1,2020-02-15T06:59:46Z +14045,2005-08-20T21:50:11Z,3010,509,2005-08-25T19:03:11Z,2,2020-02-15T06:59:46Z +14046,2005-08-20T21:53:21Z,2352,524,2005-08-23T17:51:21Z,2,2020-02-15T06:59:46Z +14047,2005-08-20T22:00:43Z,186,579,2005-08-24T03:17:43Z,2,2020-02-15T06:59:46Z +14048,2005-08-20T22:03:18Z,3475,105,2005-08-25T02:57:18Z,2,2020-02-15T06:59:46Z +14049,2005-08-20T22:08:55Z,1335,112,2005-08-28T20:24:55Z,1,2020-02-15T06:59:46Z +14050,2005-08-20T22:09:04Z,1737,596,2005-08-26T01:39:04Z,2,2020-02-15T06:59:46Z +14051,2005-08-20T22:09:51Z,4012,362,2005-08-29T04:04:51Z,2,2020-02-15T06:59:46Z +14052,2005-08-20T22:11:46Z,3893,514,2005-08-22T20:26:46Z,2,2020-02-15T06:59:46Z +14053,2005-08-20T22:13:59Z,2177,5,2005-08-26T20:50:59Z,2,2020-02-15T06:59:46Z +14054,2005-08-20T22:17:01Z,338,50,2005-08-21T21:34:01Z,1,2020-02-15T06:59:46Z +14055,2005-08-20T22:18:00Z,1571,148,2005-08-22T02:09:00Z,2,2020-02-15T06:59:46Z +14056,2005-08-20T22:18:53Z,1300,22,2005-08-27T01:05:53Z,2,2020-02-15T06:59:46Z +14057,2005-08-20T22:22:59Z,1526,333,2005-08-25T16:58:59Z,2,2020-02-15T06:59:46Z +14058,2005-08-20T22:24:35Z,178,430,2005-08-30T02:26:35Z,1,2020-02-15T06:59:46Z +14059,2005-08-20T22:24:44Z,2045,141,2005-08-26T21:25:44Z,2,2020-02-15T06:59:46Z +14060,2006-02-14T15:16:03Z,3100,175,,2,2020-02-15T06:59:46Z +14061,2005-08-20T22:32:11Z,73,53,2005-08-22T19:28:11Z,1,2020-02-15T06:59:46Z +14062,2005-08-20T22:34:34Z,2841,239,2005-08-25T17:11:34Z,2,2020-02-15T06:59:46Z +14063,2005-08-20T22:36:40Z,1215,275,2005-08-25T00:18:40Z,2,2020-02-15T06:59:46Z +14064,2005-08-20T22:39:16Z,2938,103,2005-08-22T00:45:16Z,2,2020-02-15T06:59:46Z +14065,2005-08-20T22:40:47Z,3758,190,2005-08-24T01:47:47Z,1,2020-02-15T06:59:46Z +14066,2005-08-20T22:45:58Z,2444,274,2005-08-29T00:23:58Z,2,2020-02-15T06:59:46Z +14067,2005-08-20T22:49:23Z,1376,259,2005-08-29T22:28:23Z,2,2020-02-15T06:59:46Z +14068,2005-08-20T22:50:59Z,818,412,2005-08-29T00:45:59Z,1,2020-02-15T06:59:46Z +14069,2005-08-20T22:51:25Z,2239,197,2005-08-30T00:30:25Z,2,2020-02-15T06:59:46Z +14070,2005-08-20T22:56:34Z,846,581,2005-08-29T22:02:34Z,1,2020-02-15T06:59:46Z +14071,2005-08-20T23:01:56Z,2471,550,2005-08-22T02:14:56Z,1,2020-02-15T06:59:46Z +14072,2005-08-20T23:07:10Z,2387,515,2005-08-23T03:38:10Z,2,2020-02-15T06:59:46Z +14073,2005-08-20T23:12:57Z,2996,230,2005-08-28T18:47:57Z,2,2020-02-15T06:59:46Z +14074,2005-08-20T23:16:07Z,1303,506,2005-08-26T04:45:07Z,1,2020-02-15T06:59:46Z +14075,2005-08-20T23:18:54Z,3793,32,2005-08-26T21:59:54Z,2,2020-02-15T06:59:46Z +14076,2005-08-20T23:20:10Z,1070,574,2005-08-24T04:00:10Z,1,2020-02-15T06:59:46Z +14077,2005-08-20T23:24:07Z,3184,21,2005-08-29T02:53:07Z,1,2020-02-15T06:59:46Z +14078,2005-08-20T23:26:40Z,1642,396,2005-08-28T02:30:40Z,1,2020-02-15T06:59:46Z +14079,2005-08-20T23:29:25Z,3528,348,2005-08-25T04:16:25Z,2,2020-02-15T06:59:46Z +14080,2005-08-20T23:29:50Z,3962,266,2005-08-26T00:33:50Z,1,2020-02-15T06:59:46Z +14081,2005-08-20T23:35:13Z,589,392,2005-08-28T01:41:13Z,2,2020-02-15T06:59:46Z +14082,2005-08-20T23:42:00Z,3767,179,2005-08-27T00:59:00Z,1,2020-02-15T06:59:46Z +14083,2005-08-20T23:42:31Z,1823,176,2005-08-28T21:44:31Z,1,2020-02-15T06:59:46Z +14084,2005-08-20T23:42:46Z,900,37,2005-08-24T20:06:46Z,1,2020-02-15T06:59:46Z +14085,2005-08-20T23:46:24Z,3506,471,2005-08-29T02:31:24Z,2,2020-02-15T06:59:46Z +14086,2005-08-20T23:47:54Z,3244,253,2005-08-27T22:49:54Z,1,2020-02-15T06:59:46Z +14087,2005-08-20T23:53:40Z,2368,289,2005-08-26T20:22:40Z,1,2020-02-15T06:59:46Z +14088,2005-08-20T23:57:24Z,1184,518,2005-08-28T21:49:24Z,1,2020-02-15T06:59:46Z +14089,2005-08-20T23:59:02Z,1400,425,2005-08-27T00:19:02Z,1,2020-02-15T06:59:46Z +14090,2005-08-21T00:11:16Z,3254,168,2005-08-23T19:48:16Z,2,2020-02-15T06:59:46Z +14091,2005-08-21T00:11:17Z,3304,53,2005-08-27T18:38:17Z,1,2020-02-15T06:59:46Z +14092,2005-08-21T00:14:32Z,1596,273,2005-08-24T22:22:32Z,2,2020-02-15T06:59:46Z +14093,2005-08-21T00:21:29Z,1176,177,2005-08-22T04:01:29Z,1,2020-02-15T06:59:46Z +14094,2005-08-21T00:21:35Z,3674,471,2005-08-23T05:27:35Z,2,2020-02-15T06:59:46Z +14095,2005-08-21T00:25:45Z,1550,489,2005-08-28T23:00:45Z,1,2020-02-15T06:59:46Z +14096,2005-08-21T00:27:46Z,2089,342,2005-08-22T22:53:46Z,1,2020-02-15T06:59:46Z +14097,2005-08-21T00:28:48Z,4351,88,2005-08-29T22:15:48Z,1,2020-02-15T06:59:46Z +14098,2005-08-21T00:30:32Z,6,554,,2,2020-02-15T06:59:46Z +14099,2005-08-21T00:31:03Z,2452,224,2005-08-27T03:18:03Z,2,2020-02-15T06:59:46Z +14100,2005-08-21T00:31:07Z,4295,397,2005-08-25T05:31:07Z,2,2020-02-15T06:59:46Z +14101,2005-08-21T00:33:03Z,1892,19,2005-08-24T01:59:03Z,1,2020-02-15T06:59:46Z +14102,2005-08-21T00:35:21Z,3772,584,2005-08-30T04:51:21Z,2,2020-02-15T06:59:46Z +14103,2005-08-21T00:37:00Z,1438,409,2005-08-25T22:09:00Z,2,2020-02-15T06:59:46Z +14104,2005-08-21T00:37:44Z,912,178,2005-08-21T22:55:44Z,2,2020-02-15T06:59:46Z +14105,2005-08-21T00:44:34Z,1111,71,2005-08-29T19:00:34Z,1,2020-02-15T06:59:46Z +14106,2005-08-21T00:46:01Z,2673,315,2005-08-27T23:44:01Z,1,2020-02-15T06:59:46Z +14107,2006-02-14T15:16:03Z,3998,251,,1,2020-02-15T06:59:46Z +14108,2005-08-21T00:52:45Z,4339,243,2005-08-21T19:35:45Z,2,2020-02-15T06:59:46Z +14109,2005-08-21T00:52:58Z,1046,180,2005-08-22T00:09:58Z,2,2020-02-15T06:59:46Z +14110,2005-08-21T00:53:09Z,2709,35,2005-08-24T05:33:09Z,2,2020-02-15T06:59:46Z +14111,2005-08-21T00:59:01Z,1294,130,2005-08-22T20:43:01Z,2,2020-02-15T06:59:46Z +14112,2005-08-21T01:00:46Z,734,141,2005-08-27T03:46:46Z,1,2020-02-15T06:59:46Z +14113,2005-08-21T01:03:30Z,931,288,2005-08-23T06:46:30Z,2,2020-02-15T06:59:46Z +14114,2005-08-21T01:07:11Z,2270,8,2005-08-24T20:33:11Z,1,2020-02-15T06:59:46Z +14115,2005-08-21T01:10:29Z,1945,257,2005-08-24T01:21:29Z,1,2020-02-15T06:59:46Z +14116,2005-08-21T01:11:17Z,2356,142,2005-08-24T23:45:17Z,2,2020-02-15T06:59:46Z +14117,2005-08-21T01:11:59Z,573,493,2005-08-22T06:56:59Z,1,2020-02-15T06:59:46Z +14118,2005-08-21T01:13:37Z,2605,337,2005-08-28T02:35:37Z,2,2020-02-15T06:59:46Z +14119,2005-08-21T01:15:59Z,129,53,2005-08-27T23:36:59Z,2,2020-02-15T06:59:46Z +14120,2005-08-21T01:25:00Z,4069,302,2005-08-24T23:21:00Z,2,2020-02-15T06:59:46Z +14121,2005-08-21T01:26:33Z,4207,417,2005-08-28T22:47:33Z,2,2020-02-15T06:59:46Z +14122,2005-08-21T01:29:01Z,3955,86,2005-08-27T05:31:01Z,1,2020-02-15T06:59:46Z +14123,2005-08-21T01:31:25Z,143,66,2005-08-23T02:32:25Z,1,2020-02-15T06:59:46Z +14124,2005-08-21T01:31:51Z,311,35,2005-08-24T22:20:51Z,2,2020-02-15T06:59:46Z +14125,2005-08-21T01:32:16Z,2174,265,2005-08-26T00:09:16Z,1,2020-02-15T06:59:46Z +14126,2005-08-21T01:32:17Z,2738,215,2005-08-23T01:02:17Z,1,2020-02-15T06:59:46Z +14127,2005-08-21T01:33:32Z,4532,550,2005-08-22T02:47:32Z,2,2020-02-15T06:59:46Z +14128,2005-08-21T01:35:58Z,2594,81,2005-08-21T21:23:58Z,2,2020-02-15T06:59:46Z +14129,2005-08-21T01:42:15Z,3572,362,2005-08-23T20:04:15Z,2,2020-02-15T06:59:46Z +14130,2005-08-21T01:43:11Z,3859,352,2005-08-27T21:16:11Z,2,2020-02-15T06:59:46Z +14131,2005-08-21T01:43:40Z,4382,267,2005-08-29T02:00:40Z,2,2020-02-15T06:59:46Z +14132,2005-08-21T01:43:58Z,3806,91,2005-08-26T20:16:58Z,2,2020-02-15T06:59:46Z +14133,2005-08-21T01:44:14Z,2463,453,2005-08-30T02:19:14Z,2,2020-02-15T06:59:46Z +14134,2005-08-21T01:45:54Z,2159,497,2005-08-24T01:36:54Z,1,2020-02-15T06:59:46Z +14135,2005-08-21T01:53:54Z,347,59,2005-08-27T05:57:54Z,1,2020-02-15T06:59:46Z +14136,2005-08-21T01:57:26Z,268,135,2005-08-28T01:11:26Z,1,2020-02-15T06:59:46Z +14137,2006-02-14T15:16:03Z,2346,53,,2,2020-02-15T06:59:46Z +14138,2005-08-21T01:59:37Z,1238,121,2005-08-30T01:17:37Z,2,2020-02-15T06:59:46Z +14139,2005-08-21T02:04:33Z,2280,561,2005-08-22T04:16:33Z,2,2020-02-15T06:59:46Z +14140,2005-08-21T02:04:57Z,2070,65,2005-08-29T06:41:57Z,2,2020-02-15T06:59:46Z +14141,2005-08-21T02:07:22Z,4527,190,2005-08-30T07:32:22Z,1,2020-02-15T06:59:46Z +14142,2005-08-21T02:07:43Z,1479,544,2005-08-23T02:37:43Z,2,2020-02-15T06:59:46Z +14143,2005-08-21T02:10:32Z,2549,146,2005-08-23T23:50:32Z,1,2020-02-15T06:59:46Z +14144,2005-08-21T02:10:57Z,2366,46,2005-08-28T01:02:57Z,1,2020-02-15T06:59:46Z +14145,2005-08-21T02:11:38Z,150,314,2005-08-22T22:19:38Z,2,2020-02-15T06:59:46Z +14146,2005-08-21T02:13:31Z,2151,192,2005-08-24T22:47:31Z,2,2020-02-15T06:59:46Z +14147,2005-08-21T02:14:03Z,1476,366,2005-08-27T22:38:03Z,1,2020-02-15T06:59:46Z +14148,2005-08-21T02:17:49Z,1605,528,2005-08-22T00:12:49Z,1,2020-02-15T06:59:46Z +14149,2005-08-21T02:22:47Z,3371,518,2005-08-24T02:36:47Z,1,2020-02-15T06:59:46Z +14150,2005-08-21T02:23:03Z,2324,161,2005-08-25T22:50:03Z,2,2020-02-15T06:59:46Z +14151,2005-08-21T02:23:25Z,2785,426,2005-08-30T07:08:25Z,1,2020-02-15T06:59:46Z +14152,2005-08-21T02:23:50Z,2561,379,2005-08-25T06:05:50Z,1,2020-02-15T06:59:46Z +14153,2005-08-21T02:24:33Z,1502,120,2005-08-27T05:28:33Z,2,2020-02-15T06:59:46Z +14154,2005-08-21T02:30:00Z,951,468,2005-08-28T01:41:00Z,2,2020-02-15T06:59:46Z +14155,2005-08-21T02:31:35Z,769,148,2005-08-27T06:00:35Z,2,2020-02-15T06:59:46Z +14156,2005-08-21T02:35:16Z,437,147,2005-08-27T01:32:16Z,2,2020-02-15T06:59:46Z +14157,2005-08-21T02:43:15Z,4471,128,2005-08-24T02:47:15Z,1,2020-02-15T06:59:46Z +14158,2005-08-21T02:43:20Z,474,114,2005-08-28T02:19:20Z,1,2020-02-15T06:59:46Z +14159,2005-08-21T02:45:58Z,3231,144,2005-08-27T04:53:58Z,1,2020-02-15T06:59:46Z +14160,2006-02-14T15:16:03Z,2428,493,,2,2020-02-15T06:59:46Z +14161,2005-08-21T02:51:59Z,2744,21,2005-08-28T21:38:59Z,2,2020-02-15T06:59:46Z +14162,2005-08-21T02:55:34Z,3788,315,2005-08-27T00:13:34Z,1,2020-02-15T06:59:46Z +14163,2005-08-21T02:56:52Z,1007,204,2005-08-21T21:03:52Z,2,2020-02-15T06:59:46Z +14164,2005-08-21T02:58:02Z,2381,274,2005-08-29T23:17:02Z,2,2020-02-15T06:59:46Z +14165,2005-08-21T02:59:17Z,4151,150,2005-08-24T23:09:17Z,2,2020-02-15T06:59:46Z +14166,2005-08-21T02:59:31Z,2457,190,2005-08-24T23:19:31Z,2,2020-02-15T06:59:46Z +14167,2005-08-21T02:59:48Z,1005,64,2005-08-29T22:17:48Z,1,2020-02-15T06:59:46Z +14168,2005-08-21T03:00:03Z,1321,49,2005-08-29T06:04:03Z,2,2020-02-15T06:59:46Z +14169,2005-08-21T03:00:31Z,3800,396,2005-08-30T01:16:31Z,1,2020-02-15T06:59:46Z +14170,2005-08-21T03:00:39Z,894,259,2005-08-27T23:07:39Z,1,2020-02-15T06:59:46Z +14171,2005-08-21T03:00:42Z,4179,320,2005-08-24T00:54:42Z,1,2020-02-15T06:59:46Z +14172,2006-02-14T15:16:03Z,2158,450,,2,2020-02-15T06:59:46Z +14173,2005-08-21T03:01:01Z,3175,152,2005-08-22T02:40:01Z,1,2020-02-15T06:59:46Z +14174,2005-08-21T03:01:45Z,1862,29,2005-08-22T07:19:45Z,2,2020-02-15T06:59:46Z +14175,2006-02-14T15:16:03Z,2021,452,,1,2020-02-15T06:59:46Z +14176,2005-08-21T03:09:23Z,4420,556,2005-08-26T21:26:23Z,1,2020-02-15T06:59:46Z +14177,2005-08-21T03:11:33Z,409,121,2005-08-28T21:41:33Z,2,2020-02-15T06:59:46Z +14178,2005-08-21T03:13:45Z,2178,524,2005-08-22T01:50:45Z,1,2020-02-15T06:59:46Z +14179,2005-08-21T03:14:27Z,3956,79,2005-08-26T00:46:27Z,2,2020-02-15T06:59:46Z +14180,2005-08-21T03:16:15Z,796,262,2005-08-24T22:31:15Z,2,2020-02-15T06:59:46Z +14181,2005-08-21T03:16:30Z,197,210,2005-08-29T06:25:30Z,2,2020-02-15T06:59:46Z +14182,2005-08-21T03:17:10Z,2422,519,2005-08-24T21:46:10Z,1,2020-02-15T06:59:46Z +14183,2005-08-21T03:24:29Z,1888,26,2005-08-22T07:25:29Z,2,2020-02-15T06:59:46Z +14184,2005-08-21T03:24:50Z,3759,148,2005-08-29T01:46:50Z,2,2020-02-15T06:59:46Z +14185,2005-08-21T03:28:37Z,3957,579,2005-08-26T01:15:37Z,1,2020-02-15T06:59:46Z +14186,2005-08-21T03:31:07Z,3158,461,2005-08-28T07:29:07Z,2,2020-02-15T06:59:46Z +14187,2005-08-21T03:32:03Z,4031,275,2005-08-25T03:29:03Z,2,2020-02-15T06:59:46Z +14188,2005-08-21T03:32:04Z,4492,548,2005-08-22T07:26:04Z,1,2020-02-15T06:59:46Z +14189,2005-08-21T03:32:17Z,2209,127,2005-08-22T04:46:17Z,2,2020-02-15T06:59:46Z +14190,2005-08-21T03:35:21Z,4203,517,2005-08-29T07:35:21Z,2,2020-02-15T06:59:46Z +14191,2005-08-21T03:35:58Z,301,423,2005-08-28T00:28:58Z,1,2020-02-15T06:59:46Z +14192,2005-08-21T03:37:42Z,3563,26,2005-08-28T05:31:42Z,2,2020-02-15T06:59:46Z +14193,2005-08-21T03:38:27Z,513,25,2005-08-28T09:16:27Z,1,2020-02-15T06:59:46Z +14194,2005-08-21T03:40:11Z,2003,138,2005-08-26T07:38:11Z,1,2020-02-15T06:59:46Z +14195,2005-08-21T03:40:35Z,3732,93,2005-08-23T01:22:35Z,1,2020-02-15T06:59:46Z +14196,2005-08-21T03:40:40Z,4477,281,2005-08-25T05:55:40Z,1,2020-02-15T06:59:46Z +14197,2005-08-21T03:47:25Z,340,469,2005-08-30T09:15:25Z,2,2020-02-15T06:59:46Z +14198,2005-08-21T03:48:31Z,465,381,2005-08-24T07:10:31Z,2,2020-02-15T06:59:46Z +14199,2005-08-21T03:48:43Z,658,442,2005-08-23T04:01:43Z,1,2020-02-15T06:59:46Z +14200,2005-08-21T03:51:27Z,2339,349,2005-08-29T22:00:27Z,1,2020-02-15T06:59:46Z +14201,2005-08-21T03:51:34Z,314,427,2005-08-30T03:42:34Z,2,2020-02-15T06:59:46Z +14202,2005-08-21T03:51:52Z,1995,473,2005-08-22T09:35:52Z,1,2020-02-15T06:59:46Z +14203,2005-08-21T03:51:52Z,3668,95,2005-08-24T06:13:52Z,2,2020-02-15T06:59:46Z +14204,2006-02-14T15:16:03Z,4334,287,,1,2020-02-15T06:59:46Z +14205,2005-08-21T03:57:15Z,315,406,2005-08-30T08:46:15Z,2,2020-02-15T06:59:46Z +14206,2005-08-21T03:59:26Z,860,279,2005-08-26T03:52:26Z,1,2020-02-15T06:59:46Z +14207,2005-08-21T04:08:19Z,1327,569,2005-08-29T07:59:19Z,2,2020-02-15T06:59:46Z +14208,2005-08-21T04:09:18Z,4180,299,2005-08-22T03:29:18Z,1,2020-02-15T06:59:46Z +14209,2005-08-21T04:17:56Z,896,472,2005-08-27T06:57:56Z,1,2020-02-15T06:59:46Z +14210,2005-08-21T04:28:02Z,1867,468,2005-08-24T02:14:02Z,2,2020-02-15T06:59:46Z +14211,2005-08-21T04:29:11Z,300,372,2005-08-24T02:50:11Z,2,2020-02-15T06:59:46Z +14212,2005-08-21T04:29:26Z,4540,354,2005-08-24T00:46:26Z,2,2020-02-15T06:59:46Z +14213,2005-08-21T04:30:47Z,382,511,2005-08-24T23:01:47Z,1,2020-02-15T06:59:46Z +14214,2005-08-21T04:30:49Z,4510,198,2005-08-26T04:42:49Z,1,2020-02-15T06:59:46Z +14215,2005-08-21T04:34:11Z,35,54,2005-08-27T10:30:11Z,2,2020-02-15T06:59:46Z +14216,2006-02-14T15:16:03Z,3763,186,,1,2020-02-15T06:59:46Z +14217,2005-08-21T04:37:56Z,2847,66,2005-08-26T03:55:56Z,2,2020-02-15T06:59:46Z +14218,2005-08-21T04:43:59Z,4087,104,2005-08-27T10:29:59Z,1,2020-02-15T06:59:46Z +14219,2006-02-14T15:16:03Z,3718,334,,2,2020-02-15T06:59:46Z +14220,2006-02-14T15:16:03Z,2618,162,,1,2020-02-15T06:59:46Z +14221,2005-08-21T04:49:41Z,3824,51,2005-08-29T23:52:41Z,1,2020-02-15T06:59:46Z +14222,2005-08-21T04:49:48Z,714,7,2005-08-25T05:34:48Z,2,2020-02-15T06:59:46Z +14223,2005-08-21T04:51:51Z,514,392,2005-08-29T00:37:51Z,1,2020-02-15T06:59:46Z +14224,2005-08-21T04:53:08Z,3634,323,2005-08-27T04:12:08Z,2,2020-02-15T06:59:46Z +14225,2005-08-21T04:53:37Z,984,4,2005-08-25T23:39:37Z,2,2020-02-15T06:59:46Z +14226,2005-08-21T04:55:37Z,1793,316,2005-08-24T04:32:37Z,1,2020-02-15T06:59:46Z +14227,2005-08-21T04:56:31Z,4102,277,2005-08-22T05:04:31Z,2,2020-02-15T06:59:46Z +14228,2005-08-21T04:57:08Z,2016,71,2005-08-25T00:06:08Z,2,2020-02-15T06:59:46Z +14229,2005-08-21T04:57:15Z,4479,186,2005-08-26T10:00:15Z,1,2020-02-15T06:59:46Z +14230,2005-08-21T04:57:29Z,844,584,2005-08-27T08:14:29Z,2,2020-02-15T06:59:46Z +14231,2005-08-21T05:04:34Z,1244,307,2005-08-23T04:58:34Z,1,2020-02-15T06:59:46Z +14232,2005-08-21T05:07:02Z,2710,176,2005-08-29T06:57:02Z,1,2020-02-15T06:59:46Z +14233,2005-08-21T05:07:08Z,2943,599,2005-08-28T03:20:08Z,1,2020-02-15T06:59:46Z +14234,2005-08-21T05:07:12Z,1439,271,2005-08-23T06:44:12Z,2,2020-02-15T06:59:46Z +14235,2005-08-21T05:08:42Z,125,558,2005-08-29T23:36:42Z,1,2020-02-15T06:59:46Z +14236,2005-08-21T05:13:16Z,172,25,2005-08-26T04:03:16Z,2,2020-02-15T06:59:46Z +14237,2005-08-21T05:15:00Z,3284,410,2005-08-25T10:06:00Z,1,2020-02-15T06:59:46Z +14238,2005-08-21T05:16:40Z,3148,192,2005-08-30T02:13:40Z,2,2020-02-15T06:59:46Z +14239,2005-08-21T05:18:57Z,1559,416,2005-08-22T00:12:57Z,2,2020-02-15T06:59:46Z +14240,2005-08-21T05:19:39Z,3294,12,2005-08-22T23:25:39Z,2,2020-02-15T06:59:46Z +14241,2005-08-21T05:24:55Z,2547,291,2005-08-30T03:33:55Z,1,2020-02-15T06:59:46Z +14242,2005-08-21T05:25:59Z,1588,68,2005-08-27T07:22:59Z,1,2020-02-15T06:59:46Z +14243,2006-02-14T15:16:03Z,1489,264,,1,2020-02-15T06:59:46Z +14244,2005-08-21T05:29:55Z,1150,43,2005-08-24T01:06:55Z,1,2020-02-15T06:59:46Z +14245,2005-08-21T05:30:54Z,975,354,2005-08-26T07:02:54Z,1,2020-02-15T06:59:46Z +14246,2005-08-21T05:34:09Z,3499,120,2005-08-26T06:12:09Z,1,2020-02-15T06:59:46Z +14247,2005-08-21T05:35:17Z,267,302,2005-08-26T03:22:17Z,1,2020-02-15T06:59:46Z +14248,2005-08-21T05:35:57Z,725,293,2005-08-28T05:53:57Z,2,2020-02-15T06:59:46Z +14249,2005-08-21T05:38:05Z,695,268,2005-08-28T09:07:05Z,2,2020-02-15T06:59:46Z +14250,2005-08-21T05:39:35Z,3008,313,2005-08-28T10:06:35Z,2,2020-02-15T06:59:46Z +14251,2005-08-21T05:42:20Z,139,486,2005-08-26T06:20:20Z,2,2020-02-15T06:59:46Z +14252,2005-08-21T05:44:07Z,2660,13,2005-08-29T08:53:07Z,1,2020-02-15T06:59:46Z +14253,2005-08-21T05:47:52Z,4246,456,2005-08-25T04:28:52Z,1,2020-02-15T06:59:46Z +14254,2005-08-21T05:51:28Z,1549,589,2005-08-29T06:05:28Z,2,2020-02-15T06:59:46Z +14255,2005-08-21T05:51:37Z,3125,492,2005-08-29T10:00:37Z,1,2020-02-15T06:59:46Z +14256,2005-08-21T05:52:27Z,2922,331,2005-08-29T02:10:27Z,2,2020-02-15T06:59:46Z +14257,2005-08-21T05:52:57Z,3830,178,2005-08-29T03:18:57Z,2,2020-02-15T06:59:46Z +14258,2005-08-21T05:56:36Z,752,359,2005-08-26T06:14:36Z,1,2020-02-15T06:59:46Z +14259,2005-08-21T06:00:22Z,3705,583,2005-08-22T05:38:22Z,2,2020-02-15T06:59:46Z +14260,2005-08-21T06:01:08Z,2961,40,2005-08-29T09:01:08Z,2,2020-02-15T06:59:46Z +14261,2005-08-21T06:07:24Z,1426,166,2005-08-26T09:57:24Z,1,2020-02-15T06:59:46Z +14262,2005-08-21T06:08:13Z,1430,324,2005-08-30T10:55:13Z,1,2020-02-15T06:59:46Z +14263,2005-08-21T06:08:15Z,2595,533,2005-08-29T09:22:15Z,2,2020-02-15T06:59:46Z +14264,2005-08-21T06:18:22Z,3426,295,2005-08-25T08:08:22Z,1,2020-02-15T06:59:46Z +14265,2005-08-21T06:20:14Z,3116,134,2005-08-23T09:05:14Z,1,2020-02-15T06:59:46Z +14266,2005-08-21T06:20:51Z,3543,269,2005-08-23T00:44:51Z,1,2020-02-15T06:59:46Z +14267,2006-02-14T15:16:03Z,2199,527,,2,2020-02-15T06:59:46Z +14268,2005-08-21T06:21:24Z,2442,278,2005-08-23T05:39:24Z,2,2020-02-15T06:59:46Z +14269,2005-08-21T06:22:07Z,531,241,2005-08-30T00:41:07Z,2,2020-02-15T06:59:46Z +14270,2005-08-21T06:22:18Z,4083,171,2005-08-27T08:04:18Z,1,2020-02-15T06:59:46Z +14271,2005-08-21T06:23:29Z,4506,224,2005-08-27T04:49:29Z,1,2020-02-15T06:59:46Z +14272,2005-08-21T06:24:55Z,3908,243,2005-08-28T02:25:55Z,1,2020-02-15T06:59:46Z +14273,2005-08-21T06:26:48Z,2640,388,2005-08-30T10:34:48Z,1,2020-02-15T06:59:46Z +14274,2005-08-21T06:29:20Z,3183,405,2005-08-26T06:25:20Z,2,2020-02-15T06:59:46Z +14275,2005-08-21T06:30:30Z,3238,163,2005-08-25T12:28:30Z,1,2020-02-15T06:59:46Z +14276,2005-08-21T06:34:05Z,3637,318,2005-08-28T10:13:05Z,2,2020-02-15T06:59:46Z +14277,2005-08-21T06:34:41Z,2652,566,2005-08-28T10:53:41Z,2,2020-02-15T06:59:46Z +14278,2006-02-14T15:16:03Z,2334,557,,2,2020-02-15T06:59:46Z +14279,2005-08-21T06:39:08Z,3325,387,2005-08-29T11:01:08Z,2,2020-02-15T06:59:46Z +14280,2005-08-21T06:39:58Z,1561,481,2005-08-23T04:50:58Z,1,2020-02-15T06:59:46Z +14281,2005-08-21T06:40:48Z,1848,166,2005-08-26T11:42:48Z,2,2020-02-15T06:59:46Z +14282,2005-08-21T06:41:29Z,3107,450,2005-08-22T12:37:29Z,1,2020-02-15T06:59:46Z +14283,2005-08-21T06:44:14Z,3052,253,2005-08-24T01:01:14Z,1,2020-02-15T06:59:46Z +14284,2005-08-21T06:44:37Z,633,486,2005-08-28T05:03:37Z,1,2020-02-15T06:59:46Z +14285,2005-08-21T06:50:48Z,402,249,2005-08-28T11:35:48Z,1,2020-02-15T06:59:46Z +14286,2005-08-21T06:53:53Z,2377,558,2005-08-27T11:37:53Z,2,2020-02-15T06:59:46Z +14287,2005-08-21T06:53:59Z,2426,427,2005-08-25T03:10:59Z,2,2020-02-15T06:59:46Z +14288,2005-08-21T06:57:34Z,587,512,2005-08-26T11:32:34Z,1,2020-02-15T06:59:46Z +14289,2005-08-21T06:58:49Z,1185,103,2005-08-25T11:29:49Z,2,2020-02-15T06:59:46Z +14290,2005-08-21T07:02:59Z,790,366,2005-08-28T02:57:59Z,1,2020-02-15T06:59:46Z +14291,2005-08-21T07:03:05Z,3988,56,2005-08-26T12:56:05Z,2,2020-02-15T06:59:46Z +14292,2005-08-21T07:06:20Z,1959,251,2005-08-22T01:39:20Z,2,2020-02-15T06:59:46Z +14293,2005-08-21T07:06:47Z,3555,364,2005-08-22T05:07:47Z,2,2020-02-15T06:59:46Z +14294,2005-08-21T07:07:26Z,354,455,2005-08-22T02:20:26Z,2,2020-02-15T06:59:46Z +14295,2005-08-21T07:09:27Z,2187,336,2005-08-22T01:27:27Z,2,2020-02-15T06:59:46Z +14296,2005-08-21T07:13:23Z,3813,275,2005-08-26T11:14:23Z,1,2020-02-15T06:59:46Z +14297,2005-08-21T07:13:46Z,1712,566,2005-08-25T09:07:46Z,1,2020-02-15T06:59:46Z +14298,2005-08-21T07:17:10Z,4317,410,2005-08-25T10:10:10Z,1,2020-02-15T06:59:46Z +14299,2005-08-21T07:18:57Z,4028,342,2005-08-24T01:28:57Z,1,2020-02-15T06:59:46Z +14300,2005-08-21T07:19:37Z,690,382,2005-08-25T12:06:37Z,2,2020-02-15T06:59:46Z +14301,2005-08-21T07:19:48Z,283,162,2005-08-28T02:06:48Z,1,2020-02-15T06:59:46Z +14302,2005-08-21T07:19:57Z,1287,511,2005-08-28T02:59:57Z,1,2020-02-15T06:59:46Z +14303,2005-08-21T07:22:43Z,992,475,2005-08-24T11:52:43Z,1,2020-02-15T06:59:46Z +14304,2005-08-21T07:23:10Z,2650,417,2005-08-26T11:21:10Z,2,2020-02-15T06:59:46Z +14305,2005-08-21T07:29:05Z,2056,58,2005-08-27T08:18:05Z,1,2020-02-15T06:59:46Z +14306,2005-08-21T07:32:35Z,4027,453,2005-08-30T05:53:35Z,1,2020-02-15T06:59:46Z +14307,2005-08-21T07:34:52Z,2894,328,2005-08-29T09:45:52Z,1,2020-02-15T06:59:46Z +14308,2005-08-21T07:43:21Z,3478,419,2005-08-25T02:39:21Z,2,2020-02-15T06:59:46Z +14309,2005-08-21T07:44:17Z,4447,468,2005-08-30T07:23:17Z,2,2020-02-15T06:59:46Z +14310,2005-08-21T07:44:32Z,95,177,2005-08-22T09:02:32Z,1,2020-02-15T06:59:46Z +14311,2005-08-21T07:45:47Z,1761,69,2005-08-27T02:23:47Z,2,2020-02-15T06:59:46Z +14312,2005-08-21T07:48:34Z,1090,238,2005-08-23T04:45:34Z,1,2020-02-15T06:59:46Z +14313,2005-08-21T07:49:53Z,3384,468,2005-08-30T05:52:53Z,2,2020-02-15T06:59:46Z +14314,2005-08-21T07:50:14Z,4115,178,2005-08-24T10:47:14Z,2,2020-02-15T06:59:46Z +14315,2005-08-21T07:56:39Z,1164,459,2005-08-27T04:52:39Z,1,2020-02-15T06:59:46Z +14316,2005-08-21T07:59:47Z,386,64,2005-08-23T02:20:47Z,2,2020-02-15T06:59:46Z +14317,2005-08-21T08:00:40Z,2090,471,2005-08-27T06:52:40Z,1,2020-02-15T06:59:46Z +14318,2006-02-14T15:16:03Z,1042,508,,2,2020-02-15T06:59:46Z +14319,2005-08-21T08:00:55Z,4480,410,2005-08-26T05:04:55Z,1,2020-02-15T06:59:46Z +14320,2005-08-21T08:04:40Z,3121,199,2005-08-22T02:09:40Z,1,2020-02-15T06:59:46Z +14321,2005-08-21T08:05:12Z,967,236,2005-08-23T02:17:12Z,1,2020-02-15T06:59:46Z +14322,2005-08-21T08:06:30Z,2818,221,2005-08-29T10:12:30Z,2,2020-02-15T06:59:46Z +14323,2005-08-21T08:08:43Z,1257,97,2005-08-25T10:44:43Z,1,2020-02-15T06:59:46Z +14324,2005-08-21T08:10:56Z,1361,155,2005-08-30T12:09:56Z,1,2020-02-15T06:59:46Z +14325,2005-08-21T08:15:38Z,4432,313,2005-08-23T08:08:38Z,2,2020-02-15T06:59:46Z +14326,2005-08-21T08:15:41Z,1052,17,2005-08-27T05:22:41Z,1,2020-02-15T06:59:46Z +14327,2005-08-21T08:18:18Z,553,457,2005-08-30T02:21:18Z,2,2020-02-15T06:59:46Z +14328,2005-08-21T08:18:20Z,3194,489,2005-08-25T03:05:20Z,2,2020-02-15T06:59:46Z +14329,2005-08-21T08:22:56Z,3544,6,2005-08-28T02:22:56Z,2,2020-02-15T06:59:46Z +14330,2005-08-21T08:29:20Z,763,84,2005-08-30T03:59:20Z,2,2020-02-15T06:59:46Z +14331,2005-08-21T08:29:38Z,3128,372,2005-08-29T13:18:38Z,2,2020-02-15T06:59:46Z +14332,2005-08-21T08:30:43Z,1388,496,2005-08-29T10:51:43Z,1,2020-02-15T06:59:46Z +14333,2005-08-21T08:31:03Z,2976,93,2005-08-28T03:39:03Z,2,2020-02-15T06:59:46Z +14334,2005-08-21T08:32:32Z,1448,595,2005-08-25T02:53:32Z,2,2020-02-15T06:59:46Z +14335,2005-08-21T08:33:07Z,2610,263,2005-08-26T14:16:07Z,1,2020-02-15T06:59:46Z +14336,2005-08-21T08:33:42Z,3166,362,2005-08-23T03:27:42Z,1,2020-02-15T06:59:46Z +14337,2005-08-21T08:34:26Z,3529,506,2005-08-24T11:31:26Z,1,2020-02-15T06:59:46Z +14338,2005-08-21T08:36:03Z,1789,205,2005-08-24T12:31:03Z,2,2020-02-15T06:59:46Z +14339,2005-08-21T08:37:15Z,1744,30,2005-08-26T03:37:15Z,2,2020-02-15T06:59:46Z +14340,2005-08-21T08:38:21Z,2181,230,2005-08-25T09:25:21Z,1,2020-02-15T06:59:46Z +14341,2005-08-21T08:38:24Z,4498,560,2005-08-26T12:36:24Z,1,2020-02-15T06:59:46Z +14342,2005-08-21T08:39:26Z,2749,559,2005-08-23T11:40:26Z,2,2020-02-15T06:59:46Z +14343,2005-08-21T08:40:21Z,3769,238,2005-08-29T03:06:21Z,1,2020-02-15T06:59:46Z +14344,2005-08-21T08:40:56Z,1562,341,2005-08-27T12:40:56Z,1,2020-02-15T06:59:46Z +14345,2005-08-21T08:41:15Z,1726,598,2005-08-24T11:59:15Z,1,2020-02-15T06:59:46Z +14346,2005-08-21T08:42:26Z,109,17,2005-08-23T09:18:26Z,2,2020-02-15T06:59:46Z +14347,2005-08-21T08:42:31Z,3862,214,2005-08-25T07:11:31Z,2,2020-02-15T06:59:46Z +14348,2005-08-21T08:54:26Z,885,496,2005-08-24T02:55:26Z,2,2020-02-15T06:59:46Z +14349,2005-08-21T08:54:53Z,96,119,2005-08-30T14:27:53Z,1,2020-02-15T06:59:46Z +14350,2005-08-21T08:58:38Z,3174,222,2005-08-30T03:29:38Z,2,2020-02-15T06:59:46Z +14351,2005-08-21T09:04:20Z,2037,66,2005-08-25T05:27:20Z,1,2020-02-15T06:59:46Z +14352,2005-08-21T09:06:29Z,1224,527,2005-08-28T13:36:29Z,1,2020-02-15T06:59:46Z +14353,2005-08-21T09:07:50Z,1612,129,2005-08-22T10:31:50Z,2,2020-02-15T06:59:46Z +14354,2005-08-21T09:08:14Z,1137,382,2005-08-30T05:27:14Z,1,2020-02-15T06:59:46Z +14355,2005-08-21T09:08:29Z,649,271,2005-08-27T10:08:29Z,2,2020-02-15T06:59:46Z +14356,2005-08-21T09:08:51Z,3169,65,2005-08-24T04:36:51Z,2,2020-02-15T06:59:46Z +14357,2005-08-21T09:13:09Z,2906,233,2005-08-22T05:41:09Z,2,2020-02-15T06:59:46Z +14358,2005-08-21T09:14:28Z,861,112,2005-08-24T05:05:28Z,1,2020-02-15T06:59:46Z +14359,2005-08-21T09:16:19Z,1841,401,2005-08-22T09:28:19Z,1,2020-02-15T06:59:46Z +14360,2005-08-21T09:16:40Z,2677,246,2005-08-29T11:43:40Z,2,2020-02-15T06:59:46Z +14361,2006-02-14T15:16:03Z,1231,191,,2,2020-02-15T06:59:46Z +14362,2005-08-21T09:19:49Z,1992,312,2005-08-26T11:06:49Z,1,2020-02-15T06:59:46Z +14363,2005-08-21T09:20:03Z,2579,560,2005-08-23T14:26:03Z,1,2020-02-15T06:59:46Z +14364,2005-08-21T09:25:11Z,3513,236,2005-08-29T09:04:11Z,1,2020-02-15T06:59:46Z +14365,2005-08-21T09:25:13Z,618,457,2005-08-27T11:48:13Z,1,2020-02-15T06:59:46Z +14366,2005-08-21T09:31:39Z,4011,524,2005-08-26T11:55:39Z,2,2020-02-15T06:59:46Z +14367,2005-08-21T09:31:44Z,870,244,2005-08-26T03:54:44Z,2,2020-02-15T06:59:46Z +14368,2005-08-21T09:31:47Z,2063,351,2005-08-30T04:17:47Z,1,2020-02-15T06:59:46Z +14369,2005-08-21T09:33:44Z,1636,392,2005-08-25T08:56:44Z,1,2020-02-15T06:59:46Z +14370,2005-08-21T09:35:14Z,3520,161,2005-08-27T05:21:14Z,2,2020-02-15T06:59:46Z +14371,2005-08-21T09:37:16Z,2197,221,2005-08-27T13:50:16Z,2,2020-02-15T06:59:46Z +14372,2005-08-21T09:39:50Z,1953,520,2005-08-28T13:36:50Z,1,2020-02-15T06:59:46Z +14373,2005-08-21T09:44:53Z,4433,268,2005-08-25T15:37:53Z,1,2020-02-15T06:59:46Z +14374,2006-02-14T15:16:03Z,236,213,,2,2020-02-15T06:59:46Z +14375,2005-08-21T09:46:35Z,2507,550,2005-08-26T10:24:35Z,2,2020-02-15T06:59:46Z +14376,2005-08-21T09:48:56Z,1936,582,2005-08-22T12:15:56Z,2,2020-02-15T06:59:46Z +14377,2005-08-21T09:49:28Z,1325,6,2005-08-29T13:34:28Z,1,2020-02-15T06:59:46Z +14378,2005-08-21T09:50:02Z,810,515,2005-08-30T09:07:02Z,1,2020-02-15T06:59:46Z +14379,2005-08-21T09:53:03Z,3062,136,2005-08-24T14:32:03Z,1,2020-02-15T06:59:46Z +14380,2005-08-21T09:53:52Z,1523,198,2005-08-25T05:03:52Z,2,2020-02-15T06:59:46Z +14381,2005-08-21T09:55:47Z,811,391,2005-08-25T08:23:47Z,1,2020-02-15T06:59:46Z +14382,2005-08-21T10:01:03Z,4119,119,2005-08-22T13:21:03Z,2,2020-02-15T06:59:46Z +14383,2005-08-21T10:02:05Z,1941,482,2005-08-24T12:21:05Z,2,2020-02-15T06:59:46Z +14384,2005-08-21T10:02:37Z,2429,371,2005-08-26T08:20:37Z,1,2020-02-15T06:59:46Z +14385,2005-08-21T10:02:55Z,4356,317,2005-08-25T07:19:55Z,2,2020-02-15T06:59:46Z +14386,2005-08-21T10:06:34Z,3402,514,2005-08-25T14:19:34Z,1,2020-02-15T06:59:46Z +14387,2005-08-21T10:10:01Z,1286,295,2005-08-28T14:16:01Z,2,2020-02-15T06:59:46Z +14388,2005-08-21T10:15:13Z,1078,274,2005-08-30T13:41:13Z,2,2020-02-15T06:59:46Z +14389,2005-08-21T10:15:20Z,2718,145,2005-08-27T05:39:20Z,1,2020-02-15T06:59:46Z +14390,2005-08-21T10:15:38Z,3951,366,2005-08-28T05:50:38Z,2,2020-02-15T06:59:46Z +14391,2005-08-21T10:16:27Z,3117,205,2005-08-23T07:00:27Z,2,2020-02-15T06:59:46Z +14392,2005-08-21T10:19:25Z,847,586,2005-08-28T15:57:25Z,2,2020-02-15T06:59:46Z +14393,2005-08-21T10:22:51Z,3937,368,2005-08-29T08:28:51Z,1,2020-02-15T06:59:46Z +14394,2005-08-21T10:23:10Z,4555,118,2005-08-28T09:33:10Z,1,2020-02-15T06:59:46Z +14395,2005-08-21T10:24:00Z,632,506,2005-08-28T12:23:00Z,2,2020-02-15T06:59:46Z +14396,2005-08-21T10:24:54Z,3855,353,2005-08-22T04:49:54Z,2,2020-02-15T06:59:46Z +14397,2005-08-21T10:25:56Z,3883,47,2005-08-24T07:48:56Z,1,2020-02-15T06:59:46Z +14398,2005-08-21T10:27:21Z,357,505,2005-08-23T10:46:21Z,2,2020-02-15T06:59:46Z +14399,2005-08-21T10:33:23Z,3582,188,2005-08-27T08:00:23Z,1,2020-02-15T06:59:46Z +14400,2005-08-21T10:33:45Z,3891,569,2005-08-26T12:05:45Z,1,2020-02-15T06:59:46Z +14401,2005-08-21T10:36:20Z,3468,407,2005-08-30T06:45:20Z,1,2020-02-15T06:59:46Z +14402,2005-08-21T10:38:17Z,749,467,2005-08-27T08:36:17Z,2,2020-02-15T06:59:46Z +14403,2005-08-21T10:40:34Z,3581,297,2005-08-29T11:29:34Z,1,2020-02-15T06:59:46Z +14404,2005-08-21T10:43:04Z,3660,192,2005-08-30T10:00:04Z,1,2020-02-15T06:59:46Z +14405,2005-08-21T10:45:01Z,2777,470,2005-08-30T04:48:01Z,2,2020-02-15T06:59:46Z +14406,2005-08-21T10:46:35Z,2741,181,2005-08-28T15:55:35Z,1,2020-02-15T06:59:46Z +14407,2005-08-21T10:46:51Z,2403,500,2005-08-25T09:28:51Z,2,2020-02-15T06:59:46Z +14408,2005-08-21T10:47:24Z,222,593,2005-08-27T08:18:24Z,1,2020-02-15T06:59:46Z +14409,2005-08-21T10:53:35Z,1161,314,2005-08-25T10:40:35Z,2,2020-02-15T06:59:46Z +14410,2005-08-21T10:54:49Z,839,196,2005-08-26T08:28:49Z,2,2020-02-15T06:59:46Z +14411,2005-08-21T10:54:57Z,2125,502,2005-08-22T13:17:57Z,2,2020-02-15T06:59:46Z +14412,2005-08-21T11:02:09Z,212,121,2005-08-29T06:44:09Z,1,2020-02-15T06:59:46Z +14413,2005-08-21T11:06:33Z,50,367,2005-08-29T16:10:33Z,1,2020-02-15T06:59:46Z +14414,2005-08-21T11:08:17Z,1757,515,2005-08-23T08:37:17Z,2,2020-02-15T06:59:46Z +14415,2006-02-14T15:16:03Z,2670,561,,2,2020-02-15T06:59:46Z +14416,2005-08-21T11:11:46Z,3002,384,2005-08-25T12:33:46Z,1,2020-02-15T06:59:46Z +14417,2005-08-21T11:13:35Z,1768,596,2005-08-25T11:27:35Z,1,2020-02-15T06:59:46Z +14418,2005-08-21T11:14:26Z,89,442,2005-08-28T08:34:26Z,2,2020-02-15T06:59:46Z +14419,2005-08-21T11:15:46Z,3146,221,2005-08-30T16:37:46Z,1,2020-02-15T06:59:46Z +14420,2005-08-21T11:16:15Z,2495,551,2005-08-24T06:06:15Z,2,2020-02-15T06:59:46Z +14421,2005-08-21T11:20:21Z,4402,406,2005-08-24T06:26:21Z,1,2020-02-15T06:59:46Z +14422,2005-08-21T11:21:46Z,1382,361,2005-08-25T13:15:46Z,1,2020-02-15T06:59:46Z +14423,2005-08-21T11:23:59Z,2873,521,2005-08-26T11:52:59Z,2,2020-02-15T06:59:46Z +14424,2005-08-21T11:24:11Z,2535,489,2005-08-29T13:13:11Z,2,2020-02-15T06:59:46Z +14425,2006-02-14T15:16:03Z,2752,560,,2,2020-02-15T06:59:46Z +14426,2006-02-14T15:16:03Z,2902,315,,1,2020-02-15T06:59:46Z +14427,2005-08-21T11:26:06Z,2353,163,2005-08-27T10:39:06Z,1,2020-02-15T06:59:46Z +14428,2005-08-21T11:27:07Z,1614,458,2005-08-29T09:50:07Z,1,2020-02-15T06:59:46Z +14429,2005-08-21T11:29:43Z,2513,66,2005-08-24T12:05:43Z,1,2020-02-15T06:59:46Z +14430,2005-08-21T11:31:11Z,2623,5,2005-08-26T06:29:11Z,1,2020-02-15T06:59:46Z +14431,2005-08-21T11:31:15Z,1572,106,2005-08-26T11:22:15Z,2,2020-02-15T06:59:46Z +14432,2005-08-21T11:36:15Z,2294,138,2005-08-24T08:02:15Z,2,2020-02-15T06:59:46Z +14433,2005-08-21T11:36:34Z,732,401,2005-08-26T08:51:34Z,1,2020-02-15T06:59:46Z +14434,2005-08-21T11:40:46Z,2085,549,2005-08-24T05:50:46Z,1,2020-02-15T06:59:46Z +14435,2005-08-21T11:44:37Z,2919,169,2005-08-24T08:04:37Z,1,2020-02-15T06:59:46Z +14436,2005-08-21T11:48:27Z,3473,560,2005-08-25T15:49:27Z,2,2020-02-15T06:59:46Z +14437,2005-08-21T11:48:32Z,1504,136,2005-08-25T11:06:32Z,2,2020-02-15T06:59:46Z +14438,2005-08-21T11:51:10Z,1621,392,2005-08-28T17:10:10Z,1,2020-02-15T06:59:46Z +14439,2005-08-21T11:52:41Z,3903,564,2005-08-30T10:36:41Z,1,2020-02-15T06:59:46Z +14440,2005-08-21T11:59:04Z,3495,194,2005-08-23T10:10:04Z,1,2020-02-15T06:59:46Z +14441,2005-08-21T11:59:38Z,1210,260,2005-08-26T11:17:38Z,2,2020-02-15T06:59:46Z +14442,2005-08-21T12:00:21Z,122,205,2005-08-23T17:00:21Z,2,2020-02-15T06:59:46Z +14443,2005-08-21T12:06:32Z,376,447,2005-08-29T13:44:32Z,2,2020-02-15T06:59:46Z +14444,2005-08-21T12:07:25Z,2211,225,2005-08-28T08:36:25Z,2,2020-02-15T06:59:46Z +14445,2005-08-21T12:07:42Z,3186,256,2005-08-22T17:51:42Z,2,2020-02-15T06:59:46Z +14446,2005-08-21T12:10:41Z,4367,21,2005-08-26T14:42:41Z,1,2020-02-15T06:59:46Z +14447,2005-08-21T12:12:05Z,1889,584,2005-08-27T14:47:05Z,2,2020-02-15T06:59:46Z +14448,2005-08-21T12:13:10Z,1937,263,2005-08-30T08:46:10Z,1,2020-02-15T06:59:46Z +14449,2005-08-21T12:13:18Z,653,529,2005-08-27T15:41:18Z,2,2020-02-15T06:59:46Z +14450,2005-08-21T12:21:25Z,1194,48,2005-08-26T14:35:25Z,2,2020-02-15T06:59:46Z +14451,2005-08-21T12:21:44Z,3967,467,2005-08-22T15:07:44Z,2,2020-02-15T06:59:46Z +14452,2005-08-21T12:23:20Z,4231,325,2005-08-27T06:26:20Z,1,2020-02-15T06:59:46Z +14453,2005-08-21T12:33:34Z,3312,237,2005-08-27T11:10:34Z,1,2020-02-15T06:59:46Z +14454,2005-08-21T12:35:49Z,2475,150,2005-08-22T16:28:49Z,2,2020-02-15T06:59:46Z +14455,2005-08-21T12:36:11Z,3442,68,2005-08-27T08:12:11Z,2,2020-02-15T06:59:46Z +14456,2005-08-21T12:38:09Z,2520,125,2005-08-26T08:29:09Z,1,2020-02-15T06:59:46Z +14457,2005-08-21T12:47:38Z,4288,340,2005-08-25T13:07:38Z,1,2020-02-15T06:59:46Z +14458,2005-08-21T12:47:53Z,1769,256,2005-08-30T17:09:53Z,2,2020-02-15T06:59:46Z +14459,2005-08-21T12:48:08Z,1532,98,2005-08-27T10:50:08Z,2,2020-02-15T06:59:46Z +14460,2005-08-21T12:48:48Z,4137,120,2005-08-30T16:34:48Z,2,2020-02-15T06:59:46Z +14461,2005-08-21T12:50:33Z,371,42,2005-08-30T13:35:33Z,1,2020-02-15T06:59:46Z +14462,2005-08-21T12:50:57Z,2201,96,2005-08-27T10:42:57Z,2,2020-02-15T06:59:46Z +14463,2005-08-21T12:51:49Z,1403,365,2005-08-29T12:17:49Z,1,2020-02-15T06:59:46Z +14464,2005-08-21T12:52:54Z,2310,121,2005-08-25T16:42:54Z,1,2020-02-15T06:59:46Z +14465,2005-08-21T12:54:22Z,4206,262,2005-08-28T10:46:22Z,2,2020-02-15T06:59:46Z +14466,2005-08-21T13:03:13Z,923,442,2005-08-22T15:19:13Z,2,2020-02-15T06:59:46Z +14467,2005-08-21T13:03:33Z,1498,522,2005-08-28T15:28:33Z,1,2020-02-15T06:59:46Z +14468,2005-08-21T13:07:10Z,4168,224,2005-08-30T19:05:10Z,2,2020-02-15T06:59:46Z +14469,2005-08-21T13:07:24Z,1957,554,2005-08-24T10:37:24Z,1,2020-02-15T06:59:46Z +14470,2005-08-21T13:09:41Z,3899,379,2005-08-23T10:20:41Z,2,2020-02-15T06:59:46Z +14471,2005-08-21T13:10:40Z,1254,395,2005-08-26T16:49:40Z,1,2020-02-15T06:59:46Z +14472,2005-08-21T13:13:57Z,4097,184,2005-08-23T14:04:57Z,2,2020-02-15T06:59:46Z +14473,2005-08-21T13:19:03Z,2747,298,2005-08-23T15:12:03Z,1,2020-02-15T06:59:46Z +14474,2005-08-21T13:22:48Z,2632,294,2005-08-27T14:13:48Z,2,2020-02-15T06:59:46Z +14475,2005-08-21T13:24:32Z,3164,2,2005-08-27T08:59:32Z,2,2020-02-15T06:59:46Z +14476,2005-08-21T13:31:07Z,2821,101,2005-08-23T17:06:07Z,1,2020-02-15T06:59:46Z +14477,2005-08-21T13:32:38Z,1564,126,2005-08-25T18:02:38Z,2,2020-02-15T06:59:46Z +14478,2005-08-21T13:33:28Z,2990,231,2005-08-25T13:33:28Z,2,2020-02-15T06:59:46Z +14479,2005-08-21T13:35:54Z,2235,324,2005-08-29T12:12:54Z,2,2020-02-15T06:59:46Z +14480,2005-08-21T13:36:40Z,229,411,2005-08-26T08:39:40Z,1,2020-02-15T06:59:46Z +14481,2005-08-21T13:41:14Z,4099,367,2005-08-30T07:53:14Z,2,2020-02-15T06:59:46Z +14482,2005-08-21T13:42:45Z,2765,23,2005-08-27T11:55:45Z,1,2020-02-15T06:59:46Z +14483,2005-08-21T13:43:59Z,37,275,2005-08-28T16:38:59Z,2,2020-02-15T06:59:46Z +14484,2005-08-21T13:47:29Z,3714,418,2005-08-23T18:25:29Z,1,2020-02-15T06:59:46Z +14485,2005-08-21T13:52:07Z,1637,241,2005-08-30T13:06:07Z,2,2020-02-15T06:59:46Z +14486,2005-08-21T13:52:54Z,3119,138,2005-08-23T07:58:54Z,1,2020-02-15T06:59:46Z +14487,2005-08-21T13:53:33Z,2578,526,2005-08-29T19:32:33Z,1,2020-02-15T06:59:46Z +14488,2006-02-14T15:16:03Z,4202,75,,2,2020-02-15T06:59:46Z +14489,2005-08-21T13:53:59Z,2312,9,2005-08-30T15:45:59Z,2,2020-02-15T06:59:46Z +14490,2005-08-21T13:54:15Z,1771,205,2005-08-28T19:08:15Z,2,2020-02-15T06:59:46Z +14491,2005-08-21T13:55:39Z,2072,226,2005-08-29T17:51:39Z,1,2020-02-15T06:59:46Z +14492,2005-08-21T13:59:08Z,1591,266,2005-08-23T11:09:08Z,1,2020-02-15T06:59:46Z +14493,2005-08-21T14:01:44Z,2590,389,2005-08-28T17:20:44Z,1,2020-02-15T06:59:46Z +14494,2005-08-21T14:02:50Z,169,5,2005-08-22T16:45:50Z,2,2020-02-15T06:59:46Z +14495,2005-08-21T14:04:39Z,3215,429,2005-08-22T16:53:39Z,2,2020-02-15T06:59:46Z +14496,2005-08-21T14:07:35Z,2185,223,2005-08-24T12:31:35Z,1,2020-02-15T06:59:46Z +14497,2005-08-21T14:09:47Z,3240,254,2005-08-22T11:10:47Z,2,2020-02-15T06:59:46Z +14498,2005-08-21T14:10:44Z,3971,544,2005-08-23T08:29:44Z,1,2020-02-15T06:59:46Z +14499,2005-08-21T14:11:19Z,4109,292,2005-08-23T16:10:19Z,2,2020-02-15T06:59:46Z +14500,2005-08-21T14:11:30Z,2024,451,2005-08-27T12:19:30Z,1,2020-02-15T06:59:46Z +14501,2005-08-21T14:14:38Z,3588,576,2005-08-25T17:58:38Z,1,2020-02-15T06:59:46Z +14502,2005-08-21T14:22:28Z,2986,378,2005-08-23T10:40:28Z,1,2020-02-15T06:59:46Z +14503,2006-02-14T15:16:03Z,2144,188,,1,2020-02-15T06:59:46Z +14504,2005-08-21T14:23:01Z,4536,312,2005-08-27T13:56:01Z,1,2020-02-15T06:59:46Z +14505,2005-08-21T14:26:28Z,2172,203,2005-08-29T17:34:28Z,1,2020-02-15T06:59:46Z +14506,2005-08-21T14:32:27Z,4493,537,2005-08-24T19:02:27Z,2,2020-02-15T06:59:46Z +14507,2005-08-21T14:32:45Z,1969,175,2005-08-28T09:50:45Z,2,2020-02-15T06:59:46Z +14508,2005-08-21T14:33:58Z,703,396,2005-08-27T10:45:58Z,2,2020-02-15T06:59:46Z +14509,2005-08-21T14:39:58Z,541,520,2005-08-26T13:19:58Z,1,2020-02-15T06:59:46Z +14510,2005-08-21T14:44:41Z,1868,547,2005-08-30T20:19:41Z,1,2020-02-15T06:59:46Z +14511,2005-08-21T14:45:34Z,4452,16,2005-08-28T10:36:34Z,2,2020-02-15T06:59:46Z +14512,2005-08-21T14:47:09Z,579,51,2005-08-24T18:10:09Z,2,2020-02-15T06:59:46Z +14513,2005-08-21T14:51:35Z,4265,185,2005-08-24T13:24:35Z,2,2020-02-15T06:59:46Z +14514,2005-08-21T14:51:52Z,1259,295,2005-08-30T10:40:52Z,2,2020-02-15T06:59:46Z +14515,2005-08-21T14:52:14Z,2215,242,2005-08-27T10:27:14Z,1,2020-02-15T06:59:46Z +14516,2006-02-14T15:16:03Z,713,457,,2,2020-02-15T06:59:46Z +14517,2005-08-21T14:57:03Z,3568,311,2005-08-24T13:52:03Z,2,2020-02-15T06:59:46Z +14518,2005-08-21T14:58:58Z,2734,82,2005-08-24T13:19:58Z,2,2020-02-15T06:59:46Z +14519,2005-08-21T14:59:29Z,1541,403,2005-08-22T11:48:29Z,2,2020-02-15T06:59:46Z +14520,2005-08-21T15:00:49Z,4533,150,2005-08-30T19:04:49Z,1,2020-02-15T06:59:46Z +14521,2005-08-21T15:01:32Z,1538,200,2005-08-28T19:12:32Z,1,2020-02-15T06:59:46Z +14522,2005-08-21T15:01:34Z,2101,535,2005-08-25T16:37:34Z,1,2020-02-15T06:59:46Z +14523,2005-08-21T15:03:45Z,345,433,2005-08-22T18:06:45Z,2,2020-02-15T06:59:46Z +14524,2005-08-21T15:05:27Z,4409,374,2005-08-29T12:07:27Z,2,2020-02-15T06:59:46Z +14525,2005-08-21T15:06:49Z,3020,420,2005-08-22T16:30:49Z,1,2020-02-15T06:59:46Z +14526,2006-02-14T15:16:03Z,1799,534,,1,2020-02-15T06:59:46Z +14527,2005-08-21T15:07:42Z,3496,232,2005-08-23T12:31:42Z,1,2020-02-15T06:59:46Z +14528,2005-08-21T15:08:05Z,4305,46,2005-08-26T15:58:05Z,2,2020-02-15T06:59:46Z +14529,2005-08-21T15:08:31Z,1774,380,2005-08-29T17:15:31Z,1,2020-02-15T06:59:46Z +14530,2005-08-21T15:10:50Z,1905,77,2005-08-26T09:20:50Z,2,2020-02-15T06:59:46Z +14531,2006-02-14T15:16:03Z,4296,568,,2,2020-02-15T06:59:46Z +14532,2005-08-21T15:15:03Z,2057,37,2005-08-25T17:41:03Z,2,2020-02-15T06:59:46Z +14533,2005-08-21T15:15:19Z,2202,586,2005-08-26T12:47:19Z,1,2020-02-15T06:59:46Z +14534,2005-08-21T15:16:29Z,2514,56,2005-08-26T16:18:29Z,1,2020-02-15T06:59:46Z +14535,2005-08-21T15:22:37Z,530,412,2005-08-29T19:23:37Z,2,2020-02-15T06:59:46Z +14536,2005-08-21T15:22:50Z,2615,48,2005-08-27T17:03:50Z,1,2020-02-15T06:59:46Z +14537,2005-08-21T15:24:24Z,3755,405,2005-08-23T17:14:24Z,2,2020-02-15T06:59:46Z +14538,2005-08-21T15:28:15Z,3348,471,2005-08-22T19:55:15Z,2,2020-02-15T06:59:46Z +14539,2005-08-21T15:29:47Z,3340,41,2005-08-28T19:01:47Z,1,2020-02-15T06:59:46Z +14540,2005-08-21T15:34:23Z,2362,28,2005-08-27T11:51:23Z,2,2020-02-15T06:59:46Z +14541,2005-08-21T15:34:32Z,1275,576,2005-08-25T13:18:32Z,1,2020-02-15T06:59:46Z +14542,2005-08-21T15:36:34Z,1247,101,2005-08-27T20:24:34Z,2,2020-02-15T06:59:46Z +14543,2005-08-21T15:39:01Z,709,579,2005-08-28T09:47:01Z,1,2020-02-15T06:59:46Z +14544,2005-08-21T15:41:01Z,2445,589,2005-08-24T15:20:01Z,1,2020-02-15T06:59:46Z +14545,2005-08-21T15:44:23Z,2459,13,2005-08-29T20:09:23Z,2,2020-02-15T06:59:46Z +14546,2005-08-21T15:50:50Z,1515,466,2005-08-23T11:37:50Z,2,2020-02-15T06:59:46Z +14547,2005-08-21T15:51:38Z,1172,265,2005-08-26T15:35:38Z,1,2020-02-15T06:59:46Z +14548,2005-08-21T15:53:52Z,226,299,2005-08-25T15:39:52Z,2,2020-02-15T06:59:46Z +14549,2005-08-21T15:54:21Z,4117,155,2005-08-22T17:22:21Z,1,2020-02-15T06:59:46Z +14550,2005-08-21T15:56:39Z,2814,473,2005-08-23T21:40:39Z,1,2020-02-15T06:59:46Z +14551,2005-08-21T15:57:25Z,496,521,2005-08-28T11:10:25Z,2,2020-02-15T06:59:46Z +14552,2005-08-21T15:59:27Z,1991,477,2005-08-27T11:46:27Z,1,2020-02-15T06:59:46Z +14553,2005-08-21T15:59:40Z,3160,434,2005-08-23T11:54:40Z,2,2020-02-15T06:59:46Z +14554,2005-08-21T16:03:01Z,31,38,2005-08-26T13:09:01Z,2,2020-02-15T06:59:46Z +14555,2005-08-21T16:03:02Z,1926,440,2005-08-23T14:18:02Z,1,2020-02-15T06:59:46Z +14556,2005-08-21T16:03:27Z,475,265,2005-08-29T15:49:27Z,1,2020-02-15T06:59:46Z +14557,2005-08-21T16:05:11Z,483,490,2005-08-27T16:37:11Z,1,2020-02-15T06:59:46Z +14558,2005-08-21T16:10:50Z,3958,273,2005-08-28T16:36:50Z,2,2020-02-15T06:59:46Z +14559,2005-08-21T16:11:35Z,3842,433,2005-08-30T15:26:35Z,1,2020-02-15T06:59:46Z +14560,2005-08-21T16:13:47Z,1616,579,2005-08-26T15:19:47Z,1,2020-02-15T06:59:46Z +14561,2005-08-21T16:20:43Z,2498,443,2005-08-27T16:48:43Z,1,2020-02-15T06:59:46Z +14562,2005-08-21T16:22:59Z,3501,107,2005-08-22T21:15:59Z,1,2020-02-15T06:59:46Z +14563,2005-08-21T16:23:53Z,3984,212,2005-08-25T11:30:53Z,2,2020-02-15T06:59:46Z +14564,2005-08-21T16:24:43Z,3250,22,2005-08-26T16:58:43Z,1,2020-02-15T06:59:46Z +14565,2005-08-21T16:24:45Z,4160,250,2005-08-25T14:42:45Z,1,2020-02-15T06:59:46Z +14566,2005-08-21T16:25:05Z,84,87,2005-08-26T10:31:05Z,1,2020-02-15T06:59:46Z +14567,2005-08-21T16:27:25Z,3805,214,2005-08-26T10:47:25Z,1,2020-02-15T06:59:46Z +14568,2005-08-21T16:30:48Z,3331,582,2005-08-22T13:49:48Z,1,2020-02-15T06:59:46Z +14569,2005-08-21T16:31:22Z,884,15,2005-08-25T21:27:22Z,2,2020-02-15T06:59:46Z +14570,2005-08-21T16:32:32Z,955,32,2005-08-30T12:03:32Z,2,2020-02-15T06:59:46Z +14571,2005-08-21T16:40:26Z,2218,296,2005-08-29T17:10:26Z,1,2020-02-15T06:59:46Z +14572,2005-08-21T16:44:31Z,1397,538,2005-08-26T16:35:31Z,2,2020-02-15T06:59:46Z +14573,2005-08-21T16:44:32Z,2423,240,2005-08-23T14:01:32Z,2,2020-02-15T06:59:46Z +14574,2005-08-21T16:50:34Z,1611,62,2005-08-26T14:24:34Z,2,2020-02-15T06:59:46Z +14575,2005-08-21T16:51:34Z,3752,159,2005-08-30T20:13:34Z,2,2020-02-15T06:59:46Z +14576,2005-08-21T16:52:03Z,1189,45,2005-08-28T19:43:03Z,2,2020-02-15T06:59:46Z +14577,2005-08-21T16:52:29Z,1965,126,2005-08-26T12:30:29Z,1,2020-02-15T06:59:46Z +14578,2005-08-21T16:53:38Z,3141,389,2005-08-28T20:36:38Z,2,2020-02-15T06:59:46Z +14579,2005-08-21T16:54:47Z,1205,260,2005-08-28T12:35:47Z,1,2020-02-15T06:59:46Z +14580,2005-08-21T16:56:39Z,1440,448,2005-08-28T15:25:39Z,1,2020-02-15T06:59:46Z +14581,2005-08-21T17:07:08Z,751,243,2005-08-26T16:02:08Z,1,2020-02-15T06:59:46Z +14582,2005-08-21T17:08:33Z,1004,438,2005-08-29T18:04:33Z,2,2020-02-15T06:59:46Z +14583,2005-08-21T17:11:47Z,1203,455,2005-08-24T16:16:47Z,2,2020-02-15T06:59:46Z +14584,2005-08-21T17:15:33Z,2617,481,2005-08-24T20:24:33Z,2,2020-02-15T06:59:46Z +14585,2005-08-21T17:18:33Z,82,30,2005-08-26T11:36:33Z,1,2020-02-15T06:59:46Z +14586,2005-08-21T17:19:09Z,3094,182,2005-08-26T17:00:09Z,1,2020-02-15T06:59:46Z +14587,2005-08-21T17:20:55Z,2329,250,2005-08-26T17:17:55Z,1,2020-02-15T06:59:46Z +14588,2005-08-21T17:25:53Z,1350,219,2005-08-28T21:47:53Z,2,2020-02-15T06:59:46Z +14589,2005-08-21T17:28:55Z,2810,179,2005-08-22T23:06:55Z,1,2020-02-15T06:59:46Z +14590,2005-08-21T17:29:10Z,2633,526,2005-08-28T20:15:10Z,1,2020-02-15T06:59:46Z +14591,2005-08-21T17:30:09Z,3410,538,2005-08-24T12:27:09Z,1,2020-02-15T06:59:46Z +14592,2005-08-21T17:30:17Z,2681,563,2005-08-22T20:06:17Z,2,2020-02-15T06:59:46Z +14593,2005-08-21T17:33:18Z,1399,564,2005-08-24T22:11:18Z,1,2020-02-15T06:59:46Z +14594,2005-08-21T17:34:24Z,2978,62,2005-08-26T22:04:24Z,2,2020-02-15T06:59:46Z +14595,2005-08-21T17:35:17Z,1879,118,2005-08-27T12:11:17Z,1,2020-02-15T06:59:46Z +14596,2005-08-21T17:38:37Z,2010,472,2005-08-30T20:28:37Z,1,2020-02-15T06:59:46Z +14597,2005-08-21T17:39:41Z,1160,472,2005-08-25T14:07:41Z,1,2020-02-15T06:59:46Z +14598,2005-08-21T17:40:05Z,1113,359,2005-08-29T18:16:05Z,2,2020-02-15T06:59:46Z +14599,2005-08-21T17:43:42Z,4575,599,2005-08-22T18:53:42Z,1,2020-02-15T06:59:46Z +14600,2005-08-21T17:45:21Z,3532,255,2005-08-28T19:03:21Z,1,2020-02-15T06:59:46Z +14601,2005-08-21T17:45:52Z,548,406,2005-08-29T15:10:52Z,1,2020-02-15T06:59:46Z +14602,2005-08-21T17:48:49Z,3771,370,2005-08-28T21:38:49Z,1,2020-02-15T06:59:46Z +14603,2005-08-21T17:51:06Z,94,26,2005-08-28T15:36:06Z,1,2020-02-15T06:59:46Z +14604,2006-02-14T15:16:03Z,1024,585,,2,2020-02-15T06:59:46Z +14605,2005-08-21T17:56:06Z,476,394,2005-08-24T18:35:06Z,1,2020-02-15T06:59:46Z +14606,2006-02-14T15:16:03Z,2291,592,,2,2020-02-15T06:59:46Z +14607,2005-08-21T17:56:50Z,4518,417,2005-08-22T17:44:50Z,2,2020-02-15T06:59:46Z +14608,2005-08-21T17:57:22Z,3321,90,2005-08-25T13:20:22Z,1,2020-02-15T06:59:46Z +14609,2005-08-21T17:57:26Z,1206,551,2005-08-25T14:04:26Z,2,2020-02-15T06:59:46Z +14610,2005-08-21T17:59:09Z,1894,260,2005-08-29T21:36:09Z,2,2020-02-15T06:59:46Z +14611,2005-08-21T18:01:41Z,4078,443,2005-08-26T12:34:41Z,1,2020-02-15T06:59:46Z +14612,2005-08-21T18:03:15Z,4105,445,2005-08-27T13:39:15Z,1,2020-02-15T06:59:46Z +14613,2005-08-21T18:03:20Z,3841,20,2005-08-26T19:46:20Z,1,2020-02-15T06:59:46Z +14614,2005-08-21T18:03:51Z,3053,468,2005-08-30T13:37:51Z,1,2020-02-15T06:59:46Z +14615,2005-08-21T18:06:32Z,2332,171,2005-08-30T13:19:32Z,2,2020-02-15T06:59:46Z +14616,2006-02-14T15:16:03Z,4537,532,,1,2020-02-15T06:59:46Z +14617,2005-08-21T18:07:40Z,3562,51,2005-08-24T23:48:40Z,2,2020-02-15T06:59:46Z +14618,2005-08-21T18:09:51Z,4490,270,2005-08-28T22:47:51Z,1,2020-02-15T06:59:46Z +14619,2005-08-21T18:10:03Z,1589,338,2005-08-23T13:40:03Z,2,2020-02-15T06:59:46Z +14620,2005-08-21T18:10:43Z,3272,78,2005-08-22T15:19:43Z,2,2020-02-15T06:59:46Z +14621,2005-08-21T18:17:59Z,3622,344,2005-08-23T14:16:59Z,1,2020-02-15T06:59:46Z +14622,2005-08-21T18:25:59Z,2702,559,2005-08-31T00:11:59Z,2,2020-02-15T06:59:46Z +14623,2005-08-21T18:29:13Z,901,33,2005-08-26T20:48:13Z,2,2020-02-15T06:59:46Z +14624,2005-08-21T18:32:42Z,4,344,2005-08-23T21:09:42Z,1,2020-02-15T06:59:46Z +14625,2005-08-21T18:34:21Z,2661,507,2005-08-29T21:41:21Z,1,2020-02-15T06:59:46Z +14626,2005-08-21T18:35:44Z,1038,554,2005-08-25T23:54:44Z,2,2020-02-15T06:59:46Z +14627,2005-08-21T18:35:54Z,2470,49,2005-08-30T21:17:54Z,1,2020-02-15T06:59:46Z +14628,2005-08-21T18:37:24Z,3636,331,2005-08-27T20:25:24Z,2,2020-02-15T06:59:46Z +14629,2005-08-21T18:39:52Z,761,148,2005-08-25T19:14:52Z,2,2020-02-15T06:59:46Z +14630,2005-08-21T18:43:44Z,4049,294,2005-08-29T17:08:44Z,2,2020-02-15T06:59:46Z +14631,2005-08-21T18:47:49Z,782,209,2005-08-28T16:54:49Z,1,2020-02-15T06:59:46Z +14632,2005-08-21T18:48:06Z,2807,38,2005-08-25T00:33:06Z,2,2020-02-15T06:59:46Z +14633,2005-08-21T18:51:10Z,2137,551,2005-08-25T13:07:10Z,1,2020-02-15T06:59:46Z +14634,2005-08-21T18:51:28Z,486,494,2005-08-29T19:30:28Z,2,2020-02-15T06:59:46Z +14635,2005-08-21T18:51:43Z,2171,108,2005-08-27T16:30:43Z,2,2020-02-15T06:59:46Z +14636,2005-08-21T18:59:17Z,1671,339,2005-08-23T13:19:17Z,2,2020-02-15T06:59:46Z +14637,2005-08-21T19:01:00Z,1846,76,2005-08-26T23:03:00Z,2,2020-02-15T06:59:46Z +14638,2005-08-21T19:01:36Z,3583,216,2005-08-22T15:09:36Z,2,2020-02-15T06:59:46Z +14639,2005-08-21T19:01:39Z,3510,210,2005-08-26T14:08:39Z,1,2020-02-15T06:59:46Z +14640,2005-08-21T19:03:19Z,1880,253,2005-08-27T00:37:19Z,2,2020-02-15T06:59:46Z +14641,2005-08-21T19:05:23Z,2205,147,2005-08-22T22:30:23Z,2,2020-02-15T06:59:46Z +14642,2005-08-21T19:09:40Z,1280,81,2005-08-30T13:25:40Z,2,2020-02-15T06:59:46Z +14643,2005-08-21T19:11:58Z,798,119,2005-08-29T19:52:58Z,1,2020-02-15T06:59:46Z +14644,2005-08-21T19:12:12Z,3905,453,2005-08-29T17:08:12Z,1,2020-02-15T06:59:46Z +14645,2005-08-21T19:12:47Z,2369,334,2005-08-25T21:42:47Z,1,2020-02-15T06:59:46Z +14646,2005-08-21T19:14:48Z,948,186,2005-08-23T17:15:48Z,1,2020-02-15T06:59:46Z +14647,2005-08-21T19:15:33Z,3854,36,2005-08-30T18:58:33Z,2,2020-02-15T06:59:46Z +14648,2005-08-21T19:18:01Z,2250,284,2005-08-25T14:59:01Z,2,2020-02-15T06:59:46Z +14649,2005-08-21T19:19:21Z,4074,43,2005-08-22T17:23:21Z,1,2020-02-15T06:59:46Z +14650,2005-08-21T19:24:51Z,1274,190,2005-08-25T13:58:51Z,2,2020-02-15T06:59:46Z +14651,2005-08-21T19:31:09Z,4037,544,2005-08-28T14:26:09Z,2,2020-02-15T06:59:46Z +14652,2005-08-21T19:32:05Z,4163,453,2005-08-23T23:33:05Z,2,2020-02-15T06:59:46Z +14653,2005-08-21T19:35:59Z,491,593,2005-08-24T15:31:59Z,1,2020-02-15T06:59:46Z +14654,2005-08-21T19:36:59Z,687,173,2005-08-23T22:03:59Z,2,2020-02-15T06:59:46Z +14655,2005-08-21T19:37:10Z,785,253,2005-08-22T15:43:10Z,1,2020-02-15T06:59:46Z +14656,2005-08-21T19:39:28Z,4205,201,2005-08-24T01:36:28Z,2,2020-02-15T06:59:46Z +14657,2005-08-21T19:39:43Z,477,244,2005-08-26T22:39:43Z,2,2020-02-15T06:59:46Z +14658,2005-08-21T19:41:50Z,1465,473,2005-08-25T16:11:50Z,1,2020-02-15T06:59:46Z +14659,2005-08-21T19:42:36Z,928,119,2005-08-26T14:06:36Z,1,2020-02-15T06:59:46Z +14660,2005-08-21T19:43:21Z,3433,452,2005-08-22T20:42:21Z,1,2020-02-15T06:59:46Z +14661,2005-08-21T19:44:21Z,745,469,2005-08-27T14:35:21Z,1,2020-02-15T06:59:46Z +14662,2005-08-21T19:45:27Z,2969,403,2005-08-23T14:44:27Z,2,2020-02-15T06:59:46Z +14663,2005-08-21T19:47:55Z,2351,150,2005-08-27T17:36:55Z,2,2020-02-15T06:59:46Z +14664,2005-08-21T19:48:47Z,4377,153,2005-08-27T16:47:47Z,1,2020-02-15T06:59:46Z +14665,2005-08-21T19:49:46Z,2896,58,2005-08-30T18:00:46Z,1,2020-02-15T06:59:46Z +14666,2005-08-21T19:51:09Z,2560,122,2005-08-30T22:42:09Z,2,2020-02-15T06:59:46Z +14667,2005-08-21T19:51:11Z,2608,55,2005-08-23T17:37:11Z,1,2020-02-15T06:59:46Z +14668,2005-08-21T19:51:30Z,1450,152,2005-08-29T19:38:30Z,2,2020-02-15T06:59:46Z +14669,2005-08-21T19:54:06Z,3154,317,2005-08-25T23:12:06Z,1,2020-02-15T06:59:46Z +14670,2005-08-21T19:54:11Z,4324,537,2005-08-27T21:42:11Z,2,2020-02-15T06:59:46Z +14671,2005-08-21T19:59:30Z,2622,53,2005-08-22T19:39:30Z,1,2020-02-15T06:59:46Z +14672,2005-08-21T19:59:33Z,4144,325,2005-08-30T19:40:33Z,1,2020-02-15T06:59:46Z +14673,2005-08-21T20:01:18Z,1827,445,2005-08-25T18:55:18Z,1,2020-02-15T06:59:46Z +14674,2005-08-21T20:01:34Z,572,300,2005-08-27T18:33:34Z,1,2020-02-15T06:59:46Z +14675,2005-08-21T20:01:51Z,328,170,2005-08-26T14:30:51Z,2,2020-02-15T06:59:46Z +14676,2005-08-21T20:02:18Z,877,49,2005-08-26T21:55:18Z,1,2020-02-15T06:59:46Z +14677,2005-08-21T20:12:30Z,4411,26,2005-08-28T15:11:30Z,1,2020-02-15T06:59:46Z +14678,2005-08-21T20:12:43Z,1911,383,2005-08-31T02:11:43Z,2,2020-02-15T06:59:46Z +14679,2005-08-21T20:14:58Z,1520,193,2005-08-23T23:39:58Z,1,2020-02-15T06:59:46Z +14680,2005-08-21T20:19:52Z,4469,524,2005-08-28T17:10:52Z,1,2020-02-15T06:59:46Z +14681,2005-08-21T20:25:13Z,1083,212,2005-08-30T19:48:13Z,1,2020-02-15T06:59:46Z +14682,2005-08-21T20:25:57Z,2974,314,2005-08-28T00:42:57Z,2,2020-02-15T06:59:46Z +14683,2005-08-21T20:27:44Z,3850,342,2005-08-29T16:54:44Z,1,2020-02-15T06:59:46Z +14684,2005-08-21T20:28:26Z,3593,369,2005-08-28T19:01:26Z,2,2020-02-15T06:59:46Z +14685,2005-08-21T20:31:25Z,1320,69,2005-08-22T21:02:25Z,1,2020-02-15T06:59:46Z +14686,2005-08-21T20:32:08Z,814,34,2005-08-26T18:07:08Z,1,2020-02-15T06:59:46Z +14687,2005-08-21T20:32:16Z,306,550,2005-08-26T16:17:16Z,2,2020-02-15T06:59:46Z +14688,2005-08-21T20:32:37Z,2573,219,2005-08-27T00:06:37Z,2,2020-02-15T06:59:46Z +14689,2005-08-21T20:33:00Z,1124,463,2005-08-22T18:10:00Z,1,2020-02-15T06:59:46Z +14690,2005-08-21T20:42:25Z,3649,456,2005-08-29T18:42:25Z,2,2020-02-15T06:59:46Z +14691,2005-08-21T20:42:29Z,2131,404,2005-08-24T01:22:29Z,1,2020-02-15T06:59:46Z +14692,2005-08-21T20:43:21Z,1908,192,2005-08-28T19:02:21Z,1,2020-02-15T06:59:46Z +14693,2005-08-21T20:44:19Z,3454,269,2005-08-29T00:37:19Z,2,2020-02-15T06:59:46Z +14694,2005-08-21T20:46:42Z,2767,363,2005-08-23T16:18:42Z,1,2020-02-15T06:59:46Z +14695,2005-08-21T20:46:47Z,412,206,2005-08-22T22:25:47Z,2,2020-02-15T06:59:46Z +14696,2005-08-21T20:48:05Z,3776,435,2005-08-25T14:55:05Z,1,2020-02-15T06:59:46Z +14697,2005-08-21T20:49:21Z,48,409,2005-08-26T01:39:21Z,2,2020-02-15T06:59:46Z +14698,2005-08-21T20:49:58Z,4255,196,2005-08-29T20:13:58Z,2,2020-02-15T06:59:46Z +14699,2005-08-21T20:50:48Z,1427,3,2005-08-29T18:08:48Z,2,2020-02-15T06:59:46Z +14700,2005-08-21T20:53:40Z,3446,360,2005-08-23T22:01:40Z,1,2020-02-15T06:59:46Z +14701,2005-08-21T20:54:32Z,3034,34,2005-08-30T16:46:32Z,1,2020-02-15T06:59:46Z +14702,2005-08-21T21:00:03Z,4096,345,2005-08-30T16:59:03Z,1,2020-02-15T06:59:46Z +14703,2005-08-21T21:01:19Z,4329,29,2005-08-22T15:13:19Z,2,2020-02-15T06:59:46Z +14704,2005-08-21T21:02:22Z,4062,248,2005-08-27T23:10:22Z,2,2020-02-15T06:59:46Z +14705,2005-08-21T21:02:55Z,2493,243,2005-08-25T20:20:55Z,2,2020-02-15T06:59:46Z +14706,2005-08-21T21:04:42Z,4494,589,2005-08-22T19:55:42Z,2,2020-02-15T06:59:46Z +14707,2005-08-21T21:06:29Z,2916,530,2005-08-30T23:37:29Z,1,2020-02-15T06:59:46Z +14708,2005-08-21T21:07:23Z,2828,226,2005-08-28T15:47:23Z,1,2020-02-15T06:59:46Z +14709,2005-08-21T21:07:59Z,1856,300,2005-08-31T02:19:59Z,1,2020-02-15T06:59:46Z +14710,2005-08-21T21:15:23Z,1922,587,2005-08-30T19:45:23Z,1,2020-02-15T06:59:46Z +14711,2005-08-21T21:22:07Z,1973,448,2005-08-30T16:24:07Z,2,2020-02-15T06:59:46Z +14712,2005-08-21T21:22:56Z,1198,226,2005-08-25T01:53:56Z,1,2020-02-15T06:59:46Z +14713,2005-08-21T21:27:24Z,3350,148,2005-08-23T20:26:24Z,1,2020-02-15T06:59:46Z +14714,2005-08-21T21:27:43Z,1,279,2005-08-30T22:26:43Z,1,2020-02-15T06:59:46Z +14715,2005-08-21T21:28:18Z,4453,287,2005-08-26T22:13:18Z,2,2020-02-15T06:59:46Z +14716,2005-08-21T21:29:55Z,2285,78,2005-08-23T18:34:55Z,2,2020-02-15T06:59:46Z +14717,2005-08-21T21:30:39Z,3839,366,2005-08-26T16:58:39Z,2,2020-02-15T06:59:46Z +14718,2005-08-21T21:39:25Z,3618,340,2005-08-26T22:07:25Z,2,2020-02-15T06:59:46Z +14719,2005-08-21T21:41:57Z,4091,599,2005-08-25T20:37:57Z,1,2020-02-15T06:59:46Z +14720,2005-08-21T21:43:53Z,3617,395,2005-08-25T18:21:53Z,1,2020-02-15T06:59:46Z +14721,2005-08-21T21:50:51Z,4257,349,2005-08-30T19:21:51Z,1,2020-02-15T06:59:46Z +14722,2005-08-21T21:50:53Z,2930,236,2005-08-30T03:13:53Z,1,2020-02-15T06:59:46Z +14723,2005-08-21T21:52:32Z,2755,548,2005-08-31T00:03:32Z,2,2020-02-15T06:59:46Z +14724,2005-08-21T21:53:47Z,3559,552,2005-08-23T20:14:47Z,2,2020-02-15T06:59:46Z +14725,2005-08-21T22:02:08Z,4427,403,2005-08-23T03:59:08Z,2,2020-02-15T06:59:46Z +14726,2005-08-21T22:08:52Z,4556,216,2005-08-22T18:28:52Z,1,2020-02-15T06:59:46Z +14727,2005-08-21T22:12:45Z,650,275,2005-08-25T00:46:45Z,1,2020-02-15T06:59:46Z +14728,2005-08-21T22:15:36Z,2671,474,2005-08-25T17:14:36Z,2,2020-02-15T06:59:46Z +14729,2005-08-21T22:16:57Z,2483,289,2005-08-27T21:32:57Z,1,2020-02-15T06:59:46Z +14730,2005-08-21T22:21:11Z,2949,439,2005-08-30T03:02:11Z,1,2020-02-15T06:59:46Z +14731,2005-08-21T22:21:49Z,1351,154,2005-08-24T16:27:49Z,1,2020-02-15T06:59:46Z +14732,2005-08-21T22:22:29Z,1915,482,2005-08-23T18:34:29Z,1,2020-02-15T06:59:46Z +14733,2005-08-21T22:22:33Z,398,408,2005-08-26T21:01:33Z,1,2020-02-15T06:59:46Z +14734,2006-02-14T15:16:03Z,1369,448,,2,2020-02-15T06:59:46Z +14735,2005-08-21T22:25:09Z,950,35,2005-08-23T21:16:09Z,1,2020-02-15T06:59:46Z +14736,2005-08-21T22:25:53Z,207,139,2005-08-25T19:01:53Z,2,2020-02-15T06:59:46Z +14737,2005-08-21T22:27:11Z,1842,124,2005-08-25T18:51:11Z,2,2020-02-15T06:59:46Z +14738,2005-08-21T22:29:13Z,3315,521,2005-08-29T21:19:13Z,1,2020-02-15T06:59:46Z +14739,2005-08-21T22:33:22Z,4026,226,2005-08-22T19:45:22Z,1,2020-02-15T06:59:46Z +14740,2005-08-21T22:35:33Z,1717,333,2005-08-26T17:49:33Z,1,2020-02-15T06:59:46Z +14741,2006-02-14T15:16:03Z,612,60,,2,2020-02-15T06:59:46Z +14742,2005-08-21T22:39:01Z,2988,421,2005-08-26T00:17:01Z,1,2020-02-15T06:59:46Z +14743,2005-08-21T22:41:56Z,4570,2,2005-08-29T00:18:56Z,1,2020-02-15T06:59:46Z +14744,2005-08-21T22:45:21Z,800,213,2005-08-29T23:57:21Z,1,2020-02-15T06:59:46Z +14745,2005-08-21T22:53:01Z,4399,277,2005-08-23T23:22:01Z,1,2020-02-15T06:59:46Z +14746,2005-08-21T22:54:02Z,3197,284,2005-08-27T17:04:02Z,2,2020-02-15T06:59:46Z +14747,2005-08-21T23:00:02Z,201,153,2005-08-26T18:58:02Z,2,2020-02-15T06:59:46Z +14748,2005-08-21T23:02:02Z,1697,81,2005-08-28T05:01:02Z,2,2020-02-15T06:59:46Z +14749,2005-08-21T23:08:33Z,831,235,2005-08-29T20:46:33Z,2,2020-02-15T06:59:46Z +14750,2005-08-21T23:09:32Z,918,303,2005-08-30T00:46:32Z,2,2020-02-15T06:59:46Z +14751,2005-08-21T23:11:23Z,1156,195,2005-08-30T20:01:23Z,2,2020-02-15T06:59:46Z +14752,2005-08-21T23:11:42Z,1252,362,2005-08-28T22:12:42Z,1,2020-02-15T06:59:46Z +14753,2005-08-21T23:11:43Z,1803,155,2005-08-22T22:25:43Z,2,2020-02-15T06:59:46Z +14754,2005-08-21T23:17:26Z,2355,137,2005-08-29T18:55:26Z,2,2020-02-15T06:59:46Z +14755,2005-08-21T23:18:08Z,862,328,2005-08-27T01:06:08Z,2,2020-02-15T06:59:46Z +14756,2005-08-21T23:21:23Z,564,288,2005-08-24T01:44:23Z,1,2020-02-15T06:59:46Z +14757,2005-08-21T23:23:37Z,1154,473,2005-08-26T23:24:37Z,2,2020-02-15T06:59:46Z +14758,2005-08-21T23:24:52Z,2372,339,2005-08-27T04:25:52Z,2,2020-02-15T06:59:46Z +14759,2005-08-21T23:28:58Z,3871,362,2005-08-31T00:35:58Z,2,2020-02-15T06:59:46Z +14760,2006-02-14T15:16:03Z,1367,355,,1,2020-02-15T06:59:46Z +14761,2005-08-21T23:30:28Z,2657,490,2005-08-26T03:26:28Z,1,2020-02-15T06:59:46Z +14762,2005-08-21T23:33:57Z,4249,1,2005-08-23T01:30:57Z,1,2020-02-15T06:59:46Z +14763,2005-08-21T23:34:00Z,1480,116,2005-08-31T03:58:00Z,2,2020-02-15T06:59:46Z +14764,2005-08-21T23:37:47Z,1270,529,2005-08-24T00:23:47Z,2,2020-02-15T06:59:46Z +14765,2005-08-21T23:40:28Z,2817,435,2005-08-25T04:55:28Z,2,2020-02-15T06:59:46Z +14766,2005-08-21T23:42:20Z,768,523,2005-08-26T03:46:20Z,1,2020-02-15T06:59:46Z +14767,2005-08-21T23:43:00Z,1232,69,2005-08-29T05:26:00Z,1,2020-02-15T06:59:46Z +14768,2005-08-21T23:44:53Z,3465,570,2005-08-27T20:33:53Z,1,2020-02-15T06:59:46Z +14769,2006-02-14T15:16:03Z,1800,361,,1,2020-02-15T06:59:46Z +14770,2005-08-21T23:47:16Z,2977,372,2005-08-25T04:48:16Z,1,2020-02-15T06:59:46Z +14771,2005-08-21T23:50:15Z,2665,149,2005-08-28T22:55:15Z,2,2020-02-15T06:59:46Z +14772,2005-08-21T23:50:39Z,4047,411,2005-08-30T20:44:39Z,2,2020-02-15T06:59:46Z +14773,2005-08-21T23:50:57Z,2541,413,2005-08-26T04:45:57Z,2,2020-02-15T06:59:46Z +14774,2005-08-21T23:52:32Z,3185,252,2005-08-26T23:42:32Z,2,2020-02-15T06:59:46Z +14775,2005-08-21T23:53:07Z,4044,400,2005-08-22T18:07:07Z,2,2020-02-15T06:59:46Z +14776,2005-08-21T23:53:35Z,3488,15,2005-08-24T02:00:35Z,2,2020-02-15T06:59:46Z +14777,2005-08-21T23:55:50Z,237,389,2005-08-28T04:31:50Z,1,2020-02-15T06:59:46Z +14778,2005-08-21T23:56:30Z,2152,396,2005-08-26T00:07:30Z,2,2020-02-15T06:59:46Z +14779,2005-08-22T00:00:56Z,1087,279,2005-08-31T00:01:56Z,2,2020-02-15T06:59:46Z +14780,2005-08-22T00:06:33Z,3171,491,2005-08-22T22:02:33Z,2,2020-02-15T06:59:46Z +14781,2005-08-22T00:15:12Z,3458,71,2005-08-29T21:02:12Z,1,2020-02-15T06:59:46Z +14782,2005-08-22T00:17:20Z,1727,211,2005-08-23T01:24:20Z,1,2020-02-15T06:59:46Z +14783,2005-08-22T00:21:57Z,3419,332,2005-08-28T01:27:57Z,2,2020-02-15T06:59:46Z +14784,2005-08-22T00:23:13Z,441,117,2005-08-28T03:42:13Z,1,2020-02-15T06:59:46Z +14785,2005-08-22T00:24:37Z,1981,560,2005-08-25T04:15:37Z,1,2020-02-15T06:59:46Z +14786,2005-08-22T00:24:42Z,2959,370,2005-08-25T19:36:42Z,1,2020-02-15T06:59:46Z +14787,2005-08-22T00:25:59Z,2634,38,2005-08-28T22:30:59Z,2,2020-02-15T06:59:46Z +14788,2005-08-22T00:27:59Z,1917,139,2005-08-29T23:54:59Z,2,2020-02-15T06:59:46Z +14789,2005-08-22T00:29:39Z,2344,279,2005-08-25T02:25:39Z,1,2020-02-15T06:59:46Z +14790,2005-08-22T00:34:17Z,1002,397,2005-08-31T02:27:17Z,1,2020-02-15T06:59:46Z +14791,2005-08-22T00:35:55Z,1490,317,2005-08-30T20:23:55Z,1,2020-02-15T06:59:46Z +14792,2005-08-22T00:36:41Z,4436,396,2005-08-30T18:58:41Z,1,2020-02-15T06:59:46Z +14793,2005-08-22T00:37:57Z,4285,154,2005-08-29T05:44:57Z,2,2020-02-15T06:59:46Z +14794,2005-08-22T00:39:31Z,413,156,2005-08-28T20:08:31Z,2,2020-02-15T06:59:46Z +14795,2005-08-22T00:40:22Z,1695,303,2005-08-26T01:37:22Z,1,2020-02-15T06:59:46Z +14796,2005-08-22T00:40:49Z,941,441,2005-08-30T03:59:49Z,1,2020-02-15T06:59:46Z +14797,2005-08-22T00:41:24Z,1131,546,2005-08-23T18:51:24Z,1,2020-02-15T06:59:46Z +14798,2005-08-22T00:44:08Z,7,92,2005-08-27T02:18:08Z,2,2020-02-15T06:59:46Z +14799,2005-08-22T00:44:57Z,1276,454,2005-08-24T20:08:57Z,2,2020-02-15T06:59:46Z +14800,2005-08-22T00:46:18Z,3554,533,2005-08-26T01:44:18Z,2,2020-02-15T06:59:46Z +14801,2005-08-22T00:46:54Z,1677,184,2005-08-30T19:03:54Z,1,2020-02-15T06:59:46Z +14802,2005-08-22T00:48:23Z,707,505,2005-08-28T01:02:23Z,1,2020-02-15T06:59:46Z +14803,2005-08-22T00:49:10Z,2525,278,2005-08-22T23:44:10Z,2,2020-02-15T06:59:46Z +14804,2005-08-22T00:51:25Z,372,94,2005-08-26T21:15:25Z,1,2020-02-15T06:59:46Z +14805,2005-08-22T00:52:01Z,783,169,2005-08-23T03:28:01Z,2,2020-02-15T06:59:46Z +14806,2005-08-22T00:53:08Z,2049,231,2005-08-23T06:26:08Z,2,2020-02-15T06:59:46Z +14807,2005-08-22T00:57:43Z,335,90,2005-08-26T23:40:43Z,1,2020-02-15T06:59:46Z +14808,2005-08-22T00:58:35Z,1657,362,2005-08-29T20:16:35Z,2,2020-02-15T06:59:46Z +14809,2005-08-22T01:00:42Z,1077,188,2005-08-29T19:55:42Z,1,2020-02-15T06:59:46Z +14810,2005-08-22T01:08:34Z,1982,78,2005-08-25T07:00:34Z,2,2020-02-15T06:59:46Z +14811,2005-08-22T01:09:04Z,1613,53,2005-08-26T19:30:04Z,1,2020-02-15T06:59:46Z +14812,2005-08-22T01:10:32Z,4282,211,2005-08-26T05:21:32Z,1,2020-02-15T06:59:46Z +14813,2005-08-22T01:11:37Z,3364,142,2005-08-24T05:57:37Z,2,2020-02-15T06:59:46Z +14814,2005-08-22T01:12:14Z,3109,250,2005-08-27T23:24:14Z,2,2020-02-15T06:59:46Z +14815,2005-08-22T01:12:44Z,1183,314,2005-08-24T01:42:44Z,2,2020-02-15T06:59:46Z +14816,2005-08-22T01:15:51Z,4086,534,2005-08-28T04:11:51Z,1,2020-02-15T06:59:46Z +14817,2005-08-22T01:17:16Z,910,215,2005-08-27T02:43:16Z,1,2020-02-15T06:59:46Z +14818,2005-08-22T01:17:18Z,1619,580,2005-08-26T05:40:18Z,1,2020-02-15T06:59:46Z +14819,2005-08-22T01:17:19Z,2890,410,2005-08-30T05:54:19Z,1,2020-02-15T06:59:46Z +14820,2005-08-22T01:18:37Z,1409,52,2005-08-23T19:44:37Z,1,2020-02-15T06:59:46Z +14821,2005-08-22T01:20:19Z,3155,62,2005-08-29T03:06:19Z,2,2020-02-15T06:59:46Z +14822,2005-08-22T01:21:14Z,2835,52,2005-08-30T03:59:14Z,1,2020-02-15T06:59:46Z +14823,2005-08-22T01:24:42Z,680,503,2005-08-22T19:45:42Z,2,2020-02-15T06:59:46Z +14824,2005-08-22T01:27:51Z,4162,594,2005-08-23T03:24:51Z,2,2020-02-15T06:59:46Z +14825,2005-08-22T01:27:57Z,1449,1,2005-08-27T07:01:57Z,2,2020-02-15T06:59:46Z +14826,2005-08-22T01:32:14Z,4023,426,2005-08-23T03:52:14Z,2,2020-02-15T06:59:46Z +14827,2005-08-22T01:32:32Z,2267,88,2005-08-31T06:21:32Z,2,2020-02-15T06:59:46Z +14828,2005-08-22T01:34:05Z,4114,319,2005-08-27T06:27:05Z,2,2020-02-15T06:59:46Z +14829,2005-08-22T01:35:37Z,3606,546,2005-08-23T19:55:37Z,2,2020-02-15T06:59:46Z +14830,2005-08-22T01:37:19Z,637,590,2005-08-27T20:10:19Z,1,2020-02-15T06:59:46Z +14831,2005-08-22T01:40:49Z,3370,156,2005-08-23T02:47:49Z,1,2020-02-15T06:59:46Z +14832,2005-08-22T01:43:29Z,1828,494,2005-08-29T07:19:29Z,2,2020-02-15T06:59:46Z +14833,2005-08-22T01:45:18Z,1960,551,2005-08-28T21:24:18Z,1,2020-02-15T06:59:46Z +14834,2005-08-22T01:45:58Z,3105,262,2005-08-28T20:52:58Z,1,2020-02-15T06:59:46Z +14835,2005-08-22T01:49:07Z,755,404,2005-08-30T04:28:07Z,1,2020-02-15T06:59:46Z +14836,2005-08-22T01:52:26Z,4287,418,2005-08-22T23:39:26Z,1,2020-02-15T06:59:46Z +14837,2005-08-22T01:54:52Z,2251,43,2005-08-29T02:24:52Z,1,2020-02-15T06:59:46Z +14838,2005-08-22T01:57:34Z,506,404,2005-08-25T06:34:34Z,1,2020-02-15T06:59:46Z +14839,2005-08-22T01:58:15Z,3440,567,2005-08-24T05:24:15Z,2,2020-02-15T06:59:46Z +14840,2005-08-22T01:58:42Z,1240,354,2005-08-29T22:32:42Z,2,2020-02-15T06:59:46Z +14841,2005-08-22T02:03:30Z,4017,384,2005-08-28T02:08:30Z,2,2020-02-15T06:59:46Z +14842,2005-08-22T02:04:38Z,2511,467,2005-08-30T06:46:38Z,2,2020-02-15T06:59:46Z +14843,2005-08-22T02:05:25Z,3000,454,2005-08-28T22:11:25Z,1,2020-02-15T06:59:46Z +14844,2005-08-22T02:09:12Z,145,513,2005-08-31T05:43:12Z,1,2020-02-15T06:59:46Z +14845,2005-08-22T02:12:44Z,69,292,2005-08-24T02:36:44Z,2,2020-02-15T06:59:46Z +14846,2005-08-22T02:13:48Z,3840,309,2005-08-30T05:39:48Z,1,2020-02-15T06:59:46Z +14847,2005-08-22T02:13:51Z,2995,327,2005-08-29T03:42:51Z,2,2020-02-15T06:59:46Z +14848,2005-08-22T02:14:19Z,395,218,2005-08-26T02:54:19Z,2,2020-02-15T06:59:46Z +14849,2005-08-22T02:15:26Z,3354,177,2005-08-28T00:56:26Z,2,2020-02-15T06:59:46Z +14850,2005-08-22T02:16:55Z,2405,435,2005-08-26T21:08:55Z,1,2020-02-15T06:59:46Z +14851,2005-08-22T02:20:44Z,1139,180,2005-08-26T08:02:44Z,2,2020-02-15T06:59:46Z +14852,2005-08-22T02:25:53Z,2262,352,2005-08-25T04:27:53Z,1,2020-02-15T06:59:46Z +14853,2005-08-22T02:26:33Z,3575,388,2005-08-31T02:49:33Z,2,2020-02-15T06:59:46Z +14854,2005-08-22T02:26:47Z,1989,117,2005-08-23T05:53:47Z,1,2020-02-15T06:59:46Z +14855,2005-08-22T02:27:32Z,1668,187,2005-08-31T03:35:32Z,1,2020-02-15T06:59:46Z +14856,2005-08-22T02:31:51Z,3292,151,2005-08-26T23:41:51Z,2,2020-02-15T06:59:46Z +14857,2005-08-22T02:42:39Z,4150,232,2005-08-24T21:26:39Z,2,2020-02-15T06:59:46Z +14858,2005-08-22T02:46:18Z,366,499,2005-08-30T08:22:18Z,1,2020-02-15T06:59:46Z +14859,2005-08-22T02:46:35Z,2150,463,2005-08-24T22:37:35Z,2,2020-02-15T06:59:46Z +14860,2005-08-22T02:47:07Z,1368,418,2005-08-28T00:00:07Z,1,2020-02-15T06:59:46Z +14861,2005-08-22T02:48:05Z,1806,422,2005-08-27T00:50:05Z,1,2020-02-15T06:59:46Z +14862,2005-08-22T02:51:41Z,3479,78,2005-08-28T06:30:41Z,2,2020-02-15T06:59:46Z +14863,2005-08-22T02:57:04Z,779,440,2005-08-30T03:24:04Z,2,2020-02-15T06:59:46Z +14864,2005-08-22T02:57:06Z,2872,460,2005-08-22T22:19:06Z,1,2020-02-15T06:59:46Z +14865,2005-08-22T03:06:38Z,3775,94,2005-08-23T04:26:38Z,1,2020-02-15T06:59:46Z +14866,2005-08-22T03:11:35Z,2607,445,2005-08-30T00:10:35Z,1,2020-02-15T06:59:46Z +14867,2005-08-22T03:14:46Z,271,114,2005-08-25T03:53:46Z,2,2020-02-15T06:59:46Z +14868,2005-08-22T03:15:01Z,4383,160,2005-08-25T01:24:01Z,1,2020-02-15T06:59:46Z +14869,2005-08-22T03:20:26Z,455,21,2005-08-23T05:25:26Z,2,2020-02-15T06:59:46Z +14870,2005-08-22T03:23:20Z,2170,512,2005-08-23T06:50:20Z,2,2020-02-15T06:59:46Z +14871,2005-08-22T03:23:24Z,3411,204,2005-08-23T22:23:24Z,2,2020-02-15T06:59:46Z +14872,2005-08-22T03:23:41Z,962,15,2005-08-29T23:25:41Z,1,2020-02-15T06:59:46Z +14873,2005-08-22T03:31:06Z,3533,314,2005-08-31T05:34:06Z,1,2020-02-15T06:59:46Z +14874,2005-08-22T03:32:05Z,1782,268,2005-08-24T07:02:05Z,2,2020-02-15T06:59:46Z +14875,2005-08-22T03:34:39Z,3912,513,2005-08-26T03:40:39Z,1,2020-02-15T06:59:46Z +14876,2005-08-22T03:39:29Z,3669,210,2005-08-23T06:53:29Z,1,2020-02-15T06:59:46Z +14877,2005-08-22T03:39:56Z,974,266,2005-08-24T03:41:56Z,2,2020-02-15T06:59:46Z +14878,2006-02-14T15:16:03Z,1202,441,,2,2020-02-15T06:59:46Z +14879,2005-08-22T03:42:12Z,2154,148,2005-08-27T06:14:12Z,1,2020-02-15T06:59:46Z +14880,2005-08-22T03:44:36Z,3615,224,2005-08-24T05:45:36Z,2,2020-02-15T06:59:46Z +14881,2005-08-22T03:47:39Z,210,425,2005-08-26T05:58:39Z,2,2020-02-15T06:59:46Z +14882,2005-08-22T03:52:21Z,12,417,2005-08-25T04:50:21Z,2,2020-02-15T06:59:46Z +14883,2005-08-22T03:55:02Z,1946,177,2005-08-28T02:51:02Z,1,2020-02-15T06:59:46Z +14884,2005-08-22T03:57:08Z,2957,547,2005-08-23T07:11:08Z,1,2020-02-15T06:59:46Z +14885,2005-08-22T03:58:29Z,2097,248,2005-08-30T05:26:29Z,1,2020-02-15T06:59:46Z +14886,2005-08-22T03:59:01Z,4330,379,2005-08-23T01:22:01Z,1,2020-02-15T06:59:46Z +14887,2005-08-22T04:04:31Z,56,421,2005-08-31T02:30:31Z,1,2020-02-15T06:59:46Z +14888,2005-08-22T04:09:18Z,3345,91,2005-08-23T07:34:18Z,2,2020-02-15T06:59:46Z +14889,2005-08-22T04:10:10Z,1579,299,2005-08-24T06:23:10Z,2,2020-02-15T06:59:46Z +14890,2005-08-22T04:10:49Z,517,346,2005-08-30T23:23:49Z,1,2020-02-15T06:59:46Z +14891,2005-08-22T04:11:02Z,288,482,2005-08-27T03:22:02Z,1,2020-02-15T06:59:46Z +14892,2005-08-22T04:15:05Z,3061,82,2005-08-31T06:07:05Z,1,2020-02-15T06:59:46Z +14893,2005-08-22T04:15:48Z,2336,461,2005-08-30T08:05:48Z,1,2020-02-15T06:59:46Z +14894,2005-08-22T04:16:56Z,3494,347,2005-08-24T00:30:56Z,2,2020-02-15T06:59:46Z +14895,2005-08-22T04:19:23Z,4462,340,2005-08-27T04:02:23Z,1,2020-02-15T06:59:46Z +14896,2005-08-22T04:20:55Z,2508,569,2005-08-29T05:11:55Z,2,2020-02-15T06:59:46Z +14897,2005-08-22T04:22:31Z,1607,175,2005-08-26T00:09:31Z,1,2020-02-15T06:59:46Z +14898,2005-08-22T04:26:34Z,1736,299,2005-08-31T10:04:34Z,1,2020-02-15T06:59:46Z +14899,2005-08-22T04:26:38Z,3700,304,2005-08-31T08:36:38Z,2,2020-02-15T06:59:46Z +14900,2005-08-22T04:27:48Z,3420,329,2005-08-25T03:50:48Z,2,2020-02-15T06:59:46Z +14901,2005-08-22T04:31:37Z,4297,258,2005-08-29T08:24:37Z,1,2020-02-15T06:59:46Z +14902,2005-08-22T04:31:50Z,866,423,2005-08-23T23:47:50Z,2,2020-02-15T06:59:46Z +14903,2005-08-22T04:31:50Z,1795,51,2005-08-25T22:53:50Z,2,2020-02-15T06:59:46Z +14904,2005-08-22T04:32:01Z,722,71,2005-08-29T05:21:01Z,1,2020-02-15T06:59:46Z +14905,2005-08-22T04:34:22Z,4166,286,2005-08-26T04:00:22Z,2,2020-02-15T06:59:46Z +14906,2005-08-22T04:38:18Z,153,366,2005-08-29T23:03:18Z,1,2020-02-15T06:59:46Z +14907,2005-08-22T04:44:09Z,2469,116,2005-08-25T09:53:09Z,1,2020-02-15T06:59:46Z +14908,2005-08-22T04:44:10Z,102,349,2005-08-25T05:09:10Z,2,2020-02-15T06:59:46Z +14909,2005-08-22T04:48:44Z,1997,155,2005-08-25T04:59:44Z,1,2020-02-15T06:59:46Z +14910,2005-08-22T04:50:52Z,1266,540,2005-08-25T04:14:52Z,1,2020-02-15T06:59:46Z +14911,2005-08-22T04:51:42Z,353,273,2005-08-28T05:37:42Z,1,2020-02-15T06:59:46Z +14912,2005-08-22T04:51:42Z,2658,404,2005-08-23T23:50:42Z,1,2020-02-15T06:59:46Z +14913,2005-08-22T04:52:13Z,3609,503,2005-08-23T06:49:13Z,2,2020-02-15T06:59:46Z +14914,2005-08-22T04:53:35Z,4348,156,2005-08-26T10:35:35Z,1,2020-02-15T06:59:46Z +14915,2006-02-14T15:16:03Z,112,349,,1,2020-02-15T06:59:46Z +14916,2005-08-22T04:56:57Z,2110,80,2005-08-24T06:36:57Z,2,2020-02-15T06:59:46Z +14917,2005-08-22T05:03:59Z,377,289,2005-08-29T04:00:59Z,2,2020-02-15T06:59:46Z +14918,2005-08-22T05:06:38Z,4056,154,2005-08-30T01:44:38Z,2,2020-02-15T06:59:46Z +14919,2005-08-22T05:07:17Z,1587,244,2005-08-30T06:41:17Z,2,2020-02-15T06:59:46Z +14920,2005-08-22T05:08:58Z,3357,106,2005-08-23T02:51:58Z,1,2020-02-15T06:59:46Z +14921,2005-08-22T05:12:24Z,3724,284,2005-08-26T08:20:24Z,2,2020-02-15T06:59:46Z +14922,2005-08-22T05:13:05Z,2322,151,2005-08-30T04:59:05Z,1,2020-02-15T06:59:46Z +14923,2005-08-22T05:13:33Z,3434,460,2005-08-28T01:39:33Z,2,2020-02-15T06:59:46Z +14924,2005-08-22T05:15:17Z,4189,118,2005-08-23T10:11:17Z,1,2020-02-15T06:59:46Z +14925,2005-08-22T05:16:16Z,442,128,2005-08-30T02:47:16Z,2,2020-02-15T06:59:46Z +14926,2005-08-22T05:18:44Z,2448,357,2005-08-26T02:18:44Z,1,2020-02-15T06:59:46Z +14927,2005-08-22T05:31:53Z,952,193,2005-08-27T07:04:53Z,1,2020-02-15T06:59:46Z +14928,2006-02-14T15:16:03Z,4375,472,,1,2020-02-15T06:59:46Z +14929,2005-08-22T05:32:38Z,4195,546,2005-08-28T00:02:38Z,1,2020-02-15T06:59:46Z +14930,2005-08-22T05:38:32Z,2875,584,2005-08-30T07:21:32Z,1,2020-02-15T06:59:46Z +14931,2005-08-22T05:38:55Z,657,63,2005-08-28T04:15:55Z,2,2020-02-15T06:59:46Z +14932,2005-08-22T05:40:39Z,2259,516,2005-08-23T11:02:39Z,2,2020-02-15T06:59:46Z +14933,2006-02-14T15:16:03Z,1186,21,,2,2020-02-15T06:59:46Z +14934,2005-08-22T05:47:15Z,815,226,2005-08-26T11:32:15Z,1,2020-02-15T06:59:46Z +14935,2005-08-22T05:47:31Z,2025,380,2005-08-29T00:33:31Z,2,2020-02-15T06:59:46Z +14936,2005-08-22T05:51:26Z,3710,241,2005-08-29T10:21:26Z,2,2020-02-15T06:59:46Z +14937,2005-08-22T05:51:59Z,1241,348,2005-08-31T01:45:59Z,2,2020-02-15T06:59:46Z +14938,2005-08-22T05:52:39Z,408,541,2005-08-31T11:43:39Z,1,2020-02-15T06:59:46Z +14939,2005-08-22T05:53:52Z,719,328,2005-08-27T06:20:52Z,1,2020-02-15T06:59:46Z +14940,2005-08-22T05:54:03Z,2635,46,2005-08-24T05:52:03Z,2,2020-02-15T06:59:46Z +14941,2005-08-22T05:58:23Z,2328,574,2005-08-28T10:58:23Z,1,2020-02-15T06:59:46Z +14942,2005-08-22T05:58:27Z,32,471,2005-08-31T10:08:27Z,1,2020-02-15T06:59:46Z +14943,2005-08-22T05:59:59Z,3515,265,2005-08-26T10:31:59Z,2,2020-02-15T06:59:46Z +14944,2005-08-22T06:01:26Z,535,153,2005-08-24T10:33:26Z,2,2020-02-15T06:59:46Z +14945,2005-08-22T06:05:38Z,1567,304,2005-08-29T12:01:38Z,1,2020-02-15T06:59:46Z +14946,2005-08-22T06:07:10Z,1395,308,2005-08-28T05:25:10Z,1,2020-02-15T06:59:46Z +14947,2005-08-22T06:07:52Z,3497,68,2005-08-28T01:12:52Z,2,2020-02-15T06:59:46Z +14948,2005-08-22T06:10:53Z,2914,488,2005-08-28T11:24:53Z,2,2020-02-15T06:59:46Z +14949,2005-08-22T06:12:16Z,2434,111,2005-08-25T08:25:16Z,2,2020-02-15T06:59:46Z +14950,2005-08-22T06:17:12Z,635,362,2005-08-27T08:48:12Z,2,2020-02-15T06:59:46Z +14951,2005-08-22T06:19:37Z,2800,197,2005-08-30T05:51:37Z,2,2020-02-15T06:59:46Z +14952,2005-08-22T06:20:07Z,2950,575,2005-08-28T01:18:07Z,1,2020-02-15T06:59:46Z +14953,2005-08-22T06:23:54Z,816,182,2005-08-28T03:19:54Z,1,2020-02-15T06:59:46Z +14954,2006-02-14T15:16:03Z,3608,525,,1,2020-02-15T06:59:46Z +14955,2005-08-22T06:25:52Z,1534,445,2005-08-25T12:13:52Z,2,2020-02-15T06:59:46Z +14956,2005-08-22T06:26:16Z,3650,571,2005-08-25T11:06:16Z,2,2020-02-15T06:59:46Z +14957,2005-08-22T06:29:34Z,1384,323,2005-08-26T04:52:34Z,2,2020-02-15T06:59:46Z +14958,2005-08-22T06:30:10Z,1710,347,2005-08-28T09:43:10Z,2,2020-02-15T06:59:46Z +14959,2005-08-22T06:30:28Z,2009,569,2005-08-25T09:48:28Z,1,2020-02-15T06:59:46Z +14960,2005-08-22T06:31:36Z,3316,147,2005-08-29T07:10:36Z,2,2020-02-15T06:59:46Z +14961,2005-08-22T06:35:50Z,3274,52,2005-08-31T04:07:50Z,2,2020-02-15T06:59:46Z +14962,2005-08-22T06:37:43Z,3104,449,2005-08-29T03:44:43Z,2,2020-02-15T06:59:46Z +14963,2005-08-22T06:38:10Z,2672,384,2005-08-31T05:35:10Z,2,2020-02-15T06:59:46Z +14964,2005-08-22T06:39:24Z,2302,500,2005-08-26T06:05:24Z,1,2020-02-15T06:59:46Z +14965,2005-08-22T06:45:53Z,1036,148,2005-08-27T10:05:53Z,1,2020-02-15T06:59:46Z +14966,2005-08-22T06:45:57Z,679,259,2005-08-31T10:02:57Z,1,2020-02-15T06:59:46Z +14967,2005-08-22T06:46:03Z,289,67,2005-08-23T01:02:03Z,2,2020-02-15T06:59:46Z +14968,2005-08-22T06:46:59Z,3302,129,2005-08-29T07:36:59Z,1,2020-02-15T06:59:46Z +14969,2005-08-22T06:49:15Z,4060,120,2005-08-29T05:52:15Z,1,2020-02-15T06:59:46Z +14970,2005-08-22T06:49:29Z,536,529,2005-08-29T08:47:29Z,1,2020-02-15T06:59:46Z +14971,2005-08-22T06:52:49Z,1883,378,2005-08-28T06:27:49Z,2,2020-02-15T06:59:46Z +14972,2005-08-22T06:53:21Z,3422,310,2005-08-29T02:25:21Z,1,2020-02-15T06:59:46Z +14973,2005-08-22T06:59:28Z,2888,201,2005-08-30T02:28:28Z,1,2020-02-15T06:59:46Z +14974,2005-08-22T07:04:25Z,2596,157,2005-08-27T12:39:25Z,1,2020-02-15T06:59:46Z +14975,2005-08-22T07:07:50Z,924,244,2005-08-28T07:23:50Z,2,2020-02-15T06:59:46Z +14976,2005-08-22T07:10:26Z,77,581,2005-08-28T07:22:26Z,1,2020-02-15T06:59:46Z +14977,2005-08-22T07:12:53Z,4093,59,2005-08-30T08:11:53Z,2,2020-02-15T06:59:46Z +14978,2005-08-22T07:13:15Z,699,94,2005-08-25T12:26:15Z,1,2020-02-15T06:59:46Z +14979,2005-08-22T07:16:36Z,2320,387,2005-08-24T02:29:36Z,2,2020-02-15T06:59:46Z +14980,2005-08-22T07:16:45Z,2701,518,2005-08-26T06:04:45Z,2,2020-02-15T06:59:46Z +14981,2005-08-22T07:19:05Z,1239,544,2005-08-26T03:08:05Z,2,2020-02-15T06:59:46Z +14982,2005-08-22T07:20:55Z,2333,542,2005-08-31T04:35:55Z,2,2020-02-15T06:59:46Z +14983,2005-08-22T07:32:23Z,3579,363,2005-08-30T11:39:23Z,2,2020-02-15T06:59:46Z +14984,2005-08-22T07:35:31Z,1704,334,2005-08-30T02:32:31Z,1,2020-02-15T06:59:46Z +14985,2005-08-22T07:35:56Z,2017,29,2005-08-29T13:17:56Z,1,2020-02-15T06:59:46Z +14986,2005-08-22T07:37:24Z,1493,278,2005-08-23T04:22:24Z,2,2020-02-15T06:59:46Z +14987,2005-08-22T07:41:08Z,1513,138,2005-08-24T03:15:08Z,2,2020-02-15T06:59:46Z +14988,2005-08-22T07:46:05Z,2114,186,2005-08-29T06:43:05Z,1,2020-02-15T06:59:46Z +14989,2005-08-22T07:47:07Z,1431,58,2005-08-26T04:42:07Z,2,2020-02-15T06:59:46Z +14990,2005-08-22T07:48:01Z,4057,198,2005-08-24T06:41:01Z,2,2020-02-15T06:59:46Z +14991,2005-08-22T07:50:44Z,708,172,2005-08-30T06:32:44Z,2,2020-02-15T06:59:46Z +14992,2005-08-22T07:51:47Z,4430,415,2005-08-25T08:17:47Z,2,2020-02-15T06:59:46Z +14993,2005-08-22T07:52:18Z,3416,437,2005-08-27T02:13:18Z,1,2020-02-15T06:59:46Z +14994,2005-08-22T07:52:24Z,1601,509,2005-08-26T09:57:24Z,1,2020-02-15T06:59:46Z +14995,2005-08-22T07:52:31Z,4178,482,2005-08-24T05:16:31Z,1,2020-02-15T06:59:46Z +14996,2005-08-22T07:52:41Z,1178,411,2005-08-29T02:35:41Z,1,2020-02-15T06:59:46Z +14997,2005-08-22T07:53:00Z,2724,29,2005-08-28T03:47:00Z,2,2020-02-15T06:59:46Z +14998,2005-08-22T07:53:14Z,3852,92,2005-08-24T03:46:14Z,2,2020-02-15T06:59:46Z +14999,2005-08-22T07:54:47Z,3399,594,2005-08-23T08:39:47Z,1,2020-02-15T06:59:46Z +15000,2005-08-22T07:54:58Z,3080,161,2005-08-24T12:46:58Z,2,2020-02-15T06:59:46Z +15001,2005-08-22T08:00:49Z,2869,186,2005-08-27T05:53:49Z,2,2020-02-15T06:59:46Z +15002,2005-08-22T08:06:00Z,4198,242,2005-08-24T10:48:00Z,1,2020-02-15T06:59:46Z +15003,2005-08-22T08:11:24Z,4009,167,2005-08-28T08:49:24Z,1,2020-02-15T06:59:46Z +15004,2005-08-22T08:15:21Z,4464,375,2005-08-28T10:35:21Z,1,2020-02-15T06:59:46Z +15005,2005-08-22T08:15:44Z,2897,335,2005-08-24T09:52:44Z,2,2020-02-15T06:59:46Z +15006,2005-08-22T08:20:15Z,2967,97,2005-08-23T11:57:15Z,1,2020-02-15T06:59:46Z +15007,2005-08-22T08:21:21Z,3692,165,2005-08-27T04:44:21Z,2,2020-02-15T06:59:46Z +15008,2005-08-22T08:24:32Z,961,277,2005-08-31T13:48:32Z,2,2020-02-15T06:59:46Z +15009,2005-08-22T08:27:27Z,4025,325,2005-08-26T05:57:27Z,2,2020-02-15T06:59:46Z +15010,2005-08-22T08:30:17Z,171,508,2005-08-29T13:24:17Z,2,2020-02-15T06:59:46Z +15011,2005-08-22T08:31:07Z,2722,329,2005-08-24T04:47:07Z,1,2020-02-15T06:59:46Z +15012,2005-08-22T08:42:32Z,1584,454,2005-08-28T05:04:32Z,1,2020-02-15T06:59:46Z +15013,2005-08-22T08:42:45Z,141,141,2005-08-24T05:20:45Z,2,2020-02-15T06:59:46Z +15014,2005-08-22T08:43:11Z,3678,373,2005-08-31T02:55:11Z,1,2020-02-15T06:59:46Z +15015,2005-08-22T08:43:50Z,3067,14,2005-08-31T06:53:50Z,2,2020-02-15T06:59:46Z +15016,2005-08-22T08:47:35Z,879,434,2005-08-28T14:23:35Z,2,2020-02-15T06:59:46Z +15017,2005-08-22T08:47:44Z,3975,144,2005-08-29T08:16:44Z,1,2020-02-15T06:59:46Z +15018,2005-08-22T08:52:38Z,394,504,2005-08-25T08:08:38Z,1,2020-02-15T06:59:46Z +15019,2005-08-22T08:52:53Z,3425,450,2005-08-25T13:07:53Z,2,2020-02-15T06:59:46Z +15020,2005-08-22T08:54:12Z,3460,267,2005-08-27T04:54:12Z,1,2020-02-15T06:59:46Z +15021,2006-02-14T15:16:03Z,418,100,,2,2020-02-15T06:59:46Z +15022,2005-08-22T08:55:43Z,249,506,2005-08-31T05:35:43Z,2,2020-02-15T06:59:46Z +15023,2005-08-22T08:56:48Z,358,296,2005-08-29T08:13:48Z,1,2020-02-15T06:59:46Z +15024,2005-08-22T08:57:10Z,1831,139,2005-08-24T10:39:10Z,1,2020-02-15T06:59:46Z +15025,2005-08-22T08:57:24Z,2107,257,2005-08-24T06:09:24Z,2,2020-02-15T06:59:46Z +15026,2005-08-22T09:01:52Z,4328,66,2005-08-28T09:21:52Z,1,2020-02-15T06:59:46Z +15027,2005-08-22T09:03:04Z,326,478,2005-08-29T04:03:04Z,2,2020-02-15T06:59:46Z +15028,2005-08-22T09:03:44Z,4248,37,2005-08-30T11:28:44Z,1,2020-02-15T06:59:46Z +15029,2005-08-22T09:04:53Z,2234,139,2005-08-25T09:03:53Z,1,2020-02-15T06:59:46Z +15030,2005-08-22T09:10:21Z,3168,341,2005-08-24T06:00:21Z,2,2020-02-15T06:59:46Z +15031,2005-08-22T09:11:48Z,3926,430,2005-08-27T06:11:48Z,1,2020-02-15T06:59:46Z +15032,2005-08-22T09:14:09Z,3414,467,2005-08-25T09:50:09Z,2,2020-02-15T06:59:46Z +15033,2005-08-22T09:25:24Z,2431,168,2005-08-28T09:56:24Z,2,2020-02-15T06:59:46Z +15034,2005-08-22T09:33:08Z,1331,235,2005-08-29T13:04:08Z,1,2020-02-15T06:59:46Z +15035,2005-08-22T09:34:32Z,339,513,2005-08-28T10:23:32Z,1,2020-02-15T06:59:46Z +15036,2005-08-22T09:36:00Z,874,280,2005-08-23T08:12:00Z,2,2020-02-15T06:59:46Z +15037,2005-08-22T09:36:33Z,4517,234,2005-08-31T11:20:33Z,2,2020-02-15T06:59:46Z +15038,2005-08-22T09:37:27Z,1685,3,2005-08-23T14:39:27Z,1,2020-02-15T06:59:46Z +15039,2005-08-22T09:37:54Z,895,180,2005-08-28T12:23:54Z,1,2020-02-15T06:59:46Z +15040,2005-08-22T09:41:09Z,3207,523,2005-08-23T12:49:09Z,2,2020-02-15T06:59:46Z +15041,2005-08-22T09:43:18Z,1913,372,2005-08-23T11:04:18Z,2,2020-02-15T06:59:46Z +15042,2005-08-22T09:47:37Z,3796,553,2005-08-31T04:42:37Z,1,2020-02-15T06:59:46Z +15043,2005-08-22T09:49:32Z,3797,182,2005-08-28T13:50:32Z,1,2020-02-15T06:59:46Z +15044,2005-08-22T09:51:54Z,4513,439,2005-08-31T12:45:54Z,1,2020-02-15T06:59:46Z +15045,2005-08-22T09:53:23Z,3485,161,2005-08-26T10:09:23Z,2,2020-02-15T06:59:46Z +15046,2005-08-22T09:54:54Z,1536,474,2005-08-26T07:34:54Z,1,2020-02-15T06:59:46Z +15047,2005-08-22T09:57:16Z,1309,19,2005-08-23T11:39:16Z,1,2020-02-15T06:59:46Z +15048,2005-08-22T10:00:04Z,2895,27,2005-08-26T08:26:04Z,1,2020-02-15T06:59:46Z +15049,2005-08-22T10:06:28Z,1573,102,2005-08-26T15:12:28Z,1,2020-02-15T06:59:46Z +15050,2005-08-22T10:07:52Z,3961,167,2005-08-23T04:45:52Z,1,2020-02-15T06:59:46Z +15051,2005-08-22T10:08:50Z,1419,300,2005-08-28T10:23:50Z,1,2020-02-15T06:59:46Z +15052,2005-08-22T10:09:19Z,2349,147,2005-08-31T09:27:19Z,2,2020-02-15T06:59:46Z +15053,2005-08-22T10:13:09Z,1065,374,2005-08-28T12:42:09Z,2,2020-02-15T06:59:46Z +15054,2005-08-22T10:14:33Z,2314,44,2005-08-25T15:07:33Z,1,2020-02-15T06:59:46Z +15055,2005-08-22T10:14:39Z,623,125,2005-08-25T07:25:39Z,2,2020-02-15T06:59:46Z +15056,2005-08-22T10:15:54Z,1871,503,2005-08-25T07:21:54Z,1,2020-02-15T06:59:46Z +15057,2005-08-22T10:19:58Z,4534,20,2005-08-28T05:12:58Z,1,2020-02-15T06:59:46Z +15058,2005-08-22T10:20:55Z,3537,288,2005-08-26T12:37:55Z,1,2020-02-15T06:59:46Z +15059,2005-08-22T10:22:00Z,4079,564,2005-08-29T07:01:00Z,2,2020-02-15T06:59:46Z +15060,2005-08-22T10:24:32Z,2740,63,2005-08-31T11:17:32Z,2,2020-02-15T06:59:46Z +15061,2005-08-22T10:29:44Z,3436,90,2005-08-24T14:40:44Z,1,2020-02-15T06:59:46Z +15062,2005-08-22T10:34:39Z,4393,139,2005-08-26T13:09:39Z,2,2020-02-15T06:59:46Z +15063,2005-08-22T10:39:51Z,1159,30,2005-08-25T16:03:51Z,2,2020-02-15T06:59:46Z +15064,2005-08-22T10:41:58Z,1233,425,2005-08-28T13:34:58Z,2,2020-02-15T06:59:46Z +15065,2005-08-22T10:46:44Z,468,510,2005-08-27T09:40:44Z,2,2020-02-15T06:59:46Z +15066,2005-08-22T10:49:06Z,2712,530,2005-08-23T10:25:06Z,1,2020-02-15T06:59:46Z +15067,2005-08-22T10:49:21Z,3684,461,2005-08-24T09:01:21Z,1,2020-02-15T06:59:46Z +15068,2005-08-22T10:50:13Z,3268,373,2005-08-26T05:04:13Z,2,2020-02-15T06:59:46Z +15069,2005-08-22T10:55:42Z,592,568,2005-08-28T06:59:42Z,2,2020-02-15T06:59:46Z +15070,2005-08-22T10:55:45Z,2687,441,2005-08-26T09:23:45Z,1,2020-02-15T06:59:46Z +15071,2005-08-22T10:58:43Z,417,541,2005-08-31T14:53:43Z,1,2020-02-15T06:59:46Z +15072,2005-08-22T10:58:45Z,2871,405,2005-08-30T16:18:45Z,1,2020-02-15T06:59:46Z +15073,2005-08-22T11:01:15Z,3970,336,2005-08-31T09:23:15Z,1,2020-02-15T06:59:46Z +15074,2005-08-22T11:02:52Z,3112,567,2005-08-28T07:59:52Z,2,2020-02-15T06:59:46Z +15075,2005-08-22T11:04:52Z,1938,535,2005-08-30T05:06:52Z,1,2020-02-15T06:59:46Z +15076,2005-08-22T11:05:34Z,4170,287,2005-08-27T14:40:34Z,1,2020-02-15T06:59:46Z +15077,2005-08-22T11:09:18Z,3142,503,2005-08-29T08:41:18Z,1,2020-02-15T06:59:46Z +15078,2005-08-22T11:09:31Z,3001,197,2005-08-25T12:16:31Z,1,2020-02-15T06:59:46Z +15079,2005-08-22T11:09:56Z,4552,540,2005-08-24T15:40:56Z,2,2020-02-15T06:59:46Z +15080,2005-08-22T11:11:51Z,927,133,2005-08-23T13:09:51Z,1,2020-02-15T06:59:46Z +15081,2005-08-22T11:14:31Z,2501,313,2005-08-28T14:23:31Z,2,2020-02-15T06:59:46Z +15082,2005-08-22T11:17:06Z,2046,137,2005-08-28T06:40:06Z,1,2020-02-15T06:59:46Z +15083,2005-08-22T11:17:37Z,1691,397,2005-08-28T06:27:37Z,2,2020-02-15T06:59:46Z +15084,2005-08-22T11:17:59Z,821,287,2005-08-23T09:23:59Z,1,2020-02-15T06:59:46Z +15085,2005-08-22T11:19:22Z,1669,67,2005-08-25T09:04:22Z,2,2020-02-15T06:59:46Z +15086,2005-08-22T11:21:08Z,264,494,2005-08-30T08:18:08Z,2,2020-02-15T06:59:46Z +15087,2005-08-22T11:24:09Z,233,404,2005-08-27T16:42:09Z,2,2020-02-15T06:59:46Z +15088,2005-08-22T11:28:26Z,4199,377,2005-08-24T15:46:26Z,2,2020-02-15T06:59:46Z +15089,2005-08-22T11:34:06Z,3288,61,2005-08-31T12:45:06Z,1,2020-02-15T06:59:46Z +15090,2005-08-22T11:34:33Z,2918,582,2005-08-31T06:09:33Z,2,2020-02-15T06:59:46Z +15091,2005-08-22T11:34:43Z,2092,477,2005-08-23T16:52:43Z,2,2020-02-15T06:59:46Z +15092,2005-08-22T11:36:16Z,2418,464,2005-08-28T09:49:16Z,2,2020-02-15T06:59:46Z +15093,2005-08-22T11:39:03Z,3534,60,2005-08-23T06:16:03Z,2,2020-02-15T06:59:46Z +15094,2006-02-14T15:16:03Z,922,424,,1,2020-02-15T06:59:46Z +15095,2005-08-22T11:41:35Z,489,202,2005-08-25T16:44:35Z,2,2020-02-15T06:59:46Z +15096,2005-08-22T11:43:04Z,1983,33,2005-08-29T12:16:04Z,2,2020-02-15T06:59:46Z +15097,2005-08-22T11:43:42Z,2838,475,2005-08-27T10:25:42Z,1,2020-02-15T06:59:46Z +15098,2005-08-22T11:48:19Z,4414,88,2005-08-31T11:07:19Z,2,2020-02-15T06:59:46Z +15099,2005-08-22T11:49:16Z,1940,86,2005-08-26T06:38:16Z,2,2020-02-15T06:59:46Z +15100,2005-08-22T11:55:03Z,4489,312,2005-08-25T14:55:03Z,1,2020-02-15T06:59:46Z +15101,2005-08-22T11:56:02Z,683,335,2005-08-28T13:08:02Z,2,2020-02-15T06:59:46Z +15102,2005-08-22T11:58:58Z,2317,555,2005-08-29T08:37:58Z,1,2020-02-15T06:59:46Z +15103,2005-08-22T12:01:06Z,853,101,2005-08-25T14:40:06Z,2,2020-02-15T06:59:46Z +15104,2005-08-22T12:01:16Z,4550,359,2005-08-27T17:48:16Z,1,2020-02-15T06:59:46Z +15105,2005-08-22T12:01:33Z,3965,338,2005-08-26T14:29:33Z,2,2020-02-15T06:59:46Z +15106,2005-08-22T12:01:48Z,399,155,2005-08-27T16:12:48Z,1,2020-02-15T06:59:46Z +15107,2005-08-22T12:05:02Z,2378,376,2005-08-23T11:09:02Z,1,2020-02-15T06:59:46Z +15108,2005-08-22T12:10:07Z,3463,447,2005-08-26T14:46:07Z,2,2020-02-15T06:59:46Z +15109,2005-08-22T12:12:58Z,565,588,2005-08-30T07:20:58Z,1,2020-02-15T06:59:46Z +15110,2005-08-22T12:16:46Z,1379,72,2005-08-26T13:36:46Z,1,2020-02-15T06:59:46Z +15111,2005-08-22T12:21:43Z,4101,119,2005-08-24T09:31:43Z,1,2020-02-15T06:59:46Z +15112,2005-08-22T12:21:49Z,2832,160,2005-08-27T11:03:49Z,1,2020-02-15T06:59:46Z +15113,2005-08-22T12:23:59Z,4338,424,2005-08-27T09:59:59Z,1,2020-02-15T06:59:46Z +15114,2005-08-22T12:24:55Z,2481,121,2005-08-31T17:06:55Z,1,2020-02-15T06:59:46Z +15115,2005-08-22T12:28:01Z,1739,33,2005-08-26T16:12:01Z,1,2020-02-15T06:59:46Z +15116,2005-08-22T12:35:40Z,518,217,2005-08-23T17:58:40Z,1,2020-02-15T06:59:46Z +15117,2005-08-22T12:38:20Z,2502,292,2005-08-27T07:36:20Z,2,2020-02-15T06:59:46Z +15118,2005-08-22T12:38:37Z,2081,473,2005-08-29T14:01:37Z,2,2020-02-15T06:59:46Z +15119,2005-08-22T12:41:33Z,4526,288,2005-08-23T14:44:33Z,2,2020-02-15T06:59:46Z +15120,2005-08-22T12:42:47Z,3083,11,2005-08-23T14:21:47Z,1,2020-02-15T06:59:46Z +15121,2005-08-22T12:46:37Z,2981,415,2005-08-25T17:42:37Z,1,2020-02-15T06:59:46Z +15122,2005-08-22T12:47:45Z,1686,91,2005-08-29T13:18:45Z,2,2020-02-15T06:59:46Z +15123,2005-08-22T12:48:44Z,1455,445,2005-08-27T11:07:44Z,1,2020-02-15T06:59:46Z +15124,2005-08-22T12:51:38Z,1598,39,2005-08-26T09:05:38Z,1,2020-02-15T06:59:46Z +15125,2005-08-22T12:53:22Z,3942,221,2005-08-29T18:44:22Z,1,2020-02-15T06:59:46Z +15126,2005-08-22T12:53:58Z,1902,459,2005-08-28T07:39:58Z,1,2020-02-15T06:59:46Z +15127,2005-08-22T12:56:29Z,2397,287,2005-08-26T10:58:29Z,1,2020-02-15T06:59:46Z +15128,2005-08-22T12:57:26Z,3229,457,2005-08-30T11:35:26Z,2,2020-02-15T06:59:46Z +15129,2005-08-22T13:03:52Z,3782,234,2005-08-29T10:56:52Z,2,2020-02-15T06:59:46Z +15130,2005-08-22T13:04:32Z,2375,536,2005-08-30T17:24:32Z,1,2020-02-15T06:59:46Z +15131,2005-08-22T13:06:26Z,1930,119,2005-08-30T16:43:26Z,1,2020-02-15T06:59:46Z +15132,2005-08-22T13:11:25Z,3474,393,2005-08-27T17:04:25Z,2,2020-02-15T06:59:46Z +15133,2005-08-22T13:17:43Z,3408,137,2005-08-26T08:40:43Z,1,2020-02-15T06:59:46Z +15134,2005-08-22T13:18:25Z,4442,22,2005-08-29T18:03:25Z,1,2020-02-15T06:59:46Z +15135,2005-08-22T13:19:19Z,555,284,2005-08-27T17:09:19Z,2,2020-02-15T06:59:46Z +15136,2005-08-22T13:19:25Z,2606,435,2005-08-24T07:28:25Z,2,2020-02-15T06:59:46Z +15137,2005-08-22T13:20:28Z,856,241,2005-08-26T09:35:28Z,1,2020-02-15T06:59:46Z +15138,2005-08-22T13:36:30Z,2467,50,2005-08-27T15:35:30Z,1,2020-02-15T06:59:46Z +15139,2005-08-22T13:38:11Z,2018,237,2005-08-30T09:00:11Z,1,2020-02-15T06:59:46Z +15140,2005-08-22T13:39:20Z,1402,414,2005-08-30T18:19:20Z,2,2020-02-15T06:59:46Z +15141,2005-08-22T13:41:49Z,227,541,2005-08-28T15:25:49Z,2,2020-02-15T06:59:46Z +15142,2005-08-22T13:44:32Z,1337,351,2005-08-29T14:19:32Z,1,2020-02-15T06:59:46Z +15143,2005-08-22T13:46:24Z,1519,274,2005-08-25T09:47:24Z,2,2020-02-15T06:59:46Z +15144,2005-08-22T13:49:18Z,559,527,2005-08-26T11:11:18Z,2,2020-02-15T06:59:46Z +15145,2005-08-22T13:53:04Z,2179,2,2005-08-31T15:51:04Z,1,2020-02-15T06:59:46Z +15146,2005-08-22T13:57:55Z,3102,72,2005-08-28T12:57:55Z,2,2020-02-15T06:59:46Z +15147,2005-08-22T13:58:23Z,2553,4,2005-08-28T14:33:23Z,2,2020-02-15T06:59:46Z +15148,2005-08-22T13:59:19Z,3704,359,2005-08-31T13:59:19Z,2,2020-02-15T06:59:46Z +15149,2005-08-22T14:08:06Z,3059,537,2005-08-25T08:25:06Z,1,2020-02-15T06:59:46Z +15150,2005-08-22T14:12:05Z,1797,161,2005-08-27T12:47:05Z,1,2020-02-15T06:59:46Z +15151,2005-08-22T14:23:11Z,4070,463,2005-08-30T14:01:11Z,1,2020-02-15T06:59:46Z +15152,2005-08-22T14:25:21Z,739,123,2005-08-31T14:28:21Z,1,2020-02-15T06:59:46Z +15153,2005-08-22T14:26:01Z,1051,512,2005-08-27T14:17:01Z,2,2020-02-15T06:59:46Z +15154,2005-08-22T14:27:37Z,3395,106,2005-08-29T20:04:37Z,2,2020-02-15T06:59:46Z +15155,2005-08-22T14:27:46Z,2641,43,2005-08-23T17:46:46Z,2,2020-02-15T06:59:46Z +15156,2005-08-22T14:29:11Z,1174,494,2005-08-30T17:48:11Z,2,2020-02-15T06:59:46Z +15157,2005-08-22T14:30:09Z,1909,580,2005-08-29T18:28:09Z,1,2020-02-15T06:59:46Z +15158,2005-08-22T14:30:39Z,3614,588,2005-08-27T15:55:39Z,1,2020-02-15T06:59:46Z +15159,2005-08-22T14:32:25Z,4355,525,2005-08-24T11:19:25Z,2,2020-02-15T06:59:46Z +15160,2005-08-22T14:33:50Z,4321,249,2005-08-28T11:26:50Z,1,2020-02-15T06:59:46Z +15161,2005-08-22T14:37:22Z,1445,20,2005-08-27T17:40:22Z,1,2020-02-15T06:59:46Z +15162,2005-08-22T14:41:05Z,1756,439,2005-08-27T20:23:05Z,2,2020-02-15T06:59:46Z +15163,2005-08-22T14:43:13Z,3597,100,2005-08-26T14:26:13Z,1,2020-02-15T06:59:46Z +15164,2005-08-22T14:47:53Z,997,193,2005-08-25T16:05:53Z,1,2020-02-15T06:59:46Z +15165,2005-08-22T14:59:30Z,3664,168,2005-08-29T15:46:30Z,2,2020-02-15T06:59:46Z +15166,2005-08-22T15:05:37Z,1530,504,2005-08-30T12:22:37Z,2,2020-02-15T06:59:46Z +15167,2006-02-14T15:16:03Z,973,190,,2,2020-02-15T06:59:46Z +15168,2005-08-22T15:14:20Z,3218,526,2005-08-25T20:12:20Z,2,2020-02-15T06:59:46Z +15169,2005-08-22T15:21:56Z,794,76,2005-08-28T09:40:56Z,1,2020-02-15T06:59:46Z +15170,2005-08-22T15:22:15Z,2123,521,2005-08-23T20:32:15Z,1,2020-02-15T06:59:46Z +15171,2005-08-22T15:23:59Z,1201,119,2005-08-28T12:05:59Z,2,2020-02-15T06:59:46Z +15172,2005-08-22T15:25:33Z,2367,511,2005-08-23T17:29:33Z,1,2020-02-15T06:59:46Z +15173,2005-08-22T15:26:29Z,2585,338,2005-08-29T14:03:29Z,1,2020-02-15T06:59:46Z +15174,2005-08-22T15:26:36Z,19,111,2005-08-31T10:47:36Z,2,2020-02-15T06:59:46Z +15175,2005-08-22T15:29:15Z,4318,380,2005-08-27T15:11:15Z,2,2020-02-15T06:59:46Z +15176,2005-08-22T15:30:25Z,3063,115,2005-08-31T20:00:25Z,1,2020-02-15T06:59:46Z +15177,2005-08-22T15:34:49Z,838,493,2005-08-26T12:54:49Z,1,2020-02-15T06:59:46Z +15178,2005-08-22T15:36:04Z,1745,15,2005-08-26T21:00:04Z,2,2020-02-15T06:59:46Z +15179,2005-08-22T15:36:22Z,450,328,2005-08-31T19:57:22Z,1,2020-02-15T06:59:46Z +15180,2005-08-22T15:42:57Z,234,532,2005-08-24T12:49:57Z,2,2020-02-15T06:59:46Z +15181,2005-08-22T15:46:20Z,3900,266,2005-08-27T09:56:20Z,1,2020-02-15T06:59:46Z +15182,2005-08-22T15:47:05Z,645,443,2005-08-25T11:55:05Z,1,2020-02-15T06:59:46Z +15183,2005-08-22T15:49:54Z,2696,268,2005-08-25T12:29:54Z,1,2020-02-15T06:59:46Z +15184,2005-08-22T15:51:12Z,1193,471,2005-08-24T19:23:12Z,2,2020-02-15T06:59:46Z +15185,2005-08-22T15:52:50Z,2948,472,2005-08-31T20:38:50Z,1,2020-02-15T06:59:46Z +15186,2005-08-22T15:52:57Z,1323,104,2005-08-24T21:12:57Z,1,2020-02-15T06:59:46Z +15187,2005-08-22T15:53:32Z,2338,461,2005-08-27T14:21:32Z,1,2020-02-15T06:59:46Z +15188,2005-08-22T15:55:48Z,131,478,2005-08-29T19:10:48Z,1,2020-02-15T06:59:46Z +15189,2005-08-22T15:56:42Z,2559,398,2005-08-29T12:20:42Z,1,2020-02-15T06:59:46Z +15190,2005-08-22T15:57:38Z,2096,84,2005-08-24T13:46:38Z,1,2020-02-15T06:59:46Z +15191,2006-02-14T15:16:03Z,3688,75,,1,2020-02-15T06:59:46Z +15192,2005-08-22T16:06:23Z,4213,216,2005-08-27T13:12:23Z,1,2020-02-15T06:59:46Z +15193,2005-08-22T16:06:49Z,1033,40,2005-08-25T17:23:49Z,1,2020-02-15T06:59:46Z +15194,2005-08-22T16:07:34Z,1217,332,2005-08-26T19:16:34Z,1,2020-02-15T06:59:46Z +15195,2005-08-22T16:08:23Z,1080,508,2005-08-30T17:56:23Z,2,2020-02-15T06:59:46Z +15196,2005-08-22T16:11:32Z,1413,181,2005-08-30T22:06:32Z,1,2020-02-15T06:59:46Z +15197,2005-08-22T16:14:25Z,2915,159,2005-08-26T16:22:25Z,2,2020-02-15T06:59:46Z +15198,2005-08-22T16:15:33Z,1253,396,2005-08-29T20:49:33Z,1,2020-02-15T06:59:46Z +15199,2005-08-22T16:17:49Z,18,216,2005-08-25T20:12:49Z,1,2020-02-15T06:59:46Z +15200,2005-08-22T16:22:53Z,1000,374,2005-08-24T10:25:53Z,2,2020-02-15T06:59:46Z +15201,2005-08-22T16:24:42Z,4456,301,2005-08-31T17:54:42Z,1,2020-02-15T06:59:46Z +15202,2005-08-22T16:26:53Z,2119,374,2005-08-23T13:49:53Z,2,2020-02-15T06:59:46Z +15203,2005-08-22T16:28:00Z,743,568,2005-08-26T16:55:00Z,2,2020-02-15T06:59:46Z +15204,2005-08-22T16:30:43Z,1471,317,2005-08-26T20:37:43Z,2,2020-02-15T06:59:46Z +15205,2005-08-22T16:32:23Z,3276,489,2005-08-27T16:08:23Z,1,2020-02-15T06:59:46Z +15206,2005-08-22T16:33:39Z,3901,524,2005-08-31T11:41:39Z,1,2020-02-15T06:59:46Z +15207,2005-08-22T16:35:25Z,1149,442,2005-08-23T14:06:25Z,1,2020-02-15T06:59:46Z +15208,2005-08-22T16:35:47Z,4346,267,2005-08-30T15:16:47Z,1,2020-02-15T06:59:46Z +15209,2005-08-22T16:37:32Z,1620,588,2005-08-25T19:04:32Z,1,2020-02-15T06:59:46Z +15210,2005-08-22T16:37:36Z,3811,332,2005-08-29T11:54:36Z,1,2020-02-15T06:59:46Z +15211,2005-08-22T16:40:21Z,3025,410,2005-08-28T13:33:21Z,2,2020-02-15T06:59:46Z +15212,2005-08-22T16:44:26Z,2182,562,2005-08-27T20:26:26Z,1,2020-02-15T06:59:46Z +15213,2005-08-22T16:49:02Z,2002,166,2005-08-31T20:22:02Z,1,2020-02-15T06:59:46Z +15214,2005-08-22T16:53:29Z,1500,574,2005-08-24T14:17:29Z,1,2020-02-15T06:59:46Z +15215,2005-08-22T16:55:26Z,1906,344,2005-08-25T20:19:26Z,1,2020-02-15T06:59:46Z +15216,2005-08-22T16:57:02Z,1633,166,2005-08-24T16:11:02Z,2,2020-02-15T06:59:46Z +15217,2005-08-22T16:58:31Z,91,90,2005-08-23T22:33:31Z,1,2020-02-15T06:59:46Z +15218,2005-08-22T16:59:05Z,10,139,2005-08-30T17:01:05Z,1,2020-02-15T06:59:46Z +15219,2005-08-22T17:00:31Z,3313,544,2005-08-31T20:16:31Z,1,2020-02-15T06:59:46Z +15220,2005-08-22T17:02:23Z,187,128,2005-08-28T21:02:23Z,1,2020-02-15T06:59:46Z +15221,2005-08-22T17:12:29Z,110,253,2005-08-24T20:46:29Z,2,2020-02-15T06:59:46Z +15222,2005-08-22T17:12:30Z,1360,390,2005-08-27T15:10:30Z,2,2020-02-15T06:59:46Z +15223,2005-08-22T17:13:39Z,2263,541,2005-08-27T11:17:39Z,2,2020-02-15T06:59:46Z +15224,2005-08-22T17:18:05Z,33,81,2005-08-29T14:35:05Z,2,2020-02-15T06:59:46Z +15225,2005-08-22T17:18:32Z,1646,224,2005-08-24T17:25:32Z,1,2020-02-15T06:59:46Z +15226,2005-08-22T17:20:17Z,318,54,2005-08-31T15:36:17Z,1,2020-02-15T06:59:46Z +15227,2005-08-22T17:22:41Z,2987,151,2005-08-23T20:59:41Z,1,2020-02-15T06:59:46Z +15228,2005-08-22T17:27:23Z,2485,48,2005-08-29T11:38:23Z,2,2020-02-15T06:59:46Z +15229,2005-08-22T17:30:25Z,320,63,2005-08-23T14:13:25Z,1,2020-02-15T06:59:46Z +15230,2005-08-22T17:31:41Z,2572,466,2005-08-25T21:57:41Z,2,2020-02-15T06:59:46Z +15231,2005-08-22T17:32:57Z,2980,187,2005-08-25T13:06:57Z,1,2020-02-15T06:59:46Z +15232,2005-08-22T17:37:02Z,61,5,2005-08-25T18:45:02Z,1,2020-02-15T06:59:46Z +15233,2005-08-22T17:41:53Z,4405,197,2005-08-24T12:59:53Z,2,2020-02-15T06:59:46Z +15234,2006-02-14T15:16:03Z,908,228,,2,2020-02-15T06:59:46Z +15235,2005-08-22T17:43:12Z,2726,416,2005-08-29T23:03:12Z,2,2020-02-15T06:59:46Z +15236,2005-08-22T17:44:27Z,4124,557,2005-08-24T23:25:27Z,1,2020-02-15T06:59:46Z +15237,2005-08-22T17:44:30Z,4485,148,2005-08-24T12:51:30Z,1,2020-02-15T06:59:46Z +15238,2005-08-22T17:46:12Z,403,70,2005-08-29T16:41:12Z,1,2020-02-15T06:59:46Z +15239,2005-08-22T17:46:17Z,1809,501,2005-08-26T19:03:17Z,1,2020-02-15T06:59:46Z +15240,2005-08-22T17:46:41Z,2014,11,2005-08-23T15:08:41Z,2,2020-02-15T06:59:46Z +15241,2005-08-22T17:47:40Z,832,337,2005-08-29T15:28:40Z,2,2020-02-15T06:59:46Z +15242,2005-08-22T17:48:10Z,2106,364,2005-08-27T23:32:10Z,1,2020-02-15T06:59:46Z +15243,2005-08-22T17:48:28Z,4408,308,2005-08-31T13:22:28Z,1,2020-02-15T06:59:46Z +15244,2005-08-22T17:48:42Z,1486,271,2005-08-28T13:17:42Z,2,2020-02-15T06:59:46Z +15245,2005-08-22T17:49:35Z,2545,298,2005-08-26T18:25:35Z,2,2020-02-15T06:59:46Z +15246,2005-08-22T17:50:49Z,3786,100,2005-08-30T22:21:49Z,1,2020-02-15T06:59:46Z +15247,2005-08-22T17:52:05Z,4572,250,2005-08-31T21:37:05Z,1,2020-02-15T06:59:46Z +15248,2005-08-22T17:53:06Z,977,20,2005-08-25T18:43:06Z,2,2020-02-15T06:59:46Z +15249,2005-08-22T17:58:27Z,121,444,2005-08-30T14:55:27Z,1,2020-02-15T06:59:46Z +15250,2005-08-22T18:03:11Z,2176,143,2005-08-27T12:19:11Z,2,2020-02-15T06:59:46Z +15251,2005-08-22T18:03:57Z,1994,285,2005-08-23T20:56:57Z,2,2020-02-15T06:59:46Z +15252,2005-08-22T18:04:22Z,1821,453,2005-08-25T17:14:22Z,2,2020-02-15T06:59:46Z +15253,2005-08-22T18:05:21Z,4143,333,2005-08-23T18:06:21Z,2,2020-02-15T06:59:46Z +15254,2005-08-22T18:13:07Z,3762,209,2005-08-24T21:55:07Z,1,2020-02-15T06:59:46Z +15255,2005-08-22T18:16:50Z,3415,84,2005-08-28T14:14:50Z,2,2020-02-15T06:59:46Z +15256,2005-08-22T18:20:07Z,1873,198,2005-08-28T12:57:07Z,1,2020-02-15T06:59:46Z +15257,2005-08-22T18:21:04Z,915,223,2005-08-30T20:13:04Z,1,2020-02-15T06:59:46Z +15258,2005-08-22T18:22:44Z,788,293,2005-08-25T16:54:44Z,1,2020-02-15T06:59:46Z +15259,2005-08-22T18:23:23Z,3261,488,2005-08-27T13:06:23Z,1,2020-02-15T06:59:46Z +15260,2005-08-22T18:24:16Z,3135,274,2005-08-24T21:26:16Z,1,2020-02-15T06:59:46Z +15261,2005-08-22T18:24:34Z,2200,140,2005-08-27T19:53:34Z,1,2020-02-15T06:59:46Z +15262,2005-08-22T18:25:21Z,2534,298,2005-08-28T22:19:21Z,1,2020-02-15T06:59:46Z +15263,2005-08-22T18:27:33Z,184,324,2005-08-30T14:05:33Z,1,2020-02-15T06:59:46Z +15264,2005-08-22T18:27:38Z,4459,440,2005-08-24T12:39:38Z,1,2020-02-15T06:59:46Z +15265,2005-08-22T18:35:59Z,1763,512,2005-08-28T21:18:59Z,2,2020-02-15T06:59:46Z +15266,2005-08-22T18:37:24Z,1870,124,2005-08-23T17:34:24Z,2,2020-02-15T06:59:46Z +15267,2005-08-22T18:37:48Z,2966,153,2005-08-24T00:22:48Z,1,2020-02-15T06:59:46Z +15268,2005-08-22T18:39:11Z,1245,301,2005-08-26T21:46:11Z,1,2020-02-15T06:59:46Z +15269,2005-08-22T18:39:44Z,524,275,2005-08-24T17:29:44Z,1,2020-02-15T06:59:46Z +15270,2005-08-22T18:48:42Z,4123,262,2005-08-28T15:38:42Z,2,2020-02-15T06:59:47Z +15271,2005-08-22T18:48:48Z,4232,59,2005-08-30T00:45:48Z,2,2020-02-15T06:59:47Z +15272,2005-08-22T18:49:40Z,1664,422,2005-08-28T21:22:40Z,1,2020-02-15T06:59:47Z +15273,2005-08-22T18:53:28Z,2558,422,2005-08-30T18:58:28Z,2,2020-02-15T06:59:47Z +15274,2005-08-22T18:55:52Z,3519,515,2005-08-23T20:02:52Z,1,2020-02-15T06:59:47Z +15275,2005-08-22T18:57:39Z,1522,597,2005-08-23T19:00:39Z,2,2020-02-15T06:59:47Z +15276,2005-08-22T18:59:01Z,4523,490,2005-08-23T19:49:01Z,2,2020-02-15T06:59:47Z +15277,2005-08-22T19:02:48Z,1780,217,2005-08-31T18:53:48Z,2,2020-02-15T06:59:47Z +15278,2005-08-22T19:06:47Z,2454,472,2005-08-25T01:00:47Z,2,2020-02-15T06:59:47Z +15279,2005-08-22T19:08:49Z,1088,363,2005-08-30T00:38:49Z,2,2020-02-15T06:59:47Z +15280,2005-08-22T19:09:52Z,3464,317,2005-08-28T00:39:52Z,1,2020-02-15T06:59:47Z +15281,2005-08-22T19:10:26Z,3992,543,2005-08-27T21:55:26Z,2,2020-02-15T06:59:47Z +15282,2006-02-14T15:16:03Z,1932,163,,1,2020-02-15T06:59:47Z +15283,2005-08-22T19:16:04Z,1688,219,2005-08-31T21:05:04Z,1,2020-02-15T06:59:47Z +15284,2005-08-22T19:17:08Z,2265,393,2005-08-29T13:28:08Z,2,2020-02-15T06:59:47Z +15285,2005-08-22T19:17:24Z,481,233,2005-08-25T00:25:24Z,1,2020-02-15T06:59:47Z +15286,2005-08-22T19:17:56Z,3731,74,2005-08-29T16:08:56Z,2,2020-02-15T06:59:47Z +15287,2005-08-22T19:19:37Z,308,535,2005-08-29T16:05:37Z,1,2020-02-15T06:59:47Z +15288,2005-08-22T19:23:58Z,1999,475,2005-08-26T23:28:58Z,1,2020-02-15T06:59:47Z +15289,2005-08-22T19:27:24Z,1026,513,2005-08-30T22:21:24Z,1,2020-02-15T06:59:47Z +15290,2005-08-22T19:28:02Z,270,404,2005-08-31T20:04:02Z,2,2020-02-15T06:59:47Z +15291,2005-08-22T19:28:04Z,1461,494,2005-08-26T15:07:04Z,1,2020-02-15T06:59:47Z +15292,2005-08-22T19:28:56Z,3072,337,2005-08-28T22:39:56Z,2,2020-02-15T06:59:47Z +15293,2006-02-14T15:16:03Z,1219,263,,2,2020-02-15T06:59:47Z +15294,2006-02-14T15:16:03Z,70,108,,1,2020-02-15T06:59:47Z +15295,2005-08-22T19:36:21Z,2164,186,2005-08-31T00:07:21Z,2,2020-02-15T06:59:47Z +15296,2005-08-22T19:37:20Z,2715,55,2005-08-24T15:16:20Z,1,2020-02-15T06:59:47Z +15297,2006-02-14T15:16:03Z,3192,327,,2,2020-02-15T06:59:47Z +15298,2005-08-22T19:41:37Z,1446,1,2005-08-28T22:49:37Z,1,2020-02-15T06:59:47Z +15299,2005-08-22T19:42:57Z,767,381,2005-08-23T15:29:57Z,2,2020-02-15T06:59:47Z +15300,2005-08-22T19:44:00Z,2319,399,2005-08-25T22:49:00Z,2,2020-02-15T06:59:47Z +15301,2005-08-22T19:44:16Z,619,454,2005-08-26T22:57:16Z,2,2020-02-15T06:59:47Z +15302,2005-08-22T19:44:53Z,188,320,2005-08-24T18:13:53Z,2,2020-02-15T06:59:47Z +15303,2005-08-22T19:44:59Z,1672,390,2005-08-30T21:59:59Z,1,2020-02-15T06:59:47Z +15304,2005-08-22T19:45:57Z,4332,112,2005-08-28T00:21:57Z,2,2020-02-15T06:59:47Z +15305,2005-08-22T19:46:05Z,671,529,2005-08-27T19:11:05Z,2,2020-02-15T06:59:47Z +15306,2005-08-22T19:46:36Z,521,340,2005-08-27T14:09:36Z,1,2020-02-15T06:59:47Z +15307,2005-08-22T19:54:26Z,4525,598,2005-08-29T01:38:26Z,2,2020-02-15T06:59:47Z +15308,2005-08-22T19:54:31Z,987,329,2005-08-26T23:09:31Z,1,2020-02-15T06:59:47Z +15309,2005-08-22T19:54:52Z,2743,141,2005-08-24T23:00:52Z,2,2020-02-15T06:59:47Z +15310,2005-08-22T19:56:41Z,2546,360,2005-08-24T16:32:41Z,2,2020-02-15T06:59:47Z +15311,2005-08-22T19:56:52Z,3612,176,2005-08-31T20:15:52Z,2,2020-02-15T06:59:47Z +15312,2005-08-22T19:58:15Z,2509,280,2005-08-25T19:21:15Z,2,2020-02-15T06:59:47Z +15313,2005-08-22T19:59:42Z,2587,333,2005-08-24T15:03:42Z,2,2020-02-15T06:59:47Z +15314,2006-02-14T15:16:03Z,2754,412,,1,2020-02-15T06:59:47Z +15315,2005-08-22T20:03:46Z,312,1,2005-08-30T01:51:46Z,2,2020-02-15T06:59:47Z +15316,2005-08-22T20:07:03Z,1830,422,2005-08-27T18:45:03Z,1,2020-02-15T06:59:47Z +15317,2005-08-22T20:14:13Z,2325,512,2005-08-29T18:32:13Z,1,2020-02-15T06:59:47Z +15318,2005-08-22T20:15:16Z,1738,60,2005-08-25T14:17:16Z,1,2020-02-15T06:59:47Z +15319,2005-08-22T20:17:17Z,3041,188,2005-08-25T01:06:17Z,2,2020-02-15T06:59:47Z +15320,2005-08-22T20:17:49Z,648,407,2005-08-28T17:31:49Z,1,2020-02-15T06:59:47Z +15321,2005-08-22T20:20:04Z,4152,384,2005-08-24T23:26:04Z,2,2020-02-15T06:59:47Z +15322,2005-08-22T20:20:30Z,3553,263,2005-08-25T01:26:30Z,2,2020-02-15T06:59:47Z +15323,2005-08-22T20:22:40Z,1153,178,2005-08-26T00:35:40Z,1,2020-02-15T06:59:47Z +15324,2005-08-22T20:23:13Z,161,93,2005-08-29T18:23:13Z,1,2020-02-15T06:59:47Z +15325,2005-08-22T20:27:38Z,3549,74,2005-08-23T15:24:38Z,1,2020-02-15T06:59:47Z +15326,2006-02-14T15:16:03Z,3320,58,,1,2020-02-15T06:59:47Z +15327,2005-08-22T20:31:24Z,1018,450,2005-08-30T23:52:24Z,1,2020-02-15T06:59:47Z +15328,2005-08-22T20:31:38Z,4546,274,2005-08-29T20:17:38Z,1,2020-02-15T06:59:47Z +15329,2005-08-22T20:32:39Z,1900,521,2005-08-23T17:15:39Z,1,2020-02-15T06:59:47Z +15330,2005-08-22T20:35:30Z,689,427,2005-08-30T21:54:30Z,1,2020-02-15T06:59:47Z +15331,2005-08-22T20:37:57Z,146,147,2005-08-25T21:56:57Z,1,2020-02-15T06:59:47Z +15332,2005-08-22T20:41:53Z,3368,162,2005-08-24T01:45:53Z,1,2020-02-15T06:59:47Z +15333,2005-08-22T20:44:06Z,1839,142,2005-08-29T22:34:06Z,2,2020-02-15T06:59:47Z +15334,2005-08-22T20:44:35Z,3882,407,2005-08-29T23:03:35Z,2,2020-02-15T06:59:47Z +15335,2005-08-22T20:44:55Z,1593,363,2005-08-28T21:43:55Z,1,2020-02-15T06:59:47Z +15336,2005-08-22T20:47:48Z,490,461,2005-08-31T18:17:48Z,2,2020-02-15T06:59:47Z +15337,2005-08-22T20:49:51Z,280,237,2005-08-26T23:27:51Z,1,2020-02-15T06:59:47Z +15338,2005-08-22T20:51:24Z,502,13,2005-08-24T23:41:24Z,2,2020-02-15T06:59:47Z +15339,2005-08-22T20:52:12Z,1660,331,2005-08-26T00:36:12Z,2,2020-02-15T06:59:47Z +15340,2005-08-22T20:55:56Z,3653,313,2005-08-27T18:52:56Z,1,2020-02-15T06:59:47Z +15341,2005-08-22T20:56:31Z,3359,91,2005-08-30T17:25:31Z,1,2020-02-15T06:59:47Z +15342,2005-08-22T20:56:41Z,3287,459,2005-08-26T22:51:41Z,2,2020-02-15T06:59:47Z +15343,2005-08-22T21:01:25Z,2589,538,2005-08-28T16:15:25Z,1,2020-02-15T06:59:47Z +15344,2005-08-22T21:01:48Z,3560,193,2005-08-27T15:47:48Z,1,2020-02-15T06:59:47Z +15345,2005-08-22T21:05:50Z,3481,277,2005-08-26T20:30:50Z,1,2020-02-15T06:59:47Z +15346,2005-08-22T21:06:00Z,3525,266,2005-08-28T22:08:00Z,1,2020-02-15T06:59:47Z +15347,2005-08-22T21:12:19Z,3764,519,2005-08-24T20:12:19Z,1,2020-02-15T06:59:47Z +15348,2005-08-22T21:13:46Z,3846,587,2005-08-24T17:06:46Z,1,2020-02-15T06:59:47Z +15349,2005-08-22T21:13:51Z,4055,587,2005-08-23T20:55:51Z,1,2020-02-15T06:59:47Z +15350,2005-08-22T21:15:29Z,1170,488,2005-08-24T02:56:29Z,1,2020-02-15T06:59:47Z +15351,2005-08-22T21:15:46Z,3260,154,2005-08-23T17:38:46Z,1,2020-02-15T06:59:47Z +15352,2005-08-22T21:16:54Z,16,560,2005-08-31T00:38:54Z,2,2020-02-15T06:59:47Z +15353,2005-08-22T21:18:08Z,3470,368,2005-08-25T20:29:08Z,2,2020-02-15T06:59:47Z +15354,2005-08-22T21:18:59Z,4212,412,2005-08-27T20:12:59Z,2,2020-02-15T06:59:47Z +15355,2005-08-22T21:19:24Z,3477,493,2005-08-28T20:36:24Z,2,2020-02-15T06:59:47Z +15356,2005-08-22T21:24:19Z,4507,539,2005-08-25T22:32:19Z,2,2020-02-15T06:59:47Z +15357,2005-08-22T21:28:59Z,727,24,2005-08-25T17:15:59Z,1,2020-02-15T06:59:47Z +15358,2005-08-22T21:29:14Z,822,448,2005-08-31T00:10:14Z,2,2020-02-15T06:59:47Z +15359,2005-08-22T21:34:00Z,4505,77,2005-08-29T18:59:00Z,1,2020-02-15T06:59:47Z +15360,2005-08-22T21:36:51Z,1950,531,2005-08-24T16:46:51Z,1,2020-02-15T06:59:47Z +15361,2005-08-22T21:39:45Z,1407,380,2005-08-23T17:32:45Z,2,2020-02-15T06:59:47Z +15362,2005-08-22T21:40:20Z,1023,497,2005-08-29T15:55:20Z,1,2020-02-15T06:59:47Z +15363,2005-08-22T21:41:40Z,2326,480,2005-08-23T21:40:40Z,1,2020-02-15T06:59:47Z +15364,2005-08-22T21:41:41Z,4184,204,2005-08-28T00:49:41Z,1,2020-02-15T06:59:47Z +15365,2005-08-22T21:42:17Z,3382,327,2005-09-01T03:14:17Z,2,2020-02-15T06:59:47Z +15366,2005-08-22T21:45:57Z,1453,374,2005-08-30T16:35:57Z,1,2020-02-15T06:59:47Z +15367,2005-08-22T21:47:53Z,160,355,2005-08-27T17:54:53Z,2,2020-02-15T06:59:47Z +15368,2005-08-22T21:57:15Z,1130,370,2005-08-29T16:28:15Z,1,2020-02-15T06:59:47Z +15369,2005-08-22T21:58:06Z,881,121,2005-08-26T00:27:06Z,2,2020-02-15T06:59:47Z +15370,2005-08-22T21:59:29Z,67,10,2005-08-27T16:32:29Z,1,2020-02-15T06:59:47Z +15371,2006-02-14T15:16:03Z,3672,94,,2,2020-02-15T06:59:47Z +15372,2005-08-22T21:59:51Z,3876,273,2005-08-23T17:01:51Z,1,2020-02-15T06:59:47Z +15373,2005-08-22T22:08:11Z,4439,14,2005-08-24T01:05:11Z,2,2020-02-15T06:59:47Z +15374,2005-08-22T22:09:09Z,4275,8,2005-08-31T01:10:09Z,1,2020-02-15T06:59:47Z +15375,2005-08-22T22:12:02Z,3864,191,2005-08-24T00:50:02Z,2,2020-02-15T06:59:47Z +15376,2005-08-22T22:21:35Z,2963,390,2005-08-28T20:56:35Z,1,2020-02-15T06:59:47Z +15377,2005-08-22T22:22:33Z,3405,551,2005-08-29T18:41:33Z,1,2020-02-15T06:59:47Z +15378,2005-08-22T22:25:17Z,1483,340,2005-08-30T17:04:17Z,1,2020-02-15T06:59:47Z +15379,2005-08-22T22:26:13Z,1899,148,2005-08-31T18:19:13Z,1,2020-02-15T06:59:47Z +15380,2005-08-22T22:28:15Z,3642,423,2005-08-28T23:21:15Z,1,2020-02-15T06:59:47Z +15381,2005-08-22T22:28:36Z,845,110,2005-08-24T19:26:36Z,2,2020-02-15T06:59:47Z +15382,2005-08-22T22:30:50Z,333,376,2005-08-24T04:07:50Z,2,2020-02-15T06:59:47Z +15383,2005-08-22T22:31:20Z,686,405,2005-08-28T17:43:20Z,1,2020-02-15T06:59:47Z +15384,2005-08-22T22:34:44Z,3208,26,2005-08-23T23:25:44Z,2,2020-02-15T06:59:47Z +15385,2005-08-22T22:37:34Z,140,434,2005-08-26T00:36:34Z,2,2020-02-15T06:59:47Z +15386,2005-08-22T22:41:14Z,3056,327,2005-08-29T22:29:14Z,1,2020-02-15T06:59:47Z +15387,2005-08-22T22:49:13Z,3879,323,2005-08-29T01:49:13Z,2,2020-02-15T06:59:47Z +15388,2005-08-22T22:49:23Z,3995,50,2005-09-01T03:50:23Z,2,2020-02-15T06:59:47Z +15389,2005-08-22T22:51:13Z,2077,231,2005-08-28T23:46:13Z,1,2020-02-15T06:59:47Z +15390,2005-08-22T22:57:25Z,462,551,2005-08-31T18:06:25Z,1,2020-02-15T06:59:47Z +15391,2005-08-22T23:01:45Z,3918,482,2005-08-29T02:59:45Z,2,2020-02-15T06:59:47Z +15392,2005-08-22T23:02:15Z,538,410,2005-09-01T01:14:15Z,2,2020-02-15T06:59:47Z +15393,2005-08-22T23:04:09Z,2924,443,2005-08-27T02:23:09Z,2,2020-02-15T06:59:47Z +15394,2005-08-22T23:04:21Z,3455,507,2005-08-25T20:53:21Z,2,2020-02-15T06:59:47Z +15395,2005-08-22T23:06:25Z,2880,526,2005-08-30T19:18:25Z,1,2020-02-15T06:59:47Z +15396,2005-08-22T23:07:57Z,4050,319,2005-08-28T19:39:57Z,2,2020-02-15T06:59:47Z +15397,2005-08-22T23:08:46Z,1482,261,2005-08-25T20:58:46Z,1,2020-02-15T06:59:47Z +15398,2005-08-22T23:10:49Z,4451,109,2005-08-28T00:49:49Z,2,2020-02-15T06:59:47Z +15399,2005-08-22T23:11:59Z,3858,379,2005-08-26T22:16:59Z,2,2020-02-15T06:59:47Z +15400,2005-08-22T23:13:03Z,2664,473,2005-08-28T18:34:03Z,1,2020-02-15T06:59:47Z +15401,2005-08-22T23:13:10Z,1721,103,2005-09-01T03:44:10Z,1,2020-02-15T06:59:47Z +15402,2005-08-22T23:17:41Z,1575,293,2005-08-30T20:07:41Z,2,2020-02-15T06:59:47Z +15403,2005-08-22T23:18:10Z,4315,581,2005-08-23T18:08:10Z,2,2020-02-15T06:59:47Z +15404,2005-08-22T23:19:44Z,3557,211,2005-08-30T19:58:44Z,2,2020-02-15T06:59:47Z +15405,2005-08-22T23:20:41Z,3263,596,2005-08-25T23:53:41Z,1,2020-02-15T06:59:47Z +15406,2005-08-22T23:21:22Z,400,227,2005-08-28T22:21:22Z,1,2020-02-15T06:59:47Z +15407,2006-02-14T15:16:03Z,3330,42,,2,2020-02-15T06:59:47Z +15408,2005-08-22T23:26:32Z,165,156,2005-08-30T20:22:32Z,1,2020-02-15T06:59:47Z +15409,2005-08-22T23:26:32Z,560,188,2005-08-24T22:44:32Z,1,2020-02-15T06:59:47Z +15410,2005-08-22T23:27:43Z,2052,403,2005-08-29T05:12:43Z,2,2020-02-15T06:59:47Z +15411,2005-08-22T23:35:41Z,4423,461,2005-08-26T00:51:41Z,1,2020-02-15T06:59:47Z +15412,2005-08-22T23:37:11Z,1267,199,2005-08-28T23:26:11Z,2,2020-02-15T06:59:47Z +15413,2005-08-22T23:38:01Z,2494,476,2005-08-23T19:27:01Z,2,2020-02-15T06:59:47Z +15414,2005-08-22T23:43:54Z,718,532,2005-08-30T18:26:54Z,1,2020-02-15T06:59:47Z +15415,2005-08-22T23:48:56Z,4176,204,2005-09-01T02:05:56Z,1,2020-02-15T06:59:47Z +15416,2005-08-22T23:51:23Z,1167,383,2005-08-29T20:03:23Z,1,2020-02-15T06:59:47Z +15417,2005-08-22T23:54:04Z,1826,305,2005-08-26T22:25:04Z,1,2020-02-15T06:59:47Z +15418,2005-08-22T23:54:14Z,808,205,2005-08-28T04:23:14Z,2,2020-02-15T06:59:47Z +15419,2005-08-22T23:54:36Z,1120,450,2005-08-25T00:52:36Z,1,2020-02-15T06:59:47Z +15420,2005-08-22T23:55:51Z,1396,161,2005-08-31T20:09:51Z,2,2020-02-15T06:59:47Z +15421,2005-08-22T23:56:37Z,3,541,2005-08-25T18:58:37Z,2,2020-02-15T06:59:47Z +15422,2005-08-22T23:58:09Z,2601,309,2005-08-30T19:03:09Z,2,2020-02-15T06:59:47Z +15423,2006-02-14T15:16:03Z,1786,596,,1,2020-02-15T06:59:47Z +15424,2005-08-23T00:03:01Z,3452,138,2005-08-27T23:27:01Z,2,2020-02-15T06:59:47Z +15425,2005-08-23T00:05:57Z,551,259,2005-09-01T05:08:57Z,1,2020-02-15T06:59:47Z +15426,2005-08-23T00:07:19Z,3280,347,2005-08-26T23:19:19Z,1,2020-02-15T06:59:47Z +15427,2005-08-23T00:07:53Z,2775,448,2005-09-01T02:55:53Z,2,2020-02-15T06:59:47Z +15428,2005-08-23T00:11:52Z,4379,402,2005-08-24T02:35:52Z,1,2020-02-15T06:59:47Z +15429,2005-08-23T00:20:31Z,740,241,2005-08-23T20:22:31Z,1,2020-02-15T06:59:47Z +15430,2006-02-14T15:16:03Z,4353,282,,1,2020-02-15T06:59:47Z +15431,2005-08-23T00:26:47Z,3251,550,2005-08-31T23:26:47Z,2,2020-02-15T06:59:47Z +15432,2005-08-23T00:26:52Z,1896,117,2005-08-27T06:11:52Z,1,2020-02-15T06:59:47Z +15433,2005-08-23T00:27:18Z,155,198,2005-08-26T21:36:18Z,1,2020-02-15T06:59:47Z +15434,2005-08-23T00:28:16Z,4378,518,2005-08-26T04:27:16Z,2,2020-02-15T06:59:47Z +15435,2005-08-23T00:28:19Z,2103,468,2005-08-26T00:44:19Z,2,2020-02-15T06:59:47Z +15436,2005-08-23T00:30:26Z,1527,505,2005-08-28T06:29:26Z,1,2020-02-15T06:59:47Z +15437,2005-08-23T00:31:09Z,4236,368,2005-08-30T06:17:09Z,2,2020-02-15T06:59:47Z +15438,2005-08-23T00:31:57Z,2030,46,2005-08-26T20:02:57Z,1,2020-02-15T06:59:47Z +15439,2005-08-23T00:34:28Z,3848,136,2005-08-27T01:07:28Z,1,2020-02-15T06:59:47Z +15440,2005-08-23T00:37:21Z,2254,559,2005-08-24T23:24:21Z,1,2020-02-15T06:59:47Z +15441,2006-02-14T15:16:03Z,258,422,,2,2020-02-15T06:59:47Z +15442,2005-08-23T00:42:49Z,1452,42,2005-08-27T00:35:49Z,1,2020-02-15T06:59:47Z +15443,2005-08-23T00:44:15Z,742,598,2005-09-01T05:33:15Z,2,2020-02-15T06:59:47Z +15444,2005-08-23T00:46:52Z,959,153,2005-08-29T20:37:52Z,2,2020-02-15T06:59:47Z +15445,2005-08-23T00:48:29Z,196,28,2005-08-28T00:33:29Z,1,2020-02-15T06:59:47Z +15446,2005-08-23T00:49:24Z,503,379,2005-08-26T02:09:24Z,2,2020-02-15T06:59:47Z +15447,2005-08-23T00:53:57Z,4090,331,2005-08-29T06:19:57Z,2,2020-02-15T06:59:47Z +15448,2005-08-23T00:55:24Z,2903,490,2005-08-25T02:20:24Z,1,2020-02-15T06:59:47Z +15449,2005-08-23T00:55:43Z,2856,461,2005-08-28T03:41:43Z,1,2020-02-15T06:59:47Z +15450,2005-08-23T00:56:01Z,1102,322,2005-08-24T01:00:01Z,2,2020-02-15T06:59:47Z +15451,2005-08-23T00:56:27Z,231,514,2005-08-24T00:15:27Z,2,2020-02-15T06:59:47Z +15452,2005-08-23T00:57:12Z,717,115,2005-08-28T00:19:12Z,1,2020-02-15T06:59:47Z +15453,2005-08-23T01:01:01Z,2,359,2005-08-30T20:08:01Z,1,2020-02-15T06:59:47Z +15454,2006-02-14T15:16:03Z,2946,142,,2,2020-02-15T06:59:47Z +15455,2005-08-23T01:05:00Z,3991,238,2005-08-26T22:56:00Z,1,2020-02-15T06:59:47Z +15456,2005-08-23T01:07:01Z,2451,262,2005-08-24T23:28:01Z,2,2020-02-15T06:59:47Z +15457,2005-08-23T01:07:37Z,4539,306,2005-08-26T19:46:37Z,1,2020-02-15T06:59:47Z +15458,2006-02-14T15:16:03Z,25,590,,2,2020-02-15T06:59:47Z +15459,2005-08-23T01:09:48Z,2058,346,2005-08-24T04:52:48Z,1,2020-02-15T06:59:47Z +15460,2005-08-23T01:10:42Z,2907,20,2005-08-28T20:49:42Z,2,2020-02-15T06:59:47Z +15461,2005-08-23T01:13:52Z,4542,103,2005-08-30T00:44:52Z,1,2020-02-15T06:59:47Z +15462,2005-08-23T01:14:01Z,3267,389,2005-08-29T19:52:01Z,1,2020-02-15T06:59:47Z +15463,2005-08-23T01:15:07Z,863,127,2005-08-29T06:50:07Z,1,2020-02-15T06:59:47Z +15464,2005-08-23T01:15:18Z,3235,62,2005-08-29T02:58:18Z,2,2020-02-15T06:59:47Z +15465,2005-08-23T01:16:33Z,362,520,2005-08-28T20:08:33Z,2,2020-02-15T06:59:47Z +15466,2005-08-23T01:16:55Z,571,418,2005-08-29T22:57:55Z,1,2020-02-15T06:59:47Z +15467,2005-08-23T01:22:12Z,3658,103,2005-08-29T23:42:12Z,2,2020-02-15T06:59:47Z +15468,2005-08-23T01:25:30Z,2440,399,2005-08-28T01:40:30Z,2,2020-02-15T06:59:47Z +15469,2005-08-23T01:29:59Z,1939,597,2005-08-27T04:02:59Z,1,2020-02-15T06:59:47Z +15470,2005-08-23T01:35:12Z,3009,416,2005-09-01T05:33:12Z,1,2020-02-15T06:59:47Z +15471,2005-08-23T01:38:48Z,2591,139,2005-08-31T19:47:48Z,1,2020-02-15T06:59:47Z +15472,2005-08-23T01:39:05Z,4293,226,2005-08-25T04:43:05Z,1,2020-02-15T06:59:47Z +15473,2005-08-23T01:39:10Z,356,259,2005-08-25T03:48:10Z,1,2020-02-15T06:59:47Z +15474,2005-08-23T01:39:10Z,3015,188,2005-08-23T21:46:10Z,2,2020-02-15T06:59:47Z +15475,2005-08-23T01:44:43Z,4503,562,2005-08-23T23:53:43Z,2,2020-02-15T06:59:47Z +15476,2005-08-23T01:45:07Z,2478,433,2005-08-26T21:07:07Z,2,2020-02-15T06:59:47Z +15477,2005-08-23T01:46:35Z,2406,142,2005-08-28T22:12:35Z,1,2020-02-15T06:59:47Z +15478,2005-08-23T01:50:31Z,4563,167,2005-08-27T21:40:31Z,2,2020-02-15T06:59:47Z +15479,2005-08-23T01:50:53Z,4182,149,2005-08-29T00:53:53Z,1,2020-02-15T06:59:47Z +15480,2005-08-23T01:57:20Z,3298,577,2005-08-26T04:43:20Z,2,2020-02-15T06:59:47Z +15481,2005-08-23T01:59:14Z,3262,414,2005-08-27T04:38:14Z,1,2020-02-15T06:59:47Z +15482,2005-08-23T02:01:20Z,3923,181,2005-08-24T03:25:20Z,2,2020-02-15T06:59:47Z +15483,2005-08-23T02:02:53Z,2970,173,2005-08-26T04:13:53Z,1,2020-02-15T06:59:47Z +15484,2005-08-23T02:04:49Z,642,342,2005-08-24T05:46:49Z,1,2020-02-15T06:59:47Z +15485,2005-08-23T02:04:57Z,281,114,2005-08-28T07:05:57Z,2,2020-02-15T06:59:47Z +15486,2005-08-23T02:05:20Z,1666,502,2005-08-29T07:52:20Z,2,2020-02-15T06:59:47Z +15487,2005-08-23T02:05:51Z,2636,469,2005-08-25T04:45:51Z,1,2020-02-15T06:59:47Z +15488,2005-08-23T02:06:01Z,4535,385,2005-08-29T21:35:01Z,2,2020-02-15T06:59:47Z +15489,2005-08-23T02:06:41Z,764,285,2005-08-25T06:50:41Z,1,2020-02-15T06:59:47Z +15490,2005-08-23T02:08:18Z,3922,493,2005-08-30T06:15:18Z,1,2020-02-15T06:59:47Z +15491,2005-08-23T02:08:40Z,2059,28,2005-08-23T20:23:40Z,2,2020-02-15T06:59:47Z +15492,2005-08-23T02:13:46Z,1298,520,2005-08-26T21:53:46Z,2,2020-02-15T06:59:47Z +15493,2005-08-23T02:20:53Z,3521,308,2005-08-25T23:02:53Z,1,2020-02-15T06:59:47Z +15494,2005-08-23T02:25:09Z,2968,455,2005-08-27T00:18:09Z,1,2020-02-15T06:59:47Z +15495,2005-08-23T02:26:10Z,4310,193,2005-08-30T01:07:10Z,2,2020-02-15T06:59:47Z +15496,2005-08-23T02:30:23Z,1863,275,2005-08-31T03:31:23Z,2,2020-02-15T06:59:47Z +15497,2006-02-14T15:16:03Z,363,107,,1,2020-02-15T06:59:47Z +15498,2005-08-23T02:33:27Z,1583,83,2005-08-23T22:30:27Z,1,2020-02-15T06:59:47Z +15499,2005-08-23T02:37:19Z,630,488,2005-08-23T20:57:19Z,1,2020-02-15T06:59:47Z +15500,2005-08-23T02:39:37Z,886,74,2005-08-27T06:42:37Z,1,2020-02-15T06:59:47Z +15501,2005-08-23T02:39:56Z,4468,138,2005-08-25T04:39:56Z,1,2020-02-15T06:59:47Z +15502,2005-08-23T02:40:04Z,3219,433,2005-08-31T00:36:04Z,2,2020-02-15T06:59:47Z +15503,2005-08-23T02:44:49Z,4519,582,2005-08-27T06:33:49Z,2,2020-02-15T06:59:47Z +15504,2005-08-23T02:45:21Z,1967,315,2005-09-01T03:24:21Z,2,2020-02-15T06:59:47Z +15505,2005-08-23T02:46:13Z,1144,375,2005-08-26T23:34:13Z,2,2020-02-15T06:59:47Z +15506,2005-08-23T02:48:24Z,1914,553,2005-08-28T04:10:24Z,1,2020-02-15T06:59:47Z +15507,2005-08-23T02:48:26Z,3130,563,2005-08-27T01:32:26Z,1,2020-02-15T06:59:47Z +15508,2005-08-23T02:49:04Z,4035,293,2005-08-29T00:58:04Z,1,2020-02-15T06:59:47Z +15509,2005-08-23T02:51:24Z,1291,6,2005-08-31T06:21:24Z,2,2020-02-15T06:59:47Z +15510,2005-08-23T02:51:27Z,3239,209,2005-09-01T02:44:27Z,2,2020-02-15T06:59:47Z +15511,2005-08-23T02:55:42Z,3327,303,2005-08-31T03:14:42Z,2,2020-02-15T06:59:47Z +15512,2005-08-23T02:57:30Z,4336,25,2005-08-25T01:47:30Z,2,2020-02-15T06:59:47Z +15513,2005-08-23T03:01:56Z,3779,147,2005-08-24T23:46:56Z,2,2020-02-15T06:59:47Z +15514,2005-08-23T03:03:40Z,2824,366,2005-08-24T01:06:40Z,1,2020-02-15T06:59:47Z +15515,2005-08-23T03:03:53Z,3940,307,2005-08-25T08:27:53Z,2,2020-02-15T06:59:47Z +15516,2005-08-23T03:12:54Z,219,82,2005-08-30T04:02:54Z,1,2020-02-15T06:59:47Z +15517,2005-08-23T03:13:01Z,2221,187,2005-08-25T21:14:01Z,2,2020-02-15T06:59:47Z +15518,2005-08-23T03:19:34Z,3522,410,2005-08-24T02:55:34Z,1,2020-02-15T06:59:47Z +15519,2005-08-23T03:23:32Z,542,443,2005-08-25T03:48:32Z,1,2020-02-15T06:59:47Z +15520,2005-08-23T03:30:45Z,1792,163,2005-09-01T00:20:45Z,1,2020-02-15T06:59:47Z +15521,2005-08-23T03:30:51Z,134,331,2005-08-28T22:09:51Z,1,2020-02-15T06:59:47Z +15522,2005-08-23T03:32:31Z,2396,468,2005-08-30T02:17:31Z,2,2020-02-15T06:59:47Z +15523,2005-08-23T03:32:36Z,2570,432,2005-08-26T22:08:36Z,2,2020-02-15T06:59:47Z +15524,2005-08-23T03:36:26Z,2886,68,2005-08-26T06:28:26Z,2,2020-02-15T06:59:47Z +15525,2005-08-23T03:43:32Z,3509,123,2005-08-25T07:31:32Z,2,2020-02-15T06:59:47Z +15526,2005-08-23T03:44:30Z,2892,516,2005-08-30T08:19:30Z,1,2020-02-15T06:59:47Z +15527,2005-08-23T03:44:51Z,88,393,2005-08-25T03:09:51Z,1,2020-02-15T06:59:47Z +15528,2005-08-23T03:45:40Z,3033,114,2005-08-25T01:16:40Z,1,2020-02-15T06:59:47Z +15529,2005-08-23T03:46:47Z,4015,19,2005-08-24T00:59:47Z,1,2020-02-15T06:59:47Z +15530,2005-08-23T03:50:48Z,154,167,2005-08-28T22:17:48Z,2,2020-02-15T06:59:47Z +15531,2005-08-23T03:52:36Z,2410,355,2005-08-25T23:21:36Z,1,2020-02-15T06:59:47Z +15532,2006-02-14T15:16:03Z,1061,23,,1,2020-02-15T06:59:47Z +15533,2005-08-23T03:54:39Z,1895,400,2005-08-26T08:27:39Z,2,2020-02-15T06:59:47Z +15534,2005-08-23T03:55:54Z,544,169,2005-08-24T03:54:54Z,1,2020-02-15T06:59:47Z +15535,2005-08-23T03:58:02Z,2371,346,2005-08-25T05:06:02Z,2,2020-02-15T06:59:47Z +15536,2005-08-23T03:58:28Z,4004,98,2005-08-31T03:28:28Z,2,2020-02-15T06:59:47Z +15537,2005-08-23T04:00:30Z,2958,137,2005-08-24T01:45:30Z,2,2020-02-15T06:59:47Z +15538,2005-08-23T04:07:37Z,4226,211,2005-08-28T07:37:37Z,1,2020-02-15T06:59:47Z +15539,2005-08-23T04:09:03Z,2853,582,2005-08-26T04:01:03Z,1,2020-02-15T06:59:47Z +15540,2005-08-23T04:12:52Z,1696,197,2005-08-31T04:25:52Z,1,2020-02-15T06:59:47Z +15541,2005-08-23T04:13:53Z,2762,148,2005-08-29T05:51:53Z,1,2020-02-15T06:59:47Z +15542,2006-02-14T15:16:03Z,21,111,,1,2020-02-15T06:59:47Z +15543,2005-08-23T04:15:41Z,3836,282,2005-09-01T05:09:41Z,2,2020-02-15T06:59:47Z +15544,2005-08-23T04:17:56Z,1918,30,2005-09-01T00:43:56Z,2,2020-02-15T06:59:47Z +15545,2005-08-23T04:20:16Z,843,513,2005-08-29T08:22:16Z,1,2020-02-15T06:59:47Z +15546,2005-08-23T04:20:38Z,2087,223,2005-09-01T09:57:38Z,2,2020-02-15T06:59:47Z +15547,2005-08-23T04:25:50Z,1488,69,2005-08-26T00:57:50Z,1,2020-02-15T06:59:47Z +15548,2005-08-23T04:26:20Z,2350,334,2005-08-28T01:27:20Z,1,2020-02-15T06:59:47Z +15549,2005-08-23T04:27:06Z,369,170,2005-09-01T06:07:06Z,1,2020-02-15T06:59:47Z +15550,2005-08-23T04:27:54Z,1375,465,2005-08-29T01:29:54Z,1,2020-02-15T06:59:47Z +15551,2005-08-23T04:28:25Z,3570,345,2005-08-26T07:19:25Z,1,2020-02-15T06:59:47Z +15552,2005-08-23T04:33:23Z,4347,527,2005-09-01T10:25:23Z,2,2020-02-15T06:59:47Z +15553,2005-08-23T04:33:39Z,1659,232,2005-08-25T07:53:39Z,2,2020-02-15T06:59:47Z +15554,2005-08-23T04:48:12Z,198,280,2005-08-29T05:11:12Z,1,2020-02-15T06:59:47Z +15555,2005-08-23T04:51:52Z,1869,347,2005-08-24T01:01:52Z,1,2020-02-15T06:59:47Z +15556,2005-08-23T04:52:16Z,3683,108,2005-09-01T02:05:16Z,2,2020-02-15T06:59:47Z +15557,2005-08-23T04:52:17Z,3641,444,2005-08-30T02:15:17Z,2,2020-02-15T06:59:47Z +15558,2005-08-23T04:52:22Z,638,474,2005-09-01T02:26:22Z,1,2020-02-15T06:59:47Z +15559,2005-08-23T04:55:05Z,1773,517,2005-08-30T09:01:05Z,2,2020-02-15T06:59:47Z +15560,2005-08-23T05:01:13Z,3616,107,2005-09-01T05:02:13Z,1,2020-02-15T06:59:47Z +15561,2005-08-23T05:02:31Z,68,469,2005-09-01T02:51:31Z,1,2020-02-15T06:59:47Z +15562,2005-08-23T05:04:33Z,4238,149,2005-08-27T09:58:33Z,1,2020-02-15T06:59:47Z +15563,2005-08-23T05:08:58Z,170,372,2005-08-24T04:24:58Z,1,2020-02-15T06:59:47Z +15564,2005-08-23T05:10:42Z,1268,353,2005-08-30T03:17:42Z,1,2020-02-15T06:59:47Z +15565,2005-08-23T05:13:09Z,71,546,2005-08-30T08:58:09Z,2,2020-02-15T06:59:47Z +15566,2005-08-23T05:17:23Z,4344,76,2005-09-01T08:09:23Z,2,2020-02-15T06:59:47Z +15567,2005-08-23T05:20:36Z,2506,54,2005-08-24T10:09:36Z,2,2020-02-15T06:59:47Z +15568,2005-08-23T05:24:09Z,988,556,2005-08-27T08:57:09Z,2,2020-02-15T06:59:47Z +15569,2005-08-23T05:24:29Z,1071,313,2005-08-30T08:23:29Z,2,2020-02-15T06:59:47Z +15570,2005-08-23T05:24:55Z,4014,557,2005-08-31T07:06:55Z,2,2020-02-15T06:59:47Z +15571,2005-08-23T05:26:30Z,716,57,2005-08-29T00:54:30Z,2,2020-02-15T06:59:47Z +15572,2005-08-23T05:28:01Z,2816,506,2005-08-27T00:14:01Z,2,2020-02-15T06:59:47Z +15573,2005-08-23T05:28:36Z,3133,561,2005-08-27T05:37:36Z,2,2020-02-15T06:59:47Z +15574,2005-08-23T05:29:32Z,3253,130,2005-09-01T01:25:32Z,2,2020-02-15T06:59:47Z +15575,2005-08-23T05:30:19Z,3916,218,2005-08-27T05:19:19Z,2,2020-02-15T06:59:47Z +15576,2005-08-23T05:32:03Z,3257,595,2005-08-26T02:31:03Z,1,2020-02-15T06:59:47Z +15577,2006-02-14T15:16:03Z,539,29,,2,2020-02-15T06:59:47Z +15578,2005-08-23T05:37:13Z,2829,302,2005-08-27T01:11:13Z,1,2020-02-15T06:59:47Z +15579,2005-08-23T05:38:41Z,3986,480,2005-08-29T09:18:41Z,1,2020-02-15T06:59:47Z +15580,2005-08-23T05:39:06Z,754,279,2005-09-01T01:14:06Z,2,2020-02-15T06:59:47Z +15581,2005-08-23T05:42:13Z,4010,462,2005-08-28T00:03:13Z,1,2020-02-15T06:59:47Z +15582,2005-08-23T05:45:44Z,4264,297,2005-08-25T07:54:44Z,2,2020-02-15T06:59:47Z +15583,2005-08-23T05:47:55Z,4299,215,2005-08-26T01:46:55Z,1,2020-02-15T06:59:47Z +15584,2005-08-23T05:49:21Z,3526,500,2005-08-27T04:49:21Z,1,2020-02-15T06:59:47Z +15585,2005-08-23T05:55:22Z,1177,545,2005-08-24T11:45:22Z,2,2020-02-15T06:59:47Z +15586,2005-08-23T05:57:04Z,3232,148,2005-08-31T01:59:04Z,1,2020-02-15T06:59:47Z +15587,2005-08-23T06:00:28Z,2510,499,2005-08-29T10:15:28Z,1,2020-02-15T06:59:47Z +15588,2005-08-23T06:02:35Z,1810,503,2005-08-30T04:01:35Z,2,2020-02-15T06:59:47Z +15589,2005-08-23T06:03:31Z,2379,22,2005-08-30T07:44:31Z,2,2020-02-15T06:59:47Z +15590,2005-08-23T06:09:44Z,4048,599,2005-09-01T06:53:44Z,2,2020-02-15T06:59:47Z +15591,2005-08-23T06:11:52Z,64,62,2005-08-25T05:34:52Z,1,2020-02-15T06:59:47Z +15593,2005-08-23T06:15:09Z,3734,153,2005-08-27T07:47:09Z,2,2020-02-15T06:59:47Z +15594,2005-08-23T06:18:43Z,4227,567,2005-09-01T09:09:43Z,2,2020-02-15T06:59:47Z +15595,2005-08-23T06:19:12Z,4046,264,2005-08-31T04:52:12Z,1,2020-02-15T06:59:47Z +15596,2005-08-23T06:19:51Z,3834,186,2005-08-25T03:32:51Z,1,2020-02-15T06:59:47Z +15597,2005-08-23T06:21:20Z,3795,420,2005-08-28T02:47:20Z,2,2020-02-15T06:59:47Z +15598,2005-08-23T06:23:26Z,2794,66,2005-09-01T05:43:26Z,1,2020-02-15T06:59:47Z +15599,2005-08-23T06:25:07Z,4560,103,2005-08-29T00:48:07Z,1,2020-02-15T06:59:47Z +15600,2005-08-23T06:31:24Z,2260,113,2005-08-28T06:53:24Z,1,2020-02-15T06:59:47Z +15601,2005-08-23T06:33:26Z,3643,579,2005-08-24T04:10:26Z,1,2020-02-15T06:59:47Z +15602,2005-08-23T06:41:07Z,1429,81,2005-08-24T07:16:07Z,1,2020-02-15T06:59:47Z +15603,2005-08-23T06:41:32Z,2565,6,2005-08-28T08:51:32Z,1,2020-02-15T06:59:47Z +15604,2005-08-23T06:44:19Z,4000,458,2005-08-29T07:17:19Z,1,2020-02-15T06:59:47Z +15605,2005-08-23T06:48:47Z,3152,544,2005-08-28T06:09:47Z,1,2020-02-15T06:59:47Z +15606,2005-08-23T06:50:27Z,1811,279,2005-08-28T04:23:27Z,2,2020-02-15T06:59:47Z +15607,2005-08-23T06:54:06Z,4118,484,2005-08-26T05:03:06Z,2,2020-02-15T06:59:47Z +15608,2005-08-23T06:55:26Z,2921,454,2005-08-28T10:24:26Z,1,2020-02-15T06:59:47Z +15609,2005-08-23T06:56:04Z,1730,256,2005-09-01T03:25:04Z,1,2020-02-15T06:59:47Z +15610,2005-08-23T06:56:15Z,2076,215,2005-08-24T07:37:15Z,2,2020-02-15T06:59:47Z +15611,2005-08-23T06:56:18Z,1713,184,2005-08-25T06:10:18Z,1,2020-02-15T06:59:47Z +15612,2005-08-23T06:59:07Z,3367,305,2005-09-01T11:26:07Z,2,2020-02-15T06:59:47Z +15613,2005-08-23T07:03:19Z,307,461,2005-08-31T07:50:19Z,2,2020-02-15T06:59:47Z +15614,2005-08-23T07:05:15Z,1216,287,2005-09-01T11:41:15Z,1,2020-02-15T06:59:47Z +15615,2005-08-23T07:06:00Z,899,584,2005-08-30T11:21:00Z,2,2020-02-15T06:59:47Z +15616,2005-08-23T07:06:38Z,2947,70,2005-08-30T04:16:38Z,1,2020-02-15T06:59:47Z +15617,2005-08-23T07:07:22Z,4085,569,2005-08-27T01:24:22Z,2,2020-02-15T06:59:47Z +15618,2005-08-23T07:07:58Z,1903,60,2005-08-29T03:48:58Z,1,2020-02-15T06:59:47Z +15619,2005-08-23T07:10:14Z,2468,3,2005-08-26T07:21:14Z,2,2020-02-15T06:59:47Z +15620,2005-08-23T07:10:22Z,1173,270,2005-08-28T06:51:22Z,2,2020-02-15T06:59:47Z +15621,2005-08-23T07:13:43Z,3832,123,2005-08-29T08:19:43Z,1,2020-02-15T06:59:47Z +15622,2005-08-23T07:22:02Z,3335,302,2005-09-01T06:08:02Z,2,2020-02-15T06:59:47Z +15623,2005-08-23T07:23:29Z,3003,525,2005-08-31T01:47:29Z,1,2020-02-15T06:59:47Z +15624,2005-08-23T07:24:27Z,396,105,2005-08-29T12:36:27Z,2,2020-02-15T06:59:47Z +15625,2005-08-23T07:25:29Z,4200,207,2005-08-27T13:17:29Z,2,2020-02-15T06:59:47Z +15626,2005-08-23T07:25:34Z,640,370,2005-08-28T11:01:34Z,1,2020-02-15T06:59:47Z +15627,2005-08-23T07:25:38Z,1364,453,2005-08-31T02:53:38Z,2,2020-02-15T06:59:47Z +15628,2005-08-23T07:28:04Z,1348,408,2005-08-26T04:23:04Z,1,2020-02-15T06:59:47Z +15629,2005-08-23T07:28:22Z,3725,286,2005-08-29T06:29:22Z,2,2020-02-15T06:59:47Z +15630,2005-08-23T07:29:13Z,3590,580,2005-08-31T04:33:13Z,2,2020-02-15T06:59:47Z +15631,2005-08-23T07:30:23Z,2458,93,2005-08-24T07:23:23Z,1,2020-02-15T06:59:47Z +15632,2005-08-23T07:30:26Z,2941,60,2005-08-24T07:53:26Z,2,2020-02-15T06:59:47Z +15633,2005-08-23T07:31:10Z,882,497,2005-08-26T04:35:10Z,2,2020-02-15T06:59:47Z +15634,2005-08-23T07:34:18Z,2517,576,2005-08-24T12:00:18Z,2,2020-02-15T06:59:47Z +15635,2005-08-23T07:43:00Z,3308,4,2005-08-27T10:47:00Z,1,2020-02-15T06:59:47Z +15636,2005-08-23T07:50:46Z,1169,380,2005-08-26T07:59:46Z,2,2020-02-15T06:59:47Z +15637,2005-08-23T07:53:38Z,445,172,2005-08-29T03:16:38Z,2,2020-02-15T06:59:47Z +15638,2005-08-23T07:54:54Z,3358,563,2005-08-30T13:33:54Z,2,2020-02-15T06:59:47Z +15639,2005-08-23T08:03:25Z,42,214,2005-08-24T10:21:25Z,2,2020-02-15T06:59:47Z +15640,2005-08-23T08:04:40Z,3505,262,2005-08-24T06:38:40Z,1,2020-02-15T06:59:47Z +15641,2005-08-23T08:06:49Z,3126,240,2005-08-24T13:17:49Z,1,2020-02-15T06:59:47Z +15642,2005-08-23T08:09:11Z,2627,160,2005-08-28T05:57:11Z,1,2020-02-15T06:59:47Z +15643,2005-08-23T08:13:26Z,103,298,2005-08-25T05:18:26Z,2,2020-02-15T06:59:47Z +15644,2006-02-14T15:16:03Z,3139,43,,2,2020-02-15T06:59:47Z +15645,2006-02-14T15:16:03Z,3838,214,,2,2020-02-15T06:59:47Z +15646,2005-08-23T08:19:55Z,3217,114,2005-08-29T02:32:55Z,1,2020-02-15T06:59:47Z +15647,2005-08-23T08:23:56Z,2051,251,2005-08-26T11:00:56Z,1,2020-02-15T06:59:47Z +15648,2005-08-23T08:27:57Z,4039,80,2005-08-30T08:53:57Z,2,2020-02-15T06:59:47Z +15649,2005-08-23T08:28:03Z,415,60,2005-08-30T05:11:03Z,1,2020-02-15T06:59:47Z +15650,2005-08-23T08:29:53Z,2447,353,2005-08-25T07:23:53Z,2,2020-02-15T06:59:47Z +15651,2005-08-23T08:31:49Z,3393,451,2005-08-26T02:57:49Z,1,2020-02-15T06:59:47Z +15652,2005-08-23T08:34:10Z,4440,578,2005-08-30T12:31:10Z,1,2020-02-15T06:59:47Z +15653,2005-08-23T08:34:42Z,2736,439,2005-09-01T03:07:42Z,1,2020-02-15T06:59:47Z +15654,2005-08-23T08:34:53Z,4360,471,2005-08-30T04:18:53Z,2,2020-02-15T06:59:47Z +15655,2006-02-14T15:16:03Z,604,359,,1,2020-02-15T06:59:47Z +15656,2005-08-23T08:38:58Z,4239,334,2005-08-24T04:08:58Z,2,2020-02-15T06:59:47Z +15657,2005-08-23T08:42:40Z,1897,36,2005-09-01T13:08:40Z,1,2020-02-15T06:59:47Z +15658,2005-08-23T08:48:43Z,3565,22,2005-08-25T05:38:43Z,1,2020-02-15T06:59:47Z +15659,2005-08-23T08:48:43Z,4573,131,2005-08-27T14:19:43Z,2,2020-02-15T06:59:47Z +15660,2005-08-23T08:51:21Z,3223,388,2005-08-28T06:26:21Z,2,2020-02-15T06:59:47Z +15661,2005-08-23T08:52:03Z,1599,346,2005-08-30T08:17:03Z,2,2020-02-15T06:59:47Z +15662,2005-08-23T08:52:50Z,3028,223,2005-08-24T08:08:50Z,1,2020-02-15T06:59:47Z +15663,2005-08-23T08:54:26Z,3291,291,2005-08-29T02:56:26Z,1,2020-02-15T06:59:47Z +15664,2005-08-23T08:57:11Z,2029,351,2005-08-31T14:19:11Z,2,2020-02-15T06:59:47Z +15665,2005-08-23T08:59:12Z,3471,487,2005-08-24T12:50:12Z,2,2020-02-15T06:59:47Z +15666,2005-08-23T09:01:10Z,3406,586,2005-08-31T12:32:10Z,2,2020-02-15T06:59:47Z +15667,2005-08-23T09:02:03Z,1302,73,2005-08-24T05:47:03Z,1,2020-02-15T06:59:47Z +15668,2005-08-23T09:02:04Z,1963,38,2005-08-29T03:17:04Z,2,2020-02-15T06:59:47Z +15669,2005-08-23T09:06:17Z,1542,334,2005-08-30T08:10:17Z,2,2020-02-15T06:59:47Z +15670,2005-08-23T09:07:11Z,2834,211,2005-08-31T04:32:11Z,2,2020-02-15T06:59:47Z +15671,2005-08-23T09:08:16Z,3716,112,2005-08-29T14:01:16Z,1,2020-02-15T06:59:47Z +15672,2005-08-23T09:09:18Z,701,210,2005-08-27T06:19:18Z,1,2020-02-15T06:59:47Z +15673,2005-08-23T09:12:50Z,3096,321,2005-08-29T12:45:50Z,2,2020-02-15T06:59:47Z +15674,2005-08-23T09:16:39Z,4482,90,2005-09-01T11:57:39Z,1,2020-02-15T06:59:47Z +15675,2005-08-23T09:18:52Z,4153,293,2005-08-30T14:59:52Z,2,2020-02-15T06:59:47Z +15676,2005-08-23T09:23:08Z,3874,353,2005-08-30T06:19:08Z,2,2020-02-15T06:59:47Z +15677,2005-08-23T09:23:36Z,2050,109,2005-08-27T05:01:36Z,1,2020-02-15T06:59:47Z +15678,2005-08-23T09:23:45Z,1345,413,2005-08-27T11:38:45Z,2,2020-02-15T06:59:47Z +15679,2005-08-23T09:27:29Z,2945,103,2005-08-28T09:14:29Z,1,2020-02-15T06:59:47Z +15680,2005-08-23T09:33:22Z,1370,169,2005-08-31T13:29:22Z,2,2020-02-15T06:59:47Z +15681,2005-08-23T09:35:34Z,2813,61,2005-08-27T08:33:34Z,1,2020-02-15T06:59:47Z +15682,2005-08-23T09:37:34Z,3293,31,2005-08-31T06:01:34Z,1,2020-02-15T06:59:47Z +15683,2005-08-23T09:38:17Z,3787,168,2005-08-30T12:31:17Z,2,2020-02-15T06:59:47Z +15684,2005-08-23T09:40:04Z,3976,586,2005-08-28T15:28:04Z,1,2020-02-15T06:59:47Z +15685,2005-08-23T09:41:28Z,370,491,2005-08-30T10:11:28Z,1,2020-02-15T06:59:47Z +15686,2005-08-23T09:42:21Z,2041,206,2005-08-29T12:22:21Z,1,2020-02-15T06:59:47Z +15687,2005-08-23T09:46:33Z,276,112,2005-09-01T06:07:33Z,1,2020-02-15T06:59:47Z +15688,2005-08-23T09:48:45Z,2851,105,2005-08-30T10:28:45Z,2,2020-02-15T06:59:47Z +15689,2005-08-23T09:52:55Z,248,259,2005-08-29T11:15:55Z,1,2020-02-15T06:59:47Z +15690,2005-08-23T09:53:30Z,2102,554,2005-08-29T10:27:30Z,1,2020-02-15T06:59:47Z +15691,2005-08-23T09:53:54Z,784,200,2005-08-27T10:14:54Z,1,2020-02-15T06:59:47Z +15692,2005-08-23T10:00:02Z,1852,503,2005-08-24T05:25:02Z,1,2020-02-15T06:59:47Z +15693,2005-08-23T10:00:24Z,748,94,2005-08-25T08:23:24Z,1,2020-02-15T06:59:47Z +15694,2005-08-23T10:02:46Z,3017,506,2005-08-31T05:46:46Z,2,2020-02-15T06:59:47Z +15695,2006-02-14T15:16:03Z,2954,300,,1,2020-02-15T06:59:47Z +15696,2005-08-23T10:04:17Z,2836,93,2005-08-25T08:47:17Z,2,2020-02-15T06:59:47Z +15697,2005-08-23T10:04:36Z,1987,380,2005-08-24T05:00:36Z,2,2020-02-15T06:59:47Z +15698,2005-08-23T10:11:40Z,4465,395,2005-08-28T08:50:40Z,2,2020-02-15T06:59:47Z +15699,2005-08-23T10:20:35Z,4155,501,2005-08-30T13:56:35Z,1,2020-02-15T06:59:47Z +15700,2005-08-23T10:21:21Z,2935,552,2005-08-24T15:37:21Z,1,2020-02-15T06:59:47Z +15701,2005-08-23T10:22:21Z,2942,516,2005-08-24T10:52:21Z,1,2020-02-15T06:59:47Z +15702,2005-08-23T10:23:28Z,1602,56,2005-08-29T11:08:28Z,2,2020-02-15T06:59:47Z +15703,2005-08-23T10:23:48Z,2883,322,2005-09-01T06:54:48Z,2,2020-02-15T06:59:47Z +15704,2005-08-23T10:25:45Z,738,71,2005-08-29T16:06:45Z,2,2020-02-15T06:59:47Z +15705,2005-08-23T10:32:52Z,936,356,2005-08-29T13:18:52Z,2,2020-02-15T06:59:47Z +15706,2005-08-23T10:32:52Z,4486,220,2005-08-24T07:03:52Z,2,2020-02-15T06:59:47Z +15707,2005-08-23T10:35:45Z,3646,91,2005-08-27T10:57:45Z,1,2020-02-15T06:59:47Z +15708,2005-08-23T10:35:51Z,1974,46,2005-08-27T16:02:51Z,1,2020-02-15T06:59:47Z +15709,2005-08-23T10:36:00Z,346,206,2005-08-28T06:18:00Z,2,2020-02-15T06:59:47Z +15710,2006-02-14T15:16:03Z,1020,421,,1,2020-02-15T06:59:47Z +15711,2005-08-23T10:43:00Z,789,297,2005-08-29T16:29:00Z,1,2020-02-15T06:59:47Z +15712,2005-08-23T10:43:56Z,1882,351,2005-08-29T15:35:56Z,2,2020-02-15T06:59:47Z +15713,2005-08-23T10:56:15Z,337,432,2005-08-29T09:14:15Z,2,2020-02-15T06:59:47Z +15714,2006-02-14T15:16:03Z,2083,56,,1,2020-02-15T06:59:47Z +15715,2005-08-23T10:57:40Z,3808,86,2005-08-28T12:40:40Z,1,2020-02-15T06:59:47Z +15716,2005-08-23T11:02:00Z,2812,408,2005-08-28T14:46:00Z,1,2020-02-15T06:59:47Z +15717,2006-02-14T15:16:03Z,902,208,,2,2020-02-15T06:59:47Z +15718,2005-08-23T11:05:17Z,2180,276,2005-08-28T12:50:17Z,1,2020-02-15T06:59:47Z +15719,2005-08-23T11:08:46Z,3990,599,2005-08-25T07:25:46Z,1,2020-02-15T06:59:47Z +15720,2005-08-23T11:15:20Z,2490,456,2005-08-31T09:49:20Z,1,2020-02-15T06:59:47Z +15721,2005-08-23T11:16:16Z,685,154,2005-08-28T10:21:16Z,1,2020-02-15T06:59:47Z +15722,2005-08-23T11:16:29Z,2809,26,2005-09-01T13:24:29Z,2,2020-02-15T06:59:47Z +15723,2005-08-23T11:17:26Z,3915,504,2005-08-31T13:58:26Z,2,2020-02-15T06:59:47Z +15724,2005-08-23T11:22:09Z,1025,478,2005-08-28T12:56:09Z,2,2020-02-15T06:59:47Z +15725,2005-08-23T11:25:00Z,378,599,2005-08-26T11:46:00Z,1,2020-02-15T06:59:47Z +15726,2005-08-23T11:28:26Z,906,503,2005-08-28T11:23:26Z,2,2020-02-15T06:59:47Z +15727,2005-08-23T11:28:49Z,2184,416,2005-08-24T06:24:49Z,2,2020-02-15T06:59:47Z +15728,2005-08-23T11:30:32Z,2567,323,2005-08-28T09:52:32Z,2,2020-02-15T06:59:47Z +15729,2006-02-14T15:16:03Z,2699,193,,2,2020-02-15T06:59:47Z +15730,2005-08-23T11:32:35Z,947,147,2005-08-30T13:46:35Z,2,2020-02-15T06:59:47Z +15731,2005-08-23T11:33:25Z,3403,118,2005-08-24T07:19:25Z,2,2020-02-15T06:59:47Z +15732,2005-08-23T11:35:12Z,3247,412,2005-08-26T12:50:12Z,2,2020-02-15T06:59:47Z +15733,2005-08-23T11:37:32Z,4185,512,2005-08-28T16:27:32Z,1,2020-02-15T06:59:47Z +15734,2005-08-23T11:40:08Z,3952,302,2005-08-27T08:16:08Z,1,2020-02-15T06:59:47Z +15735,2006-02-14T15:16:03Z,3167,295,,1,2020-02-15T06:59:47Z +15736,2005-08-23T11:40:30Z,4272,127,2005-08-30T12:40:30Z,1,2020-02-15T06:59:47Z +15737,2005-08-23T11:52:18Z,996,83,2005-08-28T15:28:18Z,1,2020-02-15T06:59:47Z +15738,2005-08-23T11:55:50Z,556,38,2005-08-30T15:07:50Z,1,2020-02-15T06:59:47Z +15739,2005-08-23T11:56:22Z,266,74,2005-08-29T16:10:22Z,2,2020-02-15T06:59:47Z +15740,2005-08-23T12:07:51Z,100,229,2005-08-24T13:23:51Z,2,2020-02-15T06:59:47Z +15741,2005-08-23T12:10:54Z,4243,126,2005-08-24T10:08:54Z,2,2020-02-15T06:59:47Z +15742,2005-08-23T12:11:37Z,1339,200,2005-08-31T07:28:37Z,2,2020-02-15T06:59:47Z +15743,2005-08-23T12:12:05Z,1625,139,2005-08-26T11:35:05Z,1,2020-02-15T06:59:47Z +15744,2005-08-23T12:15:51Z,2364,59,2005-08-31T17:19:51Z,1,2020-02-15T06:59:47Z +15745,2006-02-14T15:16:03Z,2737,43,,1,2020-02-15T06:59:47Z +15746,2005-08-23T12:26:19Z,2241,246,2005-08-26T09:51:19Z,2,2020-02-15T06:59:47Z +15747,2005-08-23T12:29:24Z,1517,381,2005-08-31T08:27:24Z,2,2020-02-15T06:59:47Z +15748,2005-08-23T12:33:00Z,2757,380,2005-08-25T15:15:00Z,2,2020-02-15T06:59:47Z +15749,2005-08-23T12:33:41Z,4224,575,2005-08-24T10:52:41Z,1,2020-02-15T06:59:47Z +15750,2005-08-23T12:36:05Z,4474,496,2005-08-24T17:40:05Z,2,2020-02-15T06:59:47Z +15751,2005-08-23T12:41:07Z,697,199,2005-08-29T07:03:07Z,2,2020-02-15T06:59:47Z +15752,2005-08-23T12:41:38Z,2112,17,2005-09-01T14:06:38Z,1,2020-02-15T06:59:47Z +15753,2005-08-23T12:43:30Z,3451,144,2005-09-01T09:07:30Z,2,2020-02-15T06:59:47Z +15754,2005-08-23T12:43:42Z,2306,356,2005-08-27T17:45:42Z,2,2020-02-15T06:59:47Z +15755,2005-08-23T12:46:38Z,511,423,2005-08-25T12:59:38Z,1,2020-02-15T06:59:47Z +15756,2005-08-23T12:47:05Z,878,112,2005-08-28T08:34:05Z,2,2020-02-15T06:59:47Z +15757,2005-08-23T12:47:16Z,1308,356,2005-08-29T17:19:16Z,1,2020-02-15T06:59:47Z +15758,2005-08-23T12:47:26Z,152,46,2005-08-29T11:05:26Z,2,2020-02-15T06:59:47Z +15759,2005-08-23T12:47:37Z,1341,361,2005-09-01T11:28:37Z,2,2020-02-15T06:59:47Z +15760,2005-08-23T12:50:00Z,3050,273,2005-08-29T15:41:00Z,2,2020-02-15T06:59:47Z +15761,2005-08-23T12:55:51Z,4362,416,2005-08-26T16:51:51Z,1,2020-02-15T06:59:47Z +15762,2005-08-23T13:01:43Z,887,351,2005-08-26T16:35:43Z,1,2020-02-15T06:59:47Z +15763,2005-08-23T13:02:59Z,124,158,2005-08-24T17:45:59Z,2,2020-02-15T06:59:47Z +15764,2005-08-23T13:05:10Z,2937,8,2005-08-25T16:15:10Z,1,2020-02-15T06:59:47Z +15765,2005-08-23T13:06:19Z,1250,408,2005-08-31T12:18:19Z,1,2020-02-15T06:59:47Z +15766,2005-08-23T13:10:16Z,1996,436,2005-08-30T09:27:16Z,1,2020-02-15T06:59:47Z +15767,2005-08-23T13:14:15Z,3492,241,2005-08-27T14:43:15Z,2,2020-02-15T06:59:47Z +15768,2005-08-23T13:14:47Z,662,267,2005-08-29T14:17:47Z,2,2020-02-15T06:59:47Z +15769,2005-08-23T13:16:15Z,2392,276,2005-08-28T18:31:15Z,1,2020-02-15T06:59:47Z +15770,2005-08-23T13:18:16Z,1424,113,2005-08-29T11:31:16Z,1,2020-02-15T06:59:47Z +15771,2005-08-23T13:18:46Z,3667,262,2005-08-26T07:29:46Z,1,2020-02-15T06:59:47Z +15772,2005-08-23T13:22:56Z,4343,202,2005-08-26T10:35:56Z,2,2020-02-15T06:59:47Z +15773,2005-08-23T13:24:57Z,1626,189,2005-08-31T14:16:57Z,2,2020-02-15T06:59:47Z +15774,2005-08-23T13:25:08Z,1273,254,2005-08-28T10:08:08Z,2,2020-02-15T06:59:47Z +15775,2005-08-23T13:25:44Z,2146,173,2005-09-01T16:56:44Z,1,2020-02-15T06:59:47Z +15776,2005-08-23T13:26:01Z,43,514,2005-08-29T18:17:01Z,1,2020-02-15T06:59:47Z +15777,2005-08-23T13:29:08Z,4241,130,2005-08-27T18:50:08Z,2,2020-02-15T06:59:47Z +15778,2006-02-14T15:16:03Z,1269,234,,1,2020-02-15T06:59:47Z +15779,2005-08-23T13:33:46Z,1560,419,2005-08-28T08:40:46Z,2,2020-02-15T06:59:47Z +15780,2006-02-14T15:16:03Z,2911,120,,2,2020-02-15T06:59:47Z +15781,2005-08-23T13:41:05Z,4449,412,2005-08-31T13:11:05Z,1,2020-02-15T06:59:47Z +15782,2005-08-23T13:43:26Z,3282,245,2005-08-30T14:03:26Z,1,2020-02-15T06:59:47Z +15783,2005-08-23T13:45:44Z,397,247,2005-08-26T09:18:44Z,2,2020-02-15T06:59:47Z +15784,2005-08-23T13:46:00Z,126,425,2005-08-30T11:49:00Z,2,2020-02-15T06:59:47Z +15785,2005-08-23T13:46:27Z,1758,543,2005-08-27T10:16:27Z,2,2020-02-15T06:59:47Z +15786,2005-08-23T13:48:34Z,3132,371,2005-08-27T15:59:34Z,1,2020-02-15T06:59:47Z +15787,2005-08-23T13:51:57Z,2932,123,2005-08-27T17:06:57Z,1,2020-02-15T06:59:47Z +15788,2005-08-23T13:54:39Z,13,269,2005-08-26T10:17:39Z,1,2020-02-15T06:59:47Z +15789,2005-08-23T13:56:40Z,1213,350,2005-08-27T15:25:40Z,1,2020-02-15T06:59:47Z +15790,2005-08-23T14:01:07Z,2887,233,2005-08-30T10:32:07Z,2,2020-02-15T06:59:47Z +15791,2005-08-23T14:02:13Z,4147,445,2005-09-01T09:03:13Z,2,2020-02-15T06:59:47Z +15792,2005-08-23T14:05:37Z,2175,581,2005-08-28T10:54:37Z,1,2020-02-15T06:59:47Z +15793,2005-08-23T14:06:19Z,2863,22,2005-08-24T19:59:19Z,2,2020-02-15T06:59:47Z +15794,2006-02-14T15:16:03Z,3917,579,,2,2020-02-15T06:59:47Z +15795,2005-08-23T14:07:56Z,4371,417,2005-08-25T12:10:56Z,2,2020-02-15T06:59:47Z +15796,2005-08-23T14:12:22Z,1425,158,2005-08-28T17:03:22Z,2,2020-02-15T06:59:47Z +15797,2005-08-23T14:13:47Z,497,503,2005-08-25T09:16:47Z,2,2020-02-15T06:59:47Z +15798,2005-08-23T14:23:03Z,3803,203,2005-08-30T17:39:03Z,2,2020-02-15T06:59:47Z +15799,2005-08-23T14:23:23Z,2519,215,2005-08-24T17:15:23Z,2,2020-02-15T06:59:47Z +15800,2005-08-23T14:23:44Z,963,43,2005-08-29T17:04:44Z,2,2020-02-15T06:59:47Z +15801,2005-08-23T14:26:04Z,1590,165,2005-08-28T15:04:04Z,1,2020-02-15T06:59:47Z +15802,2005-08-23T14:26:51Z,41,158,2005-08-29T16:28:51Z,2,2020-02-15T06:59:47Z +15803,2005-08-23T14:27:07Z,500,105,2005-08-28T12:01:07Z,2,2020-02-15T06:59:47Z +15804,2005-08-23T14:29:16Z,3338,585,2005-08-26T08:41:16Z,1,2020-02-15T06:59:47Z +15805,2005-08-23T14:31:19Z,4511,8,2005-08-25T19:01:19Z,2,2020-02-15T06:59:47Z +15806,2005-08-23T14:31:50Z,2683,166,2005-08-27T16:08:50Z,2,2020-02-15T06:59:47Z +15807,2005-08-23T14:35:10Z,2705,350,2005-08-29T19:06:10Z,2,2020-02-15T06:59:47Z +15808,2005-08-23T14:38:37Z,1663,446,2005-08-27T14:45:37Z,2,2020-02-15T06:59:47Z +15809,2005-08-23T14:42:07Z,1885,431,2005-08-27T15:00:07Z,2,2020-02-15T06:59:47Z +15810,2005-08-23T14:43:15Z,2196,171,2005-08-25T17:41:15Z,1,2020-02-15T06:59:47Z +15811,2005-08-23T14:43:46Z,3487,300,2005-08-27T16:43:46Z,1,2020-02-15T06:59:47Z +15812,2005-08-23T14:47:26Z,4457,45,2005-09-01T10:51:26Z,2,2020-02-15T06:59:47Z +15813,2006-02-14T15:16:03Z,981,9,,1,2020-02-15T06:59:47Z +15814,2005-08-23T14:52:50Z,4361,459,2005-08-27T16:12:50Z,2,2020-02-15T06:59:47Z +15815,2005-08-23T14:55:47Z,316,444,2005-08-24T12:37:47Z,1,2020-02-15T06:59:47Z +15816,2005-08-23T14:58:06Z,3628,31,2005-08-28T13:30:06Z,1,2020-02-15T06:59:47Z +15817,2005-08-23T14:59:51Z,598,348,2005-08-25T15:27:51Z,1,2020-02-15T06:59:47Z +15818,2005-08-23T14:59:58Z,2620,439,2005-08-27T13:13:58Z,2,2020-02-15T06:59:47Z +15819,2005-08-23T15:01:54Z,3639,274,2005-08-31T20:01:54Z,2,2020-02-15T06:59:47Z +15820,2005-08-23T15:03:13Z,4553,308,2005-08-25T20:12:13Z,1,2020-02-15T06:59:47Z +15821,2005-08-23T15:03:58Z,1714,233,2005-08-24T17:46:58Z,2,2020-02-15T06:59:47Z +15822,2005-08-23T15:05:59Z,3602,492,2005-08-24T11:13:59Z,1,2020-02-15T06:59:47Z +15823,2005-08-23T15:08:00Z,3047,81,2005-08-24T17:52:00Z,2,2020-02-15T06:59:47Z +15824,2005-08-23T15:09:17Z,2933,371,2005-08-28T15:14:17Z,2,2020-02-15T06:59:47Z +15825,2005-08-23T15:10:42Z,149,346,2005-08-29T09:28:42Z,2,2020-02-15T06:59:47Z +15826,2005-08-23T15:15:02Z,215,311,2005-08-31T20:39:02Z,2,2020-02-15T06:59:47Z +15827,2005-08-23T15:15:19Z,1732,346,2005-08-24T10:50:19Z,2,2020-02-15T06:59:47Z +15828,2005-08-23T15:16:32Z,428,327,2005-08-29T12:20:32Z,1,2020-02-15T06:59:47Z +15829,2005-08-23T15:17:14Z,4387,30,2005-08-27T13:04:14Z,1,2020-02-15T06:59:47Z +15830,2005-08-23T15:19:15Z,309,467,2005-08-25T18:42:15Z,2,2020-02-15T06:59:47Z +15831,2005-08-23T15:21:19Z,3123,401,2005-08-24T15:47:19Z,2,2020-02-15T06:59:47Z +15832,2005-08-23T15:21:35Z,1468,537,2005-08-30T15:01:35Z,2,2020-02-15T06:59:47Z +15833,2005-08-23T15:22:15Z,801,349,2005-08-31T14:54:15Z,1,2020-02-15T06:59:47Z +15834,2005-08-23T15:23:50Z,217,165,2005-09-01T19:31:50Z,1,2020-02-15T06:59:47Z +15835,2005-08-23T15:25:27Z,1362,128,2005-09-01T16:14:27Z,2,2020-02-15T06:59:47Z +15836,2005-08-23T15:29:17Z,260,468,2005-08-26T11:44:17Z,2,2020-02-15T06:59:47Z +15837,2005-08-23T15:29:41Z,4388,283,2005-08-27T18:17:41Z,1,2020-02-15T06:59:47Z +15838,2005-08-23T15:30:48Z,2194,579,2005-08-31T11:20:48Z,2,2020-02-15T06:59:47Z +15839,2005-08-23T15:34:46Z,3726,294,2005-08-30T21:00:46Z,2,2020-02-15T06:59:47Z +15840,2005-08-23T15:34:49Z,1901,316,2005-08-24T16:54:49Z,1,2020-02-15T06:59:47Z +15841,2005-08-23T15:35:59Z,2865,571,2005-08-30T19:30:59Z,2,2020-02-15T06:59:47Z +15842,2005-08-23T15:36:05Z,1850,146,2005-08-30T14:05:05Z,2,2020-02-15T06:59:47Z +15843,2005-08-23T15:37:31Z,611,215,2005-08-28T18:41:31Z,2,2020-02-15T06:59:47Z +15844,2005-08-23T15:38:12Z,2027,119,2005-08-26T15:18:12Z,1,2020-02-15T06:59:47Z +15845,2005-08-23T15:38:34Z,4312,89,2005-08-25T10:06:34Z,1,2020-02-15T06:59:47Z +15846,2005-08-23T15:39:18Z,3635,47,2005-08-27T14:28:18Z,2,2020-02-15T06:59:47Z +15847,2005-08-23T15:39:38Z,2287,163,2005-08-24T11:46:38Z,1,2020-02-15T06:59:47Z +15848,2005-08-23T15:41:12Z,2141,336,2005-08-26T10:29:12Z,2,2020-02-15T06:59:47Z +15849,2005-08-23T15:41:20Z,4077,482,2005-08-27T15:47:20Z,2,2020-02-15T06:59:47Z +15850,2005-08-23T15:45:42Z,586,563,2005-08-27T19:24:42Z,1,2020-02-15T06:59:47Z +15851,2005-08-23T15:46:33Z,2286,469,2005-08-29T15:52:33Z,1,2020-02-15T06:59:47Z +15852,2005-08-23T15:47:02Z,1506,140,2005-08-25T19:37:02Z,1,2020-02-15T06:59:47Z +15853,2005-08-23T15:54:20Z,225,500,2005-08-24T18:53:20Z,2,2020-02-15T06:59:47Z +15854,2005-08-23T15:58:05Z,1648,464,2005-08-26T19:23:05Z,1,2020-02-15T06:59:47Z +15855,2005-08-23T15:59:01Z,2528,192,2005-08-29T20:26:01Z,1,2020-02-15T06:59:47Z +15856,2005-08-23T15:59:12Z,3379,395,2005-08-25T15:36:12Z,1,2020-02-15T06:59:47Z +15857,2005-08-23T15:59:51Z,2733,575,2005-08-26T12:01:51Z,2,2020-02-15T06:59:47Z +15858,2005-08-23T16:07:15Z,4515,81,2005-08-25T19:36:15Z,2,2020-02-15T06:59:47Z +15859,2005-08-23T16:08:15Z,4269,465,2005-08-28T11:08:15Z,1,2020-02-15T06:59:47Z +15860,2005-08-23T16:08:40Z,2583,41,2005-08-28T15:35:40Z,1,2020-02-15T06:59:47Z +15861,2005-08-23T16:15:45Z,1859,256,2005-09-01T11:37:45Z,2,2020-02-15T06:59:47Z +15862,2006-02-14T15:16:03Z,925,215,,1,2020-02-15T06:59:47Z +15863,2005-08-23T16:17:09Z,2783,328,2005-08-28T16:10:09Z,2,2020-02-15T06:59:47Z +15864,2005-08-23T16:18:12Z,3014,256,2005-08-29T17:10:12Z,2,2020-02-15T06:59:47Z +15865,2005-08-23T16:18:25Z,2031,482,2005-08-26T10:57:25Z,2,2020-02-15T06:59:47Z +15866,2005-08-23T16:19:02Z,3828,296,2005-08-31T12:29:02Z,2,2020-02-15T06:59:47Z +15867,2006-02-14T15:16:03Z,837,505,,2,2020-02-15T06:59:47Z +15868,2005-08-23T16:19:14Z,2186,306,2005-08-29T16:14:14Z,2,2020-02-15T06:59:47Z +15869,2005-08-23T16:22:20Z,1344,357,2005-08-27T11:52:20Z,1,2020-02-15T06:59:47Z +15870,2005-08-23T16:23:08Z,590,251,2005-08-28T20:30:08Z,2,2020-02-15T06:59:47Z +15871,2005-08-23T16:24:24Z,425,57,2005-09-01T13:48:24Z,2,2020-02-15T06:59:47Z +15872,2005-08-23T16:27:24Z,3391,212,2005-08-31T11:57:24Z,1,2020-02-15T06:59:47Z +15873,2005-08-23T16:27:59Z,4548,577,2005-08-26T11:11:59Z,2,2020-02-15T06:59:47Z +15874,2005-08-23T16:30:55Z,621,132,2005-08-28T20:57:55Z,1,2020-02-15T06:59:47Z +15875,2006-02-14T15:16:03Z,3611,41,,1,2020-02-15T06:59:47Z +15876,2005-08-23T16:32:10Z,1735,87,2005-08-24T18:16:10Z,1,2020-02-15T06:59:47Z +15877,2005-08-23T16:33:33Z,2307,559,2005-08-26T10:36:33Z,2,2020-02-15T06:59:47Z +15878,2005-08-23T16:34:31Z,1592,493,2005-08-27T21:51:31Z,2,2020-02-15T06:59:47Z +15879,2005-08-23T16:42:53Z,235,482,2005-08-29T16:21:53Z,2,2020-02-15T06:59:47Z +15880,2005-08-23T16:43:54Z,2538,528,2005-08-31T14:40:54Z,2,2020-02-15T06:59:47Z +15881,2005-08-23T16:44:25Z,617,383,2005-08-29T13:58:25Z,1,2020-02-15T06:59:47Z +15882,2005-08-23T16:44:31Z,2028,312,2005-09-01T15:44:31Z,2,2020-02-15T06:59:47Z +15883,2005-08-23T16:44:56Z,2792,550,2005-08-24T22:42:56Z,1,2020-02-15T06:59:47Z +15884,2005-08-23T16:45:28Z,2255,81,2005-08-27T20:18:28Z,1,2020-02-15T06:59:47Z +15885,2005-08-23T16:50:43Z,2116,565,2005-08-29T20:19:43Z,1,2020-02-15T06:59:47Z +15886,2005-08-23T16:50:53Z,3038,91,2005-08-26T15:38:53Z,2,2020-02-15T06:59:47Z +15887,2005-08-23T16:54:09Z,4263,201,2005-08-26T13:20:09Z,2,2020-02-15T06:59:47Z +15888,2005-08-23T16:56:14Z,2955,321,2005-08-31T14:32:14Z,1,2020-02-15T06:59:47Z +15889,2005-08-23T16:57:43Z,787,137,2005-08-27T22:14:43Z,1,2020-02-15T06:59:47Z +15890,2005-08-23T16:58:12Z,3625,87,2005-08-24T12:23:12Z,1,2020-02-15T06:59:47Z +15891,2005-08-23T17:00:12Z,2168,52,2005-08-31T21:12:12Z,1,2020-02-15T06:59:47Z +15892,2005-08-23T17:01:00Z,1365,174,2005-08-28T12:50:00Z,1,2020-02-15T06:59:47Z +15893,2005-08-23T17:02:00Z,2571,438,2005-08-30T12:45:00Z,2,2020-02-15T06:59:47Z +15894,2006-02-14T15:16:03Z,4416,168,,1,2020-02-15T06:59:47Z +15895,2005-08-23T17:09:31Z,2275,342,2005-08-30T17:15:31Z,1,2020-02-15T06:59:47Z +15896,2005-08-23T17:09:56Z,528,585,2005-08-31T14:51:56Z,2,2020-02-15T06:59:47Z +15897,2005-08-23T17:12:31Z,1652,15,2005-08-30T17:22:31Z,1,2020-02-15T06:59:47Z +15898,2005-08-23T17:13:01Z,3502,88,2005-08-29T11:22:01Z,2,2020-02-15T06:59:47Z +15899,2005-08-23T17:16:28Z,3851,596,2005-08-29T21:46:28Z,2,2020-02-15T06:59:47Z +15900,2005-08-23T17:16:30Z,1112,562,2005-08-27T18:02:30Z,1,2020-02-15T06:59:47Z +15901,2005-08-23T17:19:17Z,2761,226,2005-08-30T14:24:17Z,2,2020-02-15T06:59:47Z +15902,2005-08-23T17:28:03Z,4500,172,2005-08-30T18:36:03Z,1,2020-02-15T06:59:47Z +15903,2005-08-23T17:30:40Z,1289,267,2005-08-29T14:12:40Z,1,2020-02-15T06:59:47Z +15904,2005-08-23T17:32:19Z,179,37,2005-08-24T21:05:19Z,2,2020-02-15T06:59:47Z +15905,2005-08-23T17:33:04Z,3631,59,2005-08-26T17:38:04Z,2,2020-02-15T06:59:47Z +15906,2005-08-23T17:36:00Z,3230,445,2005-08-28T15:32:00Z,2,2020-02-15T06:59:47Z +15907,2005-08-23T17:39:35Z,2898,2,2005-08-25T23:23:35Z,1,2020-02-15T06:59:47Z +15908,2005-08-23T17:42:00Z,2453,135,2005-08-31T22:32:00Z,1,2020-02-15T06:59:47Z +15909,2005-08-23T17:42:42Z,404,452,2005-08-26T20:25:42Z,1,2020-02-15T06:59:47Z +15910,2005-08-23T17:43:16Z,254,456,2005-08-24T21:55:16Z,2,2020-02-15T06:59:47Z +15911,2005-08-23T17:44:53Z,3006,582,2005-09-01T19:14:53Z,1,2020-02-15T06:59:47Z +15912,2005-08-23T17:47:40Z,3079,229,2005-08-31T14:43:40Z,2,2020-02-15T06:59:47Z +15913,2005-08-23T17:48:30Z,3894,93,2005-08-31T21:17:30Z,2,2020-02-15T06:59:47Z +15914,2005-08-23T17:49:26Z,747,557,2005-08-24T12:20:26Z,1,2020-02-15T06:59:47Z +15915,2005-08-23T17:52:01Z,3566,167,2005-08-24T20:40:01Z,2,2020-02-15T06:59:47Z +15916,2005-08-23T17:56:01Z,4580,327,2005-08-31T21:49:01Z,2,2020-02-15T06:59:47Z +15917,2005-08-23T17:57:28Z,2093,589,2005-08-29T20:03:28Z,1,2020-02-15T06:59:47Z +15918,2005-08-23T17:57:35Z,1456,262,2005-08-28T14:16:35Z,2,2020-02-15T06:59:47Z +15919,2005-08-23T18:01:31Z,1746,497,2005-08-24T16:27:31Z,1,2020-02-15T06:59:47Z +15920,2005-08-23T18:05:10Z,243,212,2005-08-26T18:09:10Z,1,2020-02-15T06:59:47Z +15921,2005-08-23T18:06:54Z,223,522,2005-08-30T20:19:54Z,2,2020-02-15T06:59:47Z +15922,2005-08-23T18:07:31Z,1702,263,2005-09-01T22:27:31Z,1,2020-02-15T06:59:47Z +15923,2005-08-23T18:08:19Z,1693,276,2005-08-26T18:06:19Z,2,2020-02-15T06:59:47Z +15924,2005-08-23T18:08:59Z,1114,541,2005-08-27T12:20:59Z,2,2020-02-15T06:59:47Z +15925,2005-08-23T18:15:06Z,3394,440,2005-08-26T18:09:06Z,2,2020-02-15T06:59:47Z +15926,2005-08-23T18:20:56Z,2231,151,2005-08-24T18:20:56Z,2,2020-02-15T06:59:47Z +15927,2005-08-23T18:23:11Z,2450,401,2005-08-24T15:09:11Z,1,2020-02-15T06:59:47Z +15928,2005-08-23T18:23:24Z,2086,75,2005-09-01T23:43:24Z,2,2020-02-15T06:59:47Z +15929,2005-08-23T18:23:30Z,1832,477,2005-08-27T17:04:30Z,1,2020-02-15T06:59:47Z +15930,2005-08-23T18:26:51Z,180,379,2005-08-31T16:12:51Z,1,2020-02-15T06:59:47Z +15931,2005-08-23T18:28:09Z,1128,237,2005-08-28T23:08:09Z,1,2020-02-15T06:59:47Z +15932,2005-08-23T18:31:40Z,4554,405,2005-08-24T16:30:40Z,2,2020-02-15T06:59:47Z +15933,2005-08-23T18:36:44Z,3493,176,2005-08-26T12:41:44Z,2,2020-02-15T06:59:47Z +15934,2005-08-23T18:40:41Z,994,216,2005-08-25T00:18:41Z,2,2020-02-15T06:59:47Z +15935,2005-08-23T18:41:11Z,907,361,2005-08-25T20:59:11Z,1,2020-02-15T06:59:47Z +15936,2005-08-23T18:43:11Z,1293,411,2005-08-26T00:19:11Z,1,2020-02-15T06:59:47Z +15937,2005-08-23T18:43:22Z,2882,194,2005-08-24T22:53:22Z,1,2020-02-15T06:59:47Z +15938,2005-08-23T18:43:31Z,2884,341,2005-08-31T00:26:31Z,2,2020-02-15T06:59:47Z +15939,2005-08-23T18:44:21Z,3209,382,2005-09-01T17:25:21Z,2,2020-02-15T06:59:47Z +15940,2005-08-23T18:45:06Z,1606,86,2005-08-30T13:00:06Z,2,2020-02-15T06:59:47Z +15941,2005-08-23T18:46:44Z,4304,424,2005-08-31T17:31:44Z,1,2020-02-15T06:59:47Z +15942,2005-08-23T18:48:40Z,1096,210,2005-09-01T18:39:40Z,2,2020-02-15T06:59:47Z +15943,2005-08-23T18:49:32Z,706,462,2005-08-27T19:20:32Z,1,2020-02-15T06:59:47Z +15944,2005-08-23T18:50:54Z,4559,348,2005-08-25T18:04:54Z,2,2020-02-15T06:59:47Z +15945,2005-08-23T18:51:41Z,3633,43,2005-08-28T18:42:41Z,1,2020-02-15T06:59:47Z +15946,2005-08-23T18:54:07Z,4549,561,2005-08-28T21:21:07Z,1,2020-02-15T06:59:47Z +15947,2005-08-23T18:54:32Z,1877,580,2005-08-24T22:39:32Z,2,2020-02-15T06:59:47Z +15948,2005-08-23T18:59:33Z,432,520,2005-08-31T13:02:33Z,2,2020-02-15T06:59:47Z +15949,2005-08-23T19:06:04Z,1199,386,2005-08-26T18:39:04Z,2,2020-02-15T06:59:47Z +15950,2005-08-23T19:09:39Z,1374,280,2005-08-31T17:03:39Z,2,2020-02-15T06:59:47Z +15951,2005-08-23T19:10:32Z,3018,446,2005-08-29T14:17:32Z,1,2020-02-15T06:59:47Z +15952,2005-08-23T19:11:29Z,1314,224,2005-08-28T14:41:29Z,1,2020-02-15T06:59:47Z +15953,2005-08-23T19:13:46Z,3727,540,2005-08-28T23:05:46Z,1,2020-02-15T06:59:47Z +15954,2005-08-23T19:14:07Z,576,460,2005-08-24T20:21:07Z,1,2020-02-15T06:59:47Z +15955,2005-08-23T19:19:06Z,2247,349,2005-08-31T23:34:06Z,1,2020-02-15T06:59:47Z +15956,2005-08-23T19:19:21Z,2763,354,2005-08-25T22:15:21Z,2,2020-02-15T06:59:47Z +15957,2005-08-23T19:21:22Z,74,418,2005-08-31T16:42:22Z,1,2020-02-15T06:59:47Z +15958,2005-08-23T19:22:36Z,4164,492,2005-08-30T01:03:36Z,1,2020-02-15T06:59:47Z +15959,2005-08-23T19:27:04Z,547,415,2005-08-24T15:24:04Z,1,2020-02-15T06:59:47Z +15960,2005-08-23T19:35:42Z,1497,431,2005-08-26T17:36:42Z,2,2020-02-15T06:59:47Z +15961,2005-08-23T19:35:42Z,4006,200,2005-08-30T22:52:42Z,1,2020-02-15T06:59:47Z +15962,2005-08-23T19:42:04Z,3491,160,2005-08-25T23:53:04Z,1,2020-02-15T06:59:47Z +15963,2005-08-23T19:42:46Z,3819,134,2005-08-25T22:12:46Z,1,2020-02-15T06:59:47Z +15964,2005-08-23T19:45:25Z,251,141,2005-08-26T22:43:25Z,2,2020-02-15T06:59:47Z +15965,2005-08-23T19:46:39Z,3449,509,2005-08-24T20:08:39Z,2,2020-02-15T06:59:47Z +15966,2006-02-14T15:16:03Z,4472,374,,1,2020-02-15T06:59:47Z +15967,2005-08-23T19:50:06Z,321,257,2005-08-29T14:51:06Z,1,2020-02-15T06:59:47Z +15968,2005-08-23T19:51:29Z,3598,257,2005-08-24T15:07:29Z,1,2020-02-15T06:59:47Z +15969,2005-08-23T19:51:30Z,1807,327,2005-08-31T23:50:30Z,1,2020-02-15T06:59:47Z +15970,2005-08-23T19:54:24Z,4509,395,2005-08-24T18:07:24Z,1,2020-02-15T06:59:47Z +15971,2005-08-23T19:59:33Z,3456,187,2005-09-02T01:28:33Z,1,2020-02-15T06:59:47Z +15972,2005-08-23T20:00:30Z,4428,25,2005-08-30T00:25:30Z,1,2020-02-15T06:59:47Z +15973,2005-08-23T20:04:41Z,2766,343,2005-09-01T20:08:41Z,2,2020-02-15T06:59:47Z +15974,2005-08-23T20:06:04Z,3518,201,2005-08-27T17:33:04Z,2,2020-02-15T06:59:47Z +15975,2005-08-23T20:06:23Z,2723,174,2005-08-27T19:52:23Z,1,2020-02-15T06:59:47Z +15976,2005-08-23T20:07:08Z,835,227,2005-08-25T01:47:08Z,2,2020-02-15T06:59:47Z +15977,2005-08-23T20:07:10Z,1031,550,2005-09-01T22:12:10Z,2,2020-02-15T06:59:47Z +15978,2005-08-23T20:08:18Z,4444,536,2005-08-31T17:35:18Z,2,2020-02-15T06:59:47Z +15979,2005-08-23T20:08:26Z,3733,536,2005-08-26T19:19:26Z,1,2020-02-15T06:59:47Z +15980,2005-08-23T20:10:13Z,3365,196,2005-08-24T17:44:13Z,2,2020-02-15T06:59:47Z +15981,2005-08-23T20:12:17Z,2867,489,2005-08-30T20:43:17Z,1,2020-02-15T06:59:47Z +15982,2005-08-23T20:13:31Z,2920,370,2005-09-01T21:51:31Z,2,2020-02-15T06:59:47Z +15983,2005-08-23T20:13:38Z,3318,464,2005-08-30T18:42:38Z,1,2020-02-15T06:59:47Z +15984,2005-08-23T20:16:27Z,2011,495,2005-08-27T01:43:27Z,1,2020-02-15T06:59:47Z +15985,2005-08-23T20:20:23Z,2646,179,2005-08-26T20:55:23Z,1,2020-02-15T06:59:47Z +15986,2005-08-23T20:20:37Z,3472,226,2005-08-29T20:49:37Z,1,2020-02-15T06:59:47Z +15987,2005-08-23T20:22:17Z,3150,302,2005-08-31T21:46:17Z,2,2020-02-15T06:59:47Z +15988,2005-08-23T20:23:08Z,3932,400,2005-08-28T20:50:08Z,1,2020-02-15T06:59:47Z +15989,2005-08-23T20:24:36Z,38,96,2005-08-26T20:35:36Z,1,2020-02-15T06:59:47Z +15990,2005-08-23T20:25:11Z,3233,512,2005-08-25T15:01:11Z,2,2020-02-15T06:59:47Z +15991,2005-08-23T20:27:34Z,2078,203,2005-08-28T16:48:34Z,2,2020-02-15T06:59:47Z +15992,2005-08-23T20:28:32Z,3334,589,2005-08-24T21:35:32Z,1,2020-02-15T06:59:47Z +15993,2005-08-23T20:28:44Z,1638,12,2005-08-27T16:23:44Z,2,2020-02-15T06:59:47Z +15994,2005-08-23T20:29:10Z,438,595,2005-08-28T01:41:10Z,2,2020-02-15T06:59:47Z +15995,2005-08-23T20:29:56Z,1122,377,2005-08-30T18:09:56Z,1,2020-02-15T06:59:47Z +15996,2005-08-23T20:31:38Z,3098,151,2005-08-29T20:58:38Z,1,2020-02-15T06:59:47Z +15997,2005-08-23T20:40:31Z,2843,447,2005-08-26T19:47:31Z,1,2020-02-15T06:59:47Z +15998,2005-08-23T20:41:09Z,1229,545,2005-08-27T00:20:09Z,1,2020-02-15T06:59:47Z +15999,2005-08-23T20:44:10Z,2584,377,2005-08-31T02:38:10Z,2,2020-02-15T06:59:47Z +16000,2005-08-23T20:44:36Z,282,71,2005-08-25T02:29:36Z,1,2020-02-15T06:59:47Z +16001,2005-08-23T20:45:53Z,245,108,2005-08-27T15:52:53Z,1,2020-02-15T06:59:47Z +16002,2005-08-23T20:47:12Z,2770,73,2005-08-27T23:07:12Z,1,2020-02-15T06:59:47Z +16003,2005-08-23T20:47:28Z,3413,577,2005-08-31T23:22:28Z,1,2020-02-15T06:59:47Z +16004,2005-08-23T20:53:20Z,2223,147,2005-08-31T15:15:20Z,2,2020-02-15T06:59:47Z +16005,2005-08-23T21:00:22Z,3265,466,2005-09-02T02:35:22Z,1,2020-02-15T06:59:47Z +16006,2005-08-23T21:01:09Z,240,533,2005-08-25T19:33:09Z,1,2020-02-15T06:59:47Z +16007,2005-08-23T21:02:43Z,3236,126,2005-08-30T23:37:43Z,2,2020-02-15T06:59:47Z +16008,2005-08-23T21:04:51Z,3273,189,2005-08-31T22:09:51Z,1,2020-02-15T06:59:47Z +16009,2005-08-23T21:07:59Z,3055,133,2005-08-29T16:54:59Z,2,2020-02-15T06:59:47Z +16010,2005-08-23T21:10:24Z,2539,173,2005-08-25T17:58:24Z,1,2020-02-15T06:59:47Z +16011,2005-08-23T21:11:33Z,1093,389,2005-08-31T17:51:33Z,1,2020-02-15T06:59:47Z +16012,2005-08-23T21:13:39Z,2421,80,2005-08-30T23:52:39Z,2,2020-02-15T06:59:47Z +16013,2005-08-23T21:17:17Z,561,462,2005-08-26T21:15:17Z,1,2020-02-15T06:59:47Z +16014,2005-08-23T21:18:31Z,3322,532,2005-08-31T17:28:31Z,2,2020-02-15T06:59:47Z +16015,2005-08-23T21:25:03Z,3113,50,2005-08-24T20:05:03Z,2,2020-02-15T06:59:47Z +16016,2005-08-23T21:26:35Z,3374,595,2005-08-28T16:06:35Z,2,2020-02-15T06:59:47Z +16017,2005-08-23T21:27:11Z,664,535,2005-08-24T23:22:11Z,1,2020-02-15T06:59:47Z +16018,2005-08-23T21:27:35Z,897,439,2005-08-30T00:36:35Z,1,2020-02-15T06:59:47Z +16019,2005-08-23T21:30:45Z,3093,278,2005-08-27T23:45:45Z,2,2020-02-15T06:59:47Z +16020,2005-08-23T21:34:33Z,277,311,2005-09-01T18:17:33Z,1,2020-02-15T06:59:47Z +16021,2005-08-23T21:37:59Z,3057,314,2005-08-31T01:52:59Z,1,2020-02-15T06:59:47Z +16022,2005-08-23T21:44:27Z,2925,504,2005-08-28T01:52:27Z,1,2020-02-15T06:59:47Z +16023,2005-08-23T21:45:02Z,2347,124,2005-08-24T21:28:02Z,1,2020-02-15T06:59:47Z +16024,2005-08-23T21:46:47Z,2910,473,2005-08-27T02:06:47Z,1,2020-02-15T06:59:47Z +16025,2005-08-23T21:48:54Z,1777,569,2005-08-24T22:05:54Z,2,2020-02-15T06:59:47Z +16026,2005-08-23T21:49:22Z,467,484,2005-08-27T00:47:22Z,1,2020-02-15T06:59:47Z +16027,2005-08-23T21:49:33Z,1724,160,2005-08-30T16:19:33Z,2,2020-02-15T06:59:47Z +16028,2005-08-23T21:52:56Z,2515,119,2005-08-30T18:16:56Z,2,2020-02-15T06:59:47Z +16029,2005-08-23T21:54:02Z,953,143,2005-08-29T23:55:02Z,1,2020-02-15T06:59:47Z +16030,2005-08-23T21:56:04Z,4161,137,2005-08-31T01:24:04Z,2,2020-02-15T06:59:47Z +16031,2005-08-23T21:59:26Z,1843,102,2005-08-29T20:15:26Z,1,2020-02-15T06:59:47Z +16032,2005-08-23T21:59:57Z,2527,447,2005-08-31T22:46:57Z,2,2020-02-15T06:59:47Z +16033,2005-08-23T22:06:15Z,760,226,2005-09-01T02:36:15Z,2,2020-02-15T06:59:47Z +16034,2005-08-23T22:06:34Z,655,502,2005-08-29T18:44:34Z,1,2020-02-15T06:59:47Z +16035,2005-08-23T22:08:04Z,549,37,2005-08-28T03:46:04Z,1,2020-02-15T06:59:47Z +16036,2005-08-23T22:12:44Z,1372,425,2005-08-25T17:48:44Z,2,2020-02-15T06:59:47Z +16037,2005-08-23T22:13:04Z,341,45,2005-09-01T02:48:04Z,2,2020-02-15T06:59:47Z +16038,2005-08-23T22:14:31Z,2612,172,2005-08-30T03:28:31Z,1,2020-02-15T06:59:47Z +16039,2005-08-23T22:18:51Z,545,78,2005-08-31T19:55:51Z,2,2020-02-15T06:59:47Z +16040,2005-08-23T22:19:33Z,3524,195,2005-09-02T02:19:33Z,2,2020-02-15T06:59:47Z +16041,2005-08-23T22:20:26Z,4116,121,2005-08-25T20:14:26Z,2,2020-02-15T06:59:47Z +16042,2005-08-23T22:20:40Z,629,131,2005-08-24T17:54:40Z,1,2020-02-15T06:59:47Z +16043,2005-08-23T22:21:03Z,3869,526,2005-08-31T03:09:03Z,2,2020-02-15T06:59:47Z +16044,2005-08-23T22:24:39Z,1312,468,2005-08-25T04:08:39Z,1,2020-02-15T06:59:47Z +16045,2005-08-23T22:25:26Z,772,14,2005-08-25T23:54:26Z,1,2020-02-15T06:59:47Z +16046,2005-08-23T22:26:47Z,4364,74,2005-08-27T18:02:47Z,2,2020-02-15T06:59:47Z +16047,2005-08-23T22:42:48Z,2088,114,2005-08-25T02:48:48Z,2,2020-02-15T06:59:47Z +16048,2005-08-23T22:43:07Z,2019,103,2005-08-31T21:33:07Z,1,2020-02-15T06:59:47Z +16049,2005-08-23T22:50:12Z,2666,393,2005-08-30T01:01:12Z,2,2020-02-15T06:59:47Z diff --git a/drivers/csv/testdata/sakila-csv/staff.csv b/drivers/csv/testdata/sakila-csv/staff.csv new file mode 100644 index 00000000..b594c5e6 --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/staff.csv @@ -0,0 +1,3 @@ +staff_id,first_name,last_name,address_id,picture,email,store_id,active,username,password,last_update +1,Mike,Hillyer,3,,Mike.Hillyer@sakilastaff.com,1,1,Mike,8cb2237d0679ca88db6464eac60da96345513964,2020-02-15T06:59:28Z +2,Jon,Stephens,4,,Jon.Stephens@sakilastaff.com,2,1,Jon,8cb2237d0679ca88db6464eac60da96345513964,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-csv/store.csv b/drivers/csv/testdata/sakila-csv/store.csv new file mode 100644 index 00000000..0a333f8c --- /dev/null +++ b/drivers/csv/testdata/sakila-csv/store.csv @@ -0,0 +1,3 @@ +store_id,manager_staff_id,address_id,last_update +1,1,1,2020-02-15T06:59:28Z +2,2,2,2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/actor.tsv b/drivers/csv/testdata/sakila-tsv-noheader/actor.tsv new file mode 100644 index 00000000..1414d098 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/actor.tsv @@ -0,0 +1,200 @@ +1 PENELOPE GUINESS 2020-02-15T06:59:28Z +2 NICK WAHLBERG 2020-02-15T06:59:28Z +3 ED CHASE 2020-02-15T06:59:28Z +4 JENNIFER DAVIS 2020-02-15T06:59:28Z +5 JOHNNY LOLLOBRIGIDA 2020-02-15T06:59:28Z +6 BETTE NICHOLSON 2020-02-15T06:59:28Z +7 GRACE MOSTEL 2020-02-15T06:59:28Z +8 MATTHEW JOHANSSON 2020-02-15T06:59:28Z +9 JOE SWANK 2020-02-15T06:59:28Z +10 CHRISTIAN GABLE 2020-02-15T06:59:28Z +11 ZERO CAGE 2020-02-15T06:59:28Z +12 KARL BERRY 2020-02-15T06:59:28Z +13 UMA WOOD 2020-02-15T06:59:28Z +14 VIVIEN BERGEN 2020-02-15T06:59:28Z +15 CUBA OLIVIER 2020-02-15T06:59:28Z +16 FRED COSTNER 2020-02-15T06:59:28Z +17 HELEN VOIGHT 2020-02-15T06:59:28Z +18 DAN TORN 2020-02-15T06:59:28Z +19 BOB FAWCETT 2020-02-15T06:59:28Z +20 LUCILLE TRACY 2020-02-15T06:59:28Z +21 KIRSTEN PALTROW 2020-02-15T06:59:28Z +22 ELVIS MARX 2020-02-15T06:59:28Z +23 SANDRA KILMER 2020-02-15T06:59:28Z +24 CAMERON STREEP 2020-02-15T06:59:28Z +25 KEVIN BLOOM 2020-02-15T06:59:28Z +26 RIP CRAWFORD 2020-02-15T06:59:28Z +27 JULIA MCQUEEN 2020-02-15T06:59:28Z +28 WOODY HOFFMAN 2020-02-15T06:59:28Z +29 ALEC WAYNE 2020-02-15T06:59:28Z +30 SANDRA PECK 2020-02-15T06:59:28Z +31 SISSY SOBIESKI 2020-02-15T06:59:28Z +32 TIM HACKMAN 2020-02-15T06:59:28Z +33 MILLA PECK 2020-02-15T06:59:28Z +34 AUDREY OLIVIER 2020-02-15T06:59:28Z +35 JUDY DEAN 2020-02-15T06:59:28Z +36 BURT DUKAKIS 2020-02-15T06:59:28Z +37 VAL BOLGER 2020-02-15T06:59:28Z +38 TOM MCKELLEN 2020-02-15T06:59:28Z +39 GOLDIE BRODY 2020-02-15T06:59:28Z +40 JOHNNY CAGE 2020-02-15T06:59:28Z +41 JODIE DEGENERES 2020-02-15T06:59:28Z +42 TOM MIRANDA 2020-02-15T06:59:28Z +43 KIRK JOVOVICH 2020-02-15T06:59:28Z +44 NICK STALLONE 2020-02-15T06:59:28Z +45 REESE KILMER 2020-02-15T06:59:28Z +46 PARKER GOLDBERG 2020-02-15T06:59:28Z +47 JULIA BARRYMORE 2020-02-15T06:59:28Z +48 FRANCES DAY-LEWIS 2020-02-15T06:59:28Z +49 ANNE CRONYN 2020-02-15T06:59:28Z +50 NATALIE HOPKINS 2020-02-15T06:59:28Z +51 GARY PHOENIX 2020-02-15T06:59:28Z +52 CARMEN HUNT 2020-02-15T06:59:28Z +53 MENA TEMPLE 2020-02-15T06:59:28Z +54 PENELOPE PINKETT 2020-02-15T06:59:28Z +55 FAY KILMER 2020-02-15T06:59:28Z +56 DAN HARRIS 2020-02-15T06:59:28Z +57 JUDE CRUISE 2020-02-15T06:59:28Z +58 CHRISTIAN AKROYD 2020-02-15T06:59:28Z +59 DUSTIN TAUTOU 2020-02-15T06:59:28Z +60 HENRY BERRY 2020-02-15T06:59:28Z +61 CHRISTIAN NEESON 2020-02-15T06:59:28Z +62 JAYNE NEESON 2020-02-15T06:59:28Z +63 CAMERON WRAY 2020-02-15T06:59:28Z +64 RAY JOHANSSON 2020-02-15T06:59:28Z +65 ANGELA HUDSON 2020-02-15T06:59:28Z +66 MARY TANDY 2020-02-15T06:59:28Z +67 JESSICA BAILEY 2020-02-15T06:59:28Z +68 RIP WINSLET 2020-02-15T06:59:28Z +69 KENNETH PALTROW 2020-02-15T06:59:28Z +70 MICHELLE MCCONAUGHEY 2020-02-15T06:59:28Z +71 ADAM GRANT 2020-02-15T06:59:28Z +72 SEAN WILLIAMS 2020-02-15T06:59:28Z +73 GARY PENN 2020-02-15T06:59:28Z +74 MILLA KEITEL 2020-02-15T06:59:28Z +75 BURT POSEY 2020-02-15T06:59:28Z +76 ANGELINA ASTAIRE 2020-02-15T06:59:28Z +77 CARY MCCONAUGHEY 2020-02-15T06:59:28Z +78 GROUCHO SINATRA 2020-02-15T06:59:28Z +79 MAE HOFFMAN 2020-02-15T06:59:28Z +80 RALPH CRUZ 2020-02-15T06:59:28Z +81 SCARLETT DAMON 2020-02-15T06:59:28Z +82 WOODY JOLIE 2020-02-15T06:59:28Z +83 BEN WILLIS 2020-02-15T06:59:28Z +84 JAMES PITT 2020-02-15T06:59:28Z +85 MINNIE ZELLWEGER 2020-02-15T06:59:28Z +86 GREG CHAPLIN 2020-02-15T06:59:28Z +87 SPENCER PECK 2020-02-15T06:59:28Z +88 KENNETH PESCI 2020-02-15T06:59:28Z +89 CHARLIZE DENCH 2020-02-15T06:59:28Z +90 SEAN GUINESS 2020-02-15T06:59:28Z +91 CHRISTOPHER BERRY 2020-02-15T06:59:28Z +92 KIRSTEN AKROYD 2020-02-15T06:59:28Z +93 ELLEN PRESLEY 2020-02-15T06:59:28Z +94 KENNETH TORN 2020-02-15T06:59:28Z +95 DARYL WAHLBERG 2020-02-15T06:59:28Z +96 GENE WILLIS 2020-02-15T06:59:28Z +97 MEG HAWKE 2020-02-15T06:59:28Z +98 CHRIS BRIDGES 2020-02-15T06:59:28Z +99 JIM MOSTEL 2020-02-15T06:59:28Z +100 SPENCER DEPP 2020-02-15T06:59:28Z +101 SUSAN DAVIS 2020-02-15T06:59:28Z +102 WALTER TORN 2020-02-15T06:59:28Z +103 MATTHEW LEIGH 2020-02-15T06:59:28Z +104 PENELOPE CRONYN 2020-02-15T06:59:28Z +105 SIDNEY CROWE 2020-02-15T06:59:28Z +106 GROUCHO DUNST 2020-02-15T06:59:28Z +107 GINA DEGENERES 2020-02-15T06:59:28Z +108 WARREN NOLTE 2020-02-15T06:59:28Z +109 SYLVESTER DERN 2020-02-15T06:59:28Z +110 SUSAN DAVIS 2020-02-15T06:59:28Z +111 CAMERON ZELLWEGER 2020-02-15T06:59:28Z +112 RUSSELL BACALL 2020-02-15T06:59:28Z +113 MORGAN HOPKINS 2020-02-15T06:59:28Z +114 MORGAN MCDORMAND 2020-02-15T06:59:28Z +115 HARRISON BALE 2020-02-15T06:59:28Z +116 DAN STREEP 2020-02-15T06:59:28Z +117 RENEE TRACY 2020-02-15T06:59:28Z +118 CUBA ALLEN 2020-02-15T06:59:28Z +119 WARREN JACKMAN 2020-02-15T06:59:28Z +120 PENELOPE MONROE 2020-02-15T06:59:28Z +121 LIZA BERGMAN 2020-02-15T06:59:28Z +122 SALMA NOLTE 2020-02-15T06:59:28Z +123 JULIANNE DENCH 2020-02-15T06:59:28Z +124 SCARLETT BENING 2020-02-15T06:59:28Z +125 ALBERT NOLTE 2020-02-15T06:59:28Z +126 FRANCES TOMEI 2020-02-15T06:59:28Z +127 KEVIN GARLAND 2020-02-15T06:59:28Z +128 CATE MCQUEEN 2020-02-15T06:59:28Z +129 DARYL CRAWFORD 2020-02-15T06:59:28Z +130 GRETA KEITEL 2020-02-15T06:59:28Z +131 JANE JACKMAN 2020-02-15T06:59:28Z +132 ADAM HOPPER 2020-02-15T06:59:28Z +133 RICHARD PENN 2020-02-15T06:59:28Z +134 GENE HOPKINS 2020-02-15T06:59:28Z +135 RITA REYNOLDS 2020-02-15T06:59:28Z +136 ED MANSFIELD 2020-02-15T06:59:28Z +137 MORGAN WILLIAMS 2020-02-15T06:59:28Z +138 LUCILLE DEE 2020-02-15T06:59:28Z +139 EWAN GOODING 2020-02-15T06:59:28Z +140 WHOOPI HURT 2020-02-15T06:59:28Z +141 CATE HARRIS 2020-02-15T06:59:28Z +142 JADA RYDER 2020-02-15T06:59:28Z +143 RIVER DEAN 2020-02-15T06:59:28Z +144 ANGELA WITHERSPOON 2020-02-15T06:59:28Z +145 KIM ALLEN 2020-02-15T06:59:28Z +146 ALBERT JOHANSSON 2020-02-15T06:59:28Z +147 FAY WINSLET 2020-02-15T06:59:28Z +148 EMILY DEE 2020-02-15T06:59:28Z +149 RUSSELL TEMPLE 2020-02-15T06:59:28Z +150 JAYNE NOLTE 2020-02-15T06:59:28Z +151 GEOFFREY HESTON 2020-02-15T06:59:28Z +152 BEN HARRIS 2020-02-15T06:59:28Z +153 MINNIE KILMER 2020-02-15T06:59:28Z +154 MERYL GIBSON 2020-02-15T06:59:28Z +155 IAN TANDY 2020-02-15T06:59:28Z +156 FAY WOOD 2020-02-15T06:59:28Z +157 GRETA MALDEN 2020-02-15T06:59:28Z +158 VIVIEN BASINGER 2020-02-15T06:59:28Z +159 LAURA BRODY 2020-02-15T06:59:28Z +160 CHRIS DEPP 2020-02-15T06:59:28Z +161 HARVEY HOPE 2020-02-15T06:59:28Z +162 OPRAH KILMER 2020-02-15T06:59:28Z +163 CHRISTOPHER WEST 2020-02-15T06:59:28Z +164 HUMPHREY WILLIS 2020-02-15T06:59:28Z +165 AL GARLAND 2020-02-15T06:59:28Z +166 NICK DEGENERES 2020-02-15T06:59:28Z +167 LAURENCE BULLOCK 2020-02-15T06:59:28Z +168 WILL WILSON 2020-02-15T06:59:28Z +169 KENNETH HOFFMAN 2020-02-15T06:59:28Z +170 MENA HOPPER 2020-02-15T06:59:28Z +171 OLYMPIA PFEIFFER 2020-02-15T06:59:28Z +172 GROUCHO WILLIAMS 2020-02-15T06:59:28Z +173 ALAN DREYFUSS 2020-02-15T06:59:28Z +174 MICHAEL BENING 2020-02-15T06:59:28Z +175 WILLIAM HACKMAN 2020-02-15T06:59:28Z +176 JON CHASE 2020-02-15T06:59:28Z +177 GENE MCKELLEN 2020-02-15T06:59:28Z +178 LISA MONROE 2020-02-15T06:59:28Z +179 ED GUINESS 2020-02-15T06:59:28Z +180 JEFF SILVERSTONE 2020-02-15T06:59:28Z +181 MATTHEW CARREY 2020-02-15T06:59:28Z +182 DEBBIE AKROYD 2020-02-15T06:59:28Z +183 RUSSELL CLOSE 2020-02-15T06:59:28Z +184 HUMPHREY GARLAND 2020-02-15T06:59:28Z +185 MICHAEL BOLGER 2020-02-15T06:59:28Z +186 JULIA ZELLWEGER 2020-02-15T06:59:28Z +187 RENEE BALL 2020-02-15T06:59:28Z +188 ROCK DUKAKIS 2020-02-15T06:59:28Z +189 CUBA BIRCH 2020-02-15T06:59:28Z +190 AUDREY BAILEY 2020-02-15T06:59:28Z +191 GREGORY GOODING 2020-02-15T06:59:28Z +192 JOHN SUVARI 2020-02-15T06:59:28Z +193 BURT TEMPLE 2020-02-15T06:59:28Z +194 MERYL ALLEN 2020-02-15T06:59:28Z +195 JAYNE SILVERSTONE 2020-02-15T06:59:28Z +196 BELA WALKEN 2020-02-15T06:59:28Z +197 REESE WEST 2020-02-15T06:59:28Z +198 MARY KEITEL 2020-02-15T06:59:28Z +199 JULIA FAWCETT 2020-02-15T06:59:28Z +200 THORA TEMPLE 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/address.tsv b/drivers/csv/testdata/sakila-tsv-noheader/address.tsv new file mode 100644 index 00000000..5802eeb9 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/address.tsv @@ -0,0 +1,603 @@ +1 47 MySakila Drive " " 300 " " 2020-02-15T06:59:28Z +2 28 MySQL Boulevard " " 576 " " 2020-02-15T06:59:28Z +3 23 Workhaven Lane " " 300 " " 2020-02-15T06:59:28Z +4 1411 Lillydale Drive " " 576 " " 2020-02-15T06:59:28Z +5 1913 Hanoi Way " " 463 35200 " " 2020-02-15T06:59:28Z +6 1121 Loja Avenue " " 449 17886 " " 2020-02-15T06:59:28Z +7 692 Joliet Street " " 38 83579 " " 2020-02-15T06:59:28Z +8 1566 Inegl Manor " " 349 53561 " " 2020-02-15T06:59:28Z +9 53 Idfu Parkway " " 361 42399 " " 2020-02-15T06:59:28Z +10 1795 Santiago de Compostela Way " " 295 18743 " " 2020-02-15T06:59:28Z +11 900 Santiago de Compostela Parkway " " 280 93896 " " 2020-02-15T06:59:28Z +12 478 Joliet Way " " 200 77948 " " 2020-02-15T06:59:28Z +13 613 Korolev Drive " " 329 45844 " " 2020-02-15T06:59:28Z +14 1531 Sal Drive " " 162 53628 " " 2020-02-15T06:59:28Z +15 1542 Tarlac Parkway " " 440 1027 " " 2020-02-15T06:59:28Z +16 808 Bhopal Manor " " 582 10672 " " 2020-02-15T06:59:28Z +17 270 Amroha Parkway " " 384 29610 " " 2020-02-15T06:59:28Z +18 770 Bydgoszcz Avenue " " 120 16266 " " 2020-02-15T06:59:28Z +19 419 Iligan Lane " " 76 72878 " " 2020-02-15T06:59:28Z +20 360 Toulouse Parkway " " 495 54308 " " 2020-02-15T06:59:28Z +21 270 Toulon Boulevard " " 156 81766 " " 2020-02-15T06:59:28Z +22 320 Brest Avenue " " 252 43331 " " 2020-02-15T06:59:28Z +23 1417 Lancaster Avenue " " 267 72192 " " 2020-02-15T06:59:28Z +24 1688 Okara Way " " 327 21954 " " 2020-02-15T06:59:28Z +25 262 A Corua (La Corua) Parkway " " 525 34418 " " 2020-02-15T06:59:28Z +26 28 Charlotte Amalie Street " " 443 37551 " " 2020-02-15T06:59:28Z +27 1780 Hino Boulevard " " 303 7716 " " 2020-02-15T06:59:28Z +28 96 Tafuna Way " " 128 99865 " " 2020-02-15T06:59:28Z +29 934 San Felipe de Puerto Plata Street " " 472 99780 " " 2020-02-15T06:59:28Z +30 18 Duisburg Boulevard " " 121 58327 " " 2020-02-15T06:59:28Z +31 217 Botshabelo Place " " 138 49521 " " 2020-02-15T06:59:28Z +32 1425 Shikarpur Manor " " 346 65599 " " 2020-02-15T06:59:28Z +33 786 Aurora Avenue " " 474 65750 " " 2020-02-15T06:59:28Z +34 1668 Anpolis Street " " 316 50199 " " 2020-02-15T06:59:28Z +35 33 Gorontalo Way " " 257 30348 " " 2020-02-15T06:59:28Z +36 176 Mandaluyong Place " " 239 65213 " " 2020-02-15T06:59:28Z +37 127 Purnea (Purnia) Manor " " 17 79388 " " 2020-02-15T06:59:28Z +38 61 Tama Street " " 284 94065 " " 2020-02-15T06:59:28Z +39 391 Callao Drive " " 544 34021 " " 2020-02-15T06:59:28Z +40 334 Munger (Monghyr) Lane " " 31 38145 " " 2020-02-15T06:59:28Z +41 1440 Fukuyama Loop " " 362 47929 " " 2020-02-15T06:59:28Z +42 269 Cam Ranh Parkway " " 115 34689 " " 2020-02-15T06:59:28Z +43 306 Antofagasta Place " " 569 3989 " " 2020-02-15T06:59:28Z +44 671 Graz Street " " 353 94399 " " 2020-02-15T06:59:28Z +45 42 Brindisi Place " " 586 16744 " " 2020-02-15T06:59:28Z +46 1632 Bislig Avenue " " 394 61117 " " 2020-02-15T06:59:28Z +47 1447 Imus Way " " 167 48942 " " 2020-02-15T06:59:28Z +48 1998 Halifax Drive " " 308 76022 " " 2020-02-15T06:59:28Z +49 1718 Valencia Street " " 27 37359 " " 2020-02-15T06:59:28Z +50 46 Pjatigorsk Lane " " 343 23616 " " 2020-02-15T06:59:28Z +51 686 Garland Manor " " 247 52535 " " 2020-02-15T06:59:28Z +52 909 Garland Manor " " 367 69367 " " 2020-02-15T06:59:28Z +53 725 Isesaki Place " " 237 74428 " " 2020-02-15T06:59:28Z +54 115 Hidalgo Parkway " " 379 80168 " " 2020-02-15T06:59:28Z +55 1135 Izumisano Parkway " " 171 48150 " " 2020-02-15T06:59:28Z +56 939 Probolinggo Loop " " 1 4166 " " 2020-02-15T06:59:28Z +57 17 Kabul Boulevard " " 355 38594 " " 2020-02-15T06:59:28Z +58 1964 Allappuzha (Alleppey) Street " " 227 48980 " " 2020-02-15T06:59:28Z +59 1697 Kowloon and New Kowloon Loop " " 49 57807 " " 2020-02-15T06:59:28Z +60 1668 Saint Louis Place " " 397 39072 " " 2020-02-15T06:59:28Z +61 943 Tokat Street " " 560 45428 " " 2020-02-15T06:59:28Z +62 1114 Liepaja Street " " 282 69226 " " 2020-02-15T06:59:28Z +63 1213 Ranchi Parkway " " 350 94352 " " 2020-02-15T06:59:28Z +64 81 Hodeida Way " " 231 55561 " " 2020-02-15T06:59:28Z +65 915 Ponce Place " " 56 83980 " " 2020-02-15T06:59:28Z +66 1717 Guadalajara Lane " " 441 85505 " " 2020-02-15T06:59:28Z +67 1214 Hanoi Way " " 306 67055 " " 2020-02-15T06:59:28Z +68 1966 Amroha Avenue " " 139 70385 " " 2020-02-15T06:59:28Z +69 698 Otsu Street " " 105 71110 " " 2020-02-15T06:59:28Z +70 1150 Kimchon Manor " " 321 96109 " " 2020-02-15T06:59:28Z +71 1586 Guaruj Place " " 579 5135 " " 2020-02-15T06:59:28Z +72 57 Arlington Manor " " 475 48960 " " 2020-02-15T06:59:28Z +73 1031 Daugavpils Parkway " " 63 59025 " " 2020-02-15T06:59:28Z +74 1124 Buenaventura Drive " " 13 6856 " " 2020-02-15T06:59:28Z +75 492 Cam Ranh Street " " 61 50805 " " 2020-02-15T06:59:28Z +76 89 Allappuzha (Alleppey) Manor " " 517 75444 " " 2020-02-15T06:59:28Z +77 1947 Poos de Caldas Boulevard " " 114 60951 " " 2020-02-15T06:59:28Z +78 1206 Dos Quebradas Place " " 431 20207 " " 2020-02-15T06:59:28Z +79 1551 Rampur Lane " " 108 72394 " " 2020-02-15T06:59:28Z +80 602 Paarl Street " " 402 98889 " " 2020-02-15T06:59:28Z +81 1692 Ede Loop " " 30 9223 " " 2020-02-15T06:59:28Z +82 936 Salzburg Lane " " 425 96709 " " 2020-02-15T06:59:28Z +83 586 Tete Way " " 256 1079 " " 2020-02-15T06:59:28Z +84 1888 Kabul Drive " " 217 20936 " " 2020-02-15T06:59:28Z +85 320 Baiyin Parkway " " 319 37307 " " 2020-02-15T06:59:28Z +86 927 Baha Blanca Parkway " " 479 9495 " " 2020-02-15T06:59:28Z +87 929 Tallahassee Loop " " 497 74671 " " 2020-02-15T06:59:28Z +88 125 Citt del Vaticano Boulevard " " 40 67912 " " 2020-02-15T06:59:28Z +89 1557 Ktahya Boulevard " " 88 88002 " " 2020-02-15T06:59:28Z +90 870 Ashqelon Loop " " 489 84931 " " 2020-02-15T06:59:28Z +91 1740 Portoviejo Avenue " " 480 29932 " " 2020-02-15T06:59:28Z +92 1942 Ciparay Parkway " " 113 82624 " " 2020-02-15T06:59:28Z +93 1926 El Alto Avenue " " 289 75543 " " 2020-02-15T06:59:28Z +94 1952 Chatsworth Drive " " 332 25958 " " 2020-02-15T06:59:28Z +95 1370 Le Mans Avenue " " 53 52163 " " 2020-02-15T06:59:28Z +96 984 Effon-Alaiye Avenue " " 183 17119 " " 2020-02-15T06:59:28Z +97 832 Nakhon Sawan Manor " " 592 49021 " " 2020-02-15T06:59:28Z +98 152 Kitwe Parkway " " 82 53182 " " 2020-02-15T06:59:28Z +99 1697 Tanauan Lane " " 399 22870 " " 2020-02-15T06:59:28Z +100 1308 Arecibo Way " " 41 30695 " " 2020-02-15T06:59:28Z +101 1599 Plock Drive " " 534 71986 " " 2020-02-15T06:59:28Z +102 669 Firozabad Loop " " 12 92265 " " 2020-02-15T06:59:28Z +103 588 Vila Velha Manor " " 268 51540 " " 2020-02-15T06:59:28Z +104 1913 Kamakura Place " " 238 97287 " " 2020-02-15T06:59:28Z +105 733 Mandaluyong Place " " 2 77459 " " 2020-02-15T06:59:28Z +106 659 Vaduz Drive " " 34 49708 " " 2020-02-15T06:59:28Z +107 1177 Jelets Way " " 220 3305 " " 2020-02-15T06:59:28Z +108 1386 Yangor Avenue " " 543 80720 " " 2020-02-15T06:59:28Z +109 454 Nakhon Sawan Boulevard " " 173 76383 " " 2020-02-15T06:59:28Z +110 1867 San Juan Bautista Tuxtepec Avenue " " 225 78311 " " 2020-02-15T06:59:28Z +111 1532 Dzerzinsk Way " " 334 9599 " " 2020-02-15T06:59:28Z +112 1002 Ahmadnagar Manor " " 213 93026 " " 2020-02-15T06:59:28Z +113 682 Junan Way " " 273 30418 " " 2020-02-15T06:59:28Z +114 804 Elista Drive " " 159 61069 " " 2020-02-15T06:59:28Z +115 1378 Alvorada Avenue " " 102 75834 " " 2020-02-15T06:59:28Z +116 793 Cam Ranh Avenue " " 292 87057 " " 2020-02-15T06:59:28Z +117 1079 Tel Aviv-Jaffa Boulevard " " 132 10885 " " 2020-02-15T06:59:28Z +118 442 Rae Bareli Place " " 148 24321 " " 2020-02-15T06:59:28Z +119 1107 Nakhon Sawan Avenue " " 365 75149 " " 2020-02-15T06:59:28Z +120 544 Malm Parkway " " 403 63502 " " 2020-02-15T06:59:28Z +121 1967 Sincelejo Place " " 176 73644 " " 2020-02-15T06:59:28Z +122 333 Goinia Way " " 185 78625 " " 2020-02-15T06:59:28Z +123 1987 Coacalco de Berriozbal Loop " " 476 96065 " " 2020-02-15T06:59:28Z +124 241 Mosul Lane " " 147 76157 " " 2020-02-15T06:59:28Z +125 211 Chiayi Drive " " 164 58186 " " 2020-02-15T06:59:28Z +126 1175 Tanauan Way " " 305 64615 " " 2020-02-15T06:59:28Z +127 117 Boa Vista Way " " 566 6804 " " 2020-02-15T06:59:28Z +128 848 Tafuna Manor " " 281 45142 " " 2020-02-15T06:59:28Z +129 569 Baicheng Lane " " 85 60304 " " 2020-02-15T06:59:28Z +130 1666 Qomsheh Drive " " 410 66255 " " 2020-02-15T06:59:28Z +131 801 Hagonoy Drive " " 484 8439 " " 2020-02-15T06:59:28Z +132 1050 Garden Grove Avenue " " 236 4999 " " 2020-02-15T06:59:28Z +133 1854 Tieli Street " " 302 15819 " " 2020-02-15T06:59:28Z +134 758 Junan Lane " " 190 82639 " " 2020-02-15T06:59:28Z +135 1752 So Leopoldo Parkway " " 345 14014 " " 2020-02-15T06:59:28Z +136 898 Belm Manor " " 87 49757 " " 2020-02-15T06:59:28Z +137 261 Saint Louis Way " " 541 83401 " " 2020-02-15T06:59:28Z +138 765 Southampton Drive " " 421 4285 " " 2020-02-15T06:59:28Z +139 943 Johannesburg Avenue " " 417 5892 " " 2020-02-15T06:59:28Z +140 788 Atinsk Street " " 211 81691 " " 2020-02-15T06:59:28Z +141 1749 Daxian Place " " 29 11044 " " 2020-02-15T06:59:28Z +142 1587 Sullana Lane " " 207 85769 " " 2020-02-15T06:59:28Z +143 1029 Dzerzinsk Manor " " 542 57519 " " 2020-02-15T06:59:28Z +144 1666 Beni-Mellal Place " " 123 13377 " " 2020-02-15T06:59:28Z +145 928 Jaffna Loop " " 172 93762 " " 2020-02-15T06:59:28Z +146 483 Ljubertsy Parkway " " 149 60562 " " 2020-02-15T06:59:28Z +147 374 Bat Yam Boulevard " " 266 97700 " " 2020-02-15T06:59:28Z +148 1027 Songkhla Manor " " 340 30861 " " 2020-02-15T06:59:28Z +149 999 Sanaa Loop " " 491 3439 " " 2020-02-15T06:59:28Z +150 879 Newcastle Way " " 499 90732 " " 2020-02-15T06:59:28Z +151 1337 Lincoln Parkway " " 555 99457 " " 2020-02-15T06:59:28Z +152 1952 Pune Lane " " 442 92150 " " 2020-02-15T06:59:28Z +153 782 Mosul Street " " 94 25545 " " 2020-02-15T06:59:28Z +154 781 Shimonoseki Drive " " 202 95444 " " 2020-02-15T06:59:28Z +155 1560 Jelets Boulevard " " 291 77777 " " 2020-02-15T06:59:28Z +156 1963 Moscow Place " " 354 64863 " " 2020-02-15T06:59:28Z +157 456 Escobar Way " " 232 36061 " " 2020-02-15T06:59:28Z +158 798 Cianjur Avenue " " 590 76990 " " 2020-02-15T06:59:28Z +159 185 Novi Sad Place " " 72 41778 " " 2020-02-15T06:59:28Z +160 1367 Yantai Manor " " 381 21294 " " 2020-02-15T06:59:28Z +161 1386 Nakhon Sawan Boulevard " " 420 53502 " " 2020-02-15T06:59:28Z +162 369 Papeete Way " " 187 66639 " " 2020-02-15T06:59:28Z +163 1440 Compton Place " " 307 81037 " " 2020-02-15T06:59:28Z +164 1623 Baha Blanca Manor " " 310 81511 " " 2020-02-15T06:59:28Z +165 97 Shimoga Avenue " " 533 44660 " " 2020-02-15T06:59:28Z +166 1740 Le Mans Loop " " 297 22853 " " 2020-02-15T06:59:28Z +167 1287 Xiangfan Boulevard " " 253 57844 " " 2020-02-15T06:59:28Z +168 842 Salzburg Lane " " 529 3313 " " 2020-02-15T06:59:28Z +169 154 Tallahassee Loop " " 199 62250 " " 2020-02-15T06:59:28Z +170 710 San Felipe del Progreso Avenue " " 304 76901 " " 2020-02-15T06:59:28Z +171 1540 Wroclaw Drive " " 107 62686 " " 2020-02-15T06:59:28Z +172 475 Atinsk Way " " 240 59571 " " 2020-02-15T06:59:28Z +173 1294 Firozabad Drive " " 407 70618 " " 2020-02-15T06:59:28Z +174 1877 Ezhou Lane " " 550 63337 " " 2020-02-15T06:59:28Z +175 316 Uruapan Street " " 223 58194 " " 2020-02-15T06:59:28Z +176 29 Pyongyang Loop " " 58 47753 " " 2020-02-15T06:59:28Z +177 1010 Klerksdorp Way " " 186 6802 " " 2020-02-15T06:59:28Z +178 1848 Salala Boulevard " " 373 25220 " " 2020-02-15T06:59:28Z +179 431 Xiangtan Avenue " " 18 4854 " " 2020-02-15T06:59:28Z +180 757 Rustenburg Avenue " " 483 89668 " " 2020-02-15T06:59:28Z +181 146 Johannesburg Way " " 330 54132 " " 2020-02-15T06:59:28Z +182 1891 Rizhao Boulevard " " 456 47288 " " 2020-02-15T06:59:28Z +183 1089 Iwatsuki Avenue " " 270 35109 " " 2020-02-15T06:59:28Z +184 1410 Benin City Parkway " " 405 29747 " " 2020-02-15T06:59:28Z +185 682 Garden Grove Place " " 333 67497 " " 2020-02-15T06:59:28Z +186 533 al-Ayn Boulevard " " 126 8862 " " 2020-02-15T06:59:28Z +187 1839 Szkesfehrvr Parkway " " 317 55709 " " 2020-02-15T06:59:28Z +188 741 Ambattur Manor " " 438 43310 " " 2020-02-15T06:59:28Z +189 927 Barcelona Street " " 467 65121 " " 2020-02-15T06:59:28Z +190 435 0 Way " " 195 74750 " " 2020-02-15T06:59:28Z +191 140 Chiayi Parkway " " 506 38982 " " 2020-02-15T06:59:28Z +192 1166 Changhwa Street " " 62 58852 " " 2020-02-15T06:59:28Z +193 891 Novi Sad Manor " " 383 5379 " " 2020-02-15T06:59:28Z +194 605 Rio Claro Parkway " " 513 49348 " " 2020-02-15T06:59:28Z +195 1077 San Felipe de Puerto Plata Place " " 369 65387 " " 2020-02-15T06:59:28Z +196 9 San Miguel de Tucumn Manor " " 169 90845 " " 2020-02-15T06:59:28Z +197 447 Surakarta Loop " " 271 10428 " " 2020-02-15T06:59:28Z +198 345 Oshawa Boulevard " " 204 32114 " " 2020-02-15T06:59:28Z +199 1792 Valle de la Pascua Place " " 477 15540 " " 2020-02-15T06:59:28Z +200 1074 Binzhou Manor " " 325 36490 " " 2020-02-15T06:59:28Z +201 817 Bradford Loop " " 109 89459 " " 2020-02-15T06:59:28Z +202 955 Bamenda Way " " 218 1545 " " 2020-02-15T06:59:28Z +203 1149 A Corua (La Corua) Boulevard " " 194 95824 " " 2020-02-15T06:59:28Z +204 387 Mwene-Ditu Drive " " 35 8073 " " 2020-02-15T06:59:28Z +205 68 Molodetno Manor " " 575 4662 " " 2020-02-15T06:59:28Z +206 642 Nador Drive " " 77 3924 " " 2020-02-15T06:59:28Z +207 1688 Nador Lane " " 184 61613 " " 2020-02-15T06:59:28Z +208 1215 Pyongyang Parkway " " 557 25238 " " 2020-02-15T06:59:28Z +209 1679 Antofagasta Street " " 122 86599 " " 2020-02-15T06:59:28Z +210 1304 s-Hertogenbosch Way " " 83 10925 " " 2020-02-15T06:59:28Z +211 850 Salala Loop " " 371 10800 " " 2020-02-15T06:59:28Z +212 624 Oshawa Boulevard " " 51 89959 " " 2020-02-15T06:59:28Z +213 43 Dadu Avenue " " 74 4855 " " 2020-02-15T06:59:28Z +214 751 Lima Loop " " 7 99405 " " 2020-02-15T06:59:28Z +215 1333 Haldia Street " " 174 82161 " " 2020-02-15T06:59:28Z +216 660 Jedda Boulevard " " 65 25053 " " 2020-02-15T06:59:28Z +217 1001 Miyakonojo Lane " " 518 67924 " " 2020-02-15T06:59:28Z +218 226 Brest Manor " " 508 2299 " " 2020-02-15T06:59:28Z +219 1229 Valencia Parkway " " 498 99124 " " 2020-02-15T06:59:28Z +220 1201 Qomsheh Manor " " 28 21464 " " 2020-02-15T06:59:28Z +221 866 Shivapuri Manor " " 448 22474 " " 2020-02-15T06:59:28Z +222 1168 Najafabad Parkway " " 251 40301 " " 2020-02-15T06:59:28Z +223 1244 Allappuzha (Alleppey) Place " " 567 20657 " " 2020-02-15T06:59:28Z +224 1842 Luzinia Boulevard " " 593 94420 " " 2020-02-15T06:59:28Z +225 1926 Gingoog Street " " 511 22824 " " 2020-02-15T06:59:28Z +226 810 Palghat (Palakkad) Boulevard " " 235 73431 " " 2020-02-15T06:59:28Z +227 1820 Maring Parkway " " 324 88307 " " 2020-02-15T06:59:28Z +228 60 Poos de Caldas Street " " 243 82338 " " 2020-02-15T06:59:28Z +229 1014 Loja Manor " " 22 66851 " " 2020-02-15T06:59:28Z +230 201 Effon-Alaiye Way " " 37 64344 " " 2020-02-15T06:59:28Z +231 430 Alessandria Loop " " 439 47446 " " 2020-02-15T06:59:28Z +232 754 Valencia Place " " 406 87911 " " 2020-02-15T06:59:28Z +233 356 Olomouc Manor " " 26 93323 " " 2020-02-15T06:59:28Z +234 1256 Bislig Boulevard " " 86 50598 " " 2020-02-15T06:59:28Z +235 954 Kimchon Place " " 559 42420 " " 2020-02-15T06:59:28Z +236 885 Yingkou Manor " " 596 31390 " " 2020-02-15T06:59:28Z +237 1736 Cavite Place " " 216 98775 " " 2020-02-15T06:59:28Z +238 346 Skikda Parkway " " 233 90628 " " 2020-02-15T06:59:28Z +239 98 Stara Zagora Boulevard " " 96 76448 " " 2020-02-15T06:59:28Z +240 1479 Rustenburg Boulevard " " 527 18727 " " 2020-02-15T06:59:28Z +241 647 A Corua (La Corua) Street " " 357 36971 " " 2020-02-15T06:59:28Z +242 1964 Gijn Manor " " 473 14408 " " 2020-02-15T06:59:28Z +243 47 Syktyvkar Lane " " 118 22236 " " 2020-02-15T06:59:28Z +244 1148 Saarbrcken Parkway " " 226 1921 " " 2020-02-15T06:59:28Z +245 1103 Bilbays Parkway " " 578 87660 " " 2020-02-15T06:59:28Z +246 1246 Boksburg Parkway " " 422 28349 " " 2020-02-15T06:59:28Z +247 1483 Pathankot Street " " 454 37288 " " 2020-02-15T06:59:28Z +248 582 Papeete Loop " " 294 27722 " " 2020-02-15T06:59:28Z +249 300 Junan Street " " 553 81314 " " 2020-02-15T06:59:28Z +250 829 Grand Prairie Way " " 328 6461 " " 2020-02-15T06:59:28Z +251 1473 Changhwa Parkway " " 124 75933 " " 2020-02-15T06:59:28Z +252 1309 Weifang Street " " 520 57338 " " 2020-02-15T06:59:28Z +253 1760 Oshawa Manor " " 535 38140 " " 2020-02-15T06:59:28Z +254 786 Stara Zagora Way " " 390 98332 " " 2020-02-15T06:59:28Z +255 1966 Tonghae Street " " 198 36481 " " 2020-02-15T06:59:28Z +256 1497 Yuzhou Drive " " 312 3433 " " 2020-02-15T06:59:28Z +258 752 Ondo Loop " " 338 32474 " " 2020-02-15T06:59:28Z +259 1338 Zalantun Lane " " 413 45403 " " 2020-02-15T06:59:28Z +260 127 Iwakuni Boulevard " " 192 20777 " " 2020-02-15T06:59:28Z +261 51 Laredo Avenue " " 342 68146 " " 2020-02-15T06:59:28Z +262 771 Yaound Manor " " 64 86768 " " 2020-02-15T06:59:28Z +263 532 Toulon Street " " 460 69517 " " 2020-02-15T06:59:28Z +264 1027 Banjul Place " " 197 50390 " " 2020-02-15T06:59:28Z +265 1158 Mandi Bahauddin Parkway " " 136 98484 " " 2020-02-15T06:59:28Z +266 862 Xintai Lane " " 548 30065 " " 2020-02-15T06:59:28Z +267 816 Cayenne Parkway " " 414 93629 " " 2020-02-15T06:59:28Z +268 1831 Nam Dinh Loop " " 323 51990 " " 2020-02-15T06:59:28Z +269 446 Kirovo-Tepetsk Lane " " 203 19428 " " 2020-02-15T06:59:28Z +270 682 Halisahar Place " " 378 20536 " " 2020-02-15T06:59:28Z +271 1587 Loja Manor " " 447 5410 " " 2020-02-15T06:59:28Z +272 1762 Paarl Parkway " " 298 53928 " " 2020-02-15T06:59:28Z +273 1519 Ilorin Place " " 395 49298 " " 2020-02-15T06:59:28Z +274 920 Kumbakonam Loop " " 446 75090 " " 2020-02-15T06:59:28Z +275 906 Goinia Way " " 255 83565 " " 2020-02-15T06:59:28Z +276 1675 Xiangfan Manor " " 283 11763 " " 2020-02-15T06:59:28Z +277 85 San Felipe de Puerto Plata Drive " " 584 46063 " " 2020-02-15T06:59:28Z +278 144 South Hill Loop " " 445 2012 " " 2020-02-15T06:59:28Z +279 1884 Shikarpur Avenue " " 263 85548 " " 2020-02-15T06:59:28Z +280 1980 Kamjanets-Podilskyi Street " " 404 89502 " " 2020-02-15T06:59:28Z +281 1944 Bamenda Way " " 573 24645 " " 2020-02-15T06:59:28Z +282 556 Baybay Manor " " 374 55802 " " 2020-02-15T06:59:28Z +283 457 Tongliao Loop " " 222 56254 " " 2020-02-15T06:59:28Z +284 600 Bradford Street " " 514 96204 " " 2020-02-15T06:59:28Z +285 1006 Santa Brbara dOeste Manor " " 389 36229 " " 2020-02-15T06:59:28Z +286 1308 Sumy Loop " " 175 30657 " " 2020-02-15T06:59:28Z +287 1405 Chisinau Place " " 411 8160 " " 2020-02-15T06:59:28Z +288 226 Halifax Street " " 277 58492 " " 2020-02-15T06:59:28Z +289 1279 Udine Parkway " " 69 75860 " " 2020-02-15T06:59:28Z +290 1336 Benin City Drive " " 386 46044 " " 2020-02-15T06:59:28Z +291 1155 Liaocheng Place " " 152 22650 " " 2020-02-15T06:59:28Z +292 1993 Tabuk Lane " " 522 64221 " " 2020-02-15T06:59:28Z +293 86 Higashiosaka Lane " " 563 33768 " " 2020-02-15T06:59:28Z +294 1912 Allende Manor " " 279 58124 " " 2020-02-15T06:59:28Z +295 544 Tarsus Boulevard " " 562 53145 " " 2020-02-15T06:59:28Z +296 1936 Cuman Avenue " " 433 61195 " " 2020-02-15T06:59:28Z +297 1192 Tongliao Street " " 470 19065 " " 2020-02-15T06:59:28Z +298 44 Najafabad Way " " 146 61391 " " 2020-02-15T06:59:28Z +299 32 Pudukkottai Lane " " 140 38834 " " 2020-02-15T06:59:28Z +300 661 Chisinau Lane " " 274 8856 " " 2020-02-15T06:59:28Z +301 951 Stara Zagora Manor " " 400 98573 " " 2020-02-15T06:59:28Z +302 922 Vila Velha Loop " " 9 4085 " " 2020-02-15T06:59:28Z +303 898 Jining Lane " " 387 40070 " " 2020-02-15T06:59:28Z +304 1635 Kuwana Boulevard " " 205 52137 " " 2020-02-15T06:59:28Z +305 41 El Alto Parkway " " 398 56883 " " 2020-02-15T06:59:28Z +306 1883 Maikop Lane " " 254 68469 " " 2020-02-15T06:59:28Z +307 1908 Gaziantep Place " " 536 58979 " " 2020-02-15T06:59:28Z +308 687 Alessandria Parkway " " 455 57587 " " 2020-02-15T06:59:28Z +309 827 Yuncheng Drive " " 99 79047 " " 2020-02-15T06:59:28Z +310 913 Coacalco de Berriozbal Loop " " 33 42141 " " 2020-02-15T06:59:28Z +311 715 So Bernardo do Campo Lane " " 507 84804 " " 2020-02-15T06:59:28Z +312 1354 Siegen Street " " 25 80184 " " 2020-02-15T06:59:28Z +313 1191 Sungai Petani Boulevard " " 262 9668 " " 2020-02-15T06:59:28Z +314 1224 Huejutla de Reyes Boulevard " " 91 70923 " " 2020-02-15T06:59:28Z +315 543 Bergamo Avenue " " 215 59686 " " 2020-02-15T06:59:28Z +316 746 Joliet Lane " " 286 94878 " " 2020-02-15T06:59:28Z +317 780 Kimberley Way " " 515 17032 " " 2020-02-15T06:59:28Z +318 1774 Yaound Place " " 166 91400 " " 2020-02-15T06:59:28Z +319 1957 Yantai Lane " " 490 59255 " " 2020-02-15T06:59:28Z +320 1542 Lubumbashi Boulevard " " 57 62472 " " 2020-02-15T06:59:28Z +321 651 Pathankot Loop " " 336 59811 " " 2020-02-15T06:59:28Z +322 1359 Zhoushan Parkway " " 545 29763 " " 2020-02-15T06:59:28Z +323 1769 Iwaki Lane " " 97 25787 " " 2020-02-15T06:59:28Z +324 1145 Vilnius Manor " " 451 73170 " " 2020-02-15T06:59:28Z +325 1892 Nabereznyje Telny Lane " " 516 28396 " " 2020-02-15T06:59:28Z +326 470 Boksburg Street " " 81 97960 " " 2020-02-15T06:59:28Z +327 1427 A Corua (La Corua) Place " " 45 85799 " " 2020-02-15T06:59:28Z +328 479 San Felipe del Progreso Avenue " " 130 54949 " " 2020-02-15T06:59:28Z +329 867 Benin City Avenue " " 591 78543 " " 2020-02-15T06:59:28Z +330 981 Kumbakonam Place " " 89 87611 " " 2020-02-15T06:59:28Z +331 1016 Iwakuni Street " " 269 49833 " " 2020-02-15T06:59:28Z +332 663 Baha Blanca Parkway " " 5 33463 " " 2020-02-15T06:59:28Z +333 1860 Taguig Loop " " 119 59550 " " 2020-02-15T06:59:28Z +334 1816 Bydgoszcz Loop " " 234 64308 " " 2020-02-15T06:59:28Z +335 587 Benguela Manor " " 42 91590 " " 2020-02-15T06:59:28Z +336 430 Kumbakonam Drive " " 457 28814 " " 2020-02-15T06:59:28Z +337 1838 Tabriz Lane " " 143 1195 " " 2020-02-15T06:59:28Z +338 431 Szkesfehrvr Avenue " " 48 57828 " " 2020-02-15T06:59:28Z +339 503 Sogamoso Loop " " 505 49812 " " 2020-02-15T06:59:28Z +340 507 Smolensk Loop " " 492 22971 " " 2020-02-15T06:59:28Z +341 1920 Weifang Avenue " " 427 15643 " " 2020-02-15T06:59:28Z +342 124 al-Manama Way " " 382 52368 " " 2020-02-15T06:59:28Z +343 1443 Mardan Street " " 392 31483 " " 2020-02-15T06:59:28Z +344 1909 Benguela Lane " " 581 19913 " " 2020-02-15T06:59:28Z +345 68 Ponce Parkway " " 201 85926 " " 2020-02-15T06:59:28Z +346 1217 Konotop Avenue " " 151 504 " " 2020-02-15T06:59:28Z +347 1293 Nam Dinh Way " " 84 71583 " " 2020-02-15T06:59:28Z +348 785 Vaduz Street " " 335 36170 " " 2020-02-15T06:59:28Z +349 1516 Escobar Drive " " 370 46069 " " 2020-02-15T06:59:28Z +350 1628 Nagareyama Lane " " 453 60079 " " 2020-02-15T06:59:28Z +351 1157 Nyeri Loop " " 320 56380 " " 2020-02-15T06:59:28Z +352 1673 Tangail Drive " " 137 26857 " " 2020-02-15T06:59:28Z +353 381 Kabul Way " " 209 87272 " " 2020-02-15T06:59:28Z +354 953 Hodeida Street " " 221 18841 " " 2020-02-15T06:59:28Z +355 469 Nakhon Sawan Street " " 531 58866 " " 2020-02-15T06:59:28Z +356 1378 Beira Loop " " 597 40792 " " 2020-02-15T06:59:28Z +357 1641 Changhwa Place " " 52 37636 " " 2020-02-15T06:59:28Z +358 1698 Southport Loop " " 393 49009 " " 2020-02-15T06:59:28Z +359 519 Nyeri Manor " " 461 37650 " " 2020-02-15T06:59:28Z +360 619 Hunuco Avenue " " 331 81508 " " 2020-02-15T06:59:28Z +361 45 Aparecida de Goinia Place " " 464 7431 " " 2020-02-15T06:59:28Z +362 482 Kowloon and New Kowloon Manor " " 90 97056 " " 2020-02-15T06:59:28Z +363 604 Bern Place " " 429 5373 " " 2020-02-15T06:59:28Z +364 1623 Kingstown Drive " " 20 91299 " " 2020-02-15T06:59:28Z +365 1009 Zanzibar Lane " " 32 64875 " " 2020-02-15T06:59:28Z +366 114 Jalib al-Shuyukh Manor " " 585 60440 " " 2020-02-15T06:59:28Z +367 1163 London Parkway " " 66 6066 " " 2020-02-15T06:59:28Z +368 1658 Jastrzebie-Zdrj Loop " " 372 96584 " " 2020-02-15T06:59:28Z +369 817 Laredo Avenue " " 188 77449 " " 2020-02-15T06:59:28Z +370 1565 Tangail Manor " " 377 45750 " " 2020-02-15T06:59:28Z +371 1912 Emeishan Drive " " 50 33050 " " 2020-02-15T06:59:28Z +372 230 Urawa Drive " " 8 2738 " " 2020-02-15T06:59:28Z +373 1922 Miraj Way " " 356 13203 " " 2020-02-15T06:59:28Z +374 433 Florencia Street " " 250 91330 " " 2020-02-15T06:59:28Z +375 1049 Matamoros Parkway " " 191 69640 " " 2020-02-15T06:59:28Z +376 1061 Ede Avenue " " 98 57810 " " 2020-02-15T06:59:28Z +377 154 Oshawa Manor " " 415 72771 " " 2020-02-15T06:59:28Z +378 1191 Tandil Drive " " 523 6362 " " 2020-02-15T06:59:28Z +379 1133 Rizhao Avenue " " 572 2800 " " 2020-02-15T06:59:28Z +380 1519 Santiago de los Caballeros Loop " " 348 22025 " " 2020-02-15T06:59:28Z +381 1618 Olomouc Manor " " 285 26385 " " 2020-02-15T06:59:28Z +382 220 Hidalgo Drive " " 265 45298 " " 2020-02-15T06:59:28Z +383 686 Donostia-San Sebastin Lane " " 471 97390 " " 2020-02-15T06:59:28Z +384 97 Mogiljov Lane " " 73 89294 " " 2020-02-15T06:59:28Z +385 1642 Charlotte Amalie Drive " " 549 75442 " " 2020-02-15T06:59:28Z +386 1368 Maracabo Boulevard " " 493 32716 " " 2020-02-15T06:59:28Z +387 401 Sucre Boulevard " " 322 25007 " " 2020-02-15T06:59:28Z +388 368 Hunuco Boulevard " " 360 17165 " " 2020-02-15T06:59:28Z +389 500 Lincoln Parkway " " 210 95509 " " 2020-02-15T06:59:28Z +390 102 Chapra Drive " " 521 14073 " " 2020-02-15T06:59:28Z +391 1793 Meixian Place " " 258 33535 " " 2020-02-15T06:59:28Z +392 514 Ife Way " " 315 69973 " " 2020-02-15T06:59:28Z +393 717 Changzhou Lane " " 104 21615 " " 2020-02-15T06:59:28Z +394 753 Ilorin Avenue " " 157 3656 " " 2020-02-15T06:59:28Z +395 1337 Mit Ghamr Avenue " " 358 29810 " " 2020-02-15T06:59:28Z +396 767 Pyongyang Drive " " 229 83536 " " 2020-02-15T06:59:28Z +397 614 Pak Kret Street " " 6 27796 " " 2020-02-15T06:59:28Z +398 954 Lapu-Lapu Way " " 278 8816 " " 2020-02-15T06:59:28Z +399 331 Bydgoszcz Parkway " " 181 966 " " 2020-02-15T06:59:28Z +400 1152 Citrus Heights Manor " " 15 5239 " " 2020-02-15T06:59:28Z +401 168 Cianjur Manor " " 228 73824 " " 2020-02-15T06:59:28Z +402 616 Hagonoy Avenue " " 39 46043 " " 2020-02-15T06:59:28Z +403 1190 0 Place " " 44 10417 " " 2020-02-15T06:59:28Z +404 734 Bchar Place " " 375 30586 " " 2020-02-15T06:59:28Z +405 530 Lausanne Lane " " 135 11067 " " 2020-02-15T06:59:28Z +406 454 Patiala Lane " " 276 13496 " " 2020-02-15T06:59:28Z +407 1346 Mysore Drive " " 92 61507 " " 2020-02-15T06:59:28Z +408 990 Etawah Loop " " 564 79940 " " 2020-02-15T06:59:28Z +409 1266 Laredo Parkway " " 380 7664 " " 2020-02-15T06:59:28Z +410 88 Nagaon Manor " " 524 86868 " " 2020-02-15T06:59:28Z +411 264 Bhimavaram Manor " " 111 54749 " " 2020-02-15T06:59:28Z +412 1639 Saarbrcken Drive " " 437 9827 " " 2020-02-15T06:59:28Z +413 692 Amroha Drive " " 230 35575 " " 2020-02-15T06:59:28Z +414 1936 Lapu-Lapu Parkway " " 141 7122 " " 2020-02-15T06:59:28Z +415 432 Garden Grove Street " " 430 65630 " " 2020-02-15T06:59:28Z +416 1445 Carmen Parkway " " 117 70809 " " 2020-02-15T06:59:28Z +417 791 Salinas Street " " 208 40509 " " 2020-02-15T06:59:28Z +418 126 Acua Parkway " " 71 58888 " " 2020-02-15T06:59:28Z +419 397 Sunnyvale Avenue " " 19 55566 " " 2020-02-15T06:59:28Z +420 992 Klerksdorp Loop " " 23 33711 " " 2020-02-15T06:59:28Z +421 966 Arecibo Loop " " 134 94018 " " 2020-02-15T06:59:28Z +422 289 Santo Andr Manor " " 16 72410 " " 2020-02-15T06:59:28Z +423 437 Chungho Drive " " 450 59489 " " 2020-02-15T06:59:28Z +424 1948 Bayugan Parkway " " 264 60622 " " 2020-02-15T06:59:28Z +425 1866 al-Qatif Avenue " " 155 89420 " " 2020-02-15T06:59:28Z +426 1661 Abha Drive " " 416 14400 " " 2020-02-15T06:59:28Z +427 1557 Cape Coral Parkway " " 293 46875 " " 2020-02-15T06:59:28Z +428 1727 Matamoros Place " " 465 78813 " " 2020-02-15T06:59:28Z +429 1269 Botosani Manor " " 468 47394 " " 2020-02-15T06:59:28Z +430 355 Vitria de Santo Anto Way " " 452 81758 " " 2020-02-15T06:59:28Z +431 1596 Acua Parkway " " 418 70425 " " 2020-02-15T06:59:28Z +432 259 Ipoh Drive " " 189 64964 " " 2020-02-15T06:59:28Z +433 1823 Hoshiarpur Lane " " 510 33191 " " 2020-02-15T06:59:28Z +434 1404 Taguig Drive " " 547 87212 " " 2020-02-15T06:59:28Z +435 740 Udaipur Lane " " 150 33505 " " 2020-02-15T06:59:28Z +436 287 Cuautla Boulevard " " 501 72736 " " 2020-02-15T06:59:28Z +437 1766 Almirante Brown Street " " 364 63104 " " 2020-02-15T06:59:28Z +438 596 Huixquilucan Place " " 351 65892 " " 2020-02-15T06:59:28Z +439 1351 Aparecida de Goinia Parkway " " 391 41775 " " 2020-02-15T06:59:28Z +440 722 Bradford Lane " " 249 90920 " " 2020-02-15T06:59:28Z +441 983 Santa F Way " " 565 47472 " " 2020-02-15T06:59:28Z +442 1245 Ibirit Way " " 290 40926 " " 2020-02-15T06:59:28Z +443 1836 Korla Parkway " " 272 55405 " " 2020-02-15T06:59:28Z +444 231 Kaliningrad Place " " 70 57833 " " 2020-02-15T06:59:28Z +445 495 Bhimavaram Lane " " 144 3 " " 2020-02-15T06:59:28Z +446 1924 Shimonoseki Drive " " 59 52625 " " 2020-02-15T06:59:28Z +447 105 Dzerzinsk Manor " " 540 48570 " " 2020-02-15T06:59:28Z +448 614 Denizli Parkway " " 486 29444 " " 2020-02-15T06:59:28Z +449 1289 Belm Boulevard " " 530 88306 " " 2020-02-15T06:59:28Z +450 203 Tambaram Street " " 161 73942 " " 2020-02-15T06:59:28Z +451 1704 Tambaram Manor " " 554 2834 " " 2020-02-15T06:59:28Z +452 207 Cuernavaca Loop " " 352 52671 " " 2020-02-15T06:59:28Z +453 319 Springs Loop " " 160 99552 " " 2020-02-15T06:59:28Z +454 956 Nam Dinh Manor " " 481 21872 " " 2020-02-15T06:59:28Z +455 1947 Paarl Way " " 509 23636 " " 2020-02-15T06:59:28Z +456 814 Simferopol Loop " " 154 48745 " " 2020-02-15T06:59:28Z +457 535 Ahmadnagar Manor " " 3 41136 " " 2020-02-15T06:59:28Z +458 138 Caracas Boulevard " " 326 16790 " " 2020-02-15T06:59:28Z +459 251 Florencia Drive " " 556 16119 " " 2020-02-15T06:59:28Z +460 659 Gatineau Boulevard " " 153 28587 " " 2020-02-15T06:59:28Z +461 1889 Valparai Way " " 600 75559 " " 2020-02-15T06:59:28Z +462 1485 Bratislava Place " " 435 83183 " " 2020-02-15T06:59:28Z +463 935 Aden Boulevard " " 532 64709 " " 2020-02-15T06:59:28Z +464 76 Kermanshah Manor " " 423 23343 " " 2020-02-15T06:59:28Z +465 734 Tanshui Avenue " " 170 70664 " " 2020-02-15T06:59:28Z +466 118 Jaffna Loop " " 182 10447 " " 2020-02-15T06:59:28Z +467 1621 Tongliao Avenue " " 558 22173 " " 2020-02-15T06:59:28Z +468 1844 Usak Avenue " " 196 84461 " " 2020-02-15T06:59:28Z +469 1872 Toulon Loop " " 428 7939 " " 2020-02-15T06:59:28Z +470 1088 Ibirit Place " " 595 88502 " " 2020-02-15T06:59:28Z +471 1322 Mosul Parkway " " 145 95400 " " 2020-02-15T06:59:28Z +472 1447 Chatsworth Place " " 129 41545 " " 2020-02-15T06:59:28Z +473 1257 Guadalajara Street " " 78 33599 " " 2020-02-15T06:59:28Z +474 1469 Plock Lane " " 388 95835 " " 2020-02-15T06:59:28Z +475 434 Ourense (Orense) Manor " " 206 14122 " " 2020-02-15T06:59:28Z +476 270 Tambaram Parkway " " 244 9668 " " 2020-02-15T06:59:28Z +477 1786 Salinas Place " " 359 66546 " " 2020-02-15T06:59:28Z +478 1078 Stara Zagora Drive " " 301 69221 " " 2020-02-15T06:59:28Z +479 1854 Okara Boulevard " " 158 42123 " " 2020-02-15T06:59:28Z +480 421 Yaound Street " " 385 11363 " " 2020-02-15T06:59:28Z +481 1153 Allende Way " " 179 20336 " " 2020-02-15T06:59:28Z +482 808 Naala-Porto Parkway " " 500 41060 " " 2020-02-15T06:59:28Z +483 632 Usolje-Sibirskoje Parkway " " 36 73085 " " 2020-02-15T06:59:28Z +484 98 Pyongyang Boulevard " " 11 88749 " " 2020-02-15T06:59:28Z +485 984 Novoterkassk Loop " " 180 28165 " " 2020-02-15T06:59:28Z +486 64 Korla Street " " 347 25145 " " 2020-02-15T06:59:28Z +487 1785 So Bernardo do Campo Street " " 125 71182 " " 2020-02-15T06:59:28Z +488 698 Jelets Boulevard " " 142 2596 " " 2020-02-15T06:59:28Z +489 1297 Alvorada Parkway " " 587 11839 " " 2020-02-15T06:59:28Z +490 1909 Dayton Avenue " " 469 88513 " " 2020-02-15T06:59:28Z +491 1789 Saint-Denis Parkway " " 4 8268 " " 2020-02-15T06:59:28Z +492 185 Mannheim Lane " " 408 23661 " " 2020-02-15T06:59:28Z +493 184 Mandaluyong Street " " 288 94239 " " 2020-02-15T06:59:28Z +494 591 Sungai Petani Drive " " 376 46400 " " 2020-02-15T06:59:28Z +495 656 Matamoros Drive " " 487 19489 " " 2020-02-15T06:59:28Z +496 775 ostka Drive " " 337 22358 " " 2020-02-15T06:59:28Z +497 1013 Tabuk Boulevard " " 261 96203 " " 2020-02-15T06:59:28Z +498 319 Plock Parkway " " 504 26101 " " 2020-02-15T06:59:28Z +499 1954 Kowloon and New Kowloon Way " " 434 63667 " " 2020-02-15T06:59:28Z +500 362 Rajkot Lane " " 47 98030 " " 2020-02-15T06:59:28Z +501 1060 Tandil Lane " " 432 72349 " " 2020-02-15T06:59:28Z +502 1515 Korla Way " " 589 57197 " " 2020-02-15T06:59:28Z +503 1416 San Juan Bautista Tuxtepec Avenue " " 444 50592 " " 2020-02-15T06:59:28Z +504 1 Valle de Santiago Avenue " " 93 86208 " " 2020-02-15T06:59:28Z +505 519 Brescia Parkway " " 318 69504 " " 2020-02-15T06:59:28Z +506 414 Mandaluyong Street " " 314 16370 " " 2020-02-15T06:59:28Z +507 1197 Sokoto Boulevard " " 478 87687 " " 2020-02-15T06:59:28Z +508 496 Celaya Drive " " 552 90797 " " 2020-02-15T06:59:28Z +509 786 Matsue Way " " 245 37469 " " 2020-02-15T06:59:28Z +510 48 Maracabo Place " " 519 1570 " " 2020-02-15T06:59:28Z +511 1152 al-Qatif Lane " " 412 44816 " " 2020-02-15T06:59:28Z +512 1269 Ipoh Avenue " " 163 54674 " " 2020-02-15T06:59:28Z +513 758 Korolev Parkway " " 568 75474 " " 2020-02-15T06:59:28Z +514 1747 Rustenburg Place " " 110 51369 " " 2020-02-15T06:59:28Z +515 886 Tonghae Place " " 259 19450 " " 2020-02-15T06:59:28Z +516 1574 Goinia Boulevard " " 502 39529 " " 2020-02-15T06:59:28Z +517 548 Uruapan Street " " 312 35653 " " 2020-02-15T06:59:28Z +519 962 Tama Loop " " 583 65952 " " 2020-02-15T06:59:28Z +520 1778 Gijn Manor " " 594 35156 " " 2020-02-15T06:59:28Z +521 568 Dhule (Dhulia) Loop " " 127 92568 " " 2020-02-15T06:59:28Z +522 1768 Udine Loop " " 60 32347 " " 2020-02-15T06:59:28Z +523 608 Birgunj Parkway " " 116 400 " " 2020-02-15T06:59:28Z +524 680 A Corua (La Corua) Manor " " 482 49806 " " 2020-02-15T06:59:28Z +525 1949 Sanya Street " " 224 61244 " " 2020-02-15T06:59:28Z +526 617 Klerksdorp Place " " 366 94707 " " 2020-02-15T06:59:28Z +527 1993 0 Loop " " 588 41214 " " 2020-02-15T06:59:28Z +528 1176 Southend-on-Sea Manor " " 458 81651 " " 2020-02-15T06:59:28Z +529 600 Purnea (Purnia) Avenue " " 571 18043 " " 2020-02-15T06:59:28Z +530 1003 Qinhuangdao Street " " 419 25972 " " 2020-02-15T06:59:28Z +531 1986 Sivas Place " " 551 95775 " " 2020-02-15T06:59:28Z +532 1427 Tabuk Place " " 101 31342 " " 2020-02-15T06:59:28Z +533 556 Asuncin Way " " 339 35364 " " 2020-02-15T06:59:28Z +534 486 Ondo Parkway " " 67 35202 " " 2020-02-15T06:59:28Z +535 635 Brest Manor " " 75 40899 " " 2020-02-15T06:59:28Z +536 166 Jinchang Street " " 165 86760 " " 2020-02-15T06:59:28Z +537 958 Sagamihara Lane " " 287 88408 " " 2020-02-15T06:59:28Z +538 1817 Livorno Way " " 100 79401 " " 2020-02-15T06:59:28Z +539 1332 Gaziantep Lane " " 80 22813 " " 2020-02-15T06:59:28Z +540 949 Allende Lane " " 24 67521 " " 2020-02-15T06:59:28Z +541 195 Ilorin Street " " 363 49250 " " 2020-02-15T06:59:28Z +542 193 Bhusawal Place " " 539 9750 " " 2020-02-15T06:59:28Z +543 43 Vilnius Manor " " 42 79814 " " 2020-02-15T06:59:28Z +544 183 Haiphong Street " " 46 69953 " " 2020-02-15T06:59:28Z +545 163 Augusta-Richmond County Loop " " 561 33030 " " 2020-02-15T06:59:28Z +546 191 Jos Azueta Parkway " " 436 13629 " " 2020-02-15T06:59:28Z +547 379 Lublin Parkway " " 309 74568 " " 2020-02-15T06:59:28Z +548 1658 Cuman Loop " " 396 51309 " " 2020-02-15T06:59:28Z +549 454 Qinhuangdao Drive " " 68 25866 " " 2020-02-15T06:59:28Z +550 1715 Okayama Street " " 485 55676 " " 2020-02-15T06:59:28Z +551 182 Nukualofa Drive " " 275 15414 " " 2020-02-15T06:59:28Z +552 390 Wroclaw Way " " 462 5753 " " 2020-02-15T06:59:28Z +553 1421 Quilmes Lane " " 260 19151 " " 2020-02-15T06:59:28Z +554 947 Trshavn Place " " 528 841 " " 2020-02-15T06:59:28Z +555 1764 Jalib al-Shuyukh Parkway " " 459 77642 " " 2020-02-15T06:59:28Z +556 346 Cam Ranh Avenue " " 599 39976 " " 2020-02-15T06:59:28Z +557 1407 Pachuca de Soto Place " " 21 26284 " " 2020-02-15T06:59:28Z +558 904 Clarksville Drive " " 193 52234 " " 2020-02-15T06:59:28Z +559 1917 Kumbakonam Parkway " " 368 11892 " " 2020-02-15T06:59:28Z +560 1447 Imus Place " " 426 12905 " " 2020-02-15T06:59:28Z +561 1497 Fengshan Drive " " 112 63022 " " 2020-02-15T06:59:28Z +562 869 Shikarpur Way " " 496 57380 " " 2020-02-15T06:59:28Z +563 1059 Yuncheng Avenue " " 570 47498 " " 2020-02-15T06:59:28Z +564 505 Madiun Boulevard " " 577 97271 " " 2020-02-15T06:59:28Z +565 1741 Hoshiarpur Boulevard " " 79 22372 " " 2020-02-15T06:59:28Z +566 1229 Varanasi (Benares) Manor " " 43 40195 " " 2020-02-15T06:59:28Z +567 1894 Boa Vista Way " " 178 77464 " " 2020-02-15T06:59:28Z +568 1342 Sharja Way " " 488 93655 " " 2020-02-15T06:59:28Z +569 1342 Abha Boulevard " " 95 10714 " " 2020-02-15T06:59:28Z +570 415 Pune Avenue " " 580 44274 " " 2020-02-15T06:59:28Z +571 1746 Faaa Way " " 214 32515 " " 2020-02-15T06:59:28Z +572 539 Hami Way " " 538 52196 " " 2020-02-15T06:59:28Z +573 1407 Surakarta Manor " " 466 33224 " " 2020-02-15T06:59:28Z +574 502 Mandi Bahauddin Parkway " " 55 15992 " " 2020-02-15T06:59:28Z +575 1052 Pathankot Avenue " " 299 77397 " " 2020-02-15T06:59:28Z +576 1351 Sousse Lane " " 341 37815 " " 2020-02-15T06:59:28Z +577 1501 Pangkal Pinang Avenue " " 409 943 " " 2020-02-15T06:59:28Z +578 1405 Hagonoy Avenue " " 133 86587 " " 2020-02-15T06:59:28Z +579 521 San Juan Bautista Tuxtepec Place " " 598 95093 " " 2020-02-15T06:59:28Z +580 923 Tangail Boulevard " " 10 33384 " " 2020-02-15T06:59:28Z +581 186 Skikda Lane " " 131 89422 " " 2020-02-15T06:59:28Z +582 1568 Celaya Parkway " " 168 34750 " " 2020-02-15T06:59:28Z +583 1489 Kakamigahara Lane " " 526 98883 " " 2020-02-15T06:59:28Z +584 1819 Alessandria Loop " " 103 53829 " " 2020-02-15T06:59:28Z +585 1208 Tama Loop " " 344 73605 " " 2020-02-15T06:59:28Z +586 951 Springs Lane " " 219 96115 " " 2020-02-15T06:59:28Z +587 760 Miyakonojo Drive " " 246 64682 " " 2020-02-15T06:59:28Z +588 966 Asuncin Way " " 212 62703 " " 2020-02-15T06:59:28Z +589 1584 Ljubertsy Lane " " 494 22954 " " 2020-02-15T06:59:28Z +590 247 Jining Parkway " " 54 53446 " " 2020-02-15T06:59:28Z +591 773 Dallas Manor " " 424 12664 " " 2020-02-15T06:59:28Z +592 1923 Stara Zagora Lane " " 546 95179 " " 2020-02-15T06:59:28Z +593 1402 Zanzibar Boulevard " " 106 71102 " " 2020-02-15T06:59:28Z +594 1464 Kursk Parkway " " 574 17381 " " 2020-02-15T06:59:28Z +595 1074 Sanaa Parkway " " 311 22474 " " 2020-02-15T06:59:28Z +596 1759 Niznekamsk Avenue " " 14 39414 " " 2020-02-15T06:59:28Z +597 32 Liaocheng Way " " 248 1944 " " 2020-02-15T06:59:28Z +598 42 Fontana Avenue " " 512 14684 " " 2020-02-15T06:59:28Z +599 1895 Zhezqazghan Drive " " 177 36693 " " 2020-02-15T06:59:28Z +600 1837 Kaduna Parkway " " 241 82580 " " 2020-02-15T06:59:28Z +601 844 Bucuresti Place " " 242 36603 " " 2020-02-15T06:59:28Z +602 1101 Bucuresti Boulevard " " 401 97661 " " 2020-02-15T06:59:28Z +603 1103 Quilmes Boulevard " " 503 52137 " " 2020-02-15T06:59:28Z +604 1331 Usak Boulevard " " 296 61960 " " 2020-02-15T06:59:28Z +605 1325 Fukuyama Street " " 537 27107 " " 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/category.tsv b/drivers/csv/testdata/sakila-tsv-noheader/category.tsv new file mode 100644 index 00000000..c90c0044 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/category.tsv @@ -0,0 +1,16 @@ +1 Action 2020-02-15T06:59:28Z +2 Animation 2020-02-15T06:59:28Z +3 Children 2020-02-15T06:59:28Z +4 Classics 2020-02-15T06:59:28Z +5 Comedy 2020-02-15T06:59:28Z +6 Documentary 2020-02-15T06:59:28Z +7 Drama 2020-02-15T06:59:28Z +8 Family 2020-02-15T06:59:28Z +9 Foreign 2020-02-15T06:59:28Z +10 Games 2020-02-15T06:59:28Z +11 Horror 2020-02-15T06:59:28Z +12 Music 2020-02-15T06:59:28Z +13 New 2020-02-15T06:59:28Z +14 Sci-Fi 2020-02-15T06:59:28Z +15 Sports 2020-02-15T06:59:28Z +16 Travel 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/city.tsv b/drivers/csv/testdata/sakila-tsv-noheader/city.tsv new file mode 100644 index 00000000..0dad8c2f --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/city.tsv @@ -0,0 +1,600 @@ +1 A Corua (La Corua) 87 2020-02-15T06:59:28Z +2 Abha 82 2020-02-15T06:59:28Z +3 Abu Dhabi 101 2020-02-15T06:59:28Z +4 Acua 60 2020-02-15T06:59:28Z +5 Adana 97 2020-02-15T06:59:28Z +6 Addis Abeba 31 2020-02-15T06:59:28Z +7 Aden 107 2020-02-15T06:59:28Z +8 Adoni 44 2020-02-15T06:59:28Z +9 Ahmadnagar 44 2020-02-15T06:59:28Z +10 Akishima 50 2020-02-15T06:59:28Z +11 Akron 103 2020-02-15T06:59:28Z +12 al-Ayn 101 2020-02-15T06:59:28Z +13 al-Hawiya 82 2020-02-15T06:59:28Z +14 al-Manama 11 2020-02-15T06:59:28Z +15 al-Qadarif 89 2020-02-15T06:59:28Z +16 al-Qatif 82 2020-02-15T06:59:28Z +17 Alessandria 49 2020-02-15T06:59:28Z +18 Allappuzha (Alleppey) 44 2020-02-15T06:59:28Z +19 Allende 60 2020-02-15T06:59:28Z +20 Almirante Brown 6 2020-02-15T06:59:28Z +21 Alvorada 15 2020-02-15T06:59:28Z +22 Ambattur 44 2020-02-15T06:59:28Z +23 Amersfoort 67 2020-02-15T06:59:28Z +24 Amroha 44 2020-02-15T06:59:28Z +25 Angra dos Reis 15 2020-02-15T06:59:28Z +26 Anpolis 15 2020-02-15T06:59:28Z +27 Antofagasta 22 2020-02-15T06:59:28Z +28 Aparecida de Goinia 15 2020-02-15T06:59:28Z +29 Apeldoorn 67 2020-02-15T06:59:28Z +30 Araatuba 15 2020-02-15T06:59:28Z +31 Arak 46 2020-02-15T06:59:28Z +32 Arecibo 77 2020-02-15T06:59:28Z +33 Arlington 103 2020-02-15T06:59:28Z +34 Ashdod 48 2020-02-15T06:59:28Z +35 Ashgabat 98 2020-02-15T06:59:28Z +36 Ashqelon 48 2020-02-15T06:59:28Z +37 Asuncin 73 2020-02-15T06:59:28Z +38 Athenai 39 2020-02-15T06:59:28Z +39 Atinsk 80 2020-02-15T06:59:28Z +40 Atlixco 60 2020-02-15T06:59:28Z +41 Augusta-Richmond County 103 2020-02-15T06:59:28Z +42 Aurora 103 2020-02-15T06:59:28Z +43 Avellaneda 6 2020-02-15T06:59:28Z +44 Bag 15 2020-02-15T06:59:28Z +45 Baha Blanca 6 2020-02-15T06:59:28Z +46 Baicheng 23 2020-02-15T06:59:28Z +47 Baiyin 23 2020-02-15T06:59:28Z +48 Baku 10 2020-02-15T06:59:28Z +49 Balaiha 80 2020-02-15T06:59:28Z +50 Balikesir 97 2020-02-15T06:59:28Z +51 Balurghat 44 2020-02-15T06:59:28Z +52 Bamenda 19 2020-02-15T06:59:28Z +53 Bandar Seri Begawan 16 2020-02-15T06:59:28Z +54 Banjul 37 2020-02-15T06:59:28Z +55 Barcelona 104 2020-02-15T06:59:28Z +56 Basel 91 2020-02-15T06:59:28Z +57 Bat Yam 48 2020-02-15T06:59:28Z +58 Batman 97 2020-02-15T06:59:28Z +59 Batna 2 2020-02-15T06:59:28Z +60 Battambang 18 2020-02-15T06:59:28Z +61 Baybay 75 2020-02-15T06:59:28Z +62 Bayugan 75 2020-02-15T06:59:28Z +63 Bchar 2 2020-02-15T06:59:28Z +64 Beira 63 2020-02-15T06:59:28Z +65 Bellevue 103 2020-02-15T06:59:28Z +66 Belm 15 2020-02-15T06:59:28Z +67 Benguela 4 2020-02-15T06:59:28Z +68 Beni-Mellal 62 2020-02-15T06:59:28Z +69 Benin City 69 2020-02-15T06:59:28Z +70 Bergamo 49 2020-02-15T06:59:28Z +71 Berhampore (Baharampur) 44 2020-02-15T06:59:28Z +72 Bern 91 2020-02-15T06:59:28Z +73 Bhavnagar 44 2020-02-15T06:59:28Z +74 Bhilwara 44 2020-02-15T06:59:28Z +75 Bhimavaram 44 2020-02-15T06:59:28Z +76 Bhopal 44 2020-02-15T06:59:28Z +77 Bhusawal 44 2020-02-15T06:59:28Z +78 Bijapur 44 2020-02-15T06:59:28Z +79 Bilbays 29 2020-02-15T06:59:28Z +80 Binzhou 23 2020-02-15T06:59:28Z +81 Birgunj 66 2020-02-15T06:59:28Z +82 Bislig 75 2020-02-15T06:59:28Z +83 Blumenau 15 2020-02-15T06:59:28Z +84 Boa Vista 15 2020-02-15T06:59:28Z +85 Boksburg 85 2020-02-15T06:59:28Z +86 Botosani 78 2020-02-15T06:59:28Z +87 Botshabelo 85 2020-02-15T06:59:28Z +88 Bradford 102 2020-02-15T06:59:28Z +89 Braslia 15 2020-02-15T06:59:28Z +90 Bratislava 84 2020-02-15T06:59:28Z +91 Brescia 49 2020-02-15T06:59:28Z +92 Brest 34 2020-02-15T06:59:28Z +93 Brindisi 49 2020-02-15T06:59:28Z +94 Brockton 103 2020-02-15T06:59:28Z +95 Bucuresti 78 2020-02-15T06:59:28Z +96 Buenaventura 24 2020-02-15T06:59:28Z +97 Bydgoszcz 76 2020-02-15T06:59:28Z +98 Cabuyao 75 2020-02-15T06:59:28Z +99 Callao 74 2020-02-15T06:59:28Z +100 Cam Ranh 105 2020-02-15T06:59:28Z +101 Cape Coral 103 2020-02-15T06:59:28Z +102 Caracas 104 2020-02-15T06:59:28Z +103 Carmen 60 2020-02-15T06:59:28Z +104 Cavite 75 2020-02-15T06:59:28Z +105 Cayenne 35 2020-02-15T06:59:28Z +106 Celaya 60 2020-02-15T06:59:28Z +107 Chandrapur 44 2020-02-15T06:59:28Z +108 Changhwa 92 2020-02-15T06:59:28Z +109 Changzhou 23 2020-02-15T06:59:28Z +110 Chapra 44 2020-02-15T06:59:28Z +111 Charlotte Amalie 106 2020-02-15T06:59:28Z +112 Chatsworth 85 2020-02-15T06:59:28Z +113 Cheju 86 2020-02-15T06:59:28Z +114 Chiayi 92 2020-02-15T06:59:28Z +115 Chisinau 61 2020-02-15T06:59:28Z +116 Chungho 92 2020-02-15T06:59:28Z +117 Cianjur 45 2020-02-15T06:59:28Z +118 Ciomas 45 2020-02-15T06:59:28Z +119 Ciparay 45 2020-02-15T06:59:28Z +120 Citrus Heights 103 2020-02-15T06:59:28Z +121 Citt del Vaticano 41 2020-02-15T06:59:28Z +122 Ciudad del Este 73 2020-02-15T06:59:28Z +123 Clarksville 103 2020-02-15T06:59:28Z +124 Coacalco de Berriozbal 60 2020-02-15T06:59:28Z +125 Coatzacoalcos 60 2020-02-15T06:59:28Z +126 Compton 103 2020-02-15T06:59:28Z +127 Coquimbo 22 2020-02-15T06:59:28Z +128 Crdoba 6 2020-02-15T06:59:28Z +129 Cuauhtmoc 60 2020-02-15T06:59:28Z +130 Cuautla 60 2020-02-15T06:59:28Z +131 Cuernavaca 60 2020-02-15T06:59:28Z +132 Cuman 104 2020-02-15T06:59:28Z +133 Czestochowa 76 2020-02-15T06:59:28Z +134 Dadu 72 2020-02-15T06:59:28Z +135 Dallas 103 2020-02-15T06:59:28Z +136 Datong 23 2020-02-15T06:59:28Z +137 Daugavpils 54 2020-02-15T06:59:28Z +138 Davao 75 2020-02-15T06:59:28Z +139 Daxian 23 2020-02-15T06:59:28Z +140 Dayton 103 2020-02-15T06:59:28Z +141 Deba Habe 69 2020-02-15T06:59:28Z +142 Denizli 97 2020-02-15T06:59:28Z +143 Dhaka 12 2020-02-15T06:59:28Z +144 Dhule (Dhulia) 44 2020-02-15T06:59:28Z +145 Dongying 23 2020-02-15T06:59:28Z +146 Donostia-San Sebastin 87 2020-02-15T06:59:28Z +147 Dos Quebradas 24 2020-02-15T06:59:28Z +148 Duisburg 38 2020-02-15T06:59:28Z +149 Dundee 102 2020-02-15T06:59:28Z +150 Dzerzinsk 80 2020-02-15T06:59:28Z +151 Ede 67 2020-02-15T06:59:28Z +152 Effon-Alaiye 69 2020-02-15T06:59:28Z +153 El Alto 14 2020-02-15T06:59:28Z +154 El Fuerte 60 2020-02-15T06:59:28Z +155 El Monte 103 2020-02-15T06:59:28Z +156 Elista 80 2020-02-15T06:59:28Z +157 Emeishan 23 2020-02-15T06:59:28Z +158 Emmen 67 2020-02-15T06:59:28Z +159 Enshi 23 2020-02-15T06:59:28Z +160 Erlangen 38 2020-02-15T06:59:28Z +161 Escobar 6 2020-02-15T06:59:28Z +162 Esfahan 46 2020-02-15T06:59:28Z +163 Eskisehir 97 2020-02-15T06:59:28Z +164 Etawah 44 2020-02-15T06:59:28Z +165 Ezeiza 6 2020-02-15T06:59:28Z +166 Ezhou 23 2020-02-15T06:59:28Z +167 Faaa 36 2020-02-15T06:59:28Z +168 Fengshan 92 2020-02-15T06:59:28Z +169 Firozabad 44 2020-02-15T06:59:28Z +170 Florencia 24 2020-02-15T06:59:28Z +171 Fontana 103 2020-02-15T06:59:28Z +172 Fukuyama 50 2020-02-15T06:59:28Z +173 Funafuti 99 2020-02-15T06:59:28Z +174 Fuyu 23 2020-02-15T06:59:28Z +175 Fuzhou 23 2020-02-15T06:59:28Z +176 Gandhinagar 44 2020-02-15T06:59:28Z +177 Garden Grove 103 2020-02-15T06:59:28Z +178 Garland 103 2020-02-15T06:59:28Z +179 Gatineau 20 2020-02-15T06:59:28Z +180 Gaziantep 97 2020-02-15T06:59:28Z +181 Gijn 87 2020-02-15T06:59:28Z +182 Gingoog 75 2020-02-15T06:59:28Z +183 Goinia 15 2020-02-15T06:59:28Z +184 Gorontalo 45 2020-02-15T06:59:28Z +185 Grand Prairie 103 2020-02-15T06:59:28Z +186 Graz 9 2020-02-15T06:59:28Z +187 Greensboro 103 2020-02-15T06:59:28Z +188 Guadalajara 60 2020-02-15T06:59:28Z +189 Guaruj 15 2020-02-15T06:59:28Z +190 guas Lindas de Gois 15 2020-02-15T06:59:28Z +191 Gulbarga 44 2020-02-15T06:59:28Z +192 Hagonoy 75 2020-02-15T06:59:28Z +193 Haining 23 2020-02-15T06:59:28Z +194 Haiphong 105 2020-02-15T06:59:28Z +195 Haldia 44 2020-02-15T06:59:28Z +196 Halifax 20 2020-02-15T06:59:28Z +197 Halisahar 44 2020-02-15T06:59:28Z +198 Halle/Saale 38 2020-02-15T06:59:28Z +199 Hami 23 2020-02-15T06:59:28Z +200 Hamilton 68 2020-02-15T06:59:28Z +201 Hanoi 105 2020-02-15T06:59:28Z +202 Hidalgo 60 2020-02-15T06:59:28Z +203 Higashiosaka 50 2020-02-15T06:59:28Z +204 Hino 50 2020-02-15T06:59:28Z +205 Hiroshima 50 2020-02-15T06:59:28Z +206 Hodeida 107 2020-02-15T06:59:28Z +207 Hohhot 23 2020-02-15T06:59:28Z +208 Hoshiarpur 44 2020-02-15T06:59:28Z +209 Hsichuh 92 2020-02-15T06:59:28Z +210 Huaian 23 2020-02-15T06:59:28Z +211 Hubli-Dharwad 44 2020-02-15T06:59:28Z +212 Huejutla de Reyes 60 2020-02-15T06:59:28Z +213 Huixquilucan 60 2020-02-15T06:59:28Z +214 Hunuco 74 2020-02-15T06:59:28Z +215 Ibirit 15 2020-02-15T06:59:28Z +216 Idfu 29 2020-02-15T06:59:28Z +217 Ife 69 2020-02-15T06:59:28Z +218 Ikerre 69 2020-02-15T06:59:28Z +219 Iligan 75 2020-02-15T06:59:28Z +220 Ilorin 69 2020-02-15T06:59:28Z +221 Imus 75 2020-02-15T06:59:28Z +222 Inegl 97 2020-02-15T06:59:28Z +223 Ipoh 59 2020-02-15T06:59:28Z +224 Isesaki 50 2020-02-15T06:59:28Z +225 Ivanovo 80 2020-02-15T06:59:28Z +226 Iwaki 50 2020-02-15T06:59:28Z +227 Iwakuni 50 2020-02-15T06:59:28Z +228 Iwatsuki 50 2020-02-15T06:59:28Z +229 Izumisano 50 2020-02-15T06:59:28Z +230 Jaffna 88 2020-02-15T06:59:28Z +231 Jaipur 44 2020-02-15T06:59:28Z +232 Jakarta 45 2020-02-15T06:59:28Z +233 Jalib al-Shuyukh 53 2020-02-15T06:59:28Z +234 Jamalpur 12 2020-02-15T06:59:28Z +235 Jaroslavl 80 2020-02-15T06:59:28Z +236 Jastrzebie-Zdrj 76 2020-02-15T06:59:28Z +237 Jedda 82 2020-02-15T06:59:28Z +238 Jelets 80 2020-02-15T06:59:28Z +239 Jhansi 44 2020-02-15T06:59:28Z +240 Jinchang 23 2020-02-15T06:59:28Z +241 Jining 23 2020-02-15T06:59:28Z +242 Jinzhou 23 2020-02-15T06:59:28Z +243 Jodhpur 44 2020-02-15T06:59:28Z +244 Johannesburg 85 2020-02-15T06:59:28Z +245 Joliet 103 2020-02-15T06:59:28Z +246 Jos Azueta 60 2020-02-15T06:59:28Z +247 Juazeiro do Norte 15 2020-02-15T06:59:28Z +248 Juiz de Fora 15 2020-02-15T06:59:28Z +249 Junan 23 2020-02-15T06:59:28Z +250 Jurez 60 2020-02-15T06:59:28Z +251 Kabul 1 2020-02-15T06:59:28Z +252 Kaduna 69 2020-02-15T06:59:28Z +253 Kakamigahara 50 2020-02-15T06:59:28Z +254 Kaliningrad 80 2020-02-15T06:59:28Z +255 Kalisz 76 2020-02-15T06:59:28Z +256 Kamakura 50 2020-02-15T06:59:28Z +257 Kamarhati 44 2020-02-15T06:59:28Z +258 Kamjanets-Podilskyi 100 2020-02-15T06:59:28Z +259 Kamyin 80 2020-02-15T06:59:28Z +260 Kanazawa 50 2020-02-15T06:59:28Z +261 Kanchrapara 44 2020-02-15T06:59:28Z +262 Kansas City 103 2020-02-15T06:59:28Z +263 Karnal 44 2020-02-15T06:59:28Z +264 Katihar 44 2020-02-15T06:59:28Z +265 Kermanshah 46 2020-02-15T06:59:28Z +266 Kilis 97 2020-02-15T06:59:28Z +267 Kimberley 85 2020-02-15T06:59:28Z +268 Kimchon 86 2020-02-15T06:59:28Z +269 Kingstown 81 2020-02-15T06:59:28Z +270 Kirovo-Tepetsk 80 2020-02-15T06:59:28Z +271 Kisumu 52 2020-02-15T06:59:28Z +272 Kitwe 109 2020-02-15T06:59:28Z +273 Klerksdorp 85 2020-02-15T06:59:28Z +274 Kolpino 80 2020-02-15T06:59:28Z +275 Konotop 100 2020-02-15T06:59:28Z +276 Koriyama 50 2020-02-15T06:59:28Z +277 Korla 23 2020-02-15T06:59:28Z +278 Korolev 80 2020-02-15T06:59:28Z +279 Kowloon and New Kowloon 42 2020-02-15T06:59:28Z +280 Kragujevac 108 2020-02-15T06:59:28Z +281 Ktahya 97 2020-02-15T06:59:28Z +282 Kuching 59 2020-02-15T06:59:28Z +283 Kumbakonam 44 2020-02-15T06:59:28Z +284 Kurashiki 50 2020-02-15T06:59:28Z +285 Kurgan 80 2020-02-15T06:59:28Z +286 Kursk 80 2020-02-15T06:59:28Z +287 Kuwana 50 2020-02-15T06:59:28Z +288 La Paz 60 2020-02-15T06:59:28Z +289 La Plata 6 2020-02-15T06:59:28Z +290 La Romana 27 2020-02-15T06:59:28Z +291 Laiwu 23 2020-02-15T06:59:28Z +292 Lancaster 103 2020-02-15T06:59:28Z +293 Laohekou 23 2020-02-15T06:59:28Z +294 Lapu-Lapu 75 2020-02-15T06:59:28Z +295 Laredo 103 2020-02-15T06:59:28Z +296 Lausanne 91 2020-02-15T06:59:28Z +297 Le Mans 34 2020-02-15T06:59:28Z +298 Lengshuijiang 23 2020-02-15T06:59:28Z +299 Leshan 23 2020-02-15T06:59:28Z +300 Lethbridge 20 2020-02-15T06:59:28Z +301 Lhokseumawe 45 2020-02-15T06:59:28Z +302 Liaocheng 23 2020-02-15T06:59:28Z +303 Liepaja 54 2020-02-15T06:59:28Z +304 Lilongwe 58 2020-02-15T06:59:28Z +305 Lima 74 2020-02-15T06:59:28Z +306 Lincoln 103 2020-02-15T06:59:28Z +307 Linz 9 2020-02-15T06:59:28Z +308 Lipetsk 80 2020-02-15T06:59:28Z +309 Livorno 49 2020-02-15T06:59:28Z +310 Ljubertsy 80 2020-02-15T06:59:28Z +311 Loja 28 2020-02-15T06:59:28Z +312 London 102 2020-02-15T06:59:28Z +313 London 20 2020-02-15T06:59:28Z +314 Lublin 76 2020-02-15T06:59:28Z +315 Lubumbashi 25 2020-02-15T06:59:28Z +316 Lungtan 92 2020-02-15T06:59:28Z +317 Luzinia 15 2020-02-15T06:59:28Z +318 Madiun 45 2020-02-15T06:59:28Z +319 Mahajanga 57 2020-02-15T06:59:28Z +320 Maikop 80 2020-02-15T06:59:28Z +321 Malm 90 2020-02-15T06:59:28Z +322 Manchester 103 2020-02-15T06:59:28Z +323 Mandaluyong 75 2020-02-15T06:59:28Z +324 Mandi Bahauddin 72 2020-02-15T06:59:28Z +325 Mannheim 38 2020-02-15T06:59:28Z +326 Maracabo 104 2020-02-15T06:59:28Z +327 Mardan 72 2020-02-15T06:59:28Z +328 Maring 15 2020-02-15T06:59:28Z +329 Masqat 71 2020-02-15T06:59:28Z +330 Matamoros 60 2020-02-15T06:59:28Z +331 Matsue 50 2020-02-15T06:59:28Z +332 Meixian 23 2020-02-15T06:59:28Z +333 Memphis 103 2020-02-15T06:59:28Z +334 Merlo 6 2020-02-15T06:59:28Z +335 Mexicali 60 2020-02-15T06:59:28Z +336 Miraj 44 2020-02-15T06:59:28Z +337 Mit Ghamr 29 2020-02-15T06:59:28Z +338 Miyakonojo 50 2020-02-15T06:59:28Z +339 Mogiljov 13 2020-02-15T06:59:28Z +340 Molodetno 13 2020-02-15T06:59:28Z +341 Monclova 60 2020-02-15T06:59:28Z +342 Monywa 64 2020-02-15T06:59:28Z +343 Moscow 80 2020-02-15T06:59:28Z +344 Mosul 47 2020-02-15T06:59:28Z +345 Mukateve 100 2020-02-15T06:59:28Z +346 Munger (Monghyr) 44 2020-02-15T06:59:28Z +347 Mwanza 93 2020-02-15T06:59:28Z +348 Mwene-Ditu 25 2020-02-15T06:59:28Z +349 Myingyan 64 2020-02-15T06:59:28Z +350 Mysore 44 2020-02-15T06:59:28Z +351 Naala-Porto 63 2020-02-15T06:59:28Z +352 Nabereznyje Telny 80 2020-02-15T06:59:28Z +353 Nador 62 2020-02-15T06:59:28Z +354 Nagaon 44 2020-02-15T06:59:28Z +355 Nagareyama 50 2020-02-15T06:59:28Z +356 Najafabad 46 2020-02-15T06:59:28Z +357 Naju 86 2020-02-15T06:59:28Z +358 Nakhon Sawan 94 2020-02-15T06:59:28Z +359 Nam Dinh 105 2020-02-15T06:59:28Z +360 Namibe 4 2020-02-15T06:59:28Z +361 Nantou 92 2020-02-15T06:59:28Z +362 Nanyang 23 2020-02-15T06:59:28Z +363 NDjamna 21 2020-02-15T06:59:28Z +364 Newcastle 85 2020-02-15T06:59:28Z +365 Nezahualcyotl 60 2020-02-15T06:59:28Z +366 Nha Trang 105 2020-02-15T06:59:28Z +367 Niznekamsk 80 2020-02-15T06:59:28Z +368 Novi Sad 108 2020-02-15T06:59:28Z +369 Novoterkassk 80 2020-02-15T06:59:28Z +370 Nukualofa 95 2020-02-15T06:59:28Z +371 Nuuk 40 2020-02-15T06:59:28Z +372 Nyeri 52 2020-02-15T06:59:28Z +373 Ocumare del Tuy 104 2020-02-15T06:59:28Z +374 Ogbomosho 69 2020-02-15T06:59:28Z +375 Okara 72 2020-02-15T06:59:28Z +376 Okayama 50 2020-02-15T06:59:28Z +377 Okinawa 50 2020-02-15T06:59:28Z +378 Olomouc 26 2020-02-15T06:59:28Z +379 Omdurman 89 2020-02-15T06:59:28Z +380 Omiya 50 2020-02-15T06:59:28Z +381 Ondo 69 2020-02-15T06:59:28Z +382 Onomichi 50 2020-02-15T06:59:28Z +383 Oshawa 20 2020-02-15T06:59:28Z +384 Osmaniye 97 2020-02-15T06:59:28Z +385 ostka 100 2020-02-15T06:59:28Z +386 Otsu 50 2020-02-15T06:59:28Z +387 Oulu 33 2020-02-15T06:59:28Z +388 Ourense (Orense) 87 2020-02-15T06:59:28Z +389 Owo 69 2020-02-15T06:59:28Z +390 Oyo 69 2020-02-15T06:59:28Z +391 Ozamis 75 2020-02-15T06:59:28Z +392 Paarl 85 2020-02-15T06:59:28Z +393 Pachuca de Soto 60 2020-02-15T06:59:28Z +394 Pak Kret 94 2020-02-15T06:59:28Z +395 Palghat (Palakkad) 44 2020-02-15T06:59:28Z +396 Pangkal Pinang 45 2020-02-15T06:59:28Z +397 Papeete 36 2020-02-15T06:59:28Z +398 Parbhani 44 2020-02-15T06:59:28Z +399 Pathankot 44 2020-02-15T06:59:28Z +400 Patiala 44 2020-02-15T06:59:28Z +401 Patras 39 2020-02-15T06:59:28Z +402 Pavlodar 51 2020-02-15T06:59:28Z +403 Pemalang 45 2020-02-15T06:59:28Z +404 Peoria 103 2020-02-15T06:59:28Z +405 Pereira 24 2020-02-15T06:59:28Z +406 Phnom Penh 18 2020-02-15T06:59:28Z +407 Pingxiang 23 2020-02-15T06:59:28Z +408 Pjatigorsk 80 2020-02-15T06:59:28Z +409 Plock 76 2020-02-15T06:59:28Z +410 Po 15 2020-02-15T06:59:28Z +411 Ponce 77 2020-02-15T06:59:28Z +412 Pontianak 45 2020-02-15T06:59:28Z +413 Poos de Caldas 15 2020-02-15T06:59:28Z +414 Portoviejo 28 2020-02-15T06:59:28Z +415 Probolinggo 45 2020-02-15T06:59:28Z +416 Pudukkottai 44 2020-02-15T06:59:28Z +417 Pune 44 2020-02-15T06:59:28Z +418 Purnea (Purnia) 44 2020-02-15T06:59:28Z +419 Purwakarta 45 2020-02-15T06:59:28Z +420 Pyongyang 70 2020-02-15T06:59:28Z +421 Qalyub 29 2020-02-15T06:59:28Z +422 Qinhuangdao 23 2020-02-15T06:59:28Z +423 Qomsheh 46 2020-02-15T06:59:28Z +424 Quilmes 6 2020-02-15T06:59:28Z +425 Rae Bareli 44 2020-02-15T06:59:28Z +426 Rajkot 44 2020-02-15T06:59:28Z +427 Rampur 44 2020-02-15T06:59:28Z +428 Rancagua 22 2020-02-15T06:59:28Z +429 Ranchi 44 2020-02-15T06:59:28Z +430 Richmond Hill 20 2020-02-15T06:59:28Z +431 Rio Claro 15 2020-02-15T06:59:28Z +432 Rizhao 23 2020-02-15T06:59:28Z +433 Roanoke 103 2020-02-15T06:59:28Z +434 Robamba 28 2020-02-15T06:59:28Z +435 Rockford 103 2020-02-15T06:59:28Z +436 Ruse 17 2020-02-15T06:59:28Z +437 Rustenburg 85 2020-02-15T06:59:28Z +438 s-Hertogenbosch 67 2020-02-15T06:59:28Z +439 Saarbrcken 38 2020-02-15T06:59:28Z +440 Sagamihara 50 2020-02-15T06:59:28Z +441 Saint Louis 103 2020-02-15T06:59:28Z +442 Saint-Denis 79 2020-02-15T06:59:28Z +443 Sal 62 2020-02-15T06:59:28Z +444 Salala 71 2020-02-15T06:59:28Z +445 Salamanca 60 2020-02-15T06:59:28Z +446 Salinas 103 2020-02-15T06:59:28Z +447 Salzburg 9 2020-02-15T06:59:28Z +448 Sambhal 44 2020-02-15T06:59:28Z +449 San Bernardino 103 2020-02-15T06:59:28Z +450 San Felipe de Puerto Plata 27 2020-02-15T06:59:28Z +451 San Felipe del Progreso 60 2020-02-15T06:59:28Z +452 San Juan Bautista Tuxtepec 60 2020-02-15T06:59:28Z +453 San Lorenzo 73 2020-02-15T06:59:28Z +454 San Miguel de Tucumn 6 2020-02-15T06:59:28Z +455 Sanaa 107 2020-02-15T06:59:28Z +456 Santa Brbara dOeste 15 2020-02-15T06:59:28Z +457 Santa F 6 2020-02-15T06:59:28Z +458 Santa Rosa 75 2020-02-15T06:59:28Z +459 Santiago de Compostela 87 2020-02-15T06:59:28Z +460 Santiago de los Caballeros 27 2020-02-15T06:59:28Z +461 Santo Andr 15 2020-02-15T06:59:28Z +462 Sanya 23 2020-02-15T06:59:28Z +463 Sasebo 50 2020-02-15T06:59:28Z +464 Satna 44 2020-02-15T06:59:28Z +465 Sawhaj 29 2020-02-15T06:59:28Z +466 Serpuhov 80 2020-02-15T06:59:28Z +467 Shahr-e Kord 46 2020-02-15T06:59:28Z +468 Shanwei 23 2020-02-15T06:59:28Z +469 Shaoguan 23 2020-02-15T06:59:28Z +470 Sharja 101 2020-02-15T06:59:28Z +471 Shenzhen 23 2020-02-15T06:59:28Z +472 Shikarpur 72 2020-02-15T06:59:28Z +473 Shimoga 44 2020-02-15T06:59:28Z +474 Shimonoseki 50 2020-02-15T06:59:28Z +475 Shivapuri 44 2020-02-15T06:59:28Z +476 Shubra al-Khayma 29 2020-02-15T06:59:28Z +477 Siegen 38 2020-02-15T06:59:28Z +478 Siliguri (Shiliguri) 44 2020-02-15T06:59:28Z +479 Simferopol 100 2020-02-15T06:59:28Z +480 Sincelejo 24 2020-02-15T06:59:28Z +481 Sirjan 46 2020-02-15T06:59:28Z +482 Sivas 97 2020-02-15T06:59:28Z +483 Skikda 2 2020-02-15T06:59:28Z +484 Smolensk 80 2020-02-15T06:59:28Z +485 So Bernardo do Campo 15 2020-02-15T06:59:28Z +486 So Leopoldo 15 2020-02-15T06:59:28Z +487 Sogamoso 24 2020-02-15T06:59:28Z +488 Sokoto 69 2020-02-15T06:59:28Z +489 Songkhla 94 2020-02-15T06:59:28Z +490 Sorocaba 15 2020-02-15T06:59:28Z +491 Soshanguve 85 2020-02-15T06:59:28Z +492 Sousse 96 2020-02-15T06:59:28Z +493 South Hill 5 2020-02-15T06:59:28Z +494 Southampton 102 2020-02-15T06:59:28Z +495 Southend-on-Sea 102 2020-02-15T06:59:28Z +496 Southport 102 2020-02-15T06:59:28Z +497 Springs 85 2020-02-15T06:59:28Z +498 Stara Zagora 17 2020-02-15T06:59:28Z +499 Sterling Heights 103 2020-02-15T06:59:28Z +500 Stockport 102 2020-02-15T06:59:28Z +501 Sucre 14 2020-02-15T06:59:28Z +502 Suihua 23 2020-02-15T06:59:28Z +503 Sullana 74 2020-02-15T06:59:28Z +504 Sultanbeyli 97 2020-02-15T06:59:28Z +505 Sumqayit 10 2020-02-15T06:59:28Z +506 Sumy 100 2020-02-15T06:59:28Z +507 Sungai Petani 59 2020-02-15T06:59:28Z +508 Sunnyvale 103 2020-02-15T06:59:28Z +509 Surakarta 45 2020-02-15T06:59:28Z +510 Syktyvkar 80 2020-02-15T06:59:28Z +511 Syrakusa 49 2020-02-15T06:59:28Z +512 Szkesfehrvr 43 2020-02-15T06:59:28Z +513 Tabora 93 2020-02-15T06:59:28Z +514 Tabriz 46 2020-02-15T06:59:28Z +515 Tabuk 82 2020-02-15T06:59:28Z +516 Tafuna 3 2020-02-15T06:59:28Z +517 Taguig 75 2020-02-15T06:59:28Z +518 Taizz 107 2020-02-15T06:59:28Z +519 Talavera 75 2020-02-15T06:59:28Z +520 Tallahassee 103 2020-02-15T06:59:28Z +521 Tama 50 2020-02-15T06:59:28Z +522 Tambaram 44 2020-02-15T06:59:28Z +523 Tanauan 75 2020-02-15T06:59:28Z +524 Tandil 6 2020-02-15T06:59:28Z +525 Tangail 12 2020-02-15T06:59:28Z +526 Tanshui 92 2020-02-15T06:59:28Z +527 Tanza 75 2020-02-15T06:59:28Z +528 Tarlac 75 2020-02-15T06:59:28Z +529 Tarsus 97 2020-02-15T06:59:28Z +530 Tartu 30 2020-02-15T06:59:28Z +531 Teboksary 80 2020-02-15T06:59:28Z +532 Tegal 45 2020-02-15T06:59:28Z +533 Tel Aviv-Jaffa 48 2020-02-15T06:59:28Z +534 Tete 63 2020-02-15T06:59:28Z +535 Tianjin 23 2020-02-15T06:59:28Z +536 Tiefa 23 2020-02-15T06:59:28Z +537 Tieli 23 2020-02-15T06:59:28Z +538 Tokat 97 2020-02-15T06:59:28Z +539 Tonghae 86 2020-02-15T06:59:28Z +540 Tongliao 23 2020-02-15T06:59:28Z +541 Torren 60 2020-02-15T06:59:28Z +542 Touliu 92 2020-02-15T06:59:28Z +543 Toulon 34 2020-02-15T06:59:28Z +544 Toulouse 34 2020-02-15T06:59:28Z +545 Trshavn 32 2020-02-15T06:59:28Z +546 Tsaotun 92 2020-02-15T06:59:28Z +547 Tsuyama 50 2020-02-15T06:59:28Z +548 Tuguegarao 75 2020-02-15T06:59:28Z +549 Tychy 76 2020-02-15T06:59:28Z +550 Udaipur 44 2020-02-15T06:59:28Z +551 Udine 49 2020-02-15T06:59:28Z +552 Ueda 50 2020-02-15T06:59:28Z +553 Uijongbu 86 2020-02-15T06:59:28Z +554 Uluberia 44 2020-02-15T06:59:28Z +555 Urawa 50 2020-02-15T06:59:28Z +556 Uruapan 60 2020-02-15T06:59:28Z +557 Usak 97 2020-02-15T06:59:28Z +558 Usolje-Sibirskoje 80 2020-02-15T06:59:28Z +559 Uttarpara-Kotrung 44 2020-02-15T06:59:28Z +560 Vaduz 55 2020-02-15T06:59:28Z +561 Valencia 104 2020-02-15T06:59:28Z +562 Valle de la Pascua 104 2020-02-15T06:59:28Z +563 Valle de Santiago 60 2020-02-15T06:59:28Z +564 Valparai 44 2020-02-15T06:59:28Z +565 Vancouver 20 2020-02-15T06:59:28Z +566 Varanasi (Benares) 44 2020-02-15T06:59:28Z +567 Vicente Lpez 6 2020-02-15T06:59:28Z +568 Vijayawada 44 2020-02-15T06:59:28Z +569 Vila Velha 15 2020-02-15T06:59:28Z +570 Vilnius 56 2020-02-15T06:59:28Z +571 Vinh 105 2020-02-15T06:59:28Z +572 Vitria de Santo Anto 15 2020-02-15T06:59:28Z +573 Warren 103 2020-02-15T06:59:28Z +574 Weifang 23 2020-02-15T06:59:28Z +575 Witten 38 2020-02-15T06:59:28Z +576 Woodridge 8 2020-02-15T06:59:28Z +577 Wroclaw 76 2020-02-15T06:59:28Z +578 Xiangfan 23 2020-02-15T06:59:28Z +579 Xiangtan 23 2020-02-15T06:59:28Z +580 Xintai 23 2020-02-15T06:59:28Z +581 Xinxiang 23 2020-02-15T06:59:28Z +582 Yamuna Nagar 44 2020-02-15T06:59:28Z +583 Yangor 65 2020-02-15T06:59:28Z +584 Yantai 23 2020-02-15T06:59:28Z +585 Yaound 19 2020-02-15T06:59:28Z +586 Yerevan 7 2020-02-15T06:59:28Z +587 Yinchuan 23 2020-02-15T06:59:28Z +588 Yingkou 23 2020-02-15T06:59:28Z +589 York 102 2020-02-15T06:59:28Z +590 Yuncheng 23 2020-02-15T06:59:28Z +591 Yuzhou 23 2020-02-15T06:59:28Z +592 Zalantun 23 2020-02-15T06:59:28Z +593 Zanzibar 93 2020-02-15T06:59:28Z +594 Zaoyang 23 2020-02-15T06:59:28Z +595 Zapopan 60 2020-02-15T06:59:28Z +596 Zaria 69 2020-02-15T06:59:28Z +597 Zeleznogorsk 80 2020-02-15T06:59:28Z +598 Zhezqazghan 51 2020-02-15T06:59:28Z +599 Zhoushan 23 2020-02-15T06:59:28Z +600 Ziguinchor 83 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/country.tsv b/drivers/csv/testdata/sakila-tsv-noheader/country.tsv new file mode 100644 index 00000000..09eca6c5 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/country.tsv @@ -0,0 +1,109 @@ +1 Afghanistan 2020-02-15T06:59:27Z +2 Algeria 2020-02-15T06:59:27Z +3 American Samoa 2020-02-15T06:59:27Z +4 Angola 2020-02-15T06:59:27Z +5 Anguilla 2020-02-15T06:59:27Z +6 Argentina 2020-02-15T06:59:27Z +7 Armenia 2020-02-15T06:59:27Z +8 Australia 2020-02-15T06:59:27Z +9 Austria 2020-02-15T06:59:27Z +10 Azerbaijan 2020-02-15T06:59:27Z +11 Bahrain 2020-02-15T06:59:27Z +12 Bangladesh 2020-02-15T06:59:27Z +13 Belarus 2020-02-15T06:59:27Z +14 Bolivia 2020-02-15T06:59:27Z +15 Brazil 2020-02-15T06:59:27Z +16 Brunei 2020-02-15T06:59:27Z +17 Bulgaria 2020-02-15T06:59:27Z +18 Cambodia 2020-02-15T06:59:27Z +19 Cameroon 2020-02-15T06:59:27Z +20 Canada 2020-02-15T06:59:27Z +21 Chad 2020-02-15T06:59:27Z +22 Chile 2020-02-15T06:59:27Z +23 China 2020-02-15T06:59:27Z +24 Colombia 2020-02-15T06:59:27Z +25 Congo, The Democratic Republic of the 2020-02-15T06:59:27Z +26 Czech Republic 2020-02-15T06:59:27Z +27 Dominican Republic 2020-02-15T06:59:27Z +28 Ecuador 2020-02-15T06:59:27Z +29 Egypt 2020-02-15T06:59:27Z +30 Estonia 2020-02-15T06:59:27Z +31 Ethiopia 2020-02-15T06:59:27Z +32 Faroe Islands 2020-02-15T06:59:27Z +33 Finland 2020-02-15T06:59:27Z +34 France 2020-02-15T06:59:27Z +35 French Guiana 2020-02-15T06:59:27Z +36 French Polynesia 2020-02-15T06:59:27Z +37 Gambia 2020-02-15T06:59:27Z +38 Germany 2020-02-15T06:59:27Z +39 Greece 2020-02-15T06:59:27Z +40 Greenland 2020-02-15T06:59:27Z +41 Holy See (Vatican City State) 2020-02-15T06:59:28Z +42 Hong Kong 2020-02-15T06:59:28Z +43 Hungary 2020-02-15T06:59:28Z +44 India 2020-02-15T06:59:28Z +45 Indonesia 2020-02-15T06:59:28Z +46 Iran 2020-02-15T06:59:28Z +47 Iraq 2020-02-15T06:59:28Z +48 Israel 2020-02-15T06:59:28Z +49 Italy 2020-02-15T06:59:28Z +50 Japan 2020-02-15T06:59:28Z +51 Kazakstan 2020-02-15T06:59:28Z +52 Kenya 2020-02-15T06:59:28Z +53 Kuwait 2020-02-15T06:59:28Z +54 Latvia 2020-02-15T06:59:28Z +55 Liechtenstein 2020-02-15T06:59:28Z +56 Lithuania 2020-02-15T06:59:28Z +57 Madagascar 2020-02-15T06:59:28Z +58 Malawi 2020-02-15T06:59:28Z +59 Malaysia 2020-02-15T06:59:28Z +60 Mexico 2020-02-15T06:59:28Z +61 Moldova 2020-02-15T06:59:28Z +62 Morocco 2020-02-15T06:59:28Z +63 Mozambique 2020-02-15T06:59:28Z +64 Myanmar 2020-02-15T06:59:28Z +65 Nauru 2020-02-15T06:59:28Z +66 Nepal 2020-02-15T06:59:28Z +67 Netherlands 2020-02-15T06:59:28Z +68 New Zealand 2020-02-15T06:59:28Z +69 Nigeria 2020-02-15T06:59:28Z +70 North Korea 2020-02-15T06:59:28Z +71 Oman 2020-02-15T06:59:28Z +72 Pakistan 2020-02-15T06:59:28Z +73 Paraguay 2020-02-15T06:59:28Z +74 Peru 2020-02-15T06:59:28Z +75 Philippines 2020-02-15T06:59:28Z +76 Poland 2020-02-15T06:59:28Z +77 Puerto Rico 2020-02-15T06:59:28Z +78 Romania 2020-02-15T06:59:28Z +79 Runion 2020-02-15T06:59:28Z +80 Russian Federation 2020-02-15T06:59:28Z +81 Saint Vincent and the Grenadines 2020-02-15T06:59:28Z +82 Saudi Arabia 2020-02-15T06:59:28Z +83 Senegal 2020-02-15T06:59:28Z +84 Slovakia 2020-02-15T06:59:28Z +85 South Africa 2020-02-15T06:59:28Z +86 South Korea 2020-02-15T06:59:28Z +87 Spain 2020-02-15T06:59:28Z +88 Sri Lanka 2020-02-15T06:59:28Z +89 Sudan 2020-02-15T06:59:28Z +90 Sweden 2020-02-15T06:59:28Z +91 Switzerland 2020-02-15T06:59:28Z +92 Taiwan 2020-02-15T06:59:28Z +93 Tanzania 2020-02-15T06:59:28Z +94 Thailand 2020-02-15T06:59:28Z +95 Tonga 2020-02-15T06:59:28Z +96 Tunisia 2020-02-15T06:59:28Z +97 Turkey 2020-02-15T06:59:28Z +98 Turkmenistan 2020-02-15T06:59:28Z +99 Tuvalu 2020-02-15T06:59:28Z +100 Ukraine 2020-02-15T06:59:28Z +101 United Arab Emirates 2020-02-15T06:59:28Z +102 United Kingdom 2020-02-15T06:59:28Z +103 United States 2020-02-15T06:59:28Z +104 Venezuela 2020-02-15T06:59:28Z +105 Vietnam 2020-02-15T06:59:28Z +106 Virgin Islands, U.S. 2020-02-15T06:59:28Z +107 Yemen 2020-02-15T06:59:28Z +108 Yugoslavia 2020-02-15T06:59:28Z +109 Zambia 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/customer.tsv b/drivers/csv/testdata/sakila-tsv-noheader/customer.tsv new file mode 100644 index 00000000..67da4b5b --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/customer.tsv @@ -0,0 +1,599 @@ +1 1 MARY SMITH MARY.SMITH@sakilacustomer.org 5 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +2 1 PATRICIA JOHNSON PATRICIA.JOHNSON@sakilacustomer.org 6 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +3 1 LINDA WILLIAMS LINDA.WILLIAMS@sakilacustomer.org 7 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +4 2 BARBARA JONES BARBARA.JONES@sakilacustomer.org 8 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +5 1 ELIZABETH BROWN ELIZABETH.BROWN@sakilacustomer.org 9 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +6 2 JENNIFER DAVIS JENNIFER.DAVIS@sakilacustomer.org 10 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +7 1 MARIA MILLER MARIA.MILLER@sakilacustomer.org 11 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +8 2 SUSAN WILSON SUSAN.WILSON@sakilacustomer.org 12 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +9 2 MARGARET MOORE MARGARET.MOORE@sakilacustomer.org 13 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +10 1 DOROTHY TAYLOR DOROTHY.TAYLOR@sakilacustomer.org 14 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +11 2 LISA ANDERSON LISA.ANDERSON@sakilacustomer.org 15 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +12 1 NANCY THOMAS NANCY.THOMAS@sakilacustomer.org 16 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +13 2 KAREN JACKSON KAREN.JACKSON@sakilacustomer.org 17 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +14 2 BETTY WHITE BETTY.WHITE@sakilacustomer.org 18 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +15 1 HELEN HARRIS HELEN.HARRIS@sakilacustomer.org 19 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +16 2 SANDRA MARTIN SANDRA.MARTIN@sakilacustomer.org 20 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +17 1 DONNA THOMPSON DONNA.THOMPSON@sakilacustomer.org 21 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +18 2 CAROL GARCIA CAROL.GARCIA@sakilacustomer.org 22 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +19 1 RUTH MARTINEZ RUTH.MARTINEZ@sakilacustomer.org 23 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +20 2 SHARON ROBINSON SHARON.ROBINSON@sakilacustomer.org 24 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +21 1 MICHELLE CLARK MICHELLE.CLARK@sakilacustomer.org 25 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +22 1 LAURA RODRIGUEZ LAURA.RODRIGUEZ@sakilacustomer.org 26 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +23 2 SARAH LEWIS SARAH.LEWIS@sakilacustomer.org 27 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +24 2 KIMBERLY LEE KIMBERLY.LEE@sakilacustomer.org 28 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +25 1 DEBORAH WALKER DEBORAH.WALKER@sakilacustomer.org 29 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +26 2 JESSICA HALL JESSICA.HALL@sakilacustomer.org 30 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +27 2 SHIRLEY ALLEN SHIRLEY.ALLEN@sakilacustomer.org 31 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +28 1 CYNTHIA YOUNG CYNTHIA.YOUNG@sakilacustomer.org 32 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +29 2 ANGELA HERNANDEZ ANGELA.HERNANDEZ@sakilacustomer.org 33 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +30 1 MELISSA KING MELISSA.KING@sakilacustomer.org 34 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +31 2 BRENDA WRIGHT BRENDA.WRIGHT@sakilacustomer.org 35 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +32 1 AMY LOPEZ AMY.LOPEZ@sakilacustomer.org 36 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +33 2 ANNA HILL ANNA.HILL@sakilacustomer.org 37 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +34 2 REBECCA SCOTT REBECCA.SCOTT@sakilacustomer.org 38 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +35 2 VIRGINIA GREEN VIRGINIA.GREEN@sakilacustomer.org 39 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +36 2 KATHLEEN ADAMS KATHLEEN.ADAMS@sakilacustomer.org 40 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +37 1 PAMELA BAKER PAMELA.BAKER@sakilacustomer.org 41 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +38 1 MARTHA GONZALEZ MARTHA.GONZALEZ@sakilacustomer.org 42 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +39 1 DEBRA NELSON DEBRA.NELSON@sakilacustomer.org 43 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +40 2 AMANDA CARTER AMANDA.CARTER@sakilacustomer.org 44 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +41 1 STEPHANIE MITCHELL STEPHANIE.MITCHELL@sakilacustomer.org 45 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +42 2 CAROLYN PEREZ CAROLYN.PEREZ@sakilacustomer.org 46 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +43 2 CHRISTINE ROBERTS CHRISTINE.ROBERTS@sakilacustomer.org 47 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +44 1 MARIE TURNER MARIE.TURNER@sakilacustomer.org 48 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +45 1 JANET PHILLIPS JANET.PHILLIPS@sakilacustomer.org 49 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +46 2 CATHERINE CAMPBELL CATHERINE.CAMPBELL@sakilacustomer.org 50 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +47 1 FRANCES PARKER FRANCES.PARKER@sakilacustomer.org 51 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +48 1 ANN EVANS ANN.EVANS@sakilacustomer.org 52 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +49 2 JOYCE EDWARDS JOYCE.EDWARDS@sakilacustomer.org 53 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +50 1 DIANE COLLINS DIANE.COLLINS@sakilacustomer.org 54 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +51 1 ALICE STEWART ALICE.STEWART@sakilacustomer.org 55 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +52 1 JULIE SANCHEZ JULIE.SANCHEZ@sakilacustomer.org 56 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +53 1 HEATHER MORRIS HEATHER.MORRIS@sakilacustomer.org 57 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +54 1 TERESA ROGERS TERESA.ROGERS@sakilacustomer.org 58 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +55 2 DORIS REED DORIS.REED@sakilacustomer.org 59 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +56 1 GLORIA COOK GLORIA.COOK@sakilacustomer.org 60 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +57 2 EVELYN MORGAN EVELYN.MORGAN@sakilacustomer.org 61 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +58 1 JEAN BELL JEAN.BELL@sakilacustomer.org 62 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +59 1 CHERYL MURPHY CHERYL.MURPHY@sakilacustomer.org 63 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +60 1 MILDRED BAILEY MILDRED.BAILEY@sakilacustomer.org 64 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +61 2 KATHERINE RIVERA KATHERINE.RIVERA@sakilacustomer.org 65 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +62 1 JOAN COOPER JOAN.COOPER@sakilacustomer.org 66 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +63 1 ASHLEY RICHARDSON ASHLEY.RICHARDSON@sakilacustomer.org 67 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +64 2 JUDITH COX JUDITH.COX@sakilacustomer.org 68 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +65 2 ROSE HOWARD ROSE.HOWARD@sakilacustomer.org 69 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +66 2 JANICE WARD JANICE.WARD@sakilacustomer.org 70 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +67 1 KELLY TORRES KELLY.TORRES@sakilacustomer.org 71 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +68 1 NICOLE PETERSON NICOLE.PETERSON@sakilacustomer.org 72 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +69 2 JUDY GRAY JUDY.GRAY@sakilacustomer.org 73 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +70 2 CHRISTINA RAMIREZ CHRISTINA.RAMIREZ@sakilacustomer.org 74 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +71 1 KATHY JAMES KATHY.JAMES@sakilacustomer.org 75 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +72 2 THERESA WATSON THERESA.WATSON@sakilacustomer.org 76 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +73 2 BEVERLY BROOKS BEVERLY.BROOKS@sakilacustomer.org 77 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +74 1 DENISE KELLY DENISE.KELLY@sakilacustomer.org 78 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +75 2 TAMMY SANDERS TAMMY.SANDERS@sakilacustomer.org 79 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +76 2 IRENE PRICE IRENE.PRICE@sakilacustomer.org 80 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +77 2 JANE BENNETT JANE.BENNETT@sakilacustomer.org 81 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +78 1 LORI WOOD LORI.WOOD@sakilacustomer.org 82 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +79 1 RACHEL BARNES RACHEL.BARNES@sakilacustomer.org 83 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +80 1 MARILYN ROSS MARILYN.ROSS@sakilacustomer.org 84 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +81 1 ANDREA HENDERSON ANDREA.HENDERSON@sakilacustomer.org 85 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +82 1 KATHRYN COLEMAN KATHRYN.COLEMAN@sakilacustomer.org 86 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +83 1 LOUISE JENKINS LOUISE.JENKINS@sakilacustomer.org 87 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +84 2 SARA PERRY SARA.PERRY@sakilacustomer.org 88 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +85 2 ANNE POWELL ANNE.POWELL@sakilacustomer.org 89 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +86 2 JACQUELINE LONG JACQUELINE.LONG@sakilacustomer.org 90 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +87 1 WANDA PATTERSON WANDA.PATTERSON@sakilacustomer.org 91 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +88 2 BONNIE HUGHES BONNIE.HUGHES@sakilacustomer.org 92 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +89 1 JULIA FLORES JULIA.FLORES@sakilacustomer.org 93 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +90 2 RUBY WASHINGTON RUBY.WASHINGTON@sakilacustomer.org 94 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +91 2 LOIS BUTLER LOIS.BUTLER@sakilacustomer.org 95 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +92 2 TINA SIMMONS TINA.SIMMONS@sakilacustomer.org 96 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +93 1 PHYLLIS FOSTER PHYLLIS.FOSTER@sakilacustomer.org 97 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +94 1 NORMA GONZALES NORMA.GONZALES@sakilacustomer.org 98 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +95 2 PAULA BRYANT PAULA.BRYANT@sakilacustomer.org 99 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +96 1 DIANA ALEXANDER DIANA.ALEXANDER@sakilacustomer.org 100 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +97 2 ANNIE RUSSELL ANNIE.RUSSELL@sakilacustomer.org 101 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +98 1 LILLIAN GRIFFIN LILLIAN.GRIFFIN@sakilacustomer.org 102 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +99 2 EMILY DIAZ EMILY.DIAZ@sakilacustomer.org 103 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +100 1 ROBIN HAYES ROBIN.HAYES@sakilacustomer.org 104 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +101 1 PEGGY MYERS PEGGY.MYERS@sakilacustomer.org 105 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +102 1 CRYSTAL FORD CRYSTAL.FORD@sakilacustomer.org 106 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +103 1 GLADYS HAMILTON GLADYS.HAMILTON@sakilacustomer.org 107 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +104 1 RITA GRAHAM RITA.GRAHAM@sakilacustomer.org 108 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +105 1 DAWN SULLIVAN DAWN.SULLIVAN@sakilacustomer.org 109 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +106 1 CONNIE WALLACE CONNIE.WALLACE@sakilacustomer.org 110 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +107 1 FLORENCE WOODS FLORENCE.WOODS@sakilacustomer.org 111 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +108 1 TRACY COLE TRACY.COLE@sakilacustomer.org 112 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +109 2 EDNA WEST EDNA.WEST@sakilacustomer.org 113 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +110 2 TIFFANY JORDAN TIFFANY.JORDAN@sakilacustomer.org 114 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +111 1 CARMEN OWENS CARMEN.OWENS@sakilacustomer.org 115 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +112 2 ROSA REYNOLDS ROSA.REYNOLDS@sakilacustomer.org 116 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +113 2 CINDY FISHER CINDY.FISHER@sakilacustomer.org 117 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +114 2 GRACE ELLIS GRACE.ELLIS@sakilacustomer.org 118 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +115 1 WENDY HARRISON WENDY.HARRISON@sakilacustomer.org 119 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +116 1 VICTORIA GIBSON VICTORIA.GIBSON@sakilacustomer.org 120 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +117 1 EDITH MCDONALD EDITH.MCDONALD@sakilacustomer.org 121 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +118 1 KIM CRUZ KIM.CRUZ@sakilacustomer.org 122 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +119 1 SHERRY MARSHALL SHERRY.MARSHALL@sakilacustomer.org 123 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +120 2 SYLVIA ORTIZ SYLVIA.ORTIZ@sakilacustomer.org 124 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +121 1 JOSEPHINE GOMEZ JOSEPHINE.GOMEZ@sakilacustomer.org 125 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +122 1 THELMA MURRAY THELMA.MURRAY@sakilacustomer.org 126 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +123 2 SHANNON FREEMAN SHANNON.FREEMAN@sakilacustomer.org 127 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +124 1 SHEILA WELLS SHEILA.WELLS@sakilacustomer.org 128 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +125 1 ETHEL WEBB ETHEL.WEBB@sakilacustomer.org 129 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +126 1 ELLEN SIMPSON ELLEN.SIMPSON@sakilacustomer.org 130 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +127 2 ELAINE STEVENS ELAINE.STEVENS@sakilacustomer.org 131 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +128 1 MARJORIE TUCKER MARJORIE.TUCKER@sakilacustomer.org 132 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +129 1 CARRIE PORTER CARRIE.PORTER@sakilacustomer.org 133 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +130 1 CHARLOTTE HUNTER CHARLOTTE.HUNTER@sakilacustomer.org 134 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +131 2 MONICA HICKS MONICA.HICKS@sakilacustomer.org 135 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +132 2 ESTHER CRAWFORD ESTHER.CRAWFORD@sakilacustomer.org 136 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +133 1 PAULINE HENRY PAULINE.HENRY@sakilacustomer.org 137 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +134 1 EMMA BOYD EMMA.BOYD@sakilacustomer.org 138 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +135 2 JUANITA MASON JUANITA.MASON@sakilacustomer.org 139 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +136 2 ANITA MORALES ANITA.MORALES@sakilacustomer.org 140 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +137 2 RHONDA KENNEDY RHONDA.KENNEDY@sakilacustomer.org 141 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +138 1 HAZEL WARREN HAZEL.WARREN@sakilacustomer.org 142 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +139 1 AMBER DIXON AMBER.DIXON@sakilacustomer.org 143 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +140 1 EVA RAMOS EVA.RAMOS@sakilacustomer.org 144 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +141 1 DEBBIE REYES DEBBIE.REYES@sakilacustomer.org 145 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +142 1 APRIL BURNS APRIL.BURNS@sakilacustomer.org 146 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +143 1 LESLIE GORDON LESLIE.GORDON@sakilacustomer.org 147 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +144 1 CLARA SHAW CLARA.SHAW@sakilacustomer.org 148 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +145 1 LUCILLE HOLMES LUCILLE.HOLMES@sakilacustomer.org 149 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +146 1 JAMIE RICE JAMIE.RICE@sakilacustomer.org 150 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +147 2 JOANNE ROBERTSON JOANNE.ROBERTSON@sakilacustomer.org 151 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +148 1 ELEANOR HUNT ELEANOR.HUNT@sakilacustomer.org 152 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +149 1 VALERIE BLACK VALERIE.BLACK@sakilacustomer.org 153 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +150 2 DANIELLE DANIELS DANIELLE.DANIELS@sakilacustomer.org 154 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +151 2 MEGAN PALMER MEGAN.PALMER@sakilacustomer.org 155 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +152 1 ALICIA MILLS ALICIA.MILLS@sakilacustomer.org 156 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +153 2 SUZANNE NICHOLS SUZANNE.NICHOLS@sakilacustomer.org 157 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +154 2 MICHELE GRANT MICHELE.GRANT@sakilacustomer.org 158 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +155 1 GAIL KNIGHT GAIL.KNIGHT@sakilacustomer.org 159 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +156 1 BERTHA FERGUSON BERTHA.FERGUSON@sakilacustomer.org 160 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +157 2 DARLENE ROSE DARLENE.ROSE@sakilacustomer.org 161 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +158 1 VERONICA STONE VERONICA.STONE@sakilacustomer.org 162 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +159 1 JILL HAWKINS JILL.HAWKINS@sakilacustomer.org 163 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +160 2 ERIN DUNN ERIN.DUNN@sakilacustomer.org 164 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +161 1 GERALDINE PERKINS GERALDINE.PERKINS@sakilacustomer.org 165 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +162 2 LAUREN HUDSON LAUREN.HUDSON@sakilacustomer.org 166 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +163 1 CATHY SPENCER CATHY.SPENCER@sakilacustomer.org 167 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +164 2 JOANN GARDNER JOANN.GARDNER@sakilacustomer.org 168 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +165 2 LORRAINE STEPHENS LORRAINE.STEPHENS@sakilacustomer.org 169 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +166 1 LYNN PAYNE LYNN.PAYNE@sakilacustomer.org 170 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +167 2 SALLY PIERCE SALLY.PIERCE@sakilacustomer.org 171 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +168 1 REGINA BERRY REGINA.BERRY@sakilacustomer.org 172 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +169 2 ERICA MATTHEWS ERICA.MATTHEWS@sakilacustomer.org 173 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +170 1 BEATRICE ARNOLD BEATRICE.ARNOLD@sakilacustomer.org 174 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +171 2 DOLORES WAGNER DOLORES.WAGNER@sakilacustomer.org 175 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +172 1 BERNICE WILLIS BERNICE.WILLIS@sakilacustomer.org 176 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +173 1 AUDREY RAY AUDREY.RAY@sakilacustomer.org 177 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +174 2 YVONNE WATKINS YVONNE.WATKINS@sakilacustomer.org 178 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +175 1 ANNETTE OLSON ANNETTE.OLSON@sakilacustomer.org 179 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +176 1 JUNE CARROLL JUNE.CARROLL@sakilacustomer.org 180 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +177 2 SAMANTHA DUNCAN SAMANTHA.DUNCAN@sakilacustomer.org 181 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +178 2 MARION SNYDER MARION.SNYDER@sakilacustomer.org 182 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +179 1 DANA HART DANA.HART@sakilacustomer.org 183 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +180 2 STACY CUNNINGHAM STACY.CUNNINGHAM@sakilacustomer.org 184 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +181 2 ANA BRADLEY ANA.BRADLEY@sakilacustomer.org 185 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +182 1 RENEE LANE RENEE.LANE@sakilacustomer.org 186 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +183 2 IDA ANDREWS IDA.ANDREWS@sakilacustomer.org 187 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +184 1 VIVIAN RUIZ VIVIAN.RUIZ@sakilacustomer.org 188 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +185 1 ROBERTA HARPER ROBERTA.HARPER@sakilacustomer.org 189 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +186 2 HOLLY FOX HOLLY.FOX@sakilacustomer.org 190 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +187 2 BRITTANY RILEY BRITTANY.RILEY@sakilacustomer.org 191 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +188 1 MELANIE ARMSTRONG MELANIE.ARMSTRONG@sakilacustomer.org 192 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +189 1 LORETTA CARPENTER LORETTA.CARPENTER@sakilacustomer.org 193 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +190 2 YOLANDA WEAVER YOLANDA.WEAVER@sakilacustomer.org 194 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +191 1 JEANETTE GREENE JEANETTE.GREENE@sakilacustomer.org 195 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +192 1 LAURIE LAWRENCE LAURIE.LAWRENCE@sakilacustomer.org 196 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +193 2 KATIE ELLIOTT KATIE.ELLIOTT@sakilacustomer.org 197 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +194 2 KRISTEN CHAVEZ KRISTEN.CHAVEZ@sakilacustomer.org 198 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +195 1 VANESSA SIMS VANESSA.SIMS@sakilacustomer.org 199 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +196 1 ALMA AUSTIN ALMA.AUSTIN@sakilacustomer.org 200 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +197 2 SUE PETERS SUE.PETERS@sakilacustomer.org 201 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +198 2 ELSIE KELLEY ELSIE.KELLEY@sakilacustomer.org 202 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +199 2 BETH FRANKLIN BETH.FRANKLIN@sakilacustomer.org 203 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +200 2 JEANNE LAWSON JEANNE.LAWSON@sakilacustomer.org 204 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +201 1 VICKI FIELDS VICKI.FIELDS@sakilacustomer.org 205 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +202 2 CARLA GUTIERREZ CARLA.GUTIERREZ@sakilacustomer.org 206 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +203 1 TARA RYAN TARA.RYAN@sakilacustomer.org 207 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +204 1 ROSEMARY SCHMIDT ROSEMARY.SCHMIDT@sakilacustomer.org 208 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +205 2 EILEEN CARR EILEEN.CARR@sakilacustomer.org 209 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +206 1 TERRI VASQUEZ TERRI.VASQUEZ@sakilacustomer.org 210 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +207 1 GERTRUDE CASTILLO GERTRUDE.CASTILLO@sakilacustomer.org 211 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +208 1 LUCY WHEELER LUCY.WHEELER@sakilacustomer.org 212 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +209 2 TONYA CHAPMAN TONYA.CHAPMAN@sakilacustomer.org 213 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +210 2 ELLA OLIVER ELLA.OLIVER@sakilacustomer.org 214 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +211 1 STACEY MONTGOMERY STACEY.MONTGOMERY@sakilacustomer.org 215 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +212 2 WILMA RICHARDS WILMA.RICHARDS@sakilacustomer.org 216 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +213 1 GINA WILLIAMSON GINA.WILLIAMSON@sakilacustomer.org 217 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +214 1 KRISTIN JOHNSTON KRISTIN.JOHNSTON@sakilacustomer.org 218 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +215 2 JESSIE BANKS JESSIE.BANKS@sakilacustomer.org 219 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +216 1 NATALIE MEYER NATALIE.MEYER@sakilacustomer.org 220 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +217 2 AGNES BISHOP AGNES.BISHOP@sakilacustomer.org 221 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +218 1 VERA MCCOY VERA.MCCOY@sakilacustomer.org 222 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +219 2 WILLIE HOWELL WILLIE.HOWELL@sakilacustomer.org 223 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +220 2 CHARLENE ALVAREZ CHARLENE.ALVAREZ@sakilacustomer.org 224 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +221 1 BESSIE MORRISON BESSIE.MORRISON@sakilacustomer.org 225 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +222 2 DELORES HANSEN DELORES.HANSEN@sakilacustomer.org 226 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +223 1 MELINDA FERNANDEZ MELINDA.FERNANDEZ@sakilacustomer.org 227 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +224 2 PEARL GARZA PEARL.GARZA@sakilacustomer.org 228 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +225 1 ARLENE HARVEY ARLENE.HARVEY@sakilacustomer.org 229 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +226 2 MAUREEN LITTLE MAUREEN.LITTLE@sakilacustomer.org 230 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +227 1 COLLEEN BURTON COLLEEN.BURTON@sakilacustomer.org 231 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +228 2 ALLISON STANLEY ALLISON.STANLEY@sakilacustomer.org 232 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +229 1 TAMARA NGUYEN TAMARA.NGUYEN@sakilacustomer.org 233 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +230 2 JOY GEORGE JOY.GEORGE@sakilacustomer.org 234 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +231 1 GEORGIA JACOBS GEORGIA.JACOBS@sakilacustomer.org 235 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +232 2 CONSTANCE REID CONSTANCE.REID@sakilacustomer.org 236 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +233 2 LILLIE KIM LILLIE.KIM@sakilacustomer.org 237 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +234 1 CLAUDIA FULLER CLAUDIA.FULLER@sakilacustomer.org 238 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +235 1 JACKIE LYNCH JACKIE.LYNCH@sakilacustomer.org 239 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +236 1 MARCIA DEAN MARCIA.DEAN@sakilacustomer.org 240 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +237 1 TANYA GILBERT TANYA.GILBERT@sakilacustomer.org 241 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +238 1 NELLIE GARRETT NELLIE.GARRETT@sakilacustomer.org 242 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +239 2 MINNIE ROMERO MINNIE.ROMERO@sakilacustomer.org 243 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +240 1 MARLENE WELCH MARLENE.WELCH@sakilacustomer.org 244 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +241 2 HEIDI LARSON HEIDI.LARSON@sakilacustomer.org 245 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +242 1 GLENDA FRAZIER GLENDA.FRAZIER@sakilacustomer.org 246 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +243 1 LYDIA BURKE LYDIA.BURKE@sakilacustomer.org 247 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +244 2 VIOLA HANSON VIOLA.HANSON@sakilacustomer.org 248 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +245 1 COURTNEY DAY COURTNEY.DAY@sakilacustomer.org 249 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +246 1 MARIAN MENDOZA MARIAN.MENDOZA@sakilacustomer.org 250 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +247 1 STELLA MORENO STELLA.MORENO@sakilacustomer.org 251 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +248 1 CAROLINE BOWMAN CAROLINE.BOWMAN@sakilacustomer.org 252 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +249 2 DORA MEDINA DORA.MEDINA@sakilacustomer.org 253 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +250 2 JO FOWLER JO.FOWLER@sakilacustomer.org 254 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +251 2 VICKIE BREWER VICKIE.BREWER@sakilacustomer.org 255 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +252 2 MATTIE HOFFMAN MATTIE.HOFFMAN@sakilacustomer.org 256 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +253 1 TERRY CARLSON TERRY.CARLSON@sakilacustomer.org 258 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +254 2 MAXINE SILVA MAXINE.SILVA@sakilacustomer.org 259 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +255 2 IRMA PEARSON IRMA.PEARSON@sakilacustomer.org 260 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +256 2 MABEL HOLLAND MABEL.HOLLAND@sakilacustomer.org 261 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +257 2 MARSHA DOUGLAS MARSHA.DOUGLAS@sakilacustomer.org 262 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +258 1 MYRTLE FLEMING MYRTLE.FLEMING@sakilacustomer.org 263 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +259 2 LENA JENSEN LENA.JENSEN@sakilacustomer.org 264 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +260 1 CHRISTY VARGAS CHRISTY.VARGAS@sakilacustomer.org 265 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +261 1 DEANNA BYRD DEANNA.BYRD@sakilacustomer.org 266 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +262 2 PATSY DAVIDSON PATSY.DAVIDSON@sakilacustomer.org 267 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +263 1 HILDA HOPKINS HILDA.HOPKINS@sakilacustomer.org 268 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +264 1 GWENDOLYN MAY GWENDOLYN.MAY@sakilacustomer.org 269 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +265 2 JENNIE TERRY JENNIE.TERRY@sakilacustomer.org 270 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +266 2 NORA HERRERA NORA.HERRERA@sakilacustomer.org 271 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +267 1 MARGIE WADE MARGIE.WADE@sakilacustomer.org 272 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +268 1 NINA SOTO NINA.SOTO@sakilacustomer.org 273 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +269 1 CASSANDRA WALTERS CASSANDRA.WALTERS@sakilacustomer.org 274 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +270 1 LEAH CURTIS LEAH.CURTIS@sakilacustomer.org 275 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +271 1 PENNY NEAL PENNY.NEAL@sakilacustomer.org 276 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +272 1 KAY CALDWELL KAY.CALDWELL@sakilacustomer.org 277 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +273 2 PRISCILLA LOWE PRISCILLA.LOWE@sakilacustomer.org 278 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +274 1 NAOMI JENNINGS NAOMI.JENNINGS@sakilacustomer.org 279 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +275 2 CAROLE BARNETT CAROLE.BARNETT@sakilacustomer.org 280 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +276 1 BRANDY GRAVES BRANDY.GRAVES@sakilacustomer.org 281 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +277 2 OLGA JIMENEZ OLGA.JIMENEZ@sakilacustomer.org 282 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +278 2 BILLIE HORTON BILLIE.HORTON@sakilacustomer.org 283 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +279 2 DIANNE SHELTON DIANNE.SHELTON@sakilacustomer.org 284 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +280 2 TRACEY BARRETT TRACEY.BARRETT@sakilacustomer.org 285 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +281 2 LEONA OBRIEN LEONA.OBRIEN@sakilacustomer.org 286 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +282 2 JENNY CASTRO JENNY.CASTRO@sakilacustomer.org 287 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +283 1 FELICIA SUTTON FELICIA.SUTTON@sakilacustomer.org 288 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +284 1 SONIA GREGORY SONIA.GREGORY@sakilacustomer.org 289 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +285 1 MIRIAM MCKINNEY MIRIAM.MCKINNEY@sakilacustomer.org 290 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +286 1 VELMA LUCAS VELMA.LUCAS@sakilacustomer.org 291 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +287 2 BECKY MILES BECKY.MILES@sakilacustomer.org 292 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +288 1 BOBBIE CRAIG BOBBIE.CRAIG@sakilacustomer.org 293 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +289 1 VIOLET RODRIQUEZ VIOLET.RODRIQUEZ@sakilacustomer.org 294 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +290 1 KRISTINA CHAMBERS KRISTINA.CHAMBERS@sakilacustomer.org 295 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +291 1 TONI HOLT TONI.HOLT@sakilacustomer.org 296 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +292 2 MISTY LAMBERT MISTY.LAMBERT@sakilacustomer.org 297 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +293 2 MAE FLETCHER MAE.FLETCHER@sakilacustomer.org 298 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +294 2 SHELLY WATTS SHELLY.WATTS@sakilacustomer.org 299 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +295 1 DAISY BATES DAISY.BATES@sakilacustomer.org 300 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +296 2 RAMONA HALE RAMONA.HALE@sakilacustomer.org 301 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +297 1 SHERRI RHODES SHERRI.RHODES@sakilacustomer.org 302 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +298 1 ERIKA PENA ERIKA.PENA@sakilacustomer.org 303 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +299 2 JAMES GANNON JAMES.GANNON@sakilacustomer.org 304 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +300 1 JOHN FARNSWORTH JOHN.FARNSWORTH@sakilacustomer.org 305 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +301 2 ROBERT BAUGHMAN ROBERT.BAUGHMAN@sakilacustomer.org 306 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +302 1 MICHAEL SILVERMAN MICHAEL.SILVERMAN@sakilacustomer.org 307 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +303 2 WILLIAM SATTERFIELD WILLIAM.SATTERFIELD@sakilacustomer.org 308 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +304 2 DAVID ROYAL DAVID.ROYAL@sakilacustomer.org 309 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +305 1 RICHARD MCCRARY RICHARD.MCCRARY@sakilacustomer.org 310 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +306 1 CHARLES KOWALSKI CHARLES.KOWALSKI@sakilacustomer.org 311 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +307 2 JOSEPH JOY JOSEPH.JOY@sakilacustomer.org 312 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +308 1 THOMAS GRIGSBY THOMAS.GRIGSBY@sakilacustomer.org 313 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +309 1 CHRISTOPHER GRECO CHRISTOPHER.GRECO@sakilacustomer.org 314 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +310 2 DANIEL CABRAL DANIEL.CABRAL@sakilacustomer.org 315 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +311 2 PAUL TROUT PAUL.TROUT@sakilacustomer.org 316 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +312 2 MARK RINEHART MARK.RINEHART@sakilacustomer.org 317 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +313 2 DONALD MAHON DONALD.MAHON@sakilacustomer.org 318 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +314 1 GEORGE LINTON GEORGE.LINTON@sakilacustomer.org 319 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +315 2 KENNETH GOODEN KENNETH.GOODEN@sakilacustomer.org 320 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +316 1 STEVEN CURLEY STEVEN.CURLEY@sakilacustomer.org 321 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +317 2 EDWARD BAUGH EDWARD.BAUGH@sakilacustomer.org 322 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +318 1 BRIAN WYMAN BRIAN.WYMAN@sakilacustomer.org 323 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +319 2 RONALD WEINER RONALD.WEINER@sakilacustomer.org 324 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +320 2 ANTHONY SCHWAB ANTHONY.SCHWAB@sakilacustomer.org 325 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +321 1 KEVIN SCHULER KEVIN.SCHULER@sakilacustomer.org 326 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +322 1 JASON MORRISSEY JASON.MORRISSEY@sakilacustomer.org 327 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +323 2 MATTHEW MAHAN MATTHEW.MAHAN@sakilacustomer.org 328 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +324 2 GARY COY GARY.COY@sakilacustomer.org 329 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +325 1 TIMOTHY BUNN TIMOTHY.BUNN@sakilacustomer.org 330 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +326 1 JOSE ANDREW JOSE.ANDREW@sakilacustomer.org 331 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +327 2 LARRY THRASHER LARRY.THRASHER@sakilacustomer.org 332 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +328 2 JEFFREY SPEAR JEFFREY.SPEAR@sakilacustomer.org 333 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +329 2 FRANK WAGGONER FRANK.WAGGONER@sakilacustomer.org 334 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +330 1 SCOTT SHELLEY SCOTT.SHELLEY@sakilacustomer.org 335 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +331 1 ERIC ROBERT ERIC.ROBERT@sakilacustomer.org 336 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +332 1 STEPHEN QUALLS STEPHEN.QUALLS@sakilacustomer.org 337 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +333 2 ANDREW PURDY ANDREW.PURDY@sakilacustomer.org 338 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +334 2 RAYMOND MCWHORTER RAYMOND.MCWHORTER@sakilacustomer.org 339 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +335 1 GREGORY MAULDIN GREGORY.MAULDIN@sakilacustomer.org 340 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +336 1 JOSHUA MARK JOSHUA.MARK@sakilacustomer.org 341 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +337 1 JERRY JORDON JERRY.JORDON@sakilacustomer.org 342 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +338 1 DENNIS GILMAN DENNIS.GILMAN@sakilacustomer.org 343 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +339 2 WALTER PERRYMAN WALTER.PERRYMAN@sakilacustomer.org 344 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +340 1 PATRICK NEWSOM PATRICK.NEWSOM@sakilacustomer.org 345 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +341 1 PETER MENARD PETER.MENARD@sakilacustomer.org 346 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +342 1 HAROLD MARTINO HAROLD.MARTINO@sakilacustomer.org 347 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +343 1 DOUGLAS GRAF DOUGLAS.GRAF@sakilacustomer.org 348 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +344 1 HENRY BILLINGSLEY HENRY.BILLINGSLEY@sakilacustomer.org 349 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +345 1 CARL ARTIS CARL.ARTIS@sakilacustomer.org 350 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +346 1 ARTHUR SIMPKINS ARTHUR.SIMPKINS@sakilacustomer.org 351 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +347 2 RYAN SALISBURY RYAN.SALISBURY@sakilacustomer.org 352 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +348 2 ROGER QUINTANILLA ROGER.QUINTANILLA@sakilacustomer.org 353 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +349 2 JOE GILLILAND JOE.GILLILAND@sakilacustomer.org 354 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +350 1 JUAN FRALEY JUAN.FRALEY@sakilacustomer.org 355 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +351 1 JACK FOUST JACK.FOUST@sakilacustomer.org 356 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +352 1 ALBERT CROUSE ALBERT.CROUSE@sakilacustomer.org 357 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +353 1 JONATHAN SCARBOROUGH JONATHAN.SCARBOROUGH@sakilacustomer.org 358 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +354 2 JUSTIN NGO JUSTIN.NGO@sakilacustomer.org 359 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +355 2 TERRY GRISSOM TERRY.GRISSOM@sakilacustomer.org 360 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +356 2 GERALD FULTZ GERALD.FULTZ@sakilacustomer.org 361 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +357 1 KEITH RICO KEITH.RICO@sakilacustomer.org 362 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +358 2 SAMUEL MARLOW SAMUEL.MARLOW@sakilacustomer.org 363 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +359 2 WILLIE MARKHAM WILLIE.MARKHAM@sakilacustomer.org 364 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +360 2 RALPH MADRIGAL RALPH.MADRIGAL@sakilacustomer.org 365 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +361 2 LAWRENCE LAWTON LAWRENCE.LAWTON@sakilacustomer.org 366 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +362 1 NICHOLAS BARFIELD NICHOLAS.BARFIELD@sakilacustomer.org 367 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +363 2 ROY WHITING ROY.WHITING@sakilacustomer.org 368 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +364 1 BENJAMIN VARNEY BENJAMIN.VARNEY@sakilacustomer.org 369 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +365 2 BRUCE SCHWARZ BRUCE.SCHWARZ@sakilacustomer.org 370 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +366 1 BRANDON HUEY BRANDON.HUEY@sakilacustomer.org 371 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +367 1 ADAM GOOCH ADAM.GOOCH@sakilacustomer.org 372 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +368 1 HARRY ARCE HARRY.ARCE@sakilacustomer.org 373 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +369 2 FRED WHEAT FRED.WHEAT@sakilacustomer.org 374 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +370 2 WAYNE TRUONG WAYNE.TRUONG@sakilacustomer.org 375 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +371 1 BILLY POULIN BILLY.POULIN@sakilacustomer.org 376 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +372 2 STEVE MACKENZIE STEVE.MACKENZIE@sakilacustomer.org 377 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +373 1 LOUIS LEONE LOUIS.LEONE@sakilacustomer.org 378 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +374 2 JEREMY HURTADO JEREMY.HURTADO@sakilacustomer.org 379 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +375 2 AARON SELBY AARON.SELBY@sakilacustomer.org 380 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +376 1 RANDY GAITHER RANDY.GAITHER@sakilacustomer.org 381 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +377 1 HOWARD FORTNER HOWARD.FORTNER@sakilacustomer.org 382 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +378 1 EUGENE CULPEPPER EUGENE.CULPEPPER@sakilacustomer.org 383 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +379 1 CARLOS COUGHLIN CARLOS.COUGHLIN@sakilacustomer.org 384 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +380 1 RUSSELL BRINSON RUSSELL.BRINSON@sakilacustomer.org 385 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +381 2 BOBBY BOUDREAU BOBBY.BOUDREAU@sakilacustomer.org 386 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +382 2 VICTOR BARKLEY VICTOR.BARKLEY@sakilacustomer.org 387 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +383 1 MARTIN BALES MARTIN.BALES@sakilacustomer.org 388 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +384 2 ERNEST STEPP ERNEST.STEPP@sakilacustomer.org 389 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +385 1 PHILLIP HOLM PHILLIP.HOLM@sakilacustomer.org 390 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +386 1 TODD TAN TODD.TAN@sakilacustomer.org 391 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +387 2 JESSE SCHILLING JESSE.SCHILLING@sakilacustomer.org 392 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +388 2 CRAIG MORRELL CRAIG.MORRELL@sakilacustomer.org 393 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +389 1 ALAN KAHN ALAN.KAHN@sakilacustomer.org 394 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +390 1 SHAWN HEATON SHAWN.HEATON@sakilacustomer.org 395 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +391 1 CLARENCE GAMEZ CLARENCE.GAMEZ@sakilacustomer.org 396 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +392 2 SEAN DOUGLASS SEAN.DOUGLASS@sakilacustomer.org 397 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +393 1 PHILIP CAUSEY PHILIP.CAUSEY@sakilacustomer.org 398 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +394 2 CHRIS BROTHERS CHRIS.BROTHERS@sakilacustomer.org 399 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +395 2 JOHNNY TURPIN JOHNNY.TURPIN@sakilacustomer.org 400 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +396 1 EARL SHANKS EARL.SHANKS@sakilacustomer.org 401 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +397 1 JIMMY SCHRADER JIMMY.SCHRADER@sakilacustomer.org 402 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +398 1 ANTONIO MEEK ANTONIO.MEEK@sakilacustomer.org 403 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +399 1 DANNY ISOM DANNY.ISOM@sakilacustomer.org 404 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +400 2 BRYAN HARDISON BRYAN.HARDISON@sakilacustomer.org 405 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +401 2 TONY CARRANZA TONY.CARRANZA@sakilacustomer.org 406 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +402 1 LUIS YANEZ LUIS.YANEZ@sakilacustomer.org 407 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +403 1 MIKE WAY MIKE.WAY@sakilacustomer.org 408 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +404 2 STANLEY SCROGGINS STANLEY.SCROGGINS@sakilacustomer.org 409 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +405 1 LEONARD SCHOFIELD LEONARD.SCHOFIELD@sakilacustomer.org 410 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +406 1 NATHAN RUNYON NATHAN.RUNYON@sakilacustomer.org 411 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +407 1 DALE RATCLIFF DALE.RATCLIFF@sakilacustomer.org 412 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +408 1 MANUEL MURRELL MANUEL.MURRELL@sakilacustomer.org 413 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +409 2 RODNEY MOELLER RODNEY.MOELLER@sakilacustomer.org 414 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +410 2 CURTIS IRBY CURTIS.IRBY@sakilacustomer.org 415 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +411 1 NORMAN CURRIER NORMAN.CURRIER@sakilacustomer.org 416 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +412 2 ALLEN BUTTERFIELD ALLEN.BUTTERFIELD@sakilacustomer.org 417 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +413 2 MARVIN YEE MARVIN.YEE@sakilacustomer.org 418 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +414 1 VINCENT RALSTON VINCENT.RALSTON@sakilacustomer.org 419 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +415 1 GLENN PULLEN GLENN.PULLEN@sakilacustomer.org 420 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +416 2 JEFFERY PINSON JEFFERY.PINSON@sakilacustomer.org 421 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +417 1 TRAVIS ESTEP TRAVIS.ESTEP@sakilacustomer.org 422 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +418 2 JEFF EAST JEFF.EAST@sakilacustomer.org 423 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +419 1 CHAD CARBONE CHAD.CARBONE@sakilacustomer.org 424 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +420 1 JACOB LANCE JACOB.LANCE@sakilacustomer.org 425 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +421 1 LEE HAWKS LEE.HAWKS@sakilacustomer.org 426 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +422 1 MELVIN ELLINGTON MELVIN.ELLINGTON@sakilacustomer.org 427 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +423 2 ALFRED CASILLAS ALFRED.CASILLAS@sakilacustomer.org 428 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +424 2 KYLE SPURLOCK KYLE.SPURLOCK@sakilacustomer.org 429 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +425 2 FRANCIS SIKES FRANCIS.SIKES@sakilacustomer.org 430 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +426 1 BRADLEY MOTLEY BRADLEY.MOTLEY@sakilacustomer.org 431 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +427 2 JESUS MCCARTNEY JESUS.MCCARTNEY@sakilacustomer.org 432 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +428 2 HERBERT KRUGER HERBERT.KRUGER@sakilacustomer.org 433 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +429 2 FREDERICK ISBELL FREDERICK.ISBELL@sakilacustomer.org 434 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +430 1 RAY HOULE RAY.HOULE@sakilacustomer.org 435 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +431 2 JOEL FRANCISCO JOEL.FRANCISCO@sakilacustomer.org 436 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +432 1 EDWIN BURK EDWIN.BURK@sakilacustomer.org 437 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +433 1 DON BONE DON.BONE@sakilacustomer.org 438 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +434 1 EDDIE TOMLIN EDDIE.TOMLIN@sakilacustomer.org 439 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +435 2 RICKY SHELBY RICKY.SHELBY@sakilacustomer.org 440 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +436 1 TROY QUIGLEY TROY.QUIGLEY@sakilacustomer.org 441 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +437 2 RANDALL NEUMANN RANDALL.NEUMANN@sakilacustomer.org 442 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +438 1 BARRY LOVELACE BARRY.LOVELACE@sakilacustomer.org 443 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +439 2 ALEXANDER FENNELL ALEXANDER.FENNELL@sakilacustomer.org 444 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +440 1 BERNARD COLBY BERNARD.COLBY@sakilacustomer.org 445 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +441 1 MARIO CHEATHAM MARIO.CHEATHAM@sakilacustomer.org 446 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +442 1 LEROY BUSTAMANTE LEROY.BUSTAMANTE@sakilacustomer.org 447 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +443 2 FRANCISCO SKIDMORE FRANCISCO.SKIDMORE@sakilacustomer.org 448 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +444 2 MARCUS HIDALGO MARCUS.HIDALGO@sakilacustomer.org 449 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +445 1 MICHEAL FORMAN MICHEAL.FORMAN@sakilacustomer.org 450 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +446 2 THEODORE CULP THEODORE.CULP@sakilacustomer.org 451 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +447 1 CLIFFORD BOWENS CLIFFORD.BOWENS@sakilacustomer.org 452 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +448 1 MIGUEL BETANCOURT MIGUEL.BETANCOURT@sakilacustomer.org 453 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +449 2 OSCAR AQUINO OSCAR.AQUINO@sakilacustomer.org 454 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +450 1 JAY ROBB JAY.ROBB@sakilacustomer.org 455 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +451 1 JIM REA JIM.REA@sakilacustomer.org 456 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +452 1 TOM MILNER TOM.MILNER@sakilacustomer.org 457 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +453 1 CALVIN MARTEL CALVIN.MARTEL@sakilacustomer.org 458 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +454 2 ALEX GRESHAM ALEX.GRESHAM@sakilacustomer.org 459 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +455 2 JON WILES JON.WILES@sakilacustomer.org 460 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +456 2 RONNIE RICKETTS RONNIE.RICKETTS@sakilacustomer.org 461 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +457 2 BILL GAVIN BILL.GAVIN@sakilacustomer.org 462 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +458 1 LLOYD DOWD LLOYD.DOWD@sakilacustomer.org 463 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +459 1 TOMMY COLLAZO TOMMY.COLLAZO@sakilacustomer.org 464 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +460 1 LEON BOSTIC LEON.BOSTIC@sakilacustomer.org 465 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +461 1 DEREK BLAKELY DEREK.BLAKELY@sakilacustomer.org 466 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +462 2 WARREN SHERROD WARREN.SHERROD@sakilacustomer.org 467 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +463 2 DARRELL POWER DARRELL.POWER@sakilacustomer.org 468 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +464 1 JEROME KENYON JEROME.KENYON@sakilacustomer.org 469 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +465 1 FLOYD GANDY FLOYD.GANDY@sakilacustomer.org 470 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +466 1 LEO EBERT LEO.EBERT@sakilacustomer.org 471 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +467 2 ALVIN DELOACH ALVIN.DELOACH@sakilacustomer.org 472 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +468 1 TIM CARY TIM.CARY@sakilacustomer.org 473 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +469 2 WESLEY BULL WESLEY.BULL@sakilacustomer.org 474 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +470 1 GORDON ALLARD GORDON.ALLARD@sakilacustomer.org 475 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +471 1 DEAN SAUER DEAN.SAUER@sakilacustomer.org 476 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +472 1 GREG ROBINS GREG.ROBINS@sakilacustomer.org 477 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +473 2 JORGE OLIVARES JORGE.OLIVARES@sakilacustomer.org 478 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +474 2 DUSTIN GILLETTE DUSTIN.GILLETTE@sakilacustomer.org 479 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +475 2 PEDRO CHESTNUT PEDRO.CHESTNUT@sakilacustomer.org 480 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +476 1 DERRICK BOURQUE DERRICK.BOURQUE@sakilacustomer.org 481 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +477 1 DAN PAINE DAN.PAINE@sakilacustomer.org 482 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +478 1 LEWIS LYMAN LEWIS.LYMAN@sakilacustomer.org 483 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +479 1 ZACHARY HITE ZACHARY.HITE@sakilacustomer.org 484 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +480 1 COREY HAUSER COREY.HAUSER@sakilacustomer.org 485 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +481 1 HERMAN DEVORE HERMAN.DEVORE@sakilacustomer.org 486 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +482 1 MAURICE CRAWLEY MAURICE.CRAWLEY@sakilacustomer.org 487 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +483 2 VERNON CHAPA VERNON.CHAPA@sakilacustomer.org 488 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +484 1 ROBERTO VU ROBERTO.VU@sakilacustomer.org 489 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +485 1 CLYDE TOBIAS CLYDE.TOBIAS@sakilacustomer.org 490 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +486 1 GLEN TALBERT GLEN.TALBERT@sakilacustomer.org 491 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +487 2 HECTOR POINDEXTER HECTOR.POINDEXTER@sakilacustomer.org 492 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +488 2 SHANE MILLARD SHANE.MILLARD@sakilacustomer.org 493 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +489 1 RICARDO MEADOR RICARDO.MEADOR@sakilacustomer.org 494 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +490 1 SAM MCDUFFIE SAM.MCDUFFIE@sakilacustomer.org 495 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +491 2 RICK MATTOX RICK.MATTOX@sakilacustomer.org 496 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +492 2 LESTER KRAUS LESTER.KRAUS@sakilacustomer.org 497 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +493 1 BRENT HARKINS BRENT.HARKINS@sakilacustomer.org 498 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +494 2 RAMON CHOATE RAMON.CHOATE@sakilacustomer.org 499 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +495 2 CHARLIE BESS CHARLIE.BESS@sakilacustomer.org 500 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +496 2 TYLER WREN TYLER.WREN@sakilacustomer.org 501 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +497 2 GILBERT SLEDGE GILBERT.SLEDGE@sakilacustomer.org 502 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +498 1 GENE SANBORN GENE.SANBORN@sakilacustomer.org 503 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +499 2 MARC OUTLAW MARC.OUTLAW@sakilacustomer.org 504 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +500 1 REGINALD KINDER REGINALD.KINDER@sakilacustomer.org 505 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +501 1 RUBEN GEARY RUBEN.GEARY@sakilacustomer.org 506 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +502 1 BRETT CORNWELL BRETT.CORNWELL@sakilacustomer.org 507 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +503 1 ANGEL BARCLAY ANGEL.BARCLAY@sakilacustomer.org 508 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +504 1 NATHANIEL ADAM NATHANIEL.ADAM@sakilacustomer.org 509 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +505 1 RAFAEL ABNEY RAFAEL.ABNEY@sakilacustomer.org 510 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +506 2 LESLIE SEWARD LESLIE.SEWARD@sakilacustomer.org 511 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +507 2 EDGAR RHOADS EDGAR.RHOADS@sakilacustomer.org 512 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +508 2 MILTON HOWLAND MILTON.HOWLAND@sakilacustomer.org 513 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +509 1 RAUL FORTIER RAUL.FORTIER@sakilacustomer.org 514 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +510 2 BEN EASTER BEN.EASTER@sakilacustomer.org 515 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +511 1 CHESTER BENNER CHESTER.BENNER@sakilacustomer.org 516 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +512 1 CECIL VINES CECIL.VINES@sakilacustomer.org 517 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +513 2 DUANE TUBBS DUANE.TUBBS@sakilacustomer.org 519 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +514 2 FRANKLIN TROUTMAN FRANKLIN.TROUTMAN@sakilacustomer.org 520 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +515 1 ANDRE RAPP ANDRE.RAPP@sakilacustomer.org 521 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +516 2 ELMER NOE ELMER.NOE@sakilacustomer.org 522 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +517 2 BRAD MCCURDY BRAD.MCCURDY@sakilacustomer.org 523 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +518 1 GABRIEL HARDER GABRIEL.HARDER@sakilacustomer.org 524 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +519 2 RON DELUCA RON.DELUCA@sakilacustomer.org 525 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +520 2 MITCHELL WESTMORELAND MITCHELL.WESTMORELAND@sakilacustomer.org 526 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +521 2 ROLAND SOUTH ROLAND.SOUTH@sakilacustomer.org 527 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +522 2 ARNOLD HAVENS ARNOLD.HAVENS@sakilacustomer.org 528 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +523 1 HARVEY GUAJARDO HARVEY.GUAJARDO@sakilacustomer.org 529 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +524 1 JARED ELY JARED.ELY@sakilacustomer.org 530 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +525 2 ADRIAN CLARY ADRIAN.CLARY@sakilacustomer.org 531 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +526 2 KARL SEAL KARL.SEAL@sakilacustomer.org 532 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +527 1 CORY MEEHAN CORY.MEEHAN@sakilacustomer.org 533 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +528 1 CLAUDE HERZOG CLAUDE.HERZOG@sakilacustomer.org 534 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +529 2 ERIK GUILLEN ERIK.GUILLEN@sakilacustomer.org 535 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +530 2 DARRYL ASHCRAFT DARRYL.ASHCRAFT@sakilacustomer.org 536 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +531 2 JAMIE WAUGH JAMIE.WAUGH@sakilacustomer.org 537 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +532 2 NEIL RENNER NEIL.RENNER@sakilacustomer.org 538 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +533 1 JESSIE MILAM JESSIE.MILAM@sakilacustomer.org 539 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +534 1 CHRISTIAN JUNG CHRISTIAN.JUNG@sakilacustomer.org 540 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +535 1 JAVIER ELROD JAVIER.ELROD@sakilacustomer.org 541 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +536 2 FERNANDO CHURCHILL FERNANDO.CHURCHILL@sakilacustomer.org 542 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +537 2 CLINTON BUFORD CLINTON.BUFORD@sakilacustomer.org 543 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +538 2 TED BREAUX TED.BREAUX@sakilacustomer.org 544 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +539 1 MATHEW BOLIN MATHEW.BOLIN@sakilacustomer.org 545 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +540 1 TYRONE ASHER TYRONE.ASHER@sakilacustomer.org 546 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +541 2 DARREN WINDHAM DARREN.WINDHAM@sakilacustomer.org 547 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +542 2 LONNIE TIRADO LONNIE.TIRADO@sakilacustomer.org 548 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +543 1 LANCE PEMBERTON LANCE.PEMBERTON@sakilacustomer.org 549 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +544 2 CODY NOLEN CODY.NOLEN@sakilacustomer.org 550 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +545 2 JULIO NOLAND JULIO.NOLAND@sakilacustomer.org 551 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +546 1 KELLY KNOTT KELLY.KNOTT@sakilacustomer.org 552 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +547 1 KURT EMMONS KURT.EMMONS@sakilacustomer.org 553 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +548 1 ALLAN CORNISH ALLAN.CORNISH@sakilacustomer.org 554 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +549 1 NELSON CHRISTENSON NELSON.CHRISTENSON@sakilacustomer.org 555 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +550 2 GUY BROWNLEE GUY.BROWNLEE@sakilacustomer.org 556 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +551 2 CLAYTON BARBEE CLAYTON.BARBEE@sakilacustomer.org 557 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +552 2 HUGH WALDROP HUGH.WALDROP@sakilacustomer.org 558 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +553 1 MAX PITT MAX.PITT@sakilacustomer.org 559 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +554 1 DWAYNE OLVERA DWAYNE.OLVERA@sakilacustomer.org 560 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +555 1 DWIGHT LOMBARDI DWIGHT.LOMBARDI@sakilacustomer.org 561 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +556 2 ARMANDO GRUBER ARMANDO.GRUBER@sakilacustomer.org 562 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +557 1 FELIX GAFFNEY FELIX.GAFFNEY@sakilacustomer.org 563 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +558 1 JIMMIE EGGLESTON JIMMIE.EGGLESTON@sakilacustomer.org 564 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +559 2 EVERETT BANDA EVERETT.BANDA@sakilacustomer.org 565 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +560 1 JORDAN ARCHULETA JORDAN.ARCHULETA@sakilacustomer.org 566 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +561 2 IAN STILL IAN.STILL@sakilacustomer.org 567 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +562 1 WALLACE SLONE WALLACE.SLONE@sakilacustomer.org 568 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +563 2 KEN PREWITT KEN.PREWITT@sakilacustomer.org 569 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +564 2 BOB PFEIFFER BOB.PFEIFFER@sakilacustomer.org 570 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +565 2 JAIME NETTLES JAIME.NETTLES@sakilacustomer.org 571 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +566 1 CASEY MENA CASEY.MENA@sakilacustomer.org 572 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +567 2 ALFREDO MCADAMS ALFREDO.MCADAMS@sakilacustomer.org 573 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +568 2 ALBERTO HENNING ALBERTO.HENNING@sakilacustomer.org 574 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +569 2 DAVE GARDINER DAVE.GARDINER@sakilacustomer.org 575 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +570 2 IVAN CROMWELL IVAN.CROMWELL@sakilacustomer.org 576 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +571 2 JOHNNIE CHISHOLM JOHNNIE.CHISHOLM@sakilacustomer.org 577 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +572 1 SIDNEY BURLESON SIDNEY.BURLESON@sakilacustomer.org 578 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +573 1 BYRON BOX BYRON.BOX@sakilacustomer.org 579 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +574 2 JULIAN VEST JULIAN.VEST@sakilacustomer.org 580 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +575 2 ISAAC OGLESBY ISAAC.OGLESBY@sakilacustomer.org 581 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +576 2 MORRIS MCCARTER MORRIS.MCCARTER@sakilacustomer.org 582 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +577 2 CLIFTON MALCOLM CLIFTON.MALCOLM@sakilacustomer.org 583 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +578 2 WILLARD LUMPKIN WILLARD.LUMPKIN@sakilacustomer.org 584 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +579 2 DARYL LARUE DARYL.LARUE@sakilacustomer.org 585 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +580 1 ROSS GREY ROSS.GREY@sakilacustomer.org 586 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +581 1 VIRGIL WOFFORD VIRGIL.WOFFORD@sakilacustomer.org 587 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +582 2 ANDY VANHORN ANDY.VANHORN@sakilacustomer.org 588 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +583 1 MARSHALL THORN MARSHALL.THORN@sakilacustomer.org 589 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +584 2 SALVADOR TEEL SALVADOR.TEEL@sakilacustomer.org 590 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +585 1 PERRY SWAFFORD PERRY.SWAFFORD@sakilacustomer.org 591 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +586 1 KIRK STCLAIR KIRK.STCLAIR@sakilacustomer.org 592 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +587 1 SERGIO STANFIELD SERGIO.STANFIELD@sakilacustomer.org 593 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +588 1 MARION OCAMPO MARION.OCAMPO@sakilacustomer.org 594 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +589 1 TRACY HERRMANN TRACY.HERRMANN@sakilacustomer.org 595 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +590 2 SETH HANNON SETH.HANNON@sakilacustomer.org 596 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +591 1 KENT ARSENAULT KENT.ARSENAULT@sakilacustomer.org 597 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +592 1 TERRANCE ROUSH TERRANCE.ROUSH@sakilacustomer.org 598 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +593 2 RENE MCALISTER RENE.MCALISTER@sakilacustomer.org 599 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +594 1 EDUARDO HIATT EDUARDO.HIATT@sakilacustomer.org 600 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +595 1 TERRENCE GUNDERSON TERRENCE.GUNDERSON@sakilacustomer.org 601 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +596 1 ENRIQUE FORSYTHE ENRIQUE.FORSYTHE@sakilacustomer.org 602 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +597 1 FREDDIE DUGGAN FREDDIE.DUGGAN@sakilacustomer.org 603 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +598 1 WADE DELVALLE WADE.DELVALLE@sakilacustomer.org 604 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +599 2 AUSTIN CINTRON AUSTIN.CINTRON@sakilacustomer.org 605 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/film.tsv b/drivers/csv/testdata/sakila-tsv-noheader/film.tsv new file mode 100644 index 00000000..0f1cf4d8 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/film.tsv @@ -0,0 +1,1000 @@ +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/film_actor.tsv b/drivers/csv/testdata/sakila-tsv-noheader/film_actor.tsv new file mode 100644 index 00000000..9890d02e --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/film_actor.tsv @@ -0,0 +1,5462 @@ +1 1 2020-02-15T06:59:32Z +1 23 2020-02-15T06:59:32Z +1 25 2020-02-15T06:59:32Z +1 106 2020-02-15T06:59:32Z +1 140 2020-02-15T06:59:32Z +1 166 2020-02-15T06:59:32Z +1 277 2020-02-15T06:59:32Z +1 361 2020-02-15T06:59:32Z +1 438 2020-02-15T06:59:32Z +1 499 2020-02-15T06:59:32Z +1 506 2020-02-15T06:59:32Z +1 509 2020-02-15T06:59:32Z +1 605 2020-02-15T06:59:32Z +1 635 2020-02-15T06:59:32Z +1 749 2020-02-15T06:59:32Z +1 832 2020-02-15T06:59:32Z +1 939 2020-02-15T06:59:32Z +1 970 2020-02-15T06:59:32Z +1 980 2020-02-15T06:59:32Z +2 3 2020-02-15T06:59:32Z +2 31 2020-02-15T06:59:32Z +2 47 2020-02-15T06:59:32Z +2 105 2020-02-15T06:59:32Z +2 132 2020-02-15T06:59:32Z +2 145 2020-02-15T06:59:32Z +2 226 2020-02-15T06:59:32Z +2 249 2020-02-15T06:59:32Z +2 314 2020-02-15T06:59:32Z +2 321 2020-02-15T06:59:32Z +2 357 2020-02-15T06:59:32Z +2 369 2020-02-15T06:59:32Z +2 399 2020-02-15T06:59:32Z +2 458 2020-02-15T06:59:32Z +2 481 2020-02-15T06:59:32Z +2 485 2020-02-15T06:59:32Z +2 518 2020-02-15T06:59:32Z +2 540 2020-02-15T06:59:32Z +2 550 2020-02-15T06:59:32Z +2 555 2020-02-15T06:59:32Z +2 561 2020-02-15T06:59:32Z +2 742 2020-02-15T06:59:32Z +2 754 2020-02-15T06:59:32Z +2 811 2020-02-15T06:59:32Z +2 958 2020-02-15T06:59:32Z +3 17 2020-02-15T06:59:32Z +3 40 2020-02-15T06:59:32Z +3 42 2020-02-15T06:59:32Z +3 87 2020-02-15T06:59:32Z +3 111 2020-02-15T06:59:32Z +3 185 2020-02-15T06:59:32Z +3 289 2020-02-15T06:59:32Z +3 329 2020-02-15T06:59:32Z +3 336 2020-02-15T06:59:32Z +3 341 2020-02-15T06:59:32Z +3 393 2020-02-15T06:59:32Z +3 441 2020-02-15T06:59:32Z +3 453 2020-02-15T06:59:32Z +3 480 2020-02-15T06:59:32Z +3 539 2020-02-15T06:59:32Z +3 618 2020-02-15T06:59:32Z +3 685 2020-02-15T06:59:32Z +3 827 2020-02-15T06:59:32Z +3 966 2020-02-15T06:59:32Z +3 967 2020-02-15T06:59:32Z +3 971 2020-02-15T06:59:32Z +3 996 2020-02-15T06:59:32Z +4 23 2020-02-15T06:59:32Z +4 25 2020-02-15T06:59:32Z +4 56 2020-02-15T06:59:32Z +4 62 2020-02-15T06:59:32Z +4 79 2020-02-15T06:59:32Z +4 87 2020-02-15T06:59:32Z +4 355 2020-02-15T06:59:32Z +4 379 2020-02-15T06:59:32Z +4 398 2020-02-15T06:59:32Z +4 463 2020-02-15T06:59:32Z +4 490 2020-02-15T06:59:32Z +4 616 2020-02-15T06:59:32Z +4 635 2020-02-15T06:59:32Z +4 691 2020-02-15T06:59:32Z +4 712 2020-02-15T06:59:32Z +4 714 2020-02-15T06:59:32Z +4 721 2020-02-15T06:59:32Z +4 798 2020-02-15T06:59:32Z +4 832 2020-02-15T06:59:32Z +4 858 2020-02-15T06:59:32Z +4 909 2020-02-15T06:59:32Z +4 924 2020-02-15T06:59:32Z +5 19 2020-02-15T06:59:32Z +5 54 2020-02-15T06:59:32Z +5 85 2020-02-15T06:59:32Z +5 146 2020-02-15T06:59:32Z +5 171 2020-02-15T06:59:32Z +5 172 2020-02-15T06:59:32Z +5 202 2020-02-15T06:59:32Z +5 203 2020-02-15T06:59:32Z +5 286 2020-02-15T06:59:32Z +5 288 2020-02-15T06:59:32Z +5 316 2020-02-15T06:59:32Z +5 340 2020-02-15T06:59:32Z +5 369 2020-02-15T06:59:32Z +5 375 2020-02-15T06:59:32Z +5 383 2020-02-15T06:59:32Z +5 392 2020-02-15T06:59:32Z +5 411 2020-02-15T06:59:32Z +5 503 2020-02-15T06:59:32Z +5 535 2020-02-15T06:59:32Z +5 571 2020-02-15T06:59:32Z +5 650 2020-02-15T06:59:32Z +5 665 2020-02-15T06:59:32Z +5 687 2020-02-15T06:59:32Z +5 730 2020-02-15T06:59:32Z +5 732 2020-02-15T06:59:32Z +5 811 2020-02-15T06:59:32Z +5 817 2020-02-15T06:59:32Z +5 841 2020-02-15T06:59:32Z +5 865 2020-02-15T06:59:32Z +6 29 2020-02-15T06:59:32Z +6 53 2020-02-15T06:59:32Z +6 60 2020-02-15T06:59:32Z +6 70 2020-02-15T06:59:32Z +6 112 2020-02-15T06:59:32Z +6 164 2020-02-15T06:59:32Z +6 165 2020-02-15T06:59:32Z +6 193 2020-02-15T06:59:32Z +6 256 2020-02-15T06:59:32Z +6 451 2020-02-15T06:59:32Z +6 503 2020-02-15T06:59:32Z +6 509 2020-02-15T06:59:32Z +6 517 2020-02-15T06:59:32Z +6 519 2020-02-15T06:59:32Z +6 605 2020-02-15T06:59:32Z +6 692 2020-02-15T06:59:32Z +6 826 2020-02-15T06:59:32Z +6 892 2020-02-15T06:59:32Z +6 902 2020-02-15T06:59:32Z +6 994 2020-02-15T06:59:32Z +7 25 2020-02-15T06:59:32Z +7 27 2020-02-15T06:59:32Z +7 35 2020-02-15T06:59:32Z +7 67 2020-02-15T06:59:32Z +7 96 2020-02-15T06:59:32Z +7 170 2020-02-15T06:59:32Z +7 173 2020-02-15T06:59:32Z +7 217 2020-02-15T06:59:32Z +7 218 2020-02-15T06:59:32Z +7 225 2020-02-15T06:59:32Z +7 292 2020-02-15T06:59:32Z +7 351 2020-02-15T06:59:32Z +7 414 2020-02-15T06:59:32Z +7 463 2020-02-15T06:59:32Z +7 554 2020-02-15T06:59:32Z +7 618 2020-02-15T06:59:32Z +7 633 2020-02-15T06:59:32Z +7 637 2020-02-15T06:59:32Z +7 691 2020-02-15T06:59:32Z +7 758 2020-02-15T06:59:32Z +7 766 2020-02-15T06:59:32Z +7 770 2020-02-15T06:59:32Z +7 805 2020-02-15T06:59:32Z +7 806 2020-02-15T06:59:32Z +7 846 2020-02-15T06:59:32Z +7 900 2020-02-15T06:59:32Z +7 901 2020-02-15T06:59:32Z +7 910 2020-02-15T06:59:32Z +7 957 2020-02-15T06:59:32Z +7 959 2020-02-15T06:59:32Z +8 47 2020-02-15T06:59:32Z +8 115 2020-02-15T06:59:32Z +8 158 2020-02-15T06:59:32Z +8 179 2020-02-15T06:59:32Z +8 195 2020-02-15T06:59:32Z +8 205 2020-02-15T06:59:32Z +8 255 2020-02-15T06:59:32Z +8 263 2020-02-15T06:59:32Z +8 321 2020-02-15T06:59:32Z +8 396 2020-02-15T06:59:32Z +8 458 2020-02-15T06:59:32Z +8 523 2020-02-15T06:59:32Z +8 532 2020-02-15T06:59:32Z +8 554 2020-02-15T06:59:32Z +8 752 2020-02-15T06:59:32Z +8 769 2020-02-15T06:59:32Z +8 771 2020-02-15T06:59:32Z +8 859 2020-02-15T06:59:32Z +8 895 2020-02-15T06:59:32Z +8 936 2020-02-15T06:59:32Z +9 30 2020-02-15T06:59:32Z +9 74 2020-02-15T06:59:32Z +9 147 2020-02-15T06:59:32Z +9 148 2020-02-15T06:59:32Z +9 191 2020-02-15T06:59:32Z +9 200 2020-02-15T06:59:32Z +9 204 2020-02-15T06:59:32Z +9 434 2020-02-15T06:59:32Z +9 510 2020-02-15T06:59:32Z +9 514 2020-02-15T06:59:32Z +9 552 2020-02-15T06:59:32Z +9 650 2020-02-15T06:59:32Z +9 671 2020-02-15T06:59:32Z +9 697 2020-02-15T06:59:32Z +9 722 2020-02-15T06:59:32Z +9 752 2020-02-15T06:59:32Z +9 811 2020-02-15T06:59:32Z +9 815 2020-02-15T06:59:32Z +9 865 2020-02-15T06:59:32Z +9 873 2020-02-15T06:59:32Z +9 889 2020-02-15T06:59:32Z +9 903 2020-02-15T06:59:32Z +9 926 2020-02-15T06:59:32Z +9 964 2020-02-15T06:59:32Z +9 974 2020-02-15T06:59:32Z +10 1 2020-02-15T06:59:32Z +10 9 2020-02-15T06:59:32Z +10 191 2020-02-15T06:59:32Z +10 236 2020-02-15T06:59:32Z +10 251 2020-02-15T06:59:32Z +10 366 2020-02-15T06:59:32Z +10 477 2020-02-15T06:59:32Z +10 480 2020-02-15T06:59:32Z +10 522 2020-02-15T06:59:32Z +10 530 2020-02-15T06:59:32Z +10 587 2020-02-15T06:59:32Z +10 694 2020-02-15T06:59:32Z +10 703 2020-02-15T06:59:32Z +10 716 2020-02-15T06:59:32Z +10 782 2020-02-15T06:59:32Z +10 914 2020-02-15T06:59:32Z +10 929 2020-02-15T06:59:32Z +10 930 2020-02-15T06:59:32Z +10 964 2020-02-15T06:59:32Z +10 966 2020-02-15T06:59:32Z +10 980 2020-02-15T06:59:32Z +10 983 2020-02-15T06:59:32Z +11 118 2020-02-15T06:59:32Z +11 205 2020-02-15T06:59:32Z +11 281 2020-02-15T06:59:32Z +11 283 2020-02-15T06:59:32Z +11 348 2020-02-15T06:59:32Z +11 364 2020-02-15T06:59:32Z +11 395 2020-02-15T06:59:32Z +11 429 2020-02-15T06:59:32Z +11 433 2020-02-15T06:59:32Z +11 453 2020-02-15T06:59:32Z +11 485 2020-02-15T06:59:32Z +11 532 2020-02-15T06:59:32Z +11 567 2020-02-15T06:59:32Z +11 587 2020-02-15T06:59:32Z +11 597 2020-02-15T06:59:32Z +11 636 2020-02-15T06:59:32Z +11 709 2020-02-15T06:59:32Z +11 850 2020-02-15T06:59:32Z +11 854 2020-02-15T06:59:32Z +11 888 2020-02-15T06:59:32Z +11 896 2020-02-15T06:59:32Z +11 928 2020-02-15T06:59:32Z +11 938 2020-02-15T06:59:32Z +11 969 2020-02-15T06:59:32Z +11 988 2020-02-15T06:59:32Z +12 16 2020-02-15T06:59:32Z +12 17 2020-02-15T06:59:32Z +12 34 2020-02-15T06:59:32Z +12 37 2020-02-15T06:59:32Z +12 91 2020-02-15T06:59:32Z +12 92 2020-02-15T06:59:32Z +12 107 2020-02-15T06:59:32Z +12 155 2020-02-15T06:59:32Z +12 177 2020-02-15T06:59:32Z +12 208 2020-02-15T06:59:32Z +12 213 2020-02-15T06:59:32Z +12 216 2020-02-15T06:59:32Z +12 243 2020-02-15T06:59:32Z +12 344 2020-02-15T06:59:32Z +12 400 2020-02-15T06:59:32Z +12 416 2020-02-15T06:59:32Z +12 420 2020-02-15T06:59:32Z +12 457 2020-02-15T06:59:32Z +12 513 2020-02-15T06:59:32Z +12 540 2020-02-15T06:59:32Z +12 593 2020-02-15T06:59:32Z +12 631 2020-02-15T06:59:32Z +12 635 2020-02-15T06:59:32Z +12 672 2020-02-15T06:59:32Z +12 716 2020-02-15T06:59:32Z +12 728 2020-02-15T06:59:32Z +12 812 2020-02-15T06:59:32Z +12 838 2020-02-15T06:59:32Z +12 871 2020-02-15T06:59:32Z +12 880 2020-02-15T06:59:32Z +12 945 2020-02-15T06:59:32Z +13 17 2020-02-15T06:59:32Z +13 29 2020-02-15T06:59:32Z +13 45 2020-02-15T06:59:32Z +13 87 2020-02-15T06:59:32Z +13 110 2020-02-15T06:59:32Z +13 144 2020-02-15T06:59:32Z +13 154 2020-02-15T06:59:32Z +13 162 2020-02-15T06:59:32Z +13 203 2020-02-15T06:59:32Z +13 254 2020-02-15T06:59:32Z +13 337 2020-02-15T06:59:32Z +13 346 2020-02-15T06:59:32Z +13 381 2020-02-15T06:59:32Z +13 385 2020-02-15T06:59:32Z +13 427 2020-02-15T06:59:32Z +13 456 2020-02-15T06:59:32Z +13 513 2020-02-15T06:59:32Z +13 515 2020-02-15T06:59:32Z +13 522 2020-02-15T06:59:32Z +13 524 2020-02-15T06:59:32Z +13 528 2020-02-15T06:59:32Z +13 571 2020-02-15T06:59:32Z +13 588 2020-02-15T06:59:32Z +13 597 2020-02-15T06:59:32Z +13 600 2020-02-15T06:59:32Z +13 718 2020-02-15T06:59:32Z +13 729 2020-02-15T06:59:32Z +13 816 2020-02-15T06:59:32Z +13 817 2020-02-15T06:59:32Z +13 832 2020-02-15T06:59:32Z +13 833 2020-02-15T06:59:32Z +13 843 2020-02-15T06:59:32Z +13 897 2020-02-15T06:59:32Z +13 966 2020-02-15T06:59:32Z +13 998 2020-02-15T06:59:32Z +14 154 2020-02-15T06:59:32Z +14 187 2020-02-15T06:59:32Z +14 232 2020-02-15T06:59:32Z +14 241 2020-02-15T06:59:32Z +14 253 2020-02-15T06:59:32Z +14 255 2020-02-15T06:59:32Z +14 258 2020-02-15T06:59:32Z +14 284 2020-02-15T06:59:32Z +14 292 2020-02-15T06:59:32Z +14 370 2020-02-15T06:59:32Z +14 415 2020-02-15T06:59:32Z +14 417 2020-02-15T06:59:32Z +14 418 2020-02-15T06:59:32Z +14 454 2020-02-15T06:59:32Z +14 472 2020-02-15T06:59:32Z +14 475 2020-02-15T06:59:32Z +14 495 2020-02-15T06:59:32Z +14 536 2020-02-15T06:59:32Z +14 537 2020-02-15T06:59:32Z +14 612 2020-02-15T06:59:32Z +14 688 2020-02-15T06:59:32Z +14 759 2020-02-15T06:59:32Z +14 764 2020-02-15T06:59:32Z +14 847 2020-02-15T06:59:32Z +14 856 2020-02-15T06:59:32Z +14 890 2020-02-15T06:59:32Z +14 908 2020-02-15T06:59:32Z +14 919 2020-02-15T06:59:32Z +14 948 2020-02-15T06:59:32Z +14 970 2020-02-15T06:59:32Z +15 31 2020-02-15T06:59:32Z +15 89 2020-02-15T06:59:32Z +15 91 2020-02-15T06:59:32Z +15 108 2020-02-15T06:59:32Z +15 125 2020-02-15T06:59:32Z +15 236 2020-02-15T06:59:32Z +15 275 2020-02-15T06:59:32Z +15 280 2020-02-15T06:59:32Z +15 326 2020-02-15T06:59:32Z +15 342 2020-02-15T06:59:32Z +15 414 2020-02-15T06:59:32Z +15 445 2020-02-15T06:59:32Z +15 500 2020-02-15T06:59:32Z +15 502 2020-02-15T06:59:32Z +15 541 2020-02-15T06:59:32Z +15 553 2020-02-15T06:59:32Z +15 594 2020-02-15T06:59:32Z +15 626 2020-02-15T06:59:32Z +15 635 2020-02-15T06:59:32Z +15 745 2020-02-15T06:59:32Z +15 783 2020-02-15T06:59:32Z +15 795 2020-02-15T06:59:32Z +15 817 2020-02-15T06:59:32Z +15 886 2020-02-15T06:59:32Z +15 924 2020-02-15T06:59:32Z +15 949 2020-02-15T06:59:32Z +15 968 2020-02-15T06:59:32Z +15 985 2020-02-15T06:59:32Z +16 80 2020-02-15T06:59:32Z +16 87 2020-02-15T06:59:32Z +16 101 2020-02-15T06:59:32Z +16 121 2020-02-15T06:59:32Z +16 155 2020-02-15T06:59:32Z +16 177 2020-02-15T06:59:32Z +16 218 2020-02-15T06:59:32Z +16 221 2020-02-15T06:59:32Z +16 267 2020-02-15T06:59:32Z +16 269 2020-02-15T06:59:32Z +16 271 2020-02-15T06:59:32Z +16 280 2020-02-15T06:59:32Z +16 287 2020-02-15T06:59:32Z +16 345 2020-02-15T06:59:32Z +16 438 2020-02-15T06:59:32Z +16 453 2020-02-15T06:59:32Z +16 455 2020-02-15T06:59:32Z +16 456 2020-02-15T06:59:32Z +16 503 2020-02-15T06:59:32Z +16 548 2020-02-15T06:59:32Z +16 582 2020-02-15T06:59:32Z +16 583 2020-02-15T06:59:32Z +16 717 2020-02-15T06:59:32Z +16 758 2020-02-15T06:59:32Z +16 779 2020-02-15T06:59:32Z +16 886 2020-02-15T06:59:32Z +16 967 2020-02-15T06:59:32Z +17 96 2020-02-15T06:59:32Z +17 119 2020-02-15T06:59:32Z +17 124 2020-02-15T06:59:32Z +17 127 2020-02-15T06:59:32Z +17 154 2020-02-15T06:59:32Z +17 199 2020-02-15T06:59:32Z +17 201 2020-02-15T06:59:32Z +17 236 2020-02-15T06:59:32Z +17 280 2020-02-15T06:59:32Z +17 310 2020-02-15T06:59:32Z +17 313 2020-02-15T06:59:32Z +17 378 2020-02-15T06:59:32Z +17 457 2020-02-15T06:59:32Z +17 469 2020-02-15T06:59:32Z +17 478 2020-02-15T06:59:32Z +17 500 2020-02-15T06:59:32Z +17 515 2020-02-15T06:59:32Z +17 521 2020-02-15T06:59:32Z +17 573 2020-02-15T06:59:32Z +17 603 2020-02-15T06:59:32Z +17 606 2020-02-15T06:59:32Z +17 734 2020-02-15T06:59:32Z +17 770 2020-02-15T06:59:32Z +17 794 2020-02-15T06:59:32Z +17 800 2020-02-15T06:59:32Z +17 853 2020-02-15T06:59:32Z +17 873 2020-02-15T06:59:32Z +17 874 2020-02-15T06:59:32Z +17 880 2020-02-15T06:59:32Z +17 948 2020-02-15T06:59:32Z +17 957 2020-02-15T06:59:32Z +17 959 2020-02-15T06:59:32Z +18 44 2020-02-15T06:59:32Z +18 84 2020-02-15T06:59:32Z +18 144 2020-02-15T06:59:32Z +18 172 2020-02-15T06:59:32Z +18 268 2020-02-15T06:59:32Z +18 279 2020-02-15T06:59:32Z +18 280 2020-02-15T06:59:32Z +18 321 2020-02-15T06:59:32Z +18 386 2020-02-15T06:59:32Z +18 460 2020-02-15T06:59:32Z +18 462 2020-02-15T06:59:32Z +18 484 2020-02-15T06:59:32Z +18 536 2020-02-15T06:59:32Z +18 561 2020-02-15T06:59:32Z +18 612 2020-02-15T06:59:32Z +18 717 2020-02-15T06:59:32Z +18 808 2020-02-15T06:59:32Z +18 842 2020-02-15T06:59:32Z +18 863 2020-02-15T06:59:32Z +18 883 2020-02-15T06:59:32Z +18 917 2020-02-15T06:59:32Z +18 944 2020-02-15T06:59:32Z +19 2 2020-02-15T06:59:32Z +19 3 2020-02-15T06:59:32Z +19 144 2020-02-15T06:59:32Z +19 152 2020-02-15T06:59:32Z +19 182 2020-02-15T06:59:32Z +19 208 2020-02-15T06:59:32Z +19 212 2020-02-15T06:59:32Z +19 217 2020-02-15T06:59:32Z +19 266 2020-02-15T06:59:32Z +19 404 2020-02-15T06:59:32Z +19 428 2020-02-15T06:59:32Z +19 473 2020-02-15T06:59:32Z +19 490 2020-02-15T06:59:32Z +19 510 2020-02-15T06:59:32Z +19 513 2020-02-15T06:59:32Z +19 644 2020-02-15T06:59:32Z +19 670 2020-02-15T06:59:32Z +19 673 2020-02-15T06:59:32Z +19 711 2020-02-15T06:59:32Z +19 750 2020-02-15T06:59:32Z +19 752 2020-02-15T06:59:32Z +19 756 2020-02-15T06:59:32Z +19 771 2020-02-15T06:59:32Z +19 785 2020-02-15T06:59:32Z +19 877 2020-02-15T06:59:32Z +20 1 2020-02-15T06:59:32Z +20 54 2020-02-15T06:59:32Z +20 63 2020-02-15T06:59:32Z +20 140 2020-02-15T06:59:32Z +20 146 2020-02-15T06:59:32Z +20 165 2020-02-15T06:59:32Z +20 231 2020-02-15T06:59:32Z +20 243 2020-02-15T06:59:32Z +20 269 2020-02-15T06:59:32Z +20 274 2020-02-15T06:59:32Z +20 348 2020-02-15T06:59:32Z +20 366 2020-02-15T06:59:32Z +20 445 2020-02-15T06:59:32Z +20 478 2020-02-15T06:59:32Z +20 492 2020-02-15T06:59:32Z +20 499 2020-02-15T06:59:32Z +20 527 2020-02-15T06:59:32Z +20 531 2020-02-15T06:59:32Z +20 538 2020-02-15T06:59:32Z +20 589 2020-02-15T06:59:32Z +20 643 2020-02-15T06:59:32Z +20 652 2020-02-15T06:59:32Z +20 663 2020-02-15T06:59:32Z +20 714 2020-02-15T06:59:32Z +20 717 2020-02-15T06:59:32Z +20 757 2020-02-15T06:59:32Z +20 784 2020-02-15T06:59:32Z +20 863 2020-02-15T06:59:32Z +20 962 2020-02-15T06:59:32Z +20 977 2020-02-15T06:59:32Z +21 6 2020-02-15T06:59:32Z +21 87 2020-02-15T06:59:32Z +21 88 2020-02-15T06:59:32Z +21 142 2020-02-15T06:59:32Z +21 159 2020-02-15T06:59:32Z +21 179 2020-02-15T06:59:32Z +21 253 2020-02-15T06:59:32Z +21 281 2020-02-15T06:59:32Z +21 321 2020-02-15T06:59:32Z +21 398 2020-02-15T06:59:32Z +21 426 2020-02-15T06:59:32Z +21 429 2020-02-15T06:59:32Z +21 497 2020-02-15T06:59:32Z +21 507 2020-02-15T06:59:32Z +21 530 2020-02-15T06:59:32Z +21 680 2020-02-15T06:59:32Z +21 686 2020-02-15T06:59:32Z +21 700 2020-02-15T06:59:32Z +21 702 2020-02-15T06:59:32Z +21 733 2020-02-15T06:59:32Z +21 734 2020-02-15T06:59:32Z +21 798 2020-02-15T06:59:32Z +21 804 2020-02-15T06:59:32Z +21 887 2020-02-15T06:59:32Z +21 893 2020-02-15T06:59:32Z +21 920 2020-02-15T06:59:32Z +21 983 2020-02-15T06:59:32Z +22 9 2020-02-15T06:59:32Z +22 23 2020-02-15T06:59:32Z +22 56 2020-02-15T06:59:32Z +22 89 2020-02-15T06:59:32Z +22 111 2020-02-15T06:59:32Z +22 146 2020-02-15T06:59:32Z +22 291 2020-02-15T06:59:32Z +22 294 2020-02-15T06:59:32Z +22 349 2020-02-15T06:59:32Z +22 369 2020-02-15T06:59:32Z +22 418 2020-02-15T06:59:32Z +22 430 2020-02-15T06:59:32Z +22 483 2020-02-15T06:59:32Z +22 491 2020-02-15T06:59:32Z +22 495 2020-02-15T06:59:32Z +22 536 2020-02-15T06:59:32Z +22 600 2020-02-15T06:59:32Z +22 634 2020-02-15T06:59:32Z +22 648 2020-02-15T06:59:32Z +22 688 2020-02-15T06:59:32Z +22 731 2020-02-15T06:59:32Z +22 742 2020-02-15T06:59:32Z +22 775 2020-02-15T06:59:32Z +22 802 2020-02-15T06:59:32Z +22 912 2020-02-15T06:59:32Z +22 964 2020-02-15T06:59:32Z +23 6 2020-02-15T06:59:32Z +23 42 2020-02-15T06:59:32Z +23 78 2020-02-15T06:59:32Z +23 105 2020-02-15T06:59:32Z +23 116 2020-02-15T06:59:32Z +23 117 2020-02-15T06:59:32Z +23 125 2020-02-15T06:59:32Z +23 212 2020-02-15T06:59:32Z +23 226 2020-02-15T06:59:32Z +23 235 2020-02-15T06:59:32Z +23 254 2020-02-15T06:59:32Z +23 367 2020-02-15T06:59:32Z +23 370 2020-02-15T06:59:32Z +23 414 2020-02-15T06:59:32Z +23 419 2020-02-15T06:59:32Z +23 435 2020-02-15T06:59:32Z +23 449 2020-02-15T06:59:32Z +23 491 2020-02-15T06:59:32Z +23 536 2020-02-15T06:59:32Z +23 549 2020-02-15T06:59:32Z +23 636 2020-02-15T06:59:32Z +23 649 2020-02-15T06:59:32Z +23 673 2020-02-15T06:59:32Z +23 691 2020-02-15T06:59:32Z +23 766 2020-02-15T06:59:32Z +23 782 2020-02-15T06:59:32Z +23 804 2020-02-15T06:59:32Z +23 820 2020-02-15T06:59:32Z +23 826 2020-02-15T06:59:32Z +23 833 2020-02-15T06:59:32Z +23 842 2020-02-15T06:59:32Z +23 853 2020-02-15T06:59:32Z +23 855 2020-02-15T06:59:32Z +23 856 2020-02-15T06:59:32Z +23 935 2020-02-15T06:59:32Z +23 981 2020-02-15T06:59:32Z +23 997 2020-02-15T06:59:32Z +24 3 2020-02-15T06:59:32Z +24 83 2020-02-15T06:59:32Z +24 112 2020-02-15T06:59:32Z +24 126 2020-02-15T06:59:32Z +24 148 2020-02-15T06:59:32Z +24 164 2020-02-15T06:59:32Z +24 178 2020-02-15T06:59:32Z +24 194 2020-02-15T06:59:32Z +24 199 2020-02-15T06:59:32Z +24 242 2020-02-15T06:59:32Z +24 256 2020-02-15T06:59:32Z +24 277 2020-02-15T06:59:32Z +24 335 2020-02-15T06:59:32Z +24 405 2020-02-15T06:59:32Z +24 463 2020-02-15T06:59:32Z +24 515 2020-02-15T06:59:32Z +24 585 2020-02-15T06:59:32Z +24 603 2020-02-15T06:59:32Z +24 653 2020-02-15T06:59:32Z +24 704 2020-02-15T06:59:32Z +24 781 2020-02-15T06:59:32Z +24 829 2020-02-15T06:59:32Z +24 832 2020-02-15T06:59:32Z +24 969 2020-02-15T06:59:32Z +25 21 2020-02-15T06:59:32Z +25 86 2020-02-15T06:59:32Z +25 153 2020-02-15T06:59:32Z +25 179 2020-02-15T06:59:32Z +25 204 2020-02-15T06:59:32Z +25 213 2020-02-15T06:59:32Z +25 226 2020-02-15T06:59:32Z +25 245 2020-02-15T06:59:32Z +25 311 2020-02-15T06:59:32Z +25 404 2020-02-15T06:59:32Z +25 411 2020-02-15T06:59:32Z +25 420 2020-02-15T06:59:32Z +25 538 2020-02-15T06:59:32Z +25 564 2020-02-15T06:59:32Z +25 583 2020-02-15T06:59:32Z +25 606 2020-02-15T06:59:32Z +25 688 2020-02-15T06:59:32Z +25 697 2020-02-15T06:59:32Z +25 755 2020-02-15T06:59:32Z +25 871 2020-02-15T06:59:32Z +25 914 2020-02-15T06:59:32Z +26 9 2020-02-15T06:59:32Z +26 21 2020-02-15T06:59:32Z +26 34 2020-02-15T06:59:32Z +26 90 2020-02-15T06:59:32Z +26 93 2020-02-15T06:59:32Z +26 103 2020-02-15T06:59:32Z +26 147 2020-02-15T06:59:32Z +26 186 2020-02-15T06:59:32Z +26 201 2020-02-15T06:59:32Z +26 225 2020-02-15T06:59:32Z +26 241 2020-02-15T06:59:32Z +26 327 2020-02-15T06:59:32Z +26 329 2020-02-15T06:59:32Z +26 340 2020-02-15T06:59:32Z +26 345 2020-02-15T06:59:32Z +26 390 2020-02-15T06:59:32Z +26 392 2020-02-15T06:59:32Z +26 529 2020-02-15T06:59:32Z +26 544 2020-02-15T06:59:32Z +26 564 2020-02-15T06:59:32Z +26 635 2020-02-15T06:59:32Z +26 644 2020-02-15T06:59:32Z +26 682 2020-02-15T06:59:32Z +26 688 2020-02-15T06:59:32Z +26 715 2020-02-15T06:59:32Z +26 732 2020-02-15T06:59:32Z +26 758 2020-02-15T06:59:32Z +26 764 2020-02-15T06:59:32Z +26 795 2020-02-15T06:59:32Z +26 821 2020-02-15T06:59:32Z +26 885 2020-02-15T06:59:32Z +26 904 2020-02-15T06:59:32Z +26 906 2020-02-15T06:59:32Z +27 19 2020-02-15T06:59:32Z +27 34 2020-02-15T06:59:32Z +27 85 2020-02-15T06:59:32Z +27 150 2020-02-15T06:59:32Z +27 172 2020-02-15T06:59:32Z +27 273 2020-02-15T06:59:32Z +27 334 2020-02-15T06:59:32Z +27 347 2020-02-15T06:59:32Z +27 359 2020-02-15T06:59:32Z +27 398 2020-02-15T06:59:32Z +27 415 2020-02-15T06:59:32Z +27 462 2020-02-15T06:59:32Z +27 477 2020-02-15T06:59:32Z +27 500 2020-02-15T06:59:32Z +27 503 2020-02-15T06:59:32Z +27 540 2020-02-15T06:59:32Z +27 586 2020-02-15T06:59:32Z +27 593 2020-02-15T06:59:32Z +27 637 2020-02-15T06:59:32Z +27 679 2020-02-15T06:59:32Z +27 682 2020-02-15T06:59:32Z +27 695 2020-02-15T06:59:32Z +27 771 2020-02-15T06:59:32Z +27 805 2020-02-15T06:59:32Z +27 830 2020-02-15T06:59:32Z +27 854 2020-02-15T06:59:32Z +27 873 2020-02-15T06:59:32Z +27 880 2020-02-15T06:59:32Z +27 889 2020-02-15T06:59:32Z +27 904 2020-02-15T06:59:32Z +27 967 2020-02-15T06:59:32Z +27 986 2020-02-15T06:59:32Z +27 996 2020-02-15T06:59:32Z +28 14 2020-02-15T06:59:32Z +28 43 2020-02-15T06:59:32Z +28 58 2020-02-15T06:59:32Z +28 74 2020-02-15T06:59:32Z +28 96 2020-02-15T06:59:32Z +28 107 2020-02-15T06:59:32Z +28 259 2020-02-15T06:59:32Z +28 263 2020-02-15T06:59:32Z +28 287 2020-02-15T06:59:32Z +28 358 2020-02-15T06:59:32Z +28 502 2020-02-15T06:59:32Z +28 508 2020-02-15T06:59:32Z +28 532 2020-02-15T06:59:32Z +28 551 2020-02-15T06:59:32Z +28 574 2020-02-15T06:59:32Z +28 597 2020-02-15T06:59:32Z +28 619 2020-02-15T06:59:32Z +28 625 2020-02-15T06:59:32Z +28 652 2020-02-15T06:59:32Z +28 679 2020-02-15T06:59:32Z +28 743 2020-02-15T06:59:32Z +28 790 2020-02-15T06:59:32Z +28 793 2020-02-15T06:59:32Z +28 816 2020-02-15T06:59:32Z +28 827 2020-02-15T06:59:32Z +28 835 2020-02-15T06:59:32Z +28 879 2020-02-15T06:59:32Z +28 908 2020-02-15T06:59:32Z +28 953 2020-02-15T06:59:32Z +28 973 2020-02-15T06:59:32Z +28 994 2020-02-15T06:59:32Z +29 10 2020-02-15T06:59:32Z +29 79 2020-02-15T06:59:32Z +29 105 2020-02-15T06:59:32Z +29 110 2020-02-15T06:59:32Z +29 131 2020-02-15T06:59:32Z +29 133 2020-02-15T06:59:32Z +29 172 2020-02-15T06:59:32Z +29 226 2020-02-15T06:59:32Z +29 273 2020-02-15T06:59:32Z +29 282 2020-02-15T06:59:32Z +29 296 2020-02-15T06:59:32Z +29 311 2020-02-15T06:59:32Z +29 335 2020-02-15T06:59:32Z +29 342 2020-02-15T06:59:32Z +29 436 2020-02-15T06:59:32Z +29 444 2020-02-15T06:59:32Z +29 449 2020-02-15T06:59:32Z +29 462 2020-02-15T06:59:32Z +29 482 2020-02-15T06:59:32Z +29 488 2020-02-15T06:59:32Z +29 519 2020-02-15T06:59:32Z +29 547 2020-02-15T06:59:32Z +29 590 2020-02-15T06:59:32Z +29 646 2020-02-15T06:59:32Z +29 723 2020-02-15T06:59:32Z +29 812 2020-02-15T06:59:32Z +29 862 2020-02-15T06:59:32Z +29 928 2020-02-15T06:59:32Z +29 944 2020-02-15T06:59:32Z +30 1 2020-02-15T06:59:32Z +30 53 2020-02-15T06:59:32Z +30 64 2020-02-15T06:59:32Z +30 69 2020-02-15T06:59:32Z +30 77 2020-02-15T06:59:32Z +30 87 2020-02-15T06:59:32Z +30 260 2020-02-15T06:59:32Z +30 262 2020-02-15T06:59:32Z +30 286 2020-02-15T06:59:32Z +30 292 2020-02-15T06:59:32Z +30 301 2020-02-15T06:59:32Z +30 318 2020-02-15T06:59:32Z +30 321 2020-02-15T06:59:32Z +30 357 2020-02-15T06:59:32Z +30 565 2020-02-15T06:59:32Z +30 732 2020-02-15T06:59:32Z +30 797 2020-02-15T06:59:32Z +30 838 2020-02-15T06:59:32Z +30 945 2020-02-15T06:59:32Z +31 88 2020-02-15T06:59:32Z +31 146 2020-02-15T06:59:32Z +31 163 2020-02-15T06:59:32Z +31 164 2020-02-15T06:59:32Z +31 188 2020-02-15T06:59:32Z +31 299 2020-02-15T06:59:32Z +31 308 2020-02-15T06:59:32Z +31 368 2020-02-15T06:59:32Z +31 380 2020-02-15T06:59:32Z +31 431 2020-02-15T06:59:32Z +31 585 2020-02-15T06:59:32Z +31 637 2020-02-15T06:59:32Z +31 700 2020-02-15T06:59:32Z +31 739 2020-02-15T06:59:32Z +31 793 2020-02-15T06:59:32Z +31 802 2020-02-15T06:59:32Z +31 880 2020-02-15T06:59:32Z +31 978 2020-02-15T06:59:32Z +32 65 2020-02-15T06:59:32Z +32 84 2020-02-15T06:59:32Z +32 103 2020-02-15T06:59:32Z +32 112 2020-02-15T06:59:32Z +32 136 2020-02-15T06:59:32Z +32 197 2020-02-15T06:59:32Z +32 199 2020-02-15T06:59:32Z +32 219 2020-02-15T06:59:32Z +32 309 2020-02-15T06:59:32Z +32 312 2020-02-15T06:59:32Z +32 401 2020-02-15T06:59:32Z +32 427 2020-02-15T06:59:32Z +32 431 2020-02-15T06:59:32Z +32 523 2020-02-15T06:59:32Z +32 567 2020-02-15T06:59:32Z +32 585 2020-02-15T06:59:32Z +32 606 2020-02-15T06:59:32Z +32 651 2020-02-15T06:59:32Z +32 667 2020-02-15T06:59:32Z +32 669 2020-02-15T06:59:32Z +32 815 2020-02-15T06:59:32Z +32 928 2020-02-15T06:59:32Z +32 980 2020-02-15T06:59:32Z +33 56 2020-02-15T06:59:32Z +33 112 2020-02-15T06:59:32Z +33 135 2020-02-15T06:59:32Z +33 154 2020-02-15T06:59:32Z +33 214 2020-02-15T06:59:32Z +33 252 2020-02-15T06:59:32Z +33 305 2020-02-15T06:59:32Z +33 306 2020-02-15T06:59:32Z +33 473 2020-02-15T06:59:32Z +33 489 2020-02-15T06:59:32Z +33 574 2020-02-15T06:59:32Z +33 618 2020-02-15T06:59:32Z +33 667 2020-02-15T06:59:32Z +33 694 2020-02-15T06:59:32Z +33 712 2020-02-15T06:59:32Z +33 735 2020-02-15T06:59:32Z +33 737 2020-02-15T06:59:32Z +33 754 2020-02-15T06:59:32Z +33 775 2020-02-15T06:59:32Z +33 878 2020-02-15T06:59:32Z +33 881 2020-02-15T06:59:32Z +33 965 2020-02-15T06:59:32Z +33 972 2020-02-15T06:59:32Z +33 993 2020-02-15T06:59:32Z +34 43 2020-02-15T06:59:32Z +34 90 2020-02-15T06:59:32Z +34 119 2020-02-15T06:59:32Z +34 125 2020-02-15T06:59:32Z +34 172 2020-02-15T06:59:32Z +34 182 2020-02-15T06:59:32Z +34 244 2020-02-15T06:59:32Z +34 336 2020-02-15T06:59:32Z +34 389 2020-02-15T06:59:32Z +34 393 2020-02-15T06:59:32Z +34 438 2020-02-15T06:59:32Z +34 493 2020-02-15T06:59:32Z +34 502 2020-02-15T06:59:32Z +34 525 2020-02-15T06:59:32Z +34 668 2020-02-15T06:59:32Z +34 720 2020-02-15T06:59:32Z +34 779 2020-02-15T06:59:32Z +34 788 2020-02-15T06:59:32Z +34 794 2020-02-15T06:59:32Z +34 836 2020-02-15T06:59:32Z +34 846 2020-02-15T06:59:32Z +34 853 2020-02-15T06:59:32Z +34 929 2020-02-15T06:59:32Z +34 950 2020-02-15T06:59:32Z +34 971 2020-02-15T06:59:32Z +35 10 2020-02-15T06:59:32Z +35 35 2020-02-15T06:59:32Z +35 52 2020-02-15T06:59:32Z +35 201 2020-02-15T06:59:32Z +35 256 2020-02-15T06:59:32Z +35 389 2020-02-15T06:59:32Z +35 589 2020-02-15T06:59:32Z +35 612 2020-02-15T06:59:32Z +35 615 2020-02-15T06:59:32Z +35 707 2020-02-15T06:59:32Z +35 732 2020-02-15T06:59:32Z +35 738 2020-02-15T06:59:32Z +35 748 2020-02-15T06:59:32Z +35 817 2020-02-15T06:59:32Z +35 914 2020-02-15T06:59:32Z +36 15 2020-02-15T06:59:32Z +36 81 2020-02-15T06:59:32Z +36 171 2020-02-15T06:59:32Z +36 231 2020-02-15T06:59:32Z +36 245 2020-02-15T06:59:32Z +36 283 2020-02-15T06:59:32Z +36 380 2020-02-15T06:59:32Z +36 381 2020-02-15T06:59:32Z +36 387 2020-02-15T06:59:32Z +36 390 2020-02-15T06:59:32Z +36 410 2020-02-15T06:59:32Z +36 426 2020-02-15T06:59:32Z +36 427 2020-02-15T06:59:32Z +36 453 2020-02-15T06:59:32Z +36 466 2020-02-15T06:59:32Z +36 484 2020-02-15T06:59:32Z +36 493 2020-02-15T06:59:32Z +36 499 2020-02-15T06:59:32Z +36 569 2020-02-15T06:59:32Z +36 590 2020-02-15T06:59:32Z +36 600 2020-02-15T06:59:32Z +36 714 2020-02-15T06:59:32Z +36 715 2020-02-15T06:59:32Z +36 716 2020-02-15T06:59:32Z +36 731 2020-02-15T06:59:32Z +36 875 2020-02-15T06:59:32Z +36 915 2020-02-15T06:59:32Z +36 931 2020-02-15T06:59:32Z +36 956 2020-02-15T06:59:32Z +37 10 2020-02-15T06:59:32Z +37 12 2020-02-15T06:59:32Z +37 19 2020-02-15T06:59:32Z +37 118 2020-02-15T06:59:32Z +37 119 2020-02-15T06:59:32Z +37 122 2020-02-15T06:59:32Z +37 146 2020-02-15T06:59:32Z +37 204 2020-02-15T06:59:32Z +37 253 2020-02-15T06:59:32Z +37 260 2020-02-15T06:59:32Z +37 277 2020-02-15T06:59:32Z +37 317 2020-02-15T06:59:32Z +37 467 2020-02-15T06:59:32Z +37 477 2020-02-15T06:59:32Z +37 485 2020-02-15T06:59:32Z +37 508 2020-02-15T06:59:32Z +37 529 2020-02-15T06:59:32Z +37 553 2020-02-15T06:59:32Z +37 555 2020-02-15T06:59:32Z +37 572 2020-02-15T06:59:32Z +37 588 2020-02-15T06:59:32Z +37 662 2020-02-15T06:59:32Z +37 663 2020-02-15T06:59:32Z +37 694 2020-02-15T06:59:32Z +37 697 2020-02-15T06:59:32Z +37 785 2020-02-15T06:59:32Z +37 839 2020-02-15T06:59:32Z +37 840 2020-02-15T06:59:32Z +37 853 2020-02-15T06:59:32Z +37 900 2020-02-15T06:59:32Z +37 925 2020-02-15T06:59:32Z +37 963 2020-02-15T06:59:32Z +37 966 2020-02-15T06:59:32Z +37 989 2020-02-15T06:59:32Z +37 997 2020-02-15T06:59:32Z +38 24 2020-02-15T06:59:32Z +38 111 2020-02-15T06:59:32Z +38 160 2020-02-15T06:59:32Z +38 176 2020-02-15T06:59:32Z +38 223 2020-02-15T06:59:32Z +38 241 2020-02-15T06:59:32Z +38 274 2020-02-15T06:59:32Z +38 335 2020-02-15T06:59:32Z +38 338 2020-02-15T06:59:32Z +38 353 2020-02-15T06:59:32Z +38 448 2020-02-15T06:59:32Z +38 450 2020-02-15T06:59:32Z +38 458 2020-02-15T06:59:32Z +38 501 2020-02-15T06:59:32Z +38 516 2020-02-15T06:59:32Z +38 547 2020-02-15T06:59:32Z +38 583 2020-02-15T06:59:32Z +38 618 2020-02-15T06:59:32Z +38 619 2020-02-15T06:59:32Z +38 705 2020-02-15T06:59:32Z +38 793 2020-02-15T06:59:32Z +38 827 2020-02-15T06:59:32Z +38 839 2020-02-15T06:59:32Z +38 853 2020-02-15T06:59:32Z +38 876 2020-02-15T06:59:32Z +39 71 2020-02-15T06:59:32Z +39 73 2020-02-15T06:59:32Z +39 168 2020-02-15T06:59:32Z +39 203 2020-02-15T06:59:32Z +39 222 2020-02-15T06:59:32Z +39 290 2020-02-15T06:59:32Z +39 293 2020-02-15T06:59:32Z +39 320 2020-02-15T06:59:32Z +39 415 2020-02-15T06:59:32Z +39 425 2020-02-15T06:59:32Z +39 431 2020-02-15T06:59:32Z +39 456 2020-02-15T06:59:32Z +39 476 2020-02-15T06:59:32Z +39 559 2020-02-15T06:59:32Z +39 587 2020-02-15T06:59:32Z +39 598 2020-02-15T06:59:32Z +39 606 2020-02-15T06:59:32Z +39 648 2020-02-15T06:59:32Z +39 683 2020-02-15T06:59:32Z +39 689 2020-02-15T06:59:32Z +39 696 2020-02-15T06:59:32Z +39 700 2020-02-15T06:59:32Z +39 703 2020-02-15T06:59:32Z +39 736 2020-02-15T06:59:32Z +39 772 2020-02-15T06:59:32Z +39 815 2020-02-15T06:59:32Z +39 831 2020-02-15T06:59:32Z +39 920 2020-02-15T06:59:32Z +40 1 2020-02-15T06:59:32Z +40 11 2020-02-15T06:59:32Z +40 34 2020-02-15T06:59:32Z +40 107 2020-02-15T06:59:32Z +40 128 2020-02-15T06:59:32Z +40 163 2020-02-15T06:59:32Z +40 177 2020-02-15T06:59:32Z +40 223 2020-02-15T06:59:32Z +40 233 2020-02-15T06:59:32Z +40 326 2020-02-15T06:59:32Z +40 374 2020-02-15T06:59:32Z +40 394 2020-02-15T06:59:32Z +40 396 2020-02-15T06:59:32Z +40 463 2020-02-15T06:59:32Z +40 466 2020-02-15T06:59:32Z +40 494 2020-02-15T06:59:32Z +40 521 2020-02-15T06:59:32Z +40 723 2020-02-15T06:59:32Z +40 737 2020-02-15T06:59:32Z +40 744 2020-02-15T06:59:32Z +40 747 2020-02-15T06:59:32Z +40 754 2020-02-15T06:59:32Z +40 799 2020-02-15T06:59:32Z +40 835 2020-02-15T06:59:32Z +40 868 2020-02-15T06:59:32Z +40 869 2020-02-15T06:59:32Z +40 887 2020-02-15T06:59:32Z +40 933 2020-02-15T06:59:32Z +40 938 2020-02-15T06:59:32Z +41 4 2020-02-15T06:59:32Z +41 60 2020-02-15T06:59:32Z +41 69 2020-02-15T06:59:32Z +41 86 2020-02-15T06:59:32Z +41 100 2020-02-15T06:59:32Z +41 150 2020-02-15T06:59:32Z +41 159 2020-02-15T06:59:32Z +41 194 2020-02-15T06:59:32Z +41 203 2020-02-15T06:59:32Z +41 212 2020-02-15T06:59:32Z +41 230 2020-02-15T06:59:32Z +41 249 2020-02-15T06:59:32Z +41 252 2020-02-15T06:59:32Z +41 305 2020-02-15T06:59:32Z +41 336 2020-02-15T06:59:32Z +41 383 2020-02-15T06:59:32Z +41 544 2020-02-15T06:59:32Z +41 596 2020-02-15T06:59:32Z +41 657 2020-02-15T06:59:32Z +41 674 2020-02-15T06:59:32Z +41 678 2020-02-15T06:59:32Z +41 721 2020-02-15T06:59:32Z +41 724 2020-02-15T06:59:32Z +41 779 2020-02-15T06:59:32Z +41 784 2020-02-15T06:59:32Z +41 799 2020-02-15T06:59:32Z +41 894 2020-02-15T06:59:32Z +41 912 2020-02-15T06:59:32Z +41 942 2020-02-15T06:59:32Z +42 24 2020-02-15T06:59:32Z +42 139 2020-02-15T06:59:32Z +42 309 2020-02-15T06:59:32Z +42 320 2020-02-15T06:59:32Z +42 333 2020-02-15T06:59:32Z +42 500 2020-02-15T06:59:32Z +42 502 2020-02-15T06:59:32Z +42 505 2020-02-15T06:59:32Z +42 527 2020-02-15T06:59:32Z +42 535 2020-02-15T06:59:32Z +42 546 2020-02-15T06:59:32Z +42 568 2020-02-15T06:59:32Z +42 648 2020-02-15T06:59:32Z +42 665 2020-02-15T06:59:32Z +42 673 2020-02-15T06:59:32Z +42 687 2020-02-15T06:59:32Z +42 713 2020-02-15T06:59:32Z +42 738 2020-02-15T06:59:32Z +42 798 2020-02-15T06:59:32Z +42 861 2020-02-15T06:59:33Z +42 865 2020-02-15T06:59:33Z +42 867 2020-02-15T06:59:33Z +42 876 2020-02-15T06:59:33Z +42 890 2020-02-15T06:59:33Z +42 907 2020-02-15T06:59:33Z +42 922 2020-02-15T06:59:33Z +42 932 2020-02-15T06:59:33Z +43 19 2020-02-15T06:59:33Z +43 42 2020-02-15T06:59:33Z +43 56 2020-02-15T06:59:33Z +43 89 2020-02-15T06:59:33Z +43 105 2020-02-15T06:59:33Z +43 147 2020-02-15T06:59:33Z +43 161 2020-02-15T06:59:33Z +43 180 2020-02-15T06:59:33Z +43 239 2020-02-15T06:59:33Z +43 276 2020-02-15T06:59:33Z +43 330 2020-02-15T06:59:33Z +43 344 2020-02-15T06:59:33Z +43 359 2020-02-15T06:59:33Z +43 377 2020-02-15T06:59:33Z +43 410 2020-02-15T06:59:33Z +43 462 2020-02-15T06:59:33Z +43 533 2020-02-15T06:59:33Z +43 598 2020-02-15T06:59:33Z +43 605 2020-02-15T06:59:33Z +43 608 2020-02-15T06:59:33Z +43 621 2020-02-15T06:59:33Z +43 753 2020-02-15T06:59:33Z +43 827 2020-02-15T06:59:33Z +43 833 2020-02-15T06:59:33Z +43 917 2020-02-15T06:59:33Z +43 958 2020-02-15T06:59:33Z +44 58 2020-02-15T06:59:33Z +44 84 2020-02-15T06:59:33Z +44 88 2020-02-15T06:59:33Z +44 94 2020-02-15T06:59:33Z +44 109 2020-02-15T06:59:33Z +44 176 2020-02-15T06:59:33Z +44 242 2020-02-15T06:59:33Z +44 273 2020-02-15T06:59:33Z +44 322 2020-02-15T06:59:33Z +44 420 2020-02-15T06:59:33Z +44 434 2020-02-15T06:59:33Z +44 490 2020-02-15T06:59:33Z +44 591 2020-02-15T06:59:33Z +44 598 2020-02-15T06:59:33Z +44 604 2020-02-15T06:59:33Z +44 699 2020-02-15T06:59:33Z +44 751 2020-02-15T06:59:33Z +44 784 2020-02-15T06:59:33Z +44 825 2020-02-15T06:59:33Z +44 854 2020-02-15T06:59:33Z +44 875 2020-02-15T06:59:33Z +44 878 2020-02-15T06:59:33Z +44 883 2020-02-15T06:59:33Z +44 896 2020-02-15T06:59:33Z +44 902 2020-02-15T06:59:33Z +44 937 2020-02-15T06:59:33Z +44 944 2020-02-15T06:59:33Z +44 952 2020-02-15T06:59:33Z +44 982 2020-02-15T06:59:33Z +44 998 2020-02-15T06:59:33Z +45 18 2020-02-15T06:59:33Z +45 65 2020-02-15T06:59:33Z +45 66 2020-02-15T06:59:33Z +45 115 2020-02-15T06:59:33Z +45 117 2020-02-15T06:59:33Z +45 164 2020-02-15T06:59:33Z +45 187 2020-02-15T06:59:33Z +45 198 2020-02-15T06:59:33Z +45 219 2020-02-15T06:59:33Z +45 330 2020-02-15T06:59:33Z +45 407 2020-02-15T06:59:33Z +45 416 2020-02-15T06:59:33Z +45 463 2020-02-15T06:59:33Z +45 467 2020-02-15T06:59:33Z +45 484 2020-02-15T06:59:33Z +45 502 2020-02-15T06:59:33Z +45 503 2020-02-15T06:59:33Z +45 508 2020-02-15T06:59:33Z +45 537 2020-02-15T06:59:33Z +45 680 2020-02-15T06:59:33Z +45 714 2020-02-15T06:59:33Z +45 767 2020-02-15T06:59:33Z +45 778 2020-02-15T06:59:33Z +45 797 2020-02-15T06:59:33Z +45 810 2020-02-15T06:59:33Z +45 895 2020-02-15T06:59:33Z +45 900 2020-02-15T06:59:33Z +45 901 2020-02-15T06:59:33Z +45 920 2020-02-15T06:59:33Z +45 925 2020-02-15T06:59:33Z +45 975 2020-02-15T06:59:33Z +45 978 2020-02-15T06:59:33Z +46 38 2020-02-15T06:59:33Z +46 51 2020-02-15T06:59:33Z +46 174 2020-02-15T06:59:33Z +46 254 2020-02-15T06:59:33Z +46 296 2020-02-15T06:59:33Z +46 319 2020-02-15T06:59:33Z +46 407 2020-02-15T06:59:33Z +46 448 2020-02-15T06:59:33Z +46 456 2020-02-15T06:59:33Z +46 463 2020-02-15T06:59:33Z +46 478 2020-02-15T06:59:33Z +46 538 2020-02-15T06:59:33Z +46 540 2020-02-15T06:59:33Z +46 567 2020-02-15T06:59:33Z +46 731 2020-02-15T06:59:33Z +46 766 2020-02-15T06:59:33Z +46 768 2020-02-15T06:59:33Z +46 820 2020-02-15T06:59:33Z +46 829 2020-02-15T06:59:33Z +46 830 2020-02-15T06:59:33Z +46 836 2020-02-15T06:59:33Z +46 889 2020-02-15T06:59:33Z +46 980 2020-02-15T06:59:33Z +46 991 2020-02-15T06:59:33Z +47 25 2020-02-15T06:59:33Z +47 36 2020-02-15T06:59:33Z +47 53 2020-02-15T06:59:33Z +47 67 2020-02-15T06:59:33Z +47 172 2020-02-15T06:59:33Z +47 233 2020-02-15T06:59:33Z +47 273 2020-02-15T06:59:33Z +47 351 2020-02-15T06:59:33Z +47 385 2020-02-15T06:59:33Z +47 484 2020-02-15T06:59:33Z +47 508 2020-02-15T06:59:33Z +47 576 2020-02-15T06:59:33Z +47 670 2020-02-15T06:59:33Z +47 734 2020-02-15T06:59:33Z +47 737 2020-02-15T06:59:33Z +47 770 2020-02-15T06:59:33Z +47 777 2020-02-15T06:59:33Z +47 787 2020-02-15T06:59:33Z +47 790 2020-02-15T06:59:33Z +47 913 2020-02-15T06:59:33Z +47 923 2020-02-15T06:59:33Z +47 924 2020-02-15T06:59:33Z +47 944 2020-02-15T06:59:33Z +47 973 2020-02-15T06:59:33Z +48 99 2020-02-15T06:59:33Z +48 101 2020-02-15T06:59:33Z +48 134 2020-02-15T06:59:33Z +48 150 2020-02-15T06:59:33Z +48 164 2020-02-15T06:59:33Z +48 211 2020-02-15T06:59:33Z +48 245 2020-02-15T06:59:33Z +48 267 2020-02-15T06:59:33Z +48 287 2020-02-15T06:59:33Z +48 295 2020-02-15T06:59:33Z +48 312 2020-02-15T06:59:33Z +48 315 2020-02-15T06:59:33Z +48 345 2020-02-15T06:59:33Z +48 349 2020-02-15T06:59:33Z +48 428 2020-02-15T06:59:33Z +48 506 2020-02-15T06:59:33Z +48 545 2020-02-15T06:59:33Z +48 559 2020-02-15T06:59:33Z +48 570 2020-02-15T06:59:33Z +48 599 2020-02-15T06:59:33Z +48 645 2020-02-15T06:59:33Z +48 705 2020-02-15T06:59:33Z +48 757 2020-02-15T06:59:33Z +48 792 2020-02-15T06:59:33Z +48 922 2020-02-15T06:59:33Z +48 926 2020-02-15T06:59:33Z +49 31 2020-02-15T06:59:33Z +49 151 2020-02-15T06:59:33Z +49 195 2020-02-15T06:59:33Z +49 207 2020-02-15T06:59:33Z +49 250 2020-02-15T06:59:33Z +49 282 2020-02-15T06:59:33Z +49 348 2020-02-15T06:59:33Z +49 391 2020-02-15T06:59:33Z +49 400 2020-02-15T06:59:33Z +49 407 2020-02-15T06:59:33Z +49 423 2020-02-15T06:59:33Z +49 433 2020-02-15T06:59:33Z +49 469 2020-02-15T06:59:33Z +49 506 2020-02-15T06:59:33Z +49 542 2020-02-15T06:59:33Z +49 558 2020-02-15T06:59:33Z +49 579 2020-02-15T06:59:33Z +49 595 2020-02-15T06:59:33Z +49 662 2020-02-15T06:59:33Z +49 709 2020-02-15T06:59:33Z +49 716 2020-02-15T06:59:33Z +49 725 2020-02-15T06:59:33Z +49 729 2020-02-15T06:59:33Z +49 811 2020-02-15T06:59:33Z +49 927 2020-02-15T06:59:33Z +49 977 2020-02-15T06:59:33Z +49 980 2020-02-15T06:59:33Z +50 111 2020-02-15T06:59:33Z +50 178 2020-02-15T06:59:33Z +50 243 2020-02-15T06:59:33Z +50 248 2020-02-15T06:59:33Z +50 274 2020-02-15T06:59:33Z +50 288 2020-02-15T06:59:33Z +50 303 2020-02-15T06:59:33Z +50 306 2020-02-15T06:59:33Z +50 327 2020-02-15T06:59:33Z +50 372 2020-02-15T06:59:33Z +50 401 2020-02-15T06:59:33Z +50 417 2020-02-15T06:59:33Z +50 420 2020-02-15T06:59:33Z +50 437 2020-02-15T06:59:33Z +50 476 2020-02-15T06:59:33Z +50 504 2020-02-15T06:59:33Z +50 520 2020-02-15T06:59:33Z +50 552 2020-02-15T06:59:33Z +50 591 2020-02-15T06:59:33Z +50 621 2020-02-15T06:59:33Z +50 632 2020-02-15T06:59:33Z +50 645 2020-02-15T06:59:33Z +50 672 2020-02-15T06:59:33Z +50 717 2020-02-15T06:59:33Z +50 732 2020-02-15T06:59:33Z +50 795 2020-02-15T06:59:33Z +50 829 2020-02-15T06:59:33Z +50 840 2020-02-15T06:59:33Z +50 897 2020-02-15T06:59:33Z +50 918 2020-02-15T06:59:33Z +50 924 2020-02-15T06:59:33Z +50 957 2020-02-15T06:59:33Z +51 5 2020-02-15T06:59:33Z +51 63 2020-02-15T06:59:33Z +51 103 2020-02-15T06:59:33Z +51 112 2020-02-15T06:59:33Z +51 121 2020-02-15T06:59:33Z +51 153 2020-02-15T06:59:33Z +51 395 2020-02-15T06:59:33Z +51 408 2020-02-15T06:59:33Z +51 420 2020-02-15T06:59:33Z +51 461 2020-02-15T06:59:33Z +51 490 2020-02-15T06:59:33Z +51 525 2020-02-15T06:59:33Z +51 627 2020-02-15T06:59:33Z +51 678 2020-02-15T06:59:33Z +51 733 2020-02-15T06:59:33Z +51 734 2020-02-15T06:59:33Z +51 737 2020-02-15T06:59:33Z +51 750 2020-02-15T06:59:33Z +51 847 2020-02-15T06:59:33Z +51 891 2020-02-15T06:59:33Z +51 895 2020-02-15T06:59:33Z +51 940 2020-02-15T06:59:33Z +51 974 2020-02-15T06:59:33Z +51 990 2020-02-15T06:59:33Z +51 993 2020-02-15T06:59:33Z +52 20 2020-02-15T06:59:33Z +52 92 2020-02-15T06:59:33Z +52 96 2020-02-15T06:59:33Z +52 108 2020-02-15T06:59:33Z +52 203 2020-02-15T06:59:33Z +52 249 2020-02-15T06:59:33Z +52 341 2020-02-15T06:59:33Z +52 376 2020-02-15T06:59:33Z +52 388 2020-02-15T06:59:33Z +52 407 2020-02-15T06:59:33Z +52 424 2020-02-15T06:59:33Z +52 474 2020-02-15T06:59:33Z +52 515 2020-02-15T06:59:33Z +52 517 2020-02-15T06:59:33Z +52 584 2020-02-15T06:59:33Z +52 596 2020-02-15T06:59:33Z +52 664 2020-02-15T06:59:33Z +52 675 2020-02-15T06:59:33Z +52 689 2020-02-15T06:59:33Z +52 714 2020-02-15T06:59:33Z +52 812 2020-02-15T06:59:33Z +52 878 2020-02-15T06:59:33Z +52 879 2020-02-15T06:59:33Z +52 915 2020-02-15T06:59:33Z +52 951 2020-02-15T06:59:33Z +52 999 2020-02-15T06:59:33Z +53 1 2020-02-15T06:59:33Z +53 9 2020-02-15T06:59:33Z +53 51 2020-02-15T06:59:33Z +53 58 2020-02-15T06:59:33Z +53 109 2020-02-15T06:59:33Z +53 122 2020-02-15T06:59:33Z +53 126 2020-02-15T06:59:33Z +53 181 2020-02-15T06:59:33Z +53 256 2020-02-15T06:59:33Z +53 268 2020-02-15T06:59:33Z +53 285 2020-02-15T06:59:33Z +53 307 2020-02-15T06:59:33Z +53 358 2020-02-15T06:59:33Z +53 386 2020-02-15T06:59:33Z +53 447 2020-02-15T06:59:33Z +53 465 2020-02-15T06:59:33Z +53 490 2020-02-15T06:59:33Z +53 492 2020-02-15T06:59:33Z +53 508 2020-02-15T06:59:33Z +53 518 2020-02-15T06:59:33Z +53 573 2020-02-15T06:59:33Z +53 576 2020-02-15T06:59:33Z +53 577 2020-02-15T06:59:33Z +53 697 2020-02-15T06:59:33Z +53 725 2020-02-15T06:59:33Z +53 727 2020-02-15T06:59:33Z +53 937 2020-02-15T06:59:33Z +53 947 2020-02-15T06:59:33Z +53 961 2020-02-15T06:59:33Z +53 980 2020-02-15T06:59:33Z +54 84 2020-02-15T06:59:33Z +54 129 2020-02-15T06:59:33Z +54 150 2020-02-15T06:59:33Z +54 184 2020-02-15T06:59:33Z +54 285 2020-02-15T06:59:33Z +54 292 2020-02-15T06:59:33Z +54 301 2020-02-15T06:59:33Z +54 348 2020-02-15T06:59:33Z +54 489 2020-02-15T06:59:33Z +54 510 2020-02-15T06:59:33Z +54 524 2020-02-15T06:59:33Z +54 546 2020-02-15T06:59:33Z +54 600 2020-02-15T06:59:33Z +54 636 2020-02-15T06:59:33Z +54 649 2020-02-15T06:59:33Z +54 658 2020-02-15T06:59:33Z +54 754 2020-02-15T06:59:33Z +54 764 2020-02-15T06:59:33Z +54 842 2020-02-15T06:59:33Z +54 858 2020-02-15T06:59:33Z +54 861 2020-02-15T06:59:33Z +54 913 2020-02-15T06:59:33Z +54 970 2020-02-15T06:59:33Z +54 988 2020-02-15T06:59:33Z +54 990 2020-02-15T06:59:33Z +55 8 2020-02-15T06:59:33Z +55 27 2020-02-15T06:59:33Z +55 75 2020-02-15T06:59:33Z +55 197 2020-02-15T06:59:33Z +55 307 2020-02-15T06:59:33Z +55 320 2020-02-15T06:59:33Z +55 340 2020-02-15T06:59:33Z +55 403 2020-02-15T06:59:33Z +55 485 2020-02-15T06:59:33Z +55 486 2020-02-15T06:59:33Z +55 603 2020-02-15T06:59:33Z +55 612 2020-02-15T06:59:33Z +55 620 2020-02-15T06:59:33Z +55 709 2020-02-15T06:59:33Z +55 776 2020-02-15T06:59:33Z +55 790 2020-02-15T06:59:33Z +55 815 2020-02-15T06:59:33Z +55 827 2020-02-15T06:59:33Z +55 930 2020-02-15T06:59:33Z +55 963 2020-02-15T06:59:33Z +56 63 2020-02-15T06:59:33Z +56 87 2020-02-15T06:59:33Z +56 226 2020-02-15T06:59:33Z +56 236 2020-02-15T06:59:33Z +56 298 2020-02-15T06:59:33Z +56 307 2020-02-15T06:59:33Z +56 354 2020-02-15T06:59:33Z +56 383 2020-02-15T06:59:33Z +56 417 2020-02-15T06:59:33Z +56 421 2020-02-15T06:59:33Z +56 457 2020-02-15T06:59:33Z +56 462 2020-02-15T06:59:33Z +56 474 2020-02-15T06:59:33Z +56 521 2020-02-15T06:59:33Z +56 593 2020-02-15T06:59:33Z +56 728 2020-02-15T06:59:33Z +56 750 2020-02-15T06:59:33Z +56 769 2020-02-15T06:59:33Z +56 781 2020-02-15T06:59:33Z +56 795 2020-02-15T06:59:33Z +56 844 2020-02-15T06:59:33Z +56 851 2020-02-15T06:59:33Z +56 862 2020-02-15T06:59:33Z +56 868 2020-02-15T06:59:33Z +56 892 2020-02-15T06:59:33Z +56 893 2020-02-15T06:59:33Z +56 936 2020-02-15T06:59:33Z +56 965 2020-02-15T06:59:33Z +57 16 2020-02-15T06:59:33Z +57 34 2020-02-15T06:59:33Z +57 101 2020-02-15T06:59:33Z +57 114 2020-02-15T06:59:33Z +57 122 2020-02-15T06:59:33Z +57 134 2020-02-15T06:59:33Z +57 144 2020-02-15T06:59:33Z +57 153 2020-02-15T06:59:33Z +57 192 2020-02-15T06:59:33Z +57 213 2020-02-15T06:59:33Z +57 258 2020-02-15T06:59:33Z +57 267 2020-02-15T06:59:33Z +57 317 2020-02-15T06:59:33Z +57 340 2020-02-15T06:59:33Z +57 393 2020-02-15T06:59:33Z +57 437 2020-02-15T06:59:33Z +57 447 2020-02-15T06:59:33Z +57 502 2020-02-15T06:59:33Z +57 592 2020-02-15T06:59:33Z +57 605 2020-02-15T06:59:33Z +57 637 2020-02-15T06:59:33Z +57 685 2020-02-15T06:59:33Z +57 707 2020-02-15T06:59:33Z +57 714 2020-02-15T06:59:33Z +57 717 2020-02-15T06:59:33Z +57 737 2020-02-15T06:59:33Z +57 767 2020-02-15T06:59:33Z +57 852 2020-02-15T06:59:33Z +57 891 2020-02-15T06:59:33Z +57 918 2020-02-15T06:59:33Z +58 48 2020-02-15T06:59:33Z +58 68 2020-02-15T06:59:33Z +58 119 2020-02-15T06:59:33Z +58 128 2020-02-15T06:59:33Z +58 135 2020-02-15T06:59:33Z +58 175 2020-02-15T06:59:33Z +58 199 2020-02-15T06:59:33Z +58 235 2020-02-15T06:59:33Z +58 242 2020-02-15T06:59:33Z +58 243 2020-02-15T06:59:33Z +58 254 2020-02-15T06:59:33Z +58 306 2020-02-15T06:59:33Z +58 316 2020-02-15T06:59:33Z +58 417 2020-02-15T06:59:33Z +58 426 2020-02-15T06:59:33Z +58 460 2020-02-15T06:59:33Z +58 477 2020-02-15T06:59:33Z +58 541 2020-02-15T06:59:33Z +58 549 2020-02-15T06:59:33Z +58 551 2020-02-15T06:59:33Z +58 553 2020-02-15T06:59:33Z +58 578 2020-02-15T06:59:33Z +58 602 2020-02-15T06:59:33Z +58 632 2020-02-15T06:59:33Z +58 635 2020-02-15T06:59:33Z +58 638 2020-02-15T06:59:33Z +58 698 2020-02-15T06:59:33Z +58 726 2020-02-15T06:59:33Z +58 755 2020-02-15T06:59:33Z +58 800 2020-02-15T06:59:33Z +58 856 2020-02-15T06:59:33Z +58 858 2020-02-15T06:59:33Z +59 5 2020-02-15T06:59:33Z +59 46 2020-02-15T06:59:33Z +59 54 2020-02-15T06:59:33Z +59 72 2020-02-15T06:59:33Z +59 88 2020-02-15T06:59:33Z +59 121 2020-02-15T06:59:33Z +59 129 2020-02-15T06:59:33Z +59 130 2020-02-15T06:59:33Z +59 183 2020-02-15T06:59:33Z +59 210 2020-02-15T06:59:33Z +59 241 2020-02-15T06:59:33Z +59 295 2020-02-15T06:59:33Z +59 418 2020-02-15T06:59:33Z +59 572 2020-02-15T06:59:33Z +59 644 2020-02-15T06:59:33Z +59 650 2020-02-15T06:59:33Z +59 689 2020-02-15T06:59:33Z +59 694 2020-02-15T06:59:33Z +59 702 2020-02-15T06:59:33Z +59 713 2020-02-15T06:59:33Z +59 749 2020-02-15T06:59:33Z +59 772 2020-02-15T06:59:33Z +59 853 2020-02-15T06:59:33Z +59 862 2020-02-15T06:59:33Z +59 943 2020-02-15T06:59:33Z +59 946 2020-02-15T06:59:33Z +59 984 2020-02-15T06:59:33Z +60 31 2020-02-15T06:59:33Z +60 85 2020-02-15T06:59:33Z +60 133 2020-02-15T06:59:33Z +60 142 2020-02-15T06:59:33Z +60 177 2020-02-15T06:59:33Z +60 179 2020-02-15T06:59:33Z +60 186 2020-02-15T06:59:33Z +60 222 2020-02-15T06:59:33Z +60 235 2020-02-15T06:59:33Z +60 239 2020-02-15T06:59:33Z +60 253 2020-02-15T06:59:33Z +60 262 2020-02-15T06:59:33Z +60 297 2020-02-15T06:59:33Z +60 299 2020-02-15T06:59:33Z +60 334 2020-02-15T06:59:33Z +60 376 2020-02-15T06:59:33Z +60 423 2020-02-15T06:59:33Z +60 436 2020-02-15T06:59:33Z +60 493 2020-02-15T06:59:33Z +60 534 2020-02-15T06:59:33Z +60 551 2020-02-15T06:59:33Z +60 658 2020-02-15T06:59:33Z +60 665 2020-02-15T06:59:33Z +60 679 2020-02-15T06:59:33Z +60 754 2020-02-15T06:59:33Z +60 771 2020-02-15T06:59:33Z +60 783 2020-02-15T06:59:33Z +60 784 2020-02-15T06:59:33Z +60 805 2020-02-15T06:59:33Z +60 830 2020-02-15T06:59:33Z +60 835 2020-02-15T06:59:33Z +60 928 2020-02-15T06:59:33Z +60 952 2020-02-15T06:59:33Z +60 971 2020-02-15T06:59:33Z +60 986 2020-02-15T06:59:33Z +61 235 2020-02-15T06:59:33Z +61 237 2020-02-15T06:59:33Z +61 307 2020-02-15T06:59:33Z +61 362 2020-02-15T06:59:33Z +61 372 2020-02-15T06:59:33Z +61 374 2020-02-15T06:59:33Z +61 423 2020-02-15T06:59:33Z +61 433 2020-02-15T06:59:33Z +61 508 2020-02-15T06:59:33Z +61 518 2020-02-15T06:59:33Z +61 519 2020-02-15T06:59:33Z +61 535 2020-02-15T06:59:33Z +61 537 2020-02-15T06:59:33Z +61 585 2020-02-15T06:59:33Z +61 639 2020-02-15T06:59:33Z +61 648 2020-02-15T06:59:33Z +61 649 2020-02-15T06:59:33Z +61 703 2020-02-15T06:59:33Z +61 752 2020-02-15T06:59:33Z +61 766 2020-02-15T06:59:33Z +61 767 2020-02-15T06:59:33Z +61 780 2020-02-15T06:59:33Z +61 831 2020-02-15T06:59:33Z +61 832 2020-02-15T06:59:33Z +61 990 2020-02-15T06:59:33Z +62 6 2020-02-15T06:59:33Z +62 42 2020-02-15T06:59:33Z +62 54 2020-02-15T06:59:33Z +62 100 2020-02-15T06:59:33Z +62 101 2020-02-15T06:59:33Z +62 129 2020-02-15T06:59:33Z +62 198 2020-02-15T06:59:33Z +62 211 2020-02-15T06:59:33Z +62 231 2020-02-15T06:59:33Z +62 272 2020-02-15T06:59:33Z +62 295 2020-02-15T06:59:33Z +62 337 2020-02-15T06:59:33Z +62 375 2020-02-15T06:59:33Z +62 385 2020-02-15T06:59:33Z +62 393 2020-02-15T06:59:33Z +62 398 2020-02-15T06:59:33Z +62 406 2020-02-15T06:59:33Z +62 413 2020-02-15T06:59:33Z +62 428 2020-02-15T06:59:33Z +62 445 2020-02-15T06:59:33Z +62 457 2020-02-15T06:59:33Z +62 465 2020-02-15T06:59:33Z +62 688 2020-02-15T06:59:33Z +62 707 2020-02-15T06:59:33Z +62 719 2020-02-15T06:59:33Z +62 951 2020-02-15T06:59:33Z +62 981 2020-02-15T06:59:33Z +62 988 2020-02-15T06:59:33Z +62 990 2020-02-15T06:59:33Z +63 73 2020-02-15T06:59:33Z +63 134 2020-02-15T06:59:33Z +63 167 2020-02-15T06:59:33Z +63 208 2020-02-15T06:59:33Z +63 225 2020-02-15T06:59:33Z +63 248 2020-02-15T06:59:33Z +63 249 2020-02-15T06:59:33Z +63 278 2020-02-15T06:59:33Z +63 392 2020-02-15T06:59:33Z +63 517 2020-02-15T06:59:33Z +63 633 2020-02-15T06:59:33Z +63 763 2020-02-15T06:59:33Z +63 781 2020-02-15T06:59:33Z +63 809 2020-02-15T06:59:33Z +63 893 2020-02-15T06:59:33Z +63 932 2020-02-15T06:59:33Z +63 944 2020-02-15T06:59:33Z +63 945 2020-02-15T06:59:33Z +63 981 2020-02-15T06:59:33Z +64 3 2020-02-15T06:59:33Z +64 10 2020-02-15T06:59:33Z +64 37 2020-02-15T06:59:33Z +64 87 2020-02-15T06:59:33Z +64 88 2020-02-15T06:59:33Z +64 124 2020-02-15T06:59:33Z +64 197 2020-02-15T06:59:33Z +64 280 2020-02-15T06:59:33Z +64 291 2020-02-15T06:59:33Z +64 307 2020-02-15T06:59:33Z +64 335 2020-02-15T06:59:33Z +64 345 2020-02-15T06:59:33Z +64 448 2020-02-15T06:59:33Z +64 469 2020-02-15T06:59:33Z +64 471 2020-02-15T06:59:33Z +64 506 2020-02-15T06:59:33Z +64 543 2020-02-15T06:59:33Z +64 557 2020-02-15T06:59:33Z +64 569 2020-02-15T06:59:33Z +64 572 2020-02-15T06:59:33Z +64 597 2020-02-15T06:59:33Z +64 616 2020-02-15T06:59:33Z +64 646 2020-02-15T06:59:33Z +64 694 2020-02-15T06:59:33Z +64 832 2020-02-15T06:59:33Z +64 852 2020-02-15T06:59:33Z +64 860 2020-02-15T06:59:33Z +64 921 2020-02-15T06:59:33Z +64 925 2020-02-15T06:59:33Z +64 980 2020-02-15T06:59:33Z +65 39 2020-02-15T06:59:33Z +65 46 2020-02-15T06:59:33Z +65 97 2020-02-15T06:59:33Z +65 106 2020-02-15T06:59:33Z +65 117 2020-02-15T06:59:33Z +65 125 2020-02-15T06:59:33Z +65 158 2020-02-15T06:59:33Z +65 276 2020-02-15T06:59:33Z +65 305 2020-02-15T06:59:33Z +65 338 2020-02-15T06:59:33Z +65 347 2020-02-15T06:59:33Z +65 371 2020-02-15T06:59:33Z +65 398 2020-02-15T06:59:33Z +65 471 2020-02-15T06:59:33Z +65 475 2020-02-15T06:59:33Z +65 476 2020-02-15T06:59:33Z +65 491 2020-02-15T06:59:33Z +65 496 2020-02-15T06:59:33Z +65 516 2020-02-15T06:59:33Z +65 517 2020-02-15T06:59:33Z +65 541 2020-02-15T06:59:33Z +65 556 2020-02-15T06:59:33Z +65 571 2020-02-15T06:59:33Z +65 577 2020-02-15T06:59:33Z +65 615 2020-02-15T06:59:33Z +65 658 2020-02-15T06:59:33Z +65 683 2020-02-15T06:59:33Z +65 694 2020-02-15T06:59:33Z +65 714 2020-02-15T06:59:33Z +65 735 2020-02-15T06:59:33Z +65 852 2020-02-15T06:59:33Z +65 938 2020-02-15T06:59:33Z +65 951 2020-02-15T06:59:33Z +65 965 2020-02-15T06:59:33Z +66 55 2020-02-15T06:59:33Z +66 143 2020-02-15T06:59:33Z +66 207 2020-02-15T06:59:33Z +66 226 2020-02-15T06:59:33Z +66 229 2020-02-15T06:59:33Z +66 230 2020-02-15T06:59:33Z +66 283 2020-02-15T06:59:33Z +66 300 2020-02-15T06:59:33Z +66 342 2020-02-15T06:59:33Z +66 350 2020-02-15T06:59:33Z +66 361 2020-02-15T06:59:33Z +66 376 2020-02-15T06:59:33Z +66 424 2020-02-15T06:59:33Z +66 434 2020-02-15T06:59:33Z +66 553 2020-02-15T06:59:33Z +66 608 2020-02-15T06:59:33Z +66 676 2020-02-15T06:59:33Z +66 697 2020-02-15T06:59:33Z +66 706 2020-02-15T06:59:33Z +66 725 2020-02-15T06:59:33Z +66 769 2020-02-15T06:59:33Z +66 793 2020-02-15T06:59:33Z +66 829 2020-02-15T06:59:33Z +66 871 2020-02-15T06:59:33Z +66 909 2020-02-15T06:59:33Z +66 915 2020-02-15T06:59:33Z +66 928 2020-02-15T06:59:33Z +66 951 2020-02-15T06:59:33Z +66 957 2020-02-15T06:59:33Z +66 960 2020-02-15T06:59:33Z +66 999 2020-02-15T06:59:33Z +67 24 2020-02-15T06:59:33Z +67 57 2020-02-15T06:59:33Z +67 67 2020-02-15T06:59:33Z +67 144 2020-02-15T06:59:33Z +67 242 2020-02-15T06:59:33Z +67 244 2020-02-15T06:59:33Z +67 256 2020-02-15T06:59:33Z +67 408 2020-02-15T06:59:33Z +67 477 2020-02-15T06:59:33Z +67 496 2020-02-15T06:59:33Z +67 512 2020-02-15T06:59:33Z +67 576 2020-02-15T06:59:33Z +67 601 2020-02-15T06:59:33Z +67 725 2020-02-15T06:59:33Z +67 726 2020-02-15T06:59:33Z +67 731 2020-02-15T06:59:33Z +67 766 2020-02-15T06:59:33Z +67 861 2020-02-15T06:59:33Z +67 870 2020-02-15T06:59:33Z +67 915 2020-02-15T06:59:33Z +67 945 2020-02-15T06:59:33Z +67 972 2020-02-15T06:59:33Z +67 981 2020-02-15T06:59:33Z +68 9 2020-02-15T06:59:33Z +68 45 2020-02-15T06:59:33Z +68 133 2020-02-15T06:59:33Z +68 161 2020-02-15T06:59:33Z +68 205 2020-02-15T06:59:33Z +68 213 2020-02-15T06:59:33Z +68 215 2020-02-15T06:59:33Z +68 255 2020-02-15T06:59:33Z +68 296 2020-02-15T06:59:33Z +68 315 2020-02-15T06:59:33Z +68 325 2020-02-15T06:59:33Z +68 331 2020-02-15T06:59:33Z +68 347 2020-02-15T06:59:33Z +68 357 2020-02-15T06:59:33Z +68 378 2020-02-15T06:59:33Z +68 380 2020-02-15T06:59:33Z +68 386 2020-02-15T06:59:33Z +68 396 2020-02-15T06:59:33Z +68 435 2020-02-15T06:59:33Z +68 497 2020-02-15T06:59:33Z +68 607 2020-02-15T06:59:33Z +68 654 2020-02-15T06:59:33Z +68 665 2020-02-15T06:59:33Z +68 671 2020-02-15T06:59:33Z +68 706 2020-02-15T06:59:33Z +68 747 2020-02-15T06:59:33Z +68 834 2020-02-15T06:59:33Z +68 839 2020-02-15T06:59:33Z +68 840 2020-02-15T06:59:33Z +68 971 2020-02-15T06:59:33Z +69 15 2020-02-15T06:59:33Z +69 88 2020-02-15T06:59:33Z +69 111 2020-02-15T06:59:33Z +69 202 2020-02-15T06:59:33Z +69 236 2020-02-15T06:59:33Z +69 292 2020-02-15T06:59:33Z +69 300 2020-02-15T06:59:33Z +69 306 2020-02-15T06:59:33Z +69 374 2020-02-15T06:59:33Z +69 396 2020-02-15T06:59:33Z +69 452 2020-02-15T06:59:33Z +69 466 2020-02-15T06:59:33Z +69 529 2020-02-15T06:59:33Z +69 612 2020-02-15T06:59:33Z +69 720 2020-02-15T06:59:33Z +69 722 2020-02-15T06:59:33Z +69 761 2020-02-15T06:59:33Z +69 791 2020-02-15T06:59:33Z +69 864 2020-02-15T06:59:33Z +69 877 2020-02-15T06:59:33Z +69 914 2020-02-15T06:59:33Z +70 50 2020-02-15T06:59:33Z +70 53 2020-02-15T06:59:33Z +70 92 2020-02-15T06:59:33Z +70 202 2020-02-15T06:59:33Z +70 227 2020-02-15T06:59:33Z +70 249 2020-02-15T06:59:33Z +70 290 2020-02-15T06:59:33Z +70 304 2020-02-15T06:59:33Z +70 343 2020-02-15T06:59:33Z +70 414 2020-02-15T06:59:33Z +70 453 2020-02-15T06:59:33Z +70 466 2020-02-15T06:59:33Z +70 504 2020-02-15T06:59:33Z +70 584 2020-02-15T06:59:33Z +70 628 2020-02-15T06:59:33Z +70 654 2020-02-15T06:59:33Z +70 725 2020-02-15T06:59:33Z +70 823 2020-02-15T06:59:33Z +70 834 2020-02-15T06:59:33Z +70 856 2020-02-15T06:59:33Z +70 869 2020-02-15T06:59:33Z +70 953 2020-02-15T06:59:33Z +70 964 2020-02-15T06:59:33Z +71 26 2020-02-15T06:59:33Z +71 52 2020-02-15T06:59:33Z +71 233 2020-02-15T06:59:33Z +71 317 2020-02-15T06:59:33Z +71 359 2020-02-15T06:59:33Z +71 362 2020-02-15T06:59:33Z +71 385 2020-02-15T06:59:33Z +71 399 2020-02-15T06:59:33Z +71 450 2020-02-15T06:59:33Z +71 532 2020-02-15T06:59:33Z +71 560 2020-02-15T06:59:33Z +71 574 2020-02-15T06:59:33Z +71 638 2020-02-15T06:59:33Z +71 773 2020-02-15T06:59:33Z +71 833 2020-02-15T06:59:33Z +71 874 2020-02-15T06:59:33Z +71 918 2020-02-15T06:59:33Z +71 956 2020-02-15T06:59:33Z +72 34 2020-02-15T06:59:33Z +72 144 2020-02-15T06:59:33Z +72 237 2020-02-15T06:59:33Z +72 249 2020-02-15T06:59:33Z +72 286 2020-02-15T06:59:33Z +72 296 2020-02-15T06:59:33Z +72 325 2020-02-15T06:59:33Z +72 331 2020-02-15T06:59:33Z +72 405 2020-02-15T06:59:33Z +72 450 2020-02-15T06:59:33Z +72 550 2020-02-15T06:59:33Z +72 609 2020-02-15T06:59:33Z +72 623 2020-02-15T06:59:33Z +72 636 2020-02-15T06:59:33Z +72 640 2020-02-15T06:59:33Z +72 665 2020-02-15T06:59:33Z +72 718 2020-02-15T06:59:33Z +72 743 2020-02-15T06:59:33Z +72 757 2020-02-15T06:59:33Z +72 773 2020-02-15T06:59:33Z +72 854 2020-02-15T06:59:33Z +72 865 2020-02-15T06:59:33Z +72 938 2020-02-15T06:59:33Z +72 956 2020-02-15T06:59:33Z +72 964 2020-02-15T06:59:33Z +72 969 2020-02-15T06:59:33Z +73 36 2020-02-15T06:59:33Z +73 45 2020-02-15T06:59:33Z +73 51 2020-02-15T06:59:33Z +73 77 2020-02-15T06:59:33Z +73 148 2020-02-15T06:59:33Z +73 245 2020-02-15T06:59:33Z +73 275 2020-02-15T06:59:33Z +73 322 2020-02-15T06:59:33Z +73 374 2020-02-15T06:59:33Z +73 379 2020-02-15T06:59:33Z +73 467 2020-02-15T06:59:33Z +73 548 2020-02-15T06:59:33Z +73 561 2020-02-15T06:59:33Z +73 562 2020-02-15T06:59:33Z +73 565 2020-02-15T06:59:33Z +73 627 2020-02-15T06:59:33Z +73 666 2020-02-15T06:59:33Z +73 667 2020-02-15T06:59:33Z +73 707 2020-02-15T06:59:33Z +73 748 2020-02-15T06:59:33Z +73 772 2020-02-15T06:59:33Z +73 823 2020-02-15T06:59:33Z +73 936 2020-02-15T06:59:33Z +73 946 2020-02-15T06:59:33Z +73 950 2020-02-15T06:59:33Z +73 998 2020-02-15T06:59:33Z +74 28 2020-02-15T06:59:33Z +74 44 2020-02-15T06:59:33Z +74 117 2020-02-15T06:59:33Z +74 185 2020-02-15T06:59:33Z +74 192 2020-02-15T06:59:33Z +74 203 2020-02-15T06:59:33Z +74 263 2020-02-15T06:59:33Z +74 321 2020-02-15T06:59:33Z +74 415 2020-02-15T06:59:33Z +74 484 2020-02-15T06:59:33Z +74 503 2020-02-15T06:59:33Z +74 537 2020-02-15T06:59:33Z +74 543 2020-02-15T06:59:33Z +74 617 2020-02-15T06:59:33Z +74 626 2020-02-15T06:59:33Z +74 637 2020-02-15T06:59:33Z +74 663 2020-02-15T06:59:33Z +74 704 2020-02-15T06:59:33Z +74 720 2020-02-15T06:59:33Z +74 747 2020-02-15T06:59:33Z +74 780 2020-02-15T06:59:33Z +74 804 2020-02-15T06:59:33Z +74 834 2020-02-15T06:59:33Z +74 836 2020-02-15T06:59:33Z +74 848 2020-02-15T06:59:33Z +74 872 2020-02-15T06:59:33Z +74 902 2020-02-15T06:59:33Z +74 956 2020-02-15T06:59:33Z +75 12 2020-02-15T06:59:33Z +75 34 2020-02-15T06:59:33Z +75 143 2020-02-15T06:59:33Z +75 170 2020-02-15T06:59:33Z +75 222 2020-02-15T06:59:33Z +75 301 2020-02-15T06:59:33Z +75 347 2020-02-15T06:59:33Z +75 372 2020-02-15T06:59:33Z +75 436 2020-02-15T06:59:33Z +75 445 2020-02-15T06:59:33Z +75 446 2020-02-15T06:59:33Z +75 492 2020-02-15T06:59:33Z +75 498 2020-02-15T06:59:33Z +75 508 2020-02-15T06:59:33Z +75 541 2020-02-15T06:59:33Z +75 547 2020-02-15T06:59:33Z +75 579 2020-02-15T06:59:33Z +75 645 2020-02-15T06:59:33Z +75 667 2020-02-15T06:59:33Z +75 744 2020-02-15T06:59:33Z +75 764 2020-02-15T06:59:33Z +75 780 2020-02-15T06:59:33Z +75 870 2020-02-15T06:59:33Z +75 920 2020-02-15T06:59:33Z +76 60 2020-02-15T06:59:33Z +76 66 2020-02-15T06:59:33Z +76 68 2020-02-15T06:59:33Z +76 95 2020-02-15T06:59:33Z +76 122 2020-02-15T06:59:33Z +76 187 2020-02-15T06:59:33Z +76 223 2020-02-15T06:59:33Z +76 234 2020-02-15T06:59:33Z +76 251 2020-02-15T06:59:33Z +76 348 2020-02-15T06:59:33Z +76 444 2020-02-15T06:59:33Z +76 464 2020-02-15T06:59:33Z +76 474 2020-02-15T06:59:33Z +76 498 2020-02-15T06:59:33Z +76 568 2020-02-15T06:59:33Z +76 604 2020-02-15T06:59:33Z +76 606 2020-02-15T06:59:33Z +76 642 2020-02-15T06:59:33Z +76 648 2020-02-15T06:59:33Z +76 650 2020-02-15T06:59:33Z +76 709 2020-02-15T06:59:33Z +76 760 2020-02-15T06:59:33Z +76 765 2020-02-15T06:59:33Z +76 781 2020-02-15T06:59:33Z +76 850 2020-02-15T06:59:33Z +76 862 2020-02-15T06:59:33Z +76 866 2020-02-15T06:59:33Z +76 870 2020-02-15T06:59:33Z +76 912 2020-02-15T06:59:33Z +76 935 2020-02-15T06:59:33Z +76 958 2020-02-15T06:59:33Z +77 13 2020-02-15T06:59:33Z +77 22 2020-02-15T06:59:33Z +77 40 2020-02-15T06:59:33Z +77 73 2020-02-15T06:59:33Z +77 78 2020-02-15T06:59:33Z +77 153 2020-02-15T06:59:33Z +77 224 2020-02-15T06:59:33Z +77 240 2020-02-15T06:59:33Z +77 245 2020-02-15T06:59:33Z +77 261 2020-02-15T06:59:33Z +77 343 2020-02-15T06:59:33Z +77 442 2020-02-15T06:59:33Z +77 458 2020-02-15T06:59:33Z +77 538 2020-02-15T06:59:33Z +77 566 2020-02-15T06:59:33Z +77 612 2020-02-15T06:59:33Z +77 635 2020-02-15T06:59:33Z +77 694 2020-02-15T06:59:33Z +77 749 2020-02-15T06:59:33Z +77 938 2020-02-15T06:59:33Z +77 943 2020-02-15T06:59:33Z +77 963 2020-02-15T06:59:33Z +77 969 2020-02-15T06:59:33Z +77 993 2020-02-15T06:59:33Z +78 86 2020-02-15T06:59:33Z +78 239 2020-02-15T06:59:33Z +78 260 2020-02-15T06:59:33Z +78 261 2020-02-15T06:59:33Z +78 265 2020-02-15T06:59:33Z +78 301 2020-02-15T06:59:33Z +78 387 2020-02-15T06:59:33Z +78 393 2020-02-15T06:59:33Z +78 428 2020-02-15T06:59:33Z +78 457 2020-02-15T06:59:33Z +78 505 2020-02-15T06:59:33Z +78 520 2020-02-15T06:59:33Z +78 530 2020-02-15T06:59:33Z +78 549 2020-02-15T06:59:33Z +78 552 2020-02-15T06:59:33Z +78 599 2020-02-15T06:59:33Z +78 670 2020-02-15T06:59:33Z +78 674 2020-02-15T06:59:33Z +78 689 2020-02-15T06:59:33Z +78 762 2020-02-15T06:59:33Z +78 767 2020-02-15T06:59:33Z +78 811 2020-02-15T06:59:33Z +78 852 2020-02-15T06:59:33Z +78 880 2020-02-15T06:59:33Z +78 963 2020-02-15T06:59:33Z +78 968 2020-02-15T06:59:33Z +79 32 2020-02-15T06:59:33Z +79 33 2020-02-15T06:59:33Z +79 40 2020-02-15T06:59:33Z +79 141 2020-02-15T06:59:33Z +79 205 2020-02-15T06:59:33Z +79 230 2020-02-15T06:59:33Z +79 242 2020-02-15T06:59:33Z +79 262 2020-02-15T06:59:33Z +79 267 2020-02-15T06:59:33Z +79 269 2020-02-15T06:59:33Z +79 299 2020-02-15T06:59:33Z +79 367 2020-02-15T06:59:33Z +79 428 2020-02-15T06:59:33Z +79 430 2020-02-15T06:59:33Z +79 473 2020-02-15T06:59:33Z +79 607 2020-02-15T06:59:33Z +79 628 2020-02-15T06:59:33Z +79 634 2020-02-15T06:59:33Z +79 646 2020-02-15T06:59:33Z +79 727 2020-02-15T06:59:33Z +79 750 2020-02-15T06:59:33Z +79 753 2020-02-15T06:59:33Z +79 769 2020-02-15T06:59:33Z +79 776 2020-02-15T06:59:33Z +79 788 2020-02-15T06:59:33Z +79 840 2020-02-15T06:59:33Z +79 853 2020-02-15T06:59:33Z +79 916 2020-02-15T06:59:33Z +80 69 2020-02-15T06:59:33Z +80 118 2020-02-15T06:59:33Z +80 124 2020-02-15T06:59:33Z +80 175 2020-02-15T06:59:33Z +80 207 2020-02-15T06:59:33Z +80 212 2020-02-15T06:59:33Z +80 260 2020-02-15T06:59:33Z +80 262 2020-02-15T06:59:33Z +80 280 2020-02-15T06:59:33Z +80 341 2020-02-15T06:59:33Z +80 342 2020-02-15T06:59:33Z +80 343 2020-02-15T06:59:33Z +80 362 2020-02-15T06:59:33Z +80 436 2020-02-15T06:59:33Z +80 475 2020-02-15T06:59:33Z +80 553 2020-02-15T06:59:33Z +80 619 2020-02-15T06:59:33Z +80 622 2020-02-15T06:59:33Z +80 680 2020-02-15T06:59:33Z +80 687 2020-02-15T06:59:33Z +80 688 2020-02-15T06:59:33Z +80 709 2020-02-15T06:59:33Z +80 788 2020-02-15T06:59:33Z +80 807 2020-02-15T06:59:33Z +80 858 2020-02-15T06:59:33Z +80 888 2020-02-15T06:59:33Z +80 941 2020-02-15T06:59:33Z +80 979 2020-02-15T06:59:33Z +81 4 2020-02-15T06:59:33Z +81 11 2020-02-15T06:59:33Z +81 59 2020-02-15T06:59:33Z +81 89 2020-02-15T06:59:33Z +81 178 2020-02-15T06:59:33Z +81 186 2020-02-15T06:59:33Z +81 194 2020-02-15T06:59:33Z +81 215 2020-02-15T06:59:33Z +81 219 2020-02-15T06:59:33Z +81 232 2020-02-15T06:59:33Z +81 260 2020-02-15T06:59:33Z +81 267 2020-02-15T06:59:33Z +81 268 2020-02-15T06:59:33Z +81 304 2020-02-15T06:59:33Z +81 332 2020-02-15T06:59:33Z +81 389 2020-02-15T06:59:33Z +81 398 2020-02-15T06:59:33Z +81 453 2020-02-15T06:59:33Z +81 458 2020-02-15T06:59:33Z +81 465 2020-02-15T06:59:33Z +81 505 2020-02-15T06:59:33Z +81 508 2020-02-15T06:59:33Z +81 527 2020-02-15T06:59:33Z +81 545 2020-02-15T06:59:33Z +81 564 2020-02-15T06:59:33Z +81 578 2020-02-15T06:59:33Z +81 579 2020-02-15T06:59:33Z +81 613 2020-02-15T06:59:33Z +81 619 2020-02-15T06:59:33Z +81 643 2020-02-15T06:59:33Z +81 692 2020-02-15T06:59:33Z +81 710 2020-02-15T06:59:33Z +81 729 2020-02-15T06:59:33Z +81 761 2020-02-15T06:59:33Z +81 827 2020-02-15T06:59:33Z +81 910 2020-02-15T06:59:33Z +82 17 2020-02-15T06:59:33Z +82 33 2020-02-15T06:59:33Z +82 104 2020-02-15T06:59:33Z +82 143 2020-02-15T06:59:33Z +82 188 2020-02-15T06:59:33Z +82 242 2020-02-15T06:59:33Z +82 247 2020-02-15T06:59:33Z +82 290 2020-02-15T06:59:33Z +82 306 2020-02-15T06:59:33Z +82 316 2020-02-15T06:59:33Z +82 344 2020-02-15T06:59:33Z +82 453 2020-02-15T06:59:33Z +82 468 2020-02-15T06:59:33Z +82 480 2020-02-15T06:59:33Z +82 497 2020-02-15T06:59:33Z +82 503 2020-02-15T06:59:33Z +82 527 2020-02-15T06:59:33Z +82 551 2020-02-15T06:59:33Z +82 561 2020-02-15T06:59:33Z +82 750 2020-02-15T06:59:33Z +82 787 2020-02-15T06:59:33Z +82 802 2020-02-15T06:59:33Z +82 838 2020-02-15T06:59:33Z +82 839 2020-02-15T06:59:33Z +82 870 2020-02-15T06:59:33Z +82 877 2020-02-15T06:59:33Z +82 893 2020-02-15T06:59:33Z +82 911 2020-02-15T06:59:33Z +82 954 2020-02-15T06:59:33Z +82 978 2020-02-15T06:59:33Z +82 985 2020-02-15T06:59:33Z +83 49 2020-02-15T06:59:33Z +83 52 2020-02-15T06:59:33Z +83 58 2020-02-15T06:59:33Z +83 110 2020-02-15T06:59:33Z +83 120 2020-02-15T06:59:33Z +83 121 2020-02-15T06:59:33Z +83 135 2020-02-15T06:59:33Z +83 165 2020-02-15T06:59:33Z +83 217 2020-02-15T06:59:33Z +83 247 2020-02-15T06:59:33Z +83 249 2020-02-15T06:59:33Z +83 263 2020-02-15T06:59:33Z +83 268 2020-02-15T06:59:33Z +83 279 2020-02-15T06:59:33Z +83 281 2020-02-15T06:59:33Z +83 339 2020-02-15T06:59:33Z +83 340 2020-02-15T06:59:33Z +83 369 2020-02-15T06:59:33Z +83 412 2020-02-15T06:59:33Z +83 519 2020-02-15T06:59:33Z +83 529 2020-02-15T06:59:33Z +83 615 2020-02-15T06:59:33Z +83 631 2020-02-15T06:59:33Z +83 655 2020-02-15T06:59:33Z +83 672 2020-02-15T06:59:33Z +83 686 2020-02-15T06:59:33Z +83 719 2020-02-15T06:59:33Z +83 764 2020-02-15T06:59:33Z +83 777 2020-02-15T06:59:33Z +83 784 2020-02-15T06:59:33Z +83 833 2020-02-15T06:59:33Z +83 873 2020-02-15T06:59:33Z +83 932 2020-02-15T06:59:33Z +84 19 2020-02-15T06:59:33Z +84 39 2020-02-15T06:59:33Z +84 46 2020-02-15T06:59:33Z +84 175 2020-02-15T06:59:33Z +84 238 2020-02-15T06:59:33Z +84 281 2020-02-15T06:59:33Z +84 290 2020-02-15T06:59:33Z +84 312 2020-02-15T06:59:33Z +84 317 2020-02-15T06:59:33Z +84 413 2020-02-15T06:59:33Z +84 414 2020-02-15T06:59:33Z +84 460 2020-02-15T06:59:33Z +84 479 2020-02-15T06:59:33Z +84 491 2020-02-15T06:59:33Z +84 529 2020-02-15T06:59:33Z +84 540 2020-02-15T06:59:33Z +84 566 2020-02-15T06:59:33Z +84 574 2020-02-15T06:59:33Z +84 589 2020-02-15T06:59:33Z +84 616 2020-02-15T06:59:33Z +84 646 2020-02-15T06:59:33Z +84 703 2020-02-15T06:59:33Z +84 729 2020-02-15T06:59:33Z +84 764 2020-02-15T06:59:33Z +84 782 2020-02-15T06:59:33Z +84 809 2020-02-15T06:59:33Z +84 830 2020-02-15T06:59:33Z +84 843 2020-02-15T06:59:33Z +84 887 2020-02-15T06:59:33Z +84 975 2020-02-15T06:59:33Z +84 996 2020-02-15T06:59:33Z +85 2 2020-02-15T06:59:33Z +85 14 2020-02-15T06:59:33Z +85 72 2020-02-15T06:59:33Z +85 85 2020-02-15T06:59:33Z +85 92 2020-02-15T06:59:33Z +85 148 2020-02-15T06:59:33Z +85 216 2020-02-15T06:59:33Z +85 290 2020-02-15T06:59:33Z +85 296 2020-02-15T06:59:33Z +85 297 2020-02-15T06:59:33Z +85 337 2020-02-15T06:59:33Z +85 383 2020-02-15T06:59:33Z +85 421 2020-02-15T06:59:33Z +85 446 2020-02-15T06:59:33Z +85 461 2020-02-15T06:59:33Z +85 475 2020-02-15T06:59:33Z +85 478 2020-02-15T06:59:33Z +85 522 2020-02-15T06:59:33Z +85 543 2020-02-15T06:59:33Z +85 558 2020-02-15T06:59:33Z +85 591 2020-02-15T06:59:33Z +85 630 2020-02-15T06:59:33Z +85 678 2020-02-15T06:59:33Z +85 711 2020-02-15T06:59:33Z +85 761 2020-02-15T06:59:33Z +85 812 2020-02-15T06:59:33Z +85 869 2020-02-15T06:59:33Z +85 875 2020-02-15T06:59:33Z +85 895 2020-02-15T06:59:33Z +85 957 2020-02-15T06:59:33Z +85 960 2020-02-15T06:59:33Z +86 137 2020-02-15T06:59:33Z +86 163 2020-02-15T06:59:33Z +86 196 2020-02-15T06:59:33Z +86 216 2020-02-15T06:59:33Z +86 249 2020-02-15T06:59:33Z +86 303 2020-02-15T06:59:33Z +86 331 2020-02-15T06:59:33Z +86 364 2020-02-15T06:59:33Z +86 391 2020-02-15T06:59:33Z +86 432 2020-02-15T06:59:33Z +86 482 2020-02-15T06:59:33Z +86 486 2020-02-15T06:59:33Z +86 519 2020-02-15T06:59:33Z +86 520 2020-02-15T06:59:33Z +86 548 2020-02-15T06:59:33Z +86 623 2020-02-15T06:59:33Z +86 631 2020-02-15T06:59:33Z +86 636 2020-02-15T06:59:33Z +86 752 2020-02-15T06:59:33Z +86 760 2020-02-15T06:59:33Z +86 808 2020-02-15T06:59:33Z +86 857 2020-02-15T06:59:33Z +86 878 2020-02-15T06:59:33Z +86 893 2020-02-15T06:59:33Z +86 905 2020-02-15T06:59:33Z +86 923 2020-02-15T06:59:33Z +86 929 2020-02-15T06:59:33Z +87 48 2020-02-15T06:59:33Z +87 157 2020-02-15T06:59:33Z +87 161 2020-02-15T06:59:33Z +87 199 2020-02-15T06:59:33Z +87 207 2020-02-15T06:59:33Z +87 250 2020-02-15T06:59:33Z +87 253 2020-02-15T06:59:33Z +87 312 2020-02-15T06:59:33Z +87 421 2020-02-15T06:59:33Z +87 570 2020-02-15T06:59:33Z +87 599 2020-02-15T06:59:33Z +87 606 2020-02-15T06:59:33Z +87 654 2020-02-15T06:59:33Z +87 679 2020-02-15T06:59:33Z +87 706 2020-02-15T06:59:33Z +87 718 2020-02-15T06:59:33Z +87 721 2020-02-15T06:59:33Z +87 830 2020-02-15T06:59:33Z +87 870 2020-02-15T06:59:33Z +87 952 2020-02-15T06:59:33Z +87 961 2020-02-15T06:59:33Z +88 4 2020-02-15T06:59:33Z +88 76 2020-02-15T06:59:33Z +88 87 2020-02-15T06:59:33Z +88 128 2020-02-15T06:59:33Z +88 170 2020-02-15T06:59:33Z +88 193 2020-02-15T06:59:33Z +88 234 2020-02-15T06:59:33Z +88 304 2020-02-15T06:59:33Z +88 602 2020-02-15T06:59:33Z +88 620 2020-02-15T06:59:33Z +88 668 2020-02-15T06:59:33Z +88 717 2020-02-15T06:59:33Z +88 785 2020-02-15T06:59:33Z +88 819 2020-02-15T06:59:33Z +88 839 2020-02-15T06:59:33Z +88 881 2020-02-15T06:59:33Z +88 908 2020-02-15T06:59:33Z +88 929 2020-02-15T06:59:33Z +88 940 2020-02-15T06:59:33Z +88 968 2020-02-15T06:59:33Z +89 47 2020-02-15T06:59:33Z +89 103 2020-02-15T06:59:33Z +89 117 2020-02-15T06:59:33Z +89 162 2020-02-15T06:59:33Z +89 182 2020-02-15T06:59:33Z +89 187 2020-02-15T06:59:33Z +89 212 2020-02-15T06:59:33Z +89 254 2020-02-15T06:59:33Z +89 266 2020-02-15T06:59:33Z +89 306 2020-02-15T06:59:33Z +89 342 2020-02-15T06:59:33Z +89 406 2020-02-15T06:59:33Z +89 410 2020-02-15T06:59:33Z +89 446 2020-02-15T06:59:33Z +89 473 2020-02-15T06:59:33Z +89 488 2020-02-15T06:59:33Z +89 529 2020-02-15T06:59:33Z +89 542 2020-02-15T06:59:33Z +89 564 2020-02-15T06:59:33Z +89 697 2020-02-15T06:59:33Z +89 833 2020-02-15T06:59:33Z +89 864 2020-02-15T06:59:33Z +89 970 2020-02-15T06:59:33Z +89 976 2020-02-15T06:59:33Z +90 2 2020-02-15T06:59:33Z +90 11 2020-02-15T06:59:33Z +90 100 2020-02-15T06:59:33Z +90 197 2020-02-15T06:59:33Z +90 212 2020-02-15T06:59:33Z +90 262 2020-02-15T06:59:33Z +90 303 2020-02-15T06:59:33Z +90 330 2020-02-15T06:59:33Z +90 363 2020-02-15T06:59:33Z +90 374 2020-02-15T06:59:33Z +90 384 2020-02-15T06:59:33Z +90 385 2020-02-15T06:59:33Z +90 391 2020-02-15T06:59:33Z +90 406 2020-02-15T06:59:33Z +90 433 2020-02-15T06:59:33Z +90 442 2020-02-15T06:59:33Z +90 451 2020-02-15T06:59:33Z +90 520 2020-02-15T06:59:33Z +90 529 2020-02-15T06:59:33Z +90 542 2020-02-15T06:59:33Z +90 586 2020-02-15T06:59:33Z +90 633 2020-02-15T06:59:33Z +90 663 2020-02-15T06:59:33Z +90 676 2020-02-15T06:59:33Z +90 771 2020-02-15T06:59:33Z +90 817 2020-02-15T06:59:33Z +90 838 2020-02-15T06:59:33Z +90 855 2020-02-15T06:59:33Z +90 858 2020-02-15T06:59:33Z +90 868 2020-02-15T06:59:33Z +90 880 2020-02-15T06:59:33Z +90 901 2020-02-15T06:59:33Z +90 925 2020-02-15T06:59:33Z +91 13 2020-02-15T06:59:33Z +91 25 2020-02-15T06:59:33Z +91 48 2020-02-15T06:59:33Z +91 176 2020-02-15T06:59:33Z +91 181 2020-02-15T06:59:33Z +91 190 2020-02-15T06:59:33Z +91 335 2020-02-15T06:59:33Z +91 416 2020-02-15T06:59:33Z +91 447 2020-02-15T06:59:33Z +91 480 2020-02-15T06:59:33Z +91 493 2020-02-15T06:59:33Z +91 509 2020-02-15T06:59:33Z +91 511 2020-02-15T06:59:33Z +91 608 2020-02-15T06:59:33Z +91 807 2020-02-15T06:59:33Z +91 829 2020-02-15T06:59:33Z +91 849 2020-02-15T06:59:33Z +91 859 2020-02-15T06:59:33Z +91 941 2020-02-15T06:59:33Z +91 982 2020-02-15T06:59:33Z +92 90 2020-02-15T06:59:33Z +92 94 2020-02-15T06:59:33Z +92 103 2020-02-15T06:59:33Z +92 104 2020-02-15T06:59:33Z +92 123 2020-02-15T06:59:33Z +92 137 2020-02-15T06:59:33Z +92 207 2020-02-15T06:59:33Z +92 229 2020-02-15T06:59:33Z +92 338 2020-02-15T06:59:33Z +92 381 2020-02-15T06:59:33Z +92 436 2020-02-15T06:59:33Z +92 443 2020-02-15T06:59:33Z +92 453 2020-02-15T06:59:33Z +92 470 2020-02-15T06:59:33Z +92 505 2020-02-15T06:59:33Z +92 512 2020-02-15T06:59:33Z +92 543 2020-02-15T06:59:33Z +92 545 2020-02-15T06:59:33Z +92 547 2020-02-15T06:59:33Z +92 553 2020-02-15T06:59:33Z +92 564 2020-02-15T06:59:33Z +92 568 2020-02-15T06:59:33Z +92 618 2020-02-15T06:59:33Z +92 662 2020-02-15T06:59:33Z +92 686 2020-02-15T06:59:33Z +92 699 2020-02-15T06:59:33Z +92 712 2020-02-15T06:59:33Z +92 728 2020-02-15T06:59:33Z +92 802 2020-02-15T06:59:33Z +92 825 2020-02-15T06:59:33Z +92 838 2020-02-15T06:59:33Z +92 889 2020-02-15T06:59:33Z +92 929 2020-02-15T06:59:33Z +92 991 2020-02-15T06:59:33Z +93 71 2020-02-15T06:59:33Z +93 120 2020-02-15T06:59:33Z +93 124 2020-02-15T06:59:33Z +93 280 2020-02-15T06:59:33Z +93 325 2020-02-15T06:59:33Z +93 339 2020-02-15T06:59:33Z +93 427 2020-02-15T06:59:33Z +93 445 2020-02-15T06:59:33Z +93 453 2020-02-15T06:59:33Z +93 473 2020-02-15T06:59:33Z +93 573 2020-02-15T06:59:33Z +93 621 2020-02-15T06:59:33Z +93 644 2020-02-15T06:59:33Z +93 678 2020-02-15T06:59:33Z +93 680 2020-02-15T06:59:33Z +93 699 2020-02-15T06:59:33Z +93 744 2020-02-15T06:59:33Z +93 768 2020-02-15T06:59:33Z +93 777 2020-02-15T06:59:33Z +93 835 2020-02-15T06:59:33Z +93 856 2020-02-15T06:59:33Z +93 874 2020-02-15T06:59:33Z +93 909 2020-02-15T06:59:33Z +93 916 2020-02-15T06:59:33Z +93 982 2020-02-15T06:59:33Z +94 13 2020-02-15T06:59:33Z +94 60 2020-02-15T06:59:33Z +94 76 2020-02-15T06:59:33Z +94 122 2020-02-15T06:59:33Z +94 153 2020-02-15T06:59:33Z +94 193 2020-02-15T06:59:33Z +94 206 2020-02-15T06:59:33Z +94 228 2020-02-15T06:59:33Z +94 270 2020-02-15T06:59:33Z +94 275 2020-02-15T06:59:33Z +94 320 2020-02-15T06:59:33Z +94 322 2020-02-15T06:59:33Z +94 337 2020-02-15T06:59:33Z +94 354 2020-02-15T06:59:33Z +94 402 2020-02-15T06:59:33Z +94 428 2020-02-15T06:59:33Z +94 457 2020-02-15T06:59:33Z +94 473 2020-02-15T06:59:33Z +94 475 2020-02-15T06:59:33Z +94 512 2020-02-15T06:59:33Z +94 517 2020-02-15T06:59:33Z +94 521 2020-02-15T06:59:33Z +94 533 2020-02-15T06:59:33Z +94 540 2020-02-15T06:59:33Z +94 548 2020-02-15T06:59:33Z +94 551 2020-02-15T06:59:33Z +94 712 2020-02-15T06:59:33Z +94 713 2020-02-15T06:59:33Z +94 724 2020-02-15T06:59:33Z +94 775 2020-02-15T06:59:33Z +94 788 2020-02-15T06:59:33Z +94 950 2020-02-15T06:59:33Z +94 989 2020-02-15T06:59:33Z +95 22 2020-02-15T06:59:33Z +95 35 2020-02-15T06:59:33Z +95 47 2020-02-15T06:59:33Z +95 52 2020-02-15T06:59:33Z +95 65 2020-02-15T06:59:33Z +95 74 2020-02-15T06:59:33Z +95 126 2020-02-15T06:59:33Z +95 207 2020-02-15T06:59:33Z +95 245 2020-02-15T06:59:33Z +95 294 2020-02-15T06:59:33Z +95 301 2020-02-15T06:59:33Z +95 312 2020-02-15T06:59:33Z +95 329 2020-02-15T06:59:33Z +95 353 2020-02-15T06:59:33Z +95 375 2020-02-15T06:59:33Z +95 420 2020-02-15T06:59:33Z +95 424 2020-02-15T06:59:33Z +95 431 2020-02-15T06:59:33Z +95 498 2020-02-15T06:59:33Z +95 522 2020-02-15T06:59:33Z +95 546 2020-02-15T06:59:33Z +95 551 2020-02-15T06:59:33Z +95 619 2020-02-15T06:59:33Z +95 627 2020-02-15T06:59:33Z +95 690 2020-02-15T06:59:33Z +95 748 2020-02-15T06:59:33Z +95 813 2020-02-15T06:59:33Z +95 828 2020-02-15T06:59:33Z +95 855 2020-02-15T06:59:33Z +95 903 2020-02-15T06:59:33Z +95 923 2020-02-15T06:59:33Z +96 8 2020-02-15T06:59:33Z +96 36 2020-02-15T06:59:33Z +96 40 2020-02-15T06:59:33Z +96 54 2020-02-15T06:59:33Z +96 58 2020-02-15T06:59:33Z +96 66 2020-02-15T06:59:33Z +96 134 2020-02-15T06:59:33Z +96 209 2020-02-15T06:59:33Z +96 244 2020-02-15T06:59:33Z +96 320 2020-02-15T06:59:33Z +96 430 2020-02-15T06:59:33Z +96 452 2020-02-15T06:59:33Z +96 486 2020-02-15T06:59:33Z +96 572 2020-02-15T06:59:33Z +96 590 2020-02-15T06:59:33Z +96 661 2020-02-15T06:59:33Z +96 778 2020-02-15T06:59:33Z +96 832 2020-02-15T06:59:33Z +96 846 2020-02-15T06:59:33Z +96 874 2020-02-15T06:59:33Z +96 945 2020-02-15T06:59:33Z +96 968 2020-02-15T06:59:33Z +96 987 2020-02-15T06:59:33Z +97 143 2020-02-15T06:59:33Z +97 177 2020-02-15T06:59:33Z +97 188 2020-02-15T06:59:33Z +97 197 2020-02-15T06:59:33Z +97 256 2020-02-15T06:59:33Z +97 312 2020-02-15T06:59:33Z +97 342 2020-02-15T06:59:33Z +97 348 2020-02-15T06:59:33Z +97 358 2020-02-15T06:59:33Z +97 370 2020-02-15T06:59:33Z +97 437 2020-02-15T06:59:33Z +97 446 2020-02-15T06:59:33Z +97 466 2020-02-15T06:59:33Z +97 518 2020-02-15T06:59:33Z +97 553 2020-02-15T06:59:33Z +97 561 2020-02-15T06:59:33Z +97 641 2020-02-15T06:59:33Z +97 656 2020-02-15T06:59:33Z +97 728 2020-02-15T06:59:33Z +97 755 2020-02-15T06:59:33Z +97 757 2020-02-15T06:59:33Z +97 826 2020-02-15T06:59:33Z +97 862 2020-02-15T06:59:33Z +97 930 2020-02-15T06:59:33Z +97 933 2020-02-15T06:59:33Z +97 947 2020-02-15T06:59:33Z +97 951 2020-02-15T06:59:33Z +98 66 2020-02-15T06:59:33Z +98 72 2020-02-15T06:59:33Z +98 81 2020-02-15T06:59:33Z +98 87 2020-02-15T06:59:33Z +98 107 2020-02-15T06:59:33Z +98 120 2020-02-15T06:59:33Z +98 183 2020-02-15T06:59:33Z +98 194 2020-02-15T06:59:33Z +98 212 2020-02-15T06:59:33Z +98 297 2020-02-15T06:59:33Z +98 607 2020-02-15T06:59:33Z +98 634 2020-02-15T06:59:33Z +98 686 2020-02-15T06:59:33Z +98 705 2020-02-15T06:59:33Z +98 710 2020-02-15T06:59:33Z +98 721 2020-02-15T06:59:33Z +98 725 2020-02-15T06:59:33Z +98 734 2020-02-15T06:59:33Z +98 738 2020-02-15T06:59:33Z +98 765 2020-02-15T06:59:33Z +98 782 2020-02-15T06:59:33Z +98 824 2020-02-15T06:59:33Z +98 829 2020-02-15T06:59:33Z +98 912 2020-02-15T06:59:33Z +98 955 2020-02-15T06:59:33Z +98 985 2020-02-15T06:59:33Z +98 990 2020-02-15T06:59:33Z +99 7 2020-02-15T06:59:33Z +99 27 2020-02-15T06:59:33Z +99 84 2020-02-15T06:59:33Z +99 250 2020-02-15T06:59:33Z +99 322 2020-02-15T06:59:33Z +99 325 2020-02-15T06:59:33Z +99 381 2020-02-15T06:59:33Z +99 414 2020-02-15T06:59:33Z +99 475 2020-02-15T06:59:33Z +99 490 2020-02-15T06:59:33Z +99 512 2020-02-15T06:59:33Z +99 540 2020-02-15T06:59:33Z +99 572 2020-02-15T06:59:33Z +99 600 2020-02-15T06:59:33Z +99 618 2020-02-15T06:59:33Z +99 620 2020-02-15T06:59:33Z +99 622 2020-02-15T06:59:33Z +99 636 2020-02-15T06:59:33Z +99 672 2020-02-15T06:59:33Z +99 726 2020-02-15T06:59:33Z +99 741 2020-02-15T06:59:33Z +99 796 2020-02-15T06:59:33Z +99 835 2020-02-15T06:59:33Z +99 967 2020-02-15T06:59:33Z +99 978 2020-02-15T06:59:33Z +99 982 2020-02-15T06:59:33Z +100 17 2020-02-15T06:59:33Z +100 118 2020-02-15T06:59:33Z +100 250 2020-02-15T06:59:33Z +100 411 2020-02-15T06:59:33Z +100 414 2020-02-15T06:59:33Z +100 513 2020-02-15T06:59:33Z +100 563 2020-02-15T06:59:33Z +100 642 2020-02-15T06:59:33Z +100 714 2020-02-15T06:59:33Z +100 718 2020-02-15T06:59:33Z +100 759 2020-02-15T06:59:33Z +100 779 2020-02-15T06:59:33Z +100 815 2020-02-15T06:59:33Z +100 846 2020-02-15T06:59:33Z +100 850 2020-02-15T06:59:33Z +100 872 2020-02-15T06:59:33Z +100 877 2020-02-15T06:59:33Z +100 909 2020-02-15T06:59:33Z +100 919 2020-02-15T06:59:33Z +100 944 2020-02-15T06:59:33Z +100 967 2020-02-15T06:59:33Z +100 979 2020-02-15T06:59:33Z +100 991 2020-02-15T06:59:33Z +100 992 2020-02-15T06:59:33Z +101 60 2020-02-15T06:59:33Z +101 66 2020-02-15T06:59:33Z +101 85 2020-02-15T06:59:33Z +101 146 2020-02-15T06:59:33Z +101 189 2020-02-15T06:59:33Z +101 250 2020-02-15T06:59:33Z +101 255 2020-02-15T06:59:33Z +101 263 2020-02-15T06:59:33Z +101 275 2020-02-15T06:59:33Z +101 289 2020-02-15T06:59:33Z +101 491 2020-02-15T06:59:33Z +101 494 2020-02-15T06:59:33Z +101 511 2020-02-15T06:59:33Z +101 568 2020-02-15T06:59:33Z +101 608 2020-02-15T06:59:33Z +101 617 2020-02-15T06:59:33Z +101 655 2020-02-15T06:59:33Z +101 662 2020-02-15T06:59:33Z +101 700 2020-02-15T06:59:33Z +101 702 2020-02-15T06:59:33Z +101 758 2020-02-15T06:59:33Z +101 774 2020-02-15T06:59:33Z +101 787 2020-02-15T06:59:33Z +101 828 2020-02-15T06:59:33Z +101 841 2020-02-15T06:59:33Z +101 928 2020-02-15T06:59:33Z +101 932 2020-02-15T06:59:33Z +101 936 2020-02-15T06:59:33Z +101 941 2020-02-15T06:59:33Z +101 978 2020-02-15T06:59:33Z +101 980 2020-02-15T06:59:33Z +101 984 2020-02-15T06:59:33Z +101 988 2020-02-15T06:59:33Z +102 20 2020-02-15T06:59:33Z +102 34 2020-02-15T06:59:33Z +102 53 2020-02-15T06:59:33Z +102 123 2020-02-15T06:59:33Z +102 124 2020-02-15T06:59:33Z +102 194 2020-02-15T06:59:33Z +102 200 2020-02-15T06:59:33Z +102 205 2020-02-15T06:59:33Z +102 268 2020-02-15T06:59:34Z +102 326 2020-02-15T06:59:34Z +102 329 2020-02-15T06:59:34Z +102 334 2020-02-15T06:59:34Z +102 351 2020-02-15T06:59:34Z +102 418 2020-02-15T06:59:34Z +102 431 2020-02-15T06:59:34Z +102 446 2020-02-15T06:59:34Z +102 485 2020-02-15T06:59:34Z +102 508 2020-02-15T06:59:34Z +102 517 2020-02-15T06:59:34Z +102 521 2020-02-15T06:59:34Z +102 526 2020-02-15T06:59:34Z +102 529 2020-02-15T06:59:34Z +102 544 2020-02-15T06:59:34Z +102 600 2020-02-15T06:59:34Z +102 605 2020-02-15T06:59:34Z +102 606 2020-02-15T06:59:34Z +102 624 2020-02-15T06:59:34Z +102 631 2020-02-15T06:59:34Z +102 712 2020-02-15T06:59:34Z +102 728 2020-02-15T06:59:34Z +102 744 2020-02-15T06:59:34Z +102 796 2020-02-15T06:59:34Z +102 802 2020-02-15T06:59:34Z +102 810 2020-02-15T06:59:34Z +102 828 2020-02-15T06:59:34Z +102 837 2020-02-15T06:59:34Z +102 845 2020-02-15T06:59:34Z +102 852 2020-02-15T06:59:34Z +102 958 2020-02-15T06:59:34Z +102 979 2020-02-15T06:59:34Z +102 980 2020-02-15T06:59:34Z +103 5 2020-02-15T06:59:34Z +103 118 2020-02-15T06:59:34Z +103 130 2020-02-15T06:59:34Z +103 197 2020-02-15T06:59:34Z +103 199 2020-02-15T06:59:34Z +103 206 2020-02-15T06:59:34Z +103 215 2020-02-15T06:59:34Z +103 221 2020-02-15T06:59:34Z +103 271 2020-02-15T06:59:34Z +103 285 2020-02-15T06:59:34Z +103 315 2020-02-15T06:59:34Z +103 318 2020-02-15T06:59:34Z +103 333 2020-02-15T06:59:34Z +103 347 2020-02-15T06:59:34Z +103 356 2020-02-15T06:59:34Z +103 360 2020-02-15T06:59:34Z +103 378 2020-02-15T06:59:34Z +103 437 2020-02-15T06:59:34Z +103 585 2020-02-15T06:59:34Z +103 609 2020-02-15T06:59:34Z +103 639 2020-02-15T06:59:34Z +103 643 2020-02-15T06:59:34Z +103 692 2020-02-15T06:59:34Z +103 735 2020-02-15T06:59:34Z +103 822 2020-02-15T06:59:34Z +103 895 2020-02-15T06:59:34Z +103 903 2020-02-15T06:59:34Z +103 912 2020-02-15T06:59:34Z +103 942 2020-02-15T06:59:34Z +103 956 2020-02-15T06:59:34Z +104 19 2020-02-15T06:59:34Z +104 39 2020-02-15T06:59:34Z +104 40 2020-02-15T06:59:34Z +104 59 2020-02-15T06:59:34Z +104 70 2020-02-15T06:59:34Z +104 136 2020-02-15T06:59:34Z +104 156 2020-02-15T06:59:34Z +104 184 2020-02-15T06:59:34Z +104 198 2020-02-15T06:59:34Z +104 233 2020-02-15T06:59:34Z +104 259 2020-02-15T06:59:34Z +104 287 2020-02-15T06:59:34Z +104 309 2020-02-15T06:59:34Z +104 313 2020-02-15T06:59:34Z +104 394 2020-02-15T06:59:34Z +104 401 2020-02-15T06:59:34Z +104 463 2020-02-15T06:59:34Z +104 506 2020-02-15T06:59:34Z +104 516 2020-02-15T06:59:34Z +104 583 2020-02-15T06:59:34Z +104 600 2020-02-15T06:59:34Z +104 607 2020-02-15T06:59:34Z +104 657 2020-02-15T06:59:34Z +104 677 2020-02-15T06:59:34Z +104 739 2020-02-15T06:59:34Z +104 892 2020-02-15T06:59:34Z +104 904 2020-02-15T06:59:34Z +104 926 2020-02-15T06:59:34Z +104 945 2020-02-15T06:59:34Z +104 984 2020-02-15T06:59:34Z +104 999 2020-02-15T06:59:34Z +105 12 2020-02-15T06:59:34Z +105 15 2020-02-15T06:59:34Z +105 21 2020-02-15T06:59:34Z +105 29 2020-02-15T06:59:34Z +105 42 2020-02-15T06:59:34Z +105 116 2020-02-15T06:59:34Z +105 158 2020-02-15T06:59:34Z +105 239 2020-02-15T06:59:34Z +105 280 2020-02-15T06:59:34Z +105 283 2020-02-15T06:59:34Z +105 315 2020-02-15T06:59:34Z +105 333 2020-02-15T06:59:34Z +105 372 2020-02-15T06:59:34Z +105 377 2020-02-15T06:59:34Z +105 530 2020-02-15T06:59:34Z +105 558 2020-02-15T06:59:34Z +105 561 2020-02-15T06:59:34Z +105 606 2020-02-15T06:59:34Z +105 649 2020-02-15T06:59:34Z +105 686 2020-02-15T06:59:34Z +105 750 2020-02-15T06:59:34Z +105 795 2020-02-15T06:59:34Z +105 831 2020-02-15T06:59:34Z +105 835 2020-02-15T06:59:34Z +105 858 2020-02-15T06:59:34Z +105 864 2020-02-15T06:59:34Z +105 893 2020-02-15T06:59:34Z +105 906 2020-02-15T06:59:34Z +105 910 2020-02-15T06:59:34Z +105 915 2020-02-15T06:59:34Z +105 954 2020-02-15T06:59:34Z +105 990 2020-02-15T06:59:34Z +105 993 2020-02-15T06:59:34Z +105 994 2020-02-15T06:59:34Z +106 44 2020-02-15T06:59:34Z +106 83 2020-02-15T06:59:34Z +106 108 2020-02-15T06:59:34Z +106 126 2020-02-15T06:59:34Z +106 136 2020-02-15T06:59:34Z +106 166 2020-02-15T06:59:34Z +106 189 2020-02-15T06:59:34Z +106 194 2020-02-15T06:59:34Z +106 204 2020-02-15T06:59:34Z +106 229 2020-02-15T06:59:34Z +106 241 2020-02-15T06:59:34Z +106 345 2020-02-15T06:59:34Z +106 365 2020-02-15T06:59:34Z +106 399 2020-02-15T06:59:34Z +106 439 2020-02-15T06:59:34Z +106 457 2020-02-15T06:59:34Z +106 469 2020-02-15T06:59:34Z +106 500 2020-02-15T06:59:34Z +106 505 2020-02-15T06:59:34Z +106 559 2020-02-15T06:59:34Z +106 566 2020-02-15T06:59:34Z +106 585 2020-02-15T06:59:34Z +106 639 2020-02-15T06:59:34Z +106 654 2020-02-15T06:59:34Z +106 659 2020-02-15T06:59:34Z +106 675 2020-02-15T06:59:34Z +106 687 2020-02-15T06:59:34Z +106 752 2020-02-15T06:59:34Z +106 763 2020-02-15T06:59:34Z +106 780 2020-02-15T06:59:34Z +106 858 2020-02-15T06:59:34Z +106 866 2020-02-15T06:59:34Z +106 881 2020-02-15T06:59:34Z +106 894 2020-02-15T06:59:34Z +106 934 2020-02-15T06:59:34Z +107 62 2020-02-15T06:59:34Z +107 112 2020-02-15T06:59:34Z +107 133 2020-02-15T06:59:34Z +107 136 2020-02-15T06:59:34Z +107 138 2020-02-15T06:59:34Z +107 162 2020-02-15T06:59:34Z +107 165 2020-02-15T06:59:34Z +107 172 2020-02-15T06:59:34Z +107 209 2020-02-15T06:59:34Z +107 220 2020-02-15T06:59:34Z +107 239 2020-02-15T06:59:34Z +107 277 2020-02-15T06:59:34Z +107 292 2020-02-15T06:59:34Z +107 338 2020-02-15T06:59:34Z +107 348 2020-02-15T06:59:34Z +107 369 2020-02-15T06:59:34Z +107 388 2020-02-15T06:59:34Z +107 392 2020-02-15T06:59:34Z +107 409 2020-02-15T06:59:34Z +107 430 2020-02-15T06:59:34Z +107 445 2020-02-15T06:59:34Z +107 454 2020-02-15T06:59:34Z +107 458 2020-02-15T06:59:34Z +107 467 2020-02-15T06:59:34Z +107 520 2020-02-15T06:59:34Z +107 534 2020-02-15T06:59:34Z +107 548 2020-02-15T06:59:34Z +107 571 2020-02-15T06:59:34Z +107 574 2020-02-15T06:59:34Z +107 603 2020-02-15T06:59:34Z +107 606 2020-02-15T06:59:34Z +107 637 2020-02-15T06:59:34Z +107 774 2020-02-15T06:59:34Z +107 781 2020-02-15T06:59:34Z +107 796 2020-02-15T06:59:34Z +107 831 2020-02-15T06:59:34Z +107 849 2020-02-15T06:59:34Z +107 859 2020-02-15T06:59:34Z +107 879 2020-02-15T06:59:34Z +107 905 2020-02-15T06:59:34Z +107 973 2020-02-15T06:59:34Z +107 977 2020-02-15T06:59:34Z +108 1 2020-02-15T06:59:34Z +108 6 2020-02-15T06:59:34Z +108 9 2020-02-15T06:59:34Z +108 137 2020-02-15T06:59:34Z +108 208 2020-02-15T06:59:34Z +108 219 2020-02-15T06:59:34Z +108 242 2020-02-15T06:59:34Z +108 278 2020-02-15T06:59:34Z +108 302 2020-02-15T06:59:34Z +108 350 2020-02-15T06:59:34Z +108 378 2020-02-15T06:59:34Z +108 379 2020-02-15T06:59:34Z +108 495 2020-02-15T06:59:34Z +108 507 2020-02-15T06:59:34Z +108 517 2020-02-15T06:59:34Z +108 561 2020-02-15T06:59:34Z +108 567 2020-02-15T06:59:34Z +108 648 2020-02-15T06:59:34Z +108 652 2020-02-15T06:59:34Z +108 655 2020-02-15T06:59:34Z +108 673 2020-02-15T06:59:34Z +108 693 2020-02-15T06:59:34Z +108 696 2020-02-15T06:59:34Z +108 702 2020-02-15T06:59:34Z +108 721 2020-02-15T06:59:34Z +108 733 2020-02-15T06:59:34Z +108 741 2020-02-15T06:59:34Z +108 744 2020-02-15T06:59:34Z +108 887 2020-02-15T06:59:34Z +108 892 2020-02-15T06:59:34Z +108 894 2020-02-15T06:59:34Z +108 920 2020-02-15T06:59:34Z +108 958 2020-02-15T06:59:34Z +108 966 2020-02-15T06:59:34Z +109 12 2020-02-15T06:59:34Z +109 48 2020-02-15T06:59:34Z +109 77 2020-02-15T06:59:34Z +109 157 2020-02-15T06:59:34Z +109 174 2020-02-15T06:59:34Z +109 190 2020-02-15T06:59:34Z +109 243 2020-02-15T06:59:34Z +109 281 2020-02-15T06:59:34Z +109 393 2020-02-15T06:59:34Z +109 463 2020-02-15T06:59:34Z +109 622 2020-02-15T06:59:34Z +109 657 2020-02-15T06:59:34Z +109 694 2020-02-15T06:59:34Z +109 700 2020-02-15T06:59:34Z +109 732 2020-02-15T06:59:34Z +109 753 2020-02-15T06:59:34Z +109 785 2020-02-15T06:59:34Z +109 786 2020-02-15T06:59:34Z +109 863 2020-02-15T06:59:34Z +109 885 2020-02-15T06:59:34Z +109 955 2020-02-15T06:59:34Z +109 967 2020-02-15T06:59:34Z +110 8 2020-02-15T06:59:34Z +110 27 2020-02-15T06:59:34Z +110 62 2020-02-15T06:59:34Z +110 120 2020-02-15T06:59:34Z +110 126 2020-02-15T06:59:34Z +110 156 2020-02-15T06:59:34Z +110 292 2020-02-15T06:59:34Z +110 343 2020-02-15T06:59:34Z +110 360 2020-02-15T06:59:34Z +110 369 2020-02-15T06:59:34Z +110 435 2020-02-15T06:59:34Z +110 513 2020-02-15T06:59:34Z +110 525 2020-02-15T06:59:34Z +110 539 2020-02-15T06:59:34Z +110 545 2020-02-15T06:59:34Z +110 625 2020-02-15T06:59:34Z +110 650 2020-02-15T06:59:34Z +110 801 2020-02-15T06:59:34Z +110 912 2020-02-15T06:59:34Z +110 961 2020-02-15T06:59:34Z +110 987 2020-02-15T06:59:34Z +111 61 2020-02-15T06:59:34Z +111 78 2020-02-15T06:59:34Z +111 98 2020-02-15T06:59:34Z +111 162 2020-02-15T06:59:34Z +111 179 2020-02-15T06:59:34Z +111 194 2020-02-15T06:59:34Z +111 325 2020-02-15T06:59:34Z +111 359 2020-02-15T06:59:34Z +111 382 2020-02-15T06:59:34Z +111 403 2020-02-15T06:59:34Z +111 407 2020-02-15T06:59:34Z +111 414 2020-02-15T06:59:34Z +111 474 2020-02-15T06:59:34Z +111 489 2020-02-15T06:59:34Z +111 508 2020-02-15T06:59:34Z +111 555 2020-02-15T06:59:34Z +111 603 2020-02-15T06:59:34Z +111 608 2020-02-15T06:59:34Z +111 643 2020-02-15T06:59:34Z +111 669 2020-02-15T06:59:34Z +111 679 2020-02-15T06:59:34Z +111 680 2020-02-15T06:59:34Z +111 699 2020-02-15T06:59:34Z +111 731 2020-02-15T06:59:34Z +111 732 2020-02-15T06:59:34Z +111 737 2020-02-15T06:59:34Z +111 744 2020-02-15T06:59:34Z +111 777 2020-02-15T06:59:34Z +111 847 2020-02-15T06:59:34Z +111 894 2020-02-15T06:59:34Z +111 919 2020-02-15T06:59:34Z +111 962 2020-02-15T06:59:34Z +111 973 2020-02-15T06:59:34Z +112 34 2020-02-15T06:59:34Z +112 37 2020-02-15T06:59:34Z +112 151 2020-02-15T06:59:34Z +112 173 2020-02-15T06:59:34Z +112 188 2020-02-15T06:59:34Z +112 231 2020-02-15T06:59:34Z +112 312 2020-02-15T06:59:34Z +112 322 2020-02-15T06:59:34Z +112 443 2020-02-15T06:59:34Z +112 450 2020-02-15T06:59:34Z +112 565 2020-02-15T06:59:34Z +112 603 2020-02-15T06:59:34Z +112 606 2020-02-15T06:59:34Z +112 654 2020-02-15T06:59:34Z +112 666 2020-02-15T06:59:34Z +112 700 2020-02-15T06:59:34Z +112 728 2020-02-15T06:59:34Z +112 772 2020-02-15T06:59:34Z +112 796 2020-02-15T06:59:34Z +112 817 2020-02-15T06:59:34Z +112 829 2020-02-15T06:59:34Z +112 856 2020-02-15T06:59:34Z +112 865 2020-02-15T06:59:34Z +112 869 2020-02-15T06:59:34Z +112 988 2020-02-15T06:59:34Z +113 35 2020-02-15T06:59:34Z +113 84 2020-02-15T06:59:34Z +113 116 2020-02-15T06:59:34Z +113 181 2020-02-15T06:59:34Z +113 218 2020-02-15T06:59:34Z +113 249 2020-02-15T06:59:34Z +113 258 2020-02-15T06:59:34Z +113 292 2020-02-15T06:59:34Z +113 322 2020-02-15T06:59:34Z +113 353 2020-02-15T06:59:34Z +113 403 2020-02-15T06:59:34Z +113 525 2020-02-15T06:59:34Z +113 642 2020-02-15T06:59:34Z +113 656 2020-02-15T06:59:34Z +113 674 2020-02-15T06:59:34Z +113 680 2020-02-15T06:59:34Z +113 700 2020-02-15T06:59:34Z +113 719 2020-02-15T06:59:34Z +113 723 2020-02-15T06:59:34Z +113 726 2020-02-15T06:59:34Z +113 732 2020-02-15T06:59:34Z +113 748 2020-02-15T06:59:34Z +113 838 2020-02-15T06:59:34Z +113 890 2020-02-15T06:59:34Z +113 921 2020-02-15T06:59:34Z +113 969 2020-02-15T06:59:34Z +113 981 2020-02-15T06:59:34Z +114 13 2020-02-15T06:59:34Z +114 68 2020-02-15T06:59:34Z +114 90 2020-02-15T06:59:34Z +114 162 2020-02-15T06:59:34Z +114 188 2020-02-15T06:59:34Z +114 194 2020-02-15T06:59:34Z +114 210 2020-02-15T06:59:34Z +114 237 2020-02-15T06:59:34Z +114 254 2020-02-15T06:59:34Z +114 305 2020-02-15T06:59:34Z +114 339 2020-02-15T06:59:34Z +114 420 2020-02-15T06:59:34Z +114 425 2020-02-15T06:59:34Z +114 452 2020-02-15T06:59:34Z +114 538 2020-02-15T06:59:34Z +114 619 2020-02-15T06:59:34Z +114 757 2020-02-15T06:59:34Z +114 807 2020-02-15T06:59:34Z +114 827 2020-02-15T06:59:34Z +114 841 2020-02-15T06:59:34Z +114 861 2020-02-15T06:59:34Z +114 866 2020-02-15T06:59:34Z +114 913 2020-02-15T06:59:34Z +114 961 2020-02-15T06:59:34Z +114 993 2020-02-15T06:59:34Z +115 49 2020-02-15T06:59:34Z +115 52 2020-02-15T06:59:34Z +115 245 2020-02-15T06:59:34Z +115 246 2020-02-15T06:59:34Z +115 277 2020-02-15T06:59:34Z +115 302 2020-02-15T06:59:34Z +115 379 2020-02-15T06:59:34Z +115 383 2020-02-15T06:59:34Z +115 391 2020-02-15T06:59:34Z +115 428 2020-02-15T06:59:34Z +115 506 2020-02-15T06:59:34Z +115 531 2020-02-15T06:59:34Z +115 607 2020-02-15T06:59:34Z +115 615 2020-02-15T06:59:34Z +115 661 2020-02-15T06:59:34Z +115 671 2020-02-15T06:59:34Z +115 686 2020-02-15T06:59:34Z +115 703 2020-02-15T06:59:34Z +115 714 2020-02-15T06:59:34Z +115 740 2020-02-15T06:59:34Z +115 754 2020-02-15T06:59:34Z +115 846 2020-02-15T06:59:34Z +115 887 2020-02-15T06:59:34Z +115 952 2020-02-15T06:59:34Z +115 955 2020-02-15T06:59:34Z +115 966 2020-02-15T06:59:34Z +115 985 2020-02-15T06:59:34Z +115 994 2020-02-15T06:59:34Z +116 36 2020-02-15T06:59:34Z +116 48 2020-02-15T06:59:34Z +116 88 2020-02-15T06:59:34Z +116 90 2020-02-15T06:59:34Z +116 105 2020-02-15T06:59:34Z +116 128 2020-02-15T06:59:34Z +116 336 2020-02-15T06:59:34Z +116 338 2020-02-15T06:59:34Z +116 384 2020-02-15T06:59:34Z +116 412 2020-02-15T06:59:34Z +116 420 2020-02-15T06:59:34Z +116 451 2020-02-15T06:59:34Z +116 481 2020-02-15T06:59:34Z +116 492 2020-02-15T06:59:34Z +116 584 2020-02-15T06:59:34Z +116 606 2020-02-15T06:59:34Z +116 622 2020-02-15T06:59:34Z +116 647 2020-02-15T06:59:34Z +116 653 2020-02-15T06:59:34Z +116 742 2020-02-15T06:59:34Z +116 784 2020-02-15T06:59:34Z +116 844 2020-02-15T06:59:34Z +116 939 2020-02-15T06:59:34Z +116 956 2020-02-15T06:59:34Z +117 10 2020-02-15T06:59:34Z +117 15 2020-02-15T06:59:34Z +117 42 2020-02-15T06:59:34Z +117 167 2020-02-15T06:59:34Z +117 178 2020-02-15T06:59:34Z +117 190 2020-02-15T06:59:34Z +117 197 2020-02-15T06:59:34Z +117 224 2020-02-15T06:59:34Z +117 246 2020-02-15T06:59:34Z +117 273 2020-02-15T06:59:34Z +117 298 2020-02-15T06:59:34Z +117 316 2020-02-15T06:59:34Z +117 337 2020-02-15T06:59:34Z +117 395 2020-02-15T06:59:34Z +117 423 2020-02-15T06:59:34Z +117 432 2020-02-15T06:59:34Z +117 459 2020-02-15T06:59:34Z +117 468 2020-02-15T06:59:34Z +117 550 2020-02-15T06:59:34Z +117 578 2020-02-15T06:59:34Z +117 707 2020-02-15T06:59:34Z +117 710 2020-02-15T06:59:34Z +117 738 2020-02-15T06:59:34Z +117 739 2020-02-15T06:59:34Z +117 778 2020-02-15T06:59:34Z +117 783 2020-02-15T06:59:34Z +117 785 2020-02-15T06:59:34Z +117 797 2020-02-15T06:59:34Z +117 812 2020-02-15T06:59:34Z +117 831 2020-02-15T06:59:34Z +117 864 2020-02-15T06:59:34Z +117 887 2020-02-15T06:59:34Z +117 926 2020-02-15T06:59:34Z +118 35 2020-02-15T06:59:34Z +118 39 2020-02-15T06:59:34Z +118 41 2020-02-15T06:59:34Z +118 49 2020-02-15T06:59:34Z +118 55 2020-02-15T06:59:34Z +118 136 2020-02-15T06:59:34Z +118 141 2020-02-15T06:59:34Z +118 151 2020-02-15T06:59:34Z +118 311 2020-02-15T06:59:34Z +118 384 2020-02-15T06:59:34Z +118 399 2020-02-15T06:59:34Z +118 499 2020-02-15T06:59:34Z +118 517 2020-02-15T06:59:34Z +118 553 2020-02-15T06:59:34Z +118 558 2020-02-15T06:59:34Z +118 572 2020-02-15T06:59:34Z +118 641 2020-02-15T06:59:34Z +118 656 2020-02-15T06:59:34Z +118 695 2020-02-15T06:59:34Z +118 735 2020-02-15T06:59:34Z +118 788 2020-02-15T06:59:34Z +118 852 2020-02-15T06:59:34Z +118 938 2020-02-15T06:59:34Z +118 957 2020-02-15T06:59:34Z +118 969 2020-02-15T06:59:34Z +119 21 2020-02-15T06:59:34Z +119 49 2020-02-15T06:59:34Z +119 64 2020-02-15T06:59:34Z +119 87 2020-02-15T06:59:34Z +119 143 2020-02-15T06:59:34Z +119 171 2020-02-15T06:59:34Z +119 172 2020-02-15T06:59:34Z +119 173 2020-02-15T06:59:34Z +119 381 2020-02-15T06:59:34Z +119 394 2020-02-15T06:59:34Z +119 412 2020-02-15T06:59:34Z +119 418 2020-02-15T06:59:34Z +119 454 2020-02-15T06:59:34Z +119 509 2020-02-15T06:59:34Z +119 521 2020-02-15T06:59:34Z +119 567 2020-02-15T06:59:34Z +119 570 2020-02-15T06:59:34Z +119 592 2020-02-15T06:59:34Z +119 614 2020-02-15T06:59:34Z +119 636 2020-02-15T06:59:34Z +119 649 2020-02-15T06:59:34Z +119 693 2020-02-15T06:59:34Z +119 738 2020-02-15T06:59:34Z +119 751 2020-02-15T06:59:34Z +119 782 2020-02-15T06:59:34Z +119 786 2020-02-15T06:59:34Z +119 788 2020-02-15T06:59:34Z +119 802 2020-02-15T06:59:34Z +119 858 2020-02-15T06:59:34Z +119 868 2020-02-15T06:59:34Z +119 900 2020-02-15T06:59:34Z +119 939 2020-02-15T06:59:34Z +120 57 2020-02-15T06:59:34Z +120 63 2020-02-15T06:59:34Z +120 144 2020-02-15T06:59:34Z +120 149 2020-02-15T06:59:34Z +120 208 2020-02-15T06:59:34Z +120 231 2020-02-15T06:59:34Z +120 238 2020-02-15T06:59:34Z +120 255 2020-02-15T06:59:34Z +120 414 2020-02-15T06:59:34Z +120 424 2020-02-15T06:59:34Z +120 489 2020-02-15T06:59:34Z +120 513 2020-02-15T06:59:34Z +120 590 2020-02-15T06:59:34Z +120 641 2020-02-15T06:59:34Z +120 642 2020-02-15T06:59:34Z +120 659 2020-02-15T06:59:34Z +120 682 2020-02-15T06:59:34Z +120 691 2020-02-15T06:59:34Z +120 715 2020-02-15T06:59:34Z +120 717 2020-02-15T06:59:34Z +120 722 2020-02-15T06:59:34Z +120 746 2020-02-15T06:59:34Z +120 830 2020-02-15T06:59:34Z +120 894 2020-02-15T06:59:34Z +120 898 2020-02-15T06:59:34Z +120 911 2020-02-15T06:59:34Z +120 994 2020-02-15T06:59:34Z +121 141 2020-02-15T06:59:34Z +121 154 2020-02-15T06:59:34Z +121 161 2020-02-15T06:59:34Z +121 170 2020-02-15T06:59:34Z +121 186 2020-02-15T06:59:34Z +121 198 2020-02-15T06:59:34Z +121 220 2020-02-15T06:59:34Z +121 222 2020-02-15T06:59:34Z +121 284 2020-02-15T06:59:34Z +121 297 2020-02-15T06:59:34Z +121 338 2020-02-15T06:59:34Z +121 353 2020-02-15T06:59:34Z +121 449 2020-02-15T06:59:34Z +121 479 2020-02-15T06:59:34Z +121 517 2020-02-15T06:59:34Z +121 633 2020-02-15T06:59:34Z +121 654 2020-02-15T06:59:34Z +121 658 2020-02-15T06:59:34Z +121 666 2020-02-15T06:59:34Z +121 771 2020-02-15T06:59:34Z +121 780 2020-02-15T06:59:34Z +121 847 2020-02-15T06:59:34Z +121 884 2020-02-15T06:59:34Z +121 885 2020-02-15T06:59:34Z +121 966 2020-02-15T06:59:34Z +122 22 2020-02-15T06:59:34Z +122 29 2020-02-15T06:59:34Z +122 76 2020-02-15T06:59:34Z +122 83 2020-02-15T06:59:34Z +122 157 2020-02-15T06:59:34Z +122 158 2020-02-15T06:59:34Z +122 166 2020-02-15T06:59:34Z +122 227 2020-02-15T06:59:34Z +122 238 2020-02-15T06:59:34Z +122 300 2020-02-15T06:59:34Z +122 307 2020-02-15T06:59:34Z +122 363 2020-02-15T06:59:34Z +122 470 2020-02-15T06:59:34Z +122 489 2020-02-15T06:59:34Z +122 491 2020-02-15T06:59:34Z +122 542 2020-02-15T06:59:34Z +122 620 2020-02-15T06:59:34Z +122 649 2020-02-15T06:59:34Z +122 654 2020-02-15T06:59:34Z +122 673 2020-02-15T06:59:34Z +122 718 2020-02-15T06:59:34Z +122 795 2020-02-15T06:59:34Z +122 957 2020-02-15T06:59:34Z +122 961 2020-02-15T06:59:34Z +122 998 2020-02-15T06:59:34Z +123 3 2020-02-15T06:59:34Z +123 43 2020-02-15T06:59:34Z +123 67 2020-02-15T06:59:34Z +123 105 2020-02-15T06:59:34Z +123 148 2020-02-15T06:59:34Z +123 151 2020-02-15T06:59:34Z +123 185 2020-02-15T06:59:34Z +123 223 2020-02-15T06:59:34Z +123 234 2020-02-15T06:59:34Z +123 245 2020-02-15T06:59:34Z +123 246 2020-02-15T06:59:34Z +123 266 2020-02-15T06:59:34Z +123 286 2020-02-15T06:59:34Z +123 429 2020-02-15T06:59:34Z +123 442 2020-02-15T06:59:34Z +123 446 2020-02-15T06:59:34Z +123 479 2020-02-15T06:59:34Z +123 480 2020-02-15T06:59:34Z +123 494 2020-02-15T06:59:34Z +123 503 2020-02-15T06:59:34Z +123 530 2020-02-15T06:59:34Z +123 576 2020-02-15T06:59:34Z +123 577 2020-02-15T06:59:34Z +123 589 2020-02-15T06:59:34Z +123 593 2020-02-15T06:59:34Z +123 725 2020-02-15T06:59:34Z +123 730 2020-02-15T06:59:34Z +123 786 2020-02-15T06:59:34Z +123 860 2020-02-15T06:59:34Z +123 892 2020-02-15T06:59:34Z +123 926 2020-02-15T06:59:34Z +123 988 2020-02-15T06:59:34Z +124 22 2020-02-15T06:59:34Z +124 64 2020-02-15T06:59:34Z +124 106 2020-02-15T06:59:34Z +124 113 2020-02-15T06:59:34Z +124 190 2020-02-15T06:59:34Z +124 246 2020-02-15T06:59:34Z +124 260 2020-02-15T06:59:34Z +124 263 2020-02-15T06:59:34Z +124 289 2020-02-15T06:59:34Z +124 306 2020-02-15T06:59:34Z +124 312 2020-02-15T06:59:34Z +124 322 2020-02-15T06:59:34Z +124 343 2020-02-15T06:59:34Z +124 449 2020-02-15T06:59:34Z +124 468 2020-02-15T06:59:34Z +124 539 2020-02-15T06:59:34Z +124 601 2020-02-15T06:59:34Z +124 726 2020-02-15T06:59:34Z +124 742 2020-02-15T06:59:34Z +124 775 2020-02-15T06:59:34Z +124 785 2020-02-15T06:59:34Z +124 814 2020-02-15T06:59:34Z +124 858 2020-02-15T06:59:34Z +124 882 2020-02-15T06:59:34Z +124 987 2020-02-15T06:59:34Z +124 997 2020-02-15T06:59:34Z +125 62 2020-02-15T06:59:34Z +125 98 2020-02-15T06:59:34Z +125 100 2020-02-15T06:59:34Z +125 114 2020-02-15T06:59:34Z +125 175 2020-02-15T06:59:34Z +125 188 2020-02-15T06:59:34Z +125 204 2020-02-15T06:59:34Z +125 238 2020-02-15T06:59:34Z +125 250 2020-02-15T06:59:34Z +125 324 2020-02-15T06:59:34Z +125 338 2020-02-15T06:59:34Z +125 361 2020-02-15T06:59:34Z +125 367 2020-02-15T06:59:34Z +125 395 2020-02-15T06:59:34Z +125 414 2020-02-15T06:59:34Z +125 428 2020-02-15T06:59:34Z +125 429 2020-02-15T06:59:34Z +125 450 2020-02-15T06:59:34Z +125 497 2020-02-15T06:59:34Z +125 557 2020-02-15T06:59:34Z +125 568 2020-02-15T06:59:34Z +125 584 2020-02-15T06:59:34Z +125 602 2020-02-15T06:59:34Z +125 623 2020-02-15T06:59:34Z +125 664 2020-02-15T06:59:34Z +125 683 2020-02-15T06:59:34Z +125 710 2020-02-15T06:59:34Z +125 877 2020-02-15T06:59:34Z +125 908 2020-02-15T06:59:34Z +125 949 2020-02-15T06:59:34Z +125 965 2020-02-15T06:59:34Z +126 21 2020-02-15T06:59:34Z +126 34 2020-02-15T06:59:34Z +126 43 2020-02-15T06:59:34Z +126 58 2020-02-15T06:59:34Z +126 85 2020-02-15T06:59:34Z +126 96 2020-02-15T06:59:34Z +126 193 2020-02-15T06:59:34Z +126 194 2020-02-15T06:59:34Z +126 199 2020-02-15T06:59:34Z +126 256 2020-02-15T06:59:34Z +126 263 2020-02-15T06:59:34Z +126 288 2020-02-15T06:59:34Z +126 317 2020-02-15T06:59:34Z +126 347 2020-02-15T06:59:34Z +126 369 2020-02-15T06:59:34Z +126 370 2020-02-15T06:59:34Z +126 419 2020-02-15T06:59:34Z +126 468 2020-02-15T06:59:34Z +126 469 2020-02-15T06:59:34Z +126 545 2020-02-15T06:59:34Z +126 685 2020-02-15T06:59:34Z +126 836 2020-02-15T06:59:34Z +126 860 2020-02-15T06:59:34Z +127 36 2020-02-15T06:59:34Z +127 47 2020-02-15T06:59:34Z +127 48 2020-02-15T06:59:34Z +127 79 2020-02-15T06:59:34Z +127 119 2020-02-15T06:59:34Z +127 141 2020-02-15T06:59:34Z +127 157 2020-02-15T06:59:34Z +127 202 2020-02-15T06:59:34Z +127 286 2020-02-15T06:59:34Z +127 333 2020-02-15T06:59:34Z +127 354 2020-02-15T06:59:34Z +127 366 2020-02-15T06:59:34Z +127 382 2020-02-15T06:59:34Z +127 388 2020-02-15T06:59:34Z +127 411 2020-02-15T06:59:34Z +127 459 2020-02-15T06:59:34Z +127 553 2020-02-15T06:59:34Z +127 573 2020-02-15T06:59:34Z +127 613 2020-02-15T06:59:34Z +127 617 2020-02-15T06:59:34Z +127 641 2020-02-15T06:59:34Z +127 710 2020-02-15T06:59:34Z +127 727 2020-02-15T06:59:34Z +127 749 2020-02-15T06:59:34Z +127 763 2020-02-15T06:59:34Z +127 771 2020-02-15T06:59:34Z +127 791 2020-02-15T06:59:34Z +127 819 2020-02-15T06:59:34Z +127 839 2020-02-15T06:59:34Z +127 846 2020-02-15T06:59:34Z +127 911 2020-02-15T06:59:34Z +127 953 2020-02-15T06:59:34Z +127 970 2020-02-15T06:59:34Z +128 26 2020-02-15T06:59:34Z +128 82 2020-02-15T06:59:34Z +128 119 2020-02-15T06:59:34Z +128 168 2020-02-15T06:59:34Z +128 212 2020-02-15T06:59:34Z +128 238 2020-02-15T06:59:34Z +128 299 2020-02-15T06:59:34Z +128 312 2020-02-15T06:59:34Z +128 326 2020-02-15T06:59:34Z +128 336 2020-02-15T06:59:34Z +128 345 2020-02-15T06:59:34Z +128 407 2020-02-15T06:59:34Z +128 462 2020-02-15T06:59:34Z +128 485 2020-02-15T06:59:34Z +128 516 2020-02-15T06:59:34Z +128 564 2020-02-15T06:59:34Z +128 614 2020-02-15T06:59:34Z +128 650 2020-02-15T06:59:34Z +128 665 2020-02-15T06:59:34Z +128 671 2020-02-15T06:59:34Z +128 693 2020-02-15T06:59:34Z +128 696 2020-02-15T06:59:34Z +128 759 2020-02-15T06:59:34Z +128 774 2020-02-15T06:59:34Z +128 814 2020-02-15T06:59:34Z +128 899 2020-02-15T06:59:34Z +128 912 2020-02-15T06:59:34Z +128 944 2020-02-15T06:59:34Z +128 949 2020-02-15T06:59:34Z +128 965 2020-02-15T06:59:34Z +129 56 2020-02-15T06:59:34Z +129 89 2020-02-15T06:59:34Z +129 101 2020-02-15T06:59:34Z +129 166 2020-02-15T06:59:34Z +129 202 2020-02-15T06:59:34Z +129 230 2020-02-15T06:59:34Z +129 247 2020-02-15T06:59:34Z +129 249 2020-02-15T06:59:34Z +129 348 2020-02-15T06:59:34Z +129 367 2020-02-15T06:59:34Z +129 391 2020-02-15T06:59:34Z +129 418 2020-02-15T06:59:34Z +129 431 2020-02-15T06:59:34Z +129 452 2020-02-15T06:59:34Z +129 471 2020-02-15T06:59:34Z +129 520 2020-02-15T06:59:34Z +129 597 2020-02-15T06:59:34Z +129 602 2020-02-15T06:59:34Z +129 640 2020-02-15T06:59:34Z +129 669 2020-02-15T06:59:34Z +129 684 2020-02-15T06:59:34Z +129 705 2020-02-15T06:59:34Z +129 805 2020-02-15T06:59:34Z +129 826 2020-02-15T06:59:34Z +129 834 2020-02-15T06:59:34Z +129 857 2020-02-15T06:59:34Z +129 910 2020-02-15T06:59:34Z +129 920 2020-02-15T06:59:34Z +129 938 2020-02-15T06:59:34Z +129 962 2020-02-15T06:59:34Z +130 9 2020-02-15T06:59:34Z +130 26 2020-02-15T06:59:34Z +130 37 2020-02-15T06:59:34Z +130 43 2020-02-15T06:59:34Z +130 49 2020-02-15T06:59:34Z +130 57 2020-02-15T06:59:34Z +130 107 2020-02-15T06:59:34Z +130 112 2020-02-15T06:59:34Z +130 208 2020-02-15T06:59:34Z +130 326 2020-02-15T06:59:34Z +130 375 2020-02-15T06:59:34Z +130 416 2020-02-15T06:59:34Z +130 431 2020-02-15T06:59:34Z +130 452 2020-02-15T06:59:34Z +130 453 2020-02-15T06:59:34Z +130 478 2020-02-15T06:59:34Z +130 507 2020-02-15T06:59:34Z +130 525 2020-02-15T06:59:34Z +130 549 2020-02-15T06:59:34Z +130 592 2020-02-15T06:59:34Z +130 702 2020-02-15T06:59:34Z +130 725 2020-02-15T06:59:34Z +130 764 2020-02-15T06:59:34Z +130 809 2020-02-15T06:59:34Z +130 869 2020-02-15T06:59:34Z +130 930 2020-02-15T06:59:34Z +130 981 2020-02-15T06:59:34Z +131 48 2020-02-15T06:59:34Z +131 66 2020-02-15T06:59:34Z +131 94 2020-02-15T06:59:34Z +131 120 2020-02-15T06:59:34Z +131 147 2020-02-15T06:59:34Z +131 206 2020-02-15T06:59:34Z +131 320 2020-02-15T06:59:34Z +131 383 2020-02-15T06:59:34Z +131 432 2020-02-15T06:59:34Z +131 436 2020-02-15T06:59:34Z +131 450 2020-02-15T06:59:34Z +131 479 2020-02-15T06:59:34Z +131 494 2020-02-15T06:59:34Z +131 515 2020-02-15T06:59:34Z +131 539 2020-02-15T06:59:34Z +131 590 2020-02-15T06:59:34Z +131 647 2020-02-15T06:59:34Z +131 693 2020-02-15T06:59:34Z +131 713 2020-02-15T06:59:34Z +131 770 2020-02-15T06:59:34Z +131 798 2020-02-15T06:59:34Z +131 809 2020-02-15T06:59:34Z +131 875 2020-02-15T06:59:34Z +131 881 2020-02-15T06:59:34Z +131 921 2020-02-15T06:59:34Z +132 81 2020-02-15T06:59:34Z +132 82 2020-02-15T06:59:34Z +132 133 2020-02-15T06:59:34Z +132 156 2020-02-15T06:59:34Z +132 162 2020-02-15T06:59:34Z +132 311 2020-02-15T06:59:34Z +132 345 2020-02-15T06:59:34Z +132 377 2020-02-15T06:59:34Z +132 410 2020-02-15T06:59:34Z +132 538 2020-02-15T06:59:34Z +132 562 2020-02-15T06:59:34Z +132 586 2020-02-15T06:59:34Z +132 626 2020-02-15T06:59:34Z +132 637 2020-02-15T06:59:34Z +132 698 2020-02-15T06:59:34Z +132 756 2020-02-15T06:59:34Z +132 806 2020-02-15T06:59:34Z +132 897 2020-02-15T06:59:34Z +132 899 2020-02-15T06:59:34Z +132 904 2020-02-15T06:59:34Z +132 930 2020-02-15T06:59:34Z +132 987 2020-02-15T06:59:34Z +133 7 2020-02-15T06:59:34Z +133 51 2020-02-15T06:59:34Z +133 133 2020-02-15T06:59:34Z +133 172 2020-02-15T06:59:34Z +133 210 2020-02-15T06:59:34Z +133 270 2020-02-15T06:59:34Z +133 280 2020-02-15T06:59:34Z +133 286 2020-02-15T06:59:34Z +133 338 2020-02-15T06:59:34Z +133 342 2020-02-15T06:59:34Z +133 351 2020-02-15T06:59:34Z +133 368 2020-02-15T06:59:34Z +133 385 2020-02-15T06:59:34Z +133 390 2020-02-15T06:59:34Z +133 397 2020-02-15T06:59:34Z +133 410 2020-02-15T06:59:34Z +133 452 2020-02-15T06:59:34Z +133 463 2020-02-15T06:59:34Z +133 514 2020-02-15T06:59:34Z +133 588 2020-02-15T06:59:34Z +133 594 2020-02-15T06:59:34Z +133 635 2020-02-15T06:59:34Z +133 652 2020-02-15T06:59:34Z +133 727 2020-02-15T06:59:34Z +133 806 2020-02-15T06:59:34Z +133 868 2020-02-15T06:59:34Z +133 882 2020-02-15T06:59:34Z +133 894 2020-02-15T06:59:34Z +133 933 2020-02-15T06:59:34Z +133 952 2020-02-15T06:59:34Z +134 132 2020-02-15T06:59:34Z +134 145 2020-02-15T06:59:34Z +134 161 2020-02-15T06:59:34Z +134 219 2020-02-15T06:59:34Z +134 243 2020-02-15T06:59:34Z +134 250 2020-02-15T06:59:34Z +134 278 2020-02-15T06:59:34Z +134 341 2020-02-15T06:59:34Z +134 386 2020-02-15T06:59:34Z +134 413 2020-02-15T06:59:34Z +134 558 2020-02-15T06:59:34Z +134 588 2020-02-15T06:59:34Z +134 624 2020-02-15T06:59:34Z +134 655 2020-02-15T06:59:34Z +134 683 2020-02-15T06:59:34Z +134 690 2020-02-15T06:59:34Z +134 861 2020-02-15T06:59:34Z +134 896 2020-02-15T06:59:34Z +134 897 2020-02-15T06:59:34Z +134 915 2020-02-15T06:59:34Z +134 927 2020-02-15T06:59:34Z +134 936 2020-02-15T06:59:34Z +135 35 2020-02-15T06:59:34Z +135 41 2020-02-15T06:59:34Z +135 65 2020-02-15T06:59:34Z +135 88 2020-02-15T06:59:34Z +135 170 2020-02-15T06:59:34Z +135 269 2020-02-15T06:59:34Z +135 320 2020-02-15T06:59:34Z +135 353 2020-02-15T06:59:34Z +135 357 2020-02-15T06:59:34Z +135 364 2020-02-15T06:59:34Z +135 455 2020-02-15T06:59:34Z +135 458 2020-02-15T06:59:34Z +135 484 2020-02-15T06:59:34Z +135 541 2020-02-15T06:59:34Z +135 553 2020-02-15T06:59:34Z +135 616 2020-02-15T06:59:34Z +135 628 2020-02-15T06:59:34Z +135 719 2020-02-15T06:59:34Z +135 814 2020-02-15T06:59:34Z +135 905 2020-02-15T06:59:34Z +136 20 2020-02-15T06:59:34Z +136 25 2020-02-15T06:59:34Z +136 33 2020-02-15T06:59:34Z +136 56 2020-02-15T06:59:34Z +136 61 2020-02-15T06:59:34Z +136 193 2020-02-15T06:59:34Z +136 214 2020-02-15T06:59:34Z +136 229 2020-02-15T06:59:34Z +136 243 2020-02-15T06:59:34Z +136 256 2020-02-15T06:59:34Z +136 262 2020-02-15T06:59:34Z +136 271 2020-02-15T06:59:34Z +136 288 2020-02-15T06:59:34Z +136 300 2020-02-15T06:59:34Z +136 364 2020-02-15T06:59:34Z +136 401 2020-02-15T06:59:34Z +136 414 2020-02-15T06:59:34Z +136 420 2020-02-15T06:59:34Z +136 474 2020-02-15T06:59:34Z +136 485 2020-02-15T06:59:34Z +136 542 2020-02-15T06:59:34Z +136 552 2020-02-15T06:59:34Z +136 620 2020-02-15T06:59:34Z +136 649 2020-02-15T06:59:34Z +136 686 2020-02-15T06:59:34Z +136 781 2020-02-15T06:59:34Z +136 806 2020-02-15T06:59:34Z +136 808 2020-02-15T06:59:34Z +136 818 2020-02-15T06:59:34Z +136 842 2020-02-15T06:59:34Z +136 933 2020-02-15T06:59:34Z +136 993 2020-02-15T06:59:34Z +137 6 2020-02-15T06:59:34Z +137 14 2020-02-15T06:59:34Z +137 56 2020-02-15T06:59:34Z +137 96 2020-02-15T06:59:34Z +137 160 2020-02-15T06:59:34Z +137 224 2020-02-15T06:59:34Z +137 249 2020-02-15T06:59:34Z +137 254 2020-02-15T06:59:34Z +137 263 2020-02-15T06:59:34Z +137 268 2020-02-15T06:59:34Z +137 304 2020-02-15T06:59:34Z +137 390 2020-02-15T06:59:34Z +137 410 2020-02-15T06:59:34Z +137 433 2020-02-15T06:59:34Z +137 446 2020-02-15T06:59:34Z +137 489 2020-02-15T06:59:34Z +137 530 2020-02-15T06:59:34Z +137 564 2020-02-15T06:59:34Z +137 603 2020-02-15T06:59:34Z +137 610 2020-02-15T06:59:34Z +137 688 2020-02-15T06:59:34Z +137 703 2020-02-15T06:59:34Z +137 745 2020-02-15T06:59:34Z +137 758 2020-02-15T06:59:34Z +137 832 2020-02-15T06:59:34Z +137 841 2020-02-15T06:59:34Z +137 917 2020-02-15T06:59:34Z +138 8 2020-02-15T06:59:34Z +138 52 2020-02-15T06:59:34Z +138 61 2020-02-15T06:59:34Z +138 125 2020-02-15T06:59:34Z +138 157 2020-02-15T06:59:34Z +138 214 2020-02-15T06:59:34Z +138 258 2020-02-15T06:59:34Z +138 376 2020-02-15T06:59:34Z +138 403 2020-02-15T06:59:34Z +138 446 2020-02-15T06:59:34Z +138 453 2020-02-15T06:59:34Z +138 508 2020-02-15T06:59:34Z +138 553 2020-02-15T06:59:34Z +138 561 2020-02-15T06:59:34Z +138 583 2020-02-15T06:59:34Z +138 627 2020-02-15T06:59:34Z +138 639 2020-02-15T06:59:34Z +138 695 2020-02-15T06:59:34Z +138 747 2020-02-15T06:59:34Z +138 879 2020-02-15T06:59:34Z +138 885 2020-02-15T06:59:34Z +138 923 2020-02-15T06:59:34Z +138 970 2020-02-15T06:59:34Z +138 989 2020-02-15T06:59:34Z +139 20 2020-02-15T06:59:34Z +139 35 2020-02-15T06:59:34Z +139 57 2020-02-15T06:59:34Z +139 74 2020-02-15T06:59:34Z +139 90 2020-02-15T06:59:34Z +139 107 2020-02-15T06:59:34Z +139 155 2020-02-15T06:59:34Z +139 170 2020-02-15T06:59:34Z +139 181 2020-02-15T06:59:34Z +139 200 2020-02-15T06:59:34Z +139 229 2020-02-15T06:59:34Z +139 233 2020-02-15T06:59:34Z +139 261 2020-02-15T06:59:34Z +139 262 2020-02-15T06:59:34Z +139 266 2020-02-15T06:59:34Z +139 282 2020-02-15T06:59:34Z +139 284 2020-02-15T06:59:34Z +139 373 2020-02-15T06:59:34Z +139 447 2020-02-15T06:59:34Z +139 489 2020-02-15T06:59:34Z +139 529 2020-02-15T06:59:34Z +139 540 2020-02-15T06:59:34Z +139 570 2020-02-15T06:59:34Z +139 602 2020-02-15T06:59:34Z +139 605 2020-02-15T06:59:34Z +139 636 2020-02-15T06:59:34Z +139 691 2020-02-15T06:59:34Z +139 706 2020-02-15T06:59:34Z +139 719 2020-02-15T06:59:34Z +139 744 2020-02-15T06:59:34Z +139 746 2020-02-15T06:59:34Z +139 862 2020-02-15T06:59:34Z +139 892 2020-02-15T06:59:34Z +140 27 2020-02-15T06:59:34Z +140 77 2020-02-15T06:59:34Z +140 112 2020-02-15T06:59:34Z +140 135 2020-02-15T06:59:34Z +140 185 2020-02-15T06:59:34Z +140 258 2020-02-15T06:59:34Z +140 370 2020-02-15T06:59:34Z +140 373 2020-02-15T06:59:34Z +140 498 2020-02-15T06:59:34Z +140 509 2020-02-15T06:59:34Z +140 576 2020-02-15T06:59:34Z +140 587 2020-02-15T06:59:34Z +140 599 2020-02-15T06:59:34Z +140 608 2020-02-15T06:59:34Z +140 647 2020-02-15T06:59:34Z +140 665 2020-02-15T06:59:34Z +140 670 2020-02-15T06:59:34Z +140 693 2020-02-15T06:59:34Z +140 702 2020-02-15T06:59:34Z +140 729 2020-02-15T06:59:34Z +140 730 2020-02-15T06:59:34Z +140 731 2020-02-15T06:59:34Z +140 736 2020-02-15T06:59:34Z +140 742 2020-02-15T06:59:34Z +140 778 2020-02-15T06:59:34Z +140 820 2020-02-15T06:59:34Z +140 830 2020-02-15T06:59:34Z +140 835 2020-02-15T06:59:34Z +140 857 2020-02-15T06:59:34Z +140 923 2020-02-15T06:59:34Z +140 934 2020-02-15T06:59:34Z +140 999 2020-02-15T06:59:34Z +141 43 2020-02-15T06:59:34Z +141 67 2020-02-15T06:59:34Z +141 188 2020-02-15T06:59:34Z +141 191 2020-02-15T06:59:34Z +141 207 2020-02-15T06:59:34Z +141 223 2020-02-15T06:59:34Z +141 341 2020-02-15T06:59:34Z +141 358 2020-02-15T06:59:34Z +141 380 2020-02-15T06:59:34Z +141 395 2020-02-15T06:59:34Z +141 467 2020-02-15T06:59:34Z +141 491 2020-02-15T06:59:34Z +141 589 2020-02-15T06:59:34Z +141 607 2020-02-15T06:59:34Z +141 673 2020-02-15T06:59:34Z +141 740 2020-02-15T06:59:34Z +141 752 2020-02-15T06:59:34Z +141 768 2020-02-15T06:59:34Z +141 772 2020-02-15T06:59:34Z +141 787 2020-02-15T06:59:34Z +141 821 2020-02-15T06:59:34Z +141 829 2020-02-15T06:59:34Z +141 840 2020-02-15T06:59:34Z +141 849 2020-02-15T06:59:34Z +141 862 2020-02-15T06:59:34Z +141 863 2020-02-15T06:59:34Z +141 909 2020-02-15T06:59:34Z +141 992 2020-02-15T06:59:34Z +142 10 2020-02-15T06:59:34Z +142 18 2020-02-15T06:59:34Z +142 107 2020-02-15T06:59:34Z +142 139 2020-02-15T06:59:34Z +142 186 2020-02-15T06:59:34Z +142 199 2020-02-15T06:59:34Z +142 248 2020-02-15T06:59:34Z +142 328 2020-02-15T06:59:34Z +142 350 2020-02-15T06:59:34Z +142 371 2020-02-15T06:59:34Z +142 470 2020-02-15T06:59:34Z +142 481 2020-02-15T06:59:34Z +142 494 2020-02-15T06:59:34Z +142 501 2020-02-15T06:59:34Z +142 504 2020-02-15T06:59:34Z +142 540 2020-02-15T06:59:34Z +142 554 2020-02-15T06:59:34Z +142 575 2020-02-15T06:59:34Z +142 608 2020-02-15T06:59:34Z +142 710 2020-02-15T06:59:34Z +142 712 2020-02-15T06:59:34Z +142 735 2020-02-15T06:59:34Z +142 759 2020-02-15T06:59:34Z +142 794 2020-02-15T06:59:34Z +142 842 2020-02-15T06:59:34Z +142 859 2020-02-15T06:59:34Z +142 863 2020-02-15T06:59:34Z +142 875 2020-02-15T06:59:34Z +142 906 2020-02-15T06:59:34Z +142 914 2020-02-15T06:59:34Z +142 999 2020-02-15T06:59:34Z +143 47 2020-02-15T06:59:34Z +143 79 2020-02-15T06:59:34Z +143 141 2020-02-15T06:59:34Z +143 175 2020-02-15T06:59:34Z +143 232 2020-02-15T06:59:34Z +143 239 2020-02-15T06:59:34Z +143 316 2020-02-15T06:59:34Z +143 339 2020-02-15T06:59:34Z +143 361 2020-02-15T06:59:34Z +143 386 2020-02-15T06:59:34Z +143 404 2020-02-15T06:59:34Z +143 457 2020-02-15T06:59:34Z +143 485 2020-02-15T06:59:34Z +143 497 2020-02-15T06:59:34Z +143 560 2020-02-15T06:59:34Z +143 576 2020-02-15T06:59:34Z +143 603 2020-02-15T06:59:34Z +143 613 2020-02-15T06:59:34Z +143 659 2020-02-15T06:59:34Z +143 660 2020-02-15T06:59:34Z +143 680 2020-02-15T06:59:34Z +143 687 2020-02-15T06:59:34Z +143 690 2020-02-15T06:59:34Z +143 706 2020-02-15T06:59:34Z +143 792 2020-02-15T06:59:34Z +143 821 2020-02-15T06:59:34Z +143 830 2020-02-15T06:59:34Z +143 872 2020-02-15T06:59:34Z +143 878 2020-02-15T06:59:34Z +143 906 2020-02-15T06:59:34Z +143 958 2020-02-15T06:59:34Z +144 18 2020-02-15T06:59:34Z +144 67 2020-02-15T06:59:34Z +144 79 2020-02-15T06:59:34Z +144 90 2020-02-15T06:59:34Z +144 99 2020-02-15T06:59:34Z +144 105 2020-02-15T06:59:34Z +144 123 2020-02-15T06:59:34Z +144 125 2020-02-15T06:59:34Z +144 127 2020-02-15T06:59:34Z +144 130 2020-02-15T06:59:34Z +144 135 2020-02-15T06:59:34Z +144 164 2020-02-15T06:59:34Z +144 184 2020-02-15T06:59:34Z +144 216 2020-02-15T06:59:34Z +144 228 2020-02-15T06:59:34Z +144 260 2020-02-15T06:59:34Z +144 272 2020-02-15T06:59:34Z +144 291 2020-02-15T06:59:34Z +144 293 2020-02-15T06:59:34Z +144 312 2020-02-15T06:59:34Z +144 393 2020-02-15T06:59:34Z +144 396 2020-02-15T06:59:34Z +144 473 2020-02-15T06:59:34Z +144 504 2020-02-15T06:59:34Z +144 540 2020-02-15T06:59:34Z +144 599 2020-02-15T06:59:34Z +144 668 2020-02-15T06:59:34Z +144 702 2020-02-15T06:59:34Z +144 753 2020-02-15T06:59:34Z +144 762 2020-02-15T06:59:34Z +144 776 2020-02-15T06:59:34Z +144 785 2020-02-15T06:59:34Z +144 845 2020-02-15T06:59:34Z +144 894 2020-02-15T06:59:34Z +144 953 2020-02-15T06:59:34Z +145 39 2020-02-15T06:59:34Z +145 109 2020-02-15T06:59:34Z +145 120 2020-02-15T06:59:34Z +145 154 2020-02-15T06:59:34Z +145 155 2020-02-15T06:59:34Z +145 243 2020-02-15T06:59:34Z +145 293 2020-02-15T06:59:34Z +145 402 2020-02-15T06:59:34Z +145 409 2020-02-15T06:59:34Z +145 457 2020-02-15T06:59:34Z +145 475 2020-02-15T06:59:34Z +145 487 2020-02-15T06:59:34Z +145 494 2020-02-15T06:59:34Z +145 527 2020-02-15T06:59:34Z +145 592 2020-02-15T06:59:34Z +145 625 2020-02-15T06:59:34Z +145 629 2020-02-15T06:59:34Z +145 641 2020-02-15T06:59:34Z +145 661 2020-02-15T06:59:34Z +145 664 2020-02-15T06:59:34Z +145 692 2020-02-15T06:59:34Z +145 713 2020-02-15T06:59:34Z +145 726 2020-02-15T06:59:34Z +145 748 2020-02-15T06:59:34Z +145 822 2020-02-15T06:59:34Z +145 893 2020-02-15T06:59:34Z +145 923 2020-02-15T06:59:34Z +145 953 2020-02-15T06:59:34Z +146 12 2020-02-15T06:59:34Z +146 16 2020-02-15T06:59:34Z +146 33 2020-02-15T06:59:34Z +146 117 2020-02-15T06:59:34Z +146 177 2020-02-15T06:59:34Z +146 191 2020-02-15T06:59:34Z +146 197 2020-02-15T06:59:34Z +146 207 2020-02-15T06:59:34Z +146 218 2020-02-15T06:59:34Z +146 278 2020-02-15T06:59:34Z +146 296 2020-02-15T06:59:34Z +146 314 2020-02-15T06:59:34Z +146 320 2020-02-15T06:59:34Z +146 372 2020-02-15T06:59:34Z +146 384 2020-02-15T06:59:34Z +146 402 2020-02-15T06:59:34Z +146 410 2020-02-15T06:59:34Z +146 427 2020-02-15T06:59:34Z +146 429 2020-02-15T06:59:34Z +146 512 2020-02-15T06:59:34Z +146 514 2020-02-15T06:59:34Z +146 571 2020-02-15T06:59:34Z +146 591 2020-02-15T06:59:34Z +146 720 2020-02-15T06:59:34Z +146 731 2020-02-15T06:59:34Z +146 734 2020-02-15T06:59:34Z +146 871 2020-02-15T06:59:34Z +146 909 2020-02-15T06:59:34Z +146 922 2020-02-15T06:59:34Z +146 945 2020-02-15T06:59:34Z +146 955 2020-02-15T06:59:34Z +146 966 2020-02-15T06:59:34Z +146 969 2020-02-15T06:59:34Z +147 4 2020-02-15T06:59:34Z +147 85 2020-02-15T06:59:34Z +147 131 2020-02-15T06:59:34Z +147 139 2020-02-15T06:59:34Z +147 145 2020-02-15T06:59:34Z +147 178 2020-02-15T06:59:34Z +147 251 2020-02-15T06:59:34Z +147 254 2020-02-15T06:59:34Z +147 295 2020-02-15T06:59:34Z +147 298 2020-02-15T06:59:34Z +147 305 2020-02-15T06:59:34Z +147 310 2020-02-15T06:59:34Z +147 318 2020-02-15T06:59:34Z +147 333 2020-02-15T06:59:34Z +147 341 2020-02-15T06:59:34Z +147 351 2020-02-15T06:59:34Z +147 394 2020-02-15T06:59:34Z +147 402 2020-02-15T06:59:34Z +147 405 2020-02-15T06:59:34Z +147 410 2020-02-15T06:59:34Z +147 431 2020-02-15T06:59:34Z +147 443 2020-02-15T06:59:34Z +147 508 2020-02-15T06:59:34Z +147 554 2020-02-15T06:59:34Z +147 563 2020-02-15T06:59:34Z +147 649 2020-02-15T06:59:34Z +147 688 2020-02-15T06:59:34Z +147 708 2020-02-15T06:59:34Z +147 864 2020-02-15T06:59:34Z +147 957 2020-02-15T06:59:34Z +147 987 2020-02-15T06:59:34Z +148 27 2020-02-15T06:59:34Z +148 57 2020-02-15T06:59:34Z +148 133 2020-02-15T06:59:34Z +148 149 2020-02-15T06:59:34Z +148 226 2020-02-15T06:59:34Z +148 342 2020-02-15T06:59:34Z +148 368 2020-02-15T06:59:34Z +148 422 2020-02-15T06:59:34Z +148 468 2020-02-15T06:59:34Z +148 633 2020-02-15T06:59:34Z +148 718 2020-02-15T06:59:34Z +148 768 2020-02-15T06:59:34Z +148 772 2020-02-15T06:59:34Z +148 792 2020-02-15T06:59:34Z +149 53 2020-02-15T06:59:34Z +149 72 2020-02-15T06:59:34Z +149 95 2020-02-15T06:59:34Z +149 118 2020-02-15T06:59:34Z +149 139 2020-02-15T06:59:34Z +149 146 2020-02-15T06:59:34Z +149 153 2020-02-15T06:59:34Z +149 159 2020-02-15T06:59:34Z +149 169 2020-02-15T06:59:34Z +149 178 2020-02-15T06:59:34Z +149 188 2020-02-15T06:59:34Z +149 193 2020-02-15T06:59:34Z +149 339 2020-02-15T06:59:34Z +149 354 2020-02-15T06:59:34Z +149 362 2020-02-15T06:59:34Z +149 365 2020-02-15T06:59:34Z +149 458 2020-02-15T06:59:34Z +149 631 2020-02-15T06:59:34Z +149 670 2020-02-15T06:59:34Z +149 685 2020-02-15T06:59:34Z +149 761 2020-02-15T06:59:34Z +149 782 2020-02-15T06:59:34Z +149 810 2020-02-15T06:59:34Z +149 811 2020-02-15T06:59:34Z +149 899 2020-02-15T06:59:34Z +149 905 2020-02-15T06:59:34Z +149 913 2020-02-15T06:59:34Z +149 921 2020-02-15T06:59:34Z +149 947 2020-02-15T06:59:34Z +149 949 2020-02-15T06:59:34Z +149 992 2020-02-15T06:59:34Z +150 23 2020-02-15T06:59:34Z +150 63 2020-02-15T06:59:34Z +150 75 2020-02-15T06:59:34Z +150 94 2020-02-15T06:59:34Z +150 105 2020-02-15T06:59:34Z +150 168 2020-02-15T06:59:34Z +150 190 2020-02-15T06:59:34Z +150 206 2020-02-15T06:59:34Z +150 233 2020-02-15T06:59:34Z +150 270 2020-02-15T06:59:34Z +150 285 2020-02-15T06:59:34Z +150 306 2020-02-15T06:59:34Z +150 386 2020-02-15T06:59:34Z +150 433 2020-02-15T06:59:34Z +150 446 2020-02-15T06:59:34Z +150 447 2020-02-15T06:59:34Z +150 468 2020-02-15T06:59:34Z +150 508 2020-02-15T06:59:34Z +150 542 2020-02-15T06:59:34Z +150 551 2020-02-15T06:59:34Z +150 629 2020-02-15T06:59:34Z +150 647 2020-02-15T06:59:34Z +150 672 2020-02-15T06:59:34Z +150 697 2020-02-15T06:59:34Z +150 728 2020-02-15T06:59:34Z +150 777 2020-02-15T06:59:34Z +150 854 2020-02-15T06:59:34Z +150 873 2020-02-15T06:59:34Z +150 880 2020-02-15T06:59:34Z +150 887 2020-02-15T06:59:34Z +150 889 2020-02-15T06:59:34Z +150 892 2020-02-15T06:59:34Z +150 953 2020-02-15T06:59:34Z +150 962 2020-02-15T06:59:34Z +151 131 2020-02-15T06:59:34Z +151 144 2020-02-15T06:59:34Z +151 167 2020-02-15T06:59:34Z +151 170 2020-02-15T06:59:34Z +151 217 2020-02-15T06:59:34Z +151 232 2020-02-15T06:59:34Z +151 342 2020-02-15T06:59:34Z +151 367 2020-02-15T06:59:34Z +151 370 2020-02-15T06:59:34Z +151 382 2020-02-15T06:59:34Z +151 451 2020-02-15T06:59:34Z +151 463 2020-02-15T06:59:34Z +151 482 2020-02-15T06:59:34Z +151 501 2020-02-15T06:59:34Z +151 527 2020-02-15T06:59:34Z +151 539 2020-02-15T06:59:34Z +151 570 2020-02-15T06:59:34Z +151 574 2020-02-15T06:59:34Z +151 634 2020-02-15T06:59:34Z +151 658 2020-02-15T06:59:34Z +151 665 2020-02-15T06:59:34Z +151 703 2020-02-15T06:59:34Z +151 880 2020-02-15T06:59:34Z +151 892 2020-02-15T06:59:34Z +151 895 2020-02-15T06:59:34Z +151 989 2020-02-15T06:59:34Z +152 59 2020-02-15T06:59:34Z +152 153 2020-02-15T06:59:34Z +152 217 2020-02-15T06:59:34Z +152 248 2020-02-15T06:59:34Z +152 318 2020-02-15T06:59:34Z +152 332 2020-02-15T06:59:34Z +152 475 2020-02-15T06:59:34Z +152 476 2020-02-15T06:59:34Z +152 578 2020-02-15T06:59:34Z +152 607 2020-02-15T06:59:34Z +152 611 2020-02-15T06:59:34Z +152 615 2020-02-15T06:59:34Z +152 674 2020-02-15T06:59:34Z +152 680 2020-02-15T06:59:34Z +152 729 2020-02-15T06:59:34Z +152 768 2020-02-15T06:59:34Z +152 821 2020-02-15T06:59:34Z +152 846 2020-02-15T06:59:34Z +152 891 2020-02-15T06:59:34Z +152 898 2020-02-15T06:59:34Z +152 927 2020-02-15T06:59:34Z +152 964 2020-02-15T06:59:34Z +152 968 2020-02-15T06:59:34Z +153 47 2020-02-15T06:59:34Z +153 64 2020-02-15T06:59:34Z +153 136 2020-02-15T06:59:34Z +153 180 2020-02-15T06:59:34Z +153 203 2020-02-15T06:59:34Z +153 231 2020-02-15T06:59:34Z +153 444 2020-02-15T06:59:34Z +153 476 2020-02-15T06:59:34Z +153 480 2020-02-15T06:59:34Z +153 486 2020-02-15T06:59:34Z +153 536 2020-02-15T06:59:34Z +153 627 2020-02-15T06:59:34Z +153 732 2020-02-15T06:59:34Z +153 756 2020-02-15T06:59:34Z +153 766 2020-02-15T06:59:34Z +153 817 2020-02-15T06:59:34Z +153 847 2020-02-15T06:59:34Z +153 919 2020-02-15T06:59:34Z +153 938 2020-02-15T06:59:34Z +153 988 2020-02-15T06:59:34Z +154 27 2020-02-15T06:59:34Z +154 111 2020-02-15T06:59:34Z +154 141 2020-02-15T06:59:34Z +154 158 2020-02-15T06:59:34Z +154 169 2020-02-15T06:59:34Z +154 170 2020-02-15T06:59:34Z +154 193 2020-02-15T06:59:34Z +154 208 2020-02-15T06:59:34Z +154 274 2020-02-15T06:59:34Z +154 276 2020-02-15T06:59:34Z +154 282 2020-02-15T06:59:34Z +154 299 2020-02-15T06:59:34Z +154 314 2020-02-15T06:59:34Z +154 396 2020-02-15T06:59:34Z +154 399 2020-02-15T06:59:34Z +154 421 2020-02-15T06:59:34Z +154 440 2020-02-15T06:59:34Z +154 467 2020-02-15T06:59:34Z +154 474 2020-02-15T06:59:34Z +154 489 2020-02-15T06:59:34Z +154 588 2020-02-15T06:59:34Z +154 602 2020-02-15T06:59:34Z +154 680 2020-02-15T06:59:34Z +154 698 2020-02-15T06:59:34Z +154 802 2020-02-15T06:59:34Z +154 842 2020-02-15T06:59:34Z +154 954 2020-02-15T06:59:34Z +154 988 2020-02-15T06:59:34Z +155 20 2020-02-15T06:59:34Z +155 67 2020-02-15T06:59:34Z +155 128 2020-02-15T06:59:34Z +155 153 2020-02-15T06:59:34Z +155 220 2020-02-15T06:59:34Z +155 249 2020-02-15T06:59:34Z +155 303 2020-02-15T06:59:34Z +155 312 2020-02-15T06:59:34Z +155 359 2020-02-15T06:59:34Z +155 361 2020-02-15T06:59:34Z +155 383 2020-02-15T06:59:34Z +155 387 2020-02-15T06:59:34Z +155 407 2020-02-15T06:59:34Z +155 427 2020-02-15T06:59:34Z +155 459 2020-02-15T06:59:34Z +155 513 2020-02-15T06:59:34Z +155 584 2020-02-15T06:59:34Z +155 590 2020-02-15T06:59:34Z +155 630 2020-02-15T06:59:34Z +155 688 2020-02-15T06:59:34Z +155 757 2020-02-15T06:59:34Z +155 768 2020-02-15T06:59:34Z +155 785 2020-02-15T06:59:34Z +155 849 2020-02-15T06:59:34Z +155 885 2020-02-15T06:59:34Z +155 890 2020-02-15T06:59:34Z +155 941 2020-02-15T06:59:34Z +155 966 2020-02-15T06:59:34Z +155 987 2020-02-15T06:59:34Z +155 997 2020-02-15T06:59:34Z +155 1000 2020-02-15T06:59:34Z +156 53 2020-02-15T06:59:34Z +156 155 2020-02-15T06:59:34Z +156 198 2020-02-15T06:59:34Z +156 244 2020-02-15T06:59:34Z +156 262 2020-02-15T06:59:34Z +156 263 2020-02-15T06:59:34Z +156 285 2020-02-15T06:59:34Z +156 297 2020-02-15T06:59:34Z +156 301 2020-02-15T06:59:34Z +156 349 2020-02-15T06:59:34Z +156 379 2020-02-15T06:59:34Z +156 448 2020-02-15T06:59:34Z +156 462 2020-02-15T06:59:34Z +156 467 2020-02-15T06:59:34Z +156 504 2020-02-15T06:59:34Z +156 518 2020-02-15T06:59:34Z +156 593 2020-02-15T06:59:34Z +156 646 2020-02-15T06:59:34Z +156 705 2020-02-15T06:59:34Z +156 754 2020-02-15T06:59:34Z +156 775 2020-02-15T06:59:34Z +156 844 2020-02-15T06:59:34Z +157 10 2020-02-15T06:59:34Z +157 24 2020-02-15T06:59:34Z +157 34 2020-02-15T06:59:34Z +157 122 2020-02-15T06:59:34Z +157 159 2020-02-15T06:59:34Z +157 183 2020-02-15T06:59:34Z +157 210 2020-02-15T06:59:34Z +157 217 2020-02-15T06:59:34Z +157 291 2020-02-15T06:59:34Z +157 303 2020-02-15T06:59:34Z +157 321 2020-02-15T06:59:34Z +157 326 2020-02-15T06:59:35Z +157 353 2020-02-15T06:59:35Z +157 400 2020-02-15T06:59:35Z +157 406 2020-02-15T06:59:35Z +157 431 2020-02-15T06:59:35Z +157 496 2020-02-15T06:59:35Z +157 535 2020-02-15T06:59:35Z +157 573 2020-02-15T06:59:35Z +157 574 2020-02-15T06:59:35Z +157 604 2020-02-15T06:59:35Z +157 616 2020-02-15T06:59:35Z +157 642 2020-02-15T06:59:35Z +157 661 2020-02-15T06:59:35Z +157 696 2020-02-15T06:59:35Z +157 713 2020-02-15T06:59:35Z +157 802 2020-02-15T06:59:35Z +157 835 2020-02-15T06:59:35Z +157 874 2020-02-15T06:59:35Z +157 913 2020-02-15T06:59:35Z +157 967 2020-02-15T06:59:35Z +157 973 2020-02-15T06:59:35Z +158 32 2020-02-15T06:59:35Z +158 47 2020-02-15T06:59:35Z +158 64 2020-02-15T06:59:35Z +158 66 2020-02-15T06:59:35Z +158 102 2020-02-15T06:59:35Z +158 121 2020-02-15T06:59:35Z +158 177 2020-02-15T06:59:35Z +158 178 2020-02-15T06:59:35Z +158 188 2020-02-15T06:59:35Z +158 215 2020-02-15T06:59:35Z +158 241 2020-02-15T06:59:35Z +158 293 2020-02-15T06:59:35Z +158 437 2020-02-15T06:59:35Z +158 473 2020-02-15T06:59:35Z +158 483 2020-02-15T06:59:35Z +158 532 2020-02-15T06:59:35Z +158 555 2020-02-15T06:59:35Z +158 581 2020-02-15T06:59:35Z +158 601 2020-02-15T06:59:35Z +158 616 2020-02-15T06:59:35Z +158 626 2020-02-15T06:59:35Z +158 637 2020-02-15T06:59:35Z +158 799 2020-02-15T06:59:35Z +158 812 2020-02-15T06:59:35Z +158 824 2020-02-15T06:59:35Z +158 830 2020-02-15T06:59:35Z +158 840 2020-02-15T06:59:35Z +158 869 2020-02-15T06:59:35Z +158 879 2020-02-15T06:59:35Z +158 880 2020-02-15T06:59:35Z +158 894 2020-02-15T06:59:35Z +158 896 2020-02-15T06:59:35Z +158 967 2020-02-15T06:59:35Z +158 968 2020-02-15T06:59:35Z +158 990 2020-02-15T06:59:35Z +159 20 2020-02-15T06:59:35Z +159 82 2020-02-15T06:59:35Z +159 127 2020-02-15T06:59:35Z +159 187 2020-02-15T06:59:35Z +159 206 2020-02-15T06:59:35Z +159 208 2020-02-15T06:59:35Z +159 223 2020-02-15T06:59:35Z +159 248 2020-02-15T06:59:35Z +159 342 2020-02-15T06:59:35Z +159 343 2020-02-15T06:59:35Z +159 344 2020-02-15T06:59:35Z +159 364 2020-02-15T06:59:35Z +159 418 2020-02-15T06:59:35Z +159 549 2020-02-15T06:59:35Z +159 561 2020-02-15T06:59:35Z +159 600 2020-02-15T06:59:35Z +159 674 2020-02-15T06:59:35Z +159 680 2020-02-15T06:59:35Z +159 784 2020-02-15T06:59:35Z +159 789 2020-02-15T06:59:35Z +159 800 2020-02-15T06:59:35Z +159 802 2020-02-15T06:59:35Z +159 818 2020-02-15T06:59:35Z +159 876 2020-02-15T06:59:35Z +159 907 2020-02-15T06:59:35Z +159 978 2020-02-15T06:59:35Z +160 2 2020-02-15T06:59:35Z +160 17 2020-02-15T06:59:35Z +160 43 2020-02-15T06:59:35Z +160 242 2020-02-15T06:59:35Z +160 267 2020-02-15T06:59:35Z +160 275 2020-02-15T06:59:35Z +160 368 2020-02-15T06:59:35Z +160 455 2020-02-15T06:59:35Z +160 469 2020-02-15T06:59:35Z +160 484 2020-02-15T06:59:35Z +160 579 2020-02-15T06:59:35Z +160 660 2020-02-15T06:59:35Z +160 755 2020-02-15T06:59:35Z +160 767 2020-02-15T06:59:35Z +160 769 2020-02-15T06:59:35Z +160 794 2020-02-15T06:59:35Z +160 826 2020-02-15T06:59:35Z +160 883 2020-02-15T06:59:35Z +160 950 2020-02-15T06:59:35Z +160 954 2020-02-15T06:59:35Z +161 43 2020-02-15T06:59:35Z +161 58 2020-02-15T06:59:35Z +161 89 2020-02-15T06:59:35Z +161 90 2020-02-15T06:59:35Z +161 120 2020-02-15T06:59:35Z +161 188 2020-02-15T06:59:35Z +161 247 2020-02-15T06:59:35Z +161 269 2020-02-15T06:59:35Z +161 281 2020-02-15T06:59:35Z +161 340 2020-02-15T06:59:35Z +161 353 2020-02-15T06:59:35Z +161 401 2020-02-15T06:59:35Z +161 414 2020-02-15T06:59:35Z +161 425 2020-02-15T06:59:35Z +161 469 2020-02-15T06:59:35Z +161 526 2020-02-15T06:59:35Z +161 588 2020-02-15T06:59:35Z +161 644 2020-02-15T06:59:35Z +161 653 2020-02-15T06:59:35Z +161 655 2020-02-15T06:59:35Z +161 669 2020-02-15T06:59:35Z +161 684 2020-02-15T06:59:35Z +161 714 2020-02-15T06:59:35Z +161 749 2020-02-15T06:59:35Z +161 807 2020-02-15T06:59:35Z +161 825 2020-02-15T06:59:35Z +161 850 2020-02-15T06:59:35Z +161 880 2020-02-15T06:59:35Z +161 920 2020-02-15T06:59:35Z +161 921 2020-02-15T06:59:35Z +161 924 2020-02-15T06:59:35Z +161 927 2020-02-15T06:59:35Z +162 1 2020-02-15T06:59:35Z +162 4 2020-02-15T06:59:35Z +162 7 2020-02-15T06:59:35Z +162 18 2020-02-15T06:59:35Z +162 28 2020-02-15T06:59:35Z +162 32 2020-02-15T06:59:35Z +162 33 2020-02-15T06:59:35Z +162 41 2020-02-15T06:59:35Z +162 85 2020-02-15T06:59:35Z +162 121 2020-02-15T06:59:35Z +162 164 2020-02-15T06:59:35Z +162 274 2020-02-15T06:59:35Z +162 279 2020-02-15T06:59:35Z +162 409 2020-02-15T06:59:35Z +162 410 2020-02-15T06:59:35Z +162 415 2020-02-15T06:59:35Z +162 500 2020-02-15T06:59:35Z +162 574 2020-02-15T06:59:35Z +162 612 2020-02-15T06:59:35Z +162 636 2020-02-15T06:59:35Z +162 659 2020-02-15T06:59:35Z +162 786 2020-02-15T06:59:35Z +162 844 2020-02-15T06:59:35Z +162 909 2020-02-15T06:59:35Z +162 968 2020-02-15T06:59:35Z +163 30 2020-02-15T06:59:35Z +163 45 2020-02-15T06:59:35Z +163 166 2020-02-15T06:59:35Z +163 180 2020-02-15T06:59:35Z +163 239 2020-02-15T06:59:35Z +163 283 2020-02-15T06:59:35Z +163 303 2020-02-15T06:59:35Z +163 304 2020-02-15T06:59:35Z +163 307 2020-02-15T06:59:35Z +163 394 2020-02-15T06:59:35Z +163 409 2020-02-15T06:59:35Z +163 434 2020-02-15T06:59:35Z +163 444 2020-02-15T06:59:35Z +163 522 2020-02-15T06:59:35Z +163 719 2020-02-15T06:59:35Z +163 785 2020-02-15T06:59:35Z +163 833 2020-02-15T06:59:35Z +163 881 2020-02-15T06:59:35Z +163 891 2020-02-15T06:59:35Z +163 947 2020-02-15T06:59:35Z +163 996 2020-02-15T06:59:35Z +164 15 2020-02-15T06:59:35Z +164 23 2020-02-15T06:59:35Z +164 148 2020-02-15T06:59:35Z +164 169 2020-02-15T06:59:35Z +164 252 2020-02-15T06:59:35Z +164 324 2020-02-15T06:59:35Z +164 347 2020-02-15T06:59:35Z +164 367 2020-02-15T06:59:35Z +164 431 2020-02-15T06:59:35Z +164 448 2020-02-15T06:59:35Z +164 469 2020-02-15T06:59:35Z +164 545 2020-02-15T06:59:35Z +164 610 2020-02-15T06:59:35Z +164 613 2020-02-15T06:59:35Z +164 673 2020-02-15T06:59:35Z +164 681 2020-02-15T06:59:35Z +164 698 2020-02-15T06:59:35Z +164 801 2020-02-15T06:59:35Z +164 820 2020-02-15T06:59:35Z +164 832 2020-02-15T06:59:35Z +164 834 2020-02-15T06:59:35Z +164 851 2020-02-15T06:59:35Z +164 884 2020-02-15T06:59:35Z +164 908 2020-02-15T06:59:35Z +164 957 2020-02-15T06:59:35Z +164 984 2020-02-15T06:59:35Z +165 72 2020-02-15T06:59:35Z +165 95 2020-02-15T06:59:35Z +165 146 2020-02-15T06:59:35Z +165 204 2020-02-15T06:59:35Z +165 253 2020-02-15T06:59:35Z +165 286 2020-02-15T06:59:35Z +165 360 2020-02-15T06:59:35Z +165 375 2020-02-15T06:59:35Z +165 395 2020-02-15T06:59:35Z +165 421 2020-02-15T06:59:35Z +165 437 2020-02-15T06:59:35Z +165 473 2020-02-15T06:59:35Z +165 607 2020-02-15T06:59:35Z +165 644 2020-02-15T06:59:35Z +165 659 2020-02-15T06:59:35Z +165 693 2020-02-15T06:59:35Z +165 737 2020-02-15T06:59:35Z +165 779 2020-02-15T06:59:35Z +165 798 2020-02-15T06:59:35Z +165 807 2020-02-15T06:59:35Z +165 809 2020-02-15T06:59:35Z +165 832 2020-02-15T06:59:35Z +165 833 2020-02-15T06:59:35Z +165 947 2020-02-15T06:59:35Z +165 948 2020-02-15T06:59:35Z +165 962 2020-02-15T06:59:35Z +166 25 2020-02-15T06:59:35Z +166 38 2020-02-15T06:59:35Z +166 55 2020-02-15T06:59:35Z +166 61 2020-02-15T06:59:35Z +166 68 2020-02-15T06:59:35Z +166 86 2020-02-15T06:59:35Z +166 146 2020-02-15T06:59:35Z +166 255 2020-02-15T06:59:35Z +166 297 2020-02-15T06:59:35Z +166 306 2020-02-15T06:59:35Z +166 326 2020-02-15T06:59:35Z +166 361 2020-02-15T06:59:35Z +166 366 2020-02-15T06:59:35Z +166 426 2020-02-15T06:59:35Z +166 580 2020-02-15T06:59:35Z +166 622 2020-02-15T06:59:35Z +166 674 2020-02-15T06:59:35Z +166 714 2020-02-15T06:59:35Z +166 788 2020-02-15T06:59:35Z +166 867 2020-02-15T06:59:35Z +166 944 2020-02-15T06:59:35Z +166 1000 2020-02-15T06:59:35Z +167 17 2020-02-15T06:59:35Z +167 25 2020-02-15T06:59:35Z +167 63 2020-02-15T06:59:35Z +167 72 2020-02-15T06:59:35Z +167 107 2020-02-15T06:59:35Z +167 120 2020-02-15T06:59:35Z +167 191 2020-02-15T06:59:35Z +167 294 2020-02-15T06:59:35Z +167 319 2020-02-15T06:59:35Z +167 339 2020-02-15T06:59:35Z +167 341 2020-02-15T06:59:35Z +167 496 2020-02-15T06:59:35Z +167 554 2020-02-15T06:59:35Z +167 626 2020-02-15T06:59:35Z +167 628 2020-02-15T06:59:35Z +167 672 2020-02-15T06:59:35Z +167 692 2020-02-15T06:59:35Z +167 717 2020-02-15T06:59:35Z +167 734 2020-02-15T06:59:35Z +167 794 2020-02-15T06:59:35Z +167 800 2020-02-15T06:59:35Z +167 802 2020-02-15T06:59:35Z +167 856 2020-02-15T06:59:35Z +167 864 2020-02-15T06:59:35Z +167 882 2020-02-15T06:59:35Z +167 923 2020-02-15T06:59:35Z +168 32 2020-02-15T06:59:35Z +168 56 2020-02-15T06:59:35Z +168 92 2020-02-15T06:59:35Z +168 115 2020-02-15T06:59:35Z +168 188 2020-02-15T06:59:35Z +168 196 2020-02-15T06:59:35Z +168 208 2020-02-15T06:59:35Z +168 237 2020-02-15T06:59:35Z +168 241 2020-02-15T06:59:35Z +168 255 2020-02-15T06:59:35Z +168 305 2020-02-15T06:59:35Z +168 336 2020-02-15T06:59:35Z +168 387 2020-02-15T06:59:35Z +168 433 2020-02-15T06:59:35Z +168 438 2020-02-15T06:59:35Z +168 519 2020-02-15T06:59:35Z +168 602 2020-02-15T06:59:35Z +168 619 2020-02-15T06:59:35Z +168 626 2020-02-15T06:59:35Z +168 652 2020-02-15T06:59:35Z +168 678 2020-02-15T06:59:35Z +168 685 2020-02-15T06:59:35Z +168 804 2020-02-15T06:59:35Z +168 807 2020-02-15T06:59:35Z +168 826 2020-02-15T06:59:35Z +168 841 2020-02-15T06:59:35Z +168 886 2020-02-15T06:59:35Z +168 889 2020-02-15T06:59:35Z +168 892 2020-02-15T06:59:35Z +168 927 2020-02-15T06:59:35Z +168 959 2020-02-15T06:59:35Z +169 6 2020-02-15T06:59:35Z +169 78 2020-02-15T06:59:35Z +169 93 2020-02-15T06:59:35Z +169 246 2020-02-15T06:59:35Z +169 248 2020-02-15T06:59:35Z +169 289 2020-02-15T06:59:35Z +169 301 2020-02-15T06:59:35Z +169 326 2020-02-15T06:59:35Z +169 349 2020-02-15T06:59:35Z +169 372 2020-02-15T06:59:35Z +169 398 2020-02-15T06:59:35Z +169 434 2020-02-15T06:59:35Z +169 505 2020-02-15T06:59:35Z +169 564 2020-02-15T06:59:35Z +169 571 2020-02-15T06:59:35Z +169 634 2020-02-15T06:59:35Z +169 642 2020-02-15T06:59:35Z +169 673 2020-02-15T06:59:35Z +169 694 2020-02-15T06:59:35Z +169 727 2020-02-15T06:59:35Z +169 778 2020-02-15T06:59:35Z +169 815 2020-02-15T06:59:35Z +169 847 2020-02-15T06:59:35Z +169 849 2020-02-15T06:59:35Z +169 894 2020-02-15T06:59:35Z +169 897 2020-02-15T06:59:35Z +169 954 2020-02-15T06:59:35Z +169 992 2020-02-15T06:59:35Z +169 998 2020-02-15T06:59:35Z +170 7 2020-02-15T06:59:35Z +170 15 2020-02-15T06:59:35Z +170 27 2020-02-15T06:59:35Z +170 33 2020-02-15T06:59:35Z +170 102 2020-02-15T06:59:35Z +170 139 2020-02-15T06:59:35Z +170 180 2020-02-15T06:59:35Z +170 184 2020-02-15T06:59:35Z +170 212 2020-02-15T06:59:35Z +170 299 2020-02-15T06:59:35Z +170 322 2020-02-15T06:59:35Z +170 358 2020-02-15T06:59:35Z +170 416 2020-02-15T06:59:35Z +170 508 2020-02-15T06:59:35Z +170 537 2020-02-15T06:59:35Z +170 705 2020-02-15T06:59:35Z +170 758 2020-02-15T06:59:35Z +170 764 2020-02-15T06:59:35Z +170 868 2020-02-15T06:59:35Z +170 877 2020-02-15T06:59:35Z +170 886 2020-02-15T06:59:35Z +170 925 2020-02-15T06:59:35Z +170 993 2020-02-15T06:59:35Z +170 996 2020-02-15T06:59:35Z +171 49 2020-02-15T06:59:35Z +171 146 2020-02-15T06:59:35Z +171 166 2020-02-15T06:59:35Z +171 181 2020-02-15T06:59:35Z +171 219 2020-02-15T06:59:35Z +171 273 2020-02-15T06:59:35Z +171 296 2020-02-15T06:59:35Z +171 318 2020-02-15T06:59:35Z +171 342 2020-02-15T06:59:35Z +171 397 2020-02-15T06:59:35Z +171 447 2020-02-15T06:59:35Z +171 450 2020-02-15T06:59:35Z +171 466 2020-02-15T06:59:35Z +171 549 2020-02-15T06:59:35Z +171 560 2020-02-15T06:59:35Z +171 566 2020-02-15T06:59:35Z +171 608 2020-02-15T06:59:35Z +171 625 2020-02-15T06:59:35Z +171 645 2020-02-15T06:59:35Z +171 701 2020-02-15T06:59:35Z +171 761 2020-02-15T06:59:35Z +171 779 2020-02-15T06:59:35Z +171 849 2020-02-15T06:59:35Z +171 872 2020-02-15T06:59:35Z +171 892 2020-02-15T06:59:35Z +171 898 2020-02-15T06:59:35Z +171 903 2020-02-15T06:59:35Z +171 953 2020-02-15T06:59:35Z +172 57 2020-02-15T06:59:35Z +172 100 2020-02-15T06:59:35Z +172 148 2020-02-15T06:59:35Z +172 215 2020-02-15T06:59:35Z +172 302 2020-02-15T06:59:35Z +172 345 2020-02-15T06:59:35Z +172 368 2020-02-15T06:59:35Z +172 385 2020-02-15T06:59:35Z +172 423 2020-02-15T06:59:35Z +172 487 2020-02-15T06:59:35Z +172 493 2020-02-15T06:59:35Z +172 529 2020-02-15T06:59:35Z +172 538 2020-02-15T06:59:35Z +172 567 2020-02-15T06:59:35Z +172 609 2020-02-15T06:59:35Z +172 639 2020-02-15T06:59:35Z +172 649 2020-02-15T06:59:35Z +172 661 2020-02-15T06:59:35Z +172 667 2020-02-15T06:59:35Z +172 710 2020-02-15T06:59:35Z +172 744 2020-02-15T06:59:35Z +172 758 2020-02-15T06:59:35Z +172 771 2020-02-15T06:59:35Z +172 833 2020-02-15T06:59:35Z +172 959 2020-02-15T06:59:35Z +173 49 2020-02-15T06:59:35Z +173 55 2020-02-15T06:59:35Z +173 74 2020-02-15T06:59:35Z +173 80 2020-02-15T06:59:35Z +173 106 2020-02-15T06:59:35Z +173 154 2020-02-15T06:59:35Z +173 162 2020-02-15T06:59:35Z +173 188 2020-02-15T06:59:35Z +173 235 2020-02-15T06:59:35Z +173 313 2020-02-15T06:59:35Z +173 379 2020-02-15T06:59:35Z +173 405 2020-02-15T06:59:35Z +173 491 2020-02-15T06:59:35Z +173 496 2020-02-15T06:59:35Z +173 529 2020-02-15T06:59:35Z +173 550 2020-02-15T06:59:35Z +173 564 2020-02-15T06:59:35Z +173 571 2020-02-15T06:59:35Z +173 592 2020-02-15T06:59:35Z +173 688 2020-02-15T06:59:35Z +173 753 2020-02-15T06:59:35Z +173 757 2020-02-15T06:59:35Z +173 852 2020-02-15T06:59:35Z +173 857 2020-02-15T06:59:35Z +173 921 2020-02-15T06:59:35Z +173 928 2020-02-15T06:59:35Z +173 933 2020-02-15T06:59:35Z +174 11 2020-02-15T06:59:35Z +174 61 2020-02-15T06:59:35Z +174 168 2020-02-15T06:59:35Z +174 298 2020-02-15T06:59:35Z +174 352 2020-02-15T06:59:35Z +174 442 2020-02-15T06:59:35Z +174 451 2020-02-15T06:59:35Z +174 496 2020-02-15T06:59:35Z +174 610 2020-02-15T06:59:35Z +174 618 2020-02-15T06:59:35Z +174 622 2020-02-15T06:59:35Z +174 659 2020-02-15T06:59:35Z +174 677 2020-02-15T06:59:35Z +174 705 2020-02-15T06:59:35Z +174 722 2020-02-15T06:59:35Z +174 780 2020-02-15T06:59:35Z +174 797 2020-02-15T06:59:35Z +174 809 2020-02-15T06:59:35Z +174 827 2020-02-15T06:59:35Z +174 830 2020-02-15T06:59:35Z +174 852 2020-02-15T06:59:35Z +174 853 2020-02-15T06:59:35Z +174 879 2020-02-15T06:59:35Z +174 982 2020-02-15T06:59:35Z +175 9 2020-02-15T06:59:35Z +175 29 2020-02-15T06:59:35Z +175 67 2020-02-15T06:59:35Z +175 129 2020-02-15T06:59:35Z +175 155 2020-02-15T06:59:35Z +175 190 2020-02-15T06:59:35Z +175 191 2020-02-15T06:59:35Z +175 362 2020-02-15T06:59:35Z +175 405 2020-02-15T06:59:35Z +175 424 2020-02-15T06:59:35Z +175 439 2020-02-15T06:59:35Z +175 442 2020-02-15T06:59:35Z +175 483 2020-02-15T06:59:35Z +175 591 2020-02-15T06:59:35Z +175 596 2020-02-15T06:59:35Z +175 616 2020-02-15T06:59:35Z +175 719 2020-02-15T06:59:35Z +175 729 2020-02-15T06:59:35Z +175 772 2020-02-15T06:59:35Z +175 778 2020-02-15T06:59:35Z +175 828 2020-02-15T06:59:35Z +175 842 2020-02-15T06:59:35Z +175 890 2020-02-15T06:59:35Z +175 908 2020-02-15T06:59:35Z +175 977 2020-02-15T06:59:35Z +175 978 2020-02-15T06:59:35Z +175 998 2020-02-15T06:59:35Z +176 13 2020-02-15T06:59:35Z +176 73 2020-02-15T06:59:35Z +176 89 2020-02-15T06:59:35Z +176 150 2020-02-15T06:59:35Z +176 162 2020-02-15T06:59:35Z +176 238 2020-02-15T06:59:35Z +176 252 2020-02-15T06:59:35Z +176 303 2020-02-15T06:59:35Z +176 320 2020-02-15T06:59:35Z +176 401 2020-02-15T06:59:35Z +176 417 2020-02-15T06:59:35Z +176 441 2020-02-15T06:59:35Z +176 458 2020-02-15T06:59:35Z +176 461 2020-02-15T06:59:35Z +176 517 2020-02-15T06:59:35Z +176 521 2020-02-15T06:59:35Z +176 543 2020-02-15T06:59:35Z +176 573 2020-02-15T06:59:35Z +176 699 2020-02-15T06:59:35Z +176 726 2020-02-15T06:59:35Z +176 740 2020-02-15T06:59:35Z +176 746 2020-02-15T06:59:35Z +176 758 2020-02-15T06:59:35Z +176 802 2020-02-15T06:59:35Z +176 827 2020-02-15T06:59:35Z +176 839 2020-02-15T06:59:35Z +176 859 2020-02-15T06:59:35Z +176 872 2020-02-15T06:59:35Z +176 946 2020-02-15T06:59:35Z +177 12 2020-02-15T06:59:35Z +177 39 2020-02-15T06:59:35Z +177 52 2020-02-15T06:59:35Z +177 55 2020-02-15T06:59:35Z +177 86 2020-02-15T06:59:35Z +177 175 2020-02-15T06:59:35Z +177 188 2020-02-15T06:59:35Z +177 235 2020-02-15T06:59:35Z +177 237 2020-02-15T06:59:35Z +177 289 2020-02-15T06:59:35Z +177 363 2020-02-15T06:59:35Z +177 401 2020-02-15T06:59:35Z +177 433 2020-02-15T06:59:35Z +177 458 2020-02-15T06:59:35Z +177 522 2020-02-15T06:59:35Z +177 543 2020-02-15T06:59:35Z +177 563 2020-02-15T06:59:35Z +177 649 2020-02-15T06:59:35Z +177 683 2020-02-15T06:59:35Z +177 684 2020-02-15T06:59:35Z +177 726 2020-02-15T06:59:35Z +177 751 2020-02-15T06:59:35Z +177 763 2020-02-15T06:59:35Z +177 764 2020-02-15T06:59:35Z +177 827 2020-02-15T06:59:35Z +177 910 2020-02-15T06:59:35Z +177 956 2020-02-15T06:59:35Z +178 30 2020-02-15T06:59:35Z +178 34 2020-02-15T06:59:35Z +178 109 2020-02-15T06:59:35Z +178 146 2020-02-15T06:59:35Z +178 160 2020-02-15T06:59:35Z +178 164 2020-02-15T06:59:35Z +178 194 2020-02-15T06:59:35Z +178 197 2020-02-15T06:59:35Z +178 273 2020-02-15T06:59:35Z +178 311 2020-02-15T06:59:35Z +178 397 2020-02-15T06:59:35Z +178 483 2020-02-15T06:59:35Z +178 517 2020-02-15T06:59:35Z +178 537 2020-02-15T06:59:35Z +178 587 2020-02-15T06:59:35Z +178 708 2020-02-15T06:59:35Z +178 733 2020-02-15T06:59:35Z +178 744 2020-02-15T06:59:35Z +178 762 2020-02-15T06:59:35Z +178 930 2020-02-15T06:59:35Z +178 974 2020-02-15T06:59:35Z +178 983 2020-02-15T06:59:35Z +178 1000 2020-02-15T06:59:35Z +179 24 2020-02-15T06:59:35Z +179 27 2020-02-15T06:59:35Z +179 65 2020-02-15T06:59:35Z +179 85 2020-02-15T06:59:35Z +179 109 2020-02-15T06:59:35Z +179 131 2020-02-15T06:59:35Z +179 159 2020-02-15T06:59:35Z +179 193 2020-02-15T06:59:35Z +179 250 2020-02-15T06:59:35Z +179 291 2020-02-15T06:59:35Z +179 353 2020-02-15T06:59:35Z +179 415 2020-02-15T06:59:35Z +179 463 2020-02-15T06:59:35Z +179 468 2020-02-15T06:59:35Z +179 489 2020-02-15T06:59:35Z +179 566 2020-02-15T06:59:35Z +179 588 2020-02-15T06:59:35Z +179 650 2020-02-15T06:59:35Z +179 698 2020-02-15T06:59:35Z +179 732 2020-02-15T06:59:35Z +179 737 2020-02-15T06:59:35Z +179 769 2020-02-15T06:59:35Z +179 811 2020-02-15T06:59:35Z +179 817 2020-02-15T06:59:35Z +179 852 2020-02-15T06:59:35Z +179 924 2020-02-15T06:59:35Z +179 931 2020-02-15T06:59:35Z +179 960 2020-02-15T06:59:35Z +179 976 2020-02-15T06:59:35Z +180 12 2020-02-15T06:59:35Z +180 33 2020-02-15T06:59:35Z +180 144 2020-02-15T06:59:35Z +180 195 2020-02-15T06:59:35Z +180 258 2020-02-15T06:59:35Z +180 441 2020-02-15T06:59:35Z +180 506 2020-02-15T06:59:35Z +180 561 2020-02-15T06:59:35Z +180 609 2020-02-15T06:59:35Z +180 622 2020-02-15T06:59:35Z +180 628 2020-02-15T06:59:35Z +180 657 2020-02-15T06:59:35Z +180 724 2020-02-15T06:59:35Z +180 729 2020-02-15T06:59:35Z +180 732 2020-02-15T06:59:35Z +180 777 2020-02-15T06:59:35Z +180 809 2020-02-15T06:59:35Z +180 811 2020-02-15T06:59:35Z +180 820 2020-02-15T06:59:35Z +180 824 2020-02-15T06:59:35Z +180 847 2020-02-15T06:59:35Z +180 869 2020-02-15T06:59:35Z +180 874 2020-02-15T06:59:35Z +180 955 2020-02-15T06:59:35Z +180 963 2020-02-15T06:59:35Z +181 5 2020-02-15T06:59:35Z +181 40 2020-02-15T06:59:35Z +181 74 2020-02-15T06:59:35Z +181 78 2020-02-15T06:59:35Z +181 83 2020-02-15T06:59:35Z +181 152 2020-02-15T06:59:35Z +181 195 2020-02-15T06:59:35Z +181 233 2020-02-15T06:59:35Z +181 286 2020-02-15T06:59:35Z +181 301 2020-02-15T06:59:35Z +181 311 2020-02-15T06:59:35Z +181 381 2020-02-15T06:59:35Z +181 387 2020-02-15T06:59:35Z +181 403 2020-02-15T06:59:35Z +181 409 2020-02-15T06:59:35Z +181 420 2020-02-15T06:59:35Z +181 437 2020-02-15T06:59:35Z +181 456 2020-02-15T06:59:35Z +181 507 2020-02-15T06:59:35Z +181 522 2020-02-15T06:59:35Z +181 539 2020-02-15T06:59:35Z +181 542 2020-02-15T06:59:35Z +181 546 2020-02-15T06:59:35Z +181 579 2020-02-15T06:59:35Z +181 596 2020-02-15T06:59:35Z +181 604 2020-02-15T06:59:35Z +181 609 2020-02-15T06:59:35Z +181 625 2020-02-15T06:59:35Z +181 744 2020-02-15T06:59:35Z +181 816 2020-02-15T06:59:35Z +181 836 2020-02-15T06:59:35Z +181 868 2020-02-15T06:59:35Z +181 870 2020-02-15T06:59:35Z +181 874 2020-02-15T06:59:35Z +181 892 2020-02-15T06:59:35Z +181 907 2020-02-15T06:59:35Z +181 911 2020-02-15T06:59:35Z +181 921 2020-02-15T06:59:35Z +181 991 2020-02-15T06:59:35Z +182 33 2020-02-15T06:59:35Z +182 160 2020-02-15T06:59:35Z +182 301 2020-02-15T06:59:35Z +182 324 2020-02-15T06:59:35Z +182 346 2020-02-15T06:59:35Z +182 362 2020-02-15T06:59:35Z +182 391 2020-02-15T06:59:35Z +182 413 2020-02-15T06:59:35Z +182 421 2020-02-15T06:59:35Z +182 437 2020-02-15T06:59:35Z +182 590 2020-02-15T06:59:35Z +182 639 2020-02-15T06:59:35Z +182 668 2020-02-15T06:59:35Z +182 677 2020-02-15T06:59:35Z +182 679 2020-02-15T06:59:35Z +182 695 2020-02-15T06:59:35Z +182 714 2020-02-15T06:59:35Z +182 720 2020-02-15T06:59:35Z +182 819 2020-02-15T06:59:35Z +182 828 2020-02-15T06:59:35Z +182 845 2020-02-15T06:59:35Z +182 864 2020-02-15T06:59:35Z +182 940 2020-02-15T06:59:35Z +182 990 2020-02-15T06:59:35Z +183 32 2020-02-15T06:59:35Z +183 40 2020-02-15T06:59:35Z +183 71 2020-02-15T06:59:35Z +183 113 2020-02-15T06:59:35Z +183 313 2020-02-15T06:59:35Z +183 388 2020-02-15T06:59:35Z +183 389 2020-02-15T06:59:35Z +183 390 2020-02-15T06:59:35Z +183 495 2020-02-15T06:59:35Z +183 520 2020-02-15T06:59:35Z +183 576 2020-02-15T06:59:35Z +183 636 2020-02-15T06:59:35Z +183 715 2020-02-15T06:59:35Z +183 850 2020-02-15T06:59:35Z +183 862 2020-02-15T06:59:35Z +183 914 2020-02-15T06:59:35Z +183 941 2020-02-15T06:59:35Z +183 949 2020-02-15T06:59:35Z +183 983 2020-02-15T06:59:35Z +184 35 2020-02-15T06:59:35Z +184 87 2020-02-15T06:59:35Z +184 146 2020-02-15T06:59:35Z +184 169 2020-02-15T06:59:35Z +184 221 2020-02-15T06:59:35Z +184 336 2020-02-15T06:59:35Z +184 371 2020-02-15T06:59:35Z +184 452 2020-02-15T06:59:35Z +184 486 2020-02-15T06:59:35Z +184 492 2020-02-15T06:59:35Z +184 500 2020-02-15T06:59:35Z +184 574 2020-02-15T06:59:35Z +184 580 2020-02-15T06:59:35Z +184 597 2020-02-15T06:59:35Z +184 615 2020-02-15T06:59:35Z +184 640 2020-02-15T06:59:35Z +184 642 2020-02-15T06:59:35Z +184 650 2020-02-15T06:59:35Z +184 661 2020-02-15T06:59:35Z +184 684 2020-02-15T06:59:35Z +184 745 2020-02-15T06:59:35Z +184 772 2020-02-15T06:59:35Z +184 787 2020-02-15T06:59:35Z +184 867 2020-02-15T06:59:35Z +184 959 2020-02-15T06:59:35Z +184 966 2020-02-15T06:59:35Z +184 967 2020-02-15T06:59:35Z +184 969 2020-02-15T06:59:35Z +184 985 2020-02-15T06:59:35Z +185 7 2020-02-15T06:59:35Z +185 95 2020-02-15T06:59:35Z +185 138 2020-02-15T06:59:35Z +185 265 2020-02-15T06:59:35Z +185 286 2020-02-15T06:59:35Z +185 360 2020-02-15T06:59:35Z +185 411 2020-02-15T06:59:35Z +185 427 2020-02-15T06:59:35Z +185 437 2020-02-15T06:59:35Z +185 448 2020-02-15T06:59:35Z +185 494 2020-02-15T06:59:35Z +185 510 2020-02-15T06:59:35Z +185 518 2020-02-15T06:59:35Z +185 554 2020-02-15T06:59:35Z +185 560 2020-02-15T06:59:35Z +185 571 2020-02-15T06:59:35Z +185 584 2020-02-15T06:59:35Z +185 631 2020-02-15T06:59:35Z +185 665 2020-02-15T06:59:35Z +185 694 2020-02-15T06:59:35Z +185 730 2020-02-15T06:59:35Z +185 761 2020-02-15T06:59:35Z +185 818 2020-02-15T06:59:35Z +185 845 2020-02-15T06:59:35Z +185 880 2020-02-15T06:59:35Z +185 882 2020-02-15T06:59:35Z +185 919 2020-02-15T06:59:35Z +185 920 2020-02-15T06:59:35Z +185 965 2020-02-15T06:59:35Z +185 973 2020-02-15T06:59:35Z +186 95 2020-02-15T06:59:35Z +186 187 2020-02-15T06:59:35Z +186 208 2020-02-15T06:59:35Z +186 228 2020-02-15T06:59:35Z +186 237 2020-02-15T06:59:35Z +186 422 2020-02-15T06:59:35Z +186 482 2020-02-15T06:59:35Z +186 508 2020-02-15T06:59:35Z +186 552 2020-02-15T06:59:35Z +186 579 2020-02-15T06:59:35Z +186 637 2020-02-15T06:59:35Z +186 648 2020-02-15T06:59:35Z +186 654 2020-02-15T06:59:35Z +186 729 2020-02-15T06:59:35Z +186 983 2020-02-15T06:59:35Z +186 994 2020-02-15T06:59:35Z +187 17 2020-02-15T06:59:35Z +187 25 2020-02-15T06:59:35Z +187 29 2020-02-15T06:59:35Z +187 51 2020-02-15T06:59:35Z +187 73 2020-02-15T06:59:35Z +187 76 2020-02-15T06:59:35Z +187 98 2020-02-15T06:59:35Z +187 110 2020-02-15T06:59:35Z +187 127 2020-02-15T06:59:35Z +187 168 2020-02-15T06:59:35Z +187 222 2020-02-15T06:59:35Z +187 224 2020-02-15T06:59:35Z +187 297 2020-02-15T06:59:35Z +187 354 2020-02-15T06:59:35Z +187 379 2020-02-15T06:59:35Z +187 417 2020-02-15T06:59:35Z +187 435 2020-02-15T06:59:35Z +187 441 2020-02-15T06:59:35Z +187 474 2020-02-15T06:59:35Z +187 499 2020-02-15T06:59:35Z +187 538 2020-02-15T06:59:35Z +187 548 2020-02-15T06:59:35Z +187 561 2020-02-15T06:59:35Z +187 617 2020-02-15T06:59:35Z +187 625 2020-02-15T06:59:35Z +187 664 2020-02-15T06:59:35Z +187 671 2020-02-15T06:59:35Z +187 768 2020-02-15T06:59:35Z +187 779 2020-02-15T06:59:35Z +187 906 2020-02-15T06:59:35Z +187 914 2020-02-15T06:59:35Z +187 923 2020-02-15T06:59:35Z +187 976 2020-02-15T06:59:35Z +188 1 2020-02-15T06:59:35Z +188 10 2020-02-15T06:59:35Z +188 14 2020-02-15T06:59:35Z +188 51 2020-02-15T06:59:35Z +188 102 2020-02-15T06:59:35Z +188 111 2020-02-15T06:59:35Z +188 146 2020-02-15T06:59:35Z +188 206 2020-02-15T06:59:35Z +188 223 2020-02-15T06:59:35Z +188 289 2020-02-15T06:59:35Z +188 311 2020-02-15T06:59:35Z +188 322 2020-02-15T06:59:35Z +188 338 2020-02-15T06:59:35Z +188 396 2020-02-15T06:59:35Z +188 412 2020-02-15T06:59:35Z +188 506 2020-02-15T06:59:35Z +188 517 2020-02-15T06:59:35Z +188 529 2020-02-15T06:59:35Z +188 566 2020-02-15T06:59:35Z +188 593 2020-02-15T06:59:35Z +188 606 2020-02-15T06:59:35Z +188 662 2020-02-15T06:59:35Z +188 770 2020-02-15T06:59:35Z +188 773 2020-02-15T06:59:35Z +188 774 2020-02-15T06:59:35Z +188 815 2020-02-15T06:59:35Z +188 849 2020-02-15T06:59:35Z +188 925 2020-02-15T06:59:35Z +188 988 2020-02-15T06:59:35Z +188 989 2020-02-15T06:59:35Z +189 43 2020-02-15T06:59:35Z +189 82 2020-02-15T06:59:35Z +189 171 2020-02-15T06:59:35Z +189 266 2020-02-15T06:59:35Z +189 272 2020-02-15T06:59:35Z +189 315 2020-02-15T06:59:35Z +189 378 2020-02-15T06:59:35Z +189 492 2020-02-15T06:59:35Z +189 509 2020-02-15T06:59:35Z +189 512 2020-02-15T06:59:35Z +189 519 2020-02-15T06:59:35Z +189 533 2020-02-15T06:59:35Z +189 548 2020-02-15T06:59:35Z +189 560 2020-02-15T06:59:35Z +189 628 2020-02-15T06:59:35Z +189 734 2020-02-15T06:59:35Z +189 748 2020-02-15T06:59:35Z +189 788 2020-02-15T06:59:35Z +189 820 2020-02-15T06:59:35Z +189 853 2020-02-15T06:59:35Z +189 882 2020-02-15T06:59:35Z +189 896 2020-02-15T06:59:35Z +189 899 2020-02-15T06:59:35Z +189 940 2020-02-15T06:59:35Z +190 38 2020-02-15T06:59:35Z +190 54 2020-02-15T06:59:35Z +190 62 2020-02-15T06:59:35Z +190 87 2020-02-15T06:59:35Z +190 173 2020-02-15T06:59:35Z +190 234 2020-02-15T06:59:35Z +190 253 2020-02-15T06:59:35Z +190 278 2020-02-15T06:59:35Z +190 310 2020-02-15T06:59:35Z +190 374 2020-02-15T06:59:35Z +190 411 2020-02-15T06:59:35Z +190 426 2020-02-15T06:59:35Z +190 472 2020-02-15T06:59:35Z +190 549 2020-02-15T06:59:35Z +190 562 2020-02-15T06:59:35Z +190 606 2020-02-15T06:59:35Z +190 623 2020-02-15T06:59:35Z +190 679 2020-02-15T06:59:35Z +190 682 2020-02-15T06:59:35Z +190 693 2020-02-15T06:59:35Z +190 695 2020-02-15T06:59:35Z +190 705 2020-02-15T06:59:35Z +190 708 2020-02-15T06:59:35Z +190 802 2020-02-15T06:59:35Z +190 806 2020-02-15T06:59:35Z +190 874 2020-02-15T06:59:35Z +190 959 2020-02-15T06:59:35Z +191 16 2020-02-15T06:59:35Z +191 39 2020-02-15T06:59:35Z +191 84 2020-02-15T06:59:35Z +191 185 2020-02-15T06:59:35Z +191 219 2020-02-15T06:59:35Z +191 293 2020-02-15T06:59:35Z +191 296 2020-02-15T06:59:35Z +191 378 2020-02-15T06:59:35Z +191 410 2020-02-15T06:59:35Z +191 420 2020-02-15T06:59:35Z +191 461 2020-02-15T06:59:35Z +191 544 2020-02-15T06:59:35Z +191 551 2020-02-15T06:59:35Z +191 596 2020-02-15T06:59:35Z +191 638 2020-02-15T06:59:35Z +191 668 2020-02-15T06:59:35Z +191 692 2020-02-15T06:59:35Z +191 775 2020-02-15T06:59:35Z +191 801 2020-02-15T06:59:35Z +191 819 2020-02-15T06:59:35Z +191 827 2020-02-15T06:59:35Z +191 830 2020-02-15T06:59:35Z +191 834 2020-02-15T06:59:35Z +191 849 2020-02-15T06:59:35Z +191 858 2020-02-15T06:59:35Z +191 914 2020-02-15T06:59:35Z +191 958 2020-02-15T06:59:35Z +191 969 2020-02-15T06:59:35Z +191 971 2020-02-15T06:59:35Z +191 993 2020-02-15T06:59:35Z +192 16 2020-02-15T06:59:35Z +192 69 2020-02-15T06:59:35Z +192 117 2020-02-15T06:59:35Z +192 155 2020-02-15T06:59:35Z +192 166 2020-02-15T06:59:35Z +192 179 2020-02-15T06:59:35Z +192 214 2020-02-15T06:59:35Z +192 361 2020-02-15T06:59:35Z +192 367 2020-02-15T06:59:35Z +192 426 2020-02-15T06:59:35Z +192 465 2020-02-15T06:59:35Z +192 470 2020-02-15T06:59:35Z +192 475 2020-02-15T06:59:35Z +192 485 2020-02-15T06:59:35Z +192 541 2020-02-15T06:59:35Z +192 578 2020-02-15T06:59:35Z +192 592 2020-02-15T06:59:35Z +192 614 2020-02-15T06:59:35Z +192 618 2020-02-15T06:59:35Z +192 622 2020-02-15T06:59:35Z +192 674 2020-02-15T06:59:35Z +192 677 2020-02-15T06:59:35Z +192 680 2020-02-15T06:59:35Z +192 682 2020-02-15T06:59:35Z +192 708 2020-02-15T06:59:35Z +192 711 2020-02-15T06:59:35Z +192 747 2020-02-15T06:59:35Z +192 763 2020-02-15T06:59:35Z +192 819 2020-02-15T06:59:35Z +193 44 2020-02-15T06:59:35Z +193 80 2020-02-15T06:59:35Z +193 103 2020-02-15T06:59:35Z +193 109 2020-02-15T06:59:35Z +193 119 2020-02-15T06:59:35Z +193 141 2020-02-15T06:59:35Z +193 164 2020-02-15T06:59:35Z +193 291 2020-02-15T06:59:35Z +193 352 2020-02-15T06:59:35Z +193 358 2020-02-15T06:59:35Z +193 376 2020-02-15T06:59:35Z +193 412 2020-02-15T06:59:35Z +193 462 2020-02-15T06:59:35Z +193 689 2020-02-15T06:59:35Z +193 709 2020-02-15T06:59:35Z +193 745 2020-02-15T06:59:35Z +193 807 2020-02-15T06:59:35Z +193 828 2020-02-15T06:59:35Z +193 834 2020-02-15T06:59:35Z +193 851 2020-02-15T06:59:35Z +193 937 2020-02-15T06:59:35Z +193 953 2020-02-15T06:59:35Z +193 960 2020-02-15T06:59:35Z +194 9 2020-02-15T06:59:35Z +194 42 2020-02-15T06:59:35Z +194 67 2020-02-15T06:59:35Z +194 86 2020-02-15T06:59:35Z +194 88 2020-02-15T06:59:35Z +194 98 2020-02-15T06:59:35Z +194 135 2020-02-15T06:59:35Z +194 161 2020-02-15T06:59:35Z +194 163 2020-02-15T06:59:35Z +194 215 2020-02-15T06:59:35Z +194 232 2020-02-15T06:59:35Z +194 352 2020-02-15T06:59:35Z +194 415 2020-02-15T06:59:35Z +194 486 2020-02-15T06:59:35Z +194 498 2020-02-15T06:59:35Z +194 531 2020-02-15T06:59:35Z +194 719 2020-02-15T06:59:35Z +194 738 2020-02-15T06:59:35Z +194 786 2020-02-15T06:59:35Z +194 872 2020-02-15T06:59:35Z +194 938 2020-02-15T06:59:35Z +194 940 2020-02-15T06:59:35Z +195 129 2020-02-15T06:59:35Z +195 130 2020-02-15T06:59:35Z +195 141 2020-02-15T06:59:35Z +195 144 2020-02-15T06:59:35Z +195 298 2020-02-15T06:59:35Z +195 359 2020-02-15T06:59:35Z +195 361 2020-02-15T06:59:35Z +195 392 2020-02-15T06:59:35Z +195 403 2020-02-15T06:59:35Z +195 494 2020-02-15T06:59:35Z +195 520 2020-02-15T06:59:35Z +195 534 2020-02-15T06:59:35Z +195 560 2020-02-15T06:59:35Z +195 592 2020-02-15T06:59:35Z +195 649 2020-02-15T06:59:35Z +195 658 2020-02-15T06:59:35Z +195 673 2020-02-15T06:59:35Z +195 677 2020-02-15T06:59:35Z +195 706 2020-02-15T06:59:35Z +195 738 2020-02-15T06:59:35Z +195 769 2020-02-15T06:59:35Z +195 781 2020-02-15T06:59:35Z +195 794 2020-02-15T06:59:35Z +195 813 2020-02-15T06:59:35Z +195 869 2020-02-15T06:59:35Z +195 885 2020-02-15T06:59:35Z +195 962 2020-02-15T06:59:35Z +196 64 2020-02-15T06:59:35Z +196 122 2020-02-15T06:59:35Z +196 156 2020-02-15T06:59:35Z +196 169 2020-02-15T06:59:35Z +196 276 2020-02-15T06:59:35Z +196 284 2020-02-15T06:59:35Z +196 303 2020-02-15T06:59:35Z +196 324 2020-02-15T06:59:35Z +196 423 2020-02-15T06:59:35Z +196 473 2020-02-15T06:59:35Z +196 484 2020-02-15T06:59:35Z +196 515 2020-02-15T06:59:35Z +196 524 2020-02-15T06:59:35Z +196 541 2020-02-15T06:59:35Z +196 560 2020-02-15T06:59:35Z +196 575 2020-02-15T06:59:35Z +196 576 2020-02-15T06:59:35Z +196 587 2020-02-15T06:59:35Z +196 615 2020-02-15T06:59:35Z +196 635 2020-02-15T06:59:35Z +196 684 2020-02-15T06:59:35Z +196 795 2020-02-15T06:59:35Z +196 815 2020-02-15T06:59:35Z +196 833 2020-02-15T06:59:35Z +196 837 2020-02-15T06:59:35Z +196 906 2020-02-15T06:59:35Z +196 908 2020-02-15T06:59:35Z +196 919 2020-02-15T06:59:35Z +196 939 2020-02-15T06:59:35Z +196 972 2020-02-15T06:59:35Z +197 6 2020-02-15T06:59:35Z +197 29 2020-02-15T06:59:35Z +197 63 2020-02-15T06:59:35Z +197 123 2020-02-15T06:59:35Z +197 129 2020-02-15T06:59:35Z +197 147 2020-02-15T06:59:35Z +197 164 2020-02-15T06:59:35Z +197 189 2020-02-15T06:59:35Z +197 243 2020-02-15T06:59:35Z +197 249 2020-02-15T06:59:35Z +197 258 2020-02-15T06:59:35Z +197 364 2020-02-15T06:59:35Z +197 369 2020-02-15T06:59:35Z +197 370 2020-02-15T06:59:35Z +197 418 2020-02-15T06:59:35Z +197 522 2020-02-15T06:59:35Z +197 531 2020-02-15T06:59:35Z +197 554 2020-02-15T06:59:35Z +197 598 2020-02-15T06:59:35Z +197 628 2020-02-15T06:59:35Z +197 691 2020-02-15T06:59:35Z +197 724 2020-02-15T06:59:35Z +197 746 2020-02-15T06:59:35Z +197 752 2020-02-15T06:59:35Z +197 758 2020-02-15T06:59:35Z +197 769 2020-02-15T06:59:35Z +197 815 2020-02-15T06:59:35Z +197 916 2020-02-15T06:59:35Z +197 950 2020-02-15T06:59:35Z +197 967 2020-02-15T06:59:35Z +197 974 2020-02-15T06:59:35Z +197 979 2020-02-15T06:59:35Z +197 995 2020-02-15T06:59:35Z +198 1 2020-02-15T06:59:35Z +198 109 2020-02-15T06:59:35Z +198 125 2020-02-15T06:59:35Z +198 186 2020-02-15T06:59:35Z +198 262 2020-02-15T06:59:35Z +198 264 2020-02-15T06:59:35Z +198 303 2020-02-15T06:59:35Z +198 309 2020-02-15T06:59:35Z +198 311 2020-02-15T06:59:35Z +198 329 2020-02-15T06:59:35Z +198 347 2020-02-15T06:59:35Z +198 379 2020-02-15T06:59:35Z +198 395 2020-02-15T06:59:35Z +198 406 2020-02-15T06:59:35Z +198 450 2020-02-15T06:59:35Z +198 464 2020-02-15T06:59:35Z +198 482 2020-02-15T06:59:35Z +198 499 2020-02-15T06:59:35Z +198 536 2020-02-15T06:59:35Z +198 541 2020-02-15T06:59:35Z +198 545 2020-02-15T06:59:35Z +198 555 2020-02-15T06:59:35Z +198 568 2020-02-15T06:59:35Z +198 570 2020-02-15T06:59:35Z +198 588 2020-02-15T06:59:35Z +198 597 2020-02-15T06:59:35Z +198 628 2020-02-15T06:59:35Z +198 745 2020-02-15T06:59:35Z +198 758 2020-02-15T06:59:35Z +198 796 2020-02-15T06:59:35Z +198 806 2020-02-15T06:59:35Z +198 817 2020-02-15T06:59:35Z +198 843 2020-02-15T06:59:35Z +198 858 2020-02-15T06:59:35Z +198 871 2020-02-15T06:59:35Z +198 886 2020-02-15T06:59:35Z +198 892 2020-02-15T06:59:35Z +198 924 2020-02-15T06:59:35Z +198 952 2020-02-15T06:59:35Z +198 997 2020-02-15T06:59:35Z +199 67 2020-02-15T06:59:35Z +199 84 2020-02-15T06:59:35Z +199 145 2020-02-15T06:59:35Z +199 159 2020-02-15T06:59:35Z +199 216 2020-02-15T06:59:35Z +199 432 2020-02-15T06:59:35Z +199 541 2020-02-15T06:59:35Z +199 604 2020-02-15T06:59:35Z +199 640 2020-02-15T06:59:35Z +199 689 2020-02-15T06:59:35Z +199 730 2020-02-15T06:59:35Z +199 784 2020-02-15T06:59:35Z +199 785 2020-02-15T06:59:35Z +199 886 2020-02-15T06:59:35Z +199 953 2020-02-15T06:59:35Z +200 5 2020-02-15T06:59:35Z +200 49 2020-02-15T06:59:35Z +200 80 2020-02-15T06:59:35Z +200 116 2020-02-15T06:59:35Z +200 121 2020-02-15T06:59:35Z +200 149 2020-02-15T06:59:35Z +200 346 2020-02-15T06:59:35Z +200 419 2020-02-15T06:59:35Z +200 462 2020-02-15T06:59:35Z +200 465 2020-02-15T06:59:35Z +200 474 2020-02-15T06:59:35Z +200 537 2020-02-15T06:59:35Z +200 538 2020-02-15T06:59:35Z +200 544 2020-02-15T06:59:35Z +200 714 2020-02-15T06:59:35Z +200 879 2020-02-15T06:59:35Z +200 912 2020-02-15T06:59:35Z +200 945 2020-02-15T06:59:35Z +200 958 2020-02-15T06:59:35Z +200 993 2020-02-15T06:59:35Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/film_category.tsv b/drivers/csv/testdata/sakila-tsv-noheader/film_category.tsv new file mode 100644 index 00000000..695013ba --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/film_category.tsv @@ -0,0 +1,1000 @@ +1 6 2020-02-15T06:59:35Z +2 11 2020-02-15T06:59:35Z +3 6 2020-02-15T06:59:35Z +4 11 2020-02-15T06:59:35Z +5 8 2020-02-15T06:59:35Z +6 9 2020-02-15T06:59:35Z +7 5 2020-02-15T06:59:35Z +8 11 2020-02-15T06:59:35Z +9 11 2020-02-15T06:59:35Z +10 15 2020-02-15T06:59:35Z +11 9 2020-02-15T06:59:35Z +12 12 2020-02-15T06:59:35Z +13 11 2020-02-15T06:59:35Z +14 4 2020-02-15T06:59:35Z +15 9 2020-02-15T06:59:35Z +16 9 2020-02-15T06:59:35Z +17 12 2020-02-15T06:59:35Z +18 2 2020-02-15T06:59:35Z +19 1 2020-02-15T06:59:35Z +20 12 2020-02-15T06:59:35Z +21 1 2020-02-15T06:59:35Z +22 13 2020-02-15T06:59:35Z +23 2 2020-02-15T06:59:35Z +24 11 2020-02-15T06:59:35Z +25 13 2020-02-15T06:59:35Z +26 14 2020-02-15T06:59:35Z +27 15 2020-02-15T06:59:35Z +28 5 2020-02-15T06:59:35Z +29 1 2020-02-15T06:59:35Z +30 11 2020-02-15T06:59:35Z +31 8 2020-02-15T06:59:35Z +32 13 2020-02-15T06:59:35Z +33 7 2020-02-15T06:59:35Z +34 11 2020-02-15T06:59:35Z +35 11 2020-02-15T06:59:35Z +36 2 2020-02-15T06:59:35Z +37 4 2020-02-15T06:59:35Z +38 1 2020-02-15T06:59:35Z +39 14 2020-02-15T06:59:35Z +40 6 2020-02-15T06:59:35Z +41 16 2020-02-15T06:59:35Z +42 15 2020-02-15T06:59:35Z +43 8 2020-02-15T06:59:35Z +44 14 2020-02-15T06:59:35Z +45 13 2020-02-15T06:59:35Z +46 10 2020-02-15T06:59:35Z +47 9 2020-02-15T06:59:35Z +48 3 2020-02-15T06:59:35Z +49 14 2020-02-15T06:59:35Z +50 8 2020-02-15T06:59:35Z +51 12 2020-02-15T06:59:35Z +52 9 2020-02-15T06:59:35Z +53 8 2020-02-15T06:59:35Z +54 12 2020-02-15T06:59:35Z +55 14 2020-02-15T06:59:35Z +56 1 2020-02-15T06:59:35Z +57 16 2020-02-15T06:59:35Z +58 6 2020-02-15T06:59:35Z +59 3 2020-02-15T06:59:35Z +60 4 2020-02-15T06:59:35Z +61 7 2020-02-15T06:59:35Z +62 6 2020-02-15T06:59:35Z +63 8 2020-02-15T06:59:35Z +64 7 2020-02-15T06:59:35Z +65 11 2020-02-15T06:59:35Z +66 3 2020-02-15T06:59:35Z +67 1 2020-02-15T06:59:35Z +68 3 2020-02-15T06:59:35Z +69 14 2020-02-15T06:59:35Z +70 2 2020-02-15T06:59:35Z +71 8 2020-02-15T06:59:35Z +72 6 2020-02-15T06:59:35Z +73 14 2020-02-15T06:59:35Z +74 12 2020-02-15T06:59:35Z +75 16 2020-02-15T06:59:35Z +76 12 2020-02-15T06:59:35Z +77 13 2020-02-15T06:59:35Z +78 2 2020-02-15T06:59:35Z +79 7 2020-02-15T06:59:35Z +80 8 2020-02-15T06:59:35Z +81 14 2020-02-15T06:59:35Z +82 8 2020-02-15T06:59:35Z +83 8 2020-02-15T06:59:35Z +84 16 2020-02-15T06:59:35Z +85 6 2020-02-15T06:59:35Z +86 12 2020-02-15T06:59:35Z +87 16 2020-02-15T06:59:35Z +88 16 2020-02-15T06:59:35Z +89 2 2020-02-15T06:59:35Z +90 13 2020-02-15T06:59:35Z +91 4 2020-02-15T06:59:35Z +92 11 2020-02-15T06:59:35Z +93 13 2020-02-15T06:59:35Z +94 8 2020-02-15T06:59:35Z +95 13 2020-02-15T06:59:35Z +96 13 2020-02-15T06:59:35Z +97 1 2020-02-15T06:59:35Z +98 7 2020-02-15T06:59:35Z +99 5 2020-02-15T06:59:35Z +100 9 2020-02-15T06:59:35Z +101 6 2020-02-15T06:59:35Z +102 15 2020-02-15T06:59:35Z +103 16 2020-02-15T06:59:35Z +104 9 2020-02-15T06:59:35Z +105 1 2020-02-15T06:59:35Z +106 10 2020-02-15T06:59:35Z +107 7 2020-02-15T06:59:35Z +108 13 2020-02-15T06:59:35Z +109 13 2020-02-15T06:59:35Z +110 3 2020-02-15T06:59:35Z +111 1 2020-02-15T06:59:35Z +112 9 2020-02-15T06:59:35Z +113 15 2020-02-15T06:59:35Z +114 14 2020-02-15T06:59:35Z +115 1 2020-02-15T06:59:35Z +116 4 2020-02-15T06:59:35Z +117 10 2020-02-15T06:59:35Z +118 2 2020-02-15T06:59:35Z +119 5 2020-02-15T06:59:35Z +120 15 2020-02-15T06:59:35Z +121 2 2020-02-15T06:59:35Z +122 11 2020-02-15T06:59:35Z +123 16 2020-02-15T06:59:35Z +124 3 2020-02-15T06:59:35Z +125 16 2020-02-15T06:59:35Z +126 1 2020-02-15T06:59:35Z +127 5 2020-02-15T06:59:35Z +128 9 2020-02-15T06:59:35Z +129 6 2020-02-15T06:59:35Z +130 1 2020-02-15T06:59:35Z +131 4 2020-02-15T06:59:35Z +132 14 2020-02-15T06:59:35Z +133 12 2020-02-15T06:59:35Z +134 2 2020-02-15T06:59:35Z +135 15 2020-02-15T06:59:35Z +136 13 2020-02-15T06:59:35Z +137 14 2020-02-15T06:59:35Z +138 14 2020-02-15T06:59:35Z +139 8 2020-02-15T06:59:35Z +140 14 2020-02-15T06:59:35Z +141 10 2020-02-15T06:59:35Z +142 6 2020-02-15T06:59:35Z +143 7 2020-02-15T06:59:35Z +144 13 2020-02-15T06:59:35Z +145 8 2020-02-15T06:59:35Z +146 7 2020-02-15T06:59:35Z +147 8 2020-02-15T06:59:35Z +148 9 2020-02-15T06:59:35Z +149 3 2020-02-15T06:59:35Z +150 6 2020-02-15T06:59:35Z +151 14 2020-02-15T06:59:35Z +152 3 2020-02-15T06:59:35Z +153 14 2020-02-15T06:59:35Z +154 2 2020-02-15T06:59:35Z +155 13 2020-02-15T06:59:35Z +156 6 2020-02-15T06:59:35Z +157 3 2020-02-15T06:59:35Z +158 12 2020-02-15T06:59:35Z +159 5 2020-02-15T06:59:35Z +160 2 2020-02-15T06:59:35Z +161 12 2020-02-15T06:59:35Z +162 1 2020-02-15T06:59:35Z +163 13 2020-02-15T06:59:35Z +164 6 2020-02-15T06:59:35Z +165 14 2020-02-15T06:59:35Z +166 4 2020-02-15T06:59:35Z +167 16 2020-02-15T06:59:35Z +168 3 2020-02-15T06:59:35Z +169 16 2020-02-15T06:59:35Z +170 9 2020-02-15T06:59:35Z +171 11 2020-02-15T06:59:35Z +172 7 2020-02-15T06:59:35Z +173 7 2020-02-15T06:59:35Z +174 12 2020-02-15T06:59:35Z +175 8 2020-02-15T06:59:35Z +176 15 2020-02-15T06:59:35Z +177 14 2020-02-15T06:59:35Z +178 5 2020-02-15T06:59:35Z +179 7 2020-02-15T06:59:35Z +180 4 2020-02-15T06:59:35Z +181 16 2020-02-15T06:59:35Z +182 5 2020-02-15T06:59:35Z +183 8 2020-02-15T06:59:35Z +184 4 2020-02-15T06:59:35Z +185 9 2020-02-15T06:59:35Z +186 7 2020-02-15T06:59:35Z +187 15 2020-02-15T06:59:35Z +188 5 2020-02-15T06:59:35Z +189 10 2020-02-15T06:59:35Z +190 4 2020-02-15T06:59:35Z +191 3 2020-02-15T06:59:35Z +192 9 2020-02-15T06:59:35Z +193 2 2020-02-15T06:59:35Z +194 1 2020-02-15T06:59:35Z +195 14 2020-02-15T06:59:35Z +196 4 2020-02-15T06:59:35Z +197 15 2020-02-15T06:59:35Z +198 9 2020-02-15T06:59:35Z +199 6 2020-02-15T06:59:35Z +200 10 2020-02-15T06:59:35Z +201 9 2020-02-15T06:59:35Z +202 5 2020-02-15T06:59:35Z +203 14 2020-02-15T06:59:35Z +204 7 2020-02-15T06:59:35Z +205 1 2020-02-15T06:59:35Z +206 6 2020-02-15T06:59:35Z +207 9 2020-02-15T06:59:35Z +208 2 2020-02-15T06:59:35Z +209 7 2020-02-15T06:59:35Z +210 1 2020-02-15T06:59:35Z +211 10 2020-02-15T06:59:35Z +212 1 2020-02-15T06:59:35Z +213 8 2020-02-15T06:59:35Z +214 3 2020-02-15T06:59:35Z +215 10 2020-02-15T06:59:35Z +216 13 2020-02-15T06:59:35Z +217 10 2020-02-15T06:59:35Z +218 7 2020-02-15T06:59:35Z +219 6 2020-02-15T06:59:35Z +220 12 2020-02-15T06:59:35Z +221 6 2020-02-15T06:59:35Z +222 11 2020-02-15T06:59:35Z +223 2 2020-02-15T06:59:35Z +224 16 2020-02-15T06:59:35Z +225 7 2020-02-15T06:59:35Z +226 13 2020-02-15T06:59:35Z +227 10 2020-02-15T06:59:35Z +228 4 2020-02-15T06:59:35Z +229 1 2020-02-15T06:59:35Z +230 7 2020-02-15T06:59:35Z +231 8 2020-02-15T06:59:35Z +232 10 2020-02-15T06:59:35Z +233 16 2020-02-15T06:59:35Z +234 14 2020-02-15T06:59:35Z +235 14 2020-02-15T06:59:35Z +236 10 2020-02-15T06:59:35Z +237 15 2020-02-15T06:59:35Z +238 3 2020-02-15T06:59:35Z +239 2 2020-02-15T06:59:35Z +240 14 2020-02-15T06:59:35Z +241 2 2020-02-15T06:59:35Z +242 5 2020-02-15T06:59:35Z +243 2 2020-02-15T06:59:35Z +244 12 2020-02-15T06:59:35Z +245 2 2020-02-15T06:59:35Z +246 9 2020-02-15T06:59:35Z +247 5 2020-02-15T06:59:35Z +248 6 2020-02-15T06:59:35Z +249 4 2020-02-15T06:59:35Z +250 1 2020-02-15T06:59:35Z +251 13 2020-02-15T06:59:35Z +252 1 2020-02-15T06:59:35Z +253 1 2020-02-15T06:59:35Z +254 15 2020-02-15T06:59:35Z +255 12 2020-02-15T06:59:35Z +256 15 2020-02-15T06:59:35Z +257 16 2020-02-15T06:59:35Z +258 11 2020-02-15T06:59:35Z +259 2 2020-02-15T06:59:35Z +260 15 2020-02-15T06:59:35Z +261 6 2020-02-15T06:59:35Z +262 8 2020-02-15T06:59:35Z +263 15 2020-02-15T06:59:35Z +264 10 2020-02-15T06:59:35Z +265 5 2020-02-15T06:59:35Z +266 4 2020-02-15T06:59:35Z +267 13 2020-02-15T06:59:35Z +268 2 2020-02-15T06:59:35Z +269 8 2020-02-15T06:59:35Z +270 13 2020-02-15T06:59:35Z +271 1 2020-02-15T06:59:35Z +272 7 2020-02-15T06:59:35Z +273 8 2020-02-15T06:59:35Z +274 6 2020-02-15T06:59:35Z +275 11 2020-02-15T06:59:35Z +276 5 2020-02-15T06:59:35Z +277 11 2020-02-15T06:59:35Z +278 12 2020-02-15T06:59:35Z +279 15 2020-02-15T06:59:35Z +280 3 2020-02-15T06:59:35Z +281 10 2020-02-15T06:59:35Z +282 7 2020-02-15T06:59:35Z +283 13 2020-02-15T06:59:35Z +284 12 2020-02-15T06:59:35Z +285 14 2020-02-15T06:59:35Z +286 16 2020-02-15T06:59:35Z +287 1 2020-02-15T06:59:35Z +288 16 2020-02-15T06:59:35Z +289 13 2020-02-15T06:59:35Z +290 9 2020-02-15T06:59:35Z +291 15 2020-02-15T06:59:35Z +292 1 2020-02-15T06:59:35Z +293 15 2020-02-15T06:59:35Z +294 16 2020-02-15T06:59:35Z +295 6 2020-02-15T06:59:35Z +296 14 2020-02-15T06:59:35Z +297 4 2020-02-15T06:59:35Z +298 14 2020-02-15T06:59:35Z +299 16 2020-02-15T06:59:35Z +300 2 2020-02-15T06:59:35Z +301 11 2020-02-15T06:59:35Z +302 10 2020-02-15T06:59:35Z +303 1 2020-02-15T06:59:35Z +304 3 2020-02-15T06:59:35Z +305 13 2020-02-15T06:59:35Z +306 10 2020-02-15T06:59:35Z +307 16 2020-02-15T06:59:35Z +308 5 2020-02-15T06:59:35Z +309 8 2020-02-15T06:59:35Z +310 10 2020-02-15T06:59:35Z +311 9 2020-02-15T06:59:35Z +312 14 2020-02-15T06:59:35Z +313 11 2020-02-15T06:59:35Z +314 2 2020-02-15T06:59:35Z +315 8 2020-02-15T06:59:35Z +316 10 2020-02-15T06:59:35Z +317 5 2020-02-15T06:59:35Z +318 1 2020-02-15T06:59:35Z +319 14 2020-02-15T06:59:35Z +320 13 2020-02-15T06:59:35Z +321 13 2020-02-15T06:59:35Z +322 15 2020-02-15T06:59:35Z +323 15 2020-02-15T06:59:35Z +324 5 2020-02-15T06:59:35Z +325 2 2020-02-15T06:59:35Z +326 2 2020-02-15T06:59:35Z +327 1 2020-02-15T06:59:35Z +328 3 2020-02-15T06:59:35Z +329 1 2020-02-15T06:59:35Z +330 2 2020-02-15T06:59:35Z +331 10 2020-02-15T06:59:35Z +332 5 2020-02-15T06:59:35Z +333 12 2020-02-15T06:59:35Z +334 11 2020-02-15T06:59:35Z +335 5 2020-02-15T06:59:35Z +336 6 2020-02-15T06:59:35Z +337 9 2020-02-15T06:59:35Z +338 14 2020-02-15T06:59:35Z +339 16 2020-02-15T06:59:35Z +340 13 2020-02-15T06:59:35Z +341 4 2020-02-15T06:59:35Z +342 16 2020-02-15T06:59:35Z +343 3 2020-02-15T06:59:35Z +344 3 2020-02-15T06:59:35Z +345 8 2020-02-15T06:59:35Z +346 4 2020-02-15T06:59:35Z +347 16 2020-02-15T06:59:35Z +348 8 2020-02-15T06:59:35Z +349 2 2020-02-15T06:59:35Z +350 14 2020-02-15T06:59:35Z +351 11 2020-02-15T06:59:35Z +352 10 2020-02-15T06:59:35Z +353 9 2020-02-15T06:59:35Z +354 3 2020-02-15T06:59:35Z +355 2 2020-02-15T06:59:35Z +356 3 2020-02-15T06:59:35Z +357 4 2020-02-15T06:59:35Z +358 4 2020-02-15T06:59:35Z +359 8 2020-02-15T06:59:35Z +360 1 2020-02-15T06:59:35Z +361 15 2020-02-15T06:59:35Z +362 10 2020-02-15T06:59:35Z +363 12 2020-02-15T06:59:35Z +364 13 2020-02-15T06:59:35Z +365 5 2020-02-15T06:59:35Z +366 7 2020-02-15T06:59:35Z +367 14 2020-02-15T06:59:35Z +368 7 2020-02-15T06:59:35Z +369 14 2020-02-15T06:59:35Z +370 3 2020-02-15T06:59:35Z +371 1 2020-02-15T06:59:35Z +372 15 2020-02-15T06:59:35Z +373 3 2020-02-15T06:59:35Z +374 14 2020-02-15T06:59:35Z +375 1 2020-02-15T06:59:35Z +376 9 2020-02-15T06:59:35Z +377 8 2020-02-15T06:59:35Z +378 12 2020-02-15T06:59:35Z +379 7 2020-02-15T06:59:35Z +380 9 2020-02-15T06:59:35Z +381 10 2020-02-15T06:59:35Z +382 10 2020-02-15T06:59:35Z +383 15 2020-02-15T06:59:35Z +384 12 2020-02-15T06:59:35Z +385 5 2020-02-15T06:59:35Z +386 16 2020-02-15T06:59:35Z +387 10 2020-02-15T06:59:35Z +388 5 2020-02-15T06:59:35Z +389 15 2020-02-15T06:59:35Z +390 14 2020-02-15T06:59:35Z +391 8 2020-02-15T06:59:35Z +392 3 2020-02-15T06:59:35Z +393 6 2020-02-15T06:59:35Z +394 14 2020-02-15T06:59:35Z +395 1 2020-02-15T06:59:35Z +396 7 2020-02-15T06:59:35Z +397 14 2020-02-15T06:59:35Z +398 12 2020-02-15T06:59:35Z +399 9 2020-02-15T06:59:35Z +400 6 2020-02-15T06:59:35Z +401 7 2020-02-15T06:59:35Z +402 2 2020-02-15T06:59:35Z +403 7 2020-02-15T06:59:35Z +404 5 2020-02-15T06:59:35Z +405 16 2020-02-15T06:59:35Z +406 10 2020-02-15T06:59:35Z +407 6 2020-02-15T06:59:35Z +408 10 2020-02-15T06:59:35Z +409 3 2020-02-15T06:59:35Z +410 5 2020-02-15T06:59:35Z +411 12 2020-02-15T06:59:35Z +412 6 2020-02-15T06:59:35Z +413 5 2020-02-15T06:59:35Z +414 9 2020-02-15T06:59:35Z +415 11 2020-02-15T06:59:35Z +416 9 2020-02-15T06:59:35Z +417 1 2020-02-15T06:59:35Z +418 7 2020-02-15T06:59:35Z +419 8 2020-02-15T06:59:35Z +420 15 2020-02-15T06:59:35Z +421 9 2020-02-15T06:59:35Z +422 14 2020-02-15T06:59:35Z +423 3 2020-02-15T06:59:35Z +424 3 2020-02-15T06:59:35Z +425 4 2020-02-15T06:59:35Z +426 12 2020-02-15T06:59:35Z +427 6 2020-02-15T06:59:35Z +428 8 2020-02-15T06:59:35Z +429 15 2020-02-15T06:59:35Z +430 2 2020-02-15T06:59:35Z +431 9 2020-02-15T06:59:35Z +432 4 2020-02-15T06:59:35Z +433 2 2020-02-15T06:59:35Z +434 16 2020-02-15T06:59:35Z +435 9 2020-02-15T06:59:35Z +436 13 2020-02-15T06:59:35Z +437 8 2020-02-15T06:59:35Z +438 10 2020-02-15T06:59:35Z +439 7 2020-02-15T06:59:35Z +440 9 2020-02-15T06:59:35Z +441 6 2020-02-15T06:59:35Z +442 8 2020-02-15T06:59:35Z +443 5 2020-02-15T06:59:35Z +444 5 2020-02-15T06:59:35Z +445 4 2020-02-15T06:59:35Z +446 15 2020-02-15T06:59:35Z +447 10 2020-02-15T06:59:35Z +448 13 2020-02-15T06:59:35Z +449 14 2020-02-15T06:59:35Z +450 3 2020-02-15T06:59:35Z +451 16 2020-02-15T06:59:35Z +452 9 2020-02-15T06:59:35Z +453 15 2020-02-15T06:59:35Z +454 12 2020-02-15T06:59:35Z +455 9 2020-02-15T06:59:35Z +456 2 2020-02-15T06:59:35Z +457 6 2020-02-15T06:59:35Z +458 8 2020-02-15T06:59:35Z +459 9 2020-02-15T06:59:35Z +460 9 2020-02-15T06:59:35Z +461 2 2020-02-15T06:59:35Z +462 12 2020-02-15T06:59:35Z +463 15 2020-02-15T06:59:35Z +464 2 2020-02-15T06:59:35Z +465 13 2020-02-15T06:59:35Z +466 6 2020-02-15T06:59:35Z +467 9 2020-02-15T06:59:35Z +468 3 2020-02-15T06:59:35Z +469 4 2020-02-15T06:59:35Z +470 2 2020-02-15T06:59:35Z +471 4 2020-02-15T06:59:35Z +472 16 2020-02-15T06:59:35Z +473 7 2020-02-15T06:59:35Z +474 15 2020-02-15T06:59:35Z +475 11 2020-02-15T06:59:35Z +476 8 2020-02-15T06:59:35Z +477 12 2020-02-15T06:59:35Z +478 5 2020-02-15T06:59:35Z +479 8 2020-02-15T06:59:35Z +480 4 2020-02-15T06:59:35Z +481 13 2020-02-15T06:59:35Z +482 4 2020-02-15T06:59:35Z +483 10 2020-02-15T06:59:35Z +484 4 2020-02-15T06:59:35Z +485 3 2020-02-15T06:59:35Z +486 9 2020-02-15T06:59:35Z +487 4 2020-02-15T06:59:35Z +488 15 2020-02-15T06:59:35Z +489 2 2020-02-15T06:59:35Z +490 13 2020-02-15T06:59:35Z +491 3 2020-02-15T06:59:35Z +492 13 2020-02-15T06:59:35Z +493 9 2020-02-15T06:59:36Z +494 11 2020-02-15T06:59:36Z +495 11 2020-02-15T06:59:36Z +496 16 2020-02-15T06:59:36Z +497 6 2020-02-15T06:59:36Z +498 8 2020-02-15T06:59:36Z +499 8 2020-02-15T06:59:36Z +500 9 2020-02-15T06:59:36Z +501 1 2020-02-15T06:59:36Z +502 5 2020-02-15T06:59:36Z +503 15 2020-02-15T06:59:36Z +504 7 2020-02-15T06:59:36Z +505 3 2020-02-15T06:59:36Z +506 11 2020-02-15T06:59:36Z +507 10 2020-02-15T06:59:36Z +508 10 2020-02-15T06:59:36Z +509 3 2020-02-15T06:59:36Z +510 2 2020-02-15T06:59:36Z +511 1 2020-02-15T06:59:36Z +512 4 2020-02-15T06:59:36Z +513 16 2020-02-15T06:59:36Z +514 7 2020-02-15T06:59:36Z +515 3 2020-02-15T06:59:36Z +516 12 2020-02-15T06:59:36Z +517 15 2020-02-15T06:59:36Z +518 16 2020-02-15T06:59:36Z +519 15 2020-02-15T06:59:36Z +520 14 2020-02-15T06:59:36Z +521 7 2020-02-15T06:59:36Z +522 5 2020-02-15T06:59:36Z +523 4 2020-02-15T06:59:36Z +524 5 2020-02-15T06:59:36Z +525 4 2020-02-15T06:59:36Z +526 16 2020-02-15T06:59:36Z +527 11 2020-02-15T06:59:36Z +528 8 2020-02-15T06:59:36Z +529 5 2020-02-15T06:59:36Z +530 1 2020-02-15T06:59:36Z +531 9 2020-02-15T06:59:36Z +532 15 2020-02-15T06:59:36Z +533 9 2020-02-15T06:59:36Z +534 8 2020-02-15T06:59:36Z +535 11 2020-02-15T06:59:36Z +536 4 2020-02-15T06:59:36Z +537 4 2020-02-15T06:59:36Z +538 13 2020-02-15T06:59:36Z +539 7 2020-02-15T06:59:36Z +540 12 2020-02-15T06:59:36Z +541 2 2020-02-15T06:59:36Z +542 1 2020-02-15T06:59:36Z +543 16 2020-02-15T06:59:36Z +544 6 2020-02-15T06:59:36Z +545 9 2020-02-15T06:59:36Z +546 10 2020-02-15T06:59:36Z +547 3 2020-02-15T06:59:36Z +548 4 2020-02-15T06:59:36Z +549 1 2020-02-15T06:59:36Z +550 8 2020-02-15T06:59:36Z +551 13 2020-02-15T06:59:36Z +552 6 2020-02-15T06:59:36Z +553 3 2020-02-15T06:59:36Z +554 4 2020-02-15T06:59:36Z +555 5 2020-02-15T06:59:36Z +556 10 2020-02-15T06:59:36Z +557 8 2020-02-15T06:59:36Z +558 13 2020-02-15T06:59:36Z +559 14 2020-02-15T06:59:36Z +560 10 2020-02-15T06:59:36Z +561 13 2020-02-15T06:59:36Z +562 12 2020-02-15T06:59:36Z +563 10 2020-02-15T06:59:36Z +564 2 2020-02-15T06:59:36Z +565 9 2020-02-15T06:59:36Z +566 9 2020-02-15T06:59:36Z +567 9 2020-02-15T06:59:36Z +568 5 2020-02-15T06:59:36Z +569 2 2020-02-15T06:59:36Z +570 15 2020-02-15T06:59:36Z +571 6 2020-02-15T06:59:36Z +572 14 2020-02-15T06:59:36Z +573 3 2020-02-15T06:59:36Z +574 1 2020-02-15T06:59:36Z +575 6 2020-02-15T06:59:36Z +576 6 2020-02-15T06:59:36Z +577 15 2020-02-15T06:59:36Z +578 4 2020-02-15T06:59:36Z +579 1 2020-02-15T06:59:36Z +580 13 2020-02-15T06:59:36Z +581 12 2020-02-15T06:59:36Z +582 2 2020-02-15T06:59:36Z +583 2 2020-02-15T06:59:36Z +584 9 2020-02-15T06:59:36Z +585 7 2020-02-15T06:59:36Z +586 1 2020-02-15T06:59:36Z +587 6 2020-02-15T06:59:36Z +588 3 2020-02-15T06:59:36Z +589 6 2020-02-15T06:59:36Z +590 13 2020-02-15T06:59:36Z +591 10 2020-02-15T06:59:36Z +592 12 2020-02-15T06:59:36Z +593 11 2020-02-15T06:59:36Z +594 1 2020-02-15T06:59:36Z +595 9 2020-02-15T06:59:36Z +596 10 2020-02-15T06:59:36Z +597 10 2020-02-15T06:59:36Z +598 15 2020-02-15T06:59:36Z +599 15 2020-02-15T06:59:36Z +600 11 2020-02-15T06:59:36Z +601 16 2020-02-15T06:59:36Z +602 14 2020-02-15T06:59:36Z +603 8 2020-02-15T06:59:36Z +604 5 2020-02-15T06:59:36Z +605 9 2020-02-15T06:59:36Z +606 15 2020-02-15T06:59:36Z +607 9 2020-02-15T06:59:36Z +608 3 2020-02-15T06:59:36Z +609 16 2020-02-15T06:59:36Z +610 8 2020-02-15T06:59:36Z +611 4 2020-02-15T06:59:36Z +612 15 2020-02-15T06:59:36Z +613 5 2020-02-15T06:59:36Z +614 10 2020-02-15T06:59:36Z +615 2 2020-02-15T06:59:36Z +616 6 2020-02-15T06:59:36Z +617 8 2020-02-15T06:59:36Z +618 7 2020-02-15T06:59:36Z +619 15 2020-02-15T06:59:36Z +620 14 2020-02-15T06:59:36Z +621 8 2020-02-15T06:59:36Z +622 6 2020-02-15T06:59:36Z +623 9 2020-02-15T06:59:36Z +624 10 2020-02-15T06:59:36Z +625 14 2020-02-15T06:59:36Z +626 3 2020-02-15T06:59:36Z +627 6 2020-02-15T06:59:36Z +628 15 2020-02-15T06:59:36Z +629 6 2020-02-15T06:59:36Z +630 7 2020-02-15T06:59:36Z +631 15 2020-02-15T06:59:36Z +632 13 2020-02-15T06:59:36Z +633 4 2020-02-15T06:59:36Z +634 8 2020-02-15T06:59:36Z +635 13 2020-02-15T06:59:36Z +636 12 2020-02-15T06:59:36Z +637 14 2020-02-15T06:59:36Z +638 5 2020-02-15T06:59:36Z +639 8 2020-02-15T06:59:36Z +640 9 2020-02-15T06:59:36Z +641 9 2020-02-15T06:59:36Z +642 16 2020-02-15T06:59:36Z +643 7 2020-02-15T06:59:36Z +644 2 2020-02-15T06:59:36Z +645 16 2020-02-15T06:59:36Z +646 10 2020-02-15T06:59:36Z +647 12 2020-02-15T06:59:36Z +648 16 2020-02-15T06:59:36Z +649 2 2020-02-15T06:59:36Z +650 6 2020-02-15T06:59:36Z +651 2 2020-02-15T06:59:36Z +652 4 2020-02-15T06:59:36Z +653 11 2020-02-15T06:59:36Z +654 10 2020-02-15T06:59:36Z +655 14 2020-02-15T06:59:36Z +656 16 2020-02-15T06:59:36Z +657 5 2020-02-15T06:59:36Z +658 11 2020-02-15T06:59:36Z +659 1 2020-02-15T06:59:36Z +660 5 2020-02-15T06:59:36Z +661 9 2020-02-15T06:59:36Z +662 7 2020-02-15T06:59:36Z +663 4 2020-02-15T06:59:36Z +664 1 2020-02-15T06:59:36Z +665 11 2020-02-15T06:59:36Z +666 7 2020-02-15T06:59:36Z +667 15 2020-02-15T06:59:36Z +668 15 2020-02-15T06:59:36Z +669 9 2020-02-15T06:59:36Z +670 6 2020-02-15T06:59:36Z +671 15 2020-02-15T06:59:36Z +672 5 2020-02-15T06:59:36Z +673 12 2020-02-15T06:59:36Z +674 9 2020-02-15T06:59:36Z +675 13 2020-02-15T06:59:36Z +676 15 2020-02-15T06:59:36Z +677 13 2020-02-15T06:59:36Z +678 15 2020-02-15T06:59:36Z +679 8 2020-02-15T06:59:36Z +680 5 2020-02-15T06:59:36Z +681 15 2020-02-15T06:59:36Z +682 8 2020-02-15T06:59:36Z +683 7 2020-02-15T06:59:36Z +684 10 2020-02-15T06:59:36Z +685 13 2020-02-15T06:59:36Z +686 13 2020-02-15T06:59:36Z +687 6 2020-02-15T06:59:36Z +688 3 2020-02-15T06:59:36Z +689 9 2020-02-15T06:59:36Z +690 2 2020-02-15T06:59:36Z +691 15 2020-02-15T06:59:36Z +692 2 2020-02-15T06:59:36Z +693 2 2020-02-15T06:59:36Z +694 4 2020-02-15T06:59:36Z +695 8 2020-02-15T06:59:36Z +696 2 2020-02-15T06:59:36Z +697 1 2020-02-15T06:59:36Z +698 6 2020-02-15T06:59:36Z +699 10 2020-02-15T06:59:36Z +700 8 2020-02-15T06:59:36Z +701 10 2020-02-15T06:59:36Z +702 11 2020-02-15T06:59:36Z +703 2 2020-02-15T06:59:36Z +704 5 2020-02-15T06:59:36Z +705 9 2020-02-15T06:59:36Z +706 7 2020-02-15T06:59:36Z +707 1 2020-02-15T06:59:36Z +708 6 2020-02-15T06:59:36Z +709 7 2020-02-15T06:59:36Z +710 8 2020-02-15T06:59:36Z +711 14 2020-02-15T06:59:36Z +712 6 2020-02-15T06:59:36Z +713 6 2020-02-15T06:59:36Z +714 14 2020-02-15T06:59:36Z +715 8 2020-02-15T06:59:36Z +716 11 2020-02-15T06:59:36Z +717 1 2020-02-15T06:59:36Z +718 12 2020-02-15T06:59:36Z +719 15 2020-02-15T06:59:36Z +720 13 2020-02-15T06:59:36Z +721 12 2020-02-15T06:59:36Z +722 11 2020-02-15T06:59:36Z +723 14 2020-02-15T06:59:36Z +724 8 2020-02-15T06:59:36Z +725 4 2020-02-15T06:59:36Z +726 9 2020-02-15T06:59:36Z +727 8 2020-02-15T06:59:36Z +728 7 2020-02-15T06:59:36Z +729 15 2020-02-15T06:59:36Z +730 13 2020-02-15T06:59:36Z +731 4 2020-02-15T06:59:36Z +732 1 2020-02-15T06:59:36Z +733 15 2020-02-15T06:59:36Z +734 6 2020-02-15T06:59:36Z +735 3 2020-02-15T06:59:36Z +736 8 2020-02-15T06:59:36Z +737 11 2020-02-15T06:59:36Z +738 9 2020-02-15T06:59:36Z +739 7 2020-02-15T06:59:36Z +740 11 2020-02-15T06:59:36Z +741 12 2020-02-15T06:59:36Z +742 10 2020-02-15T06:59:36Z +743 2 2020-02-15T06:59:36Z +744 4 2020-02-15T06:59:36Z +745 15 2020-02-15T06:59:36Z +746 10 2020-02-15T06:59:36Z +747 10 2020-02-15T06:59:36Z +748 1 2020-02-15T06:59:36Z +749 11 2020-02-15T06:59:36Z +750 13 2020-02-15T06:59:36Z +751 13 2020-02-15T06:59:36Z +752 12 2020-02-15T06:59:36Z +753 8 2020-02-15T06:59:36Z +754 5 2020-02-15T06:59:36Z +755 3 2020-02-15T06:59:36Z +756 5 2020-02-15T06:59:36Z +757 6 2020-02-15T06:59:36Z +758 7 2020-02-15T06:59:36Z +759 13 2020-02-15T06:59:36Z +760 13 2020-02-15T06:59:36Z +761 3 2020-02-15T06:59:36Z +762 10 2020-02-15T06:59:36Z +763 15 2020-02-15T06:59:36Z +764 15 2020-02-15T06:59:36Z +765 5 2020-02-15T06:59:36Z +766 7 2020-02-15T06:59:36Z +767 12 2020-02-15T06:59:36Z +768 3 2020-02-15T06:59:36Z +769 9 2020-02-15T06:59:36Z +770 9 2020-02-15T06:59:36Z +771 7 2020-02-15T06:59:36Z +772 7 2020-02-15T06:59:36Z +773 15 2020-02-15T06:59:36Z +774 5 2020-02-15T06:59:36Z +775 7 2020-02-15T06:59:36Z +776 6 2020-02-15T06:59:36Z +777 15 2020-02-15T06:59:36Z +778 8 2020-02-15T06:59:36Z +779 15 2020-02-15T06:59:36Z +780 8 2020-02-15T06:59:36Z +781 10 2020-02-15T06:59:36Z +782 15 2020-02-15T06:59:36Z +783 16 2020-02-15T06:59:36Z +784 16 2020-02-15T06:59:36Z +785 16 2020-02-15T06:59:36Z +786 3 2020-02-15T06:59:36Z +787 16 2020-02-15T06:59:36Z +788 6 2020-02-15T06:59:36Z +789 9 2020-02-15T06:59:36Z +790 7 2020-02-15T06:59:36Z +791 6 2020-02-15T06:59:36Z +792 9 2020-02-15T06:59:36Z +793 1 2020-02-15T06:59:36Z +794 1 2020-02-15T06:59:36Z +795 8 2020-02-15T06:59:36Z +796 15 2020-02-15T06:59:36Z +797 12 2020-02-15T06:59:36Z +798 14 2020-02-15T06:59:36Z +799 11 2020-02-15T06:59:36Z +800 11 2020-02-15T06:59:36Z +801 3 2020-02-15T06:59:36Z +802 1 2020-02-15T06:59:36Z +803 7 2020-02-15T06:59:36Z +804 11 2020-02-15T06:59:36Z +805 2 2020-02-15T06:59:36Z +806 13 2020-02-15T06:59:36Z +807 10 2020-02-15T06:59:36Z +808 4 2020-02-15T06:59:36Z +809 15 2020-02-15T06:59:36Z +810 8 2020-02-15T06:59:36Z +811 16 2020-02-15T06:59:36Z +812 6 2020-02-15T06:59:36Z +813 15 2020-02-15T06:59:36Z +814 5 2020-02-15T06:59:36Z +815 4 2020-02-15T06:59:36Z +816 2 2020-02-15T06:59:36Z +817 14 2020-02-15T06:59:36Z +818 7 2020-02-15T06:59:36Z +819 12 2020-02-15T06:59:36Z +820 2 2020-02-15T06:59:36Z +821 9 2020-02-15T06:59:36Z +822 8 2020-02-15T06:59:36Z +823 1 2020-02-15T06:59:36Z +824 8 2020-02-15T06:59:36Z +825 1 2020-02-15T06:59:36Z +826 16 2020-02-15T06:59:36Z +827 7 2020-02-15T06:59:36Z +828 4 2020-02-15T06:59:36Z +829 8 2020-02-15T06:59:36Z +830 11 2020-02-15T06:59:36Z +831 14 2020-02-15T06:59:36Z +832 8 2020-02-15T06:59:36Z +833 3 2020-02-15T06:59:36Z +834 6 2020-02-15T06:59:36Z +835 10 2020-02-15T06:59:36Z +836 15 2020-02-15T06:59:36Z +837 5 2020-02-15T06:59:36Z +838 1 2020-02-15T06:59:36Z +839 14 2020-02-15T06:59:36Z +840 10 2020-02-15T06:59:36Z +841 15 2020-02-15T06:59:36Z +842 10 2020-02-15T06:59:36Z +843 4 2020-02-15T06:59:36Z +844 15 2020-02-15T06:59:36Z +845 9 2020-02-15T06:59:36Z +846 13 2020-02-15T06:59:36Z +847 13 2020-02-15T06:59:36Z +848 16 2020-02-15T06:59:36Z +849 2 2020-02-15T06:59:36Z +850 1 2020-02-15T06:59:36Z +851 15 2020-02-15T06:59:36Z +852 3 2020-02-15T06:59:36Z +853 3 2020-02-15T06:59:36Z +854 11 2020-02-15T06:59:36Z +855 6 2020-02-15T06:59:36Z +856 11 2020-02-15T06:59:36Z +857 5 2020-02-15T06:59:36Z +858 5 2020-02-15T06:59:36Z +859 2 2020-02-15T06:59:36Z +860 14 2020-02-15T06:59:36Z +861 10 2020-02-15T06:59:36Z +862 4 2020-02-15T06:59:36Z +863 14 2020-02-15T06:59:36Z +864 3 2020-02-15T06:59:36Z +865 2 2020-02-15T06:59:36Z +866 8 2020-02-15T06:59:36Z +867 8 2020-02-15T06:59:36Z +868 16 2020-02-15T06:59:36Z +869 1 2020-02-15T06:59:36Z +870 11 2020-02-15T06:59:36Z +871 5 2020-02-15T06:59:36Z +872 16 2020-02-15T06:59:36Z +873 3 2020-02-15T06:59:36Z +874 4 2020-02-15T06:59:36Z +875 15 2020-02-15T06:59:36Z +876 11 2020-02-15T06:59:36Z +877 12 2020-02-15T06:59:36Z +878 16 2020-02-15T06:59:36Z +879 12 2020-02-15T06:59:36Z +880 2 2020-02-15T06:59:36Z +881 11 2020-02-15T06:59:36Z +882 7 2020-02-15T06:59:36Z +883 3 2020-02-15T06:59:36Z +884 12 2020-02-15T06:59:36Z +885 11 2020-02-15T06:59:36Z +886 2 2020-02-15T06:59:36Z +887 2 2020-02-15T06:59:36Z +888 6 2020-02-15T06:59:36Z +889 3 2020-02-15T06:59:36Z +890 15 2020-02-15T06:59:36Z +891 4 2020-02-15T06:59:36Z +892 2 2020-02-15T06:59:36Z +893 14 2020-02-15T06:59:36Z +894 16 2020-02-15T06:59:36Z +895 4 2020-02-15T06:59:36Z +896 3 2020-02-15T06:59:36Z +897 7 2020-02-15T06:59:36Z +898 15 2020-02-15T06:59:36Z +899 4 2020-02-15T06:59:36Z +900 9 2020-02-15T06:59:36Z +901 2 2020-02-15T06:59:36Z +902 15 2020-02-15T06:59:36Z +903 16 2020-02-15T06:59:36Z +904 11 2020-02-15T06:59:36Z +905 5 2020-02-15T06:59:36Z +906 5 2020-02-15T06:59:36Z +907 7 2020-02-15T06:59:36Z +908 9 2020-02-15T06:59:36Z +909 11 2020-02-15T06:59:36Z +910 7 2020-02-15T06:59:36Z +911 1 2020-02-15T06:59:36Z +912 14 2020-02-15T06:59:36Z +913 13 2020-02-15T06:59:36Z +914 16 2020-02-15T06:59:36Z +915 1 2020-02-15T06:59:36Z +916 2 2020-02-15T06:59:36Z +917 15 2020-02-15T06:59:36Z +918 3 2020-02-15T06:59:36Z +919 10 2020-02-15T06:59:36Z +920 13 2020-02-15T06:59:36Z +921 12 2020-02-15T06:59:36Z +922 11 2020-02-15T06:59:36Z +923 7 2020-02-15T06:59:36Z +924 14 2020-02-15T06:59:36Z +925 6 2020-02-15T06:59:36Z +926 6 2020-02-15T06:59:36Z +927 1 2020-02-15T06:59:36Z +928 3 2020-02-15T06:59:36Z +929 9 2020-02-15T06:59:36Z +930 14 2020-02-15T06:59:36Z +931 16 2020-02-15T06:59:36Z +932 5 2020-02-15T06:59:36Z +933 13 2020-02-15T06:59:36Z +934 10 2020-02-15T06:59:36Z +935 13 2020-02-15T06:59:36Z +936 12 2020-02-15T06:59:36Z +937 13 2020-02-15T06:59:36Z +938 5 2020-02-15T06:59:36Z +939 5 2020-02-15T06:59:36Z +940 15 2020-02-15T06:59:36Z +941 10 2020-02-15T06:59:36Z +942 7 2020-02-15T06:59:36Z +943 6 2020-02-15T06:59:36Z +944 7 2020-02-15T06:59:36Z +945 6 2020-02-15T06:59:36Z +946 8 2020-02-15T06:59:36Z +947 9 2020-02-15T06:59:36Z +948 13 2020-02-15T06:59:36Z +949 10 2020-02-15T06:59:36Z +950 4 2020-02-15T06:59:36Z +951 4 2020-02-15T06:59:36Z +952 6 2020-02-15T06:59:36Z +953 2 2020-02-15T06:59:36Z +954 13 2020-02-15T06:59:36Z +955 3 2020-02-15T06:59:36Z +956 10 2020-02-15T06:59:36Z +957 9 2020-02-15T06:59:36Z +958 7 2020-02-15T06:59:36Z +959 3 2020-02-15T06:59:36Z +960 6 2020-02-15T06:59:36Z +961 9 2020-02-15T06:59:36Z +962 4 2020-02-15T06:59:36Z +963 2 2020-02-15T06:59:36Z +964 1 2020-02-15T06:59:36Z +965 11 2020-02-15T06:59:36Z +966 6 2020-02-15T06:59:36Z +967 14 2020-02-15T06:59:36Z +968 1 2020-02-15T06:59:36Z +969 7 2020-02-15T06:59:36Z +970 4 2020-02-15T06:59:36Z +971 9 2020-02-15T06:59:36Z +972 14 2020-02-15T06:59:36Z +973 6 2020-02-15T06:59:36Z +974 13 2020-02-15T06:59:36Z +975 8 2020-02-15T06:59:36Z +976 10 2020-02-15T06:59:36Z +977 16 2020-02-15T06:59:36Z +978 5 2020-02-15T06:59:36Z +979 7 2020-02-15T06:59:36Z +980 12 2020-02-15T06:59:36Z +981 16 2020-02-15T06:59:36Z +982 1 2020-02-15T06:59:36Z +983 12 2020-02-15T06:59:36Z +984 9 2020-02-15T06:59:36Z +985 14 2020-02-15T06:59:36Z +986 2 2020-02-15T06:59:36Z +987 12 2020-02-15T06:59:36Z +988 16 2020-02-15T06:59:36Z +989 16 2020-02-15T06:59:36Z +990 11 2020-02-15T06:59:36Z +991 1 2020-02-15T06:59:36Z +992 6 2020-02-15T06:59:36Z +993 3 2020-02-15T06:59:36Z +994 13 2020-02-15T06:59:36Z +995 11 2020-02-15T06:59:36Z +996 6 2020-02-15T06:59:36Z +997 12 2020-02-15T06:59:36Z +998 11 2020-02-15T06:59:36Z +999 3 2020-02-15T06:59:36Z +1000 5 2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/film_text.tsv b/drivers/csv/testdata/sakila-tsv-noheader/film_text.tsv new file mode 100644 index 00000000..e69de29b diff --git a/drivers/csv/testdata/sakila-tsv-noheader/inventory.tsv b/drivers/csv/testdata/sakila-tsv-noheader/inventory.tsv new file mode 100644 index 00000000..69d940fc --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/inventory.tsv @@ -0,0 +1,4581 @@ +1 1 1 2020-02-15T06:59:29Z +2 1 1 2020-02-15T06:59:29Z +3 1 1 2020-02-15T06:59:29Z +4 1 1 2020-02-15T06:59:29Z +5 1 2 2020-02-15T06:59:29Z +6 1 2 2020-02-15T06:59:29Z +7 1 2 2020-02-15T06:59:29Z +8 1 2 2020-02-15T06:59:29Z +9 2 2 2020-02-15T06:59:29Z +10 2 2 2020-02-15T06:59:29Z +11 2 2 2020-02-15T06:59:29Z +12 3 2 2020-02-15T06:59:29Z +13 3 2 2020-02-15T06:59:29Z +14 3 2 2020-02-15T06:59:29Z +15 3 2 2020-02-15T06:59:29Z +16 4 1 2020-02-15T06:59:29Z +17 4 1 2020-02-15T06:59:29Z +18 4 1 2020-02-15T06:59:29Z +19 4 1 2020-02-15T06:59:29Z +20 4 2 2020-02-15T06:59:29Z +21 4 2 2020-02-15T06:59:29Z +22 4 2 2020-02-15T06:59:29Z +23 5 2 2020-02-15T06:59:29Z +24 5 2 2020-02-15T06:59:29Z +25 5 2 2020-02-15T06:59:29Z +26 6 1 2020-02-15T06:59:29Z +27 6 1 2020-02-15T06:59:29Z +28 6 1 2020-02-15T06:59:29Z +29 6 2 2020-02-15T06:59:29Z +30 6 2 2020-02-15T06:59:29Z +31 6 2 2020-02-15T06:59:29Z +32 7 1 2020-02-15T06:59:29Z +33 7 1 2020-02-15T06:59:29Z +34 7 2 2020-02-15T06:59:29Z +35 7 2 2020-02-15T06:59:29Z +36 7 2 2020-02-15T06:59:29Z +37 8 2 2020-02-15T06:59:29Z +38 8 2 2020-02-15T06:59:29Z +39 8 2 2020-02-15T06:59:29Z +40 8 2 2020-02-15T06:59:29Z +41 9 1 2020-02-15T06:59:29Z +42 9 1 2020-02-15T06:59:29Z +43 9 1 2020-02-15T06:59:29Z +44 9 2 2020-02-15T06:59:29Z +45 9 2 2020-02-15T06:59:29Z +46 10 1 2020-02-15T06:59:29Z +47 10 1 2020-02-15T06:59:29Z +48 10 1 2020-02-15T06:59:29Z +49 10 1 2020-02-15T06:59:29Z +50 10 2 2020-02-15T06:59:29Z +51 10 2 2020-02-15T06:59:29Z +52 10 2 2020-02-15T06:59:29Z +53 11 1 2020-02-15T06:59:29Z +54 11 1 2020-02-15T06:59:29Z +55 11 1 2020-02-15T06:59:29Z +56 11 1 2020-02-15T06:59:29Z +57 11 2 2020-02-15T06:59:29Z +58 11 2 2020-02-15T06:59:29Z +59 11 2 2020-02-15T06:59:29Z +60 12 1 2020-02-15T06:59:29Z +61 12 1 2020-02-15T06:59:29Z +62 12 1 2020-02-15T06:59:29Z +63 12 2 2020-02-15T06:59:29Z +64 12 2 2020-02-15T06:59:29Z +65 12 2 2020-02-15T06:59:29Z +66 12 2 2020-02-15T06:59:29Z +67 13 2 2020-02-15T06:59:29Z +68 13 2 2020-02-15T06:59:29Z +69 13 2 2020-02-15T06:59:29Z +70 13 2 2020-02-15T06:59:29Z +71 15 1 2020-02-15T06:59:29Z +72 15 1 2020-02-15T06:59:29Z +73 15 2 2020-02-15T06:59:29Z +74 15 2 2020-02-15T06:59:29Z +75 15 2 2020-02-15T06:59:29Z +76 15 2 2020-02-15T06:59:29Z +77 16 1 2020-02-15T06:59:29Z +78 16 1 2020-02-15T06:59:29Z +79 16 2 2020-02-15T06:59:29Z +80 16 2 2020-02-15T06:59:29Z +81 17 1 2020-02-15T06:59:29Z +82 17 1 2020-02-15T06:59:29Z +83 17 1 2020-02-15T06:59:29Z +84 17 2 2020-02-15T06:59:29Z +85 17 2 2020-02-15T06:59:29Z +86 17 2 2020-02-15T06:59:29Z +87 18 1 2020-02-15T06:59:29Z +88 18 1 2020-02-15T06:59:29Z +89 18 1 2020-02-15T06:59:29Z +90 18 2 2020-02-15T06:59:29Z +91 18 2 2020-02-15T06:59:29Z +92 18 2 2020-02-15T06:59:29Z +93 19 1 2020-02-15T06:59:29Z +94 19 1 2020-02-15T06:59:29Z +95 19 1 2020-02-15T06:59:29Z +96 19 1 2020-02-15T06:59:29Z +97 19 2 2020-02-15T06:59:29Z +98 19 2 2020-02-15T06:59:29Z +99 20 1 2020-02-15T06:59:29Z +100 20 1 2020-02-15T06:59:29Z +101 20 1 2020-02-15T06:59:29Z +102 21 1 2020-02-15T06:59:29Z +103 21 1 2020-02-15T06:59:29Z +104 21 2 2020-02-15T06:59:29Z +105 21 2 2020-02-15T06:59:29Z +106 21 2 2020-02-15T06:59:29Z +107 21 2 2020-02-15T06:59:29Z +108 22 1 2020-02-15T06:59:29Z +109 22 1 2020-02-15T06:59:29Z +110 22 1 2020-02-15T06:59:29Z +111 22 1 2020-02-15T06:59:29Z +112 22 2 2020-02-15T06:59:29Z +113 22 2 2020-02-15T06:59:29Z +114 22 2 2020-02-15T06:59:29Z +115 23 1 2020-02-15T06:59:29Z +116 23 1 2020-02-15T06:59:29Z +117 23 1 2020-02-15T06:59:29Z +118 23 2 2020-02-15T06:59:29Z +119 23 2 2020-02-15T06:59:29Z +120 24 1 2020-02-15T06:59:29Z +121 24 1 2020-02-15T06:59:29Z +122 24 1 2020-02-15T06:59:29Z +123 24 1 2020-02-15T06:59:29Z +124 25 1 2020-02-15T06:59:29Z +125 25 1 2020-02-15T06:59:29Z +126 25 1 2020-02-15T06:59:29Z +127 25 1 2020-02-15T06:59:29Z +128 25 2 2020-02-15T06:59:29Z +129 25 2 2020-02-15T06:59:29Z +130 26 1 2020-02-15T06:59:29Z +131 26 1 2020-02-15T06:59:29Z +132 26 2 2020-02-15T06:59:29Z +133 26 2 2020-02-15T06:59:29Z +134 26 2 2020-02-15T06:59:29Z +135 27 1 2020-02-15T06:59:29Z +136 27 1 2020-02-15T06:59:29Z +137 27 1 2020-02-15T06:59:29Z +138 27 1 2020-02-15T06:59:29Z +139 28 1 2020-02-15T06:59:29Z +140 28 1 2020-02-15T06:59:29Z +141 28 1 2020-02-15T06:59:29Z +142 29 1 2020-02-15T06:59:29Z +143 29 1 2020-02-15T06:59:29Z +144 30 1 2020-02-15T06:59:29Z +145 30 1 2020-02-15T06:59:29Z +146 31 1 2020-02-15T06:59:29Z +147 31 1 2020-02-15T06:59:29Z +148 31 1 2020-02-15T06:59:29Z +149 31 1 2020-02-15T06:59:29Z +150 31 2 2020-02-15T06:59:29Z +151 31 2 2020-02-15T06:59:29Z +152 31 2 2020-02-15T06:59:29Z +153 31 2 2020-02-15T06:59:29Z +154 32 2 2020-02-15T06:59:29Z +155 32 2 2020-02-15T06:59:29Z +156 34 2 2020-02-15T06:59:29Z +157 34 2 2020-02-15T06:59:29Z +158 34 2 2020-02-15T06:59:29Z +159 34 2 2020-02-15T06:59:29Z +160 35 1 2020-02-15T06:59:29Z +161 35 1 2020-02-15T06:59:29Z +162 35 1 2020-02-15T06:59:29Z +163 35 1 2020-02-15T06:59:29Z +164 35 2 2020-02-15T06:59:29Z +165 35 2 2020-02-15T06:59:29Z +166 35 2 2020-02-15T06:59:29Z +167 37 1 2020-02-15T06:59:29Z +168 37 1 2020-02-15T06:59:29Z +169 37 1 2020-02-15T06:59:29Z +170 37 1 2020-02-15T06:59:29Z +171 37 2 2020-02-15T06:59:29Z +172 37 2 2020-02-15T06:59:29Z +173 37 2 2020-02-15T06:59:29Z +174 39 1 2020-02-15T06:59:29Z +175 39 1 2020-02-15T06:59:29Z +176 39 1 2020-02-15T06:59:29Z +177 39 2 2020-02-15T06:59:29Z +178 39 2 2020-02-15T06:59:29Z +179 39 2 2020-02-15T06:59:29Z +180 39 2 2020-02-15T06:59:29Z +181 40 2 2020-02-15T06:59:29Z +182 40 2 2020-02-15T06:59:29Z +183 40 2 2020-02-15T06:59:29Z +184 40 2 2020-02-15T06:59:29Z +185 42 2 2020-02-15T06:59:29Z +186 42 2 2020-02-15T06:59:29Z +187 42 2 2020-02-15T06:59:29Z +188 42 2 2020-02-15T06:59:29Z +189 43 1 2020-02-15T06:59:29Z +190 43 1 2020-02-15T06:59:29Z +191 43 1 2020-02-15T06:59:29Z +192 43 2 2020-02-15T06:59:29Z +193 43 2 2020-02-15T06:59:29Z +194 43 2 2020-02-15T06:59:29Z +195 43 2 2020-02-15T06:59:29Z +196 44 1 2020-02-15T06:59:29Z +197 44 1 2020-02-15T06:59:29Z +198 44 2 2020-02-15T06:59:29Z +199 44 2 2020-02-15T06:59:29Z +200 44 2 2020-02-15T06:59:29Z +201 45 1 2020-02-15T06:59:29Z +202 45 1 2020-02-15T06:59:29Z +203 45 1 2020-02-15T06:59:29Z +204 45 1 2020-02-15T06:59:29Z +205 45 2 2020-02-15T06:59:29Z +206 45 2 2020-02-15T06:59:29Z +207 46 2 2020-02-15T06:59:29Z +208 46 2 2020-02-15T06:59:29Z +209 46 2 2020-02-15T06:59:29Z +210 47 2 2020-02-15T06:59:29Z +211 47 2 2020-02-15T06:59:29Z +212 48 1 2020-02-15T06:59:29Z +213 48 1 2020-02-15T06:59:29Z +214 48 2 2020-02-15T06:59:29Z +215 48 2 2020-02-15T06:59:29Z +216 49 1 2020-02-15T06:59:29Z +217 49 1 2020-02-15T06:59:29Z +218 49 1 2020-02-15T06:59:29Z +219 49 2 2020-02-15T06:59:29Z +220 49 2 2020-02-15T06:59:29Z +221 49 2 2020-02-15T06:59:29Z +222 50 1 2020-02-15T06:59:29Z +223 50 1 2020-02-15T06:59:29Z +224 50 1 2020-02-15T06:59:29Z +225 50 2 2020-02-15T06:59:29Z +226 50 2 2020-02-15T06:59:29Z +227 51 1 2020-02-15T06:59:29Z +228 51 1 2020-02-15T06:59:29Z +229 51 2 2020-02-15T06:59:29Z +230 51 2 2020-02-15T06:59:29Z +231 51 2 2020-02-15T06:59:29Z +232 51 2 2020-02-15T06:59:29Z +233 52 2 2020-02-15T06:59:29Z +234 52 2 2020-02-15T06:59:29Z +235 53 1 2020-02-15T06:59:29Z +236 53 1 2020-02-15T06:59:29Z +237 54 1 2020-02-15T06:59:29Z +238 54 1 2020-02-15T06:59:29Z +239 54 1 2020-02-15T06:59:29Z +240 54 2 2020-02-15T06:59:29Z +241 54 2 2020-02-15T06:59:29Z +242 55 1 2020-02-15T06:59:29Z +243 55 1 2020-02-15T06:59:29Z +244 55 1 2020-02-15T06:59:29Z +245 55 1 2020-02-15T06:59:29Z +246 55 2 2020-02-15T06:59:29Z +247 55 2 2020-02-15T06:59:29Z +248 56 1 2020-02-15T06:59:29Z +249 56 1 2020-02-15T06:59:29Z +250 56 1 2020-02-15T06:59:29Z +251 56 2 2020-02-15T06:59:29Z +252 56 2 2020-02-15T06:59:29Z +253 57 1 2020-02-15T06:59:29Z +254 57 1 2020-02-15T06:59:29Z +255 57 1 2020-02-15T06:59:29Z +256 57 1 2020-02-15T06:59:29Z +257 57 2 2020-02-15T06:59:29Z +258 57 2 2020-02-15T06:59:29Z +259 57 2 2020-02-15T06:59:29Z +260 58 2 2020-02-15T06:59:29Z +261 58 2 2020-02-15T06:59:29Z +262 58 2 2020-02-15T06:59:29Z +263 58 2 2020-02-15T06:59:29Z +264 59 1 2020-02-15T06:59:29Z +265 59 1 2020-02-15T06:59:29Z +266 59 1 2020-02-15T06:59:29Z +267 59 2 2020-02-15T06:59:29Z +268 59 2 2020-02-15T06:59:29Z +269 60 1 2020-02-15T06:59:29Z +270 60 1 2020-02-15T06:59:29Z +271 60 1 2020-02-15T06:59:29Z +272 61 1 2020-02-15T06:59:29Z +273 61 1 2020-02-15T06:59:29Z +274 61 1 2020-02-15T06:59:29Z +275 61 1 2020-02-15T06:59:29Z +276 61 2 2020-02-15T06:59:29Z +277 61 2 2020-02-15T06:59:29Z +278 62 2 2020-02-15T06:59:29Z +279 62 2 2020-02-15T06:59:29Z +280 63 1 2020-02-15T06:59:29Z +281 63 1 2020-02-15T06:59:29Z +282 63 2 2020-02-15T06:59:29Z +283 63 2 2020-02-15T06:59:29Z +284 64 2 2020-02-15T06:59:29Z +285 64 2 2020-02-15T06:59:29Z +286 64 2 2020-02-15T06:59:29Z +287 65 2 2020-02-15T06:59:29Z +288 65 2 2020-02-15T06:59:29Z +289 65 2 2020-02-15T06:59:29Z +290 65 2 2020-02-15T06:59:29Z +291 66 1 2020-02-15T06:59:29Z +292 66 1 2020-02-15T06:59:29Z +293 66 1 2020-02-15T06:59:29Z +294 67 1 2020-02-15T06:59:29Z +295 67 1 2020-02-15T06:59:29Z +296 67 2 2020-02-15T06:59:29Z +297 67 2 2020-02-15T06:59:29Z +298 67 2 2020-02-15T06:59:29Z +299 67 2 2020-02-15T06:59:29Z +300 68 1 2020-02-15T06:59:29Z +301 68 1 2020-02-15T06:59:29Z +302 68 2 2020-02-15T06:59:29Z +303 68 2 2020-02-15T06:59:29Z +304 69 1 2020-02-15T06:59:29Z +305 69 1 2020-02-15T06:59:29Z +306 69 1 2020-02-15T06:59:29Z +307 69 1 2020-02-15T06:59:29Z +308 69 2 2020-02-15T06:59:29Z +309 69 2 2020-02-15T06:59:29Z +310 69 2 2020-02-15T06:59:29Z +311 69 2 2020-02-15T06:59:29Z +312 70 1 2020-02-15T06:59:29Z +313 70 1 2020-02-15T06:59:29Z +314 70 2 2020-02-15T06:59:29Z +315 70 2 2020-02-15T06:59:29Z +316 71 2 2020-02-15T06:59:29Z +317 71 2 2020-02-15T06:59:29Z +318 71 2 2020-02-15T06:59:29Z +319 71 2 2020-02-15T06:59:29Z +320 72 1 2020-02-15T06:59:29Z +321 72 1 2020-02-15T06:59:29Z +322 72 1 2020-02-15T06:59:29Z +323 72 1 2020-02-15T06:59:29Z +324 72 2 2020-02-15T06:59:29Z +325 72 2 2020-02-15T06:59:29Z +326 73 1 2020-02-15T06:59:29Z +327 73 1 2020-02-15T06:59:29Z +328 73 1 2020-02-15T06:59:29Z +329 73 1 2020-02-15T06:59:29Z +330 73 2 2020-02-15T06:59:29Z +331 73 2 2020-02-15T06:59:29Z +332 73 2 2020-02-15T06:59:29Z +333 73 2 2020-02-15T06:59:29Z +334 74 1 2020-02-15T06:59:29Z +335 74 1 2020-02-15T06:59:29Z +336 74 1 2020-02-15T06:59:29Z +337 74 2 2020-02-15T06:59:29Z +338 74 2 2020-02-15T06:59:29Z +339 75 2 2020-02-15T06:59:29Z +340 75 2 2020-02-15T06:59:29Z +341 75 2 2020-02-15T06:59:29Z +342 76 1 2020-02-15T06:59:29Z +343 76 1 2020-02-15T06:59:29Z +344 76 1 2020-02-15T06:59:29Z +345 77 1 2020-02-15T06:59:29Z +346 77 1 2020-02-15T06:59:29Z +347 77 1 2020-02-15T06:59:29Z +348 77 1 2020-02-15T06:59:29Z +349 77 2 2020-02-15T06:59:29Z +350 77 2 2020-02-15T06:59:29Z +351 78 1 2020-02-15T06:59:29Z +352 78 1 2020-02-15T06:59:29Z +353 78 1 2020-02-15T06:59:29Z +354 78 2 2020-02-15T06:59:29Z +355 78 2 2020-02-15T06:59:29Z +356 78 2 2020-02-15T06:59:29Z +357 78 2 2020-02-15T06:59:29Z +358 79 1 2020-02-15T06:59:29Z +359 79 1 2020-02-15T06:59:29Z +360 79 1 2020-02-15T06:59:29Z +361 79 2 2020-02-15T06:59:29Z +362 79 2 2020-02-15T06:59:29Z +363 79 2 2020-02-15T06:59:29Z +364 80 1 2020-02-15T06:59:29Z +365 80 1 2020-02-15T06:59:29Z +366 80 1 2020-02-15T06:59:29Z +367 80 1 2020-02-15T06:59:29Z +368 81 1 2020-02-15T06:59:29Z +369 81 1 2020-02-15T06:59:29Z +370 81 1 2020-02-15T06:59:29Z +371 81 1 2020-02-15T06:59:29Z +372 82 1 2020-02-15T06:59:29Z +373 82 1 2020-02-15T06:59:29Z +374 83 1 2020-02-15T06:59:29Z +375 83 1 2020-02-15T06:59:29Z +376 83 1 2020-02-15T06:59:29Z +377 83 2 2020-02-15T06:59:29Z +378 83 2 2020-02-15T06:59:29Z +379 84 1 2020-02-15T06:59:29Z +380 84 1 2020-02-15T06:59:29Z +381 84 1 2020-02-15T06:59:29Z +382 84 1 2020-02-15T06:59:29Z +383 85 2 2020-02-15T06:59:29Z +384 85 2 2020-02-15T06:59:29Z +385 85 2 2020-02-15T06:59:29Z +386 85 2 2020-02-15T06:59:29Z +387 86 1 2020-02-15T06:59:29Z +388 86 1 2020-02-15T06:59:29Z +389 86 1 2020-02-15T06:59:29Z +390 86 1 2020-02-15T06:59:29Z +391 86 2 2020-02-15T06:59:29Z +392 86 2 2020-02-15T06:59:29Z +393 86 2 2020-02-15T06:59:29Z +394 86 2 2020-02-15T06:59:29Z +395 88 2 2020-02-15T06:59:29Z +396 88 2 2020-02-15T06:59:29Z +397 88 2 2020-02-15T06:59:29Z +398 88 2 2020-02-15T06:59:29Z +399 89 1 2020-02-15T06:59:29Z +400 89 1 2020-02-15T06:59:29Z +401 89 1 2020-02-15T06:59:29Z +402 89 2 2020-02-15T06:59:29Z +403 89 2 2020-02-15T06:59:29Z +404 89 2 2020-02-15T06:59:29Z +405 90 1 2020-02-15T06:59:29Z +406 90 1 2020-02-15T06:59:29Z +407 90 1 2020-02-15T06:59:29Z +408 90 2 2020-02-15T06:59:29Z +409 90 2 2020-02-15T06:59:29Z +410 90 2 2020-02-15T06:59:29Z +411 91 1 2020-02-15T06:59:29Z +412 91 1 2020-02-15T06:59:29Z +413 91 1 2020-02-15T06:59:29Z +414 91 1 2020-02-15T06:59:29Z +415 91 2 2020-02-15T06:59:29Z +416 91 2 2020-02-15T06:59:29Z +417 91 2 2020-02-15T06:59:29Z +418 91 2 2020-02-15T06:59:29Z +419 92 1 2020-02-15T06:59:29Z +420 92 1 2020-02-15T06:59:29Z +421 92 2 2020-02-15T06:59:29Z +422 92 2 2020-02-15T06:59:29Z +423 93 2 2020-02-15T06:59:29Z +424 93 2 2020-02-15T06:59:29Z +425 93 2 2020-02-15T06:59:29Z +426 94 1 2020-02-15T06:59:29Z +427 94 1 2020-02-15T06:59:29Z +428 95 1 2020-02-15T06:59:29Z +429 95 1 2020-02-15T06:59:29Z +430 95 2 2020-02-15T06:59:29Z +431 95 2 2020-02-15T06:59:29Z +432 95 2 2020-02-15T06:59:29Z +433 96 1 2020-02-15T06:59:29Z +434 96 1 2020-02-15T06:59:29Z +435 96 1 2020-02-15T06:59:29Z +436 97 1 2020-02-15T06:59:29Z +437 97 1 2020-02-15T06:59:29Z +438 97 1 2020-02-15T06:59:29Z +439 97 1 2020-02-15T06:59:29Z +440 97 2 2020-02-15T06:59:29Z +441 97 2 2020-02-15T06:59:29Z +442 98 1 2020-02-15T06:59:29Z +443 98 1 2020-02-15T06:59:29Z +444 98 1 2020-02-15T06:59:29Z +445 99 1 2020-02-15T06:59:29Z +446 99 1 2020-02-15T06:59:29Z +447 99 1 2020-02-15T06:59:29Z +448 99 2 2020-02-15T06:59:29Z +449 99 2 2020-02-15T06:59:29Z +450 99 2 2020-02-15T06:59:29Z +451 100 1 2020-02-15T06:59:29Z +452 100 1 2020-02-15T06:59:29Z +453 100 1 2020-02-15T06:59:29Z +454 100 1 2020-02-15T06:59:29Z +455 100 2 2020-02-15T06:59:29Z +456 100 2 2020-02-15T06:59:29Z +457 101 1 2020-02-15T06:59:29Z +458 101 1 2020-02-15T06:59:29Z +459 101 1 2020-02-15T06:59:29Z +460 101 1 2020-02-15T06:59:29Z +461 101 2 2020-02-15T06:59:29Z +462 101 2 2020-02-15T06:59:29Z +463 102 2 2020-02-15T06:59:29Z +464 102 2 2020-02-15T06:59:29Z +465 103 1 2020-02-15T06:59:29Z +466 103 1 2020-02-15T06:59:29Z +467 103 1 2020-02-15T06:59:29Z +468 103 1 2020-02-15T06:59:29Z +469 103 2 2020-02-15T06:59:29Z +470 103 2 2020-02-15T06:59:29Z +471 103 2 2020-02-15T06:59:29Z +472 103 2 2020-02-15T06:59:29Z +473 104 2 2020-02-15T06:59:29Z +474 104 2 2020-02-15T06:59:29Z +475 104 2 2020-02-15T06:59:29Z +476 105 1 2020-02-15T06:59:29Z +477 105 1 2020-02-15T06:59:29Z +478 105 2 2020-02-15T06:59:29Z +479 105 2 2020-02-15T06:59:29Z +480 105 2 2020-02-15T06:59:29Z +481 106 1 2020-02-15T06:59:29Z +482 106 1 2020-02-15T06:59:29Z +483 107 2 2020-02-15T06:59:29Z +484 107 2 2020-02-15T06:59:29Z +485 109 1 2020-02-15T06:59:29Z +486 109 1 2020-02-15T06:59:29Z +487 109 1 2020-02-15T06:59:29Z +488 109 1 2020-02-15T06:59:29Z +489 109 2 2020-02-15T06:59:29Z +490 109 2 2020-02-15T06:59:29Z +491 109 2 2020-02-15T06:59:29Z +492 109 2 2020-02-15T06:59:29Z +493 110 1 2020-02-15T06:59:29Z +494 110 1 2020-02-15T06:59:29Z +495 110 1 2020-02-15T06:59:29Z +496 110 1 2020-02-15T06:59:29Z +497 111 2 2020-02-15T06:59:29Z +498 111 2 2020-02-15T06:59:29Z +499 111 2 2020-02-15T06:59:29Z +500 111 2 2020-02-15T06:59:29Z +501 112 1 2020-02-15T06:59:29Z +502 112 1 2020-02-15T06:59:29Z +503 112 1 2020-02-15T06:59:29Z +504 112 1 2020-02-15T06:59:29Z +505 112 2 2020-02-15T06:59:29Z +506 112 2 2020-02-15T06:59:29Z +507 112 2 2020-02-15T06:59:29Z +508 113 2 2020-02-15T06:59:29Z +509 113 2 2020-02-15T06:59:29Z +510 113 2 2020-02-15T06:59:29Z +511 113 2 2020-02-15T06:59:29Z +512 114 1 2020-02-15T06:59:29Z +513 114 1 2020-02-15T06:59:29Z +514 114 1 2020-02-15T06:59:29Z +515 114 1 2020-02-15T06:59:29Z +516 114 2 2020-02-15T06:59:29Z +517 114 2 2020-02-15T06:59:29Z +518 114 2 2020-02-15T06:59:29Z +519 115 1 2020-02-15T06:59:29Z +520 115 1 2020-02-15T06:59:29Z +521 115 1 2020-02-15T06:59:29Z +522 115 2 2020-02-15T06:59:29Z +523 115 2 2020-02-15T06:59:29Z +524 115 2 2020-02-15T06:59:29Z +525 115 2 2020-02-15T06:59:29Z +526 116 1 2020-02-15T06:59:29Z +527 116 1 2020-02-15T06:59:29Z +528 116 2 2020-02-15T06:59:29Z +529 116 2 2020-02-15T06:59:29Z +530 116 2 2020-02-15T06:59:29Z +531 116 2 2020-02-15T06:59:29Z +532 117 1 2020-02-15T06:59:29Z +533 117 1 2020-02-15T06:59:29Z +534 117 1 2020-02-15T06:59:29Z +535 117 1 2020-02-15T06:59:29Z +536 117 2 2020-02-15T06:59:29Z +537 117 2 2020-02-15T06:59:29Z +538 118 1 2020-02-15T06:59:29Z +539 118 1 2020-02-15T06:59:29Z +540 118 1 2020-02-15T06:59:29Z +541 118 1 2020-02-15T06:59:29Z +542 118 2 2020-02-15T06:59:29Z +543 118 2 2020-02-15T06:59:29Z +544 119 1 2020-02-15T06:59:29Z +545 119 1 2020-02-15T06:59:29Z +546 119 1 2020-02-15T06:59:29Z +547 119 2 2020-02-15T06:59:29Z +548 119 2 2020-02-15T06:59:29Z +549 119 2 2020-02-15T06:59:29Z +550 119 2 2020-02-15T06:59:29Z +551 120 1 2020-02-15T06:59:29Z +552 120 1 2020-02-15T06:59:29Z +553 120 1 2020-02-15T06:59:29Z +554 121 1 2020-02-15T06:59:29Z +555 121 1 2020-02-15T06:59:29Z +556 121 1 2020-02-15T06:59:29Z +557 121 2 2020-02-15T06:59:29Z +558 121 2 2020-02-15T06:59:29Z +559 121 2 2020-02-15T06:59:29Z +560 122 1 2020-02-15T06:59:29Z +561 122 1 2020-02-15T06:59:29Z +562 122 1 2020-02-15T06:59:29Z +563 122 1 2020-02-15T06:59:29Z +564 122 2 2020-02-15T06:59:29Z +565 122 2 2020-02-15T06:59:29Z +566 122 2 2020-02-15T06:59:29Z +567 123 1 2020-02-15T06:59:29Z +568 123 1 2020-02-15T06:59:29Z +569 123 2 2020-02-15T06:59:29Z +570 123 2 2020-02-15T06:59:29Z +571 123 2 2020-02-15T06:59:29Z +572 124 2 2020-02-15T06:59:29Z +573 124 2 2020-02-15T06:59:29Z +574 124 2 2020-02-15T06:59:29Z +575 125 2 2020-02-15T06:59:29Z +576 125 2 2020-02-15T06:59:29Z +577 126 2 2020-02-15T06:59:29Z +578 126 2 2020-02-15T06:59:29Z +579 126 2 2020-02-15T06:59:29Z +580 127 1 2020-02-15T06:59:29Z +581 127 1 2020-02-15T06:59:29Z +582 127 1 2020-02-15T06:59:29Z +583 127 1 2020-02-15T06:59:29Z +584 127 2 2020-02-15T06:59:29Z +585 127 2 2020-02-15T06:59:29Z +586 127 2 2020-02-15T06:59:29Z +587 127 2 2020-02-15T06:59:29Z +588 129 1 2020-02-15T06:59:29Z +589 129 1 2020-02-15T06:59:29Z +590 129 1 2020-02-15T06:59:29Z +591 129 2 2020-02-15T06:59:29Z +592 129 2 2020-02-15T06:59:29Z +593 129 2 2020-02-15T06:59:29Z +594 130 1 2020-02-15T06:59:29Z +595 130 1 2020-02-15T06:59:29Z +596 130 2 2020-02-15T06:59:29Z +597 130 2 2020-02-15T06:59:29Z +598 130 2 2020-02-15T06:59:29Z +599 130 2 2020-02-15T06:59:29Z +600 131 1 2020-02-15T06:59:29Z +601 131 1 2020-02-15T06:59:29Z +602 131 1 2020-02-15T06:59:29Z +603 131 1 2020-02-15T06:59:29Z +604 131 2 2020-02-15T06:59:29Z +605 131 2 2020-02-15T06:59:29Z +606 132 1 2020-02-15T06:59:29Z +607 132 1 2020-02-15T06:59:29Z +608 132 1 2020-02-15T06:59:29Z +609 132 1 2020-02-15T06:59:29Z +610 132 2 2020-02-15T06:59:29Z +611 132 2 2020-02-15T06:59:29Z +612 133 1 2020-02-15T06:59:29Z +613 133 1 2020-02-15T06:59:29Z +614 133 2 2020-02-15T06:59:29Z +615 133 2 2020-02-15T06:59:29Z +616 134 2 2020-02-15T06:59:29Z +617 134 2 2020-02-15T06:59:29Z +618 134 2 2020-02-15T06:59:29Z +619 135 1 2020-02-15T06:59:29Z +620 135 1 2020-02-15T06:59:29Z +621 135 1 2020-02-15T06:59:29Z +622 135 2 2020-02-15T06:59:29Z +623 135 2 2020-02-15T06:59:29Z +624 135 2 2020-02-15T06:59:29Z +625 135 2 2020-02-15T06:59:29Z +626 136 1 2020-02-15T06:59:29Z +627 136 1 2020-02-15T06:59:29Z +628 136 1 2020-02-15T06:59:29Z +629 137 2 2020-02-15T06:59:29Z +630 137 2 2020-02-15T06:59:29Z +631 137 2 2020-02-15T06:59:29Z +632 137 2 2020-02-15T06:59:29Z +633 138 1 2020-02-15T06:59:29Z +634 138 1 2020-02-15T06:59:29Z +635 138 2 2020-02-15T06:59:29Z +636 138 2 2020-02-15T06:59:29Z +637 138 2 2020-02-15T06:59:29Z +638 139 1 2020-02-15T06:59:29Z +639 139 1 2020-02-15T06:59:29Z +640 139 1 2020-02-15T06:59:29Z +641 139 1 2020-02-15T06:59:29Z +642 139 2 2020-02-15T06:59:29Z +643 139 2 2020-02-15T06:59:29Z +644 140 1 2020-02-15T06:59:29Z +645 140 1 2020-02-15T06:59:29Z +646 140 2 2020-02-15T06:59:29Z +647 140 2 2020-02-15T06:59:29Z +648 140 2 2020-02-15T06:59:29Z +649 141 1 2020-02-15T06:59:29Z +650 141 1 2020-02-15T06:59:29Z +651 141 1 2020-02-15T06:59:29Z +652 141 2 2020-02-15T06:59:29Z +653 141 2 2020-02-15T06:59:29Z +654 142 1 2020-02-15T06:59:29Z +655 142 1 2020-02-15T06:59:29Z +656 142 1 2020-02-15T06:59:29Z +657 142 2 2020-02-15T06:59:29Z +658 142 2 2020-02-15T06:59:29Z +659 143 1 2020-02-15T06:59:29Z +660 143 1 2020-02-15T06:59:29Z +661 143 1 2020-02-15T06:59:29Z +662 143 1 2020-02-15T06:59:29Z +663 143 2 2020-02-15T06:59:29Z +664 143 2 2020-02-15T06:59:29Z +665 143 2 2020-02-15T06:59:29Z +666 145 2 2020-02-15T06:59:29Z +667 145 2 2020-02-15T06:59:29Z +668 145 2 2020-02-15T06:59:29Z +669 146 1 2020-02-15T06:59:29Z +670 146 1 2020-02-15T06:59:29Z +671 146 1 2020-02-15T06:59:29Z +672 147 1 2020-02-15T06:59:29Z +673 147 1 2020-02-15T06:59:29Z +674 147 1 2020-02-15T06:59:29Z +675 147 2 2020-02-15T06:59:29Z +676 147 2 2020-02-15T06:59:29Z +677 147 2 2020-02-15T06:59:29Z +678 149 1 2020-02-15T06:59:29Z +679 149 1 2020-02-15T06:59:29Z +680 149 1 2020-02-15T06:59:29Z +681 149 2 2020-02-15T06:59:29Z +682 149 2 2020-02-15T06:59:29Z +683 149 2 2020-02-15T06:59:29Z +684 150 1 2020-02-15T06:59:29Z +685 150 1 2020-02-15T06:59:29Z +686 150 2 2020-02-15T06:59:29Z +687 150 2 2020-02-15T06:59:29Z +688 150 2 2020-02-15T06:59:29Z +689 150 2 2020-02-15T06:59:29Z +690 151 1 2020-02-15T06:59:29Z +691 151 1 2020-02-15T06:59:29Z +692 151 2 2020-02-15T06:59:29Z +693 151 2 2020-02-15T06:59:29Z +694 152 1 2020-02-15T06:59:29Z +695 152 1 2020-02-15T06:59:29Z +696 152 1 2020-02-15T06:59:29Z +697 152 1 2020-02-15T06:59:29Z +698 153 1 2020-02-15T06:59:29Z +699 153 1 2020-02-15T06:59:29Z +700 153 1 2020-02-15T06:59:29Z +701 153 1 2020-02-15T06:59:29Z +702 154 1 2020-02-15T06:59:29Z +703 154 1 2020-02-15T06:59:29Z +704 154 1 2020-02-15T06:59:29Z +705 154 2 2020-02-15T06:59:29Z +706 154 2 2020-02-15T06:59:29Z +707 154 2 2020-02-15T06:59:29Z +708 154 2 2020-02-15T06:59:29Z +709 155 1 2020-02-15T06:59:29Z +710 155 1 2020-02-15T06:59:29Z +711 155 2 2020-02-15T06:59:29Z +712 155 2 2020-02-15T06:59:29Z +713 155 2 2020-02-15T06:59:29Z +714 156 2 2020-02-15T06:59:29Z +715 156 2 2020-02-15T06:59:29Z +716 157 2 2020-02-15T06:59:29Z +717 157 2 2020-02-15T06:59:29Z +718 157 2 2020-02-15T06:59:29Z +719 158 1 2020-02-15T06:59:29Z +720 158 1 2020-02-15T06:59:29Z +721 158 2 2020-02-15T06:59:29Z +722 158 2 2020-02-15T06:59:29Z +723 158 2 2020-02-15T06:59:29Z +724 159 1 2020-02-15T06:59:29Z +725 159 1 2020-02-15T06:59:29Z +726 159 1 2020-02-15T06:59:29Z +727 159 1 2020-02-15T06:59:29Z +728 159 2 2020-02-15T06:59:29Z +729 159 2 2020-02-15T06:59:29Z +730 159 2 2020-02-15T06:59:29Z +731 160 1 2020-02-15T06:59:29Z +732 160 1 2020-02-15T06:59:29Z +733 160 2 2020-02-15T06:59:29Z +734 160 2 2020-02-15T06:59:29Z +735 160 2 2020-02-15T06:59:29Z +736 161 1 2020-02-15T06:59:29Z +737 161 1 2020-02-15T06:59:29Z +738 162 1 2020-02-15T06:59:29Z +739 162 1 2020-02-15T06:59:29Z +740 162 1 2020-02-15T06:59:29Z +741 162 2 2020-02-15T06:59:29Z +742 162 2 2020-02-15T06:59:29Z +743 162 2 2020-02-15T06:59:29Z +744 162 2 2020-02-15T06:59:29Z +745 163 2 2020-02-15T06:59:29Z +746 163 2 2020-02-15T06:59:29Z +747 163 2 2020-02-15T06:59:29Z +748 164 1 2020-02-15T06:59:29Z +749 164 1 2020-02-15T06:59:29Z +750 164 2 2020-02-15T06:59:29Z +751 164 2 2020-02-15T06:59:29Z +752 164 2 2020-02-15T06:59:29Z +753 165 1 2020-02-15T06:59:29Z +754 165 1 2020-02-15T06:59:29Z +755 165 1 2020-02-15T06:59:29Z +756 165 2 2020-02-15T06:59:29Z +757 165 2 2020-02-15T06:59:29Z +758 166 1 2020-02-15T06:59:29Z +759 166 1 2020-02-15T06:59:29Z +760 166 1 2020-02-15T06:59:29Z +761 166 1 2020-02-15T06:59:29Z +762 166 2 2020-02-15T06:59:29Z +763 166 2 2020-02-15T06:59:29Z +764 167 1 2020-02-15T06:59:29Z +765 167 1 2020-02-15T06:59:29Z +766 167 1 2020-02-15T06:59:29Z +767 167 1 2020-02-15T06:59:29Z +768 167 2 2020-02-15T06:59:29Z +769 167 2 2020-02-15T06:59:29Z +770 167 2 2020-02-15T06:59:29Z +771 168 1 2020-02-15T06:59:30Z +772 168 1 2020-02-15T06:59:30Z +773 169 1 2020-02-15T06:59:30Z +774 169 1 2020-02-15T06:59:30Z +775 169 2 2020-02-15T06:59:30Z +776 169 2 2020-02-15T06:59:30Z +777 170 1 2020-02-15T06:59:30Z +778 170 1 2020-02-15T06:59:30Z +779 170 2 2020-02-15T06:59:30Z +780 170 2 2020-02-15T06:59:30Z +781 170 2 2020-02-15T06:59:30Z +782 170 2 2020-02-15T06:59:30Z +783 172 1 2020-02-15T06:59:30Z +784 172 1 2020-02-15T06:59:30Z +785 172 1 2020-02-15T06:59:30Z +786 172 1 2020-02-15T06:59:30Z +787 172 2 2020-02-15T06:59:30Z +788 172 2 2020-02-15T06:59:30Z +789 172 2 2020-02-15T06:59:30Z +790 173 1 2020-02-15T06:59:30Z +791 173 1 2020-02-15T06:59:30Z +792 173 1 2020-02-15T06:59:30Z +793 173 2 2020-02-15T06:59:30Z +794 173 2 2020-02-15T06:59:30Z +795 174 1 2020-02-15T06:59:30Z +796 174 1 2020-02-15T06:59:30Z +797 174 1 2020-02-15T06:59:30Z +798 174 1 2020-02-15T06:59:30Z +799 174 2 2020-02-15T06:59:30Z +800 174 2 2020-02-15T06:59:30Z +801 174 2 2020-02-15T06:59:30Z +802 174 2 2020-02-15T06:59:30Z +803 175 1 2020-02-15T06:59:30Z +804 175 1 2020-02-15T06:59:30Z +805 175 2 2020-02-15T06:59:30Z +806 175 2 2020-02-15T06:59:30Z +807 175 2 2020-02-15T06:59:30Z +808 176 1 2020-02-15T06:59:30Z +809 176 1 2020-02-15T06:59:30Z +810 176 2 2020-02-15T06:59:30Z +811 176 2 2020-02-15T06:59:30Z +812 176 2 2020-02-15T06:59:30Z +813 176 2 2020-02-15T06:59:30Z +814 177 2 2020-02-15T06:59:30Z +815 177 2 2020-02-15T06:59:30Z +816 177 2 2020-02-15T06:59:30Z +817 178 1 2020-02-15T06:59:30Z +818 178 1 2020-02-15T06:59:30Z +819 179 1 2020-02-15T06:59:30Z +820 179 1 2020-02-15T06:59:30Z +821 179 1 2020-02-15T06:59:30Z +822 179 1 2020-02-15T06:59:30Z +823 180 2 2020-02-15T06:59:30Z +824 180 2 2020-02-15T06:59:30Z +825 181 1 2020-02-15T06:59:30Z +826 181 1 2020-02-15T06:59:30Z +827 181 1 2020-02-15T06:59:30Z +828 181 2 2020-02-15T06:59:30Z +829 181 2 2020-02-15T06:59:30Z +830 181 2 2020-02-15T06:59:30Z +831 181 2 2020-02-15T06:59:30Z +832 182 1 2020-02-15T06:59:30Z +833 182 1 2020-02-15T06:59:30Z +834 183 1 2020-02-15T06:59:30Z +835 183 1 2020-02-15T06:59:30Z +836 183 1 2020-02-15T06:59:30Z +837 183 2 2020-02-15T06:59:30Z +838 183 2 2020-02-15T06:59:30Z +839 183 2 2020-02-15T06:59:30Z +840 184 1 2020-02-15T06:59:30Z +841 184 1 2020-02-15T06:59:30Z +842 184 2 2020-02-15T06:59:30Z +843 184 2 2020-02-15T06:59:30Z +844 184 2 2020-02-15T06:59:30Z +845 185 1 2020-02-15T06:59:30Z +846 185 1 2020-02-15T06:59:30Z +847 186 1 2020-02-15T06:59:30Z +848 186 1 2020-02-15T06:59:30Z +849 186 2 2020-02-15T06:59:30Z +850 186 2 2020-02-15T06:59:30Z +851 187 2 2020-02-15T06:59:30Z +852 187 2 2020-02-15T06:59:30Z +853 187 2 2020-02-15T06:59:30Z +854 188 1 2020-02-15T06:59:30Z +855 188 1 2020-02-15T06:59:30Z +856 188 1 2020-02-15T06:59:30Z +857 189 1 2020-02-15T06:59:30Z +858 189 1 2020-02-15T06:59:30Z +859 189 2 2020-02-15T06:59:30Z +860 189 2 2020-02-15T06:59:30Z +861 189 2 2020-02-15T06:59:30Z +862 189 2 2020-02-15T06:59:30Z +863 190 2 2020-02-15T06:59:30Z +864 190 2 2020-02-15T06:59:30Z +865 190 2 2020-02-15T06:59:30Z +866 190 2 2020-02-15T06:59:30Z +867 191 1 2020-02-15T06:59:30Z +868 191 1 2020-02-15T06:59:30Z +869 191 1 2020-02-15T06:59:30Z +870 191 2 2020-02-15T06:59:30Z +871 191 2 2020-02-15T06:59:30Z +872 191 2 2020-02-15T06:59:30Z +873 193 1 2020-02-15T06:59:30Z +874 193 1 2020-02-15T06:59:30Z +875 193 1 2020-02-15T06:59:30Z +876 193 1 2020-02-15T06:59:30Z +877 193 2 2020-02-15T06:59:30Z +878 193 2 2020-02-15T06:59:30Z +879 193 2 2020-02-15T06:59:30Z +880 193 2 2020-02-15T06:59:30Z +881 194 1 2020-02-15T06:59:30Z +882 194 1 2020-02-15T06:59:30Z +883 194 2 2020-02-15T06:59:30Z +884 194 2 2020-02-15T06:59:30Z +885 196 1 2020-02-15T06:59:30Z +886 196 1 2020-02-15T06:59:30Z +887 197 1 2020-02-15T06:59:30Z +888 197 1 2020-02-15T06:59:30Z +889 199 1 2020-02-15T06:59:30Z +890 199 1 2020-02-15T06:59:30Z +891 199 1 2020-02-15T06:59:30Z +892 199 1 2020-02-15T06:59:30Z +893 199 2 2020-02-15T06:59:30Z +894 199 2 2020-02-15T06:59:30Z +895 199 2 2020-02-15T06:59:30Z +896 199 2 2020-02-15T06:59:30Z +897 200 1 2020-02-15T06:59:30Z +898 200 1 2020-02-15T06:59:30Z +899 200 1 2020-02-15T06:59:30Z +900 200 1 2020-02-15T06:59:30Z +901 200 2 2020-02-15T06:59:30Z +902 200 2 2020-02-15T06:59:30Z +903 200 2 2020-02-15T06:59:30Z +904 200 2 2020-02-15T06:59:30Z +905 201 1 2020-02-15T06:59:30Z +906 201 1 2020-02-15T06:59:30Z +907 201 1 2020-02-15T06:59:30Z +908 201 1 2020-02-15T06:59:30Z +909 202 1 2020-02-15T06:59:30Z +910 202 1 2020-02-15T06:59:30Z +911 202 1 2020-02-15T06:59:30Z +912 203 2 2020-02-15T06:59:30Z +913 203 2 2020-02-15T06:59:30Z +914 203 2 2020-02-15T06:59:30Z +915 203 2 2020-02-15T06:59:30Z +916 204 1 2020-02-15T06:59:30Z +917 204 1 2020-02-15T06:59:30Z +918 204 1 2020-02-15T06:59:30Z +919 204 1 2020-02-15T06:59:30Z +920 204 2 2020-02-15T06:59:30Z +921 204 2 2020-02-15T06:59:30Z +922 205 1 2020-02-15T06:59:30Z +923 205 1 2020-02-15T06:59:30Z +924 205 1 2020-02-15T06:59:30Z +925 205 1 2020-02-15T06:59:30Z +926 206 1 2020-02-15T06:59:30Z +927 206 1 2020-02-15T06:59:30Z +928 206 1 2020-02-15T06:59:30Z +929 206 1 2020-02-15T06:59:30Z +930 206 2 2020-02-15T06:59:30Z +931 206 2 2020-02-15T06:59:30Z +932 206 2 2020-02-15T06:59:30Z +933 206 2 2020-02-15T06:59:30Z +934 207 1 2020-02-15T06:59:30Z +935 207 1 2020-02-15T06:59:30Z +936 207 1 2020-02-15T06:59:30Z +937 207 1 2020-02-15T06:59:30Z +938 208 1 2020-02-15T06:59:30Z +939 208 1 2020-02-15T06:59:30Z +940 208 1 2020-02-15T06:59:30Z +941 209 1 2020-02-15T06:59:30Z +942 209 1 2020-02-15T06:59:30Z +943 209 1 2020-02-15T06:59:30Z +944 209 1 2020-02-15T06:59:30Z +945 210 2 2020-02-15T06:59:30Z +946 210 2 2020-02-15T06:59:30Z +947 210 2 2020-02-15T06:59:30Z +948 211 1 2020-02-15T06:59:30Z +949 211 1 2020-02-15T06:59:30Z +950 212 1 2020-02-15T06:59:30Z +951 212 1 2020-02-15T06:59:30Z +952 212 1 2020-02-15T06:59:30Z +953 212 2 2020-02-15T06:59:30Z +954 212 2 2020-02-15T06:59:30Z +955 213 1 2020-02-15T06:59:30Z +956 213 1 2020-02-15T06:59:30Z +957 213 1 2020-02-15T06:59:30Z +958 213 1 2020-02-15T06:59:30Z +959 214 2 2020-02-15T06:59:30Z +960 214 2 2020-02-15T06:59:30Z +961 214 2 2020-02-15T06:59:30Z +962 214 2 2020-02-15T06:59:30Z +963 215 1 2020-02-15T06:59:30Z +964 215 1 2020-02-15T06:59:30Z +965 215 1 2020-02-15T06:59:30Z +966 215 2 2020-02-15T06:59:30Z +967 215 2 2020-02-15T06:59:30Z +968 215 2 2020-02-15T06:59:30Z +969 216 1 2020-02-15T06:59:30Z +970 216 1 2020-02-15T06:59:30Z +971 216 2 2020-02-15T06:59:30Z +972 216 2 2020-02-15T06:59:30Z +973 216 2 2020-02-15T06:59:30Z +974 218 1 2020-02-15T06:59:30Z +975 218 1 2020-02-15T06:59:30Z +976 218 1 2020-02-15T06:59:30Z +977 218 1 2020-02-15T06:59:30Z +978 218 2 2020-02-15T06:59:30Z +979 218 2 2020-02-15T06:59:30Z +980 218 2 2020-02-15T06:59:30Z +981 219 1 2020-02-15T06:59:30Z +982 219 1 2020-02-15T06:59:30Z +983 219 1 2020-02-15T06:59:30Z +984 219 1 2020-02-15T06:59:30Z +985 220 1 2020-02-15T06:59:30Z +986 220 1 2020-02-15T06:59:30Z +987 220 1 2020-02-15T06:59:30Z +988 220 1 2020-02-15T06:59:30Z +989 220 2 2020-02-15T06:59:30Z +990 220 2 2020-02-15T06:59:30Z +991 220 2 2020-02-15T06:59:30Z +992 220 2 2020-02-15T06:59:30Z +993 222 1 2020-02-15T06:59:30Z +994 222 1 2020-02-15T06:59:30Z +995 222 2 2020-02-15T06:59:30Z +996 222 2 2020-02-15T06:59:30Z +997 222 2 2020-02-15T06:59:30Z +998 222 2 2020-02-15T06:59:30Z +999 223 2 2020-02-15T06:59:30Z +1000 223 2 2020-02-15T06:59:30Z +1001 224 1 2020-02-15T06:59:30Z +1002 224 1 2020-02-15T06:59:30Z +1003 225 1 2020-02-15T06:59:30Z +1004 225 1 2020-02-15T06:59:30Z +1005 225 1 2020-02-15T06:59:30Z +1006 226 1 2020-02-15T06:59:30Z +1007 226 1 2020-02-15T06:59:30Z +1008 226 2 2020-02-15T06:59:30Z +1009 226 2 2020-02-15T06:59:30Z +1010 226 2 2020-02-15T06:59:30Z +1011 227 1 2020-02-15T06:59:30Z +1012 227 1 2020-02-15T06:59:30Z +1013 227 1 2020-02-15T06:59:30Z +1014 227 2 2020-02-15T06:59:30Z +1015 227 2 2020-02-15T06:59:30Z +1016 228 1 2020-02-15T06:59:30Z +1017 228 1 2020-02-15T06:59:30Z +1018 228 1 2020-02-15T06:59:30Z +1019 228 2 2020-02-15T06:59:30Z +1020 228 2 2020-02-15T06:59:30Z +1021 228 2 2020-02-15T06:59:30Z +1022 228 2 2020-02-15T06:59:30Z +1023 229 1 2020-02-15T06:59:30Z +1024 229 1 2020-02-15T06:59:30Z +1025 229 2 2020-02-15T06:59:30Z +1026 229 2 2020-02-15T06:59:30Z +1027 230 1 2020-02-15T06:59:30Z +1028 230 1 2020-02-15T06:59:30Z +1029 231 1 2020-02-15T06:59:30Z +1030 231 1 2020-02-15T06:59:30Z +1031 231 1 2020-02-15T06:59:30Z +1032 231 1 2020-02-15T06:59:30Z +1033 231 2 2020-02-15T06:59:30Z +1034 231 2 2020-02-15T06:59:30Z +1035 231 2 2020-02-15T06:59:30Z +1036 231 2 2020-02-15T06:59:30Z +1037 232 1 2020-02-15T06:59:30Z +1038 232 1 2020-02-15T06:59:30Z +1039 232 1 2020-02-15T06:59:30Z +1040 232 2 2020-02-15T06:59:30Z +1041 232 2 2020-02-15T06:59:30Z +1042 233 1 2020-02-15T06:59:30Z +1043 233 1 2020-02-15T06:59:30Z +1044 233 1 2020-02-15T06:59:30Z +1045 233 1 2020-02-15T06:59:30Z +1046 233 2 2020-02-15T06:59:30Z +1047 233 2 2020-02-15T06:59:30Z +1048 234 1 2020-02-15T06:59:30Z +1049 234 1 2020-02-15T06:59:30Z +1050 234 1 2020-02-15T06:59:30Z +1051 234 1 2020-02-15T06:59:30Z +1052 234 2 2020-02-15T06:59:30Z +1053 234 2 2020-02-15T06:59:30Z +1054 234 2 2020-02-15T06:59:30Z +1055 235 1 2020-02-15T06:59:30Z +1056 235 1 2020-02-15T06:59:30Z +1057 235 2 2020-02-15T06:59:30Z +1058 235 2 2020-02-15T06:59:30Z +1059 235 2 2020-02-15T06:59:30Z +1060 235 2 2020-02-15T06:59:30Z +1061 236 2 2020-02-15T06:59:30Z +1062 236 2 2020-02-15T06:59:30Z +1063 236 2 2020-02-15T06:59:30Z +1064 236 2 2020-02-15T06:59:30Z +1065 237 1 2020-02-15T06:59:30Z +1066 237 1 2020-02-15T06:59:30Z +1067 238 1 2020-02-15T06:59:30Z +1068 238 1 2020-02-15T06:59:30Z +1069 239 1 2020-02-15T06:59:30Z +1070 239 1 2020-02-15T06:59:30Z +1071 239 1 2020-02-15T06:59:30Z +1072 239 1 2020-02-15T06:59:30Z +1073 239 2 2020-02-15T06:59:30Z +1074 239 2 2020-02-15T06:59:30Z +1075 239 2 2020-02-15T06:59:30Z +1076 239 2 2020-02-15T06:59:30Z +1077 240 2 2020-02-15T06:59:30Z +1078 240 2 2020-02-15T06:59:30Z +1079 240 2 2020-02-15T06:59:30Z +1080 241 1 2020-02-15T06:59:30Z +1081 241 1 2020-02-15T06:59:30Z +1082 241 1 2020-02-15T06:59:30Z +1083 241 1 2020-02-15T06:59:30Z +1084 242 1 2020-02-15T06:59:30Z +1085 242 1 2020-02-15T06:59:30Z +1086 242 2 2020-02-15T06:59:30Z +1087 242 2 2020-02-15T06:59:30Z +1088 242 2 2020-02-15T06:59:30Z +1089 243 1 2020-02-15T06:59:30Z +1090 243 1 2020-02-15T06:59:30Z +1091 243 2 2020-02-15T06:59:30Z +1092 243 2 2020-02-15T06:59:30Z +1093 243 2 2020-02-15T06:59:30Z +1094 243 2 2020-02-15T06:59:30Z +1095 244 1 2020-02-15T06:59:30Z +1096 244 1 2020-02-15T06:59:30Z +1097 244 1 2020-02-15T06:59:30Z +1098 244 1 2020-02-15T06:59:30Z +1099 244 2 2020-02-15T06:59:30Z +1100 244 2 2020-02-15T06:59:30Z +1101 244 2 2020-02-15T06:59:30Z +1102 245 1 2020-02-15T06:59:30Z +1103 245 1 2020-02-15T06:59:30Z +1104 245 1 2020-02-15T06:59:30Z +1105 245 2 2020-02-15T06:59:30Z +1106 245 2 2020-02-15T06:59:30Z +1107 245 2 2020-02-15T06:59:30Z +1108 245 2 2020-02-15T06:59:30Z +1109 246 2 2020-02-15T06:59:30Z +1110 246 2 2020-02-15T06:59:30Z +1111 246 2 2020-02-15T06:59:30Z +1112 247 1 2020-02-15T06:59:30Z +1113 247 1 2020-02-15T06:59:30Z +1114 247 1 2020-02-15T06:59:30Z +1115 247 2 2020-02-15T06:59:30Z +1116 247 2 2020-02-15T06:59:30Z +1117 247 2 2020-02-15T06:59:30Z +1118 247 2 2020-02-15T06:59:30Z +1119 248 2 2020-02-15T06:59:30Z +1120 248 2 2020-02-15T06:59:30Z +1121 249 1 2020-02-15T06:59:30Z +1122 249 1 2020-02-15T06:59:30Z +1123 249 2 2020-02-15T06:59:30Z +1124 249 2 2020-02-15T06:59:30Z +1125 249 2 2020-02-15T06:59:30Z +1126 249 2 2020-02-15T06:59:30Z +1127 250 2 2020-02-15T06:59:30Z +1128 250 2 2020-02-15T06:59:30Z +1129 250 2 2020-02-15T06:59:30Z +1130 250 2 2020-02-15T06:59:30Z +1131 251 1 2020-02-15T06:59:30Z +1132 251 1 2020-02-15T06:59:30Z +1133 251 2 2020-02-15T06:59:30Z +1134 251 2 2020-02-15T06:59:30Z +1135 251 2 2020-02-15T06:59:30Z +1136 252 1 2020-02-15T06:59:30Z +1137 252 1 2020-02-15T06:59:30Z +1138 252 1 2020-02-15T06:59:30Z +1139 252 2 2020-02-15T06:59:30Z +1140 252 2 2020-02-15T06:59:30Z +1141 252 2 2020-02-15T06:59:30Z +1142 253 1 2020-02-15T06:59:30Z +1143 253 1 2020-02-15T06:59:30Z +1144 253 1 2020-02-15T06:59:30Z +1145 253 1 2020-02-15T06:59:30Z +1146 253 2 2020-02-15T06:59:30Z +1147 253 2 2020-02-15T06:59:30Z +1148 254 1 2020-02-15T06:59:30Z +1149 254 1 2020-02-15T06:59:30Z +1150 254 2 2020-02-15T06:59:30Z +1151 254 2 2020-02-15T06:59:30Z +1152 254 2 2020-02-15T06:59:30Z +1153 255 1 2020-02-15T06:59:30Z +1154 255 1 2020-02-15T06:59:30Z +1155 255 1 2020-02-15T06:59:30Z +1156 255 1 2020-02-15T06:59:30Z +1157 255 2 2020-02-15T06:59:30Z +1158 255 2 2020-02-15T06:59:30Z +1159 256 2 2020-02-15T06:59:30Z +1160 256 2 2020-02-15T06:59:30Z +1161 256 2 2020-02-15T06:59:30Z +1162 257 2 2020-02-15T06:59:30Z +1163 257 2 2020-02-15T06:59:30Z +1164 257 2 2020-02-15T06:59:30Z +1165 258 2 2020-02-15T06:59:30Z +1166 258 2 2020-02-15T06:59:30Z +1167 258 2 2020-02-15T06:59:30Z +1168 258 2 2020-02-15T06:59:30Z +1169 259 1 2020-02-15T06:59:30Z +1170 259 1 2020-02-15T06:59:30Z +1171 260 2 2020-02-15T06:59:30Z +1172 260 2 2020-02-15T06:59:30Z +1173 260 2 2020-02-15T06:59:30Z +1174 260 2 2020-02-15T06:59:30Z +1175 261 1 2020-02-15T06:59:30Z +1176 261 1 2020-02-15T06:59:30Z +1177 262 2 2020-02-15T06:59:30Z +1178 262 2 2020-02-15T06:59:30Z +1179 263 1 2020-02-15T06:59:30Z +1180 263 1 2020-02-15T06:59:30Z +1181 263 1 2020-02-15T06:59:30Z +1182 263 1 2020-02-15T06:59:30Z +1183 263 2 2020-02-15T06:59:30Z +1184 263 2 2020-02-15T06:59:30Z +1185 263 2 2020-02-15T06:59:30Z +1186 264 2 2020-02-15T06:59:30Z +1187 264 2 2020-02-15T06:59:30Z +1188 265 1 2020-02-15T06:59:30Z +1189 265 1 2020-02-15T06:59:30Z +1190 265 1 2020-02-15T06:59:30Z +1191 265 1 2020-02-15T06:59:30Z +1192 266 1 2020-02-15T06:59:30Z +1193 266 1 2020-02-15T06:59:30Z +1194 266 1 2020-02-15T06:59:30Z +1195 266 1 2020-02-15T06:59:30Z +1196 266 2 2020-02-15T06:59:30Z +1197 266 2 2020-02-15T06:59:30Z +1198 266 2 2020-02-15T06:59:30Z +1199 266 2 2020-02-15T06:59:30Z +1200 267 1 2020-02-15T06:59:30Z +1201 267 1 2020-02-15T06:59:30Z +1202 267 1 2020-02-15T06:59:30Z +1203 267 1 2020-02-15T06:59:30Z +1204 267 2 2020-02-15T06:59:30Z +1205 267 2 2020-02-15T06:59:30Z +1206 268 2 2020-02-15T06:59:30Z +1207 268 2 2020-02-15T06:59:30Z +1208 269 1 2020-02-15T06:59:30Z +1209 269 1 2020-02-15T06:59:30Z +1210 269 2 2020-02-15T06:59:30Z +1211 269 2 2020-02-15T06:59:30Z +1212 269 2 2020-02-15T06:59:30Z +1213 269 2 2020-02-15T06:59:30Z +1214 270 1 2020-02-15T06:59:30Z +1215 270 1 2020-02-15T06:59:30Z +1216 270 1 2020-02-15T06:59:30Z +1217 270 2 2020-02-15T06:59:30Z +1218 270 2 2020-02-15T06:59:30Z +1219 270 2 2020-02-15T06:59:30Z +1220 270 2 2020-02-15T06:59:30Z +1221 271 1 2020-02-15T06:59:30Z +1222 271 1 2020-02-15T06:59:30Z +1223 271 1 2020-02-15T06:59:30Z +1224 271 2 2020-02-15T06:59:30Z +1225 271 2 2020-02-15T06:59:30Z +1226 272 1 2020-02-15T06:59:30Z +1227 272 1 2020-02-15T06:59:30Z +1228 272 1 2020-02-15T06:59:30Z +1229 272 1 2020-02-15T06:59:30Z +1230 273 1 2020-02-15T06:59:30Z +1231 273 1 2020-02-15T06:59:30Z +1232 273 1 2020-02-15T06:59:30Z +1233 273 1 2020-02-15T06:59:30Z +1234 273 2 2020-02-15T06:59:30Z +1235 273 2 2020-02-15T06:59:30Z +1236 273 2 2020-02-15T06:59:30Z +1237 274 1 2020-02-15T06:59:30Z +1238 274 1 2020-02-15T06:59:30Z +1239 274 1 2020-02-15T06:59:30Z +1240 274 2 2020-02-15T06:59:30Z +1241 274 2 2020-02-15T06:59:30Z +1242 274 2 2020-02-15T06:59:30Z +1243 274 2 2020-02-15T06:59:30Z +1244 275 1 2020-02-15T06:59:30Z +1245 275 1 2020-02-15T06:59:30Z +1246 275 1 2020-02-15T06:59:30Z +1247 275 2 2020-02-15T06:59:30Z +1248 275 2 2020-02-15T06:59:30Z +1249 276 1 2020-02-15T06:59:30Z +1250 276 1 2020-02-15T06:59:30Z +1251 276 1 2020-02-15T06:59:30Z +1252 276 1 2020-02-15T06:59:30Z +1253 277 1 2020-02-15T06:59:30Z +1254 277 1 2020-02-15T06:59:30Z +1255 277 1 2020-02-15T06:59:30Z +1256 278 1 2020-02-15T06:59:30Z +1257 278 1 2020-02-15T06:59:30Z +1258 279 1 2020-02-15T06:59:30Z +1259 279 1 2020-02-15T06:59:30Z +1260 280 1 2020-02-15T06:59:30Z +1261 280 1 2020-02-15T06:59:30Z +1262 280 1 2020-02-15T06:59:30Z +1263 280 1 2020-02-15T06:59:30Z +1264 280 2 2020-02-15T06:59:30Z +1265 280 2 2020-02-15T06:59:30Z +1266 281 1 2020-02-15T06:59:30Z +1267 281 1 2020-02-15T06:59:30Z +1268 281 2 2020-02-15T06:59:30Z +1269 281 2 2020-02-15T06:59:30Z +1270 281 2 2020-02-15T06:59:30Z +1271 281 2 2020-02-15T06:59:30Z +1272 282 1 2020-02-15T06:59:30Z +1273 282 1 2020-02-15T06:59:30Z +1274 282 1 2020-02-15T06:59:30Z +1275 282 2 2020-02-15T06:59:30Z +1276 282 2 2020-02-15T06:59:30Z +1277 282 2 2020-02-15T06:59:30Z +1278 283 1 2020-02-15T06:59:30Z +1279 283 1 2020-02-15T06:59:30Z +1280 283 1 2020-02-15T06:59:30Z +1281 284 1 2020-02-15T06:59:30Z +1282 284 1 2020-02-15T06:59:30Z +1283 284 1 2020-02-15T06:59:30Z +1284 284 2 2020-02-15T06:59:30Z +1285 284 2 2020-02-15T06:59:30Z +1286 284 2 2020-02-15T06:59:30Z +1287 284 2 2020-02-15T06:59:30Z +1288 285 1 2020-02-15T06:59:30Z +1289 285 1 2020-02-15T06:59:30Z +1290 285 1 2020-02-15T06:59:30Z +1291 285 2 2020-02-15T06:59:30Z +1292 285 2 2020-02-15T06:59:30Z +1293 285 2 2020-02-15T06:59:30Z +1294 285 2 2020-02-15T06:59:30Z +1295 286 1 2020-02-15T06:59:30Z +1296 286 1 2020-02-15T06:59:30Z +1297 286 2 2020-02-15T06:59:30Z +1298 286 2 2020-02-15T06:59:30Z +1299 286 2 2020-02-15T06:59:30Z +1300 287 1 2020-02-15T06:59:30Z +1301 287 1 2020-02-15T06:59:30Z +1302 287 2 2020-02-15T06:59:30Z +1303 287 2 2020-02-15T06:59:30Z +1304 288 1 2020-02-15T06:59:30Z +1305 288 1 2020-02-15T06:59:30Z +1306 288 2 2020-02-15T06:59:30Z +1307 288 2 2020-02-15T06:59:30Z +1308 288 2 2020-02-15T06:59:30Z +1309 288 2 2020-02-15T06:59:30Z +1310 289 1 2020-02-15T06:59:30Z +1311 289 1 2020-02-15T06:59:30Z +1312 290 1 2020-02-15T06:59:30Z +1313 290 1 2020-02-15T06:59:30Z +1314 290 1 2020-02-15T06:59:30Z +1315 291 1 2020-02-15T06:59:30Z +1316 291 1 2020-02-15T06:59:30Z +1317 291 1 2020-02-15T06:59:30Z +1318 291 1 2020-02-15T06:59:30Z +1319 292 1 2020-02-15T06:59:30Z +1320 292 1 2020-02-15T06:59:30Z +1321 292 1 2020-02-15T06:59:30Z +1322 292 2 2020-02-15T06:59:30Z +1323 292 2 2020-02-15T06:59:30Z +1324 292 2 2020-02-15T06:59:30Z +1325 293 1 2020-02-15T06:59:30Z +1326 293 1 2020-02-15T06:59:30Z +1327 293 2 2020-02-15T06:59:30Z +1328 293 2 2020-02-15T06:59:30Z +1329 293 2 2020-02-15T06:59:30Z +1330 294 1 2020-02-15T06:59:30Z +1331 294 1 2020-02-15T06:59:30Z +1332 294 2 2020-02-15T06:59:30Z +1333 294 2 2020-02-15T06:59:30Z +1334 294 2 2020-02-15T06:59:30Z +1335 295 1 2020-02-15T06:59:30Z +1336 295 1 2020-02-15T06:59:30Z +1337 295 1 2020-02-15T06:59:30Z +1338 295 1 2020-02-15T06:59:30Z +1339 295 2 2020-02-15T06:59:30Z +1340 295 2 2020-02-15T06:59:30Z +1341 295 2 2020-02-15T06:59:30Z +1342 295 2 2020-02-15T06:59:30Z +1343 296 1 2020-02-15T06:59:30Z +1344 296 1 2020-02-15T06:59:30Z +1345 296 1 2020-02-15T06:59:30Z +1346 296 1 2020-02-15T06:59:30Z +1347 297 2 2020-02-15T06:59:30Z +1348 297 2 2020-02-15T06:59:30Z +1349 298 1 2020-02-15T06:59:30Z +1350 298 1 2020-02-15T06:59:30Z +1351 298 2 2020-02-15T06:59:30Z +1352 298 2 2020-02-15T06:59:30Z +1353 298 2 2020-02-15T06:59:30Z +1354 299 1 2020-02-15T06:59:30Z +1355 299 1 2020-02-15T06:59:30Z +1356 299 1 2020-02-15T06:59:30Z +1357 299 1 2020-02-15T06:59:30Z +1358 300 1 2020-02-15T06:59:30Z +1359 300 1 2020-02-15T06:59:30Z +1360 300 2 2020-02-15T06:59:30Z +1361 300 2 2020-02-15T06:59:30Z +1362 300 2 2020-02-15T06:59:30Z +1363 300 2 2020-02-15T06:59:30Z +1364 301 1 2020-02-15T06:59:30Z +1365 301 1 2020-02-15T06:59:30Z +1366 301 1 2020-02-15T06:59:30Z +1367 301 1 2020-02-15T06:59:30Z +1368 301 2 2020-02-15T06:59:30Z +1369 301 2 2020-02-15T06:59:30Z +1370 301 2 2020-02-15T06:59:30Z +1371 301 2 2020-02-15T06:59:30Z +1372 302 1 2020-02-15T06:59:30Z +1373 302 1 2020-02-15T06:59:30Z +1374 302 2 2020-02-15T06:59:30Z +1375 302 2 2020-02-15T06:59:30Z +1376 302 2 2020-02-15T06:59:30Z +1377 302 2 2020-02-15T06:59:30Z +1378 303 1 2020-02-15T06:59:30Z +1379 303 1 2020-02-15T06:59:30Z +1380 303 1 2020-02-15T06:59:30Z +1381 303 1 2020-02-15T06:59:30Z +1382 303 2 2020-02-15T06:59:30Z +1383 303 2 2020-02-15T06:59:30Z +1384 304 1 2020-02-15T06:59:30Z +1385 304 1 2020-02-15T06:59:30Z +1386 304 1 2020-02-15T06:59:30Z +1387 304 1 2020-02-15T06:59:30Z +1388 304 2 2020-02-15T06:59:30Z +1389 304 2 2020-02-15T06:59:30Z +1390 305 1 2020-02-15T06:59:30Z +1391 305 1 2020-02-15T06:59:30Z +1392 305 1 2020-02-15T06:59:30Z +1393 305 1 2020-02-15T06:59:30Z +1394 305 2 2020-02-15T06:59:30Z +1395 305 2 2020-02-15T06:59:30Z +1396 305 2 2020-02-15T06:59:30Z +1397 306 1 2020-02-15T06:59:30Z +1398 306 1 2020-02-15T06:59:30Z +1399 306 1 2020-02-15T06:59:30Z +1400 307 1 2020-02-15T06:59:30Z +1401 307 1 2020-02-15T06:59:30Z +1402 307 1 2020-02-15T06:59:30Z +1403 307 2 2020-02-15T06:59:30Z +1404 307 2 2020-02-15T06:59:30Z +1405 307 2 2020-02-15T06:59:30Z +1406 308 1 2020-02-15T06:59:30Z +1407 308 1 2020-02-15T06:59:30Z +1408 308 2 2020-02-15T06:59:30Z +1409 308 2 2020-02-15T06:59:30Z +1410 309 1 2020-02-15T06:59:30Z +1411 309 1 2020-02-15T06:59:30Z +1412 309 2 2020-02-15T06:59:30Z +1413 309 2 2020-02-15T06:59:30Z +1414 309 2 2020-02-15T06:59:30Z +1415 309 2 2020-02-15T06:59:30Z +1416 310 1 2020-02-15T06:59:30Z +1417 310 1 2020-02-15T06:59:30Z +1418 311 1 2020-02-15T06:59:30Z +1419 311 1 2020-02-15T06:59:30Z +1420 311 1 2020-02-15T06:59:30Z +1421 311 2 2020-02-15T06:59:30Z +1422 311 2 2020-02-15T06:59:30Z +1423 311 2 2020-02-15T06:59:30Z +1424 311 2 2020-02-15T06:59:30Z +1425 312 2 2020-02-15T06:59:30Z +1426 312 2 2020-02-15T06:59:30Z +1427 312 2 2020-02-15T06:59:30Z +1428 313 1 2020-02-15T06:59:30Z +1429 313 1 2020-02-15T06:59:30Z +1430 313 1 2020-02-15T06:59:30Z +1431 313 1 2020-02-15T06:59:30Z +1432 313 2 2020-02-15T06:59:30Z +1433 313 2 2020-02-15T06:59:30Z +1434 314 1 2020-02-15T06:59:30Z +1435 314 1 2020-02-15T06:59:30Z +1436 314 2 2020-02-15T06:59:30Z +1437 314 2 2020-02-15T06:59:30Z +1438 314 2 2020-02-15T06:59:30Z +1439 314 2 2020-02-15T06:59:30Z +1440 315 2 2020-02-15T06:59:30Z +1441 315 2 2020-02-15T06:59:30Z +1442 315 2 2020-02-15T06:59:30Z +1443 316 2 2020-02-15T06:59:30Z +1444 316 2 2020-02-15T06:59:30Z +1445 317 1 2020-02-15T06:59:30Z +1446 317 1 2020-02-15T06:59:30Z +1447 317 1 2020-02-15T06:59:30Z +1448 317 1 2020-02-15T06:59:30Z +1449 317 2 2020-02-15T06:59:30Z +1450 317 2 2020-02-15T06:59:30Z +1451 317 2 2020-02-15T06:59:30Z +1452 319 1 2020-02-15T06:59:30Z +1453 319 1 2020-02-15T06:59:30Z +1454 319 1 2020-02-15T06:59:30Z +1455 319 2 2020-02-15T06:59:30Z +1456 319 2 2020-02-15T06:59:30Z +1457 319 2 2020-02-15T06:59:30Z +1458 319 2 2020-02-15T06:59:30Z +1459 320 1 2020-02-15T06:59:30Z +1460 320 1 2020-02-15T06:59:30Z +1461 320 1 2020-02-15T06:59:30Z +1462 320 2 2020-02-15T06:59:30Z +1463 320 2 2020-02-15T06:59:30Z +1464 320 2 2020-02-15T06:59:30Z +1465 320 2 2020-02-15T06:59:30Z +1466 321 1 2020-02-15T06:59:30Z +1467 321 1 2020-02-15T06:59:30Z +1468 321 1 2020-02-15T06:59:30Z +1469 321 1 2020-02-15T06:59:30Z +1470 322 1 2020-02-15T06:59:30Z +1471 322 1 2020-02-15T06:59:30Z +1472 322 1 2020-02-15T06:59:30Z +1473 322 1 2020-02-15T06:59:30Z +1474 322 2 2020-02-15T06:59:30Z +1475 322 2 2020-02-15T06:59:30Z +1476 323 2 2020-02-15T06:59:30Z +1477 323 2 2020-02-15T06:59:30Z +1478 323 2 2020-02-15T06:59:30Z +1479 323 2 2020-02-15T06:59:30Z +1480 324 1 2020-02-15T06:59:30Z +1481 324 1 2020-02-15T06:59:30Z +1482 324 1 2020-02-15T06:59:30Z +1483 324 2 2020-02-15T06:59:30Z +1484 324 2 2020-02-15T06:59:30Z +1485 326 1 2020-02-15T06:59:30Z +1486 326 1 2020-02-15T06:59:30Z +1487 326 2 2020-02-15T06:59:30Z +1488 326 2 2020-02-15T06:59:30Z +1489 326 2 2020-02-15T06:59:30Z +1490 326 2 2020-02-15T06:59:30Z +1491 327 1 2020-02-15T06:59:30Z +1492 327 1 2020-02-15T06:59:30Z +1493 327 1 2020-02-15T06:59:30Z +1494 327 1 2020-02-15T06:59:30Z +1495 327 2 2020-02-15T06:59:30Z +1496 327 2 2020-02-15T06:59:30Z +1497 328 2 2020-02-15T06:59:30Z +1498 328 2 2020-02-15T06:59:30Z +1499 328 2 2020-02-15T06:59:30Z +1500 328 2 2020-02-15T06:59:30Z +1501 329 1 2020-02-15T06:59:30Z +1502 329 1 2020-02-15T06:59:30Z +1503 329 1 2020-02-15T06:59:30Z +1504 329 2 2020-02-15T06:59:30Z +1505 329 2 2020-02-15T06:59:30Z +1506 329 2 2020-02-15T06:59:30Z +1507 330 1 2020-02-15T06:59:30Z +1508 330 1 2020-02-15T06:59:30Z +1509 330 1 2020-02-15T06:59:30Z +1510 330 1 2020-02-15T06:59:30Z +1511 330 2 2020-02-15T06:59:30Z +1512 330 2 2020-02-15T06:59:30Z +1513 330 2 2020-02-15T06:59:30Z +1514 331 1 2020-02-15T06:59:30Z +1515 331 1 2020-02-15T06:59:30Z +1516 331 1 2020-02-15T06:59:30Z +1517 331 1 2020-02-15T06:59:30Z +1518 331 2 2020-02-15T06:59:30Z +1519 331 2 2020-02-15T06:59:30Z +1520 331 2 2020-02-15T06:59:30Z +1521 331 2 2020-02-15T06:59:30Z +1522 333 1 2020-02-15T06:59:30Z +1523 333 1 2020-02-15T06:59:30Z +1524 333 2 2020-02-15T06:59:30Z +1525 333 2 2020-02-15T06:59:30Z +1526 334 1 2020-02-15T06:59:30Z +1527 334 1 2020-02-15T06:59:30Z +1528 334 2 2020-02-15T06:59:30Z +1529 334 2 2020-02-15T06:59:30Z +1530 334 2 2020-02-15T06:59:30Z +1531 334 2 2020-02-15T06:59:30Z +1532 335 1 2020-02-15T06:59:30Z +1533 335 1 2020-02-15T06:59:30Z +1534 336 1 2020-02-15T06:59:30Z +1535 336 1 2020-02-15T06:59:30Z +1536 336 1 2020-02-15T06:59:30Z +1537 336 2 2020-02-15T06:59:30Z +1538 336 2 2020-02-15T06:59:30Z +1539 337 1 2020-02-15T06:59:30Z +1540 337 1 2020-02-15T06:59:30Z +1541 337 2 2020-02-15T06:59:30Z +1542 337 2 2020-02-15T06:59:30Z +1543 338 2 2020-02-15T06:59:30Z +1544 338 2 2020-02-15T06:59:30Z +1545 338 2 2020-02-15T06:59:30Z +1546 339 2 2020-02-15T06:59:30Z +1547 339 2 2020-02-15T06:59:30Z +1548 339 2 2020-02-15T06:59:30Z +1549 340 1 2020-02-15T06:59:30Z +1550 340 1 2020-02-15T06:59:30Z +1551 341 1 2020-02-15T06:59:30Z +1552 341 1 2020-02-15T06:59:30Z +1553 341 1 2020-02-15T06:59:30Z +1554 341 1 2020-02-15T06:59:30Z +1555 341 2 2020-02-15T06:59:30Z +1556 341 2 2020-02-15T06:59:30Z +1557 341 2 2020-02-15T06:59:30Z +1558 341 2 2020-02-15T06:59:30Z +1559 342 1 2020-02-15T06:59:30Z +1560 342 1 2020-02-15T06:59:30Z +1561 342 1 2020-02-15T06:59:30Z +1562 342 1 2020-02-15T06:59:30Z +1563 343 1 2020-02-15T06:59:30Z +1564 343 1 2020-02-15T06:59:30Z +1565 344 1 2020-02-15T06:59:30Z +1566 344 1 2020-02-15T06:59:30Z +1567 344 1 2020-02-15T06:59:30Z +1568 344 2 2020-02-15T06:59:30Z +1569 344 2 2020-02-15T06:59:30Z +1570 345 1 2020-02-15T06:59:30Z +1571 345 1 2020-02-15T06:59:30Z +1572 345 1 2020-02-15T06:59:30Z +1573 345 2 2020-02-15T06:59:30Z +1574 345 2 2020-02-15T06:59:30Z +1575 346 1 2020-02-15T06:59:30Z +1576 346 1 2020-02-15T06:59:30Z +1577 346 2 2020-02-15T06:59:30Z +1578 346 2 2020-02-15T06:59:30Z +1579 346 2 2020-02-15T06:59:30Z +1580 346 2 2020-02-15T06:59:30Z +1581 347 1 2020-02-15T06:59:30Z +1582 347 1 2020-02-15T06:59:30Z +1583 347 1 2020-02-15T06:59:30Z +1584 347 1 2020-02-15T06:59:30Z +1585 348 2 2020-02-15T06:59:30Z +1586 348 2 2020-02-15T06:59:30Z +1587 348 2 2020-02-15T06:59:30Z +1588 348 2 2020-02-15T06:59:30Z +1589 349 1 2020-02-15T06:59:30Z +1590 349 1 2020-02-15T06:59:30Z +1591 349 1 2020-02-15T06:59:30Z +1592 349 1 2020-02-15T06:59:30Z +1593 349 2 2020-02-15T06:59:30Z +1594 349 2 2020-02-15T06:59:30Z +1595 349 2 2020-02-15T06:59:30Z +1596 350 1 2020-02-15T06:59:30Z +1597 350 1 2020-02-15T06:59:30Z +1598 350 1 2020-02-15T06:59:30Z +1599 350 1 2020-02-15T06:59:30Z +1600 350 2 2020-02-15T06:59:30Z +1601 350 2 2020-02-15T06:59:30Z +1602 350 2 2020-02-15T06:59:30Z +1603 350 2 2020-02-15T06:59:30Z +1604 351 1 2020-02-15T06:59:30Z +1605 351 1 2020-02-15T06:59:30Z +1606 351 1 2020-02-15T06:59:30Z +1607 351 2 2020-02-15T06:59:30Z +1608 351 2 2020-02-15T06:59:30Z +1609 351 2 2020-02-15T06:59:30Z +1610 352 2 2020-02-15T06:59:30Z +1611 352 2 2020-02-15T06:59:30Z +1612 352 2 2020-02-15T06:59:30Z +1613 352 2 2020-02-15T06:59:30Z +1614 353 1 2020-02-15T06:59:30Z +1615 353 1 2020-02-15T06:59:30Z +1616 353 2 2020-02-15T06:59:30Z +1617 353 2 2020-02-15T06:59:30Z +1618 353 2 2020-02-15T06:59:30Z +1619 353 2 2020-02-15T06:59:30Z +1620 354 1 2020-02-15T06:59:30Z +1621 354 1 2020-02-15T06:59:30Z +1622 354 1 2020-02-15T06:59:30Z +1623 354 2 2020-02-15T06:59:30Z +1624 354 2 2020-02-15T06:59:30Z +1625 355 2 2020-02-15T06:59:30Z +1626 355 2 2020-02-15T06:59:30Z +1627 356 1 2020-02-15T06:59:30Z +1628 356 1 2020-02-15T06:59:30Z +1629 356 1 2020-02-15T06:59:30Z +1630 356 1 2020-02-15T06:59:30Z +1631 356 2 2020-02-15T06:59:30Z +1632 356 2 2020-02-15T06:59:30Z +1633 356 2 2020-02-15T06:59:30Z +1634 356 2 2020-02-15T06:59:30Z +1635 357 2 2020-02-15T06:59:30Z +1636 357 2 2020-02-15T06:59:30Z +1637 357 2 2020-02-15T06:59:30Z +1638 357 2 2020-02-15T06:59:30Z +1639 358 1 2020-02-15T06:59:30Z +1640 358 1 2020-02-15T06:59:30Z +1641 358 1 2020-02-15T06:59:30Z +1642 358 1 2020-02-15T06:59:30Z +1643 358 2 2020-02-15T06:59:30Z +1644 358 2 2020-02-15T06:59:30Z +1645 358 2 2020-02-15T06:59:30Z +1646 358 2 2020-02-15T06:59:30Z +1647 360 1 2020-02-15T06:59:30Z +1648 360 1 2020-02-15T06:59:30Z +1649 360 1 2020-02-15T06:59:30Z +1650 360 1 2020-02-15T06:59:30Z +1651 361 1 2020-02-15T06:59:30Z +1652 361 1 2020-02-15T06:59:30Z +1653 361 1 2020-02-15T06:59:30Z +1654 361 1 2020-02-15T06:59:30Z +1655 361 2 2020-02-15T06:59:30Z +1656 361 2 2020-02-15T06:59:30Z +1657 361 2 2020-02-15T06:59:30Z +1658 361 2 2020-02-15T06:59:30Z +1659 362 1 2020-02-15T06:59:30Z +1660 362 1 2020-02-15T06:59:30Z +1661 363 1 2020-02-15T06:59:30Z +1662 363 1 2020-02-15T06:59:30Z +1663 363 1 2020-02-15T06:59:30Z +1664 363 2 2020-02-15T06:59:30Z +1665 363 2 2020-02-15T06:59:30Z +1666 363 2 2020-02-15T06:59:30Z +1667 364 1 2020-02-15T06:59:30Z +1668 364 1 2020-02-15T06:59:30Z +1669 364 1 2020-02-15T06:59:30Z +1670 365 1 2020-02-15T06:59:30Z +1671 365 1 2020-02-15T06:59:30Z +1672 365 2 2020-02-15T06:59:30Z +1673 365 2 2020-02-15T06:59:30Z +1674 366 1 2020-02-15T06:59:30Z +1675 366 1 2020-02-15T06:59:30Z +1676 366 1 2020-02-15T06:59:30Z +1677 366 1 2020-02-15T06:59:30Z +1678 366 2 2020-02-15T06:59:30Z +1679 366 2 2020-02-15T06:59:30Z +1680 366 2 2020-02-15T06:59:30Z +1681 367 1 2020-02-15T06:59:30Z +1682 367 1 2020-02-15T06:59:30Z +1683 367 1 2020-02-15T06:59:30Z +1684 367 1 2020-02-15T06:59:30Z +1685 367 2 2020-02-15T06:59:30Z +1686 367 2 2020-02-15T06:59:30Z +1687 367 2 2020-02-15T06:59:30Z +1688 368 1 2020-02-15T06:59:30Z +1689 368 1 2020-02-15T06:59:30Z +1690 369 1 2020-02-15T06:59:30Z +1691 369 1 2020-02-15T06:59:30Z +1692 369 1 2020-02-15T06:59:30Z +1693 369 1 2020-02-15T06:59:30Z +1694 369 2 2020-02-15T06:59:30Z +1695 369 2 2020-02-15T06:59:30Z +1696 369 2 2020-02-15T06:59:30Z +1697 369 2 2020-02-15T06:59:30Z +1698 370 1 2020-02-15T06:59:30Z +1699 370 1 2020-02-15T06:59:30Z +1700 370 1 2020-02-15T06:59:30Z +1701 370 2 2020-02-15T06:59:30Z +1702 370 2 2020-02-15T06:59:30Z +1703 371 1 2020-02-15T06:59:30Z +1704 371 1 2020-02-15T06:59:30Z +1705 371 1 2020-02-15T06:59:30Z +1706 372 1 2020-02-15T06:59:30Z +1707 372 1 2020-02-15T06:59:30Z +1708 373 1 2020-02-15T06:59:30Z +1709 373 1 2020-02-15T06:59:30Z +1710 373 1 2020-02-15T06:59:30Z +1711 373 2 2020-02-15T06:59:30Z +1712 373 2 2020-02-15T06:59:30Z +1713 374 1 2020-02-15T06:59:30Z +1714 374 1 2020-02-15T06:59:30Z +1715 374 1 2020-02-15T06:59:30Z +1716 374 2 2020-02-15T06:59:30Z +1717 374 2 2020-02-15T06:59:30Z +1718 374 2 2020-02-15T06:59:30Z +1719 374 2 2020-02-15T06:59:30Z +1720 375 1 2020-02-15T06:59:30Z +1721 375 1 2020-02-15T06:59:30Z +1722 376 1 2020-02-15T06:59:30Z +1723 376 1 2020-02-15T06:59:30Z +1724 376 1 2020-02-15T06:59:30Z +1725 376 1 2020-02-15T06:59:30Z +1726 376 2 2020-02-15T06:59:30Z +1727 376 2 2020-02-15T06:59:30Z +1728 376 2 2020-02-15T06:59:30Z +1729 377 1 2020-02-15T06:59:30Z +1730 377 1 2020-02-15T06:59:30Z +1731 377 1 2020-02-15T06:59:30Z +1732 377 2 2020-02-15T06:59:30Z +1733 377 2 2020-02-15T06:59:30Z +1734 377 2 2020-02-15T06:59:30Z +1735 378 1 2020-02-15T06:59:30Z +1736 378 1 2020-02-15T06:59:30Z +1737 378 1 2020-02-15T06:59:30Z +1738 378 1 2020-02-15T06:59:30Z +1739 378 2 2020-02-15T06:59:30Z +1740 378 2 2020-02-15T06:59:30Z +1741 378 2 2020-02-15T06:59:30Z +1742 378 2 2020-02-15T06:59:30Z +1743 379 2 2020-02-15T06:59:30Z +1744 379 2 2020-02-15T06:59:30Z +1745 379 2 2020-02-15T06:59:30Z +1746 379 2 2020-02-15T06:59:30Z +1747 380 1 2020-02-15T06:59:30Z +1748 380 1 2020-02-15T06:59:30Z +1749 380 2 2020-02-15T06:59:30Z +1750 380 2 2020-02-15T06:59:30Z +1751 380 2 2020-02-15T06:59:30Z +1752 381 1 2020-02-15T06:59:30Z +1753 381 1 2020-02-15T06:59:30Z +1754 381 2 2020-02-15T06:59:30Z +1755 381 2 2020-02-15T06:59:30Z +1756 381 2 2020-02-15T06:59:30Z +1757 382 1 2020-02-15T06:59:30Z +1758 382 1 2020-02-15T06:59:30Z +1759 382 1 2020-02-15T06:59:30Z +1760 382 1 2020-02-15T06:59:30Z +1761 382 2 2020-02-15T06:59:30Z +1762 382 2 2020-02-15T06:59:30Z +1763 382 2 2020-02-15T06:59:30Z +1764 382 2 2020-02-15T06:59:30Z +1765 383 1 2020-02-15T06:59:30Z +1766 383 1 2020-02-15T06:59:30Z +1767 383 1 2020-02-15T06:59:30Z +1768 383 2 2020-02-15T06:59:30Z +1769 383 2 2020-02-15T06:59:30Z +1770 384 2 2020-02-15T06:59:30Z +1771 384 2 2020-02-15T06:59:30Z +1772 384 2 2020-02-15T06:59:30Z +1773 385 1 2020-02-15T06:59:30Z +1774 385 1 2020-02-15T06:59:30Z +1775 385 2 2020-02-15T06:59:30Z +1776 385 2 2020-02-15T06:59:30Z +1777 385 2 2020-02-15T06:59:30Z +1778 387 1 2020-02-15T06:59:30Z +1779 387 1 2020-02-15T06:59:30Z +1780 387 1 2020-02-15T06:59:30Z +1781 387 2 2020-02-15T06:59:30Z +1782 387 2 2020-02-15T06:59:30Z +1783 387 2 2020-02-15T06:59:30Z +1784 388 1 2020-02-15T06:59:30Z +1785 388 1 2020-02-15T06:59:30Z +1786 388 1 2020-02-15T06:59:30Z +1787 388 2 2020-02-15T06:59:30Z +1788 388 2 2020-02-15T06:59:30Z +1789 388 2 2020-02-15T06:59:30Z +1790 389 1 2020-02-15T06:59:30Z +1791 389 1 2020-02-15T06:59:30Z +1792 389 2 2020-02-15T06:59:30Z +1793 389 2 2020-02-15T06:59:30Z +1794 390 1 2020-02-15T06:59:30Z +1795 390 1 2020-02-15T06:59:30Z +1796 390 1 2020-02-15T06:59:30Z +1797 391 1 2020-02-15T06:59:30Z +1798 391 1 2020-02-15T06:59:30Z +1799 391 1 2020-02-15T06:59:30Z +1800 391 1 2020-02-15T06:59:30Z +1801 391 2 2020-02-15T06:59:30Z +1802 391 2 2020-02-15T06:59:30Z +1803 391 2 2020-02-15T06:59:30Z +1804 392 1 2020-02-15T06:59:30Z +1805 392 1 2020-02-15T06:59:30Z +1806 392 1 2020-02-15T06:59:30Z +1807 392 1 2020-02-15T06:59:30Z +1808 392 2 2020-02-15T06:59:30Z +1809 392 2 2020-02-15T06:59:30Z +1810 393 1 2020-02-15T06:59:30Z +1811 393 1 2020-02-15T06:59:30Z +1812 394 1 2020-02-15T06:59:30Z +1813 394 1 2020-02-15T06:59:30Z +1814 394 1 2020-02-15T06:59:30Z +1815 394 1 2020-02-15T06:59:30Z +1816 395 1 2020-02-15T06:59:30Z +1817 395 1 2020-02-15T06:59:30Z +1818 395 1 2020-02-15T06:59:30Z +1819 395 2 2020-02-15T06:59:30Z +1820 395 2 2020-02-15T06:59:30Z +1821 395 2 2020-02-15T06:59:30Z +1822 396 2 2020-02-15T06:59:30Z +1823 396 2 2020-02-15T06:59:30Z +1824 396 2 2020-02-15T06:59:30Z +1825 396 2 2020-02-15T06:59:30Z +1826 397 1 2020-02-15T06:59:30Z +1827 397 1 2020-02-15T06:59:30Z +1828 397 1 2020-02-15T06:59:30Z +1829 397 2 2020-02-15T06:59:30Z +1830 397 2 2020-02-15T06:59:30Z +1831 397 2 2020-02-15T06:59:30Z +1832 397 2 2020-02-15T06:59:30Z +1833 398 2 2020-02-15T06:59:30Z +1834 398 2 2020-02-15T06:59:30Z +1835 398 2 2020-02-15T06:59:30Z +1836 398 2 2020-02-15T06:59:30Z +1837 399 2 2020-02-15T06:59:30Z +1838 399 2 2020-02-15T06:59:30Z +1839 400 1 2020-02-15T06:59:30Z +1840 400 1 2020-02-15T06:59:30Z +1841 401 1 2020-02-15T06:59:30Z +1842 401 1 2020-02-15T06:59:30Z +1843 402 1 2020-02-15T06:59:30Z +1844 402 1 2020-02-15T06:59:30Z +1845 402 1 2020-02-15T06:59:30Z +1846 402 2 2020-02-15T06:59:30Z +1847 402 2 2020-02-15T06:59:30Z +1848 402 2 2020-02-15T06:59:30Z +1849 403 1 2020-02-15T06:59:30Z +1850 403 1 2020-02-15T06:59:30Z +1851 403 1 2020-02-15T06:59:30Z +1852 403 1 2020-02-15T06:59:30Z +1853 403 2 2020-02-15T06:59:30Z +1854 403 2 2020-02-15T06:59:30Z +1855 403 2 2020-02-15T06:59:30Z +1856 403 2 2020-02-15T06:59:30Z +1857 405 2 2020-02-15T06:59:30Z +1858 405 2 2020-02-15T06:59:30Z +1859 406 1 2020-02-15T06:59:30Z +1860 406 1 2020-02-15T06:59:30Z +1861 406 2 2020-02-15T06:59:30Z +1862 406 2 2020-02-15T06:59:30Z +1863 406 2 2020-02-15T06:59:30Z +1864 406 2 2020-02-15T06:59:30Z +1865 407 1 2020-02-15T06:59:30Z +1866 407 1 2020-02-15T06:59:30Z +1867 408 1 2020-02-15T06:59:30Z +1868 408 1 2020-02-15T06:59:30Z +1869 408 1 2020-02-15T06:59:30Z +1870 408 1 2020-02-15T06:59:30Z +1871 408 2 2020-02-15T06:59:30Z +1872 408 2 2020-02-15T06:59:30Z +1873 408 2 2020-02-15T06:59:30Z +1874 409 1 2020-02-15T06:59:30Z +1875 409 1 2020-02-15T06:59:30Z +1876 409 1 2020-02-15T06:59:30Z +1877 409 1 2020-02-15T06:59:30Z +1878 409 2 2020-02-15T06:59:30Z +1879 409 2 2020-02-15T06:59:30Z +1880 409 2 2020-02-15T06:59:30Z +1881 410 1 2020-02-15T06:59:30Z +1882 410 1 2020-02-15T06:59:30Z +1883 410 1 2020-02-15T06:59:30Z +1884 410 2 2020-02-15T06:59:30Z +1885 410 2 2020-02-15T06:59:30Z +1886 411 1 2020-02-15T06:59:30Z +1887 411 1 2020-02-15T06:59:30Z +1888 412 1 2020-02-15T06:59:30Z +1889 412 1 2020-02-15T06:59:30Z +1890 412 1 2020-02-15T06:59:30Z +1891 412 1 2020-02-15T06:59:30Z +1892 412 2 2020-02-15T06:59:30Z +1893 412 2 2020-02-15T06:59:30Z +1894 412 2 2020-02-15T06:59:30Z +1895 412 2 2020-02-15T06:59:30Z +1896 413 1 2020-02-15T06:59:30Z +1897 413 1 2020-02-15T06:59:30Z +1898 413 1 2020-02-15T06:59:30Z +1899 414 1 2020-02-15T06:59:30Z +1900 414 1 2020-02-15T06:59:30Z +1901 414 1 2020-02-15T06:59:30Z +1902 414 2 2020-02-15T06:59:30Z +1903 414 2 2020-02-15T06:59:30Z +1904 414 2 2020-02-15T06:59:30Z +1905 415 1 2020-02-15T06:59:30Z +1906 415 1 2020-02-15T06:59:30Z +1907 415 1 2020-02-15T06:59:30Z +1908 415 2 2020-02-15T06:59:30Z +1909 415 2 2020-02-15T06:59:30Z +1910 415 2 2020-02-15T06:59:30Z +1911 416 1 2020-02-15T06:59:30Z +1912 416 1 2020-02-15T06:59:30Z +1913 416 2 2020-02-15T06:59:30Z +1914 416 2 2020-02-15T06:59:30Z +1915 416 2 2020-02-15T06:59:30Z +1916 416 2 2020-02-15T06:59:30Z +1917 417 1 2020-02-15T06:59:30Z +1918 417 1 2020-02-15T06:59:30Z +1919 417 1 2020-02-15T06:59:30Z +1920 417 1 2020-02-15T06:59:30Z +1921 417 2 2020-02-15T06:59:30Z +1922 417 2 2020-02-15T06:59:30Z +1923 418 1 2020-02-15T06:59:30Z +1924 418 1 2020-02-15T06:59:30Z +1925 418 1 2020-02-15T06:59:30Z +1926 418 1 2020-02-15T06:59:30Z +1927 418 2 2020-02-15T06:59:30Z +1928 418 2 2020-02-15T06:59:30Z +1929 418 2 2020-02-15T06:59:30Z +1930 418 2 2020-02-15T06:59:30Z +1931 420 1 2020-02-15T06:59:30Z +1932 420 1 2020-02-15T06:59:30Z +1933 420 2 2020-02-15T06:59:30Z +1934 420 2 2020-02-15T06:59:30Z +1935 420 2 2020-02-15T06:59:30Z +1936 421 2 2020-02-15T06:59:30Z +1937 421 2 2020-02-15T06:59:30Z +1938 421 2 2020-02-15T06:59:30Z +1939 421 2 2020-02-15T06:59:30Z +1940 422 2 2020-02-15T06:59:30Z +1941 422 2 2020-02-15T06:59:30Z +1942 423 1 2020-02-15T06:59:30Z +1943 423 1 2020-02-15T06:59:30Z +1944 423 2 2020-02-15T06:59:30Z +1945 423 2 2020-02-15T06:59:30Z +1946 424 1 2020-02-15T06:59:30Z +1947 424 1 2020-02-15T06:59:30Z +1948 424 1 2020-02-15T06:59:30Z +1949 424 2 2020-02-15T06:59:30Z +1950 424 2 2020-02-15T06:59:30Z +1951 425 2 2020-02-15T06:59:30Z +1952 425 2 2020-02-15T06:59:30Z +1953 426 2 2020-02-15T06:59:30Z +1954 426 2 2020-02-15T06:59:30Z +1955 426 2 2020-02-15T06:59:30Z +1956 427 1 2020-02-15T06:59:30Z +1957 427 1 2020-02-15T06:59:30Z +1958 427 1 2020-02-15T06:59:30Z +1959 427 1 2020-02-15T06:59:30Z +1960 428 1 2020-02-15T06:59:30Z +1961 428 1 2020-02-15T06:59:30Z +1962 428 1 2020-02-15T06:59:30Z +1963 428 1 2020-02-15T06:59:30Z +1964 428 2 2020-02-15T06:59:30Z +1965 428 2 2020-02-15T06:59:30Z +1966 429 1 2020-02-15T06:59:30Z +1967 429 1 2020-02-15T06:59:30Z +1968 429 2 2020-02-15T06:59:30Z +1969 429 2 2020-02-15T06:59:30Z +1970 429 2 2020-02-15T06:59:30Z +1971 429 2 2020-02-15T06:59:30Z +1972 430 2 2020-02-15T06:59:30Z +1973 430 2 2020-02-15T06:59:30Z +1974 430 2 2020-02-15T06:59:30Z +1975 430 2 2020-02-15T06:59:30Z +1976 431 2 2020-02-15T06:59:30Z +1977 431 2 2020-02-15T06:59:30Z +1978 431 2 2020-02-15T06:59:30Z +1979 432 1 2020-02-15T06:59:30Z +1980 432 1 2020-02-15T06:59:30Z +1981 432 1 2020-02-15T06:59:30Z +1982 432 2 2020-02-15T06:59:30Z +1983 432 2 2020-02-15T06:59:30Z +1984 433 1 2020-02-15T06:59:30Z +1985 433 1 2020-02-15T06:59:30Z +1986 433 1 2020-02-15T06:59:30Z +1987 433 1 2020-02-15T06:59:30Z +1988 433 2 2020-02-15T06:59:30Z +1989 433 2 2020-02-15T06:59:30Z +1990 434 1 2020-02-15T06:59:30Z +1991 434 1 2020-02-15T06:59:30Z +1992 434 1 2020-02-15T06:59:30Z +1993 434 1 2020-02-15T06:59:30Z +1994 434 2 2020-02-15T06:59:30Z +1995 434 2 2020-02-15T06:59:30Z +1996 434 2 2020-02-15T06:59:30Z +1997 434 2 2020-02-15T06:59:30Z +1998 435 1 2020-02-15T06:59:30Z +1999 435 1 2020-02-15T06:59:30Z +2000 436 1 2020-02-15T06:59:30Z +2001 436 1 2020-02-15T06:59:30Z +2002 436 1 2020-02-15T06:59:30Z +2003 436 2 2020-02-15T06:59:30Z +2004 436 2 2020-02-15T06:59:30Z +2005 436 2 2020-02-15T06:59:30Z +2006 437 1 2020-02-15T06:59:30Z +2007 437 1 2020-02-15T06:59:30Z +2008 437 2 2020-02-15T06:59:30Z +2009 437 2 2020-02-15T06:59:30Z +2010 437 2 2020-02-15T06:59:30Z +2011 437 2 2020-02-15T06:59:30Z +2012 438 1 2020-02-15T06:59:30Z +2013 438 1 2020-02-15T06:59:30Z +2014 438 2 2020-02-15T06:59:30Z +2015 438 2 2020-02-15T06:59:30Z +2016 438 2 2020-02-15T06:59:30Z +2017 439 1 2020-02-15T06:59:30Z +2018 439 1 2020-02-15T06:59:30Z +2019 439 1 2020-02-15T06:59:30Z +2020 439 1 2020-02-15T06:59:30Z +2021 439 2 2020-02-15T06:59:30Z +2022 439 2 2020-02-15T06:59:30Z +2023 440 1 2020-02-15T06:59:30Z +2024 440 1 2020-02-15T06:59:30Z +2025 440 2 2020-02-15T06:59:30Z +2026 440 2 2020-02-15T06:59:30Z +2027 441 1 2020-02-15T06:59:30Z +2028 441 1 2020-02-15T06:59:30Z +2029 442 1 2020-02-15T06:59:30Z +2030 442 1 2020-02-15T06:59:30Z +2031 442 1 2020-02-15T06:59:30Z +2032 443 1 2020-02-15T06:59:30Z +2033 443 1 2020-02-15T06:59:30Z +2034 443 1 2020-02-15T06:59:30Z +2035 443 2 2020-02-15T06:59:30Z +2036 443 2 2020-02-15T06:59:30Z +2037 443 2 2020-02-15T06:59:30Z +2038 443 2 2020-02-15T06:59:30Z +2039 444 1 2020-02-15T06:59:30Z +2040 444 1 2020-02-15T06:59:30Z +2041 444 1 2020-02-15T06:59:30Z +2042 444 1 2020-02-15T06:59:30Z +2043 444 2 2020-02-15T06:59:30Z +2044 444 2 2020-02-15T06:59:30Z +2045 444 2 2020-02-15T06:59:30Z +2046 444 2 2020-02-15T06:59:30Z +2047 445 1 2020-02-15T06:59:30Z +2048 445 1 2020-02-15T06:59:30Z +2049 445 1 2020-02-15T06:59:30Z +2050 445 2 2020-02-15T06:59:30Z +2051 445 2 2020-02-15T06:59:30Z +2052 445 2 2020-02-15T06:59:30Z +2053 446 1 2020-02-15T06:59:30Z +2054 446 1 2020-02-15T06:59:30Z +2055 446 2 2020-02-15T06:59:30Z +2056 446 2 2020-02-15T06:59:30Z +2057 447 1 2020-02-15T06:59:30Z +2058 447 1 2020-02-15T06:59:30Z +2059 447 1 2020-02-15T06:59:30Z +2060 447 1 2020-02-15T06:59:30Z +2061 447 2 2020-02-15T06:59:30Z +2062 447 2 2020-02-15T06:59:30Z +2063 447 2 2020-02-15T06:59:30Z +2064 448 1 2020-02-15T06:59:30Z +2065 448 1 2020-02-15T06:59:30Z +2066 448 2 2020-02-15T06:59:30Z +2067 448 2 2020-02-15T06:59:30Z +2068 448 2 2020-02-15T06:59:30Z +2069 449 2 2020-02-15T06:59:30Z +2070 449 2 2020-02-15T06:59:30Z +2071 449 2 2020-02-15T06:59:30Z +2072 449 2 2020-02-15T06:59:30Z +2073 450 1 2020-02-15T06:59:30Z +2074 450 1 2020-02-15T06:59:30Z +2075 450 1 2020-02-15T06:59:30Z +2076 450 2 2020-02-15T06:59:30Z +2077 450 2 2020-02-15T06:59:30Z +2078 450 2 2020-02-15T06:59:30Z +2079 450 2 2020-02-15T06:59:30Z +2080 451 1 2020-02-15T06:59:30Z +2081 451 1 2020-02-15T06:59:30Z +2082 451 2 2020-02-15T06:59:30Z +2083 451 2 2020-02-15T06:59:30Z +2084 451 2 2020-02-15T06:59:30Z +2085 452 2 2020-02-15T06:59:30Z +2086 452 2 2020-02-15T06:59:30Z +2087 452 2 2020-02-15T06:59:30Z +2088 452 2 2020-02-15T06:59:30Z +2089 453 1 2020-02-15T06:59:30Z +2090 453 1 2020-02-15T06:59:30Z +2091 453 1 2020-02-15T06:59:30Z +2092 453 2 2020-02-15T06:59:30Z +2093 453 2 2020-02-15T06:59:30Z +2094 454 1 2020-02-15T06:59:30Z +2095 454 1 2020-02-15T06:59:30Z +2096 455 1 2020-02-15T06:59:30Z +2097 455 1 2020-02-15T06:59:30Z +2098 455 1 2020-02-15T06:59:30Z +2099 455 1 2020-02-15T06:59:30Z +2100 456 1 2020-02-15T06:59:30Z +2101 456 1 2020-02-15T06:59:30Z +2102 456 2 2020-02-15T06:59:30Z +2103 456 2 2020-02-15T06:59:30Z +2104 456 2 2020-02-15T06:59:30Z +2105 456 2 2020-02-15T06:59:30Z +2106 457 1 2020-02-15T06:59:30Z +2107 457 1 2020-02-15T06:59:30Z +2108 457 2 2020-02-15T06:59:30Z +2109 457 2 2020-02-15T06:59:30Z +2110 457 2 2020-02-15T06:59:30Z +2111 457 2 2020-02-15T06:59:30Z +2112 458 1 2020-02-15T06:59:30Z +2113 458 1 2020-02-15T06:59:30Z +2114 458 2 2020-02-15T06:59:30Z +2115 458 2 2020-02-15T06:59:30Z +2116 458 2 2020-02-15T06:59:30Z +2117 458 2 2020-02-15T06:59:30Z +2118 459 2 2020-02-15T06:59:30Z +2119 459 2 2020-02-15T06:59:30Z +2120 460 1 2020-02-15T06:59:30Z +2121 460 1 2020-02-15T06:59:30Z +2122 460 1 2020-02-15T06:59:30Z +2123 460 1 2020-02-15T06:59:30Z +2124 460 2 2020-02-15T06:59:30Z +2125 460 2 2020-02-15T06:59:30Z +2126 460 2 2020-02-15T06:59:30Z +2127 460 2 2020-02-15T06:59:30Z +2128 461 1 2020-02-15T06:59:30Z +2129 461 1 2020-02-15T06:59:30Z +2130 461 2 2020-02-15T06:59:30Z +2131 461 2 2020-02-15T06:59:30Z +2132 461 2 2020-02-15T06:59:30Z +2133 461 2 2020-02-15T06:59:30Z +2134 462 1 2020-02-15T06:59:30Z +2135 462 1 2020-02-15T06:59:30Z +2136 462 2 2020-02-15T06:59:30Z +2137 462 2 2020-02-15T06:59:30Z +2138 462 2 2020-02-15T06:59:30Z +2139 463 1 2020-02-15T06:59:30Z +2140 463 1 2020-02-15T06:59:30Z +2141 463 1 2020-02-15T06:59:30Z +2142 463 2 2020-02-15T06:59:30Z +2143 463 2 2020-02-15T06:59:30Z +2144 464 1 2020-02-15T06:59:30Z +2145 464 1 2020-02-15T06:59:30Z +2146 464 1 2020-02-15T06:59:30Z +2147 464 1 2020-02-15T06:59:30Z +2148 464 2 2020-02-15T06:59:30Z +2149 464 2 2020-02-15T06:59:30Z +2150 464 2 2020-02-15T06:59:30Z +2151 465 1 2020-02-15T06:59:30Z +2152 465 1 2020-02-15T06:59:30Z +2153 465 2 2020-02-15T06:59:30Z +2154 465 2 2020-02-15T06:59:30Z +2155 465 2 2020-02-15T06:59:30Z +2156 466 1 2020-02-15T06:59:30Z +2157 466 1 2020-02-15T06:59:30Z +2158 467 1 2020-02-15T06:59:30Z +2159 467 1 2020-02-15T06:59:30Z +2160 467 1 2020-02-15T06:59:30Z +2161 467 1 2020-02-15T06:59:30Z +2162 467 2 2020-02-15T06:59:30Z +2163 467 2 2020-02-15T06:59:30Z +2164 467 2 2020-02-15T06:59:30Z +2165 468 1 2020-02-15T06:59:30Z +2166 468 1 2020-02-15T06:59:30Z +2167 468 1 2020-02-15T06:59:30Z +2168 468 1 2020-02-15T06:59:30Z +2169 468 2 2020-02-15T06:59:30Z +2170 468 2 2020-02-15T06:59:30Z +2171 468 2 2020-02-15T06:59:30Z +2172 468 2 2020-02-15T06:59:30Z +2173 469 2 2020-02-15T06:59:30Z +2174 469 2 2020-02-15T06:59:30Z +2175 469 2 2020-02-15T06:59:30Z +2176 470 1 2020-02-15T06:59:30Z +2177 470 1 2020-02-15T06:59:30Z +2178 471 1 2020-02-15T06:59:30Z +2179 471 1 2020-02-15T06:59:30Z +2180 471 1 2020-02-15T06:59:30Z +2181 471 2 2020-02-15T06:59:30Z +2182 471 2 2020-02-15T06:59:30Z +2183 471 2 2020-02-15T06:59:30Z +2184 471 2 2020-02-15T06:59:30Z +2185 472 2 2020-02-15T06:59:30Z +2186 472 2 2020-02-15T06:59:30Z +2187 473 1 2020-02-15T06:59:30Z +2188 473 1 2020-02-15T06:59:30Z +2189 473 2 2020-02-15T06:59:30Z +2190 473 2 2020-02-15T06:59:30Z +2191 473 2 2020-02-15T06:59:30Z +2192 474 2 2020-02-15T06:59:30Z +2193 474 2 2020-02-15T06:59:30Z +2194 474 2 2020-02-15T06:59:30Z +2195 474 2 2020-02-15T06:59:30Z +2196 475 2 2020-02-15T06:59:30Z +2197 475 2 2020-02-15T06:59:30Z +2198 476 1 2020-02-15T06:59:30Z +2199 476 1 2020-02-15T06:59:30Z +2200 476 1 2020-02-15T06:59:30Z +2201 476 2 2020-02-15T06:59:30Z +2202 476 2 2020-02-15T06:59:30Z +2203 476 2 2020-02-15T06:59:30Z +2204 476 2 2020-02-15T06:59:30Z +2205 477 2 2020-02-15T06:59:30Z +2206 477 2 2020-02-15T06:59:30Z +2207 477 2 2020-02-15T06:59:30Z +2208 478 1 2020-02-15T06:59:30Z +2209 478 1 2020-02-15T06:59:30Z +2210 478 2 2020-02-15T06:59:30Z +2211 478 2 2020-02-15T06:59:30Z +2212 478 2 2020-02-15T06:59:30Z +2213 479 1 2020-02-15T06:59:30Z +2214 479 1 2020-02-15T06:59:30Z +2215 479 2 2020-02-15T06:59:30Z +2216 479 2 2020-02-15T06:59:30Z +2217 479 2 2020-02-15T06:59:30Z +2218 480 1 2020-02-15T06:59:30Z +2219 480 1 2020-02-15T06:59:30Z +2220 480 2 2020-02-15T06:59:30Z +2221 480 2 2020-02-15T06:59:30Z +2222 481 1 2020-02-15T06:59:30Z +2223 481 1 2020-02-15T06:59:30Z +2224 481 1 2020-02-15T06:59:30Z +2225 481 2 2020-02-15T06:59:30Z +2226 481 2 2020-02-15T06:59:30Z +2227 481 2 2020-02-15T06:59:30Z +2228 482 1 2020-02-15T06:59:30Z +2229 482 1 2020-02-15T06:59:30Z +2230 482 1 2020-02-15T06:59:30Z +2231 483 1 2020-02-15T06:59:30Z +2232 483 1 2020-02-15T06:59:30Z +2233 483 1 2020-02-15T06:59:30Z +2234 483 2 2020-02-15T06:59:30Z +2235 483 2 2020-02-15T06:59:30Z +2236 484 1 2020-02-15T06:59:30Z +2237 484 1 2020-02-15T06:59:30Z +2238 484 1 2020-02-15T06:59:30Z +2239 484 1 2020-02-15T06:59:30Z +2240 484 2 2020-02-15T06:59:30Z +2241 484 2 2020-02-15T06:59:30Z +2242 484 2 2020-02-15T06:59:30Z +2243 485 2 2020-02-15T06:59:30Z +2244 485 2 2020-02-15T06:59:30Z +2245 485 2 2020-02-15T06:59:30Z +2246 486 1 2020-02-15T06:59:30Z +2247 486 1 2020-02-15T06:59:30Z +2248 486 1 2020-02-15T06:59:30Z +2249 486 1 2020-02-15T06:59:30Z +2250 486 2 2020-02-15T06:59:30Z +2251 486 2 2020-02-15T06:59:30Z +2252 487 2 2020-02-15T06:59:30Z +2253 487 2 2020-02-15T06:59:30Z +2254 487 2 2020-02-15T06:59:30Z +2255 488 1 2020-02-15T06:59:30Z +2256 488 1 2020-02-15T06:59:30Z +2257 488 2 2020-02-15T06:59:30Z +2258 488 2 2020-02-15T06:59:30Z +2259 488 2 2020-02-15T06:59:30Z +2260 489 1 2020-02-15T06:59:30Z +2261 489 1 2020-02-15T06:59:30Z +2262 489 1 2020-02-15T06:59:30Z +2263 489 1 2020-02-15T06:59:30Z +2264 489 2 2020-02-15T06:59:30Z +2265 489 2 2020-02-15T06:59:30Z +2266 489 2 2020-02-15T06:59:30Z +2267 489 2 2020-02-15T06:59:30Z +2268 490 1 2020-02-15T06:59:30Z +2269 490 1 2020-02-15T06:59:30Z +2270 491 1 2020-02-15T06:59:30Z +2271 491 1 2020-02-15T06:59:30Z +2272 491 2 2020-02-15T06:59:30Z +2273 491 2 2020-02-15T06:59:30Z +2274 491 2 2020-02-15T06:59:30Z +2275 491 2 2020-02-15T06:59:30Z +2276 492 1 2020-02-15T06:59:30Z +2277 492 1 2020-02-15T06:59:30Z +2278 493 2 2020-02-15T06:59:30Z +2279 493 2 2020-02-15T06:59:30Z +2280 493 2 2020-02-15T06:59:30Z +2281 494 1 2020-02-15T06:59:30Z +2282 494 1 2020-02-15T06:59:30Z +2283 494 1 2020-02-15T06:59:30Z +2284 494 1 2020-02-15T06:59:30Z +2285 494 2 2020-02-15T06:59:30Z +2286 494 2 2020-02-15T06:59:30Z +2287 496 1 2020-02-15T06:59:30Z +2288 496 1 2020-02-15T06:59:30Z +2289 496 2 2020-02-15T06:59:30Z +2290 496 2 2020-02-15T06:59:30Z +2291 496 2 2020-02-15T06:59:30Z +2292 498 1 2020-02-15T06:59:30Z +2293 498 1 2020-02-15T06:59:30Z +2294 499 1 2020-02-15T06:59:30Z +2295 499 1 2020-02-15T06:59:30Z +2296 500 1 2020-02-15T06:59:30Z +2297 500 1 2020-02-15T06:59:30Z +2298 500 1 2020-02-15T06:59:30Z +2299 500 1 2020-02-15T06:59:30Z +2300 500 2 2020-02-15T06:59:30Z +2301 500 2 2020-02-15T06:59:30Z +2302 500 2 2020-02-15T06:59:30Z +2303 500 2 2020-02-15T06:59:30Z +2304 501 1 2020-02-15T06:59:30Z +2305 501 1 2020-02-15T06:59:30Z +2306 501 1 2020-02-15T06:59:30Z +2307 501 2 2020-02-15T06:59:30Z +2308 501 2 2020-02-15T06:59:30Z +2309 502 1 2020-02-15T06:59:30Z +2310 502 1 2020-02-15T06:59:30Z +2311 502 1 2020-02-15T06:59:30Z +2312 502 1 2020-02-15T06:59:30Z +2313 502 2 2020-02-15T06:59:30Z +2314 502 2 2020-02-15T06:59:30Z +2315 502 2 2020-02-15T06:59:30Z +2316 503 1 2020-02-15T06:59:30Z +2317 503 1 2020-02-15T06:59:30Z +2318 503 1 2020-02-15T06:59:30Z +2319 504 1 2020-02-15T06:59:30Z +2320 504 1 2020-02-15T06:59:30Z +2321 504 1 2020-02-15T06:59:30Z +2322 504 1 2020-02-15T06:59:30Z +2323 504 2 2020-02-15T06:59:30Z +2324 504 2 2020-02-15T06:59:30Z +2325 505 2 2020-02-15T06:59:30Z +2326 505 2 2020-02-15T06:59:30Z +2327 505 2 2020-02-15T06:59:30Z +2328 505 2 2020-02-15T06:59:30Z +2329 506 1 2020-02-15T06:59:30Z +2330 506 1 2020-02-15T06:59:30Z +2331 506 1 2020-02-15T06:59:30Z +2332 506 1 2020-02-15T06:59:30Z +2333 506 2 2020-02-15T06:59:30Z +2334 506 2 2020-02-15T06:59:30Z +2335 507 2 2020-02-15T06:59:30Z +2336 507 2 2020-02-15T06:59:30Z +2337 508 2 2020-02-15T06:59:30Z +2338 508 2 2020-02-15T06:59:30Z +2339 508 2 2020-02-15T06:59:30Z +2340 509 2 2020-02-15T06:59:30Z +2341 509 2 2020-02-15T06:59:30Z +2342 509 2 2020-02-15T06:59:30Z +2343 510 1 2020-02-15T06:59:30Z +2344 510 1 2020-02-15T06:59:30Z +2345 510 1 2020-02-15T06:59:30Z +2346 510 1 2020-02-15T06:59:30Z +2347 511 1 2020-02-15T06:59:30Z +2348 511 1 2020-02-15T06:59:30Z +2349 511 2 2020-02-15T06:59:30Z +2350 511 2 2020-02-15T06:59:30Z +2351 511 2 2020-02-15T06:59:30Z +2352 512 1 2020-02-15T06:59:30Z +2353 512 1 2020-02-15T06:59:30Z +2354 512 2 2020-02-15T06:59:30Z +2355 512 2 2020-02-15T06:59:30Z +2356 512 2 2020-02-15T06:59:30Z +2357 512 2 2020-02-15T06:59:30Z +2358 513 2 2020-02-15T06:59:30Z +2359 513 2 2020-02-15T06:59:30Z +2360 514 1 2020-02-15T06:59:30Z +2361 514 1 2020-02-15T06:59:30Z +2362 514 2 2020-02-15T06:59:30Z +2363 514 2 2020-02-15T06:59:30Z +2364 514 2 2020-02-15T06:59:30Z +2365 514 2 2020-02-15T06:59:30Z +2366 515 2 2020-02-15T06:59:30Z +2367 515 2 2020-02-15T06:59:30Z +2368 516 2 2020-02-15T06:59:30Z +2369 516 2 2020-02-15T06:59:30Z +2370 516 2 2020-02-15T06:59:30Z +2371 517 2 2020-02-15T06:59:30Z +2372 517 2 2020-02-15T06:59:30Z +2373 518 1 2020-02-15T06:59:30Z +2374 518 1 2020-02-15T06:59:30Z +2375 518 2 2020-02-15T06:59:30Z +2376 518 2 2020-02-15T06:59:30Z +2377 518 2 2020-02-15T06:59:30Z +2378 518 2 2020-02-15T06:59:30Z +2379 519 2 2020-02-15T06:59:30Z +2380 519 2 2020-02-15T06:59:30Z +2381 519 2 2020-02-15T06:59:30Z +2382 519 2 2020-02-15T06:59:30Z +2383 520 1 2020-02-15T06:59:30Z +2384 520 1 2020-02-15T06:59:30Z +2385 521 1 2020-02-15T06:59:30Z +2386 521 1 2020-02-15T06:59:30Z +2387 521 1 2020-02-15T06:59:30Z +2388 521 1 2020-02-15T06:59:30Z +2389 521 2 2020-02-15T06:59:30Z +2390 521 2 2020-02-15T06:59:30Z +2391 521 2 2020-02-15T06:59:30Z +2392 522 2 2020-02-15T06:59:30Z +2393 522 2 2020-02-15T06:59:30Z +2394 523 1 2020-02-15T06:59:30Z +2395 523 1 2020-02-15T06:59:30Z +2396 524 1 2020-02-15T06:59:30Z +2397 524 1 2020-02-15T06:59:30Z +2398 524 2 2020-02-15T06:59:30Z +2399 524 2 2020-02-15T06:59:30Z +2400 524 2 2020-02-15T06:59:30Z +2401 524 2 2020-02-15T06:59:30Z +2402 525 1 2020-02-15T06:59:30Z +2403 525 1 2020-02-15T06:59:30Z +2404 525 1 2020-02-15T06:59:30Z +2405 525 1 2020-02-15T06:59:30Z +2406 525 2 2020-02-15T06:59:30Z +2407 525 2 2020-02-15T06:59:30Z +2408 525 2 2020-02-15T06:59:30Z +2409 525 2 2020-02-15T06:59:30Z +2410 526 2 2020-02-15T06:59:30Z +2411 526 2 2020-02-15T06:59:30Z +2412 526 2 2020-02-15T06:59:30Z +2413 526 2 2020-02-15T06:59:30Z +2414 527 1 2020-02-15T06:59:30Z +2415 527 1 2020-02-15T06:59:30Z +2416 527 2 2020-02-15T06:59:30Z +2417 527 2 2020-02-15T06:59:30Z +2418 527 2 2020-02-15T06:59:30Z +2419 527 2 2020-02-15T06:59:30Z +2420 528 1 2020-02-15T06:59:30Z +2421 528 1 2020-02-15T06:59:30Z +2422 528 1 2020-02-15T06:59:30Z +2423 529 1 2020-02-15T06:59:30Z +2424 529 1 2020-02-15T06:59:30Z +2425 529 1 2020-02-15T06:59:30Z +2426 529 1 2020-02-15T06:59:30Z +2427 530 1 2020-02-15T06:59:30Z +2428 530 1 2020-02-15T06:59:30Z +2429 530 1 2020-02-15T06:59:30Z +2430 531 1 2020-02-15T06:59:30Z +2431 531 1 2020-02-15T06:59:30Z +2432 531 1 2020-02-15T06:59:30Z +2433 531 1 2020-02-15T06:59:30Z +2434 531 2 2020-02-15T06:59:30Z +2435 531 2 2020-02-15T06:59:30Z +2436 531 2 2020-02-15T06:59:30Z +2437 531 2 2020-02-15T06:59:30Z +2438 532 2 2020-02-15T06:59:30Z +2439 532 2 2020-02-15T06:59:30Z +2440 532 2 2020-02-15T06:59:30Z +2441 532 2 2020-02-15T06:59:30Z +2442 533 1 2020-02-15T06:59:30Z +2443 533 1 2020-02-15T06:59:30Z +2444 533 1 2020-02-15T06:59:30Z +2445 534 1 2020-02-15T06:59:30Z +2446 534 1 2020-02-15T06:59:30Z +2447 534 2 2020-02-15T06:59:30Z +2448 534 2 2020-02-15T06:59:30Z +2449 534 2 2020-02-15T06:59:31Z +2450 535 1 2020-02-15T06:59:31Z +2451 535 1 2020-02-15T06:59:31Z +2452 535 1 2020-02-15T06:59:31Z +2453 535 1 2020-02-15T06:59:31Z +2454 536 1 2020-02-15T06:59:31Z +2455 536 1 2020-02-15T06:59:31Z +2456 536 1 2020-02-15T06:59:31Z +2457 536 2 2020-02-15T06:59:31Z +2458 536 2 2020-02-15T06:59:31Z +2459 537 2 2020-02-15T06:59:31Z +2460 537 2 2020-02-15T06:59:31Z +2461 537 2 2020-02-15T06:59:31Z +2462 538 2 2020-02-15T06:59:31Z +2463 538 2 2020-02-15T06:59:31Z +2464 538 2 2020-02-15T06:59:31Z +2465 539 1 2020-02-15T06:59:31Z +2466 539 1 2020-02-15T06:59:31Z +2467 540 1 2020-02-15T06:59:31Z +2468 540 1 2020-02-15T06:59:31Z +2469 540 1 2020-02-15T06:59:31Z +2470 541 2 2020-02-15T06:59:31Z +2471 541 2 2020-02-15T06:59:31Z +2472 542 1 2020-02-15T06:59:31Z +2473 542 1 2020-02-15T06:59:31Z +2474 542 1 2020-02-15T06:59:31Z +2475 542 1 2020-02-15T06:59:31Z +2476 542 2 2020-02-15T06:59:31Z +2477 542 2 2020-02-15T06:59:31Z +2478 543 1 2020-02-15T06:59:31Z +2479 543 1 2020-02-15T06:59:31Z +2480 544 1 2020-02-15T06:59:31Z +2481 544 1 2020-02-15T06:59:31Z +2482 544 2 2020-02-15T06:59:31Z +2483 544 2 2020-02-15T06:59:31Z +2484 545 1 2020-02-15T06:59:31Z +2485 545 1 2020-02-15T06:59:31Z +2486 545 1 2020-02-15T06:59:31Z +2487 545 1 2020-02-15T06:59:31Z +2488 545 2 2020-02-15T06:59:31Z +2489 545 2 2020-02-15T06:59:31Z +2490 546 2 2020-02-15T06:59:31Z +2491 546 2 2020-02-15T06:59:31Z +2492 546 2 2020-02-15T06:59:31Z +2493 546 2 2020-02-15T06:59:31Z +2494 547 2 2020-02-15T06:59:31Z +2495 547 2 2020-02-15T06:59:31Z +2496 548 1 2020-02-15T06:59:31Z +2497 548 1 2020-02-15T06:59:31Z +2498 549 1 2020-02-15T06:59:31Z +2499 549 1 2020-02-15T06:59:31Z +2500 549 2 2020-02-15T06:59:31Z +2501 549 2 2020-02-15T06:59:31Z +2502 550 1 2020-02-15T06:59:31Z +2503 550 1 2020-02-15T06:59:31Z +2504 550 1 2020-02-15T06:59:31Z +2505 551 1 2020-02-15T06:59:31Z +2506 551 1 2020-02-15T06:59:31Z +2507 551 1 2020-02-15T06:59:31Z +2508 551 2 2020-02-15T06:59:31Z +2509 551 2 2020-02-15T06:59:31Z +2510 551 2 2020-02-15T06:59:31Z +2511 552 2 2020-02-15T06:59:31Z +2512 552 2 2020-02-15T06:59:31Z +2513 552 2 2020-02-15T06:59:31Z +2514 552 2 2020-02-15T06:59:31Z +2515 553 2 2020-02-15T06:59:31Z +2516 553 2 2020-02-15T06:59:31Z +2517 553 2 2020-02-15T06:59:31Z +2518 554 1 2020-02-15T06:59:31Z +2519 554 1 2020-02-15T06:59:31Z +2520 554 1 2020-02-15T06:59:31Z +2521 554 1 2020-02-15T06:59:31Z +2522 554 2 2020-02-15T06:59:31Z +2523 554 2 2020-02-15T06:59:31Z +2524 554 2 2020-02-15T06:59:31Z +2525 555 1 2020-02-15T06:59:31Z +2526 555 1 2020-02-15T06:59:31Z +2527 555 1 2020-02-15T06:59:31Z +2528 555 2 2020-02-15T06:59:31Z +2529 555 2 2020-02-15T06:59:31Z +2530 555 2 2020-02-15T06:59:31Z +2531 555 2 2020-02-15T06:59:31Z +2532 556 1 2020-02-15T06:59:31Z +2533 556 1 2020-02-15T06:59:31Z +2534 556 1 2020-02-15T06:59:31Z +2535 556 2 2020-02-15T06:59:31Z +2536 556 2 2020-02-15T06:59:31Z +2537 556 2 2020-02-15T06:59:31Z +2538 556 2 2020-02-15T06:59:31Z +2539 557 1 2020-02-15T06:59:31Z +2540 557 1 2020-02-15T06:59:31Z +2541 557 2 2020-02-15T06:59:31Z +2542 557 2 2020-02-15T06:59:31Z +2543 557 2 2020-02-15T06:59:31Z +2544 558 2 2020-02-15T06:59:31Z +2545 558 2 2020-02-15T06:59:31Z +2546 559 1 2020-02-15T06:59:31Z +2547 559 1 2020-02-15T06:59:31Z +2548 559 1 2020-02-15T06:59:31Z +2549 559 1 2020-02-15T06:59:31Z +2550 559 2 2020-02-15T06:59:31Z +2551 559 2 2020-02-15T06:59:31Z +2552 559 2 2020-02-15T06:59:31Z +2553 559 2 2020-02-15T06:59:31Z +2554 560 1 2020-02-15T06:59:31Z +2555 560 1 2020-02-15T06:59:31Z +2556 560 1 2020-02-15T06:59:31Z +2557 560 2 2020-02-15T06:59:31Z +2558 560 2 2020-02-15T06:59:31Z +2559 561 1 2020-02-15T06:59:31Z +2560 561 1 2020-02-15T06:59:31Z +2561 561 1 2020-02-15T06:59:31Z +2562 561 1 2020-02-15T06:59:31Z +2563 562 1 2020-02-15T06:59:31Z +2564 562 1 2020-02-15T06:59:31Z +2565 562 1 2020-02-15T06:59:31Z +2566 562 1 2020-02-15T06:59:31Z +2567 562 2 2020-02-15T06:59:31Z +2568 562 2 2020-02-15T06:59:31Z +2569 563 1 2020-02-15T06:59:31Z +2570 563 1 2020-02-15T06:59:31Z +2571 563 1 2020-02-15T06:59:31Z +2572 563 1 2020-02-15T06:59:31Z +2573 563 2 2020-02-15T06:59:31Z +2574 563 2 2020-02-15T06:59:31Z +2575 563 2 2020-02-15T06:59:31Z +2576 564 2 2020-02-15T06:59:31Z +2577 564 2 2020-02-15T06:59:31Z +2578 564 2 2020-02-15T06:59:31Z +2579 565 1 2020-02-15T06:59:31Z +2580 565 1 2020-02-15T06:59:31Z +2581 566 1 2020-02-15T06:59:31Z +2582 566 1 2020-02-15T06:59:31Z +2583 567 1 2020-02-15T06:59:31Z +2584 567 1 2020-02-15T06:59:31Z +2585 567 2 2020-02-15T06:59:31Z +2586 567 2 2020-02-15T06:59:31Z +2587 568 1 2020-02-15T06:59:31Z +2588 568 1 2020-02-15T06:59:31Z +2589 568 2 2020-02-15T06:59:31Z +2590 568 2 2020-02-15T06:59:31Z +2591 569 1 2020-02-15T06:59:31Z +2592 569 1 2020-02-15T06:59:31Z +2593 570 1 2020-02-15T06:59:31Z +2594 570 1 2020-02-15T06:59:31Z +2595 570 2 2020-02-15T06:59:31Z +2596 570 2 2020-02-15T06:59:31Z +2597 570 2 2020-02-15T06:59:31Z +2598 571 1 2020-02-15T06:59:31Z +2599 571 1 2020-02-15T06:59:31Z +2600 571 2 2020-02-15T06:59:31Z +2601 571 2 2020-02-15T06:59:31Z +2602 571 2 2020-02-15T06:59:31Z +2603 571 2 2020-02-15T06:59:31Z +2604 572 1 2020-02-15T06:59:31Z +2605 572 1 2020-02-15T06:59:31Z +2606 572 1 2020-02-15T06:59:31Z +2607 572 1 2020-02-15T06:59:31Z +2608 572 2 2020-02-15T06:59:31Z +2609 572 2 2020-02-15T06:59:31Z +2610 572 2 2020-02-15T06:59:31Z +2611 572 2 2020-02-15T06:59:31Z +2612 573 1 2020-02-15T06:59:31Z +2613 573 1 2020-02-15T06:59:31Z +2614 573 1 2020-02-15T06:59:31Z +2615 573 1 2020-02-15T06:59:31Z +2616 574 1 2020-02-15T06:59:31Z +2617 574 1 2020-02-15T06:59:31Z +2618 574 2 2020-02-15T06:59:31Z +2619 574 2 2020-02-15T06:59:31Z +2620 574 2 2020-02-15T06:59:31Z +2621 575 1 2020-02-15T06:59:31Z +2622 575 1 2020-02-15T06:59:31Z +2623 575 2 2020-02-15T06:59:31Z +2624 575 2 2020-02-15T06:59:31Z +2625 575 2 2020-02-15T06:59:31Z +2626 575 2 2020-02-15T06:59:31Z +2627 576 2 2020-02-15T06:59:31Z +2628 576 2 2020-02-15T06:59:31Z +2629 576 2 2020-02-15T06:59:31Z +2630 577 1 2020-02-15T06:59:31Z +2631 577 1 2020-02-15T06:59:31Z +2632 577 1 2020-02-15T06:59:31Z +2633 578 1 2020-02-15T06:59:31Z +2634 578 1 2020-02-15T06:59:31Z +2635 578 2 2020-02-15T06:59:31Z +2636 578 2 2020-02-15T06:59:31Z +2637 578 2 2020-02-15T06:59:31Z +2638 579 1 2020-02-15T06:59:31Z +2639 579 1 2020-02-15T06:59:31Z +2640 579 1 2020-02-15T06:59:31Z +2641 579 1 2020-02-15T06:59:31Z +2642 579 2 2020-02-15T06:59:31Z +2643 579 2 2020-02-15T06:59:31Z +2644 579 2 2020-02-15T06:59:31Z +2645 580 1 2020-02-15T06:59:31Z +2646 580 1 2020-02-15T06:59:31Z +2647 580 1 2020-02-15T06:59:31Z +2648 580 1 2020-02-15T06:59:31Z +2649 580 2 2020-02-15T06:59:31Z +2650 580 2 2020-02-15T06:59:31Z +2651 581 1 2020-02-15T06:59:31Z +2652 581 1 2020-02-15T06:59:31Z +2653 581 1 2020-02-15T06:59:31Z +2654 582 2 2020-02-15T06:59:31Z +2655 582 2 2020-02-15T06:59:31Z +2656 583 1 2020-02-15T06:59:31Z +2657 583 1 2020-02-15T06:59:31Z +2658 583 1 2020-02-15T06:59:31Z +2659 583 2 2020-02-15T06:59:31Z +2660 583 2 2020-02-15T06:59:31Z +2661 584 1 2020-02-15T06:59:31Z +2662 584 1 2020-02-15T06:59:31Z +2663 585 2 2020-02-15T06:59:31Z +2664 585 2 2020-02-15T06:59:31Z +2665 585 2 2020-02-15T06:59:31Z +2666 585 2 2020-02-15T06:59:31Z +2667 586 1 2020-02-15T06:59:31Z +2668 586 1 2020-02-15T06:59:31Z +2669 586 1 2020-02-15T06:59:31Z +2670 586 1 2020-02-15T06:59:31Z +2671 586 2 2020-02-15T06:59:31Z +2672 586 2 2020-02-15T06:59:31Z +2673 586 2 2020-02-15T06:59:31Z +2674 586 2 2020-02-15T06:59:31Z +2675 587 1 2020-02-15T06:59:31Z +2676 587 1 2020-02-15T06:59:31Z +2677 587 1 2020-02-15T06:59:31Z +2678 588 2 2020-02-15T06:59:31Z +2679 588 2 2020-02-15T06:59:31Z +2680 588 2 2020-02-15T06:59:31Z +2681 588 2 2020-02-15T06:59:31Z +2682 589 2 2020-02-15T06:59:31Z +2683 589 2 2020-02-15T06:59:31Z +2684 589 2 2020-02-15T06:59:31Z +2685 589 2 2020-02-15T06:59:31Z +2686 590 1 2020-02-15T06:59:31Z +2687 590 1 2020-02-15T06:59:31Z +2688 590 1 2020-02-15T06:59:31Z +2689 590 2 2020-02-15T06:59:31Z +2690 590 2 2020-02-15T06:59:31Z +2691 590 2 2020-02-15T06:59:31Z +2692 590 2 2020-02-15T06:59:31Z +2693 591 2 2020-02-15T06:59:31Z +2694 591 2 2020-02-15T06:59:31Z +2695 591 2 2020-02-15T06:59:31Z +2696 592 1 2020-02-15T06:59:31Z +2697 592 1 2020-02-15T06:59:31Z +2698 592 2 2020-02-15T06:59:31Z +2699 592 2 2020-02-15T06:59:31Z +2700 593 2 2020-02-15T06:59:31Z +2701 593 2 2020-02-15T06:59:31Z +2702 593 2 2020-02-15T06:59:31Z +2703 593 2 2020-02-15T06:59:31Z +2704 594 1 2020-02-15T06:59:31Z +2705 594 1 2020-02-15T06:59:31Z +2706 594 1 2020-02-15T06:59:31Z +2707 595 1 2020-02-15T06:59:31Z +2708 595 1 2020-02-15T06:59:31Z +2709 595 1 2020-02-15T06:59:31Z +2710 595 1 2020-02-15T06:59:31Z +2711 595 2 2020-02-15T06:59:31Z +2712 595 2 2020-02-15T06:59:31Z +2713 595 2 2020-02-15T06:59:31Z +2714 595 2 2020-02-15T06:59:31Z +2715 596 1 2020-02-15T06:59:31Z +2716 596 1 2020-02-15T06:59:31Z +2717 596 2 2020-02-15T06:59:31Z +2718 596 2 2020-02-15T06:59:31Z +2719 596 2 2020-02-15T06:59:31Z +2720 596 2 2020-02-15T06:59:31Z +2721 597 2 2020-02-15T06:59:31Z +2722 597 2 2020-02-15T06:59:31Z +2723 597 2 2020-02-15T06:59:31Z +2724 597 2 2020-02-15T06:59:31Z +2725 598 1 2020-02-15T06:59:31Z +2726 598 1 2020-02-15T06:59:31Z +2727 598 1 2020-02-15T06:59:31Z +2728 598 1 2020-02-15T06:59:31Z +2729 599 1 2020-02-15T06:59:31Z +2730 599 1 2020-02-15T06:59:31Z +2731 599 1 2020-02-15T06:59:31Z +2732 599 2 2020-02-15T06:59:31Z +2733 599 2 2020-02-15T06:59:31Z +2734 600 1 2020-02-15T06:59:31Z +2735 600 1 2020-02-15T06:59:31Z +2736 600 2 2020-02-15T06:59:31Z +2737 600 2 2020-02-15T06:59:31Z +2738 601 1 2020-02-15T06:59:31Z +2739 601 1 2020-02-15T06:59:31Z +2740 601 1 2020-02-15T06:59:31Z +2741 601 2 2020-02-15T06:59:31Z +2742 601 2 2020-02-15T06:59:31Z +2743 602 1 2020-02-15T06:59:31Z +2744 602 1 2020-02-15T06:59:31Z +2745 602 2 2020-02-15T06:59:31Z +2746 602 2 2020-02-15T06:59:31Z +2747 602 2 2020-02-15T06:59:31Z +2748 603 1 2020-02-15T06:59:31Z +2749 603 1 2020-02-15T06:59:31Z +2750 603 1 2020-02-15T06:59:31Z +2751 603 1 2020-02-15T06:59:31Z +2752 603 2 2020-02-15T06:59:31Z +2753 603 2 2020-02-15T06:59:31Z +2754 604 2 2020-02-15T06:59:31Z +2755 604 2 2020-02-15T06:59:31Z +2756 604 2 2020-02-15T06:59:31Z +2757 605 2 2020-02-15T06:59:31Z +2758 605 2 2020-02-15T06:59:31Z +2759 606 1 2020-02-15T06:59:31Z +2760 606 1 2020-02-15T06:59:31Z +2761 606 2 2020-02-15T06:59:31Z +2762 606 2 2020-02-15T06:59:31Z +2763 606 2 2020-02-15T06:59:31Z +2764 606 2 2020-02-15T06:59:31Z +2765 608 1 2020-02-15T06:59:31Z +2766 608 1 2020-02-15T06:59:31Z +2767 608 2 2020-02-15T06:59:31Z +2768 608 2 2020-02-15T06:59:31Z +2769 608 2 2020-02-15T06:59:31Z +2770 608 2 2020-02-15T06:59:31Z +2771 609 1 2020-02-15T06:59:31Z +2772 609 1 2020-02-15T06:59:31Z +2773 609 1 2020-02-15T06:59:31Z +2774 609 1 2020-02-15T06:59:31Z +2775 609 2 2020-02-15T06:59:31Z +2776 609 2 2020-02-15T06:59:31Z +2777 609 2 2020-02-15T06:59:31Z +2778 609 2 2020-02-15T06:59:31Z +2779 610 1 2020-02-15T06:59:31Z +2780 610 1 2020-02-15T06:59:31Z +2781 610 2 2020-02-15T06:59:31Z +2782 610 2 2020-02-15T06:59:31Z +2783 610 2 2020-02-15T06:59:31Z +2784 611 1 2020-02-15T06:59:31Z +2785 611 1 2020-02-15T06:59:31Z +2786 611 1 2020-02-15T06:59:31Z +2787 611 1 2020-02-15T06:59:31Z +2788 611 2 2020-02-15T06:59:31Z +2789 611 2 2020-02-15T06:59:31Z +2790 612 2 2020-02-15T06:59:31Z +2791 612 2 2020-02-15T06:59:31Z +2792 613 1 2020-02-15T06:59:31Z +2793 613 1 2020-02-15T06:59:31Z +2794 614 1 2020-02-15T06:59:31Z +2795 614 1 2020-02-15T06:59:31Z +2796 614 1 2020-02-15T06:59:31Z +2797 614 2 2020-02-15T06:59:31Z +2798 614 2 2020-02-15T06:59:31Z +2799 614 2 2020-02-15T06:59:31Z +2800 615 2 2020-02-15T06:59:31Z +2801 615 2 2020-02-15T06:59:31Z +2802 615 2 2020-02-15T06:59:31Z +2803 615 2 2020-02-15T06:59:31Z +2804 616 1 2020-02-15T06:59:31Z +2805 616 1 2020-02-15T06:59:31Z +2806 616 2 2020-02-15T06:59:31Z +2807 616 2 2020-02-15T06:59:31Z +2808 616 2 2020-02-15T06:59:31Z +2809 616 2 2020-02-15T06:59:31Z +2810 617 1 2020-02-15T06:59:31Z +2811 617 1 2020-02-15T06:59:31Z +2812 617 1 2020-02-15T06:59:31Z +2813 618 2 2020-02-15T06:59:31Z +2814 618 2 2020-02-15T06:59:31Z +2815 618 2 2020-02-15T06:59:31Z +2816 618 2 2020-02-15T06:59:31Z +2817 619 1 2020-02-15T06:59:31Z +2818 619 1 2020-02-15T06:59:31Z +2819 619 2 2020-02-15T06:59:31Z +2820 619 2 2020-02-15T06:59:31Z +2821 619 2 2020-02-15T06:59:31Z +2822 619 2 2020-02-15T06:59:31Z +2823 620 1 2020-02-15T06:59:31Z +2824 620 1 2020-02-15T06:59:31Z +2825 620 2 2020-02-15T06:59:31Z +2826 620 2 2020-02-15T06:59:31Z +2827 620 2 2020-02-15T06:59:31Z +2828 621 1 2020-02-15T06:59:31Z +2829 621 1 2020-02-15T06:59:31Z +2830 621 1 2020-02-15T06:59:31Z +2831 621 1 2020-02-15T06:59:31Z +2832 621 2 2020-02-15T06:59:31Z +2833 621 2 2020-02-15T06:59:31Z +2834 621 2 2020-02-15T06:59:31Z +2835 621 2 2020-02-15T06:59:31Z +2836 622 2 2020-02-15T06:59:31Z +2837 622 2 2020-02-15T06:59:31Z +2838 623 1 2020-02-15T06:59:31Z +2839 623 1 2020-02-15T06:59:31Z +2840 623 2 2020-02-15T06:59:31Z +2841 623 2 2020-02-15T06:59:31Z +2842 623 2 2020-02-15T06:59:31Z +2843 624 1 2020-02-15T06:59:31Z +2844 624 1 2020-02-15T06:59:31Z +2845 624 1 2020-02-15T06:59:31Z +2846 624 2 2020-02-15T06:59:31Z +2847 624 2 2020-02-15T06:59:31Z +2848 624 2 2020-02-15T06:59:31Z +2849 624 2 2020-02-15T06:59:31Z +2850 625 1 2020-02-15T06:59:31Z +2851 625 1 2020-02-15T06:59:31Z +2852 625 1 2020-02-15T06:59:31Z +2853 625 2 2020-02-15T06:59:31Z +2854 625 2 2020-02-15T06:59:31Z +2855 625 2 2020-02-15T06:59:31Z +2856 625 2 2020-02-15T06:59:31Z +2857 626 2 2020-02-15T06:59:31Z +2858 626 2 2020-02-15T06:59:31Z +2859 626 2 2020-02-15T06:59:31Z +2860 626 2 2020-02-15T06:59:31Z +2861 627 2 2020-02-15T06:59:31Z +2862 627 2 2020-02-15T06:59:31Z +2863 627 2 2020-02-15T06:59:31Z +2864 628 1 2020-02-15T06:59:31Z +2865 628 1 2020-02-15T06:59:31Z +2866 628 1 2020-02-15T06:59:31Z +2867 628 2 2020-02-15T06:59:31Z +2868 628 2 2020-02-15T06:59:31Z +2869 629 2 2020-02-15T06:59:31Z +2870 629 2 2020-02-15T06:59:31Z +2871 629 2 2020-02-15T06:59:31Z +2872 629 2 2020-02-15T06:59:31Z +2873 630 2 2020-02-15T06:59:31Z +2874 630 2 2020-02-15T06:59:31Z +2875 630 2 2020-02-15T06:59:31Z +2876 631 1 2020-02-15T06:59:31Z +2877 631 1 2020-02-15T06:59:31Z +2878 631 1 2020-02-15T06:59:31Z +2879 631 2 2020-02-15T06:59:31Z +2880 631 2 2020-02-15T06:59:31Z +2881 632 1 2020-02-15T06:59:31Z +2882 632 1 2020-02-15T06:59:31Z +2883 632 1 2020-02-15T06:59:31Z +2884 633 2 2020-02-15T06:59:31Z +2885 633 2 2020-02-15T06:59:31Z +2886 633 2 2020-02-15T06:59:31Z +2887 634 2 2020-02-15T06:59:31Z +2888 634 2 2020-02-15T06:59:31Z +2889 634 2 2020-02-15T06:59:31Z +2890 634 2 2020-02-15T06:59:31Z +2891 635 2 2020-02-15T06:59:31Z +2892 635 2 2020-02-15T06:59:31Z +2893 636 1 2020-02-15T06:59:31Z +2894 636 1 2020-02-15T06:59:31Z +2895 636 1 2020-02-15T06:59:31Z +2896 637 1 2020-02-15T06:59:31Z +2897 637 1 2020-02-15T06:59:31Z +2898 637 2 2020-02-15T06:59:31Z +2899 637 2 2020-02-15T06:59:31Z +2900 637 2 2020-02-15T06:59:31Z +2901 638 1 2020-02-15T06:59:31Z +2902 638 1 2020-02-15T06:59:31Z +2903 638 1 2020-02-15T06:59:31Z +2904 638 1 2020-02-15T06:59:31Z +2905 638 2 2020-02-15T06:59:31Z +2906 638 2 2020-02-15T06:59:31Z +2907 638 2 2020-02-15T06:59:31Z +2908 638 2 2020-02-15T06:59:31Z +2909 639 2 2020-02-15T06:59:31Z +2910 639 2 2020-02-15T06:59:31Z +2911 639 2 2020-02-15T06:59:31Z +2912 640 2 2020-02-15T06:59:31Z +2913 640 2 2020-02-15T06:59:31Z +2914 640 2 2020-02-15T06:59:31Z +2915 641 1 2020-02-15T06:59:31Z +2916 641 1 2020-02-15T06:59:31Z +2917 641 1 2020-02-15T06:59:31Z +2918 641 2 2020-02-15T06:59:31Z +2919 641 2 2020-02-15T06:59:31Z +2920 641 2 2020-02-15T06:59:31Z +2921 641 2 2020-02-15T06:59:31Z +2922 643 1 2020-02-15T06:59:31Z +2923 643 1 2020-02-15T06:59:31Z +2924 643 1 2020-02-15T06:59:31Z +2925 643 2 2020-02-15T06:59:31Z +2926 643 2 2020-02-15T06:59:31Z +2927 643 2 2020-02-15T06:59:31Z +2928 644 1 2020-02-15T06:59:31Z +2929 644 1 2020-02-15T06:59:31Z +2930 644 1 2020-02-15T06:59:31Z +2931 644 2 2020-02-15T06:59:31Z +2932 644 2 2020-02-15T06:59:31Z +2933 644 2 2020-02-15T06:59:31Z +2934 644 2 2020-02-15T06:59:31Z +2935 645 1 2020-02-15T06:59:31Z +2936 645 1 2020-02-15T06:59:31Z +2937 645 1 2020-02-15T06:59:31Z +2938 645 2 2020-02-15T06:59:31Z +2939 645 2 2020-02-15T06:59:31Z +2940 645 2 2020-02-15T06:59:31Z +2941 646 1 2020-02-15T06:59:31Z +2942 646 1 2020-02-15T06:59:31Z +2943 646 1 2020-02-15T06:59:31Z +2944 646 2 2020-02-15T06:59:31Z +2945 646 2 2020-02-15T06:59:31Z +2946 647 1 2020-02-15T06:59:31Z +2947 647 1 2020-02-15T06:59:31Z +2948 647 1 2020-02-15T06:59:31Z +2949 647 2 2020-02-15T06:59:31Z +2950 647 2 2020-02-15T06:59:31Z +2951 647 2 2020-02-15T06:59:31Z +2952 648 1 2020-02-15T06:59:31Z +2953 648 1 2020-02-15T06:59:31Z +2954 648 1 2020-02-15T06:59:31Z +2955 648 1 2020-02-15T06:59:31Z +2956 648 2 2020-02-15T06:59:31Z +2957 648 2 2020-02-15T06:59:31Z +2958 649 1 2020-02-15T06:59:31Z +2959 649 1 2020-02-15T06:59:31Z +2960 649 2 2020-02-15T06:59:31Z +2961 649 2 2020-02-15T06:59:31Z +2962 649 2 2020-02-15T06:59:31Z +2963 649 2 2020-02-15T06:59:31Z +2964 650 1 2020-02-15T06:59:31Z +2965 650 1 2020-02-15T06:59:31Z +2966 650 2 2020-02-15T06:59:31Z +2967 650 2 2020-02-15T06:59:31Z +2968 650 2 2020-02-15T06:59:31Z +2969 650 2 2020-02-15T06:59:31Z +2970 651 1 2020-02-15T06:59:31Z +2971 651 1 2020-02-15T06:59:31Z +2972 651 2 2020-02-15T06:59:31Z +2973 651 2 2020-02-15T06:59:31Z +2974 651 2 2020-02-15T06:59:31Z +2975 651 2 2020-02-15T06:59:31Z +2976 652 1 2020-02-15T06:59:31Z +2977 652 1 2020-02-15T06:59:31Z +2978 652 1 2020-02-15T06:59:31Z +2979 652 1 2020-02-15T06:59:31Z +2980 653 1 2020-02-15T06:59:31Z +2981 653 1 2020-02-15T06:59:31Z +2982 654 1 2020-02-15T06:59:31Z +2983 654 1 2020-02-15T06:59:31Z +2984 654 2 2020-02-15T06:59:31Z +2985 654 2 2020-02-15T06:59:31Z +2986 655 1 2020-02-15T06:59:31Z +2987 655 1 2020-02-15T06:59:31Z +2988 655 1 2020-02-15T06:59:31Z +2989 655 2 2020-02-15T06:59:31Z +2990 655 2 2020-02-15T06:59:31Z +2991 655 2 2020-02-15T06:59:31Z +2992 656 2 2020-02-15T06:59:31Z +2993 656 2 2020-02-15T06:59:31Z +2994 657 1 2020-02-15T06:59:31Z +2995 657 1 2020-02-15T06:59:31Z +2996 657 1 2020-02-15T06:59:31Z +2997 657 1 2020-02-15T06:59:31Z +2998 657 2 2020-02-15T06:59:31Z +2999 657 2 2020-02-15T06:59:31Z +3000 658 2 2020-02-15T06:59:31Z +3001 658 2 2020-02-15T06:59:31Z +3002 658 2 2020-02-15T06:59:31Z +3003 658 2 2020-02-15T06:59:31Z +3004 659 2 2020-02-15T06:59:31Z +3005 659 2 2020-02-15T06:59:31Z +3006 660 1 2020-02-15T06:59:31Z +3007 660 1 2020-02-15T06:59:31Z +3008 660 2 2020-02-15T06:59:31Z +3009 660 2 2020-02-15T06:59:31Z +3010 661 1 2020-02-15T06:59:31Z +3011 661 1 2020-02-15T06:59:31Z +3012 661 1 2020-02-15T06:59:31Z +3013 661 1 2020-02-15T06:59:31Z +3014 662 1 2020-02-15T06:59:31Z +3015 662 1 2020-02-15T06:59:31Z +3016 662 2 2020-02-15T06:59:31Z +3017 662 2 2020-02-15T06:59:31Z +3018 663 1 2020-02-15T06:59:31Z +3019 663 1 2020-02-15T06:59:31Z +3020 663 1 2020-02-15T06:59:31Z +3021 663 2 2020-02-15T06:59:31Z +3022 663 2 2020-02-15T06:59:31Z +3023 664 1 2020-02-15T06:59:31Z +3024 664 1 2020-02-15T06:59:31Z +3025 664 2 2020-02-15T06:59:31Z +3026 664 2 2020-02-15T06:59:31Z +3027 664 2 2020-02-15T06:59:31Z +3028 665 1 2020-02-15T06:59:31Z +3029 665 1 2020-02-15T06:59:31Z +3030 665 1 2020-02-15T06:59:31Z +3031 665 1 2020-02-15T06:59:31Z +3032 665 2 2020-02-15T06:59:31Z +3033 665 2 2020-02-15T06:59:31Z +3034 665 2 2020-02-15T06:59:31Z +3035 666 1 2020-02-15T06:59:31Z +3036 666 1 2020-02-15T06:59:31Z +3037 666 1 2020-02-15T06:59:31Z +3038 666 2 2020-02-15T06:59:31Z +3039 666 2 2020-02-15T06:59:31Z +3040 667 1 2020-02-15T06:59:31Z +3041 667 1 2020-02-15T06:59:31Z +3042 667 2 2020-02-15T06:59:31Z +3043 667 2 2020-02-15T06:59:31Z +3044 668 1 2020-02-15T06:59:31Z +3045 668 1 2020-02-15T06:59:31Z +3046 668 2 2020-02-15T06:59:31Z +3047 668 2 2020-02-15T06:59:31Z +3048 668 2 2020-02-15T06:59:31Z +3049 670 1 2020-02-15T06:59:31Z +3050 670 1 2020-02-15T06:59:31Z +3051 670 1 2020-02-15T06:59:31Z +3052 670 1 2020-02-15T06:59:31Z +3053 670 2 2020-02-15T06:59:31Z +3054 670 2 2020-02-15T06:59:31Z +3055 670 2 2020-02-15T06:59:31Z +3056 672 1 2020-02-15T06:59:31Z +3057 672 1 2020-02-15T06:59:31Z +3058 672 2 2020-02-15T06:59:31Z +3059 672 2 2020-02-15T06:59:31Z +3060 672 2 2020-02-15T06:59:31Z +3061 672 2 2020-02-15T06:59:31Z +3062 673 1 2020-02-15T06:59:31Z +3063 673 1 2020-02-15T06:59:31Z +3064 673 2 2020-02-15T06:59:31Z +3065 673 2 2020-02-15T06:59:31Z +3066 674 1 2020-02-15T06:59:31Z +3067 674 1 2020-02-15T06:59:31Z +3068 674 1 2020-02-15T06:59:31Z +3069 675 1 2020-02-15T06:59:31Z +3070 675 1 2020-02-15T06:59:31Z +3071 676 1 2020-02-15T06:59:31Z +3072 676 1 2020-02-15T06:59:31Z +3073 676 2 2020-02-15T06:59:31Z +3074 676 2 2020-02-15T06:59:31Z +3075 676 2 2020-02-15T06:59:31Z +3076 676 2 2020-02-15T06:59:31Z +3077 677 1 2020-02-15T06:59:31Z +3078 677 1 2020-02-15T06:59:31Z +3079 677 1 2020-02-15T06:59:31Z +3080 677 2 2020-02-15T06:59:31Z +3081 677 2 2020-02-15T06:59:31Z +3082 677 2 2020-02-15T06:59:31Z +3083 677 2 2020-02-15T06:59:31Z +3084 678 1 2020-02-15T06:59:31Z +3085 678 1 2020-02-15T06:59:31Z +3086 678 1 2020-02-15T06:59:31Z +3087 678 1 2020-02-15T06:59:31Z +3088 679 1 2020-02-15T06:59:31Z +3089 679 1 2020-02-15T06:59:31Z +3090 679 2 2020-02-15T06:59:31Z +3091 679 2 2020-02-15T06:59:31Z +3092 680 1 2020-02-15T06:59:31Z +3093 680 1 2020-02-15T06:59:31Z +3094 680 2 2020-02-15T06:59:31Z +3095 680 2 2020-02-15T06:59:31Z +3096 680 2 2020-02-15T06:59:31Z +3097 680 2 2020-02-15T06:59:31Z +3098 681 1 2020-02-15T06:59:31Z +3099 681 1 2020-02-15T06:59:31Z +3100 681 1 2020-02-15T06:59:31Z +3101 681 2 2020-02-15T06:59:31Z +3102 681 2 2020-02-15T06:59:31Z +3103 681 2 2020-02-15T06:59:31Z +3104 682 1 2020-02-15T06:59:31Z +3105 682 1 2020-02-15T06:59:31Z +3106 682 1 2020-02-15T06:59:31Z +3107 683 1 2020-02-15T06:59:31Z +3108 683 1 2020-02-15T06:59:31Z +3109 683 1 2020-02-15T06:59:31Z +3110 683 1 2020-02-15T06:59:31Z +3111 683 2 2020-02-15T06:59:31Z +3112 683 2 2020-02-15T06:59:31Z +3113 683 2 2020-02-15T06:59:31Z +3114 683 2 2020-02-15T06:59:31Z +3115 684 2 2020-02-15T06:59:31Z +3116 684 2 2020-02-15T06:59:31Z +3117 685 2 2020-02-15T06:59:31Z +3118 685 2 2020-02-15T06:59:31Z +3119 686 1 2020-02-15T06:59:31Z +3120 686 1 2020-02-15T06:59:31Z +3121 686 1 2020-02-15T06:59:31Z +3122 686 1 2020-02-15T06:59:31Z +3123 687 1 2020-02-15T06:59:31Z +3124 687 1 2020-02-15T06:59:31Z +3125 687 1 2020-02-15T06:59:31Z +3126 687 2 2020-02-15T06:59:31Z +3127 687 2 2020-02-15T06:59:31Z +3128 687 2 2020-02-15T06:59:31Z +3129 687 2 2020-02-15T06:59:31Z +3130 688 2 2020-02-15T06:59:31Z +3131 688 2 2020-02-15T06:59:31Z +3132 688 2 2020-02-15T06:59:31Z +3133 688 2 2020-02-15T06:59:31Z +3134 689 1 2020-02-15T06:59:31Z +3135 689 1 2020-02-15T06:59:31Z +3136 689 1 2020-02-15T06:59:31Z +3137 689 1 2020-02-15T06:59:31Z +3138 689 2 2020-02-15T06:59:31Z +3139 689 2 2020-02-15T06:59:31Z +3140 690 1 2020-02-15T06:59:31Z +3141 690 1 2020-02-15T06:59:31Z +3142 690 1 2020-02-15T06:59:31Z +3143 690 1 2020-02-15T06:59:31Z +3144 690 2 2020-02-15T06:59:31Z +3145 690 2 2020-02-15T06:59:31Z +3146 691 1 2020-02-15T06:59:31Z +3147 691 1 2020-02-15T06:59:31Z +3148 691 1 2020-02-15T06:59:31Z +3149 691 2 2020-02-15T06:59:31Z +3150 691 2 2020-02-15T06:59:31Z +3151 692 2 2020-02-15T06:59:31Z +3152 692 2 2020-02-15T06:59:31Z +3153 692 2 2020-02-15T06:59:31Z +3154 693 1 2020-02-15T06:59:31Z +3155 693 1 2020-02-15T06:59:31Z +3156 693 2 2020-02-15T06:59:31Z +3157 693 2 2020-02-15T06:59:31Z +3158 693 2 2020-02-15T06:59:31Z +3159 694 1 2020-02-15T06:59:31Z +3160 694 1 2020-02-15T06:59:31Z +3161 694 1 2020-02-15T06:59:31Z +3162 694 1 2020-02-15T06:59:31Z +3163 694 2 2020-02-15T06:59:31Z +3164 694 2 2020-02-15T06:59:31Z +3165 695 1 2020-02-15T06:59:31Z +3166 695 1 2020-02-15T06:59:31Z +3167 696 1 2020-02-15T06:59:31Z +3168 696 1 2020-02-15T06:59:31Z +3169 696 2 2020-02-15T06:59:31Z +3170 696 2 2020-02-15T06:59:31Z +3171 696 2 2020-02-15T06:59:31Z +3172 697 1 2020-02-15T06:59:31Z +3173 697 1 2020-02-15T06:59:31Z +3174 697 1 2020-02-15T06:59:31Z +3175 697 1 2020-02-15T06:59:31Z +3176 697 2 2020-02-15T06:59:31Z +3177 697 2 2020-02-15T06:59:31Z +3178 697 2 2020-02-15T06:59:31Z +3179 697 2 2020-02-15T06:59:31Z +3180 698 1 2020-02-15T06:59:31Z +3181 698 1 2020-02-15T06:59:31Z +3182 698 1 2020-02-15T06:59:31Z +3183 698 1 2020-02-15T06:59:31Z +3184 698 2 2020-02-15T06:59:31Z +3185 698 2 2020-02-15T06:59:31Z +3186 698 2 2020-02-15T06:59:31Z +3187 699 1 2020-02-15T06:59:31Z +3188 699 1 2020-02-15T06:59:31Z +3189 700 2 2020-02-15T06:59:31Z +3190 700 2 2020-02-15T06:59:31Z +3191 700 2 2020-02-15T06:59:31Z +3192 702 1 2020-02-15T06:59:31Z +3193 702 1 2020-02-15T06:59:31Z +3194 702 1 2020-02-15T06:59:31Z +3195 702 1 2020-02-15T06:59:31Z +3196 702 2 2020-02-15T06:59:31Z +3197 702 2 2020-02-15T06:59:31Z +3198 702 2 2020-02-15T06:59:31Z +3199 702 2 2020-02-15T06:59:31Z +3200 703 2 2020-02-15T06:59:31Z +3201 703 2 2020-02-15T06:59:31Z +3202 704 1 2020-02-15T06:59:31Z +3203 704 1 2020-02-15T06:59:31Z +3204 704 2 2020-02-15T06:59:31Z +3205 704 2 2020-02-15T06:59:31Z +3206 704 2 2020-02-15T06:59:31Z +3207 705 1 2020-02-15T06:59:31Z +3208 705 1 2020-02-15T06:59:31Z +3209 705 1 2020-02-15T06:59:31Z +3210 705 1 2020-02-15T06:59:31Z +3211 706 1 2020-02-15T06:59:31Z +3212 706 1 2020-02-15T06:59:31Z +3213 706 2 2020-02-15T06:59:31Z +3214 706 2 2020-02-15T06:59:31Z +3215 706 2 2020-02-15T06:59:31Z +3216 706 2 2020-02-15T06:59:31Z +3217 707 1 2020-02-15T06:59:31Z +3218 707 1 2020-02-15T06:59:31Z +3219 707 2 2020-02-15T06:59:31Z +3220 707 2 2020-02-15T06:59:31Z +3221 707 2 2020-02-15T06:59:31Z +3222 707 2 2020-02-15T06:59:31Z +3223 708 1 2020-02-15T06:59:31Z +3224 708 1 2020-02-15T06:59:31Z +3225 708 2 2020-02-15T06:59:31Z +3226 708 2 2020-02-15T06:59:31Z +3227 709 1 2020-02-15T06:59:31Z +3228 709 1 2020-02-15T06:59:31Z +3229 709 2 2020-02-15T06:59:31Z +3230 709 2 2020-02-15T06:59:31Z +3231 709 2 2020-02-15T06:59:31Z +3232 709 2 2020-02-15T06:59:31Z +3233 710 1 2020-02-15T06:59:31Z +3234 710 1 2020-02-15T06:59:31Z +3235 710 1 2020-02-15T06:59:31Z +3236 710 1 2020-02-15T06:59:31Z +3237 710 2 2020-02-15T06:59:31Z +3238 710 2 2020-02-15T06:59:31Z +3239 711 2 2020-02-15T06:59:31Z +3240 711 2 2020-02-15T06:59:31Z +3241 711 2 2020-02-15T06:59:31Z +3242 711 2 2020-02-15T06:59:31Z +3243 714 2 2020-02-15T06:59:31Z +3244 714 2 2020-02-15T06:59:31Z +3245 714 2 2020-02-15T06:59:31Z +3246 715 1 2020-02-15T06:59:31Z +3247 715 1 2020-02-15T06:59:31Z +3248 715 1 2020-02-15T06:59:31Z +3249 715 1 2020-02-15T06:59:31Z +3250 715 2 2020-02-15T06:59:31Z +3251 715 2 2020-02-15T06:59:31Z +3252 715 2 2020-02-15T06:59:31Z +3253 716 1 2020-02-15T06:59:31Z +3254 716 1 2020-02-15T06:59:31Z +3255 716 2 2020-02-15T06:59:31Z +3256 716 2 2020-02-15T06:59:31Z +3257 716 2 2020-02-15T06:59:31Z +3258 717 1 2020-02-15T06:59:31Z +3259 717 1 2020-02-15T06:59:31Z +3260 717 2 2020-02-15T06:59:31Z +3261 717 2 2020-02-15T06:59:31Z +3262 718 2 2020-02-15T06:59:31Z +3263 718 2 2020-02-15T06:59:31Z +3264 719 1 2020-02-15T06:59:31Z +3265 719 1 2020-02-15T06:59:31Z +3266 720 1 2020-02-15T06:59:31Z +3267 720 1 2020-02-15T06:59:31Z +3268 720 1 2020-02-15T06:59:31Z +3269 720 2 2020-02-15T06:59:31Z +3270 720 2 2020-02-15T06:59:31Z +3271 720 2 2020-02-15T06:59:31Z +3272 720 2 2020-02-15T06:59:31Z +3273 721 1 2020-02-15T06:59:31Z +3274 721 1 2020-02-15T06:59:31Z +3275 722 1 2020-02-15T06:59:31Z +3276 722 1 2020-02-15T06:59:31Z +3277 722 2 2020-02-15T06:59:31Z +3278 722 2 2020-02-15T06:59:31Z +3279 723 1 2020-02-15T06:59:31Z +3280 723 1 2020-02-15T06:59:31Z +3281 723 1 2020-02-15T06:59:31Z +3282 723 1 2020-02-15T06:59:31Z +3283 723 2 2020-02-15T06:59:31Z +3284 723 2 2020-02-15T06:59:31Z +3285 723 2 2020-02-15T06:59:31Z +3286 724 1 2020-02-15T06:59:31Z +3287 724 1 2020-02-15T06:59:31Z +3288 724 2 2020-02-15T06:59:31Z +3289 724 2 2020-02-15T06:59:31Z +3290 724 2 2020-02-15T06:59:31Z +3291 724 2 2020-02-15T06:59:31Z +3292 725 1 2020-02-15T06:59:31Z +3293 725 1 2020-02-15T06:59:31Z +3294 725 1 2020-02-15T06:59:31Z +3295 725 2 2020-02-15T06:59:31Z +3296 725 2 2020-02-15T06:59:31Z +3297 725 2 2020-02-15T06:59:31Z +3298 726 2 2020-02-15T06:59:31Z +3299 726 2 2020-02-15T06:59:31Z +3300 726 2 2020-02-15T06:59:31Z +3301 727 1 2020-02-15T06:59:31Z +3302 727 1 2020-02-15T06:59:31Z +3303 727 2 2020-02-15T06:59:31Z +3304 727 2 2020-02-15T06:59:31Z +3305 727 2 2020-02-15T06:59:31Z +3306 728 1 2020-02-15T06:59:31Z +3307 728 1 2020-02-15T06:59:31Z +3308 728 1 2020-02-15T06:59:31Z +3309 728 2 2020-02-15T06:59:31Z +3310 728 2 2020-02-15T06:59:31Z +3311 729 2 2020-02-15T06:59:31Z +3312 729 2 2020-02-15T06:59:31Z +3313 729 2 2020-02-15T06:59:31Z +3314 729 2 2020-02-15T06:59:31Z +3315 730 1 2020-02-15T06:59:31Z +3316 730 1 2020-02-15T06:59:31Z +3317 730 1 2020-02-15T06:59:31Z +3318 730 1 2020-02-15T06:59:31Z +3319 730 2 2020-02-15T06:59:31Z +3320 730 2 2020-02-15T06:59:31Z +3321 730 2 2020-02-15T06:59:31Z +3322 730 2 2020-02-15T06:59:31Z +3323 731 2 2020-02-15T06:59:31Z +3324 731 2 2020-02-15T06:59:31Z +3325 731 2 2020-02-15T06:59:31Z +3326 732 1 2020-02-15T06:59:31Z +3327 732 1 2020-02-15T06:59:31Z +3328 732 1 2020-02-15T06:59:31Z +3329 732 1 2020-02-15T06:59:31Z +3330 733 1 2020-02-15T06:59:31Z +3331 733 1 2020-02-15T06:59:31Z +3332 733 1 2020-02-15T06:59:31Z +3333 733 1 2020-02-15T06:59:31Z +3334 733 2 2020-02-15T06:59:31Z +3335 733 2 2020-02-15T06:59:31Z +3336 733 2 2020-02-15T06:59:31Z +3337 734 1 2020-02-15T06:59:31Z +3338 734 1 2020-02-15T06:59:31Z +3339 734 2 2020-02-15T06:59:31Z +3340 734 2 2020-02-15T06:59:31Z +3341 734 2 2020-02-15T06:59:31Z +3342 734 2 2020-02-15T06:59:31Z +3343 735 1 2020-02-15T06:59:31Z +3344 735 1 2020-02-15T06:59:31Z +3345 735 1 2020-02-15T06:59:31Z +3346 735 2 2020-02-15T06:59:31Z +3347 735 2 2020-02-15T06:59:31Z +3348 735 2 2020-02-15T06:59:31Z +3349 735 2 2020-02-15T06:59:31Z +3350 736 1 2020-02-15T06:59:31Z +3351 736 1 2020-02-15T06:59:31Z +3352 736 1 2020-02-15T06:59:31Z +3353 736 1 2020-02-15T06:59:31Z +3354 737 1 2020-02-15T06:59:31Z +3355 737 1 2020-02-15T06:59:31Z +3356 737 2 2020-02-15T06:59:31Z +3357 737 2 2020-02-15T06:59:31Z +3358 737 2 2020-02-15T06:59:31Z +3359 737 2 2020-02-15T06:59:31Z +3360 738 1 2020-02-15T06:59:31Z +3361 738 1 2020-02-15T06:59:31Z +3362 738 1 2020-02-15T06:59:31Z +3363 738 1 2020-02-15T06:59:31Z +3364 738 2 2020-02-15T06:59:31Z +3365 738 2 2020-02-15T06:59:31Z +3366 738 2 2020-02-15T06:59:31Z +3367 738 2 2020-02-15T06:59:31Z +3368 739 1 2020-02-15T06:59:31Z +3369 739 1 2020-02-15T06:59:31Z +3370 739 2 2020-02-15T06:59:31Z +3371 739 2 2020-02-15T06:59:31Z +3372 739 2 2020-02-15T06:59:31Z +3373 740 2 2020-02-15T06:59:31Z +3374 740 2 2020-02-15T06:59:31Z +3375 740 2 2020-02-15T06:59:31Z +3376 741 1 2020-02-15T06:59:31Z +3377 741 1 2020-02-15T06:59:31Z +3378 741 1 2020-02-15T06:59:31Z +3379 741 1 2020-02-15T06:59:31Z +3380 741 2 2020-02-15T06:59:31Z +3381 741 2 2020-02-15T06:59:31Z +3382 743 1 2020-02-15T06:59:31Z +3383 743 1 2020-02-15T06:59:31Z +3384 743 2 2020-02-15T06:59:31Z +3385 743 2 2020-02-15T06:59:31Z +3386 743 2 2020-02-15T06:59:31Z +3387 743 2 2020-02-15T06:59:31Z +3388 744 1 2020-02-15T06:59:31Z +3389 744 1 2020-02-15T06:59:31Z +3390 744 2 2020-02-15T06:59:31Z +3391 744 2 2020-02-15T06:59:31Z +3392 744 2 2020-02-15T06:59:31Z +3393 745 1 2020-02-15T06:59:31Z +3394 745 1 2020-02-15T06:59:31Z +3395 745 1 2020-02-15T06:59:31Z +3396 745 1 2020-02-15T06:59:31Z +3397 745 2 2020-02-15T06:59:31Z +3398 745 2 2020-02-15T06:59:31Z +3399 745 2 2020-02-15T06:59:31Z +3400 745 2 2020-02-15T06:59:31Z +3401 746 1 2020-02-15T06:59:31Z +3402 746 1 2020-02-15T06:59:31Z +3403 746 2 2020-02-15T06:59:31Z +3404 746 2 2020-02-15T06:59:31Z +3405 746 2 2020-02-15T06:59:31Z +3406 747 1 2020-02-15T06:59:31Z +3407 747 1 2020-02-15T06:59:31Z +3408 747 2 2020-02-15T06:59:31Z +3409 747 2 2020-02-15T06:59:31Z +3410 747 2 2020-02-15T06:59:31Z +3411 748 1 2020-02-15T06:59:31Z +3412 748 1 2020-02-15T06:59:31Z +3413 748 1 2020-02-15T06:59:31Z +3414 748 1 2020-02-15T06:59:31Z +3415 748 2 2020-02-15T06:59:31Z +3416 748 2 2020-02-15T06:59:31Z +3417 748 2 2020-02-15T06:59:31Z +3418 748 2 2020-02-15T06:59:31Z +3419 749 1 2020-02-15T06:59:31Z +3420 749 1 2020-02-15T06:59:31Z +3421 749 2 2020-02-15T06:59:31Z +3422 749 2 2020-02-15T06:59:31Z +3423 750 1 2020-02-15T06:59:31Z +3424 750 1 2020-02-15T06:59:31Z +3425 750 1 2020-02-15T06:59:31Z +3426 751 2 2020-02-15T06:59:31Z +3427 751 2 2020-02-15T06:59:31Z +3428 752 2 2020-02-15T06:59:31Z +3429 752 2 2020-02-15T06:59:31Z +3430 752 2 2020-02-15T06:59:31Z +3431 753 1 2020-02-15T06:59:31Z +3432 753 1 2020-02-15T06:59:31Z +3433 753 1 2020-02-15T06:59:31Z +3434 753 1 2020-02-15T06:59:31Z +3435 753 2 2020-02-15T06:59:31Z +3436 753 2 2020-02-15T06:59:31Z +3437 753 2 2020-02-15T06:59:31Z +3438 753 2 2020-02-15T06:59:31Z +3439 754 2 2020-02-15T06:59:31Z +3440 754 2 2020-02-15T06:59:31Z +3441 755 1 2020-02-15T06:59:31Z +3442 755 1 2020-02-15T06:59:31Z +3443 755 1 2020-02-15T06:59:31Z +3444 755 1 2020-02-15T06:59:31Z +3445 755 2 2020-02-15T06:59:31Z +3446 755 2 2020-02-15T06:59:31Z +3447 755 2 2020-02-15T06:59:31Z +3448 756 2 2020-02-15T06:59:31Z +3449 756 2 2020-02-15T06:59:31Z +3450 756 2 2020-02-15T06:59:31Z +3451 757 1 2020-02-15T06:59:31Z +3452 757 1 2020-02-15T06:59:31Z +3453 757 1 2020-02-15T06:59:31Z +3454 757 2 2020-02-15T06:59:31Z +3455 757 2 2020-02-15T06:59:31Z +3456 758 2 2020-02-15T06:59:31Z +3457 758 2 2020-02-15T06:59:31Z +3458 758 2 2020-02-15T06:59:31Z +3459 759 1 2020-02-15T06:59:31Z +3460 759 1 2020-02-15T06:59:31Z +3461 759 2 2020-02-15T06:59:31Z +3462 759 2 2020-02-15T06:59:31Z +3463 759 2 2020-02-15T06:59:31Z +3464 759 2 2020-02-15T06:59:31Z +3465 760 1 2020-02-15T06:59:31Z +3466 760 1 2020-02-15T06:59:31Z +3467 760 1 2020-02-15T06:59:31Z +3468 760 2 2020-02-15T06:59:31Z +3469 760 2 2020-02-15T06:59:31Z +3470 760 2 2020-02-15T06:59:31Z +3471 760 2 2020-02-15T06:59:31Z +3472 761 2 2020-02-15T06:59:31Z +3473 761 2 2020-02-15T06:59:31Z +3474 761 2 2020-02-15T06:59:31Z +3475 762 2 2020-02-15T06:59:31Z +3476 762 2 2020-02-15T06:59:31Z +3477 762 2 2020-02-15T06:59:31Z +3478 762 2 2020-02-15T06:59:31Z +3479 763 1 2020-02-15T06:59:31Z +3480 763 1 2020-02-15T06:59:31Z +3481 763 1 2020-02-15T06:59:31Z +3482 763 2 2020-02-15T06:59:31Z +3483 763 2 2020-02-15T06:59:31Z +3484 764 1 2020-02-15T06:59:31Z +3485 764 1 2020-02-15T06:59:31Z +3486 764 1 2020-02-15T06:59:31Z +3487 764 1 2020-02-15T06:59:31Z +3488 764 2 2020-02-15T06:59:31Z +3489 764 2 2020-02-15T06:59:31Z +3490 764 2 2020-02-15T06:59:31Z +3491 764 2 2020-02-15T06:59:31Z +3492 765 1 2020-02-15T06:59:31Z +3493 765 1 2020-02-15T06:59:31Z +3494 765 1 2020-02-15T06:59:31Z +3495 765 1 2020-02-15T06:59:31Z +3496 766 1 2020-02-15T06:59:31Z +3497 766 1 2020-02-15T06:59:31Z +3498 766 1 2020-02-15T06:59:31Z +3499 767 1 2020-02-15T06:59:31Z +3500 767 1 2020-02-15T06:59:31Z +3501 767 1 2020-02-15T06:59:31Z +3502 767 1 2020-02-15T06:59:31Z +3503 767 2 2020-02-15T06:59:31Z +3504 767 2 2020-02-15T06:59:31Z +3505 767 2 2020-02-15T06:59:31Z +3506 767 2 2020-02-15T06:59:31Z +3507 768 1 2020-02-15T06:59:31Z +3508 768 1 2020-02-15T06:59:31Z +3509 768 1 2020-02-15T06:59:31Z +3510 768 2 2020-02-15T06:59:31Z +3511 768 2 2020-02-15T06:59:31Z +3512 768 2 2020-02-15T06:59:31Z +3513 769 2 2020-02-15T06:59:31Z +3514 769 2 2020-02-15T06:59:31Z +3515 770 2 2020-02-15T06:59:31Z +3516 770 2 2020-02-15T06:59:31Z +3517 770 2 2020-02-15T06:59:31Z +3518 771 1 2020-02-15T06:59:31Z +3519 771 1 2020-02-15T06:59:31Z +3520 771 1 2020-02-15T06:59:31Z +3521 771 2 2020-02-15T06:59:31Z +3522 771 2 2020-02-15T06:59:31Z +3523 771 2 2020-02-15T06:59:31Z +3524 771 2 2020-02-15T06:59:31Z +3525 772 1 2020-02-15T06:59:31Z +3526 772 1 2020-02-15T06:59:31Z +3527 772 1 2020-02-15T06:59:31Z +3528 772 1 2020-02-15T06:59:31Z +3529 772 2 2020-02-15T06:59:31Z +3530 772 2 2020-02-15T06:59:31Z +3531 773 1 2020-02-15T06:59:31Z +3532 773 1 2020-02-15T06:59:31Z +3533 773 1 2020-02-15T06:59:31Z +3534 773 1 2020-02-15T06:59:31Z +3535 773 2 2020-02-15T06:59:31Z +3536 773 2 2020-02-15T06:59:31Z +3537 773 2 2020-02-15T06:59:31Z +3538 773 2 2020-02-15T06:59:31Z +3539 774 1 2020-02-15T06:59:31Z +3540 774 1 2020-02-15T06:59:31Z +3541 774 1 2020-02-15T06:59:31Z +3542 774 1 2020-02-15T06:59:31Z +3543 775 1 2020-02-15T06:59:31Z +3544 775 1 2020-02-15T06:59:31Z +3545 775 1 2020-02-15T06:59:31Z +3546 775 2 2020-02-15T06:59:31Z +3547 775 2 2020-02-15T06:59:31Z +3548 776 1 2020-02-15T06:59:31Z +3549 776 1 2020-02-15T06:59:31Z +3550 776 2 2020-02-15T06:59:31Z +3551 776 2 2020-02-15T06:59:31Z +3552 776 2 2020-02-15T06:59:31Z +3553 777 1 2020-02-15T06:59:31Z +3554 777 1 2020-02-15T06:59:31Z +3555 777 1 2020-02-15T06:59:31Z +3556 777 2 2020-02-15T06:59:31Z +3557 777 2 2020-02-15T06:59:31Z +3558 777 2 2020-02-15T06:59:31Z +3559 778 1 2020-02-15T06:59:31Z +3560 778 1 2020-02-15T06:59:31Z +3561 778 1 2020-02-15T06:59:31Z +3562 778 1 2020-02-15T06:59:31Z +3563 778 2 2020-02-15T06:59:31Z +3564 778 2 2020-02-15T06:59:31Z +3565 779 2 2020-02-15T06:59:31Z +3566 779 2 2020-02-15T06:59:31Z +3567 780 2 2020-02-15T06:59:31Z +3568 780 2 2020-02-15T06:59:31Z +3569 780 2 2020-02-15T06:59:31Z +3570 781 2 2020-02-15T06:59:31Z +3571 781 2 2020-02-15T06:59:31Z +3572 782 1 2020-02-15T06:59:31Z +3573 782 1 2020-02-15T06:59:31Z +3574 782 1 2020-02-15T06:59:31Z +3575 782 2 2020-02-15T06:59:31Z +3576 782 2 2020-02-15T06:59:31Z +3577 782 2 2020-02-15T06:59:31Z +3578 783 1 2020-02-15T06:59:31Z +3579 783 1 2020-02-15T06:59:31Z +3580 783 1 2020-02-15T06:59:31Z +3581 783 1 2020-02-15T06:59:31Z +3582 784 1 2020-02-15T06:59:31Z +3583 784 1 2020-02-15T06:59:31Z +3584 784 1 2020-02-15T06:59:31Z +3585 784 2 2020-02-15T06:59:31Z +3586 784 2 2020-02-15T06:59:31Z +3587 784 2 2020-02-15T06:59:31Z +3588 785 1 2020-02-15T06:59:31Z +3589 785 1 2020-02-15T06:59:31Z +3590 785 1 2020-02-15T06:59:31Z +3591 785 1 2020-02-15T06:59:31Z +3592 785 2 2020-02-15T06:59:31Z +3593 785 2 2020-02-15T06:59:31Z +3594 786 1 2020-02-15T06:59:31Z +3595 786 1 2020-02-15T06:59:31Z +3596 786 1 2020-02-15T06:59:31Z +3597 786 2 2020-02-15T06:59:31Z +3598 786 2 2020-02-15T06:59:31Z +3599 786 2 2020-02-15T06:59:31Z +3600 786 2 2020-02-15T06:59:31Z +3601 787 1 2020-02-15T06:59:31Z +3602 787 1 2020-02-15T06:59:31Z +3603 787 1 2020-02-15T06:59:31Z +3604 788 1 2020-02-15T06:59:31Z +3605 788 1 2020-02-15T06:59:31Z +3606 788 2 2020-02-15T06:59:31Z +3607 788 2 2020-02-15T06:59:31Z +3608 789 1 2020-02-15T06:59:31Z +3609 789 1 2020-02-15T06:59:31Z +3610 789 1 2020-02-15T06:59:31Z +3611 789 1 2020-02-15T06:59:31Z +3612 789 2 2020-02-15T06:59:31Z +3613 789 2 2020-02-15T06:59:31Z +3614 789 2 2020-02-15T06:59:31Z +3615 789 2 2020-02-15T06:59:31Z +3616 790 1 2020-02-15T06:59:31Z +3617 790 1 2020-02-15T06:59:31Z +3618 790 1 2020-02-15T06:59:31Z +3619 790 1 2020-02-15T06:59:31Z +3620 790 2 2020-02-15T06:59:31Z +3621 790 2 2020-02-15T06:59:31Z +3622 790 2 2020-02-15T06:59:31Z +3623 791 1 2020-02-15T06:59:31Z +3624 791 1 2020-02-15T06:59:31Z +3625 791 2 2020-02-15T06:59:31Z +3626 791 2 2020-02-15T06:59:31Z +3627 791 2 2020-02-15T06:59:31Z +3628 791 2 2020-02-15T06:59:31Z +3629 792 2 2020-02-15T06:59:31Z +3630 792 2 2020-02-15T06:59:31Z +3631 792 2 2020-02-15T06:59:31Z +3632 793 1 2020-02-15T06:59:31Z +3633 793 1 2020-02-15T06:59:31Z +3634 793 1 2020-02-15T06:59:31Z +3635 793 1 2020-02-15T06:59:31Z +3636 794 1 2020-02-15T06:59:31Z +3637 794 1 2020-02-15T06:59:31Z +3638 794 2 2020-02-15T06:59:31Z +3639 794 2 2020-02-15T06:59:31Z +3640 795 1 2020-02-15T06:59:31Z +3641 795 1 2020-02-15T06:59:31Z +3642 795 1 2020-02-15T06:59:31Z +3643 795 1 2020-02-15T06:59:31Z +3644 796 1 2020-02-15T06:59:31Z +3645 796 1 2020-02-15T06:59:31Z +3646 796 2 2020-02-15T06:59:31Z +3647 796 2 2020-02-15T06:59:31Z +3648 796 2 2020-02-15T06:59:31Z +3649 797 1 2020-02-15T06:59:31Z +3650 797 1 2020-02-15T06:59:31Z +3651 797 2 2020-02-15T06:59:31Z +3652 797 2 2020-02-15T06:59:31Z +3653 797 2 2020-02-15T06:59:31Z +3654 798 1 2020-02-15T06:59:31Z +3655 798 1 2020-02-15T06:59:31Z +3656 798 2 2020-02-15T06:59:31Z +3657 798 2 2020-02-15T06:59:31Z +3658 799 1 2020-02-15T06:59:31Z +3659 799 1 2020-02-15T06:59:31Z +3660 800 1 2020-02-15T06:59:31Z +3661 800 1 2020-02-15T06:59:31Z +3662 800 2 2020-02-15T06:59:31Z +3663 800 2 2020-02-15T06:59:31Z +3664 800 2 2020-02-15T06:59:31Z +3665 800 2 2020-02-15T06:59:31Z +3666 803 1 2020-02-15T06:59:31Z +3667 803 1 2020-02-15T06:59:31Z +3668 803 1 2020-02-15T06:59:31Z +3669 803 1 2020-02-15T06:59:31Z +3670 803 2 2020-02-15T06:59:31Z +3671 803 2 2020-02-15T06:59:31Z +3672 804 1 2020-02-15T06:59:31Z +3673 804 1 2020-02-15T06:59:31Z +3674 804 1 2020-02-15T06:59:31Z +3675 804 1 2020-02-15T06:59:31Z +3676 804 2 2020-02-15T06:59:31Z +3677 804 2 2020-02-15T06:59:31Z +3678 804 2 2020-02-15T06:59:31Z +3679 805 1 2020-02-15T06:59:31Z +3680 805 1 2020-02-15T06:59:31Z +3681 805 2 2020-02-15T06:59:31Z +3682 805 2 2020-02-15T06:59:31Z +3683 805 2 2020-02-15T06:59:31Z +3684 806 1 2020-02-15T06:59:31Z +3685 806 1 2020-02-15T06:59:31Z +3686 806 1 2020-02-15T06:59:31Z +3687 806 2 2020-02-15T06:59:31Z +3688 806 2 2020-02-15T06:59:31Z +3689 807 1 2020-02-15T06:59:31Z +3690 807 1 2020-02-15T06:59:31Z +3691 807 1 2020-02-15T06:59:31Z +3692 807 2 2020-02-15T06:59:31Z +3693 807 2 2020-02-15T06:59:31Z +3694 808 2 2020-02-15T06:59:31Z +3695 808 2 2020-02-15T06:59:31Z +3696 809 2 2020-02-15T06:59:31Z +3697 809 2 2020-02-15T06:59:31Z +3698 809 2 2020-02-15T06:59:31Z +3699 809 2 2020-02-15T06:59:31Z +3700 810 1 2020-02-15T06:59:31Z +3701 810 1 2020-02-15T06:59:31Z +3702 810 1 2020-02-15T06:59:31Z +3703 810 1 2020-02-15T06:59:31Z +3704 810 2 2020-02-15T06:59:31Z +3705 810 2 2020-02-15T06:59:31Z +3706 810 2 2020-02-15T06:59:31Z +3707 811 1 2020-02-15T06:59:31Z +3708 811 1 2020-02-15T06:59:31Z +3709 811 1 2020-02-15T06:59:31Z +3710 812 1 2020-02-15T06:59:31Z +3711 812 1 2020-02-15T06:59:31Z +3712 812 1 2020-02-15T06:59:31Z +3713 812 2 2020-02-15T06:59:31Z +3714 812 2 2020-02-15T06:59:31Z +3715 812 2 2020-02-15T06:59:31Z +3716 813 2 2020-02-15T06:59:31Z +3717 813 2 2020-02-15T06:59:31Z +3718 813 2 2020-02-15T06:59:31Z +3719 813 2 2020-02-15T06:59:31Z +3720 814 1 2020-02-15T06:59:31Z +3721 814 1 2020-02-15T06:59:31Z +3722 814 1 2020-02-15T06:59:31Z +3723 814 2 2020-02-15T06:59:31Z +3724 814 2 2020-02-15T06:59:31Z +3725 814 2 2020-02-15T06:59:31Z +3726 814 2 2020-02-15T06:59:31Z +3727 815 1 2020-02-15T06:59:31Z +3728 815 1 2020-02-15T06:59:31Z +3729 815 1 2020-02-15T06:59:31Z +3730 816 1 2020-02-15T06:59:31Z +3731 816 1 2020-02-15T06:59:31Z +3732 816 1 2020-02-15T06:59:31Z +3733 816 1 2020-02-15T06:59:31Z +3734 816 2 2020-02-15T06:59:31Z +3735 816 2 2020-02-15T06:59:31Z +3736 816 2 2020-02-15T06:59:31Z +3737 817 1 2020-02-15T06:59:31Z +3738 817 1 2020-02-15T06:59:31Z +3739 818 1 2020-02-15T06:59:31Z +3740 818 1 2020-02-15T06:59:31Z +3741 818 1 2020-02-15T06:59:31Z +3742 818 2 2020-02-15T06:59:31Z +3743 818 2 2020-02-15T06:59:31Z +3744 819 1 2020-02-15T06:59:31Z +3745 819 1 2020-02-15T06:59:31Z +3746 819 1 2020-02-15T06:59:31Z +3747 820 1 2020-02-15T06:59:31Z +3748 820 1 2020-02-15T06:59:31Z +3749 820 1 2020-02-15T06:59:31Z +3750 820 1 2020-02-15T06:59:31Z +3751 820 2 2020-02-15T06:59:31Z +3752 820 2 2020-02-15T06:59:31Z +3753 821 2 2020-02-15T06:59:31Z +3754 821 2 2020-02-15T06:59:31Z +3755 821 2 2020-02-15T06:59:31Z +3756 821 2 2020-02-15T06:59:31Z +3757 822 2 2020-02-15T06:59:31Z +3758 822 2 2020-02-15T06:59:31Z +3759 823 1 2020-02-15T06:59:31Z +3760 823 1 2020-02-15T06:59:31Z +3761 823 1 2020-02-15T06:59:31Z +3762 823 2 2020-02-15T06:59:31Z +3763 823 2 2020-02-15T06:59:31Z +3764 823 2 2020-02-15T06:59:31Z +3765 823 2 2020-02-15T06:59:31Z +3766 824 2 2020-02-15T06:59:31Z +3767 824 2 2020-02-15T06:59:31Z +3768 824 2 2020-02-15T06:59:31Z +3769 824 2 2020-02-15T06:59:31Z +3770 825 1 2020-02-15T06:59:31Z +3771 825 1 2020-02-15T06:59:31Z +3772 825 1 2020-02-15T06:59:31Z +3773 826 2 2020-02-15T06:59:31Z +3774 826 2 2020-02-15T06:59:31Z +3775 827 1 2020-02-15T06:59:31Z +3776 827 1 2020-02-15T06:59:31Z +3777 827 2 2020-02-15T06:59:31Z +3778 827 2 2020-02-15T06:59:31Z +3779 827 2 2020-02-15T06:59:31Z +3780 827 2 2020-02-15T06:59:31Z +3781 828 2 2020-02-15T06:59:31Z +3782 828 2 2020-02-15T06:59:31Z +3783 828 2 2020-02-15T06:59:31Z +3784 828 2 2020-02-15T06:59:31Z +3785 829 1 2020-02-15T06:59:31Z +3786 829 1 2020-02-15T06:59:31Z +3787 829 2 2020-02-15T06:59:31Z +3788 829 2 2020-02-15T06:59:31Z +3789 829 2 2020-02-15T06:59:31Z +3790 830 2 2020-02-15T06:59:31Z +3791 830 2 2020-02-15T06:59:31Z +3792 830 2 2020-02-15T06:59:31Z +3793 830 2 2020-02-15T06:59:31Z +3794 831 1 2020-02-15T06:59:31Z +3795 831 1 2020-02-15T06:59:31Z +3796 831 1 2020-02-15T06:59:31Z +3797 832 1 2020-02-15T06:59:31Z +3798 832 1 2020-02-15T06:59:31Z +3799 832 1 2020-02-15T06:59:31Z +3800 832 1 2020-02-15T06:59:31Z +3801 833 1 2020-02-15T06:59:31Z +3802 833 1 2020-02-15T06:59:31Z +3803 833 1 2020-02-15T06:59:31Z +3804 833 2 2020-02-15T06:59:31Z +3805 833 2 2020-02-15T06:59:31Z +3806 833 2 2020-02-15T06:59:31Z +3807 833 2 2020-02-15T06:59:31Z +3808 834 2 2020-02-15T06:59:31Z +3809 834 2 2020-02-15T06:59:31Z +3810 834 2 2020-02-15T06:59:31Z +3811 835 1 2020-02-15T06:59:31Z +3812 835 1 2020-02-15T06:59:31Z +3813 835 1 2020-02-15T06:59:31Z +3814 835 1 2020-02-15T06:59:31Z +3815 835 2 2020-02-15T06:59:31Z +3816 835 2 2020-02-15T06:59:31Z +3817 835 2 2020-02-15T06:59:31Z +3818 835 2 2020-02-15T06:59:31Z +3819 836 1 2020-02-15T06:59:31Z +3820 836 1 2020-02-15T06:59:31Z +3821 836 1 2020-02-15T06:59:31Z +3822 837 2 2020-02-15T06:59:31Z +3823 837 2 2020-02-15T06:59:31Z +3824 837 2 2020-02-15T06:59:31Z +3825 838 1 2020-02-15T06:59:31Z +3826 838 1 2020-02-15T06:59:31Z +3827 838 2 2020-02-15T06:59:31Z +3828 838 2 2020-02-15T06:59:31Z +3829 838 2 2020-02-15T06:59:31Z +3830 838 2 2020-02-15T06:59:31Z +3831 839 2 2020-02-15T06:59:31Z +3832 839 2 2020-02-15T06:59:31Z +3833 840 1 2020-02-15T06:59:31Z +3834 840 1 2020-02-15T06:59:31Z +3835 840 1 2020-02-15T06:59:31Z +3836 840 1 2020-02-15T06:59:31Z +3837 841 1 2020-02-15T06:59:31Z +3838 841 1 2020-02-15T06:59:31Z +3839 841 1 2020-02-15T06:59:31Z +3840 841 2 2020-02-15T06:59:31Z +3841 841 2 2020-02-15T06:59:31Z +3842 841 2 2020-02-15T06:59:31Z +3843 841 2 2020-02-15T06:59:31Z +3844 842 1 2020-02-15T06:59:31Z +3845 842 1 2020-02-15T06:59:31Z +3846 842 2 2020-02-15T06:59:31Z +3847 842 2 2020-02-15T06:59:31Z +3848 843 1 2020-02-15T06:59:31Z +3849 843 1 2020-02-15T06:59:31Z +3850 843 1 2020-02-15T06:59:31Z +3851 843 1 2020-02-15T06:59:31Z +3852 843 2 2020-02-15T06:59:31Z +3853 843 2 2020-02-15T06:59:31Z +3854 843 2 2020-02-15T06:59:31Z +3855 844 1 2020-02-15T06:59:31Z +3856 844 1 2020-02-15T06:59:31Z +3857 844 2 2020-02-15T06:59:31Z +3858 844 2 2020-02-15T06:59:31Z +3859 845 1 2020-02-15T06:59:31Z +3860 845 1 2020-02-15T06:59:31Z +3861 845 1 2020-02-15T06:59:31Z +3862 845 1 2020-02-15T06:59:31Z +3863 845 2 2020-02-15T06:59:31Z +3864 845 2 2020-02-15T06:59:31Z +3865 845 2 2020-02-15T06:59:31Z +3866 846 1 2020-02-15T06:59:31Z +3867 846 1 2020-02-15T06:59:31Z +3868 846 1 2020-02-15T06:59:31Z +3869 846 1 2020-02-15T06:59:31Z +3870 846 2 2020-02-15T06:59:31Z +3871 846 2 2020-02-15T06:59:31Z +3872 846 2 2020-02-15T06:59:31Z +3873 846 2 2020-02-15T06:59:31Z +3874 847 2 2020-02-15T06:59:31Z +3875 847 2 2020-02-15T06:59:31Z +3876 847 2 2020-02-15T06:59:31Z +3877 847 2 2020-02-15T06:59:31Z +3878 848 1 2020-02-15T06:59:31Z +3879 848 1 2020-02-15T06:59:31Z +3880 848 1 2020-02-15T06:59:31Z +3881 849 1 2020-02-15T06:59:31Z +3882 849 1 2020-02-15T06:59:31Z +3883 849 1 2020-02-15T06:59:31Z +3884 849 1 2020-02-15T06:59:31Z +3885 849 2 2020-02-15T06:59:31Z +3886 849 2 2020-02-15T06:59:31Z +3887 849 2 2020-02-15T06:59:31Z +3888 849 2 2020-02-15T06:59:31Z +3889 850 1 2020-02-15T06:59:31Z +3890 850 1 2020-02-15T06:59:31Z +3891 850 1 2020-02-15T06:59:31Z +3892 850 2 2020-02-15T06:59:31Z +3893 850 2 2020-02-15T06:59:31Z +3894 850 2 2020-02-15T06:59:31Z +3895 850 2 2020-02-15T06:59:31Z +3896 851 1 2020-02-15T06:59:31Z +3897 851 1 2020-02-15T06:59:31Z +3898 851 1 2020-02-15T06:59:31Z +3899 851 2 2020-02-15T06:59:31Z +3900 851 2 2020-02-15T06:59:31Z +3901 851 2 2020-02-15T06:59:31Z +3902 852 1 2020-02-15T06:59:31Z +3903 852 1 2020-02-15T06:59:31Z +3904 852 1 2020-02-15T06:59:31Z +3905 852 1 2020-02-15T06:59:31Z +3906 852 2 2020-02-15T06:59:31Z +3907 852 2 2020-02-15T06:59:31Z +3908 852 2 2020-02-15T06:59:31Z +3909 853 1 2020-02-15T06:59:31Z +3910 853 1 2020-02-15T06:59:31Z +3911 853 1 2020-02-15T06:59:31Z +3912 854 2 2020-02-15T06:59:31Z +3913 854 2 2020-02-15T06:59:31Z +3914 854 2 2020-02-15T06:59:31Z +3915 854 2 2020-02-15T06:59:31Z +3916 855 1 2020-02-15T06:59:31Z +3917 855 1 2020-02-15T06:59:31Z +3918 855 2 2020-02-15T06:59:31Z +3919 855 2 2020-02-15T06:59:31Z +3920 856 1 2020-02-15T06:59:31Z +3921 856 1 2020-02-15T06:59:31Z +3922 856 1 2020-02-15T06:59:31Z +3923 856 1 2020-02-15T06:59:31Z +3924 856 2 2020-02-15T06:59:31Z +3925 856 2 2020-02-15T06:59:31Z +3926 856 2 2020-02-15T06:59:31Z +3927 856 2 2020-02-15T06:59:31Z +3928 857 1 2020-02-15T06:59:31Z +3929 857 1 2020-02-15T06:59:31Z +3930 857 1 2020-02-15T06:59:31Z +3931 857 2 2020-02-15T06:59:31Z +3932 857 2 2020-02-15T06:59:31Z +3933 857 2 2020-02-15T06:59:31Z +3934 857 2 2020-02-15T06:59:31Z +3935 858 2 2020-02-15T06:59:31Z +3936 858 2 2020-02-15T06:59:31Z +3937 858 2 2020-02-15T06:59:31Z +3938 858 2 2020-02-15T06:59:31Z +3939 859 1 2020-02-15T06:59:31Z +3940 859 1 2020-02-15T06:59:31Z +3941 859 1 2020-02-15T06:59:31Z +3942 859 2 2020-02-15T06:59:31Z +3943 859 2 2020-02-15T06:59:31Z +3944 859 2 2020-02-15T06:59:31Z +3945 861 1 2020-02-15T06:59:31Z +3946 861 1 2020-02-15T06:59:31Z +3947 861 1 2020-02-15T06:59:31Z +3948 861 2 2020-02-15T06:59:31Z +3949 861 2 2020-02-15T06:59:31Z +3950 861 2 2020-02-15T06:59:31Z +3951 862 1 2020-02-15T06:59:31Z +3952 862 1 2020-02-15T06:59:31Z +3953 862 1 2020-02-15T06:59:31Z +3954 862 2 2020-02-15T06:59:31Z +3955 862 2 2020-02-15T06:59:31Z +3956 863 1 2020-02-15T06:59:31Z +3957 863 1 2020-02-15T06:59:31Z +3958 863 1 2020-02-15T06:59:31Z +3959 863 1 2020-02-15T06:59:31Z +3960 863 2 2020-02-15T06:59:31Z +3961 863 2 2020-02-15T06:59:31Z +3962 863 2 2020-02-15T06:59:31Z +3963 864 1 2020-02-15T06:59:31Z +3964 864 1 2020-02-15T06:59:31Z +3965 864 1 2020-02-15T06:59:31Z +3966 864 1 2020-02-15T06:59:31Z +3967 864 2 2020-02-15T06:59:31Z +3968 864 2 2020-02-15T06:59:31Z +3969 865 1 2020-02-15T06:59:31Z +3970 865 1 2020-02-15T06:59:31Z +3971 865 1 2020-02-15T06:59:31Z +3972 865 1 2020-02-15T06:59:31Z +3973 865 2 2020-02-15T06:59:31Z +3974 865 2 2020-02-15T06:59:31Z +3975 866 2 2020-02-15T06:59:31Z +3976 866 2 2020-02-15T06:59:31Z +3977 867 1 2020-02-15T06:59:31Z +3978 867 1 2020-02-15T06:59:31Z +3979 867 1 2020-02-15T06:59:31Z +3980 867 1 2020-02-15T06:59:31Z +3981 868 1 2020-02-15T06:59:31Z +3982 868 1 2020-02-15T06:59:31Z +3983 868 1 2020-02-15T06:59:31Z +3984 869 1 2020-02-15T06:59:31Z +3985 869 1 2020-02-15T06:59:31Z +3986 869 1 2020-02-15T06:59:31Z +3987 869 1 2020-02-15T06:59:31Z +3988 869 2 2020-02-15T06:59:31Z +3989 869 2 2020-02-15T06:59:31Z +3990 869 2 2020-02-15T06:59:31Z +3991 870 1 2020-02-15T06:59:31Z +3992 870 1 2020-02-15T06:59:31Z +3993 870 1 2020-02-15T06:59:31Z +3994 870 1 2020-02-15T06:59:31Z +3995 870 2 2020-02-15T06:59:31Z +3996 870 2 2020-02-15T06:59:31Z +3997 870 2 2020-02-15T06:59:31Z +3998 870 2 2020-02-15T06:59:31Z +3999 871 1 2020-02-15T06:59:31Z +4000 871 1 2020-02-15T06:59:31Z +4001 871 2 2020-02-15T06:59:31Z +4002 871 2 2020-02-15T06:59:31Z +4003 871 2 2020-02-15T06:59:31Z +4004 872 2 2020-02-15T06:59:31Z +4005 872 2 2020-02-15T06:59:31Z +4006 872 2 2020-02-15T06:59:31Z +4007 873 1 2020-02-15T06:59:31Z +4008 873 1 2020-02-15T06:59:31Z +4009 873 1 2020-02-15T06:59:31Z +4010 873 1 2020-02-15T06:59:31Z +4011 873 2 2020-02-15T06:59:31Z +4012 873 2 2020-02-15T06:59:31Z +4013 873 2 2020-02-15T06:59:31Z +4014 873 2 2020-02-15T06:59:31Z +4015 875 1 2020-02-15T06:59:31Z +4016 875 1 2020-02-15T06:59:31Z +4017 875 1 2020-02-15T06:59:31Z +4018 875 2 2020-02-15T06:59:31Z +4019 875 2 2020-02-15T06:59:31Z +4020 875 2 2020-02-15T06:59:31Z +4021 875 2 2020-02-15T06:59:31Z +4022 876 1 2020-02-15T06:59:31Z +4023 876 1 2020-02-15T06:59:31Z +4024 877 1 2020-02-15T06:59:31Z +4025 877 1 2020-02-15T06:59:31Z +4026 877 1 2020-02-15T06:59:31Z +4027 877 2 2020-02-15T06:59:31Z +4028 877 2 2020-02-15T06:59:31Z +4029 878 2 2020-02-15T06:59:31Z +4030 878 2 2020-02-15T06:59:31Z +4031 878 2 2020-02-15T06:59:31Z +4032 878 2 2020-02-15T06:59:31Z +4033 879 1 2020-02-15T06:59:31Z +4034 879 1 2020-02-15T06:59:31Z +4035 879 1 2020-02-15T06:59:31Z +4036 879 1 2020-02-15T06:59:31Z +4037 879 2 2020-02-15T06:59:31Z +4038 879 2 2020-02-15T06:59:31Z +4039 879 2 2020-02-15T06:59:31Z +4040 880 1 2020-02-15T06:59:31Z +4041 880 1 2020-02-15T06:59:31Z +4042 880 1 2020-02-15T06:59:31Z +4043 880 1 2020-02-15T06:59:31Z +4044 880 2 2020-02-15T06:59:31Z +4045 880 2 2020-02-15T06:59:31Z +4046 880 2 2020-02-15T06:59:31Z +4047 880 2 2020-02-15T06:59:31Z +4048 881 2 2020-02-15T06:59:31Z +4049 881 2 2020-02-15T06:59:31Z +4050 881 2 2020-02-15T06:59:31Z +4051 881 2 2020-02-15T06:59:31Z +4052 882 1 2020-02-15T06:59:31Z +4053 882 1 2020-02-15T06:59:31Z +4054 882 1 2020-02-15T06:59:31Z +4055 882 1 2020-02-15T06:59:31Z +4056 883 2 2020-02-15T06:59:31Z +4057 883 2 2020-02-15T06:59:32Z +4058 884 2 2020-02-15T06:59:32Z +4059 884 2 2020-02-15T06:59:32Z +4060 884 2 2020-02-15T06:59:32Z +4061 885 1 2020-02-15T06:59:32Z +4062 885 1 2020-02-15T06:59:32Z +4063 886 1 2020-02-15T06:59:32Z +4064 886 1 2020-02-15T06:59:32Z +4065 886 1 2020-02-15T06:59:32Z +4066 886 1 2020-02-15T06:59:32Z +4067 887 1 2020-02-15T06:59:32Z +4068 887 1 2020-02-15T06:59:32Z +4069 887 1 2020-02-15T06:59:32Z +4070 887 1 2020-02-15T06:59:32Z +4071 887 2 2020-02-15T06:59:32Z +4072 887 2 2020-02-15T06:59:32Z +4073 888 1 2020-02-15T06:59:32Z +4074 888 1 2020-02-15T06:59:32Z +4075 888 1 2020-02-15T06:59:32Z +4076 888 1 2020-02-15T06:59:32Z +4077 889 1 2020-02-15T06:59:32Z +4078 889 1 2020-02-15T06:59:32Z +4079 889 1 2020-02-15T06:59:32Z +4080 890 1 2020-02-15T06:59:32Z +4081 890 1 2020-02-15T06:59:32Z +4082 890 1 2020-02-15T06:59:32Z +4083 890 2 2020-02-15T06:59:32Z +4084 890 2 2020-02-15T06:59:32Z +4085 890 2 2020-02-15T06:59:32Z +4086 890 2 2020-02-15T06:59:32Z +4087 891 1 2020-02-15T06:59:32Z +4088 891 1 2020-02-15T06:59:32Z +4089 891 1 2020-02-15T06:59:32Z +4090 891 2 2020-02-15T06:59:32Z +4091 891 2 2020-02-15T06:59:32Z +4092 891 2 2020-02-15T06:59:32Z +4093 891 2 2020-02-15T06:59:32Z +4094 892 1 2020-02-15T06:59:32Z +4095 892 1 2020-02-15T06:59:32Z +4096 892 1 2020-02-15T06:59:32Z +4097 892 2 2020-02-15T06:59:32Z +4098 892 2 2020-02-15T06:59:32Z +4099 892 2 2020-02-15T06:59:32Z +4100 892 2 2020-02-15T06:59:32Z +4101 893 1 2020-02-15T06:59:32Z +4102 893 1 2020-02-15T06:59:32Z +4103 893 1 2020-02-15T06:59:32Z +4104 893 1 2020-02-15T06:59:32Z +4105 893 2 2020-02-15T06:59:32Z +4106 893 2 2020-02-15T06:59:32Z +4107 893 2 2020-02-15T06:59:32Z +4108 893 2 2020-02-15T06:59:32Z +4109 894 1 2020-02-15T06:59:32Z +4110 894 1 2020-02-15T06:59:32Z +4111 894 1 2020-02-15T06:59:32Z +4112 894 2 2020-02-15T06:59:32Z +4113 894 2 2020-02-15T06:59:32Z +4114 895 1 2020-02-15T06:59:32Z +4115 895 1 2020-02-15T06:59:32Z +4116 895 1 2020-02-15T06:59:32Z +4117 895 1 2020-02-15T06:59:32Z +4118 895 2 2020-02-15T06:59:32Z +4119 895 2 2020-02-15T06:59:32Z +4120 895 2 2020-02-15T06:59:32Z +4121 896 1 2020-02-15T06:59:32Z +4122 896 1 2020-02-15T06:59:32Z +4123 896 2 2020-02-15T06:59:32Z +4124 896 2 2020-02-15T06:59:32Z +4125 897 1 2020-02-15T06:59:32Z +4126 897 1 2020-02-15T06:59:32Z +4127 897 1 2020-02-15T06:59:32Z +4128 897 1 2020-02-15T06:59:32Z +4129 897 2 2020-02-15T06:59:32Z +4130 897 2 2020-02-15T06:59:32Z +4131 897 2 2020-02-15T06:59:32Z +4132 897 2 2020-02-15T06:59:32Z +4133 898 1 2020-02-15T06:59:32Z +4134 898 1 2020-02-15T06:59:32Z +4135 898 1 2020-02-15T06:59:32Z +4136 898 2 2020-02-15T06:59:32Z +4137 898 2 2020-02-15T06:59:32Z +4138 899 1 2020-02-15T06:59:32Z +4139 899 1 2020-02-15T06:59:32Z +4140 899 1 2020-02-15T06:59:32Z +4141 900 1 2020-02-15T06:59:32Z +4142 900 1 2020-02-15T06:59:32Z +4143 900 2 2020-02-15T06:59:32Z +4144 900 2 2020-02-15T06:59:32Z +4145 901 1 2020-02-15T06:59:32Z +4146 901 1 2020-02-15T06:59:32Z +4147 901 1 2020-02-15T06:59:32Z +4148 901 1 2020-02-15T06:59:32Z +4149 901 2 2020-02-15T06:59:32Z +4150 901 2 2020-02-15T06:59:32Z +4151 901 2 2020-02-15T06:59:32Z +4152 902 1 2020-02-15T06:59:32Z +4153 902 1 2020-02-15T06:59:32Z +4154 902 1 2020-02-15T06:59:32Z +4155 902 1 2020-02-15T06:59:32Z +4156 902 2 2020-02-15T06:59:32Z +4157 902 2 2020-02-15T06:59:32Z +4158 902 2 2020-02-15T06:59:32Z +4159 903 2 2020-02-15T06:59:32Z +4160 903 2 2020-02-15T06:59:32Z +4161 904 1 2020-02-15T06:59:32Z +4162 904 1 2020-02-15T06:59:32Z +4163 905 1 2020-02-15T06:59:32Z +4164 905 1 2020-02-15T06:59:32Z +4165 905 1 2020-02-15T06:59:32Z +4166 906 1 2020-02-15T06:59:32Z +4167 906 1 2020-02-15T06:59:32Z +4168 906 2 2020-02-15T06:59:32Z +4169 906 2 2020-02-15T06:59:32Z +4170 906 2 2020-02-15T06:59:32Z +4171 907 1 2020-02-15T06:59:32Z +4172 907 1 2020-02-15T06:59:32Z +4173 907 1 2020-02-15T06:59:32Z +4174 907 1 2020-02-15T06:59:32Z +4175 908 1 2020-02-15T06:59:32Z +4176 908 1 2020-02-15T06:59:32Z +4177 908 2 2020-02-15T06:59:32Z +4178 908 2 2020-02-15T06:59:32Z +4179 910 2 2020-02-15T06:59:32Z +4180 910 2 2020-02-15T06:59:32Z +4181 911 1 2020-02-15T06:59:32Z +4182 911 1 2020-02-15T06:59:32Z +4183 911 1 2020-02-15T06:59:32Z +4184 911 1 2020-02-15T06:59:32Z +4185 911 2 2020-02-15T06:59:32Z +4186 911 2 2020-02-15T06:59:32Z +4187 911 2 2020-02-15T06:59:32Z +4188 911 2 2020-02-15T06:59:32Z +4189 912 1 2020-02-15T06:59:32Z +4190 912 1 2020-02-15T06:59:32Z +4191 912 1 2020-02-15T06:59:32Z +4192 912 2 2020-02-15T06:59:32Z +4193 912 2 2020-02-15T06:59:32Z +4194 912 2 2020-02-15T06:59:32Z +4195 913 1 2020-02-15T06:59:32Z +4196 913 1 2020-02-15T06:59:32Z +4197 913 1 2020-02-15T06:59:32Z +4198 913 1 2020-02-15T06:59:32Z +4199 913 2 2020-02-15T06:59:32Z +4200 913 2 2020-02-15T06:59:32Z +4201 914 1 2020-02-15T06:59:32Z +4202 914 1 2020-02-15T06:59:32Z +4203 914 2 2020-02-15T06:59:32Z +4204 914 2 2020-02-15T06:59:32Z +4205 914 2 2020-02-15T06:59:32Z +4206 914 2 2020-02-15T06:59:32Z +4207 915 1 2020-02-15T06:59:32Z +4208 915 1 2020-02-15T06:59:32Z +4209 915 1 2020-02-15T06:59:32Z +4210 915 1 2020-02-15T06:59:32Z +4211 915 2 2020-02-15T06:59:32Z +4212 915 2 2020-02-15T06:59:32Z +4213 916 1 2020-02-15T06:59:32Z +4214 916 1 2020-02-15T06:59:32Z +4215 916 2 2020-02-15T06:59:32Z +4216 916 2 2020-02-15T06:59:32Z +4217 917 1 2020-02-15T06:59:32Z +4218 917 1 2020-02-15T06:59:32Z +4219 917 1 2020-02-15T06:59:32Z +4220 917 2 2020-02-15T06:59:32Z +4221 917 2 2020-02-15T06:59:32Z +4222 918 2 2020-02-15T06:59:32Z +4223 918 2 2020-02-15T06:59:32Z +4224 918 2 2020-02-15T06:59:32Z +4225 918 2 2020-02-15T06:59:32Z +4226 919 1 2020-02-15T06:59:32Z +4227 919 1 2020-02-15T06:59:32Z +4228 919 1 2020-02-15T06:59:32Z +4229 919 1 2020-02-15T06:59:32Z +4230 920 1 2020-02-15T06:59:32Z +4231 920 1 2020-02-15T06:59:32Z +4232 920 1 2020-02-15T06:59:32Z +4233 920 2 2020-02-15T06:59:32Z +4234 920 2 2020-02-15T06:59:32Z +4235 921 1 2020-02-15T06:59:32Z +4236 921 1 2020-02-15T06:59:32Z +4237 921 2 2020-02-15T06:59:32Z +4238 921 2 2020-02-15T06:59:32Z +4239 922 1 2020-02-15T06:59:32Z +4240 922 1 2020-02-15T06:59:32Z +4241 922 1 2020-02-15T06:59:32Z +4242 922 2 2020-02-15T06:59:32Z +4243 922 2 2020-02-15T06:59:32Z +4244 922 2 2020-02-15T06:59:32Z +4245 922 2 2020-02-15T06:59:32Z +4246 923 2 2020-02-15T06:59:32Z +4247 923 2 2020-02-15T06:59:32Z +4248 923 2 2020-02-15T06:59:32Z +4249 924 1 2020-02-15T06:59:32Z +4250 924 1 2020-02-15T06:59:32Z +4251 924 2 2020-02-15T06:59:32Z +4252 924 2 2020-02-15T06:59:32Z +4253 924 2 2020-02-15T06:59:32Z +4254 925 1 2020-02-15T06:59:32Z +4255 925 1 2020-02-15T06:59:32Z +4256 925 1 2020-02-15T06:59:32Z +4257 925 2 2020-02-15T06:59:32Z +4258 925 2 2020-02-15T06:59:32Z +4259 926 2 2020-02-15T06:59:32Z +4260 926 2 2020-02-15T06:59:32Z +4261 927 1 2020-02-15T06:59:32Z +4262 927 1 2020-02-15T06:59:32Z +4263 927 1 2020-02-15T06:59:32Z +4264 927 1 2020-02-15T06:59:32Z +4265 928 1 2020-02-15T06:59:32Z +4266 928 1 2020-02-15T06:59:32Z +4267 928 1 2020-02-15T06:59:32Z +4268 929 1 2020-02-15T06:59:32Z +4269 929 1 2020-02-15T06:59:32Z +4270 929 1 2020-02-15T06:59:32Z +4271 929 1 2020-02-15T06:59:32Z +4272 930 1 2020-02-15T06:59:32Z +4273 930 1 2020-02-15T06:59:32Z +4274 930 1 2020-02-15T06:59:32Z +4275 930 2 2020-02-15T06:59:32Z +4276 930 2 2020-02-15T06:59:32Z +4277 930 2 2020-02-15T06:59:32Z +4278 931 2 2020-02-15T06:59:32Z +4279 931 2 2020-02-15T06:59:32Z +4280 931 2 2020-02-15T06:59:32Z +4281 932 1 2020-02-15T06:59:32Z +4282 932 1 2020-02-15T06:59:32Z +4283 932 2 2020-02-15T06:59:32Z +4284 932 2 2020-02-15T06:59:32Z +4285 933 1 2020-02-15T06:59:32Z +4286 933 1 2020-02-15T06:59:32Z +4287 933 1 2020-02-15T06:59:32Z +4288 934 2 2020-02-15T06:59:32Z +4289 934 2 2020-02-15T06:59:32Z +4290 934 2 2020-02-15T06:59:32Z +4291 935 2 2020-02-15T06:59:32Z +4292 935 2 2020-02-15T06:59:32Z +4293 936 1 2020-02-15T06:59:32Z +4294 936 1 2020-02-15T06:59:32Z +4295 936 2 2020-02-15T06:59:32Z +4296 936 2 2020-02-15T06:59:32Z +4297 936 2 2020-02-15T06:59:32Z +4298 936 2 2020-02-15T06:59:32Z +4299 937 1 2020-02-15T06:59:32Z +4300 937 1 2020-02-15T06:59:32Z +4301 937 2 2020-02-15T06:59:32Z +4302 937 2 2020-02-15T06:59:32Z +4303 937 2 2020-02-15T06:59:32Z +4304 938 1 2020-02-15T06:59:32Z +4305 938 1 2020-02-15T06:59:32Z +4306 938 1 2020-02-15T06:59:32Z +4307 938 1 2020-02-15T06:59:32Z +4308 938 2 2020-02-15T06:59:32Z +4309 938 2 2020-02-15T06:59:32Z +4310 939 2 2020-02-15T06:59:32Z +4311 939 2 2020-02-15T06:59:32Z +4312 939 2 2020-02-15T06:59:32Z +4313 939 2 2020-02-15T06:59:32Z +4314 940 1 2020-02-15T06:59:32Z +4315 940 1 2020-02-15T06:59:32Z +4316 940 1 2020-02-15T06:59:32Z +4317 941 1 2020-02-15T06:59:32Z +4318 941 1 2020-02-15T06:59:32Z +4319 941 1 2020-02-15T06:59:32Z +4320 941 1 2020-02-15T06:59:32Z +4321 941 2 2020-02-15T06:59:32Z +4322 941 2 2020-02-15T06:59:32Z +4323 941 2 2020-02-15T06:59:32Z +4324 942 1 2020-02-15T06:59:32Z +4325 942 1 2020-02-15T06:59:32Z +4326 942 2 2020-02-15T06:59:32Z +4327 942 2 2020-02-15T06:59:32Z +4328 944 1 2020-02-15T06:59:32Z +4329 944 1 2020-02-15T06:59:32Z +4330 944 2 2020-02-15T06:59:32Z +4331 944 2 2020-02-15T06:59:32Z +4332 944 2 2020-02-15T06:59:32Z +4333 945 1 2020-02-15T06:59:32Z +4334 945 1 2020-02-15T06:59:32Z +4335 945 1 2020-02-15T06:59:32Z +4336 945 1 2020-02-15T06:59:32Z +4337 945 2 2020-02-15T06:59:32Z +4338 945 2 2020-02-15T06:59:32Z +4339 945 2 2020-02-15T06:59:32Z +4340 945 2 2020-02-15T06:59:32Z +4341 946 2 2020-02-15T06:59:32Z +4342 946 2 2020-02-15T06:59:32Z +4343 946 2 2020-02-15T06:59:32Z +4344 946 2 2020-02-15T06:59:32Z +4345 947 1 2020-02-15T06:59:32Z +4346 947 1 2020-02-15T06:59:32Z +4347 948 1 2020-02-15T06:59:32Z +4348 948 1 2020-02-15T06:59:32Z +4349 948 2 2020-02-15T06:59:32Z +4350 948 2 2020-02-15T06:59:32Z +4351 948 2 2020-02-15T06:59:32Z +4352 948 2 2020-02-15T06:59:32Z +4353 949 1 2020-02-15T06:59:32Z +4354 949 1 2020-02-15T06:59:32Z +4355 949 1 2020-02-15T06:59:32Z +4356 949 1 2020-02-15T06:59:32Z +4357 949 2 2020-02-15T06:59:32Z +4358 949 2 2020-02-15T06:59:32Z +4359 951 1 2020-02-15T06:59:32Z +4360 951 1 2020-02-15T06:59:32Z +4361 951 1 2020-02-15T06:59:32Z +4362 951 2 2020-02-15T06:59:32Z +4363 951 2 2020-02-15T06:59:32Z +4364 951 2 2020-02-15T06:59:32Z +4365 951 2 2020-02-15T06:59:32Z +4366 952 1 2020-02-15T06:59:32Z +4367 952 1 2020-02-15T06:59:32Z +4368 952 1 2020-02-15T06:59:32Z +4369 953 1 2020-02-15T06:59:32Z +4370 953 1 2020-02-15T06:59:32Z +4371 953 1 2020-02-15T06:59:32Z +4372 953 1 2020-02-15T06:59:32Z +4373 953 2 2020-02-15T06:59:32Z +4374 953 2 2020-02-15T06:59:32Z +4375 956 1 2020-02-15T06:59:32Z +4376 956 1 2020-02-15T06:59:32Z +4377 956 1 2020-02-15T06:59:32Z +4378 956 1 2020-02-15T06:59:32Z +4379 957 1 2020-02-15T06:59:32Z +4380 957 1 2020-02-15T06:59:32Z +4381 957 1 2020-02-15T06:59:32Z +4382 957 2 2020-02-15T06:59:32Z +4383 957 2 2020-02-15T06:59:32Z +4384 958 1 2020-02-15T06:59:32Z +4385 958 1 2020-02-15T06:59:32Z +4386 958 1 2020-02-15T06:59:32Z +4387 958 2 2020-02-15T06:59:32Z +4388 958 2 2020-02-15T06:59:32Z +4389 958 2 2020-02-15T06:59:32Z +4390 959 1 2020-02-15T06:59:32Z +4391 959 1 2020-02-15T06:59:32Z +4392 960 2 2020-02-15T06:59:32Z +4393 960 2 2020-02-15T06:59:32Z +4394 960 2 2020-02-15T06:59:32Z +4395 961 1 2020-02-15T06:59:32Z +4396 961 1 2020-02-15T06:59:32Z +4397 961 1 2020-02-15T06:59:32Z +4398 961 2 2020-02-15T06:59:32Z +4399 961 2 2020-02-15T06:59:32Z +4400 962 1 2020-02-15T06:59:32Z +4401 962 1 2020-02-15T06:59:32Z +4402 962 1 2020-02-15T06:59:32Z +4403 962 1 2020-02-15T06:59:32Z +4404 963 1 2020-02-15T06:59:32Z +4405 963 1 2020-02-15T06:59:32Z +4406 963 2 2020-02-15T06:59:32Z +4407 963 2 2020-02-15T06:59:32Z +4408 963 2 2020-02-15T06:59:32Z +4409 964 1 2020-02-15T06:59:32Z +4410 964 1 2020-02-15T06:59:32Z +4411 964 1 2020-02-15T06:59:32Z +4412 964 2 2020-02-15T06:59:32Z +4413 964 2 2020-02-15T06:59:32Z +4414 965 1 2020-02-15T06:59:32Z +4415 965 1 2020-02-15T06:59:32Z +4416 966 1 2020-02-15T06:59:32Z +4417 966 1 2020-02-15T06:59:32Z +4418 966 2 2020-02-15T06:59:32Z +4419 966 2 2020-02-15T06:59:32Z +4420 966 2 2020-02-15T06:59:32Z +4421 966 2 2020-02-15T06:59:32Z +4422 967 1 2020-02-15T06:59:32Z +4423 967 1 2020-02-15T06:59:32Z +4424 967 1 2020-02-15T06:59:32Z +4425 967 2 2020-02-15T06:59:32Z +4426 967 2 2020-02-15T06:59:32Z +4427 968 1 2020-02-15T06:59:32Z +4428 968 1 2020-02-15T06:59:32Z +4429 968 1 2020-02-15T06:59:32Z +4430 969 1 2020-02-15T06:59:32Z +4431 969 1 2020-02-15T06:59:32Z +4432 969 1 2020-02-15T06:59:32Z +4433 969 1 2020-02-15T06:59:32Z +4434 970 1 2020-02-15T06:59:32Z +4435 970 1 2020-02-15T06:59:32Z +4436 970 1 2020-02-15T06:59:32Z +4437 970 2 2020-02-15T06:59:32Z +4438 970 2 2020-02-15T06:59:32Z +4439 970 2 2020-02-15T06:59:32Z +4440 970 2 2020-02-15T06:59:32Z +4441 971 1 2020-02-15T06:59:32Z +4442 971 1 2020-02-15T06:59:32Z +4443 971 1 2020-02-15T06:59:32Z +4444 971 1 2020-02-15T06:59:32Z +4445 972 1 2020-02-15T06:59:32Z +4446 972 1 2020-02-15T06:59:32Z +4447 972 1 2020-02-15T06:59:32Z +4448 972 2 2020-02-15T06:59:32Z +4449 972 2 2020-02-15T06:59:32Z +4450 972 2 2020-02-15T06:59:32Z +4451 973 1 2020-02-15T06:59:32Z +4452 973 1 2020-02-15T06:59:32Z +4453 973 1 2020-02-15T06:59:32Z +4454 973 1 2020-02-15T06:59:32Z +4455 973 2 2020-02-15T06:59:32Z +4456 973 2 2020-02-15T06:59:32Z +4457 973 2 2020-02-15T06:59:32Z +4458 973 2 2020-02-15T06:59:32Z +4459 974 1 2020-02-15T06:59:32Z +4460 974 1 2020-02-15T06:59:32Z +4461 975 1 2020-02-15T06:59:32Z +4462 975 1 2020-02-15T06:59:32Z +4463 975 2 2020-02-15T06:59:32Z +4464 975 2 2020-02-15T06:59:32Z +4465 975 2 2020-02-15T06:59:32Z +4466 976 1 2020-02-15T06:59:32Z +4467 976 1 2020-02-15T06:59:32Z +4468 976 2 2020-02-15T06:59:32Z +4469 976 2 2020-02-15T06:59:32Z +4470 976 2 2020-02-15T06:59:32Z +4471 976 2 2020-02-15T06:59:32Z +4472 977 2 2020-02-15T06:59:32Z +4473 977 2 2020-02-15T06:59:32Z +4474 977 2 2020-02-15T06:59:32Z +4475 978 1 2020-02-15T06:59:32Z +4476 978 1 2020-02-15T06:59:32Z +4477 978 1 2020-02-15T06:59:32Z +4478 979 1 2020-02-15T06:59:32Z +4479 979 1 2020-02-15T06:59:32Z +4480 979 1 2020-02-15T06:59:32Z +4481 979 1 2020-02-15T06:59:32Z +4482 979 2 2020-02-15T06:59:32Z +4483 979 2 2020-02-15T06:59:32Z +4484 979 2 2020-02-15T06:59:32Z +4485 980 1 2020-02-15T06:59:32Z +4486 980 1 2020-02-15T06:59:32Z +4487 980 1 2020-02-15T06:59:32Z +4488 980 2 2020-02-15T06:59:32Z +4489 980 2 2020-02-15T06:59:32Z +4490 981 1 2020-02-15T06:59:32Z +4491 981 1 2020-02-15T06:59:32Z +4492 981 1 2020-02-15T06:59:32Z +4493 981 2 2020-02-15T06:59:32Z +4494 981 2 2020-02-15T06:59:32Z +4495 981 2 2020-02-15T06:59:32Z +4496 982 1 2020-02-15T06:59:32Z +4497 982 1 2020-02-15T06:59:32Z +4498 982 1 2020-02-15T06:59:32Z +4499 982 2 2020-02-15T06:59:32Z +4500 982 2 2020-02-15T06:59:32Z +4501 982 2 2020-02-15T06:59:32Z +4502 982 2 2020-02-15T06:59:32Z +4503 983 1 2020-02-15T06:59:32Z +4504 983 1 2020-02-15T06:59:32Z +4505 983 1 2020-02-15T06:59:32Z +4506 984 1 2020-02-15T06:59:32Z +4507 984 1 2020-02-15T06:59:32Z +4508 985 1 2020-02-15T06:59:32Z +4509 985 1 2020-02-15T06:59:32Z +4510 985 1 2020-02-15T06:59:32Z +4511 985 1 2020-02-15T06:59:32Z +4512 985 2 2020-02-15T06:59:32Z +4513 985 2 2020-02-15T06:59:32Z +4514 985 2 2020-02-15T06:59:32Z +4515 986 1 2020-02-15T06:59:32Z +4516 986 1 2020-02-15T06:59:32Z +4517 986 1 2020-02-15T06:59:32Z +4518 986 1 2020-02-15T06:59:32Z +4519 986 2 2020-02-15T06:59:32Z +4520 986 2 2020-02-15T06:59:32Z +4521 987 1 2020-02-15T06:59:32Z +4522 987 1 2020-02-15T06:59:32Z +4523 987 2 2020-02-15T06:59:32Z +4524 987 2 2020-02-15T06:59:32Z +4525 988 1 2020-02-15T06:59:32Z +4526 988 1 2020-02-15T06:59:32Z +4527 988 1 2020-02-15T06:59:32Z +4528 988 2 2020-02-15T06:59:32Z +4529 988 2 2020-02-15T06:59:32Z +4530 989 1 2020-02-15T06:59:32Z +4531 989 1 2020-02-15T06:59:32Z +4532 989 1 2020-02-15T06:59:32Z +4533 989 1 2020-02-15T06:59:32Z +4534 989 2 2020-02-15T06:59:32Z +4535 989 2 2020-02-15T06:59:32Z +4536 990 2 2020-02-15T06:59:32Z +4537 990 2 2020-02-15T06:59:32Z +4538 991 1 2020-02-15T06:59:32Z +4539 991 1 2020-02-15T06:59:32Z +4540 991 2 2020-02-15T06:59:32Z +4541 991 2 2020-02-15T06:59:32Z +4542 991 2 2020-02-15T06:59:32Z +4543 992 2 2020-02-15T06:59:32Z +4544 992 2 2020-02-15T06:59:32Z +4545 992 2 2020-02-15T06:59:32Z +4546 992 2 2020-02-15T06:59:32Z +4547 993 1 2020-02-15T06:59:32Z +4548 993 1 2020-02-15T06:59:32Z +4549 993 1 2020-02-15T06:59:32Z +4550 993 1 2020-02-15T06:59:32Z +4551 993 2 2020-02-15T06:59:32Z +4552 993 2 2020-02-15T06:59:32Z +4553 993 2 2020-02-15T06:59:32Z +4554 994 1 2020-02-15T06:59:32Z +4555 994 1 2020-02-15T06:59:32Z +4556 994 1 2020-02-15T06:59:32Z +4557 995 1 2020-02-15T06:59:32Z +4558 995 1 2020-02-15T06:59:32Z +4559 995 1 2020-02-15T06:59:32Z +4560 995 1 2020-02-15T06:59:32Z +4561 995 2 2020-02-15T06:59:32Z +4562 995 2 2020-02-15T06:59:32Z +4563 996 1 2020-02-15T06:59:32Z +4564 996 1 2020-02-15T06:59:32Z +4565 997 1 2020-02-15T06:59:32Z +4566 997 1 2020-02-15T06:59:32Z +4567 998 2 2020-02-15T06:59:32Z +4568 998 2 2020-02-15T06:59:32Z +4569 999 1 2020-02-15T06:59:32Z +4570 999 1 2020-02-15T06:59:32Z +4571 999 2 2020-02-15T06:59:32Z +4572 999 2 2020-02-15T06:59:32Z +4573 999 2 2020-02-15T06:59:32Z +4574 1000 1 2020-02-15T06:59:32Z +4575 1000 1 2020-02-15T06:59:32Z +4576 1000 1 2020-02-15T06:59:32Z +4577 1000 1 2020-02-15T06:59:32Z +4578 1000 2 2020-02-15T06:59:32Z +4579 1000 2 2020-02-15T06:59:32Z +4580 1000 2 2020-02-15T06:59:32Z +4581 1000 2 2020-02-15T06:59:32Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/language.tsv b/drivers/csv/testdata/sakila-tsv-noheader/language.tsv new file mode 100644 index 00000000..b3b5bd6d --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/language.tsv @@ -0,0 +1,6 @@ +1 English 2020-02-15T06:59:27Z +2 Italian 2020-02-15T06:59:27Z +3 Japanese 2020-02-15T06:59:27Z +4 Mandarin 2020-02-15T06:59:27Z +5 French 2020-02-15T06:59:27Z +6 German 2020-02-15T06:59:27Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/payment.tsv b/drivers/csv/testdata/sakila-tsv-noheader/payment.tsv new file mode 100644 index 00000000..d40077fe --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/payment.tsv @@ -0,0 +1,16049 @@ +1 1 1 76 2.99 2005-05-25T11:30:37Z 2020-02-15T06:59:47Z +2 1 1 573 0.99 2005-05-28T10:35:23Z 2020-02-15T06:59:47Z +3 1 1 1185 5.99 2005-06-15T00:54:12Z 2020-02-15T06:59:47Z +4 1 2 1422 0.99 2005-06-15T18:02:53Z 2020-02-15T06:59:47Z +5 1 2 1476 9.99 2005-06-15T21:08:46Z 2020-02-15T06:59:47Z +6 1 1 1725 4.99 2005-06-16T15:18:57Z 2020-02-15T06:59:47Z +7 1 1 2308 4.99 2005-06-18T08:41:48Z 2020-02-15T06:59:47Z +8 1 2 2363 0.99 2005-06-18T13:33:59Z 2020-02-15T06:59:47Z +9 1 1 3284 3.99 2005-06-21T06:24:45Z 2020-02-15T06:59:47Z +10 1 2 4526 5.99 2005-07-08T03:17:05Z 2020-02-15T06:59:47Z +11 1 1 4611 5.99 2005-07-08T07:33:56Z 2020-02-15T06:59:47Z +12 1 1 5244 4.99 2005-07-09T13:24:07Z 2020-02-15T06:59:47Z +13 1 1 5326 4.99 2005-07-09T16:38:01Z 2020-02-15T06:59:47Z +14 1 1 6163 7.99 2005-07-11T10:13:46Z 2020-02-15T06:59:47Z +15 1 2 7273 2.99 2005-07-27T11:31:22Z 2020-02-15T06:59:47Z +16 1 1 7841 4.99 2005-07-28T09:04:45Z 2020-02-15T06:59:47Z +17 1 2 8033 4.99 2005-07-28T16:18:23Z 2020-02-15T06:59:47Z +18 1 1 8074 0.99 2005-07-28T17:33:39Z 2020-02-15T06:59:47Z +19 1 2 8116 0.99 2005-07-28T19:20:07Z 2020-02-15T06:59:47Z +20 1 2 8326 2.99 2005-07-29T03:58:49Z 2020-02-15T06:59:47Z +21 1 2 9571 2.99 2005-07-31T02:42:18Z 2020-02-15T06:59:47Z +22 1 2 10437 4.99 2005-08-01T08:51:04Z 2020-02-15T06:59:47Z +23 1 2 11299 3.99 2005-08-02T15:36:52Z 2020-02-15T06:59:47Z +24 1 1 11367 0.99 2005-08-02T18:01:38Z 2020-02-15T06:59:47Z +25 1 2 11824 4.99 2005-08-17T12:37:54Z 2020-02-15T06:59:47Z +26 1 1 12250 0.99 2005-08-18T03:57:29Z 2020-02-15T06:59:47Z +27 1 2 13068 0.99 2005-08-19T09:55:16Z 2020-02-15T06:59:47Z +28 1 2 13176 2.99 2005-08-19T13:56:54Z 2020-02-15T06:59:47Z +29 1 1 14762 0.99 2005-08-21T23:33:57Z 2020-02-15T06:59:47Z +30 1 1 14825 1.99 2005-08-22T01:27:57Z 2020-02-15T06:59:47Z +31 1 2 15298 2.99 2005-08-22T19:41:37Z 2020-02-15T06:59:47Z +32 1 1 15315 5.99 2005-08-22T20:03:46Z 2020-02-15T06:59:47Z +33 2 1 320 4.99 2005-05-27T00:09:24Z 2020-02-15T06:59:47Z +34 2 1 2128 2.99 2005-06-17T20:54:58Z 2020-02-15T06:59:47Z +35 2 1 5636 2.99 2005-07-10T06:31:24Z 2020-02-15T06:59:47Z +36 2 1 5755 6.99 2005-07-10T12:38:56Z 2020-02-15T06:59:47Z +37 2 2 7346 4.99 2005-07-27T14:30:42Z 2020-02-15T06:59:47Z +38 2 1 7376 5.99 2005-07-27T15:23:02Z 2020-02-15T06:59:47Z +39 2 2 7459 5.99 2005-07-27T18:40:20Z 2020-02-15T06:59:47Z +40 2 2 8230 5.99 2005-07-29T00:12:59Z 2020-02-15T06:59:47Z +41 2 1 8598 2.99 2005-07-29T12:56:59Z 2020-02-15T06:59:47Z +42 2 2 8705 5.99 2005-07-29T17:14:29Z 2020-02-15T06:59:47Z +43 2 1 9031 4.99 2005-07-30T06:06:10Z 2020-02-15T06:59:47Z +44 2 2 9236 10.99 2005-07-30T13:47:43Z 2020-02-15T06:59:47Z +45 2 2 9248 0.99 2005-07-30T14:14:11Z 2020-02-15T06:59:47Z +46 2 2 9296 6.99 2005-07-30T16:21:13Z 2020-02-15T06:59:47Z +47 2 2 9465 6.99 2005-07-30T22:39:53Z 2020-02-15T06:59:47Z +48 2 1 10136 2.99 2005-07-31T21:58:56Z 2020-02-15T06:59:47Z +49 2 1 10466 0.99 2005-08-01T09:45:26Z 2020-02-15T06:59:47Z +50 2 1 10918 0.99 2005-08-02T02:10:56Z 2020-02-15T06:59:47Z +51 2 1 11087 5.99 2005-08-02T07:41:41Z 2020-02-15T06:59:47Z +52 2 1 11177 6.99 2005-08-02T10:43:48Z 2020-02-15T06:59:47Z +53 2 2 11256 2.99 2005-08-02T13:44:53Z 2020-02-15T06:59:47Z +54 2 1 11614 2.99 2005-08-17T03:52:18Z 2020-02-15T06:59:47Z +55 2 1 12963 2.99 2005-08-19T06:26:04Z 2020-02-15T06:59:47Z +56 2 1 14475 4.99 2005-08-21T13:24:32Z 2020-02-15T06:59:47Z +57 2 2 14743 5.99 2005-08-21T22:41:56Z 2020-02-15T06:59:47Z +58 2 2 15145 4.99 2005-08-22T13:53:04Z 2020-02-15T06:59:47Z +59 2 2 15907 4.99 2005-08-23T17:39:35Z 2020-02-15T06:59:47Z +60 3 1 435 1.99 2005-05-27T17:17:09Z 2020-02-15T06:59:47Z +61 3 1 830 2.99 2005-05-29T22:43:55Z 2020-02-15T06:59:47Z +62 3 1 1546 8.99 2005-06-16T01:34:05Z 2020-02-15T06:59:47Z +63 3 1 1726 6.99 2005-06-16T15:19:10Z 2020-02-15T06:59:47Z +64 3 2 1911 6.99 2005-06-17T05:15:15Z 2020-02-15T06:59:47Z +65 3 1 2628 2.99 2005-06-19T08:34:53Z 2020-02-15T06:59:47Z +66 3 1 4180 4.99 2005-07-07T10:23:25Z 2020-02-15T06:59:47Z +67 3 1 4725 4.99 2005-07-08T12:47:11Z 2020-02-15T06:59:47Z +68 3 1 7096 5.99 2005-07-27T04:54:42Z 2020-02-15T06:59:47Z +69 3 2 7503 10.99 2005-07-27T20:23:12Z 2020-02-15T06:59:47Z +70 3 2 7703 7.99 2005-07-28T03:59:21Z 2020-02-15T06:59:47Z +71 3 2 7724 6.99 2005-07-28T04:46:30Z 2020-02-15T06:59:47Z +72 3 1 7911 4.99 2005-07-28T11:46:45Z 2020-02-15T06:59:47Z +73 3 2 8086 4.99 2005-07-28T18:17:14Z 2020-02-15T06:59:47Z +74 3 1 8545 2.99 2005-07-29T11:07:04Z 2020-02-15T06:59:47Z +75 3 1 9226 1.99 2005-07-30T13:31:20Z 2020-02-15T06:59:47Z +76 3 2 9443 3.99 2005-07-30T21:45:46Z 2020-02-15T06:59:47Z +77 3 1 9595 2.99 2005-07-31T03:27:58Z 2020-02-15T06:59:47Z +78 3 2 9816 4.99 2005-07-31T11:32:58Z 2020-02-15T06:59:47Z +79 3 2 10597 5.99 2005-08-01T14:19:48Z 2020-02-15T06:59:47Z +80 3 2 12556 4.99 2005-08-18T14:49:55Z 2020-02-15T06:59:47Z +81 3 1 13403 8.99 2005-08-19T22:18:07Z 2020-02-15T06:59:47Z +82 3 2 13610 2.99 2005-08-20T06:14:12Z 2020-02-15T06:59:47Z +83 3 2 14699 8.99 2005-08-21T20:50:48Z 2020-02-15T06:59:47Z +84 3 2 15038 0.99 2005-08-22T09:37:27Z 2020-02-15T06:59:47Z +85 3 1 15619 2.99 2005-08-23T07:10:14Z 2020-02-15T06:59:47Z +86 4 1 1297 4.99 2005-06-15T09:31:28Z 2020-02-15T06:59:47Z +87 4 1 1633 0.99 2005-06-16T08:08:40Z 2020-02-15T06:59:47Z +88 4 2 1707 2.99 2005-06-16T14:01:27Z 2020-02-15T06:59:47Z +89 4 2 1735 0.99 2005-06-16T15:51:52Z 2020-02-15T06:59:47Z +90 4 2 2043 0.99 2005-06-17T14:31:12Z 2020-02-15T06:59:47Z +91 4 1 2642 5.99 2005-06-19T09:39:01Z 2020-02-15T06:59:47Z +92 4 1 7660 2.99 2005-07-28T02:10:10Z 2020-02-15T06:59:47Z +93 4 2 7718 2.99 2005-07-28T04:37:59Z 2020-02-15T06:59:47Z +94 4 1 8741 3.99 2005-07-29T18:44:57Z 2020-02-15T06:59:47Z +95 4 1 9100 5.99 2005-07-30T08:46:09Z 2020-02-15T06:59:47Z +96 4 1 9371 5.99 2005-07-30T18:58:00Z 2020-02-15T06:59:47Z +97 4 2 11069 0.99 2005-08-02T07:09:34Z 2020-02-15T06:59:47Z +98 4 1 11110 2.99 2005-08-02T08:20:31Z 2020-02-15T06:59:47Z +99 4 2 11529 4.99 2005-08-17T00:28:01Z 2020-02-15T06:59:47Z +100 4 1 12151 2.99 2005-08-18T00:14:03Z 2020-02-15T06:59:47Z +101 4 2 12294 8.99 2005-08-18T05:14:44Z 2020-02-15T06:59:47Z +102 4 2 12856 1.99 2005-08-19T02:19:13Z 2020-02-15T06:59:47Z +103 4 1 13704 2.99 2005-08-20T09:32:04Z 2020-02-15T06:59:47Z +104 4 1 13807 6.99 2005-08-20T12:55:40Z 2020-02-15T06:59:47Z +105 4 2 14225 4.99 2005-08-21T04:53:37Z 2020-02-15T06:59:47Z +106 4 1 15147 2.99 2005-08-22T13:58:23Z 2020-02-15T06:59:47Z +107 4 2 15635 1.99 2005-08-23T07:43:00Z 2020-02-15T06:59:47Z +108 5 1 731 0.99 2005-05-29T07:25:16Z 2020-02-15T06:59:47Z +109 5 1 1085 6.99 2005-05-31T11:15:43Z 2020-02-15T06:59:47Z +110 5 1 1142 1.99 2005-05-31T19:46:38Z 2020-02-15T06:59:47Z +111 5 1 1502 3.99 2005-06-15T22:03:14Z 2020-02-15T06:59:47Z +112 5 2 1631 2.99 2005-06-16T08:01:02Z 2020-02-15T06:59:47Z +113 5 2 2063 4.99 2005-06-17T15:56:53Z 2020-02-15T06:59:47Z +114 5 2 2570 2.99 2005-06-19T04:20:13Z 2020-02-15T06:59:47Z +115 5 2 3126 4.99 2005-06-20T18:38:22Z 2020-02-15T06:59:47Z +116 5 2 3677 4.99 2005-07-06T09:11:58Z 2020-02-15T06:59:47Z +117 5 2 4889 2.99 2005-07-08T20:04:43Z 2020-02-15T06:59:47Z +118 5 1 5016 4.99 2005-07-09T01:57:57Z 2020-02-15T06:59:47Z +119 5 2 5118 5.99 2005-07-09T07:13:52Z 2020-02-15T06:59:47Z +120 5 2 5156 1.99 2005-07-09T08:51:42Z 2020-02-15T06:59:47Z +121 5 2 5721 0.99 2005-07-10T11:09:35Z 2020-02-15T06:59:47Z +122 5 1 6042 8.99 2005-07-11T03:17:04Z 2020-02-15T06:59:47Z +123 5 1 6663 3.99 2005-07-12T11:27:35Z 2020-02-15T06:59:47Z +124 5 2 6685 4.99 2005-07-12T12:16:28Z 2020-02-15T06:59:47Z +125 5 2 7293 0.99 2005-07-27T12:37:28Z 2020-02-15T06:59:47Z +126 5 2 7652 0.99 2005-07-28T01:50:29Z 2020-02-15T06:59:47Z +127 5 2 7829 3.99 2005-07-28T08:43:39Z 2020-02-15T06:59:47Z +128 5 1 8263 2.99 2005-07-29T01:11:23Z 2020-02-15T06:59:47Z +129 5 1 8978 1.99 2005-07-30T04:14:28Z 2020-02-15T06:59:47Z +130 5 1 9493 4.99 2005-07-30T23:52:30Z 2020-02-15T06:59:47Z +131 5 1 9888 3.99 2005-07-31T14:00:53Z 2020-02-15T06:59:47Z +132 5 2 10609 4.99 2005-08-01T14:48:45Z 2020-02-15T06:59:47Z +133 5 1 10625 0.99 2005-08-01T15:27:10Z 2020-02-15T06:59:47Z +134 5 2 11001 4.99 2005-08-02T04:56:45Z 2020-02-15T06:59:47Z +135 5 1 11179 4.99 2005-08-02T10:50:06Z 2020-02-15T06:59:47Z +136 5 2 11930 3.99 2005-08-17T16:28:53Z 2020-02-15T06:59:47Z +137 5 1 12145 9.99 2005-08-18T00:10:04Z 2020-02-15T06:59:47Z +138 5 1 12797 2.99 2005-08-19T00:24:08Z 2020-02-15T06:59:47Z +139 5 1 13063 1.99 2005-08-19T09:45:41Z 2020-02-15T06:59:47Z +140 5 2 13877 0.99 2005-08-20T15:16:18Z 2020-02-15T06:59:47Z +141 5 2 14053 6.99 2005-08-20T22:13:59Z 2020-02-15T06:59:47Z +142 5 1 14430 6.99 2005-08-21T11:31:11Z 2020-02-15T06:59:47Z +143 5 2 14494 2.99 2005-08-21T14:02:50Z 2020-02-15T06:59:47Z +144 5 2 15232 0.99 2005-08-22T17:37:02Z 2020-02-15T06:59:47Z +145 5 2 13209 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +146 6 2 57 4.99 2005-05-25T08:43:32Z 2020-02-15T06:59:47Z +147 6 1 577 2.99 2005-05-28T11:09:14Z 2020-02-15T06:59:47Z +148 6 2 916 0.99 2005-05-30T11:25:01Z 2020-02-15T06:59:47Z +149 6 1 1575 3.99 2005-06-16T03:41:38Z 2020-02-15T06:59:47Z +150 6 2 1841 2.99 2005-06-16T23:44:13Z 2020-02-15T06:59:47Z +151 6 1 1966 0.99 2005-06-17T09:19:45Z 2020-02-15T06:59:47Z +152 6 1 2345 0.99 2005-06-18T12:03:23Z 2020-02-15T06:59:47Z +153 6 2 3983 0.99 2005-07-06T23:14:21Z 2020-02-15T06:59:47Z +154 6 2 4278 2.99 2005-07-07T14:53:24Z 2020-02-15T06:59:47Z +155 6 1 5553 0.99 2005-07-10T03:03:35Z 2020-02-15T06:59:47Z +156 6 2 6211 5.99 2005-07-11T12:39:01Z 2020-02-15T06:59:47Z +157 6 1 6248 7.99 2005-07-11T15:01:54Z 2020-02-15T06:59:47Z +158 6 2 6686 0.99 2005-07-12T12:18:38Z 2020-02-15T06:59:47Z +159 6 2 7099 2.99 2005-07-27T05:03:44Z 2020-02-15T06:59:47Z +160 6 2 7136 2.99 2005-07-27T06:38:25Z 2020-02-15T06:59:47Z +161 6 1 8101 0.99 2005-07-28T18:47:23Z 2020-02-15T06:59:47Z +162 6 1 10271 2.99 2005-08-01T03:13:39Z 2020-02-15T06:59:47Z +163 6 1 11023 2.99 2005-08-02T05:36:38Z 2020-02-15T06:59:47Z +164 6 1 11398 3.99 2005-08-02T18:55:15Z 2020-02-15T06:59:47Z +165 6 1 11591 6.99 2005-08-17T02:29:41Z 2020-02-15T06:59:47Z +166 6 1 11727 0.99 2005-08-17T08:12:20Z 2020-02-15T06:59:47Z +167 6 1 11853 0.99 2005-08-17T13:39:32Z 2020-02-15T06:59:47Z +168 6 2 12254 2.99 2005-08-18T04:05:29Z 2020-02-15T06:59:47Z +169 6 2 13451 6.99 2005-08-20T00:18:25Z 2020-02-15T06:59:47Z +170 6 1 14329 7.99 2005-08-21T08:22:56Z 2020-02-15T06:59:47Z +171 6 1 14377 4.99 2005-08-21T09:49:28Z 2020-02-15T06:59:47Z +172 6 1 15509 5.99 2005-08-23T02:51:24Z 2020-02-15T06:59:47Z +173 6 2 15603 0.99 2005-08-23T06:41:32Z 2020-02-15T06:59:47Z +174 7 2 46 5.99 2005-05-25T06:04:08Z 2020-02-15T06:59:47Z +175 7 2 117 0.99 2005-05-25T19:30:46Z 2020-02-15T06:59:47Z +176 7 2 748 2.99 2005-05-29T09:27:00Z 2020-02-15T06:59:47Z +177 7 1 975 4.99 2005-05-30T21:07:15Z 2020-02-15T06:59:47Z +178 7 1 1063 5.99 2005-05-31T08:44:29Z 2020-02-15T06:59:47Z +179 7 2 1810 0.99 2005-06-16T21:06:00Z 2020-02-15T06:59:47Z +180 7 1 2250 2.99 2005-06-18T05:03:36Z 2020-02-15T06:59:47Z +181 7 1 2709 0.99 2005-06-19T14:00:26Z 2020-02-15T06:59:47Z +182 7 1 2888 4.99 2005-06-20T01:50:56Z 2020-02-15T06:59:47Z +183 7 1 3007 0.99 2005-06-20T10:11:53Z 2020-02-15T06:59:47Z +184 7 2 3639 5.99 2005-07-06T07:09:17Z 2020-02-15T06:59:47Z +185 7 2 4238 2.99 2005-07-07T13:22:20Z 2020-02-15T06:59:47Z +186 7 2 4787 5.99 2005-07-08T16:16:04Z 2020-02-15T06:59:47Z +187 7 1 4856 4.99 2005-07-08T18:47:38Z 2020-02-15T06:59:47Z +188 7 1 5441 8.99 2005-07-09T21:52:05Z 2020-02-15T06:59:47Z +189 7 1 5921 7.99 2005-07-10T21:35:12Z 2020-02-15T06:59:47Z +190 7 1 6174 1.99 2005-07-11T10:36:28Z 2020-02-15T06:59:47Z +191 7 1 6295 2.99 2005-07-11T17:30:58Z 2020-02-15T06:59:47Z +192 7 2 6761 3.99 2005-07-12T15:17:42Z 2020-02-15T06:59:47Z +193 7 2 8422 5.99 2005-07-29T07:02:55Z 2020-02-15T06:59:47Z +194 7 2 9624 7.99 2005-07-31T04:30:03Z 2020-02-15T06:59:47Z +195 7 2 10330 6.99 2005-08-01T04:57:04Z 2020-02-15T06:59:47Z +196 7 1 10423 5.99 2005-08-01T08:19:53Z 2020-02-15T06:59:47Z +197 7 1 10514 4.99 2005-08-01T11:39:26Z 2020-02-15T06:59:47Z +198 7 2 10644 4.99 2005-08-01T15:52:00Z 2020-02-15T06:59:47Z +199 7 2 10989 3.99 2005-08-02T04:40:54Z 2020-02-15T06:59:47Z +200 7 2 11542 7.99 2005-08-17T00:51:32Z 2020-02-15T06:59:47Z +201 7 1 12367 8.99 2005-08-18T07:57:14Z 2020-02-15T06:59:47Z +202 7 1 12730 2.99 2005-08-18T21:55:01Z 2020-02-15T06:59:47Z +203 7 2 13373 2.99 2005-08-19T21:23:31Z 2020-02-15T06:59:47Z +204 7 1 13476 2.99 2005-08-20T01:06:04Z 2020-02-15T06:59:47Z +205 7 1 13594 0.99 2005-08-20T05:53:31Z 2020-02-15T06:59:47Z +206 7 1 14222 5.99 2005-08-21T04:49:48Z 2020-02-15T06:59:47Z +207 8 2 866 6.99 2005-05-30T03:43:54Z 2020-02-15T06:59:47Z +208 8 2 1305 2.99 2005-06-15T09:59:16Z 2020-02-15T06:59:47Z +209 8 1 2095 5.99 2005-06-17T18:21:35Z 2020-02-15T06:59:47Z +210 8 2 3114 4.99 2005-06-20T17:57:47Z 2020-02-15T06:59:47Z +211 8 1 3475 5.99 2005-07-05T23:01:21Z 2020-02-15T06:59:47Z +212 8 1 4003 0.99 2005-07-07T00:09:02Z 2020-02-15T06:59:47Z +213 8 2 4175 2.99 2005-07-07T10:02:03Z 2020-02-15T06:59:47Z +214 8 2 4409 3.99 2005-07-07T21:47:29Z 2020-02-15T06:59:47Z +215 8 1 4503 3.99 2005-07-08T02:17:12Z 2020-02-15T06:59:47Z +216 8 1 5300 2.99 2005-07-09T15:40:46Z 2020-02-15T06:59:47Z +217 8 2 5341 2.99 2005-07-09T17:13:23Z 2020-02-15T06:59:47Z +218 8 1 6375 4.99 2005-07-11T21:39:46Z 2020-02-15T06:59:47Z +219 8 1 6647 0.99 2005-07-12T10:43:53Z 2020-02-15T06:59:47Z +220 8 1 8809 1.99 2005-07-29T21:42:49Z 2020-02-15T06:59:47Z +221 8 2 9629 2.99 2005-07-31T04:54:43Z 2020-02-15T06:59:47Z +222 8 2 10141 0.99 2005-07-31T22:08:29Z 2020-02-15T06:59:47Z +223 8 2 10561 2.99 2005-08-01T13:05:35Z 2020-02-15T06:59:47Z +224 8 1 11232 9.99 2005-08-02T13:04:12Z 2020-02-15T06:59:47Z +225 8 2 11284 2.99 2005-08-02T14:42:45Z 2020-02-15T06:59:47Z +226 8 1 12613 2.99 2005-08-18T17:16:01Z 2020-02-15T06:59:47Z +227 8 1 14114 0.99 2005-08-21T01:07:11Z 2020-02-15T06:59:47Z +228 8 1 15374 7.99 2005-08-22T22:09:09Z 2020-02-15T06:59:47Z +229 8 1 15764 2.99 2005-08-23T13:05:10Z 2020-02-15T06:59:47Z +230 8 1 15805 4.99 2005-08-23T14:31:19Z 2020-02-15T06:59:47Z +231 9 2 350 4.99 2005-05-27T05:01:28Z 2020-02-15T06:59:47Z +232 9 2 877 0.99 2005-05-30T05:48:59Z 2020-02-15T06:59:47Z +233 9 2 1075 4.99 2005-05-31T10:13:34Z 2020-02-15T06:59:47Z +234 9 2 3142 7.99 2005-06-20T19:59:28Z 2020-02-15T06:59:47Z +235 9 2 3262 4.99 2005-06-21T04:08:43Z 2020-02-15T06:59:47Z +236 9 1 4454 2.99 2005-07-07T23:37:00Z 2020-02-15T06:59:47Z +237 9 2 4748 0.99 2005-07-08T13:59:38Z 2020-02-15T06:59:47Z +238 9 1 4796 1.99 2005-07-08T16:35:44Z 2020-02-15T06:59:47Z +239 9 1 5659 2.99 2005-07-10T07:45:40Z 2020-02-15T06:59:47Z +240 9 2 6019 4.99 2005-07-11T02:08:29Z 2020-02-15T06:59:47Z +241 9 1 6165 5.99 2005-07-11T10:17:29Z 2020-02-15T06:59:47Z +242 9 2 7616 0.99 2005-07-28T00:15:26Z 2020-02-15T06:59:47Z +243 9 1 7801 2.99 2005-07-28T07:51:56Z 2020-02-15T06:59:47Z +244 9 1 9043 4.99 2005-07-30T06:34:07Z 2020-02-15T06:59:47Z +245 9 1 10451 0.99 2005-08-01T09:11:25Z 2020-02-15T06:59:47Z +246 9 1 10454 4.99 2005-08-01T09:14:00Z 2020-02-15T06:59:47Z +247 9 2 11400 5.99 2005-08-02T19:00:52Z 2020-02-15T06:59:47Z +248 9 1 11556 0.99 2005-08-17T01:11:53Z 2020-02-15T06:59:47Z +249 9 1 12228 2.99 2005-08-18T03:08:10Z 2020-02-15T06:59:47Z +250 9 1 12309 2.99 2005-08-18T05:58:40Z 2020-02-15T06:59:47Z +251 9 2 12652 4.99 2005-08-18T18:48:58Z 2020-02-15T06:59:47Z +252 9 2 14489 7.99 2005-08-21T13:53:59Z 2020-02-15T06:59:47Z +253 9 1 15813 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +254 10 2 1140 4.99 2005-05-31T19:36:30Z 2020-02-15T06:59:47Z +255 10 1 1801 4.99 2005-06-16T20:21:53Z 2020-02-15T06:59:47Z +256 10 1 1995 4.99 2005-06-17T11:11:14Z 2020-02-15T06:59:47Z +257 10 2 2222 3.99 2005-06-18T03:26:23Z 2020-02-15T06:59:47Z +258 10 1 2814 0.99 2005-06-19T20:01:59Z 2020-02-15T06:59:47Z +259 10 1 2865 0.99 2005-06-20T00:00:55Z 2020-02-15T06:59:47Z +260 10 2 3790 3.99 2005-07-06T14:13:45Z 2020-02-15T06:59:47Z +261 10 2 4042 4.99 2005-07-07T03:06:40Z 2020-02-15T06:59:47Z +262 10 1 4255 1.99 2005-07-07T14:14:13Z 2020-02-15T06:59:47Z +263 10 1 5038 7.99 2005-07-09T03:12:52Z 2020-02-15T06:59:47Z +264 10 2 5068 2.99 2005-07-09T04:53:18Z 2020-02-15T06:59:47Z +265 10 1 5444 0.99 2005-07-09T21:58:57Z 2020-02-15T06:59:47Z +266 10 1 5905 2.99 2005-07-10T20:41:09Z 2020-02-15T06:59:47Z +267 10 1 7738 2.99 2005-07-28T05:21:42Z 2020-02-15T06:59:47Z +268 10 2 8001 6.99 2005-07-28T15:10:55Z 2020-02-15T06:59:47Z +269 10 2 8188 4.99 2005-07-28T22:34:12Z 2020-02-15T06:59:47Z +270 10 1 9935 4.99 2005-07-31T15:27:07Z 2020-02-15T06:59:47Z +271 10 2 10671 8.99 2005-08-01T17:09:59Z 2020-02-15T06:59:47Z +272 10 2 11289 2.99 2005-08-02T14:55:00Z 2020-02-15T06:59:47Z +273 10 1 11405 0.99 2005-08-02T19:13:39Z 2020-02-15T06:59:47Z +274 10 2 12031 2.99 2005-08-17T20:11:35Z 2020-02-15T06:59:47Z +275 10 2 12400 2.99 2005-08-18T09:19:12Z 2020-02-15T06:59:47Z +276 10 2 13316 4.99 2005-08-19T19:23:30Z 2020-02-15T06:59:47Z +277 10 2 13917 2.99 2005-08-20T16:43:28Z 2020-02-15T06:59:47Z +278 10 1 15370 5.99 2005-08-22T21:59:29Z 2020-02-15T06:59:47Z +279 11 1 987 6.99 2005-05-30T22:59:12Z 2020-02-15T06:59:47Z +280 11 1 1470 6.99 2005-06-15T20:53:07Z 2020-02-15T06:59:47Z +281 11 1 1939 7.99 2005-06-17T07:26:45Z 2020-02-15T06:59:47Z +282 11 1 3192 0.99 2005-06-20T23:49:12Z 2020-02-15T06:59:47Z +283 11 2 4608 2.99 2005-07-08T07:19:11Z 2020-02-15T06:59:47Z +284 11 1 4943 4.99 2005-07-08T22:43:05Z 2020-02-15T06:59:47Z +285 11 2 5835 5.99 2005-07-10T16:44:58Z 2020-02-15T06:59:47Z +286 11 2 6146 6.99 2005-07-11T09:09:59Z 2020-02-15T06:59:47Z +287 11 1 7314 4.99 2005-07-27T13:13:32Z 2020-02-15T06:59:47Z +288 11 1 8014 4.99 2005-07-28T15:32:07Z 2020-02-15T06:59:47Z +289 11 2 8100 2.99 2005-07-28T18:43:11Z 2020-02-15T06:59:47Z +290 11 2 8447 1.99 2005-07-29T07:38:14Z 2020-02-15T06:59:47Z +291 11 1 8715 0.99 2005-07-29T17:33:45Z 2020-02-15T06:59:47Z +292 11 1 8950 9.99 2005-07-30T03:17:13Z 2020-02-15T06:59:47Z +293 11 2 9292 6.99 2005-07-30T16:08:21Z 2020-02-15T06:59:47Z +294 11 1 10812 4.99 2005-08-01T22:41:16Z 2020-02-15T06:59:47Z +295 11 2 11166 6.99 2005-08-02T10:14:58Z 2020-02-15T06:59:47Z +296 11 2 11502 0.99 2005-08-16T23:06:30Z 2020-02-15T06:59:47Z +297 11 2 12015 5.99 2005-08-17T19:32:44Z 2020-02-15T06:59:47Z +298 11 2 13572 0.99 2005-08-20T05:07:27Z 2020-02-15T06:59:47Z +299 11 1 13790 4.99 2005-08-20T12:17:27Z 2020-02-15T06:59:47Z +300 11 1 15120 0.99 2005-08-22T12:42:47Z 2020-02-15T06:59:47Z +301 11 2 15240 2.99 2005-08-22T17:46:41Z 2020-02-15T06:59:47Z +302 11 1 11646 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +303 12 1 988 4.99 2005-05-30T23:08:03Z 2020-02-15T06:59:47Z +304 12 1 1084 4.99 2005-05-31T11:10:17Z 2020-02-15T06:59:47Z +305 12 2 1752 5.99 2005-06-16T17:02:55Z 2020-02-15T06:59:47Z +306 12 2 2434 5.99 2005-06-18T18:11:51Z 2020-02-15T06:59:47Z +307 12 2 2500 5.99 2005-06-18T23:07:12Z 2020-02-15T06:59:47Z +308 12 2 2623 4.99 2005-06-19T08:11:51Z 2020-02-15T06:59:47Z +309 12 2 3135 2.99 2005-06-20T19:33:52Z 2020-02-15T06:59:47Z +310 12 1 3411 0.99 2005-06-21T16:31:27Z 2020-02-15T06:59:47Z +311 12 1 3870 3.99 2005-07-06T17:57:54Z 2020-02-15T06:59:47Z +312 12 1 5071 0.99 2005-07-09T05:00:39Z 2020-02-15T06:59:47Z +313 12 1 5074 0.99 2005-07-09T05:06:24Z 2020-02-15T06:59:47Z +314 12 2 5111 0.99 2005-07-09T07:02:19Z 2020-02-15T06:59:47Z +315 12 2 5242 3.99 2005-07-09T13:20:25Z 2020-02-15T06:59:47Z +316 12 1 6773 2.99 2005-07-12T15:55:39Z 2020-02-15T06:59:47Z +317 12 2 7008 0.99 2005-07-27T01:44:03Z 2020-02-15T06:59:47Z +318 12 2 7279 0.99 2005-07-27T11:50:47Z 2020-02-15T06:59:47Z +319 12 2 8985 0.99 2005-07-30T04:34:51Z 2020-02-15T06:59:47Z +320 12 2 9166 4.99 2005-07-30T11:26:28Z 2020-02-15T06:59:47Z +321 12 2 9238 5.99 2005-07-30T13:49:43Z 2020-02-15T06:59:47Z +322 12 1 9627 5.99 2005-07-31T04:42:46Z 2020-02-15T06:59:47Z +323 12 2 9708 5.99 2005-07-31T07:45:33Z 2020-02-15T06:59:47Z +324 12 2 10392 10.99 2005-08-01T06:50:26Z 2020-02-15T06:59:47Z +325 12 2 11497 0.99 2005-08-16T22:52:30Z 2020-02-15T06:59:47Z +326 12 1 12604 4.99 2005-08-18T16:58:48Z 2020-02-15T06:59:47Z +327 12 2 13519 0.99 2005-08-20T02:37:07Z 2020-02-15T06:59:47Z +328 12 2 13895 2.99 2005-08-20T15:58:28Z 2020-02-15T06:59:47Z +329 12 2 14240 4.99 2005-08-21T05:19:39Z 2020-02-15T06:59:47Z +330 12 1 15993 0.99 2005-08-23T20:28:44Z 2020-02-15T06:59:47Z +331 13 1 1933 2.99 2005-06-17T06:54:42Z 2020-02-15T06:59:47Z +332 13 1 2209 4.99 2005-06-18T02:24:01Z 2020-02-15T06:59:47Z +333 13 1 2952 2.99 2005-06-20T06:26:57Z 2020-02-15T06:59:47Z +334 13 1 3047 8.99 2005-06-20T12:45:33Z 2020-02-15T06:59:47Z +335 13 2 3946 2.99 2005-07-06T21:39:24Z 2020-02-15T06:59:47Z +336 13 1 6118 8.99 2005-07-11T07:43:08Z 2020-02-15T06:59:47Z +337 13 1 6568 2.99 2005-07-12T05:45:47Z 2020-02-15T06:59:47Z +338 13 1 6870 0.99 2005-07-12T20:13:45Z 2020-02-15T06:59:47Z +339 13 1 6897 2.99 2005-07-12T21:30:41Z 2020-02-15T06:59:47Z +340 13 1 7916 2.99 2005-07-28T11:49:53Z 2020-02-15T06:59:47Z +341 13 1 8277 2.99 2005-07-29T01:38:53Z 2020-02-15T06:59:47Z +342 13 2 8831 11.99 2005-07-29T22:37:41Z 2020-02-15T06:59:47Z +343 13 2 9260 9.99 2005-07-30T14:38:22Z 2020-02-15T06:59:47Z +344 13 2 9434 0.99 2005-07-30T21:29:41Z 2020-02-15T06:59:47Z +345 13 1 9664 0.99 2005-07-31T06:12:08Z 2020-02-15T06:59:47Z +346 13 1 9736 7.99 2005-07-31T08:58:40Z 2020-02-15T06:59:47Z +347 13 1 10003 4.99 2005-07-31T17:48:51Z 2020-02-15T06:59:47Z +348 13 1 11292 4.99 2005-08-02T14:58:41Z 2020-02-15T06:59:47Z +349 13 2 11315 0.99 2005-08-02T16:05:17Z 2020-02-15T06:59:47Z +350 13 2 11761 5.99 2005-08-17T09:44:59Z 2020-02-15T06:59:47Z +351 13 2 12918 7.99 2005-08-19T04:31:36Z 2020-02-15T06:59:47Z +352 13 2 13096 4.99 2005-08-19T10:49:03Z 2020-02-15T06:59:47Z +353 13 2 13213 0.99 2005-08-19T15:25:48Z 2020-02-15T06:59:47Z +354 13 1 13456 0.99 2005-08-20T00:33:19Z 2020-02-15T06:59:47Z +355 13 1 14252 9.99 2005-08-21T05:44:07Z 2020-02-15T06:59:47Z +356 13 2 14545 7.99 2005-08-21T15:44:23Z 2020-02-15T06:59:47Z +357 13 1 15338 4.99 2005-08-22T20:51:24Z 2020-02-15T06:59:47Z +358 14 1 151 0.99 2005-05-26T00:37:28Z 2020-02-15T06:59:47Z +359 14 1 346 9.99 2005-05-27T04:34:41Z 2020-02-15T06:59:47Z +360 14 1 525 5.99 2005-05-28T04:25:33Z 2020-02-15T06:59:47Z +361 14 1 671 2.99 2005-05-28T22:04:30Z 2020-02-15T06:59:47Z +362 14 2 815 0.99 2005-05-29T20:24:28Z 2020-02-15T06:59:47Z +363 14 2 1360 4.99 2005-06-15T13:32:15Z 2020-02-15T06:59:47Z +364 14 1 3707 2.99 2005-07-06T10:21:49Z 2020-02-15T06:59:47Z +365 14 1 4952 0.99 2005-07-08T23:00:07Z 2020-02-15T06:59:47Z +366 14 1 5104 0.99 2005-07-09T06:37:07Z 2020-02-15T06:59:47Z +367 14 2 5317 7.99 2005-07-09T16:10:25Z 2020-02-15T06:59:47Z +368 14 1 5383 4.99 2005-07-09T19:14:32Z 2020-02-15T06:59:47Z +369 14 1 5565 7.99 2005-07-10T03:29:48Z 2020-02-15T06:59:47Z +370 14 1 8035 6.99 2005-07-28T16:23:01Z 2020-02-15T06:59:47Z +371 14 1 8042 0.99 2005-07-28T16:45:11Z 2020-02-15T06:59:47Z +372 14 1 8548 3.99 2005-07-29T11:11:33Z 2020-02-15T06:59:47Z +373 14 2 8836 4.99 2005-07-29T22:46:08Z 2020-02-15T06:59:47Z +374 14 2 9438 4.99 2005-07-30T21:36:15Z 2020-02-15T06:59:47Z +375 14 1 9592 2.99 2005-07-31T03:21:16Z 2020-02-15T06:59:47Z +376 14 1 10348 2.99 2005-08-01T05:23:00Z 2020-02-15T06:59:47Z +377 14 2 10526 6.99 2005-08-01T11:55:33Z 2020-02-15T06:59:47Z +378 14 1 11480 4.99 2005-08-02T22:18:24Z 2020-02-15T06:59:47Z +379 14 2 11528 3.99 2005-08-17T00:27:23Z 2020-02-15T06:59:47Z +380 14 1 12668 2.99 2005-08-18T19:16:47Z 2020-02-15T06:59:47Z +381 14 1 13757 4.99 2005-08-20T11:20:12Z 2020-02-15T06:59:47Z +382 14 2 15015 6.99 2005-08-22T08:43:50Z 2020-02-15T06:59:47Z +383 14 1 15373 0.99 2005-08-22T22:08:11Z 2020-02-15T06:59:47Z +384 14 1 16045 0.99 2005-08-23T22:25:26Z 2020-02-15T06:59:47Z +385 14 1 13780 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +386 15 1 2486 2.99 2005-06-18T21:26:56Z 2020-02-15T06:59:47Z +387 15 1 2937 5.99 2005-06-20T05:15:37Z 2020-02-15T06:59:47Z +388 15 2 3182 0.99 2005-06-20T22:52:18Z 2020-02-15T06:59:47Z +389 15 1 3550 7.99 2005-07-06T02:29:21Z 2020-02-15T06:59:47Z +390 15 1 4127 5.99 2005-07-07T07:26:19Z 2020-02-15T06:59:47Z +391 15 1 5717 2.99 2005-07-10T11:02:03Z 2020-02-15T06:59:47Z +392 15 2 5975 2.99 2005-07-11T00:14:19Z 2020-02-15T06:59:47Z +393 15 1 7105 4.99 2005-07-27T05:15:37Z 2020-02-15T06:59:47Z +394 15 1 8193 0.99 2005-07-28T22:50:50Z 2020-02-15T06:59:47Z +395 15 2 8615 6.99 2005-07-29T13:36:01Z 2020-02-15T06:59:47Z +396 15 2 8927 4.99 2005-07-30T02:13:31Z 2020-02-15T06:59:47Z +397 15 1 9987 2.99 2005-07-31T17:22:35Z 2020-02-15T06:59:47Z +398 15 1 11118 2.99 2005-08-02T08:44:18Z 2020-02-15T06:59:47Z +399 15 1 11141 2.99 2005-08-02T09:29:11Z 2020-02-15T06:59:47Z +400 15 2 11307 2.99 2005-08-02T15:48:08Z 2020-02-15T06:59:47Z +401 15 2 11341 2.99 2005-08-02T17:09:24Z 2020-02-15T06:59:47Z +402 15 1 11922 7.99 2005-08-17T16:20:37Z 2020-02-15T06:59:47Z +403 15 2 12272 2.99 2005-08-18T04:39:10Z 2020-02-15T06:59:47Z +404 15 2 12551 2.99 2005-08-18T14:46:26Z 2020-02-15T06:59:47Z +405 15 1 12635 2.99 2005-08-18T18:00:23Z 2020-02-15T06:59:47Z +406 15 2 13339 8.99 2005-08-19T20:18:36Z 2020-02-15T06:59:47Z +407 15 1 13393 5.99 2005-08-19T22:03:46Z 2020-02-15T06:59:47Z +408 15 2 13503 5.99 2005-08-20T02:00:33Z 2020-02-15T06:59:47Z +409 15 1 13541 4.99 2005-08-20T03:41:41Z 2020-02-15T06:59:47Z +410 15 2 13677 3.99 2005-08-20T08:34:41Z 2020-02-15T06:59:47Z +411 15 2 14569 0.99 2005-08-21T16:31:22Z 2020-02-15T06:59:47Z +412 15 2 14776 4.99 2005-08-21T23:53:35Z 2020-02-15T06:59:47Z +413 15 2 14872 8.99 2005-08-22T03:23:41Z 2020-02-15T06:59:47Z +414 15 1 15178 0.99 2005-08-22T15:36:04Z 2020-02-15T06:59:47Z +415 15 1 15897 4.99 2005-08-23T17:12:31Z 2020-02-15T06:59:47Z +416 15 1 13798 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +417 15 2 13968 0 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +418 16 1 335 3.99 2005-05-27T03:07:10Z 2020-02-15T06:59:47Z +419 16 1 593 2.99 2005-05-28T13:33:23Z 2020-02-15T06:59:47Z +420 16 2 887 0.99 2005-05-30T07:10:00Z 2020-02-15T06:59:47Z +421 16 1 1017 2.99 2005-05-31T02:53:36Z 2020-02-15T06:59:47Z +422 16 2 1934 6.99 2005-06-17T07:04:57Z 2020-02-15T06:59:47Z +423 16 1 1944 7.99 2005-06-17T07:50:53Z 2020-02-15T06:59:47Z +424 16 1 1.99 2005-06-18T04:56:12Z 2020-02-15T06:59:47Z +425 16 1 2960 7.99 2005-06-20T07:10:09Z 2020-02-15T06:59:47Z +426 16 2 3348 0.99 2005-06-21T11:16:42Z 2020-02-15T06:59:47Z +427 16 1 3548 0.99 2005-07-06T02:23:39Z 2020-02-15T06:59:47Z +428 16 2 4219 2.99 2005-07-07T12:11:22Z 2020-02-15T06:59:47Z +429 16 2 4263 3.99 2005-07-07T14:24:44Z 2020-02-15T06:59:47Z +430 16 2 4517 4.99 2005-07-08T02:45:19Z 2020-02-15T06:59:47Z +431 16 1 6100 4.99 2005-07-11T06:40:31Z 2020-02-15T06:59:47Z +432 16 2 7489 0.99 2005-07-27T19:39:38Z 2020-02-15T06:59:47Z +433 16 2 7552 2.99 2005-07-27T22:03:41Z 2020-02-15T06:59:47Z +434 16 2 8452 5.99 2005-07-29T07:45:00Z 2020-02-15T06:59:47Z +435 16 2 9158 0.99 2005-07-30T11:12:03Z 2020-02-15T06:59:47Z +436 16 2 9610 5.99 2005-07-31T03:54:05Z 2020-02-15T06:59:47Z +437 16 2 10687 2.99 2005-08-01T17:53:02Z 2020-02-15T06:59:47Z +438 16 2 10727 2.99 2005-08-01T19:15:08Z 2020-02-15T06:59:47Z +439 16 2 11308 0.99 2005-08-02T15:50:44Z 2020-02-15T06:59:47Z +440 16 2 12104 2.99 2005-08-17T22:53:00Z 2020-02-15T06:59:47Z +441 16 1 12358 4.99 2005-08-18T07:41:43Z 2020-02-15T06:59:47Z +442 16 1 12577 7.99 2005-08-18T15:39:46Z 2020-02-15T06:59:47Z +443 16 2 13151 4.99 2005-08-19T13:08:23Z 2020-02-15T06:59:47Z +444 16 1 13391 4.99 2005-08-19T22:01:42Z 2020-02-15T06:59:47Z +445 16 1 13480 6.99 2005-08-20T01:10:27Z 2020-02-15T06:59:47Z +446 16 1 14511 8.99 2005-08-21T14:45:34Z 2020-02-15T06:59:47Z +447 17 2 287 2.99 2005-05-26T19:44:54Z 2020-02-15T06:59:47Z +448 17 1 580 2.99 2005-05-28T11:19:53Z 2020-02-15T06:59:47Z +449 17 2 884 4.99 2005-05-30T06:41:32Z 2020-02-15T06:59:47Z +450 17 2 2175 5.99 2005-06-18T00:17:58Z 2020-02-15T06:59:47Z +451 17 1 2684 8.99 2005-06-19T12:29:08Z 2020-02-15T06:59:47Z +452 17 2 3269 5.99 2005-06-21T05:06:30Z 2020-02-15T06:59:47Z +453 17 1 5714 3.99 2005-07-10T10:46:57Z 2020-02-15T06:59:47Z +454 17 1 5883 3.99 2005-07-10T19:25:21Z 2020-02-15T06:59:47Z +455 17 2 6884 1.99 2005-07-12T20:52:41Z 2020-02-15T06:59:47Z +456 17 2 8076 8.99 2005-07-28T17:45:58Z 2020-02-15T06:59:47Z +457 17 1 8213 2.99 2005-07-28T23:37:33Z 2020-02-15T06:59:47Z +458 17 2 9092 8.99 2005-07-30T08:30:56Z 2020-02-15T06:59:47Z +459 17 1 9138 2.99 2005-07-30T10:11:52Z 2020-02-15T06:59:47Z +460 17 2 9382 8.99 2005-07-30T19:23:44Z 2020-02-15T06:59:47Z +461 17 1 9489 0.99 2005-07-30T23:43:32Z 2020-02-15T06:59:47Z +462 17 2 11990 4.99 2005-08-17T18:26:22Z 2020-02-15T06:59:47Z +463 17 1 13732 2.99 2005-08-20T10:24:41Z 2020-02-15T06:59:47Z +464 17 1 14040 2.99 2005-08-20T21:43:44Z 2020-02-15T06:59:47Z +465 17 2 14326 2.99 2005-08-21T08:15:41Z 2020-02-15T06:59:47Z +466 17 1 14346 2.99 2005-08-21T08:42:26Z 2020-02-15T06:59:47Z +467 17 2 15752 5.99 2005-08-23T12:41:38Z 2020-02-15T06:59:47Z +468 18 1 50 2.99 2005-05-25T06:44:53Z 2020-02-15T06:59:47Z +469 18 1 116 4.99 2005-05-25T19:27:51Z 2020-02-15T06:59:47Z +470 18 1 692 4.99 2005-05-29T01:32:10Z 2020-02-15T06:59:47Z +471 18 2 1451 5.99 2005-06-15T19:30:18Z 2020-02-15T06:59:47Z +472 18 2 1783 4.99 2005-06-16T19:23:23Z 2020-02-15T06:59:47Z +473 18 2 2112 5.99 2005-06-17T19:52:42Z 2020-02-15T06:59:47Z +474 18 1 2990 8.99 2005-06-20T09:02:51Z 2020-02-15T06:59:47Z +475 18 2 4672 3.99 2005-07-08T10:15:38Z 2020-02-15T06:59:47Z +476 18 2 4724 3.99 2005-07-08T12:46:30Z 2020-02-15T06:59:47Z +477 18 2 4923 3.99 2005-07-08T21:44:39Z 2020-02-15T06:59:47Z +478 18 2 6128 2.99 2005-07-11T08:15:08Z 2020-02-15T06:59:47Z +479 18 1 6846 0.99 2005-07-12T19:20:45Z 2020-02-15T06:59:47Z +480 18 2 8122 2.99 2005-07-28T19:27:37Z 2020-02-15T06:59:47Z +481 18 1 8555 4.99 2005-07-29T11:18:01Z 2020-02-15T06:59:47Z +482 18 1 9036 4.99 2005-07-30T06:18:38Z 2020-02-15T06:59:47Z +483 18 2 9114 4.99 2005-07-30T09:13:21Z 2020-02-15T06:59:47Z +484 18 1 10682 4.99 2005-08-01T17:32:53Z 2020-02-15T06:59:47Z +485 18 2 10721 1.99 2005-08-01T19:05:18Z 2020-02-15T06:59:47Z +486 18 2 11094 4.99 2005-08-02T08:03:02Z 2020-02-15T06:59:47Z +487 18 2 11439 4.99 2005-08-02T20:22:45Z 2020-02-15T06:59:47Z +488 18 2 12333 0.99 2005-08-18T06:51:39Z 2020-02-15T06:59:47Z +489 18 2 13490 0.99 2005-08-20T01:29:29Z 2020-02-15T06:59:47Z +490 19 2 18 0.99 2005-05-25T01:10:47Z 2020-02-15T06:59:47Z +491 19 2 110 9.99 2005-05-25T18:43:49Z 2020-02-15T06:59:47Z +492 19 1 179 6.99 2005-05-26T04:26:06Z 2020-02-15T06:59:47Z +493 19 1 337 2.99 2005-05-27T03:22:30Z 2020-02-15T06:59:47Z +494 19 2 591 2.99 2005-05-28T13:11:04Z 2020-02-15T06:59:47Z +495 19 2 696 2.99 2005-05-29T01:59:10Z 2020-02-15T06:59:47Z +496 19 1 2657 2.99 2005-06-19T10:42:59Z 2020-02-15T06:59:47Z +497 19 1 2848 2.99 2005-06-19T22:55:37Z 2020-02-15T06:59:47Z +498 19 2 3423 2.99 2005-06-21T17:38:02Z 2020-02-15T06:59:47Z +499 19 2 3549 4.99 2005-07-06T02:24:55Z 2020-02-15T06:59:47Z +500 19 2 6495 4.99 2005-07-12T02:57:02Z 2020-02-15T06:59:47Z +501 19 1 9157 5.99 2005-07-30T11:06:23Z 2020-02-15T06:59:47Z +502 19 1 9256 0.99 2005-07-30T14:29:29Z 2020-02-15T06:59:47Z +503 19 2 10077 9.99 2005-07-31T20:01:06Z 2020-02-15T06:59:47Z +504 19 1 10176 7.99 2005-07-31T23:40:35Z 2020-02-15T06:59:47Z +505 19 2 11508 8.99 2005-08-16T23:27:36Z 2020-02-15T06:59:47Z +506 19 1 11869 5.99 2005-08-17T14:10:22Z 2020-02-15T06:59:47Z +507 19 1 12211 9.99 2005-08-18T02:31:18Z 2020-02-15T06:59:47Z +508 19 2 12357 2.99 2005-08-18T07:40:52Z 2020-02-15T06:59:47Z +509 19 1 13718 8.99 2005-08-20T09:53:44Z 2020-02-15T06:59:47Z +510 19 2 13804 8.99 2005-08-20T12:46:32Z 2020-02-15T06:59:47Z +511 19 1 14101 4.99 2005-08-21T00:33:03Z 2020-02-15T06:59:47Z +512 19 1 15047 2.99 2005-08-22T09:57:16Z 2020-02-15T06:59:47Z +513 19 2 15529 0.99 2005-08-23T03:46:47Z 2020-02-15T06:59:47Z +514 20 2 202 2.99 2005-05-26T07:27:36Z 2020-02-15T06:59:47Z +515 20 2 497 6.99 2005-05-28T00:54:39Z 2020-02-15T06:59:47Z +516 20 2 546 1.99 2005-05-28T07:16:25Z 2020-02-15T06:59:47Z +517 20 2 1558 0.99 2005-06-16T02:33:53Z 2020-02-15T06:59:47Z +518 20 2 2136 3.99 2005-06-17T21:16:41Z 2020-02-15T06:59:47Z +519 20 2 2343 4.99 2005-06-18T11:46:26Z 2020-02-15T06:59:47Z +520 20 1 3350 4.99 2005-06-21T11:21:38Z 2020-02-15T06:59:47Z +521 20 2 4011 3.99 2005-07-07T00:48:25Z 2020-02-15T06:59:47Z +522 20 1 4407 2.99 2005-07-07T21:39:45Z 2020-02-15T06:59:47Z +523 20 1 5718 2.99 2005-07-10T11:03:20Z 2020-02-15T06:59:47Z +524 20 1 6254 2.99 2005-07-11T15:10:18Z 2020-02-15T06:59:47Z +525 20 2 6267 6.99 2005-07-11T15:53:00Z 2020-02-15T06:59:47Z +526 20 2 7217 4.99 2005-07-27T09:31:44Z 2020-02-15T06:59:47Z +527 20 2 7864 5.99 2005-07-28T10:06:10Z 2020-02-15T06:59:47Z +528 20 2 8127 2.99 2005-07-28T19:45:19Z 2020-02-15T06:59:47Z +529 20 2 9075 4.99 2005-07-30T07:55:14Z 2020-02-15T06:59:47Z +530 20 2 9468 3.99 2005-07-30T22:53:52Z 2020-02-15T06:59:47Z +531 20 2 10284 4.99 2005-08-01T03:33:19Z 2020-02-15T06:59:47Z +532 20 1 10616 7.99 2005-08-01T14:59:50Z 2020-02-15T06:59:47Z +533 20 1 10954 1.99 2005-08-02T03:30:24Z 2020-02-15T06:59:47Z +534 20 1 11821 0.99 2005-08-17T12:27:55Z 2020-02-15T06:59:47Z +535 20 1 12180 0.99 2005-08-18T01:28:15Z 2020-02-15T06:59:47Z +536 20 2 13036 4.99 2005-08-19T08:48:37Z 2020-02-15T06:59:47Z +537 20 1 13137 4.99 2005-08-19T12:26:32Z 2020-02-15T06:59:47Z +538 20 2 13317 2.99 2005-08-19T19:25:42Z 2020-02-15T06:59:47Z +539 20 2 14613 2.99 2005-08-21T18:03:20Z 2020-02-15T06:59:47Z +540 20 2 15057 6.99 2005-08-22T10:19:58Z 2020-02-15T06:59:47Z +541 20 1 15161 1.99 2005-08-22T14:37:22Z 2020-02-15T06:59:47Z +542 20 2 15248 0.99 2005-08-22T17:53:06Z 2020-02-15T06:59:47Z +543 20 1 15460 2.99 2005-08-23T01:10:42Z 2020-02-15T06:59:47Z +544 21 1 260 3.99 2005-05-26T15:42:20Z 2020-02-15T06:59:47Z +545 21 2 463 3.99 2005-05-27T20:11:47Z 2020-02-15T06:59:47Z +546 21 1 570 0.99 2005-05-28T10:15:04Z 2020-02-15T06:59:47Z +547 21 2 2235 7.99 2005-06-18T04:08:50Z 2020-02-15T06:59:47Z +548 21 1 2268 4.99 2005-06-18T06:13:41Z 2020-02-15T06:59:47Z +549 21 1 2393 2.99 2005-06-18T15:37:55Z 2020-02-15T06:59:47Z +550 21 2 2830 4.99 2005-06-19T21:14:33Z 2020-02-15T06:59:47Z +551 21 1 3212 10.99 2005-06-21T01:04:35Z 2020-02-15T06:59:47Z +552 21 2 5107 4.99 2005-07-09T06:42:32Z 2020-02-15T06:59:47Z +553 21 1 5772 3.99 2005-07-10T13:27:40Z 2020-02-15T06:59:47Z +554 21 1 5961 2.99 2005-07-10T23:43:23Z 2020-02-15T06:59:47Z +555 21 2 6943 1.99 2005-07-26T23:28:13Z 2020-02-15T06:59:47Z +556 21 1 7994 0.99 2005-07-28T14:56:54Z 2020-02-15T06:59:47Z +557 21 2 8196 6.99 2005-07-28T22:56:11Z 2020-02-15T06:59:47Z +558 21 2 8862 2.99 2005-07-29T23:49:23Z 2020-02-15T06:59:47Z +559 21 2 9149 0.99 2005-07-30T10:45:12Z 2020-02-15T06:59:47Z +560 21 1 9699 5.99 2005-07-31T07:29:25Z 2020-02-15T06:59:47Z +561 21 2 10570 4.99 2005-08-01T13:23:06Z 2020-02-15T06:59:47Z +562 21 1 10734 0.99 2005-08-01T19:28:47Z 2020-02-15T06:59:47Z +563 21 2 11072 0.99 2005-08-02T07:10:57Z 2020-02-15T06:59:47Z +564 21 2 11970 0.99 2005-08-17T17:53:09Z 2020-02-15T06:59:47Z +565 21 2 12131 2.99 2005-08-17T23:34:16Z 2020-02-15T06:59:47Z +566 21 2 12660 4.99 2005-08-18T19:07:23Z 2020-02-15T06:59:47Z +567 21 1 12774 6.99 2005-08-18T23:34:22Z 2020-02-15T06:59:47Z +568 21 1 13381 2.99 2005-08-19T21:37:57Z 2020-02-15T06:59:47Z +569 21 2 13399 4.99 2005-08-19T22:09:28Z 2020-02-15T06:59:47Z +570 21 1 13411 4.99 2005-08-19T22:43:38Z 2020-02-15T06:59:47Z +571 21 1 13463 8.99 2005-08-20T00:50:54Z 2020-02-15T06:59:47Z +572 21 1 13699 9.99 2005-08-20T09:26:14Z 2020-02-15T06:59:47Z +573 21 1 13740 4.99 2005-08-20T10:48:43Z 2020-02-15T06:59:47Z +574 21 2 14077 8.99 2005-08-20T23:24:07Z 2020-02-15T06:59:47Z +575 21 2 14161 2.99 2005-08-21T02:51:59Z 2020-02-15T06:59:47Z +576 21 2 14446 2.99 2005-08-21T12:10:41Z 2020-02-15T06:59:47Z +577 21 1 14869 4.99 2005-08-22T03:20:26Z 2020-02-15T06:59:47Z +578 21 1 14933 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +579 22 1 370 4.99 2005-05-27T07:49:43Z 2020-02-15T06:59:47Z +580 22 1 556 4.99 2005-05-28T08:31:36Z 2020-02-15T06:59:47Z +581 22 2 820 8.99 2005-05-29T21:07:22Z 2020-02-15T06:59:47Z +582 22 1 3419 2.99 2005-06-21T17:18:01Z 2020-02-15T06:59:47Z +583 22 2 4215 2.99 2005-07-07T12:00:52Z 2020-02-15T06:59:47Z +584 22 1 5294 6.99 2005-07-09T15:23:42Z 2020-02-15T06:59:47Z +585 22 1 5815 2.99 2005-07-10T15:48:19Z 2020-02-15T06:59:47Z +586 22 1 7087 4.99 2005-07-27T04:42:08Z 2020-02-15T06:59:47Z +587 22 1 7705 7.99 2005-07-28T04:02:58Z 2020-02-15T06:59:47Z +588 22 2 9410 0.99 2005-07-30T20:38:05Z 2020-02-15T06:59:47Z +589 22 1 9580 4.99 2005-07-31T03:01:11Z 2020-02-15T06:59:47Z +590 22 1 12023 5.99 2005-08-17T19:54:54Z 2020-02-15T06:59:47Z +591 22 1 12124 2.99 2005-08-17T23:22:46Z 2020-02-15T06:59:47Z +592 22 2 12809 0.99 2005-08-19T00:42:24Z 2020-02-15T06:59:47Z +593 22 2 13060 9.99 2005-08-19T09:43:25Z 2020-02-15T06:59:47Z +594 22 1 14056 2.99 2005-08-20T22:18:53Z 2020-02-15T06:59:47Z +595 22 1 14564 6.99 2005-08-21T16:24:43Z 2020-02-15T06:59:47Z +596 22 1 15134 7.99 2005-08-22T13:18:25Z 2020-02-15T06:59:47Z +597 22 1 15589 6.99 2005-08-23T06:03:31Z 2020-02-15T06:59:47Z +598 22 1 15658 4.99 2005-08-23T08:48:43Z 2020-02-15T06:59:47Z +599 22 1 15793 4.99 2005-08-23T14:06:19Z 2020-02-15T06:59:47Z +600 22 1 12222 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +601 23 1 129 8.99 2005-05-25T21:20:03Z 2020-02-15T06:59:47Z +602 23 1 654 2.99 2005-05-28T20:15:30Z 2020-02-15T06:59:47Z +603 23 2 1090 0.99 2005-05-31T12:03:44Z 2020-02-15T06:59:47Z +604 23 1 2753 1.99 2005-06-19T16:44:35Z 2020-02-15T06:59:47Z +605 23 1 2827 0.99 2005-06-19T20:50:01Z 2020-02-15T06:59:47Z +606 23 1 3015 5.99 2005-06-20T10:48:56Z 2020-02-15T06:59:47Z +607 23 1 3055 4.99 2005-06-20T13:19:58Z 2020-02-15T06:59:47Z +608 23 1 3461 2.99 2005-06-21T21:49:18Z 2020-02-15T06:59:47Z +609 23 2 3736 3.99 2005-07-06T11:43:44Z 2020-02-15T06:59:47Z +610 23 2 3781 2.99 2005-07-06T13:53:41Z 2020-02-15T06:59:47Z +611 23 2 4853 2.99 2005-07-08T18:43:18Z 2020-02-15T06:59:47Z +612 23 1 6213 2.99 2005-07-11T12:43:07Z 2020-02-15T06:59:47Z +613 23 1 6238 2.99 2005-07-11T14:20:18Z 2020-02-15T06:59:47Z +614 23 2 6917 5.99 2005-07-12T22:30:15Z 2020-02-15T06:59:47Z +615 23 1 7155 7.99 2005-07-27T07:18:46Z 2020-02-15T06:59:47Z +616 23 1 8015 2.99 2005-07-28T15:33:03Z 2020-02-15T06:59:47Z +617 23 2 8718 0.99 2005-07-29T17:41:14Z 2020-02-15T06:59:47Z +618 23 2 9209 5.99 2005-07-30T12:55:36Z 2020-02-15T06:59:47Z +619 23 2 9255 9.99 2005-07-30T14:26:46Z 2020-02-15T06:59:47Z +620 23 2 9718 3.99 2005-07-31T08:25:03Z 2020-02-15T06:59:47Z +621 23 1 10132 6.99 2005-07-31T21:50:24Z 2020-02-15T06:59:47Z +622 23 1 10898 2.99 2005-08-02T01:29:57Z 2020-02-15T06:59:47Z +623 23 2 11501 2.99 2005-08-16T23:04:53Z 2020-02-15T06:59:47Z +624 23 2 13290 2.99 2005-08-19T18:31:50Z 2020-02-15T06:59:47Z +625 23 2 13331 4.99 2005-08-19T20:00:25Z 2020-02-15T06:59:47Z +626 23 2 13429 6.99 2005-08-19T23:25:37Z 2020-02-15T06:59:47Z +627 23 2 13511 0.99 2005-08-20T02:21:40Z 2020-02-15T06:59:47Z +628 23 2 13557 0.99 2005-08-20T04:12:41Z 2020-02-15T06:59:47Z +629 23 2 14482 2.99 2005-08-21T13:42:45Z 2020-02-15T06:59:47Z +630 23 2 15532 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +631 24 2 1007 6.99 2005-05-31T01:02:28Z 2020-02-15T06:59:47Z +632 24 2 1077 2.99 2005-05-31T10:22:54Z 2020-02-15T06:59:47Z +633 24 1 1716 2.99 2005-06-16T14:39:31Z 2020-02-15T06:59:47Z +634 24 1 2070 2.99 2005-06-17T16:27:51Z 2020-02-15T06:59:47Z +635 24 2 2116 4.99 2005-06-17T20:16:12Z 2020-02-15T06:59:47Z +636 24 1 2451 5.99 2005-06-18T19:28:02Z 2020-02-15T06:59:47Z +637 24 2 2963 7.99 2005-06-20T07:33:09Z 2020-02-15T06:59:47Z +638 24 2 3649 7.99 2005-07-06T07:32:42Z 2020-02-15T06:59:47Z +639 24 2 4378 2.99 2005-07-07T20:29:08Z 2020-02-15T06:59:47Z +640 24 1 5310 0.99 2005-07-09T16:00:34Z 2020-02-15T06:59:47Z +641 24 2 5648 0.99 2005-07-10T07:09:21Z 2020-02-15T06:59:47Z +642 24 1 6855 4.99 2005-07-12T19:46:29Z 2020-02-15T06:59:47Z +643 24 1 7266 1.99 2005-07-27T11:22:17Z 2020-02-15T06:59:47Z +644 24 1 8947 4.99 2005-07-30T03:15:37Z 2020-02-15T06:59:47Z +645 24 1 9723 0.99 2005-07-31T08:31:18Z 2020-02-15T06:59:47Z +646 24 2 9925 0.99 2005-07-31T15:08:47Z 2020-02-15T06:59:47Z +647 24 2 10491 2.99 2005-08-01T10:38:27Z 2020-02-15T06:59:47Z +648 24 1 11209 2.99 2005-08-02T12:09:45Z 2020-02-15T06:59:47Z +649 24 2 11546 2.99 2005-08-17T00:57:36Z 2020-02-15T06:59:47Z +650 24 2 12165 8.99 2005-08-18T00:53:37Z 2020-02-15T06:59:47Z +651 24 1 12745 2.99 2005-08-18T22:22:45Z 2020-02-15T06:59:47Z +652 24 1 12999 1.99 2005-08-19T07:34:53Z 2020-02-15T06:59:47Z +653 24 2 13058 4.99 2005-08-19T09:40:53Z 2020-02-15T06:59:47Z +654 24 1 13247 0.99 2005-08-19T16:45:59Z 2020-02-15T06:59:47Z +655 24 2 15357 4.99 2005-08-22T21:28:59Z 2020-02-15T06:59:47Z +656 25 1 90 7.99 2005-05-25T14:31:25Z 2020-02-15T06:59:47Z +657 25 2 1033 2.99 2005-05-31T04:50:07Z 2020-02-15T06:59:47Z +658 25 1 1338 4.99 2005-06-15T12:17:34Z 2020-02-15T06:59:47Z +659 25 1 1365 2.99 2005-06-15T14:09:55Z 2020-02-15T06:59:47Z +660 25 2 1754 6.99 2005-06-16T17:13:23Z 2020-02-15T06:59:47Z +661 25 2 2625 8.99 2005-06-19T08:23:11Z 2020-02-15T06:59:47Z +662 25 1 2901 4.99 2005-06-20T02:41:28Z 2020-02-15T06:59:47Z +663 25 1 3447 4.99 2005-06-21T20:53:31Z 2020-02-15T06:59:47Z +664 25 1 4282 2.99 2005-07-07T15:26:31Z 2020-02-15T06:59:47Z +665 25 1 4319 0.99 2005-07-07T17:50:27Z 2020-02-15T06:59:47Z +666 25 2 4404 2.99 2005-07-07T21:31:53Z 2020-02-15T06:59:47Z +667 25 1 5881 2.99 2005-07-10T19:19:43Z 2020-02-15T06:59:47Z +668 25 1 6653 4.99 2005-07-12T11:06:17Z 2020-02-15T06:59:47Z +669 25 2 6905 2.99 2005-07-12T22:02:18Z 2020-02-15T06:59:47Z +670 25 2 8667 2.99 2005-07-29T15:40:57Z 2020-02-15T06:59:47Z +671 25 2 8878 0.99 2005-07-30T00:15:57Z 2020-02-15T06:59:47Z +672 25 1 9140 8.99 2005-07-30T10:12:01Z 2020-02-15T06:59:47Z +673 25 2 9334 2.99 2005-07-30T17:56:38Z 2020-02-15T06:59:47Z +674 25 2 9922 2.99 2005-07-31T14:59:37Z 2020-02-15T06:59:47Z +675 25 2 10103 2.99 2005-07-31T20:49:13Z 2020-02-15T06:59:47Z +676 25 1 10324 5.99 2005-08-01T04:49:06Z 2020-02-15T06:59:47Z +677 25 2 10860 2.99 2005-08-02T00:12:32Z 2020-02-15T06:59:47Z +678 25 1 10916 2.99 2005-08-02T02:05:59Z 2020-02-15T06:59:47Z +679 25 1 11642 0.99 2005-08-17T04:48:05Z 2020-02-15T06:59:47Z +680 25 1 12922 0.99 2005-08-19T04:48:48Z 2020-02-15T06:59:47Z +681 25 1 14193 4.99 2005-08-21T03:38:27Z 2020-02-15T06:59:47Z +682 25 1 14236 4.99 2005-08-21T05:13:16Z 2020-02-15T06:59:47Z +683 25 1 15512 0.99 2005-08-23T02:57:30Z 2020-02-15T06:59:47Z +684 25 1 15972 5.99 2005-08-23T20:00:30Z 2020-02-15T06:59:47Z +685 26 1 796 2.99 2005-05-29T16:59:44Z 2020-02-15T06:59:47Z +686 26 2 1105 2.99 2005-05-31T14:33:56Z 2020-02-15T06:59:47Z +687 26 1 1440 5.99 2005-06-15T18:53:14Z 2020-02-15T06:59:47Z +688 26 2 1706 4.99 2005-06-16T14:01:02Z 2020-02-15T06:59:47Z +689 26 1 2093 9.99 2005-06-17T18:14:08Z 2020-02-15T06:59:47Z +690 26 2 2416 3.99 2005-06-18T17:07:34Z 2020-02-15T06:59:47Z +691 26 2 2421 6.99 2005-06-18T17:25:05Z 2020-02-15T06:59:47Z +692 26 1 2532 4.99 2005-06-19T01:27:46Z 2020-02-15T06:59:47Z +693 26 1 2745 4.99 2005-06-19T16:21:19Z 2020-02-15T06:59:47Z +694 26 1 4065 2.99 2005-07-07T04:32:28Z 2020-02-15T06:59:47Z +695 26 1 4274 4.99 2005-07-07T14:42:04Z 2020-02-15T06:59:47Z +696 26 1 4382 4.99 2005-07-07T20:41:03Z 2020-02-15T06:59:47Z +697 26 2 4402 0.99 2005-07-07T21:28:46Z 2020-02-15T06:59:47Z +698 26 1 4431 6.99 2005-07-07T22:39:02Z 2020-02-15T06:59:47Z +699 26 1 4536 3.99 2005-07-08T03:43:22Z 2020-02-15T06:59:47Z +700 26 1 4641 6.99 2005-07-08T09:09:46Z 2020-02-15T06:59:47Z +701 26 1 5437 2.99 2005-07-09T21:32:29Z 2020-02-15T06:59:47Z +702 26 1 6149 1.99 2005-07-11T09:19:31Z 2020-02-15T06:59:47Z +703 26 2 6243 2.99 2005-07-11T14:53:25Z 2020-02-15T06:59:47Z +704 26 2 7328 0.99 2005-07-27T13:55:18Z 2020-02-15T06:59:47Z +705 26 1 8241 4.99 2005-07-29T00:33:36Z 2020-02-15T06:59:47Z +706 26 1 9484 0.99 2005-07-30T23:31:40Z 2020-02-15T06:59:47Z +707 26 1 10386 3.99 2005-08-01T06:42:20Z 2020-02-15T06:59:47Z +708 26 1 10996 3.99 2005-08-02T04:48:11Z 2020-02-15T06:59:47Z +709 26 2 11314 2.99 2005-08-02T16:04:08Z 2020-02-15T06:59:47Z +710 26 1 11338 0.99 2005-08-02T17:00:12Z 2020-02-15T06:59:47Z +711 26 1 11744 5.99 2005-08-17T08:54:30Z 2020-02-15T06:59:47Z +712 26 2 13111 4.99 2005-08-19T11:25:10Z 2020-02-15T06:59:47Z +713 26 2 14183 4.99 2005-08-21T03:24:29Z 2020-02-15T06:59:47Z +714 26 2 14192 8.99 2005-08-21T03:37:42Z 2020-02-15T06:59:47Z +715 26 2 14603 1.99 2005-08-21T17:51:06Z 2020-02-15T06:59:47Z +716 26 1 14677 7.99 2005-08-21T20:12:30Z 2020-02-15T06:59:47Z +717 26 1 15384 2.99 2005-08-22T22:34:44Z 2020-02-15T06:59:47Z +718 26 1 15722 7.99 2005-08-23T11:16:29Z 2020-02-15T06:59:47Z +719 27 2 787 2.99 2005-05-29T16:03:03Z 2020-02-15T06:59:47Z +720 27 1 1310 4.99 2005-06-15T10:11:42Z 2020-02-15T06:59:47Z +721 27 2 1480 4.99 2005-06-15T21:17:17Z 2020-02-15T06:59:47Z +722 27 2 1699 2.99 2005-06-16T13:05:09Z 2020-02-15T06:59:47Z +723 27 2 1960 3.99 2005-06-17T08:59:57Z 2020-02-15T06:59:47Z +724 27 2 2512 2.99 2005-06-18T23:48:47Z 2020-02-15T06:59:47Z +725 27 1 2815 4.99 2005-06-19T20:03:29Z 2020-02-15T06:59:47Z +726 27 1 3038 1.99 2005-06-20T12:28:59Z 2020-02-15T06:59:47Z +727 27 2 3420 3.99 2005-06-21T17:22:36Z 2020-02-15T06:59:47Z +728 27 2 4038 0.99 2005-07-07T02:52:53Z 2020-02-15T06:59:47Z +729 27 1 4510 5.99 2005-07-08T02:34:51Z 2020-02-15T06:59:47Z +730 27 1 5552 0.99 2005-07-10T03:01:19Z 2020-02-15T06:59:47Z +731 27 1 5736 4.99 2005-07-10T11:45:48Z 2020-02-15T06:59:47Z +732 27 2 6115 0.99 2005-07-11T07:36:50Z 2020-02-15T06:59:47Z +733 27 2 6562 5.99 2005-07-12T05:26:26Z 2020-02-15T06:59:47Z +734 27 2 6658 4.99 2005-07-12T11:13:21Z 2020-02-15T06:59:47Z +735 27 1 7927 1.99 2005-07-28T12:13:42Z 2020-02-15T06:59:47Z +736 27 2 9244 0.99 2005-07-30T14:06:53Z 2020-02-15T06:59:47Z +737 27 2 9636 5.99 2005-07-31T05:12:59Z 2020-02-15T06:59:47Z +738 27 1 9673 7.99 2005-07-31T06:34:55Z 2020-02-15T06:59:47Z +739 27 1 9908 4.99 2005-07-31T14:39:52Z 2020-02-15T06:59:47Z +740 27 1 10794 7.99 2005-08-01T21:51:15Z 2020-02-15T06:59:47Z +741 27 1 10852 4.99 2005-08-02T00:00:33Z 2020-02-15T06:59:47Z +742 27 1 11234 0.99 2005-08-02T13:12:17Z 2020-02-15T06:59:47Z +743 27 1 11661 8.99 2005-08-17T05:25:57Z 2020-02-15T06:59:47Z +744 27 2 11740 6.99 2005-08-17T08:48:31Z 2020-02-15T06:59:47Z +745 27 2 12021 5.99 2005-08-17T19:52:43Z 2020-02-15T06:59:47Z +746 27 2 12461 0.99 2005-08-18T11:28:14Z 2020-02-15T06:59:47Z +747 27 1 12531 2.99 2005-08-18T13:57:50Z 2020-02-15T06:59:47Z +748 27 2 13816 4.99 2005-08-20T13:13:56Z 2020-02-15T06:59:47Z +749 27 1 15048 0.99 2005-08-22T10:00:04Z 2020-02-15T06:59:47Z +750 28 2 388 2.99 2005-05-27T10:37:27Z 2020-02-15T06:59:47Z +751 28 1 868 2.99 2005-05-30T04:19:55Z 2020-02-15T06:59:47Z +752 28 2 1240 2.99 2005-06-15T04:58:07Z 2020-02-15T06:59:47Z +753 28 1 1543 4.99 2005-06-16T01:24:08Z 2020-02-15T06:59:47Z +754 28 2 2299 3.99 2005-06-18T08:18:52Z 2020-02-15T06:59:47Z +755 28 2 2604 0.99 2005-06-19T06:30:10Z 2020-02-15T06:59:47Z +756 28 1 3231 0.99 2005-06-21T02:25:00Z 2020-02-15T06:59:47Z +757 28 1 3845 0.99 2005-07-06T16:38:14Z 2020-02-15T06:59:47Z +758 28 2 4704 0.99 2005-07-08T11:45:35Z 2020-02-15T06:59:47Z +759 28 2 4951 4.99 2005-07-08T22:58:21Z 2020-02-15T06:59:47Z +760 28 2 5653 2.99 2005-07-10T07:21:27Z 2020-02-15T06:59:47Z +761 28 1 5817 5.99 2005-07-10T15:49:12Z 2020-02-15T06:59:47Z +762 28 2 6032 0.99 2005-07-11T02:49:01Z 2020-02-15T06:59:47Z +763 28 2 6476 0.99 2005-07-12T01:37:48Z 2020-02-15T06:59:47Z +764 28 1 7580 9.99 2005-07-27T23:07:40Z 2020-02-15T06:59:47Z +765 28 1 8464 4.99 2005-07-29T08:18:20Z 2020-02-15T06:59:47Z +766 28 1 8901 2.99 2005-07-30T01:07:12Z 2020-02-15T06:59:47Z +767 28 2 9544 2.99 2005-07-31T01:44:51Z 2020-02-15T06:59:47Z +768 28 2 9593 4.99 2005-07-31T03:22:30Z 2020-02-15T06:59:47Z +769 28 2 9705 4.99 2005-07-31T07:40:33Z 2020-02-15T06:59:47Z +770 28 2 10116 2.99 2005-07-31T21:14:02Z 2020-02-15T06:59:47Z +771 28 2 10294 6.99 2005-08-01T03:48:12Z 2020-02-15T06:59:47Z +772 28 1 11444 2.99 2005-08-02T20:32:55Z 2020-02-15T06:59:47Z +773 28 1 11856 3.99 2005-08-17T13:44:49Z 2020-02-15T06:59:47Z +774 28 2 12190 2.99 2005-08-18T01:54:44Z 2020-02-15T06:59:47Z +775 28 1 12359 0.99 2005-08-18T07:44:05Z 2020-02-15T06:59:47Z +776 28 1 12708 2.99 2005-08-18T20:59:17Z 2020-02-15T06:59:47Z +777 28 2 13783 4.99 2005-08-20T12:11:03Z 2020-02-15T06:59:47Z +778 28 2 14540 2.99 2005-08-21T15:34:23Z 2020-02-15T06:59:47Z +779 28 1 15445 4.99 2005-08-23T00:48:29Z 2020-02-15T06:59:47Z +780 28 1 15491 2.99 2005-08-23T02:08:40Z 2020-02-15T06:59:47Z +781 28 2 12938 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +782 29 2 194 1.99 2005-05-26T06:52:33Z 2020-02-15T06:59:47Z +783 29 1 2655 0.99 2005-06-19T10:38:42Z 2020-02-15T06:59:47Z +784 29 1 2673 0.99 2005-06-19T11:42:20Z 2020-02-15T06:59:47Z +785 29 1 2701 7.99 2005-06-19T13:33:06Z 2020-02-15T06:59:47Z +786 29 1 2735 2.99 2005-06-19T15:42:07Z 2020-02-15T06:59:47Z +787 29 2 2801 2.99 2005-06-19T19:18:09Z 2020-02-15T06:59:47Z +788 29 2 2923 2.99 2005-06-20T04:16:07Z 2020-02-15T06:59:47Z +789 29 1 3324 2.99 2005-06-21T08:49:16Z 2020-02-15T06:59:47Z +790 29 2 4262 6.99 2005-07-07T14:24:30Z 2020-02-15T06:59:47Z +791 29 1 4313 0.99 2005-07-07T17:36:56Z 2020-02-15T06:59:47Z +792 29 2 4535 0.99 2005-07-08T03:40:46Z 2020-02-15T06:59:47Z +793 29 2 5442 10.99 2005-07-09T21:55:19Z 2020-02-15T06:59:47Z +794 29 1 5857 1.99 2005-07-10T17:59:29Z 2020-02-15T06:59:47Z +795 29 2 7237 3.99 2005-07-27T10:12:36Z 2020-02-15T06:59:47Z +796 29 1 7451 6.99 2005-07-27T18:18:41Z 2020-02-15T06:59:47Z +797 29 1 7453 0.99 2005-07-27T18:27:13Z 2020-02-15T06:59:47Z +798 29 2 8673 2.99 2005-07-29T15:50:14Z 2020-02-15T06:59:47Z +799 29 2 9392 4.99 2005-07-30T19:50:13Z 2020-02-15T06:59:47Z +800 29 1 9946 4.99 2005-07-31T15:48:54Z 2020-02-15T06:59:47Z +801 29 1 10543 5.99 2005-08-01T12:36:09Z 2020-02-15T06:59:47Z +802 29 2 10899 1.99 2005-08-02T01:30:21Z 2020-02-15T06:59:47Z +803 29 1 11079 4.99 2005-08-02T07:29:10Z 2020-02-15T06:59:47Z +804 29 2 11962 2.99 2005-08-17T17:34:38Z 2020-02-15T06:59:47Z +805 29 1 12488 4.99 2005-08-18T12:48:22Z 2020-02-15T06:59:47Z +806 29 1 12508 2.99 2005-08-18T13:20:13Z 2020-02-15T06:59:47Z +807 29 2 12569 6.99 2005-08-18T15:20:46Z 2020-02-15T06:59:47Z +808 29 2 12615 6.99 2005-08-18T17:16:07Z 2020-02-15T06:59:47Z +809 29 2 13173 2.99 2005-08-19T13:50:36Z 2020-02-15T06:59:47Z +810 29 1 13436 0.99 2005-08-19T23:36:25Z 2020-02-15T06:59:47Z +811 29 2 13777 2.99 2005-08-20T12:03:35Z 2020-02-15T06:59:47Z +812 29 1 13832 3.99 2005-08-20T14:00:25Z 2020-02-15T06:59:47Z +813 29 1 14174 0.99 2005-08-21T03:01:45Z 2020-02-15T06:59:47Z +814 29 1 14703 4.99 2005-08-21T21:01:19Z 2020-02-15T06:59:47Z +815 29 1 14985 7.99 2005-08-22T07:35:56Z 2020-02-15T06:59:47Z +816 29 1 14997 5.99 2005-08-22T07:53:00Z 2020-02-15T06:59:47Z +817 29 2 15577 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +818 30 2 1874 1.99 2005-06-17T02:39:20Z 2020-02-15T06:59:47Z +819 30 2 1895 2.99 2005-06-17T04:25:12Z 2020-02-15T06:59:47Z +820 30 2 2154 4.99 2005-06-17T22:59:42Z 2020-02-15T06:59:47Z +821 30 2 2730 2.99 2005-06-19T15:10:09Z 2020-02-15T06:59:47Z +822 30 1 3964 4.99 2005-07-06T22:23:02Z 2020-02-15T06:59:47Z +823 30 2 4471 2.99 2005-07-08T00:21:29Z 2020-02-15T06:59:47Z +824 30 2 4642 2.99 2005-07-08T09:13:28Z 2020-02-15T06:59:47Z +825 30 2 5028 5.99 2005-07-09T02:34:45Z 2020-02-15T06:59:47Z +826 30 1 5108 9.99 2005-07-09T06:44:30Z 2020-02-15T06:59:47Z +827 30 1 5289 0.99 2005-07-09T15:14:08Z 2020-02-15T06:59:47Z +828 30 2 5972 7.99 2005-07-11T00:08:54Z 2020-02-15T06:59:47Z +829 30 1 6249 0.99 2005-07-11T15:02:02Z 2020-02-15T06:59:47Z +830 30 2 6359 2.99 2005-07-11T21:06:17Z 2020-02-15T06:59:47Z +831 30 2 7394 2.99 2005-07-27T16:03:08Z 2020-02-15T06:59:47Z +832 30 2 7769 4.99 2005-07-28T06:45:23Z 2020-02-15T06:59:47Z +833 30 1 8030 4.99 2005-07-28T16:12:53Z 2020-02-15T06:59:47Z +834 30 2 8038 4.99 2005-07-28T16:32:55Z 2020-02-15T06:59:47Z +835 30 1 8083 4.99 2005-07-28T18:09:48Z 2020-02-15T06:59:47Z +836 30 1 8641 2.99 2005-07-29T14:37:30Z 2020-02-15T06:59:47Z +837 30 2 9309 2.99 2005-07-30T16:55:53Z 2020-02-15T06:59:47Z +838 30 2 9551 0.99 2005-07-31T02:04:58Z 2020-02-15T06:59:47Z +839 30 1 9641 0.99 2005-07-31T05:33:48Z 2020-02-15T06:59:47Z +840 30 1 9998 2.99 2005-07-31T17:40:35Z 2020-02-15T06:59:47Z +841 30 1 10235 6.99 2005-08-01T01:57:48Z 2020-02-15T06:59:47Z +842 30 1 12240 2.99 2005-08-18T03:27:11Z 2020-02-15T06:59:48Z +843 30 1 12546 2.99 2005-08-18T14:29:37Z 2020-02-15T06:59:48Z +844 30 2 12758 0.99 2005-08-18T22:58:34Z 2020-02-15T06:59:48Z +845 30 1 13435 0.99 2005-08-19T23:35:44Z 2020-02-15T06:59:48Z +846 30 1 13682 4.99 2005-08-20T08:50:39Z 2020-02-15T06:59:48Z +847 30 1 14339 0.99 2005-08-21T08:37:15Z 2020-02-15T06:59:48Z +848 30 1 14585 2.99 2005-08-21T17:18:33Z 2020-02-15T06:59:48Z +849 30 1 15063 4.99 2005-08-22T10:39:51Z 2020-02-15T06:59:48Z +850 30 1 15544 4.99 2005-08-23T04:17:56Z 2020-02-15T06:59:48Z +851 30 2 15829 2.99 2005-08-23T15:17:14Z 2020-02-15T06:59:48Z +852 31 2 1656 4.99 2005-06-16T10:05:40Z 2020-02-15T06:59:48Z +853 31 1 1838 1.99 2005-06-16T23:20:16Z 2020-02-15T06:59:48Z +854 31 1 2233 0.99 2005-06-18T03:57:36Z 2020-02-15T06:59:48Z +855 31 2 2341 6.99 2005-06-18T11:35:30Z 2020-02-15T06:59:48Z +856 31 1 2396 7.99 2005-06-18T15:49:48Z 2020-02-15T06:59:48Z +857 31 2 2438 0.99 2005-06-18T18:34:21Z 2020-02-15T06:59:48Z +858 31 1 2530 0.99 2005-06-19T01:20:00Z 2020-02-15T06:59:48Z +859 31 2 2648 4.99 2005-06-19T10:06:20Z 2020-02-15T06:59:48Z +860 31 2 3117 2.99 2005-06-20T18:05:15Z 2020-02-15T06:59:48Z +861 31 2 3172 1.99 2005-06-20T22:19:25Z 2020-02-15T06:59:48Z +862 31 1 3205 0.99 2005-06-21T00:38:47Z 2020-02-15T06:59:48Z +863 31 1 3701 4.99 2005-07-06T10:12:45Z 2020-02-15T06:59:48Z +864 31 2 3967 4.99 2005-07-06T22:45:10Z 2020-02-15T06:59:48Z +865 31 1 4122 6.99 2005-07-07T07:15:35Z 2020-02-15T06:59:48Z +866 31 2 4738 9.99 2005-07-08T13:24:58Z 2020-02-15T06:59:48Z +867 31 1 6208 3.99 2005-07-11T12:34:56Z 2020-02-15T06:59:48Z +868 31 2 6580 4.99 2005-07-12T06:26:10Z 2020-02-15T06:59:48Z +869 31 1 7000 1.99 2005-07-27T01:23:24Z 2020-02-15T06:59:48Z +870 31 2 7138 3.99 2005-07-27T06:47:13Z 2020-02-15T06:59:48Z +871 31 2 7178 2.99 2005-07-27T08:09:25Z 2020-02-15T06:59:48Z +872 31 2 7464 2.99 2005-07-27T18:49:42Z 2020-02-15T06:59:48Z +873 31 2 8997 0.99 2005-07-30T04:53:56Z 2020-02-15T06:59:48Z +874 31 2 12085 4.99 2005-08-17T22:17:09Z 2020-02-15T06:59:48Z +875 31 1 12377 0.99 2005-08-18T08:26:05Z 2020-02-15T06:59:48Z +876 31 2 15682 6.99 2005-08-23T09:37:34Z 2020-02-15T06:59:48Z +877 31 2 15816 6.99 2005-08-23T14:58:06Z 2020-02-15T06:59:48Z +878 32 2 483 4.99 2005-05-27T23:00:25Z 2020-02-15T06:59:48Z +879 32 2 803 4.99 2005-05-29T17:52:30Z 2020-02-15T06:59:48Z +880 32 2 1067 4.99 2005-05-31T09:12:13Z 2020-02-15T06:59:48Z +881 32 2 1887 6.99 2005-06-17T03:53:18Z 2020-02-15T06:59:48Z +882 32 2 2160 0.99 2005-06-17T23:39:11Z 2020-02-15T06:59:48Z +883 32 2 2624 5.99 2005-06-19T08:22:09Z 2020-02-15T06:59:48Z +884 32 2 2891 1.99 2005-06-20T02:02:05Z 2020-02-15T06:59:48Z +885 32 1 3500 2.99 2005-07-06T00:11:13Z 2020-02-15T06:59:48Z +886 32 1 4434 2.99 2005-07-07T22:48:34Z 2020-02-15T06:59:48Z +887 32 2 4771 2.99 2005-07-08T15:33:32Z 2020-02-15T06:59:48Z +888 32 2 4899 0.99 2005-07-08T20:37:11Z 2020-02-15T06:59:48Z +889 32 1 5307 9.99 2005-07-09T15:57:15Z 2020-02-15T06:59:48Z +890 32 1 5767 0.99 2005-07-10T13:13:18Z 2020-02-15T06:59:48Z +891 32 1 5954 2.99 2005-07-10T23:22:01Z 2020-02-15T06:59:48Z +892 32 1 6122 3.99 2005-07-11T07:58:07Z 2020-02-15T06:59:48Z +893 32 2 6450 2.99 2005-07-12T00:49:05Z 2020-02-15T06:59:48Z +894 32 1 7084 6.99 2005-07-27T04:34:07Z 2020-02-15T06:59:48Z +895 32 1 7589 5.99 2005-07-27T23:23:36Z 2020-02-15T06:59:48Z +896 32 1 7793 2.99 2005-07-28T07:26:14Z 2020-02-15T06:59:48Z +897 32 2 8390 5.99 2005-07-29T05:52:26Z 2020-02-15T06:59:48Z +898 32 2 8453 2.99 2005-07-29T07:46:29Z 2020-02-15T06:59:48Z +899 32 2 8914 2.99 2005-07-30T01:42:03Z 2020-02-15T06:59:48Z +900 32 1 11135 4.99 2005-08-02T09:22:25Z 2020-02-15T06:59:48Z +901 32 2 11831 4.99 2005-08-17T12:54:47Z 2020-02-15T06:59:48Z +902 32 2 12414 9.99 2005-08-18T09:50:40Z 2020-02-15T06:59:48Z +903 32 1 13736 8.99 2005-08-20T10:31:23Z 2020-02-15T06:59:48Z +904 32 1 13931 1.99 2005-08-20T17:16:10Z 2020-02-15T06:59:48Z +905 32 1 14075 0.99 2005-08-20T23:18:54Z 2020-02-15T06:59:48Z +906 32 2 14570 5.99 2005-08-21T16:32:32Z 2020-02-15T06:59:48Z +907 33 1 165 2.99 2005-05-26T02:28:36Z 2020-02-15T06:59:48Z +908 33 1 1301 10.99 2005-06-15T09:46:33Z 2020-02-15T06:59:48Z +909 33 2 3173 8.99 2005-06-20T22:21:10Z 2020-02-15T06:59:48Z +910 33 1 4095 5.99 2005-07-07T06:01:48Z 2020-02-15T06:59:48Z +911 33 1 5421 0.99 2005-07-09T20:49:12Z 2020-02-15T06:59:48Z +912 33 1 5723 4.99 2005-07-10T11:14:48Z 2020-02-15T06:59:48Z +913 33 2 6280 0.99 2005-07-11T16:36:17Z 2020-02-15T06:59:48Z +914 33 1 7992 4.99 2005-07-28T14:53:06Z 2020-02-15T06:59:48Z +915 33 1 9040 4.99 2005-07-30T06:31:45Z 2020-02-15T06:59:48Z +916 33 2 9085 4.99 2005-07-30T08:17:24Z 2020-02-15T06:59:48Z +917 33 1 9254 1.99 2005-07-30T14:26:11Z 2020-02-15T06:59:48Z +918 33 2 10335 2.99 2005-08-01T04:59:30Z 2020-02-15T06:59:48Z +919 33 1 10870 4.99 2005-08-02T00:27:12Z 2020-02-15T06:59:48Z +920 33 1 13241 7.99 2005-08-19T16:25:00Z 2020-02-15T06:59:48Z +921 33 1 13858 2.99 2005-08-20T14:50:57Z 2020-02-15T06:59:48Z +922 33 1 13958 7.99 2005-08-20T18:11:44Z 2020-02-15T06:59:48Z +923 33 1 14002 0.99 2005-08-20T20:12:19Z 2020-02-15T06:59:48Z +924 33 1 14623 0.99 2005-08-21T18:29:13Z 2020-02-15T06:59:48Z +925 33 1 15096 5.99 2005-08-22T11:43:04Z 2020-02-15T06:59:48Z +926 33 2 15115 2.99 2005-08-22T12:28:01Z 2020-02-15T06:59:48Z +927 33 1 12277 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +928 34 1 1900 4.99 2005-06-17T04:29:58Z 2020-02-15T06:59:48Z +929 34 2 2257 5.99 2005-06-18T05:29:52Z 2020-02-15T06:59:48Z +930 34 1 3150 0.99 2005-06-20T20:35:28Z 2020-02-15T06:59:48Z +931 34 2 3508 3.99 2005-07-06T00:24:25Z 2020-02-15T06:59:48Z +932 34 1 3911 2.99 2005-07-06T20:09:11Z 2020-02-15T06:59:48Z +933 34 1 5188 4.99 2005-07-09T10:22:31Z 2020-02-15T06:59:48Z +934 34 2 5643 4.99 2005-07-10T06:49:00Z 2020-02-15T06:59:48Z +935 34 2 5918 5.99 2005-07-10T21:32:06Z 2020-02-15T06:59:48Z +936 34 2 7015 2.99 2005-07-27T02:15:01Z 2020-02-15T06:59:48Z +937 34 2 7124 2.99 2005-07-27T06:09:30Z 2020-02-15T06:59:48Z +938 34 1 7532 0.99 2005-07-27T21:20:52Z 2020-02-15T06:59:48Z +939 34 1 9160 3.99 2005-07-30T11:17:33Z 2020-02-15T06:59:48Z +940 34 1 10523 0.99 2005-08-01T11:52:32Z 2020-02-15T06:59:48Z +941 34 1 10615 4.99 2005-08-01T14:58:14Z 2020-02-15T06:59:48Z +942 34 2 11096 0.99 2005-08-02T08:05:19Z 2020-02-15T06:59:48Z +943 34 1 11505 2.99 2005-08-16T23:18:47Z 2020-02-15T06:59:48Z +944 34 2 11701 4.99 2005-08-17T07:15:47Z 2020-02-15T06:59:48Z +945 34 2 12286 2.99 2005-08-18T04:57:59Z 2020-02-15T06:59:48Z +946 34 1 12599 2.99 2005-08-18T16:42:45Z 2020-02-15T06:59:48Z +947 34 1 12651 0.99 2005-08-18T18:36:16Z 2020-02-15T06:59:48Z +948 34 1 13371 4.99 2005-08-19T21:21:47Z 2020-02-15T06:59:48Z +949 34 2 13949 2.99 2005-08-20T17:55:13Z 2020-02-15T06:59:48Z +950 34 1 14686 5.99 2005-08-21T20:32:08Z 2020-02-15T06:59:48Z +951 34 2 14701 7.99 2005-08-21T20:54:32Z 2020-02-15T06:59:48Z +952 35 2 47 3.99 2005-05-25T06:05:20Z 2020-02-15T06:59:48Z +953 35 1 424 6.99 2005-05-27T15:34:01Z 2020-02-15T06:59:48Z +954 35 1 1579 0.99 2005-06-16T04:09:08Z 2020-02-15T06:59:48Z +955 35 1 1989 2.99 2005-06-17T10:47:24Z 2020-02-15T06:59:48Z +956 35 1 2229 4.99 2005-06-18T03:50:18Z 2020-02-15T06:59:48Z +957 35 1 2231 0.99 2005-06-18T03:52:14Z 2020-02-15T06:59:48Z +958 35 1 2743 2.99 2005-06-19T16:15:56Z 2020-02-15T06:59:48Z +959 35 2 3112 4.99 2005-06-20T17:53:30Z 2020-02-15T06:59:48Z +960 35 2 3597 2.99 2005-07-06T05:03:59Z 2020-02-15T06:59:48Z +961 35 2 4098 4.99 2005-07-07T06:14:51Z 2020-02-15T06:59:48Z +962 35 2 4990 0.99 2005-07-09T00:48:49Z 2020-02-15T06:59:48Z +963 35 1 5013 2.99 2005-07-09T01:46:45Z 2020-02-15T06:59:48Z +964 35 2 5323 0.99 2005-07-09T16:34:07Z 2020-02-15T06:59:48Z +965 35 1 5916 5.99 2005-07-10T21:26:31Z 2020-02-15T06:59:48Z +966 35 1 5963 0.99 2005-07-10T23:47:08Z 2020-02-15T06:59:48Z +967 35 1 6147 5.99 2005-07-11T09:13:08Z 2020-02-15T06:59:48Z +968 35 1 6401 4.99 2005-07-11T22:44:34Z 2020-02-15T06:59:48Z +969 35 1 6565 4.99 2005-07-12T05:39:50Z 2020-02-15T06:59:48Z +970 35 1 6572 4.99 2005-07-12T05:56:38Z 2020-02-15T06:59:48Z +971 35 1 7140 4.99 2005-07-27T06:54:12Z 2020-02-15T06:59:48Z +972 35 1 8822 6.99 2005-07-29T22:20:21Z 2020-02-15T06:59:48Z +973 35 1 8971 5.99 2005-07-30T04:03:58Z 2020-02-15T06:59:48Z +974 35 2 9033 2.99 2005-07-30T06:07:42Z 2020-02-15T06:59:48Z +975 35 1 9579 6.99 2005-07-31T02:59:20Z 2020-02-15T06:59:48Z +976 35 1 11298 1.99 2005-08-02T15:32:32Z 2020-02-15T06:59:48Z +977 35 1 11452 7.99 2005-08-02T20:59:52Z 2020-02-15T06:59:48Z +978 35 1 11645 4.99 2005-08-17T04:50:56Z 2020-02-15T06:59:48Z +979 35 1 12055 4.99 2005-08-17T21:02:19Z 2020-02-15T06:59:48Z +980 35 1 13735 2.99 2005-08-20T10:31:01Z 2020-02-15T06:59:48Z +981 35 1 14110 0.99 2005-08-21T00:53:09Z 2020-02-15T06:59:48Z +982 35 2 14124 2.99 2005-08-21T01:31:51Z 2020-02-15T06:59:48Z +983 35 2 14735 4.99 2005-08-21T22:25:09Z 2020-02-15T06:59:48Z +984 36 1 349 0.99 2005-05-27T04:53:11Z 2020-02-15T06:59:48Z +985 36 1 716 0.99 2005-05-29T04:35:29Z 2020-02-15T06:59:48Z +986 36 2 2741 0.99 2005-06-19T16:05:41Z 2020-02-15T06:59:48Z +987 36 2 4135 0.99 2005-07-07T08:15:03Z 2020-02-15T06:59:48Z +988 36 2 4560 4.99 2005-07-08T04:58:48Z 2020-02-15T06:59:48Z +989 36 2 4762 4.99 2005-07-08T14:54:42Z 2020-02-15T06:59:48Z +990 36 1 5403 0.99 2005-07-09T20:07:09Z 2020-02-15T06:59:48Z +991 36 2 6030 0.99 2005-07-11T02:37:51Z 2020-02-15T06:59:48Z +992 36 1 7205 6.99 2005-07-27T09:06:13Z 2020-02-15T06:59:48Z +993 36 1 7647 0.99 2005-07-28T01:35:17Z 2020-02-15T06:59:48Z +994 36 2 7919 6.99 2005-07-28T11:59:45Z 2020-02-15T06:59:48Z +995 36 2 8099 0.99 2005-07-28T18:35:12Z 2020-02-15T06:59:48Z +996 36 1 8391 2.99 2005-07-29T05:52:50Z 2020-02-15T06:59:48Z +997 36 1 8952 4.99 2005-07-30T03:20:38Z 2020-02-15T06:59:48Z +998 36 1 9369 2.99 2005-07-30T18:52:19Z 2020-02-15T06:59:48Z +999 36 2 9805 0.99 2005-07-31T11:11:10Z 2020-02-15T06:59:48Z +1000 36 2 10525 2.99 2005-08-01T11:53:17Z 2020-02-15T06:59:48Z +1001 36 2 10761 2.99 2005-08-01T20:25:35Z 2020-02-15T06:59:48Z +1002 36 1 10963 0.99 2005-08-02T03:48:17Z 2020-02-15T06:59:48Z +1003 36 2 10964 6.99 2005-08-02T03:56:23Z 2020-02-15T06:59:48Z +1004 36 2 11616 4.99 2005-08-17T04:00:01Z 2020-02-15T06:59:48Z +1005 36 1 11813 4.99 2005-08-17T12:06:54Z 2020-02-15T06:59:48Z +1006 36 2 13562 2.99 2005-08-20T04:31:45Z 2020-02-15T06:59:48Z +1007 36 2 13564 1.99 2005-08-20T04:34:46Z 2020-02-15T06:59:48Z +1008 36 1 13674 4.99 2005-08-20T08:30:54Z 2020-02-15T06:59:48Z +1009 36 1 14647 9.99 2005-08-21T19:15:33Z 2020-02-15T06:59:48Z +1010 36 2 15657 4.99 2005-08-23T08:42:40Z 2020-02-15T06:59:48Z +1011 37 1 25 0.99 2005-05-25T03:21:20Z 2020-02-15T06:59:48Z +1012 37 1 923 2.99 2005-05-30T11:58:50Z 2020-02-15T06:59:48Z +1013 37 1 1583 4.99 2005-06-16T04:44:23Z 2020-02-15T06:59:48Z +1014 37 2 1812 1.99 2005-06-16T21:08:46Z 2020-02-15T06:59:48Z +1015 37 2 1854 3.99 2005-06-17T00:43:57Z 2020-02-15T06:59:48Z +1016 37 2 3472 7.99 2005-07-05T22:56:33Z 2020-02-15T06:59:48Z +1017 37 1 3734 5.99 2005-07-06T11:40:27Z 2020-02-15T06:59:48Z +1018 37 1 5425 5.99 2005-07-09T21:02:26Z 2020-02-15T06:59:48Z +1019 37 2 7939 0.99 2005-07-28T12:45:47Z 2020-02-15T06:59:48Z +1020 37 1 8419 9.99 2005-07-29T06:54:48Z 2020-02-15T06:59:48Z +1021 37 1 9567 5.99 2005-07-31T02:36:11Z 2020-02-15T06:59:48Z +1022 37 1 10538 2.99 2005-08-01T12:22:41Z 2020-02-15T06:59:48Z +1023 37 1 11176 3.99 2005-08-02T10:39:43Z 2020-02-15T06:59:48Z +1024 37 1 13046 7.99 2005-08-19T09:21:10Z 2020-02-15T06:59:48Z +1025 37 2 13147 4.99 2005-08-19T12:55:09Z 2020-02-15T06:59:48Z +1026 37 2 13444 0.99 2005-08-20T00:00:24Z 2020-02-15T06:59:48Z +1027 37 2 13493 3.99 2005-08-20T01:33:36Z 2020-02-15T06:59:48Z +1028 37 2 14025 8.99 2005-08-20T21:19:36Z 2020-02-15T06:59:48Z +1029 37 1 14084 0.99 2005-08-20T23:42:46Z 2020-02-15T06:59:48Z +1030 37 2 14532 2.99 2005-08-21T15:15:03Z 2020-02-15T06:59:48Z +1031 37 1 15028 3.99 2005-08-22T09:03:44Z 2020-02-15T06:59:48Z +1032 37 1 15904 0.99 2005-08-23T17:32:19Z 2020-02-15T06:59:48Z +1033 37 2 16035 0.99 2005-08-23T22:08:04Z 2020-02-15T06:59:48Z +1034 38 2 1250 2.99 2005-06-15T05:55:40Z 2020-02-15T06:59:48Z +1035 38 1 2550 1.99 2005-06-19T02:49:55Z 2020-02-15T06:59:48Z +1036 38 2 2605 1.99 2005-06-19T06:48:01Z 2020-02-15T06:59:48Z +1037 38 2 3003 4.99 2005-06-20T10:00:51Z 2020-02-15T06:59:48Z +1038 38 2 3392 3.99 2005-06-21T15:12:44Z 2020-02-15T06:59:48Z +1039 38 1 4202 5.99 2005-07-07T11:23:48Z 2020-02-15T06:59:48Z +1040 38 2 4228 1.99 2005-07-07T12:42:02Z 2020-02-15T06:59:48Z +1041 38 1 4300 4.99 2005-07-07T16:36:16Z 2020-02-15T06:59:48Z +1042 38 2 4644 4.99 2005-07-08T09:14:29Z 2020-02-15T06:59:48Z +1043 38 1 5273 2.99 2005-07-09T14:31:24Z 2020-02-15T06:59:48Z +1044 38 2 5460 2.99 2005-07-09T22:46:14Z 2020-02-15T06:59:48Z +1045 38 1 5822 2.99 2005-07-10T16:10:39Z 2020-02-15T06:59:48Z +1046 38 1 6864 5.99 2005-07-12T19:59:25Z 2020-02-15T06:59:48Z +1047 38 1 6961 0.99 2005-07-27T00:10:49Z 2020-02-15T06:59:48Z +1048 38 2 7158 4.99 2005-07-27T07:23:58Z 2020-02-15T06:59:48Z +1049 38 2 7163 5.99 2005-07-27T07:36:11Z 2020-02-15T06:59:48Z +1050 38 2 7321 5.99 2005-07-27T13:33:38Z 2020-02-15T06:59:48Z +1051 38 1 7795 0.99 2005-07-28T07:28:16Z 2020-02-15T06:59:48Z +1052 38 2 8924 3.99 2005-07-30T02:08:58Z 2020-02-15T06:59:48Z +1053 38 2 9216 0.99 2005-07-30T13:11:19Z 2020-02-15T06:59:48Z +1054 38 1 9284 0.99 2005-07-30T15:25:19Z 2020-02-15T06:59:48Z +1055 38 1 9621 4.99 2005-07-31T04:21:08Z 2020-02-15T06:59:48Z +1056 38 2 10111 2.99 2005-07-31T21:08:33Z 2020-02-15T06:59:48Z +1057 38 2 10524 6.99 2005-08-01T11:53:12Z 2020-02-15T06:59:48Z +1058 38 2 11049 3.99 2005-08-02T06:15:40Z 2020-02-15T06:59:48Z +1059 38 1 11344 2.99 2005-08-02T17:13:26Z 2020-02-15T06:59:48Z +1060 38 1 11817 4.99 2005-08-17T12:20:01Z 2020-02-15T06:59:48Z +1061 38 2 12092 0.99 2005-08-17T22:28:15Z 2020-02-15T06:59:48Z +1062 38 2 12187 1.99 2005-08-18T01:45:50Z 2020-02-15T06:59:48Z +1063 38 1 14554 4.99 2005-08-21T16:03:01Z 2020-02-15T06:59:48Z +1064 38 2 14632 2.99 2005-08-21T18:48:06Z 2020-02-15T06:59:48Z +1065 38 1 14787 6.99 2005-08-22T00:25:59Z 2020-02-15T06:59:48Z +1066 38 1 15668 2.99 2005-08-23T09:02:04Z 2020-02-15T06:59:48Z +1067 38 1 15738 5.99 2005-08-23T11:55:50Z 2020-02-15T06:59:48Z +1068 39 1 1625 5.99 2005-06-16T07:49:08Z 2020-02-15T06:59:48Z +1069 39 1 1905 4.99 2005-06-17T04:51:43Z 2020-02-15T06:59:48Z +1070 39 2 2135 0.99 2005-06-17T21:14:02Z 2020-02-15T06:59:48Z +1071 39 2 2439 4.99 2005-06-18T18:35:04Z 2020-02-15T06:59:48Z +1072 39 1 2631 4.99 2005-06-19T08:49:53Z 2020-02-15T06:59:48Z +1073 39 1 2876 4.99 2005-06-20T01:06:34Z 2020-02-15T06:59:48Z +1074 39 1 4419 5.99 2005-07-07T22:06:24Z 2020-02-15T06:59:48Z +1075 39 2 4695 8.99 2005-07-08T11:07:59Z 2020-02-15T06:59:48Z +1076 39 2 4712 6.99 2005-07-08T12:10:50Z 2020-02-15T06:59:48Z +1077 39 2 4727 7.99 2005-07-08T12:54:15Z 2020-02-15T06:59:48Z +1078 39 1 5451 4.99 2005-07-09T22:22:10Z 2020-02-15T06:59:48Z +1079 39 2 5515 2.99 2005-07-10T01:12:44Z 2020-02-15T06:59:48Z +1080 39 1 6045 2.99 2005-07-11T03:21:05Z 2020-02-15T06:59:48Z +1081 39 2 8307 6.99 2005-07-29T03:18:34Z 2020-02-15T06:59:48Z +1082 39 2 8366 1.99 2005-07-29T05:11:14Z 2020-02-15T06:59:48Z +1083 39 2 8723 7.99 2005-07-29T18:03:47Z 2020-02-15T06:59:48Z +1084 39 1 8805 2.99 2005-07-29T21:29:58Z 2020-02-15T06:59:48Z +1085 39 1 9431 1.99 2005-07-30T21:24:22Z 2020-02-15T06:59:48Z +1086 39 1 9656 4.99 2005-07-31T06:00:21Z 2020-02-15T06:59:48Z +1087 39 2 10052 4.99 2005-07-31T19:15:13Z 2020-02-15T06:59:48Z +1088 39 1 10126 0.99 2005-07-31T21:36:07Z 2020-02-15T06:59:48Z +1089 39 1 10251 4.99 2005-08-01T02:39:12Z 2020-02-15T06:59:48Z +1090 39 2 10269 4.99 2005-08-01T03:09:26Z 2020-02-15T06:59:48Z +1091 39 2 10630 0.99 2005-08-01T15:34:46Z 2020-02-15T06:59:48Z +1092 39 1 10639 9.99 2005-08-01T15:44:43Z 2020-02-15T06:59:48Z +1093 39 2 12268 0.99 2005-08-18T04:26:54Z 2020-02-15T06:59:48Z +1094 39 2 12459 4.99 2005-08-18T11:25:11Z 2020-02-15T06:59:48Z +1095 39 2 13101 7.99 2005-08-19T11:01:54Z 2020-02-15T06:59:48Z +1096 39 2 15124 5.99 2005-08-22T12:51:38Z 2020-02-15T06:59:48Z +1097 40 1 128 4.99 2005-05-25T21:19:53Z 2020-02-15T06:59:48Z +1098 40 2 2470 7.99 2005-06-18T20:28:31Z 2020-02-15T06:59:48Z +1099 40 2 2896 2.99 2005-06-20T02:33:42Z 2020-02-15T06:59:48Z +1100 40 1 2993 4.99 2005-06-20T09:12:12Z 2020-02-15T06:59:48Z +1101 40 1 3428 0.99 2005-06-21T18:39:34Z 2020-02-15T06:59:48Z +1102 40 2 5001 1.99 2005-07-09T01:17:04Z 2020-02-15T06:59:48Z +1103 40 2 5777 2.99 2005-07-10T13:38:41Z 2020-02-15T06:59:48Z +1104 40 1 5869 5.99 2005-07-10T18:40:09Z 2020-02-15T06:59:48Z +1105 40 1 6502 0.99 2005-07-12T03:15:45Z 2020-02-15T06:59:48Z +1106 40 2 7684 0.99 2005-07-28T03:11:54Z 2020-02-15T06:59:48Z +1107 40 2 8031 0.99 2005-07-28T16:15:49Z 2020-02-15T06:59:48Z +1108 40 2 8170 3.99 2005-07-28T21:32:29Z 2020-02-15T06:59:48Z +1109 40 1 9050 8.99 2005-07-30T06:59:55Z 2020-02-15T06:59:48Z +1110 40 2 9700 4.99 2005-07-31T07:29:59Z 2020-02-15T06:59:48Z +1111 40 2 9961 6.99 2005-07-31T16:07:50Z 2020-02-15T06:59:48Z +1112 40 1 9975 1.99 2005-07-31T16:53:43Z 2020-02-15T06:59:48Z +1113 40 1 10442 2.99 2005-08-01T08:58:08Z 2020-02-15T06:59:48Z +1114 40 2 11919 0.99 2005-08-17T16:08:49Z 2020-02-15T06:59:48Z +1115 40 2 11948 3.99 2005-08-17T17:11:05Z 2020-02-15T06:59:48Z +1116 40 2 12396 9.99 2005-08-18T09:11:23Z 2020-02-15T06:59:48Z +1117 40 2 12877 2.99 2005-08-19T03:16:58Z 2020-02-15T06:59:48Z +1118 40 1 13149 6.99 2005-08-19T13:07:12Z 2020-02-15T06:59:48Z +1119 40 1 13376 0.99 2005-08-19T21:31:45Z 2020-02-15T06:59:48Z +1120 40 1 13840 5.99 2005-08-20T14:23:20Z 2020-02-15T06:59:48Z +1121 40 1 13951 2.99 2005-08-20T17:58:11Z 2020-02-15T06:59:48Z +1122 40 1 14260 6.99 2005-08-21T06:01:08Z 2020-02-15T06:59:48Z +1123 40 1 15193 2.99 2005-08-22T16:06:49Z 2020-02-15T06:59:48Z +1124 41 1 2563 4.99 2005-06-19T03:24:17Z 2020-02-15T06:59:48Z +1125 41 2 3246 7.99 2005-06-21T03:10:01Z 2020-02-15T06:59:48Z +1126 41 2 3827 2.99 2005-07-06T15:52:03Z 2020-02-15T06:59:48Z +1127 41 2 4294 9.99 2005-07-07T15:56:23Z 2020-02-15T06:59:48Z +1128 41 1 4543 4.99 2005-07-08T04:06:55Z 2020-02-15T06:59:48Z +1129 41 1 4575 2.99 2005-07-08T05:49:14Z 2020-02-15T06:59:48Z +1130 41 1 6976 4.99 2005-07-27T00:40:01Z 2020-02-15T06:59:48Z +1131 41 2 7153 4.99 2005-07-27T07:15:38Z 2020-02-15T06:59:48Z +1132 41 1 7517 1.99 2005-07-27T20:57:07Z 2020-02-15T06:59:48Z +1133 41 2 8008 6.99 2005-07-28T15:25:55Z 2020-02-15T06:59:48Z +1134 41 1 8098 0.99 2005-07-28T18:34:20Z 2020-02-15T06:59:48Z +1135 41 1 8134 6.99 2005-07-28T20:01:23Z 2020-02-15T06:59:48Z +1136 41 2 8225 2.99 2005-07-28T23:59:29Z 2020-02-15T06:59:48Z +1137 41 1 8712 2.99 2005-07-29T17:30:06Z 2020-02-15T06:59:48Z +1138 41 2 9313 5.99 2005-07-30T16:59:43Z 2020-02-15T06:59:48Z +1139 41 1 10064 2.99 2005-07-31T19:27:02Z 2020-02-15T06:59:48Z +1140 41 1 10170 7.99 2005-07-31T23:27:31Z 2020-02-15T06:59:48Z +1141 41 2 10495 4.99 2005-08-01T10:45:51Z 2020-02-15T06:59:48Z +1142 41 1 10853 5.99 2005-08-02T00:00:54Z 2020-02-15T06:59:48Z +1143 41 2 12147 2.99 2005-08-18T00:10:20Z 2020-02-15T06:59:48Z +1144 41 2 12173 3.99 2005-08-18T01:08:34Z 2020-02-15T06:59:48Z +1145 41 2 12821 0.99 2005-08-19T01:07:02Z 2020-02-15T06:59:48Z +1146 41 2 14539 7.99 2005-08-21T15:29:47Z 2020-02-15T06:59:48Z +1147 41 2 15860 4.99 2005-08-23T16:08:40Z 2020-02-15T06:59:48Z +1148 41 1 15875 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1149 42 1 635 5.99 2005-05-28T17:46:57Z 2020-02-15T06:59:48Z +1150 42 2 1534 0.99 2005-06-16T00:49:32Z 2020-02-15T06:59:48Z +1151 42 2 2056 2.99 2005-06-17T15:27:33Z 2020-02-15T06:59:48Z +1152 42 1 2170 3.99 2005-06-17T23:57:34Z 2020-02-15T06:59:48Z +1153 42 1 2302 4.99 2005-06-18T08:27:33Z 2020-02-15T06:59:48Z +1154 42 2 4391 2.99 2005-07-07T21:09:38Z 2020-02-15T06:59:48Z +1155 42 2 5199 4.99 2005-07-09T10:50:56Z 2020-02-15T06:59:48Z +1156 42 2 5517 5.99 2005-07-10T01:15:00Z 2020-02-15T06:59:48Z +1157 42 2 5652 3.99 2005-07-10T07:18:58Z 2020-02-15T06:59:48Z +1158 42 1 6179 2.99 2005-07-11T10:59:59Z 2020-02-15T06:59:48Z +1159 42 1 6799 2.99 2005-07-12T16:52:13Z 2020-02-15T06:59:48Z +1160 42 1 6925 0.99 2005-07-26T22:52:32Z 2020-02-15T06:59:48Z +1161 42 1 7405 3.99 2005-07-27T16:25:11Z 2020-02-15T06:59:48Z +1162 42 1 8049 0.99 2005-07-28T16:51:58Z 2020-02-15T06:59:48Z +1163 42 1 8095 6.99 2005-07-28T18:32:40Z 2020-02-15T06:59:48Z +1164 42 1 8166 2.99 2005-07-28T21:23:33Z 2020-02-15T06:59:48Z +1165 42 1 8499 3.99 2005-07-29T09:10:41Z 2020-02-15T06:59:48Z +1166 42 2 8785 2.99 2005-07-29T20:36:26Z 2020-02-15T06:59:48Z +1167 42 2 8852 3.99 2005-07-29T23:30:03Z 2020-02-15T06:59:48Z +1168 42 2 8915 3.99 2005-07-30T01:42:09Z 2020-02-15T06:59:48Z +1169 42 2 10060 6.99 2005-07-31T19:23:00Z 2020-02-15T06:59:48Z +1170 42 2 10345 2.99 2005-08-01T05:18:56Z 2020-02-15T06:59:48Z +1171 42 2 10845 2.99 2005-08-01T23:47:03Z 2020-02-15T06:59:48Z +1172 42 1 10935 5.99 2005-08-02T02:54:53Z 2020-02-15T06:59:48Z +1173 42 1 12478 4.99 2005-08-18T12:25:16Z 2020-02-15T06:59:48Z +1174 42 2 12499 2.99 2005-08-18T13:05:37Z 2020-02-15T06:59:48Z +1175 42 1 14461 7.99 2005-08-21T12:50:33Z 2020-02-15T06:59:48Z +1176 42 1 15442 2.99 2005-08-23T00:42:49Z 2020-02-15T06:59:48Z +1177 42 1 13351 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1178 42 1 15407 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1179 43 2 123 4.99 2005-05-25T20:26:42Z 2020-02-15T06:59:48Z +1180 43 1 652 4.99 2005-05-28T20:08:47Z 2020-02-15T06:59:48Z +1181 43 2 1544 4.99 2005-06-16T01:28:22Z 2020-02-15T06:59:48Z +1182 43 2 3683 1.99 2005-07-06T09:25:56Z 2020-02-15T06:59:48Z +1183 43 1 4498 2.99 2005-07-08T02:07:50Z 2020-02-15T06:59:48Z +1184 43 1 5162 4.99 2005-07-09T09:00:11Z 2020-02-15T06:59:48Z +1185 43 1 5401 4.99 2005-07-09T19:59:10Z 2020-02-15T06:59:48Z +1186 43 1 5831 2.99 2005-07-10T16:34:02Z 2020-02-15T06:59:48Z +1187 43 2 5941 4.99 2005-07-10T22:40:47Z 2020-02-15T06:59:48Z +1188 43 1 6474 3.99 2005-07-12T01:36:46Z 2020-02-15T06:59:48Z +1189 43 2 6680 0.99 2005-07-12T12:01:56Z 2020-02-15T06:59:48Z +1190 43 1 7348 4.99 2005-07-27T14:32:32Z 2020-02-15T06:59:48Z +1191 43 2 7868 4.99 2005-07-28T10:08:55Z 2020-02-15T06:59:48Z +1192 43 2 8376 4.99 2005-07-29T05:25:32Z 2020-02-15T06:59:48Z +1193 43 1 9204 4.99 2005-07-30T12:43:58Z 2020-02-15T06:59:48Z +1194 43 1 11753 4.99 2005-08-17T09:11:52Z 2020-02-15T06:59:48Z +1195 43 1 14244 2.99 2005-08-21T05:29:55Z 2020-02-15T06:59:48Z +1196 43 1 14649 4.99 2005-08-21T19:19:21Z 2020-02-15T06:59:48Z +1197 43 2 14837 4.99 2005-08-22T01:54:52Z 2020-02-15T06:59:48Z +1198 43 2 15155 4.99 2005-08-22T14:27:46Z 2020-02-15T06:59:48Z +1199 43 2 15800 6.99 2005-08-23T14:23:44Z 2020-02-15T06:59:48Z +1200 43 2 15945 2.99 2005-08-23T18:51:41Z 2020-02-15T06:59:48Z +1201 43 2 15644 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1202 43 1 15745 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1203 44 1 29 0.99 2005-05-25T03:47:12Z 2020-02-15T06:59:48Z +1204 44 1 99 4.99 2005-05-25T16:50:20Z 2020-02-15T06:59:48Z +1205 44 1 407 2.99 2005-05-27T13:57:38Z 2020-02-15T06:59:48Z +1206 44 2 721 0.99 2005-05-29T05:28:47Z 2020-02-15T06:59:48Z +1207 44 1 904 2.99 2005-05-30T10:19:42Z 2020-02-15T06:59:48Z +1208 44 1 1497 3.99 2005-06-15T21:56:39Z 2020-02-15T06:59:48Z +1209 44 1 2369 2.99 2005-06-18T14:25:29Z 2020-02-15T06:59:48Z +1210 44 1 2809 3.99 2005-06-19T19:40:27Z 2020-02-15T06:59:48Z +1211 44 2 2866 4.99 2005-06-20T00:01:36Z 2020-02-15T06:59:48Z +1212 44 2 4390 0.99 2005-07-07T20:59:06Z 2020-02-15T06:59:48Z +1213 44 2 4723 9.99 2005-07-08T12:44:59Z 2020-02-15T06:59:48Z +1214 44 1 5551 3.99 2005-07-10T03:01:09Z 2020-02-15T06:59:48Z +1215 44 1 5787 8.99 2005-07-10T14:08:49Z 2020-02-15T06:59:48Z +1216 44 2 5849 6.99 2005-07-10T17:32:33Z 2020-02-15T06:59:48Z +1217 44 2 5909 4.99 2005-07-10T20:46:13Z 2020-02-15T06:59:48Z +1218 44 1 7514 0.99 2005-07-27T20:51:49Z 2020-02-15T06:59:48Z +1219 44 2 7526 6.99 2005-07-27T21:13:47Z 2020-02-15T06:59:48Z +1220 44 2 8775 4.99 2005-07-29T20:05:38Z 2020-02-15T06:59:48Z +1221 44 1 8866 4.99 2005-07-29T23:58:19Z 2020-02-15T06:59:48Z +1222 44 1 11364 2.99 2005-08-02T17:53:36Z 2020-02-15T06:59:48Z +1223 44 2 12345 3.99 2005-08-18T07:16:58Z 2020-02-15T06:59:48Z +1224 44 1 12504 4.99 2005-08-18T13:17:07Z 2020-02-15T06:59:48Z +1225 44 1 12790 6.99 2005-08-19T00:16:54Z 2020-02-15T06:59:48Z +1226 44 2 12982 4.99 2005-08-19T07:06:34Z 2020-02-15T06:59:48Z +1227 44 2 15054 2.99 2005-08-22T10:14:33Z 2020-02-15T06:59:48Z +1228 44 2 13428 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1229 45 2 277 2.99 2005-05-26T17:32:11Z 2020-02-15T06:59:48Z +1230 45 1 1806 4.99 2005-06-16T20:41:57Z 2020-02-15T06:59:48Z +1231 45 2 1979 2.99 2005-06-17T09:45:30Z 2020-02-15T06:59:48Z +1232 45 2 2722 4.99 2005-06-19T14:55:17Z 2020-02-15T06:59:48Z +1233 45 1 3391 3.99 2005-06-21T15:11:02Z 2020-02-15T06:59:48Z +1234 45 2 3444 0.99 2005-06-21T20:39:39Z 2020-02-15T06:59:48Z +1235 45 1 4843 0.99 2005-07-08T18:27:28Z 2020-02-15T06:59:48Z +1236 45 1 5181 6.99 2005-07-09T10:07:27Z 2020-02-15T06:59:48Z +1237 45 1 5405 7.99 2005-07-09T20:11:49Z 2020-02-15T06:59:48Z +1238 45 1 5637 0.99 2005-07-10T06:31:37Z 2020-02-15T06:59:48Z +1239 45 2 6001 0.99 2005-07-11T01:24:44Z 2020-02-15T06:59:48Z +1240 45 2 6002 2.99 2005-07-11T01:27:49Z 2020-02-15T06:59:48Z +1241 45 1 6966 9.99 2005-07-27T00:15:35Z 2020-02-15T06:59:48Z +1242 45 1 7436 2.99 2005-07-27T17:39:12Z 2020-02-15T06:59:48Z +1243 45 1 7961 3.99 2005-07-28T13:47:21Z 2020-02-15T06:59:48Z +1244 45 1 10507 2.99 2005-08-01T11:22:20Z 2020-02-15T06:59:48Z +1245 45 2 10878 6.99 2005-08-02T00:33:12Z 2020-02-15T06:59:48Z +1246 45 1 11004 8.99 2005-08-02T05:04:18Z 2020-02-15T06:59:48Z +1247 45 1 11029 4.99 2005-08-02T05:51:10Z 2020-02-15T06:59:48Z +1248 45 2 11483 2.99 2005-08-02T22:28:22Z 2020-02-15T06:59:48Z +1249 45 2 11488 3.99 2005-08-02T22:35:15Z 2020-02-15T06:59:48Z +1250 45 1 11725 2.99 2005-08-17T08:09:00Z 2020-02-15T06:59:48Z +1251 45 1 13340 3.99 2005-08-19T20:18:39Z 2020-02-15T06:59:48Z +1252 45 2 13394 4.99 2005-08-19T22:05:19Z 2020-02-15T06:59:48Z +1253 45 1 14576 6.99 2005-08-21T16:52:03Z 2020-02-15T06:59:48Z +1254 45 1 15812 10.99 2005-08-23T14:47:26Z 2020-02-15T06:59:48Z +1255 45 2 16037 7.99 2005-08-23T22:13:04Z 2020-02-15T06:59:48Z +1256 46 2 401 2.99 2005-05-27T12:57:55Z 2020-02-15T06:59:48Z +1257 46 2 432 4.99 2005-05-27T16:40:29Z 2020-02-15T06:59:48Z +1258 46 1 938 2.99 2005-05-30T14:47:31Z 2020-02-15T06:59:48Z +1259 46 1 1166 4.99 2005-06-14T23:17:03Z 2020-02-15T06:59:48Z +1260 46 2 1214 4.99 2005-06-15T03:18:40Z 2020-02-15T06:59:48Z +1261 46 2 2144 0.99 2005-06-17T22:05:40Z 2020-02-15T06:59:48Z +1262 46 1 2203 2.99 2005-06-18T02:10:42Z 2020-02-15T06:59:48Z +1263 46 2 2965 8.99 2005-06-20T07:33:38Z 2020-02-15T06:59:48Z +1264 46 2 2975 4.99 2005-06-20T08:06:18Z 2020-02-15T06:59:48Z +1265 46 2 3439 4.99 2005-06-21T19:36:15Z 2020-02-15T06:59:48Z +1266 46 2 3855 2.99 2005-07-06T17:03:48Z 2020-02-15T06:59:48Z +1267 46 1 3916 4.99 2005-07-06T20:18:50Z 2020-02-15T06:59:48Z +1268 46 2 5698 4.99 2005-07-10T09:47:00Z 2020-02-15T06:59:48Z +1269 46 1 7336 0.99 2005-07-27T14:11:45Z 2020-02-15T06:59:48Z +1270 46 2 8152 3.99 2005-07-28T20:53:05Z 2020-02-15T06:59:48Z +1271 46 2 9045 8.99 2005-07-30T06:36:57Z 2020-02-15T06:59:48Z +1272 46 2 9806 2.99 2005-07-31T11:13:49Z 2020-02-15T06:59:48Z +1273 46 1 10088 2.99 2005-07-31T20:16:21Z 2020-02-15T06:59:48Z +1274 46 2 10428 4.99 2005-08-01T08:30:11Z 2020-02-15T06:59:48Z +1275 46 1 10803 4.99 2005-08-01T22:22:07Z 2020-02-15T06:59:48Z +1276 46 1 10827 5.99 2005-08-01T23:13:00Z 2020-02-15T06:59:48Z +1277 46 1 11721 0.99 2005-08-17T07:49:17Z 2020-02-15T06:59:48Z +1278 46 2 12095 4.99 2005-08-17T22:32:37Z 2020-02-15T06:59:48Z +1279 46 2 12238 2.99 2005-08-18T03:25:08Z 2020-02-15T06:59:48Z +1280 46 2 12280 4.99 2005-08-18T04:49:27Z 2020-02-15T06:59:48Z +1281 46 1 12298 2.99 2005-08-18T05:30:31Z 2020-02-15T06:59:48Z +1282 46 2 12455 4.99 2005-08-18T11:19:47Z 2020-02-15T06:59:48Z +1283 46 1 13226 0.99 2005-08-19T16:05:36Z 2020-02-15T06:59:48Z +1284 46 2 14144 4.99 2005-08-21T02:10:57Z 2020-02-15T06:59:48Z +1285 46 2 14528 6.99 2005-08-21T15:08:05Z 2020-02-15T06:59:48Z +1286 46 1 14940 4.99 2005-08-22T05:54:03Z 2020-02-15T06:59:48Z +1287 46 1 15438 2.99 2005-08-23T00:31:57Z 2020-02-15T06:59:48Z +1288 46 1 15708 0.99 2005-08-23T10:35:51Z 2020-02-15T06:59:48Z +1289 46 1 15758 5.99 2005-08-23T12:47:26Z 2020-02-15T06:59:48Z +1290 47 2 175 3.99 2005-05-26T03:46:26Z 2020-02-15T06:59:48Z +1291 47 2 207 4.99 2005-05-26T08:04:38Z 2020-02-15T06:59:48Z +1292 47 1 300 6.99 2005-05-26T20:57:00Z 2020-02-15T06:59:48Z +1293 47 1 1882 4.99 2005-06-17T03:17:21Z 2020-02-15T06:59:48Z +1294 47 1 2307 6.99 2005-06-18T08:34:59Z 2020-02-15T06:59:48Z +1295 47 2 3320 5.99 2005-06-21T08:29:41Z 2020-02-15T06:59:48Z +1296 47 1 3631 4.99 2005-07-06T06:36:53Z 2020-02-15T06:59:48Z +1297 47 2 4064 5.99 2005-07-07T04:29:20Z 2020-02-15T06:59:48Z +1298 47 1 5174 0.99 2005-07-09T09:31:59Z 2020-02-15T06:59:48Z +1299 47 2 6153 9.99 2005-07-11T09:31:04Z 2020-02-15T06:59:48Z +1300 47 2 6164 0.99 2005-07-11T10:16:23Z 2020-02-15T06:59:48Z +1301 47 1 6337 3.99 2005-07-11T19:30:47Z 2020-02-15T06:59:48Z +1302 47 2 8159 4.99 2005-07-28T21:09:28Z 2020-02-15T06:59:48Z +1303 47 2 8402 6.99 2005-07-29T06:25:45Z 2020-02-15T06:59:48Z +1304 47 1 8863 3.99 2005-07-29T23:52:01Z 2020-02-15T06:59:48Z +1305 47 2 9274 4.99 2005-07-30T15:07:04Z 2020-02-15T06:59:48Z +1306 47 1 11126 0.99 2005-08-02T08:59:04Z 2020-02-15T06:59:48Z +1307 47 2 11477 5.99 2005-08-02T22:09:01Z 2020-02-15T06:59:48Z +1308 47 1 12215 7.99 2005-08-18T02:35:39Z 2020-02-15T06:59:48Z +1309 47 2 12274 7.99 2005-08-18T04:41:47Z 2020-02-15T06:59:48Z +1310 47 1 14397 0.99 2005-08-21T10:25:56Z 2020-02-15T06:59:48Z +1311 47 2 15846 2.99 2005-08-23T15:39:18Z 2020-02-15T06:59:48Z +1312 48 2 72 0.99 2005-05-25T10:52:13Z 2020-02-15T06:59:48Z +1313 48 1 297 2.99 2005-05-26T20:48:48Z 2020-02-15T06:59:48Z +1314 48 1 390 4.99 2005-05-27T11:02:26Z 2020-02-15T06:59:48Z +1315 48 2 1689 9.99 2005-06-16T12:18:41Z 2020-02-15T06:59:48Z +1316 48 2 2822 0.99 2005-06-19T20:29:24Z 2020-02-15T06:59:48Z +1317 48 2 3758 4.99 2005-07-06T12:43:11Z 2020-02-15T06:59:48Z +1318 48 1 4367 2.99 2005-07-07T19:52:01Z 2020-02-15T06:59:48Z +1319 48 2 5148 6.99 2005-07-09T08:22:46Z 2020-02-15T06:59:48Z +1320 48 2 6498 3.99 2005-07-12T03:05:38Z 2020-02-15T06:59:48Z +1321 48 1 7920 2.99 2005-07-28T12:01:19Z 2020-02-15T06:59:48Z +1322 48 1 8716 6.99 2005-07-29T17:39:09Z 2020-02-15T06:59:48Z +1323 48 1 9402 7.99 2005-07-30T20:18:27Z 2020-02-15T06:59:48Z +1324 48 2 9742 7.99 2005-07-31T09:10:20Z 2020-02-15T06:59:48Z +1325 48 2 10276 2.99 2005-08-01T03:22:23Z 2020-02-15T06:59:48Z +1326 48 2 14450 1.99 2005-08-21T12:21:25Z 2020-02-15T06:59:48Z +1327 48 2 14536 2.99 2005-08-21T15:22:50Z 2020-02-15T06:59:48Z +1328 48 1 15228 3.99 2005-08-22T17:27:23Z 2020-02-15T06:59:48Z +1329 49 2 96 1.99 2005-05-25T16:32:19Z 2020-02-15T06:59:48Z +1330 49 1 239 3.99 2005-05-26T12:30:26Z 2020-02-15T06:59:48Z +1331 49 2 846 2.99 2005-05-30T01:17:45Z 2020-02-15T06:59:48Z +1332 49 2 1010 4.99 2005-05-31T01:57:32Z 2020-02-15T06:59:48Z +1333 49 1 1164 0.99 2005-06-14T23:16:26Z 2020-02-15T06:59:48Z +1334 49 2 1237 9.99 2005-06-15T04:44:10Z 2020-02-15T06:59:48Z +1335 49 2 1688 0.99 2005-06-16T12:11:20Z 2020-02-15T06:59:48Z +1336 49 2 1777 6.99 2005-06-16T18:52:12Z 2020-02-15T06:59:48Z +1337 49 2 3235 4.99 2005-06-21T02:46:17Z 2020-02-15T06:59:48Z +1338 49 2 3575 4.99 2005-07-06T03:36:19Z 2020-02-15T06:59:48Z +1339 49 2 3615 0.99 2005-07-06T05:47:47Z 2020-02-15T06:59:48Z +1340 49 1 5491 2.99 2005-07-10T00:09:45Z 2020-02-15T06:59:48Z +1341 49 1 6214 4.99 2005-07-11T12:49:48Z 2020-02-15T06:59:48Z +1342 49 1 6279 6.99 2005-07-11T16:26:07Z 2020-02-15T06:59:48Z +1343 49 1 6521 7.99 2005-07-12T04:06:11Z 2020-02-15T06:59:48Z +1344 49 2 6759 4.99 2005-07-12T15:14:48Z 2020-02-15T06:59:48Z +1345 49 2 7209 4.99 2005-07-27T09:16:53Z 2020-02-15T06:59:48Z +1346 49 2 7742 8.99 2005-07-28T05:33:16Z 2020-02-15T06:59:48Z +1347 49 2 8553 10.99 2005-07-29T11:15:36Z 2020-02-15T06:59:48Z +1348 49 2 9006 0.99 2005-07-30T05:06:32Z 2020-02-15T06:59:48Z +1349 49 1 9851 4.99 2005-07-31T12:50:24Z 2020-02-15T06:59:48Z +1350 49 1 10144 4.99 2005-07-31T22:13:52Z 2020-02-15T06:59:48Z +1351 49 1 10266 0.99 2005-08-01T03:05:59Z 2020-02-15T06:59:48Z +1352 49 1 10588 2.99 2005-08-01T14:10:21Z 2020-02-15T06:59:48Z +1353 49 1 10814 2.99 2005-08-01T22:43:12Z 2020-02-15T06:59:48Z +1354 49 2 14168 5.99 2005-08-21T03:00:03Z 2020-02-15T06:59:48Z +1355 49 1 14627 6.99 2005-08-21T18:35:54Z 2020-02-15T06:59:48Z +1356 49 1 14676 2.99 2005-08-21T20:02:18Z 2020-02-15T06:59:48Z +1357 50 1 763 4.99 2005-05-29T11:32:15Z 2020-02-15T06:59:48Z +1358 50 1 794 4.99 2005-05-29T16:44:11Z 2020-02-15T06:59:48Z +1359 50 1 905 4.99 2005-05-30T10:25:00Z 2020-02-15T06:59:48Z +1360 50 1 1029 4.99 2005-05-31T03:52:02Z 2020-02-15T06:59:48Z +1361 50 2 1136 4.99 2005-05-31T19:19:36Z 2020-02-15T06:59:48Z +1362 50 1 1223 2.99 2005-06-15T03:38:53Z 2020-02-15T06:59:48Z +1363 50 1 1785 4.99 2005-06-16T19:27:12Z 2020-02-15T06:59:48Z +1364 50 2 3000 0.99 2005-06-20T09:32:33Z 2020-02-15T06:59:48Z +1365 50 2 3169 2.99 2005-06-20T21:55:54Z 2020-02-15T06:59:48Z +1366 50 2 4149 2.99 2005-07-07T08:40:17Z 2020-02-15T06:59:48Z +1367 50 2 5290 4.99 2005-07-09T15:14:47Z 2020-02-15T06:59:48Z +1368 50 2 5641 4.99 2005-07-10T06:43:43Z 2020-02-15T06:59:48Z +1369 50 2 5681 9.99 2005-07-10T08:48:39Z 2020-02-15T06:59:48Z +1370 50 1 5928 6.99 2005-07-10T21:58:30Z 2020-02-15T06:59:48Z +1371 50 2 6634 0.99 2005-07-12T09:37:18Z 2020-02-15T06:59:48Z +1372 50 1 6667 8.99 2005-07-12T11:36:22Z 2020-02-15T06:59:48Z +1373 50 1 7383 4.99 2005-07-27T15:46:53Z 2020-02-15T06:59:48Z +1374 50 1 8089 0.99 2005-07-28T18:26:47Z 2020-02-15T06:59:48Z +1375 50 1 8261 0.99 2005-07-29T01:11:05Z 2020-02-15T06:59:48Z +1376 50 1 8619 5.99 2005-07-29T13:50:08Z 2020-02-15T06:59:48Z +1377 50 2 9179 0.99 2005-07-30T12:02:41Z 2020-02-15T06:59:48Z +1378 50 1 9615 4.99 2005-07-31T03:59:56Z 2020-02-15T06:59:48Z +1379 50 2 9691 10.99 2005-07-31T07:09:55Z 2020-02-15T06:59:48Z +1380 50 2 10046 2.99 2005-07-31T19:07:11Z 2020-02-15T06:59:48Z +1381 50 2 10165 0.99 2005-07-31T23:21:23Z 2020-02-15T06:59:48Z +1382 50 2 10180 6.99 2005-07-31T23:57:43Z 2020-02-15T06:59:48Z +1383 50 2 10261 4.99 2005-08-01T02:58:27Z 2020-02-15T06:59:48Z +1384 50 2 10485 7.99 2005-08-01T10:20:34Z 2020-02-15T06:59:48Z +1385 50 2 11053 3.99 2005-08-02T06:27:13Z 2020-02-15T06:59:48Z +1386 50 1 12766 6.99 2005-08-18T23:25:20Z 2020-02-15T06:59:48Z +1387 50 2 13136 7.99 2005-08-19T12:24:23Z 2020-02-15T06:59:48Z +1388 50 1 14054 4.99 2005-08-20T22:17:01Z 2020-02-15T06:59:48Z +1389 50 2 15138 2.99 2005-08-22T13:36:30Z 2020-02-15T06:59:48Z +1390 50 2 15388 6.99 2005-08-22T22:49:23Z 2020-02-15T06:59:48Z +1391 50 1 16015 4.99 2005-08-23T21:25:03Z 2020-02-15T06:59:48Z +1392 51 2 119 4.99 2005-05-25T19:37:02Z 2020-02-15T06:59:48Z +1393 51 1 661 4.99 2005-05-28T21:01:25Z 2020-02-15T06:59:48Z +1394 51 2 1028 4.99 2005-05-31T03:48:05Z 2020-02-15T06:59:48Z +1395 51 2 1373 1.99 2005-06-15T14:48:04Z 2020-02-15T06:59:48Z +1396 51 1 1477 0.99 2005-06-15T21:11:18Z 2020-02-15T06:59:48Z +1397 51 1 3525 9.99 2005-07-06T01:02:39Z 2020-02-15T06:59:48Z +1398 51 1 5230 2.99 2005-07-09T12:30:23Z 2020-02-15T06:59:48Z +1399 51 2 5304 5.99 2005-07-09T15:48:06Z 2020-02-15T06:59:48Z +1400 51 1 5473 7.99 2005-07-09T23:19:11Z 2020-02-15T06:59:48Z +1401 51 1 5606 4.99 2005-07-10T05:07:55Z 2020-02-15T06:59:48Z +1402 51 1 7207 5.99 2005-07-27T09:13:26Z 2020-02-15T06:59:48Z +1403 51 1 7398 6.99 2005-07-27T16:07:22Z 2020-02-15T06:59:48Z +1404 51 1 7636 5.99 2005-07-28T01:08:36Z 2020-02-15T06:59:48Z +1405 51 1 8495 4.99 2005-07-29T09:05:06Z 2020-02-15T06:59:48Z +1406 51 1 8693 0.99 2005-07-29T16:44:13Z 2020-02-15T06:59:48Z +1407 51 1 8880 0.99 2005-07-30T00:16:55Z 2020-02-15T06:59:48Z +1408 51 2 9649 0.99 2005-07-31T05:46:54Z 2020-02-15T06:59:48Z +1409 51 2 10244 4.99 2005-08-01T02:20:01Z 2020-02-15T06:59:48Z +1410 51 1 10780 2.99 2005-08-01T21:14:24Z 2020-02-15T06:59:48Z +1411 51 1 10894 0.99 2005-08-02T01:12:35Z 2020-02-15T06:59:48Z +1412 51 1 11302 2.99 2005-08-02T15:38:03Z 2020-02-15T06:59:48Z +1413 51 2 11685 4.99 2005-08-17T06:39:16Z 2020-02-15T06:59:48Z +1414 51 2 11751 6.99 2005-08-17T09:07:56Z 2020-02-15T06:59:48Z +1415 51 1 12184 0.99 2005-08-18T01:36:00Z 2020-02-15T06:59:48Z +1416 51 1 12725 4.99 2005-08-18T21:43:09Z 2020-02-15T06:59:48Z +1417 51 2 13098 2.99 2005-08-19T10:51:59Z 2020-02-15T06:59:48Z +1418 51 1 13302 2.99 2005-08-19T18:54:26Z 2020-02-15T06:59:48Z +1419 51 1 13868 0.99 2005-08-20T15:06:26Z 2020-02-15T06:59:48Z +1420 51 2 13882 2.99 2005-08-20T15:23:26Z 2020-02-15T06:59:48Z +1421 51 2 14221 6.99 2005-08-21T04:49:41Z 2020-02-15T06:59:48Z +1422 51 2 14512 4.99 2005-08-21T14:47:09Z 2020-02-15T06:59:48Z +1423 51 1 14617 4.99 2005-08-21T18:07:40Z 2020-02-15T06:59:48Z +1424 51 1 14903 4.99 2005-08-22T04:31:50Z 2020-02-15T06:59:48Z +1425 52 1 874 0.99 2005-05-30T05:36:21Z 2020-02-15T06:59:48Z +1426 52 1 1196 4.99 2005-06-15T01:38:31Z 2020-02-15T06:59:48Z +1427 52 2 2232 0.99 2005-06-18T03:54:31Z 2020-02-15T06:59:48Z +1428 52 1 2862 2.99 2005-06-19T23:47:24Z 2020-02-15T06:59:48Z +1429 52 2 3196 4.99 2005-06-21T00:02:28Z 2020-02-15T06:59:48Z +1430 52 1 3997 1.99 2005-07-06T23:46:52Z 2020-02-15T06:59:48Z +1431 52 1 5308 0.99 2005-07-09T15:58:38Z 2020-02-15T06:59:48Z +1432 52 2 5313 3.99 2005-07-09T16:04:45Z 2020-02-15T06:59:48Z +1433 52 1 5607 2.99 2005-07-10T05:08:10Z 2020-02-15T06:59:48Z +1434 52 1 6394 7.99 2005-07-11T22:29:15Z 2020-02-15T06:59:48Z +1435 52 2 7284 0.99 2005-07-27T12:12:04Z 2020-02-15T06:59:48Z +1436 52 2 7438 5.99 2005-07-27T17:40:40Z 2020-02-15T06:59:48Z +1437 52 2 7627 4.99 2005-07-28T00:56:47Z 2020-02-15T06:59:48Z +1438 52 1 8686 4.99 2005-07-29T16:17:49Z 2020-02-15T06:59:48Z +1439 52 1 9029 4.99 2005-07-30T06:03:11Z 2020-02-15T06:59:48Z +1440 52 2 9749 3.99 2005-07-31T09:18:33Z 2020-02-15T06:59:48Z +1441 52 2 9797 4.99 2005-07-31T10:53:44Z 2020-02-15T06:59:48Z +1442 52 2 10591 0.99 2005-08-01T14:12:29Z 2020-02-15T06:59:48Z +1443 52 1 10635 0.99 2005-08-01T15:37:58Z 2020-02-15T06:59:48Z +1444 52 1 11068 0.99 2005-08-02T07:08:07Z 2020-02-15T06:59:48Z +1445 52 1 11731 3.99 2005-08-17T08:24:35Z 2020-02-15T06:59:48Z +1446 52 2 12200 2.99 2005-08-18T02:12:33Z 2020-02-15T06:59:48Z +1447 52 2 12520 0.99 2005-08-18T13:42:45Z 2020-02-15T06:59:48Z +1448 52 2 13090 5.99 2005-08-19T10:39:54Z 2020-02-15T06:59:48Z +1449 52 2 14820 2.99 2005-08-22T01:18:37Z 2020-02-15T06:59:48Z +1450 52 1 14822 5.99 2005-08-22T01:21:14Z 2020-02-15T06:59:48Z +1451 52 2 14961 6.99 2005-08-22T06:35:50Z 2020-02-15T06:59:48Z +1452 52 2 15891 5.99 2005-08-23T17:00:12Z 2020-02-15T06:59:48Z +1453 52 1 12001 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1454 53 1 88 3.99 2005-05-25T14:13:54Z 2020-02-15T06:59:48Z +1455 53 1 378 2.99 2005-05-27T09:23:22Z 2020-02-15T06:59:48Z +1456 53 1 751 0.99 2005-05-29T09:55:43Z 2020-02-15T06:59:48Z +1457 53 2 783 5.99 2005-05-29T14:41:18Z 2020-02-15T06:59:48Z +1458 53 2 856 9.99 2005-05-30T02:01:21Z 2020-02-15T06:59:48Z +1459 53 1 1107 2.99 2005-05-31T15:04:05Z 2020-02-15T06:59:48Z +1460 53 1 1964 0.99 2005-06-17T09:10:09Z 2020-02-15T06:59:48Z +1461 53 1 2388 2.99 2005-06-18T15:26:30Z 2020-02-15T06:59:48Z +1462 53 1 2903 2.99 2005-06-20T02:49:01Z 2020-02-15T06:59:48Z +1463 53 2 3140 2.99 2005-06-20T19:47:12Z 2020-02-15T06:59:48Z +1464 53 2 3244 0.99 2005-06-21T03:01:10Z 2020-02-15T06:59:48Z +1465 53 2 3591 2.99 2005-07-06T04:37:10Z 2020-02-15T06:59:48Z +1466 53 2 3898 4.99 2005-07-06T19:12:37Z 2020-02-15T06:59:48Z +1467 53 2 5185 2.99 2005-07-09T10:14:39Z 2020-02-15T06:59:48Z +1468 53 2 7466 2.99 2005-07-27T18:51:17Z 2020-02-15T06:59:48Z +1469 53 1 7699 4.99 2005-07-28T03:52:21Z 2020-02-15T06:59:48Z +1470 53 1 9343 4.99 2005-07-30T18:13:13Z 2020-02-15T06:59:48Z +1471 53 1 9928 7.99 2005-07-31T15:13:57Z 2020-02-15T06:59:48Z +1472 53 1 10594 3.99 2005-08-01T14:14:59Z 2020-02-15T06:59:48Z +1473 53 1 12054 5.99 2005-08-17T20:59:56Z 2020-02-15T06:59:48Z +1474 53 1 12580 2.99 2005-08-18T15:49:08Z 2020-02-15T06:59:48Z +1475 53 1 13049 5.99 2005-08-19T09:25:40Z 2020-02-15T06:59:48Z +1476 53 2 13789 2.99 2005-08-20T12:16:38Z 2020-02-15T06:59:48Z +1477 53 1 14061 2.99 2005-08-20T22:32:11Z 2020-02-15T06:59:48Z +1478 53 2 14091 0.99 2005-08-21T00:11:17Z 2020-02-15T06:59:48Z +1479 53 2 14119 5.99 2005-08-21T01:15:59Z 2020-02-15T06:59:48Z +1480 53 1 14671 4.99 2005-08-21T19:59:30Z 2020-02-15T06:59:48Z +1481 53 2 14811 0.99 2005-08-22T01:09:04Z 2020-02-15T06:59:48Z +1482 53 2 11657 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1483 53 1 14137 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1484 54 2 198 4.99 2005-05-26T07:03:49Z 2020-02-15T06:59:48Z +1485 54 2 441 4.99 2005-05-27T18:11:05Z 2020-02-15T06:59:48Z +1486 54 2 545 3.99 2005-05-28T07:10:20Z 2020-02-15T06:59:48Z +1487 54 1 1556 4.99 2005-06-16T02:19:02Z 2020-02-15T06:59:48Z +1488 54 1 1571 2.99 2005-06-16T03:22:00Z 2020-02-15T06:59:48Z +1489 54 2 2323 6.99 2005-06-18T09:55:02Z 2020-02-15T06:59:48Z +1490 54 1 2647 4.99 2005-06-19T09:57:56Z 2020-02-15T06:59:48Z +1491 54 2 4657 4.99 2005-07-08T09:51:02Z 2020-02-15T06:59:48Z +1492 54 2 5055 1.99 2005-07-09T04:05:28Z 2020-02-15T06:59:48Z +1493 54 1 5929 2.99 2005-07-10T21:59:29Z 2020-02-15T06:59:48Z +1494 54 1 5992 2.99 2005-07-11T01:06:21Z 2020-02-15T06:59:48Z +1495 54 1 6338 7.99 2005-07-11T19:39:41Z 2020-02-15T06:59:48Z +1496 54 2 6560 2.99 2005-07-12T05:22:06Z 2020-02-15T06:59:48Z +1497 54 1 6813 0.99 2005-07-12T18:03:50Z 2020-02-15T06:59:48Z +1498 54 2 8992 4.99 2005-07-30T04:44:18Z 2020-02-15T06:59:48Z +1499 54 2 10489 5.99 2005-08-01T10:27:42Z 2020-02-15T06:59:48Z +1500 54 2 10882 5.99 2005-08-02T00:47:16Z 2020-02-15T06:59:48Z +1501 54 1 10956 4.99 2005-08-02T03:33:14Z 2020-02-15T06:59:48Z +1502 54 1 11182 4.99 2005-08-02T10:55:14Z 2020-02-15T06:59:48Z +1503 54 2 11887 2.99 2005-08-17T15:03:13Z 2020-02-15T06:59:48Z +1504 54 1 12526 2.99 2005-08-18T13:48:43Z 2020-02-15T06:59:48Z +1505 54 2 12775 5.99 2005-08-18T23:35:56Z 2020-02-15T06:59:48Z +1506 54 1 12811 4.99 2005-08-19T00:51:28Z 2020-02-15T06:59:48Z +1507 54 2 12872 0.99 2005-08-19T02:57:37Z 2020-02-15T06:59:48Z +1508 54 2 13315 2.99 2005-08-19T19:16:18Z 2020-02-15T06:59:48Z +1509 54 1 13890 0.99 2005-08-20T15:41:00Z 2020-02-15T06:59:48Z +1510 54 1 14215 4.99 2005-08-21T04:34:11Z 2020-02-15T06:59:48Z +1511 54 1 15226 10.99 2005-08-22T17:20:17Z 2020-02-15T06:59:48Z +1512 54 1 15567 4.99 2005-08-23T05:20:36Z 2020-02-15T06:59:48Z +1513 55 1 555 4.99 2005-05-28T08:31:14Z 2020-02-15T06:59:48Z +1514 55 1 1027 9.99 2005-05-31T03:46:19Z 2020-02-15T06:59:48Z +1515 55 1 1048 0.99 2005-05-31T06:49:53Z 2020-02-15T06:59:48Z +1516 55 2 1825 2.99 2005-06-16T21:53:05Z 2020-02-15T06:59:48Z +1517 55 2 2062 2.99 2005-06-17T15:56:43Z 2020-02-15T06:59:48Z +1518 55 1 2904 2.99 2005-06-20T02:54:06Z 2020-02-15T06:59:48Z +1519 55 1 2976 4.99 2005-06-20T08:09:11Z 2020-02-15T06:59:48Z +1520 55 1 3149 4.99 2005-06-20T20:34:55Z 2020-02-15T06:59:48Z +1521 55 1 4671 4.99 2005-07-08T10:15:32Z 2020-02-15T06:59:48Z +1522 55 2 6314 7.99 2005-07-11T18:32:44Z 2020-02-15T06:59:48Z +1523 55 2 7050 4.99 2005-07-27T03:33:17Z 2020-02-15T06:59:48Z +1524 55 2 8288 6.99 2005-07-29T02:04:22Z 2020-02-15T06:59:48Z +1525 55 1 9302 2.99 2005-07-30T16:34:57Z 2020-02-15T06:59:48Z +1526 55 2 9596 5.99 2005-07-31T03:28:47Z 2020-02-15T06:59:48Z +1527 55 2 9798 2.99 2005-07-31T10:55:18Z 2020-02-15T06:59:48Z +1528 55 2 11287 1.99 2005-08-02T14:49:51Z 2020-02-15T06:59:48Z +1529 55 1 12776 4.99 2005-08-18T23:37:33Z 2020-02-15T06:59:48Z +1530 55 1 12808 4.99 2005-08-19T00:40:41Z 2020-02-15T06:59:48Z +1531 55 2 12972 1.99 2005-08-19T06:43:28Z 2020-02-15T06:59:48Z +1532 55 1 13345 6.99 2005-08-19T20:25:24Z 2020-02-15T06:59:48Z +1533 55 1 14667 2.99 2005-08-21T19:51:11Z 2020-02-15T06:59:48Z +1534 55 1 15296 4.99 2005-08-22T19:37:20Z 2020-02-15T06:59:48Z +1535 56 1 130 3.99 2005-05-25T21:21:56Z 2020-02-15T06:59:48Z +1536 56 1 341 5.99 2005-05-27T04:01:42Z 2020-02-15T06:59:48Z +1537 56 1 496 2.99 2005-05-28T00:43:41Z 2020-02-15T06:59:48Z +1538 56 1 569 6.99 2005-05-28T10:12:41Z 2020-02-15T06:59:48Z +1539 56 2 1795 6.99 2005-06-16T20:09:01Z 2020-02-15T06:59:48Z +1540 56 1 2140 0.99 2005-06-17T21:40:29Z 2020-02-15T06:59:48Z +1541 56 1 2485 4.99 2005-06-18T21:26:03Z 2020-02-15T06:59:48Z +1542 56 1 2989 0.99 2005-06-20T08:59:37Z 2020-02-15T06:59:48Z +1543 56 1 3718 7.99 2005-07-06T10:57:56Z 2020-02-15T06:59:48Z +1544 56 2 3771 2.99 2005-07-06T13:19:34Z 2020-02-15T06:59:48Z +1545 56 1 4097 3.99 2005-07-07T06:10:55Z 2020-02-15T06:59:48Z +1546 56 2 4702 4.99 2005-07-08T11:41:36Z 2020-02-15T06:59:48Z +1547 56 1 5142 4.99 2005-07-09T08:05:23Z 2020-02-15T06:59:48Z +1548 56 1 7385 2.99 2005-07-27T15:49:46Z 2020-02-15T06:59:48Z +1549 56 1 7696 7.99 2005-07-28T03:41:35Z 2020-02-15T06:59:48Z +1550 56 2 7942 0.99 2005-07-28T12:49:44Z 2020-02-15T06:59:48Z +1551 56 1 8285 0.99 2005-07-29T02:00:18Z 2020-02-15T06:59:48Z +1552 56 2 10356 6.99 2005-08-01T05:49:17Z 2020-02-15T06:59:48Z +1553 56 2 10678 0.99 2005-08-01T17:26:24Z 2020-02-15T06:59:48Z +1554 56 1 10946 4.99 2005-08-02T03:20:39Z 2020-02-15T06:59:48Z +1555 56 1 11358 5.99 2005-08-02T17:45:02Z 2020-02-15T06:59:48Z +1556 56 1 11656 4.99 2005-08-17T05:11:09Z 2020-02-15T06:59:48Z +1557 56 2 12537 1.99 2005-08-18T14:06:39Z 2020-02-15T06:59:48Z +1558 56 2 12713 4.99 2005-08-18T21:07:28Z 2020-02-15T06:59:48Z +1559 56 2 13560 8.99 2005-08-20T04:17:16Z 2020-02-15T06:59:48Z +1560 56 1 13769 5.99 2005-08-20T11:43:52Z 2020-02-15T06:59:48Z +1561 56 2 14291 3.99 2005-08-21T07:03:05Z 2020-02-15T06:59:48Z +1562 56 2 14534 0.99 2005-08-21T15:16:29Z 2020-02-15T06:59:48Z +1563 56 2 15702 7.99 2005-08-23T10:23:28Z 2020-02-15T06:59:48Z +1564 56 2 15714 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1565 57 2 152 9.99 2005-05-26T00:41:10Z 2020-02-15T06:59:48Z +1566 57 2 943 4.99 2005-05-30T15:20:19Z 2020-02-15T06:59:48Z +1567 57 1 2058 5.99 2005-06-17T15:34:41Z 2020-02-15T06:59:48Z +1568 57 1 2105 0.99 2005-06-17T19:15:45Z 2020-02-15T06:59:48Z +1569 57 1 2360 4.99 2005-06-18T13:11:13Z 2020-02-15T06:59:48Z +1570 57 2 2910 7.99 2005-06-20T03:31:18Z 2020-02-15T06:59:48Z +1571 57 1 3357 0.99 2005-06-21T11:55:42Z 2020-02-15T06:59:48Z +1572 57 1 3727 4.99 2005-07-06T11:16:43Z 2020-02-15T06:59:48Z +1573 57 2 4226 4.99 2005-07-07T12:37:56Z 2020-02-15T06:59:48Z +1574 57 1 5060 4.99 2005-07-09T04:28:03Z 2020-02-15T06:59:48Z +1575 57 1 5694 0.99 2005-07-10T09:40:38Z 2020-02-15T06:59:48Z +1576 57 2 5948 2.99 2005-07-10T23:12:08Z 2020-02-15T06:59:48Z +1577 57 2 6482 4.99 2005-07-12T01:50:21Z 2020-02-15T06:59:48Z +1578 57 1 6494 1.99 2005-07-12T02:42:51Z 2020-02-15T06:59:48Z +1579 57 2 6649 4.99 2005-07-12T10:51:09Z 2020-02-15T06:59:48Z +1580 57 2 8249 5.99 2005-07-29T00:48:44Z 2020-02-15T06:59:48Z +1581 57 1 9086 0.99 2005-07-30T08:18:46Z 2020-02-15T06:59:48Z +1582 57 2 9136 0.99 2005-07-30T10:07:20Z 2020-02-15T06:59:48Z +1583 57 1 9211 1.99 2005-07-30T12:59:45Z 2020-02-15T06:59:48Z +1584 57 1 9703 0.99 2005-07-31T07:34:52Z 2020-02-15T06:59:48Z +1585 57 2 9812 2.99 2005-07-31T11:28:07Z 2020-02-15T06:59:48Z +1586 57 2 10169 4.99 2005-07-31T23:27:13Z 2020-02-15T06:59:48Z +1587 57 2 12925 5.99 2005-08-19T04:59:01Z 2020-02-15T06:59:48Z +1588 57 2 13163 0.99 2005-08-19T13:29:46Z 2020-02-15T06:59:48Z +1589 57 2 13743 0.99 2005-08-20T10:51:27Z 2020-02-15T06:59:48Z +1590 57 2 13929 9.99 2005-08-20T17:13:48Z 2020-02-15T06:59:48Z +1591 57 2 15571 0.99 2005-08-23T05:26:30Z 2020-02-15T06:59:48Z +1592 57 2 15871 9.99 2005-08-23T16:24:24Z 2020-02-15T06:59:48Z +1593 58 1 230 0.99 2005-05-26T11:31:50Z 2020-02-15T06:59:48Z +1594 58 2 276 7.99 2005-05-26T17:16:07Z 2020-02-15T06:59:48Z +1595 58 2 761 0.99 2005-05-29T11:09:01Z 2020-02-15T06:59:48Z +1596 58 1 2191 4.99 2005-06-18T01:33:09Z 2020-02-15T06:59:48Z +1597 58 2 2543 0.99 2005-06-19T02:14:11Z 2020-02-15T06:59:48Z +1598 58 1 2906 0.99 2005-06-20T03:04:56Z 2020-02-15T06:59:48Z +1599 58 1 3685 4.99 2005-07-06T09:30:45Z 2020-02-15T06:59:48Z +1600 58 2 4131 4.99 2005-07-07T07:53:18Z 2020-02-15T06:59:48Z +1601 58 2 5439 1.99 2005-07-09T21:39:35Z 2020-02-15T06:59:48Z +1602 58 1 7063 9.99 2005-07-27T03:52:27Z 2020-02-15T06:59:48Z +1603 58 2 7487 4.99 2005-07-27T19:32:45Z 2020-02-15T06:59:48Z +1604 58 1 8853 0.99 2005-07-29T23:34:21Z 2020-02-15T06:59:48Z +1605 58 2 9561 2.99 2005-07-31T02:22:13Z 2020-02-15T06:59:48Z +1606 58 2 10037 2.99 2005-07-31T18:48:08Z 2020-02-15T06:59:48Z +1607 58 1 10068 4.99 2005-07-31T19:39:38Z 2020-02-15T06:59:48Z +1608 58 2 10256 4.99 2005-08-01T02:47:11Z 2020-02-15T06:59:48Z +1609 58 1 10668 0.99 2005-08-01T17:00:27Z 2020-02-15T06:59:48Z +1610 58 1 11416 6.99 2005-08-02T19:44:04Z 2020-02-15T06:59:48Z +1611 58 2 12292 8.99 2005-08-18T05:08:54Z 2020-02-15T06:59:48Z +1612 58 1 13194 6.99 2005-08-19T14:34:12Z 2020-02-15T06:59:48Z +1613 58 1 13207 3.99 2005-08-19T15:14:38Z 2020-02-15T06:59:48Z +1614 58 1 13930 2.99 2005-08-20T17:15:06Z 2020-02-15T06:59:48Z +1615 58 2 13973 4.99 2005-08-20T18:52:43Z 2020-02-15T06:59:48Z +1616 58 2 14305 5.99 2005-08-21T07:29:05Z 2020-02-15T06:59:48Z +1617 58 1 14665 6.99 2005-08-21T19:49:46Z 2020-02-15T06:59:48Z +1618 58 1 14989 4.99 2005-08-22T07:47:07Z 2020-02-15T06:59:48Z +1619 58 2 15326 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1620 59 2 212 4.99 2005-05-26T08:34:41Z 2020-02-15T06:59:48Z +1621 59 2 951 2.99 2005-05-30T16:10:35Z 2020-02-15T06:59:48Z +1622 59 1 1154 5.99 2005-05-31T21:42:09Z 2020-02-15T06:59:48Z +1623 59 1 1269 2.99 2005-06-15T07:29:59Z 2020-02-15T06:59:48Z +1624 59 1 1728 3.99 2005-06-16T15:29:29Z 2020-02-15T06:59:48Z +1625 59 1 2921 3.99 2005-06-20T04:13:04Z 2020-02-15T06:59:48Z +1626 59 2 4148 2.99 2005-07-07T08:36:58Z 2020-02-15T06:59:48Z +1627 59 1 4384 4.99 2005-07-07T20:46:45Z 2020-02-15T06:59:48Z +1628 59 1 4631 4.99 2005-07-08T08:38:22Z 2020-02-15T06:59:48Z +1629 59 1 4891 3.99 2005-07-08T20:06:19Z 2020-02-15T06:59:48Z +1630 59 2 5195 8.99 2005-07-09T10:39:31Z 2020-02-15T06:59:48Z +1631 59 1 5207 3.99 2005-07-09T11:15:44Z 2020-02-15T06:59:48Z +1632 59 1 5830 4.99 2005-07-10T16:34:00Z 2020-02-15T06:59:48Z +1633 59 1 7991 4.99 2005-07-28T14:45:45Z 2020-02-15T06:59:48Z +1634 59 2 8643 4.99 2005-07-29T14:45:23Z 2020-02-15T06:59:48Z +1635 59 1 9469 8.99 2005-07-30T22:56:34Z 2020-02-15T06:59:48Z +1636 59 2 9573 6.99 2005-07-31T02:45:38Z 2020-02-15T06:59:48Z +1637 59 2 11396 4.99 2005-08-02T18:48:29Z 2020-02-15T06:59:48Z +1638 59 1 12833 5.99 2005-08-19T01:42:28Z 2020-02-15T06:59:48Z +1639 59 2 13282 2.99 2005-08-19T18:08:18Z 2020-02-15T06:59:48Z +1640 59 1 13573 2.99 2005-08-20T05:10:14Z 2020-02-15T06:59:48Z +1641 59 2 13921 4.99 2005-08-20T16:57:11Z 2020-02-15T06:59:48Z +1642 59 1 14135 5.99 2005-08-21T01:53:54Z 2020-02-15T06:59:48Z +1643 59 1 14977 5.99 2005-08-22T07:12:53Z 2020-02-15T06:59:48Z +1644 59 2 15271 5.99 2005-08-22T18:48:48Z 2020-02-15T06:59:48Z +1645 59 2 15744 4.99 2005-08-23T12:15:51Z 2020-02-15T06:59:48Z +1646 59 2 15905 2.99 2005-08-23T17:33:04Z 2020-02-15T06:59:48Z +1647 60 1 318 4.99 2005-05-26T23:37:39Z 2020-02-15T06:59:48Z +1648 60 2 706 1.99 2005-05-29T03:05:49Z 2020-02-15T06:59:48Z +1649 60 2 934 2.99 2005-05-30T13:24:46Z 2020-02-15T06:59:48Z +1650 60 2 1482 4.99 2005-06-15T21:18:16Z 2020-02-15T06:59:48Z +1651 60 2 2394 4.99 2005-06-18T15:42:30Z 2020-02-15T06:59:48Z +1652 60 2 3473 2.99 2005-07-05T22:57:34Z 2020-02-15T06:59:48Z +1653 60 1 3849 2.99 2005-07-06T16:49:43Z 2020-02-15T06:59:48Z +1654 60 1 6282 5.99 2005-07-11T16:46:22Z 2020-02-15T06:59:48Z +1655 60 2 7067 0.99 2005-07-27T03:55:10Z 2020-02-15T06:59:48Z +1656 60 1 7331 3.99 2005-07-27T13:57:50Z 2020-02-15T06:59:48Z +1657 60 1 7494 0.99 2005-07-27T19:56:31Z 2020-02-15T06:59:48Z +1658 60 1 9356 4.99 2005-07-30T18:36:24Z 2020-02-15T06:59:48Z +1659 60 1 9761 4.99 2005-07-31T09:31:54Z 2020-02-15T06:59:48Z +1660 60 2 10680 0.99 2005-08-01T17:28:05Z 2020-02-15T06:59:48Z +1661 60 1 11092 4.99 2005-08-02T07:58:50Z 2020-02-15T06:59:48Z +1662 60 1 11404 8.99 2005-08-02T19:12:40Z 2020-02-15T06:59:48Z +1663 60 1 12084 1.99 2005-08-17T22:16:49Z 2020-02-15T06:59:48Z +1664 60 2 12614 7.99 2005-08-18T17:16:03Z 2020-02-15T06:59:48Z +1665 60 1 15093 2.99 2005-08-22T11:39:03Z 2020-02-15T06:59:48Z +1666 60 1 15318 2.99 2005-08-22T20:15:16Z 2020-02-15T06:59:48Z +1667 60 1 15618 5.99 2005-08-23T07:07:58Z 2020-02-15T06:59:48Z +1668 60 1 15632 0.99 2005-08-23T07:30:26Z 2020-02-15T06:59:48Z +1669 60 1 15649 2.99 2005-08-23T08:28:03Z 2020-02-15T06:59:48Z +1670 60 2 12489 9.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1671 60 2 14741 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1672 61 1 1157 0.99 2005-05-31T22:47:45Z 2020-02-15T06:59:48Z +1673 61 1 7027 7.99 2005-07-27T02:50:15Z 2020-02-15T06:59:48Z +1674 61 2 7071 1.99 2005-07-27T04:01:15Z 2020-02-15T06:59:48Z +1675 61 2 8029 6.99 2005-07-28T16:11:21Z 2020-02-15T06:59:48Z +1676 61 2 8075 4.99 2005-07-28T17:37:28Z 2020-02-15T06:59:48Z +1677 61 1 8651 3.99 2005-07-29T15:02:18Z 2020-02-15T06:59:48Z +1678 61 2 9597 6.99 2005-07-31T03:29:07Z 2020-02-15T06:59:48Z +1679 61 2 10549 0.99 2005-08-01T12:46:39Z 2020-02-15T06:59:48Z +1680 61 2 11379 2.99 2005-08-02T18:16:55Z 2020-02-15T06:59:48Z +1681 61 1 12072 9.99 2005-08-17T21:50:25Z 2020-02-15T06:59:48Z +1682 61 1 13450 0.99 2005-08-20T00:18:15Z 2020-02-15T06:59:48Z +1683 61 1 13830 0.99 2005-08-20T13:57:59Z 2020-02-15T06:59:48Z +1684 61 2 15089 6.99 2005-08-22T11:34:06Z 2020-02-15T06:59:48Z +1685 61 1 15681 1.99 2005-08-23T09:35:34Z 2020-02-15T06:59:48Z +1686 62 2 885 0.99 2005-05-30T06:54:28Z 2020-02-15T06:59:48Z +1687 62 1 947 4.99 2005-05-30T15:36:57Z 2020-02-15T06:59:48Z +1688 62 2 1241 6.99 2005-06-15T04:59:43Z 2020-02-15T06:59:48Z +1689 62 1 1486 0.99 2005-06-15T21:25:30Z 2020-02-15T06:59:48Z +1690 62 1 1587 0.99 2005-06-16T04:52:28Z 2020-02-15T06:59:48Z +1691 62 2 3021 4.99 2005-06-20T11:13:01Z 2020-02-15T06:59:48Z +1692 62 1 3035 5.99 2005-06-20T12:17:03Z 2020-02-15T06:59:48Z +1693 62 1 3287 0.99 2005-06-21T06:32:39Z 2020-02-15T06:59:48Z +1694 62 1 3327 3.99 2005-06-21T09:04:50Z 2020-02-15T06:59:48Z +1695 62 2 3843 2.99 2005-07-06T16:35:40Z 2020-02-15T06:59:48Z +1696 62 2 4159 4.99 2005-07-07T09:10:57Z 2020-02-15T06:59:48Z +1697 62 2 5292 2.99 2005-07-09T15:16:54Z 2020-02-15T06:59:48Z +1698 62 2 8360 4.99 2005-07-29T05:08:00Z 2020-02-15T06:59:48Z +1699 62 2 10080 0.99 2005-07-31T20:07:10Z 2020-02-15T06:59:48Z +1700 62 1 10815 2.99 2005-08-01T22:46:21Z 2020-02-15T06:59:48Z +1701 62 1 11297 5.99 2005-08-02T15:22:47Z 2020-02-15T06:59:48Z +1702 62 1 11988 0.99 2005-08-17T18:23:50Z 2020-02-15T06:59:48Z +1703 62 2 13512 8.99 2005-08-20T02:27:13Z 2020-02-15T06:59:48Z +1704 62 2 14574 1.99 2005-08-21T16:50:34Z 2020-02-15T06:59:48Z +1705 62 2 14594 2.99 2005-08-21T17:34:24Z 2020-02-15T06:59:48Z +1706 62 2 14821 4.99 2005-08-22T01:20:19Z 2020-02-15T06:59:48Z +1707 62 1 15464 6.99 2005-08-23T01:15:18Z 2020-02-15T06:59:48Z +1708 62 1 15591 0.99 2005-08-23T06:11:52Z 2020-02-15T06:59:48Z +1709 63 2 1818 0.99 2005-06-16T21:30:34Z 2020-02-15T06:59:48Z +1710 63 2 3923 8.99 2005-07-06T20:34:10Z 2020-02-15T06:59:48Z +1711 63 1 4587 4.99 2005-07-08T06:16:26Z 2020-02-15T06:59:48Z +1712 63 1 5585 6.99 2005-07-10T04:15:43Z 2020-02-15T06:59:48Z +1713 63 2 5788 4.99 2005-07-10T14:10:22Z 2020-02-15T06:59:48Z +1714 63 2 5832 4.99 2005-07-10T16:34:48Z 2020-02-15T06:59:48Z +1715 63 2 6769 3.99 2005-07-12T15:48:54Z 2020-02-15T06:59:48Z +1716 63 2 6847 8.99 2005-07-12T19:22:37Z 2020-02-15T06:59:48Z +1717 63 2 8311 5.99 2005-07-29T03:26:07Z 2020-02-15T06:59:48Z +1718 63 2 9007 0.99 2005-07-30T05:09:32Z 2020-02-15T06:59:48Z +1719 63 1 9546 4.99 2005-07-31T01:47:40Z 2020-02-15T06:59:48Z +1720 63 2 9549 3.99 2005-07-31T01:57:04Z 2020-02-15T06:59:48Z +1721 63 1 9795 0.99 2005-07-31T10:47:19Z 2020-02-15T06:59:48Z +1722 63 2 9938 2.99 2005-07-31T15:28:47Z 2020-02-15T06:59:48Z +1723 63 2 10148 0.99 2005-07-31T22:19:16Z 2020-02-15T06:59:48Z +1724 63 1 10288 6.99 2005-08-01T03:38:42Z 2020-02-15T06:59:48Z +1725 63 1 11902 4.99 2005-08-17T15:37:34Z 2020-02-15T06:59:48Z +1726 63 2 12342 2.99 2005-08-18T07:12:46Z 2020-02-15T06:59:48Z +1727 63 2 12515 0.99 2005-08-18T13:39:26Z 2020-02-15T06:59:48Z +1728 63 1 12954 7.99 2005-08-19T06:04:34Z 2020-02-15T06:59:48Z +1729 63 1 13089 0.99 2005-08-19T10:38:56Z 2020-02-15T06:59:48Z +1730 63 1 13624 8.99 2005-08-20T06:51:02Z 2020-02-15T06:59:48Z +1731 63 1 14931 3.99 2005-08-22T05:38:55Z 2020-02-15T06:59:48Z +1732 63 1 15060 5.99 2005-08-22T10:24:32Z 2020-02-15T06:59:48Z +1733 63 1 15229 2.99 2005-08-22T17:30:25Z 2020-02-15T06:59:48Z +1734 64 1 494 4.99 2005-05-28T00:39:31Z 2020-02-15T06:59:48Z +1735 64 1 587 0.99 2005-05-28T12:05:33Z 2020-02-15T06:59:48Z +1736 64 1 1001 2.99 2005-05-31T00:46:31Z 2020-02-15T06:59:48Z +1737 64 2 1335 0.99 2005-06-15T11:51:30Z 2020-02-15T06:59:48Z +1738 64 1 2060 2.99 2005-06-17T15:42:42Z 2020-02-15T06:59:48Z +1739 64 2 3982 0.99 2005-07-06T23:14:16Z 2020-02-15T06:59:48Z +1740 64 1 4288 4.99 2005-07-07T15:38:25Z 2020-02-15T06:59:48Z +1741 64 1 4690 1.99 2005-07-08T11:04:02Z 2020-02-15T06:59:48Z +1742 64 2 4819 5.99 2005-07-08T17:19:15Z 2020-02-15T06:59:48Z +1743 64 2 4971 5.99 2005-07-08T23:54:49Z 2020-02-15T06:59:48Z +1744 64 1 5114 3.99 2005-07-09T07:07:05Z 2020-02-15T06:59:48Z +1745 64 2 5279 2.99 2005-07-09T14:46:36Z 2020-02-15T06:59:48Z +1746 64 1 5432 0.99 2005-07-09T21:21:25Z 2020-02-15T06:59:48Z +1747 64 2 6372 2.99 2005-07-11T21:35:06Z 2020-02-15T06:59:48Z +1748 64 2 6457 0.99 2005-07-12T01:06:35Z 2020-02-15T06:59:48Z +1749 64 2 6698 1.99 2005-07-12T12:45:00Z 2020-02-15T06:59:48Z +1750 64 2 6744 0.99 2005-07-12T14:30:28Z 2020-02-15T06:59:48Z +1751 64 2 7045 0.99 2005-07-27T03:27:35Z 2020-02-15T06:59:48Z +1752 64 1 7082 2.99 2005-07-27T04:27:32Z 2020-02-15T06:59:48Z +1753 64 1 7476 1.99 2005-07-27T19:08:56Z 2020-02-15T06:59:48Z +1754 64 2 8602 4.99 2005-07-29T13:04:27Z 2020-02-15T06:59:48Z +1755 64 1 9832 2.99 2005-07-31T12:01:49Z 2020-02-15T06:59:48Z +1756 64 1 9880 6.99 2005-07-31T13:49:02Z 2020-02-15T06:59:48Z +1757 64 1 9924 3.99 2005-07-31T15:04:57Z 2020-02-15T06:59:48Z +1758 64 2 10185 0.99 2005-08-01T00:12:11Z 2020-02-15T06:59:48Z +1759 64 2 10714 4.99 2005-08-01T18:51:29Z 2020-02-15T06:59:48Z +1760 64 1 10889 4.99 2005-08-02T00:54:33Z 2020-02-15T06:59:48Z +1761 64 1 12409 0.99 2005-08-18T09:43:58Z 2020-02-15T06:59:48Z +1762 64 1 13773 2.99 2005-08-20T11:50:14Z 2020-02-15T06:59:48Z +1763 64 1 13971 0.99 2005-08-20T18:44:53Z 2020-02-15T06:59:48Z +1764 64 1 14167 5.99 2005-08-21T02:59:48Z 2020-02-15T06:59:48Z +1765 64 2 14316 0.99 2005-08-21T07:59:47Z 2020-02-15T06:59:48Z +1766 64 2 13333 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1767 65 1 295 4.99 2005-05-26T20:33:20Z 2020-02-15T06:59:48Z +1768 65 2 657 0.99 2005-05-28T20:23:09Z 2020-02-15T06:59:48Z +1769 65 1 2173 7.99 2005-06-18T00:08:20Z 2020-02-15T06:59:48Z +1770 65 1 3051 4.99 2005-06-20T13:06:52Z 2020-02-15T06:59:48Z +1771 65 1 3535 4.99 2005-07-06T01:32:46Z 2020-02-15T06:59:48Z +1772 65 1 4240 4.99 2005-07-07T13:33:12Z 2020-02-15T06:59:48Z +1773 65 2 4635 3.99 2005-07-08T08:42:40Z 2020-02-15T06:59:48Z +1774 65 1 5735 3.99 2005-07-10T11:39:15Z 2020-02-15T06:59:48Z +1775 65 2 6527 0.99 2005-07-12T04:23:06Z 2020-02-15T06:59:48Z +1776 65 1 7877 6.99 2005-07-28T10:25:36Z 2020-02-15T06:59:48Z +1777 65 2 8392 1.99 2005-07-29T06:00:27Z 2020-02-15T06:59:48Z +1778 65 2 8404 5.99 2005-07-29T06:27:01Z 2020-02-15T06:59:48Z +1779 65 1 9293 3.99 2005-07-30T16:12:28Z 2020-02-15T06:59:48Z +1780 65 2 11100 5.99 2005-08-02T08:08:00Z 2020-02-15T06:59:48Z +1781 65 1 11227 8.99 2005-08-02T12:48:05Z 2020-02-15T06:59:48Z +1782 65 2 11461 4.99 2005-08-02T21:35:00Z 2020-02-15T06:59:48Z +1783 65 2 11845 2.99 2005-08-17T13:16:38Z 2020-02-15T06:59:48Z +1784 65 1 12114 7.99 2005-08-17T23:02:00Z 2020-02-15T06:59:48Z +1785 65 1 12688 6.99 2005-08-18T19:59:54Z 2020-02-15T06:59:48Z +1786 65 2 13692 0.99 2005-08-20T09:07:52Z 2020-02-15T06:59:48Z +1787 65 2 14140 6.99 2005-08-21T02:04:57Z 2020-02-15T06:59:48Z +1788 65 1 14356 0.99 2005-08-21T09:08:51Z 2020-02-15T06:59:48Z +1789 66 2 933 4.99 2005-05-30T13:08:45Z 2020-02-15T06:59:48Z +1790 66 1 1236 2.99 2005-06-15T04:34:27Z 2020-02-15T06:59:48Z +1791 66 1 1907 2.99 2005-06-17T05:08:27Z 2020-02-15T06:59:48Z +1792 66 1 2106 4.99 2005-06-17T19:29:03Z 2020-02-15T06:59:48Z +1793 66 2 2571 2.99 2005-06-19T04:20:14Z 2020-02-15T06:59:48Z +1794 66 1 2577 4.99 2005-06-19T04:36:03Z 2020-02-15T06:59:48Z +1795 66 1 3334 3.99 2005-06-21T10:04:33Z 2020-02-15T06:59:48Z +1796 66 2 3395 6.99 2005-06-21T15:19:19Z 2020-02-15T06:59:48Z +1797 66 1 3573 4.99 2005-07-06T03:33:48Z 2020-02-15T06:59:48Z +1798 66 2 3757 2.99 2005-07-06T12:42:26Z 2020-02-15T06:59:48Z +1799 66 2 4088 2.99 2005-07-07T05:31:55Z 2020-02-15T06:59:48Z +1800 66 1 4108 4.99 2005-07-07T06:38:31Z 2020-02-15T06:59:48Z +1801 66 2 4165 6.99 2005-07-07T09:23:27Z 2020-02-15T06:59:48Z +1802 66 2 4911 5.99 2005-07-08T21:20:26Z 2020-02-15T06:59:48Z +1803 66 2 5915 0.99 2005-07-10T21:12:16Z 2020-02-15T06:59:48Z +1804 66 1 6290 8.99 2005-07-11T17:12:42Z 2020-02-15T06:59:48Z +1805 66 2 6348 5.99 2005-07-11T20:21:18Z 2020-02-15T06:59:48Z +1806 66 1 6402 3.99 2005-07-11T22:46:10Z 2020-02-15T06:59:48Z +1807 66 1 6995 2.99 2005-07-27T01:12:13Z 2020-02-15T06:59:48Z +1808 66 1 7872 2.99 2005-07-28T10:18:16Z 2020-02-15T06:59:48Z +1809 66 1 9091 5.99 2005-07-30T08:30:45Z 2020-02-15T06:59:48Z +1810 66 1 10419 0.99 2005-08-01T08:13:22Z 2020-02-15T06:59:48Z +1811 66 2 11028 5.99 2005-08-02T05:48:20Z 2020-02-15T06:59:48Z +1812 66 2 11360 2.99 2005-08-02T17:46:04Z 2020-02-15T06:59:48Z +1813 66 1 11683 5.99 2005-08-17T06:15:17Z 2020-02-15T06:59:48Z +1814 66 1 11935 0.99 2005-08-17T16:42:13Z 2020-02-15T06:59:48Z +1815 66 1 12699 0.99 2005-08-18T20:20:59Z 2020-02-15T06:59:48Z +1816 66 1 13900 2.99 2005-08-20T16:05:41Z 2020-02-15T06:59:48Z +1817 66 2 14123 2.99 2005-08-21T01:31:25Z 2020-02-15T06:59:48Z +1818 66 1 14217 6.99 2005-08-21T04:37:56Z 2020-02-15T06:59:48Z +1819 66 2 14351 2.99 2005-08-21T09:04:20Z 2020-02-15T06:59:48Z +1820 66 2 14429 0.99 2005-08-21T11:29:43Z 2020-02-15T06:59:48Z +1821 66 2 15026 4.99 2005-08-22T09:01:52Z 2020-02-15T06:59:48Z +1822 66 1 15598 8.99 2005-08-23T06:23:26Z 2020-02-15T06:59:48Z +1823 67 2 331 9.99 2005-05-27T02:22:26Z 2020-02-15T06:59:48Z +1824 67 1 767 2.99 2005-05-29T12:20:19Z 2020-02-15T06:59:48Z +1825 67 1 2064 3.99 2005-06-17T15:57:56Z 2020-02-15T06:59:48Z +1826 67 1 2542 3.99 2005-06-19T02:08:39Z 2020-02-15T06:59:48Z +1827 67 2 2810 0.99 2005-06-19T19:44:12Z 2020-02-15T06:59:48Z +1828 67 1 3359 4.99 2005-06-21T12:08:18Z 2020-02-15T06:59:48Z +1829 67 2 4090 4.99 2005-07-07T05:47:33Z 2020-02-15T06:59:48Z +1830 67 2 5399 2.99 2005-07-09T19:52:44Z 2020-02-15T06:59:48Z +1831 67 2 5510 2.99 2005-07-10T00:58:37Z 2020-02-15T06:59:48Z +1832 67 1 6137 2.99 2005-07-11T08:34:20Z 2020-02-15T06:59:48Z +1833 67 2 7277 5.99 2005-07-27T11:48:37Z 2020-02-15T06:59:48Z +1834 67 2 7895 0.99 2005-07-28T10:57:15Z 2020-02-15T06:59:48Z +1835 67 2 8563 1.99 2005-07-29T11:32:58Z 2020-02-15T06:59:48Z +1836 67 1 9640 7.99 2005-07-31T05:33:25Z 2020-02-15T06:59:48Z +1837 67 1 11295 8.99 2005-08-02T15:10:06Z 2020-02-15T06:59:48Z +1838 67 1 11894 8.99 2005-08-17T15:15:01Z 2020-02-15T06:59:48Z +1839 67 2 13437 4.99 2005-08-19T23:37:52Z 2020-02-15T06:59:48Z +1840 67 1 13652 2.99 2005-08-20T07:52:34Z 2020-02-15T06:59:48Z +1841 67 2 13791 4.99 2005-08-20T12:21:05Z 2020-02-15T06:59:48Z +1842 67 2 13837 2.99 2005-08-20T14:19:03Z 2020-02-15T06:59:48Z +1843 67 2 14967 4.99 2005-08-22T06:46:03Z 2020-02-15T06:59:48Z +1844 67 2 15085 2.99 2005-08-22T11:19:22Z 2020-02-15T06:59:48Z +1845 68 2 1828 5.99 2005-06-16T22:04:34Z 2020-02-15T06:59:48Z +1846 68 2 1957 8.99 2005-06-17T08:50:58Z 2020-02-15T06:59:48Z +1847 68 2 2633 2.99 2005-06-19T08:53:10Z 2020-02-15T06:59:48Z +1848 68 2 2662 4.99 2005-06-19T10:53:42Z 2020-02-15T06:59:48Z +1849 68 1 2686 2.99 2005-06-19T12:44:20Z 2020-02-15T06:59:48Z +1850 68 1 3598 0.99 2005-07-06T05:11:04Z 2020-02-15T06:59:48Z +1851 68 2 3801 4.99 2005-07-06T15:05:50Z 2020-02-15T06:59:48Z +1852 68 1 3864 0.99 2005-07-06T17:41:42Z 2020-02-15T06:59:48Z +1853 68 2 4555 6.99 2005-07-08T04:48:36Z 2020-02-15T06:59:48Z +1854 68 1 4925 3.99 2005-07-08T21:56:00Z 2020-02-15T06:59:48Z +1855 68 1 6512 4.99 2005-07-12T03:42:49Z 2020-02-15T06:59:48Z +1856 68 2 9339 3.99 2005-07-30T18:03:28Z 2020-02-15T06:59:48Z +1857 68 1 9538 3.99 2005-07-31T01:25:22Z 2020-02-15T06:59:48Z +1858 68 2 9642 4.99 2005-07-31T05:33:57Z 2020-02-15T06:59:48Z +1859 68 1 10115 7.99 2005-07-31T21:13:47Z 2020-02-15T06:59:48Z +1860 68 1 11277 2.99 2005-08-02T14:28:50Z 2020-02-15T06:59:48Z +1861 68 2 12742 2.99 2005-08-18T22:22:03Z 2020-02-15T06:59:48Z +1862 68 2 13475 4.99 2005-08-20T01:05:05Z 2020-02-15T06:59:48Z +1863 68 2 14242 0.99 2005-08-21T05:25:59Z 2020-02-15T06:59:48Z +1864 68 2 14455 5.99 2005-08-21T12:36:11Z 2020-02-15T06:59:48Z +1865 68 1 14947 1.99 2005-08-22T06:07:52Z 2020-02-15T06:59:48Z +1866 68 1 15524 4.99 2005-08-23T03:36:26Z 2020-02-15T06:59:48Z +1867 69 2 584 4.99 2005-05-28T11:49:00Z 2020-02-15T06:59:48Z +1868 69 2 765 1.99 2005-05-29T11:38:34Z 2020-02-15T06:59:48Z +1869 69 1 1549 2.99 2005-06-16T01:57:15Z 2020-02-15T06:59:48Z +1870 69 1 3358 4.99 2005-06-21T11:56:40Z 2020-02-15T06:59:48Z +1871 69 1 3883 8.99 2005-07-06T18:39:38Z 2020-02-15T06:59:48Z +1872 69 1 4265 0.99 2005-07-07T14:27:51Z 2020-02-15T06:59:48Z +1873 69 1 4427 0.99 2005-07-07T22:28:51Z 2020-02-15T06:59:48Z +1874 69 2 5569 3.99 2005-07-10T03:38:32Z 2020-02-15T06:59:48Z +1875 69 2 6297 4.99 2005-07-11T17:37:22Z 2020-02-15T06:59:48Z +1876 69 1 6385 6.99 2005-07-11T22:07:32Z 2020-02-15T06:59:48Z +1877 69 2 6785 6.99 2005-07-12T16:30:57Z 2020-02-15T06:59:48Z +1878 69 2 8649 6.99 2005-07-29T14:57:33Z 2020-02-15T06:59:48Z +1879 69 2 9193 2.99 2005-07-30T12:28:42Z 2020-02-15T06:59:48Z +1880 69 1 9612 2.99 2005-07-31T03:58:31Z 2020-02-15T06:59:48Z +1881 69 2 10074 0.99 2005-07-31T19:57:16Z 2020-02-15T06:59:48Z +1882 69 1 11943 3.99 2005-08-17T17:00:42Z 2020-02-15T06:59:48Z +1883 69 1 12012 2.99 2005-08-17T19:20:48Z 2020-02-15T06:59:48Z +1884 69 1 12121 2.99 2005-08-17T23:20:40Z 2020-02-15T06:59:48Z +1885 69 1 12966 5.99 2005-08-19T06:37:48Z 2020-02-15T06:59:48Z +1886 69 1 13023 5.99 2005-08-19T08:13:54Z 2020-02-15T06:59:48Z +1887 69 2 14311 3.99 2005-08-21T07:45:47Z 2020-02-15T06:59:48Z +1888 69 2 14685 0.99 2005-08-21T20:31:25Z 2020-02-15T06:59:48Z +1889 69 2 14767 2.99 2005-08-21T23:43:00Z 2020-02-15T06:59:48Z +1890 69 1 15547 2.99 2005-08-23T04:25:50Z 2020-02-15T06:59:48Z +1891 69 2 11995 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1892 70 2 1044 4.99 2005-05-31T06:24:44Z 2020-02-15T06:59:48Z +1893 70 1 2472 4.99 2005-06-18T20:32:40Z 2020-02-15T06:59:48Z +1894 70 1 4061 0.99 2005-07-07T04:13:35Z 2020-02-15T06:59:48Z +1895 70 1 5927 5.99 2005-07-10T21:57:14Z 2020-02-15T06:59:48Z +1896 70 2 7036 4.99 2005-07-27T03:06:12Z 2020-02-15T06:59:48Z +1897 70 2 7421 7.99 2005-07-27T17:10:05Z 2020-02-15T06:59:48Z +1898 70 1 7714 2.99 2005-07-28T04:32:30Z 2020-02-15T06:59:48Z +1899 70 2 8550 0.99 2005-07-29T11:12:37Z 2020-02-15T06:59:48Z +1900 70 1 8747 2.99 2005-07-29T19:07:57Z 2020-02-15T06:59:48Z +1901 70 1 11274 9.99 2005-08-02T14:24:08Z 2020-02-15T06:59:48Z +1902 70 1 11901 2.99 2005-08-17T15:35:47Z 2020-02-15T06:59:48Z +1903 70 1 12003 4.99 2005-08-17T18:56:05Z 2020-02-15T06:59:48Z +1904 70 2 12218 4.99 2005-08-18T02:48:14Z 2020-02-15T06:59:48Z +1905 70 1 12581 6.99 2005-08-18T15:49:15Z 2020-02-15T06:59:48Z +1906 70 1 12951 3.99 2005-08-19T05:56:44Z 2020-02-15T06:59:48Z +1907 70 2 13680 4.99 2005-08-20T08:44:06Z 2020-02-15T06:59:48Z +1908 70 2 15238 0.99 2005-08-22T17:46:12Z 2020-02-15T06:59:48Z +1909 70 1 15616 3.99 2005-08-23T07:06:38Z 2020-02-15T06:59:48Z +1910 71 1 199 2.99 2005-05-26T07:11:58Z 2020-02-15T06:59:48Z +1911 71 1 272 9.99 2005-05-26T16:27:11Z 2020-02-15T06:59:48Z +1912 71 2 1873 2.99 2005-06-17T02:38:28Z 2020-02-15T06:59:48Z +1913 71 1 2374 4.99 2005-06-18T14:44:06Z 2020-02-15T06:59:48Z +1914 71 2 3345 5.99 2005-06-21T11:05:07Z 2020-02-15T06:59:48Z +1915 71 2 4614 4.99 2005-07-08T07:45:17Z 2020-02-15T06:59:48Z +1916 71 2 5281 1.99 2005-07-09T14:55:07Z 2020-02-15T06:59:48Z +1917 71 2 5358 3.99 2005-07-09T18:09:21Z 2020-02-15T06:59:48Z +1918 71 1 5543 8.99 2005-07-10T02:48:03Z 2020-02-15T06:59:48Z +1919 71 1 5770 4.99 2005-07-10T13:21:28Z 2020-02-15T06:59:48Z +1920 71 2 5814 4.99 2005-07-10T15:46:50Z 2020-02-15T06:59:48Z +1921 71 2 6020 0.99 2005-07-11T02:08:55Z 2020-02-15T06:59:48Z +1922 71 1 6739 5.99 2005-07-12T14:22:08Z 2020-02-15T06:59:48Z +1923 71 2 7160 0.99 2005-07-27T07:26:06Z 2020-02-15T06:59:48Z +1924 71 1 7550 4.99 2005-07-27T21:55:07Z 2020-02-15T06:59:48Z +1925 71 2 7982 4.99 2005-07-28T14:19:59Z 2020-02-15T06:59:48Z +1926 71 2 8128 2.99 2005-07-28T19:46:06Z 2020-02-15T06:59:48Z +1927 71 1 8293 2.99 2005-07-29T02:30:50Z 2020-02-15T06:59:48Z +1928 71 1 8574 1.99 2005-07-29T11:51:53Z 2020-02-15T06:59:48Z +1929 71 1 8668 4.99 2005-07-29T15:41:31Z 2020-02-15T06:59:48Z +1930 71 1 8783 3.99 2005-07-29T20:31:28Z 2020-02-15T06:59:48Z +1931 71 1 8789 4.99 2005-07-29T20:47:27Z 2020-02-15T06:59:48Z +1932 71 1 8956 0.99 2005-07-30T03:32:29Z 2020-02-15T06:59:48Z +1933 71 1 12417 4.99 2005-08-18T09:57:00Z 2020-02-15T06:59:48Z +1934 71 1 14105 7.99 2005-08-21T00:44:34Z 2020-02-15T06:59:48Z +1935 71 1 14228 3.99 2005-08-21T04:57:08Z 2020-02-15T06:59:48Z +1936 71 2 14781 4.99 2005-08-22T00:15:12Z 2020-02-15T06:59:48Z +1937 71 2 14904 3.99 2005-08-22T04:32:01Z 2020-02-15T06:59:48Z +1938 71 1 15704 4.99 2005-08-23T10:25:45Z 2020-02-15T06:59:48Z +1939 71 1 16000 0.99 2005-08-23T20:44:36Z 2020-02-15T06:59:48Z +1940 72 2 785 4.99 2005-05-29T15:08:41Z 2020-02-15T06:59:48Z +1941 72 2 845 4.99 2005-05-30T01:17:25Z 2020-02-15T06:59:48Z +1942 72 2 1047 0.99 2005-05-31T06:45:57Z 2020-02-15T06:59:48Z +1943 72 2 2294 4.99 2005-06-18T07:46:34Z 2020-02-15T06:59:48Z +1944 72 1 3700 0.99 2005-07-06T10:12:19Z 2020-02-15T06:59:48Z +1945 72 2 5223 4.99 2005-07-09T12:06:03Z 2020-02-15T06:59:48Z +1946 72 1 5302 4.99 2005-07-09T15:42:36Z 2020-02-15T06:59:48Z +1947 72 1 5424 0.99 2005-07-09T20:59:09Z 2020-02-15T06:59:48Z +1948 72 1 5840 4.99 2005-07-10T17:09:09Z 2020-02-15T06:59:48Z +1949 72 2 6081 0.99 2005-07-11T05:11:09Z 2020-02-15T06:59:48Z +1950 72 2 8228 4.99 2005-07-29T00:08:58Z 2020-02-15T06:59:48Z +1951 72 1 9027 2.99 2005-07-30T05:58:27Z 2020-02-15T06:59:48Z +1952 72 2 9420 5.99 2005-07-30T21:05:18Z 2020-02-15T06:59:48Z +1953 72 2 9648 4.99 2005-07-31T05:46:03Z 2020-02-15T06:59:48Z +1954 72 2 10267 0.99 2005-08-01T03:07:26Z 2020-02-15T06:59:48Z +1955 72 2 11206 6.99 2005-08-02T11:58:03Z 2020-02-15T06:59:48Z +1956 72 2 11422 5.99 2005-08-02T19:52:08Z 2020-02-15T06:59:48Z +1957 72 1 11630 2.99 2005-08-17T04:27:46Z 2020-02-15T06:59:48Z +1958 72 1 11679 4.99 2005-08-17T06:08:54Z 2020-02-15T06:59:48Z +1959 72 1 11923 2.99 2005-08-17T16:21:47Z 2020-02-15T06:59:48Z +1960 72 2 12020 2.99 2005-08-17T19:50:33Z 2020-02-15T06:59:48Z +1961 72 1 12448 0.99 2005-08-18T10:59:04Z 2020-02-15T06:59:48Z +1962 72 2 12593 0.99 2005-08-18T16:17:54Z 2020-02-15T06:59:48Z +1963 72 1 13145 0.99 2005-08-19T12:53:53Z 2020-02-15T06:59:48Z +1964 72 2 13327 4.99 2005-08-19T19:55:45Z 2020-02-15T06:59:48Z +1965 72 2 13597 0.99 2005-08-20T05:59:05Z 2020-02-15T06:59:48Z +1966 72 2 13660 4.99 2005-08-20T08:05:56Z 2020-02-15T06:59:48Z +1967 72 1 14020 0.99 2005-08-20T20:59:43Z 2020-02-15T06:59:48Z +1968 72 2 15110 0.99 2005-08-22T12:16:46Z 2020-02-15T06:59:48Z +1969 72 2 15146 2.99 2005-08-22T13:57:55Z 2020-02-15T06:59:48Z +1970 73 1 70 2.99 2005-05-25T10:15:23Z 2020-02-15T06:59:48Z +1971 73 2 1133 4.99 2005-05-31T19:12:21Z 2020-02-15T06:59:48Z +1972 73 1 1669 0.99 2005-06-16T10:20:20Z 2020-02-15T06:59:48Z +1973 73 2 2940 4.99 2005-06-20T05:20:01Z 2020-02-15T06:59:48Z +1974 73 2 4327 2.99 2005-07-07T18:01:39Z 2020-02-15T06:59:48Z +1975 73 1 4789 4.99 2005-07-08T16:22:01Z 2020-02-15T06:59:48Z +1976 73 2 5021 4.99 2005-07-09T02:09:41Z 2020-02-15T06:59:48Z +1977 73 1 6514 9.99 2005-07-12T03:47:44Z 2020-02-15T06:59:48Z +1978 73 1 6645 2.99 2005-07-12T10:39:55Z 2020-02-15T06:59:48Z +1979 73 1 7590 4.99 2005-07-27T23:24:24Z 2020-02-15T06:59:48Z +1980 73 1 7683 4.99 2005-07-28T03:11:29Z 2020-02-15T06:59:48Z +1981 73 1 8377 4.99 2005-07-29T05:27:40Z 2020-02-15T06:59:48Z +1982 73 1 9212 2.99 2005-07-30T13:03:13Z 2020-02-15T06:59:48Z +1983 73 1 9776 2.99 2005-07-31T10:01:03Z 2020-02-15T06:59:48Z +1984 73 2 10434 4.99 2005-08-01T08:47:00Z 2020-02-15T06:59:48Z +1985 73 1 11102 4.99 2005-08-02T08:08:30Z 2020-02-15T06:59:48Z +1986 73 2 11155 0.99 2005-08-02T09:55:28Z 2020-02-15T06:59:48Z +1987 73 2 11349 4.99 2005-08-02T17:21:49Z 2020-02-15T06:59:48Z +1988 73 2 11609 3.99 2005-08-17T03:41:11Z 2020-02-15T06:59:48Z +1989 73 2 12291 4.99 2005-08-18T05:08:37Z 2020-02-15T06:59:48Z +1990 73 1 13886 4.99 2005-08-20T15:34:43Z 2020-02-15T06:59:48Z +1991 73 1 15667 0.99 2005-08-23T09:02:03Z 2020-02-15T06:59:48Z +1992 73 2 16002 2.99 2005-08-23T20:47:12Z 2020-02-15T06:59:48Z +1993 73 2 13108 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1994 74 2 1121 6.99 2005-05-31T16:37:36Z 2020-02-15T06:59:48Z +1995 74 1 2498 1.99 2005-06-18T22:56:26Z 2020-02-15T06:59:48Z +1996 74 2 2517 0.99 2005-06-19T00:11:26Z 2020-02-15T06:59:48Z +1997 74 1 3020 1.99 2005-06-20T11:12:04Z 2020-02-15T06:59:48Z +1998 74 2 3445 7.99 2005-06-21T20:40:28Z 2020-02-15T06:59:48Z +1999 74 2 3819 3.99 2005-07-06T15:35:06Z 2020-02-15T06:59:48Z +2000 74 1 5530 2.99 2005-07-10T02:13:49Z 2020-02-15T06:59:48Z +2001 74 2 5603 2.99 2005-07-10T05:04:54Z 2020-02-15T06:59:48Z +2002 74 2 5917 4.99 2005-07-10T21:30:22Z 2020-02-15T06:59:48Z +2003 74 1 6241 7.99 2005-07-11T14:40:48Z 2020-02-15T06:59:48Z +2004 74 1 6475 2.99 2005-07-12T01:36:57Z 2020-02-15T06:59:48Z +2005 74 1 7304 6.99 2005-07-27T12:56:56Z 2020-02-15T06:59:48Z +2006 74 2 8796 5.99 2005-07-29T21:09:11Z 2020-02-15T06:59:48Z +2007 74 2 9112 4.99 2005-07-30T09:06:31Z 2020-02-15T06:59:48Z +2008 74 2 10051 3.99 2005-07-31T19:14:20Z 2020-02-15T06:59:48Z +2009 74 1 10624 0.99 2005-08-01T15:27:05Z 2020-02-15T06:59:48Z +2010 74 2 12374 3.99 2005-08-18T08:07:45Z 2020-02-15T06:59:48Z +2011 74 2 12477 3.99 2005-08-18T12:25:01Z 2020-02-15T06:59:48Z +2012 74 2 13335 0.99 2005-08-19T20:03:18Z 2020-02-15T06:59:48Z +2013 74 2 13520 0.99 2005-08-20T02:41:46Z 2020-02-15T06:59:48Z +2014 74 1 13583 1.99 2005-08-20T05:29:45Z 2020-02-15T06:59:48Z +2015 74 2 13747 5.99 2005-08-20T10:56:06Z 2020-02-15T06:59:48Z +2016 74 1 15286 4.99 2005-08-22T19:17:56Z 2020-02-15T06:59:48Z +2017 74 2 15325 4.99 2005-08-22T20:27:38Z 2020-02-15T06:59:48Z +2018 74 2 15500 0.99 2005-08-23T02:39:37Z 2020-02-15T06:59:48Z +2019 74 2 15739 4.99 2005-08-23T11:56:22Z 2020-02-15T06:59:48Z +2020 74 1 16046 0.99 2005-08-23T22:26:47Z 2020-02-15T06:59:48Z +2021 75 1 180 4.99 2005-05-26T04:46:23Z 2020-02-15T06:59:48Z +2022 75 2 268 0.99 2005-05-26T16:19:08Z 2020-02-15T06:59:48Z +2023 75 1 1920 4.99 2005-06-17T06:00:23Z 2020-02-15T06:59:48Z +2024 75 1 2161 7.99 2005-06-17T23:39:50Z 2020-02-15T06:59:48Z +2025 75 2 2738 4.99 2005-06-19T15:56:30Z 2020-02-15T06:59:48Z +2026 75 2 3062 6.99 2005-06-20T13:50:00Z 2020-02-15T06:59:48Z +2027 75 1 3210 4.99 2005-06-21T01:00:25Z 2020-02-15T06:59:48Z +2028 75 1 3711 0.99 2005-07-06T10:46:15Z 2020-02-15T06:59:48Z +2029 75 2 4179 2.99 2005-07-07T10:17:15Z 2020-02-15T06:59:48Z +2030 75 2 4511 0.99 2005-07-08T02:36:21Z 2020-02-15T06:59:48Z +2031 75 1 4639 5.99 2005-07-08T08:57:21Z 2020-02-15T06:59:48Z +2032 75 2 5260 2.99 2005-07-09T14:05:45Z 2020-02-15T06:59:48Z +2033 75 2 6052 0.99 2005-07-11T03:51:27Z 2020-02-15T06:59:48Z +2034 75 1 6092 3.99 2005-07-11T05:51:31Z 2020-02-15T06:59:48Z +2035 75 1 6486 0.99 2005-07-12T02:09:36Z 2020-02-15T06:59:48Z +2036 75 2 6530 0.99 2005-07-12T04:33:19Z 2020-02-15T06:59:48Z +2037 75 2 6852 2.99 2005-07-12T19:33:49Z 2020-02-15T06:59:48Z +2038 75 1 7052 2.99 2005-07-27T03:36:38Z 2020-02-15T06:59:48Z +2039 75 1 7454 4.99 2005-07-27T18:27:26Z 2020-02-15T06:59:48Z +2040 75 1 7843 0.99 2005-07-28T09:10:22Z 2020-02-15T06:59:48Z +2041 75 2 7897 2.99 2005-07-28T11:01:51Z 2020-02-15T06:59:48Z +2042 75 2 8202 1.99 2005-07-28T23:11:45Z 2020-02-15T06:59:48Z +2043 75 1 8823 6.99 2005-07-29T22:22:12Z 2020-02-15T06:59:48Z +2044 75 2 9168 5.99 2005-07-30T11:31:17Z 2020-02-15T06:59:48Z +2045 75 2 9442 4.99 2005-07-30T21:44:31Z 2020-02-15T06:59:48Z +2046 75 2 9501 4.99 2005-07-30T23:59:21Z 2020-02-15T06:59:48Z +2047 75 1 9783 9.99 2005-07-31T10:15:46Z 2020-02-15T06:59:48Z +2048 75 2 10653 5.99 2005-08-01T16:28:07Z 2020-02-15T06:59:48Z +2049 75 1 10726 3.99 2005-08-01T19:14:53Z 2020-02-15T06:59:48Z +2050 75 1 10871 4.99 2005-08-02T00:27:24Z 2020-02-15T06:59:48Z +2051 75 1 11330 0.99 2005-08-02T16:45:33Z 2020-02-15T06:59:48Z +2052 75 1 12002 2.99 2005-08-17T18:56:02Z 2020-02-15T06:59:48Z +2053 75 2 12239 0.99 2005-08-18T03:26:42Z 2020-02-15T06:59:48Z +2054 75 1 12336 1.99 2005-08-18T06:59:41Z 2020-02-15T06:59:48Z +2055 75 1 12412 5.99 2005-08-18T09:49:52Z 2020-02-15T06:59:48Z +2056 75 1 12426 4.99 2005-08-18T10:24:11Z 2020-02-15T06:59:48Z +2057 75 1 12662 0.99 2005-08-18T19:10:41Z 2020-02-15T06:59:48Z +2058 75 2 15928 5.99 2005-08-23T18:23:24Z 2020-02-15T06:59:48Z +2059 75 2 13534 8.97 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2060 75 1 14488 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2061 75 2 15191 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2062 76 2 574 1.99 2005-05-28T10:44:28Z 2020-02-15T06:59:48Z +2063 76 1 926 0.99 2005-05-30T12:15:54Z 2020-02-15T06:59:48Z +2064 76 2 1487 0.99 2005-06-15T21:27:42Z 2020-02-15T06:59:48Z +2065 76 1 1791 6.99 2005-06-16T20:04:28Z 2020-02-15T06:59:48Z +2066 76 2 2111 0.99 2005-06-17T19:47:21Z 2020-02-15T06:59:48Z +2067 76 2 2397 1.99 2005-06-18T15:51:25Z 2020-02-15T06:59:48Z +2068 76 1 2894 0.99 2005-06-20T02:22:42Z 2020-02-15T06:59:48Z +2069 76 2 3416 0.99 2005-06-21T17:05:29Z 2020-02-15T06:59:48Z +2070 76 2 4099 4.99 2005-07-07T06:20:33Z 2020-02-15T06:59:48Z +2071 76 2 5571 0.99 2005-07-10T03:48:20Z 2020-02-15T06:59:48Z +2072 76 2 6789 0.99 2005-07-12T16:34:40Z 2020-02-15T06:59:48Z +2073 76 2 8253 6.99 2005-07-29T00:57:06Z 2020-02-15T06:59:48Z +2074 76 2 8357 2.99 2005-07-29T04:59:44Z 2020-02-15T06:59:48Z +2075 76 2 8405 3.99 2005-07-29T06:28:19Z 2020-02-15T06:59:48Z +2076 76 1 8935 0.99 2005-07-30T02:38:45Z 2020-02-15T06:59:48Z +2077 76 2 9312 2.99 2005-07-30T16:59:17Z 2020-02-15T06:59:48Z +2078 76 2 10082 0.99 2005-07-31T20:09:32Z 2020-02-15T06:59:48Z +2079 76 2 10795 4.99 2005-08-01T21:56:37Z 2020-02-15T06:59:48Z +2080 76 2 11172 7.99 2005-08-02T10:27:52Z 2020-02-15T06:59:48Z +2081 76 2 13697 3.99 2005-08-20T09:21:08Z 2020-02-15T06:59:48Z +2082 76 1 14637 2.99 2005-08-21T19:01:00Z 2020-02-15T06:59:48Z +2083 76 2 15169 4.99 2005-08-22T15:21:56Z 2020-02-15T06:59:48Z +2084 76 1 15566 10.99 2005-08-23T05:17:23Z 2020-02-15T06:59:48Z +2085 77 2 319 2.99 2005-05-26T23:52:13Z 2020-02-15T06:59:48Z +2086 77 1 419 1.99 2005-05-27T15:15:11Z 2020-02-15T06:59:48Z +2087 77 2 561 2.99 2005-05-28T08:54:06Z 2020-02-15T06:59:48Z +2088 77 1 586 0.99 2005-05-28T12:03:00Z 2020-02-15T06:59:48Z +2089 77 1 760 5.99 2005-05-29T11:07:25Z 2020-02-15T06:59:48Z +2090 77 1 1710 4.99 2005-06-16T14:11:24Z 2020-02-15T06:59:48Z +2091 77 1 2354 3.99 2005-06-18T12:54:18Z 2020-02-15T06:59:48Z +2092 77 2 2452 8.99 2005-06-18T19:29:21Z 2020-02-15T06:59:48Z +2093 77 1 3151 2.99 2005-06-20T20:36:53Z 2020-02-15T06:59:48Z +2094 77 2 3238 0.99 2005-06-21T02:48:21Z 2020-02-15T06:59:48Z +2095 77 2 4928 0.99 2005-07-08T22:05:41Z 2020-02-15T06:59:48Z +2096 77 2 6168 0.99 2005-07-11T10:21:38Z 2020-02-15T06:59:48Z +2097 77 2 6390 2.99 2005-07-11T22:19:23Z 2020-02-15T06:59:48Z +2098 77 1 7406 3.99 2005-07-27T16:25:45Z 2020-02-15T06:59:48Z +2099 77 1 7710 0.99 2005-07-28T04:24:07Z 2020-02-15T06:59:48Z +2100 77 2 8942 4.99 2005-07-30T03:01:07Z 2020-02-15T06:59:48Z +2101 77 1 9811 0.99 2005-07-31T11:23:45Z 2020-02-15T06:59:48Z +2102 77 2 10184 4.99 2005-08-01T00:09:33Z 2020-02-15T06:59:48Z +2103 77 1 10886 2.99 2005-08-02T00:52:34Z 2020-02-15T06:59:48Z +2104 77 1 10895 0.99 2005-08-02T01:16:59Z 2020-02-15T06:59:48Z +2105 77 2 10991 0.99 2005-08-02T04:41:12Z 2020-02-15T06:59:48Z +2106 77 1 11469 2.99 2005-08-02T21:48:09Z 2020-02-15T06:59:48Z +2107 77 2 11767 7.99 2005-08-17T10:00:40Z 2020-02-15T06:59:48Z +2108 77 1 12065 6.99 2005-08-17T21:31:46Z 2020-02-15T06:59:48Z +2109 77 2 12328 1.99 2005-08-18T06:43:56Z 2020-02-15T06:59:48Z +2110 77 2 13752 9.99 2005-08-20T11:17:45Z 2020-02-15T06:59:48Z +2111 77 2 14530 4.99 2005-08-21T15:10:50Z 2020-02-15T06:59:48Z +2112 77 2 15359 2.99 2005-08-22T21:34:00Z 2020-02-15T06:59:48Z +2113 78 1 2207 2.99 2005-06-18T02:19:21Z 2020-02-15T06:59:48Z +2114 78 2 2949 6.99 2005-06-20T06:05:53Z 2020-02-15T06:59:48Z +2115 78 2 3248 7.99 2005-06-21T03:12:21Z 2020-02-15T06:59:48Z +2116 78 1 3593 4.99 2005-07-06T04:39:52Z 2020-02-15T06:59:48Z +2117 78 2 4227 5.99 2005-07-07T12:41:36Z 2020-02-15T06:59:48Z +2118 78 2 4627 2.99 2005-07-08T08:24:39Z 2020-02-15T06:59:48Z +2119 78 2 4778 0.99 2005-07-08T15:51:51Z 2020-02-15T06:59:48Z +2120 78 1 5078 1.99 2005-07-09T05:20:24Z 2020-02-15T06:59:48Z +2121 78 2 5604 0.99 2005-07-10T05:05:00Z 2020-02-15T06:59:48Z +2122 78 1 6005 0.99 2005-07-11T01:36:42Z 2020-02-15T06:59:48Z +2123 78 1 6344 4.99 2005-07-11T20:04:43Z 2020-02-15T06:59:48Z +2124 78 2 7200 1.99 2005-07-27T08:57:38Z 2020-02-15T06:59:48Z +2125 78 2 7747 4.99 2005-07-28T05:50:11Z 2020-02-15T06:59:48Z +2126 78 2 7926 3.99 2005-07-28T12:13:02Z 2020-02-15T06:59:48Z +2127 78 1 7957 6.99 2005-07-28T13:34:08Z 2020-02-15T06:59:48Z +2128 78 2 8920 4.99 2005-07-30T01:59:24Z 2020-02-15T06:59:48Z +2129 78 1 9068 5.99 2005-07-30T07:31:45Z 2020-02-15T06:59:48Z +2130 78 2 10350 3.99 2005-08-01T05:30:05Z 2020-02-15T06:59:48Z +2131 78 1 10590 2.99 2005-08-01T14:11:53Z 2020-02-15T06:59:48Z +2132 78 1 10831 7.99 2005-08-01T23:22:45Z 2020-02-15T06:59:48Z +2133 78 1 10942 10.99 2005-08-02T03:16:31Z 2020-02-15T06:59:48Z +2134 78 2 12474 8.99 2005-08-18T12:10:03Z 2020-02-15T06:59:48Z +2135 78 2 12653 4.99 2005-08-18T18:53:17Z 2020-02-15T06:59:48Z +2136 78 2 13124 5.99 2005-08-19T11:55:59Z 2020-02-15T06:59:48Z +2137 78 1 13432 0.99 2005-08-19T23:29:06Z 2020-02-15T06:59:48Z +2138 78 2 13792 5.99 2005-08-20T12:21:37Z 2020-02-15T06:59:48Z +2139 78 2 14620 2.99 2005-08-21T18:10:43Z 2020-02-15T06:59:48Z +2140 78 1 14716 0.99 2005-08-21T21:29:55Z 2020-02-15T06:59:48Z +2141 78 1 14810 2.99 2005-08-22T01:08:34Z 2020-02-15T06:59:48Z +2142 78 2 14862 7.99 2005-08-22T02:51:41Z 2020-02-15T06:59:48Z +2143 78 2 16039 2.99 2005-08-23T22:18:51Z 2020-02-15T06:59:48Z +2144 79 1 840 4.99 2005-05-30T00:28:41Z 2020-02-15T06:59:48Z +2145 79 1 859 2.99 2005-05-30T02:36:20Z 2020-02-15T06:59:48Z +2146 79 1 928 2.99 2005-05-30T12:27:14Z 2020-02-15T06:59:48Z +2147 79 2 3096 4.99 2005-06-20T16:17:56Z 2020-02-15T06:59:48Z +2148 79 2 3178 2.99 2005-06-20T22:35:12Z 2020-02-15T06:59:48Z +2149 79 1 3641 0.99 2005-07-06T07:17:09Z 2020-02-15T06:59:48Z +2150 79 1 3748 2.99 2005-07-06T12:11:22Z 2020-02-15T06:59:48Z +2151 79 2 4049 4.99 2005-07-07T03:34:53Z 2020-02-15T06:59:48Z +2152 79 1 4530 4.99 2005-07-08T03:27:05Z 2020-02-15T06:59:48Z +2153 79 2 4736 4.99 2005-07-08T13:22:55Z 2020-02-15T06:59:48Z +2154 79 2 5205 2.99 2005-07-09T10:56:37Z 2020-02-15T06:59:48Z +2155 79 1 5555 2.99 2005-07-10T03:08:55Z 2020-02-15T06:59:48Z +2156 79 2 6162 5.99 2005-07-11T10:12:30Z 2020-02-15T06:59:48Z +2157 79 1 7220 9.99 2005-07-27T09:35:54Z 2020-02-15T06:59:48Z +2158 79 1 8849 2.99 2005-07-29T23:21:01Z 2020-02-15T06:59:48Z +2159 79 1 9814 1.99 2005-07-31T11:29:46Z 2020-02-15T06:59:48Z +2160 79 2 9845 6.99 2005-07-31T12:28:05Z 2020-02-15T06:59:48Z +2161 79 1 9989 0.99 2005-07-31T17:22:39Z 2020-02-15T06:59:48Z +2162 79 1 10676 2.99 2005-08-01T17:14:15Z 2020-02-15T06:59:48Z +2163 79 2 11641 4.99 2005-08-17T04:45:39Z 2020-02-15T06:59:48Z +2164 79 2 13026 2.99 2005-08-19T08:22:45Z 2020-02-15T06:59:48Z +2165 79 1 14179 0.99 2005-08-21T03:14:27Z 2020-02-15T06:59:48Z +2166 80 1 2596 2.99 2005-06-19T05:48:26Z 2020-02-15T06:59:48Z +2167 80 2 2805 8.99 2005-06-19T19:29:17Z 2020-02-15T06:59:48Z +2168 80 1 3367 3.99 2005-06-21T13:08:21Z 2020-02-15T06:59:48Z +2169 80 2 3623 4.99 2005-07-06T06:05:23Z 2020-02-15T06:59:48Z +2170 80 2 4268 8.99 2005-07-07T14:36:05Z 2020-02-15T06:59:48Z +2171 80 2 4299 3.99 2005-07-07T16:33:48Z 2020-02-15T06:59:48Z +2172 80 1 4688 5.99 2005-07-08T11:03:29Z 2020-02-15T06:59:48Z +2173 80 2 5420 3.99 2005-07-09T20:48:42Z 2020-02-15T06:59:48Z +2174 80 2 5452 4.99 2005-07-09T22:23:21Z 2020-02-15T06:59:48Z +2175 80 1 6199 5.99 2005-07-11T12:16:03Z 2020-02-15T06:59:48Z +2176 80 2 6417 6.99 2005-07-11T23:35:11Z 2020-02-15T06:59:48Z +2177 80 2 6707 1.99 2005-07-12T13:07:55Z 2020-02-15T06:59:48Z +2178 80 2 7558 0.99 2005-07-27T22:19:08Z 2020-02-15T06:59:48Z +2179 80 1 8509 5.99 2005-07-29T09:38:19Z 2020-02-15T06:59:48Z +2180 80 1 8884 6.99 2005-07-30T00:26:22Z 2020-02-15T06:59:48Z +2181 80 1 10313 0.99 2005-08-01T04:29:29Z 2020-02-15T06:59:48Z +2182 80 1 10656 6.99 2005-08-01T16:38:04Z 2020-02-15T06:59:48Z +2183 80 1 10690 8.99 2005-08-01T18:05:54Z 2020-02-15T06:59:48Z +2184 80 2 11101 5.99 2005-08-02T08:08:24Z 2020-02-15T06:59:48Z +2185 80 2 11839 0.99 2005-08-17T13:08:45Z 2020-02-15T06:59:48Z +2186 80 1 11850 1.99 2005-08-17T13:30:15Z 2020-02-15T06:59:48Z +2187 80 2 12468 2.99 2005-08-18T11:41:47Z 2020-02-15T06:59:48Z +2188 80 1 13352 4.99 2005-08-19T20:51:40Z 2020-02-15T06:59:48Z +2189 80 2 13395 0.99 2005-08-19T22:05:40Z 2020-02-15T06:59:48Z +2190 80 1 13724 4.99 2005-08-20T10:07:28Z 2020-02-15T06:59:48Z +2191 80 2 13851 0.99 2005-08-20T14:44:22Z 2020-02-15T06:59:48Z +2192 80 1 14916 0.99 2005-08-22T04:56:57Z 2020-02-15T06:59:48Z +2193 80 1 15648 8.99 2005-08-23T08:27:57Z 2020-02-15T06:59:48Z +2194 80 1 16012 5.99 2005-08-23T21:13:39Z 2020-02-15T06:59:48Z +2195 80 2 12457 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2196 81 1 289 0.99 2005-05-26T20:01:09Z 2020-02-15T06:59:48Z +2197 81 1 2714 1.99 2005-06-19T14:26:09Z 2020-02-15T06:59:48Z +2198 81 1 2854 5.99 2005-06-19T23:11:48Z 2020-02-15T06:59:48Z +2199 81 1 3229 4.99 2005-06-21T02:20:41Z 2020-02-15T06:59:48Z +2200 81 1 3879 2.99 2005-07-06T18:31:20Z 2020-02-15T06:59:48Z +2201 81 2 4983 9.99 2005-07-09T00:34:16Z 2020-02-15T06:59:48Z +2202 81 1 5468 0.99 2005-07-09T23:06:09Z 2020-02-15T06:59:48Z +2203 81 2 7130 4.99 2005-07-27T06:23:36Z 2020-02-15T06:59:48Z +2204 81 1 7709 0.99 2005-07-28T04:22:14Z 2020-02-15T06:59:48Z +2205 81 2 9454 3.99 2005-07-30T22:20:09Z 2020-02-15T06:59:48Z +2206 81 2 10456 0.99 2005-08-01T09:17:21Z 2020-02-15T06:59:48Z +2207 81 1 11837 5.99 2005-08-17T13:04:41Z 2020-02-15T06:59:48Z +2208 81 2 12181 4.99 2005-08-18T01:28:18Z 2020-02-15T06:59:48Z +2209 81 2 13820 5.99 2005-08-20T13:26:37Z 2020-02-15T06:59:48Z +2210 81 1 14128 4.99 2005-08-21T01:35:58Z 2020-02-15T06:59:48Z +2211 81 1 14642 3.99 2005-08-21T19:09:40Z 2020-02-15T06:59:48Z +2212 81 2 14748 7.99 2005-08-21T23:02:02Z 2020-02-15T06:59:48Z +2213 81 1 15224 5.99 2005-08-22T17:18:05Z 2020-02-15T06:59:48Z +2214 81 1 15602 4.99 2005-08-23T06:41:07Z 2020-02-15T06:59:48Z +2215 81 1 15823 4.99 2005-08-23T15:08:00Z 2020-02-15T06:59:48Z +2216 81 1 15858 2.99 2005-08-23T16:07:15Z 2020-02-15T06:59:48Z +2217 81 2 15884 1.99 2005-08-23T16:45:28Z 2020-02-15T06:59:48Z +2218 82 2 145 2.99 2005-05-25T23:59:03Z 2020-02-15T06:59:48Z +2219 82 2 288 8.99 2005-05-26T19:47:49Z 2020-02-15T06:59:48Z +2220 82 1 1438 0.99 2005-06-15T18:38:51Z 2020-02-15T06:59:48Z +2221 82 2 1570 0.99 2005-06-16T03:21:33Z 2020-02-15T06:59:48Z +2222 82 1 2506 8.99 2005-06-18T23:29:53Z 2020-02-15T06:59:48Z +2223 82 1 2819 8.99 2005-06-19T20:13:33Z 2020-02-15T06:59:48Z +2224 82 2 3332 0.99 2005-06-21T09:55:12Z 2020-02-15T06:59:48Z +2225 82 1 3680 2.99 2005-07-06T09:16:10Z 2020-02-15T06:59:48Z +2226 82 1 4598 6.99 2005-07-08T06:46:26Z 2020-02-15T06:59:48Z +2227 82 2 5746 4.99 2005-07-10T12:15:12Z 2020-02-15T06:59:48Z +2228 82 2 6082 6.99 2005-07-11T05:12:41Z 2020-02-15T06:59:48Z +2229 82 2 6708 6.99 2005-07-12T13:10:55Z 2020-02-15T06:59:48Z +2230 82 2 7733 9.99 2005-07-28T05:04:47Z 2020-02-15T06:59:48Z +2231 82 2 7873 0.99 2005-07-28T10:19:46Z 2020-02-15T06:59:48Z +2232 82 1 8487 4.99 2005-07-29T08:53:49Z 2020-02-15T06:59:48Z +2233 82 2 9277 3.99 2005-07-30T15:13:45Z 2020-02-15T06:59:48Z +2234 82 1 9305 8.99 2005-07-30T16:45:56Z 2020-02-15T06:59:48Z +2235 82 1 9447 6.99 2005-07-30T21:54:22Z 2020-02-15T06:59:48Z +2236 82 1 11093 4.99 2005-08-02T07:59:49Z 2020-02-15T06:59:48Z +2237 82 2 11688 5.99 2005-08-17T06:41:58Z 2020-02-15T06:59:48Z +2238 82 1 12470 3.99 2005-08-18T11:55:42Z 2020-02-15T06:59:48Z +2239 82 1 13032 0.99 2005-08-19T08:31:50Z 2020-02-15T06:59:48Z +2240 82 2 13847 6.99 2005-08-20T14:33:59Z 2020-02-15T06:59:48Z +2241 82 2 14518 0.99 2005-08-21T14:58:58Z 2020-02-15T06:59:48Z +2242 82 2 14892 4.99 2005-08-22T04:15:05Z 2020-02-15T06:59:48Z +2243 82 2 15516 3.99 2005-08-23T03:12:54Z 2020-02-15T06:59:48Z +2244 83 2 222 0.99 2005-05-26T10:14:38Z 2020-02-15T06:59:48Z +2245 83 2 950 0.99 2005-05-30T16:06:08Z 2020-02-15T06:59:48Z +2246 83 2 989 2.99 2005-05-30T23:11:51Z 2020-02-15T06:59:48Z +2247 83 1 1354 5.99 2005-06-15T13:13:49Z 2020-02-15T06:59:48Z +2248 83 1 1591 5.99 2005-06-16T05:12:37Z 2020-02-15T06:59:48Z +2249 83 2 1617 3.99 2005-06-16T07:06:06Z 2020-02-15T06:59:48Z +2250 83 2 3230 4.99 2005-06-21T02:23:16Z 2020-02-15T06:59:48Z +2251 83 2 3722 6.99 2005-07-06T11:10:27Z 2020-02-15T06:59:48Z +2252 83 1 3754 2.99 2005-07-06T12:35:44Z 2020-02-15T06:59:48Z +2253 83 1 5218 0.99 2005-07-09T11:57:12Z 2020-02-15T06:59:48Z +2254 83 2 5394 6.99 2005-07-09T19:36:15Z 2020-02-15T06:59:48Z +2255 83 2 6194 2.99 2005-07-11T11:51:00Z 2020-02-15T06:59:48Z +2256 83 2 6861 2.99 2005-07-12T19:56:52Z 2020-02-15T06:59:48Z +2257 83 2 7721 0.99 2005-07-28T04:42:58Z 2020-02-15T06:59:48Z +2258 83 2 8729 4.99 2005-07-29T18:23:02Z 2020-02-15T06:59:48Z +2259 83 1 9867 1.99 2005-07-31T13:17:04Z 2020-02-15T06:59:48Z +2260 83 1 11408 0.99 2005-08-02T19:25:13Z 2020-02-15T06:59:48Z +2261 83 1 11565 5.99 2005-08-17T01:28:05Z 2020-02-15T06:59:48Z +2262 83 2 11777 4.99 2005-08-17T10:27:19Z 2020-02-15T06:59:48Z +2263 83 1 12258 4.99 2005-08-18T04:11:13Z 2020-02-15T06:59:48Z +2264 83 2 12985 5.99 2005-08-19T07:08:05Z 2020-02-15T06:59:48Z +2265 83 1 13875 4.99 2005-08-20T15:13:11Z 2020-02-15T06:59:48Z +2266 83 2 15498 4.99 2005-08-23T02:33:27Z 2020-02-15T06:59:48Z +2267 83 2 15737 5.99 2005-08-23T11:52:18Z 2020-02-15T06:59:48Z +2268 83 2 11563 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2269 84 2 408 0.99 2005-05-27T13:57:39Z 2020-02-15T06:59:48Z +2270 84 1 739 6.99 2005-05-29T08:28:18Z 2020-02-15T06:59:48Z +2271 84 1 834 4.99 2005-05-29T23:24:30Z 2020-02-15T06:59:48Z +2272 84 2 1195 0.99 2005-06-15T01:37:38Z 2020-02-15T06:59:48Z +2273 84 2 1320 4.99 2005-06-15T10:42:13Z 2020-02-15T06:59:48Z +2274 84 2 1815 0.99 2005-06-16T21:16:07Z 2020-02-15T06:59:48Z +2275 84 1 2012 5.99 2005-06-17T11:57:15Z 2020-02-15T06:59:48Z +2276 84 2 2042 0.99 2005-06-17T14:31:02Z 2020-02-15T06:59:48Z +2277 84 2 2409 0.99 2005-06-18T16:53:33Z 2020-02-15T06:59:48Z +2278 84 2 4079 6.99 2005-07-07T05:06:27Z 2020-02-15T06:59:48Z +2279 84 2 4838 6.99 2005-07-08T18:11:00Z 2020-02-15T06:59:48Z +2280 84 1 5221 5.99 2005-07-09T12:02:23Z 2020-02-15T06:59:48Z +2281 84 1 5237 0.99 2005-07-09T12:56:58Z 2020-02-15T06:59:48Z +2282 84 1 5971 5.99 2005-07-11T00:05:58Z 2020-02-15T06:59:48Z +2283 84 2 6259 2.99 2005-07-11T15:25:52Z 2020-02-15T06:59:48Z +2284 84 2 6415 9.99 2005-07-11T23:27:52Z 2020-02-15T06:59:48Z +2285 84 1 7854 2.99 2005-07-28T09:42:31Z 2020-02-15T06:59:48Z +2286 84 2 8019 4.99 2005-07-28T15:37:43Z 2020-02-15T06:59:48Z +2287 84 1 8654 8.99 2005-07-29T15:04:27Z 2020-02-15T06:59:48Z +2288 84 2 9074 2.99 2005-07-30T07:50:10Z 2020-02-15T06:59:48Z +2289 84 2 9680 4.99 2005-07-31T06:41:46Z 2020-02-15T06:59:48Z +2290 84 2 10540 0.99 2005-08-01T12:24:42Z 2020-02-15T06:59:48Z +2291 84 1 10872 2.99 2005-08-02T00:27:50Z 2020-02-15T06:59:48Z +2292 84 2 11220 4.99 2005-08-02T12:31:41Z 2020-02-15T06:59:48Z +2293 84 2 11424 3.99 2005-08-02T19:57:42Z 2020-02-15T06:59:48Z +2294 84 2 11453 7.99 2005-08-02T21:00:05Z 2020-02-15T06:59:48Z +2295 84 2 11899 0.99 2005-08-17T15:29:12Z 2020-02-15T06:59:48Z +2296 84 2 11960 4.99 2005-08-17T17:24:30Z 2020-02-15T06:59:48Z +2297 84 2 12364 4.99 2005-08-18T07:55:09Z 2020-02-15T06:59:48Z +2298 84 2 13115 2.99 2005-08-19T11:27:43Z 2020-02-15T06:59:48Z +2299 84 1 14330 5.99 2005-08-21T08:29:20Z 2020-02-15T06:59:48Z +2300 84 1 15190 4.99 2005-08-22T15:57:38Z 2020-02-15T06:59:48Z +2301 84 1 15255 2.99 2005-08-22T18:16:50Z 2020-02-15T06:59:48Z +2302 85 1 690 9.99 2005-05-29T00:54:53Z 2020-02-15T06:59:48Z +2303 85 2 908 4.99 2005-05-30T10:38:37Z 2020-02-15T06:59:48Z +2304 85 1 1685 1.99 2005-06-16T12:06:57Z 2020-02-15T06:59:48Z +2305 85 1 2131 5.99 2005-06-17T21:02:25Z 2020-02-15T06:59:48Z +2306 85 2 2794 0.99 2005-06-19T18:53:05Z 2020-02-15T06:59:48Z +2307 85 1 3165 4.99 2005-06-20T21:29:17Z 2020-02-15T06:59:48Z +2308 85 1 3307 1.99 2005-06-21T07:52:30Z 2020-02-15T06:59:48Z +2309 85 2 3418 3.99 2005-06-21T17:06:38Z 2020-02-15T06:59:48Z +2310 85 2 4451 0.99 2005-07-07T23:29:54Z 2020-02-15T06:59:48Z +2311 85 1 4705 2.99 2005-07-08T11:50:38Z 2020-02-15T06:59:48Z +2312 85 1 5051 4.99 2005-07-09T03:57:53Z 2020-02-15T06:59:48Z +2313 85 1 5519 0.99 2005-07-10T01:18:32Z 2020-02-15T06:59:48Z +2314 85 2 7906 0.99 2005-07-28T11:31:42Z 2020-02-15T06:59:48Z +2315 85 2 9427 7.99 2005-07-30T21:16:33Z 2020-02-15T06:59:48Z +2316 85 2 9957 4.99 2005-07-31T16:03:55Z 2020-02-15T06:59:48Z +2317 85 1 9985 2.99 2005-07-31T17:14:47Z 2020-02-15T06:59:48Z +2318 85 1 10328 4.99 2005-08-01T04:56:10Z 2020-02-15T06:59:48Z +2319 85 1 10548 0.99 2005-08-01T12:44:32Z 2020-02-15T06:59:48Z +2320 85 2 11067 8.99 2005-08-02T07:03:24Z 2020-02-15T06:59:48Z +2321 85 2 12036 0.99 2005-08-17T20:19:06Z 2020-02-15T06:59:48Z +2322 85 1 12456 4.99 2005-08-18T11:21:51Z 2020-02-15T06:59:48Z +2323 85 1 13727 3.99 2005-08-20T10:08:53Z 2020-02-15T06:59:48Z +2324 85 2 13733 0.99 2005-08-20T10:25:12Z 2020-02-15T06:59:48Z +2325 86 1 66 1.99 2005-05-25T09:35:12Z 2020-02-15T06:59:48Z +2326 86 2 1640 4.99 2005-06-16T08:35:39Z 2020-02-15T06:59:48Z +2327 86 2 1822 0.99 2005-06-16T21:43:45Z 2020-02-15T06:59:48Z +2328 86 2 1924 2.99 2005-06-17T06:13:34Z 2020-02-15T06:59:48Z +2329 86 1 2141 4.99 2005-06-17T21:41:34Z 2020-02-15T06:59:48Z +2330 86 1 2518 4.99 2005-06-19T00:16:23Z 2020-02-15T06:59:48Z +2331 86 1 3207 0.99 2005-06-21T00:43:16Z 2020-02-15T06:59:48Z +2332 86 2 3270 4.99 2005-06-21T05:07:31Z 2020-02-15T06:59:48Z +2333 86 1 3611 0.99 2005-07-06T05:37:18Z 2020-02-15T06:59:48Z +2334 86 2 3945 4.99 2005-07-06T21:35:00Z 2020-02-15T06:59:48Z +2335 86 1 4235 2.99 2005-07-07T13:05:52Z 2020-02-15T06:59:48Z +2336 86 1 4571 9.99 2005-07-08T05:34:41Z 2020-02-15T06:59:48Z +2337 86 2 5295 0.99 2005-07-09T15:25:06Z 2020-02-15T06:59:48Z +2338 86 1 5752 8.99 2005-07-10T12:27:38Z 2020-02-15T06:59:48Z +2339 86 2 6872 7.99 2005-07-12T20:15:04Z 2020-02-15T06:59:48Z +2340 86 1 7231 2.99 2005-07-27T10:01:51Z 2020-02-15T06:59:48Z +2341 86 1 7874 10.99 2005-07-28T10:21:52Z 2020-02-15T06:59:48Z +2342 86 2 8803 5.99 2005-07-29T21:26:24Z 2020-02-15T06:59:48Z +2343 86 1 8850 2.99 2005-07-29T23:24:20Z 2020-02-15T06:59:48Z +2344 86 2 9376 4.99 2005-07-30T19:11:49Z 2020-02-15T06:59:48Z +2345 86 2 10252 8.99 2005-08-01T02:39:39Z 2020-02-15T06:59:48Z +2346 86 2 10536 4.99 2005-08-01T12:21:53Z 2020-02-15T06:59:48Z +2347 86 2 10584 6.99 2005-08-01T13:58:47Z 2020-02-15T06:59:48Z +2348 86 2 11916 0.99 2005-08-17T16:05:51Z 2020-02-15T06:59:48Z +2349 86 1 12198 2.99 2005-08-18T02:09:20Z 2020-02-15T06:59:48Z +2350 86 2 12870 3.99 2005-08-19T02:54:38Z 2020-02-15T06:59:48Z +2351 86 2 13338 4.99 2005-08-19T20:09:59Z 2020-02-15T06:59:48Z +2352 86 1 13535 4.99 2005-08-20T03:30:25Z 2020-02-15T06:59:48Z +2353 86 1 13874 2.99 2005-08-20T15:11:48Z 2020-02-15T06:59:48Z +2354 86 2 14122 1.99 2005-08-21T01:29:01Z 2020-02-15T06:59:48Z +2355 86 2 15099 4.99 2005-08-22T11:49:16Z 2020-02-15T06:59:48Z +2356 86 1 15715 1.99 2005-08-23T10:57:40Z 2020-02-15T06:59:48Z +2357 86 2 15940 5.99 2005-08-23T18:45:06Z 2020-02-15T06:59:48Z +2358 87 2 451 4.99 2005-05-27T19:27:54Z 2020-02-15T06:59:48Z +2359 87 1 674 2.99 2005-05-28T22:11:35Z 2020-02-15T06:59:48Z +2360 87 2 1580 4.99 2005-06-16T04:12:25Z 2020-02-15T06:59:48Z +2361 87 1 1904 2.99 2005-06-17T04:45:41Z 2020-02-15T06:59:48Z +2362 87 2 2408 2.99 2005-06-18T16:50:44Z 2020-02-15T06:59:48Z +2363 87 1 2516 4.99 2005-06-19T00:03:28Z 2020-02-15T06:59:48Z +2364 87 2 3122 9.99 2005-06-20T18:25:57Z 2020-02-15T06:59:48Z +2365 87 1 5084 7.99 2005-07-09T05:33:27Z 2020-02-15T06:59:48Z +2366 87 1 5628 3.99 2005-07-10T05:56:40Z 2020-02-15T06:59:48Z +2367 87 2 5700 4.99 2005-07-10T09:49:42Z 2020-02-15T06:59:48Z +2368 87 1 6638 4.99 2005-07-12T09:58:02Z 2020-02-15T06:59:48Z +2369 87 2 7599 2.99 2005-07-27T23:38:46Z 2020-02-15T06:59:48Z +2370 87 2 8187 7.99 2005-07-28T22:33:53Z 2020-02-15T06:59:48Z +2371 87 1 8286 5.99 2005-07-29T02:02:46Z 2020-02-15T06:59:48Z +2372 87 2 8323 4.99 2005-07-29T03:52:59Z 2020-02-15T06:59:48Z +2373 87 2 9060 0.99 2005-07-30T07:20:36Z 2020-02-15T06:59:48Z +2374 87 1 9348 2.99 2005-07-30T18:17:09Z 2020-02-15T06:59:48Z +2375 87 2 9364 8.99 2005-07-30T18:44:44Z 2020-02-15T06:59:48Z +2376 87 2 10205 4.99 2005-08-01T00:48:24Z 2020-02-15T06:59:48Z +2377 87 1 10387 4.99 2005-08-01T06:42:31Z 2020-02-15T06:59:48Z +2378 87 1 12232 0.99 2005-08-18T03:14:14Z 2020-02-15T06:59:48Z +2379 87 1 12257 8.99 2005-08-18T04:11:03Z 2020-02-15T06:59:48Z +2380 87 1 12264 5.99 2005-08-18T04:17:33Z 2020-02-15T06:59:48Z +2381 87 1 13479 0.99 2005-08-20T01:09:11Z 2020-02-15T06:59:48Z +2382 87 1 13906 0.99 2005-08-20T16:16:03Z 2020-02-15T06:59:48Z +2383 87 2 14024 10.99 2005-08-20T21:13:58Z 2020-02-15T06:59:48Z +2384 87 1 14566 2.99 2005-08-21T16:25:05Z 2020-02-15T06:59:48Z +2385 87 1 15876 2.99 2005-08-23T16:32:10Z 2020-02-15T06:59:48Z +2386 87 2 15890 4.99 2005-08-23T16:58:12Z 2020-02-15T06:59:48Z +2387 87 2 12719 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2388 88 2 36 2.99 2005-05-25T04:36:26Z 2020-02-15T06:59:48Z +2389 88 1 1433 2.99 2005-06-15T18:30:00Z 2020-02-15T06:59:48Z +2390 88 1 2483 7.99 2005-06-18T21:22:23Z 2020-02-15T06:59:48Z +2391 88 1 2878 2.99 2005-06-20T01:09:14Z 2020-02-15T06:59:48Z +2392 88 2 3524 0.99 2005-07-06T01:01:51Z 2020-02-15T06:59:48Z +2393 88 2 3620 0.99 2005-07-06T06:01:50Z 2020-02-15T06:59:48Z +2394 88 2 3673 5.99 2005-07-06T09:02:09Z 2020-02-15T06:59:48Z +2395 88 1 3846 5.99 2005-07-06T16:43:10Z 2020-02-15T06:59:48Z +2396 88 1 6643 1.99 2005-07-12T10:39:22Z 2020-02-15T06:59:48Z +2397 88 1 6916 4.99 2005-07-12T22:29:18Z 2020-02-15T06:59:48Z +2398 88 1 7088 5.99 2005-07-27T04:42:28Z 2020-02-15T06:59:48Z +2399 88 1 7621 8.99 2005-07-28T00:34:06Z 2020-02-15T06:59:48Z +2400 88 1 8296 2.99 2005-07-29T02:43:25Z 2020-02-15T06:59:48Z +2401 88 2 8526 2.99 2005-07-29T10:20:48Z 2020-02-15T06:59:48Z +2402 88 1 8692 2.99 2005-07-29T16:43:39Z 2020-02-15T06:59:48Z +2403 88 1 10424 0.99 2005-08-01T08:22:54Z 2020-02-15T06:59:48Z +2404 88 1 11056 6.99 2005-08-02T06:36:27Z 2020-02-15T06:59:48Z +2405 88 2 14097 2.99 2005-08-21T00:28:48Z 2020-02-15T06:59:48Z +2406 88 2 14827 5.99 2005-08-22T01:32:32Z 2020-02-15T06:59:48Z +2407 88 2 15098 3.99 2005-08-22T11:48:19Z 2020-02-15T06:59:48Z +2408 88 1 15898 4.99 2005-08-23T17:13:01Z 2020-02-15T06:59:48Z +2409 89 2 141 2.99 2005-05-25T23:34:53Z 2020-02-15T06:59:48Z +2410 89 2 588 0.99 2005-05-28T12:08:37Z 2020-02-15T06:59:48Z +2411 89 1 740 5.99 2005-05-29T08:30:36Z 2020-02-15T06:59:48Z +2412 89 1 1252 8.99 2005-06-15T06:05:18Z 2020-02-15T06:59:48Z +2413 89 2 1407 7.99 2005-06-15T16:45:07Z 2020-02-15T06:59:48Z +2414 89 1 1948 4.99 2005-06-17T08:06:53Z 2020-02-15T06:59:48Z +2415 89 1 2523 0.99 2005-06-19T00:45:56Z 2020-02-15T06:59:48Z +2416 89 1 2835 7.99 2005-06-19T21:44:11Z 2020-02-15T06:59:48Z +2417 89 2 4152 4.99 2005-07-07T08:50:33Z 2020-02-15T06:59:48Z +2418 89 1 4488 0.99 2005-07-08T01:22:23Z 2020-02-15T06:59:48Z +2419 89 1 4764 8.99 2005-07-08T15:01:25Z 2020-02-15T06:59:48Z +2420 89 2 5144 7.99 2005-07-09T08:09:53Z 2020-02-15T06:59:48Z +2421 89 2 5436 2.99 2005-07-09T21:31:11Z 2020-02-15T06:59:48Z +2422 89 1 5483 2.99 2005-07-09T23:54:09Z 2020-02-15T06:59:48Z +2423 89 1 6772 2.99 2005-07-12T15:55:35Z 2020-02-15T06:59:48Z +2424 89 2 7370 7.99 2005-07-27T15:15:53Z 2020-02-15T06:59:48Z +2425 89 2 7729 4.99 2005-07-28T04:57:57Z 2020-02-15T06:59:48Z +2426 89 2 7995 4.99 2005-07-28T15:00:09Z 2020-02-15T06:59:48Z +2427 89 1 8003 2.99 2005-07-28T15:11:27Z 2020-02-15T06:59:48Z +2428 89 2 8070 2.99 2005-07-28T17:26:56Z 2020-02-15T06:59:49Z +2429 89 2 8972 0.99 2005-07-30T04:06:25Z 2020-02-15T06:59:49Z +2430 89 1 9328 2.99 2005-07-30T17:32:11Z 2020-02-15T06:59:49Z +2431 89 2 9646 2.99 2005-07-31T05:43:28Z 2020-02-15T06:59:49Z +2432 89 2 9767 0.99 2005-07-31T09:46:49Z 2020-02-15T06:59:49Z +2433 89 2 10164 4.99 2005-07-31T23:17:57Z 2020-02-15T06:59:49Z +2434 89 2 10806 4.99 2005-08-01T22:25:29Z 2020-02-15T06:59:49Z +2435 89 1 11090 3.99 2005-08-02T07:56:40Z 2020-02-15T06:59:49Z +2436 89 1 12118 3.99 2005-08-17T23:14:25Z 2020-02-15T06:59:49Z +2437 89 2 12431 2.99 2005-08-18T10:34:59Z 2020-02-15T06:59:49Z +2438 89 1 12756 2.99 2005-08-18T22:52:13Z 2020-02-15T06:59:49Z +2439 89 1 13823 2.99 2005-08-20T13:42:10Z 2020-02-15T06:59:49Z +2440 89 1 15845 2.99 2005-08-23T15:38:34Z 2020-02-15T06:59:49Z +2441 90 2 2033 0.99 2005-06-17T13:24:43Z 2020-02-15T06:59:49Z +2442 90 2 2584 6.99 2005-06-19T05:02:36Z 2020-02-15T06:59:49Z +2443 90 2 3132 0.99 2005-06-20T19:09:46Z 2020-02-15T06:59:49Z +2444 90 2 3729 3.99 2005-07-06T11:30:29Z 2020-02-15T06:59:49Z +2445 90 2 4371 4.99 2005-07-07T20:06:45Z 2020-02-15T06:59:49Z +2446 90 2 5272 0.99 2005-07-09T14:26:01Z 2020-02-15T06:59:49Z +2447 90 2 5539 3.99 2005-07-10T02:42:58Z 2020-02-15T06:59:49Z +2448 90 2 7035 5.99 2005-07-27T03:06:09Z 2020-02-15T06:59:49Z +2449 90 2 7058 1.99 2005-07-27T03:50:46Z 2020-02-15T06:59:49Z +2450 90 1 7428 5.99 2005-07-27T17:21:52Z 2020-02-15T06:59:49Z +2451 90 1 7946 6.99 2005-07-28T13:01:22Z 2020-02-15T06:59:49Z +2452 90 1 8024 2.99 2005-07-28T15:55:40Z 2020-02-15T06:59:49Z +2453 90 1 8408 0.99 2005-07-29T06:40:40Z 2020-02-15T06:59:49Z +2454 90 2 8870 9.99 2005-07-30T00:08:08Z 2020-02-15T06:59:49Z +2455 90 2 9337 2.99 2005-07-30T18:02:25Z 2020-02-15T06:59:49Z +2456 90 2 10206 7.99 2005-08-01T00:52:40Z 2020-02-15T06:59:49Z +2457 90 1 10722 4.99 2005-08-01T19:07:08Z 2020-02-15T06:59:49Z +2458 90 1 10835 4.99 2005-08-01T23:28:49Z 2020-02-15T06:59:49Z +2459 90 2 11231 4.99 2005-08-02T13:02:11Z 2020-02-15T06:59:49Z +2460 90 1 11516 0.99 2005-08-16T23:54:47Z 2020-02-15T06:59:49Z +2461 90 2 12019 0.99 2005-08-17T19:48:55Z 2020-02-15T06:59:49Z +2462 90 1 12788 2.99 2005-08-19T00:15:09Z 2020-02-15T06:59:49Z +2463 90 1 13051 4.99 2005-08-19T09:31:33Z 2020-02-15T06:59:49Z +2464 90 1 14608 1.99 2005-08-21T17:57:22Z 2020-02-15T06:59:49Z +2465 90 1 14807 4.99 2005-08-22T00:57:43Z 2020-02-15T06:59:49Z +2466 90 2 15061 0.99 2005-08-22T10:29:44Z 2020-02-15T06:59:49Z +2467 90 2 15217 0.99 2005-08-22T16:58:31Z 2020-02-15T06:59:49Z +2468 90 1 15674 7.99 2005-08-23T09:16:39Z 2020-02-15T06:59:49Z +2469 91 2 216 5.99 2005-05-26T09:17:43Z 2020-02-15T06:59:49Z +2470 91 1 1299 4.99 2005-06-15T09:34:50Z 2020-02-15T06:59:49Z +2471 91 1 2457 3.99 2005-06-18T19:38:20Z 2020-02-15T06:59:49Z +2472 91 1 2908 0.99 2005-06-20T03:16:52Z 2020-02-15T06:59:49Z +2473 91 2 3384 2.99 2005-06-21T14:07:35Z 2020-02-15T06:59:49Z +2474 91 2 3802 0.99 2005-07-06T15:06:09Z 2020-02-15T06:59:49Z +2475 91 2 4103 2.99 2005-07-07T06:25:28Z 2020-02-15T06:59:49Z +2476 91 1 4245 4.99 2005-07-07T13:48:33Z 2020-02-15T06:59:49Z +2477 91 1 4321 4.99 2005-07-07T17:52:38Z 2020-02-15T06:59:49Z +2478 91 1 4673 4.99 2005-07-08T10:16:00Z 2020-02-15T06:59:49Z +2479 91 2 5025 4.99 2005-07-09T02:28:24Z 2020-02-15T06:59:49Z +2480 91 2 5187 1.99 2005-07-09T10:19:51Z 2020-02-15T06:59:49Z +2481 91 2 5701 0.99 2005-07-10T09:56:24Z 2020-02-15T06:59:49Z +2482 91 1 6078 4.99 2005-07-11T05:06:52Z 2020-02-15T06:59:49Z +2483 91 1 6178 2.99 2005-07-11T10:59:09Z 2020-02-15T06:59:49Z +2484 91 2 6860 2.99 2005-07-12T19:54:17Z 2020-02-15T06:59:49Z +2485 91 2 7143 0.99 2005-07-27T06:56:31Z 2020-02-15T06:59:49Z +2486 91 2 7637 0.99 2005-07-28T01:12:25Z 2020-02-15T06:59:49Z +2487 91 1 7966 4.99 2005-07-28T13:53:54Z 2020-02-15T06:59:49Z +2488 91 1 8313 0.99 2005-07-29T03:34:21Z 2020-02-15T06:59:49Z +2489 91 2 8873 0.99 2005-07-30T00:14:32Z 2020-02-15T06:59:49Z +2490 91 2 9228 2.99 2005-07-30T13:36:57Z 2020-02-15T06:59:49Z +2491 91 2 9396 4.99 2005-07-30T20:07:24Z 2020-02-15T06:59:49Z +2492 91 2 10008 4.99 2005-07-31T17:59:36Z 2020-02-15T06:59:49Z +2493 91 2 11418 0.99 2005-08-02T19:45:33Z 2020-02-15T06:59:49Z +2494 91 1 12847 0.99 2005-08-19T02:04:07Z 2020-02-15T06:59:49Z +2495 91 2 13222 4.99 2005-08-19T15:47:58Z 2020-02-15T06:59:49Z +2496 91 2 13309 4.99 2005-08-19T19:04:00Z 2020-02-15T06:59:49Z +2497 91 1 14132 0.99 2005-08-21T01:43:58Z 2020-02-15T06:59:49Z +2498 91 2 14888 2.99 2005-08-22T04:09:18Z 2020-02-15T06:59:49Z +2499 91 1 15122 1.99 2005-08-22T12:47:45Z 2020-02-15T06:59:49Z +2500 91 1 15341 4.99 2005-08-22T20:56:31Z 2020-02-15T06:59:49Z +2501 91 1 15707 1.99 2005-08-23T10:35:45Z 2020-02-15T06:59:49Z +2502 91 2 15886 4.99 2005-08-23T16:50:53Z 2020-02-15T06:59:49Z +2503 91 1 12902 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2504 92 1 271 5.99 2005-05-26T16:22:01Z 2020-02-15T06:59:49Z +2505 92 1 456 4.99 2005-05-27T19:50:06Z 2020-02-15T06:59:49Z +2506 92 2 2084 4.99 2005-06-17T17:17:19Z 2020-02-15T06:59:49Z +2507 92 1 2521 0.99 2005-06-19T00:41:08Z 2020-02-15T06:59:49Z +2508 92 1 2740 8.99 2005-06-19T15:59:04Z 2020-02-15T06:59:49Z +2509 92 2 3595 8.99 2005-07-06T04:59:49Z 2020-02-15T06:59:49Z +2510 92 2 3716 7.99 2005-07-06T10:52:32Z 2020-02-15T06:59:49Z +2511 92 1 4360 2.99 2005-07-07T19:31:12Z 2020-02-15T06:59:49Z +2512 92 2 4828 4.99 2005-07-08T17:52:29Z 2020-02-15T06:59:49Z +2513 92 2 5497 5.99 2005-07-10T00:23:23Z 2020-02-15T06:59:49Z +2514 92 2 5620 7.99 2005-07-10T05:30:52Z 2020-02-15T06:59:49Z +2515 92 1 5792 6.99 2005-07-10T14:22:19Z 2020-02-15T06:59:49Z +2516 92 2 5919 2.99 2005-07-10T21:32:14Z 2020-02-15T06:59:49Z +2517 92 1 6158 0.99 2005-07-11T09:50:24Z 2020-02-15T06:59:49Z +2518 92 2 6277 6.99 2005-07-11T16:19:01Z 2020-02-15T06:59:49Z +2519 92 1 7073 4.99 2005-07-27T04:03:26Z 2020-02-15T06:59:49Z +2520 92 1 7832 1.99 2005-07-28T08:46:11Z 2020-02-15T06:59:49Z +2521 92 1 8494 4.99 2005-07-29T09:04:32Z 2020-02-15T06:59:49Z +2522 92 1 8938 4.99 2005-07-30T02:56:08Z 2020-02-15T06:59:49Z +2523 92 1 9240 4.99 2005-07-30T13:57:54Z 2020-02-15T06:59:49Z +2524 92 2 11203 4.99 2005-08-02T11:52:41Z 2020-02-15T06:59:49Z +2525 92 2 11245 2.99 2005-08-02T13:33:50Z 2020-02-15T06:59:49Z +2526 92 1 11849 4.99 2005-08-17T13:24:55Z 2020-02-15T06:59:49Z +2527 92 2 13020 5.99 2005-08-19T08:07:50Z 2020-02-15T06:59:49Z +2528 92 1 13495 0.99 2005-08-20T01:40:25Z 2020-02-15T06:59:49Z +2529 92 1 13620 2.99 2005-08-20T06:41:27Z 2020-02-15T06:59:49Z +2530 92 1 14798 0.99 2005-08-22T00:44:08Z 2020-02-15T06:59:49Z +2531 92 2 14998 4.99 2005-08-22T07:53:14Z 2020-02-15T06:59:49Z +2532 93 2 113 2.99 2005-05-25T19:07:40Z 2020-02-15T06:59:49Z +2533 93 2 420 6.99 2005-05-27T15:19:38Z 2020-02-15T06:59:49Z +2534 93 1 1025 4.99 2005-05-31T03:41:37Z 2020-02-15T06:59:49Z +2535 93 2 2256 4.99 2005-06-18T05:21:56Z 2020-02-15T06:59:49Z +2536 93 1 3109 0.99 2005-06-20T17:33:55Z 2020-02-15T06:59:49Z +2537 93 1 4733 2.99 2005-07-08T13:12:07Z 2020-02-15T06:59:49Z +2538 93 2 5130 4.99 2005-07-09T07:29:45Z 2020-02-15T06:59:49Z +2539 93 2 6287 4.99 2005-07-11T17:00:04Z 2020-02-15T06:59:49Z +2540 93 1 6586 4.99 2005-07-12T06:56:24Z 2020-02-15T06:59:49Z +2541 93 1 7301 2.99 2005-07-27T12:50:23Z 2020-02-15T06:59:49Z +2542 93 1 8233 0.99 2005-07-29T00:16:23Z 2020-02-15T06:59:49Z +2543 93 2 11271 5.99 2005-08-02T14:18:22Z 2020-02-15T06:59:49Z +2544 93 1 12704 4.99 2005-08-18T20:43:00Z 2020-02-15T06:59:49Z +2545 93 1 13555 2.99 2005-08-20T04:09:50Z 2020-02-15T06:59:49Z +2546 93 2 13904 2.99 2005-08-20T16:11:34Z 2020-02-15T06:59:49Z +2547 93 1 13950 8.99 2005-08-20T17:58:00Z 2020-02-15T06:59:49Z +2548 93 1 13993 4.99 2005-08-20T19:32:29Z 2020-02-15T06:59:49Z +2549 93 1 14195 0.99 2005-08-21T03:40:35Z 2020-02-15T06:59:49Z +2550 93 2 14333 4.99 2005-08-21T08:31:03Z 2020-02-15T06:59:49Z +2551 93 2 15324 5.99 2005-08-22T20:23:13Z 2020-02-15T06:59:49Z +2552 93 2 15631 2.99 2005-08-23T07:30:23Z 2020-02-15T06:59:49Z +2553 93 1 15696 0.99 2005-08-23T10:04:17Z 2020-02-15T06:59:49Z +2554 93 2 15913 1.99 2005-08-23T17:48:30Z 2020-02-15T06:59:49Z +2555 94 1 127 2.99 2005-05-25T21:10:40Z 2020-02-15T06:59:49Z +2556 94 2 629 4.99 2005-05-28T17:19:15Z 2020-02-15T06:59:49Z +2557 94 2 1213 2.99 2005-06-15T03:14:05Z 2020-02-15T06:59:49Z +2558 94 1 1367 4.99 2005-06-15T14:25:17Z 2020-02-15T06:59:49Z +2559 94 2 1734 3.99 2005-06-16T15:49:30Z 2020-02-15T06:59:49Z +2560 94 2 2620 4.99 2005-06-19T08:06:29Z 2020-02-15T06:59:49Z +2561 94 1 2816 2.99 2005-06-19T20:04:23Z 2020-02-15T06:59:49Z +2562 94 2 4044 0.99 2005-07-07T03:22:23Z 2020-02-15T06:59:49Z +2563 94 1 4287 8.99 2005-07-07T15:37:31Z 2020-02-15T06:59:49Z +2564 94 2 5719 4.99 2005-07-10T11:07:40Z 2020-02-15T06:59:49Z +2565 94 2 5970 4.99 2005-07-11T00:04:50Z 2020-02-15T06:59:49Z +2566 94 2 7809 2.99 2005-07-28T07:59:46Z 2020-02-15T06:59:49Z +2567 94 2 7979 0.99 2005-07-28T14:16:30Z 2020-02-15T06:59:49Z +2568 94 1 9605 4.99 2005-07-31T03:50:07Z 2020-02-15T06:59:49Z +2569 94 1 12316 2.99 2005-08-18T06:16:09Z 2020-02-15T06:59:49Z +2570 94 1 13786 5.99 2005-08-20T12:13:24Z 2020-02-15T06:59:49Z +2571 94 2 14804 1.99 2005-08-22T00:51:25Z 2020-02-15T06:59:49Z +2572 94 1 14865 4.99 2005-08-22T03:06:38Z 2020-02-15T06:59:49Z +2573 94 1 14978 0.99 2005-08-22T07:13:15Z 2020-02-15T06:59:49Z +2574 94 1 15693 0.99 2005-08-23T10:00:24Z 2020-02-15T06:59:49Z +2575 94 1 15371 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2576 95 1 490 4.99 2005-05-28T00:09:56Z 2020-02-15T06:59:49Z +2577 95 2 1174 2.99 2005-06-15T00:12:51Z 2020-02-15T06:59:49Z +2578 95 2 1261 1.99 2005-06-15T06:52:57Z 2020-02-15T06:59:49Z +2579 95 2 3056 2.99 2005-06-20T13:20:58Z 2020-02-15T06:59:49Z +2580 95 2 3426 0.99 2005-06-21T18:12:10Z 2020-02-15T06:59:49Z +2581 95 1 3633 1.99 2005-07-06T06:43:26Z 2020-02-15T06:59:49Z +2582 95 2 4000 4.99 2005-07-06T23:58:37Z 2020-02-15T06:59:49Z +2583 95 1 4835 5.99 2005-07-08T18:08:13Z 2020-02-15T06:59:49Z +2584 95 2 7245 5.99 2005-07-27T10:29:06Z 2020-02-15T06:59:49Z +2585 95 1 7471 4.99 2005-07-27T19:02:19Z 2020-02-15T06:59:49Z +2586 95 1 9222 6.99 2005-07-30T13:21:08Z 2020-02-15T06:59:49Z +2587 95 1 9695 6.99 2005-07-31T07:13:30Z 2020-02-15T06:59:49Z +2588 95 1 9951 4.99 2005-07-31T15:51:16Z 2020-02-15T06:59:49Z +2589 95 1 10130 0.99 2005-07-31T21:44:30Z 2020-02-15T06:59:49Z +2590 95 2 10446 0.99 2005-08-01T09:02:17Z 2020-02-15T06:59:49Z +2591 95 2 12351 5.99 2005-08-18T07:32:12Z 2020-02-15T06:59:49Z +2592 95 2 13516 7.99 2005-08-20T02:32:45Z 2020-02-15T06:59:49Z +2593 95 2 14203 4.99 2005-08-21T03:51:52Z 2020-02-15T06:59:49Z +2594 96 1 1266 3.99 2005-06-15T07:11:39Z 2020-02-15T06:59:49Z +2595 96 2 1413 7.99 2005-06-15T17:25:07Z 2020-02-15T06:59:49Z +2596 96 2 1437 0.99 2005-06-15T18:37:04Z 2020-02-15T06:59:49Z +2597 96 1 2372 0.99 2005-06-18T14:37:37Z 2020-02-15T06:59:49Z +2598 96 2 2973 5.99 2005-06-20T07:59:27Z 2020-02-15T06:59:49Z +2599 96 1 3308 0.99 2005-06-21T07:58:36Z 2020-02-15T06:59:49Z +2600 96 2 3463 0.99 2005-06-21T22:00:00Z 2020-02-15T06:59:49Z +2601 96 1 3720 2.99 2005-07-06T11:06:57Z 2020-02-15T06:59:49Z +2602 96 2 3742 2.99 2005-07-06T12:01:38Z 2020-02-15T06:59:49Z +2603 96 1 4961 4.99 2005-07-08T23:35:53Z 2020-02-15T06:59:49Z +2604 96 1 5558 0.99 2005-07-10T03:12:08Z 2020-02-15T06:59:49Z +2605 96 1 5678 4.99 2005-07-10T08:42:42Z 2020-02-15T06:59:49Z +2606 96 1 5696 2.99 2005-07-10T09:44:32Z 2020-02-15T06:59:49Z +2607 96 2 8125 4.99 2005-07-28T19:31:48Z 2020-02-15T06:59:49Z +2608 96 1 8437 6.99 2005-07-29T07:23:43Z 2020-02-15T06:59:49Z +2609 96 2 9093 3.99 2005-07-30T08:33:24Z 2020-02-15T06:59:49Z +2610 96 1 9315 4.99 2005-07-30T17:05:29Z 2020-02-15T06:59:49Z +2611 96 1 9662 3.99 2005-07-31T06:09:53Z 2020-02-15T06:59:49Z +2612 96 2 10031 4.99 2005-07-31T18:40:15Z 2020-02-15T06:59:49Z +2613 96 2 11864 4.99 2005-08-17T14:02:01Z 2020-02-15T06:59:49Z +2614 96 1 11984 3.99 2005-08-17T18:16:30Z 2020-02-15T06:59:49Z +2615 96 1 12199 4.99 2005-08-18T02:09:23Z 2020-02-15T06:59:49Z +2616 96 2 12525 4.99 2005-08-18T13:48:31Z 2020-02-15T06:59:49Z +2617 96 1 13514 0.99 2005-08-20T02:28:09Z 2020-02-15T06:59:49Z +2618 96 1 13855 4.99 2005-08-20T14:48:55Z 2020-02-15T06:59:49Z +2619 96 1 14462 3.99 2005-08-21T12:50:57Z 2020-02-15T06:59:49Z +2620 96 2 15989 4.99 2005-08-23T20:24:36Z 2020-02-15T06:59:49Z +2621 97 2 2083 2.99 2005-06-17T17:14:00Z 2020-02-15T06:59:49Z +2622 97 2 2790 4.99 2005-06-19T18:49:45Z 2020-02-15T06:59:49Z +2623 97 1 3459 0.99 2005-06-21T21:45:47Z 2020-02-15T06:59:49Z +2624 97 1 3540 2.99 2005-07-06T01:47:20Z 2020-02-15T06:59:49Z +2625 97 2 3565 0.99 2005-07-06T03:02:58Z 2020-02-15T06:59:49Z +2626 97 2 3818 4.99 2005-07-06T15:33:31Z 2020-02-15T06:59:49Z +2627 97 2 4312 4.99 2005-07-07T17:34:59Z 2020-02-15T06:59:49Z +2628 97 1 4508 4.99 2005-07-08T02:28:41Z 2020-02-15T06:59:49Z +2629 97 2 5454 4.99 2005-07-09T22:24:25Z 2020-02-15T06:59:49Z +2630 97 1 6544 0.99 2005-07-12T04:56:15Z 2020-02-15T06:59:49Z +2631 97 1 6726 0.99 2005-07-12T13:48:14Z 2020-02-15T06:59:49Z +2632 97 2 7182 5.99 2005-07-27T08:15:38Z 2020-02-15T06:59:49Z +2633 97 2 7924 0.99 2005-07-28T12:08:53Z 2020-02-15T06:59:49Z +2634 97 2 8438 2.99 2005-07-29T07:25:42Z 2020-02-15T06:59:49Z +2635 97 1 9591 4.99 2005-07-31T03:19:28Z 2020-02-15T06:59:49Z +2636 97 1 10820 2.99 2005-08-01T22:53:40Z 2020-02-15T06:59:49Z +2637 97 2 14323 4.99 2005-08-21T08:08:43Z 2020-02-15T06:59:49Z +2638 97 1 15006 0.99 2005-08-22T08:20:15Z 2020-02-15T06:59:49Z +2639 98 2 214 3.99 2005-05-26T08:48:49Z 2020-02-15T06:59:49Z +2640 98 1 1362 3.99 2005-06-15T13:53:32Z 2020-02-15T06:59:49Z +2641 98 2 1590 5.99 2005-06-16T05:11:41Z 2020-02-15T06:59:49Z +2642 98 1 2213 4.99 2005-06-18T02:36:47Z 2020-02-15T06:59:49Z +2643 98 1 2445 0.99 2005-06-18T19:02:11Z 2020-02-15T06:59:49Z +2644 98 2 2601 4.99 2005-06-19T06:09:44Z 2020-02-15T06:59:49Z +2645 98 2 3399 4.99 2005-06-21T15:47:48Z 2020-02-15T06:59:49Z +2646 98 2 3682 7.99 2005-07-06T09:22:48Z 2020-02-15T06:59:49Z +2647 98 1 4549 4.99 2005-07-08T04:25:03Z 2020-02-15T06:59:49Z +2648 98 2 6951 2.99 2005-07-26T23:47:31Z 2020-02-15T06:59:49Z +2649 98 2 7120 3.99 2005-07-27T05:56:39Z 2020-02-15T06:59:49Z +2650 98 1 7530 0.99 2005-07-27T21:18:58Z 2020-02-15T06:59:49Z +2651 98 1 8324 5.99 2005-07-29T03:56:05Z 2020-02-15T06:59:49Z +2652 98 2 8622 4.99 2005-07-29T13:53:28Z 2020-02-15T06:59:49Z +2653 98 2 8818 5.99 2005-07-29T22:14:04Z 2020-02-15T06:59:49Z +2654 98 1 9753 2.99 2005-07-31T09:22:38Z 2020-02-15T06:59:49Z +2655 98 2 10694 3.99 2005-08-01T18:15:07Z 2020-02-15T06:59:49Z +2656 98 1 10925 2.99 2005-08-02T02:24:38Z 2020-02-15T06:59:49Z +2657 98 2 11007 0.99 2005-08-02T05:05:53Z 2020-02-15T06:59:49Z +2658 98 2 11200 2.99 2005-08-02T11:48:36Z 2020-02-15T06:59:49Z +2659 98 1 11635 5.99 2005-08-17T04:33:17Z 2020-02-15T06:59:49Z +2660 98 1 11730 2.99 2005-08-17T08:22:00Z 2020-02-15T06:59:49Z +2661 98 2 12221 5.99 2005-08-18T02:50:51Z 2020-02-15T06:59:49Z +2662 98 2 14459 1.99 2005-08-21T12:48:08Z 2020-02-15T06:59:49Z +2663 98 1 15536 7.99 2005-08-23T03:58:28Z 2020-02-15T06:59:49Z +2664 99 2 867 0.99 2005-05-30T03:54:43Z 2020-02-15T06:59:49Z +2665 99 1 1858 4.99 2005-06-17T01:13:11Z 2020-02-15T06:59:49Z +2666 99 1 2368 2.99 2005-06-18T14:10:27Z 2020-02-15T06:59:49Z +2667 99 2 3780 6.99 2005-07-06T13:52:02Z 2020-02-15T06:59:49Z +2668 99 2 4170 2.99 2005-07-07T09:44:36Z 2020-02-15T06:59:49Z +2669 99 2 4344 4.99 2005-07-07T18:50:47Z 2020-02-15T06:59:49Z +2670 99 1 4589 0.99 2005-07-08T06:26:04Z 2020-02-15T06:59:49Z +2671 99 2 4800 4.99 2005-07-08T16:51:08Z 2020-02-15T06:59:49Z +2672 99 2 4954 2.99 2005-07-08T23:14:16Z 2020-02-15T06:59:49Z +2673 99 2 5035 2.99 2005-07-09T02:51:34Z 2020-02-15T06:59:49Z +2674 99 1 5748 2.99 2005-07-10T12:19:59Z 2020-02-15T06:59:49Z +2675 99 1 6289 2.99 2005-07-11T17:06:39Z 2020-02-15T06:59:49Z +2676 99 1 6370 3.99 2005-07-11T21:28:32Z 2020-02-15T06:59:49Z +2677 99 2 6662 4.99 2005-07-12T11:21:06Z 2020-02-15T06:59:49Z +2678 99 1 7039 4.99 2005-07-27T03:11:48Z 2020-02-15T06:59:49Z +2679 99 1 8072 0.99 2005-07-28T17:27:59Z 2020-02-15T06:59:49Z +2680 99 2 8242 7.99 2005-07-29T00:34:27Z 2020-02-15T06:59:49Z +2681 99 2 8514 0.99 2005-07-29T09:53:33Z 2020-02-15T06:59:49Z +2682 99 2 10388 7.99 2005-08-01T06:42:44Z 2020-02-15T06:59:49Z +2683 99 1 10455 1.99 2005-08-01T09:15:00Z 2020-02-15T06:59:49Z +2684 99 2 11266 4.99 2005-08-02T14:07:35Z 2020-02-15T06:59:49Z +2685 99 2 12379 0.99 2005-08-18T08:26:48Z 2020-02-15T06:59:49Z +2686 99 2 12869 8.99 2005-08-19T02:50:36Z 2020-02-15T06:59:49Z +2687 99 1 11593 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2688 100 1 71 0.99 2005-05-25T10:26:39Z 2020-02-15T06:59:49Z +2689 100 2 1216 4.99 2005-06-15T03:23:48Z 2020-02-15T06:59:49Z +2690 100 1 1340 3.99 2005-06-15T12:24:15Z 2020-02-15T06:59:49Z +2691 100 1 1427 2.99 2005-06-15T18:17:28Z 2020-02-15T06:59:49Z +2692 100 2 3468 6.99 2005-06-21T22:43:45Z 2020-02-15T06:59:49Z +2693 100 2 3602 5.99 2005-07-06T05:23:10Z 2020-02-15T06:59:49Z +2694 100 1 3800 8.99 2005-07-06T15:01:27Z 2020-02-15T06:59:49Z +2695 100 1 4209 2.99 2005-07-07T11:35:08Z 2020-02-15T06:59:49Z +2696 100 1 4970 8.99 2005-07-08T23:54:29Z 2020-02-15T06:59:49Z +2697 100 2 4980 6.99 2005-07-09T00:26:59Z 2020-02-15T06:59:49Z +2698 100 2 5238 4.99 2005-07-09T13:11:14Z 2020-02-15T06:59:49Z +2699 100 2 5355 6.99 2005-07-09T18:07:17Z 2020-02-15T06:59:49Z +2700 100 1 6655 4.99 2005-07-12T11:08:32Z 2020-02-15T06:59:49Z +2701 100 2 7819 4.99 2005-07-28T08:27:14Z 2020-02-15T06:59:49Z +2702 100 1 7921 1.99 2005-07-28T12:02:46Z 2020-02-15T06:59:49Z +2703 100 2 8203 0.99 2005-07-28T23:14:56Z 2020-02-15T06:59:49Z +2704 100 2 9048 5.99 2005-07-30T06:57:07Z 2020-02-15T06:59:49Z +2705 100 1 9271 4.99 2005-07-30T15:04:31Z 2020-02-15T06:59:49Z +2706 100 1 11143 0.99 2005-08-02T09:32:54Z 2020-02-15T06:59:49Z +2707 100 2 11346 4.99 2005-08-02T17:15:38Z 2020-02-15T06:59:49Z +2708 100 1 12657 0.99 2005-08-18T19:02:16Z 2020-02-15T06:59:49Z +2709 100 1 15163 0.99 2005-08-22T14:43:13Z 2020-02-15T06:59:49Z +2710 100 2 15246 3.99 2005-08-22T17:50:49Z 2020-02-15T06:59:49Z +2711 100 2 15021 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2712 101 1 468 9.99 2005-05-27T21:13:10Z 2020-02-15T06:59:49Z +2713 101 1 4975 2.99 2005-07-09T00:02:46Z 2020-02-15T06:59:49Z +2714 101 2 5100 2.99 2005-07-09T06:16:03Z 2020-02-15T06:59:49Z +2715 101 1 5132 5.99 2005-07-09T07:40:32Z 2020-02-15T06:59:49Z +2716 101 2 5198 2.99 2005-07-09T10:49:10Z 2020-02-15T06:59:49Z +2717 101 1 5757 2.99 2005-07-10T12:40:17Z 2020-02-15T06:59:49Z +2718 101 2 6433 5.99 2005-07-12T00:12:02Z 2020-02-15T06:59:49Z +2719 101 2 7112 5.99 2005-07-27T05:38:42Z 2020-02-15T06:59:49Z +2720 101 2 7866 8.99 2005-07-28T10:08:01Z 2020-02-15T06:59:49Z +2721 101 1 8301 0.99 2005-07-29T03:00:08Z 2020-02-15T06:59:49Z +2722 101 2 8825 1.99 2005-07-29T22:24:16Z 2020-02-15T06:59:49Z +2723 101 2 8833 4.99 2005-07-29T22:39:36Z 2020-02-15T06:59:49Z +2724 101 2 9965 6.99 2005-07-31T16:19:32Z 2020-02-15T06:59:49Z +2725 101 2 10218 0.99 2005-08-01T01:09:44Z 2020-02-15T06:59:49Z +2726 101 1 10253 6.99 2005-08-01T02:39:49Z 2020-02-15T06:59:49Z +2727 101 1 10407 0.99 2005-08-01T07:38:07Z 2020-02-15T06:59:49Z +2728 101 2 11959 4.99 2005-08-17T17:23:35Z 2020-02-15T06:59:49Z +2729 101 2 12174 2.99 2005-08-18T01:08:53Z 2020-02-15T06:59:49Z +2730 101 1 12471 4.99 2005-08-18T11:57:00Z 2020-02-15T06:59:49Z +2731 101 2 13370 1.99 2005-08-19T21:20:11Z 2020-02-15T06:59:49Z +2732 101 1 14476 0.99 2005-08-21T13:31:07Z 2020-02-15T06:59:49Z +2733 101 2 14542 3.99 2005-08-21T15:36:34Z 2020-02-15T06:59:49Z +2734 101 2 15103 2.99 2005-08-22T12:01:06Z 2020-02-15T06:59:49Z +2735 101 2 12141 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2736 102 1 247 4.99 2005-05-26T14:01:05Z 2020-02-15T06:59:49Z +2737 102 1 358 0.99 2005-05-27T06:43:59Z 2020-02-15T06:59:49Z +2738 102 2 562 1.99 2005-05-28T09:01:21Z 2020-02-15T06:59:49Z +2739 102 2 1215 2.99 2005-06-15T03:21:00Z 2020-02-15T06:59:49Z +2740 102 2 2419 8.99 2005-06-18T17:21:24Z 2020-02-15T06:59:49Z +2741 102 2 3520 1.99 2005-07-06T00:58:27Z 2020-02-15T06:59:49Z +2742 102 2 3630 1.99 2005-07-06T06:27:15Z 2020-02-15T06:59:49Z +2743 102 2 3665 4.99 2005-07-06T08:23:08Z 2020-02-15T06:59:49Z +2744 102 1 4089 6.99 2005-07-07T05:45:59Z 2020-02-15T06:59:49Z +2745 102 2 4777 3.99 2005-07-08T15:48:34Z 2020-02-15T06:59:49Z +2746 102 1 4997 6.99 2005-07-09T01:06:03Z 2020-02-15T06:59:49Z +2747 102 1 5009 5.99 2005-07-09T01:32:17Z 2020-02-15T06:59:49Z +2748 102 1 5109 4.99 2005-07-09T06:48:49Z 2020-02-15T06:59:49Z +2749 102 2 5509 5.99 2005-07-10T00:54:46Z 2020-02-15T06:59:49Z +2750 102 1 5716 2.99 2005-07-10T10:59:23Z 2020-02-15T06:59:49Z +2751 102 2 6434 5.99 2005-07-12T00:14:25Z 2020-02-15T06:59:49Z +2752 102 2 7119 0.99 2005-07-27T05:55:32Z 2020-02-15T06:59:49Z +2753 102 2 7247 0.99 2005-07-27T10:32:58Z 2020-02-15T06:59:49Z +2754 102 2 7439 6.99 2005-07-27T17:42:31Z 2020-02-15T06:59:49Z +2755 102 1 8186 0.99 2005-07-28T22:30:27Z 2020-02-15T06:59:49Z +2756 102 1 8664 5.99 2005-07-29T15:36:27Z 2020-02-15T06:59:49Z +2757 102 2 9151 3.99 2005-07-30T10:50:53Z 2020-02-15T06:59:49Z +2758 102 1 9192 2.99 2005-07-30T12:26:26Z 2020-02-15T06:59:49Z +2759 102 2 9295 0.99 2005-07-30T16:18:39Z 2020-02-15T06:59:49Z +2760 102 2 9617 2.99 2005-07-31T04:15:38Z 2020-02-15T06:59:49Z +2761 102 1 9780 4.99 2005-07-31T10:10:22Z 2020-02-15T06:59:49Z +2762 102 2 10841 1.99 2005-08-01T23:39:21Z 2020-02-15T06:59:49Z +2763 102 2 11099 4.99 2005-08-02T08:07:12Z 2020-02-15T06:59:49Z +2764 102 1 11183 4.99 2005-08-02T11:00:32Z 2020-02-15T06:59:49Z +2765 102 2 12495 4.99 2005-08-18T12:56:37Z 2020-02-15T06:59:49Z +2766 102 1 13420 9.99 2005-08-19T22:57:25Z 2020-02-15T06:59:49Z +2767 102 1 15049 1.99 2005-08-22T10:06:28Z 2020-02-15T06:59:49Z +2768 102 2 16031 3.99 2005-08-23T21:59:26Z 2020-02-15T06:59:49Z +2769 103 1 240 7.99 2005-05-26T12:40:23Z 2020-02-15T06:59:49Z +2770 103 1 658 9.99 2005-05-28T20:23:23Z 2020-02-15T06:59:49Z +2771 103 2 1396 4.99 2005-06-15T16:22:38Z 2020-02-15T06:59:49Z +2772 103 1 2118 0.99 2005-06-17T20:28:29Z 2020-02-15T06:59:49Z +2773 103 1 2197 0.99 2005-06-18T01:50:27Z 2020-02-15T06:59:49Z +2774 103 1 2724 0.99 2005-06-19T14:57:54Z 2020-02-15T06:59:49Z +2775 103 2 3750 6.99 2005-07-06T12:19:28Z 2020-02-15T06:59:49Z +2776 103 1 3850 4.99 2005-07-06T16:51:21Z 2020-02-15T06:59:49Z +2777 103 2 4040 6.99 2005-07-07T03:02:40Z 2020-02-15T06:59:49Z +2778 103 1 4213 2.99 2005-07-07T11:53:49Z 2020-02-15T06:59:49Z +2779 103 1 4357 1.99 2005-07-07T19:24:39Z 2020-02-15T06:59:49Z +2780 103 2 4872 4.99 2005-07-08T19:23:16Z 2020-02-15T06:59:49Z +2781 103 2 5163 4.99 2005-07-09T09:00:28Z 2020-02-15T06:59:49Z +2782 103 1 6525 5.99 2005-07-12T04:17:15Z 2020-02-15T06:59:49Z +2783 103 2 6697 6.99 2005-07-12T12:44:57Z 2020-02-15T06:59:49Z +2784 103 2 6949 2.99 2005-07-26T23:44:12Z 2020-02-15T06:59:49Z +2785 103 1 7310 0.99 2005-07-27T13:00:55Z 2020-02-15T06:59:49Z +2786 103 2 7472 6.99 2005-07-27T19:04:19Z 2020-02-15T06:59:49Z +2787 103 1 8302 0.99 2005-07-29T03:01:24Z 2020-02-15T06:59:49Z +2788 103 1 8520 4.99 2005-07-29T10:10:02Z 2020-02-15T06:59:49Z +2789 103 2 9390 4.99 2005-07-30T19:42:07Z 2020-02-15T06:59:49Z +2790 103 2 12942 7.99 2005-08-19T05:40:36Z 2020-02-15T06:59:49Z +2791 103 1 13676 0.99 2005-08-20T08:33:21Z 2020-02-15T06:59:49Z +2792 103 2 14064 2.99 2005-08-20T22:39:16Z 2020-02-15T06:59:49Z +2793 103 2 14289 4.99 2005-08-21T06:58:49Z 2020-02-15T06:59:49Z +2794 103 2 15401 8.99 2005-08-22T23:13:10Z 2020-02-15T06:59:49Z +2795 103 1 15461 5.99 2005-08-23T01:13:52Z 2020-02-15T06:59:49Z +2796 103 1 15467 3.99 2005-08-23T01:22:12Z 2020-02-15T06:59:49Z +2797 103 1 15599 5.99 2005-08-23T06:25:07Z 2020-02-15T06:59:49Z +2798 103 2 15679 0.99 2005-08-23T09:27:29Z 2020-02-15T06:59:49Z +2799 103 2 16048 8.99 2005-08-23T22:43:07Z 2020-02-15T06:59:49Z +2800 104 1 163 10.99 2005-05-26T02:26:23Z 2020-02-15T06:59:49Z +2801 104 2 808 3.99 2005-05-29T19:08:20Z 2020-02-15T06:59:49Z +2802 104 2 1287 3.99 2005-06-15T08:41:38Z 2020-02-15T06:59:49Z +2803 104 1 2107 0.99 2005-06-17T19:31:16Z 2020-02-15T06:59:49Z +2804 104 2 2928 0.99 2005-06-20T04:43:45Z 2020-02-15T06:59:49Z +2805 104 2 3273 2.99 2005-06-21T05:24:17Z 2020-02-15T06:59:49Z +2806 104 2 4012 4.99 2005-07-07T00:56:09Z 2020-02-15T06:59:49Z +2807 104 2 4438 6.99 2005-07-07T22:56:17Z 2020-02-15T06:59:49Z +2808 104 2 4520 4.99 2005-07-08T02:53:46Z 2020-02-15T06:59:49Z +2809 104 1 4529 7.99 2005-07-08T03:26:20Z 2020-02-15T06:59:49Z +2810 104 1 4917 2.99 2005-07-08T21:32:30Z 2020-02-15T06:59:49Z +2811 104 1 5376 1.99 2005-07-09T18:54:08Z 2020-02-15T06:59:49Z +2812 104 2 7107 2.99 2005-07-27T05:22:04Z 2020-02-15T06:59:49Z +2813 104 1 8413 1.99 2005-07-29T06:47:39Z 2020-02-15T06:59:49Z +2814 104 1 9090 3.99 2005-07-30T08:24:42Z 2020-02-15T06:59:49Z +2815 104 2 9996 5.99 2005-07-31T17:32:03Z 2020-02-15T06:59:49Z +2816 104 1 11700 2.99 2005-08-17T07:12:31Z 2020-02-15T06:59:49Z +2817 104 1 12453 3.99 2005-08-18T11:17:07Z 2020-02-15T06:59:49Z +2818 104 1 13005 0.99 2005-08-19T07:45:42Z 2020-02-15T06:59:49Z +2819 104 1 13017 1.99 2005-08-19T08:02:24Z 2020-02-15T06:59:49Z +2820 104 1 13179 4.99 2005-08-19T13:59:53Z 2020-02-15T06:59:49Z +2821 104 1 13410 3.99 2005-08-19T22:41:44Z 2020-02-15T06:59:49Z +2822 104 1 14218 3.99 2005-08-21T04:43:59Z 2020-02-15T06:59:49Z +2823 104 2 15186 0.99 2005-08-22T15:52:57Z 2020-02-15T06:59:49Z +2824 105 1 327 8.99 2005-05-27T01:18:57Z 2020-02-15T06:59:49Z +2825 105 2 473 7.99 2005-05-27T21:36:34Z 2020-02-15T06:59:49Z +2826 105 1 485 2.99 2005-05-27T23:40:52Z 2020-02-15T06:59:49Z +2827 105 1 779 6.99 2005-05-29T14:17:17Z 2020-02-15T06:59:49Z +2828 105 2 1789 3.99 2005-06-16T19:49:18Z 2020-02-15T06:59:49Z +2829 105 2 1991 3.99 2005-06-17T10:49:23Z 2020-02-15T06:59:49Z +2830 105 2 2635 3.99 2005-06-19T09:08:45Z 2020-02-15T06:59:49Z +2831 105 2 5261 4.99 2005-07-09T14:06:56Z 2020-02-15T06:59:49Z +2832 105 1 5429 4.99 2005-07-09T21:14:03Z 2020-02-15T06:59:49Z +2833 105 2 5542 2.99 2005-07-10T02:45:53Z 2020-02-15T06:59:49Z +2834 105 2 5677 4.99 2005-07-10T08:41:28Z 2020-02-15T06:59:49Z +2835 105 2 6546 4.99 2005-07-12T04:57:17Z 2020-02-15T06:59:49Z +2836 105 1 7442 2.99 2005-07-27T17:47:00Z 2020-02-15T06:59:49Z +2837 105 2 8980 2.99 2005-07-30T04:22:15Z 2020-02-15T06:59:49Z +2838 105 2 9124 3.99 2005-07-30T09:43:12Z 2020-02-15T06:59:49Z +2839 105 2 9198 5.99 2005-07-30T12:37:08Z 2020-02-15T06:59:49Z +2840 105 2 9210 9.99 2005-07-30T12:56:44Z 2020-02-15T06:59:49Z +2841 105 1 10513 4.99 2005-08-01T11:37:34Z 2020-02-15T06:59:49Z +2842 105 1 12217 0.99 2005-08-18T02:44:44Z 2020-02-15T06:59:49Z +2843 105 2 12899 2.99 2005-08-19T04:03:34Z 2020-02-15T06:59:49Z +2844 105 1 13057 6.99 2005-08-19T09:40:05Z 2020-02-15T06:59:49Z +2845 105 1 13751 2.99 2005-08-20T11:17:03Z 2020-02-15T06:59:49Z +2846 105 2 14048 0.99 2005-08-20T22:03:18Z 2020-02-15T06:59:49Z +2847 105 2 15624 4.99 2005-08-23T07:24:27Z 2020-02-15T06:59:49Z +2848 105 2 15688 4.99 2005-08-23T09:48:45Z 2020-02-15T06:59:49Z +2849 105 2 15803 2.99 2005-08-23T14:27:07Z 2020-02-15T06:59:49Z +2850 106 2 552 3.99 2005-05-28T07:53:38Z 2020-02-15T06:59:49Z +2851 106 2 1156 0.99 2005-05-31T22:37:34Z 2020-02-15T06:59:49Z +2852 106 1 2295 4.99 2005-06-18T07:56:18Z 2020-02-15T06:59:49Z +2853 106 1 3023 4.99 2005-06-20T11:18:11Z 2020-02-15T06:59:49Z +2854 106 1 4229 4.99 2005-07-07T12:43:23Z 2020-02-15T06:59:49Z +2855 106 2 4277 2.99 2005-07-07T14:52:12Z 2020-02-15T06:59:49Z +2856 106 1 4665 3.99 2005-07-08T10:04:24Z 2020-02-15T06:59:49Z +2857 106 2 5453 3.99 2005-07-09T22:24:11Z 2020-02-15T06:59:49Z +2858 106 2 6992 0.99 2005-07-27T01:04:45Z 2020-02-15T06:59:49Z +2859 106 1 7224 3.99 2005-07-27T09:44:26Z 2020-02-15T06:59:49Z +2860 106 1 7483 4.99 2005-07-27T19:25:00Z 2020-02-15T06:59:49Z +2861 106 1 8115 4.99 2005-07-28T19:14:17Z 2020-02-15T06:59:49Z +2862 106 2 9072 2.99 2005-07-30T07:45:49Z 2020-02-15T06:59:49Z +2863 106 2 9747 7.99 2005-07-31T09:16:57Z 2020-02-15T06:59:49Z +2864 106 2 10213 8.99 2005-08-01T01:03:18Z 2020-02-15T06:59:49Z +2865 106 1 10228 2.99 2005-08-01T01:43:18Z 2020-02-15T06:59:49Z +2866 106 1 10444 8.99 2005-08-01T09:01:40Z 2020-02-15T06:59:49Z +2867 106 2 11436 0.99 2005-08-02T20:16:06Z 2020-02-15T06:59:49Z +2868 106 1 12159 7.99 2005-08-18T00:36:09Z 2020-02-15T06:59:49Z +2869 106 1 12845 2.99 2005-08-19T02:02:37Z 2020-02-15T06:59:49Z +2870 106 2 14431 2.99 2005-08-21T11:31:15Z 2020-02-15T06:59:49Z +2871 106 1 14920 0.99 2005-08-22T05:08:58Z 2020-02-15T06:59:49Z +2872 106 1 15154 6.99 2005-08-22T14:27:37Z 2020-02-15T06:59:49Z +2873 107 1 170 5.99 2005-05-26T03:11:12Z 2020-02-15T06:59:49Z +2874 107 1 1026 5.99 2005-05-31T03:45:26Z 2020-02-15T06:59:49Z +2875 107 2 1243 2.99 2005-06-15T05:07:32Z 2020-02-15T06:59:49Z +2876 107 2 2693 6.99 2005-06-19T13:11:47Z 2020-02-15T06:59:49Z +2877 107 2 2860 4.99 2005-06-19T23:20:40Z 2020-02-15T06:59:49Z +2878 107 2 2897 3.99 2005-06-20T02:34:23Z 2020-02-15T06:59:49Z +2879 107 1 3033 3.99 2005-06-20T12:02:05Z 2020-02-15T06:59:49Z +2880 107 2 3120 0.99 2005-06-20T18:19:29Z 2020-02-15T06:59:49Z +2881 107 2 3174 0.99 2005-06-20T22:24:00Z 2020-02-15T06:59:49Z +2882 107 2 3824 6.99 2005-07-06T15:43:15Z 2020-02-15T06:59:49Z +2883 107 2 5311 4.99 2005-07-09T16:02:54Z 2020-02-15T06:59:49Z +2884 107 2 5575 2.99 2005-07-10T03:55:50Z 2020-02-15T06:59:49Z +2885 107 2 5798 3.99 2005-07-10T14:45:09Z 2020-02-15T06:59:49Z +2886 107 2 6131 2.99 2005-07-11T08:22:05Z 2020-02-15T06:59:49Z +2887 107 2 6133 0.99 2005-07-11T08:25:22Z 2020-02-15T06:59:49Z +2888 107 1 6811 5.99 2005-07-12T17:54:33Z 2020-02-15T06:59:49Z +2889 107 2 6934 6.99 2005-07-26T23:11:03Z 2020-02-15T06:59:49Z +2890 107 2 7447 4.99 2005-07-27T18:02:08Z 2020-02-15T06:59:49Z +2891 107 1 7600 7.99 2005-07-27T23:41:18Z 2020-02-15T06:59:49Z +2892 107 1 8162 4.99 2005-07-28T21:11:46Z 2020-02-15T06:59:49Z +2893 107 2 8704 1.99 2005-07-29T17:13:45Z 2020-02-15T06:59:49Z +2894 107 1 9155 2.99 2005-07-30T11:00:00Z 2020-02-15T06:59:49Z +2895 107 2 9351 2.99 2005-07-30T18:28:30Z 2020-02-15T06:59:49Z +2896 107 1 10226 4.99 2005-08-01T01:40:04Z 2020-02-15T06:59:49Z +2897 107 2 13361 4.99 2005-08-19T21:07:22Z 2020-02-15T06:59:49Z +2898 107 1 13510 6.99 2005-08-20T02:18:30Z 2020-02-15T06:59:49Z +2899 107 1 14562 4.99 2005-08-21T16:22:59Z 2020-02-15T06:59:49Z +2900 107 1 15560 3.99 2005-08-23T05:01:13Z 2020-02-15T06:59:49Z +2901 107 1 13079 1.98 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2902 107 1 15497 0 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2903 108 1 105 4.99 2005-05-25T17:54:12Z 2020-02-15T06:59:49Z +2904 108 2 1055 0.99 2005-05-31T07:47:18Z 2020-02-15T06:59:49Z +2905 108 2 1372 4.99 2005-06-15T14:45:48Z 2020-02-15T06:59:49Z +2906 108 1 1425 2.99 2005-06-15T18:13:46Z 2020-02-15T06:59:49Z +2907 108 1 2061 8.99 2005-06-17T15:47:00Z 2020-02-15T06:59:49Z +2908 108 1 2210 2.99 2005-06-18T02:27:01Z 2020-02-15T06:59:49Z +2909 108 2 3116 4.99 2005-06-20T18:04:55Z 2020-02-15T06:59:49Z +2910 108 1 3875 0.99 2005-07-06T18:15:39Z 2020-02-15T06:59:49Z +2911 108 2 4082 2.99 2005-07-07T05:11:53Z 2020-02-15T06:59:49Z +2912 108 1 4303 1.99 2005-07-07T16:57:32Z 2020-02-15T06:59:49Z +2913 108 1 4650 4.99 2005-07-08T09:32:08Z 2020-02-15T06:59:49Z +2914 108 1 4754 0.99 2005-07-08T14:20:01Z 2020-02-15T06:59:49Z +2915 108 2 5274 6.99 2005-07-09T14:34:09Z 2020-02-15T06:59:49Z +2916 108 1 5661 5.99 2005-07-10T07:53:51Z 2020-02-15T06:59:49Z +2917 108 2 5806 4.99 2005-07-10T15:11:54Z 2020-02-15T06:59:49Z +2918 108 1 6841 0.99 2005-07-12T19:04:24Z 2020-02-15T06:59:49Z +2919 108 2 8329 5.99 2005-07-29T04:06:33Z 2020-02-15T06:59:49Z +2920 108 2 8587 4.99 2005-07-29T12:18:40Z 2020-02-15T06:59:49Z +2921 108 1 8846 4.99 2005-07-29T23:10:28Z 2020-02-15T06:59:49Z +2922 108 2 9755 4.99 2005-07-31T09:24:55Z 2020-02-15T06:59:49Z +2923 108 1 11316 5.99 2005-08-02T16:07:49Z 2020-02-15T06:59:49Z +2924 108 2 11445 6.99 2005-08-02T20:33:35Z 2020-02-15T06:59:49Z +2925 108 2 11759 2.99 2005-08-17T09:41:23Z 2020-02-15T06:59:49Z +2926 108 1 12583 2.99 2005-08-18T15:51:36Z 2020-02-15T06:59:49Z +2927 108 2 12625 6.99 2005-08-18T17:36:19Z 2020-02-15T06:59:49Z +2928 108 2 13754 2.99 2005-08-20T11:18:08Z 2020-02-15T06:59:49Z +2929 108 2 14635 3.99 2005-08-21T18:51:43Z 2020-02-15T06:59:49Z +2930 108 2 15556 8.99 2005-08-23T04:52:16Z 2020-02-15T06:59:49Z +2931 108 1 16001 2.99 2005-08-23T20:45:53Z 2020-02-15T06:59:49Z +2932 108 1 15294 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2933 109 1 203 5.99 2005-05-26T07:27:57Z 2020-02-15T06:59:49Z +2934 109 1 386 0.99 2005-05-27T10:26:31Z 2020-02-15T06:59:49Z +2935 109 2 622 3.99 2005-05-28T15:58:22Z 2020-02-15T06:59:49Z +2936 109 1 698 0.99 2005-05-29T02:10:52Z 2020-02-15T06:59:49Z +2937 109 1 1061 7.99 2005-05-31T08:27:58Z 2020-02-15T06:59:49Z +2938 109 1 1106 4.99 2005-05-31T14:36:52Z 2020-02-15T06:59:49Z +2939 109 1 1115 2.99 2005-05-31T16:07:09Z 2020-02-15T06:59:49Z +2940 109 2 1581 2.99 2005-06-16T04:28:45Z 2020-02-15T06:59:49Z +2941 109 2 1891 3.99 2005-06-17T04:16:44Z 2020-02-15T06:59:49Z +2942 109 2 2198 6.99 2005-06-18T01:51:22Z 2020-02-15T06:59:49Z +2943 109 2 2679 5.99 2005-06-19T12:12:30Z 2020-02-15T06:59:49Z +2944 109 2 3076 5.99 2005-06-20T15:01:19Z 2020-02-15T06:59:49Z +2945 109 1 4921 4.99 2005-07-08T21:43:21Z 2020-02-15T06:59:49Z +2946 109 1 5027 2.99 2005-07-09T02:32:37Z 2020-02-15T06:59:49Z +2947 109 2 5296 2.99 2005-07-09T15:26:27Z 2020-02-15T06:59:49Z +2948 109 2 6920 6.99 2005-07-12T22:32:58Z 2020-02-15T06:59:49Z +2949 109 2 7145 0.99 2005-07-27T07:01:00Z 2020-02-15T06:59:49Z +2950 109 1 8006 3.99 2005-07-28T15:15:41Z 2020-02-15T06:59:49Z +2951 109 1 9230 0.99 2005-07-30T13:39:42Z 2020-02-15T06:59:49Z +2952 109 1 9871 2.99 2005-07-31T13:25:46Z 2020-02-15T06:59:49Z +2953 109 2 10240 0.99 2005-08-01T02:09:33Z 2020-02-15T06:59:49Z +2954 109 2 10892 3.99 2005-08-02T01:12:06Z 2020-02-15T06:59:49Z +2955 109 2 12137 6.99 2005-08-17T23:52:26Z 2020-02-15T06:59:49Z +2956 109 1 13264 3.99 2005-08-19T17:27:10Z 2020-02-15T06:59:49Z +2957 109 2 15398 7.99 2005-08-22T23:10:49Z 2020-02-15T06:59:49Z +2958 109 2 15677 2.99 2005-08-23T09:23:36Z 2020-02-15T06:59:49Z +2959 110 1 515 7.99 2005-05-28T03:10:10Z 2020-02-15T06:59:49Z +2960 110 2 538 1.99 2005-05-28T06:21:05Z 2020-02-15T06:59:49Z +2961 110 2 1528 8.99 2005-06-16T00:32:52Z 2020-02-15T06:59:49Z +2962 110 1 3587 4.99 2005-07-06T04:27:52Z 2020-02-15T06:59:49Z +2963 110 1 4317 2.99 2005-07-07T17:44:49Z 2020-02-15T06:59:49Z +2964 110 2 4827 4.99 2005-07-08T17:46:30Z 2020-02-15T06:59:49Z +2965 110 1 6160 4.99 2005-07-11T10:08:13Z 2020-02-15T06:59:49Z +2966 110 1 7474 0.99 2005-07-27T19:07:17Z 2020-02-15T06:59:49Z +2967 110 2 7542 0.99 2005-07-27T21:43:04Z 2020-02-15T06:59:49Z +2968 110 1 7570 2.99 2005-07-27T22:40:06Z 2020-02-15T06:59:49Z +2969 110 1 11647 7.99 2005-08-17T04:54:14Z 2020-02-15T06:59:49Z +2970 110 2 12585 3.99 2005-08-18T15:52:12Z 2020-02-15T06:59:49Z +2971 110 1 13723 2.99 2005-08-20T10:05:30Z 2020-02-15T06:59:49Z +2972 110 2 15381 2.99 2005-08-22T22:28:36Z 2020-02-15T06:59:49Z +2973 111 2 505 2.99 2005-05-28T02:06:37Z 2020-02-15T06:59:49Z +2974 111 1 1593 6.99 2005-06-16T05:14:52Z 2020-02-15T06:59:49Z +2975 111 2 1974 2.99 2005-06-17T09:30:05Z 2020-02-15T06:59:49Z +2976 111 2 1999 1.99 2005-06-17T11:30:08Z 2020-02-15T06:59:49Z +2977 111 2 2297 4.99 2005-06-18T08:17:41Z 2020-02-15T06:59:49Z +2978 111 2 3087 2.99 2005-06-20T15:53:59Z 2020-02-15T06:59:49Z +2979 111 2 3333 2.99 2005-06-21T10:01:36Z 2020-02-15T06:59:49Z +2980 111 2 3485 1.99 2005-07-05T23:25:54Z 2020-02-15T06:59:49Z +2981 111 1 3551 3.99 2005-07-06T02:33:48Z 2020-02-15T06:59:49Z +2982 111 2 3963 9.99 2005-07-06T22:19:17Z 2020-02-15T06:59:49Z +2983 111 1 4249 4.99 2005-07-07T14:05:17Z 2020-02-15T06:59:49Z +2984 111 2 4286 0.99 2005-07-07T15:36:44Z 2020-02-15T06:59:49Z +2985 111 1 6896 2.99 2005-07-12T21:25:37Z 2020-02-15T06:59:49Z +2986 111 2 8525 0.99 2005-07-29T10:20:19Z 2020-02-15T06:59:49Z +2987 111 2 9933 0.99 2005-07-31T15:24:46Z 2020-02-15T06:59:49Z +2988 111 2 10039 2.99 2005-07-31T18:50:40Z 2020-02-15T06:59:49Z +2989 111 2 10602 4.99 2005-08-01T14:30:23Z 2020-02-15T06:59:49Z +2990 111 1 10952 4.99 2005-08-02T03:28:21Z 2020-02-15T06:59:49Z +2991 111 2 10990 4.99 2005-08-02T04:41:06Z 2020-02-15T06:59:49Z +2992 111 2 11239 2.99 2005-08-02T13:27:11Z 2020-02-15T06:59:49Z +2993 111 2 12196 3.99 2005-08-18T02:08:48Z 2020-02-15T06:59:49Z +2994 111 2 13251 2.99 2005-08-19T16:48:37Z 2020-02-15T06:59:49Z +2995 111 2 13525 5.99 2005-08-20T02:50:44Z 2020-02-15T06:59:49Z +2996 111 1 14949 0.99 2005-08-22T06:12:16Z 2020-02-15T06:59:49Z +2997 111 2 15174 6.99 2005-08-22T15:26:36Z 2020-02-15T06:59:49Z +2998 111 2 15542 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2999 112 1 396 0.99 2005-05-27T11:47:04Z 2020-02-15T06:59:49Z +3000 112 2 701 2.99 2005-05-29T02:26:27Z 2020-02-15T06:59:49Z +3001 112 1 1835 4.99 2005-06-16T23:05:36Z 2020-02-15T06:59:49Z +3002 112 2 1930 2.99 2005-06-17T06:50:46Z 2020-02-15T06:59:49Z +3003 112 1 2193 4.99 2005-06-18T01:38:45Z 2020-02-15T06:59:49Z +3004 112 2 3018 2.99 2005-06-20T11:10:35Z 2020-02-15T06:59:49Z +3005 112 1 5351 4.99 2005-07-09T17:40:52Z 2020-02-15T06:59:49Z +3006 112 1 5385 2.99 2005-07-09T19:18:11Z 2020-02-15T06:59:49Z +3007 112 2 6550 2.99 2005-07-12T05:03:14Z 2020-02-15T06:59:49Z +3008 112 2 7691 4.99 2005-07-28T03:30:09Z 2020-02-15T06:59:49Z +3009 112 2 7761 4.99 2005-07-28T06:31:45Z 2020-02-15T06:59:49Z +3010 112 1 9217 4.99 2005-07-30T13:13:55Z 2020-02-15T06:59:49Z +3011 112 2 9321 6.99 2005-07-30T17:19:44Z 2020-02-15T06:59:49Z +3012 112 2 9609 4.99 2005-07-31T03:53:24Z 2020-02-15T06:59:49Z +3013 112 1 9830 5.99 2005-07-31T11:59:05Z 2020-02-15T06:59:49Z +3014 112 2 9911 3.99 2005-07-31T14:48:01Z 2020-02-15T06:59:49Z +3015 112 1 10038 2.99 2005-07-31T18:49:12Z 2020-02-15T06:59:49Z +3016 112 2 10596 5.99 2005-08-01T14:18:57Z 2020-02-15T06:59:49Z +3017 112 1 11019 2.99 2005-08-02T05:29:31Z 2020-02-15T06:59:49Z +3018 112 1 11599 7.99 2005-08-17T03:08:10Z 2020-02-15T06:59:49Z +3019 112 2 11659 4.99 2005-08-17T05:20:45Z 2020-02-15T06:59:49Z +3020 112 2 11863 3.99 2005-08-17T13:56:01Z 2020-02-15T06:59:49Z +3021 112 2 13611 8.99 2005-08-20T06:20:42Z 2020-02-15T06:59:49Z +3022 112 2 13879 2.99 2005-08-20T15:18:10Z 2020-02-15T06:59:49Z +3023 112 2 14049 5.99 2005-08-20T22:08:55Z 2020-02-15T06:59:49Z +3024 112 1 14358 0.99 2005-08-21T09:14:28Z 2020-02-15T06:59:49Z +3025 112 2 15304 4.99 2005-08-22T19:45:57Z 2020-02-15T06:59:49Z +3026 112 1 15671 0.99 2005-08-23T09:08:16Z 2020-02-15T06:59:49Z +3027 112 1 15687 8.99 2005-08-23T09:46:33Z 2020-02-15T06:59:49Z +3028 112 1 15756 2.99 2005-08-23T12:47:05Z 2020-02-15T06:59:49Z +3029 113 1 510 0.99 2005-05-28T02:52:14Z 2020-02-15T06:59:49Z +3030 113 2 776 0.99 2005-05-29T13:35:35Z 2020-02-15T06:59:49Z +3031 113 2 2077 4.99 2005-06-17T16:46:11Z 2020-02-15T06:59:49Z +3032 113 1 2282 2.99 2005-06-18T06:48:23Z 2020-02-15T06:59:49Z +3033 113 1 2783 2.99 2005-06-19T18:29:10Z 2020-02-15T06:59:49Z +3034 113 2 3004 0.99 2005-06-20T10:04:36Z 2020-02-15T06:59:49Z +3035 113 1 3124 8.99 2005-06-20T18:28:19Z 2020-02-15T06:59:49Z +3036 113 1 3162 6.99 2005-06-20T21:21:15Z 2020-02-15T06:59:49Z +3037 113 2 3657 5.99 2005-07-06T07:55:30Z 2020-02-15T06:59:49Z +3038 113 1 4333 2.99 2005-07-07T18:31:50Z 2020-02-15T06:59:49Z +3039 113 2 5189 2.99 2005-07-09T10:23:21Z 2020-02-15T06:59:49Z +3040 113 2 5324 2.99 2005-07-09T16:34:18Z 2020-02-15T06:59:49Z +3041 113 2 5655 4.99 2005-07-10T07:31:06Z 2020-02-15T06:59:49Z +3042 113 1 5774 5.99 2005-07-10T13:31:56Z 2020-02-15T06:59:49Z +3043 113 1 6025 0.99 2005-07-11T02:18:13Z 2020-02-15T06:59:49Z +3044 113 1 6836 0.99 2005-07-12T18:58:05Z 2020-02-15T06:59:49Z +3045 113 2 7468 5.99 2005-07-27T18:52:27Z 2020-02-15T06:59:49Z +3046 113 2 7587 2.99 2005-07-27T23:23:03Z 2020-02-15T06:59:49Z +3047 113 2 9221 6.99 2005-07-30T13:20:06Z 2020-02-15T06:59:49Z +3048 113 2 10181 4.99 2005-08-01T00:00:44Z 2020-02-15T06:59:49Z +3049 113 1 10378 0.99 2005-08-01T06:30:04Z 2020-02-15T06:59:49Z +3050 113 2 10578 1.99 2005-08-01T13:48:02Z 2020-02-15T06:59:49Z +3051 113 2 11655 7.99 2005-08-17T05:11:07Z 2020-02-15T06:59:49Z +3052 113 1 11872 5.99 2005-08-17T14:11:45Z 2020-02-15T06:59:49Z +3053 113 1 12392 5.99 2005-08-18T08:57:58Z 2020-02-15T06:59:49Z +3054 113 2 12817 3.99 2005-08-19T01:04:35Z 2020-02-15T06:59:49Z +3055 113 2 13406 2.99 2005-08-19T22:22:01Z 2020-02-15T06:59:49Z +3056 113 1 15600 1.99 2005-08-23T06:31:24Z 2020-02-15T06:59:49Z +3057 113 1 15770 2.99 2005-08-23T13:18:16Z 2020-02-15T06:59:49Z +3058 114 1 205 4.99 2005-05-26T07:59:37Z 2020-02-15T06:59:49Z +3059 114 1 255 4.99 2005-05-26T14:52:15Z 2020-02-15T06:59:49Z +3060 114 2 889 2.99 2005-05-30T07:14:53Z 2020-02-15T06:59:49Z +3061 114 1 2059 2.99 2005-06-17T15:36:12Z 2020-02-15T06:59:49Z +3062 114 2 2680 7.99 2005-06-19T12:13:37Z 2020-02-15T06:59:49Z +3063 114 1 3094 2.99 2005-06-20T16:06:51Z 2020-02-15T06:59:49Z +3064 114 2 3144 5.99 2005-06-20T20:14:20Z 2020-02-15T06:59:49Z +3065 114 1 3484 4.99 2005-07-05T23:23:11Z 2020-02-15T06:59:49Z +3066 114 1 3924 2.99 2005-07-06T20:38:02Z 2020-02-15T06:59:49Z +3067 114 1 4025 0.99 2005-07-07T02:13:24Z 2020-02-15T06:59:49Z +3068 114 1 5418 0.99 2005-07-09T20:41:35Z 2020-02-15T06:59:49Z +3069 114 2 5624 4.99 2005-07-10T05:43:16Z 2020-02-15T06:59:49Z +3070 114 1 5625 2.99 2005-07-10T05:44:02Z 2020-02-15T06:59:49Z +3071 114 1 6188 2.99 2005-07-11T11:31:47Z 2020-02-15T06:59:49Z +3072 114 1 6754 4.99 2005-07-12T14:59:24Z 2020-02-15T06:59:49Z +3073 114 2 7316 2.99 2005-07-27T13:19:03Z 2020-02-15T06:59:49Z +3074 114 2 7462 2.99 2005-07-27T18:47:47Z 2020-02-15T06:59:49Z +3075 114 2 7565 2.99 2005-07-27T22:33:59Z 2020-02-15T06:59:49Z +3076 114 2 7938 5.99 2005-07-28T12:39:11Z 2020-02-15T06:59:49Z +3077 114 2 8496 4.99 2005-07-29T09:05:33Z 2020-02-15T06:59:49Z +3078 114 1 8590 10.99 2005-07-29T12:32:20Z 2020-02-15T06:59:49Z +3079 114 1 9717 4.99 2005-07-31T08:24:41Z 2020-02-15T06:59:49Z +3080 114 1 11547 4.99 2005-08-17T00:59:24Z 2020-02-15T06:59:49Z +3081 114 2 12326 0.99 2005-08-18T06:41:59Z 2020-02-15T06:59:49Z +3082 114 1 12685 6.99 2005-08-18T19:51:29Z 2020-02-15T06:59:49Z +3083 114 2 13459 6.99 2005-08-20T00:45:40Z 2020-02-15T06:59:49Z +3084 114 2 14158 5.99 2005-08-21T02:43:20Z 2020-02-15T06:59:49Z +3085 114 1 14867 4.99 2005-08-22T03:14:46Z 2020-02-15T06:59:49Z +3086 114 1 15485 0.99 2005-08-23T02:04:57Z 2020-02-15T06:59:49Z +3087 114 1 15528 2.99 2005-08-23T03:45:40Z 2020-02-15T06:59:49Z +3088 114 2 15646 3.99 2005-08-23T08:19:55Z 2020-02-15T06:59:49Z +3089 114 1 16047 0.99 2005-08-23T22:42:48Z 2020-02-15T06:59:49Z +3090 114 2 12506 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3091 115 1 915 0.99 2005-05-30T11:20:27Z 2020-02-15T06:59:49Z +3092 115 1 983 0.99 2005-05-30T22:15:51Z 2020-02-15T06:59:49Z +3093 115 1 1102 2.99 2005-05-31T14:20:29Z 2020-02-15T06:59:49Z +3094 115 2 1361 0.99 2005-06-15T13:37:38Z 2020-02-15T06:59:49Z +3095 115 2 1515 2.99 2005-06-15T23:07:50Z 2020-02-15T06:59:49Z +3096 115 1 3289 6.99 2005-06-21T06:41:48Z 2020-02-15T06:59:49Z +3097 115 2 3544 0.99 2005-07-06T02:06:32Z 2020-02-15T06:59:49Z +3098 115 1 3624 0.99 2005-07-06T06:06:27Z 2020-02-15T06:59:49Z +3099 115 1 4780 1.99 2005-07-08T16:06:51Z 2020-02-15T06:59:49Z +3100 115 1 5245 4.99 2005-07-09T13:24:14Z 2020-02-15T06:59:49Z +3101 115 1 6080 2.99 2005-07-11T05:08:11Z 2020-02-15T06:59:49Z +3102 115 2 6113 2.99 2005-07-11T07:31:08Z 2020-02-15T06:59:49Z +3103 115 1 6373 0.99 2005-07-11T21:35:20Z 2020-02-15T06:59:49Z +3104 115 1 6574 5.99 2005-07-12T06:04:22Z 2020-02-15T06:59:49Z +3105 115 1 6798 6.99 2005-07-12T16:49:11Z 2020-02-15T06:59:49Z +3106 115 2 7355 1.99 2005-07-27T14:45:59Z 2020-02-15T06:59:49Z +3107 115 2 7465 4.99 2005-07-27T18:50:30Z 2020-02-15T06:59:49Z +3108 115 1 7983 4.99 2005-07-28T14:23:01Z 2020-02-15T06:59:49Z +3109 115 1 8594 4.99 2005-07-29T12:42:13Z 2020-02-15T06:59:49Z +3110 115 2 9578 0.99 2005-07-31T02:54:31Z 2020-02-15T06:59:49Z +3111 115 2 10022 3.99 2005-07-31T18:25:30Z 2020-02-15T06:59:49Z +3112 115 2 10475 4.99 2005-08-01T10:03:17Z 2020-02-15T06:59:49Z +3113 115 2 10647 2.99 2005-08-01T16:08:46Z 2020-02-15T06:59:49Z +3114 115 2 10919 0.99 2005-08-02T02:11:03Z 2020-02-15T06:59:49Z +3115 115 1 11891 2.99 2005-08-17T15:11:55Z 2020-02-15T06:59:49Z +3116 115 2 12366 0.99 2005-08-18T07:55:14Z 2020-02-15T06:59:49Z +3117 115 2 13977 0.99 2005-08-20T19:02:34Z 2020-02-15T06:59:49Z +3118 115 1 15176 6.99 2005-08-22T15:30:25Z 2020-02-15T06:59:49Z +3119 115 2 15452 0.99 2005-08-23T00:57:12Z 2020-02-15T06:59:49Z +3120 115 2 13056 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3121 116 1 1058 4.99 2005-05-31T08:04:17Z 2020-02-15T06:59:49Z +3122 116 2 1332 0.99 2005-06-15T11:36:01Z 2020-02-15T06:59:49Z +3123 116 2 1533 0.99 2005-06-16T00:46:02Z 2020-02-15T06:59:49Z +3124 116 2 1762 4.99 2005-06-16T17:50:19Z 2020-02-15T06:59:49Z +3125 116 2 1913 4.99 2005-06-17T05:19:47Z 2020-02-15T06:59:49Z +3126 116 1 2639 4.99 2005-06-19T09:24:02Z 2020-02-15T06:59:49Z +3127 116 1 2861 3.99 2005-06-19T23:21:34Z 2020-02-15T06:59:49Z +3128 116 2 3908 6.99 2005-07-06T19:47:26Z 2020-02-15T06:59:49Z +3129 116 2 3940 2.99 2005-07-06T21:16:59Z 2020-02-15T06:59:49Z +3130 116 1 4027 0.99 2005-07-07T02:19:01Z 2020-02-15T06:59:49Z +3131 116 2 4737 4.99 2005-07-08T13:23:53Z 2020-02-15T06:59:49Z +3132 116 2 5169 2.99 2005-07-09T09:22:25Z 2020-02-15T06:59:49Z +3133 116 1 6557 4.99 2005-07-12T05:12:03Z 2020-02-15T06:59:49Z +3134 116 1 7238 0.99 2005-07-27T10:13:41Z 2020-02-15T06:59:49Z +3135 116 2 7763 5.99 2005-07-28T06:35:16Z 2020-02-15T06:59:49Z +3136 116 2 9245 6.99 2005-07-30T14:07:50Z 2020-02-15T06:59:49Z +3137 116 1 9562 3.99 2005-07-31T02:23:20Z 2020-02-15T06:59:49Z +3138 116 2 10250 1.99 2005-08-01T02:38:42Z 2020-02-15T06:59:49Z +3139 116 1 10801 1.99 2005-08-01T22:09:35Z 2020-02-15T06:59:49Z +3140 116 2 11016 4.99 2005-08-02T05:19:13Z 2020-02-15T06:59:49Z +3141 116 2 12376 2.99 2005-08-18T08:20:29Z 2020-02-15T06:59:49Z +3142 116 2 13146 7.99 2005-08-19T12:54:42Z 2020-02-15T06:59:49Z +3143 116 1 13369 0.99 2005-08-19T21:19:47Z 2020-02-15T06:59:49Z +3144 116 1 13474 0.99 2005-08-20T01:04:32Z 2020-02-15T06:59:49Z +3145 116 1 13775 6.99 2005-08-20T11:56:30Z 2020-02-15T06:59:49Z +3146 116 2 14763 11.99 2005-08-21T23:34:00Z 2020-02-15T06:59:49Z +3147 116 1 14907 2.99 2005-08-22T04:44:09Z 2020-02-15T06:59:49Z +3148 117 1 700 0.99 2005-05-29T02:18:54Z 2020-02-15T06:59:49Z +3149 117 2 1114 0.99 2005-05-31T16:00:33Z 2020-02-15T06:59:49Z +3150 117 1 1755 2.99 2005-06-16T17:18:44Z 2020-02-15T06:59:49Z +3151 117 2 3218 2.99 2005-06-21T01:38:09Z 2020-02-15T06:59:49Z +3152 117 2 5506 5.99 2005-07-10T00:45:48Z 2020-02-15T06:59:49Z +3153 117 1 5673 0.99 2005-07-10T08:21:54Z 2020-02-15T06:59:49Z +3154 117 1 6093 9.99 2005-07-11T05:52:50Z 2020-02-15T06:59:49Z +3155 117 1 6449 6.99 2005-07-12T00:48:58Z 2020-02-15T06:59:49Z +3156 117 1 8687 2.99 2005-07-29T16:19:17Z 2020-02-15T06:59:49Z +3157 117 2 10556 2.99 2005-08-01T12:58:42Z 2020-02-15T06:59:49Z +3158 117 1 10558 4.99 2005-08-01T13:00:20Z 2020-02-15T06:59:49Z +3159 117 2 11467 3.99 2005-08-02T21:47:07Z 2020-02-15T06:59:49Z +3160 117 1 12143 2.99 2005-08-18T00:06:26Z 2020-02-15T06:59:49Z +3161 117 1 12337 2.99 2005-08-18T07:02:24Z 2020-02-15T06:59:49Z +3162 117 1 12575 6.99 2005-08-18T15:37:42Z 2020-02-15T06:59:49Z +3163 117 1 12618 4.99 2005-08-18T17:24:02Z 2020-02-15T06:59:49Z +3164 117 1 14784 0.99 2005-08-22T00:23:13Z 2020-02-15T06:59:49Z +3165 117 2 14854 2.99 2005-08-22T02:26:47Z 2020-02-15T06:59:49Z +3166 117 1 15432 2.99 2005-08-23T00:26:52Z 2020-02-15T06:59:49Z +3167 118 2 351 5.99 2005-05-27T05:39:03Z 2020-02-15T06:59:49Z +3168 118 2 1766 4.99 2005-06-16T17:59:37Z 2020-02-15T06:59:49Z +3169 118 2 2217 0.99 2005-06-18T03:12:29Z 2020-02-15T06:59:49Z +3170 118 1 3263 4.99 2005-06-21T04:15:52Z 2020-02-15T06:59:49Z +3171 118 1 4966 0.99 2005-07-08T23:47:25Z 2020-02-15T06:59:49Z +3172 118 1 5829 1.99 2005-07-10T16:29:41Z 2020-02-15T06:59:49Z +3173 118 1 6377 0.99 2005-07-11T21:41:16Z 2020-02-15T06:59:49Z +3174 118 1 6507 1.99 2005-07-12T03:33:12Z 2020-02-15T06:59:49Z +3175 118 1 7196 2.99 2005-07-27T08:49:08Z 2020-02-15T06:59:49Z +3176 118 1 7850 4.99 2005-07-28T09:31:13Z 2020-02-15T06:59:49Z +3177 118 2 7956 4.99 2005-07-28T13:32:17Z 2020-02-15T06:59:49Z +3178 118 1 8314 3.99 2005-07-29T03:35:04Z 2020-02-15T06:59:49Z +3179 118 2 8760 7.99 2005-07-29T19:22:40Z 2020-02-15T06:59:49Z +3180 118 1 8881 4.99 2005-07-30T00:22:31Z 2020-02-15T06:59:49Z +3181 118 2 10045 1.99 2005-07-31T19:04:35Z 2020-02-15T06:59:49Z +3182 118 2 12538 2.99 2005-08-18T14:09:09Z 2020-02-15T06:59:49Z +3183 118 2 13193 6.99 2005-08-19T14:33:45Z 2020-02-15T06:59:49Z +3184 118 2 14394 5.99 2005-08-21T10:23:10Z 2020-02-15T06:59:49Z +3185 118 2 14595 7.99 2005-08-21T17:35:17Z 2020-02-15T06:59:49Z +3186 118 1 14924 2.99 2005-08-22T05:15:17Z 2020-02-15T06:59:49Z +3187 118 1 15731 0.99 2005-08-23T11:33:25Z 2020-02-15T06:59:49Z +3188 119 2 67 0.99 2005-05-25T09:41:01Z 2020-02-15T06:59:49Z +3189 119 1 235 5.99 2005-05-26T11:51:09Z 2020-02-15T06:59:49Z +3190 119 2 540 6.99 2005-05-28T06:40:25Z 2020-02-15T06:59:49Z +3191 119 1 1179 7.99 2005-06-15T00:36:50Z 2020-02-15T06:59:49Z +3192 119 2 2009 2.99 2005-06-17T11:48:31Z 2020-02-15T06:59:49Z +3193 119 2 3388 5.99 2005-06-21T14:34:51Z 2020-02-15T06:59:49Z +3194 119 2 4840 8.99 2005-07-08T18:18:16Z 2020-02-15T06:59:49Z +3195 119 1 5176 5.99 2005-07-09T09:39:31Z 2020-02-15T06:59:49Z +3196 119 1 5268 0.99 2005-07-09T14:22:43Z 2020-02-15T06:59:49Z +3197 119 1 6079 7.99 2005-07-11T05:07:14Z 2020-02-15T06:59:49Z +3198 119 2 6330 0.99 2005-07-11T19:15:42Z 2020-02-15T06:59:49Z +3199 119 2 8140 4.99 2005-07-28T20:17:50Z 2020-02-15T06:59:49Z +3200 119 1 8183 5.99 2005-07-28T22:21:07Z 2020-02-15T06:59:49Z +3201 119 1 8304 4.99 2005-07-29T03:08:30Z 2020-02-15T06:59:49Z +3202 119 2 9028 2.99 2005-07-30T06:00:35Z 2020-02-15T06:59:49Z +3203 119 1 10101 0.99 2005-07-31T20:47:29Z 2020-02-15T06:59:49Z +3204 119 1 10366 3.99 2005-08-01T06:09:37Z 2020-02-15T06:59:49Z +3205 119 2 10552 2.99 2005-08-01T12:49:44Z 2020-02-15T06:59:49Z +3206 119 1 10681 4.99 2005-08-01T17:30:35Z 2020-02-15T06:59:49Z +3207 119 2 11377 2.99 2005-08-02T18:16:47Z 2020-02-15T06:59:49Z +3208 119 1 11520 5.99 2005-08-17T00:04:28Z 2020-02-15T06:59:49Z +3209 119 2 12576 2.99 2005-08-18T15:38:31Z 2020-02-15T06:59:49Z +3210 119 2 12603 3.99 2005-08-18T16:56:20Z 2020-02-15T06:59:49Z +3211 119 2 12842 6.99 2005-08-19T01:57:21Z 2020-02-15T06:59:49Z +3212 119 1 13581 4.99 2005-08-20T05:26:15Z 2020-02-15T06:59:49Z +3213 119 2 14349 3.99 2005-08-21T08:54:53Z 2020-02-15T06:59:49Z +3214 119 2 14382 2.99 2005-08-21T10:01:03Z 2020-02-15T06:59:49Z +3215 119 2 14643 6.99 2005-08-21T19:11:58Z 2020-02-15T06:59:49Z +3216 119 2 14659 0.99 2005-08-21T19:42:36Z 2020-02-15T06:59:49Z +3217 119 1 15111 4.99 2005-08-22T12:21:43Z 2020-02-15T06:59:49Z +3218 119 2 15131 3.99 2005-08-22T13:06:26Z 2020-02-15T06:59:49Z +3219 119 2 15171 6.99 2005-08-22T15:23:59Z 2020-02-15T06:59:49Z +3220 119 1 15844 2.99 2005-08-23T15:38:12Z 2020-02-15T06:59:49Z +3221 119 2 16028 3.99 2005-08-23T21:52:56Z 2020-02-15T06:59:49Z +3222 120 2 68 7.99 2005-05-25T09:47:31Z 2020-02-15T06:59:49Z +3223 120 2 532 0.99 2005-05-28T05:36:58Z 2020-02-15T06:59:49Z +3224 120 1 1374 3.99 2005-06-15T14:49:54Z 2020-02-15T06:59:49Z +3225 120 1 1820 4.99 2005-06-16T21:34:50Z 2020-02-15T06:59:49Z +3226 120 2 1932 2.99 2005-06-17T06:54:41Z 2020-02-15T06:59:49Z +3227 120 1 2169 4.99 2005-06-17T23:57:23Z 2020-02-15T06:59:49Z +3228 120 1 2803 9.99 2005-06-19T19:18:27Z 2020-02-15T06:59:49Z +3229 120 1 3133 2.99 2005-06-20T19:18:32Z 2020-02-15T06:59:49Z +3230 120 1 4001 5.99 2005-07-07T00:07:00Z 2020-02-15T06:59:49Z +3231 120 2 4272 3.99 2005-07-07T14:39:20Z 2020-02-15T06:59:49Z +3232 120 2 4342 0.99 2005-07-07T18:47:03Z 2020-02-15T06:59:49Z +3233 120 2 4666 9.99 2005-07-08T10:05:02Z 2020-02-15T06:59:49Z +3234 120 1 4942 1.99 2005-07-08T22:42:47Z 2020-02-15T06:59:49Z +3235 120 2 5288 1.99 2005-07-09T15:13:07Z 2020-02-15T06:59:49Z +3236 120 2 6503 0.99 2005-07-12T03:18:07Z 2020-02-15T06:59:49Z +3237 120 1 6989 4.99 2005-07-27T01:00:34Z 2020-02-15T06:59:49Z +3238 120 2 8046 0.99 2005-07-28T16:49:41Z 2020-02-15T06:59:49Z +3239 120 2 8756 1.99 2005-07-29T19:18:57Z 2020-02-15T06:59:49Z +3240 120 1 8998 6.99 2005-07-30T04:54:14Z 2020-02-15T06:59:49Z +3241 120 2 9907 6.99 2005-07-31T14:39:50Z 2020-02-15T06:59:49Z +3242 120 2 10161 0.99 2005-07-31T23:09:41Z 2020-02-15T06:59:49Z +3243 120 2 10696 4.99 2005-08-01T18:18:13Z 2020-02-15T06:59:49Z +3244 120 1 10940 3.99 2005-08-02T03:08:29Z 2020-02-15T06:59:49Z +3245 120 2 11133 0.99 2005-08-02T09:15:45Z 2020-02-15T06:59:49Z +3246 120 2 13167 2.99 2005-08-19T13:36:41Z 2020-02-15T06:59:49Z +3247 120 2 13375 7.99 2005-08-19T21:31:31Z 2020-02-15T06:59:49Z +3248 120 1 14001 2.99 2005-08-20T20:07:15Z 2020-02-15T06:59:49Z +3249 120 1 14153 4.99 2005-08-21T02:24:33Z 2020-02-15T06:59:49Z +3250 120 1 14246 4.99 2005-08-21T05:34:09Z 2020-02-15T06:59:49Z +3251 120 2 14460 9.99 2005-08-21T12:48:48Z 2020-02-15T06:59:49Z +3252 120 2 14969 6.99 2005-08-22T06:49:15Z 2020-02-15T06:59:49Z +3253 120 1 15780 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3254 121 1 217 4.99 2005-05-26T09:24:26Z 2020-02-15T06:59:49Z +3255 121 1 1634 2.99 2005-06-16T08:16:05Z 2020-02-15T06:59:49Z +3256 121 1 1833 1.99 2005-06-16T22:45:03Z 2020-02-15T06:59:49Z +3257 121 2 5670 0.99 2005-07-10T08:14:52Z 2020-02-15T06:59:49Z +3258 121 2 6780 4.99 2005-07-12T16:18:12Z 2020-02-15T06:59:49Z +3259 121 2 7114 0.99 2005-07-27T05:42:13Z 2020-02-15T06:59:49Z +3260 121 1 7185 0.99 2005-07-27T08:23:54Z 2020-02-15T06:59:49Z +3261 121 2 7298 2.99 2005-07-27T12:45:14Z 2020-02-15T06:59:49Z +3262 121 1 8370 6.99 2005-07-29T05:16:21Z 2020-02-15T06:59:49Z +3263 121 2 8788 1.99 2005-07-29T20:46:44Z 2020-02-15T06:59:49Z +3264 121 2 8875 2.99 2005-07-30T00:15:09Z 2020-02-15T06:59:49Z +3265 121 2 8969 8.99 2005-07-30T04:00:19Z 2020-02-15T06:59:49Z +3266 121 2 10457 5.99 2005-08-01T09:17:34Z 2020-02-15T06:59:49Z +3267 121 2 11720 8.99 2005-08-17T07:46:54Z 2020-02-15T06:59:49Z +3268 121 2 12242 1.99 2005-08-18T03:37:31Z 2020-02-15T06:59:49Z +3269 121 2 12428 3.99 2005-08-18T10:24:21Z 2020-02-15T06:59:49Z +3270 121 2 12734 1.99 2005-08-18T22:04:52Z 2020-02-15T06:59:49Z +3271 121 1 12881 5.99 2005-08-19T03:28:13Z 2020-02-15T06:59:49Z +3272 121 2 12892 0.99 2005-08-19T03:46:34Z 2020-02-15T06:59:49Z +3273 121 1 14138 7.99 2005-08-21T01:59:37Z 2020-02-15T06:59:49Z +3274 121 1 14177 4.99 2005-08-21T03:11:33Z 2020-02-15T06:59:49Z +3275 121 2 14412 9.99 2005-08-21T11:02:09Z 2020-02-15T06:59:49Z +3276 121 1 14464 2.99 2005-08-21T12:52:54Z 2020-02-15T06:59:49Z +3277 121 2 15114 7.99 2005-08-22T12:24:55Z 2020-02-15T06:59:49Z +3278 121 1 15369 0.99 2005-08-22T21:58:06Z 2020-02-15T06:59:49Z +3279 121 1 16041 2.99 2005-08-23T22:20:26Z 2020-02-15T06:59:49Z +3280 122 2 853 0.99 2005-05-30T01:43:31Z 2020-02-15T06:59:49Z +3281 122 2 1135 4.99 2005-05-31T19:15:11Z 2020-02-15T06:59:49Z +3282 122 1 1211 0.99 2005-06-15T03:01:20Z 2020-02-15T06:59:49Z +3283 122 2 1442 7.99 2005-06-15T18:55:34Z 2020-02-15T06:59:49Z +3284 122 2 2240 3.99 2005-06-18T04:28:27Z 2020-02-15T06:59:49Z +3285 122 1 2253 0.99 2005-06-18T05:11:43Z 2020-02-15T06:59:49Z +3286 122 1 2482 4.99 2005-06-18T21:10:44Z 2020-02-15T06:59:49Z +3287 122 2 2595 4.99 2005-06-19T05:43:55Z 2020-02-15T06:59:49Z +3288 122 2 2834 1.99 2005-06-19T21:41:46Z 2020-02-15T06:59:49Z +3289 122 1 3778 2.99 2005-07-06T13:44:48Z 2020-02-15T06:59:49Z +3290 122 2 3986 4.99 2005-07-06T23:25:13Z 2020-02-15T06:59:49Z +3291 122 1 4239 7.99 2005-07-07T13:23:17Z 2020-02-15T06:59:49Z +3292 122 1 4568 4.99 2005-07-08T05:23:59Z 2020-02-15T06:59:49Z +3293 122 2 5235 6.99 2005-07-09T12:54:25Z 2020-02-15T06:59:49Z +3294 122 2 6231 0.99 2005-07-11T14:02:36Z 2020-02-15T06:59:49Z +3295 122 1 6427 0.99 2005-07-11T23:57:34Z 2020-02-15T06:59:49Z +3296 122 1 6436 0.99 2005-07-12T00:18:42Z 2020-02-15T06:59:49Z +3297 122 2 6974 7.99 2005-07-27T00:39:16Z 2020-02-15T06:59:49Z +3298 122 1 7267 2.99 2005-07-27T11:22:55Z 2020-02-15T06:59:49Z +3299 122 2 7950 4.99 2005-07-28T13:21:00Z 2020-02-15T06:59:49Z +3300 122 1 8077 2.99 2005-07-28T17:54:35Z 2020-02-15T06:59:49Z +3301 122 2 8177 0.99 2005-07-28T21:43:54Z 2020-02-15T06:59:49Z +3302 122 1 8772 5.99 2005-07-29T19:55:25Z 2020-02-15T06:59:49Z +3303 122 2 9910 4.99 2005-07-31T14:47:57Z 2020-02-15T06:59:49Z +3304 122 1 10626 1.99 2005-08-01T15:32:41Z 2020-02-15T06:59:49Z +3305 122 2 11044 3.99 2005-08-02T06:05:27Z 2020-02-15T06:59:49Z +3306 122 2 11197 2.99 2005-08-02T11:45:07Z 2020-02-15T06:59:49Z +3307 122 2 12476 4.99 2005-08-18T12:22:40Z 2020-02-15T06:59:49Z +3308 122 2 12711 4.99 2005-08-18T21:03:32Z 2020-02-15T06:59:49Z +3309 122 1 13171 2.99 2005-08-19T13:48:54Z 2020-02-15T06:59:49Z +3310 122 1 13812 4.99 2005-08-20T13:01:43Z 2020-02-15T06:59:49Z +3311 122 2 14666 5.99 2005-08-21T19:51:09Z 2020-02-15T06:59:49Z +3312 123 1 992 2.99 2005-05-30T23:47:56Z 2020-02-15T06:59:49Z +3313 123 2 1490 4.99 2005-06-15T21:42:17Z 2020-02-15T06:59:49Z +3314 123 1 1751 0.99 2005-06-16T17:00:14Z 2020-02-15T06:59:49Z +3315 123 2 1775 4.99 2005-06-16T18:28:19Z 2020-02-15T06:59:49Z +3316 123 2 1951 0.99 2005-06-17T08:30:35Z 2020-02-15T06:59:49Z +3317 123 1 2594 2.99 2005-06-19T05:43:43Z 2020-02-15T06:59:49Z +3318 123 1 4442 3.99 2005-07-07T23:05:30Z 2020-02-15T06:59:49Z +3319 123 1 4860 8.99 2005-07-08T18:54:07Z 2020-02-15T06:59:49Z +3320 123 2 7535 4.99 2005-07-27T21:32:39Z 2020-02-15T06:59:49Z +3321 123 1 7727 2.99 2005-07-28T04:52:43Z 2020-02-15T06:59:49Z +3322 123 2 7768 0.99 2005-07-28T06:44:03Z 2020-02-15T06:59:49Z +3323 123 1 7852 2.99 2005-07-28T09:34:29Z 2020-02-15T06:59:49Z +3324 123 1 7969 5.99 2005-07-28T13:57:37Z 2020-02-15T06:59:49Z +3325 123 2 8699 4.99 2005-07-29T16:53:00Z 2020-02-15T06:59:49Z +3326 123 2 9529 4.99 2005-07-31T01:05:26Z 2020-02-15T06:59:49Z +3327 123 1 10066 4.99 2005-07-31T19:30:01Z 2020-02-15T06:59:49Z +3328 123 2 10295 8.99 2005-08-01T03:53:49Z 2020-02-15T06:59:49Z +3329 123 1 12360 2.99 2005-08-18T07:46:35Z 2020-02-15T06:59:49Z +3330 123 1 12402 3.99 2005-08-18T09:27:34Z 2020-02-15T06:59:49Z +3331 123 1 13668 2.99 2005-08-20T08:26:06Z 2020-02-15T06:59:49Z +3332 123 2 15152 7.99 2005-08-22T14:25:21Z 2020-02-15T06:59:49Z +3333 123 2 15525 4.99 2005-08-23T03:43:32Z 2020-02-15T06:59:49Z +3334 123 1 15621 1.99 2005-08-23T07:13:43Z 2020-02-15T06:59:49Z +3335 123 2 15787 2.99 2005-08-23T13:51:57Z 2020-02-15T06:59:49Z +3336 124 1 775 0.99 2005-05-29T13:23:26Z 2020-02-15T06:59:49Z +3337 124 2 1039 4.99 2005-05-31T05:32:29Z 2020-02-15T06:59:49Z +3338 124 2 1057 3.99 2005-05-31T07:58:06Z 2020-02-15T06:59:49Z +3339 124 2 1130 5.99 2005-05-31T18:13:57Z 2020-02-15T06:59:49Z +3340 124 2 2336 1.99 2005-06-18T11:00:05Z 2020-02-15T06:59:49Z +3341 124 1 4341 7.99 2005-07-07T18:44:23Z 2020-02-15T06:59:49Z +3342 124 2 4709 2.99 2005-07-08T12:04:34Z 2020-02-15T06:59:49Z +3343 124 1 5566 2.99 2005-07-10T03:30:17Z 2020-02-15T06:59:49Z +3344 124 1 6411 2.99 2005-07-11T23:10:50Z 2020-02-15T06:59:49Z +3345 124 1 7519 6.99 2005-07-27T21:01:41Z 2020-02-15T06:59:49Z +3346 124 2 7700 8.99 2005-07-28T03:54:14Z 2020-02-15T06:59:49Z +3347 124 2 8524 0.99 2005-07-29T10:20:07Z 2020-02-15T06:59:49Z +3348 124 1 9986 3.99 2005-07-31T17:16:50Z 2020-02-15T06:59:49Z +3349 124 2 11493 5.99 2005-08-02T22:47:00Z 2020-02-15T06:59:49Z +3350 124 1 12835 4.99 2005-08-19T01:47:45Z 2020-02-15T06:59:49Z +3351 124 2 14737 0.99 2005-08-21T22:27:11Z 2020-02-15T06:59:49Z +3352 124 2 15266 4.99 2005-08-22T18:37:24Z 2020-02-15T06:59:49Z +3353 124 2 16023 0.99 2005-08-23T21:45:02Z 2020-02-15T06:59:49Z +3354 125 2 185 3.99 2005-05-26T05:30:03Z 2020-02-15T06:59:49Z +3355 125 1 1481 2.99 2005-06-15T21:17:58Z 2020-02-15T06:59:49Z +3356 125 1 2355 3.99 2005-06-18T12:57:06Z 2020-02-15T06:59:49Z +3357 125 1 2826 7.99 2005-06-19T20:41:35Z 2020-02-15T06:59:49Z +3358 125 1 3118 4.99 2005-06-20T18:05:57Z 2020-02-15T06:59:49Z +3359 125 1 3617 4.99 2005-07-06T05:58:06Z 2020-02-15T06:59:49Z +3360 125 1 5200 2.99 2005-07-09T10:52:09Z 2020-02-15T06:59:49Z +3361 125 2 5523 7.99 2005-07-10T01:47:55Z 2020-02-15T06:59:49Z +3362 125 1 6055 0.99 2005-07-11T03:59:08Z 2020-02-15T06:59:49Z +3363 125 2 6268 6.99 2005-07-11T15:55:34Z 2020-02-15T06:59:49Z +3364 125 1 7323 4.99 2005-07-27T13:39:40Z 2020-02-15T06:59:49Z +3365 125 2 7879 0.99 2005-07-28T10:27:46Z 2020-02-15T06:59:49Z +3366 125 2 7922 0.99 2005-07-28T12:05:25Z 2020-02-15T06:59:49Z +3367 125 2 8375 2.99 2005-07-29T05:25:30Z 2020-02-15T06:59:49Z +3368 125 1 8433 2.99 2005-07-29T07:19:16Z 2020-02-15T06:59:49Z +3369 125 1 8832 4.99 2005-07-29T22:37:49Z 2020-02-15T06:59:49Z +3370 125 1 9129 9.99 2005-07-30T09:51:21Z 2020-02-15T06:59:49Z +3371 125 1 9496 4.99 2005-07-30T23:55:20Z 2020-02-15T06:59:49Z +3372 125 2 9504 0.99 2005-07-31T00:09:07Z 2020-02-15T06:59:49Z +3373 125 1 9722 4.99 2005-07-31T08:29:48Z 2020-02-15T06:59:49Z +3374 125 2 9734 2.99 2005-07-31T08:57:45Z 2020-02-15T06:59:49Z +3375 125 1 10583 2.99 2005-08-01T13:54:35Z 2020-02-15T06:59:49Z +3376 125 1 10699 2.99 2005-08-01T18:24:51Z 2020-02-15T06:59:49Z +3377 125 2 11279 7.99 2005-08-02T14:30:03Z 2020-02-15T06:59:49Z +3378 125 1 11806 4.99 2005-08-17T11:49:28Z 2020-02-15T06:59:49Z +3379 125 1 11832 4.99 2005-08-17T12:55:31Z 2020-02-15T06:59:49Z +3380 125 1 11999 0.99 2005-08-17T18:47:07Z 2020-02-15T06:59:49Z +3381 125 1 12075 4.99 2005-08-17T21:54:55Z 2020-02-15T06:59:49Z +3382 125 2 12262 2.99 2005-08-18T04:16:15Z 2020-02-15T06:59:49Z +3383 125 2 13441 6.99 2005-08-19T23:48:23Z 2020-02-15T06:59:49Z +3384 125 2 14456 2.99 2005-08-21T12:38:09Z 2020-02-15T06:59:49Z +3385 125 1 15055 2.99 2005-08-22T10:14:39Z 2020-02-15T06:59:49Z +3386 126 1 9 4.99 2005-05-25T00:00:40Z 2020-02-15T06:59:49Z +3387 126 1 752 4.99 2005-05-29T10:14:15Z 2020-02-15T06:59:49Z +3388 126 2 1054 4.99 2005-05-31T07:33:25Z 2020-02-15T06:59:49Z +3389 126 1 3450 2.99 2005-06-21T21:01:57Z 2020-02-15T06:59:49Z +3390 126 2 3502 5.99 2005-07-06T00:15:06Z 2020-02-15T06:59:49Z +3391 126 1 3725 4.99 2005-07-06T11:15:04Z 2020-02-15T06:59:49Z +3392 126 1 3804 7.99 2005-07-06T15:08:08Z 2020-02-15T06:59:49Z +3393 126 1 4691 0.99 2005-07-08T11:04:53Z 2020-02-15T06:59:49Z +3394 126 2 4730 2.99 2005-07-08T12:59:49Z 2020-02-15T06:59:49Z +3395 126 2 5137 0.99 2005-07-09T08:00:34Z 2020-02-15T06:59:49Z +3396 126 1 5865 0.99 2005-07-10T18:31:05Z 2020-02-15T06:59:49Z +3397 126 1 6747 0.99 2005-07-12T14:33:21Z 2020-02-15T06:59:49Z +3398 126 2 6755 6.99 2005-07-12T15:07:49Z 2020-02-15T06:59:49Z +3399 126 1 7962 0.99 2005-07-28T13:48:09Z 2020-02-15T06:59:49Z +3400 126 1 8091 2.99 2005-07-28T18:27:29Z 2020-02-15T06:59:49Z +3401 126 1 9492 6.99 2005-07-30T23:52:21Z 2020-02-15T06:59:49Z +3402 126 2 10032 4.99 2005-07-31T18:41:55Z 2020-02-15T06:59:49Z +3403 126 1 11196 9.99 2005-08-02T11:42:40Z 2020-02-15T06:59:49Z +3404 126 2 11613 4.99 2005-08-17T03:50:33Z 2020-02-15T06:59:49Z +3405 126 1 11779 3.99 2005-08-17T10:31:58Z 2020-02-15T06:59:49Z +3406 126 1 11801 0.99 2005-08-17T11:30:11Z 2020-02-15T06:59:49Z +3407 126 2 12991 2.99 2005-08-19T07:21:24Z 2020-02-15T06:59:49Z +3408 126 2 13015 7.99 2005-08-19T07:56:51Z 2020-02-15T06:59:49Z +3409 126 2 13177 0.99 2005-08-19T13:56:58Z 2020-02-15T06:59:49Z +3410 126 2 14477 2.99 2005-08-21T13:32:38Z 2020-02-15T06:59:49Z +3411 126 2 14577 2.99 2005-08-21T16:52:29Z 2020-02-15T06:59:49Z +3412 126 2 15741 4.99 2005-08-23T12:10:54Z 2020-02-15T06:59:49Z +3413 126 1 16007 7.99 2005-08-23T21:02:43Z 2020-02-15T06:59:49Z +3414 127 1 452 0.99 2005-05-27T19:30:33Z 2020-02-15T06:59:49Z +3415 127 1 708 0.99 2005-05-29T03:23:47Z 2020-02-15T06:59:49Z +3416 127 1 1293 4.99 2005-06-15T09:06:24Z 2020-02-15T06:59:49Z +3417 127 2 1803 2.99 2005-06-16T20:32:47Z 2020-02-15T06:59:49Z +3418 127 2 2412 3.99 2005-06-18T16:58:58Z 2020-02-15T06:59:49Z +3419 127 1 4652 5.99 2005-07-08T09:47:51Z 2020-02-15T06:59:49Z +3420 127 2 4811 5.99 2005-07-08T17:04:24Z 2020-02-15T06:59:49Z +3421 127 2 5499 2.99 2005-07-10T00:27:45Z 2020-02-15T06:59:49Z +3422 127 2 5983 2.99 2005-07-11T00:34:11Z 2020-02-15T06:59:49Z +3423 127 1 7912 4.99 2005-07-28T11:46:58Z 2020-02-15T06:59:49Z +3424 127 2 8209 6.99 2005-07-28T23:29:28Z 2020-02-15T06:59:49Z +3425 127 1 9859 6.99 2005-07-31T13:02:55Z 2020-02-15T06:59:49Z +3426 127 1 10197 2.99 2005-08-01T00:35:25Z 2020-02-15T06:59:49Z +3427 127 1 10787 10.99 2005-08-01T21:35:01Z 2020-02-15T06:59:49Z +3428 127 1 10973 7.99 2005-08-02T04:09:42Z 2020-02-15T06:59:49Z +3429 127 1 11235 0.99 2005-08-02T13:13:21Z 2020-02-15T06:59:49Z +3430 127 2 12060 4.99 2005-08-17T21:11:57Z 2020-02-15T06:59:49Z +3431 127 2 12820 2.99 2005-08-19T01:05:08Z 2020-02-15T06:59:49Z +3432 127 2 13043 4.99 2005-08-19T09:07:13Z 2020-02-15T06:59:49Z +3433 127 1 13091 2.99 2005-08-19T10:40:10Z 2020-02-15T06:59:49Z +3434 127 2 14030 2.99 2005-08-20T21:23:54Z 2020-02-15T06:59:49Z +3435 127 1 14189 2.99 2005-08-21T03:32:17Z 2020-02-15T06:59:49Z +3436 127 1 15463 5.99 2005-08-23T01:15:07Z 2020-02-15T06:59:49Z +3437 127 2 15736 5.99 2005-08-23T11:40:30Z 2020-02-15T06:59:49Z +3438 128 2 888 5.99 2005-05-30T07:13:14Z 2020-02-15T06:59:49Z +3439 128 2 1131 2.99 2005-05-31T18:44:19Z 2020-02-15T06:59:49Z +3440 128 2 2519 7.99 2005-06-19T00:19:21Z 2020-02-15T06:59:49Z +3441 128 1 2565 0.99 2005-06-19T03:44:03Z 2020-02-15T06:59:49Z +3442 128 1 3751 0.99 2005-07-06T12:23:41Z 2020-02-15T06:59:49Z +3443 128 2 3995 5.99 2005-07-06T23:43:03Z 2020-02-15T06:59:49Z +3444 128 1 5270 2.99 2005-07-09T14:23:46Z 2020-02-15T06:59:49Z +3445 128 1 5647 4.99 2005-07-10T07:08:40Z 2020-02-15T06:59:49Z +3446 128 2 5997 4.99 2005-07-11T01:19:50Z 2020-02-15T06:59:49Z +3447 128 2 6186 2.99 2005-07-11T11:26:41Z 2020-02-15T06:59:49Z +3448 128 2 6481 6.99 2005-07-12T01:50:15Z 2020-02-15T06:59:49Z +3449 128 2 6687 2.99 2005-07-12T12:19:23Z 2020-02-15T06:59:49Z +3450 128 2 7582 4.99 2005-07-27T23:15:14Z 2020-02-15T06:59:49Z +3451 128 2 8415 2.99 2005-07-29T06:52:27Z 2020-02-15T06:59:49Z +3452 128 2 9215 5.99 2005-07-30T13:11:11Z 2020-02-15T06:59:49Z +3453 128 2 9234 2.99 2005-07-30T13:45:54Z 2020-02-15T06:59:49Z +3454 128 1 9433 5.99 2005-07-30T21:28:17Z 2020-02-15T06:59:49Z +3455 128 2 9858 2.99 2005-07-31T13:02:07Z 2020-02-15T06:59:49Z +3456 128 1 9952 3.99 2005-07-31T15:52:37Z 2020-02-15T06:59:49Z +3457 128 1 10011 2.99 2005-07-31T18:02:41Z 2020-02-15T06:59:49Z +3458 128 1 10394 2.99 2005-08-01T06:58:17Z 2020-02-15T06:59:49Z +3459 128 2 12731 2.99 2005-08-18T21:55:38Z 2020-02-15T06:59:49Z +3460 128 2 12843 2.99 2005-08-19T01:58:54Z 2020-02-15T06:59:49Z +3461 128 2 12910 0.99 2005-08-19T04:23:13Z 2020-02-15T06:59:49Z +3462 128 2 13027 0.99 2005-08-19T08:25:16Z 2020-02-15T06:59:49Z +3463 128 2 13181 5.99 2005-08-19T14:00:56Z 2020-02-15T06:59:49Z +3464 128 1 13509 0.99 2005-08-20T02:14:16Z 2020-02-15T06:59:49Z +3465 128 2 13964 2.99 2005-08-20T18:24:26Z 2020-02-15T06:59:49Z +3466 128 2 14157 0.99 2005-08-21T02:43:15Z 2020-02-15T06:59:49Z +3467 128 1 14925 8.99 2005-08-22T05:16:16Z 2020-02-15T06:59:49Z +3468 128 1 15220 3.99 2005-08-22T17:02:23Z 2020-02-15T06:59:49Z +3469 128 1 15835 8.99 2005-08-23T15:25:27Z 2020-02-15T06:59:49Z +3470 129 2 1732 0.99 2005-06-16T15:34:41Z 2020-02-15T06:59:49Z +3471 129 1 2727 3.99 2005-06-19T15:02:39Z 2020-02-15T06:59:49Z +3472 129 2 2768 0.99 2005-06-19T17:46:52Z 2020-02-15T06:59:49Z +3473 129 2 2795 4.99 2005-06-19T18:58:53Z 2020-02-15T06:59:49Z +3474 129 1 3183 4.99 2005-06-20T22:55:55Z 2020-02-15T06:59:49Z +3475 129 1 3219 3.99 2005-06-21T01:43:26Z 2020-02-15T06:59:49Z +3476 129 1 3689 0.99 2005-07-06T09:43:01Z 2020-02-15T06:59:49Z +3477 129 2 3900 4.99 2005-07-06T19:21:28Z 2020-02-15T06:59:49Z +3478 129 2 3936 0.99 2005-07-06T21:15:03Z 2020-02-15T06:59:49Z +3479 129 2 4256 2.99 2005-07-07T14:14:36Z 2020-02-15T06:59:49Z +3480 129 1 4602 0.99 2005-07-08T06:52:40Z 2020-02-15T06:59:49Z +3481 129 1 4896 2.99 2005-07-08T20:23:15Z 2020-02-15T06:59:49Z +3482 129 1 4996 0.99 2005-07-09T00:59:46Z 2020-02-15T06:59:49Z +3483 129 1 5127 0.99 2005-07-09T07:25:47Z 2020-02-15T06:59:49Z +3484 129 2 5350 4.99 2005-07-09T17:39:30Z 2020-02-15T06:59:49Z +3485 129 1 8339 4.99 2005-07-29T04:41:13Z 2020-02-15T06:59:49Z +3486 129 1 8345 2.99 2005-07-29T04:47:37Z 2020-02-15T06:59:49Z +3487 129 2 9823 4.99 2005-07-31T11:49:00Z 2020-02-15T06:59:49Z +3488 129 1 9983 7.99 2005-07-31T17:09:36Z 2020-02-15T06:59:49Z +3489 129 1 10024 7.99 2005-07-31T18:26:36Z 2020-02-15T06:59:49Z +3490 129 2 10167 5.99 2005-07-31T23:24:31Z 2020-02-15T06:59:49Z +3491 129 2 10395 2.99 2005-08-01T07:08:22Z 2020-02-15T06:59:49Z +3492 129 1 10468 0.99 2005-08-01T09:48:29Z 2020-02-15T06:59:49Z +3493 129 1 10483 2.99 2005-08-01T10:19:45Z 2020-02-15T06:59:49Z +3494 129 2 10550 2.99 2005-08-01T12:46:52Z 2020-02-15T06:59:49Z +3495 129 2 10816 4.99 2005-08-01T22:48:57Z 2020-02-15T06:59:49Z +3496 129 2 12612 3.99 2005-08-18T17:10:05Z 2020-02-15T06:59:49Z +3497 129 2 12728 4.99 2005-08-18T21:47:48Z 2020-02-15T06:59:49Z +3498 129 2 13653 10.99 2005-08-20T07:54:54Z 2020-02-15T06:59:49Z +3499 129 1 13915 4.99 2005-08-20T16:42:53Z 2020-02-15T06:59:49Z +3500 129 1 13919 4.99 2005-08-20T16:47:34Z 2020-02-15T06:59:49Z +3501 129 1 13961 0.99 2005-08-20T18:16:34Z 2020-02-15T06:59:49Z +3502 129 1 14353 0.99 2005-08-21T09:07:50Z 2020-02-15T06:59:49Z +3503 129 2 14968 1.99 2005-08-22T06:46:59Z 2020-02-15T06:59:49Z +3504 130 1 1 2.99 2005-05-24T22:53:30Z 2020-02-15T06:59:49Z +3505 130 1 746 2.99 2005-05-29T09:25:10Z 2020-02-15T06:59:49Z +3506 130 1 1630 2.99 2005-06-16T07:55:01Z 2020-02-15T06:59:49Z +3507 130 2 1864 2.99 2005-06-17T01:39:47Z 2020-02-15T06:59:49Z +3508 130 2 2163 2.99 2005-06-17T23:46:16Z 2020-02-15T06:59:49Z +3509 130 2 2292 2.99 2005-06-18T07:37:48Z 2020-02-15T06:59:49Z +3510 130 1 2535 2.99 2005-06-19T01:39:04Z 2020-02-15T06:59:49Z +3511 130 1 2982 6.99 2005-06-20T08:38:29Z 2020-02-15T06:59:49Z +3512 130 2 4339 4.99 2005-07-07T18:41:42Z 2020-02-15T06:59:49Z +3513 130 2 4485 4.99 2005-07-08T01:07:54Z 2020-02-15T06:59:49Z +3514 130 1 6353 3.99 2005-07-11T20:48:56Z 2020-02-15T06:59:49Z +3515 130 1 7181 4.99 2005-07-27T08:14:34Z 2020-02-15T06:59:49Z +3516 130 1 7728 0.99 2005-07-28T04:56:33Z 2020-02-15T06:59:49Z +3517 130 1 9452 0.99 2005-07-30T22:19:16Z 2020-02-15T06:59:49Z +3518 130 2 9637 4.99 2005-07-31T05:18:54Z 2020-02-15T06:59:49Z +3519 130 2 9724 5.99 2005-07-31T08:33:08Z 2020-02-15T06:59:49Z +3520 130 2 10568 2.99 2005-08-01T13:17:28Z 2020-02-15T06:59:49Z +3521 130 2 10645 5.99 2005-08-01T15:52:01Z 2020-02-15T06:59:49Z +3522 130 1 11811 2.99 2005-08-17T11:59:18Z 2020-02-15T06:59:49Z +3523 130 1 12094 2.99 2005-08-17T22:31:04Z 2020-02-15T06:59:49Z +3524 130 1 12777 6.99 2005-08-18T23:39:22Z 2020-02-15T06:59:49Z +3525 130 2 14111 0.99 2005-08-21T00:59:01Z 2020-02-15T06:59:49Z +3526 130 2 15574 5.99 2005-08-23T05:29:32Z 2020-02-15T06:59:49Z +3527 130 1 15777 4.99 2005-08-23T13:29:08Z 2020-02-15T06:59:49Z +3528 131 2 55 2.99 2005-05-25T08:26:13Z 2020-02-15T06:59:49Z +3529 131 1 83 4.99 2005-05-25T12:30:15Z 2020-02-15T06:59:49Z +3530 131 2 944 7.99 2005-05-30T15:26:24Z 2020-02-15T06:59:49Z +3531 131 1 1646 9.99 2005-06-16T09:12:53Z 2020-02-15T06:59:49Z +3532 131 2 1768 4.99 2005-06-16T18:02:06Z 2020-02-15T06:59:49Z +3533 131 1 3515 2.99 2005-07-06T00:48:55Z 2020-02-15T06:59:49Z +3534 131 1 5233 4.99 2005-07-09T12:44:26Z 2020-02-15T06:59:49Z +3535 131 1 5395 4.99 2005-07-09T19:42:37Z 2020-02-15T06:59:49Z +3536 131 1 5610 2.99 2005-07-10T05:09:52Z 2020-02-15T06:59:49Z +3537 131 2 5726 2.99 2005-07-10T11:22:08Z 2020-02-15T06:59:49Z +3538 131 1 5874 3.99 2005-07-10T19:02:51Z 2020-02-15T06:59:49Z +3539 131 1 7557 2.99 2005-07-27T22:18:19Z 2020-02-15T06:59:49Z +3540 131 2 8071 0.99 2005-07-28T17:27:48Z 2020-02-15T06:59:49Z +3541 131 1 8267 6.99 2005-07-29T01:21:02Z 2020-02-15T06:59:49Z +3542 131 1 8570 8.99 2005-07-29T11:40:08Z 2020-02-15T06:59:49Z +3543 131 1 9323 3.99 2005-07-30T17:21:44Z 2020-02-15T06:59:49Z +3544 131 1 10179 2.99 2005-07-31T23:49:54Z 2020-02-15T06:59:49Z +3545 131 1 10459 4.99 2005-08-01T09:20:09Z 2020-02-15T06:59:49Z +3546 131 1 10861 1.99 2005-08-02T00:12:46Z 2020-02-15T06:59:49Z +3547 131 2 11971 0.99 2005-08-17T17:53:42Z 2020-02-15T06:59:49Z +3548 131 1 11973 2.99 2005-08-17T17:55:58Z 2020-02-15T06:59:49Z +3549 131 1 12216 0.99 2005-08-18T02:37:07Z 2020-02-15T06:59:49Z +3550 131 2 12263 0.99 2005-08-18T04:16:18Z 2020-02-15T06:59:49Z +3551 131 1 12372 9.99 2005-08-18T08:04:35Z 2020-02-15T06:59:49Z +3552 131 2 13050 6.99 2005-08-19T09:31:23Z 2020-02-15T06:59:49Z +3553 131 2 13346 7.99 2005-08-19T20:28:21Z 2020-02-15T06:59:49Z +3554 131 2 13353 2.99 2005-08-19T20:53:43Z 2020-02-15T06:59:49Z +3555 131 1 13407 0.99 2005-08-19T22:26:26Z 2020-02-15T06:59:49Z +3556 131 2 15659 2.99 2005-08-23T08:48:43Z 2020-02-15T06:59:49Z +3557 131 1 16042 2.99 2005-08-23T22:20:40Z 2020-02-15T06:59:49Z +3558 132 1 1843 0.99 2005-06-16T23:53:42Z 2020-02-15T06:59:49Z +3559 132 1 2208 4.99 2005-06-18T02:22:07Z 2020-02-15T06:59:49Z +3560 132 1 2384 0.99 2005-06-18T15:18:49Z 2020-02-15T06:59:49Z +3561 132 2 2608 2.99 2005-06-19T07:10:36Z 2020-02-15T06:59:49Z +3562 132 2 2924 4.99 2005-06-20T04:20:14Z 2020-02-15T06:59:49Z +3563 132 1 3121 4.99 2005-06-20T18:23:30Z 2020-02-15T06:59:49Z +3564 132 1 3706 0.99 2005-07-06T10:18:01Z 2020-02-15T06:59:49Z +3565 132 2 3825 2.99 2005-07-06T15:50:03Z 2020-02-15T06:59:49Z +3566 132 1 4168 4.99 2005-07-07T09:37:24Z 2020-02-15T06:59:49Z +3567 132 1 4534 4.99 2005-07-08T03:36:55Z 2020-02-15T06:59:49Z +3568 132 1 4557 5.99 2005-07-08T04:49:15Z 2020-02-15T06:59:49Z +3569 132 2 4903 0.99 2005-07-08T20:50:05Z 2020-02-15T06:59:49Z +3570 132 1 5391 2.99 2005-07-09T19:28:34Z 2020-02-15T06:59:49Z +3571 132 2 5684 5.99 2005-07-10T08:59:03Z 2020-02-15T06:59:49Z +3572 132 1 5703 0.99 2005-07-10T10:04:15Z 2020-02-15T06:59:49Z +3573 132 2 5715 1.99 2005-07-10T10:48:03Z 2020-02-15T06:59:49Z +3574 132 1 6239 6.99 2005-07-11T14:20:48Z 2020-02-15T06:59:49Z +3575 132 1 6978 1.99 2005-07-27T00:47:40Z 2020-02-15T06:59:49Z +3576 132 2 7432 0.99 2005-07-27T17:31:40Z 2020-02-15T06:59:49Z +3577 132 1 7631 1.99 2005-07-28T01:01:15Z 2020-02-15T06:59:49Z +3578 132 2 10243 4.99 2005-08-01T02:18:46Z 2020-02-15T06:59:49Z +3579 132 1 10400 6.99 2005-08-01T07:18:24Z 2020-02-15T06:59:49Z +3580 132 2 10619 3.99 2005-08-01T15:07:04Z 2020-02-15T06:59:49Z +3581 132 1 10638 6.99 2005-08-01T15:44:20Z 2020-02-15T06:59:49Z +3582 132 2 11140 0.99 2005-08-02T09:27:45Z 2020-02-15T06:59:49Z +3583 132 2 11812 0.99 2005-08-17T12:00:54Z 2020-02-15T06:59:49Z +3584 132 2 12133 0.99 2005-08-17T23:47:16Z 2020-02-15T06:59:49Z +3585 132 1 15874 4.99 2005-08-23T16:30:55Z 2020-02-15T06:59:49Z +3586 133 1 275 6.99 2005-05-26T17:09:53Z 2020-02-15T06:59:49Z +3587 133 2 447 2.99 2005-05-27T18:57:02Z 2020-02-15T06:59:49Z +3588 133 2 1522 3.99 2005-06-16T00:17:39Z 2020-02-15T06:59:49Z +3589 133 2 2665 7.99 2005-06-19T11:12:35Z 2020-02-15T06:59:49Z +3590 133 1 3006 0.99 2005-06-20T10:10:29Z 2020-02-15T06:59:49Z +3591 133 2 3365 0.99 2005-06-21T12:55:48Z 2020-02-15T06:59:49Z +3592 133 2 4506 6.99 2005-07-08T02:22:18Z 2020-02-15T06:59:49Z +3593 133 2 4566 2.99 2005-07-08T05:18:50Z 2020-02-15T06:59:49Z +3594 133 1 4681 6.99 2005-07-08T10:36:03Z 2020-02-15T06:59:49Z +3595 133 2 4829 2.99 2005-07-08T17:54:18Z 2020-02-15T06:59:49Z +3596 133 2 5063 2.99 2005-07-09T04:37:31Z 2020-02-15T06:59:49Z +3597 133 1 6157 4.99 2005-07-11T09:48:16Z 2020-02-15T06:59:49Z +3598 133 1 6609 3.99 2005-07-12T08:19:41Z 2020-02-15T06:59:49Z +3599 133 1 7177 2.99 2005-07-27T08:07:39Z 2020-02-15T06:59:49Z +3600 133 1 7400 0.99 2005-07-27T16:16:37Z 2020-02-15T06:59:49Z +3601 133 2 8389 6.99 2005-07-29T05:50:09Z 2020-02-15T06:59:49Z +3602 133 2 9139 2.99 2005-07-30T10:11:52Z 2020-02-15T06:59:49Z +3603 133 1 9175 0.99 2005-07-30T11:47:48Z 2020-02-15T06:59:49Z +3604 133 2 9671 0.99 2005-07-31T06:33:41Z 2020-02-15T06:59:49Z +3605 133 1 10665 0.99 2005-08-01T16:56:17Z 2020-02-15T06:59:49Z +3606 133 1 12419 4.99 2005-08-18T10:01:48Z 2020-02-15T06:59:49Z +3607 133 1 12834 4.99 2005-08-19T01:47:30Z 2020-02-15T06:59:49Z +3608 133 2 13323 2.99 2005-08-19T19:48:07Z 2020-02-15T06:59:49Z +3609 133 1 13455 1.99 2005-08-20T00:32:17Z 2020-02-15T06:59:49Z +3610 133 2 13910 2.99 2005-08-20T16:30:49Z 2020-02-15T06:59:49Z +3611 133 2 15080 0.99 2005-08-22T11:11:51Z 2020-02-15T06:59:49Z +3612 133 1 16009 6.99 2005-08-23T21:07:59Z 2020-02-15T06:59:49Z +3613 134 1 366 3.99 2005-05-27T07:33:54Z 2020-02-15T06:59:49Z +3614 134 2 798 0.99 2005-05-29T17:23:43Z 2020-02-15T06:59:49Z +3615 134 1 814 6.99 2005-05-29T20:16:12Z 2020-02-15T06:59:49Z +3616 134 2 1124 4.99 2005-05-31T16:49:34Z 2020-02-15T06:59:49Z +3617 134 1 1618 9.99 2005-06-16T07:08:38Z 2020-02-15T06:59:49Z +3618 134 2 1784 0.99 2005-06-16T19:25:32Z 2020-02-15T06:59:49Z +3619 134 2 1881 0.99 2005-06-17T03:09:56Z 2020-02-15T06:59:49Z +3620 134 1 3267 5.99 2005-06-21T04:55:21Z 2020-02-15T06:59:49Z +3621 134 1 5315 4.99 2005-07-09T16:09:19Z 2020-02-15T06:59:49Z +3622 134 2 6226 2.99 2005-07-11T13:48:11Z 2020-02-15T06:59:49Z +3623 134 1 6659 0.99 2005-07-12T11:18:05Z 2020-02-15T06:59:49Z +3624 134 2 7516 2.99 2005-07-27T20:55:28Z 2020-02-15T06:59:49Z +3625 134 2 7965 4.99 2005-07-28T13:52:57Z 2020-02-15T06:59:49Z +3626 134 2 8650 1.99 2005-07-29T14:59:04Z 2020-02-15T06:59:49Z +3627 134 1 10864 6.99 2005-08-02T00:18:59Z 2020-02-15T06:59:49Z +3628 134 1 11280 3.99 2005-08-02T14:34:33Z 2020-02-15T06:59:49Z +3629 134 1 11283 4.99 2005-08-02T14:39:46Z 2020-02-15T06:59:49Z +3630 134 2 11482 4.99 2005-08-02T22:24:31Z 2020-02-15T06:59:49Z +3631 134 1 12754 7.99 2005-08-18T22:37:41Z 2020-02-15T06:59:49Z +3632 134 2 12987 2.99 2005-08-19T07:11:44Z 2020-02-15T06:59:49Z +3633 134 2 13006 2.99 2005-08-19T07:47:16Z 2020-02-15T06:59:49Z +3634 134 2 14265 2.99 2005-08-21T06:20:14Z 2020-02-15T06:59:49Z +3635 134 2 15963 2.99 2005-08-23T19:42:46Z 2020-02-15T06:59:49Z +3636 135 1 78 5.99 2005-05-25T11:35:18Z 2020-02-15T06:59:49Z +3637 135 2 753 3.99 2005-05-29T10:16:42Z 2020-02-15T06:59:49Z +3638 135 2 1272 0.99 2005-06-15T07:42:58Z 2020-02-15T06:59:49Z +3639 135 2 1671 1.99 2005-06-16T10:30:22Z 2020-02-15T06:59:49Z +3640 135 2 2941 2.99 2005-06-20T05:22:18Z 2020-02-15T06:59:49Z +3641 135 1 4102 0.99 2005-07-07T06:25:19Z 2020-02-15T06:59:49Z +3642 135 2 5054 7.99 2005-07-09T04:01:02Z 2020-02-15T06:59:49Z +3643 135 1 5541 0.99 2005-07-10T02:44:27Z 2020-02-15T06:59:49Z +3644 135 1 6117 3.99 2005-07-11T07:39:38Z 2020-02-15T06:59:49Z +3645 135 1 6461 3.99 2005-07-12T01:14:03Z 2020-02-15T06:59:49Z +3646 135 1 6817 3.99 2005-07-12T18:19:57Z 2020-02-15T06:59:49Z +3647 135 2 7297 4.99 2005-07-27T12:39:48Z 2020-02-15T06:59:49Z +3648 135 1 7437 0.99 2005-07-27T17:39:18Z 2020-02-15T06:59:49Z +3649 135 1 7554 7.99 2005-07-27T22:12:41Z 2020-02-15T06:59:49Z +3650 135 1 7734 0.99 2005-07-28T05:08:44Z 2020-02-15T06:59:49Z +3651 135 1 8315 0.99 2005-07-29T03:37:07Z 2020-02-15T06:59:49Z +3652 135 2 8885 7.99 2005-07-30T00:36:26Z 2020-02-15T06:59:49Z +3653 135 1 8987 6.99 2005-07-30T04:37:36Z 2020-02-15T06:59:49Z +3654 135 2 10091 4.99 2005-07-31T20:23:13Z 2020-02-15T06:59:49Z +3655 135 2 10471 0.99 2005-08-01T09:52:37Z 2020-02-15T06:59:49Z +3656 135 1 10611 2.99 2005-08-01T14:53:52Z 2020-02-15T06:59:49Z +3657 135 1 10698 3.99 2005-08-01T18:24:41Z 2020-02-15T06:59:49Z +3658 135 2 11194 5.99 2005-08-02T11:35:53Z 2020-02-15T06:59:49Z +3659 135 1 11704 7.99 2005-08-17T07:21:22Z 2020-02-15T06:59:49Z +3660 135 1 12249 2.99 2005-08-18T03:53:34Z 2020-02-15T06:59:49Z +3661 135 1 13035 0.99 2005-08-19T08:46:45Z 2020-02-15T06:59:49Z +3662 135 1 14005 0.99 2005-08-20T20:19:05Z 2020-02-15T06:59:49Z +3663 135 2 14136 5.99 2005-08-21T01:57:26Z 2020-02-15T06:59:49Z +3664 135 2 15908 2.99 2005-08-23T17:42:00Z 2020-02-15T06:59:49Z +3665 135 1 13390 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3666 136 2 1150 2.99 2005-05-31T21:20:09Z 2020-02-15T06:59:49Z +3667 136 2 2104 2.99 2005-06-17T19:14:30Z 2020-02-15T06:59:49Z +3668 136 1 4927 0.99 2005-07-08T22:05:35Z 2020-02-15T06:59:49Z +3669 136 1 5627 3.99 2005-07-10T05:51:12Z 2020-02-15T06:59:49Z +3670 136 2 6142 3.99 2005-07-11T08:54:09Z 2020-02-15T06:59:49Z +3671 136 1 6585 8.99 2005-07-12T06:50:52Z 2020-02-15T06:59:49Z +3672 136 2 9319 0.99 2005-07-30T17:15:27Z 2020-02-15T06:59:49Z +3673 136 2 9764 5.99 2005-07-31T09:42:58Z 2020-02-15T06:59:49Z +3674 136 2 11992 10.99 2005-08-17T18:27:22Z 2020-02-15T06:59:49Z +3675 136 1 12287 5.99 2005-08-18T04:58:06Z 2020-02-15T06:59:49Z +3676 136 2 12539 0.99 2005-08-18T14:10:09Z 2020-02-15T06:59:49Z +3677 136 2 13992 4.99 2005-08-20T19:30:35Z 2020-02-15T06:59:49Z +3678 136 2 14379 0.99 2005-08-21T09:53:03Z 2020-02-15T06:59:49Z +3679 136 1 14437 2.99 2005-08-21T11:48:32Z 2020-02-15T06:59:49Z +3680 136 1 15439 4.99 2005-08-23T00:34:28Z 2020-02-15T06:59:49Z +3681 137 1 925 2.99 2005-05-30T12:13:52Z 2020-02-15T06:59:49Z +3682 137 1 2469 6.99 2005-06-18T20:24:23Z 2020-02-15T06:59:49Z +3683 137 1 2785 2.99 2005-06-19T18:43:57Z 2020-02-15T06:59:49Z +3684 137 2 3058 3.99 2005-06-20T13:28:35Z 2020-02-15T06:59:49Z +3685 137 1 3436 5.99 2005-06-21T19:16:09Z 2020-02-15T06:59:49Z +3686 137 2 3589 4.99 2005-07-06T04:30:18Z 2020-02-15T06:59:49Z +3687 137 2 3676 5.99 2005-07-06T09:10:37Z 2020-02-15T06:59:49Z +3688 137 2 3874 6.99 2005-07-06T18:06:12Z 2020-02-15T06:59:49Z +3689 137 1 4332 6.99 2005-07-07T18:25:26Z 2020-02-15T06:59:49Z +3690 137 2 4474 3.99 2005-07-08T00:26:56Z 2020-02-15T06:59:49Z +3691 137 1 5106 2.99 2005-07-09T06:40:24Z 2020-02-15T06:59:49Z +3692 137 1 5443 3.99 2005-07-09T21:56:09Z 2020-02-15T06:59:49Z +3693 137 1 5804 2.99 2005-07-10T15:06:31Z 2020-02-15T06:59:49Z +3694 137 1 6039 6.99 2005-07-11T03:12:19Z 2020-02-15T06:59:49Z +3695 137 2 6200 0.99 2005-07-11T12:16:42Z 2020-02-15T06:59:49Z +3696 137 1 8028 8.99 2005-07-28T16:11:15Z 2020-02-15T06:59:49Z +3697 137 1 8106 4.99 2005-07-28T19:02:46Z 2020-02-15T06:59:49Z +3698 137 2 8954 2.99 2005-07-30T03:25:51Z 2020-02-15T06:59:49Z +3699 137 1 9002 4.99 2005-07-30T05:02:21Z 2020-02-15T06:59:49Z +3700 137 2 9200 4.99 2005-07-30T12:39:52Z 2020-02-15T06:59:49Z +3701 137 2 9466 7.99 2005-07-30T22:44:36Z 2020-02-15T06:59:49Z +3702 137 1 9709 4.99 2005-07-31T08:04:55Z 2020-02-15T06:59:49Z +3703 137 1 9789 2.99 2005-07-31T10:30:25Z 2020-02-15T06:59:49Z +3704 137 1 10175 6.99 2005-07-31T23:40:11Z 2020-02-15T06:59:49Z +3705 137 2 10595 4.99 2005-08-01T14:16:28Z 2020-02-15T06:59:49Z +3706 137 2 10842 5.99 2005-08-01T23:41:24Z 2020-02-15T06:59:49Z +3707 137 2 11057 4.99 2005-08-02T06:38:19Z 2020-02-15T06:59:49Z +3708 137 1 11281 3.99 2005-08-02T14:35:01Z 2020-02-15T06:59:49Z +3709 137 2 11732 3.99 2005-08-17T08:29:46Z 2020-02-15T06:59:49Z +3710 137 1 12078 2.99 2005-08-17T22:00:22Z 2020-02-15T06:59:49Z +3711 137 1 13148 0.99 2005-08-19T12:55:30Z 2020-02-15T06:59:49Z +3712 137 1 13472 5.99 2005-08-20T01:03:31Z 2020-02-15T06:59:49Z +3713 137 1 13776 5.99 2005-08-20T11:57:06Z 2020-02-15T06:59:49Z +3714 137 1 14754 7.99 2005-08-21T23:17:26Z 2020-02-15T06:59:49Z +3715 137 2 15082 7.99 2005-08-22T11:17:06Z 2020-02-15T06:59:49Z +3716 137 1 15133 0.99 2005-08-22T13:17:43Z 2020-02-15T06:59:49Z +3717 137 2 15537 2.99 2005-08-23T04:00:30Z 2020-02-15T06:59:49Z +3718 137 2 15889 4.99 2005-08-23T16:57:43Z 2020-02-15T06:59:49Z +3719 137 1 16030 9.99 2005-08-23T21:56:04Z 2020-02-15T06:59:49Z +3720 138 1 523 2.99 2005-05-28T03:53:26Z 2020-02-15T06:59:49Z +3721 138 1 1020 0.99 2005-05-31T03:06:08Z 2020-02-15T06:59:49Z +3722 138 2 1316 0.99 2005-06-15T10:26:23Z 2020-02-15T06:59:49Z +3723 138 2 2038 0.99 2005-06-17T14:00:51Z 2020-02-15T06:59:49Z +3724 138 1 2731 7.99 2005-06-19T15:14:55Z 2020-02-15T06:59:49Z +3725 138 2 3481 2.99 2005-07-05T23:13:07Z 2020-02-15T06:59:49Z +3726 138 1 5378 0.99 2005-07-09T19:05:56Z 2020-02-15T06:59:49Z +3727 138 1 5600 1.99 2005-07-10T04:55:45Z 2020-02-15T06:59:49Z +3728 138 1 5679 4.99 2005-07-10T08:44:02Z 2020-02-15T06:59:49Z +3729 138 1 6458 2.99 2005-07-12T01:08:52Z 2020-02-15T06:59:49Z +3730 138 1 6892 0.99 2005-07-12T21:10:04Z 2020-02-15T06:59:49Z +3731 138 1 7208 2.99 2005-07-27T09:16:28Z 2020-02-15T06:59:49Z +3732 138 1 7754 2.99 2005-07-28T06:10:55Z 2020-02-15T06:59:49Z +3733 138 2 8123 4.99 2005-07-28T19:28:23Z 2020-02-15T06:59:49Z +3734 138 2 8160 3.99 2005-07-28T21:10:30Z 2020-02-15T06:59:49Z +3735 138 1 8424 3.99 2005-07-29T07:06:03Z 2020-02-15T06:59:49Z +3736 138 2 9259 1.99 2005-07-30T14:37:44Z 2020-02-15T06:59:49Z +3737 138 1 9619 0.99 2005-07-31T04:17:02Z 2020-02-15T06:59:49Z +3738 138 1 9947 9.99 2005-07-31T15:49:40Z 2020-02-15T06:59:49Z +3739 138 1 10110 0.99 2005-07-31T21:06:12Z 2020-02-15T06:59:49Z +3740 138 2 10190 4.99 2005-08-01T00:27:53Z 2020-02-15T06:59:49Z +3741 138 1 10268 3.99 2005-08-01T03:08:56Z 2020-02-15T06:59:49Z +3742 138 1 10431 5.99 2005-08-01T08:41:54Z 2020-02-15T06:59:49Z +3743 138 1 11015 4.99 2005-08-02T05:13:00Z 2020-02-15T06:59:49Z +3744 138 1 11088 0.99 2005-08-02T07:48:31Z 2020-02-15T06:59:49Z +3745 138 1 11463 0.99 2005-08-02T21:37:36Z 2020-02-15T06:59:49Z +3746 138 2 12550 2.99 2005-08-18T14:40:38Z 2020-02-15T06:59:49Z +3747 138 2 12873 2.99 2005-08-19T03:05:41Z 2020-02-15T06:59:49Z +3748 138 1 14194 1.99 2005-08-21T03:40:11Z 2020-02-15T06:59:49Z +3749 138 2 14432 4.99 2005-08-21T11:36:15Z 2020-02-15T06:59:49Z +3750 138 2 14486 4.99 2005-08-21T13:52:54Z 2020-02-15T06:59:49Z +3751 138 1 14987 4.99 2005-08-22T07:41:08Z 2020-02-15T06:59:49Z +3752 138 1 15424 2.99 2005-08-23T00:03:01Z 2020-02-15T06:59:49Z +3753 138 1 15501 0.99 2005-08-23T02:39:56Z 2020-02-15T06:59:49Z +3754 139 2 1169 2.99 2005-06-14T23:42:56Z 2020-02-15T06:59:49Z +3755 139 1 1736 2.99 2005-06-16T15:52:32Z 2020-02-15T06:59:49Z +3756 139 1 2659 0.99 2005-06-19T10:47:42Z 2020-02-15T06:59:49Z +3757 139 2 2718 7.99 2005-06-19T14:49:42Z 2020-02-15T06:59:49Z +3758 139 2 4660 0.99 2005-07-08T09:54:47Z 2020-02-15T06:59:49Z +3759 139 2 4663 2.99 2005-07-08T09:59:18Z 2020-02-15T06:59:49Z +3760 139 2 5092 2.99 2005-07-09T05:57:39Z 2020-02-15T06:59:49Z +3761 139 2 5265 7.99 2005-07-09T14:15:01Z 2020-02-15T06:59:49Z +3762 139 1 5390 6.99 2005-07-09T19:26:22Z 2020-02-15T06:59:49Z +3763 139 1 5494 6.99 2005-07-10T00:15:00Z 2020-02-15T06:59:49Z +3764 139 1 6496 6.99 2005-07-12T02:57:39Z 2020-02-15T06:59:49Z +3765 139 2 6740 0.99 2005-07-12T14:22:08Z 2020-02-15T06:59:49Z +3766 139 1 7369 0.99 2005-07-27T15:07:58Z 2020-02-15T06:59:49Z +3767 139 2 7767 5.99 2005-07-28T06:42:02Z 2020-02-15T06:59:49Z +3768 139 2 9415 2.99 2005-07-30T20:48:31Z 2020-02-15T06:59:49Z +3769 139 2 9920 4.99 2005-07-31T14:57:13Z 2020-02-15T06:59:49Z +3770 139 1 10900 2.99 2005-08-02T01:34:26Z 2020-02-15T06:59:49Z +3771 139 1 12859 6.99 2005-08-19T02:23:23Z 2020-02-15T06:59:49Z +3772 139 2 13401 3.99 2005-08-19T22:16:16Z 2020-02-15T06:59:49Z +3773 139 2 14736 5.99 2005-08-21T22:25:53Z 2020-02-15T06:59:49Z +3774 139 1 14788 2.99 2005-08-22T00:27:59Z 2020-02-15T06:59:49Z +3775 139 1 15024 2.99 2005-08-22T08:57:10Z 2020-02-15T06:59:49Z +3776 139 2 15029 2.99 2005-08-22T09:04:53Z 2020-02-15T06:59:49Z +3777 139 1 15062 2.99 2005-08-22T10:34:39Z 2020-02-15T06:59:49Z +3778 139 1 15218 9.99 2005-08-22T16:59:05Z 2020-02-15T06:59:49Z +3779 139 1 15471 3.99 2005-08-23T01:38:48Z 2020-02-15T06:59:49Z +3780 139 1 15743 0.99 2005-08-23T12:12:05Z 2020-02-15T06:59:49Z +3781 140 1 1586 4.99 2005-06-16T04:51:18Z 2020-02-15T06:59:49Z +3782 140 1 1687 2.99 2005-06-16T12:09:20Z 2020-02-15T06:59:49Z +3783 140 2 2332 6.99 2005-06-18T10:53:51Z 2020-02-15T06:59:49Z +3784 140 2 3171 0.99 2005-06-20T22:15:47Z 2020-02-15T06:59:49Z +3785 140 1 6286 4.99 2005-07-11T16:55:35Z 2020-02-15T06:59:49Z +3786 140 1 6407 9.99 2005-07-11T23:02:19Z 2020-02-15T06:59:49Z +3787 140 2 6571 0.99 2005-07-12T05:51:47Z 2020-02-15T06:59:49Z +3788 140 1 6918 2.99 2005-07-12T22:30:29Z 2020-02-15T06:59:49Z +3789 140 1 7170 4.99 2005-07-27T07:58:26Z 2020-02-15T06:59:49Z +3790 140 1 9094 4.99 2005-07-30T08:35:10Z 2020-02-15T06:59:49Z +3791 140 1 9404 0.99 2005-07-30T20:21:35Z 2020-02-15T06:59:49Z +3792 140 1 10342 6.99 2005-08-01T05:11:11Z 2020-02-15T06:59:49Z +3793 140 2 11430 3.99 2005-08-02T20:04:36Z 2020-02-15T06:59:49Z +3794 140 1 12086 4.99 2005-08-17T22:20:01Z 2020-02-15T06:59:49Z +3795 140 1 12675 4.99 2005-08-18T19:34:02Z 2020-02-15T06:59:49Z +3796 140 2 13053 10.99 2005-08-19T09:31:48Z 2020-02-15T06:59:49Z +3797 140 1 15261 2.99 2005-08-22T18:24:34Z 2020-02-15T06:59:49Z +3798 140 1 15852 2.99 2005-08-23T15:47:02Z 2020-02-15T06:59:49Z +3799 141 2 930 2.99 2005-05-30T12:44:57Z 2020-02-15T06:59:49Z +3800 141 2 1242 7.99 2005-06-15T05:05:07Z 2020-02-15T06:59:49Z +3801 141 2 2895 7.99 2005-06-20T02:26:31Z 2020-02-15T06:59:49Z +3802 141 1 3434 4.99 2005-06-21T19:08:28Z 2020-02-15T06:59:49Z +3803 141 1 4057 1.99 2005-07-07T04:00:20Z 2020-02-15T06:59:49Z +3804 141 2 4297 0.99 2005-07-07T16:24:09Z 2020-02-15T06:59:49Z +3805 141 1 4656 5.99 2005-07-08T09:50:10Z 2020-02-15T06:59:49Z +3806 141 2 5062 2.99 2005-07-09T04:36:49Z 2020-02-15T06:59:49Z +3807 141 1 5769 0.99 2005-07-10T13:17:58Z 2020-02-15T06:59:49Z +3808 141 2 6979 4.99 2005-07-27T00:49:53Z 2020-02-15T06:59:49Z +3809 141 2 7878 2.99 2005-07-28T10:27:10Z 2020-02-15T06:59:49Z +3810 141 1 8434 4.99 2005-07-29T07:20:14Z 2020-02-15T06:59:49Z +3811 141 2 9073 7.99 2005-07-30T07:49:56Z 2020-02-15T06:59:49Z +3812 141 1 9584 4.99 2005-07-31T03:05:48Z 2020-02-15T06:59:49Z +3813 141 2 9683 2.99 2005-07-31T06:47:13Z 2020-02-15T06:59:49Z +3814 141 1 10287 3.99 2005-08-01T03:37:01Z 2020-02-15T06:59:49Z +3815 141 1 10379 1.99 2005-08-01T06:34:29Z 2020-02-15T06:59:49Z +3816 141 1 10798 4.99 2005-08-01T22:03:10Z 2020-02-15T06:59:49Z +3817 141 1 11411 2.99 2005-08-02T19:29:47Z 2020-02-15T06:59:49Z +3818 141 1 11412 5.99 2005-08-02T19:32:51Z 2020-02-15T06:59:49Z +3819 141 1 12032 5.99 2005-08-17T20:14:26Z 2020-02-15T06:59:49Z +3820 141 1 12093 2.99 2005-08-17T22:28:40Z 2020-02-15T06:59:49Z +3821 141 2 12107 3.99 2005-08-17T22:56:24Z 2020-02-15T06:59:49Z +3822 141 2 12353 2.99 2005-08-18T07:33:08Z 2020-02-15T06:59:49Z +3823 141 1 13000 0.99 2005-08-19T07:36:42Z 2020-02-15T06:59:49Z +3824 141 2 13169 2.99 2005-08-19T13:43:35Z 2020-02-15T06:59:49Z +3825 141 2 13470 4.99 2005-08-20T01:01:16Z 2020-02-15T06:59:49Z +3826 141 2 14059 7.99 2005-08-20T22:24:44Z 2020-02-15T06:59:49Z +3827 141 1 14112 2.99 2005-08-21T01:00:46Z 2020-02-15T06:59:49Z +3828 141 1 15013 4.99 2005-08-22T08:42:45Z 2020-02-15T06:59:49Z +3829 141 1 15309 0.99 2005-08-22T19:54:52Z 2020-02-15T06:59:49Z +3830 141 1 15964 2.99 2005-08-23T19:45:25Z 2020-02-15T06:59:49Z +3831 142 2 11 8.99 2005-05-25T00:09:02Z 2020-02-15T06:59:49Z +3832 142 1 148 0.99 2005-05-26T00:25:23Z 2020-02-15T06:59:49Z +3833 142 1 575 9.99 2005-05-28T10:56:09Z 2020-02-15T06:59:49Z +3834 142 1 1268 1.99 2005-06-15T07:29:30Z 2020-02-15T06:59:49Z +3835 142 1 3214 2.99 2005-06-21T01:08:26Z 2020-02-15T06:59:49Z +3836 142 2 3492 2.99 2005-07-05T23:44:37Z 2020-02-15T06:59:49Z +3837 142 2 4497 4.99 2005-07-08T01:51:32Z 2020-02-15T06:59:49Z +3838 142 1 4531 4.99 2005-07-08T03:27:59Z 2020-02-15T06:59:49Z +3839 142 1 6522 0.99 2005-07-12T04:11:58Z 2020-02-15T06:59:49Z +3840 142 1 7764 2.99 2005-07-28T06:40:05Z 2020-02-15T06:59:49Z +3841 142 2 8513 2.99 2005-07-29T09:52:59Z 2020-02-15T06:59:49Z +3842 142 2 8623 4.99 2005-07-29T13:55:11Z 2020-02-15T06:59:49Z +3843 142 1 9020 7.99 2005-07-30T05:31:27Z 2020-02-15T06:59:49Z +3844 142 1 9131 2.99 2005-07-30T09:55:57Z 2020-02-15T06:59:49Z +3845 142 1 9419 5.99 2005-07-30T21:04:59Z 2020-02-15T06:59:49Z +3846 142 2 10934 5.99 2005-08-02T02:52:18Z 2020-02-15T06:59:49Z +3847 142 2 11244 5.99 2005-08-02T13:33:24Z 2020-02-15T06:59:49Z +3848 142 1 12964 0.99 2005-08-19T06:29:13Z 2020-02-15T06:59:49Z +3849 142 1 13044 0.99 2005-08-19T09:14:31Z 2020-02-15T06:59:49Z +3850 142 2 13745 0.99 2005-08-20T10:53:49Z 2020-02-15T06:59:49Z +3851 142 1 13959 0.99 2005-08-20T18:16:21Z 2020-02-15T06:59:49Z +3852 142 2 14116 4.99 2005-08-21T01:11:17Z 2020-02-15T06:59:49Z +3853 142 2 14813 0.99 2005-08-22T01:11:37Z 2020-02-15T06:59:49Z +3854 142 2 15333 2.99 2005-08-22T20:44:06Z 2020-02-15T06:59:49Z +3855 142 1 15477 1.99 2005-08-23T01:46:35Z 2020-02-15T06:59:49Z +3856 142 1 15454 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3857 143 1 221 2.99 2005-05-26T10:14:09Z 2020-02-15T06:59:49Z +3858 143 1 312 2.99 2005-05-26T22:52:19Z 2020-02-15T06:59:49Z +3859 143 2 1898 1.99 2005-06-17T04:28:11Z 2020-02-15T06:59:49Z +3860 143 1 1942 4.99 2005-06-17T07:43:39Z 2020-02-15T06:59:49Z +3861 143 2 2251 3.99 2005-06-18T05:05:08Z 2020-02-15T06:59:49Z +3862 143 1 2574 0.99 2005-06-19T04:23:52Z 2020-02-15T06:59:49Z +3863 143 1 2588 4.99 2005-06-19T05:20:31Z 2020-02-15T06:59:49Z +3864 143 1 4031 7.99 2005-07-07T02:32:07Z 2020-02-15T06:59:49Z +3865 143 2 4221 0.99 2005-07-07T12:18:57Z 2020-02-15T06:59:49Z +3866 143 1 4585 7.99 2005-07-08T06:11:58Z 2020-02-15T06:59:49Z +3867 143 2 6076 6.99 2005-07-11T05:05:30Z 2020-02-15T06:59:49Z +3868 143 2 6207 4.99 2005-07-11T12:34:24Z 2020-02-15T06:59:49Z +3869 143 1 8312 0.99 2005-07-29T03:32:38Z 2020-02-15T06:59:49Z +3870 143 1 8335 0.99 2005-07-29T04:18:25Z 2020-02-15T06:59:49Z +3871 143 2 9889 1.99 2005-07-31T14:02:50Z 2020-02-15T06:59:49Z +3872 143 1 10118 0.99 2005-07-31T21:16:31Z 2020-02-15T06:59:49Z +3873 143 1 11278 6.99 2005-08-02T14:29:43Z 2020-02-15T06:59:49Z +3874 143 2 11651 6.99 2005-08-17T05:02:25Z 2020-02-15T06:59:49Z +3875 143 1 12408 2.99 2005-08-18T09:40:38Z 2020-02-15T06:59:49Z +3876 143 2 13835 4.99 2005-08-20T14:06:33Z 2020-02-15T06:59:49Z +3877 143 1 15250 5.99 2005-08-22T18:03:11Z 2020-02-15T06:59:49Z +3878 143 1 16029 4.99 2005-08-23T21:54:02Z 2020-02-15T06:59:49Z +3879 144 1 323 2.99 2005-05-27T00:49:27Z 2020-02-15T06:59:49Z +3880 144 2 345 2.99 2005-05-27T04:32:25Z 2020-02-15T06:59:49Z +3881 144 1 1814 5.99 2005-06-16T21:15:22Z 2020-02-15T06:59:49Z +3882 144 1 1943 0.99 2005-06-17T07:49:17Z 2020-02-15T06:59:49Z +3883 144 1 2756 4.99 2005-06-19T16:57:42Z 2020-02-15T06:59:49Z +3884 144 2 3019 4.99 2005-06-20T11:11:52Z 2020-02-15T06:59:49Z +3885 144 1 3145 2.99 2005-06-20T20:21:17Z 2020-02-15T06:59:49Z +3886 144 1 3321 2.99 2005-06-21T08:33:26Z 2020-02-15T06:59:49Z +3887 144 1 4726 6.99 2005-07-08T12:50:54Z 2020-02-15T06:59:49Z +3888 144 2 4818 3.99 2005-07-08T17:18:22Z 2020-02-15T06:59:49Z +3889 144 2 5049 0.99 2005-07-09T03:54:12Z 2020-02-15T06:59:49Z +3890 144 2 5374 8.99 2005-07-09T18:52:08Z 2020-02-15T06:59:49Z +3891 144 2 5408 7.99 2005-07-09T20:16:51Z 2020-02-15T06:59:49Z +3892 144 2 5526 7.99 2005-07-10T02:04:03Z 2020-02-15T06:59:49Z +3893 144 2 6614 7.99 2005-07-12T08:33:49Z 2020-02-15T06:59:49Z +3894 144 2 6791 9.99 2005-07-12T16:35:07Z 2020-02-15T06:59:49Z +3895 144 2 7378 5.99 2005-07-27T15:31:33Z 2020-02-15T06:59:49Z +3896 144 2 7566 2.99 2005-07-27T22:34:45Z 2020-02-15T06:59:49Z +3897 144 1 7830 0.99 2005-07-28T08:43:49Z 2020-02-15T06:59:49Z +3898 144 1 7858 3.99 2005-07-28T09:50:18Z 2020-02-15T06:59:49Z +3899 144 2 8459 5.99 2005-07-29T08:05:40Z 2020-02-15T06:59:49Z +3900 144 1 8983 0.99 2005-07-30T04:31:08Z 2020-02-15T06:59:49Z +3901 144 1 9034 7.99 2005-07-30T06:10:58Z 2020-02-15T06:59:49Z +3902 144 1 9098 3.99 2005-07-30T08:44:21Z 2020-02-15T06:59:49Z +3903 144 2 9174 4.99 2005-07-30T11:42:10Z 2020-02-15T06:59:49Z +3904 144 2 9714 0.99 2005-07-31T08:15:32Z 2020-02-15T06:59:49Z +3905 144 1 10302 0.99 2005-08-01T04:12:08Z 2020-02-15T06:59:49Z +3906 144 1 10593 4.99 2005-08-01T14:13:19Z 2020-02-15T06:59:49Z +3907 144 1 10740 5.99 2005-08-01T19:50:32Z 2020-02-15T06:59:49Z +3908 144 1 10951 4.99 2005-08-02T03:26:35Z 2020-02-15T06:59:49Z +3909 144 1 11228 2.99 2005-08-02T12:55:23Z 2020-02-15T06:59:49Z +3910 144 2 11476 6.99 2005-08-02T22:03:47Z 2020-02-15T06:59:49Z +3911 144 1 11534 7.99 2005-08-17T00:35:27Z 2020-02-15T06:59:49Z +3912 144 1 11859 4.99 2005-08-17T13:51:20Z 2020-02-15T06:59:49Z +3913 144 2 12087 2.99 2005-08-17T22:20:12Z 2020-02-15T06:59:49Z +3914 144 2 12733 2.99 2005-08-18T21:59:00Z 2020-02-15T06:59:49Z +3915 144 1 12858 3.99 2005-08-19T02:22:16Z 2020-02-15T06:59:49Z +3916 144 2 12980 6.99 2005-08-19T07:03:14Z 2020-02-15T06:59:49Z +3917 144 2 13881 2.99 2005-08-20T15:18:55Z 2020-02-15T06:59:49Z +3918 144 2 14159 2.99 2005-08-21T02:45:58Z 2020-02-15T06:59:49Z +3919 144 1 15017 1.99 2005-08-22T08:47:44Z 2020-02-15T06:59:49Z +3920 144 1 15753 7.99 2005-08-23T12:43:30Z 2020-02-15T06:59:49Z +3921 145 1 500 0.99 2005-05-28T01:05:25Z 2020-02-15T06:59:49Z +3922 145 2 2271 4.99 2005-06-18T06:29:52Z 2020-02-15T06:59:49Z +3923 145 2 2614 0.99 2005-06-19T07:28:11Z 2020-02-15T06:59:49Z +3924 145 1 3647 5.99 2005-07-06T07:29:17Z 2020-02-15T06:59:49Z +3925 145 2 4201 8.99 2005-07-07T11:19:51Z 2020-02-15T06:59:49Z +3926 145 1 4364 4.99 2005-07-07T19:46:51Z 2020-02-15T06:59:49Z +3927 145 2 4405 6.99 2005-07-07T21:33:16Z 2020-02-15T06:59:49Z +3928 145 1 4470 2.99 2005-07-08T00:20:57Z 2020-02-15T06:59:49Z +3929 145 2 4817 2.99 2005-07-08T17:17:31Z 2020-02-15T06:59:49Z +3930 145 2 6056 2.99 2005-07-11T04:01:27Z 2020-02-15T06:59:49Z +3931 145 1 6339 1.99 2005-07-11T19:45:32Z 2020-02-15T06:59:49Z +3932 145 2 6378 0.99 2005-07-11T21:45:23Z 2020-02-15T06:59:49Z +3933 145 2 7061 2.99 2005-07-27T03:51:10Z 2020-02-15T06:59:49Z +3934 145 1 7529 7.99 2005-07-27T21:18:08Z 2020-02-15T06:59:49Z +3935 145 2 7954 0.99 2005-07-28T13:25:05Z 2020-02-15T06:59:49Z +3936 145 1 8380 0.99 2005-07-29T05:31:29Z 2020-02-15T06:59:49Z +3937 145 1 9156 2.99 2005-07-30T11:04:55Z 2020-02-15T06:59:49Z +3938 145 2 9576 0.99 2005-07-31T02:52:59Z 2020-02-15T06:59:49Z +3939 145 2 10799 4.99 2005-08-01T22:03:31Z 2020-02-15T06:59:49Z +3940 145 2 11904 5.99 2005-08-17T15:39:26Z 2020-02-15T06:59:49Z +3941 145 2 11954 2.99 2005-08-17T17:18:36Z 2020-02-15T06:59:49Z +3942 145 1 12637 2.99 2005-08-18T18:06:53Z 2020-02-15T06:59:49Z +3943 145 2 12785 2.99 2005-08-19T00:05:49Z 2020-02-15T06:59:49Z +3944 145 2 13012 7.99 2005-08-19T07:54:59Z 2020-02-15T06:59:49Z +3945 145 1 13164 3.99 2005-08-19T13:30:55Z 2020-02-15T06:59:49Z +3946 145 2 13272 0.99 2005-08-19T17:49:13Z 2020-02-15T06:59:49Z +3947 145 2 14044 5.99 2005-08-20T21:48:38Z 2020-02-15T06:59:49Z +3948 145 2 14389 6.99 2005-08-21T10:15:20Z 2020-02-15T06:59:49Z +3949 146 2 762 7.99 2005-05-29T11:15:51Z 2020-02-15T06:59:49Z +3950 146 1 1073 4.99 2005-05-31T09:55:04Z 2020-02-15T06:59:49Z +3951 146 2 1209 7.99 2005-06-15T02:31:12Z 2020-02-15T06:59:49Z +3952 146 2 1724 1.99 2005-06-16T15:15:43Z 2020-02-15T06:59:49Z +3953 146 2 2099 2.99 2005-06-17T18:47:26Z 2020-02-15T06:59:49Z +3954 146 1 2242 3.99 2005-06-18T04:32:28Z 2020-02-15T06:59:49Z +3955 146 1 2342 2.99 2005-06-18T11:42:40Z 2020-02-15T06:59:49Z +3956 146 1 2800 0.99 2005-06-19T19:15:56Z 2020-02-15T06:59:49Z +3957 146 1 3131 4.99 2005-06-20T19:08:00Z 2020-02-15T06:59:49Z +3958 146 1 4849 6.99 2005-07-08T18:34:34Z 2020-02-15T06:59:49Z +3959 146 2 5000 4.99 2005-07-09T01:16:13Z 2020-02-15T06:59:49Z +3960 146 1 6102 7.99 2005-07-11T06:53:09Z 2020-02-15T06:59:49Z +3961 146 2 6184 6.99 2005-07-11T11:19:21Z 2020-02-15T06:59:49Z +3962 146 1 6327 4.99 2005-07-11T19:07:29Z 2020-02-15T06:59:49Z +3963 146 1 6990 0.99 2005-07-27T01:02:46Z 2020-02-15T06:59:49Z +3964 146 2 8246 3.99 2005-07-29T00:38:41Z 2020-02-15T06:59:49Z +3965 146 2 11173 7.99 2005-08-02T10:28:00Z 2020-02-15T06:59:49Z +3966 146 1 11221 2.99 2005-08-02T12:32:12Z 2020-02-15T06:59:49Z +3967 146 2 11370 0.99 2005-08-02T18:06:01Z 2020-02-15T06:59:49Z +3968 146 2 11392 5.99 2005-08-02T18:41:11Z 2020-02-15T06:59:49Z +3969 146 1 11573 4.99 2005-08-17T01:38:18Z 2020-02-15T06:59:49Z +3970 146 1 11857 4.99 2005-08-17T13:48:30Z 2020-02-15T06:59:49Z +3971 146 1 12129 7.99 2005-08-17T23:31:25Z 2020-02-15T06:59:49Z +3972 146 1 12385 2.99 2005-08-18T08:39:33Z 2020-02-15T06:59:49Z +3973 146 1 12888 4.99 2005-08-19T03:41:09Z 2020-02-15T06:59:49Z +3974 146 1 13606 4.99 2005-08-20T06:07:01Z 2020-02-15T06:59:49Z +3975 146 2 13829 4.99 2005-08-20T13:50:17Z 2020-02-15T06:59:49Z +3976 146 2 14143 2.99 2005-08-21T02:10:32Z 2020-02-15T06:59:49Z +3977 146 1 15842 6.99 2005-08-23T15:36:05Z 2020-02-15T06:59:49Z +3978 147 1 362 0.99 2005-05-27T07:10:25Z 2020-02-15T06:59:49Z +3979 147 1 509 0.99 2005-05-28T02:51:12Z 2020-02-15T06:59:49Z +3980 147 1 2171 0.99 2005-06-18T00:06:04Z 2020-02-15T06:59:49Z +3981 147 1 2456 6.99 2005-06-18T19:36:50Z 2020-02-15T06:59:49Z +3982 147 2 2859 2.99 2005-06-19T23:18:42Z 2020-02-15T06:59:49Z +3983 147 2 3011 5.99 2005-06-20T10:39:10Z 2020-02-15T06:59:49Z +3984 147 2 3919 7.99 2005-07-06T20:26:21Z 2020-02-15T06:59:49Z +3985 147 2 3956 2.99 2005-07-06T22:01:51Z 2020-02-15T06:59:49Z +3986 147 2 4792 0.99 2005-07-08T16:29:38Z 2020-02-15T06:59:49Z +3987 147 2 5044 0.99 2005-07-09T03:30:25Z 2020-02-15T06:59:49Z +3988 147 1 5567 2.99 2005-07-10T03:36:46Z 2020-02-15T06:59:49Z +3989 147 1 5844 0.99 2005-07-10T17:14:43Z 2020-02-15T06:59:49Z +3990 147 2 6343 0.99 2005-07-11T19:51:35Z 2020-02-15T06:59:49Z +3991 147 2 6469 4.99 2005-07-12T01:29:27Z 2020-02-15T06:59:49Z +3992 147 2 6753 2.99 2005-07-12T14:55:42Z 2020-02-15T06:59:49Z +3993 147 2 7044 0.99 2005-07-27T03:27:29Z 2020-02-15T06:59:49Z +3994 147 1 7723 0.99 2005-07-28T04:45:37Z 2020-02-15T06:59:49Z +3995 147 1 8893 2.99 2005-07-30T00:48:19Z 2020-02-15T06:59:49Z +3996 147 2 9772 0.99 2005-07-31T09:56:07Z 2020-02-15T06:59:49Z +3997 147 1 10706 7.99 2005-08-01T18:41:28Z 2020-02-15T06:59:49Z +3998 147 2 10752 8.99 2005-08-01T20:08:49Z 2020-02-15T06:59:49Z +3999 147 1 12284 4.99 2005-08-18T04:55:49Z 2020-02-15T06:59:49Z +4000 147 1 12757 4.99 2005-08-18T22:57:45Z 2020-02-15T06:59:49Z +4001 147 2 13542 4.99 2005-08-20T03:41:57Z 2020-02-15T06:59:49Z +4002 147 2 13670 3.99 2005-08-20T08:27:01Z 2020-02-15T06:59:49Z +4003 147 2 14021 4.99 2005-08-20T21:02:12Z 2020-02-15T06:59:49Z +4004 147 1 14156 0.99 2005-08-21T02:35:16Z 2020-02-15T06:59:49Z +4005 147 2 14641 0.99 2005-08-21T19:05:23Z 2020-02-15T06:59:49Z +4006 147 2 14960 4.99 2005-08-22T06:31:36Z 2020-02-15T06:59:49Z +4007 147 1 15052 2.99 2005-08-22T10:09:19Z 2020-02-15T06:59:49Z +4008 147 2 15331 4.99 2005-08-22T20:37:57Z 2020-02-15T06:59:49Z +4009 147 2 15513 4.99 2005-08-23T03:01:56Z 2020-02-15T06:59:49Z +4010 147 1 15730 8.99 2005-08-23T11:32:35Z 2020-02-15T06:59:49Z +4011 147 2 16004 6.99 2005-08-23T20:53:20Z 2020-02-15T06:59:49Z +4012 148 1 682 4.99 2005-05-28T23:53:18Z 2020-02-15T06:59:49Z +4013 148 1 1501 1.99 2005-06-15T22:02:35Z 2020-02-15T06:59:49Z +4014 148 2 1517 6.99 2005-06-15T23:20:26Z 2020-02-15T06:59:49Z +4015 148 2 2751 3.99 2005-06-19T16:39:23Z 2020-02-15T06:59:49Z +4016 148 2 2843 3.99 2005-06-19T22:36:39Z 2020-02-15T06:59:49Z +4017 148 2 2847 5.99 2005-06-19T22:54:01Z 2020-02-15T06:59:49Z +4018 148 1 3653 0.99 2005-07-06T07:45:13Z 2020-02-15T06:59:49Z +4019 148 1 4080 0.99 2005-07-07T05:09:54Z 2020-02-15T06:59:49Z +4020 148 1 4746 2.99 2005-07-08T13:47:55Z 2020-02-15T06:59:49Z +4021 148 1 4950 2.99 2005-07-08T22:58:07Z 2020-02-15T06:59:49Z +4022 148 1 5034 4.99 2005-07-09T02:48:15Z 2020-02-15T06:59:49Z +4023 148 1 5372 4.99 2005-07-09T18:48:39Z 2020-02-15T06:59:49Z +4024 148 1 6169 1.99 2005-07-11T10:25:56Z 2020-02-15T06:59:49Z +4025 148 1 6640 8.99 2005-07-12T10:27:19Z 2020-02-15T06:59:49Z +4026 148 2 6793 10.99 2005-07-12T16:37:55Z 2020-02-15T06:59:49Z +4027 148 1 7656 0.99 2005-07-28T02:07:19Z 2020-02-15T06:59:49Z +4028 148 2 7693 4.99 2005-07-28T03:31:22Z 2020-02-15T06:59:49Z +4029 148 1 7865 9.99 2005-07-28T10:07:04Z 2020-02-15T06:59:49Z +4030 148 2 8111 4.99 2005-07-28T19:10:03Z 2020-02-15T06:59:49Z +4031 148 2 8331 3.99 2005-07-29T04:13:29Z 2020-02-15T06:59:49Z +4032 148 1 8394 4.99 2005-07-29T06:02:14Z 2020-02-15T06:59:49Z +4033 148 2 8578 4.99 2005-07-29T11:58:14Z 2020-02-15T06:59:49Z +4034 148 2 8626 4.99 2005-07-29T14:03:20Z 2020-02-15T06:59:49Z +4035 148 1 9023 5.99 2005-07-30T05:36:40Z 2020-02-15T06:59:49Z +4036 148 1 9106 2.99 2005-07-30T08:52:34Z 2020-02-15T06:59:49Z +4037 148 1 9530 1.99 2005-07-31T01:09:06Z 2020-02-15T06:59:49Z +4038 148 1 9594 4.99 2005-07-31T03:23:52Z 2020-02-15T06:59:49Z +4039 148 2 10067 4.99 2005-07-31T19:37:58Z 2020-02-15T06:59:49Z +4040 148 2 10830 6.99 2005-08-01T23:18:06Z 2020-02-15T06:59:49Z +4041 148 1 11357 10.99 2005-08-02T17:42:49Z 2020-02-15T06:59:49Z +4042 148 1 12029 2.99 2005-08-17T20:07:01Z 2020-02-15T06:59:49Z +4043 148 2 12038 0.99 2005-08-17T20:28:26Z 2020-02-15T06:59:49Z +4044 148 2 12512 3.99 2005-08-18T13:28:27Z 2020-02-15T06:59:50Z +4045 148 1 12944 6.99 2005-08-19T05:48:12Z 2020-02-15T06:59:50Z +4046 148 1 12983 6.99 2005-08-19T07:06:51Z 2020-02-15T06:59:50Z +4047 148 1 14055 0.99 2005-08-20T22:18:00Z 2020-02-15T06:59:50Z +4048 148 1 14155 4.99 2005-08-21T02:31:35Z 2020-02-15T06:59:50Z +4049 148 2 14184 6.99 2005-08-21T03:24:50Z 2020-02-15T06:59:50Z +4050 148 2 14629 2.99 2005-08-21T18:39:52Z 2020-02-15T06:59:50Z +4051 148 2 14713 0.99 2005-08-21T21:27:24Z 2020-02-15T06:59:50Z +4052 148 2 14879 5.99 2005-08-22T03:42:12Z 2020-02-15T06:59:50Z +4053 148 2 14965 2.99 2005-08-22T06:45:53Z 2020-02-15T06:59:50Z +4054 148 2 15237 4.99 2005-08-22T17:44:30Z 2020-02-15T06:59:50Z +4055 148 2 15379 8.99 2005-08-22T22:26:13Z 2020-02-15T06:59:50Z +4056 148 1 15541 3.99 2005-08-23T04:13:53Z 2020-02-15T06:59:50Z +4057 148 2 15586 3.99 2005-08-23T05:57:04Z 2020-02-15T06:59:50Z +4058 149 1 764 4.99 2005-05-29T11:37:35Z 2020-02-15T06:59:50Z +4059 149 2 1521 2.99 2005-06-15T23:58:53Z 2020-02-15T06:59:50Z +4060 149 1 1800 2.99 2005-06-16T20:18:46Z 2020-02-15T06:59:50Z +4061 149 2 1996 6.99 2005-06-17T11:17:45Z 2020-02-15T06:59:50Z +4062 149 2 2194 4.99 2005-06-18T01:41:37Z 2020-02-15T06:59:50Z +4063 149 1 2305 5.99 2005-06-18T08:31:18Z 2020-02-15T06:59:50Z +4064 149 2 2383 7.99 2005-06-18T15:17:59Z 2020-02-15T06:59:50Z +4065 149 1 2752 0.99 2005-06-19T16:44:18Z 2020-02-15T06:59:50Z +4066 149 1 3894 2.99 2005-07-06T19:01:39Z 2020-02-15T06:59:50Z +4067 149 1 3939 6.99 2005-07-06T21:16:32Z 2020-02-15T06:59:50Z +4068 149 1 4766 3.99 2005-07-08T15:16:04Z 2020-02-15T06:59:50Z +4069 149 1 4837 0.99 2005-07-08T18:09:12Z 2020-02-15T06:59:50Z +4070 149 1 5091 2.99 2005-07-09T05:52:54Z 2020-02-15T06:59:50Z +4071 149 1 5298 10.99 2005-07-09T15:36:17Z 2020-02-15T06:59:50Z +4072 149 1 6356 4.99 2005-07-11T20:57:48Z 2020-02-15T06:59:50Z +4073 149 2 6940 5.99 2005-07-26T23:18:35Z 2020-02-15T06:59:50Z +4074 149 2 7559 4.99 2005-07-27T22:20:03Z 2020-02-15T06:59:50Z +4075 149 1 7989 6.99 2005-07-28T14:39:05Z 2020-02-15T06:59:50Z +4076 149 2 10154 2.99 2005-07-31T22:30:49Z 2020-02-15T06:59:50Z +4077 149 2 10737 7.99 2005-08-01T19:31:24Z 2020-02-15T06:59:50Z +4078 149 2 10967 0.99 2005-08-02T04:02:16Z 2020-02-15T06:59:50Z +4079 149 1 11561 2.99 2005-08-17T01:23:09Z 2020-02-15T06:59:50Z +4080 149 1 12000 4.99 2005-08-17T18:49:44Z 2020-02-15T06:59:50Z +4081 149 1 14771 3.99 2005-08-21T23:50:15Z 2020-02-15T06:59:50Z +4082 149 2 15479 4.99 2005-08-23T01:50:53Z 2020-02-15T06:59:50Z +4083 149 2 15562 2.99 2005-08-23T05:04:33Z 2020-02-15T06:59:50Z +4084 150 1 422 3.99 2005-05-27T15:31:55Z 2020-02-15T06:59:50Z +4085 150 1 609 2.99 2005-05-28T15:04:02Z 2020-02-15T06:59:50Z +4086 150 1 995 3.99 2005-05-31T00:06:02Z 2020-02-15T06:59:50Z +4087 150 2 3187 1.99 2005-06-20T23:06:07Z 2020-02-15T06:59:50Z +4088 150 1 3456 5.99 2005-06-21T21:19:47Z 2020-02-15T06:59:50Z +4089 150 1 4271 6.99 2005-07-07T14:38:52Z 2020-02-15T06:59:50Z +4090 150 1 6633 2.99 2005-07-12T09:35:42Z 2020-02-15T06:59:50Z +4091 150 2 7690 4.99 2005-07-28T03:26:21Z 2020-02-15T06:59:50Z +4092 150 1 9121 2.99 2005-07-30T09:36:26Z 2020-02-15T06:59:50Z +4093 150 1 10686 2.99 2005-08-01T17:51:21Z 2020-02-15T06:59:50Z +4094 150 2 11123 2.99 2005-08-02T08:54:17Z 2020-02-15T06:59:50Z +4095 150 2 11789 6.99 2005-08-17T10:59:24Z 2020-02-15T06:59:50Z +4096 150 2 12260 6.99 2005-08-18T04:15:43Z 2020-02-15T06:59:50Z +4097 150 2 12335 2.99 2005-08-18T06:59:15Z 2020-02-15T06:59:50Z +4098 150 2 12627 2.99 2005-08-18T17:37:11Z 2020-02-15T06:59:50Z +4099 150 1 12887 1.99 2005-08-19T03:38:54Z 2020-02-15T06:59:50Z +4100 150 2 12890 0.99 2005-08-19T03:42:08Z 2020-02-15T06:59:50Z +4101 150 1 13116 6.99 2005-08-19T11:31:41Z 2020-02-15T06:59:50Z +4102 150 2 13255 8.99 2005-08-19T16:54:12Z 2020-02-15T06:59:50Z +4103 150 1 13372 2.99 2005-08-19T21:23:19Z 2020-02-15T06:59:50Z +4104 150 2 13599 5.99 2005-08-20T06:00:03Z 2020-02-15T06:59:50Z +4105 150 2 14165 0.99 2005-08-21T02:59:17Z 2020-02-15T06:59:50Z +4106 150 2 14454 2.99 2005-08-21T12:35:49Z 2020-02-15T06:59:50Z +4107 150 2 14520 9.99 2005-08-21T15:00:49Z 2020-02-15T06:59:50Z +4108 150 1 14663 0.99 2005-08-21T19:47:55Z 2020-02-15T06:59:50Z +4109 151 2 164 4.99 2005-05-26T02:26:49Z 2020-02-15T06:59:50Z +4110 151 2 418 5.99 2005-05-27T15:13:17Z 2020-02-15T06:59:50Z +4111 151 2 2474 2.99 2005-06-18T20:51:34Z 2020-02-15T06:59:50Z +4112 151 2 2947 2.99 2005-06-20T06:00:21Z 2020-02-15T06:59:50Z +4113 151 1 3017 3.99 2005-06-20T11:08:56Z 2020-02-15T06:59:50Z +4114 151 2 3089 0.99 2005-06-20T15:57:01Z 2020-02-15T06:59:50Z +4115 151 2 3390 2.99 2005-06-21T15:10:50Z 2020-02-15T06:59:50Z +4116 151 1 4376 2.99 2005-07-07T20:24:33Z 2020-02-15T06:59:50Z +4117 151 2 6720 0.99 2005-07-12T13:41:16Z 2020-02-15T06:59:50Z +4118 151 2 6768 3.99 2005-07-12T15:47:51Z 2020-02-15T06:59:50Z +4119 151 2 6854 0.99 2005-07-12T19:38:57Z 2020-02-15T06:59:50Z +4120 151 1 7189 0.99 2005-07-27T08:35:02Z 2020-02-15T06:59:50Z +4121 151 2 7332 3.99 2005-07-27T13:58:57Z 2020-02-15T06:59:50Z +4122 151 1 9253 4.99 2005-07-30T14:20:12Z 2020-02-15T06:59:50Z +4123 151 1 9890 4.99 2005-07-31T14:04:44Z 2020-02-15T06:59:50Z +4124 151 1 9969 2.99 2005-07-31T16:38:12Z 2020-02-15T06:59:50Z +4125 151 1 10078 2.99 2005-07-31T20:02:02Z 2020-02-15T06:59:50Z +4126 151 1 10311 4.99 2005-08-01T04:27:59Z 2020-02-15T06:59:50Z +4127 151 1 10662 2.99 2005-08-01T16:50:57Z 2020-02-15T06:59:50Z +4128 151 2 11714 2.99 2005-08-17T07:34:55Z 2020-02-15T06:59:50Z +4129 151 2 13230 0.99 2005-08-19T16:12:07Z 2020-02-15T06:59:50Z +4130 151 1 13568 5.99 2005-08-20T05:02:46Z 2020-02-15T06:59:50Z +4131 151 1 14856 4.99 2005-08-22T02:31:51Z 2020-02-15T06:59:50Z +4132 151 2 14922 3.99 2005-08-22T05:13:05Z 2020-02-15T06:59:50Z +4133 151 1 15227 4.99 2005-08-22T17:22:41Z 2020-02-15T06:59:50Z +4134 151 1 15926 2.99 2005-08-23T18:20:56Z 2020-02-15T06:59:50Z +4135 151 2 15996 2.99 2005-08-23T20:31:38Z 2020-02-15T06:59:50Z +4136 152 2 359 4.99 2005-05-27T06:48:33Z 2020-02-15T06:59:50Z +4137 152 1 745 4.99 2005-05-29T09:22:57Z 2020-02-15T06:59:50Z +4138 152 1 2882 4.99 2005-06-20T01:26:26Z 2020-02-15T06:59:50Z +4139 152 2 3577 2.99 2005-07-06T03:40:36Z 2020-02-15T06:59:50Z +4140 152 1 3786 7.99 2005-07-06T14:00:41Z 2020-02-15T06:59:50Z +4141 152 1 4974 4.99 2005-07-09T00:00:36Z 2020-02-15T06:59:50Z +4142 152 1 6273 0.99 2005-07-11T16:08:41Z 2020-02-15T06:59:50Z +4143 152 1 6612 2.99 2005-07-12T08:28:33Z 2020-02-15T06:59:50Z +4144 152 1 9010 5.99 2005-07-30T05:12:04Z 2020-02-15T06:59:50Z +4145 152 1 10320 6.99 2005-08-01T04:39:26Z 2020-02-15T06:59:50Z +4146 152 2 11638 6.99 2005-08-17T04:39:09Z 2020-02-15T06:59:50Z +4147 152 2 11783 0.99 2005-08-17T10:39:24Z 2020-02-15T06:59:50Z +4148 152 1 12697 2.99 2005-08-18T20:14:56Z 2020-02-15T06:59:50Z +4149 152 1 12917 4.99 2005-08-19T04:27:11Z 2020-02-15T06:59:50Z +4150 152 2 12960 1.99 2005-08-19T06:21:52Z 2020-02-15T06:59:50Z +4151 152 1 13204 4.99 2005-08-19T15:02:48Z 2020-02-15T06:59:50Z +4152 152 2 13484 0.99 2005-08-20T01:16:52Z 2020-02-15T06:59:50Z +4153 152 1 13986 0.99 2005-08-20T19:13:23Z 2020-02-15T06:59:50Z +4154 152 1 14173 0.99 2005-08-21T03:01:01Z 2020-02-15T06:59:50Z +4155 152 2 14668 4.99 2005-08-21T19:51:30Z 2020-02-15T06:59:50Z +4156 152 2 11848 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4157 153 1 2224 0.99 2005-06-18T03:33:58Z 2020-02-15T06:59:50Z +4158 153 1 2649 0.99 2005-06-19T10:20:09Z 2020-02-15T06:59:50Z +4159 153 1 2893 4.99 2005-06-20T02:22:08Z 2020-02-15T06:59:50Z +4160 153 1 2945 5.99 2005-06-20T05:49:27Z 2020-02-15T06:59:50Z +4161 153 1 3795 0.99 2005-07-06T14:37:41Z 2020-02-15T06:59:50Z +4162 153 1 3949 0.99 2005-07-06T21:46:36Z 2020-02-15T06:59:50Z +4163 153 1 4194 5.99 2005-07-07T10:59:39Z 2020-02-15T06:59:50Z +4164 153 2 4670 5.99 2005-07-08T10:14:18Z 2020-02-15T06:59:50Z +4165 153 2 5676 0.99 2005-07-10T08:38:32Z 2020-02-15T06:59:50Z +4166 153 2 5771 0.99 2005-07-10T13:26:45Z 2020-02-15T06:59:50Z +4167 153 2 6818 9.99 2005-07-12T18:20:54Z 2020-02-15T06:59:50Z +4168 153 2 7824 7.99 2005-07-28T08:34:47Z 2020-02-15T06:59:50Z +4169 153 2 9936 0.99 2005-07-31T15:27:41Z 2020-02-15T06:59:50Z +4170 153 2 10015 4.99 2005-07-31T18:11:17Z 2020-02-15T06:59:50Z +4171 153 2 11368 4.99 2005-08-02T18:03:05Z 2020-02-15T06:59:50Z +4172 153 1 12103 1.99 2005-08-17T22:49:09Z 2020-02-15T06:59:50Z +4173 153 1 12439 3.99 2005-08-18T10:44:57Z 2020-02-15T06:59:50Z +4174 153 1 12882 4.99 2005-08-19T03:33:46Z 2020-02-15T06:59:50Z +4175 153 1 14664 4.99 2005-08-21T19:48:47Z 2020-02-15T06:59:50Z +4176 153 1 14747 4.99 2005-08-21T23:00:02Z 2020-02-15T06:59:50Z +4177 153 1 14944 4.99 2005-08-22T06:01:26Z 2020-02-15T06:59:50Z +4178 153 2 15267 0.99 2005-08-22T18:37:48Z 2020-02-15T06:59:50Z +4179 153 2 15444 7.99 2005-08-23T00:46:52Z 2020-02-15T06:59:50Z +4180 153 1 15593 1.99 2005-08-23T06:15:09Z 2020-02-15T06:59:50Z +4181 154 1 469 5.99 2005-05-27T21:14:26Z 2020-02-15T06:59:50Z +4182 154 2 865 7.99 2005-05-30T03:39:44Z 2020-02-15T06:59:50Z +4183 154 2 978 5.99 2005-05-30T21:30:52Z 2020-02-15T06:59:50Z +4184 154 1 1963 0.99 2005-06-17T09:09:31Z 2020-02-15T06:59:50Z +4185 154 1 2886 4.99 2005-06-20T01:38:39Z 2020-02-15T06:59:50Z +4186 154 1 2985 2.99 2005-06-20T08:45:08Z 2020-02-15T06:59:50Z +4187 154 2 3806 7.99 2005-07-06T15:09:41Z 2020-02-15T06:59:50Z +4188 154 2 3912 0.99 2005-07-06T20:10:03Z 2020-02-15T06:59:50Z +4189 154 2 4132 4.99 2005-07-07T08:06:07Z 2020-02-15T06:59:50Z +4190 154 1 4252 2.99 2005-07-07T14:13:05Z 2020-02-15T06:59:50Z +4191 154 1 4850 5.99 2005-07-08T18:39:31Z 2020-02-15T06:59:50Z +4192 154 1 5101 0.99 2005-07-09T06:21:29Z 2020-02-15T06:59:50Z +4193 154 2 5760 2.99 2005-07-10T12:44:48Z 2020-02-15T06:59:50Z +4194 154 1 6048 0.99 2005-07-11T03:32:23Z 2020-02-15T06:59:50Z +4195 154 2 6993 4.99 2005-07-27T01:05:24Z 2020-02-15T06:59:50Z +4196 154 1 7055 4.99 2005-07-27T03:45:42Z 2020-02-15T06:59:50Z +4197 154 1 7156 4.99 2005-07-27T07:19:34Z 2020-02-15T06:59:50Z +4198 154 2 7900 1.99 2005-07-28T11:11:33Z 2020-02-15T06:59:50Z +4199 154 2 8334 7.99 2005-07-29T04:18:25Z 2020-02-15T06:59:50Z +4200 154 2 9286 2.99 2005-07-30T15:32:28Z 2020-02-15T06:59:50Z +4201 154 1 10278 6.99 2005-08-01T03:25:27Z 2020-02-15T06:59:50Z +4202 154 1 10851 4.99 2005-08-01T23:58:45Z 2020-02-15T06:59:50Z +4203 154 1 11296 5.99 2005-08-02T15:15:27Z 2020-02-15T06:59:50Z +4204 154 1 12341 0.99 2005-08-18T07:09:27Z 2020-02-15T06:59:50Z +4205 154 2 13861 4.99 2005-08-20T14:56:53Z 2020-02-15T06:59:50Z +4206 154 2 14731 2.99 2005-08-21T22:21:49Z 2020-02-15T06:59:50Z +4207 154 2 14793 7.99 2005-08-22T00:37:57Z 2020-02-15T06:59:50Z +4208 154 1 14918 6.99 2005-08-22T05:06:38Z 2020-02-15T06:59:50Z +4209 154 1 15351 0.99 2005-08-22T21:15:46Z 2020-02-15T06:59:50Z +4210 154 1 15721 2.99 2005-08-23T11:16:16Z 2020-02-15T06:59:50Z +4211 155 1 568 2.99 2005-05-28T09:57:36Z 2020-02-15T06:59:50Z +4212 155 2 1519 1.99 2005-06-15T23:55:27Z 2020-02-15T06:59:50Z +4213 155 1 1554 7.99 2005-06-16T02:16:47Z 2020-02-15T06:59:50Z +4214 155 1 2028 7.99 2005-06-17T13:08:08Z 2020-02-15T06:59:50Z +4215 155 1 2869 4.99 2005-06-20T00:09:25Z 2020-02-15T06:59:50Z +4216 155 2 3405 4.99 2005-06-21T15:58:25Z 2020-02-15T06:59:50Z +4217 155 1 5128 1.99 2005-07-09T07:25:54Z 2020-02-15T06:59:50Z +4218 155 1 6066 5.99 2005-07-11T04:32:42Z 2020-02-15T06:59:50Z +4219 155 1 6085 4.99 2005-07-11T05:24:36Z 2020-02-15T06:59:50Z +4220 155 2 6087 4.99 2005-07-11T05:29:22Z 2020-02-15T06:59:50Z +4221 155 1 6443 2.99 2005-07-12T00:35:51Z 2020-02-15T06:59:50Z +4222 155 1 7077 3.99 2005-07-27T04:13:02Z 2020-02-15T06:59:50Z +4223 155 1 7492 2.99 2005-07-27T19:54:18Z 2020-02-15T06:59:50Z +4224 155 2 7730 5.99 2005-07-28T04:59:48Z 2020-02-15T06:59:50Z +4225 155 2 9781 7.99 2005-07-31T10:13:02Z 2020-02-15T06:59:50Z +4226 155 1 10098 0.99 2005-07-31T20:41:17Z 2020-02-15T06:59:50Z +4227 155 1 11033 4.99 2005-08-02T05:54:17Z 2020-02-15T06:59:50Z +4228 155 2 11951 5.99 2005-08-17T17:14:02Z 2020-02-15T06:59:50Z +4229 155 1 14324 8.99 2005-08-21T08:10:56Z 2020-02-15T06:59:50Z +4230 155 2 14549 2.99 2005-08-21T15:54:21Z 2020-02-15T06:59:50Z +4231 155 1 14753 2.99 2005-08-21T23:11:43Z 2020-02-15T06:59:50Z +4232 155 2 14909 0.99 2005-08-22T04:48:44Z 2020-02-15T06:59:50Z +4233 155 1 15106 0.99 2005-08-22T12:01:48Z 2020-02-15T06:59:50Z +4234 155 2 11496 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4235 155 1 12352 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4236 156 2 899 6.99 2005-05-30T09:29:30Z 2020-02-15T06:59:50Z +4237 156 1 1052 4.99 2005-05-31T07:07:03Z 2020-02-15T06:59:50Z +4238 156 2 2089 9.99 2005-06-17T17:45:09Z 2020-02-15T06:59:50Z +4239 156 2 2221 0.99 2005-06-18T03:24:56Z 2020-02-15T06:59:50Z +4240 156 1 2658 4.99 2005-06-19T10:43:42Z 2020-02-15T06:59:50Z +4241 156 1 2782 0.99 2005-06-19T18:25:07Z 2020-02-15T06:59:50Z +4242 156 2 4394 2.99 2005-07-07T21:12:45Z 2020-02-15T06:59:50Z +4243 156 2 5534 4.99 2005-07-10T02:26:49Z 2020-02-15T06:59:50Z +4244 156 1 5828 2.99 2005-07-10T16:27:25Z 2020-02-15T06:59:50Z +4245 156 2 5908 0.99 2005-07-10T20:44:14Z 2020-02-15T06:59:50Z +4246 156 2 6540 6.99 2005-07-12T04:51:13Z 2020-02-15T06:59:50Z +4247 156 2 7389 2.99 2005-07-27T15:56:15Z 2020-02-15T06:59:50Z +4248 156 2 7822 4.99 2005-07-28T08:31:45Z 2020-02-15T06:59:50Z +4249 156 1 9409 6.99 2005-07-30T20:33:53Z 2020-02-15T06:59:50Z +4250 156 1 9696 0.99 2005-07-31T07:13:46Z 2020-02-15T06:59:50Z +4251 156 2 10309 6.99 2005-08-01T04:24:18Z 2020-02-15T06:59:50Z +4252 156 2 11490 2.99 2005-08-02T22:36:00Z 2020-02-15T06:59:50Z +4253 156 1 11587 5.99 2005-08-17T02:21:03Z 2020-02-15T06:59:50Z +4254 156 2 13530 0.99 2005-08-20T03:12:43Z 2020-02-15T06:59:50Z +4255 156 2 13531 2.99 2005-08-20T03:26:10Z 2020-02-15T06:59:50Z +4256 156 2 13802 2.99 2005-08-20T12:44:53Z 2020-02-15T06:59:50Z +4257 156 1 14794 1.99 2005-08-22T00:39:31Z 2020-02-15T06:59:50Z +4258 156 2 14831 4.99 2005-08-22T01:40:49Z 2020-02-15T06:59:50Z +4259 156 1 14914 0.99 2005-08-22T04:53:35Z 2020-02-15T06:59:50Z +4260 156 1 15408 6.99 2005-08-22T23:26:32Z 2020-02-15T06:59:50Z +4261 157 2 352 0.99 2005-05-27T05:48:19Z 2020-02-15T06:59:50Z +4262 157 1 642 4.99 2005-05-28T18:49:12Z 2020-02-15T06:59:50Z +4263 157 2 2340 0.99 2005-06-18T11:30:56Z 2020-02-15T06:59:50Z +4264 157 1 3739 0.99 2005-07-06T11:54:18Z 2020-02-15T06:59:50Z +4265 157 1 4253 5.99 2005-07-07T14:13:13Z 2020-02-15T06:59:50Z +4266 157 2 4435 3.99 2005-07-07T22:51:04Z 2020-02-15T06:59:50Z +4267 157 1 4919 0.99 2005-07-08T21:41:54Z 2020-02-15T06:59:50Z +4268 157 1 5862 4.99 2005-07-10T18:20:48Z 2020-02-15T06:59:50Z +4269 157 1 7110 2.99 2005-07-27T05:30:48Z 2020-02-15T06:59:50Z +4270 157 2 7195 2.99 2005-07-27T08:47:01Z 2020-02-15T06:59:50Z +4271 157 2 7499 4.99 2005-07-27T20:10:28Z 2020-02-15T06:59:50Z +4272 157 2 8163 0.99 2005-07-28T21:11:48Z 2020-02-15T06:59:50Z +4273 157 2 8337 0.99 2005-07-29T04:31:55Z 2020-02-15T06:59:50Z +4274 157 2 8347 0.99 2005-07-29T04:49:25Z 2020-02-15T06:59:50Z +4275 157 2 8576 4.99 2005-07-29T11:55:01Z 2020-02-15T06:59:50Z +4276 157 1 8707 0.99 2005-07-29T17:21:58Z 2020-02-15T06:59:50Z +4277 157 1 8827 4.99 2005-07-29T22:31:24Z 2020-02-15T06:59:50Z +4278 157 2 9237 2.99 2005-07-30T13:48:17Z 2020-02-15T06:59:50Z +4279 157 2 9264 4.99 2005-07-30T14:51:36Z 2020-02-15T06:59:50Z +4280 157 1 9958 2.99 2005-07-31T16:03:56Z 2020-02-15T06:59:50Z +4281 157 1 10203 4.99 2005-08-01T00:45:27Z 2020-02-15T06:59:50Z +4282 157 2 11249 4.99 2005-08-02T13:35:40Z 2020-02-15T06:59:50Z +4283 157 2 11335 4.99 2005-08-02T16:57:37Z 2020-02-15T06:59:50Z +4284 157 1 12213 5.99 2005-08-18T02:33:55Z 2020-02-15T06:59:50Z +4285 157 1 12464 6.99 2005-08-18T11:33:34Z 2020-02-15T06:59:50Z +4286 157 1 12916 0.99 2005-08-19T04:27:05Z 2020-02-15T06:59:50Z +4287 157 1 13097 4.99 2005-08-19T10:50:43Z 2020-02-15T06:59:50Z +4288 157 1 13214 4.99 2005-08-19T15:31:06Z 2020-02-15T06:59:50Z +4289 157 1 13481 6.99 2005-08-20T01:11:12Z 2020-02-15T06:59:50Z +4290 157 1 13728 2.99 2005-08-20T10:11:07Z 2020-02-15T06:59:50Z +4291 157 2 14974 4.99 2005-08-22T07:04:25Z 2020-02-15T06:59:50Z +4292 158 2 245 4.99 2005-05-26T13:46:59Z 2020-02-15T06:59:50Z +4293 158 1 293 5.99 2005-05-26T20:27:02Z 2020-02-15T06:59:50Z +4294 158 1 1380 0.99 2005-06-15T15:13:10Z 2020-02-15T06:59:50Z +4295 158 2 1790 4.99 2005-06-16T19:58:40Z 2020-02-15T06:59:50Z +4296 158 2 2035 6.99 2005-06-17T13:45:09Z 2020-02-15T06:59:50Z +4297 158 2 3203 8.99 2005-06-21T00:34:56Z 2020-02-15T06:59:50Z +4298 158 1 4117 8.99 2005-07-07T06:58:14Z 2020-02-15T06:59:50Z +4299 158 1 5672 2.99 2005-07-10T08:19:38Z 2020-02-15T06:59:50Z +4300 158 1 5988 4.99 2005-07-11T00:55:38Z 2020-02-15T06:59:50Z +4301 158 1 6416 2.99 2005-07-11T23:29:14Z 2020-02-15T06:59:50Z +4302 158 2 6901 5.99 2005-07-12T21:46:33Z 2020-02-15T06:59:50Z +4303 158 2 7159 2.99 2005-07-27T07:24:00Z 2020-02-15T06:59:50Z +4304 158 1 7732 0.99 2005-07-28T05:03:32Z 2020-02-15T06:59:50Z +4305 158 2 7952 2.99 2005-07-28T13:23:49Z 2020-02-15T06:59:50Z +4306 158 1 8750 2.99 2005-07-29T19:14:21Z 2020-02-15T06:59:50Z +4307 158 1 8957 1.99 2005-07-30T03:34:10Z 2020-02-15T06:59:50Z +4308 158 1 9393 2.99 2005-07-30T20:04:48Z 2020-02-15T06:59:50Z +4309 158 1 9713 1.99 2005-07-31T08:13:28Z 2020-02-15T06:59:50Z +4310 158 1 9801 2.99 2005-07-31T11:03:13Z 2020-02-15T06:59:50Z +4311 158 2 11077 4.99 2005-08-02T07:26:43Z 2020-02-15T06:59:50Z +4312 158 1 11103 6.99 2005-08-02T08:09:54Z 2020-02-15T06:59:50Z +4313 158 1 11272 0.99 2005-08-02T14:20:27Z 2020-02-15T06:59:50Z +4314 158 1 11420 2.99 2005-08-02T19:47:56Z 2020-02-15T06:59:50Z +4315 158 2 12070 1.99 2005-08-17T21:46:47Z 2020-02-15T06:59:50Z +4316 158 2 12421 5.99 2005-08-18T10:04:06Z 2020-02-15T06:59:50Z +4317 158 2 13212 1.99 2005-08-19T15:24:07Z 2020-02-15T06:59:50Z +4318 158 2 13854 2.99 2005-08-20T14:48:42Z 2020-02-15T06:59:50Z +4319 158 1 13926 2.99 2005-08-20T17:09:27Z 2020-02-15T06:59:50Z +4320 158 2 14028 0.99 2005-08-20T21:23:03Z 2020-02-15T06:59:50Z +4321 158 1 15763 2.99 2005-08-23T13:02:59Z 2020-02-15T06:59:50Z +4322 158 1 15796 5.99 2005-08-23T14:12:22Z 2020-02-15T06:59:50Z +4323 158 1 15802 5.99 2005-08-23T14:26:51Z 2020-02-15T06:59:50Z +4324 159 2 475 2.99 2005-05-27T22:16:26Z 2020-02-15T06:59:50Z +4325 159 2 549 1.99 2005-05-28T07:35:37Z 2020-02-15T06:59:50Z +4326 159 1 598 0.99 2005-05-28T14:04:50Z 2020-02-15T06:59:50Z +4327 159 1 832 3.99 2005-05-29T22:51:20Z 2020-02-15T06:59:50Z +4328 159 1 1695 0.99 2005-06-16T12:40:28Z 2020-02-15T06:59:50Z +4329 159 1 2572 0.99 2005-06-19T04:21:26Z 2020-02-15T06:59:50Z +4330 159 2 3914 5.99 2005-07-06T20:11:10Z 2020-02-15T06:59:50Z +4331 159 2 4273 4.99 2005-07-07T14:40:22Z 2020-02-15T06:59:50Z +4332 159 2 5656 0.99 2005-07-10T07:31:07Z 2020-02-15T06:59:50Z +4333 159 2 6885 4.99 2005-07-12T20:56:04Z 2020-02-15T06:59:50Z +4334 159 2 8212 2.99 2005-07-28T23:37:23Z 2020-02-15T06:59:50Z +4335 159 1 8470 0.99 2005-07-29T08:28:50Z 2020-02-15T06:59:50Z +4336 159 2 9022 3.99 2005-07-30T05:34:45Z 2020-02-15T06:59:50Z +4337 159 2 9132 0.99 2005-07-30T09:56:00Z 2020-02-15T06:59:50Z +4338 159 1 9559 7.99 2005-07-31T02:15:53Z 2020-02-15T06:59:50Z +4339 159 1 9917 4.99 2005-07-31T14:55:11Z 2020-02-15T06:59:50Z +4340 159 2 11225 4.99 2005-08-02T12:43:27Z 2020-02-15T06:59:50Z +4341 159 2 13270 1.99 2005-08-19T17:41:16Z 2020-02-15T06:59:50Z +4342 159 1 13933 0.99 2005-08-20T17:17:07Z 2020-02-15T06:59:50Z +4343 159 2 14575 8.99 2005-08-21T16:51:34Z 2020-02-15T06:59:50Z +4344 159 1 15197 0.99 2005-08-22T16:14:25Z 2020-02-15T06:59:50Z +4345 160 2 2314 4.99 2005-06-18T09:03:19Z 2020-02-15T06:59:50Z +4346 160 1 2465 2.99 2005-06-18T20:07:02Z 2020-02-15T06:59:50Z +4347 160 2 2873 2.99 2005-06-20T00:41:25Z 2020-02-15T06:59:50Z +4348 160 1 4842 0.99 2005-07-08T18:21:30Z 2020-02-15T06:59:50Z +4349 160 1 4908 5.99 2005-07-08T21:05:44Z 2020-02-15T06:59:50Z +4350 160 2 6364 6.99 2005-07-11T21:14:48Z 2020-02-15T06:59:50Z +4351 160 2 6448 1.99 2005-07-12T00:45:59Z 2020-02-15T06:59:50Z +4352 160 2 7500 0.99 2005-07-27T20:16:03Z 2020-02-15T06:59:50Z +4353 160 1 8184 4.99 2005-07-28T22:22:35Z 2020-02-15T06:59:50Z +4354 160 1 9681 0.99 2005-07-31T06:42:09Z 2020-02-15T06:59:50Z +4355 160 2 9758 2.99 2005-07-31T09:25:38Z 2020-02-15T06:59:50Z +4356 160 2 10089 2.99 2005-07-31T20:17:09Z 2020-02-15T06:59:50Z +4357 160 1 10305 2.99 2005-08-01T04:16:16Z 2020-02-15T06:59:50Z +4358 160 2 10788 0.99 2005-08-01T21:37:10Z 2020-02-15T06:59:50Z +4359 160 2 10958 4.99 2005-08-02T03:37:13Z 2020-02-15T06:59:50Z +4360 160 2 10979 5.99 2005-08-02T04:16:37Z 2020-02-15T06:59:50Z +4361 160 2 11154 2.99 2005-08-02T09:54:50Z 2020-02-15T06:59:50Z +4362 160 1 11803 2.99 2005-08-17T11:42:08Z 2020-02-15T06:59:50Z +4363 160 1 11888 7.99 2005-08-17T15:04:05Z 2020-02-15T06:59:50Z +4364 160 2 12334 2.99 2005-08-18T06:52:36Z 2020-02-15T06:59:50Z +4365 160 1 12435 7.99 2005-08-18T10:38:31Z 2020-02-15T06:59:50Z +4366 160 2 13093 6.99 2005-08-19T10:46:16Z 2020-02-15T06:59:50Z +4367 160 1 14868 4.99 2005-08-22T03:15:01Z 2020-02-15T06:59:50Z +4368 160 1 15112 2.99 2005-08-22T12:21:49Z 2020-02-15T06:59:50Z +4369 160 2 15642 2.99 2005-08-23T08:09:11Z 2020-02-15T06:59:50Z +4370 160 1 15962 4.99 2005-08-23T19:42:04Z 2020-02-15T06:59:50Z +4371 160 1 16027 3.99 2005-08-23T21:49:33Z 2020-02-15T06:59:50Z +4372 161 2 428 2.99 2005-05-27T16:10:58Z 2020-02-15T06:59:50Z +4373 161 2 477 3.99 2005-05-27T22:33:33Z 2020-02-15T06:59:50Z +4374 161 1 520 5.99 2005-05-28T03:27:37Z 2020-02-15T06:59:50Z +4375 161 2 539 0.99 2005-05-28T06:26:16Z 2020-02-15T06:59:50Z +4376 161 1 612 2.99 2005-05-28T15:24:54Z 2020-02-15T06:59:50Z +4377 161 1 1003 0.99 2005-05-31T00:48:20Z 2020-02-15T06:59:50Z +4378 161 1 1856 2.99 2005-06-17T01:02:00Z 2020-02-15T06:59:50Z +4379 161 1 3075 3.99 2005-06-20T14:52:19Z 2020-02-15T06:59:50Z +4380 161 1 3948 4.99 2005-07-06T21:45:53Z 2020-02-15T06:59:50Z +4381 161 2 4187 0.99 2005-07-07T10:41:31Z 2020-02-15T06:59:50Z +4382 161 2 4248 6.99 2005-07-07T13:59:20Z 2020-02-15T06:59:50Z +4383 161 1 4490 2.99 2005-07-08T01:26:32Z 2020-02-15T06:59:50Z +4384 161 2 5349 6.99 2005-07-09T17:35:35Z 2020-02-15T06:59:50Z +4385 161 2 6873 4.99 2005-07-12T20:20:50Z 2020-02-15T06:59:50Z +4386 161 1 7003 2.99 2005-07-27T01:32:06Z 2020-02-15T06:59:50Z +4387 161 2 8774 4.99 2005-07-29T20:05:04Z 2020-02-15T06:59:50Z +4388 161 1 9135 4.99 2005-07-30T10:06:53Z 2020-02-15T06:59:50Z +4389 161 2 9421 0.99 2005-07-30T21:08:32Z 2020-02-15T06:59:50Z +4390 161 1 10241 5.99 2005-08-01T02:12:25Z 2020-02-15T06:59:50Z +4391 161 1 10355 0.99 2005-08-01T05:47:37Z 2020-02-15T06:59:50Z +4392 161 1 10637 2.99 2005-08-01T15:44:09Z 2020-02-15T06:59:50Z +4393 161 1 10863 6.99 2005-08-02T00:18:07Z 2020-02-15T06:59:50Z +4394 161 2 10939 0.99 2005-08-02T03:06:20Z 2020-02-15T06:59:50Z +4395 161 1 11838 2.99 2005-08-17T13:06:00Z 2020-02-15T06:59:50Z +4396 161 2 14150 0.99 2005-08-21T02:23:03Z 2020-02-15T06:59:50Z +4397 161 1 14370 7.99 2005-08-21T09:35:14Z 2020-02-15T06:59:50Z +4398 161 1 15000 0.99 2005-08-22T07:54:58Z 2020-02-15T06:59:50Z +4399 161 2 15045 5.99 2005-08-22T09:53:23Z 2020-02-15T06:59:50Z +4400 161 2 15150 2.99 2005-08-22T14:12:05Z 2020-02-15T06:59:50Z +4401 161 1 15420 5.99 2005-08-22T23:55:51Z 2020-02-15T06:59:50Z +4402 162 1 285 1.99 2005-05-26T19:41:40Z 2020-02-15T06:59:50Z +4403 162 1 501 4.99 2005-05-28T01:09:36Z 2020-02-15T06:59:50Z +4404 162 1 688 4.99 2005-05-29T00:45:24Z 2020-02-15T06:59:50Z +4405 162 2 1339 4.99 2005-06-15T12:21:56Z 2020-02-15T06:59:50Z +4406 162 1 2366 0.99 2005-06-18T13:46:39Z 2020-02-15T06:59:50Z +4407 162 1 2547 4.99 2005-06-19T02:44:17Z 2020-02-15T06:59:50Z +4408 162 1 3040 0.99 2005-06-20T12:34:13Z 2020-02-15T06:59:50Z +4409 162 2 3180 0.99 2005-06-20T22:48:44Z 2020-02-15T06:59:50Z +4410 162 2 4982 2.99 2005-07-09T00:30:52Z 2020-02-15T06:59:50Z +4411 162 2 8478 4.99 2005-07-29T08:40:36Z 2020-02-15T06:59:50Z +4412 162 1 8582 4.99 2005-07-29T12:03:27Z 2020-02-15T06:59:50Z +4413 162 2 9167 4.99 2005-07-30T11:30:37Z 2020-02-15T06:59:50Z +4414 162 1 9726 7.99 2005-07-31T08:37:07Z 2020-02-15T06:59:50Z +4415 162 1 9775 0.99 2005-07-31T10:00:00Z 2020-02-15T06:59:50Z +4416 162 2 10093 5.99 2005-07-31T20:30:32Z 2020-02-15T06:59:50Z +4417 162 2 11012 0.99 2005-08-02T05:09:42Z 2020-02-15T06:59:50Z +4418 162 1 13288 4.99 2005-08-19T18:30:10Z 2020-02-15T06:59:50Z +4419 162 2 14301 1.99 2005-08-21T07:19:48Z 2020-02-15T06:59:50Z +4420 162 1 15332 4.99 2005-08-22T20:41:53Z 2020-02-15T06:59:50Z +4421 162 1 14220 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4422 163 2 1265 4.99 2005-06-15T07:00:50Z 2020-02-15T06:59:50Z +4423 163 2 2000 2.99 2005-06-17T11:32:30Z 2020-02-15T06:59:50Z +4424 163 2 2110 7.99 2005-06-17T19:45:49Z 2020-02-15T06:59:50Z +4425 163 2 2536 5.99 2005-06-19T01:41:34Z 2020-02-15T06:59:50Z +4426 163 1 2994 6.99 2005-06-20T09:17:05Z 2020-02-15T06:59:50Z +4427 163 1 3179 0.99 2005-06-20T22:37:59Z 2020-02-15T06:59:50Z +4428 163 2 3915 3.99 2005-07-06T20:16:46Z 2020-02-15T06:59:50Z +4429 163 1 4126 1.99 2005-07-07T07:24:11Z 2020-02-15T06:59:50Z +4430 163 2 5549 4.99 2005-07-10T02:58:29Z 2020-02-15T06:59:50Z +4431 163 1 5574 10.99 2005-07-10T03:54:38Z 2020-02-15T06:59:50Z +4432 163 1 6109 0.99 2005-07-11T07:20:57Z 2020-02-15T06:59:50Z +4433 163 1 6831 1.99 2005-07-12T18:44:04Z 2020-02-15T06:59:50Z +4434 163 1 7303 1.99 2005-07-27T12:54:39Z 2020-02-15T06:59:50Z +4435 163 1 7403 2.99 2005-07-27T16:22:09Z 2020-02-15T06:59:50Z +4436 163 2 8040 0.99 2005-07-28T16:39:43Z 2020-02-15T06:59:50Z +4437 163 2 8063 4.99 2005-07-28T17:15:11Z 2020-02-15T06:59:50Z +4438 163 2 8403 4.99 2005-07-29T06:26:39Z 2020-02-15T06:59:50Z +4439 163 2 10245 0.99 2005-08-01T02:24:09Z 2020-02-15T06:59:50Z +4440 163 2 11623 2.99 2005-08-17T04:15:47Z 2020-02-15T06:59:50Z +4441 163 2 11940 4.99 2005-08-17T16:56:28Z 2020-02-15T06:59:50Z +4442 163 1 12154 2.99 2005-08-18T00:23:56Z 2020-02-15T06:59:50Z +4443 163 2 12973 2.99 2005-08-19T06:48:11Z 2020-02-15T06:59:50Z +4444 163 2 13543 7.99 2005-08-20T03:43:13Z 2020-02-15T06:59:50Z +4445 163 2 14275 4.99 2005-08-21T06:30:30Z 2020-02-15T06:59:50Z +4446 163 2 14427 5.99 2005-08-21T11:26:06Z 2020-02-15T06:59:50Z +4447 163 1 15520 8.99 2005-08-23T03:30:45Z 2020-02-15T06:59:50Z +4448 163 1 15847 0.99 2005-08-23T15:39:38Z 2020-02-15T06:59:50Z +4449 163 2 11754 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4450 163 1 15282 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4451 164 2 1011 1.99 2005-05-31T02:05:39Z 2020-02-15T06:59:50Z +4452 164 2 1713 4.99 2005-06-16T14:28:33Z 2020-02-15T06:59:50Z +4453 164 2 2589 2.99 2005-06-19T05:21:27Z 2020-02-15T06:59:50Z +4454 164 1 3082 8.99 2005-06-20T15:32:11Z 2020-02-15T06:59:50Z +4455 164 2 4548 4.99 2005-07-08T04:21:54Z 2020-02-15T06:59:50Z +4456 164 1 5895 3.99 2005-07-10T20:13:19Z 2020-02-15T06:59:50Z +4457 164 1 6393 0.99 2005-07-11T22:28:12Z 2020-02-15T06:59:50Z +4458 164 2 6558 2.99 2005-07-12T05:16:07Z 2020-02-15T06:59:50Z +4459 164 1 6637 4.99 2005-07-12T09:57:39Z 2020-02-15T06:59:50Z +4460 164 2 6702 0.99 2005-07-12T12:48:03Z 2020-02-15T06:59:50Z +4461 164 1 6980 3.99 2005-07-27T00:50:30Z 2020-02-15T06:59:50Z +4462 164 1 7227 6.99 2005-07-27T09:53:43Z 2020-02-15T06:59:50Z +4463 164 2 8135 3.99 2005-07-28T20:03:25Z 2020-02-15T06:59:50Z +4464 164 2 8824 4.99 2005-07-29T22:22:58Z 2020-02-15T06:59:50Z +4465 164 2 11175 2.99 2005-08-02T10:38:47Z 2020-02-15T06:59:50Z +4466 164 2 13453 5.99 2005-08-20T00:30:51Z 2020-02-15T06:59:50Z +4467 165 2 338 4.99 2005-05-27T03:42:52Z 2020-02-15T06:59:50Z +4468 165 1 2013 3.99 2005-06-17T12:03:01Z 2020-02-15T06:59:50Z +4469 165 2 3195 2.99 2005-06-21T00:02:10Z 2020-02-15T06:59:50Z +4470 165 2 3531 4.99 2005-07-06T01:24:08Z 2020-02-15T06:59:50Z +4471 165 1 3784 5.99 2005-07-06T13:57:56Z 2020-02-15T06:59:50Z +4472 165 2 4304 0.99 2005-07-07T17:01:19Z 2020-02-15T06:59:50Z +4473 165 2 4945 2.99 2005-07-08T22:45:02Z 2020-02-15T06:59:50Z +4474 165 1 5472 4.99 2005-07-09T23:16:40Z 2020-02-15T06:59:50Z +4475 165 2 5658 4.99 2005-07-10T07:34:08Z 2020-02-15T06:59:50Z +4476 165 2 5901 6.99 2005-07-10T20:22:12Z 2020-02-15T06:59:50Z +4477 165 1 5973 0.99 2005-07-11T00:09:17Z 2020-02-15T06:59:50Z +4478 165 1 7074 2.99 2005-07-27T04:06:24Z 2020-02-15T06:59:50Z +4479 165 1 8608 0.99 2005-07-29T13:18:52Z 2020-02-15T06:59:50Z +4480 165 2 9182 7.99 2005-07-30T12:06:58Z 2020-02-15T06:59:50Z +4481 165 2 9685 4.99 2005-07-31T06:49:18Z 2020-02-15T06:59:50Z +4482 165 1 10565 4.99 2005-08-01T13:08:27Z 2020-02-15T06:59:50Z +4483 165 1 11484 2.99 2005-08-02T22:28:23Z 2020-02-15T06:59:50Z +4484 165 2 12643 4.99 2005-08-18T18:21:06Z 2020-02-15T06:59:50Z +4485 165 2 15007 1.99 2005-08-22T08:21:21Z 2020-02-15T06:59:50Z +4486 165 1 15801 3.99 2005-08-23T14:26:04Z 2020-02-15T06:59:50Z +4487 165 2 15834 5.99 2005-08-23T15:23:50Z 2020-02-15T06:59:50Z +4488 166 1 662 1.99 2005-05-28T21:09:31Z 2020-02-15T06:59:50Z +4489 166 2 1412 2.99 2005-06-15T17:09:48Z 2020-02-15T06:59:50Z +4490 166 1 2211 3.99 2005-06-18T02:29:10Z 2020-02-15T06:59:50Z +4491 166 1 2874 5.99 2005-06-20T00:42:26Z 2020-02-15T06:59:50Z +4492 166 1 3085 0.99 2005-06-20T15:42:33Z 2020-02-15T06:59:50Z +4493 166 2 3606 2.99 2005-07-06T05:28:02Z 2020-02-15T06:59:50Z +4494 166 1 3642 2.99 2005-07-06T07:18:20Z 2020-02-15T06:59:50Z +4495 166 2 4389 6.99 2005-07-07T20:58:58Z 2020-02-15T06:59:50Z +4496 166 1 4658 0.99 2005-07-08T09:51:11Z 2020-02-15T06:59:50Z +4497 166 1 5184 4.99 2005-07-09T10:14:34Z 2020-02-15T06:59:50Z +4498 166 2 5380 4.99 2005-07-09T19:08:44Z 2020-02-15T06:59:50Z +4499 166 1 5646 2.99 2005-07-10T07:08:09Z 2020-02-15T06:59:50Z +4500 166 1 5855 7.99 2005-07-10T17:54:06Z 2020-02-15T06:59:50Z +4501 166 2 6237 0.99 2005-07-11T14:19:12Z 2020-02-15T06:59:50Z +4502 166 2 6882 2.99 2005-07-12T20:50:39Z 2020-02-15T06:59:50Z +4503 166 1 7581 2.99 2005-07-27T23:14:35Z 2020-02-15T06:59:50Z +4504 166 1 8052 5.99 2005-07-28T16:57:31Z 2020-02-15T06:59:50Z +4505 166 1 9009 8.99 2005-07-30T05:12:01Z 2020-02-15T06:59:50Z +4506 166 2 10422 7.99 2005-08-01T08:17:11Z 2020-02-15T06:59:50Z +4507 166 2 12683 4.99 2005-08-18T19:50:43Z 2020-02-15T06:59:50Z +4508 166 1 12968 4.99 2005-08-19T06:38:18Z 2020-02-15T06:59:50Z +4509 166 2 13582 4.99 2005-08-20T05:28:11Z 2020-02-15T06:59:50Z +4510 166 2 13901 7.99 2005-08-20T16:06:53Z 2020-02-15T06:59:50Z +4511 166 2 14261 5.99 2005-08-21T06:07:24Z 2020-02-15T06:59:50Z +4512 166 2 14281 2.99 2005-08-21T06:40:48Z 2020-02-15T06:59:50Z +4513 166 1 15213 5.99 2005-08-22T16:49:02Z 2020-02-15T06:59:50Z +4514 166 2 15216 2.99 2005-08-22T16:57:02Z 2020-02-15T06:59:50Z +4515 166 2 15806 1.99 2005-08-23T14:31:50Z 2020-02-15T06:59:50Z +4516 167 1 280 2.99 2005-05-26T18:36:58Z 2020-02-15T06:59:50Z +4517 167 1 365 2.99 2005-05-27T07:31:20Z 2020-02-15T06:59:50Z +4518 167 1 927 4.99 2005-05-30T12:16:40Z 2020-02-15T06:59:50Z +4519 167 1 1416 3.99 2005-06-15T17:44:57Z 2020-02-15T06:59:50Z +4520 167 1 1509 5.99 2005-06-15T22:35:53Z 2020-02-15T06:59:50Z +4521 167 2 2381 5.99 2005-06-18T15:00:30Z 2020-02-15T06:59:50Z +4522 167 2 3518 4.99 2005-07-06T00:56:03Z 2020-02-15T06:59:50Z +4523 167 2 4493 0.99 2005-07-08T01:40:24Z 2020-02-15T06:59:50Z +4524 167 2 5131 0.99 2005-07-09T07:35:03Z 2020-02-15T06:59:50Z +4525 167 1 5178 4.99 2005-07-09T09:59:52Z 2020-02-15T06:59:50Z +4526 167 1 5191 0.99 2005-07-09T10:26:48Z 2020-02-15T06:59:50Z +4527 167 1 5413 4.99 2005-07-09T20:28:42Z 2020-02-15T06:59:50Z +4528 167 1 5781 2.99 2005-07-10T13:49:30Z 2020-02-15T06:59:50Z +4529 167 2 6269 4.99 2005-07-11T15:58:43Z 2020-02-15T06:59:50Z +4530 167 1 7608 4.99 2005-07-28T00:08:36Z 2020-02-15T06:59:50Z +4531 167 1 8092 2.99 2005-07-28T18:28:07Z 2020-02-15T06:59:50Z +4532 167 2 8227 4.99 2005-07-29T00:02:22Z 2020-02-15T06:59:50Z +4533 167 1 8318 2.99 2005-07-29T03:44:30Z 2020-02-15T06:59:50Z +4534 167 1 8793 0.99 2005-07-29T20:57:22Z 2020-02-15T06:59:50Z +4535 167 2 8864 0.99 2005-07-29T23:52:12Z 2020-02-15T06:59:50Z +4536 167 2 9563 4.99 2005-07-31T02:28:39Z 2020-02-15T06:59:50Z +4537 167 2 10285 3.99 2005-08-01T03:35:11Z 2020-02-15T06:59:50Z +4538 167 1 12642 4.99 2005-08-18T18:19:16Z 2020-02-15T06:59:50Z +4539 167 2 12717 4.99 2005-08-18T21:15:40Z 2020-02-15T06:59:50Z +4540 167 1 12978 4.99 2005-08-19T06:57:27Z 2020-02-15T06:59:50Z +4541 167 1 13825 6.99 2005-08-20T13:43:22Z 2020-02-15T06:59:50Z +4542 167 1 13870 1.99 2005-08-20T15:09:16Z 2020-02-15T06:59:50Z +4543 167 1 15003 3.99 2005-08-22T08:11:24Z 2020-02-15T06:59:50Z +4544 167 1 15050 0.99 2005-08-22T10:07:52Z 2020-02-15T06:59:50Z +4545 167 2 15478 0.99 2005-08-23T01:50:31Z 2020-02-15T06:59:50Z +4546 167 2 15530 4.99 2005-08-23T03:50:48Z 2020-02-15T06:59:50Z +4547 167 2 15915 4.99 2005-08-23T17:52:01Z 2020-02-15T06:59:50Z +4548 168 2 404 0.99 2005-05-27T13:31:51Z 2020-02-15T06:59:50Z +4549 168 1 488 4.99 2005-05-28T00:07:50Z 2020-02-15T06:59:50Z +4550 168 2 1222 4.99 2005-06-15T03:38:49Z 2020-02-15T06:59:50Z +4551 168 1 3530 2.99 2005-07-06T01:22:45Z 2020-02-15T06:59:50Z +4552 168 1 4308 5.99 2005-07-07T17:29:16Z 2020-02-15T06:59:50Z +4553 168 2 4363 5.99 2005-07-07T19:43:28Z 2020-02-15T06:59:50Z +4554 168 2 4953 2.99 2005-07-08T23:09:48Z 2020-02-15T06:59:50Z +4555 168 1 5459 0.99 2005-07-09T22:43:56Z 2020-02-15T06:59:50Z +4556 168 1 5907 5.99 2005-07-10T20:41:41Z 2020-02-15T06:59:50Z +4557 168 1 6334 5.99 2005-07-11T19:20:44Z 2020-02-15T06:59:50Z +4558 168 2 6444 0.99 2005-07-12T00:36:02Z 2020-02-15T06:59:50Z +4559 168 2 6809 3.99 2005-07-12T17:51:54Z 2020-02-15T06:59:50Z +4560 168 2 8352 1.99 2005-07-29T04:52:01Z 2020-02-15T06:59:50Z +4561 168 1 8527 1.99 2005-07-29T10:21:00Z 2020-02-15T06:59:50Z +4562 168 2 8659 6.99 2005-07-29T15:26:31Z 2020-02-15T06:59:50Z +4563 168 2 8883 1.99 2005-07-30T00:24:48Z 2020-02-15T06:59:50Z +4564 168 2 9197 4.99 2005-07-30T12:31:36Z 2020-02-15T06:59:50Z +4565 168 1 9418 4.99 2005-07-30T21:00:52Z 2020-02-15T06:59:50Z +4566 168 2 9857 6.99 2005-07-31T13:00:53Z 2020-02-15T06:59:50Z +4567 168 2 9899 4.99 2005-07-31T14:12:36Z 2020-02-15T06:59:50Z +4568 168 2 10270 0.99 2005-08-01T03:10:24Z 2020-02-15T06:59:50Z +4569 168 1 11551 0.99 2005-08-17T01:03:49Z 2020-02-15T06:59:50Z +4570 168 1 11627 10.99 2005-08-17T04:25:47Z 2020-02-15T06:59:50Z +4571 168 1 11631 1.99 2005-08-17T04:28:56Z 2020-02-15T06:59:50Z +4572 168 1 12545 6.99 2005-08-18T14:28:00Z 2020-02-15T06:59:50Z +4573 168 1 12781 2.99 2005-08-18T23:50:24Z 2020-02-15T06:59:50Z +4574 168 1 13018 8.99 2005-08-19T08:04:50Z 2020-02-15T06:59:50Z +4575 168 2 13532 4.99 2005-08-20T03:29:28Z 2020-02-15T06:59:50Z +4576 168 2 13811 0.99 2005-08-20T13:00:30Z 2020-02-15T06:59:50Z +4577 168 1 14090 2.99 2005-08-21T00:11:16Z 2020-02-15T06:59:50Z +4578 168 1 15033 3.99 2005-08-22T09:25:24Z 2020-02-15T06:59:50Z +4579 168 1 15165 2.99 2005-08-22T14:59:30Z 2020-02-15T06:59:50Z +4580 168 2 15683 2.99 2005-08-23T09:38:17Z 2020-02-15T06:59:50Z +4581 168 1 15894 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4582 169 2 527 3.99 2005-05-28T04:28:38Z 2020-02-15T06:59:50Z +4583 169 1 1087 4.99 2005-05-31T11:18:08Z 2020-02-15T06:59:50Z +4584 169 1 2023 4.99 2005-06-17T12:52:58Z 2020-02-15T06:59:50Z +4585 169 1 3261 2.99 2005-06-21T04:07:41Z 2020-02-15T06:59:50Z +4586 169 1 3493 8.99 2005-07-05T23:46:19Z 2020-02-15T06:59:50Z +4587 169 1 4687 4.99 2005-07-08T10:54:19Z 2020-02-15T06:59:50Z +4588 169 1 5066 2.99 2005-07-09T04:48:50Z 2020-02-15T06:59:50Z +4589 169 1 6143 3.99 2005-07-11T09:02:37Z 2020-02-15T06:59:50Z +4590 169 2 6453 4.99 2005-07-12T00:59:53Z 2020-02-15T06:59:50Z +4591 169 2 6488 9.99 2005-07-12T02:20:09Z 2020-02-15T06:59:50Z +4592 169 2 7187 6.99 2005-07-27T08:27:58Z 2020-02-15T06:59:50Z +4593 169 1 7597 0.99 2005-07-27T23:35:49Z 2020-02-15T06:59:50Z +4594 169 2 8558 4.99 2005-07-29T11:24:49Z 2020-02-15T06:59:50Z +4595 169 2 9203 0.99 2005-07-30T12:43:40Z 2020-02-15T06:59:50Z +4596 169 2 11687 5.99 2005-08-17T06:39:59Z 2020-02-15T06:59:50Z +4597 169 1 11898 5.99 2005-08-17T15:24:12Z 2020-02-15T06:59:50Z +4598 169 2 13198 2.99 2005-08-19T14:47:18Z 2020-02-15T06:59:50Z +4599 169 2 13237 1.99 2005-08-19T16:18:36Z 2020-02-15T06:59:50Z +4600 169 2 14435 0.99 2005-08-21T11:44:37Z 2020-02-15T06:59:50Z +4601 169 2 14805 4.99 2005-08-22T00:52:01Z 2020-02-15T06:59:50Z +4602 169 2 15534 0.99 2005-08-23T03:55:54Z 2020-02-15T06:59:50Z +4603 169 2 15680 4.99 2005-08-23T09:33:22Z 2020-02-15T06:59:50Z +4604 170 1 211 2.99 2005-05-26T08:33:10Z 2020-02-15T06:59:50Z +4605 170 1 377 5.99 2005-05-27T09:04:05Z 2020-02-15T06:59:50Z +4606 170 2 504 0.99 2005-05-28T02:05:34Z 2020-02-15T06:59:50Z +4607 170 2 2117 0.99 2005-06-17T20:24:00Z 2020-02-15T06:59:50Z +4608 170 2 2413 8.99 2005-06-18T16:59:34Z 2020-02-15T06:59:50Z +4609 170 2 3651 4.99 2005-07-06T07:40:31Z 2020-02-15T06:59:50Z +4610 170 1 3749 4.99 2005-07-06T12:18:03Z 2020-02-15T06:59:50Z +4611 170 2 4113 4.99 2005-07-07T06:49:52Z 2020-02-15T06:59:50Z +4612 170 2 4468 0.99 2005-07-08T00:17:59Z 2020-02-15T06:59:50Z +4613 170 2 5075 0.99 2005-07-09T05:12:07Z 2020-02-15T06:59:50Z +4614 170 1 5573 4.99 2005-07-10T03:50:47Z 2020-02-15T06:59:50Z +4615 170 2 5685 7.99 2005-07-10T09:01:38Z 2020-02-15T06:59:50Z +4616 170 2 5808 2.99 2005-07-10T15:17:33Z 2020-02-15T06:59:50Z +4617 170 1 7999 7.99 2005-07-28T15:10:14Z 2020-02-15T06:59:50Z +4618 170 2 9517 2.99 2005-07-31T00:41:23Z 2020-02-15T06:59:50Z +4619 170 1 9817 2.99 2005-07-31T11:33:31Z 2020-02-15T06:59:50Z +4620 170 1 10102 9.99 2005-07-31T20:49:10Z 2020-02-15T06:59:50Z +4621 170 2 10481 5.99 2005-08-01T10:17:26Z 2020-02-15T06:59:50Z +4622 170 1 11039 0.99 2005-08-02T06:00:53Z 2020-02-15T06:59:50Z +4623 170 2 12706 3.99 2005-08-18T20:44:34Z 2020-02-15T06:59:50Z +4624 170 1 12967 3.99 2005-08-19T06:37:51Z 2020-02-15T06:59:50Z +4625 170 1 13081 0.99 2005-08-19T10:19:06Z 2020-02-15T06:59:50Z +4626 170 2 13862 6.99 2005-08-20T14:57:01Z 2020-02-15T06:59:50Z +4627 170 2 14022 8.99 2005-08-20T21:08:49Z 2020-02-15T06:59:50Z +4628 170 2 14675 2.99 2005-08-21T20:01:51Z 2020-02-15T06:59:50Z +4629 170 1 15549 7.99 2005-08-23T04:27:06Z 2020-02-15T06:59:50Z +4630 171 2 804 9.99 2005-05-29T18:10:24Z 2020-02-15T06:59:50Z +4631 171 2 1676 0.99 2005-06-16T11:06:09Z 2020-02-15T06:59:50Z +4632 171 2 2004 4.99 2005-06-17T11:43:38Z 2020-02-15T06:59:50Z +4633 171 2 2199 5.99 2005-06-18T01:57:56Z 2020-02-15T06:59:50Z +4634 171 1 2497 4.99 2005-06-18T22:50:40Z 2020-02-15T06:59:50Z +4635 171 2 2599 5.99 2005-06-19T06:06:07Z 2020-02-15T06:59:50Z +4636 171 2 2788 2.99 2005-06-19T18:48:11Z 2020-02-15T06:59:50Z +4637 171 2 3338 6.99 2005-06-21T10:27:31Z 2020-02-15T06:59:50Z +4638 171 1 3621 0.99 2005-07-06T06:03:55Z 2020-02-15T06:59:50Z +4639 171 2 3745 2.99 2005-07-06T12:10:32Z 2020-02-15T06:59:50Z +4640 171 1 5660 5.99 2005-07-10T07:46:12Z 2020-02-15T06:59:50Z +4641 171 1 5986 4.99 2005-07-11T00:54:56Z 2020-02-15T06:59:50Z +4642 171 1 6766 2.99 2005-07-12T15:32:01Z 2020-02-15T06:59:50Z +4643 171 2 6774 0.99 2005-07-12T15:56:08Z 2020-02-15T06:59:50Z +4644 171 1 7037 3.99 2005-07-27T03:06:44Z 2020-02-15T06:59:50Z +4645 171 2 9066 4.99 2005-07-30T07:28:54Z 2020-02-15T06:59:50Z +4646 171 2 9084 5.99 2005-07-30T08:14:29Z 2020-02-15T06:59:50Z +4647 171 2 10622 4.99 2005-08-01T15:12:00Z 2020-02-15T06:59:50Z +4648 171 1 12600 4.99 2005-08-18T16:44:24Z 2020-02-15T06:59:50Z +4649 171 1 12962 5.99 2005-08-19T06:22:48Z 2020-02-15T06:59:50Z +4650 171 2 13087 6.99 2005-08-19T10:33:52Z 2020-02-15T06:59:50Z +4651 171 2 13292 0.99 2005-08-19T18:35:32Z 2020-02-15T06:59:50Z +4652 171 2 13433 0.99 2005-08-19T23:30:53Z 2020-02-15T06:59:50Z +4653 171 1 14270 1.99 2005-08-21T06:22:18Z 2020-02-15T06:59:50Z +4654 171 2 14615 9.99 2005-08-21T18:06:32Z 2020-02-15T06:59:50Z +4655 171 2 15810 0.99 2005-08-23T14:43:15Z 2020-02-15T06:59:50Z +4656 172 2 449 3.99 2005-05-27T19:13:15Z 2020-02-15T06:59:50Z +4657 172 1 685 6.99 2005-05-29T00:17:51Z 2020-02-15T06:59:50Z +4658 172 1 837 0.99 2005-05-30T00:02:08Z 2020-02-15T06:59:50Z +4659 172 2 1507 0.99 2005-06-15T22:25:26Z 2020-02-15T06:59:50Z +4660 172 1 2052 0.99 2005-06-17T15:14:43Z 2020-02-15T06:59:50Z +4661 172 2 3032 1.99 2005-06-20T11:58:30Z 2020-02-15T06:59:50Z +4662 172 1 4820 5.99 2005-07-08T17:25:23Z 2020-02-15T06:59:50Z +4663 172 1 4821 4.99 2005-07-08T17:28:08Z 2020-02-15T06:59:50Z +4664 172 2 4878 6.99 2005-07-08T19:33:49Z 2020-02-15T06:59:50Z +4665 172 2 6246 7.99 2005-07-11T14:57:51Z 2020-02-15T06:59:50Z +4666 172 1 6380 0.99 2005-07-11T21:55:40Z 2020-02-15T06:59:50Z +4667 172 1 6875 5.99 2005-07-12T20:23:05Z 2020-02-15T06:59:50Z +4668 172 1 7122 6.99 2005-07-27T06:03:18Z 2020-02-15T06:59:50Z +4669 172 1 7135 2.99 2005-07-27T06:34:32Z 2020-02-15T06:59:50Z +4670 172 1 7194 3.99 2005-07-27T08:39:58Z 2020-02-15T06:59:50Z +4671 172 2 7261 2.99 2005-07-27T11:15:01Z 2020-02-15T06:59:50Z +4672 172 1 7638 4.99 2005-07-28T01:13:26Z 2020-02-15T06:59:50Z +4673 172 2 8944 6.99 2005-07-30T03:11:44Z 2020-02-15T06:59:50Z +4674 172 1 9118 2.99 2005-07-30T09:24:18Z 2020-02-15T06:59:50Z +4675 172 2 9218 5.99 2005-07-30T13:14:35Z 2020-02-15T06:59:50Z +4676 172 1 10312 3.99 2005-08-01T04:29:06Z 2020-02-15T06:59:50Z +4677 172 2 10621 0.99 2005-08-01T15:10:26Z 2020-02-15T06:59:50Z +4678 172 2 11499 6.99 2005-08-16T22:54:12Z 2020-02-15T06:59:50Z +4679 172 2 12350 4.99 2005-08-18T07:29:46Z 2020-02-15T06:59:50Z +4680 172 2 12638 8.99 2005-08-18T18:11:39Z 2020-02-15T06:59:50Z +4681 172 2 13067 5.99 2005-08-19T09:51:17Z 2020-02-15T06:59:50Z +4682 172 2 13320 4.99 2005-08-19T19:35:33Z 2020-02-15T06:59:50Z +4683 172 1 13342 0.99 2005-08-19T20:21:36Z 2020-02-15T06:59:50Z +4684 172 2 13937 4.99 2005-08-20T17:22:51Z 2020-02-15T06:59:50Z +4685 172 1 14991 4.99 2005-08-22T07:50:44Z 2020-02-15T06:59:50Z +4686 172 2 15637 2.99 2005-08-23T07:53:38Z 2020-02-15T06:59:50Z +4687 172 1 15902 3.99 2005-08-23T17:28:03Z 2020-02-15T06:59:50Z +4688 172 2 16038 3.99 2005-08-23T22:14:31Z 2020-02-15T06:59:50Z +4689 173 2 578 2.99 2005-05-28T11:15:48Z 2020-02-15T06:59:50Z +4690 173 1 628 4.99 2005-05-28T17:05:46Z 2020-02-15T06:59:50Z +4691 173 2 1188 2.99 2005-06-15T01:04:07Z 2020-02-15T06:59:50Z +4692 173 2 2435 4.99 2005-06-18T18:12:26Z 2020-02-15T06:59:50Z +4693 173 1 2602 2.99 2005-06-19T06:10:08Z 2020-02-15T06:59:50Z +4694 173 2 3224 0.99 2005-06-21T02:11:36Z 2020-02-15T06:59:50Z +4695 173 1 3336 4.99 2005-06-21T10:14:27Z 2020-02-15T06:59:50Z +4696 173 2 3717 0.99 2005-07-06T10:53:34Z 2020-02-15T06:59:50Z +4697 173 1 4904 7.99 2005-07-08T20:53:27Z 2020-02-15T06:59:50Z +4698 173 2 5430 2.99 2005-07-09T21:19:54Z 2020-02-15T06:59:50Z +4699 173 2 5485 4.99 2005-07-09T23:55:25Z 2020-02-15T06:59:50Z +4700 173 1 5488 2.99 2005-07-10T00:02:06Z 2020-02-15T06:59:50Z +4701 173 2 5531 2.99 2005-07-10T02:13:59Z 2020-02-15T06:59:50Z +4702 173 1 5615 3.99 2005-07-10T05:18:51Z 2020-02-15T06:59:50Z +4703 173 2 6021 4.99 2005-07-11T02:10:18Z 2020-02-15T06:59:50Z +4704 173 1 7644 0.99 2005-07-28T01:27:33Z 2020-02-15T06:59:50Z +4705 173 2 8299 2.99 2005-07-29T02:56:00Z 2020-02-15T06:59:50Z +4706 173 2 8808 4.99 2005-07-29T21:39:07Z 2020-02-15T06:59:50Z +4707 173 2 8829 8.99 2005-07-29T22:33:34Z 2020-02-15T06:59:50Z +4708 173 1 9097 4.99 2005-07-30T08:40:35Z 2020-02-15T06:59:50Z +4709 173 2 9512 2.99 2005-07-31T00:26:30Z 2020-02-15T06:59:50Z +4710 173 1 10351 5.99 2005-08-01T05:32:13Z 2020-02-15T06:59:50Z +4711 173 2 12073 2.99 2005-08-17T21:50:39Z 2020-02-15T06:59:50Z +4712 173 1 12282 6.99 2005-08-18T04:54:20Z 2020-02-15T06:59:50Z +4713 173 2 12501 4.99 2005-08-18T13:13:13Z 2020-02-15T06:59:50Z +4714 173 1 14654 2.99 2005-08-21T19:36:59Z 2020-02-15T06:59:50Z +4715 173 2 15483 0.99 2005-08-23T02:02:53Z 2020-02-15T06:59:50Z +4716 173 1 15775 8.99 2005-08-23T13:25:44Z 2020-02-15T06:59:50Z +4717 173 1 16010 2.99 2005-08-23T21:10:24Z 2020-02-15T06:59:50Z +4718 174 1 41 5.99 2005-05-25T05:12:29Z 2020-02-15T06:59:50Z +4719 174 2 1071 4.99 2005-05-31T09:48:56Z 2020-02-15T06:59:50Z +4720 174 2 1566 7.99 2005-06-16T03:13:20Z 2020-02-15T06:59:50Z +4721 174 1 1609 0.99 2005-06-16T06:34:59Z 2020-02-15T06:59:50Z +4722 174 1 2326 5.99 2005-06-18T10:14:22Z 2020-02-15T06:59:50Z +4723 174 2 3446 1.99 2005-06-21T20:45:51Z 2020-02-15T06:59:50Z +4724 174 2 4803 1.99 2005-07-08T16:56:34Z 2020-02-15T06:59:50Z +4725 174 2 5414 4.99 2005-07-09T20:29:36Z 2020-02-15T06:59:50Z +4726 174 1 6909 4.99 2005-07-12T22:09:30Z 2020-02-15T06:59:50Z +4727 174 2 8348 7.99 2005-07-29T04:49:26Z 2020-02-15T06:59:50Z +4728 174 1 8754 4.99 2005-07-29T19:18:30Z 2020-02-15T06:59:50Z +4729 174 1 9301 4.99 2005-07-30T16:34:29Z 2020-02-15T06:59:50Z +4730 174 1 9847 2.99 2005-07-31T12:33:43Z 2020-02-15T06:59:50Z +4731 174 1 10363 2.99 2005-08-01T06:01:52Z 2020-02-15T06:59:50Z +4732 174 2 10398 4.99 2005-08-01T07:11:49Z 2020-02-15T06:59:50Z +4733 174 1 10559 8.99 2005-08-01T13:02:58Z 2020-02-15T06:59:50Z +4734 174 1 11525 0.99 2005-08-17T00:15:31Z 2020-02-15T06:59:50Z +4735 174 2 12886 5.99 2005-08-19T03:38:32Z 2020-02-15T06:59:50Z +4736 174 1 13185 0.99 2005-08-19T14:22:30Z 2020-02-15T06:59:50Z +4737 174 1 15892 1.99 2005-08-23T17:01:00Z 2020-02-15T06:59:50Z +4738 174 1 15975 4.99 2005-08-23T20:06:23Z 2020-02-15T06:59:50Z +4739 175 2 1495 0.99 2005-06-15T21:54:31Z 2020-02-15T06:59:50Z +4740 175 2 3266 4.99 2005-06-21T04:49:07Z 2020-02-15T06:59:50Z +4741 175 1 3625 4.99 2005-07-06T06:12:52Z 2020-02-15T06:59:50Z +4742 175 2 4167 5.99 2005-07-07T09:37:08Z 2020-02-15T06:59:50Z +4743 175 1 5232 1.99 2005-07-09T12:35:08Z 2020-02-15T06:59:50Z +4744 175 2 6865 7.99 2005-07-12T20:02:40Z 2020-02-15T06:59:50Z +4745 175 1 7448 2.99 2005-07-27T18:06:30Z 2020-02-15T06:59:50Z +4746 175 1 7771 0.99 2005-07-28T06:52:12Z 2020-02-15T06:59:50Z +4747 175 1 8244 2.99 2005-07-29T00:35:34Z 2020-02-15T06:59:50Z +4748 175 1 8264 4.99 2005-07-29T01:18:50Z 2020-02-15T06:59:50Z +4749 175 1 8440 3.99 2005-07-29T07:31:26Z 2020-02-15T06:59:50Z +4750 175 1 8817 4.99 2005-07-29T22:09:08Z 2020-02-15T06:59:50Z +4751 175 2 9941 4.99 2005-07-31T15:31:25Z 2020-02-15T06:59:50Z +4752 175 2 10229 7.99 2005-08-01T01:45:26Z 2020-02-15T06:59:50Z +4753 175 1 10875 0.99 2005-08-02T00:31:44Z 2020-02-15T06:59:50Z +4754 175 2 11618 4.99 2005-08-17T04:01:36Z 2020-02-15T06:59:50Z +4755 175 1 12509 0.99 2005-08-18T13:21:52Z 2020-02-15T06:59:50Z +4756 175 1 13016 4.99 2005-08-19T07:57:14Z 2020-02-15T06:59:50Z +4757 175 2 13833 6.99 2005-08-20T14:00:29Z 2020-02-15T06:59:50Z +4758 175 2 13997 6.99 2005-08-20T19:51:28Z 2020-02-15T06:59:50Z +4759 175 2 14507 4.99 2005-08-21T14:32:45Z 2020-02-15T06:59:50Z +4760 175 2 14897 2.99 2005-08-22T04:22:31Z 2020-02-15T06:59:50Z +4761 175 2 14060 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4762 175 2 13161 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4763 176 1 172 0.99 2005-05-26T03:17:42Z 2020-02-15T06:59:50Z +4764 176 2 380 6.99 2005-05-27T09:34:39Z 2020-02-15T06:59:50Z +4765 176 1 553 3.99 2005-05-28T08:14:44Z 2020-02-15T06:59:50Z +4766 176 1 663 1.99 2005-05-28T21:23:02Z 2020-02-15T06:59:50Z +4767 176 1 1062 7.99 2005-05-31T08:38:20Z 2020-02-15T06:59:50Z +4768 176 1 1291 5.99 2005-06-15T08:55:01Z 2020-02-15T06:59:50Z +4769 176 1 1741 7.99 2005-06-16T16:31:37Z 2020-02-15T06:59:50Z +4770 176 1 1836 6.99 2005-06-16T23:13:05Z 2020-02-15T06:59:50Z +4771 176 1 2181 8.99 2005-06-18T00:48:31Z 2020-02-15T06:59:50Z +4772 176 1 2218 2.99 2005-06-18T03:13:13Z 2020-02-15T06:59:50Z +4773 176 2 2427 2.99 2005-06-18T17:45:00Z 2020-02-15T06:59:50Z +4774 176 2 2503 1.99 2005-06-18T23:17:19Z 2020-02-15T06:59:50Z +4775 176 1 2922 4.99 2005-06-20T04:13:47Z 2020-02-15T06:59:50Z +4776 176 1 3643 4.99 2005-07-06T07:20:08Z 2020-02-15T06:59:50Z +4777 176 2 3931 6.99 2005-07-06T21:03:46Z 2020-02-15T06:59:50Z +4778 176 2 4121 3.99 2005-07-07T07:13:50Z 2020-02-15T06:59:50Z +4779 176 1 6035 2.99 2005-07-11T03:01:45Z 2020-02-15T06:59:50Z +4780 176 1 6354 6.99 2005-07-11T20:54:27Z 2020-02-15T06:59:50Z +4781 176 1 7017 4.99 2005-07-27T02:16:03Z 2020-02-15T06:59:50Z +4782 176 1 7025 2.99 2005-07-27T02:40:29Z 2020-02-15T06:59:50Z +4783 176 1 7210 2.99 2005-07-27T09:19:05Z 2020-02-15T06:59:50Z +4784 176 2 7521 2.99 2005-07-27T21:04:42Z 2020-02-15T06:59:50Z +4785 176 1 7751 5.99 2005-07-28T05:56:13Z 2020-02-15T06:59:50Z +4786 176 1 8279 2.99 2005-07-29T01:43:37Z 2020-02-15T06:59:50Z +4787 176 2 9145 6.99 2005-07-30T10:27:55Z 2020-02-15T06:59:50Z +4788 176 1 10277 2.99 2005-08-01T03:22:41Z 2020-02-15T06:59:50Z +4789 176 2 10441 0.99 2005-08-01T08:55:56Z 2020-02-15T06:59:50Z +4790 176 1 10862 2.99 2005-08-02T00:17:34Z 2020-02-15T06:59:50Z +4791 176 1 11678 5.99 2005-08-17T06:07:39Z 2020-02-15T06:59:50Z +4792 176 1 12299 2.99 2005-08-18T05:32:32Z 2020-02-15T06:59:50Z +4793 176 1 12718 2.99 2005-08-18T21:21:44Z 2020-02-15T06:59:50Z +4794 176 1 13170 7.99 2005-08-19T13:45:48Z 2020-02-15T06:59:50Z +4795 176 2 13186 5.99 2005-08-19T14:23:19Z 2020-02-15T06:59:50Z +4796 176 1 14083 7.99 2005-08-20T23:42:31Z 2020-02-15T06:59:50Z +4797 176 2 14232 1.99 2005-08-21T05:07:02Z 2020-02-15T06:59:50Z +4798 176 2 15311 4.99 2005-08-22T19:56:52Z 2020-02-15T06:59:50Z +4799 176 1 15933 4.99 2005-08-23T18:36:44Z 2020-02-15T06:59:50Z +4800 177 1 1393 2.99 2005-06-15T16:12:50Z 2020-02-15T06:59:50Z +4801 177 1 1524 2.99 2005-06-16T00:25:52Z 2020-02-15T06:59:50Z +4802 177 2 1621 4.99 2005-06-16T07:24:12Z 2020-02-15T06:59:50Z +4803 177 1 1738 0.99 2005-06-16T16:07:27Z 2020-02-15T06:59:50Z +4804 177 2 2467 2.99 2005-06-18T20:20:05Z 2020-02-15T06:59:50Z +4805 177 1 4760 0.99 2005-07-08T14:48:07Z 2020-02-15T06:59:50Z +4806 177 2 6217 9.99 2005-07-11T13:13:45Z 2020-02-15T06:59:50Z +4807 177 1 6284 2.99 2005-07-11T16:51:39Z 2020-02-15T06:59:50Z +4808 177 1 7493 3.99 2005-07-27T19:55:46Z 2020-02-15T06:59:50Z +4809 177 2 7674 1.99 2005-07-28T02:54:30Z 2020-02-15T06:59:50Z +4810 177 1 8139 0.99 2005-07-28T20:16:30Z 2020-02-15T06:59:50Z +4811 177 2 9190 1.99 2005-07-30T12:24:17Z 2020-02-15T06:59:50Z +4812 177 2 10321 4.99 2005-08-01T04:40:02Z 2020-02-15T06:59:50Z +4813 177 1 10661 2.99 2005-08-01T16:48:31Z 2020-02-15T06:59:50Z +4814 177 1 10710 0.99 2005-08-01T18:44:36Z 2020-02-15T06:59:50Z +4815 177 1 11195 0.99 2005-08-02T11:42:23Z 2020-02-15T06:59:50Z +4816 177 1 11376 5.99 2005-08-02T18:16:00Z 2020-02-15T06:59:50Z +4817 177 2 11662 6.99 2005-08-17T05:27:37Z 2020-02-15T06:59:50Z +4818 177 1 12623 4.99 2005-08-18T17:34:19Z 2020-02-15T06:59:50Z +4819 177 2 14093 0.99 2005-08-21T00:21:29Z 2020-02-15T06:59:50Z +4820 177 2 14310 0.99 2005-08-21T07:44:32Z 2020-02-15T06:59:50Z +4821 177 2 14849 2.99 2005-08-22T02:15:26Z 2020-02-15T06:59:50Z +4822 177 2 14883 0.99 2005-08-22T03:55:02Z 2020-02-15T06:59:50Z +4823 178 1 1292 6.99 2005-06-15T09:03:52Z 2020-02-15T06:59:50Z +4824 178 2 1458 6.99 2005-06-15T20:24:05Z 2020-02-15T06:59:50Z +4825 178 2 1568 2.99 2005-06-16T03:14:01Z 2020-02-15T06:59:50Z +4826 178 2 1745 3.99 2005-06-16T16:41:16Z 2020-02-15T06:59:50Z +4827 178 2 2124 1.99 2005-06-17T20:49:14Z 2020-02-15T06:59:50Z +4828 178 1 2293 4.99 2005-06-18T07:45:03Z 2020-02-15T06:59:50Z +4829 178 2 2844 6.99 2005-06-19T22:40:12Z 2020-02-15T06:59:50Z +4830 178 1 2898 9.99 2005-06-20T02:38:06Z 2020-02-15T06:59:50Z +4831 178 1 4915 2.99 2005-07-08T21:31:22Z 2020-02-15T06:59:50Z +4832 178 1 5015 2.99 2005-07-09T01:54:24Z 2020-02-15T06:59:50Z +4833 178 1 5057 4.99 2005-07-09T04:20:29Z 2020-02-15T06:59:50Z +4834 178 1 5094 10.99 2005-07-09T05:59:47Z 2020-02-15T06:59:50Z +4835 178 1 5984 2.99 2005-07-11T00:44:36Z 2020-02-15T06:59:50Z +4836 178 2 6347 4.99 2005-07-11T20:18:53Z 2020-02-15T06:59:50Z +4837 178 1 6554 5.99 2005-07-12T05:07:26Z 2020-02-15T06:59:50Z +4838 178 1 6566 6.99 2005-07-12T05:42:53Z 2020-02-15T06:59:50Z +4839 178 2 6606 2.99 2005-07-12T08:03:40Z 2020-02-15T06:59:50Z +4840 178 1 7959 4.99 2005-07-28T13:43:20Z 2020-02-15T06:59:50Z +4841 178 2 8069 0.99 2005-07-28T17:23:46Z 2020-02-15T06:59:50Z +4842 178 1 8287 3.99 2005-07-29T02:03:58Z 2020-02-15T06:59:50Z +4843 178 2 8388 5.99 2005-07-29T05:48:15Z 2020-02-15T06:59:50Z +4844 178 2 8696 4.99 2005-07-29T16:45:18Z 2020-02-15T06:59:50Z +4845 178 2 9004 4.99 2005-07-30T05:04:27Z 2020-02-15T06:59:50Z +4846 178 1 9311 7.99 2005-07-30T16:58:31Z 2020-02-15T06:59:50Z +4847 178 2 9879 4.99 2005-07-31T13:45:32Z 2020-02-15T06:59:50Z +4848 178 2 10125 0.99 2005-07-31T21:33:03Z 2020-02-15T06:59:50Z +4849 178 2 10562 0.99 2005-08-01T13:05:52Z 2020-02-15T06:59:50Z +4850 178 1 10802 5.99 2005-08-01T22:18:32Z 2020-02-15T06:59:50Z +4851 178 2 11319 6.99 2005-08-02T16:10:09Z 2020-02-15T06:59:50Z +4852 178 2 11884 6.99 2005-08-17T14:43:23Z 2020-02-15T06:59:50Z +4853 178 2 11927 3.99 2005-08-17T16:25:03Z 2020-02-15T06:59:50Z +4854 178 2 12049 6.99 2005-08-17T20:53:27Z 2020-02-15T06:59:50Z +4855 178 2 12727 2.99 2005-08-18T21:45:15Z 2020-02-15T06:59:50Z +4856 178 1 13127 2.99 2005-08-19T12:04:03Z 2020-02-15T06:59:50Z +4857 178 1 14104 4.99 2005-08-21T00:37:44Z 2020-02-15T06:59:50Z +4858 178 1 14257 7.99 2005-08-21T05:52:57Z 2020-02-15T06:59:50Z +4859 178 2 14314 2.99 2005-08-21T07:50:14Z 2020-02-15T06:59:50Z +4860 178 1 15323 4.99 2005-08-22T20:22:40Z 2020-02-15T06:59:50Z +4861 178 1 12897 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4862 179 1 502 0.99 2005-05-28T01:34:43Z 2020-02-15T06:59:50Z +4863 179 1 759 6.99 2005-05-29T10:57:57Z 2020-02-15T06:59:50Z +4864 179 1 1046 4.99 2005-05-31T06:42:30Z 2020-02-15T06:59:50Z +4865 179 2 1286 7.99 2005-06-15T08:41:13Z 2020-02-15T06:59:50Z +4866 179 1 2613 4.99 2005-06-19T07:25:50Z 2020-02-15T06:59:50Z +4867 179 1 3671 6.99 2005-07-06T09:01:29Z 2020-02-15T06:59:50Z +4868 179 1 3844 0.99 2005-07-06T16:37:58Z 2020-02-15T06:59:50Z +4869 179 1 4618 2.99 2005-07-08T08:00:20Z 2020-02-15T06:59:50Z +4870 179 2 6071 6.99 2005-07-11T04:50:03Z 2020-02-15T06:59:50Z +4871 179 1 6616 7.99 2005-07-12T08:37:30Z 2020-02-15T06:59:50Z +4872 179 1 6806 2.99 2005-07-12T17:31:43Z 2020-02-15T06:59:50Z +4873 179 1 7028 6.99 2005-07-27T02:54:25Z 2020-02-15T06:59:50Z +4874 179 1 7054 4.99 2005-07-27T03:43:28Z 2020-02-15T06:59:50Z +4875 179 1 7609 4.99 2005-07-28T00:11:00Z 2020-02-15T06:59:50Z +4876 179 1 8573 2.99 2005-07-29T11:51:25Z 2020-02-15T06:59:50Z +4877 179 1 8731 8.99 2005-07-29T18:23:57Z 2020-02-15T06:59:50Z +4878 179 2 9491 4.99 2005-07-30T23:45:23Z 2020-02-15T06:59:50Z +4879 179 2 9893 0.99 2005-07-31T14:07:21Z 2020-02-15T06:59:50Z +4880 179 1 10156 4.99 2005-07-31T22:36:00Z 2020-02-15T06:59:50Z +4881 179 1 10385 4.99 2005-08-01T06:39:55Z 2020-02-15T06:59:50Z +4882 179 2 10569 3.99 2005-08-01T13:18:23Z 2020-02-15T06:59:50Z +4883 179 1 11342 0.99 2005-08-02T17:11:35Z 2020-02-15T06:59:50Z +4884 179 2 13240 0.99 2005-08-19T16:22:14Z 2020-02-15T06:59:50Z +4885 179 1 13400 4.99 2005-08-19T22:11:44Z 2020-02-15T06:59:50Z +4886 179 2 13844 7.99 2005-08-20T14:30:26Z 2020-02-15T06:59:50Z +4887 179 2 13957 0.99 2005-08-20T18:09:04Z 2020-02-15T06:59:50Z +4888 179 2 14082 7.99 2005-08-20T23:42:00Z 2020-02-15T06:59:50Z +4889 179 1 14589 0.99 2005-08-21T17:28:55Z 2020-02-15T06:59:50Z +4890 179 1 15985 4.99 2005-08-23T20:20:23Z 2020-02-15T06:59:50Z +4891 180 1 1122 2.99 2005-05-31T16:39:33Z 2020-02-15T06:59:50Z +4892 180 2 2700 2.99 2005-06-19T13:31:52Z 2020-02-15T06:59:50Z +4893 180 1 2798 2.99 2005-06-19T19:07:48Z 2020-02-15T06:59:50Z +4894 180 2 4826 7.99 2005-07-08T17:44:25Z 2020-02-15T06:59:50Z +4895 180 1 4924 9.99 2005-07-08T21:55:25Z 2020-02-15T06:59:50Z +4896 180 2 5384 0.99 2005-07-09T19:17:46Z 2020-02-15T06:59:50Z +4897 180 2 5773 0.99 2005-07-10T13:31:09Z 2020-02-15T06:59:50Z +4898 180 1 5860 3.99 2005-07-10T18:08:49Z 2020-02-15T06:59:50Z +4899 180 1 7274 2.99 2005-07-27T11:35:34Z 2020-02-15T06:59:50Z +4900 180 2 8540 2.99 2005-07-29T10:52:51Z 2020-02-15T06:59:50Z +4901 180 2 8720 5.99 2005-07-29T17:48:32Z 2020-02-15T06:59:50Z +4902 180 1 9373 0.99 2005-07-30T19:05:36Z 2020-02-15T06:59:50Z +4903 180 2 9995 3.99 2005-07-31T17:30:47Z 2020-02-15T06:59:50Z +4904 180 1 10576 5.99 2005-08-01T13:46:02Z 2020-02-15T06:59:50Z +4905 180 1 10992 8.99 2005-08-02T04:41:17Z 2020-02-15T06:59:50Z +4906 180 1 12313 8.99 2005-08-18T06:07:31Z 2020-02-15T06:59:50Z +4907 180 1 13283 2.99 2005-08-19T18:10:19Z 2020-02-15T06:59:50Z +4908 180 2 13842 4.99 2005-08-20T14:29:37Z 2020-02-15T06:59:50Z +4909 180 1 13994 2.99 2005-08-20T19:33:21Z 2020-02-15T06:59:50Z +4910 180 1 14109 0.99 2005-08-21T00:52:58Z 2020-02-15T06:59:50Z +4911 180 1 14851 2.99 2005-08-22T02:20:44Z 2020-02-15T06:59:50Z +4912 180 1 15039 4.99 2005-08-22T09:37:54Z 2020-02-15T06:59:50Z +4913 180 1 12901 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4914 181 2 579 6.99 2005-05-28T11:19:23Z 2020-02-15T06:59:50Z +4915 181 1 1638 2.99 2005-06-16T08:32:36Z 2020-02-15T06:59:50Z +4916 181 1 2645 5.99 2005-06-19T09:50:35Z 2020-02-15T06:59:50Z +4917 181 2 3449 5.99 2005-06-21T21:01:27Z 2020-02-15T06:59:50Z +4918 181 2 3469 4.99 2005-06-21T22:48:59Z 2020-02-15T06:59:50Z +4919 181 1 3862 6.99 2005-07-06T17:35:22Z 2020-02-15T06:59:50Z +4920 181 2 4428 4.99 2005-07-07T22:29:40Z 2020-02-15T06:59:50Z +4921 181 2 6477 4.99 2005-07-12T01:38:42Z 2020-02-15T06:59:50Z +4922 181 1 6946 8.99 2005-07-26T23:40:07Z 2020-02-15T06:59:50Z +4923 181 1 7393 0.99 2005-07-27T16:02:52Z 2020-02-15T06:59:50Z +4924 181 1 7632 4.99 2005-07-28T01:02:40Z 2020-02-15T06:59:50Z +4925 181 1 8593 5.99 2005-07-29T12:38:14Z 2020-02-15T06:59:50Z +4926 181 1 8601 9.99 2005-07-29T13:03:31Z 2020-02-15T06:59:50Z +4927 181 2 9214 4.99 2005-07-30T13:10:14Z 2020-02-15T06:59:50Z +4928 181 2 9235 5.99 2005-07-30T13:47:17Z 2020-02-15T06:59:50Z +4929 181 1 9357 8.99 2005-07-30T18:37:00Z 2020-02-15T06:59:50Z +4930 181 1 9844 4.99 2005-07-31T12:26:31Z 2020-02-15T06:59:50Z +4931 181 2 10262 4.99 2005-08-01T03:01:26Z 2020-02-15T06:59:50Z +4932 181 2 10362 6.99 2005-08-01T05:55:13Z 2020-02-15T06:59:50Z +4933 181 2 10703 2.99 2005-08-01T18:37:39Z 2020-02-15T06:59:50Z +4934 181 1 10748 4.99 2005-08-01T20:01:24Z 2020-02-15T06:59:50Z +4935 181 1 10773 6.99 2005-08-01T20:53:45Z 2020-02-15T06:59:50Z +4936 181 2 11224 4.99 2005-08-02T12:40:38Z 2020-02-15T06:59:50Z +4937 181 1 12363 7.99 2005-08-18T07:52:49Z 2020-02-15T06:59:50Z +4938 181 1 12411 0.99 2005-08-18T09:47:57Z 2020-02-15T06:59:50Z +4939 181 1 12678 2.99 2005-08-18T19:41:27Z 2020-02-15T06:59:50Z +4940 181 2 12939 2.99 2005-08-19T05:38:25Z 2020-02-15T06:59:50Z +4941 181 2 13118 4.99 2005-08-19T11:39:58Z 2020-02-15T06:59:50Z +4942 181 2 13405 4.99 2005-08-19T22:20:49Z 2020-02-15T06:59:50Z +4943 181 2 13415 2.99 2005-08-19T22:48:09Z 2020-02-15T06:59:50Z +4944 181 2 14406 3.99 2005-08-21T10:46:35Z 2020-02-15T06:59:50Z +4945 181 2 15196 2.99 2005-08-22T16:11:32Z 2020-02-15T06:59:50Z +4946 181 2 15482 4.99 2005-08-23T02:01:20Z 2020-02-15T06:59:50Z +4947 181 2 13008 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4948 182 2 161 0.99 2005-05-26T01:51:48Z 2020-02-15T06:59:50Z +4949 182 2 425 3.99 2005-05-27T15:51:30Z 2020-02-15T06:59:50Z +4950 182 2 1542 3.99 2005-06-16T01:20:05Z 2020-02-15T06:59:50Z +4951 182 1 2049 2.99 2005-06-17T14:58:36Z 2020-02-15T06:59:50Z +4952 182 2 2120 5.99 2005-06-17T20:36:50Z 2020-02-15T06:59:50Z +4953 182 1 2234 0.99 2005-06-18T04:01:28Z 2020-02-15T06:59:50Z +4954 182 1 3509 2.99 2005-07-06T00:24:57Z 2020-02-15T06:59:50Z +4955 182 1 3697 6.99 2005-07-06T10:07:22Z 2020-02-15T06:59:50Z +4956 182 1 4174 2.99 2005-07-07T09:59:49Z 2020-02-15T06:59:50Z +4957 182 1 4349 0.99 2005-07-07T19:02:37Z 2020-02-15T06:59:50Z +4958 182 2 4513 1.99 2005-07-08T02:39:59Z 2020-02-15T06:59:50Z +4959 182 2 4591 3.99 2005-07-08T06:29:43Z 2020-02-15T06:59:50Z +4960 182 2 4784 0.99 2005-07-08T16:09:56Z 2020-02-15T06:59:50Z +4961 182 1 5521 2.99 2005-07-10T01:31:22Z 2020-02-15T06:59:50Z +4962 182 2 7229 0.99 2005-07-27T10:00:54Z 2020-02-15T06:59:50Z +4963 182 2 7863 0.99 2005-07-28T10:05:46Z 2020-02-15T06:59:50Z +4964 182 2 7880 4.99 2005-07-28T10:30:37Z 2020-02-15T06:59:50Z +4965 182 2 8048 8.99 2005-07-28T16:50:26Z 2020-02-15T06:59:50Z +4966 182 1 11055 4.99 2005-08-02T06:36:05Z 2020-02-15T06:59:50Z +4967 182 2 11785 3.99 2005-08-17T10:54:46Z 2020-02-15T06:59:50Z +4968 182 1 12573 4.99 2005-08-18T15:32:57Z 2020-02-15T06:59:50Z +4969 182 1 12840 6.99 2005-08-19T01:54:11Z 2020-02-15T06:59:50Z +4970 182 1 13285 2.99 2005-08-19T18:18:44Z 2020-02-15T06:59:50Z +4971 182 1 14586 5.99 2005-08-21T17:19:09Z 2020-02-15T06:59:50Z +4972 182 1 14953 6.99 2005-08-22T06:23:54Z 2020-02-15T06:59:50Z +4973 182 1 15043 1.99 2005-08-22T09:49:32Z 2020-02-15T06:59:50Z +4974 183 1 382 0.99 2005-05-27T10:12:00Z 2020-02-15T06:59:50Z +4975 183 1 1279 0.99 2005-06-15T08:13:57Z 2020-02-15T06:59:50Z +4976 183 2 2188 1.99 2005-06-18T01:19:04Z 2020-02-15T06:59:50Z +4977 183 2 2471 5.99 2005-06-18T20:31:00Z 2020-02-15T06:59:50Z +4978 183 1 3381 5.99 2005-06-21T14:02:59Z 2020-02-15T06:59:50Z +4979 183 1 3869 2.99 2005-07-06T17:56:46Z 2020-02-15T06:59:50Z +4980 183 2 4134 0.99 2005-07-07T08:14:24Z 2020-02-15T06:59:50Z +4981 183 2 4157 2.99 2005-07-07T09:04:26Z 2020-02-15T06:59:50Z +4982 183 1 5069 1.99 2005-07-09T04:56:30Z 2020-02-15T06:59:50Z +4983 183 2 5756 0.99 2005-07-10T12:39:28Z 2020-02-15T06:59:50Z +4984 183 1 6472 4.99 2005-07-12T01:33:25Z 2020-02-15T06:59:50Z +4985 183 1 6569 4.99 2005-07-12T05:47:40Z 2020-02-15T06:59:50Z +4986 183 2 7359 0.99 2005-07-27T14:51:04Z 2020-02-15T06:59:50Z +4987 183 2 9672 5.99 2005-07-31T06:34:06Z 2020-02-15T06:59:50Z +4988 183 1 9818 4.99 2005-07-31T11:34:32Z 2020-02-15T06:59:50Z +4989 183 2 9931 2.99 2005-07-31T15:18:19Z 2020-02-15T06:59:50Z +4990 183 2 10620 5.99 2005-08-01T15:09:17Z 2020-02-15T06:59:50Z +4991 183 2 11386 2.99 2005-08-02T18:24:03Z 2020-02-15T06:59:50Z +4992 183 2 12451 0.99 2005-08-18T11:04:42Z 2020-02-15T06:59:50Z +4993 183 2 12764 3.99 2005-08-18T23:14:15Z 2020-02-15T06:59:50Z +4994 183 2 12831 3.99 2005-08-19T01:40:43Z 2020-02-15T06:59:50Z +4995 183 1 13482 2.99 2005-08-20T01:14:30Z 2020-02-15T06:59:50Z +4996 183 1 13536 4.99 2005-08-20T03:35:16Z 2020-02-15T06:59:50Z +4997 184 1 196 2.99 2005-05-26T06:55:58Z 2020-02-15T06:59:50Z +4998 184 2 534 4.99 2005-05-28T06:15:25Z 2020-02-15T06:59:50Z +4999 184 1 567 1.99 2005-05-28T09:56:20Z 2020-02-15T06:59:50Z +5000 184 2 1976 2.99 2005-06-17T09:38:08Z 2020-02-15T06:59:50Z +5001 184 1 2312 0.99 2005-06-18T08:55:46Z 2020-02-15T06:59:50Z +5002 184 1 4314 0.99 2005-07-07T17:38:31Z 2020-02-15T06:59:50Z +5003 184 2 4882 6.99 2005-07-08T19:42:03Z 2020-02-15T06:59:50Z +5004 184 1 5891 0.99 2005-07-10T20:01:17Z 2020-02-15T06:59:50Z +5005 184 2 6493 2.99 2005-07-12T02:40:41Z 2020-02-15T06:59:50Z +5006 184 2 6700 6.99 2005-07-12T12:47:22Z 2020-02-15T06:59:50Z +5007 184 2 7051 4.99 2005-07-27T03:34:37Z 2020-02-15T06:59:50Z +5008 184 2 7686 6.99 2005-07-28T03:19:23Z 2020-02-15T06:59:50Z +5009 184 1 8892 4.99 2005-07-30T00:47:03Z 2020-02-15T06:59:50Z +5010 184 1 9162 0.99 2005-07-30T11:21:56Z 2020-02-15T06:59:50Z +5011 184 2 12166 9.99 2005-08-18T00:57:06Z 2020-02-15T06:59:50Z +5012 184 2 12454 2.99 2005-08-18T11:19:02Z 2020-02-15T06:59:50Z +5013 184 1 12532 2.99 2005-08-18T13:57:58Z 2020-02-15T06:59:50Z +5014 184 1 13134 0.99 2005-08-19T12:14:14Z 2020-02-15T06:59:50Z +5015 184 1 13262 5.99 2005-08-19T17:20:15Z 2020-02-15T06:59:50Z +5016 184 1 13303 4.99 2005-08-19T18:55:21Z 2020-02-15T06:59:50Z +5017 184 2 14472 4.99 2005-08-21T13:13:57Z 2020-02-15T06:59:50Z +5018 184 1 14801 5.99 2005-08-22T00:46:54Z 2020-02-15T06:59:50Z +5019 184 2 15611 0.99 2005-08-23T06:56:18Z 2020-02-15T06:59:50Z +5020 185 2 20 2.99 2005-05-25T01:48:41Z 2020-02-15T06:59:50Z +5021 185 2 154 0.99 2005-05-26T00:55:56Z 2020-02-15T06:59:50Z +5022 185 1 646 0.99 2005-05-28T19:16:14Z 2020-02-15T06:59:50Z +5023 185 1 2459 4.99 2005-06-18T19:44:08Z 2020-02-15T06:59:50Z +5024 185 1 3314 4.99 2005-06-21T08:17:00Z 2020-02-15T06:59:50Z +5025 185 1 3325 4.99 2005-06-21T08:51:44Z 2020-02-15T06:59:50Z +5026 185 1 4186 9.99 2005-07-07T10:32:25Z 2020-02-15T06:59:50Z +5027 185 1 4524 2.99 2005-07-08T03:10:48Z 2020-02-15T06:59:50Z +5028 185 2 4822 7.99 2005-07-08T17:28:47Z 2020-02-15T06:59:50Z +5029 185 2 6106 2.99 2005-07-11T07:05:06Z 2020-02-15T06:59:50Z +5030 185 1 6418 1.99 2005-07-11T23:36:27Z 2020-02-15T06:59:50Z +5031 185 1 6965 2.99 2005-07-27T00:15:18Z 2020-02-15T06:59:50Z +5032 185 1 7066 4.99 2005-07-27T03:53:52Z 2020-02-15T06:59:50Z +5033 185 1 8200 2.99 2005-07-28T23:10:46Z 2020-02-15T06:59:50Z +5034 185 2 8442 0.99 2005-07-29T07:33:07Z 2020-02-15T06:59:50Z +5035 185 1 8684 8.99 2005-07-29T16:16:33Z 2020-02-15T06:59:50Z +5036 185 2 9246 0.99 2005-07-30T14:12:31Z 2020-02-15T06:59:50Z +5037 185 2 9473 2.99 2005-07-30T23:04:13Z 2020-02-15T06:59:50Z +5038 185 2 11355 0.99 2005-08-02T17:37:43Z 2020-02-15T06:59:50Z +5039 185 1 12312 2.99 2005-08-18T06:07:26Z 2020-02-15T06:59:50Z +5040 185 1 12674 5.99 2005-08-18T19:24:56Z 2020-02-15T06:59:50Z +5041 185 1 12885 0.99 2005-08-19T03:37:25Z 2020-02-15T06:59:50Z +5042 185 2 14513 2.99 2005-08-21T14:51:35Z 2020-02-15T06:59:50Z +5043 186 1 581 1.99 2005-05-28T11:20:29Z 2020-02-15T06:59:50Z +5044 186 2 958 0.99 2005-05-30T17:58:03Z 2020-02-15T06:59:50Z +5045 186 1 1192 4.99 2005-06-15T01:18:39Z 2020-02-15T06:59:50Z +5046 186 1 1300 2.99 2005-06-15T09:36:19Z 2020-02-15T06:59:50Z +5047 186 1 1663 2.99 2005-06-16T10:14:15Z 2020-02-15T06:59:50Z +5048 186 2 2132 4.99 2005-06-17T21:05:06Z 2020-02-15T06:59:50Z +5049 186 2 2875 4.99 2005-06-20T00:47:18Z 2020-02-15T06:59:50Z +5050 186 1 3039 4.99 2005-06-20T12:32:30Z 2020-02-15T06:59:50Z +5051 186 2 6067 4.99 2005-07-11T04:34:49Z 2020-02-15T06:59:50Z +5052 186 2 7739 0.99 2005-07-28T05:21:51Z 2020-02-15T06:59:50Z +5053 186 1 7915 3.99 2005-07-28T11:49:46Z 2020-02-15T06:59:50Z +5054 186 1 8483 4.99 2005-07-29T08:50:18Z 2020-02-15T06:59:50Z +5055 186 2 8872 0.99 2005-07-30T00:13:54Z 2020-02-15T06:59:50Z +5056 186 2 9303 2.99 2005-07-30T16:35:59Z 2020-02-15T06:59:50Z +5057 186 2 9360 5.99 2005-07-30T18:39:43Z 2020-02-15T06:59:50Z +5058 186 1 10104 1.99 2005-07-31T20:49:14Z 2020-02-15T06:59:50Z +5059 186 1 10985 0.99 2005-08-02T04:30:19Z 2020-02-15T06:59:50Z +5060 186 1 11982 0.99 2005-08-17T18:13:07Z 2020-02-15T06:59:50Z +5061 186 1 12348 5.99 2005-08-18T07:21:47Z 2020-02-15T06:59:50Z +5062 186 1 12438 8.99 2005-08-18T10:42:52Z 2020-02-15T06:59:50Z +5063 186 1 13168 6.99 2005-08-19T13:37:28Z 2020-02-15T06:59:50Z +5064 186 2 13517 4.99 2005-08-20T02:33:17Z 2020-02-15T06:59:50Z +5065 186 1 13853 3.99 2005-08-20T14:47:02Z 2020-02-15T06:59:50Z +5066 186 1 14006 2.99 2005-08-20T20:21:36Z 2020-02-15T06:59:50Z +5067 186 2 14229 4.99 2005-08-21T04:57:15Z 2020-02-15T06:59:50Z +5068 186 2 14646 4.99 2005-08-21T19:14:48Z 2020-02-15T06:59:50Z +5069 186 2 14988 3.99 2005-08-22T07:46:05Z 2020-02-15T06:59:50Z +5070 186 2 15001 0.99 2005-08-22T08:00:49Z 2020-02-15T06:59:50Z +5071 186 2 15295 3.99 2005-08-22T19:36:21Z 2020-02-15T06:59:50Z +5072 186 1 15596 0.99 2005-08-23T06:19:51Z 2020-02-15T06:59:50Z +5073 186 1 14216 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5074 187 1 252 7.99 2005-05-26T14:39:53Z 2020-02-15T06:59:50Z +5075 187 2 1323 6.99 2005-06-15T10:55:17Z 2020-02-15T06:59:50Z +5076 187 2 1462 4.99 2005-06-15T20:37:40Z 2020-02-15T06:59:50Z +5077 187 2 1592 0.99 2005-06-16T05:14:37Z 2020-02-15T06:59:50Z +5078 187 2 2127 0.99 2005-06-17T20:54:48Z 2020-02-15T06:59:50Z +5079 187 2 2533 0.99 2005-06-19T01:34:26Z 2020-02-15T06:59:50Z +5080 187 1 2742 5.99 2005-06-19T16:05:47Z 2020-02-15T06:59:50Z +5081 187 1 3402 2.99 2005-06-21T15:54:37Z 2020-02-15T06:59:50Z +5082 187 2 3709 10.99 2005-07-06T10:26:56Z 2020-02-15T06:59:50Z +5083 187 1 4429 4.99 2005-07-07T22:32:47Z 2020-02-15T06:59:50Z +5084 187 2 5366 0.99 2005-07-09T18:28:37Z 2020-02-15T06:59:50Z +5085 187 1 5738 8.99 2005-07-10T11:50:51Z 2020-02-15T06:59:50Z +5086 187 2 5833 6.99 2005-07-10T16:39:24Z 2020-02-15T06:59:50Z +5087 187 1 6057 3.99 2005-07-11T04:03:40Z 2020-02-15T06:59:50Z +5088 187 2 6428 2.99 2005-07-12T00:01:51Z 2020-02-15T06:59:50Z +5089 187 2 7289 4.99 2005-07-27T12:26:51Z 2020-02-15T06:59:50Z +5090 187 2 7844 7.99 2005-07-28T09:16:19Z 2020-02-15T06:59:50Z +5091 187 2 7967 7.99 2005-07-28T13:56:51Z 2020-02-15T06:59:50Z +5092 187 1 9241 2.99 2005-07-30T13:58:41Z 2020-02-15T06:59:50Z +5093 187 1 11843 2.99 2005-08-17T13:14:50Z 2020-02-15T06:59:50Z +5094 187 2 12307 8.99 2005-08-18T05:48:23Z 2020-02-15T06:59:50Z +5095 187 2 12490 9.99 2005-08-18T12:48:45Z 2020-02-15T06:59:50Z +5096 187 1 12534 7.99 2005-08-18T14:04:41Z 2020-02-15T06:59:50Z +5097 187 2 13940 8.99 2005-08-20T17:28:57Z 2020-02-15T06:59:50Z +5098 187 2 14855 8.99 2005-08-22T02:27:32Z 2020-02-15T06:59:50Z +5099 187 2 15231 4.99 2005-08-22T17:32:57Z 2020-02-15T06:59:50Z +5100 187 2 15517 2.99 2005-08-23T03:13:01Z 2020-02-15T06:59:50Z +5101 187 2 15971 7.99 2005-08-23T19:59:33Z 2020-02-15T06:59:50Z +5102 188 2 1527 2.99 2005-06-16T00:31:40Z 2020-02-15T06:59:50Z +5103 188 2 1927 0.99 2005-06-17T06:48:19Z 2020-02-15T06:59:50Z +5104 188 1 2515 4.99 2005-06-18T23:57:31Z 2020-02-15T06:59:50Z +5105 188 2 2733 4.99 2005-06-19T15:21:53Z 2020-02-15T06:59:50Z +5106 188 2 3848 3.99 2005-07-06T16:47:32Z 2020-02-15T06:59:50Z +5107 188 2 4150 2.99 2005-07-07T08:43:22Z 2020-02-15T06:59:50Z +5108 188 2 5356 2.99 2005-07-09T18:08:28Z 2020-02-15T06:59:50Z +5109 188 2 5729 5.99 2005-07-10T11:27:25Z 2020-02-15T06:59:50Z +5110 188 2 6555 4.99 2005-07-12T05:08:16Z 2020-02-15T06:59:50Z +5111 188 2 7042 0.99 2005-07-27T03:20:18Z 2020-02-15T06:59:50Z +5112 188 1 7556 4.99 2005-07-27T22:17:17Z 2020-02-15T06:59:50Z +5113 188 2 9613 4.99 2005-07-31T03:58:53Z 2020-02-15T06:59:50Z +5114 188 2 10453 5.99 2005-08-01T09:13:27Z 2020-02-15T06:59:50Z +5115 188 1 10494 0.99 2005-08-01T10:45:21Z 2020-02-15T06:59:50Z +5116 188 2 10719 4.99 2005-08-01T19:00:28Z 2020-02-15T06:59:50Z +5117 188 2 10757 4.99 2005-08-01T20:22:44Z 2020-02-15T06:59:50Z +5118 188 2 11378 2.99 2005-08-02T18:16:52Z 2020-02-15T06:59:50Z +5119 188 1 13570 2.99 2005-08-20T05:04:57Z 2020-02-15T06:59:50Z +5120 188 1 13787 5.99 2005-08-20T12:15:23Z 2020-02-15T06:59:50Z +5121 188 1 14399 2.99 2005-08-21T10:33:23Z 2020-02-15T06:59:50Z +5122 188 2 14809 2.99 2005-08-22T01:00:42Z 2020-02-15T06:59:50Z +5123 188 2 15319 2.99 2005-08-22T20:17:17Z 2020-02-15T06:59:50Z +5124 188 2 15409 0.99 2005-08-22T23:26:32Z 2020-02-15T06:59:50Z +5125 188 2 15474 4.99 2005-08-23T01:39:10Z 2020-02-15T06:59:50Z +5126 188 1 14503 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5127 189 2 1117 5.99 2005-05-31T16:15:31Z 2020-02-15T06:59:50Z +5128 189 1 1541 0.99 2005-06-16T01:15:59Z 2020-02-15T06:59:50Z +5129 189 1 1834 0.99 2005-06-16T22:49:08Z 2020-02-15T06:59:50Z +5130 189 2 2905 1.99 2005-06-20T02:56:16Z 2020-02-15T06:59:50Z +5131 189 1 3108 6.99 2005-06-20T17:28:43Z 2020-02-15T06:59:50Z +5132 189 1 3346 2.99 2005-06-21T11:06:53Z 2020-02-15T06:59:50Z +5133 189 1 3763 0.99 2005-07-06T12:56:31Z 2020-02-15T06:59:50Z +5134 189 2 3813 4.99 2005-07-06T15:23:34Z 2020-02-15T06:59:50Z +5135 189 2 4203 0.99 2005-07-07T11:24:14Z 2020-02-15T06:59:50Z +5136 189 1 6193 5.99 2005-07-11T11:46:57Z 2020-02-15T06:59:50Z +5137 189 1 7469 4.99 2005-07-27T18:57:40Z 2020-02-15T06:59:50Z +5138 189 1 7675 4.99 2005-07-28T02:55:20Z 2020-02-15T06:59:50Z +5139 189 2 7790 2.99 2005-07-28T07:22:35Z 2020-02-15T06:59:50Z +5140 189 2 9171 5.99 2005-07-30T11:36:24Z 2020-02-15T06:59:50Z +5141 189 2 9386 0.99 2005-07-30T19:26:21Z 2020-02-15T06:59:50Z +5142 189 1 9506 4.99 2005-07-31T00:19:01Z 2020-02-15T06:59:50Z +5143 189 1 10247 9.99 2005-08-01T02:34:06Z 2020-02-15T06:59:50Z +5144 189 2 11059 6.99 2005-08-02T06:41:38Z 2020-02-15T06:59:50Z +5145 189 2 13601 6.99 2005-08-20T06:01:15Z 2020-02-15T06:59:50Z +5146 189 1 13766 3.99 2005-08-20T11:42:01Z 2020-02-15T06:59:50Z +5147 189 1 15773 1.99 2005-08-23T13:24:57Z 2020-02-15T06:59:50Z +5148 189 1 16008 5.99 2005-08-23T21:04:51Z 2020-02-15T06:59:50Z +5149 190 2 430 4.99 2005-05-27T16:22:10Z 2020-02-15T06:59:50Z +5150 190 1 693 2.99 2005-05-29T01:42:31Z 2020-02-15T06:59:50Z +5151 190 1 1319 2.99 2005-06-15T10:39:05Z 2020-02-15T06:59:50Z +5152 190 1 1347 2.99 2005-06-15T12:43:43Z 2020-02-15T06:59:50Z +5153 190 1 2057 4.99 2005-06-17T15:31:58Z 2020-02-15T06:59:50Z +5154 190 1 2568 3.99 2005-06-19T04:09:03Z 2020-02-15T06:59:50Z +5155 190 1 3386 4.99 2005-06-21T14:21:06Z 2020-02-15T06:59:50Z +5156 190 2 4005 5.99 2005-07-07T00:22:26Z 2020-02-15T06:59:50Z +5157 190 1 4140 2.99 2005-07-07T08:19:10Z 2020-02-15T06:59:50Z +5158 190 2 6867 3.99 2005-07-12T20:06:47Z 2020-02-15T06:59:50Z +5159 190 1 7175 4.99 2005-07-27T08:03:22Z 2020-02-15T06:59:50Z +5160 190 1 7386 5.99 2005-07-27T15:52:10Z 2020-02-15T06:59:50Z +5161 190 2 7404 2.99 2005-07-27T16:24:43Z 2020-02-15T06:59:50Z +5162 190 1 8498 0.99 2005-07-29T09:07:38Z 2020-02-15T06:59:50Z +5163 190 1 11082 5.99 2005-08-02T07:30:19Z 2020-02-15T06:59:50Z +5164 190 2 11158 6.99 2005-08-02T09:58:28Z 2020-02-15T06:59:50Z +5165 190 2 11276 4.99 2005-08-02T14:28:46Z 2020-02-15T06:59:50Z +5166 190 2 11312 6.99 2005-08-02T15:56:51Z 2020-02-15T06:59:50Z +5167 190 2 11750 0.99 2005-08-17T09:07:00Z 2020-02-15T06:59:50Z +5168 190 2 11950 9.99 2005-08-17T17:13:16Z 2020-02-15T06:59:50Z +5169 190 1 12270 2.99 2005-08-18T04:32:05Z 2020-02-15T06:59:50Z +5170 190 2 12381 0.99 2005-08-18T08:31:43Z 2020-02-15T06:59:50Z +5171 190 2 14065 0.99 2005-08-20T22:40:47Z 2020-02-15T06:59:50Z +5172 190 2 14141 4.99 2005-08-21T02:07:22Z 2020-02-15T06:59:50Z +5173 190 2 14166 2.99 2005-08-21T02:59:31Z 2020-02-15T06:59:50Z +5174 190 2 14650 0.99 2005-08-21T19:24:51Z 2020-02-15T06:59:50Z +5175 190 2 15167 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5176 191 1 1134 2.99 2005-05-31T19:14:15Z 2020-02-15T06:59:50Z +5177 191 2 1152 4.99 2005-05-31T21:32:17Z 2020-02-15T06:59:50Z +5178 191 2 1173 2.99 2005-06-14T23:54:46Z 2020-02-15T06:59:50Z +5179 191 1 1278 0.99 2005-06-15T08:09:12Z 2020-02-15T06:59:50Z +5180 191 1 1677 2.99 2005-06-16T11:07:11Z 2020-02-15T06:59:50Z +5181 191 2 1870 2.99 2005-06-17T02:24:36Z 2020-02-15T06:59:50Z +5182 191 1 2051 4.99 2005-06-17T15:10:16Z 2020-02-15T06:59:50Z +5183 191 2 2555 2.99 2005-06-19T03:07:02Z 2020-02-15T06:59:50Z +5184 191 1 5338 2.99 2005-07-09T17:07:07Z 2020-02-15T06:59:50Z +5185 191 2 5397 5.99 2005-07-09T19:43:51Z 2020-02-15T06:59:50Z +5186 191 1 5924 5.99 2005-07-10T21:41:23Z 2020-02-15T06:59:50Z +5187 191 1 7150 6.99 2005-07-27T07:11:14Z 2020-02-15T06:59:50Z +5188 191 1 7450 3.99 2005-07-27T18:18:35Z 2020-02-15T06:59:50Z +5189 191 1 7520 2.99 2005-07-27T21:02:02Z 2020-02-15T06:59:50Z +5190 191 2 8583 0.99 2005-07-29T12:04:50Z 2020-02-15T06:59:50Z +5191 191 1 9297 4.99 2005-07-30T16:26:29Z 2020-02-15T06:59:50Z +5192 191 1 9964 4.99 2005-07-31T16:17:39Z 2020-02-15T06:59:50Z +5193 191 2 10532 2.99 2005-08-01T12:06:35Z 2020-02-15T06:59:50Z +5194 191 2 15375 4.99 2005-08-22T22:12:02Z 2020-02-15T06:59:50Z +5195 191 1 14361 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5196 192 1 895 1.99 2005-05-30T08:50:43Z 2020-02-15T06:59:50Z +5197 192 1 2760 3.99 2005-06-19T17:16:33Z 2020-02-15T06:59:50Z +5198 192 1 3902 2.99 2005-07-06T19:25:18Z 2020-02-15T06:59:50Z +5199 192 1 4469 4.99 2005-07-08T00:18:32Z 2020-02-15T06:59:50Z +5200 192 1 5400 2.99 2005-07-09T19:56:40Z 2020-02-15T06:59:50Z +5201 192 2 6223 0.99 2005-07-11T13:27:09Z 2020-02-15T06:59:50Z +5202 192 2 6691 0.99 2005-07-12T12:26:38Z 2020-02-15T06:59:50Z +5203 192 2 7147 2.99 2005-07-27T07:02:34Z 2020-02-15T06:59:50Z +5204 192 2 8051 0.99 2005-07-28T16:56:16Z 2020-02-15T06:59:50Z +5205 192 2 8292 7.99 2005-07-29T02:29:36Z 2020-02-15T06:59:50Z +5206 192 1 9462 7.99 2005-07-30T22:30:44Z 2020-02-15T06:59:50Z +5207 192 1 9831 2.99 2005-07-31T11:59:32Z 2020-02-15T06:59:50Z +5208 192 2 10238 0.99 2005-08-01T02:08:05Z 2020-02-15T06:59:50Z +5209 192 1 10843 7.99 2005-08-01T23:43:03Z 2020-02-15T06:59:50Z +5210 192 1 11385 4.99 2005-08-02T18:23:11Z 2020-02-15T06:59:50Z +5211 192 1 11815 4.99 2005-08-17T12:13:26Z 2020-02-15T06:59:50Z +5212 192 1 13125 5.99 2005-08-19T11:57:49Z 2020-02-15T06:59:50Z +5213 192 2 14146 4.99 2005-08-21T02:13:31Z 2020-02-15T06:59:50Z +5214 192 2 14238 7.99 2005-08-21T05:16:40Z 2020-02-15T06:59:50Z +5215 192 1 14404 4.99 2005-08-21T10:43:04Z 2020-02-15T06:59:50Z +5216 192 2 14692 6.99 2005-08-21T20:43:21Z 2020-02-15T06:59:50Z +5217 192 2 15855 2.99 2005-08-23T15:59:01Z 2020-02-15T06:59:50Z +5218 192 1 11611 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5219 193 2 273 2.99 2005-05-26T16:29:36Z 2020-02-15T06:59:50Z +5220 193 2 464 0.99 2005-05-27T20:42:44Z 2020-02-15T06:59:50Z +5221 193 1 1325 4.99 2005-06-15T11:03:24Z 2020-02-15T06:59:50Z +5222 193 2 2377 6.99 2005-06-18T14:56:23Z 2020-02-15T06:59:50Z +5223 193 2 2841 6.99 2005-06-19T22:21:06Z 2020-02-15T06:59:50Z +5224 193 2 2846 4.99 2005-06-19T22:52:14Z 2020-02-15T06:59:50Z +5225 193 2 2880 2.99 2005-06-20T01:24:54Z 2020-02-15T06:59:50Z +5226 193 1 3297 8.99 2005-06-21T07:08:19Z 2020-02-15T06:59:50Z +5227 193 1 4892 6.99 2005-07-08T20:06:25Z 2020-02-15T06:59:50Z +5228 193 1 8211 2.99 2005-07-28T23:34:22Z 2020-02-15T06:59:50Z +5229 193 1 8379 4.99 2005-07-29T05:29:40Z 2020-02-15T06:59:50Z +5230 193 1 8431 4.99 2005-07-29T07:12:48Z 2020-02-15T06:59:50Z +5231 193 1 9079 2.99 2005-07-30T08:02:00Z 2020-02-15T06:59:50Z +5232 193 1 9575 4.99 2005-07-31T02:51:53Z 2020-02-15T06:59:50Z +5233 193 2 10462 2.99 2005-08-01T09:38:28Z 2020-02-15T06:59:50Z +5234 193 2 12384 0.99 2005-08-18T08:36:58Z 2020-02-15T06:59:50Z +5235 193 2 12658 4.99 2005-08-18T19:05:42Z 2020-02-15T06:59:50Z +5236 193 1 13529 2.99 2005-08-20T03:07:47Z 2020-02-15T06:59:50Z +5237 193 1 13608 0.99 2005-08-20T06:10:44Z 2020-02-15T06:59:50Z +5238 193 1 14679 2.99 2005-08-21T20:14:58Z 2020-02-15T06:59:50Z +5239 193 1 14927 4.99 2005-08-22T05:31:53Z 2020-02-15T06:59:50Z +5240 193 2 15164 4.99 2005-08-22T14:47:53Z 2020-02-15T06:59:50Z +5241 193 2 15344 6.99 2005-08-22T21:01:48Z 2020-02-15T06:59:50Z +5242 193 2 15495 5.99 2005-08-23T02:26:10Z 2020-02-15T06:59:50Z +5243 193 2 15729 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5244 194 2 334 4.99 2005-05-27T03:03:07Z 2020-02-15T06:59:50Z +5245 194 2 677 7.99 2005-05-28T23:00:08Z 2020-02-15T06:59:50Z +5246 194 1 1430 0.99 2005-06-15T18:24:55Z 2020-02-15T06:59:50Z +5247 194 1 2245 7.99 2005-06-18T04:52:59Z 2020-02-15T06:59:50Z +5248 194 1 2347 2.99 2005-06-18T12:12:29Z 2020-02-15T06:59:50Z +5249 194 1 2463 3.99 2005-06-18T20:01:43Z 2020-02-15T06:59:50Z +5250 194 1 2807 3.99 2005-06-19T19:32:53Z 2020-02-15T06:59:50Z +5251 194 2 4231 7.99 2005-07-07T12:48:19Z 2020-02-15T06:59:50Z +5252 194 2 5146 2.99 2005-07-09T08:14:58Z 2020-02-15T06:59:50Z +5253 194 1 5291 2.99 2005-07-09T15:15:02Z 2020-02-15T06:59:50Z +5254 194 2 5894 3.99 2005-07-10T20:09:34Z 2020-02-15T06:59:50Z +5255 194 1 9064 7.99 2005-07-30T07:24:55Z 2020-02-15T06:59:50Z +5256 194 2 11475 5.99 2005-08-02T21:55:09Z 2020-02-15T06:59:50Z +5257 194 2 12851 3.99 2005-08-19T02:12:12Z 2020-02-15T06:59:50Z +5258 194 1 13515 0.99 2005-08-20T02:29:47Z 2020-02-15T06:59:50Z +5259 194 2 13616 7.99 2005-08-20T06:30:33Z 2020-02-15T06:59:50Z +5260 194 1 14440 4.99 2005-08-21T11:59:04Z 2020-02-15T06:59:50Z +5261 194 2 15937 4.99 2005-08-23T18:43:22Z 2020-02-15T06:59:50Z +5262 195 1 4234 6.99 2005-07-07T13:01:35Z 2020-02-15T06:59:50Z +5263 195 1 4315 2.99 2005-07-07T17:40:26Z 2020-02-15T06:59:50Z +5264 195 1 5228 4.99 2005-07-09T12:26:01Z 2020-02-15T06:59:50Z +5265 195 1 5536 0.99 2005-07-10T02:29:42Z 2020-02-15T06:59:50Z +5266 195 2 6175 4.99 2005-07-11T10:44:37Z 2020-02-15T06:59:50Z +5267 195 1 7349 2.99 2005-07-27T14:33:00Z 2020-02-15T06:59:50Z +5268 195 2 8280 4.99 2005-07-29T01:45:51Z 2020-02-15T06:59:50Z +5269 195 2 8479 0.99 2005-07-29T08:42:04Z 2020-02-15T06:59:50Z +5270 195 2 9188 6.99 2005-07-30T12:19:54Z 2020-02-15T06:59:50Z +5271 195 1 9870 5.99 2005-07-31T13:22:51Z 2020-02-15T06:59:50Z +5272 195 1 9994 4.99 2005-07-31T17:30:31Z 2020-02-15T06:59:50Z +5273 195 2 10911 4.99 2005-08-02T01:58:36Z 2020-02-15T06:59:50Z +5274 195 1 11201 7.99 2005-08-02T11:49:16Z 2020-02-15T06:59:50Z +5275 195 2 11787 2.99 2005-08-17T10:59:00Z 2020-02-15T06:59:50Z +5276 195 2 12099 0.99 2005-08-17T22:38:54Z 2020-02-15T06:59:50Z +5277 195 2 12941 0.99 2005-08-19T05:39:26Z 2020-02-15T06:59:50Z +5278 195 2 13741 0.99 2005-08-20T10:48:47Z 2020-02-15T06:59:50Z +5279 195 2 14751 7.99 2005-08-21T23:11:23Z 2020-02-15T06:59:50Z +5280 195 2 16040 11.99 2005-08-23T22:19:33Z 2020-02-15T06:59:50Z +5281 196 2 106 11.99 2005-05-25T18:18:19Z 2020-02-15T06:59:50Z +5282 196 2 178 5.99 2005-05-26T04:21:46Z 2020-02-15T06:59:50Z +5283 196 2 491 2.99 2005-05-28T00:13:35Z 2020-02-15T06:59:50Z +5284 196 1 1053 1.99 2005-05-31T07:12:44Z 2020-02-15T06:59:50Z +5285 196 1 1182 5.99 2005-06-15T00:45:21Z 2020-02-15T06:59:50Z +5286 196 1 1348 2.99 2005-06-15T12:45:30Z 2020-02-15T06:59:50Z +5287 196 2 1600 0.99 2005-06-16T06:04:12Z 2020-02-15T06:59:50Z +5288 196 1 2681 0.99 2005-06-19T12:15:27Z 2020-02-15T06:59:50Z +5289 196 2 2912 4.99 2005-06-20T03:32:45Z 2020-02-15T06:59:50Z +5290 196 1 3104 4.99 2005-06-20T17:06:46Z 2020-02-15T06:59:50Z +5291 196 2 3271 5.99 2005-06-21T05:16:10Z 2020-02-15T06:59:50Z +5292 196 2 3342 4.99 2005-06-21T10:46:36Z 2020-02-15T06:59:50Z +5293 196 1 4879 2.99 2005-07-08T19:34:55Z 2020-02-15T06:59:50Z +5294 196 2 4999 4.99 2005-07-09T01:12:57Z 2020-02-15T06:59:50Z +5295 196 2 5143 4.99 2005-07-09T08:07:07Z 2020-02-15T06:59:50Z +5296 196 2 5353 3.99 2005-07-09T18:04:29Z 2020-02-15T06:59:50Z +5297 196 2 5768 4.99 2005-07-10T13:15:26Z 2020-02-15T06:59:50Z +5298 196 2 6857 4.99 2005-07-12T19:53:30Z 2020-02-15T06:59:50Z +5299 196 2 7666 3.99 2005-07-28T02:35:12Z 2020-02-15T06:59:50Z +5300 196 2 8266 0.99 2005-07-29T01:20:16Z 2020-02-15T06:59:50Z +5301 196 2 8472 1.99 2005-07-29T08:36:22Z 2020-02-15T06:59:50Z +5302 196 2 8700 0.99 2005-07-29T16:56:01Z 2020-02-15T06:59:50Z +5303 196 1 9346 5.99 2005-07-30T18:13:52Z 2020-02-15T06:59:50Z +5304 196 1 9721 6.99 2005-07-31T08:28:46Z 2020-02-15T06:59:50Z +5305 196 1 9804 4.99 2005-07-31T11:07:39Z 2020-02-15T06:59:50Z +5306 196 2 10122 10.99 2005-07-31T21:29:28Z 2020-02-15T06:59:50Z +5307 196 1 10191 4.99 2005-08-01T00:28:38Z 2020-02-15T06:59:50Z +5308 196 1 11104 2.99 2005-08-02T08:09:58Z 2020-02-15T06:59:50Z +5309 196 2 12430 0.99 2005-08-18T10:32:41Z 2020-02-15T06:59:50Z +5310 196 2 12684 0.99 2005-08-18T19:51:27Z 2020-02-15T06:59:50Z +5311 196 2 12836 0.99 2005-08-19T01:48:33Z 2020-02-15T06:59:50Z +5312 196 1 13799 8.99 2005-08-20T12:36:42Z 2020-02-15T06:59:50Z +5313 196 2 14410 5.99 2005-08-21T10:54:49Z 2020-02-15T06:59:50Z +5314 196 1 14698 5.99 2005-08-21T20:49:58Z 2020-02-15T06:59:50Z +5315 196 2 15980 0.99 2005-08-23T20:10:13Z 2020-02-15T06:59:50Z +5316 197 2 94 2.99 2005-05-25T16:03:42Z 2020-02-15T06:59:50Z +5317 197 1 215 0.99 2005-05-26T09:02:47Z 2020-02-15T06:59:50Z +5318 197 1 391 2.99 2005-05-27T11:03:55Z 2020-02-15T06:59:50Z +5319 197 2 649 1.99 2005-05-28T19:35:45Z 2020-02-15T06:59:50Z +5320 197 1 683 2.99 2005-05-29T00:09:48Z 2020-02-15T06:59:50Z +5321 197 2 730 3.99 2005-05-29T07:00:59Z 2020-02-15T06:59:50Z +5322 197 1 903 3.99 2005-05-30T10:11:29Z 2020-02-15T06:59:50Z +5323 197 1 918 0.99 2005-05-30T11:32:24Z 2020-02-15T06:59:50Z +5324 197 2 1175 2.99 2005-06-15T00:15:15Z 2020-02-15T06:59:50Z +5325 197 1 1363 0.99 2005-06-15T14:05:11Z 2020-02-15T06:59:50Z +5326 197 1 1503 2.99 2005-06-15T22:07:09Z 2020-02-15T06:59:50Z +5327 197 2 1605 8.99 2005-06-16T06:17:55Z 2020-02-15T06:59:50Z +5328 197 2 1919 4.99 2005-06-17T05:40:52Z 2020-02-15T06:59:50Z +5329 197 1 2090 2.99 2005-06-17T18:06:14Z 2020-02-15T06:59:50Z +5330 197 1 2750 4.99 2005-06-19T16:37:24Z 2020-02-15T06:59:50Z +5331 197 2 2781 2.99 2005-06-19T18:24:42Z 2020-02-15T06:59:50Z +5332 197 1 4486 8.99 2005-07-08T01:09:09Z 2020-02-15T06:59:50Z +5333 197 2 4739 4.99 2005-07-08T13:25:57Z 2020-02-15T06:59:50Z +5334 197 2 5182 6.99 2005-07-09T10:08:10Z 2020-02-15T06:59:50Z +5335 197 2 5344 0.99 2005-07-09T17:27:05Z 2020-02-15T06:59:50Z +5336 197 1 8165 2.99 2005-07-28T21:23:06Z 2020-02-15T06:59:50Z +5337 197 2 9378 4.99 2005-07-30T19:12:54Z 2020-02-15T06:59:50Z +5338 197 1 9476 0.99 2005-07-30T23:06:40Z 2020-02-15T06:59:50Z +5339 197 2 9585 4.99 2005-07-31T03:05:55Z 2020-02-15T06:59:50Z +5340 197 2 10460 3.99 2005-08-01T09:31:00Z 2020-02-15T06:59:50Z +5341 197 2 10666 0.99 2005-08-01T16:56:36Z 2020-02-15T06:59:50Z +5342 197 2 10739 4.99 2005-08-01T19:46:11Z 2020-02-15T06:59:50Z +5343 197 1 10743 2.99 2005-08-01T19:55:09Z 2020-02-15T06:59:50Z +5344 197 1 11018 4.99 2005-08-02T05:27:53Z 2020-02-15T06:59:50Z +5345 197 1 11215 4.99 2005-08-02T12:20:42Z 2020-02-15T06:59:50Z +5346 197 1 11311 4.99 2005-08-02T15:53:48Z 2020-02-15T06:59:50Z +5347 197 1 11478 2.99 2005-08-02T22:09:05Z 2020-02-15T06:59:50Z +5348 197 1 11643 1.99 2005-08-17T04:49:35Z 2020-02-15T06:59:50Z +5349 197 1 12799 0.99 2005-08-19T00:27:01Z 2020-02-15T06:59:50Z +5350 197 2 13913 3.99 2005-08-20T16:37:35Z 2020-02-15T06:59:50Z +5351 197 1 14069 9.99 2005-08-20T22:51:25Z 2020-02-15T06:59:50Z +5352 197 2 14951 4.99 2005-08-22T06:19:37Z 2020-02-15T06:59:50Z +5353 197 1 15078 2.99 2005-08-22T11:09:31Z 2020-02-15T06:59:50Z +5354 197 2 15233 0.99 2005-08-22T17:41:53Z 2020-02-15T06:59:50Z +5355 197 1 15540 8.99 2005-08-23T04:12:52Z 2020-02-15T06:59:50Z +5356 198 1 357 0.99 2005-05-27T06:37:15Z 2020-02-15T06:59:50Z +5357 198 1 582 4.99 2005-05-28T11:33:46Z 2020-02-15T06:59:50Z +5358 198 2 639 2.99 2005-05-28T18:25:02Z 2020-02-15T06:59:50Z +5359 198 1 932 2.99 2005-05-30T12:55:36Z 2020-02-15T06:59:50Z +5360 198 2 1132 4.99 2005-05-31T18:44:53Z 2020-02-15T06:59:50Z +5361 198 2 2185 0.99 2005-06-18T01:12:22Z 2020-02-15T06:59:50Z +5362 198 2 3770 2.99 2005-07-06T13:14:28Z 2020-02-15T06:59:50Z +5363 198 2 4588 2.99 2005-07-08T06:18:01Z 2020-02-15T06:59:50Z +5364 198 2 4750 0.99 2005-07-08T14:07:03Z 2020-02-15T06:59:50Z +5365 198 2 5794 4.99 2005-07-10T14:34:53Z 2020-02-15T06:59:50Z +5366 198 2 6567 4.99 2005-07-12T05:43:09Z 2020-02-15T06:59:50Z +5367 198 1 6819 4.99 2005-07-12T18:21:01Z 2020-02-15T06:59:50Z +5368 198 2 6889 4.99 2005-07-12T21:01:22Z 2020-02-15T06:59:50Z +5369 198 1 7287 0.99 2005-07-27T12:24:12Z 2020-02-15T06:59:50Z +5370 198 1 7441 5.99 2005-07-27T17:46:53Z 2020-02-15T06:59:50Z +5371 198 1 7583 2.99 2005-07-27T23:15:22Z 2020-02-15T06:59:50Z +5372 198 2 7622 0.99 2005-07-28T00:37:34Z 2020-02-15T06:59:50Z +5373 198 1 8145 5.99 2005-07-28T20:34:41Z 2020-02-15T06:59:50Z +5374 198 2 9389 0.99 2005-07-30T19:27:59Z 2020-02-15T06:59:50Z +5375 198 1 10112 4.99 2005-07-31T21:08:56Z 2020-02-15T06:59:50Z +5376 198 1 10147 2.99 2005-07-31T22:18:43Z 2020-02-15T06:59:50Z +5377 198 1 10679 0.99 2005-08-01T17:27:58Z 2020-02-15T06:59:50Z +5378 198 1 11351 3.99 2005-08-02T17:28:07Z 2020-02-15T06:59:50Z +5379 198 1 11594 6.99 2005-08-17T02:47:02Z 2020-02-15T06:59:50Z +5380 198 1 11756 2.99 2005-08-17T09:29:22Z 2020-02-15T06:59:50Z +5381 198 1 11836 4.99 2005-08-17T13:03:36Z 2020-02-15T06:59:50Z +5382 198 2 11949 2.99 2005-08-17T17:12:26Z 2020-02-15T06:59:50Z +5383 198 1 11957 1.99 2005-08-17T17:22:29Z 2020-02-15T06:59:50Z +5384 198 2 11985 2.99 2005-08-17T18:19:44Z 2020-02-15T06:59:50Z +5385 198 2 12594 4.99 2005-08-18T16:24:24Z 2020-02-15T06:59:50Z +5386 198 1 12862 5.99 2005-08-19T02:31:59Z 2020-02-15T06:59:50Z +5387 198 1 13768 5.99 2005-08-20T11:43:43Z 2020-02-15T06:59:50Z +5388 198 1 14214 5.99 2005-08-21T04:30:49Z 2020-02-15T06:59:50Z +5389 198 2 14380 2.99 2005-08-21T09:53:52Z 2020-02-15T06:59:50Z +5390 198 2 14990 4.99 2005-08-22T07:48:01Z 2020-02-15T06:59:50Z +5391 198 1 15256 6.99 2005-08-22T18:20:07Z 2020-02-15T06:59:50Z +5392 198 1 15433 4.99 2005-08-23T00:27:18Z 2020-02-15T06:59:50Z +5393 199 1 499 7.99 2005-05-28T01:05:07Z 2020-02-15T06:59:50Z +5394 199 1 1406 4.99 2005-06-15T16:44:00Z 2020-02-15T06:59:50Z +5395 199 1 1910 2.99 2005-06-17T05:11:27Z 2020-02-15T06:59:50Z +5396 199 1 3299 0.99 2005-06-21T07:23:34Z 2020-02-15T06:59:50Z +5397 199 1 4499 2.99 2005-07-08T02:08:48Z 2020-02-15T06:59:50Z +5398 199 2 4580 8.99 2005-07-08T06:04:23Z 2020-02-15T06:59:50Z +5399 199 1 4976 4.99 2005-07-09T00:03:30Z 2020-02-15T06:59:50Z +5400 199 2 5398 2.99 2005-07-09T19:44:58Z 2020-02-15T06:59:50Z +5401 199 2 5680 5.99 2005-07-10T08:47:36Z 2020-02-15T06:59:50Z +5402 199 2 6668 2.99 2005-07-12T11:37:45Z 2020-02-15T06:59:50Z +5403 199 2 6782 4.99 2005-07-12T16:23:25Z 2020-02-15T06:59:50Z +5404 199 1 7782 4.99 2005-07-28T07:13:40Z 2020-02-15T06:59:50Z +5405 199 1 8709 0.99 2005-07-29T17:25:54Z 2020-02-15T06:59:50Z +5406 199 1 9752 2.99 2005-07-31T09:22:02Z 2020-02-15T06:59:50Z +5407 199 2 9894 4.99 2005-07-31T14:07:44Z 2020-02-15T06:59:50Z +5408 199 1 9959 4.99 2005-07-31T16:04:22Z 2020-02-15T06:59:50Z +5409 199 1 10196 2.99 2005-08-01T00:34:51Z 2020-02-15T06:59:50Z +5410 199 2 10517 4.99 2005-08-01T11:41:57Z 2020-02-15T06:59:50Z +5411 199 1 10850 8.99 2005-08-01T23:53:45Z 2020-02-15T06:59:50Z +5412 199 1 11454 2.99 2005-08-02T21:04:39Z 2020-02-15T06:59:50Z +5413 199 1 12386 0.99 2005-08-18T08:45:57Z 2020-02-15T06:59:50Z +5414 199 2 14320 4.99 2005-08-21T08:04:40Z 2020-02-15T06:59:50Z +5415 199 2 15412 0.99 2005-08-22T23:37:11Z 2020-02-15T06:59:50Z +5416 199 2 15751 3.99 2005-08-23T12:41:07Z 2020-02-15T06:59:50Z +5417 199 2 13952 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5418 200 2 270 9.99 2005-05-26T16:20:56Z 2020-02-15T06:59:50Z +5419 200 2 1296 1.99 2005-06-15T09:23:59Z 2020-02-15T06:59:50Z +5420 200 2 1309 4.99 2005-06-15T10:10:49Z 2020-02-15T06:59:50Z +5421 200 2 1899 6.99 2005-06-17T04:29:15Z 2020-02-15T06:59:50Z +5422 200 1 2227 4.99 2005-06-18T03:43:23Z 2020-02-15T06:59:50Z +5423 200 2 2667 3.99 2005-06-19T11:28:46Z 2020-02-15T06:59:50Z +5424 200 2 2717 4.99 2005-06-19T14:46:10Z 2020-02-15T06:59:50Z +5425 200 1 3190 3.99 2005-06-20T23:27:15Z 2020-02-15T06:59:50Z +5426 200 1 3580 4.99 2005-07-06T03:48:44Z 2020-02-15T06:59:50Z +5427 200 1 5110 2.99 2005-07-09T06:57:25Z 2020-02-15T06:59:50Z +5428 200 1 6123 0.99 2005-07-11T08:02:27Z 2020-02-15T06:59:50Z +5429 200 2 6167 2.99 2005-07-11T10:21:21Z 2020-02-15T06:59:50Z +5430 200 1 6181 4.99 2005-07-11T11:10:11Z 2020-02-15T06:59:50Z +5431 200 1 6947 3.99 2005-07-26T23:42:03Z 2020-02-15T06:59:50Z +5432 200 1 7574 2.99 2005-07-27T22:53:00Z 2020-02-15T06:59:50Z +5433 200 2 8368 3.99 2005-07-29T05:15:41Z 2020-02-15T06:59:50Z +5434 200 2 8462 2.99 2005-07-29T08:15:42Z 2020-02-15T06:59:50Z +5435 200 1 9527 6.99 2005-07-31T01:02:24Z 2020-02-15T06:59:50Z +5436 200 1 10685 2.99 2005-08-01T17:49:38Z 2020-02-15T06:59:50Z +5437 200 1 11356 8.99 2005-08-02T17:42:40Z 2020-02-15T06:59:50Z +5438 200 1 13737 5.99 2005-08-20T10:41:50Z 2020-02-15T06:59:50Z +5439 200 1 14034 10.99 2005-08-20T21:31:52Z 2020-02-15T06:59:50Z +5440 200 2 14521 6.99 2005-08-21T15:01:32Z 2020-02-15T06:59:50Z +5441 200 2 15691 4.99 2005-08-23T09:53:54Z 2020-02-15T06:59:50Z +5442 200 2 15742 5.99 2005-08-23T12:11:37Z 2020-02-15T06:59:50Z +5443 200 1 15961 6.99 2005-08-23T19:35:42Z 2020-02-15T06:59:50Z +5444 200 2 11866 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5445 201 1 311 3.99 2005-05-26T22:51:37Z 2020-02-15T06:59:50Z +5446 201 1 670 6.99 2005-05-28T22:04:03Z 2020-02-15T06:59:50Z +5447 201 2 756 5.99 2005-05-29T10:28:45Z 2020-02-15T06:59:50Z +5448 201 1 2047 1.99 2005-06-17T14:40:58Z 2020-02-15T06:59:50Z +5449 201 1 2157 3.99 2005-06-17T23:30:52Z 2020-02-15T06:59:50Z +5450 201 2 2359 6.99 2005-06-18T13:04:42Z 2020-02-15T06:59:50Z +5451 201 1 3106 4.99 2005-06-20T17:18:06Z 2020-02-15T06:59:50Z +5452 201 1 3364 7.99 2005-06-21T12:37:46Z 2020-02-15T06:59:50Z +5453 201 2 3528 4.99 2005-07-06T01:13:27Z 2020-02-15T06:59:50Z +5454 201 2 3708 6.99 2005-07-06T10:23:27Z 2020-02-15T06:59:50Z +5455 201 1 7106 0.99 2005-07-27T05:21:24Z 2020-02-15T06:59:50Z +5456 201 2 7606 2.99 2005-07-28T00:02:15Z 2020-02-15T06:59:50Z +5457 201 2 9355 0.99 2005-07-30T18:35:25Z 2020-02-15T06:59:50Z +5458 201 2 10750 5.99 2005-08-01T20:06:00Z 2020-02-15T06:59:50Z +5459 201 2 10865 3.99 2005-08-02T00:22:46Z 2020-02-15T06:59:50Z +5460 201 1 10891 0.99 2005-08-02T01:09:55Z 2020-02-15T06:59:50Z +5461 201 2 11807 0.99 2005-08-17T11:51:15Z 2020-02-15T06:59:50Z +5462 201 2 13076 4.99 2005-08-19T10:10:26Z 2020-02-15T06:59:50Z +5463 201 2 13613 9.99 2005-08-20T06:23:53Z 2020-02-15T06:59:50Z +5464 201 2 13671 3.99 2005-08-20T08:27:03Z 2020-02-15T06:59:50Z +5465 201 2 13672 2.99 2005-08-20T08:27:27Z 2020-02-15T06:59:50Z +5466 201 2 14656 2.99 2005-08-21T19:39:28Z 2020-02-15T06:59:50Z +5467 201 1 14973 2.99 2005-08-22T06:59:28Z 2020-02-15T06:59:50Z +5468 201 1 15887 2.99 2005-08-23T16:54:09Z 2020-02-15T06:59:50Z +5469 201 2 15974 5.99 2005-08-23T20:06:04Z 2020-02-15T06:59:50Z +5470 202 1 1474 2.99 2005-06-15T20:55:42Z 2020-02-15T06:59:50Z +5471 202 1 1535 4.99 2005-06-16T00:52:04Z 2020-02-15T06:59:50Z +5472 202 1 3008 0.99 2005-06-20T10:23:25Z 2020-02-15T06:59:50Z +5473 202 2 3148 0.99 2005-06-20T20:27:18Z 2020-02-15T06:59:50Z +5474 202 1 3861 8.99 2005-07-06T17:24:49Z 2020-02-15T06:59:50Z +5475 202 2 4567 4.99 2005-07-08T05:20:04Z 2020-02-15T06:59:50Z +5476 202 2 5194 2.99 2005-07-09T10:31:34Z 2020-02-15T06:59:50Z +5477 202 1 5297 2.99 2005-07-09T15:32:29Z 2020-02-15T06:59:50Z +5478 202 2 5838 2.99 2005-07-10T17:04:56Z 2020-02-15T06:59:50Z +5479 202 1 7613 2.99 2005-07-28T00:13:58Z 2020-02-15T06:59:50Z +5480 202 1 8351 2.99 2005-07-29T04:50:53Z 2020-02-15T06:59:50Z +5481 202 1 8779 2.99 2005-07-29T20:15:00Z 2020-02-15T06:59:50Z +5482 202 1 8830 2.99 2005-07-29T22:34:35Z 2020-02-15T06:59:50Z +5483 202 2 8930 0.99 2005-07-30T02:28:38Z 2020-02-15T06:59:50Z +5484 202 2 9057 2.99 2005-07-30T07:14:18Z 2020-02-15T06:59:50Z +5485 202 2 9467 8.99 2005-07-30T22:45:34Z 2020-02-15T06:59:50Z +5486 202 2 9751 4.99 2005-07-31T09:20:50Z 2020-02-15T06:59:50Z +5487 202 1 10375 2.99 2005-08-01T06:26:22Z 2020-02-15T06:59:50Z +5488 202 1 11210 4.99 2005-08-02T12:15:54Z 2020-02-15T06:59:50Z +5489 202 2 11924 4.99 2005-08-17T16:22:05Z 2020-02-15T06:59:50Z +5490 202 2 12801 8.99 2005-08-19T00:27:19Z 2020-02-15T06:59:50Z +5491 202 1 13196 4.99 2005-08-19T14:40:32Z 2020-02-15T06:59:50Z +5492 202 1 13528 3.99 2005-08-20T03:03:31Z 2020-02-15T06:59:50Z +5493 202 1 14019 3.99 2005-08-20T20:59:15Z 2020-02-15T06:59:50Z +5494 202 1 15095 0.99 2005-08-22T11:41:35Z 2020-02-15T06:59:50Z +5495 202 2 15772 4.99 2005-08-23T13:22:56Z 2020-02-15T06:59:50Z +5496 203 1 314 0.99 2005-05-26T23:09:41Z 2020-02-15T06:59:50Z +5497 203 1 1217 4.99 2005-06-15T03:24:14Z 2020-02-15T06:59:50Z +5498 203 1 1715 2.99 2005-06-16T14:37:12Z 2020-02-15T06:59:50Z +5499 203 2 2939 7.99 2005-06-20T05:18:16Z 2020-02-15T06:59:50Z +5500 203 2 3406 2.99 2005-06-21T16:00:18Z 2020-02-15T06:59:50Z +5501 203 2 4136 2.99 2005-07-07T08:15:52Z 2020-02-15T06:59:50Z +5502 203 2 5579 5.99 2005-07-10T04:04:29Z 2020-02-15T06:59:50Z +5503 203 2 7787 6.99 2005-07-28T07:19:02Z 2020-02-15T06:59:50Z +5504 203 1 8039 0.99 2005-07-28T16:35:16Z 2020-02-15T06:59:50Z +5505 203 1 8463 4.99 2005-07-29T08:17:51Z 2020-02-15T06:59:50Z +5506 203 1 8792 7.99 2005-07-29T20:56:14Z 2020-02-15T06:59:50Z +5507 203 2 9015 10.99 2005-07-30T05:21:32Z 2020-02-15T06:59:50Z +5508 203 2 10700 3.99 2005-08-01T18:26:31Z 2020-02-15T06:59:50Z +5509 203 2 10805 2.99 2005-08-01T22:23:37Z 2020-02-15T06:59:50Z +5510 203 1 11712 2.99 2005-08-17T07:32:51Z 2020-02-15T06:59:50Z +5511 203 1 12519 0.99 2005-08-18T13:42:14Z 2020-02-15T06:59:50Z +5512 203 2 13841 4.99 2005-08-20T14:25:18Z 2020-02-15T06:59:50Z +5513 203 2 14505 5.99 2005-08-21T14:26:28Z 2020-02-15T06:59:50Z +5514 203 2 15798 2.99 2005-08-23T14:23:03Z 2020-02-15T06:59:50Z +5515 203 2 15991 2.99 2005-08-23T20:27:34Z 2020-02-15T06:59:50Z +5516 204 2 251 0.99 2005-05-26T14:35:40Z 2020-02-15T06:59:50Z +5517 204 2 399 4.99 2005-05-27T12:48:38Z 2020-02-15T06:59:50Z +5518 204 2 857 4.99 2005-05-30T02:01:23Z 2020-02-15T06:59:50Z +5519 204 1 1016 1.99 2005-05-31T02:49:43Z 2020-02-15T06:59:50Z +5520 204 1 1321 2.99 2005-06-15T10:49:17Z 2020-02-15T06:59:50Z +5521 204 1 1616 7.99 2005-06-16T07:04:52Z 2020-02-15T06:59:50Z +5522 204 1 1871 4.99 2005-06-17T02:25:12Z 2020-02-15T06:59:50Z +5523 204 2 1894 7.99 2005-06-17T04:18:48Z 2020-02-15T06:59:50Z +5524 204 2 2186 2.99 2005-06-18T01:15:27Z 2020-02-15T06:59:50Z +5525 204 2 2734 4.99 2005-06-19T15:36:27Z 2020-02-15T06:59:50Z +5526 204 1 4043 0.99 2005-07-07T03:09:50Z 2020-02-15T06:59:50Z +5527 204 1 4979 4.99 2005-07-09T00:24:34Z 2020-02-15T06:59:50Z +5528 204 2 5145 0.99 2005-07-09T08:13:25Z 2020-02-15T06:59:50Z +5529 204 1 5619 2.99 2005-07-10T05:29:33Z 2020-02-15T06:59:50Z +5530 204 2 6004 4.99 2005-07-11T01:34:25Z 2020-02-15T06:59:50Z +5531 204 2 6225 2.99 2005-07-11T13:45:14Z 2020-02-15T06:59:50Z +5532 204 2 6631 0.99 2005-07-12T09:31:43Z 2020-02-15T06:59:50Z +5533 204 1 6694 6.99 2005-07-12T12:39:23Z 2020-02-15T06:59:50Z +5534 204 2 6871 2.99 2005-07-12T20:13:49Z 2020-02-15T06:59:50Z +5535 204 1 7392 4.99 2005-07-27T16:01:05Z 2020-02-15T06:59:50Z +5536 204 2 9005 0.99 2005-07-30T05:04:58Z 2020-02-15T06:59:50Z +5537 204 1 9394 5.99 2005-07-30T20:06:24Z 2020-02-15T06:59:50Z +5538 204 2 9906 4.99 2005-07-31T14:38:12Z 2020-02-15T06:59:50Z +5539 204 2 10042 2.99 2005-07-31T19:01:25Z 2020-02-15T06:59:50Z +5540 204 2 10399 5.99 2005-08-01T07:13:39Z 2020-02-15T06:59:50Z +5541 204 1 11261 7.99 2005-08-02T13:54:26Z 2020-02-15T06:59:50Z +5542 204 2 11886 0.99 2005-08-17T14:58:51Z 2020-02-15T06:59:50Z +5543 204 1 12737 6.99 2005-08-18T22:11:37Z 2020-02-15T06:59:50Z +5544 204 1 13084 0.99 2005-08-19T10:27:25Z 2020-02-15T06:59:50Z +5545 204 1 13416 4.99 2005-08-19T22:48:48Z 2020-02-15T06:59:50Z +5546 204 2 13899 2.99 2005-08-20T16:05:11Z 2020-02-15T06:59:50Z +5547 204 2 14163 4.99 2005-08-21T02:56:52Z 2020-02-15T06:59:50Z +5548 204 1 14871 0.99 2005-08-22T03:23:24Z 2020-02-15T06:59:50Z +5549 204 1 15364 4.99 2005-08-22T21:41:41Z 2020-02-15T06:59:50Z +5550 204 2 15415 11.99 2005-08-22T23:48:56Z 2020-02-15T06:59:50Z +5551 205 1 1238 2.99 2005-06-15T04:49:08Z 2020-02-15T06:59:50Z +5552 205 1 1357 4.99 2005-06-15T13:26:23Z 2020-02-15T06:59:50Z +5553 205 1 1767 0.99 2005-06-16T18:01:36Z 2020-02-15T06:59:50Z +5554 205 2 2237 5.99 2005-06-18T04:17:44Z 2020-02-15T06:59:50Z +5555 205 1 3601 7.99 2005-07-06T05:20:25Z 2020-02-15T06:59:50Z +5556 205 2 4230 3.99 2005-07-07T12:46:47Z 2020-02-15T06:59:50Z +5557 205 2 4377 7.99 2005-07-07T20:28:57Z 2020-02-15T06:59:50Z +5558 205 1 4729 4.99 2005-07-08T12:59:40Z 2020-02-15T06:59:50Z +5559 205 1 7736 2.99 2005-07-28T05:12:04Z 2020-02-15T06:59:50Z +5560 205 2 7976 7.99 2005-07-28T14:13:24Z 2020-02-15T06:59:50Z +5561 205 2 8896 4.99 2005-07-30T00:51:21Z 2020-02-15T06:59:50Z +5562 205 2 10086 4.99 2005-07-31T20:14:08Z 2020-02-15T06:59:50Z +5563 205 1 13935 2.99 2005-08-20T17:20:49Z 2020-02-15T06:59:50Z +5564 205 1 14338 0.99 2005-08-21T08:36:03Z 2020-02-15T06:59:50Z +5565 205 2 14391 4.99 2005-08-21T10:16:27Z 2020-02-15T06:59:50Z +5566 205 1 14442 2.99 2005-08-21T12:00:21Z 2020-02-15T06:59:50Z +5567 205 2 14490 6.99 2005-08-21T13:54:15Z 2020-02-15T06:59:50Z +5568 205 2 15418 0.99 2005-08-22T23:54:14Z 2020-02-15T06:59:50Z +5569 206 2 1872 0.99 2005-06-17T02:27:03Z 2020-02-15T06:59:50Z +5570 206 2 2477 5.99 2005-06-18T20:58:46Z 2020-02-15T06:59:50Z +5571 206 2 3012 4.99 2005-06-20T10:43:13Z 2020-02-15T06:59:50Z +5572 206 1 3533 5.99 2005-07-06T01:26:44Z 2020-02-15T06:59:50Z +5573 206 2 3831 0.99 2005-07-06T16:06:35Z 2020-02-15T06:59:50Z +5574 206 1 3847 4.99 2005-07-06T16:44:41Z 2020-02-15T06:59:50Z +5575 206 2 4068 4.99 2005-07-07T04:34:38Z 2020-02-15T06:59:50Z +5576 206 2 4107 4.99 2005-07-07T06:36:32Z 2020-02-15T06:59:50Z +5577 206 2 4823 4.99 2005-07-08T17:28:54Z 2020-02-15T06:59:50Z +5578 206 1 6139 3.99 2005-07-11T08:39:33Z 2020-02-15T06:59:50Z +5579 206 1 6420 6.99 2005-07-11T23:38:49Z 2020-02-15T06:59:50Z +5580 206 1 7222 4.99 2005-07-27T09:38:43Z 2020-02-15T06:59:50Z +5581 206 2 7541 4.99 2005-07-27T21:40:05Z 2020-02-15T06:59:50Z +5582 206 1 8217 5.99 2005-07-28T23:44:13Z 2020-02-15T06:59:50Z +5583 206 1 8549 3.99 2005-07-29T11:12:13Z 2020-02-15T06:59:50Z +5584 206 2 9474 2.99 2005-07-30T23:05:44Z 2020-02-15T06:59:50Z +5585 206 2 10930 3.99 2005-08-02T02:38:07Z 2020-02-15T06:59:50Z +5586 206 1 11022 2.99 2005-08-02T05:35:03Z 2020-02-15T06:59:50Z +5587 206 2 11634 2.99 2005-08-17T04:31:49Z 2020-02-15T06:59:50Z +5588 206 1 13128 4.99 2005-08-19T12:04:16Z 2020-02-15T06:59:50Z +5589 206 2 13232 2.99 2005-08-19T16:13:32Z 2020-02-15T06:59:50Z +5590 206 2 13263 10.99 2005-08-19T17:26:55Z 2020-02-15T06:59:50Z +5591 206 2 13550 9.99 2005-08-20T03:58:51Z 2020-02-15T06:59:50Z +5592 206 2 13696 0.99 2005-08-20T09:16:15Z 2020-02-15T06:59:50Z +5593 206 2 14695 0.99 2005-08-21T20:46:47Z 2020-02-15T06:59:50Z +5594 206 2 15686 7.99 2005-08-23T09:42:21Z 2020-02-15T06:59:50Z +5595 206 1 15709 4.99 2005-08-23T10:36:00Z 2020-02-15T06:59:50Z +5596 207 1 39 0.99 2005-05-25T04:51:46Z 2020-02-15T06:59:50Z +5597 207 1 44 0.99 2005-05-25T05:53:23Z 2020-02-15T06:59:50Z +5598 207 1 659 0.99 2005-05-28T20:27:53Z 2020-02-15T06:59:50Z +5599 207 2 826 6.99 2005-05-29T21:56:15Z 2020-02-15T06:59:50Z +5600 207 2 896 3.99 2005-05-30T09:03:52Z 2020-02-15T06:59:50Z +5601 207 2 1144 3.99 2005-05-31T20:04:10Z 2020-02-15T06:59:50Z +5602 207 2 1945 3.99 2005-06-17T07:51:26Z 2020-02-15T06:59:50Z +5603 207 2 3584 2.99 2005-07-06T04:16:43Z 2020-02-15T06:59:50Z +5604 207 2 3687 9.99 2005-07-06T09:38:33Z 2020-02-15T06:59:50Z +5605 207 1 4018 2.99 2005-07-07T01:10:33Z 2020-02-15T06:59:50Z +5606 207 2 4713 5.99 2005-07-08T12:12:33Z 2020-02-15T06:59:50Z +5607 207 1 4816 0.99 2005-07-08T17:14:14Z 2020-02-15T06:59:50Z +5608 207 2 5007 0.99 2005-07-09T01:26:22Z 2020-02-15T06:59:50Z +5609 207 1 5258 0.99 2005-07-09T13:56:56Z 2020-02-15T06:59:50Z +5610 207 1 5259 4.99 2005-07-09T14:02:50Z 2020-02-15T06:59:50Z +5611 207 2 5939 0.99 2005-07-10T22:30:05Z 2020-02-15T06:59:50Z +5612 207 2 6465 5.99 2005-07-12T01:17:11Z 2020-02-15T06:59:50Z +5613 207 1 6537 0.99 2005-07-12T04:46:30Z 2020-02-15T06:59:50Z +5614 207 2 7306 5.99 2005-07-27T12:57:26Z 2020-02-15T06:59:50Z +5615 207 1 7540 5.99 2005-07-27T21:39:55Z 2020-02-15T06:59:50Z +5616 207 1 8800 5.99 2005-07-29T21:18:59Z 2020-02-15T06:59:50Z +5617 207 2 9652 2.99 2005-07-31T05:49:53Z 2020-02-15T06:59:50Z +5618 207 2 10234 3.99 2005-08-01T01:56:20Z 2020-02-15T06:59:50Z +5619 207 2 10300 0.99 2005-08-01T04:08:11Z 2020-02-15T06:59:50Z +5620 207 1 11112 2.99 2005-08-02T08:25:14Z 2020-02-15T06:59:50Z +5621 207 2 11260 0.99 2005-08-02T13:52:19Z 2020-02-15T06:59:50Z +5622 207 2 11286 5.99 2005-08-02T14:44:22Z 2020-02-15T06:59:50Z +5623 207 1 11724 6.99 2005-08-17T08:04:44Z 2020-02-15T06:59:50Z +5624 207 2 12108 6.99 2005-08-17T22:56:39Z 2020-02-15T06:59:50Z +5625 207 2 13655 2.99 2005-08-20T07:59:13Z 2020-02-15T06:59:50Z +5626 207 2 13809 8.99 2005-08-20T12:56:03Z 2020-02-15T06:59:50Z +5627 207 2 13912 9.99 2005-08-20T16:32:10Z 2020-02-15T06:59:50Z +5628 207 2 13954 3.99 2005-08-20T18:02:41Z 2020-02-15T06:59:50Z +5629 207 1 15625 1.99 2005-08-23T07:25:29Z 2020-02-15T06:59:50Z +5630 208 1 100 4.99 2005-05-25T16:50:28Z 2020-02-15T06:59:50Z +5631 208 1 1805 0.99 2005-06-16T20:36:00Z 2020-02-15T06:59:50Z +5632 208 1 1949 5.99 2005-06-17T08:19:22Z 2020-02-15T06:59:50Z +5633 208 2 2592 0.99 2005-06-19T05:36:54Z 2020-02-15T06:59:50Z +5634 208 1 2695 2.99 2005-06-19T13:25:53Z 2020-02-15T06:59:50Z +5635 208 2 2907 0.99 2005-06-20T03:15:09Z 2020-02-15T06:59:50Z +5636 208 2 3811 2.99 2005-07-06T15:20:37Z 2020-02-15T06:59:50Z +5637 208 1 4354 5.99 2005-07-07T19:21:02Z 2020-02-15T06:59:50Z +5638 208 2 4985 4.99 2005-07-09T00:36:02Z 2020-02-15T06:59:50Z +5639 208 1 5117 2.99 2005-07-09T07:11:22Z 2020-02-15T06:59:50Z +5640 208 2 5693 2.99 2005-07-10T09:35:43Z 2020-02-15T06:59:50Z +5641 208 2 6306 6.99 2005-07-11T18:04:26Z 2020-02-15T06:59:50Z +5642 208 1 6767 1.99 2005-07-12T15:46:55Z 2020-02-15T06:59:50Z +5643 208 1 7315 0.99 2005-07-27T13:14:56Z 2020-02-15T06:59:50Z +5644 208 1 7861 2.99 2005-07-28T10:02:01Z 2020-02-15T06:59:50Z +5645 208 2 7984 2.99 2005-07-28T14:27:51Z 2020-02-15T06:59:50Z +5646 208 1 8742 1.99 2005-07-29T18:56:12Z 2020-02-15T06:59:50Z +5647 208 2 9298 3.99 2005-07-30T16:27:53Z 2020-02-15T06:59:50Z +5648 208 1 9838 4.99 2005-07-31T12:18:49Z 2020-02-15T06:59:50Z +5649 208 2 10762 4.99 2005-08-01T20:28:39Z 2020-02-15T06:59:50Z +5650 208 2 10784 5.99 2005-08-01T21:24:28Z 2020-02-15T06:59:50Z +5651 208 2 11442 2.99 2005-08-02T20:26:19Z 2020-02-15T06:59:50Z +5652 208 2 11805 6.99 2005-08-17T11:48:47Z 2020-02-15T06:59:50Z +5653 208 2 11819 0.99 2005-08-17T12:25:17Z 2020-02-15T06:59:50Z +5654 208 1 13719 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5655 208 1 15717 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5656 209 2 340 9.99 2005-05-27T03:55:25Z 2020-02-15T06:59:50Z +5657 209 1 471 0.99 2005-05-27T21:32:42Z 2020-02-15T06:59:50Z +5658 209 2 1143 2.99 2005-05-31T19:53:03Z 2020-02-15T06:59:50Z +5659 209 2 1201 4.99 2005-06-15T02:06:28Z 2020-02-15T06:59:50Z +5660 209 1 1657 4.99 2005-06-16T10:06:49Z 2020-02-15T06:59:50Z +5661 209 1 2650 4.99 2005-06-19T10:21:45Z 2020-02-15T06:59:50Z +5662 209 1 2796 4.99 2005-06-19T19:00:37Z 2020-02-15T06:59:50Z +5663 209 2 3504 2.99 2005-07-06T00:18:29Z 2020-02-15T06:59:50Z +5664 209 2 4071 5.99 2005-07-07T04:37:26Z 2020-02-15T06:59:50Z +5665 209 1 4309 5.99 2005-07-07T17:29:41Z 2020-02-15T06:59:50Z +5666 209 2 4810 4.99 2005-07-08T17:04:06Z 2020-02-15T06:59:50Z +5667 209 1 4907 4.99 2005-07-08T21:01:41Z 2020-02-15T06:59:50Z +5668 209 2 5170 3.99 2005-07-09T09:24:19Z 2020-02-15T06:59:50Z +5669 209 2 5219 5.99 2005-07-09T11:57:55Z 2020-02-15T06:59:50Z +5670 209 1 6210 0.99 2005-07-11T12:36:43Z 2020-02-15T06:59:50Z +5671 209 1 7116 6.99 2005-07-27T05:46:43Z 2020-02-15T06:59:50Z +5672 209 1 7269 3.99 2005-07-27T11:23:47Z 2020-02-15T06:59:50Z +5673 209 1 7505 4.99 2005-07-27T20:28:03Z 2020-02-15T06:59:50Z +5674 209 2 7752 5.99 2005-07-28T06:01:00Z 2020-02-15T06:59:50Z +5675 209 1 8067 4.99 2005-07-28T17:20:17Z 2020-02-15T06:59:50Z +5676 209 2 8759 8.99 2005-07-29T19:22:37Z 2020-02-15T06:59:51Z +5677 209 2 8816 2.99 2005-07-29T21:53:00Z 2020-02-15T06:59:51Z +5678 209 2 9054 6.99 2005-07-30T07:11:44Z 2020-02-15T06:59:51Z +5679 209 1 9923 0.99 2005-07-31T15:00:15Z 2020-02-15T06:59:51Z +5680 209 2 10554 2.99 2005-08-01T12:56:19Z 2020-02-15T06:59:51Z +5681 209 1 10646 4.99 2005-08-01T15:57:55Z 2020-02-15T06:59:51Z +5682 209 2 10811 6.99 2005-08-01T22:41:15Z 2020-02-15T06:59:51Z +5683 209 1 12025 0.99 2005-08-17T19:59:06Z 2020-02-15T06:59:51Z +5684 209 1 13796 8.99 2005-08-20T12:32:32Z 2020-02-15T06:59:51Z +5685 209 2 14631 6.99 2005-08-21T18:47:49Z 2020-02-15T06:59:51Z +5686 209 1 15254 2.99 2005-08-22T18:13:07Z 2020-02-15T06:59:51Z +5687 209 2 15510 9.99 2005-08-23T02:51:27Z 2020-02-15T06:59:51Z +5688 210 1 953 2.99 2005-05-30T16:34:02Z 2020-02-15T06:59:51Z +5689 210 2 1177 2.99 2005-06-15T00:33:04Z 2020-02-15T06:59:51Z +5690 210 2 2856 0.99 2005-06-19T23:13:04Z 2020-02-15T06:59:51Z +5691 210 2 3563 4.99 2005-07-06T02:57:01Z 2020-02-15T06:59:51Z +5692 210 2 3884 4.99 2005-07-06T18:41:33Z 2020-02-15T06:59:51Z +5693 210 2 4270 0.99 2005-07-07T14:38:41Z 2020-02-15T06:59:51Z +5694 210 1 4306 2.99 2005-07-07T17:12:32Z 2020-02-15T06:59:51Z +5695 210 1 4334 0.99 2005-07-07T18:32:04Z 2020-02-15T06:59:51Z +5696 210 2 4388 7.99 2005-07-07T20:58:03Z 2020-02-15T06:59:51Z +5697 210 1 4620 5.99 2005-07-08T08:01:44Z 2020-02-15T06:59:51Z +5698 210 1 4871 6.99 2005-07-08T19:19:52Z 2020-02-15T06:59:51Z +5699 210 1 4893 4.99 2005-07-08T20:19:55Z 2020-02-15T06:59:51Z +5700 210 1 4989 3.99 2005-07-09T00:46:56Z 2020-02-15T06:59:51Z +5701 210 2 5957 0.99 2005-07-10T23:24:02Z 2020-02-15T06:59:51Z +5702 210 2 6227 4.99 2005-07-11T13:56:46Z 2020-02-15T06:59:51Z +5703 210 1 6564 1.99 2005-07-12T05:34:44Z 2020-02-15T06:59:51Z +5704 210 1 7743 5.99 2005-07-28T05:36:13Z 2020-02-15T06:59:51Z +5705 210 2 7909 0.99 2005-07-28T11:38:08Z 2020-02-15T06:59:51Z +5706 210 2 8336 8.99 2005-07-29T04:20:42Z 2020-02-15T06:59:51Z +5707 210 2 8678 3.99 2005-07-29T16:04:00Z 2020-02-15T06:59:51Z +5708 210 2 8738 0.99 2005-07-29T18:32:47Z 2020-02-15T06:59:51Z +5709 210 2 10890 4.99 2005-08-02T00:58:46Z 2020-02-15T06:59:51Z +5710 210 2 12410 8.99 2005-08-18T09:45:33Z 2020-02-15T06:59:51Z +5711 210 1 12879 4.99 2005-08-19T03:22:55Z 2020-02-15T06:59:51Z +5712 210 2 12909 2.99 2005-08-19T04:20:25Z 2020-02-15T06:59:51Z +5713 210 2 12986 4.99 2005-08-19T07:09:36Z 2020-02-15T06:59:51Z +5714 210 1 14181 7.99 2005-08-21T03:16:30Z 2020-02-15T06:59:51Z +5715 210 2 14639 6.99 2005-08-21T19:01:39Z 2020-02-15T06:59:51Z +5716 210 2 14876 4.99 2005-08-22T03:39:29Z 2020-02-15T06:59:51Z +5717 210 2 15672 0.99 2005-08-23T09:09:18Z 2020-02-15T06:59:51Z +5718 210 2 15942 8.99 2005-08-23T18:48:40Z 2020-02-15T06:59:51Z +5719 211 1 238 4.99 2005-05-26T12:30:22Z 2020-02-15T06:59:51Z +5720 211 2 2812 8.99 2005-06-19T19:58:16Z 2020-02-15T06:59:51Z +5721 211 2 3437 6.99 2005-06-21T19:20:17Z 2020-02-15T06:59:51Z +5722 211 2 3937 8.99 2005-07-06T21:15:38Z 2020-02-15T06:59:51Z +5723 211 2 4060 2.99 2005-07-07T04:10:13Z 2020-02-15T06:59:51Z +5724 211 2 4441 5.99 2005-07-07T23:04:23Z 2020-02-15T06:59:51Z +5725 211 2 4479 2.99 2005-07-08T00:52:35Z 2020-02-15T06:59:51Z +5726 211 1 4857 2.99 2005-07-08T18:52:07Z 2020-02-15T06:59:51Z +5727 211 1 5668 5.99 2005-07-10T08:11:05Z 2020-02-15T06:59:51Z +5728 211 2 5699 3.99 2005-07-10T09:48:04Z 2020-02-15T06:59:51Z +5729 211 2 5785 4.99 2005-07-10T14:06:03Z 2020-02-15T06:59:51Z +5730 211 2 6438 0.99 2005-07-12T00:23:01Z 2020-02-15T06:59:51Z +5731 211 1 6628 4.99 2005-07-12T09:18:08Z 2020-02-15T06:59:51Z +5732 211 1 6722 1.99 2005-07-12T13:44:03Z 2020-02-15T06:59:51Z +5733 211 2 7484 0.99 2005-07-27T19:28:17Z 2020-02-15T06:59:51Z +5734 211 1 7975 2.99 2005-07-28T14:12:47Z 2020-02-15T06:59:51Z +5735 211 2 8961 6.99 2005-07-30T03:43:35Z 2020-02-15T06:59:51Z +5736 211 1 9111 3.99 2005-07-30T09:05:44Z 2020-02-15T06:59:51Z +5737 211 1 9953 0.99 2005-07-31T15:56:35Z 2020-02-15T06:59:51Z +5738 211 1 10445 2.99 2005-08-01T09:02:15Z 2020-02-15T06:59:51Z +5739 211 2 10928 4.99 2005-08-02T02:34:12Z 2020-02-15T06:59:51Z +5740 211 2 11076 8.99 2005-08-02T07:24:47Z 2020-02-15T06:59:51Z +5741 211 2 11963 3.99 2005-08-17T17:35:47Z 2020-02-15T06:59:51Z +5742 211 2 12311 0.99 2005-08-18T06:07:00Z 2020-02-15T06:59:51Z +5743 211 2 12565 4.99 2005-08-18T15:12:17Z 2020-02-15T06:59:51Z +5744 211 2 12570 5.99 2005-08-18T15:23:31Z 2020-02-15T06:59:51Z +5745 211 2 13942 2.99 2005-08-20T17:30:52Z 2020-02-15T06:59:51Z +5746 211 1 13979 2.99 2005-08-20T19:03:49Z 2020-02-15T06:59:51Z +5747 211 2 14782 0.99 2005-08-22T00:17:20Z 2020-02-15T06:59:51Z +5748 211 2 14812 1.99 2005-08-22T01:10:32Z 2020-02-15T06:59:51Z +5749 211 1 15404 7.99 2005-08-22T23:19:44Z 2020-02-15T06:59:51Z +5750 211 2 15538 6.99 2005-08-23T04:07:37Z 2020-02-15T06:59:51Z +5751 211 2 15670 5.99 2005-08-23T09:07:11Z 2020-02-15T06:59:51Z +5752 211 2 12746 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5753 212 1 1356 0.99 2005-06-15T13:17:01Z 2020-02-15T06:59:51Z +5754 212 2 1379 0.99 2005-06-15T15:05:10Z 2020-02-15T06:59:51Z +5755 212 1 1637 2.99 2005-06-16T08:29:58Z 2020-02-15T06:59:51Z +5756 212 2 2739 9.99 2005-06-19T15:58:38Z 2020-02-15T06:59:51Z +5757 212 2 4708 10.99 2005-07-08T11:59:19Z 2020-02-15T06:59:51Z +5758 212 2 4798 3.99 2005-07-08T16:45:16Z 2020-02-15T06:59:51Z +5759 212 2 4916 6.99 2005-07-08T21:32:17Z 2020-02-15T06:59:51Z +5760 212 1 5115 6.99 2005-07-09T07:07:18Z 2020-02-15T06:59:51Z +5761 212 2 7828 2.99 2005-07-28T08:40:46Z 2020-02-15T06:59:51Z +5762 212 2 8000 4.99 2005-07-28T15:10:25Z 2020-02-15T06:59:51Z +5763 212 1 8940 3.99 2005-07-30T02:57:26Z 2020-02-15T06:59:51Z +5764 212 2 10273 4.99 2005-08-01T03:14:47Z 2020-02-15T06:59:51Z +5765 212 2 10567 0.99 2005-08-01T13:16:01Z 2020-02-15T06:59:51Z +5766 212 1 12156 7.99 2005-08-18T00:27:33Z 2020-02-15T06:59:51Z +5767 212 2 12467 0.99 2005-08-18T11:40:09Z 2020-02-15T06:59:51Z +5768 212 2 12562 3.99 2005-08-18T15:00:03Z 2020-02-15T06:59:51Z +5769 212 1 14563 2.99 2005-08-21T16:23:53Z 2020-02-15T06:59:51Z +5770 212 2 14681 5.99 2005-08-21T20:25:13Z 2020-02-15T06:59:51Z +5771 212 1 15872 4.99 2005-08-23T16:27:24Z 2020-02-15T06:59:51Z +5772 212 2 15920 2.99 2005-08-23T18:05:10Z 2020-02-15T06:59:51Z +5773 213 2 385 0.99 2005-05-27T10:23:25Z 2020-02-15T06:59:51Z +5774 213 1 1489 0.99 2005-06-15T21:41:38Z 2020-02-15T06:59:51Z +5775 213 2 1936 4.99 2005-06-17T07:15:41Z 2020-02-15T06:59:51Z +5776 213 1 2322 5.99 2005-06-18T09:44:21Z 2020-02-15T06:59:51Z +5777 213 1 2509 0.99 2005-06-18T23:44:08Z 2020-02-15T06:59:51Z +5778 213 2 2569 6.99 2005-06-19T04:19:04Z 2020-02-15T06:59:51Z +5779 213 1 2889 4.99 2005-06-20T01:54:08Z 2020-02-15T06:59:51Z +5780 213 2 2946 4.99 2005-06-20T05:50:40Z 2020-02-15T06:59:51Z +5781 213 1 3252 2.99 2005-06-21T03:25:26Z 2020-02-15T06:59:51Z +5782 213 1 3313 2.99 2005-06-21T08:11:18Z 2020-02-15T06:59:51Z +5783 213 2 3989 4.99 2005-07-06T23:30:54Z 2020-02-15T06:59:51Z +5784 213 2 4236 4.99 2005-07-07T13:12:07Z 2020-02-15T06:59:51Z +5785 213 1 4655 8.99 2005-07-08T09:49:22Z 2020-02-15T06:59:51Z +5786 213 2 5159 4.99 2005-07-09T08:55:52Z 2020-02-15T06:59:51Z +5787 213 1 5431 0.99 2005-07-09T21:21:11Z 2020-02-15T06:59:51Z +5788 213 2 6725 2.99 2005-07-12T13:47:17Z 2020-02-15T06:59:51Z +5789 213 2 7528 0.99 2005-07-27T21:15:25Z 2020-02-15T06:59:51Z +5790 213 2 8444 2.99 2005-07-29T07:36:13Z 2020-02-15T06:59:51Z +5791 213 2 8542 4.99 2005-07-29T11:01:50Z 2020-02-15T06:59:51Z +5792 213 2 9150 6.99 2005-07-30T10:49:32Z 2020-02-15T06:59:51Z +5793 213 2 9340 2.99 2005-07-30T18:07:16Z 2020-02-15T06:59:51Z +5794 213 1 9477 4.99 2005-07-30T23:07:22Z 2020-02-15T06:59:51Z +5795 213 1 10449 2.99 2005-08-01T09:09:59Z 2020-02-15T06:59:51Z +5796 213 2 11778 3.99 2005-08-17T10:31:40Z 2020-02-15T06:59:51Z +5797 213 1 13354 4.99 2005-08-19T20:55:23Z 2020-02-15T06:59:51Z +5798 213 2 13426 0.99 2005-08-19T23:15:00Z 2020-02-15T06:59:51Z +5799 213 1 14744 6.99 2005-08-21T22:45:21Z 2020-02-15T06:59:51Z +5800 213 2 14374 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5801 214 1 242 1.99 2005-05-26T13:05:08Z 2020-02-15T06:59:51Z +5802 214 1 278 3.99 2005-05-26T17:40:58Z 2020-02-15T06:59:51Z +5803 214 1 1076 2.99 2005-05-31T10:14:31Z 2020-02-15T06:59:51Z +5804 214 2 1093 2.99 2005-05-31T12:32:26Z 2020-02-15T06:59:51Z +5805 214 2 1112 0.99 2005-05-31T15:51:39Z 2020-02-15T06:59:51Z +5806 214 2 1275 4.99 2005-06-15T07:55:43Z 2020-02-15T06:59:51Z +5807 214 2 2085 2.99 2005-06-17T17:30:56Z 2020-02-15T06:59:51Z +5808 214 2 2868 2.99 2005-06-20T00:08:58Z 2020-02-15T06:59:51Z +5809 214 2 4211 0.99 2005-07-07T11:50:41Z 2020-02-15T06:59:51Z +5810 214 1 4783 3.99 2005-07-08T16:09:24Z 2020-02-15T06:59:51Z +5811 214 2 4984 3.99 2005-07-09T00:35:31Z 2020-02-15T06:59:51Z +5812 214 2 5172 2.99 2005-07-09T09:31:27Z 2020-02-15T06:59:51Z +5813 214 1 6602 7.99 2005-07-12T07:50:24Z 2020-02-15T06:59:51Z +5814 214 2 7417 4.99 2005-07-27T16:58:33Z 2020-02-15T06:59:51Z +5815 214 2 7826 5.99 2005-07-28T08:35:51Z 2020-02-15T06:59:51Z +5816 214 1 8663 4.99 2005-07-29T15:33:18Z 2020-02-15T06:59:51Z +5817 214 1 10563 3.99 2005-08-01T13:06:03Z 2020-02-15T06:59:51Z +5818 214 2 10749 4.99 2005-08-01T20:02:01Z 2020-02-15T06:59:51Z +5819 214 2 11450 2.99 2005-08-02T20:45:54Z 2020-02-15T06:59:51Z +5820 214 2 11474 4.99 2005-08-02T21:53:08Z 2020-02-15T06:59:51Z +5821 214 2 12463 4.99 2005-08-18T11:31:34Z 2020-02-15T06:59:51Z +5822 214 2 13138 2.99 2005-08-19T12:30:01Z 2020-02-15T06:59:51Z +5823 214 2 13350 9.99 2005-08-19T20:44:00Z 2020-02-15T06:59:51Z +5824 214 1 13409 2.99 2005-08-19T22:36:26Z 2020-02-15T06:59:51Z +5825 214 1 13565 0.99 2005-08-20T04:38:52Z 2020-02-15T06:59:51Z +5826 214 1 13726 0.99 2005-08-20T10:08:40Z 2020-02-15T06:59:51Z +5827 214 1 13864 4.99 2005-08-20T14:59:55Z 2020-02-15T06:59:51Z +5828 214 2 14347 4.99 2005-08-21T08:42:31Z 2020-02-15T06:59:51Z +5829 214 1 14567 0.99 2005-08-21T16:27:25Z 2020-02-15T06:59:51Z +5830 214 2 15639 2.99 2005-08-23T08:03:25Z 2020-02-15T06:59:51Z +5831 214 2 15645 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5832 215 1 711 4.99 2005-05-29T03:49:03Z 2020-02-15T06:59:51Z +5833 215 2 1080 4.99 2005-05-31T10:55:26Z 2020-02-15T06:59:51Z +5834 215 2 1376 4.99 2005-06-15T14:59:06Z 2020-02-15T06:59:51Z +5835 215 2 1599 4.99 2005-06-16T06:03:33Z 2020-02-15T06:59:51Z +5836 215 2 1845 4.99 2005-06-16T23:56:11Z 2020-02-15T06:59:51Z +5837 215 2 2006 2.99 2005-06-17T11:47:03Z 2020-02-15T06:59:51Z +5838 215 2 2918 2.99 2005-06-20T04:09:04Z 2020-02-15T06:59:51Z +5839 215 1 3143 2.99 2005-06-20T20:01:52Z 2020-02-15T06:59:51Z +5840 215 2 4940 8.99 2005-07-08T22:36:06Z 2020-02-15T06:59:51Z +5841 215 1 5886 2.99 2005-07-10T19:36:25Z 2020-02-15T06:59:51Z +5842 215 2 5967 8.99 2005-07-11T00:02:19Z 2020-02-15T06:59:51Z +5843 215 1 7180 1.99 2005-07-27T08:14:34Z 2020-02-15T06:59:51Z +5844 215 2 9046 2.99 2005-07-30T06:46:55Z 2020-02-15T06:59:51Z +5845 215 1 9518 0.99 2005-07-31T00:43:26Z 2020-02-15T06:59:51Z +5846 215 2 9611 4.99 2005-07-31T03:54:43Z 2020-02-15T06:59:51Z +5847 215 1 11729 2.99 2005-08-17T08:14:41Z 2020-02-15T06:59:51Z +5848 215 2 12285 2.99 2005-08-18T04:56:43Z 2020-02-15T06:59:51Z +5849 215 1 12380 1.99 2005-08-18T08:27:28Z 2020-02-15T06:59:51Z +5850 215 2 13085 0.99 2005-08-19T10:28:22Z 2020-02-15T06:59:51Z +5851 215 2 14126 0.99 2005-08-21T01:32:17Z 2020-02-15T06:59:51Z +5852 215 2 14817 4.99 2005-08-22T01:17:16Z 2020-02-15T06:59:51Z +5853 215 1 15583 2.99 2005-08-23T05:47:55Z 2020-02-15T06:59:51Z +5854 215 2 15610 2.99 2005-08-23T06:56:15Z 2020-02-15T06:59:51Z +5855 215 2 15799 2.99 2005-08-23T14:23:23Z 2020-02-15T06:59:51Z +5856 215 1 15843 0.99 2005-08-23T15:37:31Z 2020-02-15T06:59:51Z +5857 215 2 15862 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5858 216 1 997 4.99 2005-05-31T00:08:25Z 2020-02-15T06:59:51Z +5859 216 2 1461 6.99 2005-06-15T20:32:08Z 2020-02-15T06:59:51Z +5860 216 1 1664 0.99 2005-06-16T10:15:20Z 2020-02-15T06:59:51Z +5861 216 1 1672 3.99 2005-06-16T10:37:34Z 2020-02-15T06:59:51Z +5862 216 2 2351 0.99 2005-06-18T12:27:57Z 2020-02-15T06:59:51Z +5863 216 1 3432 2.99 2005-06-21T19:02:03Z 2020-02-15T06:59:51Z +5864 216 2 4161 2.99 2005-07-07T09:15:11Z 2020-02-15T06:59:51Z +5865 216 1 6008 6.99 2005-07-11T01:51:29Z 2020-02-15T06:59:51Z +5866 216 2 6349 7.99 2005-07-11T20:25:05Z 2020-02-15T06:59:51Z +5867 216 1 8068 4.99 2005-07-28T17:22:28Z 2020-02-15T06:59:51Z +5868 216 2 8859 8.99 2005-07-29T23:44:43Z 2020-02-15T06:59:51Z +5869 216 1 9096 0.99 2005-07-30T08:39:23Z 2020-02-15T06:59:51Z +5870 216 1 10506 4.99 2005-08-01T11:16:05Z 2020-02-15T06:59:51Z +5871 216 1 11005 0.99 2005-08-02T05:05:23Z 2020-02-15T06:59:51Z +5872 216 2 11621 7.99 2005-08-17T04:13:45Z 2020-02-15T06:59:51Z +5873 216 2 13424 0.99 2005-08-19T23:10:09Z 2020-02-15T06:59:51Z +5874 216 2 14638 2.99 2005-08-21T19:01:36Z 2020-02-15T06:59:51Z +5875 216 2 14726 4.99 2005-08-21T22:08:52Z 2020-02-15T06:59:51Z +5876 216 1 15192 4.99 2005-08-22T16:06:23Z 2020-02-15T06:59:51Z +5877 216 2 15199 2.99 2005-08-22T16:17:49Z 2020-02-15T06:59:51Z +5878 216 2 15934 4.99 2005-08-23T18:40:41Z 2020-02-15T06:59:51Z +5879 216 1 12970 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5880 216 1 11676 0 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5881 217 2 828 2.99 2005-05-29T22:14:55Z 2020-02-15T06:59:51Z +5882 217 2 1141 8.99 2005-05-31T19:42:02Z 2020-02-15T06:59:51Z +5883 217 1 1322 2.99 2005-06-15T10:55:09Z 2020-02-15T06:59:51Z +5884 217 1 2076 6.99 2005-06-17T16:43:47Z 2020-02-15T06:59:51Z +5885 217 1 2842 4.99 2005-06-19T22:34:20Z 2020-02-15T06:59:51Z +5886 217 2 5576 2.99 2005-07-10T03:57:05Z 2020-02-15T06:59:51Z +5887 217 2 5762 3.99 2005-07-10T12:48:01Z 2020-02-15T06:59:51Z +5888 217 2 6570 4.99 2005-07-12T05:50:31Z 2020-02-15T06:59:51Z +5889 217 2 7104 2.99 2005-07-27T05:15:25Z 2020-02-15T06:59:51Z +5890 217 2 8332 4.99 2005-07-29T04:16:00Z 2020-02-15T06:59:51Z +5891 217 1 9159 0.99 2005-07-30T11:16:37Z 2020-02-15T06:59:51Z +5892 217 2 9317 2.99 2005-07-30T17:13:37Z 2020-02-15T06:59:51Z +5893 217 2 9632 6.99 2005-07-31T05:02:23Z 2020-02-15T06:59:51Z +5894 217 2 9745 2.99 2005-07-31T09:16:14Z 2020-02-15T06:59:51Z +5895 217 1 10581 5.99 2005-08-01T13:52:30Z 2020-02-15T06:59:51Z +5896 217 1 10836 6.99 2005-08-01T23:29:58Z 2020-02-15T06:59:51Z +5897 217 1 11347 2.99 2005-08-02T17:18:07Z 2020-02-15T06:59:51Z +5898 217 1 11649 2.99 2005-08-17T04:59:26Z 2020-02-15T06:59:51Z +5899 217 1 11958 4.99 2005-08-17T17:23:20Z 2020-02-15T06:59:51Z +5900 217 2 12210 4.99 2005-08-18T02:27:29Z 2020-02-15T06:59:51Z +5901 217 1 12871 4.99 2005-08-19T02:55:36Z 2020-02-15T06:59:51Z +5902 217 2 15116 0.99 2005-08-22T12:35:40Z 2020-02-15T06:59:51Z +5903 217 2 15277 2.99 2005-08-22T19:02:48Z 2020-02-15T06:59:51Z +5904 218 1 1459 2.99 2005-06-15T20:25:53Z 2020-02-15T06:59:51Z +5905 218 1 2262 0.99 2005-06-18T05:49:46Z 2020-02-15T06:59:51Z +5906 218 1 2267 0.99 2005-06-18T06:10:23Z 2020-02-15T06:59:51Z +5907 218 1 4898 6.99 2005-07-08T20:31:43Z 2020-02-15T06:59:51Z +5908 218 1 5226 0.99 2005-07-09T12:10:44Z 2020-02-15T06:59:51Z +5909 218 2 5737 0.99 2005-07-10T11:50:04Z 2020-02-15T06:59:51Z +5910 218 2 7090 4.99 2005-07-27T04:43:53Z 2020-02-15T06:59:51Z +5911 218 1 7236 8.99 2005-07-27T10:09:39Z 2020-02-15T06:59:51Z +5912 218 2 9018 6.99 2005-07-30T05:28:40Z 2020-02-15T06:59:51Z +5913 218 2 9902 6.99 2005-07-31T14:24:33Z 2020-02-15T06:59:51Z +5914 218 1 10114 0.99 2005-07-31T21:12:58Z 2020-02-15T06:59:51Z +5915 218 1 11654 2.99 2005-08-17T05:06:19Z 2020-02-15T06:59:51Z +5916 218 2 12481 2.99 2005-08-18T12:31:34Z 2020-02-15T06:59:51Z +5917 218 1 12974 0.99 2005-08-19T06:51:02Z 2020-02-15T06:59:51Z +5918 218 2 13708 5.99 2005-08-20T09:34:07Z 2020-02-15T06:59:51Z +5919 218 2 13947 5.99 2005-08-20T17:46:06Z 2020-02-15T06:59:51Z +5920 218 2 14848 4.99 2005-08-22T02:14:19Z 2020-02-15T06:59:51Z +5921 218 2 15575 0.99 2005-08-23T05:30:19Z 2020-02-15T06:59:51Z +5922 219 1 414 0.99 2005-05-27T14:48:20Z 2020-02-15T06:59:51Z +5923 219 2 2417 3.99 2005-06-18T17:12:01Z 2020-02-15T06:59:51Z +5924 219 2 2580 0.99 2005-06-19T04:44:30Z 2020-02-15T06:59:51Z +5925 219 2 4678 0.99 2005-07-08T10:30:40Z 2020-02-15T06:59:51Z +5926 219 2 4910 7.99 2005-07-08T21:13:56Z 2020-02-15T06:59:51Z +5927 219 2 5123 0.99 2005-07-09T07:20:30Z 2020-02-15T06:59:51Z +5928 219 2 5416 4.99 2005-07-09T20:33:50Z 2020-02-15T06:59:51Z +5929 219 2 5475 4.99 2005-07-09T23:31:38Z 2020-02-15T06:59:51Z +5930 219 2 5739 7.99 2005-07-10T11:51:50Z 2020-02-15T06:59:51Z +5931 219 2 6172 4.99 2005-07-11T10:32:09Z 2020-02-15T06:59:51Z +5932 219 1 6209 2.99 2005-07-11T12:36:05Z 2020-02-15T06:59:51Z +5933 219 2 6501 1.99 2005-07-12T03:11:55Z 2020-02-15T06:59:51Z +5934 219 2 7335 2.99 2005-07-27T14:06:50Z 2020-02-15T06:59:51Z +5935 219 1 7726 5.99 2005-07-28T04:52:19Z 2020-02-15T06:59:51Z +5936 219 1 8430 0.99 2005-07-29T07:12:17Z 2020-02-15T06:59:51Z +5937 219 2 8536 4.99 2005-07-29T10:37:23Z 2020-02-15T06:59:51Z +5938 219 1 8652 6.99 2005-07-29T15:02:54Z 2020-02-15T06:59:51Z +5939 219 1 9712 4.99 2005-07-31T08:13:11Z 2020-02-15T06:59:51Z +5940 219 1 11328 2.99 2005-08-02T16:42:38Z 2020-02-15T06:59:51Z +5941 219 2 11791 0.99 2005-08-17T11:01:11Z 2020-02-15T06:59:51Z +5942 219 1 13765 4.99 2005-08-20T11:39:00Z 2020-02-15T06:59:51Z +5943 219 2 14029 0.99 2005-08-20T21:23:11Z 2020-02-15T06:59:51Z +5944 219 1 14588 5.99 2005-08-21T17:25:53Z 2020-02-15T06:59:51Z +5945 219 1 14688 4.99 2005-08-21T20:32:37Z 2020-02-15T06:59:51Z +5946 219 1 15283 4.99 2005-08-22T19:16:04Z 2020-02-15T06:59:51Z +5947 219 1 11577 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5948 220 2 409 0.99 2005-05-27T14:10:58Z 2020-02-15T06:59:51Z +5949 220 1 480 3.99 2005-05-27T22:47:39Z 2020-02-15T06:59:51Z +5950 220 1 1832 0.99 2005-06-16T22:35:20Z 2020-02-15T06:59:51Z +5951 220 2 4918 2.99 2005-07-08T21:37:31Z 2020-02-15T06:59:51Z +5952 220 2 5613 2.99 2005-07-10T05:15:43Z 2020-02-15T06:59:51Z +5953 220 2 5847 2.99 2005-07-10T17:27:42Z 2020-02-15T06:59:51Z +5954 220 2 5859 0.99 2005-07-10T18:02:02Z 2020-02-15T06:59:51Z +5955 220 2 6412 0.99 2005-07-11T23:19:21Z 2020-02-15T06:59:51Z +5956 220 2 6832 8.99 2005-07-12T18:51:41Z 2020-02-15T06:59:51Z +5957 220 2 7750 9.99 2005-07-28T05:55:30Z 2020-02-15T06:59:51Z +5958 220 1 8065 2.99 2005-07-28T17:15:48Z 2020-02-15T06:59:51Z +5959 220 1 8398 4.99 2005-07-29T06:12:40Z 2020-02-15T06:59:51Z +5960 220 2 9384 7.99 2005-07-30T19:25:35Z 2020-02-15T06:59:51Z +5961 220 2 9455 10.99 2005-07-30T22:20:29Z 2020-02-15T06:59:51Z +5962 220 1 10099 2.99 2005-07-31T20:47:14Z 2020-02-15T06:59:51Z +5963 220 2 10778 4.99 2005-08-01T21:11:39Z 2020-02-15T06:59:51Z +5964 220 1 10948 4.99 2005-08-02T03:23:23Z 2020-02-15T06:59:51Z +5965 220 1 11037 0.99 2005-08-02T05:58:12Z 2020-02-15T06:59:51Z +5966 220 1 11153 3.99 2005-08-02T09:54:19Z 2020-02-15T06:59:51Z +5967 220 1 11622 4.99 2005-08-17T04:15:46Z 2020-02-15T06:59:51Z +5968 220 2 11947 2.99 2005-08-17T17:08:13Z 2020-02-15T06:59:51Z +5969 220 1 12407 4.99 2005-08-18T09:39:26Z 2020-02-15T06:59:51Z +5970 220 1 12896 4.99 2005-08-19T03:52:44Z 2020-02-15T06:59:51Z +5971 220 2 13123 2.99 2005-08-19T11:55:13Z 2020-02-15T06:59:51Z +5972 220 1 13281 2.99 2005-08-19T18:07:47Z 2020-02-15T06:59:51Z +5973 220 2 14016 4.99 2005-08-20T20:52:03Z 2020-02-15T06:59:51Z +5974 220 2 15706 4.99 2005-08-23T10:32:52Z 2020-02-15T06:59:51Z +5975 221 2 226 4.99 2005-05-26T10:44:04Z 2020-02-15T06:59:51Z +5976 221 1 1369 0.99 2005-06-15T14:29:14Z 2020-02-15T06:59:51Z +5977 221 1 2331 2.99 2005-06-18T10:50:09Z 2020-02-15T06:59:51Z +5978 221 2 2473 2.99 2005-06-18T20:42:45Z 2020-02-15T06:59:51Z +5979 221 1 2660 10.99 2005-06-19T10:50:02Z 2020-02-15T06:59:51Z +5980 221 1 3200 5.99 2005-06-21T00:22:47Z 2020-02-15T06:59:51Z +5981 221 1 4293 4.99 2005-07-07T15:53:47Z 2020-02-15T06:59:51Z +5982 221 2 4649 4.99 2005-07-08T09:32:05Z 2020-02-15T06:59:51Z +5983 221 1 4693 6.99 2005-07-08T11:07:36Z 2020-02-15T06:59:51Z +5984 221 1 5058 5.99 2005-07-09T04:20:35Z 2020-02-15T06:59:51Z +5985 221 2 5920 5.99 2005-07-10T21:33:58Z 2020-02-15T06:59:51Z +5986 221 1 7101 2.99 2005-07-27T05:06:34Z 2020-02-15T06:59:51Z +5987 221 1 7129 0.99 2005-07-27T06:18:01Z 2020-02-15T06:59:51Z +5988 221 2 7531 8.99 2005-07-27T21:19:34Z 2020-02-15T06:59:51Z +5989 221 2 8486 0.99 2005-07-29T08:53:38Z 2020-02-15T06:59:51Z +5990 221 1 9320 6.99 2005-07-30T17:16:39Z 2020-02-15T06:59:51Z +5991 221 1 9453 7.99 2005-07-30T22:20:04Z 2020-02-15T06:59:51Z +5992 221 2 9853 0.99 2005-07-31T12:58:20Z 2020-02-15T06:59:51Z +5993 221 2 11680 4.99 2005-08-17T06:12:27Z 2020-02-15T06:59:51Z +5994 221 1 11693 4.99 2005-08-17T06:56:56Z 2020-02-15T06:59:51Z +5995 221 1 11802 2.99 2005-08-17T11:32:51Z 2020-02-15T06:59:51Z +5996 221 1 12324 0.99 2005-08-18T06:38:20Z 2020-02-15T06:59:51Z +5997 221 2 12620 3.99 2005-08-18T17:26:38Z 2020-02-15T06:59:51Z +5998 221 2 13434 2.99 2005-08-19T23:34:26Z 2020-02-15T06:59:51Z +5999 221 2 14322 5.99 2005-08-21T08:06:30Z 2020-02-15T06:59:51Z +6000 221 2 14371 0.99 2005-08-21T09:37:16Z 2020-02-15T06:59:51Z +6001 221 1 14419 7.99 2005-08-21T11:15:46Z 2020-02-15T06:59:51Z +6002 221 1 15125 8.99 2005-08-22T12:53:22Z 2020-02-15T06:59:51Z +6003 222 1 5 6.99 2005-05-24T23:05:21Z 2020-02-15T06:59:51Z +6004 222 1 134 4.99 2005-05-25T21:48:41Z 2020-02-15T06:59:51Z +6005 222 2 416 0.99 2005-05-27T15:02:10Z 2020-02-15T06:59:51Z +6006 222 2 809 3.99 2005-05-29T19:10:20Z 2020-02-15T06:59:51Z +6007 222 2 1006 2.99 2005-05-31T00:57:08Z 2020-02-15T06:59:51Z +6008 222 1 1368 8.99 2005-06-15T14:27:47Z 2020-02-15T06:59:51Z +6009 222 2 2603 6.99 2005-06-19T06:21:25Z 2020-02-15T06:59:51Z +6010 222 2 5209 8.99 2005-07-09T11:22:39Z 2020-02-15T06:59:51Z +6011 222 1 5266 3.99 2005-07-09T14:17:40Z 2020-02-15T06:59:51Z +6012 222 2 5592 6.99 2005-07-10T04:26:13Z 2020-02-15T06:59:51Z +6013 222 2 5635 5.99 2005-07-10T06:28:39Z 2020-02-15T06:59:51Z +6014 222 2 6129 2.99 2005-07-11T08:15:09Z 2020-02-15T06:59:51Z +6015 222 1 6497 0.99 2005-07-12T03:04:29Z 2020-02-15T06:59:51Z +6016 222 2 7786 0.99 2005-07-28T07:18:26Z 2020-02-15T06:59:51Z +6017 222 1 8300 1.99 2005-07-29T02:57:59Z 2020-02-15T06:59:51Z +6018 222 2 8597 6.99 2005-07-29T12:55:55Z 2020-02-15T06:59:51Z +6019 222 1 8787 4.99 2005-07-29T20:43:49Z 2020-02-15T06:59:51Z +6020 222 2 10043 1.99 2005-07-31T19:02:07Z 2020-02-15T06:59:51Z +6021 222 2 12179 2.99 2005-08-18T01:21:21Z 2020-02-15T06:59:51Z +6022 222 1 13477 2.99 2005-08-20T01:07:00Z 2020-02-15T06:59:51Z +6023 222 2 14350 2.99 2005-08-21T08:58:38Z 2020-02-15T06:59:51Z +6024 223 2 524 2.99 2005-05-28T03:57:28Z 2020-02-15T06:59:51Z +6025 223 2 1839 5.99 2005-06-16T23:22:22Z 2020-02-15T06:59:51Z +6026 223 1 2334 4.99 2005-06-18T10:56:24Z 2020-02-15T06:59:51Z +6027 223 1 3513 5.99 2005-07-06T00:45:57Z 2020-02-15T06:59:51Z +6028 223 1 3705 0.99 2005-07-06T10:17:59Z 2020-02-15T06:59:51Z +6029 223 1 4874 4.99 2005-07-08T19:23:38Z 2020-02-15T06:59:51Z +6030 223 2 5996 2.99 2005-07-11T01:18:33Z 2020-02-15T06:59:51Z +6031 223 2 7085 5.99 2005-07-27T04:35:44Z 2020-02-15T06:59:51Z +6032 223 2 8362 3.99 2005-07-29T05:09:11Z 2020-02-15T06:59:51Z +6033 223 2 10053 7.99 2005-07-31T19:15:39Z 2020-02-15T06:59:51Z +6034 223 2 11040 4.99 2005-08-02T06:03:22Z 2020-02-15T06:59:51Z +6035 223 1 12927 5.99 2005-08-19T05:02:46Z 2020-02-15T06:59:51Z +6036 223 1 13576 0.99 2005-08-20T05:19:56Z 2020-02-15T06:59:51Z +6037 223 2 14496 4.99 2005-08-21T14:07:35Z 2020-02-15T06:59:51Z +6038 223 1 15257 7.99 2005-08-22T18:21:04Z 2020-02-15T06:59:51Z +6039 223 2 15546 5.99 2005-08-23T04:20:38Z 2020-02-15T06:59:51Z +6040 223 1 15662 2.99 2005-08-23T08:52:50Z 2020-02-15T06:59:51Z +6041 224 1 1424 7.99 2005-06-15T18:08:14Z 2020-02-15T06:59:51Z +6042 224 1 2277 2.99 2005-06-18T06:35:03Z 2020-02-15T06:59:51Z +6043 224 2 3282 4.99 2005-06-21T06:18:42Z 2020-02-15T06:59:51Z +6044 224 1 4118 2.99 2005-07-07T07:03:30Z 2020-02-15T06:59:51Z +6045 224 2 4411 3.99 2005-07-07T21:54:58Z 2020-02-15T06:59:51Z +6046 224 1 4697 2.99 2005-07-08T11:19:14Z 2020-02-15T06:59:51Z +6047 224 1 6031 4.99 2005-07-11T02:42:14Z 2020-02-15T06:59:51Z +6048 224 2 6999 2.99 2005-07-27T01:21:19Z 2020-02-15T06:59:51Z +6049 224 2 8255 0.99 2005-07-29T01:02:30Z 2020-02-15T06:59:51Z +6050 224 2 8439 2.99 2005-07-29T07:28:43Z 2020-02-15T06:59:51Z +6051 224 1 8605 4.99 2005-07-29T13:13:34Z 2020-02-15T06:59:51Z +6052 224 1 9181 0.99 2005-07-30T12:05:58Z 2020-02-15T06:59:51Z +6053 224 1 11816 0.99 2005-08-17T12:14:16Z 2020-02-15T06:59:51Z +6054 224 1 12492 4.99 2005-08-18T12:49:04Z 2020-02-15T06:59:51Z +6055 224 1 12969 2.99 2005-08-19T06:38:59Z 2020-02-15T06:59:51Z +6056 224 2 13075 4.99 2005-08-19T10:10:10Z 2020-02-15T06:59:51Z +6057 224 2 14099 0.99 2005-08-21T00:31:03Z 2020-02-15T06:59:51Z +6058 224 2 14271 5.99 2005-08-21T06:23:29Z 2020-02-15T06:59:51Z +6059 224 2 14468 5.99 2005-08-21T13:07:10Z 2020-02-15T06:59:51Z +6060 224 2 14880 2.99 2005-08-22T03:44:36Z 2020-02-15T06:59:51Z +6061 224 1 15225 0.99 2005-08-22T17:18:32Z 2020-02-15T06:59:51Z +6062 224 1 15952 1.99 2005-08-23T19:11:29Z 2020-02-15T06:59:51Z +6063 225 1 812 4.99 2005-05-29T20:00:30Z 2020-02-15T06:59:51Z +6064 225 1 963 3.99 2005-05-30T18:52:53Z 2020-02-15T06:59:51Z +6065 225 2 2226 7.99 2005-06-18T03:39:56Z 2020-02-15T06:59:51Z +6066 225 2 3574 4.99 2005-07-06T03:36:01Z 2020-02-15T06:59:51Z +6067 225 1 4345 7.99 2005-07-07T18:52:57Z 2020-02-15T06:59:51Z +6068 225 1 4824 7.99 2005-07-08T17:37:39Z 2020-02-15T06:59:51Z +6069 225 2 4955 2.99 2005-07-08T23:16:21Z 2020-02-15T06:59:51Z +6070 225 1 5067 4.99 2005-07-09T04:52:35Z 2020-02-15T06:59:51Z +6071 225 1 6159 2.99 2005-07-11T09:55:34Z 2020-02-15T06:59:51Z +6072 225 1 6317 2.99 2005-07-11T18:47:41Z 2020-02-15T06:59:51Z +6073 225 2 6350 2.99 2005-07-11T20:30:15Z 2020-02-15T06:59:51Z +6074 225 1 6526 3.99 2005-07-12T04:21:20Z 2020-02-15T06:59:51Z +6075 225 2 6532 2.99 2005-07-12T04:38:32Z 2020-02-15T06:59:51Z +6076 225 2 7347 4.99 2005-07-27T14:31:24Z 2020-02-15T06:59:51Z +6077 225 1 7524 6.99 2005-07-27T21:11:44Z 2020-02-15T06:59:51Z +6078 225 1 8054 7.99 2005-07-28T17:02:18Z 2020-02-15T06:59:51Z +6079 225 2 8110 4.99 2005-07-28T19:07:45Z 2020-02-15T06:59:51Z +6080 225 1 9980 4.99 2005-07-31T17:02:00Z 2020-02-15T06:59:51Z +6081 225 2 9993 2.99 2005-07-31T17:30:20Z 2020-02-15T06:59:51Z +6082 225 2 10138 2.99 2005-07-31T22:02:09Z 2020-02-15T06:59:51Z +6083 225 1 10793 2.99 2005-08-01T21:48:03Z 2020-02-15T06:59:51Z +6084 225 2 11333 1.99 2005-08-02T16:53:00Z 2020-02-15T06:59:51Z +6085 225 2 11384 0.99 2005-08-02T18:23:01Z 2020-02-15T06:59:51Z +6086 225 2 11395 5.99 2005-08-02T18:47:44Z 2020-02-15T06:59:51Z +6087 225 2 11437 4.99 2005-08-02T20:20:06Z 2020-02-15T06:59:51Z +6088 225 2 14444 5.99 2005-08-21T12:07:25Z 2020-02-15T06:59:51Z +6089 226 2 3414 2.99 2005-06-21T16:58:50Z 2020-02-15T06:59:51Z +6090 226 1 3466 4.99 2005-06-21T22:13:33Z 2020-02-15T06:59:51Z +6091 226 1 3721 4.99 2005-07-06T11:10:09Z 2020-02-15T06:59:51Z +6092 226 1 4324 4.99 2005-07-07T17:57:56Z 2020-02-15T06:59:51Z +6093 226 1 5282 2.99 2005-07-09T15:01:23Z 2020-02-15T06:59:51Z +6094 226 1 5419 2.99 2005-07-09T20:47:36Z 2020-02-15T06:59:51Z +6095 226 1 6712 9.99 2005-07-12T13:24:47Z 2020-02-15T06:59:51Z +6096 226 2 7288 5.99 2005-07-27T12:24:59Z 2020-02-15T06:59:51Z +6097 226 1 7329 3.99 2005-07-27T13:55:34Z 2020-02-15T06:59:51Z +6098 226 2 8600 2.99 2005-07-29T13:01:19Z 2020-02-15T06:59:51Z +6099 226 1 8627 2.99 2005-07-29T14:05:12Z 2020-02-15T06:59:51Z +6100 226 1 12172 1.99 2005-08-18T01:07:00Z 2020-02-15T06:59:51Z +6101 226 1 14491 6.99 2005-08-21T13:55:39Z 2020-02-15T06:59:51Z +6102 226 1 14708 4.99 2005-08-21T21:07:23Z 2020-02-15T06:59:51Z +6103 226 1 14712 0.99 2005-08-21T21:22:56Z 2020-02-15T06:59:51Z +6104 226 2 14739 0.99 2005-08-21T22:33:22Z 2020-02-15T06:59:51Z +6105 226 2 14934 4.99 2005-08-22T05:47:15Z 2020-02-15T06:59:51Z +6106 226 2 15472 2.99 2005-08-23T01:39:05Z 2020-02-15T06:59:51Z +6107 226 1 15901 4.99 2005-08-23T17:19:17Z 2020-02-15T06:59:51Z +6108 226 1 15986 2.99 2005-08-23T20:20:37Z 2020-02-15T06:59:51Z +6109 226 1 16033 5.99 2005-08-23T22:06:15Z 2020-02-15T06:59:51Z +6110 227 1 111 4.99 2005-05-25T18:45:19Z 2020-02-15T06:59:51Z +6111 227 1 1023 3.99 2005-05-31T03:26:50Z 2020-02-15T06:59:51Z +6112 227 1 1679 2.99 2005-06-16T11:11:01Z 2020-02-15T06:59:51Z +6113 227 2 2155 1.99 2005-06-17T23:07:29Z 2020-02-15T06:59:51Z +6114 227 1 2164 6.99 2005-06-17T23:46:21Z 2020-02-15T06:59:51Z +6115 227 2 3065 0.99 2005-06-20T13:53:53Z 2020-02-15T06:59:51Z +6116 227 1 3576 5.99 2005-07-06T03:40:01Z 2020-02-15T06:59:51Z +6117 227 2 4340 2.99 2005-07-07T18:41:46Z 2020-02-15T06:59:51Z +6118 227 2 4459 4.99 2005-07-07T23:48:52Z 2020-02-15T06:59:51Z +6119 227 1 4680 2.99 2005-07-08T10:35:28Z 2020-02-15T06:59:51Z +6120 227 1 5046 3.99 2005-07-09T03:34:57Z 2020-02-15T06:59:51Z +6121 227 1 7132 7.99 2005-07-27T06:28:34Z 2020-02-15T06:59:51Z +6122 227 1 8219 2.99 2005-07-28T23:46:31Z 2020-02-15T06:59:51Z +6123 227 1 8234 0.99 2005-07-29T00:19:20Z 2020-02-15T06:59:51Z +6124 227 1 8384 0.99 2005-07-29T05:38:43Z 2020-02-15T06:59:51Z +6125 227 2 8417 4.99 2005-07-29T06:53:36Z 2020-02-15T06:59:51Z +6126 227 1 8936 2.99 2005-07-30T02:47:13Z 2020-02-15T06:59:51Z +6127 227 2 9521 2.99 2005-07-31T00:52:24Z 2020-02-15T06:59:51Z +6128 227 2 10999 3.99 2005-08-02T04:53:13Z 2020-02-15T06:59:51Z +6129 227 2 11892 0.99 2005-08-17T15:13:21Z 2020-02-15T06:59:51Z +6130 227 2 13379 4.99 2005-08-19T21:33:39Z 2020-02-15T06:59:51Z +6131 227 2 15406 0.99 2005-08-22T23:21:22Z 2020-02-15T06:59:51Z +6132 227 2 15976 4.99 2005-08-23T20:07:08Z 2020-02-15T06:59:51Z +6133 227 2 13374 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6134 228 2 492 4.99 2005-05-28T00:24:58Z 2020-02-15T06:59:51Z +6135 228 2 1070 0.99 2005-05-31T09:39:56Z 2020-02-15T06:59:51Z +6136 228 2 2284 3.99 2005-06-18T06:59:51Z 2020-02-15T06:59:51Z +6137 228 2 2863 2.99 2005-06-19T23:58:38Z 2020-02-15T06:59:51Z +6138 228 2 2934 2.99 2005-06-20T05:05:53Z 2020-02-15T06:59:51Z +6139 228 2 3433 3.99 2005-06-21T19:07:19Z 2020-02-15T06:59:51Z +6140 228 2 3538 0.99 2005-07-06T01:37:07Z 2020-02-15T06:59:51Z +6141 228 2 3710 8.99 2005-07-06T10:28:53Z 2020-02-15T06:59:51Z +6142 228 1 3715 6.99 2005-07-06T10:51:48Z 2020-02-15T06:59:51Z +6143 228 2 3796 0.99 2005-07-06T14:45:22Z 2020-02-15T06:59:51Z +6144 228 1 4217 3.99 2005-07-07T12:08:59Z 2020-02-15T06:59:51Z +6145 228 1 4636 4.99 2005-07-08T08:44:32Z 2020-02-15T06:59:51Z +6146 228 1 4909 0.99 2005-07-08T21:07:24Z 2020-02-15T06:59:51Z +6147 228 1 5151 2.99 2005-07-09T08:31:03Z 2020-02-15T06:59:51Z +6148 228 1 5320 4.99 2005-07-09T16:23:32Z 2020-02-15T06:59:51Z +6149 228 2 5902 0.99 2005-07-10T20:31:24Z 2020-02-15T06:59:51Z +6150 228 2 6141 1.99 2005-07-11T08:52:16Z 2020-02-15T06:59:51Z +6151 228 1 6948 2.99 2005-07-26T23:43:49Z 2020-02-15T06:59:51Z +6152 228 2 7509 8.99 2005-07-27T20:37:19Z 2020-02-15T06:59:51Z +6153 228 1 7601 0.99 2005-07-27T23:48:15Z 2020-02-15T06:59:51Z +6154 228 1 8147 2.99 2005-07-28T20:37:56Z 2020-02-15T06:59:51Z +6155 228 1 10585 4.99 2005-08-01T14:00:42Z 2020-02-15T06:59:51Z +6156 228 1 12304 0.99 2005-08-18T05:44:29Z 2020-02-15T06:59:51Z +6157 228 2 12952 2.99 2005-08-19T06:00:52Z 2020-02-15T06:59:51Z +6158 228 2 13458 4.99 2005-08-20T00:35:30Z 2020-02-15T06:59:51Z +6159 228 2 12672 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6160 228 1 15234 0 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6161 229 1 2200 4.99 2005-06-18T01:59:16Z 2020-02-15T06:59:51Z +6162 229 1 3208 0.99 2005-06-21T00:50:03Z 2020-02-15T06:59:51Z +6163 229 1 3277 7.99 2005-06-21T05:36:37Z 2020-02-15T06:59:51Z +6164 229 2 3280 0.99 2005-06-21T06:08:12Z 2020-02-15T06:59:51Z +6165 229 2 3933 4.99 2005-07-06T21:06:37Z 2020-02-15T06:59:51Z +6166 229 2 4458 2.99 2005-07-07T23:47:47Z 2020-02-15T06:59:51Z +6167 229 1 4515 4.99 2005-07-08T02:42:03Z 2020-02-15T06:59:51Z +6168 229 2 4694 0.99 2005-07-08T11:07:37Z 2020-02-15T06:59:51Z +6169 229 1 5623 2.99 2005-07-10T05:41:38Z 2020-02-15T06:59:51Z +6170 229 2 6155 4.99 2005-07-11T09:45:31Z 2020-02-15T06:59:51Z +6171 229 2 6578 4.99 2005-07-12T06:15:41Z 2020-02-15T06:59:51Z +6172 229 1 6880 2.99 2005-07-12T20:41:35Z 2020-02-15T06:59:51Z +6173 229 2 7305 0.99 2005-07-27T12:57:06Z 2020-02-15T06:59:51Z +6174 229 2 7308 5.99 2005-07-27T13:00:25Z 2020-02-15T06:59:51Z +6175 229 2 7629 0.99 2005-07-28T01:00:09Z 2020-02-15T06:59:51Z +6176 229 2 7640 7.99 2005-07-28T01:14:49Z 2020-02-15T06:59:51Z +6177 229 2 9913 3.99 2005-07-31T14:51:04Z 2020-02-15T06:59:51Z +6178 229 1 11521 4.99 2005-08-17T00:04:54Z 2020-02-15T06:59:51Z +6179 229 1 12866 2.99 2005-08-19T02:39:47Z 2020-02-15T06:59:51Z +6180 229 2 13306 0.99 2005-08-19T18:57:29Z 2020-02-15T06:59:51Z +6181 229 2 13431 4.99 2005-08-19T23:28:15Z 2020-02-15T06:59:51Z +6182 229 1 13679 5.99 2005-08-20T08:39:34Z 2020-02-15T06:59:51Z +6183 229 1 15740 4.99 2005-08-23T12:07:51Z 2020-02-15T06:59:51Z +6184 229 2 15912 2.99 2005-08-23T17:47:40Z 2020-02-15T06:59:51Z +6185 229 2 13295 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6186 230 1 32 0.99 2005-05-25T04:06:21Z 2020-02-15T06:59:51Z +6187 230 1 1078 4.99 2005-05-31T10:28:33Z 2020-02-15T06:59:51Z +6188 230 2 1468 3.99 2005-06-15T20:48:22Z 2020-02-15T06:59:51Z +6189 230 1 1744 4.99 2005-06-16T16:39:58Z 2020-02-15T06:59:51Z +6190 230 2 1793 0.99 2005-06-16T20:07:27Z 2020-02-15T06:59:51Z +6191 230 2 2450 8.99 2005-06-18T19:25:47Z 2020-02-15T06:59:51Z +6192 230 2 2675 0.99 2005-06-19T11:52:15Z 2020-02-15T06:59:51Z +6193 230 1 2777 0.99 2005-06-19T18:16:26Z 2020-02-15T06:59:51Z +6194 230 1 4509 3.99 2005-07-08T02:32:38Z 2020-02-15T06:59:51Z +6195 230 1 4935 0.99 2005-07-08T22:20:56Z 2020-02-15T06:59:51Z +6196 230 1 5045 4.99 2005-07-09T03:33:32Z 2020-02-15T06:59:51Z +6197 230 1 5061 0.99 2005-07-09T04:30:50Z 2020-02-15T06:59:51Z +6198 230 2 5269 2.99 2005-07-09T14:23:05Z 2020-02-15T06:59:51Z +6199 230 2 6126 4.99 2005-07-11T08:06:56Z 2020-02-15T06:59:51Z +6200 230 1 6251 2.99 2005-07-11T15:06:20Z 2020-02-15T06:59:51Z +6201 230 2 7333 4.99 2005-07-27T13:59:11Z 2020-02-15T06:59:51Z +6202 230 2 7390 4.99 2005-07-27T15:59:19Z 2020-02-15T06:59:51Z +6203 230 2 8032 4.99 2005-07-28T16:17:00Z 2020-02-15T06:59:51Z +6204 230 2 8653 0.99 2005-07-29T15:04:23Z 2020-02-15T06:59:51Z +6205 230 1 8815 2.99 2005-07-29T21:51:26Z 2020-02-15T06:59:51Z +6206 230 2 9778 3.99 2005-07-31T10:02:04Z 2020-02-15T06:59:51Z +6207 230 2 10050 3.99 2005-07-31T19:13:29Z 2020-02-15T06:59:51Z +6208 230 1 10057 9.99 2005-07-31T19:20:18Z 2020-02-15T06:59:51Z +6209 230 2 10874 2.99 2005-08-02T00:31:00Z 2020-02-15T06:59:51Z +6210 230 2 11148 5.99 2005-08-02T09:47:08Z 2020-02-15T06:59:51Z +6211 230 1 11552 5.99 2005-08-17T01:04:29Z 2020-02-15T06:59:51Z +6212 230 2 11914 2.99 2005-08-17T16:04:42Z 2020-02-15T06:59:51Z +6213 230 1 12079 1.99 2005-08-17T22:04:17Z 2020-02-15T06:59:51Z +6214 230 2 12523 7.99 2005-08-18T13:45:41Z 2020-02-15T06:59:51Z +6215 230 2 12542 0.99 2005-08-18T14:21:11Z 2020-02-15T06:59:51Z +6216 230 2 14017 0.99 2005-08-20T20:55:32Z 2020-02-15T06:59:51Z +6217 230 1 14073 5.99 2005-08-20T23:12:57Z 2020-02-15T06:59:51Z +6218 230 1 14340 2.99 2005-08-21T08:38:21Z 2020-02-15T06:59:51Z +6219 231 1 329 5.99 2005-05-27T01:57:14Z 2020-02-15T06:59:51Z +6220 231 1 479 6.99 2005-05-27T22:39:10Z 2020-02-15T06:59:51Z +6221 231 1 512 8.99 2005-05-28T03:07:50Z 2020-02-15T06:59:51Z +6222 231 2 2423 0.99 2005-06-18T17:32:08Z 2020-02-15T06:59:51Z +6223 231 2 3561 9.99 2005-07-06T02:54:33Z 2020-02-15T06:59:51Z +6224 231 1 3839 2.99 2005-07-06T16:30:30Z 2020-02-15T06:59:51Z +6225 231 2 4289 0.99 2005-07-07T15:45:58Z 2020-02-15T06:59:51Z +6226 231 2 4969 0.99 2005-07-08T23:51:26Z 2020-02-15T06:59:51Z +6227 231 1 5096 2.99 2005-07-09T06:08:23Z 2020-02-15T06:59:51Z +6228 231 1 5560 5.99 2005-07-10T03:13:24Z 2020-02-15T06:59:51Z +6229 231 1 6862 0.99 2005-07-12T19:58:09Z 2020-02-15T06:59:51Z +6230 231 1 6877 1.99 2005-07-12T20:32:58Z 2020-02-15T06:59:51Z +6231 231 1 8556 0.99 2005-07-29T11:18:27Z 2020-02-15T06:59:51Z +6232 231 2 8949 5.99 2005-07-30T03:17:02Z 2020-02-15T06:59:51Z +6233 231 2 9711 2.99 2005-07-31T08:06:41Z 2020-02-15T06:59:51Z +6234 231 2 11113 2.99 2005-08-02T08:26:24Z 2020-02-15T06:59:51Z +6235 231 1 11202 7.99 2005-08-02T11:51:57Z 2020-02-15T06:59:51Z +6236 231 1 11581 5.99 2005-08-17T02:03:02Z 2020-02-15T06:59:51Z +6237 231 1 12214 0.99 2005-08-18T02:34:22Z 2020-02-15T06:59:51Z +6238 231 2 12230 8.99 2005-08-18T03:11:04Z 2020-02-15T06:59:51Z +6239 231 1 12231 3.99 2005-08-18T03:11:44Z 2020-02-15T06:59:51Z +6240 231 2 13983 6.99 2005-08-20T19:08:32Z 2020-02-15T06:59:51Z +6241 231 1 14026 0.99 2005-08-20T21:21:08Z 2020-02-15T06:59:51Z +6242 231 1 14478 4.99 2005-08-21T13:33:28Z 2020-02-15T06:59:51Z +6243 231 2 14806 2.99 2005-08-22T00:53:08Z 2020-02-15T06:59:51Z +6244 231 1 15389 3.99 2005-08-22T22:51:13Z 2020-02-15T06:59:51Z +6245 232 1 28 4.99 2005-05-25T03:42:37Z 2020-02-15T06:59:51Z +6246 232 1 805 3.99 2005-05-29T18:18:18Z 2020-02-15T06:59:51Z +6247 232 2 1619 0.99 2005-06-16T07:14:13Z 2020-02-15T06:59:51Z +6248 232 1 2833 8.99 2005-06-19T21:34:54Z 2020-02-15T06:59:51Z +6249 232 2 6234 5.99 2005-07-11T14:16:10Z 2020-02-15T06:59:51Z +6250 232 1 6309 2.99 2005-07-11T18:13:24Z 2020-02-15T06:59:51Z +6251 232 1 7123 5.99 2005-07-27T06:08:48Z 2020-02-15T06:59:51Z +6252 232 2 7653 4.99 2005-07-28T01:58:30Z 2020-02-15T06:59:51Z +6253 232 2 7707 0.99 2005-07-28T04:07:47Z 2020-02-15T06:59:51Z +6254 232 1 7749 2.99 2005-07-28T05:53:36Z 2020-02-15T06:59:51Z +6255 232 1 7990 2.99 2005-07-28T14:43:08Z 2020-02-15T06:59:51Z +6256 232 1 8306 2.99 2005-07-29T03:12:26Z 2020-02-15T06:59:51Z +6257 232 2 8401 4.99 2005-07-29T06:25:08Z 2020-02-15T06:59:51Z +6258 232 2 8655 4.99 2005-07-29T15:04:42Z 2020-02-15T06:59:51Z +6259 232 2 9270 0.99 2005-07-30T15:03:16Z 2020-02-15T06:59:51Z +6260 232 2 9330 10.99 2005-07-30T17:44:24Z 2020-02-15T06:59:51Z +6261 232 2 9365 2.99 2005-07-30T18:46:02Z 2020-02-15T06:59:51Z +6262 232 2 10157 2.99 2005-07-31T22:38:48Z 2020-02-15T06:59:51Z +6263 232 1 10539 6.99 2005-08-01T12:23:00Z 2020-02-15T06:59:51Z +6264 232 2 11861 0.99 2005-08-17T13:53:47Z 2020-02-15T06:59:51Z +6265 232 2 12853 2.99 2005-08-19T02:15:32Z 2020-02-15T06:59:51Z +6266 232 2 13707 2.99 2005-08-20T09:33:58Z 2020-02-15T06:59:51Z +6267 232 2 14527 0.99 2005-08-21T15:07:42Z 2020-02-15T06:59:51Z +6268 232 2 14857 0.99 2005-08-22T02:42:39Z 2020-02-15T06:59:51Z +6269 232 2 15553 2.99 2005-08-23T04:33:39Z 2020-02-15T06:59:51Z +6270 233 2 1992 2.99 2005-06-17T10:58:53Z 2020-02-15T06:59:51Z +6271 233 2 2244 2.99 2005-06-18T04:46:33Z 2020-02-15T06:59:51Z +6272 233 1 2424 2.99 2005-06-18T17:35:08Z 2020-02-15T06:59:51Z +6273 233 2 2443 4.99 2005-06-18T18:52:30Z 2020-02-15T06:59:51Z +6274 233 1 3832 2.99 2005-07-06T16:12:23Z 2020-02-15T06:59:51Z +6275 233 1 4015 5.99 2005-07-07T00:59:46Z 2020-02-15T06:59:51Z +6276 233 1 4885 4.99 2005-07-08T19:51:17Z 2020-02-15T06:59:51Z +6277 233 2 5267 5.99 2005-07-09T14:21:10Z 2020-02-15T06:59:51Z +6278 233 1 5846 2.99 2005-07-10T17:25:24Z 2020-02-15T06:59:51Z +6279 233 1 6319 4.99 2005-07-11T18:50:45Z 2020-02-15T06:59:51Z +6280 233 1 6794 2.99 2005-07-12T16:38:23Z 2020-02-15T06:59:51Z +6281 233 1 7056 8.99 2005-07-27T03:46:27Z 2020-02-15T06:59:51Z +6282 233 2 7387 4.99 2005-07-27T15:54:19Z 2020-02-15T06:59:51Z +6283 233 2 8385 5.99 2005-07-29T05:39:16Z 2020-02-15T06:59:51Z +6284 233 2 8530 2.99 2005-07-29T10:26:14Z 2020-02-15T06:59:51Z +6285 233 2 8596 0.99 2005-07-29T12:48:54Z 2020-02-15T06:59:51Z +6286 233 1 9574 0.99 2005-07-31T02:49:20Z 2020-02-15T06:59:51Z +6287 233 1 10582 4.99 2005-08-01T13:54:22Z 2020-02-15T06:59:51Z +6288 233 1 12443 5.99 2005-08-18T10:50:59Z 2020-02-15T06:59:51Z +6289 233 2 14357 2.99 2005-08-21T09:13:09Z 2020-02-15T06:59:51Z +6290 233 2 15285 2.99 2005-08-22T19:17:24Z 2020-02-15T06:59:51Z +6291 233 1 15790 1.99 2005-08-23T14:01:07Z 2020-02-15T06:59:51Z +6292 233 2 15821 0.99 2005-08-23T15:03:58Z 2020-02-15T06:59:51Z +6293 234 2 1125 4.99 2005-05-31T17:23:44Z 2020-02-15T06:59:51Z +6294 234 2 1245 3.99 2005-06-15T05:09:01Z 2020-02-15T06:59:51Z +6295 234 2 1645 0.99 2005-06-16T09:10:06Z 2020-02-15T06:59:51Z +6296 234 1 1674 2.99 2005-06-16T10:57:00Z 2020-02-15T06:59:51Z +6297 234 2 1993 5.99 2005-06-17T10:59:24Z 2020-02-15T06:59:51Z +6298 234 1 2005 4.99 2005-06-17T11:44:54Z 2020-02-15T06:59:51Z +6299 234 2 2511 5.99 2005-06-18T23:45:30Z 2020-02-15T06:59:51Z +6300 234 2 3185 6.99 2005-06-20T22:58:01Z 2020-02-15T06:59:51Z +6301 234 2 3199 4.99 2005-06-21T00:12:40Z 2020-02-15T06:59:51Z +6302 234 2 4686 0.99 2005-07-08T10:53:39Z 2020-02-15T06:59:51Z +6303 234 1 4721 7.99 2005-07-08T12:39:31Z 2020-02-15T06:59:51Z +6304 234 2 10133 5.99 2005-07-31T21:55:07Z 2020-02-15T06:59:51Z +6305 234 2 10541 0.99 2005-08-01T12:24:54Z 2020-02-15T06:59:51Z +6306 234 2 10580 6.99 2005-08-01T13:51:14Z 2020-02-15T06:59:51Z +6307 234 2 10968 7.99 2005-08-02T04:03:13Z 2020-02-15T06:59:51Z +6308 234 1 11050 4.99 2005-08-02T06:17:16Z 2020-02-15T06:59:51Z +6309 234 1 11073 0.99 2005-08-02T07:13:03Z 2020-02-15T06:59:51Z +6310 234 1 11481 3.99 2005-08-02T22:18:41Z 2020-02-15T06:59:51Z +6311 234 1 11882 3.99 2005-08-17T14:33:41Z 2020-02-15T06:59:51Z +6312 234 1 12226 0.99 2005-08-18T03:00:48Z 2020-02-15T06:59:51Z +6313 234 2 12863 4.99 2005-08-19T02:35:59Z 2020-02-15T06:59:51Z +6314 234 1 12921 5.99 2005-08-19T04:47:48Z 2020-02-15T06:59:51Z +6315 234 2 13349 2.99 2005-08-19T20:43:16Z 2020-02-15T06:59:51Z +6316 234 2 15037 5.99 2005-08-22T09:36:33Z 2020-02-15T06:59:51Z +6317 234 1 15129 2.99 2005-08-22T13:03:52Z 2020-02-15T06:59:51Z +6318 234 1 15778 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6319 235 2 807 2.99 2005-05-29T18:50:50Z 2020-02-15T06:59:51Z +6320 235 1 1148 0.99 2005-05-31T20:38:40Z 2020-02-15T06:59:51Z +6321 235 1 1493 4.99 2005-06-15T21:50:32Z 2020-02-15T06:59:51Z +6322 235 2 1811 0.99 2005-06-16T21:06:20Z 2020-02-15T06:59:51Z +6323 235 2 3581 2.99 2005-07-06T03:57:35Z 2020-02-15T06:59:51Z +6324 235 1 3752 6.99 2005-07-06T12:30:12Z 2020-02-15T06:59:51Z +6325 235 1 3968 4.99 2005-07-06T22:47:09Z 2020-02-15T06:59:51Z +6326 235 2 4592 2.99 2005-07-08T06:31:28Z 2020-02-15T06:59:51Z +6327 235 1 5790 4.99 2005-07-10T14:15:21Z 2020-02-15T06:59:51Z +6328 235 1 6047 2.99 2005-07-11T03:27:01Z 2020-02-15T06:59:51Z +6329 235 2 6352 4.99 2005-07-11T20:34:13Z 2020-02-15T06:59:51Z +6330 235 2 6466 4.99 2005-07-12T01:21:03Z 2020-02-15T06:59:51Z +6331 235 1 8120 0.99 2005-07-28T19:24:24Z 2020-02-15T06:59:51Z +6332 235 2 8446 6.99 2005-07-29T07:38:10Z 2020-02-15T06:59:51Z +6333 235 2 8781 0.99 2005-07-29T20:20:16Z 2020-02-15T06:59:51Z +6334 235 1 9019 5.99 2005-07-30T05:28:53Z 2020-02-15T06:59:51Z +6335 235 2 9519 6.99 2005-07-31T00:45:57Z 2020-02-15T06:59:51Z +6336 235 1 9587 3.99 2005-07-31T03:10:30Z 2020-02-15T06:59:51Z +6337 235 2 10155 0.99 2005-07-31T22:31:43Z 2020-02-15T06:59:51Z +6338 235 2 12332 2.99 2005-08-18T06:51:05Z 2020-02-15T06:59:51Z +6339 235 1 12502 4.99 2005-08-18T13:16:31Z 2020-02-15T06:59:51Z +6340 235 2 13070 0.99 2005-08-19T09:56:23Z 2020-02-15T06:59:51Z +6341 235 1 13469 0.99 2005-08-20T00:59:36Z 2020-02-15T06:59:51Z +6342 235 2 14749 3.99 2005-08-21T23:08:33Z 2020-02-15T06:59:51Z +6343 235 1 15034 6.99 2005-08-22T09:33:08Z 2020-02-15T06:59:51Z +6344 236 2 262 2.99 2005-05-26T15:46:56Z 2020-02-15T06:59:51Z +6345 236 2 344 2.99 2005-05-27T04:30:22Z 2020-02-15T06:59:51Z +6346 236 1 1032 2.99 2005-05-31T04:28:43Z 2020-02-15T06:59:51Z +6347 236 1 1262 0.99 2005-06-15T06:54:53Z 2020-02-15T06:59:51Z +6348 236 2 1308 5.99 2005-06-15T10:07:48Z 2020-02-15T06:59:51Z +6349 236 2 2139 8.99 2005-06-17T21:29:34Z 2020-02-15T06:59:51Z +6350 236 2 2311 6.99 2005-06-18T08:51:29Z 2020-02-15T06:59:51Z +6351 236 1 2630 2.99 2005-06-19T08:47:21Z 2020-02-15T06:59:51Z +6352 236 2 2840 3.99 2005-06-19T22:17:44Z 2020-02-15T06:59:51Z +6353 236 1 3353 4.99 2005-06-21T11:29:23Z 2020-02-15T06:59:51Z +6354 236 2 3460 2.99 2005-06-21T21:46:56Z 2020-02-15T06:59:51Z +6355 236 1 3645 0.99 2005-07-06T07:22:09Z 2020-02-15T06:59:51Z +6356 236 2 3857 4.99 2005-07-06T17:07:54Z 2020-02-15T06:59:51Z +6357 236 2 4749 4.99 2005-07-08T14:05:58Z 2020-02-15T06:59:51Z +6358 236 1 4959 0.99 2005-07-08T23:22:23Z 2020-02-15T06:59:51Z +6359 236 1 5404 2.99 2005-07-09T20:10:43Z 2020-02-15T06:59:51Z +6360 236 1 5545 3.99 2005-07-10T02:50:29Z 2020-02-15T06:59:51Z +6361 236 2 5938 3.99 2005-07-10T22:17:42Z 2020-02-15T06:59:51Z +6362 236 2 6049 0.99 2005-07-11T03:32:32Z 2020-02-15T06:59:51Z +6363 236 2 6281 4.99 2005-07-11T16:38:16Z 2020-02-15T06:59:51Z +6364 236 1 6303 2.99 2005-07-11T17:55:43Z 2020-02-15T06:59:51Z +6365 236 2 6996 4.99 2005-07-27T01:13:45Z 2020-02-15T06:59:51Z +6366 236 2 7047 4.99 2005-07-27T03:31:11Z 2020-02-15T06:59:51Z +6367 236 2 7253 0.99 2005-07-27T10:46:37Z 2020-02-15T06:59:51Z +6368 236 1 7780 5.99 2005-07-28T07:11:55Z 2020-02-15T06:59:51Z +6369 236 1 7792 4.99 2005-07-28T07:24:02Z 2020-02-15T06:59:51Z +6370 236 2 7798 2.99 2005-07-28T07:41:59Z 2020-02-15T06:59:51Z +6371 236 1 8657 2.99 2005-07-29T15:09:25Z 2020-02-15T06:59:51Z +6372 236 1 9011 5.99 2005-07-30T05:16:29Z 2020-02-15T06:59:51Z +6373 236 1 9934 2.99 2005-07-31T15:25:26Z 2020-02-15T06:59:51Z +6374 236 2 10137 4.99 2005-07-31T22:01:41Z 2020-02-15T06:59:51Z +6375 236 2 11139 6.99 2005-08-02T09:27:36Z 2020-02-15T06:59:51Z +6376 236 2 11486 3.99 2005-08-02T22:34:06Z 2020-02-15T06:59:51Z +6377 236 2 11507 5.99 2005-08-16T23:26:43Z 2020-02-15T06:59:51Z +6378 236 1 11895 4.99 2005-08-17T15:15:07Z 2020-02-15T06:59:51Z +6379 236 1 12975 2.99 2005-08-19T06:51:19Z 2020-02-15T06:59:51Z +6380 236 1 13364 2.99 2005-08-19T21:09:30Z 2020-02-15T06:59:51Z +6381 236 1 13443 7.99 2005-08-19T23:53:42Z 2020-02-15T06:59:51Z +6382 236 2 14321 4.99 2005-08-21T08:05:12Z 2020-02-15T06:59:51Z +6383 236 1 14364 7.99 2005-08-21T09:25:11Z 2020-02-15T06:59:51Z +6384 236 2 14722 4.99 2005-08-21T21:50:53Z 2020-02-15T06:59:51Z +6385 236 1 12988 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6386 237 2 133 0.99 2005-05-25T21:48:30Z 2020-02-15T06:59:51Z +6387 237 1 182 4.99 2005-05-26T04:49:17Z 2020-02-15T06:59:51Z +6388 237 1 1500 0.99 2005-06-15T22:00:45Z 2020-02-15T06:59:51Z +6389 237 2 1518 0.99 2005-06-15T23:36:37Z 2020-02-15T06:59:51Z +6390 237 1 2156 4.99 2005-06-17T23:08:12Z 2020-02-15T06:59:51Z +6391 237 1 2492 2.99 2005-06-18T22:04:15Z 2020-02-15T06:59:51Z +6392 237 2 3069 2.99 2005-06-20T14:13:00Z 2020-02-15T06:59:51Z +6393 237 1 4844 4.99 2005-07-08T18:28:13Z 2020-02-15T06:59:51Z +6394 237 2 6053 4.99 2005-07-11T03:51:59Z 2020-02-15T06:59:51Z +6395 237 1 7193 2.99 2005-07-27T08:37:00Z 2020-02-15T06:59:51Z +6396 237 2 7330 3.99 2005-07-27T13:56:46Z 2020-02-15T06:59:51Z +6397 237 1 7812 4.99 2005-07-28T08:06:52Z 2020-02-15T06:59:51Z +6398 237 2 7951 8.99 2005-07-28T13:21:16Z 2020-02-15T06:59:51Z +6399 237 2 8102 2.99 2005-07-28T18:49:43Z 2020-02-15T06:59:51Z +6400 237 2 8748 2.99 2005-07-29T19:08:37Z 2020-02-15T06:59:51Z +6401 237 2 8799 6.99 2005-07-29T21:16:47Z 2020-02-15T06:59:51Z +6402 237 1 8835 3.99 2005-07-29T22:44:35Z 2020-02-15T06:59:51Z +6403 237 1 9276 5.99 2005-07-30T15:09:28Z 2020-02-15T06:59:51Z +6404 237 1 9661 4.99 2005-07-31T06:06:37Z 2020-02-15T06:59:51Z +6405 237 2 9715 1.99 2005-07-31T08:16:58Z 2020-02-15T06:59:51Z +6406 237 2 10056 0.99 2005-07-31T19:19:13Z 2020-02-15T06:59:51Z +6407 237 2 10058 2.99 2005-07-31T19:20:21Z 2020-02-15T06:59:51Z +6408 237 2 11125 4.99 2005-08-02T08:55:35Z 2020-02-15T06:59:51Z +6409 237 2 11479 11.99 2005-08-02T22:18:13Z 2020-02-15T06:59:51Z +6410 237 2 11772 5.99 2005-08-17T10:18:57Z 2020-02-15T06:59:51Z +6411 237 1 12469 0.99 2005-08-18T11:53:07Z 2020-02-15T06:59:51Z +6412 237 2 13914 6.99 2005-08-20T16:38:57Z 2020-02-15T06:59:51Z +6413 237 2 13922 6.99 2005-08-20T17:02:37Z 2020-02-15T06:59:51Z +6414 237 2 13969 6.99 2005-08-20T18:42:40Z 2020-02-15T06:59:51Z +6415 237 2 14453 3.99 2005-08-21T12:33:34Z 2020-02-15T06:59:51Z +6416 237 2 15139 8.99 2005-08-22T13:38:11Z 2020-02-15T06:59:51Z +6417 237 1 15337 0.99 2005-08-22T20:49:51Z 2020-02-15T06:59:51Z +6418 237 2 15931 1.99 2005-08-23T18:28:09Z 2020-02-15T06:59:51Z +6419 238 2 315 4.99 2005-05-26T23:12:55Z 2020-02-15T06:59:51Z +6420 238 1 842 2.99 2005-05-30T00:32:04Z 2020-02-15T06:59:51Z +6421 238 1 1199 2.99 2005-06-15T01:58:50Z 2020-02-15T06:59:51Z +6422 238 1 1660 4.99 2005-06-16T10:12:55Z 2020-02-15T06:59:51Z +6423 238 1 3181 2.99 2005-06-20T22:51:02Z 2020-02-15T06:59:51Z +6424 238 1 4143 0.99 2005-07-07T08:22:07Z 2020-02-15T06:59:51Z +6425 238 1 5616 5.99 2005-07-10T05:21:11Z 2020-02-15T06:59:51Z +6426 238 2 6403 0.99 2005-07-11T22:46:25Z 2020-02-15T06:59:51Z +6427 238 2 7243 4.99 2005-07-27T10:26:11Z 2020-02-15T06:59:51Z +6428 238 1 8310 8.99 2005-07-29T03:25:56Z 2020-02-15T06:59:51Z +6429 238 1 8382 6.99 2005-07-29T05:33:21Z 2020-02-15T06:59:51Z +6430 238 1 8465 0.99 2005-07-29T08:20:49Z 2020-02-15T06:59:51Z +6431 238 1 9065 4.99 2005-07-30T07:25:09Z 2020-02-15T06:59:51Z +6432 238 2 9841 7.99 2005-07-31T12:24:19Z 2020-02-15T06:59:51Z +6433 238 1 10659 5.99 2005-08-01T16:40:34Z 2020-02-15T06:59:51Z +6434 238 2 11543 5.99 2005-08-17T00:54:28Z 2020-02-15T06:59:51Z +6435 238 2 11632 2.99 2005-08-17T04:29:32Z 2020-02-15T06:59:51Z +6436 238 1 11897 2.99 2005-08-17T15:24:06Z 2020-02-15T06:59:51Z +6437 238 1 14312 4.99 2005-08-21T07:48:34Z 2020-02-15T06:59:51Z +6438 238 1 14343 8.99 2005-08-21T08:40:21Z 2020-02-15T06:59:51Z +6439 238 1 15455 0.99 2005-08-23T01:05:00Z 2020-02-15T06:59:51Z +6440 239 2 8 4.99 2005-05-24T23:31:46Z 2020-02-15T06:59:51Z +6441 239 1 444 2.99 2005-05-27T18:39:15Z 2020-02-15T06:59:51Z +6442 239 1 621 4.99 2005-05-28T15:58:12Z 2020-02-15T06:59:51Z +6443 239 1 636 6.99 2005-05-28T17:47:58Z 2020-02-15T06:59:51Z +6444 239 1 1022 7.99 2005-05-31T03:16:45Z 2020-02-15T06:59:51Z +6445 239 2 1082 5.99 2005-05-31T11:02:01Z 2020-02-15T06:59:51Z +6446 239 1 1160 4.99 2005-06-14T23:00:34Z 2020-02-15T06:59:51Z +6447 239 2 1560 4.99 2005-06-16T02:36:43Z 2020-02-15T06:59:51Z +6448 239 2 2215 2.99 2005-06-18T02:48:21Z 2020-02-15T06:59:51Z +6449 239 1 2390 4.99 2005-06-18T15:29:26Z 2020-02-15T06:59:51Z +6450 239 1 3383 5.99 2005-06-21T14:07:19Z 2020-02-15T06:59:51Z +6451 239 2 3547 0.99 2005-07-06T02:18:06Z 2020-02-15T06:59:51Z +6452 239 1 3552 5.99 2005-07-06T02:34:09Z 2020-02-15T06:59:51Z +6453 239 2 4920 7.99 2005-07-08T21:42:10Z 2020-02-15T06:59:51Z +6454 239 2 5651 4.99 2005-07-10T07:17:13Z 2020-02-15T06:59:51Z +6455 239 1 5960 0.99 2005-07-10T23:38:34Z 2020-02-15T06:59:51Z +6456 239 1 6573 0.99 2005-07-12T06:03:40Z 2020-02-15T06:59:51Z +6457 239 2 7012 8.99 2005-07-27T02:01:03Z 2020-02-15T06:59:51Z +6458 239 1 7426 0.99 2005-07-27T17:19:46Z 2020-02-15T06:59:51Z +6459 239 2 7491 2.99 2005-07-27T19:53:23Z 2020-02-15T06:59:51Z +6460 239 1 8457 6.99 2005-07-29T07:59:03Z 2020-02-15T06:59:51Z +6461 239 2 9676 0.99 2005-07-31T06:39:13Z 2020-02-15T06:59:51Z +6462 239 1 9863 5.99 2005-07-31T13:05:29Z 2020-02-15T06:59:51Z +6463 239 1 10755 0.99 2005-08-01T20:14:14Z 2020-02-15T06:59:51Z +6464 239 2 10923 2.99 2005-08-02T02:15:01Z 2020-02-15T06:59:51Z +6465 239 1 11487 2.99 2005-08-02T22:35:05Z 2020-02-15T06:59:51Z +6466 239 2 11900 4.99 2005-08-17T15:30:44Z 2020-02-15T06:59:51Z +6467 239 1 11968 0.99 2005-08-17T17:47:34Z 2020-02-15T06:59:51Z +6468 239 1 12340 4.99 2005-08-18T07:07:01Z 2020-02-15T06:59:51Z +6469 239 1 12721 1.99 2005-08-18T21:30:12Z 2020-02-15T06:59:51Z +6470 239 1 13175 4.99 2005-08-19T13:54:53Z 2020-02-15T06:59:51Z +6471 239 2 13427 4.99 2005-08-19T23:19:02Z 2020-02-15T06:59:51Z +6472 239 2 13999 3.99 2005-08-20T19:53:32Z 2020-02-15T06:59:51Z +6473 239 2 14062 1.99 2005-08-20T22:34:34Z 2020-02-15T06:59:51Z +6474 240 1 246 2.99 2005-05-26T13:57:07Z 2020-02-15T06:59:51Z +6475 240 1 460 2.99 2005-05-27T20:02:03Z 2020-02-15T06:59:51Z +6476 240 1 643 4.99 2005-05-28T18:52:11Z 2020-02-15T06:59:51Z +6477 240 2 2196 3.99 2005-06-18T01:47:07Z 2020-02-15T06:59:51Z +6478 240 1 2264 4.99 2005-06-18T05:58:45Z 2020-02-15T06:59:51Z +6479 240 2 2872 5.99 2005-06-20T00:38:21Z 2020-02-15T06:59:51Z +6480 240 2 4305 4.99 2005-07-07T17:07:11Z 2020-02-15T06:59:51Z +6481 240 2 5262 4.99 2005-07-09T14:08:01Z 2020-02-15T06:59:51Z +6482 240 1 5596 0.99 2005-07-10T04:43:14Z 2020-02-15T06:59:51Z +6483 240 1 6272 0.99 2005-07-11T16:03:49Z 2020-02-15T06:59:51Z +6484 240 2 6470 0.99 2005-07-12T01:29:41Z 2020-02-15T06:59:51Z +6485 240 1 6956 4.99 2005-07-26T23:55:57Z 2020-02-15T06:59:51Z +6486 240 1 7001 4.99 2005-07-27T01:25:34Z 2020-02-15T06:59:51Z +6487 240 1 7467 8.99 2005-07-27T18:51:54Z 2020-02-15T06:59:51Z +6488 240 2 7481 4.99 2005-07-27T19:20:25Z 2020-02-15T06:59:51Z +6489 240 1 7870 4.99 2005-07-28T10:16:03Z 2020-02-15T06:59:51Z +6490 240 2 8503 3.99 2005-07-29T09:16:50Z 2020-02-15T06:59:51Z +6491 240 2 8905 5.99 2005-07-30T01:11:11Z 2020-02-15T06:59:51Z +6492 240 1 10308 7.99 2005-08-01T04:22:49Z 2020-02-15T06:59:51Z +6493 240 1 11745 3.99 2005-08-17T09:00:01Z 2020-02-15T06:59:51Z +6494 240 2 12283 6.99 2005-08-18T04:54:25Z 2020-02-15T06:59:51Z +6495 240 2 13030 2.99 2005-08-19T08:28:11Z 2020-02-15T06:59:51Z +6496 240 2 13119 4.99 2005-08-19T11:44:59Z 2020-02-15T06:59:51Z +6497 240 1 13663 8.99 2005-08-20T08:12:33Z 2020-02-15T06:59:51Z +6498 240 2 14573 2.99 2005-08-21T16:44:32Z 2020-02-15T06:59:51Z +6499 240 2 15641 0.99 2005-08-23T08:06:49Z 2020-02-15T06:59:51Z +6500 241 1 627 7.99 2005-05-28T17:04:43Z 2020-02-15T06:59:51Z +6501 241 1 1059 3.99 2005-05-31T08:20:43Z 2020-02-15T06:59:51Z +6502 241 2 2428 0.99 2005-06-18T17:47:34Z 2020-02-15T06:59:51Z +6503 241 1 2455 0.99 2005-06-18T19:33:06Z 2020-02-15T06:59:51Z +6504 241 2 2478 5.99 2005-06-18T21:01:21Z 2020-02-15T06:59:51Z +6505 241 2 2683 2.99 2005-06-19T12:27:19Z 2020-02-15T06:59:51Z +6506 241 2 3258 0.99 2005-06-21T03:53:58Z 2020-02-15T06:59:51Z +6507 241 2 3822 0.99 2005-07-06T15:41:15Z 2020-02-15T06:59:51Z +6508 241 1 4731 0.99 2005-07-08T13:08:18Z 2020-02-15T06:59:51Z +6509 241 2 5017 2.99 2005-07-09T02:00:16Z 2020-02-15T06:59:51Z +6510 241 1 5211 0.99 2005-07-09T11:26:50Z 2020-02-15T06:59:51Z +6511 241 1 5438 4.99 2005-07-09T21:34:32Z 2020-02-15T06:59:51Z +6512 241 2 5525 3.99 2005-07-10T02:03:08Z 2020-02-15T06:59:51Z +6513 241 1 5981 4.99 2005-07-11T00:19:04Z 2020-02-15T06:59:51Z +6514 241 2 6090 6.99 2005-07-11T05:47:08Z 2020-02-15T06:59:51Z +6515 241 2 6245 2.99 2005-07-11T14:56:57Z 2020-02-15T06:59:51Z +6516 241 1 7320 0.99 2005-07-27T13:33:35Z 2020-02-15T06:59:51Z +6517 241 1 7434 2.99 2005-07-27T17:34:40Z 2020-02-15T06:59:51Z +6518 241 1 7860 2.99 2005-07-28T09:58:02Z 2020-02-15T06:59:51Z +6519 241 1 9500 6.99 2005-07-30T23:58:36Z 2020-02-15T06:59:51Z +6520 241 1 9528 3.99 2005-07-31T01:05:04Z 2020-02-15T06:59:51Z +6521 241 1 9944 5.99 2005-07-31T15:44:43Z 2020-02-15T06:59:51Z +6522 241 2 10447 3.99 2005-08-01T09:04:58Z 2020-02-15T06:59:51Z +6523 241 1 10652 2.99 2005-08-01T16:24:08Z 2020-02-15T06:59:51Z +6524 241 1 11423 1.99 2005-08-02T19:57:13Z 2020-02-15T06:59:51Z +6525 241 2 12418 4.99 2005-08-18T09:59:36Z 2020-02-15T06:59:51Z +6526 241 1 12956 4.99 2005-08-19T06:06:26Z 2020-02-15T06:59:51Z +6527 241 2 13077 2.99 2005-08-19T10:15:19Z 2020-02-15T06:59:51Z +6528 241 2 14269 7.99 2005-08-21T06:22:07Z 2020-02-15T06:59:51Z +6529 241 2 14485 2.99 2005-08-21T13:52:07Z 2020-02-15T06:59:51Z +6530 241 1 14936 0.99 2005-08-22T05:51:26Z 2020-02-15T06:59:51Z +6531 241 2 15137 2.99 2005-08-22T13:20:28Z 2020-02-15T06:59:51Z +6532 241 1 15429 2.99 2005-08-23T00:20:31Z 2020-02-15T06:59:51Z +6533 241 1 15767 4.99 2005-08-23T13:14:15Z 2020-02-15T06:59:51Z +6534 242 1 108 2.99 2005-05-25T18:30:05Z 2020-02-15T06:59:51Z +6535 242 2 283 3.99 2005-05-26T19:05:05Z 2020-02-15T06:59:51Z +6536 242 2 881 4.99 2005-05-30T06:15:36Z 2020-02-15T06:59:51Z +6537 242 2 1304 4.99 2005-06-15T09:56:02Z 2020-02-15T06:59:51Z +6538 242 1 1384 4.99 2005-06-15T15:22:03Z 2020-02-15T06:59:51Z +6539 242 1 1483 4.99 2005-06-15T21:21:58Z 2020-02-15T06:59:51Z +6540 242 2 1702 4.99 2005-06-16T13:21:05Z 2020-02-15T06:59:51Z +6541 242 1 2691 4.99 2005-06-19T13:06:50Z 2020-02-15T06:59:51Z +6542 242 2 2942 4.99 2005-06-20T05:27:31Z 2020-02-15T06:59:51Z +6543 242 1 3471 4.99 2005-07-05T22:51:44Z 2020-02-15T06:59:51Z +6544 242 2 3604 0.99 2005-07-06T05:25:22Z 2020-02-15T06:59:51Z +6545 242 1 4426 4.99 2005-07-07T22:28:32Z 2020-02-15T06:59:51Z +6546 242 2 4895 1.99 2005-07-08T20:22:05Z 2020-02-15T06:59:51Z +6547 242 2 5666 5.99 2005-07-10T08:10:29Z 2020-02-15T06:59:51Z +6548 242 2 7149 3.99 2005-07-27T07:10:40Z 2020-02-15T06:59:51Z +6549 242 1 8491 4.99 2005-07-29T09:02:13Z 2020-02-15T06:59:51Z +6550 242 1 9423 3.99 2005-07-30T21:10:14Z 2020-02-15T06:59:51Z +6551 242 1 9730 6.99 2005-07-31T08:50:08Z 2020-02-15T06:59:51Z +6552 242 2 10367 0.99 2005-08-01T06:12:19Z 2020-02-15T06:59:51Z +6553 242 2 10382 4.99 2005-08-01T06:36:45Z 2020-02-15T06:59:51Z +6554 242 2 10650 9.99 2005-08-01T16:18:45Z 2020-02-15T06:59:51Z +6555 242 2 11020 0.99 2005-08-02T05:29:48Z 2020-02-15T06:59:51Z +6556 242 1 11258 4.99 2005-08-02T13:45:39Z 2020-02-15T06:59:51Z +6557 242 2 11607 0.99 2005-08-17T03:36:06Z 2020-02-15T06:59:51Z +6558 242 1 11931 4.99 2005-08-17T16:35:14Z 2020-02-15T06:59:51Z +6559 242 2 12724 7.99 2005-08-18T21:37:20Z 2020-02-15T06:59:51Z +6560 242 1 12855 4.99 2005-08-19T02:18:58Z 2020-02-15T06:59:51Z +6561 242 1 13271 9.99 2005-08-19T17:42:06Z 2020-02-15T06:59:51Z +6562 242 2 13567 0.99 2005-08-20T04:49:21Z 2020-02-15T06:59:51Z +6563 242 2 13646 5.99 2005-08-20T07:47:08Z 2020-02-15T06:59:51Z +6564 242 1 14515 0.99 2005-08-21T14:52:14Z 2020-02-15T06:59:51Z +6565 242 1 15002 0.99 2005-08-22T08:06:00Z 2020-02-15T06:59:51Z +6566 243 1 188 4.99 2005-05-26T05:47:12Z 2020-02-15T06:59:51Z +6567 243 1 1405 5.99 2005-06-15T16:41:26Z 2020-02-15T06:59:51Z +6568 243 1 1452 0.99 2005-06-15T19:32:52Z 2020-02-15T06:59:51Z +6569 243 2 2757 5.99 2005-06-19T17:01:14Z 2020-02-15T06:59:51Z +6570 243 2 3854 5.99 2005-07-06T17:02:33Z 2020-02-15T06:59:51Z +6571 243 1 3965 4.99 2005-07-06T22:36:20Z 2020-02-15T06:59:51Z +6572 243 1 4831 0.99 2005-07-08T18:00:14Z 2020-02-15T06:59:51Z +6573 243 1 5502 0.99 2005-07-10T00:34:15Z 2020-02-15T06:59:51Z +6574 243 2 6038 3.99 2005-07-11T03:10:37Z 2020-02-15T06:59:51Z +6575 243 2 6820 2.99 2005-07-12T18:21:30Z 2020-02-15T06:59:51Z +6576 243 2 7022 2.99 2005-07-27T02:31:15Z 2020-02-15T06:59:51Z +6577 243 2 7165 0.99 2005-07-27T07:36:46Z 2020-02-15T06:59:51Z +6578 243 1 8834 4.99 2005-07-29T22:41:48Z 2020-02-15T06:59:51Z +6579 243 2 9035 2.99 2005-07-30T06:16:07Z 2020-02-15T06:59:51Z +6580 243 2 9514 4.99 2005-07-31T00:29:44Z 2020-02-15T06:59:51Z +6581 243 2 9675 2.99 2005-07-31T06:37:07Z 2020-02-15T06:59:51Z +6582 243 2 9988 5.99 2005-07-31T17:22:36Z 2020-02-15T06:59:51Z +6583 243 1 12209 2.99 2005-08-18T02:27:20Z 2020-02-15T06:59:51Z +6584 243 1 13291 2.99 2005-08-19T18:32:11Z 2020-02-15T06:59:51Z +6585 243 1 14033 2.99 2005-08-20T21:30:53Z 2020-02-15T06:59:51Z +6586 243 1 14108 0.99 2005-08-21T00:52:45Z 2020-02-15T06:59:51Z +6587 243 1 14272 3.99 2005-08-21T06:24:55Z 2020-02-15T06:59:51Z +6588 243 2 14581 1.99 2005-08-21T17:07:08Z 2020-02-15T06:59:51Z +6589 243 2 14705 2.99 2005-08-21T21:02:55Z 2020-02-15T06:59:51Z +6590 244 2 592 4.99 2005-05-28T13:21:08Z 2020-02-15T06:59:51Z +6591 244 1 797 1.99 2005-05-29T17:12:17Z 2020-02-15T06:59:51Z +6592 244 2 1189 6.99 2005-06-15T01:04:22Z 2020-02-15T06:59:51Z +6593 244 1 1595 5.99 2005-06-16T05:23:46Z 2020-02-15T06:59:51Z +6594 244 2 2955 3.99 2005-06-20T06:46:35Z 2020-02-15T06:59:51Z +6595 244 1 4814 4.99 2005-07-08T17:11:09Z 2020-02-15T06:59:51Z +6596 244 2 5387 4.99 2005-07-09T19:25:14Z 2020-02-15T06:59:51Z +6597 244 2 5461 0.99 2005-07-09T22:48:04Z 2020-02-15T06:59:51Z +6598 244 2 5692 0.99 2005-07-10T09:32:22Z 2020-02-15T06:59:51Z +6599 244 1 5779 4.99 2005-07-10T13:45:54Z 2020-02-15T06:59:51Z +6600 244 1 5803 3.99 2005-07-10T15:05:42Z 2020-02-15T06:59:51Z +6601 244 2 6374 4.99 2005-07-11T21:36:10Z 2020-02-15T06:59:51Z +6602 244 2 6608 2.99 2005-07-12T08:16:50Z 2020-02-15T06:59:51Z +6603 244 2 6683 2.99 2005-07-12T12:14:05Z 2020-02-15T06:59:51Z +6604 244 2 8454 0.99 2005-07-29T07:49:04Z 2020-02-15T06:59:51Z +6605 244 2 8844 5.99 2005-07-29T23:05:08Z 2020-02-15T06:59:51Z +6606 244 1 10001 4.99 2005-07-31T17:46:18Z 2020-02-15T06:59:51Z +6607 244 2 10047 4.99 2005-07-31T19:07:43Z 2020-02-15T06:59:51Z +6608 244 1 10152 5.99 2005-07-31T22:28:05Z 2020-02-15T06:59:51Z +6609 244 2 10684 6.99 2005-08-01T17:47:00Z 2020-02-15T06:59:51Z +6610 244 2 10969 2.99 2005-08-02T04:04:32Z 2020-02-15T06:59:51Z +6611 244 2 11157 0.99 2005-08-02T09:58:15Z 2020-02-15T06:59:51Z +6612 244 1 11267 9.99 2005-08-02T14:09:08Z 2020-02-15T06:59:51Z +6613 244 1 11762 9.99 2005-08-17T09:48:06Z 2020-02-15T06:59:51Z +6614 244 1 13630 4.99 2005-08-20T07:05:56Z 2020-02-15T06:59:51Z +6615 244 2 13774 0.99 2005-08-20T11:54:01Z 2020-02-15T06:59:51Z +6616 244 1 13928 0.99 2005-08-20T17:12:28Z 2020-02-15T06:59:51Z +6617 244 1 14367 0.99 2005-08-21T09:31:44Z 2020-02-15T06:59:51Z +6618 244 2 14657 0.99 2005-08-21T19:39:43Z 2020-02-15T06:59:51Z +6619 244 1 14919 1.99 2005-08-22T05:07:17Z 2020-02-15T06:59:51Z +6620 244 1 14975 3.99 2005-08-22T07:07:50Z 2020-02-15T06:59:51Z +6621 244 2 12736 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6622 245 2 79 4.99 2005-05-25T12:11:07Z 2020-02-15T06:59:51Z +6623 245 1 241 0.99 2005-05-26T12:49:01Z 2020-02-15T06:59:51Z +6624 245 1 519 7.99 2005-05-28T03:22:33Z 2020-02-15T06:59:51Z +6625 245 1 719 2.99 2005-05-29T05:16:05Z 2020-02-15T06:59:51Z +6626 245 2 725 2.99 2005-05-29T06:03:41Z 2020-02-15T06:59:51Z +6627 245 2 948 8.99 2005-05-30T15:44:27Z 2020-02-15T06:59:51Z +6628 245 1 1377 2.99 2005-06-15T15:02:03Z 2020-02-15T06:59:51Z +6629 245 1 2122 2.99 2005-06-17T20:48:27Z 2020-02-15T06:59:51Z +6630 245 1 3157 2.99 2005-06-20T21:07:54Z 2020-02-15T06:59:51Z +6631 245 1 3634 2.99 2005-07-06T06:51:14Z 2020-02-15T06:59:51Z +6632 245 2 5321 2.99 2005-07-09T16:26:33Z 2020-02-15T06:59:51Z +6633 245 1 5764 4.99 2005-07-10T12:58:16Z 2020-02-15T06:59:51Z +6634 245 2 6242 2.99 2005-07-11T14:45:04Z 2020-02-15T06:59:51Z +6635 245 1 6795 5.99 2005-07-12T16:41:00Z 2020-02-15T06:59:51Z +6636 245 2 6962 0.99 2005-07-27T00:10:58Z 2020-02-15T06:59:51Z +6637 245 1 7230 4.99 2005-07-27T10:01:41Z 2020-02-15T06:59:51Z +6638 245 2 7233 5.99 2005-07-27T10:08:36Z 2020-02-15T06:59:51Z +6639 245 1 7358 0.99 2005-07-27T14:49:44Z 2020-02-15T06:59:51Z +6640 245 2 7397 4.99 2005-07-27T16:05:00Z 2020-02-15T06:59:51Z +6641 245 2 8701 6.99 2005-07-29T17:02:35Z 2020-02-15T06:59:51Z +6642 245 1 8811 10.99 2005-07-29T21:46:21Z 2020-02-15T06:59:51Z +6643 245 2 9088 0.99 2005-07-30T08:21:02Z 2020-02-15T06:59:51Z +6644 245 2 9169 4.99 2005-07-30T11:35:00Z 2020-02-15T06:59:51Z +6645 245 1 9813 6.99 2005-07-31T11:29:23Z 2020-02-15T06:59:51Z +6646 245 1 10087 3.99 2005-07-31T20:15:22Z 2020-02-15T06:59:51Z +6647 245 2 11061 0.99 2005-08-02T06:50:18Z 2020-02-15T06:59:51Z +6648 245 1 11105 0.99 2005-08-02T08:13:31Z 2020-02-15T06:59:51Z +6649 245 1 11211 0.99 2005-08-02T12:16:48Z 2020-02-15T06:59:51Z +6650 245 1 12303 7.99 2005-08-18T05:43:22Z 2020-02-15T06:59:51Z +6651 245 1 13286 0.99 2005-08-19T18:28:07Z 2020-02-15T06:59:51Z +6652 245 1 15782 6.99 2005-08-23T13:43:26Z 2020-02-15T06:59:51Z +6653 245 2 12682 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6654 246 1 124 6.99 2005-05-25T20:46:11Z 2020-02-15T06:59:51Z +6655 246 2 421 8.99 2005-05-27T15:30:13Z 2020-02-15T06:59:51Z +6656 246 2 434 5.99 2005-05-27T16:54:27Z 2020-02-15T06:59:51Z +6657 246 1 699 3.99 2005-05-29T02:11:44Z 2020-02-15T06:59:51Z +6658 246 1 1051 4.99 2005-05-31T07:02:09Z 2020-02-15T06:59:51Z +6659 246 2 1448 1.99 2005-06-15T19:17:16Z 2020-02-15T06:59:51Z +6660 246 1 1968 2.99 2005-06-17T09:20:36Z 2020-02-15T06:59:51Z +6661 246 2 2704 1.99 2005-06-19T13:50:10Z 2020-02-15T06:59:51Z +6662 246 1 2725 0.99 2005-06-19T15:01:23Z 2020-02-15T06:59:51Z +6663 246 1 3152 4.99 2005-06-20T20:42:41Z 2020-02-15T06:59:51Z +6664 246 1 4092 7.99 2005-07-07T05:54:18Z 2020-02-15T06:59:51Z +6665 246 2 4905 4.99 2005-07-08T20:56:00Z 2020-02-15T06:59:51Z +6666 246 2 4994 2.99 2005-07-09T00:54:13Z 2020-02-15T06:59:51Z +6667 246 2 5347 0.99 2005-07-09T17:31:32Z 2020-02-15T06:59:51Z +6668 246 1 6688 4.99 2005-07-12T12:22:12Z 2020-02-15T06:59:51Z +6669 246 2 9525 5.99 2005-07-31T01:02:18Z 2020-02-15T06:59:51Z +6670 246 2 10208 4.99 2005-08-01T00:54:51Z 2020-02-15T06:59:51Z +6671 246 2 10683 2.99 2005-08-01T17:33:03Z 2020-02-15T06:59:51Z +6672 246 2 13418 5.99 2005-08-19T22:53:56Z 2020-02-15T06:59:51Z +6673 246 1 13750 6.99 2005-08-20T11:11:42Z 2020-02-15T06:59:51Z +6674 246 1 13987 4.99 2005-08-20T19:19:30Z 2020-02-15T06:59:51Z +6675 246 1 14360 6.99 2005-08-21T09:16:40Z 2020-02-15T06:59:51Z +6676 246 1 15746 2.99 2005-08-23T12:26:19Z 2020-02-15T06:59:51Z +6677 247 1 189 4.99 2005-05-26T06:01:41Z 2020-02-15T06:59:51Z +6678 247 2 448 3.99 2005-05-27T19:03:08Z 2020-02-15T06:59:51Z +6679 247 1 450 6.99 2005-05-27T19:18:54Z 2020-02-15T06:59:51Z +6680 247 1 2288 5.99 2005-06-18T07:23:17Z 2020-02-15T06:59:51Z +6681 247 2 3955 2.99 2005-07-06T21:58:08Z 2020-02-15T06:59:51Z +6682 247 2 4198 6.99 2005-07-07T11:08:11Z 2020-02-15T06:59:51Z +6683 247 1 4492 2.99 2005-07-08T01:32:04Z 2020-02-15T06:59:51Z +6684 247 2 4995 2.99 2005-07-09T00:57:46Z 2020-02-15T06:59:51Z +6685 247 1 5328 6.99 2005-07-09T16:48:29Z 2020-02-15T06:59:51Z +6686 247 1 5842 4.99 2005-07-10T17:11:37Z 2020-02-15T06:59:51Z +6687 247 1 7963 5.99 2005-07-28T13:48:38Z 2020-02-15T06:59:51Z +6688 247 1 10279 1.99 2005-08-01T03:26:44Z 2020-02-15T06:59:51Z +6689 247 1 10410 6.99 2005-08-01T07:53:29Z 2020-02-15T06:59:51Z +6690 247 2 11204 2.99 2005-08-02T11:56:31Z 2020-02-15T06:59:51Z +6691 247 2 11306 2.99 2005-08-02T15:45:10Z 2020-02-15T06:59:51Z +6692 247 1 11495 0.99 2005-08-16T22:51:20Z 2020-02-15T06:59:51Z +6693 247 2 12265 4.99 2005-08-18T04:22:01Z 2020-02-15T06:59:51Z +6694 247 1 12482 7.99 2005-08-18T12:37:36Z 2020-02-15T06:59:51Z +6695 247 1 12491 4.99 2005-08-18T12:48:45Z 2020-02-15T06:59:51Z +6696 247 1 12824 4.99 2005-08-19T01:18:00Z 2020-02-15T06:59:51Z +6697 247 1 14041 4.99 2005-08-20T21:45:23Z 2020-02-15T06:59:51Z +6698 247 1 15783 4.99 2005-08-23T13:45:44Z 2020-02-15T06:59:51Z +6699 248 2 330 7.99 2005-05-27T02:15:30Z 2020-02-15T06:59:51Z +6700 248 1 618 4.99 2005-05-28T15:50:07Z 2020-02-15T06:59:51Z +6701 248 1 2066 3.99 2005-06-17T16:07:08Z 2020-02-15T06:59:51Z +6702 248 2 2371 0.99 2005-06-18T14:35:29Z 2020-02-15T06:59:51Z +6703 248 1 3910 0.99 2005-07-06T20:05:18Z 2020-02-15T06:59:51Z +6704 248 2 4541 4.99 2005-07-08T04:04:19Z 2020-02-15T06:59:51Z +6705 248 1 4841 0.99 2005-07-08T18:18:23Z 2020-02-15T06:59:51Z +6706 248 1 5370 2.99 2005-07-09T18:43:19Z 2020-02-15T06:59:51Z +6707 248 2 6617 2.99 2005-07-12T08:39:56Z 2020-02-15T06:59:51Z +6708 248 2 7778 5.99 2005-07-28T07:10:11Z 2020-02-15T06:59:51Z +6709 248 2 10418 4.99 2005-08-01T08:11:07Z 2020-02-15T06:59:51Z +6710 248 1 12241 0.99 2005-08-18T03:33:17Z 2020-02-15T06:59:51Z +6711 248 1 13918 0.99 2005-08-20T16:47:32Z 2020-02-15T06:59:51Z +6712 248 2 14704 0.99 2005-08-21T21:02:22Z 2020-02-15T06:59:51Z +6713 248 2 14885 5.99 2005-08-22T03:58:29Z 2020-02-15T06:59:51Z +6714 249 2 316 4.99 2005-05-26T23:22:55Z 2020-02-15T06:59:51Z +6715 249 2 400 2.99 2005-05-27T12:51:44Z 2020-02-15T06:59:51Z +6716 249 1 438 6.99 2005-05-27T17:52:34Z 2020-02-15T06:59:51Z +6717 249 1 597 3.99 2005-05-28T14:01:02Z 2020-02-15T06:59:51Z +6718 249 1 1204 0.99 2005-06-15T02:21:46Z 2020-02-15T06:59:51Z +6719 249 1 1473 5.99 2005-06-15T20:55:20Z 2020-02-15T06:59:51Z +6720 249 2 1753 2.99 2005-06-16T17:08:17Z 2020-02-15T06:59:51Z +6721 249 2 2129 1.99 2005-06-17T20:58:32Z 2020-02-15T06:59:51Z +6722 249 2 3175 7.99 2005-06-20T22:30:23Z 2020-02-15T06:59:51Z +6723 249 1 4352 9.99 2005-07-07T19:15:58Z 2020-02-15T06:59:51Z +6724 249 1 5011 4.99 2005-07-09T01:44:40Z 2020-02-15T06:59:51Z +6725 249 1 5275 4.99 2005-07-09T14:34:18Z 2020-02-15T06:59:51Z +6726 249 2 5639 3.99 2005-07-10T06:33:39Z 2020-02-15T06:59:51Z +6727 249 2 6670 7.99 2005-07-12T11:44:33Z 2020-02-15T06:59:51Z +6728 249 1 7544 7.99 2005-07-27T21:47:37Z 2020-02-15T06:59:51Z +6729 249 1 7804 2.99 2005-07-28T07:56:00Z 2020-02-15T06:59:51Z +6730 249 2 7881 4.99 2005-07-28T10:33:22Z 2020-02-15T06:59:51Z +6731 249 1 11124 1.99 2005-08-02T08:55:25Z 2020-02-15T06:59:51Z +6732 249 1 11159 4.99 2005-08-02T10:00:55Z 2020-02-15T06:59:51Z +6733 249 2 11668 0.99 2005-08-17T05:47:32Z 2020-02-15T06:59:51Z +6734 249 2 13981 4.99 2005-08-20T19:07:20Z 2020-02-15T06:59:51Z +6735 249 2 14285 0.99 2005-08-21T06:50:48Z 2020-02-15T06:59:51Z +6736 249 1 15160 6.99 2005-08-22T14:33:50Z 2020-02-15T06:59:51Z +6737 250 1 61 5.99 2005-05-25T09:01:57Z 2020-02-15T06:59:51Z +6738 250 1 176 3.99 2005-05-26T03:47:39Z 2020-02-15T06:59:51Z +6739 250 1 637 4.99 2005-05-28T18:14:29Z 2020-02-15T06:59:51Z +6740 250 2 687 0.99 2005-05-29T00:32:09Z 2020-02-15T06:59:51Z +6741 250 1 1146 2.99 2005-05-31T20:34:45Z 2020-02-15T06:59:51Z +6742 250 1 2432 4.99 2005-06-18T17:59:18Z 2020-02-15T06:59:51Z +6743 250 1 3635 4.99 2005-07-06T06:55:36Z 2020-02-15T06:59:51Z +6744 250 1 3951 3.99 2005-07-06T21:50:41Z 2020-02-15T06:59:51Z +6745 250 1 5479 2.99 2005-07-09T23:47:33Z 2020-02-15T06:59:51Z +6746 250 1 5540 0.99 2005-07-10T02:44:21Z 2020-02-15T06:59:51Z +6747 250 1 5998 2.99 2005-07-11T01:20:46Z 2020-02-15T06:59:51Z +6748 250 1 8579 2.99 2005-07-29T11:59:22Z 2020-02-15T06:59:51Z +6749 250 2 9099 0.99 2005-07-30T08:45:48Z 2020-02-15T06:59:51Z +6750 250 2 10604 4.99 2005-08-01T14:35:08Z 2020-02-15T06:59:51Z +6751 250 1 12361 0.99 2005-08-18T07:47:31Z 2020-02-15T06:59:51Z +6752 250 1 12810 0.99 2005-08-19T00:44:10Z 2020-02-15T06:59:51Z +6753 250 2 14565 4.99 2005-08-21T16:24:45Z 2020-02-15T06:59:51Z +6754 250 1 14587 5.99 2005-08-21T17:20:55Z 2020-02-15T06:59:51Z +6755 250 2 14814 4.99 2005-08-22T01:12:14Z 2020-02-15T06:59:51Z +6756 250 2 15247 6.99 2005-08-22T17:52:05Z 2020-02-15T06:59:51Z +6757 251 1 264 2.99 2005-05-26T16:00:49Z 2020-02-15T06:59:51Z +6758 251 1 309 1.99 2005-05-26T22:38:10Z 2020-02-15T06:59:51Z +6759 251 2 393 2.99 2005-05-27T11:18:25Z 2020-02-15T06:59:51Z +6760 251 2 1069 3.99 2005-05-31T09:32:31Z 2020-02-15T06:59:51Z +6761 251 1 1091 4.99 2005-05-31T12:11:04Z 2020-02-15T06:59:51Z +6762 251 2 1155 2.99 2005-05-31T22:17:11Z 2020-02-15T06:59:51Z +6763 251 1 2238 6.99 2005-06-18T04:22:06Z 2020-02-15T06:59:51Z +6764 251 2 3422 7.99 2005-06-21T17:24:40Z 2020-02-15T06:59:51Z +6765 251 1 3464 2.99 2005-06-21T22:08:58Z 2020-02-15T06:59:51Z +6766 251 1 3799 4.99 2005-07-06T15:00:14Z 2020-02-15T06:59:51Z +6767 251 2 4026 3.99 2005-07-07T02:15:48Z 2020-02-15T06:59:51Z +6768 251 2 4848 2.99 2005-07-08T18:30:16Z 2020-02-15T06:59:51Z +6769 251 2 5012 2.99 2005-07-09T01:45:04Z 2020-02-15T06:59:51Z +6770 251 2 5979 2.99 2005-07-11T00:17:09Z 2020-02-15T06:59:51Z +6771 251 2 6413 6.99 2005-07-11T23:26:11Z 2020-02-15T06:59:51Z +6772 251 2 7338 8.99 2005-07-27T14:13:34Z 2020-02-15T06:59:51Z +6773 251 2 8443 2.99 2005-07-29T07:33:12Z 2020-02-15T06:59:51Z +6774 251 2 8982 0.99 2005-07-30T04:31:02Z 2020-02-15T06:59:51Z +6775 251 1 9196 2.99 2005-07-30T12:30:19Z 2020-02-15T06:59:51Z +6776 251 1 9892 0.99 2005-07-31T14:06:25Z 2020-02-15T06:59:51Z +6777 251 1 10575 7.99 2005-08-01T13:41:41Z 2020-02-15T06:59:51Z +6778 251 1 11733 0.99 2005-08-17T08:31:03Z 2020-02-15T06:59:51Z +6779 251 2 12047 3.99 2005-08-17T20:48:32Z 2020-02-15T06:59:51Z +6780 251 2 12666 4.99 2005-08-18T19:11:41Z 2020-02-15T06:59:51Z +6781 251 2 13121 2.99 2005-08-19T11:51:39Z 2020-02-15T06:59:51Z +6782 251 1 13243 2.99 2005-08-19T16:33:16Z 2020-02-15T06:59:51Z +6783 251 2 13260 6.99 2005-08-19T17:09:22Z 2020-02-15T06:59:51Z +6784 251 1 14292 0.99 2005-08-21T07:06:20Z 2020-02-15T06:59:51Z +6785 251 2 15647 2.99 2005-08-23T08:23:56Z 2020-02-15T06:59:51Z +6786 251 2 15870 4.99 2005-08-23T16:23:08Z 2020-02-15T06:59:51Z +6787 251 1 14107 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6788 252 1 707 4.99 2005-05-29T03:18:19Z 2020-02-15T06:59:51Z +6789 252 1 1095 0.99 2005-05-31T13:15:41Z 2020-02-15T06:59:51Z +6790 252 1 1395 5.99 2005-06-15T16:21:04Z 2020-02-15T06:59:51Z +6791 252 2 2716 4.99 2005-06-19T14:40:17Z 2020-02-15T06:59:51Z +6792 252 1 2968 0.99 2005-06-20T07:41:47Z 2020-02-15T06:59:51Z +6793 252 2 4372 0.99 2005-07-07T20:09:01Z 2020-02-15T06:59:51Z +6794 252 2 5554 2.99 2005-07-10T03:03:38Z 2020-02-15T06:59:51Z +6795 252 1 6357 0.99 2005-07-11T20:58:51Z 2020-02-15T06:59:51Z +6796 252 2 6369 0.99 2005-07-11T21:23:36Z 2020-02-15T06:59:51Z +6797 252 1 7024 4.99 2005-07-27T02:36:40Z 2020-02-15T06:59:51Z +6798 252 2 7121 0.99 2005-07-27T05:58:32Z 2020-02-15T06:59:51Z +6799 252 2 7168 0.99 2005-07-27T07:51:11Z 2020-02-15T06:59:51Z +6800 252 1 7670 0.99 2005-07-28T02:44:25Z 2020-02-15T06:59:51Z +6801 252 1 8636 5.99 2005-07-29T14:24:13Z 2020-02-15T06:59:51Z +6802 252 1 8899 0.99 2005-07-30T01:05:30Z 2020-02-15T06:59:51Z +6803 252 2 10314 0.99 2005-08-01T04:31:18Z 2020-02-15T06:59:51Z +6804 252 2 10834 2.99 2005-08-01T23:28:00Z 2020-02-15T06:59:51Z +6805 252 2 11764 0.99 2005-08-17T09:51:54Z 2020-02-15T06:59:51Z +6806 252 1 13385 4.99 2005-08-19T21:39:35Z 2020-02-15T06:59:51Z +6807 252 2 13989 5.99 2005-08-20T19:27:50Z 2020-02-15T06:59:51Z +6808 252 1 14774 4.99 2005-08-21T23:52:32Z 2020-02-15T06:59:51Z +6809 252 2 13756 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6810 253 1 566 6.99 2005-05-28T09:51:39Z 2020-02-15T06:59:51Z +6811 253 1 648 0.99 2005-05-28T19:25:54Z 2020-02-15T06:59:51Z +6812 253 1 986 2.99 2005-05-30T22:22:52Z 2020-02-15T06:59:51Z +6813 253 2 1378 1.99 2005-06-15T15:03:15Z 2020-02-15T06:59:51Z +6814 253 2 1606 6.99 2005-06-16T06:18:31Z 2020-02-15T06:59:51Z +6815 253 2 2081 5.99 2005-06-17T17:05:02Z 2020-02-15T06:59:51Z +6816 253 1 2142 4.99 2005-06-17T21:55:43Z 2020-02-15T06:59:51Z +6817 253 1 2454 4.99 2005-06-18T19:32:51Z 2020-02-15T06:59:51Z +6818 253 2 2636 4.99 2005-06-19T09:13:06Z 2020-02-15T06:59:51Z +6819 253 1 3658 7.99 2005-07-06T08:01:08Z 2020-02-15T06:59:51Z +6820 253 1 5505 2.99 2005-07-10T00:38:48Z 2020-02-15T06:59:51Z +6821 253 1 5602 4.99 2005-07-10T05:02:22Z 2020-02-15T06:59:51Z +6822 253 2 7689 2.99 2005-07-28T03:21:24Z 2020-02-15T06:59:51Z +6823 253 2 7851 0.99 2005-07-28T09:31:58Z 2020-02-15T06:59:51Z +6824 253 2 7887 2.99 2005-07-28T10:40:12Z 2020-02-15T06:59:51Z +6825 253 2 8752 2.99 2005-07-29T19:15:07Z 2020-02-15T06:59:51Z +6826 253 2 9606 0.99 2005-07-31T03:50:46Z 2020-02-15T06:59:51Z +6827 253 2 9618 6.99 2005-07-31T04:16:14Z 2020-02-15T06:59:51Z +6828 253 2 10404 4.99 2005-08-01T07:31:25Z 2020-02-15T06:59:51Z +6829 253 1 10660 2.99 2005-08-01T16:48:01Z 2020-02-15T06:59:51Z +6830 253 2 10881 6.99 2005-08-02T00:38:14Z 2020-02-15T06:59:51Z +6831 253 1 12572 0.99 2005-08-18T15:32:54Z 2020-02-15T06:59:51Z +6832 253 2 12827 5.99 2005-08-19T01:27:23Z 2020-02-15T06:59:51Z +6833 253 1 13126 5.99 2005-08-19T12:00:28Z 2020-02-15T06:59:51Z +6834 253 2 14086 3.99 2005-08-20T23:47:54Z 2020-02-15T06:59:51Z +6835 253 2 14283 4.99 2005-08-21T06:44:14Z 2020-02-15T06:59:51Z +6836 253 1 14640 7.99 2005-08-21T19:03:19Z 2020-02-15T06:59:51Z +6837 253 2 14655 4.99 2005-08-21T19:37:10Z 2020-02-15T06:59:51Z +6838 253 2 15221 2.99 2005-08-22T17:12:29Z 2020-02-15T06:59:51Z +6839 254 1 183 2.99 2005-05-26T05:01:18Z 2020-02-15T06:59:51Z +6840 254 1 1108 5.99 2005-05-31T15:05:12Z 2020-02-15T06:59:51Z +6841 254 1 1285 2.99 2005-06-15T08:33:06Z 2020-02-15T06:59:51Z +6842 254 2 1390 0.99 2005-06-15T16:06:29Z 2020-02-15T06:59:51Z +6843 254 1 2082 2.99 2005-06-17T17:13:32Z 2020-02-15T06:59:51Z +6844 254 1 2138 2.99 2005-06-17T21:28:14Z 2020-02-15T06:59:51Z +6845 254 2 2687 3.99 2005-06-19T12:46:52Z 2020-02-15T06:59:51Z +6846 254 1 3882 4.99 2005-07-06T18:38:21Z 2020-02-15T06:59:51Z +6847 254 2 5042 2.99 2005-07-09T03:20:30Z 2020-02-15T06:59:51Z +6848 254 1 5072 3.99 2005-07-09T05:01:58Z 2020-02-15T06:59:51Z +6849 254 2 5080 2.99 2005-07-09T05:23:55Z 2020-02-15T06:59:51Z +6850 254 1 5537 0.99 2005-07-10T02:35:41Z 2020-02-15T06:59:51Z +6851 254 1 5550 5.99 2005-07-10T02:58:35Z 2020-02-15T06:59:51Z +6852 254 1 5826 7.99 2005-07-10T16:21:02Z 2020-02-15T06:59:51Z +6853 254 2 5930 4.99 2005-07-10T21:59:32Z 2020-02-15T06:59:51Z +6854 254 2 7011 0.99 2005-07-27T01:58:34Z 2020-02-15T06:59:51Z +6855 254 1 7413 4.99 2005-07-27T16:45:40Z 2020-02-15T06:59:51Z +6856 254 2 8216 7.99 2005-07-28T23:43:59Z 2020-02-15T06:59:51Z +6857 254 2 8581 4.99 2005-07-29T12:02:06Z 2020-02-15T06:59:51Z +6858 254 2 9494 1.99 2005-07-30T23:52:46Z 2020-02-15T06:59:51Z +6859 254 1 10522 4.99 2005-08-01T11:48:51Z 2020-02-15T06:59:51Z +6860 254 1 11190 0.99 2005-08-02T11:21:34Z 2020-02-15T06:59:51Z +6861 254 1 11665 6.99 2005-08-17T05:36:57Z 2020-02-15T06:59:51Z +6862 254 2 12148 0.99 2005-08-18T00:13:15Z 2020-02-15T06:59:51Z +6863 254 1 12206 0.99 2005-08-18T02:22:20Z 2020-02-15T06:59:51Z +6864 254 1 12247 2.99 2005-08-18T03:51:51Z 2020-02-15T06:59:51Z +6865 254 1 12874 0.99 2005-08-19T03:07:57Z 2020-02-15T06:59:51Z +6866 254 2 13001 4.99 2005-08-19T07:36:44Z 2020-02-15T06:59:51Z +6867 254 1 13045 4.99 2005-08-19T09:17:35Z 2020-02-15T06:59:51Z +6868 254 2 13130 2.99 2005-08-19T12:06:42Z 2020-02-15T06:59:51Z +6869 254 2 14497 4.99 2005-08-21T14:09:47Z 2020-02-15T06:59:51Z +6870 254 1 15774 0.99 2005-08-23T13:25:08Z 2020-02-15T06:59:51Z +6871 255 1 1235 2.99 2005-06-15T04:31:28Z 2020-02-15T06:59:51Z +6872 255 1 1420 6.99 2005-06-15T17:56:14Z 2020-02-15T06:59:51Z +6873 255 2 1681 2.99 2005-06-16T11:38:17Z 2020-02-15T06:59:51Z +6874 255 2 3442 2.99 2005-06-21T20:06:51Z 2020-02-15T06:59:51Z +6875 255 1 4547 0.99 2005-07-08T04:20:19Z 2020-02-15T06:59:51Z +6876 255 1 5706 1.99 2005-07-10T10:21:46Z 2020-02-15T06:59:51Z +6877 255 1 5943 0.99 2005-07-10T22:48:13Z 2020-02-15T06:59:51Z +6878 255 2 7475 8.99 2005-07-27T19:07:43Z 2020-02-15T06:59:51Z +6879 255 1 7646 2.99 2005-07-28T01:31:45Z 2020-02-15T06:59:51Z +6880 255 1 8562 0.99 2005-07-29T11:32:13Z 2020-02-15T06:59:51Z +6881 255 1 9061 6.99 2005-07-30T07:21:52Z 2020-02-15T06:59:51Z +6882 255 2 11979 4.99 2005-08-17T18:07:13Z 2020-02-15T06:59:51Z +6883 255 2 12176 7.99 2005-08-18T01:10:33Z 2020-02-15T06:59:51Z +6884 255 2 13154 2.99 2005-08-19T13:09:54Z 2020-02-15T06:59:51Z +6885 255 1 13268 0.99 2005-08-19T17:33:50Z 2020-02-15T06:59:51Z +6886 255 2 13683 0.99 2005-08-20T08:54:55Z 2020-02-15T06:59:51Z +6887 255 1 13758 8.99 2005-08-20T11:21:26Z 2020-02-15T06:59:51Z +6888 255 2 14600 3.99 2005-08-21T17:45:21Z 2020-02-15T06:59:51Z +6889 256 1 51 4.99 2005-05-25T06:49:10Z 2020-02-15T06:59:51Z +6890 256 1 232 0.99 2005-05-26T11:38:05Z 2020-02-15T06:59:51Z +6891 256 2 738 4.99 2005-05-29T08:20:08Z 2020-02-15T06:59:51Z +6892 256 1 935 2.99 2005-05-30T13:29:36Z 2020-02-15T06:59:51Z +6893 256 1 1116 0.99 2005-05-31T16:10:46Z 2020-02-15T06:59:51Z +6894 256 1 1555 2.99 2005-06-16T02:17:07Z 2020-02-15T06:59:51Z +6895 256 2 1965 0.99 2005-06-17T09:17:39Z 2020-02-15T06:59:51Z +6896 256 2 1973 4.99 2005-06-17T09:26:15Z 2020-02-15T06:59:51Z +6897 256 2 2230 4.99 2005-06-18T03:50:49Z 2020-02-15T06:59:51Z +6898 256 1 2380 6.99 2005-06-18T15:00:04Z 2020-02-15T06:59:51Z +6899 256 2 2561 4.99 2005-06-19T03:14:52Z 2020-02-15T06:59:51Z +6900 256 1 2839 4.99 2005-06-19T22:07:24Z 2020-02-15T06:59:51Z +6901 256 1 4130 0.99 2005-07-07T07:51:53Z 2020-02-15T06:59:51Z +6902 256 2 4182 0.99 2005-07-07T10:28:00Z 2020-02-15T06:59:51Z +6903 256 1 5179 2.99 2005-07-09T10:00:44Z 2020-02-15T06:59:51Z +6904 256 1 6298 0.99 2005-07-11T17:42:33Z 2020-02-15T06:59:51Z +6905 256 1 7661 3.99 2005-07-28T02:10:27Z 2020-02-15T06:59:51Z +6906 256 2 9424 2.99 2005-07-30T21:10:56Z 2020-02-15T06:59:51Z +6907 256 2 10759 4.99 2005-08-01T20:22:51Z 2020-02-15T06:59:51Z +6908 256 2 11011 2.99 2005-08-02T05:07:07Z 2020-02-15T06:59:51Z +6909 256 2 11628 8.99 2005-08-17T04:27:18Z 2020-02-15T06:59:51Z +6910 256 2 13457 0.99 2005-08-20T00:33:22Z 2020-02-15T06:59:51Z +6911 256 1 13651 0.99 2005-08-20T07:50:08Z 2020-02-15T06:59:51Z +6912 256 1 14003 6.99 2005-08-20T20:16:06Z 2020-02-15T06:59:51Z +6913 256 2 14036 4.99 2005-08-20T21:35:27Z 2020-02-15T06:59:51Z +6914 256 2 14445 2.99 2005-08-21T12:07:42Z 2020-02-15T06:59:51Z +6915 256 2 14458 3.99 2005-08-21T12:47:53Z 2020-02-15T06:59:51Z +6916 256 2 15609 2.99 2005-08-23T06:56:04Z 2020-02-15T06:59:51Z +6917 256 2 15861 4.99 2005-08-23T16:15:45Z 2020-02-15T06:59:51Z +6918 256 1 15864 7.99 2005-08-23T16:18:12Z 2020-02-15T06:59:51Z +6919 257 2 139 2.99 2005-05-25T23:00:21Z 2020-02-15T06:59:51Z +6920 257 2 244 2.99 2005-05-26T13:40:40Z 2020-02-15T06:59:51Z +6921 257 2 705 2.99 2005-05-29T02:48:52Z 2020-02-15T06:59:51Z +6922 257 1 2557 0.99 2005-06-19T03:08:51Z 2020-02-15T06:59:51Z +6923 257 2 3083 4.99 2005-06-20T15:33:47Z 2020-02-15T06:59:51Z +6924 257 2 4462 6.99 2005-07-08T00:02:49Z 2020-02-15T06:59:51Z +6925 257 2 4574 4.99 2005-07-08T05:39:42Z 2020-02-15T06:59:51Z +6926 257 1 5495 6.99 2005-07-10T00:16:54Z 2020-02-15T06:59:51Z +6927 257 1 5858 4.99 2005-07-10T18:00:07Z 2020-02-15T06:59:51Z +6928 257 1 6422 5.99 2005-07-11T23:46:19Z 2020-02-15T06:59:51Z +6929 257 2 6711 5.99 2005-07-12T13:23:40Z 2020-02-15T06:59:51Z +6930 257 2 7007 4.99 2005-07-27T01:43:39Z 2020-02-15T06:59:51Z +6931 257 1 7176 2.99 2005-07-27T08:04:28Z 2020-02-15T06:59:51Z +6932 257 1 7496 1.99 2005-07-27T20:04:05Z 2020-02-15T06:59:51Z +6933 257 2 7510 2.99 2005-07-27T20:37:57Z 2020-02-15T06:59:51Z +6934 257 2 7518 5.99 2005-07-27T21:01:16Z 2020-02-15T06:59:51Z +6935 257 2 8156 3.99 2005-07-28T20:59:04Z 2020-02-15T06:59:51Z +6936 257 2 8252 2.99 2005-07-29T00:54:17Z 2020-02-15T06:59:51Z +6937 257 1 8344 4.99 2005-07-29T04:45:25Z 2020-02-15T06:59:51Z +6938 257 1 8640 4.99 2005-07-29T14:34:17Z 2020-02-15T06:59:51Z +6939 257 2 8946 6.99 2005-07-30T03:14:53Z 2020-02-15T06:59:51Z +6940 257 1 9800 4.99 2005-07-31T11:00:58Z 2020-02-15T06:59:51Z +6941 257 2 10142 4.99 2005-07-31T22:10:54Z 2020-02-15T06:59:51Z +6942 257 1 11230 4.99 2005-08-02T12:59:08Z 2020-02-15T06:59:51Z +6943 257 1 11394 0.99 2005-08-02T18:44:45Z 2020-02-15T06:59:51Z +6944 257 2 11545 6.99 2005-08-17T00:56:06Z 2020-02-15T06:59:51Z +6945 257 2 11860 1.99 2005-08-17T13:52:26Z 2020-02-15T06:59:51Z +6946 257 2 12841 2.99 2005-08-19T01:55:55Z 2020-02-15T06:59:51Z +6947 257 1 12904 5.99 2005-08-19T04:10:50Z 2020-02-15T06:59:51Z +6948 257 2 13203 7.99 2005-08-19T15:00:58Z 2020-02-15T06:59:51Z +6949 257 2 13218 0.99 2005-08-19T15:39:39Z 2020-02-15T06:59:51Z +6950 257 1 13389 2.99 2005-08-19T21:52:51Z 2020-02-15T06:59:51Z +6951 257 2 13846 5.99 2005-08-20T14:32:31Z 2020-02-15T06:59:51Z +6952 257 2 14115 0.99 2005-08-21T01:10:29Z 2020-02-15T06:59:51Z +6953 257 1 15025 0.99 2005-08-22T08:57:24Z 2020-02-15T06:59:51Z +6954 257 1 15967 2.99 2005-08-23T19:50:06Z 2020-02-15T06:59:51Z +6955 257 2 15968 0.99 2005-08-23T19:51:29Z 2020-02-15T06:59:51Z +6956 258 1 1743 2.99 2005-06-16T16:38:10Z 2020-02-15T06:59:51Z +6957 258 2 2678 0.99 2005-06-19T12:12:23Z 2020-02-15T06:59:51Z +6958 258 2 2931 8.99 2005-06-20T04:50:45Z 2020-02-15T06:59:51Z +6959 258 2 4408 2.99 2005-07-07T21:41:06Z 2020-02-15T06:59:51Z +6960 258 1 4677 5.99 2005-07-08T10:30:36Z 2020-02-15T06:59:51Z +6961 258 2 4897 0.99 2005-07-08T20:25:11Z 2020-02-15T06:59:51Z +6962 258 2 5312 5.99 2005-07-09T16:03:09Z 2020-02-15T06:59:51Z +6963 258 1 5674 0.99 2005-07-10T08:26:26Z 2020-02-15T06:59:51Z +6964 258 1 5935 9.99 2005-07-10T22:11:04Z 2020-02-15T06:59:51Z +6965 258 2 6012 4.99 2005-07-11T02:00:12Z 2020-02-15T06:59:51Z +6966 258 1 7814 2.99 2005-07-28T08:09:48Z 2020-02-15T06:59:51Z +6967 258 1 8675 4.99 2005-07-29T15:56:18Z 2020-02-15T06:59:51Z +6968 258 2 9069 4.99 2005-07-30T07:39:59Z 2020-02-15T06:59:51Z +6969 258 2 10293 1.99 2005-08-01T03:44:26Z 2020-02-15T06:59:51Z +6970 258 2 10315 4.99 2005-08-01T04:34:45Z 2020-02-15T06:59:51Z +6971 258 1 10325 5.99 2005-08-01T04:52:12Z 2020-02-15T06:59:51Z +6972 258 2 10332 6.99 2005-08-01T04:57:32Z 2020-02-15T06:59:51Z +6973 258 1 10393 0.99 2005-08-01T06:52:50Z 2020-02-15T06:59:51Z +6974 258 1 12246 5.99 2005-08-18T03:48:41Z 2020-02-15T06:59:51Z +6975 258 2 12296 3.99 2005-08-18T05:16:28Z 2020-02-15T06:59:51Z +6976 258 1 13491 4.99 2005-08-20T01:30:56Z 2020-02-15T06:59:51Z +6977 258 1 13695 6.99 2005-08-20T09:13:25Z 2020-02-15T06:59:51Z +6978 258 2 13897 2.99 2005-08-20T16:02:28Z 2020-02-15T06:59:51Z +6979 258 2 14901 6.99 2005-08-22T04:31:37Z 2020-02-15T06:59:51Z +6980 259 2 722 6.99 2005-05-29T05:30:31Z 2020-02-15T06:59:51Z +6981 259 2 901 2.99 2005-05-30T09:40:40Z 2020-02-15T06:59:51Z +6982 259 1 1147 5.99 2005-05-31T20:37:52Z 2020-02-15T06:59:51Z +6983 259 1 1641 7.99 2005-06-16T08:46:26Z 2020-02-15T06:59:51Z +6984 259 2 1723 7.99 2005-06-16T15:14:18Z 2020-02-15T06:59:51Z +6985 259 2 1813 2.99 2005-06-16T21:11:00Z 2020-02-15T06:59:51Z +6986 259 2 2375 5.99 2005-06-18T14:47:29Z 2020-02-15T06:59:51Z +6987 259 2 4199 5.99 2005-07-07T11:13:07Z 2020-02-15T06:59:51Z +6988 259 2 4489 4.99 2005-07-08T01:23:58Z 2020-02-15T06:59:51Z +6989 259 1 6074 0.99 2005-07-11T04:59:56Z 2020-02-15T06:59:51Z +6990 259 2 6539 3.99 2005-07-12T04:50:49Z 2020-02-15T06:59:51Z +6991 259 2 7188 2.99 2005-07-27T08:32:08Z 2020-02-15T06:59:51Z +6992 259 2 7774 7.99 2005-07-28T07:03:25Z 2020-02-15T06:59:51Z +6993 259 1 7817 4.99 2005-07-28T08:20:55Z 2020-02-15T06:59:51Z +6994 259 2 9205 6.99 2005-07-30T12:46:40Z 2020-02-15T06:59:51Z +6995 259 1 9282 6.99 2005-07-30T15:17:31Z 2020-02-15T06:59:51Z +6996 259 1 9444 7.99 2005-07-30T21:48:44Z 2020-02-15T06:59:51Z +6997 259 1 10510 3.99 2005-08-01T11:28:30Z 2020-02-15T06:59:51Z +6998 259 1 10781 2.99 2005-08-01T21:22:41Z 2020-02-15T06:59:51Z +6999 259 1 11184 3.99 2005-08-02T11:01:26Z 2020-02-15T06:59:51Z +7000 259 2 12680 6.99 2005-08-18T19:43:46Z 2020-02-15T06:59:51Z +7001 259 1 13109 4.99 2005-08-19T11:23:20Z 2020-02-15T06:59:51Z +7002 259 2 13112 2.99 2005-08-19T11:27:10Z 2020-02-15T06:59:51Z +7003 259 2 13366 4.99 2005-08-19T21:14:45Z 2020-02-15T06:59:51Z +7004 259 1 13598 5.99 2005-08-20T05:59:17Z 2020-02-15T06:59:51Z +7005 259 2 13649 4.99 2005-08-20T07:48:38Z 2020-02-15T06:59:51Z +7006 259 2 14067 6.99 2005-08-20T22:49:23Z 2020-02-15T06:59:51Z +7007 259 2 14170 4.99 2005-08-21T03:00:39Z 2020-02-15T06:59:51Z +7008 259 2 14966 2.99 2005-08-22T06:45:57Z 2020-02-15T06:59:51Z +7009 259 1 15425 10.99 2005-08-23T00:05:57Z 2020-02-15T06:59:51Z +7010 259 1 15473 2.99 2005-08-23T01:39:10Z 2020-02-15T06:59:51Z +7011 259 2 1.99 2005-08-23T06:13:16Z 2020-02-15T06:59:51Z +7012 259 1 15689 2.99 2005-08-23T09:52:55Z 2020-02-15T06:59:51Z +7013 260 1 1101 8.99 2005-05-31T14:13:59Z 2020-02-15T06:59:51Z +7014 260 1 1626 3.99 2005-06-16T07:49:47Z 2020-02-15T06:59:51Z +7015 260 2 2001 2.99 2005-06-17T11:35:09Z 2020-02-15T06:59:51Z +7016 260 2 2040 2.99 2005-06-17T14:18:37Z 2020-02-15T06:59:51Z +7017 260 1 2091 10.99 2005-06-17T18:09:04Z 2020-02-15T06:59:51Z +7018 260 1 2178 0.99 2005-06-18T00:38:35Z 2020-02-15T06:59:51Z +7019 260 1 2823 7.99 2005-06-19T20:30:21Z 2020-02-15T06:59:51Z +7020 260 2 2958 3.99 2005-06-20T06:56:20Z 2020-02-15T06:59:51Z +7021 260 1 3193 0.99 2005-06-20T23:52:30Z 2020-02-15T06:59:51Z +7022 260 2 4054 0.99 2005-07-07T03:42:07Z 2020-02-15T06:59:51Z +7023 260 2 4741 6.99 2005-07-08T13:31:23Z 2020-02-15T06:59:51Z +7024 260 1 4870 2.99 2005-07-08T19:14:45Z 2020-02-15T06:59:51Z +7025 260 2 6328 2.99 2005-07-11T19:09:33Z 2020-02-15T06:59:51Z +7026 260 2 7072 0.99 2005-07-27T04:02:33Z 2020-02-15T06:59:51Z +7027 260 1 7268 1.99 2005-07-27T11:23:09Z 2020-02-15T06:59:51Z +7028 260 1 7885 7.99 2005-07-28T10:37:41Z 2020-02-15T06:59:51Z +7029 260 1 8475 1.99 2005-07-29T08:37:41Z 2020-02-15T06:59:51Z +7030 260 1 8484 2.99 2005-07-29T08:51:59Z 2020-02-15T06:59:51Z +7031 260 1 8717 0.99 2005-07-29T17:40:45Z 2020-02-15T06:59:51Z +7032 260 1 8933 0.99 2005-07-30T02:36:06Z 2020-02-15T06:59:51Z +7033 260 2 9176 4.99 2005-07-30T11:50:54Z 2020-02-15T06:59:51Z +7034 260 2 10970 8.99 2005-08-02T04:06:46Z 2020-02-15T06:59:51Z +7035 260 1 12852 0.99 2005-08-19T02:12:40Z 2020-02-15T06:59:51Z +7036 260 2 13440 2.99 2005-08-19T23:42:52Z 2020-02-15T06:59:51Z +7037 260 1 13685 3.99 2005-08-20T08:57:11Z 2020-02-15T06:59:51Z +7038 260 1 13966 2.99 2005-08-20T18:28:28Z 2020-02-15T06:59:51Z +7039 260 2 13978 0.99 2005-08-20T19:03:25Z 2020-02-15T06:59:51Z +7040 260 2 14035 2.99 2005-08-20T21:31:58Z 2020-02-15T06:59:51Z +7041 260 2 14441 2.99 2005-08-21T11:59:38Z 2020-02-15T06:59:51Z +7042 260 1 14579 7.99 2005-08-21T16:54:47Z 2020-02-15T06:59:51Z +7043 260 1 14610 6.99 2005-08-21T17:59:09Z 2020-02-15T06:59:51Z +7044 261 1 12 4.99 2005-05-25T00:19:27Z 2020-02-15T06:59:51Z +7045 261 2 465 3.99 2005-05-27T20:44:36Z 2020-02-15T06:59:51Z +7046 261 2 542 6.99 2005-05-28T06:42:13Z 2020-02-15T06:59:51Z +7047 261 1 792 0.99 2005-05-29T16:32:10Z 2020-02-15T06:59:51Z +7048 261 1 1760 2.99 2005-06-16T17:48:37Z 2020-02-15T06:59:51Z +7049 261 1 1877 5.99 2005-06-17T02:54:16Z 2020-02-15T06:59:51Z +7050 261 2 1988 8.99 2005-06-17T10:42:34Z 2020-02-15T06:59:51Z +7051 261 2 2072 3.99 2005-06-17T16:33:32Z 2020-02-15T06:59:51Z +7052 261 2 2392 0.99 2005-06-18T15:34:18Z 2020-02-15T06:59:51Z +7053 261 1 3363 0.99 2005-06-21T12:25:07Z 2020-02-15T06:59:51Z +7054 261 1 5122 3.99 2005-07-09T07:19:35Z 2020-02-15T06:59:51Z +7055 261 1 5449 5.99 2005-07-09T22:12:01Z 2020-02-15T06:59:51Z +7056 261 2 6515 2.99 2005-07-12T03:50:32Z 2020-02-15T06:59:51Z +7057 261 1 6743 0.99 2005-07-12T14:29:25Z 2020-02-15T06:59:51Z +7058 261 2 9552 4.99 2005-07-31T02:05:32Z 2020-02-15T06:59:51Z +7059 261 1 9842 4.99 2005-07-31T12:24:58Z 2020-02-15T06:59:51Z +7060 261 1 9869 4.99 2005-07-31T13:21:54Z 2020-02-15T06:59:51Z +7061 261 2 10246 1.99 2005-08-01T02:29:50Z 2020-02-15T06:59:51Z +7062 261 1 11834 1.99 2005-08-17T13:00:40Z 2020-02-15T06:59:51Z +7063 261 2 11928 2.99 2005-08-17T16:28:24Z 2020-02-15T06:59:51Z +7064 261 1 12327 6.99 2005-08-18T06:43:22Z 2020-02-15T06:59:51Z +7065 261 2 13245 4.99 2005-08-19T16:43:41Z 2020-02-15T06:59:51Z +7066 261 2 13506 5.99 2005-08-20T02:07:06Z 2020-02-15T06:59:51Z +7067 261 1 13669 2.99 2005-08-20T08:26:32Z 2020-02-15T06:59:51Z +7068 261 1 13849 4.99 2005-08-20T14:42:34Z 2020-02-15T06:59:51Z +7069 261 2 15397 4.99 2005-08-22T23:08:46Z 2020-02-15T06:59:51Z +7070 262 2 984 4.99 2005-05-30T22:17:17Z 2020-02-15T06:59:51Z +7071 262 1 1563 2.99 2005-06-16T02:46:28Z 2020-02-15T06:59:51Z +7072 262 1 2771 6.99 2005-06-19T17:54:48Z 2020-02-15T06:59:51Z +7073 262 2 2850 8.99 2005-06-19T23:06:28Z 2020-02-15T06:59:51Z +7074 262 1 2915 1.99 2005-06-20T03:57:17Z 2020-02-15T06:59:51Z +7075 262 1 3521 1.99 2005-07-06T01:00:11Z 2020-02-15T06:59:51Z +7076 262 1 3699 3.99 2005-07-06T10:11:25Z 2020-02-15T06:59:51Z +7077 262 1 4501 0.99 2005-07-08T02:12:00Z 2020-02-15T06:59:51Z +7078 262 2 5503 0.99 2005-07-10T00:35:37Z 2020-02-15T06:59:51Z +7079 262 1 6291 0.99 2005-07-11T17:16:40Z 2020-02-15T06:59:51Z +7080 262 2 6547 7.99 2005-07-12T04:57:46Z 2020-02-15T06:59:51Z +7081 262 1 6724 3.99 2005-07-12T13:45:15Z 2020-02-15T06:59:51Z +7082 262 2 6762 7.99 2005-07-12T15:25:33Z 2020-02-15T06:59:51Z +7083 262 1 6805 6.99 2005-07-12T17:23:01Z 2020-02-15T06:59:51Z +7084 262 1 6986 4.99 2005-07-27T00:59:05Z 2020-02-15T06:59:51Z +7085 262 1 9105 6.99 2005-07-30T08:50:25Z 2020-02-15T06:59:51Z +7086 262 2 10421 0.99 2005-08-01T08:14:10Z 2020-02-15T06:59:51Z +7087 262 2 10770 0.99 2005-08-01T20:45:39Z 2020-02-15T06:59:51Z +7088 262 2 13466 2.99 2005-08-20T00:55:16Z 2020-02-15T06:59:51Z +7089 262 1 13808 5.99 2005-08-20T12:55:43Z 2020-02-15T06:59:51Z +7090 262 1 14180 4.99 2005-08-21T03:16:15Z 2020-02-15T06:59:51Z +7091 262 2 14465 3.99 2005-08-21T12:54:22Z 2020-02-15T06:59:51Z +7092 262 2 14834 6.99 2005-08-22T01:45:58Z 2020-02-15T06:59:51Z +7093 262 2 15270 3.99 2005-08-22T18:48:42Z 2020-02-15T06:59:51Z +7094 262 1 15456 0.99 2005-08-23T01:07:01Z 2020-02-15T06:59:51Z +7095 262 1 15640 4.99 2005-08-23T08:04:40Z 2020-02-15T06:59:51Z +7096 262 2 15771 4.99 2005-08-23T13:18:46Z 2020-02-15T06:59:51Z +7097 262 1 15918 3.99 2005-08-23T17:57:35Z 2020-02-15T06:59:51Z +7098 263 1 97 4.99 2005-05-25T16:34:24Z 2020-02-15T06:59:51Z +7099 263 1 266 0.99 2005-05-26T16:08:05Z 2020-02-15T06:59:51Z +7100 263 2 2126 8.99 2005-06-17T20:54:36Z 2020-02-15T06:59:51Z +7101 263 2 3257 1.99 2005-06-21T03:47:19Z 2020-02-15T06:59:51Z +7102 263 1 3578 4.99 2005-07-06T03:47:05Z 2020-02-15T06:59:51Z +7103 263 2 3773 2.99 2005-07-06T13:23:34Z 2020-02-15T06:59:51Z +7104 263 2 4637 0.99 2005-07-08T08:49:54Z 2020-02-15T06:59:51Z +7105 263 2 4682 2.99 2005-07-08T10:38:27Z 2020-02-15T06:59:51Z +7106 263 2 5125 2.99 2005-07-09T07:25:28Z 2020-02-15T06:59:51Z +7107 263 2 5254 1.99 2005-07-09T13:50:11Z 2020-02-15T06:59:51Z +7108 263 2 6376 4.99 2005-07-11T21:40:23Z 2020-02-15T06:59:51Z +7109 263 1 6483 2.99 2005-07-12T01:59:20Z 2020-02-15T06:59:51Z +7110 263 1 6808 1.99 2005-07-12T17:36:42Z 2020-02-15T06:59:51Z +7111 263 2 7291 4.99 2005-07-27T12:30:47Z 2020-02-15T06:59:51Z +7112 263 1 7425 4.99 2005-07-27T17:18:35Z 2020-02-15T06:59:51Z +7113 263 1 7706 4.99 2005-07-28T04:03:17Z 2020-02-15T06:59:51Z +7114 263 2 7833 1.99 2005-07-28T08:46:14Z 2020-02-15T06:59:51Z +7115 263 1 10476 6.99 2005-08-01T10:03:20Z 2020-02-15T06:59:51Z +7116 263 1 10775 2.99 2005-08-01T20:59:52Z 2020-02-15T06:59:51Z +7117 263 1 11339 2.99 2005-08-02T17:02:06Z 2020-02-15T06:59:51Z +7118 263 1 11822 0.99 2005-08-17T12:32:39Z 2020-02-15T06:59:51Z +7119 263 2 12057 9.99 2005-08-17T21:04:35Z 2020-02-15T06:59:51Z +7120 263 2 12432 5.99 2005-08-18T10:35:13Z 2020-02-15T06:59:51Z +7121 263 2 12919 6.99 2005-08-19T04:32:15Z 2020-02-15T06:59:51Z +7122 263 1 14335 3.99 2005-08-21T08:33:07Z 2020-02-15T06:59:51Z +7123 263 2 14448 6.99 2005-08-21T12:13:10Z 2020-02-15T06:59:51Z +7124 263 1 15322 4.99 2005-08-22T20:20:30Z 2020-02-15T06:59:51Z +7125 263 2 15922 7.99 2005-08-23T18:07:31Z 2020-02-15T06:59:51Z +7126 263 1 15293 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7127 264 2 1165 3.99 2005-06-14T23:16:27Z 2020-02-15T06:59:51Z +7128 264 1 1206 4.99 2005-06-15T02:27:07Z 2020-02-15T06:59:51Z +7129 264 1 3028 0.99 2005-06-20T11:50:52Z 2020-02-15T06:59:51Z +7130 264 1 3403 3.99 2005-06-21T15:55:06Z 2020-02-15T06:59:51Z +7131 264 1 3618 6.99 2005-07-06T05:58:45Z 2020-02-15T06:59:51Z +7132 264 1 4328 4.99 2005-07-07T18:03:17Z 2020-02-15T06:59:51Z +7133 264 1 4539 0.99 2005-07-08T04:01:02Z 2020-02-15T06:59:51Z +7134 264 1 6340 8.99 2005-07-11T19:46:05Z 2020-02-15T06:59:51Z +7135 264 2 6391 0.99 2005-07-11T22:23:09Z 2020-02-15T06:59:51Z +7136 264 1 6395 2.99 2005-07-11T22:29:29Z 2020-02-15T06:59:51Z +7137 264 1 6543 0.99 2005-07-12T04:54:32Z 2020-02-15T06:59:51Z +7138 264 1 7006 8.99 2005-07-27T01:42:20Z 2020-02-15T06:59:51Z +7139 264 2 9380 2.99 2005-07-30T19:17:31Z 2020-02-15T06:59:51Z +7140 264 2 9515 0.99 2005-07-31T00:35:05Z 2020-02-15T06:59:51Z +7141 264 1 9861 5.99 2005-07-31T13:04:14Z 2020-02-15T06:59:51Z +7142 264 1 9932 5.99 2005-07-31T15:19:48Z 2020-02-15T06:59:51Z +7143 264 2 10792 2.99 2005-08-01T21:44:24Z 2020-02-15T06:59:51Z +7144 264 1 11527 3.99 2005-08-17T00:25:06Z 2020-02-15T06:59:51Z +7145 264 2 11533 0.99 2005-08-17T00:34:53Z 2020-02-15T06:59:51Z +7146 264 1 11539 2.99 2005-08-17T00:45:41Z 2020-02-15T06:59:51Z +7147 264 1 12518 4.99 2005-08-18T13:41:32Z 2020-02-15T06:59:51Z +7148 264 2 13590 2.99 2005-08-20T05:48:59Z 2020-02-15T06:59:51Z +7149 264 1 13664 5.99 2005-08-20T08:18:36Z 2020-02-15T06:59:51Z +7150 264 1 15595 4.99 2005-08-23T06:19:12Z 2020-02-15T06:59:51Z +7151 264 2 14243 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7152 265 2 74 0.99 2005-05-25T11:09:48Z 2020-02-15T06:59:51Z +7153 265 2 2027 7.99 2005-06-17T13:06:56Z 2020-02-15T06:59:51Z +7154 265 2 2562 4.99 2005-06-19T03:15:05Z 2020-02-15T06:59:51Z +7155 265 1 2598 2.99 2005-06-19T05:59:57Z 2020-02-15T06:59:51Z +7156 265 1 3823 2.99 2005-07-06T15:41:27Z 2020-02-15T06:59:51Z +7157 265 1 4610 0.99 2005-07-08T07:28:05Z 2020-02-15T06:59:51Z +7158 265 1 4797 2.99 2005-07-08T16:39:05Z 2020-02-15T06:59:51Z +7159 265 2 5029 7.99 2005-07-09T02:35:32Z 2020-02-15T06:59:51Z +7160 265 1 5417 4.99 2005-07-09T20:34:09Z 2020-02-15T06:59:51Z +7161 265 1 5710 9.99 2005-07-10T10:32:52Z 2020-02-15T06:59:51Z +7162 265 1 6068 4.99 2005-07-11T04:41:09Z 2020-02-15T06:59:51Z +7163 265 2 6371 4.99 2005-07-11T21:31:51Z 2020-02-15T06:59:51Z +7164 265 2 6553 5.99 2005-07-12T05:06:39Z 2020-02-15T06:59:51Z +7165 265 2 6921 6.99 2005-07-12T22:39:03Z 2020-02-15T06:59:51Z +7166 265 2 7414 1.99 2005-07-27T16:46:07Z 2020-02-15T06:59:51Z +7167 265 1 7704 2.99 2005-07-28T04:02:13Z 2020-02-15T06:59:51Z +7168 265 1 8278 5.99 2005-07-29T01:42:55Z 2020-02-15T06:59:51Z +7169 265 2 8489 2.99 2005-07-29T08:58:03Z 2020-02-15T06:59:51Z +7170 265 2 8665 0.99 2005-07-29T15:39:29Z 2020-02-15T06:59:51Z +7171 265 1 9416 2.99 2005-07-30T20:52:45Z 2020-02-15T06:59:51Z +7172 265 2 10592 3.99 2005-08-01T14:13:00Z 2020-02-15T06:59:51Z +7173 265 2 11000 3.99 2005-08-02T04:56:14Z 2020-02-15T06:59:51Z +7174 265 1 12207 1.99 2005-08-18T02:24:07Z 2020-02-15T06:59:51Z +7175 265 2 12346 4.99 2005-08-18T07:17:55Z 2020-02-15T06:59:51Z +7176 265 2 13700 8.99 2005-08-20T09:26:17Z 2020-02-15T06:59:51Z +7177 265 2 14125 4.99 2005-08-21T01:32:16Z 2020-02-15T06:59:51Z +7178 265 1 14547 6.99 2005-08-21T15:51:38Z 2020-02-15T06:59:51Z +7179 265 2 14556 6.99 2005-08-21T16:03:27Z 2020-02-15T06:59:51Z +7180 265 1 14943 2.99 2005-08-22T05:59:59Z 2020-02-15T06:59:51Z +7181 266 1 86 1.99 2005-05-25T13:36:12Z 2020-02-15T06:59:51Z +7182 266 2 651 2.99 2005-05-28T19:46:50Z 2020-02-15T06:59:51Z +7183 266 2 1280 5.99 2005-06-15T08:16:06Z 2020-02-15T06:59:51Z +7184 266 2 2065 4.99 2005-06-17T16:03:46Z 2020-02-15T06:59:51Z +7185 266 2 3002 4.99 2005-06-20T09:56:12Z 2020-02-15T06:59:51Z +7186 266 1 3059 4.99 2005-06-20T13:38:41Z 2020-02-15T06:59:51Z +7187 266 2 3585 0.99 2005-07-06T04:22:36Z 2020-02-15T06:59:51Z +7188 266 2 5362 5.99 2005-07-09T18:16:08Z 2020-02-15T06:59:51Z +7189 266 1 5577 4.99 2005-07-10T03:58:40Z 2020-02-15T06:59:51Z +7190 266 1 8492 2.99 2005-07-29T09:04:17Z 2020-02-15T06:59:51Z +7191 266 2 9109 5.99 2005-07-30T08:58:24Z 2020-02-15T06:59:51Z +7192 266 2 10747 4.99 2005-08-01T19:59:41Z 2020-02-15T06:59:51Z +7193 266 2 10910 5.99 2005-08-02T01:54:34Z 2020-02-15T06:59:51Z +7194 266 2 11233 5.99 2005-08-02T13:06:11Z 2020-02-15T06:59:51Z +7195 266 1 11321 4.99 2005-08-02T16:15:07Z 2020-02-15T06:59:51Z +7196 266 2 11626 0.99 2005-08-17T04:25:42Z 2020-02-15T06:59:51Z +7197 266 1 11726 0.99 2005-08-17T08:11:10Z 2020-02-15T06:59:51Z +7198 266 1 12255 4.99 2005-08-18T04:07:20Z 2020-02-15T06:59:51Z +7199 266 2 12378 0.99 2005-08-18T08:26:13Z 2020-02-15T06:59:51Z +7200 266 1 12405 6.99 2005-08-18T09:37:30Z 2020-02-15T06:59:51Z +7201 266 1 12715 4.99 2005-08-18T21:09:38Z 2020-02-15T06:59:51Z +7202 266 1 13468 8.99 2005-08-20T00:56:44Z 2020-02-15T06:59:51Z +7203 266 1 13556 6.99 2005-08-20T04:10:26Z 2020-02-15T06:59:51Z +7204 266 1 14080 1.99 2005-08-20T23:29:50Z 2020-02-15T06:59:51Z +7205 266 1 14492 2.99 2005-08-21T13:59:08Z 2020-02-15T06:59:51Z +7206 266 1 14877 0.99 2005-08-22T03:39:56Z 2020-02-15T06:59:51Z +7207 266 1 15181 2.99 2005-08-22T15:46:20Z 2020-02-15T06:59:51Z +7208 266 1 15346 4.99 2005-08-22T21:06:00Z 2020-02-15T06:59:51Z +7209 267 2 91 6.99 2005-05-25T14:57:22Z 2020-02-15T06:59:51Z +7210 267 1 436 4.99 2005-05-27T17:21:04Z 2020-02-15T06:59:51Z +7211 267 2 1030 4.99 2005-05-31T04:06:47Z 2020-02-15T06:59:51Z +7212 267 2 1257 4.99 2005-06-15T06:15:36Z 2020-02-15T06:59:51Z +7213 267 2 1349 4.99 2005-06-15T12:49:02Z 2020-02-15T06:59:51Z +7214 267 2 2265 2.99 2005-06-18T06:03:27Z 2020-02-15T06:59:51Z +7215 267 2 2578 7.99 2005-06-19T04:40:06Z 2020-02-15T06:59:51Z +7216 267 1 2582 6.99 2005-06-19T04:56:27Z 2020-02-15T06:59:51Z +7217 267 2 2699 2.99 2005-06-19T13:29:28Z 2020-02-15T06:59:51Z +7218 267 2 2754 4.99 2005-06-19T16:55:59Z 2020-02-15T06:59:51Z +7219 267 1 2877 1.99 2005-06-20T01:07:16Z 2020-02-15T06:59:51Z +7220 267 2 3090 0.99 2005-06-20T16:00:19Z 2020-02-15T06:59:51Z +7221 267 1 3817 2.99 2005-07-06T15:31:45Z 2020-02-15T06:59:51Z +7222 267 1 5340 6.99 2005-07-09T17:11:35Z 2020-02-15T06:59:51Z +7223 267 1 6070 0.99 2005-07-11T04:47:42Z 2020-02-15T06:59:51Z +7224 267 1 6706 3.99 2005-07-12T12:59:16Z 2020-02-15T06:59:51Z +7225 267 1 8190 4.99 2005-07-28T22:47:06Z 2020-02-15T06:59:51Z +7226 267 1 8572 1.99 2005-07-29T11:51:24Z 2020-02-15T06:59:51Z +7227 267 2 9059 3.99 2005-07-30T07:18:44Z 2020-02-15T06:59:51Z +7228 267 1 9308 6.99 2005-07-30T16:53:21Z 2020-02-15T06:59:51Z +7229 267 2 9403 4.99 2005-07-30T20:18:53Z 2020-02-15T06:59:51Z +7230 267 2 9807 2.99 2005-07-31T11:13:52Z 2020-02-15T06:59:51Z +7231 267 2 10048 4.99 2005-07-31T19:08:56Z 2020-02-15T06:59:51Z +7232 267 1 10343 2.99 2005-08-01T05:15:47Z 2020-02-15T06:59:51Z +7233 267 2 11373 0.99 2005-08-02T18:14:12Z 2020-02-15T06:59:51Z +7234 267 1 11690 6.99 2005-08-17T06:44:22Z 2020-02-15T06:59:51Z +7235 267 1 12320 4.99 2005-08-18T06:26:51Z 2020-02-15T06:59:51Z +7236 267 1 12979 4.99 2005-08-19T07:00:35Z 2020-02-15T06:59:51Z +7237 267 2 13236 9.99 2005-08-19T16:18:24Z 2020-02-15T06:59:51Z +7238 267 1 14131 5.99 2005-08-21T01:43:40Z 2020-02-15T06:59:51Z +7239 267 2 15020 3.99 2005-08-22T08:54:12Z 2020-02-15T06:59:51Z +7240 267 1 15208 3.99 2005-08-22T16:35:47Z 2020-02-15T06:59:51Z +7241 267 1 15768 0.99 2005-08-23T13:14:47Z 2020-02-15T06:59:51Z +7242 267 1 15903 3.99 2005-08-23T17:30:40Z 2020-02-15T06:59:51Z +7243 267 2 12066 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7244 267 2 13713 0 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7245 268 1 1394 2.99 2005-06-15T16:17:21Z 2020-02-15T06:59:51Z +7246 268 2 1450 4.99 2005-06-15T19:22:08Z 2020-02-15T06:59:51Z +7247 268 2 1551 3.99 2005-06-16T02:01:15Z 2020-02-15T06:59:51Z +7248 268 1 2133 0.99 2005-06-17T21:10:05Z 2020-02-15T06:59:51Z +7249 268 2 2324 4.99 2005-06-18T10:00:33Z 2020-02-15T06:59:51Z +7250 268 2 2858 2.99 2005-06-19T23:17:11Z 2020-02-15T06:59:51Z +7251 268 1 3066 3.99 2005-06-20T13:55:41Z 2020-02-15T06:59:51Z +7252 268 1 3361 1.99 2005-06-21T12:14:23Z 2020-02-15T06:59:51Z +7253 268 2 3670 4.99 2005-07-06T08:56:43Z 2020-02-15T06:59:51Z +7254 268 2 4626 4.99 2005-07-08T08:18:21Z 2020-02-15T06:59:51Z +7255 268 1 5039 7.99 2005-07-09T03:14:45Z 2020-02-15T06:59:51Z +7256 268 2 5671 2.99 2005-07-10T08:18:22Z 2020-02-15T06:59:51Z +7257 268 2 5793 2.99 2005-07-10T14:33:00Z 2020-02-15T06:59:51Z +7258 268 2 5888 6.99 2005-07-10T19:52:17Z 2020-02-15T06:59:51Z +7259 268 1 6120 3.99 2005-07-11T07:49:53Z 2020-02-15T06:59:51Z +7260 268 2 6489 1.99 2005-07-12T02:22:46Z 2020-02-15T06:59:51Z +7261 268 1 8931 2.99 2005-07-30T02:30:07Z 2020-02-15T06:59:51Z +7262 268 2 9436 7.99 2005-07-30T21:33:01Z 2020-02-15T06:59:51Z +7263 268 2 9531 3.99 2005-07-31T01:11:53Z 2020-02-15T06:59:51Z +7264 268 1 10040 1.99 2005-07-31T18:54:15Z 2020-02-15T06:59:51Z +7265 268 2 11462 7.99 2005-08-02T21:36:46Z 2020-02-15T06:59:51Z +7266 268 2 11828 6.99 2005-08-17T12:48:28Z 2020-02-15T06:59:51Z +7267 268 2 12007 2.99 2005-08-17T19:10:34Z 2020-02-15T06:59:51Z +7268 268 2 12694 4.99 2005-08-18T20:10:39Z 2020-02-15T06:59:51Z +7269 268 2 13880 5.99 2005-08-20T15:18:20Z 2020-02-15T06:59:51Z +7270 268 2 14249 4.99 2005-08-21T05:38:05Z 2020-02-15T06:59:51Z +7271 268 2 14373 4.99 2005-08-21T09:44:53Z 2020-02-15T06:59:51Z +7272 268 1 14874 0.99 2005-08-22T03:32:05Z 2020-02-15T06:59:51Z +7273 268 2 15183 2.99 2005-08-22T15:49:54Z 2020-02-15T06:59:51Z +7274 269 2 7 1.99 2005-05-24T23:11:53Z 2020-02-15T06:59:51Z +7275 269 1 98 0.99 2005-05-25T16:48:24Z 2020-02-15T06:59:51Z +7276 269 2 678 6.99 2005-05-28T23:15:48Z 2020-02-15T06:59:51Z +7277 269 2 703 0.99 2005-05-29T02:29:36Z 2020-02-15T06:59:51Z +7278 269 1 750 4.99 2005-05-29T09:41:40Z 2020-02-15T06:59:51Z +7279 269 2 1099 2.99 2005-05-31T13:54:48Z 2020-02-15T06:59:51Z +7280 269 1 1334 3.99 2005-06-15T11:43:09Z 2020-02-15T06:59:51Z +7281 269 2 1909 2.99 2005-06-17T05:11:04Z 2020-02-15T06:59:51Z +7282 269 2 2493 6.99 2005-06-18T22:12:09Z 2020-02-15T06:59:51Z +7283 269 1 4125 9.99 2005-07-07T07:20:29Z 2020-02-15T06:59:51Z +7284 269 2 4804 0.99 2005-07-08T16:57:30Z 2020-02-15T06:59:51Z +7285 269 2 4880 6.99 2005-07-08T19:36:17Z 2020-02-15T06:59:51Z +7286 269 1 6440 2.99 2005-07-12T00:25:04Z 2020-02-15T06:59:51Z +7287 269 1 6626 5.99 2005-07-12T09:16:24Z 2020-02-15T06:59:51Z +7288 269 2 6804 4.99 2005-07-12T17:22:06Z 2020-02-15T06:59:51Z +7289 269 1 7032 4.99 2005-07-27T03:03:09Z 2020-02-15T06:59:51Z +7290 269 1 7537 6.99 2005-07-27T21:36:09Z 2020-02-15T06:59:51Z +7291 269 1 7972 2.99 2005-07-28T14:07:46Z 2020-02-15T06:59:51Z +7292 269 2 10566 2.99 2005-08-01T13:12:11Z 2020-02-15T06:59:51Z +7293 269 1 10908 4.99 2005-08-02T01:53:06Z 2020-02-15T06:59:51Z +7294 269 1 11014 4.99 2005-08-02T05:12:22Z 2020-02-15T06:59:51Z +7295 269 1 11915 3.99 2005-08-17T16:05:28Z 2020-02-15T06:59:51Z +7296 269 1 12344 4.99 2005-08-18T07:15:19Z 2020-02-15T06:59:51Z +7297 269 2 13142 5.99 2005-08-19T12:42:28Z 2020-02-15T06:59:52Z +7298 269 2 13759 2.99 2005-08-20T11:24:48Z 2020-02-15T06:59:52Z +7299 269 1 14266 4.99 2005-08-21T06:20:51Z 2020-02-15T06:59:52Z +7300 269 2 14693 6.99 2005-08-21T20:44:19Z 2020-02-15T06:59:52Z +7301 269 2 15788 2.99 2005-08-23T13:54:39Z 2020-02-15T06:59:52Z +7302 269 1 13025 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7303 269 2 12610 0 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7304 270 1 193 1.99 2005-05-26T06:41:48Z 2020-02-15T06:59:52Z +7305 270 1 1040 4.99 2005-05-31T05:35:16Z 2020-02-15T06:59:52Z +7306 270 1 1345 4.99 2005-06-15T12:32:13Z 2020-02-15T06:59:52Z +7307 270 1 1896 6.99 2005-06-17T04:25:46Z 2020-02-15T06:59:52Z +7308 270 1 2115 3.99 2005-06-17T20:02:16Z 2020-02-15T06:59:52Z +7309 270 2 3164 5.99 2005-06-20T21:29:00Z 2020-02-15T06:59:52Z +7310 270 1 3501 3.99 2005-07-06T00:11:28Z 2020-02-15T06:59:52Z +7311 270 1 3987 9.99 2005-07-06T23:28:24Z 2020-02-15T06:59:52Z +7312 270 2 5533 0.99 2005-07-10T02:19:28Z 2020-02-15T06:59:52Z +7313 270 2 6520 4.99 2005-07-12T04:05:16Z 2020-02-15T06:59:52Z +7314 270 1 8355 2.99 2005-07-29T04:57:43Z 2020-02-15T06:59:52Z +7315 270 2 8618 3.99 2005-07-29T13:48:20Z 2020-02-15T06:59:52Z +7316 270 1 10069 3.99 2005-07-31T19:43:18Z 2020-02-15T06:59:52Z +7317 270 1 10461 7.99 2005-08-01T09:32:53Z 2020-02-15T06:59:52Z +7318 270 2 10579 5.99 2005-08-01T13:48:22Z 2020-02-15T06:59:52Z +7319 270 2 10648 4.99 2005-08-01T16:08:52Z 2020-02-15T06:59:52Z +7320 270 1 11389 2.99 2005-08-02T18:39:12Z 2020-02-15T06:59:52Z +7321 270 1 11810 0.99 2005-08-17T11:56:48Z 2020-02-15T06:59:52Z +7322 270 2 11841 2.99 2005-08-17T13:12:20Z 2020-02-15T06:59:52Z +7323 270 1 11917 2.99 2005-08-17T16:08:17Z 2020-02-15T06:59:52Z +7324 270 1 12192 2.99 2005-08-18T02:01:40Z 2020-02-15T06:59:52Z +7325 270 1 12442 2.99 2005-08-18T10:50:07Z 2020-02-15T06:59:52Z +7326 270 2 13945 1.99 2005-08-20T17:43:56Z 2020-02-15T06:59:52Z +7327 270 1 14618 0.99 2005-08-21T18:09:51Z 2020-02-15T06:59:52Z +7328 270 2 15620 6.99 2005-08-23T07:10:22Z 2020-02-15T06:59:52Z +7329 271 1 1096 8.99 2005-05-31T13:30:49Z 2020-02-15T06:59:52Z +7330 271 2 1852 2.99 2005-06-17T00:38:20Z 2020-02-15T06:59:52Z +7331 271 1 3640 1.99 2005-07-06T07:12:26Z 2020-02-15T06:59:52Z +7332 271 2 4545 2.99 2005-07-08T04:17:47Z 2020-02-15T06:59:52Z +7333 271 2 5878 1.99 2005-07-10T19:09:57Z 2020-02-15T06:59:52Z +7334 271 1 5922 2.99 2005-07-10T21:36:53Z 2020-02-15T06:59:52Z +7335 271 1 6024 2.99 2005-07-11T02:16:47Z 2020-02-15T06:59:52Z +7336 271 1 7618 3.99 2005-07-28T00:24:14Z 2020-02-15T06:59:52Z +7337 271 1 8592 0.99 2005-07-29T12:33:58Z 2020-02-15T06:59:52Z +7338 271 1 9821 4.99 2005-07-31T11:47:54Z 2020-02-15T06:59:52Z +7339 271 2 10143 7.99 2005-07-31T22:11:43Z 2020-02-15T06:59:52Z +7340 271 2 10310 4.99 2005-08-01T04:24:47Z 2020-02-15T06:59:52Z +7341 271 1 10599 3.99 2005-08-01T14:23:58Z 2020-02-15T06:59:52Z +7342 271 1 11431 2.99 2005-08-02T20:05:16Z 2020-02-15T06:59:52Z +7343 271 1 12219 4.99 2005-08-18T02:49:54Z 2020-02-15T06:59:52Z +7344 271 2 14234 0.99 2005-08-21T05:07:12Z 2020-02-15T06:59:52Z +7345 271 2 14355 4.99 2005-08-21T09:08:29Z 2020-02-15T06:59:52Z +7346 271 1 15244 2.99 2005-08-22T17:48:42Z 2020-02-15T06:59:52Z +7347 272 1 33 0.99 2005-05-25T04:18:51Z 2020-02-15T06:59:52Z +7348 272 1 405 6.99 2005-05-27T13:32:39Z 2020-02-15T06:59:52Z +7349 272 1 1041 6.99 2005-05-31T05:46:23Z 2020-02-15T06:59:52Z +7350 272 1 1072 0.99 2005-05-31T09:52:50Z 2020-02-15T06:59:52Z +7351 272 2 1604 4.99 2005-06-16T06:14:25Z 2020-02-15T06:59:52Z +7352 272 2 2546 5.99 2005-06-19T02:39:39Z 2020-02-15T06:59:52Z +7353 272 1 3323 5.99 2005-06-21T08:45:33Z 2020-02-15T06:59:52Z +7354 272 2 5047 3.99 2005-07-09T03:44:15Z 2020-02-15T06:59:52Z +7355 272 2 5158 2.99 2005-07-09T08:53:09Z 2020-02-15T06:59:52Z +7356 272 2 7300 7.99 2005-07-27T12:50:17Z 2020-02-15T06:59:52Z +7357 272 2 7658 2.99 2005-07-28T02:09:12Z 2020-02-15T06:59:52Z +7358 272 1 8248 7.99 2005-07-29T00:41:56Z 2020-02-15T06:59:52Z +7359 272 2 9787 10.99 2005-07-31T10:26:19Z 2020-02-15T06:59:52Z +7360 272 1 10736 2.99 2005-08-01T19:30:21Z 2020-02-15T06:59:52Z +7361 272 2 11003 2.99 2005-08-02T05:03:05Z 2020-02-15T06:59:52Z +7362 272 2 11597 8.99 2005-08-17T03:02:56Z 2020-02-15T06:59:52Z +7363 272 1 11881 0.99 2005-08-17T14:31:56Z 2020-02-15T06:59:52Z +7364 272 2 12006 6.99 2005-08-17T19:09:12Z 2020-02-15T06:59:52Z +7365 272 2 13274 2.99 2005-08-19T17:50:03Z 2020-02-15T06:59:52Z +7366 272 1 13903 2.99 2005-08-20T16:07:55Z 2020-02-15T06:59:52Z +7367 273 2 122 3.99 2005-05-25T19:46:21Z 2020-02-15T06:59:52Z +7368 273 2 980 0.99 2005-05-30T21:45:19Z 2020-02-15T06:59:52Z +7369 273 2 1391 6.99 2005-06-15T16:11:21Z 2020-02-15T06:59:52Z +7370 273 2 1747 6.99 2005-06-16T16:53:33Z 2020-02-15T06:59:52Z +7371 273 2 1765 4.99 2005-06-16T17:56:10Z 2020-02-15T06:59:52Z +7372 273 1 2301 1.99 2005-06-18T08:24:03Z 2020-02-15T06:59:52Z +7373 273 1 3202 0.99 2005-06-21T00:33:47Z 2020-02-15T06:59:52Z +7374 273 2 3556 2.99 2005-07-06T02:46:13Z 2020-02-15T06:59:52Z +7375 273 1 4937 5.99 2005-07-08T22:29:59Z 2020-02-15T06:59:52Z +7376 273 1 5256 7.99 2005-07-09T13:55:45Z 2020-02-15T06:59:52Z +7377 273 2 5435 7.99 2005-07-09T21:28:07Z 2020-02-15T06:59:52Z +7378 273 1 5605 2.99 2005-07-10T05:06:45Z 2020-02-15T06:59:52Z +7379 273 1 6592 8.99 2005-07-12T07:19:35Z 2020-02-15T06:59:52Z +7380 273 1 6635 1.99 2005-07-12T09:47:58Z 2020-02-15T06:59:52Z +7381 273 2 6696 2.99 2005-07-12T12:44:04Z 2020-02-15T06:59:52Z +7382 273 1 6717 5.99 2005-07-12T13:35:02Z 2020-02-15T06:59:52Z +7383 273 1 8449 2.99 2005-07-29T07:42:25Z 2020-02-15T06:59:52Z +7384 273 1 9186 4.99 2005-07-30T12:13:48Z 2020-02-15T06:59:52Z +7385 273 2 9285 5.99 2005-07-30T15:26:08Z 2020-02-15T06:59:52Z +7386 273 2 9391 0.99 2005-07-30T19:48:41Z 2020-02-15T06:59:52Z +7387 273 2 9693 3.99 2005-07-31T07:11:50Z 2020-02-15T06:59:52Z +7388 273 2 9729 0.99 2005-07-31T08:43:43Z 2020-02-15T06:59:52Z +7389 273 1 10272 8.99 2005-08-01T03:14:34Z 2020-02-15T06:59:52Z +7390 273 1 10753 3.99 2005-08-01T20:09:24Z 2020-02-15T06:59:52Z +7391 273 1 10768 6.99 2005-08-01T20:39:32Z 2020-02-15T06:59:52Z +7392 273 1 11282 4.99 2005-08-02T14:35:03Z 2020-02-15T06:59:52Z +7393 273 2 11509 4.99 2005-08-16T23:29:53Z 2020-02-15T06:59:52Z +7394 273 1 12692 0.99 2005-08-18T20:09:19Z 2020-02-15T06:59:52Z +7395 273 2 13738 4.99 2005-08-20T10:42:42Z 2020-02-15T06:59:52Z +7396 273 1 13955 5.99 2005-08-20T18:05:12Z 2020-02-15T06:59:52Z +7397 273 2 14092 4.99 2005-08-21T00:14:32Z 2020-02-15T06:59:52Z +7398 273 2 14558 2.99 2005-08-21T16:10:50Z 2020-02-15T06:59:52Z +7399 273 2 14911 2.99 2005-08-22T04:51:42Z 2020-02-15T06:59:52Z +7400 273 2 15372 2.99 2005-08-22T21:59:51Z 2020-02-15T06:59:52Z +7401 273 1 15760 6.99 2005-08-23T12:50:00Z 2020-02-15T06:59:52Z +7402 274 1 147 2.99 2005-05-26T00:17:50Z 2020-02-15T06:59:52Z +7403 274 1 208 4.99 2005-05-26T08:10:22Z 2020-02-15T06:59:52Z +7404 274 2 301 2.99 2005-05-26T21:06:14Z 2020-02-15T06:59:52Z +7405 274 1 394 5.99 2005-05-27T11:26:11Z 2020-02-15T06:59:52Z +7406 274 2 474 2.99 2005-05-27T22:11:56Z 2020-02-15T06:59:52Z +7407 274 1 892 4.99 2005-05-30T08:02:56Z 2020-02-15T06:59:52Z +7408 274 1 2098 0.99 2005-06-17T18:42:09Z 2020-02-15T06:59:52Z +7409 274 2 3291 9.99 2005-06-21T06:55:36Z 2020-02-15T06:59:52Z +7410 274 2 3532 5.99 2005-07-06T01:24:38Z 2020-02-15T06:59:52Z +7411 274 1 4147 2.99 2005-07-07T08:32:12Z 2020-02-15T06:59:52Z +7412 274 2 4582 2.99 2005-07-08T06:09:09Z 2020-02-15T06:59:52Z +7413 274 2 6389 3.99 2005-07-11T22:18:20Z 2020-02-15T06:59:52Z +7414 274 2 8259 0.99 2005-07-29T01:05:16Z 2020-02-15T06:59:52Z +7415 274 2 8406 5.99 2005-07-29T06:34:45Z 2020-02-15T06:59:52Z +7416 274 2 8517 7.99 2005-07-29T10:00:48Z 2020-02-15T06:59:52Z +7417 274 1 9331 4.99 2005-07-30T17:46:50Z 2020-02-15T06:59:52Z +7418 274 1 9677 4.99 2005-07-31T06:39:45Z 2020-02-15T06:59:52Z +7419 274 2 10059 4.99 2005-07-31T19:20:49Z 2020-02-15T06:59:52Z +7420 274 1 10790 1.99 2005-08-01T21:38:37Z 2020-02-15T06:59:52Z +7421 274 2 10855 0.99 2005-08-02T00:06:37Z 2020-02-15T06:59:52Z +7422 274 1 11058 3.99 2005-08-02T06:38:44Z 2020-02-15T06:59:52Z +7423 274 2 11363 2.99 2005-08-02T17:48:39Z 2020-02-15T06:59:52Z +7424 274 1 12321 3.99 2005-08-18T06:27:05Z 2020-02-15T06:59:52Z +7425 274 1 13103 2.99 2005-08-19T11:05:51Z 2020-02-15T06:59:52Z +7426 274 2 13129 8.99 2005-08-19T12:05:04Z 2020-02-15T06:59:52Z +7427 274 1 13549 8.99 2005-08-20T03:58:41Z 2020-02-15T06:59:52Z +7428 274 1 14012 0.99 2005-08-20T20:42:12Z 2020-02-15T06:59:52Z +7429 274 1 14066 7.99 2005-08-20T22:45:58Z 2020-02-15T06:59:52Z +7430 274 2 14164 7.99 2005-08-21T02:58:02Z 2020-02-15T06:59:52Z +7431 274 1 14388 4.99 2005-08-21T10:15:13Z 2020-02-15T06:59:52Z +7432 274 2 15143 2.99 2005-08-22T13:46:24Z 2020-02-15T06:59:52Z +7433 274 1 15260 2.99 2005-08-22T18:24:16Z 2020-02-15T06:59:52Z +7434 274 2 15328 2.99 2005-08-22T20:31:38Z 2020-02-15T06:59:52Z +7435 274 2 15819 3.99 2005-08-23T15:01:54Z 2020-02-15T06:59:52Z +7436 274 1 13486 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7437 275 2 336 2.99 2005-05-27T03:15:23Z 2020-02-15T06:59:52Z +7438 275 2 1797 3.99 2005-06-16T20:13:03Z 2020-02-15T06:59:52Z +7439 275 2 2414 0.99 2005-06-18T17:01:55Z 2020-02-15T06:59:52Z +7440 275 1 2646 4.99 2005-06-19T09:56:01Z 2020-02-15T06:59:52Z +7441 275 1 3355 2.99 2005-06-21T11:30:47Z 2020-02-15T06:59:52Z +7442 275 2 4396 0.99 2005-07-07T21:14:19Z 2020-02-15T06:59:52Z +7443 275 1 4634 0.99 2005-07-08T08:40:02Z 2020-02-15T06:59:52Z +7444 275 2 4912 9.99 2005-07-08T21:26:11Z 2020-02-15T06:59:52Z +7445 275 2 6301 5.99 2005-07-11T17:54:09Z 2020-02-15T06:59:52Z +7446 275 2 6856 0.99 2005-07-12T19:50:16Z 2020-02-15T06:59:52Z +7447 275 1 7553 2.99 2005-07-27T22:11:36Z 2020-02-15T06:59:52Z +7448 275 2 7596 4.99 2005-07-27T23:33:57Z 2020-02-15T06:59:52Z +7449 275 1 8746 2.99 2005-07-29T19:03:15Z 2020-02-15T06:59:52Z +7450 275 2 9258 2.99 2005-07-30T14:31:31Z 2020-02-15T06:59:52Z +7451 275 1 10479 6.99 2005-08-01T10:11:25Z 2020-02-15T06:59:52Z +7452 275 2 11309 1.99 2005-08-02T15:50:55Z 2020-02-15T06:59:52Z +7453 275 1 11610 4.99 2005-08-17T03:43:37Z 2020-02-15T06:59:52Z +7454 275 2 12589 5.99 2005-08-18T16:06:31Z 2020-02-15T06:59:52Z +7455 275 1 12606 1.99 2005-08-18T17:02:21Z 2020-02-15T06:59:52Z +7456 275 1 13037 3.99 2005-08-19T08:53:57Z 2020-02-15T06:59:52Z +7457 275 2 13860 2.99 2005-08-20T14:55:09Z 2020-02-15T06:59:52Z +7458 275 2 13865 1.99 2005-08-20T15:04:09Z 2020-02-15T06:59:52Z +7459 275 2 13902 0.99 2005-08-20T16:07:08Z 2020-02-15T06:59:52Z +7460 275 2 14063 0.99 2005-08-20T22:36:40Z 2020-02-15T06:59:52Z +7461 275 1 14187 5.99 2005-08-21T03:32:03Z 2020-02-15T06:59:52Z +7462 275 1 14296 2.99 2005-08-21T07:13:23Z 2020-02-15T06:59:52Z +7463 275 2 14483 5.99 2005-08-21T13:43:59Z 2020-02-15T06:59:52Z +7464 275 2 14727 4.99 2005-08-21T22:12:45Z 2020-02-15T06:59:52Z +7465 275 2 15269 2.99 2005-08-22T18:39:44Z 2020-02-15T06:59:52Z +7466 275 2 15496 3.99 2005-08-23T02:30:23Z 2020-02-15T06:59:52Z +7467 276 1 736 3.99 2005-05-29T08:10:07Z 2020-02-15T06:59:52Z +7468 276 1 860 10.99 2005-05-30T02:45:16Z 2020-02-15T06:59:52Z +7469 276 1 1352 0.99 2005-06-15T12:58:27Z 2020-02-15T06:59:52Z +7470 276 2 2763 4.99 2005-06-19T17:23:34Z 2020-02-15T06:59:52Z +7471 276 2 3064 6.99 2005-06-20T13:53:13Z 2020-02-15T06:59:52Z +7472 276 2 3714 2.99 2005-07-06T10:51:28Z 2020-02-15T06:59:52Z +7473 276 1 4715 0.99 2005-07-08T12:15:37Z 2020-02-15T06:59:52Z +7474 276 2 5186 4.99 2005-07-09T10:18:40Z 2020-02-15T06:59:52Z +7475 276 2 5246 4.99 2005-07-09T13:25:18Z 2020-02-15T06:59:52Z +7476 276 2 7282 5.99 2005-07-27T12:00:19Z 2020-02-15T06:59:52Z +7477 276 2 7842 2.99 2005-07-28T09:10:06Z 2020-02-15T06:59:52Z +7478 276 1 9070 0.99 2005-07-30T07:40:39Z 2020-02-15T06:59:52Z +7479 276 1 9080 1.99 2005-07-30T08:02:39Z 2020-02-15T06:59:52Z +7480 276 1 9102 4.99 2005-07-30T08:48:20Z 2020-02-15T06:59:52Z +7481 276 1 9229 8.99 2005-07-30T13:38:17Z 2020-02-15T06:59:52Z +7482 276 2 10149 5.99 2005-07-31T22:20:46Z 2020-02-15T06:59:52Z +7483 276 2 10691 0.99 2005-08-01T18:09:53Z 2020-02-15T06:59:52Z +7484 276 1 10763 2.99 2005-08-01T20:32:27Z 2020-02-15T06:59:52Z +7485 276 2 11085 2.99 2005-08-02T07:36:44Z 2020-02-15T06:59:52Z +7486 276 1 11636 4.99 2005-08-17T04:36:31Z 2020-02-15T06:59:52Z +7487 276 2 11961 3.99 2005-08-17T17:28:01Z 2020-02-15T06:59:52Z +7488 276 2 12178 5.99 2005-08-18T01:17:32Z 2020-02-15T06:59:52Z +7489 276 2 12251 4.99 2005-08-18T03:59:02Z 2020-02-15T06:59:52Z +7490 276 1 12650 4.99 2005-08-18T18:33:20Z 2020-02-15T06:59:52Z +7491 276 1 14000 4.99 2005-08-20T20:06:05Z 2020-02-15T06:59:52Z +7492 276 2 15718 2.99 2005-08-23T11:05:17Z 2020-02-15T06:59:52Z +7493 276 1 15769 3.99 2005-08-23T13:16:15Z 2020-02-15T06:59:52Z +7494 276 2 15923 4.99 2005-08-23T18:08:19Z 2020-02-15T06:59:52Z +7495 277 2 308 6.99 2005-05-26T22:01:39Z 2020-02-15T06:59:52Z +7496 277 1 1331 2.99 2005-06-15T11:34:33Z 2020-02-15T06:59:52Z +7497 277 2 1717 2.99 2005-06-16T14:47:16Z 2020-02-15T06:59:52Z +7498 277 2 2162 3.99 2005-06-17T23:45:47Z 2020-02-15T06:59:52Z +7499 277 2 2723 4.99 2005-06-19T14:55:23Z 2020-02-15T06:59:52Z +7500 277 1 3247 5.99 2005-06-21T03:12:15Z 2020-02-15T06:59:52Z +7501 277 2 3274 4.99 2005-06-21T05:30:36Z 2020-02-15T06:59:52Z +7502 277 1 3344 2.99 2005-06-21T10:57:27Z 2020-02-15T06:59:52Z +7503 277 2 3740 5.99 2005-07-06T11:55:35Z 2020-02-15T06:59:52Z +7504 277 2 3897 2.99 2005-07-06T19:11:43Z 2020-02-15T06:59:52Z +7505 277 1 4290 4.99 2005-07-07T15:47:10Z 2020-02-15T06:59:52Z +7506 277 2 4987 5.99 2005-07-09T00:45:41Z 2020-02-15T06:59:52Z +7507 277 1 5861 0.99 2005-07-10T18:14:22Z 2020-02-15T06:59:52Z +7508 277 1 5913 2.99 2005-07-10T20:58:55Z 2020-02-15T06:59:52Z +7509 277 2 6455 2.99 2005-07-12T01:01:58Z 2020-02-15T06:59:52Z +7510 277 1 6487 5.99 2005-07-12T02:17:00Z 2020-02-15T06:59:52Z +7511 277 2 7423 4.99 2005-07-27T17:11:47Z 2020-02-15T06:59:52Z +7512 277 2 8410 2.99 2005-07-29T06:41:36Z 2020-02-15T06:59:52Z +7513 277 2 9669 4.99 2005-07-31T06:31:36Z 2020-02-15T06:59:52Z +7514 277 1 9901 0.99 2005-07-31T14:20:59Z 2020-02-15T06:59:52Z +7515 277 2 11074 3.99 2005-08-02T07:21:43Z 2020-02-15T06:59:52Z +7516 277 2 11162 4.99 2005-08-02T10:07:54Z 2020-02-15T06:59:52Z +7517 277 2 11574 0.99 2005-08-17T01:38:19Z 2020-02-15T06:59:52Z +7518 277 2 12149 3.99 2005-08-18T00:13:51Z 2020-02-15T06:59:52Z +7519 277 1 12458 5.99 2005-08-18T11:22:53Z 2020-02-15T06:59:52Z +7520 277 1 13122 4.99 2005-08-19T11:53:49Z 2020-02-15T06:59:52Z +7521 277 2 13526 4.99 2005-08-20T02:58:42Z 2020-02-15T06:59:52Z +7522 277 1 13714 4.99 2005-08-20T09:41:09Z 2020-02-15T06:59:52Z +7523 277 2 14227 4.99 2005-08-21T04:56:31Z 2020-02-15T06:59:52Z +7524 277 2 14745 4.99 2005-08-21T22:53:01Z 2020-02-15T06:59:52Z +7525 277 1 15008 10.99 2005-08-22T08:24:32Z 2020-02-15T06:59:52Z +7526 277 1 15345 5.99 2005-08-22T21:05:50Z 2020-02-15T06:59:52Z +7527 278 1 1092 4.99 2005-05-31T12:15:57Z 2020-02-15T06:59:52Z +7528 278 2 1387 0.99 2005-06-15T15:40:56Z 2020-02-15T06:59:52Z +7529 278 1 1978 2.99 2005-06-17T09:42:34Z 2020-02-15T06:59:52Z +7530 278 2 2078 4.99 2005-06-17T16:48:55Z 2020-02-15T06:59:52Z +7531 278 1 3453 2.99 2005-06-21T21:12:11Z 2020-02-15T06:59:52Z +7532 278 1 3776 2.99 2005-07-06T13:31:37Z 2020-02-15T06:59:52Z +7533 278 1 4430 4.99 2005-07-07T22:35:24Z 2020-02-15T06:59:52Z +7534 278 2 4866 8.99 2005-07-08T19:09:59Z 2020-02-15T06:59:52Z +7535 278 2 6869 4.99 2005-07-12T20:12:06Z 2020-02-15T06:59:52Z +7536 278 1 7239 0.99 2005-07-27T10:20:27Z 2020-02-15T06:59:52Z +7537 278 2 7834 0.99 2005-07-28T08:46:43Z 2020-02-15T06:59:52Z +7538 278 2 8222 5.99 2005-07-28T23:51:53Z 2020-02-15T06:59:52Z +7539 278 1 8953 4.99 2005-07-30T03:21:05Z 2020-02-15T06:59:52Z +7540 278 2 9448 2.99 2005-07-30T21:56:13Z 2020-02-15T06:59:52Z +7541 278 1 10649 2.99 2005-08-01T16:11:40Z 2020-02-15T06:59:52Z +7542 278 1 10731 2.99 2005-08-01T19:21:48Z 2020-02-15T06:59:52Z +7543 278 2 10849 3.99 2005-08-01T23:51:00Z 2020-02-15T06:59:52Z +7544 278 1 11095 5.99 2005-08-02T08:03:20Z 2020-02-15T06:59:52Z +7545 278 2 11531 0.99 2005-08-17T00:30:04Z 2020-02-15T06:59:52Z +7546 278 1 12787 0.99 2005-08-19T00:07:58Z 2020-02-15T06:59:52Z +7547 278 1 13896 0.99 2005-08-20T15:59:56Z 2020-02-15T06:59:52Z +7548 278 2 13976 0.99 2005-08-20T19:02:16Z 2020-02-15T06:59:52Z +7549 278 1 14268 2.99 2005-08-21T06:21:24Z 2020-02-15T06:59:52Z +7550 278 2 14803 0.99 2005-08-22T00:49:10Z 2020-02-15T06:59:52Z +7551 278 1 14986 4.99 2005-08-22T07:37:24Z 2020-02-15T06:59:52Z +7552 278 1 16019 4.99 2005-08-23T21:30:45Z 2020-02-15T06:59:52Z +7553 279 1 979 2.99 2005-05-30T21:37:11Z 2020-02-15T06:59:52Z +7554 279 2 1019 0.99 2005-05-31T03:05:07Z 2020-02-15T06:59:52Z +7555 279 1 1178 2.99 2005-06-15T00:36:40Z 2020-02-15T06:59:52Z +7556 279 1 2147 4.99 2005-06-17T22:28:13Z 2020-02-15T06:59:52Z +7557 279 1 3215 0.99 2005-06-21T01:11:32Z 2020-02-15T06:59:52Z +7558 279 1 3374 2.99 2005-06-21T13:36:30Z 2020-02-15T06:59:52Z +7559 279 1 3375 4.99 2005-06-21T13:37:18Z 2020-02-15T06:59:52Z +7560 279 1 4476 4.99 2005-07-08T00:34:25Z 2020-02-15T06:59:52Z +7561 279 1 4978 7.99 2005-07-09T00:22:02Z 2020-02-15T06:59:52Z +7562 279 2 5248 2.99 2005-07-09T13:29:44Z 2020-02-15T06:59:52Z +7563 279 1 5361 9.99 2005-07-09T18:15:32Z 2020-02-15T06:59:52Z +7564 279 1 6176 0.99 2005-07-11T10:48:21Z 2020-02-15T06:59:52Z +7565 279 1 7947 2.99 2005-07-28T13:05:50Z 2020-02-15T06:59:52Z +7566 279 2 8559 3.99 2005-07-29T11:25:54Z 2020-02-15T06:59:52Z +7567 279 2 9820 5.99 2005-07-31T11:46:57Z 2020-02-15T06:59:52Z +7568 279 2 10177 2.99 2005-07-31T23:42:33Z 2020-02-15T06:59:52Z +7569 279 2 11250 6.99 2005-08-02T13:35:42Z 2020-02-15T06:59:52Z +7570 279 1 11515 2.99 2005-08-16T23:54:34Z 2020-02-15T06:59:52Z +7571 279 1 11703 4.99 2005-08-17T07:19:29Z 2020-02-15T06:59:52Z +7572 279 2 12935 2.99 2005-08-19T05:20:25Z 2020-02-15T06:59:52Z +7573 279 1 12949 4.99 2005-08-19T05:55:52Z 2020-02-15T06:59:52Z +7574 279 1 13105 7.99 2005-08-19T11:06:16Z 2020-02-15T06:59:52Z +7575 279 1 13233 2.99 2005-08-19T16:14:41Z 2020-02-15T06:59:52Z +7576 279 2 13588 4.99 2005-08-20T05:47:11Z 2020-02-15T06:59:52Z +7577 279 2 14206 2.99 2005-08-21T03:59:26Z 2020-02-15T06:59:52Z +7578 279 1 14714 3.99 2005-08-21T21:27:43Z 2020-02-15T06:59:52Z +7579 279 1 14779 5.99 2005-08-22T00:00:56Z 2020-02-15T06:59:52Z +7580 279 1 14789 4.99 2005-08-22T00:29:39Z 2020-02-15T06:59:52Z +7581 279 2 15580 6.99 2005-08-23T05:39:06Z 2020-02-15T06:59:52Z +7582 279 1 15606 2.99 2005-08-23T06:50:27Z 2020-02-15T06:59:52Z +7583 279 2 13538 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7584 280 1 1014 4.99 2005-05-31T02:39:16Z 2020-02-15T06:59:52Z +7585 280 1 2656 3.99 2005-06-19T10:42:33Z 2020-02-15T06:59:52Z +7586 280 2 3009 4.99 2005-06-20T10:24:44Z 2020-02-15T06:59:52Z +7587 280 2 3097 0.99 2005-06-20T16:26:14Z 2020-02-15T06:59:52Z +7588 280 1 4616 4.99 2005-07-08T07:48:12Z 2020-02-15T06:59:52Z +7589 280 2 6851 0.99 2005-07-12T19:32:14Z 2020-02-15T06:59:52Z +7590 280 1 7070 4.99 2005-07-27T04:01:08Z 2020-02-15T06:59:52Z +7591 280 2 7901 0.99 2005-07-28T11:12:12Z 2020-02-15T06:59:52Z +7592 280 2 8319 0.99 2005-07-29T03:44:52Z 2020-02-15T06:59:52Z +7593 280 1 8365 0.99 2005-07-29T05:11:00Z 2020-02-15T06:59:52Z +7594 280 1 8565 7.99 2005-07-29T11:35:23Z 2020-02-15T06:59:52Z +7595 280 2 8695 6.99 2005-07-29T16:44:55Z 2020-02-15T06:59:52Z +7596 280 2 8744 3.99 2005-07-29T18:58:24Z 2020-02-15T06:59:52Z +7597 280 1 8912 0.99 2005-07-30T01:31:25Z 2020-02-15T06:59:52Z +7598 280 2 9103 0.99 2005-07-30T08:49:26Z 2020-02-15T06:59:52Z +7599 280 1 10847 9.99 2005-08-01T23:49:33Z 2020-02-15T06:59:52Z +7600 280 1 11366 4.99 2005-08-02T18:01:25Z 2020-02-15T06:59:52Z +7601 280 1 11517 2.99 2005-08-16T23:56:28Z 2020-02-15T06:59:52Z +7602 280 1 12053 4.99 2005-08-17T20:57:27Z 2020-02-15T06:59:52Z +7603 280 1 12849 5.99 2005-08-19T02:05:37Z 2020-02-15T06:59:52Z +7604 280 2 13231 9.99 2005-08-19T16:12:49Z 2020-02-15T06:59:52Z +7605 280 1 13321 4.99 2005-08-19T19:40:37Z 2020-02-15T06:59:52Z +7606 280 1 13667 4.99 2005-08-20T08:25:34Z 2020-02-15T06:59:52Z +7607 280 2 15036 2.99 2005-08-22T09:36:00Z 2020-02-15T06:59:52Z +7608 280 1 15312 4.99 2005-08-22T19:58:15Z 2020-02-15T06:59:52Z +7609 280 2 15554 5.99 2005-08-23T04:48:12Z 2020-02-15T06:59:52Z +7610 280 2 15950 5.99 2005-08-23T19:09:39Z 2020-02-15T06:59:52Z +7611 281 2 650 2.99 2005-05-28T19:45:40Z 2020-02-15T06:59:52Z +7612 281 2 754 2.99 2005-05-29T10:18:59Z 2020-02-15T06:59:52Z +7613 281 2 1485 5.99 2005-06-15T21:24:10Z 2020-02-15T06:59:52Z +7614 281 1 2254 5.99 2005-06-18T05:15:14Z 2020-02-15T06:59:52Z +7615 281 1 4607 0.99 2005-07-08T07:15:14Z 2020-02-15T06:59:52Z +7616 281 2 4864 6.99 2005-07-08T19:05:34Z 2020-02-15T06:59:52Z +7617 281 2 5410 5.99 2005-07-09T20:21:10Z 2020-02-15T06:59:52Z +7618 281 2 6825 0.99 2005-07-12T18:28:12Z 2020-02-15T06:59:52Z +7619 281 2 7034 2.99 2005-07-27T03:03:37Z 2020-02-15T06:59:52Z +7620 281 1 7525 3.99 2005-07-27T21:13:28Z 2020-02-15T06:59:52Z +7621 281 2 8131 0.99 2005-07-28T19:55:21Z 2020-02-15T06:59:52Z +7622 281 2 8180 4.99 2005-07-28T22:05:24Z 2020-02-15T06:59:52Z +7623 281 1 13641 2.99 2005-08-20T07:34:42Z 2020-02-15T06:59:52Z +7624 281 1 14196 1.99 2005-08-21T03:40:40Z 2020-02-15T06:59:52Z +7625 282 2 48 1.99 2005-05-25T06:20:46Z 2020-02-15T06:59:52Z +7626 282 2 282 6.99 2005-05-26T18:56:26Z 2020-02-15T06:59:52Z +7627 282 2 564 0.99 2005-05-28T09:12:09Z 2020-02-15T06:59:52Z +7628 282 1 2016 2.99 2005-06-17T12:18:36Z 2020-02-15T06:59:52Z +7629 282 2 2176 2.99 2005-06-18T00:29:51Z 2020-02-15T06:59:52Z +7630 282 2 3408 4.99 2005-06-21T16:15:11Z 2020-02-15T06:59:52Z +7631 282 1 3417 2.99 2005-06-21T17:06:20Z 2020-02-15T06:59:52Z +7632 282 2 3675 2.99 2005-07-06T09:09:19Z 2020-02-15T06:59:52Z +7633 282 1 3885 2.99 2005-07-06T18:43:43Z 2020-02-15T06:59:52Z +7634 282 1 4359 2.99 2005-07-07T19:30:20Z 2020-02-15T06:59:52Z +7635 282 2 4412 4.99 2005-07-07T21:56:53Z 2020-02-15T06:59:52Z +7636 282 1 5113 0.99 2005-07-09T07:06:18Z 2020-02-15T06:59:52Z +7637 282 2 5319 8.99 2005-07-09T16:17:44Z 2020-02-15T06:59:52Z +7638 282 1 5926 6.99 2005-07-10T21:53:42Z 2020-02-15T06:59:52Z +7639 282 1 7433 2.99 2005-07-27T17:32:20Z 2020-02-15T06:59:52Z +7640 282 2 7534 3.99 2005-07-27T21:26:17Z 2020-02-15T06:59:52Z +7641 282 1 8223 6.99 2005-07-28T23:56:01Z 2020-02-15T06:59:52Z +7642 282 2 8270 4.99 2005-07-29T01:27:22Z 2020-02-15T06:59:52Z +7643 282 2 8468 1.99 2005-07-29T08:26:04Z 2020-02-15T06:59:52Z +7644 282 2 8743 0.99 2005-07-29T18:57:01Z 2020-02-15T06:59:52Z +7645 282 2 8973 1.99 2005-07-30T04:09:13Z 2020-02-15T06:59:52Z +7646 282 2 9658 9.99 2005-07-31T06:00:52Z 2020-02-15T06:59:52Z +7647 282 2 11226 2.99 2005-08-02T12:47:30Z 2020-02-15T06:59:52Z +7648 282 1 13278 2.99 2005-08-19T17:57:53Z 2020-02-15T06:59:52Z +7649 282 2 13749 2.99 2005-08-20T11:00:37Z 2020-02-15T06:59:52Z +7650 282 2 15543 4.99 2005-08-23T04:15:41Z 2020-02-15T06:59:52Z +7651 282 2 15430 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7652 283 1 1749 0.99 2005-06-16T16:56:00Z 2020-02-15T06:59:52Z +7653 283 2 1796 2.99 2005-06-16T20:10:43Z 2020-02-15T06:59:52Z +7654 283 2 2333 2.99 2005-06-18T10:55:54Z 2020-02-15T06:59:52Z +7655 283 1 2685 2.99 2005-06-19T12:35:21Z 2020-02-15T06:59:52Z +7656 283 2 2849 7.99 2005-06-19T23:06:00Z 2020-02-15T06:59:52Z +7657 283 1 3534 4.99 2005-07-06T01:32:27Z 2020-02-15T06:59:52Z +7658 283 1 3568 6.99 2005-07-06T03:11:57Z 2020-02-15T06:59:52Z +7659 283 2 3590 4.99 2005-07-06T04:35:12Z 2020-02-15T06:59:52Z +7660 283 2 3672 0.99 2005-07-06T09:01:56Z 2020-02-15T06:59:52Z +7661 283 2 4683 2.99 2005-07-08T10:38:28Z 2020-02-15T06:59:52Z +7662 283 2 4876 1.99 2005-07-08T19:27:50Z 2020-02-15T06:59:52Z +7663 283 2 5989 2.99 2005-07-11T00:57:53Z 2020-02-15T06:59:52Z +7664 283 1 6075 0.99 2005-07-11T05:03:03Z 2020-02-15T06:59:52Z +7665 283 1 6300 1.99 2005-07-11T17:50:09Z 2020-02-15T06:59:52Z +7666 283 2 6313 0.99 2005-07-11T18:29:52Z 2020-02-15T06:59:52Z +7667 283 1 6827 4.99 2005-07-12T18:33:45Z 2020-02-15T06:59:52Z +7668 283 1 7504 0.99 2005-07-27T20:24:31Z 2020-02-15T06:59:52Z +7669 283 1 7816 0.99 2005-07-28T08:14:12Z 2020-02-15T06:59:52Z +7670 283 2 9353 4.99 2005-07-30T18:30:37Z 2020-02-15T06:59:52Z +7671 283 2 9478 2.99 2005-07-30T23:12:53Z 2020-02-15T06:59:52Z +7672 283 2 9572 2.99 2005-07-31T02:44:10Z 2020-02-15T06:59:52Z +7673 283 2 9918 2.99 2005-07-31T14:55:22Z 2020-02-15T06:59:52Z +7674 283 1 11637 0.99 2005-08-17T04:36:39Z 2020-02-15T06:59:52Z +7675 283 2 11846 2.99 2005-08-17T13:18:29Z 2020-02-15T06:59:52Z +7676 283 2 11966 0.99 2005-08-17T17:40:04Z 2020-02-15T06:59:52Z +7677 283 1 12290 6.99 2005-08-18T05:08:03Z 2020-02-15T06:59:52Z +7678 283 1 13229 2.99 2005-08-19T16:08:33Z 2020-02-15T06:59:52Z +7679 283 1 15837 2.99 2005-08-23T15:29:41Z 2020-02-15T06:59:52Z +7680 284 2 423 0.99 2005-05-27T15:32:57Z 2020-02-15T06:59:52Z +7681 284 2 791 0.99 2005-05-29T16:30:42Z 2020-02-15T06:59:52Z +7682 284 1 1145 6.99 2005-05-31T20:13:45Z 2020-02-15T06:59:52Z +7683 284 1 1171 0.99 2005-06-14T23:50:11Z 2020-02-15T06:59:52Z +7684 284 2 2813 6.99 2005-06-19T20:01:47Z 2020-02-15T06:59:52Z +7685 284 2 3296 0.99 2005-06-21T07:04:53Z 2020-02-15T06:59:52Z +7686 284 1 3572 0.99 2005-07-06T03:33:23Z 2020-02-15T06:59:52Z +7687 284 2 4081 2.99 2005-07-07T05:10:08Z 2020-02-15T06:59:52Z +7688 284 1 4759 7.99 2005-07-08T14:39:22Z 2020-02-15T06:59:52Z +7689 284 2 4931 7.99 2005-07-08T22:16:18Z 2020-02-15T06:59:52Z +7690 284 1 5161 6.99 2005-07-09T08:57:56Z 2020-02-15T06:59:52Z +7691 284 1 6276 5.99 2005-07-11T16:15:50Z 2020-02-15T06:59:52Z +7692 284 2 6982 2.99 2005-07-27T00:53:41Z 2020-02-15T06:59:52Z +7693 284 1 7164 6.99 2005-07-27T07:36:34Z 2020-02-15T06:59:52Z +7694 284 1 7463 4.99 2005-07-27T18:48:32Z 2020-02-15T06:59:52Z +7695 284 2 7716 8.99 2005-07-28T04:33:15Z 2020-02-15T06:59:52Z +7696 284 1 8888 2.99 2005-07-30T00:39:36Z 2020-02-15T06:59:52Z +7697 284 1 9790 0.99 2005-07-31T10:34:08Z 2020-02-15T06:59:52Z +7698 284 1 10396 7.99 2005-08-01T07:08:46Z 2020-02-15T06:59:52Z +7699 284 1 10535 4.99 2005-08-01T12:21:13Z 2020-02-15T06:59:52Z +7700 284 2 12162 3.99 2005-08-18T00:44:30Z 2020-02-15T06:59:52Z +7701 284 1 14007 5.99 2005-08-20T20:22:47Z 2020-02-15T06:59:52Z +7702 284 1 14648 4.99 2005-08-21T19:18:01Z 2020-02-15T06:59:52Z +7703 284 2 14746 4.99 2005-08-21T22:54:02Z 2020-02-15T06:59:52Z +7704 284 1 14921 4.99 2005-08-22T05:12:24Z 2020-02-15T06:59:52Z +7705 284 2 15135 3.99 2005-08-22T13:19:19Z 2020-02-15T06:59:52Z +7706 284 1 12064 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7707 284 2 12959 0 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7708 285 2 1161 7.99 2005-06-14T23:07:08Z 2020-02-15T06:59:52Z +7709 285 2 1302 3.99 2005-06-15T09:48:37Z 2020-02-15T06:59:52Z +7710 285 1 2249 5.99 2005-06-18T05:03:08Z 2020-02-15T06:59:52Z +7711 285 2 4007 6.99 2005-07-07T00:26:05Z 2020-02-15T06:59:52Z +7712 285 2 5112 2.99 2005-07-09T07:04:04Z 2020-02-15T06:59:52Z +7713 285 1 5683 9.99 2005-07-10T08:52:13Z 2020-02-15T06:59:52Z +7714 285 1 6010 0.99 2005-07-11T01:52:28Z 2020-02-15T06:59:52Z +7715 285 2 6083 3.99 2005-07-11T05:12:49Z 2020-02-15T06:59:52Z +7716 285 1 6094 4.99 2005-07-11T05:54:42Z 2020-02-15T06:59:52Z +7717 285 2 6333 4.99 2005-07-11T19:20:16Z 2020-02-15T06:59:52Z +7718 285 2 6644 0.99 2005-07-12T10:39:39Z 2020-02-15T06:59:52Z +7719 285 1 7211 6.99 2005-07-27T09:20:00Z 2020-02-15T06:59:52Z +7720 285 1 7452 9.99 2005-07-27T18:26:39Z 2020-02-15T06:59:52Z +7721 285 1 7745 9.99 2005-07-28T05:46:28Z 2020-02-15T06:59:52Z +7722 285 1 8154 4.99 2005-07-28T20:56:18Z 2020-02-15T06:59:52Z +7723 285 2 8466 0.99 2005-07-29T08:24:47Z 2020-02-15T06:59:52Z +7724 285 1 10493 5.99 2005-08-01T10:43:12Z 2020-02-15T06:59:52Z +7725 285 2 10628 2.99 2005-08-01T15:33:19Z 2020-02-15T06:59:52Z +7726 285 1 10641 4.99 2005-08-01T15:44:57Z 2020-02-15T06:59:52Z +7727 285 1 12027 8.99 2005-08-17T20:01:12Z 2020-02-15T06:59:52Z +7728 285 1 12444 0.99 2005-08-18T10:53:12Z 2020-02-15T06:59:52Z +7729 285 1 12449 0.99 2005-08-18T11:03:04Z 2020-02-15T06:59:52Z +7730 285 2 12687 9.99 2005-08-18T19:57:39Z 2020-02-15T06:59:52Z +7731 285 2 13102 7.99 2005-08-19T11:02:03Z 2020-02-15T06:59:52Z +7732 285 2 15251 0.99 2005-08-22T18:03:57Z 2020-02-15T06:59:52Z +7733 285 1 15489 4.99 2005-08-23T02:06:41Z 2020-02-15T06:59:52Z +7734 286 2 81 6.99 2005-05-25T12:15:19Z 2020-02-15T06:59:52Z +7735 286 1 1690 8.99 2005-06-16T12:24:18Z 2020-02-15T06:59:52Z +7736 286 1 2195 4.99 2005-06-18T01:44:46Z 2020-02-15T06:59:52Z +7737 286 2 3592 4.99 2005-07-06T04:38:50Z 2020-02-15T06:59:52Z +7738 286 2 3692 3.99 2005-07-06T09:54:12Z 2020-02-15T06:59:52Z +7739 286 2 4242 6.99 2005-07-07T13:39:01Z 2020-02-15T06:59:52Z +7740 286 2 4461 9.99 2005-07-07T23:59:43Z 2020-02-15T06:59:52Z +7741 286 1 4707 4.99 2005-07-08T11:57:28Z 2020-02-15T06:59:52Z +7742 286 1 4894 2.99 2005-07-08T20:21:31Z 2020-02-15T06:59:52Z +7743 286 1 5796 4.99 2005-07-10T14:42:54Z 2020-02-15T06:59:52Z +7744 286 2 6611 2.99 2005-07-12T08:20:23Z 2020-02-15T06:59:52Z +7745 286 1 7254 2.99 2005-07-27T10:48:50Z 2020-02-15T06:59:52Z +7746 286 1 7299 2.99 2005-07-27T12:49:56Z 2020-02-15T06:59:52Z +7747 286 1 7368 0.99 2005-07-27T15:06:05Z 2020-02-15T06:59:52Z +7748 286 1 7422 2.99 2005-07-27T17:10:42Z 2020-02-15T06:59:52Z +7749 286 1 7719 6.99 2005-07-28T04:39:09Z 2020-02-15T06:59:52Z +7750 286 2 8399 0.99 2005-07-29T06:20:18Z 2020-02-15T06:59:52Z +7751 286 2 9280 6.99 2005-07-30T15:15:38Z 2020-02-15T06:59:52Z +7752 286 1 9809 3.99 2005-07-31T11:19:21Z 2020-02-15T06:59:52Z +7753 286 2 10105 5.99 2005-07-31T20:54:20Z 2020-02-15T06:59:52Z +7754 286 2 11670 0.99 2005-08-17T05:48:59Z 2020-02-15T06:59:52Z +7755 286 2 12595 0.99 2005-08-18T16:27:08Z 2020-02-15T06:59:52Z +7756 286 1 12656 0.99 2005-08-18T18:58:35Z 2020-02-15T06:59:52Z +7757 286 2 13635 5.99 2005-08-20T07:17:35Z 2020-02-15T06:59:52Z +7758 286 1 13975 4.99 2005-08-20T18:58:23Z 2020-02-15T06:59:52Z +7759 286 1 14905 0.99 2005-08-22T04:34:22Z 2020-02-15T06:59:52Z +7760 286 2 15629 4.99 2005-08-23T07:28:22Z 2020-02-15T06:59:52Z +7761 287 2 498 0.99 2005-05-28T01:01:21Z 2020-02-15T06:59:52Z +7762 287 1 655 2.99 2005-05-28T20:16:20Z 2020-02-15T06:59:52Z +7763 287 2 964 2.99 2005-05-30T18:53:21Z 2020-02-15T06:59:52Z +7764 287 1 1247 7.99 2005-06-15T05:16:40Z 2020-02-15T06:59:52Z +7765 287 2 1642 2.99 2005-06-16T08:54:15Z 2020-02-15T06:59:52Z +7766 287 2 2286 9.99 2005-06-18T07:02:32Z 2020-02-15T06:59:52Z +7767 287 2 2612 6.99 2005-06-19T07:19:41Z 2020-02-15T06:59:52Z +7768 287 2 4877 4.99 2005-07-08T19:31:02Z 2020-02-15T06:59:52Z +7769 287 2 5346 1.99 2005-07-09T17:29:01Z 2020-02-15T06:59:52Z +7770 287 1 5593 3.99 2005-07-10T04:33:13Z 2020-02-15T06:59:52Z +7771 287 2 5761 0.99 2005-07-10T12:45:36Z 2020-02-15T06:59:52Z +7772 287 2 6379 3.99 2005-07-11T21:51:25Z 2020-02-15T06:59:52Z +7773 287 1 6397 2.99 2005-07-11T22:34:02Z 2020-02-15T06:59:52Z +7774 287 2 7402 2.99 2005-07-27T16:19:40Z 2020-02-15T06:59:52Z +7775 287 2 7777 2.99 2005-07-28T07:04:42Z 2020-02-15T06:59:52Z +7776 287 2 8994 6.99 2005-07-30T04:51:32Z 2020-02-15T06:59:52Z +7777 287 2 9716 1.99 2005-07-31T08:23:53Z 2020-02-15T06:59:52Z +7778 287 1 10027 6.99 2005-07-31T18:33:51Z 2020-02-15T06:59:52Z +7779 287 2 10574 2.99 2005-08-01T13:36:51Z 2020-02-15T06:59:52Z +7780 287 2 10807 4.99 2005-08-01T22:26:10Z 2020-02-15T06:59:52Z +7781 287 2 11106 4.99 2005-08-02T08:17:38Z 2020-02-15T06:59:52Z +7782 287 1 11716 4.99 2005-08-17T07:40:55Z 2020-02-15T06:59:52Z +7783 287 2 12861 2.99 2005-08-19T02:30:24Z 2020-02-15T06:59:52Z +7784 287 2 14715 6.99 2005-08-21T21:28:18Z 2020-02-15T06:59:52Z +7785 287 2 15076 1.99 2005-08-22T11:05:34Z 2020-02-15T06:59:52Z +7786 287 1 15084 4.99 2005-08-22T11:17:59Z 2020-02-15T06:59:52Z +7787 287 2 15127 0.99 2005-08-22T12:56:29Z 2020-02-15T06:59:52Z +7788 287 1 15614 2.99 2005-08-23T07:05:15Z 2020-02-15T06:59:52Z +7789 287 2 14204 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7790 288 2 93 3.99 2005-05-25T15:54:16Z 2020-02-15T06:59:52Z +7791 288 2 427 6.99 2005-05-27T16:10:04Z 2020-02-15T06:59:52Z +7792 288 1 503 4.99 2005-05-28T01:35:25Z 2020-02-15T06:59:52Z +7793 288 2 565 5.99 2005-05-28T09:26:31Z 2020-02-15T06:59:52Z +7794 288 1 1466 5.99 2005-06-15T20:46:04Z 2020-02-15T06:59:52Z +7795 288 1 3958 3.99 2005-07-06T22:07:33Z 2020-02-15T06:59:52Z +7796 288 1 4692 2.99 2005-07-08T11:07:06Z 2020-02-15T06:59:52Z +7797 288 2 4758 0.99 2005-07-08T14:38:02Z 2020-02-15T06:59:52Z +7798 288 1 6399 2.99 2005-07-11T22:39:05Z 2020-02-15T06:59:52Z +7799 288 2 6518 3.99 2005-07-12T03:59:42Z 2020-02-15T06:59:52Z +7800 288 2 7744 0.99 2005-07-28T05:38:20Z 2020-02-15T06:59:52Z +7801 288 2 7855 2.99 2005-07-28T09:43:02Z 2020-02-15T06:59:52Z +7802 288 2 9429 2.99 2005-07-30T21:19:26Z 2020-02-15T06:59:52Z +7803 288 1 9732 0.99 2005-07-31T08:56:08Z 2020-02-15T06:59:52Z +7804 288 1 10927 9.99 2005-08-02T02:31:15Z 2020-02-15T06:59:52Z +7805 288 2 11952 2.99 2005-08-17T17:14:57Z 2020-02-15T06:59:52Z +7806 288 1 12134 1.99 2005-08-17T23:49:43Z 2020-02-15T06:59:52Z +7807 288 1 13219 2.99 2005-08-19T15:40:28Z 2020-02-15T06:59:52Z +7808 288 1 13227 0.99 2005-08-19T16:05:38Z 2020-02-15T06:59:52Z +7809 288 2 13363 2.99 2005-08-19T21:07:59Z 2020-02-15T06:59:52Z +7810 288 2 14113 0.99 2005-08-21T01:03:30Z 2020-02-15T06:59:52Z +7811 288 2 14756 0.99 2005-08-21T23:21:23Z 2020-02-15T06:59:52Z +7812 288 2 15058 2.99 2005-08-22T10:20:55Z 2020-02-15T06:59:52Z +7813 288 1 15119 2.99 2005-08-22T12:41:33Z 2020-02-15T06:59:52Z +7814 289 2 1880 4.99 2005-06-17T03:08:59Z 2020-02-15T06:59:52Z +7815 289 2 2316 0.99 2005-06-18T09:04:59Z 2020-02-15T06:59:52Z +7816 289 1 2387 6.99 2005-06-18T15:24:19Z 2020-02-15T06:59:52Z +7817 289 1 2784 10.99 2005-06-19T18:40:29Z 2020-02-15T06:59:52Z +7818 289 2 2948 6.99 2005-06-20T06:02:35Z 2020-02-15T06:59:52Z +7819 289 2 3123 6.99 2005-06-20T18:26:14Z 2020-02-15T06:59:52Z +7820 289 1 3588 2.99 2005-07-06T04:29:13Z 2020-02-15T06:59:52Z +7821 289 2 4622 0.99 2005-07-08T08:02:42Z 2020-02-15T06:59:52Z +7822 289 1 5089 4.99 2005-07-09T05:45:40Z 2020-02-15T06:59:52Z +7823 289 2 5342 8.99 2005-07-09T17:20:03Z 2020-02-15T06:59:52Z +7824 289 2 5584 4.99 2005-07-10T04:15:25Z 2020-02-15T06:59:52Z +7825 289 2 5724 0.99 2005-07-10T11:18:12Z 2020-02-15T06:59:52Z +7826 289 2 6007 3.99 2005-07-11T01:43:06Z 2020-02-15T06:59:52Z +7827 289 2 6536 7.99 2005-07-12T04:44:25Z 2020-02-15T06:59:52Z +7828 289 1 7151 4.99 2005-07-27T07:14:31Z 2020-02-15T06:59:52Z +7829 289 1 7162 4.99 2005-07-27T07:32:45Z 2020-02-15T06:59:52Z +7830 289 2 7325 0.99 2005-07-27T13:46:55Z 2020-02-15T06:59:52Z +7831 289 1 9498 2.99 2005-07-30T23:56:55Z 2020-02-15T06:59:52Z +7832 289 2 10297 7.99 2005-08-01T04:05:04Z 2020-02-15T06:59:52Z +7833 289 1 12158 1.99 2005-08-18T00:34:20Z 2020-02-15T06:59:52Z +7834 289 1 12170 0.99 2005-08-18T01:06:10Z 2020-02-15T06:59:52Z +7835 289 2 12558 7.99 2005-08-18T14:52:35Z 2020-02-15T06:59:52Z +7836 289 2 13165 0.99 2005-08-19T13:34:10Z 2020-02-15T06:59:52Z +7837 289 2 13211 0.99 2005-08-19T15:23:41Z 2020-02-15T06:59:52Z +7838 289 2 13256 9.99 2005-08-19T16:54:12Z 2020-02-15T06:59:52Z +7839 289 2 13336 5.99 2005-08-19T20:03:22Z 2020-02-15T06:59:52Z +7840 289 2 13891 6.99 2005-08-20T15:42:05Z 2020-02-15T06:59:52Z +7841 289 1 14087 0.99 2005-08-20T23:53:40Z 2020-02-15T06:59:52Z +7842 289 2 14729 4.99 2005-08-21T22:16:57Z 2020-02-15T06:59:52Z +7843 289 2 14917 4.99 2005-08-22T05:03:59Z 2020-02-15T06:59:52Z +7844 290 1 160 2.99 2005-05-26T01:46:20Z 2020-02-15T06:59:52Z +7845 290 1 1220 6.99 2005-06-15T03:26:15Z 2020-02-15T06:59:52Z +7846 290 2 1336 8.99 2005-06-15T12:01:34Z 2020-02-15T06:59:52Z +7847 290 2 1496 4.99 2005-06-15T21:55:58Z 2020-02-15T06:59:52Z +7848 290 2 1532 0.99 2005-06-16T00:41:31Z 2020-02-15T06:59:52Z +7849 290 1 3013 3.99 2005-06-20T10:45:09Z 2020-02-15T06:59:52Z +7850 290 2 4039 4.99 2005-07-07T02:57:59Z 2020-02-15T06:59:52Z +7851 290 1 4073 0.99 2005-07-07T04:49:13Z 2020-02-15T06:59:52Z +7852 290 2 4416 0.99 2005-07-07T22:04:36Z 2020-02-15T06:59:52Z +7853 290 1 5105 2.99 2005-07-09T06:38:59Z 2020-02-15T06:59:52Z +7854 290 2 5214 5.99 2005-07-09T11:43:08Z 2020-02-15T06:59:52Z +7855 290 2 5827 2.99 2005-07-10T16:22:20Z 2020-02-15T06:59:52Z +7856 290 2 6816 4.99 2005-07-12T18:18:50Z 2020-02-15T06:59:52Z +7857 290 1 6952 4.99 2005-07-26T23:51:27Z 2020-02-15T06:59:52Z +7858 290 2 7265 2.99 2005-07-27T11:19:01Z 2020-02-15T06:59:52Z +7859 290 1 7650 1.99 2005-07-28T01:47:20Z 2020-02-15T06:59:52Z +7860 290 1 8639 4.99 2005-07-29T14:30:31Z 2020-02-15T06:59:52Z +7861 290 1 9000 7.99 2005-07-30T04:58:55Z 2020-02-15T06:59:52Z +7862 290 1 9413 0.99 2005-07-30T20:44:39Z 2020-02-15T06:59:52Z +7863 290 2 10096 3.99 2005-07-31T20:38:58Z 2020-02-15T06:59:52Z +7864 290 1 10194 1.99 2005-08-01T00:33:52Z 2020-02-15T06:59:52Z +7865 290 1 10901 2.99 2005-08-02T01:35:44Z 2020-02-15T06:59:52Z +7866 290 1 11596 6.99 2005-08-17T02:53:55Z 2020-02-15T06:59:52Z +7867 290 2 12193 3.99 2005-08-18T02:03:59Z 2020-02-15T06:59:52Z +7868 290 2 12778 4.99 2005-08-18T23:40:23Z 2020-02-15T06:59:52Z +7869 290 2 13190 1.99 2005-08-19T14:27:59Z 2020-02-15T06:59:52Z +7870 290 1 13367 2.99 2005-08-19T21:19:27Z 2020-02-15T06:59:52Z +7871 290 2 13687 2.99 2005-08-20T08:57:51Z 2020-02-15T06:59:52Z +7872 291 1 54 4.99 2005-05-25T07:23:25Z 2020-02-15T06:59:52Z +7873 291 2 747 4.99 2005-05-29T09:26:34Z 2020-02-15T06:59:52Z +7874 291 1 1012 2.99 2005-05-31T02:18:05Z 2020-02-15T06:59:52Z +7875 291 1 1191 2.99 2005-06-15T01:10:35Z 2020-02-15T06:59:52Z +7876 291 1 2300 2.99 2005-06-18T08:22:34Z 2020-02-15T06:59:52Z +7877 291 2 3042 2.99 2005-06-20T12:38:27Z 2020-02-15T06:59:52Z +7878 291 2 3512 4.99 2005-07-06T00:43:06Z 2020-02-15T06:59:52Z +7879 291 2 4862 3.99 2005-07-08T19:02:46Z 2020-02-15T06:59:52Z +7880 291 2 5754 2.99 2005-07-10T12:32:43Z 2020-02-15T06:59:52Z +7881 291 2 6516 4.99 2005-07-12T03:51:54Z 2020-02-15T06:59:52Z +7882 291 1 6796 2.99 2005-07-12T16:44:16Z 2020-02-15T06:59:52Z +7883 291 1 7561 5.99 2005-07-27T22:21:05Z 2020-02-15T06:59:52Z +7884 291 2 7564 0.99 2005-07-27T22:31:17Z 2020-02-15T06:59:52Z +7885 291 1 8690 0.99 2005-07-29T16:39:28Z 2020-02-15T06:59:52Z +7886 291 2 8697 4.99 2005-07-29T16:46:07Z 2020-02-15T06:59:52Z +7887 291 1 9165 5.99 2005-07-30T11:24:28Z 2020-02-15T06:59:52Z +7888 291 2 9201 5.99 2005-07-30T12:42:21Z 2020-02-15T06:59:52Z +7889 291 2 9919 7.99 2005-07-31T14:55:46Z 2020-02-15T06:59:52Z +7890 291 1 10463 4.99 2005-08-01T09:39:43Z 2020-02-15T06:59:52Z +7891 291 2 11145 0.99 2005-08-02T09:43:24Z 2020-02-15T06:59:52Z +7892 291 1 13665 5.99 2005-08-20T08:19:20Z 2020-02-15T06:59:52Z +7893 291 2 14241 4.99 2005-08-21T05:24:55Z 2020-02-15T06:59:52Z +7894 291 2 15663 3.99 2005-08-23T08:54:26Z 2020-02-15T06:59:52Z +7895 292 1 324 0.99 2005-05-27T01:00:04Z 2020-02-15T06:59:52Z +7896 292 1 1901 3.99 2005-06-17T04:35:19Z 2020-02-15T06:59:52Z +7897 292 2 2258 3.99 2005-06-18T05:30:36Z 2020-02-15T06:59:52Z +7898 292 1 2838 3.99 2005-06-19T22:06:06Z 2020-02-15T06:59:52Z +7899 292 2 3328 2.99 2005-06-21T09:08:44Z 2020-02-15T06:59:52Z +7900 292 2 3557 0.99 2005-07-06T02:48:39Z 2020-02-15T06:59:52Z +7901 292 1 4200 4.99 2005-07-07T11:15:11Z 2020-02-15T06:59:52Z +7902 292 2 5095 4.99 2005-07-09T06:08:22Z 2020-02-15T06:59:52Z +7903 292 2 5257 0.99 2005-07-09T13:56:43Z 2020-02-15T06:59:52Z +7904 292 1 5940 4.99 2005-07-10T22:31:01Z 2020-02-15T06:59:52Z +7905 292 1 6270 8.99 2005-07-11T15:59:10Z 2020-02-15T06:59:52Z +7906 292 1 6900 6.99 2005-07-12T21:45:25Z 2020-02-15T06:59:52Z +7907 292 2 7199 5.99 2005-07-27T08:53:23Z 2020-02-15T06:59:52Z +7908 292 1 7216 2.99 2005-07-27T09:27:45Z 2020-02-15T06:59:52Z +7909 292 1 7545 2.99 2005-07-27T21:48:03Z 2020-02-15T06:59:52Z +7910 292 1 7766 4.99 2005-07-28T06:41:57Z 2020-02-15T06:59:52Z +7911 292 1 8047 2.99 2005-07-28T16:49:43Z 2020-02-15T06:59:52Z +7912 292 2 8842 4.99 2005-07-29T23:03:40Z 2020-02-15T06:59:52Z +7913 292 1 8990 8.99 2005-07-30T04:41:42Z 2020-02-15T06:59:52Z +7914 292 1 9792 5.99 2005-07-31T10:43:41Z 2020-02-15T06:59:52Z +7915 292 2 9819 1.99 2005-07-31T11:39:13Z 2020-02-15T06:59:52Z +7916 292 1 11193 4.99 2005-08-02T11:31:33Z 2020-02-15T06:59:52Z +7917 292 1 12739 10.99 2005-08-18T22:15:18Z 2020-02-15T06:59:52Z +7918 292 1 13715 2.99 2005-08-20T09:43:06Z 2020-02-15T06:59:52Z +7919 292 1 14499 0.99 2005-08-21T14:11:19Z 2020-02-15T06:59:52Z +7920 292 2 14845 4.99 2005-08-22T02:12:44Z 2020-02-15T06:59:52Z +7921 292 1 15117 2.99 2005-08-22T12:38:20Z 2020-02-15T06:59:52Z +7922 293 2 445 0.99 2005-05-27T18:42:57Z 2020-02-15T06:59:52Z +7923 293 1 924 4.99 2005-05-30T12:10:59Z 2020-02-15T06:59:52Z +7924 293 2 1034 8.99 2005-05-31T04:53:40Z 2020-02-15T06:59:52Z +7925 293 1 1589 9.99 2005-06-16T04:58:03Z 2020-02-15T06:59:52Z +7926 293 1 1829 5.99 2005-06-16T22:14:21Z 2020-02-15T06:59:52Z +7927 293 2 1860 4.99 2005-06-17T01:17:12Z 2020-02-15T06:59:52Z +7928 293 1 2386 4.99 2005-06-18T15:22:51Z 2020-02-15T06:59:52Z +7929 293 2 3025 2.99 2005-06-20T11:46:48Z 2020-02-15T06:59:52Z +7930 293 1 3290 1.99 2005-06-21T06:45:34Z 2020-02-15T06:59:52Z +7931 293 2 3452 4.99 2005-06-21T21:11:27Z 2020-02-15T06:59:52Z +7932 293 1 3906 3.99 2005-07-06T19:35:55Z 2020-02-15T06:59:52Z +7933 293 2 4343 0.99 2005-07-07T18:48:54Z 2020-02-15T06:59:52Z +7934 293 2 4542 4.99 2005-07-08T04:06:30Z 2020-02-15T06:59:52Z +7935 293 2 4944 6.99 2005-07-08T22:44:28Z 2020-02-15T06:59:52Z +7936 293 2 5765 3.99 2005-07-10T13:03:02Z 2020-02-15T06:59:52Z +7937 293 1 6432 9.99 2005-07-12T00:09:41Z 2020-02-15T06:59:52Z +7938 293 2 7607 4.99 2005-07-28T00:05:53Z 2020-02-15T06:59:52Z +7939 293 1 8589 4.99 2005-07-29T12:28:17Z 2020-02-15T06:59:52Z +7940 293 1 8745 2.99 2005-07-29T19:03:05Z 2020-02-15T06:59:52Z +7941 293 2 9123 2.99 2005-07-30T09:39:15Z 2020-02-15T06:59:52Z +7942 293 2 11131 1.99 2005-08-02T09:10:04Z 2020-02-15T06:59:52Z +7943 293 1 11576 2.99 2005-08-17T01:53:20Z 2020-02-15T06:59:52Z +7944 293 2 13013 6.99 2005-08-19T07:55:51Z 2020-02-15T06:59:52Z +7945 293 1 13029 2.99 2005-08-19T08:28:04Z 2020-02-15T06:59:52Z +7946 293 2 13504 5.99 2005-08-20T02:01:48Z 2020-02-15T06:59:52Z +7947 293 1 13817 4.99 2005-08-20T13:15:30Z 2020-02-15T06:59:52Z +7948 293 1 14248 6.99 2005-08-21T05:35:57Z 2020-02-15T06:59:52Z +7949 293 1 15258 4.99 2005-08-22T18:22:44Z 2020-02-15T06:59:52Z +7950 293 1 15402 8.99 2005-08-22T23:17:41Z 2020-02-15T06:59:52Z +7951 293 1 15508 7.99 2005-08-23T02:49:04Z 2020-02-15T06:59:52Z +7952 293 2 15675 5.99 2005-08-23T09:18:52Z 2020-02-15T06:59:52Z +7953 294 1 595 1.99 2005-05-28T13:59:54Z 2020-02-15T06:59:52Z +7954 294 1 2900 2.99 2005-06-20T02:40:04Z 2020-02-15T06:59:52Z +7955 294 2 3330 2.99 2005-06-21T09:22:37Z 2020-02-15T06:59:52Z +7956 294 1 3681 4.99 2005-07-06T09:19:30Z 2020-02-15T06:59:52Z +7957 294 2 4019 4.99 2005-07-07T01:27:44Z 2020-02-15T06:59:52Z +7958 294 1 4786 7.99 2005-07-08T16:13:05Z 2020-02-15T06:59:52Z +7959 294 2 6185 5.99 2005-07-11T11:25:09Z 2020-02-15T06:59:52Z +7960 294 2 7415 6.99 2005-07-27T16:50:59Z 2020-02-15T06:59:52Z +7961 294 1 7765 4.99 2005-07-28T06:40:33Z 2020-02-15T06:59:52Z +7962 294 2 8843 4.99 2005-07-29T23:04:25Z 2020-02-15T06:59:52Z +7963 294 2 9194 2.99 2005-07-30T12:28:45Z 2020-02-15T06:59:52Z +7964 294 1 9522 2.99 2005-07-31T00:55:11Z 2020-02-15T06:59:52Z +7965 294 2 9607 0.99 2005-07-31T03:51:06Z 2020-02-15T06:59:52Z +7966 294 2 10186 0.99 2005-08-01T00:12:36Z 2020-02-15T06:59:52Z +7967 294 2 10220 4.99 2005-08-01T01:13:22Z 2020-02-15T06:59:52Z +7968 294 1 10551 6.99 2005-08-01T12:48:55Z 2020-02-15T06:59:52Z +7969 294 2 10600 2.99 2005-08-01T14:25:21Z 2020-02-15T06:59:52Z +7970 294 2 10642 4.99 2005-08-01T15:45:11Z 2020-02-15T06:59:52Z +7971 294 2 11071 2.99 2005-08-02T07:10:53Z 2020-02-15T06:59:52Z +7972 294 1 11390 2.99 2005-08-02T18:39:16Z 2020-02-15T06:59:52Z +7973 294 2 11875 4.99 2005-08-17T14:16:48Z 2020-02-15T06:59:52Z +7974 294 2 11981 2.99 2005-08-17T18:10:40Z 2020-02-15T06:59:52Z +7975 294 1 12278 5.99 2005-08-18T04:46:45Z 2020-02-15T06:59:52Z +7976 294 1 14474 2.99 2005-08-21T13:22:48Z 2020-02-15T06:59:52Z +7977 294 2 14630 7.99 2005-08-21T18:43:44Z 2020-02-15T06:59:52Z +7978 294 1 15839 5.99 2005-08-23T15:34:46Z 2020-02-15T06:59:52Z +7979 295 2 371 3.99 2005-05-27T08:08:18Z 2020-02-15T06:59:52Z +7980 295 1 1184 5.99 2005-06-15T00:49:36Z 2020-02-15T06:59:52Z +7981 295 1 1328 2.99 2005-06-15T11:23:27Z 2020-02-15T06:59:52Z +7982 295 2 1935 2.99 2005-06-17T07:14:15Z 2020-02-15T06:59:52Z +7983 295 1 2054 2.99 2005-06-17T15:26:37Z 2020-02-15T06:59:52Z +7984 295 1 2431 1.99 2005-06-18T17:53:03Z 2020-02-15T06:59:52Z +7985 295 1 2638 1.99 2005-06-19T09:23:30Z 2020-02-15T06:59:52Z +7986 295 1 2999 2.99 2005-06-20T09:30:34Z 2020-02-15T06:59:52Z +7987 295 1 3198 1.99 2005-06-21T00:08:54Z 2020-02-15T06:59:52Z +7988 295 2 3394 8.99 2005-06-21T15:17:39Z 2020-02-15T06:59:52Z +7989 295 2 3496 1.99 2005-07-05T23:59:15Z 2020-02-15T06:59:52Z +7990 295 1 3876 9.99 2005-07-06T18:21:13Z 2020-02-15T06:59:52Z +7991 295 1 4164 1.99 2005-07-07T09:20:11Z 2020-02-15T06:59:52Z +7992 295 1 4432 1.99 2005-07-07T22:40:02Z 2020-02-15T06:59:52Z +7993 295 1 5019 2.99 2005-07-09T02:04:32Z 2020-02-15T06:59:52Z +7994 295 2 5053 4.99 2005-07-09T03:59:46Z 2020-02-15T06:59:52Z +7995 295 2 5283 2.99 2005-07-09T15:07:17Z 2020-02-15T06:59:52Z +7996 295 2 5994 4.99 2005-07-11T01:14:10Z 2020-02-15T06:59:52Z +7997 295 1 6252 2.99 2005-07-11T15:06:29Z 2020-02-15T06:59:52Z +7998 295 2 6331 3.99 2005-07-11T19:17:21Z 2020-02-15T06:59:52Z +7999 295 2 8087 0.99 2005-07-28T18:21:16Z 2020-02-15T06:59:52Z +8000 295 1 8108 7.99 2005-07-28T19:07:38Z 2020-02-15T06:59:52Z +8001 295 1 8840 9.99 2005-07-29T22:55:38Z 2020-02-15T06:59:52Z +8002 295 2 8932 2.99 2005-07-30T02:31:26Z 2020-02-15T06:59:52Z +8003 295 1 9425 7.99 2005-07-30T21:11:21Z 2020-02-15T06:59:52Z +8004 295 2 9692 8.99 2005-07-31T07:11:04Z 2020-02-15T06:59:52Z +8005 295 2 9793 4.99 2005-07-31T10:45:11Z 2020-02-15T06:59:52Z +8006 295 2 10160 4.99 2005-07-31T23:07:40Z 2020-02-15T06:59:52Z +8007 295 2 10222 0.99 2005-08-01T01:17:42Z 2020-02-15T06:59:52Z +8008 295 1 10349 3.99 2005-08-01T05:27:13Z 2020-02-15T06:59:52Z +8009 295 2 11083 4.99 2005-08-02T07:32:01Z 2020-02-15T06:59:52Z +8010 295 2 11913 5.99 2005-08-17T15:53:17Z 2020-02-15T06:59:52Z +8011 295 2 12041 4.99 2005-08-17T20:34:33Z 2020-02-15T06:59:52Z +8012 295 1 12383 0.99 2005-08-18T08:36:03Z 2020-02-15T06:59:52Z +8013 295 1 14264 0.99 2005-08-21T06:18:22Z 2020-02-15T06:59:52Z +8014 295 1 14387 6.99 2005-08-21T10:10:01Z 2020-02-15T06:59:52Z +8015 295 1 14514 6.99 2005-08-21T14:51:52Z 2020-02-15T06:59:52Z +8016 295 2 15735 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8017 296 2 162 4.99 2005-05-26T02:02:05Z 2020-02-15T06:59:52Z +8018 296 1 511 5.99 2005-05-28T03:04:04Z 2020-02-15T06:59:52Z +8019 296 1 869 4.99 2005-05-30T04:22:06Z 2020-02-15T06:59:52Z +8020 296 2 956 2.99 2005-05-30T17:30:28Z 2020-02-15T06:59:52Z +8021 296 2 1659 4.99 2005-06-16T10:11:46Z 2020-02-15T06:59:52Z +8022 296 1 3034 0.99 2005-06-20T12:15:50Z 2020-02-15T06:59:52Z +8023 296 2 3119 0.99 2005-06-20T18:11:44Z 2020-02-15T06:59:52Z +8024 296 2 3486 7.99 2005-07-05T23:29:55Z 2020-02-15T06:59:52Z +8025 296 1 3810 2.99 2005-07-06T15:18:44Z 2020-02-15T06:59:52Z +8026 296 1 4480 4.99 2005-07-08T00:56:30Z 2020-02-15T06:59:52Z +8027 296 2 5090 0.99 2005-07-09T05:48:22Z 2020-02-15T06:59:52Z +8028 296 1 5589 4.99 2005-07-10T04:22:58Z 2020-02-15T06:59:52Z +8029 296 2 6016 4.99 2005-07-11T02:04:45Z 2020-02-15T06:59:52Z +8030 296 1 6398 5.99 2005-07-11T22:34:49Z 2020-02-15T06:59:52Z +8031 296 1 6967 6.99 2005-07-27T00:16:31Z 2020-02-15T06:59:52Z +8032 296 2 7568 4.99 2005-07-27T22:38:53Z 2020-02-15T06:59:52Z +8033 296 2 8171 0.99 2005-07-28T21:32:57Z 2020-02-15T06:59:52Z +8034 296 1 9249 5.99 2005-07-30T14:15:02Z 2020-02-15T06:59:52Z +8035 296 1 9304 2.99 2005-07-30T16:41:34Z 2020-02-15T06:59:52Z +8036 296 2 11571 4.99 2005-08-17T01:37:51Z 2020-02-15T06:59:52Z +8037 296 2 11825 4.99 2005-08-17T12:43:30Z 2020-02-15T06:59:52Z +8038 296 2 12689 3.99 2005-08-18T20:06:34Z 2020-02-15T06:59:52Z +8039 296 2 13471 2.99 2005-08-20T01:02:26Z 2020-02-15T06:59:52Z +8040 296 1 13702 2.99 2005-08-20T09:27:20Z 2020-02-15T06:59:52Z +8041 296 1 13819 4.99 2005-08-20T13:23:15Z 2020-02-15T06:59:52Z +8042 296 1 13991 1.99 2005-08-20T19:29:44Z 2020-02-15T06:59:52Z +8043 296 2 14571 7.99 2005-08-21T16:40:26Z 2020-02-15T06:59:52Z +8044 296 2 15023 2.99 2005-08-22T08:56:48Z 2020-02-15T06:59:52Z +8045 296 2 15866 7.99 2005-08-23T16:19:02Z 2020-02-15T06:59:52Z +8046 296 1 12009 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8047 297 2 143 0.99 2005-05-25T23:45:52Z 2020-02-15T06:59:52Z +8048 297 1 954 3.99 2005-05-30T16:57:29Z 2020-02-15T06:59:52Z +8049 297 1 1409 3.99 2005-06-15T16:58:12Z 2020-02-15T06:59:52Z +8050 297 1 2067 2.99 2005-06-17T16:11:08Z 2020-02-15T06:59:52Z +8051 297 1 2202 8.99 2005-06-18T02:09:24Z 2020-02-15T06:59:52Z +8052 297 1 2260 2.99 2005-06-18T05:38:36Z 2020-02-15T06:59:52Z +8053 297 2 2339 4.99 2005-06-18T11:29:22Z 2020-02-15T06:59:52Z +8054 297 1 3582 0.99 2005-07-06T04:10:35Z 2020-02-15T06:59:52Z +8055 297 2 4621 2.99 2005-07-08T08:02:18Z 2020-02-15T06:59:52Z +8056 297 1 4929 5.99 2005-07-08T22:06:18Z 2020-02-15T06:59:52Z +8057 297 1 5743 8.99 2005-07-10T11:57:38Z 2020-02-15T06:59:52Z +8058 297 2 6036 2.99 2005-07-11T03:02:28Z 2020-02-15T06:59:52Z +8059 297 1 6064 6.99 2005-07-11T04:23:18Z 2020-02-15T06:59:52Z +8060 297 1 6156 4.99 2005-07-11T09:45:48Z 2020-02-15T06:59:52Z +8061 297 1 6984 2.99 2005-07-27T00:56:30Z 2020-02-15T06:59:52Z +8062 297 2 7867 0.99 2005-07-28T10:08:54Z 2020-02-15T06:59:52Z +8063 297 1 7933 0.99 2005-07-28T12:27:27Z 2020-02-15T06:59:52Z +8064 297 2 9014 2.99 2005-07-30T05:19:27Z 2020-02-15T06:59:52Z +8065 297 2 9674 5.99 2005-07-31T06:36:53Z 2020-02-15T06:59:52Z +8066 297 1 10153 0.99 2005-07-31T22:30:10Z 2020-02-15T06:59:52Z +8067 297 2 10264 4.99 2005-08-01T03:03:12Z 2020-02-15T06:59:52Z +8068 297 2 11269 0.99 2005-08-02T14:11:41Z 2020-02-15T06:59:52Z +8069 297 2 11413 0.99 2005-08-02T19:35:19Z 2020-02-15T06:59:52Z +8070 297 2 11585 4.99 2005-08-17T02:14:36Z 2020-02-15T06:59:52Z +8071 297 1 11780 2.99 2005-08-17T10:34:24Z 2020-02-15T06:59:52Z +8072 297 1 11784 0.99 2005-08-17T10:48:05Z 2020-02-15T06:59:52Z +8073 297 1 12472 10.99 2005-08-18T11:58:48Z 2020-02-15T06:59:52Z +8074 297 1 13330 2.99 2005-08-19T19:59:21Z 2020-02-15T06:59:52Z +8075 297 2 13721 4.99 2005-08-20T10:02:59Z 2020-02-15T06:59:52Z +8076 297 1 13888 1.99 2005-08-20T15:39:42Z 2020-02-15T06:59:52Z +8077 297 1 14403 5.99 2005-08-21T10:40:34Z 2020-02-15T06:59:52Z +8078 297 2 15582 2.99 2005-08-23T05:45:44Z 2020-02-15T06:59:52Z +8079 297 1 15711 4.99 2005-08-23T10:43:00Z 2020-02-15T06:59:52Z +8080 298 1 383 3.99 2005-05-27T10:12:20Z 2020-02-15T06:59:52Z +8081 298 2 1454 4.99 2005-06-15T19:49:41Z 2020-02-15T06:59:52Z +8082 298 2 2385 3.99 2005-06-18T15:22:40Z 2020-02-15T06:59:52Z +8083 298 2 3095 4.99 2005-06-20T16:16:53Z 2020-02-15T06:59:52Z +8084 298 2 3400 4.99 2005-06-21T15:50:30Z 2020-02-15T06:59:52Z +8085 298 2 3479 0.99 2005-07-05T23:08:53Z 2020-02-15T06:59:52Z +8086 298 1 3728 2.99 2005-07-06T11:29:00Z 2020-02-15T06:59:52Z +8087 298 2 4291 2.99 2005-07-07T15:47:47Z 2020-02-15T06:59:52Z +8088 298 1 4936 3.99 2005-07-08T22:24:50Z 2020-02-15T06:59:52Z +8089 298 2 5166 2.99 2005-07-09T09:15:48Z 2020-02-15T06:59:52Z +8090 298 1 5247 2.99 2005-07-09T13:26:28Z 2020-02-15T06:59:52Z +8091 298 2 6802 0.99 2005-07-12T17:14:17Z 2020-02-15T06:59:52Z +8092 298 2 7802 0.99 2005-07-28T07:51:57Z 2020-02-15T06:59:52Z +8093 298 1 7869 7.99 2005-07-28T10:13:15Z 2020-02-15T06:59:52Z +8094 298 2 8737 5.99 2005-07-29T18:32:13Z 2020-02-15T06:59:52Z +8095 298 2 10248 6.99 2005-08-01T02:35:28Z 2020-02-15T06:59:52Z +8096 298 1 11070 0.99 2005-08-02T07:10:39Z 2020-02-15T06:59:52Z +8097 298 2 11288 6.99 2005-08-02T14:54:08Z 2020-02-15T06:59:52Z +8098 298 2 12076 0.99 2005-08-17T21:58:19Z 2020-02-15T06:59:52Z +8099 298 1 12765 8.99 2005-08-18T23:21:50Z 2020-02-15T06:59:52Z +8100 298 1 13172 0.99 2005-08-19T13:49:07Z 2020-02-15T06:59:52Z +8101 298 1 13244 4.99 2005-08-19T16:43:04Z 2020-02-15T06:59:52Z +8102 298 2 14473 0.99 2005-08-21T13:19:03Z 2020-02-15T06:59:52Z +8103 298 1 15245 3.99 2005-08-22T17:49:35Z 2020-02-15T06:59:52Z +8104 298 2 15262 4.99 2005-08-22T18:25:21Z 2020-02-15T06:59:52Z +8105 298 1 15643 4.99 2005-08-23T08:13:26Z 2020-02-15T06:59:52Z +8106 299 1 332 5.99 2005-05-27T02:27:10Z 2020-02-15T06:59:52Z +8107 299 2 606 8.99 2005-05-28T14:48:39Z 2020-02-15T06:59:52Z +8108 299 1 1650 8.99 2005-06-16T09:23:20Z 2020-02-15T06:59:52Z +8109 299 2 2664 4.99 2005-06-19T11:11:23Z 2020-02-15T06:59:52Z +8110 299 1 2774 2.99 2005-06-19T18:05:11Z 2020-02-15T06:59:52Z +8111 299 2 2791 4.99 2005-06-19T18:51:27Z 2020-02-15T06:59:52Z +8112 299 1 3074 0.99 2005-06-20T14:41:41Z 2020-02-15T06:59:52Z +8113 299 2 3223 2.99 2005-06-21T02:06:45Z 2020-02-15T06:59:52Z +8114 299 1 3288 5.99 2005-06-21T06:36:59Z 2020-02-15T06:59:52Z +8115 299 2 3497 0.99 2005-07-06T00:00:03Z 2020-02-15T06:59:52Z +8116 299 2 4153 5.99 2005-07-07T08:53:08Z 2020-02-15T06:59:52Z +8117 299 1 4350 2.99 2005-07-07T19:02:41Z 2020-02-15T06:59:52Z +8118 299 2 5033 1.99 2005-07-09T02:42:01Z 2020-02-15T06:59:52Z +8119 299 1 5642 2.99 2005-07-10T06:46:08Z 2020-02-15T06:59:52Z +8120 299 2 6732 0.99 2005-07-12T13:58:51Z 2020-02-15T06:59:52Z +8121 299 1 6853 7.99 2005-07-12T19:38:11Z 2020-02-15T06:59:52Z +8122 299 1 7264 4.99 2005-07-27T11:18:58Z 2020-02-15T06:59:52Z +8123 299 1 7746 2.99 2005-07-28T05:48:56Z 2020-02-15T06:59:52Z +8124 299 2 7862 9.99 2005-07-28T10:02:25Z 2020-02-15T06:59:52Z +8125 299 1 9520 2.99 2005-07-31T00:50:54Z 2020-02-15T06:59:52Z +8126 299 1 10201 0.99 2005-08-01T00:42:18Z 2020-02-15T06:59:52Z +8127 299 2 10440 2.99 2005-08-01T08:54:32Z 2020-02-15T06:59:52Z +8128 299 1 11629 6.99 2005-08-17T04:27:24Z 2020-02-15T06:59:52Z +8129 299 1 11746 5.99 2005-08-17T09:03:24Z 2020-02-15T06:59:52Z +8130 299 1 11998 0.99 2005-08-17T18:46:21Z 2020-02-15T06:59:52Z +8131 299 1 13069 4.99 2005-08-19T09:55:20Z 2020-02-15T06:59:52Z +8132 299 2 14208 0.99 2005-08-21T04:09:18Z 2020-02-15T06:59:52Z +8133 299 1 14548 3.99 2005-08-21T15:53:52Z 2020-02-15T06:59:52Z +8134 299 2 14889 4.99 2005-08-22T04:10:10Z 2020-02-15T06:59:52Z +8135 299 2 14898 6.99 2005-08-22T04:26:34Z 2020-02-15T06:59:52Z +8136 300 2 457 0.99 2005-05-27T19:52:29Z 2020-02-15T06:59:52Z +8137 300 1 780 3.99 2005-05-29T14:18:32Z 2020-02-15T06:59:52Z +8138 300 1 1111 4.99 2005-05-31T15:24:19Z 2020-02-15T06:59:52Z +8139 300 2 1381 0.99 2005-06-15T15:17:21Z 2020-02-15T06:59:52Z +8140 300 1 3177 2.99 2005-06-20T22:32:44Z 2020-02-15T06:59:52Z +8141 300 1 3775 0.99 2005-07-06T13:27:33Z 2020-02-15T06:59:52Z +8142 300 1 4030 0.99 2005-07-07T02:25:42Z 2020-02-15T06:59:52Z +8143 300 2 5562 2.99 2005-07-10T03:17:42Z 2020-02-15T06:59:52Z +8144 300 1 5705 10.99 2005-07-10T10:09:17Z 2020-02-15T06:59:52Z +8145 300 2 6111 4.99 2005-07-11T07:26:57Z 2020-02-15T06:59:52Z +8146 300 1 6822 5.99 2005-07-12T18:23:39Z 2020-02-15T06:59:52Z +8147 300 1 6998 4.99 2005-07-27T01:16:29Z 2020-02-15T06:59:52Z +8148 300 1 7815 4.99 2005-07-28T08:14:11Z 2020-02-15T06:59:52Z +8149 300 1 8117 6.99 2005-07-28T19:20:16Z 2020-02-15T06:59:52Z +8150 300 1 8210 6.99 2005-07-28T23:31:05Z 2020-02-15T06:59:52Z +8151 300 1 8283 3.99 2005-07-29T01:52:22Z 2020-02-15T06:59:52Z +8152 300 1 9078 0.99 2005-07-30T08:01:00Z 2020-02-15T06:59:52Z +8153 300 2 9127 2.99 2005-07-30T09:46:36Z 2020-02-15T06:59:52Z +8154 300 2 9791 0.99 2005-07-31T10:35:22Z 2020-02-15T06:59:52Z +8155 300 1 10977 4.99 2005-08-02T04:12:17Z 2020-02-15T06:59:52Z +8156 300 2 12484 2.99 2005-08-18T12:39:37Z 2020-02-15T06:59:52Z +8157 300 2 12644 5.99 2005-08-18T18:22:27Z 2020-02-15T06:59:52Z +8158 300 2 13257 3.99 2005-08-19T17:01:20Z 2020-02-15T06:59:52Z +8159 300 1 13296 0.99 2005-08-19T18:43:53Z 2020-02-15T06:59:52Z +8160 300 2 13499 6.99 2005-08-20T01:52:30Z 2020-02-15T06:59:52Z +8161 300 1 13717 5.99 2005-08-20T09:50:52Z 2020-02-15T06:59:52Z +8162 300 1 14674 7.99 2005-08-21T20:01:34Z 2020-02-15T06:59:52Z +8163 300 1 14709 9.99 2005-08-21T21:07:59Z 2020-02-15T06:59:52Z +8164 300 2 15051 2.99 2005-08-22T10:08:50Z 2020-02-15T06:59:52Z +8165 300 2 15811 5.99 2005-08-23T14:43:46Z 2020-02-15T06:59:52Z +8166 300 1 15695 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8167 301 2 27 4.99 2005-05-25T03:41:50Z 2020-02-15T06:59:52Z +8168 301 2 227 5.99 2005-05-26T10:51:46Z 2020-02-15T06:59:52Z +8169 301 1 955 0.99 2005-05-30T16:59:03Z 2020-02-15T06:59:52Z +8170 301 1 1853 0.99 2005-06-17T00:39:54Z 2020-02-15T06:59:52Z +8171 301 1 2611 4.99 2005-06-19T07:18:17Z 2020-02-15T06:59:52Z +8172 301 2 2925 2.99 2005-06-20T04:23:49Z 2020-02-15T06:59:52Z +8173 301 2 4316 4.99 2005-07-07T17:44:22Z 2020-02-15T06:59:52Z +8174 301 2 4834 3.99 2005-07-08T18:07:45Z 2020-02-15T06:59:52Z +8175 301 1 5119 6.99 2005-07-09T07:14:18Z 2020-02-15T06:59:52Z +8176 301 2 5511 4.99 2005-07-10T01:00:00Z 2020-02-15T06:59:52Z +8177 301 2 5730 2.99 2005-07-10T11:28:32Z 2020-02-15T06:59:52Z +8178 301 2 5807 2.99 2005-07-10T15:16:30Z 2020-02-15T06:59:52Z +8179 301 2 6833 6.99 2005-07-12T18:53:34Z 2020-02-15T06:59:52Z +8180 301 2 7318 4.99 2005-07-27T13:25:31Z 2020-02-15T06:59:52Z +8181 301 2 7818 4.99 2005-07-28T08:25:00Z 2020-02-15T06:59:52Z +8182 301 2 9435 4.99 2005-07-30T21:31:02Z 2020-02-15T06:59:52Z +8183 301 1 10883 0.99 2005-08-02T00:47:19Z 2020-02-15T06:59:52Z +8184 301 2 13183 5.99 2005-08-19T14:09:26Z 2020-02-15T06:59:52Z +8185 301 2 13633 2.99 2005-08-20T07:13:47Z 2020-02-15T06:59:52Z +8186 301 1 15201 10.99 2005-08-22T16:24:42Z 2020-02-15T06:59:52Z +8187 301 1 15268 1.99 2005-08-22T18:39:11Z 2020-02-15T06:59:52Z +8188 302 2 38 4.99 2005-05-25T04:47:44Z 2020-02-15T06:59:52Z +8189 302 2 92 5.99 2005-05-25T15:38:46Z 2020-02-15T06:59:52Z +8190 302 1 1231 2.99 2005-06-15T04:04:41Z 2020-02-15T06:59:52Z +8191 302 2 4676 4.99 2005-07-08T10:26:02Z 2020-02-15T06:59:52Z +8192 302 2 5498 0.99 2005-07-10T00:27:21Z 2020-02-15T06:59:52Z +8193 302 2 5682 2.99 2005-07-10T08:51:39Z 2020-02-15T06:59:52Z +8194 302 2 5709 0.99 2005-07-10T10:31:52Z 2020-02-15T06:59:52Z +8195 302 2 5821 4.99 2005-07-10T16:07:16Z 2020-02-15T06:59:52Z +8196 302 2 6623 7.99 2005-07-12T09:05:34Z 2020-02-15T06:59:52Z +8197 302 1 7183 0.99 2005-07-27T08:18:38Z 2020-02-15T06:59:52Z +8198 302 1 7411 6.99 2005-07-27T16:42:30Z 2020-02-15T06:59:52Z +8199 302 1 8363 6.99 2005-07-29T05:10:08Z 2020-02-15T06:59:52Z +8200 302 2 8646 0.99 2005-07-29T14:48:48Z 2020-02-15T06:59:52Z +8201 302 1 8795 2.99 2005-07-29T21:04:14Z 2020-02-15T06:59:52Z +8202 302 1 9146 7.99 2005-07-30T10:32:08Z 2020-02-15T06:59:52Z +8203 302 2 9358 2.99 2005-07-30T18:37:24Z 2020-02-15T06:59:52Z +8204 302 1 9374 8.99 2005-07-30T19:10:03Z 2020-02-15T06:59:52Z +8205 302 2 9581 5.99 2005-07-31T03:03:07Z 2020-02-15T06:59:52Z +8206 302 2 10329 0.99 2005-08-01T04:56:13Z 2020-02-15T06:59:52Z +8207 302 1 12126 7.99 2005-08-17T23:25:21Z 2020-02-15T06:59:52Z +8208 302 2 12516 4.99 2005-08-18T13:39:53Z 2020-02-15T06:59:52Z +8209 302 1 12903 2.99 2005-08-19T04:09:38Z 2020-02-15T06:59:52Z +8210 302 1 13916 2.99 2005-08-20T16:43:02Z 2020-02-15T06:59:52Z +8211 302 1 14120 4.99 2005-08-21T01:25:00Z 2020-02-15T06:59:52Z +8212 302 2 14247 3.99 2005-08-21T05:35:17Z 2020-02-15T06:59:52Z +8213 302 2 15578 2.99 2005-08-23T05:37:13Z 2020-02-15T06:59:52Z +8214 302 1 15622 5.99 2005-08-23T07:22:02Z 2020-02-15T06:59:52Z +8215 302 2 15734 0.99 2005-08-23T11:40:08Z 2020-02-15T06:59:52Z +8216 302 2 15987 6.99 2005-08-23T20:22:17Z 2020-02-15T06:59:52Z +8217 303 1 265 0.99 2005-05-26T16:07:38Z 2020-02-15T06:59:52Z +8218 303 1 871 2.99 2005-05-30T05:01:30Z 2020-02-15T06:59:52Z +8219 303 2 1050 4.99 2005-05-31T07:01:27Z 2020-02-15T06:59:52Z +8220 303 2 1970 4.99 2005-06-17T09:23:16Z 2020-02-15T06:59:52Z +8221 303 1 2223 8.99 2005-06-18T03:27:03Z 2020-02-15T06:59:52Z +8222 303 1 3077 3.99 2005-06-20T15:05:18Z 2020-02-15T06:59:52Z +8223 303 1 3107 2.99 2005-06-20T17:26:05Z 2020-02-15T06:59:52Z +8224 303 1 5140 4.99 2005-07-09T08:04:59Z 2020-02-15T06:59:52Z +8225 303 1 6205 4.99 2005-07-11T12:31:24Z 2020-02-15T06:59:52Z +8226 303 2 6219 4.99 2005-07-11T13:18:37Z 2020-02-15T06:59:52Z +8227 303 1 6464 4.99 2005-07-12T01:16:40Z 2020-02-15T06:59:52Z +8228 303 1 7023 4.99 2005-07-27T02:32:44Z 2020-02-15T06:59:52Z +8229 303 2 7502 2.99 2005-07-27T20:19:08Z 2020-02-15T06:59:52Z +8230 303 1 8409 0.99 2005-07-29T06:41:22Z 2020-02-15T06:59:52Z +8231 303 2 8734 6.99 2005-07-29T18:28:15Z 2020-02-15T06:59:52Z +8232 303 2 8764 0.99 2005-07-29T19:39:04Z 2020-02-15T06:59:52Z +8233 303 2 10209 2.99 2005-08-01T00:56:47Z 2020-02-15T06:59:52Z +8234 303 1 11253 4.99 2005-08-02T13:42:44Z 2020-02-15T06:59:52Z +8235 303 2 11673 2.99 2005-08-17T05:54:15Z 2020-02-15T06:59:52Z +8236 303 2 11993 2.99 2005-08-17T18:27:49Z 2020-02-15T06:59:52Z +8237 303 2 12117 0.99 2005-08-17T23:11:12Z 2020-02-15T06:59:52Z +8238 303 1 12365 0.99 2005-08-18T07:55:09Z 2020-02-15T06:59:52Z +8239 303 2 12473 2.99 2005-08-18T11:59:44Z 2020-02-15T06:59:52Z +8240 303 1 14750 5.99 2005-08-21T23:09:32Z 2020-02-15T06:59:52Z +8241 303 2 14795 4.99 2005-08-22T00:40:22Z 2020-02-15T06:59:52Z +8242 303 1 15511 3.99 2005-08-23T02:55:42Z 2020-02-15T06:59:52Z +8243 304 1 135 10.99 2005-05-25T21:58:58Z 2020-02-15T06:59:52Z +8244 304 1 415 0.99 2005-05-27T14:51:45Z 2020-02-15T06:59:52Z +8245 304 2 937 2.99 2005-05-30T14:47:31Z 2020-02-15T06:59:52Z +8246 304 1 1414 6.99 2005-06-15T17:26:32Z 2020-02-15T06:59:52Z +8247 304 2 1525 4.99 2005-06-16T00:26:07Z 2020-02-15T06:59:52Z +8248 304 1 2039 3.99 2005-06-17T14:03:43Z 2020-02-15T06:59:52Z +8249 304 2 2902 4.99 2005-06-20T02:45:35Z 2020-02-15T06:59:52Z +8250 304 1 4466 6.99 2005-07-08T00:12:53Z 2020-02-15T06:59:52Z +8251 304 2 4812 8.99 2005-07-08T17:07:11Z 2020-02-15T06:59:52Z +8252 304 1 5411 2.99 2005-07-09T20:23:38Z 2020-02-15T06:59:52Z +8253 304 1 5712 4.99 2005-07-10T10:40:32Z 2020-02-15T06:59:52Z +8254 304 2 5749 3.99 2005-07-10T12:20:36Z 2020-02-15T06:59:52Z +8255 304 2 5795 0.99 2005-07-10T14:36:29Z 2020-02-15T06:59:52Z +8256 304 2 6107 0.99 2005-07-11T07:07:09Z 2020-02-15T06:59:52Z +8257 304 1 6737 4.99 2005-07-12T14:16:52Z 2020-02-15T06:59:52Z +8258 304 2 7551 4.99 2005-07-27T21:59:15Z 2020-02-15T06:59:52Z +8259 304 2 8055 4.99 2005-07-28T17:02:32Z 2020-02-15T06:59:52Z +8260 304 1 9930 0.99 2005-07-31T15:18:03Z 2020-02-15T06:59:52Z +8261 304 1 9992 6.99 2005-07-31T17:29:48Z 2020-02-15T06:59:52Z +8262 304 1 10631 0.99 2005-08-01T15:35:14Z 2020-02-15T06:59:52Z +8263 304 2 11983 4.99 2005-08-17T18:13:55Z 2020-02-15T06:59:52Z +8264 304 1 12540 5.99 2005-08-18T14:17:30Z 2020-02-15T06:59:52Z +8265 304 2 13911 3.99 2005-08-20T16:31:33Z 2020-02-15T06:59:52Z +8266 304 1 14023 0.99 2005-08-20T21:10:32Z 2020-02-15T06:59:52Z +8267 304 1 14899 4.99 2005-08-22T04:26:38Z 2020-02-15T06:59:52Z +8268 304 1 14945 4.99 2005-08-22T06:05:38Z 2020-02-15T06:59:52Z +8269 305 2 69 2.99 2005-05-25T10:10:14Z 2020-02-15T06:59:52Z +8270 305 1 1574 4.99 2005-06-16T03:39:56Z 2020-02-15T06:59:52Z +8271 305 2 1884 0.99 2005-06-17T03:19:20Z 2020-02-15T06:59:52Z +8272 305 1 2166 11.99 2005-06-17T23:51:21Z 2020-02-15T06:59:52Z +8273 305 1 3387 0.99 2005-06-21T14:21:49Z 2020-02-15T06:59:52Z +8274 305 2 4260 4.99 2005-07-07T14:22:45Z 2020-02-15T06:59:52Z +8275 305 1 4638 2.99 2005-07-08T08:57:20Z 2020-02-15T06:59:52Z +8276 305 2 5041 0.99 2005-07-09T03:18:51Z 2020-02-15T06:59:52Z +8277 305 1 5052 2.99 2005-07-09T03:59:43Z 2020-02-15T06:59:52Z +8278 305 2 5582 4.99 2005-07-10T04:08:25Z 2020-02-15T06:59:52Z +8279 305 1 5745 8.99 2005-07-10T12:10:11Z 2020-02-15T06:59:52Z +8280 305 1 6134 7.99 2005-07-11T08:28:19Z 2020-02-15T06:59:52Z +8281 305 2 6619 0.99 2005-07-12T08:50:48Z 2020-02-15T06:59:52Z +8282 305 2 8865 4.99 2005-07-29T23:54:54Z 2020-02-15T06:59:52Z +8283 305 2 9119 4.99 2005-07-30T09:25:56Z 2020-02-15T06:59:52Z +8284 305 2 10426 4.99 2005-08-01T08:26:08Z 2020-02-15T06:59:52Z +8285 305 2 10929 4.99 2005-08-02T02:35:44Z 2020-02-15T06:59:52Z +8286 305 1 10981 2.99 2005-08-02T04:17:53Z 2020-02-15T06:59:52Z +8287 305 2 11035 5.99 2005-08-02T05:55:39Z 2020-02-15T06:59:52Z +8288 305 2 11809 3.99 2005-08-17T11:51:39Z 2020-02-15T06:59:52Z +8289 305 2 12592 3.99 2005-08-18T16:17:50Z 2020-02-15T06:59:52Z +8290 305 2 12846 0.99 2005-08-19T02:03:26Z 2020-02-15T06:59:52Z +8291 305 1 13782 4.99 2005-08-20T12:09:26Z 2020-02-15T06:59:52Z +8292 305 2 15417 2.99 2005-08-22T23:54:04Z 2020-02-15T06:59:52Z +8293 305 1 15612 6.99 2005-08-23T06:59:07Z 2020-02-15T06:59:52Z +8294 306 2 375 3.99 2005-05-27T08:49:21Z 2020-02-15T06:59:52Z +8295 306 2 672 6.99 2005-05-28T22:05:29Z 2020-02-15T06:59:52Z +8296 306 2 1172 0.99 2005-06-14T23:54:34Z 2020-02-15T06:59:52Z +8297 306 2 2836 6.99 2005-06-19T21:58:21Z 2020-02-15T06:59:52Z +8298 306 1 3814 6.99 2005-07-06T15:23:56Z 2020-02-15T06:59:52Z +8299 306 2 4484 5.99 2005-07-08T01:05:57Z 2020-02-15T06:59:52Z +8300 306 2 4596 1.99 2005-07-08T06:41:25Z 2020-02-15T06:59:52Z +8301 306 2 5581 2.99 2005-07-10T04:06:06Z 2020-02-15T06:59:52Z +8302 306 2 6868 2.99 2005-07-12T20:10:17Z 2020-02-15T06:59:52Z +8303 306 1 6953 4.99 2005-07-26T23:52:47Z 2020-02-15T06:59:52Z +8304 306 1 7225 6.99 2005-07-27T09:47:12Z 2020-02-15T06:59:52Z +8305 306 1 7232 4.99 2005-07-27T10:04:19Z 2020-02-15T06:59:52Z +8306 306 2 7701 2.99 2005-07-28T03:54:28Z 2020-02-15T06:59:52Z +8307 306 2 8620 0.99 2005-07-29T13:51:20Z 2020-02-15T06:59:52Z +8308 306 1 8702 0.99 2005-07-29T17:04:37Z 2020-02-15T06:59:52Z +8309 306 2 9242 4.99 2005-07-30T14:03:58Z 2020-02-15T06:59:52Z +8310 306 2 9395 4.99 2005-07-30T20:07:06Z 2020-02-15T06:59:52Z +8311 306 1 9774 0.99 2005-07-31T09:57:51Z 2020-02-15T06:59:52Z +8312 306 1 10202 6.99 2005-08-01T00:43:18Z 2020-02-15T06:59:52Z +8313 306 2 10893 5.99 2005-08-02T01:12:13Z 2020-02-15T06:59:52Z +8314 306 2 11142 4.99 2005-08-02T09:30:11Z 2020-02-15T06:59:52Z +8315 306 1 11440 0.99 2005-08-02T20:24:02Z 2020-02-15T06:59:52Z +8316 306 2 11674 6.99 2005-08-17T05:56:27Z 2020-02-15T06:59:52Z +8317 306 2 11776 0.99 2005-08-17T10:27:19Z 2020-02-15T06:59:52Z +8318 306 1 12225 7.99 2005-08-18T03:00:11Z 2020-02-15T06:59:52Z +8319 306 1 12989 2.99 2005-08-19T07:19:04Z 2020-02-15T06:59:52Z +8320 306 1 13686 4.99 2005-08-20T08:57:28Z 2020-02-15T06:59:52Z +8321 306 2 13725 5.99 2005-08-20T10:08:27Z 2020-02-15T06:59:52Z +8322 306 1 13873 0.99 2005-08-20T15:11:11Z 2020-02-15T06:59:52Z +8323 306 1 13996 4.99 2005-08-20T19:45:43Z 2020-02-15T06:59:52Z +8324 306 1 15457 2.99 2005-08-23T01:07:37Z 2020-02-15T06:59:52Z +8325 306 2 15868 7.99 2005-08-23T16:19:14Z 2020-02-15T06:59:52Z +8326 307 2 413 4.99 2005-05-27T14:45:37Z 2020-02-15T06:59:52Z +8327 307 1 535 4.99 2005-05-28T06:16:32Z 2020-02-15T06:59:52Z +8328 307 1 614 1.99 2005-05-28T15:33:28Z 2020-02-15T06:59:52Z +8329 307 1 970 6.99 2005-05-30T19:50:28Z 2020-02-15T06:59:52Z +8330 307 2 2152 2.99 2005-06-17T22:53:27Z 2020-02-15T06:59:52Z +8331 307 1 2167 0.99 2005-06-17T23:51:28Z 2020-02-15T06:59:52Z +8332 307 1 2787 4.99 2005-06-19T18:47:00Z 2020-02-15T06:59:52Z +8333 307 1 2881 2.99 2005-06-20T01:26:18Z 2020-02-15T06:59:52Z +8334 307 2 3057 5.99 2005-06-20T13:22:48Z 2020-02-15T06:59:52Z +8335 307 1 3209 4.99 2005-06-21T00:51:06Z 2020-02-15T06:59:52Z +8336 307 1 3962 6.99 2005-07-06T22:13:45Z 2020-02-15T06:59:52Z +8337 307 1 3985 4.99 2005-07-06T23:24:03Z 2020-02-15T06:59:52Z +8338 307 1 4522 2.99 2005-07-08T03:03:12Z 2020-02-15T06:59:52Z +8339 307 1 4868 4.99 2005-07-08T19:13:50Z 2020-02-15T06:59:52Z +8340 307 1 5871 3.99 2005-07-10T18:46:08Z 2020-02-15T06:59:52Z +8341 307 2 6125 6.99 2005-07-11T08:03:35Z 2020-02-15T06:59:52Z +8342 307 1 6256 0.99 2005-07-11T15:19:22Z 2020-02-15T06:59:52Z +8343 307 1 6991 10.99 2005-07-27T01:03:06Z 2020-02-15T06:59:52Z +8344 307 1 7536 2.99 2005-07-27T21:34:09Z 2020-02-15T06:59:52Z +8345 307 1 7760 3.99 2005-07-28T06:29:45Z 2020-02-15T06:59:52Z +8346 307 1 7929 0.99 2005-07-28T12:16:40Z 2020-02-15T06:59:52Z +8347 307 1 8647 6.99 2005-07-29T14:52:59Z 2020-02-15T06:59:52Z +8348 307 1 10135 4.99 2005-07-31T21:57:32Z 2020-02-15T06:59:52Z +8349 307 1 10374 0.99 2005-08-01T06:25:27Z 2020-02-15T06:59:52Z +8350 307 1 10745 2.99 2005-08-01T19:57:06Z 2020-02-15T06:59:52Z +8351 307 1 11491 7.99 2005-08-02T22:44:50Z 2020-02-15T06:59:52Z +8352 307 2 12391 4.99 2005-08-18T08:52:53Z 2020-02-15T06:59:52Z +8353 307 2 13365 6.99 2005-08-19T21:12:37Z 2020-02-15T06:59:52Z +8354 307 1 14231 0.99 2005-08-21T05:04:34Z 2020-02-15T06:59:52Z +8355 307 2 15515 4.99 2005-08-23T03:03:53Z 2020-02-15T06:59:52Z +8356 308 2 589 3.99 2005-05-28T12:27:50Z 2020-02-15T06:59:52Z +8357 308 1 2037 0.99 2005-06-17T13:54:20Z 2020-02-15T06:59:52Z +8358 308 1 2094 0.99 2005-06-17T18:18:56Z 2020-02-15T06:59:52Z +8359 308 2 2168 4.99 2005-06-17T23:53:24Z 2020-02-15T06:59:52Z +8360 308 1 2346 7.99 2005-06-18T12:08:16Z 2020-02-15T06:59:52Z +8361 308 2 2448 4.99 2005-06-18T19:13:45Z 2020-02-15T06:59:52Z +8362 308 1 4002 3.99 2005-07-07T00:08:18Z 2020-02-15T06:59:52Z +8363 308 1 4285 8.99 2005-07-07T15:34:35Z 2020-02-15T06:59:52Z +8364 308 1 5946 2.99 2005-07-10T22:57:29Z 2020-02-15T06:59:52Z +8365 308 2 8869 0.99 2005-07-30T00:06:32Z 2020-02-15T06:59:52Z +8366 308 1 9479 2.99 2005-07-30T23:22:09Z 2020-02-15T06:59:52Z +8367 308 1 9746 7.99 2005-07-31T09:16:48Z 2020-02-15T06:59:52Z +8368 308 1 10571 2.99 2005-08-01T13:25:30Z 2020-02-15T06:59:52Z +8369 308 2 10797 0.99 2005-08-01T22:02:51Z 2020-02-15T06:59:52Z +8370 308 1 10819 4.99 2005-08-01T22:52:57Z 2020-02-15T06:59:52Z +8371 308 1 11765 2.99 2005-08-17T09:55:28Z 2020-02-15T06:59:52Z +8372 308 1 11972 4.99 2005-08-17T17:55:46Z 2020-02-15T06:59:52Z +8373 308 2 12567 3.99 2005-08-18T15:14:36Z 2020-02-15T06:59:52Z +8374 308 1 12590 6.99 2005-08-18T16:11:35Z 2020-02-15T06:59:52Z +8375 308 2 12838 6.99 2005-08-19T01:51:50Z 2020-02-15T06:59:52Z +8376 308 1 13843 2.99 2005-08-20T14:30:01Z 2020-02-15T06:59:52Z +8377 308 2 14946 2.99 2005-08-22T06:07:10Z 2020-02-15T06:59:52Z +8378 308 1 15243 4.99 2005-08-22T17:48:28Z 2020-02-15T06:59:52Z +8379 308 2 15493 4.99 2005-08-23T02:20:53Z 2020-02-15T06:59:52Z +8380 308 2 15820 2.99 2005-08-23T15:03:13Z 2020-02-15T06:59:52Z +8381 309 2 218 6.99 2005-05-26T09:27:09Z 2020-02-15T06:59:52Z +8382 309 2 723 0.99 2005-05-29T05:34:44Z 2020-02-15T06:59:52Z +8383 309 1 1837 4.99 2005-06-16T23:16:15Z 2020-02-15T06:59:52Z +8384 309 2 2560 9.99 2005-06-19T03:12:42Z 2020-02-15T06:59:52Z +8385 309 2 2644 3.99 2005-06-19T09:42:30Z 2020-02-15T06:59:52Z +8386 309 2 2688 6.99 2005-06-19T12:50:56Z 2020-02-15T06:59:52Z +8387 309 2 3837 4.99 2005-07-06T16:27:43Z 2020-02-15T06:59:52Z +8388 309 2 3896 7.99 2005-07-06T19:09:15Z 2020-02-15T06:59:52Z +8389 309 2 4172 4.99 2005-07-07T09:49:09Z 2020-02-15T06:59:52Z +8390 309 1 4540 4.99 2005-07-08T04:03:28Z 2020-02-15T06:59:52Z +8391 309 2 5305 8.99 2005-07-09T15:55:36Z 2020-02-15T06:59:52Z +8392 309 1 5980 4.99 2005-07-11T00:18:21Z 2020-02-15T06:59:52Z +8393 309 2 6480 4.99 2005-07-12T01:49:29Z 2020-02-15T06:59:52Z +8394 309 2 7214 5.99 2005-07-27T09:23:33Z 2020-02-15T06:59:52Z +8395 309 2 7722 4.99 2005-07-28T04:44:58Z 2020-02-15T06:59:52Z +8396 309 1 7846 5.99 2005-07-28T09:21:18Z 2020-02-15T06:59:52Z +8397 309 1 8341 4.99 2005-07-29T04:42:01Z 2020-02-15T06:59:52Z +8398 309 1 8501 2.99 2005-07-29T09:12:51Z 2020-02-15T06:59:52Z +8399 309 1 8681 2.99 2005-07-29T16:12:01Z 2020-02-15T06:59:52Z +8400 309 1 8917 2.99 2005-07-30T01:47:02Z 2020-02-15T06:59:52Z +8401 309 2 9945 2.99 2005-07-31T15:47:51Z 2020-02-15T06:59:52Z +8402 309 1 9949 0.99 2005-07-31T15:50:10Z 2020-02-15T06:59:52Z +8403 309 1 10458 2.99 2005-08-01T09:19:48Z 2020-02-15T06:59:52Z +8404 309 1 10728 0.99 2005-08-01T19:15:09Z 2020-02-15T06:59:52Z +8405 309 1 10818 2.99 2005-08-01T22:52:45Z 2020-02-15T06:59:52Z +8406 309 2 11964 6.99 2005-08-17T17:37:03Z 2020-02-15T06:59:52Z +8407 309 2 13021 5.99 2005-08-19T08:08:04Z 2020-02-15T06:59:52Z +8408 309 2 13502 0.99 2005-08-20T01:58:15Z 2020-02-15T06:59:52Z +8409 309 2 13909 4.99 2005-08-20T16:26:36Z 2020-02-15T06:59:52Z +8410 309 2 14846 5.99 2005-08-22T02:13:48Z 2020-02-15T06:59:52Z +8411 309 2 15422 4.99 2005-08-22T23:58:09Z 2020-02-15T06:59:52Z +8412 310 2 104 0.99 2005-05-25T17:46:33Z 2020-02-15T06:59:52Z +8413 310 2 1162 4.99 2005-06-14T23:09:38Z 2020-02-15T06:59:52Z +8414 310 2 1333 2.99 2005-06-15T11:37:08Z 2020-02-15T06:59:52Z +8415 310 2 1918 3.99 2005-06-17T05:40:14Z 2020-02-15T06:59:52Z +8416 310 2 2088 6.99 2005-06-17T17:35:30Z 2020-02-15T06:59:52Z +8417 310 1 2480 5.99 2005-06-18T21:04:09Z 2020-02-15T06:59:52Z +8418 310 1 2618 2.99 2005-06-19T08:03:01Z 2020-02-15T06:59:52Z +8419 310 2 3830 10.99 2005-07-06T16:01:16Z 2020-02-15T06:59:52Z +8420 310 1 4072 0.99 2005-07-07T04:48:02Z 2020-02-15T06:59:52Z +8421 310 1 5621 5.99 2005-07-10T05:34:10Z 2020-02-15T06:59:52Z +8422 310 2 5836 0.99 2005-07-10T16:49:02Z 2020-02-15T06:59:52Z +8423 310 1 7648 5.99 2005-07-28T01:35:33Z 2020-02-15T06:59:52Z +8424 310 2 8637 5.99 2005-07-29T14:30:11Z 2020-02-15T06:59:52Z +8425 310 1 8981 7.99 2005-07-30T04:25:30Z 2020-02-15T06:59:52Z +8426 310 1 9536 2.99 2005-07-31T01:19:02Z 2020-02-15T06:59:52Z +8427 310 2 11137 2.99 2005-08-02T09:25:31Z 2020-02-15T06:59:52Z +8428 310 2 12500 4.99 2005-08-18T13:05:51Z 2020-02-15T06:59:52Z +8429 310 2 12710 7.99 2005-08-18T21:02:50Z 2020-02-15T06:59:52Z +8430 310 1 12929 4.99 2005-08-19T05:05:23Z 2020-02-15T06:59:52Z +8431 310 1 14972 5.99 2005-08-22T06:53:21Z 2020-02-15T06:59:52Z +8432 311 2 274 5.99 2005-05-26T16:48:51Z 2020-02-15T06:59:52Z +8433 311 2 544 6.99 2005-05-28T07:03:00Z 2020-02-15T06:59:52Z +8434 311 1 952 2.99 2005-05-30T16:28:07Z 2020-02-15T06:59:52Z +8435 311 2 990 3.99 2005-05-30T23:25:14Z 2020-02-15T06:59:52Z +8436 311 2 1128 6.99 2005-05-31T17:49:26Z 2020-02-15T06:59:52Z +8437 311 1 1622 4.99 2005-06-16T07:33:18Z 2020-02-15T06:59:52Z +8438 311 2 1955 0.99 2005-06-17T08:40:22Z 2020-02-15T06:59:52Z +8439 311 2 2967 6.99 2005-06-20T07:40:35Z 2020-02-15T06:59:52Z +8440 311 2 4836 3.99 2005-07-08T18:09:08Z 2020-02-15T06:59:52Z +8441 311 2 5224 5.99 2005-07-09T12:07:27Z 2020-02-15T06:59:52Z +8442 311 2 6419 4.99 2005-07-11T23:36:38Z 2020-02-15T06:59:52Z +8443 311 2 8167 6.99 2005-07-28T21:25:45Z 2020-02-15T06:59:52Z +8444 311 1 8473 2.99 2005-07-29T08:36:53Z 2020-02-15T06:59:52Z +8445 311 1 9503 6.99 2005-07-31T00:02:38Z 2020-02-15T06:59:52Z +8446 311 2 9882 8.99 2005-07-31T13:53:33Z 2020-02-15T06:59:52Z +8447 311 1 10134 4.99 2005-07-31T21:56:10Z 2020-02-15T06:59:52Z +8448 311 2 10448 4.99 2005-08-01T09:09:31Z 2020-02-15T06:59:52Z +8449 311 1 12997 2.99 2005-08-19T07:31:46Z 2020-02-15T06:59:52Z +8450 311 2 13310 0.99 2005-08-19T19:05:16Z 2020-02-15T06:59:52Z +8451 311 2 13423 1.99 2005-08-19T23:07:42Z 2020-02-15T06:59:52Z +8452 311 2 14517 4.99 2005-08-21T14:57:03Z 2020-02-15T06:59:52Z +8453 311 2 15826 9.99 2005-08-23T15:15:02Z 2020-02-15T06:59:52Z +8454 311 1 16020 8.99 2005-08-23T21:34:33Z 2020-02-15T06:59:52Z +8455 312 2 229 4.99 2005-05-26T11:19:20Z 2020-02-15T06:59:52Z +8456 312 1 530 0.99 2005-05-28T05:13:01Z 2020-02-15T06:59:52Z +8457 312 2 1049 4.99 2005-05-31T06:57:04Z 2020-02-15T06:59:52Z +8458 312 2 1079 6.99 2005-05-31T10:48:17Z 2020-02-15T06:59:52Z +8459 312 2 1419 0.99 2005-06-15T17:54:50Z 2020-02-15T06:59:52Z +8460 312 2 3457 3.99 2005-06-21T21:42:33Z 2020-02-15T06:59:52Z +8461 312 1 3766 2.99 2005-07-06T13:04:35Z 2020-02-15T06:59:52Z +8462 312 1 3792 1.99 2005-07-06T14:26:38Z 2020-02-15T06:59:52Z +8463 312 1 4647 3.99 2005-07-08T09:27:36Z 2020-02-15T06:59:52Z +8464 312 1 5031 5.99 2005-07-09T02:36:37Z 2020-02-15T06:59:52Z +8465 312 2 6751 2.99 2005-07-12T14:50:34Z 2020-02-15T06:59:52Z +8466 312 1 6866 2.99 2005-07-12T20:03:44Z 2020-02-15T06:59:52Z +8467 312 1 8137 4.99 2005-07-28T20:07:18Z 2020-02-15T06:59:52Z +8468 312 1 8412 6.99 2005-07-29T06:44:50Z 2020-02-15T06:59:52Z +8469 312 1 8721 4.99 2005-07-29T17:56:21Z 2020-02-15T06:59:52Z +8470 312 1 9016 6.99 2005-07-30T05:26:13Z 2020-02-15T06:59:52Z +8471 312 1 9154 3.99 2005-07-30T10:59:54Z 2020-02-15T06:59:52Z +8472 312 2 10858 2.99 2005-08-02T00:08:39Z 2020-02-15T06:59:52Z +8473 312 2 11248 0.99 2005-08-02T13:35:34Z 2020-02-15T06:59:52Z +8474 312 2 11879 5.99 2005-08-17T14:25:09Z 2020-02-15T06:59:52Z +8475 312 1 12186 2.99 2005-08-18T01:43:36Z 2020-02-15T06:59:52Z +8476 312 1 12945 0.99 2005-08-19T05:51:46Z 2020-02-15T06:59:52Z +8477 312 2 14362 2.99 2005-08-21T09:19:49Z 2020-02-15T06:59:52Z +8478 312 1 14504 3.99 2005-08-21T14:23:01Z 2020-02-15T06:59:52Z +8479 312 1 15100 4.99 2005-08-22T11:55:03Z 2020-02-15T06:59:52Z +8480 312 1 15882 6.99 2005-08-23T16:44:31Z 2020-02-15T06:59:52Z +8481 313 2 669 4.99 2005-05-28T22:03:25Z 2020-02-15T06:59:52Z +8482 313 2 712 2.99 2005-05-29T04:02:24Z 2020-02-15T06:59:52Z +8483 313 2 781 0.99 2005-05-29T14:23:58Z 2020-02-15T06:59:52Z +8484 313 2 843 0.99 2005-05-30T00:44:24Z 2020-02-15T06:59:52Z +8485 313 2 1312 2.99 2005-06-15T10:16:27Z 2020-02-15T06:59:52Z +8486 313 1 2617 7.99 2005-06-19T07:48:31Z 2020-02-15T06:59:52Z +8487 313 2 2711 4.99 2005-06-19T14:12:22Z 2020-02-15T06:59:52Z +8488 313 2 4552 2.99 2005-07-08T04:36:35Z 2020-02-15T06:59:52Z +8489 313 1 5255 5.99 2005-07-09T13:51:08Z 2020-02-15T06:59:52Z +8490 313 1 6384 2.99 2005-07-11T22:07:26Z 2020-02-15T06:59:52Z +8491 313 2 7294 0.99 2005-07-27T12:38:14Z 2020-02-15T06:59:52Z +8492 313 2 8381 4.99 2005-07-29T05:31:44Z 2020-02-15T06:59:52Z +8493 313 1 8970 3.99 2005-07-30T04:02:05Z 2020-02-15T06:59:52Z +8494 313 2 9836 2.99 2005-07-31T12:12:00Z 2020-02-15T06:59:52Z +8495 313 2 10237 5.99 2005-08-01T02:07:32Z 2020-02-15T06:59:52Z +8496 313 2 10933 7.99 2005-08-02T02:50:49Z 2020-02-15T06:59:52Z +8497 313 2 11854 2.99 2005-08-17T13:42:52Z 2020-02-15T06:59:52Z +8498 313 2 12011 2.99 2005-08-17T19:19:44Z 2020-02-15T06:59:52Z +8499 313 2 14250 2.99 2005-08-21T05:39:35Z 2020-02-15T06:59:52Z +8500 313 1 14325 4.99 2005-08-21T08:15:38Z 2020-02-15T06:59:52Z +8501 313 2 15081 2.99 2005-08-22T11:14:31Z 2020-02-15T06:59:52Z +8502 313 1 15340 0.99 2005-08-22T20:55:56Z 2020-02-15T06:59:52Z +8503 313 2 15569 6.99 2005-08-23T05:24:29Z 2020-02-15T06:59:52Z +8504 314 1 80 5.99 2005-05-25T12:12:07Z 2020-02-15T06:59:52Z +8505 314 1 440 4.99 2005-05-27T18:00:35Z 2020-02-15T06:59:52Z +8506 314 1 1598 3.99 2005-06-16T06:02:39Z 2020-02-15T06:59:52Z +8507 314 1 1624 2.99 2005-06-16T07:48:57Z 2020-02-15T06:59:52Z +8508 314 1 3517 0.99 2005-07-06T00:52:35Z 2020-02-15T06:59:52Z +8509 314 1 3656 2.99 2005-07-06T07:55:22Z 2020-02-15T06:59:52Z +8510 314 1 3808 0.99 2005-07-06T15:15:35Z 2020-02-15T06:59:52Z +8511 314 2 4386 0.99 2005-07-07T20:55:19Z 2020-02-15T06:59:52Z +8512 314 2 5241 4.99 2005-07-09T13:19:14Z 2020-02-15T06:59:52Z +8513 314 2 5856 0.99 2005-07-10T17:57:32Z 2020-02-15T06:59:52Z +8514 314 1 6192 5.99 2005-07-11T11:44:41Z 2020-02-15T06:59:52Z +8515 314 1 6666 2.99 2005-07-12T11:32:15Z 2020-02-15T06:59:52Z +8516 314 1 6763 3.99 2005-07-12T15:26:34Z 2020-02-15T06:59:52Z +8517 314 2 7004 4.99 2005-07-27T01:36:05Z 2020-02-15T06:59:52Z +8518 314 1 7276 2.99 2005-07-27T11:41:57Z 2020-02-15T06:59:52Z +8519 314 2 8022 6.99 2005-07-28T15:48:56Z 2020-02-15T06:59:52Z +8520 314 1 8073 3.99 2005-07-28T17:29:02Z 2020-02-15T06:59:52Z +8521 314 2 8105 0.99 2005-07-28T18:59:46Z 2020-02-15T06:59:52Z +8522 314 2 8328 6.99 2005-07-29T04:06:24Z 2020-02-15T06:59:52Z +8523 314 2 8644 4.99 2005-07-29T14:45:45Z 2020-02-15T06:59:52Z +8524 314 2 9191 3.99 2005-07-30T12:25:51Z 2020-02-15T06:59:52Z +8525 314 2 9318 6.99 2005-07-30T17:14:30Z 2020-02-15T06:59:52Z +8526 314 2 11908 3.99 2005-08-17T15:43:09Z 2020-02-15T06:59:52Z +8527 314 1 12434 0.99 2005-08-18T10:38:08Z 2020-02-15T06:59:52Z +8528 314 2 13120 3.99 2005-08-19T11:47:38Z 2020-02-15T06:59:52Z +8529 314 1 13265 2.99 2005-08-19T17:29:00Z 2020-02-15T06:59:52Z +8530 314 2 13553 3.99 2005-08-20T04:07:21Z 2020-02-15T06:59:52Z +8531 314 2 14145 4.99 2005-08-21T02:11:38Z 2020-02-15T06:59:52Z +8532 314 1 14409 4.99 2005-08-21T10:53:35Z 2020-02-15T06:59:52Z +8533 314 2 14682 4.99 2005-08-21T20:25:57Z 2020-02-15T06:59:52Z +8534 314 2 14815 4.99 2005-08-22T01:12:44Z 2020-02-15T06:59:52Z +8535 314 2 14873 5.99 2005-08-22T03:31:06Z 2020-02-15T06:59:52Z +8536 314 2 16021 3.99 2005-08-23T21:37:59Z 2020-02-15T06:59:52Z +8537 315 1 537 8.99 2005-05-28T06:20:55Z 2020-02-15T06:59:52Z +8538 315 1 551 4.99 2005-05-28T07:44:18Z 2020-02-15T06:59:52Z +8539 315 1 1701 2.99 2005-06-16T13:18:48Z 2020-02-15T06:59:52Z +8540 315 1 4021 2.99 2005-07-07T01:46:44Z 2020-02-15T06:59:52Z +8541 315 1 4992 4.99 2005-07-09T00:49:37Z 2020-02-15T06:59:52Z +8542 315 2 5126 6.99 2005-07-09T07:25:35Z 2020-02-15T06:59:52Z +8543 315 1 6661 4.99 2005-07-12T11:20:39Z 2020-02-15T06:59:52Z +8544 315 1 6894 4.99 2005-07-12T21:20:50Z 2020-02-15T06:59:52Z +8545 315 1 8416 5.99 2005-07-29T06:52:54Z 2020-02-15T06:59:52Z +8546 315 2 8677 6.99 2005-07-29T16:01:13Z 2020-02-15T06:59:52Z +8547 315 2 9735 9.99 2005-07-31T08:57:49Z 2020-02-15T06:59:52Z +8548 315 2 11254 0.99 2005-08-02T13:43:49Z 2020-02-15T06:59:52Z +8549 315 2 12155 2.99 2005-08-18T00:24:30Z 2020-02-15T06:59:52Z +8550 315 1 14106 2.99 2005-08-21T00:46:01Z 2020-02-15T06:59:52Z +8551 315 2 14162 2.99 2005-08-21T02:55:34Z 2020-02-15T06:59:52Z +8552 315 1 15504 6.99 2005-08-23T02:45:21Z 2020-02-15T06:59:52Z +8553 315 2 14426 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8554 316 1 16 4.99 2005-05-25T00:43:11Z 2020-02-15T06:59:52Z +8555 316 1 644 8.99 2005-05-28T18:59:12Z 2020-02-15T06:59:52Z +8556 316 1 1065 1.99 2005-05-31T08:54:56Z 2020-02-15T06:59:52Z +8557 316 1 1317 4.99 2005-06-15T10:30:19Z 2020-02-15T06:59:52Z +8558 316 2 1350 4.99 2005-06-15T12:50:25Z 2020-02-15T06:59:52Z +8559 316 1 2032 4.99 2005-06-17T13:24:07Z 2020-02-15T06:59:52Z +8560 316 2 2338 4.99 2005-06-18T11:24:54Z 2020-02-15T06:59:52Z +8561 316 2 2491 1.99 2005-06-18T22:01:31Z 2020-02-15T06:59:52Z +8562 316 1 2820 4.99 2005-06-19T20:20:33Z 2020-02-15T06:59:52Z +8563 316 2 3373 8.99 2005-06-21T13:35:32Z 2020-02-15T06:59:52Z +8564 316 1 4379 2.99 2005-07-07T20:32:30Z 2020-02-15T06:59:52Z +8565 316 2 5102 3.99 2005-07-09T06:25:48Z 2020-02-15T06:59:52Z +8566 316 2 5544 7.99 2005-07-10T02:48:07Z 2020-02-15T06:59:52Z +8567 316 1 5618 5.99 2005-07-10T05:28:58Z 2020-02-15T06:59:52Z +8568 316 2 6988 4.99 2005-07-27T01:00:08Z 2020-02-15T06:59:52Z +8569 316 2 7339 2.99 2005-07-27T14:17:48Z 2020-02-15T06:59:52Z +8570 316 2 7586 2.99 2005-07-27T23:19:29Z 2020-02-15T06:59:52Z +8571 316 1 7592 4.99 2005-07-27T23:26:04Z 2020-02-15T06:59:52Z +8572 316 1 7945 1.99 2005-07-28T12:53:58Z 2020-02-15T06:59:52Z +8573 316 1 8564 4.99 2005-07-29T11:33:00Z 2020-02-15T06:59:52Z +8574 316 1 9508 4.99 2005-07-31T00:22:39Z 2020-02-15T06:59:52Z +8575 316 2 9903 6.99 2005-07-31T14:31:44Z 2020-02-15T06:59:52Z +8576 316 1 10438 7.99 2005-08-01T08:53:04Z 2020-02-15T06:59:52Z +8577 316 1 12028 0.99 2005-08-17T20:03:47Z 2020-02-15T06:59:52Z +8578 316 2 12191 0.99 2005-08-18T01:57:11Z 2020-02-15T06:59:52Z +8579 316 2 12823 2.99 2005-08-19T01:15:47Z 2020-02-15T06:59:52Z +8580 316 2 13277 5.99 2005-08-19T17:57:35Z 2020-02-15T06:59:52Z +8581 316 1 14226 2.99 2005-08-21T04:55:37Z 2020-02-15T06:59:52Z +8582 316 2 15840 2.99 2005-08-23T15:34:49Z 2020-02-15T06:59:52Z +8583 317 1 107 6.99 2005-05-25T18:28:09Z 2020-02-15T06:59:52Z +8584 317 2 2287 6.99 2005-06-18T07:04:36Z 2020-02-15T06:59:52Z +8585 317 2 3029 2.99 2005-06-20T11:51:30Z 2020-02-15T06:59:52Z +8586 317 1 3251 0.99 2005-06-21T03:20:37Z 2020-02-15T06:59:52Z +8587 317 1 4138 0.99 2005-07-07T08:17:13Z 2020-02-15T06:59:52Z +8588 317 1 4177 8.99 2005-07-07T10:12:36Z 2020-02-15T06:59:52Z +8589 317 2 4700 0.99 2005-07-08T11:37:21Z 2020-02-15T06:59:52Z +8590 317 1 5548 0.99 2005-07-10T02:56:45Z 2020-02-15T06:59:52Z +8591 317 2 5942 7.99 2005-07-10T22:47:17Z 2020-02-15T06:59:52Z +8592 317 1 7309 2.99 2005-07-27T13:00:29Z 2020-02-15T06:59:52Z +8593 317 2 8062 2.99 2005-07-28T17:15:06Z 2020-02-15T06:59:52Z +8594 317 1 8327 2.99 2005-07-29T04:00:52Z 2020-02-15T06:59:52Z +8595 317 1 8458 4.99 2005-07-29T08:05:09Z 2020-02-15T06:59:52Z +8596 317 1 9110 2.99 2005-07-30T09:05:42Z 2020-02-15T06:59:52Z +8597 317 2 9513 4.99 2005-07-31T00:28:30Z 2020-02-15T06:59:52Z +8598 317 1 9770 8.99 2005-07-31T09:52:40Z 2020-02-15T06:59:52Z +8599 317 1 10364 2.99 2005-08-01T06:06:49Z 2020-02-15T06:59:52Z +8600 317 2 12111 2.99 2005-08-17T22:59:55Z 2020-02-15T06:59:52Z +8601 317 2 12138 7.99 2005-08-17T23:55:54Z 2020-02-15T06:59:52Z +8602 317 2 12301 2.99 2005-08-18T05:36:20Z 2020-02-15T06:59:52Z +8603 317 1 13388 4.99 2005-08-19T21:46:49Z 2020-02-15T06:59:52Z +8604 317 1 14032 5.99 2005-08-20T21:26:55Z 2020-02-15T06:59:52Z +8605 317 2 14385 0.99 2005-08-21T10:02:55Z 2020-02-15T06:59:52Z +8606 317 2 14669 2.99 2005-08-21T19:54:06Z 2020-02-15T06:59:52Z +8607 317 1 14791 4.99 2005-08-22T00:35:55Z 2020-02-15T06:59:52Z +8608 317 1 15204 2.99 2005-08-22T16:30:43Z 2020-02-15T06:59:52Z +8609 317 1 15280 4.99 2005-08-22T19:09:52Z 2020-02-15T06:59:52Z +8610 317 1 12574 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8611 318 1 224 9.99 2005-05-26T10:18:27Z 2020-02-15T06:59:52Z +8612 318 1 2634 2.99 2005-06-19T08:55:17Z 2020-02-15T06:59:52Z +8613 318 1 2643 2.99 2005-06-19T09:39:27Z 2020-02-15T06:59:52Z +8614 318 2 3337 0.99 2005-06-21T10:24:35Z 2020-02-15T06:59:52Z +8615 318 2 3376 7.99 2005-06-21T13:43:02Z 2020-02-15T06:59:52Z +8616 318 1 3732 4.99 2005-07-06T11:33:37Z 2020-02-15T06:59:52Z +8617 318 2 3974 2.99 2005-07-06T22:59:16Z 2020-02-15T06:59:52Z +8618 318 1 4356 8.99 2005-07-07T19:21:22Z 2020-02-15T06:59:52Z +8619 318 1 7649 0.99 2005-07-28T01:37:26Z 2020-02-15T06:59:52Z +8620 318 2 7853 0.99 2005-07-28T09:36:38Z 2020-02-15T06:59:52Z +8621 318 2 10023 5.99 2005-07-31T18:25:51Z 2020-02-15T06:59:52Z +8622 318 1 14276 2.99 2005-08-21T06:34:05Z 2020-02-15T06:59:52Z +8623 319 1 15 9.99 2005-05-25T00:39:22Z 2020-02-15T06:59:52Z +8624 319 1 149 3.99 2005-05-26T00:28:05Z 2020-02-15T06:59:52Z +8625 319 1 439 2.99 2005-05-27T17:54:48Z 2020-02-15T06:59:52Z +8626 319 1 1632 2.99 2005-06-16T08:03:42Z 2020-02-15T06:59:52Z +8627 319 1 1892 4.99 2005-06-17T04:17:33Z 2020-02-15T06:59:52Z +8628 319 2 2021 3.99 2005-06-17T12:41:18Z 2020-02-15T06:59:52Z +8629 319 2 2703 4.99 2005-06-19T13:36:06Z 2020-02-15T06:59:52Z +8630 319 2 2884 0.99 2005-06-20T01:31:16Z 2020-02-15T06:59:52Z +8631 319 2 3256 3.99 2005-06-21T03:45:42Z 2020-02-15T06:59:52Z +8632 319 2 4119 3.99 2005-07-07T07:06:03Z 2020-02-15T06:59:52Z +8633 319 2 4295 2.99 2005-07-07T16:08:51Z 2020-02-15T06:59:52Z +8634 319 1 4630 4.99 2005-07-08T08:33:38Z 2020-02-15T06:59:52Z +8635 319 1 5791 8.99 2005-07-10T14:16:22Z 2020-02-15T06:59:52Z +8636 319 1 5882 2.99 2005-07-10T19:20:34Z 2020-02-15T06:59:52Z +8637 319 2 6132 2.99 2005-07-11T08:24:44Z 2020-02-15T06:59:52Z +8638 319 1 6195 4.99 2005-07-11T12:00:32Z 2020-02-15T06:59:52Z +8639 319 1 6255 4.99 2005-07-11T15:11:33Z 2020-02-15T06:59:52Z +8640 319 1 6485 6.99 2005-07-12T02:07:59Z 2020-02-15T06:59:52Z +8641 319 2 7953 2.99 2005-07-28T13:24:32Z 2020-02-15T06:59:52Z +8642 319 2 9017 4.99 2005-07-30T05:26:20Z 2020-02-15T06:59:52Z +8643 319 2 9044 0.99 2005-07-30T06:35:21Z 2020-02-15T06:59:52Z +8644 319 1 11575 0.99 2005-08-17T01:50:26Z 2020-02-15T06:59:52Z +8645 319 2 11598 0.99 2005-08-17T03:03:07Z 2020-02-15T06:59:52Z +8646 319 1 11955 6.99 2005-08-17T17:21:35Z 2020-02-15T06:59:52Z +8647 319 2 11994 2.99 2005-08-17T18:29:35Z 2020-02-15T06:59:52Z +8648 319 1 12018 4.99 2005-08-17T19:44:46Z 2020-02-15T06:59:52Z +8649 319 2 12424 8.99 2005-08-18T10:16:57Z 2020-02-15T06:59:52Z +8650 319 1 13548 3.99 2005-08-20T03:53:20Z 2020-02-15T06:59:52Z +8651 319 2 14828 4.99 2005-08-22T01:34:05Z 2020-02-15T06:59:52Z +8652 319 2 15396 5.99 2005-08-22T23:07:57Z 2020-02-15T06:59:52Z +8653 320 2 1258 4.99 2005-06-15T06:21:30Z 2020-02-15T06:59:52Z +8654 320 2 1484 3.99 2005-06-15T21:22:35Z 2020-02-15T06:59:52Z +8655 320 2 1567 1.99 2005-06-16T03:13:30Z 2020-02-15T06:59:52Z +8656 320 1 2216 4.99 2005-06-18T03:08:17Z 2020-02-15T06:59:52Z +8657 320 2 2883 7.99 2005-06-20T01:29:10Z 2020-02-15T06:59:52Z +8658 320 2 3519 0.99 2005-07-06T00:57:29Z 2020-02-15T06:59:52Z +8659 320 2 3756 4.99 2005-07-06T12:40:38Z 2020-02-15T06:59:52Z +8660 320 2 4173 2.99 2005-07-07T09:57:26Z 2020-02-15T06:59:52Z +8661 320 2 7057 4.99 2005-07-27T03:50:03Z 2020-02-15T06:59:52Z +8662 320 2 7064 3.99 2005-07-27T03:53:29Z 2020-02-15T06:59:52Z +8663 320 2 7930 4.99 2005-07-28T12:21:08Z 2020-02-15T06:59:52Z +8664 320 2 8144 4.99 2005-07-28T20:30:55Z 2020-02-15T06:59:52Z +8665 320 2 8235 4.99 2005-07-29T00:22:56Z 2020-02-15T06:59:52Z +8666 320 1 8238 0.99 2005-07-29T00:30:06Z 2020-02-15T06:59:52Z +8667 320 2 8794 4.99 2005-07-29T20:59:38Z 2020-02-15T06:59:52Z +8668 320 1 9509 0.99 2005-07-31T00:22:42Z 2020-02-15T06:59:52Z +8669 320 1 11208 0.99 2005-08-02T12:02:37Z 2020-02-15T06:59:52Z +8670 320 2 11560 2.99 2005-08-17T01:20:30Z 2020-02-15T06:59:52Z +8671 320 2 14171 0.99 2005-08-21T03:00:42Z 2020-02-15T06:59:52Z +8672 320 1 15302 2.99 2005-08-22T19:44:53Z 2020-02-15T06:59:52Z +8673 321 2 200 4.99 2005-05-26T07:12:21Z 2020-02-15T06:59:52Z +8674 321 1 620 5.99 2005-05-28T15:54:45Z 2020-02-15T06:59:52Z +8675 321 2 818 4.99 2005-05-29T20:47:53Z 2020-02-15T06:59:52Z +8676 321 2 1750 5.99 2005-06-16T16:57:36Z 2020-02-15T06:59:52Z +8677 321 1 3410 0.99 2005-06-21T16:20:47Z 2020-02-15T06:59:52Z +8678 321 2 3901 5.99 2005-07-06T19:24:55Z 2020-02-15T06:59:52Z +8679 321 1 3920 4.99 2005-07-06T20:26:40Z 2020-02-15T06:59:52Z +8680 321 2 4281 4.99 2005-07-07T15:17:50Z 2020-02-15T06:59:52Z +8681 321 1 4318 5.99 2005-07-07T17:47:50Z 2020-02-15T06:59:52Z +8682 321 2 5202 2.99 2005-07-09T10:53:48Z 2020-02-15T06:59:52Z +8683 321 2 5867 8.99 2005-07-10T18:39:01Z 2020-02-15T06:59:52Z +8684 321 2 6190 2.99 2005-07-11T11:36:18Z 2020-02-15T06:59:52Z +8685 321 1 6859 5.99 2005-07-12T19:53:57Z 2020-02-15T06:59:52Z +8686 321 2 8685 6.99 2005-07-29T16:17:05Z 2020-02-15T06:59:52Z +8687 321 1 9981 0.99 2005-07-31T17:08:31Z 2020-02-15T06:59:52Z +8688 321 1 11722 2.99 2005-08-17T07:53:03Z 2020-02-15T06:59:52Z +8689 321 1 12033 6.99 2005-08-17T20:14:34Z 2020-02-15T06:59:52Z +8690 321 2 12034 7.99 2005-08-17T20:15:31Z 2020-02-15T06:59:52Z +8691 321 1 12398 4.99 2005-08-18T09:13:24Z 2020-02-15T06:59:52Z +8692 321 2 13623 6.99 2005-08-20T06:49:46Z 2020-02-15T06:59:52Z +8693 321 1 15673 6.99 2005-08-23T09:12:50Z 2020-02-15T06:59:52Z +8694 321 2 15888 5.99 2005-08-23T16:56:14Z 2020-02-15T06:59:52Z +8695 322 2 166 0.99 2005-05-26T02:49:11Z 2020-02-15T06:59:52Z +8696 322 1 269 4.99 2005-05-26T16:19:46Z 2020-02-15T06:59:52Z +8697 322 1 1386 2.99 2005-06-15T15:38:58Z 2020-02-15T06:59:52Z +8698 322 1 1588 8.99 2005-06-16T04:53:21Z 2020-02-15T06:59:52Z +8699 322 2 2481 4.99 2005-06-18T21:08:30Z 2020-02-15T06:59:52Z +8700 322 1 2554 0.99 2005-06-19T03:05:38Z 2020-02-15T06:59:52Z +8701 322 1 2983 7.99 2005-06-20T08:41:42Z 2020-02-15T06:59:52Z +8702 322 2 3054 5.99 2005-06-20T13:16:41Z 2020-02-15T06:59:52Z +8703 322 2 3413 8.99 2005-06-21T16:57:07Z 2020-02-15T06:59:52Z +8704 322 1 3478 0.99 2005-07-05T23:05:44Z 2020-02-15T06:59:52Z +8705 322 2 3627 1.99 2005-07-06T06:19:25Z 2020-02-15T06:59:52Z +8706 322 1 3646 4.99 2005-07-06T07:28:59Z 2020-02-15T06:59:52Z +8707 322 2 6033 2.99 2005-07-11T02:59:34Z 2020-02-15T06:59:52Z +8708 322 1 6511 3.99 2005-07-12T03:39:29Z 2020-02-15T06:59:52Z +8709 322 2 6673 0.99 2005-07-12T11:50:56Z 2020-02-15T06:59:52Z +8710 322 2 6709 4.99 2005-07-12T13:20:41Z 2020-02-15T06:59:52Z +8711 322 1 7091 4.99 2005-07-27T04:44:10Z 2020-02-15T06:59:52Z +8712 322 2 8142 4.99 2005-07-28T20:21:54Z 2020-02-15T06:59:52Z +8713 322 1 9104 7.99 2005-07-30T08:49:55Z 2020-02-15T06:59:52Z +8714 322 1 9115 4.99 2005-07-30T09:13:55Z 2020-02-15T06:59:52Z +8715 322 1 9252 1.99 2005-07-30T14:19:59Z 2020-02-15T06:59:52Z +8716 322 2 11120 4.99 2005-08-02T08:47:04Z 2020-02-15T06:59:52Z +8717 322 2 11456 0.99 2005-08-02T21:14:04Z 2020-02-15T06:59:52Z +8718 322 2 13180 4.99 2005-08-19T14:00:38Z 2020-02-15T06:59:52Z +8719 322 1 13650 9.99 2005-08-20T07:49:06Z 2020-02-15T06:59:52Z +8720 322 2 14042 4.99 2005-08-20T21:45:51Z 2020-02-15T06:59:52Z +8721 322 1 15450 0.99 2005-08-23T00:56:01Z 2020-02-15T06:59:52Z +8722 322 2 15703 8.99 2005-08-23T10:23:48Z 2020-02-15T06:59:52Z +8723 323 1 58 4.99 2005-05-25T08:53:14Z 2020-02-15T06:59:52Z +8724 323 2 729 2.99 2005-05-29T06:35:13Z 2020-02-15T06:59:52Z +8725 323 1 878 5.99 2005-05-30T05:49:13Z 2020-02-15T06:59:52Z +8726 323 2 1167 0.99 2005-06-14T23:25:58Z 2020-02-15T06:59:52Z +8727 323 2 1786 2.99 2005-06-16T19:30:54Z 2020-02-15T06:59:52Z +8728 323 1 2933 4.99 2005-06-20T04:52:23Z 2020-02-15T06:59:52Z +8729 323 2 3704 6.99 2005-07-06T10:16:45Z 2020-02-15T06:59:52Z +8730 323 2 4572 1.99 2005-07-08T05:36:59Z 2020-02-15T06:59:52Z +8731 323 2 5669 4.99 2005-07-10T08:12:53Z 2020-02-15T06:59:52Z +8732 323 2 5906 1.99 2005-07-10T20:41:41Z 2020-02-15T06:59:52Z +8733 323 1 6840 3.99 2005-07-12T19:03:22Z 2020-02-15T06:59:52Z +8734 323 2 7146 7.99 2005-07-27T07:02:30Z 2020-02-15T06:59:52Z +8735 323 2 7275 2.99 2005-07-27T11:39:08Z 2020-02-15T06:59:52Z +8736 323 2 7695 5.99 2005-07-28T03:41:13Z 2020-02-15T06:59:52Z +8737 323 1 7847 1.99 2005-07-28T09:23:14Z 2020-02-15T06:59:52Z +8738 323 2 7937 4.99 2005-07-28T12:38:22Z 2020-02-15T06:59:52Z +8739 323 2 8474 0.99 2005-07-29T08:36:56Z 2020-02-15T06:59:52Z +8740 323 1 8790 0.99 2005-07-29T20:51:41Z 2020-02-15T06:59:52Z +8741 323 1 9363 2.99 2005-07-30T18:44:23Z 2020-02-15T06:59:52Z +8742 323 2 10002 4.99 2005-07-31T17:48:16Z 2020-02-15T06:59:52Z +8743 323 1 10028 4.99 2005-07-31T18:35:54Z 2020-02-15T06:59:52Z +8744 323 1 10298 0.99 2005-08-01T04:06:03Z 2020-02-15T06:59:52Z +8745 323 1 10994 3.99 2005-08-02T04:46:53Z 2020-02-15T06:59:52Z +8746 323 2 11548 0.99 2005-08-17T00:59:47Z 2020-02-15T06:59:52Z +8747 323 1 12120 4.99 2005-08-17T23:16:46Z 2020-02-15T06:59:52Z +8748 323 1 12169 2.99 2005-08-18T01:05:54Z 2020-02-15T06:59:52Z +8749 323 1 13140 5.99 2005-08-19T12:35:56Z 2020-02-15T06:59:52Z +8750 323 1 14224 2.99 2005-08-21T04:53:08Z 2020-02-15T06:59:52Z +8751 323 1 14957 3.99 2005-08-22T06:29:34Z 2020-02-15T06:59:52Z +8752 323 1 15387 4.99 2005-08-22T22:49:13Z 2020-02-15T06:59:52Z +8753 323 1 15728 0.99 2005-08-23T11:30:32Z 2020-02-15T06:59:52Z +8754 324 2 563 3.99 2005-05-28T09:10:49Z 2020-02-15T06:59:52Z +8755 324 1 1740 0.99 2005-06-16T16:29:00Z 2020-02-15T06:59:52Z +8756 324 2 2590 2.99 2005-06-19T05:31:40Z 2020-02-15T06:59:52Z +8757 324 1 3947 4.99 2005-07-06T21:42:21Z 2020-02-15T06:59:52Z +8758 324 1 4197 0.99 2005-07-07T11:07:52Z 2020-02-15T06:59:52Z +8759 324 2 4368 4.99 2005-07-07T19:55:19Z 2020-02-15T06:59:52Z +8760 324 2 5702 2.99 2005-07-10T10:00:01Z 2020-02-15T06:59:52Z +8761 324 1 5778 0.99 2005-07-10T13:41:37Z 2020-02-15T06:59:52Z +8762 324 1 6034 2.99 2005-07-11T03:00:50Z 2020-02-15T06:59:52Z +8763 324 2 6299 4.99 2005-07-11T17:45:08Z 2020-02-15T06:59:52Z +8764 324 2 7240 3.99 2005-07-27T10:21:15Z 2020-02-15T06:59:52Z +8765 324 1 7263 7.99 2005-07-27T11:17:22Z 2020-02-15T06:59:52Z +8766 324 2 7960 6.99 2005-07-28T13:47:08Z 2020-02-15T06:59:52Z +8767 324 1 8698 3.99 2005-07-29T16:52:17Z 2020-02-15T06:59:52Z +8768 324 1 9651 4.99 2005-07-31T05:48:49Z 2020-02-15T06:59:52Z +8769 324 2 10212 2.99 2005-08-01T01:01:35Z 2020-02-15T06:59:52Z +8770 324 1 11617 2.99 2005-08-17T04:00:40Z 2020-02-15T06:59:52Z +8771 324 1 11771 6.99 2005-08-17T10:17:09Z 2020-02-15T06:59:52Z +8772 324 2 12543 2.99 2005-08-18T14:23:55Z 2020-02-15T06:59:52Z +8773 324 2 13356 0.99 2005-08-19T21:02:21Z 2020-02-15T06:59:52Z +8774 324 1 13386 2.99 2005-08-19T21:43:58Z 2020-02-15T06:59:52Z +8775 324 1 14262 8.99 2005-08-21T06:08:13Z 2020-02-15T06:59:52Z +8776 324 2 14479 7.99 2005-08-21T13:35:54Z 2020-02-15T06:59:52Z +8777 324 1 15263 4.99 2005-08-22T18:27:33Z 2020-02-15T06:59:52Z +8778 324 2 13965 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8779 325 1 131 5.99 2005-05-25T21:42:46Z 2020-02-15T06:59:52Z +8780 325 2 2502 4.99 2005-06-18T23:12:13Z 2020-02-15T06:59:52Z +8781 325 2 2507 4.99 2005-06-18T23:39:22Z 2020-02-15T06:59:52Z +8782 325 2 2808 2.99 2005-06-19T19:34:45Z 2020-02-15T06:59:52Z +8783 325 1 5470 5.99 2005-07-09T23:10:49Z 2020-02-15T06:59:52Z +8784 325 2 5740 2.99 2005-07-10T11:51:58Z 2020-02-15T06:59:52Z +8785 325 1 5775 4.99 2005-07-10T13:34:26Z 2020-02-15T06:59:52Z +8786 325 2 6135 4.99 2005-07-11T08:32:23Z 2020-02-15T06:59:52Z +8787 325 2 6622 0.99 2005-07-12T09:04:11Z 2020-02-15T06:59:52Z +8788 325 2 7223 9.99 2005-07-27T09:42:27Z 2020-02-15T06:59:52Z +8789 325 2 7687 2.99 2005-07-28T03:20:26Z 2020-02-15T06:59:52Z +8790 325 2 8539 0.99 2005-07-29T10:48:24Z 2020-02-15T06:59:52Z +8791 325 2 10030 2.99 2005-07-31T18:39:36Z 2020-02-15T06:59:52Z +8792 325 1 10070 4.99 2005-07-31T19:46:29Z 2020-02-15T06:59:52Z +8793 325 2 10326 4.99 2005-08-01T04:55:34Z 2020-02-15T06:59:52Z +8794 325 1 10412 0.99 2005-08-01T07:57:16Z 2020-02-15T06:59:52Z +8795 325 2 12097 4.99 2005-08-17T22:35:24Z 2020-02-15T06:59:52Z +8796 325 1 12779 3.99 2005-08-18T23:44:00Z 2020-02-15T06:59:52Z +8797 325 2 13054 4.99 2005-08-19T09:34:02Z 2020-02-15T06:59:52Z +8798 325 2 14452 3.99 2005-08-21T12:23:20Z 2020-02-15T06:59:52Z +8799 325 1 14672 5.99 2005-08-21T19:59:33Z 2020-02-15T06:59:52Z +8800 325 2 15009 0.99 2005-08-22T08:27:27Z 2020-02-15T06:59:52Z +8801 326 1 875 6.99 2005-05-30T05:38:24Z 2020-02-15T06:59:52Z +8802 326 2 981 4.99 2005-05-30T21:52:42Z 2020-02-15T06:59:52Z +8803 326 2 1149 3.99 2005-05-31T21:03:17Z 2020-02-15T06:59:52Z +8804 326 1 1311 4.99 2005-06-15T10:11:59Z 2020-02-15T06:59:52Z +8805 326 2 2086 0.99 2005-06-17T17:32:07Z 2020-02-15T06:59:52Z +8806 326 2 2317 4.99 2005-06-18T09:12:18Z 2020-02-15T06:59:52Z +8807 326 1 3441 4.99 2005-06-21T20:00:12Z 2020-02-15T06:59:52Z +8808 326 2 3886 0.99 2005-07-06T18:44:24Z 2020-02-15T06:59:52Z +8809 326 1 4160 7.99 2005-07-07T09:13:17Z 2020-02-15T06:59:52Z +8810 326 1 5147 5.99 2005-07-09T08:17:41Z 2020-02-15T06:59:52Z +8811 326 1 7117 2.99 2005-07-27T05:48:36Z 2020-02-15T06:59:52Z +8812 326 2 7725 2.99 2005-07-28T04:47:14Z 2020-02-15T06:59:52Z +8813 326 2 7931 4.99 2005-07-28T12:23:41Z 2020-02-15T06:59:52Z +8814 326 1 8467 5.99 2005-07-29T08:25:35Z 2020-02-15T06:59:52Z +8815 326 1 8604 4.99 2005-07-29T13:07:13Z 2020-02-15T06:59:52Z +8816 326 2 8739 2.99 2005-07-29T18:34:33Z 2020-02-15T06:59:52Z +8817 326 2 9855 0.99 2005-07-31T13:00:33Z 2020-02-15T06:59:52Z +8818 326 1 10108 0.99 2005-07-31T21:02:14Z 2020-02-15T06:59:52Z +8819 326 2 10173 4.99 2005-07-31T23:36:59Z 2020-02-15T06:59:52Z +8820 326 2 10720 0.99 2005-08-01T19:04:33Z 2020-02-15T06:59:52Z +8821 326 2 10976 4.99 2005-08-02T04:11:48Z 2020-02-15T06:59:52Z +8822 326 2 11010 0.99 2005-08-02T05:06:27Z 2020-02-15T06:59:52Z +8823 326 2 11428 2.99 2005-08-02T20:03:10Z 2020-02-15T06:59:52Z +8824 326 2 11485 4.99 2005-08-02T22:33:25Z 2020-02-15T06:59:52Z +8825 326 2 12829 2.99 2005-08-19T01:38:18Z 2020-02-15T06:59:52Z +8826 327 1 653 6.99 2005-05-28T20:12:20Z 2020-02-15T06:59:52Z +8827 327 1 1294 4.99 2005-06-15T09:09:27Z 2020-02-15T06:59:52Z +8828 327 2 1577 3.99 2005-06-16T04:03:28Z 2020-02-15T06:59:52Z +8829 327 2 1929 6.99 2005-06-17T06:49:30Z 2020-02-15T06:59:52Z +8830 327 1 2273 4.99 2005-06-18T06:30:02Z 2020-02-15T06:59:52Z +8831 327 2 2304 5.99 2005-06-18T08:30:15Z 2020-02-15T06:59:52Z +8832 327 2 2637 3.99 2005-06-19T09:20:56Z 2020-02-15T06:59:52Z +8833 327 1 4445 4.99 2005-07-07T23:08:22Z 2020-02-15T06:59:52Z +8834 327 1 4521 0.99 2005-07-08T02:57:56Z 2020-02-15T06:59:52Z +8835 327 1 6618 2.99 2005-07-12T08:41:42Z 2020-02-15T06:59:52Z +8836 327 2 7458 1.99 2005-07-27T18:36:17Z 2020-02-15T06:59:52Z +8837 327 2 7808 1.99 2005-07-28T07:58:56Z 2020-02-15T06:59:52Z +8838 327 1 10371 0.99 2005-08-01T06:20:29Z 2020-02-15T06:59:52Z +8839 327 1 11372 4.99 2005-08-02T18:10:50Z 2020-02-15T06:59:52Z +8840 327 2 11929 6.99 2005-08-17T16:28:51Z 2020-02-15T06:59:52Z +8841 327 1 12016 0.99 2005-08-17T19:33:24Z 2020-02-15T06:59:52Z +8842 327 2 13158 2.99 2005-08-19T13:18:10Z 2020-02-15T06:59:52Z +8843 327 1 13360 4.99 2005-08-19T21:05:11Z 2020-02-15T06:59:52Z +8844 327 1 13448 0.99 2005-08-20T00:12:43Z 2020-02-15T06:59:52Z +8845 327 1 14847 4.99 2005-08-22T02:13:51Z 2020-02-15T06:59:52Z +8846 327 2 15365 3.99 2005-08-22T21:42:17Z 2020-02-15T06:59:52Z +8847 327 1 15386 2.99 2005-08-22T22:41:14Z 2020-02-15T06:59:52Z +8848 327 1 15828 5.99 2005-08-23T15:16:32Z 2020-02-15T06:59:52Z +8849 327 1 15916 9.99 2005-08-23T17:56:01Z 2020-02-15T06:59:52Z +8850 327 2 15969 7.99 2005-08-23T19:51:30Z 2020-02-15T06:59:52Z +8851 327 1 15297 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8852 328 2 862 2.99 2005-05-30T03:09:11Z 2020-02-15T06:59:52Z +8853 328 2 1670 2.99 2005-06-16T10:26:33Z 2020-02-15T06:59:52Z +8854 328 2 1980 6.99 2005-06-17T09:48:05Z 2020-02-15T06:59:52Z +8855 328 2 2243 5.99 2005-06-18T04:33:03Z 2020-02-15T06:59:52Z +8856 328 1 3024 4.99 2005-06-20T11:29:17Z 2020-02-15T06:59:52Z +8857 328 1 3239 0.99 2005-06-21T02:48:40Z 2020-02-15T06:59:52Z +8858 328 1 5450 4.99 2005-07-09T22:13:25Z 2020-02-15T06:59:52Z +8859 328 1 8017 1.99 2005-07-28T15:35:41Z 2020-02-15T06:59:52Z +8860 328 1 8577 6.99 2005-07-29T11:56:30Z 2020-02-15T06:59:52Z +8861 328 2 8780 4.99 2005-07-29T20:19:45Z 2020-02-15T06:59:52Z +8862 328 2 9557 2.99 2005-07-31T02:14:01Z 2020-02-15T06:59:52Z +8863 328 1 9835 2.99 2005-07-31T12:07:35Z 2020-02-15T06:59:52Z +8864 328 1 11174 2.99 2005-08-02T10:32:11Z 2020-02-15T06:59:52Z +8865 328 1 12175 4.99 2005-08-18T01:10:17Z 2020-02-15T06:59:52Z +8866 328 2 12825 0.99 2005-08-19T01:23:58Z 2020-02-15T06:59:52Z +8867 328 1 13609 2.99 2005-08-20T06:11:51Z 2020-02-15T06:59:52Z +8868 328 2 13681 7.99 2005-08-20T08:47:37Z 2020-02-15T06:59:52Z +8869 328 1 13907 3.99 2005-08-20T16:17:27Z 2020-02-15T06:59:52Z +8870 328 2 14307 3.99 2005-08-21T07:34:52Z 2020-02-15T06:59:52Z +8871 328 1 14755 3.99 2005-08-21T23:18:08Z 2020-02-15T06:59:52Z +8872 328 2 14939 2.99 2005-08-22T05:53:52Z 2020-02-15T06:59:52Z +8873 328 1 15179 4.99 2005-08-22T15:36:22Z 2020-02-15T06:59:52Z +8874 328 1 15863 0.99 2005-08-23T16:17:09Z 2020-02-15T06:59:52Z +8875 329 1 1183 2.99 2005-06-15T00:49:19Z 2020-02-15T06:59:52Z +8876 329 1 2010 5.99 2005-06-17T11:54:15Z 2020-02-15T06:59:52Z +8877 329 2 2024 0.99 2005-06-17T13:00:51Z 2020-02-15T06:59:52Z +8878 329 1 2151 0.99 2005-06-17T22:52:37Z 2020-02-15T06:59:52Z +8879 329 1 2303 2.99 2005-06-18T08:27:59Z 2020-02-15T06:59:52Z +8880 329 2 2702 2.99 2005-06-19T13:35:56Z 2020-02-15T06:59:52Z +8881 329 1 3052 5.99 2005-06-20T13:09:19Z 2020-02-15T06:59:52Z +8882 329 2 3053 0.99 2005-06-20T13:10:30Z 2020-02-15T06:59:52Z +8883 329 2 3268 4.99 2005-06-21T04:55:49Z 2020-02-15T06:59:52Z +8884 329 2 3976 2.99 2005-07-06T23:00:20Z 2020-02-15T06:59:52Z +8885 329 2 4076 4.99 2005-07-07T04:52:15Z 2020-02-15T06:59:52Z +8886 329 1 4415 4.99 2005-07-07T22:01:43Z 2020-02-15T06:59:52Z +8887 329 1 4465 1.99 2005-07-08T00:07:45Z 2020-02-15T06:59:52Z +8888 329 2 4674 2.99 2005-07-08T10:19:28Z 2020-02-15T06:59:52Z +8889 329 1 7980 4.99 2005-07-28T14:16:49Z 2020-02-15T06:59:52Z +8890 329 2 8172 7.99 2005-07-28T21:34:36Z 2020-02-15T06:59:52Z +8891 329 1 8460 6.99 2005-07-29T08:08:03Z 2020-02-15T06:59:52Z +8892 329 2 8941 0.99 2005-07-30T02:59:21Z 2020-02-15T06:59:52Z +8893 329 2 9024 4.99 2005-07-30T05:44:42Z 2020-02-15T06:59:52Z +8894 329 2 9219 0.99 2005-07-30T13:15:21Z 2020-02-15T06:59:52Z +8895 329 1 9381 0.99 2005-07-30T19:23:04Z 2020-02-15T06:59:52Z +8896 329 1 9827 6.99 2005-07-31T11:56:55Z 2020-02-15T06:59:52Z +8897 329 1 10473 7.99 2005-08-01T09:56:24Z 2020-02-15T06:59:52Z +8898 329 2 10490 0.99 2005-08-01T10:37:11Z 2020-02-15T06:59:52Z +8899 329 1 11130 2.99 2005-08-02T09:08:59Z 2020-02-15T06:59:52Z +8900 329 2 11169 3.99 2005-08-02T10:19:42Z 2020-02-15T06:59:52Z +8901 329 2 11697 0.99 2005-08-17T07:09:19Z 2020-02-15T06:59:52Z +8902 329 1 12659 6.99 2005-08-18T19:05:49Z 2020-02-15T06:59:52Z +8903 329 1 13627 8.99 2005-08-20T06:59:00Z 2020-02-15T06:59:52Z +8904 329 1 14900 4.99 2005-08-22T04:27:48Z 2020-02-15T06:59:52Z +8905 329 2 15011 4.99 2005-08-22T08:31:07Z 2020-02-15T06:59:52Z +8906 329 1 15308 2.99 2005-08-22T19:54:31Z 2020-02-15T06:59:52Z +8907 330 1 704 3.99 2005-05-29T02:44:43Z 2020-02-15T06:59:52Z +8908 330 2 967 7.99 2005-05-30T19:12:06Z 2020-02-15T06:59:52Z +8909 330 1 1219 6.99 2005-06-15T03:25:59Z 2020-02-15T06:59:52Z +8910 330 2 1511 5.99 2005-06-15T22:45:06Z 2020-02-15T06:59:52Z +8911 330 2 2885 0.99 2005-06-20T01:33:42Z 2020-02-15T06:59:52Z +8912 330 1 2936 4.99 2005-06-20T05:09:27Z 2020-02-15T06:59:52Z +8913 330 2 3061 2.99 2005-06-20T13:48:21Z 2020-02-15T06:59:52Z +8914 330 2 3603 4.99 2005-07-06T05:25:03Z 2020-02-15T06:59:53Z +8915 330 2 3659 2.99 2005-07-06T08:03:14Z 2020-02-15T06:59:53Z +8916 330 2 3760 2.99 2005-07-06T12:49:28Z 2020-02-15T06:59:53Z +8917 330 1 4124 1.99 2005-07-07T07:19:54Z 2020-02-15T06:59:53Z +8918 330 2 5149 2.99 2005-07-09T08:28:23Z 2020-02-15T06:59:53Z +8919 330 1 5750 5.99 2005-07-10T12:20:41Z 2020-02-15T06:59:53Z +8920 330 1 6656 0.99 2005-07-12T11:09:47Z 2020-02-15T06:59:53Z +8921 330 2 6678 2.99 2005-07-12T11:58:36Z 2020-02-15T06:59:53Z +8922 330 1 6719 2.99 2005-07-12T13:40:37Z 2020-02-15T06:59:53Z +8923 330 2 7894 2.99 2005-07-28T10:53:58Z 2020-02-15T06:59:53Z +8924 330 1 8680 4.99 2005-07-29T16:08:03Z 2020-02-15T06:59:53Z +8925 330 2 10100 4.99 2005-07-31T20:47:18Z 2020-02-15T06:59:53Z +8926 330 2 11259 3.99 2005-08-02T13:46:30Z 2020-02-15T06:59:53Z +8927 330 1 12062 2.99 2005-08-17T21:24:47Z 2020-02-15T06:59:53Z +8928 330 1 12394 2.99 2005-08-18T09:05:15Z 2020-02-15T06:59:53Z +8929 330 1 12740 4.99 2005-08-18T22:17:04Z 2020-02-15T06:59:53Z +8930 330 1 12867 0.99 2005-08-19T02:40:11Z 2020-02-15T06:59:53Z +8931 330 2 11709 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +8932 331 2 87 0.99 2005-05-25T13:52:43Z 2020-02-15T06:59:53Z +8933 331 1 996 2.99 2005-05-31T00:06:20Z 2020-02-15T06:59:53Z +8934 331 1 1415 2.99 2005-06-15T17:31:57Z 2020-02-15T06:59:53Z +8935 331 2 2528 6.99 2005-06-19T01:14:12Z 2020-02-15T06:59:53Z +8936 331 1 2587 2.99 2005-06-19T05:06:14Z 2020-02-15T06:59:53Z +8937 331 1 3505 4.99 2005-07-06T00:19:32Z 2020-02-15T06:59:53Z +8938 331 1 3613 4.99 2005-07-06T05:45:53Z 2020-02-15T06:59:53Z +8939 331 2 3871 8.99 2005-07-06T17:58:51Z 2020-02-15T06:59:53Z +8940 331 1 4051 4.99 2005-07-07T03:37:28Z 2020-02-15T06:59:53Z +8941 331 2 4063 5.99 2005-07-07T04:23:57Z 2020-02-15T06:59:53Z +8942 331 1 4326 10.99 2005-07-07T18:01:22Z 2020-02-15T06:59:53Z +8943 331 1 5152 2.99 2005-07-09T08:34:44Z 2020-02-15T06:59:53Z +8944 331 1 5885 1.99 2005-07-10T19:33:50Z 2020-02-15T06:59:53Z +8945 331 1 5947 5.99 2005-07-10T23:07:42Z 2020-02-15T06:59:53Z +8946 331 1 8231 0.99 2005-07-29T00:14:37Z 2020-02-15T06:59:53Z +8947 331 2 8995 4.99 2005-07-30T04:53:11Z 2020-02-15T06:59:53Z +8948 331 1 9401 5.99 2005-07-30T20:18:19Z 2020-02-15T06:59:53Z +8949 331 2 10188 6.99 2005-08-01T00:19:41Z 2020-02-15T06:59:53Z +8950 331 1 11052 5.99 2005-08-02T06:26:19Z 2020-02-15T06:59:53Z +8951 331 1 11362 2.99 2005-08-02T17:47:25Z 2020-02-15T06:59:53Z +8952 331 2 12533 4.99 2005-08-18T14:01:40Z 2020-02-15T06:59:53Z +8953 331 1 13795 0.99 2005-08-20T12:32:09Z 2020-02-15T06:59:53Z +8954 331 1 14256 7.99 2005-08-21T05:52:27Z 2020-02-15T06:59:53Z +8955 331 1 14628 1.99 2005-08-21T18:37:24Z 2020-02-15T06:59:53Z +8956 331 1 15339 2.99 2005-08-22T20:52:12Z 2020-02-15T06:59:53Z +8957 331 2 15447 3.99 2005-08-23T00:53:57Z 2020-02-15T06:59:53Z +8958 331 1 15521 2.99 2005-08-23T03:30:51Z 2020-02-15T06:59:53Z +8959 332 2 600 3.99 2005-05-28T14:08:19Z 2020-02-15T06:59:53Z +8960 332 1 1000 6.99 2005-05-31T00:25:56Z 2020-02-15T06:59:53Z +8961 332 1 4100 6.99 2005-07-07T06:20:52Z 2020-02-15T06:59:53Z +8962 332 1 4302 6.99 2005-07-07T16:47:53Z 2020-02-15T06:59:53Z +8963 332 2 5116 2.99 2005-07-09T07:10:12Z 2020-02-15T06:59:53Z +8964 332 1 5277 1.99 2005-07-09T14:40:42Z 2020-02-15T06:59:53Z +8965 332 2 5381 2.99 2005-07-09T19:11:11Z 2020-02-15T06:59:53Z +8966 332 2 5388 0.99 2005-07-09T19:25:25Z 2020-02-15T06:59:53Z +8967 332 1 5440 0.99 2005-07-09T21:45:17Z 2020-02-15T06:59:53Z +8968 332 2 7049 7.99 2005-07-27T03:32:41Z 2020-02-15T06:59:53Z +8969 332 2 7418 2.99 2005-07-27T16:59:09Z 2020-02-15T06:59:53Z +8970 332 2 7577 8.99 2005-07-27T22:56:07Z 2020-02-15T06:59:53Z +8971 332 2 7578 4.99 2005-07-27T22:58:17Z 2020-02-15T06:59:53Z +8972 332 2 7934 8.99 2005-07-28T12:33:10Z 2020-02-15T06:59:53Z +8973 332 2 8173 6.99 2005-07-28T21:35:44Z 2020-02-15T06:59:53Z +8974 332 1 9324 1.99 2005-07-30T17:28:52Z 2020-02-15T06:59:53Z +8975 332 1 9388 5.99 2005-07-30T19:27:22Z 2020-02-15T06:59:53Z +8976 332 1 9921 0.99 2005-07-31T14:59:21Z 2020-02-15T06:59:53Z +8977 332 1 10026 4.99 2005-07-31T18:31:51Z 2020-02-15T06:59:53Z +8978 332 1 10307 0.99 2005-08-01T04:21:54Z 2020-02-15T06:59:53Z +8979 332 2 10439 0.99 2005-08-01T08:54:26Z 2020-02-15T06:59:53Z +8980 332 1 11229 5.99 2005-08-02T12:56:37Z 2020-02-15T06:59:53Z +8981 332 2 11564 2.99 2005-08-17T01:27:49Z 2020-02-15T06:59:53Z +8982 332 2 12318 4.99 2005-08-18T06:21:56Z 2020-02-15T06:59:53Z +8983 332 2 13673 2.99 2005-08-20T08:27:30Z 2020-02-15T06:59:53Z +8984 332 2 14783 4.99 2005-08-22T00:21:57Z 2020-02-15T06:59:53Z +8985 332 2 15194 0.99 2005-08-22T16:07:34Z 2020-02-15T06:59:53Z +8986 332 1 15210 3.99 2005-08-22T16:37:36Z 2020-02-15T06:59:53Z +8987 333 1 4 4.99 2005-05-24T23:04:41Z 2020-02-15T06:59:53Z +8988 333 1 1667 2.99 2005-06-16T10:18:59Z 2020-02-15T06:59:53Z +8989 333 1 2149 6.99 2005-06-17T22:50:00Z 2020-02-15T06:59:53Z +8990 333 1 2929 1.99 2005-06-20T04:47:39Z 2020-02-15T06:59:53Z +8991 333 1 3110 2.99 2005-06-20T17:40:12Z 2020-02-15T06:59:53Z +8992 333 2 5032 0.99 2005-07-09T02:39:47Z 2020-02-15T06:59:53Z +8993 333 1 5645 1.99 2005-07-10T06:58:21Z 2020-02-15T06:59:53Z +8994 333 2 5892 4.99 2005-07-10T20:02:42Z 2020-02-15T06:59:53Z +8995 333 2 6275 0.99 2005-07-11T16:12:11Z 2020-02-15T06:59:53Z +8996 333 2 6931 4.99 2005-07-26T23:02:57Z 2020-02-15T06:59:53Z +8997 333 2 6958 0.99 2005-07-27T00:02:41Z 2020-02-15T06:59:53Z +8998 333 2 7076 6.99 2005-07-27T04:12:14Z 2020-02-15T06:59:53Z +8999 333 2 7246 0.99 2005-07-27T10:30:41Z 2020-02-15T06:59:53Z +9000 333 1 8719 4.99 2005-07-29T17:45:45Z 2020-02-15T06:59:53Z +9001 333 2 9148 4.99 2005-07-30T10:39:10Z 2020-02-15T06:59:53Z +9002 333 2 9338 10.99 2005-07-30T18:03:13Z 2020-02-15T06:59:53Z +9003 333 2 10035 4.99 2005-07-31T18:46:46Z 2020-02-15T06:59:53Z +9004 333 1 10062 2.99 2005-07-31T19:24:55Z 2020-02-15T06:59:53Z +9005 333 2 10844 4.99 2005-08-01T23:46:58Z 2020-02-15T06:59:53Z +9006 333 1 12427 6.99 2005-08-18T10:24:17Z 2020-02-15T06:59:53Z +9007 333 2 12661 0.99 2005-08-18T19:10:10Z 2020-02-15T06:59:53Z +9008 333 1 13579 3.99 2005-08-20T05:22:06Z 2020-02-15T06:59:53Z +9009 333 2 13710 4.99 2005-08-20T09:35:20Z 2020-02-15T06:59:53Z +9010 333 1 14057 4.99 2005-08-20T22:22:59Z 2020-02-15T06:59:53Z +9011 333 1 14740 2.99 2005-08-21T22:35:33Z 2020-02-15T06:59:53Z +9012 333 2 15253 2.99 2005-08-22T18:05:21Z 2020-02-15T06:59:53Z +9013 333 1 15313 4.99 2005-08-22T19:59:42Z 2020-02-15T06:59:53Z +9014 334 1 13 6.99 2005-05-25T00:22:55Z 2020-02-15T06:59:53Z +9015 334 1 431 8.99 2005-05-27T16:31:05Z 2020-02-15T06:59:53Z +9016 334 2 1187 4.99 2005-06-15T00:58:50Z 2020-02-15T06:59:53Z +9017 334 1 1298 4.99 2005-06-15T09:32:53Z 2020-02-15T06:59:53Z +9018 334 2 2476 0.99 2005-06-18T20:57:12Z 2020-02-15T06:59:53Z +9019 334 1 3662 4.99 2005-07-06T08:11:48Z 2020-02-15T06:59:53Z +9020 334 1 4603 6.99 2005-07-08T06:57:07Z 2020-02-15T06:59:53Z +9021 334 2 5014 4.99 2005-07-09T01:51:49Z 2020-02-15T06:59:53Z +9022 334 2 5434 0.99 2005-07-09T21:25:20Z 2020-02-15T06:59:53Z +9023 334 2 5818 5.99 2005-07-10T15:51:12Z 2020-02-15T06:59:53Z +9024 334 1 5845 4.99 2005-07-10T17:23:14Z 2020-02-15T06:59:53Z +9025 334 2 6641 5.99 2005-07-12T10:33:14Z 2020-02-15T06:59:53Z +9026 334 2 6749 4.99 2005-07-12T14:43:05Z 2020-02-15T06:59:53Z +9027 334 1 6987 2.99 2005-07-27T00:59:50Z 2020-02-15T06:59:53Z +9028 334 1 8977 7.99 2005-07-30T04:14:07Z 2020-02-15T06:59:53Z +9029 334 1 9633 2.99 2005-07-31T05:04:08Z 2020-02-15T06:59:53Z +9030 334 1 10207 3.99 2005-08-01T00:53:01Z 2020-02-15T06:59:53Z +9031 334 1 10408 4.99 2005-08-01T07:42:10Z 2020-02-15T06:59:53Z +9032 334 1 10492 2.99 2005-08-01T10:42:28Z 2020-02-15T06:59:53Z +9033 334 1 10879 1.99 2005-08-02T00:33:20Z 2020-02-15T06:59:53Z +9034 334 2 10997 7.99 2005-08-02T04:49:02Z 2020-02-15T06:59:53Z +9035 334 2 12677 4.99 2005-08-18T19:36:05Z 2020-02-15T06:59:53Z +9036 334 2 13325 4.99 2005-08-19T19:52:02Z 2020-02-15T06:59:53Z +9037 334 1 13876 2.99 2005-08-20T15:15:28Z 2020-02-15T06:59:53Z +9038 334 1 14645 0.99 2005-08-21T19:12:47Z 2020-02-15T06:59:53Z +9039 334 1 14984 7.99 2005-08-22T07:35:31Z 2020-02-15T06:59:53Z +9040 334 2 15548 0.99 2005-08-23T04:26:20Z 2020-02-15T06:59:53Z +9041 334 2 15656 4.99 2005-08-23T08:38:58Z 2020-02-15T06:59:53Z +9042 334 1 15669 3.99 2005-08-23T09:06:17Z 2020-02-15T06:59:53Z +9043 334 1 14219 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9044 335 1 3329 4.99 2005-06-21T09:20:31Z 2020-02-15T06:59:53Z +9045 335 1 3607 0.99 2005-07-06T05:30:09Z 2020-02-15T06:59:53Z +9046 335 2 4016 0.99 2005-07-07T01:05:50Z 2020-02-15T06:59:53Z +9047 335 2 4032 2.99 2005-07-07T02:34:13Z 2020-02-15T06:59:53Z +9048 335 1 4279 4.99 2005-07-07T15:01:53Z 2020-02-15T06:59:53Z +9049 335 1 4387 8.99 2005-07-07T20:56:47Z 2020-02-15T06:59:53Z +9050 335 1 5024 4.99 2005-07-09T02:25:12Z 2020-02-15T06:59:53Z +9051 335 1 5252 0.99 2005-07-09T13:40:44Z 2020-02-15T06:59:53Z +9052 335 2 5728 2.99 2005-07-10T11:26:14Z 2020-02-15T06:59:53Z +9053 335 1 6624 7.99 2005-07-12T09:05:50Z 2020-02-15T06:59:53Z +9054 335 1 6906 0.99 2005-07-12T22:03:02Z 2020-02-15T06:59:53Z +9055 335 2 8634 3.99 2005-07-29T14:19:57Z 2020-02-15T06:59:53Z +9056 335 1 8855 2.99 2005-07-29T23:40:10Z 2020-02-15T06:59:53Z +9057 335 1 9125 5.99 2005-07-30T09:43:39Z 2020-02-15T06:59:53Z +9058 335 2 9361 4.99 2005-07-30T18:43:49Z 2020-02-15T06:59:53Z +9059 335 1 9428 0.99 2005-07-30T21:18:37Z 2020-02-15T06:59:53Z +9060 335 2 10606 4.99 2005-08-01T14:39:15Z 2020-02-15T06:59:53Z +9061 335 2 13267 0.99 2005-08-19T17:31:36Z 2020-02-15T06:59:53Z +9062 335 1 13622 1.99 2005-08-20T06:45:32Z 2020-02-15T06:59:53Z +9063 335 1 14014 2.99 2005-08-20T20:47:09Z 2020-02-15T06:59:53Z +9064 335 2 15005 4.99 2005-08-22T08:15:44Z 2020-02-15T06:59:53Z +9065 335 2 15101 0.99 2005-08-22T11:56:02Z 2020-02-15T06:59:53Z +9066 335 2 11541 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9067 336 1 1478 2.99 2005-06-15T21:12:13Z 2020-02-15T06:59:53Z +9068 336 2 2212 2.99 2005-06-18T02:36:10Z 2020-02-15T06:59:53Z +9069 336 2 2475 2.99 2005-06-18T20:52:46Z 2020-02-15T06:59:53Z +9070 336 1 2575 2.99 2005-06-19T04:32:52Z 2020-02-15T06:59:53Z +9071 336 2 2719 4.99 2005-06-19T14:50:19Z 2020-02-15T06:59:53Z +9072 336 1 2954 2.99 2005-06-20T06:45:00Z 2020-02-15T06:59:53Z +9073 336 2 3204 4.99 2005-06-21T00:37:50Z 2020-02-15T06:59:53Z +9074 336 2 3349 0.99 2005-06-21T11:17:35Z 2020-02-15T06:59:53Z +9075 336 2 4323 5.99 2005-07-07T17:55:53Z 2020-02-15T06:59:53Z +9076 336 1 4595 2.99 2005-07-08T06:40:25Z 2020-02-15T06:59:53Z +9077 336 2 5649 2.99 2005-07-10T07:15:07Z 2020-02-15T06:59:53Z +9078 336 2 5667 0.99 2005-07-10T08:11:03Z 2020-02-15T06:59:53Z +9079 336 2 6263 4.99 2005-07-11T15:33:50Z 2020-02-15T06:59:53Z +9080 336 2 6382 6.99 2005-07-11T21:58:53Z 2020-02-15T06:59:53Z +9081 336 2 8275 4.99 2005-07-29T01:35:47Z 2020-02-15T06:59:53Z +9082 336 1 8407 6.99 2005-07-29T06:37:02Z 2020-02-15T06:59:53Z +9083 336 2 8607 4.99 2005-07-29T13:18:00Z 2020-02-15T06:59:53Z +9084 336 2 8951 8.99 2005-07-30T03:18:24Z 2020-02-15T06:59:53Z +9085 336 2 9306 0.99 2005-07-30T16:47:17Z 2020-02-15T06:59:53Z +9086 336 1 10055 0.99 2005-07-31T19:15:58Z 2020-02-15T06:59:53Z +9087 336 2 11743 2.99 2005-08-17T08:49:05Z 2020-02-15T06:59:53Z +9088 336 1 12323 8.99 2005-08-18T06:36:22Z 2020-02-15T06:59:53Z +9089 336 2 12794 0.99 2005-08-19T00:20:37Z 2020-02-15T06:59:53Z +9090 336 2 12926 3.99 2005-08-19T05:00:16Z 2020-02-15T06:59:53Z +9091 336 2 13066 0.99 2005-08-19T09:50:39Z 2020-02-15T06:59:53Z +9092 336 2 13689 4.99 2005-08-20T09:04:30Z 2020-02-15T06:59:53Z +9093 336 1 14295 2.99 2005-08-21T07:09:27Z 2020-02-15T06:59:53Z +9094 336 1 15073 10.99 2005-08-22T11:01:15Z 2020-02-15T06:59:53Z +9095 336 2 15848 2.99 2005-08-23T15:41:12Z 2020-02-15T06:59:53Z +9096 336 1 13022 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9097 337 1 374 6.99 2005-05-27T08:26:30Z 2020-02-15T06:59:53Z +9098 337 1 572 4.99 2005-05-28T10:30:13Z 2020-02-15T06:59:53Z +9099 337 1 839 8.99 2005-05-30T00:28:12Z 2020-02-15T06:59:53Z +9100 337 2 1969 4.99 2005-06-17T09:22:22Z 2020-02-15T06:59:53Z +9101 337 1 2014 5.99 2005-06-17T12:03:28Z 2020-02-15T06:59:53Z +9102 337 1 3626 5.99 2005-07-06T06:15:35Z 2020-02-15T06:59:53Z +9103 337 1 4091 6.99 2005-07-07T05:53:38Z 2020-02-15T06:59:53Z +9104 337 2 4093 4.99 2005-07-07T05:54:50Z 2020-02-15T06:59:53Z +9105 337 2 4855 4.99 2005-07-08T18:45:50Z 2020-02-15T06:59:53Z +9106 337 1 5050 2.99 2005-07-09T03:54:38Z 2020-02-15T06:59:53Z +9107 337 1 6212 0.99 2005-07-11T12:40:48Z 2020-02-15T06:59:53Z +9108 337 2 6305 7.99 2005-07-11T18:02:25Z 2020-02-15T06:59:53Z +9109 337 1 6620 2.99 2005-07-12T08:51:03Z 2020-02-15T06:59:53Z +9110 337 1 7410 4.99 2005-07-27T16:41:59Z 2020-02-15T06:59:53Z +9111 337 1 8516 4.99 2005-07-29T10:00:03Z 2020-02-15T06:59:53Z +9112 337 2 8919 8.99 2005-07-30T01:57:03Z 2020-02-15T06:59:53Z +9113 337 2 9051 5.99 2005-07-30T07:05:54Z 2020-02-15T06:59:53Z +9114 337 1 10664 0.99 2005-08-01T16:51:15Z 2020-02-15T06:59:53Z +9115 337 2 10765 0.99 2005-08-01T20:34:51Z 2020-02-15T06:59:53Z +9116 337 2 11252 2.99 2005-08-02T13:42:13Z 2020-02-15T06:59:53Z +9117 337 1 11734 3.99 2005-08-17T08:34:22Z 2020-02-15T06:59:53Z +9118 337 1 12369 6.99 2005-08-18T07:57:43Z 2020-02-15T06:59:53Z +9119 337 2 13305 6.99 2005-08-19T18:57:05Z 2020-02-15T06:59:53Z +9120 337 1 13678 4.99 2005-08-20T08:38:24Z 2020-02-15T06:59:53Z +9121 337 2 13892 3.99 2005-08-20T15:50:17Z 2020-02-15T06:59:53Z +9122 337 2 14118 5.99 2005-08-21T01:13:37Z 2020-02-15T06:59:53Z +9123 337 2 15241 4.99 2005-08-22T17:47:40Z 2020-02-15T06:59:53Z +9124 337 1 15292 4.99 2005-08-22T19:28:56Z 2020-02-15T06:59:53Z +9125 337 2 11847 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9126 338 1 675 0.99 2005-05-28T22:22:44Z 2020-02-15T06:59:53Z +9127 338 2 1510 4.99 2005-06-15T22:39:34Z 2020-02-15T06:59:53Z +9128 338 1 1807 5.99 2005-06-16T20:58:59Z 2020-02-15T06:59:53Z +9129 338 2 1952 4.99 2005-06-17T08:33:02Z 2020-02-15T06:59:53Z +9130 338 1 2148 6.99 2005-06-17T22:44:35Z 2020-02-15T06:59:53Z +9131 338 1 2179 0.99 2005-06-18T00:41:36Z 2020-02-15T06:59:53Z +9132 338 1 2495 4.99 2005-06-18T22:15:42Z 2020-02-15T06:59:53Z +9133 338 1 3458 5.99 2005-06-21T21:42:49Z 2020-02-15T06:59:53Z +9134 338 1 3516 0.99 2005-07-06T00:50:30Z 2020-02-15T06:59:53Z +9135 338 2 3772 2.99 2005-07-06T13:22:53Z 2020-02-15T06:59:53Z +9136 338 2 4104 5.99 2005-07-07T06:25:41Z 2020-02-15T06:59:53Z +9137 338 2 4779 4.99 2005-07-08T15:53:41Z 2020-02-15T06:59:53Z +9138 338 1 5309 4.99 2005-07-09T16:00:16Z 2020-02-15T06:59:53Z +9139 338 1 6236 2.99 2005-07-11T14:18:17Z 2020-02-15T06:59:53Z +9140 338 1 6360 4.99 2005-07-11T21:07:40Z 2020-02-15T06:59:53Z +9141 338 2 7584 3.99 2005-07-27T23:15:46Z 2020-02-15T06:59:53Z +9142 338 1 8766 0.99 2005-07-29T19:41:04Z 2020-02-15T06:59:53Z +9143 338 1 9485 7.99 2005-07-30T23:32:40Z 2020-02-15T06:59:53Z +9144 338 2 10791 2.99 2005-08-01T21:41:52Z 2020-02-15T06:59:53Z +9145 338 1 10897 0.99 2005-08-02T01:23:42Z 2020-02-15T06:59:53Z +9146 338 2 11064 4.99 2005-08-02T06:55:17Z 2020-02-15T06:59:53Z +9147 338 2 11671 4.99 2005-08-17T05:50:21Z 2020-02-15T06:59:53Z +9148 338 2 11719 5.99 2005-08-17T07:46:05Z 2020-02-15T06:59:53Z +9149 338 1 12167 2.99 2005-08-18T01:00:02Z 2020-02-15T06:59:53Z +9150 338 1 13284 3.99 2005-08-19T18:12:31Z 2020-02-15T06:59:53Z +9151 338 1 14619 2.99 2005-08-21T18:10:03Z 2020-02-15T06:59:53Z +9152 338 2 15105 0.99 2005-08-22T12:01:33Z 2020-02-15T06:59:53Z +9153 338 2 15173 6.99 2005-08-22T15:26:29Z 2020-02-15T06:59:53Z +9154 339 1 876 5.99 2005-05-30T05:41:22Z 2020-02-15T06:59:53Z +9155 339 2 1432 3.99 2005-06-15T18:27:24Z 2020-02-15T06:59:53Z +9156 339 1 1536 4.99 2005-06-16T00:52:22Z 2020-02-15T06:59:53Z +9157 339 2 1629 4.99 2005-06-16T07:53:47Z 2020-02-15T06:59:53Z +9158 339 1 3146 6.99 2005-06-20T20:21:48Z 2020-02-15T06:59:53Z +9159 339 1 3335 4.99 2005-06-21T10:09:08Z 2020-02-15T06:59:53Z +9160 339 2 3536 2.99 2005-07-06T01:36:11Z 2020-02-15T06:59:53Z +9161 339 1 4243 4.99 2005-07-07T13:39:58Z 2020-02-15T06:59:53Z +9162 339 1 4467 0.99 2005-07-08T00:13:52Z 2020-02-15T06:59:53Z +9163 339 2 4967 3.99 2005-07-08T23:48:03Z 2020-02-15T06:59:53Z +9164 339 1 5720 3.99 2005-07-10T11:09:12Z 2020-02-15T06:59:53Z +9165 339 1 6072 6.99 2005-07-11T04:52:40Z 2020-02-15T06:59:53Z +9166 339 1 6425 0.99 2005-07-11T23:54:52Z 2020-02-15T06:59:53Z +9167 339 2 6682 7.99 2005-07-12T12:12:43Z 2020-02-15T06:59:53Z +9168 339 2 7244 2.99 2005-07-27T10:27:33Z 2020-02-15T06:59:53Z +9169 339 2 7973 4.99 2005-07-28T14:10:06Z 2020-02-15T06:59:53Z +9170 339 1 8968 0.99 2005-07-30T03:57:32Z 2020-02-15T06:59:53Z +9171 339 2 9208 5.99 2005-07-30T12:54:03Z 2020-02-15T06:59:53Z +9172 339 1 9663 4.99 2005-07-31T06:10:48Z 2020-02-15T06:59:53Z +9173 339 2 10338 3.99 2005-08-01T05:03:03Z 2020-02-15T06:59:53Z +9174 339 2 11171 4.99 2005-08-02T10:23:41Z 2020-02-15T06:59:53Z +9175 339 1 11550 2.99 2005-08-17T01:02:06Z 2020-02-15T06:59:53Z +9176 339 2 11582 3.99 2005-08-17T02:03:49Z 2020-02-15T06:59:53Z +9177 339 2 11699 5.99 2005-08-17T07:11:58Z 2020-02-15T06:59:53Z +9178 339 1 12631 0.99 2005-08-18T17:52:51Z 2020-02-15T06:59:53Z +9179 339 1 13199 3.99 2005-08-19T14:53:22Z 2020-02-15T06:59:53Z +9180 339 1 13575 5.99 2005-08-20T05:15:20Z 2020-02-15T06:59:53Z +9181 339 1 13985 0.99 2005-08-20T19:13:06Z 2020-02-15T06:59:53Z +9182 339 1 14636 4.99 2005-08-21T18:59:17Z 2020-02-15T06:59:53Z +9183 339 2 14758 3.99 2005-08-21T23:24:52Z 2020-02-15T06:59:53Z +9184 340 2 1205 4.99 2005-06-15T02:25:56Z 2020-02-15T06:59:53Z +9185 340 1 1697 3.99 2005-06-16T12:55:20Z 2020-02-15T06:59:53Z +9186 340 1 2177 5.99 2005-06-18T00:34:45Z 2020-02-15T06:59:53Z +9187 340 2 2183 4.99 2005-06-18T01:06:01Z 2020-02-15T06:59:53Z +9188 340 2 2607 5.99 2005-06-19T06:55:01Z 2020-02-15T06:59:53Z +9189 340 1 2653 5.99 2005-06-19T10:36:53Z 2020-02-15T06:59:53Z +9190 340 1 3264 0.99 2005-06-21T04:19:03Z 2020-02-15T06:59:53Z +9191 340 1 3455 2.99 2005-06-21T21:17:51Z 2020-02-15T06:59:53Z +9192 340 2 4475 2.99 2005-07-08T00:27:30Z 2020-02-15T06:59:53Z +9193 340 1 4742 0.99 2005-07-08T13:35:23Z 2020-02-15T06:59:53Z +9194 340 2 6381 4.99 2005-07-11T21:58:48Z 2020-02-15T06:59:53Z +9195 340 2 7617 2.99 2005-07-28T00:18:40Z 2020-02-15T06:59:53Z +9196 340 2 8274 4.99 2005-07-29T01:34:32Z 2020-02-15T06:59:53Z +9197 340 1 8541 0.99 2005-07-29T10:55:01Z 2020-02-15T06:59:53Z +9198 340 2 8551 4.99 2005-07-29T11:13:11Z 2020-02-15T06:59:53Z +9199 340 1 8606 4.99 2005-07-29T13:14:24Z 2020-02-15T06:59:53Z +9200 340 1 9834 2.99 2005-07-31T12:05:42Z 2020-02-15T06:59:53Z +9201 340 1 10292 2.99 2005-08-01T03:42:40Z 2020-02-15T06:59:53Z +9202 340 1 10667 8.99 2005-08-01T16:58:22Z 2020-02-15T06:59:53Z +9203 340 2 10674 3.99 2005-08-01T17:11:52Z 2020-02-15T06:59:53Z +9204 340 1 10809 0.99 2005-08-01T22:39:27Z 2020-02-15T06:59:53Z +9205 340 1 10995 0.99 2005-08-02T04:48:00Z 2020-02-15T06:59:53Z +9206 340 2 12598 4.99 2005-08-18T16:34:03Z 2020-02-15T06:59:53Z +9207 340 2 12908 1.99 2005-08-19T04:19:05Z 2020-02-15T06:59:53Z +9208 340 2 12940 2.99 2005-08-19T05:38:29Z 2020-02-15T06:59:53Z +9209 340 1 13425 2.99 2005-08-19T23:11:44Z 2020-02-15T06:59:53Z +9210 340 1 14457 4.99 2005-08-21T12:47:38Z 2020-02-15T06:59:53Z +9211 340 2 14718 0.99 2005-08-21T21:39:25Z 2020-02-15T06:59:53Z +9212 340 1 14895 2.99 2005-08-22T04:19:23Z 2020-02-15T06:59:53Z +9213 340 2 15306 2.99 2005-08-22T19:46:36Z 2020-02-15T06:59:53Z +9214 340 1 15378 9.99 2005-08-22T22:25:17Z 2020-02-15T06:59:53Z +9215 341 1 1318 2.99 2005-06-15T10:34:26Z 2020-02-15T06:59:53Z +9216 341 2 1520 7.99 2005-06-15T23:57:20Z 2020-02-15T06:59:53Z +9217 341 1 1778 1.99 2005-06-16T18:54:48Z 2020-02-15T06:59:53Z +9218 341 1 1849 7.99 2005-06-17T00:13:19Z 2020-02-15T06:59:53Z +9219 341 2 2829 2.99 2005-06-19T21:11:30Z 2020-02-15T06:59:53Z +9220 341 2 3130 7.99 2005-06-20T19:03:22Z 2020-02-15T06:59:53Z +9221 341 1 3382 5.99 2005-06-21T14:05:23Z 2020-02-15T06:59:53Z +9222 341 2 3938 4.99 2005-07-06T21:15:45Z 2020-02-15T06:59:53Z +9223 341 1 4624 2.99 2005-07-08T08:12:17Z 2020-02-15T06:59:53Z +9224 341 2 5487 4.99 2005-07-10T00:01:50Z 2020-02-15T06:59:53Z +9225 341 2 5931 0.99 2005-07-10T22:04:19Z 2020-02-15T06:59:53Z +9226 341 2 7473 2.99 2005-07-27T19:05:40Z 2020-02-15T06:59:53Z +9227 341 1 8661 2.99 2005-07-29T15:28:24Z 2020-02-15T06:59:53Z +9228 341 1 8728 9.99 2005-07-29T18:12:49Z 2020-02-15T06:59:53Z +9229 341 2 10605 0.99 2005-08-01T14:36:26Z 2020-02-15T06:59:53Z +9230 341 1 11305 6.99 2005-08-02T15:44:55Z 2020-02-15T06:59:53Z +9231 341 1 11723 2.99 2005-08-17T07:56:22Z 2020-02-15T06:59:53Z +9232 341 2 13059 0.99 2005-08-19T09:42:01Z 2020-02-15T06:59:53Z +9233 341 2 13074 8.99 2005-08-19T10:06:53Z 2020-02-15T06:59:53Z +9234 341 2 13806 4.99 2005-08-20T12:53:46Z 2020-02-15T06:59:53Z +9235 341 2 14344 4.99 2005-08-21T08:40:56Z 2020-02-15T06:59:53Z +9236 341 2 15030 0.99 2005-08-22T09:10:21Z 2020-02-15T06:59:53Z +9237 341 2 15938 6.99 2005-08-23T18:43:31Z 2020-02-15T06:59:53Z +9238 342 2 2190 5.99 2005-06-18T01:29:51Z 2020-02-15T06:59:53Z +9239 342 1 2914 5.99 2005-06-20T03:43:18Z 2020-02-15T06:59:53Z +9240 342 1 3081 2.99 2005-06-20T15:29:13Z 2020-02-15T06:59:53Z +9241 342 1 5617 0.99 2005-07-10T05:28:50Z 2020-02-15T06:59:53Z +9242 342 2 6060 4.99 2005-07-11T04:06:17Z 2020-02-15T06:59:53Z +9243 342 2 6429 8.99 2005-07-12T00:02:50Z 2020-02-15T06:59:53Z +9244 342 1 6736 2.99 2005-07-12T14:16:50Z 2020-02-15T06:59:53Z +9245 342 2 6787 7.99 2005-07-12T16:33:28Z 2020-02-15T06:59:53Z +9246 342 2 6997 0.99 2005-07-27T01:14:02Z 2020-02-15T06:59:53Z +9247 342 2 7280 2.99 2005-07-27T11:50:52Z 2020-02-15T06:59:53Z +9248 342 1 9164 2.99 2005-07-30T11:24:14Z 2020-02-15T06:59:53Z +9249 342 1 9526 0.99 2005-07-31T01:02:22Z 2020-02-15T06:59:53Z +9250 342 2 9948 5.99 2005-07-31T15:49:41Z 2020-02-15T06:59:53Z +9251 342 1 9955 0.99 2005-07-31T16:01:26Z 2020-02-15T06:59:53Z +9252 342 2 9956 4.99 2005-07-31T16:03:47Z 2020-02-15T06:59:53Z +9253 342 1 10242 4.99 2005-08-01T02:18:12Z 2020-02-15T06:59:53Z +9254 342 2 11178 2.99 2005-08-02T10:48:10Z 2020-02-15T06:59:53Z +9255 342 2 11446 0.99 2005-08-02T20:33:37Z 2020-02-15T06:59:53Z +9256 342 1 11568 0.99 2005-08-17T01:30:01Z 2020-02-15T06:59:53Z +9257 342 1 12139 6.99 2005-08-17T23:57:13Z 2020-02-15T06:59:53Z +9258 342 1 12404 4.99 2005-08-18T09:36:34Z 2020-02-15T06:59:53Z +9259 342 1 12522 2.99 2005-08-18T13:45:40Z 2020-02-15T06:59:53Z +9260 342 2 12816 4.99 2005-08-19T01:04:05Z 2020-02-15T06:59:53Z +9261 342 2 13368 4.99 2005-08-19T21:19:35Z 2020-02-15T06:59:53Z +9262 342 2 13637 4.99 2005-08-20T07:21:15Z 2020-02-15T06:59:53Z +9263 342 1 13755 2.99 2005-08-20T11:18:53Z 2020-02-15T06:59:53Z +9264 342 2 13827 4.99 2005-08-20T13:47:19Z 2020-02-15T06:59:53Z +9265 342 2 14096 2.99 2005-08-21T00:27:46Z 2020-02-15T06:59:53Z +9266 342 2 14299 0.99 2005-08-21T07:18:57Z 2020-02-15T06:59:53Z +9267 342 2 14683 8.99 2005-08-21T20:27:44Z 2020-02-15T06:59:53Z +9268 342 1 15484 4.99 2005-08-23T02:04:49Z 2020-02-15T06:59:53Z +9269 342 1 15895 3.99 2005-08-23T17:09:31Z 2020-02-15T06:59:53Z +9270 343 2 102 3.99 2005-05-25T17:22:10Z 2020-02-15T06:59:53Z +9271 343 1 455 3.99 2005-05-27T19:43:29Z 2020-02-15T06:59:53Z +9272 343 2 1547 4.99 2005-06-16T01:42:24Z 2020-02-15T06:59:53Z +9273 343 1 1564 6.99 2005-06-16T02:47:07Z 2020-02-15T06:59:53Z +9274 343 2 1879 0.99 2005-06-17T02:57:34Z 2020-02-15T06:59:53Z +9275 343 2 1922 0.99 2005-06-17T06:04:25Z 2020-02-15T06:59:53Z +9276 343 2 2461 6.99 2005-06-18T19:58:12Z 2020-02-15T06:59:53Z +9277 343 1 2980 8.99 2005-06-20T08:35:03Z 2020-02-15T06:59:53Z +9278 343 1 3407 0.99 2005-06-21T16:14:02Z 2020-02-15T06:59:53Z +9279 343 1 3978 5.99 2005-07-06T23:04:33Z 2020-02-15T06:59:53Z +9280 343 1 4472 7.99 2005-07-08T00:22:06Z 2020-02-15T06:59:53Z +9281 343 2 5097 4.99 2005-07-09T06:09:51Z 2020-02-15T06:59:53Z +9282 343 1 5337 3.99 2005-07-09T17:03:50Z 2020-02-15T06:59:53Z +9283 343 1 7069 6.99 2005-07-27T03:59:35Z 2020-02-15T06:59:53Z +9284 343 2 8012 5.99 2005-07-28T15:29:00Z 2020-02-15T06:59:53Z +9285 343 2 8088 9.99 2005-07-28T18:23:49Z 2020-02-15T06:59:53Z +9286 343 2 9458 5.99 2005-07-30T22:24:34Z 2020-02-15T06:59:53Z +9287 343 2 9739 2.99 2005-07-31T09:08:03Z 2020-02-15T06:59:53Z +9288 343 1 10822 0.99 2005-08-01T22:54:28Z 2020-02-15T06:59:53Z +9289 343 1 11212 0.99 2005-08-02T12:18:29Z 2020-02-15T06:59:53Z +9290 343 2 11570 2.99 2005-08-17T01:34:32Z 2020-02-15T06:59:53Z +9291 343 2 13279 4.99 2005-08-19T18:02:18Z 2020-02-15T06:59:53Z +9292 343 2 13522 3.99 2005-08-20T02:44:06Z 2020-02-15T06:59:53Z +9293 343 2 13866 0.99 2005-08-20T15:05:29Z 2020-02-15T06:59:53Z +9294 343 2 15973 5.99 2005-08-23T20:04:41Z 2020-02-15T06:59:53Z +9295 344 2 157 2.99 2005-05-26T01:25:21Z 2020-02-15T06:59:53Z +9296 344 2 813 5.99 2005-05-29T20:14:34Z 2020-02-15T06:59:53Z +9297 344 1 1341 3.99 2005-06-15T12:26:18Z 2020-02-15T06:59:53Z +9298 344 2 1475 4.99 2005-06-15T21:08:01Z 2020-02-15T06:59:53Z +9299 344 1 1731 0.99 2005-06-16T15:32:12Z 2020-02-15T06:59:53Z +9300 344 2 4028 5.99 2005-07-07T02:19:14Z 2020-02-15T06:59:53Z +9301 344 2 4347 3.99 2005-07-07T18:58:57Z 2020-02-15T06:59:53Z +9302 344 2 6363 5.99 2005-07-11T21:13:19Z 2020-02-15T06:59:53Z +9303 344 2 7480 4.99 2005-07-27T19:19:53Z 2020-02-15T06:59:53Z +9304 344 2 8561 2.99 2005-07-29T11:29:12Z 2020-02-15T06:59:53Z +9305 344 2 9788 4.99 2005-07-31T10:28:21Z 2020-02-15T06:59:53Z +9306 344 2 11116 5.99 2005-08-02T08:34:40Z 2020-02-15T06:59:53Z +9307 344 2 12183 5.99 2005-08-18T01:34:13Z 2020-02-15T06:59:53Z +9308 344 2 13014 4.99 2005-08-19T07:56:08Z 2020-02-15T06:59:53Z +9309 344 1 13033 3.99 2005-08-19T08:34:39Z 2020-02-15T06:59:53Z +9310 344 1 14621 0.99 2005-08-21T18:17:59Z 2020-02-15T06:59:53Z +9311 344 2 14624 0.99 2005-08-21T18:32:42Z 2020-02-15T06:59:53Z +9312 344 1 15215 2.99 2005-08-22T16:55:26Z 2020-02-15T06:59:53Z +9313 345 1 206 0.99 2005-05-26T08:01:54Z 2020-02-15T06:59:53Z +9314 345 1 363 0.99 2005-05-27T07:14:00Z 2020-02-15T06:59:53Z +9315 345 2 1210 0.99 2005-06-15T02:57:51Z 2020-02-15T06:59:53Z +9316 345 1 1457 4.99 2005-06-15T20:05:49Z 2020-02-15T06:59:53Z +9317 345 2 1550 0.99 2005-06-16T01:58:35Z 2020-02-15T06:59:53Z +9318 345 2 2766 4.99 2005-06-19T17:45:15Z 2020-02-15T06:59:53Z +9319 345 2 4422 2.99 2005-07-07T22:09:45Z 2020-02-15T06:59:53Z +9320 345 1 4425 2.99 2005-07-07T22:22:44Z 2020-02-15T06:59:53Z +9321 345 2 4450 4.99 2005-07-07T23:20:05Z 2020-02-15T06:59:53Z +9322 345 2 5508 3.99 2005-07-10T00:50:01Z 2020-02-15T06:59:53Z +9323 345 1 6307 7.99 2005-07-11T18:04:29Z 2020-02-15T06:59:53Z +9324 345 1 7092 6.99 2005-07-27T04:46:00Z 2020-02-15T06:59:53Z +9325 345 2 8129 2.99 2005-07-28T19:47:02Z 2020-02-15T06:59:53Z +9326 345 2 8694 8.99 2005-07-29T16:44:48Z 2020-02-15T06:59:53Z +9327 345 1 9163 4.99 2005-07-30T11:23:22Z 2020-02-15T06:59:53Z +9328 345 2 9207 2.99 2005-07-30T12:49:57Z 2020-02-15T06:59:53Z +9329 345 2 10215 8.99 2005-08-01T01:04:28Z 2020-02-15T06:59:53Z +9330 345 2 10982 4.99 2005-08-02T04:19:11Z 2020-02-15T06:59:53Z +9331 345 1 11865 2.99 2005-08-17T14:03:46Z 2020-02-15T06:59:53Z +9332 345 1 12485 4.99 2005-08-18T12:41:41Z 2020-02-15T06:59:53Z +9333 345 2 12805 4.99 2005-08-19T00:36:34Z 2020-02-15T06:59:53Z +9334 345 1 14702 10.99 2005-08-21T21:00:03Z 2020-02-15T06:59:53Z +9335 345 1 15551 4.99 2005-08-23T04:28:25Z 2020-02-15T06:59:53Z +9336 346 1 65 4.99 2005-05-25T09:32:03Z 2020-02-15T06:59:53Z +9337 346 1 810 4.99 2005-05-29T19:12:04Z 2020-02-15T06:59:53Z +9338 346 1 1994 5.99 2005-06-17T11:07:06Z 2020-02-15T06:59:53Z +9339 346 2 3372 2.99 2005-06-21T13:34:19Z 2020-02-15T06:59:53Z +9340 346 1 3421 2.99 2005-06-21T17:22:58Z 2020-02-15T06:59:53Z +9341 346 2 4420 4.99 2005-07-07T22:07:31Z 2020-02-15T06:59:53Z +9342 346 1 4958 8.99 2005-07-08T23:19:52Z 2020-02-15T06:59:53Z +9343 346 1 5428 4.99 2005-07-09T21:12:50Z 2020-02-15T06:59:53Z +9344 346 2 5557 4.99 2005-07-10T03:10:21Z 2020-02-15T06:59:53Z +9345 346 2 6136 4.99 2005-07-11T08:34:09Z 2020-02-15T06:59:53Z +9346 346 2 6323 2.99 2005-07-11T19:02:19Z 2020-02-15T06:59:53Z +9347 346 2 6881 8.99 2005-07-12T20:46:35Z 2020-02-15T06:59:53Z +9348 346 2 7943 6.99 2005-07-28T12:50:55Z 2020-02-15T06:59:53Z +9349 346 2 8272 5.99 2005-07-29T01:29:51Z 2020-02-15T06:59:53Z +9350 346 1 8505 6.99 2005-07-29T09:22:52Z 2020-02-15T06:59:53Z +9351 346 2 8543 0.99 2005-07-29T11:01:57Z 2020-02-15T06:59:53Z +9352 346 2 8732 8.99 2005-07-29T18:25:03Z 2020-02-15T06:59:53Z +9353 346 2 9566 4.99 2005-07-31T02:32:10Z 2020-02-15T06:59:53Z +9354 346 1 9848 4.99 2005-07-31T12:44:33Z 2020-02-15T06:59:53Z +9355 346 1 9927 2.99 2005-07-31T15:12:13Z 2020-02-15T06:59:53Z +9356 346 1 10304 5.99 2005-08-01T04:14:12Z 2020-02-15T06:59:53Z +9357 346 2 10389 3.99 2005-08-01T06:46:43Z 2020-02-15T06:59:53Z +9358 346 2 10521 0.99 2005-08-01T11:46:17Z 2020-02-15T06:59:53Z +9359 346 2 11062 4.99 2005-08-02T06:52:54Z 2020-02-15T06:59:53Z +9360 346 1 11375 4.99 2005-08-02T18:14:56Z 2020-02-15T06:59:53Z +9361 346 2 11470 2.99 2005-08-02T21:48:28Z 2020-02-15T06:59:53Z +9362 346 1 14890 5.99 2005-08-22T04:10:49Z 2020-02-15T06:59:53Z +9363 346 2 15459 2.99 2005-08-23T01:09:48Z 2020-02-15T06:59:53Z +9364 346 1 15535 0.99 2005-08-23T03:58:02Z 2020-02-15T06:59:53Z +9365 346 1 15661 8.99 2005-08-23T08:52:03Z 2020-02-15T06:59:53Z +9366 346 2 15825 5.99 2005-08-23T15:10:42Z 2020-02-15T06:59:53Z +9367 346 1 15827 0.99 2005-08-23T15:15:19Z 2020-02-15T06:59:53Z +9368 347 2 1711 8.99 2005-06-16T14:11:52Z 2020-02-15T06:59:53Z +9369 347 2 2274 0.99 2005-06-18T06:31:15Z 2020-02-15T06:59:53Z +9370 347 1 3026 4.99 2005-06-20T11:48:00Z 2020-02-15T06:59:53Z +9371 347 1 3092 8.99 2005-06-20T16:04:42Z 2020-02-15T06:59:53Z +9372 347 1 3326 7.99 2005-06-21T09:04:50Z 2020-02-15T06:59:53Z +9373 347 2 3605 0.99 2005-07-06T05:27:15Z 2020-02-15T06:59:53Z +9374 347 2 3666 4.99 2005-07-06T08:27:43Z 2020-02-15T06:59:53Z +9375 347 1 4232 5.99 2005-07-07T12:49:12Z 2020-02-15T06:59:53Z +9376 347 1 4523 6.99 2005-07-08T03:06:59Z 2020-02-15T06:59:53Z +9377 347 2 5471 0.99 2005-07-09T23:11:52Z 2020-02-15T06:59:53Z +9378 347 1 5819 2.99 2005-07-10T15:56:20Z 2020-02-15T06:59:53Z +9379 347 2 6121 1.99 2005-07-11T07:55:27Z 2020-02-15T06:59:53Z +9380 347 1 7811 0.99 2005-07-28T08:06:01Z 2020-02-15T06:59:53Z +9381 347 2 8148 4.99 2005-07-28T20:39:47Z 2020-02-15T06:59:53Z +9382 347 2 8153 4.99 2005-07-28T20:55:49Z 2020-02-15T06:59:53Z +9383 347 2 8176 4.99 2005-07-28T21:42:08Z 2020-02-15T06:59:53Z +9384 347 2 8378 4.99 2005-07-29T05:28:35Z 2020-02-15T06:59:53Z +9385 347 2 8771 2.99 2005-07-29T19:54:41Z 2020-02-15T06:59:53Z +9386 347 1 9013 4.99 2005-07-30T05:19:20Z 2020-02-15T06:59:53Z +9387 347 1 9582 4.99 2005-07-31T03:05:19Z 2020-02-15T06:59:53Z +9388 347 1 9856 3.99 2005-07-31T13:00:35Z 2020-02-15T06:59:53Z +9389 347 1 9876 2.99 2005-07-31T13:37:51Z 2020-02-15T06:59:53Z +9390 347 2 11738 8.99 2005-08-17T08:45:55Z 2020-02-15T06:59:53Z +9391 347 1 12195 2.99 2005-08-18T02:07:49Z 2020-02-15T06:59:53Z +9392 347 2 12399 10.99 2005-08-18T09:13:42Z 2020-02-15T06:59:53Z +9393 347 2 13314 5.99 2005-08-19T19:12:43Z 2020-02-15T06:59:53Z +9394 347 2 14894 4.99 2005-08-22T04:16:56Z 2020-02-15T06:59:53Z +9395 347 2 14958 2.99 2005-08-22T06:30:10Z 2020-02-15T06:59:53Z +9396 347 2 15426 2.99 2005-08-23T00:07:19Z 2020-02-15T06:59:53Z +9397 347 2 15555 4.99 2005-08-23T04:51:52Z 2020-02-15T06:59:53Z +9398 348 2 153 0.99 2005-05-26T00:47:47Z 2020-02-15T06:59:53Z +9399 348 2 821 0.99 2005-05-29T21:31:12Z 2020-02-15T06:59:53Z +9400 348 1 1654 2.99 2005-06-16T09:42:48Z 2020-02-15T06:59:53Z +9401 348 1 2041 8.99 2005-06-17T14:19:00Z 2020-02-15T06:59:53Z +9402 348 2 2499 0.99 2005-06-18T23:01:36Z 2020-02-15T06:59:53Z +9403 348 2 3494 4.99 2005-07-05T23:47:30Z 2020-02-15T06:59:53Z +9404 348 2 3610 4.99 2005-07-06T05:36:59Z 2020-02-15T06:59:53Z +9405 348 2 4556 9.99 2005-07-08T04:48:41Z 2020-02-15T06:59:53Z +9406 348 2 4633 0.99 2005-07-08T08:39:39Z 2020-02-15T06:59:53Z +9407 348 1 4699 0.99 2005-07-08T11:36:56Z 2020-02-15T06:59:53Z +9408 348 1 4807 8.99 2005-07-08T17:01:48Z 2020-02-15T06:59:53Z +9409 348 1 5345 4.99 2005-07-09T17:28:18Z 2020-02-15T06:59:53Z +9410 348 2 5965 0.99 2005-07-10T23:51:52Z 2020-02-15T06:59:53Z +9411 348 2 6776 2.99 2005-07-12T16:02:09Z 2020-02-15T06:59:53Z +9412 348 2 7380 2.99 2005-07-27T15:37:01Z 2020-02-15T06:59:53Z +9413 348 1 7482 6.99 2005-07-27T19:24:16Z 2020-02-15T06:59:53Z +9414 348 2 7825 4.99 2005-07-28T08:34:57Z 2020-02-15T06:59:53Z +9415 348 1 8500 2.99 2005-07-29T09:12:01Z 2020-02-15T06:59:53Z +9416 348 1 8569 4.99 2005-07-29T11:39:17Z 2020-02-15T06:59:53Z +9417 348 2 8682 4.99 2005-07-29T16:15:26Z 2020-02-15T06:59:53Z +9418 348 2 9482 2.99 2005-07-30T23:29:16Z 2020-02-15T06:59:53Z +9419 348 1 10769 2.99 2005-08-01T20:43:02Z 2020-02-15T06:59:53Z +9420 348 2 10972 2.99 2005-08-02T04:08:25Z 2020-02-15T06:59:53Z +9421 348 1 11262 2.99 2005-08-02T13:58:55Z 2020-02-15T06:59:53Z +9422 348 1 11429 7.99 2005-08-02T20:03:52Z 2020-02-15T06:59:53Z +9423 348 2 12564 2.99 2005-08-18T15:11:35Z 2020-02-15T06:59:53Z +9424 348 2 12884 5.99 2005-08-19T03:34:04Z 2020-02-15T06:59:53Z +9425 348 2 12937 4.99 2005-08-19T05:25:30Z 2020-02-15T06:59:53Z +9426 348 2 13238 2.99 2005-08-19T16:20:56Z 2020-02-15T06:59:53Z +9427 348 2 13602 5.99 2005-08-20T06:02:02Z 2020-02-15T06:59:53Z +9428 348 2 13684 0.99 2005-08-20T08:55:53Z 2020-02-15T06:59:53Z +9429 348 1 13962 1.99 2005-08-20T18:18:06Z 2020-02-15T06:59:53Z +9430 348 2 14079 3.99 2005-08-20T23:29:25Z 2020-02-15T06:59:53Z +9431 348 2 14937 7.99 2005-08-22T05:51:59Z 2020-02-15T06:59:53Z +9432 348 2 15817 0.99 2005-08-23T14:59:51Z 2020-02-15T06:59:53Z +9433 348 1 15944 4.99 2005-08-23T18:50:54Z 2020-02-15T06:59:53Z +9434 349 1 890 4.99 2005-05-30T07:43:04Z 2020-02-15T06:59:53Z +9435 349 1 1197 2.99 2005-06-15T01:42:46Z 2020-02-15T06:59:53Z +9436 349 1 1523 0.99 2005-06-16T00:18:40Z 2020-02-15T06:59:53Z +9437 349 2 2987 6.99 2005-06-20T08:55:50Z 2020-02-15T06:59:53Z +9438 349 1 3067 8.99 2005-06-20T13:59:21Z 2020-02-15T06:59:53Z +9439 349 2 3488 3.99 2005-07-05T23:32:49Z 2020-02-15T06:59:53Z +9440 349 1 4190 2.99 2005-07-07T10:52:39Z 2020-02-15T06:59:53Z +9441 349 2 4494 5.99 2005-07-08T01:42:45Z 2020-02-15T06:59:53Z +9442 349 1 4881 0.99 2005-07-08T19:40:34Z 2020-02-15T06:59:53Z +9443 349 1 5433 4.99 2005-07-09T21:22:00Z 2020-02-15T06:59:53Z +9444 349 1 7002 4.99 2005-07-27T01:26:14Z 2020-02-15T06:59:53Z +9445 349 1 7046 4.99 2005-07-27T03:27:56Z 2020-02-15T06:59:53Z +9446 349 2 7702 2.99 2005-07-28T03:56:05Z 2020-02-15T06:59:53Z +9447 349 2 8297 4.99 2005-07-29T02:45:46Z 2020-02-15T06:59:53Z +9448 349 1 9262 1.99 2005-07-30T14:45:02Z 2020-02-15T06:59:53Z +9449 349 1 9670 5.99 2005-07-31T06:33:33Z 2020-02-15T06:59:53Z +9450 349 1 9731 0.99 2005-07-31T08:54:47Z 2020-02-15T06:59:53Z +9451 349 1 10987 4.99 2005-08-02T04:36:52Z 2020-02-15T06:59:53Z +9452 349 2 11192 4.99 2005-08-02T11:29:41Z 2020-02-15T06:59:53Z +9453 349 2 11492 8.99 2005-08-02T22:46:47Z 2020-02-15T06:59:53Z +9454 349 1 11905 3.99 2005-08-17T15:40:18Z 2020-02-15T06:59:53Z +9455 349 1 13258 4.99 2005-08-19T17:05:37Z 2020-02-15T06:59:53Z +9456 349 2 13636 4.99 2005-08-20T07:20:09Z 2020-02-15T06:59:53Z +9457 349 2 14200 6.99 2005-08-21T03:51:27Z 2020-02-15T06:59:53Z +9458 349 2 14721 6.99 2005-08-21T21:50:51Z 2020-02-15T06:59:53Z +9459 349 2 14908 4.99 2005-08-22T04:44:10Z 2020-02-15T06:59:53Z +9460 349 1 15833 6.99 2005-08-23T15:22:15Z 2020-02-15T06:59:53Z +9461 349 1 15955 5.99 2005-08-23T19:19:06Z 2020-02-15T06:59:53Z +9462 349 1 14915 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9463 350 1 24 4.99 2005-05-25T02:53:02Z 2020-02-15T06:59:53Z +9464 350 1 802 4.99 2005-05-29T17:38:59Z 2020-02-15T06:59:53Z +9465 350 2 2011 3.99 2005-06-17T11:56:09Z 2020-02-15T06:59:53Z +9466 350 1 2619 0.99 2005-06-19T08:03:12Z 2020-02-15T06:59:53Z +9467 350 1 3079 2.99 2005-06-20T15:13:40Z 2020-02-15T06:59:53Z +9468 350 2 3206 0.99 2005-06-21T00:39:39Z 2020-02-15T06:59:53Z +9469 350 1 3529 0.99 2005-07-06T01:15:26Z 2020-02-15T06:59:53Z +9470 350 1 3893 5.99 2005-07-06T18:59:31Z 2020-02-15T06:59:53Z +9471 350 1 4767 2.99 2005-07-08T15:18:53Z 2020-02-15T06:59:53Z +9472 350 1 5240 0.99 2005-07-09T13:14:48Z 2020-02-15T06:59:53Z +9473 350 1 5303 2.99 2005-07-09T15:44:09Z 2020-02-15T06:59:53Z +9474 350 1 5786 1.99 2005-07-10T14:06:44Z 2020-02-15T06:59:53Z +9475 350 2 6408 3.99 2005-07-11T23:03:02Z 2020-02-15T06:59:53Z +9476 350 2 7416 4.99 2005-07-27T16:55:25Z 2020-02-15T06:59:53Z +9477 350 2 11504 0.99 2005-08-16T23:16:46Z 2020-02-15T06:59:53Z +9478 350 2 11595 6.99 2005-08-17T02:53:14Z 2020-02-15T06:59:53Z +9479 350 2 11692 6.99 2005-08-17T06:52:41Z 2020-02-15T06:59:53Z +9480 350 1 11800 0.99 2005-08-17T11:29:52Z 2020-02-15T06:59:53Z +9481 350 2 12252 6.99 2005-08-18T03:59:51Z 2020-02-15T06:59:53Z +9482 350 2 12445 2.99 2005-08-18T10:56:20Z 2020-02-15T06:59:53Z +9483 350 2 13086 0.99 2005-08-19T10:32:28Z 2020-02-15T06:59:53Z +9484 350 2 15789 1.99 2005-08-23T13:56:40Z 2020-02-15T06:59:53Z +9485 350 1 15807 0.99 2005-08-23T14:35:10Z 2020-02-15T06:59:53Z +9486 351 1 1137 1.99 2005-05-31T19:20:14Z 2020-02-15T06:59:53Z +9487 351 2 1792 5.99 2005-06-16T20:04:50Z 2020-02-15T06:59:53Z +9488 351 1 1869 0.99 2005-06-17T02:08:00Z 2020-02-15T06:59:53Z +9489 351 1 2759 2.99 2005-06-19T17:10:24Z 2020-02-15T06:59:53Z +9490 351 1 3836 2.99 2005-07-06T16:26:04Z 2020-02-15T06:59:53Z +9491 351 1 4544 0.99 2005-07-08T04:11:04Z 2020-02-15T06:59:53Z +9492 351 1 4756 1.99 2005-07-08T14:24:00Z 2020-02-15T06:59:53Z +9493 351 2 4761 5.99 2005-07-08T14:51:45Z 2020-02-15T06:59:53Z +9494 351 1 5280 0.99 2005-07-09T14:55:07Z 2020-02-15T06:59:53Z +9495 351 1 5912 3.99 2005-07-10T20:58:22Z 2020-02-15T06:59:53Z +9496 351 2 6180 3.99 2005-07-11T11:06:50Z 2020-02-15T06:59:53Z +9497 351 1 6664 4.99 2005-07-12T11:28:22Z 2020-02-15T06:59:53Z +9498 351 2 6777 5.99 2005-07-12T16:04:40Z 2020-02-15T06:59:53Z +9499 351 2 7630 4.99 2005-07-28T01:01:03Z 2020-02-15T06:59:53Z +9500 351 2 8512 4.99 2005-07-29T09:48:03Z 2020-02-15T06:59:53Z +9501 351 1 9707 7.99 2005-07-31T07:44:18Z 2020-02-15T06:59:53Z +9502 351 2 10119 0.99 2005-07-31T21:20:59Z 2020-02-15T06:59:53Z +9503 351 2 10501 2.99 2005-08-01T11:04:46Z 2020-02-15T06:59:53Z +9504 351 2 11127 0.99 2005-08-02T09:00:59Z 2020-02-15T06:59:53Z +9505 351 1 14368 6.99 2005-08-21T09:31:47Z 2020-02-15T06:59:53Z +9506 351 2 15142 4.99 2005-08-22T13:44:32Z 2020-02-15T06:59:53Z +9507 351 1 15664 4.99 2005-08-23T08:57:11Z 2020-02-15T06:59:53Z +9508 351 2 15712 2.99 2005-08-23T10:43:56Z 2020-02-15T06:59:53Z +9509 351 1 15762 2.99 2005-08-23T13:01:43Z 2020-02-15T06:59:53Z +9510 352 1 784 2.99 2005-05-29T14:44:22Z 2020-02-15T06:59:53Z +9511 352 1 1498 0.99 2005-06-15T21:58:00Z 2020-02-15T06:59:53Z +9512 352 1 1649 4.99 2005-06-16T09:20:33Z 2020-02-15T06:59:53Z +9513 352 1 1678 4.99 2005-06-16T11:08:28Z 2020-02-15T06:59:53Z +9514 352 1 1780 4.99 2005-06-16T19:11:45Z 2020-02-15T06:59:53Z +9515 352 2 3331 4.99 2005-06-21T09:37:53Z 2020-02-15T06:59:53Z +9516 352 2 4116 4.99 2005-07-07T06:56:13Z 2020-02-15T06:59:53Z +9517 352 2 6329 5.99 2005-07-11T19:10:38Z 2020-02-15T06:59:53Z +9518 352 1 7033 2.99 2005-07-27T03:03:25Z 2020-02-15T06:59:53Z +9519 352 1 7419 7.99 2005-07-27T17:04:15Z 2020-02-15T06:59:53Z +9520 352 2 7512 6.99 2005-07-27T20:40:40Z 2020-02-15T06:59:53Z +9521 352 1 7579 4.99 2005-07-27T23:06:41Z 2020-02-15T06:59:53Z +9522 352 1 7845 5.99 2005-07-28T09:18:07Z 2020-02-15T06:59:53Z +9523 352 1 7886 2.99 2005-07-28T10:37:55Z 2020-02-15T06:59:53Z +9524 352 1 9463 0.99 2005-07-30T22:30:57Z 2020-02-15T06:59:53Z +9525 352 1 11793 5.99 2005-08-17T11:05:53Z 2020-02-15T06:59:53Z +9526 352 1 11823 6.99 2005-08-17T12:36:37Z 2020-02-15T06:59:53Z +9527 352 2 11986 0.99 2005-08-17T18:21:58Z 2020-02-15T06:59:53Z +9528 352 2 12234 5.99 2005-08-18T03:17:33Z 2020-02-15T06:59:53Z +9529 352 1 12751 2.99 2005-08-18T22:33:22Z 2020-02-15T06:59:53Z +9530 352 1 14130 4.99 2005-08-21T01:43:11Z 2020-02-15T06:59:53Z +9531 352 2 14852 0.99 2005-08-22T02:25:53Z 2020-02-15T06:59:53Z +9532 352 2 13578 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9533 353 2 1103 6.99 2005-05-31T14:24:18Z 2020-02-15T06:59:53Z +9534 353 2 1359 2.99 2005-06-15T13:30:30Z 2020-02-15T06:59:53Z +9535 353 2 1928 7.99 2005-06-17T06:48:31Z 2020-02-15T06:59:53Z +9536 353 2 3233 6.99 2005-06-21T02:39:31Z 2020-02-15T06:59:53Z +9537 353 2 4380 5.99 2005-07-07T20:35:00Z 2020-02-15T06:59:53Z +9538 353 2 6559 1.99 2005-07-12T05:20:35Z 2020-02-15T06:59:53Z +9539 353 1 6610 3.99 2005-07-12T08:20:02Z 2020-02-15T06:59:53Z +9540 353 2 7993 3.99 2005-07-28T14:56:41Z 2020-02-15T06:59:53Z +9541 353 2 10071 2.99 2005-07-31T19:49:35Z 2020-02-15T06:59:53Z +9542 353 1 11186 0.99 2005-08-02T11:12:08Z 2020-02-15T06:59:53Z +9543 353 2 11414 4.99 2005-08-02T19:43:07Z 2020-02-15T06:59:53Z +9544 353 2 11698 4.99 2005-08-17T07:09:59Z 2020-02-15T06:59:53Z +9545 353 1 12928 5.99 2005-08-19T05:04:09Z 2020-02-15T06:59:53Z +9546 353 2 13604 0.99 2005-08-20T06:03:33Z 2020-02-15T06:59:53Z +9547 353 1 14396 4.99 2005-08-21T10:24:54Z 2020-02-15T06:59:53Z +9548 353 1 15564 1.99 2005-08-23T05:10:42Z 2020-02-15T06:59:53Z +9549 353 2 15650 0.99 2005-08-23T08:29:53Z 2020-02-15T06:59:53Z +9550 353 2 15676 2.99 2005-08-23T09:23:08Z 2020-02-15T06:59:53Z +9551 354 1 140 0.99 2005-05-25T23:34:22Z 2020-02-15T06:59:53Z +9552 354 2 158 1.99 2005-05-26T01:27:11Z 2020-02-15T06:59:53Z +9553 354 2 402 0.99 2005-05-27T13:17:18Z 2020-02-15T06:59:53Z +9554 354 1 1491 0.99 2005-06-15T21:48:18Z 2020-02-15T06:59:53Z +9555 354 1 2275 4.99 2005-06-18T06:31:29Z 2020-02-15T06:59:53Z +9556 354 1 2769 6.99 2005-06-19T17:52:14Z 2020-02-15T06:59:53Z +9557 354 1 3139 2.99 2005-06-20T19:44:45Z 2020-02-15T06:59:53Z +9558 354 2 3821 2.99 2005-07-06T15:36:20Z 2020-02-15T06:59:53Z +9559 354 2 4034 0.99 2005-07-07T02:36:33Z 2020-02-15T06:59:53Z +9560 354 1 4449 5.99 2005-07-07T23:18:58Z 2020-02-15T06:59:53Z +9561 354 2 4745 2.99 2005-07-08T13:45:09Z 2020-02-15T06:59:53Z +9562 354 1 5354 4.99 2005-07-09T18:04:33Z 2020-02-15T06:59:53Z +9563 354 2 5556 4.99 2005-07-10T03:10:17Z 2020-02-15T06:59:53Z +9564 354 1 5873 3.99 2005-07-10T19:02:10Z 2020-02-15T06:59:53Z +9565 354 1 6054 0.99 2005-07-11T03:58:39Z 2020-02-15T06:59:53Z +9566 354 1 6838 4.99 2005-07-12T19:01:30Z 2020-02-15T06:59:53Z +9567 354 1 6926 0.99 2005-07-26T22:52:45Z 2020-02-15T06:59:53Z +9568 354 1 6939 5.99 2005-07-26T23:17:51Z 2020-02-15T06:59:53Z +9569 354 2 7148 0.99 2005-07-27T07:04:09Z 2020-02-15T06:59:53Z +9570 354 2 7235 2.99 2005-07-27T10:09:30Z 2020-02-15T06:59:53Z +9571 354 2 7241 0.99 2005-07-27T10:25:49Z 2020-02-15T06:59:53Z +9572 354 2 8321 4.99 2005-07-29T03:50:54Z 2020-02-15T06:59:53Z +9573 354 2 8477 8.99 2005-07-29T08:40:36Z 2020-02-15T06:59:53Z +9574 354 1 8609 4.99 2005-07-29T13:19:25Z 2020-02-15T06:59:53Z +9575 354 2 8921 0.99 2005-07-30T02:04:02Z 2020-02-15T06:59:53Z +9576 354 1 9130 2.99 2005-07-30T09:55:10Z 2020-02-15T06:59:53Z +9577 354 1 10420 6.99 2005-08-01T08:13:53Z 2020-02-15T06:59:53Z +9578 354 2 12243 6.99 2005-08-18T03:38:54Z 2020-02-15T06:59:53Z +9579 354 1 12544 3.99 2005-08-18T14:25:51Z 2020-02-15T06:59:53Z +9580 354 1 12998 4.99 2005-08-19T07:32:16Z 2020-02-15T06:59:53Z +9581 354 2 14212 2.99 2005-08-21T04:29:26Z 2020-02-15T06:59:53Z +9582 354 2 14245 0.99 2005-08-21T05:30:54Z 2020-02-15T06:59:53Z +9583 354 1 14840 5.99 2005-08-22T01:58:42Z 2020-02-15T06:59:53Z +9584 354 2 15956 0.99 2005-08-23T19:19:21Z 2020-02-15T06:59:53Z +9585 354 1 12759 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9586 354 1 11782 0 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9587 355 1 1110 3.99 2005-05-31T15:22:51Z 2020-02-15T06:59:53Z +9588 355 2 1488 0.99 2005-06-15T21:39:54Z 2020-02-15T06:59:53Z +9589 355 1 1612 2.99 2005-06-16T06:52:05Z 2020-02-15T06:59:53Z +9590 355 1 3567 5.99 2005-07-06T03:09:36Z 2020-02-15T06:59:53Z +9591 355 1 3730 6.99 2005-07-06T11:31:24Z 2020-02-15T06:59:53Z +9592 355 1 5210 4.99 2005-07-09T11:24:19Z 2020-02-15T06:59:53Z +9593 355 1 5564 5.99 2005-07-10T03:23:05Z 2020-02-15T06:59:53Z +9594 355 1 6127 0.99 2005-07-11T08:06:59Z 2020-02-15T06:59:53Z +9595 355 2 6262 6.99 2005-07-11T15:33:24Z 2020-02-15T06:59:53Z +9596 355 1 6437 2.99 2005-07-12T00:20:29Z 2020-02-15T06:59:53Z +9597 355 2 6669 4.99 2005-07-12T11:39:55Z 2020-02-15T06:59:53Z +9598 355 2 7108 4.99 2005-07-27T05:28:32Z 2020-02-15T06:59:53Z +9599 355 2 7477 5.99 2005-07-27T19:11:03Z 2020-02-15T06:59:53Z +9600 355 2 8418 1.99 2005-07-29T06:54:21Z 2020-02-15T06:59:53Z +9601 355 1 10498 0.99 2005-08-01T10:56:48Z 2020-02-15T06:59:53Z +9602 355 2 11471 0.99 2005-08-02T21:49:03Z 2020-02-15T06:59:53Z +9603 355 2 13821 1.99 2005-08-20T13:33:47Z 2020-02-15T06:59:53Z +9604 355 1 15367 3.99 2005-08-22T21:47:53Z 2020-02-15T06:59:53Z +9605 355 2 15531 2.99 2005-08-23T03:52:36Z 2020-02-15T06:59:53Z +9606 355 1 14760 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9607 356 2 1088 4.99 2005-05-31T11:35:13Z 2020-02-15T06:59:53Z +9608 356 1 1410 0.99 2005-06-15T16:59:46Z 2020-02-15T06:59:53Z +9609 356 1 2405 2.99 2005-06-18T16:36:38Z 2020-02-15T06:59:53Z +9610 356 1 2433 4.99 2005-06-18T18:10:17Z 2020-02-15T06:59:53Z +9611 356 2 3829 6.99 2005-07-06T15:59:40Z 2020-02-15T06:59:53Z +9612 356 2 4599 4.99 2005-07-08T06:48:26Z 2020-02-15T06:59:53Z +9613 356 1 5513 0.99 2005-07-10T01:05:41Z 2020-02-15T06:59:53Z +9614 356 1 6593 4.99 2005-07-12T07:21:17Z 2020-02-15T06:59:53Z +9615 356 1 6648 0.99 2005-07-12T10:46:30Z 2020-02-15T06:59:53Z +9616 356 1 7079 2.99 2005-07-27T04:21:58Z 2020-02-15T06:59:53Z +9617 356 1 7758 1.99 2005-07-28T06:23:41Z 2020-02-15T06:59:53Z +9618 356 1 7902 0.99 2005-07-28T11:14:19Z 2020-02-15T06:59:53Z +9619 356 1 8198 3.99 2005-07-28T23:08:05Z 2020-02-15T06:59:53Z +9620 356 1 8975 5.99 2005-07-30T04:10:18Z 2020-02-15T06:59:53Z +9621 356 2 9037 4.99 2005-07-30T06:23:14Z 2020-02-15T06:59:53Z +9622 356 2 9523 3.99 2005-07-31T00:56:09Z 2020-02-15T06:59:53Z +9623 356 2 9883 6.99 2005-07-31T13:53:37Z 2020-02-15T06:59:53Z +9624 356 1 10427 3.99 2005-08-01T08:30:11Z 2020-02-15T06:59:53Z +9625 356 1 10854 4.99 2005-08-02T00:02:06Z 2020-02-15T06:59:53Z +9626 356 1 11535 3.99 2005-08-17T00:39:54Z 2020-02-15T06:59:53Z +9627 356 2 11579 2.99 2005-08-17T01:57:49Z 2020-02-15T06:59:53Z +9628 356 2 12037 4.99 2005-08-17T20:21:35Z 2020-02-15T06:59:53Z +9629 356 2 12876 2.99 2005-08-19T03:12:19Z 2020-02-15T06:59:53Z +9630 356 1 12913 0.99 2005-08-19T04:25:39Z 2020-02-15T06:59:53Z +9631 356 2 13107 4.99 2005-08-19T11:13:58Z 2020-02-15T06:59:53Z +9632 356 2 13442 5.99 2005-08-19T23:50:45Z 2020-02-15T06:59:53Z +9633 356 2 13703 6.99 2005-08-20T09:29:35Z 2020-02-15T06:59:53Z +9634 356 1 15705 4.99 2005-08-23T10:32:52Z 2020-02-15T06:59:53Z +9635 356 2 15754 5.99 2005-08-23T12:43:42Z 2020-02-15T06:59:53Z +9636 356 1 15757 2.99 2005-08-23T12:47:16Z 2020-02-15T06:59:53Z +9637 357 1 144 2.99 2005-05-25T23:49:56Z 2020-02-15T06:59:53Z +9638 357 1 824 4.99 2005-05-29T21:45:32Z 2020-02-15T06:59:53Z +9639 357 2 945 0.99 2005-05-30T15:33:17Z 2020-02-15T06:59:53Z +9640 357 2 1246 5.99 2005-06-15T05:11:19Z 2020-02-15T06:59:53Z +9641 357 1 1788 1.99 2005-06-16T19:47:18Z 2020-02-15T06:59:53Z +9642 357 2 1971 1.99 2005-06-17T09:23:59Z 2020-02-15T06:59:53Z +9643 357 2 2153 6.99 2005-06-17T22:58:04Z 2020-02-15T06:59:53Z +9644 357 1 3865 3.99 2005-07-06T17:46:57Z 2020-02-15T06:59:53Z +9645 357 1 4478 0.99 2005-07-08T00:39:08Z 2020-02-15T06:59:53Z +9646 357 1 5896 0.99 2005-07-10T20:15:56Z 2020-02-15T06:59:53Z +9647 357 1 6288 8.99 2005-07-11T17:01:52Z 2020-02-15T06:59:53Z +9648 357 2 6367 4.99 2005-07-11T21:18:29Z 2020-02-15T06:59:53Z +9649 357 2 6405 2.99 2005-07-11T22:53:12Z 2020-02-15T06:59:53Z +9650 357 1 6839 0.99 2005-07-12T19:03:19Z 2020-02-15T06:59:53Z +9651 357 1 7353 2.99 2005-07-27T14:38:39Z 2020-02-15T06:59:53Z +9652 357 1 7366 5.99 2005-07-27T15:01:17Z 2020-02-15T06:59:53Z +9653 357 2 8041 2.99 2005-07-28T16:39:56Z 2020-02-15T06:59:53Z +9654 357 1 8124 2.99 2005-07-28T19:28:58Z 2020-02-15T06:59:53Z +9655 357 2 9233 3.99 2005-07-30T13:44:15Z 2020-02-15T06:59:53Z +9656 357 2 10391 2.99 2005-08-01T06:49:05Z 2020-02-15T06:59:53Z +9657 357 1 10502 2.99 2005-08-01T11:06:39Z 2020-02-15T06:59:53Z +9658 357 1 10503 6.99 2005-08-01T11:07:44Z 2020-02-15T06:59:53Z +9659 357 2 10764 0.99 2005-08-01T20:32:42Z 2020-02-15T06:59:53Z +9660 357 2 11065 2.99 2005-08-02T06:57:55Z 2020-02-15T06:59:53Z +9661 357 1 14926 0.99 2005-08-22T05:18:44Z 2020-02-15T06:59:53Z +9662 357 2 15869 2.99 2005-08-23T16:22:20Z 2020-02-15T06:59:53Z +9663 358 2 858 4.99 2005-05-30T02:10:32Z 2020-02-15T06:59:53Z +9664 358 1 1455 2.99 2005-06-15T19:51:06Z 2020-02-15T06:59:53Z +9665 358 2 1908 0.99 2005-06-17T05:10:36Z 2020-02-15T06:59:53Z +9666 358 1 2114 5.99 2005-06-17T20:00:25Z 2020-02-15T06:59:53Z +9667 358 1 2721 2.99 2005-06-19T14:53:24Z 2020-02-15T06:59:53Z +9668 358 1 2749 2.99 2005-06-19T16:27:35Z 2020-02-15T06:59:53Z +9669 358 1 3245 2.99 2005-06-21T03:06:11Z 2020-02-15T06:59:53Z +9670 358 1 3753 2.99 2005-07-06T12:34:06Z 2020-02-15T06:59:53Z +9671 358 1 3809 2.99 2005-07-06T15:16:37Z 2020-02-15T06:59:53Z +9672 358 2 5023 5.99 2005-07-09T02:23:16Z 2020-02-15T06:59:53Z +9673 358 1 6362 2.99 2005-07-11T21:09:31Z 2020-02-15T06:59:53Z +9674 358 1 8621 2.99 2005-07-29T13:52:42Z 2020-02-15T06:59:53Z +9675 358 2 9062 0.99 2005-07-30T07:23:17Z 2020-02-15T06:59:53Z +9676 358 1 9568 0.99 2005-07-31T02:37:44Z 2020-02-15T06:59:53Z +9677 358 1 10193 2.99 2005-08-01T00:33:27Z 2020-02-15T06:59:53Z +9678 358 1 10482 4.99 2005-08-01T10:17:47Z 2020-02-15T06:59:53Z +9679 358 2 11149 5.99 2005-08-02T09:51:43Z 2020-02-15T06:59:53Z +9680 358 2 11653 4.99 2005-08-17T05:06:10Z 2020-02-15T06:59:53Z +9681 358 1 12452 6.99 2005-08-18T11:14:35Z 2020-02-15T06:59:53Z +9682 358 1 13197 2.99 2005-08-19T14:44:03Z 2020-02-15T06:59:53Z +9683 358 1 14004 7.99 2005-08-20T20:16:35Z 2020-02-15T06:59:53Z +9684 359 1 284 8.99 2005-05-26T19:21:44Z 2020-02-15T06:59:53Z +9685 359 2 392 2.99 2005-05-27T11:14:42Z 2020-02-15T06:59:53Z +9686 359 1 528 3.99 2005-05-28T04:30:05Z 2020-02-15T06:59:53Z +9687 359 2 1329 4.99 2005-06-15T11:25:06Z 2020-02-15T06:59:53Z +9688 359 2 1770 1.99 2005-06-16T18:07:55Z 2020-02-15T06:59:53Z +9689 359 1 2401 0.99 2005-06-18T16:22:03Z 2020-02-15T06:59:53Z +9690 359 1 2736 4.99 2005-06-19T15:43:20Z 2020-02-15T06:59:53Z +9691 359 2 4830 7.99 2005-07-08T17:56:23Z 2020-02-15T06:59:53Z +9692 359 2 6424 9.99 2005-07-11T23:49:37Z 2020-02-15T06:59:53Z +9693 359 1 6542 2.99 2005-07-12T04:53:49Z 2020-02-15T06:59:53Z +9694 359 2 6741 0.99 2005-07-12T14:24:16Z 2020-02-15T06:59:53Z +9695 359 2 7098 0.99 2005-07-27T05:01:08Z 2020-02-15T06:59:53Z +9696 359 1 7115 0.99 2005-07-27T05:42:58Z 2020-02-15T06:59:53Z +9697 359 1 8174 4.99 2005-07-28T21:36:52Z 2020-02-15T06:59:53Z +9698 359 1 9898 4.99 2005-07-31T14:12:03Z 2020-02-15T06:59:53Z +9699 359 2 10174 5.99 2005-07-31T23:40:08Z 2020-02-15T06:59:53Z +9700 359 1 11032 4.99 2005-08-02T05:53:35Z 2020-02-15T06:59:53Z +9701 359 1 12611 1.99 2005-08-18T17:09:42Z 2020-02-15T06:59:53Z +9702 359 2 13297 2.99 2005-08-19T18:45:49Z 2020-02-15T06:59:53Z +9703 359 1 14258 1.99 2005-08-21T05:56:36Z 2020-02-15T06:59:53Z +9704 359 2 14598 5.99 2005-08-21T17:40:05Z 2020-02-15T06:59:53Z +9705 359 1 15104 2.99 2005-08-22T12:01:16Z 2020-02-15T06:59:53Z +9706 359 1 15148 4.99 2005-08-22T13:59:19Z 2020-02-15T06:59:53Z +9707 359 1 15453 1.99 2005-08-23T01:01:01Z 2020-02-15T06:59:53Z +9708 359 2 15655 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9709 360 1 633 0.99 2005-05-28T17:37:59Z 2020-02-15T06:59:53Z +9710 360 2 777 4.99 2005-05-29T14:07:58Z 2020-02-15T06:59:53Z +9711 360 2 1492 0.99 2005-06-15T21:48:35Z 2020-02-15T06:59:53Z +9712 360 2 2402 6.99 2005-06-18T16:24:45Z 2020-02-15T06:59:53Z +9713 360 2 2541 3.99 2005-06-19T02:08:10Z 2020-02-15T06:59:53Z +9714 360 2 2780 6.99 2005-06-19T18:19:33Z 2020-02-15T06:59:53Z +9715 360 1 4056 4.99 2005-07-07T03:57:36Z 2020-02-15T06:59:53Z +9716 360 1 4487 7.99 2005-07-08T01:20:22Z 2020-02-15T06:59:53Z +9717 360 2 5456 2.99 2005-07-09T22:31:45Z 2020-02-15T06:59:53Z +9718 360 1 5834 1.99 2005-07-10T16:44:12Z 2020-02-15T06:59:53Z +9719 360 1 5995 3.99 2005-07-11T01:15:39Z 2020-02-15T06:59:53Z +9720 360 1 6442 0.99 2005-07-12T00:29:45Z 2020-02-15T06:59:53Z +9721 360 2 6770 5.99 2005-07-12T15:49:40Z 2020-02-15T06:59:53Z +9722 360 1 7251 2.99 2005-07-27T10:44:55Z 2020-02-15T06:59:53Z +9723 360 2 7588 9.99 2005-07-27T23:23:31Z 2020-02-15T06:59:53Z +9724 360 1 7654 4.99 2005-07-28T02:00:14Z 2020-02-15T06:59:53Z +9725 360 2 7908 3.99 2005-07-28T11:32:57Z 2020-02-15T06:59:53Z +9726 360 1 8220 2.99 2005-07-28T23:46:41Z 2020-02-15T06:59:53Z +9727 360 2 8361 2.99 2005-07-29T05:08:57Z 2020-02-15T06:59:53Z +9728 360 1 9283 4.99 2005-07-30T15:25:19Z 2020-02-15T06:59:53Z +9729 360 2 9352 0.99 2005-07-30T18:29:26Z 2020-02-15T06:59:53Z +9730 360 1 9623 2.99 2005-07-31T04:30:02Z 2020-02-15T06:59:53Z +9731 360 2 9659 3.99 2005-07-31T06:02:14Z 2020-02-15T06:59:53Z +9732 360 2 10857 2.99 2005-08-02T00:07:20Z 2020-02-15T06:59:53Z +9733 360 2 11264 6.99 2005-08-02T14:05:18Z 2020-02-15T06:59:53Z +9734 360 2 11553 4.99 2005-08-17T01:04:31Z 2020-02-15T06:59:53Z +9735 360 2 12088 5.99 2005-08-17T22:20:16Z 2020-02-15T06:59:53Z +9736 360 1 12773 5.99 2005-08-18T23:32:19Z 2020-02-15T06:59:53Z +9737 360 2 12795 0.99 2005-08-19T00:21:52Z 2020-02-15T06:59:53Z +9738 360 1 12839 6.99 2005-08-19T01:53:43Z 2020-02-15T06:59:53Z +9739 360 1 12990 4.99 2005-08-19T07:20:39Z 2020-02-15T06:59:53Z +9740 360 2 13894 7.99 2005-08-20T15:55:20Z 2020-02-15T06:59:53Z +9741 360 1 14700 4.99 2005-08-21T20:53:40Z 2020-02-15T06:59:53Z +9742 360 1 15310 2.99 2005-08-22T19:56:41Z 2020-02-15T06:59:53Z +9743 361 1 368 5.99 2005-05-27T07:42:29Z 2020-02-15T06:59:53Z +9744 361 2 1120 4.99 2005-05-31T16:37:14Z 2020-02-15T06:59:53Z +9745 361 2 2353 4.99 2005-06-18T12:53:25Z 2020-02-15T06:59:53Z +9746 361 2 2558 1.99 2005-06-19T03:09:16Z 2020-02-15T06:59:53Z +9747 361 1 2851 2.99 2005-06-19T23:07:03Z 2020-02-15T06:59:53Z +9748 361 2 3303 2.99 2005-06-21T07:34:14Z 2020-02-15T06:59:53Z +9749 361 2 5154 2.99 2005-07-09T08:46:18Z 2020-02-15T06:59:53Z +9750 361 1 6152 0.99 2005-07-11T09:25:52Z 2020-02-15T06:59:53Z +9751 361 2 6829 4.99 2005-07-12T18:38:59Z 2020-02-15T06:59:53Z +9752 361 2 6911 0.99 2005-07-12T22:14:34Z 2020-02-15T06:59:53Z +9753 361 1 6914 1.99 2005-07-12T22:26:56Z 2020-02-15T06:59:53Z +9754 361 1 7538 2.99 2005-07-27T21:38:04Z 2020-02-15T06:59:53Z +9755 361 2 7712 2.99 2005-07-28T04:29:53Z 2020-02-15T06:59:53Z +9756 361 2 8189 4.99 2005-07-28T22:36:26Z 2020-02-15T06:59:53Z +9757 361 1 10145 1.99 2005-07-31T22:15:13Z 2020-02-15T06:59:53Z +9758 361 1 10151 4.99 2005-07-31T22:22:37Z 2020-02-15T06:59:53Z +9759 361 1 10414 0.99 2005-08-01T08:03:55Z 2020-02-15T06:59:53Z +9760 361 2 10975 0.99 2005-08-02T04:11:25Z 2020-02-15T06:59:53Z +9761 361 2 11031 5.99 2005-08-02T05:52:58Z 2020-02-15T06:59:53Z +9762 361 2 11243 5.99 2005-08-02T13:32:48Z 2020-02-15T06:59:53Z +9763 361 1 11327 2.99 2005-08-02T16:40:47Z 2020-02-15T06:59:53Z +9764 361 1 11991 3.99 2005-08-17T18:27:08Z 2020-02-15T06:59:53Z +9765 361 2 12626 5.99 2005-08-18T17:36:45Z 2020-02-15T06:59:53Z +9766 361 2 12690 2.99 2005-08-18T20:06:57Z 2020-02-15T06:59:53Z +9767 361 1 13135 0.99 2005-08-19T12:22:52Z 2020-02-15T06:59:53Z +9768 361 2 14031 0.99 2005-08-20T21:24:24Z 2020-02-15T06:59:53Z +9769 361 1 14422 0.99 2005-08-21T11:21:46Z 2020-02-15T06:59:53Z +9770 361 1 15759 6.99 2005-08-23T12:47:37Z 2020-02-15T06:59:53Z +9771 361 2 15935 2.99 2005-08-23T18:41:11Z 2020-02-15T06:59:53Z +9772 361 1 13298 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9773 361 1 14769 0 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9774 362 2 1035 4.99 2005-05-31T05:01:09Z 2020-02-15T06:59:53Z +9775 362 1 1429 2.99 2005-06-15T18:24:10Z 2020-02-15T06:59:53Z +9776 362 1 1529 2.99 2005-06-16T00:37:35Z 2020-02-15T06:59:53Z +9777 362 1 1615 2.99 2005-06-16T07:00:28Z 2020-02-15T06:59:53Z +9778 362 2 3197 2.99 2005-06-21T00:07:23Z 2020-02-15T06:59:53Z +9779 362 2 3393 2.99 2005-06-21T15:14:27Z 2020-02-15T06:59:53Z +9780 362 2 4646 8.99 2005-07-08T09:23:26Z 2020-02-15T06:59:53Z +9781 362 1 5227 4.99 2005-07-09T12:16:39Z 2020-02-15T06:59:53Z +9782 362 2 5563 1.99 2005-07-10T03:21:02Z 2020-02-15T06:59:53Z +9783 362 2 5690 5.99 2005-07-10T09:26:49Z 2020-02-15T06:59:53Z +9784 362 1 6204 4.99 2005-07-11T12:29:22Z 2020-02-15T06:59:53Z +9785 362 2 6576 4.99 2005-07-12T06:13:41Z 2020-02-15T06:59:53Z +9786 362 1 6981 4.99 2005-07-27T00:51:38Z 2020-02-15T06:59:53Z +9787 362 1 7172 1.99 2005-07-27T07:59:16Z 2020-02-15T06:59:53Z +9788 362 1 7485 2.99 2005-07-27T19:29:09Z 2020-02-15T06:59:53Z +9789 362 1 8081 2.99 2005-07-28T18:06:46Z 2020-02-15T06:59:53Z +9790 362 2 8325 2.99 2005-07-29T03:57:27Z 2020-02-15T06:59:53Z +9791 362 2 8364 4.99 2005-07-29T05:10:31Z 2020-02-15T06:59:53Z +9792 362 1 8662 0.99 2005-07-29T15:31:33Z 2020-02-15T06:59:53Z +9793 362 1 8714 2.99 2005-07-29T17:31:40Z 2020-02-15T06:59:53Z +9794 362 1 9784 4.99 2005-07-31T10:21:32Z 2020-02-15T06:59:53Z +9795 362 2 10546 3.99 2005-08-01T12:44:17Z 2020-02-15T06:59:53Z +9796 362 2 12244 4.99 2005-08-18T03:39:11Z 2020-02-15T06:59:53Z +9797 362 1 12854 6.99 2005-08-19T02:18:51Z 2020-02-15T06:59:53Z +9798 362 1 13603 6.99 2005-08-20T06:02:48Z 2020-02-15T06:59:53Z +9799 362 2 14051 6.99 2005-08-20T22:09:51Z 2020-02-15T06:59:53Z +9800 362 2 14129 2.99 2005-08-21T01:42:15Z 2020-02-15T06:59:53Z +9801 362 2 14336 4.99 2005-08-21T08:33:42Z 2020-02-15T06:59:53Z +9802 362 1 14752 5.99 2005-08-21T23:11:42Z 2020-02-15T06:59:53Z +9803 362 1 14759 11.99 2005-08-21T23:28:58Z 2020-02-15T06:59:53Z +9804 362 1 14808 4.99 2005-08-22T00:58:35Z 2020-02-15T06:59:53Z +9805 362 1 14950 2.99 2005-08-22T06:17:12Z 2020-02-15T06:59:53Z +9806 363 1 733 3.99 2005-05-29T07:35:21Z 2020-02-15T06:59:53Z +9807 363 2 1426 4.99 2005-06-15T18:16:24Z 2020-02-15T06:59:53Z +9808 363 2 1569 4.99 2005-06-16T03:19:09Z 2020-02-15T06:59:53Z +9809 363 1 1847 4.99 2005-06-17T00:05:22Z 2020-02-15T06:59:53Z +9810 363 1 2540 4.99 2005-06-19T02:04:48Z 2020-02-15T06:59:53Z +9811 363 2 3281 2.99 2005-06-21T06:08:47Z 2020-02-15T06:59:53Z +9812 363 1 3726 3.99 2005-07-06T11:15:49Z 2020-02-15T06:59:53Z +9813 363 2 5687 3.99 2005-07-10T09:07:19Z 2020-02-15T06:59:53Z +9814 363 1 5758 6.99 2005-07-10T12:42:43Z 2020-02-15T06:59:53Z +9815 363 2 6140 4.99 2005-07-11T08:40:47Z 2020-02-15T06:59:53Z +9816 363 2 6705 4.99 2005-07-12T12:53:11Z 2020-02-15T06:59:53Z +9817 363 2 6821 2.99 2005-07-12T18:22:10Z 2020-02-15T06:59:53Z +9818 363 2 6878 4.99 2005-07-12T20:37:13Z 2020-02-15T06:59:53Z +9819 363 1 7256 2.99 2005-07-27T10:58:32Z 2020-02-15T06:59:53Z +9820 363 2 7708 4.99 2005-07-28T04:19:15Z 2020-02-15T06:59:53Z +9821 363 2 8121 2.99 2005-07-28T19:25:45Z 2020-02-15T06:59:53Z +9822 363 2 8522 3.99 2005-07-29T10:16:19Z 2020-02-15T06:59:53Z +9823 363 2 8804 2.99 2005-07-29T21:28:19Z 2020-02-15T06:59:53Z +9824 363 2 8841 4.99 2005-07-29T22:56:07Z 2020-02-15T06:59:53Z +9825 363 1 9968 4.99 2005-07-31T16:32:16Z 2020-02-15T06:59:53Z +9826 363 1 9977 8.99 2005-07-31T16:58:42Z 2020-02-15T06:59:53Z +9827 363 1 10339 6.99 2005-08-01T05:05:50Z 2020-02-15T06:59:53Z +9828 363 2 12189 5.99 2005-08-18T01:51:44Z 2020-02-15T06:59:53Z +9829 363 2 12760 4.99 2005-08-18T23:03:19Z 2020-02-15T06:59:53Z +9830 363 1 13706 9.99 2005-08-20T09:32:56Z 2020-02-15T06:59:53Z +9831 363 1 14694 2.99 2005-08-21T20:46:42Z 2020-02-15T06:59:53Z +9832 363 1 14983 5.99 2005-08-22T07:32:23Z 2020-02-15T06:59:53Z +9833 363 2 15279 4.99 2005-08-22T19:08:49Z 2020-02-15T06:59:53Z +9834 363 1 15335 4.99 2005-08-22T20:44:55Z 2020-02-15T06:59:53Z +9835 364 1 462 5.99 2005-05-27T20:10:36Z 2020-02-15T06:59:53Z +9836 364 1 1722 2.99 2005-06-16T15:12:52Z 2020-02-15T06:59:53Z +9837 364 2 2442 2.99 2005-06-18T18:49:18Z 2020-02-15T06:59:53Z +9838 364 2 2606 4.99 2005-06-19T06:51:32Z 2020-02-15T06:59:53Z +9839 364 2 2857 4.99 2005-06-19T23:15:15Z 2020-02-15T06:59:53Z +9840 364 2 2962 3.99 2005-06-20T07:31:55Z 2020-02-15T06:59:53Z +9841 364 1 3678 4.99 2005-07-06T09:15:15Z 2020-02-15T06:59:53Z +9842 364 2 3961 4.99 2005-07-06T22:11:43Z 2020-02-15T06:59:53Z +9843 364 1 4047 0.99 2005-07-07T03:28:49Z 2020-02-15T06:59:53Z +9844 364 2 4689 4.99 2005-07-08T11:03:47Z 2020-02-15T06:59:53Z +9845 364 1 5872 10.99 2005-07-10T18:54:05Z 2020-02-15T06:59:53Z +9846 364 1 7272 2.99 2005-07-27T11:30:20Z 2020-02-15T06:59:53Z +9847 364 2 9266 4.99 2005-07-30T14:59:01Z 2020-02-15T06:59:53Z +9848 364 1 10092 0.99 2005-07-31T20:28:09Z 2020-02-15T06:59:53Z +9849 364 2 10290 5.99 2005-08-01T03:39:50Z 2020-02-15T06:59:53Z +9850 364 2 11932 4.99 2005-08-17T16:36:12Z 2020-02-15T06:59:53Z +9851 364 1 12557 4.99 2005-08-18T14:51:03Z 2020-02-15T06:59:53Z +9852 364 1 12761 1.99 2005-08-18T23:05:22Z 2020-02-15T06:59:53Z +9853 364 2 12912 3.99 2005-08-19T04:24:35Z 2020-02-15T06:59:53Z +9854 364 1 13698 4.99 2005-08-20T09:24:26Z 2020-02-15T06:59:53Z +9855 364 2 13936 0.99 2005-08-20T17:22:35Z 2020-02-15T06:59:53Z +9856 364 2 14293 4.99 2005-08-21T07:06:47Z 2020-02-15T06:59:53Z +9857 364 1 15242 0.99 2005-08-22T17:48:10Z 2020-02-15T06:59:53Z +9858 365 2 120 5.99 2005-05-25T19:37:47Z 2020-02-15T06:59:53Z +9859 365 1 231 4.99 2005-05-26T11:31:59Z 2020-02-15T06:59:53Z +9860 365 1 1303 1.99 2005-06-15T09:55:57Z 2020-02-15T06:59:53Z +9861 365 1 1578 6.99 2005-06-16T04:08:16Z 2020-02-15T06:59:53Z +9862 365 1 1983 4.99 2005-06-17T10:22:13Z 2020-02-15T06:59:53Z +9863 365 1 2525 2.99 2005-06-19T00:48:22Z 2020-02-15T06:59:53Z +9864 365 2 3156 0.99 2005-06-20T21:03:46Z 2020-02-15T06:59:53Z +9865 365 1 4583 1.99 2005-07-08T06:09:44Z 2020-02-15T06:59:53Z +9866 365 1 6604 4.99 2005-07-12T07:57:45Z 2020-02-15T06:59:53Z +9867 365 1 7488 7.99 2005-07-27T19:36:15Z 2020-02-15T06:59:53Z +9868 365 2 7634 4.99 2005-07-28T01:07:01Z 2020-02-15T06:59:53Z +9869 365 1 8168 4.99 2005-07-28T21:28:32Z 2020-02-15T06:59:53Z +9870 365 2 8782 4.99 2005-07-29T20:29:34Z 2020-02-15T06:59:53Z +9871 365 1 8856 3.99 2005-07-29T23:42:00Z 2020-02-15T06:59:53Z +9872 365 1 9122 2.99 2005-07-30T09:36:52Z 2020-02-15T06:59:53Z +9873 365 2 9184 4.99 2005-07-30T12:10:19Z 2020-02-15T06:59:53Z +9874 365 2 9540 2.99 2005-07-31T01:40:06Z 2020-02-15T06:59:53Z +9875 365 2 10717 2.99 2005-08-01T18:53:53Z 2020-02-15T06:59:53Z +9876 365 2 12322 2.99 2005-08-18T06:35:28Z 2020-02-15T06:59:53Z +9877 365 2 12375 4.99 2005-08-18T08:20:08Z 2020-02-15T06:59:53Z +9878 365 1 12804 8.99 2005-08-19T00:33:15Z 2020-02-15T06:59:53Z +9879 365 1 13619 2.99 2005-08-20T06:39:26Z 2020-02-15T06:59:53Z +9880 365 2 14463 6.99 2005-08-21T12:51:49Z 2020-02-15T06:59:53Z +9881 366 2 911 6.99 2005-05-30T10:50:22Z 2020-02-15T06:59:53Z +9882 366 2 1401 1.99 2005-06-15T16:30:22Z 2020-02-15T06:59:53Z +9883 366 2 2214 0.99 2005-06-18T02:44:37Z 2020-02-15T06:59:53Z +9884 366 2 3632 4.99 2005-07-06T06:38:21Z 2020-02-15T06:59:53Z +9885 366 1 3834 2.99 2005-07-06T16:19:56Z 2020-02-15T06:59:53Z +9886 366 2 4276 2.99 2005-07-07T14:50:59Z 2020-02-15T06:59:53Z +9887 366 1 4569 5.99 2005-07-08T05:30:51Z 2020-02-15T06:59:53Z +9888 366 2 5364 0.99 2005-07-09T18:24:48Z 2020-02-15T06:59:53Z +9889 366 1 6112 6.99 2005-07-11T07:28:05Z 2020-02-15T06:59:53Z +9890 366 1 6366 4.99 2005-07-11T21:18:16Z 2020-02-15T06:59:53Z +9891 366 2 6533 6.99 2005-07-12T04:39:38Z 2020-02-15T06:59:53Z +9892 366 2 6738 5.99 2005-07-12T14:17:55Z 2020-02-15T06:59:53Z +9893 366 1 6842 0.99 2005-07-12T19:07:55Z 2020-02-15T06:59:53Z +9894 366 2 6971 4.99 2005-07-27T00:26:17Z 2020-02-15T06:59:53Z +9895 366 1 7344 1.99 2005-07-27T14:29:28Z 2020-02-15T06:59:53Z +9896 366 1 7562 2.99 2005-07-27T22:25:15Z 2020-02-15T06:59:53Z +9897 366 2 7602 4.99 2005-07-27T23:48:35Z 2020-02-15T06:59:53Z +9898 366 1 7805 6.99 2005-07-28T07:56:41Z 2020-02-15T06:59:53Z +9899 366 2 8169 4.99 2005-07-28T21:29:46Z 2020-02-15T06:59:53Z +9900 366 2 8260 1.99 2005-07-29T01:11:00Z 2020-02-15T06:59:53Z +9901 366 2 8928 2.99 2005-07-30T02:18:19Z 2020-02-15T06:59:53Z +9902 366 1 9316 6.99 2005-07-30T17:11:58Z 2020-02-15T06:59:53Z +9903 366 1 10198 2.99 2005-08-01T00:36:15Z 2020-02-15T06:59:53Z +9904 366 1 10384 4.99 2005-08-01T06:39:14Z 2020-02-15T06:59:53Z +9905 366 2 11337 2.99 2005-08-02T16:59:09Z 2020-02-15T06:59:53Z +9906 366 2 11340 5.99 2005-08-02T17:05:43Z 2020-02-15T06:59:53Z +9907 366 2 12413 2.99 2005-08-18T09:50:34Z 2020-02-15T06:59:53Z +9908 366 1 12608 4.99 2005-08-18T17:05:15Z 2020-02-15T06:59:53Z +9909 366 2 13563 0.99 2005-08-20T04:33:31Z 2020-02-15T06:59:53Z +9910 366 1 13857 2.99 2005-08-20T14:50:06Z 2020-02-15T06:59:53Z +9911 366 1 14147 4.99 2005-08-21T02:14:03Z 2020-02-15T06:59:53Z +9912 366 1 14290 4.99 2005-08-21T07:02:59Z 2020-02-15T06:59:53Z +9913 366 1 14390 2.99 2005-08-21T10:15:38Z 2020-02-15T06:59:53Z +9914 366 1 14717 2.99 2005-08-21T21:30:39Z 2020-02-15T06:59:53Z +9915 366 1 14906 6.99 2005-08-22T04:38:18Z 2020-02-15T06:59:53Z +9916 366 1 15514 2.99 2005-08-23T03:03:40Z 2020-02-15T06:59:53Z +9917 366 1 13421 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9918 367 1 939 0.99 2005-05-30T14:49:34Z 2020-02-15T06:59:53Z +9919 367 1 1089 2.99 2005-05-31T11:38:29Z 2020-02-15T06:59:53Z +9920 367 1 3078 0.99 2005-06-20T15:09:48Z 2020-02-15T06:59:53Z +9921 367 1 4251 8.99 2005-07-07T14:11:55Z 2020-02-15T06:59:53Z +9922 367 2 5490 4.99 2005-07-10T00:09:11Z 2020-02-15T06:59:53Z +9923 367 2 5538 4.99 2005-07-10T02:39:40Z 2020-02-15T06:59:53Z +9924 367 2 5839 2.99 2005-07-10T17:08:30Z 2020-02-15T06:59:53Z +9925 367 2 6228 2.99 2005-07-11T13:58:36Z 2020-02-15T06:59:53Z +9926 367 1 6716 0.99 2005-07-12T13:34:58Z 2020-02-15T06:59:53Z +9927 367 2 6835 5.99 2005-07-12T18:58:03Z 2020-02-15T06:59:53Z +9928 367 2 8490 0.99 2005-07-29T08:59:25Z 2020-02-15T06:59:53Z +9929 367 1 9030 3.99 2005-07-30T06:05:38Z 2020-02-15T06:59:53Z +9930 367 1 9430 4.99 2005-07-30T21:20:13Z 2020-02-15T06:59:53Z +9931 367 1 9912 4.99 2005-07-31T14:49:04Z 2020-02-15T06:59:53Z +9932 367 2 10344 4.99 2005-08-01T05:18:23Z 2020-02-15T06:59:53Z +9933 367 1 12152 4.99 2005-08-18T00:21:35Z 2020-02-15T06:59:53Z +9934 367 2 12362 0.99 2005-08-18T07:48:05Z 2020-02-15T06:59:53Z +9935 367 2 12373 8.99 2005-08-18T08:07:25Z 2020-02-15T06:59:53Z +9936 367 2 12911 6.99 2005-08-19T04:24:10Z 2020-02-15T06:59:53Z +9937 367 2 13235 4.99 2005-08-19T16:17:53Z 2020-02-15T06:59:53Z +9938 367 1 14413 6.99 2005-08-21T11:06:33Z 2020-02-15T06:59:53Z +9939 367 1 14481 10.99 2005-08-21T13:41:14Z 2020-02-15T06:59:53Z +9940 368 1 64 5.99 2005-05-25T09:21:29Z 2020-02-15T06:59:53Z +9941 368 1 125 5.99 2005-05-25T20:48:50Z 2020-02-15T06:59:53Z +9942 368 1 836 2.99 2005-05-29T23:56:42Z 2020-02-15T06:59:53Z +9943 368 1 949 2.99 2005-05-30T15:50:39Z 2020-02-15T06:59:53Z +9944 368 1 1186 0.99 2005-06-15T00:56:45Z 2020-02-15T06:59:53Z +9945 368 1 1513 9.99 2005-06-15T22:53:30Z 2020-02-15T06:59:53Z +9946 368 1 2531 4.99 2005-06-19T01:20:49Z 2020-02-15T06:59:53Z +9947 368 1 2694 4.99 2005-06-19T13:17:21Z 2020-02-15T06:59:53Z +9948 368 1 2744 4.99 2005-06-19T16:20:40Z 2020-02-15T06:59:53Z +9949 368 2 3275 4.99 2005-06-21T05:33:04Z 2020-02-15T06:59:53Z +9950 368 2 3608 4.99 2005-07-06T05:35:39Z 2020-02-15T06:59:53Z +9951 368 2 4066 0.99 2005-07-07T04:34:09Z 2020-02-15T06:59:53Z +9952 368 1 4584 0.99 2005-07-08T06:11:02Z 2020-02-15T06:59:53Z +9953 368 2 4913 8.99 2005-07-08T21:27:48Z 2020-02-15T06:59:53Z +9954 368 1 6124 4.99 2005-07-11T08:02:32Z 2020-02-15T06:59:53Z +9955 368 1 6154 5.99 2005-07-11T09:32:19Z 2020-02-15T06:59:53Z +9956 368 1 6681 2.99 2005-07-12T12:04:12Z 2020-02-15T06:59:53Z +9957 368 2 7571 4.99 2005-07-27T22:43:42Z 2020-02-15T06:59:53Z +9958 368 1 8045 0.99 2005-07-28T16:49:38Z 2020-02-15T06:59:53Z +9959 368 2 8226 2.99 2005-07-29T00:01:04Z 2020-02-15T06:59:53Z +9960 368 1 9400 5.99 2005-07-30T20:15:58Z 2020-02-15T06:59:53Z +9961 368 1 9833 6.99 2005-07-31T12:05:01Z 2020-02-15T06:59:53Z +9962 368 2 10730 8.99 2005-08-01T19:21:42Z 2020-02-15T06:59:53Z +9963 368 2 10848 1.99 2005-08-01T23:50:22Z 2020-02-15T06:59:53Z +9964 368 1 11844 0.99 2005-08-17T13:16:04Z 2020-02-15T06:59:53Z +9965 368 2 12319 2.99 2005-08-18T06:26:45Z 2020-02-15T06:59:53Z +9966 368 1 12796 4.99 2005-08-19T00:22:24Z 2020-02-15T06:59:53Z +9967 368 2 13189 8.99 2005-08-19T14:27:16Z 2020-02-15T06:59:53Z +9968 368 2 13280 2.99 2005-08-19T18:02:51Z 2020-02-15T06:59:53Z +9969 368 2 13378 0.99 2005-08-19T21:33:35Z 2020-02-15T06:59:53Z +9970 368 2 13781 7.99 2005-08-20T12:06:45Z 2020-02-15T06:59:53Z +9971 368 2 13963 1.99 2005-08-20T18:20:18Z 2020-02-15T06:59:53Z +9972 368 1 14393 7.99 2005-08-21T10:22:51Z 2020-02-15T06:59:53Z +9973 368 1 15353 2.99 2005-08-22T21:18:08Z 2020-02-15T06:59:53Z +9974 368 1 15437 2.99 2005-08-23T00:31:09Z 2020-02-15T06:59:53Z +9975 369 1 31 4.99 2005-05-25T04:05:17Z 2020-02-15T06:59:53Z +9976 369 1 294 4.99 2005-05-26T20:29:57Z 2020-02-15T06:59:53Z +9977 369 2 854 0.99 2005-05-30T01:56:11Z 2020-02-15T06:59:53Z +9978 369 2 913 7.99 2005-05-30T11:04:58Z 2020-02-15T06:59:53Z +9979 369 1 1224 0.99 2005-06-15T03:44:25Z 2020-02-15T06:59:53Z +9980 369 1 3490 6.99 2005-07-05T23:37:13Z 2020-02-15T06:59:53Z +9981 369 2 3903 2.99 2005-07-06T19:27:32Z 2020-02-15T06:59:53Z +9982 369 2 4859 4.99 2005-07-08T18:54:04Z 2020-02-15T06:59:53Z +9983 369 1 5043 1.99 2005-07-09T03:25:18Z 2020-02-15T06:59:53Z +9984 369 2 5496 7.99 2005-07-10T00:20:23Z 2020-02-15T06:59:53Z +9985 369 2 5561 2.99 2005-07-10T03:15:24Z 2020-02-15T06:59:53Z +9986 369 1 8236 2.99 2005-07-29T00:27:04Z 2020-02-15T06:59:53Z +9987 369 2 8826 2.99 2005-07-29T22:30:16Z 2020-02-15T06:59:53Z +9988 369 2 9032 4.99 2005-07-30T06:06:54Z 2020-02-15T06:59:53Z +9989 369 1 9089 0.99 2005-07-30T08:23:39Z 2020-02-15T06:59:53Z +9990 369 2 9543 0.99 2005-07-31T01:43:34Z 2020-02-15T06:59:53Z +9991 369 1 9973 4.99 2005-07-31T16:49:31Z 2020-02-15T06:59:53Z +9992 369 1 10299 0.99 2005-08-01T04:08:04Z 2020-02-15T06:59:53Z +9993 369 2 10359 3.99 2005-08-01T05:52:21Z 2020-02-15T06:59:53Z +9994 369 2 10713 2.99 2005-08-01T18:50:05Z 2020-02-15T06:59:53Z +9995 369 1 11084 4.99 2005-08-02T07:34:19Z 2020-02-15T06:59:53Z +9996 369 2 11388 1.99 2005-08-02T18:35:55Z 2020-02-15T06:59:53Z +9997 369 1 12521 0.99 2005-08-18T13:43:07Z 2020-02-15T06:59:53Z +9998 369 2 14684 5.99 2005-08-21T20:28:26Z 2020-02-15T06:59:53Z +9999 369 1 13898 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10000 370 2 1190 6.99 2005-06-15T01:05:32Z 2020-02-15T06:59:53Z +10001 370 2 4400 7.99 2005-07-07T21:22:26Z 2020-02-15T06:59:53Z +10002 370 2 6714 0.99 2005-07-12T13:29:06Z 2020-02-15T06:59:53Z +10003 370 1 6968 0.99 2005-07-27T00:16:45Z 2020-02-15T06:59:53Z +10004 370 2 7152 7.99 2005-07-27T07:15:01Z 2020-02-15T06:59:53Z +10005 370 1 7226 6.99 2005-07-27T09:47:53Z 2020-02-15T06:59:53Z +10006 370 2 7797 0.99 2005-07-28T07:41:07Z 2020-02-15T06:59:53Z +10007 370 2 8258 0.99 2005-07-29T01:03:42Z 2020-02-15T06:59:53Z +10008 370 2 10095 0.99 2005-07-31T20:38:35Z 2020-02-15T06:59:53Z +10009 370 1 10336 4.99 2005-08-01T04:59:53Z 2020-02-15T06:59:53Z +10010 370 1 11540 1.99 2005-08-17T00:48:03Z 2020-02-15T06:59:53Z +10011 370 2 11925 0.99 2005-08-17T16:23:04Z 2020-02-15T06:59:53Z +10012 370 1 12339 4.99 2005-08-18T07:05:06Z 2020-02-15T06:59:53Z +10013 370 1 13039 0.99 2005-08-19T08:55:19Z 2020-02-15T06:59:53Z +10014 370 1 14602 3.99 2005-08-21T17:48:49Z 2020-02-15T06:59:53Z +10015 370 2 14786 2.99 2005-08-22T00:24:42Z 2020-02-15T06:59:53Z +10016 370 2 15368 3.99 2005-08-22T21:57:15Z 2020-02-15T06:59:53Z +10017 370 1 15626 4.99 2005-08-23T07:25:34Z 2020-02-15T06:59:53Z +10018 370 1 15982 5.99 2005-08-23T20:13:31Z 2020-02-15T06:59:53Z +10019 371 1 26 3.99 2005-05-25T03:36:50Z 2020-02-15T06:59:53Z +10020 371 2 286 6.99 2005-05-26T19:44:51Z 2020-02-15T06:59:53Z +10021 371 2 381 4.99 2005-05-27T09:43:25Z 2020-02-15T06:59:53Z +10022 371 1 384 5.99 2005-05-27T10:18:20Z 2020-02-15T06:59:53Z +10023 371 1 825 0.99 2005-05-29T21:49:41Z 2020-02-15T06:59:53Z +10024 371 1 829 2.99 2005-05-29T22:16:42Z 2020-02-15T06:59:53Z +10025 371 2 1212 2.99 2005-06-15T03:03:33Z 2020-02-15T06:59:53Z +10026 371 1 1218 1.99 2005-06-15T03:24:44Z 2020-02-15T06:59:53Z +10027 371 1 1573 6.99 2005-06-16T03:31:39Z 2020-02-15T06:59:53Z +10028 371 2 1675 5.99 2005-06-16T11:04:47Z 2020-02-15T06:59:53Z +10029 371 2 2837 0.99 2005-06-19T22:03:50Z 2020-02-15T06:59:53Z +10030 371 1 3176 3.99 2005-06-20T22:31:54Z 2020-02-15T06:59:53Z +10031 371 2 3396 0.99 2005-06-21T15:23:08Z 2020-02-15T06:59:53Z +10032 371 2 4115 8.99 2005-07-07T06:52:23Z 2020-02-15T06:59:53Z +10033 371 1 4612 1.99 2005-07-08T07:40:44Z 2020-02-15T06:59:53Z +10034 371 1 5171 4.99 2005-07-09T09:26:55Z 2020-02-15T06:59:53Z +10035 371 2 5614 0.99 2005-07-10T05:16:56Z 2020-02-15T06:59:53Z +10036 371 1 6000 2.99 2005-07-11T01:23:06Z 2020-02-15T06:59:53Z +10037 371 1 6460 1.99 2005-07-12T01:13:44Z 2020-02-15T06:59:53Z +10038 371 1 6922 0.99 2005-07-12T22:39:48Z 2020-02-15T06:59:53Z +10039 371 1 7408 3.99 2005-07-27T16:31:40Z 2020-02-15T06:59:53Z +10040 371 1 8138 4.99 2005-07-28T20:12:17Z 2020-02-15T06:59:53Z +10041 371 1 9008 4.99 2005-07-30T05:10:26Z 2020-02-15T06:59:53Z +10042 371 1 9117 8.99 2005-07-30T09:20:59Z 2020-02-15T06:59:53Z +10043 371 1 9635 0.99 2005-07-31T05:12:27Z 2020-02-15T06:59:53Z +10044 371 1 11086 10.99 2005-08-02T07:38:44Z 2020-02-15T06:59:53Z +10045 371 2 12397 9.99 2005-08-18T09:12:52Z 2020-02-15T06:59:53Z +10046 371 2 12584 7.99 2005-08-18T15:51:36Z 2020-02-15T06:59:53Z +10047 371 1 13028 2.99 2005-08-19T08:27:23Z 2020-02-15T06:59:53Z +10048 371 2 13143 3.99 2005-08-19T12:44:38Z 2020-02-15T06:59:53Z +10049 371 1 13191 4.99 2005-08-19T14:28:48Z 2020-02-15T06:59:53Z +10050 371 2 13953 4.99 2005-08-20T18:00:37Z 2020-02-15T06:59:53Z +10051 371 1 14384 2.99 2005-08-21T10:02:37Z 2020-02-15T06:59:53Z +10052 371 1 15786 0.99 2005-08-23T13:48:34Z 2020-02-15T06:59:53Z +10053 371 1 15824 2.99 2005-08-23T15:09:17Z 2020-02-15T06:59:53Z +10054 372 1 617 2.99 2005-05-28T15:49:14Z 2020-02-15T06:59:53Z +10055 372 1 638 2.99 2005-05-28T18:24:43Z 2020-02-15T06:59:53Z +10056 372 1 2315 2.99 2005-06-18T09:03:39Z 2020-02-15T06:59:53Z +10057 372 1 2959 4.99 2005-06-20T07:07:54Z 2020-02-15T06:59:53Z +10058 372 1 3283 3.99 2005-06-21T06:19:07Z 2020-02-15T06:59:53Z +10059 372 1 5229 4.99 2005-07-09T12:30:18Z 2020-02-15T06:59:53Z +10060 372 1 5314 2.99 2005-07-09T16:05:28Z 2020-02-15T06:59:53Z +10061 372 1 5352 2.99 2005-07-09T17:54:58Z 2020-02-15T06:59:53Z +10062 372 1 5501 6.99 2005-07-10T00:33:48Z 2020-02-15T06:59:53Z +10063 372 2 5914 7.99 2005-07-10T21:01:12Z 2020-02-15T06:59:53Z +10064 372 2 6692 4.99 2005-07-12T12:35:39Z 2020-02-15T06:59:53Z +10065 372 1 7190 4.99 2005-07-27T08:36:01Z 2020-02-15T06:59:53Z +10066 372 2 7234 5.99 2005-07-27T10:08:45Z 2020-02-15T06:59:53Z +10067 372 2 7735 4.99 2005-07-28T05:09:56Z 2020-02-15T06:59:53Z +10068 372 2 8009 7.99 2005-07-28T15:25:58Z 2020-02-15T06:59:53Z +10069 372 1 8059 2.99 2005-07-28T17:09:59Z 2020-02-15T06:59:53Z +10070 372 1 8358 0.99 2005-07-29T05:00:58Z 2020-02-15T06:59:53Z +10071 372 1 8724 0.99 2005-07-29T18:05:21Z 2020-02-15T06:59:53Z +10072 372 1 8755 2.99 2005-07-29T19:18:31Z 2020-02-15T06:59:53Z +10073 372 2 8837 8.99 2005-07-29T22:49:00Z 2020-02-15T06:59:53Z +10074 372 1 9128 5.99 2005-07-30T09:51:14Z 2020-02-15T06:59:53Z +10075 372 2 11134 10.99 2005-08-02T09:19:22Z 2020-02-15T06:59:53Z +10076 372 2 11438 3.99 2005-08-02T20:21:08Z 2020-02-15T06:59:53Z +10077 372 2 11555 4.99 2005-08-17T01:08:59Z 2020-02-15T06:59:53Z +10078 372 1 12224 0.99 2005-08-18T02:59:09Z 2020-02-15T06:59:53Z +10079 372 1 12714 3.99 2005-08-18T21:08:01Z 2020-02-15T06:59:53Z +10080 372 2 13402 4.99 2005-08-19T22:16:53Z 2020-02-15T06:59:53Z +10081 372 2 13871 8.99 2005-08-20T15:10:13Z 2020-02-15T06:59:53Z +10082 372 2 14037 9.99 2005-08-20T21:35:58Z 2020-02-15T06:59:53Z +10083 372 1 14211 4.99 2005-08-21T04:29:11Z 2020-02-15T06:59:53Z +10084 372 1 14331 2.99 2005-08-21T08:29:38Z 2020-02-15T06:59:53Z +10085 372 1 14770 1.99 2005-08-21T23:47:16Z 2020-02-15T06:59:53Z +10086 372 2 15041 0.99 2005-08-22T09:43:18Z 2020-02-15T06:59:53Z +10087 372 1 15563 2.99 2005-08-23T05:08:58Z 2020-02-15T06:59:53Z +10088 373 2 257 4.99 2005-05-26T15:27:05Z 2020-02-15T06:59:53Z +10089 373 1 1472 6.99 2005-06-15T20:54:55Z 2020-02-15T06:59:53Z +10090 373 1 3161 2.99 2005-06-20T21:21:01Z 2020-02-15T06:59:53Z +10091 373 2 3609 2.99 2005-07-06T05:36:22Z 2020-02-15T06:59:53Z +10092 373 2 3667 4.99 2005-07-06T08:36:34Z 2020-02-15T06:59:53Z +10093 373 1 4325 7.99 2005-07-07T17:59:24Z 2020-02-15T06:59:53Z +10094 373 1 5120 5.99 2005-07-09T07:14:23Z 2020-02-15T06:59:53Z +10095 373 1 6202 3.99 2005-07-11T12:24:25Z 2020-02-15T06:59:53Z +10096 373 2 6311 0.99 2005-07-11T18:18:52Z 2020-02-15T06:59:53Z +10097 373 1 6944 4.99 2005-07-26T23:34:02Z 2020-02-15T06:59:53Z +10098 373 1 7094 0.99 2005-07-27T04:47:33Z 2020-02-15T06:59:53Z +10099 373 2 7206 3.99 2005-07-27T09:07:05Z 2020-02-15T06:59:53Z +10100 373 1 7615 0.99 2005-07-28T00:15:24Z 2020-02-15T06:59:53Z +10101 373 1 8611 3.99 2005-07-29T13:26:21Z 2020-02-15T06:59:53Z +10102 373 2 9327 8.99 2005-07-30T17:31:03Z 2020-02-15T06:59:53Z +10103 373 1 9397 4.99 2005-07-30T20:07:29Z 2020-02-15T06:59:53Z +10104 373 2 9480 0.99 2005-07-30T23:26:03Z 2020-02-15T06:59:53Z +10105 373 1 9966 4.99 2005-07-31T16:26:46Z 2020-02-15T06:59:53Z +10106 373 1 10010 6.99 2005-07-31T18:01:36Z 2020-02-15T06:59:53Z +10107 373 1 10221 4.99 2005-08-01T01:16:50Z 2020-02-15T06:59:53Z +10108 373 1 10758 5.99 2005-08-01T20:22:51Z 2020-02-15T06:59:53Z +10109 373 2 11066 7.99 2005-08-02T06:58:32Z 2020-02-15T06:59:53Z +10110 373 2 11512 7.99 2005-08-16T23:51:06Z 2020-02-15T06:59:53Z +10111 373 2 11663 3.99 2005-08-17T05:30:19Z 2020-02-15T06:59:53Z +10112 373 2 11976 3.99 2005-08-17T17:59:19Z 2020-02-15T06:59:53Z +10113 373 1 12142 5.99 2005-08-18T00:04:12Z 2020-02-15T06:59:53Z +10114 373 2 12536 5.99 2005-08-18T14:06:06Z 2020-02-15T06:59:53Z +10115 373 1 12748 7.99 2005-08-18T22:29:05Z 2020-02-15T06:59:53Z +10116 373 2 12780 0.99 2005-08-18T23:48:16Z 2020-02-15T06:59:53Z +10117 373 2 13299 2.99 2005-08-19T18:46:33Z 2020-02-15T06:59:53Z +10118 373 1 13329 3.99 2005-08-19T19:56:55Z 2020-02-15T06:59:53Z +10119 373 2 13467 2.99 2005-08-20T00:56:44Z 2020-02-15T06:59:53Z +10120 373 2 15014 6.99 2005-08-22T08:43:11Z 2020-02-15T06:59:53Z +10121 373 1 15068 3.99 2005-08-22T10:50:13Z 2020-02-15T06:59:53Z +10122 373 1 11739 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10123 374 1 521 0.99 2005-05-28T03:32:22Z 2020-02-15T06:59:53Z +10124 374 2 910 2.99 2005-05-30T10:46:16Z 2020-02-15T06:59:53Z +10125 374 2 919 0.99 2005-05-30T11:35:06Z 2020-02-15T06:59:53Z +10126 374 1 1548 1.99 2005-06-16T01:43:33Z 2020-02-15T06:59:53Z +10127 374 2 2046 1.99 2005-06-17T14:39:50Z 2020-02-15T06:59:53Z +10128 374 2 2487 4.99 2005-06-18T21:32:54Z 2020-02-15T06:59:53Z +10129 374 2 2641 2.99 2005-06-19T09:38:33Z 2020-02-15T06:59:53Z +10130 374 1 3797 1.99 2005-07-06T14:54:52Z 2020-02-15T06:59:53Z +10131 374 1 5463 4.99 2005-07-09T22:57:02Z 2020-02-15T06:59:53Z +10132 374 1 5570 6.99 2005-07-10T03:46:47Z 2020-02-15T06:59:53Z +10133 374 2 5591 3.99 2005-07-10T04:25:03Z 2020-02-15T06:59:53Z +10134 374 2 5945 2.99 2005-07-10T22:52:42Z 2020-02-15T06:59:53Z +10135 374 2 6315 0.99 2005-07-11T18:42:49Z 2020-02-15T06:59:53Z +10136 374 2 7837 0.99 2005-07-28T08:58:32Z 2020-02-15T06:59:53Z +10137 374 2 8586 7.99 2005-07-29T12:16:34Z 2020-02-15T06:59:53Z +10138 374 2 9113 0.99 2005-07-30T09:09:03Z 2020-02-15T06:59:53Z +10139 374 1 9866 6.99 2005-07-31T13:13:50Z 2020-02-15T06:59:53Z +10140 374 1 10695 2.99 2005-08-01T18:16:20Z 2020-02-15T06:59:53Z +10141 374 1 11619 0.99 2005-08-17T04:03:26Z 2020-02-15T06:59:53Z +10142 374 2 12696 2.99 2005-08-18T20:13:08Z 2020-02-15T06:59:53Z +10143 374 1 13337 2.99 2005-08-19T20:06:57Z 2020-02-15T06:59:53Z +10144 374 2 13734 4.99 2005-08-20T10:29:57Z 2020-02-15T06:59:53Z +10145 374 2 14524 8.99 2005-08-21T15:05:27Z 2020-02-15T06:59:53Z +10146 374 2 15053 5.99 2005-08-22T10:13:09Z 2020-02-15T06:59:53Z +10147 374 1 15200 2.99 2005-08-22T16:22:53Z 2020-02-15T06:59:53Z +10148 374 2 15202 4.99 2005-08-22T16:26:53Z 2020-02-15T06:59:53Z +10149 374 2 15366 6.99 2005-08-22T21:45:57Z 2020-02-15T06:59:53Z +10150 374 2 15966 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10151 375 2 307 8.99 2005-05-26T21:48:13Z 2020-02-15T06:59:53Z +10152 375 1 412 4.99 2005-05-27T14:17:23Z 2020-02-15T06:59:53Z +10153 375 2 749 4.99 2005-05-29T09:33:33Z 2020-02-15T06:59:53Z +10154 375 1 873 2.99 2005-05-30T05:15:20Z 2020-02-15T06:59:53Z +10155 375 2 1404 2.99 2005-06-15T16:38:53Z 2020-02-15T06:59:53Z +10156 375 1 1499 5.99 2005-06-15T21:58:07Z 2020-02-15T06:59:53Z +10157 375 1 2236 4.99 2005-06-18T04:12:33Z 2020-02-15T06:59:53Z +10158 375 1 3981 6.99 2005-07-06T23:12:12Z 2020-02-15T06:59:53Z +10159 375 2 4335 4.99 2005-07-07T18:33:57Z 2020-02-15T06:59:53Z +10160 375 2 5474 2.99 2005-07-09T23:23:57Z 2020-02-15T06:59:53Z +10161 375 1 7856 4.99 2005-07-28T09:48:24Z 2020-02-15T06:59:53Z +10162 375 2 8900 2.99 2005-07-30T01:07:03Z 2020-02-15T06:59:53Z +10163 375 1 10274 0.99 2005-08-01T03:16:51Z 2020-02-15T06:59:53Z +10164 375 2 10589 1.99 2005-08-01T14:11:09Z 2020-02-15T06:59:53Z +10165 375 1 10640 0.99 2005-08-01T15:44:51Z 2020-02-15T06:59:53Z +10166 375 1 10672 4.99 2005-08-01T17:10:54Z 2020-02-15T06:59:53Z +10167 375 1 10859 5.99 2005-08-02T00:11:39Z 2020-02-15T06:59:53Z +10168 375 1 10961 6.99 2005-08-02T03:47:55Z 2020-02-15T06:59:53Z +10169 375 2 11008 5.99 2005-08-02T05:06:17Z 2020-02-15T06:59:53Z +10170 375 2 12122 9.99 2005-08-17T23:20:45Z 2020-02-15T06:59:53Z +10171 375 2 12663 0.99 2005-08-18T19:10:52Z 2020-02-15T06:59:53Z +10172 375 1 13836 4.99 2005-08-20T14:18:16Z 2020-02-15T06:59:53Z +10173 375 1 15004 2.99 2005-08-22T08:15:21Z 2020-02-15T06:59:53Z +10174 375 1 15505 4.99 2005-08-23T02:46:13Z 2020-02-15T06:59:53Z +10175 376 1 554 0.99 2005-05-28T08:23:16Z 2020-02-15T06:59:53Z +10176 376 2 1208 0.99 2005-06-15T02:30:03Z 2020-02-15T06:59:53Z +10177 376 1 2779 0.99 2005-06-19T18:19:07Z 2020-02-15T06:59:53Z +10178 376 2 3719 2.99 2005-07-06T11:05:55Z 2020-02-15T06:59:53Z +10179 376 1 4163 0.99 2005-07-07T09:19:28Z 2020-02-15T06:59:53Z +10180 376 2 4166 8.99 2005-07-07T09:33:30Z 2020-02-15T06:59:53Z +10181 376 1 4320 3.99 2005-07-07T17:51:59Z 2020-02-15T06:59:53Z +10182 376 1 4554 5.99 2005-07-08T04:48:03Z 2020-02-15T06:59:53Z +10183 376 1 4869 4.99 2005-07-08T19:14:05Z 2020-02-15T06:59:53Z +10184 376 1 5675 4.99 2005-07-10T08:31:06Z 2020-02-15T06:59:53Z +10185 376 1 6524 6.99 2005-07-12T04:14:35Z 2020-02-15T06:59:53Z +10186 376 1 6545 8.99 2005-07-12T04:56:30Z 2020-02-15T06:59:53Z +10187 376 2 6807 2.99 2005-07-12T17:33:53Z 2020-02-15T06:59:53Z +10188 376 1 8269 2.99 2005-07-29T01:26:54Z 2020-02-15T06:59:53Z +10189 376 1 8420 5.99 2005-07-29T07:00:45Z 2020-02-15T06:59:53Z +10190 376 1 9773 4.99 2005-07-31T09:56:56Z 2020-02-15T06:59:53Z +10191 376 1 9828 2.99 2005-07-31T11:56:57Z 2020-02-15T06:59:53Z +10192 376 1 9872 0.99 2005-07-31T13:27:55Z 2020-02-15T06:59:53Z +10193 376 2 10413 3.99 2005-08-01T07:59:39Z 2020-02-15T06:59:53Z +10194 376 1 10810 3.99 2005-08-01T22:40:39Z 2020-02-15T06:59:53Z +10195 376 1 11144 4.99 2005-08-02T09:39:17Z 2020-02-15T06:59:53Z +10196 376 2 11792 4.99 2005-08-17T11:03:53Z 2020-02-15T06:59:53Z +10197 376 1 11851 4.99 2005-08-17T13:30:27Z 2020-02-15T06:59:53Z +10198 376 1 13009 0.99 2005-08-19T07:50:35Z 2020-02-15T06:59:53Z +10199 376 1 13141 0.99 2005-08-19T12:41:41Z 2020-02-15T06:59:53Z +10200 376 2 13761 4.99 2005-08-20T11:28:50Z 2020-02-15T06:59:53Z +10201 376 1 15107 4.99 2005-08-22T12:05:02Z 2020-02-15T06:59:53Z +10202 376 1 15382 2.99 2005-08-22T22:30:50Z 2020-02-15T06:59:53Z +10203 377 2 2556 3.99 2005-06-19T03:07:32Z 2020-02-15T06:59:53Z +10204 377 1 3080 1.99 2005-06-20T15:22:32Z 2020-02-15T06:59:53Z +10205 377 2 3086 0.99 2005-06-20T15:42:40Z 2020-02-15T06:59:53Z +10206 377 2 3136 2.99 2005-06-20T19:39:08Z 2020-02-15T06:59:53Z +10207 377 2 3443 4.99 2005-06-21T20:19:00Z 2020-02-15T06:59:53Z +10208 377 1 3858 2.99 2005-07-06T17:17:57Z 2020-02-15T06:59:53Z +10209 377 2 4053 0.99 2005-07-07T03:39:22Z 2020-02-15T06:59:53Z +10210 377 1 4077 0.99 2005-07-07T04:53:40Z 2020-02-15T06:59:53Z +10211 377 1 4225 0.99 2005-07-07T12:24:37Z 2020-02-15T06:59:53Z +10212 377 2 6893 7.99 2005-07-12T21:20:11Z 2020-02-15T06:59:53Z +10213 377 1 7697 1.99 2005-07-28T03:43:45Z 2020-02-15T06:59:53Z +10214 377 2 8018 10.99 2005-07-28T15:36:48Z 2020-02-15T06:59:53Z +10215 377 2 8916 4.99 2005-07-30T01:42:21Z 2020-02-15T06:59:53Z +10216 377 2 9461 3.99 2005-07-30T22:29:13Z 2020-02-15T06:59:53Z +10217 377 1 9564 0.99 2005-07-31T02:31:37Z 2020-02-15T06:59:53Z +10218 377 1 10013 4.99 2005-07-31T18:08:21Z 2020-02-15T06:59:53Z +10219 377 1 10183 8.99 2005-08-01T00:08:01Z 2020-02-15T06:59:53Z +10220 377 1 10738 3.99 2005-08-01T19:39:08Z 2020-02-15T06:59:53Z +10221 377 1 10943 2.99 2005-08-02T03:17:29Z 2020-02-15T06:59:53Z +10222 377 1 12390 1.99 2005-08-18T08:51:42Z 2020-02-15T06:59:53Z +10223 377 1 12549 4.99 2005-08-18T14:38:07Z 2020-02-15T06:59:53Z +10224 377 1 13249 2.99 2005-08-19T16:47:41Z 2020-02-15T06:59:53Z +10225 377 1 13275 0.99 2005-08-19T17:53:38Z 2020-02-15T06:59:53Z +10226 377 2 15088 0.99 2005-08-22T11:28:26Z 2020-02-15T06:59:53Z +10227 377 1 15995 0.99 2005-08-23T20:29:56Z 2020-02-15T06:59:53Z +10228 377 1 15999 7.99 2005-08-23T20:44:10Z 2020-02-15T06:59:53Z +10229 378 1 347 0.99 2005-05-27T04:40:33Z 2020-02-15T06:59:53Z +10230 378 2 1623 4.99 2005-06-16T07:48:50Z 2020-02-15T06:59:53Z +10231 378 1 1662 5.99 2005-06-16T10:13:35Z 2020-02-15T06:59:53Z +10232 378 2 2134 7.99 2005-06-17T21:13:44Z 2020-02-15T06:59:53Z +10233 378 2 2713 4.99 2005-06-19T14:23:09Z 2020-02-15T06:59:53Z +10234 378 1 3759 4.99 2005-07-06T12:46:38Z 2020-02-15T06:59:53Z +10235 378 2 4755 0.99 2005-07-08T14:23:41Z 2020-02-15T06:59:53Z +10236 378 1 5578 1.99 2005-07-10T04:00:31Z 2020-02-15T06:59:53Z +10237 378 2 6233 1.99 2005-07-11T14:10:47Z 2020-02-15T06:59:53Z +10238 378 1 7888 0.99 2005-07-28T10:40:24Z 2020-02-15T06:59:53Z +10239 378 2 8740 2.99 2005-07-29T18:41:31Z 2020-02-15T06:59:53Z +10240 378 2 9668 3.99 2005-07-31T06:31:03Z 2020-02-15T06:59:53Z +10241 378 1 9868 2.99 2005-07-31T13:20:08Z 2020-02-15T06:59:53Z +10242 378 1 10917 4.99 2005-08-02T02:06:18Z 2020-02-15T06:59:53Z +10243 378 1 11111 4.99 2005-08-02T08:21:27Z 2020-02-15T06:59:53Z +10244 378 1 12596 2.99 2005-08-18T16:29:35Z 2020-02-15T06:59:53Z +10245 378 1 12828 4.99 2005-08-19T01:37:47Z 2020-02-15T06:59:53Z +10246 378 2 14502 4.99 2005-08-21T14:22:28Z 2020-02-15T06:59:53Z +10247 378 1 14971 2.99 2005-08-22T06:52:49Z 2020-02-15T06:59:53Z +10248 379 2 209 4.99 2005-05-26T08:14:01Z 2020-02-15T06:59:53Z +10249 379 1 863 4.99 2005-05-30T03:14:59Z 2020-02-15T06:59:53Z +10250 379 1 1383 8.99 2005-06-15T15:20:06Z 2020-02-15T06:59:53Z +10251 379 1 2313 5.99 2005-06-18T08:56:45Z 2020-02-15T06:59:53Z +10252 379 1 2926 2.99 2005-06-20T04:37:45Z 2020-02-15T06:59:53Z +10253 379 1 3788 4.99 2005-07-06T14:02:02Z 2020-02-15T06:59:53Z +10254 379 2 4740 2.99 2005-07-08T13:30:35Z 2020-02-15T06:59:53Z +10255 379 1 5402 4.99 2005-07-09T20:01:58Z 2020-02-15T06:59:53Z +10256 379 1 6235 7.99 2005-07-11T14:17:51Z 2020-02-15T06:59:53Z +10257 379 2 7041 4.99 2005-07-27T03:18:32Z 2020-02-15T06:59:53Z +10258 379 1 10041 4.99 2005-07-31T19:01:02Z 2020-02-15T06:59:53Z +10259 379 2 11457 3.99 2005-08-02T21:14:16Z 2020-02-15T06:59:53Z +10260 379 1 12503 4.99 2005-08-18T13:16:46Z 2020-02-15T06:59:53Z +10261 379 1 13334 0.99 2005-08-19T20:02:33Z 2020-02-15T06:59:53Z +10262 379 2 13397 7.99 2005-08-19T22:06:35Z 2020-02-15T06:59:53Z +10263 379 1 13485 0.99 2005-08-20T01:20:14Z 2020-02-15T06:59:53Z +10264 379 1 14011 5.99 2005-08-20T20:32:56Z 2020-02-15T06:59:53Z +10265 379 2 14152 2.99 2005-08-21T02:23:50Z 2020-02-15T06:59:53Z +10266 379 1 14470 0.99 2005-08-21T13:09:41Z 2020-02-15T06:59:53Z +10267 379 1 14886 4.99 2005-08-22T03:59:01Z 2020-02-15T06:59:53Z +10268 379 2 15399 4.99 2005-08-22T23:11:59Z 2020-02-15T06:59:53Z +10269 379 1 15446 4.99 2005-08-23T00:49:24Z 2020-02-15T06:59:53Z +10270 379 2 15930 3.99 2005-08-23T18:26:51Z 2020-02-15T06:59:53Z +10271 380 1 847 3.99 2005-05-30T01:18:15Z 2020-02-15T06:59:53Z +10272 380 1 1868 3.99 2005-06-17T02:03:22Z 2020-02-15T06:59:53Z +10273 380 1 1984 2.99 2005-06-17T10:25:28Z 2020-02-15T06:59:53Z +10274 380 1 2018 3.99 2005-06-17T12:35:58Z 2020-02-15T06:59:53Z +10275 380 1 2440 2.99 2005-06-18T18:41:09Z 2020-02-15T06:59:53Z +10276 380 1 2464 4.99 2005-06-18T20:06:05Z 2020-02-15T06:59:53Z +10277 380 2 2998 1.99 2005-06-20T09:30:22Z 2020-02-15T06:59:53Z +10278 380 2 3099 1.99 2005-06-20T16:44:33Z 2020-02-15T06:59:53Z +10279 380 1 3260 4.99 2005-06-21T03:59:13Z 2020-02-15T06:59:53Z +10280 380 1 3637 2.99 2005-07-06T07:06:31Z 2020-02-15T06:59:53Z +10281 380 1 3688 4.99 2005-07-06T09:41:53Z 2020-02-15T06:59:53Z +10282 380 1 4675 2.99 2005-07-08T10:24:22Z 2020-02-15T06:59:53Z +10283 380 2 4706 4.99 2005-07-08T11:51:41Z 2020-02-15T06:59:53Z +10284 380 2 5339 0.99 2005-07-09T17:09:17Z 2020-02-15T06:59:53Z +10285 380 2 7021 8.99 2005-07-27T02:26:38Z 2020-02-15T06:59:53Z +10286 380 2 7167 2.99 2005-07-27T07:37:26Z 2020-02-15T06:59:53Z +10287 380 2 7435 0.99 2005-07-27T17:38:44Z 2020-02-15T06:59:53Z +10288 380 2 7443 2.99 2005-07-27T17:47:43Z 2020-02-15T06:59:53Z +10289 380 1 7773 2.99 2005-07-28T07:02:17Z 2020-02-15T06:59:53Z +10290 380 1 7974 3.99 2005-07-28T14:11:57Z 2020-02-15T06:59:53Z +10291 380 1 9056 0.99 2005-07-30T07:13:20Z 2020-02-15T06:59:53Z +10292 380 1 9261 6.99 2005-07-30T14:39:35Z 2020-02-15T06:59:53Z +10293 380 1 9710 10.99 2005-07-31T08:05:31Z 2020-02-15T06:59:53Z +10294 380 2 10450 1.99 2005-08-01T09:10:03Z 2020-02-15T06:59:53Z +10295 380 1 10983 3.99 2005-08-02T04:24:23Z 2020-02-15T06:59:53Z +10296 380 1 11936 0.99 2005-08-17T16:45:34Z 2020-02-15T06:59:53Z +10297 380 2 11945 0.99 2005-08-17T17:05:33Z 2020-02-15T06:59:53Z +10298 380 1 12636 3.99 2005-08-18T18:00:29Z 2020-02-15T06:59:53Z +10299 380 1 12996 6.99 2005-08-19T07:31:32Z 2020-02-15T06:59:53Z +10300 380 1 14529 6.99 2005-08-21T15:08:31Z 2020-02-15T06:59:53Z +10301 380 1 14935 1.99 2005-08-22T05:47:31Z 2020-02-15T06:59:53Z +10302 380 2 15175 5.99 2005-08-22T15:29:15Z 2020-02-15T06:59:53Z +10303 380 1 15361 2.99 2005-08-22T21:39:45Z 2020-02-15T06:59:53Z +10304 380 2 15636 2.99 2005-08-23T07:50:46Z 2020-02-15T06:59:53Z +10305 380 1 15697 2.99 2005-08-23T10:04:36Z 2020-02-15T06:59:53Z +10306 380 2 15748 2.99 2005-08-23T12:33:00Z 2020-02-15T06:59:53Z +10307 381 2 169 0.99 2005-05-26T03:09:30Z 2020-02-15T06:59:53Z +10308 381 2 406 2.99 2005-05-27T13:46:46Z 2020-02-15T06:59:53Z +10309 381 1 835 2.99 2005-05-29T23:37:00Z 2020-02-15T06:59:53Z +10310 381 1 1402 3.99 2005-06-15T16:31:08Z 2020-02-15T06:59:53Z +10311 381 1 1878 1.99 2005-06-17T02:55:32Z 2020-02-15T06:59:53Z +10312 381 2 2410 2.99 2005-06-18T16:55:08Z 2020-02-15T06:59:53Z +10313 381 1 2418 4.99 2005-06-18T17:14:42Z 2020-02-15T06:59:53Z +10314 381 2 3425 2.99 2005-06-21T18:07:07Z 2020-02-15T06:59:53Z +10315 381 2 3812 0.99 2005-07-06T15:22:19Z 2020-02-15T06:59:53Z +10316 381 2 3970 2.99 2005-07-06T22:48:17Z 2020-02-15T06:59:53Z +10317 381 1 4735 0.99 2005-07-08T13:12:27Z 2020-02-15T06:59:53Z +10318 381 2 5689 0.99 2005-07-10T09:24:17Z 2020-02-15T06:59:53Z +10319 381 2 6116 2.99 2005-07-11T07:37:38Z 2020-02-15T06:59:53Z +10320 381 2 6451 4.99 2005-07-12T00:52:19Z 2020-02-15T06:59:53Z +10321 381 2 6778 2.99 2005-07-12T16:06:00Z 2020-02-15T06:59:53Z +10322 381 1 7375 2.99 2005-07-27T15:22:33Z 2020-02-15T06:59:53Z +10323 381 1 7645 2.99 2005-07-28T01:27:42Z 2020-02-15T06:59:53Z +10324 381 2 8688 0.99 2005-07-29T16:31:32Z 2020-02-15T06:59:53Z +10325 381 2 9144 0.99 2005-07-30T10:22:15Z 2020-02-15T06:59:53Z +10326 381 2 9173 4.99 2005-07-30T11:40:10Z 2020-02-15T06:59:53Z +10327 381 1 9822 2.99 2005-07-31T11:48:25Z 2020-02-15T06:59:53Z +10328 381 2 10033 4.99 2005-07-31T18:44:29Z 2020-02-15T06:59:53Z +10329 381 1 10608 0.99 2005-08-01T14:48:41Z 2020-02-15T06:59:53Z +10330 381 2 10705 0.99 2005-08-01T18:38:54Z 2020-02-15T06:59:53Z +10331 381 1 11519 2.99 2005-08-17T00:01:27Z 2020-02-15T06:59:53Z +10332 381 2 12135 2.99 2005-08-17T23:50:24Z 2020-02-15T06:59:53Z +10333 381 2 12237 4.99 2005-08-18T03:24:38Z 2020-02-15T06:59:53Z +10334 381 2 12632 2.99 2005-08-18T17:54:21Z 2020-02-15T06:59:53Z +10335 381 2 13202 8.99 2005-08-19T14:58:30Z 2020-02-15T06:59:53Z +10336 381 2 13430 0.99 2005-08-19T23:25:43Z 2020-02-15T06:59:53Z +10337 381 1 13614 0.99 2005-08-20T06:28:37Z 2020-02-15T06:59:53Z +10338 381 2 13995 2.99 2005-08-20T19:34:43Z 2020-02-15T06:59:53Z +10339 381 1 14198 4.99 2005-08-21T03:48:31Z 2020-02-15T06:59:53Z +10340 381 2 15299 4.99 2005-08-22T19:42:57Z 2020-02-15T06:59:53Z +10341 381 1 15747 4.99 2005-08-23T12:29:24Z 2020-02-15T06:59:53Z +10342 382 2 356 2.99 2005-05-27T06:32:30Z 2020-02-15T06:59:53Z +10343 382 1 522 2.99 2005-05-28T03:33:20Z 2020-02-15T06:59:53Z +10344 382 1 2389 0.99 2005-06-18T15:27:47Z 2020-02-15T06:59:53Z +10345 382 1 2468 4.99 2005-06-18T20:23:52Z 2020-02-15T06:59:53Z +10346 382 1 2489 1.99 2005-06-18T22:00:44Z 2020-02-15T06:59:53Z +10347 382 1 2514 2.99 2005-06-18T23:56:44Z 2020-02-15T06:59:53Z +10348 382 2 3125 4.99 2005-06-20T18:31:58Z 2020-02-15T06:59:53Z +10349 382 2 3480 3.99 2005-07-05T23:11:43Z 2020-02-15T06:59:53Z +10350 382 2 4351 4.99 2005-07-07T19:04:24Z 2020-02-15T06:59:53Z +10351 382 1 5004 4.99 2005-07-09T01:20:50Z 2020-02-15T06:59:53Z +10352 382 1 5816 0.99 2005-07-10T15:48:47Z 2020-02-15T06:59:53Z +10353 382 2 7625 0.99 2005-07-28T00:47:56Z 2020-02-15T06:59:53Z +10354 382 2 8777 0.99 2005-07-29T20:10:21Z 2020-02-15T06:59:53Z +10355 382 1 8871 9.99 2005-07-30T00:12:41Z 2020-02-15T06:59:53Z +10356 382 1 8993 4.99 2005-07-30T04:51:25Z 2020-02-15T06:59:53Z +10357 382 1 9067 6.99 2005-07-30T07:31:01Z 2020-02-15T06:59:53Z +10358 382 2 9555 0.99 2005-07-31T02:11:16Z 2020-02-15T06:59:53Z +10359 382 2 10327 3.99 2005-08-01T04:55:35Z 2020-02-15T06:59:53Z +10360 382 2 12229 0.99 2005-08-18T03:08:23Z 2020-02-15T06:59:53Z +10361 382 2 12529 0.99 2005-08-18T13:53:36Z 2020-02-15T06:59:53Z +10362 382 1 14009 4.99 2005-08-20T20:26:53Z 2020-02-15T06:59:53Z +10363 382 2 14300 4.99 2005-08-21T07:19:37Z 2020-02-15T06:59:53Z +10364 382 2 14354 5.99 2005-08-21T09:08:14Z 2020-02-15T06:59:53Z +10365 382 2 15939 7.99 2005-08-23T18:44:21Z 2020-02-15T06:59:53Z +10366 383 2 63 0.99 2005-05-25T09:19:16Z 2020-02-15T06:59:53Z +10367 383 1 766 8.99 2005-05-29T11:47:02Z 2020-02-15T06:59:53Z +10368 383 1 1831 7.99 2005-06-16T22:22:17Z 2020-02-15T06:59:53Z +10369 383 2 2228 2.99 2005-06-18T03:44:50Z 2020-02-15T06:59:53Z +10370 383 1 2252 2.99 2005-06-18T05:05:18Z 2020-02-15T06:59:53Z +10371 383 2 2318 2.99 2005-06-18T09:13:54Z 2020-02-15T06:59:53Z +10372 383 1 2609 7.99 2005-06-19T07:13:12Z 2020-02-15T06:59:53Z +10373 383 1 3091 2.99 2005-06-20T16:02:59Z 2020-02-15T06:59:53Z +10374 383 2 4747 5.99 2005-07-08T13:53:01Z 2020-02-15T06:59:53Z +10375 383 2 6091 4.99 2005-07-11T05:49:18Z 2020-02-15T06:59:53Z +10376 383 2 6244 0.99 2005-07-11T14:53:38Z 2020-02-15T06:59:53Z +10377 383 1 6775 4.99 2005-07-12T16:01:44Z 2020-02-15T06:59:53Z +10378 383 1 7367 3.99 2005-07-27T15:05:45Z 2020-02-15T06:59:53Z +10379 383 2 8367 2.99 2005-07-29T05:11:19Z 2020-02-15T06:59:53Z +10380 383 1 8635 0.99 2005-07-29T14:22:48Z 2020-02-15T06:59:53Z +10381 383 1 9653 0.99 2005-07-31T05:55:38Z 2020-02-15T06:59:53Z +10382 383 1 9678 0.99 2005-07-31T06:40:47Z 2020-02-15T06:59:53Z +10383 383 2 10515 4.99 2005-08-01T11:41:33Z 2020-02-15T06:59:53Z +10384 383 1 10971 4.99 2005-08-02T04:08:17Z 2020-02-15T06:59:53Z +10385 383 2 10993 0.99 2005-08-02T04:45:01Z 2020-02-15T06:59:53Z +10386 383 2 11122 0.99 2005-08-02T08:49:09Z 2020-02-15T06:59:53Z +10387 383 1 11592 2.99 2005-08-17T02:36:04Z 2020-02-15T06:59:53Z +10388 383 1 12735 4.99 2005-08-18T22:04:54Z 2020-02-15T06:59:53Z +10389 383 2 14039 4.99 2005-08-20T21:39:43Z 2020-02-15T06:59:53Z +10390 383 2 14678 4.99 2005-08-21T20:12:43Z 2020-02-15T06:59:53Z +10391 383 1 15416 1.99 2005-08-22T23:51:23Z 2020-02-15T06:59:53Z +10392 383 1 15881 6.99 2005-08-23T16:44:25Z 2020-02-15T06:59:53Z +10393 384 2 103 4.99 2005-05-25T17:30:42Z 2020-02-15T06:59:53Z +10394 384 2 279 2.99 2005-05-26T18:02:50Z 2020-02-15T06:59:53Z +10395 384 1 898 0.99 2005-05-30T09:26:19Z 2020-02-15T06:59:53Z +10396 384 2 1013 2.99 2005-05-31T02:37:00Z 2020-02-15T06:59:53Z +10397 384 1 1961 0.99 2005-06-17T09:02:58Z 2020-02-15T06:59:53Z +10398 384 2 2020 0.99 2005-06-17T12:39:50Z 2020-02-15T06:59:53Z +10399 384 1 2378 7.99 2005-06-18T14:57:49Z 2020-02-15T06:59:53Z +10400 384 2 2510 5.99 2005-06-18T23:44:21Z 2020-02-15T06:59:53Z +10401 384 2 2935 3.99 2005-06-20T05:07:24Z 2020-02-15T06:59:53Z +10402 384 1 3088 9.99 2005-06-20T15:56:05Z 2020-02-15T06:59:53Z +10403 384 2 3101 4.99 2005-06-20T16:48:58Z 2020-02-15T06:59:53Z +10404 384 2 4424 0.99 2005-07-07T22:14:43Z 2020-02-15T06:59:53Z +10405 384 2 5250 0.99 2005-07-09T13:35:32Z 2020-02-15T06:59:53Z +10406 384 1 5608 4.99 2005-07-10T05:08:26Z 2020-02-15T06:59:53Z +10407 384 2 5797 4.99 2005-07-10T14:43:52Z 2020-02-15T06:59:53Z +10408 384 2 5966 2.99 2005-07-10T23:59:27Z 2020-02-15T06:59:53Z +10409 384 2 6387 0.99 2005-07-11T22:15:56Z 2020-02-15T06:59:53Z +10410 384 2 7799 0.99 2005-07-28T07:42:09Z 2020-02-15T06:59:53Z +10411 384 1 8445 1.99 2005-07-29T07:37:48Z 2020-02-15T06:59:53Z +10412 384 2 11773 5.99 2005-08-17T10:19:51Z 2020-02-15T06:59:53Z +10413 384 2 13521 2.99 2005-08-20T02:42:28Z 2020-02-15T06:59:53Z +10414 384 2 14416 2.99 2005-08-21T11:11:46Z 2020-02-15T06:59:53Z +10415 384 1 14841 0.99 2005-08-22T02:03:30Z 2020-02-15T06:59:53Z +10416 384 1 14963 5.99 2005-08-22T06:38:10Z 2020-02-15T06:59:53Z +10417 384 2 15321 4.99 2005-08-22T20:20:04Z 2020-02-15T06:59:53Z +10418 385 1 917 2.99 2005-05-30T11:27:06Z 2020-02-15T06:59:53Z +10419 385 2 1038 4.99 2005-05-31T05:23:47Z 2020-02-15T06:59:53Z +10420 385 1 1746 2.99 2005-06-16T16:41:19Z 2020-02-15T06:59:53Z +10421 385 1 1937 0.99 2005-06-17T07:16:46Z 2020-02-15T06:59:53Z +10422 385 1 3105 0.99 2005-06-20T17:11:46Z 2020-02-15T06:59:53Z +10423 385 2 3878 8.99 2005-07-06T18:27:09Z 2020-02-15T06:59:53Z +10424 385 2 3953 0.99 2005-07-06T21:54:55Z 2020-02-15T06:59:53Z +10425 385 1 4714 6.99 2005-07-08T12:12:48Z 2020-02-15T06:59:53Z +10426 385 1 5783 2.99 2005-07-10T13:55:33Z 2020-02-15T06:59:53Z +10427 385 1 6445 4.99 2005-07-12T00:37:02Z 2020-02-15T06:59:53Z +10428 385 2 6933 4.99 2005-07-26T23:09:23Z 2020-02-15T06:59:53Z +10429 385 2 7776 0.99 2005-07-28T07:04:36Z 2020-02-15T06:59:53Z +10430 385 1 8346 2.99 2005-07-29T04:48:22Z 2020-02-15T06:59:53Z +10431 385 1 8518 2.99 2005-07-29T10:05:27Z 2020-02-15T06:59:53Z +10432 385 1 9570 2.99 2005-07-31T02:40:37Z 2020-02-15T06:59:53Z +10433 385 1 9704 4.99 2005-07-31T07:39:32Z 2020-02-15T06:59:53Z +10434 385 1 10557 0.99 2005-08-01T12:59:24Z 2020-02-15T06:59:53Z +10435 385 1 10636 3.99 2005-08-01T15:40:35Z 2020-02-15T06:59:53Z +10436 385 1 10655 4.99 2005-08-01T16:33:27Z 2020-02-15T06:59:53Z +10437 385 1 11021 2.99 2005-08-02T05:30:11Z 2020-02-15T06:59:53Z +10438 385 1 11559 2.99 2005-08-17T01:20:26Z 2020-02-15T06:59:53Z +10439 385 2 12310 2.99 2005-08-18T06:02:34Z 2020-02-15T06:59:53Z +10440 385 2 12686 8.99 2005-08-18T19:55:09Z 2020-02-15T06:59:53Z +10441 385 2 13062 7.99 2005-08-19T09:44:17Z 2020-02-15T06:59:53Z +10442 385 1 13117 0.99 2005-08-19T11:33:20Z 2020-02-15T06:59:53Z +10443 385 1 15488 6.99 2005-08-23T02:06:01Z 2020-02-15T06:59:53Z +10444 386 1 583 7.99 2005-05-28T11:48:55Z 2020-02-15T06:59:53Z +10445 386 2 1585 3.99 2005-06-16T04:51:13Z 2020-02-15T06:59:53Z +10446 386 1 1608 2.99 2005-06-16T06:28:57Z 2020-02-15T06:59:53Z +10447 386 2 1819 5.99 2005-06-16T21:32:50Z 2020-02-15T06:59:53Z +10448 386 1 2732 0.99 2005-06-19T15:19:39Z 2020-02-15T06:59:53Z +10449 386 1 3351 2.99 2005-06-21T11:21:39Z 2020-02-15T06:59:53Z +10450 386 2 3783 6.99 2005-07-06T13:57:31Z 2020-02-15T06:59:53Z +10451 386 1 4189 8.99 2005-07-07T10:51:07Z 2020-02-15T06:59:53Z +10452 386 1 5524 0.99 2005-07-10T01:49:24Z 2020-02-15T06:59:53Z +10453 386 1 5953 2.99 2005-07-10T23:21:35Z 2020-02-15T06:59:53Z +10454 386 1 6037 4.99 2005-07-11T03:06:54Z 2020-02-15T06:59:53Z +10455 386 1 6222 2.99 2005-07-11T13:25:49Z 2020-02-15T06:59:53Z +10456 386 2 6261 2.99 2005-07-11T15:28:34Z 2020-02-15T06:59:53Z +10457 386 1 6324 3.99 2005-07-11T19:02:34Z 2020-02-15T06:59:53Z +10458 386 2 6715 4.99 2005-07-12T13:32:28Z 2020-02-15T06:59:53Z +10459 386 2 8340 4.99 2005-07-29T04:41:44Z 2020-02-15T06:59:53Z +10460 386 1 8751 2.99 2005-07-29T19:14:39Z 2020-02-15T06:59:53Z +10461 386 2 9602 0.99 2005-07-31T03:42:51Z 2020-02-15T06:59:53Z +10462 386 1 9686 5.99 2005-07-31T06:50:06Z 2020-02-15T06:59:53Z +10463 386 1 10572 4.99 2005-08-01T13:26:53Z 2020-02-15T06:59:53Z +10464 386 2 10618 3.99 2005-08-01T15:06:38Z 2020-02-15T06:59:53Z +10465 386 1 10715 2.99 2005-08-01T18:51:48Z 2020-02-15T06:59:53Z +10466 386 2 11128 2.99 2005-08-02T09:03:25Z 2020-02-15T06:59:53Z +10467 386 2 11695 4.99 2005-08-17T07:01:08Z 2020-02-15T06:59:53Z +10468 386 2 12961 2.99 2005-08-19T06:22:37Z 2020-02-15T06:59:53Z +10469 386 1 13716 3.99 2005-08-20T09:48:32Z 2020-02-15T06:59:53Z +10470 386 1 13764 2.99 2005-08-20T11:38:16Z 2020-02-15T06:59:53Z +10471 386 2 13869 6.99 2005-08-20T15:08:57Z 2020-02-15T06:59:53Z +10472 386 1 15949 0.99 2005-08-23T19:06:04Z 2020-02-15T06:59:53Z +10473 387 2 302 4.99 2005-05-26T21:13:46Z 2020-02-15T06:59:53Z +10474 387 1 697 7.99 2005-05-29T02:04:04Z 2020-02-15T06:59:53Z +10475 387 1 841 4.99 2005-05-30T00:31:17Z 2020-02-15T06:59:53Z +10476 387 1 1127 3.99 2005-05-31T17:45:49Z 2020-02-15T06:59:53Z +10477 387 1 1464 0.99 2005-06-15T20:38:14Z 2020-02-15T06:59:53Z +10478 387 2 1465 0.99 2005-06-15T20:43:08Z 2020-02-15T06:59:53Z +10479 387 1 2068 0.99 2005-06-17T16:11:46Z 2020-02-15T06:59:53Z +10480 387 2 2100 0.99 2005-06-17T18:53:21Z 2020-02-15T06:59:53Z +10481 387 2 2981 5.99 2005-06-20T08:35:17Z 2020-02-15T06:59:53Z +10482 387 2 3378 4.99 2005-06-21T13:51:28Z 2020-02-15T06:59:53Z +10483 387 2 6216 4.99 2005-07-11T12:57:05Z 2020-02-15T06:59:53Z +10484 387 2 6456 6.99 2005-07-12T01:05:11Z 2020-02-15T06:59:53Z +10485 387 1 6517 5.99 2005-07-12T03:52:39Z 2020-02-15T06:59:53Z +10486 387 1 7497 0.99 2005-07-27T20:05:27Z 2020-02-15T06:59:53Z +10487 387 1 8090 2.99 2005-07-28T18:27:29Z 2020-02-15T06:59:53Z +10488 387 1 10564 0.99 2005-08-01T13:07:34Z 2020-02-15T06:59:53Z +10489 387 1 10838 4.99 2005-08-01T23:36:10Z 2020-02-15T06:59:53Z +10490 387 2 11682 2.99 2005-08-17T06:13:40Z 2020-02-15T06:59:53Z +10491 387 2 12153 4.99 2005-08-18T00:22:30Z 2020-02-15T06:59:53Z +10492 387 1 12936 6.99 2005-08-19T05:25:06Z 2020-02-15T06:59:53Z +10493 387 2 13034 2.99 2005-08-19T08:41:29Z 2020-02-15T06:59:53Z +10494 387 1 13082 5.99 2005-08-19T10:19:19Z 2020-02-15T06:59:53Z +10495 387 2 13645 0.99 2005-08-20T07:47:05Z 2020-02-15T06:59:53Z +10496 387 2 13772 4.99 2005-08-20T11:47:52Z 2020-02-15T06:59:53Z +10497 387 2 14279 5.99 2005-08-21T06:39:08Z 2020-02-15T06:59:53Z +10498 387 2 14979 0.99 2005-08-22T07:16:36Z 2020-02-15T06:59:53Z +10499 388 2 21 4.99 2005-05-25T01:59:46Z 2020-02-15T06:59:53Z +10500 388 2 411 4.99 2005-05-27T14:14:14Z 2020-02-15T06:59:53Z +10501 388 2 1276 6.99 2005-06-15T08:00:13Z 2020-02-15T06:59:53Z +10502 388 1 2145 0.99 2005-06-17T22:10:36Z 2020-02-15T06:59:53Z +10503 388 1 2537 5.99 2005-06-19T01:52:21Z 2020-02-15T06:59:53Z +10504 388 1 2692 4.99 2005-06-19T13:08:19Z 2020-02-15T06:59:53Z +10505 388 2 3159 7.99 2005-06-20T21:11:50Z 2020-02-15T06:59:53Z +10506 388 2 4947 5.99 2005-07-08T22:49:37Z 2020-02-15T06:59:53Z +10507 388 2 5899 2.99 2005-07-10T20:21:52Z 2020-02-15T06:59:53Z +10508 388 2 6321 2.99 2005-07-11T18:51:02Z 2020-02-15T06:59:53Z +10509 388 1 6452 2.99 2005-07-12T00:57:31Z 2020-02-15T06:59:53Z +10510 388 2 7985 5.99 2005-07-28T14:29:01Z 2020-02-15T06:59:53Z +10511 388 2 8456 3.99 2005-07-29T07:58:31Z 2020-02-15T06:59:53Z +10512 388 2 9213 0.99 2005-07-30T13:07:11Z 2020-02-15T06:59:53Z +10513 388 2 9368 2.99 2005-07-30T18:50:53Z 2020-02-15T06:59:53Z +10514 388 2 9840 2.99 2005-07-31T12:23:18Z 2020-02-15T06:59:53Z +10515 388 2 9940 0.99 2005-07-31T15:29:06Z 2020-02-15T06:59:53Z +10516 388 2 10044 2.99 2005-07-31T19:02:33Z 2020-02-15T06:59:53Z +10517 388 2 11604 0.99 2005-08-17T03:28:27Z 2020-02-15T06:59:53Z +10518 388 2 12044 0.99 2005-08-17T20:39:37Z 2020-02-15T06:59:53Z +10519 388 1 12068 2.99 2005-08-17T21:37:08Z 2020-02-15T06:59:53Z +10520 388 2 12267 6.99 2005-08-18T04:24:30Z 2020-02-15T06:59:53Z +10521 388 2 12497 4.99 2005-08-18T12:58:40Z 2020-02-15T06:59:53Z +10522 388 2 12646 2.99 2005-08-18T18:25:06Z 2020-02-15T06:59:53Z +10523 388 1 12749 2.99 2005-08-18T22:31:21Z 2020-02-15T06:59:53Z +10524 388 1 12977 4.99 2005-08-19T06:55:33Z 2020-02-15T06:59:53Z +10525 388 1 14273 10.99 2005-08-21T06:26:48Z 2020-02-15T06:59:53Z +10526 388 2 14853 5.99 2005-08-22T02:26:33Z 2020-02-15T06:59:53Z +10527 388 2 15660 5.99 2005-08-23T08:51:21Z 2020-02-15T06:59:53Z +10528 388 1 12891 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10529 389 1 998 4.99 2005-05-31T00:16:57Z 2020-02-15T06:59:53Z +10530 389 1 1763 4.99 2005-06-16T17:51:01Z 2020-02-15T06:59:53Z +10531 389 1 1946 4.99 2005-06-17T07:58:39Z 2020-02-15T06:59:53Z +10532 389 1 2552 3.99 2005-06-19T03:01:29Z 2020-02-15T06:59:53Z +10533 389 2 3527 0.99 2005-07-06T01:11:08Z 2020-02-15T06:59:53Z +10534 389 1 4443 6.99 2005-07-07T23:05:53Z 2020-02-15T06:59:53Z +10535 389 1 5249 0.99 2005-07-09T13:33:53Z 2020-02-15T06:59:53Z +10536 389 2 5626 3.99 2005-07-10T05:49:35Z 2020-02-15T06:59:53Z +10537 389 2 6104 2.99 2005-07-11T07:01:35Z 2020-02-15T06:59:53Z +10538 389 1 6600 3.99 2005-07-12T07:41:48Z 2020-02-15T06:59:53Z +10539 389 1 7029 4.99 2005-07-27T02:57:43Z 2020-02-15T06:59:53Z +10540 389 1 7896 8.99 2005-07-28T11:00:58Z 2020-02-15T06:59:53Z +10541 389 2 7977 4.99 2005-07-28T14:15:54Z 2020-02-15T06:59:53Z +10542 389 1 8338 6.99 2005-07-29T04:40:39Z 2020-02-15T06:59:53Z +10543 389 1 8887 4.99 2005-07-30T00:36:54Z 2020-02-15T06:59:53Z +10544 389 1 10217 4.99 2005-08-01T01:07:27Z 2020-02-15T06:59:53Z +10545 389 1 10949 2.99 2005-08-02T03:24:04Z 2020-02-15T06:59:53Z +10546 389 2 11348 4.99 2005-08-02T17:18:38Z 2020-02-15T06:59:53Z +10547 389 2 11441 2.99 2005-08-02T20:25:41Z 2020-02-15T06:59:53Z +10548 389 2 11944 3.99 2005-08-17T17:02:42Z 2020-02-15T06:59:53Z +10549 389 2 12069 4.99 2005-08-17T21:39:40Z 2020-02-15T06:59:53Z +10550 389 2 14493 7.99 2005-08-21T14:01:44Z 2020-02-15T06:59:53Z +10551 389 1 14578 2.99 2005-08-21T16:53:38Z 2020-02-15T06:59:54Z +10552 389 1 14777 2.99 2005-08-21T23:55:50Z 2020-02-15T06:59:54Z +10553 389 1 15462 5.99 2005-08-23T01:14:01Z 2020-02-15T06:59:54Z +10554 389 2 16011 9.99 2005-08-23T21:11:33Z 2020-02-15T06:59:54Z +10555 390 1 254 4.99 2005-05-26T14:43:48Z 2020-02-15T06:59:54Z +10556 390 2 912 4.99 2005-05-30T10:58:33Z 2020-02-15T06:59:54Z +10557 390 2 1539 5.99 2005-06-16T01:11:25Z 2020-02-15T06:59:54Z +10558 390 2 1730 2.99 2005-06-16T15:30:01Z 2020-02-15T06:59:54Z +10559 390 2 1893 2.99 2005-06-17T04:18:37Z 2020-02-15T06:59:54Z +10560 390 1 2330 7.99 2005-06-18T10:41:19Z 2020-02-15T06:59:54Z +10561 390 1 3147 5.99 2005-06-20T20:25:17Z 2020-02-15T06:59:54Z +10562 390 1 3999 2.99 2005-07-06T23:50:54Z 2020-02-15T06:59:54Z +10563 390 1 4022 4.99 2005-07-07T01:50:06Z 2020-02-15T06:59:54Z +10564 390 2 4191 3.99 2005-07-07T10:56:14Z 2020-02-15T06:59:54Z +10565 390 2 4310 2.99 2005-07-07T17:30:56Z 2020-02-15T06:59:54Z +10566 390 1 4968 5.99 2005-07-08T23:49:19Z 2020-02-15T06:59:54Z +10567 390 1 6215 4.99 2005-07-11T12:52:36Z 2020-02-15T06:59:54Z +10568 390 1 6430 0.99 2005-07-12T00:03:34Z 2020-02-15T06:59:54Z +10569 390 2 7515 3.99 2005-07-27T20:52:37Z 2020-02-15T06:59:54Z +10570 390 1 7595 5.99 2005-07-27T23:32:23Z 2020-02-15T06:59:54Z +10571 390 1 8493 0.99 2005-07-29T09:04:31Z 2020-02-15T06:59:54Z +10572 390 1 9251 5.99 2005-07-30T14:19:25Z 2020-02-15T06:59:54Z +10573 390 2 9314 2.99 2005-07-30T17:05:19Z 2020-02-15T06:59:54Z +10574 390 1 9825 4.99 2005-07-31T11:50:51Z 2020-02-15T06:59:54Z +10575 390 1 10061 4.99 2005-07-31T19:23:25Z 2020-02-15T06:59:54Z +10576 390 1 12105 5.99 2005-08-17T22:54:45Z 2020-02-15T06:59:54Z +10577 390 2 12803 2.99 2005-08-19T00:28:21Z 2020-02-15T06:59:54Z +10578 390 1 13413 3.99 2005-08-19T22:46:46Z 2020-02-15T06:59:54Z +10579 390 1 13473 4.99 2005-08-20T01:03:50Z 2020-02-15T06:59:54Z +10580 390 1 13501 0.99 2005-08-20T01:56:20Z 2020-02-15T06:59:54Z +10581 390 2 13546 3.99 2005-08-20T03:50:24Z 2020-02-15T06:59:54Z +10582 390 2 13591 3.99 2005-08-20T05:50:05Z 2020-02-15T06:59:54Z +10583 390 2 13618 7.99 2005-08-20T06:36:46Z 2020-02-15T06:59:54Z +10584 390 2 13893 5.99 2005-08-20T15:52:52Z 2020-02-15T06:59:54Z +10585 390 2 15222 4.99 2005-08-22T17:12:30Z 2020-02-15T06:59:54Z +10586 390 2 15303 8.99 2005-08-22T19:44:59Z 2020-02-15T06:59:54Z +10587 390 2 15376 4.99 2005-08-22T22:21:35Z 2020-02-15T06:59:54Z +10588 391 2 73 4.99 2005-05-25T11:00:07Z 2020-02-15T06:59:54Z +10589 391 1 210 2.99 2005-05-26T08:14:15Z 2020-02-15T06:59:54Z +10590 391 1 317 5.99 2005-05-26T23:23:56Z 2020-02-15T06:59:54Z +10591 391 2 870 2.99 2005-05-30T04:25:47Z 2020-02-15T06:59:54Z +10592 391 1 891 7.99 2005-05-30T07:43:12Z 2020-02-15T06:59:54Z +10593 391 2 1232 0.99 2005-06-15T04:18:10Z 2020-02-15T06:59:54Z +10594 391 2 1931 0.99 2005-06-17T06:51:56Z 2020-02-15T06:59:54Z +10595 391 1 2045 2.99 2005-06-17T14:38:11Z 2020-02-15T06:59:54Z +10596 391 1 2690 2.99 2005-06-19T13:00:02Z 2020-02-15T06:59:54Z +10597 391 2 3163 2.99 2005-06-20T21:22:13Z 2020-02-15T06:59:54Z +10598 391 1 4188 5.99 2005-07-07T10:45:29Z 2020-02-15T06:59:54Z +10599 391 1 4716 0.99 2005-07-08T12:18:51Z 2020-02-15T06:59:54Z +10600 391 2 4753 0.99 2005-07-08T14:18:41Z 2020-02-15T06:59:54Z +10601 391 2 5583 7.99 2005-07-10T04:08:48Z 2020-02-15T06:59:54Z +10602 391 1 5599 4.99 2005-07-10T04:52:04Z 2020-02-15T06:59:54Z +10603 391 1 6302 3.99 2005-07-11T17:55:38Z 2020-02-15T06:59:54Z +10604 391 1 6463 2.99 2005-07-12T01:16:11Z 2020-02-15T06:59:54Z +10605 391 2 8016 0.99 2005-07-28T15:35:41Z 2020-02-15T06:59:54Z +10606 391 1 8908 0.99 2005-07-30T01:26:05Z 2020-02-15T06:59:54Z +10607 391 2 8913 6.99 2005-07-30T01:35:01Z 2020-02-15T06:59:54Z +10608 391 1 9225 0.99 2005-07-30T13:29:47Z 2020-02-15T06:59:54Z +10609 391 1 10210 7.99 2005-08-01T00:58:52Z 2020-02-15T06:59:54Z +10610 391 2 10406 2.99 2005-08-01T07:37:05Z 2020-02-15T06:59:54Z +10611 391 1 11151 4.99 2005-08-02T09:52:44Z 2020-02-15T06:59:54Z +10612 391 2 11434 2.99 2005-08-02T20:13:14Z 2020-02-15T06:59:54Z +10613 391 1 11602 4.99 2005-08-17T03:21:19Z 2020-02-15T06:59:54Z +10614 391 1 12090 0.99 2005-08-17T22:21:43Z 2020-02-15T06:59:54Z +10615 391 1 12100 1.99 2005-08-17T22:41:10Z 2020-02-15T06:59:54Z +10616 391 1 13980 2.99 2005-08-20T19:04:40Z 2020-02-15T06:59:54Z +10617 391 1 14381 0.99 2005-08-21T09:55:47Z 2020-02-15T06:59:54Z +10618 392 2 1530 6.99 2005-06-16T00:38:07Z 2020-02-15T06:59:54Z +10619 392 2 1764 2.99 2005-06-16T17:51:54Z 2020-02-15T06:59:54Z +10620 392 2 2289 2.99 2005-06-18T07:29:43Z 2020-02-15T06:59:54Z +10621 392 2 2890 4.99 2005-06-20T02:00:45Z 2020-02-15T06:59:54Z +10622 392 1 3566 2.99 2005-07-06T03:08:51Z 2020-02-15T06:59:54Z +10623 392 2 6061 0.99 2005-07-11T04:06:25Z 2020-02-15T06:59:54Z +10624 392 2 6406 2.99 2005-07-11T22:55:27Z 2020-02-15T06:59:54Z +10625 392 1 7692 2.99 2005-07-28T03:30:21Z 2020-02-15T06:59:54Z +10626 392 1 7981 1.99 2005-07-28T14:18:25Z 2020-02-15T06:59:54Z +10627 392 1 8254 0.99 2005-07-29T00:59:31Z 2020-02-15T06:59:54Z +10628 392 2 8612 9.99 2005-07-29T13:28:20Z 2020-02-15T06:59:54Z +10629 392 2 10085 0.99 2005-07-31T20:12:02Z 2020-02-15T06:59:54Z +10630 392 1 10435 4.99 2005-08-01T08:50:51Z 2020-02-15T06:59:54Z +10631 392 1 11459 0.99 2005-08-02T21:25:25Z 2020-02-15T06:59:54Z +10632 392 1 11686 2.99 2005-08-17T06:39:30Z 2020-02-15T06:59:54Z +10633 392 2 12102 6.99 2005-08-17T22:45:26Z 2020-02-15T06:59:54Z +10634 392 1 12368 6.99 2005-08-18T07:57:38Z 2020-02-15T06:59:54Z +10635 392 2 12561 0.99 2005-08-18T14:58:51Z 2020-02-15T06:59:54Z +10636 392 1 13629 4.99 2005-08-20T07:04:07Z 2020-02-15T06:59:54Z +10637 392 2 14081 7.99 2005-08-20T23:35:13Z 2020-02-15T06:59:54Z +10638 392 1 14223 5.99 2005-08-21T04:51:51Z 2020-02-15T06:59:54Z +10639 392 2 14369 0.99 2005-08-21T09:33:44Z 2020-02-15T06:59:54Z +10640 392 2 14438 5.99 2005-08-21T11:51:10Z 2020-02-15T06:59:54Z +10641 393 1 599 4.99 2005-05-28T14:05:57Z 2020-02-15T06:59:54Z +10642 393 2 886 0.99 2005-05-30T06:54:51Z 2020-02-15T06:59:54Z +10643 393 1 1611 6.99 2005-06-16T06:41:35Z 2020-02-15T06:59:54Z +10644 393 2 1915 1.99 2005-06-17T05:28:28Z 2020-02-15T06:59:54Z +10645 393 2 2219 2.99 2005-06-18T03:16:54Z 2020-02-15T06:59:54Z +10646 393 1 2319 4.99 2005-06-18T09:24:22Z 2020-02-15T06:59:54Z +10647 393 2 3001 2.99 2005-06-20T09:50:16Z 2020-02-15T06:59:54Z +10648 393 2 4275 2.99 2005-07-07T14:43:51Z 2020-02-15T06:59:54Z +10649 393 2 4546 8.99 2005-07-08T04:18:36Z 2020-02-15T06:59:54Z +10650 393 2 4632 5.99 2005-07-08T08:38:57Z 2020-02-15T06:59:54Z +10651 393 2 4791 7.99 2005-07-08T16:27:24Z 2020-02-15T06:59:54Z +10652 393 1 5099 4.99 2005-07-09T06:14:30Z 2020-02-15T06:59:54Z +10653 393 1 6221 2.99 2005-07-11T13:24:27Z 2020-02-15T06:59:54Z +10654 393 2 6513 0.99 2005-07-12T03:44:43Z 2020-02-15T06:59:54Z +10655 393 1 6930 8.99 2005-07-26T23:00:01Z 2020-02-15T06:59:54Z +10656 393 2 7486 0.99 2005-07-27T19:29:24Z 2020-02-15T06:59:54Z +10657 393 2 8004 4.99 2005-07-28T15:14:07Z 2020-02-15T06:59:54Z +10658 393 2 8448 0.99 2005-07-29T07:41:54Z 2020-02-15T06:59:54Z +10659 393 2 9763 7.99 2005-07-31T09:34:03Z 2020-02-15T06:59:54Z +10660 393 1 10158 1.99 2005-07-31T22:40:31Z 2020-02-15T06:59:54Z +10661 393 2 12059 2.99 2005-08-17T21:09:23Z 2020-02-15T06:59:54Z +10662 393 1 12113 1.99 2005-08-17T23:01:00Z 2020-02-15T06:59:54Z +10663 393 1 12563 4.99 2005-08-18T15:08:29Z 2020-02-15T06:59:54Z +10664 393 1 12676 0.99 2005-08-18T19:34:40Z 2020-02-15T06:59:54Z +10665 393 1 13184 4.99 2005-08-19T14:16:18Z 2020-02-15T06:59:54Z +10666 393 2 13357 4.99 2005-08-19T21:02:59Z 2020-02-15T06:59:54Z +10667 393 2 13788 1.99 2005-08-20T12:15:41Z 2020-02-15T06:59:54Z +10668 393 1 15132 2.99 2005-08-22T13:11:25Z 2020-02-15T06:59:54Z +10669 393 2 15284 3.99 2005-08-22T19:17:08Z 2020-02-15T06:59:54Z +10670 393 2 15527 0.99 2005-08-23T03:44:51Z 2020-02-15T06:59:54Z +10671 393 2 16049 3.99 2005-08-23T22:50:12Z 2020-02-15T06:59:54Z +10672 394 1 213 3.99 2005-05-26T08:44:08Z 2020-02-15T06:59:54Z +10673 394 1 977 2.99 2005-05-30T21:22:26Z 2020-02-15T06:59:54Z +10674 394 2 1324 4.99 2005-06-15T11:02:45Z 2020-02-15T06:59:54Z +10675 394 2 3543 0.99 2005-07-06T02:01:08Z 2020-02-15T06:59:54Z +10676 394 1 3873 6.99 2005-07-06T18:03:16Z 2020-02-15T06:59:54Z +10677 394 2 4009 2.99 2005-07-07T00:28:55Z 2020-02-15T06:59:54Z +10678 394 1 4307 6.99 2005-07-07T17:20:39Z 2020-02-15T06:59:54Z +10679 394 2 5183 4.99 2005-07-09T10:13:45Z 2020-02-15T06:59:54Z +10680 394 1 5535 4.99 2005-07-10T02:27:42Z 2020-02-15T06:59:54Z +10681 394 2 6059 4.99 2005-07-11T04:03:54Z 2020-02-15T06:59:54Z +10682 394 2 7445 3.99 2005-07-27T17:57:15Z 2020-02-15T06:59:54Z +10683 394 1 9147 0.99 2005-07-30T10:38:59Z 2020-02-15T06:59:54Z +10684 394 2 9864 0.99 2005-07-31T13:06:54Z 2020-02-15T06:59:54Z +10685 394 1 10319 4.99 2005-08-01T04:37:19Z 2020-02-15T06:59:54Z +10686 394 1 10603 0.99 2005-08-01T14:30:35Z 2020-02-15T06:59:54Z +10687 394 1 10718 0.99 2005-08-01T18:55:38Z 2020-02-15T06:59:54Z +10688 394 1 12080 4.99 2005-08-17T22:08:04Z 2020-02-15T06:59:54Z +10689 394 1 12389 4.99 2005-08-18T08:48:36Z 2020-02-15T06:59:54Z +10690 394 2 12510 9.99 2005-08-18T13:22:25Z 2020-02-15T06:59:54Z +10691 394 2 13047 0.99 2005-08-19T09:24:49Z 2020-02-15T06:59:54Z +10692 394 1 14605 0.99 2005-08-21T17:56:06Z 2020-02-15T06:59:54Z +10693 394 2 13178 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +10694 395 1 1270 0.99 2005-06-15T07:30:22Z 2020-02-15T06:59:54Z +10695 395 1 1562 0.99 2005-06-16T02:46:27Z 2020-02-15T06:59:54Z +10696 395 2 1603 0.99 2005-06-16T06:14:03Z 2020-02-15T06:59:54Z +10697 395 1 3030 4.99 2005-06-20T11:51:59Z 2020-02-15T06:59:54Z +10698 395 1 3310 0.99 2005-06-21T08:04:51Z 2020-02-15T06:59:54Z +10699 395 1 3389 6.99 2005-06-21T14:37:55Z 2020-02-15T06:59:54Z +10700 395 2 3684 0.99 2005-07-06T09:29:22Z 2020-02-15T06:59:54Z +10701 395 1 4185 5.99 2005-07-07T10:31:05Z 2020-02-15T06:59:54Z +10702 395 1 4393 4.99 2005-07-07T21:12:36Z 2020-02-15T06:59:54Z +10703 395 1 5087 0.99 2005-07-09T05:44:28Z 2020-02-15T06:59:54Z +10704 395 2 5136 0.99 2005-07-09T07:55:01Z 2020-02-15T06:59:54Z +10705 395 1 7740 2.99 2005-07-28T05:23:36Z 2020-02-15T06:59:54Z +10706 395 2 7986 7.99 2005-07-28T14:30:13Z 2020-02-15T06:59:54Z +10707 395 1 11889 0.99 2005-08-17T15:08:27Z 2020-02-15T06:59:54Z +10708 395 1 14471 5.99 2005-08-21T13:10:40Z 2020-02-15T06:59:54Z +10709 395 2 14720 0.99 2005-08-21T21:43:53Z 2020-02-15T06:59:54Z +10710 395 1 15698 2.99 2005-08-23T10:11:40Z 2020-02-15T06:59:54Z +10711 395 1 15856 0.99 2005-08-23T15:59:12Z 2020-02-15T06:59:54Z +10712 395 1 15970 4.99 2005-08-23T19:54:24Z 2020-02-15T06:59:54Z +10713 396 2 641 5.99 2005-05-28T18:45:47Z 2020-02-15T06:59:54Z +10714 396 2 1370 1.99 2005-06-15T14:31:05Z 2020-02-15T06:59:54Z +10715 396 2 1385 4.99 2005-06-15T15:28:23Z 2020-02-15T06:59:54Z +10716 396 2 1408 6.99 2005-06-15T16:57:58Z 2020-02-15T06:59:54Z +10717 396 2 3909 6.99 2005-07-06T19:54:41Z 2020-02-15T06:59:54Z +10718 396 1 5059 1.99 2005-07-09T04:28:01Z 2020-02-15T06:59:54Z +10719 396 2 6335 2.99 2005-07-11T19:25:15Z 2020-02-15T06:59:54Z +10720 396 2 6764 4.99 2005-07-12T15:29:27Z 2020-02-15T06:59:54Z +10721 396 2 6771 2.99 2005-07-12T15:54:40Z 2020-02-15T06:59:54Z +10722 396 2 7142 0.99 2005-07-27T06:55:39Z 2020-02-15T06:59:54Z +10723 396 2 7313 2.99 2005-07-27T13:11:57Z 2020-02-15T06:59:54Z +10724 396 2 8371 2.99 2005-07-29T05:16:35Z 2020-02-15T06:59:54Z +10725 396 2 8807 2.99 2005-07-29T21:36:59Z 2020-02-15T06:59:54Z +10726 396 1 9344 5.99 2005-07-30T18:13:45Z 2020-02-15T06:59:54Z +10727 396 2 10120 2.99 2005-07-31T21:24:24Z 2020-02-15T06:59:54Z +10728 396 2 10124 0.99 2005-07-31T21:31:49Z 2020-02-15T06:59:54Z +10729 396 2 10195 6.99 2005-08-01T00:34:42Z 2020-02-15T06:59:54Z +10730 396 2 10610 0.99 2005-08-01T14:49:41Z 2020-02-15T06:59:54Z +10731 396 2 12393 5.99 2005-08-18T09:02:41Z 2020-02-15T06:59:54Z +10732 396 1 12895 4.99 2005-08-19T03:50:48Z 2020-02-15T06:59:54Z +10733 396 2 13355 4.99 2005-08-19T20:59:19Z 2020-02-15T06:59:54Z +10734 396 1 14078 3.99 2005-08-20T23:26:40Z 2020-02-15T06:59:54Z +10735 396 1 14169 4.99 2005-08-21T03:00:31Z 2020-02-15T06:59:54Z +10736 396 1 14508 2.99 2005-08-21T14:33:58Z 2020-02-15T06:59:54Z +10737 396 2 14778 5.99 2005-08-21T23:56:30Z 2020-02-15T06:59:54Z +10738 396 1 14792 1.99 2005-08-22T00:36:41Z 2020-02-15T06:59:54Z +10739 396 2 15198 7.99 2005-08-22T16:15:33Z 2020-02-15T06:59:54Z +10740 397 2 1002 0.99 2005-05-31T00:47:56Z 2020-02-15T06:59:54Z +10741 397 1 1769 5.99 2005-06-16T18:07:48Z 2020-02-15T06:59:54Z +10742 397 2 3027 1.99 2005-06-20T11:50:30Z 2020-02-15T06:59:54Z +10743 397 1 3489 5.99 2005-07-05T23:33:40Z 2020-02-15T06:59:54Z +10744 397 1 4036 0.99 2005-07-07T02:48:00Z 2020-02-15T06:59:54Z +10745 397 2 5103 4.99 2005-07-09T06:34:40Z 2020-02-15T06:59:54Z +10746 397 2 5598 4.99 2005-07-10T04:48:29Z 2020-02-15T06:59:54Z +10747 397 2 5763 4.99 2005-07-10T12:58:12Z 2020-02-15T06:59:54Z +10748 397 2 6014 2.99 2005-07-11T02:02:55Z 2020-02-15T06:59:54Z +10749 397 2 6266 2.99 2005-07-11T15:45:39Z 2020-02-15T06:59:54Z +10750 397 1 6471 4.99 2005-07-12T01:31:06Z 2020-02-15T06:59:54Z +10751 397 2 7356 2.99 2005-07-27T14:47:35Z 2020-02-15T06:59:54Z +10752 397 2 7892 4.99 2005-07-28T10:46:58Z 2020-02-15T06:59:54Z +10753 397 1 8103 6.99 2005-07-28T18:50:14Z 2020-02-15T06:59:54Z +10754 397 1 9495 0.99 2005-07-30T23:54:26Z 2020-02-15T06:59:54Z +10755 397 2 9608 1.99 2005-07-31T03:51:52Z 2020-02-15T06:59:54Z +10756 397 1 10534 0.99 2005-08-01T12:15:11Z 2020-02-15T06:59:54Z +10757 397 2 10598 4.99 2005-08-01T14:23:36Z 2020-02-15T06:59:54Z +10758 397 1 10785 1.99 2005-08-01T21:24:55Z 2020-02-15T06:59:54Z +10759 397 2 11511 4.99 2005-08-16T23:39:59Z 2020-02-15T06:59:54Z +10760 397 2 12223 2.99 2005-08-18T02:58:40Z 2020-02-15T06:59:54Z +10761 397 1 12276 0.99 2005-08-18T04:43:22Z 2020-02-15T06:59:54Z +10762 397 2 12329 1.99 2005-08-18T06:44:30Z 2020-02-15T06:59:54Z +10763 397 2 12700 0.99 2005-08-18T20:24:46Z 2020-02-15T06:59:54Z +10764 397 2 12726 2.99 2005-08-18T21:44:46Z 2020-02-15T06:59:54Z +10765 397 1 12772 4.99 2005-08-18T23:29:25Z 2020-02-15T06:59:54Z +10766 397 2 14100 3.99 2005-08-21T00:31:07Z 2020-02-15T06:59:54Z +10767 397 1 14790 6.99 2005-08-22T00:34:17Z 2020-02-15T06:59:54Z +10768 397 1 15083 6.99 2005-08-22T11:17:37Z 2020-02-15T06:59:54Z +10769 398 1 486 4.99 2005-05-27T23:51:12Z 2020-02-15T06:59:54Z +10770 398 2 1228 2.99 2005-06-15T03:50:36Z 2020-02-15T06:59:54Z +10771 398 1 2087 6.99 2005-06-17T17:35:10Z 2020-02-15T06:59:54Z +10772 398 2 3141 9.99 2005-06-20T19:55:47Z 2020-02-15T06:59:54Z +10773 398 2 5234 5.99 2005-07-09T12:44:47Z 2020-02-15T06:59:54Z +10774 398 2 8119 3.99 2005-07-28T19:23:15Z 2020-02-15T06:59:54Z +10775 398 2 8204 4.99 2005-07-28T23:18:29Z 2020-02-15T06:59:54Z +10776 398 1 8428 7.99 2005-07-29T07:10:14Z 2020-02-15T06:59:54Z +10777 398 1 9042 2.99 2005-07-30T06:33:55Z 2020-02-15T06:59:54Z +10778 398 2 9281 5.99 2005-07-30T15:15:51Z 2020-02-15T06:59:54Z +10779 398 1 9771 1.99 2005-07-31T09:55:36Z 2020-02-15T06:59:54Z +10780 398 1 10230 2.99 2005-08-01T01:49:36Z 2020-02-15T06:59:54Z +10781 398 2 11132 4.99 2005-08-02T09:14:09Z 2020-02-15T06:59:54Z +10782 398 2 12528 2.99 2005-08-18T13:52:41Z 2020-02-15T06:59:54Z +10783 398 2 13643 4.99 2005-08-20T07:42:24Z 2020-02-15T06:59:54Z +10784 398 1 15189 3.99 2005-08-22T15:56:42Z 2020-02-15T06:59:54Z +10785 399 2 10 5.99 2005-05-25T00:02:21Z 2020-02-15T06:59:54Z +10786 399 2 694 6.99 2005-05-29T01:49:43Z 2020-02-15T06:59:54Z +10787 399 2 883 4.99 2005-05-30T06:21:05Z 2020-02-15T06:59:54Z +10788 399 2 2961 2.99 2005-06-20T07:29:15Z 2020-02-15T06:59:54Z +10789 399 1 3036 5.99 2005-06-20T12:18:31Z 2020-02-15T06:59:54Z +10790 399 2 4957 0.99 2005-07-08T23:18:48Z 2020-02-15T06:59:54Z +10791 399 2 4981 4.99 2005-07-09T00:29:29Z 2020-02-15T06:59:54Z +10792 399 1 5507 0.99 2005-07-10T00:49:04Z 2020-02-15T06:59:54Z +10793 399 2 6006 2.99 2005-07-11T01:38:42Z 2020-02-15T06:59:54Z +10794 399 2 6229 6.99 2005-07-11T13:59:50Z 2020-02-15T06:59:54Z +10795 399 2 6674 4.99 2005-07-12T11:51:54Z 2020-02-15T06:59:54Z +10796 399 2 8461 5.99 2005-07-29T08:11:31Z 2020-02-15T06:59:54Z +10797 399 2 9728 2.99 2005-07-31T08:40:54Z 2020-02-15T06:59:54Z +10798 399 2 10654 2.99 2005-08-01T16:31:35Z 2020-02-15T06:59:54Z +10799 399 2 10960 5.99 2005-08-02T03:46:18Z 2020-02-15T06:59:54Z +10800 399 1 11329 4.99 2005-08-02T16:42:52Z 2020-02-15T06:59:54Z +10801 399 1 11953 3.99 2005-08-17T17:16:42Z 2020-02-15T06:59:54Z +10802 399 1 13253 4.99 2005-08-19T16:53:56Z 2020-02-15T06:59:54Z +10803 399 2 13293 4.99 2005-08-19T18:35:52Z 2020-02-15T06:59:54Z +10804 399 1 15300 0.99 2005-08-22T19:44:00Z 2020-02-15T06:59:54Z +10805 399 1 15468 4.99 2005-08-23T01:25:30Z 2020-02-15T06:59:54Z +10806 400 1 95 3.99 2005-05-25T16:12:52Z 2020-02-15T06:59:54Z +10807 400 2 171 6.99 2005-05-26T03:14:15Z 2020-02-15T06:59:54Z +10808 400 2 516 1.99 2005-05-28T03:11:47Z 2020-02-15T06:59:54Z +10809 400 2 894 5.99 2005-05-30T08:31:31Z 2020-02-15T06:59:54Z +10810 400 2 1364 0.99 2005-06-15T14:05:32Z 2020-02-15T06:59:54Z +10811 400 1 1917 3.99 2005-06-17T05:36:07Z 2020-02-15T06:59:54Z +10812 400 2 1923 6.99 2005-06-17T06:06:10Z 2020-02-15T06:59:54Z +10813 400 1 4573 6.99 2005-07-08T05:38:46Z 2020-02-15T06:59:54Z +10814 400 1 4645 2.99 2005-07-08T09:20:09Z 2020-02-15T06:59:54Z +10815 400 2 5212 6.99 2005-07-09T11:37:47Z 2020-02-15T06:59:54Z +10816 400 2 5222 5.99 2005-07-09T12:05:45Z 2020-02-15T06:59:54Z +10817 400 2 6790 5.99 2005-07-12T16:34:59Z 2020-02-15T06:59:54Z +10818 400 2 6994 2.99 2005-07-27T01:08:26Z 2020-02-15T06:59:54Z +10819 400 2 7296 2.99 2005-07-27T12:39:48Z 2020-02-15T06:59:54Z +10820 400 1 7682 5.99 2005-07-28T03:07:29Z 2020-02-15T06:59:54Z +10821 400 2 9177 5.99 2005-07-30T11:52:40Z 2020-02-15T06:59:54Z +10822 400 2 9756 4.99 2005-07-31T09:25:00Z 2020-02-15T06:59:54Z +10823 400 1 10187 2.99 2005-08-01T00:15:49Z 2020-02-15T06:59:54Z +10824 400 2 10484 2.99 2005-08-01T10:19:53Z 2020-02-15T06:59:54Z +10825 400 1 10711 0.99 2005-08-01T18:45:09Z 2020-02-15T06:59:54Z +10826 400 2 11510 6.99 2005-08-16T23:30:07Z 2020-02-15T06:59:54Z +10827 400 2 11530 2.99 2005-08-17T00:29:00Z 2020-02-15T06:59:54Z +10828 400 1 11600 5.99 2005-08-17T03:12:04Z 2020-02-15T06:59:54Z +10829 400 1 12514 2.99 2005-08-18T13:33:55Z 2020-02-15T06:59:54Z +10830 400 2 13449 2.99 2005-08-20T00:17:01Z 2020-02-15T06:59:54Z +10831 400 1 14775 2.99 2005-08-21T23:53:07Z 2020-02-15T06:59:54Z +10832 400 2 15533 4.99 2005-08-23T03:54:39Z 2020-02-15T06:59:54Z +10833 400 2 15988 4.99 2005-08-23T20:23:08Z 2020-02-15T06:59:54Z +10834 401 2 167 4.99 2005-05-26T02:50:31Z 2020-02-15T06:59:54Z +10835 401 2 446 4.99 2005-05-27T18:48:41Z 2020-02-15T06:59:54Z +10836 401 2 811 1.99 2005-05-29T19:30:42Z 2020-02-15T06:59:54Z +10837 401 1 4059 0.99 2005-07-07T04:04:26Z 2020-02-15T06:59:54Z +10838 401 2 4292 7.99 2005-07-07T15:48:38Z 2020-02-15T06:59:54Z +10839 401 2 5923 0.99 2005-07-10T21:40:06Z 2020-02-15T06:59:54Z +10840 401 1 0.99 2005-07-12T06:26:10Z 2020-02-15T06:59:54Z +10841 401 2 7651 4.99 2005-07-28T01:48:32Z 2020-02-15T06:59:54Z +10842 401 1 8450 2.99 2005-07-29T07:44:05Z 2020-02-15T06:59:54Z +10843 401 2 8669 2.99 2005-07-29T15:44:55Z 2020-02-15T06:59:54Z +10844 401 1 8722 8.99 2005-07-29T17:58:58Z 2020-02-15T06:59:54Z +10845 401 2 9701 4.99 2005-07-31T07:32:21Z 2020-02-15T06:59:54Z +10846 401 2 10171 0.99 2005-07-31T23:29:05Z 2020-02-15T06:59:54Z +10847 401 1 11820 2.99 2005-08-17T12:25:33Z 2020-02-15T06:59:54Z +10848 401 1 12475 4.99 2005-08-18T12:14:21Z 2020-02-15T06:59:54Z +10849 401 2 12479 4.99 2005-08-18T12:26:37Z 2020-02-15T06:59:54Z +10850 401 1 12906 2.99 2005-08-19T04:13:43Z 2020-02-15T06:59:54Z +10851 401 1 13024 4.99 2005-08-19T08:19:21Z 2020-02-15T06:59:54Z +10852 401 1 14359 0.99 2005-08-21T09:16:19Z 2020-02-15T06:59:54Z +10853 401 2 14433 1.99 2005-08-21T11:36:34Z 2020-02-15T06:59:54Z +10854 401 1 15831 0.99 2005-08-23T15:21:19Z 2020-02-15T06:59:54Z +10855 401 1 15927 0.99 2005-08-23T18:23:11Z 2020-02-15T06:59:54Z +10856 402 2 801 1.99 2005-05-29T17:35:50Z 2020-02-15T06:59:54Z +10857 402 2 1194 4.99 2005-06-15T01:25:08Z 2020-02-15T06:59:54Z +10858 402 2 2490 4.99 2005-06-18T22:00:50Z 2020-02-15T06:59:54Z +10859 402 2 2913 2.99 2005-06-20T03:42:27Z 2020-02-15T06:59:54Z +10860 402 2 3564 6.99 2005-07-06T03:02:13Z 2020-02-15T06:59:54Z +10861 402 2 3612 3.99 2005-07-06T05:37:26Z 2020-02-15T06:59:54Z +10862 402 2 3755 5.99 2005-07-06T12:37:16Z 2020-02-15T06:59:54Z +10863 402 1 4399 2.99 2005-07-07T21:20:28Z 2020-02-15T06:59:54Z +10864 402 2 4604 3.99 2005-07-08T06:58:43Z 2020-02-15T06:59:54Z +10865 402 2 5329 4.99 2005-07-09T16:49:46Z 2020-02-15T06:59:54Z +10866 402 2 6183 2.99 2005-07-11T11:14:35Z 2020-02-15T06:59:54Z +10867 402 1 6283 3.99 2005-07-11T16:47:32Z 2020-02-15T06:59:54Z +10868 402 1 7633 0.99 2005-07-28T01:03:41Z 2020-02-15T06:59:54Z +10869 402 2 8521 7.99 2005-07-29T10:12:45Z 2020-02-15T06:59:54Z +10870 402 1 9657 6.99 2005-07-31T06:00:41Z 2020-02-15T06:59:54Z +10871 402 2 9779 0.99 2005-07-31T10:08:33Z 2020-02-15T06:59:54Z +10872 402 2 11045 0.99 2005-08-02T06:07:54Z 2020-02-15T06:59:54Z +10873 402 2 11549 4.99 2005-08-17T01:01:48Z 2020-02-15T06:59:54Z +10874 402 2 11920 0.99 2005-08-17T16:10:19Z 2020-02-15T06:59:54Z +10875 402 1 15428 4.99 2005-08-23T00:11:52Z 2020-02-15T06:59:54Z +10876 403 1 442 2.99 2005-05-27T18:12:13Z 2020-02-15T06:59:54Z +10877 403 1 517 0.99 2005-05-28T03:17:57Z 2020-02-15T06:59:54Z +10878 403 2 1221 4.99 2005-06-15T03:35:16Z 2020-02-15T06:59:54Z +10879 403 1 1249 8.99 2005-06-15T05:38:09Z 2020-02-15T06:59:54Z +10880 403 2 2488 3.99 2005-06-18T21:38:26Z 2020-02-15T06:59:54Z +10881 403 1 2927 4.99 2005-06-20T04:41:41Z 2020-02-15T06:59:54Z +10882 403 2 3049 6.99 2005-06-20T12:51:01Z 2020-02-15T06:59:54Z +10883 403 1 3356 5.99 2005-06-21T11:38:45Z 2020-02-15T06:59:54Z +10884 403 1 3644 6.99 2005-07-06T07:20:11Z 2020-02-15T06:59:54Z +10885 403 2 3737 3.99 2005-07-06T11:45:53Z 2020-02-15T06:59:54Z +10886 403 2 4096 4.99 2005-07-07T06:09:11Z 2020-02-15T06:59:54Z +10887 403 1 5982 4.99 2005-07-11T00:24:44Z 2020-02-15T06:59:54Z +10888 403 2 6322 2.99 2005-07-11T18:58:20Z 2020-02-15T06:59:54Z +10889 403 1 6342 4.99 2005-07-11T19:48:24Z 2020-02-15T06:59:54Z +10890 403 1 7103 4.99 2005-07-27T05:08:59Z 2020-02-15T06:59:54Z +10891 403 2 8013 5.99 2005-07-28T15:30:26Z 2020-02-15T06:59:54Z +10892 403 1 9058 2.99 2005-07-30T07:15:45Z 2020-02-15T06:59:54Z +10893 403 2 9486 7.99 2005-07-30T23:35:42Z 2020-02-15T06:59:54Z +10894 403 2 9794 4.99 2005-07-31T10:47:01Z 2020-02-15T06:59:54Z +10895 403 2 10109 5.99 2005-07-31T21:04:49Z 2020-02-15T06:59:54Z +10896 403 1 10443 2.99 2005-08-01T09:01:04Z 2020-02-15T06:59:54Z +10897 403 1 10547 6.99 2005-08-01T12:44:17Z 2020-02-15T06:59:54Z +10898 403 2 10789 2.99 2005-08-01T21:37:55Z 2020-02-15T06:59:54Z +10899 403 1 11038 7.99 2005-08-02T05:59:42Z 2020-02-15T06:59:54Z +10900 403 2 11391 9.99 2005-08-02T18:40:12Z 2020-02-15T06:59:54Z +10901 403 2 11427 2.99 2005-08-02T20:02:39Z 2020-02-15T06:59:54Z +10902 403 2 11460 0.99 2005-08-02T21:28:03Z 2020-02-15T06:59:54Z +10903 403 2 11558 0.99 2005-08-17T01:19:52Z 2020-02-15T06:59:54Z +10904 403 2 12005 5.99 2005-08-17T18:56:55Z 2020-02-15T06:59:54Z +10905 403 1 12132 2.99 2005-08-17T23:37:03Z 2020-02-15T06:59:54Z +10906 403 1 12793 5.99 2005-08-19T00:20:36Z 2020-02-15T06:59:54Z +10907 403 1 14519 2.99 2005-08-21T14:59:29Z 2020-02-15T06:59:54Z +10908 403 1 14662 0.99 2005-08-21T19:45:27Z 2020-02-15T06:59:54Z +10909 403 2 14725 4.99 2005-08-21T22:02:08Z 2020-02-15T06:59:54Z +10910 403 1 15410 4.99 2005-08-22T23:27:43Z 2020-02-15T06:59:54Z +10911 404 2 1081 5.99 2005-05-31T10:56:32Z 2020-02-15T06:59:54Z +10912 404 2 1506 2.99 2005-06-15T22:19:37Z 2020-02-15T06:59:54Z +10913 404 2 1840 4.99 2005-06-16T23:39:34Z 2020-02-15T06:59:54Z +10914 404 1 2715 4.99 2005-06-19T14:29:35Z 2020-02-15T06:59:54Z +10915 404 1 2951 2.99 2005-06-20T06:23:01Z 2020-02-15T06:59:54Z +10916 404 1 3927 2.99 2005-07-06T20:48:14Z 2020-02-15T06:59:54Z +10917 404 1 4495 2.99 2005-07-08T01:43:46Z 2020-02-15T06:59:54Z +10918 404 2 4615 8.99 2005-07-08T07:46:53Z 2020-02-15T06:59:54Z +10919 404 1 4653 4.99 2005-07-08T09:48:01Z 2020-02-15T06:59:54Z +10920 404 1 4963 4.99 2005-07-08T23:38:40Z 2020-02-15T06:59:54Z +10921 404 1 5632 3.99 2005-07-10T06:17:06Z 2020-02-15T06:59:54Z +10922 404 1 6114 1.99 2005-07-11T07:33:48Z 2020-02-15T06:59:54Z +10923 404 2 6779 0.99 2005-07-12T16:10:50Z 2020-02-15T06:59:54Z +10924 404 1 6964 4.99 2005-07-27T00:15:04Z 2020-02-15T06:59:54Z +10925 404 1 8058 5.99 2005-07-28T17:07:49Z 2020-02-15T06:59:54Z +10926 404 1 8455 3.99 2005-07-29T07:53:06Z 2020-02-15T06:59:54Z +10927 404 1 9206 4.99 2005-07-30T12:46:59Z 2020-02-15T06:59:54Z +10928 404 1 9472 4.99 2005-07-30T23:03:32Z 2020-02-15T06:59:54Z +10929 404 2 9824 2.99 2005-07-31T11:49:55Z 2020-02-15T06:59:54Z +10930 404 1 10651 2.99 2005-08-01T16:20:22Z 2020-02-15T06:59:54Z +10931 404 1 12325 5.99 2005-08-18T06:41:30Z 2020-02-15T06:59:54Z +10932 404 1 12554 8.99 2005-08-18T14:47:28Z 2020-02-15T06:59:54Z +10933 404 2 13412 5.99 2005-08-19T22:46:35Z 2020-02-15T06:59:54Z +10934 404 1 13422 4.99 2005-08-19T23:07:24Z 2020-02-15T06:59:54Z +10935 404 1 14691 0.99 2005-08-21T20:42:29Z 2020-02-15T06:59:54Z +10936 404 2 14835 5.99 2005-08-22T01:49:07Z 2020-02-15T06:59:54Z +10937 404 2 14838 4.99 2005-08-22T01:57:34Z 2020-02-15T06:59:54Z +10938 404 2 14912 4.99 2005-08-22T04:51:42Z 2020-02-15T06:59:54Z +10939 404 2 15087 0.99 2005-08-22T11:24:09Z 2020-02-15T06:59:54Z +10940 404 2 15290 10.99 2005-08-22T19:28:02Z 2020-02-15T06:59:54Z +10941 405 1 121 2.99 2005-05-25T19:41:29Z 2020-02-15T06:59:54Z +10942 405 2 770 4.99 2005-05-29T12:56:50Z 2020-02-15T06:59:54Z +10943 405 2 1315 4.99 2005-06-15T10:23:08Z 2020-02-15T06:59:54Z +10944 405 1 1888 0.99 2005-06-17T03:58:36Z 2020-02-15T06:59:54Z +10945 405 2 1953 5.99 2005-06-17T08:34:57Z 2020-02-15T06:59:54Z +10946 405 2 2654 3.99 2005-06-19T10:37:54Z 2020-02-15T06:59:54Z +10947 405 1 3240 4.99 2005-06-21T02:53:17Z 2020-02-15T06:59:54Z +10948 405 1 3253 5.99 2005-06-21T03:25:37Z 2020-02-15T06:59:54Z +10949 405 2 4223 0.99 2005-07-07T12:23:54Z 2020-02-15T06:59:54Z +10950 405 2 4401 0.99 2005-07-07T21:26:27Z 2020-02-15T06:59:54Z +10951 405 2 5040 7.99 2005-07-09T03:16:34Z 2020-02-15T06:59:54Z +10952 405 1 5231 0.99 2005-07-09T12:35:02Z 2020-02-15T06:59:54Z +10953 405 2 5512 1.99 2005-07-10T01:05:38Z 2020-02-15T06:59:54Z +10954 405 1 6110 2.99 2005-07-11T07:23:47Z 2020-02-15T06:59:54Z +10955 405 1 7455 2.99 2005-07-27T18:34:41Z 2020-02-15T06:59:54Z +10956 405 1 7759 0.99 2005-07-28T06:28:45Z 2020-02-15T06:59:54Z +10957 405 2 8482 2.99 2005-07-29T08:46:33Z 2020-02-15T06:59:54Z +10958 405 1 8955 5.99 2005-07-30T03:28:27Z 2020-02-15T06:59:54Z +10959 405 1 9569 0.99 2005-07-31T02:39:38Z 2020-02-15T06:59:54Z +10960 405 1 10472 4.99 2005-08-01T09:54:41Z 2020-02-15T06:59:54Z +10961 405 2 10823 4.99 2005-08-01T22:59:10Z 2020-02-15T06:59:54Z +10962 405 1 11345 7.99 2005-08-02T17:14:19Z 2020-02-15T06:59:54Z +10963 405 1 12050 0.99 2005-08-17T20:55:25Z 2020-02-15T06:59:54Z +10964 405 2 12425 5.99 2005-08-18T10:18:06Z 2020-02-15T06:59:54Z +10965 405 1 13304 1.99 2005-08-19T18:56:32Z 2020-02-15T06:59:54Z +10966 405 1 13398 0.99 2005-08-19T22:08:48Z 2020-02-15T06:59:54Z +10967 405 1 14274 4.99 2005-08-21T06:29:20Z 2020-02-15T06:59:54Z +10968 405 2 14537 0.99 2005-08-21T15:24:24Z 2020-02-15T06:59:54Z +10969 405 1 15072 1.99 2005-08-22T10:58:45Z 2020-02-15T06:59:54Z +10970 405 2 15383 2.99 2005-08-22T22:31:20Z 2020-02-15T06:59:54Z +10971 405 1 15932 4.99 2005-08-23T18:31:40Z 2020-02-15T06:59:54Z +10972 405 1 12792 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +10973 406 1 855 0.99 2005-05-30T02:00:28Z 2020-02-15T06:59:54Z +10974 406 1 2113 4.99 2005-06-17T19:57:46Z 2020-02-15T06:59:54Z +10975 406 2 2150 3.99 2005-06-17T22:50:36Z 2020-02-15T06:59:54Z +10976 406 1 2241 2.99 2005-06-18T04:31:41Z 2020-02-15T06:59:54Z +10977 406 2 2325 0.99 2005-06-18T10:08:07Z 2020-02-15T06:59:54Z +10978 406 2 2585 0.99 2005-06-19T05:05:03Z 2020-02-15T06:59:54Z +10979 406 1 3186 7.99 2005-06-20T23:04:20Z 2020-02-15T06:59:54Z +10980 406 1 3306 4.99 2005-06-21T07:46:58Z 2020-02-15T06:59:54Z +10981 406 2 4264 4.99 2005-07-07T14:25:28Z 2020-02-15T06:59:54Z +10982 406 2 5098 4.99 2005-07-09T06:13:54Z 2020-02-15T06:59:54Z +10983 406 2 5263 0.99 2005-07-09T14:10:36Z 2020-02-15T06:59:54Z +10984 406 1 5766 0.99 2005-07-10T13:07:31Z 2020-02-15T06:59:54Z +10985 406 2 6439 2.99 2005-07-12T00:23:48Z 2020-02-15T06:59:54Z +10986 406 2 7109 5.99 2005-07-27T05:28:57Z 2020-02-15T06:59:54Z +10987 406 1 7171 4.99 2005-07-27T07:58:35Z 2020-02-15T06:59:54Z +10988 406 1 7259 4.99 2005-07-27T11:06:00Z 2020-02-15T06:59:54Z +10989 406 2 7604 7.99 2005-07-27T23:54:52Z 2020-02-15T06:59:54Z +10990 406 2 8080 4.99 2005-07-28T18:05:06Z 2020-02-15T06:59:54Z +10991 406 2 8295 2.99 2005-07-29T02:42:14Z 2020-02-15T06:59:54Z +10992 406 2 8630 0.99 2005-07-29T14:07:59Z 2020-02-15T06:59:54Z +10993 406 1 8903 0.99 2005-07-30T01:08:06Z 2020-02-15T06:59:54Z +10994 406 2 8962 1.99 2005-07-30T03:43:45Z 2020-02-15T06:59:54Z +10995 406 2 9224 0.99 2005-07-30T13:25:37Z 2020-02-15T06:59:54Z +10996 406 1 9291 4.99 2005-07-30T16:03:39Z 2020-02-15T06:59:54Z +10997 406 2 9487 2.99 2005-07-30T23:40:22Z 2020-02-15T06:59:54Z +10998 406 1 9660 8.99 2005-07-31T06:03:17Z 2020-02-15T06:59:54Z +10999 406 1 10632 1.99 2005-08-01T15:36:56Z 2020-02-15T06:59:54Z +11000 406 1 11603 4.99 2005-08-17T03:22:10Z 2020-02-15T06:59:54Z +11001 406 2 12505 5.99 2005-08-18T13:17:30Z 2020-02-15T06:59:54Z +11002 406 2 14205 6.99 2005-08-21T03:57:15Z 2020-02-15T06:59:54Z +11003 406 2 14421 2.99 2005-08-21T11:20:21Z 2020-02-15T06:59:54Z +11004 406 2 14601 2.99 2005-08-21T17:45:52Z 2020-02-15T06:59:54Z +11005 407 1 619 7.99 2005-05-28T15:52:26Z 2020-02-15T06:59:54Z +11006 407 1 1698 2.99 2005-06-16T13:04:42Z 2020-02-15T06:59:54Z +11007 407 2 2597 0.99 2005-06-19T05:53:46Z 2020-02-15T06:59:54Z +11008 407 1 4296 0.99 2005-07-07T16:16:03Z 2020-02-15T06:59:54Z +11009 407 1 5070 4.99 2005-07-09T04:58:26Z 2020-02-15T06:59:54Z +11010 407 2 5590 9.99 2005-07-10T04:23:11Z 2020-02-15T06:59:54Z +11011 407 1 6727 0.99 2005-07-12T13:54:25Z 2020-02-15T06:59:54Z +11012 407 1 7363 5.99 2005-07-27T14:58:29Z 2020-02-15T06:59:54Z +11013 407 2 7643 4.99 2005-07-28T01:19:44Z 2020-02-15T06:59:54Z +11014 407 1 8078 2.99 2005-07-28T17:54:42Z 2020-02-15T06:59:54Z +11015 407 1 8109 4.99 2005-07-28T19:07:44Z 2020-02-15T06:59:54Z +11016 407 1 8197 9.99 2005-07-28T23:04:10Z 2020-02-15T06:59:54Z +11017 407 2 8571 0.99 2005-07-29T11:48:39Z 2020-02-15T06:59:54Z +11018 407 1 8802 2.99 2005-07-29T21:25:51Z 2020-02-15T06:59:54Z +11019 407 2 10774 4.99 2005-08-01T20:54:33Z 2020-02-15T06:59:54Z +11020 407 1 11214 8.99 2005-08-02T12:19:50Z 2020-02-15T06:59:54Z +11021 407 1 11222 2.99 2005-08-02T12:32:28Z 2020-02-15T06:59:54Z +11022 407 2 11382 5.99 2005-08-02T18:20:52Z 2020-02-15T06:59:54Z +11023 407 2 11518 4.99 2005-08-16T23:59:49Z 2020-02-15T06:59:54Z +11024 407 1 11677 0.99 2005-08-17T06:06:26Z 2020-02-15T06:59:54Z +11025 407 2 12566 0.99 2005-08-18T15:13:04Z 2020-02-15T06:59:54Z +11026 407 2 12931 2.99 2005-08-19T05:11:47Z 2020-02-15T06:59:54Z +11027 407 1 13800 0.99 2005-08-20T12:40:48Z 2020-02-15T06:59:54Z +11028 407 2 13856 6.99 2005-08-20T14:49:32Z 2020-02-15T06:59:54Z +11029 407 2 14401 6.99 2005-08-21T10:36:20Z 2020-02-15T06:59:54Z +11030 407 2 15320 0.99 2005-08-22T20:17:49Z 2020-02-15T06:59:54Z +11031 407 2 15334 1.99 2005-08-22T20:44:35Z 2020-02-15T06:59:54Z +11032 408 2 3 3.99 2005-05-24T23:03:39Z 2020-02-15T06:59:54Z +11033 408 2 59 5.99 2005-05-25T08:56:42Z 2020-02-15T06:59:54Z +11034 408 1 526 2.99 2005-05-28T04:27:37Z 2020-02-15T06:59:54Z +11035 408 2 2479 4.99 2005-06-18T21:03:08Z 2020-02-15T06:59:54Z +11036 408 1 2564 2.99 2005-06-19T03:41:10Z 2020-02-15T06:59:54Z +11037 408 2 2728 2.99 2005-06-19T15:04:04Z 2020-02-15T06:59:54Z +11038 408 2 4330 3.99 2005-07-07T18:09:41Z 2020-02-15T06:59:54Z +11039 408 2 5073 0.99 2005-07-09T05:02:35Z 2020-02-15T06:59:54Z +11040 408 1 6062 0.99 2005-07-11T04:11:58Z 2020-02-15T06:59:54Z +11041 408 2 6203 4.99 2005-07-11T12:28:57Z 2020-02-15T06:59:54Z +11042 408 2 6826 2.99 2005-07-12T18:32:02Z 2020-02-15T06:59:54Z +11043 408 1 7053 4.99 2005-07-27T03:38:54Z 2020-02-15T06:59:54Z +11044 408 2 7996 4.99 2005-07-28T15:00:49Z 2020-02-15T06:59:54Z +11045 408 2 8251 4.99 2005-07-29T00:50:14Z 2020-02-15T06:59:54Z +11046 408 2 8469 3.99 2005-07-29T08:26:27Z 2020-02-15T06:59:54Z +11047 408 2 8902 6.99 2005-07-30T01:08:06Z 2020-02-15T06:59:54Z +11048 408 1 9052 0.99 2005-07-30T07:06:08Z 2020-02-15T06:59:54Z +11049 408 2 9757 4.99 2005-07-31T09:25:14Z 2020-02-15T06:59:54Z +11050 408 2 11115 2.99 2005-08-02T08:31:06Z 2020-02-15T06:59:54Z +11051 408 1 12140 2.99 2005-08-17T23:57:55Z 2020-02-15T06:59:54Z +11052 408 1 12338 4.99 2005-08-18T07:04:24Z 2020-02-15T06:59:54Z +11053 408 1 12498 2.99 2005-08-18T13:01:08Z 2020-02-15T06:59:54Z +11054 408 2 12900 0.99 2005-08-19T04:03:49Z 2020-02-15T06:59:54Z +11055 408 1 13508 7.99 2005-08-20T02:12:54Z 2020-02-15T06:59:54Z +11056 408 2 13744 3.99 2005-08-20T10:51:45Z 2020-02-15T06:59:54Z +11057 408 1 13944 2.99 2005-08-20T17:41:16Z 2020-02-15T06:59:54Z +11058 408 2 14733 4.99 2005-08-21T22:22:33Z 2020-02-15T06:59:54Z +11059 408 1 15628 2.99 2005-08-23T07:28:04Z 2020-02-15T06:59:54Z +11060 408 2 15716 1.99 2005-08-23T11:02:00Z 2020-02-15T06:59:54Z +11061 408 1 15765 6.99 2005-08-23T13:06:19Z 2020-02-15T06:59:54Z +11062 409 1 310 6.99 2005-05-26T22:41:07Z 2020-02-15T06:59:54Z +11063 409 2 1226 5.99 2005-06-15T03:46:10Z 2020-02-15T06:59:54Z +11064 409 2 2310 8.99 2005-06-18T08:45:59Z 2020-02-15T06:59:54Z +11065 409 1 3866 5.99 2005-07-06T17:47:20Z 2020-02-15T06:59:54Z +11066 409 2 4550 4.99 2005-07-08T04:34:00Z 2020-02-15T06:59:54Z +11067 409 1 5175 3.99 2005-07-09T09:34:28Z 2020-02-15T06:59:54Z +11068 409 2 5306 5.99 2005-07-09T15:56:45Z 2020-02-15T06:59:54Z +11069 409 1 5422 0.99 2005-07-09T20:55:47Z 2020-02-15T06:59:54Z +11070 409 1 5848 2.99 2005-07-10T17:28:14Z 2020-02-15T06:59:54Z +11071 409 1 5955 7.99 2005-07-10T23:22:10Z 2020-02-15T06:59:54Z +11072 409 2 6026 4.99 2005-07-11T02:21:43Z 2020-02-15T06:59:54Z +11073 409 1 6596 2.99 2005-07-12T07:32:59Z 2020-02-15T06:59:54Z +11074 409 2 7673 2.99 2005-07-28T02:53:53Z 2020-02-15T06:59:54Z +11075 409 2 7940 0.99 2005-07-28T12:46:47Z 2020-02-15T06:59:54Z +11076 409 1 8037 4.99 2005-07-28T16:31:20Z 2020-02-15T06:59:54Z +11077 409 2 8265 5.99 2005-07-29T01:20:15Z 2020-02-15T06:59:54Z +11078 409 1 8726 1.99 2005-07-29T18:09:22Z 2020-02-15T06:59:54Z +11079 409 2 9267 0.99 2005-07-30T14:59:05Z 2020-02-15T06:59:54Z +11080 409 2 12830 0.99 2005-08-19T01:40:25Z 2020-02-15T06:59:54Z +11081 409 1 13392 8.99 2005-08-19T22:03:22Z 2020-02-15T06:59:54Z +11082 409 2 13632 6.99 2005-08-20T07:10:52Z 2020-02-15T06:59:54Z +11083 409 1 14103 1.99 2005-08-21T00:37:00Z 2020-02-15T06:59:54Z +11084 409 1 14697 4.99 2005-08-21T20:49:21Z 2020-02-15T06:59:54Z +11085 410 1 1514 2.99 2005-06-15T22:57:34Z 2020-02-15T06:59:54Z +11086 410 1 2073 2.99 2005-06-17T16:33:59Z 2020-02-15T06:59:54Z +11087 410 1 2255 4.99 2005-06-18T05:21:12Z 2020-02-15T06:59:54Z +11088 410 2 2400 5.99 2005-06-18T16:10:46Z 2020-02-15T06:59:54Z +11089 410 2 2971 0.99 2005-06-20T07:56:00Z 2020-02-15T06:59:54Z +11090 410 1 3249 4.99 2005-06-21T03:13:19Z 2020-02-15T06:59:54Z +11091 410 2 4062 0.99 2005-07-07T04:22:27Z 2020-02-15T06:59:54Z +11092 410 1 4267 0.99 2005-07-07T14:35:30Z 2020-02-15T06:59:54Z +11093 410 1 5150 3.99 2005-07-09T08:28:40Z 2020-02-15T06:59:54Z +11094 410 1 5192 4.99 2005-07-09T10:27:09Z 2020-02-15T06:59:54Z +11095 410 2 5330 5.99 2005-07-09T16:53:57Z 2020-02-15T06:59:54Z +11096 410 1 5336 2.99 2005-07-09T17:01:08Z 2020-02-15T06:59:54Z +11097 410 1 6148 4.99 2005-07-11T09:14:22Z 2020-02-15T06:59:54Z +11098 410 2 6218 5.99 2005-07-11T13:14:58Z 2020-02-15T06:59:54Z +11099 410 2 7350 4.99 2005-07-27T14:34:14Z 2020-02-15T06:59:54Z +11100 410 2 7407 5.99 2005-07-27T16:29:04Z 2020-02-15T06:59:54Z +11101 410 1 7523 4.99 2005-07-27T21:11:23Z 2020-02-15T06:59:54Z +11102 410 2 8625 3.99 2005-07-29T13:59:13Z 2020-02-15T06:59:54Z +11103 410 1 8882 0.99 2005-07-30T00:24:05Z 2020-02-15T06:59:54Z +11104 410 1 9263 2.99 2005-07-30T14:48:24Z 2020-02-15T06:59:54Z +11105 410 1 10402 4.99 2005-08-01T07:27:19Z 2020-02-15T06:59:54Z +11106 410 1 10837 2.99 2005-08-01T23:30:22Z 2020-02-15T06:59:54Z +11107 410 1 11107 0.99 2005-08-02T08:19:38Z 2020-02-15T06:59:54Z +11108 410 1 11187 10.99 2005-08-02T11:16:19Z 2020-02-15T06:59:54Z +11109 410 1 11472 6.99 2005-08-02T21:49:06Z 2020-02-15T06:59:54Z +11110 410 1 11694 6.99 2005-08-17T06:57:30Z 2020-02-15T06:59:54Z +11111 410 2 12955 8.99 2005-08-19T06:05:58Z 2020-02-15T06:59:54Z +11112 410 1 13460 4.99 2005-08-20T00:48:24Z 2020-02-15T06:59:54Z +11113 410 2 13748 2.99 2005-08-20T10:59:54Z 2020-02-15T06:59:54Z +11114 410 2 13948 6.99 2005-08-20T17:50:48Z 2020-02-15T06:59:54Z +11115 410 1 14237 3.99 2005-08-21T05:15:00Z 2020-02-15T06:59:54Z +11116 410 2 14298 4.99 2005-08-21T07:17:10Z 2020-02-15T06:59:54Z +11117 410 1 14319 4.99 2005-08-21T08:00:55Z 2020-02-15T06:59:54Z +11118 410 2 14819 2.99 2005-08-22T01:17:19Z 2020-02-15T06:59:54Z +11119 410 1 15211 2.99 2005-08-22T16:40:21Z 2020-02-15T06:59:54Z +11120 410 2 15392 3.99 2005-08-22T23:02:15Z 2020-02-15T06:59:54Z +11121 410 1 15518 4.99 2005-08-23T03:19:34Z 2020-02-15T06:59:54Z +11122 410 1 12665 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11123 411 2 686 4.99 2005-05-29T00:27:10Z 2020-02-15T06:59:54Z +11124 411 2 972 1.99 2005-05-30T20:21:07Z 2020-02-15T06:59:54Z +11125 411 1 1985 0.99 2005-06-17T10:31:37Z 2020-02-15T06:59:54Z +11126 411 2 1997 2.99 2005-06-17T11:19:43Z 2020-02-15T06:59:54Z +11127 411 2 2712 0.99 2005-06-19T14:20:13Z 2020-02-15T06:59:54Z +11128 411 1 3928 2.99 2005-07-06T20:52:09Z 2020-02-15T06:59:54Z +11129 411 2 4146 0.99 2005-07-07T08:30:16Z 2020-02-15T06:59:54Z +11130 411 1 4246 2.99 2005-07-07T13:49:03Z 2020-02-15T06:59:54Z +11131 411 2 5357 5.99 2005-07-09T18:08:59Z 2020-02-15T06:59:54Z +11132 411 1 5800 2.99 2005-07-10T14:58:36Z 2020-02-15T06:59:54Z +11133 411 1 7102 1.99 2005-07-27T05:07:21Z 2020-02-15T06:59:54Z +11134 411 2 7395 0.99 2005-07-27T16:03:11Z 2020-02-15T06:59:54Z +11135 411 1 7513 2.99 2005-07-27T20:51:04Z 2020-02-15T06:59:54Z +11136 411 1 7813 2.99 2005-07-28T08:08:27Z 2020-02-15T06:59:54Z +11137 411 1 8023 0.99 2005-07-28T15:53:29Z 2020-02-15T06:59:54Z +11138 411 2 8613 5.99 2005-07-29T13:30:58Z 2020-02-15T06:59:54Z +11139 411 2 9622 0.99 2005-07-31T04:21:45Z 2020-02-15T06:59:54Z +11140 411 2 11294 2.99 2005-08-02T15:08:27Z 2020-02-15T06:59:54Z +11141 411 1 11997 5.99 2005-08-17T18:34:38Z 2020-02-15T06:59:54Z +11142 411 2 13634 0.99 2005-08-20T07:16:45Z 2020-02-15T06:59:54Z +11143 411 2 13656 7.99 2005-08-20T08:01:07Z 2020-02-15T06:59:54Z +11144 411 2 14480 2.99 2005-08-21T13:36:40Z 2020-02-15T06:59:54Z +11145 411 1 14772 5.99 2005-08-21T23:50:39Z 2020-02-15T06:59:54Z +11146 411 2 14996 2.99 2005-08-22T07:52:41Z 2020-02-15T06:59:54Z +11147 411 1 15936 0.99 2005-08-23T18:43:11Z 2020-02-15T06:59:54Z +11148 411 2 13246 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11149 412 2 191 0.99 2005-05-26T06:14:06Z 2020-02-15T06:59:54Z +11150 412 1 333 4.99 2005-05-27T02:52:21Z 2020-02-15T06:59:54Z +11151 412 1 717 0.99 2005-05-29T04:37:44Z 2020-02-15T06:59:54Z +11152 412 2 1043 3.99 2005-05-31T06:11:40Z 2020-02-15T06:59:54Z +11153 412 1 3292 2.99 2005-06-21T06:59:11Z 2020-02-15T06:59:54Z +11154 412 2 3888 0.99 2005-07-06T18:54:20Z 2020-02-15T06:59:54Z +11155 412 2 4074 0.99 2005-07-07T04:49:49Z 2020-02-15T06:59:54Z +11156 412 1 8036 0.99 2005-07-28T16:27:43Z 2020-02-15T06:59:54Z +11157 412 2 8330 8.99 2005-07-29T04:09:07Z 2020-02-15T06:59:54Z +11158 412 1 8411 8.99 2005-07-29T06:44:23Z 2020-02-15T06:59:54Z +11159 412 1 8674 0.99 2005-07-29T15:54:22Z 2020-02-15T06:59:54Z +11160 412 1 9881 4.99 2005-07-31T13:50:38Z 2020-02-15T06:59:54Z +11161 412 2 10381 2.99 2005-08-01T06:36:37Z 2020-02-15T06:59:54Z +11162 412 1 10467 5.99 2005-08-01T09:45:58Z 2020-02-15T06:59:54Z +11163 412 2 11027 4.99 2005-08-02T05:47:10Z 2020-02-15T06:59:54Z +11164 412 1 14068 3.99 2005-08-20T22:50:59Z 2020-02-15T06:59:54Z +11165 412 1 14535 6.99 2005-08-21T15:22:37Z 2020-02-15T06:59:54Z +11166 412 2 15354 4.99 2005-08-22T21:18:59Z 2020-02-15T06:59:54Z +11167 412 2 15732 4.99 2005-08-23T11:35:12Z 2020-02-15T06:59:54Z +11168 412 1 15781 8.99 2005-08-23T13:41:05Z 2020-02-15T06:59:54Z +11169 412 1 15314 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11170 413 1 40 4.99 2005-05-25T05:09:04Z 2020-02-15T06:59:54Z +11171 413 1 999 4.99 2005-05-31T00:25:10Z 2020-02-15T06:59:54Z +11172 413 2 2130 5.99 2005-06-17T21:00:44Z 2020-02-15T06:59:54Z +11173 413 2 2545 4.99 2005-06-19T02:23:36Z 2020-02-15T06:59:54Z +11174 413 1 3762 4.99 2005-07-06T12:52:49Z 2020-02-15T06:59:54Z +11175 413 2 4491 0.99 2005-07-08T01:30:46Z 2020-02-15T06:59:54Z +11176 413 1 5897 7.99 2005-07-10T20:16:14Z 2020-02-15T06:59:54Z +11177 413 2 7100 4.99 2005-07-27T05:05:01Z 2020-02-15T06:59:54Z +11178 413 1 7635 0.99 2005-07-28T01:08:11Z 2020-02-15T06:59:54Z +11179 413 2 7731 0.99 2005-07-28T05:01:18Z 2020-02-15T06:59:54Z +11180 413 1 10909 2.99 2005-08-02T01:53:59Z 2020-02-15T06:59:54Z +11181 413 2 11304 2.99 2005-08-02T15:40:10Z 2020-02-15T06:59:54Z +11182 413 1 11468 0.99 2005-08-02T21:47:26Z 2020-02-15T06:59:54Z +11183 413 1 11532 0.99 2005-08-17T00:34:14Z 2020-02-15T06:59:54Z +11184 413 2 12552 2.99 2005-08-18T14:46:34Z 2020-02-15T06:59:54Z +11185 413 1 13010 3.99 2005-08-19T07:52:21Z 2020-02-15T06:59:54Z +11186 413 1 13318 2.99 2005-08-19T19:33:57Z 2020-02-15T06:59:54Z +11187 413 2 13824 4.99 2005-08-20T13:43:12Z 2020-02-15T06:59:54Z +11188 413 2 13887 4.99 2005-08-20T15:39:00Z 2020-02-15T06:59:54Z +11189 413 1 14773 2.99 2005-08-21T23:50:57Z 2020-02-15T06:59:54Z +11190 413 1 15678 2.99 2005-08-23T09:23:45Z 2020-02-15T06:59:54Z +11191 414 1 85 4.99 2005-05-25T13:05:34Z 2020-02-15T06:59:54Z +11192 414 1 261 3.99 2005-05-26T15:44:23Z 2020-02-15T06:59:54Z +11193 414 1 2246 4.99 2005-06-18T04:54:29Z 2020-02-15T06:59:54Z +11194 414 1 2559 9.99 2005-06-19T03:09:46Z 2020-02-15T06:59:54Z +11195 414 1 3318 5.99 2005-06-21T08:23:05Z 2020-02-15T06:59:54Z +11196 414 1 3957 10.99 2005-07-06T22:05:47Z 2020-02-15T06:59:54Z +11197 414 1 4437 3.99 2005-07-07T22:55:41Z 2020-02-15T06:59:54Z +11198 414 2 6462 7.99 2005-07-12T01:15:24Z 2020-02-15T06:59:54Z +11199 414 2 6728 0.99 2005-07-12T13:56:48Z 2020-02-15T06:59:54Z +11200 414 2 6845 0.99 2005-07-12T19:20:41Z 2020-02-15T06:59:54Z +11201 414 1 7009 0.99 2005-07-27T01:45:44Z 2020-02-15T06:59:54Z +11202 414 1 7779 2.99 2005-07-28T07:11:11Z 2020-02-15T06:59:54Z +11203 414 1 9650 2.99 2005-07-31T05:47:32Z 2020-02-15T06:59:54Z +11204 414 2 9991 2.99 2005-07-31T17:26:27Z 2020-02-15T06:59:54Z +11205 414 2 10107 5.99 2005-07-31T21:01:46Z 2020-02-15T06:59:54Z +11206 414 1 11706 0.99 2005-08-17T07:23:46Z 2020-02-15T06:59:54Z +11207 414 2 12930 4.99 2005-08-19T05:11:32Z 2020-02-15T06:59:54Z +11208 414 1 13042 0.99 2005-08-19T09:06:08Z 2020-02-15T06:59:54Z +11209 414 1 13242 2.99 2005-08-19T16:28:47Z 2020-02-15T06:59:54Z +11210 414 1 13308 7.99 2005-08-19T18:59:42Z 2020-02-15T06:59:54Z +11211 414 1 13404 0.99 2005-08-19T22:18:42Z 2020-02-15T06:59:54Z +11212 414 2 13494 2.99 2005-08-20T01:36:34Z 2020-02-15T06:59:54Z +11213 414 2 13657 4.99 2005-08-20T08:01:39Z 2020-02-15T06:59:54Z +11214 414 1 15140 6.99 2005-08-22T13:39:20Z 2020-02-15T06:59:54Z +11215 414 2 15481 0.99 2005-08-23T01:59:14Z 2020-02-15T06:59:54Z +11216 415 2 665 4.99 2005-05-28T21:38:39Z 2020-02-15T06:59:54Z +11217 415 2 1867 4.99 2005-06-17T02:01:37Z 2020-02-15T06:59:54Z +11218 415 1 3211 2.99 2005-06-21T01:01:29Z 2020-02-15T06:59:54Z +11219 415 2 4926 8.99 2005-07-08T22:01:48Z 2020-02-15T06:59:54Z +11220 415 2 5665 0.99 2005-07-10T08:10:08Z 2020-02-15T06:59:54Z +11221 415 2 5733 0.99 2005-07-10T11:37:24Z 2020-02-15T06:59:54Z +11222 415 2 6491 5.99 2005-07-12T02:28:31Z 2020-02-15T06:59:54Z +11223 415 1 6505 3.99 2005-07-12T03:27:37Z 2020-02-15T06:59:54Z +11224 415 1 7379 4.99 2005-07-27T15:36:43Z 2020-02-15T06:59:54Z +11225 415 2 7624 0.99 2005-07-28T00:37:44Z 2020-02-15T06:59:54Z +11226 415 1 7748 4.99 2005-07-28T05:52:23Z 2020-02-15T06:59:54Z +11227 415 2 8317 2.99 2005-07-29T03:39:07Z 2020-02-15T06:59:54Z +11228 415 2 9586 2.99 2005-07-31T03:07:16Z 2020-02-15T06:59:54Z +11229 415 1 9852 2.99 2005-07-31T12:52:17Z 2020-02-15T06:59:54Z +11230 415 1 10263 5.99 2005-08-01T03:02:48Z 2020-02-15T06:59:54Z +11231 415 1 10553 2.99 2005-08-01T12:54:06Z 2020-02-15T06:59:54Z +11232 415 2 11310 1.99 2005-08-02T15:51:58Z 2020-02-15T06:59:54Z +11233 415 2 12128 5.99 2005-08-17T23:31:09Z 2020-02-15T06:59:54Z +11234 415 2 12588 2.99 2005-08-18T16:04:45Z 2020-02-15T06:59:54Z +11235 415 2 13729 8.99 2005-08-20T10:17:08Z 2020-02-15T06:59:54Z +11236 415 1 14992 4.99 2005-08-22T07:51:47Z 2020-02-15T06:59:54Z +11237 415 2 15121 4.99 2005-08-22T12:46:37Z 2020-02-15T06:59:54Z +11238 415 1 15959 0.99 2005-08-23T19:27:04Z 2020-02-15T06:59:54Z +11239 416 2 253 0.99 2005-05-26T14:43:14Z 2020-02-15T06:59:54Z +11240 416 2 724 3.99 2005-05-29T05:53:23Z 2020-02-15T06:59:54Z +11241 416 2 1031 2.99 2005-05-31T04:23:01Z 2020-02-15T06:59:54Z +11242 416 2 1158 2.99 2005-06-14T22:53:33Z 2020-02-15T06:59:54Z +11243 416 1 1343 4.99 2005-06-15T12:27:19Z 2020-02-15T06:59:54Z +11244 416 2 1553 0.99 2005-06-16T02:02:44Z 2020-02-15T06:59:54Z +11245 416 2 1596 2.99 2005-06-16T05:30:58Z 2020-02-15T06:59:54Z +11246 416 2 1771 0.99 2005-06-16T18:12:17Z 2020-02-15T06:59:54Z +11247 416 1 3833 3.99 2005-07-06T16:18:28Z 2020-02-15T06:59:54Z +11248 416 1 3868 2.99 2005-07-06T17:54:13Z 2020-02-15T06:59:54Z +11249 416 1 6097 2.99 2005-07-11T06:21:43Z 2020-02-15T06:59:54Z +11250 416 1 6879 7.99 2005-07-12T20:37:37Z 2020-02-15T06:59:54Z +11251 416 1 7889 0.99 2005-07-28T10:43:21Z 2020-02-15T06:59:54Z +11252 416 1 7917 2.99 2005-07-28T11:56:57Z 2020-02-15T06:59:54Z +11253 416 2 8349 5.99 2005-07-29T04:50:22Z 2020-02-15T06:59:54Z +11254 416 2 8588 2.99 2005-07-29T12:22:20Z 2020-02-15T06:59:54Z +11255 416 2 8648 2.99 2005-07-29T14:56:21Z 2020-02-15T06:59:54Z +11256 416 2 9383 2.99 2005-07-30T19:24:50Z 2020-02-15T06:59:54Z +11257 416 1 10254 3.99 2005-08-01T02:42:03Z 2020-02-15T06:59:54Z +11258 416 1 10354 2.99 2005-08-01T05:47:10Z 2020-02-15T06:59:54Z +11259 416 1 10742 6.99 2005-08-01T19:53:13Z 2020-02-15T06:59:54Z +11260 416 1 10937 6.99 2005-08-02T03:00:18Z 2020-02-15T06:59:54Z +11261 416 2 11047 5.99 2005-08-02T06:09:20Z 2020-02-15T06:59:54Z +11262 416 1 11557 6.99 2005-08-17T01:19:20Z 2020-02-15T06:59:54Z +11263 416 1 12722 8.99 2005-08-18T21:33:53Z 2020-02-15T06:59:54Z +11264 416 1 12932 4.99 2005-08-19T05:17:30Z 2020-02-15T06:59:54Z +11265 416 1 14239 4.99 2005-08-21T05:18:57Z 2020-02-15T06:59:54Z +11266 416 1 15235 1.99 2005-08-22T17:43:12Z 2020-02-15T06:59:54Z +11267 416 2 15470 4.99 2005-08-23T01:35:12Z 2020-02-15T06:59:54Z +11268 416 1 15727 2.99 2005-08-23T11:28:49Z 2020-02-15T06:59:54Z +11269 416 2 15761 0.99 2005-08-23T12:55:51Z 2020-02-15T06:59:54Z +11270 417 1 267 4.99 2005-05-26T16:16:21Z 2020-02-15T06:59:54Z +11271 417 2 630 8.99 2005-05-28T17:24:51Z 2020-02-15T06:59:54Z +11272 417 2 833 4.99 2005-05-29T23:21:56Z 2020-02-15T06:59:54Z +11273 417 1 1921 3.99 2005-06-17T06:04:16Z 2020-02-15T06:59:54Z +11274 417 1 3952 4.99 2005-07-06T21:51:31Z 2020-02-15T06:59:54Z +11275 417 1 4418 2.99 2005-07-07T22:05:30Z 2020-02-15T06:59:54Z +11276 417 1 4421 9.99 2005-07-07T22:07:55Z 2020-02-15T06:59:54Z +11277 417 2 6258 6.99 2005-07-11T15:24:32Z 2020-02-15T06:59:54Z +11278 417 1 6312 4.99 2005-07-11T18:19:02Z 2020-02-15T06:59:54Z +11279 417 1 8877 2.99 2005-07-30T00:15:22Z 2020-02-15T06:59:54Z +11280 417 2 9049 2.99 2005-07-30T06:57:28Z 2020-02-15T06:59:54Z +11281 417 1 10478 0.99 2005-08-01T10:09:06Z 2020-02-15T06:59:54Z +11282 417 1 11217 7.99 2005-08-02T12:26:31Z 2020-02-15T06:59:54Z +11283 417 1 11291 6.99 2005-08-02T14:57:58Z 2020-02-15T06:59:54Z +11284 417 2 11303 0.99 2005-08-02T15:39:18Z 2020-02-15T06:59:54Z +11285 417 2 12074 0.99 2005-08-17T21:50:57Z 2020-02-15T06:59:54Z +11286 417 2 12281 4.99 2005-08-18T04:50:32Z 2020-02-15T06:59:54Z +11287 417 1 13545 4.99 2005-08-20T03:50:15Z 2020-02-15T06:59:54Z +11288 417 1 13927 1.99 2005-08-20T17:11:58Z 2020-02-15T06:59:54Z +11289 417 2 14121 4.99 2005-08-21T01:26:33Z 2020-02-15T06:59:54Z +11290 417 1 14304 6.99 2005-08-21T07:23:10Z 2020-02-15T06:59:54Z +11291 417 1 14607 2.99 2005-08-21T17:56:50Z 2020-02-15T06:59:54Z +11292 417 2 14882 2.99 2005-08-22T03:52:21Z 2020-02-15T06:59:54Z +11293 417 1 15795 0.99 2005-08-23T14:07:56Z 2020-02-15T06:59:54Z +11294 417 2 13261 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11295 418 1 2825 2.99 2005-06-19T20:32:19Z 2020-02-15T06:59:54Z +11296 418 2 2943 2.99 2005-06-20T05:43:05Z 2020-02-15T06:59:54Z +11297 418 2 2969 2.99 2005-06-20T07:44:27Z 2020-02-15T06:59:54Z +11298 418 1 3805 0.99 2005-07-06T15:08:42Z 2020-02-15T06:59:54Z +11299 418 2 4852 7.99 2005-07-08T18:43:15Z 2020-02-15T06:59:54Z +11300 418 1 4865 2.99 2005-07-08T19:09:04Z 2020-02-15T06:59:54Z +11301 418 1 4938 0.99 2005-07-08T22:32:53Z 2020-02-15T06:59:54Z +11302 418 1 6150 4.99 2005-07-11T09:23:56Z 2020-02-15T06:59:54Z +11303 418 1 6970 4.99 2005-07-27T00:26:14Z 2020-02-15T06:59:54Z +11304 418 2 8546 5.99 2005-07-29T11:08:48Z 2020-02-15T06:59:54Z +11305 418 2 8591 0.99 2005-07-29T12:32:33Z 2020-02-15T06:59:54Z +11306 418 2 8886 10.99 2005-07-30T00:36:31Z 2020-02-15T06:59:54Z +11307 418 1 9558 4.99 2005-07-31T02:14:35Z 2020-02-15T06:59:54Z +11308 418 2 10537 5.99 2005-08-01T12:22:28Z 2020-02-15T06:59:54Z +11309 418 1 10709 0.99 2005-08-01T18:43:57Z 2020-02-15T06:59:54Z +11310 418 2 10915 2.99 2005-08-02T02:05:04Z 2020-02-15T06:59:54Z +11311 418 1 11270 2.99 2005-08-02T14:18:07Z 2020-02-15T06:59:54Z +11312 418 2 11322 3.99 2005-08-02T16:23:17Z 2020-02-15T06:59:54Z +11313 418 2 11409 1.99 2005-08-02T19:26:51Z 2020-02-15T06:59:54Z +11314 418 1 11650 4.99 2005-08-17T05:00:03Z 2020-02-15T06:59:54Z +11315 418 1 11769 2.99 2005-08-17T10:04:49Z 2020-02-15T06:59:54Z +11316 418 1 11910 0.99 2005-08-17T15:44:37Z 2020-02-15T06:59:54Z +11317 418 2 13312 0.99 2005-08-19T19:09:14Z 2020-02-15T06:59:54Z +11318 418 1 13537 2.99 2005-08-20T03:39:15Z 2020-02-15T06:59:54Z +11319 418 1 13970 0.99 2005-08-20T18:43:34Z 2020-02-15T06:59:54Z +11320 418 1 14484 0.99 2005-08-21T13:47:29Z 2020-02-15T06:59:54Z +11321 418 1 14836 4.99 2005-08-22T01:52:26Z 2020-02-15T06:59:54Z +11322 418 2 14860 2.99 2005-08-22T02:47:07Z 2020-02-15T06:59:54Z +11323 418 1 15466 4.99 2005-08-23T01:16:55Z 2020-02-15T06:59:54Z +11324 418 2 15957 5.99 2005-08-23T19:21:22Z 2020-02-15T06:59:54Z +11325 419 1 62 2.99 2005-05-25T09:18:52Z 2020-02-15T06:59:54Z +11326 419 2 2793 2.99 2005-06-19T18:52:37Z 2020-02-15T06:59:54Z +11327 419 1 3596 0.99 2005-07-06T05:03:11Z 2020-02-15T06:59:54Z +11328 419 1 3694 4.99 2005-07-06T10:01:23Z 2020-02-15T06:59:54Z +11329 419 1 4224 0.99 2005-07-07T12:24:21Z 2020-02-15T06:59:54Z +11330 419 2 5333 5.99 2005-07-09T16:59:38Z 2020-02-15T06:59:54Z +11331 419 2 5863 0.99 2005-07-10T18:25:23Z 2020-02-15T06:59:54Z +11332 419 1 5900 3.99 2005-07-10T20:21:54Z 2020-02-15T06:59:54Z +11333 419 2 5933 0.99 2005-07-10T22:06:48Z 2020-02-15T06:59:54Z +11334 419 2 6173 0.99 2005-07-11T10:33:11Z 2020-02-15T06:59:54Z +11335 419 2 6587 3.99 2005-07-12T06:56:26Z 2020-02-15T06:59:54Z +11336 419 1 7362 4.99 2005-07-27T14:58:27Z 2020-02-15T06:59:54Z +11337 419 1 7619 2.99 2005-07-28T00:25:41Z 2020-02-15T06:59:54Z +11338 419 1 7796 4.99 2005-07-28T07:39:39Z 2020-02-15T06:59:54Z +11339 419 1 10150 2.99 2005-07-31T22:22:00Z 2020-02-15T06:59:54Z +11340 419 1 10372 2.99 2005-08-01T06:23:48Z 2020-02-15T06:59:54Z +11341 419 2 11025 4.99 2005-08-02T05:39:12Z 2020-02-15T06:59:54Z +11342 419 1 11313 2.99 2005-08-02T16:02:51Z 2020-02-15T06:59:54Z +11343 419 2 11323 2.99 2005-08-02T16:29:57Z 2020-02-15T06:59:54Z +11344 419 1 11425 2.99 2005-08-02T19:58:48Z 2020-02-15T06:59:54Z +11345 419 2 11689 6.99 2005-08-17T06:42:08Z 2020-02-15T06:59:54Z +11346 419 1 12460 7.99 2005-08-18T11:25:13Z 2020-02-15T06:59:54Z +11347 419 1 12720 5.99 2005-08-18T21:28:42Z 2020-02-15T06:59:54Z +11348 419 2 14308 0.99 2005-08-21T07:43:21Z 2020-02-15T06:59:54Z +11349 419 2 15779 4.99 2005-08-23T13:33:46Z 2020-02-15T06:59:54Z +11350 420 2 744 4.99 2005-05-29T09:13:08Z 2020-02-15T06:59:54Z +11351 420 2 2672 3.99 2005-06-19T11:42:04Z 2020-02-15T06:59:54Z +11352 420 1 2698 0.99 2005-06-19T13:29:11Z 2020-02-15T06:59:54Z +11353 420 1 2726 0.99 2005-06-19T15:02:20Z 2020-02-15T06:59:54Z +11354 420 1 4176 4.99 2005-07-07T10:03:34Z 2020-02-15T06:59:54Z +11355 420 2 5081 4.99 2005-07-09T05:25:20Z 2020-02-15T06:59:54Z +11356 420 1 5168 4.99 2005-07-09T09:20:01Z 2020-02-15T06:59:54Z +11357 420 2 5911 0.99 2005-07-10T20:51:42Z 2020-02-15T06:59:54Z +11358 420 2 6086 3.99 2005-07-11T05:29:03Z 2020-02-15T06:59:54Z +11359 420 2 6096 4.99 2005-07-11T06:18:04Z 2020-02-15T06:59:54Z +11360 420 2 6582 4.99 2005-07-12T06:28:12Z 2020-02-15T06:59:54Z +11361 420 1 6588 4.99 2005-07-12T06:57:40Z 2020-02-15T06:59:54Z +11362 420 2 7081 2.99 2005-07-27T04:25:59Z 2020-02-15T06:59:54Z +11363 420 2 8485 0.99 2005-07-29T08:53:09Z 2020-02-15T06:59:54Z +11364 420 1 9362 0.99 2005-07-30T18:44:16Z 2020-02-15T06:59:54Z +11365 420 2 10291 4.99 2005-08-01T03:39:57Z 2020-02-15T06:59:54Z +11366 420 2 10601 10.99 2005-08-01T14:25:40Z 2020-02-15T06:59:54Z +11367 420 1 10766 4.99 2005-08-01T20:36:29Z 2020-02-15T06:59:54Z +11368 420 2 11236 5.99 2005-08-02T13:17:21Z 2020-02-15T06:59:54Z +11369 420 2 14525 0.99 2005-08-21T15:06:49Z 2020-02-15T06:59:54Z +11370 420 2 15597 0.99 2005-08-23T06:21:20Z 2020-02-15T06:59:54Z +11371 421 1 507 0.99 2005-05-28T02:31:19Z 2020-02-15T06:59:54Z +11372 421 1 931 0.99 2005-05-30T12:53:01Z 2020-02-15T06:59:54Z +11373 421 1 1693 4.99 2005-06-16T12:39:51Z 2020-02-15T06:59:54Z +11374 421 2 2407 2.99 2005-06-18T16:50:41Z 2020-02-15T06:59:54Z +11375 421 1 3170 4.99 2005-06-20T22:02:54Z 2020-02-15T06:59:54Z +11376 421 1 3491 7.99 2005-07-05T23:41:08Z 2020-02-15T06:59:54Z +11377 421 2 3703 5.99 2005-07-06T10:15:26Z 2020-02-15T06:59:54Z +11378 421 1 3988 8.99 2005-07-06T23:30:42Z 2020-02-15T06:59:54Z +11379 421 2 4456 5.99 2005-07-07T23:45:21Z 2020-02-15T06:59:54Z +11380 421 1 6220 0.99 2005-07-11T13:22:06Z 2020-02-15T06:59:54Z +11381 421 2 6960 3.99 2005-07-27T00:08:33Z 2020-02-15T06:59:54Z +11382 421 2 7449 4.99 2005-07-27T18:17:41Z 2020-02-15T06:59:54Z +11383 421 2 8025 2.99 2005-07-28T16:03:27Z 2020-02-15T06:59:54Z +11384 421 1 8268 4.99 2005-07-29T01:23:23Z 2020-02-15T06:59:54Z +11385 421 1 8725 4.99 2005-07-29T18:08:42Z 2020-02-15T06:59:54Z +11386 421 2 9377 4.99 2005-07-30T19:12:18Z 2020-02-15T06:59:54Z +11387 421 2 9875 0.99 2005-07-31T13:37:41Z 2020-02-15T06:59:54Z +11388 421 1 10200 4.99 2005-08-01T00:39:05Z 2020-02-15T06:59:54Z +11389 421 2 11089 2.99 2005-08-02T07:52:20Z 2020-02-15T06:59:54Z +11390 421 1 11263 4.99 2005-08-02T14:02:19Z 2020-02-15T06:59:54Z +11391 421 1 11523 3.99 2005-08-17T00:10:10Z 2020-02-15T06:59:54Z +11392 421 1 12279 4.99 2005-08-18T04:47:30Z 2020-02-15T06:59:54Z +11393 421 2 13461 9.99 2005-08-20T00:49:04Z 2020-02-15T06:59:54Z +11394 421 1 13872 4.99 2005-08-20T15:10:30Z 2020-02-15T06:59:54Z +11395 421 1 14742 4.99 2005-08-21T22:39:01Z 2020-02-15T06:59:54Z +11396 421 1 14887 3.99 2005-08-22T04:04:31Z 2020-02-15T06:59:54Z +11397 421 2 15710 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11398 422 1 398 0.99 2005-05-27T12:44:03Z 2020-02-15T06:59:54Z +11399 422 1 1846 0.99 2005-06-17T00:02:44Z 2020-02-15T06:59:54Z +11400 422 1 1897 4.99 2005-06-17T04:26:23Z 2020-02-15T06:59:54Z +11401 422 2 2747 2.99 2005-06-19T16:22:07Z 2020-02-15T06:59:54Z +11402 422 1 2778 5.99 2005-06-19T18:18:12Z 2020-02-15T06:59:54Z +11403 422 1 3553 4.99 2005-07-06T02:35:41Z 2020-02-15T06:59:54Z +11404 422 2 4463 2.99 2005-07-08T00:04:59Z 2020-02-15T06:59:54Z +11405 422 2 4504 0.99 2005-07-08T02:19:27Z 2020-02-15T06:59:54Z +11406 422 1 5784 1.99 2005-07-10T14:03:28Z 2020-02-15T06:59:54Z +11407 422 2 7827 0.99 2005-07-28T08:37:22Z 2020-02-15T06:59:54Z +11408 422 2 8206 4.99 2005-07-28T23:20:31Z 2020-02-15T06:59:54Z +11409 422 2 9541 4.99 2005-07-31T01:40:14Z 2020-02-15T06:59:54Z +11410 422 2 10833 6.99 2005-08-01T23:25:55Z 2020-02-15T06:59:54Z +11411 422 2 11325 6.99 2005-08-02T16:33:11Z 2020-02-15T06:59:54Z +11412 422 1 11658 2.99 2005-08-17T05:19:17Z 2020-02-15T06:59:54Z +11413 422 1 11842 4.99 2005-08-17T13:13:37Z 2020-02-15T06:59:54Z +11414 422 1 12907 9.99 2005-08-19T04:16:13Z 2020-02-15T06:59:54Z +11415 422 2 13216 1.99 2005-08-19T15:36:05Z 2020-02-15T06:59:54Z +11416 422 2 13625 1.99 2005-08-20T06:52:03Z 2020-02-15T06:59:54Z +11417 422 2 13709 0.99 2005-08-20T09:34:51Z 2020-02-15T06:59:54Z +11418 422 2 13722 4.99 2005-08-20T10:03:45Z 2020-02-15T06:59:54Z +11419 422 1 14861 4.99 2005-08-22T02:48:05Z 2020-02-15T06:59:54Z +11420 422 1 15272 3.99 2005-08-22T18:49:40Z 2020-02-15T06:59:54Z +11421 422 1 15273 2.99 2005-08-22T18:53:28Z 2020-02-15T06:59:54Z +11422 422 2 15316 2.99 2005-08-22T20:07:03Z 2020-02-15T06:59:54Z +11423 422 2 15441 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11424 423 1 1504 3.99 2005-06-15T22:08:06Z 2020-02-15T06:59:54Z +11425 423 2 1827 0.99 2005-06-16T21:54:40Z 2020-02-15T06:59:54Z +11426 423 1 2600 6.99 2005-06-19T06:07:25Z 2020-02-15T06:59:54Z +11427 423 2 2758 6.99 2005-06-19T17:04:35Z 2020-02-15T06:59:54Z +11428 423 1 3072 8.99 2005-06-20T14:21:31Z 2020-02-15T06:59:54Z +11429 423 2 4105 0.99 2005-07-07T06:31:00Z 2020-02-15T06:59:54Z +11430 423 1 4250 0.99 2005-07-07T14:08:11Z 2020-02-15T06:59:54Z +11431 423 1 4679 2.99 2005-07-08T10:33:14Z 2020-02-15T06:59:54Z +11432 423 1 6506 1.99 2005-07-12T03:28:22Z 2020-02-15T06:59:54Z +11433 423 1 7016 5.99 2005-07-27T02:15:16Z 2020-02-15T06:59:54Z +11434 423 2 7141 2.99 2005-07-27T06:55:27Z 2020-02-15T06:59:54Z +11435 423 1 7157 4.99 2005-07-27T07:20:28Z 2020-02-15T06:59:54Z +11436 423 1 7290 0.99 2005-07-27T12:28:45Z 2020-02-15T06:59:54Z +11437 423 2 7539 9.99 2005-07-27T21:39:42Z 2020-02-15T06:59:54Z +11438 423 1 7849 9.99 2005-07-28T09:30:02Z 2020-02-15T06:59:54Z +11439 423 2 8082 3.99 2005-07-28T18:08:02Z 2020-02-15T06:59:54Z +11440 423 2 8595 9.99 2005-07-29T12:47:43Z 2020-02-15T06:59:54Z +11441 423 2 9026 2.99 2005-07-30T05:55:31Z 2020-02-15T06:59:54Z +11442 423 1 10488 2.99 2005-08-01T10:27:27Z 2020-02-15T06:59:54Z +11443 423 1 11091 2.99 2005-08-02T07:56:41Z 2020-02-15T06:59:54Z +11444 423 2 11514 4.99 2005-08-16T23:53:10Z 2020-02-15T06:59:54Z +11445 423 2 12806 4.99 2005-08-19T00:37:26Z 2020-02-15T06:59:54Z +11446 423 2 14191 6.99 2005-08-21T03:35:58Z 2020-02-15T06:59:54Z +11447 423 2 14902 4.99 2005-08-22T04:31:50Z 2020-02-15T06:59:54Z +11448 423 1 15380 0.99 2005-08-22T22:28:15Z 2020-02-15T06:59:54Z +11449 423 1 15755 4.99 2005-08-23T12:46:38Z 2020-02-15T06:59:54Z +11450 424 2 403 0.99 2005-05-27T13:28:52Z 2020-02-15T06:59:54Z +11451 424 2 3044 4.99 2005-06-20T12:38:49Z 2020-02-15T06:59:54Z +11452 424 1 3166 6.99 2005-06-20T21:32:32Z 2020-02-15T06:59:54Z +11453 424 2 3404 0.99 2005-06-21T15:57:52Z 2020-02-15T06:59:54Z +11454 424 2 3746 0.99 2005-07-06T12:10:51Z 2020-02-15T06:59:54Z +11455 424 2 4512 0.99 2005-07-08T02:38:56Z 2020-02-15T06:59:54Z +11456 424 2 4559 0.99 2005-07-08T04:56:49Z 2020-02-15T06:59:54Z +11457 424 2 4696 5.99 2005-07-08T11:12:27Z 2020-02-15T06:59:54Z +11458 424 1 5568 0.99 2005-07-10T03:36:56Z 2020-02-15T06:59:54Z +11459 424 1 5611 3.99 2005-07-10T05:13:43Z 2020-02-15T06:59:54Z +11460 424 1 6589 2.99 2005-07-12T07:06:29Z 2020-02-15T06:59:54Z +11461 424 1 7594 2.99 2005-07-27T23:30:41Z 2020-02-15T06:59:54Z +11462 424 2 8194 2.99 2005-07-28T22:51:44Z 2020-02-15T06:59:54Z +11463 424 1 8918 4.99 2005-07-30T01:56:22Z 2020-02-15T06:59:54Z +11464 424 2 8964 1.99 2005-07-30T03:49:35Z 2020-02-15T06:59:54Z +11465 424 2 8999 2.99 2005-07-30T04:55:46Z 2020-02-15T06:59:54Z +11466 424 1 9471 4.99 2005-07-30T23:02:36Z 2020-02-15T06:59:54Z +11467 424 1 9516 8.99 2005-07-31T00:40:58Z 2020-02-15T06:59:54Z +11468 424 2 9878 4.99 2005-07-31T13:42:02Z 2020-02-15T06:59:54Z +11469 424 1 10017 6.99 2005-07-31T18:13:22Z 2020-02-15T06:59:54Z +11470 424 2 10369 4.99 2005-08-01T06:13:44Z 2020-02-15T06:59:54Z +11471 424 1 10866 2.99 2005-08-02T00:22:49Z 2020-02-15T06:59:54Z +11472 424 2 11374 2.99 2005-08-02T18:14:54Z 2020-02-15T06:59:54Z +11473 424 2 11562 6.99 2005-08-17T01:23:39Z 2020-02-15T06:59:54Z +11474 424 2 11833 2.99 2005-08-17T13:00:33Z 2020-02-15T06:59:54Z +11475 424 2 12729 0.99 2005-08-18T21:52:59Z 2020-02-15T06:59:54Z +11476 424 2 13793 3.99 2005-08-20T12:22:04Z 2020-02-15T06:59:54Z +11477 424 2 15113 0.99 2005-08-22T12:23:59Z 2020-02-15T06:59:54Z +11478 424 2 15941 9.99 2005-08-23T18:46:44Z 2020-02-15T06:59:54Z +11479 424 1 15094 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11480 425 2 1098 5.99 2005-05-31T13:51:48Z 2020-02-15T06:59:54Z +11481 425 1 3276 6.99 2005-06-21T05:35:52Z 2020-02-15T06:59:54Z +11482 425 1 3807 4.99 2005-07-06T15:11:44Z 2020-02-15T06:59:54Z +11483 425 2 4361 2.99 2005-07-07T19:33:23Z 2020-02-15T06:59:54Z +11484 425 2 4362 5.99 2005-07-07T19:35:30Z 2020-02-15T06:59:54Z +11485 425 2 4483 8.99 2005-07-08T01:03:12Z 2020-02-15T06:59:54Z +11486 425 1 4659 2.99 2005-07-08T09:53:28Z 2020-02-15T06:59:54Z +11487 425 1 4884 7.99 2005-07-08T19:49:17Z 2020-02-15T06:59:54Z +11488 425 1 4939 7.99 2005-07-08T22:35:30Z 2020-02-15T06:59:54Z +11489 425 2 5363 2.99 2005-07-09T18:18:49Z 2020-02-15T06:59:54Z +11490 425 1 5371 4.99 2005-07-09T18:47:48Z 2020-02-15T06:59:54Z +11491 425 2 6318 2.99 2005-07-11T18:48:22Z 2020-02-15T06:59:54Z +11492 425 1 6603 2.99 2005-07-12T07:52:55Z 2020-02-15T06:59:54Z +11493 425 1 7249 4.99 2005-07-27T10:39:53Z 2020-02-15T06:59:54Z +11494 425 1 8974 0.99 2005-07-30T04:09:16Z 2020-02-15T06:59:54Z +11495 425 1 9170 0.99 2005-07-30T11:35:24Z 2020-02-15T06:59:54Z +11496 425 2 9682 2.99 2005-07-31T06:47:10Z 2020-02-15T06:59:54Z +11497 425 1 10121 0.99 2005-07-31T21:24:53Z 2020-02-15T06:59:54Z +11498 425 2 10163 0.99 2005-07-31T23:12:34Z 2020-02-15T06:59:54Z +11499 425 1 10545 0.99 2005-08-01T12:37:46Z 2020-02-15T06:59:54Z +11500 425 2 13040 0.99 2005-08-19T09:04:24Z 2020-02-15T06:59:54Z +11501 425 2 14089 5.99 2005-08-20T23:59:02Z 2020-02-15T06:59:54Z +11502 425 2 14881 4.99 2005-08-22T03:47:39Z 2020-02-15T06:59:54Z +11503 425 1 15064 0.99 2005-08-22T10:41:58Z 2020-02-15T06:59:54Z +11504 425 2 15784 6.99 2005-08-23T13:46:00Z 2020-02-15T06:59:54Z +11505 425 2 16036 2.99 2005-08-23T22:12:44Z 2020-02-15T06:59:54Z +11506 426 2 604 0.99 2005-05-28T14:37:07Z 2020-02-15T06:59:54Z +11507 426 1 1709 6.99 2005-06-16T14:10:15Z 2020-02-15T06:59:54Z +11508 426 1 1842 7.99 2005-06-16T23:45:59Z 2020-02-15T06:59:54Z +11509 426 1 2204 2.99 2005-06-18T02:11:38Z 2020-02-15T06:59:54Z +11510 426 1 2804 0.99 2005-06-19T19:24:54Z 2020-02-15T06:59:54Z +11511 426 1 3243 0.99 2005-06-21T03:00:11Z 2020-02-15T06:59:54Z +11512 426 2 4114 2.99 2005-07-07T06:51:12Z 2020-02-15T06:59:54Z +11513 426 2 4398 4.99 2005-07-07T21:18:44Z 2020-02-15T06:59:54Z +11514 426 1 4900 4.99 2005-07-08T20:38:06Z 2020-02-15T06:59:54Z +11515 426 1 5725 3.99 2005-07-10T11:21:21Z 2020-02-15T06:59:54Z +11516 426 1 7495 4.99 2005-07-27T20:01:20Z 2020-02-15T06:59:54Z +11517 426 1 7527 10.99 2005-07-27T21:14:28Z 2020-02-15T06:59:54Z +11518 426 1 7711 4.99 2005-07-28T04:26:42Z 2020-02-15T06:59:54Z +11519 426 1 7789 5.99 2005-07-28T07:22:07Z 2020-02-15T06:59:54Z +11520 426 1 9185 5.99 2005-07-30T12:10:40Z 2020-02-15T06:59:54Z +11521 426 2 9247 4.99 2005-07-30T14:13:56Z 2020-02-15T06:59:54Z +11522 426 2 10172 10.99 2005-07-31T23:29:51Z 2020-02-15T06:59:54Z +11523 426 1 10505 1.99 2005-08-01T11:13:59Z 2020-02-15T06:59:54Z +11524 426 2 11237 0.99 2005-08-02T13:24:01Z 2020-02-15T06:59:54Z +11525 426 2 11876 0.99 2005-08-17T14:18:21Z 2020-02-15T06:59:54Z +11526 426 2 11938 6.99 2005-08-17T16:54:54Z 2020-02-15T06:59:54Z +11527 426 2 12548 5.99 2005-08-18T14:35:26Z 2020-02-15T06:59:54Z +11528 426 2 12707 4.99 2005-08-18T20:52:02Z 2020-02-15T06:59:54Z +11529 426 1 12822 4.99 2005-08-19T01:15:24Z 2020-02-15T06:59:54Z +11530 426 2 13834 2.99 2005-08-20T14:03:08Z 2020-02-15T06:59:54Z +11531 426 2 14151 6.99 2005-08-21T02:23:25Z 2020-02-15T06:59:54Z +11532 426 2 14826 2.99 2005-08-22T01:32:14Z 2020-02-15T06:59:54Z +11533 427 2 82 6.99 2005-05-25T12:17:46Z 2020-02-15T06:59:54Z +11534 427 1 1342 5.99 2005-06-15T12:26:21Z 2020-02-15T06:59:54Z +11535 427 2 1628 3.99 2005-06-16T07:52:55Z 2020-02-15T06:59:54Z +11536 427 1 1648 5.99 2005-06-16T09:17:07Z 2020-02-15T06:59:54Z +11537 427 1 1857 1.99 2005-06-17T01:12:58Z 2020-02-15T06:59:54Z +11538 427 2 2466 0.99 2005-06-18T20:18:42Z 2020-02-15T06:59:54Z +11539 427 1 4793 3.99 2005-07-08T16:30:01Z 2020-02-15T06:59:54Z +11540 427 2 5476 2.99 2005-07-09T23:37:09Z 2020-02-15T06:59:54Z +11541 427 2 5586 5.99 2005-07-10T04:17:06Z 2020-02-15T06:59:54Z +11542 427 1 6423 6.99 2005-07-11T23:47:31Z 2020-02-15T06:59:54Z +11543 427 1 6509 2.99 2005-07-12T03:35:01Z 2020-02-15T06:59:54Z +11544 427 2 6938 7.99 2005-07-26T23:16:04Z 2020-02-15T06:59:54Z +11545 427 2 8182 3.99 2005-07-28T22:19:12Z 2020-02-15T06:59:54Z +11546 427 1 8531 5.99 2005-07-29T10:26:15Z 2020-02-15T06:59:54Z +11547 427 2 8658 5.99 2005-07-29T15:16:37Z 2020-02-15T06:59:54Z +11548 427 2 9978 2.99 2005-07-31T16:59:51Z 2020-02-15T06:59:54Z +11549 427 1 10417 4.99 2005-08-01T08:10:36Z 2020-02-15T06:59:54Z +11550 427 1 10464 5.99 2005-08-01T09:43:14Z 2020-02-15T06:59:54Z +11551 427 2 10560 4.99 2005-08-01T13:04:57Z 2020-02-15T06:59:54Z +11552 427 1 11024 5.99 2005-08-02T05:38:31Z 2020-02-15T06:59:54Z +11553 427 1 13720 1.99 2005-08-20T10:01:39Z 2020-02-15T06:59:54Z +11554 427 2 14201 6.99 2005-08-21T03:51:34Z 2020-02-15T06:59:54Z +11555 427 1 14287 3.99 2005-08-21T06:53:59Z 2020-02-15T06:59:54Z +11556 427 1 15330 3.99 2005-08-22T20:35:30Z 2020-02-15T06:59:54Z +11557 428 2 634 4.99 2005-05-28T17:40:35Z 2020-02-15T06:59:54Z +11558 428 1 1227 3.99 2005-06-15T03:50:03Z 2020-02-15T06:59:54Z +11559 428 2 1471 2.99 2005-06-15T20:53:26Z 2020-02-15T06:59:54Z +11560 428 1 1601 3.99 2005-06-16T06:11:13Z 2020-02-15T06:59:54Z +11561 428 1 2677 2.99 2005-06-19T12:01:59Z 2020-02-15T06:59:54Z +11562 428 2 3377 0.99 2005-06-21T13:51:12Z 2020-02-15T06:59:54Z +11563 428 1 3702 2.99 2005-07-06T10:13:56Z 2020-02-15T06:59:54Z +11564 428 1 3925 5.99 2005-07-06T20:41:44Z 2020-02-15T06:59:54Z +11565 428 1 4151 0.99 2005-07-07T08:49:02Z 2020-02-15T06:59:54Z +11566 428 1 5373 4.99 2005-07-09T18:48:57Z 2020-02-15T06:59:54Z +11567 428 1 6735 5.99 2005-07-12T14:08:20Z 2020-02-15T06:59:54Z +11568 428 1 7823 6.99 2005-07-28T08:32:53Z 2020-02-15T06:59:54Z +11569 428 1 8155 2.99 2005-07-28T20:57:06Z 2020-02-15T06:59:54Z +11570 428 2 8387 4.99 2005-07-29T05:47:27Z 2020-02-15T06:59:54Z +11571 428 2 8528 4.99 2005-07-29T10:24:22Z 2020-02-15T06:59:54Z +11572 428 1 9904 5.99 2005-07-31T14:34:17Z 2020-02-15T06:59:54Z +11573 428 2 9982 2.99 2005-07-31T17:09:02Z 2020-02-15T06:59:54Z +11574 428 2 10577 4.99 2005-08-01T13:46:38Z 2020-02-15T06:59:54Z +11575 428 2 10888 2.99 2005-08-02T00:52:45Z 2020-02-15T06:59:54Z +11576 428 2 11536 0.99 2005-08-17T00:40:03Z 2020-02-15T06:59:54Z +11577 429 2 150 5.99 2005-05-26T00:28:39Z 2020-02-15T06:59:54Z +11578 429 2 290 2.99 2005-05-26T20:08:33Z 2020-02-15T06:59:54Z +11579 429 2 601 7.99 2005-05-28T14:08:22Z 2020-02-15T06:59:54Z +11580 429 2 799 4.99 2005-05-29T17:24:48Z 2020-02-15T06:59:54Z +11581 429 2 844 4.99 2005-05-30T00:58:20Z 2020-02-15T06:59:54Z +11582 429 2 1781 5.99 2005-06-16T19:20:24Z 2020-02-15T06:59:54Z +11583 429 2 1798 2.99 2005-06-16T20:16:15Z 2020-02-15T06:59:54Z +11584 429 2 1916 7.99 2005-06-17T05:29:59Z 2020-02-15T06:59:54Z +11585 429 1 3409 2.99 2005-06-21T16:17:38Z 2020-02-15T06:59:54Z +11586 429 2 5868 4.99 2005-07-10T18:39:16Z 2020-02-15T06:59:54Z +11587 429 2 6196 7.99 2005-07-11T12:05:46Z 2020-02-15T06:59:54Z +11588 429 2 6886 6.99 2005-07-12T20:58:04Z 2020-02-15T06:59:54Z +11589 429 1 6977 6.99 2005-07-27T00:40:50Z 2020-02-15T06:59:54Z +11590 429 2 7352 4.99 2005-07-27T14:38:29Z 2020-02-15T06:59:54Z +11591 429 2 8136 1.99 2005-07-28T20:05:48Z 2020-02-15T06:59:54Z +11592 429 2 8143 2.99 2005-07-28T20:23:11Z 2020-02-15T06:59:54Z +11593 429 2 8175 7.99 2005-07-28T21:38:16Z 2020-02-15T06:59:54Z +11594 429 1 9849 0.99 2005-07-31T12:44:34Z 2020-02-15T06:59:54Z +11595 429 1 12259 2.99 2005-08-18T04:14:35Z 2020-02-15T06:59:54Z +11596 429 1 12953 4.99 2005-08-19T06:04:07Z 2020-02-15T06:59:54Z +11597 429 2 14495 4.99 2005-08-21T14:04:39Z 2020-02-15T06:59:54Z +11598 430 2 30 2.99 2005-05-25T04:01:32Z 2020-02-15T06:59:54Z +11599 430 1 364 4.99 2005-05-27T07:20:12Z 2020-02-15T06:59:54Z +11600 430 2 1207 0.99 2005-06-15T02:27:08Z 2020-02-15T06:59:54Z +11601 430 1 1274 2.99 2005-06-15T07:52:52Z 2020-02-15T06:59:54Z +11602 430 1 1538 2.99 2005-06-16T01:05:50Z 2020-02-15T06:59:54Z +11603 430 1 1759 6.99 2005-06-16T17:46:37Z 2020-02-15T06:59:54Z +11604 430 2 2892 0.99 2005-06-20T02:06:39Z 2020-02-15T06:59:54Z +11605 430 2 3153 0.99 2005-06-20T20:44:15Z 2020-02-15T06:59:54Z +11606 430 1 5002 4.99 2005-07-09T01:17:08Z 2020-02-15T06:59:54Z +11607 430 1 5217 5.99 2005-07-09T11:56:50Z 2020-02-15T06:59:54Z +11608 430 2 5879 6.99 2005-07-10T19:12:47Z 2020-02-15T06:59:54Z +11609 430 1 5958 6.99 2005-07-10T23:31:51Z 2020-02-15T06:59:54Z +11610 430 2 6043 0.99 2005-07-11T03:18:10Z 2020-02-15T06:59:54Z +11611 430 1 8560 4.99 2005-07-29T11:27:27Z 2020-02-15T06:59:54Z +11612 430 2 9450 2.99 2005-07-30T22:04:04Z 2020-02-15T06:59:54Z +11613 430 1 12723 0.99 2005-08-18T21:34:16Z 2020-02-15T06:59:54Z +11614 430 1 12965 4.99 2005-08-19T06:33:00Z 2020-02-15T06:59:54Z +11615 430 1 13007 0.99 2005-08-19T07:47:43Z 2020-02-15T06:59:54Z +11616 430 2 13452 0.99 2005-08-20T00:20:07Z 2020-02-15T06:59:54Z +11617 430 2 13454 2.99 2005-08-20T00:30:52Z 2020-02-15T06:59:54Z +11618 430 1 14058 5.99 2005-08-20T22:24:35Z 2020-02-15T06:59:54Z +11619 430 1 15031 4.99 2005-08-22T09:11:48Z 2020-02-15T06:59:54Z +11620 431 2 1126 2.99 2005-05-31T17:27:45Z 2020-02-15T06:59:54Z +11621 431 2 1561 2.99 2005-06-16T02:41:30Z 2020-02-15T06:59:54Z +11622 431 1 2096 4.99 2005-06-17T18:33:04Z 2020-02-15T06:59:54Z +11623 431 1 2269 3.99 2005-06-18T06:20:54Z 2020-02-15T06:59:54Z +11624 431 2 2281 4.99 2005-06-18T06:47:29Z 2020-02-15T06:59:54Z +11625 431 2 2761 2.99 2005-06-19T17:22:17Z 2020-02-15T06:59:54Z +11626 431 2 3304 6.99 2005-06-21T07:43:40Z 2020-02-15T06:59:54Z +11627 431 2 3369 8.99 2005-06-21T13:20:31Z 2020-02-15T06:59:54Z +11628 431 1 4144 3.99 2005-07-07T08:25:44Z 2020-02-15T06:59:54Z +11629 431 1 4801 2.99 2005-07-08T16:51:36Z 2020-02-15T06:59:54Z +11630 431 1 4863 0.99 2005-07-08T19:03:15Z 2020-02-15T06:59:54Z +11631 431 2 7978 4.99 2005-07-28T14:16:14Z 2020-02-15T06:59:54Z +11632 431 2 8810 4.99 2005-07-29T21:45:19Z 2020-02-15T06:59:54Z +11633 431 2 10508 0.99 2005-08-01T11:23:27Z 2020-02-15T06:59:54Z +11634 431 1 10527 4.99 2005-08-01T11:55:54Z 2020-02-15T06:59:54Z +11635 431 2 10959 6.99 2005-08-02T03:39:39Z 2020-02-15T06:59:54Z +11636 431 2 11538 2.99 2005-08-17T00:44:04Z 2020-02-15T06:59:54Z +11637 431 1 12273 6.99 2005-08-18T04:40:50Z 2020-02-15T06:59:54Z +11638 431 2 13153 1.99 2005-08-19T13:09:47Z 2020-02-15T06:59:54Z +11639 431 1 13784 4.99 2005-08-20T12:11:28Z 2020-02-15T06:59:54Z +11640 431 1 15809 2.99 2005-08-23T14:42:07Z 2020-02-15T06:59:54Z +11641 431 1 15960 2.99 2005-08-23T19:35:42Z 2020-02-15T06:59:54Z +11642 431 2 13587 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11643 432 2 326 7.99 2005-05-27T01:10:11Z 2020-02-15T06:59:54Z +11644 432 1 550 5.99 2005-05-28T07:39:16Z 2020-02-15T06:59:54Z +11645 432 1 897 8.99 2005-05-30T09:10:01Z 2020-02-15T06:59:54Z +11646 432 2 1180 5.99 2005-06-15T00:39:01Z 2020-02-15T06:59:54Z +11647 432 2 1597 2.99 2005-06-16T05:47:03Z 2020-02-15T06:59:54Z +11648 432 2 3194 4.99 2005-06-20T23:59:57Z 2020-02-15T06:59:54Z +11649 432 1 4965 5.99 2005-07-08T23:46:57Z 2020-02-15T06:59:54Z +11650 432 1 4973 4.99 2005-07-08T23:58:18Z 2020-02-15T06:59:54Z +11651 432 1 5204 2.99 2005-07-09T10:54:14Z 2020-02-15T06:59:54Z +11652 432 1 5322 6.99 2005-07-09T16:28:13Z 2020-02-15T06:59:54Z +11653 432 1 5944 4.99 2005-07-10T22:51:44Z 2020-02-15T06:59:54Z +11654 432 1 5990 4.99 2005-07-11T01:03:14Z 2020-02-15T06:59:54Z +11655 432 2 7326 4.99 2005-07-27T13:50:40Z 2020-02-15T06:59:54Z +11656 432 2 7681 0.99 2005-07-28T03:07:09Z 2020-02-15T06:59:54Z +11657 432 2 8079 4.99 2005-07-28T17:58:36Z 2020-02-15T06:59:54Z +11658 432 2 8094 6.99 2005-07-28T18:30:28Z 2020-02-15T06:59:54Z +11659 432 2 9916 4.99 2005-07-31T14:54:52Z 2020-02-15T06:59:54Z +11660 432 2 9984 2.99 2005-07-31T17:12:23Z 2020-02-15T06:59:54Z +11661 432 2 11870 0.99 2005-08-17T14:11:28Z 2020-02-15T06:59:54Z +11662 432 1 12767 6.99 2005-08-18T23:25:49Z 2020-02-15T06:59:54Z +11663 432 1 14027 2.99 2005-08-20T21:21:34Z 2020-02-15T06:59:54Z +11664 432 1 15523 4.99 2005-08-23T03:32:36Z 2020-02-15T06:59:54Z +11665 432 1 15713 6.99 2005-08-23T10:56:15Z 2020-02-15T06:59:54Z +11666 433 2 146 8.99 2005-05-26T00:07:11Z 2020-02-15T06:59:54Z +11667 433 1 691 10.99 2005-05-29T01:01:26Z 2020-02-15T06:59:54Z +11668 433 2 4087 6.99 2005-07-07T05:30:56Z 2020-02-15T06:59:54Z +11669 433 2 4158 0.99 2005-07-07T09:05:42Z 2020-02-15T06:59:54Z +11670 433 2 4988 7.99 2005-07-09T00:46:14Z 2020-02-15T06:59:54Z +11671 433 2 5457 0.99 2005-07-09T22:33:14Z 2020-02-15T06:59:54Z +11672 433 1 5969 8.99 2005-07-11T00:03:22Z 2020-02-15T06:59:54Z +11673 433 1 6765 5.99 2005-07-12T15:30:47Z 2020-02-15T06:59:54Z +11674 433 1 6848 0.99 2005-07-12T19:24:07Z 2020-02-15T06:59:54Z +11675 433 1 6850 4.99 2005-07-12T19:30:42Z 2020-02-15T06:59:54Z +11676 433 1 7821 4.99 2005-07-28T08:31:23Z 2020-02-15T06:59:54Z +11677 433 2 7907 4.99 2005-07-28T11:32:00Z 2020-02-15T06:59:54Z +11678 433 1 8414 5.99 2005-07-29T06:48:35Z 2020-02-15T06:59:54Z +11679 433 1 8713 2.99 2005-07-29T17:31:19Z 2020-02-15T06:59:54Z +11680 433 2 9161 4.99 2005-07-30T11:19:18Z 2020-02-15T06:59:54Z +11681 433 1 9294 3.99 2005-07-30T16:14:37Z 2020-02-15T06:59:54Z +11682 433 1 10663 4.99 2005-08-01T16:51:08Z 2020-02-15T06:59:54Z +11683 433 1 11664 2.99 2005-08-17T05:35:52Z 2020-02-15T06:59:54Z +11684 433 2 12669 6.99 2005-08-18T19:17:47Z 2020-02-15T06:59:54Z +11685 433 2 13273 4.99 2005-08-19T17:49:13Z 2020-02-15T06:59:54Z +11686 433 1 13801 4.99 2005-08-20T12:40:53Z 2020-02-15T06:59:54Z +11687 433 2 14523 4.99 2005-08-21T15:03:45Z 2020-02-15T06:59:54Z +11688 433 1 14559 6.99 2005-08-21T16:11:35Z 2020-02-15T06:59:54Z +11689 433 2 15476 4.99 2005-08-23T01:45:07Z 2020-02-15T06:59:54Z +11690 433 1 15502 5.99 2005-08-23T02:40:04Z 2020-02-15T06:59:54Z +11691 434 2 508 5.99 2005-05-28T02:40:50Z 2020-02-15T06:59:54Z +11692 434 1 1225 0.99 2005-06-15T03:45:35Z 2020-02-15T06:59:54Z +11693 434 2 1584 5.99 2005-06-16T04:50:50Z 2020-02-15T06:59:54Z +11694 434 2 2415 7.99 2005-06-18T17:02:42Z 2020-02-15T06:59:54Z +11695 434 1 2430 3.99 2005-06-18T17:51:46Z 2020-02-15T06:59:54Z +11696 434 1 2494 3.99 2005-06-18T22:15:09Z 2020-02-15T06:59:54Z +11697 434 1 3014 2.99 2005-06-20T10:45:20Z 2020-02-15T06:59:54Z +11698 434 2 3037 2.99 2005-06-20T12:28:03Z 2020-02-15T06:59:54Z +11699 434 1 4414 2.99 2005-07-07T22:00:21Z 2020-02-15T06:59:54Z +11700 434 2 4654 6.99 2005-07-08T09:48:03Z 2020-02-15T06:59:54Z +11701 434 2 4960 10.99 2005-07-08T23:27:16Z 2020-02-15T06:59:54Z +11702 434 2 5464 2.99 2005-07-09T22:58:14Z 2020-02-15T06:59:54Z +11703 434 2 6972 0.99 2005-07-27T00:31:25Z 2020-02-15T06:59:54Z +11704 434 1 7260 6.99 2005-07-27T11:09:28Z 2020-02-15T06:59:54Z +11705 434 2 7479 2.99 2005-07-27T19:18:17Z 2020-02-15T06:59:54Z +11706 434 1 8205 0.99 2005-07-28T23:18:48Z 2020-02-15T06:59:54Z +11707 434 1 9350 4.99 2005-07-30T18:24:30Z 2020-02-15T06:59:54Z +11708 434 1 11242 3.99 2005-08-02T13:32:00Z 2020-02-15T06:59:54Z +11709 434 1 11867 2.99 2005-08-17T14:04:28Z 2020-02-15T06:59:54Z +11710 434 2 12030 2.99 2005-08-17T20:10:48Z 2020-02-15T06:59:54Z +11711 434 2 12146 2.99 2005-08-18T00:10:04Z 2020-02-15T06:59:54Z +11712 434 2 12624 7.99 2005-08-18T17:35:00Z 2020-02-15T06:59:54Z +11713 434 2 13359 9.99 2005-08-19T21:04:49Z 2020-02-15T06:59:54Z +11714 434 1 13383 7.99 2005-08-19T21:38:44Z 2020-02-15T06:59:54Z +11715 434 2 14553 4.99 2005-08-21T15:59:40Z 2020-02-15T06:59:54Z +11716 434 2 15016 3.99 2005-08-22T08:47:35Z 2020-02-15T06:59:54Z +11717 434 2 15385 4.99 2005-08-22T22:37:34Z 2020-02-15T06:59:54Z +11718 435 1 757 7.99 2005-05-29T10:29:47Z 2020-02-15T06:59:54Z +11719 435 1 806 4.99 2005-05-29T18:31:30Z 2020-02-15T06:59:54Z +11720 435 2 1443 0.99 2005-06-15T18:57:51Z 2020-02-15T06:59:54Z +11721 435 1 2984 0.99 2005-06-20T08:43:44Z 2020-02-15T06:59:54Z +11722 435 1 3690 0.99 2005-07-06T09:46:03Z 2020-02-15T06:59:54Z +11723 435 1 3918 8.99 2005-07-06T20:26:15Z 2020-02-15T06:59:54Z +11724 435 2 5220 4.99 2005-07-09T11:59:04Z 2020-02-15T06:59:54Z +11725 435 2 6051 4.99 2005-07-11T03:46:41Z 2020-02-15T06:59:54Z +11726 435 1 6935 2.99 2005-07-26T23:13:10Z 2020-02-15T06:59:54Z +11727 435 1 8386 5.99 2005-07-29T05:45:30Z 2020-02-15T06:59:54Z +11728 435 2 8891 4.99 2005-07-30T00:46:55Z 2020-02-15T06:59:54Z +11729 435 2 9269 0.99 2005-07-30T15:02:33Z 2020-02-15T06:59:54Z +11730 435 1 9655 3.99 2005-07-31T05:57:54Z 2020-02-15T06:59:54Z +11731 435 2 9829 4.99 2005-07-31T11:58:38Z 2020-02-15T06:59:54Z +11732 435 1 10998 6.99 2005-08-02T04:50:55Z 2020-02-15T06:59:54Z +11733 435 1 11041 2.99 2005-08-02T06:03:53Z 2020-02-15T06:59:54Z +11734 435 1 11786 3.99 2005-08-17T10:57:40Z 2020-02-15T06:59:54Z +11735 435 1 11796 0.99 2005-08-17T11:16:47Z 2020-02-15T06:59:54Z +11736 435 2 12046 0.99 2005-08-17T20:47:46Z 2020-02-15T06:59:54Z +11737 435 1 12741 4.99 2005-08-18T22:17:05Z 2020-02-15T06:59:54Z +11738 435 2 13208 0.99 2005-08-19T15:18:55Z 2020-02-15T06:59:54Z +11739 435 1 14696 4.99 2005-08-21T20:48:05Z 2020-02-15T06:59:54Z +11740 435 1 14765 1.99 2005-08-21T23:40:28Z 2020-02-15T06:59:54Z +11741 435 1 14850 0.99 2005-08-22T02:16:55Z 2020-02-15T06:59:54Z +11742 435 1 15136 2.99 2005-08-22T13:19:25Z 2020-02-15T06:59:54Z +11743 436 1 45 7.99 2005-05-25T05:59:39Z 2020-02-15T06:59:54Z +11744 436 1 256 3.99 2005-05-26T15:20:58Z 2020-02-15T06:59:54Z +11745 436 1 848 5.99 2005-05-30T01:19:53Z 2020-02-15T06:59:54Z +11746 436 1 2291 9.99 2005-06-18T07:36:46Z 2020-02-15T06:59:54Z +11747 436 2 3851 1.99 2005-07-06T16:54:12Z 2020-02-15T06:59:54Z +11748 436 2 3944 2.99 2005-07-06T21:34:11Z 2020-02-15T06:59:54Z +11749 436 2 4643 0.99 2005-07-08T09:13:56Z 2020-02-15T06:59:54Z +11750 436 2 4751 2.99 2005-07-08T14:07:52Z 2020-02-15T06:59:54Z +11751 436 1 4782 4.99 2005-07-08T16:08:51Z 2020-02-15T06:59:54Z +11752 436 1 5959 0.99 2005-07-10T23:35:36Z 2020-02-15T06:59:54Z +11753 436 1 7593 4.99 2005-07-27T23:28:47Z 2020-02-15T06:59:54Z +11754 436 2 8027 5.99 2005-07-28T16:09:57Z 2020-02-15T06:59:54Z +11755 436 2 8097 9.99 2005-07-28T18:32:49Z 2020-02-15T06:59:54Z +11756 436 1 9345 9.99 2005-07-30T18:13:51Z 2020-02-15T06:59:54Z +11757 436 1 9539 0.99 2005-07-31T01:36:19Z 2020-02-15T06:59:54Z +11758 436 1 9638 5.99 2005-07-31T05:30:27Z 2020-02-15T06:59:54Z +11759 436 2 10216 3.99 2005-08-01T01:06:27Z 2020-02-15T06:59:54Z +11760 436 2 11160 0.99 2005-08-02T10:05:30Z 2020-02-15T06:59:54Z +11761 436 1 11580 2.99 2005-08-17T01:59:07Z 2020-02-15T06:59:54Z +11762 436 2 11615 4.99 2005-08-17T03:54:35Z 2020-02-15T06:59:54Z +11763 436 2 11896 5.99 2005-08-17T15:19:54Z 2020-02-15T06:59:54Z +11764 436 2 12297 0.99 2005-08-18T05:19:57Z 2020-02-15T06:59:54Z +11765 436 2 12429 6.99 2005-08-18T10:26:46Z 2020-02-15T06:59:54Z +11766 436 2 13099 9.99 2005-08-19T10:55:19Z 2020-02-15T06:59:54Z +11767 436 2 13382 7.99 2005-08-19T21:38:41Z 2020-02-15T06:59:54Z +11768 436 1 13533 3.99 2005-08-20T03:30:00Z 2020-02-15T06:59:54Z +11769 436 1 13760 5.99 2005-08-20T11:26:33Z 2020-02-15T06:59:54Z +11770 436 1 13814 0.99 2005-08-20T13:07:23Z 2020-02-15T06:59:54Z +11771 436 2 13826 2.99 2005-08-20T13:46:38Z 2020-02-15T06:59:54Z +11772 436 2 15766 4.99 2005-08-23T13:10:16Z 2020-02-15T06:59:54Z +11773 437 1 192 2.99 2005-05-26T06:20:37Z 2020-02-15T06:59:54Z +11774 437 2 656 4.99 2005-05-28T20:18:24Z 2020-02-15T06:59:54Z +11775 437 1 666 5.99 2005-05-28T21:48:51Z 2020-02-15T06:59:54Z +11776 437 2 2239 5.99 2005-06-18T04:23:54Z 2020-02-15T06:59:54Z +11777 437 1 2792 2.99 2005-06-19T18:52:25Z 2020-02-15T06:59:54Z +11778 437 2 3265 2.99 2005-06-21T04:23:13Z 2020-02-15T06:59:54Z +11779 437 1 3747 4.99 2005-07-06T12:11:14Z 2020-02-15T06:59:54Z +11780 437 2 4765 4.99 2005-07-08T15:08:45Z 2020-02-15T06:59:54Z +11781 437 2 5085 4.99 2005-07-09T05:36:49Z 2020-02-15T06:59:54Z +11782 437 1 5167 1.99 2005-07-09T09:18:43Z 2020-02-15T06:59:54Z +11783 437 2 5744 2.99 2005-07-10T12:08:33Z 2020-02-15T06:59:54Z +11784 437 2 5864 6.99 2005-07-10T18:29:57Z 2020-02-15T06:59:54Z +11785 437 2 8215 2.99 2005-07-28T23:43:56Z 2020-02-15T06:59:54Z +11786 437 2 9172 2.99 2005-07-30T11:36:38Z 2020-02-15T06:59:54Z +11787 437 2 9333 2.99 2005-07-30T17:53:45Z 2020-02-15T06:59:54Z +11788 437 2 10009 8.99 2005-07-31T18:00:28Z 2020-02-15T06:59:54Z +11789 437 2 10249 0.99 2005-08-01T02:35:39Z 2020-02-15T06:59:54Z +11790 437 2 11417 3.99 2005-08-02T19:44:46Z 2020-02-15T06:59:54Z +11791 437 1 12205 8.99 2005-08-18T02:21:08Z 2020-02-15T06:59:54Z +11792 437 2 13838 7.99 2005-08-20T14:22:46Z 2020-02-15T06:59:54Z +11793 437 1 13839 2.99 2005-08-20T14:23:16Z 2020-02-15T06:59:54Z +11794 437 1 13905 1.99 2005-08-20T16:12:48Z 2020-02-15T06:59:54Z +11795 437 1 14993 1.99 2005-08-22T07:52:18Z 2020-02-15T06:59:54Z +11796 438 2 23 4.99 2005-05-25T02:40:21Z 2020-02-15T06:59:54Z +11797 438 2 1036 0.99 2005-05-31T05:21:10Z 2020-02-15T06:59:54Z +11798 438 1 1138 6.99 2005-05-31T19:30:27Z 2020-02-15T06:59:54Z +11799 438 1 1431 4.99 2005-06-15T18:26:29Z 2020-02-15T06:59:54Z +11800 438 2 1779 0.99 2005-06-16T18:55:11Z 2020-02-15T06:59:54Z +11801 438 2 2206 0.99 2005-06-18T02:14:45Z 2020-02-15T06:59:54Z +11802 438 1 2591 4.99 2005-06-19T05:32:22Z 2020-02-15T06:59:54Z +11803 438 1 3315 4.99 2005-06-21T08:17:04Z 2020-02-15T06:59:54Z +11804 438 2 3368 0.99 2005-06-21T13:18:38Z 2020-02-15T06:59:54Z +11805 438 1 4355 4.99 2005-07-07T19:21:19Z 2020-02-15T06:59:54Z +11806 438 2 4446 2.99 2005-07-07T23:12:16Z 2020-02-15T06:59:54Z +11807 438 2 5316 4.99 2005-07-09T16:09:42Z 2020-02-15T06:59:54Z +11808 438 2 5426 4.99 2005-07-09T21:04:47Z 2020-02-15T06:59:54Z +11809 438 1 5870 2.99 2005-07-10T18:40:25Z 2020-02-15T06:59:54Z +11810 438 2 6138 4.99 2005-07-11T08:36:04Z 2020-02-15T06:59:54Z +11811 438 1 6563 3.99 2005-07-12T05:34:09Z 2020-02-15T06:59:54Z +11812 438 2 6615 4.99 2005-07-12T08:36:22Z 2020-02-15T06:59:54Z +11813 438 2 7357 1.99 2005-07-27T14:48:31Z 2020-02-15T06:59:54Z +11814 438 2 7374 8.99 2005-07-27T15:20:57Z 2020-02-15T06:59:54Z +11815 438 1 7598 0.99 2005-07-27T23:36:01Z 2020-02-15T06:59:54Z +11816 438 2 8547 2.99 2005-07-29T11:10:15Z 2020-02-15T06:59:54Z +11817 438 1 9082 3.99 2005-07-30T08:11:22Z 2020-02-15T06:59:54Z +11818 438 2 9782 0.99 2005-07-31T10:14:26Z 2020-02-15T06:59:54Z +11819 438 1 10512 6.99 2005-08-01T11:36:19Z 2020-02-15T06:59:54Z +11820 438 1 10607 4.99 2005-08-01T14:44:43Z 2020-02-15T06:59:54Z +11821 438 2 11644 4.99 2005-08-17T04:49:46Z 2020-02-15T06:59:54Z +11822 438 2 11933 4.99 2005-08-17T16:38:20Z 2020-02-15T06:59:54Z +11823 438 2 12654 0.99 2005-08-18T18:56:40Z 2020-02-15T06:59:54Z +11824 438 2 13319 7.99 2005-08-19T19:35:13Z 2020-02-15T06:59:54Z +11825 438 1 13414 4.99 2005-08-19T22:47:34Z 2020-02-15T06:59:54Z +11826 438 2 14582 5.99 2005-08-21T17:08:33Z 2020-02-15T06:59:54Z +11827 438 2 15893 5.99 2005-08-23T17:02:00Z 2020-02-15T06:59:54Z +11828 438 2 12524 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11829 439 1 126 2.99 2005-05-25T21:07:59Z 2020-02-15T06:59:54Z +11830 439 2 367 0.99 2005-05-27T07:37:02Z 2020-02-15T06:59:54Z +11831 439 1 786 9.99 2005-05-29T15:17:28Z 2020-02-15T06:59:54Z +11832 439 1 1264 4.99 2005-06-15T06:59:39Z 2020-02-15T06:59:54Z +11833 439 2 1557 0.99 2005-06-16T02:28:35Z 2020-02-15T06:59:54Z +11834 439 2 2097 4.99 2005-06-17T18:40:04Z 2020-02-15T06:59:54Z +11835 439 1 2621 2.99 2005-06-19T08:07:31Z 2020-02-15T06:59:54Z +11836 439 1 2992 2.99 2005-06-20T09:11:51Z 2020-02-15T06:59:54Z +11837 439 1 3294 6.99 2005-06-21T07:03:23Z 2020-02-15T06:59:54Z +11838 439 2 3774 5.99 2005-07-06T13:25:07Z 2020-02-15T06:59:54Z +11839 439 1 4528 2.99 2005-07-08T03:24:54Z 2020-02-15T06:59:54Z +11840 439 1 4813 4.99 2005-07-08T17:09:56Z 2020-02-15T06:59:54Z +11841 439 2 5801 5.99 2005-07-10T14:59:05Z 2020-02-15T06:59:54Z +11842 439 1 5893 2.99 2005-07-10T20:05:30Z 2020-02-15T06:59:54Z +11843 439 1 6577 2.99 2005-07-12T06:15:05Z 2020-02-15T06:59:54Z +11844 439 2 6672 2.99 2005-07-12T11:49:16Z 2020-02-15T06:59:54Z +11845 439 1 8343 2.99 2005-07-29T04:45:16Z 2020-02-15T06:59:54Z +11846 439 1 8624 2.99 2005-07-29T13:55:36Z 2020-02-15T06:59:54Z +11847 439 2 8703 2.99 2005-07-29T17:12:44Z 2020-02-15T06:59:54Z +11848 439 1 9275 0.99 2005-07-30T15:09:15Z 2020-02-15T06:59:54Z +11849 439 1 9322 6.99 2005-07-30T17:21:39Z 2020-02-15T06:59:54Z +11850 439 2 10744 1.99 2005-08-01T19:56:49Z 2020-02-15T06:59:54Z +11851 439 1 10905 2.99 2005-08-02T01:45:59Z 2020-02-15T06:59:54Z +11852 439 2 11042 6.99 2005-08-02T06:04:33Z 2020-02-15T06:59:54Z +11853 439 2 11544 5.99 2005-08-17T00:55:07Z 2020-02-15T06:59:54Z +11854 439 1 11989 2.99 2005-08-17T18:23:58Z 2020-02-15T06:59:54Z +11855 439 1 12621 2.99 2005-08-18T17:31:36Z 2020-02-15T06:59:54Z +11856 439 2 12755 5.99 2005-08-18T22:38:47Z 2020-02-15T06:59:54Z +11857 439 2 12826 3.99 2005-08-19T01:25:11Z 2020-02-15T06:59:54Z +11858 439 2 13358 4.99 2005-08-19T21:04:20Z 2020-02-15T06:59:54Z +11859 439 2 14730 5.99 2005-08-21T22:21:11Z 2020-02-15T06:59:54Z +11860 439 2 15044 9.99 2005-08-22T09:51:54Z 2020-02-15T06:59:54Z +11861 439 2 15162 4.99 2005-08-22T14:41:05Z 2020-02-15T06:59:54Z +11862 439 2 15653 4.99 2005-08-23T08:34:42Z 2020-02-15T06:59:54Z +11863 439 1 15818 1.99 2005-08-23T14:59:58Z 2020-02-15T06:59:54Z +11864 439 1 16018 0.99 2005-08-23T21:27:35Z 2020-02-15T06:59:54Z +11865 440 2 957 4.99 2005-05-30T17:53:29Z 2020-02-15T06:59:54Z +11866 440 1 4301 2.99 2005-07-07T16:37:23Z 2020-02-15T06:59:54Z +11867 440 1 4946 7.99 2005-07-08T22:46:23Z 2020-02-15T06:59:54Z +11868 440 2 5423 2.99 2005-07-09T20:56:48Z 2020-02-15T06:59:54Z +11869 440 2 5594 0.99 2005-07-10T04:33:36Z 2020-02-15T06:59:54Z +11870 440 2 5731 2.99 2005-07-10T11:31:52Z 2020-02-15T06:59:54Z +11871 440 2 5782 0.99 2005-07-10T13:52:56Z 2020-02-15T06:59:54Z +11872 440 2 7585 4.99 2005-07-27T23:18:22Z 2020-02-15T06:59:54Z +11873 440 1 7614 0.99 2005-07-28T00:14:38Z 2020-02-15T06:59:54Z +11874 440 1 7806 9.99 2005-07-28T07:58:17Z 2020-02-15T06:59:54Z +11875 440 1 9001 4.99 2005-07-30T04:59:41Z 2020-02-15T06:59:54Z +11876 440 1 9195 2.99 2005-07-30T12:29:43Z 2020-02-15T06:59:54Z +11877 440 1 9547 4.99 2005-07-31T01:52:34Z 2020-02-15T06:59:54Z +11878 440 2 12403 6.99 2005-08-18T09:31:05Z 2020-02-15T06:59:54Z +11879 440 1 12850 0.99 2005-08-19T02:08:06Z 2020-02-15T06:59:54Z +11880 440 2 13384 4.99 2005-08-19T21:38:51Z 2020-02-15T06:59:54Z +11881 440 2 13779 2.99 2005-08-20T12:03:54Z 2020-02-15T06:59:54Z +11882 440 1 14555 0.99 2005-08-21T16:03:02Z 2020-02-15T06:59:54Z +11883 440 2 14863 7.99 2005-08-22T02:57:04Z 2020-02-15T06:59:54Z +11884 440 2 15264 0.99 2005-08-22T18:27:38Z 2020-02-15T06:59:54Z +11885 440 1 15925 4.99 2005-08-23T18:15:06Z 2020-02-15T06:59:54Z +11886 440 1 13106 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11887 441 1 823 4.99 2005-05-29T21:39:37Z 2020-02-15T06:59:54Z +11888 441 1 1602 4.99 2005-06-16T06:12:40Z 2020-02-15T06:59:54Z +11889 441 2 2328 4.99 2005-06-18T10:17:21Z 2020-02-15T06:59:54Z +11890 441 2 3629 0.99 2005-07-06T06:23:22Z 2020-02-15T06:59:54Z +11891 441 2 3695 2.99 2005-07-06T10:02:08Z 2020-02-15T06:59:54Z +11892 441 1 4084 8.99 2005-07-07T05:16:00Z 2020-02-15T06:59:54Z +11893 441 2 4208 0.99 2005-07-07T11:34:22Z 2020-02-15T06:59:54Z +11894 441 2 5129 2.99 2005-07-09T07:28:33Z 2020-02-15T06:59:54Z +11895 441 1 5811 0.99 2005-07-10T15:27:04Z 2020-02-15T06:59:54Z +11896 441 2 6636 2.99 2005-07-12T09:49:46Z 2020-02-15T06:59:54Z +11897 441 1 6642 4.99 2005-07-12T10:37:52Z 2020-02-15T06:59:54Z +11898 441 1 6941 5.99 2005-07-26T23:18:49Z 2020-02-15T06:59:54Z +11899 441 2 8237 2.99 2005-07-29T00:29:56Z 2020-02-15T06:59:54Z +11900 441 1 8281 0.99 2005-07-29T01:46:00Z 2020-02-15T06:59:54Z +11901 441 1 8427 4.99 2005-07-29T07:08:36Z 2020-02-15T06:59:54Z +11902 441 1 8575 4.99 2005-07-29T11:52:47Z 2020-02-15T06:59:54Z +11903 441 2 8617 4.99 2005-07-29T13:46:14Z 2020-02-15T06:59:54Z +11904 441 2 9644 10.99 2005-07-31T05:40:35Z 2020-02-15T06:59:54Z +11905 441 2 9854 2.99 2005-07-31T12:59:34Z 2020-02-15T06:59:54Z +11906 441 2 10139 1.99 2005-07-31T22:02:20Z 2020-02-15T06:59:54Z +11907 441 1 10846 1.99 2005-08-01T23:47:54Z 2020-02-15T06:59:54Z +11908 441 2 11247 1.99 2005-08-02T13:34:08Z 2020-02-15T06:59:54Z +11909 441 2 13483 2.99 2005-08-20T01:16:38Z 2020-02-15T06:59:54Z +11910 441 2 13739 4.99 2005-08-20T10:45:10Z 2020-02-15T06:59:54Z +11911 441 1 13932 4.99 2005-08-20T17:17:00Z 2020-02-15T06:59:54Z +11912 441 2 14796 4.99 2005-08-22T00:40:49Z 2020-02-15T06:59:54Z +11913 441 2 15070 3.99 2005-08-22T10:55:45Z 2020-02-15T06:59:54Z +11914 441 1 14878 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11915 442 2 466 0.99 2005-05-27T20:57:07Z 2020-02-15T06:59:54Z +11916 442 2 558 6.99 2005-05-28T08:38:43Z 2020-02-15T06:59:54Z +11917 442 1 632 5.99 2005-05-28T17:37:50Z 2020-02-15T06:59:54Z +11918 442 1 1251 5.99 2005-06-15T05:58:55Z 2020-02-15T06:59:54Z +11919 442 2 1358 0.99 2005-06-15T13:28:48Z 2020-02-15T06:59:54Z +11920 442 2 1576 8.99 2005-06-16T03:54:39Z 2020-02-15T06:59:54Z +11921 442 1 1774 2.99 2005-06-16T18:27:52Z 2020-02-15T06:59:54Z +11922 442 2 3545 4.99 2005-07-06T02:16:17Z 2020-02-15T06:59:54Z +11923 442 1 3661 2.99 2005-07-06T08:10:02Z 2020-02-15T06:59:54Z +11924 442 1 4052 5.99 2005-07-07T03:38:22Z 2020-02-15T06:59:54Z +11925 442 1 4058 2.99 2005-07-07T04:02:50Z 2020-02-15T06:59:54Z +11926 442 2 4365 2.99 2005-07-07T19:47:46Z 2020-02-15T06:59:54Z +11927 442 2 4577 3.99 2005-07-08T05:59:00Z 2020-02-15T06:59:54Z +11928 442 2 6590 4.99 2005-07-12T07:08:21Z 2020-02-15T06:59:54Z +11929 442 2 6632 2.99 2005-07-12T09:33:10Z 2020-02-15T06:59:54Z +11930 442 2 7427 2.99 2005-07-27T17:20:16Z 2020-02-15T06:59:54Z +11931 442 1 7460 0.99 2005-07-27T18:41:35Z 2020-02-15T06:59:54Z +11932 442 1 7671 2.99 2005-07-28T02:48:31Z 2020-02-15T06:59:54Z +11933 442 1 8044 2.99 2005-07-28T16:49:12Z 2020-02-15T06:59:54Z +11934 442 1 8758 4.99 2005-07-29T19:20:49Z 2020-02-15T06:59:54Z +11935 442 1 9180 4.99 2005-07-30T12:03:15Z 2020-02-15T06:59:54Z +11936 442 2 9873 5.99 2005-07-31T13:32:18Z 2020-02-15T06:59:54Z +11937 442 1 10034 2.99 2005-07-31T18:45:30Z 2020-02-15T06:59:54Z +11938 442 2 10365 6.99 2005-08-01T06:08:44Z 2020-02-15T06:59:54Z +11939 442 2 10452 0.99 2005-08-01T09:11:36Z 2020-02-15T06:59:54Z +11940 442 1 12948 0.99 2005-08-19T05:55:14Z 2020-02-15T06:59:54Z +11941 442 2 13004 0.99 2005-08-19T07:40:08Z 2020-02-15T06:59:54Z +11942 442 1 13155 7.99 2005-08-19T13:10:23Z 2020-02-15T06:59:54Z +11943 442 2 14199 0.99 2005-08-21T03:48:43Z 2020-02-15T06:59:54Z +11944 442 1 14418 1.99 2005-08-21T11:14:26Z 2020-02-15T06:59:54Z +11945 442 1 14466 0.99 2005-08-21T13:03:13Z 2020-02-15T06:59:54Z +11946 442 2 15207 2.99 2005-08-22T16:35:25Z 2020-02-15T06:59:54Z +11947 443 2 1068 4.99 2005-05-31T09:32:15Z 2020-02-15T06:59:54Z +11948 443 1 2871 2.99 2005-06-20T00:27:49Z 2020-02-15T06:59:54Z +11949 443 2 3510 5.99 2005-07-06T00:27:41Z 2020-02-15T06:59:54Z +11950 443 2 6625 5.99 2005-07-12T09:06:40Z 2020-02-15T06:59:54Z +11951 443 1 6913 4.99 2005-07-12T22:18:12Z 2020-02-15T06:59:54Z +11952 443 2 6983 2.99 2005-07-27T00:55:03Z 2020-02-15T06:59:54Z +11953 443 1 7317 2.99 2005-07-27T13:19:41Z 2020-02-15T06:59:54Z +11954 443 1 7667 8.99 2005-07-28T02:37:22Z 2020-02-15T06:59:54Z +11955 443 1 7987 9.99 2005-07-28T14:36:52Z 2020-02-15T06:59:54Z +11956 443 2 9740 1.99 2005-07-31T09:08:03Z 2020-02-15T06:59:54Z +11957 443 1 10014 4.99 2005-07-31T18:10:56Z 2020-02-15T06:59:54Z +11958 443 2 10081 5.99 2005-07-31T20:07:44Z 2020-02-15T06:59:54Z +11959 443 2 10360 0.99 2005-08-01T05:52:53Z 2020-02-15T06:59:54Z +11960 443 1 11449 4.99 2005-08-02T20:44:43Z 2020-02-15T06:59:54Z +11961 443 1 12415 4.99 2005-08-18T09:54:01Z 2020-02-15T06:59:54Z +11962 443 2 12857 4.99 2005-08-19T02:20:13Z 2020-02-15T06:59:54Z +11963 443 1 13489 2.99 2005-08-20T01:29:06Z 2020-02-15T06:59:54Z +11964 443 1 14561 2.99 2005-08-21T16:20:43Z 2020-02-15T06:59:54Z +11965 443 2 14611 6.99 2005-08-21T18:01:41Z 2020-02-15T06:59:54Z +11966 443 1 15182 0.99 2005-08-22T15:47:05Z 2020-02-15T06:59:54Z +11967 443 2 15393 4.99 2005-08-22T23:04:09Z 2020-02-15T06:59:54Z +11968 443 1 15519 0.99 2005-08-23T03:23:32Z 2020-02-15T06:59:54Z +11969 444 1 201 8.99 2005-05-26T07:13:45Z 2020-02-15T06:59:54Z +11970 444 1 557 0.99 2005-05-28T08:36:22Z 2020-02-15T06:59:54Z +11971 444 1 1239 0.99 2005-06-15T04:53:01Z 2020-02-15T06:59:54Z +11972 444 2 1397 3.99 2005-06-15T16:25:26Z 2020-02-15T06:59:54Z +11973 444 2 1441 1.99 2005-06-15T18:54:21Z 2020-02-15T06:59:54Z +11974 444 1 2551 4.99 2005-06-19T02:51:04Z 2020-02-15T06:59:54Z +11975 444 2 3301 7.99 2005-06-21T07:32:25Z 2020-02-15T06:59:54Z +11976 444 2 3415 5.99 2005-06-21T16:59:49Z 2020-02-15T06:59:54Z +11977 444 2 3498 4.99 2005-07-06T00:02:08Z 2020-02-15T06:59:54Z +11978 444 1 3539 0.99 2005-07-06T01:39:08Z 2020-02-15T06:59:54Z +11979 444 2 4648 6.99 2005-07-08T09:31:27Z 2020-02-15T06:59:54Z +11980 444 1 5753 2.99 2005-07-10T12:29:43Z 2020-02-15T06:59:54Z +11981 444 2 5825 2.99 2005-07-10T16:20:30Z 2020-02-15T06:59:54Z +11982 444 2 6285 2.99 2005-07-11T16:52:07Z 2020-02-15T06:59:54Z +11983 444 2 7679 3.99 2005-07-28T02:58:39Z 2020-02-15T06:59:54Z +11984 444 2 9634 1.99 2005-07-31T05:06:02Z 2020-02-15T06:59:54Z +11985 444 1 10529 4.99 2005-08-01T12:00:02Z 2020-02-15T06:59:54Z +11986 444 1 10693 4.99 2005-08-01T18:14:14Z 2020-02-15T06:59:54Z +11987 444 2 11353 0.99 2005-08-02T17:34:45Z 2020-02-15T06:59:54Z +11988 444 2 11419 6.99 2005-08-02T19:46:38Z 2020-02-15T06:59:54Z +11989 444 1 11728 4.99 2005-08-17T08:12:26Z 2020-02-15T06:59:54Z +11990 444 1 12161 6.99 2005-08-18T00:41:46Z 2020-02-15T06:59:54Z +11991 444 2 12712 2.99 2005-08-18T21:04:13Z 2020-02-15T06:59:54Z +11992 444 2 12946 2.99 2005-08-19T05:53:34Z 2020-02-15T06:59:54Z +11993 444 1 13488 0.99 2005-08-20T01:28:42Z 2020-02-15T06:59:54Z +11994 444 2 13559 2.99 2005-08-20T04:16:07Z 2020-02-15T06:59:54Z +11995 444 1 13924 0.99 2005-08-20T17:05:18Z 2020-02-15T06:59:54Z +11996 444 1 15249 4.99 2005-08-22T17:58:27Z 2020-02-15T06:59:54Z +11997 444 1 15557 0.99 2005-08-23T04:52:17Z 2020-02-15T06:59:54Z +11998 444 2 15815 4.99 2005-08-23T14:55:47Z 2020-02-15T06:59:54Z +11999 445 1 481 2.99 2005-05-27T22:49:27Z 2020-02-15T06:59:54Z +12000 445 1 960 2.99 2005-05-30T18:13:23Z 2020-02-15T06:59:54Z +12001 445 1 4041 0.99 2005-07-07T03:03:33Z 2020-02-15T06:59:54Z +12002 445 1 4193 0.99 2005-07-07T10:57:21Z 2020-02-15T06:59:54Z +12003 445 2 5225 2.99 2005-07-09T12:10:16Z 2020-02-15T06:59:54Z +12004 445 1 6346 0.99 2005-07-11T20:08:34Z 2020-02-15T06:59:54Z +12005 445 2 7351 2.99 2005-07-27T14:37:36Z 2020-02-15T06:59:54Z +12006 445 2 7971 4.99 2005-07-28T14:00:47Z 2020-02-15T06:59:54Z +12007 445 1 8851 8.99 2005-07-29T23:26:19Z 2020-02-15T06:59:54Z +12008 445 2 8911 0.99 2005-07-30T01:30:57Z 2020-02-15T06:59:54Z +12009 445 2 9625 4.99 2005-07-31T04:30:48Z 2020-02-15T06:59:54Z +12010 445 1 10007 0.99 2005-07-31T17:54:58Z 2020-02-15T06:59:54Z +12011 445 2 10334 1.99 2005-08-01T04:58:42Z 2020-02-15T06:59:54Z +12012 445 2 10341 0.99 2005-08-01T05:10:02Z 2020-02-15T06:59:54Z +12013 445 2 10936 9.99 2005-08-02T02:55:04Z 2020-02-15T06:59:54Z +12014 445 1 11383 7.99 2005-08-02T18:22:05Z 2020-02-15T06:59:54Z +12015 445 1 11868 4.99 2005-08-17T14:05:34Z 2020-02-15T06:59:54Z +12016 445 1 11877 3.99 2005-08-17T14:21:11Z 2020-02-15T06:59:54Z +12017 445 2 13586 0.99 2005-08-20T05:40:33Z 2020-02-15T06:59:54Z +12018 445 1 14612 6.99 2005-08-21T18:03:15Z 2020-02-15T06:59:54Z +12019 445 2 14673 2.99 2005-08-21T20:01:18Z 2020-02-15T06:59:54Z +12020 445 1 14866 6.99 2005-08-22T03:11:35Z 2020-02-15T06:59:54Z +12021 445 1 14955 4.99 2005-08-22T06:25:52Z 2020-02-15T06:59:54Z +12022 445 1 15123 3.99 2005-08-22T12:48:44Z 2020-02-15T06:59:54Z +12023 445 1 15791 6.99 2005-08-23T14:02:13Z 2020-02-15T06:59:54Z +12024 445 2 15906 2.99 2005-08-23T17:36:00Z 2020-02-15T06:59:54Z +12025 446 2 14 0.99 2005-05-25T00:31:15Z 2020-02-15T06:59:54Z +12026 446 1 236 0.99 2005-05-26T11:53:49Z 2020-02-15T06:59:54Z +12027 446 1 355 4.99 2005-05-27T06:15:33Z 2020-02-15T06:59:54Z +12028 446 1 2248 4.99 2005-06-18T04:59:48Z 2020-02-15T06:59:54Z +12029 446 2 2335 3.99 2005-06-18T10:59:36Z 2020-02-15T06:59:54Z +12030 446 2 2520 6.99 2005-06-19T00:29:00Z 2020-02-15T06:59:54Z +12031 446 2 2710 0.99 2005-06-19T14:03:56Z 2020-02-15T06:59:54Z +12032 446 1 3060 2.99 2005-06-20T13:47:20Z 2020-02-15T06:59:54Z +12033 446 2 3168 0.99 2005-06-20T21:46:01Z 2020-02-15T06:59:54Z +12034 446 2 4358 4.99 2005-07-07T19:27:04Z 2020-02-15T06:59:54Z +12035 446 2 5393 4.99 2005-07-09T19:35:12Z 2020-02-15T06:59:54Z +12036 446 2 5409 2.99 2005-07-09T20:17:19Z 2020-02-15T06:59:54Z +12037 446 2 6454 0.99 2005-07-12T01:00:12Z 2020-02-15T06:59:54Z +12038 446 1 6510 4.99 2005-07-12T03:35:39Z 2020-02-15T06:59:54Z +12039 446 1 6535 0.99 2005-07-12T04:43:43Z 2020-02-15T06:59:54Z +12040 446 1 6734 6.99 2005-07-12T14:04:24Z 2020-02-15T06:59:54Z +12041 446 1 7005 5.99 2005-07-27T01:38:36Z 2020-02-15T06:59:54Z +12042 446 2 7089 0.99 2005-07-27T04:43:42Z 2020-02-15T06:59:54Z +12043 446 1 7576 4.99 2005-07-27T22:54:35Z 2020-02-15T06:59:54Z +12044 446 2 8284 6.99 2005-07-29T01:56:40Z 2020-02-15T06:59:54Z +12045 446 1 8309 4.99 2005-07-29T03:22:20Z 2020-02-15T06:59:54Z +12046 446 2 8670 4.99 2005-07-29T15:49:03Z 2020-02-15T06:59:54Z +12047 446 2 8691 0.99 2005-07-29T16:41:23Z 2020-02-15T06:59:54Z +12048 446 2 8922 9.99 2005-07-30T02:08:25Z 2020-02-15T06:59:54Z +12049 446 1 8923 3.99 2005-07-30T02:08:49Z 2020-02-15T06:59:54Z +12050 446 1 9116 0.99 2005-07-30T09:19:41Z 2020-02-15T06:59:54Z +12051 446 1 11051 3.99 2005-08-02T06:23:39Z 2020-02-15T06:59:54Z +12052 446 2 12253 0.99 2005-08-18T04:00:50Z 2020-02-15T06:59:54Z +12053 446 2 12480 8.99 2005-08-18T12:26:43Z 2020-02-15T06:59:54Z +12054 446 1 15808 1.99 2005-08-23T14:38:37Z 2020-02-15T06:59:54Z +12055 446 2 15951 0.99 2005-08-23T19:10:32Z 2020-02-15T06:59:54Z +12056 447 1 461 2.99 2005-05-27T20:08:55Z 2020-02-15T06:59:54Z +12057 447 2 732 0.99 2005-05-29T07:32:51Z 2020-02-15T06:59:54Z +12058 447 2 1230 0.99 2005-06-15T04:04:09Z 2020-02-15T06:59:54Z +12059 447 2 1890 2.99 2005-06-17T04:06:13Z 2020-02-15T06:59:54Z +12060 447 1 2025 4.99 2005-06-17T13:04:00Z 2020-02-15T06:59:54Z +12061 447 2 2285 4.99 2005-06-18T07:00:54Z 2020-02-15T06:59:54Z +12062 447 2 4403 4.99 2005-07-07T21:29:40Z 2020-02-15T06:59:54Z +12063 447 1 4858 6.99 2005-07-08T18:53:24Z 2020-02-15T06:59:54Z +12064 447 1 5331 4.99 2005-07-09T16:54:06Z 2020-02-15T06:59:54Z +12065 447 1 5734 0.99 2005-07-10T11:37:28Z 2020-02-15T06:59:54Z +12066 447 2 5987 2.99 2005-07-11T00:55:31Z 2020-02-15T06:59:54Z +12067 447 1 6651 0.99 2005-07-12T10:57:28Z 2020-02-15T06:59:54Z +12068 447 1 6690 1.99 2005-07-12T12:23:02Z 2020-02-15T06:59:54Z +12069 447 1 8537 8.99 2005-07-29T10:44:54Z 2020-02-15T06:59:54Z +12070 447 2 8945 4.99 2005-07-30T03:11:48Z 2020-02-15T06:59:54Z +12071 447 2 9076 5.99 2005-07-30T07:58:12Z 2020-02-15T06:59:54Z +12072 447 1 9288 6.99 2005-07-30T15:56:39Z 2020-02-15T06:59:54Z +12073 447 1 10425 2.99 2005-08-01T08:23:25Z 2020-02-15T06:59:54Z +12074 447 2 10957 5.99 2005-08-02T03:33:30Z 2020-02-15T06:59:54Z +12075 447 2 11108 0.99 2005-08-02T08:20:01Z 2020-02-15T06:59:54Z +12076 447 1 11465 5.99 2005-08-02T21:43:52Z 2020-02-15T06:59:54Z +12077 447 2 12511 0.99 2005-08-18T13:23:19Z 2020-02-15T06:59:54Z +12078 447 1 13072 2.99 2005-08-19T10:03:30Z 2020-02-15T06:59:54Z +12079 447 2 13110 0.99 2005-08-19T11:24:37Z 2020-02-15T06:59:54Z +12080 447 1 13848 4.99 2005-08-20T14:37:49Z 2020-02-15T06:59:54Z +12081 447 2 14443 5.99 2005-08-21T12:06:32Z 2020-02-15T06:59:54Z +12082 447 1 15108 2.99 2005-08-22T12:10:07Z 2020-02-15T06:59:54Z +12083 447 1 15997 4.99 2005-08-23T20:40:31Z 2020-02-15T06:59:54Z +12084 447 2 16032 4.99 2005-08-23T21:59:57Z 2020-02-15T06:59:54Z +12085 448 1 299 4.99 2005-05-26T20:55:36Z 2020-02-15T06:59:54Z +12086 448 2 1123 2.99 2005-05-31T16:48:43Z 2020-02-15T06:59:54Z +12087 448 1 1313 5.99 2005-06-15T10:18:34Z 2020-02-15T06:59:54Z +12088 448 2 1823 7.99 2005-06-16T21:48:16Z 2020-02-15T06:59:54Z +12089 448 2 2697 0.99 2005-06-19T13:29:08Z 2020-02-15T06:59:54Z +12090 448 2 3225 3.99 2005-06-21T02:16:55Z 2020-02-15T06:59:54Z +12091 448 2 3347 5.99 2005-06-21T11:08:32Z 2020-02-15T06:59:54Z +12092 448 2 3959 5.99 2005-07-06T22:07:58Z 2020-02-15T06:59:54Z +12093 448 2 3992 6.99 2005-07-06T23:36:56Z 2020-02-15T06:59:54Z +12094 448 2 4024 0.99 2005-07-07T02:11:23Z 2020-02-15T06:59:54Z +12095 448 2 4206 2.99 2005-07-07T11:32:16Z 2020-02-15T06:59:54Z +12096 448 1 4406 1.99 2005-07-07T21:35:16Z 2020-02-15T06:59:54Z +12097 448 2 4537 2.99 2005-07-08T03:48:40Z 2020-02-15T06:59:54Z +12098 448 2 4558 2.99 2005-07-08T04:55:26Z 2020-02-15T06:59:54Z +12099 448 2 6341 2.99 2005-07-11T19:48:02Z 2020-02-15T06:59:54Z +12100 448 2 6985 4.99 2005-07-27T00:57:42Z 2020-02-15T06:59:54Z +12101 448 1 9178 10.99 2005-07-30T11:58:50Z 2020-02-15T06:59:54Z +12102 448 2 11608 8.99 2005-08-17T03:36:52Z 2020-02-15T06:59:54Z +12103 448 1 11798 9.99 2005-08-17T11:21:43Z 2020-02-15T06:59:54Z +12104 448 1 12446 2.99 2005-08-18T10:56:29Z 2020-02-15T06:59:54Z +12105 448 1 13220 2.99 2005-08-19T15:42:32Z 2020-02-15T06:59:54Z +12106 448 2 13250 3.99 2005-08-19T16:47:55Z 2020-02-15T06:59:54Z +12107 448 1 13982 3.99 2005-08-20T19:08:25Z 2020-02-15T06:59:54Z +12108 448 1 14580 3.99 2005-08-21T16:56:39Z 2020-02-15T06:59:54Z +12109 448 1 14711 2.99 2005-08-21T21:22:07Z 2020-02-15T06:59:54Z +12110 448 2 15358 9.99 2005-08-22T21:29:14Z 2020-02-15T06:59:54Z +12111 448 1 15427 4.99 2005-08-23T00:07:53Z 2020-02-15T06:59:54Z +12112 448 2 14734 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +12113 448 1 13577 0 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +12114 449 2 263 4.99 2005-05-26T15:47:40Z 2020-02-15T06:59:54Z +12115 449 2 325 5.99 2005-05-27T01:09:55Z 2020-02-15T06:59:54Z +12116 449 1 849 7.99 2005-05-30T01:23:07Z 2020-02-15T06:59:54Z +12117 449 2 1295 4.99 2005-06-15T09:17:20Z 2020-02-15T06:59:54Z +12118 449 1 2348 0.99 2005-06-18T12:15:43Z 2020-02-15T06:59:54Z +12119 449 2 2970 2.99 2005-06-20T07:51:51Z 2020-02-15T06:59:54Z +12120 449 1 3503 0.99 2005-07-06T00:17:24Z 2020-02-15T06:59:54Z +12121 449 1 3977 8.99 2005-07-06T23:00:49Z 2020-02-15T06:59:54Z +12122 449 2 4433 3.99 2005-07-07T22:45:41Z 2020-02-15T06:59:54Z +12123 449 1 5824 2.99 2005-07-10T16:19:53Z 2020-02-15T06:59:54Z +12124 449 2 7755 6.99 2005-07-28T06:22:18Z 2020-02-15T06:59:54Z +12125 449 2 7803 3.99 2005-07-28T07:52:13Z 2020-02-15T06:59:54Z +12126 449 2 8002 2.99 2005-07-28T15:11:00Z 2020-02-15T06:59:54Z +12127 449 2 10083 5.99 2005-07-31T20:10:19Z 2020-02-15T06:59:54Z +12128 449 2 10409 2.99 2005-08-01T07:49:15Z 2020-02-15T06:59:54Z +12129 449 1 10416 4.99 2005-08-01T08:08:39Z 2020-02-15T06:59:54Z +12130 449 1 10516 6.99 2005-08-01T11:41:55Z 2020-02-15T06:59:54Z +12131 449 2 10688 6.99 2005-08-01T17:53:43Z 2020-02-15T06:59:54Z +12132 449 1 12212 4.99 2005-08-18T02:33:29Z 2020-02-15T06:59:54Z +12133 449 2 14962 7.99 2005-08-22T06:37:43Z 2020-02-15T06:59:54Z +12134 450 2 548 3.99 2005-05-28T07:34:56Z 2020-02-15T06:59:54Z +12135 450 2 1639 4.99 2005-06-16T08:33:39Z 2020-02-15T06:59:54Z +12136 450 1 1739 0.99 2005-06-16T16:09:38Z 2020-02-15T06:59:54Z +12137 450 2 1914 2.99 2005-06-17T05:25:54Z 2020-02-15T06:59:54Z +12138 450 2 2278 0.99 2005-06-18T06:37:57Z 2020-02-15T06:59:54Z +12139 450 1 2501 4.99 2005-06-18T23:10:11Z 2020-02-15T06:59:54Z +12140 450 1 2626 2.99 2005-06-19T08:28:44Z 2020-02-15T06:59:54Z +12141 450 1 3155 4.99 2005-06-20T21:02:38Z 2020-02-15T06:59:54Z +12142 450 1 3570 3.99 2005-07-06T03:23:43Z 2020-02-15T06:59:54Z +12143 450 1 5999 7.99 2005-07-11T01:21:22Z 2020-02-15T06:59:54Z +12144 450 1 6028 4.99 2005-07-11T02:31:44Z 2020-02-15T06:59:54Z +12145 450 2 7365 2.99 2005-07-27T15:00:20Z 2020-02-15T06:59:54Z +12146 450 1 7610 0.99 2005-07-28T00:11:35Z 2020-02-15T06:59:54Z +12147 450 1 7626 0.99 2005-07-28T00:49:01Z 2020-02-15T06:59:54Z +12148 450 2 8733 4.99 2005-07-29T18:26:34Z 2020-02-15T06:59:54Z +12149 450 2 10432 2.99 2005-08-01T08:43:21Z 2020-02-15T06:59:54Z +12150 450 1 10984 3.99 2005-08-02T04:30:02Z 2020-02-15T06:59:54Z +12151 450 2 12812 0.99 2005-08-19T00:54:02Z 2020-02-15T06:59:54Z +12152 450 2 13731 4.99 2005-08-20T10:22:08Z 2020-02-15T06:59:54Z +12153 450 1 13810 0.99 2005-08-20T12:59:38Z 2020-02-15T06:59:54Z +12154 450 1 13828 4.99 2005-08-20T13:49:52Z 2020-02-15T06:59:54Z +12155 450 1 14282 4.99 2005-08-21T06:41:29Z 2020-02-15T06:59:54Z +12156 450 2 15019 0.99 2005-08-22T08:52:53Z 2020-02-15T06:59:54Z +12157 450 1 15327 4.99 2005-08-22T20:31:24Z 2020-02-15T06:59:54Z +12158 450 2 15419 4.99 2005-08-22T23:54:36Z 2020-02-15T06:59:54Z +12159 450 1 14172 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +12160 451 2 77 0.99 2005-05-25T11:31:59Z 2020-02-15T06:59:54Z +12161 451 2 328 2.99 2005-05-27T01:29:31Z 2020-02-15T06:59:54Z +12162 451 2 1113 2.99 2005-05-31T15:58:44Z 2020-02-15T06:59:54Z +12163 451 1 1202 0.99 2005-06-15T02:08:04Z 2020-02-15T06:59:54Z +12164 451 1 1851 0.99 2005-06-17T00:32:26Z 2020-02-15T06:59:54Z +12165 451 1 1940 6.99 2005-06-17T07:42:22Z 2020-02-15T06:59:54Z +12166 451 1 2671 1.99 2005-06-19T11:33:11Z 2020-02-15T06:59:54Z +12167 451 1 2909 3.99 2005-06-20T03:19:10Z 2020-02-15T06:59:54Z +12168 451 2 2917 0.99 2005-06-20T04:08:35Z 2020-02-15T06:59:55Z +12169 451 1 3316 6.99 2005-06-21T08:20:18Z 2020-02-15T06:59:55Z +12170 451 2 3826 4.99 2005-07-06T15:51:58Z 2020-02-15T06:59:55Z +12171 451 1 4538 2.99 2005-07-08T03:56:29Z 2020-02-15T06:59:55Z +12172 451 1 4794 8.99 2005-07-08T16:30:11Z 2020-02-15T06:59:55Z +12173 451 2 4930 4.99 2005-07-08T22:15:48Z 2020-02-15T06:59:55Z +12174 451 1 5005 3.99 2005-07-09T01:21:44Z 2020-02-15T06:59:55Z +12175 451 2 5518 8.99 2005-07-10T01:15:11Z 2020-02-15T06:59:55Z +12176 451 1 7018 2.99 2005-07-27T02:20:22Z 2020-02-15T06:59:55Z +12177 451 2 10337 8.99 2005-08-01T05:01:46Z 2020-02-15T06:59:55Z +12178 451 1 10856 2.99 2005-08-02T00:07:14Z 2020-02-15T06:59:55Z +12179 451 2 10950 2.99 2005-08-02T03:25:08Z 2020-02-15T06:59:55Z +12180 451 2 11167 6.99 2005-08-02T10:15:51Z 2020-02-15T06:59:55Z +12181 451 2 11381 6.99 2005-08-02T18:19:29Z 2020-02-15T06:59:55Z +12182 451 1 11790 2.99 2005-08-17T11:00:08Z 2020-02-15T06:59:55Z +12183 451 2 12371 2.99 2005-08-18T08:02:46Z 2020-02-15T06:59:55Z +12184 451 1 12422 4.99 2005-08-18T10:13:12Z 2020-02-15T06:59:55Z +12185 451 2 13003 1.99 2005-08-19T07:39:29Z 2020-02-15T06:59:55Z +12186 451 2 13100 2.99 2005-08-19T10:55:45Z 2020-02-15T06:59:55Z +12187 451 2 13252 2.99 2005-08-19T16:50:50Z 2020-02-15T06:59:55Z +12188 451 2 13380 0.99 2005-08-19T21:36:58Z 2020-02-15T06:59:55Z +12189 451 1 13666 2.99 2005-08-20T08:20:19Z 2020-02-15T06:59:55Z +12190 451 1 13705 2.99 2005-08-20T09:32:23Z 2020-02-15T06:59:55Z +12191 451 2 14500 0.99 2005-08-21T14:11:30Z 2020-02-15T06:59:55Z +12192 451 1 15651 4.99 2005-08-23T08:31:49Z 2020-02-15T06:59:55Z +12193 452 1 354 2.99 2005-05-27T06:12:26Z 2020-02-15T06:59:55Z +12194 452 2 714 2.99 2005-05-29T04:15:21Z 2020-02-15T06:59:55Z +12195 452 1 726 1.99 2005-05-29T06:05:29Z 2020-02-15T06:59:55Z +12196 452 2 1203 4.99 2005-06-15T02:09:02Z 2020-02-15T06:59:55Z +12197 452 1 1512 5.99 2005-06-15T22:53:03Z 2020-02-15T06:59:55Z +12198 452 1 1794 3.99 2005-06-16T20:08:37Z 2020-02-15T06:59:55Z +12199 452 1 2263 0.99 2005-06-18T05:57:47Z 2020-02-15T06:59:55Z +12200 452 2 2266 4.99 2005-06-18T06:05:02Z 2020-02-15T06:59:55Z +12201 452 1 2504 0.99 2005-06-18T23:19:53Z 2020-02-15T06:59:55Z +12202 452 2 2661 0.99 2005-06-19T10:50:52Z 2020-02-15T06:59:55Z +12203 452 2 3638 3.99 2005-07-06T07:08:17Z 2020-02-15T06:59:55Z +12204 452 1 3791 2.99 2005-07-06T14:24:56Z 2020-02-15T06:59:55Z +12205 452 2 3907 6.99 2005-07-06T19:39:14Z 2020-02-15T06:59:55Z +12206 452 1 4348 0.99 2005-07-07T19:02:05Z 2020-02-15T06:59:55Z +12207 452 2 4353 4.99 2005-07-07T19:19:05Z 2020-02-15T06:59:55Z +12208 452 2 4417 2.99 2005-07-07T22:05:05Z 2020-02-15T06:59:55Z +12209 452 1 4720 0.99 2005-07-08T12:34:34Z 2020-02-15T06:59:55Z +12210 452 1 5177 1.99 2005-07-09T09:43:21Z 2020-02-15T06:59:55Z +12211 452 2 5480 0.99 2005-07-09T23:49:07Z 2020-02-15T06:59:55Z +12212 452 2 6959 2.99 2005-07-27T00:07:51Z 2020-02-15T06:59:55Z +12213 452 2 7899 6.99 2005-07-28T11:10:12Z 2020-02-15T06:59:55Z +12214 452 1 8898 1.99 2005-07-30T01:02:20Z 2020-02-15T06:59:55Z +12215 452 2 9379 6.99 2005-07-30T19:13:01Z 2020-02-15T06:59:55Z +12216 452 2 11715 4.99 2005-08-17T07:40:55Z 2020-02-15T06:59:55Z +12217 452 1 11735 3.99 2005-08-17T08:35:42Z 2020-02-15T06:59:55Z +12218 452 1 12355 0.99 2005-08-18T07:36:23Z 2020-02-15T06:59:55Z +12219 452 1 12630 4.99 2005-08-18T17:49:28Z 2020-02-15T06:59:55Z +12220 452 1 13080 4.99 2005-08-19T10:18:00Z 2020-02-15T06:59:55Z +12221 452 1 13642 3.99 2005-08-20T07:42:17Z 2020-02-15T06:59:55Z +12222 452 1 14660 0.99 2005-08-21T19:43:21Z 2020-02-15T06:59:55Z +12223 452 1 15909 0.99 2005-08-23T17:42:42Z 2020-02-15T06:59:55Z +12224 452 1 14175 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12225 453 2 2852 5.99 2005-06-19T23:08:50Z 2020-02-15T06:59:55Z +12226 453 1 2853 7.99 2005-06-19T23:09:41Z 2020-02-15T06:59:55Z +12227 453 2 2887 4.99 2005-06-20T01:39:43Z 2020-02-15T06:59:55Z +12228 453 2 3929 0.99 2005-07-06T20:52:39Z 2020-02-15T06:59:55Z +12229 453 2 4033 8.99 2005-07-07T02:35:46Z 2020-02-15T06:59:55Z +12230 453 1 4717 4.99 2005-07-08T12:22:43Z 2020-02-15T06:59:55Z +12231 453 2 4805 2.99 2005-07-08T16:59:12Z 2020-02-15T06:59:55Z +12232 453 2 5359 6.99 2005-07-09T18:10:52Z 2020-02-15T06:59:55Z +12233 453 1 6752 4.99 2005-07-12T14:53:15Z 2020-02-15T06:59:55Z +12234 453 1 7563 0.99 2005-07-27T22:25:36Z 2020-02-15T06:59:55Z +12235 453 2 9289 6.99 2005-07-30T15:57:04Z 2020-02-15T06:59:55Z +12236 453 2 9406 6.99 2005-07-30T20:24:00Z 2020-02-15T06:59:55Z +12237 453 2 9900 1.99 2005-07-31T14:15:05Z 2020-02-15T06:59:55Z +12238 453 1 11794 4.99 2005-08-17T11:08:48Z 2020-02-15T06:59:55Z +12239 453 1 12703 2.99 2005-08-18T20:37:13Z 2020-02-15T06:59:55Z +12240 453 1 13711 7.99 2005-08-20T09:35:20Z 2020-02-15T06:59:55Z +12241 453 1 13785 4.99 2005-08-20T12:11:46Z 2020-02-15T06:59:55Z +12242 453 1 14133 2.99 2005-08-21T01:44:14Z 2020-02-15T06:59:55Z +12243 453 2 14306 5.99 2005-08-21T07:32:35Z 2020-02-15T06:59:55Z +12244 453 2 14644 4.99 2005-08-21T19:12:12Z 2020-02-15T06:59:55Z +12245 453 1 14652 4.99 2005-08-21T19:32:05Z 2020-02-15T06:59:55Z +12246 453 1 15252 0.99 2005-08-22T18:04:22Z 2020-02-15T06:59:55Z +12247 453 2 15627 4.99 2005-08-23T07:25:38Z 2020-02-15T06:59:55Z +12248 454 1 735 7.99 2005-05-29T08:08:13Z 2020-02-15T06:59:55Z +12249 454 2 1647 4.99 2005-06-16T09:14:58Z 2020-02-15T06:59:55Z +12250 454 2 1844 7.99 2005-06-16T23:53:53Z 2020-02-15T06:59:55Z +12251 454 1 1861 1.99 2005-06-17T01:17:31Z 2020-02-15T06:59:55Z +12252 454 1 1938 4.99 2005-06-17T07:18:36Z 2020-02-15T06:59:55Z +12253 454 2 2048 5.99 2005-06-17T14:55:29Z 2020-02-15T06:59:55Z +12254 454 2 2182 5.99 2005-06-18T00:56:18Z 2020-02-15T06:59:55Z +12255 454 1 2437 2.99 2005-06-18T18:30:26Z 2020-02-15T06:59:55Z +12256 454 2 2666 9.99 2005-06-19T11:17:12Z 2020-02-15T06:59:55Z +12257 454 1 3221 2.99 2005-06-21T01:49:47Z 2020-02-15T06:59:55Z +12258 454 1 3362 4.99 2005-06-21T12:19:54Z 2020-02-15T06:59:55Z +12259 454 1 3622 7.99 2005-07-06T06:05:04Z 2020-02-15T06:59:55Z +12260 454 2 4562 4.99 2005-07-08T05:08:32Z 2020-02-15T06:59:55Z +12261 454 2 5088 4.99 2005-07-09T05:45:16Z 2020-02-15T06:59:55Z +12262 454 2 5446 2.99 2005-07-09T21:59:55Z 2020-02-15T06:59:55Z +12263 454 2 6260 4.99 2005-07-11T15:26:29Z 2020-02-15T06:59:55Z +12264 454 2 6701 0.99 2005-07-12T12:47:59Z 2020-02-15T06:59:55Z +12265 454 2 8481 2.99 2005-07-29T08:45:57Z 2020-02-15T06:59:55Z +12266 454 1 8806 0.99 2005-07-29T21:36:34Z 2020-02-15T06:59:55Z +12267 454 2 9041 0.99 2005-07-30T06:32:36Z 2020-02-15T06:59:55Z +12268 454 1 9372 9.99 2005-07-30T19:04:30Z 2020-02-15T06:59:55Z +12269 454 1 10005 3.99 2005-07-31T17:53:51Z 2020-02-15T06:59:55Z +12270 454 2 12347 0.99 2005-08-18T07:18:10Z 2020-02-15T06:59:55Z +12271 454 1 12553 0.99 2005-08-18T14:46:54Z 2020-02-15T06:59:55Z +12272 454 2 13496 8.99 2005-08-20T01:42:29Z 2020-02-15T06:59:55Z +12273 454 2 13513 2.99 2005-08-20T02:27:53Z 2020-02-15T06:59:55Z +12274 454 2 13694 8.99 2005-08-20T09:13:23Z 2020-02-15T06:59:55Z +12275 454 1 13805 6.99 2005-08-20T12:53:12Z 2020-02-15T06:59:55Z +12276 454 1 14799 0.99 2005-08-22T00:44:57Z 2020-02-15T06:59:55Z +12277 454 2 14843 2.99 2005-08-22T02:05:25Z 2020-02-15T06:59:55Z +12278 454 2 15012 4.99 2005-08-22T08:42:32Z 2020-02-15T06:59:55Z +12279 454 1 15301 3.99 2005-08-22T19:44:16Z 2020-02-15T06:59:55Z +12280 454 2 15608 1.99 2005-08-23T06:55:26Z 2020-02-15T06:59:55Z +12281 455 2 115 0.99 2005-05-25T19:13:25Z 2020-02-15T06:59:55Z +12282 455 2 343 0.99 2005-05-27T04:13:41Z 2020-02-15T06:59:55Z +12283 455 2 1382 1.99 2005-06-15T15:18:08Z 2020-02-15T06:59:55Z +12284 455 1 1802 1.99 2005-06-16T20:23:30Z 2020-02-15T06:59:55Z +12285 455 1 1906 2.99 2005-06-17T04:53:35Z 2020-02-15T06:59:55Z +12286 455 2 2356 0.99 2005-06-18T12:59:23Z 2020-02-15T06:59:55Z +12287 455 2 4195 2.99 2005-07-07T11:00:02Z 2020-02-15T06:59:55Z +12288 455 1 4861 8.99 2005-07-08T18:57:30Z 2020-02-15T06:59:55Z +12289 455 1 4964 2.99 2005-07-08T23:46:38Z 2020-02-15T06:59:55Z +12290 455 1 5504 6.99 2005-07-10T00:36:38Z 2020-02-15T06:59:55Z +12291 455 2 6729 4.99 2005-07-12T13:58:23Z 2020-02-15T06:59:55Z +12292 455 1 7388 4.99 2005-07-27T15:54:19Z 2020-02-15T06:59:55Z +12293 455 2 7498 4.99 2005-07-27T20:09:31Z 2020-02-15T06:59:55Z +12294 455 2 7905 5.99 2005-07-28T11:26:57Z 2020-02-15T06:59:55Z +12295 455 2 8291 2.99 2005-07-29T02:28:25Z 2020-02-15T06:59:55Z +12296 455 1 10436 0.99 2005-08-01T08:50:59Z 2020-02-15T06:59:55Z +12297 455 1 11605 4.99 2005-08-17T03:30:57Z 2020-02-15T06:59:55Z +12298 455 1 12163 2.99 2005-08-18T00:46:01Z 2020-02-15T06:59:55Z +12299 455 1 12314 4.99 2005-08-18T06:10:02Z 2020-02-15T06:59:55Z +12300 455 2 13083 2.99 2005-08-19T10:26:45Z 2020-02-15T06:59:55Z +12301 455 2 13813 4.99 2005-08-20T13:03:26Z 2020-02-15T06:59:55Z +12302 455 1 14294 2.99 2005-08-21T07:07:26Z 2020-02-15T06:59:55Z +12303 455 2 14583 4.99 2005-08-21T17:11:47Z 2020-02-15T06:59:55Z +12304 455 1 15494 1.99 2005-08-23T02:25:09Z 2020-02-15T06:59:55Z +12305 456 2 19 4.99 2005-05-25T01:17:24Z 2020-02-15T06:59:55Z +12306 456 1 1288 2.99 2005-06-15T08:41:52Z 2020-02-15T06:59:55Z +12307 456 1 1700 0.99 2005-06-16T13:18:23Z 2020-02-15T06:59:55Z +12308 456 2 2103 5.99 2005-06-17T19:13:10Z 2020-02-15T06:59:55Z +12309 456 2 2146 6.99 2005-06-17T22:26:23Z 2020-02-15T06:59:55Z +12310 456 1 2192 4.99 2005-06-18T01:35:47Z 2020-02-15T06:59:55Z +12311 456 1 2404 0.99 2005-06-18T16:33:48Z 2020-02-15T06:59:55Z +12312 456 1 2581 2.99 2005-06-19T04:54:13Z 2020-02-15T06:59:55Z +12313 456 1 3743 7.99 2005-07-06T12:03:54Z 2020-02-15T06:59:55Z +12314 456 2 3881 2.99 2005-07-06T18:35:37Z 2020-02-15T06:59:55Z +12315 456 1 4141 3.99 2005-07-07T08:19:20Z 2020-02-15T06:59:55Z +12316 456 2 5964 0.99 2005-07-10T23:47:18Z 2020-02-15T06:59:55Z +12317 456 2 6023 0.99 2005-07-11T02:15:57Z 2020-02-15T06:59:55Z +12318 456 2 7248 2.99 2005-07-27T10:37:45Z 2020-02-15T06:59:55Z +12319 456 1 8749 4.99 2005-07-29T19:13:15Z 2020-02-15T06:59:55Z +12320 456 2 10519 5.99 2005-08-01T11:44:13Z 2020-02-15T06:59:55Z +12321 456 1 10813 2.99 2005-08-01T22:43:00Z 2020-02-15T06:59:55Z +12322 456 1 12188 4.99 2005-08-18T01:51:43Z 2020-02-15T06:59:55Z +12323 456 1 13144 8.99 2005-08-19T12:45:55Z 2020-02-15T06:59:55Z +12324 456 1 13348 4.99 2005-08-19T20:31:48Z 2020-02-15T06:59:55Z +12325 456 1 13547 4.99 2005-08-20T03:53:16Z 2020-02-15T06:59:55Z +12326 456 2 14253 2.99 2005-08-21T05:47:52Z 2020-02-15T06:59:55Z +12327 456 2 14690 1.99 2005-08-21T20:42:25Z 2020-02-15T06:59:55Z +12328 456 1 15720 3.99 2005-08-23T11:15:20Z 2020-02-15T06:59:55Z +12329 456 1 15910 2.99 2005-08-23T17:43:16Z 2020-02-15T06:59:55Z +12330 457 2 1024 7.99 2005-05-31T03:30:19Z 2020-02-15T06:59:55Z +12331 457 2 1453 4.99 2005-06-15T19:36:39Z 2020-02-15T06:59:55Z +12332 457 2 1727 0.99 2005-06-16T15:21:47Z 2020-02-15T06:59:55Z +12333 457 1 2030 0.99 2005-06-17T13:13:27Z 2020-02-15T06:59:55Z +12334 457 1 2172 7.99 2005-06-18T00:06:16Z 2020-02-15T06:59:55Z +12335 457 1 2670 4.99 2005-06-19T11:30:16Z 2020-02-15T06:59:55Z +12336 457 1 2762 3.99 2005-06-19T17:22:31Z 2020-02-15T06:59:55Z +12337 457 1 2811 0.99 2005-06-19T19:53:30Z 2020-02-15T06:59:55Z +12338 457 2 3115 2.99 2005-06-20T17:59:05Z 2020-02-15T06:59:55Z +12339 457 2 3184 2.99 2005-06-20T22:57:44Z 2020-02-15T06:59:55Z +12340 457 2 4600 5.99 2005-07-08T06:48:37Z 2020-02-15T06:59:55Z +12341 457 1 5500 0.99 2005-07-10T00:28:17Z 2020-02-15T06:59:55Z +12342 457 1 6467 7.99 2005-07-12T01:22:03Z 2020-02-15T06:59:55Z +12343 457 1 7184 1.99 2005-07-27T08:22:26Z 2020-02-15T06:59:55Z +12344 457 2 8373 4.99 2005-07-29T05:19:53Z 2020-02-15T06:59:55Z +12345 457 1 8502 2.99 2005-07-29T09:15:41Z 2020-02-15T06:59:55Z +12346 457 1 10049 2.99 2005-07-31T19:11:11Z 2020-02-15T06:59:55Z +12347 457 2 11956 6.99 2005-08-17T17:22:05Z 2020-02-15T06:59:55Z +12348 457 1 12115 4.99 2005-08-17T23:04:15Z 2020-02-15T06:59:55Z +12349 457 1 12171 4.99 2005-08-18T01:06:13Z 2020-02-15T06:59:55Z +12350 457 1 13088 0.99 2005-08-19T10:36:11Z 2020-02-15T06:59:55Z +12351 457 1 13150 2.99 2005-08-19T13:08:19Z 2020-02-15T06:59:55Z +12352 457 2 13934 0.99 2005-08-20T17:18:48Z 2020-02-15T06:59:55Z +12353 457 2 14327 10.99 2005-08-21T08:18:18Z 2020-02-15T06:59:55Z +12354 457 1 14365 6.99 2005-08-21T09:25:13Z 2020-02-15T06:59:55Z +12355 457 1 15128 3.99 2005-08-22T12:57:26Z 2020-02-15T06:59:55Z +12356 457 1 12645 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12357 457 2 14516 0 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12358 458 2 2629 5.99 2005-06-19T08:42:12Z 2020-02-15T06:59:55Z +12359 458 2 3322 0.99 2005-06-21T08:42:37Z 2020-02-15T06:59:55Z +12360 458 2 4525 2.99 2005-07-08T03:15:00Z 2020-02-15T06:59:55Z +12361 458 1 5412 2.99 2005-07-09T20:23:52Z 2020-02-15T06:59:55Z +12362 458 1 5572 0.99 2005-07-10T03:49:00Z 2020-02-15T06:59:55Z +12363 458 2 6250 3.99 2005-07-11T15:02:04Z 2020-02-15T06:59:55Z +12364 458 1 6431 5.99 2005-07-12T00:03:57Z 2020-02-15T06:59:55Z +12365 458 2 6595 7.99 2005-07-12T07:25:48Z 2020-02-15T06:59:55Z +12366 458 1 6654 1.99 2005-07-12T11:06:28Z 2020-02-15T06:59:55Z +12367 458 2 7923 3.99 2005-07-28T12:08:29Z 2020-02-15T06:59:55Z +12368 458 1 8158 0.99 2005-07-28T21:08:46Z 2020-02-15T06:59:55Z +12369 458 2 11138 2.99 2005-08-02T09:26:16Z 2020-02-15T06:59:55Z +12370 458 2 11975 2.99 2005-08-17T17:58:39Z 2020-02-15T06:59:55Z +12371 458 2 12768 0.99 2005-08-18T23:26:11Z 2020-02-15T06:59:55Z +12372 458 2 13259 2.99 2005-08-19T17:08:53Z 2020-02-15T06:59:55Z +12373 458 2 13487 2.99 2005-08-20T01:27:05Z 2020-02-15T06:59:55Z +12374 458 2 13571 4.99 2005-08-20T05:05:14Z 2020-02-15T06:59:55Z +12375 458 2 14428 4.99 2005-08-21T11:27:07Z 2020-02-15T06:59:55Z +12376 458 1 15604 4.99 2005-08-23T06:44:19Z 2020-02-15T06:59:55Z +12377 459 2 2 2.99 2005-05-24T22:54:33Z 2020-02-15T06:59:55Z +12378 459 2 1876 0.99 2005-06-17T02:50:51Z 2020-02-15T06:59:55Z +12379 459 2 1977 2.99 2005-06-17T09:38:22Z 2020-02-15T06:59:55Z +12380 459 2 2075 4.99 2005-06-17T16:40:33Z 2020-02-15T06:59:55Z +12381 459 1 2899 0.99 2005-06-20T02:39:21Z 2020-02-15T06:59:55Z +12382 459 2 3041 4.99 2005-06-20T12:35:44Z 2020-02-15T06:59:55Z +12383 459 2 3045 0.99 2005-06-20T12:42:00Z 2020-02-15T06:59:55Z +12384 459 2 3234 9.99 2005-06-21T02:39:44Z 2020-02-15T06:59:55Z +12385 459 1 3506 2.99 2005-07-06T00:22:29Z 2020-02-15T06:59:55Z +12386 459 2 4519 2.99 2005-07-08T02:51:23Z 2020-02-15T06:59:55Z +12387 459 1 5301 3.99 2005-07-09T15:42:10Z 2020-02-15T06:59:55Z +12388 459 1 5695 0.99 2005-07-10T09:43:40Z 2020-02-15T06:59:55Z +12389 459 1 6206 0.99 2005-07-11T12:32:14Z 2020-02-15T06:59:55Z +12390 459 2 6750 3.99 2005-07-12T14:49:39Z 2020-02-15T06:59:55Z +12391 459 1 7623 6.99 2005-07-28T00:37:41Z 2020-02-15T06:59:55Z +12392 459 2 7639 4.99 2005-07-28T01:14:36Z 2020-02-15T06:59:55Z +12393 459 1 7717 4.99 2005-07-28T04:33:54Z 2020-02-15T06:59:55Z +12394 459 1 7820 5.99 2005-07-28T08:28:51Z 2020-02-15T06:59:55Z +12395 459 1 7913 6.99 2005-07-28T11:47:23Z 2020-02-15T06:59:55Z +12396 459 1 8289 9.99 2005-07-29T02:23:24Z 2020-02-15T06:59:55Z +12397 459 2 8557 10.99 2005-07-29T11:19:59Z 2020-02-15T06:59:55Z +12398 459 1 8897 2.99 2005-07-30T01:00:17Z 2020-02-15T06:59:55Z +12399 459 1 9137 6.99 2005-07-30T10:09:24Z 2020-02-15T06:59:55Z +12400 459 2 9639 2.99 2005-07-31T05:32:10Z 2020-02-15T06:59:55Z +12401 459 1 9744 4.99 2005-07-31T09:15:38Z 2020-02-15T06:59:55Z +12402 459 2 10117 4.99 2005-07-31T21:14:31Z 2020-02-15T06:59:55Z +12403 459 1 10233 6.99 2005-08-01T01:54:23Z 2020-02-15T06:59:55Z +12404 459 2 10255 4.99 2005-08-01T02:46:13Z 2020-02-15T06:59:55Z +12405 459 1 10499 7.99 2005-08-01T11:00:20Z 2020-02-15T06:59:55Z +12406 459 1 10531 2.99 2005-08-01T12:06:30Z 2020-02-15T06:59:55Z +12407 459 1 12527 6.99 2005-08-18T13:48:46Z 2020-02-15T06:59:55Z +12408 459 1 12629 7.99 2005-08-18T17:40:33Z 2020-02-15T06:59:55Z +12409 459 2 13960 10.99 2005-08-20T18:16:26Z 2020-02-15T06:59:55Z +12410 459 1 13967 4.99 2005-08-20T18:28:46Z 2020-02-15T06:59:55Z +12411 459 1 14315 3.99 2005-08-21T07:56:39Z 2020-02-15T06:59:55Z +12412 459 1 15126 5.99 2005-08-22T12:53:58Z 2020-02-15T06:59:55Z +12413 459 2 15342 2.99 2005-08-22T20:56:41Z 2020-02-15T06:59:55Z +12414 459 1 15814 0.99 2005-08-23T14:52:50Z 2020-02-15T06:59:55Z +12415 460 1 223 4.99 2005-05-26T10:15:23Z 2020-02-15T06:59:55Z +12416 460 2 298 0.99 2005-05-26T20:52:26Z 2020-02-15T06:59:55Z +12417 460 1 880 0.99 2005-05-30T06:12:33Z 2020-02-15T06:59:55Z +12418 460 2 1064 4.99 2005-05-31T08:50:07Z 2020-02-15T06:59:55Z +12419 460 2 1392 0.99 2005-06-15T16:12:27Z 2020-02-15T06:59:55Z +12420 460 2 3820 4.99 2005-07-06T15:35:26Z 2020-02-15T06:59:55Z +12421 460 1 4452 7.99 2005-07-07T23:31:54Z 2020-02-15T06:59:55Z +12422 460 2 5482 3.99 2005-07-09T23:53:04Z 2020-02-15T06:59:55Z +12423 460 1 6613 4.99 2005-07-12T08:30:07Z 2020-02-15T06:59:55Z +12424 460 1 6788 5.99 2005-07-12T16:33:44Z 2020-02-15T06:59:55Z +12425 460 1 7125 6.99 2005-07-27T06:11:00Z 2020-02-15T06:59:55Z +12426 460 1 7785 3.99 2005-07-28T07:16:11Z 2020-02-15T06:59:55Z +12427 460 2 8656 2.99 2005-07-29T15:05:52Z 2020-02-15T06:59:55Z +12428 460 2 10754 10.99 2005-08-01T20:12:33Z 2020-02-15T06:59:55Z +12429 460 1 10926 1.99 2005-08-02T02:26:37Z 2020-02-15T06:59:55Z +12430 460 2 11554 2.99 2005-08-17T01:05:17Z 2020-02-15T06:59:55Z +12431 460 1 12056 5.99 2005-08-17T21:03:48Z 2020-02-15T06:59:55Z +12432 460 2 12586 4.99 2005-08-18T15:54:39Z 2020-02-15T06:59:55Z +12433 460 1 12865 0.99 2005-08-19T02:38:50Z 2020-02-15T06:59:55Z +12434 460 2 13215 8.99 2005-08-19T15:35:38Z 2020-02-15T06:59:55Z +12435 460 1 13341 3.99 2005-08-19T20:18:53Z 2020-02-15T06:59:55Z +12436 460 2 13920 5.99 2005-08-20T16:51:18Z 2020-02-15T06:59:55Z +12437 460 2 14864 0.99 2005-08-22T02:57:06Z 2020-02-15T06:59:55Z +12438 460 1 14923 3.99 2005-08-22T05:13:33Z 2020-02-15T06:59:55Z +12439 460 2 15954 2.99 2005-08-23T19:14:07Z 2020-02-15T06:59:55Z +12440 461 1 684 6.99 2005-05-29T00:13:15Z 2020-02-15T06:59:55Z +12441 461 2 3127 5.99 2005-06-20T18:39:43Z 2020-02-15T06:59:55Z +12442 461 2 3319 4.99 2005-06-21T08:25:46Z 2020-02-15T06:59:55Z +12443 461 2 3698 0.99 2005-07-06T10:09:20Z 2020-02-15T06:59:55Z +12444 461 2 4586 2.99 2005-07-08T06:12:33Z 2020-02-15T06:59:55Z +12445 461 1 5650 0.99 2005-07-10T07:17:01Z 2020-02-15T06:59:55Z +12446 461 1 5809 2.99 2005-07-10T15:19:30Z 2020-02-15T06:59:55Z +12447 461 2 7334 2.99 2005-07-27T13:59:58Z 2020-02-15T06:59:55Z +12448 461 2 7664 2.99 2005-07-28T02:24:23Z 2020-02-15T06:59:55Z +12449 461 2 8133 0.99 2005-07-28T20:01:06Z 2020-02-15T06:59:55Z +12450 461 2 8164 0.99 2005-07-28T21:17:19Z 2020-02-15T06:59:55Z +12451 461 2 9499 4.99 2005-07-30T23:58:30Z 2020-02-15T06:59:55Z +12452 461 1 9885 0.99 2005-07-31T13:59:32Z 2020-02-15T06:59:55Z +12453 461 2 10113 4.99 2005-07-31T21:10:03Z 2020-02-15T06:59:55Z +12454 461 1 10260 2.99 2005-08-01T02:58:07Z 2020-02-15T06:59:55Z +12455 461 2 11063 0.99 2005-08-02T06:53:48Z 2020-02-15T06:59:55Z +12456 461 2 11219 0.99 2005-08-02T12:30:20Z 2020-02-15T06:59:55Z +12457 461 2 12022 2.99 2005-08-17T19:52:45Z 2020-02-15T06:59:55Z +12458 461 1 13223 2.99 2005-08-19T15:52:04Z 2020-02-15T06:59:55Z +12459 461 1 13269 2.99 2005-08-19T17:34:00Z 2020-02-15T06:59:55Z +12460 461 1 14186 4.99 2005-08-21T03:31:07Z 2020-02-15T06:59:55Z +12461 461 1 14893 4.99 2005-08-22T04:15:48Z 2020-02-15T06:59:55Z +12462 461 1 15067 2.99 2005-08-22T10:49:21Z 2020-02-15T06:59:55Z +12463 461 2 15187 4.99 2005-08-22T15:53:32Z 2020-02-15T06:59:55Z +12464 461 1 15336 6.99 2005-08-22T20:47:48Z 2020-02-15T06:59:55Z +12465 461 2 15411 2.99 2005-08-22T23:35:41Z 2020-02-15T06:59:55Z +12466 461 2 15449 2.99 2005-08-23T00:55:43Z 2020-02-15T06:59:55Z +12467 461 2 15613 7.99 2005-08-23T07:03:19Z 2020-02-15T06:59:55Z +12468 462 2 156 2.99 2005-05-26T01:19:05Z 2020-02-15T06:59:55Z +12469 462 2 590 3.99 2005-05-28T13:06:50Z 2020-02-15T06:59:55Z +12470 462 2 1773 5.99 2005-06-16T18:13:43Z 2020-02-15T06:59:55Z +12471 462 2 1926 9.99 2005-06-17T06:24:30Z 2020-02-15T06:59:55Z +12472 462 1 3279 4.99 2005-06-21T06:05:53Z 2020-02-15T06:59:55Z +12473 462 1 4500 4.99 2005-07-08T02:10:01Z 2020-02-15T06:59:55Z +12474 462 2 4728 3.99 2005-07-08T12:59:01Z 2020-02-15T06:59:55Z +12475 462 1 6583 4.99 2005-07-12T06:42:31Z 2020-02-15T06:59:55Z +12476 462 1 6630 0.99 2005-07-12T09:30:05Z 2020-02-15T06:59:55Z +12477 462 1 6710 7.99 2005-07-12T13:23:09Z 2020-02-15T06:59:55Z +12478 462 1 6721 6.99 2005-07-12T13:42:58Z 2020-02-15T06:59:55Z +12479 462 2 7295 8.99 2005-07-27T12:38:47Z 2020-02-15T06:59:55Z +12480 462 1 7324 6.99 2005-07-27T13:42:39Z 2020-02-15T06:59:55Z +12481 462 1 7762 8.99 2005-07-28T06:34:23Z 2020-02-15T06:59:55Z +12482 462 1 7932 4.99 2005-07-28T12:24:54Z 2020-02-15T06:59:55Z +12483 462 2 7935 2.99 2005-07-28T12:33:17Z 2020-02-15T06:59:55Z +12484 462 1 8066 2.99 2005-07-28T17:20:09Z 2020-02-15T06:59:55Z +12485 462 1 8282 0.99 2005-07-29T01:49:04Z 2020-02-15T06:59:55Z +12486 462 1 8290 3.99 2005-07-29T02:24:08Z 2020-02-15T06:59:55Z +12487 462 2 8757 2.99 2005-07-29T19:19:10Z 2020-02-15T06:59:55Z +12488 462 1 9891 0.99 2005-07-31T14:05:44Z 2020-02-15T06:59:55Z +12489 462 1 10283 2.99 2005-08-01T03:29:45Z 2020-02-15T06:59:55Z +12490 462 2 11639 6.99 2005-08-17T04:43:29Z 2020-02-15T06:59:55Z +12491 462 1 11808 2.99 2005-08-17T11:51:16Z 2020-02-15T06:59:55Z +12492 462 1 12466 4.99 2005-08-18T11:36:55Z 2020-02-15T06:59:55Z +12493 462 2 12582 0.99 2005-08-18T15:51:12Z 2020-02-15T06:59:55Z +12494 462 1 12802 8.99 2005-08-19T00:27:41Z 2020-02-15T06:59:55Z +12495 462 2 13041 8.99 2005-08-19T09:05:38Z 2020-02-15T06:59:55Z +12496 462 1 13328 4.99 2005-08-19T19:56:01Z 2020-02-15T06:59:55Z +12497 462 1 13492 7.99 2005-08-20T01:32:04Z 2020-02-15T06:59:55Z +12498 462 2 15581 2.99 2005-08-23T05:42:13Z 2020-02-15T06:59:55Z +12499 462 1 15943 2.99 2005-08-23T18:49:32Z 2020-02-15T06:59:55Z +12500 462 1 16013 0.99 2005-08-23T21:17:17Z 2020-02-15T06:59:55Z +12501 463 1 560 1.99 2005-05-28T08:53:02Z 2020-02-15T06:59:55Z +12502 463 1 1284 2.99 2005-06-15T08:27:33Z 2020-02-15T06:59:55Z +12503 463 2 2527 4.99 2005-06-19T01:10:31Z 2020-02-15T06:59:55Z +12504 463 1 3217 2.99 2005-06-21T01:28:12Z 2020-02-15T06:59:55Z +12505 463 1 3309 4.99 2005-06-21T08:00:49Z 2020-02-15T06:59:55Z +12506 463 1 5026 2.99 2005-07-09T02:32:34Z 2020-02-15T06:59:55Z +12507 463 1 5157 2.99 2005-07-09T08:52:12Z 2020-02-15T06:59:55Z +12508 463 1 5448 0.99 2005-07-09T22:11:14Z 2020-02-15T06:59:55Z +12509 463 2 6294 0.99 2005-07-11T17:25:55Z 2020-02-15T06:59:55Z +12510 463 1 6932 6.99 2005-07-26T23:08:04Z 2020-02-15T06:59:55Z +12511 463 1 7013 0.99 2005-07-27T02:03:21Z 2020-02-15T06:59:55Z +12512 463 1 7361 0.99 2005-07-27T14:53:55Z 2020-02-15T06:59:55Z +12513 463 1 8762 2.99 2005-07-29T19:30:02Z 2020-02-15T06:59:55Z +12514 463 2 9405 7.99 2005-07-30T20:22:17Z 2020-02-15T06:59:55Z +12515 463 1 9954 2.99 2005-07-31T15:57:07Z 2020-02-15T06:59:55Z +12516 463 1 10275 3.99 2005-08-01T03:20:08Z 2020-02-15T06:59:55Z +12517 463 2 10405 0.99 2005-08-01T07:35:25Z 2020-02-15T06:59:55Z +12518 463 2 10906 2.99 2005-08-02T01:47:04Z 2020-02-15T06:59:55Z +12519 463 2 12096 7.99 2005-08-17T22:32:50Z 2020-02-15T06:59:55Z +12520 463 2 12679 6.99 2005-08-18T19:42:11Z 2020-02-15T06:59:55Z +12521 463 1 12950 2.99 2005-08-19T05:55:58Z 2020-02-15T06:59:55Z +12522 463 2 13938 4.99 2005-08-20T17:24:45Z 2020-02-15T06:59:55Z +12523 463 1 14689 0.99 2005-08-21T20:33:00Z 2020-02-15T06:59:55Z +12524 463 1 14859 2.99 2005-08-22T02:46:35Z 2020-02-15T06:59:55Z +12525 463 2 15151 7.99 2005-08-22T14:23:11Z 2020-02-15T06:59:55Z +12526 464 1 305 3.99 2005-05-26T21:22:07Z 2020-02-15T06:59:55Z +12527 464 2 373 1.99 2005-05-27T08:16:25Z 2020-02-15T06:59:55Z +12528 464 2 1277 4.99 2005-06-15T08:01:29Z 2020-02-15T06:59:55Z +12529 464 1 3167 2.99 2005-06-20T21:42:29Z 2020-02-15T06:59:55Z +12530 464 1 3761 4.99 2005-07-06T12:52:44Z 2020-02-15T06:59:55Z +12531 464 1 4337 5.99 2005-07-07T18:36:37Z 2020-02-15T06:59:55Z +12532 464 2 5455 6.99 2005-07-09T22:28:45Z 2020-02-15T06:59:55Z +12533 464 1 5910 4.99 2005-07-10T20:51:34Z 2020-02-15T06:59:55Z +12534 464 2 6601 3.99 2005-07-12T07:44:49Z 2020-02-15T06:59:55Z +12535 464 1 9600 5.99 2005-07-31T03:35:34Z 2020-02-15T06:59:55Z +12536 464 2 11275 1.99 2005-08-02T14:25:58Z 2020-02-15T06:59:55Z +12537 464 1 13644 8.99 2005-08-20T07:46:30Z 2020-02-15T06:59:55Z +12538 464 2 13943 2.99 2005-08-20T17:31:18Z 2020-02-15T06:59:55Z +12539 464 1 15092 6.99 2005-08-22T11:36:16Z 2020-02-15T06:59:55Z +12540 464 2 15854 0.99 2005-08-23T15:58:05Z 2020-02-15T06:59:55Z +12541 464 1 15983 4.99 2005-08-23T20:13:38Z 2020-02-15T06:59:55Z +12542 465 2 640 0.99 2005-05-28T18:43:26Z 2020-02-15T06:59:55Z +12543 465 1 1337 2.99 2005-06-15T12:12:42Z 2020-02-15T06:59:55Z +12544 465 1 2079 4.99 2005-06-17T16:49:45Z 2020-02-15T06:59:55Z +12545 465 1 2159 8.99 2005-06-17T23:37:29Z 2020-02-15T06:59:55Z +12546 465 2 2524 0.99 2005-06-19T00:48:11Z 2020-02-15T06:59:55Z +12547 465 1 4763 0.99 2005-07-08T14:57:32Z 2020-02-15T06:59:55Z +12548 465 2 6904 3.99 2005-07-12T22:02:09Z 2020-02-15T06:59:55Z +12549 465 2 7508 2.99 2005-07-27T20:33:08Z 2020-02-15T06:59:55Z +12550 465 1 10542 3.99 2005-08-01T12:32:23Z 2020-02-15T06:59:55Z +12551 465 1 11156 2.99 2005-08-02T09:56:06Z 2020-02-15T06:59:55Z +12552 465 1 11586 4.99 2005-08-17T02:20:42Z 2020-02-15T06:59:55Z +12553 465 2 11648 6.99 2005-08-17T04:56:16Z 2020-02-15T06:59:55Z +12554 465 2 12106 4.99 2005-08-17T22:55:32Z 2020-02-15T06:59:55Z +12555 465 1 12814 4.99 2005-08-19T00:58:24Z 2020-02-15T06:59:55Z +12556 465 1 12864 4.99 2005-08-19T02:38:26Z 2020-02-15T06:59:55Z +12557 465 1 15550 3.99 2005-08-23T04:27:54Z 2020-02-15T06:59:55Z +12558 465 2 15859 4.99 2005-08-23T16:08:15Z 2020-02-15T06:59:55Z +12559 466 2 1104 2.99 2005-05-31T14:30:01Z 2020-02-15T06:59:55Z +12560 466 2 1808 7.99 2005-06-16T20:59:35Z 2020-02-15T06:59:55Z +12561 466 2 2446 8.99 2005-06-18T19:04:41Z 2020-02-15T06:59:55Z +12562 466 1 3022 3.99 2005-06-20T11:17:20Z 2020-02-15T06:59:55Z +12563 466 2 3237 4.99 2005-06-21T02:47:56Z 2020-02-15T06:59:55Z +12564 466 2 3343 2.99 2005-06-21T10:56:59Z 2020-02-15T06:59:55Z +12565 466 2 5048 0.99 2005-07-09T03:46:33Z 2020-02-15T06:59:55Z +12566 466 1 5691 4.99 2005-07-10T09:29:49Z 2020-02-15T06:59:55Z +12567 466 1 6073 6.99 2005-07-11T04:54:31Z 2020-02-15T06:59:55Z +12568 466 2 7080 2.99 2005-07-27T04:25:25Z 2020-02-15T06:59:55Z +12569 466 2 8276 0.99 2005-07-29T01:38:43Z 2020-02-15T06:59:55Z +12570 466 1 9202 3.99 2005-07-30T12:43:24Z 2020-02-15T06:59:55Z +12571 466 1 9257 2.99 2005-07-30T14:30:38Z 2020-02-15T06:59:55Z +12572 466 1 10469 4.99 2005-08-01T09:51:11Z 2020-02-15T06:59:55Z +12573 466 2 11343 0.99 2005-08-02T17:12:30Z 2020-02-15T06:59:55Z +12574 466 1 11359 4.99 2005-08-02T17:45:55Z 2020-02-15T06:59:55Z +12575 466 1 12048 7.99 2005-08-17T20:49:24Z 2020-02-15T06:59:55Z +12576 466 1 13478 2.99 2005-08-20T01:07:14Z 2020-02-15T06:59:55Z +12577 466 1 13884 5.99 2005-08-20T15:30:51Z 2020-02-15T06:59:55Z +12578 466 1 13988 4.99 2005-08-20T19:21:28Z 2020-02-15T06:59:55Z +12579 466 2 14546 2.99 2005-08-21T15:50:50Z 2020-02-15T06:59:55Z +12580 466 2 15230 4.99 2005-08-22T17:31:41Z 2020-02-15T06:59:55Z +12581 466 1 16005 7.99 2005-08-23T21:00:22Z 2020-02-15T06:59:55Z +12582 467 2 225 4.99 2005-05-26T10:27:50Z 2020-02-15T06:59:55Z +12583 467 1 1737 8.99 2005-06-16T15:59:44Z 2020-02-15T06:59:55Z +12584 467 2 2121 4.99 2005-06-17T20:38:54Z 2020-02-15T06:59:55Z +12585 467 2 2870 9.99 2005-06-20T00:17:46Z 2020-02-15T06:59:55Z +12586 467 1 3250 6.99 2005-06-21T03:16:36Z 2020-02-15T06:59:55Z +12587 467 1 4216 0.99 2005-07-07T12:01:34Z 2020-02-15T06:59:55Z +12588 467 2 4222 4.99 2005-07-07T12:20:21Z 2020-02-15T06:59:55Z +12589 467 1 4259 4.99 2005-07-07T14:22:18Z 2020-02-15T06:59:55Z +12590 467 2 5160 4.99 2005-07-09T08:57:07Z 2020-02-15T06:59:55Z +12591 467 2 6271 6.99 2005-07-11T16:01:35Z 2020-02-15T06:59:55Z +12592 467 2 7360 2.99 2005-07-27T14:52:06Z 2020-02-15T06:59:55Z +12593 467 2 7573 5.99 2005-07-27T22:46:20Z 2020-02-15T06:59:55Z +12594 467 1 7611 2.99 2005-07-28T00:11:47Z 2020-02-15T06:59:55Z +12595 467 1 8010 7.99 2005-07-28T15:26:20Z 2020-02-15T06:59:55Z +12596 467 2 8061 6.99 2005-07-28T17:12:53Z 2020-02-15T06:59:55Z +12597 467 2 8224 2.99 2005-07-28T23:59:02Z 2020-02-15T06:59:55Z +12598 467 2 8480 8.99 2005-07-29T08:44:46Z 2020-02-15T06:59:55Z +12599 467 1 8767 4.99 2005-07-29T19:42:33Z 2020-02-15T06:59:55Z +12600 467 2 10239 0.99 2005-08-01T02:09:22Z 2020-02-15T06:59:55Z +12601 467 2 11332 2.99 2005-08-02T16:52:57Z 2020-02-15T06:59:55Z +12602 467 1 11874 4.99 2005-08-17T14:16:40Z 2020-02-15T06:59:55Z +12603 467 1 12266 2.99 2005-08-18T04:22:31Z 2020-02-15T06:59:55Z +12604 467 1 12437 9.99 2005-08-18T10:42:43Z 2020-02-15T06:59:55Z +12605 467 1 12641 2.99 2005-08-18T18:18:08Z 2020-02-15T06:59:55Z +12606 467 1 14402 2.99 2005-08-21T10:38:17Z 2020-02-15T06:59:55Z +12607 467 1 14451 0.99 2005-08-21T12:21:44Z 2020-02-15T06:59:55Z +12608 467 1 14842 3.99 2005-08-22T02:04:38Z 2020-02-15T06:59:55Z +12609 467 1 15032 0.99 2005-08-22T09:14:09Z 2020-02-15T06:59:55Z +12610 467 2 15830 2.99 2005-08-23T15:19:15Z 2020-02-15T06:59:55Z +12611 468 2 101 6.99 2005-05-25T17:17:04Z 2020-02-15T06:59:55Z +12612 468 1 186 4.99 2005-05-26T05:32:52Z 2020-02-15T06:59:55Z +12613 468 2 296 6.99 2005-05-26T20:35:19Z 2020-02-15T06:59:55Z +12614 468 2 459 0.99 2005-05-27T20:00:04Z 2020-02-15T06:59:55Z +12615 468 1 673 0.99 2005-05-28T22:07:30Z 2020-02-15T06:59:55Z +12616 468 2 1229 2.99 2005-06-15T03:53:13Z 2020-02-15T06:59:55Z +12617 468 1 1627 8.99 2005-06-16T07:51:09Z 2020-02-15T06:59:55Z +12618 468 1 1821 2.99 2005-06-16T21:42:49Z 2020-02-15T06:59:55Z +12619 468 1 1975 2.99 2005-06-17T09:32:10Z 2020-02-15T06:59:55Z +12620 468 2 2462 4.99 2005-06-18T20:00:15Z 2020-02-15T06:59:55Z +12621 468 1 2831 0.99 2005-06-19T21:17:06Z 2020-02-15T06:59:55Z +12622 468 2 3724 2.99 2005-07-06T11:12:48Z 2020-02-15T06:59:55Z +12623 468 1 3840 5.99 2005-07-06T16:30:59Z 2020-02-15T06:59:55Z +12624 468 2 4184 3.99 2005-07-07T10:30:08Z 2020-02-15T06:59:55Z +12625 468 2 4527 3.99 2005-07-08T03:20:10Z 2020-02-15T06:59:55Z +12626 468 1 5285 2.99 2005-07-09T15:10:44Z 2020-02-15T06:59:55Z +12627 468 1 6392 0.99 2005-07-11T22:25:19Z 2020-02-15T06:59:55Z +12628 468 1 6581 4.99 2005-07-12T06:26:49Z 2020-02-15T06:59:55Z +12629 468 2 6815 5.99 2005-07-12T18:14:10Z 2020-02-15T06:59:55Z +12630 468 2 7292 4.99 2005-07-27T12:34:14Z 2020-02-15T06:59:55Z +12631 468 1 7685 0.99 2005-07-28T03:13:00Z 2020-02-15T06:59:55Z +12632 468 2 8423 5.99 2005-07-29T07:02:57Z 2020-02-15T06:59:55Z +12633 468 2 8768 6.99 2005-07-29T19:43:02Z 2020-02-15T06:59:55Z +12634 468 1 9598 0.99 2005-07-31T03:30:41Z 2020-02-15T06:59:55Z +12635 468 1 9690 6.99 2005-07-31T07:06:29Z 2020-02-15T06:59:55Z +12636 468 2 11257 10.99 2005-08-02T13:45:05Z 2020-02-15T06:59:55Z +12637 468 2 11633 4.99 2005-08-17T04:30:09Z 2020-02-15T06:59:55Z +12638 468 2 12026 6.99 2005-08-17T20:00:10Z 2020-02-15T06:59:55Z +12639 468 2 13221 3.99 2005-08-19T15:45:47Z 2020-02-15T06:59:55Z +12640 468 1 13417 0.99 2005-08-19T22:51:39Z 2020-02-15T06:59:55Z +12641 468 2 14154 4.99 2005-08-21T02:30:00Z 2020-02-15T06:59:55Z +12642 468 2 14210 4.99 2005-08-21T04:28:02Z 2020-02-15T06:59:55Z +12643 468 1 14309 9.99 2005-08-21T07:44:17Z 2020-02-15T06:59:55Z +12644 468 1 14313 2.99 2005-08-21T07:49:53Z 2020-02-15T06:59:55Z +12645 468 1 14614 9.99 2005-08-21T18:03:51Z 2020-02-15T06:59:55Z +12646 468 2 15435 4.99 2005-08-23T00:28:19Z 2020-02-15T06:59:55Z +12647 468 1 15522 1.99 2005-08-23T03:32:31Z 2020-02-15T06:59:55Z +12648 468 1 15836 2.99 2005-08-23T15:29:17Z 2020-02-15T06:59:55Z +12649 468 2 16044 0.99 2005-08-23T22:24:39Z 2020-02-15T06:59:55Z +12650 469 1 168 0.99 2005-05-26T03:07:43Z 2020-02-15T06:59:55Z +12651 469 2 506 7.99 2005-05-28T02:09:19Z 2020-02-15T06:59:55Z +12652 469 2 529 4.99 2005-05-28T04:34:17Z 2020-02-15T06:59:55Z +12653 469 2 936 1.99 2005-05-30T13:52:49Z 2020-02-15T06:59:55Z +12654 469 1 1119 2.99 2005-05-31T16:34:27Z 2020-02-15T06:59:55Z +12655 469 2 1399 0.99 2005-06-15T16:29:51Z 2020-02-15T06:59:55Z +12656 469 1 1680 9.99 2005-06-16T11:17:22Z 2020-02-15T06:59:55Z +12657 469 2 3522 4.99 2005-07-06T01:00:21Z 2020-02-15T06:59:55Z +12658 469 1 3526 10.99 2005-07-06T01:03:29Z 2020-02-15T06:59:55Z +12659 469 2 4067 3.99 2005-07-07T04:34:23Z 2020-02-15T06:59:55Z +12660 469 2 4123 0.99 2005-07-07T07:16:19Z 2020-02-15T06:59:55Z +12661 469 1 5133 0.99 2005-07-09T07:43:22Z 2020-02-15T06:59:55Z +12662 469 1 5299 3.99 2005-07-09T15:38:09Z 2020-02-15T06:59:55Z +12663 469 2 5664 6.99 2005-07-10T08:04:41Z 2020-02-15T06:59:55Z +12664 469 2 6022 0.99 2005-07-11T02:15:53Z 2020-02-15T06:59:55Z +12665 469 2 6099 4.99 2005-07-11T06:24:44Z 2020-02-15T06:59:55Z +12666 469 1 6797 4.99 2005-07-12T16:47:06Z 2020-02-15T06:59:55Z +12667 469 1 6955 3.99 2005-07-26T23:55:48Z 2020-02-15T06:59:55Z +12668 469 2 7062 6.99 2005-07-27T03:52:01Z 2020-02-15T06:59:55Z +12669 469 2 7271 6.99 2005-07-27T11:29:11Z 2020-02-15T06:59:55Z +12670 469 2 7756 4.99 2005-07-28T06:22:52Z 2020-02-15T06:59:55Z +12671 469 1 7914 4.99 2005-07-28T11:48:08Z 2020-02-15T06:59:55Z +12672 469 2 8791 0.99 2005-07-29T20:53:23Z 2020-02-15T06:59:55Z +12673 469 1 9187 2.99 2005-07-30T12:14:03Z 2020-02-15T06:59:55Z +12674 469 2 10075 4.99 2005-07-31T19:58:42Z 2020-02-15T06:59:55Z +12675 469 1 10258 4.99 2005-08-01T02:51:09Z 2020-02-15T06:59:55Z +12676 469 1 10316 4.99 2005-08-01T04:34:57Z 2020-02-15T06:59:55Z +12677 469 1 10658 2.99 2005-08-01T16:39:18Z 2020-02-15T06:59:55Z +12678 469 1 10741 2.99 2005-08-01T19:52:52Z 2020-02-15T06:59:55Z +12679 469 2 11185 0.99 2005-08-02T11:04:35Z 2020-02-15T06:59:55Z +12680 469 2 12035 0.99 2005-08-17T20:18:06Z 2020-02-15T06:59:55Z +12681 469 1 12447 4.99 2005-08-18T10:57:01Z 2020-02-15T06:59:55Z +12682 469 1 12633 6.99 2005-08-18T17:55:38Z 2020-02-15T06:59:55Z +12683 469 1 13654 4.99 2005-08-20T07:58:21Z 2020-02-15T06:59:55Z +12684 469 1 13763 2.99 2005-08-20T11:37:56Z 2020-02-15T06:59:55Z +12685 469 2 14197 7.99 2005-08-21T03:47:25Z 2020-02-15T06:59:55Z +12686 469 2 14661 2.99 2005-08-21T19:44:21Z 2020-02-15T06:59:55Z +12687 469 1 15487 4.99 2005-08-23T02:05:51Z 2020-02-15T06:59:55Z +12688 469 1 15561 9.99 2005-08-23T05:02:31Z 2020-02-15T06:59:55Z +12689 469 1 15851 2.99 2005-08-23T15:46:33Z 2020-02-15T06:59:55Z +12690 470 2 60 2.99 2005-05-25T08:58:25Z 2020-02-15T06:59:55Z +12691 470 2 1256 0.99 2005-06-15T06:13:57Z 2020-02-15T06:59:55Z +12692 470 1 1283 0.99 2005-06-15T08:27:30Z 2020-02-15T06:59:55Z +12693 470 2 1594 7.99 2005-06-16T05:15:12Z 2020-02-15T06:59:55Z +12694 470 1 3764 5.99 2005-07-06T13:01:03Z 2020-02-15T06:59:55Z +12695 470 1 3841 4.99 2005-07-06T16:34:00Z 2020-02-15T06:59:55Z +12696 470 1 3922 4.99 2005-07-06T20:32:27Z 2020-02-15T06:59:55Z +12697 470 1 4373 4.99 2005-07-07T20:10:59Z 2020-02-15T06:59:55Z +12698 470 2 4502 6.99 2005-07-08T02:12:04Z 2020-02-15T06:59:55Z +12699 470 2 5082 4.99 2005-07-09T05:28:38Z 2020-02-15T06:59:55Z +12700 470 1 6009 3.99 2005-07-11T01:51:58Z 2020-02-15T06:59:55Z +12701 470 1 6198 2.99 2005-07-11T12:12:17Z 2020-02-15T06:59:55Z +12702 470 2 6703 4.99 2005-07-12T12:50:19Z 2020-02-15T06:59:55Z +12703 470 1 6927 10.99 2005-07-26T22:56:00Z 2020-02-15T06:59:55Z +12704 470 1 6942 5.99 2005-07-26T23:27:40Z 2020-02-15T06:59:55Z +12705 470 1 7663 4.99 2005-07-28T02:19:48Z 2020-02-15T06:59:55Z +12706 470 2 8476 8.99 2005-07-29T08:39:12Z 2020-02-15T06:59:55Z +12707 470 1 8890 6.99 2005-07-30T00:42:06Z 2020-02-15T06:59:55Z +12708 470 1 9422 5.99 2005-07-30T21:08:41Z 2020-02-15T06:59:55Z +12709 470 1 9687 2.99 2005-07-31T06:52:54Z 2020-02-15T06:59:55Z +12710 470 1 10006 4.99 2005-07-31T17:54:35Z 2020-02-15T06:59:55Z +12711 470 1 10236 0.99 2005-08-01T02:05:34Z 2020-02-15T06:59:55Z +12712 470 2 10944 4.99 2005-08-02T03:20:03Z 2020-02-15T06:59:55Z +12713 470 2 11397 1.99 2005-08-02T18:53:14Z 2020-02-15T06:59:55Z +12714 470 2 11711 2.99 2005-08-17T07:30:55Z 2020-02-15T06:59:55Z +12715 470 1 11742 0.99 2005-08-17T08:48:43Z 2020-02-15T06:59:55Z +12716 470 2 12177 3.99 2005-08-18T01:15:47Z 2020-02-15T06:59:55Z +12717 470 2 12423 8.99 2005-08-18T10:14:52Z 2020-02-15T06:59:55Z +12718 470 1 12753 10.99 2005-08-18T22:37:39Z 2020-02-15T06:59:55Z +12719 470 2 13585 4.99 2005-08-20T05:32:23Z 2020-02-15T06:59:55Z +12720 470 1 13592 4.99 2005-08-20T05:50:35Z 2020-02-15T06:59:55Z +12721 470 2 14405 4.99 2005-08-21T10:45:01Z 2020-02-15T06:59:55Z +12722 471 1 616 2.99 2005-05-28T15:45:39Z 2020-02-15T06:59:55Z +12723 471 1 1447 4.99 2005-06-15T19:13:51Z 2020-02-15T06:59:55Z +12724 471 2 1449 2.99 2005-06-15T19:19:16Z 2020-02-15T06:59:55Z +12725 471 2 2165 2.99 2005-06-17T23:51:10Z 2020-02-15T06:59:55Z +12726 471 2 2350 4.99 2005-06-18T12:25:29Z 2020-02-15T06:59:55Z +12727 471 2 3073 4.99 2005-06-20T14:33:26Z 2020-02-15T06:59:55Z +12728 471 1 3917 0.99 2005-07-06T20:19:29Z 2020-02-15T06:59:55Z +12729 471 1 4020 2.99 2005-07-07T01:42:22Z 2020-02-15T06:59:55Z +12730 471 2 6293 2.99 2005-07-11T17:24:57Z 2020-02-15T06:59:55Z +12731 471 1 6336 8.99 2005-07-11T19:30:13Z 2020-02-15T06:59:55Z +12732 471 1 6912 5.99 2005-07-12T22:17:16Z 2020-02-15T06:59:55Z +12733 471 1 8199 0.99 2005-07-28T23:10:25Z 2020-02-15T06:59:55Z +12734 471 1 9077 2.99 2005-07-30T08:00:19Z 2020-02-15T06:59:55Z +12735 471 1 9502 0.99 2005-07-31T00:02:10Z 2020-02-15T06:59:55Z +12736 471 2 9560 2.99 2005-07-31T02:17:27Z 2020-02-15T06:59:55Z +12737 471 1 10430 2.99 2005-08-01T08:37:06Z 2020-02-15T06:59:55Z +12738 471 2 10828 3.99 2005-08-01T23:16:10Z 2020-02-15T06:59:55Z +12739 471 2 11601 4.99 2005-08-17T03:14:47Z 2020-02-15T06:59:55Z +12740 471 1 12271 4.99 2005-08-18T04:33:11Z 2020-02-15T06:59:55Z +12741 471 1 13661 5.99 2005-08-20T08:05:59Z 2020-02-15T06:59:55Z +12742 471 1 14085 7.99 2005-08-20T23:46:24Z 2020-02-15T06:59:55Z +12743 471 1 14094 4.99 2005-08-21T00:21:35Z 2020-02-15T06:59:55Z +12744 471 1 14317 5.99 2005-08-21T08:00:40Z 2020-02-15T06:59:55Z +12745 471 2 14538 2.99 2005-08-21T15:28:15Z 2020-02-15T06:59:55Z +12746 471 2 14942 7.99 2005-08-22T05:58:27Z 2020-02-15T06:59:55Z +12747 471 2 15184 0.99 2005-08-22T15:51:12Z 2020-02-15T06:59:55Z +12748 471 1 15654 1.99 2005-08-23T08:34:53Z 2020-02-15T06:59:55Z +12749 472 2 142 0.99 2005-05-25T23:43:47Z 2020-02-15T06:59:55Z +12750 472 2 249 2.99 2005-05-26T14:19:09Z 2020-02-15T06:59:55Z +12751 472 2 800 0.99 2005-05-29T17:28:12Z 2020-02-15T06:59:55Z +12752 472 2 994 4.99 2005-05-30T23:55:36Z 2020-02-15T06:59:55Z +12753 472 1 1389 4.99 2005-06-15T15:49:01Z 2020-02-15T06:59:55Z +12754 472 2 1776 6.99 2005-06-16T18:46:58Z 2020-02-15T06:59:55Z +12755 472 1 2538 5.99 2005-06-19T01:56:59Z 2020-02-15T06:59:55Z +12756 472 1 2974 0.99 2005-06-20T08:00:24Z 2020-02-15T06:59:55Z +12757 472 1 2991 4.99 2005-06-20T09:10:43Z 2020-02-15T06:59:55Z +12758 472 1 3254 0.99 2005-06-21T03:27:10Z 2020-02-15T06:59:55Z +12759 472 2 3815 6.99 2005-07-06T15:26:36Z 2020-02-15T06:59:55Z +12760 472 2 5318 2.99 2005-07-09T16:11:33Z 2020-02-15T06:59:55Z +12761 472 1 5612 3.99 2005-07-10T05:15:12Z 2020-02-15T06:59:55Z +12762 472 1 6119 6.99 2005-07-11T07:44:46Z 2020-02-15T06:59:55Z +12763 472 2 6274 5.99 2005-07-11T16:09:42Z 2020-02-15T06:59:55Z +12764 472 1 6308 5.99 2005-07-11T18:08:41Z 2020-02-15T06:59:55Z +12765 472 1 6584 2.99 2005-07-12T06:43:36Z 2020-02-15T06:59:55Z +12766 472 2 8929 5.99 2005-07-30T02:28:22Z 2020-02-15T06:59:55Z +12767 472 2 9926 6.99 2005-07-31T15:11:51Z 2020-02-15T06:59:55Z +12768 472 1 10282 6.99 2005-08-01T03:29:10Z 2020-02-15T06:59:55Z +12769 472 1 10627 0.99 2005-08-01T15:33:03Z 2020-02-15T06:59:55Z +12770 472 1 11911 6.99 2005-08-17T15:51:35Z 2020-02-15T06:59:55Z +12771 472 2 12763 4.99 2005-08-18T23:07:01Z 2020-02-15T06:59:55Z +12772 472 2 13188 8.99 2005-08-19T14:27:03Z 2020-02-15T06:59:55Z +12773 472 1 14209 4.99 2005-08-21T04:17:56Z 2020-02-15T06:59:55Z +12774 472 2 14596 4.99 2005-08-21T17:38:37Z 2020-02-15T06:59:55Z +12775 472 1 14597 4.99 2005-08-21T17:39:41Z 2020-02-15T06:59:55Z +12776 472 2 15185 5.99 2005-08-22T15:52:50Z 2020-02-15T06:59:55Z +12777 472 2 15278 2.99 2005-08-22T19:06:47Z 2020-02-15T06:59:55Z +12778 472 2 14928 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12779 473 1 348 4.99 2005-05-27T04:50:56Z 2020-02-15T06:59:55Z +12780 473 2 942 2.99 2005-05-30T15:05:47Z 2020-02-15T06:59:55Z +12781 473 2 973 3.99 2005-05-30T20:27:45Z 2020-02-15T06:59:55Z +12782 473 2 1748 0.99 2005-06-16T16:54:03Z 2020-02-15T06:59:55Z +12783 473 1 2125 2.99 2005-06-17T20:53:42Z 2020-02-15T06:59:55Z +12784 473 2 2553 4.99 2005-06-19T03:04:59Z 2020-02-15T06:59:55Z +12785 473 2 2748 4.99 2005-06-19T16:22:26Z 2020-02-15T06:59:55Z +12786 473 1 3971 0.99 2005-07-06T22:50:40Z 2020-02-15T06:59:55Z +12787 473 2 4006 4.99 2005-07-07T00:25:29Z 2020-02-15T06:59:55Z +12788 473 2 4625 4.99 2005-07-08T08:14:26Z 2020-02-15T06:59:55Z +12789 473 1 4873 0.99 2005-07-08T19:23:32Z 2020-02-15T06:59:55Z +12790 473 2 5447 5.99 2005-07-09T22:09:28Z 2020-02-15T06:59:55Z +12791 473 1 6446 2.99 2005-07-12T00:44:08Z 2020-02-15T06:59:55Z +12792 473 2 6890 4.99 2005-07-12T21:03:03Z 2020-02-15T06:59:55Z +12793 473 1 7111 4.99 2005-07-27T05:38:16Z 2020-02-15T06:59:55Z +12794 473 1 7215 2.99 2005-07-27T09:24:00Z 2020-02-15T06:59:55Z +12795 473 2 7918 1.99 2005-07-28T11:58:53Z 2020-02-15T06:59:55Z +12796 473 2 7928 7.99 2005-07-28T12:15:51Z 2020-02-15T06:59:55Z +12797 473 1 9025 4.99 2005-07-30T05:50:08Z 2020-02-15T06:59:55Z +12798 473 2 9120 8.99 2005-07-30T09:26:08Z 2020-02-15T06:59:55Z +12799 473 1 10867 2.99 2005-08-02T00:24:15Z 2020-02-15T06:59:55Z +12800 473 2 11006 2.99 2005-08-02T05:05:52Z 2020-02-15T06:59:55Z +12801 473 1 11216 4.99 2005-08-02T12:23:43Z 2020-02-15T06:59:55Z +12802 473 1 11336 0.99 2005-08-02T16:58:56Z 2020-02-15T06:59:55Z +12803 473 2 11421 7.99 2005-08-02T19:51:53Z 2020-02-15T06:59:55Z +12804 473 1 11741 0.99 2005-08-17T08:48:39Z 2020-02-15T06:59:55Z +12805 473 2 13984 4.99 2005-08-20T19:12:30Z 2020-02-15T06:59:55Z +12806 473 2 14202 0.99 2005-08-21T03:51:52Z 2020-02-15T06:59:55Z +12807 473 2 14550 0.99 2005-08-21T15:56:39Z 2020-02-15T06:59:55Z +12808 473 2 14658 4.99 2005-08-21T19:41:50Z 2020-02-15T06:59:55Z +12809 473 2 14757 4.99 2005-08-21T23:23:37Z 2020-02-15T06:59:55Z +12810 473 1 15118 4.99 2005-08-22T12:38:37Z 2020-02-15T06:59:55Z +12811 473 2 15400 2.99 2005-08-22T23:13:03Z 2020-02-15T06:59:55Z +12812 473 2 16024 4.99 2005-08-23T21:46:47Z 2020-02-15T06:59:55Z +12813 474 1 816 7.99 2005-05-29T20:26:39Z 2020-02-15T06:59:55Z +12814 474 1 1758 8.99 2005-06-16T17:39:39Z 2020-02-15T06:59:55Z +12815 474 2 2944 7.99 2005-06-20T05:43:42Z 2020-02-15T06:59:55Z +12816 474 2 3787 4.99 2005-07-06T14:02:01Z 2020-02-15T06:59:55Z +12817 474 2 4048 1.99 2005-07-07T03:30:52Z 2020-02-15T06:59:55Z +12818 474 1 4481 2.99 2005-07-08T00:58:15Z 2020-02-15T06:59:55Z +12819 474 1 4533 0.99 2005-07-08T03:32:01Z 2020-02-15T06:59:55Z +12820 474 2 4785 0.99 2005-07-08T16:10:19Z 2020-02-15T06:59:55Z +12821 474 1 4809 2.99 2005-07-08T17:03:22Z 2020-02-15T06:59:55Z +12822 474 2 4886 4.99 2005-07-08T19:53:22Z 2020-02-15T06:59:55Z +12823 474 1 5251 0.99 2005-07-09T13:36:10Z 2020-02-15T06:59:55Z +12824 474 1 6499 7.99 2005-07-12T03:11:18Z 2020-02-15T06:59:55Z +12825 474 1 8991 2.99 2005-07-30T04:42:54Z 2020-02-15T06:59:55Z +12826 474 2 10376 5.99 2005-08-01T06:27:13Z 2020-02-15T06:59:55Z +12827 474 2 11117 0.99 2005-08-02T08:36:03Z 2020-02-15T06:59:55Z +12828 474 1 11489 2.99 2005-08-02T22:35:28Z 2020-02-15T06:59:55Z +12829 474 2 11537 2.99 2005-08-17T00:41:08Z 2020-02-15T06:59:55Z +12830 474 1 12083 2.99 2005-08-17T22:13:37Z 2020-02-15T06:59:55Z +12831 474 1 12236 4.99 2005-08-18T03:19:29Z 2020-02-15T06:59:55Z +12832 474 1 12440 0.99 2005-08-18T10:47:35Z 2020-02-15T06:59:55Z +12833 474 2 12597 2.99 2005-08-18T16:34:02Z 2020-02-15T06:59:55Z +12834 474 1 12702 4.99 2005-08-18T20:30:33Z 2020-02-15T06:59:55Z +12835 474 1 14728 0.99 2005-08-21T22:15:36Z 2020-02-15T06:59:55Z +12836 474 2 15046 4.99 2005-08-22T09:54:54Z 2020-02-15T06:59:55Z +12837 474 1 15558 6.99 2005-08-23T04:52:22Z 2020-02-15T06:59:55Z +12838 474 1 11909 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12839 475 2 417 4.99 2005-05-27T15:07:27Z 2020-02-15T06:59:55Z +12840 475 1 702 0.99 2005-05-29T02:27:30Z 2020-02-15T06:59:55Z +12841 475 2 3980 5.99 2005-07-06T23:11:11Z 2020-02-15T06:59:55Z +12842 475 1 4013 6.99 2005-07-07T00:58:00Z 2020-02-15T06:59:55Z +12843 475 1 4617 4.99 2005-07-08T07:55:08Z 2020-02-15T06:59:55Z +12844 475 2 5379 0.99 2005-07-09T19:08:03Z 2020-02-15T06:59:55Z +12845 475 1 5407 0.99 2005-07-09T20:16:07Z 2020-02-15T06:59:55Z +12846 475 2 5415 9.99 2005-07-09T20:30:03Z 2020-02-15T06:59:55Z +12847 475 2 5469 2.99 2005-07-09T23:08:07Z 2020-02-15T06:59:55Z +12848 475 1 6224 4.99 2005-07-11T13:42:18Z 2020-02-15T06:59:55Z +12849 475 1 7641 7.99 2005-07-28T01:15:45Z 2020-02-15T06:59:55Z +12850 475 1 7775 1.99 2005-07-28T07:04:36Z 2020-02-15T06:59:55Z +12851 475 2 8207 5.99 2005-07-28T23:26:31Z 2020-02-15T06:59:55Z +12852 475 1 9183 7.99 2005-07-30T12:09:56Z 2020-02-15T06:59:55Z +12853 475 1 9647 2.99 2005-07-31T05:45:15Z 2020-02-15T06:59:55Z +12854 475 1 9737 2.99 2005-07-31T08:59:18Z 2020-02-15T06:59:55Z +12855 475 2 10162 3.99 2005-07-31T23:11:01Z 2020-02-15T06:59:55Z +12856 475 1 10357 0.99 2005-08-01T05:49:49Z 2020-02-15T06:59:55Z +12857 475 1 10633 3.99 2005-08-01T15:37:17Z 2020-02-15T06:59:55Z +12858 475 1 11293 5.99 2005-08-02T15:00:43Z 2020-02-15T06:59:55Z +12859 475 1 11770 4.99 2005-08-17T10:05:05Z 2020-02-15T06:59:55Z +12860 475 2 14303 2.99 2005-08-21T07:22:43Z 2020-02-15T06:59:55Z +12861 475 1 15097 1.99 2005-08-22T11:43:42Z 2020-02-15T06:59:55Z +12862 475 1 15288 4.99 2005-08-22T19:23:58Z 2020-02-15T06:59:55Z +12863 476 1 489 4.99 2005-05-28T00:09:12Z 2020-02-15T06:59:55Z +12864 476 1 771 2.99 2005-05-29T12:59:14Z 2020-02-15T06:59:55Z +12865 476 1 1682 3.99 2005-06-16T11:54:25Z 2020-02-15T06:59:55Z +12866 476 1 2080 0.99 2005-06-17T16:59:40Z 2020-02-15T06:59:55Z +12867 476 2 2508 4.99 2005-06-18T23:43:58Z 2020-02-15T06:59:55Z +12868 476 2 3448 2.99 2005-06-21T20:59:20Z 2020-02-15T06:59:55Z +12869 476 2 3477 7.99 2005-07-05T23:05:17Z 2020-02-15T06:59:55Z +12870 476 1 4010 5.99 2005-07-07T00:47:00Z 2020-02-15T06:59:55Z +12871 476 2 4171 4.99 2005-07-07T09:49:04Z 2020-02-15T06:59:55Z +12872 476 2 5644 4.99 2005-07-10T06:57:44Z 2020-02-15T06:59:55Z +12873 476 1 6151 2.99 2005-07-11T09:25:17Z 2020-02-15T06:59:55Z +12874 476 1 7461 0.99 2005-07-27T18:45:15Z 2020-02-15T06:59:55Z +12875 476 1 8146 0.99 2005-07-28T20:37:36Z 2020-02-15T06:59:55Z +12876 476 2 9325 6.99 2005-07-30T17:29:19Z 2020-02-15T06:59:55Z +12877 476 2 9743 3.99 2005-07-31T09:12:42Z 2020-02-15T06:59:55Z +12878 476 1 10346 4.99 2005-08-01T05:19:23Z 2020-02-15T06:59:55Z +12879 476 1 10617 9.99 2005-08-01T15:05:52Z 2020-02-15T06:59:55Z +12880 476 1 10826 6.99 2005-08-01T23:07:56Z 2020-02-15T06:59:55Z +12881 476 1 12616 4.99 2005-08-18T17:22:41Z 2020-02-15T06:59:55Z +12882 476 2 12709 5.99 2005-08-18T20:59:51Z 2020-02-15T06:59:55Z +12883 476 1 15413 0.99 2005-08-22T23:38:01Z 2020-02-15T06:59:55Z +12884 476 1 13941 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12885 477 1 882 2.99 2005-05-30T06:16:06Z 2020-02-15T06:59:55Z +12886 477 1 1714 6.99 2005-06-16T14:29:59Z 2020-02-15T06:59:55Z +12887 477 1 2187 2.99 2005-06-18T01:17:27Z 2020-02-15T06:59:55Z +12888 477 1 2306 10.99 2005-06-18T08:33:23Z 2020-02-15T06:59:55Z +12889 477 2 2676 4.99 2005-06-19T11:54:57Z 2020-02-15T06:59:55Z +12890 477 2 4237 5.99 2005-07-07T13:16:55Z 2020-02-15T06:59:55Z +12891 477 1 4283 2.99 2005-07-07T15:29:35Z 2020-02-15T06:59:55Z +12892 477 2 4956 7.99 2005-07-08T23:17:10Z 2020-02-15T06:59:55Z +12893 477 2 6265 2.99 2005-07-11T15:43:51Z 2020-02-15T06:59:55Z +12894 477 2 7302 2.99 2005-07-27T12:52:13Z 2020-02-15T06:59:55Z +12895 477 2 7904 10.99 2005-07-28T11:25:39Z 2020-02-15T06:59:55Z +12896 477 1 8515 6.99 2005-07-29T09:55:20Z 2020-02-15T06:59:55Z +12897 477 1 8821 5.99 2005-07-29T22:18:12Z 2020-02-15T06:59:55Z +12898 477 2 8857 2.99 2005-07-29T23:44:22Z 2020-02-15T06:59:55Z +12899 477 2 9446 8.99 2005-07-30T21:53:01Z 2020-02-15T06:59:55Z +12900 477 1 10500 4.99 2005-08-01T11:01:01Z 2020-02-15T06:59:55Z +12901 477 2 10912 0.99 2005-08-02T02:00:03Z 2020-02-15T06:59:55Z +12902 477 2 12420 4.99 2005-08-18T10:01:50Z 2020-02-15T06:59:55Z +12903 477 1 13002 0.99 2005-08-19T07:37:58Z 2020-02-15T06:59:55Z +12904 477 2 14552 3.99 2005-08-21T15:59:27Z 2020-02-15T06:59:55Z +12905 477 2 15091 2.99 2005-08-22T11:34:43Z 2020-02-15T06:59:55Z +12906 477 1 15929 2.99 2005-08-23T18:23:30Z 2020-02-15T06:59:55Z +12907 478 1 1708 0.99 2005-06-16T14:08:44Z 2020-02-15T06:59:55Z +12908 478 2 2358 4.99 2005-06-18T13:00:51Z 2020-02-15T06:59:55Z +12909 478 1 2529 6.99 2005-06-19T01:18:27Z 2020-02-15T06:59:55Z +12910 478 2 2616 8.99 2005-06-19T07:33:00Z 2020-02-15T06:59:55Z +12911 478 2 2765 4.99 2005-06-19T17:34:39Z 2020-02-15T06:59:55Z +12912 478 2 3259 4.99 2005-06-21T03:57:15Z 2020-02-15T06:59:55Z +12913 478 1 3691 4.99 2005-07-06T09:46:12Z 2020-02-15T06:59:55Z +12914 478 1 5837 4.99 2005-07-10T16:57:50Z 2020-02-15T06:59:55Z +12915 478 1 7522 2.99 2005-07-27T21:11:03Z 2020-02-15T06:59:55Z +12916 478 2 8488 4.99 2005-07-29T08:57:38Z 2020-02-15T06:59:55Z +12917 478 1 9665 4.99 2005-07-31T06:17:33Z 2020-02-15T06:59:55Z +12918 478 2 10016 4.99 2005-07-31T18:13:06Z 2020-02-15T06:59:55Z +12919 478 2 10127 0.99 2005-07-31T21:39:48Z 2020-02-15T06:59:55Z +12920 478 1 11906 2.99 2005-08-17T15:40:46Z 2020-02-15T06:59:55Z +12921 478 2 13162 2.99 2005-08-19T13:28:26Z 2020-02-15T06:59:55Z +12922 478 2 13507 4.99 2005-08-20T02:10:27Z 2020-02-15T06:59:55Z +12923 478 1 15027 4.99 2005-08-22T09:03:04Z 2020-02-15T06:59:55Z +12924 478 2 15188 4.99 2005-08-22T15:55:48Z 2020-02-15T06:59:55Z +12925 478 1 15724 4.99 2005-08-23T11:22:09Z 2020-02-15T06:59:55Z +12926 479 2 132 3.99 2005-05-25T21:46:54Z 2020-02-15T06:59:55Z +12927 479 1 709 7.99 2005-05-29T03:48:01Z 2020-02-15T06:59:55Z +12928 479 1 1902 2.99 2005-06-17T04:35:52Z 2020-02-15T06:59:55Z +12929 479 2 1947 3.99 2005-06-17T08:02:20Z 2020-02-15T06:59:55Z +12930 479 2 1987 2.99 2005-06-17T10:40:36Z 2020-02-15T06:59:55Z +12931 479 2 2071 3.99 2005-06-17T16:33:17Z 2020-02-15T06:59:55Z +12932 479 2 2376 2.99 2005-06-18T14:55:30Z 2020-02-15T06:59:55Z +12933 479 2 2764 6.99 2005-06-19T17:27:25Z 2020-02-15T06:59:55Z +12934 479 2 3537 6.99 2005-07-06T01:36:53Z 2020-02-15T06:59:55Z +12935 479 1 3798 0.99 2005-07-06T14:57:53Z 2020-02-15T06:59:55Z +12936 479 2 4183 8.99 2005-07-07T10:28:33Z 2020-02-15T06:59:55Z +12937 479 1 5481 0.99 2005-07-09T23:51:57Z 2020-02-15T06:59:55Z +12938 479 1 5751 4.99 2005-07-10T12:25:11Z 2020-02-15T06:59:55Z +12939 479 2 6084 7.99 2005-07-11T05:16:20Z 2020-02-15T06:59:55Z +12940 479 1 6421 1.99 2005-07-11T23:45:25Z 2020-02-15T06:59:55Z +12941 479 1 6597 0.99 2005-07-12T07:37:02Z 2020-02-15T06:59:55Z +12942 479 2 6849 8.99 2005-07-12T19:29:19Z 2020-02-15T06:59:55Z +12943 479 1 7060 7.99 2005-07-27T03:51:04Z 2020-02-15T06:59:55Z +12944 479 2 7893 2.99 2005-07-28T10:49:27Z 2020-02-15T06:59:55Z +12945 479 1 9347 5.99 2005-07-30T18:16:03Z 2020-02-15T06:59:55Z +12946 479 1 9439 8.99 2005-07-30T21:38:12Z 2020-02-15T06:59:55Z +12947 479 2 9697 2.99 2005-07-31T07:23:11Z 2020-02-15T06:59:55Z +12948 479 2 9754 7.99 2005-07-31T09:23:43Z 2020-02-15T06:59:55Z +12949 479 2 10303 4.99 2005-08-01T04:13:33Z 2020-02-15T06:59:55Z +12950 479 2 11109 4.99 2005-08-02T08:20:29Z 2020-02-15T06:59:55Z +12951 479 2 11584 1.99 2005-08-17T02:13:26Z 2020-02-15T06:59:55Z +12952 479 2 11835 4.99 2005-08-17T13:03:13Z 2020-02-15T06:59:55Z +12953 479 2 12401 0.99 2005-08-18T09:20:51Z 2020-02-15T06:59:55Z +12954 479 2 13078 8.99 2005-08-19T10:16:43Z 2020-02-15T06:59:55Z +12955 479 1 13974 2.99 2005-08-20T18:54:59Z 2020-02-15T06:59:55Z +12956 479 1 12101 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12957 480 1 518 0.99 2005-05-28T03:18:02Z 2020-02-15T06:59:55Z +12958 480 1 720 6.99 2005-05-29T05:17:30Z 2020-02-15T06:59:55Z +12959 480 2 822 9.99 2005-05-29T21:36:00Z 2020-02-15T06:59:55Z +12960 480 1 1353 0.99 2005-06-15T13:13:36Z 2020-02-15T06:59:55Z +12961 480 1 1733 0.99 2005-06-16T15:37:07Z 2020-02-15T06:59:55Z +12962 480 2 3507 7.99 2005-07-06T00:23:43Z 2020-02-15T06:59:55Z +12963 480 2 5633 2.99 2005-07-10T06:22:24Z 2020-02-15T06:59:55Z +12964 480 1 6191 2.99 2005-07-11T11:37:52Z 2020-02-15T06:59:55Z +12965 480 1 7257 2.99 2005-07-27T11:04:17Z 2020-02-15T06:59:55Z +12966 480 2 7910 9.99 2005-07-28T11:44:56Z 2020-02-15T06:59:55Z +12967 480 2 8847 4.99 2005-07-29T23:13:41Z 2020-02-15T06:59:55Z +12968 480 1 8967 6.99 2005-07-30T03:56:55Z 2020-02-15T06:59:55Z +12969 480 2 9332 4.99 2005-07-30T17:53:39Z 2020-02-15T06:59:55Z +12970 480 2 10808 1.99 2005-08-01T22:37:11Z 2020-02-15T06:59:55Z +12971 480 2 11017 0.99 2005-08-02T05:19:51Z 2020-02-15T06:59:55Z +12972 480 1 11369 5.99 2005-08-02T18:04:41Z 2020-02-15T06:59:55Z +12973 480 2 12905 4.99 2005-08-19T04:13:37Z 2020-02-15T06:59:55Z +12974 480 2 13092 0.99 2005-08-19T10:41:09Z 2020-02-15T06:59:55Z +12975 480 2 13131 9.99 2005-08-19T12:08:13Z 2020-02-15T06:59:55Z +12976 480 1 13831 4.99 2005-08-20T13:59:35Z 2020-02-15T06:59:55Z +12977 480 2 15363 2.99 2005-08-22T21:41:40Z 2020-02-15T06:59:55Z +12978 480 2 15579 4.99 2005-08-23T05:38:41Z 2020-02-15T06:59:55Z +12979 481 2 1109 5.99 2005-05-31T15:12:15Z 2020-02-15T06:59:55Z +12980 481 2 1168 2.99 2005-06-14T23:35:09Z 2020-02-15T06:59:55Z +12981 481 2 2296 4.99 2005-06-18T08:10:42Z 2020-02-15T06:59:55Z +12982 481 2 3285 4.99 2005-06-21T06:30:13Z 2020-02-15T06:59:55Z +12983 481 2 3293 0.99 2005-06-21T06:59:33Z 2020-02-15T06:59:55Z +12984 481 1 3863 0.99 2005-07-06T17:40:18Z 2020-02-15T06:59:55Z +12985 481 1 4473 2.99 2005-07-08T00:22:10Z 2020-02-15T06:59:55Z +12986 481 1 4505 1.99 2005-07-08T02:20:04Z 2020-02-15T06:59:55Z +12987 481 1 4532 0.99 2005-07-08T03:30:39Z 2020-02-15T06:59:55Z +12988 481 1 4668 10.99 2005-07-08T10:11:45Z 2020-02-15T06:59:55Z +12989 481 2 5711 2.99 2005-07-10T10:37:20Z 2020-02-15T06:59:55Z +12990 481 1 6044 0.99 2005-07-11T03:18:39Z 2020-02-15T06:59:55Z +12991 481 1 7228 4.99 2005-07-27T09:55:33Z 2020-02-15T06:59:55Z +12992 481 2 7836 7.99 2005-07-28T08:55:27Z 2020-02-15T06:59:55Z +12993 481 1 8243 6.99 2005-07-29T00:35:33Z 2020-02-15T06:59:55Z +12994 481 2 8271 6.99 2005-07-29T01:27:44Z 2020-02-15T06:59:55Z +12995 481 1 9481 4.99 2005-07-30T23:26:05Z 2020-02-15T06:59:55Z +12996 481 1 10018 3.99 2005-07-31T18:15:14Z 2020-02-15T06:59:55Z +12997 481 2 11207 0.99 2005-08-02T12:01:30Z 2020-02-15T06:59:55Z +12998 481 2 11387 2.99 2005-08-02T18:32:38Z 2020-02-15T06:59:55Z +12999 481 1 11752 4.99 2005-08-17T09:10:55Z 2020-02-15T06:59:55Z +13000 481 1 11885 4.99 2005-08-17T14:53:53Z 2020-02-15T06:59:55Z +13001 481 2 12160 2.99 2005-08-18T00:37:59Z 2020-02-15T06:59:55Z +13002 481 1 12981 4.99 2005-08-19T07:04:00Z 2020-02-15T06:59:55Z +13003 481 2 13497 2.99 2005-08-20T01:46:38Z 2020-02-15T06:59:55Z +13004 481 2 13878 4.99 2005-08-20T15:17:38Z 2020-02-15T06:59:55Z +13005 481 1 13990 1.99 2005-08-20T19:29:23Z 2020-02-15T06:59:55Z +13006 481 2 14280 4.99 2005-08-21T06:39:58Z 2020-02-15T06:59:55Z +13007 481 2 14584 0.99 2005-08-21T17:15:33Z 2020-02-15T06:59:55Z +13008 482 1 259 8.99 2005-05-26T15:32:46Z 2020-02-15T06:59:55Z +13009 482 2 680 2.99 2005-05-28T23:27:26Z 2020-02-15T06:59:55Z +13010 482 2 879 0.99 2005-05-30T05:49:42Z 2020-02-15T06:59:55Z +13011 482 2 3048 2.99 2005-06-20T12:49:55Z 2020-02-15T06:59:55Z +13012 482 2 3255 0.99 2005-06-21T03:39:52Z 2020-02-15T06:59:55Z +13013 482 2 3650 2.99 2005-07-06T07:34:15Z 2020-02-15T06:59:55Z +13014 482 1 4768 4.99 2005-07-08T15:28:20Z 2020-02-15T06:59:55Z +13015 482 1 5334 4.99 2005-07-09T17:00:13Z 2020-02-15T06:59:55Z +13016 482 1 5466 4.99 2005-07-09T23:03:21Z 2020-02-15T06:59:55Z +13017 482 2 5810 8.99 2005-07-10T15:22:04Z 2020-02-15T06:59:55Z +13018 482 2 5880 2.99 2005-07-10T19:14:58Z 2020-02-15T06:59:55Z +13019 482 1 6355 8.99 2005-07-11T20:56:29Z 2020-02-15T06:59:55Z +13020 482 2 6447 7.99 2005-07-12T00:45:17Z 2020-02-15T06:59:55Z +13021 482 2 6844 5.99 2005-07-12T19:14:53Z 2020-02-15T06:59:55Z +13022 482 2 7840 6.99 2005-07-28T09:03:02Z 2020-02-15T06:59:55Z +13023 482 2 8584 2.99 2005-07-29T12:07:53Z 2020-02-15T06:59:55Z +13024 482 2 9874 6.99 2005-07-31T13:32:31Z 2020-02-15T06:59:55Z +13025 482 2 10824 4.99 2005-08-01T23:00:22Z 2020-02-15T06:59:55Z +13026 482 2 10839 2.99 2005-08-01T23:37:39Z 2020-02-15T06:59:55Z +13027 482 2 11498 6.99 2005-08-16T22:52:54Z 2020-02-15T06:59:55Z +13028 482 1 13174 4.99 2005-08-19T13:52:50Z 2020-02-15T06:59:55Z +13029 482 2 14383 4.99 2005-08-21T10:02:05Z 2020-02-15T06:59:55Z +13030 482 2 14732 0.99 2005-08-21T22:22:29Z 2020-02-15T06:59:55Z +13031 482 2 14891 6.99 2005-08-22T04:11:02Z 2020-02-15T06:59:55Z +13032 482 2 14995 4.99 2005-08-22T07:52:31Z 2020-02-15T06:59:55Z +13033 482 1 15391 0.99 2005-08-22T23:01:45Z 2020-02-15T06:59:55Z +13034 482 1 15849 5.99 2005-08-23T15:41:20Z 2020-02-15T06:59:55Z +13035 482 2 15865 2.99 2005-08-23T16:18:25Z 2020-02-15T06:59:55Z +13036 482 1 15879 3.99 2005-08-23T16:42:53Z 2020-02-15T06:59:55Z +13037 483 2 742 6.99 2005-05-29T08:36:30Z 2020-02-15T06:59:55Z +13038 483 1 2855 4.99 2005-06-19T23:11:49Z 2020-02-15T06:59:55Z +13039 483 2 2867 0.99 2005-06-20T00:08:38Z 2020-02-15T06:59:55Z +13040 483 1 3380 8.99 2005-06-21T13:58:46Z 2020-02-15T06:59:55Z +13041 483 2 3559 4.99 2005-07-06T02:49:42Z 2020-02-15T06:59:55Z +13042 483 1 5823 4.99 2005-07-10T16:19:52Z 2020-02-15T06:59:55Z +13043 483 2 6478 4.99 2005-07-12T01:41:44Z 2020-02-15T06:59:55Z +13044 483 2 6899 9.99 2005-07-12T21:44:16Z 2020-02-15T06:59:55Z +13045 483 2 7137 0.99 2005-07-27T06:40:41Z 2020-02-15T06:59:55Z +13046 483 1 7381 4.99 2005-07-27T15:40:26Z 2020-02-15T06:59:55Z +13047 483 1 7669 4.99 2005-07-28T02:44:07Z 2020-02-15T06:59:55Z +13048 483 1 8057 7.99 2005-07-28T17:07:13Z 2020-02-15T06:59:55Z +13049 483 1 8356 4.99 2005-07-29T04:58:56Z 2020-02-15T06:59:55Z +13050 483 2 10677 0.99 2005-08-01T17:24:35Z 2020-02-15T06:59:55Z +13051 483 1 10953 6.99 2005-08-02T03:28:38Z 2020-02-15T06:59:55Z +13052 483 2 12331 3.99 2005-08-18T06:47:19Z 2020-02-15T06:59:55Z +13053 483 2 12695 2.99 2005-08-18T20:11:35Z 2020-02-15T06:59:55Z +13054 483 2 12875 2.99 2005-08-19T03:10:21Z 2020-02-15T06:59:55Z +13055 484 2 35 4.99 2005-05-25T04:24:36Z 2020-02-15T06:59:55Z +13056 484 2 668 2.99 2005-05-28T21:54:45Z 2020-02-15T06:59:55Z +13057 484 2 727 2.99 2005-05-29T06:08:15Z 2020-02-15T06:59:55Z +13058 484 1 1351 3.99 2005-06-15T12:51:03Z 2020-02-15T06:59:55Z +13059 484 2 1643 3.99 2005-06-16T08:55:35Z 2020-02-15T06:59:55Z +13060 484 1 2015 4.99 2005-06-17T12:16:29Z 2020-02-15T06:59:55Z +13061 484 1 2044 5.99 2005-06-17T14:37:57Z 2020-02-15T06:59:55Z +13062 484 1 4214 4.99 2005-07-07T11:54:33Z 2020-02-15T06:59:55Z +13063 484 1 5389 2.99 2005-07-09T19:25:45Z 2020-02-15T06:59:55Z +13064 484 2 5708 6.99 2005-07-10T10:29:19Z 2020-02-15T06:59:55Z +13065 484 1 5852 0.99 2005-07-10T17:43:30Z 2020-02-15T06:59:55Z +13066 484 2 5866 6.99 2005-07-10T18:35:14Z 2020-02-15T06:59:55Z +13067 484 2 5977 5.99 2005-07-11T00:16:38Z 2020-02-15T06:59:55Z +13068 484 2 6296 2.99 2005-07-11T17:34:04Z 2020-02-15T06:59:55Z +13069 484 1 6863 6.99 2005-07-12T19:58:34Z 2020-02-15T06:59:55Z +13070 484 2 7440 4.99 2005-07-27T17:43:27Z 2020-02-15T06:59:55Z +13071 484 2 7548 2.99 2005-07-27T21:53:18Z 2020-02-15T06:59:55Z +13072 484 2 8508 0.99 2005-07-29T09:34:38Z 2020-02-15T06:59:55Z +13073 484 2 9141 5.99 2005-07-30T10:16:04Z 2020-02-15T06:59:55Z +13074 484 2 9414 9.99 2005-07-30T20:46:02Z 2020-02-15T06:59:55Z +13075 484 1 9769 4.99 2005-07-31T09:52:16Z 2020-02-15T06:59:55Z +13076 484 2 10166 8.99 2005-07-31T23:22:20Z 2020-02-15T06:59:55Z +13077 484 2 11871 4.99 2005-08-17T14:11:44Z 2020-02-15T06:59:55Z +13078 484 1 12024 0.99 2005-08-17T19:57:34Z 2020-02-15T06:59:55Z +13079 484 1 12771 4.99 2005-08-18T23:29:23Z 2020-02-15T06:59:55Z +13080 484 1 12993 7.99 2005-08-19T07:24:03Z 2020-02-15T06:59:55Z +13081 484 2 13160 0.99 2005-08-19T13:21:04Z 2020-02-15T06:59:55Z +13082 484 2 13956 3.99 2005-08-20T18:08:19Z 2020-02-15T06:59:55Z +13083 484 1 15607 2.99 2005-08-23T06:54:06Z 2020-02-15T06:59:55Z +13084 484 1 16026 4.99 2005-08-23T21:49:22Z 2020-02-15T06:59:55Z +13085 485 1 1009 2.99 2005-05-31T01:47:35Z 2020-02-15T06:59:55Z +13086 485 2 1684 2.99 2005-06-16T11:57:34Z 2020-02-15T06:59:55Z +13087 485 1 1721 8.99 2005-06-16T15:01:36Z 2020-02-15T06:59:55Z +13088 485 2 3579 0.99 2005-07-06T03:47:47Z 2020-02-15T06:59:55Z +13089 485 1 3899 1.99 2005-07-06T19:12:40Z 2020-02-15T06:59:55Z +13090 485 1 3904 0.99 2005-07-06T19:30:57Z 2020-02-15T06:59:55Z +13091 485 2 4137 3.99 2005-07-07T08:17:06Z 2020-02-15T06:59:55Z +13092 485 2 4667 2.99 2005-07-08T10:06:26Z 2020-02-15T06:59:55Z +13093 485 1 5193 2.99 2005-07-09T10:28:18Z 2020-02-15T06:59:55Z +13094 485 1 5343 3.99 2005-07-09T17:23:43Z 2020-02-15T06:59:55Z +13095 485 1 5367 3.99 2005-07-09T18:39:15Z 2020-02-15T06:59:55Z +13096 485 1 5820 4.99 2005-07-10T16:04:59Z 2020-02-15T06:59:55Z +13097 485 2 6810 4.99 2005-07-12T17:54:19Z 2020-02-15T06:59:55Z +13098 485 2 6902 4.99 2005-07-12T21:57:16Z 2020-02-15T06:59:55Z +13099 485 1 7144 4.99 2005-07-27T07:00:37Z 2020-02-15T06:59:55Z +13100 485 2 8984 6.99 2005-07-30T04:31:50Z 2020-02-15T06:59:55Z +13101 485 2 9039 2.99 2005-07-30T06:24:28Z 2020-02-15T06:59:55Z +13102 485 1 9053 4.99 2005-07-30T07:07:39Z 2020-02-15T06:59:55Z +13103 485 2 9189 2.99 2005-07-30T12:20:59Z 2020-02-15T06:59:55Z +13104 485 1 9535 2.99 2005-07-31T01:18:53Z 2020-02-15T06:59:55Z +13105 485 1 9565 0.99 2005-07-31T02:32:00Z 2020-02-15T06:59:55Z +13106 485 1 10771 4.99 2005-08-01T20:49:35Z 2020-02-15T06:59:55Z +13107 485 2 10772 6.99 2005-08-01T20:51:10Z 2020-02-15T06:59:55Z +13108 485 2 11188 3.99 2005-08-02T11:17:11Z 2020-02-15T06:59:55Z +13109 485 1 11921 4.99 2005-08-17T16:12:27Z 2020-02-15T06:59:55Z +13110 485 1 11974 2.99 2005-08-17T17:56:48Z 2020-02-15T06:59:55Z +13111 485 2 12261 8.99 2005-08-18T04:16:06Z 2020-02-15T06:59:55Z +13112 485 2 12487 0.99 2005-08-18T12:45:24Z 2020-02-15T06:59:55Z +13113 485 2 13055 2.99 2005-08-19T09:36:28Z 2020-02-15T06:59:55Z +13114 486 1 909 8.99 2005-05-30T10:43:38Z 2020-02-15T06:59:55Z +13115 486 2 946 2.99 2005-05-30T15:35:08Z 2020-02-15T06:59:55Z +13116 486 2 1129 0.99 2005-05-31T18:00:48Z 2020-02-15T06:59:55Z +13117 486 1 2036 4.99 2005-06-17T13:46:52Z 2020-02-15T06:59:55Z +13118 486 1 2102 5.99 2005-06-17T19:05:22Z 2020-02-15T06:59:55Z +13119 486 2 2566 2.99 2005-06-19T03:45:39Z 2020-02-15T06:59:55Z +13120 486 2 2797 2.99 2005-06-19T19:04:32Z 2020-02-15T06:59:55Z +13121 486 1 3835 4.99 2005-07-06T16:22:45Z 2020-02-15T06:59:55Z +13122 486 2 4110 4.99 2005-07-07T06:44:27Z 2020-02-15T06:59:55Z +13123 486 1 4205 4.99 2005-07-07T11:25:39Z 2020-02-15T06:59:55Z +13124 486 1 4381 2.99 2005-07-07T20:37:53Z 2020-02-15T06:59:55Z +13125 486 1 4772 7.99 2005-07-08T15:41:11Z 2020-02-15T06:59:55Z +13126 486 2 5006 4.99 2005-07-09T01:24:07Z 2020-02-15T06:59:55Z +13127 486 2 6383 4.99 2005-07-11T22:06:53Z 2020-02-15T06:59:55Z +13128 486 2 7127 4.99 2005-07-27T06:13:48Z 2020-02-15T06:59:55Z +13129 486 2 7446 4.99 2005-07-27T18:00:24Z 2020-02-15T06:59:55Z +13130 486 2 8425 8.99 2005-07-29T07:06:21Z 2020-02-15T06:59:55Z +13131 486 2 9142 0.99 2005-07-30T10:21:03Z 2020-02-15T06:59:55Z +13132 486 1 10079 2.99 2005-07-31T20:05:45Z 2020-02-15T06:59:55Z +13133 486 2 10902 4.99 2005-08-02T01:35:46Z 2020-02-15T06:59:55Z +13134 486 1 12465 0.99 2005-08-18T11:35:02Z 2020-02-15T06:59:55Z +13135 486 2 12609 2.99 2005-08-18T17:06:22Z 2020-02-15T06:59:55Z +13136 486 1 13048 4.99 2005-08-19T09:25:06Z 2020-02-15T06:59:55Z +13137 486 2 13803 0.99 2005-08-20T12:46:17Z 2020-02-15T06:59:55Z +13138 486 2 14251 4.99 2005-08-21T05:42:20Z 2020-02-15T06:59:55Z +13139 486 2 14284 4.99 2005-08-21T06:44:37Z 2020-02-15T06:59:55Z +13140 487 2 3100 3.99 2005-06-20T16:47:57Z 2020-02-15T06:59:55Z +13141 487 2 3994 1.99 2005-07-06T23:39:01Z 2020-02-15T06:59:55Z +13142 487 2 4854 2.99 2005-07-08T18:44:44Z 2020-02-15T06:59:55Z +13143 487 1 5634 3.99 2005-07-10T06:25:48Z 2020-02-15T06:59:55Z +13144 487 1 6928 2.99 2005-07-26T22:56:21Z 2020-02-15T06:59:55Z +13145 487 1 7097 2.99 2005-07-27T04:56:09Z 2020-02-15T06:59:55Z +13146 487 1 7788 0.99 2005-07-28T07:21:55Z 2020-02-15T06:59:55Z +13147 487 2 7949 4.99 2005-07-28T13:07:24Z 2020-02-15T06:59:55Z +13148 487 2 8510 1.99 2005-07-29T09:41:38Z 2020-02-15T06:59:55Z +13149 487 2 8689 2.99 2005-07-29T16:38:58Z 2020-02-15T06:59:55Z +13150 487 1 8814 4.99 2005-07-29T21:49:43Z 2020-02-15T06:59:55Z +13151 487 1 8988 7.99 2005-07-30T04:38:49Z 2020-02-15T06:59:55Z +13152 487 2 9457 2.99 2005-07-30T22:23:05Z 2020-02-15T06:59:55Z +13153 487 1 9490 3.99 2005-07-30T23:45:09Z 2020-02-15T06:59:55Z +13154 487 2 10123 0.99 2005-07-31T21:30:46Z 2020-02-15T06:59:55Z +13155 487 2 10511 2.99 2005-08-01T11:32:16Z 2020-02-15T06:59:55Z +13156 487 2 10555 6.99 2005-08-01T12:56:38Z 2020-02-15T06:59:55Z +13157 487 1 10832 6.99 2005-08-01T23:24:53Z 2020-02-15T06:59:55Z +13158 487 2 10877 5.99 2005-08-02T00:32:04Z 2020-02-15T06:59:55Z +13159 487 1 10978 9.99 2005-08-02T04:12:27Z 2020-02-15T06:59:55Z +13160 487 1 11669 5.99 2005-08-17T05:48:51Z 2020-02-15T06:59:55Z +13161 487 2 11890 5.99 2005-08-17T15:08:43Z 2020-02-15T06:59:55Z +13162 487 1 12493 7.99 2005-08-18T12:53:38Z 2020-02-15T06:59:55Z +13163 487 2 13210 4.99 2005-08-19T15:23:38Z 2020-02-15T06:59:55Z +13164 487 1 13658 7.99 2005-08-20T08:02:22Z 2020-02-15T06:59:55Z +13165 487 2 15665 2.99 2005-08-23T08:59:12Z 2020-02-15T06:59:55Z +13166 488 2 1655 3.99 2005-06-16T09:51:39Z 2020-02-15T06:59:55Z +13167 488 2 1704 5.99 2005-06-16T13:45:56Z 2020-02-15T06:59:55Z +13168 488 2 4133 6.99 2005-07-07T08:12:26Z 2020-02-15T06:59:55Z +13169 488 2 4233 5.99 2005-07-07T13:00:20Z 2020-02-15T06:59:55Z +13170 488 1 5141 8.99 2005-07-09T08:05:14Z 2020-02-15T06:59:55Z +13171 488 2 6548 5.99 2005-07-12T05:00:46Z 2020-02-15T06:59:55Z +13172 488 1 7373 5.99 2005-07-27T15:19:33Z 2020-02-15T06:59:55Z +13173 488 1 8005 2.99 2005-07-28T15:15:11Z 2020-02-15T06:59:55Z +13174 488 2 8050 0.99 2005-07-28T16:55:47Z 2020-02-15T06:59:55Z +13175 488 2 8064 2.99 2005-07-28T17:15:38Z 2020-02-15T06:59:55Z +13176 488 2 9083 5.99 2005-07-30T08:14:27Z 2020-02-15T06:59:55Z +13177 488 1 9532 2.99 2005-07-31T01:16:51Z 2020-02-15T06:59:55Z +13178 488 1 9537 0.99 2005-07-31T01:23:00Z 2020-02-15T06:59:55Z +13179 488 2 10474 5.99 2005-08-01T10:01:42Z 2020-02-15T06:59:55Z +13180 488 1 10767 0.99 2005-08-01T20:37:23Z 2020-02-15T06:59:55Z +13181 488 1 11774 3.99 2005-08-17T10:20:39Z 2020-02-15T06:59:55Z +13182 488 2 12483 5.99 2005-08-18T12:38:37Z 2020-02-15T06:59:55Z +13183 488 2 13446 4.99 2005-08-20T00:06:13Z 2020-02-15T06:59:55Z +13184 488 2 14948 5.99 2005-08-22T06:10:53Z 2020-02-15T06:59:55Z +13185 488 2 15259 0.99 2005-08-22T18:23:23Z 2020-02-15T06:59:55Z +13186 488 1 15350 2.99 2005-08-22T21:15:29Z 2020-02-15T06:59:55Z +13187 488 2 15499 2.99 2005-08-23T02:37:19Z 2020-02-15T06:59:55Z +13188 489 1 219 4.99 2005-05-26T09:41:45Z 2020-02-15T06:59:55Z +13189 489 2 513 2.99 2005-05-28T03:08:10Z 2020-02-15T06:59:55Z +13190 489 2 1614 3.99 2005-06-16T06:58:02Z 2020-02-15T06:59:55Z +13191 489 1 2201 0.99 2005-06-18T02:08:27Z 2020-02-15T06:59:55Z +13192 489 1 2370 7.99 2005-06-18T14:29:54Z 2020-02-15T06:59:55Z +13193 489 1 2802 4.99 2005-06-19T19:18:17Z 2020-02-15T06:59:55Z +13194 489 2 3816 2.99 2005-07-06T15:27:04Z 2020-02-15T06:59:55Z +13195 489 1 4774 3.99 2005-07-08T15:42:28Z 2020-02-15T06:59:55Z +13196 489 1 6963 4.99 2005-07-27T00:13:02Z 2020-02-15T06:59:55Z +13197 489 2 9231 0.99 2005-07-30T13:42:15Z 2020-02-15T06:59:55Z +13198 489 1 9459 4.99 2005-07-30T22:24:46Z 2020-02-15T06:59:55Z +13199 489 2 11119 9.99 2005-08-02T08:44:44Z 2020-02-15T06:59:55Z +13200 489 1 11705 4.99 2005-08-17T07:22:25Z 2020-02-15T06:59:55Z +13201 489 1 12496 6.99 2005-08-18T12:58:25Z 2020-02-15T06:59:55Z +13202 489 2 12701 6.99 2005-08-18T20:26:47Z 2020-02-15T06:59:55Z +13203 489 1 13462 4.99 2005-08-20T00:49:19Z 2020-02-15T06:59:55Z +13204 489 2 14095 5.99 2005-08-21T00:25:45Z 2020-02-15T06:59:55Z +13205 489 2 14328 2.99 2005-08-21T08:18:20Z 2020-02-15T06:59:55Z +13206 489 2 14424 6.99 2005-08-21T11:24:11Z 2020-02-15T06:59:55Z +13207 489 1 15205 0.99 2005-08-22T16:32:23Z 2020-02-15T06:59:55Z +13208 489 1 15981 4.99 2005-08-23T20:12:17Z 2020-02-15T06:59:55Z +13209 490 2 585 6.99 2005-05-28T11:50:45Z 2020-02-15T06:59:55Z +13210 490 2 676 4.99 2005-05-28T22:27:51Z 2020-02-15T06:59:55Z +13211 490 1 1665 3.99 2005-06-16T10:16:02Z 2020-02-15T06:59:55Z +13212 490 1 3476 4.99 2005-07-05T23:02:37Z 2020-02-15T06:59:55Z +13213 490 2 3932 4.99 2005-07-06T21:06:17Z 2020-02-15T06:59:55Z +13214 490 1 4083 2.99 2005-07-07T05:13:15Z 2020-02-15T06:59:55Z +13215 490 1 4906 5.99 2005-07-08T20:59:13Z 2020-02-15T06:59:55Z +13216 490 2 5173 7.99 2005-07-09T09:31:44Z 2020-02-15T06:59:55Z +13217 490 2 5489 0.99 2005-07-10T00:07:03Z 2020-02-15T06:59:55Z +13218 490 1 5654 4.99 2005-07-10T07:24:46Z 2020-02-15T06:59:55Z +13219 490 2 6230 2.99 2005-07-11T14:02:19Z 2020-02-15T06:59:55Z +13220 490 1 6803 4.99 2005-07-12T17:21:49Z 2020-02-15T06:59:55Z +13221 490 2 6888 2.99 2005-07-12T21:01:11Z 2020-02-15T06:59:55Z +13222 490 2 6923 8.99 2005-07-12T22:40:48Z 2020-02-15T06:59:55Z +13223 490 1 8552 5.99 2005-07-29T11:14:02Z 2020-02-15T06:59:55Z +13224 490 2 9108 4.99 2005-07-30T08:56:36Z 2020-02-15T06:59:55Z +13225 490 1 9554 0.99 2005-07-31T02:06:49Z 2020-02-15T06:59:55Z +13226 490 1 10786 7.99 2005-08-01T21:29:34Z 2020-02-15T06:59:55Z +13227 490 1 10955 7.99 2005-08-02T03:32:34Z 2020-02-15T06:59:55Z +13228 490 2 11965 2.99 2005-08-17T17:39:45Z 2020-02-15T06:59:55Z +13229 490 2 14557 4.99 2005-08-21T16:05:11Z 2020-02-15T06:59:55Z +13230 490 2 14761 6.99 2005-08-21T23:30:28Z 2020-02-15T06:59:55Z +13231 490 2 15276 2.99 2005-08-22T18:59:01Z 2020-02-15T06:59:55Z +13232 490 1 15448 2.99 2005-08-23T00:55:24Z 2020-02-15T06:59:55Z +13233 491 1 484 2.99 2005-05-27T23:26:45Z 2020-02-15T06:59:55Z +13234 491 2 1097 0.99 2005-05-31T13:38:42Z 2020-02-15T06:59:55Z +13235 491 2 1198 2.99 2005-06-15T01:48:58Z 2020-02-15T06:59:55Z +13236 491 1 1371 4.99 2005-06-15T14:38:15Z 2020-02-15T06:59:55Z +13237 491 2 2026 4.99 2005-06-17T13:05:38Z 2020-02-15T06:59:55Z +13238 491 1 2259 4.99 2005-06-18T05:37:45Z 2020-02-15T06:59:55Z +13239 491 2 2391 4.99 2005-06-18T15:33:30Z 2020-02-15T06:59:55Z +13240 491 2 3031 4.99 2005-06-20T11:52:49Z 2020-02-15T06:59:55Z +13241 491 1 3440 3.99 2005-06-21T19:58:18Z 2020-02-15T06:59:55Z +13242 491 1 4046 8.99 2005-07-07T03:27:59Z 2020-02-15T06:59:55Z +13243 491 1 4392 2.99 2005-07-07T21:11:02Z 2020-02-15T06:59:55Z +13244 491 2 5134 6.99 2005-07-09T07:53:12Z 2020-02-15T06:59:55Z +13245 491 1 5889 4.99 2005-07-10T19:54:41Z 2020-02-15T06:59:55Z +13246 491 2 6171 2.99 2005-07-11T10:29:35Z 2020-02-15T06:59:55Z +13247 491 2 7019 3.99 2005-07-27T02:20:26Z 2020-02-15T06:59:55Z +13248 491 2 7281 6.99 2005-07-27T11:59:20Z 2020-02-15T06:59:55Z +13249 491 2 7688 7.99 2005-07-28T03:20:47Z 2020-02-15T06:59:55Z +13250 491 1 7871 6.99 2005-07-28T10:16:37Z 2020-02-15T06:59:55Z +13251 491 2 10036 2.99 2005-07-31T18:47:20Z 2020-02-15T06:59:55Z +13252 491 2 10178 4.99 2005-07-31T23:43:04Z 2020-02-15T06:59:55Z +13253 491 2 10974 6.99 2005-08-02T04:10:52Z 2020-02-15T06:59:55Z +13254 491 1 11048 4.99 2005-08-02T06:15:07Z 2020-02-15T06:59:55Z +13255 491 1 11590 0.99 2005-08-17T02:28:33Z 2020-02-15T06:59:55Z +13256 491 1 11840 4.99 2005-08-17T13:09:01Z 2020-02-15T06:59:55Z +13257 491 2 13607 2.99 2005-08-20T06:08:42Z 2020-02-15T06:59:55Z +13258 491 1 14780 0.99 2005-08-22T00:06:33Z 2020-02-15T06:59:55Z +13259 491 2 15685 5.99 2005-08-23T09:41:28Z 2020-02-15T06:59:55Z +13260 492 1 84 2.99 2005-05-25T12:36:30Z 2020-02-15T06:59:55Z +13261 492 2 1691 1.99 2005-06-16T12:24:28Z 2020-02-15T06:59:55Z +13262 492 2 1855 4.99 2005-06-17T00:54:58Z 2020-02-15T06:59:55Z +13263 492 2 1956 4.99 2005-06-17T08:43:32Z 2020-02-15T06:59:55Z +13264 492 1 3298 9.99 2005-06-21T07:09:44Z 2020-02-15T06:59:55Z +13265 492 2 4128 8.99 2005-07-07T07:35:25Z 2020-02-15T06:59:55Z +13266 492 1 4142 2.99 2005-07-07T08:19:45Z 2020-02-15T06:59:55Z +13267 492 2 4258 6.99 2005-07-07T14:20:59Z 2020-02-15T06:59:55Z +13268 492 2 5325 0.99 2005-07-09T16:35:47Z 2020-02-15T06:59:55Z +13269 492 1 5609 0.99 2005-07-10T05:09:46Z 2020-02-15T06:59:55Z +13270 492 1 6257 2.99 2005-07-11T15:23:46Z 2020-02-15T06:59:55Z +13271 492 2 7203 2.99 2005-07-27T09:01:23Z 2020-02-15T06:59:55Z +13272 492 2 12971 4.99 2005-08-19T06:42:43Z 2020-02-15T06:59:55Z +13273 492 1 14255 2.99 2005-08-21T05:51:37Z 2020-02-15T06:59:55Z +13274 492 2 15822 0.99 2005-08-23T15:05:59Z 2020-02-15T06:59:55Z +13275 492 1 15958 4.99 2005-08-23T19:22:36Z 2020-02-15T06:59:55Z +13276 493 1 543 7.99 2005-05-28T06:43:34Z 2020-02-15T06:59:55Z +13277 493 2 2109 3.99 2005-06-17T19:41:42Z 2020-02-15T06:59:55Z +13278 493 1 2365 4.99 2005-06-18T13:45:34Z 2020-02-15T06:59:55Z +13279 493 1 2579 0.99 2005-06-19T04:40:44Z 2020-02-15T06:59:55Z +13280 493 1 2864 2.99 2005-06-20T00:00:52Z 2020-02-15T06:59:55Z +13281 493 2 3586 4.99 2005-07-06T04:24:42Z 2020-02-15T06:59:55Z +13282 493 1 3655 5.99 2005-07-06T07:52:54Z 2020-02-15T06:59:55Z +13283 493 1 6549 7.99 2005-07-12T05:02:01Z 2020-02-15T06:59:55Z +13284 493 1 6552 4.99 2005-07-12T05:05:06Z 2020-02-15T06:59:55Z +13285 493 1 7026 2.99 2005-07-27T02:48:58Z 2020-02-15T06:59:55Z +13286 493 2 7043 7.99 2005-07-27T03:24:23Z 2020-02-15T06:59:55Z +13287 493 1 8298 4.99 2005-07-29T02:47:36Z 2020-02-15T06:59:55Z +13288 493 1 8616 2.99 2005-07-29T13:39:09Z 2020-02-15T06:59:55Z +13289 493 1 10777 6.99 2005-08-01T21:03:50Z 2020-02-15T06:59:55Z +13290 493 2 10885 7.99 2005-08-02T00:51:37Z 2020-02-15T06:59:55Z +13291 493 1 13638 2.99 2005-08-20T07:21:15Z 2020-02-15T06:59:55Z +13292 493 2 13675 6.99 2005-08-20T08:32:51Z 2020-02-15T06:59:55Z +13293 493 1 14117 4.99 2005-08-21T01:11:59Z 2020-02-15T06:59:55Z +13294 493 2 15177 4.99 2005-08-22T15:34:49Z 2020-02-15T06:59:55Z +13295 493 1 15355 0.99 2005-08-22T21:19:24Z 2020-02-15T06:59:55Z +13296 493 1 15490 6.99 2005-08-23T02:08:18Z 2020-02-15T06:59:55Z +13297 493 2 15878 2.99 2005-08-23T16:34:31Z 2020-02-15T06:59:55Z +13298 493 2 14160 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13299 494 1 608 4.99 2005-05-28T15:03:44Z 2020-02-15T06:59:55Z +13300 494 1 1683 2.99 2005-06-16T11:54:55Z 2020-02-15T06:59:55Z +13301 494 1 3511 0.99 2005-07-06T00:42:01Z 2020-02-15T06:59:55Z +13302 494 2 3803 2.99 2005-07-06T15:06:55Z 2020-02-15T06:59:55Z +13303 494 2 3913 0.99 2005-07-06T20:11:00Z 2020-02-15T06:59:55Z +13304 494 1 4086 3.99 2005-07-07T05:26:06Z 2020-02-15T06:59:55Z +13305 494 2 4397 5.99 2005-07-07T21:14:54Z 2020-02-15T06:59:55Z +13306 494 2 4551 7.99 2005-07-08T04:36:21Z 2020-02-15T06:59:55Z +13307 494 2 5083 4.99 2005-07-09T05:30:32Z 2020-02-15T06:59:55Z +13308 494 1 5180 2.99 2005-07-09T10:06:53Z 2020-02-15T06:59:55Z +13309 494 2 7258 3.99 2005-07-27T11:05:54Z 2020-02-15T06:59:55Z +13310 494 2 7546 8.99 2005-07-27T21:50:09Z 2020-02-15T06:59:55Z +13311 494 2 7737 1.99 2005-07-28T05:15:03Z 2020-02-15T06:59:55Z +13312 494 2 8333 2.99 2005-07-29T04:16:40Z 2020-02-15T06:59:55Z +13313 494 2 8895 2.99 2005-07-30T00:49:17Z 2020-02-15T06:59:55Z +13314 494 1 8934 4.99 2005-07-30T02:37:05Z 2020-02-15T06:59:55Z +13315 494 2 9012 4.99 2005-07-30T05:18:57Z 2020-02-15T06:59:55Z +13316 494 2 9510 7.99 2005-07-31T00:24:17Z 2020-02-15T06:59:55Z +13317 494 1 9799 2.99 2005-07-31T10:58:32Z 2020-02-15T06:59:55Z +13318 494 2 9943 7.99 2005-07-31T15:37:29Z 2020-02-15T06:59:55Z +13319 494 1 10403 0.99 2005-08-01T07:30:45Z 2020-02-15T06:59:55Z +13320 494 1 10623 2.99 2005-08-01T15:22:38Z 2020-02-15T06:59:55Z +13321 494 2 11152 3.99 2005-08-02T09:53:36Z 2020-02-15T06:59:55Z +13322 494 1 11987 5.99 2005-08-17T18:21:59Z 2020-02-15T06:59:55Z +13323 494 2 13094 0.99 2005-08-19T10:47:58Z 2020-02-15T06:59:55Z +13324 494 2 13301 3.99 2005-08-19T18:53:15Z 2020-02-15T06:59:55Z +13325 494 2 14634 5.99 2005-08-21T18:51:28Z 2020-02-15T06:59:55Z +13326 494 1 14832 4.99 2005-08-22T01:43:29Z 2020-02-15T06:59:55Z +13327 494 1 15086 6.99 2005-08-22T11:21:08Z 2020-02-15T06:59:55Z +13328 494 2 15156 9.99 2005-08-22T14:29:11Z 2020-02-15T06:59:55Z +13329 494 2 15291 4.99 2005-08-22T19:28:04Z 2020-02-15T06:59:55Z +13330 495 2 623 4.99 2005-05-28T16:01:28Z 2020-02-15T06:59:55Z +13331 495 2 741 4.99 2005-05-29T08:35:49Z 2020-02-15T06:59:55Z +13332 495 2 2074 2.99 2005-06-17T16:40:03Z 2020-02-15T06:59:55Z +13333 495 1 2349 4.99 2005-06-18T12:25:14Z 2020-02-15T06:59:55Z +13334 495 1 2549 7.99 2005-06-19T02:46:39Z 2020-02-15T06:59:55Z +13335 495 1 3129 3.99 2005-06-20T18:57:48Z 2020-02-15T06:59:55Z +13336 495 2 3966 2.99 2005-07-06T22:38:49Z 2020-02-15T06:59:55Z +13337 495 2 5484 7.99 2005-07-09T23:54:37Z 2020-02-15T06:59:55Z +13338 495 2 6426 7.99 2005-07-11T23:56:38Z 2020-02-15T06:59:55Z +13339 495 2 7191 2.99 2005-07-27T08:36:15Z 2020-02-15T06:59:55Z +13340 495 1 8151 0.99 2005-07-28T20:50:52Z 2020-02-15T06:59:55Z +13341 495 1 8383 1.99 2005-07-29T05:36:47Z 2020-02-15T06:59:55Z +13342 495 1 8451 5.99 2005-07-29T07:44:56Z 2020-02-15T06:59:55Z +13343 495 1 8672 5.99 2005-07-29T15:49:48Z 2020-02-15T06:59:55Z +13344 495 1 9387 9.99 2005-07-30T19:27:05Z 2020-02-15T06:59:55Z +13345 495 1 9741 4.99 2005-07-31T09:09:22Z 2020-02-15T06:59:55Z +13346 495 2 10065 4.99 2005-07-31T19:27:34Z 2020-02-15T06:59:55Z +13347 495 2 10643 5.99 2005-08-01T15:48:33Z 2020-02-15T06:59:55Z +13348 495 1 10783 4.99 2005-08-01T21:23:37Z 2020-02-15T06:59:55Z +13349 495 1 12782 5.99 2005-08-18T23:56:23Z 2020-02-15T06:59:55Z +13350 495 2 12837 0.99 2005-08-19T01:51:09Z 2020-02-15T06:59:55Z +13351 495 2 13205 3.99 2005-08-19T15:05:26Z 2020-02-15T06:59:55Z +13352 495 2 13445 2.99 2005-08-20T00:05:33Z 2020-02-15T06:59:55Z +13353 495 2 13818 4.99 2005-08-20T13:20:09Z 2020-02-15T06:59:55Z +13354 495 1 15984 2.99 2005-08-23T20:16:27Z 2020-02-15T06:59:55Z +13355 495 2 13753 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13356 496 2 322 4.99 2005-05-27T00:47:35Z 2020-02-15T06:59:55Z +13357 496 2 966 0.99 2005-05-30T19:00:37Z 2020-02-15T06:59:55Z +13358 496 1 2567 2.99 2005-06-19T04:04:46Z 2020-02-15T06:59:55Z +13359 496 2 3569 3.99 2005-07-06T03:17:23Z 2020-02-15T06:59:55Z +13360 496 1 4070 2.99 2005-07-07T04:37:09Z 2020-02-15T06:59:55Z +13361 496 1 4261 4.99 2005-07-07T14:23:56Z 2020-02-15T06:59:55Z +13362 496 1 4269 0.99 2005-07-07T14:38:33Z 2020-02-15T06:59:55Z +13363 496 1 5559 5.99 2005-07-10T03:13:07Z 2020-02-15T06:59:55Z +13364 496 2 5949 4.99 2005-07-10T23:13:00Z 2020-02-15T06:59:55Z +13365 496 1 7133 2.99 2005-07-27T06:29:23Z 2020-02-15T06:59:55Z +13366 496 2 8221 2.99 2005-07-28T23:47:19Z 2020-02-15T06:59:55Z +13367 496 1 11060 7.99 2005-08-02T06:48:18Z 2020-02-15T06:59:55Z +13368 496 2 11448 4.99 2005-08-02T20:44:33Z 2020-02-15T06:59:55Z +13369 496 1 11893 3.99 2005-08-17T15:13:29Z 2020-02-15T06:59:55Z +13370 496 2 12605 4.99 2005-08-18T16:59:37Z 2020-02-15T06:59:55Z +13371 496 1 13569 5.99 2005-08-20T05:02:59Z 2020-02-15T06:59:55Z +13372 496 2 14013 6.99 2005-08-20T20:42:50Z 2020-02-15T06:59:55Z +13373 496 1 14332 7.99 2005-08-21T08:30:43Z 2020-02-15T06:59:55Z +13374 496 1 14348 0.99 2005-08-21T08:54:26Z 2020-02-15T06:59:55Z +13375 496 2 15750 2.99 2005-08-23T12:36:05Z 2020-02-15T06:59:55Z +13376 496 1 13182 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13377 497 1 1100 7.99 2005-05-31T14:03:21Z 2020-02-15T06:59:55Z +13378 497 2 2180 8.99 2005-06-18T00:47:43Z 2020-02-15T06:59:55Z +13379 497 1 2298 5.99 2005-06-18T08:18:29Z 2020-02-15T06:59:55Z +13380 497 1 2406 2.99 2005-06-18T16:39:37Z 2020-02-15T06:59:55Z +13381 497 2 2818 4.99 2005-06-19T20:05:52Z 2020-02-15T06:59:55Z +13382 497 1 3696 2.99 2005-07-06T10:04:55Z 2020-02-15T06:59:55Z +13383 497 2 4218 7.99 2005-07-07T12:10:24Z 2020-02-15T06:59:55Z +13384 497 1 4516 4.99 2005-07-08T02:43:41Z 2020-02-15T06:59:55Z +13385 497 1 4578 0.99 2005-07-08T06:00:17Z 2020-02-15T06:59:55Z +13386 497 2 4795 0.99 2005-07-08T16:32:54Z 2020-02-15T06:59:55Z +13387 497 1 5030 4.99 2005-07-09T02:35:43Z 2020-02-15T06:59:55Z +13388 497 1 5239 4.99 2005-07-09T13:12:35Z 2020-02-15T06:59:55Z +13389 497 2 7603 2.99 2005-07-27T23:54:44Z 2020-02-15T06:59:55Z +13390 497 2 8011 2.99 2005-07-28T15:26:39Z 2020-02-15T06:59:55Z +13391 497 1 8150 6.99 2005-07-28T20:50:41Z 2020-02-15T06:59:55Z +13392 497 2 8813 6.99 2005-07-29T21:47:55Z 2020-02-15T06:59:55Z +13393 497 2 8867 4.99 2005-07-30T00:02:18Z 2020-02-15T06:59:55Z +13394 497 1 9273 9.99 2005-07-30T15:05:36Z 2020-02-15T06:59:55Z +13395 497 2 9850 4.99 2005-07-31T12:46:52Z 2020-02-15T06:59:55Z +13396 497 2 10760 7.99 2005-08-01T20:25:20Z 2020-02-15T06:59:55Z +13397 497 1 12123 0.99 2005-08-17T23:22:18Z 2020-02-15T06:59:55Z +13398 497 1 13159 4.99 2005-08-19T13:19:59Z 2020-02-15T06:59:55Z +13399 497 1 13289 2.99 2005-08-19T18:31:30Z 2020-02-15T06:59:55Z +13400 497 2 14134 0.99 2005-08-21T01:45:54Z 2020-02-15T06:59:55Z +13401 497 1 15362 5.99 2005-08-22T21:40:20Z 2020-02-15T06:59:55Z +13402 497 2 15633 0.99 2005-08-23T07:31:10Z 2020-02-15T06:59:55Z +13403 497 1 15919 0.99 2005-08-23T18:01:31Z 2020-02-15T06:59:55Z +13404 497 1 12698 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13405 498 2 49 2.99 2005-05-25T06:39:35Z 2020-02-15T06:59:55Z +13406 498 1 429 8.99 2005-05-27T16:21:26Z 2020-02-15T06:59:55Z +13407 498 2 718 2.99 2005-05-29T04:52:23Z 2020-02-15T06:59:55Z +13408 498 1 1253 6.99 2005-06-15T06:06:33Z 2020-02-15T06:59:55Z +13409 498 1 1782 2.99 2005-06-16T19:21:12Z 2020-02-15T06:59:55Z +13410 498 1 2344 2.99 2005-06-18T12:01:47Z 2020-02-15T06:59:55Z +13411 498 1 2449 4.99 2005-06-18T19:18:36Z 2020-02-15T06:59:55Z +13412 498 1 3098 0.99 2005-06-20T16:37:01Z 2020-02-15T06:59:55Z +13413 498 2 3360 0.99 2005-06-21T12:12:41Z 2020-02-15T06:59:55Z +13414 498 2 3828 0.99 2005-07-06T15:57:30Z 2020-02-15T06:59:55Z +13415 498 2 3856 2.99 2005-07-06T17:04:46Z 2020-02-15T06:59:55Z +13416 498 1 4311 4.99 2005-07-07T17:31:14Z 2020-02-15T06:59:55Z +13417 498 2 4972 2.99 2005-07-08T23:56:09Z 2020-02-15T06:59:55Z +13418 498 1 5286 2.99 2005-07-09T15:11:41Z 2020-02-15T06:59:55Z +13419 498 2 5884 0.99 2005-07-10T19:31:38Z 2020-02-15T06:59:55Z +13420 498 1 6058 2.99 2005-07-11T04:03:51Z 2020-02-15T06:59:55Z +13421 498 1 6088 1.99 2005-07-11T05:40:35Z 2020-02-15T06:59:55Z +13422 498 1 7285 4.99 2005-07-27T12:14:06Z 2020-02-15T06:59:55Z +13423 498 1 7286 6.99 2005-07-27T12:23:49Z 2020-02-15T06:59:55Z +13424 498 1 7341 4.99 2005-07-27T14:23:55Z 2020-02-15T06:59:55Z +13425 498 2 8020 4.99 2005-07-28T15:43:32Z 2020-02-15T06:59:55Z +13426 498 1 8229 2.99 2005-07-29T00:09:08Z 2020-02-15T06:59:55Z +13427 498 2 9021 0.99 2005-07-30T05:34:24Z 2020-02-15T06:59:55Z +13428 498 2 9689 4.99 2005-07-31T07:00:08Z 2020-02-15T06:59:55Z +13429 498 1 10225 0.99 2005-08-01T01:38:40Z 2020-02-15T06:59:55Z +13430 498 1 11455 6.99 2005-08-02T21:07:06Z 2020-02-15T06:59:55Z +13431 498 1 12893 2.99 2005-08-19T03:46:43Z 2020-02-15T06:59:55Z +13432 499 2 89 2.99 2005-05-25T14:28:29Z 2020-02-15T06:59:55Z +13433 499 1 1355 2.99 2005-06-15T13:13:59Z 2020-02-15T06:59:55Z +13434 499 2 1526 4.99 2005-06-16T00:27:51Z 2020-02-15T06:59:55Z +13435 499 2 1830 4.99 2005-06-16T22:18:43Z 2020-02-15T06:59:55Z +13436 499 2 3241 1.99 2005-06-21T02:54:32Z 2020-02-15T06:59:55Z +13437 499 1 3794 4.99 2005-07-06T14:35:26Z 2020-02-15T06:59:55Z +13438 499 1 5022 2.99 2005-07-09T02:10:54Z 2020-02-15T06:59:55Z +13439 499 2 5392 2.99 2005-07-09T19:32:30Z 2020-02-15T06:59:55Z +13440 499 2 5427 3.99 2005-07-09T21:12:26Z 2020-02-15T06:59:55Z +13441 499 1 5956 4.99 2005-07-10T23:23:08Z 2020-02-15T06:59:55Z +13442 499 2 6723 4.99 2005-07-12T13:44:57Z 2020-02-15T06:59:55Z +13443 499 1 7800 0.99 2005-07-28T07:50:59Z 2020-02-15T06:59:55Z +13444 499 1 7831 0.99 2005-07-28T08:44:21Z 2020-02-15T06:59:55Z +13445 499 1 7898 6.99 2005-07-28T11:08:22Z 2020-02-15T06:59:55Z +13446 499 2 8130 4.99 2005-07-28T19:48:15Z 2020-02-15T06:59:55Z +13447 499 1 8770 3.99 2005-07-29T19:53:50Z 2020-02-15T06:59:55Z +13448 499 1 9588 0.99 2005-07-31T03:13:13Z 2020-02-15T06:59:55Z +13449 499 2 10333 0.99 2005-08-01T04:58:32Z 2020-02-15T06:59:55Z +13450 499 2 10497 2.99 2005-08-01T10:55:59Z 2020-02-15T06:59:55Z +13451 499 1 11513 7.99 2005-08-16T23:51:33Z 2020-02-15T06:59:55Z +13452 499 2 11606 0.99 2005-08-17T03:32:43Z 2020-02-15T06:59:55Z +13453 499 2 11978 4.99 2005-08-17T18:02:10Z 2020-02-15T06:59:55Z +13454 499 1 12004 8.99 2005-08-17T18:56:53Z 2020-02-15T06:59:55Z +13455 499 1 12354 7.99 2005-08-18T07:34:07Z 2020-02-15T06:59:55Z +13456 499 1 12436 3.99 2005-08-18T10:41:05Z 2020-02-15T06:59:55Z +13457 499 1 12587 1.99 2005-08-18T16:03:13Z 2020-02-15T06:59:55Z +13458 499 2 12947 4.99 2005-08-19T05:54:21Z 2020-02-15T06:59:55Z +13459 499 2 13822 3.99 2005-08-20T13:39:28Z 2020-02-15T06:59:55Z +13460 499 1 14858 3.99 2005-08-22T02:46:18Z 2020-02-15T06:59:55Z +13461 499 1 15587 7.99 2005-08-23T06:00:28Z 2020-02-15T06:59:55Z +13462 500 1 112 8.99 2005-05-25T18:57:24Z 2020-02-15T06:59:55Z +13463 500 1 389 8.99 2005-05-27T10:45:41Z 2020-02-15T06:59:55Z +13464 500 1 610 0.99 2005-05-28T15:15:25Z 2020-02-15T06:59:55Z +13465 500 1 1375 5.99 2005-06-15T14:54:56Z 2020-02-15T06:59:55Z +13466 500 2 1388 5.99 2005-06-15T15:48:41Z 2020-02-15T06:59:55Z +13467 500 2 2189 3.99 2005-06-18T01:20:26Z 2020-02-15T06:59:55Z +13468 500 2 2526 6.99 2005-06-19T01:03:07Z 2020-02-15T06:59:55Z +13469 500 1 2996 2.99 2005-06-20T09:20:29Z 2020-02-15T06:59:55Z +13470 500 2 3926 4.99 2005-07-06T20:42:35Z 2020-02-15T06:59:55Z +13471 500 1 4561 0.99 2005-07-08T05:02:43Z 2020-02-15T06:59:55Z +13472 500 2 4790 4.99 2005-07-08T16:25:27Z 2020-02-15T06:59:55Z +13473 500 2 6018 4.99 2005-07-11T02:06:36Z 2020-02-15T06:59:55Z +13474 500 2 6187 2.99 2005-07-11T11:28:51Z 2020-02-15T06:59:55Z +13475 500 2 6801 3.99 2005-07-12T17:09:08Z 2020-02-15T06:59:55Z +13476 500 1 7857 0.99 2005-07-28T09:49:40Z 2020-02-15T06:59:55Z +13477 500 1 7925 2.99 2005-07-28T12:10:02Z 2020-02-15T06:59:55Z +13478 500 1 8538 6.99 2005-07-29T10:45:17Z 2020-02-15T06:59:55Z +13479 500 1 8925 0.99 2005-07-30T02:09:14Z 2020-02-15T06:59:55Z +13480 500 2 9290 3.99 2005-07-30T15:59:08Z 2020-02-15T06:59:55Z +13481 500 1 10947 6.99 2005-08-02T03:23:17Z 2020-02-15T06:59:55Z +13482 500 2 11218 1.99 2005-08-02T12:29:12Z 2020-02-15T06:59:55Z +13483 500 1 12639 2.99 2005-08-18T18:13:05Z 2020-02-15T06:59:55Z +13484 500 2 12813 2.99 2005-08-19T00:54:22Z 2020-02-15T06:59:55Z +13485 500 2 13628 4.99 2005-08-20T07:03:53Z 2020-02-15T06:59:55Z +13486 500 1 14407 0.99 2005-08-21T10:46:51Z 2020-02-15T06:59:55Z +13487 500 1 14964 4.99 2005-08-22T06:39:24Z 2020-02-15T06:59:55Z +13488 500 1 15584 2.99 2005-08-23T05:49:21Z 2020-02-15T06:59:55Z +13489 500 1 15853 2.99 2005-08-23T15:54:20Z 2020-02-15T06:59:55Z +13490 501 1 493 0.99 2005-05-28T00:34:11Z 2020-02-15T06:59:55Z +13491 501 1 605 1.99 2005-05-28T14:39:10Z 2020-02-15T06:59:55Z +13492 501 2 3222 5.99 2005-06-21T01:50:29Z 2020-02-15T06:59:55Z +13493 501 1 3412 7.99 2005-06-21T16:44:31Z 2020-02-15T06:59:55Z +13494 501 2 3541 6.99 2005-07-06T01:50:11Z 2020-02-15T06:59:55Z +13495 501 2 3723 6.99 2005-07-06T11:12:02Z 2020-02-15T06:59:55Z +13496 501 2 4769 2.99 2005-07-08T15:29:16Z 2020-02-15T06:59:55Z +13497 501 2 5520 1.99 2005-07-10T01:30:41Z 2020-02-15T06:59:55Z +13498 501 2 6095 7.99 2005-07-11T06:06:41Z 2020-02-15T06:59:55Z +13499 501 1 7456 0.99 2005-07-27T18:34:53Z 2020-02-15T06:59:55Z +13500 501 1 8021 2.99 2005-07-28T15:45:24Z 2020-02-15T06:59:55Z +13501 501 2 8529 2.99 2005-07-29T10:24:31Z 2020-02-15T06:59:55Z +13502 501 1 9359 2.99 2005-07-30T18:39:28Z 2020-02-15T06:59:55Z +13503 501 1 10817 4.99 2005-08-01T22:51:08Z 2020-02-15T06:59:55Z +13504 501 2 11393 4.99 2005-08-02T18:44:29Z 2020-02-15T06:59:55Z +13505 501 1 11640 1.99 2005-08-17T04:44:33Z 2020-02-15T06:59:55Z +13506 501 2 11799 6.99 2005-08-17T11:25:25Z 2020-02-15T06:59:55Z +13507 501 1 12914 4.99 2005-08-19T04:25:59Z 2020-02-15T06:59:55Z +13508 501 2 13889 0.99 2005-08-20T15:40:06Z 2020-02-15T06:59:55Z +13509 501 1 15239 4.99 2005-08-22T17:46:17Z 2020-02-15T06:59:55Z +13510 501 1 15699 5.99 2005-08-23T10:20:35Z 2020-02-15T06:59:55Z +13511 502 2 258 2.99 2005-05-26T15:28:14Z 2020-02-15T06:59:55Z +13512 502 1 861 0.99 2005-05-30T02:48:32Z 2020-02-15T06:59:55Z +13513 502 1 893 2.99 2005-05-30T08:06:59Z 2020-02-15T06:59:55Z +13514 502 2 965 0.99 2005-05-30T19:00:14Z 2020-02-15T06:59:55Z +13515 502 2 1696 7.99 2005-06-16T12:50:01Z 2020-02-15T06:59:55Z +13516 502 2 2420 0.99 2005-06-18T17:22:28Z 2020-02-15T06:59:55Z +13517 502 1 2911 0.99 2005-06-20T03:32:37Z 2020-02-15T06:59:55Z +13518 502 2 3614 2.99 2005-07-06T05:46:05Z 2020-02-15T06:59:55Z +13519 502 1 4606 2.99 2005-07-08T07:05:50Z 2020-02-15T06:59:55Z +13520 502 2 5368 5.99 2005-07-09T18:41:59Z 2020-02-15T06:59:55Z +13521 502 2 5662 2.99 2005-07-10T07:59:24Z 2020-02-15T06:59:55Z +13522 502 2 6414 7.99 2005-07-11T23:26:13Z 2020-02-15T06:59:55Z +13523 502 1 6760 8.99 2005-07-12T15:16:00Z 2020-02-15T06:59:55Z +13524 502 2 6828 2.99 2005-07-12T18:38:51Z 2020-02-15T06:59:55Z +13525 502 2 6924 8.99 2005-07-26T22:51:53Z 2020-02-15T06:59:55Z +13526 502 2 7213 3.99 2005-07-27T09:22:29Z 2020-02-15T06:59:55Z +13527 502 1 7255 4.99 2005-07-27T10:49:54Z 2020-02-15T06:59:55Z +13528 502 1 7757 4.99 2005-07-28T06:23:00Z 2020-02-15T06:59:55Z +13529 502 1 7884 4.99 2005-07-28T10:37:24Z 2020-02-15T06:59:55Z +13530 502 2 8034 4.99 2005-07-28T16:20:26Z 2020-02-15T06:59:55Z +13531 502 2 9232 0.99 2005-07-30T13:43:00Z 2020-02-15T06:59:55Z +13532 502 1 9599 4.99 2005-07-31T03:32:06Z 2020-02-15T06:59:55Z +13533 502 2 10390 4.99 2005-08-01T06:46:48Z 2020-02-15T06:59:55Z +13534 502 1 10938 0.99 2005-08-02T03:05:22Z 2020-02-15T06:59:55Z +13535 502 2 11036 4.99 2005-08-02T05:56:29Z 2020-02-15T06:59:55Z +13536 502 1 11301 0.99 2005-08-02T15:37:59Z 2020-02-15T06:59:55Z +13537 502 1 11317 4.99 2005-08-02T16:08:52Z 2020-02-15T06:59:55Z +13538 502 1 11435 0.99 2005-08-02T20:14:23Z 2020-02-15T06:59:55Z +13539 502 1 11620 0.99 2005-08-17T04:06:22Z 2020-02-15T06:59:55Z +13540 502 1 12762 4.99 2005-08-18T23:06:54Z 2020-02-15T06:59:55Z +13541 502 1 13052 9.99 2005-08-19T09:31:42Z 2020-02-15T06:59:55Z +13542 502 1 14411 4.99 2005-08-21T10:54:57Z 2020-02-15T06:59:55Z +13543 502 1 15486 3.99 2005-08-23T02:05:20Z 2020-02-15T06:59:55Z +13544 502 1 16034 3.99 2005-08-23T22:06:34Z 2020-02-15T06:59:55Z +13545 503 2 109 1.99 2005-05-25T18:40:20Z 2020-02-15T06:59:55Z +13546 503 1 353 5.99 2005-05-27T06:03:39Z 2020-02-15T06:59:55Z +13547 503 1 631 2.99 2005-05-28T17:36:32Z 2020-02-15T06:59:55Z +13548 503 1 1074 4.99 2005-05-31T10:04:42Z 2020-02-15T06:59:55Z +13549 503 2 2108 4.99 2005-06-17T19:35:26Z 2020-02-15T06:59:55Z +13550 503 1 2225 2.99 2005-06-18T03:35:40Z 2020-02-15T06:59:55Z +13551 503 2 3430 0.99 2005-06-21T18:46:08Z 2020-02-15T06:59:55Z +13552 503 2 3935 6.99 2005-07-06T21:08:29Z 2020-02-15T06:59:55Z +13553 503 2 4570 2.99 2005-07-08T05:33:59Z 2020-02-15T06:59:55Z +13554 503 2 5465 2.99 2005-07-09T23:01:13Z 2020-02-15T06:59:55Z +13555 503 1 5925 6.99 2005-07-10T21:41:27Z 2020-02-15T06:59:55Z +13556 503 1 6166 4.99 2005-07-11T10:19:05Z 2020-02-15T06:59:55Z +13557 503 1 6529 2.99 2005-07-12T04:31:04Z 2020-02-15T06:59:55Z +13558 503 2 6950 4.99 2005-07-26T23:45:33Z 2020-02-15T06:59:55Z +13559 503 1 8178 2.99 2005-07-28T21:54:31Z 2020-02-15T06:59:55Z +13560 503 2 9725 0.99 2005-07-31T08:35:18Z 2020-02-15T06:59:55Z +13561 503 1 9974 4.99 2005-07-31T16:51:11Z 2020-02-15T06:59:55Z +13562 503 2 11075 2.99 2005-08-02T07:24:23Z 2020-02-15T06:59:55Z +13563 503 1 11161 1.99 2005-08-02T10:05:57Z 2020-02-15T06:59:55Z +13564 503 1 11858 4.99 2005-08-17T13:50:31Z 2020-02-15T06:59:55Z +13565 503 2 12370 2.99 2005-08-18T07:57:47Z 2020-02-15T06:59:55Z +13566 503 2 12783 4.99 2005-08-19T00:01:14Z 2020-02-15T06:59:55Z +13567 503 1 13332 2.99 2005-08-19T20:00:51Z 2020-02-15T06:59:55Z +13568 503 1 13551 2.99 2005-08-20T04:00:30Z 2020-02-15T06:59:55Z +13569 503 1 14823 0.99 2005-08-22T01:24:42Z 2020-02-15T06:59:55Z +13570 503 1 14913 2.99 2005-08-22T04:52:13Z 2020-02-15T06:59:55Z +13571 503 2 15056 4.99 2005-08-22T10:15:54Z 2020-02-15T06:59:55Z +13572 503 2 15077 2.99 2005-08-22T11:09:18Z 2020-02-15T06:59:55Z +13573 503 1 15588 3.99 2005-08-23T06:02:35Z 2020-02-15T06:59:55Z +13574 503 1 15692 4.99 2005-08-23T10:00:02Z 2020-02-15T06:59:55Z +13575 503 1 15726 2.99 2005-08-23T11:28:26Z 2020-02-15T06:59:55Z +13576 503 1 15797 0.99 2005-08-23T14:13:47Z 2020-02-15T06:59:55Z +13577 504 2 136 5.99 2005-05-25T22:02:30Z 2020-02-15T06:59:55Z +13578 504 2 470 4.99 2005-05-27T21:17:08Z 2020-02-15T06:59:55Z +13579 504 1 838 4.99 2005-05-30T00:27:57Z 2020-02-15T06:59:55Z +13580 504 1 2720 1.99 2005-06-19T14:51:55Z 2020-02-15T06:59:55Z +13581 504 1 2938 6.99 2005-06-20T05:17:22Z 2020-02-15T06:59:55Z +13582 504 2 3712 9.99 2005-07-06T10:47:35Z 2020-02-15T06:59:55Z +13583 504 1 3713 6.99 2005-07-06T10:49:30Z 2020-02-15T06:59:55Z +13584 504 1 4329 5.99 2005-07-07T18:04:16Z 2020-02-15T06:59:55Z +13585 504 1 4757 0.99 2005-07-08T14:36:51Z 2020-02-15T06:59:55Z +13586 504 2 5153 6.99 2005-07-09T08:35:05Z 2020-02-15T06:59:55Z +13587 504 2 7342 3.99 2005-07-27T14:25:17Z 2020-02-15T06:59:55Z +13588 504 1 7567 2.99 2005-07-27T22:38:05Z 2020-02-15T06:59:55Z +13589 504 2 7807 2.99 2005-07-28T07:58:27Z 2020-02-15T06:59:55Z +13590 504 2 7875 1.99 2005-07-28T10:23:48Z 2020-02-15T06:59:55Z +13591 504 2 7944 4.99 2005-07-28T12:51:22Z 2020-02-15T06:59:55Z +13592 504 1 8393 9.99 2005-07-29T06:02:11Z 2020-02-15T06:59:55Z +13593 504 2 10397 0.99 2005-08-01T07:11:27Z 2020-02-15T06:59:55Z +13594 504 2 10509 3.99 2005-08-01T11:25:28Z 2020-02-15T06:59:55Z +13595 504 2 11569 2.99 2005-08-17T01:31:04Z 2020-02-15T06:59:55Z +13596 504 1 12769 1.99 2005-08-18T23:26:40Z 2020-02-15T06:59:55Z +13597 504 1 13166 2.99 2005-08-19T13:36:28Z 2020-02-15T06:59:55Z +13598 504 2 13206 2.99 2005-08-19T15:05:34Z 2020-02-15T06:59:55Z +13599 504 2 13387 2.99 2005-08-19T21:46:10Z 2020-02-15T06:59:55Z +13600 504 2 13859 5.99 2005-08-20T14:53:43Z 2020-02-15T06:59:55Z +13601 504 2 15018 4.99 2005-08-22T08:52:38Z 2020-02-15T06:59:55Z +13602 504 1 15166 6.99 2005-08-22T15:05:37Z 2020-02-15T06:59:55Z +13603 504 1 15723 8.99 2005-08-23T11:17:26Z 2020-02-15T06:59:55Z +13604 504 2 16022 4.99 2005-08-23T21:44:27Z 2020-02-15T06:59:55Z +13605 505 1 159 2.99 2005-05-26T01:34:28Z 2020-02-15T06:59:55Z +13606 505 1 645 2.99 2005-05-28T19:14:09Z 2020-02-15T06:59:55Z +13607 505 2 1799 5.99 2005-06-16T20:17:20Z 2020-02-15T06:59:55Z +13608 505 2 1886 4.99 2005-06-17T03:36:02Z 2020-02-15T06:59:55Z +13609 505 1 2773 7.99 2005-06-19T18:04:18Z 2020-02-15T06:59:55Z +13610 505 1 3137 5.99 2005-06-20T19:41:28Z 2020-02-15T06:59:55Z +13611 505 2 4008 5.99 2005-07-07T00:26:43Z 2020-02-15T06:59:55Z +13612 505 1 4507 6.99 2005-07-08T02:22:45Z 2020-02-15T06:59:55Z +13613 505 2 5976 9.99 2005-07-11T00:16:35Z 2020-02-15T06:59:55Z +13614 505 2 6292 4.99 2005-07-11T17:23:33Z 2020-02-15T06:59:55Z +13615 505 1 6441 0.99 2005-07-12T00:27:08Z 2020-02-15T06:59:55Z +13616 505 1 7784 4.99 2005-07-28T07:15:32Z 2020-02-15T06:59:55Z +13617 505 2 10219 5.99 2005-08-01T01:10:33Z 2020-02-15T06:59:55Z +13618 505 1 10896 2.99 2005-08-02T01:19:33Z 2020-02-15T06:59:55Z +13619 505 1 11163 0.99 2005-08-02T10:08:40Z 2020-02-15T06:59:55Z +13620 505 1 11907 2.99 2005-08-17T15:40:47Z 2020-02-15T06:59:55Z +13621 505 2 13612 3.99 2005-08-20T06:22:08Z 2020-02-15T06:59:55Z +13622 505 1 14398 2.99 2005-08-21T10:27:21Z 2020-02-15T06:59:55Z +13623 505 1 14802 2.99 2005-08-22T00:48:23Z 2020-02-15T06:59:55Z +13624 505 1 15436 4.99 2005-08-23T00:30:26Z 2020-02-15T06:59:55Z +13625 505 2 15867 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13626 506 1 114 3.99 2005-05-25T19:12:42Z 2020-02-15T06:59:55Z +13627 506 2 387 2.99 2005-05-27T10:35:27Z 2020-02-15T06:59:55Z +13628 506 2 410 3.99 2005-05-27T14:11:22Z 2020-02-15T06:59:55Z +13629 506 1 547 8.99 2005-05-28T07:24:28Z 2020-02-15T06:59:55Z +13630 506 2 907 0.99 2005-05-30T10:37:27Z 2020-02-15T06:59:55Z +13631 506 1 1042 2.99 2005-05-31T05:53:00Z 2020-02-15T06:59:55Z +13632 506 2 1153 4.99 2005-05-31T21:36:44Z 2020-02-15T06:59:55Z +13633 506 1 1446 6.99 2005-06-15T19:13:45Z 2020-02-15T06:59:55Z +13634 506 1 1467 2.99 2005-06-15T20:47:10Z 2020-02-15T06:59:55Z +13635 506 2 1565 0.99 2005-06-16T03:13:09Z 2020-02-15T06:59:55Z +13636 506 1 2755 9.99 2005-06-19T16:56:31Z 2020-02-15T06:59:55Z +13637 506 2 2824 6.99 2005-06-19T20:31:45Z 2020-02-15T06:59:55Z +13638 506 2 4594 7.99 2005-07-08T06:40:06Z 2020-02-15T06:59:55Z +13639 506 2 4640 6.99 2005-07-08T08:59:34Z 2020-02-15T06:59:55Z +13640 506 2 4806 8.99 2005-07-08T17:01:02Z 2020-02-15T06:59:55Z +13641 506 2 5985 0.99 2005-07-11T00:51:58Z 2020-02-15T06:59:55Z +13642 506 1 6783 2.99 2005-07-12T16:27:56Z 2020-02-15T06:59:55Z +13643 506 1 7020 0.99 2005-07-27T02:24:27Z 2020-02-15T06:59:55Z +13644 506 2 8096 9.99 2005-07-28T18:32:46Z 2020-02-15T06:59:55Z +13645 506 2 8506 0.99 2005-07-29T09:23:52Z 2020-02-15T06:59:55Z +13646 506 2 9654 3.99 2005-07-31T05:57:42Z 2020-02-15T06:59:55Z +13647 506 2 9972 2.99 2005-07-31T16:42:43Z 2020-02-15T06:59:55Z +13648 506 1 10477 2.99 2005-08-01T10:04:17Z 2020-02-15T06:59:55Z +13649 506 1 10873 4.99 2005-08-02T00:30:34Z 2020-02-15T06:59:55Z +13650 506 2 11238 0.99 2005-08-02T13:25:50Z 2020-02-15T06:59:55Z +13651 506 2 11781 4.99 2005-08-17T10:37:00Z 2020-02-15T06:59:55Z +13652 506 1 12994 0.99 2005-08-19T07:26:10Z 2020-02-15T06:59:55Z +13653 506 2 13073 2.99 2005-08-19T10:05:38Z 2020-02-15T06:59:55Z +13654 506 2 13767 0.99 2005-08-20T11:43:36Z 2020-02-15T06:59:55Z +13655 506 1 14074 1.99 2005-08-20T23:16:07Z 2020-02-15T06:59:55Z +13656 506 1 14337 2.99 2005-08-21T08:34:26Z 2020-02-15T06:59:55Z +13657 506 2 14395 6.99 2005-08-21T10:24:00Z 2020-02-15T06:59:55Z +13658 506 2 15022 5.99 2005-08-22T08:55:43Z 2020-02-15T06:59:55Z +13659 506 2 15572 1.99 2005-08-23T05:28:01Z 2020-02-15T06:59:55Z +13660 506 1 15694 9.99 2005-08-23T10:02:46Z 2020-02-15T06:59:55Z +13661 507 1 52 0.99 2005-05-25T06:51:29Z 2020-02-15T06:59:55Z +13662 507 2 713 4.99 2005-05-29T04:10:17Z 2020-02-15T06:59:55Z +13663 507 2 1307 4.99 2005-06-15T10:06:15Z 2020-02-15T06:59:55Z +13664 507 1 2143 4.99 2005-06-17T21:58:13Z 2020-02-15T06:59:55Z +13665 507 2 2283 4.99 2005-06-18T06:56:06Z 2020-02-15T06:59:55Z +13666 507 1 3660 4.99 2005-07-06T08:07:29Z 2020-02-15T06:59:55Z +13667 507 1 3880 2.99 2005-07-06T18:32:49Z 2020-02-15T06:59:55Z +13668 507 2 4440 0.99 2005-07-07T23:00:58Z 2020-02-15T06:59:55Z +13669 507 2 4455 2.99 2005-07-07T23:43:46Z 2020-02-15T06:59:55Z +13670 507 2 4744 0.99 2005-07-08T13:43:57Z 2020-02-15T06:59:55Z +13671 507 2 4901 2.99 2005-07-08T20:44:51Z 2020-02-15T06:59:55Z +13672 507 1 5962 0.99 2005-07-10T23:45:22Z 2020-02-15T06:59:55Z +13673 507 1 6351 6.99 2005-07-11T20:31:44Z 2020-02-15T06:59:55Z +13674 507 1 6396 1.99 2005-07-11T22:31:08Z 2020-02-15T06:59:55Z +13675 507 1 6891 2.99 2005-07-12T21:07:35Z 2020-02-15T06:59:55Z +13676 507 2 7770 5.99 2005-07-28T06:49:35Z 2020-02-15T06:59:55Z +13677 507 1 7970 5.99 2005-07-28T13:58:38Z 2020-02-15T06:59:55Z +13678 507 2 8369 2.99 2005-07-29T05:15:42Z 2020-02-15T06:59:55Z +13679 507 2 8976 2.99 2005-07-30T04:12:32Z 2020-02-15T06:59:55Z +13680 507 1 9003 2.99 2005-07-30T05:02:52Z 2020-02-15T06:59:55Z +13681 507 2 12071 6.99 2005-08-17T21:49:14Z 2020-02-15T06:59:55Z +13682 507 2 12275 4.99 2005-08-18T04:42:02Z 2020-02-15T06:59:55Z +13683 507 1 12343 4.99 2005-08-18T07:15:13Z 2020-02-15T06:59:55Z +13684 507 2 14625 4.99 2005-08-21T18:34:21Z 2020-02-15T06:59:55Z +13685 507 1 15394 2.99 2005-08-22T23:04:21Z 2020-02-15T06:59:55Z +13686 508 1 369 2.99 2005-05-27T07:46:49Z 2020-02-15T06:59:55Z +13687 508 2 921 2.99 2005-05-30T11:53:09Z 2020-02-15T06:59:55Z +13688 508 2 1661 4.99 2005-06-16T10:12:57Z 2020-02-15T06:59:55Z +13689 508 2 5657 9.99 2005-07-10T07:33:43Z 2020-02-15T06:59:55Z +13690 508 2 5978 6.99 2005-07-11T00:16:54Z 2020-02-15T06:59:55Z +13691 508 1 6101 4.99 2005-07-11T06:50:33Z 2020-02-15T06:59:55Z +13692 508 2 6646 0.99 2005-07-12T10:41:34Z 2020-02-15T06:59:55Z +13693 508 2 6929 8.99 2005-07-26T22:59:19Z 2020-02-15T06:59:55Z +13694 508 1 7283 5.99 2005-07-27T12:02:41Z 2020-02-15T06:59:55Z +13695 508 2 7322 3.99 2005-07-27T13:37:26Z 2020-02-15T06:59:55Z +13696 508 2 7327 7.99 2005-07-27T13:53:26Z 2020-02-15T06:59:55Z +13697 508 2 7668 2.99 2005-07-28T02:41:31Z 2020-02-15T06:59:55Z +13698 508 2 7676 4.99 2005-07-28T02:55:27Z 2020-02-15T06:59:55Z +13699 508 2 8191 4.99 2005-07-28T22:47:14Z 2020-02-15T06:59:55Z +13700 508 2 9694 5.99 2005-07-31T07:13:16Z 2020-02-15T06:59:55Z +13701 508 1 9706 2.99 2005-07-31T07:43:19Z 2020-02-15T06:59:55Z +13702 508 2 10128 2.99 2005-07-31T21:40:04Z 2020-02-15T06:59:55Z +13703 508 1 10746 8.99 2005-08-01T19:58:49Z 2020-02-15T06:59:55Z +13704 508 1 11365 2.99 2005-08-02T18:00:09Z 2020-02-15T06:59:55Z +13705 508 2 11447 6.99 2005-08-02T20:36:25Z 2020-02-15T06:59:55Z +13706 508 1 13095 6.99 2005-08-19T10:48:10Z 2020-02-15T06:59:55Z +13707 508 2 13201 2.99 2005-08-19T14:56:05Z 2020-02-15T06:59:55Z +13708 508 1 15010 6.99 2005-08-22T08:30:17Z 2020-02-15T06:59:55Z +13709 508 1 15195 4.99 2005-08-22T16:08:23Z 2020-02-15T06:59:55Z +13710 508 1 14318 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13711 509 1 22 4.99 2005-05-25T02:19:23Z 2020-02-15T06:59:55Z +13712 509 1 831 8.99 2005-05-29T22:50:25Z 2020-02-15T06:59:55Z +13713 509 1 1267 2.99 2005-06-15T07:21:21Z 2020-02-15T06:59:55Z +13714 509 2 2919 4.99 2005-06-20T04:10:16Z 2020-02-15T06:59:55Z +13715 509 2 4139 1.99 2005-07-07T08:17:35Z 2020-02-15T06:59:55Z +13716 509 2 4266 4.99 2005-07-07T14:34:50Z 2020-02-15T06:59:55Z +13717 509 2 4832 2.99 2005-07-08T18:07:05Z 2020-02-15T06:59:55Z +13718 509 2 5008 2.99 2005-07-09T01:31:42Z 2020-02-15T06:59:55Z +13719 509 1 6591 5.99 2005-07-12T07:13:46Z 2020-02-15T06:59:55Z +13720 509 1 7848 6.99 2005-07-28T09:24:31Z 2020-02-15T06:59:55Z +13721 509 1 8114 8.99 2005-07-28T19:14:06Z 2020-02-15T06:59:55Z +13722 509 1 8214 5.99 2005-07-28T23:37:57Z 2020-02-15T06:59:55Z +13723 509 2 8240 0.99 2005-07-29T00:33:32Z 2020-02-15T06:59:55Z +13724 509 1 10189 4.99 2005-08-01T00:25:00Z 2020-02-15T06:59:55Z +13725 509 2 10988 5.99 2005-08-02T04:38:17Z 2020-02-15T06:59:55Z +13726 509 1 11814 6.99 2005-08-17T12:09:20Z 2020-02-15T06:59:55Z +13727 509 2 12109 4.99 2005-08-17T22:58:35Z 2020-02-15T06:59:55Z +13728 509 2 14045 4.99 2005-08-20T21:50:11Z 2020-02-15T06:59:55Z +13729 509 2 14994 5.99 2005-08-22T07:52:24Z 2020-02-15T06:59:55Z +13730 509 1 15965 2.99 2005-08-23T19:46:39Z 2020-02-15T06:59:55Z +13731 510 1 75 8.99 2005-05-25T11:13:34Z 2020-02-15T06:59:55Z +13732 510 1 372 5.99 2005-05-27T08:13:58Z 2020-02-15T06:59:55Z +13733 510 2 1118 4.99 2005-05-31T16:23:02Z 2020-02-15T06:59:55Z +13734 510 2 1435 5.99 2005-06-15T18:32:30Z 2020-02-15T06:59:55Z +13735 510 2 1757 0.99 2005-06-16T17:32:24Z 2020-02-15T06:59:55Z +13736 510 2 1925 0.99 2005-06-17T06:16:47Z 2020-02-15T06:59:55Z +13737 510 1 2729 8.99 2005-06-19T15:06:15Z 2020-02-15T06:59:55Z +13738 510 2 2806 0.99 2005-06-19T19:30:48Z 2020-02-15T06:59:55Z +13739 510 2 2817 0.99 2005-06-19T20:05:22Z 2020-02-15T06:59:55Z +13740 510 2 3352 8.99 2005-06-21T11:26:29Z 2020-02-15T06:59:55Z +13741 510 2 3465 5.99 2005-06-21T22:10:01Z 2020-02-15T06:59:55Z +13742 510 2 3744 2.99 2005-07-06T12:10:02Z 2020-02-15T06:59:55Z +13743 510 1 4014 4.99 2005-07-07T00:58:54Z 2020-02-15T06:59:55Z +13744 510 2 5851 4.99 2005-07-10T17:40:47Z 2020-02-15T06:59:55Z +13745 510 1 6531 1.99 2005-07-12T04:35:24Z 2020-02-15T06:59:55Z +13746 510 1 7457 2.99 2005-07-27T18:35:17Z 2020-02-15T06:59:55Z +13747 510 1 7678 8.99 2005-07-28T02:58:16Z 2020-02-15T06:59:55Z +13748 510 2 7794 9.99 2005-07-28T07:28:03Z 2020-02-15T06:59:55Z +13749 510 2 8763 3.99 2005-07-29T19:38:24Z 2020-02-15T06:59:55Z +13750 510 1 8926 4.99 2005-07-30T02:10:31Z 2020-02-15T06:59:55Z +13751 510 1 10131 0.99 2005-07-31T21:45:28Z 2020-02-15T06:59:55Z +13752 510 2 10265 7.99 2005-08-01T03:05:04Z 2020-02-15T06:59:55Z +13753 510 2 11996 4.99 2005-08-17T18:34:37Z 2020-02-15T06:59:55Z +13754 510 1 12317 0.99 2005-08-18T06:17:06Z 2020-02-15T06:59:55Z +13755 510 2 12406 2.99 2005-08-18T09:38:02Z 2020-02-15T06:59:55Z +13756 510 1 15065 4.99 2005-08-22T10:46:44Z 2020-02-15T06:59:55Z +13757 511 1 56 2.99 2005-05-25T08:28:11Z 2020-02-15T06:59:55Z +13758 511 1 819 3.99 2005-05-29T21:00:32Z 2020-02-15T06:59:55Z +13759 511 2 1281 2.99 2005-06-15T08:21:39Z 2020-02-15T06:59:55Z +13760 511 1 1508 2.99 2005-06-15T22:33:24Z 2020-02-15T06:59:55Z +13761 511 2 2966 10.99 2005-06-20T07:39:33Z 2020-02-15T06:59:55Z +13762 511 2 3366 4.99 2005-06-21T13:03:37Z 2020-02-15T06:59:55Z +13763 511 2 3600 4.99 2005-07-06T05:19:42Z 2020-02-15T06:59:55Z +13764 511 1 3852 0.99 2005-07-06T16:57:49Z 2020-02-15T06:59:55Z +13765 511 1 4482 4.99 2005-07-08T01:01:18Z 2020-02-15T06:59:55Z +13766 511 2 5164 3.99 2005-07-09T09:03:14Z 2020-02-15T06:59:55Z +13767 511 1 5601 0.99 2005-07-10T04:56:55Z 2020-02-15T06:59:55Z +13768 511 2 6040 0.99 2005-07-11T03:14:26Z 2020-02-15T06:59:55Z +13769 511 1 6320 0.99 2005-07-11T18:50:55Z 2020-02-15T06:59:55Z +13770 511 1 8026 4.99 2005-07-28T16:05:38Z 2020-02-15T06:59:55Z +13771 511 1 9095 0.99 2005-07-30T08:38:36Z 2020-02-15T06:59:55Z +13772 511 1 9143 6.99 2005-07-30T10:22:11Z 2020-02-15T06:59:55Z +13773 511 1 9760 4.99 2005-07-31T09:29:33Z 2020-02-15T06:59:55Z +13774 511 1 10231 2.99 2005-08-01T01:50:49Z 2020-02-15T06:59:55Z +13775 511 2 10429 2.99 2005-08-01T08:34:18Z 2020-02-15T06:59:55Z +13776 511 2 12110 6.99 2005-08-17T22:59:46Z 2020-02-15T06:59:55Z +13777 511 1 12920 4.99 2005-08-19T04:32:32Z 2020-02-15T06:59:55Z +13778 511 1 14213 4.99 2005-08-21T04:30:47Z 2020-02-15T06:59:56Z +13779 511 1 14302 6.99 2005-08-21T07:19:57Z 2020-02-15T06:59:56Z +13780 511 1 15172 4.99 2005-08-22T15:25:33Z 2020-02-15T06:59:56Z +13781 512 1 1176 6.99 2005-06-15T00:28:37Z 2020-02-15T06:59:56Z +13782 512 2 2029 4.99 2005-06-17T13:10:59Z 2020-02-15T06:59:56Z +13783 512 1 2364 2.99 2005-06-18T13:37:32Z 2020-02-15T06:59:56Z +13784 512 1 4752 5.99 2005-07-08T14:15:20Z 2020-02-15T06:59:56Z +13785 512 1 4799 0.99 2005-07-08T16:49:27Z 2020-02-15T06:59:56Z +13786 512 1 5064 6.99 2005-07-09T04:38:51Z 2020-02-15T06:59:56Z +13787 512 2 5813 3.99 2005-07-10T15:34:37Z 2020-02-15T06:59:56Z +13788 512 1 7219 2.99 2005-07-27T09:35:36Z 2020-02-15T06:59:56Z +13789 512 1 7507 0.99 2005-07-27T20:31:48Z 2020-02-15T06:59:56Z +13790 512 1 7715 6.99 2005-07-28T04:32:38Z 2020-02-15T06:59:56Z +13791 512 2 8868 4.99 2005-07-30T00:02:26Z 2020-02-15T06:59:56Z +13792 512 1 9055 2.99 2005-07-30T07:13:07Z 2020-02-15T06:59:56Z +13793 512 2 10232 4.99 2005-08-01T01:50:55Z 2020-02-15T06:59:56Z +13794 512 2 10670 3.99 2005-08-01T17:07:16Z 2020-02-15T06:59:56Z +13795 512 2 11818 9.99 2005-08-17T12:22:04Z 2020-02-15T06:59:56Z +13796 512 2 12957 8.99 2005-08-19T06:12:44Z 2020-02-15T06:59:56Z +13797 512 2 13156 4.99 2005-08-19T13:10:42Z 2020-02-15T06:59:56Z +13798 512 2 13771 0.99 2005-08-20T11:47:21Z 2020-02-15T06:59:56Z +13799 512 1 14288 4.99 2005-08-21T06:57:34Z 2020-02-15T06:59:56Z +13800 512 1 14870 2.99 2005-08-22T03:23:20Z 2020-02-15T06:59:56Z +13801 512 1 15153 2.99 2005-08-22T14:26:01Z 2020-02-15T06:59:56Z +13802 512 2 15265 3.99 2005-08-22T18:35:59Z 2020-02-15T06:59:56Z +13803 512 1 15317 3.99 2005-08-22T20:14:13Z 2020-02-15T06:59:56Z +13804 512 2 15733 4.99 2005-08-23T11:37:32Z 2020-02-15T06:59:56Z +13805 512 2 15990 4.99 2005-08-23T20:25:11Z 2020-02-15T06:59:56Z +13806 512 1 12786 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +13807 513 2 993 4.99 2005-05-30T23:54:19Z 2020-02-15T06:59:56Z +13808 513 1 1607 2.99 2005-06-16T06:25:35Z 2020-02-15T06:59:56Z +13809 513 2 2290 7.99 2005-06-18T07:34:37Z 2020-02-15T06:59:56Z +13810 513 2 2737 1.99 2005-06-19T15:48:33Z 2020-02-15T06:59:56Z +13811 513 2 3872 0.99 2005-07-06T18:00:19Z 2020-02-15T06:59:56Z +13812 513 2 4055 2.99 2005-07-07T03:49:13Z 2020-02-15T06:59:56Z +13813 513 2 4178 4.99 2005-07-07T10:14:31Z 2020-02-15T06:59:56Z +13814 513 2 4220 4.99 2005-07-07T12:12:36Z 2020-02-15T06:59:56Z +13815 513 1 5741 7.99 2005-07-10T11:55:40Z 2020-02-15T06:59:56Z +13816 513 1 6027 4.99 2005-07-11T02:26:29Z 2020-02-15T06:59:56Z +13817 513 1 7655 0.99 2005-07-28T02:01:11Z 2020-02-15T06:59:56Z +13818 513 2 8320 4.99 2005-07-29T03:49:58Z 2020-02-15T06:59:56Z +13819 513 1 8350 4.99 2005-07-29T04:50:39Z 2020-02-15T06:59:56Z +13820 513 2 8683 9.99 2005-07-29T16:15:43Z 2020-02-15T06:59:56Z +13821 513 1 8798 5.99 2005-07-29T21:15:38Z 2020-02-15T06:59:56Z +13822 513 2 9862 2.99 2005-07-31T13:05:03Z 2020-02-15T06:59:56Z +13823 513 1 10012 3.99 2005-07-31T18:06:06Z 2020-02-15T06:59:56Z +13824 513 2 11081 2.99 2005-08-02T07:30:14Z 2020-02-15T06:59:56Z +13825 513 1 11165 2.99 2005-08-02T10:12:17Z 2020-02-15T06:59:56Z +13826 513 1 11407 3.99 2005-08-02T19:18:43Z 2020-02-15T06:59:56Z +13827 513 1 11755 3.99 2005-08-17T09:15:35Z 2020-02-15T06:59:56Z +13828 513 1 12559 5.99 2005-08-18T14:53:58Z 2020-02-15T06:59:56Z +13829 513 2 12784 2.99 2005-08-19T00:02:46Z 2020-02-15T06:59:56Z +13830 513 2 12807 4.99 2005-08-19T00:38:46Z 2020-02-15T06:59:56Z +13831 513 1 13596 5.99 2005-08-20T05:58:58Z 2020-02-15T06:59:56Z +13832 513 1 13690 4.99 2005-08-20T09:07:27Z 2020-02-15T06:59:56Z +13833 513 2 14844 7.99 2005-08-22T02:09:12Z 2020-02-15T06:59:56Z +13834 513 1 14875 4.99 2005-08-22T03:34:39Z 2020-02-15T06:59:56Z +13835 513 1 15035 4.99 2005-08-22T09:34:32Z 2020-02-15T06:59:56Z +13836 513 2 15289 6.99 2005-08-22T19:27:24Z 2020-02-15T06:59:56Z +13837 513 2 15545 5.99 2005-08-23T04:20:16Z 2020-02-15T06:59:56Z +13838 514 2 536 4.99 2005-05-28T06:17:33Z 2020-02-15T06:59:56Z +13839 514 2 1692 4.99 2005-06-16T12:30:19Z 2020-02-15T06:59:56Z +13840 514 1 2002 3.99 2005-06-17T11:39:58Z 2020-02-15T06:59:56Z +13841 514 2 2362 0.99 2005-06-18T13:31:15Z 2020-02-15T06:59:56Z +13842 514 1 2789 0.99 2005-06-19T18:48:21Z 2020-02-15T06:59:56Z +13843 514 2 3084 2.99 2005-06-20T15:35:24Z 2020-02-15T06:59:56Z +13844 514 1 3385 0.99 2005-06-21T14:16:48Z 2020-02-15T06:59:56Z +13845 514 2 3668 5.99 2005-07-06T08:36:48Z 2020-02-15T06:59:56Z +13846 514 2 3860 2.99 2005-07-06T17:20:24Z 2020-02-15T06:59:56Z +13847 514 1 7791 4.99 2005-07-28T07:22:51Z 2020-02-15T06:59:56Z +13848 514 1 9038 3.99 2005-07-30T06:23:35Z 2020-02-15T06:59:56Z +13849 514 1 11675 1.99 2005-08-17T05:57:54Z 2020-02-15T06:59:56Z +13850 514 2 12067 4.99 2005-08-17T21:36:47Z 2020-02-15T06:59:56Z +13851 514 1 12293 4.99 2005-08-18T05:13:36Z 2020-02-15T06:59:56Z +13852 514 1 12302 4.99 2005-08-18T05:41:39Z 2020-02-15T06:59:56Z +13853 514 2 12578 0.99 2005-08-18T15:47:11Z 2020-02-15T06:59:56Z +13854 514 1 12752 2.99 2005-08-18T22:33:36Z 2020-02-15T06:59:56Z +13855 514 2 13344 3.99 2005-08-19T20:22:44Z 2020-02-15T06:59:56Z +13856 514 1 14052 0.99 2005-08-20T22:11:46Z 2020-02-15T06:59:56Z +13857 514 1 14386 1.99 2005-08-21T10:06:34Z 2020-02-15T06:59:56Z +13858 514 1 15451 2.99 2005-08-23T00:56:27Z 2020-02-15T06:59:56Z +13859 514 1 15776 5.99 2005-08-23T13:26:01Z 2020-02-15T06:59:56Z +13860 515 2 187 8.99 2005-05-26T05:42:37Z 2020-02-15T06:59:56Z +13861 515 2 292 6.99 2005-05-26T20:22:12Z 2020-02-15T06:59:56Z +13862 515 1 1244 4.99 2005-06-15T05:08:40Z 2020-02-15T06:59:56Z +13863 515 2 1531 5.99 2005-06-16T00:40:34Z 2020-02-15T06:59:56Z +13864 515 2 2003 4.99 2005-06-17T11:40:35Z 2020-02-15T06:59:56Z +13865 515 2 2484 4.99 2005-06-18T21:25:23Z 2020-02-15T06:59:56Z +13866 515 2 2513 0.99 2005-06-18T23:53:15Z 2020-02-15T06:59:56Z +13867 515 2 3063 3.99 2005-06-20T13:52:03Z 2020-02-15T06:59:56Z +13868 515 2 3782 0.99 2005-07-06T13:57:03Z 2020-02-15T06:59:56Z +13869 515 2 4111 6.99 2005-07-07T06:47:56Z 2020-02-15T06:59:56Z +13870 515 2 5216 0.99 2005-07-09T11:54:58Z 2020-02-15T06:59:56Z +13871 515 2 5546 2.99 2005-07-10T02:50:37Z 2020-02-15T06:59:56Z +13872 515 2 5697 4.99 2005-07-10T09:44:44Z 2020-02-15T06:59:56Z +13873 515 2 7429 3.99 2005-07-27T17:24:50Z 2020-02-15T06:59:56Z +13874 515 1 8706 4.99 2005-07-29T17:19:15Z 2020-02-15T06:59:56Z +13875 515 1 10159 4.99 2005-07-31T22:54:30Z 2020-02-15T06:59:56Z +13876 515 2 10716 0.99 2005-08-01T18:53:48Z 2020-02-15T06:59:56Z +13877 515 1 11451 3.99 2005-08-02T20:45:56Z 2020-02-15T06:59:56Z +13878 515 2 11572 4.99 2005-08-17T01:37:55Z 2020-02-15T06:59:56Z +13879 515 1 11691 3.99 2005-08-17T06:51:05Z 2020-02-15T06:59:56Z +13880 515 2 11937 6.99 2005-08-17T16:48:36Z 2020-02-15T06:59:56Z +13881 515 2 12416 2.99 2005-08-18T09:56:48Z 2020-02-15T06:59:56Z +13882 515 1 12486 8.99 2005-08-18T12:42:50Z 2020-02-15T06:59:56Z +13883 515 1 12889 5.99 2005-08-19T03:41:31Z 2020-02-15T06:59:56Z +13884 515 2 14072 4.99 2005-08-20T23:07:10Z 2020-02-15T06:59:56Z +13885 515 2 14378 3.99 2005-08-21T09:50:02Z 2020-02-15T06:59:56Z +13886 515 2 14414 0.99 2005-08-21T11:08:17Z 2020-02-15T06:59:56Z +13887 515 2 15274 4.99 2005-08-22T18:55:52Z 2020-02-15T06:59:56Z +13888 516 2 339 3.99 2005-05-27T03:47:18Z 2020-02-15T06:59:56Z +13889 516 1 571 1.99 2005-05-28T10:17:41Z 2020-02-15T06:59:56Z +13890 516 2 1159 4.99 2005-06-14T22:55:13Z 2020-02-15T06:59:56Z +13891 516 1 1200 1.99 2005-06-15T01:59:51Z 2020-02-15T06:59:56Z +13892 516 1 1718 10.99 2005-06-16T14:52:02Z 2020-02-15T06:59:56Z +13893 516 1 2017 0.99 2005-06-17T12:33:30Z 2020-02-15T06:59:56Z +13894 516 2 3068 0.99 2005-06-20T14:02:22Z 2020-02-15T06:59:56Z +13895 516 1 3431 2.99 2005-06-21T18:46:48Z 2020-02-15T06:59:56Z +13896 516 2 5780 3.99 2005-07-10T13:46:23Z 2020-02-15T06:59:56Z +13897 516 2 6677 6.99 2005-07-12T11:58:14Z 2020-02-15T06:59:56Z +13898 516 1 6858 6.99 2005-07-12T19:53:51Z 2020-02-15T06:59:56Z +13899 516 1 7628 4.99 2005-07-28T00:58:04Z 2020-02-15T06:59:56Z +13900 516 1 7882 4.99 2005-07-28T10:33:42Z 2020-02-15T06:59:56Z +13901 516 2 8396 4.99 2005-07-29T06:07:00Z 2020-02-15T06:59:56Z +13902 516 2 8534 5.99 2005-07-29T10:30:13Z 2020-02-15T06:59:56Z +13903 516 2 8585 2.99 2005-07-29T12:14:18Z 2020-02-15T06:59:56Z +13904 516 2 9243 4.99 2005-07-30T14:06:27Z 2020-02-15T06:59:56Z +13905 516 2 11926 0.99 2005-08-17T16:25:02Z 2020-02-15T06:59:56Z +13906 516 2 11939 1.99 2005-08-17T16:55:57Z 2020-02-15T06:59:56Z +13907 516 1 12535 1.99 2005-08-18T14:05:22Z 2020-02-15T06:59:56Z +13908 516 1 13276 8.99 2005-08-19T17:53:42Z 2020-02-15T06:59:56Z +13909 516 1 14932 0.99 2005-08-22T05:40:39Z 2020-02-15T06:59:56Z +13910 516 1 15526 0.99 2005-08-23T03:44:30Z 2020-02-15T06:59:56Z +13911 516 1 15701 0.99 2005-08-23T10:22:21Z 2020-02-15T06:59:56Z +13912 516 1 12130 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +13913 516 1 12915 0 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +13914 517 2 850 4.99 2005-05-30T01:35:12Z 2020-02-15T06:59:56Z +13915 517 2 1653 4.99 2005-06-16T09:34:45Z 2020-02-15T06:59:56Z +13916 517 1 1809 8.99 2005-06-16T21:00:20Z 2020-02-15T06:59:56Z +13917 517 1 1850 4.99 2005-06-17T00:31:35Z 2020-02-15T06:59:56Z +13918 517 2 2534 2.99 2005-06-19T01:38:39Z 2020-02-15T06:59:56Z +13919 517 1 3113 0.99 2005-06-20T17:56:40Z 2020-02-15T06:59:56Z +13920 517 2 4094 2.99 2005-07-07T06:00:21Z 2020-02-15T06:59:56Z +13921 517 1 4109 4.99 2005-07-07T06:39:43Z 2020-02-15T06:59:56Z +13922 517 1 4369 4.99 2005-07-07T20:01:38Z 2020-02-15T06:59:56Z +13923 517 2 4374 4.99 2005-07-07T20:13:58Z 2020-02-15T06:59:56Z +13924 517 2 4934 0.99 2005-07-08T22:18:42Z 2020-02-15T06:59:56Z +13925 517 1 4993 2.99 2005-07-09T00:49:47Z 2020-02-15T06:59:56Z +13926 517 1 5206 7.99 2005-07-09T11:11:01Z 2020-02-15T06:59:56Z +13927 517 2 5974 5.99 2005-07-11T00:10:37Z 2020-02-15T06:59:56Z +13928 517 2 6594 4.99 2005-07-12T07:25:43Z 2020-02-15T06:59:56Z +13929 517 2 6903 0.99 2005-07-12T21:58:15Z 2020-02-15T06:59:56Z +13930 517 2 7988 3.99 2005-07-28T14:37:18Z 2020-02-15T06:59:56Z +13931 517 1 10063 4.99 2005-07-31T19:25:13Z 2020-02-15T06:59:56Z +13932 517 2 10358 4.99 2005-08-01T05:50:07Z 2020-02-15T06:59:56Z +13933 517 2 10433 4.99 2005-08-01T08:45:56Z 2020-02-15T06:59:56Z +13934 517 1 11684 3.99 2005-08-17T06:27:15Z 2020-02-15T06:59:56Z +13935 517 2 12705 0.99 2005-08-18T20:44:14Z 2020-02-15T06:59:56Z +13936 517 1 13396 0.99 2005-08-19T22:06:09Z 2020-02-15T06:59:56Z +13937 517 2 14190 4.99 2005-08-21T03:35:21Z 2020-02-15T06:59:56Z +13938 517 1 15559 5.99 2005-08-23T04:55:05Z 2020-02-15T06:59:56Z +13939 518 1 710 2.99 2005-05-29T03:48:36Z 2020-02-15T06:59:56Z +13940 518 2 1552 5.99 2005-06-16T02:01:37Z 2020-02-15T06:59:56Z +13941 518 2 3311 0.99 2005-06-21T08:05:27Z 2020-02-15T06:59:56Z +13942 518 1 3652 0.99 2005-07-06T07:44:30Z 2020-02-15T06:59:56Z +13943 518 2 4029 7.99 2005-07-07T02:19:44Z 2020-02-15T06:59:56Z +13944 518 2 4661 4.99 2005-07-08T09:55:06Z 2020-02-15T06:59:56Z +13945 518 2 4948 6.99 2005-07-08T22:54:21Z 2020-02-15T06:59:56Z +13946 518 1 6652 2.99 2005-07-12T10:59:38Z 2020-02-15T06:59:56Z +13947 518 1 6957 2.99 2005-07-27T00:00:00Z 2020-02-15T06:59:56Z +13948 518 2 7038 3.99 2005-07-27T03:07:29Z 2020-02-15T06:59:56Z +13949 518 2 7154 4.99 2005-07-27T07:16:17Z 2020-02-15T06:59:56Z +13950 518 2 7382 2.99 2005-07-27T15:43:15Z 2020-02-15T06:59:56Z +13951 518 1 7657 2.99 2005-07-28T02:09:00Z 2020-02-15T06:59:56Z +13952 518 2 7839 6.99 2005-07-28T09:01:13Z 2020-02-15T06:59:56Z +13953 518 1 8107 3.99 2005-07-28T19:03:16Z 2020-02-15T06:59:56Z +13954 518 1 8397 2.99 2005-07-29T06:09:35Z 2020-02-15T06:59:56Z +13955 518 1 10751 5.99 2005-08-01T20:06:10Z 2020-02-15T06:59:56Z +13956 518 2 11433 3.99 2005-08-02T20:13:10Z 2020-02-15T06:59:56Z +13957 518 2 12450 2.99 2005-08-18T11:04:04Z 2020-02-15T06:59:56Z +13958 518 2 12681 2.99 2005-08-18T19:48:06Z 2020-02-15T06:59:56Z +13959 518 1 13065 4.99 2005-08-19T09:48:52Z 2020-02-15T06:59:56Z +13960 518 1 13539 6.99 2005-08-20T03:40:27Z 2020-02-15T06:59:56Z +13961 518 1 14088 6.99 2005-08-20T23:57:24Z 2020-02-15T06:59:56Z +13962 518 1 14149 4.99 2005-08-21T02:22:47Z 2020-02-15T06:59:56Z +13963 518 2 14980 0.99 2005-08-22T07:16:45Z 2020-02-15T06:59:56Z +13964 518 2 15434 4.99 2005-08-23T00:28:16Z 2020-02-15T06:59:56Z +13965 519 1 1056 3.99 2005-05-31T07:48:07Z 2020-02-15T06:59:56Z +13966 519 1 1941 2.99 2005-06-17T07:42:45Z 2020-02-15T06:59:56Z +13967 519 2 2505 8.99 2005-06-18T23:28:27Z 2020-02-15T06:59:56Z +13968 519 2 2997 5.99 2005-06-20T09:23:45Z 2020-02-15T06:59:56Z +13969 519 2 4564 0.99 2005-07-08T05:09:38Z 2020-02-15T06:59:56Z +13970 519 2 4773 2.99 2005-07-08T15:41:39Z 2020-02-15T06:59:56Z +13971 519 2 5236 0.99 2005-07-09T12:56:29Z 2020-02-15T06:59:56Z +13972 519 2 5547 5.99 2005-07-10T02:52:47Z 2020-02-15T06:59:56Z +13973 519 2 6063 0.99 2005-07-11T04:16:51Z 2020-02-15T06:59:56Z +13974 519 1 6599 3.99 2005-07-12T07:41:14Z 2020-02-15T06:59:56Z +13975 519 1 9417 6.99 2005-07-30T20:54:55Z 2020-02-15T06:59:56Z +13976 519 2 9441 4.99 2005-07-30T21:43:28Z 2020-02-15T06:59:56Z +13977 519 2 9534 7.99 2005-07-31T01:18:27Z 2020-02-15T06:59:56Z +13978 519 2 9645 0.99 2005-07-31T05:42:49Z 2020-02-15T06:59:56Z +13979 519 2 9886 7.99 2005-07-31T14:00:13Z 2020-02-15T06:59:56Z +13980 519 1 9905 0.99 2005-07-31T14:37:03Z 2020-02-15T06:59:56Z +13981 519 1 10097 5.99 2005-07-31T20:39:38Z 2020-02-15T06:59:56Z +13982 519 2 10697 4.99 2005-08-01T18:20:23Z 2020-02-15T06:59:56Z +13983 519 2 12648 7.99 2005-08-18T18:30:21Z 2020-02-15T06:59:56Z +13984 519 2 12924 2.99 2005-08-19T04:51:47Z 2020-02-15T06:59:56Z +13985 519 1 13647 7.99 2005-08-20T07:48:07Z 2020-02-15T06:59:56Z +13986 519 1 14182 2.99 2005-08-21T03:17:10Z 2020-02-15T06:59:56Z +13987 519 2 15347 2.99 2005-08-22T21:12:19Z 2020-02-15T06:59:56Z +13988 520 1 962 6.99 2005-05-30T18:45:17Z 2020-02-15T06:59:56Z +13989 520 1 1411 0.99 2005-06-15T17:05:36Z 2020-02-15T06:59:56Z +13990 520 2 2174 6.99 2005-06-18T00:09:01Z 2020-02-15T06:59:56Z +13991 520 1 2772 4.99 2005-06-19T17:59:27Z 2020-02-15T06:59:56Z +13992 520 2 3482 4.99 2005-07-05T23:13:22Z 2020-02-15T06:59:56Z +13993 520 1 3499 7.99 2005-07-06T00:04:20Z 2020-02-15T06:59:56Z +13994 520 2 4346 2.99 2005-07-07T18:58:45Z 2020-02-15T06:59:56Z +13995 520 2 5799 4.99 2005-07-10T14:53:35Z 2020-02-15T06:59:56Z +13996 520 1 5802 10.99 2005-07-10T15:02:17Z 2020-02-15T06:59:56Z +13997 520 1 5853 3.99 2005-07-10T17:45:13Z 2020-02-15T06:59:56Z +13998 520 1 6029 2.99 2005-07-11T02:36:46Z 2020-02-15T06:59:56Z +13999 520 2 7198 5.99 2005-07-27T08:50:07Z 2020-02-15T06:59:56Z +14000 520 1 7720 4.99 2005-07-28T04:41:44Z 2020-02-15T06:59:56Z +14001 520 1 7936 0.99 2005-07-28T12:33:21Z 2020-02-15T06:59:56Z +14002 520 1 8294 2.99 2005-07-29T02:32:41Z 2020-02-15T06:59:56Z +14003 520 2 8435 2.99 2005-07-29T07:20:16Z 2020-02-15T06:59:56Z +14004 520 1 9803 2.99 2005-07-31T11:06:02Z 2020-02-15T06:59:56Z +14005 520 1 10072 0.99 2005-07-31T19:50:37Z 2020-02-15T06:59:56Z +14006 520 2 10530 4.99 2005-08-01T12:01:17Z 2020-02-15T06:59:56Z +14007 520 1 11566 0.99 2005-08-17T01:28:35Z 2020-02-15T06:59:56Z +14008 520 1 12517 4.99 2005-08-18T13:40:20Z 2020-02-15T06:59:56Z +14009 520 1 12628 5.99 2005-08-18T17:40:25Z 2020-02-15T06:59:56Z +14010 520 1 12647 5.99 2005-08-18T18:29:51Z 2020-02-15T06:59:56Z +14011 520 1 13311 0.99 2005-08-19T19:07:09Z 2020-02-15T06:59:56Z +14012 520 2 13438 2.99 2005-08-19T23:38:02Z 2020-02-15T06:59:56Z +14013 520 2 13659 2.99 2005-08-20T08:05:52Z 2020-02-15T06:59:56Z +14014 520 2 13746 5.99 2005-08-20T10:55:28Z 2020-02-15T06:59:56Z +14015 520 1 14372 4.99 2005-08-21T09:39:50Z 2020-02-15T06:59:56Z +14016 520 1 14509 0.99 2005-08-21T14:39:58Z 2020-02-15T06:59:56Z +14017 520 1 15465 0.99 2005-08-23T01:16:33Z 2020-02-15T06:59:56Z +14018 520 2 15492 2.99 2005-08-23T02:13:46Z 2020-02-15T06:59:56Z +14019 520 1 15948 7.99 2005-08-23T18:59:33Z 2020-02-15T06:59:56Z +14020 521 1 1761 0.99 2005-06-16T17:49:57Z 2020-02-15T06:59:56Z +14021 521 2 2053 0.99 2005-06-17T15:19:34Z 2020-02-15T06:59:56Z +14022 521 2 4284 0.99 2005-07-07T15:31:57Z 2020-02-15T06:59:56Z +14023 521 2 4439 2.99 2005-07-07T22:57:30Z 2020-02-15T06:59:56Z +14024 521 1 5276 2.99 2005-07-09T14:35:13Z 2020-02-15T06:59:56Z +14025 521 2 5458 4.99 2005-07-09T22:35:49Z 2020-02-15T06:59:56Z +14026 521 2 5580 6.99 2005-07-10T04:05:49Z 2020-02-15T06:59:56Z +14027 521 2 5686 0.99 2005-07-10T09:06:03Z 2020-02-15T06:59:56Z +14028 521 1 7478 1.99 2005-07-27T19:16:02Z 2020-02-15T06:59:56Z +14029 521 1 9556 7.99 2005-07-31T02:13:30Z 2020-02-15T06:59:56Z +14030 521 2 9937 1.99 2005-07-31T15:28:10Z 2020-02-15T06:59:56Z +14031 521 1 10587 2.99 2005-08-01T14:03:38Z 2020-02-15T06:59:56Z +14032 521 2 11625 2.99 2005-08-17T04:18:52Z 2020-02-15T06:59:56Z +14033 521 1 11967 3.99 2005-08-17T17:45:00Z 2020-02-15T06:59:56Z +14034 521 2 12082 4.99 2005-08-17T22:13:15Z 2020-02-15T06:59:56Z +14035 521 1 12530 4.99 2005-08-18T13:54:48Z 2020-02-15T06:59:56Z +14036 521 1 13527 2.99 2005-08-20T03:00:47Z 2020-02-15T06:59:56Z +14037 521 1 14423 0.99 2005-08-21T11:23:59Z 2020-02-15T06:59:56Z +14038 521 2 14551 3.99 2005-08-21T15:57:25Z 2020-02-15T06:59:56Z +14039 521 2 14738 5.99 2005-08-21T22:29:13Z 2020-02-15T06:59:56Z +14040 521 2 15170 4.99 2005-08-22T15:22:15Z 2020-02-15T06:59:56Z +14041 521 2 15329 2.99 2005-08-22T20:32:39Z 2020-02-15T06:59:56Z +14042 521 2 11672 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14043 522 2 426 5.99 2005-05-27T15:56:57Z 2020-02-15T06:59:56Z +14044 522 1 1289 3.99 2005-06-15T08:44:09Z 2020-02-15T06:59:56Z +14045 522 2 3102 8.99 2005-06-20T16:55:55Z 2020-02-15T06:59:56Z +14046 522 1 3188 2.99 2005-06-20T23:10:27Z 2020-02-15T06:59:56Z +14047 522 2 3191 0.99 2005-06-20T23:46:39Z 2020-02-15T06:59:56Z +14048 522 1 3594 0.99 2005-07-06T04:42:47Z 2020-02-15T06:59:56Z +14049 522 2 4078 4.99 2005-07-07T05:05:05Z 2020-02-15T06:59:56Z +14050 522 2 4563 9.99 2005-07-08T05:08:55Z 2020-02-15T06:59:56Z +14051 522 2 4701 4.99 2005-07-08T11:38:48Z 2020-02-15T06:59:56Z +14052 522 2 5271 6.99 2005-07-09T14:25:01Z 2020-02-15T06:59:56Z +14053 522 2 5514 6.99 2005-07-10T01:09:42Z 2020-02-15T06:59:56Z +14054 522 2 5532 4.99 2005-07-10T02:17:31Z 2020-02-15T06:59:56Z +14055 522 2 5936 0.99 2005-07-10T22:14:30Z 2020-02-15T06:59:56Z +14056 522 2 7262 4.99 2005-07-27T11:15:36Z 2020-02-15T06:59:56Z +14057 522 1 7955 2.99 2005-07-28T13:31:36Z 2020-02-15T06:59:56Z +14058 522 2 8181 4.99 2005-07-28T22:18:38Z 2020-02-15T06:59:56Z +14059 522 1 8642 6.99 2005-07-29T14:38:17Z 2020-02-15T06:59:56Z +14060 522 1 8966 2.99 2005-07-30T03:54:12Z 2020-02-15T06:59:56Z +14061 522 1 9047 7.99 2005-07-30T06:56:33Z 2020-02-15T06:59:56Z +14062 522 2 9227 7.99 2005-07-30T13:36:13Z 2020-02-15T06:59:56Z +14063 522 1 9335 4.99 2005-07-30T18:00:53Z 2020-02-15T06:59:56Z +14064 522 1 9412 5.99 2005-07-30T20:44:10Z 2020-02-15T06:59:56Z +14065 522 2 9533 5.99 2005-07-31T01:18:10Z 2020-02-15T06:59:56Z +14066 522 2 10223 0.99 2005-08-01T01:23:15Z 2020-02-15T06:59:56Z +14067 522 1 10411 3.99 2005-08-01T07:56:32Z 2020-02-15T06:59:56Z +14068 522 1 10675 7.99 2005-08-01T17:11:57Z 2020-02-15T06:59:56Z +14069 522 2 10821 5.99 2005-08-01T22:54:27Z 2020-02-15T06:59:56Z +14070 522 2 11696 2.99 2005-08-17T07:01:09Z 2020-02-15T06:59:56Z +14071 522 2 11830 1.99 2005-08-17T12:53:15Z 2020-02-15T06:59:56Z +14072 522 2 12494 6.99 2005-08-18T12:53:49Z 2020-02-15T06:59:56Z +14073 522 2 13605 6.99 2005-08-20T06:06:17Z 2020-02-15T06:59:56Z +14074 522 2 14467 2.99 2005-08-21T13:03:33Z 2020-02-15T06:59:56Z +14075 522 1 15921 6.99 2005-08-23T18:06:54Z 2020-02-15T06:59:56Z +14076 523 1 42 4.99 2005-05-25T05:24:58Z 2020-02-15T06:59:56Z +14077 523 2 664 0.99 2005-05-28T21:31:08Z 2020-02-15T06:59:56Z +14078 523 2 1729 6.99 2005-06-16T15:29:47Z 2020-02-15T06:59:56Z +14079 523 1 2447 8.99 2005-06-18T19:10:55Z 2020-02-15T06:59:56Z +14080 523 1 2583 7.99 2005-06-19T05:01:40Z 2020-02-15T06:59:56Z +14081 523 2 2669 0.99 2005-06-19T11:28:52Z 2020-02-15T06:59:56Z +14082 523 1 4605 4.99 2005-07-08T07:00:14Z 2020-02-15T06:59:56Z +14083 523 2 5155 2.99 2005-07-09T08:46:54Z 2020-02-15T06:59:56Z +14084 523 1 5287 6.99 2005-07-09T15:11:54Z 2020-02-15T06:59:56Z +14085 523 2 5932 2.99 2005-07-10T22:05:15Z 2020-02-15T06:59:56Z +14086 523 2 6675 4.99 2005-07-12T11:53:06Z 2020-02-15T06:59:56Z +14087 523 2 7642 1.99 2005-07-28T01:16:51Z 2020-02-15T06:59:56Z +14088 523 2 8141 0.99 2005-07-28T20:21:19Z 2020-02-15T06:59:56Z +14089 523 1 8372 5.99 2005-07-29T05:18:08Z 2020-02-15T06:59:56Z +14090 523 1 9071 2.99 2005-07-30T07:40:58Z 2020-02-15T06:59:56Z +14091 523 2 9667 6.99 2005-07-31T06:23:52Z 2020-02-15T06:59:56Z +14092 523 2 10470 1.99 2005-08-01T09:52:26Z 2020-02-15T06:59:56Z +14093 523 1 11827 4.99 2005-08-17T12:44:27Z 2020-02-15T06:59:56Z +14094 523 1 12288 2.99 2005-08-18T05:01:20Z 2020-02-15T06:59:56Z +14095 523 1 13133 2.99 2005-08-19T12:11:03Z 2020-02-15T06:59:56Z +14096 523 1 14766 4.99 2005-08-21T23:42:20Z 2020-02-15T06:59:56Z +14097 523 1 15040 2.99 2005-08-22T09:41:09Z 2020-02-15T06:59:56Z +14098 524 2 118 0.99 2005-05-25T19:31:18Z 2020-02-15T06:59:56Z +14099 524 1 982 4.99 2005-05-30T22:15:24Z 2020-02-15T06:59:56Z +14100 524 1 1306 1.99 2005-06-15T09:59:24Z 2020-02-15T06:59:56Z +14101 524 2 1651 4.99 2005-06-16T09:24:38Z 2020-02-15T06:59:56Z +14102 524 2 3454 2.99 2005-06-21T21:12:13Z 2020-02-15T06:59:56Z +14103 524 1 4366 5.99 2005-07-07T19:48:36Z 2020-02-15T06:59:56Z +14104 524 2 5037 4.99 2005-07-09T02:59:10Z 2020-02-15T06:59:56Z +14105 524 2 6161 4.99 2005-07-11T10:11:54Z 2020-02-15T06:59:56Z +14106 524 1 6240 6.99 2005-07-11T14:32:41Z 2020-02-15T06:59:56Z +14107 524 2 6745 4.99 2005-07-12T14:30:51Z 2020-02-15T06:59:56Z +14108 524 2 7014 8.99 2005-07-27T02:14:40Z 2020-02-15T06:59:56Z +14109 524 1 7040 4.99 2005-07-27T03:17:19Z 2020-02-15T06:59:56Z +14110 524 1 8507 6.99 2005-07-29T09:29:44Z 2020-02-15T06:59:56Z +14111 524 2 13626 2.99 2005-08-20T06:55:24Z 2020-02-15T06:59:56Z +14112 524 2 14046 4.99 2005-08-20T21:53:21Z 2020-02-15T06:59:56Z +14113 524 1 14178 2.99 2005-08-21T03:13:45Z 2020-02-15T06:59:56Z +14114 524 1 14366 2.99 2005-08-21T09:31:39Z 2020-02-15T06:59:56Z +14115 524 2 14680 1.99 2005-08-21T20:19:52Z 2020-02-15T06:59:56Z +14116 524 2 15206 6.99 2005-08-22T16:33:39Z 2020-02-15T06:59:56Z +14117 525 1 437 5.99 2005-05-27T17:47:22Z 2020-02-15T06:59:56Z +14118 525 2 1772 2.99 2005-06-16T18:12:54Z 2020-02-15T06:59:56Z +14119 525 1 3993 6.99 2005-07-06T23:37:06Z 2020-02-15T06:59:56Z +14120 525 1 5841 2.99 2005-07-10T17:11:31Z 2020-02-15T06:59:56Z +14121 525 2 6098 7.99 2005-07-11T06:23:28Z 2020-02-15T06:59:56Z +14122 525 2 6388 6.99 2005-07-11T22:17:16Z 2020-02-15T06:59:56Z +14123 525 1 6689 1.99 2005-07-12T12:22:13Z 2020-02-15T06:59:56Z +14124 525 2 7337 4.99 2005-07-27T14:12:04Z 2020-02-15T06:59:56Z +14125 525 2 7591 4.99 2005-07-27T23:25:54Z 2020-02-15T06:59:56Z +14126 525 1 8007 0.99 2005-07-28T15:22:27Z 2020-02-15T06:59:56Z +14127 525 1 8960 4.99 2005-07-30T03:36:31Z 2020-02-15T06:59:56Z +14128 525 2 9507 5.99 2005-07-31T00:22:29Z 2020-02-15T06:59:56Z +14129 525 1 9702 0.99 2005-07-31T07:34:07Z 2020-02-15T06:59:56Z +14130 525 1 10496 2.99 2005-08-01T10:53:16Z 2020-02-15T06:59:56Z +14131 525 2 11406 2.99 2005-08-02T19:16:10Z 2020-02-15T06:59:56Z +14132 525 1 11660 1.99 2005-08-17T05:22:42Z 2020-02-15T06:59:56Z +14133 525 1 15159 0.99 2005-08-22T14:32:25Z 2020-02-15T06:59:56Z +14134 525 2 15623 3.99 2005-08-23T07:23:29Z 2020-02-15T06:59:56Z +14135 525 1 14954 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14136 526 1 495 4.99 2005-05-28T00:40:48Z 2020-02-15T06:59:56Z +14137 526 2 679 4.99 2005-05-28T23:24:57Z 2020-02-15T06:59:56Z +14138 526 2 1015 2.99 2005-05-31T02:44:57Z 2020-02-15T06:59:56Z +14139 526 1 1255 4.99 2005-06-15T06:13:45Z 2020-02-15T06:59:56Z +14140 526 2 1848 0.99 2005-06-17T00:07:07Z 2020-02-15T06:59:56Z +14141 526 2 1865 7.99 2005-06-17T01:49:36Z 2020-02-15T06:59:56Z +14142 526 2 1972 2.99 2005-06-17T09:25:49Z 2020-02-15T06:59:56Z +14143 526 1 1981 2.99 2005-06-17T10:03:34Z 2020-02-15T06:59:56Z +14144 526 2 2398 4.99 2005-06-18T15:56:53Z 2020-02-15T06:59:56Z +14145 526 1 2828 2.99 2005-06-19T20:51:33Z 2020-02-15T06:59:56Z +14146 526 2 2932 6.99 2005-06-20T04:51:19Z 2020-02-15T06:59:56Z +14147 526 1 3339 6.99 2005-06-21T10:37:11Z 2020-02-15T06:59:56Z +14148 526 1 3619 1.99 2005-07-06T05:59:44Z 2020-02-15T06:59:56Z +14149 526 2 3905 5.99 2005-07-06T19:33:34Z 2020-02-15T06:59:56Z +14150 526 1 4423 6.99 2005-07-07T22:11:28Z 2020-02-15T06:59:56Z +14151 526 2 5056 2.99 2005-07-09T04:13:45Z 2020-02-15T06:59:56Z +14152 526 2 5121 3.99 2005-07-09T07:18:31Z 2020-02-15T06:59:56Z +14153 526 1 6316 7.99 2005-07-11T18:44:52Z 2020-02-15T06:59:56Z +14154 526 1 6404 4.99 2005-07-11T22:49:50Z 2020-02-15T06:59:56Z +14155 526 2 6650 2.99 2005-07-12T10:57:10Z 2020-02-15T06:59:56Z +14156 526 1 6671 3.99 2005-07-12T11:48:48Z 2020-02-15T06:59:56Z +14157 526 2 7270 7.99 2005-07-27T11:29:02Z 2020-02-15T06:59:56Z +14158 526 2 7343 0.99 2005-07-27T14:27:13Z 2020-02-15T06:59:56Z +14159 526 2 7399 1.99 2005-07-27T16:16:02Z 2020-02-15T06:59:56Z +14160 526 2 7543 5.99 2005-07-27T21:44:28Z 2020-02-15T06:59:56Z +14161 526 2 7883 2.99 2005-07-28T10:37:20Z 2020-02-15T06:59:56Z +14162 526 1 8053 4.99 2005-07-28T16:59:41Z 2020-02-15T06:59:56Z +14163 526 1 8232 4.99 2005-07-29T00:14:37Z 2020-02-15T06:59:56Z +14164 526 1 8441 2.99 2005-07-29T07:33:05Z 2020-02-15T06:59:56Z +14165 526 2 9577 6.99 2005-07-31T02:53:33Z 2020-02-15T06:59:56Z +14166 526 2 10020 4.99 2005-07-31T18:21:08Z 2020-02-15T06:59:56Z +14167 526 2 10199 2.99 2005-08-01T00:38:55Z 2020-02-15T06:59:56Z +14168 526 2 11046 4.99 2005-08-02T06:08:34Z 2020-02-15T06:59:56Z +14169 526 1 11503 10.99 2005-08-16T23:10:34Z 2020-02-15T06:59:56Z +14170 526 1 11612 2.99 2005-08-17T03:48:51Z 2020-02-15T06:59:56Z +14171 526 2 11702 4.99 2005-08-17T07:18:56Z 2020-02-15T06:59:56Z +14172 526 1 12607 0.99 2005-08-18T17:03:49Z 2020-02-15T06:59:56Z +14173 526 2 13224 8.99 2005-08-19T15:52:13Z 2020-02-15T06:59:56Z +14174 526 2 13580 0.99 2005-08-20T05:23:34Z 2020-02-15T06:59:56Z +14175 526 1 13617 8.99 2005-08-20T06:35:30Z 2020-02-15T06:59:56Z +14176 526 2 14487 6.99 2005-08-21T13:53:33Z 2020-02-15T06:59:56Z +14177 526 1 14590 7.99 2005-08-21T17:29:10Z 2020-02-15T06:59:56Z +14178 526 1 15168 2.99 2005-08-22T15:14:20Z 2020-02-15T06:59:56Z +14179 526 1 15395 4.99 2005-08-22T23:06:25Z 2020-02-15T06:59:56Z +14180 526 1 16043 9.99 2005-08-23T22:21:03Z 2020-02-15T06:59:56Z +14181 527 1 1398 2.99 2005-06-15T16:28:42Z 2020-02-15T06:59:56Z +14182 527 1 2422 0.99 2005-06-18T17:28:57Z 2020-02-15T06:59:56Z +14183 527 2 2496 0.99 2005-06-18T22:20:11Z 2020-02-15T06:59:56Z +14184 527 1 2539 2.99 2005-06-19T01:58:39Z 2020-02-15T06:59:56Z +14185 527 1 4888 0.99 2005-07-08T20:04:27Z 2020-02-15T06:59:56Z +14186 527 1 5365 0.99 2005-07-09T18:27:00Z 2020-02-15T06:59:56Z +14187 527 2 6003 3.99 2005-07-11T01:28:33Z 2020-02-15T06:59:56Z +14188 527 2 6011 4.99 2005-07-11T01:54:48Z 2020-02-15T06:59:56Z +14189 527 1 6050 2.99 2005-07-11T03:34:29Z 2020-02-15T06:59:56Z +14190 527 2 6975 1.99 2005-07-27T00:39:54Z 2020-02-15T06:59:56Z +14191 527 1 7506 8.99 2005-07-27T20:28:34Z 2020-02-15T06:59:56Z +14192 527 1 8854 0.99 2005-07-29T23:40:07Z 2020-02-15T06:59:56Z +14193 527 2 9750 0.99 2005-07-31T09:19:46Z 2020-02-15T06:59:56Z +14194 527 2 10486 3.99 2005-08-01T10:23:43Z 2020-02-15T06:59:56Z +14195 527 2 10613 0.99 2005-08-01T14:56:14Z 2020-02-15T06:59:56Z +14196 527 1 11013 5.99 2005-08-02T05:10:54Z 2020-02-15T06:59:56Z +14197 527 1 11150 2.99 2005-08-02T09:51:46Z 2020-02-15T06:59:56Z +14198 527 1 11624 0.99 2005-08-17T04:17:42Z 2020-02-15T06:59:56Z +14199 527 1 12136 7.99 2005-08-17T23:51:30Z 2020-02-15T06:59:56Z +14200 527 1 12513 6.99 2005-08-18T13:31:45Z 2020-02-15T06:59:56Z +14201 527 1 14352 6.99 2005-08-21T09:06:29Z 2020-02-15T06:59:56Z +14202 527 1 15144 2.99 2005-08-22T13:49:18Z 2020-02-15T06:59:56Z +14203 527 1 15552 3.99 2005-08-23T04:33:23Z 2020-02-15T06:59:56Z +14204 527 1 14267 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14205 528 1 204 0.99 2005-05-26T07:30:37Z 2020-02-15T06:59:56Z +14206 528 2 472 0.99 2005-05-27T21:36:15Z 2020-02-15T06:59:56Z +14207 528 1 533 5.99 2005-05-28T06:14:46Z 2020-02-15T06:59:56Z +14208 528 2 695 3.99 2005-05-29T01:50:53Z 2020-02-15T06:59:56Z +14209 528 2 793 5.99 2005-05-29T16:44:08Z 2020-02-15T06:59:56Z +14210 528 2 1875 2.99 2005-06-17T02:45:10Z 2020-02-15T06:59:56Z +14211 528 1 2019 4.99 2005-06-17T12:38:44Z 2020-02-15T06:59:56Z +14212 528 2 3654 4.99 2005-07-06T07:45:31Z 2020-02-15T06:59:56Z +14213 528 1 3664 0.99 2005-07-06T08:15:57Z 2020-02-15T06:59:56Z +14214 528 2 4050 9.99 2005-07-07T03:35:33Z 2020-02-15T06:59:56Z +14215 528 1 4593 5.99 2005-07-08T06:38:12Z 2020-02-15T06:59:56Z +14216 528 2 5215 3.99 2005-07-09T11:47:58Z 2020-02-15T06:59:56Z +14217 528 2 6561 0.99 2005-07-12T05:24:02Z 2020-02-15T06:59:56Z +14218 528 1 7569 7.99 2005-07-27T22:38:53Z 2020-02-15T06:59:56Z +14219 528 2 8112 4.99 2005-07-28T19:11:07Z 2020-02-15T06:59:56Z +14220 528 1 8727 3.99 2005-07-29T18:09:57Z 2020-02-15T06:59:56Z +14221 528 2 9488 8.99 2005-07-30T23:42:42Z 2020-02-15T06:59:56Z +14222 528 1 10084 3.99 2005-07-31T20:11:29Z 2020-02-15T06:59:56Z +14223 528 1 10673 0.99 2005-08-01T17:11:51Z 2020-02-15T06:59:56Z +14224 528 1 10880 2.99 2005-08-02T00:34:12Z 2020-02-15T06:59:56Z +14225 528 1 12818 3.99 2005-08-19T01:04:59Z 2020-02-15T06:59:56Z +14226 528 2 13518 2.99 2005-08-20T02:36:17Z 2020-02-15T06:59:56Z +14227 528 1 13600 7.99 2005-08-20T06:00:25Z 2020-02-15T06:59:56Z +14228 528 2 14148 2.99 2005-08-21T02:17:49Z 2020-02-15T06:59:56Z +14229 528 2 15880 6.99 2005-08-23T16:43:54Z 2020-02-15T06:59:56Z +14230 529 1 453 2.99 2005-05-27T19:31:16Z 2020-02-15T06:59:56Z +14231 529 1 1234 1.99 2005-06-15T04:21:52Z 2020-02-15T06:59:56Z +14232 529 2 1686 0.99 2005-06-16T12:08:20Z 2020-02-15T06:59:56Z +14233 529 2 3354 0.99 2005-06-21T11:29:49Z 2020-02-15T06:59:56Z +14234 529 2 4045 0.99 2005-07-07T03:26:14Z 2020-02-15T06:59:56Z +14235 529 2 4254 0.99 2005-07-07T14:13:52Z 2020-02-15T06:59:56Z +14236 529 2 4444 5.99 2005-07-07T23:07:44Z 2020-02-15T06:59:56Z +14237 529 1 4553 0.99 2005-07-08T04:43:41Z 2020-02-15T06:59:56Z +14238 529 1 5993 4.99 2005-07-11T01:06:41Z 2020-02-15T06:59:56Z +14239 529 2 6538 6.99 2005-07-12T04:50:26Z 2020-02-15T06:59:56Z +14240 529 2 6541 5.99 2005-07-12T04:53:41Z 2020-02-15T06:59:56Z +14241 529 1 6908 7.99 2005-07-12T22:08:46Z 2020-02-15T06:59:56Z +14242 529 1 7128 3.99 2005-07-27T06:14:36Z 2020-02-15T06:59:56Z +14243 529 2 8708 2.99 2005-07-29T17:24:13Z 2020-02-15T06:59:56Z +14244 529 1 8979 5.99 2005-07-30T04:20:25Z 2020-02-15T06:59:56Z +14245 529 2 9310 4.99 2005-07-30T16:57:09Z 2020-02-15T06:59:56Z +14246 529 2 9375 0.99 2005-07-30T19:10:17Z 2020-02-15T06:59:56Z +14247 529 2 10361 10.99 2005-08-01T05:53:49Z 2020-02-15T06:59:56Z +14248 529 1 11862 2.99 2005-08-17T13:54:53Z 2020-02-15T06:59:56Z +14249 529 2 12356 2.99 2005-08-18T07:37:05Z 2020-02-15T06:59:56Z +14250 529 1 12622 3.99 2005-08-18T17:34:11Z 2020-02-15T06:59:56Z +14251 529 1 13011 4.99 2005-08-19T07:53:58Z 2020-02-15T06:59:56Z +14252 529 2 13132 3.99 2005-08-19T12:10:57Z 2020-02-15T06:59:56Z +14253 529 1 13797 2.99 2005-08-20T12:33:36Z 2020-02-15T06:59:56Z +14254 529 2 13946 9.99 2005-08-20T17:44:32Z 2020-02-15T06:59:56Z +14255 529 2 14449 4.99 2005-08-21T12:13:18Z 2020-02-15T06:59:56Z +14256 529 2 14764 0.99 2005-08-21T23:37:47Z 2020-02-15T06:59:56Z +14257 529 1 14970 5.99 2005-08-22T06:49:29Z 2020-02-15T06:59:56Z +14258 529 2 15305 2.99 2005-08-22T19:46:05Z 2020-02-15T06:59:56Z +14259 530 1 851 0.99 2005-05-30T01:35:15Z 2020-02-15T06:59:56Z +14260 530 2 1273 1.99 2005-06-15T07:52:35Z 2020-02-15T06:59:56Z +14261 530 1 1516 0.99 2005-06-15T23:11:10Z 2020-02-15T06:59:56Z +14262 530 1 2158 2.99 2005-06-17T23:36:27Z 2020-02-15T06:59:56Z +14263 530 2 3669 2.99 2005-07-06T08:38:29Z 2020-02-15T06:59:56Z +14264 530 2 3887 4.99 2005-07-06T18:46:34Z 2020-02-15T06:59:56Z +14265 530 2 5663 0.99 2005-07-10T08:01:33Z 2020-02-15T06:59:56Z +14266 530 1 7031 3.99 2005-07-27T03:02:07Z 2020-02-15T06:59:56Z +14267 530 2 7075 1.99 2005-07-27T04:11:40Z 2020-02-15T06:59:56Z +14268 530 1 7218 4.99 2005-07-27T09:34:24Z 2020-02-15T06:59:56Z +14269 530 2 8208 4.99 2005-07-28T23:26:35Z 2020-02-15T06:59:56Z +14270 530 1 8736 0.99 2005-07-29T18:31:15Z 2020-02-15T06:59:56Z +14271 530 1 9914 4.99 2005-07-31T14:51:19Z 2020-02-15T06:59:56Z +14272 530 2 10211 3.99 2005-08-01T01:01:16Z 2020-02-15T06:59:56Z +14273 530 2 10504 4.99 2005-08-01T11:10:55Z 2020-02-15T06:59:56Z +14274 530 1 11326 0.99 2005-08-02T16:34:29Z 2020-02-15T06:59:56Z +14275 530 1 12220 4.99 2005-08-18T02:50:02Z 2020-02-15T06:59:56Z +14276 530 1 12387 2.99 2005-08-18T08:46:24Z 2020-02-15T06:59:56Z +14277 530 1 12649 4.99 2005-08-18T18:31:47Z 2020-02-15T06:59:56Z +14278 530 1 13998 5.99 2005-08-20T19:52:38Z 2020-02-15T06:59:56Z +14279 530 2 14707 5.99 2005-08-21T21:06:29Z 2020-02-15T06:59:56Z +14280 530 2 15066 0.99 2005-08-22T10:49:06Z 2020-02-15T06:59:56Z +14281 530 1 13561 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14282 531 1 233 4.99 2005-05-26T11:43:44Z 2020-02-15T06:59:56Z +14283 531 1 681 2.99 2005-05-28T23:39:44Z 2020-02-15T06:59:56Z +14284 531 2 2972 2.99 2005-06-20T07:57:54Z 2020-02-15T06:59:56Z +14285 531 2 3921 5.99 2005-07-06T20:29:48Z 2020-02-15T06:59:56Z +14286 531 1 5587 5.99 2005-07-10T04:17:25Z 2020-02-15T06:59:56Z +14287 531 2 5850 0.99 2005-07-10T17:36:27Z 2020-02-15T06:59:56Z +14288 531 2 5904 4.99 2005-07-10T20:39:44Z 2020-02-15T06:59:56Z +14289 531 1 6756 4.99 2005-07-12T15:08:28Z 2020-02-15T06:59:56Z +14290 531 1 6876 4.99 2005-07-12T20:32:50Z 2020-02-15T06:59:56Z +14291 531 2 7204 2.99 2005-07-27T09:02:31Z 2020-02-15T06:59:56Z +14292 531 1 7391 6.99 2005-07-27T16:00:00Z 2020-02-15T06:59:56Z +14293 531 2 7444 2.99 2005-07-27T17:49:16Z 2020-02-15T06:59:56Z +14294 531 2 7753 6.99 2005-07-28T06:09:19Z 2020-02-15T06:59:56Z +14295 531 2 8359 5.99 2005-07-29T05:02:12Z 2020-02-15T06:59:56Z +14296 531 2 8860 4.99 2005-07-29T23:45:57Z 2020-02-15T06:59:56Z +14297 531 2 8943 0.99 2005-07-30T03:06:48Z 2020-02-15T06:59:56Z +14298 531 2 9107 4.99 2005-07-30T08:52:45Z 2020-02-15T06:59:56Z +14299 531 2 10920 4.99 2005-08-02T02:14:10Z 2020-02-15T06:59:56Z +14300 531 1 10941 5.99 2005-08-02T03:11:33Z 2020-02-15T06:59:56Z +14301 531 2 11026 4.99 2005-08-02T05:46:05Z 2020-02-15T06:59:56Z +14302 531 1 11265 10.99 2005-08-02T14:05:42Z 2020-02-15T06:59:56Z +14303 531 1 11666 2.99 2005-08-17T05:45:10Z 2020-02-15T06:59:56Z +14304 531 1 12923 2.99 2005-08-19T04:50:20Z 2020-02-15T06:59:56Z +14305 531 2 13300 8.99 2005-08-19T18:46:56Z 2020-02-15T06:59:56Z +14306 531 2 15360 0.99 2005-08-22T21:36:51Z 2020-02-15T06:59:56Z +14307 532 1 43 2.99 2005-05-25T05:39:25Z 2020-02-15T06:59:56Z +14308 532 1 1694 4.99 2005-06-16T12:40:23Z 2020-02-15T06:59:56Z +14309 532 2 2821 3.99 2005-06-19T20:26:52Z 2020-02-15T06:59:56Z +14310 532 1 4336 2.99 2005-07-07T18:34:36Z 2020-02-15T06:59:56Z +14311 532 2 4962 4.99 2005-07-08T23:36:13Z 2020-02-15T06:59:56Z +14312 532 2 5190 2.99 2005-07-09T10:25:24Z 2020-02-15T06:59:56Z +14313 532 1 5253 7.99 2005-07-09T13:41:17Z 2020-02-15T06:59:56Z +14314 532 2 5278 4.99 2005-07-09T14:44:23Z 2020-02-15T06:59:56Z +14315 532 2 5805 8.99 2005-07-10T15:08:41Z 2020-02-15T06:59:56Z +14316 532 1 5887 2.99 2005-07-10T19:45:47Z 2020-02-15T06:59:56Z +14317 532 2 6345 7.99 2005-07-11T20:05:18Z 2020-02-15T06:59:56Z +14318 532 2 6598 4.99 2005-07-12T07:38:25Z 2020-02-15T06:59:56Z +14319 532 1 6730 3.99 2005-07-12T13:58:25Z 2020-02-15T06:59:56Z +14320 532 1 7192 4.99 2005-07-27T08:36:55Z 2020-02-15T06:59:56Z +14321 532 2 7572 2.99 2005-07-27T22:44:29Z 2020-02-15T06:59:56Z +14322 532 1 8273 5.99 2005-07-29T01:33:16Z 2020-02-15T06:59:56Z +14323 532 1 9843 2.99 2005-07-31T12:25:28Z 2020-02-15T06:59:56Z +14324 532 2 10286 6.99 2005-08-01T03:35:58Z 2020-02-15T06:59:56Z +14325 532 2 10712 5.99 2005-08-01T18:47:56Z 2020-02-15T06:59:56Z +14326 532 1 10945 5.99 2005-08-02T03:20:23Z 2020-02-15T06:59:56Z +14327 532 2 11251 2.99 2005-08-02T13:40:49Z 2020-02-15T06:59:56Z +14328 532 2 11318 4.99 2005-08-02T16:09:11Z 2020-02-15T06:59:56Z +14329 532 2 12061 3.99 2005-08-17T21:13:35Z 2020-02-15T06:59:56Z +14330 532 2 12295 5.99 2005-08-18T05:15:46Z 2020-02-15T06:59:56Z +14331 532 2 13038 4.99 2005-08-19T08:55:16Z 2020-02-15T06:59:56Z +14332 532 1 13192 8.99 2005-08-19T14:30:06Z 2020-02-15T06:59:56Z +14333 532 1 13254 4.99 2005-08-19T16:54:01Z 2020-02-15T06:59:56Z +14334 532 1 13908 4.99 2005-08-20T16:21:40Z 2020-02-15T06:59:56Z +14335 532 2 15180 0.99 2005-08-22T15:42:57Z 2020-02-15T06:59:56Z +14336 532 2 15414 1.99 2005-08-22T23:43:54Z 2020-02-15T06:59:56Z +14337 532 1 16014 5.99 2005-08-23T21:18:31Z 2020-02-15T06:59:56Z +14338 532 1 14616 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14339 533 1 173 0.99 2005-05-26T03:42:10Z 2020-02-15T06:59:56Z +14340 533 2 190 1.99 2005-05-26T06:11:28Z 2020-02-15T06:59:56Z +14341 533 1 615 5.99 2005-05-28T15:35:52Z 2020-02-15T06:59:56Z +14342 533 1 1421 5.99 2005-06-15T17:57:04Z 2020-02-15T06:59:56Z +14343 533 1 1652 0.99 2005-06-16T09:31:37Z 2020-02-15T06:59:56Z +14344 533 1 1859 0.99 2005-06-17T01:13:38Z 2020-02-15T06:59:56Z +14345 533 1 1954 2.99 2005-06-17T08:37:55Z 2020-02-15T06:59:56Z +14346 533 2 2770 6.99 2005-06-19T17:54:22Z 2020-02-15T06:59:56Z +14347 533 1 2956 0.99 2005-06-20T06:47:23Z 2020-02-15T06:59:56Z +14348 533 1 4112 8.99 2005-07-07T06:49:09Z 2020-02-15T06:59:56Z +14349 533 1 4788 4.99 2005-07-08T16:17:35Z 2020-02-15T06:59:56Z +14350 533 2 6781 2.99 2005-07-12T16:21:47Z 2020-02-15T06:59:56Z +14351 533 2 6834 0.99 2005-07-12T18:53:37Z 2020-02-15T06:59:56Z +14352 533 2 6837 9.99 2005-07-12T18:59:45Z 2020-02-15T06:59:56Z +14353 533 2 7555 4.99 2005-07-27T22:17:05Z 2020-02-15T06:59:56Z +14354 533 1 8093 8.99 2005-07-28T18:29:16Z 2020-02-15T06:59:56Z +14355 533 2 8104 2.99 2005-07-28T18:59:36Z 2020-02-15T06:59:56Z +14356 533 2 8250 2.99 2005-07-29T00:49:15Z 2020-02-15T06:59:56Z +14357 533 1 8471 2.99 2005-07-29T08:32:11Z 2020-02-15T06:59:56Z +14358 533 1 8676 1.99 2005-07-29T15:59:06Z 2020-02-15T06:59:56Z +14359 533 2 8786 1.99 2005-07-29T20:39:49Z 2020-02-15T06:59:56Z +14360 533 2 10090 3.99 2005-07-31T20:22:01Z 2020-02-15T06:59:56Z +14361 533 1 10380 2.99 2005-08-01T06:34:36Z 2020-02-15T06:59:56Z +14362 533 1 10614 6.99 2005-08-01T14:57:00Z 2020-02-15T06:59:56Z +14363 533 2 11524 7.99 2005-08-17T00:10:55Z 2020-02-15T06:59:56Z +14364 533 1 11758 8.99 2005-08-17T09:33:02Z 2020-02-15T06:59:56Z +14365 533 1 11918 2.99 2005-08-17T16:08:42Z 2020-02-15T06:59:56Z +14366 533 1 12602 0.99 2005-08-18T16:49:50Z 2020-02-15T06:59:56Z +14367 533 1 12655 6.99 2005-08-18T18:57:44Z 2020-02-15T06:59:56Z +14368 533 1 14263 7.99 2005-08-21T06:08:15Z 2020-02-15T06:59:56Z +14369 533 1 14800 4.99 2005-08-22T00:46:18Z 2020-02-15T06:59:56Z +14370 533 2 16006 0.99 2005-08-23T21:01:09Z 2020-02-15T06:59:56Z +14371 533 2 14018 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14372 534 2 304 5.99 2005-05-26T21:21:28Z 2020-02-15T06:59:56Z +14373 534 2 940 0.99 2005-05-30T15:01:02Z 2020-02-15T06:59:56Z +14374 534 1 1610 4.99 2005-06-16T06:36:33Z 2020-02-15T06:59:56Z +14375 534 1 1673 2.99 2005-06-16T10:40:17Z 2020-02-15T06:59:56Z +14376 534 1 2436 0.99 2005-06-18T18:13:32Z 2020-02-15T06:59:56Z +14377 534 2 3213 1.99 2005-06-21T01:05:19Z 2020-02-15T06:59:56Z +14378 534 1 3216 4.99 2005-06-21T01:19:37Z 2020-02-15T06:59:56Z +14379 534 1 3735 2.99 2005-07-06T11:42:04Z 2020-02-15T06:59:56Z +14380 534 2 4998 4.99 2005-07-09T01:07:21Z 2020-02-15T06:59:56Z +14381 534 2 7113 2.99 2005-07-27T05:41:20Z 2020-02-15T06:59:56Z +14382 534 1 7662 2.99 2005-07-28T02:16:08Z 2020-02-15T06:59:56Z +14383 534 2 8633 0.99 2005-07-29T14:19:53Z 2020-02-15T06:59:56Z +14384 534 1 9456 5.99 2005-07-30T22:22:16Z 2020-02-15T06:59:56Z +14385 534 2 9464 4.99 2005-07-30T22:31:31Z 2020-02-15T06:59:56Z +14386 534 2 10465 5.99 2005-08-01T09:45:25Z 2020-02-15T06:59:56Z +14387 534 2 10725 6.99 2005-08-01T19:11:04Z 2020-02-15T06:59:56Z +14388 534 1 10796 0.99 2005-08-01T21:56:41Z 2020-02-15T06:59:56Z +14389 534 2 11180 5.99 2005-08-02T10:54:30Z 2020-02-15T06:59:56Z +14390 534 2 12305 2.99 2005-08-18T05:46:29Z 2020-02-15T06:59:56Z +14391 534 1 12691 5.99 2005-08-18T20:07:46Z 2020-02-15T06:59:56Z +14392 534 2 12798 4.99 2005-08-19T00:24:33Z 2020-02-15T06:59:56Z +14393 534 2 13294 0.99 2005-08-19T18:36:35Z 2020-02-15T06:59:56Z +14394 534 2 14816 1.99 2005-08-22T01:15:51Z 2020-02-15T06:59:56Z +14395 534 1 14526 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14396 535 1 37 0.99 2005-05-25T04:44:31Z 2020-02-15T06:59:56Z +14397 535 2 541 2.99 2005-05-28T06:41:58Z 2020-02-15T06:59:56Z +14398 535 1 778 3.99 2005-05-29T14:09:53Z 2020-02-15T06:59:56Z +14399 535 2 959 4.99 2005-05-30T18:07:00Z 2020-02-15T06:59:56Z +14400 535 1 1712 4.99 2005-06-16T14:25:09Z 2020-02-15T06:59:56Z +14401 535 1 3228 4.99 2005-06-21T02:20:24Z 2020-02-15T06:59:56Z +14402 535 1 4331 4.99 2005-07-07T18:22:30Z 2020-02-15T06:59:56Z +14403 535 1 4718 6.99 2005-07-08T12:32:08Z 2020-02-15T06:59:56Z +14404 535 1 4743 2.99 2005-07-08T13:42:36Z 2020-02-15T06:59:56Z +14405 535 2 4914 6.99 2005-07-08T21:30:53Z 2020-02-15T06:59:56Z +14406 535 1 5588 0.99 2005-07-10T04:21:10Z 2020-02-15T06:59:56Z +14407 535 2 5890 8.99 2005-07-10T20:00:25Z 2020-02-15T06:59:56Z +14408 535 1 6504 2.99 2005-07-12T03:19:14Z 2020-02-15T06:59:56Z +14409 535 1 8395 2.99 2005-07-29T06:03:30Z 2020-02-15T06:59:56Z +14410 535 1 8645 4.99 2005-07-29T14:47:45Z 2020-02-15T06:59:56Z +14411 535 2 9440 0.99 2005-07-30T21:40:15Z 2020-02-15T06:59:56Z +14412 535 1 9524 4.99 2005-07-31T01:01:06Z 2020-02-15T06:59:56Z +14413 535 2 10322 5.99 2005-08-01T04:44:13Z 2020-02-15T06:59:56Z +14414 535 2 10353 3.99 2005-08-01T05:46:33Z 2020-02-15T06:59:56Z +14415 535 2 11736 8.99 2005-08-17T08:40:55Z 2020-02-15T06:59:56Z +14416 535 1 11855 7.99 2005-08-17T13:43:07Z 2020-02-15T06:59:56Z +14417 535 2 12168 2.99 2005-08-18T01:03:52Z 2020-02-15T06:59:56Z +14418 535 1 12233 0.99 2005-08-18T03:16:54Z 2020-02-15T06:59:56Z +14419 535 2 12673 4.99 2005-08-18T19:21:56Z 2020-02-15T06:59:56Z +14420 535 1 12732 0.99 2005-08-18T21:57:50Z 2020-02-15T06:59:56Z +14421 535 2 12750 1.99 2005-08-18T22:32:39Z 2020-02-15T06:59:56Z +14422 535 1 13631 4.99 2005-08-20T07:07:37Z 2020-02-15T06:59:56Z +14423 535 1 13852 0.99 2005-08-20T14:45:23Z 2020-02-15T06:59:56Z +14424 535 1 14522 4.99 2005-08-21T15:01:34Z 2020-02-15T06:59:56Z +14425 535 2 15075 5.99 2005-08-22T11:04:52Z 2020-02-15T06:59:56Z +14426 535 1 15287 6.99 2005-08-22T19:19:37Z 2020-02-15T06:59:56Z +14427 535 1 16017 0.99 2005-08-23T21:27:11Z 2020-02-15T06:59:56Z +14428 536 1 237 0.99 2005-05-26T12:15:13Z 2020-02-15T06:59:56Z +14429 536 1 929 6.99 2005-05-30T12:32:39Z 2020-02-15T06:59:56Z +14430 536 1 1582 4.99 2005-06-16T04:31:57Z 2020-02-15T06:59:56Z +14431 536 2 1962 2.99 2005-06-17T09:08:58Z 2020-02-15T06:59:56Z +14432 536 2 2403 2.99 2005-06-18T16:33:22Z 2020-02-15T06:59:56Z +14433 536 1 3483 4.99 2005-07-05T23:13:51Z 2020-02-15T06:59:56Z +14434 536 1 3514 0.99 2005-07-06T00:46:54Z 2020-02-15T06:59:56Z +14435 536 1 4448 2.99 2005-07-07T23:17:12Z 2020-02-15T06:59:56Z +14436 536 2 5196 0.99 2005-07-09T10:43:34Z 2020-02-15T06:59:56Z +14437 536 1 6400 5.99 2005-07-11T22:43:44Z 2020-02-15T06:59:56Z +14438 536 1 7065 4.99 2005-07-27T03:53:43Z 2020-02-15T06:59:56Z +14439 536 2 8535 4.99 2005-07-29T10:32:33Z 2020-02-15T06:59:56Z +14440 536 1 8679 4.99 2005-07-29T16:07:47Z 2020-02-15T06:59:56Z +14441 536 1 8958 2.99 2005-07-30T03:34:26Z 2020-02-15T06:59:56Z +14442 536 1 9411 8.99 2005-07-30T20:38:22Z 2020-02-15T06:59:56Z +14443 536 1 9727 4.99 2005-07-31T08:39:13Z 2020-02-15T06:59:56Z +14444 536 2 10019 3.99 2005-07-31T18:20:56Z 2020-02-15T06:59:56Z +14445 536 1 11473 6.99 2005-08-02T21:52:03Z 2020-02-15T06:59:56Z +14446 536 1 11826 2.99 2005-08-17T12:43:46Z 2020-02-15T06:59:56Z +14447 536 2 11977 4.99 2005-08-17T18:01:15Z 2020-02-15T06:59:56Z +14448 536 2 12052 8.99 2005-08-17T20:57:02Z 2020-02-15T06:59:56Z +14449 536 2 13505 4.99 2005-08-20T02:05:57Z 2020-02-15T06:59:56Z +14450 536 1 15130 7.99 2005-08-22T13:04:32Z 2020-02-15T06:59:56Z +14451 536 1 15978 8.99 2005-08-23T20:08:18Z 2020-02-15T06:59:56Z +14452 536 1 15979 0.99 2005-08-23T20:08:26Z 2020-02-15T06:59:56Z +14453 537 2 603 4.99 2005-05-28T14:27:51Z 2020-02-15T06:59:56Z +14454 537 1 1445 2.99 2005-06-15T19:10:07Z 2020-02-15T06:59:56Z +14455 537 2 2184 2.99 2005-06-18T01:10:36Z 2020-02-15T06:59:56Z +14456 537 1 2586 8.99 2005-06-19T05:05:11Z 2020-02-15T06:59:56Z +14457 537 2 3134 8.99 2005-06-20T19:29:09Z 2020-02-15T06:59:56Z +14458 537 1 3555 0.99 2005-07-06T02:45:35Z 2020-02-15T06:59:56Z +14459 537 2 3853 0.99 2005-07-06T16:59:20Z 2020-02-15T06:59:56Z +14460 537 1 5630 2.99 2005-07-10T06:08:14Z 2020-02-15T06:59:56Z +14461 537 2 5877 5.99 2005-07-10T19:08:51Z 2020-02-15T06:59:56Z +14462 537 2 6310 2.99 2005-07-11T18:14:05Z 2020-02-15T06:59:56Z +14463 537 1 6409 4.99 2005-07-11T23:05:49Z 2020-02-15T06:59:56Z +14464 537 1 6746 0.99 2005-07-12T14:33:01Z 2020-02-15T06:59:56Z +14465 537 1 7179 2.99 2005-07-27T08:10:29Z 2020-02-15T06:59:56Z +14466 537 2 7810 4.99 2005-07-28T08:00:38Z 2020-02-15T06:59:56Z +14467 537 2 8126 4.99 2005-07-28T19:32:41Z 2020-02-15T06:59:56Z +14468 537 2 8256 4.99 2005-07-29T01:02:42Z 2020-02-15T06:59:56Z +14469 537 1 9967 2.99 2005-07-31T16:31:17Z 2020-02-15T06:59:56Z +14470 537 2 12984 4.99 2005-08-19T07:06:51Z 2020-02-15T06:59:56Z +14471 537 2 13885 4.99 2005-08-20T15:32:09Z 2020-02-15T06:59:56Z +14472 537 1 14010 4.99 2005-08-20T20:29:46Z 2020-02-15T06:59:56Z +14473 537 2 14506 0.99 2005-08-21T14:32:27Z 2020-02-15T06:59:56Z +14474 537 1 14670 0.99 2005-08-21T19:54:11Z 2020-02-15T06:59:56Z +14475 537 1 15149 2.99 2005-08-22T14:08:06Z 2020-02-15T06:59:56Z +14476 537 1 15832 8.99 2005-08-23T15:21:35Z 2020-02-15T06:59:56Z +14477 537 1 13419 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14478 538 2 594 2.99 2005-05-28T13:41:56Z 2020-02-15T06:59:56Z +14479 538 2 734 4.99 2005-05-29T07:38:52Z 2020-02-15T06:59:56Z +14480 538 1 1314 5.99 2005-06-15T10:21:45Z 2020-02-15T06:59:56Z +14481 538 1 1912 4.99 2005-06-17T05:18:32Z 2020-02-15T06:59:56Z +14482 538 1 2682 4.99 2005-06-19T12:18:17Z 2020-02-15T06:59:56Z +14483 538 2 3189 2.99 2005-06-20T23:19:33Z 2020-02-15T06:59:56Z +14484 538 2 3554 4.99 2005-07-06T02:37:10Z 2020-02-15T06:59:56Z +14485 538 2 5135 8.99 2005-07-09T07:53:22Z 2020-02-15T06:59:56Z +14486 538 1 5369 4.99 2005-07-09T18:42:16Z 2020-02-15T06:59:56Z +14487 538 1 5486 2.99 2005-07-09T23:57:44Z 2020-02-15T06:59:56Z +14488 538 1 5898 2.99 2005-07-10T20:18:09Z 2020-02-15T06:59:56Z +14489 538 2 6130 2.99 2005-07-11T08:19:56Z 2020-02-15T06:59:56Z +14490 538 1 6332 0.99 2005-07-11T19:19:06Z 2020-02-15T06:59:56Z +14491 538 2 6936 0.99 2005-07-26T23:13:34Z 2020-02-15T06:59:56Z +14492 538 1 7694 0.99 2005-07-28T03:39:25Z 2020-02-15T06:59:56Z +14493 538 1 8765 0.99 2005-07-29T19:40:08Z 2020-02-15T06:59:56Z +14494 538 1 9307 0.99 2005-07-30T16:52:43Z 2020-02-15T06:59:56Z +14495 538 1 9643 4.99 2005-07-31T05:35:48Z 2020-02-15T06:59:56Z +14496 538 2 9897 4.99 2005-07-31T14:11:57Z 2020-02-15T06:59:56Z +14497 538 2 9939 8.99 2005-07-31T15:29:00Z 2020-02-15T06:59:56Z +14498 538 2 10701 3.99 2005-08-01T18:28:17Z 2020-02-15T06:59:56Z +14499 538 1 10732 5.99 2005-08-01T19:25:18Z 2020-02-15T06:59:56Z +14500 538 1 10962 4.99 2005-08-02T03:48:13Z 2020-02-15T06:59:56Z +14501 538 2 12089 5.99 2005-08-17T22:20:29Z 2020-02-15T06:59:56Z +14502 538 1 13544 1.99 2005-08-20T03:44:26Z 2020-02-15T06:59:56Z +14503 538 2 13770 4.99 2005-08-20T11:45:54Z 2020-02-15T06:59:56Z +14504 538 2 14572 2.99 2005-08-21T16:44:31Z 2020-02-15T06:59:56Z +14505 538 1 14591 0.99 2005-08-21T17:30:09Z 2020-02-15T06:59:56Z +14506 538 1 15343 6.99 2005-08-22T21:01:25Z 2020-02-15T06:59:56Z +14507 539 2 250 4.99 2005-05-26T14:30:24Z 2020-02-15T06:59:56Z +14508 539 1 342 0.99 2005-05-27T04:11:04Z 2020-02-15T06:59:56Z +14509 539 2 1282 3.99 2005-06-15T08:25:33Z 2020-02-15T06:59:56Z +14510 539 1 1327 0.99 2005-06-15T11:11:39Z 2020-02-15T06:59:56Z +14511 539 2 1444 4.99 2005-06-15T19:08:16Z 2020-02-15T06:59:56Z +14512 539 1 4035 2.99 2005-07-07T02:45:02Z 2020-02-15T06:59:56Z +14513 539 1 4247 0.99 2005-07-07T13:51:54Z 2020-02-15T06:59:56Z +14514 539 2 5086 4.99 2005-07-09T05:40:04Z 2020-02-15T06:59:56Z +14515 539 2 5139 7.99 2005-07-09T08:01:51Z 2020-02-15T06:59:56Z +14516 539 2 5493 2.99 2005-07-10T00:11:44Z 2020-02-15T06:59:56Z +14517 539 2 6874 5.99 2005-07-12T20:20:53Z 2020-02-15T06:59:56Z +14518 539 1 7781 2.99 2005-07-28T07:13:20Z 2020-02-15T06:59:56Z +14519 539 2 8247 6.99 2005-07-29T00:41:38Z 2020-02-15T06:59:56Z +14520 539 2 8761 5.99 2005-07-29T19:26:47Z 2020-02-15T06:59:56Z +14521 539 2 9250 0.99 2005-07-30T14:18:16Z 2020-02-15T06:59:56Z +14522 539 1 9777 7.99 2005-07-31T10:01:06Z 2020-02-15T06:59:56Z +14523 539 1 9796 4.99 2005-07-31T10:52:43Z 2020-02-15T06:59:56Z +14524 539 2 10922 3.99 2005-08-02T02:14:40Z 2020-02-15T06:59:56Z +14525 539 1 12848 2.99 2005-08-19T02:05:11Z 2020-02-15T06:59:56Z +14526 539 2 13615 2.99 2005-08-20T06:28:53Z 2020-02-15T06:59:56Z +14527 539 2 13778 5.99 2005-08-20T12:03:44Z 2020-02-15T06:59:56Z +14528 539 1 15356 2.99 2005-08-22T21:24:19Z 2020-02-15T06:59:56Z +14529 540 2 1263 2.99 2005-06-15T06:56:39Z 2020-02-15T06:59:56Z +14530 540 2 1290 4.99 2005-06-15T08:52:44Z 2020-02-15T06:59:56Z +14531 540 2 2640 2.99 2005-06-19T09:26:13Z 2020-02-15T06:59:56Z +14532 540 1 2953 3.99 2005-06-20T06:39:11Z 2020-02-15T06:59:56Z +14533 540 1 3340 3.99 2005-06-21T10:37:23Z 2020-02-15T06:59:56Z +14534 540 2 4628 4.99 2005-07-08T08:25:52Z 2020-02-15T06:59:56Z +14535 540 2 4991 4.99 2005-07-09T00:49:03Z 2020-02-15T06:59:56Z +14536 540 1 6103 2.99 2005-07-11T06:59:55Z 2020-02-15T06:59:56Z +14537 540 2 6145 7.99 2005-07-11T09:07:01Z 2020-02-15T06:59:56Z +14538 540 2 6182 2.99 2005-07-11T11:11:38Z 2020-02-15T06:59:56Z +14539 540 1 6748 6.99 2005-07-12T14:39:27Z 2020-02-15T06:59:56Z +14540 540 1 6919 0.99 2005-07-12T22:32:17Z 2020-02-15T06:59:56Z +14541 540 2 9762 4.99 2005-07-31T09:32:54Z 2020-02-15T06:59:56Z +14542 540 2 9815 2.99 2005-07-31T11:30:51Z 2020-02-15T06:59:56Z +14543 540 1 10924 8.99 2005-08-02T02:20:19Z 2020-02-15T06:59:56Z +14544 540 1 11198 3.99 2005-08-02T11:45:15Z 2020-02-15T06:59:56Z +14545 540 2 11324 4.99 2005-08-02T16:31:17Z 2020-02-15T06:59:56Z +14546 540 2 11432 6.99 2005-08-02T20:10:01Z 2020-02-15T06:59:56Z +14547 540 2 12058 8.99 2005-08-17T21:07:41Z 2020-02-15T06:59:56Z +14548 540 2 12201 4.99 2005-08-18T02:14:06Z 2020-02-15T06:59:56Z +14549 540 1 12300 6.99 2005-08-18T05:36:14Z 2020-02-15T06:59:56Z +14550 540 2 14910 0.99 2005-08-22T04:50:52Z 2020-02-15T06:59:56Z +14551 540 2 15079 2.99 2005-08-22T11:09:56Z 2020-02-15T06:59:56Z +14552 540 2 15953 3.99 2005-08-23T19:13:46Z 2020-02-15T06:59:56Z +14553 541 1 1021 7.99 2005-05-31T03:16:15Z 2020-02-15T06:59:56Z +14554 541 1 1066 4.99 2005-05-31T09:07:33Z 2020-02-15T06:59:56Z +14555 541 2 1986 2.99 2005-06-17T10:34:59Z 2020-02-15T06:59:56Z +14556 541 1 2708 6.99 2005-06-19T13:59:05Z 2020-02-15T06:59:56Z +14557 541 1 5018 2.99 2005-07-09T02:01:05Z 2020-02-15T06:59:56Z +14558 541 2 5197 4.99 2005-07-09T10:43:54Z 2020-02-15T06:59:56Z +14559 541 2 6468 7.99 2005-07-12T01:27:09Z 2020-02-15T06:59:56Z +14560 541 2 6718 2.99 2005-07-12T13:38:06Z 2020-02-15T06:59:56Z +14561 541 1 8113 8.99 2005-07-28T19:14:00Z 2020-02-15T06:59:56Z +14562 541 1 8322 4.99 2005-07-29T03:52:49Z 2020-02-15T06:59:56Z +14563 541 2 9603 0.99 2005-07-31T03:43:43Z 2020-02-15T06:59:56Z +14564 541 1 10306 5.99 2005-08-01T04:19:18Z 2020-02-15T06:59:56Z +14565 541 2 11273 0.99 2005-08-02T14:20:55Z 2020-02-15T06:59:56Z +14566 541 1 12306 4.99 2005-08-18T05:47:55Z 2020-02-15T06:59:56Z +14567 541 2 12395 4.99 2005-08-18T09:06:30Z 2020-02-15T06:59:56Z +14568 541 1 12894 7.99 2005-08-19T03:49:28Z 2020-02-15T06:59:56Z +14569 541 2 13239 4.99 2005-08-19T16:22:13Z 2020-02-15T06:59:56Z +14570 541 2 13640 0.99 2005-08-20T07:22:53Z 2020-02-15T06:59:56Z +14571 541 2 14938 6.99 2005-08-22T05:52:39Z 2020-02-15T06:59:56Z +14572 541 1 15071 4.99 2005-08-22T10:58:43Z 2020-02-15T06:59:56Z +14573 541 2 15141 3.99 2005-08-22T13:41:49Z 2020-02-15T06:59:56Z +14574 541 1 15223 1.99 2005-08-22T17:13:39Z 2020-02-15T06:59:56Z +14575 541 1 15421 0.99 2005-08-22T23:56:37Z 2020-02-15T06:59:56Z +14576 541 2 15924 1.99 2005-08-23T18:08:59Z 2020-02-15T06:59:56Z +14577 542 1 220 4.99 2005-05-26T10:06:49Z 2020-02-15T06:59:56Z +14578 542 2 376 4.99 2005-05-27T08:58:15Z 2020-02-15T06:59:56Z +14579 542 1 2610 4.99 2005-06-19T07:16:20Z 2020-02-15T06:59:56Z +14580 542 2 2957 10.99 2005-06-20T06:53:47Z 2020-02-15T06:59:56Z +14581 542 2 5293 0.99 2005-07-09T15:17:23Z 2020-02-15T06:59:56Z +14582 542 1 5477 6.99 2005-07-09T23:43:49Z 2020-02-15T06:59:56Z +14583 542 2 6077 5.99 2005-07-11T05:06:08Z 2020-02-15T06:59:56Z +14584 542 2 6325 5.99 2005-07-11T19:06:01Z 2020-02-15T06:59:56Z +14585 542 1 6887 9.99 2005-07-12T21:00:23Z 2020-02-15T06:59:56Z +14586 542 2 7672 8.99 2005-07-28T02:49:41Z 2020-02-15T06:59:56Z +14587 542 1 8533 4.99 2005-07-29T10:29:16Z 2020-02-15T06:59:56Z +14588 542 2 8544 3.99 2005-07-29T11:02:08Z 2020-02-15T06:59:56Z +14589 542 1 10280 4.99 2005-08-01T03:27:15Z 2020-02-15T06:59:56Z +14590 542 2 11583 0.99 2005-08-17T02:08:13Z 2020-02-15T06:59:56Z +14591 542 2 11903 2.99 2005-08-17T15:37:45Z 2020-02-15T06:59:56Z +14592 542 1 12819 0.99 2005-08-19T01:05:05Z 2020-02-15T06:59:56Z +14593 542 1 13447 0.99 2005-08-20T00:09:36Z 2020-02-15T06:59:56Z +14594 542 2 14982 9.99 2005-08-22T07:20:55Z 2020-02-15T06:59:56Z +14595 543 1 243 6.99 2005-05-26T13:06:05Z 2020-02-15T06:59:56Z +14596 543 2 476 1.99 2005-05-27T22:31:36Z 2020-02-15T06:59:56Z +14597 543 2 1720 4.99 2005-06-16T15:00:14Z 2020-02-15T06:59:56Z +14598 543 1 2426 2.99 2005-06-18T17:40:44Z 2020-02-15T06:59:56Z +14599 543 2 3070 4.99 2005-06-20T14:15:39Z 2020-02-15T06:59:56Z +14600 543 1 3128 2.99 2005-06-20T18:41:47Z 2020-02-15T06:59:56Z +14601 543 2 3467 5.99 2005-06-21T22:19:25Z 2020-02-15T06:59:56Z +14602 543 1 4887 2.99 2005-07-08T19:59:14Z 2020-02-15T06:59:56Z +14603 543 2 5467 4.99 2005-07-09T23:05:47Z 2020-02-15T06:59:56Z +14604 543 2 6013 4.99 2005-07-11T02:02:03Z 2020-02-15T06:59:56Z +14605 543 2 7312 2.99 2005-07-27T13:03:14Z 2020-02-15T06:59:56Z +14606 543 1 8580 2.99 2005-07-29T12:00:27Z 2020-02-15T06:59:56Z +14607 543 2 8845 4.99 2005-07-29T23:06:13Z 2020-02-15T06:59:56Z +14608 543 1 9505 2.99 2005-07-31T00:11:19Z 2020-02-15T06:59:56Z +14609 543 1 9999 0.99 2005-07-31T17:40:53Z 2020-02-15T06:59:56Z +14610 543 2 10257 0.99 2005-08-01T02:49:43Z 2020-02-15T06:59:56Z +14611 543 1 10520 4.99 2005-08-01T11:45:58Z 2020-02-15T06:59:56Z +14612 543 2 11241 9.99 2005-08-02T13:29:24Z 2020-02-15T06:59:56Z +14613 543 1 11681 2.99 2005-08-17T06:13:30Z 2020-02-15T06:59:56Z +14614 543 1 13187 0.99 2005-08-19T14:24:48Z 2020-02-15T06:59:56Z +14615 543 2 15281 1.99 2005-08-22T19:10:26Z 2020-02-15T06:59:56Z +14616 543 1 15785 1.99 2005-08-23T13:46:27Z 2020-02-15T06:59:56Z +14617 544 1 397 2.99 2005-05-27T12:29:02Z 2020-02-15T06:59:56Z +14618 544 1 864 2.99 2005-05-30T03:27:17Z 2020-02-15T06:59:56Z +14619 544 1 1248 1.99 2005-06-15T05:33:52Z 2020-02-15T06:59:56Z +14620 544 2 1434 10.99 2005-06-15T18:30:46Z 2020-02-15T06:59:56Z +14621 544 1 2373 0.99 2005-06-18T14:37:57Z 2020-02-15T06:59:56Z +14622 544 1 2395 2.99 2005-06-18T15:45:15Z 2020-02-15T06:59:56Z +14623 544 1 4395 0.99 2005-07-07T21:13:22Z 2020-02-15T06:59:56Z +14624 544 1 4703 2.99 2005-07-08T11:44:56Z 2020-02-15T06:59:56Z +14625 544 2 4847 6.99 2005-07-08T18:29:13Z 2020-02-15T06:59:56Z +14626 544 2 8566 2.99 2005-07-29T11:35:46Z 2020-02-15T06:59:56Z +14627 544 1 8937 5.99 2005-07-30T02:53:21Z 2020-02-15T06:59:56Z +14628 544 1 8963 9.99 2005-07-30T03:46:26Z 2020-02-15T06:59:56Z +14629 544 1 10735 0.99 2005-08-01T19:29:45Z 2020-02-15T06:59:56Z +14630 544 1 11401 3.99 2005-08-02T19:05:06Z 2020-02-15T06:59:56Z +14631 544 2 11766 2.99 2005-08-17T09:58:40Z 2020-02-15T06:59:56Z +14632 544 2 12640 3.99 2005-08-18T18:14:49Z 2020-02-15T06:59:56Z +14633 544 2 14142 4.99 2005-08-21T02:07:43Z 2020-02-15T06:59:56Z +14634 544 1 14498 4.99 2005-08-21T14:10:44Z 2020-02-15T06:59:56Z +14635 544 2 14651 8.99 2005-08-21T19:31:09Z 2020-02-15T06:59:56Z +14636 544 1 14981 2.99 2005-08-22T07:19:05Z 2020-02-15T06:59:56Z +14637 544 1 15219 6.99 2005-08-22T17:00:31Z 2020-02-15T06:59:56Z +14638 544 1 15605 4.99 2005-08-23T06:48:47Z 2020-02-15T06:59:56Z +14639 545 2 248 0.99 2005-05-26T14:07:58Z 2020-02-15T06:59:56Z +14640 545 2 715 3.99 2005-05-29T04:22:41Z 2020-02-15T06:59:56Z +14641 545 1 2123 2.99 2005-06-17T20:48:30Z 2020-02-15T06:59:56Z +14642 545 2 3693 8.99 2005-07-06T09:56:09Z 2020-02-15T06:59:56Z +14643 545 1 3975 5.99 2005-07-06T23:00:09Z 2020-02-15T06:59:56Z +14644 545 1 4597 5.99 2005-07-08T06:43:42Z 2020-02-15T06:59:56Z +14645 545 1 5264 0.99 2005-07-09T14:11:28Z 2020-02-15T06:59:56Z +14646 545 1 7078 5.99 2005-07-27T04:16:37Z 2020-02-15T06:59:56Z +14647 545 2 8599 3.99 2005-07-29T12:58:52Z 2020-02-15T06:59:56Z +14648 545 2 8848 2.99 2005-07-29T23:20:58Z 2020-02-15T06:59:56Z +14649 545 2 9810 2.99 2005-07-31T11:22:41Z 2020-02-15T06:59:56Z +14650 545 2 9942 4.99 2005-07-31T15:35:43Z 2020-02-15T06:59:56Z +14651 545 2 10931 2.99 2005-08-02T02:44:59Z 2020-02-15T06:59:56Z +14652 545 2 11760 2.99 2005-08-17T09:44:22Z 2020-02-15T06:59:56Z +14653 545 1 12098 4.99 2005-08-17T22:38:31Z 2020-02-15T06:59:56Z +14654 545 1 12349 2.99 2005-08-18T07:23:42Z 2020-02-15T06:59:56Z +14655 545 2 12667 10.99 2005-08-18T19:11:45Z 2020-02-15T06:59:56Z +14656 545 1 12800 2.99 2005-08-19T00:27:11Z 2020-02-15T06:59:56Z +14657 545 1 13595 4.99 2005-08-20T05:54:27Z 2020-02-15T06:59:56Z +14658 545 1 15585 0.99 2005-08-23T05:55:22Z 2020-02-15T06:59:56Z +14659 545 2 15998 4.99 2005-08-23T20:41:09Z 2020-02-15T06:59:56Z +14660 546 1 197 5.99 2005-05-26T06:59:21Z 2020-02-15T06:59:56Z +14661 546 1 482 6.99 2005-05-27T22:53:02Z 2020-02-15T06:59:56Z +14662 546 1 1181 1.99 2005-06-15T00:42:17Z 2020-02-15T06:59:56Z +14663 546 2 1403 0.99 2005-06-15T16:31:59Z 2020-02-15T06:59:56Z +14664 546 1 1787 3.99 2005-06-16T19:30:59Z 2020-02-15T06:59:56Z +14665 546 1 2361 5.99 2005-06-18T13:19:05Z 2020-02-15T06:59:56Z +14666 546 1 3738 4.99 2005-07-06T11:50:57Z 2020-02-15T06:59:56Z +14667 546 2 4664 0.99 2005-07-08T10:01:28Z 2020-02-15T06:59:56Z +14668 546 1 4734 0.99 2005-07-08T13:12:12Z 2020-02-15T06:59:56Z +14669 546 1 5629 0.99 2005-07-10T06:02:25Z 2020-02-15T06:59:56Z +14670 546 2 6758 9.99 2005-07-12T15:13:49Z 2020-02-15T06:59:56Z +14671 546 1 6786 2.99 2005-07-12T16:32:33Z 2020-02-15T06:59:56Z +14672 546 2 6910 6.99 2005-07-12T22:11:21Z 2020-02-15T06:59:56Z +14673 546 1 8532 4.99 2005-07-29T10:26:56Z 2020-02-15T06:59:56Z +14674 546 1 9087 4.99 2005-07-30T08:19:47Z 2020-02-15T06:59:56Z +14675 546 1 3.99 2005-07-30T21:16:20Z 2020-02-15T06:59:56Z +14676 546 2 9626 1.99 2005-07-31T04:37:41Z 2020-02-15T06:59:56Z +14677 546 2 10370 0.99 2005-08-01T06:18:04Z 2020-02-15T06:59:56Z +14678 546 2 11352 5.99 2005-08-02T17:29:39Z 2020-02-15T06:59:56Z +14679 546 1 11797 4.99 2005-08-17T11:17:21Z 2020-02-15T06:59:56Z +14680 546 2 12591 2.99 2005-08-18T16:16:41Z 2020-02-15T06:59:56Z +14681 546 2 13850 5.99 2005-08-20T14:43:03Z 2020-02-15T06:59:56Z +14682 546 1 14797 4.99 2005-08-22T00:41:24Z 2020-02-15T06:59:56Z +14683 546 1 14829 2.99 2005-08-22T01:35:37Z 2020-02-15T06:59:56Z +14684 546 1 14929 3.99 2005-08-22T05:32:38Z 2020-02-15T06:59:56Z +14685 546 2 15565 4.99 2005-08-23T05:13:09Z 2020-02-15T06:59:56Z +14686 547 1 306 0.99 2005-05-26T21:31:57Z 2020-02-15T06:59:56Z +14687 547 2 443 8.99 2005-05-27T18:35:20Z 2020-02-15T06:59:56Z +14688 547 2 1094 1.99 2005-05-31T13:03:49Z 2020-02-15T06:59:56Z +14689 547 2 2022 8.99 2005-06-17T12:44:39Z 2020-02-15T06:59:56Z +14690 547 2 3679 4.99 2005-07-06T09:15:57Z 2020-02-15T06:59:56Z +14691 547 1 3765 4.99 2005-07-06T13:01:47Z 2020-02-15T06:59:56Z +14692 547 2 5327 4.99 2005-07-09T16:39:49Z 2020-02-15T06:59:56Z +14693 547 2 5854 4.99 2005-07-10T17:47:34Z 2020-02-15T06:59:56Z +14694 547 1 6605 0.99 2005-07-12T08:01:07Z 2020-02-15T06:59:56Z +14695 547 2 7420 4.99 2005-07-27T17:09:39Z 2020-02-15T06:59:56Z +14696 547 2 7547 3.99 2005-07-27T21:51:48Z 2020-02-15T06:59:56Z +14697 547 1 7835 4.99 2005-07-28T08:49:39Z 2020-02-15T06:59:56Z +14698 547 1 7859 3.99 2005-07-28T09:57:17Z 2020-02-15T06:59:56Z +14699 547 1 8828 2.99 2005-07-29T22:32:54Z 2020-02-15T06:59:56Z +14700 547 1 10903 2.99 2005-08-02T01:41:59Z 2020-02-15T06:59:56Z +14701 547 1 10980 4.99 2005-08-02T04:17:32Z 2020-02-15T06:59:56Z +14702 547 2 11170 5.99 2005-08-02T10:21:53Z 2020-02-15T06:59:56Z +14703 547 2 11361 0.99 2005-08-02T17:46:34Z 2020-02-15T06:59:56Z +14704 547 1 12579 0.99 2005-08-18T15:47:49Z 2020-02-15T06:59:56Z +14705 547 2 12943 2.99 2005-08-19T05:46:26Z 2020-02-15T06:59:56Z +14706 547 2 13307 2.99 2005-08-19T18:58:44Z 2020-02-15T06:59:56Z +14707 547 1 14510 9.99 2005-08-21T14:44:41Z 2020-02-15T06:59:56Z +14708 547 2 14884 4.99 2005-08-22T03:57:08Z 2020-02-15T06:59:56Z +14709 548 2 177 6.99 2005-05-26T04:14:29Z 2020-02-15T06:59:56Z +14710 548 1 743 4.99 2005-05-29T08:39:02Z 2020-02-15T06:59:56Z +14711 548 2 872 3.99 2005-05-30T05:03:04Z 2020-02-15T06:59:56Z +14712 548 1 1326 1.99 2005-06-15T11:07:39Z 2020-02-15T06:59:56Z +14713 548 1 2280 2.99 2005-06-18T06:46:54Z 2020-02-15T06:59:56Z +14714 548 2 2978 0.99 2005-06-20T08:25:16Z 2020-02-15T06:59:56Z +14715 548 1 3686 2.99 2005-07-06T09:37:50Z 2020-02-15T06:59:56Z +14716 548 2 3777 2.99 2005-07-06T13:36:48Z 2020-02-15T06:59:56Z +14717 548 1 4155 7.99 2005-07-07T09:00:49Z 2020-02-15T06:59:56Z +14718 548 2 5138 4.99 2005-07-09T08:00:46Z 2020-02-15T06:59:56Z +14719 548 2 6490 4.99 2005-07-12T02:28:03Z 2020-02-15T06:59:56Z +14720 548 1 9614 5.99 2005-07-31T03:59:31Z 2020-02-15T06:59:56Z +14721 548 2 10318 0.99 2005-08-01T04:36:53Z 2020-02-15T06:59:56Z +14722 548 1 12860 5.99 2005-08-19T02:24:41Z 2020-02-15T06:59:56Z +14723 548 1 13691 3.99 2005-08-20T09:07:39Z 2020-02-15T06:59:56Z +14724 548 2 13730 7.99 2005-08-20T10:17:09Z 2020-02-15T06:59:56Z +14725 548 2 14188 0.99 2005-08-21T03:32:04Z 2020-02-15T06:59:56Z +14726 548 2 14723 6.99 2005-08-21T21:52:32Z 2020-02-15T06:59:56Z +14727 548 1 13584 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14728 549 1 6 0.99 2005-05-24T23:08:07Z 2020-02-15T06:59:56Z +14729 549 2 852 4.99 2005-05-30T01:36:57Z 2020-02-15T06:59:56Z +14730 549 1 906 3.99 2005-05-30T10:30:38Z 2020-02-15T06:59:56Z +14731 549 2 1086 4.99 2005-05-31T11:17:37Z 2020-02-15T06:59:56Z +14732 549 1 2050 2.99 2005-06-17T15:07:30Z 2020-02-15T06:59:56Z +14733 549 2 3523 2.99 2005-07-06T01:01:38Z 2020-02-15T06:59:56Z +14734 549 2 3892 4.99 2005-07-06T18:58:58Z 2020-02-15T06:59:56Z +14735 549 1 4447 0.99 2005-07-07T23:15:28Z 2020-02-15T06:59:56Z +14736 549 1 7252 7.99 2005-07-27T10:45:28Z 2020-02-15T06:59:56Z +14737 549 2 8239 0.99 2005-07-29T00:31:39Z 2020-02-15T06:59:56Z +14738 549 1 8316 4.99 2005-07-29T03:38:49Z 2020-02-15T06:59:56Z +14739 549 2 9445 7.99 2005-07-30T21:50:42Z 2020-02-15T06:59:56Z +14740 549 2 9511 9.99 2005-07-31T00:25:05Z 2020-02-15T06:59:56Z +14741 549 2 9887 0.99 2005-07-31T14:00:32Z 2020-02-15T06:59:56Z +14742 549 2 10281 0.99 2005-08-01T03:28:33Z 2020-02-15T06:59:56Z +14743 549 2 11737 4.99 2005-08-17T08:42:08Z 2020-02-15T06:59:56Z +14744 549 2 11878 2.99 2005-08-17T14:23:52Z 2020-02-15T06:59:56Z +14745 549 2 12634 2.99 2005-08-18T17:58:14Z 2020-02-15T06:59:56Z +14746 549 2 12747 4.99 2005-08-18T22:28:22Z 2020-02-15T06:59:56Z +14747 549 1 14434 0.99 2005-08-21T11:40:46Z 2020-02-15T06:59:56Z +14748 550 2 922 7.99 2005-05-30T11:55:55Z 2020-02-15T06:59:56Z +14749 550 1 1233 6.99 2005-06-15T04:18:37Z 2020-02-15T06:59:56Z +14750 550 1 1863 3.99 2005-06-17T01:31:46Z 2020-02-15T06:59:56Z +14751 550 2 1883 4.99 2005-06-17T03:18:51Z 2020-02-15T06:59:56Z +14752 550 1 3154 2.99 2005-06-20T20:44:40Z 2020-02-15T06:59:56Z +14753 550 2 3236 9.99 2005-06-21T02:47:43Z 2020-02-15T06:59:56Z +14754 550 1 3272 10.99 2005-06-21T05:18:27Z 2020-02-15T06:59:56Z +14755 550 1 3979 4.99 2005-07-06T23:04:35Z 2020-02-15T06:59:56Z +14756 550 1 5727 4.99 2005-07-10T11:25:28Z 2020-02-15T06:59:56Z +14757 550 1 6695 2.99 2005-07-12T12:39:39Z 2020-02-15T06:59:56Z +14758 550 1 7030 0.99 2005-07-27T03:01:40Z 2020-02-15T06:59:56Z +14759 550 2 7838 2.99 2005-07-28T09:00:21Z 2020-02-15T06:59:56Z +14760 550 1 8628 6.99 2005-07-29T14:06:24Z 2020-02-15T06:59:56Z +14761 550 2 8838 2.99 2005-07-29T22:52:23Z 2020-02-15T06:59:56Z +14762 550 1 8959 8.99 2005-07-30T03:35:49Z 2020-02-15T06:59:56Z +14763 550 1 9616 2.99 2005-07-31T04:05:01Z 2020-02-15T06:59:56Z +14764 550 1 9748 0.99 2005-07-31T09:17:56Z 2020-02-15T06:59:56Z +14765 550 2 10140 4.99 2005-07-31T22:03:20Z 2020-02-15T06:59:56Z +14766 550 1 11246 2.99 2005-08-02T13:33:56Z 2020-02-15T06:59:56Z +14767 550 2 11320 0.99 2005-08-02T16:13:28Z 2020-02-15T06:59:56Z +14768 550 1 11969 4.99 2005-08-17T17:49:37Z 2020-02-15T06:59:56Z +14769 550 1 12063 2.99 2005-08-17T21:24:48Z 2020-02-15T06:59:56Z +14770 550 2 12077 4.99 2005-08-17T21:59:14Z 2020-02-15T06:59:56Z +14771 550 1 13114 10.99 2005-08-19T11:27:32Z 2020-02-15T06:59:56Z +14772 550 2 14071 2.99 2005-08-20T23:01:56Z 2020-02-15T06:59:56Z +14773 550 2 14127 4.99 2005-08-21T01:33:32Z 2020-02-15T06:59:56Z +14774 550 2 14375 6.99 2005-08-21T09:46:35Z 2020-02-15T06:59:56Z +14775 550 1 14687 4.99 2005-08-21T20:32:16Z 2020-02-15T06:59:56Z +14776 550 2 15431 9.99 2005-08-23T00:26:47Z 2020-02-15T06:59:56Z +14777 550 1 15883 0.99 2005-08-23T16:44:56Z 2020-02-15T06:59:56Z +14778 550 2 15977 4.99 2005-08-23T20:07:10Z 2020-02-15T06:59:56Z +14779 550 2 11757 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14780 551 2 155 7.99 2005-05-26T01:15:05Z 2020-02-15T06:59:56Z +14781 551 1 728 2.99 2005-05-29T06:12:38Z 2020-02-15T06:59:56Z +14782 551 1 795 0.99 2005-05-29T16:57:39Z 2020-02-15T06:59:56Z +14783 551 2 969 4.99 2005-05-30T19:23:48Z 2020-02-15T06:59:56Z +14784 551 2 1005 3.99 2005-05-31T00:53:25Z 2020-02-15T06:59:56Z +14785 551 2 2069 4.99 2005-06-17T16:19:39Z 2020-02-15T06:59:56Z +14786 551 1 2776 3.99 2005-06-19T18:16:24Z 2020-02-15T06:59:56Z +14787 551 2 3996 5.99 2005-07-06T23:46:43Z 2020-02-15T06:59:56Z +14788 551 1 5201 1.99 2005-07-09T10:52:53Z 2020-02-15T06:59:56Z +14789 551 2 5528 0.99 2005-07-10T02:09:21Z 2020-02-15T06:59:56Z +14790 551 1 6041 0.99 2005-07-11T03:14:58Z 2020-02-15T06:59:56Z +14791 551 2 7095 9.99 2005-07-27T04:51:15Z 2020-02-15T06:59:56Z +14792 551 1 8986 0.99 2005-07-30T04:37:20Z 2020-02-15T06:59:56Z +14793 551 1 9287 2.99 2005-07-30T15:35:39Z 2020-02-15T06:59:56Z +14794 551 2 9765 4.99 2005-07-31T09:44:40Z 2020-02-15T06:59:56Z +14795 551 2 11380 0.99 2005-08-02T18:17:32Z 2020-02-15T06:59:56Z +14796 551 2 11883 2.99 2005-08-17T14:41:28Z 2020-02-15T06:59:56Z +14797 551 2 12208 4.99 2005-08-18T02:25:25Z 2020-02-15T06:59:56Z +14798 551 2 12868 0.99 2005-08-19T02:47:19Z 2020-02-15T06:59:56Z +14799 551 1 13439 3.99 2005-08-19T23:42:16Z 2020-02-15T06:59:56Z +14800 551 1 14420 0.99 2005-08-21T11:16:15Z 2020-02-15T06:59:56Z +14801 551 2 14609 4.99 2005-08-21T17:57:26Z 2020-02-15T06:59:56Z +14802 551 2 14633 2.99 2005-08-21T18:51:10Z 2020-02-15T06:59:56Z +14803 551 1 14833 2.99 2005-08-22T01:45:18Z 2020-02-15T06:59:56Z +14804 551 1 15377 4.99 2005-08-22T22:22:33Z 2020-02-15T06:59:56Z +14805 551 2 15390 6.99 2005-08-22T22:57:25Z 2020-02-15T06:59:56Z +14806 552 2 174 0.99 2005-05-26T03:44:10Z 2020-02-15T06:59:56Z +14807 552 2 2320 0.99 2005-06-18T09:24:50Z 2020-02-15T06:59:56Z +14808 552 2 3397 4.99 2005-06-21T15:30:11Z 2020-02-15T06:59:56Z +14809 552 1 4477 6.99 2005-07-08T00:38:24Z 2020-02-15T06:59:56Z +14810 552 1 5213 7.99 2005-07-09T11:39:43Z 2020-02-15T06:59:56Z +14811 552 2 6189 4.99 2005-07-11T11:36:03Z 2020-02-15T06:59:56Z +14812 552 1 7772 2.99 2005-07-28T06:59:09Z 2020-02-15T06:59:56Z +14813 552 1 8085 2.99 2005-07-28T18:13:15Z 2020-02-15T06:59:56Z +14814 552 2 8192 2.99 2005-07-28T22:49:11Z 2020-02-15T06:59:56Z +14815 552 2 8614 5.99 2005-07-29T13:32:05Z 2020-02-15T06:59:56Z +14816 552 2 8894 4.99 2005-07-30T00:48:31Z 2020-02-15T06:59:56Z +14817 552 1 9342 8.99 2005-07-30T18:09:56Z 2020-02-15T06:59:56Z +14818 552 1 11146 1.99 2005-08-02T09:45:32Z 2020-02-15T06:59:56Z +14819 552 2 11205 4.99 2005-08-02T11:56:54Z 2020-02-15T06:59:56Z +14820 552 2 11300 7.99 2005-08-02T15:37:42Z 2020-02-15T06:59:56Z +14821 552 2 12433 4.99 2005-08-18T10:37:49Z 2020-02-15T06:59:56Z +14822 552 2 12880 2.99 2005-08-19T03:27:17Z 2020-02-15T06:59:56Z +14823 552 2 13574 2.99 2005-08-20T05:10:39Z 2020-02-15T06:59:56Z +14824 552 1 13693 0.99 2005-08-20T09:11:42Z 2020-02-15T06:59:56Z +14825 552 2 14724 4.99 2005-08-21T21:53:47Z 2020-02-15T06:59:56Z +14826 552 2 15700 2.99 2005-08-23T10:21:21Z 2020-02-15T06:59:56Z +14827 553 2 789 4.99 2005-05-29T16:17:07Z 2020-02-15T06:59:56Z +14828 553 2 1862 3.99 2005-06-17T01:29:30Z 2020-02-15T06:59:56Z +14829 553 1 2460 8.99 2005-06-18T19:54:13Z 2020-02-15T06:59:56Z +14830 553 2 3103 6.99 2005-06-20T16:58:19Z 2020-02-15T06:59:56Z +14831 553 1 3495 6.99 2005-07-05T23:50:04Z 2020-02-15T06:59:56Z +14832 553 2 3793 4.99 2005-07-06T14:32:44Z 2020-02-15T06:59:56Z +14833 553 2 3859 2.99 2005-07-06T17:18:15Z 2020-02-15T06:59:56Z +14834 553 1 3890 4.99 2005-07-06T18:58:15Z 2020-02-15T06:59:56Z +14835 553 2 3891 4.99 2005-07-06T18:58:25Z 2020-02-15T06:59:56Z +14836 553 2 3942 4.99 2005-07-06T21:21:34Z 2020-02-15T06:59:56Z +14837 553 1 4257 4.99 2005-07-07T14:18:41Z 2020-02-15T06:59:56Z +14838 553 2 4662 0.99 2005-07-08T09:58:54Z 2020-02-15T06:59:56Z +14839 553 2 4845 4.99 2005-07-08T18:28:20Z 2020-02-15T06:59:56Z +14840 553 2 4941 3.99 2005-07-08T22:39:10Z 2020-02-15T06:59:56Z +14841 553 1 6069 2.99 2005-07-11T04:44:59Z 2020-02-15T06:59:56Z +14842 553 2 6657 0.99 2005-07-12T11:11:36Z 2020-02-15T06:59:56Z +14843 553 1 6812 6.99 2005-07-12T18:03:25Z 2020-02-15T06:59:56Z +14844 553 1 7890 4.99 2005-07-28T10:43:40Z 2020-02-15T06:59:56Z +14845 553 2 9272 4.99 2005-07-30T15:05:22Z 2020-02-15T06:59:56Z +14846 553 2 9601 2.99 2005-07-31T03:42:17Z 2020-02-15T06:59:56Z +14847 553 2 11710 4.99 2005-08-17T07:29:44Z 2020-02-15T06:59:56Z +14848 553 1 13972 2.99 2005-08-20T18:52:17Z 2020-02-15T06:59:56Z +14849 553 1 15042 4.99 2005-08-22T09:47:37Z 2020-02-15T06:59:56Z +14850 553 1 15506 0.99 2005-08-23T02:48:24Z 2020-02-15T06:59:56Z +14851 554 1 607 2.99 2005-05-28T15:02:41Z 2020-02-15T06:59:56Z +14852 554 1 817 2.99 2005-05-29T20:39:14Z 2020-02-15T06:59:56Z +14853 554 1 1959 4.99 2005-06-17T08:54:10Z 2020-02-15T06:59:56Z +14854 554 1 2279 6.99 2005-06-18T06:38:22Z 2020-02-15T06:59:56Z +14855 554 2 3278 2.99 2005-06-21T05:41:30Z 2020-02-15T06:59:56Z +14856 554 1 3312 6.99 2005-06-21T08:05:32Z 2020-02-15T06:59:56Z +14857 554 2 4902 4.99 2005-07-08T20:49:30Z 2020-02-15T06:59:56Z +14858 554 1 5527 2.99 2005-07-10T02:06:01Z 2020-02-15T06:59:56Z +14859 554 1 5968 5.99 2005-07-11T00:03:11Z 2020-02-15T06:59:56Z +14860 554 1 6144 2.99 2005-07-11T09:02:53Z 2020-02-15T06:59:56Z +14861 554 1 10612 6.99 2005-08-01T14:55:31Z 2020-02-15T06:59:56Z +14862 554 2 10829 7.99 2005-08-01T23:17:06Z 2020-02-15T06:59:56Z +14863 554 2 11589 9.99 2005-08-17T02:28:22Z 2020-02-15T06:59:56Z +14864 554 1 11873 0.99 2005-08-17T14:14:39Z 2020-02-15T06:59:56Z +14865 554 1 12010 8.99 2005-08-17T19:17:54Z 2020-02-15T06:59:56Z +14866 554 1 12014 0.99 2005-08-17T19:29:44Z 2020-02-15T06:59:56Z +14867 554 2 13139 4.99 2005-08-19T12:32:10Z 2020-02-15T06:59:56Z +14868 554 2 14015 2.99 2005-08-20T20:47:43Z 2020-02-15T06:59:56Z +14869 554 1 14098 3.99 2005-08-21T00:30:32Z 2020-02-15T06:59:56Z +14870 554 1 14469 0.99 2005-08-21T13:07:24Z 2020-02-15T06:59:56Z +14871 554 1 14626 2.99 2005-08-21T18:35:44Z 2020-02-15T06:59:56Z +14872 554 2 15690 4.99 2005-08-23T09:53:30Z 2020-02-15T06:59:56Z +14873 555 2 3232 1.99 2005-06-21T02:30:37Z 2020-02-15T06:59:56Z +14874 555 2 4875 2.99 2005-07-08T19:24:17Z 2020-02-15T06:59:56Z +14875 555 1 8161 0.99 2005-07-28T21:11:00Z 2020-02-15T06:59:56Z +14876 555 1 8245 3.99 2005-07-29T00:37:09Z 2020-02-15T06:59:56Z +14877 555 1 9299 5.99 2005-07-30T16:32:51Z 2020-02-15T06:59:56Z +14878 555 2 9990 7.99 2005-07-31T17:24:21Z 2020-02-15T06:59:56Z +14879 555 2 10076 7.99 2005-07-31T20:00:34Z 2020-02-15T06:59:56Z +14880 555 1 10921 3.99 2005-08-02T02:14:33Z 2020-02-15T06:59:56Z +14881 555 1 11168 4.99 2005-08-02T10:19:42Z 2020-02-15T06:59:56Z +14882 555 1 11718 4.99 2005-08-17T07:44:42Z 2020-02-15T06:59:56Z +14883 555 2 11747 2.99 2005-08-17T09:03:31Z 2020-02-15T06:59:56Z +14884 555 2 12091 4.99 2005-08-17T22:22:50Z 2020-02-15T06:59:56Z +14885 555 2 12150 2.99 2005-08-18T00:13:55Z 2020-02-15T06:59:56Z +14886 555 2 12182 2.99 2005-08-18T01:30:19Z 2020-02-15T06:59:56Z +14887 555 1 12388 2.99 2005-08-18T08:48:09Z 2020-02-15T06:59:56Z +14888 555 1 12883 4.99 2005-08-19T03:33:47Z 2020-02-15T06:59:56Z +14889 555 2 15102 6.99 2005-08-22T11:58:58Z 2020-02-15T06:59:56Z +14890 556 1 184 0.99 2005-05-26T05:29:49Z 2020-02-15T06:59:56Z +14891 556 2 772 5.99 2005-05-29T13:08:06Z 2020-02-15T06:59:56Z +14892 556 1 1083 3.99 2005-05-31T11:04:48Z 2020-02-15T06:59:56Z +14893 556 1 2092 6.99 2005-06-17T18:12:16Z 2020-02-15T06:59:56Z +14894 556 2 2593 5.99 2005-06-19T05:40:11Z 2020-02-15T06:59:56Z +14895 556 2 2986 0.99 2005-06-20T08:50:28Z 2020-02-15T06:59:56Z +14896 556 1 3093 4.99 2005-06-20T16:06:14Z 2020-02-15T06:59:56Z +14897 556 2 3438 6.99 2005-06-21T19:31:40Z 2020-02-15T06:59:56Z +14898 556 2 4719 2.99 2005-07-08T12:33:00Z 2020-02-15T06:59:56Z +14899 556 2 4839 3.99 2005-07-08T18:13:10Z 2020-02-15T06:59:56Z +14900 556 1 4846 0.99 2005-07-08T18:29:05Z 2020-02-15T06:59:56Z +14901 556 2 5722 0.99 2005-07-10T11:10:04Z 2020-02-15T06:59:56Z +14902 556 2 6484 2.99 2005-07-12T02:04:10Z 2020-02-15T06:59:56Z +14903 556 1 8909 5.99 2005-07-30T01:28:03Z 2020-02-15T06:59:56Z +14904 556 2 10106 4.99 2005-07-31T21:00:47Z 2020-02-15T06:59:56Z +14905 556 2 10518 6.99 2005-08-01T11:44:08Z 2020-02-15T06:59:56Z +14906 556 1 11466 1.99 2005-08-02T21:46:46Z 2020-02-15T06:59:56Z +14907 556 2 11804 3.99 2005-08-17T11:42:45Z 2020-02-15T06:59:56Z +14908 556 1 12045 4.99 2005-08-17T20:40:46Z 2020-02-15T06:59:56Z +14909 556 1 14176 2.99 2005-08-21T03:09:23Z 2020-02-15T06:59:56Z +14910 556 1 15568 2.99 2005-08-23T05:24:09Z 2020-02-15T06:59:56Z +14911 557 2 467 4.99 2005-05-27T21:10:03Z 2020-02-15T06:59:56Z +14912 557 1 478 4.99 2005-05-27T22:38:20Z 2020-02-15T06:59:56Z +14913 557 1 1666 0.99 2005-06-16T10:17:19Z 2020-02-15T06:59:56Z +14914 557 2 2988 6.99 2005-06-20T08:59:08Z 2020-02-15T06:59:56Z +14915 557 1 3050 3.99 2005-06-20T13:03:03Z 2020-02-15T06:59:56Z +14916 557 1 4651 0.99 2005-07-08T09:39:39Z 2020-02-15T06:59:56Z +14917 557 1 4851 1.99 2005-07-08T18:40:05Z 2020-02-15T06:59:56Z +14918 557 1 6459 0.99 2005-07-12T01:12:03Z 2020-02-15T06:59:56Z +14919 557 2 6713 3.99 2005-07-12T13:27:36Z 2020-02-15T06:59:56Z +14920 557 2 6823 4.99 2005-07-12T18:24:31Z 2020-02-15T06:59:56Z +14921 557 2 6898 0.99 2005-07-12T21:39:04Z 2020-02-15T06:59:56Z +14922 557 1 9336 0.99 2005-07-30T18:01:15Z 2020-02-15T06:59:56Z +14923 557 1 9341 2.99 2005-07-30T18:07:58Z 2020-02-15T06:59:56Z +14924 557 2 9366 1.99 2005-07-30T18:48:57Z 2020-02-15T06:59:56Z +14925 557 2 9367 6.99 2005-07-30T18:49:58Z 2020-02-15T06:59:56Z +14926 557 1 11181 0.99 2005-08-02T10:55:03Z 2020-02-15T06:59:56Z +14927 557 1 12555 1.99 2005-08-18T14:49:22Z 2020-02-15T06:59:56Z +14928 557 1 12789 2.99 2005-08-19T00:16:19Z 2020-02-15T06:59:56Z +14929 557 1 13540 2.99 2005-08-20T03:41:23Z 2020-02-15T06:59:56Z +14930 557 2 13794 2.99 2005-08-20T12:25:32Z 2020-02-15T06:59:56Z +14931 557 2 15236 0.99 2005-08-22T17:44:27Z 2020-02-15T06:59:56Z +14932 557 2 15570 5.99 2005-08-23T05:24:55Z 2020-02-15T06:59:56Z +14933 557 2 15914 0.99 2005-08-23T17:49:26Z 2020-02-15T06:59:56Z +14934 557 1 14278 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14935 558 2 1967 4.99 2005-06-17T09:19:52Z 2020-02-15T06:59:56Z +14936 558 1 2411 1.99 2005-06-18T16:55:54Z 2020-02-15T06:59:56Z +14937 558 2 2544 4.99 2005-06-19T02:16:17Z 2020-02-15T06:59:56Z +14938 558 2 3016 4.99 2005-06-20T10:55:08Z 2020-02-15T06:59:56Z +14939 558 2 3451 10.99 2005-06-21T21:10:39Z 2020-02-15T06:59:56Z +14940 558 1 3731 9.99 2005-07-06T11:33:36Z 2020-02-15T06:59:56Z +14941 558 1 3954 0.99 2005-07-06T21:57:44Z 2020-02-15T06:59:56Z +14942 558 1 3990 3.99 2005-07-06T23:32:44Z 2020-02-15T06:59:56Z +14943 558 1 4192 5.99 2005-07-07T10:57:06Z 2020-02-15T06:59:56Z +14944 558 1 4932 2.99 2005-07-08T22:17:40Z 2020-02-15T06:59:56Z +14945 558 2 5375 6.99 2005-07-09T18:52:55Z 2020-02-15T06:59:56Z +14946 558 1 5492 3.99 2005-07-10T00:11:09Z 2020-02-15T06:59:56Z +14947 558 2 6278 7.99 2005-07-11T16:20:02Z 2020-02-15T06:59:56Z +14948 558 2 6479 9.99 2005-07-12T01:49:00Z 2020-02-15T06:59:56Z +14949 558 2 6742 4.99 2005-07-12T14:25:31Z 2020-02-15T06:59:56Z +14950 558 1 6757 0.99 2005-07-12T15:09:48Z 2020-02-15T06:59:56Z +14951 558 1 7424 0.99 2005-07-27T17:14:19Z 2020-02-15T06:59:56Z +14952 558 1 8523 2.99 2005-07-29T10:18:27Z 2020-02-15T06:59:56Z +14953 558 1 8858 4.99 2005-07-29T23:44:35Z 2020-02-15T06:59:56Z +14954 558 1 8889 2.99 2005-07-30T00:39:43Z 2020-02-15T06:59:56Z +14955 558 2 10707 0.99 2005-08-01T18:41:34Z 2020-02-15T06:59:56Z +14956 558 1 11268 0.99 2005-08-02T14:10:39Z 2020-02-15T06:59:56Z +14957 558 2 11567 5.99 2005-08-17T01:28:43Z 2020-02-15T06:59:56Z +14958 558 2 12040 6.99 2005-08-17T20:29:56Z 2020-02-15T06:59:56Z +14959 558 1 12194 1.99 2005-08-18T02:04:47Z 2020-02-15T06:59:56Z +14960 558 2 13566 5.99 2005-08-20T04:45:32Z 2020-02-15T06:59:56Z +14961 558 2 14235 7.99 2005-08-21T05:08:42Z 2020-02-15T06:59:56Z +14962 558 1 14286 5.99 2005-08-21T06:53:53Z 2020-02-15T06:59:56Z +14963 559 2 2576 4.99 2005-06-19T04:34:15Z 2020-02-15T06:59:56Z +14964 559 1 2706 0.99 2005-06-19T13:56:51Z 2020-02-15T06:59:56Z +14965 559 2 3046 4.99 2005-06-20T12:42:59Z 2020-02-15T06:59:56Z +14966 559 1 3370 1.99 2005-06-21T13:27:01Z 2020-02-15T06:59:56Z +14967 559 1 3674 5.99 2005-07-06T09:03:13Z 2020-02-15T06:59:56Z +14968 559 1 4120 4.99 2005-07-07T07:07:03Z 2020-02-15T06:59:56Z +14969 559 1 4370 7.99 2005-07-07T20:05:36Z 2020-02-15T06:59:56Z +14970 559 2 5396 1.99 2005-07-09T19:42:52Z 2020-02-15T06:59:56Z +14971 559 1 6201 4.99 2005-07-11T12:18:07Z 2020-02-15T06:59:56Z +14972 559 1 6915 2.99 2005-07-12T22:28:09Z 2020-02-15T06:59:56Z +14973 559 1 7169 1.99 2005-07-27T07:51:39Z 2020-02-15T06:59:56Z +14974 559 1 7680 1.99 2005-07-28T02:59:08Z 2020-02-15T06:59:56Z +14975 559 1 8631 1.99 2005-07-29T14:08:06Z 2020-02-15T06:59:56Z +14976 559 2 9134 0.99 2005-07-30T10:00:21Z 2020-02-15T06:59:56Z +14977 559 1 9877 2.99 2005-07-31T13:41:57Z 2020-02-15T06:59:56Z +14978 559 2 10146 2.99 2005-07-31T22:17:56Z 2020-02-15T06:59:56Z +14979 559 1 10377 3.99 2005-08-01T06:28:28Z 2020-02-15T06:59:56Z +14980 559 1 10669 8.99 2005-08-01T17:03:28Z 2020-02-15T06:59:56Z +14981 559 2 10876 0.99 2005-08-02T00:31:58Z 2020-02-15T06:59:56Z +14982 559 2 11136 1.99 2005-08-02T09:22:57Z 2020-02-15T06:59:56Z +14983 559 1 13234 1.99 2005-08-19T16:17:15Z 2020-02-15T06:59:56Z +14984 559 2 13248 6.99 2005-08-19T16:47:41Z 2020-02-15T06:59:56Z +14985 559 2 13322 4.99 2005-08-19T19:43:08Z 2020-02-15T06:59:56Z +14986 559 1 13845 5.99 2005-08-20T14:31:21Z 2020-02-15T06:59:56Z +14987 559 1 14342 4.99 2005-08-21T08:39:26Z 2020-02-15T06:59:56Z +14988 559 2 14622 4.99 2005-08-21T18:25:59Z 2020-02-15T06:59:56Z +14989 559 2 15440 4.99 2005-08-23T00:37:21Z 2020-02-15T06:59:56Z +14990 559 1 15877 4.99 2005-08-23T16:33:33Z 2020-02-15T06:59:56Z +14991 560 1 137 2.99 2005-05-25T22:25:18Z 2020-02-15T06:59:56Z +14992 560 1 1271 4.99 2005-06-15T07:32:24Z 2020-02-15T06:59:56Z +14993 560 2 1572 1.99 2005-06-16T03:23:22Z 2020-02-15T06:59:56Z +14994 560 1 3941 4.99 2005-07-06T21:20:37Z 2020-02-15T06:59:56Z +14995 560 1 4298 2.99 2005-07-07T16:27:25Z 2020-02-15T06:59:56Z +14996 560 2 4375 9.99 2005-07-07T20:20:29Z 2020-02-15T06:59:56Z +14997 560 1 4453 0.99 2005-07-07T23:32:39Z 2020-02-15T06:59:56Z +14998 560 2 5208 2.99 2005-07-09T11:16:56Z 2020-02-15T06:59:56Z +14999 560 1 6410 4.99 2005-07-11T23:08:06Z 2020-02-15T06:59:56Z +15000 560 1 6945 2.99 2005-07-26T23:35:29Z 2020-02-15T06:59:56Z +15001 560 2 7202 4.99 2005-07-27T09:00:20Z 2020-02-15T06:59:56Z +15002 560 1 7891 3.99 2005-07-28T10:43:56Z 2020-02-15T06:59:56Z +15003 560 1 8753 2.99 2005-07-29T19:15:50Z 2020-02-15T06:59:56Z +15004 560 2 8861 5.99 2005-07-29T23:47:29Z 2020-02-15T06:59:56Z +15005 560 2 8906 4.99 2005-07-30T01:21:39Z 2020-02-15T06:59:56Z +15006 560 1 9265 0.99 2005-07-30T14:55:25Z 2020-02-15T06:59:56Z +15007 560 2 9895 5.99 2005-07-31T14:07:56Z 2020-02-15T06:59:56Z +15008 560 2 10480 4.99 2005-08-01T10:13:41Z 2020-02-15T06:59:56Z +15009 560 1 10702 4.99 2005-08-01T18:34:59Z 2020-02-15T06:59:56Z +15010 560 1 10733 7.99 2005-08-01T19:28:01Z 2020-02-15T06:59:56Z +15011 560 1 11334 7.99 2005-08-02T16:53:20Z 2020-02-15T06:59:56Z +15012 560 1 11788 4.99 2005-08-17T10:59:18Z 2020-02-15T06:59:56Z +15013 560 2 14008 5.99 2005-08-20T20:26:00Z 2020-02-15T06:59:56Z +15014 560 1 14341 1.99 2005-08-21T08:38:24Z 2020-02-15T06:59:56Z +15015 560 2 14363 4.99 2005-08-21T09:20:03Z 2020-02-15T06:59:56Z +15016 560 1 14436 2.99 2005-08-21T11:48:27Z 2020-02-15T06:59:56Z +15017 560 2 14785 2.99 2005-08-22T00:24:37Z 2020-02-15T06:59:56Z +15018 560 1 15352 6.99 2005-08-22T21:16:54Z 2020-02-15T06:59:56Z +15019 560 2 12116 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15020 560 2 14425 0 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15021 561 1 902 4.99 2005-05-30T09:53:36Z 2020-02-15T06:59:56Z +15022 561 2 971 4.99 2005-05-30T20:10:52Z 2020-02-15T06:59:56Z +15023 561 2 1193 2.99 2005-06-15T01:24:20Z 2020-02-15T06:59:56Z +15024 561 2 1505 2.99 2005-06-15T22:12:50Z 2020-02-15T06:59:56Z +15025 561 2 1620 4.99 2005-06-16T07:21:30Z 2020-02-15T06:59:56Z +15026 561 1 2119 4.99 2005-06-17T20:34:42Z 2020-02-15T06:59:56Z +15027 561 1 2357 5.99 2005-06-18T12:59:41Z 2020-02-15T06:59:56Z +15028 561 1 2548 0.99 2005-06-19T02:45:35Z 2020-02-15T06:59:56Z +15029 561 1 2950 4.99 2005-06-20T06:08:36Z 2020-02-15T06:59:56Z +15030 561 1 3160 4.99 2005-06-20T21:20:51Z 2020-02-15T06:59:56Z +15031 561 1 3427 0.99 2005-06-21T18:31:09Z 2020-02-15T06:59:56Z +15032 561 2 6361 2.99 2005-07-11T21:09:14Z 2020-02-15T06:59:56Z +15033 561 1 6435 0.99 2005-07-12T00:16:19Z 2020-02-15T06:59:56Z +15034 561 1 6621 0.99 2005-07-12T08:57:30Z 2020-02-15T06:59:56Z +15035 561 1 6843 4.99 2005-07-12T19:14:05Z 2020-02-15T06:59:56Z +15036 561 1 7698 0.99 2005-07-28T03:44:14Z 2020-02-15T06:59:56Z +15037 561 1 8504 10.99 2005-07-29T09:20:16Z 2020-02-15T06:59:56Z +15038 561 2 9839 7.99 2005-07-31T12:21:16Z 2020-02-15T06:59:56Z +15039 561 2 10317 2.99 2005-08-01T04:35:34Z 2020-02-15T06:59:56Z +15040 561 1 10907 4.99 2005-08-02T01:51:48Z 2020-02-15T06:59:56Z +15041 561 1 11371 2.99 2005-08-02T18:07:36Z 2020-02-15T06:59:56Z +15042 561 2 11402 2.99 2005-08-02T19:07:21Z 2020-02-15T06:59:56Z +15043 561 2 12441 2.99 2005-08-18T10:47:57Z 2020-02-15T06:59:56Z +15044 561 2 14139 0.99 2005-08-21T02:04:33Z 2020-02-15T06:59:56Z +15045 561 1 15573 0.99 2005-08-23T05:28:36Z 2020-02-15T06:59:56Z +15046 561 1 15946 2.99 2005-08-23T18:54:07Z 2020-02-15T06:59:56Z +15047 561 1 14415 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15048 562 2 788 2.99 2005-05-29T16:13:55Z 2020-02-15T06:59:56Z +15049 562 1 941 2.99 2005-05-30T15:02:25Z 2020-02-15T06:59:56Z +15050 562 1 1139 5.99 2005-05-31T19:34:52Z 2020-02-15T06:59:56Z +15051 562 1 1998 3.99 2005-06-17T11:24:57Z 2020-02-15T06:59:56Z +15052 562 1 2705 4.99 2005-06-19T13:54:30Z 2020-02-15T06:59:56Z +15053 562 1 2746 3.99 2005-06-19T16:21:40Z 2020-02-15T06:59:56Z +15054 562 2 3242 4.99 2005-06-21T02:56:24Z 2020-02-15T06:59:56Z +15055 562 2 4732 5.99 2005-07-08T13:09:45Z 2020-02-15T06:59:56Z +15056 562 1 4802 4.99 2005-07-08T16:55:17Z 2020-02-15T06:59:56Z +15057 562 2 5360 0.99 2005-07-09T18:14:03Z 2020-02-15T06:59:56Z +15058 562 2 6065 6.99 2005-07-11T04:25:51Z 2020-02-15T06:59:56Z +15059 562 1 6607 8.99 2005-07-12T08:08:50Z 2020-02-15T06:59:56Z +15060 562 2 7166 3.99 2005-07-27T07:36:56Z 2020-02-15T06:59:56Z +15061 562 1 7430 2.99 2005-07-27T17:26:14Z 2020-02-15T06:59:56Z +15062 562 2 7560 2.99 2005-07-27T22:20:17Z 2020-02-15T06:59:56Z +15063 562 2 8132 0.99 2005-07-28T19:57:31Z 2020-02-15T06:59:56Z +15064 562 2 10868 6.99 2005-08-02T00:25:15Z 2020-02-15T06:59:56Z +15065 562 2 12008 4.99 2005-08-17T19:16:18Z 2020-02-15T06:59:56Z +15066 562 1 12248 5.99 2005-08-18T03:53:18Z 2020-02-15T06:59:56Z +15067 562 2 13225 2.99 2005-08-19T15:54:33Z 2020-02-15T06:59:56Z +15068 562 2 13347 10.99 2005-08-19T20:28:48Z 2020-02-15T06:59:56Z +15069 562 2 13639 0.99 2005-08-20T07:22:07Z 2020-02-15T06:59:56Z +15070 562 1 15212 2.99 2005-08-22T16:44:26Z 2020-02-15T06:59:56Z +15071 562 2 15475 2.99 2005-08-23T01:44:43Z 2020-02-15T06:59:56Z +15072 562 1 15900 1.99 2005-08-23T17:16:30Z 2020-02-15T06:59:56Z +15073 563 1 758 4.99 2005-05-29T10:31:56Z 2020-02-15T06:59:56Z +15074 563 2 773 5.99 2005-05-29T13:18:05Z 2020-02-15T06:59:56Z +15075 563 2 1545 4.99 2005-06-16T01:31:23Z 2020-02-15T06:59:56Z +15076 563 2 2573 0.99 2005-06-19T04:23:18Z 2020-02-15T06:59:56Z +15077 563 1 4106 1.99 2005-07-07T06:33:35Z 2020-02-15T06:59:56Z +15078 563 2 4436 0.99 2005-07-07T22:52:04Z 2020-02-15T06:59:56Z +15079 563 1 4565 3.99 2005-07-08T05:12:28Z 2020-02-15T06:59:56Z +15080 563 2 4629 6.99 2005-07-08T08:31:26Z 2020-02-15T06:59:56Z +15081 563 2 4711 2.99 2005-07-08T12:06:58Z 2020-02-15T06:59:56Z +15082 563 2 4776 5.99 2005-07-08T15:44:20Z 2020-02-15T06:59:56Z +15083 563 2 4808 3.99 2005-07-08T17:02:49Z 2020-02-15T06:59:56Z +15084 563 2 4825 4.99 2005-07-08T17:43:01Z 2020-02-15T06:59:56Z +15085 563 1 4883 0.99 2005-07-08T19:46:58Z 2020-02-15T06:59:56Z +15086 563 1 5406 0.99 2005-07-09T20:13:23Z 2020-02-15T06:59:56Z +15087 563 2 6326 2.99 2005-07-11T19:06:55Z 2020-02-15T06:59:56Z +15088 563 2 7612 0.99 2005-07-28T00:11:55Z 2020-02-15T06:59:56Z +15089 563 1 8262 1.99 2005-07-29T01:11:18Z 2020-02-15T06:59:56Z +15090 563 1 8610 5.99 2005-07-29T13:25:02Z 2020-02-15T06:59:56Z +15091 563 2 8632 6.99 2005-07-29T14:11:25Z 2020-02-15T06:59:56Z +15092 563 2 8812 7.99 2005-07-29T21:47:40Z 2020-02-15T06:59:56Z +15093 563 2 11829 0.99 2005-08-17T12:52:04Z 2020-02-15T06:59:56Z +15094 563 1 12039 1.99 2005-08-17T20:29:08Z 2020-02-15T06:59:56Z +15095 563 1 12202 1.99 2005-08-18T02:14:08Z 2020-02-15T06:59:56Z +15096 563 1 12832 2.99 2005-08-19T01:41:44Z 2020-02-15T06:59:56Z +15097 563 2 13863 9.99 2005-08-20T14:57:50Z 2020-02-15T06:59:56Z +15098 563 2 14592 4.99 2005-08-21T17:30:17Z 2020-02-15T06:59:56Z +15099 563 2 15507 0.99 2005-08-23T02:48:26Z 2020-02-15T06:59:56Z +15100 563 2 15638 3.99 2005-08-23T07:54:54Z 2020-02-15T06:59:56Z +15101 563 1 15850 4.99 2005-08-23T15:45:42Z 2020-02-15T06:59:56Z +15102 564 2 195 5.99 2005-05-26T06:52:36Z 2020-02-15T06:59:56Z +15103 564 1 985 2.99 2005-05-30T22:18:35Z 2020-02-15T06:59:56Z +15104 564 2 1705 2.99 2005-06-16T13:59:42Z 2020-02-15T06:59:56Z +15105 564 1 4196 2.99 2005-07-07T11:06:33Z 2020-02-15T06:59:56Z +15106 564 2 4385 0.99 2005-07-07T20:48:38Z 2020-02-15T06:59:56Z +15107 564 1 6973 2.99 2005-07-27T00:32:04Z 2020-02-15T06:59:56Z +15108 564 2 7470 10.99 2005-07-27T19:01:03Z 2020-02-15T06:59:56Z +15109 564 2 8426 4.99 2005-07-29T07:07:48Z 2020-02-15T06:59:56Z +15110 564 1 8874 0.99 2005-07-30T00:14:45Z 2020-02-15T06:59:56Z +15111 564 2 9063 3.99 2005-07-30T07:24:34Z 2020-02-15T06:59:56Z +15112 564 2 9929 2.99 2005-07-31T15:17:24Z 2020-02-15T06:59:56Z +15113 564 1 10129 6.99 2005-07-31T21:41:35Z 2020-02-15T06:59:56Z +15114 564 2 10352 1.99 2005-08-01T05:44:36Z 2020-02-15T06:59:56Z +15115 564 2 10401 4.99 2005-08-01T07:27:09Z 2020-02-15T06:59:56Z +15116 564 1 10528 2.99 2005-08-01T11:56:22Z 2020-02-15T06:59:56Z +15117 564 2 11768 2.99 2005-08-17T10:02:29Z 2020-02-15T06:59:56Z +15118 564 2 12197 6.99 2005-08-18T02:08:58Z 2020-02-15T06:59:56Z +15119 564 2 12617 2.99 2005-08-18T17:22:48Z 2020-02-15T06:59:56Z +15120 564 2 13324 0.99 2005-08-19T19:51:00Z 2020-02-15T06:59:56Z +15121 564 2 13558 0.99 2005-08-20T04:13:17Z 2020-02-15T06:59:56Z +15122 564 1 13701 0.99 2005-08-20T09:27:05Z 2020-02-15T06:59:56Z +15123 564 2 14439 5.99 2005-08-21T11:52:41Z 2020-02-15T06:59:56Z +15124 564 1 14593 0.99 2005-08-21T17:33:18Z 2020-02-15T06:59:56Z +15125 564 2 15059 8.99 2005-08-22T10:22:00Z 2020-02-15T06:59:56Z +15126 565 1 458 6.99 2005-05-27T19:58:36Z 2020-02-15T06:59:56Z +15127 565 1 1004 0.99 2005-05-31T00:48:36Z 2020-02-15T06:59:56Z +15128 565 2 1460 4.99 2005-06-15T20:27:02Z 2020-02-15T06:59:56Z +15129 565 1 2321 5.99 2005-06-18T09:42:42Z 2020-02-15T06:59:56Z +15130 565 1 3300 5.99 2005-06-21T07:25:01Z 2020-02-15T06:59:56Z +15131 565 2 3470 0.99 2005-07-05T22:49:24Z 2020-02-15T06:59:56Z +15132 565 1 3838 2.99 2005-07-06T16:29:43Z 2020-02-15T06:59:56Z +15133 565 1 4413 2.99 2005-07-07T22:00:04Z 2020-02-15T06:59:56Z +15134 565 2 5020 0.99 2005-07-09T02:07:56Z 2020-02-15T06:59:56Z +15135 565 1 5124 4.99 2005-07-09T07:25:19Z 2020-02-15T06:59:56Z +15136 565 1 6264 2.99 2005-07-11T15:42:35Z 2020-02-15T06:59:56Z +15137 565 1 6627 2.99 2005-07-12T09:16:46Z 2020-02-15T06:59:56Z +15138 565 1 6699 0.99 2005-07-12T12:45:21Z 2020-02-15T06:59:56Z +15139 565 2 7242 5.99 2005-07-27T10:25:51Z 2020-02-15T06:59:56Z +15140 565 1 9628 2.99 2005-07-31T04:51:11Z 2020-02-15T06:59:56Z +15141 565 1 10025 5.99 2005-07-31T18:29:09Z 2020-02-15T06:59:56Z +15142 565 2 10776 10.99 2005-08-01T20:59:58Z 2020-02-15T06:59:56Z +15143 565 2 10913 3.99 2005-08-02T02:04:03Z 2020-02-15T06:59:56Z +15144 565 2 11189 6.99 2005-08-02T11:17:23Z 2020-02-15T06:59:56Z +15145 565 1 11399 3.99 2005-08-02T18:56:28Z 2020-02-15T06:59:56Z +15146 565 2 11506 4.99 2005-08-16T23:25:48Z 2020-02-15T06:59:56Z +15147 565 1 11588 3.99 2005-08-17T02:26:23Z 2020-02-15T06:59:56Z +15148 565 1 11795 2.99 2005-08-17T11:13:38Z 2020-02-15T06:59:56Z +15149 565 2 12743 5.99 2005-08-18T22:22:31Z 2020-02-15T06:59:56Z +15150 565 2 13195 4.99 2005-08-19T14:39:14Z 2020-02-15T06:59:56Z +15151 565 2 13217 4.99 2005-08-19T15:38:39Z 2020-02-15T06:59:56Z +15152 565 1 13362 0.99 2005-08-19T21:07:54Z 2020-02-15T06:59:56Z +15153 565 1 13925 8.99 2005-08-20T17:05:34Z 2020-02-15T06:59:56Z +15154 565 1 15885 2.99 2005-08-23T16:50:43Z 2020-02-15T06:59:56Z +15155 566 2 234 5.99 2005-05-26T11:47:20Z 2020-02-15T06:59:56Z +15156 566 2 768 4.99 2005-05-29T12:30:46Z 2020-02-15T06:59:56Z +15157 566 1 1635 5.99 2005-06-16T08:26:56Z 2020-02-15T06:59:56Z +15158 566 2 1982 4.99 2005-06-17T10:12:15Z 2020-02-15T06:59:56Z +15159 566 1 2367 0.99 2005-06-18T14:00:31Z 2020-02-15T06:59:56Z +15160 566 1 3379 4.99 2005-06-21T13:54:58Z 2020-02-15T06:59:56Z +15161 566 2 3663 4.99 2005-07-06T08:15:47Z 2020-02-15T06:59:56Z +15162 566 1 3943 0.99 2005-07-06T21:22:17Z 2020-02-15T06:59:56Z +15163 566 1 3998 3.99 2005-07-06T23:49:20Z 2020-02-15T06:59:56Z +15164 566 1 5079 9.99 2005-07-09T05:20:40Z 2020-02-15T06:59:56Z +15165 566 2 6365 2.99 2005-07-11T21:17:40Z 2020-02-15T06:59:56Z +15166 566 1 7677 2.99 2005-07-28T02:56:37Z 2020-02-15T06:59:56Z +15167 566 2 7941 0.99 2005-07-28T12:47:20Z 2020-02-15T06:59:56Z +15168 566 2 8118 2.99 2005-07-28T19:22:22Z 2020-02-15T06:59:56Z +15169 566 1 8157 6.99 2005-07-28T21:06:45Z 2020-02-15T06:59:56Z +15170 566 1 8257 2.99 2005-07-29T01:03:20Z 2020-02-15T06:59:56Z +15171 566 2 8305 1.99 2005-07-29T03:08:47Z 2020-02-15T06:59:56Z +15172 566 2 8660 6.99 2005-07-29T15:26:59Z 2020-02-15T06:59:56Z +15173 566 1 8710 0.99 2005-07-29T17:26:03Z 2020-02-15T06:59:56Z +15174 566 1 8797 4.99 2005-07-29T21:10:37Z 2020-02-15T06:59:56Z +15175 566 2 9101 4.99 2005-07-30T08:47:13Z 2020-02-15T06:59:56Z +15176 566 2 9470 4.99 2005-07-30T23:01:31Z 2020-02-15T06:59:56Z +15177 566 1 9688 3.99 2005-07-31T06:56:08Z 2020-02-15T06:59:56Z +15178 566 2 9915 2.99 2005-07-31T14:52:26Z 2020-02-15T06:59:56Z +15179 566 2 10259 2.99 2005-08-01T02:52:05Z 2020-02-15T06:59:56Z +15180 566 2 10289 6.99 2005-08-01T03:39:48Z 2020-02-15T06:59:56Z +15181 566 2 11129 2.99 2005-08-02T09:08:44Z 2020-02-15T06:59:56Z +15182 566 1 11717 0.99 2005-08-17T07:44:09Z 2020-02-15T06:59:56Z +15183 566 1 11941 1.99 2005-08-17T16:56:57Z 2020-02-15T06:59:56Z +15184 566 2 12382 8.99 2005-08-18T08:32:33Z 2020-02-15T06:59:56Z +15185 566 2 12995 4.99 2005-08-19T07:26:30Z 2020-02-15T06:59:56Z +15186 566 2 13762 4.99 2005-08-20T11:29:32Z 2020-02-15T06:59:56Z +15187 566 1 14277 3.99 2005-08-21T06:34:41Z 2020-02-15T06:59:56Z +15188 566 1 14297 2.99 2005-08-21T07:13:46Z 2020-02-15T06:59:56Z +15189 567 2 2689 4.99 2005-06-19T12:58:53Z 2020-02-15T06:59:56Z +15190 567 1 3010 2.99 2005-06-20T10:29:59Z 2020-02-15T06:59:56Z +15191 567 1 3769 5.99 2005-07-06T13:11:33Z 2020-02-15T06:59:56Z +15192 567 2 4457 0.99 2005-07-07T23:45:38Z 2020-02-15T06:59:56Z +15193 567 2 4576 0.99 2005-07-08T05:51:19Z 2020-02-15T06:59:56Z +15194 567 1 4949 4.99 2005-07-08T22:57:10Z 2020-02-15T06:59:56Z +15195 567 2 6358 2.99 2005-07-11T21:03:12Z 2020-02-15T06:59:56Z +15196 567 2 6551 0.99 2005-07-12T05:03:43Z 2020-02-15T06:59:56Z +15197 567 2 7340 2.99 2005-07-27T14:18:10Z 2020-02-15T06:59:56Z +15198 567 1 8201 2.99 2005-07-28T23:10:48Z 2020-02-15T06:59:56Z +15199 567 1 8629 2.99 2005-07-29T14:06:35Z 2020-02-15T06:59:56Z +15200 567 1 9279 7.99 2005-07-30T15:15:21Z 2020-02-15T06:59:56Z +15201 567 1 9475 6.99 2005-07-30T23:06:33Z 2020-02-15T06:59:56Z +15202 567 2 10708 7.99 2005-08-01T18:43:28Z 2020-02-15T06:59:56Z +15203 567 2 11749 2.99 2005-08-17T09:04:03Z 2020-02-15T06:59:56Z +15204 567 1 12119 2.99 2005-08-17T23:16:44Z 2020-02-15T06:59:56Z +15205 567 2 13031 2.99 2005-08-19T08:30:04Z 2020-02-15T06:59:56Z +15206 567 2 14839 2.99 2005-08-22T01:58:15Z 2020-02-15T06:59:56Z +15207 567 2 15074 5.99 2005-08-22T11:02:52Z 2020-02-15T06:59:56Z +15208 567 2 15594 10.99 2005-08-23T06:18:43Z 2020-02-15T06:59:56Z +15209 568 2 1658 4.99 2005-06-16T10:07:10Z 2020-02-15T06:59:56Z +15210 568 2 2382 4.99 2005-06-18T15:03:52Z 2020-02-15T06:59:56Z +15211 568 2 2668 0.99 2005-06-19T11:28:47Z 2020-02-15T06:59:56Z +15212 568 1 3227 4.99 2005-06-21T02:18:25Z 2020-02-15T06:59:56Z +15213 568 2 3462 1.99 2005-06-21T21:52:52Z 2020-02-15T06:59:56Z +15214 568 1 4322 2.99 2005-07-07T17:54:37Z 2020-02-15T06:59:56Z +15215 568 2 5332 2.99 2005-07-09T16:59:23Z 2020-02-15T06:59:56Z +15216 568 1 5622 0.99 2005-07-10T05:39:37Z 2020-02-15T06:59:56Z +15217 568 1 5776 4.99 2005-07-10T13:35:22Z 2020-02-15T06:59:56Z +15218 568 2 7068 2.99 2005-07-27T03:57:50Z 2020-02-15T06:59:56Z +15219 568 2 8185 0.99 2005-07-28T22:23:49Z 2020-02-15T06:59:56Z +15220 568 2 9583 6.99 2005-07-31T03:05:21Z 2020-02-15T06:59:56Z +15221 568 1 9738 0.99 2005-07-31T09:04:14Z 2020-02-15T06:59:56Z +15222 568 1 10340 2.99 2005-08-01T05:07:03Z 2020-02-15T06:59:56Z +15223 568 2 10689 0.99 2005-08-01T18:04:18Z 2020-02-15T06:59:56Z +15224 568 2 10869 0.99 2005-08-02T00:26:54Z 2020-02-15T06:59:56Z +15225 568 1 11331 2.99 2005-08-02T16:49:01Z 2020-02-15T06:59:56Z +15226 568 1 13883 4.99 2005-08-20T15:28:53Z 2020-02-15T06:59:56Z +15227 568 2 15069 5.99 2005-08-22T10:55:42Z 2020-02-15T06:59:56Z +15228 568 1 15203 2.99 2005-08-22T16:28:00Z 2020-02-15T06:59:56Z +15229 568 2 14531 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15230 569 2 53 4.99 2005-05-25T07:19:16Z 2020-02-15T06:59:56Z +15231 569 1 487 4.99 2005-05-28T00:00:30Z 2020-02-15T06:59:56Z +15232 569 1 624 4.99 2005-05-28T16:13:22Z 2020-02-15T06:59:56Z +15233 569 1 647 1.99 2005-05-28T19:22:52Z 2020-02-15T06:59:56Z +15234 569 2 1037 3.99 2005-05-31T05:22:25Z 2020-02-15T06:59:56Z +15235 569 1 1463 6.99 2005-06-15T20:37:51Z 2020-02-15T06:59:56Z +15236 569 2 1668 5.99 2005-06-16T10:19:52Z 2020-02-15T06:59:56Z +15237 569 1 4204 5.99 2005-07-07T11:24:18Z 2020-02-15T06:59:56Z +15238 569 2 5003 0.99 2005-07-09T01:19:03Z 2020-02-15T06:59:56Z +15239 569 2 6046 5.99 2005-07-11T03:21:49Z 2020-02-15T06:59:56Z +15240 569 1 8910 2.99 2005-07-30T01:29:48Z 2020-02-15T06:59:56Z +15241 569 2 9220 1.99 2005-07-30T13:17:27Z 2020-02-15T06:59:56Z +15242 569 1 9399 4.99 2005-07-30T20:14:50Z 2020-02-15T06:59:56Z +15243 569 2 9960 1.99 2005-07-31T16:05:52Z 2020-02-15T06:59:56Z +15244 569 2 10192 2.99 2005-08-01T00:33:00Z 2020-02-15T06:59:56Z +15245 569 2 10884 0.99 2005-08-02T00:47:33Z 2020-02-15T06:59:56Z +15246 569 1 11030 1.99 2005-08-02T05:51:20Z 2020-02-15T06:59:56Z +15247 569 2 11255 4.99 2005-08-02T13:44:30Z 2020-02-15T06:59:56Z +15248 569 1 11354 6.99 2005-08-02T17:35:10Z 2020-02-15T06:59:56Z +15249 569 1 11946 4.99 2005-08-17T17:05:53Z 2020-02-15T06:59:56Z +15250 569 1 12157 2.99 2005-08-18T00:33:45Z 2020-02-15T06:59:56Z +15251 569 2 12308 0.99 2005-08-18T05:48:53Z 2020-02-15T06:59:56Z +15252 569 1 12568 3.99 2005-08-18T15:15:44Z 2020-02-15T06:59:56Z +15253 569 2 12958 2.99 2005-08-19T06:19:21Z 2020-02-15T06:59:56Z +15254 569 1 13287 7.99 2005-08-19T18:28:24Z 2020-02-15T06:59:56Z +15255 569 2 13554 9.99 2005-08-20T04:08:39Z 2020-02-15T06:59:56Z +15256 569 2 14207 4.99 2005-08-21T04:08:19Z 2020-02-15T06:59:56Z +15257 569 2 14400 0.99 2005-08-21T10:33:45Z 2020-02-15T06:59:56Z +15258 569 1 14896 8.99 2005-08-22T04:20:55Z 2020-02-15T06:59:56Z +15259 569 1 14959 2.99 2005-08-22T06:30:28Z 2020-02-15T06:59:56Z +15260 569 2 15617 0.99 2005-08-23T07:07:22Z 2020-02-15T06:59:56Z +15261 569 2 16025 4.99 2005-08-23T21:48:54Z 2020-02-15T06:59:56Z +15262 570 2 1060 7.99 2005-05-31T08:21:43Z 2020-02-15T06:59:56Z +15263 570 1 1259 4.99 2005-06-15T06:37:55Z 2020-02-15T06:59:56Z +15264 570 2 1417 4.99 2005-06-15T17:45:51Z 2020-02-15T06:59:56Z +15265 570 2 1804 2.99 2005-06-16T20:33:15Z 2020-02-15T06:59:56Z +15266 570 2 2008 5.99 2005-06-17T11:48:05Z 2020-02-15T06:59:56Z +15267 570 2 2031 6.99 2005-06-17T13:14:03Z 2020-02-15T06:59:56Z +15268 570 2 2261 3.99 2005-06-18T05:46:15Z 2020-02-15T06:59:56Z +15269 570 2 3138 2.99 2005-06-20T19:43:45Z 2020-02-15T06:59:56Z +15270 570 2 3984 0.99 2005-07-06T23:22:36Z 2020-02-15T06:59:56Z +15271 570 1 4069 0.99 2005-07-07T04:35:06Z 2020-02-15T06:59:56Z +15272 570 1 4698 0.99 2005-07-08T11:19:31Z 2020-02-15T06:59:56Z +15273 570 2 5638 4.99 2005-07-10T06:32:49Z 2020-02-15T06:59:56Z +15274 570 1 6253 4.99 2005-07-11T15:07:19Z 2020-02-15T06:59:56Z +15275 570 1 6556 0.99 2005-07-12T05:10:16Z 2020-02-15T06:59:56Z +15276 570 2 7174 4.99 2005-07-27T08:00:36Z 2020-02-15T06:59:56Z +15277 570 2 8735 4.99 2005-07-29T18:28:54Z 2020-02-15T06:59:56Z +15278 570 1 9385 7.99 2005-07-30T19:25:49Z 2020-02-15T06:59:56Z +15279 570 1 9398 0.99 2005-07-30T20:09:00Z 2020-02-15T06:59:56Z +15280 570 2 9432 2.99 2005-07-30T21:26:18Z 2020-02-15T06:59:56Z +15281 570 1 9766 4.99 2005-07-31T09:46:29Z 2020-02-15T06:59:56Z +15282 570 1 10004 0.99 2005-07-31T17:51:23Z 2020-02-15T06:59:56Z +15283 570 2 10168 2.99 2005-07-31T23:25:24Z 2020-02-15T06:59:56Z +15284 570 1 11098 3.99 2005-08-02T08:06:18Z 2020-02-15T06:59:56Z +15285 570 2 12042 4.99 2005-08-17T20:36:37Z 2020-02-15T06:59:56Z +15286 570 2 14768 3.99 2005-08-21T23:44:53Z 2020-02-15T06:59:56Z +15287 570 1 12716 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15288 571 1 228 9.99 2005-05-26T10:54:28Z 2020-02-15T06:59:56Z +15289 571 2 689 3.99 2005-05-29T00:46:53Z 2020-02-15T06:59:56Z +15290 571 1 1254 4.99 2005-06-15T06:11:16Z 2020-02-15T06:59:56Z +15291 571 2 1400 3.99 2005-06-15T16:29:56Z 2020-02-15T06:59:56Z +15292 571 1 1756 4.99 2005-06-16T17:22:33Z 2020-02-15T06:59:56Z +15293 571 2 1990 4.99 2005-06-17T10:48:44Z 2020-02-15T06:59:56Z +15294 571 1 2327 2.99 2005-06-18T10:16:40Z 2020-02-15T06:59:56Z +15295 571 1 2977 10.99 2005-06-20T08:15:27Z 2020-02-15T06:59:56Z +15296 571 2 3616 2.99 2005-07-06T05:52:13Z 2020-02-15T06:59:56Z +15297 571 1 4162 4.99 2005-07-07T09:17:26Z 2020-02-15T06:59:56Z +15298 571 2 5789 4.99 2005-07-10T14:11:26Z 2020-02-15T06:59:56Z +15299 571 2 6676 8.99 2005-07-12T11:53:40Z 2020-02-15T06:59:56Z +15300 571 1 6792 8.99 2005-07-12T16:37:28Z 2020-02-15T06:59:56Z +15301 571 1 8084 5.99 2005-07-28T18:11:58Z 2020-02-15T06:59:56Z +15302 571 1 8638 4.99 2005-07-29T14:30:23Z 2020-02-15T06:59:56Z +15303 571 2 9300 1.99 2005-07-30T16:33:12Z 2020-02-15T06:59:56Z +15304 571 1 9408 4.99 2005-07-30T20:32:09Z 2020-02-15T06:59:56Z +15305 571 1 10227 2.99 2005-08-01T01:42:22Z 2020-02-15T06:59:56Z +15306 571 2 11080 2.99 2005-08-02T07:29:56Z 2020-02-15T06:59:56Z +15307 571 2 11191 7.99 2005-08-02T11:24:07Z 2020-02-15T06:59:56Z +15308 571 1 13228 2.99 2005-08-19T16:08:16Z 2020-02-15T06:59:56Z +15309 571 2 13266 2.99 2005-08-19T17:31:20Z 2020-02-15T06:59:56Z +15310 571 1 14956 0.99 2005-08-22T06:26:16Z 2020-02-15T06:59:56Z +15311 571 1 15841 4.99 2005-08-23T15:35:59Z 2020-02-15T06:59:56Z +15312 572 2 559 7.99 2005-05-28T08:39:02Z 2020-02-15T06:59:56Z +15313 572 2 1889 10.99 2005-06-17T04:05:12Z 2020-02-15T06:59:56Z +15314 572 1 2007 0.99 2005-06-17T11:47:17Z 2020-02-15T06:59:56Z +15315 572 1 2458 0.99 2005-06-18T19:39:05Z 2020-02-15T06:59:56Z +15316 572 1 4601 2.99 2005-07-08T06:49:10Z 2020-02-15T06:59:56Z +15317 572 1 5595 4.99 2005-07-10T04:33:45Z 2020-02-15T06:59:56Z +15318 572 1 5713 6.99 2005-07-10T10:46:15Z 2020-02-15T06:59:56Z +15319 572 2 6108 2.99 2005-07-11T07:19:24Z 2020-02-15T06:59:56Z +15320 572 1 7161 4.99 2005-07-27T07:26:32Z 2020-02-15T06:59:56Z +15321 572 1 7345 4.99 2005-07-27T14:29:53Z 2020-02-15T06:59:56Z +15322 572 2 7713 6.99 2005-07-28T04:32:14Z 2020-02-15T06:59:56Z +15323 572 2 8342 0.99 2005-07-29T04:45:05Z 2020-02-15T06:59:56Z +15324 572 1 8432 0.99 2005-07-29T07:13:33Z 2020-02-15T06:59:56Z +15325 572 1 9081 3.99 2005-07-30T08:09:58Z 2020-02-15T06:59:56Z +15326 572 2 9950 5.99 2005-07-31T15:50:22Z 2020-02-15T06:59:56Z +15327 572 2 10204 4.99 2005-08-01T00:47:39Z 2020-02-15T06:59:56Z +15328 572 1 11114 0.99 2005-08-02T08:26:45Z 2020-02-15T06:59:56Z +15329 572 1 11121 4.99 2005-08-02T08:48:31Z 2020-02-15T06:59:56Z +15330 572 2 11415 2.99 2005-08-02T19:43:38Z 2020-02-15T06:59:56Z +15331 572 1 11426 4.99 2005-08-02T20:00:09Z 2020-02-15T06:59:56Z +15332 572 1 11526 4.99 2005-08-17T00:17:38Z 2020-02-15T06:59:56Z +15333 572 1 12256 1.99 2005-08-18T04:09:39Z 2020-02-15T06:59:56Z +15334 572 2 13377 1.99 2005-08-19T21:32:23Z 2020-02-15T06:59:56Z +15335 572 2 13523 6.99 2005-08-20T02:47:03Z 2020-02-15T06:59:56Z +15336 572 1 13688 5.99 2005-08-20T08:59:38Z 2020-02-15T06:59:56Z +15337 573 2 827 2.99 2005-05-29T21:58:43Z 2020-02-15T06:59:56Z +15338 573 1 1613 4.99 2005-06-16T06:55:10Z 2020-02-15T06:59:56Z +15339 573 2 2622 5.99 2005-06-19T08:10:41Z 2020-02-15T06:59:56Z +15340 573 1 2995 1.99 2005-06-20T09:18:22Z 2020-02-15T06:59:56Z +15341 573 1 3295 7.99 2005-06-21T07:04:17Z 2020-02-15T06:59:56Z +15342 573 2 3768 0.99 2005-07-06T13:07:30Z 2020-02-15T06:59:56Z +15343 573 1 3930 2.99 2005-07-06T20:54:07Z 2020-02-15T06:59:56Z +15344 573 2 4023 4.99 2005-07-07T01:55:25Z 2020-02-15T06:59:56Z +15345 573 1 4085 0.99 2005-07-07T05:25:39Z 2020-02-15T06:59:56Z +15346 573 1 4609 0.99 2005-07-08T07:22:29Z 2020-02-15T06:59:56Z +15347 573 1 4770 2.99 2005-07-08T15:29:46Z 2020-02-15T06:59:56Z +15348 573 1 5036 5.99 2005-07-09T02:58:41Z 2020-02-15T06:59:56Z +15349 573 2 5522 9.99 2005-07-10T01:46:29Z 2020-02-15T06:59:56Z +15350 573 2 5903 2.99 2005-07-10T20:39:04Z 2020-02-15T06:59:56Z +15351 573 1 6693 7.99 2005-07-12T12:37:00Z 2020-02-15T06:59:56Z +15352 573 1 8400 4.99 2005-07-29T06:23:56Z 2020-02-15T06:59:56Z +15353 573 2 9837 10.99 2005-07-31T12:14:19Z 2020-02-15T06:59:56Z +15354 573 2 9846 4.99 2005-07-31T12:30:12Z 2020-02-15T06:59:56Z +15355 573 2 9963 2.99 2005-07-31T16:16:46Z 2020-02-15T06:59:56Z +15356 573 2 9971 5.99 2005-07-31T16:42:16Z 2020-02-15T06:59:56Z +15357 573 1 10296 0.99 2005-08-01T04:04:37Z 2020-02-15T06:59:56Z +15358 573 1 10887 2.99 2005-08-02T00:52:35Z 2020-02-15T06:59:56Z +15359 573 1 11043 0.99 2005-08-02T06:04:44Z 2020-02-15T06:59:56Z +15360 573 2 11912 5.99 2005-08-17T15:51:49Z 2020-02-15T06:59:56Z +15361 573 1 12017 1.99 2005-08-17T19:33:49Z 2020-02-15T06:59:56Z +15362 573 1 12125 1.99 2005-08-17T23:24:25Z 2020-02-15T06:59:56Z +15363 573 1 12269 6.99 2005-08-18T04:27:54Z 2020-02-15T06:59:56Z +15364 573 1 12791 0.99 2005-08-19T00:17:09Z 2020-02-15T06:59:56Z +15365 573 2 13113 2.99 2005-08-19T11:27:20Z 2020-02-15T06:59:56Z +15366 574 2 433 0.99 2005-05-27T16:40:40Z 2020-02-15T06:59:56Z +15367 574 1 1559 0.99 2005-06-16T02:35:03Z 2020-02-15T06:59:56Z +15368 574 2 1636 5.99 2005-06-16T08:28:54Z 2020-02-15T06:59:56Z +15369 574 1 1817 0.99 2005-06-16T21:20:52Z 2020-02-15T06:59:56Z +15370 574 1 2632 0.99 2005-06-19T08:51:47Z 2020-02-15T06:59:56Z +15371 574 1 3220 6.99 2005-06-21T01:46:25Z 2020-02-15T06:59:56Z +15372 574 1 3583 7.99 2005-07-06T04:10:43Z 2020-02-15T06:59:56Z +15373 574 1 4004 4.99 2005-07-07T00:20:51Z 2020-02-15T06:59:56Z +15374 574 1 4212 4.99 2005-07-07T11:53:14Z 2020-02-15T06:59:56Z +15375 574 2 4890 2.99 2005-07-08T20:05:38Z 2020-02-15T06:59:56Z +15376 574 2 5010 4.99 2005-07-09T01:33:23Z 2020-02-15T06:59:56Z +15377 574 1 5076 3.99 2005-07-09T05:13:22Z 2020-02-15T06:59:56Z +15378 574 1 5077 3.99 2005-07-09T05:18:01Z 2020-02-15T06:59:56Z +15379 574 1 5640 2.99 2005-07-10T06:38:00Z 2020-02-15T06:59:56Z +15380 574 1 6523 2.99 2005-07-12T04:14:19Z 2020-02-15T06:59:56Z +15381 574 1 7093 1.99 2005-07-27T04:47:00Z 2020-02-15T06:59:56Z +15382 574 1 7134 2.99 2005-07-27T06:33:06Z 2020-02-15T06:59:56Z +15383 574 1 7964 2.99 2005-07-28T13:49:58Z 2020-02-15T06:59:56Z +15384 574 1 8303 4.99 2005-07-29T03:05:56Z 2020-02-15T06:59:56Z +15385 574 1 9589 7.99 2005-07-31T03:13:29Z 2020-02-15T06:59:56Z +15386 574 1 9759 3.99 2005-07-31T09:25:57Z 2020-02-15T06:59:57Z +15387 574 1 10347 4.99 2005-08-01T05:20:03Z 2020-02-15T06:59:57Z +15388 574 2 11775 3.99 2005-08-17T10:25:53Z 2020-02-15T06:59:57Z +15389 574 1 12462 2.99 2005-08-18T11:28:55Z 2020-02-15T06:59:57Z +15390 574 1 13589 4.99 2005-08-20T05:47:25Z 2020-02-15T06:59:57Z +15391 574 1 14076 4.99 2005-08-20T23:20:10Z 2020-02-15T06:59:57Z +15392 574 2 14941 2.99 2005-08-22T05:58:23Z 2020-02-15T06:59:57Z +15393 574 2 15214 2.99 2005-08-22T16:53:29Z 2020-02-15T06:59:57Z +15394 575 1 17 2.99 2005-05-25T01:06:36Z 2020-02-15T06:59:57Z +15395 575 1 395 0.99 2005-05-27T11:45:49Z 2020-02-15T06:59:57Z +15396 575 2 454 4.99 2005-05-27T19:31:36Z 2020-02-15T06:59:57Z +15397 575 2 769 2.99 2005-05-29T12:51:44Z 2020-02-15T06:59:57Z +15398 575 1 774 4.99 2005-05-29T13:19:43Z 2020-02-15T06:59:57Z +15399 575 2 1494 2.99 2005-06-15T21:54:20Z 2020-02-15T06:59:57Z +15400 575 1 1824 2.99 2005-06-16T21:51:04Z 2020-02-15T06:59:57Z +15401 575 2 1866 4.99 2005-06-17T01:53:19Z 2020-02-15T06:59:57Z +15402 575 1 3558 6.99 2005-07-06T02:49:06Z 2020-02-15T06:59:57Z +15403 575 2 5875 8.99 2005-07-10T19:06:47Z 2020-02-15T06:59:57Z +15404 575 2 6907 2.99 2005-07-12T22:03:49Z 2020-02-15T06:59:57Z +15405 575 1 7083 0.99 2005-07-27T04:28:39Z 2020-02-15T06:59:57Z +15406 575 1 7139 2.99 2005-07-27T06:52:21Z 2020-02-15T06:59:57Z +15407 575 2 8711 2.99 2005-07-29T17:27:15Z 2020-02-15T06:59:57Z +15408 575 2 8904 0.99 2005-07-30T01:08:33Z 2020-02-15T06:59:57Z +15409 575 2 8989 4.99 2005-07-30T04:39:19Z 2020-02-15T06:59:57Z +15410 575 1 9733 4.99 2005-07-31T08:57:35Z 2020-02-15T06:59:57Z +15411 575 1 10331 4.99 2005-08-01T04:57:14Z 2020-02-15T06:59:57Z +15412 575 2 10629 7.99 2005-08-01T15:33:32Z 2020-02-15T06:59:57Z +15413 575 1 11097 3.99 2005-08-02T08:05:46Z 2020-02-15T06:59:57Z +15414 575 1 11458 4.99 2005-08-02T21:24:02Z 2020-02-15T06:59:57Z +15415 575 1 12204 7.99 2005-08-18T02:20:35Z 2020-02-15T06:59:57Z +15416 575 2 12289 8.99 2005-08-18T05:05:28Z 2020-02-15T06:59:57Z +15417 575 2 12770 5.99 2005-08-18T23:29:00Z 2020-02-15T06:59:57Z +15418 575 2 13408 4.99 2005-08-19T22:34:51Z 2020-02-15T06:59:57Z +15419 575 2 13465 2.99 2005-08-20T00:54:14Z 2020-02-15T06:59:57Z +15420 575 2 14952 2.99 2005-08-22T06:20:07Z 2020-02-15T06:59:57Z +15421 575 2 15749 4.99 2005-08-23T12:33:41Z 2020-02-15T06:59:57Z +15422 575 2 15857 0.99 2005-08-23T15:59:51Z 2020-02-15T06:59:57Z +15423 576 2 755 2.99 2005-05-29T10:26:29Z 2020-02-15T06:59:57Z +15424 576 1 968 0.99 2005-05-30T19:20:03Z 2020-02-15T06:59:57Z +15425 576 1 1366 4.99 2005-06-15T14:21:00Z 2020-02-15T06:59:57Z +15426 576 2 1742 2.99 2005-06-16T16:37:48Z 2020-02-15T06:59:57Z +15427 576 1 2309 0.99 2005-06-18T08:43:24Z 2020-02-15T06:59:57Z +15428 576 2 2444 8.99 2005-06-18T18:58:12Z 2020-02-15T06:59:57Z +15429 576 1 2651 3.99 2005-06-19T10:22:56Z 2020-02-15T06:59:57Z +15430 576 2 2799 4.99 2005-06-19T19:15:21Z 2020-02-15T06:59:57Z +15431 576 2 3226 6.99 2005-06-21T02:18:14Z 2020-02-15T06:59:57Z +15432 576 1 3877 4.99 2005-07-06T18:22:10Z 2020-02-15T06:59:57Z +15433 576 2 3889 0.99 2005-07-06T18:56:25Z 2020-02-15T06:59:57Z +15434 576 2 3934 4.99 2005-07-06T21:07:23Z 2020-02-15T06:59:57Z +15435 576 1 4514 4.99 2005-07-08T02:41:25Z 2020-02-15T06:59:57Z +15436 576 2 5597 3.99 2005-07-10T04:47:57Z 2020-02-15T06:59:57Z +15437 576 1 5934 4.99 2005-07-10T22:07:59Z 2020-02-15T06:59:57Z +15438 576 2 7319 1.99 2005-07-27T13:31:25Z 2020-02-15T06:59:57Z +15439 576 1 7605 3.99 2005-07-27T23:57:01Z 2020-02-15T06:59:57Z +15440 576 1 8907 4.99 2005-07-30T01:25:03Z 2020-02-15T06:59:57Z +15441 576 1 9133 5.99 2005-07-30T09:59:00Z 2020-02-15T06:59:57Z +15442 576 2 9548 5.99 2005-07-31T01:54:19Z 2020-02-15T06:59:57Z +15443 576 2 9620 8.99 2005-07-31T04:19:18Z 2020-02-15T06:59:57Z +15444 576 2 9962 0.99 2005-07-31T16:10:36Z 2020-02-15T06:59:57Z +15445 576 1 9979 2.99 2005-07-31T17:00:07Z 2020-02-15T06:59:57Z +15446 576 1 10000 2.99 2005-07-31T17:41:05Z 2020-02-15T06:59:57Z +15447 576 2 10724 3.99 2005-08-01T19:10:59Z 2020-02-15T06:59:57Z +15448 576 2 12112 5.99 2005-08-17T23:00:31Z 2020-02-15T06:59:57Z +15449 576 1 12245 4.99 2005-08-18T03:46:40Z 2020-02-15T06:59:57Z +15450 576 1 13061 4.99 2005-08-19T09:43:39Z 2020-02-15T06:59:57Z +15451 576 1 13326 4.99 2005-08-19T19:52:52Z 2020-02-15T06:59:57Z +15452 576 1 14501 4.99 2005-08-21T14:14:38Z 2020-02-15T06:59:57Z +15453 576 1 14541 0.99 2005-08-21T15:34:32Z 2020-02-15T06:59:57Z +15454 576 1 15634 0.99 2005-08-23T07:34:18Z 2020-02-15T06:59:57Z +15455 576 2 11942 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15456 576 1 13464 0 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15457 577 2 291 5.99 2005-05-26T20:20:47Z 2020-02-15T06:59:57Z +15458 577 2 0.99 2005-05-27T00:46:39Z 2020-02-15T06:59:57Z +15459 577 2 2399 3.99 2005-06-18T16:06:14Z 2020-02-15T06:59:57Z +15460 577 2 3286 2.99 2005-06-21T06:31:29Z 2020-02-15T06:59:57Z +15461 577 2 3401 6.99 2005-06-21T15:52:43Z 2020-02-15T06:59:57Z +15462 577 2 3599 0.99 2005-07-06T05:16:36Z 2020-02-15T06:59:57Z +15463 577 1 3785 7.99 2005-07-06T14:00:13Z 2020-02-15T06:59:57Z +15464 577 1 4922 2.99 2005-07-08T21:44:00Z 2020-02-15T06:59:57Z +15465 577 1 6500 2.99 2005-07-12T03:11:23Z 2020-02-15T06:59:57Z +15466 577 2 6534 2.99 2005-07-12T04:39:43Z 2020-02-15T06:59:57Z +15467 577 2 7197 0.99 2005-07-27T08:49:32Z 2020-02-15T06:59:57Z +15468 577 1 7371 4.99 2005-07-27T15:18:42Z 2020-02-15T06:59:57Z +15469 577 2 7876 8.99 2005-07-28T10:24:22Z 2020-02-15T06:59:57Z +15470 577 1 8043 5.99 2005-07-28T16:45:44Z 2020-02-15T06:59:57Z +15471 577 1 8060 6.99 2005-07-28T17:10:02Z 2020-02-15T06:59:57Z +15472 577 2 8671 6.99 2005-07-29T15:49:37Z 2020-02-15T06:59:57Z +15473 577 2 10323 4.99 2005-08-01T04:44:58Z 2020-02-15T06:59:57Z +15474 577 1 10487 0.99 2005-08-01T10:26:34Z 2020-02-15T06:59:57Z +15475 577 1 10782 4.99 2005-08-01T21:23:25Z 2020-02-15T06:59:57Z +15476 577 1 11054 7.99 2005-08-02T06:33:07Z 2020-02-15T06:59:57Z +15477 577 2 11464 0.99 2005-08-02T21:42:07Z 2020-02-15T06:59:57Z +15478 577 1 12664 4.99 2005-08-18T19:10:54Z 2020-02-15T06:59:57Z +15479 577 2 12671 0.99 2005-08-18T19:19:59Z 2020-02-15T06:59:57Z +15480 577 2 13200 3.99 2005-08-19T14:55:58Z 2020-02-15T06:59:57Z +15481 577 2 13500 3.99 2005-08-20T01:54:39Z 2020-02-15T06:59:57Z +15482 577 2 15480 2.99 2005-08-23T01:57:20Z 2020-02-15T06:59:57Z +15483 577 2 15873 2.99 2005-08-23T16:27:59Z 2020-02-15T06:59:57Z +15484 577 2 16003 4.99 2005-08-23T20:47:28Z 2020-02-15T06:59:57Z +15485 578 2 660 0.99 2005-05-28T20:53:31Z 2020-02-15T06:59:57Z +15486 578 2 1826 6.99 2005-06-16T21:53:52Z 2020-02-15T06:59:57Z +15487 578 2 2615 4.99 2005-06-19T07:29:13Z 2020-02-15T06:59:57Z +15488 578 1 3305 2.99 2005-06-21T07:46:57Z 2020-02-15T06:59:57Z +15489 578 2 4496 4.99 2005-07-08T01:44:19Z 2020-02-15T06:59:57Z +15490 578 1 5377 4.99 2005-07-09T19:04:30Z 2020-02-15T06:59:57Z +15491 578 1 5445 0.99 2005-07-09T21:59:41Z 2020-02-15T06:59:57Z +15492 578 2 5876 4.99 2005-07-10T19:07:15Z 2020-02-15T06:59:57Z +15493 578 1 6784 4.99 2005-07-12T16:28:49Z 2020-02-15T06:59:57Z +15494 578 1 6830 0.99 2005-07-12T18:42:55Z 2020-02-15T06:59:57Z +15495 578 2 7059 5.99 2005-07-27T03:51:02Z 2020-02-15T06:59:57Z +15496 578 1 8179 2.99 2005-07-28T22:05:13Z 2020-02-15T06:59:57Z +15497 578 1 8218 2.99 2005-07-28T23:45:41Z 2020-02-15T06:59:57Z +15498 578 2 9970 4.99 2005-07-31T16:38:24Z 2020-02-15T06:59:57Z +15499 578 1 10029 6.99 2005-07-31T18:37:47Z 2020-02-15T06:59:57Z +15500 578 2 10182 2.99 2005-08-01T00:08:01Z 2020-02-15T06:59:57Z +15501 578 1 10779 7.99 2005-08-01T21:11:54Z 2020-02-15T06:59:57Z +15502 578 1 11199 7.99 2005-08-02T11:47:40Z 2020-02-15T06:59:57Z +15503 578 2 13071 5.99 2005-08-19T10:01:07Z 2020-02-15T06:59:57Z +15504 578 2 13498 5.99 2005-08-20T01:51:23Z 2020-02-15T06:59:57Z +15505 578 2 13552 2.99 2005-08-20T04:03:51Z 2020-02-15T06:59:57Z +15506 578 1 15652 0.99 2005-08-23T08:34:10Z 2020-02-15T06:59:57Z +15507 579 2 2425 5.99 2005-06-18T17:37:45Z 2020-02-15T06:59:57Z +15508 579 1 2522 3.99 2005-06-19T00:43:42Z 2020-02-15T06:59:57Z +15509 579 1 3111 2.99 2005-06-20T17:46:47Z 2020-02-15T06:59:57Z +15510 579 1 4619 9.99 2005-07-08T08:01:09Z 2020-02-15T06:59:57Z +15511 579 1 4933 2.99 2005-07-08T22:18:29Z 2020-02-15T06:59:57Z +15512 579 1 6304 4.99 2005-07-11T18:02:16Z 2020-02-15T06:59:57Z +15513 579 2 6814 1.99 2005-07-12T18:11:58Z 2020-02-15T06:59:57Z +15514 579 2 6824 6.99 2005-07-12T18:26:46Z 2020-02-15T06:59:57Z +15515 579 2 6969 8.99 2005-07-27T00:23:54Z 2020-02-15T06:59:57Z +15516 579 2 7221 2.99 2005-07-27T09:37:35Z 2020-02-15T06:59:57Z +15517 579 1 8354 0.99 2005-07-29T04:56:26Z 2020-02-15T06:59:57Z +15518 579 1 8876 0.99 2005-07-30T00:15:09Z 2020-02-15T06:59:57Z +15519 579 1 8996 0.99 2005-07-30T04:53:23Z 2020-02-15T06:59:57Z +15520 579 2 9349 9.99 2005-07-30T18:20:08Z 2020-02-15T06:59:57Z +15521 579 2 9553 5.99 2005-07-31T02:06:34Z 2020-02-15T06:59:57Z +15522 579 2 9976 2.99 2005-07-31T16:57:49Z 2020-02-15T06:59:57Z +15523 579 2 9997 4.99 2005-07-31T17:37:30Z 2020-02-15T06:59:57Z +15524 579 1 11494 3.99 2005-08-02T22:51:23Z 2020-02-15T06:59:57Z +15525 579 2 12051 6.99 2005-08-17T20:56:15Z 2020-02-15T06:59:57Z +15526 579 2 12315 5.99 2005-08-18T06:15:06Z 2020-02-15T06:59:57Z +15527 579 2 14047 2.99 2005-08-20T22:00:43Z 2020-02-15T06:59:57Z +15528 579 1 14185 0.99 2005-08-21T03:28:37Z 2020-02-15T06:59:57Z +15529 579 1 14543 1.99 2005-08-21T15:39:01Z 2020-02-15T06:59:57Z +15530 579 2 14560 2.99 2005-08-21T16:13:47Z 2020-02-15T06:59:57Z +15531 579 2 15601 0.99 2005-08-23T06:33:26Z 2020-02-15T06:59:57Z +15532 579 1 15838 4.99 2005-08-23T15:30:48Z 2020-02-15T06:59:57Z +15533 579 2 15794 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15534 580 1 611 0.99 2005-05-28T15:18:18Z 2020-02-15T06:59:57Z +15535 580 1 1469 0.99 2005-06-15T20:52:36Z 2020-02-15T06:59:57Z +15536 580 2 3571 1.99 2005-07-06T03:32:31Z 2020-02-15T06:59:57Z +15537 580 2 3867 1.99 2005-07-06T17:52:19Z 2020-02-15T06:59:57Z +15538 580 2 4169 1.99 2005-07-07T09:39:18Z 2020-02-15T06:59:57Z +15539 580 2 4590 3.99 2005-07-08T06:27:48Z 2020-02-15T06:59:57Z +15540 580 1 5937 6.99 2005-07-10T22:16:08Z 2020-02-15T06:59:57Z +15541 580 1 6089 2.99 2005-07-11T05:45:59Z 2020-02-15T06:59:57Z +15542 580 2 6170 2.99 2005-07-11T10:29:21Z 2020-02-15T06:59:57Z +15543 580 1 7620 0.99 2005-07-28T00:27:17Z 2020-02-15T06:59:57Z +15544 580 2 8784 4.99 2005-07-29T20:35:37Z 2020-02-15T06:59:57Z +15545 580 1 8839 3.99 2005-07-29T22:52:34Z 2020-02-15T06:59:57Z +15546 580 1 9199 0.99 2005-07-30T12:38:00Z 2020-02-15T06:59:57Z +15547 580 1 9239 3.99 2005-07-30T13:50:52Z 2020-02-15T06:59:57Z +15548 580 1 9460 5.99 2005-07-30T22:25:39Z 2020-02-15T06:59:57Z +15549 580 2 9604 4.99 2005-07-31T03:47:12Z 2020-02-15T06:59:57Z +15550 580 2 9865 0.99 2005-07-31T13:10:45Z 2020-02-15T06:59:57Z +15551 580 1 10723 3.99 2005-08-01T19:10:49Z 2020-02-15T06:59:57Z +15552 580 2 10965 3.99 2005-08-02T04:00:19Z 2020-02-15T06:59:57Z +15553 580 1 11164 8.99 2005-08-02T10:10:56Z 2020-02-15T06:59:57Z +15554 580 2 12670 2.99 2005-08-18T19:17:58Z 2020-02-15T06:59:57Z +15555 580 2 13313 2.99 2005-08-19T19:11:41Z 2020-02-15T06:59:57Z +15556 580 2 13742 2.99 2005-08-20T10:49:15Z 2020-02-15T06:59:57Z +15557 580 2 14818 2.99 2005-08-22T01:17:18Z 2020-02-15T06:59:57Z +15558 580 1 15157 6.99 2005-08-22T14:30:09Z 2020-02-15T06:59:57Z +15559 580 1 15630 6.99 2005-08-23T07:29:13Z 2020-02-15T06:59:57Z +15560 580 1 15947 4.99 2005-08-23T18:54:32Z 2020-02-15T06:59:57Z +15561 581 1 976 4.99 2005-05-30T21:11:19Z 2020-02-15T06:59:57Z +15562 581 1 1151 4.99 2005-05-31T21:29:00Z 2020-02-15T06:59:57Z +15563 581 2 1958 3.99 2005-06-17T08:52:01Z 2020-02-15T06:59:57Z +15564 581 2 2101 2.99 2005-06-17T18:57:02Z 2020-02-15T06:59:57Z +15565 581 1 2137 4.99 2005-06-17T21:18:28Z 2020-02-15T06:59:57Z +15566 581 2 4210 2.99 2005-07-07T11:36:20Z 2020-02-15T06:59:57Z +15567 581 2 4244 2.99 2005-07-07T13:41:58Z 2020-02-15T06:59:57Z +15568 581 1 4338 4.99 2005-07-07T18:39:56Z 2020-02-15T06:59:57Z +15569 581 2 4613 0.99 2005-07-08T07:44:49Z 2020-02-15T06:59:57Z +15570 581 1 4669 5.99 2005-07-08T10:13:08Z 2020-02-15T06:59:57Z +15571 581 1 4815 8.99 2005-07-08T17:12:51Z 2020-02-15T06:59:57Z +15572 581 1 4833 1.99 2005-07-08T18:07:35Z 2020-02-15T06:59:57Z +15573 581 1 5516 4.99 2005-07-10T01:13:52Z 2020-02-15T06:59:57Z +15574 581 1 5707 4.99 2005-07-10T10:26:14Z 2020-02-15T06:59:57Z +15575 581 2 5812 2.99 2005-07-10T15:27:56Z 2020-02-15T06:59:57Z +15576 581 2 7048 7.99 2005-07-27T03:31:48Z 2020-02-15T06:59:57Z +15577 581 1 7783 2.99 2005-07-28T07:14:43Z 2020-02-15T06:59:57Z +15578 581 1 9278 2.99 2005-07-30T15:15:19Z 2020-02-15T06:59:57Z +15579 581 1 9449 1.99 2005-07-30T22:02:34Z 2020-02-15T06:59:57Z +15580 581 2 11443 2.99 2005-08-02T20:29:30Z 2020-02-15T06:59:57Z +15581 581 2 11707 2.99 2005-08-17T07:24:59Z 2020-02-15T06:59:57Z +15582 581 2 13621 0.99 2005-08-20T06:43:44Z 2020-02-15T06:59:57Z +15583 581 2 13712 2.99 2005-08-20T09:38:04Z 2020-02-15T06:59:57Z +15584 581 2 14070 8.99 2005-08-20T22:56:34Z 2020-02-15T06:59:57Z +15585 581 1 14976 2.99 2005-08-22T07:10:26Z 2020-02-15T06:59:57Z +15586 581 1 15403 0.99 2005-08-22T23:18:10Z 2020-02-15T06:59:57Z +15587 581 2 15792 4.99 2005-08-23T14:05:37Z 2020-02-15T06:59:57Z +15588 582 1 281 0.99 2005-05-26T18:49:35Z 2020-02-15T06:59:57Z +15589 582 1 1719 2.99 2005-06-16T14:55:53Z 2020-02-15T06:59:57Z +15590 582 1 2337 7.99 2005-06-18T11:15:27Z 2020-02-15T06:59:57Z +15591 582 2 3071 0.99 2005-06-20T14:20:42Z 2020-02-15T06:59:57Z +15592 582 1 3767 0.99 2005-07-06T13:07:27Z 2020-02-15T06:59:57Z +15593 582 2 6629 5.99 2005-07-12T09:18:35Z 2020-02-15T06:59:57Z +15594 582 2 7126 4.99 2005-07-27T06:13:13Z 2020-02-15T06:59:57Z +15595 582 2 7311 6.99 2005-07-27T13:02:54Z 2020-02-15T06:59:57Z +15596 582 2 7412 5.99 2005-07-27T16:44:34Z 2020-02-15T06:59:57Z +15597 582 1 7575 2.99 2005-07-27T22:53:52Z 2020-02-15T06:59:57Z +15598 582 2 8308 5.99 2005-07-29T03:22:15Z 2020-02-15T06:59:57Z +15599 582 1 8554 2.99 2005-07-29T11:16:29Z 2020-02-15T06:59:57Z +15600 582 1 8778 6.99 2005-07-29T20:14:25Z 2020-02-15T06:59:57Z +15601 582 1 9768 9.99 2005-07-31T09:48:41Z 2020-02-15T06:59:57Z +15602 582 2 11290 7.99 2005-08-02T14:57:44Z 2020-02-15T06:59:57Z +15603 582 1 11667 5.99 2005-08-17T05:46:55Z 2020-02-15T06:59:57Z +15604 582 1 11708 2.99 2005-08-17T07:26:47Z 2020-02-15T06:59:57Z +15605 582 2 13815 5.99 2005-08-20T13:08:53Z 2020-02-15T06:59:57Z +15606 582 1 14376 4.99 2005-08-21T09:48:56Z 2020-02-15T06:59:57Z +15607 582 1 14568 0.99 2005-08-21T16:30:48Z 2020-02-15T06:59:57Z +15608 582 1 15090 5.99 2005-08-22T11:34:33Z 2020-02-15T06:59:57Z +15609 582 1 15503 2.99 2005-08-23T02:44:49Z 2020-02-15T06:59:57Z +15610 582 1 15539 0.99 2005-08-23T04:09:03Z 2020-02-15T06:59:57Z +15611 582 2 15911 4.99 2005-08-23T17:44:53Z 2020-02-15T06:59:57Z +15612 582 2 12127 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15613 583 1 1428 3.99 2005-06-15T18:19:30Z 2020-02-15T06:59:57Z +15614 583 1 2429 9.99 2005-06-18T17:48:28Z 2020-02-15T06:59:57Z +15615 583 2 2663 4.99 2005-06-19T10:54:00Z 2020-02-15T06:59:57Z +15616 583 2 2845 5.99 2005-06-19T22:46:37Z 2020-02-15T06:59:57Z +15617 583 2 2879 3.99 2005-06-20T01:24:10Z 2020-02-15T06:59:57Z +15618 583 1 3424 0.99 2005-06-21T17:42:51Z 2020-02-15T06:59:57Z +15619 583 1 3779 2.99 2005-07-06T13:46:36Z 2020-02-15T06:59:57Z +15620 583 1 3842 4.99 2005-07-06T16:34:32Z 2020-02-15T06:59:57Z +15621 583 2 3991 9.99 2005-07-06T23:33:41Z 2020-02-15T06:59:57Z +15622 583 1 4464 4.99 2005-07-08T00:07:18Z 2020-02-15T06:59:57Z +15623 583 1 5462 0.99 2005-07-09T22:56:53Z 2020-02-15T06:59:57Z +15624 583 1 5478 5.99 2005-07-09T23:45:15Z 2020-02-15T06:59:57Z +15625 583 2 5747 7.99 2005-07-10T12:15:33Z 2020-02-15T06:59:57Z +15626 583 2 6684 6.99 2005-07-12T12:14:42Z 2020-02-15T06:59:57Z +15627 583 1 7401 5.99 2005-07-27T16:17:55Z 2020-02-15T06:59:57Z +15628 583 2 8568 7.99 2005-07-29T11:38:22Z 2020-02-15T06:59:57Z +15629 583 1 9550 7.99 2005-07-31T01:57:34Z 2020-02-15T06:59:57Z +15630 583 2 9808 1.99 2005-07-31T11:17:22Z 2020-02-15T06:59:57Z +15631 583 2 10301 4.99 2005-08-01T04:09:37Z 2020-02-15T06:59:57Z +15632 583 2 10586 2.99 2005-08-01T14:00:59Z 2020-02-15T06:59:57Z +15633 583 2 10800 4.99 2005-08-01T22:07:44Z 2020-02-15T06:59:57Z +15634 583 2 11002 4.99 2005-08-02T05:02:56Z 2020-02-15T06:59:57Z +15635 583 1 14259 0.99 2005-08-21T06:00:22Z 2020-02-15T06:59:57Z +15636 584 2 379 4.99 2005-05-27T09:25:32Z 2020-02-15T06:59:57Z +15637 584 1 626 4.99 2005-05-28T16:58:09Z 2020-02-15T06:59:57Z +15638 584 1 920 4.99 2005-05-30T11:44:01Z 2020-02-15T06:59:57Z +15639 584 2 1436 3.99 2005-06-15T18:35:40Z 2020-02-15T06:59:57Z +15640 584 2 3317 6.99 2005-06-21T08:22:32Z 2020-02-15T06:59:57Z +15641 584 2 3741 2.99 2005-07-06T12:00:18Z 2020-02-15T06:59:57Z +15642 584 2 3895 7.99 2005-07-06T19:04:24Z 2020-02-15T06:59:57Z +15643 584 1 4410 0.99 2005-07-07T21:48:16Z 2020-02-15T06:59:57Z +15644 584 1 4977 0.99 2005-07-09T00:15:50Z 2020-02-15T06:59:57Z +15645 584 2 6954 0.99 2005-07-26T23:55:13Z 2020-02-15T06:59:57Z +15646 584 1 7186 2.99 2005-07-27T08:26:12Z 2020-02-15T06:59:57Z +15647 584 1 7372 4.99 2005-07-27T15:18:42Z 2020-02-15T06:59:57Z +15648 584 1 7659 4.99 2005-07-28T02:09:45Z 2020-02-15T06:59:57Z +15649 584 2 8879 4.99 2005-07-30T00:16:02Z 2020-02-15T06:59:57Z +15650 584 2 9451 3.99 2005-07-30T22:10:17Z 2020-02-15T06:59:57Z +15651 584 1 9719 5.99 2005-07-31T08:25:13Z 2020-02-15T06:59:57Z +15652 584 2 10073 2.99 2005-07-31T19:53:15Z 2020-02-15T06:59:57Z +15653 584 1 10914 4.99 2005-08-02T02:04:43Z 2020-02-15T06:59:57Z +15654 584 2 10966 0.99 2005-08-02T04:00:47Z 2020-02-15T06:59:57Z +15655 584 1 11213 4.99 2005-08-02T12:18:35Z 2020-02-15T06:59:57Z +15656 584 2 11500 6.99 2005-08-16T23:01:22Z 2020-02-15T06:59:57Z +15657 584 2 12507 8.99 2005-08-18T13:19:13Z 2020-02-15T06:59:57Z +15658 584 2 12541 2.99 2005-08-18T14:18:30Z 2020-02-15T06:59:57Z +15659 584 2 12693 5.99 2005-08-18T20:10:19Z 2020-02-15T06:59:57Z +15660 584 1 12844 2.99 2005-08-19T01:59:08Z 2020-02-15T06:59:57Z +15661 584 2 14102 5.99 2005-08-21T00:35:21Z 2020-02-15T06:59:57Z +15662 584 2 14230 5.99 2005-08-21T04:57:29Z 2020-02-15T06:59:57Z +15663 584 2 14447 4.99 2005-08-21T12:12:05Z 2020-02-15T06:59:57Z +15664 584 1 14930 1.99 2005-08-22T05:38:32Z 2020-02-15T06:59:57Z +15665 584 1 15615 0.99 2005-08-23T07:06:00Z 2020-02-15T06:59:57Z +15666 585 1 1344 0.99 2005-06-15T12:29:41Z 2020-02-15T06:59:57Z +15667 585 2 1346 7.99 2005-06-15T12:39:52Z 2020-02-15T06:59:57Z +15668 585 1 2674 0.99 2005-06-19T11:47:59Z 2020-02-15T06:59:57Z +15669 585 1 2930 3.99 2005-06-20T04:50:29Z 2020-02-15T06:59:57Z +15670 585 2 4156 4.99 2005-07-07T09:03:51Z 2020-02-15T06:59:57Z +15671 585 2 4579 4.99 2005-07-08T06:01:56Z 2020-02-15T06:59:57Z +15672 585 1 4684 9.99 2005-07-08T10:41:06Z 2020-02-15T06:59:57Z +15673 585 2 5284 2.99 2005-07-09T15:08:21Z 2020-02-15T06:59:57Z +15674 585 2 5950 4.99 2005-07-10T23:13:45Z 2020-02-15T06:59:57Z +15675 585 2 6733 6.99 2005-07-12T14:04:01Z 2020-02-15T06:59:57Z +15676 585 1 7131 2.99 2005-07-27T06:25:06Z 2020-02-15T06:59:57Z +15677 585 1 7384 4.99 2005-07-27T15:49:45Z 2020-02-15T06:59:57Z +15678 585 2 7409 4.99 2005-07-27T16:38:24Z 2020-02-15T06:59:57Z +15679 585 2 8353 2.99 2005-07-29T04:52:10Z 2020-02-15T06:59:57Z +15680 585 2 9407 8.99 2005-07-30T20:25:24Z 2020-02-15T06:59:57Z +15681 585 1 9590 3.99 2005-07-31T03:17:16Z 2020-02-15T06:59:57Z +15682 585 1 9860 6.99 2005-07-31T13:03:24Z 2020-02-15T06:59:57Z +15683 585 2 10573 0.99 2005-08-01T13:27:24Z 2020-02-15T06:59:57Z +15684 585 1 11285 9.99 2005-08-02T14:44:02Z 2020-02-15T06:59:57Z +15685 585 2 13593 3.99 2005-08-20T05:50:52Z 2020-02-15T06:59:57Z +15686 585 2 13939 0.99 2005-08-20T17:28:01Z 2020-02-15T06:59:57Z +15687 585 1 15804 4.99 2005-08-23T14:29:16Z 2020-02-15T06:59:57Z +15688 585 1 15896 6.99 2005-08-23T17:09:56Z 2020-02-15T06:59:57Z +15689 585 2 14604 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15690 586 1 138 4.99 2005-05-25T22:48:22Z 2020-02-15T06:59:57Z +15691 586 1 900 8.99 2005-05-30T09:38:41Z 2020-02-15T06:59:57Z +15692 586 1 1260 2.99 2005-06-15T06:42:25Z 2020-02-15T06:59:57Z +15693 586 2 1540 0.99 2005-06-16T01:14:56Z 2020-02-15T06:59:57Z +15694 586 2 3487 6.99 2005-07-05T23:30:36Z 2020-02-15T06:59:57Z +15695 586 2 3733 4.99 2005-07-06T11:33:55Z 2020-02-15T06:59:57Z +15696 586 2 5382 2.99 2005-07-09T19:12:57Z 2020-02-15T06:59:57Z +15697 586 1 6679 2.99 2005-07-12T12:01:07Z 2020-02-15T06:59:57Z +15698 586 2 9786 2.99 2005-07-31T10:25:21Z 2020-02-15T06:59:57Z +15699 586 2 9896 2.99 2005-07-31T14:09:48Z 2020-02-15T06:59:57Z +15700 586 1 11034 2.99 2005-08-02T05:54:53Z 2020-02-15T06:59:57Z +15701 586 1 11763 0.99 2005-08-17T09:51:39Z 2020-02-15T06:59:57Z +15702 586 1 12013 4.99 2005-08-17T19:23:02Z 2020-02-15T06:59:57Z +15703 586 1 12898 0.99 2005-08-19T03:54:34Z 2020-02-15T06:59:57Z +15704 586 2 14043 2.99 2005-08-20T21:46:43Z 2020-02-15T06:59:57Z +15705 586 1 14392 1.99 2005-08-21T10:19:25Z 2020-02-15T06:59:57Z +15706 586 2 14533 2.99 2005-08-21T15:15:19Z 2020-02-15T06:59:57Z +15707 586 1 15666 3.99 2005-08-23T09:01:10Z 2020-02-15T06:59:57Z +15708 586 2 15684 0.99 2005-08-23T09:40:04Z 2020-02-15T06:59:57Z +15709 587 1 181 4.99 2005-05-26T04:47:06Z 2020-02-15T06:59:57Z +15710 587 1 361 0.99 2005-05-27T07:03:28Z 2020-02-15T06:59:57Z +15711 587 2 1330 2.99 2005-06-15T11:29:17Z 2020-02-15T06:59:57Z +15712 587 2 2034 4.99 2005-06-17T13:27:16Z 2020-02-15T06:59:57Z +15713 587 1 2220 2.99 2005-06-18T03:21:36Z 2020-02-15T06:59:57Z +15714 587 1 2329 4.99 2005-06-18T10:22:52Z 2020-02-15T06:59:57Z +15715 587 2 3562 2.99 2005-07-06T02:54:36Z 2020-02-15T06:59:57Z +15716 587 2 3969 0.99 2005-07-06T22:47:59Z 2020-02-15T06:59:57Z +15717 587 2 5243 3.99 2005-07-09T13:22:08Z 2020-02-15T06:59:57Z +15718 587 1 6639 0.99 2005-07-12T10:00:44Z 2020-02-15T06:59:57Z +15719 587 2 6665 6.99 2005-07-12T11:29:14Z 2020-02-15T06:59:57Z +15720 587 1 7501 8.99 2005-07-27T20:16:59Z 2020-02-15T06:59:57Z +15721 587 2 8776 5.99 2005-07-29T20:07:06Z 2020-02-15T06:59:57Z +15722 587 2 9720 6.99 2005-07-31T08:25:21Z 2020-02-15T06:59:57Z +15723 587 2 9785 4.99 2005-07-31T10:22:15Z 2020-02-15T06:59:57Z +15724 587 2 9909 5.99 2005-07-31T14:43:34Z 2020-02-15T06:59:57Z +15725 587 2 10224 4.99 2005-08-01T01:31:56Z 2020-02-15T06:59:57Z +15726 587 1 10825 2.99 2005-08-01T23:05:33Z 2020-02-15T06:59:57Z +15727 587 1 11078 2.99 2005-08-02T07:26:58Z 2020-02-15T06:59:57Z +15728 587 2 11403 4.99 2005-08-02T19:10:21Z 2020-02-15T06:59:57Z +15729 587 2 12164 4.99 2005-08-18T00:46:38Z 2020-02-15T06:59:57Z +15730 587 2 12330 6.99 2005-08-18T06:46:33Z 2020-02-15T06:59:57Z +15731 587 2 14710 4.99 2005-08-21T21:15:23Z 2020-02-15T06:59:57Z +15732 587 2 15348 2.99 2005-08-22T21:13:46Z 2020-02-15T06:59:57Z +15733 587 2 15349 0.99 2005-08-22T21:13:51Z 2020-02-15T06:59:57Z +15734 587 1 12144 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15735 588 1 576 2.99 2005-05-28T10:56:10Z 2020-02-15T06:59:57Z +15736 588 1 961 4.99 2005-05-30T18:16:44Z 2020-02-15T06:59:57Z +15737 588 2 1885 2.99 2005-06-17T03:35:59Z 2020-02-15T06:59:57Z +15738 588 2 1903 6.99 2005-06-17T04:37:20Z 2020-02-15T06:59:57Z +15739 588 2 2270 7.99 2005-06-18T06:29:01Z 2020-02-15T06:59:57Z +15740 588 1 2453 2.99 2005-06-18T19:30:53Z 2020-02-15T06:59:57Z +15741 588 2 2920 3.99 2005-06-20T04:12:46Z 2020-02-15T06:59:57Z +15742 588 1 3628 4.99 2005-07-06T06:19:43Z 2020-02-15T06:59:57Z +15743 588 1 4101 0.99 2005-07-07T06:25:11Z 2020-02-15T06:59:57Z +15744 588 2 4207 5.99 2005-07-07T11:32:45Z 2020-02-15T06:59:57Z +15745 588 2 5203 2.99 2005-07-09T10:53:59Z 2020-02-15T06:59:57Z +15746 588 1 5335 4.99 2005-07-09T17:00:49Z 2020-02-15T06:59:57Z +15747 588 1 6368 4.99 2005-07-11T21:19:01Z 2020-02-15T06:59:57Z +15748 588 2 7377 2.99 2005-07-27T15:31:28Z 2020-02-15T06:59:57Z +15749 588 2 7903 2.99 2005-07-28T11:20:36Z 2020-02-15T06:59:57Z +15750 588 1 8421 4.99 2005-07-29T07:00:47Z 2020-02-15T06:59:57Z +15751 588 1 8429 2.99 2005-07-29T07:11:49Z 2020-02-15T06:59:57Z +15752 588 2 8519 2.99 2005-07-29T10:09:43Z 2020-02-15T06:59:57Z +15753 588 1 8769 2.99 2005-07-29T19:45:33Z 2020-02-15T06:59:57Z +15754 588 2 9326 2.99 2005-07-30T17:30:03Z 2020-02-15T06:59:57Z +15755 588 2 9370 4.99 2005-07-30T18:57:29Z 2020-02-15T06:59:57Z +15756 588 2 10373 4.99 2005-08-01T06:24:26Z 2020-02-15T06:59:57Z +15757 588 1 12185 2.99 2005-08-18T01:40:14Z 2020-02-15T06:59:57Z +15758 588 2 12815 4.99 2005-08-19T00:59:42Z 2020-02-15T06:59:57Z +15759 588 1 13064 4.99 2005-08-19T09:46:53Z 2020-02-15T06:59:57Z +15760 588 1 13923 1.99 2005-08-20T17:05:02Z 2020-02-15T06:59:57Z +15761 588 1 15109 1.99 2005-08-22T12:12:58Z 2020-02-15T06:59:57Z +15762 588 1 15158 2.99 2005-08-22T14:30:39Z 2020-02-15T06:59:57Z +15763 588 1 15209 4.99 2005-08-22T16:37:32Z 2020-02-15T06:59:57Z +15764 589 1 531 0.99 2005-05-28T05:23:38Z 2020-02-15T06:59:57Z +15765 589 1 596 4.99 2005-05-28T14:00:03Z 2020-02-15T06:59:57Z +15766 589 1 737 4.99 2005-05-29T08:11:31Z 2020-02-15T06:59:57Z +15767 589 1 1439 4.99 2005-06-15T18:45:32Z 2020-02-15T06:59:57Z +15768 589 2 1703 4.99 2005-06-16T13:28:44Z 2020-02-15T06:59:57Z +15769 589 2 2652 8.99 2005-06-19T10:35:26Z 2020-02-15T06:59:57Z +15770 589 1 2707 8.99 2005-06-19T13:57:08Z 2020-02-15T06:59:57Z +15771 589 1 2979 2.99 2005-06-20T08:31:05Z 2020-02-15T06:59:57Z +15772 589 2 4986 2.99 2005-07-09T00:44:33Z 2020-02-15T06:59:57Z +15773 589 1 5951 0.99 2005-07-10T23:14:29Z 2020-02-15T06:59:57Z +15774 589 2 6177 4.99 2005-07-11T10:53:49Z 2020-02-15T06:59:57Z +15775 589 2 6247 3.99 2005-07-11T15:00:05Z 2020-02-15T06:59:57Z +15776 589 2 7250 0.99 2005-07-27T10:44:09Z 2020-02-15T06:59:57Z +15777 589 2 7431 3.99 2005-07-27T17:27:27Z 2020-02-15T06:59:57Z +15778 589 2 7948 9.99 2005-07-28T13:06:16Z 2020-02-15T06:59:57Z +15779 589 2 8056 0.99 2005-07-28T17:04:15Z 2020-02-15T06:59:57Z +15780 589 1 8374 3.99 2005-07-29T05:24:02Z 2020-02-15T06:59:57Z +15781 589 1 9153 4.99 2005-07-30T10:58:16Z 2020-02-15T06:59:57Z +15782 589 2 10544 4.99 2005-08-01T12:36:21Z 2020-02-15T06:59:57Z +15783 589 1 11980 4.99 2005-08-17T18:10:18Z 2020-02-15T06:59:57Z +15784 589 1 12738 7.99 2005-08-18T22:11:47Z 2020-02-15T06:59:57Z +15785 589 2 12933 8.99 2005-08-19T05:18:20Z 2020-02-15T06:59:57Z +15786 589 1 14038 6.99 2005-08-20T21:39:23Z 2020-02-15T06:59:57Z +15787 589 1 14254 6.99 2005-08-21T05:51:28Z 2020-02-15T06:59:57Z +15788 589 1 14544 0.99 2005-08-21T15:41:01Z 2020-02-15T06:59:57Z +15789 589 2 14706 0.99 2005-08-21T21:04:42Z 2020-02-15T06:59:57Z +15790 589 2 15917 5.99 2005-08-23T17:57:28Z 2020-02-15T06:59:57Z +15791 589 2 15992 0.99 2005-08-23T20:28:32Z 2020-02-15T06:59:57Z +15792 590 1 602 3.99 2005-05-28T14:15:54Z 2020-02-15T06:59:57Z +15793 590 2 1456 7.99 2005-06-15T20:00:11Z 2020-02-15T06:59:57Z +15794 590 2 2352 2.99 2005-06-18T12:40:15Z 2020-02-15T06:59:57Z +15795 590 2 2775 2.99 2005-06-19T18:14:20Z 2020-02-15T06:59:57Z +15796 590 1 2916 6.99 2005-06-20T04:01:04Z 2020-02-15T06:59:57Z +15797 590 1 2964 9.99 2005-06-20T07:33:29Z 2020-02-15T06:59:57Z +15798 590 2 4685 4.99 2005-07-08T10:45:13Z 2020-02-15T06:59:57Z +15799 590 1 4710 2.99 2005-07-08T12:04:53Z 2020-02-15T06:59:57Z +15800 590 2 4722 4.99 2005-07-08T12:42:27Z 2020-02-15T06:59:57Z +15801 590 1 5165 0.99 2005-07-09T09:08:53Z 2020-02-15T06:59:57Z +15802 590 1 5529 2.99 2005-07-10T02:11:13Z 2020-02-15T06:59:57Z +15803 590 1 5991 4.99 2005-07-11T01:03:38Z 2020-02-15T06:59:57Z +15804 590 2 6232 4.99 2005-07-11T14:08:27Z 2020-02-15T06:59:57Z +15805 590 2 6492 4.99 2005-07-12T02:28:40Z 2020-02-15T06:59:57Z +15806 590 1 7010 4.99 2005-07-27T01:56:01Z 2020-02-15T06:59:57Z +15807 590 2 7665 2.99 2005-07-28T02:28:30Z 2020-02-15T06:59:57Z +15808 590 1 8195 5.99 2005-07-28T22:52:58Z 2020-02-15T06:59:57Z +15809 590 1 8801 4.99 2005-07-29T21:25:22Z 2020-02-15T06:59:57Z +15810 590 2 9126 0.99 2005-07-30T09:44:15Z 2020-02-15T06:59:57Z +15811 590 1 9884 4.99 2005-07-31T13:56:24Z 2020-02-15T06:59:57Z +15812 590 1 10657 4.99 2005-08-01T16:38:44Z 2020-02-15T06:59:57Z +15813 590 2 11578 5.99 2005-08-17T01:54:13Z 2020-02-15T06:59:57Z +15814 590 2 11713 3.99 2005-08-17T07:34:05Z 2020-02-15T06:59:57Z +15815 590 1 14830 2.99 2005-08-22T01:37:19Z 2020-02-15T06:59:57Z +15816 590 2 15458 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15817 591 1 1418 0.99 2005-06-15T17:51:27Z 2020-02-15T06:59:57Z +15818 591 2 3341 2.99 2005-06-21T10:37:25Z 2020-02-15T06:59:57Z +15819 591 2 3435 4.99 2005-06-21T19:14:58Z 2020-02-15T06:59:57Z +15820 591 1 3636 0.99 2005-07-06T07:03:52Z 2020-02-15T06:59:57Z +15821 591 2 4383 11.99 2005-07-07T20:45:51Z 2020-02-15T06:59:57Z +15822 591 1 4581 6.99 2005-07-08T06:05:06Z 2020-02-15T06:59:57Z +15823 591 1 5704 5.99 2005-07-10T10:06:29Z 2020-02-15T06:59:57Z +15824 591 1 5759 6.99 2005-07-10T12:43:22Z 2020-02-15T06:59:57Z +15825 591 1 7118 8.99 2005-07-27T05:53:50Z 2020-02-15T06:59:57Z +15826 591 1 7212 2.99 2005-07-27T09:21:22Z 2020-02-15T06:59:57Z +15827 591 2 7511 4.99 2005-07-27T20:38:40Z 2020-02-15T06:59:57Z +15828 591 1 7549 3.99 2005-07-27T21:53:21Z 2020-02-15T06:59:57Z +15829 591 2 7741 0.99 2005-07-28T05:25:55Z 2020-02-15T06:59:57Z +15830 591 1 7997 4.99 2005-07-28T15:02:25Z 2020-02-15T06:59:57Z +15831 591 1 8149 3.99 2005-07-28T20:48:12Z 2020-02-15T06:59:57Z +15832 591 2 8666 5.99 2005-07-29T15:39:38Z 2020-02-15T06:59:57Z +15833 591 2 8819 4.99 2005-07-29T22:14:26Z 2020-02-15T06:59:57Z +15834 591 1 9684 0.99 2005-07-31T06:48:33Z 2020-02-15T06:59:57Z +15835 591 1 10415 4.99 2005-08-01T08:05:59Z 2020-02-15T06:59:57Z +15836 591 2 12203 5.99 2005-08-18T02:18:52Z 2020-02-15T06:59:57Z +15837 591 2 12227 4.99 2005-08-18T03:04:28Z 2020-02-15T06:59:57Z +15838 591 1 12547 4.99 2005-08-18T14:29:39Z 2020-02-15T06:59:57Z +15839 591 1 12571 5.99 2005-08-18T15:31:18Z 2020-02-15T06:59:57Z +15840 591 1 12934 5.99 2005-08-19T05:18:42Z 2020-02-15T06:59:57Z +15841 591 2 13104 2.99 2005-08-19T11:06:06Z 2020-02-15T06:59:57Z +15842 591 2 13343 3.99 2005-08-19T20:22:08Z 2020-02-15T06:59:57Z +15843 591 1 13867 9.99 2005-08-20T15:05:42Z 2020-02-15T06:59:57Z +15844 592 2 1163 6.99 2005-06-14T23:12:46Z 2020-02-15T06:59:57Z +15845 592 2 1423 5.99 2005-06-15T18:08:12Z 2020-02-15T06:59:57Z +15846 592 1 1479 2.99 2005-06-15T21:13:38Z 2020-02-15T06:59:57Z +15847 592 1 2627 0.99 2005-06-19T08:32:00Z 2020-02-15T06:59:57Z +15848 592 1 3158 7.99 2005-06-20T21:08:19Z 2020-02-15T06:59:57Z +15849 592 2 3560 2.99 2005-07-06T02:51:37Z 2020-02-15T06:59:57Z +15850 592 1 3973 11.99 2005-07-06T22:58:31Z 2020-02-15T06:59:57Z +15851 592 1 4129 1.99 2005-07-07T07:37:03Z 2020-02-15T06:59:57Z +15852 592 1 4145 9.99 2005-07-07T08:26:39Z 2020-02-15T06:59:57Z +15853 592 1 4460 0.99 2005-07-07T23:50:14Z 2020-02-15T06:59:57Z +15854 592 1 4518 2.99 2005-07-08T02:48:36Z 2020-02-15T06:59:57Z +15855 592 1 6937 0.99 2005-07-26T23:15:50Z 2020-02-15T06:59:57Z +15856 592 2 7173 0.99 2005-07-27T07:59:24Z 2020-02-15T06:59:57Z +15857 592 1 7278 3.99 2005-07-27T11:50:34Z 2020-02-15T06:59:57Z +15858 592 2 7364 4.99 2005-07-27T14:58:40Z 2020-02-15T06:59:57Z +15859 592 1 8730 2.99 2005-07-29T18:23:34Z 2020-02-15T06:59:57Z +15860 592 2 8773 0.99 2005-07-29T19:55:34Z 2020-02-15T06:59:57Z +15861 592 1 9268 4.99 2005-07-30T15:02:30Z 2020-02-15T06:59:57Z +15862 592 1 9437 3.99 2005-07-30T21:36:04Z 2020-02-15T06:59:57Z +15863 592 2 9666 6.99 2005-07-31T06:20:58Z 2020-02-15T06:59:57Z +15864 592 2 10383 0.99 2005-08-01T06:37:16Z 2020-02-15T06:59:57Z +15865 592 2 10634 2.99 2005-08-01T15:37:48Z 2020-02-15T06:59:57Z +15866 592 1 11410 8.99 2005-08-02T19:29:01Z 2020-02-15T06:59:57Z +15867 592 2 12043 0.99 2005-08-17T20:38:21Z 2020-02-15T06:59:57Z +15868 592 2 12619 0.99 2005-08-18T17:24:15Z 2020-02-15T06:59:57Z +15869 592 1 12976 1.99 2005-08-19T06:52:58Z 2020-02-15T06:59:57Z +15870 592 1 13157 2.99 2005-08-19T13:12:28Z 2020-02-15T06:59:57Z +15871 592 2 13662 3.99 2005-08-20T08:11:58Z 2020-02-15T06:59:57Z +15872 592 2 14606 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15873 593 1 790 2.99 2005-05-29T16:19:29Z 2020-02-15T06:59:57Z +15874 593 1 991 8.99 2005-05-30T23:29:22Z 2020-02-15T06:59:57Z +15875 593 2 2055 5.99 2005-06-17T15:27:03Z 2020-02-15T06:59:57Z +15876 593 2 2205 4.99 2005-06-18T02:14:34Z 2020-02-15T06:59:57Z +15877 593 1 2441 4.99 2005-06-18T18:45:11Z 2020-02-15T06:59:57Z +15878 593 1 2832 4.99 2005-06-19T21:21:53Z 2020-02-15T06:59:57Z +15879 593 2 3542 2.99 2005-07-06T01:51:42Z 2020-02-15T06:59:57Z +15880 593 2 4075 2.99 2005-07-07T04:51:44Z 2020-02-15T06:59:57Z +15881 593 2 4280 3.99 2005-07-07T15:09:31Z 2020-02-15T06:59:57Z +15882 593 2 4623 0.99 2005-07-08T08:03:22Z 2020-02-15T06:59:57Z +15883 593 2 4781 4.99 2005-07-08T16:06:55Z 2020-02-15T06:59:57Z +15884 593 2 4867 0.99 2005-07-08T19:10:52Z 2020-02-15T06:59:57Z +15885 593 1 6386 2.99 2005-07-11T22:14:57Z 2020-02-15T06:59:57Z +15886 593 1 6731 2.99 2005-07-12T13:58:27Z 2020-02-15T06:59:57Z +15887 593 2 7958 4.99 2005-07-28T13:34:34Z 2020-02-15T06:59:57Z +15888 593 1 8497 2.99 2005-07-29T09:07:03Z 2020-02-15T06:59:57Z +15889 593 2 9329 6.99 2005-07-30T17:42:38Z 2020-02-15T06:59:57Z +15890 593 1 9483 6.99 2005-07-30T23:31:31Z 2020-02-15T06:59:57Z +15891 593 1 10368 3.99 2005-08-01T06:13:38Z 2020-02-15T06:59:57Z +15892 593 2 10533 3.99 2005-08-01T12:14:16Z 2020-02-15T06:59:57Z +15893 593 1 10840 5.99 2005-08-01T23:38:34Z 2020-02-15T06:59:57Z +15894 593 2 10904 4.99 2005-08-02T01:43:02Z 2020-02-15T06:59:57Z +15895 593 2 12744 2.99 2005-08-18T22:22:36Z 2020-02-15T06:59:57Z +15896 593 1 13524 6.99 2005-08-20T02:48:43Z 2020-02-15T06:59:57Z +15897 593 1 14408 5.99 2005-08-21T10:47:24Z 2020-02-15T06:59:57Z +15898 593 1 14653 0.99 2005-08-21T19:35:59Z 2020-02-15T06:59:57Z +15899 594 1 313 4.99 2005-05-26T22:56:19Z 2020-02-15T06:59:57Z +15900 594 1 360 8.99 2005-05-27T06:51:14Z 2020-02-15T06:59:57Z +15901 594 2 1018 0.99 2005-05-31T02:53:42Z 2020-02-15T06:59:57Z +15902 594 1 1045 6.99 2005-05-31T06:29:01Z 2020-02-15T06:59:57Z +15903 594 2 1537 5.99 2005-06-16T00:52:51Z 2020-02-15T06:59:57Z +15904 594 1 1816 4.99 2005-06-16T21:20:41Z 2020-02-15T06:59:57Z +15905 594 1 1950 2.99 2005-06-17T08:26:52Z 2020-02-15T06:59:57Z +15906 594 1 2276 6.99 2005-06-18T06:33:48Z 2020-02-15T06:59:57Z +15907 594 2 2786 0.99 2005-06-19T18:46:43Z 2020-02-15T06:59:57Z +15908 594 2 3302 1.99 2005-06-21T07:33:40Z 2020-02-15T06:59:57Z +15909 594 2 3474 0.99 2005-07-05T22:59:53Z 2020-02-15T06:59:57Z +15910 594 1 3546 4.99 2005-07-06T02:17:54Z 2020-02-15T06:59:57Z +15911 594 2 3960 2.99 2005-07-06T22:08:53Z 2020-02-15T06:59:57Z +15912 594 1 4037 5.99 2005-07-07T02:52:52Z 2020-02-15T06:59:57Z +15913 594 1 4154 3.99 2005-07-07T08:58:23Z 2020-02-15T06:59:57Z +15914 594 2 5386 2.99 2005-07-09T19:19:09Z 2020-02-15T06:59:57Z +15915 594 1 6473 6.99 2005-07-12T01:35:40Z 2020-02-15T06:59:57Z +15916 594 1 7533 8.99 2005-07-27T21:24:33Z 2020-02-15T06:59:57Z +15917 594 1 8567 1.99 2005-07-29T11:37:30Z 2020-02-15T06:59:57Z +15918 594 1 8603 2.99 2005-07-29T13:07:07Z 2020-02-15T06:59:57Z +15919 594 2 8820 5.99 2005-07-29T22:14:56Z 2020-02-15T06:59:57Z +15920 594 1 9545 7.99 2005-07-31T01:46:24Z 2020-02-15T06:59:57Z +15921 594 1 9698 3.99 2005-07-31T07:24:35Z 2020-02-15T06:59:57Z +15922 594 2 9802 4.99 2005-07-31T11:04:20Z 2020-02-15T06:59:57Z +15923 594 2 10704 8.99 2005-08-01T18:38:02Z 2020-02-15T06:59:57Z +15924 594 2 14824 4.99 2005-08-22T01:27:51Z 2020-02-15T06:59:57Z +15925 594 1 14999 4.99 2005-08-22T07:54:47Z 2020-02-15T06:59:57Z +15926 595 1 613 6.99 2005-05-28T15:27:22Z 2020-02-15T06:59:57Z +15927 595 2 1170 2.99 2005-06-14T23:47:35Z 2020-02-15T06:59:57Z +15928 595 2 3371 4.99 2005-06-21T13:27:22Z 2020-02-15T06:59:57Z +15929 595 1 3789 9.99 2005-07-06T14:02:26Z 2020-02-15T06:59:57Z +15930 595 1 4017 4.99 2005-07-07T01:08:18Z 2020-02-15T06:59:57Z +15931 595 1 4241 4.99 2005-07-07T13:39:00Z 2020-02-15T06:59:57Z +15932 595 2 4775 2.99 2005-07-08T15:44:05Z 2020-02-15T06:59:57Z +15933 595 1 5631 1.99 2005-07-10T06:15:45Z 2020-02-15T06:59:57Z +15934 595 1 5952 1.99 2005-07-10T23:18:20Z 2020-02-15T06:59:57Z +15935 595 1 6105 6.99 2005-07-11T07:03:19Z 2020-02-15T06:59:57Z +15936 595 1 6704 6.99 2005-07-12T12:50:24Z 2020-02-15T06:59:57Z +15937 595 1 7086 4.99 2005-07-27T04:39:46Z 2020-02-15T06:59:57Z +15938 595 2 7307 0.99 2005-07-27T12:59:10Z 2020-02-15T06:59:57Z +15939 595 1 7396 4.99 2005-07-27T16:03:53Z 2020-02-15T06:59:57Z +15940 595 2 7490 3.99 2005-07-27T19:48:12Z 2020-02-15T06:59:57Z +15941 595 1 9152 2.99 2005-07-30T10:51:27Z 2020-02-15T06:59:57Z +15942 595 2 9223 2.99 2005-07-30T13:23:20Z 2020-02-15T06:59:57Z +15943 595 1 9354 4.99 2005-07-30T18:32:51Z 2020-02-15T06:59:57Z +15944 595 2 9497 0.99 2005-07-30T23:56:54Z 2020-02-15T06:59:57Z +15945 595 2 9542 4.99 2005-07-31T01:41:48Z 2020-02-15T06:59:57Z +15946 595 1 9631 2.99 2005-07-31T05:02:00Z 2020-02-15T06:59:57Z +15947 595 2 9826 10.99 2005-07-31T11:51:46Z 2020-02-15T06:59:57Z +15948 595 1 10729 2.99 2005-08-01T19:21:11Z 2020-02-15T06:59:57Z +15949 595 1 10932 2.99 2005-08-02T02:46:22Z 2020-02-15T06:59:57Z +15950 595 2 11748 0.99 2005-08-17T09:04:02Z 2020-02-15T06:59:57Z +15951 595 1 12235 0.99 2005-08-18T03:17:50Z 2020-02-15T06:59:57Z +15952 595 1 14334 0.99 2005-08-21T08:32:32Z 2020-02-15T06:59:57Z +15953 595 2 15576 2.99 2005-08-23T05:32:03Z 2020-02-15T06:59:57Z +15954 595 2 15994 0.99 2005-08-23T20:29:10Z 2020-02-15T06:59:57Z +15955 595 2 16016 2.99 2005-08-23T21:26:35Z 2020-02-15T06:59:57Z +15956 596 2 303 4.99 2005-05-26T21:16:52Z 2020-02-15T06:59:57Z +15957 596 2 625 0.99 2005-05-28T16:35:46Z 2020-02-15T06:59:57Z +15958 596 2 667 4.99 2005-05-28T21:49:02Z 2020-02-15T06:59:57Z +15959 596 2 782 1.99 2005-05-29T14:38:57Z 2020-02-15T06:59:57Z +15960 596 1 914 2.99 2005-05-30T11:06:00Z 2020-02-15T06:59:57Z +15961 596 1 974 6.99 2005-05-30T20:28:42Z 2020-02-15T06:59:57Z +15962 596 1 1644 1.99 2005-06-16T08:58:18Z 2020-02-15T06:59:57Z +15963 596 1 2767 1.99 2005-06-19T17:46:35Z 2020-02-15T06:59:57Z +15964 596 2 5742 3.99 2005-07-10T11:56:18Z 2020-02-15T06:59:57Z +15965 596 1 6015 2.99 2005-07-11T02:04:12Z 2020-02-15T06:59:57Z +15966 596 1 6017 0.99 2005-07-11T02:05:32Z 2020-02-15T06:59:57Z +15967 596 1 6197 4.99 2005-07-11T12:09:51Z 2020-02-15T06:59:57Z +15968 596 2 6883 4.99 2005-07-12T20:50:48Z 2020-02-15T06:59:57Z +15969 596 1 10094 3.99 2005-07-31T20:31:18Z 2020-02-15T06:59:57Z +15970 596 2 10692 4.99 2005-08-01T18:12:35Z 2020-02-15T06:59:57Z +15971 596 1 10756 2.99 2005-08-01T20:17:03Z 2020-02-15T06:59:57Z +15972 596 2 10804 0.99 2005-08-01T22:22:11Z 2020-02-15T06:59:57Z +15973 596 2 11009 4.99 2005-08-02T05:06:23Z 2020-02-15T06:59:57Z +15974 596 2 11852 3.99 2005-08-17T13:38:27Z 2020-02-15T06:59:57Z +15975 596 1 11934 0.99 2005-08-17T16:40:00Z 2020-02-15T06:59:57Z +15976 596 2 12560 4.99 2005-08-18T14:54:19Z 2020-02-15T06:59:57Z +15977 596 1 12878 4.99 2005-08-19T03:17:08Z 2020-02-15T06:59:57Z +15978 596 1 13648 4.99 2005-08-20T07:48:10Z 2020-02-15T06:59:57Z +15979 596 1 14050 3.99 2005-08-20T22:09:04Z 2020-02-15T06:59:57Z +15980 596 1 14417 0.99 2005-08-21T11:13:35Z 2020-02-15T06:59:57Z +15981 596 1 15405 0.99 2005-08-22T23:20:41Z 2020-02-15T06:59:57Z +15982 596 1 15899 6.99 2005-08-23T17:16:28Z 2020-02-15T06:59:57Z +15983 596 1 15423 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15984 597 2 34 2.99 2005-05-25T04:19:28Z 2020-02-15T06:59:57Z +15985 597 2 514 8.99 2005-05-28T03:09:28Z 2020-02-15T06:59:57Z +15986 597 1 2379 0.99 2005-06-18T14:59:39Z 2020-02-15T06:59:57Z +15987 597 1 2696 4.99 2005-06-19T13:28:42Z 2020-02-15T06:59:57Z +15988 597 1 3201 1.99 2005-06-21T00:30:26Z 2020-02-15T06:59:57Z +15989 597 1 5093 0.99 2005-07-09T05:59:12Z 2020-02-15T06:59:57Z +15990 597 1 5348 4.99 2005-07-09T17:34:11Z 2020-02-15T06:59:57Z +15991 597 2 5732 2.99 2005-07-10T11:36:32Z 2020-02-15T06:59:57Z +15992 597 1 6508 2.99 2005-07-12T03:34:50Z 2020-02-15T06:59:57Z +15993 597 2 7968 4.99 2005-07-28T13:57:35Z 2020-02-15T06:59:57Z +15994 597 2 8948 4.99 2005-07-30T03:16:18Z 2020-02-15T06:59:57Z +15995 597 2 10021 4.99 2005-07-31T18:24:39Z 2020-02-15T06:59:57Z +15996 597 1 10214 0.99 2005-08-01T01:04:15Z 2020-02-15T06:59:57Z +15997 597 2 10986 5.99 2005-08-02T04:35:24Z 2020-02-15T06:59:57Z +15998 597 2 11147 4.99 2005-08-02T09:45:54Z 2020-02-15T06:59:57Z +15999 597 2 11223 2.99 2005-08-02T12:34:27Z 2020-02-15T06:59:57Z +16000 597 1 11240 2.99 2005-08-02T13:28:30Z 2020-02-15T06:59:57Z +16001 597 1 11880 5.99 2005-08-17T14:28:28Z 2020-02-15T06:59:57Z +16002 597 1 12081 4.99 2005-08-17T22:10:46Z 2020-02-15T06:59:57Z +16003 597 1 12992 0.99 2005-08-19T07:23:06Z 2020-02-15T06:59:57Z +16004 597 2 13019 2.99 2005-08-19T08:07:43Z 2020-02-15T06:59:57Z +16005 597 1 13152 6.99 2005-08-19T13:09:32Z 2020-02-15T06:59:57Z +16006 597 2 15275 2.99 2005-08-22T18:57:39Z 2020-02-15T06:59:57Z +16007 597 1 15469 4.99 2005-08-23T01:29:59Z 2020-02-15T06:59:57Z +16008 597 1 11652 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +16009 598 1 3005 2.99 2005-06-20T10:10:29Z 2020-02-15T06:59:57Z +16010 598 1 3648 0.99 2005-07-06T07:30:41Z 2020-02-15T06:59:57Z +16011 598 2 3950 6.99 2005-07-06T21:48:44Z 2020-02-15T06:59:57Z +16012 598 1 3972 4.99 2005-07-06T22:53:57Z 2020-02-15T06:59:57Z +16013 598 1 4181 4.99 2005-07-07T10:27:54Z 2020-02-15T06:59:57Z +16014 598 2 5688 5.99 2005-07-10T09:16:08Z 2020-02-15T06:59:57Z +16015 598 1 6519 4.99 2005-07-12T04:00:36Z 2020-02-15T06:59:57Z +16016 598 2 6528 4.99 2005-07-12T04:29:44Z 2020-02-15T06:59:57Z +16017 598 2 6575 0.99 2005-07-12T06:12:53Z 2020-02-15T06:59:57Z +16018 598 2 6660 3.99 2005-07-12T11:20:12Z 2020-02-15T06:59:57Z +16019 598 2 7201 6.99 2005-07-27T08:57:40Z 2020-02-15T06:59:57Z +16020 598 2 7354 0.99 2005-07-27T14:42:11Z 2020-02-15T06:59:57Z +16021 598 1 7998 0.99 2005-07-28T15:08:48Z 2020-02-15T06:59:57Z +16022 598 2 8436 0.99 2005-07-29T07:21:20Z 2020-02-15T06:59:57Z +16023 598 1 8511 5.99 2005-07-29T09:42:42Z 2020-02-15T06:59:57Z +16024 598 1 8939 4.99 2005-07-30T02:56:53Z 2020-02-15T06:59:57Z +16025 598 1 10054 4.99 2005-07-31T19:15:52Z 2020-02-15T06:59:57Z +16026 598 2 11350 0.99 2005-08-02T17:22:59Z 2020-02-15T06:59:57Z +16027 598 2 12601 2.99 2005-08-18T16:47:52Z 2020-02-15T06:59:57Z +16028 598 2 14345 0.99 2005-08-21T08:41:15Z 2020-02-15T06:59:57Z +16029 598 2 15307 2.99 2005-08-22T19:54:26Z 2020-02-15T06:59:57Z +16030 598 1 15443 7.99 2005-08-23T00:44:15Z 2020-02-15T06:59:57Z +16031 599 2 1008 4.99 2005-05-31T01:18:56Z 2020-02-15T06:59:57Z +16032 599 1 2272 1.99 2005-06-18T06:29:53Z 2020-02-15T06:59:57Z +16033 599 2 3043 6.99 2005-06-20T12:38:35Z 2020-02-15T06:59:57Z +16034 599 2 3398 4.99 2005-06-21T15:34:38Z 2020-02-15T06:59:57Z +16035 599 1 3429 6.99 2005-06-21T18:46:05Z 2020-02-15T06:59:57Z +16036 599 1 5065 0.99 2005-07-09T04:42:00Z 2020-02-15T06:59:57Z +16037 599 1 5843 2.99 2005-07-10T17:14:27Z 2020-02-15T06:59:57Z +16038 599 2 6800 9.99 2005-07-12T17:03:56Z 2020-02-15T06:59:57Z +16039 599 2 6895 2.99 2005-07-12T21:23:59Z 2020-02-15T06:59:57Z +16040 599 1 8965 6.99 2005-07-30T03:52:37Z 2020-02-15T06:59:57Z +16041 599 2 9630 2.99 2005-07-31T04:57:07Z 2020-02-15T06:59:57Z +16042 599 2 9679 2.99 2005-07-31T06:41:19Z 2020-02-15T06:59:57Z +16043 599 2 11522 3.99 2005-08-17T00:05:05Z 2020-02-15T06:59:57Z +16044 599 1 14233 1.99 2005-08-21T05:07:08Z 2020-02-15T06:59:57Z +16045 599 1 14599 4.99 2005-08-21T17:43:42Z 2020-02-15T06:59:57Z +16046 599 1 14719 1.99 2005-08-21T21:41:57Z 2020-02-15T06:59:57Z +16047 599 2 15590 8.99 2005-08-23T06:09:44Z 2020-02-15T06:59:57Z +16048 599 2 15719 2.99 2005-08-23T11:08:46Z 2020-02-15T06:59:57Z +16049 599 2 15725 2.99 2005-08-23T11:25:00Z 2020-02-15T06:59:57Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/rental.tsv b/drivers/csv/testdata/sakila-tsv-noheader/rental.tsv new file mode 100644 index 00000000..5e21a5c2 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/rental.tsv @@ -0,0 +1,16044 @@ +1 2005-05-24T22:53:30Z 367 130 2005-05-26T22:04:30Z 1 2020-02-15T06:59:36Z +2 2005-05-24T22:54:33Z 1525 459 2005-05-28T19:40:33Z 1 2020-02-15T06:59:36Z +3 2005-05-24T23:03:39Z 1711 408 2005-06-01T22:12:39Z 1 2020-02-15T06:59:36Z +4 2005-05-24T23:04:41Z 2452 333 2005-06-03T01:43:41Z 2 2020-02-15T06:59:36Z +5 2005-05-24T23:05:21Z 2079 222 2005-06-02T04:33:21Z 1 2020-02-15T06:59:36Z +6 2005-05-24T23:08:07Z 2792 549 2005-05-27T01:32:07Z 1 2020-02-15T06:59:36Z +7 2005-05-24T23:11:53Z 3995 269 2005-05-29T20:34:53Z 2 2020-02-15T06:59:36Z +8 2005-05-24T23:31:46Z 2346 239 2005-05-27T23:33:46Z 2 2020-02-15T06:59:36Z +9 2005-05-25T00:00:40Z 2580 126 2005-05-28T00:22:40Z 1 2020-02-15T06:59:36Z +10 2005-05-25T00:02:21Z 1824 399 2005-05-31T22:44:21Z 2 2020-02-15T06:59:36Z +11 2005-05-25T00:09:02Z 4443 142 2005-06-02T20:56:02Z 2 2020-02-15T06:59:36Z +12 2005-05-25T00:19:27Z 1584 261 2005-05-30T05:44:27Z 2 2020-02-15T06:59:36Z +13 2005-05-25T00:22:55Z 2294 334 2005-05-30T04:28:55Z 1 2020-02-15T06:59:36Z +14 2005-05-25T00:31:15Z 2701 446 2005-05-26T02:56:15Z 1 2020-02-15T06:59:36Z +15 2005-05-25T00:39:22Z 3049 319 2005-06-03T03:30:22Z 1 2020-02-15T06:59:36Z +16 2005-05-25T00:43:11Z 389 316 2005-05-26T04:42:11Z 2 2020-02-15T06:59:36Z +17 2005-05-25T01:06:36Z 830 575 2005-05-27T00:43:36Z 1 2020-02-15T06:59:36Z +18 2005-05-25T01:10:47Z 3376 19 2005-05-31T06:35:47Z 2 2020-02-15T06:59:36Z +19 2005-05-25T01:17:24Z 1941 456 2005-05-31T06:00:24Z 1 2020-02-15T06:59:36Z +20 2005-05-25T01:48:41Z 3517 185 2005-05-27T02:20:41Z 2 2020-02-15T06:59:36Z +21 2005-05-25T01:59:46Z 146 388 2005-05-26T01:01:46Z 2 2020-02-15T06:59:36Z +22 2005-05-25T02:19:23Z 727 509 2005-05-26T04:52:23Z 2 2020-02-15T06:59:36Z +23 2005-05-25T02:40:21Z 4441 438 2005-05-29T06:34:21Z 1 2020-02-15T06:59:36Z +24 2005-05-25T02:53:02Z 3273 350 2005-05-27T01:15:02Z 1 2020-02-15T06:59:36Z +25 2005-05-25T03:21:20Z 3961 37 2005-05-27T21:25:20Z 2 2020-02-15T06:59:36Z +26 2005-05-25T03:36:50Z 4371 371 2005-05-31T00:34:50Z 1 2020-02-15T06:59:36Z +27 2005-05-25T03:41:50Z 1225 301 2005-05-30T01:13:50Z 2 2020-02-15T06:59:36Z +28 2005-05-25T03:42:37Z 4068 232 2005-05-26T09:26:37Z 2 2020-02-15T06:59:36Z +29 2005-05-25T03:47:12Z 611 44 2005-05-30T00:31:12Z 2 2020-02-15T06:59:36Z +30 2005-05-25T04:01:32Z 3744 430 2005-05-30T03:12:32Z 1 2020-02-15T06:59:36Z +31 2005-05-25T04:05:17Z 4482 369 2005-05-30T07:15:17Z 1 2020-02-15T06:59:36Z +32 2005-05-25T04:06:21Z 3832 230 2005-05-25T23:55:21Z 1 2020-02-15T06:59:36Z +33 2005-05-25T04:18:51Z 1681 272 2005-05-27T03:58:51Z 1 2020-02-15T06:59:36Z +34 2005-05-25T04:19:28Z 2613 597 2005-05-29T00:10:28Z 2 2020-02-15T06:59:36Z +35 2005-05-25T04:24:36Z 1286 484 2005-05-27T07:02:36Z 2 2020-02-15T06:59:36Z +36 2005-05-25T04:36:26Z 1308 88 2005-05-29T00:31:26Z 1 2020-02-15T06:59:36Z +37 2005-05-25T04:44:31Z 403 535 2005-05-29T01:03:31Z 1 2020-02-15T06:59:36Z +38 2005-05-25T04:47:44Z 2540 302 2005-06-01T00:58:44Z 1 2020-02-15T06:59:36Z +39 2005-05-25T04:51:46Z 4466 207 2005-05-31T03:14:46Z 2 2020-02-15T06:59:36Z +40 2005-05-25T05:09:04Z 2638 413 2005-05-27T23:12:04Z 1 2020-02-15T06:59:36Z +41 2005-05-25T05:12:29Z 1761 174 2005-06-02T00:28:29Z 1 2020-02-15T06:59:36Z +42 2005-05-25T05:24:58Z 380 523 2005-05-31T02:47:58Z 2 2020-02-15T06:59:36Z +43 2005-05-25T05:39:25Z 2578 532 2005-05-26T06:54:25Z 2 2020-02-15T06:59:36Z +44 2005-05-25T05:53:23Z 3098 207 2005-05-29T10:56:23Z 2 2020-02-15T06:59:36Z +45 2005-05-25T05:59:39Z 1853 436 2005-06-02T09:56:39Z 2 2020-02-15T06:59:36Z +46 2005-05-25T06:04:08Z 3318 7 2005-06-02T08:18:08Z 2 2020-02-15T06:59:36Z +47 2005-05-25T06:05:20Z 2211 35 2005-05-30T03:04:20Z 1 2020-02-15T06:59:36Z +48 2005-05-25T06:20:46Z 1780 282 2005-06-02T05:42:46Z 1 2020-02-15T06:59:36Z +49 2005-05-25T06:39:35Z 2965 498 2005-05-30T10:12:35Z 2 2020-02-15T06:59:36Z +50 2005-05-25T06:44:53Z 1983 18 2005-05-28T11:28:53Z 2 2020-02-15T06:59:36Z +51 2005-05-25T06:49:10Z 1257 256 2005-05-26T06:42:10Z 1 2020-02-15T06:59:36Z +52 2005-05-25T06:51:29Z 4017 507 2005-05-31T01:27:29Z 2 2020-02-15T06:59:36Z +53 2005-05-25T07:19:16Z 1255 569 2005-05-27T05:19:16Z 2 2020-02-15T06:59:36Z +54 2005-05-25T07:23:25Z 2787 291 2005-06-01T05:05:25Z 2 2020-02-15T06:59:36Z +55 2005-05-25T08:26:13Z 1139 131 2005-05-30T10:57:13Z 1 2020-02-15T06:59:36Z +56 2005-05-25T08:28:11Z 1352 511 2005-05-26T14:21:11Z 1 2020-02-15T06:59:36Z +57 2005-05-25T08:43:32Z 3938 6 2005-05-29T06:42:32Z 2 2020-02-15T06:59:36Z +58 2005-05-25T08:53:14Z 3050 323 2005-05-28T14:40:14Z 1 2020-02-15T06:59:36Z +59 2005-05-25T08:56:42Z 2884 408 2005-06-01T09:52:42Z 1 2020-02-15T06:59:36Z +60 2005-05-25T08:58:25Z 330 470 2005-05-30T14:14:25Z 1 2020-02-15T06:59:36Z +61 2005-05-25T09:01:57Z 4210 250 2005-06-02T07:22:57Z 2 2020-02-15T06:59:36Z +62 2005-05-25T09:18:52Z 261 419 2005-05-30T10:55:52Z 1 2020-02-15T06:59:36Z +63 2005-05-25T09:19:16Z 4008 383 2005-05-27T04:24:16Z 1 2020-02-15T06:59:36Z +64 2005-05-25T09:21:29Z 79 368 2005-06-03T11:31:29Z 1 2020-02-15T06:59:36Z +65 2005-05-25T09:32:03Z 3552 346 2005-05-29T14:21:03Z 1 2020-02-15T06:59:36Z +66 2005-05-25T09:35:12Z 1162 86 2005-05-29T04:16:12Z 2 2020-02-15T06:59:36Z +67 2005-05-25T09:41:01Z 239 119 2005-05-27T13:46:01Z 2 2020-02-15T06:59:36Z +68 2005-05-25T09:47:31Z 4029 120 2005-05-31T10:20:31Z 2 2020-02-15T06:59:36Z +69 2005-05-25T10:10:14Z 3207 305 2005-05-27T14:02:14Z 2 2020-02-15T06:59:36Z +70 2005-05-25T10:15:23Z 2168 73 2005-05-27T05:56:23Z 2 2020-02-15T06:59:36Z +71 2005-05-25T10:26:39Z 2408 100 2005-05-28T04:59:39Z 1 2020-02-15T06:59:36Z +72 2005-05-25T10:52:13Z 2260 48 2005-05-28T05:52:13Z 2 2020-02-15T06:59:36Z +73 2005-05-25T11:00:07Z 517 391 2005-06-01T13:56:07Z 2 2020-02-15T06:59:36Z +74 2005-05-25T11:09:48Z 1744 265 2005-05-26T12:23:48Z 2 2020-02-15T06:59:36Z +75 2005-05-25T11:13:34Z 3393 510 2005-06-03T12:58:34Z 1 2020-02-15T06:59:36Z +76 2005-05-25T11:30:37Z 3021 1 2005-06-03T12:00:37Z 2 2020-02-15T06:59:36Z +77 2005-05-25T11:31:59Z 1303 451 2005-05-26T16:53:59Z 2 2020-02-15T06:59:36Z +78 2005-05-25T11:35:18Z 4067 135 2005-05-31T12:48:18Z 2 2020-02-15T06:59:36Z +79 2005-05-25T12:11:07Z 3299 245 2005-06-03T10:54:07Z 2 2020-02-15T06:59:36Z +80 2005-05-25T12:12:07Z 2478 314 2005-05-31T17:46:07Z 2 2020-02-15T06:59:36Z +81 2005-05-25T12:15:19Z 2610 286 2005-06-02T14:08:19Z 2 2020-02-15T06:59:36Z +82 2005-05-25T12:17:46Z 1388 427 2005-06-01T10:48:46Z 1 2020-02-15T06:59:36Z +83 2005-05-25T12:30:15Z 466 131 2005-05-27T15:40:15Z 1 2020-02-15T06:59:36Z +84 2005-05-25T12:36:30Z 1829 492 2005-05-29T18:33:30Z 1 2020-02-15T06:59:36Z +85 2005-05-25T13:05:34Z 470 414 2005-05-29T16:53:34Z 1 2020-02-15T06:59:36Z +86 2005-05-25T13:36:12Z 2275 266 2005-05-30T14:53:12Z 1 2020-02-15T06:59:36Z +87 2005-05-25T13:52:43Z 1586 331 2005-05-29T11:12:43Z 2 2020-02-15T06:59:36Z +88 2005-05-25T14:13:54Z 2221 53 2005-05-29T09:32:54Z 2 2020-02-15T06:59:36Z +89 2005-05-25T14:28:29Z 2181 499 2005-05-29T14:33:29Z 1 2020-02-15T06:59:36Z +90 2005-05-25T14:31:25Z 2984 25 2005-06-01T10:07:25Z 1 2020-02-15T06:59:36Z +91 2005-05-25T14:57:22Z 139 267 2005-06-01T18:32:22Z 1 2020-02-15T06:59:36Z +92 2005-05-25T15:38:46Z 775 302 2005-05-31T13:40:46Z 2 2020-02-15T06:59:36Z +93 2005-05-25T15:54:16Z 4360 288 2005-06-03T20:18:16Z 1 2020-02-15T06:59:36Z +94 2005-05-25T16:03:42Z 1675 197 2005-05-30T14:23:42Z 1 2020-02-15T06:59:36Z +95 2005-05-25T16:12:52Z 178 400 2005-06-02T18:55:52Z 2 2020-02-15T06:59:36Z +96 2005-05-25T16:32:19Z 3418 49 2005-05-30T10:47:19Z 2 2020-02-15T06:59:36Z +97 2005-05-25T16:34:24Z 1283 263 2005-05-28T12:13:24Z 2 2020-02-15T06:59:36Z +98 2005-05-25T16:48:24Z 2970 269 2005-05-27T11:29:24Z 2 2020-02-15T06:59:36Z +99 2005-05-25T16:50:20Z 535 44 2005-05-28T18:52:20Z 1 2020-02-15T06:59:36Z +100 2005-05-25T16:50:28Z 2599 208 2005-06-02T22:11:28Z 1 2020-02-15T06:59:36Z +101 2005-05-25T17:17:04Z 617 468 2005-05-31T19:47:04Z 1 2020-02-15T06:59:36Z +102 2005-05-25T17:22:10Z 373 343 2005-05-31T19:47:10Z 1 2020-02-15T06:59:36Z +103 2005-05-25T17:30:42Z 3343 384 2005-06-03T22:36:42Z 1 2020-02-15T06:59:36Z +104 2005-05-25T17:46:33Z 4281 310 2005-05-27T15:20:33Z 1 2020-02-15T06:59:36Z +105 2005-05-25T17:54:12Z 794 108 2005-05-30T12:03:12Z 2 2020-02-15T06:59:36Z +106 2005-05-25T18:18:19Z 3627 196 2005-06-04T00:01:19Z 2 2020-02-15T06:59:36Z +107 2005-05-25T18:28:09Z 2833 317 2005-06-03T22:46:09Z 2 2020-02-15T06:59:36Z +108 2005-05-25T18:30:05Z 3289 242 2005-05-30T19:40:05Z 1 2020-02-15T06:59:36Z +109 2005-05-25T18:40:20Z 1044 503 2005-05-29T20:39:20Z 2 2020-02-15T06:59:36Z +110 2005-05-25T18:43:49Z 4108 19 2005-06-03T18:13:49Z 2 2020-02-15T06:59:36Z +111 2005-05-25T18:45:19Z 3725 227 2005-05-28T17:18:19Z 1 2020-02-15T06:59:36Z +112 2005-05-25T18:57:24Z 2153 500 2005-06-02T20:44:24Z 1 2020-02-15T06:59:36Z +113 2005-05-25T19:07:40Z 2963 93 2005-05-27T22:16:40Z 2 2020-02-15T06:59:36Z +114 2005-05-25T19:12:42Z 4502 506 2005-06-01T23:10:42Z 1 2020-02-15T06:59:36Z +115 2005-05-25T19:13:25Z 749 455 2005-05-29T20:17:25Z 1 2020-02-15T06:59:36Z +116 2005-05-25T19:27:51Z 4453 18 2005-05-26T16:23:51Z 1 2020-02-15T06:59:36Z +117 2005-05-25T19:30:46Z 4278 7 2005-05-31T23:59:46Z 2 2020-02-15T06:59:36Z +118 2005-05-25T19:31:18Z 872 524 2005-05-31T15:00:18Z 1 2020-02-15T06:59:36Z +119 2005-05-25T19:37:02Z 1359 51 2005-05-29T23:51:02Z 2 2020-02-15T06:59:36Z +120 2005-05-25T19:37:47Z 37 365 2005-06-01T23:29:47Z 2 2020-02-15T06:59:36Z +121 2005-05-25T19:41:29Z 1053 405 2005-05-29T21:31:29Z 1 2020-02-15T06:59:36Z +122 2005-05-25T19:46:21Z 2908 273 2005-06-02T19:07:21Z 1 2020-02-15T06:59:36Z +123 2005-05-25T20:26:42Z 1795 43 2005-05-26T19:41:42Z 1 2020-02-15T06:59:36Z +124 2005-05-25T20:46:11Z 212 246 2005-05-30T00:47:11Z 2 2020-02-15T06:59:36Z +125 2005-05-25T20:48:50Z 952 368 2005-06-02T21:39:50Z 1 2020-02-15T06:59:36Z +126 2005-05-25T21:07:59Z 2047 439 2005-05-28T18:51:59Z 1 2020-02-15T06:59:36Z +127 2005-05-25T21:10:40Z 2026 94 2005-06-02T21:38:40Z 1 2020-02-15T06:59:36Z +128 2005-05-25T21:19:53Z 4322 40 2005-05-29T23:34:53Z 1 2020-02-15T06:59:36Z +129 2005-05-25T21:20:03Z 4154 23 2005-06-04T01:25:03Z 2 2020-02-15T06:59:36Z +130 2005-05-25T21:21:56Z 3990 56 2005-05-30T22:41:56Z 2 2020-02-15T06:59:36Z +131 2005-05-25T21:42:46Z 815 325 2005-05-30T23:25:46Z 2 2020-02-15T06:59:36Z +132 2005-05-25T21:46:54Z 3367 479 2005-05-31T21:02:54Z 1 2020-02-15T06:59:36Z +133 2005-05-25T21:48:30Z 399 237 2005-05-30T00:26:30Z 2 2020-02-15T06:59:36Z +134 2005-05-25T21:48:41Z 2272 222 2005-06-02T18:28:41Z 1 2020-02-15T06:59:36Z +135 2005-05-25T21:58:58Z 103 304 2005-06-03T17:50:58Z 1 2020-02-15T06:59:36Z +136 2005-05-25T22:02:30Z 2296 504 2005-05-31T18:06:30Z 1 2020-02-15T06:59:36Z +137 2005-05-25T22:25:18Z 2591 560 2005-06-01T02:30:18Z 2 2020-02-15T06:59:36Z +138 2005-05-25T22:48:22Z 4134 586 2005-05-29T20:21:22Z 2 2020-02-15T06:59:36Z +139 2005-05-25T23:00:21Z 327 257 2005-05-29T17:12:21Z 1 2020-02-15T06:59:36Z +140 2005-05-25T23:34:22Z 655 354 2005-05-27T01:10:22Z 1 2020-02-15T06:59:36Z +141 2005-05-25T23:34:53Z 811 89 2005-06-02T01:57:53Z 1 2020-02-15T06:59:36Z +142 2005-05-25T23:43:47Z 4407 472 2005-05-29T00:46:47Z 2 2020-02-15T06:59:36Z +143 2005-05-25T23:45:52Z 847 297 2005-05-27T21:41:52Z 2 2020-02-15T06:59:36Z +144 2005-05-25T23:49:56Z 1689 357 2005-06-01T21:41:56Z 2 2020-02-15T06:59:36Z +145 2005-05-25T23:59:03Z 3905 82 2005-05-31T02:56:03Z 1 2020-02-15T06:59:36Z +146 2005-05-26T00:07:11Z 1431 433 2005-06-04T00:20:11Z 2 2020-02-15T06:59:36Z +147 2005-05-26T00:17:50Z 633 274 2005-05-29T23:21:50Z 2 2020-02-15T06:59:36Z +148 2005-05-26T00:25:23Z 4252 142 2005-06-01T19:29:23Z 2 2020-02-15T06:59:36Z +149 2005-05-26T00:28:05Z 1084 319 2005-06-02T21:30:05Z 2 2020-02-15T06:59:36Z +150 2005-05-26T00:28:39Z 909 429 2005-06-01T02:10:39Z 2 2020-02-15T06:59:36Z +151 2005-05-26T00:37:28Z 2942 14 2005-05-30T06:28:28Z 1 2020-02-15T06:59:36Z +152 2005-05-26T00:41:10Z 2622 57 2005-06-03T06:05:10Z 1 2020-02-15T06:59:36Z +153 2005-05-26T00:47:47Z 3888 348 2005-05-27T21:28:47Z 1 2020-02-15T06:59:36Z +154 2005-05-26T00:55:56Z 1354 185 2005-05-29T23:18:56Z 2 2020-02-15T06:59:36Z +155 2005-05-26T01:15:05Z 288 551 2005-06-01T00:03:05Z 1 2020-02-15T06:59:36Z +156 2005-05-26T01:19:05Z 3193 462 2005-05-27T23:43:05Z 1 2020-02-15T06:59:36Z +157 2005-05-26T01:25:21Z 887 344 2005-05-26T21:17:21Z 2 2020-02-15T06:59:36Z +158 2005-05-26T01:27:11Z 2395 354 2005-06-03T00:30:11Z 2 2020-02-15T06:59:36Z +159 2005-05-26T01:34:28Z 3453 505 2005-05-29T04:00:28Z 1 2020-02-15T06:59:36Z +160 2005-05-26T01:46:20Z 1885 290 2005-06-01T05:45:20Z 1 2020-02-15T06:59:36Z +161 2005-05-26T01:51:48Z 2941 182 2005-05-27T05:42:48Z 1 2020-02-15T06:59:36Z +162 2005-05-26T02:02:05Z 1229 296 2005-05-27T03:38:05Z 2 2020-02-15T06:59:36Z +163 2005-05-26T02:26:23Z 2306 104 2005-06-04T06:36:23Z 1 2020-02-15T06:59:36Z +164 2005-05-26T02:26:49Z 1070 151 2005-05-28T00:32:49Z 1 2020-02-15T06:59:36Z +165 2005-05-26T02:28:36Z 2735 33 2005-06-02T03:21:36Z 1 2020-02-15T06:59:36Z +166 2005-05-26T02:49:11Z 3894 322 2005-05-31T01:28:11Z 1 2020-02-15T06:59:36Z +167 2005-05-26T02:50:31Z 865 401 2005-05-27T03:07:31Z 1 2020-02-15T06:59:36Z +168 2005-05-26T03:07:43Z 2714 469 2005-06-02T02:09:43Z 2 2020-02-15T06:59:36Z +169 2005-05-26T03:09:30Z 1758 381 2005-05-27T01:37:30Z 2 2020-02-15T06:59:36Z +170 2005-05-26T03:11:12Z 3688 107 2005-06-02T03:53:12Z 1 2020-02-15T06:59:36Z +171 2005-05-26T03:14:15Z 4483 400 2005-06-03T00:24:15Z 2 2020-02-15T06:59:36Z +172 2005-05-26T03:17:42Z 2873 176 2005-05-29T04:11:42Z 2 2020-02-15T06:59:36Z +173 2005-05-26T03:42:10Z 3596 533 2005-05-28T01:37:10Z 2 2020-02-15T06:59:36Z +174 2005-05-26T03:44:10Z 3954 552 2005-05-28T07:13:10Z 2 2020-02-15T06:59:36Z +175 2005-05-26T03:46:26Z 4346 47 2005-06-03T06:01:26Z 2 2020-02-15T06:59:36Z +176 2005-05-26T03:47:39Z 851 250 2005-06-01T02:36:39Z 2 2020-02-15T06:59:36Z +177 2005-05-26T04:14:29Z 3545 548 2005-06-01T08:16:29Z 2 2020-02-15T06:59:36Z +178 2005-05-26T04:21:46Z 1489 196 2005-06-04T07:09:46Z 2 2020-02-15T06:59:36Z +179 2005-05-26T04:26:06Z 2575 19 2005-06-03T10:06:06Z 1 2020-02-15T06:59:36Z +180 2005-05-26T04:46:23Z 2752 75 2005-06-01T09:58:23Z 1 2020-02-15T06:59:36Z +181 2005-05-26T04:47:06Z 2417 587 2005-05-29T06:34:06Z 2 2020-02-15T06:59:36Z +182 2005-05-26T04:49:17Z 4396 237 2005-06-01T05:43:17Z 2 2020-02-15T06:59:36Z +183 2005-05-26T05:01:18Z 2877 254 2005-06-01T09:04:18Z 1 2020-02-15T06:59:36Z +184 2005-05-26T05:29:49Z 1970 556 2005-05-28T10:10:49Z 1 2020-02-15T06:59:36Z +185 2005-05-26T05:30:03Z 2598 125 2005-06-02T09:48:03Z 2 2020-02-15T06:59:36Z +186 2005-05-26T05:32:52Z 1799 468 2005-06-03T07:19:52Z 2 2020-02-15T06:59:36Z +187 2005-05-26T05:42:37Z 4004 515 2005-06-04T00:38:37Z 1 2020-02-15T06:59:36Z +188 2005-05-26T05:47:12Z 3342 243 2005-05-26T23:48:12Z 1 2020-02-15T06:59:36Z +189 2005-05-26T06:01:41Z 984 247 2005-05-27T06:11:41Z 1 2020-02-15T06:59:36Z +190 2005-05-26T06:11:28Z 3962 533 2005-06-01T09:44:28Z 1 2020-02-15T06:59:36Z +191 2005-05-26T06:14:06Z 4365 412 2005-05-28T05:33:06Z 1 2020-02-15T06:59:36Z +192 2005-05-26T06:20:37Z 1897 437 2005-06-02T10:57:37Z 1 2020-02-15T06:59:36Z +193 2005-05-26T06:41:48Z 3900 270 2005-05-30T06:21:48Z 2 2020-02-15T06:59:36Z +194 2005-05-26T06:52:33Z 1337 29 2005-05-30T04:08:33Z 2 2020-02-15T06:59:36Z +195 2005-05-26T06:52:36Z 506 564 2005-05-31T02:47:36Z 2 2020-02-15T06:59:36Z +196 2005-05-26T06:55:58Z 190 184 2005-05-27T10:54:58Z 1 2020-02-15T06:59:36Z +197 2005-05-26T06:59:21Z 4212 546 2005-06-03T05:04:21Z 2 2020-02-15T06:59:36Z +198 2005-05-26T07:03:49Z 1789 54 2005-06-04T11:45:49Z 1 2020-02-15T06:59:36Z +199 2005-05-26T07:11:58Z 2135 71 2005-05-28T09:06:58Z 1 2020-02-15T06:59:36Z +200 2005-05-26T07:12:21Z 3926 321 2005-05-31T12:07:21Z 1 2020-02-15T06:59:36Z +201 2005-05-26T07:13:45Z 776 444 2005-06-04T02:02:45Z 2 2020-02-15T06:59:36Z +202 2005-05-26T07:27:36Z 674 20 2005-06-02T03:52:36Z 1 2020-02-15T06:59:36Z +203 2005-05-26T07:27:57Z 3374 109 2005-06-03T12:52:57Z 1 2020-02-15T06:59:36Z +204 2005-05-26T07:30:37Z 1842 528 2005-05-30T08:11:37Z 1 2020-02-15T06:59:36Z +205 2005-05-26T07:59:37Z 303 114 2005-05-29T09:43:37Z 2 2020-02-15T06:59:36Z +206 2005-05-26T08:01:54Z 1717 345 2005-05-27T06:26:54Z 1 2020-02-15T06:59:36Z +207 2005-05-26T08:04:38Z 102 47 2005-05-27T09:32:38Z 2 2020-02-15T06:59:36Z +208 2005-05-26T08:10:22Z 3669 274 2005-05-27T03:55:22Z 1 2020-02-15T06:59:36Z +209 2005-05-26T08:14:01Z 729 379 2005-05-27T09:00:01Z 1 2020-02-15T06:59:36Z +210 2005-05-26T08:14:15Z 1801 391 2005-05-27T12:12:15Z 2 2020-02-15T06:59:36Z +211 2005-05-26T08:33:10Z 4005 170 2005-05-28T14:09:10Z 1 2020-02-15T06:59:36Z +212 2005-05-26T08:34:41Z 764 59 2005-05-30T12:46:41Z 2 2020-02-15T06:59:36Z +213 2005-05-26T08:44:08Z 1505 394 2005-05-31T12:33:08Z 2 2020-02-15T06:59:36Z +214 2005-05-26T08:48:49Z 1453 98 2005-05-31T04:06:49Z 2 2020-02-15T06:59:36Z +215 2005-05-26T09:02:47Z 679 197 2005-05-28T09:45:47Z 2 2020-02-15T06:59:36Z +216 2005-05-26T09:17:43Z 1398 91 2005-06-03T08:21:43Z 1 2020-02-15T06:59:36Z +217 2005-05-26T09:24:26Z 4395 121 2005-05-31T03:24:26Z 2 2020-02-15T06:59:36Z +218 2005-05-26T09:27:09Z 2291 309 2005-06-04T11:53:09Z 2 2020-02-15T06:59:36Z +219 2005-05-26T09:41:45Z 3074 489 2005-05-28T04:40:45Z 1 2020-02-15T06:59:36Z +220 2005-05-26T10:06:49Z 1259 542 2005-06-01T07:43:49Z 1 2020-02-15T06:59:36Z +221 2005-05-26T10:14:09Z 3578 143 2005-05-29T05:57:09Z 1 2020-02-15T06:59:36Z +222 2005-05-26T10:14:38Z 2745 83 2005-05-31T08:36:38Z 2 2020-02-15T06:59:36Z +223 2005-05-26T10:15:23Z 3121 460 2005-05-30T11:43:23Z 1 2020-02-15T06:59:36Z +224 2005-05-26T10:18:27Z 4285 318 2005-06-04T06:59:27Z 1 2020-02-15T06:59:36Z +225 2005-05-26T10:27:50Z 651 467 2005-06-01T07:01:50Z 2 2020-02-15T06:59:36Z +226 2005-05-26T10:44:04Z 4181 221 2005-05-31T13:26:04Z 2 2020-02-15T06:59:36Z +227 2005-05-26T10:51:46Z 214 301 2005-05-30T07:24:46Z 1 2020-02-15T06:59:36Z +228 2005-05-26T10:54:28Z 511 571 2005-06-04T09:39:28Z 1 2020-02-15T06:59:36Z +229 2005-05-26T11:19:20Z 1131 312 2005-05-31T11:56:20Z 2 2020-02-15T06:59:36Z +230 2005-05-26T11:31:50Z 1085 58 2005-05-30T15:22:50Z 1 2020-02-15T06:59:36Z +231 2005-05-26T11:31:59Z 4032 365 2005-05-27T07:27:59Z 1 2020-02-15T06:59:36Z +232 2005-05-26T11:38:05Z 2945 256 2005-05-27T08:42:05Z 2 2020-02-15T06:59:36Z +233 2005-05-26T11:43:44Z 715 531 2005-05-28T17:28:44Z 2 2020-02-15T06:59:36Z +234 2005-05-26T11:47:20Z 1321 566 2005-06-03T10:39:20Z 2 2020-02-15T06:59:36Z +235 2005-05-26T11:51:09Z 3537 119 2005-06-04T09:36:09Z 1 2020-02-15T06:59:36Z +236 2005-05-26T11:53:49Z 1265 446 2005-05-28T13:55:49Z 1 2020-02-15T06:59:36Z +237 2005-05-26T12:15:13Z 241 536 2005-05-29T18:10:13Z 1 2020-02-15T06:59:36Z +238 2005-05-26T12:30:22Z 503 211 2005-05-27T06:49:22Z 1 2020-02-15T06:59:36Z +239 2005-05-26T12:30:26Z 131 49 2005-06-01T13:26:26Z 2 2020-02-15T06:59:36Z +240 2005-05-26T12:40:23Z 3420 103 2005-06-04T07:22:23Z 1 2020-02-15T06:59:36Z +241 2005-05-26T12:49:01Z 4438 245 2005-05-28T11:43:01Z 2 2020-02-15T06:59:36Z +242 2005-05-26T13:05:08Z 2095 214 2005-06-02T15:26:08Z 1 2020-02-15T06:59:36Z +243 2005-05-26T13:06:05Z 1721 543 2005-06-03T17:28:05Z 2 2020-02-15T06:59:36Z +244 2005-05-26T13:40:40Z 1041 257 2005-05-31T11:58:40Z 1 2020-02-15T06:59:36Z +245 2005-05-26T13:46:59Z 3045 158 2005-05-27T09:58:59Z 2 2020-02-15T06:59:36Z +246 2005-05-26T13:57:07Z 2829 240 2005-05-29T10:12:07Z 2 2020-02-15T06:59:36Z +247 2005-05-26T14:01:05Z 4095 102 2005-05-28T13:38:05Z 2 2020-02-15T06:59:36Z +248 2005-05-26T14:07:58Z 1913 545 2005-05-31T14:03:58Z 2 2020-02-15T06:59:36Z +249 2005-05-26T14:19:09Z 2428 472 2005-05-28T17:47:09Z 2 2020-02-15T06:59:36Z +250 2005-05-26T14:30:24Z 368 539 2005-05-27T08:50:24Z 1 2020-02-15T06:59:36Z +251 2005-05-26T14:35:40Z 4352 204 2005-05-29T17:17:40Z 1 2020-02-15T06:59:36Z +252 2005-05-26T14:39:53Z 1203 187 2005-06-02T14:48:53Z 1 2020-02-15T06:59:36Z +253 2005-05-26T14:43:14Z 2969 416 2005-05-27T12:21:14Z 1 2020-02-15T06:59:36Z +254 2005-05-26T14:43:48Z 1835 390 2005-05-31T09:19:48Z 2 2020-02-15T06:59:36Z +255 2005-05-26T14:52:15Z 3264 114 2005-05-27T12:45:15Z 1 2020-02-15T06:59:36Z +256 2005-05-26T15:20:58Z 3194 436 2005-05-31T15:58:58Z 1 2020-02-15T06:59:36Z +257 2005-05-26T15:27:05Z 2570 373 2005-05-29T16:25:05Z 2 2020-02-15T06:59:36Z +258 2005-05-26T15:28:14Z 3534 502 2005-05-30T18:38:14Z 2 2020-02-15T06:59:36Z +259 2005-05-26T15:32:46Z 30 482 2005-06-04T15:27:46Z 2 2020-02-15T06:59:36Z +260 2005-05-26T15:42:20Z 435 21 2005-05-31T13:21:20Z 2 2020-02-15T06:59:36Z +261 2005-05-26T15:44:23Z 1369 414 2005-06-02T09:47:23Z 2 2020-02-15T06:59:36Z +262 2005-05-26T15:46:56Z 4261 236 2005-05-28T15:49:56Z 2 2020-02-15T06:59:36Z +263 2005-05-26T15:47:40Z 1160 449 2005-05-30T10:07:40Z 2 2020-02-15T06:59:36Z +264 2005-05-26T16:00:49Z 2069 251 2005-05-27T10:12:49Z 2 2020-02-15T06:59:36Z +265 2005-05-26T16:07:38Z 2276 303 2005-06-01T14:20:38Z 1 2020-02-15T06:59:36Z +266 2005-05-26T16:08:05Z 3303 263 2005-05-27T10:55:05Z 2 2020-02-15T06:59:36Z +267 2005-05-26T16:16:21Z 1206 417 2005-05-30T16:53:21Z 2 2020-02-15T06:59:36Z +268 2005-05-26T16:19:08Z 1714 75 2005-05-27T14:35:08Z 1 2020-02-15T06:59:36Z +269 2005-05-26T16:19:46Z 3501 322 2005-05-27T15:59:46Z 2 2020-02-15T06:59:36Z +270 2005-05-26T16:20:56Z 207 200 2005-06-03T12:40:56Z 2 2020-02-15T06:59:36Z +271 2005-05-26T16:22:01Z 2388 92 2005-06-03T17:30:01Z 2 2020-02-15T06:59:36Z +272 2005-05-26T16:27:11Z 971 71 2005-06-03T13:10:11Z 2 2020-02-15T06:59:36Z +273 2005-05-26T16:29:36Z 1590 193 2005-05-29T18:49:36Z 2 2020-02-15T06:59:36Z +274 2005-05-26T16:48:51Z 656 311 2005-06-03T18:17:51Z 1 2020-02-15T06:59:36Z +275 2005-05-26T17:09:53Z 1718 133 2005-06-04T22:35:53Z 1 2020-02-15T06:59:36Z +276 2005-05-26T17:16:07Z 1221 58 2005-06-03T12:59:07Z 1 2020-02-15T06:59:36Z +277 2005-05-26T17:32:11Z 1409 45 2005-05-28T22:54:11Z 1 2020-02-15T06:59:36Z +278 2005-05-26T17:40:58Z 182 214 2005-06-02T16:43:58Z 2 2020-02-15T06:59:36Z +279 2005-05-26T18:02:50Z 661 384 2005-06-03T18:48:50Z 2 2020-02-15T06:59:36Z +280 2005-05-26T18:36:58Z 1896 167 2005-05-27T23:42:58Z 1 2020-02-15T06:59:36Z +281 2005-05-26T18:49:35Z 1208 582 2005-05-27T18:11:35Z 2 2020-02-15T06:59:36Z +282 2005-05-26T18:56:26Z 4486 282 2005-06-01T16:32:26Z 2 2020-02-15T06:59:36Z +283 2005-05-26T19:05:05Z 3530 242 2005-05-31T19:19:05Z 1 2020-02-15T06:59:36Z +284 2005-05-26T19:21:44Z 350 359 2005-06-04T14:18:44Z 2 2020-02-15T06:59:36Z +285 2005-05-26T19:41:40Z 2486 162 2005-05-31T16:58:40Z 2 2020-02-15T06:59:36Z +286 2005-05-26T19:44:51Z 314 371 2005-06-04T18:00:51Z 2 2020-02-15T06:59:36Z +287 2005-05-26T19:44:54Z 3631 17 2005-06-02T01:10:54Z 1 2020-02-15T06:59:36Z +288 2005-05-26T19:47:49Z 3546 82 2005-06-03T20:53:49Z 2 2020-02-15T06:59:36Z +289 2005-05-26T20:01:09Z 2449 81 2005-05-28T15:09:09Z 1 2020-02-15T06:59:36Z +290 2005-05-26T20:08:33Z 2776 429 2005-05-30T00:32:33Z 1 2020-02-15T06:59:36Z +291 2005-05-26T20:20:47Z 485 577 2005-06-03T02:06:47Z 2 2020-02-15T06:59:36Z +292 2005-05-26T20:22:12Z 4264 515 2005-06-05T00:58:12Z 1 2020-02-15T06:59:36Z +293 2005-05-26T20:27:02Z 1828 158 2005-06-03T16:45:02Z 2 2020-02-15T06:59:36Z +294 2005-05-26T20:29:57Z 2751 369 2005-05-28T17:20:57Z 1 2020-02-15T06:59:36Z +295 2005-05-26T20:33:20Z 4030 65 2005-05-27T18:23:20Z 2 2020-02-15T06:59:36Z +296 2005-05-26T20:35:19Z 3878 468 2005-06-04T02:31:19Z 2 2020-02-15T06:59:36Z +297 2005-05-26T20:48:48Z 1594 48 2005-05-27T19:52:48Z 2 2020-02-15T06:59:36Z +298 2005-05-26T20:52:26Z 1083 460 2005-05-29T22:08:26Z 2 2020-02-15T06:59:36Z +299 2005-05-26T20:55:36Z 4376 448 2005-05-28T00:25:36Z 2 2020-02-15T06:59:36Z +300 2005-05-26T20:57:00Z 249 47 2005-06-05T01:34:00Z 2 2020-02-15T06:59:36Z +301 2005-05-26T21:06:14Z 3448 274 2005-06-01T01:54:14Z 2 2020-02-15T06:59:36Z +302 2005-05-26T21:13:46Z 2921 387 2005-06-03T15:49:46Z 2 2020-02-15T06:59:36Z +303 2005-05-26T21:16:52Z 1111 596 2005-05-27T23:41:52Z 2 2020-02-15T06:59:36Z +304 2005-05-26T21:21:28Z 1701 534 2005-06-02T00:05:28Z 1 2020-02-15T06:59:36Z +305 2005-05-26T21:22:07Z 2665 464 2005-06-02T22:33:07Z 2 2020-02-15T06:59:36Z +306 2005-05-26T21:31:57Z 2781 547 2005-05-28T19:37:57Z 1 2020-02-15T06:59:36Z +307 2005-05-26T21:48:13Z 1097 375 2005-06-04T22:24:13Z 1 2020-02-15T06:59:36Z +308 2005-05-26T22:01:39Z 187 277 2005-06-04T20:24:39Z 2 2020-02-15T06:59:36Z +309 2005-05-26T22:38:10Z 1946 251 2005-06-02T03:10:10Z 2 2020-02-15T06:59:36Z +310 2005-05-26T22:41:07Z 593 409 2005-06-02T04:09:07Z 1 2020-02-15T06:59:36Z +311 2005-05-26T22:51:37Z 2830 201 2005-06-01T00:02:37Z 1 2020-02-15T06:59:36Z +312 2005-05-26T22:52:19Z 2008 143 2005-06-02T18:14:19Z 2 2020-02-15T06:59:36Z +313 2005-05-26T22:56:19Z 4156 594 2005-05-29T01:29:19Z 2 2020-02-15T06:59:36Z +314 2005-05-26T23:09:41Z 2851 203 2005-05-28T22:49:41Z 2 2020-02-15T06:59:36Z +315 2005-05-26T23:12:55Z 2847 238 2005-05-29T23:33:55Z 1 2020-02-15T06:59:36Z +316 2005-05-26T23:22:55Z 3828 249 2005-05-29T23:25:55Z 2 2020-02-15T06:59:36Z +317 2005-05-26T23:23:56Z 26 391 2005-06-01T19:56:56Z 2 2020-02-15T06:59:36Z +318 2005-05-26T23:37:39Z 2559 60 2005-06-03T04:31:39Z 2 2020-02-15T06:59:36Z +319 2005-05-26T23:52:13Z 3024 77 2005-05-30T18:55:13Z 1 2020-02-15T06:59:36Z +320 2005-05-27T00:09:24Z 1090 2 2005-05-28T04:30:24Z 2 2020-02-15T06:59:36Z +322 2005-05-27T00:47:35Z 4556 496 2005-06-02T00:32:35Z 1 2020-02-15T06:59:36Z +323 2005-05-27T00:49:27Z 2362 144 2005-05-30T03:12:27Z 1 2020-02-15T06:59:36Z +324 2005-05-27T01:00:04Z 3364 292 2005-05-30T04:27:04Z 1 2020-02-15T06:59:36Z +325 2005-05-27T01:09:55Z 2510 449 2005-05-31T07:01:55Z 2 2020-02-15T06:59:36Z +326 2005-05-27T01:10:11Z 3979 432 2005-06-04T20:25:11Z 2 2020-02-15T06:59:36Z +327 2005-05-27T01:18:57Z 2678 105 2005-06-04T04:06:57Z 1 2020-02-15T06:59:36Z +328 2005-05-27T01:29:31Z 2524 451 2005-06-01T02:27:31Z 1 2020-02-15T06:59:36Z +329 2005-05-27T01:57:14Z 2659 231 2005-05-31T04:19:14Z 2 2020-02-15T06:59:36Z +330 2005-05-27T02:15:30Z 1536 248 2005-06-04T05:09:30Z 2 2020-02-15T06:59:36Z +331 2005-05-27T02:22:26Z 1872 67 2005-06-05T00:25:26Z 1 2020-02-15T06:59:36Z +332 2005-05-27T02:27:10Z 1529 299 2005-06-03T01:26:10Z 2 2020-02-15T06:59:36Z +333 2005-05-27T02:52:21Z 4001 412 2005-06-01T00:55:21Z 2 2020-02-15T06:59:36Z +334 2005-05-27T03:03:07Z 3973 194 2005-05-29T03:54:07Z 1 2020-02-15T06:59:36Z +335 2005-05-27T03:07:10Z 1411 16 2005-06-05T00:15:10Z 2 2020-02-15T06:59:36Z +336 2005-05-27T03:15:23Z 1811 275 2005-05-29T22:43:23Z 1 2020-02-15T06:59:36Z +337 2005-05-27T03:22:30Z 751 19 2005-06-02T03:27:30Z 1 2020-02-15T06:59:36Z +338 2005-05-27T03:42:52Z 2596 165 2005-06-01T05:23:52Z 2 2020-02-15T06:59:36Z +339 2005-05-27T03:47:18Z 2410 516 2005-06-04T05:46:18Z 2 2020-02-15T06:59:36Z +340 2005-05-27T03:55:25Z 946 209 2005-06-04T07:57:25Z 2 2020-02-15T06:59:36Z +341 2005-05-27T04:01:42Z 4168 56 2005-06-05T08:51:42Z 1 2020-02-15T06:59:36Z +342 2005-05-27T04:11:04Z 4019 539 2005-05-29T01:28:04Z 2 2020-02-15T06:59:36Z +343 2005-05-27T04:13:41Z 3301 455 2005-05-28T08:34:41Z 1 2020-02-15T06:59:36Z +344 2005-05-27T04:30:22Z 2327 236 2005-05-29T10:13:22Z 2 2020-02-15T06:59:36Z +345 2005-05-27T04:32:25Z 1396 144 2005-05-31T09:50:25Z 1 2020-02-15T06:59:36Z +346 2005-05-27T04:34:41Z 4319 14 2005-06-05T04:24:41Z 2 2020-02-15T06:59:36Z +347 2005-05-27T04:40:33Z 1625 378 2005-05-28T09:56:33Z 2 2020-02-15T06:59:36Z +348 2005-05-27T04:50:56Z 1825 473 2005-06-01T04:43:56Z 1 2020-02-15T06:59:36Z +349 2005-05-27T04:53:11Z 2920 36 2005-05-28T06:33:11Z 2 2020-02-15T06:59:36Z +350 2005-05-27T05:01:28Z 2756 9 2005-06-04T05:01:28Z 2 2020-02-15T06:59:36Z +351 2005-05-27T05:39:03Z 3371 118 2005-06-01T11:10:03Z 1 2020-02-15T06:59:36Z +352 2005-05-27T05:48:19Z 4369 157 2005-05-29T09:05:19Z 1 2020-02-15T06:59:36Z +353 2005-05-27T06:03:39Z 3989 503 2005-06-03T04:39:39Z 2 2020-02-15T06:59:36Z +354 2005-05-27T06:12:26Z 2058 452 2005-06-01T06:48:26Z 1 2020-02-15T06:59:36Z +355 2005-05-27T06:15:33Z 141 446 2005-06-01T02:50:33Z 2 2020-02-15T06:59:36Z +356 2005-05-27T06:32:30Z 2868 382 2005-05-30T06:24:30Z 2 2020-02-15T06:59:36Z +357 2005-05-27T06:37:15Z 4417 198 2005-05-30T07:04:15Z 2 2020-02-15T06:59:36Z +358 2005-05-27T06:43:59Z 1925 102 2005-05-29T11:28:59Z 2 2020-02-15T06:59:36Z +359 2005-05-27T06:48:33Z 1156 152 2005-05-29T03:55:33Z 1 2020-02-15T06:59:36Z +360 2005-05-27T06:51:14Z 3489 594 2005-06-03T01:58:14Z 1 2020-02-15T06:59:36Z +361 2005-05-27T07:03:28Z 6 587 2005-05-31T08:01:28Z 1 2020-02-15T06:59:36Z +362 2005-05-27T07:10:25Z 2324 147 2005-06-01T08:34:25Z 1 2020-02-15T06:59:36Z +363 2005-05-27T07:14:00Z 4282 345 2005-05-28T12:22:00Z 2 2020-02-15T06:59:36Z +364 2005-05-27T07:20:12Z 833 430 2005-05-31T10:44:12Z 2 2020-02-15T06:59:36Z +365 2005-05-27T07:31:20Z 2887 167 2005-06-04T04:46:20Z 1 2020-02-15T06:59:36Z +366 2005-05-27T07:33:54Z 360 134 2005-06-04T01:55:54Z 2 2020-02-15T06:59:36Z +367 2005-05-27T07:37:02Z 3437 439 2005-05-30T05:43:02Z 2 2020-02-15T06:59:36Z +368 2005-05-27T07:42:29Z 1247 361 2005-06-04T11:20:29Z 2 2020-02-15T06:59:36Z +369 2005-05-27T07:46:49Z 944 508 2005-06-01T06:20:49Z 2 2020-02-15T06:59:36Z +370 2005-05-27T07:49:43Z 3347 22 2005-06-05T06:39:43Z 2 2020-02-15T06:59:36Z +371 2005-05-27T08:08:18Z 1235 295 2005-06-05T03:05:18Z 2 2020-02-15T06:59:36Z +372 2005-05-27T08:13:58Z 4089 510 2005-06-04T03:50:58Z 2 2020-02-15T06:59:36Z +373 2005-05-27T08:16:25Z 1649 464 2005-06-01T11:41:25Z 1 2020-02-15T06:59:36Z +374 2005-05-27T08:26:30Z 4420 337 2005-06-05T07:13:30Z 1 2020-02-15T06:59:36Z +375 2005-05-27T08:49:21Z 1815 306 2005-06-04T14:11:21Z 1 2020-02-15T06:59:36Z +376 2005-05-27T08:58:15Z 3197 542 2005-06-02T04:48:15Z 1 2020-02-15T06:59:36Z +377 2005-05-27T09:04:05Z 3012 170 2005-06-02T03:36:05Z 2 2020-02-15T06:59:36Z +378 2005-05-27T09:23:22Z 2242 53 2005-05-29T15:20:22Z 1 2020-02-15T06:59:36Z +379 2005-05-27T09:25:32Z 3462 584 2005-06-02T06:19:32Z 1 2020-02-15T06:59:36Z +380 2005-05-27T09:34:39Z 1777 176 2005-06-04T11:45:39Z 1 2020-02-15T06:59:36Z +381 2005-05-27T09:43:25Z 2748 371 2005-05-31T12:00:25Z 1 2020-02-15T06:59:36Z +382 2005-05-27T10:12:00Z 4358 183 2005-05-31T15:03:00Z 1 2020-02-15T06:59:36Z +383 2005-05-27T10:12:20Z 955 298 2005-06-03T10:37:20Z 1 2020-02-15T06:59:36Z +384 2005-05-27T10:18:20Z 910 371 2005-06-02T09:21:20Z 2 2020-02-15T06:59:36Z +385 2005-05-27T10:23:25Z 1565 213 2005-05-30T15:27:25Z 2 2020-02-15T06:59:36Z +386 2005-05-27T10:26:31Z 1288 109 2005-05-30T08:32:31Z 1 2020-02-15T06:59:36Z +387 2005-05-27T10:35:27Z 2684 506 2005-06-01T13:37:27Z 2 2020-02-15T06:59:36Z +388 2005-05-27T10:37:27Z 434 28 2005-05-30T05:45:27Z 1 2020-02-15T06:59:36Z +389 2005-05-27T10:45:41Z 691 500 2005-06-05T06:22:41Z 2 2020-02-15T06:59:36Z +390 2005-05-27T11:02:26Z 3759 48 2005-06-02T16:09:26Z 2 2020-02-15T06:59:36Z +391 2005-05-27T11:03:55Z 2193 197 2005-06-01T11:59:55Z 2 2020-02-15T06:59:36Z +392 2005-05-27T11:14:42Z 263 359 2005-06-01T14:28:42Z 2 2020-02-15T06:59:36Z +393 2005-05-27T11:18:25Z 145 251 2005-05-28T07:10:25Z 2 2020-02-15T06:59:36Z +394 2005-05-27T11:26:11Z 1890 274 2005-06-03T16:44:11Z 2 2020-02-15T06:59:36Z +395 2005-05-27T11:45:49Z 752 575 2005-05-31T13:42:49Z 1 2020-02-15T06:59:36Z +396 2005-05-27T11:47:04Z 1020 112 2005-05-29T10:14:04Z 1 2020-02-15T06:59:36Z +397 2005-05-27T12:29:02Z 4193 544 2005-05-28T17:36:02Z 2 2020-02-15T06:59:36Z +398 2005-05-27T12:44:03Z 1686 422 2005-06-02T08:19:03Z 1 2020-02-15T06:59:36Z +399 2005-05-27T12:48:38Z 553 204 2005-05-29T15:27:38Z 1 2020-02-15T06:59:36Z +400 2005-05-27T12:51:44Z 258 249 2005-05-31T08:34:44Z 2 2020-02-15T06:59:36Z +401 2005-05-27T12:57:55Z 2179 46 2005-05-29T17:55:55Z 2 2020-02-15T06:59:36Z +402 2005-05-27T13:17:18Z 461 354 2005-05-30T08:53:18Z 2 2020-02-15T06:59:36Z +403 2005-05-27T13:28:52Z 3983 424 2005-05-29T11:47:52Z 2 2020-02-15T06:59:36Z +404 2005-05-27T13:31:51Z 1293 168 2005-05-30T16:58:51Z 1 2020-02-15T06:59:36Z +405 2005-05-27T13:32:39Z 4090 272 2005-06-05T18:53:39Z 2 2020-02-15T06:59:36Z +406 2005-05-27T13:46:46Z 2136 381 2005-05-30T12:43:46Z 1 2020-02-15T06:59:36Z +407 2005-05-27T13:57:38Z 1077 44 2005-05-31T18:23:38Z 1 2020-02-15T06:59:36Z +408 2005-05-27T13:57:39Z 1438 84 2005-05-28T11:57:39Z 1 2020-02-15T06:59:36Z +409 2005-05-27T14:10:58Z 3652 220 2005-06-02T10:40:58Z 2 2020-02-15T06:59:36Z +410 2005-05-27T14:11:22Z 4010 506 2005-06-02T20:06:22Z 2 2020-02-15T06:59:36Z +411 2005-05-27T14:14:14Z 1434 388 2005-06-03T17:39:14Z 1 2020-02-15T06:59:36Z +412 2005-05-27T14:17:23Z 1400 375 2005-05-29T15:07:23Z 2 2020-02-15T06:59:36Z +413 2005-05-27T14:45:37Z 3516 307 2005-06-03T11:11:37Z 1 2020-02-15T06:59:36Z +414 2005-05-27T14:48:20Z 1019 219 2005-05-31T14:39:20Z 2 2020-02-15T06:59:36Z +415 2005-05-27T14:51:45Z 3698 304 2005-05-28T19:07:45Z 2 2020-02-15T06:59:36Z +416 2005-05-27T15:02:10Z 2371 222 2005-05-29T10:34:10Z 2 2020-02-15T06:59:36Z +417 2005-05-27T15:07:27Z 2253 475 2005-05-29T20:01:27Z 2 2020-02-15T06:59:36Z +418 2005-05-27T15:13:17Z 3063 151 2005-06-04T12:05:17Z 2 2020-02-15T06:59:36Z +419 2005-05-27T15:15:11Z 2514 77 2005-06-02T11:53:11Z 1 2020-02-15T06:59:36Z +420 2005-05-27T15:19:38Z 619 93 2005-06-03T15:07:38Z 2 2020-02-15T06:59:36Z +421 2005-05-27T15:30:13Z 2985 246 2005-06-04T13:19:13Z 2 2020-02-15T06:59:36Z +422 2005-05-27T15:31:55Z 1152 150 2005-06-01T11:47:55Z 2 2020-02-15T06:59:36Z +423 2005-05-27T15:32:57Z 1783 284 2005-06-02T19:03:57Z 1 2020-02-15T06:59:36Z +424 2005-05-27T15:34:01Z 2815 35 2005-06-05T09:44:01Z 1 2020-02-15T06:59:36Z +425 2005-05-27T15:51:30Z 1518 182 2005-06-03T16:52:30Z 2 2020-02-15T06:59:36Z +426 2005-05-27T15:56:57Z 1103 522 2005-06-05T11:45:57Z 1 2020-02-15T06:59:36Z +427 2005-05-27T16:10:04Z 1677 288 2005-06-05T13:22:04Z 2 2020-02-15T06:59:36Z +428 2005-05-27T16:10:58Z 3349 161 2005-05-31T17:24:58Z 2 2020-02-15T06:59:36Z +429 2005-05-27T16:21:26Z 129 498 2005-06-05T20:23:26Z 2 2020-02-15T06:59:36Z +430 2005-05-27T16:22:10Z 1920 190 2005-06-05T13:10:10Z 1 2020-02-15T06:59:36Z +431 2005-05-27T16:31:05Z 4507 334 2005-06-05T11:29:05Z 1 2020-02-15T06:59:36Z +432 2005-05-27T16:40:29Z 1119 46 2005-05-29T16:20:29Z 1 2020-02-15T06:59:36Z +433 2005-05-27T16:40:40Z 4364 574 2005-05-30T19:55:40Z 2 2020-02-15T06:59:36Z +434 2005-05-27T16:54:27Z 3360 246 2005-06-04T22:26:27Z 1 2020-02-15T06:59:36Z +435 2005-05-27T17:17:09Z 3328 3 2005-06-02T11:20:09Z 2 2020-02-15T06:59:36Z +436 2005-05-27T17:21:04Z 4317 267 2005-05-30T21:26:04Z 2 2020-02-15T06:59:36Z +437 2005-05-27T17:47:22Z 1800 525 2005-06-05T14:22:22Z 2 2020-02-15T06:59:36Z +438 2005-05-27T17:52:34Z 4260 249 2005-06-05T22:23:34Z 2 2020-02-15T06:59:36Z +439 2005-05-27T17:54:48Z 354 319 2005-06-02T23:01:48Z 2 2020-02-15T06:59:36Z +440 2005-05-27T18:00:35Z 4452 314 2005-05-29T16:15:35Z 1 2020-02-15T06:59:36Z +441 2005-05-27T18:11:05Z 1578 54 2005-05-30T22:45:05Z 1 2020-02-15T06:59:36Z +442 2005-05-27T18:12:13Z 1457 403 2005-05-30T12:30:13Z 2 2020-02-15T06:59:36Z +443 2005-05-27T18:35:20Z 2021 547 2005-06-04T18:58:20Z 1 2020-02-15T06:59:36Z +444 2005-05-27T18:39:15Z 723 239 2005-06-01T15:56:15Z 1 2020-02-15T06:59:36Z +445 2005-05-27T18:42:57Z 1757 293 2005-05-30T22:35:57Z 2 2020-02-15T06:59:36Z +446 2005-05-27T18:48:41Z 1955 401 2005-06-03T16:42:41Z 2 2020-02-15T06:59:36Z +447 2005-05-27T18:57:02Z 3890 133 2005-06-05T18:38:02Z 1 2020-02-15T06:59:36Z +448 2005-05-27T19:03:08Z 2671 247 2005-06-03T20:28:08Z 2 2020-02-15T06:59:36Z +449 2005-05-27T19:13:15Z 2469 172 2005-06-04T01:08:15Z 2 2020-02-15T06:59:36Z +450 2005-05-27T19:18:54Z 1343 247 2005-06-05T23:52:54Z 1 2020-02-15T06:59:36Z +451 2005-05-27T19:27:54Z 205 87 2005-05-29T01:07:54Z 2 2020-02-15T06:59:36Z +452 2005-05-27T19:30:33Z 2993 127 2005-05-30T20:53:33Z 2 2020-02-15T06:59:36Z +453 2005-05-27T19:31:16Z 4425 529 2005-05-29T23:06:16Z 1 2020-02-15T06:59:36Z +454 2005-05-27T19:31:36Z 3499 575 2005-05-30T15:46:36Z 1 2020-02-15T06:59:36Z +455 2005-05-27T19:43:29Z 3344 343 2005-06-04T23:40:29Z 2 2020-02-15T06:59:36Z +456 2005-05-27T19:50:06Z 1699 92 2005-06-02T22:14:06Z 1 2020-02-15T06:59:36Z +457 2005-05-27T19:52:29Z 2368 300 2005-06-02T17:17:29Z 2 2020-02-15T06:59:37Z +458 2005-05-27T19:58:36Z 3350 565 2005-06-06T00:51:36Z 1 2020-02-15T06:59:37Z +459 2005-05-27T20:00:04Z 597 468 2005-05-29T22:47:04Z 1 2020-02-15T06:59:37Z +460 2005-05-27T20:02:03Z 4238 240 2005-05-28T16:14:03Z 1 2020-02-15T06:59:37Z +461 2005-05-27T20:08:55Z 2077 447 2005-06-01T14:32:55Z 1 2020-02-15T06:59:37Z +462 2005-05-27T20:10:36Z 2314 364 2005-06-03T21:12:36Z 2 2020-02-15T06:59:37Z +463 2005-05-27T20:11:47Z 826 21 2005-06-04T21:18:47Z 1 2020-02-15T06:59:37Z +464 2005-05-27T20:42:44Z 1313 193 2005-05-30T00:49:44Z 2 2020-02-15T06:59:37Z +465 2005-05-27T20:44:36Z 20 261 2005-06-02T02:43:36Z 1 2020-02-15T06:59:37Z +466 2005-05-27T20:57:07Z 1786 442 2005-05-29T15:52:07Z 1 2020-02-15T06:59:37Z +467 2005-05-27T21:10:03Z 339 557 2005-06-01T16:08:03Z 1 2020-02-15T06:59:37Z +468 2005-05-27T21:13:10Z 2656 101 2005-06-04T15:26:10Z 2 2020-02-15T06:59:37Z +469 2005-05-27T21:14:26Z 4463 154 2005-06-05T21:51:26Z 1 2020-02-15T06:59:37Z +470 2005-05-27T21:17:08Z 1613 504 2005-06-04T17:47:08Z 1 2020-02-15T06:59:37Z +471 2005-05-27T21:32:42Z 2872 209 2005-05-31T00:39:42Z 2 2020-02-15T06:59:37Z +472 2005-05-27T21:36:15Z 1338 528 2005-05-29T21:07:15Z 1 2020-02-15T06:59:37Z +473 2005-05-27T21:36:34Z 802 105 2005-06-05T17:02:34Z 1 2020-02-15T06:59:37Z +474 2005-05-27T22:11:56Z 1474 274 2005-05-31T19:07:56Z 1 2020-02-15T06:59:37Z +475 2005-05-27T22:16:26Z 2520 159 2005-05-28T19:58:26Z 1 2020-02-15T06:59:37Z +476 2005-05-27T22:31:36Z 2451 543 2005-06-03T19:12:36Z 1 2020-02-15T06:59:37Z +477 2005-05-27T22:33:33Z 2437 161 2005-06-02T18:35:33Z 2 2020-02-15T06:59:37Z +478 2005-05-27T22:38:20Z 424 557 2005-05-31T18:39:20Z 2 2020-02-15T06:59:37Z +479 2005-05-27T22:39:10Z 2060 231 2005-06-05T22:46:10Z 2 2020-02-15T06:59:37Z +480 2005-05-27T22:47:39Z 2108 220 2005-06-04T21:17:39Z 2 2020-02-15T06:59:37Z +481 2005-05-27T22:49:27Z 72 445 2005-05-30T17:46:27Z 2 2020-02-15T06:59:37Z +482 2005-05-27T22:53:02Z 4178 546 2005-06-01T22:53:02Z 2 2020-02-15T06:59:37Z +483 2005-05-27T23:00:25Z 1510 32 2005-05-28T21:30:25Z 1 2020-02-15T06:59:37Z +484 2005-05-27T23:26:45Z 3115 491 2005-05-29T21:16:45Z 2 2020-02-15T06:59:37Z +485 2005-05-27T23:40:52Z 2392 105 2005-05-28T22:40:52Z 2 2020-02-15T06:59:37Z +486 2005-05-27T23:51:12Z 1822 398 2005-05-28T20:26:12Z 1 2020-02-15T06:59:37Z +487 2005-05-28T00:00:30Z 3774 569 2005-05-28T19:18:30Z 2 2020-02-15T06:59:37Z +488 2005-05-28T00:07:50Z 393 168 2005-06-03T22:30:50Z 2 2020-02-15T06:59:37Z +489 2005-05-28T00:09:12Z 1940 476 2005-05-31T04:44:12Z 2 2020-02-15T06:59:37Z +490 2005-05-28T00:09:56Z 3524 95 2005-05-30T22:32:56Z 2 2020-02-15T06:59:37Z +491 2005-05-28T00:13:35Z 1326 196 2005-05-29T00:11:35Z 2 2020-02-15T06:59:37Z +492 2005-05-28T00:24:58Z 1999 228 2005-05-28T22:34:58Z 1 2020-02-15T06:59:37Z +493 2005-05-28T00:34:11Z 184 501 2005-05-30T18:40:11Z 1 2020-02-15T06:59:37Z +494 2005-05-28T00:39:31Z 1850 64 2005-06-02T19:35:31Z 1 2020-02-15T06:59:37Z +495 2005-05-28T00:40:48Z 1007 526 2005-05-29T06:07:48Z 1 2020-02-15T06:59:37Z +496 2005-05-28T00:43:41Z 1785 56 2005-06-04T03:56:41Z 1 2020-02-15T06:59:37Z +497 2005-05-28T00:54:39Z 2636 20 2005-06-03T20:47:39Z 2 2020-02-15T06:59:37Z +498 2005-05-28T01:01:21Z 458 287 2005-05-30T21:20:21Z 2 2020-02-15T06:59:37Z +499 2005-05-28T01:05:07Z 2381 199 2005-06-05T19:54:07Z 2 2020-02-15T06:59:37Z +500 2005-05-28T01:05:25Z 4500 145 2005-05-31T20:04:25Z 1 2020-02-15T06:59:37Z +501 2005-05-28T01:09:36Z 601 162 2005-05-30T06:14:36Z 2 2020-02-15T06:59:37Z +502 2005-05-28T01:34:43Z 3131 179 2005-05-31T01:02:43Z 2 2020-02-15T06:59:37Z +503 2005-05-28T01:35:25Z 3005 288 2005-05-28T22:12:25Z 2 2020-02-15T06:59:37Z +504 2005-05-28T02:05:34Z 2086 170 2005-05-30T23:03:34Z 1 2020-02-15T06:59:37Z +505 2005-05-28T02:06:37Z 71 111 2005-05-29T06:57:37Z 1 2020-02-15T06:59:37Z +506 2005-05-28T02:09:19Z 667 469 2005-06-05T20:34:19Z 1 2020-02-15T06:59:37Z +507 2005-05-28T02:31:19Z 3621 421 2005-06-02T05:07:19Z 2 2020-02-15T06:59:37Z +508 2005-05-28T02:40:50Z 4179 434 2005-06-05T03:05:50Z 1 2020-02-15T06:59:37Z +509 2005-05-28T02:51:12Z 3416 147 2005-05-31T06:27:12Z 1 2020-02-15T06:59:37Z +510 2005-05-28T02:52:14Z 4338 113 2005-05-30T21:20:14Z 2 2020-02-15T06:59:37Z +511 2005-05-28T03:04:04Z 3827 296 2005-06-03T04:58:04Z 1 2020-02-15T06:59:37Z +512 2005-05-28T03:07:50Z 2176 231 2005-06-05T02:12:50Z 2 2020-02-15T06:59:37Z +513 2005-05-28T03:08:10Z 225 489 2005-05-29T07:22:10Z 1 2020-02-15T06:59:37Z +514 2005-05-28T03:09:28Z 1697 597 2005-06-05T00:49:28Z 2 2020-02-15T06:59:37Z +515 2005-05-28T03:10:10Z 3369 110 2005-06-04T02:18:10Z 2 2020-02-15T06:59:37Z +516 2005-05-28T03:11:47Z 4357 400 2005-06-04T02:19:47Z 1 2020-02-15T06:59:37Z +517 2005-05-28T03:17:57Z 234 403 2005-05-29T06:33:57Z 1 2020-02-15T06:59:37Z +518 2005-05-28T03:18:02Z 4087 480 2005-05-30T05:32:02Z 1 2020-02-15T06:59:37Z +519 2005-05-28T03:22:33Z 3564 245 2005-06-03T05:06:33Z 1 2020-02-15T06:59:37Z +520 2005-05-28T03:27:37Z 3845 161 2005-06-04T05:47:37Z 1 2020-02-15T06:59:37Z +521 2005-05-28T03:32:22Z 2397 374 2005-05-28T22:37:22Z 1 2020-02-15T06:59:37Z +522 2005-05-28T03:33:20Z 3195 382 2005-05-31T04:23:20Z 1 2020-02-15T06:59:37Z +523 2005-05-28T03:53:26Z 1905 138 2005-05-31T05:58:26Z 2 2020-02-15T06:59:37Z +524 2005-05-28T03:57:28Z 1962 223 2005-05-31T05:20:28Z 1 2020-02-15T06:59:37Z +525 2005-05-28T04:25:33Z 1817 14 2005-06-06T04:18:33Z 1 2020-02-15T06:59:37Z +526 2005-05-28T04:27:37Z 1387 408 2005-05-30T07:52:37Z 1 2020-02-15T06:59:37Z +527 2005-05-28T04:28:38Z 266 169 2005-06-02T08:19:38Z 1 2020-02-15T06:59:37Z +528 2005-05-28T04:30:05Z 1655 359 2005-06-03T10:01:05Z 2 2020-02-15T06:59:37Z +529 2005-05-28T04:34:17Z 2624 469 2005-05-30T00:35:17Z 1 2020-02-15T06:59:37Z +530 2005-05-28T05:13:01Z 3332 312 2005-06-01T10:21:01Z 2 2020-02-15T06:59:37Z +531 2005-05-28T05:23:38Z 1113 589 2005-05-29T08:00:38Z 2 2020-02-15T06:59:37Z +532 2005-05-28T05:36:58Z 2793 120 2005-06-02T01:50:58Z 1 2020-02-15T06:59:37Z +533 2005-05-28T06:14:46Z 4306 528 2005-06-01T06:26:46Z 2 2020-02-15T06:59:37Z +534 2005-05-28T06:15:25Z 992 184 2005-06-06T07:51:25Z 1 2020-02-15T06:59:37Z +535 2005-05-28T06:16:32Z 4209 307 2005-05-31T02:48:32Z 1 2020-02-15T06:59:37Z +536 2005-05-28T06:17:33Z 2962 514 2005-06-03T10:02:33Z 2 2020-02-15T06:59:37Z +537 2005-05-28T06:20:55Z 3095 315 2005-06-05T11:48:55Z 2 2020-02-15T06:59:37Z +538 2005-05-28T06:21:05Z 2262 110 2005-06-02T01:22:05Z 2 2020-02-15T06:59:37Z +539 2005-05-28T06:26:16Z 3427 161 2005-05-30T02:02:16Z 1 2020-02-15T06:59:37Z +540 2005-05-28T06:40:25Z 3321 119 2005-06-06T00:47:25Z 1 2020-02-15T06:59:37Z +541 2005-05-28T06:41:58Z 1662 535 2005-06-02T09:12:58Z 2 2020-02-15T06:59:37Z +542 2005-05-28T06:42:13Z 4444 261 2005-06-03T09:05:13Z 1 2020-02-15T06:59:37Z +543 2005-05-28T06:43:34Z 530 493 2005-06-06T07:16:34Z 2 2020-02-15T06:59:37Z +544 2005-05-28T07:03:00Z 2964 311 2005-06-06T06:23:00Z 1 2020-02-15T06:59:37Z +545 2005-05-28T07:10:20Z 1086 54 2005-06-04T01:47:20Z 2 2020-02-15T06:59:37Z +546 2005-05-28T07:16:25Z 487 20 2005-06-01T08:36:25Z 1 2020-02-15T06:59:37Z +547 2005-05-28T07:24:28Z 2065 506 2005-06-06T01:31:28Z 2 2020-02-15T06:59:37Z +548 2005-05-28T07:34:56Z 3704 450 2005-06-05T03:14:56Z 2 2020-02-15T06:59:37Z +549 2005-05-28T07:35:37Z 1818 159 2005-06-02T09:08:37Z 1 2020-02-15T06:59:37Z +550 2005-05-28T07:39:16Z 3632 432 2005-06-06T12:20:16Z 2 2020-02-15T06:59:37Z +551 2005-05-28T07:44:18Z 3119 315 2005-06-02T12:55:18Z 2 2020-02-15T06:59:37Z +552 2005-05-28T07:53:38Z 23 106 2005-06-04T12:45:38Z 2 2020-02-15T06:59:37Z +553 2005-05-28T08:14:44Z 1349 176 2005-06-02T03:01:44Z 2 2020-02-15T06:59:37Z +554 2005-05-28T08:23:16Z 1951 376 2005-05-31T03:29:16Z 2 2020-02-15T06:59:37Z +555 2005-05-28T08:31:14Z 4397 55 2005-05-30T07:34:14Z 2 2020-02-15T06:59:37Z +556 2005-05-28T08:31:36Z 1814 22 2005-06-06T07:29:36Z 2 2020-02-15T06:59:37Z +557 2005-05-28T08:36:22Z 158 444 2005-06-03T10:42:22Z 2 2020-02-15T06:59:37Z +558 2005-05-28T08:38:43Z 4163 442 2005-06-06T13:52:43Z 1 2020-02-15T06:59:37Z +559 2005-05-28T08:39:02Z 1227 572 2005-06-05T08:38:02Z 2 2020-02-15T06:59:37Z +560 2005-05-28T08:53:02Z 644 463 2005-06-04T12:27:02Z 2 2020-02-15T06:59:37Z +561 2005-05-28T08:54:06Z 928 77 2005-06-05T05:54:06Z 1 2020-02-15T06:59:37Z +562 2005-05-28T09:01:21Z 3390 102 2005-06-02T05:26:21Z 2 2020-02-15T06:59:37Z +563 2005-05-28T09:10:49Z 53 324 2005-06-06T11:32:49Z 1 2020-02-15T06:59:37Z +564 2005-05-28T09:12:09Z 2973 282 2005-05-29T05:07:09Z 1 2020-02-15T06:59:37Z +565 2005-05-28T09:26:31Z 1494 288 2005-06-01T07:28:31Z 1 2020-02-15T06:59:37Z +566 2005-05-28T09:51:39Z 4330 253 2005-06-05T09:35:39Z 1 2020-02-15T06:59:37Z +567 2005-05-28T09:56:20Z 3308 184 2005-06-01T06:41:20Z 2 2020-02-15T06:59:37Z +568 2005-05-28T09:57:36Z 2232 155 2005-05-31T15:44:36Z 1 2020-02-15T06:59:37Z +569 2005-05-28T10:12:41Z 4534 56 2005-06-03T10:08:41Z 2 2020-02-15T06:59:37Z +570 2005-05-28T10:15:04Z 1122 21 2005-05-30T08:32:04Z 1 2020-02-15T06:59:37Z +571 2005-05-28T10:17:41Z 4250 516 2005-06-05T07:56:41Z 1 2020-02-15T06:59:37Z +572 2005-05-28T10:30:13Z 1899 337 2005-06-02T05:04:13Z 2 2020-02-15T06:59:37Z +573 2005-05-28T10:35:23Z 4020 1 2005-06-03T06:32:23Z 1 2020-02-15T06:59:37Z +574 2005-05-28T10:44:28Z 3883 76 2005-06-04T11:42:28Z 1 2020-02-15T06:59:37Z +575 2005-05-28T10:56:09Z 4451 142 2005-06-05T15:39:09Z 1 2020-02-15T06:59:37Z +576 2005-05-28T10:56:10Z 1866 588 2005-06-04T13:15:10Z 2 2020-02-15T06:59:37Z +577 2005-05-28T11:09:14Z 375 6 2005-06-01T13:27:14Z 2 2020-02-15T06:59:37Z +578 2005-05-28T11:15:48Z 2938 173 2005-06-02T09:59:48Z 1 2020-02-15T06:59:37Z +579 2005-05-28T11:19:23Z 3481 181 2005-06-02T13:51:23Z 1 2020-02-15T06:59:37Z +580 2005-05-28T11:19:53Z 3515 17 2005-06-01T10:44:53Z 2 2020-02-15T06:59:37Z +581 2005-05-28T11:20:29Z 1380 186 2005-06-04T12:37:29Z 2 2020-02-15T06:59:37Z +582 2005-05-28T11:33:46Z 4579 198 2005-05-29T08:33:46Z 1 2020-02-15T06:59:37Z +583 2005-05-28T11:48:55Z 2679 386 2005-06-04T07:09:55Z 2 2020-02-15T06:59:37Z +584 2005-05-28T11:49:00Z 1833 69 2005-06-01T11:54:00Z 1 2020-02-15T06:59:37Z +585 2005-05-28T11:50:45Z 3544 490 2005-06-03T15:35:45Z 2 2020-02-15T06:59:37Z +586 2005-05-28T12:03:00Z 898 77 2005-05-29T13:16:00Z 1 2020-02-15T06:59:37Z +587 2005-05-28T12:05:33Z 1413 64 2005-05-30T13:45:33Z 2 2020-02-15T06:59:37Z +588 2005-05-28T12:08:37Z 95 89 2005-05-29T16:25:37Z 2 2020-02-15T06:59:37Z +589 2005-05-28T12:27:50Z 4231 308 2005-06-03T07:15:50Z 2 2020-02-15T06:59:37Z +590 2005-05-28T13:06:50Z 473 462 2005-06-02T09:18:50Z 1 2020-02-15T06:59:37Z +591 2005-05-28T13:11:04Z 377 19 2005-05-29T17:20:04Z 2 2020-02-15T06:59:37Z +592 2005-05-28T13:21:08Z 638 244 2005-05-29T16:55:08Z 1 2020-02-15T06:59:37Z +593 2005-05-28T13:33:23Z 1810 16 2005-05-30T17:10:23Z 2 2020-02-15T06:59:37Z +594 2005-05-28T13:41:56Z 2766 538 2005-05-30T12:00:56Z 1 2020-02-15T06:59:37Z +595 2005-05-28T13:59:54Z 595 294 2005-06-05T15:16:54Z 1 2020-02-15T06:59:37Z +596 2005-05-28T14:00:03Z 821 589 2005-05-29T17:10:03Z 1 2020-02-15T06:59:37Z +597 2005-05-28T14:01:02Z 4469 249 2005-06-06T19:06:02Z 2 2020-02-15T06:59:37Z +598 2005-05-28T14:04:50Z 599 159 2005-06-03T18:00:50Z 2 2020-02-15T06:59:37Z +599 2005-05-28T14:05:57Z 4136 393 2005-06-01T16:41:57Z 2 2020-02-15T06:59:37Z +600 2005-05-28T14:08:19Z 1567 332 2005-06-03T11:57:19Z 2 2020-02-15T06:59:37Z +601 2005-05-28T14:08:22Z 3225 429 2005-06-04T10:50:22Z 1 2020-02-15T06:59:37Z +602 2005-05-28T14:15:54Z 1300 590 2005-06-05T15:16:54Z 2 2020-02-15T06:59:37Z +603 2005-05-28T14:27:51Z 3248 537 2005-05-29T13:13:51Z 1 2020-02-15T06:59:37Z +604 2005-05-28T14:37:07Z 1585 426 2005-06-03T11:03:07Z 2 2020-02-15T06:59:37Z +605 2005-05-28T14:39:10Z 4232 501 2005-06-01T09:28:10Z 2 2020-02-15T06:59:37Z +606 2005-05-28T14:48:39Z 3509 299 2005-06-04T09:44:39Z 2 2020-02-15T06:59:37Z +607 2005-05-28T15:02:41Z 2561 554 2005-05-30T12:54:41Z 2 2020-02-15T06:59:37Z +608 2005-05-28T15:03:44Z 4254 494 2005-06-04T17:14:44Z 2 2020-02-15T06:59:37Z +609 2005-05-28T15:04:02Z 2944 150 2005-06-05T14:47:02Z 2 2020-02-15T06:59:37Z +610 2005-05-28T15:15:25Z 3642 500 2005-06-02T12:30:25Z 2 2020-02-15T06:59:37Z +611 2005-05-28T15:18:18Z 1230 580 2005-05-31T20:15:18Z 2 2020-02-15T06:59:37Z +612 2005-05-28T15:24:54Z 2180 161 2005-05-30T14:22:54Z 2 2020-02-15T06:59:37Z +613 2005-05-28T15:27:22Z 270 595 2005-06-02T20:01:22Z 1 2020-02-15T06:59:37Z +614 2005-05-28T15:33:28Z 280 307 2005-06-04T12:27:28Z 2 2020-02-15T06:59:37Z +615 2005-05-28T15:35:52Z 3397 533 2005-06-03T17:35:52Z 2 2020-02-15T06:59:37Z +616 2005-05-28T15:45:39Z 989 471 2005-06-02T09:55:39Z 1 2020-02-15T06:59:37Z +617 2005-05-28T15:49:14Z 4142 372 2005-05-31T14:29:14Z 2 2020-02-15T06:59:37Z +618 2005-05-28T15:50:07Z 4445 248 2005-06-01T19:45:07Z 1 2020-02-15T06:59:37Z +619 2005-05-28T15:52:26Z 2482 407 2005-06-06T17:55:26Z 2 2020-02-15T06:59:37Z +620 2005-05-28T15:54:45Z 2444 321 2005-06-04T20:26:45Z 1 2020-02-15T06:59:37Z +621 2005-05-28T15:58:12Z 1144 239 2005-05-30T21:54:12Z 1 2020-02-15T06:59:37Z +622 2005-05-28T15:58:22Z 2363 109 2005-06-04T10:13:22Z 1 2020-02-15T06:59:37Z +623 2005-05-28T16:01:28Z 1222 495 2005-05-30T11:19:28Z 1 2020-02-15T06:59:37Z +624 2005-05-28T16:13:22Z 3660 569 2005-06-06T20:35:22Z 1 2020-02-15T06:59:37Z +625 2005-05-28T16:35:46Z 2889 596 2005-06-01T14:19:46Z 1 2020-02-15T06:59:37Z +626 2005-05-28T16:58:09Z 452 584 2005-06-01T14:02:09Z 2 2020-02-15T06:59:37Z +627 2005-05-28T17:04:43Z 425 241 2005-06-04T19:58:43Z 2 2020-02-15T06:59:37Z +628 2005-05-28T17:05:46Z 2513 173 2005-06-06T16:29:46Z 2 2020-02-15T06:59:37Z +629 2005-05-28T17:19:15Z 1527 94 2005-06-02T20:01:15Z 2 2020-02-15T06:59:37Z +630 2005-05-28T17:24:51Z 1254 417 2005-06-05T20:05:51Z 2 2020-02-15T06:59:37Z +631 2005-05-28T17:36:32Z 2465 503 2005-06-03T14:56:32Z 2 2020-02-15T06:59:37Z +632 2005-05-28T17:37:50Z 1287 442 2005-06-03T16:04:50Z 1 2020-02-15T06:59:37Z +633 2005-05-28T17:37:59Z 58 360 2005-06-03T22:49:59Z 2 2020-02-15T06:59:37Z +634 2005-05-28T17:40:35Z 2630 428 2005-06-05T16:18:35Z 2 2020-02-15T06:59:37Z +635 2005-05-28T17:46:57Z 1648 42 2005-06-06T18:24:57Z 1 2020-02-15T06:59:37Z +636 2005-05-28T17:47:58Z 4213 239 2005-06-04T16:32:58Z 1 2020-02-15T06:59:37Z +637 2005-05-28T18:14:29Z 1581 250 2005-05-29T23:48:29Z 2 2020-02-15T06:59:37Z +638 2005-05-28T18:24:43Z 2685 372 2005-06-02T19:03:43Z 2 2020-02-15T06:59:37Z +639 2005-05-28T18:25:02Z 4204 198 2005-05-29T18:22:02Z 1 2020-02-15T06:59:37Z +640 2005-05-28T18:43:26Z 495 465 2005-05-30T13:39:26Z 1 2020-02-15T06:59:37Z +641 2005-05-28T18:45:47Z 3548 396 2005-06-04T15:24:47Z 1 2020-02-15T06:59:37Z +642 2005-05-28T18:49:12Z 140 157 2005-06-01T20:50:12Z 2 2020-02-15T06:59:37Z +643 2005-05-28T18:52:11Z 3105 240 2005-05-31T15:15:11Z 2 2020-02-15T06:59:37Z +644 2005-05-28T18:59:12Z 4304 316 2005-06-04T18:06:12Z 1 2020-02-15T06:59:37Z +645 2005-05-28T19:14:09Z 3128 505 2005-06-05T14:01:09Z 1 2020-02-15T06:59:37Z +646 2005-05-28T19:16:14Z 1922 185 2005-05-31T16:50:14Z 2 2020-02-15T06:59:37Z +647 2005-05-28T19:22:52Z 3435 569 2005-06-01T00:10:52Z 1 2020-02-15T06:59:37Z +648 2005-05-28T19:25:54Z 3476 253 2005-06-03T15:57:54Z 2 2020-02-15T06:59:37Z +649 2005-05-28T19:35:45Z 1781 197 2005-06-05T16:00:45Z 1 2020-02-15T06:59:37Z +650 2005-05-28T19:45:40Z 4384 281 2005-05-29T21:02:40Z 1 2020-02-15T06:59:37Z +651 2005-05-28T19:46:50Z 739 266 2005-05-30T16:29:50Z 1 2020-02-15T06:59:37Z +652 2005-05-28T20:08:47Z 1201 43 2005-05-29T14:57:47Z 2 2020-02-15T06:59:37Z +653 2005-05-28T20:12:20Z 126 327 2005-06-04T14:44:20Z 2 2020-02-15T06:59:37Z +654 2005-05-28T20:15:30Z 2312 23 2005-05-30T22:02:30Z 2 2020-02-15T06:59:37Z +655 2005-05-28T20:16:20Z 331 287 2005-05-31T16:46:20Z 2 2020-02-15T06:59:37Z +656 2005-05-28T20:18:24Z 2846 437 2005-05-30T16:19:24Z 1 2020-02-15T06:59:37Z +657 2005-05-28T20:23:09Z 848 65 2005-06-01T02:11:09Z 1 2020-02-15T06:59:37Z +658 2005-05-28T20:23:23Z 3226 103 2005-06-06T19:31:23Z 2 2020-02-15T06:59:37Z +659 2005-05-28T20:27:53Z 1382 207 2005-05-31T01:36:53Z 2 2020-02-15T06:59:37Z +660 2005-05-28T20:53:31Z 1414 578 2005-05-30T15:26:31Z 1 2020-02-15T06:59:37Z +661 2005-05-28T21:01:25Z 2247 51 2005-06-02T01:22:25Z 2 2020-02-15T06:59:37Z +662 2005-05-28T21:09:31Z 2968 166 2005-06-01T19:00:31Z 2 2020-02-15T06:59:37Z +663 2005-05-28T21:23:02Z 3997 176 2005-06-02T17:39:02Z 2 2020-02-15T06:59:37Z +664 2005-05-28T21:31:08Z 87 523 2005-06-02T20:56:08Z 2 2020-02-15T06:59:37Z +665 2005-05-28T21:38:39Z 1012 415 2005-05-29T21:37:39Z 1 2020-02-15T06:59:37Z +666 2005-05-28T21:48:51Z 3075 437 2005-06-05T16:45:51Z 2 2020-02-15T06:59:37Z +667 2005-05-28T21:49:02Z 797 596 2005-05-31T03:07:02Z 1 2020-02-15T06:59:37Z +668 2005-05-28T21:54:45Z 3528 484 2005-05-29T22:32:45Z 1 2020-02-15T06:59:37Z +669 2005-05-28T22:03:25Z 3677 313 2005-06-03T03:39:25Z 1 2020-02-15T06:59:37Z +670 2005-05-28T22:04:03Z 227 201 2005-06-06T22:43:03Z 2 2020-02-15T06:59:37Z +671 2005-05-28T22:04:30Z 1027 14 2005-06-03T01:21:30Z 2 2020-02-15T06:59:37Z +672 2005-05-28T22:05:29Z 697 306 2005-06-06T02:10:29Z 2 2020-02-15T06:59:37Z +673 2005-05-28T22:07:30Z 1769 468 2005-06-01T23:42:30Z 1 2020-02-15T06:59:37Z +674 2005-05-28T22:11:35Z 1150 87 2005-06-01T23:58:35Z 2 2020-02-15T06:59:37Z +675 2005-05-28T22:22:44Z 1273 338 2005-06-01T02:57:44Z 2 2020-02-15T06:59:37Z +676 2005-05-28T22:27:51Z 2329 490 2005-05-29T20:36:51Z 2 2020-02-15T06:59:37Z +677 2005-05-28T23:00:08Z 4558 194 2005-06-05T19:11:08Z 2 2020-02-15T06:59:37Z +678 2005-05-28T23:15:48Z 3741 269 2005-06-03T04:43:48Z 2 2020-02-15T06:59:37Z +679 2005-05-28T23:24:57Z 907 526 2005-06-06T21:59:57Z 2 2020-02-15T06:59:37Z +680 2005-05-28T23:27:26Z 4147 482 2005-06-02T02:28:26Z 2 2020-02-15T06:59:37Z +681 2005-05-28T23:39:44Z 3346 531 2005-06-01T01:42:44Z 1 2020-02-15T06:59:37Z +682 2005-05-28T23:53:18Z 3160 148 2005-05-29T19:14:18Z 2 2020-02-15T06:59:37Z +683 2005-05-29T00:09:48Z 2038 197 2005-06-02T04:27:48Z 1 2020-02-15T06:59:37Z +684 2005-05-29T00:13:15Z 3242 461 2005-06-04T21:26:15Z 2 2020-02-15T06:59:37Z +685 2005-05-29T00:17:51Z 1385 172 2005-06-05T05:32:51Z 2 2020-02-15T06:59:37Z +686 2005-05-29T00:27:10Z 2441 411 2005-05-30T02:29:10Z 1 2020-02-15T06:59:37Z +687 2005-05-29T00:32:09Z 1731 250 2005-05-31T23:53:09Z 1 2020-02-15T06:59:37Z +688 2005-05-29T00:45:24Z 4135 162 2005-06-02T01:30:24Z 1 2020-02-15T06:59:37Z +689 2005-05-29T00:46:53Z 742 571 2005-06-03T23:48:53Z 2 2020-02-15T06:59:37Z +690 2005-05-29T00:54:53Z 2646 85 2005-06-06T00:45:53Z 1 2020-02-15T06:59:37Z +691 2005-05-29T01:01:26Z 4034 433 2005-06-07T06:21:26Z 1 2020-02-15T06:59:37Z +692 2005-05-29T01:32:10Z 800 18 2005-06-02T03:54:10Z 2 2020-02-15T06:59:37Z +693 2005-05-29T01:42:31Z 635 190 2005-06-03T02:29:31Z 2 2020-02-15T06:59:37Z +694 2005-05-29T01:49:43Z 592 399 2005-06-05T06:52:43Z 1 2020-02-15T06:59:37Z +695 2005-05-29T01:50:53Z 4276 528 2005-06-03T02:28:53Z 1 2020-02-15T06:59:37Z +696 2005-05-29T01:59:10Z 2076 19 2005-06-01T02:45:10Z 1 2020-02-15T06:59:37Z +697 2005-05-29T02:04:04Z 3949 387 2005-06-04T00:47:04Z 2 2020-02-15T06:59:37Z +698 2005-05-29T02:10:52Z 1412 109 2005-06-01T21:52:52Z 1 2020-02-15T06:59:37Z +699 2005-05-29T02:11:44Z 130 246 2005-06-04T20:23:44Z 2 2020-02-15T06:59:37Z +700 2005-05-29T02:18:54Z 500 117 2005-05-30T05:54:54Z 1 2020-02-15T06:59:37Z +701 2005-05-29T02:26:27Z 372 112 2005-06-03T04:59:27Z 1 2020-02-15T06:59:37Z +702 2005-05-29T02:27:30Z 2556 475 2005-05-30T01:52:30Z 2 2020-02-15T06:59:37Z +703 2005-05-29T02:29:36Z 1123 269 2005-06-03T04:54:36Z 2 2020-02-15T06:59:37Z +704 2005-05-29T02:44:43Z 2628 330 2005-06-06T01:51:43Z 2 2020-02-15T06:59:37Z +705 2005-05-29T02:48:52Z 2809 257 2005-05-30T06:21:52Z 1 2020-02-15T06:59:37Z +706 2005-05-29T03:05:49Z 2278 60 2005-06-04T22:48:49Z 1 2020-02-15T06:59:37Z +707 2005-05-29T03:18:19Z 819 252 2005-05-30T02:45:19Z 1 2020-02-15T06:59:37Z +708 2005-05-29T03:23:47Z 3133 127 2005-05-31T21:27:47Z 2 2020-02-15T06:59:37Z +709 2005-05-29T03:48:01Z 2459 479 2005-06-06T05:21:01Z 1 2020-02-15T06:59:37Z +710 2005-05-29T03:48:36Z 194 518 2005-06-03T05:03:36Z 1 2020-02-15T06:59:37Z +711 2005-05-29T03:49:03Z 4581 215 2005-05-31T08:29:03Z 2 2020-02-15T06:59:37Z +712 2005-05-29T04:02:24Z 4191 313 2005-05-30T03:09:24Z 2 2020-02-15T06:59:37Z +713 2005-05-29T04:10:17Z 3664 507 2005-06-07T07:13:17Z 1 2020-02-15T06:59:37Z +714 2005-05-29T04:15:21Z 2010 452 2005-06-01T23:05:21Z 2 2020-02-15T06:59:37Z +715 2005-05-29T04:22:41Z 2030 545 2005-06-05T09:28:41Z 1 2020-02-15T06:59:37Z +716 2005-05-29T04:35:29Z 85 36 2005-06-01T07:42:29Z 2 2020-02-15T06:59:37Z +717 2005-05-29T04:37:44Z 1383 412 2005-05-30T05:48:44Z 2 2020-02-15T06:59:37Z +718 2005-05-29T04:52:23Z 1736 498 2005-06-02T02:27:23Z 1 2020-02-15T06:59:37Z +719 2005-05-29T05:16:05Z 267 245 2005-06-01T07:53:05Z 2 2020-02-15T06:59:37Z +720 2005-05-29T05:17:30Z 3687 480 2005-06-06T02:47:30Z 2 2020-02-15T06:59:37Z +721 2005-05-29T05:28:47Z 1116 44 2005-05-31T11:24:47Z 1 2020-02-15T06:59:37Z +722 2005-05-29T05:30:31Z 4540 259 2005-06-06T04:51:31Z 1 2020-02-15T06:59:37Z +723 2005-05-29T05:34:44Z 3407 309 2005-05-30T05:50:44Z 1 2020-02-15T06:59:37Z +724 2005-05-29T05:53:23Z 3770 416 2005-06-05T04:01:23Z 2 2020-02-15T06:59:37Z +725 2005-05-29T06:03:41Z 4088 245 2005-06-03T08:52:41Z 2 2020-02-15T06:59:37Z +726 2005-05-29T06:05:29Z 933 452 2005-06-05T04:40:29Z 2 2020-02-15T06:59:37Z +727 2005-05-29T06:08:15Z 1629 484 2005-05-30T07:16:15Z 1 2020-02-15T06:59:37Z +728 2005-05-29T06:12:38Z 242 551 2005-06-03T07:41:38Z 1 2020-02-15T06:59:37Z +729 2005-05-29T06:35:13Z 1688 323 2005-06-04T03:23:13Z 2 2020-02-15T06:59:37Z +730 2005-05-29T07:00:59Z 3473 197 2005-06-06T01:17:59Z 1 2020-02-15T06:59:37Z +731 2005-05-29T07:25:16Z 4124 5 2005-05-30T05:21:16Z 1 2020-02-15T06:59:37Z +732 2005-05-29T07:32:51Z 2530 447 2005-05-30T10:08:51Z 2 2020-02-15T06:59:37Z +733 2005-05-29T07:35:21Z 2951 363 2005-06-05T09:14:21Z 1 2020-02-15T06:59:37Z +734 2005-05-29T07:38:52Z 3084 538 2005-06-03T10:17:52Z 2 2020-02-15T06:59:37Z +735 2005-05-29T08:08:13Z 3421 454 2005-06-07T13:35:13Z 1 2020-02-15T06:59:37Z +736 2005-05-29T08:10:07Z 3689 276 2005-06-05T10:21:07Z 2 2020-02-15T06:59:37Z +737 2005-05-29T08:11:31Z 769 589 2005-06-04T11:18:31Z 2 2020-02-15T06:59:37Z +738 2005-05-29T08:20:08Z 2284 256 2005-06-06T08:59:08Z 2 2020-02-15T06:59:37Z +739 2005-05-29T08:28:18Z 1183 84 2005-06-06T09:21:18Z 2 2020-02-15T06:59:37Z +740 2005-05-29T08:30:36Z 600 89 2005-06-04T12:47:36Z 2 2020-02-15T06:59:37Z +741 2005-05-29T08:35:49Z 3189 495 2005-06-04T11:55:49Z 1 2020-02-15T06:59:37Z +742 2005-05-29T08:36:30Z 273 483 2005-06-05T11:30:30Z 1 2020-02-15T06:59:37Z +743 2005-05-29T08:39:02Z 2528 548 2005-06-06T08:42:02Z 2 2020-02-15T06:59:37Z +744 2005-05-29T09:13:08Z 3722 420 2005-06-01T07:05:08Z 2 2020-02-15T06:59:37Z +745 2005-05-29T09:22:57Z 581 152 2005-06-01T09:10:57Z 1 2020-02-15T06:59:37Z +746 2005-05-29T09:25:10Z 4272 130 2005-06-02T04:20:10Z 2 2020-02-15T06:59:37Z +747 2005-05-29T09:26:34Z 1993 291 2005-06-05T07:28:34Z 1 2020-02-15T06:59:37Z +748 2005-05-29T09:27:00Z 2803 7 2005-06-03T04:25:00Z 1 2020-02-15T06:59:37Z +749 2005-05-29T09:33:33Z 1146 375 2005-05-31T11:45:33Z 2 2020-02-15T06:59:37Z +750 2005-05-29T09:41:40Z 730 269 2005-05-30T13:31:40Z 1 2020-02-15T06:59:37Z +751 2005-05-29T09:55:43Z 2711 53 2005-06-02T04:54:43Z 1 2020-02-15T06:59:37Z +752 2005-05-29T10:14:15Z 1720 126 2005-06-04T06:30:15Z 1 2020-02-15T06:59:37Z +753 2005-05-29T10:16:42Z 1021 135 2005-06-05T08:52:42Z 2 2020-02-15T06:59:37Z +754 2005-05-29T10:18:59Z 734 281 2005-06-04T05:03:59Z 2 2020-02-15T06:59:37Z +755 2005-05-29T10:26:29Z 3090 576 2005-06-01T10:25:29Z 2 2020-02-15T06:59:37Z +756 2005-05-29T10:28:45Z 3152 201 2005-06-04T12:50:45Z 1 2020-02-15T06:59:37Z +757 2005-05-29T10:29:47Z 1067 435 2005-06-07T15:27:47Z 1 2020-02-15T06:59:37Z +758 2005-05-29T10:31:56Z 1191 563 2005-06-01T14:53:56Z 2 2020-02-15T06:59:37Z +759 2005-05-29T10:57:57Z 2367 179 2005-06-07T16:23:57Z 2 2020-02-15T06:59:37Z +760 2005-05-29T11:07:25Z 3250 77 2005-06-02T14:16:25Z 1 2020-02-15T06:59:37Z +761 2005-05-29T11:09:01Z 2342 58 2005-06-03T16:18:01Z 2 2020-02-15T06:59:37Z +762 2005-05-29T11:15:51Z 3683 146 2005-06-06T07:48:51Z 1 2020-02-15T06:59:37Z +763 2005-05-29T11:32:15Z 2022 50 2005-05-31T17:31:15Z 1 2020-02-15T06:59:37Z +764 2005-05-29T11:37:35Z 1069 149 2005-05-31T16:47:35Z 1 2020-02-15T06:59:37Z +765 2005-05-29T11:38:34Z 515 69 2005-06-02T17:04:34Z 1 2020-02-15T06:59:37Z +766 2005-05-29T11:47:02Z 2154 383 2005-06-06T07:14:02Z 1 2020-02-15T06:59:37Z +767 2005-05-29T12:20:19Z 687 67 2005-06-02T14:15:19Z 2 2020-02-15T06:59:37Z +768 2005-05-29T12:30:46Z 2895 566 2005-06-07T09:00:46Z 2 2020-02-15T06:59:37Z +769 2005-05-29T12:51:44Z 1523 575 2005-06-01T17:43:44Z 1 2020-02-15T06:59:37Z +770 2005-05-29T12:56:50Z 2491 405 2005-06-07T15:54:50Z 2 2020-02-15T06:59:37Z +771 2005-05-29T12:59:14Z 353 476 2005-06-01T16:05:14Z 2 2020-02-15T06:59:37Z +772 2005-05-29T13:08:06Z 3319 556 2005-06-06T08:19:06Z 1 2020-02-15T06:59:37Z +773 2005-05-29T13:18:05Z 245 563 2005-06-07T17:22:05Z 1 2020-02-15T06:59:37Z +774 2005-05-29T13:19:43Z 1188 575 2005-06-01T18:51:43Z 1 2020-02-15T06:59:37Z +775 2005-05-29T13:23:26Z 1197 124 2005-05-30T07:53:26Z 2 2020-02-15T06:59:37Z +776 2005-05-29T13:35:35Z 4339 113 2005-06-03T17:33:35Z 1 2020-02-15T06:59:37Z +777 2005-05-29T14:07:58Z 451 360 2005-06-03T08:41:58Z 2 2020-02-15T06:59:37Z +778 2005-05-29T14:09:53Z 1816 535 2005-06-05T20:05:53Z 1 2020-02-15T06:59:37Z +779 2005-05-29T14:17:17Z 533 105 2005-06-06T16:46:17Z 1 2020-02-15T06:59:37Z +780 2005-05-29T14:18:32Z 1919 300 2005-06-06T20:14:32Z 1 2020-02-15T06:59:37Z +781 2005-05-29T14:23:58Z 88 313 2005-05-30T17:44:58Z 1 2020-02-15T06:59:37Z +782 2005-05-29T14:38:57Z 2255 596 2005-06-02T13:18:57Z 2 2020-02-15T06:59:37Z +783 2005-05-29T14:41:18Z 3046 53 2005-06-06T10:39:18Z 2 2020-02-15T06:59:37Z +784 2005-05-29T14:44:22Z 2936 352 2005-06-01T17:28:22Z 2 2020-02-15T06:59:37Z +785 2005-05-29T15:08:41Z 39 72 2005-05-30T15:51:41Z 1 2020-02-15T06:59:37Z +786 2005-05-29T15:17:28Z 2637 439 2005-06-07T10:07:28Z 2 2020-02-15T06:59:37Z +787 2005-05-29T16:03:03Z 3919 27 2005-06-07T11:07:03Z 2 2020-02-15T06:59:37Z +788 2005-05-29T16:13:55Z 763 562 2005-05-31T16:40:55Z 1 2020-02-15T06:59:37Z +789 2005-05-29T16:17:07Z 708 553 2005-06-06T18:15:07Z 1 2020-02-15T06:59:37Z +790 2005-05-29T16:19:29Z 2858 593 2005-06-02T17:22:29Z 2 2020-02-15T06:59:37Z +791 2005-05-29T16:30:42Z 1554 284 2005-06-01T19:11:42Z 1 2020-02-15T06:59:37Z +792 2005-05-29T16:32:10Z 2841 261 2005-05-31T18:01:10Z 1 2020-02-15T06:59:37Z +793 2005-05-29T16:44:08Z 379 528 2005-06-06T19:21:08Z 2 2020-02-15T06:59:37Z +794 2005-05-29T16:44:11Z 1995 50 2005-06-05T16:11:11Z 1 2020-02-15T06:59:37Z +795 2005-05-29T16:57:39Z 609 551 2005-06-01T11:33:39Z 2 2020-02-15T06:59:37Z +796 2005-05-29T16:59:44Z 2697 26 2005-06-03T16:22:44Z 2 2020-02-15T06:59:37Z +797 2005-05-29T17:12:17Z 1446 244 2005-06-03T16:06:17Z 1 2020-02-15T06:59:37Z +798 2005-05-29T17:23:43Z 1102 134 2005-06-01T13:06:43Z 2 2020-02-15T06:59:37Z +799 2005-05-29T17:24:48Z 1713 429 2005-06-05T12:25:48Z 1 2020-02-15T06:59:37Z +800 2005-05-29T17:28:12Z 441 472 2005-05-30T14:59:12Z 1 2020-02-15T06:59:37Z +801 2005-05-29T17:35:50Z 1642 402 2005-06-04T17:05:50Z 2 2020-02-15T06:59:37Z +802 2005-05-29T17:38:59Z 785 350 2005-05-31T22:42:59Z 2 2020-02-15T06:59:37Z +803 2005-05-29T17:52:30Z 1602 32 2005-05-30T14:35:30Z 2 2020-02-15T06:59:37Z +804 2005-05-29T18:10:24Z 3909 171 2005-06-06T22:53:24Z 1 2020-02-15T06:59:37Z +805 2005-05-29T18:18:18Z 3132 232 2005-06-07T15:11:18Z 2 2020-02-15T06:59:37Z +806 2005-05-29T18:31:30Z 2386 435 2005-05-31T00:18:30Z 2 2020-02-15T06:59:37Z +807 2005-05-29T18:50:50Z 2195 235 2005-06-03T18:36:50Z 2 2020-02-15T06:59:37Z +808 2005-05-29T19:08:20Z 1928 104 2005-06-06T20:32:20Z 2 2020-02-15T06:59:37Z +809 2005-05-29T19:10:20Z 2114 222 2005-06-05T19:05:20Z 2 2020-02-15T06:59:37Z +810 2005-05-29T19:12:04Z 2533 346 2005-06-04T21:12:04Z 2 2020-02-15T06:59:37Z +811 2005-05-29T19:30:42Z 4419 401 2005-06-02T16:19:42Z 2 2020-02-15T06:59:37Z +812 2005-05-29T20:00:30Z 1099 225 2005-05-30T19:43:30Z 2 2020-02-15T06:59:37Z +813 2005-05-29T20:14:34Z 4554 344 2005-06-05T20:56:34Z 1 2020-02-15T06:59:37Z +814 2005-05-29T20:16:12Z 1572 134 2005-06-07T17:47:12Z 1 2020-02-15T06:59:37Z +815 2005-05-29T20:24:28Z 3757 14 2005-06-03T15:32:28Z 1 2020-02-15T06:59:37Z +816 2005-05-29T20:26:39Z 630 474 2005-06-06T22:31:39Z 2 2020-02-15T06:59:37Z +817 2005-05-29T20:39:14Z 186 554 2005-05-31T18:24:14Z 1 2020-02-15T06:59:37Z +818 2005-05-29T20:47:53Z 4106 321 2005-06-02T23:18:53Z 2 2020-02-15T06:59:37Z +819 2005-05-29T21:00:32Z 623 511 2005-06-02T15:15:32Z 2 2020-02-15T06:59:37Z +820 2005-05-29T21:07:22Z 2584 22 2005-06-07T00:22:22Z 2 2020-02-15T06:59:37Z +821 2005-05-29T21:31:12Z 3380 348 2005-06-04T22:49:12Z 1 2020-02-15T06:59:37Z +822 2005-05-29T21:36:00Z 2634 480 2005-06-07T17:24:00Z 1 2020-02-15T06:59:37Z +823 2005-05-29T21:39:37Z 3249 441 2005-05-30T22:06:37Z 1 2020-02-15T06:59:37Z +824 2005-05-29T21:45:32Z 3518 357 2005-05-31T19:01:32Z 1 2020-02-15T06:59:37Z +825 2005-05-29T21:49:41Z 712 371 2005-06-04T20:27:41Z 2 2020-02-15T06:59:37Z +826 2005-05-29T21:56:15Z 2263 207 2005-06-08T03:18:15Z 1 2020-02-15T06:59:37Z +827 2005-05-29T21:58:43Z 62 573 2005-06-06T00:54:43Z 1 2020-02-15T06:59:37Z +828 2005-05-29T22:14:55Z 2468 217 2005-05-30T17:22:55Z 1 2020-02-15T06:59:37Z +829 2005-05-29T22:16:42Z 1684 371 2005-06-06T01:38:42Z 1 2020-02-15T06:59:37Z +830 2005-05-29T22:43:55Z 3464 3 2005-06-01T17:43:55Z 1 2020-02-15T06:59:37Z +831 2005-05-29T22:50:25Z 3912 509 2005-06-06T02:27:25Z 1 2020-02-15T06:59:37Z +832 2005-05-29T22:51:20Z 1381 159 2005-06-07T17:37:20Z 2 2020-02-15T06:59:37Z +833 2005-05-29T23:21:56Z 2898 417 2005-06-02T18:40:56Z 1 2020-02-15T06:59:37Z +834 2005-05-29T23:24:30Z 3628 84 2005-05-30T22:00:30Z 2 2020-02-15T06:59:37Z +835 2005-05-29T23:37:00Z 299 381 2005-06-02T23:38:00Z 1 2020-02-15T06:59:37Z +836 2005-05-29T23:56:42Z 3140 368 2005-05-31T04:11:42Z 2 2020-02-15T06:59:37Z +837 2005-05-30T00:02:08Z 977 172 2005-06-02T05:31:08Z 2 2020-02-15T06:59:37Z +838 2005-05-30T00:27:57Z 2859 504 2005-06-06T22:19:57Z 2 2020-02-15T06:59:37Z +839 2005-05-30T00:28:12Z 1886 337 2005-06-08T02:43:12Z 1 2020-02-15T06:59:37Z +840 2005-05-30T00:28:41Z 4049 79 2005-05-31T20:39:41Z 2 2020-02-15T06:59:37Z +841 2005-05-30T00:31:17Z 4318 387 2005-06-02T19:14:17Z 1 2020-02-15T06:59:37Z +842 2005-05-30T00:32:04Z 2328 238 2005-06-01T02:21:04Z 1 2020-02-15T06:59:37Z +843 2005-05-30T00:44:24Z 2214 313 2005-05-31T00:58:24Z 2 2020-02-15T06:59:37Z +844 2005-05-30T00:58:20Z 536 429 2005-06-01T00:38:20Z 1 2020-02-15T06:59:37Z +845 2005-05-30T01:17:25Z 2001 72 2005-06-07T02:00:25Z 1 2020-02-15T06:59:37Z +846 2005-05-30T01:17:45Z 938 49 2005-06-01T00:56:45Z 2 2020-02-15T06:59:37Z +847 2005-05-30T01:18:15Z 4387 380 2005-06-06T20:20:15Z 2 2020-02-15T06:59:37Z +848 2005-05-30T01:19:53Z 1363 436 2005-06-05T23:40:53Z 1 2020-02-15T06:59:37Z +849 2005-05-30T01:23:07Z 2424 449 2005-06-07T01:50:07Z 1 2020-02-15T06:59:37Z +850 2005-05-30T01:35:12Z 2390 517 2005-05-31T01:51:12Z 1 2020-02-15T06:59:37Z +851 2005-05-30T01:35:15Z 2780 530 2005-06-06T07:27:15Z 1 2020-02-15T06:59:37Z +852 2005-05-30T01:36:57Z 1622 549 2005-06-01T22:44:57Z 1 2020-02-15T06:59:37Z +853 2005-05-30T01:43:31Z 3693 122 2005-06-01T02:05:31Z 1 2020-02-15T06:59:37Z +854 2005-05-30T01:56:11Z 921 369 2005-06-01T06:34:11Z 2 2020-02-15T06:59:37Z +855 2005-05-30T02:00:28Z 2527 406 2005-06-03T20:16:28Z 2 2020-02-15T06:59:37Z +856 2005-05-30T02:01:21Z 3969 53 2005-06-07T03:25:21Z 1 2020-02-15T06:59:37Z +857 2005-05-30T02:01:23Z 2569 204 2005-06-02T06:07:23Z 2 2020-02-15T06:59:37Z +858 2005-05-30T02:10:32Z 1258 358 2005-06-01T04:42:32Z 1 2020-02-15T06:59:37Z +859 2005-05-30T02:36:20Z 3032 79 2005-06-02T07:49:20Z 2 2020-02-15T06:59:37Z +860 2005-05-30T02:45:16Z 578 276 2005-06-08T07:28:16Z 1 2020-02-15T06:59:37Z +861 2005-05-30T02:48:32Z 3711 502 2005-06-06T05:43:32Z 1 2020-02-15T06:59:37Z +862 2005-05-30T03:09:11Z 1186 328 2005-06-03T21:27:11Z 1 2020-02-15T06:59:37Z +863 2005-05-30T03:14:59Z 3999 379 2005-06-05T04:34:59Z 2 2020-02-15T06:59:37Z +864 2005-05-30T03:27:17Z 2777 544 2005-06-06T08:28:17Z 1 2020-02-15T06:59:37Z +865 2005-05-30T03:39:44Z 3183 154 2005-06-07T08:10:44Z 2 2020-02-15T06:59:37Z +866 2005-05-30T03:43:54Z 2867 8 2005-06-08T04:28:54Z 1 2020-02-15T06:59:37Z +867 2005-05-30T03:54:43Z 3389 99 2005-06-01T22:59:43Z 1 2020-02-15T06:59:37Z +868 2005-05-30T04:19:55Z 3604 28 2005-05-31T02:28:55Z 1 2020-02-15T06:59:37Z +869 2005-05-30T04:22:06Z 3399 296 2005-06-03T09:18:06Z 2 2020-02-15T06:59:37Z +870 2005-05-30T04:25:47Z 2903 391 2005-06-06T04:32:47Z 1 2020-02-15T06:59:37Z +871 2005-05-30T05:01:30Z 4573 303 2005-06-04T06:22:30Z 2 2020-02-15T06:59:37Z +872 2005-05-30T05:03:04Z 3904 548 2005-06-06T10:35:04Z 1 2020-02-15T06:59:37Z +873 2005-05-30T05:15:20Z 4568 375 2005-06-07T00:49:20Z 2 2020-02-15T06:59:37Z +874 2005-05-30T05:36:21Z 363 52 2005-06-01T09:32:21Z 1 2020-02-15T06:59:37Z +875 2005-05-30T05:38:24Z 1428 326 2005-06-06T00:34:24Z 2 2020-02-15T06:59:37Z +876 2005-05-30T05:41:22Z 1471 339 2005-06-07T09:06:22Z 2 2020-02-15T06:59:37Z +877 2005-05-30T05:48:59Z 886 9 2005-06-02T09:30:59Z 1 2020-02-15T06:59:37Z +878 2005-05-30T05:49:13Z 4265 323 2005-06-07T04:35:13Z 1 2020-02-15T06:59:37Z +879 2005-05-30T05:49:42Z 4021 482 2005-06-05T01:45:42Z 2 2020-02-15T06:59:37Z +880 2005-05-30T06:12:33Z 1819 460 2005-06-02T04:35:33Z 2 2020-02-15T06:59:37Z +881 2005-05-30T06:15:36Z 602 242 2005-06-02T10:21:36Z 1 2020-02-15T06:59:37Z +882 2005-05-30T06:16:06Z 3841 477 2005-06-02T11:57:06Z 1 2020-02-15T06:59:37Z +883 2005-05-30T06:21:05Z 2271 399 2005-06-07T04:50:05Z 2 2020-02-15T06:59:37Z +884 2005-05-30T06:41:32Z 4079 17 2005-05-31T07:39:32Z 1 2020-02-15T06:59:37Z +885 2005-05-30T06:54:28Z 646 62 2005-06-03T07:03:28Z 2 2020-02-15T06:59:37Z +886 2005-05-30T06:54:51Z 4356 393 2005-06-01T06:04:51Z 2 2020-02-15T06:59:37Z +887 2005-05-30T07:10:00Z 2727 16 2005-06-01T06:48:00Z 2 2020-02-15T06:59:37Z +888 2005-05-30T07:13:14Z 387 128 2005-06-06T09:50:14Z 1 2020-02-15T06:59:37Z +889 2005-05-30T07:14:53Z 1299 114 2005-05-31T07:56:53Z 2 2020-02-15T06:59:37Z +890 2005-05-30T07:43:04Z 1464 349 2005-06-01T11:26:04Z 1 2020-02-15T06:59:37Z +891 2005-05-30T07:43:12Z 2611 391 2005-06-08T09:21:12Z 1 2020-02-15T06:59:37Z +892 2005-05-30T08:02:56Z 471 274 2005-06-05T12:51:56Z 1 2020-02-15T06:59:37Z +893 2005-05-30T08:06:59Z 3260 502 2005-06-07T08:23:59Z 2 2020-02-15T06:59:37Z +894 2005-05-30T08:31:31Z 1118 400 2005-06-07T12:39:31Z 1 2020-02-15T06:59:37Z +895 2005-05-30T08:50:43Z 2744 192 2005-06-05T10:58:43Z 1 2020-02-15T06:59:37Z +896 2005-05-30T09:03:52Z 2817 207 2005-06-05T07:37:52Z 2 2020-02-15T06:59:37Z +897 2005-05-30T09:10:01Z 1334 432 2005-06-08T03:43:01Z 1 2020-02-15T06:59:37Z +898 2005-05-30T09:26:19Z 3497 384 2005-06-01T10:45:19Z 2 2020-02-15T06:59:37Z +899 2005-05-30T09:29:30Z 1096 156 2005-06-06T12:39:30Z 2 2020-02-15T06:59:37Z +900 2005-05-30T09:38:41Z 3543 586 2005-06-07T11:54:41Z 1 2020-02-15T06:59:37Z +901 2005-05-30T09:40:40Z 760 259 2005-06-02T10:32:40Z 1 2020-02-15T06:59:37Z +902 2005-05-30T09:53:36Z 1514 561 2005-06-07T12:10:36Z 1 2020-02-15T06:59:37Z +903 2005-05-30T10:11:29Z 2423 197 2005-06-03T09:33:29Z 1 2020-02-15T06:59:37Z +904 2005-05-30T10:19:42Z 2466 44 2005-06-05T04:58:42Z 2 2020-02-15T06:59:37Z +905 2005-05-30T10:25:00Z 4372 50 2005-06-06T06:23:00Z 1 2020-02-15T06:59:37Z +906 2005-05-30T10:30:38Z 1862 549 2005-06-07T06:44:38Z 2 2020-02-15T06:59:37Z +907 2005-05-30T10:37:27Z 3320 506 2005-06-02T09:51:27Z 1 2020-02-15T06:59:37Z +908 2005-05-30T10:38:37Z 4427 85 2005-06-03T09:56:37Z 1 2020-02-15T06:59:37Z +909 2005-05-30T10:43:38Z 3775 486 2005-06-08T12:07:38Z 1 2020-02-15T06:59:37Z +910 2005-05-30T10:46:16Z 2601 374 2005-06-04T13:32:16Z 1 2020-02-15T06:59:37Z +911 2005-05-30T10:50:22Z 1404 366 2005-06-07T12:26:22Z 2 2020-02-15T06:59:37Z +912 2005-05-30T10:58:33Z 3200 390 2005-05-31T09:31:33Z 2 2020-02-15T06:59:37Z +913 2005-05-30T11:04:58Z 3213 369 2005-06-07T13:22:58Z 2 2020-02-15T06:59:37Z +914 2005-05-30T11:06:00Z 1393 596 2005-06-04T06:07:00Z 2 2020-02-15T06:59:37Z +915 2005-05-30T11:20:27Z 1859 115 2005-06-02T11:55:27Z 1 2020-02-15T06:59:37Z +916 2005-05-30T11:25:01Z 1290 6 2005-05-31T09:06:01Z 1 2020-02-15T06:59:37Z +917 2005-05-30T11:27:06Z 3629 385 2005-06-02T08:31:06Z 1 2020-02-15T06:59:37Z +918 2005-05-30T11:32:24Z 818 197 2005-05-31T07:55:24Z 2 2020-02-15T06:59:37Z +919 2005-05-30T11:35:06Z 4052 374 2005-06-02T13:16:06Z 2 2020-02-15T06:59:37Z +920 2005-05-30T11:44:01Z 3860 584 2005-06-02T08:19:01Z 2 2020-02-15T06:59:37Z +921 2005-05-30T11:53:09Z 1827 508 2005-06-03T10:00:09Z 2 2020-02-15T06:59:37Z +922 2005-05-30T11:55:55Z 2442 550 2005-06-08T10:12:55Z 2 2020-02-15T06:59:37Z +923 2005-05-30T11:58:50Z 1884 37 2005-06-05T09:57:50Z 1 2020-02-15T06:59:37Z +924 2005-05-30T12:10:59Z 3279 293 2005-06-04T17:28:59Z 1 2020-02-15T06:59:37Z +925 2005-05-30T12:13:52Z 3203 137 2005-06-02T14:41:52Z 2 2020-02-15T06:59:37Z +926 2005-05-30T12:15:54Z 4327 76 2005-06-01T08:53:54Z 2 2020-02-15T06:59:37Z +927 2005-05-30T12:16:40Z 1158 167 2005-05-31T16:20:40Z 2 2020-02-15T06:59:37Z +928 2005-05-30T12:27:14Z 246 79 2005-06-05T13:56:14Z 2 2020-02-15T06:59:37Z +929 2005-05-30T12:32:39Z 4296 536 2005-06-06T12:17:39Z 1 2020-02-15T06:59:37Z +930 2005-05-30T12:44:57Z 2835 141 2005-06-04T10:53:57Z 2 2020-02-15T06:59:37Z +931 2005-05-30T12:53:01Z 3384 421 2005-05-31T14:28:01Z 1 2020-02-15T06:59:37Z +932 2005-05-30T12:55:36Z 719 198 2005-05-31T10:30:36Z 2 2020-02-15T06:59:37Z +933 2005-05-30T13:08:45Z 3672 66 2005-06-01T18:56:45Z 1 2020-02-15T06:59:37Z +934 2005-05-30T13:24:46Z 3595 60 2005-06-08T16:44:46Z 2 2020-02-15T06:59:37Z +935 2005-05-30T13:29:36Z 2421 256 2005-06-02T11:08:36Z 1 2020-02-15T06:59:37Z +936 2005-05-30T13:52:49Z 901 469 2005-06-07T16:56:49Z 1 2020-02-15T06:59:37Z +937 2005-05-30T14:47:31Z 1054 304 2005-06-05T09:53:31Z 2 2020-02-15T06:59:37Z +938 2005-05-30T14:47:31Z 1521 46 2005-06-04T10:10:31Z 2 2020-02-15T06:59:37Z +939 2005-05-30T14:49:34Z 1314 367 2005-06-01T19:00:34Z 1 2020-02-15T06:59:37Z +940 2005-05-30T15:01:02Z 1278 534 2005-06-01T18:26:02Z 1 2020-02-15T06:59:37Z +941 2005-05-30T15:02:25Z 3630 562 2005-06-01T17:19:25Z 1 2020-02-15T06:59:37Z +942 2005-05-30T15:05:47Z 4279 473 2005-06-08T15:59:47Z 2 2020-02-15T06:59:37Z +943 2005-05-30T15:20:19Z 3737 57 2005-06-06T18:53:19Z 1 2020-02-15T06:59:37Z +944 2005-05-30T15:26:24Z 151 131 2005-06-07T18:09:24Z 2 2020-02-15T06:59:37Z +945 2005-05-30T15:33:17Z 1441 357 2005-06-02T15:02:17Z 2 2020-02-15T06:59:37Z +946 2005-05-30T15:35:08Z 1264 486 2005-06-08T11:38:08Z 1 2020-02-15T06:59:37Z +947 2005-05-30T15:36:57Z 4478 62 2005-06-04T18:48:57Z 1 2020-02-15T06:59:37Z +948 2005-05-30T15:44:27Z 585 245 2005-06-08T17:30:27Z 2 2020-02-15T06:59:37Z +949 2005-05-30T15:50:39Z 2202 368 2005-06-03T14:25:39Z 1 2020-02-15T06:59:37Z +950 2005-05-30T16:06:08Z 491 83 2005-06-01T11:43:08Z 1 2020-02-15T06:59:37Z +951 2005-05-30T16:10:35Z 1395 59 2005-05-31T19:01:35Z 2 2020-02-15T06:59:37Z +952 2005-05-30T16:28:07Z 4389 311 2005-06-02T16:12:07Z 2 2020-02-15T06:59:37Z +953 2005-05-30T16:34:02Z 2194 210 2005-05-31T20:34:02Z 1 2020-02-15T06:59:37Z +954 2005-05-30T16:57:29Z 1231 297 2005-06-08T13:30:29Z 2 2020-02-15T06:59:37Z +955 2005-05-30T16:59:03Z 4140 301 2005-05-31T11:58:03Z 2 2020-02-15T06:59:37Z +956 2005-05-30T17:30:28Z 647 296 2005-06-07T13:54:28Z 2 2020-02-15T06:59:37Z +957 2005-05-30T17:53:29Z 4428 440 2005-06-03T15:31:29Z 2 2020-02-15T06:59:37Z +958 2005-05-30T17:58:03Z 548 186 2005-06-01T19:17:03Z 2 2020-02-15T06:59:37Z +959 2005-05-30T18:07:00Z 3108 535 2005-06-02T14:37:00Z 2 2020-02-15T06:59:37Z +960 2005-05-30T18:13:23Z 1966 445 2005-06-04T00:12:23Z 2 2020-02-15T06:59:37Z +961 2005-05-30T18:16:44Z 3293 588 2005-06-04T23:40:44Z 2 2020-02-15T06:59:37Z +962 2005-05-30T18:45:17Z 4535 520 2005-06-05T22:47:17Z 1 2020-02-15T06:59:37Z +963 2005-05-30T18:52:53Z 1921 225 2005-06-07T16:19:53Z 2 2020-02-15T06:59:37Z +964 2005-05-30T18:53:21Z 657 287 2005-06-04T22:32:21Z 2 2020-02-15T06:59:37Z +965 2005-05-30T19:00:14Z 3363 502 2005-05-31T17:10:14Z 2 2020-02-15T06:59:37Z +966 2005-05-30T19:00:37Z 1294 496 2005-05-31T23:51:37Z 1 2020-02-15T06:59:37Z +967 2005-05-30T19:12:06Z 1954 330 2005-06-09T00:02:06Z 2 2020-02-15T06:59:37Z +968 2005-05-30T19:20:03Z 119 576 2005-05-31T18:17:03Z 2 2020-02-15T06:59:37Z +969 2005-05-30T19:23:48Z 443 551 2005-05-31T21:14:48Z 1 2020-02-15T06:59:37Z +970 2005-05-30T19:50:28Z 1520 307 2005-06-09T01:19:28Z 1 2020-02-15T06:59:37Z +971 2005-05-30T20:10:52Z 2911 561 2005-06-06T20:47:52Z 1 2020-02-15T06:59:37Z +972 2005-05-30T20:21:07Z 2 411 2005-06-06T00:36:07Z 1 2020-02-15T06:59:37Z +973 2005-05-30T20:27:45Z 1914 473 2005-06-08T22:47:45Z 2 2020-02-15T06:59:37Z +974 2005-05-30T20:28:42Z 2617 596 2005-06-08T23:45:42Z 2 2020-02-15T06:59:37Z +975 2005-05-30T21:07:15Z 3109 7 2005-06-03T01:48:15Z 2 2020-02-15T06:59:37Z +976 2005-05-30T21:11:19Z 2290 581 2005-06-06T02:16:19Z 2 2020-02-15T06:59:37Z +977 2005-05-30T21:22:26Z 2029 394 2005-06-04T22:32:26Z 2 2020-02-15T06:59:37Z +978 2005-05-30T21:30:52Z 407 154 2005-06-07T16:22:52Z 1 2020-02-15T06:59:37Z +979 2005-05-30T21:37:11Z 3917 279 2005-06-08T00:24:11Z 2 2020-02-15T06:59:37Z +980 2005-05-30T21:45:19Z 4169 273 2005-06-01T20:32:19Z 1 2020-02-15T06:59:37Z +981 2005-05-30T21:52:42Z 2913 326 2005-06-01T03:15:42Z 2 2020-02-15T06:59:37Z +982 2005-05-30T22:15:24Z 3560 524 2005-06-02T16:18:24Z 1 2020-02-15T06:59:37Z +983 2005-05-30T22:15:51Z 63 115 2005-06-02T22:56:51Z 1 2020-02-15T06:59:37Z +984 2005-05-30T22:17:17Z 2305 262 2005-06-01T20:15:17Z 2 2020-02-15T06:59:37Z +985 2005-05-30T22:18:35Z 1573 564 2005-06-04T23:36:35Z 1 2020-02-15T06:59:37Z +986 2005-05-30T22:22:52Z 4045 253 2005-06-01T02:24:52Z 1 2020-02-15T06:59:37Z +987 2005-05-30T22:59:12Z 390 11 2005-06-07T20:56:12Z 1 2020-02-15T06:59:37Z +988 2005-05-30T23:08:03Z 1364 12 2005-06-07T00:22:03Z 1 2020-02-15T06:59:37Z +989 2005-05-30T23:11:51Z 4388 83 2005-06-03T20:36:51Z 2 2020-02-15T06:59:37Z +990 2005-05-30T23:25:14Z 4171 311 2005-06-06T18:41:14Z 2 2020-02-15T06:59:37Z +991 2005-05-30T23:29:22Z 2863 593 2005-06-07T23:16:22Z 1 2020-02-15T06:59:37Z +992 2005-05-30T23:47:56Z 3572 123 2005-06-05T19:01:56Z 1 2020-02-15T06:59:37Z +993 2005-05-30T23:54:19Z 2080 513 2005-06-04T21:27:19Z 1 2020-02-15T06:59:37Z +994 2005-05-30T23:55:36Z 2798 472 2005-06-04T01:00:36Z 2 2020-02-15T06:59:37Z +995 2005-05-31T00:06:02Z 17 150 2005-06-06T02:30:02Z 2 2020-02-15T06:59:37Z +996 2005-05-31T00:06:20Z 2075 331 2005-05-31T21:29:20Z 2 2020-02-15T06:59:37Z +997 2005-05-31T00:08:25Z 4243 216 2005-06-02T00:17:25Z 2 2020-02-15T06:59:37Z +998 2005-05-31T00:16:57Z 3395 389 2005-06-01T22:41:57Z 1 2020-02-15T06:59:37Z +999 2005-05-31T00:25:10Z 4433 413 2005-06-03T06:05:10Z 2 2020-02-15T06:59:37Z +1000 2005-05-31T00:25:56Z 1774 332 2005-06-08T19:42:56Z 2 2020-02-15T06:59:37Z +1001 2005-05-31T00:46:31Z 1498 64 2005-06-06T06:14:31Z 2 2020-02-15T06:59:37Z +1002 2005-05-31T00:47:56Z 709 397 2005-06-06T19:51:56Z 1 2020-02-15T06:59:37Z +1003 2005-05-31T00:48:20Z 133 161 2005-06-02T04:53:20Z 2 2020-02-15T06:59:37Z +1004 2005-05-31T00:48:36Z 1588 565 2005-06-01T20:56:36Z 1 2020-02-15T06:59:37Z +1005 2005-05-31T00:53:25Z 4006 551 2005-06-04T01:21:25Z 2 2020-02-15T06:59:37Z +1006 2005-05-31T00:57:08Z 3461 222 2005-06-02T22:35:08Z 1 2020-02-15T06:59:37Z +1007 2005-05-31T01:02:28Z 3185 24 2005-06-07T01:36:28Z 2 2020-02-15T06:59:37Z +1008 2005-05-31T01:18:56Z 914 599 2005-06-01T01:24:56Z 2 2020-02-15T06:59:37Z +1009 2005-05-31T01:47:35Z 2523 485 2005-06-03T20:26:35Z 1 2020-02-15T06:59:37Z +1010 2005-05-31T01:57:32Z 4038 49 2005-06-01T06:50:32Z 2 2020-02-15T06:59:37Z +1011 2005-05-31T02:05:39Z 118 164 2005-06-04T21:27:39Z 2 2020-02-15T06:59:37Z +1012 2005-05-31T02:18:05Z 688 291 2005-06-03T06:47:05Z 1 2020-02-15T06:59:37Z +1013 2005-05-31T02:37:00Z 4522 384 2005-06-02T06:39:00Z 2 2020-02-15T06:59:37Z +1014 2005-05-31T02:39:16Z 766 280 2005-06-01T06:03:16Z 2 2020-02-15T06:59:37Z +1015 2005-05-31T02:44:57Z 3702 526 2005-06-07T23:01:57Z 2 2020-02-15T06:59:37Z +1016 2005-05-31T02:49:43Z 3423 204 2005-06-04T03:48:43Z 1 2020-02-15T06:59:37Z +1017 2005-05-31T02:53:36Z 1242 16 2005-06-03T05:04:36Z 1 2020-02-15T06:59:37Z +1018 2005-05-31T02:53:42Z 1930 594 2005-06-03T00:47:42Z 2 2020-02-15T06:59:37Z +1019 2005-05-31T03:05:07Z 3975 279 2005-06-03T08:34:07Z 1 2020-02-15T06:59:37Z +1020 2005-05-31T03:06:08Z 3402 138 2005-06-02T08:57:08Z 2 2020-02-15T06:59:37Z +1021 2005-05-31T03:16:15Z 2724 541 2005-06-08T06:43:15Z 2 2020-02-15T06:59:37Z +1022 2005-05-31T03:16:45Z 842 239 2005-06-08T09:04:45Z 1 2020-02-15T06:59:37Z +1023 2005-05-31T03:26:50Z 2483 227 2005-06-05T08:19:50Z 2 2020-02-15T06:59:37Z +1024 2005-05-31T03:30:19Z 2310 457 2005-06-09T05:52:19Z 2 2020-02-15T06:59:37Z +1025 2005-05-31T03:41:37Z 1618 93 2005-06-08T07:05:37Z 2 2020-02-15T06:59:37Z +1026 2005-05-31T03:45:26Z 632 107 2005-06-06T22:30:26Z 2 2020-02-15T06:59:37Z +1027 2005-05-31T03:46:19Z 2718 55 2005-06-09T03:50:19Z 1 2020-02-15T06:59:37Z +1028 2005-05-31T03:48:05Z 4479 51 2005-06-01T03:51:05Z 1 2020-02-15T06:59:37Z +1029 2005-05-31T03:52:02Z 2082 50 2005-06-06T08:10:02Z 1 2020-02-15T06:59:37Z +1030 2005-05-31T04:06:47Z 3948 267 2005-06-02T02:59:47Z 1 2020-02-15T06:59:37Z +1031 2005-05-31T04:23:01Z 917 416 2005-06-06T08:35:01Z 1 2020-02-15T06:59:37Z +1032 2005-05-31T04:28:43Z 2937 236 2005-06-02T02:00:43Z 2 2020-02-15T06:59:37Z +1033 2005-05-31T04:50:07Z 14 25 2005-06-02T01:53:07Z 1 2020-02-15T06:59:37Z +1034 2005-05-31T04:53:40Z 4117 293 2005-06-09T08:25:40Z 2 2020-02-15T06:59:37Z +1035 2005-05-31T05:01:09Z 949 362 2005-06-02T03:59:09Z 1 2020-02-15T06:59:37Z +1036 2005-05-31T05:21:10Z 2164 438 2005-06-04T04:19:10Z 1 2020-02-15T06:59:37Z +1037 2005-05-31T05:22:25Z 810 569 2005-06-09T04:52:25Z 1 2020-02-15T06:59:37Z +1038 2005-05-31T05:23:47Z 1253 385 2005-06-02T03:57:47Z 2 2020-02-15T06:59:37Z +1039 2005-05-31T05:32:29Z 2479 124 2005-06-01T06:04:29Z 2 2020-02-15T06:59:37Z +1040 2005-05-31T05:35:16Z 2546 270 2005-06-09T04:14:16Z 1 2020-02-15T06:59:37Z +1041 2005-05-31T05:46:23Z 4432 272 2005-06-06T09:50:23Z 2 2020-02-15T06:59:37Z +1042 2005-05-31T05:53:00Z 3155 506 2005-06-01T05:24:00Z 1 2020-02-15T06:59:37Z +1043 2005-05-31T06:11:40Z 2322 412 2005-06-08T09:15:40Z 2 2020-02-15T06:59:37Z +1044 2005-05-31T06:24:44Z 2574 70 2005-06-03T04:51:44Z 1 2020-02-15T06:59:37Z +1045 2005-05-31T06:29:01Z 3470 594 2005-06-09T04:31:01Z 1 2020-02-15T06:59:37Z +1046 2005-05-31T06:42:30Z 468 179 2005-06-03T04:33:30Z 2 2020-02-15T06:59:37Z +1047 2005-05-31T06:45:57Z 1366 72 2005-06-04T09:49:57Z 2 2020-02-15T06:59:37Z +1048 2005-05-31T06:49:53Z 2811 55 2005-06-02T11:33:53Z 1 2020-02-15T06:59:37Z +1049 2005-05-31T06:57:04Z 3913 312 2005-06-02T11:32:04Z 2 2020-02-15T06:59:37Z +1050 2005-05-31T07:01:27Z 726 303 2005-06-03T07:50:27Z 2 2020-02-15T06:59:37Z +1051 2005-05-31T07:02:09Z 1025 246 2005-06-03T01:32:09Z 1 2020-02-15T06:59:37Z +1052 2005-05-31T07:07:03Z 2157 156 2005-06-05T09:38:03Z 1 2020-02-15T06:59:37Z +1053 2005-05-31T07:12:44Z 3734 196 2005-06-04T12:33:44Z 1 2020-02-15T06:59:37Z +1054 2005-05-31T07:33:25Z 1575 126 2005-06-02T01:40:25Z 2 2020-02-15T06:59:37Z +1055 2005-05-31T07:47:18Z 1639 108 2005-06-03T01:57:18Z 1 2020-02-15T06:59:37Z +1056 2005-05-31T07:48:07Z 1591 519 2005-06-05T08:51:07Z 2 2020-02-15T06:59:37Z +1057 2005-05-31T07:58:06Z 497 124 2005-06-06T03:21:06Z 1 2020-02-15T06:59:37Z +1058 2005-05-31T08:04:17Z 40 116 2005-06-03T11:12:17Z 2 2020-02-15T06:59:37Z +1059 2005-05-31T08:20:43Z 3041 241 2005-06-04T09:05:43Z 2 2020-02-15T06:59:37Z +1060 2005-05-31T08:21:43Z 2676 570 2005-06-09T04:02:43Z 2 2020-02-15T06:59:37Z +1061 2005-05-31T08:27:58Z 965 109 2005-06-07T02:34:58Z 1 2020-02-15T06:59:37Z +1062 2005-05-31T08:38:20Z 2223 176 2005-06-09T08:23:20Z 2 2020-02-15T06:59:37Z +1063 2005-05-31T08:44:29Z 2484 7 2005-06-09T08:00:29Z 1 2020-02-15T06:59:37Z +1064 2005-05-31T08:50:07Z 2373 460 2005-06-02T14:47:07Z 2 2020-02-15T06:59:37Z +1065 2005-05-31T08:54:56Z 3379 316 2005-06-08T09:21:56Z 1 2020-02-15T06:59:37Z +1066 2005-05-31T09:07:33Z 2383 541 2005-06-09T05:34:33Z 2 2020-02-15T06:59:37Z +1067 2005-05-31T09:12:13Z 2345 32 2005-06-01T06:15:13Z 1 2020-02-15T06:59:37Z +1068 2005-05-31T09:32:15Z 150 443 2005-06-01T11:20:15Z 1 2020-02-15T06:59:37Z +1069 2005-05-31T09:32:31Z 3057 251 2005-06-08T10:19:31Z 2 2020-02-15T06:59:37Z +1070 2005-05-31T09:39:56Z 3170 228 2005-06-05T10:23:56Z 1 2020-02-15T06:59:37Z +1071 2005-05-31T09:48:56Z 469 174 2005-06-02T03:52:56Z 2 2020-02-15T06:59:37Z +1072 2005-05-31T09:52:50Z 2557 272 2005-06-05T05:39:50Z 1 2020-02-15T06:59:37Z +1073 2005-05-31T09:55:04Z 522 146 2005-06-07T03:55:04Z 1 2020-02-15T06:59:37Z +1074 2005-05-31T10:04:42Z 2508 503 2005-06-02T15:27:42Z 2 2020-02-15T06:59:37Z +1075 2005-05-31T10:13:34Z 2279 9 2005-06-09T08:11:34Z 1 2020-02-15T06:59:37Z +1076 2005-05-31T10:14:31Z 2551 214 2005-06-05T10:13:31Z 2 2020-02-15T06:59:37Z +1077 2005-05-31T10:22:54Z 1986 24 2005-06-02T12:21:54Z 1 2020-02-15T06:59:37Z +1078 2005-05-31T10:28:33Z 3682 230 2005-06-03T14:45:33Z 2 2020-02-15T06:59:37Z +1079 2005-05-31T10:48:17Z 268 312 2005-06-08T12:30:17Z 1 2020-02-15T06:59:37Z +1080 2005-05-31T10:55:26Z 3491 215 2005-06-03T13:13:26Z 2 2020-02-15T06:59:37Z +1081 2005-05-31T10:56:32Z 4524 404 2005-06-06T11:31:32Z 1 2020-02-15T06:59:37Z +1082 2005-05-31T11:02:01Z 4510 239 2005-06-05T08:43:01Z 1 2020-02-15T06:59:37Z +1083 2005-05-31T11:04:48Z 2393 556 2005-06-05T13:32:48Z 1 2020-02-15T06:59:37Z +1084 2005-05-31T11:10:17Z 4577 12 2005-06-01T11:15:17Z 1 2020-02-15T06:59:37Z +1085 2005-05-31T11:15:43Z 301 5 2005-06-07T12:02:43Z 1 2020-02-15T06:59:37Z +1086 2005-05-31T11:17:37Z 2909 549 2005-06-06T13:58:37Z 2 2020-02-15T06:59:37Z +1087 2005-05-31T11:18:08Z 431 169 2005-06-04T08:33:08Z 1 2020-02-15T06:59:37Z +1088 2005-05-31T11:35:13Z 3988 356 2005-06-06T16:01:13Z 2 2020-02-15T06:59:37Z +1089 2005-05-31T11:38:29Z 3784 367 2005-06-02T08:06:29Z 1 2020-02-15T06:59:37Z +1090 2005-05-31T12:03:44Z 3329 23 2005-06-02T15:54:44Z 2 2020-02-15T06:59:37Z +1091 2005-05-31T12:11:04Z 3853 251 2005-06-04T11:42:04Z 1 2020-02-15T06:59:37Z +1092 2005-05-31T12:15:57Z 4412 278 2005-06-03T15:39:57Z 2 2020-02-15T06:59:37Z +1093 2005-05-31T12:32:26Z 2189 214 2005-06-03T07:51:26Z 2 2020-02-15T06:59:37Z +1094 2005-05-31T13:03:49Z 3810 547 2005-06-05T14:30:49Z 2 2020-02-15T06:59:37Z +1095 2005-05-31T13:15:41Z 4546 252 2005-06-05T12:10:41Z 1 2020-02-15T06:59:37Z +1096 2005-05-31T13:30:49Z 1066 271 2005-06-09T13:53:49Z 1 2020-02-15T06:59:37Z +1097 2005-05-31T13:38:42Z 2285 491 2005-06-01T13:54:42Z 2 2020-02-15T06:59:37Z +1098 2005-05-31T13:51:48Z 1050 425 2005-06-09T18:42:48Z 2 2020-02-15T06:59:37Z +1099 2005-05-31T13:54:48Z 924 269 2005-06-05T13:04:48Z 2 2020-02-15T06:59:37Z +1100 2005-05-31T14:03:21Z 316 497 2005-06-06T16:08:21Z 1 2020-02-15T06:59:37Z +1101 2005-05-31T14:13:59Z 1174 260 2005-06-07T15:49:59Z 1 2020-02-15T06:59:37Z +1102 2005-05-31T14:20:29Z 2052 115 2005-06-04T17:38:29Z 2 2020-02-15T06:59:37Z +1103 2005-05-31T14:24:18Z 3154 353 2005-06-09T10:27:18Z 1 2020-02-15T06:59:37Z +1104 2005-05-31T14:30:01Z 1619 466 2005-06-05T12:07:01Z 1 2020-02-15T06:59:37Z +1105 2005-05-31T14:33:56Z 1708 26 2005-06-07T11:30:56Z 1 2020-02-15T06:59:37Z +1106 2005-05-31T14:36:52Z 4185 109 2005-06-01T14:33:52Z 2 2020-02-15T06:59:37Z +1107 2005-05-31T15:04:05Z 3449 53 2005-06-07T16:42:05Z 2 2020-02-15T06:59:37Z +1108 2005-05-31T15:05:12Z 2562 254 2005-06-09T19:48:12Z 2 2020-02-15T06:59:37Z +1109 2005-05-31T15:12:15Z 2031 481 2005-06-09T16:21:15Z 1 2020-02-15T06:59:37Z +1110 2005-05-31T15:22:51Z 2085 355 2005-06-07T14:32:51Z 1 2020-02-15T06:59:37Z +1111 2005-05-31T15:24:19Z 1137 300 2005-06-08T21:18:19Z 1 2020-02-15T06:59:37Z +1112 2005-05-31T15:51:39Z 2453 214 2005-06-03T14:04:39Z 1 2020-02-15T06:59:37Z +1113 2005-05-31T15:58:44Z 2078 451 2005-06-05T18:05:44Z 2 2020-02-15T06:59:37Z +1114 2005-05-31T16:00:33Z 2287 117 2005-06-01T19:05:33Z 1 2020-02-15T06:59:37Z +1115 2005-05-31T16:07:09Z 2140 109 2005-06-04T18:51:09Z 1 2020-02-15T06:59:37Z +1116 2005-05-31T16:10:46Z 1356 256 2005-06-01T20:27:46Z 2 2020-02-15T06:59:37Z +1117 2005-05-31T16:15:31Z 4125 189 2005-06-04T17:20:31Z 1 2020-02-15T06:59:37Z +1118 2005-05-31T16:23:02Z 213 510 2005-06-03T20:00:02Z 1 2020-02-15T06:59:37Z +1119 2005-05-31T16:34:27Z 4401 469 2005-06-02T10:54:27Z 1 2020-02-15T06:59:37Z +1120 2005-05-31T16:37:14Z 2897 361 2005-06-04T12:53:14Z 1 2020-02-15T06:59:37Z +1121 2005-05-31T16:37:36Z 1691 74 2005-06-06T21:02:36Z 1 2020-02-15T06:59:37Z +1122 2005-05-31T16:39:33Z 1392 180 2005-06-04T17:25:33Z 1 2020-02-15T06:59:37Z +1123 2005-05-31T16:48:43Z 142 448 2005-06-02T19:17:43Z 2 2020-02-15T06:59:37Z +1124 2005-05-31T16:49:34Z 4560 134 2005-06-04T19:32:34Z 2 2020-02-15T06:59:37Z +1125 2005-05-31T17:23:44Z 1172 234 2005-06-01T15:02:44Z 1 2020-02-15T06:59:37Z +1126 2005-05-31T17:27:45Z 2765 431 2005-06-04T20:06:45Z 2 2020-02-15T06:59:37Z +1127 2005-05-31T17:45:49Z 2412 387 2005-06-08T22:41:49Z 2 2020-02-15T06:59:37Z +1128 2005-05-31T17:49:26Z 1496 311 2005-06-05T19:51:26Z 2 2020-02-15T06:59:37Z +1129 2005-05-31T18:00:48Z 386 486 2005-06-04T23:05:48Z 1 2020-02-15T06:59:37Z +1130 2005-05-31T18:13:57Z 3186 124 2005-06-06T22:50:57Z 2 2020-02-15T06:59:37Z +1131 2005-05-31T18:44:19Z 2654 128 2005-06-01T20:13:19Z 1 2020-02-15T06:59:37Z +1132 2005-05-31T18:44:53Z 1763 198 2005-06-07T22:02:53Z 2 2020-02-15T06:59:37Z +1133 2005-05-31T19:12:21Z 4271 73 2005-06-02T20:12:21Z 1 2020-02-15T06:59:37Z +1134 2005-05-31T19:14:15Z 143 191 2005-06-02T17:13:15Z 2 2020-02-15T06:59:37Z +1135 2005-05-31T19:15:11Z 3118 122 2005-06-01T14:44:11Z 2 2020-02-15T06:59:37Z +1136 2005-05-31T19:19:36Z 3963 50 2005-06-09T16:04:36Z 2 2020-02-15T06:59:37Z +1137 2005-05-31T19:20:14Z 3259 351 2005-06-07T16:10:14Z 1 2020-02-15T06:59:37Z +1138 2005-05-31T19:30:27Z 3944 438 2005-06-05T21:42:27Z 1 2020-02-15T06:59:37Z +1139 2005-05-31T19:34:52Z 666 562 2005-06-06T17:40:52Z 1 2020-02-15T06:59:37Z +1140 2005-05-31T19:36:30Z 3731 10 2005-06-07T18:33:30Z 2 2020-02-15T06:59:37Z +1141 2005-05-31T19:42:02Z 4128 217 2005-06-07T00:59:02Z 2 2020-02-15T06:59:37Z +1142 2005-05-31T19:46:38Z 3998 5 2005-06-05T14:03:38Z 1 2020-02-15T06:59:37Z +1143 2005-05-31T19:53:03Z 2632 209 2005-06-06T20:56:03Z 2 2020-02-15T06:59:37Z +1144 2005-05-31T20:04:10Z 2450 207 2005-06-09T16:34:10Z 1 2020-02-15T06:59:37Z +1145 2005-05-31T20:13:45Z 1133 284 2005-06-08T02:10:45Z 1 2020-02-15T06:59:37Z +1146 2005-05-31T20:34:45Z 3134 250 2005-06-03T18:12:45Z 2 2020-02-15T06:59:37Z +1147 2005-05-31T20:37:52Z 622 259 2005-06-06T19:23:52Z 2 2020-02-15T06:59:37Z +1148 2005-05-31T20:38:40Z 3307 235 2005-06-02T18:35:40Z 2 2020-02-15T06:59:37Z +1149 2005-05-31T21:03:17Z 352 326 2005-06-08T19:58:17Z 2 2020-02-15T06:59:37Z +1150 2005-05-31T21:20:09Z 1632 136 2005-06-03T19:15:09Z 2 2020-02-15T06:59:37Z +1151 2005-05-31T21:29:00Z 1281 581 2005-06-03T23:24:00Z 1 2020-02-15T06:59:37Z +1152 2005-05-31T21:32:17Z 210 191 2005-06-04T21:07:17Z 2 2020-02-15T06:59:37Z +1153 2005-05-31T21:36:44Z 2725 506 2005-06-10T01:26:44Z 2 2020-02-15T06:59:37Z +1154 2005-05-31T21:42:09Z 2732 59 2005-06-08T16:40:09Z 1 2020-02-15T06:59:37Z +1155 2005-05-31T22:17:11Z 2048 251 2005-06-04T20:27:11Z 2 2020-02-15T06:59:37Z +1156 2005-05-31T22:37:34Z 460 106 2005-06-01T23:02:34Z 2 2020-02-15T06:59:37Z +1157 2005-05-31T22:47:45Z 1449 61 2005-06-02T18:01:45Z 1 2020-02-15T06:59:37Z +1158 2005-06-14T22:53:33Z 1632 416 2005-06-18T21:37:33Z 2 2020-02-15T06:59:37Z +1159 2005-06-14T22:55:13Z 4395 516 2005-06-17T02:11:13Z 1 2020-02-15T06:59:37Z +1160 2005-06-14T23:00:34Z 2795 239 2005-06-18T01:58:34Z 2 2020-02-15T06:59:37Z +1161 2005-06-14T23:07:08Z 1690 285 2005-06-21T17:12:08Z 1 2020-02-15T06:59:37Z +1162 2005-06-14T23:09:38Z 987 310 2005-06-23T22:00:38Z 1 2020-02-15T06:59:37Z +1163 2005-06-14T23:12:46Z 4209 592 2005-06-23T21:53:46Z 1 2020-02-15T06:59:37Z +1164 2005-06-14T23:16:26Z 3691 49 2005-06-16T21:00:26Z 1 2020-02-15T06:59:37Z +1165 2005-06-14T23:16:27Z 2855 264 2005-06-20T02:40:27Z 2 2020-02-15T06:59:37Z +1166 2005-06-14T23:17:03Z 2508 46 2005-06-15T20:43:03Z 1 2020-02-15T06:59:37Z +1167 2005-06-14T23:25:58Z 4021 323 2005-06-18T05:18:58Z 2 2020-02-15T06:59:37Z +1168 2005-06-14T23:35:09Z 4368 481 2005-06-19T03:20:09Z 1 2020-02-15T06:59:37Z +1169 2005-06-14T23:42:56Z 1062 139 2005-06-16T04:02:56Z 2 2020-02-15T06:59:37Z +1170 2005-06-14T23:47:35Z 2444 595 2005-06-17T05:28:35Z 2 2020-02-15T06:59:37Z +1171 2005-06-14T23:50:11Z 4082 284 2005-06-17T21:44:11Z 2 2020-02-15T06:59:37Z +1172 2005-06-14T23:54:34Z 2685 306 2005-06-16T02:26:34Z 1 2020-02-15T06:59:37Z +1173 2005-06-14T23:54:46Z 1050 191 2005-06-19T23:26:46Z 2 2020-02-15T06:59:37Z +1174 2005-06-15T00:12:51Z 2653 95 2005-06-21T02:10:51Z 2 2020-02-15T06:59:37Z +1175 2005-06-15T00:15:15Z 3255 197 2005-06-20T19:23:15Z 2 2020-02-15T06:59:37Z +1176 2005-06-15T00:28:37Z 2715 512 2005-06-21T21:42:37Z 1 2020-02-15T06:59:37Z +1177 2005-06-15T00:33:04Z 1897 210 2005-06-16T03:47:04Z 2 2020-02-15T06:59:37Z +1178 2005-06-15T00:36:40Z 2553 279 2005-06-21T00:27:40Z 2 2020-02-15T06:59:37Z +1179 2005-06-15T00:36:50Z 816 119 2005-06-22T22:09:50Z 1 2020-02-15T06:59:37Z +1180 2005-06-15T00:39:01Z 3119 432 2005-06-21T22:44:01Z 2 2020-02-15T06:59:37Z +1181 2005-06-15T00:42:17Z 2973 546 2005-06-19T03:36:17Z 2 2020-02-15T06:59:37Z +1182 2005-06-15T00:45:21Z 1061 196 2005-06-22T03:52:21Z 1 2020-02-15T06:59:37Z +1183 2005-06-15T00:49:19Z 706 329 2005-06-20T04:33:19Z 1 2020-02-15T06:59:37Z +1184 2005-06-15T00:49:36Z 473 295 2005-06-22T23:39:36Z 2 2020-02-15T06:59:37Z +1185 2005-06-15T00:54:12Z 2785 1 2005-06-23T02:42:12Z 2 2020-02-15T06:59:37Z +1186 2005-06-15T00:56:45Z 1556 368 2005-06-16T02:23:45Z 1 2020-02-15T06:59:37Z +1187 2005-06-15T00:58:50Z 1108 334 2005-06-23T02:19:50Z 1 2020-02-15T06:59:37Z +1188 2005-06-15T01:04:07Z 246 173 2005-06-19T03:48:07Z 1 2020-02-15T06:59:37Z +1189 2005-06-15T01:04:22Z 142 244 2005-06-24T06:48:22Z 1 2020-02-15T06:59:37Z +1190 2005-06-15T01:05:32Z 2572 370 2005-06-23T02:34:32Z 2 2020-02-15T06:59:37Z +1191 2005-06-15T01:10:35Z 2221 291 2005-06-17T20:36:35Z 2 2020-02-15T06:59:37Z +1192 2005-06-15T01:18:39Z 4134 186 2005-06-19T22:46:39Z 1 2020-02-15T06:59:37Z +1193 2005-06-15T01:24:20Z 4504 561 2005-06-21T02:29:20Z 2 2020-02-15T06:59:37Z +1194 2005-06-15T01:25:08Z 3774 402 2005-06-21T01:16:08Z 2 2020-02-15T06:59:37Z +1195 2005-06-15T01:37:38Z 2272 84 2005-06-17T21:50:38Z 1 2020-02-15T06:59:37Z +1196 2005-06-15T01:38:31Z 994 52 2005-06-18T06:55:31Z 1 2020-02-15T06:59:37Z +1197 2005-06-15T01:42:46Z 3812 349 2005-06-20T00:22:46Z 1 2020-02-15T06:59:37Z +1198 2005-06-15T01:48:58Z 1138 491 2005-06-20T01:07:58Z 2 2020-02-15T06:59:37Z +1199 2005-06-15T01:58:50Z 253 238 2005-06-16T20:30:50Z 2 2020-02-15T06:59:37Z +1200 2005-06-15T01:59:51Z 3329 516 2005-06-21T21:33:51Z 1 2020-02-15T06:59:37Z +1201 2005-06-15T02:06:28Z 2679 209 2005-06-16T21:38:28Z 2 2020-02-15T06:59:37Z +1202 2005-06-15T02:08:04Z 2821 451 2005-06-16T21:56:04Z 1 2020-02-15T06:59:37Z +1203 2005-06-15T02:09:02Z 2223 452 2005-06-21T00:04:02Z 1 2020-02-15T06:59:37Z +1204 2005-06-15T02:21:46Z 2450 249 2005-06-20T07:14:46Z 2 2020-02-15T06:59:37Z +1205 2005-06-15T02:25:56Z 470 340 2005-06-22T23:19:56Z 1 2020-02-15T06:59:37Z +1206 2005-06-15T02:27:07Z 1097 264 2005-06-18T22:46:07Z 2 2020-02-15T06:59:37Z +1207 2005-06-15T02:27:08Z 2277 430 2005-06-19T08:18:08Z 2 2020-02-15T06:59:37Z +1208 2005-06-15T02:30:03Z 750 376 2005-06-18T00:04:03Z 1 2020-02-15T06:59:37Z +1209 2005-06-15T02:31:12Z 1494 146 2005-06-21T07:39:12Z 1 2020-02-15T06:59:37Z +1210 2005-06-15T02:57:51Z 7 345 2005-06-20T01:41:51Z 2 2020-02-15T06:59:37Z +1211 2005-06-15T03:01:20Z 3360 122 2005-06-18T07:52:20Z 2 2020-02-15T06:59:37Z +1212 2005-06-15T03:03:33Z 3611 371 2005-06-17T06:31:33Z 1 2020-02-15T06:59:37Z +1213 2005-06-15T03:14:05Z 3191 94 2005-06-15T21:41:05Z 2 2020-02-15T06:59:37Z +1214 2005-06-15T03:18:40Z 4482 46 2005-06-20T07:32:40Z 1 2020-02-15T06:59:37Z +1215 2005-06-15T03:21:00Z 242 102 2005-06-19T03:39:00Z 1 2020-02-15T06:59:37Z +1216 2005-06-15T03:23:48Z 3973 100 2005-06-18T03:35:48Z 1 2020-02-15T06:59:37Z +1217 2005-06-15T03:24:14Z 600 203 2005-06-18T22:37:14Z 2 2020-02-15T06:59:37Z +1218 2005-06-15T03:24:44Z 239 371 2005-06-21T22:45:44Z 2 2020-02-15T06:59:37Z +1219 2005-06-15T03:25:59Z 3005 330 2005-06-20T00:37:59Z 1 2020-02-15T06:59:37Z +1220 2005-06-15T03:26:15Z 1621 290 2005-06-23T08:17:15Z 1 2020-02-15T06:59:37Z +1221 2005-06-15T03:35:16Z 2124 403 2005-06-18T03:11:16Z 1 2020-02-15T06:59:37Z +1222 2005-06-15T03:38:49Z 2799 168 2005-06-17T22:30:49Z 1 2020-02-15T06:59:37Z +1223 2005-06-15T03:38:53Z 1299 50 2005-06-20T01:00:53Z 2 2020-02-15T06:59:37Z +1224 2005-06-15T03:44:25Z 1572 369 2005-06-17T03:49:25Z 2 2020-02-15T06:59:37Z +1225 2005-06-15T03:45:35Z 1929 434 2005-06-19T02:03:35Z 1 2020-02-15T06:59:37Z +1226 2005-06-15T03:46:10Z 2290 409 2005-06-23T02:00:10Z 1 2020-02-15T06:59:37Z +1227 2005-06-15T03:50:03Z 654 428 2005-06-21T23:48:03Z 2 2020-02-15T06:59:37Z +1228 2005-06-15T03:50:36Z 4473 398 2005-06-17T22:41:36Z 1 2020-02-15T06:59:37Z +1229 2005-06-15T03:53:13Z 2140 468 2005-06-18T04:09:13Z 1 2020-02-15T06:59:37Z +1230 2005-06-15T04:04:09Z 2324 447 2005-06-16T02:21:09Z 1 2020-02-15T06:59:37Z +1231 2005-06-15T04:04:41Z 3003 302 2005-06-20T23:52:41Z 2 2020-02-15T06:59:37Z +1232 2005-06-15T04:18:10Z 2743 391 2005-06-17T06:02:10Z 2 2020-02-15T06:59:37Z +1233 2005-06-15T04:18:37Z 4214 550 2005-06-22T03:36:37Z 1 2020-02-15T06:59:37Z +1234 2005-06-15T04:21:52Z 709 529 2005-06-22T03:25:52Z 1 2020-02-15T06:59:37Z +1235 2005-06-15T04:31:28Z 1000 255 2005-06-22T10:08:28Z 1 2020-02-15T06:59:37Z +1236 2005-06-15T04:34:27Z 3182 66 2005-06-18T08:15:27Z 1 2020-02-15T06:59:37Z +1237 2005-06-15T04:44:10Z 3249 49 2005-06-23T07:00:10Z 2 2020-02-15T06:59:37Z +1238 2005-06-15T04:49:08Z 3534 205 2005-06-20T00:06:08Z 1 2020-02-15T06:59:37Z +1239 2005-06-15T04:53:01Z 3731 444 2005-06-16T07:03:01Z 1 2020-02-15T06:59:37Z +1240 2005-06-15T04:58:07Z 3841 28 2005-06-17T23:56:07Z 1 2020-02-15T06:59:37Z +1241 2005-06-15T04:59:43Z 4377 62 2005-06-24T03:32:43Z 2 2020-02-15T06:59:37Z +1242 2005-06-15T05:05:07Z 821 141 2005-06-22T04:57:07Z 1 2020-02-15T06:59:37Z +1243 2005-06-15T05:07:32Z 2629 107 2005-06-21T08:17:32Z 2 2020-02-15T06:59:37Z +1244 2005-06-15T05:08:40Z 1026 515 2005-06-20T10:41:40Z 1 2020-02-15T06:59:37Z +1245 2005-06-15T05:09:01Z 1314 234 2005-06-22T06:55:01Z 2 2020-02-15T06:59:37Z +1246 2005-06-15T05:11:19Z 431 357 2005-06-21T02:21:19Z 1 2020-02-15T06:59:37Z +1247 2005-06-15T05:16:40Z 4049 287 2005-06-23T11:01:40Z 1 2020-02-15T06:59:37Z +1248 2005-06-15T05:33:52Z 3878 544 2005-06-19T06:56:52Z 2 2020-02-15T06:59:37Z +1249 2005-06-15T05:38:09Z 2120 403 2005-06-22T10:29:09Z 1 2020-02-15T06:59:37Z +1250 2005-06-15T05:55:40Z 4360 38 2005-06-23T03:11:40Z 2 2020-02-15T06:59:37Z +1251 2005-06-15T05:58:55Z 3307 442 2005-06-23T02:45:55Z 2 2020-02-15T06:59:37Z +1252 2005-06-15T06:05:18Z 1147 89 2005-06-24T07:40:18Z 1 2020-02-15T06:59:37Z +1253 2005-06-15T06:06:33Z 3242 498 2005-06-21T04:13:33Z 2 2020-02-15T06:59:37Z +1254 2005-06-15T06:11:16Z 3986 571 2005-06-21T06:40:16Z 2 2020-02-15T06:59:37Z +1255 2005-06-15T06:13:45Z 1433 526 2005-06-16T03:59:45Z 2 2020-02-15T06:59:37Z +1256 2005-06-15T06:13:57Z 1437 470 2005-06-16T06:54:57Z 2 2020-02-15T06:59:37Z +1257 2005-06-15T06:15:36Z 1938 267 2005-06-21T01:04:36Z 2 2020-02-15T06:59:37Z +1258 2005-06-15T06:21:30Z 4530 320 2005-06-18T05:43:30Z 2 2020-02-15T06:59:37Z +1259 2005-06-15T06:37:55Z 4460 570 2005-06-23T04:02:55Z 2 2020-02-15T06:59:37Z +1260 2005-06-15T06:42:25Z 330 586 2005-06-16T10:44:25Z 2 2020-02-15T06:59:37Z +1261 2005-06-15T06:52:57Z 2447 95 2005-06-21T01:47:57Z 2 2020-02-15T06:59:37Z +1262 2005-06-15T06:54:53Z 4495 236 2005-06-22T08:09:53Z 2 2020-02-15T06:59:37Z +1263 2005-06-15T06:56:39Z 4144 540 2005-06-16T11:08:39Z 1 2020-02-15T06:59:37Z +1264 2005-06-15T06:59:39Z 4176 439 2005-06-18T08:10:39Z 2 2020-02-15T06:59:37Z +1265 2005-06-15T07:00:50Z 982 163 2005-06-19T12:27:50Z 1 2020-02-15T06:59:37Z +1266 2005-06-15T07:11:39Z 2230 96 2005-06-21T02:59:39Z 2 2020-02-15T06:59:37Z +1267 2005-06-15T07:21:21Z 4246 509 2005-06-17T08:12:21Z 2 2020-02-15T06:59:37Z +1268 2005-06-15T07:29:30Z 3641 142 2005-06-23T12:36:30Z 1 2020-02-15T06:59:37Z +1269 2005-06-15T07:29:59Z 108 59 2005-06-16T13:26:59Z 2 2020-02-15T06:59:37Z +1270 2005-06-15T07:30:22Z 62 395 2005-06-18T11:31:22Z 2 2020-02-15T06:59:37Z +1271 2005-06-15T07:32:24Z 379 560 2005-06-21T05:12:24Z 1 2020-02-15T06:59:37Z +1272 2005-06-15T07:42:58Z 3128 135 2005-06-18T12:00:58Z 1 2020-02-15T06:59:37Z +1273 2005-06-15T07:52:35Z 361 530 2005-06-21T04:55:35Z 1 2020-02-15T06:59:37Z +1274 2005-06-15T07:52:52Z 2765 430 2005-06-20T10:01:52Z 1 2020-02-15T06:59:37Z +1275 2005-06-15T07:55:43Z 950 214 2005-06-20T06:30:43Z 1 2020-02-15T06:59:37Z +1276 2005-06-15T08:00:13Z 1508 388 2005-06-24T02:55:13Z 2 2020-02-15T06:59:37Z +1277 2005-06-15T08:01:29Z 76 464 2005-06-22T07:16:29Z 2 2020-02-15T06:59:37Z +1278 2005-06-15T08:09:12Z 4471 191 2005-06-17T04:05:12Z 2 2020-02-15T06:59:37Z +1279 2005-06-15T08:13:57Z 698 183 2005-06-18T09:36:57Z 2 2020-02-15T06:59:37Z +1280 2005-06-15T08:16:06Z 2597 266 2005-06-21T04:10:06Z 2 2020-02-15T06:59:37Z +1281 2005-06-15T08:21:39Z 2963 511 2005-06-17T11:03:39Z 1 2020-02-15T06:59:37Z +1282 2005-06-15T08:25:33Z 186 539 2005-06-21T04:02:33Z 1 2020-02-15T06:59:37Z +1283 2005-06-15T08:27:30Z 3177 470 2005-06-16T09:46:30Z 2 2020-02-15T06:59:37Z +1284 2005-06-15T08:27:33Z 1387 463 2005-06-17T03:58:33Z 1 2020-02-15T06:59:37Z +1285 2005-06-15T08:33:06Z 1054 254 2005-06-19T07:36:06Z 1 2020-02-15T06:59:37Z +1286 2005-06-15T08:41:13Z 774 179 2005-06-23T13:13:13Z 2 2020-02-15T06:59:37Z +1287 2005-06-15T08:41:38Z 4204 104 2005-06-22T14:02:38Z 1 2020-02-15T06:59:37Z +1288 2005-06-15T08:41:52Z 830 456 2005-06-19T05:30:52Z 2 2020-02-15T06:59:37Z +1289 2005-06-15T08:44:09Z 3154 522 2005-06-21T06:04:09Z 1 2020-02-15T06:59:37Z +1290 2005-06-15T08:52:44Z 1921 540 2005-06-24T13:36:44Z 2 2020-02-15T06:59:37Z +1291 2005-06-15T08:55:01Z 3090 176 2005-06-24T04:22:01Z 1 2020-02-15T06:59:37Z +1292 2005-06-15T09:03:52Z 4535 178 2005-06-21T07:53:52Z 1 2020-02-15T06:59:37Z +1293 2005-06-15T09:06:24Z 2882 127 2005-06-18T06:58:24Z 1 2020-02-15T06:59:37Z +1294 2005-06-15T09:09:27Z 339 327 2005-06-19T04:43:27Z 1 2020-02-15T06:59:37Z +1295 2005-06-15T09:17:20Z 2897 449 2005-06-18T10:14:20Z 2 2020-02-15T06:59:37Z +1296 2005-06-15T09:23:59Z 1760 200 2005-06-19T03:44:59Z 2 2020-02-15T06:59:37Z +1297 2005-06-15T09:31:28Z 1075 4 2005-06-19T04:33:28Z 1 2020-02-15T06:59:37Z +1298 2005-06-15T09:32:53Z 4163 334 2005-06-16T12:40:53Z 2 2020-02-15T06:59:37Z +1299 2005-06-15T09:34:50Z 1584 91 2005-06-21T12:07:50Z 1 2020-02-15T06:59:37Z +1300 2005-06-15T09:36:19Z 2524 186 2005-06-17T13:54:19Z 2 2020-02-15T06:59:37Z +1301 2005-06-15T09:46:33Z 1484 33 2005-06-24T08:56:33Z 2 2020-02-15T06:59:37Z +1302 2005-06-15T09:48:37Z 324 285 2005-06-22T06:18:37Z 1 2020-02-15T06:59:37Z +1303 2005-06-15T09:55:57Z 2001 365 2005-06-20T14:26:57Z 2 2020-02-15T06:59:37Z +1304 2005-06-15T09:56:02Z 1304 242 2005-06-24T07:00:02Z 1 2020-02-15T06:59:37Z +1305 2005-06-15T09:59:16Z 187 8 2005-06-19T09:48:16Z 2 2020-02-15T06:59:37Z +1306 2005-06-15T09:59:24Z 2132 524 2005-06-19T09:37:24Z 2 2020-02-15T06:59:37Z +1307 2005-06-15T10:06:15Z 368 507 2005-06-20T04:50:15Z 2 2020-02-15T06:59:37Z +1308 2005-06-15T10:07:48Z 220 236 2005-06-24T15:24:48Z 1 2020-02-15T06:59:37Z +1309 2005-06-15T10:10:49Z 2356 200 2005-06-16T12:44:49Z 1 2020-02-15T06:59:37Z +1310 2005-06-15T10:11:42Z 2045 27 2005-06-16T15:00:42Z 1 2020-02-15T06:59:37Z +1311 2005-06-15T10:11:59Z 3114 326 2005-06-17T08:44:59Z 2 2020-02-15T06:59:37Z +1312 2005-06-15T10:16:27Z 3608 313 2005-06-20T06:53:27Z 1 2020-02-15T06:59:37Z +1313 2005-06-15T10:18:34Z 1657 448 2005-06-23T06:25:34Z 1 2020-02-15T06:59:37Z +1314 2005-06-15T10:21:45Z 1359 538 2005-06-21T14:10:45Z 1 2020-02-15T06:59:37Z +1315 2005-06-15T10:23:08Z 3844 405 2005-06-21T15:06:08Z 1 2020-02-15T06:59:37Z +1316 2005-06-15T10:26:23Z 3891 138 2005-06-21T09:25:23Z 2 2020-02-15T06:59:37Z +1317 2005-06-15T10:30:19Z 3696 316 2005-06-24T08:18:19Z 1 2020-02-15T06:59:37Z +1318 2005-06-15T10:34:26Z 2760 341 2005-06-20T16:20:26Z 1 2020-02-15T06:59:37Z +1319 2005-06-15T10:39:05Z 4296 190 2005-06-18T05:25:05Z 1 2020-02-15T06:59:37Z +1320 2005-06-15T10:42:13Z 4484 84 2005-06-17T13:44:13Z 1 2020-02-15T06:59:37Z +1321 2005-06-15T10:49:17Z 3516 204 2005-06-16T15:30:17Z 1 2020-02-15T06:59:37Z +1322 2005-06-15T10:55:09Z 2076 217 2005-06-18T15:14:09Z 2 2020-02-15T06:59:37Z +1323 2005-06-15T10:55:17Z 3273 187 2005-06-24T09:51:17Z 1 2020-02-15T06:59:37Z +1324 2005-06-15T11:02:45Z 764 394 2005-06-17T07:14:45Z 1 2020-02-15T06:59:37Z +1325 2005-06-15T11:03:24Z 52 193 2005-06-20T10:54:24Z 1 2020-02-15T06:59:37Z +1326 2005-06-15T11:07:39Z 59 548 2005-06-22T05:55:39Z 2 2020-02-15T06:59:37Z +1327 2005-06-15T11:11:39Z 403 539 2005-06-22T10:45:39Z 1 2020-02-15T06:59:37Z +1328 2005-06-15T11:23:27Z 3665 295 2005-06-19T12:42:27Z 2 2020-02-15T06:59:37Z +1329 2005-06-15T11:25:06Z 1154 359 2005-06-17T16:10:06Z 2 2020-02-15T06:59:37Z +1330 2005-06-15T11:29:17Z 1219 587 2005-06-24T13:36:17Z 2 2020-02-15T06:59:37Z +1331 2005-06-15T11:34:33Z 3089 277 2005-06-21T09:46:33Z 1 2020-02-15T06:59:37Z +1332 2005-06-15T11:36:01Z 1412 116 2005-06-17T14:29:01Z 1 2020-02-15T06:59:37Z +1333 2005-06-15T11:37:08Z 448 310 2005-06-16T10:13:08Z 2 2020-02-15T06:59:37Z +1334 2005-06-15T11:43:09Z 1242 269 2005-06-20T15:45:09Z 2 2020-02-15T06:59:37Z +1335 2005-06-15T11:51:30Z 1713 64 2005-06-16T16:42:30Z 2 2020-02-15T06:59:37Z +1336 2005-06-15T12:01:34Z 1696 290 2005-06-23T12:05:34Z 1 2020-02-15T06:59:37Z +1337 2005-06-15T12:12:42Z 4014 465 2005-06-20T12:38:42Z 2 2020-02-15T06:59:37Z +1338 2005-06-15T12:17:34Z 1206 25 2005-06-19T07:40:34Z 2 2020-02-15T06:59:37Z +1339 2005-06-15T12:21:56Z 424 162 2005-06-19T07:46:56Z 1 2020-02-15T06:59:37Z +1340 2005-06-15T12:24:15Z 251 100 2005-06-22T13:02:15Z 1 2020-02-15T06:59:37Z +1341 2005-06-15T12:26:18Z 3363 344 2005-06-21T07:26:18Z 2 2020-02-15T06:59:37Z +1342 2005-06-15T12:26:21Z 4429 427 2005-06-22T11:23:21Z 1 2020-02-15T06:59:37Z +1343 2005-06-15T12:27:19Z 2393 416 2005-06-21T16:57:19Z 1 2020-02-15T06:59:37Z +1344 2005-06-15T12:29:41Z 1625 585 2005-06-22T12:45:41Z 2 2020-02-15T06:59:37Z +1345 2005-06-15T12:32:13Z 1041 270 2005-06-24T14:02:13Z 1 2020-02-15T06:59:37Z +1346 2005-06-15T12:39:52Z 4540 585 2005-06-24T17:43:52Z 1 2020-02-15T06:59:37Z +1347 2005-06-15T12:43:43Z 374 190 2005-06-16T09:55:43Z 1 2020-02-15T06:59:37Z +1348 2005-06-15T12:45:30Z 2078 196 2005-06-17T17:12:30Z 1 2020-02-15T06:59:37Z +1349 2005-06-15T12:49:02Z 1131 267 2005-06-17T15:20:02Z 1 2020-02-15T06:59:37Z +1350 2005-06-15T12:50:25Z 4261 316 2005-06-23T11:35:25Z 1 2020-02-15T06:59:37Z +1351 2005-06-15T12:51:03Z 2364 484 2005-06-22T07:23:03Z 1 2020-02-15T06:59:37Z +1352 2005-06-15T12:58:27Z 4352 276 2005-06-18T10:57:27Z 1 2020-02-15T06:59:37Z +1353 2005-06-15T13:13:36Z 2711 480 2005-06-21T08:46:36Z 2 2020-02-15T06:59:37Z +1354 2005-06-15T13:13:49Z 1294 83 2005-06-23T13:08:49Z 2 2020-02-15T06:59:37Z +1355 2005-06-15T13:13:59Z 4203 499 2005-06-20T12:23:59Z 1 2020-02-15T06:59:37Z +1356 2005-06-15T13:17:01Z 1318 212 2005-06-19T16:22:01Z 1 2020-02-15T06:59:37Z +1357 2005-06-15T13:26:23Z 2285 205 2005-06-23T14:12:23Z 1 2020-02-15T06:59:37Z +1358 2005-06-15T13:28:48Z 2025 442 2005-06-21T13:40:48Z 1 2020-02-15T06:59:37Z +1359 2005-06-15T13:30:30Z 3140 353 2005-06-17T14:55:30Z 1 2020-02-15T06:59:37Z +1360 2005-06-15T13:32:15Z 4107 14 2005-06-18T10:59:15Z 2 2020-02-15T06:59:37Z +1361 2005-06-15T13:37:38Z 4338 115 2005-06-19T17:08:38Z 1 2020-02-15T06:59:37Z +1362 2005-06-15T13:53:32Z 4524 98 2005-06-19T16:05:32Z 1 2020-02-15T06:59:37Z +1363 2005-06-15T14:05:11Z 771 197 2005-06-17T19:53:11Z 2 2020-02-15T06:59:37Z +1364 2005-06-15T14:05:32Z 115 400 2005-06-16T15:31:32Z 1 2020-02-15T06:59:37Z +1365 2005-06-15T14:09:55Z 3813 25 2005-06-19T18:11:55Z 2 2020-02-15T06:59:37Z +1366 2005-06-15T14:21:00Z 4238 576 2005-06-24T17:36:00Z 1 2020-02-15T06:59:37Z +1367 2005-06-15T14:25:17Z 1505 94 2005-06-21T19:15:17Z 1 2020-02-15T06:59:37Z +1368 2005-06-15T14:27:47Z 2020 222 2005-06-23T18:07:47Z 2 2020-02-15T06:59:37Z +1369 2005-06-15T14:29:14Z 679 221 2005-06-16T13:01:14Z 1 2020-02-15T06:59:37Z +1370 2005-06-15T14:31:05Z 644 396 2005-06-22T19:23:05Z 2 2020-02-15T06:59:37Z +1371 2005-06-15T14:38:15Z 760 491 2005-06-23T15:36:15Z 1 2020-02-15T06:59:37Z +1372 2005-06-15T14:45:48Z 3740 108 2005-06-17T18:02:48Z 2 2020-02-15T06:59:37Z +1373 2005-06-15T14:48:04Z 284 51 2005-06-22T09:48:04Z 1 2020-02-15T06:59:37Z +1374 2005-06-15T14:49:54Z 3353 120 2005-06-22T12:30:54Z 1 2020-02-15T06:59:37Z +1375 2005-06-15T14:54:56Z 3555 500 2005-06-21T14:48:56Z 2 2020-02-15T06:59:37Z +1376 2005-06-15T14:59:06Z 4271 215 2005-06-19T17:34:06Z 1 2020-02-15T06:59:37Z +1377 2005-06-15T15:02:03Z 3410 245 2005-06-22T14:54:03Z 2 2020-02-15T06:59:37Z +1378 2005-06-15T15:03:15Z 4372 253 2005-06-19T16:50:15Z 1 2020-02-15T06:59:37Z +1379 2005-06-15T15:05:10Z 810 212 2005-06-18T12:11:10Z 1 2020-02-15T06:59:37Z +1380 2005-06-15T15:13:10Z 3376 158 2005-06-18T12:42:10Z 2 2020-02-15T06:59:37Z +1381 2005-06-15T15:17:21Z 3262 300 2005-06-20T17:07:21Z 2 2020-02-15T06:59:37Z +1382 2005-06-15T15:18:08Z 3133 455 2005-06-22T09:22:08Z 2 2020-02-15T06:59:37Z +1383 2005-06-15T15:20:06Z 1281 379 2005-06-24T18:42:06Z 2 2020-02-15T06:59:37Z +1384 2005-06-15T15:22:03Z 4242 242 2005-06-18T18:11:03Z 1 2020-02-15T06:59:37Z +1385 2005-06-15T15:28:23Z 4073 396 2005-06-18T18:37:23Z 1 2020-02-15T06:59:37Z +1386 2005-06-15T15:38:58Z 1296 322 2005-06-20T16:28:58Z 2 2020-02-15T06:59:37Z +1387 2005-06-15T15:40:56Z 515 278 2005-06-17T10:39:56Z 1 2020-02-15T06:59:37Z +1388 2005-06-15T15:48:41Z 3987 500 2005-06-22T17:51:41Z 1 2020-02-15T06:59:37Z +1389 2005-06-15T15:49:01Z 965 472 2005-06-19T11:08:01Z 2 2020-02-15T06:59:37Z +1390 2005-06-15T16:06:29Z 4502 254 2005-06-19T13:11:29Z 1 2020-02-15T06:59:37Z +1391 2005-06-15T16:11:21Z 4213 273 2005-06-22T21:32:21Z 1 2020-02-15T06:59:37Z +1392 2005-06-15T16:12:27Z 363 460 2005-06-16T17:30:27Z 2 2020-02-15T06:59:37Z +1393 2005-06-15T16:12:50Z 2767 177 2005-06-19T10:40:50Z 2 2020-02-15T06:59:37Z +1394 2005-06-15T16:17:21Z 2802 268 2005-06-21T20:44:21Z 2 2020-02-15T06:59:37Z +1395 2005-06-15T16:21:04Z 753 252 2005-06-23T12:52:04Z 2 2020-02-15T06:59:37Z +1396 2005-06-15T16:22:38Z 1007 103 2005-06-17T15:53:38Z 2 2020-02-15T06:59:37Z +1397 2005-06-15T16:25:26Z 1830 444 2005-06-21T20:45:26Z 1 2020-02-15T06:59:37Z +1398 2005-06-15T16:28:42Z 4402 527 2005-06-16T12:11:42Z 1 2020-02-15T06:59:37Z +1399 2005-06-15T16:29:51Z 1435 469 2005-06-18T14:06:51Z 1 2020-02-15T06:59:37Z +1400 2005-06-15T16:29:56Z 230 571 2005-06-21T14:43:56Z 2 2020-02-15T06:59:37Z +1401 2005-06-15T16:30:22Z 4081 366 2005-06-21T11:07:22Z 2 2020-02-15T06:59:37Z +1402 2005-06-15T16:31:08Z 1951 381 2005-06-24T19:31:08Z 1 2020-02-15T06:59:37Z +1403 2005-06-15T16:31:59Z 3380 546 2005-06-22T14:23:59Z 2 2020-02-15T06:59:37Z +1404 2005-06-15T16:38:53Z 2776 375 2005-06-16T20:37:53Z 1 2020-02-15T06:59:37Z +1405 2005-06-15T16:41:26Z 3184 243 2005-06-21T18:16:26Z 1 2020-02-15T06:59:37Z +1406 2005-06-15T16:44:00Z 3118 199 2005-06-21T11:22:00Z 2 2020-02-15T06:59:37Z +1407 2005-06-15T16:45:07Z 1286 89 2005-06-23T14:01:07Z 1 2020-02-15T06:59:37Z +1408 2005-06-15T16:57:58Z 2655 396 2005-06-22T21:08:58Z 1 2020-02-15T06:59:37Z +1409 2005-06-15T16:58:12Z 1398 297 2005-06-21T11:21:12Z 2 2020-02-15T06:59:37Z +1410 2005-06-15T16:59:46Z 809 356 2005-06-21T16:38:46Z 1 2020-02-15T06:59:37Z +1411 2005-06-15T17:05:36Z 2276 520 2005-06-21T14:05:36Z 1 2020-02-15T06:59:37Z +1412 2005-06-15T17:09:48Z 4236 166 2005-06-18T17:05:48Z 2 2020-02-15T06:59:37Z +1413 2005-06-15T17:25:07Z 3625 96 2005-06-21T17:17:07Z 2 2020-02-15T06:59:37Z +1414 2005-06-15T17:26:32Z 4005 304 2005-06-22T22:30:32Z 1 2020-02-15T06:59:37Z +1415 2005-06-15T17:31:57Z 1885 331 2005-06-16T22:22:57Z 2 2020-02-15T06:59:37Z +1416 2005-06-15T17:44:57Z 3816 167 2005-06-22T20:53:57Z 2 2020-02-15T06:59:37Z +1417 2005-06-15T17:45:51Z 1334 570 2005-06-19T14:00:51Z 2 2020-02-15T06:59:37Z +1418 2005-06-15T17:51:27Z 2974 591 2005-06-18T23:20:27Z 2 2020-02-15T06:59:37Z +1419 2005-06-15T17:54:50Z 1208 312 2005-06-17T19:44:50Z 2 2020-02-15T06:59:37Z +1420 2005-06-15T17:56:14Z 4149 255 2005-06-24T15:45:14Z 2 2020-02-15T06:59:37Z +1421 2005-06-15T17:57:04Z 2439 533 2005-06-21T20:38:04Z 2 2020-02-15T06:59:37Z +1422 2005-06-15T18:02:53Z 1021 1 2005-06-19T15:54:53Z 2 2020-02-15T06:59:37Z +1423 2005-06-15T18:08:12Z 1396 592 2005-06-24T19:13:12Z 1 2020-02-15T06:59:37Z +1424 2005-06-15T18:08:14Z 887 224 2005-06-24T23:16:14Z 2 2020-02-15T06:59:37Z +1425 2005-06-15T18:13:46Z 1308 108 2005-06-18T22:50:46Z 2 2020-02-15T06:59:37Z +1426 2005-06-15T18:16:24Z 4412 363 2005-06-18T22:15:24Z 2 2020-02-15T06:59:37Z +1427 2005-06-15T18:17:28Z 14 100 2005-06-16T15:47:28Z 1 2020-02-15T06:59:37Z +1428 2005-06-15T18:19:30Z 3689 583 2005-06-22T23:05:30Z 2 2020-02-15T06:59:37Z +1429 2005-06-15T18:24:10Z 4116 362 2005-06-18T16:30:10Z 1 2020-02-15T06:59:37Z +1430 2005-06-15T18:24:55Z 3412 194 2005-06-16T12:26:55Z 1 2020-02-15T06:59:37Z +1431 2005-06-15T18:26:29Z 3193 438 2005-06-21T17:33:29Z 1 2020-02-15T06:59:37Z +1432 2005-06-15T18:27:24Z 523 339 2005-06-21T14:03:24Z 2 2020-02-15T06:59:37Z +1433 2005-06-15T18:30:00Z 2310 88 2005-06-16T15:14:00Z 1 2020-02-15T06:59:37Z +1434 2005-06-15T18:30:46Z 4228 544 2005-06-24T17:51:46Z 1 2020-02-15T06:59:37Z +1435 2005-06-15T18:32:30Z 2769 510 2005-06-24T12:44:30Z 2 2020-02-15T06:59:37Z +1436 2005-06-15T18:35:40Z 924 584 2005-06-21T15:04:40Z 1 2020-02-15T06:59:37Z +1437 2005-06-15T18:37:04Z 3263 96 2005-06-20T12:56:04Z 1 2020-02-15T06:59:37Z +1438 2005-06-15T18:38:51Z 1816 82 2005-06-17T23:50:51Z 1 2020-02-15T06:59:37Z +1439 2005-06-15T18:45:32Z 3155 589 2005-06-22T15:57:32Z 2 2020-02-15T06:59:37Z +1440 2005-06-15T18:53:14Z 2921 26 2005-06-24T15:28:14Z 1 2020-02-15T06:59:37Z +1441 2005-06-15T18:54:21Z 2095 444 2005-06-22T22:48:21Z 2 2020-02-15T06:59:37Z +1442 2005-06-15T18:55:34Z 3912 122 2005-06-22T20:41:34Z 2 2020-02-15T06:59:37Z +1443 2005-06-15T18:57:51Z 2485 435 2005-06-18T14:18:51Z 2 2020-02-15T06:59:37Z +1444 2005-06-15T19:08:16Z 1303 539 2005-06-24T15:20:16Z 2 2020-02-15T06:59:37Z +1445 2005-06-15T19:10:07Z 3189 537 2005-06-19T20:27:07Z 2 2020-02-15T06:59:37Z +1446 2005-06-15T19:13:45Z 1989 506 2005-06-23T19:43:45Z 2 2020-02-15T06:59:37Z +1447 2005-06-15T19:13:51Z 984 471 2005-06-21T22:56:51Z 1 2020-02-15T06:59:37Z +1448 2005-06-15T19:17:16Z 2781 246 2005-06-23T21:56:16Z 2 2020-02-15T06:59:37Z +1449 2005-06-15T19:19:16Z 1525 471 2005-06-18T15:24:16Z 2 2020-02-15T06:59:37Z +1450 2005-06-15T19:22:08Z 4132 268 2005-06-16T17:53:08Z 2 2020-02-15T06:59:37Z +1451 2005-06-15T19:30:18Z 3560 18 2005-06-19T19:22:18Z 2 2020-02-15T06:59:37Z +1452 2005-06-15T19:32:52Z 4348 243 2005-06-16T13:45:52Z 1 2020-02-15T06:59:37Z +1453 2005-06-15T19:36:39Z 3274 457 2005-06-19T00:16:39Z 2 2020-02-15T06:59:37Z +1454 2005-06-15T19:49:41Z 102 298 2005-06-17T15:17:41Z 2 2020-02-15T06:59:37Z +1455 2005-06-15T19:51:06Z 2194 358 2005-06-18T21:54:06Z 2 2020-02-15T06:59:37Z +1456 2005-06-15T20:00:11Z 632 590 2005-06-23T18:03:11Z 2 2020-02-15T06:59:37Z +1457 2005-06-15T20:05:49Z 730 345 2005-06-19T15:35:49Z 1 2020-02-15T06:59:37Z +1458 2005-06-15T20:24:05Z 3546 178 2005-06-21T01:22:05Z 1 2020-02-15T06:59:37Z +1459 2005-06-15T20:25:53Z 1862 218 2005-06-22T23:34:53Z 2 2020-02-15T06:59:37Z +1460 2005-06-15T20:27:02Z 1405 565 2005-06-16T16:21:02Z 1 2020-02-15T06:59:37Z +1461 2005-06-15T20:32:08Z 4479 216 2005-06-23T01:08:08Z 1 2020-02-15T06:59:37Z +1462 2005-06-15T20:37:40Z 653 187 2005-06-18T19:36:40Z 2 2020-02-15T06:59:37Z +1463 2005-06-15T20:37:51Z 2984 569 2005-06-21T16:46:51Z 2 2020-02-15T06:59:37Z +1464 2005-06-15T20:38:14Z 4113 387 2005-06-17T14:52:14Z 2 2020-02-15T06:59:37Z +1465 2005-06-15T20:43:08Z 609 387 2005-06-18T23:00:08Z 1 2020-02-15T06:59:37Z +1466 2005-06-15T20:46:04Z 1057 288 2005-06-24T22:46:04Z 1 2020-02-15T06:59:37Z +1467 2005-06-15T20:47:10Z 688 506 2005-06-22T00:30:10Z 1 2020-02-15T06:59:37Z +1468 2005-06-15T20:48:22Z 228 230 2005-06-21T19:48:22Z 1 2020-02-15T06:59:37Z +1469 2005-06-15T20:52:36Z 2451 580 2005-06-21T19:55:36Z 1 2020-02-15T06:59:37Z +1470 2005-06-15T20:53:07Z 4044 11 2005-06-25T02:12:07Z 1 2020-02-15T06:59:37Z +1471 2005-06-15T20:53:26Z 565 428 2005-06-24T18:25:26Z 2 2020-02-15T06:59:37Z +1472 2005-06-15T20:54:55Z 4233 373 2005-06-24T21:52:55Z 2 2020-02-15T06:59:37Z +1473 2005-06-15T20:55:20Z 2377 249 2005-06-21T16:40:20Z 2 2020-02-15T06:59:37Z +1474 2005-06-15T20:55:42Z 164 202 2005-06-19T02:41:42Z 2 2020-02-15T06:59:37Z +1475 2005-06-15T21:08:01Z 1834 344 2005-06-18T22:33:01Z 2 2020-02-15T06:59:37Z +1476 2005-06-15T21:08:46Z 1407 1 2005-06-25T02:26:46Z 1 2020-02-15T06:59:37Z +1477 2005-06-15T21:11:18Z 418 51 2005-06-19T02:05:18Z 1 2020-02-15T06:59:37Z +1478 2005-06-15T21:12:13Z 435 336 2005-06-18T21:43:13Z 2 2020-02-15T06:59:37Z +1479 2005-06-15T21:13:38Z 172 592 2005-06-17T01:26:38Z 2 2020-02-15T06:59:37Z +1480 2005-06-15T21:17:17Z 2598 27 2005-06-23T22:01:17Z 1 2020-02-15T06:59:37Z +1481 2005-06-15T21:17:58Z 3041 125 2005-06-18T17:53:58Z 2 2020-02-15T06:59:37Z +1482 2005-06-15T21:18:16Z 3980 60 2005-06-16T17:07:16Z 1 2020-02-15T06:59:37Z +1483 2005-06-15T21:21:58Z 1926 242 2005-06-24T00:44:58Z 2 2020-02-15T06:59:37Z +1484 2005-06-15T21:22:35Z 1589 320 2005-06-20T02:27:35Z 2 2020-02-15T06:59:37Z +1485 2005-06-15T21:24:10Z 194 281 2005-06-24T23:03:10Z 1 2020-02-15T06:59:37Z +1486 2005-06-15T21:25:30Z 847 62 2005-06-16T16:36:30Z 1 2020-02-15T06:59:37Z +1487 2005-06-15T21:27:42Z 3791 76 2005-06-22T03:09:42Z 2 2020-02-15T06:59:37Z +1488 2005-06-15T21:39:54Z 1081 355 2005-06-16T20:33:54Z 1 2020-02-15T06:59:37Z +1489 2005-06-15T21:41:38Z 699 213 2005-06-22T17:00:38Z 1 2020-02-15T06:59:37Z +1490 2005-06-15T21:42:17Z 3515 123 2005-06-22T02:01:17Z 2 2020-02-15T06:59:37Z +1491 2005-06-15T21:48:18Z 848 354 2005-06-20T16:40:18Z 1 2020-02-15T06:59:37Z +1492 2005-06-15T21:48:35Z 4148 360 2005-06-17T17:18:35Z 1 2020-02-15T06:59:37Z +1493 2005-06-15T21:50:32Z 4581 235 2005-06-17T01:02:32Z 2 2020-02-15T06:59:37Z +1494 2005-06-15T21:54:20Z 244 575 2005-06-19T18:46:20Z 1 2020-02-15T06:59:37Z +1495 2005-06-15T21:54:31Z 1842 175 2005-06-19T00:08:31Z 2 2020-02-15T06:59:37Z +1496 2005-06-15T21:55:58Z 3915 290 2005-06-17T02:28:58Z 2 2020-02-15T06:59:37Z +1497 2005-06-15T21:56:39Z 2958 44 2005-06-20T20:32:39Z 1 2020-02-15T06:59:37Z +1498 2005-06-15T21:58:00Z 3690 352 2005-06-17T21:50:00Z 1 2020-02-15T06:59:37Z +1499 2005-06-15T21:58:07Z 165 375 2005-06-22T19:37:07Z 2 2020-02-15T06:59:37Z +1500 2005-06-15T22:00:45Z 2652 237 2005-06-18T16:19:45Z 2 2020-02-15T06:59:37Z +1501 2005-06-15T22:02:35Z 1780 148 2005-06-23T18:59:35Z 1 2020-02-15T06:59:37Z +1502 2005-06-15T22:03:14Z 3277 5 2005-06-23T18:42:14Z 2 2020-02-15T06:59:37Z +1503 2005-06-15T22:07:09Z 763 197 2005-06-20T23:15:09Z 1 2020-02-15T06:59:37Z +1504 2005-06-15T22:08:06Z 3621 423 2005-06-24T01:16:06Z 2 2020-02-15T06:59:37Z +1505 2005-06-15T22:12:50Z 2961 561 2005-06-17T21:37:50Z 2 2020-02-15T06:59:37Z +1506 2005-06-15T22:19:37Z 4085 404 2005-06-22T18:28:37Z 1 2020-02-15T06:59:37Z +1507 2005-06-15T22:25:26Z 2514 172 2005-06-19T17:00:26Z 1 2020-02-15T06:59:37Z +1508 2005-06-15T22:33:24Z 1141 511 2005-06-18T02:27:24Z 2 2020-02-15T06:59:37Z +1509 2005-06-15T22:35:53Z 655 167 2005-06-23T17:09:53Z 2 2020-02-15T06:59:37Z +1510 2005-06-15T22:39:34Z 989 338 2005-06-24T19:21:34Z 2 2020-02-15T06:59:37Z +1511 2005-06-15T22:45:06Z 1135 330 2005-06-22T22:48:06Z 1 2020-02-15T06:59:37Z +1512 2005-06-15T22:53:03Z 1628 452 2005-06-23T18:56:03Z 1 2020-02-15T06:59:37Z +1513 2005-06-15T22:53:30Z 1173 368 2005-06-23T01:00:30Z 1 2020-02-15T06:59:37Z +1514 2005-06-15T22:57:34Z 2937 410 2005-06-19T20:27:34Z 1 2020-02-15T06:59:37Z +1515 2005-06-15T23:07:50Z 3244 115 2005-06-20T02:33:50Z 2 2020-02-15T06:59:37Z +1516 2005-06-15T23:11:10Z 3702 530 2005-06-17T20:37:10Z 1 2020-02-15T06:59:37Z +1517 2005-06-15T23:20:26Z 3728 148 2005-06-23T23:23:26Z 1 2020-02-15T06:59:37Z +1518 2005-06-15T23:36:37Z 4537 237 2005-06-16T18:24:37Z 2 2020-02-15T06:59:37Z +1519 2005-06-15T23:55:27Z 1553 155 2005-06-21T04:06:27Z 2 2020-02-15T06:59:37Z +1520 2005-06-15T23:57:20Z 3419 341 2005-06-24T23:46:20Z 1 2020-02-15T06:59:37Z +1521 2005-06-15T23:58:53Z 4299 149 2005-06-18T03:10:53Z 1 2020-02-15T06:59:37Z +1522 2005-06-16T00:17:39Z 235 133 2005-06-22T05:38:39Z 1 2020-02-15T06:59:37Z +1523 2005-06-16T00:18:40Z 681 349 2005-06-17T02:50:40Z 2 2020-02-15T06:59:37Z +1524 2005-06-16T00:25:52Z 3439 177 2005-06-19T03:32:52Z 1 2020-02-15T06:59:37Z +1525 2005-06-16T00:26:07Z 1467 304 2005-06-19T22:37:07Z 2 2020-02-15T06:59:37Z +1526 2005-06-16T00:27:51Z 1940 499 2005-06-19T00:19:51Z 1 2020-02-15T06:59:37Z +1527 2005-06-16T00:31:40Z 296 188 2005-06-21T05:20:40Z 1 2020-02-15T06:59:37Z +1528 2005-06-16T00:32:52Z 4297 110 2005-06-25T01:07:52Z 2 2020-02-15T06:59:37Z +1529 2005-06-16T00:37:35Z 1688 362 2005-06-22T18:58:35Z 2 2020-02-15T06:59:37Z +1530 2005-06-16T00:38:07Z 2421 392 2005-06-24T02:45:07Z 2 2020-02-15T06:59:37Z +1531 2005-06-16T00:40:34Z 1388 515 2005-06-22T02:44:34Z 1 2020-02-15T06:59:37Z +1532 2005-06-16T00:41:31Z 3793 290 2005-06-20T21:36:31Z 1 2020-02-15T06:59:37Z +1533 2005-06-16T00:46:02Z 2452 116 2005-06-17T20:11:02Z 1 2020-02-15T06:59:37Z +1534 2005-06-16T00:49:32Z 3124 42 2005-06-18T02:41:32Z 1 2020-02-15T06:59:37Z +1535 2005-06-16T00:52:04Z 1096 202 2005-06-20T22:47:04Z 2 2020-02-15T06:59:37Z +1536 2005-06-16T00:52:22Z 3248 339 2005-06-17T21:43:22Z 1 2020-02-15T06:59:37Z +1537 2005-06-16T00:52:51Z 4577 594 2005-06-20T19:33:51Z 2 2020-02-15T06:59:37Z +1538 2005-06-16T01:05:50Z 708 430 2005-06-18T19:48:50Z 1 2020-02-15T06:59:37Z +1539 2005-06-16T01:11:25Z 267 390 2005-06-23T03:43:25Z 2 2020-02-15T06:59:37Z +1540 2005-06-16T01:14:56Z 2707 586 2005-06-20T23:31:56Z 2 2020-02-15T06:59:37Z +1541 2005-06-16T01:15:59Z 1911 189 2005-06-22T21:26:59Z 2 2020-02-15T06:59:37Z +1542 2005-06-16T01:20:05Z 1714 182 2005-06-22T03:59:05Z 1 2020-02-15T06:59:37Z +1543 2005-06-16T01:24:08Z 1188 28 2005-06-18T06:24:08Z 2 2020-02-15T06:59:37Z +1544 2005-06-16T01:28:22Z 269 43 2005-06-17T06:57:22Z 2 2020-02-15T06:59:37Z +1545 2005-06-16T01:31:23Z 762 563 2005-06-24T05:50:23Z 1 2020-02-15T06:59:37Z +1546 2005-06-16T01:34:05Z 3913 3 2005-06-24T04:27:05Z 1 2020-02-15T06:59:37Z +1547 2005-06-16T01:42:24Z 2909 343 2005-06-19T01:13:24Z 1 2020-02-15T06:59:37Z +1548 2005-06-16T01:43:33Z 2094 374 2005-06-23T22:04:33Z 2 2020-02-15T06:59:37Z +1549 2005-06-16T01:57:15Z 266 69 2005-06-18T23:30:15Z 1 2020-02-15T06:59:37Z +1550 2005-06-16T01:58:35Z 2003 345 2005-06-18T23:56:35Z 1 2020-02-15T06:59:37Z +1551 2005-06-16T02:01:15Z 4088 268 2005-06-22T07:33:15Z 1 2020-02-15T06:59:37Z +1552 2005-06-16T02:01:37Z 819 518 2005-06-21T00:59:37Z 2 2020-02-15T06:59:37Z +1553 2005-06-16T02:02:44Z 4026 416 2005-06-19T07:50:44Z 1 2020-02-15T06:59:37Z +1554 2005-06-16T02:16:47Z 715 155 2005-06-22T05:15:47Z 1 2020-02-15T06:59:37Z +1555 2005-06-16T02:17:07Z 4168 256 2005-06-22T06:28:07Z 1 2020-02-15T06:59:37Z +1556 2005-06-16T02:19:02Z 533 54 2005-06-17T22:36:02Z 2 2020-02-15T06:59:37Z +1557 2005-06-16T02:28:35Z 2617 439 2005-06-16T22:11:35Z 2 2020-02-15T06:59:37Z +1558 2005-06-16T02:33:53Z 4350 20 2005-06-19T20:50:53Z 2 2020-02-15T06:59:37Z +1559 2005-06-16T02:35:03Z 716 574 2005-06-19T21:22:03Z 1 2020-02-15T06:59:37Z +1560 2005-06-16T02:36:43Z 3418 239 2005-06-24T23:10:43Z 2 2020-02-15T06:59:37Z +1561 2005-06-16T02:41:30Z 2263 431 2005-06-22T05:19:30Z 1 2020-02-15T06:59:37Z +1562 2005-06-16T02:46:27Z 595 395 2005-06-23T00:56:27Z 2 2020-02-15T06:59:37Z +1563 2005-06-16T02:46:28Z 1516 262 2005-06-18T02:37:28Z 1 2020-02-15T06:59:37Z +1564 2005-06-16T02:47:07Z 145 343 2005-06-24T03:12:07Z 1 2020-02-15T06:59:37Z +1565 2005-06-16T03:13:09Z 3833 506 2005-06-16T22:42:09Z 2 2020-02-15T06:59:37Z +1566 2005-06-16T03:13:20Z 3215 174 2005-06-24T01:59:20Z 2 2020-02-15T06:59:37Z +1567 2005-06-16T03:13:30Z 3098 320 2005-06-21T23:56:30Z 1 2020-02-15T06:59:37Z +1568 2005-06-16T03:14:01Z 635 178 2005-06-19T21:17:01Z 2 2020-02-15T06:59:37Z +1569 2005-06-16T03:19:09Z 3927 363 2005-06-18T21:55:09Z 2 2020-02-15T06:59:37Z +1570 2005-06-16T03:21:33Z 3711 82 2005-06-22T22:03:33Z 2 2020-02-15T06:59:37Z +1571 2005-06-16T03:22:00Z 1019 54 2005-06-22T23:27:00Z 1 2020-02-15T06:59:37Z +1572 2005-06-16T03:23:22Z 4179 560 2005-06-20T06:03:22Z 2 2020-02-15T06:59:37Z +1573 2005-06-16T03:31:39Z 4536 371 2005-06-25T04:04:39Z 1 2020-02-15T06:59:37Z +1574 2005-06-16T03:39:56Z 161 305 2005-06-22T05:40:56Z 2 2020-02-15T06:59:37Z +1575 2005-06-16T03:41:38Z 3317 6 2005-06-22T03:01:38Z 2 2020-02-15T06:59:37Z +1576 2005-06-16T03:54:39Z 1014 442 2005-06-24T21:55:39Z 2 2020-02-15T06:59:37Z +1577 2005-06-16T04:03:28Z 367 327 2005-06-24T22:40:28Z 2 2020-02-15T06:59:37Z +1578 2005-06-16T04:08:16Z 3397 365 2005-06-23T07:57:16Z 1 2020-02-15T06:59:37Z +1579 2005-06-16T04:09:08Z 158 35 2005-06-21T05:21:08Z 2 2020-02-15T06:59:37Z +1580 2005-06-16T04:12:25Z 2479 87 2005-06-20T06:53:25Z 1 2020-02-15T06:59:37Z +1581 2005-06-16T04:28:45Z 4004 109 2005-06-18T07:07:45Z 1 2020-02-15T06:59:37Z +1582 2005-06-16T04:31:57Z 163 536 2005-06-22T01:25:57Z 1 2020-02-15T06:59:37Z +1583 2005-06-16T04:44:23Z 270 37 2005-06-18T03:44:23Z 1 2020-02-15T06:59:37Z +1584 2005-06-16T04:50:50Z 3545 434 2005-06-21T22:51:50Z 2 2020-02-15T06:59:37Z +1585 2005-06-16T04:51:13Z 1708 386 2005-06-24T00:23:13Z 2 2020-02-15T06:59:37Z +1586 2005-06-16T04:51:18Z 769 140 2005-06-21T06:54:18Z 2 2020-02-15T06:59:37Z +1587 2005-06-16T04:52:28Z 1781 62 2005-06-23T07:36:28Z 1 2020-02-15T06:59:37Z +1588 2005-06-16T04:53:21Z 4472 322 2005-06-25T07:29:21Z 2 2020-02-15T06:59:37Z +1589 2005-06-16T04:58:03Z 4307 293 2005-06-24T08:36:03Z 1 2020-02-15T06:59:37Z +1590 2005-06-16T05:11:41Z 3685 98 2005-06-23T10:11:41Z 1 2020-02-15T06:59:37Z +1591 2005-06-16T05:12:37Z 1648 83 2005-06-25T06:28:37Z 2 2020-02-15T06:59:37Z +1592 2005-06-16T05:14:37Z 3798 187 2005-06-20T10:52:37Z 2 2020-02-15T06:59:37Z +1593 2005-06-16T05:14:52Z 766 111 2005-06-24T08:00:52Z 2 2020-02-15T06:59:37Z +1594 2005-06-16T05:15:12Z 3858 470 2005-06-25T00:38:12Z 1 2020-02-15T06:59:37Z +1595 2005-06-16T05:23:46Z 1481 244 2005-06-20T00:37:46Z 1 2020-02-15T06:59:37Z +1596 2005-06-16T05:30:58Z 2552 416 2005-06-21T04:18:58Z 2 2020-02-15T06:59:37Z +1597 2005-06-16T05:47:03Z 743 432 2005-06-18T04:21:03Z 1 2020-02-15T06:59:37Z +1598 2005-06-16T06:02:39Z 4171 314 2005-06-23T09:09:39Z 1 2020-02-15T06:59:37Z +1599 2005-06-16T06:03:33Z 1476 215 2005-06-21T07:46:33Z 2 2020-02-15T06:59:37Z +1600 2005-06-16T06:04:12Z 2264 196 2005-06-19T09:39:12Z 2 2020-02-15T06:59:37Z +1601 2005-06-16T06:11:13Z 3115 428 2005-06-21T08:57:13Z 2 2020-02-15T06:59:37Z +1602 2005-06-16T06:12:40Z 1777 441 2005-06-19T03:50:40Z 2 2020-02-15T06:59:37Z +1603 2005-06-16T06:14:03Z 3308 395 2005-06-17T06:04:03Z 2 2020-02-15T06:59:37Z +1604 2005-06-16T06:14:25Z 3226 272 2005-06-17T03:53:25Z 2 2020-02-15T06:59:37Z +1605 2005-06-16T06:17:55Z 593 197 2005-06-25T01:25:55Z 1 2020-02-15T06:59:37Z +1606 2005-06-16T06:18:31Z 4290 253 2005-06-25T09:15:31Z 1 2020-02-15T06:59:37Z +1607 2005-06-16T06:25:35Z 3289 513 2005-06-20T02:50:35Z 2 2020-02-15T06:59:37Z +1608 2005-06-16T06:28:57Z 2581 386 2005-06-24T05:20:57Z 2 2020-02-15T06:59:37Z +1609 2005-06-16T06:34:59Z 2279 174 2005-06-17T09:41:59Z 2 2020-02-15T06:59:37Z +1610 2005-06-16T06:36:33Z 3551 534 2005-06-19T07:12:33Z 1 2020-02-15T06:59:37Z +1611 2005-06-16T06:41:35Z 1739 393 2005-06-25T06:13:35Z 2 2020-02-15T06:59:37Z +1612 2005-06-16T06:52:05Z 3025 355 2005-06-19T01:51:05Z 1 2020-02-15T06:59:37Z +1613 2005-06-16T06:55:10Z 4462 573 2005-06-24T12:08:10Z 1 2020-02-15T06:59:37Z +1614 2005-06-16T06:58:02Z 23 489 2005-06-23T11:24:02Z 1 2020-02-15T06:59:37Z +1615 2005-06-16T07:00:28Z 3894 362 2005-06-25T08:53:28Z 1 2020-02-15T06:59:37Z +1616 2005-06-16T07:04:52Z 2296 204 2005-06-24T04:06:52Z 1 2020-02-15T06:59:37Z +1617 2005-06-16T07:06:06Z 1382 83 2005-06-25T03:35:06Z 1 2020-02-15T06:59:37Z +1618 2005-06-16T07:08:38Z 3741 134 2005-06-25T05:26:38Z 2 2020-02-15T06:59:37Z +1619 2005-06-16T07:14:13Z 4258 232 2005-06-19T05:50:13Z 2 2020-02-15T06:59:37Z +1620 2005-06-16T07:21:30Z 389 561 2005-06-17T09:46:30Z 1 2020-02-15T06:59:37Z +1621 2005-06-16T07:24:12Z 3677 177 2005-06-19T02:35:12Z 1 2020-02-15T06:59:37Z +1622 2005-06-16T07:33:18Z 1774 311 2005-06-21T07:23:18Z 1 2020-02-15T06:59:37Z +1623 2005-06-16T07:48:50Z 4485 378 2005-06-17T03:53:50Z 2 2020-02-15T06:59:37Z +1624 2005-06-16T07:48:57Z 1066 314 2005-06-17T05:52:57Z 1 2020-02-15T06:59:37Z +1625 2005-06-16T07:49:08Z 3367 39 2005-06-24T09:08:08Z 2 2020-02-15T06:59:37Z +1626 2005-06-16T07:49:47Z 694 260 2005-06-22T13:32:47Z 2 2020-02-15T06:59:37Z +1627 2005-06-16T07:51:09Z 4135 468 2005-06-24T02:24:09Z 1 2020-02-15T06:59:37Z +1628 2005-06-16T07:52:55Z 868 427 2005-06-25T11:09:55Z 1 2020-02-15T06:59:37Z +1629 2005-06-16T07:53:47Z 4375 339 2005-06-22T13:03:47Z 1 2020-02-15T06:59:37Z +1630 2005-06-16T07:55:01Z 2413 130 2005-06-19T06:38:01Z 1 2020-02-15T06:59:37Z +1631 2005-06-16T08:01:02Z 2466 5 2005-06-19T09:04:02Z 1 2020-02-15T06:59:37Z +1632 2005-06-16T08:03:42Z 1518 319 2005-06-17T03:40:42Z 1 2020-02-15T06:59:37Z +1633 2005-06-16T08:08:40Z 280 4 2005-06-17T11:12:40Z 1 2020-02-15T06:59:37Z +1634 2005-06-16T08:16:05Z 3990 121 2005-06-17T04:49:05Z 1 2020-02-15T06:59:37Z +1635 2005-06-16T08:26:56Z 1187 566 2005-06-25T06:17:56Z 2 2020-02-15T06:59:37Z +1636 2005-06-16T08:28:54Z 2052 574 2005-06-24T09:23:54Z 1 2020-02-15T06:59:37Z +1637 2005-06-16T08:29:58Z 906 212 2005-06-23T04:55:58Z 2 2020-02-15T06:59:37Z +1638 2005-06-16T08:32:36Z 1905 181 2005-06-18T07:11:36Z 2 2020-02-15T06:59:37Z +1639 2005-06-16T08:33:39Z 176 450 2005-06-25T07:51:39Z 1 2020-02-15T06:59:37Z +1640 2005-06-16T08:35:39Z 443 86 2005-06-17T05:37:39Z 2 2020-02-15T06:59:37Z +1641 2005-06-16T08:46:26Z 2925 259 2005-06-24T14:39:26Z 2 2020-02-15T06:59:37Z +1642 2005-06-16T08:54:15Z 3875 287 2005-06-18T12:36:15Z 1 2020-02-15T06:59:37Z +1643 2005-06-16T08:55:35Z 1352 484 2005-06-21T05:36:35Z 2 2020-02-15T06:59:37Z +1644 2005-06-16T08:58:18Z 749 596 2005-06-21T06:47:18Z 1 2020-02-15T06:59:37Z +1645 2005-06-16T09:10:06Z 4434 234 2005-06-23T04:36:06Z 2 2020-02-15T06:59:37Z +1646 2005-06-16T09:12:53Z 4037 131 2005-06-24T08:03:53Z 2 2020-02-15T06:59:37Z +1647 2005-06-16T09:14:58Z 1936 454 2005-06-17T10:46:58Z 1 2020-02-15T06:59:37Z +1648 2005-06-16T09:17:07Z 457 427 2005-06-24T06:31:07Z 2 2020-02-15T06:59:37Z +1649 2005-06-16T09:20:33Z 390 352 2005-06-18T13:42:33Z 1 2020-02-15T06:59:37Z +1650 2005-06-16T09:23:20Z 4125 299 2005-06-23T11:25:20Z 1 2020-02-15T06:59:37Z +1651 2005-06-16T09:24:38Z 4444 524 2005-06-17T09:50:38Z 2 2020-02-15T06:59:37Z +1652 2005-06-16T09:31:37Z 3416 533 2005-06-19T14:02:37Z 2 2020-02-15T06:59:37Z +1653 2005-06-16T09:34:45Z 2294 517 2005-06-18T09:13:45Z 1 2020-02-15T06:59:37Z +1654 2005-06-16T09:42:48Z 1039 348 2005-06-20T14:28:48Z 2 2020-02-15T06:59:37Z +1655 2005-06-16T09:51:39Z 3693 488 2005-06-23T14:53:39Z 2 2020-02-15T06:59:37Z +1656 2005-06-16T10:05:40Z 2253 31 2005-06-22T06:26:40Z 1 2020-02-15T06:59:37Z +1657 2005-06-16T10:06:49Z 953 209 2005-06-22T10:34:49Z 2 2020-02-15T06:59:37Z +1658 2005-06-16T10:07:10Z 272 568 2005-06-21T09:23:10Z 2 2020-02-15T06:59:37Z +1659 2005-06-16T10:11:46Z 1182 296 2005-06-20T13:51:46Z 1 2020-02-15T06:59:37Z +1660 2005-06-16T10:12:55Z 2374 238 2005-06-18T05:56:55Z 2 2020-02-15T06:59:37Z +1661 2005-06-16T10:12:57Z 2403 508 2005-06-24T09:23:57Z 2 2020-02-15T06:59:37Z +1662 2005-06-16T10:13:35Z 3552 378 2005-06-23T13:54:35Z 1 2020-02-15T06:59:37Z +1663 2005-06-16T10:14:15Z 1558 186 2005-06-23T08:34:15Z 2 2020-02-15T06:59:37Z +1664 2005-06-16T10:15:20Z 2464 216 2005-06-18T12:11:20Z 2 2020-02-15T06:59:37Z +1665 2005-06-16T10:16:02Z 2613 490 2005-06-23T09:32:02Z 1 2020-02-15T06:59:37Z +1666 2005-06-16T10:17:19Z 4019 557 2005-06-21T05:50:19Z 1 2020-02-15T06:59:37Z +1667 2005-06-16T10:18:59Z 2362 333 2005-06-22T14:45:59Z 2 2020-02-15T06:59:37Z +1668 2005-06-16T10:19:52Z 2483 569 2005-06-23T12:22:52Z 2 2020-02-15T06:59:37Z +1669 2005-06-16T10:20:20Z 360 73 2005-06-18T04:26:20Z 1 2020-02-15T06:59:37Z +1670 2005-06-16T10:26:33Z 2066 328 2005-06-19T07:15:33Z 1 2020-02-15T06:59:37Z +1671 2005-06-16T10:30:22Z 3805 135 2005-06-22T11:08:22Z 2 2020-02-15T06:59:37Z +1672 2005-06-16T10:37:34Z 4206 216 2005-06-23T05:30:34Z 1 2020-02-15T06:59:37Z +1673 2005-06-16T10:40:17Z 907 534 2005-06-18T16:13:17Z 1 2020-02-15T06:59:37Z +1674 2005-06-16T10:57:00Z 3606 234 2005-06-18T07:31:00Z 2 2020-02-15T06:59:37Z +1675 2005-06-16T11:04:47Z 3048 371 2005-06-24T06:56:47Z 2 2020-02-15T06:59:37Z +1676 2005-06-16T11:06:09Z 931 171 2005-06-21T05:17:09Z 1 2020-02-15T06:59:37Z +1677 2005-06-16T11:07:11Z 240 191 2005-06-23T10:50:11Z 1 2020-02-15T06:59:37Z +1678 2005-06-16T11:08:28Z 1856 352 2005-06-19T15:44:28Z 1 2020-02-15T06:59:37Z +1679 2005-06-16T11:11:01Z 3959 227 2005-06-23T08:11:01Z 1 2020-02-15T06:59:37Z +1680 2005-06-16T11:17:22Z 4441 469 2005-06-25T15:55:22Z 2 2020-02-15T06:59:37Z +1681 2005-06-16T11:38:17Z 530 255 2005-06-19T13:05:17Z 1 2020-02-15T06:59:37Z +1682 2005-06-16T11:54:25Z 2165 476 2005-06-22T11:09:25Z 2 2020-02-15T06:59:37Z +1683 2005-06-16T11:54:55Z 2361 494 2005-06-18T08:51:55Z 2 2020-02-15T06:59:37Z +1684 2005-06-16T11:57:34Z 806 485 2005-06-19T09:12:34Z 1 2020-02-15T06:59:37Z +1685 2005-06-16T12:06:57Z 2754 85 2005-06-21T16:53:57Z 2 2020-02-15T06:59:37Z +1686 2005-06-16T12:08:20Z 3883 529 2005-06-20T10:59:20Z 1 2020-02-15T06:59:37Z +1687 2005-06-16T12:09:20Z 3686 140 2005-06-18T06:18:20Z 2 2020-02-15T06:59:37Z +1688 2005-06-16T12:11:20Z 383 49 2005-06-18T08:39:20Z 2 2020-02-15T06:59:37Z +1689 2005-06-16T12:18:41Z 4036 48 2005-06-24T13:33:41Z 2 2020-02-15T06:59:37Z +1690 2005-06-16T12:24:18Z 1099 286 2005-06-25T15:00:18Z 1 2020-02-15T06:59:37Z +1691 2005-06-16T12:24:28Z 4438 492 2005-06-24T08:24:28Z 1 2020-02-15T06:59:37Z +1692 2005-06-16T12:30:19Z 3544 514 2005-06-17T17:31:19Z 2 2020-02-15T06:59:37Z +1693 2005-06-16T12:39:51Z 2386 421 2005-06-19T16:19:51Z 2 2020-02-15T06:59:37Z +1694 2005-06-16T12:40:23Z 147 532 2005-06-20T09:18:23Z 2 2020-02-15T06:59:37Z +1695 2005-06-16T12:40:28Z 4436 159 2005-06-22T13:41:28Z 1 2020-02-15T06:59:37Z +1696 2005-06-16T12:50:01Z 3928 502 2005-06-24T12:08:01Z 2 2020-02-15T06:59:37Z +1697 2005-06-16T12:55:20Z 1801 340 2005-06-23T17:41:20Z 2 2020-02-15T06:59:37Z +1698 2005-06-16T13:04:42Z 1474 407 2005-06-21T15:54:42Z 1 2020-02-15T06:59:37Z +1699 2005-06-16T13:05:09Z 4507 27 2005-06-17T09:53:09Z 2 2020-02-15T06:59:37Z +1700 2005-06-16T13:18:23Z 4251 456 2005-06-21T16:46:23Z 2 2020-02-15T06:59:37Z +1701 2005-06-16T13:18:48Z 3000 315 2005-06-22T15:00:48Z 1 2020-02-15T06:59:37Z +1702 2005-06-16T13:21:05Z 1822 242 2005-06-19T10:13:05Z 2 2020-02-15T06:59:37Z +1703 2005-06-16T13:28:44Z 2346 589 2005-06-17T11:03:44Z 1 2020-02-15T06:59:37Z +1704 2005-06-16T13:45:56Z 4425 488 2005-06-24T18:12:56Z 1 2020-02-15T06:59:37Z +1705 2005-06-16T13:59:42Z 123 564 2005-06-18T19:54:42Z 2 2020-02-15T06:59:37Z +1706 2005-06-16T14:01:02Z 2935 26 2005-06-25T19:29:02Z 1 2020-02-15T06:59:37Z +1707 2005-06-16T14:01:27Z 185 4 2005-06-18T09:35:27Z 1 2020-02-15T06:59:37Z +1708 2005-06-16T14:08:44Z 2259 478 2005-06-19T08:35:44Z 1 2020-02-15T06:59:37Z +1709 2005-06-16T14:10:15Z 3501 426 2005-06-24T16:38:15Z 2 2020-02-15T06:59:37Z +1710 2005-06-16T14:11:24Z 144 77 2005-06-22T15:26:24Z 1 2020-02-15T06:59:37Z +1711 2005-06-16T14:11:52Z 273 347 2005-06-25T08:49:52Z 1 2020-02-15T06:59:37Z +1712 2005-06-16T14:25:09Z 1363 535 2005-06-17T17:55:09Z 1 2020-02-15T06:59:37Z +1713 2005-06-16T14:28:33Z 2580 164 2005-06-18T09:02:33Z 1 2020-02-15T06:59:37Z +1714 2005-06-16T14:29:59Z 535 477 2005-06-24T17:27:59Z 2 2020-02-15T06:59:37Z +1715 2005-06-16T14:37:12Z 1594 203 2005-06-20T19:36:12Z 1 2020-02-15T06:59:37Z +1716 2005-06-16T14:39:31Z 20 24 2005-06-19T15:37:31Z 1 2020-02-15T06:59:37Z +1717 2005-06-16T14:47:16Z 3007 277 2005-06-19T10:11:16Z 2 2020-02-15T06:59:37Z +1718 2005-06-16T14:52:02Z 288 516 2005-06-25T10:53:02Z 2 2020-02-15T06:59:37Z +1719 2005-06-16T14:55:53Z 2699 582 2005-06-18T14:12:53Z 1 2020-02-15T06:59:37Z +1720 2005-06-16T15:00:14Z 3500 543 2005-06-21T13:57:14Z 2 2020-02-15T06:59:37Z +1721 2005-06-16T15:01:36Z 3521 485 2005-06-23T10:48:36Z 1 2020-02-15T06:59:37Z +1722 2005-06-16T15:12:52Z 2142 364 2005-06-19T13:01:52Z 2 2020-02-15T06:59:37Z +1723 2005-06-16T15:14:18Z 2417 259 2005-06-23T15:45:18Z 2 2020-02-15T06:59:37Z +1724 2005-06-16T15:15:43Z 61 146 2005-06-23T10:14:43Z 2 2020-02-15T06:59:37Z +1725 2005-06-16T15:18:57Z 726 1 2005-06-17T21:05:57Z 1 2020-02-15T06:59:37Z +1726 2005-06-16T15:19:10Z 116 3 2005-06-25T11:39:10Z 2 2020-02-15T06:59:37Z +1727 2005-06-16T15:21:47Z 2951 457 2005-06-17T14:12:47Z 1 2020-02-15T06:59:37Z +1728 2005-06-16T15:29:29Z 1366 59 2005-06-23T12:47:29Z 1 2020-02-15T06:59:37Z +1729 2005-06-16T15:29:47Z 3364 523 2005-06-25T20:55:47Z 2 2020-02-15T06:59:37Z +1730 2005-06-16T15:30:01Z 1372 390 2005-06-19T12:56:01Z 1 2020-02-15T06:59:37Z +1731 2005-06-16T15:32:12Z 3698 344 2005-06-19T18:58:12Z 2 2020-02-15T06:59:37Z +1732 2005-06-16T15:34:41Z 2287 129 2005-06-18T13:05:41Z 1 2020-02-15T06:59:37Z +1733 2005-06-16T15:37:07Z 542 480 2005-06-23T15:53:07Z 2 2020-02-15T06:59:37Z +1734 2005-06-16T15:49:30Z 1113 94 2005-06-22T13:52:30Z 2 2020-02-15T06:59:37Z +1735 2005-06-16T15:51:52Z 97 4 2005-06-20T13:27:52Z 1 2020-02-15T06:59:37Z +1736 2005-06-16T15:52:32Z 3771 139 2005-06-21T14:39:32Z 2 2020-02-15T06:59:37Z +1737 2005-06-16T15:59:44Z 4029 467 2005-06-23T12:22:44Z 1 2020-02-15T06:59:37Z +1738 2005-06-16T16:07:27Z 3260 177 2005-06-20T15:22:27Z 1 2020-02-15T06:59:37Z +1739 2005-06-16T16:09:38Z 2557 450 2005-06-22T18:04:38Z 2 2020-02-15T06:59:37Z +1740 2005-06-16T16:29:00Z 2282 324 2005-06-20T14:07:00Z 2 2020-02-15T06:59:37Z +1741 2005-06-16T16:31:37Z 3722 176 2005-06-25T21:38:37Z 1 2020-02-15T06:59:37Z +1742 2005-06-16T16:37:48Z 2772 576 2005-06-17T19:47:48Z 2 2020-02-15T06:59:37Z +1743 2005-06-16T16:38:10Z 2777 258 2005-06-17T13:13:10Z 1 2020-02-15T06:59:37Z +1744 2005-06-16T16:39:58Z 3075 230 2005-06-18T19:50:58Z 2 2020-02-15T06:59:37Z +1745 2005-06-16T16:41:16Z 2812 178 2005-06-23T21:02:16Z 2 2020-02-15T06:59:37Z +1746 2005-06-16T16:41:19Z 4272 385 2005-06-19T11:28:19Z 2 2020-02-15T06:59:37Z +1747 2005-06-16T16:53:33Z 1661 273 2005-06-25T21:48:33Z 2 2020-02-15T06:59:37Z +1748 2005-06-16T16:54:03Z 2434 473 2005-06-18T20:11:03Z 1 2020-02-15T06:59:37Z +1749 2005-06-16T16:56:00Z 1554 283 2005-06-21T21:02:00Z 2 2020-02-15T06:59:37Z +1750 2005-06-16T16:57:36Z 1103 321 2005-06-25T21:51:36Z 1 2020-02-15T06:59:37Z +1751 2005-06-16T17:00:14Z 138 123 2005-06-17T12:12:14Z 2 2020-02-15T06:59:37Z +1752 2005-06-16T17:02:55Z 3529 12 2005-06-23T19:09:55Z 2 2020-02-15T06:59:37Z +1753 2005-06-16T17:08:17Z 3817 249 2005-06-21T21:47:17Z 2 2020-02-15T06:59:37Z +1754 2005-06-16T17:13:23Z 4106 25 2005-06-22T20:46:23Z 1 2020-02-15T06:59:37Z +1755 2005-06-16T17:18:44Z 1721 117 2005-06-17T16:54:44Z 1 2020-02-15T06:59:37Z +1756 2005-06-16T17:22:33Z 1401 571 2005-06-21T16:52:33Z 1 2020-02-15T06:59:37Z +1757 2005-06-16T17:32:24Z 4491 510 2005-06-18T13:12:24Z 1 2020-02-15T06:59:37Z +1758 2005-06-16T17:39:39Z 2654 474 2005-06-25T13:06:39Z 1 2020-02-15T06:59:37Z +1759 2005-06-16T17:46:37Z 1402 430 2005-06-24T19:40:37Z 2 2020-02-15T06:59:37Z +1760 2005-06-16T17:48:37Z 3929 261 2005-06-18T16:01:37Z 2 2020-02-15T06:59:37Z +1761 2005-06-16T17:49:57Z 1570 521 2005-06-17T21:03:57Z 2 2020-02-15T06:59:37Z +1762 2005-06-16T17:50:19Z 3050 116 2005-06-19T21:35:19Z 2 2020-02-15T06:59:37Z +1763 2005-06-16T17:51:01Z 1941 389 2005-06-20T17:27:01Z 1 2020-02-15T06:59:37Z +1764 2005-06-16T17:51:54Z 705 392 2005-06-21T20:36:54Z 2 2020-02-15T06:59:37Z +1765 2005-06-16T17:56:10Z 822 273 2005-06-19T23:40:10Z 2 2020-02-15T06:59:37Z +1766 2005-06-16T17:59:37Z 2041 118 2005-06-18T16:32:37Z 2 2020-02-15T06:59:37Z +1767 2005-06-16T18:01:36Z 1162 205 2005-06-18T12:39:36Z 2 2020-02-15T06:59:37Z +1768 2005-06-16T18:02:06Z 2131 131 2005-06-23T17:19:06Z 2 2020-02-15T06:59:37Z +1769 2005-06-16T18:07:48Z 1229 397 2005-06-22T12:39:48Z 1 2020-02-15T06:59:37Z +1770 2005-06-16T18:07:55Z 1681 359 2005-06-23T23:49:55Z 2 2020-02-15T06:59:37Z +1771 2005-06-16T18:12:17Z 1769 416 2005-06-18T16:11:17Z 1 2020-02-15T06:59:37Z +1772 2005-06-16T18:12:54Z 1269 525 2005-06-24T19:55:54Z 1 2020-02-15T06:59:37Z +1773 2005-06-16T18:13:43Z 4396 462 2005-06-24T17:43:43Z 2 2020-02-15T06:59:37Z +1774 2005-06-16T18:27:52Z 3058 442 2005-06-21T13:35:52Z 2 2020-02-15T06:59:37Z +1775 2005-06-16T18:28:19Z 1922 123 2005-06-25T13:09:19Z 2 2020-02-15T06:59:37Z +1776 2005-06-16T18:46:58Z 1404 472 2005-06-24T16:01:58Z 1 2020-02-15T06:59:37Z +1777 2005-06-16T18:52:12Z 3325 49 2005-06-25T13:55:12Z 1 2020-02-15T06:59:37Z +1778 2005-06-16T18:54:48Z 2512 341 2005-06-22T16:08:48Z 2 2020-02-15T06:59:37Z +1779 2005-06-16T18:55:11Z 1044 438 2005-06-17T20:11:11Z 1 2020-02-15T06:59:37Z +1780 2005-06-16T19:11:45Z 146 352 2005-06-19T15:34:45Z 2 2020-02-15T06:59:37Z +1781 2005-06-16T19:20:24Z 2841 429 2005-06-25T17:02:24Z 2 2020-02-15T06:59:37Z +1782 2005-06-16T19:21:12Z 1820 498 2005-06-22T16:03:12Z 2 2020-02-15T06:59:37Z +1783 2005-06-16T19:23:23Z 50 18 2005-06-18T00:57:23Z 1 2020-02-15T06:59:37Z +1784 2005-06-16T19:25:32Z 3792 134 2005-06-20T00:00:32Z 2 2020-02-15T06:59:37Z +1785 2005-06-16T19:27:12Z 3413 50 2005-06-24T19:25:12Z 1 2020-02-15T06:59:37Z +1786 2005-06-16T19:30:54Z 263 323 2005-06-19T14:24:54Z 1 2020-02-15T06:59:37Z +1787 2005-06-16T19:30:59Z 3823 546 2005-06-21T18:25:59Z 2 2020-02-15T06:59:37Z +1788 2005-06-16T19:47:18Z 3794 357 2005-06-22T23:10:18Z 1 2020-02-15T06:59:37Z +1789 2005-06-16T19:49:18Z 4264 105 2005-06-23T17:07:18Z 2 2020-02-15T06:59:37Z +1790 2005-06-16T19:58:40Z 1070 158 2005-06-17T19:31:40Z 2 2020-02-15T06:59:37Z +1791 2005-06-16T20:04:28Z 301 76 2005-06-23T22:30:28Z 1 2020-02-15T06:59:37Z +1792 2005-06-16T20:04:50Z 3800 351 2005-06-26T00:57:50Z 1 2020-02-15T06:59:37Z +1793 2005-06-16T20:07:27Z 4356 230 2005-06-19T20:55:27Z 1 2020-02-15T06:59:37Z +1794 2005-06-16T20:08:37Z 497 452 2005-06-22T01:54:37Z 1 2020-02-15T06:59:37Z +1795 2005-06-16T20:09:01Z 536 56 2005-06-24T17:50:01Z 2 2020-02-15T06:59:37Z +1796 2005-06-16T20:10:43Z 3229 283 2005-06-20T19:12:43Z 1 2020-02-15T06:59:37Z +1797 2005-06-16T20:13:03Z 3435 275 2005-06-22T22:56:03Z 1 2020-02-15T06:59:37Z +1798 2005-06-16T20:16:15Z 1654 429 2005-06-20T22:23:15Z 2 2020-02-15T06:59:37Z +1799 2005-06-16T20:17:20Z 2847 505 2005-06-20T23:55:20Z 1 2020-02-15T06:59:37Z +1800 2005-06-16T20:18:46Z 2058 149 2005-06-20T17:12:46Z 1 2020-02-15T06:59:37Z +1801 2005-06-16T20:21:53Z 1015 10 2005-06-18T23:18:53Z 1 2020-02-15T06:59:37Z +1802 2005-06-16T20:23:30Z 4174 455 2005-06-21T20:02:30Z 1 2020-02-15T06:59:37Z +1803 2005-06-16T20:32:47Z 3784 127 2005-06-21T02:03:47Z 1 2020-02-15T06:59:37Z +1804 2005-06-16T20:33:15Z 1152 570 2005-06-18T02:31:15Z 2 2020-02-15T06:59:37Z +1805 2005-06-16T20:36:00Z 3962 208 2005-06-17T16:27:00Z 1 2020-02-15T06:59:37Z +1806 2005-06-16T20:41:57Z 2053 45 2005-06-18T19:25:57Z 2 2020-02-15T06:59:37Z +1807 2005-06-16T20:58:59Z 1174 338 2005-06-20T21:31:59Z 2 2020-02-15T06:59:37Z +1808 2005-06-16T20:59:35Z 2424 466 2005-06-24T15:31:35Z 1 2020-02-15T06:59:37Z +1809 2005-06-16T21:00:20Z 1071 517 2005-06-25T20:25:20Z 1 2020-02-15T06:59:37Z +1810 2005-06-16T21:06:00Z 2368 7 2005-06-21T21:24:00Z 1 2020-02-15T06:59:37Z +1811 2005-06-16T21:06:20Z 3700 235 2005-06-21T21:59:20Z 2 2020-02-15T06:59:37Z +1812 2005-06-16T21:08:46Z 751 37 2005-06-21T15:44:46Z 2 2020-02-15T06:59:37Z +1813 2005-06-16T21:11:00Z 1236 259 2005-06-24T15:30:00Z 1 2020-02-15T06:59:37Z +1814 2005-06-16T21:15:22Z 39 144 2005-06-23T17:00:22Z 1 2020-02-15T06:59:37Z +1815 2005-06-16T21:16:07Z 1551 84 2005-06-17T16:37:07Z 2 2020-02-15T06:59:37Z +1816 2005-06-16T21:20:41Z 2861 594 2005-06-18T02:21:41Z 1 2020-02-15T06:59:37Z +1817 2005-06-16T21:20:52Z 1354 574 2005-06-19T16:24:52Z 2 2020-02-15T06:59:37Z +1818 2005-06-16T21:30:34Z 1218 63 2005-06-20T03:27:34Z 2 2020-02-15T06:59:37Z +1819 2005-06-16T21:32:50Z 1689 386 2005-06-26T01:11:50Z 1 2020-02-15T06:59:37Z +1820 2005-06-16T21:34:50Z 3672 120 2005-06-20T16:50:50Z 1 2020-02-15T06:59:37Z +1821 2005-06-16T21:42:49Z 3207 468 2005-06-20T16:25:49Z 2 2020-02-15T06:59:37Z +1822 2005-06-16T21:43:45Z 674 86 2005-06-17T21:37:45Z 1 2020-02-15T06:59:37Z +1823 2005-06-16T21:48:16Z 3871 448 2005-06-22T03:09:16Z 1 2020-02-15T06:59:37Z +1824 2005-06-16T21:51:04Z 2269 575 2005-06-18T18:12:04Z 1 2020-02-15T06:59:37Z +1825 2005-06-16T21:53:05Z 2908 55 2005-06-20T17:22:05Z 2 2020-02-15T06:59:37Z +1826 2005-06-16T21:53:52Z 421 578 2005-06-25T18:46:52Z 2 2020-02-15T06:59:37Z +1827 2005-06-16T21:54:40Z 3804 423 2005-06-19T21:28:40Z 2 2020-02-15T06:59:37Z +1828 2005-06-16T22:04:34Z 316 68 2005-06-20T21:07:34Z 2 2020-02-15T06:59:37Z +1829 2005-06-16T22:14:21Z 617 293 2005-06-21T16:51:21Z 1 2020-02-15T06:59:37Z +1830 2005-06-16T22:18:43Z 4010 499 2005-06-23T21:14:43Z 2 2020-02-15T06:59:37Z +1831 2005-06-16T22:22:17Z 2610 383 2005-06-25T23:23:17Z 2 2020-02-15T06:59:37Z +1832 2005-06-16T22:35:20Z 500 220 2005-06-19T03:09:20Z 1 2020-02-15T06:59:37Z +1833 2005-06-16T22:45:03Z 1337 121 2005-06-20T22:02:03Z 2 2020-02-15T06:59:37Z +1834 2005-06-16T22:49:08Z 4018 189 2005-06-22T21:08:08Z 1 2020-02-15T06:59:37Z +1835 2005-06-16T23:05:36Z 1482 112 2005-06-19T04:46:36Z 1 2020-02-15T06:59:37Z +1836 2005-06-16T23:13:05Z 2753 176 2005-06-24T01:40:05Z 2 2020-02-15T06:59:37Z +1837 2005-06-16T23:16:15Z 1259 309 2005-06-21T21:54:15Z 1 2020-02-15T06:59:37Z +1838 2005-06-16T23:20:16Z 513 31 2005-06-20T02:34:16Z 1 2020-02-15T06:59:37Z +1839 2005-06-16T23:22:22Z 2750 223 2005-06-23T00:33:22Z 1 2020-02-15T06:59:37Z +1840 2005-06-16T23:39:34Z 340 404 2005-06-21T23:36:34Z 1 2020-02-15T06:59:37Z +1841 2005-06-16T23:44:13Z 2363 6 2005-06-22T04:09:13Z 1 2020-02-15T06:59:37Z +1842 2005-06-16T23:45:59Z 1472 426 2005-06-26T05:31:59Z 1 2020-02-15T06:59:37Z +1843 2005-06-16T23:53:42Z 2714 132 2005-06-22T18:33:42Z 2 2020-02-15T06:59:37Z +1844 2005-06-16T23:53:53Z 2307 454 2005-06-22T02:19:53Z 2 2020-02-15T06:59:37Z +1845 2005-06-16T23:56:11Z 3395 215 2005-06-19T01:41:11Z 2 2020-02-15T06:59:37Z +1846 2005-06-17T00:02:44Z 1725 422 2005-06-18T23:47:44Z 2 2020-02-15T06:59:37Z +1847 2005-06-17T00:05:22Z 1189 363 2005-06-20T21:09:22Z 1 2020-02-15T06:59:37Z +1848 2005-06-17T00:07:07Z 3797 526 2005-06-21T21:41:07Z 2 2020-02-15T06:59:37Z +1849 2005-06-17T00:13:19Z 2507 341 2005-06-23T18:37:19Z 2 2020-02-15T06:59:37Z +1850 2005-06-17T00:31:35Z 761 517 2005-06-25T05:19:35Z 1 2020-02-15T06:59:37Z +1851 2005-06-17T00:32:26Z 1121 451 2005-06-22T19:54:26Z 2 2020-02-15T06:59:37Z +1852 2005-06-17T00:38:20Z 4122 271 2005-06-22T20:04:20Z 2 2020-02-15T06:59:37Z +1853 2005-06-17T00:39:54Z 2949 301 2005-06-19T00:22:54Z 2 2020-02-15T06:59:37Z +1854 2005-06-17T00:43:57Z 119 37 2005-06-23T05:49:57Z 1 2020-02-15T06:59:37Z +1855 2005-06-17T00:54:58Z 4457 492 2005-06-20T19:29:58Z 1 2020-02-15T06:59:37Z +1856 2005-06-17T01:02:00Z 3034 161 2005-06-19T21:29:00Z 2 2020-02-15T06:59:37Z +1857 2005-06-17T01:12:58Z 4257 427 2005-06-21T04:49:58Z 1 2020-02-15T06:59:37Z +1858 2005-06-17T01:13:11Z 3200 99 2005-06-18T21:33:11Z 2 2020-02-15T06:59:37Z +1859 2005-06-17T01:13:38Z 3405 533 2005-06-18T03:13:38Z 1 2020-02-15T06:59:37Z +1860 2005-06-17T01:17:12Z 1853 293 2005-06-21T22:35:12Z 1 2020-02-15T06:59:37Z +1861 2005-06-17T01:17:31Z 135 454 2005-06-25T02:11:31Z 1 2020-02-15T06:59:37Z +1862 2005-06-17T01:29:30Z 3299 553 2005-06-25T20:43:30Z 1 2020-02-15T06:59:37Z +1863 2005-06-17T01:31:46Z 4466 550 2005-06-26T02:09:46Z 2 2020-02-15T06:59:37Z +1864 2005-06-17T01:39:47Z 1815 130 2005-06-24T19:39:47Z 2 2020-02-15T06:59:37Z +1865 2005-06-17T01:49:36Z 2657 526 2005-06-23T21:13:36Z 1 2020-02-15T06:59:37Z +1866 2005-06-17T01:53:19Z 2579 575 2005-06-19T06:14:19Z 2 2020-02-15T06:59:37Z +1867 2005-06-17T02:01:37Z 3537 415 2005-06-25T04:52:37Z 2 2020-02-15T06:59:37Z +1868 2005-06-17T02:03:22Z 2412 380 2005-06-25T04:38:22Z 1 2020-02-15T06:59:37Z +1869 2005-06-17T02:08:00Z 871 351 2005-06-19T21:43:00Z 1 2020-02-15T06:59:37Z +1870 2005-06-17T02:24:36Z 895 191 2005-06-17T23:04:36Z 2 2020-02-15T06:59:37Z +1871 2005-06-17T02:25:12Z 481 204 2005-06-23T03:16:12Z 2 2020-02-15T06:59:37Z +1872 2005-06-17T02:27:03Z 3596 206 2005-06-20T22:41:03Z 2 2020-02-15T06:59:37Z +1873 2005-06-17T02:38:28Z 2933 71 2005-06-23T04:39:28Z 1 2020-02-15T06:59:37Z +1874 2005-06-17T02:39:20Z 3884 30 2005-06-24T04:41:20Z 2 2020-02-15T06:59:37Z +1875 2005-06-17T02:45:10Z 1652 528 2005-06-22T22:54:10Z 2 2020-02-15T06:59:37Z +1876 2005-06-17T02:50:51Z 384 459 2005-06-18T07:21:51Z 1 2020-02-15T06:59:37Z +1877 2005-06-17T02:54:16Z 3404 261 2005-06-25T21:51:16Z 2 2020-02-15T06:59:37Z +1878 2005-06-17T02:55:32Z 3319 381 2005-06-21T03:44:32Z 1 2020-02-15T06:59:37Z +1879 2005-06-17T02:57:34Z 3983 343 2005-06-19T00:00:34Z 1 2020-02-15T06:59:37Z +1880 2005-06-17T03:08:59Z 1133 289 2005-06-19T07:16:59Z 1 2020-02-15T06:59:37Z +1881 2005-06-17T03:09:56Z 159 134 2005-06-18T01:49:56Z 1 2020-02-15T06:59:37Z +1882 2005-06-17T03:17:21Z 1400 47 2005-06-19T22:23:21Z 2 2020-02-15T06:59:37Z +1883 2005-06-17T03:18:51Z 3504 550 2005-06-18T05:46:51Z 1 2020-02-15T06:59:37Z +1884 2005-06-17T03:19:20Z 4567 305 2005-06-21T00:19:20Z 1 2020-02-15T06:59:37Z +1885 2005-06-17T03:35:59Z 740 588 2005-06-21T05:57:59Z 2 2020-02-15T06:59:37Z +1886 2005-06-17T03:36:02Z 2367 505 2005-06-19T08:12:02Z 2 2020-02-15T06:59:37Z +1887 2005-06-17T03:53:18Z 3591 32 2005-06-25T07:37:18Z 2 2020-02-15T06:59:37Z +1888 2005-06-17T03:58:36Z 2872 405 2005-06-22T09:28:36Z 1 2020-02-15T06:59:37Z +1889 2005-06-17T04:05:12Z 3909 572 2005-06-26T04:13:12Z 1 2020-02-15T06:59:37Z +1890 2005-06-17T04:06:13Z 1764 447 2005-06-22T07:46:13Z 2 2020-02-15T06:59:37Z +1891 2005-06-17T04:16:44Z 3576 109 2005-06-24T07:20:44Z 1 2020-02-15T06:59:37Z +1892 2005-06-17T04:17:33Z 139 319 2005-06-20T00:06:33Z 1 2020-02-15T06:59:37Z +1893 2005-06-17T04:18:37Z 3346 390 2005-06-23T23:35:37Z 2 2020-02-15T06:59:37Z +1894 2005-06-17T04:18:48Z 3707 204 2005-06-26T00:07:48Z 1 2020-02-15T06:59:38Z +1895 2005-06-17T04:25:12Z 680 30 2005-06-26T08:44:12Z 1 2020-02-15T06:59:38Z +1896 2005-06-17T04:25:46Z 2077 270 2005-06-26T09:37:46Z 1 2020-02-15T06:59:38Z +1897 2005-06-17T04:26:23Z 4142 422 2005-06-25T09:32:23Z 2 2020-02-15T06:59:38Z +1898 2005-06-17T04:28:11Z 2873 143 2005-06-25T07:04:11Z 2 2020-02-15T06:59:38Z +1899 2005-06-17T04:29:15Z 858 200 2005-06-26T08:39:15Z 1 2020-02-15T06:59:38Z +1900 2005-06-17T04:29:58Z 1425 34 2005-06-21T05:58:58Z 1 2020-02-15T06:59:38Z +1901 2005-06-17T04:35:19Z 2469 292 2005-06-25T06:09:19Z 2 2020-02-15T06:59:38Z +1902 2005-06-17T04:35:52Z 2905 479 2005-06-20T06:52:52Z 2 2020-02-15T06:59:38Z +1903 2005-06-17T04:37:20Z 1939 588 2005-06-26T09:05:20Z 2 2020-02-15T06:59:38Z +1904 2005-06-17T04:45:41Z 2472 87 2005-06-17T23:56:41Z 2 2020-02-15T06:59:38Z +1905 2005-06-17T04:51:43Z 1043 39 2005-06-24T09:35:43Z 1 2020-02-15T06:59:38Z +1906 2005-06-17T04:53:35Z 1049 455 2005-06-21T01:16:35Z 2 2020-02-15T06:59:38Z +1907 2005-06-17T05:08:27Z 988 66 2005-06-23T09:13:27Z 1 2020-02-15T06:59:38Z +1908 2005-06-17T05:10:36Z 399 358 2005-06-19T03:52:36Z 1 2020-02-15T06:59:38Z +1909 2005-06-17T05:11:04Z 2599 269 2005-06-19T04:33:04Z 2 2020-02-15T06:59:38Z +1910 2005-06-17T05:11:27Z 3903 199 2005-06-23T23:16:27Z 1 2020-02-15T06:59:38Z +1911 2005-06-17T05:15:15Z 910 3 2005-06-24T11:05:15Z 2 2020-02-15T06:59:38Z +1912 2005-06-17T05:18:32Z 4136 538 2005-06-20T10:01:32Z 2 2020-02-15T06:59:38Z +1913 2005-06-17T05:19:47Z 1825 116 2005-06-21T03:39:47Z 1 2020-02-15T06:59:38Z +1914 2005-06-17T05:25:54Z 3406 450 2005-06-24T04:25:54Z 2 2020-02-15T06:59:38Z +1915 2005-06-17T05:28:28Z 2620 393 2005-06-21T07:12:28Z 2 2020-02-15T06:59:38Z +1916 2005-06-17T05:29:59Z 4428 429 2005-06-26T05:35:59Z 2 2020-02-15T06:59:38Z +1917 2005-06-17T05:36:07Z 2667 400 2005-06-24T01:44:07Z 1 2020-02-15T06:59:38Z +1918 2005-06-17T05:40:14Z 3749 310 2005-06-21T08:53:14Z 2 2020-02-15T06:59:38Z +1919 2005-06-17T05:40:52Z 3855 197 2005-06-23T05:58:52Z 1 2020-02-15T06:59:38Z +1920 2005-06-17T06:00:23Z 2199 75 2005-06-24T04:49:23Z 1 2020-02-15T06:59:38Z +1921 2005-06-17T06:04:16Z 4369 417 2005-06-23T05:26:16Z 2 2020-02-15T06:59:38Z +1922 2005-06-17T06:04:25Z 2484 343 2005-06-18T09:15:25Z 2 2020-02-15T06:59:38Z +1923 2005-06-17T06:06:10Z 691 400 2005-06-24T04:29:10Z 2 2020-02-15T06:59:38Z +1924 2005-06-17T06:13:34Z 2577 86 2005-06-18T01:51:34Z 1 2020-02-15T06:59:38Z +1925 2005-06-17T06:16:47Z 3995 510 2005-06-21T06:03:47Z 1 2020-02-15T06:59:38Z +1926 2005-06-17T06:24:30Z 3509 462 2005-06-25T03:39:30Z 2 2020-02-15T06:59:38Z +1927 2005-06-17T06:48:19Z 3304 188 2005-06-21T03:23:19Z 1 2020-02-15T06:59:38Z +1928 2005-06-17T06:48:31Z 3454 353 2005-06-26T08:17:31Z 1 2020-02-15T06:59:38Z +1929 2005-06-17T06:49:30Z 573 327 2005-06-22T12:07:30Z 2 2020-02-15T06:59:38Z +1930 2005-06-17T06:50:46Z 79 112 2005-06-19T08:51:46Z 2 2020-02-15T06:59:38Z +1931 2005-06-17T06:51:56Z 1411 391 2005-06-22T08:27:56Z 1 2020-02-15T06:59:38Z +1932 2005-06-17T06:54:41Z 3185 120 2005-06-19T05:12:41Z 2 2020-02-15T06:59:38Z +1933 2005-06-17T06:54:42Z 980 13 2005-06-26T02:00:42Z 1 2020-02-15T06:59:38Z +1934 2005-06-17T07:04:57Z 4000 16 2005-06-25T12:21:57Z 2 2020-02-15T06:59:38Z +1935 2005-06-17T07:14:15Z 1962 295 2005-06-20T05:59:15Z 1 2020-02-15T06:59:38Z +1936 2005-06-17T07:15:41Z 3037 213 2005-06-18T11:37:41Z 2 2020-02-15T06:59:38Z +1937 2005-06-17T07:16:46Z 1266 385 2005-06-21T04:22:46Z 2 2020-02-15T06:59:38Z +1938 2005-06-17T07:18:36Z 570 454 2005-06-19T01:43:36Z 2 2020-02-15T06:59:38Z +1939 2005-06-17T07:26:45Z 605 11 2005-06-25T13:06:45Z 2 2020-02-15T06:59:38Z +1940 2005-06-17T07:42:22Z 105 451 2005-06-22T11:59:22Z 1 2020-02-15T06:59:38Z +1941 2005-06-17T07:42:45Z 1063 519 2005-06-20T07:12:45Z 1 2020-02-15T06:59:38Z +1942 2005-06-17T07:43:39Z 261 143 2005-06-25T02:24:39Z 1 2020-02-15T06:59:38Z +1943 2005-06-17T07:49:17Z 4327 144 2005-06-20T03:47:17Z 1 2020-02-15T06:59:38Z +1944 2005-06-17T07:50:53Z 318 16 2005-06-23T02:52:53Z 2 2020-02-15T06:59:38Z +1945 2005-06-17T07:51:26Z 3366 207 2005-06-23T13:22:26Z 2 2020-02-15T06:59:38Z +1946 2005-06-17T07:58:39Z 2335 389 2005-06-25T06:49:39Z 2 2020-02-15T06:59:38Z +1947 2005-06-17T08:02:20Z 3344 479 2005-06-25T10:25:20Z 1 2020-02-15T06:59:38Z +1948 2005-06-17T08:06:53Z 46 89 2005-06-21T05:00:53Z 1 2020-02-15T06:59:38Z +1949 2005-06-17T08:19:22Z 1478 208 2005-06-25T08:43:22Z 1 2020-02-15T06:59:38Z +1950 2005-06-17T08:26:52Z 723 594 2005-06-22T08:08:52Z 2 2020-02-15T06:59:38Z +1951 2005-06-17T08:30:35Z 955 123 2005-06-20T10:43:35Z 2 2020-02-15T06:59:38Z +1952 2005-06-17T08:33:02Z 1823 338 2005-06-21T14:00:02Z 2 2020-02-15T06:59:38Z +1953 2005-06-17T08:34:57Z 3549 405 2005-06-24T09:38:57Z 2 2020-02-15T06:59:38Z +1954 2005-06-17T08:37:55Z 3203 533 2005-06-20T02:55:55Z 2 2020-02-15T06:59:38Z +1955 2005-06-17T08:40:22Z 811 311 2005-06-19T10:47:22Z 1 2020-02-15T06:59:38Z +1956 2005-06-17T08:43:32Z 1403 492 2005-06-21T11:08:32Z 1 2020-02-15T06:59:38Z +1957 2005-06-17T08:50:58Z 2496 68 2005-06-26T13:39:58Z 2 2020-02-15T06:59:38Z +1958 2005-06-17T08:52:01Z 1843 581 2005-06-23T07:55:01Z 2 2020-02-15T06:59:38Z +1959 2005-06-17T08:54:10Z 1464 554 2005-06-20T05:02:10Z 2 2020-02-15T06:59:38Z +1960 2005-06-17T08:59:57Z 2202 27 2005-06-23T14:38:57Z 2 2020-02-15T06:59:38Z +1961 2005-06-17T09:02:58Z 2851 384 2005-06-20T03:07:58Z 1 2020-02-15T06:59:38Z +1962 2005-06-17T09:08:58Z 4386 536 2005-06-23T14:55:58Z 1 2020-02-15T06:59:38Z +1963 2005-06-17T09:09:31Z 1943 154 2005-06-24T13:16:31Z 2 2020-02-15T06:59:38Z +1964 2005-06-17T09:10:09Z 3390 53 2005-06-21T15:08:09Z 1 2020-02-15T06:59:38Z +1965 2005-06-17T09:17:39Z 480 256 2005-06-18T12:35:39Z 2 2020-02-15T06:59:38Z +1966 2005-06-17T09:19:45Z 2085 6 2005-06-20T11:19:45Z 1 2020-02-15T06:59:38Z +1967 2005-06-17T09:19:52Z 3225 558 2005-06-21T03:35:52Z 1 2020-02-15T06:59:38Z +1968 2005-06-17T09:20:36Z 1139 246 2005-06-18T11:06:36Z 2 2020-02-15T06:59:38Z +1969 2005-06-17T09:22:22Z 4450 337 2005-06-21T05:31:22Z 2 2020-02-15T06:59:38Z +1970 2005-06-17T09:23:16Z 1358 303 2005-06-22T09:40:16Z 2 2020-02-15T06:59:38Z +1971 2005-06-17T09:23:59Z 2870 357 2005-06-25T13:20:59Z 2 2020-02-15T06:59:38Z +1972 2005-06-17T09:25:49Z 2758 526 2005-06-24T09:59:49Z 2 2020-02-15T06:59:38Z +1973 2005-06-17T09:26:15Z 3669 256 2005-06-21T10:18:15Z 1 2020-02-15T06:59:38Z +1974 2005-06-17T09:30:05Z 1979 111 2005-06-21T12:10:05Z 1 2020-02-15T06:59:38Z +1975 2005-06-17T09:32:10Z 2520 468 2005-06-23T03:50:10Z 2 2020-02-15T06:59:38Z +1976 2005-06-17T09:38:08Z 3631 184 2005-06-23T07:23:08Z 2 2020-02-15T06:59:38Z +1977 2005-06-17T09:38:22Z 2468 459 2005-06-23T14:19:22Z 2 2020-02-15T06:59:38Z +1978 2005-06-17T09:42:34Z 1590 278 2005-06-20T09:13:34Z 2 2020-02-15T06:59:38Z +1979 2005-06-17T09:45:30Z 3470 45 2005-06-20T10:52:30Z 1 2020-02-15T06:59:38Z +1980 2005-06-17T09:48:05Z 2985 328 2005-06-23T14:43:05Z 1 2020-02-15T06:59:38Z +1981 2005-06-17T10:03:34Z 3186 526 2005-06-20T13:14:34Z 2 2020-02-15T06:59:38Z +1982 2005-06-17T10:12:15Z 1091 566 2005-06-20T13:56:15Z 1 2020-02-15T06:59:38Z +1983 2005-06-17T10:22:13Z 1955 365 2005-06-24T05:04:13Z 1 2020-02-15T06:59:38Z +1984 2005-06-17T10:25:28Z 3417 380 2005-06-23T08:18:28Z 2 2020-02-15T06:59:38Z +1985 2005-06-17T10:31:37Z 87 411 2005-06-22T11:17:37Z 1 2020-02-15T06:59:38Z +1986 2005-06-17T10:34:59Z 2894 541 2005-06-24T04:57:59Z 2 2020-02-15T06:59:38Z +1987 2005-06-17T10:40:36Z 110 479 2005-06-23T14:23:36Z 1 2020-02-15T06:59:38Z +1988 2005-06-17T10:42:34Z 3054 261 2005-06-25T11:47:34Z 2 2020-02-15T06:59:38Z +1989 2005-06-17T10:47:24Z 634 35 2005-06-19T05:12:24Z 1 2020-02-15T06:59:38Z +1990 2005-06-17T10:48:44Z 1471 571 2005-06-24T08:11:44Z 1 2020-02-15T06:59:38Z +1991 2005-06-17T10:49:23Z 3963 105 2005-06-25T10:48:23Z 1 2020-02-15T06:59:38Z +1992 2005-06-17T10:58:53Z 636 233 2005-06-19T08:42:53Z 2 2020-02-15T06:59:38Z +1993 2005-06-17T10:59:24Z 168 234 2005-06-23T07:30:24Z 2 2020-02-15T06:59:38Z +1994 2005-06-17T11:07:06Z 2203 346 2005-06-25T08:32:06Z 2 2020-02-15T06:59:38Z +1995 2005-06-17T11:11:14Z 1866 10 2005-06-26T16:37:14Z 1 2020-02-15T06:59:38Z +1996 2005-06-17T11:17:45Z 3074 149 2005-06-26T09:42:45Z 1 2020-02-15T06:59:38Z +1997 2005-06-17T11:19:43Z 846 411 2005-06-19T14:18:43Z 1 2020-02-15T06:59:38Z +1998 2005-06-17T11:24:57Z 4365 562 2005-06-26T09:48:57Z 1 2020-02-15T06:59:38Z +1999 2005-06-17T11:30:08Z 3704 111 2005-06-23T08:36:08Z 1 2020-02-15T06:59:38Z +2000 2005-06-17T11:32:30Z 323 163 2005-06-22T13:37:30Z 1 2020-02-15T06:59:38Z +2001 2005-06-17T11:35:09Z 2069 260 2005-06-21T14:52:09Z 2 2020-02-15T06:59:38Z +2002 2005-06-17T11:39:58Z 2406 514 2005-06-24T15:41:58Z 2 2020-02-15T06:59:38Z +2003 2005-06-17T11:40:35Z 1581 515 2005-06-19T08:30:35Z 2 2020-02-15T06:59:38Z +2004 2005-06-17T11:43:38Z 1342 171 2005-06-24T08:05:38Z 2 2020-02-15T06:59:38Z +2005 2005-06-17T11:44:54Z 4177 234 2005-06-19T10:53:54Z 1 2020-02-15T06:59:38Z +2006 2005-06-17T11:47:03Z 992 215 2005-06-19T13:47:03Z 2 2020-02-15T06:59:38Z +2007 2005-06-17T11:47:17Z 1123 572 2005-06-21T07:19:17Z 1 2020-02-15T06:59:38Z +2008 2005-06-17T11:48:05Z 2081 570 2005-06-25T13:16:05Z 1 2020-02-15T06:59:38Z +2009 2005-06-17T11:48:31Z 1902 119 2005-06-18T09:34:31Z 2 2020-02-15T06:59:38Z +2010 2005-06-17T11:54:15Z 2845 329 2005-06-21T05:55:15Z 1 2020-02-15T06:59:38Z +2011 2005-06-17T11:56:09Z 734 350 2005-06-24T06:47:09Z 2 2020-02-15T06:59:38Z +2012 2005-06-17T11:57:15Z 3588 84 2005-06-24T17:18:15Z 1 2020-02-15T06:59:38Z +2013 2005-06-17T12:03:01Z 3256 165 2005-06-24T10:04:01Z 1 2020-02-15T06:59:38Z +2014 2005-06-17T12:03:28Z 2969 337 2005-06-25T16:00:28Z 2 2020-02-15T06:59:38Z +2015 2005-06-17T12:16:29Z 3776 484 2005-06-18T14:40:29Z 2 2020-02-15T06:59:38Z +2016 2005-06-17T12:18:36Z 4265 282 2005-06-20T12:13:36Z 1 2020-02-15T06:59:38Z +2017 2005-06-17T12:33:30Z 1434 516 2005-06-19T10:08:30Z 2 2020-02-15T06:59:38Z +2018 2005-06-17T12:35:58Z 1278 380 2005-06-26T13:16:58Z 2 2020-02-15T06:59:38Z +2019 2005-06-17T12:38:44Z 2314 528 2005-06-23T17:38:44Z 2 2020-02-15T06:59:38Z +2020 2005-06-17T12:39:50Z 1914 384 2005-06-19T14:59:50Z 1 2020-02-15T06:59:38Z +2021 2005-06-17T12:41:18Z 2852 319 2005-06-23T17:17:18Z 2 2020-02-15T06:59:38Z +2022 2005-06-17T12:44:39Z 3053 547 2005-06-25T12:32:39Z 1 2020-02-15T06:59:38Z +2023 2005-06-17T12:52:58Z 787 169 2005-06-23T11:07:58Z 1 2020-02-15T06:59:38Z +2024 2005-06-17T13:00:51Z 2566 329 2005-06-22T07:03:51Z 1 2020-02-15T06:59:38Z +2025 2005-06-17T13:04:00Z 1203 447 2005-06-18T18:45:00Z 2 2020-02-15T06:59:38Z +2026 2005-06-17T13:05:38Z 3681 491 2005-06-21T17:19:38Z 1 2020-02-15T06:59:38Z +2027 2005-06-17T13:06:56Z 4309 265 2005-06-23T13:46:56Z 1 2020-02-15T06:59:38Z +2028 2005-06-17T13:08:08Z 4451 155 2005-06-23T10:54:08Z 1 2020-02-15T06:59:38Z +2029 2005-06-17T13:10:59Z 914 512 2005-06-19T18:15:59Z 1 2020-02-15T06:59:38Z +2030 2005-06-17T13:13:27Z 4024 457 2005-06-19T10:44:27Z 1 2020-02-15T06:59:38Z +2031 2005-06-17T13:14:03Z 4275 570 2005-06-25T10:06:03Z 2 2020-02-15T06:59:38Z +2032 2005-06-17T13:24:07Z 425 316 2005-06-18T18:18:07Z 1 2020-02-15T06:59:38Z +2033 2005-06-17T13:24:43Z 58 90 2005-06-20T12:34:43Z 1 2020-02-15T06:59:38Z +2034 2005-06-17T13:27:16Z 1512 587 2005-06-22T08:53:16Z 2 2020-02-15T06:59:38Z +2035 2005-06-17T13:45:09Z 4371 158 2005-06-26T15:30:09Z 2 2020-02-15T06:59:38Z +2036 2005-06-17T13:46:52Z 100 486 2005-06-18T15:42:52Z 2 2020-02-15T06:59:38Z +2037 2005-06-17T13:54:20Z 2582 308 2005-06-20T14:49:20Z 2 2020-02-15T06:59:38Z +2038 2005-06-17T14:00:51Z 4231 138 2005-06-19T11:54:51Z 2 2020-02-15T06:59:38Z +2039 2005-06-17T14:03:43Z 1514 304 2005-06-24T09:21:43Z 1 2020-02-15T06:59:38Z +2040 2005-06-17T14:18:37Z 227 260 2005-06-22T19:08:37Z 1 2020-02-15T06:59:38Z +2041 2005-06-17T14:19:00Z 782 348 2005-06-26T08:38:00Z 2 2020-02-15T06:59:38Z +2042 2005-06-17T14:31:02Z 3102 84 2005-06-18T14:43:02Z 1 2020-02-15T06:59:38Z +2043 2005-06-17T14:31:12Z 2495 4 2005-06-19T11:04:12Z 2 2020-02-15T06:59:38Z +2044 2005-06-17T14:37:57Z 2418 484 2005-06-22T17:15:57Z 2 2020-02-15T06:59:38Z +2045 2005-06-17T14:38:11Z 561 391 2005-06-26T13:44:11Z 2 2020-02-15T06:59:38Z +2046 2005-06-17T14:39:50Z 872 374 2005-06-24T16:02:50Z 1 2020-02-15T06:59:38Z +2047 2005-06-17T14:40:58Z 2371 201 2005-06-21T08:52:58Z 1 2020-02-15T06:59:38Z +2048 2005-06-17T14:55:29Z 2055 454 2005-06-23T16:29:29Z 2 2020-02-15T06:59:38Z +2049 2005-06-17T14:58:36Z 1053 182 2005-06-22T14:53:36Z 2 2020-02-15T06:59:38Z +2050 2005-06-17T15:07:30Z 1963 549 2005-06-18T14:43:30Z 1 2020-02-15T06:59:38Z +2051 2005-06-17T15:10:16Z 2366 191 2005-06-19T20:45:16Z 1 2020-02-15T06:59:38Z +2052 2005-06-17T15:14:43Z 1686 172 2005-06-21T11:08:43Z 1 2020-02-15T06:59:38Z +2053 2005-06-17T15:19:34Z 4279 521 2005-06-19T10:06:34Z 2 2020-02-15T06:59:38Z +2054 2005-06-17T15:26:37Z 1588 295 2005-06-26T14:22:37Z 1 2020-02-15T06:59:38Z +2055 2005-06-17T15:27:03Z 1399 593 2005-06-25T13:44:03Z 1 2020-02-15T06:59:38Z +2056 2005-06-17T15:27:33Z 229 42 2005-06-20T13:04:33Z 2 2020-02-15T06:59:38Z +2057 2005-06-17T15:31:58Z 2803 190 2005-06-25T09:39:58Z 1 2020-02-15T06:59:38Z +2058 2005-06-17T15:34:41Z 1324 57 2005-06-25T14:50:41Z 1 2020-02-15T06:59:38Z +2059 2005-06-17T15:36:12Z 739 114 2005-06-18T19:01:12Z 2 2020-02-15T06:59:38Z +2060 2005-06-17T15:42:42Z 1523 64 2005-06-22T16:39:42Z 1 2020-02-15T06:59:38Z +2061 2005-06-17T15:47:00Z 4575 108 2005-06-24T16:36:00Z 2 2020-02-15T06:59:38Z +2062 2005-06-17T15:56:43Z 1749 55 2005-06-20T21:37:43Z 2 2020-02-15T06:59:38Z +2063 2005-06-17T15:56:53Z 4323 5 2005-06-21T14:19:53Z 1 2020-02-15T06:59:38Z +2064 2005-06-17T15:57:56Z 1970 67 2005-06-23T21:04:56Z 2 2020-02-15T06:59:38Z +2065 2005-06-17T16:03:46Z 844 266 2005-06-22T16:41:46Z 2 2020-02-15T06:59:38Z +2066 2005-06-17T16:07:08Z 2561 248 2005-06-24T15:20:08Z 2 2020-02-15T06:59:38Z +2067 2005-06-17T16:11:08Z 1711 297 2005-06-22T13:01:08Z 2 2020-02-15T06:59:38Z +2068 2005-06-17T16:11:46Z 4252 387 2005-06-20T11:28:46Z 1 2020-02-15T06:59:38Z +2069 2005-06-17T16:19:39Z 2746 551 2005-06-26T16:48:39Z 1 2020-02-15T06:59:38Z +2070 2005-06-17T16:27:51Z 2609 24 2005-06-20T20:46:51Z 1 2020-02-15T06:59:38Z +2071 2005-06-17T16:33:17Z 2867 479 2005-06-23T21:51:17Z 1 2020-02-15T06:59:38Z +2072 2005-06-17T16:33:32Z 86 261 2005-06-23T13:22:32Z 1 2020-02-15T06:59:38Z +2073 2005-06-17T16:33:59Z 3530 410 2005-06-19T11:57:59Z 1 2020-02-15T06:59:38Z +2074 2005-06-17T16:40:03Z 71 495 2005-06-20T21:34:03Z 1 2020-02-15T06:59:38Z +2075 2005-06-17T16:40:33Z 2415 459 2005-06-19T13:55:33Z 2 2020-02-15T06:59:38Z +2076 2005-06-17T16:43:47Z 2242 217 2005-06-24T11:12:47Z 1 2020-02-15T06:59:38Z +2077 2005-06-17T16:46:11Z 4478 113 2005-06-19T15:10:11Z 1 2020-02-15T06:59:38Z +2078 2005-06-17T16:48:55Z 2021 278 2005-06-19T18:01:55Z 1 2020-02-15T06:59:38Z +2079 2005-06-17T16:49:45Z 3853 465 2005-06-18T18:10:45Z 1 2020-02-15T06:59:38Z +2080 2005-06-17T16:59:40Z 1231 476 2005-06-21T11:28:40Z 2 2020-02-15T06:59:38Z +2081 2005-06-17T17:05:02Z 917 253 2005-06-26T20:26:02Z 1 2020-02-15T06:59:38Z +2082 2005-06-17T17:13:32Z 434 254 2005-06-19T16:16:32Z 1 2020-02-15T06:59:38Z +2083 2005-06-17T17:14:00Z 2423 97 2005-06-18T18:31:00Z 2 2020-02-15T06:59:38Z +2084 2005-06-17T17:17:19Z 428 92 2005-06-22T14:57:19Z 1 2020-02-15T06:59:38Z +2085 2005-06-17T17:30:56Z 2275 214 2005-06-23T12:13:56Z 1 2020-02-15T06:59:38Z +2086 2005-06-17T17:32:07Z 898 326 2005-06-21T20:19:07Z 2 2020-02-15T06:59:38Z +2087 2005-06-17T17:35:10Z 466 398 2005-06-26T13:52:10Z 1 2020-02-15T06:59:38Z +2088 2005-06-17T17:35:30Z 506 310 2005-06-23T20:13:30Z 2 2020-02-15T06:59:38Z +2089 2005-06-17T17:45:09Z 4030 156 2005-06-25T16:41:09Z 1 2020-02-15T06:59:38Z +2090 2005-06-17T18:06:14Z 17 197 2005-06-22T23:52:14Z 1 2020-02-15T06:59:38Z +2091 2005-06-17T18:09:04Z 4033 260 2005-06-26T12:11:04Z 1 2020-02-15T06:59:38Z +2092 2005-06-17T18:12:16Z 4427 556 2005-06-25T15:06:16Z 2 2020-02-15T06:59:38Z +2093 2005-06-17T18:14:08Z 814 26 2005-06-26T18:10:08Z 1 2020-02-15T06:59:38Z +2094 2005-06-17T18:18:56Z 2205 308 2005-06-18T19:36:56Z 1 2020-02-15T06:59:38Z +2095 2005-06-17T18:21:35Z 1907 8 2005-06-23T23:49:35Z 2 2020-02-15T06:59:38Z +2096 2005-06-17T18:33:04Z 1069 431 2005-06-21T17:29:04Z 2 2020-02-15T06:59:38Z +2097 2005-06-17T18:40:04Z 569 439 2005-06-23T13:49:04Z 1 2020-02-15T06:59:38Z +2098 2005-06-17T18:42:09Z 3951 274 2005-06-19T20:40:09Z 1 2020-02-15T06:59:38Z +2099 2005-06-17T18:47:26Z 3660 146 2005-06-24T22:31:26Z 2 2020-02-15T06:59:38Z +2100 2005-06-17T18:53:21Z 2267 387 2005-06-19T21:49:21Z 2 2020-02-15T06:59:38Z +2101 2005-06-17T18:57:02Z 2137 581 2005-06-20T15:38:02Z 2 2020-02-15T06:59:38Z +2102 2005-06-17T19:05:22Z 2316 486 2005-06-23T23:21:22Z 2 2020-02-15T06:59:38Z +2103 2005-06-17T19:13:10Z 1469 456 2005-06-21T21:32:10Z 2 2020-02-15T06:59:38Z +2104 2005-06-17T19:14:30Z 3084 136 2005-06-19T16:26:30Z 1 2020-02-15T06:59:38Z +2105 2005-06-17T19:15:45Z 4090 57 2005-06-20T16:00:45Z 1 2020-02-15T06:59:38Z +2106 2005-06-17T19:29:03Z 643 66 2005-06-23T18:17:03Z 2 2020-02-15T06:59:38Z +2107 2005-06-17T19:31:16Z 1270 104 2005-06-18T23:33:16Z 1 2020-02-15T06:59:38Z +2108 2005-06-17T19:35:26Z 1395 503 2005-06-25T15:45:26Z 1 2020-02-15T06:59:38Z +2109 2005-06-17T19:41:42Z 2292 493 2005-06-25T17:03:42Z 2 2020-02-15T06:59:38Z +2110 2005-06-17T19:45:49Z 3592 163 2005-06-26T18:59:49Z 2 2020-02-15T06:59:38Z +2111 2005-06-17T19:47:21Z 2108 76 2005-06-19T22:46:21Z 2 2020-02-15T06:59:38Z +2112 2005-06-17T19:52:42Z 1629 18 2005-06-25T00:00:42Z 2 2020-02-15T06:59:38Z +2113 2005-06-17T19:57:46Z 1509 406 2005-06-24T00:22:46Z 1 2020-02-15T06:59:38Z +2114 2005-06-17T20:00:25Z 3541 358 2005-06-23T18:51:25Z 1 2020-02-15T06:59:38Z +2115 2005-06-17T20:02:16Z 3448 270 2005-06-25T16:56:16Z 2 2020-02-15T06:59:38Z +2116 2005-06-17T20:16:12Z 2373 24 2005-06-18T17:03:12Z 2 2020-02-15T06:59:38Z +2117 2005-06-17T20:24:00Z 2 170 2005-06-23T17:45:00Z 2 2020-02-15T06:59:38Z +2118 2005-06-17T20:28:29Z 1261 103 2005-06-23T22:47:29Z 1 2020-02-15T06:59:38Z +2119 2005-06-17T20:34:42Z 2104 561 2005-06-22T00:05:42Z 1 2020-02-15T06:59:38Z +2120 2005-06-17T20:36:50Z 1498 182 2005-06-27T01:18:50Z 2 2020-02-15T06:59:38Z +2121 2005-06-17T20:38:54Z 141 467 2005-06-22T23:06:54Z 2 2020-02-15T06:59:38Z +2122 2005-06-17T20:48:27Z 2932 245 2005-06-23T00:58:27Z 2 2020-02-15T06:59:38Z +2123 2005-06-17T20:48:30Z 2497 545 2005-06-18T19:17:30Z 2 2020-02-15T06:59:38Z +2124 2005-06-17T20:49:14Z 1273 178 2005-06-23T17:44:14Z 1 2020-02-15T06:59:38Z +2125 2005-06-17T20:53:42Z 4303 473 2005-06-19T01:53:42Z 2 2020-02-15T06:59:38Z +2126 2005-06-17T20:54:36Z 4276 263 2005-06-27T02:16:36Z 1 2020-02-15T06:59:38Z +2127 2005-06-17T20:54:48Z 3757 187 2005-06-18T16:28:48Z 2 2020-02-15T06:59:38Z +2128 2005-06-17T20:54:58Z 352 2 2005-06-24T00:41:58Z 2 2020-02-15T06:59:38Z +2129 2005-06-17T20:58:32Z 1930 249 2005-06-23T22:22:32Z 1 2020-02-15T06:59:38Z +2130 2005-06-17T21:00:44Z 1369 413 2005-06-26T00:05:44Z 2 2020-02-15T06:59:38Z +2131 2005-06-17T21:02:25Z 4424 85 2005-06-25T18:45:25Z 1 2020-02-15T06:59:38Z +2132 2005-06-17T21:05:06Z 2636 186 2005-06-20T18:10:06Z 1 2020-02-15T06:59:38Z +2133 2005-06-17T21:10:05Z 932 268 2005-06-23T22:41:05Z 1 2020-02-15T06:59:38Z +2134 2005-06-17T21:13:44Z 1699 378 2005-06-26T16:28:44Z 2 2020-02-15T06:59:38Z +2135 2005-06-17T21:14:02Z 4091 39 2005-06-19T00:59:02Z 1 2020-02-15T06:59:38Z +2136 2005-06-17T21:16:41Z 2651 20 2005-06-24T22:42:41Z 2 2020-02-15T06:59:38Z +2137 2005-06-17T21:18:28Z 1158 581 2005-06-20T21:05:28Z 1 2020-02-15T06:59:38Z +2138 2005-06-17T21:28:14Z 512 254 2005-06-22T01:16:14Z 2 2020-02-15T06:59:38Z +2139 2005-06-17T21:29:34Z 807 236 2005-06-26T21:05:34Z 1 2020-02-15T06:59:38Z +2140 2005-06-17T21:40:29Z 2395 56 2005-06-19T00:42:29Z 1 2020-02-15T06:59:38Z +2141 2005-06-17T21:41:34Z 2176 86 2005-06-19T00:15:34Z 1 2020-02-15T06:59:38Z +2142 2005-06-17T21:55:43Z 1787 253 2005-06-26T19:41:43Z 2 2020-02-15T06:59:38Z +2143 2005-06-17T21:58:13Z 1257 507 2005-06-19T23:59:13Z 2 2020-02-15T06:59:38Z +2144 2005-06-17T22:05:40Z 3303 46 2005-06-21T02:53:40Z 1 2020-02-15T06:59:38Z +2145 2005-06-17T22:10:36Z 238 388 2005-06-18T21:07:36Z 2 2020-02-15T06:59:38Z +2146 2005-06-17T22:26:23Z 326 456 2005-06-26T17:10:23Z 1 2020-02-15T06:59:38Z +2147 2005-06-17T22:28:13Z 2752 279 2005-06-22T20:50:13Z 1 2020-02-15T06:59:38Z +2148 2005-06-17T22:44:35Z 315 338 2005-06-26T19:43:35Z 1 2020-02-15T06:59:38Z +2149 2005-06-17T22:50:00Z 3365 333 2005-06-26T18:40:00Z 1 2020-02-15T06:59:38Z +2150 2005-06-17T22:50:36Z 1910 406 2005-06-21T19:33:36Z 1 2020-02-15T06:59:38Z +2151 2005-06-17T22:52:37Z 407 329 2005-06-20T22:00:37Z 1 2020-02-15T06:59:38Z +2152 2005-06-17T22:53:27Z 2665 307 2005-06-23T19:19:27Z 1 2020-02-15T06:59:38Z +2153 2005-06-17T22:58:04Z 2440 357 2005-06-24T19:38:04Z 2 2020-02-15T06:59:38Z +2154 2005-06-17T22:59:42Z 1655 30 2005-06-24T04:11:42Z 1 2020-02-15T06:59:38Z +2155 2005-06-17T23:07:29Z 3640 227 2005-06-25T03:23:29Z 2 2020-02-15T06:59:38Z +2156 2005-06-17T23:08:12Z 623 237 2005-06-22T19:44:12Z 2 2020-02-15T06:59:38Z +2157 2005-06-17T23:30:52Z 1619 201 2005-06-24T01:56:52Z 2 2020-02-15T06:59:38Z +2158 2005-06-17T23:36:27Z 243 530 2005-06-19T19:25:27Z 2 2020-02-15T06:59:38Z +2159 2005-06-17T23:37:29Z 3095 465 2005-06-25T00:18:29Z 2 2020-02-15T06:59:38Z +2160 2005-06-17T23:39:11Z 1644 32 2005-06-22T20:04:11Z 1 2020-02-15T06:59:38Z +2161 2005-06-17T23:39:50Z 3149 75 2005-06-26T23:28:50Z 2 2020-02-15T06:59:38Z +2162 2005-06-17T23:45:47Z 1790 277 2005-06-21T21:03:47Z 1 2020-02-15T06:59:38Z +2163 2005-06-17T23:46:16Z 2600 130 2005-06-22T22:48:16Z 2 2020-02-15T06:59:38Z +2164 2005-06-17T23:46:21Z 3442 227 2005-06-24T19:10:21Z 2 2020-02-15T06:59:38Z +2165 2005-06-17T23:51:10Z 2392 471 2005-06-21T23:54:10Z 1 2020-02-15T06:59:38Z +2166 2005-06-17T23:51:21Z 4343 305 2005-06-27T01:06:21Z 2 2020-02-15T06:59:38Z +2167 2005-06-17T23:51:28Z 3796 307 2005-06-21T00:43:28Z 2 2020-02-15T06:59:38Z +2168 2005-06-17T23:53:24Z 802 308 2005-06-20T01:11:24Z 1 2020-02-15T06:59:38Z +2169 2005-06-17T23:57:23Z 785 120 2005-06-19T20:14:23Z 2 2020-02-15T06:59:38Z +2170 2005-06-17T23:57:34Z 3989 42 2005-06-22T03:37:34Z 2 2020-02-15T06:59:38Z +2171 2005-06-18T00:06:04Z 1768 147 2005-06-24T18:09:04Z 2 2020-02-15T06:59:38Z +2172 2005-06-18T00:06:16Z 2912 457 2005-06-26T00:50:16Z 1 2020-02-15T06:59:38Z +2173 2005-06-18T00:08:20Z 995 65 2005-06-25T05:30:20Z 1 2020-02-15T06:59:38Z +2174 2005-06-18T00:09:01Z 3279 520 2005-06-25T23:14:01Z 1 2020-02-15T06:59:38Z +2175 2005-06-18T00:17:58Z 4038 17 2005-06-22T23:18:58Z 2 2020-02-15T06:59:38Z +2176 2005-06-18T00:29:51Z 4201 282 2005-06-21T01:41:51Z 1 2020-02-15T06:59:38Z +2177 2005-06-18T00:34:45Z 492 340 2005-06-26T18:40:45Z 1 2020-02-15T06:59:38Z +2178 2005-06-18T00:38:35Z 2950 260 2005-06-21T02:56:35Z 1 2020-02-15T06:59:38Z +2179 2005-06-18T00:41:36Z 4334 338 2005-06-19T02:17:36Z 1 2020-02-15T06:59:38Z +2180 2005-06-18T00:47:43Z 3564 497 2005-06-25T04:12:43Z 2 2020-02-15T06:59:38Z +2181 2005-06-18T00:48:31Z 3481 176 2005-06-25T06:43:31Z 2 2020-02-15T06:59:38Z +2182 2005-06-18T00:56:18Z 3494 454 2005-06-26T20:01:18Z 1 2020-02-15T06:59:38Z +2183 2005-06-18T01:06:01Z 1776 340 2005-06-22T01:20:01Z 1 2020-02-15T06:59:38Z +2184 2005-06-18T01:10:36Z 3468 537 2005-06-21T05:59:36Z 2 2020-02-15T06:59:38Z +2185 2005-06-18T01:12:22Z 4326 198 2005-06-20T20:41:22Z 1 2020-02-15T06:59:38Z +2186 2005-06-18T01:15:27Z 2050 204 2005-06-21T06:16:27Z 1 2020-02-15T06:59:38Z +2187 2005-06-18T01:17:27Z 1385 477 2005-06-20T22:18:27Z 1 2020-02-15T06:59:38Z +2188 2005-06-18T01:19:04Z 712 183 2005-06-25T03:59:04Z 2 2020-02-15T06:59:38Z +2189 2005-06-18T01:20:26Z 249 500 2005-06-25T00:30:26Z 1 2020-02-15T06:59:38Z +2190 2005-06-18T01:29:51Z 4398 342 2005-06-26T04:31:51Z 2 2020-02-15T06:59:38Z +2191 2005-06-18T01:33:09Z 3369 58 2005-06-19T20:18:09Z 1 2020-02-15T06:59:38Z +2192 2005-06-18T01:35:47Z 1886 456 2005-06-23T23:38:47Z 2 2020-02-15T06:59:38Z +2193 2005-06-18T01:38:45Z 1013 112 2005-06-22T19:51:45Z 1 2020-02-15T06:59:38Z +2194 2005-06-18T01:41:37Z 1827 149 2005-06-25T04:27:37Z 1 2020-02-15T06:59:38Z +2195 2005-06-18T01:44:46Z 2247 286 2005-06-25T20:50:46Z 1 2020-02-15T06:59:38Z +2196 2005-06-18T01:47:07Z 1925 240 2005-06-26T03:18:07Z 2 2020-02-15T06:59:38Z +2197 2005-06-18T01:50:27Z 3350 103 2005-06-19T01:31:27Z 2 2020-02-15T06:59:38Z +2198 2005-06-18T01:51:22Z 1983 109 2005-06-26T06:57:22Z 2 2020-02-15T06:59:38Z +2199 2005-06-18T01:57:56Z 99 171 2005-06-23T20:34:56Z 2 2020-02-15T06:59:38Z +2200 2005-06-18T01:59:16Z 1085 229 2005-06-26T23:25:16Z 2 2020-02-15T06:59:38Z +2201 2005-06-18T02:08:27Z 1864 489 2005-06-23T01:40:27Z 1 2020-02-15T06:59:38Z +2202 2005-06-18T02:09:24Z 815 297 2005-06-26T07:17:24Z 2 2020-02-15T06:59:38Z +2203 2005-06-18T02:10:42Z 1347 46 2005-06-22T06:25:42Z 2 2020-02-15T06:59:38Z +2204 2005-06-18T02:11:38Z 1137 426 2005-06-24T00:28:38Z 1 2020-02-15T06:59:38Z +2205 2005-06-18T02:14:34Z 1245 593 2005-06-25T05:11:34Z 1 2020-02-15T06:59:38Z +2206 2005-06-18T02:14:45Z 3651 438 2005-06-24T23:20:45Z 2 2020-02-15T06:59:38Z +2207 2005-06-18T02:19:21Z 182 78 2005-06-24T02:25:21Z 2 2020-02-15T06:59:38Z +2208 2005-06-18T02:22:07Z 2345 132 2005-06-23T07:24:07Z 2 2020-02-15T06:59:38Z +2209 2005-06-18T02:24:01Z 2441 13 2005-06-22T04:13:01Z 2 2020-02-15T06:59:38Z +2210 2005-06-18T02:27:01Z 219 108 2005-06-21T00:45:01Z 1 2020-02-15T06:59:38Z +2211 2005-06-18T02:29:10Z 4114 166 2005-06-22T02:02:10Z 1 2020-02-15T06:59:38Z +2212 2005-06-18T02:36:10Z 2458 336 2005-06-19T21:21:10Z 1 2020-02-15T06:59:38Z +2213 2005-06-18T02:36:47Z 949 98 2005-06-23T05:02:47Z 1 2020-02-15T06:59:38Z +2214 2005-06-18T02:44:37Z 2430 366 2005-06-18T23:37:37Z 2 2020-02-15T06:59:38Z +2215 2005-06-18T02:48:21Z 2060 239 2005-06-22T01:03:21Z 2 2020-02-15T06:59:38Z +2216 2005-06-18T03:08:17Z 1428 320 2005-06-19T08:13:17Z 1 2020-02-15T06:59:38Z +2217 2005-06-18T03:12:29Z 2260 118 2005-06-20T06:08:29Z 1 2020-02-15T06:59:38Z +2218 2005-06-18T03:13:13Z 3577 176 2005-06-18T21:16:13Z 1 2020-02-15T06:59:38Z +2219 2005-06-18T03:16:54Z 1881 393 2005-06-22T01:29:54Z 1 2020-02-15T06:59:38Z +2220 2005-06-18T03:21:36Z 320 587 2005-06-21T07:45:36Z 2 2020-02-15T06:59:38Z +2221 2005-06-18T03:24:56Z 3905 156 2005-06-22T08:27:56Z 1 2020-02-15T06:59:38Z +2222 2005-06-18T03:26:23Z 3834 10 2005-06-26T08:50:23Z 2 2020-02-15T06:59:38Z +2223 2005-06-18T03:27:03Z 4068 303 2005-06-27T09:19:03Z 2 2020-02-15T06:59:38Z +2224 2005-06-18T03:33:58Z 1336 153 2005-06-18T22:10:58Z 1 2020-02-15T06:59:38Z +2225 2005-06-18T03:35:40Z 2829 503 2005-06-23T03:05:40Z 1 2020-02-15T06:59:38Z +2226 2005-06-18T03:39:56Z 3487 225 2005-06-24T07:26:56Z 2 2020-02-15T06:59:38Z +2227 2005-06-18T03:43:23Z 3623 200 2005-06-19T05:55:23Z 2 2020-02-15T06:59:38Z +2228 2005-06-18T03:44:50Z 490 383 2005-06-23T00:28:50Z 1 2020-02-15T06:59:38Z +2229 2005-06-18T03:50:18Z 2840 35 2005-06-26T07:16:18Z 2 2020-02-15T06:59:38Z +2230 2005-06-18T03:50:49Z 833 256 2005-06-25T01:12:49Z 2 2020-02-15T06:59:38Z +2231 2005-06-18T03:52:14Z 2280 35 2005-06-23T06:52:14Z 1 2020-02-15T06:59:38Z +2232 2005-06-18T03:54:31Z 2463 52 2005-06-22T07:29:31Z 1 2020-02-15T06:59:38Z +2233 2005-06-18T03:57:36Z 3063 31 2005-06-21T09:42:36Z 2 2020-02-15T06:59:38Z +2234 2005-06-18T04:01:28Z 234 182 2005-06-24T04:55:28Z 2 2020-02-15T06:59:38Z +2235 2005-06-18T04:08:50Z 3463 21 2005-06-27T07:58:50Z 1 2020-02-15T06:59:38Z +2236 2005-06-18T04:12:33Z 4001 375 2005-06-23T04:07:33Z 1 2020-02-15T06:59:38Z +2237 2005-06-18T04:17:44Z 1821 205 2005-06-27T09:08:44Z 1 2020-02-15T06:59:38Z +2238 2005-06-18T04:22:06Z 2859 251 2005-06-27T03:29:06Z 2 2020-02-15T06:59:38Z +2239 2005-06-18T04:23:54Z 4419 437 2005-06-26T00:12:54Z 2 2020-02-15T06:59:38Z +2240 2005-06-18T04:28:27Z 1409 122 2005-06-22T07:48:27Z 2 2020-02-15T06:59:38Z +2241 2005-06-18T04:31:41Z 921 406 2005-06-24T22:34:41Z 2 2020-02-15T06:59:38Z +2242 2005-06-18T04:32:28Z 1995 146 2005-06-24T03:26:28Z 2 2020-02-15T06:59:38Z +2243 2005-06-18T04:33:03Z 1254 328 2005-06-23T04:14:03Z 2 2020-02-15T06:59:38Z +2244 2005-06-18T04:46:33Z 3629 233 2005-06-20T04:28:33Z 1 2020-02-15T06:59:38Z +2245 2005-06-18T04:52:59Z 1496 194 2005-06-24T05:07:59Z 2 2020-02-15T06:59:38Z +2246 2005-06-18T04:54:29Z 4287 414 2005-06-22T09:14:29Z 1 2020-02-15T06:59:38Z +2248 2005-06-18T04:59:48Z 1999 446 2005-06-19T08:51:48Z 2 2020-02-15T06:59:38Z +2249 2005-06-18T05:03:08Z 117 285 2005-06-26T05:43:08Z 2 2020-02-15T06:59:38Z +2250 2005-06-18T05:03:36Z 4042 7 2005-06-22T02:25:36Z 2 2020-02-15T06:59:38Z +2251 2005-06-18T05:05:08Z 1458 143 2005-06-23T08:34:08Z 1 2020-02-15T06:59:38Z +2252 2005-06-18T05:05:18Z 1987 383 2005-06-21T08:19:18Z 1 2020-02-15T06:59:38Z +2253 2005-06-18T05:11:43Z 3719 122 2005-06-25T03:30:43Z 2 2020-02-15T06:59:38Z +2254 2005-06-18T05:15:14Z 1084 281 2005-06-27T04:10:14Z 2 2020-02-15T06:59:38Z +2255 2005-06-18T05:21:12Z 24 410 2005-06-26T09:19:12Z 1 2020-02-15T06:59:38Z +2256 2005-06-18T05:21:56Z 1863 93 2005-06-27T02:06:56Z 2 2020-02-15T06:59:38Z +2257 2005-06-18T05:29:52Z 2846 34 2005-06-22T00:19:52Z 1 2020-02-15T06:59:38Z +2258 2005-06-18T05:30:36Z 4573 292 2005-06-24T09:09:36Z 1 2020-02-15T06:59:38Z +2259 2005-06-18T05:37:45Z 4103 491 2005-06-21T01:51:45Z 1 2020-02-15T06:59:38Z +2260 2005-06-18T05:38:36Z 2773 297 2005-06-20T08:08:36Z 1 2020-02-15T06:59:38Z +2261 2005-06-18T05:46:15Z 1763 570 2005-06-24T05:06:15Z 1 2020-02-15T06:59:38Z +2262 2005-06-18T05:49:46Z 4172 218 2005-06-20T00:25:46Z 2 2020-02-15T06:59:38Z +2263 2005-06-18T05:57:47Z 3259 452 2005-06-20T06:13:47Z 1 2020-02-15T06:59:38Z +2264 2005-06-18T05:58:45Z 150 240 2005-06-19T00:57:45Z 1 2020-02-15T06:59:38Z +2265 2005-06-18T06:03:27Z 3069 267 2005-06-20T01:16:27Z 1 2020-02-15T06:59:38Z +2266 2005-06-18T06:05:02Z 2596 452 2005-06-20T06:54:02Z 1 2020-02-15T06:59:38Z +2267 2005-06-18T06:10:23Z 2086 218 2005-06-20T00:39:23Z 2 2020-02-15T06:59:38Z +2268 2005-06-18T06:13:41Z 4380 21 2005-06-22T08:53:41Z 2 2020-02-15T06:59:38Z +2269 2005-06-18T06:20:54Z 3088 431 2005-06-25T04:51:54Z 2 2020-02-15T06:59:38Z +2270 2005-06-18T06:29:01Z 3447 588 2005-06-26T07:21:01Z 2 2020-02-15T06:59:38Z +2271 2005-06-18T06:29:52Z 2416 145 2005-06-21T09:46:52Z 2 2020-02-15T06:59:38Z +2272 2005-06-18T06:29:53Z 1364 599 2005-06-23T10:58:53Z 1 2020-02-15T06:59:38Z +2273 2005-06-18T06:30:02Z 4456 327 2005-06-20T07:07:02Z 1 2020-02-15T06:59:38Z +2274 2005-06-18T06:31:15Z 3021 347 2005-06-21T01:24:15Z 2 2020-02-15T06:59:38Z +2275 2005-06-18T06:31:29Z 2805 354 2005-06-24T10:04:29Z 2 2020-02-15T06:59:38Z +2276 2005-06-18T06:33:48Z 1145 594 2005-06-25T00:50:48Z 2 2020-02-15T06:59:38Z +2277 2005-06-18T06:35:03Z 3770 224 2005-06-19T01:26:03Z 1 2020-02-15T06:59:38Z +2278 2005-06-18T06:37:57Z 1166 450 2005-06-22T10:57:57Z 1 2020-02-15T06:59:38Z +2279 2005-06-18T06:38:22Z 1953 554 2005-06-27T07:16:22Z 1 2020-02-15T06:59:38Z +2280 2005-06-18T06:46:54Z 4568 548 2005-06-26T09:48:54Z 2 2020-02-15T06:59:38Z +2281 2005-06-18T06:47:29Z 4212 431 2005-06-20T10:27:29Z 2 2020-02-15T06:59:38Z +2282 2005-06-18T06:48:23Z 4388 113 2005-06-24T11:04:23Z 2 2020-02-15T06:59:38Z +2283 2005-06-18T06:56:06Z 2056 507 2005-06-19T05:11:06Z 2 2020-02-15T06:59:38Z +2284 2005-06-18T06:59:51Z 2682 228 2005-06-24T04:58:51Z 2 2020-02-15T06:59:38Z +2285 2005-06-18T07:00:54Z 755 447 2005-06-25T08:58:54Z 2 2020-02-15T06:59:38Z +2286 2005-06-18T07:02:32Z 618 287 2005-06-27T12:33:32Z 1 2020-02-15T06:59:38Z +2287 2005-06-18T07:04:36Z 1473 317 2005-06-27T03:00:36Z 2 2020-02-15T06:59:38Z +2288 2005-06-18T07:23:17Z 877 247 2005-06-26T07:44:17Z 2 2020-02-15T06:59:38Z +2289 2005-06-18T07:29:43Z 2030 392 2005-06-24T11:16:43Z 2 2020-02-15T06:59:38Z +2290 2005-06-18T07:34:37Z 200 513 2005-06-26T11:45:37Z 1 2020-02-15T06:59:38Z +2291 2005-06-18T07:36:46Z 3949 436 2005-06-26T04:57:46Z 2 2020-02-15T06:59:38Z +2292 2005-06-18T07:37:48Z 173 130 2005-06-20T02:45:48Z 2 2020-02-15T06:59:38Z +2293 2005-06-18T07:45:03Z 3209 178 2005-06-24T08:12:03Z 1 2020-02-15T06:59:38Z +2294 2005-06-18T07:46:34Z 2096 72 2005-06-22T12:34:34Z 2 2020-02-15T06:59:38Z +2295 2005-06-18T07:56:18Z 3250 106 2005-06-21T07:10:18Z 1 2020-02-15T06:59:38Z +2296 2005-06-18T08:10:42Z 4558 481 2005-06-20T12:26:42Z 2 2020-02-15T06:59:38Z +2297 2005-06-18T08:17:41Z 2262 111 2005-06-26T05:08:41Z 2 2020-02-15T06:59:38Z +2298 2005-06-18T08:18:29Z 1227 497 2005-06-24T11:51:29Z 1 2020-02-15T06:59:38Z +2299 2005-06-18T08:18:52Z 4339 28 2005-06-26T11:48:52Z 1 2020-02-15T06:59:38Z +2300 2005-06-18T08:22:34Z 1617 291 2005-06-24T04:51:34Z 2 2020-02-15T06:59:38Z +2301 2005-06-18T08:24:03Z 869 273 2005-06-25T10:31:03Z 2 2020-02-15T06:59:38Z +2302 2005-06-18T08:27:33Z 1852 42 2005-06-22T02:46:33Z 2 2020-02-15T06:59:38Z +2303 2005-06-18T08:27:59Z 1524 329 2005-06-22T10:58:59Z 1 2020-02-15T06:59:38Z +2304 2005-06-18T08:30:15Z 3543 327 2005-06-23T06:17:15Z 1 2020-02-15T06:59:38Z +2305 2005-06-18T08:31:18Z 622 149 2005-06-24T06:18:18Z 2 2020-02-15T06:59:38Z +2306 2005-06-18T08:33:23Z 208 477 2005-06-27T10:01:23Z 2 2020-02-15T06:59:38Z +2307 2005-06-18T08:34:59Z 4576 47 2005-06-23T04:42:59Z 1 2020-02-15T06:59:38Z +2308 2005-06-18T08:41:48Z 197 1 2005-06-22T03:36:48Z 2 2020-02-15T06:59:38Z +2309 2005-06-18T08:43:24Z 611 576 2005-06-20T03:56:24Z 1 2020-02-15T06:59:38Z +2310 2005-06-18T08:45:59Z 2590 409 2005-06-26T05:06:59Z 2 2020-02-15T06:59:38Z +2311 2005-06-18T08:51:29Z 4506 236 2005-06-25T07:51:29Z 1 2020-02-15T06:59:38Z +2312 2005-06-18T08:55:46Z 402 184 2005-06-24T04:34:46Z 2 2020-02-15T06:59:38Z +2313 2005-06-18T08:56:45Z 3134 379 2005-06-26T10:30:45Z 2 2020-02-15T06:59:38Z +2314 2005-06-18T09:03:19Z 2157 160 2005-06-19T12:14:19Z 1 2020-02-15T06:59:38Z +2315 2005-06-18T09:03:39Z 2766 372 2005-06-22T11:18:39Z 1 2020-02-15T06:59:38Z +2316 2005-06-18T09:04:59Z 372 289 2005-06-20T09:39:59Z 2 2020-02-15T06:59:38Z +2317 2005-06-18T09:12:18Z 1602 326 2005-06-21T05:50:18Z 2 2020-02-15T06:59:38Z +2318 2005-06-18T09:13:54Z 2328 383 2005-06-23T07:19:54Z 1 2020-02-15T06:59:38Z +2319 2005-06-18T09:24:22Z 1521 393 2005-06-26T14:12:22Z 2 2020-02-15T06:59:38Z +2320 2005-06-18T09:24:50Z 597 552 2005-06-24T07:59:50Z 1 2020-02-15T06:59:38Z +2321 2005-06-18T09:42:42Z 1160 565 2005-06-25T14:28:42Z 1 2020-02-15T06:59:38Z +2322 2005-06-18T09:44:21Z 1893 213 2005-06-25T09:29:21Z 1 2020-02-15T06:59:38Z +2323 2005-06-18T09:55:02Z 207 54 2005-06-23T07:19:02Z 1 2020-02-15T06:59:38Z +2324 2005-06-18T10:00:33Z 2987 268 2005-06-23T14:10:33Z 1 2020-02-15T06:59:38Z +2325 2005-06-18T10:08:07Z 752 406 2005-06-21T15:07:07Z 1 2020-02-15T06:59:38Z +2326 2005-06-18T10:14:22Z 3829 174 2005-06-24T07:01:22Z 2 2020-02-15T06:59:38Z +2327 2005-06-18T10:16:40Z 1351 571 2005-06-20T15:06:40Z 1 2020-02-15T06:59:38Z +2328 2005-06-18T10:17:21Z 2304 441 2005-06-21T04:18:21Z 1 2020-02-15T06:59:38Z +2329 2005-06-18T10:22:52Z 4156 587 2005-06-20T12:03:52Z 2 2020-02-15T06:59:38Z +2330 2005-06-18T10:41:19Z 4285 390 2005-06-25T10:48:19Z 1 2020-02-15T06:59:38Z +2331 2005-06-18T10:50:09Z 1546 221 2005-06-25T14:30:09Z 1 2020-02-15T06:59:38Z +2332 2005-06-18T10:53:51Z 2152 140 2005-06-24T12:06:51Z 2 2020-02-15T06:59:38Z +2333 2005-06-18T10:55:54Z 2323 283 2005-06-25T07:09:54Z 2 2020-02-15T06:59:38Z +2334 2005-06-18T10:56:24Z 3076 223 2005-06-22T10:38:24Z 2 2020-02-15T06:59:38Z +2335 2005-06-18T10:59:36Z 3968 446 2005-06-26T06:42:36Z 2 2020-02-15T06:59:38Z +2336 2005-06-18T11:00:05Z 3888 124 2005-06-25T06:02:05Z 2 2020-02-15T06:59:38Z +2337 2005-06-18T11:15:27Z 4522 582 2005-06-26T06:59:27Z 2 2020-02-15T06:59:38Z +2338 2005-06-18T11:24:54Z 3165 316 2005-06-19T07:34:54Z 1 2020-02-15T06:59:38Z +2339 2005-06-18T11:29:22Z 313 297 2005-06-21T10:29:22Z 1 2020-02-15T06:59:38Z +2340 2005-06-18T11:30:56Z 1913 157 2005-06-23T06:00:56Z 1 2020-02-15T06:59:38Z +2341 2005-06-18T11:35:30Z 638 31 2005-06-27T11:56:30Z 2 2020-02-15T06:59:38Z +2342 2005-06-18T11:42:40Z 2169 146 2005-06-20T14:40:40Z 1 2020-02-15T06:59:38Z +2343 2005-06-18T11:46:26Z 4554 20 2005-06-22T11:37:26Z 2 2020-02-15T06:59:38Z +2344 2005-06-18T12:01:47Z 2015 498 2005-06-19T11:56:47Z 2 2020-02-15T06:59:38Z +2345 2005-06-18T12:03:23Z 1818 6 2005-06-22T14:25:23Z 2 2020-02-15T06:59:38Z +2346 2005-06-18T12:08:16Z 2575 308 2005-06-27T15:02:16Z 1 2020-02-15T06:59:38Z +2347 2005-06-18T12:12:29Z 4516 194 2005-06-23T14:03:29Z 1 2020-02-15T06:59:38Z +2348 2005-06-18T12:15:43Z 3622 449 2005-06-24T14:03:43Z 2 2020-02-15T06:59:38Z +2349 2005-06-18T12:25:14Z 1536 495 2005-06-19T11:24:14Z 2 2020-02-15T06:59:38Z +2350 2005-06-18T12:25:29Z 1179 471 2005-06-23T11:35:29Z 1 2020-02-15T06:59:38Z +2351 2005-06-18T12:27:57Z 2942 216 2005-06-23T16:14:57Z 1 2020-02-15T06:59:38Z +2352 2005-06-18T12:40:15Z 2141 590 2005-06-22T07:07:15Z 2 2020-02-15T06:59:38Z +2353 2005-06-18T12:53:25Z 3223 361 2005-06-19T13:53:25Z 1 2020-02-15T06:59:38Z +2354 2005-06-18T12:54:18Z 2793 77 2005-06-26T07:23:18Z 2 2020-02-15T06:59:38Z +2355 2005-06-18T12:57:06Z 3613 125 2005-06-26T07:32:06Z 1 2020-02-15T06:59:38Z +2356 2005-06-18T12:59:23Z 2207 455 2005-06-21T10:12:23Z 2 2020-02-15T06:59:38Z +2357 2005-06-18T12:59:41Z 1323 561 2005-06-26T16:40:41Z 1 2020-02-15T06:59:38Z +2358 2005-06-18T13:00:51Z 1728 478 2005-06-26T12:58:51Z 1 2020-02-15T06:59:38Z +2359 2005-06-18T13:04:42Z 3087 201 2005-06-25T11:52:42Z 1 2020-02-15T06:59:38Z +2360 2005-06-18T13:11:13Z 37 57 2005-06-23T15:32:13Z 2 2020-02-15T06:59:38Z +2361 2005-06-18T13:19:05Z 3547 546 2005-06-23T07:59:05Z 1 2020-02-15T06:59:38Z +2362 2005-06-18T13:31:15Z 2815 514 2005-06-19T12:35:15Z 1 2020-02-15T06:59:38Z +2363 2005-06-18T13:33:59Z 3497 1 2005-06-19T17:40:59Z 1 2020-02-15T06:59:38Z +2364 2005-06-18T13:37:32Z 2856 512 2005-06-23T14:18:32Z 1 2020-02-15T06:59:38Z +2365 2005-06-18T13:45:34Z 3109 493 2005-06-21T12:12:34Z 2 2020-02-15T06:59:38Z +2366 2005-06-18T13:46:39Z 1413 162 2005-06-23T18:49:39Z 2 2020-02-15T06:59:38Z +2367 2005-06-18T14:00:31Z 4086 566 2005-06-22T14:45:31Z 2 2020-02-15T06:59:38Z +2368 2005-06-18T14:10:27Z 1058 99 2005-06-23T10:49:27Z 1 2020-02-15T06:59:38Z +2369 2005-06-18T14:25:29Z 1515 44 2005-06-23T18:45:29Z 2 2020-02-15T06:59:38Z +2370 2005-06-18T14:29:54Z 2656 489 2005-06-24T10:23:54Z 1 2020-02-15T06:59:38Z +2371 2005-06-18T14:35:29Z 178 248 2005-06-22T09:38:29Z 2 2020-02-15T06:59:38Z +2372 2005-06-18T14:37:37Z 1567 96 2005-06-21T08:40:37Z 2 2020-02-15T06:59:38Z +2373 2005-06-18T14:37:57Z 2780 544 2005-06-23T19:29:57Z 2 2020-02-15T06:59:38Z +2374 2005-06-18T14:44:06Z 2634 71 2005-06-22T17:14:06Z 1 2020-02-15T06:59:38Z +2375 2005-06-18T14:47:29Z 2175 259 2005-06-26T13:52:29Z 2 2020-02-15T06:59:38Z +2376 2005-06-18T14:55:30Z 3664 479 2005-06-25T17:40:30Z 1 2020-02-15T06:59:38Z +2377 2005-06-18T14:56:23Z 3568 193 2005-06-27T12:36:23Z 1 2020-02-15T06:59:38Z +2378 2005-06-18T14:57:49Z 2796 384 2005-06-26T18:23:49Z 2 2020-02-15T06:59:38Z +2379 2005-06-18T14:59:39Z 2708 597 2005-06-24T13:26:39Z 2 2020-02-15T06:59:38Z +2380 2005-06-18T15:00:04Z 4413 256 2005-06-24T13:29:04Z 2 2020-02-15T06:59:38Z +2381 2005-06-18T15:00:30Z 1491 167 2005-06-22T11:38:30Z 1 2020-02-15T06:59:38Z +2382 2005-06-18T15:03:52Z 915 568 2005-06-20T10:16:52Z 2 2020-02-15T06:59:38Z +2383 2005-06-18T15:17:59Z 2459 149 2005-06-26T18:42:59Z 2 2020-02-15T06:59:38Z +2384 2005-06-18T15:18:49Z 3378 132 2005-06-21T18:10:49Z 1 2020-02-15T06:59:38Z +2385 2005-06-18T15:22:40Z 1641 298 2005-06-26T10:02:40Z 1 2020-02-15T06:59:38Z +2386 2005-06-18T15:22:51Z 1361 293 2005-06-22T20:01:51Z 1 2020-02-15T06:59:38Z +2387 2005-06-18T15:24:19Z 692 289 2005-06-25T17:41:19Z 2 2020-02-15T06:59:38Z +2388 2005-06-18T15:26:30Z 2923 53 2005-06-20T20:24:30Z 1 2020-02-15T06:59:38Z +2389 2005-06-18T15:27:47Z 731 382 2005-06-21T12:26:47Z 1 2020-02-15T06:59:38Z +2390 2005-06-18T15:29:26Z 2748 239 2005-06-23T17:50:26Z 1 2020-02-15T06:59:38Z +2391 2005-06-18T15:33:30Z 2850 491 2005-06-25T14:30:30Z 1 2020-02-15T06:59:38Z +2392 2005-06-18T15:34:18Z 2213 261 2005-06-19T16:22:18Z 1 2020-02-15T06:59:38Z +2393 2005-06-18T15:37:55Z 3143 21 2005-06-25T17:11:55Z 1 2020-02-15T06:59:38Z +2394 2005-06-18T15:42:30Z 2669 60 2005-06-26T16:12:30Z 1 2020-02-15T06:59:38Z +2395 2005-06-18T15:45:15Z 899 544 2005-06-27T19:11:15Z 2 2020-02-15T06:59:38Z +2396 2005-06-18T15:49:48Z 1986 31 2005-06-27T20:31:48Z 2 2020-02-15T06:59:38Z +2397 2005-06-18T15:51:25Z 2895 76 2005-06-24T15:52:25Z 1 2020-02-15T06:59:38Z +2398 2005-06-18T15:56:53Z 3001 526 2005-06-27T14:25:53Z 2 2020-02-15T06:59:38Z +2399 2005-06-18T16:06:14Z 2492 577 2005-06-26T16:56:14Z 2 2020-02-15T06:59:38Z +2400 2005-06-18T16:10:46Z 3194 410 2005-06-25T20:34:46Z 1 2020-02-15T06:59:38Z +2401 2005-06-18T16:22:03Z 85 359 2005-06-19T13:49:03Z 2 2020-02-15T06:59:38Z +2402 2005-06-18T16:24:45Z 2833 360 2005-06-27T14:39:45Z 1 2020-02-15T06:59:38Z +2403 2005-06-18T16:33:22Z 2697 536 2005-06-23T19:25:22Z 1 2020-02-15T06:59:38Z +2404 2005-06-18T16:33:48Z 4138 456 2005-06-23T20:39:48Z 2 2020-02-15T06:59:38Z +2405 2005-06-18T16:36:38Z 3604 356 2005-06-21T19:15:38Z 1 2020-02-15T06:59:38Z +2406 2005-06-18T16:39:37Z 1321 497 2005-06-23T12:04:37Z 1 2020-02-15T06:59:38Z +2407 2005-06-18T16:50:41Z 2547 421 2005-06-24T15:29:41Z 2 2020-02-15T06:59:38Z +2408 2005-06-18T16:50:44Z 258 87 2005-06-19T20:11:44Z 1 2020-02-15T06:59:38Z +2409 2005-06-18T16:53:33Z 656 84 2005-06-20T18:23:33Z 1 2020-02-15T06:59:38Z +2410 2005-06-18T16:55:08Z 265 381 2005-06-20T12:40:08Z 2 2020-02-15T06:59:38Z +2411 2005-06-18T16:55:54Z 3302 558 2005-06-25T12:44:54Z 1 2020-02-15T06:59:38Z +2412 2005-06-18T16:58:58Z 1946 127 2005-06-27T22:57:58Z 1 2020-02-15T06:59:38Z +2413 2005-06-18T16:59:34Z 1851 170 2005-06-27T16:10:34Z 2 2020-02-15T06:59:38Z +2414 2005-06-18T17:01:55Z 4500 275 2005-06-20T17:42:55Z 1 2020-02-15T06:59:38Z +2415 2005-06-18T17:02:42Z 3105 434 2005-06-25T13:16:42Z 2 2020-02-15T06:59:38Z +2416 2005-06-18T17:07:34Z 2868 26 2005-06-24T19:16:34Z 1 2020-02-15T06:59:38Z +2417 2005-06-18T17:12:01Z 1956 219 2005-06-26T13:32:01Z 1 2020-02-15T06:59:38Z +2418 2005-06-18T17:14:42Z 2756 381 2005-06-26T16:33:42Z 1 2020-02-15T06:59:38Z +2419 2005-06-18T17:21:24Z 1255 102 2005-06-26T18:25:24Z 1 2020-02-15T06:59:38Z +2420 2005-06-18T17:22:28Z 241 502 2005-06-23T17:45:28Z 1 2020-02-15T06:59:38Z +2421 2005-06-18T17:25:05Z 3524 26 2005-06-23T21:09:05Z 2 2020-02-15T06:59:38Z +2422 2005-06-18T17:28:57Z 3170 527 2005-06-23T15:22:57Z 1 2020-02-15T06:59:38Z +2423 2005-06-18T17:32:08Z 1744 231 2005-06-21T11:58:08Z 1 2020-02-15T06:59:38Z +2424 2005-06-18T17:35:08Z 1884 233 2005-06-23T15:33:08Z 1 2020-02-15T06:59:38Z +2425 2005-06-18T17:37:45Z 2630 579 2005-06-27T18:40:45Z 2 2020-02-15T06:59:38Z +2426 2005-06-18T17:40:44Z 474 543 2005-06-22T14:30:44Z 2 2020-02-15T06:59:38Z +2427 2005-06-18T17:45:00Z 4278 176 2005-06-27T20:07:00Z 2 2020-02-15T06:59:38Z +2428 2005-06-18T17:47:34Z 3892 241 2005-06-19T14:39:34Z 2 2020-02-15T06:59:38Z +2429 2005-06-18T17:48:28Z 3238 583 2005-06-27T15:52:28Z 1 2020-02-15T06:59:38Z +2430 2005-06-18T17:51:46Z 1984 434 2005-06-23T19:17:46Z 1 2020-02-15T06:59:38Z +2431 2005-06-18T17:53:03Z 1383 295 2005-06-25T15:08:03Z 2 2020-02-15T06:59:38Z +2432 2005-06-18T17:59:18Z 4420 250 2005-06-25T15:19:18Z 2 2020-02-15T06:59:38Z +2433 2005-06-18T18:10:17Z 937 356 2005-06-23T14:46:17Z 2 2020-02-15T06:59:38Z +2434 2005-06-18T18:11:51Z 3739 12 2005-06-23T12:52:51Z 2 2020-02-15T06:59:38Z +2435 2005-06-18T18:12:26Z 3548 173 2005-06-22T13:43:26Z 2 2020-02-15T06:59:38Z +2436 2005-06-18T18:13:32Z 3328 534 2005-06-21T13:33:32Z 2 2020-02-15T06:59:38Z +2437 2005-06-18T18:30:26Z 1799 454 2005-06-21T18:36:26Z 1 2020-02-15T06:59:38Z +2438 2005-06-18T18:34:21Z 184 31 2005-06-19T16:50:21Z 1 2020-02-15T06:59:38Z +2439 2005-06-18T18:35:04Z 909 39 2005-06-21T19:47:04Z 2 2020-02-15T06:59:38Z +2440 2005-06-18T18:41:09Z 2866 380 2005-06-22T12:46:09Z 1 2020-02-15T06:59:38Z +2441 2005-06-18T18:45:11Z 3148 593 2005-06-20T00:42:11Z 1 2020-02-15T06:59:38Z +2442 2005-06-18T18:49:18Z 4045 364 2005-06-22T16:18:18Z 1 2020-02-15T06:59:38Z +2443 2005-06-18T18:52:30Z 1622 233 2005-06-24T21:27:30Z 1 2020-02-15T06:59:38Z +2444 2005-06-18T18:58:12Z 2233 576 2005-06-27T20:48:12Z 1 2020-02-15T06:59:38Z +2445 2005-06-18T19:02:11Z 2887 98 2005-06-23T22:25:11Z 1 2020-02-15T06:59:38Z +2446 2005-06-18T19:04:41Z 1283 466 2005-06-27T17:10:41Z 2 2020-02-15T06:59:38Z +2447 2005-06-18T19:10:55Z 2353 523 2005-06-27T16:35:55Z 1 2020-02-15T06:59:38Z +2448 2005-06-18T19:13:45Z 1642 308 2005-06-27T14:43:45Z 1 2020-02-15T06:59:38Z +2449 2005-06-18T19:18:36Z 3630 498 2005-06-27T23:49:36Z 1 2020-02-15T06:59:38Z +2450 2005-06-18T19:25:47Z 863 230 2005-06-27T15:54:47Z 1 2020-02-15T06:59:38Z +2451 2005-06-18T19:28:02Z 835 24 2005-06-23T16:41:02Z 1 2020-02-15T06:59:38Z +2452 2005-06-18T19:29:21Z 4318 77 2005-06-26T22:27:21Z 1 2020-02-15T06:59:38Z +2453 2005-06-18T19:30:53Z 2562 588 2005-06-20T17:22:53Z 1 2020-02-15T06:59:38Z +2454 2005-06-18T19:32:51Z 314 253 2005-06-24T20:03:51Z 2 2020-02-15T06:59:38Z +2455 2005-06-18T19:33:06Z 870 241 2005-06-21T15:21:06Z 1 2020-02-15T06:59:38Z +2456 2005-06-18T19:36:50Z 553 147 2005-06-23T22:48:50Z 1 2020-02-15T06:59:38Z +2457 2005-06-18T19:38:20Z 1277 91 2005-06-26T20:48:20Z 1 2020-02-15T06:59:38Z +2458 2005-06-18T19:39:05Z 599 572 2005-06-21T13:54:05Z 2 2020-02-15T06:59:38Z +2459 2005-06-18T19:44:08Z 1024 185 2005-06-23T19:14:08Z 2 2020-02-15T06:59:38Z +2460 2005-06-18T19:54:13Z 3933 553 2005-06-27T22:36:13Z 2 2020-02-15T06:59:38Z +2461 2005-06-18T19:58:12Z 78 343 2005-06-28T01:35:12Z 2 2020-02-15T06:59:38Z +2462 2005-06-18T20:00:15Z 2151 468 2005-06-21T21:54:15Z 2 2020-02-15T06:59:38Z +2463 2005-06-18T20:01:43Z 1186 194 2005-06-25T15:04:43Z 2 2020-02-15T06:59:38Z +2464 2005-06-18T20:06:05Z 463 380 2005-06-20T19:22:05Z 1 2020-02-15T06:59:38Z +2465 2005-06-18T20:07:02Z 3783 160 2005-06-25T20:55:02Z 1 2020-02-15T06:59:38Z +2466 2005-06-18T20:18:42Z 1356 427 2005-06-20T01:32:42Z 1 2020-02-15T06:59:38Z +2467 2005-06-18T20:20:05Z 4387 177 2005-06-20T17:01:05Z 1 2020-02-15T06:59:38Z +2468 2005-06-18T20:23:52Z 1833 382 2005-06-23T14:34:52Z 1 2020-02-15T06:59:38Z +2469 2005-06-18T20:24:23Z 1993 137 2005-06-27T15:39:23Z 1 2020-02-15T06:59:38Z +2470 2005-06-18T20:28:31Z 4319 40 2005-06-25T18:48:31Z 1 2020-02-15T06:59:38Z +2471 2005-06-18T20:31:00Z 3399 183 2005-06-24T18:01:00Z 2 2020-02-15T06:59:38Z +2472 2005-06-18T20:32:40Z 4556 70 2005-06-20T00:40:40Z 2 2020-02-15T06:59:38Z +2473 2005-06-18T20:42:45Z 3876 221 2005-06-19T20:17:45Z 1 2020-02-15T06:59:38Z +2474 2005-06-18T20:51:34Z 3450 151 2005-06-25T01:39:34Z 1 2020-02-15T06:59:38Z +2475 2005-06-18T20:52:46Z 889 336 2005-06-21T19:40:46Z 2 2020-02-15T06:59:38Z +2476 2005-06-18T20:57:12Z 3998 334 2005-06-20T15:42:12Z 1 2020-02-15T06:59:38Z +2477 2005-06-18T20:58:46Z 2510 206 2005-06-22T21:49:46Z 1 2020-02-15T06:59:38Z +2478 2005-06-18T21:01:21Z 2798 241 2005-06-24T00:20:21Z 1 2020-02-15T06:59:38Z +2479 2005-06-18T21:03:08Z 1624 408 2005-06-22T16:49:08Z 1 2020-02-15T06:59:38Z +2480 2005-06-18T21:04:09Z 4078 310 2005-06-22T16:24:09Z 1 2020-02-15T06:59:38Z +2481 2005-06-18T21:08:30Z 800 322 2005-06-23T02:35:30Z 2 2020-02-15T06:59:38Z +2482 2005-06-18T21:10:44Z 452 122 2005-06-19T20:39:44Z 1 2020-02-15T06:59:38Z +2483 2005-06-18T21:22:23Z 4225 88 2005-06-25T01:14:23Z 1 2020-02-15T06:59:38Z +2484 2005-06-18T21:25:23Z 1511 515 2005-06-24T16:03:23Z 2 2020-02-15T06:59:38Z +2485 2005-06-18T21:26:03Z 1562 56 2005-06-21T22:09:03Z 2 2020-02-15T06:59:38Z +2486 2005-06-18T21:26:56Z 268 15 2005-06-22T23:42:56Z 1 2020-02-15T06:59:38Z +2487 2005-06-18T21:32:54Z 3683 374 2005-06-23T21:11:54Z 2 2020-02-15T06:59:38Z +2488 2005-06-18T21:38:26Z 1338 403 2005-06-24T02:08:26Z 2 2020-02-15T06:59:38Z +2489 2005-06-18T22:00:44Z 4012 382 2005-06-22T02:06:44Z 2 2020-02-15T06:59:38Z +2490 2005-06-18T22:00:50Z 1934 402 2005-06-19T23:45:50Z 2 2020-02-15T06:59:38Z +2491 2005-06-18T22:01:31Z 1779 316 2005-06-26T02:46:31Z 1 2020-02-15T06:59:38Z +2492 2005-06-18T22:04:15Z 2858 237 2005-06-23T21:58:15Z 1 2020-02-15T06:59:38Z +2493 2005-06-18T22:12:09Z 4121 269 2005-06-27T23:44:09Z 1 2020-02-15T06:59:38Z +2494 2005-06-18T22:15:09Z 1313 434 2005-06-25T17:23:09Z 1 2020-02-15T06:59:38Z +2495 2005-06-18T22:15:42Z 3826 338 2005-06-21T23:21:42Z 1 2020-02-15T06:59:38Z +2496 2005-06-18T22:20:11Z 646 527 2005-06-20T03:08:11Z 2 2020-02-15T06:59:38Z +2497 2005-06-18T22:50:40Z 2327 171 2005-06-26T22:39:40Z 1 2020-02-15T06:59:38Z +2498 2005-06-18T22:56:26Z 2291 74 2005-06-22T20:02:26Z 1 2020-02-15T06:59:38Z +2499 2005-06-18T23:01:36Z 3172 348 2005-06-20T21:50:36Z 2 2020-02-15T06:59:38Z +2500 2005-06-18T23:07:12Z 4241 12 2005-06-26T17:27:12Z 1 2020-02-15T06:59:38Z +2501 2005-06-18T23:10:11Z 1185 450 2005-06-24T18:40:11Z 2 2020-02-15T06:59:38Z +2502 2005-06-18T23:12:13Z 2622 325 2005-06-20T04:19:13Z 2 2020-02-15T06:59:38Z +2503 2005-06-18T23:17:19Z 2486 176 2005-06-23T03:57:19Z 2 2020-02-15T06:59:38Z +2504 2005-06-18T23:19:53Z 1684 452 2005-06-21T04:43:53Z 2 2020-02-15T06:59:38Z +2505 2005-06-18T23:28:27Z 1670 519 2005-06-26T01:36:27Z 1 2020-02-15T06:59:38Z +2506 2005-06-18T23:29:53Z 2308 82 2005-06-25T18:11:53Z 2 2020-02-15T06:59:38Z +2507 2005-06-18T23:39:22Z 3121 325 2005-06-21T19:23:22Z 1 2020-02-15T06:59:38Z +2508 2005-06-18T23:43:58Z 4322 476 2005-06-20T19:26:58Z 2 2020-02-15T06:59:38Z +2509 2005-06-18T23:44:08Z 4469 213 2005-06-20T01:36:08Z 2 2020-02-15T06:59:38Z +2510 2005-06-18T23:44:21Z 3827 384 2005-06-24T00:31:21Z 1 2020-02-15T06:59:38Z +2511 2005-06-18T23:45:30Z 1824 234 2005-06-24T01:21:30Z 2 2020-02-15T06:59:38Z +2512 2005-06-18T23:48:47Z 4515 27 2005-06-21T04:58:47Z 2 2020-02-15T06:59:38Z +2513 2005-06-18T23:53:15Z 3379 515 2005-06-24T21:16:15Z 2 2020-02-15T06:59:38Z +2514 2005-06-18T23:56:44Z 2559 382 2005-06-23T21:10:44Z 1 2020-02-15T06:59:38Z +2515 2005-06-18T23:57:31Z 3213 188 2005-06-22T05:31:31Z 2 2020-02-15T06:59:38Z +2516 2005-06-19T00:03:28Z 2678 87 2005-06-21T00:30:28Z 2 2020-02-15T06:59:38Z +2517 2005-06-19T00:11:26Z 53 74 2005-06-25T02:19:26Z 1 2020-02-15T06:59:38Z +2518 2005-06-19T00:16:23Z 3503 86 2005-06-25T19:28:23Z 2 2020-02-15T06:59:38Z +2519 2005-06-19T00:19:21Z 1172 128 2005-06-25T01:46:21Z 1 2020-02-15T06:59:38Z +2520 2005-06-19T00:29:00Z 4181 446 2005-06-28T04:36:00Z 1 2020-02-15T06:59:38Z +2521 2005-06-19T00:41:08Z 132 92 2005-06-22T00:40:08Z 1 2020-02-15T06:59:38Z +2522 2005-06-19T00:43:42Z 550 579 2005-06-28T04:26:42Z 1 2020-02-15T06:59:38Z +2523 2005-06-19T00:45:56Z 460 89 2005-06-21T00:54:56Z 2 2020-02-15T06:59:38Z +2524 2005-06-19T00:48:11Z 441 465 2005-06-25T01:46:11Z 2 2020-02-15T06:59:38Z +2525 2005-06-19T00:48:22Z 1307 365 2005-06-24T19:10:22Z 2 2020-02-15T06:59:38Z +2526 2005-06-19T01:03:07Z 3309 500 2005-06-28T06:57:07Z 1 2020-02-15T06:59:38Z +2527 2005-06-19T01:10:31Z 387 463 2005-06-20T05:37:31Z 2 2020-02-15T06:59:38Z +2528 2005-06-19T01:14:12Z 1836 331 2005-06-26T05:08:12Z 2 2020-02-15T06:59:38Z +2529 2005-06-19T01:18:27Z 2306 478 2005-06-24T00:26:27Z 1 2020-02-15T06:59:38Z +2530 2005-06-19T01:20:00Z 4166 31 2005-06-23T04:10:00Z 1 2020-02-15T06:59:38Z +2531 2005-06-19T01:20:49Z 768 368 2005-06-22T01:50:49Z 2 2020-02-15T06:59:38Z +2532 2005-06-19T01:27:46Z 1870 26 2005-06-20T02:15:46Z 1 2020-02-15T06:59:38Z +2533 2005-06-19T01:34:26Z 4564 187 2005-06-22T20:19:26Z 1 2020-02-15T06:59:38Z +2534 2005-06-19T01:38:39Z 2540 517 2005-06-23T00:16:39Z 1 2020-02-15T06:59:38Z +2535 2005-06-19T01:39:04Z 901 130 2005-06-28T01:33:04Z 2 2020-02-15T06:59:38Z +2536 2005-06-19T01:41:34Z 4232 163 2005-06-27T03:11:34Z 1 2020-02-15T06:59:38Z +2537 2005-06-19T01:52:21Z 3499 388 2005-06-26T02:09:21Z 1 2020-02-15T06:59:38Z +2538 2005-06-19T01:56:59Z 1287 472 2005-06-25T00:54:59Z 2 2020-02-15T06:59:38Z +2539 2005-06-19T01:58:39Z 4474 527 2005-06-19T22:17:39Z 2 2020-02-15T06:59:38Z +2540 2005-06-19T02:04:48Z 4305 363 2005-06-20T22:42:48Z 2 2020-02-15T06:59:38Z +2541 2005-06-19T02:08:10Z 129 360 2005-06-23T23:32:10Z 1 2020-02-15T06:59:38Z +2542 2005-06-19T02:08:39Z 1446 67 2005-06-26T20:25:39Z 1 2020-02-15T06:59:38Z +2543 2005-06-19T02:14:11Z 1729 58 2005-06-21T00:40:11Z 2 2020-02-15T06:59:38Z +2544 2005-06-19T02:16:17Z 1465 558 2005-06-22T21:45:17Z 1 2020-02-15T06:59:38Z +2545 2005-06-19T02:23:36Z 3237 413 2005-06-20T03:17:36Z 2 2020-02-15T06:59:38Z +2546 2005-06-19T02:39:39Z 971 272 2005-06-23T03:56:39Z 2 2020-02-15T06:59:38Z +2547 2005-06-19T02:44:17Z 4560 162 2005-06-24T08:01:17Z 2 2020-02-15T06:59:38Z +2548 2005-06-19T02:45:35Z 4292 561 2005-06-22T06:52:35Z 2 2020-02-15T06:59:38Z +2549 2005-06-19T02:46:39Z 3854 495 2005-06-26T22:30:39Z 2 2020-02-15T06:59:38Z +2550 2005-06-19T02:49:55Z 1370 38 2005-06-24T01:37:55Z 1 2020-02-15T06:59:38Z +2551 2005-06-19T02:51:04Z 2007 444 2005-06-28T05:02:04Z 1 2020-02-15T06:59:38Z +2552 2005-06-19T03:01:29Z 664 389 2005-06-28T04:13:29Z 1 2020-02-15T06:59:38Z +2553 2005-06-19T03:04:59Z 923 473 2005-06-26T02:36:59Z 2 2020-02-15T06:59:38Z +2554 2005-06-19T03:05:38Z 3916 322 2005-06-25T23:03:38Z 1 2020-02-15T06:59:38Z +2555 2005-06-19T03:07:02Z 260 191 2005-06-25T05:25:02Z 2 2020-02-15T06:59:38Z +2556 2005-06-19T03:07:32Z 125 377 2005-06-23T23:09:32Z 1 2020-02-15T06:59:38Z +2557 2005-06-19T03:08:51Z 4546 257 2005-06-20T07:59:51Z 1 2020-02-15T06:59:38Z +2558 2005-06-19T03:09:16Z 2920 361 2005-06-24T05:29:16Z 1 2020-02-15T06:59:38Z +2559 2005-06-19T03:09:46Z 4433 414 2005-06-28T07:49:46Z 1 2020-02-15T06:59:38Z +2560 2005-06-19T03:12:42Z 3340 309 2005-06-28T02:28:42Z 1 2020-02-15T06:59:38Z +2561 2005-06-19T03:14:52Z 4128 256 2005-06-21T02:42:52Z 2 2020-02-15T06:59:38Z +2562 2005-06-19T03:15:05Z 51 265 2005-06-21T08:26:05Z 2 2020-02-15T06:59:38Z +2563 2005-06-19T03:24:17Z 1935 41 2005-06-23T04:08:17Z 2 2020-02-15T06:59:38Z +2564 2005-06-19T03:41:10Z 4008 408 2005-06-24T03:10:10Z 1 2020-02-15T06:59:38Z +2565 2005-06-19T03:44:03Z 2347 128 2005-06-24T01:26:03Z 2 2020-02-15T06:59:38Z +2566 2005-06-19T03:45:39Z 495 486 2005-06-25T08:43:39Z 2 2020-02-15T06:59:38Z +2567 2005-06-19T04:04:46Z 216 496 2005-06-19T23:39:46Z 2 2020-02-15T06:59:38Z +2568 2005-06-19T04:09:03Z 3032 190 2005-06-24T23:24:03Z 1 2020-02-15T06:59:38Z +2569 2005-06-19T04:19:04Z 30 213 2005-06-26T04:31:04Z 1 2020-02-15T06:59:38Z +2570 2005-06-19T04:20:13Z 1105 5 2005-06-25T07:00:13Z 1 2020-02-15T06:59:38Z +2571 2005-06-19T04:20:14Z 1800 66 2005-06-21T07:28:14Z 2 2020-02-15T06:59:38Z +2572 2005-06-19T04:21:26Z 2449 159 2005-06-23T09:22:26Z 2 2020-02-15T06:59:38Z +2573 2005-06-19T04:23:18Z 3354 563 2005-06-23T06:04:18Z 1 2020-02-15T06:59:38Z +2574 2005-06-19T04:23:52Z 3320 143 2005-06-20T05:24:52Z 1 2020-02-15T06:59:38Z +2575 2005-06-19T04:32:52Z 354 336 2005-06-24T09:37:52Z 1 2020-02-15T06:59:38Z +2576 2005-06-19T04:34:15Z 2928 559 2005-06-28T10:02:15Z 2 2020-02-15T06:59:38Z +2577 2005-06-19T04:36:03Z 447 66 2005-06-28T00:38:03Z 2 2020-02-15T06:59:38Z +2578 2005-06-19T04:40:06Z 1695 267 2005-06-26T09:37:06Z 2 2020-02-15T06:59:38Z +2579 2005-06-19T04:40:44Z 3836 493 2005-06-22T09:22:44Z 1 2020-02-15T06:59:38Z +2580 2005-06-19T04:44:30Z 2527 219 2005-06-23T04:15:30Z 1 2020-02-15T06:59:38Z +2581 2005-06-19T04:54:13Z 376 456 2005-06-23T23:28:13Z 2 2020-02-15T06:59:38Z +2582 2005-06-19T04:56:27Z 201 267 2005-06-26T08:56:27Z 2 2020-02-15T06:59:38Z +2583 2005-06-19T05:01:40Z 3999 523 2005-06-28T00:04:40Z 1 2020-02-15T06:59:38Z +2584 2005-06-19T05:02:36Z 3733 90 2005-06-28T04:52:36Z 2 2020-02-15T06:59:38Z +2585 2005-06-19T05:05:03Z 91 406 2005-06-20T09:28:03Z 1 2020-02-15T06:59:38Z +2586 2005-06-19T05:05:11Z 4104 537 2005-06-27T00:23:11Z 1 2020-02-15T06:59:38Z +2587 2005-06-19T05:06:14Z 2188 331 2005-06-24T10:50:14Z 2 2020-02-15T06:59:38Z +2588 2005-06-19T05:20:31Z 3626 143 2005-06-22T04:20:31Z 2 2020-02-15T06:59:38Z +2589 2005-06-19T05:21:27Z 225 164 2005-06-21T09:55:27Z 2 2020-02-15T06:59:38Z +2590 2005-06-19T05:31:40Z 3572 324 2005-06-20T07:58:40Z 2 2020-02-15T06:59:38Z +2591 2005-06-19T05:32:22Z 4481 438 2005-06-25T23:42:22Z 1 2020-02-15T06:59:38Z +2592 2005-06-19T05:36:54Z 282 208 2005-06-21T08:44:54Z 1 2020-02-15T06:59:38Z +2593 2005-06-19T05:40:11Z 2031 556 2005-06-28T08:11:11Z 1 2020-02-15T06:59:38Z +2594 2005-06-19T05:43:43Z 829 123 2005-06-25T03:41:43Z 2 2020-02-15T06:59:38Z +2595 2005-06-19T05:43:55Z 3197 122 2005-06-25T10:20:55Z 1 2020-02-15T06:59:38Z +2596 2005-06-19T05:48:26Z 2229 80 2005-06-24T10:16:26Z 1 2020-02-15T06:59:38Z +2597 2005-06-19T05:53:46Z 2278 407 2005-06-20T05:14:46Z 1 2020-02-15T06:59:38Z +2598 2005-06-19T05:59:57Z 2079 265 2005-06-24T11:44:57Z 2 2020-02-15T06:59:38Z +2599 2005-06-19T06:06:07Z 461 171 2005-06-27T01:10:07Z 1 2020-02-15T06:59:38Z +2600 2005-06-19T06:07:25Z 469 423 2005-06-28T03:37:25Z 2 2020-02-15T06:59:38Z +2601 2005-06-19T06:09:44Z 2898 98 2005-06-20T08:03:44Z 1 2020-02-15T06:59:38Z +2602 2005-06-19T06:10:08Z 4124 173 2005-06-24T00:39:08Z 2 2020-02-15T06:59:38Z +2603 2005-06-19T06:21:25Z 587 222 2005-06-26T03:19:25Z 1 2020-02-15T06:59:38Z +2604 2005-06-19T06:30:10Z 2889 28 2005-06-25T11:16:10Z 2 2020-02-15T06:59:38Z +2605 2005-06-19T06:48:01Z 2342 38 2005-06-25T07:00:01Z 1 2020-02-15T06:59:38Z +2606 2005-06-19T06:51:32Z 4133 364 2005-06-21T03:15:32Z 2 2020-02-15T06:59:38Z +2607 2005-06-19T06:55:01Z 3922 340 2005-06-25T03:21:01Z 2 2020-02-15T06:59:38Z +2608 2005-06-19T07:10:36Z 1618 132 2005-06-24T13:09:36Z 1 2020-02-15T06:59:38Z +2609 2005-06-19T07:13:12Z 2254 383 2005-06-28T12:30:12Z 2 2020-02-15T06:59:38Z +2610 2005-06-19T07:16:20Z 3845 542 2005-06-25T09:39:20Z 2 2020-02-15T06:59:38Z +2611 2005-06-19T07:18:17Z 3682 301 2005-06-21T10:19:17Z 1 2020-02-15T06:59:38Z +2612 2005-06-19T07:19:41Z 1691 287 2005-06-25T11:10:41Z 1 2020-02-15T06:59:38Z +2613 2005-06-19T07:25:50Z 3830 179 2005-06-21T03:04:50Z 1 2020-02-15T06:59:38Z +2614 2005-06-19T07:28:11Z 4147 145 2005-06-22T12:33:11Z 1 2020-02-15T06:59:38Z +2615 2005-06-19T07:29:13Z 3810 578 2005-06-27T12:50:13Z 1 2020-02-15T06:59:38Z +2616 2005-06-19T07:33:00Z 581 478 2005-06-28T03:05:00Z 1 2020-02-15T06:59:38Z +2617 2005-06-19T07:48:31Z 204 313 2005-06-27T11:56:31Z 1 2020-02-15T06:59:38Z +2618 2005-06-19T08:03:01Z 2465 310 2005-06-24T03:23:01Z 2 2020-02-15T06:59:38Z +2619 2005-06-19T08:03:12Z 1848 350 2005-06-21T05:02:12Z 2 2020-02-15T06:59:38Z +2620 2005-06-19T08:06:29Z 3183 94 2005-06-24T11:42:29Z 1 2020-02-15T06:59:38Z +2621 2005-06-19T08:07:31Z 1746 439 2005-06-28T05:36:31Z 1 2020-02-15T06:59:38Z +2622 2005-06-19T08:10:41Z 1393 573 2005-06-28T10:44:41Z 2 2020-02-15T06:59:38Z +2623 2005-06-19T08:11:51Z 4477 12 2005-06-26T12:28:51Z 2 2020-02-15T06:59:38Z +2624 2005-06-19T08:22:09Z 3071 32 2005-06-27T11:13:09Z 1 2020-02-15T06:59:38Z +2625 2005-06-19T08:23:11Z 3946 25 2005-06-26T09:52:11Z 2 2020-02-15T06:59:38Z +2626 2005-06-19T08:28:44Z 2816 450 2005-06-24T03:58:44Z 1 2020-02-15T06:59:38Z +2627 2005-06-19T08:32:00Z 2779 592 2005-06-24T04:31:00Z 2 2020-02-15T06:59:38Z +2628 2005-06-19T08:34:53Z 3917 3 2005-06-28T04:19:53Z 2 2020-02-15T06:59:38Z +2629 2005-06-19T08:42:12Z 1810 458 2005-06-28T03:38:12Z 2 2020-02-15T06:59:38Z +2630 2005-06-19T08:47:21Z 3904 236 2005-06-25T09:31:21Z 1 2020-02-15T06:59:38Z +2631 2005-06-19T08:49:53Z 3471 39 2005-06-26T03:25:53Z 1 2020-02-15T06:59:38Z +2632 2005-06-19T08:51:47Z 2274 574 2005-06-23T07:13:47Z 2 2020-02-15T06:59:38Z +2633 2005-06-19T08:53:10Z 3462 68 2005-06-20T07:56:10Z 1 2020-02-15T06:59:38Z +2634 2005-06-19T08:55:17Z 3687 318 2005-06-20T11:44:17Z 2 2020-02-15T06:59:38Z +2635 2005-06-19T09:08:45Z 3332 105 2005-06-26T09:20:45Z 1 2020-02-15T06:59:38Z +2636 2005-06-19T09:13:06Z 2102 253 2005-06-25T07:47:06Z 2 2020-02-15T06:59:38Z +2637 2005-06-19T09:20:56Z 2736 327 2005-06-27T10:09:56Z 2 2020-02-15T06:59:38Z +2638 2005-06-19T09:23:30Z 2944 295 2005-06-26T14:56:30Z 1 2020-02-15T06:59:38Z +2639 2005-06-19T09:24:02Z 3971 116 2005-06-21T14:16:02Z 2 2020-02-15T06:59:38Z +2640 2005-06-19T09:26:13Z 721 540 2005-06-20T14:38:13Z 1 2020-02-15T06:59:38Z +2641 2005-06-19T09:38:33Z 231 374 2005-06-22T09:55:33Z 1 2020-02-15T06:59:38Z +2642 2005-06-19T09:39:01Z 2065 4 2005-06-25T08:33:01Z 1 2020-02-15T06:59:38Z +2643 2005-06-19T09:39:27Z 1928 318 2005-06-26T10:27:27Z 2 2020-02-15T06:59:38Z +2644 2005-06-19T09:42:30Z 1923 309 2005-06-27T07:23:30Z 2 2020-02-15T06:59:38Z +2645 2005-06-19T09:50:35Z 2284 181 2005-06-28T06:47:35Z 2 2020-02-15T06:59:38Z +2646 2005-06-19T09:56:01Z 3511 275 2005-06-21T04:15:01Z 2 2020-02-15T06:59:38Z +2647 2005-06-19T09:57:56Z 1954 54 2005-06-22T15:55:56Z 1 2020-02-15T06:59:38Z +2648 2005-06-19T10:06:20Z 1620 31 2005-06-21T04:30:20Z 2 2020-02-15T06:59:38Z +2649 2005-06-19T10:20:09Z 98 153 2005-06-21T10:05:09Z 1 2020-02-15T06:59:38Z +2650 2005-06-19T10:21:45Z 4211 209 2005-06-21T08:01:45Z 1 2020-02-15T06:59:38Z +2651 2005-06-19T10:22:56Z 2181 576 2005-06-27T13:37:56Z 1 2020-02-15T06:59:38Z +2652 2005-06-19T10:35:26Z 3108 589 2005-06-28T08:03:26Z 1 2020-02-15T06:59:38Z +2653 2005-06-19T10:36:53Z 3528 340 2005-06-26T15:15:53Z 1 2020-02-15T06:59:38Z +2654 2005-06-19T10:37:54Z 3697 405 2005-06-27T11:44:54Z 2 2020-02-15T06:59:38Z +2655 2005-06-19T10:38:42Z 1649 29 2005-06-23T14:20:42Z 1 2020-02-15T06:59:38Z +2656 2005-06-19T10:42:33Z 559 280 2005-06-24T08:31:33Z 2 2020-02-15T06:59:38Z +2657 2005-06-19T10:42:59Z 3595 19 2005-06-28T12:37:59Z 1 2020-02-15T06:59:38Z +2658 2005-06-19T10:43:42Z 3281 156 2005-06-24T16:23:42Z 1 2020-02-15T06:59:38Z +2659 2005-06-19T10:47:42Z 66 139 2005-06-23T14:03:42Z 1 2020-02-15T06:59:38Z +2660 2005-06-19T10:50:02Z 4341 221 2005-06-28T12:49:02Z 1 2020-02-15T06:59:38Z +2661 2005-06-19T10:50:52Z 3652 452 2005-06-25T08:44:52Z 2 2020-02-15T06:59:38Z +2662 2005-06-19T10:53:42Z 3936 68 2005-06-20T11:41:42Z 1 2020-02-15T06:59:38Z +2663 2005-06-19T10:54:00Z 1012 583 2005-06-20T16:48:00Z 1 2020-02-15T06:59:38Z +2664 2005-06-19T11:11:23Z 3496 299 2005-06-28T08:30:23Z 2 2020-02-15T06:59:38Z +2665 2005-06-19T11:12:35Z 4531 133 2005-06-26T11:55:35Z 2 2020-02-15T06:59:38Z +2666 2005-06-19T11:17:12Z 1872 454 2005-06-28T12:47:12Z 1 2020-02-15T06:59:38Z +2667 2005-06-19T11:28:46Z 1028 200 2005-06-27T11:48:46Z 2 2020-02-15T06:59:38Z +2668 2005-06-19T11:28:47Z 3127 568 2005-06-24T10:12:47Z 2 2020-02-15T06:59:38Z +2669 2005-06-19T11:28:52Z 2734 523 2005-06-20T16:43:52Z 1 2020-02-15T06:59:38Z +2670 2005-06-19T11:30:16Z 3518 457 2005-06-21T17:25:16Z 2 2020-02-15T06:59:38Z +2671 2005-06-19T11:33:11Z 2164 451 2005-06-26T14:30:11Z 2 2020-02-15T06:59:38Z +2672 2005-06-19T11:42:04Z 1164 420 2005-06-25T09:14:04Z 2 2020-02-15T06:59:38Z +2673 2005-06-19T11:42:20Z 2487 29 2005-06-23T07:16:20Z 1 2020-02-15T06:59:38Z +2674 2005-06-19T11:47:59Z 3744 585 2005-06-20T08:09:59Z 1 2020-02-15T06:59:38Z +2675 2005-06-19T11:52:15Z 3078 230 2005-06-23T16:45:15Z 1 2020-02-15T06:59:38Z +2676 2005-06-19T11:54:57Z 3938 477 2005-06-24T15:34:57Z 2 2020-02-15T06:59:38Z +2677 2005-06-19T12:01:59Z 4384 428 2005-06-21T06:15:59Z 2 2020-02-15T06:59:38Z +2678 2005-06-19T12:12:23Z 4230 258 2005-06-21T16:28:23Z 2 2020-02-15T06:59:38Z +2679 2005-06-19T12:12:30Z 1994 109 2005-06-27T08:27:30Z 1 2020-02-15T06:59:38Z +2680 2005-06-19T12:13:37Z 865 114 2005-06-27T15:15:37Z 1 2020-02-15T06:59:38Z +2681 2005-06-19T12:15:27Z 2704 196 2005-06-21T16:48:27Z 2 2020-02-15T06:59:38Z +2682 2005-06-19T12:18:17Z 3609 538 2005-06-28T14:09:17Z 1 2020-02-15T06:59:38Z +2683 2005-06-19T12:27:19Z 2860 241 2005-06-21T16:26:19Z 2 2020-02-15T06:59:38Z +2684 2005-06-19T12:29:08Z 1225 17 2005-06-28T08:50:08Z 2 2020-02-15T06:59:38Z +2685 2005-06-19T12:35:21Z 1170 283 2005-06-22T16:58:21Z 1 2020-02-15T06:59:38Z +2686 2005-06-19T12:44:20Z 2686 68 2005-06-20T16:00:20Z 1 2020-02-15T06:59:38Z +2687 2005-06-19T12:46:52Z 3152 254 2005-06-23T06:58:52Z 2 2020-02-15T06:59:38Z +2688 2005-06-19T12:50:56Z 4281 309 2005-06-28T17:58:56Z 2 2020-02-15T06:59:38Z +2689 2005-06-19T12:58:53Z 2478 567 2005-06-24T17:35:53Z 1 2020-02-15T06:59:38Z +2690 2005-06-19T13:00:02Z 1381 391 2005-06-27T14:29:02Z 1 2020-02-15T06:59:38Z +2691 2005-06-19T13:06:50Z 3469 242 2005-06-26T15:56:50Z 1 2020-02-15T06:59:38Z +2692 2005-06-19T13:08:19Z 3162 388 2005-06-21T16:45:19Z 1 2020-02-15T06:59:38Z +2693 2005-06-19T13:11:47Z 2570 107 2005-06-27T11:17:47Z 1 2020-02-15T06:59:38Z +2694 2005-06-19T13:17:21Z 380 368 2005-06-24T15:09:21Z 1 2020-02-15T06:59:38Z +2695 2005-06-19T13:25:53Z 190 208 2005-06-24T17:12:53Z 2 2020-02-15T06:59:38Z +2696 2005-06-19T13:28:42Z 2110 597 2005-06-28T14:06:42Z 2 2020-02-15T06:59:38Z +2697 2005-06-19T13:29:08Z 2271 448 2005-06-23T13:21:08Z 1 2020-02-15T06:59:38Z +2698 2005-06-19T13:29:11Z 3900 420 2005-06-20T07:31:11Z 2 2020-02-15T06:59:38Z +2699 2005-06-19T13:29:28Z 72 267 2005-06-24T11:15:28Z 2 2020-02-15T06:59:38Z +2700 2005-06-19T13:31:52Z 928 180 2005-06-27T19:30:52Z 1 2020-02-15T06:59:38Z +2701 2005-06-19T13:33:06Z 1623 29 2005-06-28T15:11:06Z 2 2020-02-15T06:59:38Z +2702 2005-06-19T13:35:56Z 1736 329 2005-06-20T14:07:56Z 2 2020-02-15T06:59:38Z +2703 2005-06-19T13:36:06Z 4080 319 2005-06-28T08:26:06Z 2 2020-02-15T06:59:38Z +2704 2005-06-19T13:50:10Z 2026 246 2005-06-26T18:25:10Z 2 2020-02-15T06:59:38Z +2705 2005-06-19T13:54:30Z 1191 562 2005-06-20T12:31:30Z 1 2020-02-15T06:59:38Z +2706 2005-06-19T13:56:51Z 373 559 2005-06-21T17:23:51Z 2 2020-02-15T06:59:38Z +2707 2005-06-19T13:57:08Z 4486 589 2005-06-27T11:09:08Z 2 2020-02-15T06:59:38Z +2708 2005-06-19T13:59:05Z 2659 541 2005-06-24T10:02:05Z 2 2020-02-15T06:59:38Z +2709 2005-06-19T14:00:26Z 2877 7 2005-06-23T14:56:26Z 2 2020-02-15T06:59:38Z +2710 2005-06-19T14:03:56Z 2965 446 2005-06-21T16:15:56Z 1 2020-02-15T06:59:38Z +2711 2005-06-19T14:12:22Z 3944 313 2005-06-21T09:29:22Z 1 2020-02-15T06:59:38Z +2712 2005-06-19T14:20:13Z 3132 411 2005-06-22T19:08:13Z 1 2020-02-15T06:59:38Z +2713 2005-06-19T14:23:09Z 3979 378 2005-06-20T17:55:09Z 1 2020-02-15T06:59:38Z +2714 2005-06-19T14:26:09Z 2853 81 2005-06-23T17:24:09Z 2 2020-02-15T06:59:38Z +2715 2005-06-19T14:29:35Z 2082 404 2005-06-26T08:44:35Z 2 2020-02-15T06:59:38Z +2716 2005-06-19T14:40:17Z 944 252 2005-06-27T17:45:17Z 2 2020-02-15T06:59:38Z +2717 2005-06-19T14:46:10Z 140 200 2005-06-22T20:17:10Z 1 2020-02-15T06:59:38Z +2718 2005-06-19T14:49:42Z 4443 139 2005-06-26T19:37:42Z 1 2020-02-15T06:59:38Z +2719 2005-06-19T14:50:19Z 1200 336 2005-06-20T14:33:19Z 2 2020-02-15T06:59:38Z +2720 2005-06-19T14:51:55Z 3597 504 2005-06-27T13:06:55Z 1 2020-02-15T06:59:38Z +2721 2005-06-19T14:53:24Z 3786 358 2005-06-21T18:22:24Z 2 2020-02-15T06:59:38Z +2722 2005-06-19T14:55:17Z 952 45 2005-06-25T13:11:17Z 2 2020-02-15T06:59:38Z +2723 2005-06-19T14:55:23Z 4317 277 2005-06-20T14:28:23Z 1 2020-02-15T06:59:38Z +2724 2005-06-19T14:57:54Z 3879 103 2005-06-22T16:31:54Z 2 2020-02-15T06:59:38Z +2725 2005-06-19T15:01:23Z 63 246 2005-06-22T09:08:23Z 1 2020-02-15T06:59:38Z +2726 2005-06-19T15:02:20Z 2970 420 2005-06-21T15:38:20Z 1 2020-02-15T06:59:38Z +2727 2005-06-19T15:02:39Z 3261 129 2005-06-28T17:49:39Z 1 2020-02-15T06:59:38Z +2728 2005-06-19T15:04:04Z 775 408 2005-06-22T12:22:04Z 2 2020-02-15T06:59:38Z +2729 2005-06-19T15:06:15Z 4449 510 2005-06-27T17:58:15Z 2 2020-02-15T06:59:38Z +2730 2005-06-19T15:10:09Z 1264 30 2005-06-28T13:05:09Z 1 2020-02-15T06:59:38Z +2731 2005-06-19T15:14:55Z 4218 138 2005-06-27T14:30:55Z 2 2020-02-15T06:59:38Z +2732 2005-06-19T15:19:39Z 610 386 2005-06-25T19:39:39Z 2 2020-02-15T06:59:38Z +2733 2005-06-19T15:21:53Z 1535 188 2005-06-23T11:58:53Z 2 2020-02-15T06:59:38Z +2734 2005-06-19T15:36:27Z 794 204 2005-06-20T13:44:27Z 2 2020-02-15T06:59:38Z +2735 2005-06-19T15:42:07Z 4550 29 2005-06-22T17:28:07Z 1 2020-02-15T06:59:38Z +2736 2005-06-19T15:43:20Z 4510 359 2005-06-21T13:03:20Z 1 2020-02-15T06:59:38Z +2737 2005-06-19T15:48:33Z 3131 513 2005-06-26T18:44:33Z 2 2020-02-15T06:59:38Z +2738 2005-06-19T15:56:30Z 350 75 2005-06-20T16:14:30Z 2 2020-02-15T06:59:38Z +2739 2005-06-19T15:58:38Z 213 212 2005-06-27T15:01:38Z 2 2020-02-15T06:59:38Z +2740 2005-06-19T15:59:04Z 1534 92 2005-06-28T12:18:04Z 2 2020-02-15T06:59:38Z +2741 2005-06-19T16:05:41Z 1662 36 2005-06-20T20:48:41Z 1 2020-02-15T06:59:38Z +2742 2005-06-19T16:05:47Z 4154 187 2005-06-26T21:34:47Z 1 2020-02-15T06:59:38Z +2743 2005-06-19T16:15:56Z 2611 35 2005-06-23T12:30:56Z 1 2020-02-15T06:59:38Z +2744 2005-06-19T16:20:40Z 4511 368 2005-06-22T11:44:40Z 2 2020-02-15T06:59:38Z +2745 2005-06-19T16:21:19Z 1253 26 2005-06-21T22:07:19Z 2 2020-02-15T06:59:38Z +2746 2005-06-19T16:21:40Z 933 562 2005-06-28T11:56:40Z 2 2020-02-15T06:59:38Z +2747 2005-06-19T16:22:07Z 1374 422 2005-06-24T19:28:07Z 1 2020-02-15T06:59:38Z +2748 2005-06-19T16:22:26Z 511 473 2005-06-21T21:55:26Z 1 2020-02-15T06:59:38Z +2749 2005-06-19T16:27:35Z 1540 358 2005-06-25T21:06:35Z 2 2020-02-15T06:59:38Z +2750 2005-06-19T16:37:24Z 3775 197 2005-06-20T13:55:24Z 2 2020-02-15T06:59:38Z +2751 2005-06-19T16:39:23Z 1291 148 2005-06-25T13:57:23Z 1 2020-02-15T06:59:38Z +2752 2005-06-19T16:44:18Z 386 149 2005-06-22T12:40:18Z 2 2020-02-15T06:59:38Z +2753 2005-06-19T16:44:35Z 2408 23 2005-06-24T13:45:35Z 1 2020-02-15T06:59:38Z +2754 2005-06-19T16:55:59Z 1761 267 2005-06-26T18:11:59Z 1 2020-02-15T06:59:38Z +2755 2005-06-19T16:56:31Z 946 506 2005-06-27T12:02:31Z 2 2020-02-15T06:59:38Z +2756 2005-06-19T16:57:42Z 3264 144 2005-06-26T15:30:42Z 2 2020-02-15T06:59:38Z +2757 2005-06-19T17:01:14Z 3814 243 2005-06-28T11:38:14Z 1 2020-02-15T06:59:38Z +2758 2005-06-19T17:04:35Z 3558 423 2005-06-26T14:45:35Z 2 2020-02-15T06:59:38Z +2759 2005-06-19T17:10:24Z 687 351 2005-06-24T21:56:24Z 2 2020-02-15T06:59:38Z +2760 2005-06-19T17:16:33Z 2602 192 2005-06-26T14:58:33Z 1 2020-02-15T06:59:38Z +2761 2005-06-19T17:22:17Z 2134 431 2005-06-20T20:20:17Z 2 2020-02-15T06:59:38Z +2762 2005-06-19T17:22:31Z 3431 457 2005-06-25T22:43:31Z 2 2020-02-15T06:59:38Z +2763 2005-06-19T17:23:34Z 3096 276 2005-06-21T21:37:34Z 2 2020-02-15T06:59:38Z +2764 2005-06-19T17:27:25Z 1718 479 2005-06-28T17:18:25Z 2 2020-02-15T06:59:38Z +2765 2005-06-19T17:34:39Z 1017 478 2005-06-27T23:26:39Z 1 2020-02-15T06:59:38Z +2766 2005-06-19T17:45:15Z 3421 345 2005-06-23T20:11:15Z 2 2020-02-15T06:59:38Z +2767 2005-06-19T17:46:35Z 4052 596 2005-06-24T22:42:35Z 1 2020-02-15T06:59:38Z +2768 2005-06-19T17:46:52Z 3018 129 2005-06-25T21:49:52Z 1 2020-02-15T06:59:38Z +2769 2005-06-19T17:52:14Z 1222 354 2005-06-26T20:30:14Z 2 2020-02-15T06:59:38Z +2770 2005-06-19T17:54:22Z 3042 533 2005-06-26T23:09:22Z 2 2020-02-15T06:59:38Z +2771 2005-06-19T17:54:48Z 40 262 2005-06-27T17:14:48Z 1 2020-02-15T06:59:38Z +2772 2005-06-19T17:59:27Z 1221 520 2005-06-23T17:52:27Z 1 2020-02-15T06:59:38Z +2773 2005-06-19T18:04:18Z 4155 505 2005-06-28T23:52:18Z 1 2020-02-15T06:59:38Z +2774 2005-06-19T18:05:11Z 2809 299 2005-06-21T16:21:11Z 2 2020-02-15T06:59:38Z +2775 2005-06-19T18:14:20Z 672 590 2005-06-26T19:52:20Z 1 2020-02-15T06:59:38Z +2776 2005-06-19T18:16:24Z 1726 551 2005-06-26T14:43:24Z 2 2020-02-15T06:59:38Z +2777 2005-06-19T18:16:26Z 4092 230 2005-06-20T13:43:26Z 2 2020-02-15T06:59:38Z +2778 2005-06-19T18:18:12Z 3357 422 2005-06-28T21:43:12Z 1 2020-02-15T06:59:38Z +2779 2005-06-19T18:19:07Z 1020 376 2005-06-23T18:25:07Z 2 2020-02-15T06:59:38Z +2780 2005-06-19T18:19:33Z 1513 360 2005-06-28T22:29:33Z 1 2020-02-15T06:59:38Z +2781 2005-06-19T18:24:42Z 1230 197 2005-06-27T17:02:42Z 2 2020-02-15T06:59:38Z +2782 2005-06-19T18:25:07Z 3644 156 2005-06-22T14:10:07Z 1 2020-02-15T06:59:38Z +2783 2005-06-19T18:29:10Z 2778 113 2005-06-21T22:09:10Z 1 2020-02-15T06:59:38Z +2784 2005-06-19T18:40:29Z 2305 289 2005-06-28T15:27:29Z 1 2020-02-15T06:59:38Z +2785 2005-06-19T18:43:57Z 826 137 2005-06-24T15:36:57Z 2 2020-02-15T06:59:38Z +2786 2005-06-19T18:46:43Z 2255 594 2005-06-22T16:52:43Z 1 2020-02-15T06:59:38Z +2787 2005-06-19T18:47:00Z 3371 307 2005-06-22T20:22:00Z 2 2020-02-15T06:59:38Z +2788 2005-06-19T18:48:11Z 1457 171 2005-06-21T13:32:11Z 1 2020-02-15T06:59:38Z +2789 2005-06-19T18:48:21Z 2398 514 2005-06-21T21:50:21Z 1 2020-02-15T06:59:38Z +2790 2005-06-19T18:49:45Z 202 97 2005-06-21T00:13:45Z 1 2020-02-15T06:59:38Z +2791 2005-06-19T18:51:27Z 2174 299 2005-06-22T19:35:27Z 2 2020-02-15T06:59:38Z +2792 2005-06-19T18:52:25Z 3057 437 2005-06-23T17:39:25Z 1 2020-02-15T06:59:38Z +2793 2005-06-19T18:52:37Z 732 419 2005-06-25T19:45:37Z 2 2020-02-15T06:59:38Z +2794 2005-06-19T18:53:05Z 1957 85 2005-06-22T13:15:05Z 1 2020-02-15T06:59:38Z +2795 2005-06-19T18:58:53Z 3694 129 2005-06-28T18:56:53Z 1 2020-02-15T06:59:38Z +2796 2005-06-19T19:00:37Z 2337 209 2005-06-25T17:18:37Z 2 2020-02-15T06:59:38Z +2797 2005-06-19T19:04:32Z 3222 486 2005-06-20T22:43:32Z 1 2020-02-15T06:59:38Z +2798 2005-06-19T19:07:48Z 1343 180 2005-06-23T00:09:48Z 2 2020-02-15T06:59:38Z +2799 2005-06-19T19:15:21Z 4579 576 2005-06-21T21:35:21Z 1 2020-02-15T06:59:38Z +2800 2005-06-19T19:15:56Z 183 146 2005-06-23T00:15:56Z 1 2020-02-15T06:59:38Z +2801 2005-06-19T19:18:09Z 4572 29 2005-06-20T20:11:09Z 2 2020-02-15T06:59:38Z +2802 2005-06-19T19:18:17Z 4067 489 2005-06-21T17:58:17Z 2 2020-02-15T06:59:38Z +2803 2005-06-19T19:18:27Z 103 120 2005-06-27T21:48:27Z 1 2020-02-15T06:59:38Z +2804 2005-06-19T19:24:54Z 88 426 2005-06-25T01:19:54Z 2 2020-02-15T06:59:38Z +2805 2005-06-19T19:29:17Z 2153 80 2005-06-27T23:14:17Z 2 2020-02-15T06:59:38Z +2806 2005-06-19T19:30:48Z 2114 510 2005-06-20T19:42:48Z 2 2020-02-15T06:59:38Z +2807 2005-06-19T19:32:53Z 2825 194 2005-06-25T00:30:53Z 2 2020-02-15T06:59:38Z +2808 2005-06-19T19:34:45Z 65 325 2005-06-27T14:49:45Z 1 2020-02-15T06:59:38Z +2809 2005-06-19T19:40:27Z 1786 44 2005-06-27T15:28:27Z 2 2020-02-15T06:59:38Z +2810 2005-06-19T19:44:12Z 2558 67 2005-06-20T19:41:12Z 2 2020-02-15T06:59:38Z +2811 2005-06-19T19:53:30Z 3890 457 2005-06-22T23:21:30Z 2 2020-02-15T06:59:38Z +2812 2005-06-19T19:58:16Z 3016 211 2005-06-26T15:26:16Z 1 2020-02-15T06:59:38Z +2813 2005-06-19T20:01:47Z 3420 284 2005-06-27T01:51:47Z 1 2020-02-15T06:59:38Z +2814 2005-06-19T20:01:59Z 1783 10 2005-06-26T01:28:59Z 2 2020-02-15T06:59:38Z +2815 2005-06-19T20:03:29Z 3046 27 2005-06-25T22:50:29Z 2 2020-02-15T06:59:38Z +2816 2005-06-19T20:04:23Z 2180 94 2005-06-20T21:09:23Z 2 2020-02-15T06:59:38Z +2817 2005-06-19T20:05:22Z 3476 510 2005-06-24T23:29:22Z 1 2020-02-15T06:59:38Z +2818 2005-06-19T20:05:52Z 2376 497 2005-06-22T01:01:52Z 2 2020-02-15T06:59:38Z +2819 2005-06-19T20:13:33Z 4100 82 2005-06-26T16:44:33Z 1 2020-02-15T06:59:38Z +2820 2005-06-19T20:20:33Z 851 316 2005-06-26T20:32:33Z 1 2020-02-15T06:59:38Z +2821 2005-06-19T20:26:52Z 2551 532 2005-06-27T23:48:52Z 1 2020-02-15T06:59:38Z +2822 2005-06-19T20:29:24Z 3599 48 2005-06-23T02:21:24Z 1 2020-02-15T06:59:38Z +2823 2005-06-19T20:30:21Z 3566 260 2005-06-26T17:58:21Z 1 2020-02-15T06:59:38Z +2824 2005-06-19T20:31:45Z 2878 506 2005-06-29T00:40:45Z 2 2020-02-15T06:59:38Z +2825 2005-06-19T20:32:19Z 2601 418 2005-06-22T22:32:19Z 1 2020-02-15T06:59:38Z +2826 2005-06-19T20:41:35Z 2980 125 2005-06-25T17:23:35Z 1 2020-02-15T06:59:38Z +2827 2005-06-19T20:50:01Z 2745 23 2005-06-20T18:54:01Z 2 2020-02-15T06:59:38Z +2828 2005-06-19T20:51:33Z 3230 526 2005-06-25T17:38:33Z 1 2020-02-15T06:59:38Z +2829 2005-06-19T21:11:30Z 2047 341 2005-06-24T18:10:30Z 1 2020-02-15T06:59:38Z +2830 2005-06-19T21:14:33Z 2080 21 2005-06-21T17:46:33Z 1 2020-02-15T06:59:38Z +2831 2005-06-19T21:17:06Z 4089 468 2005-06-22T16:56:06Z 2 2020-02-15T06:59:38Z +2832 2005-06-19T21:21:53Z 828 593 2005-06-28T23:00:53Z 1 2020-02-15T06:59:38Z +2833 2005-06-19T21:34:54Z 1976 232 2005-06-28T16:21:54Z 1 2020-02-15T06:59:38Z +2834 2005-06-19T21:41:46Z 2876 122 2005-06-24T20:47:46Z 1 2020-02-15T06:59:38Z +2835 2005-06-19T21:44:11Z 4411 89 2005-06-26T16:46:11Z 2 2020-02-15T06:59:38Z +2836 2005-06-19T21:58:21Z 1453 306 2005-06-27T00:41:21Z 2 2020-02-15T06:59:38Z +2837 2005-06-19T22:03:50Z 417 371 2005-06-20T21:24:50Z 1 2020-02-15T06:59:38Z +2838 2005-06-19T22:06:06Z 143 292 2005-06-25T22:30:06Z 1 2020-02-15T06:59:38Z +2839 2005-06-19T22:07:24Z 3856 256 2005-06-23T16:37:24Z 2 2020-02-15T06:59:38Z +2840 2005-06-19T22:17:44Z 1102 236 2005-06-26T00:36:44Z 2 2020-02-15T06:59:38Z +2841 2005-06-19T22:21:06Z 614 193 2005-06-28T00:56:06Z 1 2020-02-15T06:59:38Z +2842 2005-06-19T22:34:20Z 4183 217 2005-06-22T03:46:20Z 2 2020-02-15T06:59:38Z +2843 2005-06-19T22:36:39Z 1520 148 2005-06-26T22:33:39Z 2 2020-02-15T06:59:38Z +2844 2005-06-19T22:40:12Z 4452 178 2005-06-24T03:58:12Z 2 2020-02-15T06:59:38Z +2845 2005-06-19T22:46:37Z 3948 583 2005-06-23T03:31:37Z 1 2020-02-15T06:59:38Z +2846 2005-06-19T22:52:14Z 651 193 2005-06-22T17:12:14Z 1 2020-02-15T06:59:38Z +2847 2005-06-19T22:54:01Z 1247 148 2005-06-27T23:05:01Z 2 2020-02-15T06:59:38Z +2848 2005-06-19T22:55:37Z 3449 19 2005-06-25T23:10:37Z 1 2020-02-15T06:59:38Z +2849 2005-06-19T23:06:00Z 3628 283 2005-06-25T18:36:00Z 1 2020-02-15T06:59:38Z +2850 2005-06-19T23:06:28Z 206 262 2005-06-28T03:30:28Z 2 2020-02-15T06:59:38Z +2851 2005-06-19T23:07:03Z 2168 361 2005-06-22T17:26:03Z 1 2020-02-15T06:59:38Z +2852 2005-06-19T23:08:50Z 2695 453 2005-06-26T04:00:50Z 1 2020-02-15T06:59:38Z +2853 2005-06-19T23:09:41Z 2578 453 2005-06-28T00:51:41Z 2 2020-02-15T06:59:38Z +2854 2005-06-19T23:11:48Z 4453 81 2005-06-23T19:37:48Z 2 2020-02-15T06:59:38Z +2855 2005-06-19T23:11:49Z 3495 483 2005-06-26T21:52:49Z 1 2020-02-15T06:59:38Z +2856 2005-06-19T23:13:04Z 1859 210 2005-06-23T22:47:04Z 1 2020-02-15T06:59:38Z +2857 2005-06-19T23:15:15Z 2886 364 2005-06-25T04:24:15Z 2 2020-02-15T06:59:38Z +2858 2005-06-19T23:17:11Z 2628 268 2005-06-21T19:07:11Z 1 2020-02-15T06:59:38Z +2859 2005-06-19T23:18:42Z 126 147 2005-06-20T22:38:42Z 1 2020-02-15T06:59:38Z +2860 2005-06-19T23:20:40Z 3045 107 2005-06-21T04:59:40Z 1 2020-02-15T06:59:38Z +2861 2005-06-19T23:21:34Z 1489 116 2005-06-26T17:32:34Z 1 2020-02-15T06:59:38Z +2862 2005-06-19T23:47:24Z 4260 52 2005-06-23T03:39:24Z 2 2020-02-15T06:59:38Z +2863 2005-06-19T23:58:38Z 2410 228 2005-06-23T23:27:38Z 2 2020-02-15T06:59:38Z +2864 2005-06-20T00:00:52Z 1056 493 2005-06-26T04:21:52Z 2 2020-02-15T06:59:38Z +2865 2005-06-20T00:00:55Z 1569 10 2005-06-21T02:20:55Z 1 2020-02-15T06:59:38Z +2866 2005-06-20T00:01:36Z 2718 44 2005-06-20T21:39:36Z 1 2020-02-15T06:59:38Z +2867 2005-06-20T00:08:38Z 95 483 2005-06-23T19:35:38Z 1 2020-02-15T06:59:38Z +2868 2005-06-20T00:08:58Z 1213 214 2005-06-25T21:23:58Z 2 2020-02-15T06:59:38Z +2869 2005-06-20T00:09:25Z 1331 155 2005-06-24T04:40:25Z 2 2020-02-15T06:59:38Z +2870 2005-06-20T00:17:46Z 214 467 2005-06-28T20:21:46Z 1 2020-02-15T06:59:38Z +2871 2005-06-20T00:27:49Z 1731 443 2005-06-29T01:36:49Z 1 2020-02-15T06:59:38Z +2872 2005-06-20T00:38:21Z 3779 240 2005-06-26T19:56:21Z 1 2020-02-15T06:59:38Z +2873 2005-06-20T00:41:25Z 3321 160 2005-06-25T02:06:25Z 1 2020-02-15T06:59:38Z +2874 2005-06-20T00:42:26Z 331 166 2005-06-28T01:37:26Z 2 2020-02-15T06:59:38Z +2875 2005-06-20T00:47:18Z 3012 186 2005-06-25T18:54:18Z 2 2020-02-15T06:59:38Z +2876 2005-06-20T01:06:34Z 3117 39 2005-06-23T04:55:34Z 1 2020-02-15T06:59:38Z +2877 2005-06-20T01:07:16Z 485 267 2005-06-24T01:05:16Z 1 2020-02-15T06:59:38Z +2878 2005-06-20T01:09:14Z 4120 88 2005-06-21T21:40:14Z 2 2020-02-15T06:59:38Z +2879 2005-06-20T01:24:10Z 1920 583 2005-06-28T20:12:10Z 2 2020-02-15T06:59:38Z +2880 2005-06-20T01:24:54Z 1700 193 2005-06-23T02:42:54Z 2 2020-02-15T06:59:38Z +2881 2005-06-20T01:26:18Z 1391 307 2005-06-26T23:42:18Z 1 2020-02-15T06:59:38Z +2882 2005-06-20T01:26:26Z 205 152 2005-06-21T19:33:26Z 1 2020-02-15T06:59:38Z +2883 2005-06-20T01:29:10Z 585 320 2005-06-28T06:12:10Z 1 2020-02-15T06:59:38Z +2884 2005-06-20T01:31:16Z 3384 319 2005-06-21T04:03:16Z 2 2020-02-15T06:59:38Z +2885 2005-06-20T01:33:42Z 2701 330 2005-06-22T22:23:42Z 1 2020-02-15T06:59:38Z +2886 2005-06-20T01:38:39Z 1755 154 2005-06-23T04:28:39Z 2 2020-02-15T06:59:38Z +2887 2005-06-20T01:39:43Z 1073 453 2005-06-25T05:22:43Z 2 2020-02-15T06:59:38Z +2888 2005-06-20T01:50:56Z 468 7 2005-06-22T05:05:56Z 2 2020-02-15T06:59:38Z +2889 2005-06-20T01:54:08Z 151 213 2005-06-23T06:33:08Z 1 2020-02-15T06:59:38Z +2890 2005-06-20T02:00:45Z 3437 392 2005-06-27T21:12:45Z 1 2020-02-15T06:59:38Z +2891 2005-06-20T02:02:05Z 343 32 2005-06-25T02:45:05Z 1 2020-02-15T06:59:38Z +2892 2005-06-20T02:06:39Z 2993 430 2005-06-21T02:50:39Z 2 2020-02-15T06:59:38Z +2893 2005-06-20T02:22:08Z 397 153 2005-06-26T21:01:08Z 2 2020-02-15T06:59:38Z +2894 2005-06-20T02:22:42Z 4316 76 2005-06-22T00:38:42Z 1 2020-02-15T06:59:38Z +2895 2005-06-20T02:26:31Z 4445 141 2005-06-27T23:42:31Z 2 2020-02-15T06:59:38Z +2896 2005-06-20T02:33:42Z 1086 40 2005-06-26T05:29:42Z 2 2020-02-15T06:59:38Z +2897 2005-06-20T02:34:23Z 3464 107 2005-06-25T05:29:23Z 1 2020-02-15T06:59:38Z +2898 2005-06-20T02:38:06Z 3106 178 2005-06-29T08:18:06Z 2 2020-02-15T06:59:38Z +2899 2005-06-20T02:39:21Z 1919 459 2005-06-23T06:47:21Z 1 2020-02-15T06:59:38Z +2900 2005-06-20T02:40:04Z 3407 294 2005-06-27T20:47:04Z 2 2020-02-15T06:59:38Z +2901 2005-06-20T02:41:28Z 667 25 2005-06-23T04:43:28Z 2 2020-02-15T06:59:38Z +2902 2005-06-20T02:45:35Z 2787 304 2005-06-26T07:51:35Z 1 2020-02-15T06:59:38Z +2903 2005-06-20T02:49:01Z 3580 53 2005-06-25T05:03:01Z 2 2020-02-15T06:59:38Z +2904 2005-06-20T02:54:06Z 2195 55 2005-06-21T06:57:06Z 2 2020-02-15T06:59:38Z +2905 2005-06-20T02:56:16Z 3898 189 2005-06-24T23:51:16Z 2 2020-02-15T06:59:38Z +2906 2005-06-20T03:04:56Z 1087 58 2005-06-23T05:57:56Z 2 2020-02-15T06:59:38Z +2907 2005-06-20T03:15:09Z 2516 208 2005-06-20T21:56:09Z 2 2020-02-15T06:59:38Z +2908 2005-06-20T03:16:52Z 517 91 2005-06-22T08:46:52Z 1 2020-02-15T06:59:38Z +2909 2005-06-20T03:19:10Z 1701 451 2005-06-25T06:06:10Z 2 2020-02-15T06:59:38Z +2910 2005-06-20T03:31:18Z 630 57 2005-06-28T00:35:18Z 1 2020-02-15T06:59:38Z +2911 2005-06-20T03:32:37Z 3645 502 2005-06-22T22:06:37Z 1 2020-02-15T06:59:38Z +2912 2005-06-20T03:32:45Z 1076 196 2005-06-21T23:32:45Z 1 2020-02-15T06:59:38Z +2913 2005-06-20T03:42:27Z 3456 402 2005-06-23T04:47:27Z 1 2020-02-15T06:59:38Z +2914 2005-06-20T03:43:18Z 2419 342 2005-06-25T03:44:18Z 2 2020-02-15T06:59:38Z +2915 2005-06-20T03:57:17Z 1293 262 2005-06-24T05:59:17Z 2 2020-02-15T06:59:38Z +2916 2005-06-20T04:01:04Z 3086 590 2005-06-27T22:40:04Z 2 2020-02-15T06:59:38Z +2917 2005-06-20T04:08:35Z 647 451 2005-06-24T01:17:35Z 1 2020-02-15T06:59:38Z +2918 2005-06-20T04:09:04Z 1985 215 2005-06-21T10:07:04Z 1 2020-02-15T06:59:38Z +2919 2005-06-20T04:10:16Z 2835 509 2005-06-27T06:34:16Z 1 2020-02-15T06:59:38Z +2920 2005-06-20T04:12:46Z 487 588 2005-06-26T23:34:46Z 2 2020-02-15T06:59:38Z +2921 2005-06-20T04:13:04Z 1785 59 2005-06-28T01:28:04Z 1 2020-02-15T06:59:38Z +2922 2005-06-20T04:13:47Z 1671 176 2005-06-22T04:38:47Z 2 2020-02-15T06:59:38Z +2923 2005-06-20T04:16:07Z 109 29 2005-06-21T05:04:07Z 1 2020-02-15T06:59:38Z +2924 2005-06-20T04:20:14Z 580 132 2005-06-21T01:13:14Z 1 2020-02-15T06:59:38Z +2925 2005-06-20T04:23:49Z 804 301 2005-06-22T04:37:49Z 2 2020-02-15T06:59:38Z +2926 2005-06-20T04:37:45Z 1055 379 2005-06-26T02:17:45Z 1 2020-02-15T06:59:38Z +2927 2005-06-20T04:41:41Z 393 403 2005-06-23T01:59:41Z 1 2020-02-15T06:59:38Z +2928 2005-06-20T04:43:45Z 1265 104 2005-06-21T06:58:45Z 2 2020-02-15T06:59:38Z +2929 2005-06-20T04:47:39Z 3389 333 2005-06-25T23:16:39Z 2 2020-02-15T06:59:38Z +2930 2005-06-20T04:50:29Z 3615 585 2005-06-28T06:00:29Z 2 2020-02-15T06:59:38Z +2931 2005-06-20T04:50:45Z 3122 258 2005-06-29T09:18:45Z 1 2020-02-15T06:59:38Z +2932 2005-06-20T04:51:19Z 4418 526 2005-06-29T08:31:19Z 1 2020-02-15T06:59:38Z +2933 2005-06-20T04:52:23Z 4483 323 2005-06-26T07:12:23Z 2 2020-02-15T06:59:38Z +2934 2005-06-20T05:05:53Z 697 228 2005-06-22T02:44:53Z 1 2020-02-15T06:59:38Z +2935 2005-06-20T05:07:24Z 2735 384 2005-06-28T09:17:24Z 2 2020-02-15T06:59:38Z +2936 2005-06-20T05:09:27Z 2675 330 2005-06-26T10:16:27Z 2 2020-02-15T06:59:38Z +2937 2005-06-20T05:15:37Z 1998 15 2005-06-27T02:45:37Z 1 2020-02-15T06:59:38Z +2938 2005-06-20T05:17:22Z 1795 504 2005-06-26T09:38:22Z 1 2020-02-15T06:59:38Z +2939 2005-06-20T05:18:16Z 2638 203 2005-06-26T06:56:16Z 1 2020-02-15T06:59:38Z +2940 2005-06-20T05:20:01Z 2504 73 2005-06-28T06:11:01Z 2 2020-02-15T06:59:38Z +2941 2005-06-20T05:22:18Z 3632 135 2005-06-26T07:40:18Z 2 2020-02-15T06:59:38Z +2942 2005-06-20T05:27:31Z 999 242 2005-06-29T00:35:31Z 1 2020-02-15T06:59:38Z +2943 2005-06-20T05:43:05Z 2591 418 2005-06-25T04:31:05Z 1 2020-02-15T06:59:38Z +2944 2005-06-20T05:43:42Z 1550 474 2005-06-29T09:40:42Z 2 2020-02-15T06:59:38Z +2945 2005-06-20T05:49:27Z 4193 153 2005-06-26T09:48:27Z 1 2020-02-15T06:59:38Z +2946 2005-06-20T05:50:40Z 3737 213 2005-06-21T00:42:40Z 2 2020-02-15T06:59:38Z +2947 2005-06-20T06:00:21Z 4302 151 2005-06-23T10:04:21Z 2 2020-02-15T06:59:38Z +2948 2005-06-20T06:02:35Z 4254 289 2005-06-29T09:12:35Z 2 2020-02-15T06:59:38Z +2949 2005-06-20T06:05:53Z 375 78 2005-06-29T03:19:53Z 2 2020-02-15T06:59:38Z +2950 2005-06-20T06:08:36Z 1438 561 2005-06-27T07:45:36Z 2 2020-02-15T06:59:38Z +2951 2005-06-20T06:23:01Z 2903 404 2005-06-24T00:26:01Z 2 2020-02-15T06:59:38Z +2952 2005-06-20T06:26:57Z 3759 13 2005-06-22T11:51:57Z 1 2020-02-15T06:59:38Z +2953 2005-06-20T06:39:11Z 1829 540 2005-06-26T06:19:11Z 1 2020-02-15T06:59:38Z +2954 2005-06-20T06:45:00Z 377 336 2005-06-23T11:43:00Z 1 2020-02-15T06:59:38Z +2955 2005-06-20T06:46:35Z 2312 244 2005-06-25T05:34:35Z 2 2020-02-15T06:59:38Z +2956 2005-06-20T06:47:23Z 2684 533 2005-06-22T07:24:23Z 2 2020-02-15T06:59:38Z +2957 2005-06-20T06:53:47Z 4034 542 2005-06-29T09:21:47Z 2 2020-02-15T06:59:38Z +2958 2005-06-20T06:56:20Z 1380 260 2005-06-29T02:33:20Z 2 2020-02-15T06:59:38Z +2959 2005-06-20T07:07:54Z 4185 372 2005-06-27T03:31:54Z 1 2020-02-15T06:59:38Z +2960 2005-06-20T07:10:09Z 3970 16 2005-06-26T08:14:09Z 2 2020-02-15T06:59:38Z +2961 2005-06-20T07:29:15Z 4539 399 2005-06-24T08:05:15Z 1 2020-02-15T06:59:38Z +2962 2005-06-20T07:31:55Z 2978 364 2005-06-26T04:43:55Z 1 2020-02-15T06:59:38Z +2963 2005-06-20T07:33:09Z 1444 24 2005-06-28T09:23:09Z 1 2020-02-15T06:59:38Z +2964 2005-06-20T07:33:29Z 1201 590 2005-06-29T12:48:29Z 1 2020-02-15T06:59:38Z +2965 2005-06-20T07:33:38Z 27 46 2005-06-29T11:45:38Z 1 2020-02-15T06:59:38Z +2966 2005-06-20T07:39:33Z 3483 511 2005-06-29T07:48:33Z 1 2020-02-15T06:59:38Z +2967 2005-06-20T07:40:35Z 4243 311 2005-06-29T05:50:35Z 2 2020-02-15T06:59:38Z +2968 2005-06-20T07:41:47Z 4415 252 2005-06-23T04:27:47Z 1 2020-02-15T06:59:38Z +2969 2005-06-20T07:44:27Z 1748 418 2005-06-22T06:12:27Z 2 2020-02-15T06:59:38Z +2970 2005-06-20T07:51:51Z 1167 449 2005-06-28T10:14:51Z 2 2020-02-15T06:59:38Z +2971 2005-06-20T07:56:00Z 1585 410 2005-06-27T11:38:00Z 2 2020-02-15T06:59:38Z +2972 2005-06-20T07:57:54Z 2232 531 2005-06-21T12:48:54Z 1 2020-02-15T06:59:38Z +2973 2005-06-20T07:59:27Z 2626 96 2005-06-24T12:31:27Z 1 2020-02-15T06:59:38Z +2974 2005-06-20T08:00:24Z 2322 472 2005-06-25T05:10:24Z 2 2020-02-15T06:59:38Z +2975 2005-06-20T08:06:18Z 4534 46 2005-06-21T08:01:18Z 1 2020-02-15T06:59:38Z +2976 2005-06-20T08:09:11Z 4210 55 2005-06-21T10:45:11Z 1 2020-02-15T06:59:38Z +2977 2005-06-20T08:15:27Z 2645 571 2005-06-29T04:30:27Z 2 2020-02-15T06:59:38Z +2978 2005-06-20T08:25:16Z 4364 548 2005-06-23T05:42:16Z 1 2020-02-15T06:59:38Z +2979 2005-06-20T08:31:05Z 3961 589 2005-06-27T12:25:05Z 1 2020-02-15T06:59:38Z +2980 2005-06-20T08:35:03Z 310 343 2005-06-29T07:57:03Z 2 2020-02-15T06:59:38Z +2981 2005-06-20T08:35:17Z 522 387 2005-06-28T09:14:17Z 1 2020-02-15T06:59:38Z +2982 2005-06-20T08:38:29Z 2574 130 2005-06-28T13:21:29Z 1 2020-02-15T06:59:38Z +2983 2005-06-20T08:41:42Z 1349 322 2005-06-29T04:02:42Z 2 2020-02-15T06:59:38Z +2984 2005-06-20T08:43:44Z 1819 435 2005-06-22T03:08:44Z 2 2020-02-15T06:59:38Z +2985 2005-06-20T08:45:08Z 122 154 2005-06-22T04:26:08Z 2 2020-02-15T06:59:38Z +2986 2005-06-20T08:50:28Z 478 556 2005-06-26T05:24:28Z 2 2020-02-15T06:59:38Z +2987 2005-06-20T08:55:50Z 1531 349 2005-06-28T13:02:50Z 2 2020-02-15T06:59:38Z +2988 2005-06-20T08:59:08Z 3160 557 2005-06-28T04:31:08Z 2 2020-02-15T06:59:38Z +2989 2005-06-20T08:59:37Z 1586 56 2005-06-22T03:27:37Z 2 2020-02-15T06:59:38Z +2990 2005-06-20T09:02:51Z 4559 18 2005-06-29T13:19:51Z 2 2020-02-15T06:59:38Z +2991 2005-06-20T09:10:43Z 4308 472 2005-06-23T13:04:43Z 1 2020-02-15T06:59:38Z +2992 2005-06-20T09:11:51Z 3347 439 2005-06-24T05:59:51Z 1 2020-02-15T06:59:38Z +2993 2005-06-20T09:12:12Z 1527 40 2005-06-22T13:36:12Z 2 2020-02-15T06:59:38Z +2994 2005-06-20T09:17:05Z 1290 163 2005-06-29T04:41:05Z 1 2020-02-15T06:59:38Z +2995 2005-06-20T09:18:22Z 4544 573 2005-06-26T14:31:22Z 1 2020-02-15T06:59:38Z +2996 2005-06-20T09:20:29Z 4064 500 2005-06-27T09:18:29Z 1 2020-02-15T06:59:38Z +2997 2005-06-20T09:23:45Z 1449 519 2005-06-29T08:15:45Z 1 2020-02-15T06:59:38Z +2998 2005-06-20T09:30:22Z 1288 380 2005-06-24T06:31:22Z 2 2020-02-15T06:59:38Z +2999 2005-06-20T09:30:34Z 735 295 2005-06-26T05:51:34Z 2 2020-02-15T06:59:38Z +3000 2005-06-20T09:32:33Z 549 50 2005-06-22T07:45:33Z 1 2020-02-15T06:59:38Z +3001 2005-06-20T09:50:16Z 2941 393 2005-06-28T05:13:16Z 2 2020-02-15T06:59:38Z +3002 2005-06-20T09:56:12Z 2749 266 2005-06-24T12:15:12Z 2 2020-02-15T06:59:38Z +3003 2005-06-20T10:00:51Z 616 38 2005-06-22T06:28:51Z 2 2020-02-15T06:59:38Z +3004 2005-06-20T10:04:36Z 2836 113 2005-06-23T07:38:36Z 2 2020-02-15T06:59:38Z +3005 2005-06-20T10:10:29Z 286 598 2005-06-28T15:48:29Z 2 2020-02-15T06:59:38Z +3006 2005-06-20T10:10:29Z 1677 133 2005-06-22T07:26:29Z 2 2020-02-15T06:59:38Z +3007 2005-06-20T10:11:53Z 1950 7 2005-06-25T04:51:53Z 2 2020-02-15T06:59:38Z +3008 2005-06-20T10:23:25Z 3383 202 2005-06-26T11:00:25Z 2 2020-02-15T06:59:38Z +3009 2005-06-20T10:24:44Z 2721 280 2005-06-23T13:39:44Z 1 2020-02-15T06:59:38Z +3010 2005-06-20T10:29:59Z 1298 567 2005-06-27T06:52:59Z 1 2020-02-15T06:59:38Z +3011 2005-06-20T10:39:10Z 4376 147 2005-06-28T07:02:10Z 2 2020-02-15T06:59:38Z +3012 2005-06-20T10:43:13Z 1392 206 2005-06-28T10:07:13Z 2 2020-02-15T06:59:38Z +3013 2005-06-20T10:45:09Z 4146 290 2005-06-26T04:55:09Z 1 2020-02-15T06:59:38Z +3014 2005-06-20T10:45:20Z 2179 434 2005-06-23T06:29:20Z 1 2020-02-15T06:59:38Z +3015 2005-06-20T10:48:56Z 1311 23 2005-06-26T11:30:56Z 2 2020-02-15T06:59:38Z +3016 2005-06-20T10:55:08Z 3514 558 2005-06-24T14:05:08Z 1 2020-02-15T06:59:38Z +3017 2005-06-20T11:08:56Z 2513 151 2005-06-28T16:26:56Z 1 2020-02-15T06:59:38Z +3018 2005-06-20T11:10:35Z 4150 112 2005-06-25T07:17:35Z 2 2020-02-15T06:59:38Z +3019 2005-06-20T11:11:52Z 491 144 2005-06-27T08:30:52Z 2 2020-02-15T06:59:38Z +3020 2005-06-20T11:12:04Z 4363 74 2005-06-27T07:31:04Z 2 2020-02-15T06:59:38Z +3021 2005-06-20T11:13:01Z 120 62 2005-06-28T16:15:01Z 2 2020-02-15T06:59:38Z +3022 2005-06-20T11:17:20Z 3745 466 2005-06-26T13:15:20Z 2 2020-02-15T06:59:38Z +3023 2005-06-20T11:18:11Z 4304 106 2005-06-21T12:43:11Z 1 2020-02-15T06:59:38Z +3024 2005-06-20T11:29:17Z 1966 328 2005-06-27T12:51:17Z 2 2020-02-15T06:59:38Z +3025 2005-06-20T11:46:48Z 1309 293 2005-06-22T08:43:48Z 1 2020-02-15T06:59:38Z +3026 2005-06-20T11:48:00Z 4032 347 2005-06-21T12:51:00Z 2 2020-02-15T06:59:38Z +3027 2005-06-20T11:50:30Z 4028 397 2005-06-25T15:58:30Z 2 2020-02-15T06:59:38Z +3028 2005-06-20T11:50:52Z 886 264 2005-06-21T11:05:52Z 2 2020-02-15T06:59:38Z +3029 2005-06-20T11:51:30Z 327 317 2005-06-25T16:42:30Z 1 2020-02-15T06:59:38Z +3030 2005-06-20T11:51:59Z 1543 395 2005-06-24T10:51:59Z 1 2020-02-15T06:59:38Z +3031 2005-06-20T11:52:49Z 1184 491 2005-06-22T07:00:49Z 1 2020-02-15T06:59:38Z +3032 2005-06-20T11:58:30Z 3734 172 2005-06-24T09:49:30Z 1 2020-02-15T06:59:38Z +3033 2005-06-20T12:02:05Z 4422 107 2005-06-26T15:58:05Z 1 2020-02-15T06:59:38Z +3034 2005-06-20T12:15:50Z 2755 296 2005-06-24T06:21:50Z 2 2020-02-15T06:59:38Z +3035 2005-06-20T12:17:03Z 1223 62 2005-06-26T17:42:03Z 2 2020-02-15T06:59:38Z +3036 2005-06-20T12:18:31Z 4463 399 2005-06-29T09:52:31Z 1 2020-02-15T06:59:38Z +3037 2005-06-20T12:28:03Z 2033 434 2005-06-21T08:21:03Z 1 2020-02-15T06:59:38Z +3038 2005-06-20T12:28:59Z 2919 27 2005-06-25T07:48:59Z 1 2020-02-15T06:59:38Z +3039 2005-06-20T12:32:30Z 4098 186 2005-06-21T07:38:30Z 1 2020-02-15T06:59:38Z +3040 2005-06-20T12:34:13Z 2568 162 2005-06-21T12:33:13Z 1 2020-02-15T06:59:38Z +3041 2005-06-20T12:35:44Z 2676 459 2005-06-23T18:28:44Z 2 2020-02-15T06:59:38Z +3042 2005-06-20T12:38:27Z 3103 291 2005-06-26T11:18:27Z 1 2020-02-15T06:59:38Z +3043 2005-06-20T12:38:35Z 633 599 2005-06-29T14:16:35Z 2 2020-02-15T06:59:38Z +3044 2005-06-20T12:38:49Z 3216 424 2005-06-25T07:49:49Z 1 2020-02-15T06:59:38Z +3045 2005-06-20T12:42:00Z 3065 459 2005-06-23T10:49:00Z 2 2020-02-15T06:59:38Z +3046 2005-06-20T12:42:59Z 471 559 2005-06-26T17:40:59Z 2 2020-02-15T06:59:38Z +3047 2005-06-20T12:45:33Z 624 13 2005-06-29T13:09:33Z 2 2020-02-15T06:59:38Z +3048 2005-06-20T12:49:55Z 4389 482 2005-06-26T11:06:55Z 1 2020-02-15T06:59:38Z +3049 2005-06-20T12:51:01Z 518 403 2005-06-29T10:53:01Z 1 2020-02-15T06:59:38Z +3050 2005-06-20T13:03:03Z 2397 557 2005-06-29T07:22:03Z 1 2020-02-15T06:59:38Z +3051 2005-06-20T13:06:52Z 1408 65 2005-06-25T13:03:52Z 2 2020-02-15T06:59:38Z +3052 2005-06-20T13:09:19Z 2359 329 2005-06-29T11:55:19Z 2 2020-02-15T06:59:38Z +3053 2005-06-20T13:10:30Z 818 329 2005-06-25T17:22:30Z 2 2020-02-15T06:59:38Z +3054 2005-06-20T13:16:41Z 2817 322 2005-06-28T13:45:41Z 2 2020-02-15T06:59:38Z +3055 2005-06-20T13:19:58Z 1510 23 2005-06-27T14:54:58Z 1 2020-02-15T06:59:38Z +3056 2005-06-20T13:20:58Z 2010 95 2005-06-26T08:35:58Z 2 2020-02-15T06:59:38Z +3057 2005-06-20T13:22:48Z 1101 307 2005-06-26T17:22:48Z 2 2020-02-15T06:59:38Z +3058 2005-06-20T13:28:35Z 938 137 2005-06-28T13:57:35Z 2 2020-02-15T06:59:38Z +3059 2005-06-20T13:38:41Z 2911 266 2005-06-21T10:13:41Z 2 2020-02-15T06:59:38Z +3060 2005-06-20T13:47:20Z 2075 446 2005-06-25T16:00:20Z 2 2020-02-15T06:59:38Z +3061 2005-06-20T13:48:21Z 4202 330 2005-06-22T17:36:21Z 2 2020-02-15T06:59:38Z +3062 2005-06-20T13:50:00Z 591 75 2005-06-27T08:18:00Z 1 2020-02-15T06:59:38Z +3063 2005-06-20T13:52:03Z 3954 515 2005-06-28T13:36:03Z 2 2020-02-15T06:59:38Z +3064 2005-06-20T13:53:13Z 2624 276 2005-06-25T16:33:13Z 2 2020-02-15T06:59:38Z +3065 2005-06-20T13:53:53Z 1687 227 2005-06-24T11:31:53Z 1 2020-02-15T06:59:38Z +3066 2005-06-20T13:55:41Z 1116 268 2005-06-26T09:38:41Z 2 2020-02-15T06:59:38Z +3067 2005-06-20T13:59:21Z 3094 349 2005-06-28T19:09:21Z 2 2020-02-15T06:59:38Z +3068 2005-06-20T14:02:22Z 1958 516 2005-06-22T12:52:22Z 2 2020-02-15T06:59:38Z +3069 2005-06-20T14:13:00Z 1952 237 2005-06-28T10:57:00Z 1 2020-02-15T06:59:38Z +3070 2005-06-20T14:15:39Z 3860 543 2005-06-25T12:52:39Z 2 2020-02-15T06:59:38Z +3071 2005-06-20T14:20:42Z 1198 582 2005-06-24T19:01:42Z 1 2020-02-15T06:59:38Z +3072 2005-06-20T14:21:31Z 4131 423 2005-06-27T18:46:31Z 2 2020-02-15T06:59:38Z +3073 2005-06-20T14:33:26Z 3164 471 2005-06-26T08:42:26Z 2 2020-02-15T06:59:38Z +3074 2005-06-20T14:41:41Z 1441 299 2005-06-21T15:56:41Z 1 2020-02-15T06:59:38Z +3075 2005-06-20T14:52:19Z 4346 161 2005-06-28T18:48:19Z 2 2020-02-15T06:59:38Z +3076 2005-06-20T15:01:19Z 1344 109 2005-06-28T16:53:19Z 2 2020-02-15T06:59:38Z +3077 2005-06-20T15:05:18Z 1675 303 2005-06-26T20:52:18Z 2 2020-02-15T06:59:38Z +3078 2005-06-20T15:09:48Z 3642 367 2005-06-24T16:54:48Z 1 2020-02-15T06:59:38Z +3079 2005-06-20T15:13:40Z 2135 350 2005-06-21T12:03:40Z 1 2020-02-15T06:59:38Z +3080 2005-06-20T15:22:32Z 118 377 2005-06-24T11:08:32Z 1 2020-02-15T06:59:38Z +3081 2005-06-20T15:29:13Z 2071 342 2005-06-24T21:00:13Z 2 2020-02-15T06:59:38Z +3082 2005-06-20T15:32:11Z 4431 164 2005-06-28T13:08:11Z 1 2020-02-15T06:59:38Z +3083 2005-06-20T15:33:47Z 2896 257 2005-06-26T16:14:47Z 2 2020-02-15T06:59:38Z +3084 2005-06-20T15:35:24Z 3578 514 2005-06-23T19:11:24Z 1 2020-02-15T06:59:38Z +3085 2005-06-20T15:42:33Z 4282 166 2005-06-21T16:51:33Z 2 2020-02-15T06:59:38Z +3086 2005-06-20T15:42:40Z 4437 377 2005-06-25T19:21:40Z 1 2020-02-15T06:59:38Z +3087 2005-06-20T15:53:59Z 1305 111 2005-06-27T10:54:59Z 2 2020-02-15T06:59:38Z +3088 2005-06-20T15:56:05Z 3049 384 2005-06-29T13:02:05Z 1 2020-02-15T06:59:38Z +3089 2005-06-20T15:57:01Z 539 151 2005-06-25T13:15:01Z 2 2020-02-15T06:59:38Z +3090 2005-06-20T16:00:19Z 3301 267 2005-06-23T14:55:19Z 1 2020-02-15T06:59:38Z +3091 2005-06-20T16:02:59Z 854 383 2005-06-22T21:30:59Z 2 2020-02-15T06:59:38Z +3092 2005-06-20T16:04:42Z 4344 347 2005-06-27T19:54:42Z 1 2020-02-15T06:59:38Z +3093 2005-06-20T16:06:14Z 2534 556 2005-06-22T13:22:14Z 2 2020-02-15T06:59:38Z +3094 2005-06-20T16:06:51Z 2048 114 2005-06-24T13:23:51Z 1 2020-02-15T06:59:38Z +3095 2005-06-20T16:16:53Z 3937 298 2005-06-22T10:35:53Z 2 2020-02-15T06:59:38Z +3096 2005-06-20T16:17:56Z 3851 79 2005-06-24T10:17:56Z 2 2020-02-15T06:59:38Z +3097 2005-06-20T16:26:14Z 4337 280 2005-06-23T14:46:14Z 1 2020-02-15T06:59:38Z +3098 2005-06-20T16:37:01Z 3409 498 2005-06-22T22:24:01Z 1 2020-02-15T06:59:38Z +3099 2005-06-20T16:44:33Z 3756 380 2005-06-27T12:17:33Z 2 2020-02-15T06:59:38Z +3100 2005-06-20T16:47:57Z 2428 487 2005-06-26T16:59:57Z 1 2020-02-15T06:59:38Z +3101 2005-06-20T16:48:58Z 1738 384 2005-06-27T18:13:58Z 2 2020-02-15T06:59:38Z +3102 2005-06-20T16:55:55Z 1144 522 2005-06-29T13:49:55Z 1 2020-02-15T06:59:38Z +3103 2005-06-20T16:58:19Z 1877 553 2005-06-25T21:18:19Z 1 2020-02-15T06:59:38Z +3104 2005-06-20T17:06:46Z 1490 196 2005-06-28T13:18:46Z 2 2020-02-15T06:59:38Z +3105 2005-06-20T17:11:46Z 130 385 2005-06-21T11:48:46Z 2 2020-02-15T06:59:38Z +3106 2005-06-20T17:18:06Z 2637 201 2005-06-24T14:50:06Z 2 2020-02-15T06:59:38Z +3107 2005-06-20T17:26:05Z 4527 303 2005-06-25T12:36:05Z 1 2020-02-15T06:59:38Z +3108 2005-06-20T17:28:43Z 2218 189 2005-06-27T21:23:43Z 1 2020-02-15T06:59:38Z +3109 2005-06-20T17:33:55Z 977 93 2005-06-22T23:09:55Z 1 2020-02-15T06:59:38Z +3110 2005-06-20T17:40:12Z 2008 333 2005-06-24T17:09:12Z 1 2020-02-15T06:59:38Z +3111 2005-06-20T17:46:47Z 4494 579 2005-06-29T19:45:47Z 1 2020-02-15T06:59:38Z +3112 2005-06-20T17:53:30Z 3725 35 2005-06-26T16:03:30Z 1 2020-02-15T06:59:38Z +3113 2005-06-20T17:56:40Z 3620 517 2005-06-23T14:45:40Z 1 2020-02-15T06:59:38Z +3114 2005-06-20T17:57:47Z 2388 8 2005-06-21T19:18:47Z 2 2020-02-15T06:59:38Z +3115 2005-06-20T17:59:05Z 2193 457 2005-06-26T13:28:05Z 1 2020-02-15T06:59:38Z +3116 2005-06-20T18:04:55Z 276 108 2005-06-21T12:12:55Z 2 2020-02-15T06:59:38Z +3117 2005-06-20T18:05:15Z 2184 31 2005-06-26T17:28:15Z 1 2020-02-15T06:59:38Z +3118 2005-06-20T18:05:57Z 1258 125 2005-06-23T23:01:57Z 1 2020-02-15T06:59:38Z +3119 2005-06-20T18:11:44Z 683 296 2005-06-27T16:14:44Z 2 2020-02-15T06:59:38Z +3120 2005-06-20T18:19:29Z 2530 107 2005-06-23T23:40:29Z 1 2020-02-15T06:59:38Z +3121 2005-06-20T18:23:30Z 797 132 2005-06-21T20:36:30Z 1 2020-02-15T06:59:38Z +3122 2005-06-20T18:25:57Z 2720 87 2005-06-29T16:08:57Z 1 2020-02-15T06:59:38Z +3123 2005-06-20T18:26:14Z 1656 289 2005-06-29T17:17:14Z 1 2020-02-15T06:59:38Z +3124 2005-06-20T18:28:19Z 3342 113 2005-06-28T21:08:19Z 1 2020-02-15T06:59:38Z +3125 2005-06-20T18:31:58Z 3293 382 2005-06-21T15:03:58Z 1 2020-02-15T06:59:38Z +3126 2005-06-20T18:38:22Z 1183 5 2005-06-26T00:00:22Z 1 2020-02-15T06:59:38Z +3127 2005-06-20T18:39:43Z 1292 461 2005-06-28T17:55:43Z 1 2020-02-15T06:59:38Z +3128 2005-06-20T18:41:47Z 189 543 2005-06-24T20:54:47Z 2 2020-02-15T06:59:38Z +3129 2005-06-20T18:57:48Z 1789 495 2005-06-28T13:45:48Z 1 2020-02-15T06:59:38Z +3130 2005-06-20T19:03:22Z 2569 341 2005-06-29T18:05:22Z 2 2020-02-15T06:59:38Z +3131 2005-06-20T19:08:00Z 3678 146 2005-06-24T20:59:00Z 2 2020-02-15T06:59:38Z +3132 2005-06-20T19:09:46Z 711 90 2005-06-24T19:42:46Z 1 2020-02-15T06:59:38Z +3133 2005-06-20T19:18:32Z 4529 120 2005-06-26T17:54:32Z 2 2020-02-15T06:59:38Z +3134 2005-06-20T19:29:09Z 1389 537 2005-06-29T19:31:09Z 2 2020-02-15T06:59:38Z +3135 2005-06-20T19:33:52Z 1122 12 2005-06-29T18:20:52Z 1 2020-02-15T06:59:38Z +3136 2005-06-20T19:39:08Z 3349 377 2005-06-22T23:35:08Z 2 2020-02-15T06:59:38Z +3137 2005-06-20T19:41:28Z 786 505 2005-06-28T00:32:28Z 1 2020-02-15T06:59:38Z +3138 2005-06-20T19:43:45Z 2265 570 2005-06-26T20:41:45Z 1 2020-02-15T06:59:38Z +3139 2005-06-20T19:44:45Z 3474 354 2005-06-23T16:24:45Z 1 2020-02-15T06:59:38Z +3140 2005-06-20T19:47:12Z 2936 53 2005-06-24T23:24:12Z 1 2020-02-15T06:59:38Z +3141 2005-06-20T19:55:47Z 1806 398 2005-06-30T00:31:47Z 1 2020-02-15T06:59:38Z +3142 2005-06-20T19:59:28Z 3926 9 2005-06-28T19:51:28Z 2 2020-02-15T06:59:38Z +3143 2005-06-20T20:01:52Z 1355 215 2005-06-26T19:26:52Z 2 2020-02-15T06:59:38Z +3144 2005-06-20T20:14:20Z 1300 114 2005-06-30T01:46:20Z 1 2020-02-15T06:59:38Z +3145 2005-06-20T20:21:17Z 2211 144 2005-06-22T14:44:17Z 1 2020-02-15T06:59:38Z +3146 2005-06-20T20:21:48Z 2249 339 2005-06-29T22:57:48Z 2 2020-02-15T06:59:38Z +3147 2005-06-20T20:25:17Z 615 390 2005-06-28T20:22:17Z 2 2020-02-15T06:59:38Z +3148 2005-06-20T20:27:18Z 4490 202 2005-06-24T20:30:18Z 2 2020-02-15T06:59:38Z +3149 2005-06-20T20:34:55Z 3295 55 2005-06-21T18:51:55Z 1 2020-02-15T06:59:38Z +3150 2005-06-20T20:35:28Z 94 34 2005-06-26T01:01:28Z 1 2020-02-15T06:59:38Z +3151 2005-06-20T20:36:53Z 2976 77 2005-06-25T18:56:53Z 1 2020-02-15T06:59:38Z +3152 2005-06-20T20:42:41Z 1022 246 2005-06-28T21:12:41Z 1 2020-02-15T06:59:38Z +3153 2005-06-20T20:44:15Z 659 430 2005-06-23T16:04:15Z 1 2020-02-15T06:59:38Z +3154 2005-06-20T20:44:40Z 3195 550 2005-06-23T19:10:40Z 1 2020-02-15T06:59:38Z +3155 2005-06-20T21:02:38Z 458 450 2005-06-27T19:34:38Z 1 2020-02-15T06:59:38Z +3156 2005-06-20T21:03:46Z 2217 365 2005-06-21T23:32:46Z 2 2020-02-15T06:59:38Z +3157 2005-06-20T21:07:54Z 1899 245 2005-06-23T16:01:54Z 1 2020-02-15T06:59:38Z +3158 2005-06-20T21:08:19Z 3461 592 2005-06-29T18:59:19Z 1 2020-02-15T06:59:38Z +3159 2005-06-20T21:11:50Z 33 388 2005-06-29T19:35:50Z 2 2020-02-15T06:59:38Z +3160 2005-06-20T21:20:51Z 4333 561 2005-06-29T18:06:51Z 2 2020-02-15T06:59:38Z +3161 2005-06-20T21:21:01Z 1326 373 2005-06-21T18:22:01Z 2 2020-02-15T06:59:38Z +3162 2005-06-20T21:21:15Z 3220 113 2005-06-29T18:42:15Z 1 2020-02-15T06:59:38Z +3163 2005-06-20T21:22:13Z 2632 391 2005-06-26T15:22:13Z 2 2020-02-15T06:59:38Z +3164 2005-06-20T21:29:00Z 155 270 2005-06-27T15:50:00Z 1 2020-02-15T06:59:38Z +3165 2005-06-20T21:29:17Z 796 85 2005-06-22T18:03:17Z 1 2020-02-15T06:59:38Z +3166 2005-06-20T21:32:32Z 1850 424 2005-06-27T20:29:32Z 1 2020-02-15T06:59:38Z +3167 2005-06-20T21:42:29Z 353 464 2005-06-22T00:36:29Z 2 2020-02-15T06:59:38Z +3168 2005-06-20T21:46:01Z 2407 446 2005-06-22T20:40:01Z 1 2020-02-15T06:59:38Z +3169 2005-06-20T21:55:54Z 2437 50 2005-06-25T19:45:54Z 1 2020-02-15T06:59:38Z +3170 2005-06-20T22:02:54Z 1306 421 2005-06-29T00:41:54Z 2 2020-02-15T06:59:38Z +3171 2005-06-20T22:15:47Z 2838 140 2005-06-24T18:14:47Z 1 2020-02-15T06:59:38Z +3172 2005-06-20T22:19:25Z 1758 31 2005-06-24T17:18:25Z 2 2020-02-15T06:59:38Z +3173 2005-06-20T22:21:10Z 4306 33 2005-06-27T19:41:10Z 2 2020-02-15T06:59:38Z +3174 2005-06-20T22:24:00Z 3331 107 2005-06-22T21:22:00Z 2 2020-02-15T06:59:38Z +3175 2005-06-20T22:30:23Z 4093 249 2005-06-30T03:28:23Z 2 2020-02-15T06:59:38Z +3176 2005-06-20T22:31:54Z 1982 371 2005-06-25T02:58:54Z 1 2020-02-15T06:59:38Z +3177 2005-06-20T22:32:44Z 2546 300 2005-06-22T23:01:44Z 1 2020-02-15T06:59:38Z +3178 2005-06-20T22:35:12Z 3517 79 2005-06-23T19:39:12Z 1 2020-02-15T06:59:38Z +3179 2005-06-20T22:37:59Z 2214 163 2005-06-26T22:26:59Z 2 2020-02-15T06:59:38Z +3180 2005-06-20T22:48:44Z 3997 162 2005-06-21T21:25:44Z 1 2020-02-15T06:59:38Z +3181 2005-06-20T22:51:02Z 3473 238 2005-06-27T21:21:02Z 1 2020-02-15T06:59:38Z +3182 2005-06-20T22:52:18Z 4017 15 2005-06-21T21:00:18Z 2 2020-02-15T06:59:38Z +3183 2005-06-20T22:55:55Z 4397 129 2005-06-23T17:22:55Z 1 2020-02-15T06:59:38Z +3184 2005-06-20T22:57:44Z 3179 457 2005-06-29T20:57:44Z 1 2020-02-15T06:59:38Z +3185 2005-06-20T22:58:01Z 601 234 2005-06-27T00:26:01Z 1 2020-02-15T06:59:38Z +3186 2005-06-20T23:04:20Z 3198 406 2005-06-29T02:56:20Z 2 2020-02-15T06:59:38Z +3187 2005-06-20T23:06:07Z 4357 150 2005-06-27T01:14:07Z 2 2020-02-15T06:59:38Z +3188 2005-06-20T23:10:27Z 2471 522 2005-06-25T19:37:27Z 2 2020-02-15T06:59:38Z +3189 2005-06-20T23:19:33Z 1502 538 2005-06-24T17:46:33Z 1 2020-02-15T06:59:38Z +3190 2005-06-20T23:27:15Z 351 200 2005-06-28T01:22:15Z 2 2020-02-15T06:59:38Z +3191 2005-06-20T23:46:39Z 4358 522 2005-06-25T03:21:39Z 2 2020-02-15T06:59:38Z +3192 2005-06-20T23:49:12Z 3713 11 2005-06-24T03:00:12Z 1 2020-02-15T06:59:38Z +3193 2005-06-20T23:52:30Z 3176 260 2005-06-22T21:21:30Z 1 2020-02-15T06:59:38Z +3194 2005-06-20T23:59:57Z 1835 432 2005-06-24T19:21:57Z 1 2020-02-15T06:59:38Z +3195 2005-06-21T00:02:10Z 2383 165 2005-06-21T23:11:10Z 2 2020-02-15T06:59:38Z +3196 2005-06-21T00:02:28Z 1575 52 2005-06-22T23:08:28Z 1 2020-02-15T06:59:38Z +3197 2005-06-21T00:07:23Z 1811 362 2005-06-23T00:53:23Z 2 2020-02-15T06:59:38Z +3198 2005-06-21T00:08:54Z 1626 295 2005-06-29T02:11:54Z 2 2020-02-15T06:59:38Z +3199 2005-06-21T00:12:40Z 3824 234 2005-06-27T23:26:40Z 1 2020-02-15T06:59:38Z +3200 2005-06-21T00:22:47Z 4117 221 2005-06-27T05:52:47Z 2 2020-02-15T06:59:38Z +3201 2005-06-21T00:30:26Z 6 597 2005-06-28T03:42:26Z 1 2020-02-15T06:59:38Z +3202 2005-06-21T00:33:47Z 2725 273 2005-06-24T04:05:47Z 2 2020-02-15T06:59:38Z +3203 2005-06-21T00:34:56Z 442 158 2005-06-29T23:30:56Z 1 2020-02-15T06:59:38Z +3204 2005-06-21T00:37:50Z 2848 336 2005-06-22T23:46:50Z 1 2020-02-15T06:59:38Z +3205 2005-06-21T00:38:47Z 2964 31 2005-06-21T22:49:47Z 1 2020-02-15T06:59:38Z +3206 2005-06-21T00:39:39Z 2196 350 2005-06-22T05:12:39Z 1 2020-02-15T06:59:38Z +3207 2005-06-21T00:43:16Z 4020 86 2005-06-24T22:13:16Z 1 2020-02-15T06:59:38Z +3208 2005-06-21T00:50:03Z 3169 229 2005-06-24T06:15:03Z 2 2020-02-15T06:59:38Z +3209 2005-06-21T00:51:06Z 287 307 2005-06-22T21:49:06Z 2 2020-02-15T06:59:38Z +3210 2005-06-21T01:00:25Z 467 75 2005-06-23T06:10:25Z 2 2020-02-15T06:59:38Z +3211 2005-06-21T01:01:29Z 1150 415 2005-06-23T04:05:29Z 1 2020-02-15T06:59:38Z +3212 2005-06-21T01:04:35Z 4178 21 2005-06-30T00:10:35Z 2 2020-02-15T06:59:38Z +3213 2005-06-21T01:05:19Z 3832 534 2005-06-27T21:55:19Z 2 2020-02-15T06:59:38Z +3214 2005-06-21T01:08:26Z 776 142 2005-06-23T03:24:26Z 2 2020-02-15T06:59:38Z +3215 2005-06-21T01:11:32Z 4140 279 2005-06-26T19:42:32Z 1 2020-02-15T06:59:38Z +3216 2005-06-21T01:19:37Z 719 534 2005-06-29T06:45:37Z 2 2020-02-15T06:59:38Z +3217 2005-06-21T01:28:12Z 1027 463 2005-06-25T02:51:12Z 2 2020-02-15T06:59:38Z +3218 2005-06-21T01:38:09Z 1828 117 2005-06-23T02:00:09Z 1 2020-02-15T06:59:38Z +3219 2005-06-21T01:43:26Z 3024 129 2005-06-28T23:50:26Z 2 2020-02-15T06:59:38Z +3220 2005-06-21T01:46:25Z 1880 574 2005-06-26T07:44:25Z 2 2020-02-15T06:59:38Z +3221 2005-06-21T01:49:47Z 245 454 2005-06-25T06:31:47Z 1 2020-02-15T06:59:38Z +3222 2005-06-21T01:50:29Z 4023 501 2005-06-27T00:52:29Z 2 2020-02-15T06:59:38Z +3223 2005-06-21T02:06:45Z 1033 299 2005-06-22T07:16:45Z 2 2020-02-15T06:59:38Z +3224 2005-06-21T02:11:36Z 3318 173 2005-06-23T21:17:36Z 1 2020-02-15T06:59:38Z +3225 2005-06-21T02:16:55Z 1003 448 2005-06-27T05:39:55Z 2 2020-02-15T06:59:38Z +3226 2005-06-21T02:18:14Z 4079 576 2005-06-26T22:32:14Z 2 2020-02-15T06:59:38Z +3227 2005-06-21T02:18:25Z 1156 568 2005-06-27T00:59:25Z 1 2020-02-15T06:59:38Z +3228 2005-06-21T02:20:24Z 2489 535 2005-06-29T00:50:24Z 2 2020-02-15T06:59:38Z +3229 2005-06-21T02:20:41Z 2301 81 2005-06-26T00:39:41Z 1 2020-02-15T06:59:38Z +3230 2005-06-21T02:23:16Z 215 83 2005-06-22T01:37:16Z 2 2020-02-15T06:59:38Z +3231 2005-06-21T02:25:00Z 237 28 2005-06-23T05:46:00Z 2 2020-02-15T06:59:38Z +3232 2005-06-21T02:30:37Z 1972 555 2005-06-29T03:10:37Z 1 2020-02-15T06:59:38Z +3233 2005-06-21T02:39:31Z 3542 353 2005-06-28T05:23:31Z 2 2020-02-15T06:59:38Z +3234 2005-06-21T02:39:44Z 3252 459 2005-06-29T07:27:44Z 1 2020-02-15T06:59:38Z +3235 2005-06-21T02:46:17Z 212 49 2005-06-22T20:58:17Z 1 2020-02-15T06:59:38Z +3236 2005-06-21T02:47:43Z 1492 550 2005-06-29T08:04:43Z 2 2020-02-15T06:59:38Z +3237 2005-06-21T02:47:56Z 4399 466 2005-06-27T03:16:56Z 2 2020-02-15T06:59:38Z +3238 2005-06-21T02:48:21Z 2732 77 2005-06-23T04:43:21Z 1 2020-02-15T06:59:38Z +3239 2005-06-21T02:48:40Z 3402 328 2005-06-22T02:49:40Z 2 2020-02-15T06:59:38Z +3240 2005-06-21T02:53:17Z 2938 405 2005-06-30T03:25:17Z 2 2020-02-15T06:59:38Z +3241 2005-06-21T02:54:32Z 1442 499 2005-06-26T21:56:32Z 2 2020-02-15T06:59:38Z +3242 2005-06-21T02:56:24Z 1421 562 2005-06-29T21:41:24Z 2 2020-02-15T06:59:38Z +3243 2005-06-21T03:00:11Z 2556 426 2005-06-25T21:53:11Z 1 2020-02-15T06:59:38Z +3244 2005-06-21T03:01:10Z 291 53 2005-06-24T06:59:10Z 2 2020-02-15T06:59:38Z +3245 2005-06-21T03:06:11Z 2057 358 2005-06-25T08:06:11Z 2 2020-02-15T06:59:38Z +3246 2005-06-21T03:10:01Z 4432 41 2005-06-28T00:46:01Z 1 2020-02-15T06:59:38Z +3247 2005-06-21T03:12:15Z 1406 277 2005-06-27T00:44:15Z 1 2020-02-15T06:59:38Z +3248 2005-06-21T03:12:21Z 3656 78 2005-06-28T03:54:21Z 2 2020-02-15T06:59:38Z +3249 2005-06-21T03:13:19Z 703 410 2005-06-29T04:04:19Z 2 2020-02-15T06:59:38Z +3250 2005-06-21T03:16:36Z 736 467 2005-06-29T00:53:36Z 2 2020-02-15T06:59:38Z +3251 2005-06-21T03:20:37Z 1414 317 2005-06-23T04:54:37Z 2 2020-02-15T06:59:38Z +3252 2005-06-21T03:25:26Z 2009 213 2005-06-24T00:38:26Z 2 2020-02-15T06:59:38Z +3253 2005-06-21T03:25:37Z 1906 405 2005-06-27T02:46:37Z 2 2020-02-15T06:59:38Z +3254 2005-06-21T03:27:10Z 3893 472 2005-06-22T22:01:10Z 2 2020-02-15T06:59:38Z +3255 2005-06-21T03:39:52Z 2564 482 2005-06-24T04:02:52Z 1 2020-02-15T06:59:38Z +3256 2005-06-21T03:45:42Z 1235 319 2005-06-30T02:51:42Z 2 2020-02-15T06:59:38Z +3257 2005-06-21T03:47:19Z 3975 263 2005-06-28T01:24:19Z 2 2020-02-15T06:59:38Z +3258 2005-06-21T03:53:58Z 4417 241 2005-06-22T22:49:58Z 2 2020-02-15T06:59:38Z +3259 2005-06-21T03:57:15Z 2751 478 2005-06-24T03:32:15Z 1 2020-02-15T06:59:38Z +3260 2005-06-21T03:59:13Z 3627 380 2005-06-23T03:29:13Z 1 2020-02-15T06:59:38Z +3261 2005-06-21T04:07:41Z 2029 169 2005-06-24T06:25:41Z 2 2020-02-15T06:59:38Z +3262 2005-06-21T04:08:43Z 3773 9 2005-06-28T02:55:43Z 1 2020-02-15T06:59:38Z +3263 2005-06-21T04:15:52Z 3491 118 2005-06-24T02:19:52Z 2 2020-02-15T06:59:38Z +3264 2005-06-21T04:19:03Z 1666 340 2005-06-23T01:29:03Z 1 2020-02-15T06:59:38Z +3265 2005-06-21T04:23:13Z 3637 437 2005-06-28T03:37:13Z 1 2020-02-15T06:59:38Z +3266 2005-06-21T04:49:07Z 2533 175 2005-06-26T05:19:07Z 2 2020-02-15T06:59:38Z +3267 2005-06-21T04:55:21Z 1118 134 2005-06-29T23:46:21Z 1 2020-02-15T06:59:38Z +3268 2005-06-21T04:55:49Z 4366 329 2005-06-30T00:23:49Z 2 2020-02-15T06:59:38Z +3269 2005-06-21T05:06:30Z 3828 17 2005-06-27T09:26:30Z 2 2020-02-15T06:59:38Z +3270 2005-06-21T05:07:31Z 1578 86 2005-06-22T07:45:31Z 2 2020-02-15T06:59:38Z +3271 2005-06-21T05:16:10Z 4191 196 2005-06-27T10:46:10Z 1 2020-02-15T06:59:38Z +3272 2005-06-21T05:18:27Z 1090 550 2005-06-30T02:51:27Z 1 2020-02-15T06:59:38Z +3273 2005-06-21T05:24:17Z 3538 104 2005-06-23T01:21:17Z 2 2020-02-15T06:59:38Z +3274 2005-06-21T05:30:36Z 2156 277 2005-06-24T05:12:36Z 1 2020-02-15T06:59:38Z +3275 2005-06-21T05:33:04Z 2320 368 2005-06-30T00:37:04Z 2 2020-02-15T06:59:38Z +3276 2005-06-21T05:35:52Z 1890 425 2005-06-29T03:26:52Z 2 2020-02-15T06:59:38Z +3277 2005-06-21T05:36:37Z 1330 229 2005-06-29T10:54:37Z 1 2020-02-15T06:59:38Z +3278 2005-06-21T05:41:30Z 2832 554 2005-06-22T03:43:30Z 1 2020-02-15T06:59:38Z +3279 2005-06-21T06:05:53Z 1672 462 2005-06-25T09:40:53Z 1 2020-02-15T06:59:38Z +3280 2005-06-21T06:08:12Z 661 229 2005-06-24T09:34:12Z 1 2020-02-15T06:59:38Z +3281 2005-06-21T06:08:47Z 4006 363 2005-06-24T11:22:47Z 1 2020-02-15T06:59:38Z +3282 2005-06-21T06:18:42Z 1676 224 2005-06-28T09:18:42Z 1 2020-02-15T06:59:38Z +3283 2005-06-21T06:19:07Z 3988 372 2005-06-26T10:59:07Z 2 2020-02-15T06:59:38Z +3284 2005-06-21T06:24:45Z 4566 1 2005-06-28T03:28:45Z 1 2020-02-15T06:59:38Z +3285 2005-06-21T06:30:13Z 948 481 2005-06-23T10:31:13Z 2 2020-02-15T06:59:38Z +3286 2005-06-21T06:31:29Z 742 577 2005-06-25T00:46:29Z 2 2020-02-15T06:59:38Z +3287 2005-06-21T06:32:39Z 4406 62 2005-06-24T09:29:39Z 2 2020-02-15T06:59:38Z +3288 2005-06-21T06:36:59Z 1961 299 2005-06-30T06:50:59Z 1 2020-02-15T06:59:38Z +3289 2005-06-21T06:41:48Z 2248 115 2005-06-30T00:54:48Z 1 2020-02-15T06:59:38Z +3290 2005-06-21T06:45:34Z 2727 293 2005-06-28T09:44:34Z 1 2020-02-15T06:59:38Z +3291 2005-06-21T06:55:36Z 3866 274 2005-06-29T03:41:36Z 1 2020-02-15T06:59:38Z +3292 2005-06-21T06:59:11Z 3288 412 2005-06-23T07:11:11Z 1 2020-02-15T06:59:38Z +3293 2005-06-21T06:59:33Z 4407 481 2005-06-25T06:54:33Z 2 2020-02-15T06:59:38Z +3294 2005-06-21T07:03:23Z 2390 439 2005-06-30T02:22:23Z 2 2020-02-15T06:59:38Z +3295 2005-06-21T07:04:17Z 1703 573 2005-06-29T01:52:17Z 1 2020-02-15T06:59:38Z +3296 2005-06-21T07:04:53Z 2453 284 2005-06-25T08:36:53Z 1 2020-02-15T06:59:38Z +3297 2005-06-21T07:08:19Z 3969 193 2005-06-28T11:53:19Z 2 2020-02-15T06:59:38Z +3298 2005-06-21T07:09:44Z 444 492 2005-06-30T11:26:44Z 2 2020-02-15T06:59:38Z +3299 2005-06-21T07:23:34Z 3427 199 2005-06-27T04:02:34Z 1 2020-02-15T06:59:38Z +3300 2005-06-21T07:25:01Z 2505 565 2005-06-25T01:47:01Z 1 2020-02-15T06:59:38Z +3301 2005-06-21T07:32:25Z 503 444 2005-06-28T06:26:25Z 2 2020-02-15T06:59:38Z +3302 2005-06-21T07:33:40Z 562 594 2005-06-29T06:02:40Z 1 2020-02-15T06:59:38Z +3303 2005-06-21T07:34:14Z 1565 361 2005-06-26T13:18:14Z 2 2020-02-15T06:59:38Z +3304 2005-06-21T07:43:40Z 2154 431 2005-06-27T08:06:40Z 2 2020-02-15T06:59:38Z +3305 2005-06-21T07:46:57Z 2811 578 2005-06-27T06:16:57Z 1 2020-02-15T06:59:38Z +3306 2005-06-21T07:46:58Z 1669 406 2005-06-26T11:22:58Z 2 2020-02-15T06:59:38Z +3307 2005-06-21T07:52:30Z 462 85 2005-06-25T02:36:30Z 2 2020-02-15T06:59:38Z +3308 2005-06-21T07:58:36Z 3129 96 2005-06-23T05:23:36Z 2 2020-02-15T06:59:38Z +3309 2005-06-21T08:00:49Z 248 463 2005-06-29T04:11:49Z 2 2020-02-15T06:59:38Z +3310 2005-06-21T08:04:51Z 1717 395 2005-06-22T04:20:51Z 2 2020-02-15T06:59:38Z +3311 2005-06-21T08:05:27Z 3438 518 2005-06-22T06:51:27Z 2 2020-02-15T06:59:38Z +3312 2005-06-21T08:05:32Z 1008 554 2005-06-27T03:34:32Z 2 2020-02-15T06:59:38Z +3313 2005-06-21T08:11:18Z 4267 213 2005-06-23T04:28:18Z 2 2020-02-15T06:59:38Z +3314 2005-06-21T08:17:00Z 4332 185 2005-06-22T06:00:00Z 2 2020-02-15T06:59:38Z +3315 2005-06-21T08:17:04Z 4108 438 2005-06-24T11:04:04Z 1 2020-02-15T06:59:38Z +3316 2005-06-21T08:20:18Z 3271 451 2005-06-28T07:44:18Z 1 2020-02-15T06:59:38Z +3317 2005-06-21T08:22:32Z 4095 584 2005-06-26T14:18:32Z 2 2020-02-15T06:59:39Z +3318 2005-06-21T08:23:05Z 1111 414 2005-06-27T14:07:05Z 2 2020-02-15T06:59:39Z +3319 2005-06-21T08:25:46Z 2482 461 2005-06-27T03:54:46Z 2 2020-02-15T06:59:39Z +3320 2005-06-21T08:29:41Z 860 47 2005-06-29T13:54:41Z 2 2020-02-15T06:59:39Z +3321 2005-06-21T08:33:26Z 1750 144 2005-06-24T10:09:26Z 2 2020-02-15T06:59:39Z +3322 2005-06-21T08:42:37Z 4324 458 2005-06-22T13:17:37Z 1 2020-02-15T06:59:39Z +3323 2005-06-21T08:45:33Z 2252 272 2005-06-28T08:17:33Z 2 2020-02-15T06:59:39Z +3324 2005-06-21T08:49:16Z 2830 29 2005-06-22T12:31:16Z 1 2020-02-15T06:59:39Z +3325 2005-06-21T08:51:44Z 1720 185 2005-06-27T06:16:44Z 1 2020-02-15T06:59:39Z +3326 2005-06-21T09:04:50Z 1025 347 2005-06-30T12:10:50Z 2 2020-02-15T06:59:39Z +3327 2005-06-21T09:04:50Z 3083 62 2005-06-30T05:45:50Z 1 2020-02-15T06:59:39Z +3328 2005-06-21T09:08:44Z 2462 292 2005-06-30T12:28:44Z 1 2020-02-15T06:59:39Z +3329 2005-06-21T09:20:31Z 3506 335 2005-06-22T10:00:31Z 2 2020-02-15T06:59:39Z +3330 2005-06-21T09:22:37Z 299 294 2005-06-23T07:16:37Z 2 2020-02-15T06:59:39Z +3331 2005-06-21T09:37:53Z 2913 352 2005-06-26T04:01:53Z 2 2020-02-15T06:59:39Z +3332 2005-06-21T09:55:12Z 1975 82 2005-06-25T08:32:12Z 2 2020-02-15T06:59:39Z +3333 2005-06-21T10:01:36Z 3688 111 2005-06-25T10:27:36Z 2 2020-02-15T06:59:39Z +3334 2005-06-21T10:04:33Z 2491 66 2005-06-29T06:09:33Z 2 2020-02-15T06:59:39Z +3335 2005-06-21T10:09:08Z 3033 339 2005-06-27T11:33:08Z 1 2020-02-15T06:59:39Z +3336 2005-06-21T10:14:27Z 2122 173 2005-06-22T09:29:27Z 1 2020-02-15T06:59:39Z +3337 2005-06-21T10:24:35Z 1176 318 2005-06-22T13:51:35Z 1 2020-02-15T06:59:39Z +3338 2005-06-21T10:27:31Z 2097 171 2005-06-30T14:15:31Z 2 2020-02-15T06:59:39Z +3339 2005-06-21T10:37:11Z 312 526 2005-06-30T05:04:11Z 2 2020-02-15T06:59:39Z +3340 2005-06-21T10:37:23Z 2962 540 2005-06-26T07:21:23Z 2 2020-02-15T06:59:39Z +3341 2005-06-21T10:37:25Z 2189 591 2005-06-26T15:38:25Z 1 2020-02-15T06:59:39Z +3342 2005-06-21T10:46:36Z 2884 196 2005-06-23T09:46:36Z 2 2020-02-15T06:59:39Z +3343 2005-06-21T10:56:59Z 2038 466 2005-06-25T16:41:59Z 1 2020-02-15T06:59:39Z +3344 2005-06-21T10:57:27Z 4401 277 2005-06-28T10:53:27Z 1 2020-02-15T06:59:39Z +3345 2005-06-21T11:05:07Z 4442 71 2005-06-26T15:14:07Z 2 2020-02-15T06:59:39Z +3346 2005-06-21T11:06:53Z 4393 189 2005-06-22T15:19:53Z 2 2020-02-15T06:59:39Z +3347 2005-06-21T11:08:32Z 4330 448 2005-06-28T09:59:32Z 1 2020-02-15T06:59:39Z +3348 2005-06-21T11:16:42Z 2945 16 2005-06-27T13:50:42Z 2 2020-02-15T06:59:39Z +3349 2005-06-21T11:17:35Z 3885 336 2005-06-22T12:51:35Z 2 2020-02-15T06:59:39Z +3350 2005-06-21T11:21:38Z 3221 20 2005-06-28T15:37:38Z 2 2020-02-15T06:59:39Z +3351 2005-06-21T11:21:39Z 1591 386 2005-06-23T07:23:39Z 2 2020-02-15T06:59:39Z +3352 2005-06-21T11:26:29Z 578 510 2005-06-28T07:26:29Z 1 2020-02-15T06:59:39Z +3353 2005-06-21T11:29:23Z 3984 236 2005-06-27T15:06:23Z 1 2020-02-15T06:59:39Z +3354 2005-06-21T11:29:49Z 1083 529 2005-06-25T07:39:49Z 2 2020-02-15T06:59:39Z +3355 2005-06-21T11:30:47Z 1960 275 2005-06-23T06:04:47Z 1 2020-02-15T06:59:39Z +3356 2005-06-21T11:38:45Z 4532 403 2005-06-26T17:18:45Z 1 2020-02-15T06:59:39Z +3357 2005-06-21T11:55:42Z 2528 57 2005-06-22T07:19:42Z 2 2020-02-15T06:59:39Z +3358 2005-06-21T11:56:40Z 1772 69 2005-06-26T08:28:40Z 2 2020-02-15T06:59:39Z +3359 2005-06-21T12:08:18Z 3825 67 2005-06-25T16:35:18Z 2 2020-02-15T06:59:39Z +3360 2005-06-21T12:12:41Z 2792 498 2005-06-26T06:32:41Z 1 2020-02-15T06:59:39Z +3361 2005-06-21T12:14:23Z 2671 268 2005-06-26T10:01:23Z 2 2020-02-15T06:59:39Z +3362 2005-06-21T12:19:54Z 1284 454 2005-06-23T06:59:54Z 2 2020-02-15T06:59:39Z +3363 2005-06-21T12:25:07Z 538 261 2005-06-27T11:52:07Z 2 2020-02-15T06:59:39Z +3364 2005-06-21T12:37:46Z 2329 201 2005-06-28T07:18:46Z 2 2020-02-15T06:59:39Z +3365 2005-06-21T12:55:48Z 657 133 2005-06-23T13:38:48Z 2 2020-02-15T06:59:39Z +3366 2005-06-21T13:03:37Z 2584 511 2005-06-26T16:29:37Z 1 2020-02-15T06:59:39Z +3367 2005-06-21T13:08:21Z 2442 80 2005-06-26T08:43:21Z 2 2020-02-15T06:59:39Z +3368 2005-06-21T13:18:38Z 548 438 2005-06-23T11:13:38Z 1 2020-02-15T06:59:39Z +3369 2005-06-21T13:20:31Z 303 431 2005-06-30T13:45:31Z 2 2020-02-15T06:59:39Z +3370 2005-06-21T13:27:01Z 1573 559 2005-06-25T09:27:01Z 1 2020-02-15T06:59:39Z +3371 2005-06-21T13:27:22Z 2526 595 2005-06-29T14:04:22Z 2 2020-02-15T06:59:39Z +3372 2005-06-21T13:34:19Z 4169 346 2005-06-27T08:41:19Z 2 2020-02-15T06:59:39Z +3373 2005-06-21T13:35:32Z 2219 316 2005-06-30T12:03:32Z 1 2020-02-15T06:59:39Z +3374 2005-06-21T13:36:30Z 1067 279 2005-06-23T15:10:30Z 2 2020-02-15T06:59:39Z +3375 2005-06-21T13:37:18Z 912 279 2005-06-22T11:26:18Z 2 2020-02-15T06:59:39Z +3376 2005-06-21T13:43:02Z 3055 318 2005-06-28T18:07:02Z 1 2020-02-15T06:59:39Z +3377 2005-06-21T13:51:12Z 1845 428 2005-06-22T18:16:12Z 1 2020-02-15T06:59:39Z +3378 2005-06-21T13:51:28Z 35 387 2005-06-25T09:21:28Z 1 2020-02-15T06:59:39Z +3379 2005-06-21T13:54:58Z 2022 566 2005-06-23T13:43:58Z 2 2020-02-15T06:59:39Z +3380 2005-06-21T13:58:46Z 3212 483 2005-06-30T09:29:46Z 1 2020-02-15T06:59:39Z +3381 2005-06-21T14:02:59Z 1373 183 2005-06-29T18:11:59Z 2 2020-02-15T06:59:39Z +3382 2005-06-21T14:05:23Z 131 341 2005-06-29T19:13:23Z 2 2020-02-15T06:59:39Z +3383 2005-06-21T14:07:19Z 2968 239 2005-06-29T17:00:19Z 2 2020-02-15T06:59:39Z +3384 2005-06-21T14:07:35Z 409 91 2005-06-26T16:34:35Z 1 2020-02-15T06:59:39Z +3385 2005-06-21T14:16:48Z 2810 514 2005-06-24T10:32:48Z 2 2020-02-15T06:59:39Z +3386 2005-06-21T14:21:06Z 1224 190 2005-06-24T08:32:06Z 2 2020-02-15T06:59:39Z +3387 2005-06-21T14:21:49Z 2709 305 2005-06-24T16:46:49Z 2 2020-02-15T06:59:39Z +3388 2005-06-21T14:34:51Z 556 119 2005-06-28T18:19:51Z 1 2020-02-15T06:59:39Z +3389 2005-06-21T14:37:55Z 727 395 2005-06-28T18:13:55Z 1 2020-02-15T06:59:39Z +3390 2005-06-21T15:10:50Z 2034 151 2005-06-26T12:38:50Z 1 2020-02-15T06:59:39Z +3391 2005-06-21T15:11:02Z 26 45 2005-06-25T14:12:02Z 1 2020-02-15T06:59:39Z +3392 2005-06-21T15:12:44Z 3343 38 2005-06-29T18:19:44Z 1 2020-02-15T06:59:39Z +3393 2005-06-21T15:14:27Z 1631 362 2005-06-25T19:54:27Z 2 2020-02-15T06:59:39Z +3394 2005-06-21T15:17:39Z 3393 295 2005-06-30T13:55:39Z 2 2020-02-15T06:59:39Z +3395 2005-06-21T15:19:19Z 3764 66 2005-06-29T14:23:19Z 2 2020-02-15T06:59:39Z +3396 2005-06-21T15:23:08Z 2744 371 2005-06-23T10:25:08Z 1 2020-02-15T06:59:39Z +3397 2005-06-21T15:30:11Z 602 552 2005-06-22T21:12:11Z 1 2020-02-15T06:59:39Z +3398 2005-06-21T15:34:38Z 221 599 2005-06-29T11:23:38Z 1 2020-02-15T06:59:39Z +3399 2005-06-21T15:47:48Z 619 98 2005-06-26T13:46:48Z 1 2020-02-15T06:59:39Z +3400 2005-06-21T15:50:30Z 1697 298 2005-06-25T18:07:30Z 1 2020-02-15T06:59:39Z +3401 2005-06-21T15:52:43Z 3423 577 2005-06-30T21:09:43Z 2 2020-02-15T06:59:39Z +3402 2005-06-21T15:54:37Z 596 187 2005-06-30T13:43:37Z 1 2020-02-15T06:59:39Z +3403 2005-06-21T15:55:06Z 1741 264 2005-06-27T12:34:06Z 1 2020-02-15T06:59:39Z +3404 2005-06-21T15:57:52Z 2005 424 2005-06-24T20:58:52Z 2 2020-02-15T06:59:39Z +3405 2005-06-21T15:58:25Z 2344 155 2005-06-23T10:58:25Z 1 2020-02-15T06:59:39Z +3406 2005-06-21T16:00:18Z 2049 203 2005-06-23T18:25:18Z 1 2020-02-15T06:59:39Z +3407 2005-06-21T16:14:02Z 3919 343 2005-06-24T15:38:02Z 2 2020-02-15T06:59:39Z +3408 2005-06-21T16:15:11Z 3453 282 2005-06-27T14:55:11Z 1 2020-02-15T06:59:39Z +3409 2005-06-21T16:17:38Z 3374 429 2005-06-22T14:16:38Z 1 2020-02-15T06:59:39Z +3410 2005-06-21T16:20:47Z 1197 321 2005-06-24T19:09:47Z 2 2020-02-15T06:59:39Z +3411 2005-06-21T16:31:27Z 4250 12 2005-06-28T12:27:27Z 2 2020-02-15T06:59:39Z +3412 2005-06-21T16:44:31Z 3036 501 2005-06-28T16:15:31Z 2 2020-02-15T06:59:39Z +3413 2005-06-21T16:57:07Z 666 322 2005-06-30T12:03:07Z 2 2020-02-15T06:59:39Z +3414 2005-06-21T16:58:50Z 2929 226 2005-06-24T17:26:50Z 1 2020-02-15T06:59:39Z +3415 2005-06-21T16:59:49Z 3540 444 2005-06-27T17:19:49Z 1 2020-02-15T06:59:39Z +3416 2005-06-21T17:05:29Z 1215 76 2005-06-23T17:58:29Z 2 2020-02-15T06:59:39Z +3417 2005-06-21T17:06:20Z 874 282 2005-06-23T17:00:20Z 2 2020-02-15T06:59:39Z +3418 2005-06-21T17:06:38Z 4115 85 2005-06-25T19:43:38Z 1 2020-02-15T06:59:39Z +3419 2005-06-21T17:18:01Z 4022 22 2005-06-22T15:08:01Z 1 2020-02-15T06:59:39Z +3420 2005-06-21T17:22:36Z 2523 27 2005-06-28T12:34:36Z 1 2020-02-15T06:59:39Z +3421 2005-06-21T17:22:58Z 3930 346 2005-06-24T18:57:58Z 1 2020-02-15T06:59:39Z +3422 2005-06-21T17:24:40Z 2724 251 2005-06-29T13:59:40Z 2 2020-02-15T06:59:39Z +3423 2005-06-21T17:38:02Z 3612 19 2005-06-23T19:47:02Z 1 2020-02-15T06:59:39Z +3424 2005-06-21T17:42:51Z 1279 583 2005-06-24T23:22:51Z 2 2020-02-15T06:59:39Z +3425 2005-06-21T18:07:07Z 4548 381 2005-06-27T22:59:07Z 2 2020-02-15T06:59:39Z +3426 2005-06-21T18:12:10Z 3019 95 2005-06-23T18:22:10Z 1 2020-02-15T06:59:39Z +3427 2005-06-21T18:31:09Z 560 561 2005-06-22T14:18:09Z 2 2020-02-15T06:59:39Z +3428 2005-06-21T18:39:34Z 1959 40 2005-06-22T18:23:34Z 2 2020-02-15T06:59:39Z +3429 2005-06-21T18:46:05Z 456 599 2005-06-30T17:28:05Z 1 2020-02-15T06:59:39Z +3430 2005-06-21T18:46:08Z 1613 503 2005-06-22T13:49:08Z 2 2020-02-15T06:59:39Z +3431 2005-06-21T18:46:48Z 133 516 2005-06-26T23:08:48Z 1 2020-02-15T06:59:39Z +3432 2005-06-21T19:02:03Z 1814 216 2005-06-25T00:57:03Z 2 2020-02-15T06:59:39Z +3433 2005-06-21T19:07:19Z 1077 228 2005-06-29T18:01:19Z 2 2020-02-15T06:59:39Z +3434 2005-06-21T19:08:28Z 2295 141 2005-06-23T14:25:28Z 1 2020-02-15T06:59:39Z +3435 2005-06-21T19:14:58Z 451 591 2005-06-24T19:58:58Z 1 2020-02-15T06:59:39Z +3436 2005-06-21T19:16:09Z 2740 137 2005-06-30T13:58:09Z 2 2020-02-15T06:59:39Z +3437 2005-06-21T19:20:17Z 1798 211 2005-07-01T01:09:17Z 2 2020-02-15T06:59:39Z +3438 2005-06-21T19:31:40Z 1757 556 2005-06-30T19:08:40Z 1 2020-02-15T06:59:39Z +3439 2005-06-21T19:36:15Z 1529 46 2005-06-23T14:54:15Z 2 2020-02-15T06:59:39Z +3440 2005-06-21T19:58:18Z 853 491 2005-06-27T22:08:18Z 1 2020-02-15T06:59:39Z +3441 2005-06-21T20:00:12Z 2863 326 2005-06-24T00:24:12Z 2 2020-02-15T06:59:39Z +3442 2005-06-21T20:06:51Z 1896 255 2005-06-25T17:35:51Z 2 2020-02-15T06:59:39Z +3443 2005-06-21T20:19:00Z 1639 377 2005-06-30T15:39:00Z 1 2020-02-15T06:59:39Z +3444 2005-06-21T20:39:39Z 493 45 2005-06-25T23:44:39Z 2 2020-02-15T06:59:39Z +3445 2005-06-21T20:40:28Z 2381 74 2005-06-29T00:47:28Z 2 2020-02-15T06:59:39Z +3446 2005-06-21T20:45:51Z 1817 174 2005-06-26T17:02:51Z 1 2020-02-15T06:59:39Z +3447 2005-06-21T20:53:31Z 1146 25 2005-06-24T02:20:31Z 2 2020-02-15T06:59:39Z +3448 2005-06-21T20:59:20Z 592 476 2005-06-24T15:40:20Z 1 2020-02-15T06:59:39Z +3449 2005-06-21T21:01:27Z 210 181 2005-06-27T21:20:27Z 1 2020-02-15T06:59:39Z +3450 2005-06-21T21:01:57Z 2268 126 2005-06-25T23:57:57Z 1 2020-02-15T06:59:39Z +3451 2005-06-21T21:10:39Z 3489 558 2005-06-30T19:03:39Z 2 2020-02-15T06:59:39Z +3452 2005-06-21T21:11:27Z 2646 293 2005-06-24T16:31:27Z 1 2020-02-15T06:59:39Z +3453 2005-06-21T21:12:11Z 842 278 2005-06-23T17:39:11Z 2 2020-02-15T06:59:39Z +3454 2005-06-21T21:12:13Z 3009 524 2005-06-25T23:23:13Z 1 2020-02-15T06:59:39Z +3455 2005-06-21T21:17:51Z 4403 340 2005-06-23T17:22:51Z 1 2020-02-15T06:59:39Z +3456 2005-06-21T21:19:47Z 1119 150 2005-06-28T18:18:47Z 2 2020-02-15T06:59:39Z +3457 2005-06-21T21:42:33Z 883 312 2005-06-30T19:54:33Z 2 2020-02-15T06:59:39Z +3458 2005-06-21T21:42:49Z 2136 338 2005-06-29T01:26:49Z 1 2020-02-15T06:59:39Z +3459 2005-06-21T21:45:47Z 3080 97 2005-06-25T00:46:47Z 1 2020-02-15T06:59:39Z +3460 2005-06-21T21:46:56Z 1765 236 2005-06-29T20:08:56Z 1 2020-02-15T06:59:39Z +3461 2005-06-21T21:49:18Z 1715 23 2005-06-26T19:51:18Z 1 2020-02-15T06:59:39Z +3462 2005-06-21T21:52:52Z 547 568 2005-06-28T21:41:52Z 1 2020-02-15T06:59:39Z +3463 2005-06-21T22:00:00Z 3436 96 2005-06-22T19:22:00Z 2 2020-02-15T06:59:39Z +3464 2005-06-21T22:08:58Z 2698 251 2005-06-26T16:23:58Z 2 2020-02-15T06:59:39Z +3465 2005-06-21T22:10:01Z 1488 510 2005-06-30T21:35:01Z 1 2020-02-15T06:59:39Z +3466 2005-06-21T22:13:33Z 371 226 2005-06-25T21:01:33Z 2 2020-02-15T06:59:39Z +3467 2005-06-21T22:19:25Z 729 543 2005-06-27T00:03:25Z 2 2020-02-15T06:59:39Z +3468 2005-06-21T22:43:45Z 2899 100 2005-06-30T01:49:45Z 1 2020-02-15T06:59:39Z +3469 2005-06-21T22:48:59Z 4087 181 2005-06-28T19:32:59Z 1 2020-02-15T06:59:39Z +3470 2005-07-05T22:49:24Z 883 565 2005-07-07T19:36:24Z 1 2020-02-15T06:59:39Z +3471 2005-07-05T22:51:44Z 1724 242 2005-07-13T01:38:44Z 2 2020-02-15T06:59:39Z +3472 2005-07-05T22:56:33Z 841 37 2005-07-13T17:18:33Z 2 2020-02-15T06:59:39Z +3473 2005-07-05T22:57:34Z 2735 60 2005-07-12T23:53:34Z 1 2020-02-15T06:59:39Z +3474 2005-07-05T22:59:53Z 97 594 2005-07-08T20:32:53Z 1 2020-02-15T06:59:39Z +3475 2005-07-05T23:01:21Z 2189 8 2005-07-13T23:07:21Z 2 2020-02-15T06:59:39Z +3476 2005-07-05T23:02:37Z 3011 490 2005-07-10T22:17:37Z 2 2020-02-15T06:59:39Z +3477 2005-07-05T23:05:17Z 4289 476 2005-07-15T02:20:17Z 2 2020-02-15T06:59:39Z +3478 2005-07-05T23:05:44Z 2528 322 2005-07-07T00:14:44Z 2 2020-02-15T06:59:39Z +3479 2005-07-05T23:08:53Z 2277 298 2005-07-11T21:42:53Z 1 2020-02-15T06:59:39Z +3480 2005-07-05T23:11:43Z 1488 382 2005-07-12T02:01:43Z 2 2020-02-15T06:59:39Z +3481 2005-07-05T23:13:07Z 3575 138 2005-07-07T20:36:07Z 2 2020-02-15T06:59:39Z +3482 2005-07-05T23:13:22Z 1291 520 2005-07-12T19:02:22Z 2 2020-02-15T06:59:39Z +3483 2005-07-05T23:13:51Z 79 536 2005-07-13T18:31:51Z 1 2020-02-15T06:59:39Z +3484 2005-07-05T23:23:11Z 1934 114 2005-07-11T00:27:11Z 2 2020-02-15T06:59:39Z +3485 2005-07-05T23:25:54Z 117 111 2005-07-09T17:38:54Z 1 2020-02-15T06:59:39Z +3486 2005-07-05T23:29:55Z 4067 296 2005-07-13T19:54:55Z 1 2020-02-15T06:59:39Z +3487 2005-07-05T23:30:36Z 1575 586 2005-07-11T04:00:36Z 1 2020-02-15T06:59:39Z +3488 2005-07-05T23:32:49Z 898 349 2005-07-15T02:01:49Z 2 2020-02-15T06:59:39Z +3489 2005-07-05T23:33:40Z 2936 397 2005-07-15T02:15:40Z 2 2020-02-15T06:59:39Z +3490 2005-07-05T23:37:13Z 3041 369 2005-07-12T22:07:13Z 1 2020-02-15T06:59:39Z +3491 2005-07-05T23:41:08Z 1835 421 2005-07-13T21:53:08Z 1 2020-02-15T06:59:39Z +3492 2005-07-05T23:44:37Z 980 142 2005-07-14T03:54:37Z 1 2020-02-15T06:59:39Z +3493 2005-07-05T23:46:19Z 473 169 2005-07-15T02:31:19Z 1 2020-02-15T06:59:39Z +3494 2005-07-05T23:47:30Z 3149 348 2005-07-11T18:10:30Z 1 2020-02-15T06:59:39Z +3495 2005-07-05T23:50:04Z 2306 553 2005-07-10T01:06:04Z 1 2020-02-15T06:59:39Z +3496 2005-07-05T23:59:15Z 2430 295 2005-07-09T19:39:15Z 2 2020-02-15T06:59:39Z +3497 2005-07-06T00:00:03Z 1970 299 2005-07-09T01:27:03Z 1 2020-02-15T06:59:39Z +3498 2005-07-06T00:02:08Z 1869 444 2005-07-10T00:19:08Z 1 2020-02-15T06:59:39Z +3499 2005-07-06T00:04:20Z 1850 520 2005-07-14T21:12:20Z 2 2020-02-15T06:59:39Z +3500 2005-07-06T00:11:13Z 2447 32 2005-07-13T19:01:13Z 2 2020-02-15T06:59:39Z +3501 2005-07-06T00:11:28Z 2219 270 2005-07-10T20:32:28Z 2 2020-02-15T06:59:39Z +3502 2005-07-06T00:15:06Z 1026 126 2005-07-13T01:35:06Z 1 2020-02-15T06:59:39Z +3503 2005-07-06T00:17:24Z 2944 449 2005-07-08T03:47:24Z 1 2020-02-15T06:59:39Z +3504 2005-07-06T00:18:29Z 268 209 2005-07-10T00:24:29Z 2 2020-02-15T06:59:39Z +3505 2005-07-06T00:19:32Z 2630 331 2005-07-14T20:14:32Z 2 2020-02-15T06:59:39Z +3506 2005-07-06T00:22:29Z 19 459 2005-07-07T22:15:29Z 1 2020-02-15T06:59:39Z +3507 2005-07-06T00:23:43Z 166 480 2005-07-15T04:19:43Z 1 2020-02-15T06:59:39Z +3508 2005-07-06T00:24:25Z 2381 34 2005-07-10T05:38:25Z 2 2020-02-15T06:59:39Z +3509 2005-07-06T00:24:57Z 4394 182 2005-07-09T18:48:57Z 2 2020-02-15T06:59:39Z +3510 2005-07-06T00:27:41Z 2250 443 2005-07-14T23:20:41Z 2 2020-02-15T06:59:39Z +3511 2005-07-06T00:42:01Z 2128 494 2005-07-09T23:08:01Z 1 2020-02-15T06:59:39Z +3512 2005-07-06T00:43:06Z 371 291 2005-07-12T06:18:06Z 2 2020-02-15T06:59:39Z +3513 2005-07-06T00:45:57Z 4225 223 2005-07-11T19:04:57Z 2 2020-02-15T06:59:39Z +3514 2005-07-06T00:46:54Z 4546 536 2005-07-09T05:47:54Z 1 2020-02-15T06:59:39Z +3515 2005-07-06T00:48:55Z 3220 131 2005-07-09T00:15:55Z 1 2020-02-15T06:59:39Z +3516 2005-07-06T00:50:30Z 385 338 2005-07-09T19:12:30Z 2 2020-02-15T06:59:39Z +3517 2005-07-06T00:52:35Z 2762 314 2005-07-08T20:10:35Z 2 2020-02-15T06:59:39Z +3518 2005-07-06T00:56:03Z 2502 167 2005-07-14T02:27:03Z 1 2020-02-15T06:59:39Z +3519 2005-07-06T00:57:29Z 4314 320 2005-07-10T21:12:29Z 2 2020-02-15T06:59:39Z +3520 2005-07-06T00:58:27Z 2872 102 2005-07-14T05:56:27Z 1 2020-02-15T06:59:39Z +3521 2005-07-06T01:00:11Z 1440 262 2005-07-11T19:15:11Z 2 2020-02-15T06:59:39Z +3522 2005-07-06T01:00:21Z 4522 469 2005-07-11T01:18:21Z 1 2020-02-15T06:59:39Z +3523 2005-07-06T01:01:38Z 2171 549 2005-07-10T20:24:38Z 2 2020-02-15T06:59:39Z +3524 2005-07-06T01:01:51Z 1626 88 2005-07-11T19:52:51Z 2 2020-02-15T06:59:39Z +3525 2005-07-06T01:02:39Z 208 51 2005-07-14T02:27:39Z 1 2020-02-15T06:59:39Z +3526 2005-07-06T01:03:29Z 3871 469 2005-07-15T01:22:29Z 2 2020-02-15T06:59:39Z +3527 2005-07-06T01:11:08Z 4537 389 2005-07-08T01:21:08Z 1 2020-02-15T06:59:39Z +3528 2005-07-06T01:13:27Z 1954 201 2005-07-06T23:45:27Z 2 2020-02-15T06:59:39Z +3529 2005-07-06T01:15:26Z 4316 350 2005-07-07T04:28:26Z 1 2020-02-15T06:59:39Z +3530 2005-07-06T01:22:45Z 4542 168 2005-07-10T03:23:45Z 1 2020-02-15T06:59:39Z +3531 2005-07-06T01:24:08Z 1890 165 2005-07-11T22:00:08Z 2 2020-02-15T06:59:39Z +3532 2005-07-06T01:24:38Z 2635 274 2005-07-11T06:42:38Z 2 2020-02-15T06:59:39Z +3533 2005-07-06T01:26:44Z 2028 206 2005-07-14T21:37:44Z 1 2020-02-15T06:59:39Z +3534 2005-07-06T01:32:27Z 2055 283 2005-07-08T23:14:27Z 1 2020-02-15T06:59:39Z +3535 2005-07-06T01:32:46Z 4214 65 2005-07-11T03:15:46Z 1 2020-02-15T06:59:39Z +3536 2005-07-06T01:36:11Z 2328 339 2005-07-12T20:00:11Z 2 2020-02-15T06:59:39Z +3537 2005-07-06T01:36:53Z 4220 479 2005-07-13T07:01:53Z 2 2020-02-15T06:59:39Z +3538 2005-07-06T01:37:07Z 4361 228 2005-07-11T06:02:07Z 2 2020-02-15T06:59:39Z +3539 2005-07-06T01:39:08Z 4081 444 2005-07-07T05:38:08Z 1 2020-02-15T06:59:39Z +3540 2005-07-06T01:47:20Z 1295 97 2005-07-08T23:48:20Z 2 2020-02-15T06:59:39Z +3541 2005-07-06T01:50:11Z 1204 501 2005-07-12T03:24:11Z 1 2020-02-15T06:59:39Z +3542 2005-07-06T01:51:42Z 4391 593 2005-07-11T03:29:42Z 1 2020-02-15T06:59:39Z +3543 2005-07-06T02:01:08Z 3997 394 2005-07-07T03:14:08Z 1 2020-02-15T06:59:39Z +3544 2005-07-06T02:06:32Z 3098 115 2005-07-09T04:35:32Z 2 2020-02-15T06:59:39Z +3545 2005-07-06T02:16:17Z 3924 442 2005-07-11T00:54:17Z 1 2020-02-15T06:59:39Z +3546 2005-07-06T02:17:54Z 959 594 2005-07-07T00:19:54Z 1 2020-02-15T06:59:39Z +3547 2005-07-06T02:18:06Z 2730 239 2005-07-08T05:24:06Z 1 2020-02-15T06:59:39Z +3548 2005-07-06T02:23:39Z 4498 16 2005-07-08T07:53:39Z 2 2020-02-15T06:59:39Z +3549 2005-07-06T02:24:55Z 3921 19 2005-07-06T21:40:55Z 2 2020-02-15T06:59:39Z +3550 2005-07-06T02:29:21Z 2417 15 2005-07-13T05:26:21Z 2 2020-02-15T06:59:39Z +3551 2005-07-06T02:33:48Z 3602 111 2005-07-13T04:38:48Z 1 2020-02-15T06:59:39Z +3552 2005-07-06T02:34:09Z 1099 239 2005-07-12T05:31:09Z 1 2020-02-15T06:59:39Z +3553 2005-07-06T02:35:41Z 4510 422 2005-07-08T06:38:41Z 2 2020-02-15T06:59:39Z +3554 2005-07-06T02:37:10Z 793 538 2005-07-09T01:58:10Z 1 2020-02-15T06:59:39Z +3555 2005-07-06T02:45:35Z 869 537 2005-07-10T07:17:35Z 1 2020-02-15T06:59:39Z +3556 2005-07-06T02:46:13Z 3142 273 2005-07-06T22:08:13Z 1 2020-02-15T06:59:39Z +3557 2005-07-06T02:48:39Z 3832 292 2005-07-08T22:52:39Z 2 2020-02-15T06:59:39Z +3558 2005-07-06T02:49:06Z 1742 575 2005-07-15T01:38:06Z 2 2020-02-15T06:59:39Z +3559 2005-07-06T02:49:42Z 2211 483 2005-07-12T04:44:42Z 1 2020-02-15T06:59:39Z +3560 2005-07-06T02:51:37Z 888 592 2005-07-10T01:35:37Z 2 2020-02-15T06:59:39Z +3561 2005-07-06T02:54:33Z 213 231 2005-07-14T07:44:33Z 2 2020-02-15T06:59:39Z +3562 2005-07-06T02:54:36Z 1660 587 2005-07-11T05:48:36Z 1 2020-02-15T06:59:39Z +3563 2005-07-06T02:57:01Z 4261 210 2005-07-14T02:25:01Z 2 2020-02-15T06:59:39Z +3564 2005-07-06T03:02:13Z 1096 402 2005-07-13T01:41:13Z 2 2020-02-15T06:59:39Z +3565 2005-07-06T03:02:58Z 599 97 2005-07-13T21:31:58Z 2 2020-02-15T06:59:39Z +3566 2005-07-06T03:08:51Z 2774 392 2005-07-12T05:04:51Z 1 2020-02-15T06:59:39Z +3567 2005-07-06T03:09:36Z 27 355 2005-07-12T02:15:36Z 1 2020-02-15T06:59:39Z +3568 2005-07-06T03:11:57Z 2084 283 2005-07-15T03:14:57Z 1 2020-02-15T06:59:39Z +3569 2005-07-06T03:17:23Z 1929 496 2005-07-14T03:58:23Z 1 2020-02-15T06:59:39Z +3570 2005-07-06T03:23:43Z 1300 450 2005-07-14T07:28:43Z 2 2020-02-15T06:59:39Z +3571 2005-07-06T03:32:31Z 4166 580 2005-07-11T06:15:31Z 1 2020-02-15T06:59:39Z +3572 2005-07-06T03:33:23Z 1915 284 2005-07-08T07:54:23Z 1 2020-02-15T06:59:39Z +3573 2005-07-06T03:33:48Z 146 66 2005-07-07T22:39:48Z 1 2020-02-15T06:59:39Z +3574 2005-07-06T03:36:01Z 2799 225 2005-07-10T01:29:01Z 2 2020-02-15T06:59:39Z +3575 2005-07-06T03:36:19Z 3234 49 2005-07-08T06:21:19Z 1 2020-02-15T06:59:39Z +3576 2005-07-06T03:40:01Z 324 227 2005-07-15T07:22:01Z 1 2020-02-15T06:59:39Z +3577 2005-07-06T03:40:36Z 4390 152 2005-07-10T05:54:36Z 2 2020-02-15T06:59:39Z +3578 2005-07-06T03:47:05Z 2954 263 2005-07-08T02:26:05Z 1 2020-02-15T06:59:39Z +3579 2005-07-06T03:47:47Z 3309 485 2005-07-08T02:16:47Z 2 2020-02-15T06:59:39Z +3580 2005-07-06T03:48:44Z 3837 200 2005-07-13T01:15:44Z 2 2020-02-15T06:59:39Z +3581 2005-07-06T03:57:35Z 4520 235 2005-07-07T08:07:35Z 2 2020-02-15T06:59:39Z +3582 2005-07-06T04:10:35Z 1866 297 2005-07-11T01:29:35Z 2 2020-02-15T06:59:39Z +3583 2005-07-06T04:10:43Z 204 574 2005-07-14T22:17:43Z 2 2020-02-15T06:59:39Z +3584 2005-07-06T04:16:43Z 367 207 2005-07-13T07:08:43Z 1 2020-02-15T06:59:39Z +3585 2005-07-06T04:22:36Z 2726 266 2005-07-09T06:16:36Z 2 2020-02-15T06:59:39Z +3586 2005-07-06T04:24:42Z 616 493 2005-07-09T02:37:42Z 1 2020-02-15T06:59:39Z +3587 2005-07-06T04:27:52Z 462 110 2005-07-13T08:19:52Z 1 2020-02-15T06:59:39Z +3588 2005-07-06T04:29:13Z 3154 289 2005-07-07T23:49:13Z 1 2020-02-15T06:59:39Z +3589 2005-07-06T04:30:18Z 3740 137 2005-07-10T09:18:18Z 1 2020-02-15T06:59:39Z +3590 2005-07-06T04:35:12Z 1510 283 2005-07-10T05:14:12Z 2 2020-02-15T06:59:39Z +3591 2005-07-06T04:37:10Z 1241 53 2005-07-09T23:32:10Z 1 2020-02-15T06:59:39Z +3592 2005-07-06T04:38:50Z 1272 286 2005-07-15T06:36:50Z 2 2020-02-15T06:59:39Z +3593 2005-07-06T04:39:52Z 619 78 2005-07-11T23:20:52Z 2 2020-02-15T06:59:39Z +3594 2005-07-06T04:42:47Z 4566 522 2005-07-10T00:49:47Z 1 2020-02-15T06:59:39Z +3595 2005-07-06T04:59:49Z 1431 92 2005-07-15T06:26:49Z 2 2020-02-15T06:59:39Z +3596 2005-07-06T05:03:11Z 594 419 2005-07-07T05:30:11Z 2 2020-02-15T06:59:39Z +3597 2005-07-06T05:03:59Z 4080 35 2005-07-13T06:49:59Z 2 2020-02-15T06:59:39Z +3598 2005-07-06T05:11:04Z 1317 68 2005-07-09T02:03:04Z 2 2020-02-15T06:59:39Z +3599 2005-07-06T05:16:36Z 3262 577 2005-07-13T07:14:36Z 2 2020-02-15T06:59:39Z +3600 2005-07-06T05:19:42Z 2748 511 2005-07-11T00:34:42Z 2 2020-02-15T06:59:39Z +3601 2005-07-06T05:20:25Z 2806 205 2005-07-15T03:13:25Z 1 2020-02-15T06:59:39Z +3602 2005-07-06T05:23:10Z 2192 100 2005-07-15T03:22:10Z 2 2020-02-15T06:59:39Z +3603 2005-07-06T05:25:03Z 2442 330 2005-07-12T08:14:03Z 1 2020-02-15T06:59:39Z +3604 2005-07-06T05:25:22Z 1380 242 2005-07-07T23:52:22Z 1 2020-02-15T06:59:39Z +3605 2005-07-06T05:27:15Z 384 347 2005-07-10T00:05:15Z 2 2020-02-15T06:59:39Z +3606 2005-07-06T05:28:02Z 1737 166 2005-07-10T04:51:02Z 1 2020-02-15T06:59:39Z +3607 2005-07-06T05:30:09Z 542 335 2005-07-08T01:36:09Z 2 2020-02-15T06:59:39Z +3608 2005-07-06T05:35:39Z 3095 368 2005-07-10T07:46:39Z 2 2020-02-15T06:59:39Z +3609 2005-07-06T05:36:22Z 1064 373 2005-07-10T05:55:22Z 1 2020-02-15T06:59:39Z +3610 2005-07-06T05:36:59Z 1509 348 2005-07-13T07:07:59Z 1 2020-02-15T06:59:39Z +3611 2005-07-06T05:37:18Z 4502 86 2005-07-10T05:14:18Z 1 2020-02-15T06:59:39Z +3612 2005-07-06T05:37:26Z 2465 402 2005-07-14T01:51:26Z 1 2020-02-15T06:59:39Z +3613 2005-07-06T05:45:53Z 3776 331 2005-07-07T10:02:53Z 1 2020-02-15T06:59:39Z +3614 2005-07-06T05:46:05Z 853 502 2005-07-11T01:24:05Z 2 2020-02-15T06:59:39Z +3615 2005-07-06T05:47:47Z 711 49 2005-07-11T05:01:47Z 1 2020-02-15T06:59:39Z +3616 2005-07-06T05:52:13Z 557 571 2005-07-10T10:24:13Z 1 2020-02-15T06:59:39Z +3617 2005-07-06T05:58:06Z 1337 125 2005-07-13T02:10:06Z 1 2020-02-15T06:59:39Z +3618 2005-07-06T05:58:45Z 330 264 2005-07-15T09:13:45Z 2 2020-02-15T06:59:39Z +3619 2005-07-06T05:59:44Z 3350 526 2005-07-11T08:58:44Z 2 2020-02-15T06:59:39Z +3620 2005-07-06T06:01:50Z 1661 88 2005-07-08T05:04:50Z 1 2020-02-15T06:59:39Z +3621 2005-07-06T06:03:55Z 3132 171 2005-07-11T09:25:55Z 2 2020-02-15T06:59:39Z +3622 2005-07-06T06:05:04Z 3489 454 2005-07-12T03:14:04Z 2 2020-02-15T06:59:39Z +3623 2005-07-06T06:05:23Z 430 80 2005-07-07T05:59:23Z 1 2020-02-15T06:59:39Z +3624 2005-07-06T06:06:27Z 1778 115 2005-07-13T08:30:27Z 2 2020-02-15T06:59:39Z +3625 2005-07-06T06:12:52Z 1133 175 2005-07-12T07:37:52Z 1 2020-02-15T06:59:39Z +3626 2005-07-06T06:15:35Z 1599 337 2005-07-10T10:18:35Z 2 2020-02-15T06:59:39Z +3627 2005-07-06T06:19:25Z 1087 322 2005-07-11T05:53:25Z 1 2020-02-15T06:59:39Z +3628 2005-07-06T06:19:43Z 3509 588 2005-07-07T02:23:43Z 1 2020-02-15T06:59:39Z +3629 2005-07-06T06:23:22Z 4019 441 2005-07-08T09:32:22Z 2 2020-02-15T06:59:39Z +3630 2005-07-06T06:27:15Z 2448 102 2005-07-12T10:36:15Z 1 2020-02-15T06:59:39Z +3631 2005-07-06T06:36:53Z 4068 47 2005-07-07T10:32:53Z 1 2020-02-15T06:59:39Z +3632 2005-07-06T06:38:21Z 2583 366 2005-07-11T03:19:21Z 1 2020-02-15T06:59:39Z +3633 2005-07-06T06:43:26Z 2978 95 2005-07-10T04:54:26Z 1 2020-02-15T06:59:39Z +3634 2005-07-06T06:51:14Z 3688 245 2005-07-10T02:30:14Z 1 2020-02-15T06:59:39Z +3635 2005-07-06T06:55:36Z 421 250 2005-07-09T07:57:36Z 2 2020-02-15T06:59:39Z +3636 2005-07-06T07:03:52Z 3379 591 2005-07-08T03:14:52Z 2 2020-02-15T06:59:39Z +3637 2005-07-06T07:06:31Z 3823 380 2005-07-10T02:11:31Z 2 2020-02-15T06:59:39Z +3638 2005-07-06T07:08:17Z 190 452 2005-07-13T12:30:17Z 1 2020-02-15T06:59:39Z +3639 2005-07-06T07:09:17Z 2812 7 2005-07-15T05:12:17Z 2 2020-02-15T06:59:39Z +3640 2005-07-06T07:12:26Z 3432 271 2005-07-10T04:54:26Z 2 2020-02-15T06:59:39Z +3641 2005-07-06T07:17:09Z 3834 79 2005-07-11T07:25:09Z 1 2020-02-15T06:59:39Z +3642 2005-07-06T07:18:20Z 4204 166 2005-07-09T01:37:20Z 1 2020-02-15T06:59:39Z +3643 2005-07-06T07:20:08Z 845 176 2005-07-11T07:01:08Z 1 2020-02-15T06:59:39Z +3644 2005-07-06T07:20:11Z 4309 403 2005-07-11T10:26:11Z 2 2020-02-15T06:59:39Z +3645 2005-07-06T07:22:09Z 3390 236 2005-07-10T11:45:09Z 1 2020-02-15T06:59:39Z +3646 2005-07-06T07:28:59Z 3591 322 2005-07-11T05:19:59Z 1 2020-02-15T06:59:39Z +3647 2005-07-06T07:29:17Z 3762 145 2005-07-13T08:32:17Z 1 2020-02-15T06:59:39Z +3648 2005-07-06T07:30:41Z 2810 598 2005-07-10T06:00:41Z 2 2020-02-15T06:59:39Z +3649 2005-07-06T07:32:42Z 3564 24 2005-07-12T09:37:42Z 1 2020-02-15T06:59:39Z +3650 2005-07-06T07:34:15Z 3606 482 2005-07-08T01:50:15Z 2 2020-02-15T06:59:39Z +3651 2005-07-06T07:40:31Z 3323 170 2005-07-08T03:39:31Z 2 2020-02-15T06:59:39Z +3652 2005-07-06T07:44:30Z 1231 518 2005-07-08T04:41:30Z 1 2020-02-15T06:59:39Z +3653 2005-07-06T07:45:13Z 2513 148 2005-07-10T11:51:13Z 2 2020-02-15T06:59:39Z +3654 2005-07-06T07:45:31Z 1621 528 2005-07-12T09:59:31Z 2 2020-02-15T06:59:39Z +3655 2005-07-06T07:52:54Z 1540 493 2005-07-15T10:49:54Z 2 2020-02-15T06:59:39Z +3656 2005-07-06T07:55:22Z 4544 314 2005-07-13T10:36:22Z 2 2020-02-15T06:59:39Z +3657 2005-07-06T07:55:30Z 4134 113 2005-07-11T07:18:30Z 1 2020-02-15T06:59:39Z +3658 2005-07-06T08:01:08Z 3453 253 2005-07-15T06:36:08Z 1 2020-02-15T06:59:39Z +3659 2005-07-06T08:03:14Z 2271 330 2005-07-12T09:50:14Z 1 2020-02-15T06:59:39Z +3660 2005-07-06T08:07:29Z 1129 507 2005-07-14T08:46:29Z 1 2020-02-15T06:59:39Z +3661 2005-07-06T08:10:02Z 2600 442 2005-07-10T10:17:02Z 1 2020-02-15T06:59:39Z +3662 2005-07-06T08:11:48Z 3827 334 2005-07-09T12:25:48Z 2 2020-02-15T06:59:39Z +3663 2005-07-06T08:15:47Z 2646 566 2005-07-07T08:57:47Z 1 2020-02-15T06:59:39Z +3664 2005-07-06T08:15:57Z 3366 528 2005-07-08T06:11:57Z 1 2020-02-15T06:59:39Z +3665 2005-07-06T08:23:08Z 922 102 2005-07-13T13:38:08Z 2 2020-02-15T06:59:39Z +3666 2005-07-06T08:27:43Z 4212 347 2005-07-09T07:37:43Z 2 2020-02-15T06:59:39Z +3667 2005-07-06T08:36:34Z 447 373 2005-07-15T04:25:34Z 2 2020-02-15T06:59:39Z +3668 2005-07-06T08:36:48Z 269 514 2005-07-10T11:31:48Z 1 2020-02-15T06:59:39Z +3669 2005-07-06T08:38:29Z 1299 530 2005-07-10T05:28:29Z 1 2020-02-15T06:59:39Z +3670 2005-07-06T08:56:43Z 4271 268 2005-07-11T09:11:43Z 1 2020-02-15T06:59:39Z +3671 2005-07-06T09:01:29Z 2821 179 2005-07-15T08:08:29Z 1 2020-02-15T06:59:39Z +3672 2005-07-06T09:01:56Z 3883 283 2005-07-11T14:18:56Z 1 2020-02-15T06:59:39Z +3673 2005-07-06T09:02:09Z 1837 88 2005-07-15T06:45:09Z 2 2020-02-15T06:59:39Z +3674 2005-07-06T09:03:13Z 3686 559 2005-07-13T08:43:13Z 1 2020-02-15T06:59:39Z +3675 2005-07-06T09:09:19Z 3662 282 2005-07-12T08:51:19Z 1 2020-02-15T06:59:39Z +3676 2005-07-06T09:10:37Z 1967 137 2005-07-14T08:24:37Z 1 2020-02-15T06:59:39Z +3677 2005-07-06T09:11:58Z 600 5 2005-07-08T10:50:58Z 2 2020-02-15T06:59:39Z +3678 2005-07-06T09:15:15Z 3861 364 2005-07-10T05:01:15Z 1 2020-02-15T06:59:39Z +3679 2005-07-06T09:15:57Z 2186 547 2005-07-08T03:20:57Z 1 2020-02-15T06:59:39Z +3680 2005-07-06T09:16:10Z 2427 82 2005-07-08T07:52:10Z 2 2020-02-15T06:59:39Z +3681 2005-07-06T09:19:30Z 3325 294 2005-07-11T09:40:30Z 1 2020-02-15T06:59:39Z +3682 2005-07-06T09:22:48Z 2597 98 2005-07-14T11:17:48Z 2 2020-02-15T06:59:39Z +3683 2005-07-06T09:25:56Z 3020 43 2005-07-14T12:10:56Z 1 2020-02-15T06:59:39Z +3684 2005-07-06T09:29:22Z 3261 395 2005-07-12T08:19:22Z 1 2020-02-15T06:59:39Z +3685 2005-07-06T09:30:45Z 2015 58 2005-07-11T15:16:45Z 2 2020-02-15T06:59:39Z +3686 2005-07-06T09:37:50Z 376 548 2005-07-09T10:15:50Z 2 2020-02-15T06:59:39Z +3687 2005-07-06T09:38:33Z 2040 207 2005-07-14T07:50:33Z 1 2020-02-15T06:59:39Z +3688 2005-07-06T09:41:53Z 1102 380 2005-07-14T10:30:53Z 2 2020-02-15T06:59:39Z +3689 2005-07-06T09:43:01Z 3168 129 2005-07-11T09:57:01Z 1 2020-02-15T06:59:39Z +3690 2005-07-06T09:46:03Z 4405 435 2005-07-07T12:12:03Z 1 2020-02-15T06:59:39Z +3691 2005-07-06T09:46:12Z 1937 478 2005-07-07T14:08:12Z 1 2020-02-15T06:59:39Z +3692 2005-07-06T09:54:12Z 1237 286 2005-07-11T09:42:12Z 2 2020-02-15T06:59:39Z +3693 2005-07-06T09:56:09Z 2989 545 2005-07-15T06:50:09Z 2 2020-02-15T06:59:39Z +3694 2005-07-06T10:01:23Z 3848 419 2005-07-08T11:44:23Z 2 2020-02-15T06:59:39Z +3695 2005-07-06T10:02:08Z 2823 441 2005-07-09T15:43:08Z 1 2020-02-15T06:59:39Z +3696 2005-07-06T10:04:55Z 3244 497 2005-07-11T15:58:55Z 2 2020-02-15T06:59:39Z +3697 2005-07-06T10:07:22Z 1223 182 2005-07-13T14:04:22Z 2 2020-02-15T06:59:39Z +3698 2005-07-06T10:09:20Z 1263 461 2005-07-08T15:49:20Z 1 2020-02-15T06:59:39Z +3699 2005-07-06T10:11:25Z 418 262 2005-07-14T05:18:25Z 1 2020-02-15T06:59:39Z +3700 2005-07-06T10:12:19Z 343 72 2005-07-07T14:21:19Z 2 2020-02-15T06:59:39Z +3701 2005-07-06T10:12:45Z 3679 31 2005-07-09T08:52:45Z 1 2020-02-15T06:59:39Z +3702 2005-07-06T10:13:56Z 2204 428 2005-07-10T08:12:56Z 1 2020-02-15T06:59:39Z +3703 2005-07-06T10:15:26Z 4276 421 2005-07-13T13:00:26Z 1 2020-02-15T06:59:39Z +3704 2005-07-06T10:16:45Z 2687 323 2005-07-13T12:44:45Z 2 2020-02-15T06:59:39Z +3705 2005-07-06T10:17:59Z 65 223 2005-07-10T15:31:59Z 1 2020-02-15T06:59:39Z +3706 2005-07-06T10:18:01Z 681 132 2005-07-09T09:07:01Z 2 2020-02-15T06:59:39Z +3707 2005-07-06T10:21:49Z 1080 14 2005-07-12T05:14:49Z 2 2020-02-15T06:59:39Z +3708 2005-07-06T10:23:27Z 2105 201 2005-07-14T09:26:27Z 1 2020-02-15T06:59:39Z +3709 2005-07-06T10:26:56Z 4033 187 2005-07-15T13:51:56Z 2 2020-02-15T06:59:39Z +3710 2005-07-06T10:28:53Z 2596 228 2005-07-15T06:17:53Z 2 2020-02-15T06:59:39Z +3711 2005-07-06T10:46:15Z 1914 75 2005-07-07T09:25:15Z 2 2020-02-15T06:59:39Z +3712 2005-07-06T10:47:35Z 3741 504 2005-07-15T09:39:35Z 1 2020-02-15T06:59:39Z +3713 2005-07-06T10:49:30Z 1823 504 2005-07-13T10:44:30Z 1 2020-02-15T06:59:39Z +3714 2005-07-06T10:51:28Z 1985 276 2005-07-09T13:57:28Z 2 2020-02-15T06:59:39Z +3715 2005-07-06T10:51:48Z 4456 228 2005-07-11T06:08:48Z 1 2020-02-15T06:59:39Z +3716 2005-07-06T10:52:32Z 3271 92 2005-07-14T08:45:32Z 2 2020-02-15T06:59:39Z +3717 2005-07-06T10:53:34Z 1677 173 2005-07-07T13:43:34Z 2 2020-02-15T06:59:39Z +3718 2005-07-06T10:57:56Z 2624 56 2005-07-12T12:54:56Z 1 2020-02-15T06:59:39Z +3719 2005-07-06T11:05:55Z 3573 376 2005-07-11T08:10:55Z 2 2020-02-15T06:59:39Z +3720 2005-07-06T11:06:57Z 2958 96 2005-07-09T14:16:57Z 1 2020-02-15T06:59:39Z +3721 2005-07-06T11:10:09Z 2654 226 2005-07-11T07:45:09Z 2 2020-02-15T06:59:39Z +3722 2005-07-06T11:10:27Z 604 83 2005-07-13T12:56:27Z 2 2020-02-15T06:59:39Z +3723 2005-07-06T11:12:02Z 4554 501 2005-07-14T16:45:02Z 2 2020-02-15T06:59:39Z +3724 2005-07-06T11:12:48Z 3622 468 2005-07-14T14:41:48Z 1 2020-02-15T06:59:39Z +3725 2005-07-06T11:15:04Z 2789 126 2005-07-09T06:39:04Z 1 2020-02-15T06:59:39Z +3726 2005-07-06T11:15:49Z 742 363 2005-07-11T05:54:49Z 2 2020-02-15T06:59:39Z +3727 2005-07-06T11:16:43Z 2886 57 2005-07-07T15:39:43Z 1 2020-02-15T06:59:39Z +3728 2005-07-06T11:29:00Z 1798 298 2005-07-11T06:28:00Z 1 2020-02-15T06:59:39Z +3729 2005-07-06T11:30:29Z 3156 90 2005-07-12T07:18:29Z 1 2020-02-15T06:59:39Z +3730 2005-07-06T11:31:24Z 1665 355 2005-07-15T06:53:24Z 1 2020-02-15T06:59:39Z +3731 2005-07-06T11:33:36Z 4133 558 2005-07-15T12:23:36Z 2 2020-02-15T06:59:39Z +3732 2005-07-06T11:33:37Z 106 318 2005-07-08T08:31:37Z 1 2020-02-15T06:59:39Z +3733 2005-07-06T11:33:55Z 3242 586 2005-07-09T10:08:55Z 2 2020-02-15T06:59:39Z +3734 2005-07-06T11:40:27Z 4569 37 2005-07-14T12:08:27Z 1 2020-02-15T06:59:39Z +3735 2005-07-06T11:42:04Z 2262 534 2005-07-12T14:33:04Z 2 2020-02-15T06:59:39Z +3736 2005-07-06T11:43:44Z 1515 23 2005-07-13T07:55:44Z 2 2020-02-15T06:59:39Z +3737 2005-07-06T11:45:53Z 123 403 2005-07-13T15:27:53Z 1 2020-02-15T06:59:39Z +3738 2005-07-06T11:50:57Z 578 546 2005-07-09T08:07:57Z 1 2020-02-15T06:59:39Z +3739 2005-07-06T11:54:18Z 4333 157 2005-07-09T10:48:18Z 1 2020-02-15T06:59:39Z +3740 2005-07-06T11:55:35Z 1829 277 2005-07-14T09:44:35Z 2 2020-02-15T06:59:39Z +3741 2005-07-06T12:00:18Z 1449 584 2005-07-12T09:02:18Z 2 2020-02-15T06:59:39Z +3742 2005-07-06T12:01:38Z 2873 96 2005-07-15T10:46:38Z 1 2020-02-15T06:59:39Z +3743 2005-07-06T12:03:54Z 1012 456 2005-07-13T10:56:54Z 2 2020-02-15T06:59:39Z +3744 2005-07-06T12:10:02Z 3343 510 2005-07-08T11:49:02Z 2 2020-02-15T06:59:39Z +3745 2005-07-06T12:10:32Z 1518 171 2005-07-12T15:20:32Z 1 2020-02-15T06:59:39Z +3746 2005-07-06T12:10:51Z 3387 424 2005-07-07T11:36:51Z 2 2020-02-15T06:59:39Z +3747 2005-07-06T12:11:14Z 1093 437 2005-07-09T17:14:14Z 2 2020-02-15T06:59:39Z +3748 2005-07-06T12:11:22Z 2920 79 2005-07-12T07:22:22Z 1 2020-02-15T06:59:39Z +3749 2005-07-06T12:18:03Z 1531 170 2005-07-11T07:25:03Z 1 2020-02-15T06:59:39Z +3750 2005-07-06T12:19:28Z 2422 103 2005-07-14T13:16:28Z 2 2020-02-15T06:59:39Z +3751 2005-07-06T12:23:41Z 3652 128 2005-07-10T06:58:41Z 1 2020-02-15T06:59:39Z +3752 2005-07-06T12:30:12Z 4561 235 2005-07-13T12:13:12Z 1 2020-02-15T06:59:39Z +3753 2005-07-06T12:34:06Z 774 358 2005-07-07T14:19:06Z 2 2020-02-15T06:59:39Z +3754 2005-07-06T12:35:44Z 4042 83 2005-07-08T16:28:44Z 1 2020-02-15T06:59:39Z +3755 2005-07-06T12:37:16Z 3147 402 2005-07-13T07:22:16Z 1 2020-02-15T06:59:39Z +3756 2005-07-06T12:40:38Z 30 320 2005-07-11T09:29:38Z 1 2020-02-15T06:59:39Z +3757 2005-07-06T12:42:26Z 2816 66 2005-07-11T10:30:26Z 1 2020-02-15T06:59:39Z +3758 2005-07-06T12:43:11Z 2498 48 2005-07-14T12:52:11Z 2 2020-02-15T06:59:39Z +3759 2005-07-06T12:46:38Z 4165 378 2005-07-10T11:31:38Z 1 2020-02-15T06:59:39Z +3760 2005-07-06T12:49:28Z 1306 330 2005-07-09T16:29:28Z 1 2020-02-15T06:59:39Z +3761 2005-07-06T12:52:44Z 4304 464 2005-07-08T17:22:44Z 1 2020-02-15T06:59:39Z +3762 2005-07-06T12:52:49Z 1941 413 2005-07-12T11:41:49Z 1 2020-02-15T06:59:39Z +3763 2005-07-06T12:56:31Z 1573 189 2005-07-09T14:49:31Z 1 2020-02-15T06:59:39Z +3764 2005-07-06T13:01:03Z 3115 470 2005-07-13T15:26:03Z 1 2020-02-15T06:59:39Z +3765 2005-07-06T13:01:47Z 1805 547 2005-07-09T07:10:47Z 1 2020-02-15T06:59:39Z +3766 2005-07-06T13:04:35Z 4504 312 2005-07-07T15:46:35Z 1 2020-02-15T06:59:39Z +3767 2005-07-06T13:07:27Z 923 582 2005-07-08T18:48:27Z 1 2020-02-15T06:59:39Z +3768 2005-07-06T13:07:30Z 3995 573 2005-07-09T16:26:30Z 2 2020-02-15T06:59:39Z +3769 2005-07-06T13:11:33Z 467 567 2005-07-14T17:54:33Z 2 2020-02-15T06:59:39Z +3770 2005-07-06T13:14:28Z 3836 198 2005-07-13T09:23:28Z 1 2020-02-15T06:59:39Z +3771 2005-07-06T13:19:34Z 1373 56 2005-07-10T10:27:34Z 2 2020-02-15T06:59:39Z +3772 2005-07-06T13:22:53Z 434 338 2005-07-10T11:54:53Z 2 2020-02-15T06:59:39Z +3773 2005-07-06T13:23:34Z 2034 263 2005-07-08T17:23:34Z 2 2020-02-15T06:59:39Z +3774 2005-07-06T13:25:07Z 4044 439 2005-07-15T12:56:07Z 2 2020-02-15T06:59:39Z +3775 2005-07-06T13:27:33Z 3696 300 2005-07-09T10:27:33Z 1 2020-02-15T06:59:39Z +3776 2005-07-06T13:31:37Z 4387 278 2005-07-10T10:53:37Z 2 2020-02-15T06:59:39Z +3777 2005-07-06T13:36:48Z 2470 548 2005-07-11T14:26:48Z 1 2020-02-15T06:59:39Z +3778 2005-07-06T13:44:48Z 2181 122 2005-07-13T09:31:48Z 2 2020-02-15T06:59:39Z +3779 2005-07-06T13:46:36Z 634 583 2005-07-10T15:49:36Z 2 2020-02-15T06:59:39Z +3780 2005-07-06T13:52:02Z 1209 99 2005-07-15T08:41:02Z 2 2020-02-15T06:59:39Z +3781 2005-07-06T13:53:41Z 3894 23 2005-07-15T10:03:41Z 1 2020-02-15T06:59:39Z +3782 2005-07-06T13:57:03Z 3365 515 2005-07-09T11:13:03Z 2 2020-02-15T06:59:39Z +3783 2005-07-06T13:57:31Z 2345 386 2005-07-14T10:44:31Z 2 2020-02-15T06:59:39Z +3784 2005-07-06T13:57:56Z 2287 165 2005-07-14T17:24:56Z 2 2020-02-15T06:59:39Z +3785 2005-07-06T14:00:13Z 3279 577 2005-07-14T10:13:13Z 2 2020-02-15T06:59:39Z +3786 2005-07-06T14:00:41Z 4508 152 2005-07-13T16:49:41Z 1 2020-02-15T06:59:39Z +3787 2005-07-06T14:02:01Z 288 474 2005-07-09T19:09:01Z 2 2020-02-15T06:59:39Z +3788 2005-07-06T14:02:02Z 1363 379 2005-07-10T18:24:02Z 1 2020-02-15T06:59:39Z +3789 2005-07-06T14:02:26Z 3560 595 2005-07-14T18:13:26Z 1 2020-02-15T06:59:39Z +3790 2005-07-06T14:13:45Z 1711 10 2005-07-14T13:35:45Z 1 2020-02-15T06:59:39Z +3791 2005-07-06T14:24:56Z 3426 452 2005-07-14T11:06:56Z 2 2020-02-15T06:59:39Z +3792 2005-07-06T14:26:38Z 2651 312 2005-07-11T16:34:38Z 1 2020-02-15T06:59:39Z +3793 2005-07-06T14:32:44Z 4558 553 2005-07-08T13:55:44Z 1 2020-02-15T06:59:39Z +3794 2005-07-06T14:35:26Z 584 499 2005-07-11T14:40:26Z 2 2020-02-15T06:59:39Z +3795 2005-07-06T14:37:41Z 240 153 2005-07-11T20:27:41Z 2 2020-02-15T06:59:39Z +3796 2005-07-06T14:45:22Z 1649 228 2005-07-07T11:01:22Z 2 2020-02-15T06:59:39Z +3797 2005-07-06T14:54:52Z 1047 374 2005-07-10T09:50:52Z 2 2020-02-15T06:59:39Z +3798 2005-07-06T14:57:53Z 1942 479 2005-07-07T10:48:53Z 2 2020-02-15T06:59:39Z +3799 2005-07-06T15:00:14Z 4532 251 2005-07-10T15:39:14Z 1 2020-02-15T06:59:39Z +3800 2005-07-06T15:01:27Z 4004 100 2005-07-15T11:12:27Z 2 2020-02-15T06:59:39Z +3801 2005-07-06T15:05:50Z 4209 68 2005-07-12T12:56:50Z 1 2020-02-15T06:59:39Z +3802 2005-07-06T15:06:09Z 1017 91 2005-07-08T09:33:09Z 2 2020-02-15T06:59:39Z +3803 2005-07-06T15:06:55Z 2062 494 2005-07-08T18:53:55Z 1 2020-02-15T06:59:39Z +3804 2005-07-06T15:08:08Z 537 126 2005-07-15T14:01:08Z 2 2020-02-15T06:59:39Z +3805 2005-07-06T15:08:42Z 1716 418 2005-07-07T14:34:42Z 1 2020-02-15T06:59:39Z +3806 2005-07-06T15:09:41Z 3555 154 2005-07-14T09:14:41Z 2 2020-02-15T06:59:39Z +3807 2005-07-06T15:11:44Z 39 425 2005-07-10T09:20:44Z 1 2020-02-15T06:59:39Z +3808 2005-07-06T15:15:35Z 4339 314 2005-07-07T16:10:35Z 1 2020-02-15T06:59:39Z +3809 2005-07-06T15:16:37Z 2932 358 2005-07-09T14:45:37Z 1 2020-02-15T06:59:39Z +3810 2005-07-06T15:18:44Z 342 296 2005-07-12T09:52:44Z 2 2020-02-15T06:59:39Z +3811 2005-07-06T15:20:37Z 695 208 2005-07-08T16:26:37Z 2 2020-02-15T06:59:39Z +3812 2005-07-06T15:22:19Z 4490 381 2005-07-08T13:04:19Z 1 2020-02-15T06:59:39Z +3813 2005-07-06T15:23:34Z 4100 189 2005-07-08T19:03:34Z 1 2020-02-15T06:59:39Z +3814 2005-07-06T15:23:56Z 3826 306 2005-07-13T20:51:56Z 2 2020-02-15T06:59:39Z +3815 2005-07-06T15:26:36Z 4038 472 2005-07-11T17:07:36Z 2 2020-02-15T06:59:39Z +3816 2005-07-06T15:27:04Z 2941 489 2005-07-14T13:12:04Z 1 2020-02-15T06:59:39Z +3817 2005-07-06T15:31:45Z 2933 267 2005-07-11T17:11:45Z 1 2020-02-15T06:59:39Z +3818 2005-07-06T15:33:31Z 653 97 2005-07-11T16:35:31Z 1 2020-02-15T06:59:39Z +3819 2005-07-06T15:35:06Z 1814 74 2005-07-14T19:08:06Z 1 2020-02-15T06:59:39Z +3820 2005-07-06T15:35:26Z 4192 460 2005-07-11T12:22:26Z 2 2020-02-15T06:59:39Z +3821 2005-07-06T15:36:20Z 4385 354 2005-07-11T20:04:20Z 1 2020-02-15T06:59:39Z +3822 2005-07-06T15:41:15Z 1314 241 2005-07-07T16:41:15Z 1 2020-02-15T06:59:39Z +3823 2005-07-06T15:41:27Z 124 265 2005-07-09T09:48:27Z 1 2020-02-15T06:59:39Z +3824 2005-07-06T15:43:15Z 3107 107 2005-07-13T16:05:15Z 2 2020-02-15T06:59:39Z +3825 2005-07-06T15:50:03Z 630 132 2005-07-09T19:20:03Z 1 2020-02-15T06:59:39Z +3826 2005-07-06T15:51:58Z 73 451 2005-07-13T12:35:58Z 1 2020-02-15T06:59:39Z +3827 2005-07-06T15:52:03Z 2072 41 2005-07-08T21:43:03Z 2 2020-02-15T06:59:39Z +3828 2005-07-06T15:57:30Z 4493 498 2005-07-10T12:17:30Z 2 2020-02-15T06:59:39Z +3829 2005-07-06T15:59:40Z 4126 356 2005-07-11T10:29:40Z 1 2020-02-15T06:59:39Z +3830 2005-07-06T16:01:16Z 553 310 2005-07-15T19:35:16Z 2 2020-02-15T06:59:39Z +3831 2005-07-06T16:06:35Z 1338 206 2005-07-08T15:14:35Z 2 2020-02-15T06:59:39Z +3832 2005-07-06T16:12:23Z 4499 233 2005-07-12T21:29:23Z 1 2020-02-15T06:59:39Z +3833 2005-07-06T16:18:28Z 3232 416 2005-07-14T20:09:28Z 2 2020-02-15T06:59:39Z +3834 2005-07-06T16:19:56Z 3001 366 2005-07-13T11:38:56Z 2 2020-02-15T06:59:39Z +3835 2005-07-06T16:22:45Z 935 486 2005-07-11T17:04:45Z 2 2020-02-15T06:59:39Z +3836 2005-07-06T16:26:04Z 1148 351 2005-07-10T15:08:04Z 1 2020-02-15T06:59:39Z +3837 2005-07-06T16:27:43Z 3166 309 2005-07-07T18:02:43Z 1 2020-02-15T06:59:39Z +3838 2005-07-06T16:29:43Z 3404 565 2005-07-11T20:50:43Z 1 2020-02-15T06:59:39Z +3839 2005-07-06T16:30:30Z 3230 231 2005-07-11T19:00:30Z 1 2020-02-15T06:59:39Z +3840 2005-07-06T16:30:59Z 4384 468 2005-07-15T22:08:59Z 2 2020-02-15T06:59:39Z +3841 2005-07-06T16:34:00Z 4228 470 2005-07-08T15:12:00Z 2 2020-02-15T06:59:39Z +3842 2005-07-06T16:34:32Z 3119 583 2005-07-08T11:55:32Z 2 2020-02-15T06:59:39Z +3843 2005-07-06T16:35:40Z 3844 62 2005-07-07T18:29:40Z 1 2020-02-15T06:59:39Z +3844 2005-07-06T16:37:58Z 2814 179 2005-07-09T19:54:58Z 2 2020-02-15T06:59:39Z +3845 2005-07-06T16:38:14Z 4495 28 2005-07-09T14:59:14Z 2 2020-02-15T06:59:39Z +3846 2005-07-06T16:43:10Z 2829 88 2005-07-14T11:09:10Z 2 2020-02-15T06:59:39Z +3847 2005-07-06T16:44:41Z 782 206 2005-07-07T21:54:41Z 2 2020-02-15T06:59:39Z +3848 2005-07-06T16:47:32Z 2906 188 2005-07-14T15:00:32Z 1 2020-02-15T06:59:39Z +3849 2005-07-06T16:49:43Z 3660 60 2005-07-12T17:20:43Z 1 2020-02-15T06:59:39Z +3850 2005-07-06T16:51:21Z 1700 103 2005-07-12T13:58:21Z 1 2020-02-15T06:59:39Z +3851 2005-07-06T16:54:12Z 493 436 2005-07-11T22:49:12Z 1 2020-02-15T06:59:39Z +3852 2005-07-06T16:57:49Z 3329 511 2005-07-11T17:11:49Z 1 2020-02-15T06:59:39Z +3853 2005-07-06T16:59:20Z 1411 537 2005-07-07T12:30:20Z 2 2020-02-15T06:59:39Z +3854 2005-07-06T17:02:33Z 2054 243 2005-07-12T17:32:33Z 2 2020-02-15T06:59:39Z +3855 2005-07-06T17:03:48Z 2931 46 2005-07-12T14:32:48Z 1 2020-02-15T06:59:39Z +3856 2005-07-06T17:04:46Z 3083 498 2005-07-14T19:23:46Z 2 2020-02-15T06:59:39Z +3857 2005-07-06T17:07:54Z 1135 236 2005-07-07T13:28:54Z 1 2020-02-15T06:59:39Z +3858 2005-07-06T17:17:57Z 829 377 2005-07-10T23:10:57Z 2 2020-02-15T06:59:39Z +3859 2005-07-06T17:18:15Z 2548 553 2005-07-09T16:48:15Z 1 2020-02-15T06:59:39Z +3860 2005-07-06T17:20:24Z 144 514 2005-07-09T22:33:24Z 1 2020-02-15T06:59:39Z +3861 2005-07-06T17:24:49Z 4506 202 2005-07-15T22:19:49Z 2 2020-02-15T06:59:39Z +3862 2005-07-06T17:35:22Z 471 181 2005-07-15T17:13:22Z 1 2020-02-15T06:59:39Z +3863 2005-07-06T17:40:18Z 363 481 2005-07-07T17:58:18Z 2 2020-02-15T06:59:39Z +3864 2005-07-06T17:41:42Z 2811 68 2005-07-08T14:17:42Z 1 2020-02-15T06:59:39Z +3865 2005-07-06T17:46:57Z 3579 357 2005-07-12T12:20:57Z 1 2020-02-15T06:59:39Z +3866 2005-07-06T17:47:20Z 194 409 2005-07-15T18:12:20Z 1 2020-02-15T06:59:39Z +3867 2005-07-06T17:52:19Z 3620 580 2005-07-13T21:48:19Z 1 2020-02-15T06:59:39Z +3868 2005-07-06T17:54:13Z 1606 416 2005-07-10T14:51:13Z 1 2020-02-15T06:59:39Z +3869 2005-07-06T17:56:46Z 2540 183 2005-07-10T20:44:46Z 1 2020-02-15T06:59:39Z +3870 2005-07-06T17:57:54Z 3357 12 2005-07-13T12:30:54Z 1 2020-02-15T06:59:39Z +3871 2005-07-06T17:58:51Z 3114 331 2005-07-15T22:18:51Z 2 2020-02-15T06:59:39Z +3872 2005-07-06T18:00:19Z 1785 513 2005-07-07T17:26:19Z 1 2020-02-15T06:59:39Z +3873 2005-07-06T18:03:16Z 4148 394 2005-07-15T23:58:16Z 2 2020-02-15T06:59:39Z +3874 2005-07-06T18:06:12Z 1870 137 2005-07-12T16:55:12Z 1 2020-02-15T06:59:39Z +3875 2005-07-06T18:15:39Z 712 108 2005-07-11T17:34:39Z 1 2020-02-15T06:59:39Z +3876 2005-07-06T18:21:13Z 4039 295 2005-07-14T16:57:13Z 2 2020-02-15T06:59:39Z +3877 2005-07-06T18:22:10Z 2796 576 2005-07-07T23:38:10Z 1 2020-02-15T06:59:39Z +3878 2005-07-06T18:27:09Z 4022 385 2005-07-15T20:13:09Z 2 2020-02-15T06:59:39Z +3879 2005-07-06T18:31:20Z 1376 81 2005-07-09T19:03:20Z 2 2020-02-15T06:59:39Z +3880 2005-07-06T18:32:49Z 42 507 2005-07-07T20:46:49Z 2 2020-02-15T06:59:39Z +3881 2005-07-06T18:35:37Z 143 456 2005-07-10T00:06:37Z 2 2020-02-15T06:59:39Z +3882 2005-07-06T18:38:21Z 788 254 2005-07-09T14:55:21Z 1 2020-02-15T06:59:39Z +3883 2005-07-06T18:39:38Z 3238 69 2005-07-14T15:59:38Z 2 2020-02-15T06:59:39Z +3884 2005-07-06T18:41:33Z 1806 210 2005-07-07T22:06:33Z 1 2020-02-15T06:59:39Z +3885 2005-07-06T18:43:43Z 1820 282 2005-07-12T19:48:43Z 2 2020-02-15T06:59:39Z +3886 2005-07-06T18:44:24Z 2368 326 2005-07-08T15:11:24Z 1 2020-02-15T06:59:39Z +3887 2005-07-06T18:46:34Z 1695 530 2005-07-07T13:15:34Z 1 2020-02-15T06:59:39Z +3888 2005-07-06T18:54:20Z 1945 412 2005-07-12T17:13:20Z 2 2020-02-15T06:59:39Z +3889 2005-07-06T18:56:25Z 2005 576 2005-07-08T21:22:25Z 2 2020-02-15T06:59:39Z +3890 2005-07-06T18:58:15Z 2570 553 2005-07-10T18:51:15Z 1 2020-02-15T06:59:39Z +3891 2005-07-06T18:58:25Z 3216 553 2005-07-09T23:20:25Z 2 2020-02-15T06:59:39Z +3892 2005-07-06T18:58:58Z 778 549 2005-07-10T19:29:58Z 1 2020-02-15T06:59:39Z +3893 2005-07-06T18:59:31Z 1281 350 2005-07-12T19:21:31Z 1 2020-02-15T06:59:39Z +3894 2005-07-06T19:01:39Z 2087 149 2005-07-12T21:35:39Z 2 2020-02-15T06:59:39Z +3895 2005-07-06T19:04:24Z 145 584 2005-07-15T17:48:24Z 2 2020-02-15T06:59:39Z +3896 2005-07-06T19:09:15Z 1755 309 2005-07-16T00:52:15Z 2 2020-02-15T06:59:39Z +3897 2005-07-06T19:11:43Z 14 277 2005-07-11T21:50:43Z 2 2020-02-15T06:59:39Z +3898 2005-07-06T19:12:37Z 3858 53 2005-07-11T15:50:37Z 1 2020-02-15T06:59:39Z +3899 2005-07-06T19:12:40Z 4020 485 2005-07-13T23:41:40Z 1 2020-02-15T06:59:39Z +3900 2005-07-06T19:21:28Z 1497 129 2005-07-15T21:06:28Z 2 2020-02-15T06:59:39Z +3901 2005-07-06T19:24:55Z 3367 321 2005-07-14T20:30:55Z 2 2020-02-15T06:59:39Z +3902 2005-07-06T19:25:18Z 2868 192 2005-07-10T17:42:18Z 2 2020-02-15T06:59:39Z +3903 2005-07-06T19:27:32Z 3614 369 2005-07-08T23:27:32Z 1 2020-02-15T06:59:39Z +3904 2005-07-06T19:30:57Z 3600 485 2005-07-11T18:47:57Z 2 2020-02-15T06:59:39Z +3905 2005-07-06T19:33:34Z 3817 526 2005-07-15T17:55:34Z 1 2020-02-15T06:59:39Z +3906 2005-07-06T19:35:55Z 1383 293 2005-07-15T22:35:55Z 1 2020-02-15T06:59:39Z +3907 2005-07-06T19:39:14Z 2507 452 2005-07-11T17:45:14Z 1 2020-02-15T06:59:39Z +3908 2005-07-06T19:47:26Z 3980 116 2005-07-13T19:59:26Z 1 2020-02-15T06:59:39Z +3909 2005-07-06T19:54:41Z 3423 396 2005-07-15T18:11:41Z 2 2020-02-15T06:59:39Z +3910 2005-07-06T20:05:18Z 2085 248 2005-07-10T18:51:18Z 1 2020-02-15T06:59:39Z +3911 2005-07-06T20:09:11Z 4548 34 2005-07-08T23:53:11Z 1 2020-02-15T06:59:39Z +3912 2005-07-06T20:10:03Z 2449 154 2005-07-08T18:39:03Z 2 2020-02-15T06:59:39Z +3913 2005-07-06T20:11:00Z 752 494 2005-07-08T14:42:00Z 1 2020-02-15T06:59:39Z +3914 2005-07-06T20:11:10Z 4092 159 2005-07-14T14:42:10Z 2 2020-02-15T06:59:39Z +3915 2005-07-06T20:16:46Z 125 163 2005-07-10T17:24:46Z 1 2020-02-15T06:59:39Z +3916 2005-07-06T20:18:50Z 3198 46 2005-07-12T21:56:50Z 1 2020-02-15T06:59:39Z +3917 2005-07-06T20:19:29Z 2747 471 2005-07-11T00:49:29Z 1 2020-02-15T06:59:39Z +3918 2005-07-06T20:26:15Z 1111 435 2005-07-15T20:32:15Z 1 2020-02-15T06:59:39Z +3919 2005-07-06T20:26:21Z 2695 147 2005-07-15T00:13:21Z 1 2020-02-15T06:59:39Z +3920 2005-07-06T20:26:40Z 1551 321 2005-07-15T15:00:40Z 2 2020-02-15T06:59:39Z +3921 2005-07-06T20:29:48Z 949 531 2005-07-14T01:44:48Z 1 2020-02-15T06:59:39Z +3922 2005-07-06T20:32:27Z 2878 470 2005-07-14T19:00:27Z 1 2020-02-15T06:59:39Z +3923 2005-07-06T20:34:10Z 2039 63 2005-07-13T19:20:10Z 1 2020-02-15T06:59:39Z +3924 2005-07-06T20:38:02Z 187 114 2005-07-11T23:35:02Z 2 2020-02-15T06:59:39Z +3925 2005-07-06T20:41:44Z 2653 428 2005-07-15T21:05:44Z 2 2020-02-15T06:59:39Z +3926 2005-07-06T20:42:35Z 4241 500 2005-07-09T16:30:35Z 2 2020-02-15T06:59:39Z +3927 2005-07-06T20:48:14Z 2194 404 2005-07-10T15:37:14Z 1 2020-02-15T06:59:39Z +3928 2005-07-06T20:52:09Z 1960 411 2005-07-08T18:51:09Z 1 2020-02-15T06:59:39Z +3929 2005-07-06T20:52:39Z 1235 453 2005-07-12T00:27:39Z 2 2020-02-15T06:59:39Z +3930 2005-07-06T20:54:07Z 165 573 2005-07-10T18:31:07Z 1 2020-02-15T06:59:39Z +3931 2005-07-06T21:03:46Z 182 176 2005-07-16T01:32:46Z 1 2020-02-15T06:59:39Z +3932 2005-07-06T21:06:17Z 4396 490 2005-07-07T19:25:17Z 2 2020-02-15T06:59:39Z +3933 2005-07-06T21:06:37Z 1202 229 2005-07-08T20:23:37Z 1 2020-02-15T06:59:39Z +3934 2005-07-06T21:07:23Z 3187 576 2005-07-10T18:20:23Z 2 2020-02-15T06:59:39Z +3935 2005-07-06T21:08:29Z 3402 503 2005-07-15T23:28:29Z 2 2020-02-15T06:59:39Z +3936 2005-07-06T21:15:03Z 4258 129 2005-07-08T17:45:03Z 2 2020-02-15T06:59:39Z +3937 2005-07-06T21:15:38Z 2091 211 2005-07-15T00:01:38Z 2 2020-02-15T06:59:39Z +3938 2005-07-06T21:15:45Z 1991 341 2005-07-13T20:02:45Z 2 2020-02-15T06:59:39Z +3939 2005-07-06T21:16:32Z 3627 149 2005-07-11T03:12:32Z 2 2020-02-15T06:59:39Z +3940 2005-07-06T21:16:59Z 1502 116 2005-07-07T19:17:59Z 2 2020-02-15T06:59:39Z +3941 2005-07-06T21:20:37Z 382 560 2005-07-09T01:35:37Z 2 2020-02-15T06:59:39Z +3942 2005-07-06T21:21:34Z 677 553 2005-07-15T02:34:34Z 1 2020-02-15T06:59:39Z +3943 2005-07-06T21:22:17Z 1816 566 2005-07-07T21:26:17Z 1 2020-02-15T06:59:39Z +3944 2005-07-06T21:34:11Z 4213 436 2005-07-08T23:46:11Z 2 2020-02-15T06:59:39Z +3945 2005-07-06T21:35:00Z 754 86 2005-07-08T00:31:00Z 2 2020-02-15T06:59:39Z +3946 2005-07-06T21:39:24Z 294 13 2005-07-11T16:10:24Z 1 2020-02-15T06:59:39Z +3947 2005-07-06T21:42:21Z 4188 324 2005-07-08T19:37:21Z 1 2020-02-15T06:59:39Z +3948 2005-07-06T21:45:53Z 2254 161 2005-07-08T19:24:53Z 2 2020-02-15T06:59:39Z +3949 2005-07-06T21:46:36Z 1765 153 2005-07-11T03:18:36Z 1 2020-02-15T06:59:39Z +3950 2005-07-06T21:48:44Z 4153 598 2005-07-14T02:25:44Z 1 2020-02-15T06:59:39Z +3951 2005-07-06T21:50:41Z 2288 250 2005-07-12T02:09:41Z 2 2020-02-15T06:59:39Z +3952 2005-07-06T21:51:31Z 1719 417 2005-07-13T15:54:31Z 1 2020-02-15T06:59:39Z +3953 2005-07-06T21:54:55Z 3879 385 2005-07-09T18:52:55Z 1 2020-02-15T06:59:39Z +3954 2005-07-06T21:57:44Z 4250 558 2005-07-08T02:37:44Z 2 2020-02-15T06:59:39Z +3955 2005-07-06T21:58:08Z 2523 247 2005-07-08T03:43:08Z 1 2020-02-15T06:59:39Z +3956 2005-07-06T22:01:51Z 15 147 2005-07-12T21:35:51Z 2 2020-02-15T06:59:39Z +3957 2005-07-06T22:05:47Z 443 414 2005-07-16T01:08:47Z 1 2020-02-15T06:59:39Z +3958 2005-07-06T22:07:33Z 4117 288 2005-07-10T19:31:33Z 2 2020-02-15T06:59:39Z +3959 2005-07-06T22:07:58Z 40 448 2005-07-13T02:30:58Z 1 2020-02-15T06:59:39Z +3960 2005-07-06T22:08:53Z 2090 594 2005-07-07T23:21:53Z 2 2020-02-15T06:59:39Z +3961 2005-07-06T22:11:43Z 4320 364 2005-07-09T03:14:43Z 1 2020-02-15T06:59:39Z +3962 2005-07-06T22:13:45Z 379 307 2005-07-15T00:22:45Z 2 2020-02-15T06:59:39Z +3963 2005-07-06T22:19:17Z 3912 111 2005-07-15T01:22:17Z 2 2020-02-15T06:59:39Z +3964 2005-07-06T22:23:02Z 1853 30 2005-07-07T22:21:02Z 1 2020-02-15T06:59:39Z +3965 2005-07-06T22:36:20Z 2863 243 2005-07-09T17:45:20Z 1 2020-02-15T06:59:39Z +3966 2005-07-06T22:38:49Z 556 495 2005-07-07T23:33:49Z 1 2020-02-15T06:59:39Z +3967 2005-07-06T22:45:10Z 2510 31 2005-07-09T23:54:10Z 2 2020-02-15T06:59:39Z +3968 2005-07-06T22:47:09Z 558 235 2005-07-12T21:01:09Z 1 2020-02-15T06:59:39Z +3969 2005-07-06T22:47:59Z 383 587 2005-07-08T02:11:59Z 1 2020-02-15T06:59:39Z +3970 2005-07-06T22:48:17Z 701 381 2005-07-15T19:07:17Z 1 2020-02-15T06:59:39Z +3971 2005-07-06T22:50:40Z 4415 473 2005-07-08T01:02:40Z 1 2020-02-15T06:59:39Z +3972 2005-07-06T22:53:57Z 1895 598 2005-07-11T01:32:57Z 1 2020-02-15T06:59:39Z +3973 2005-07-06T22:58:31Z 2625 592 2005-07-16T03:27:31Z 2 2020-02-15T06:59:39Z +3974 2005-07-06T22:59:16Z 4282 318 2005-07-11T22:30:16Z 1 2020-02-15T06:59:39Z +3975 2005-07-06T23:00:09Z 4343 545 2005-07-10T01:39:09Z 2 2020-02-15T06:59:39Z +3976 2005-07-06T23:00:20Z 2424 329 2005-07-07T21:51:20Z 2 2020-02-15T06:59:39Z +3977 2005-07-06T23:00:49Z 1284 449 2005-07-15T00:41:49Z 1 2020-02-15T06:59:39Z +3978 2005-07-06T23:04:33Z 4341 343 2005-07-10T17:45:33Z 2 2020-02-15T06:59:39Z +3979 2005-07-06T23:04:35Z 794 550 2005-07-13T01:38:35Z 2 2020-02-15T06:59:39Z +3980 2005-07-06T23:11:11Z 1845 475 2005-07-14T18:22:11Z 1 2020-02-15T06:59:39Z +3981 2005-07-06T23:12:12Z 842 375 2005-07-13T01:47:12Z 2 2020-02-15T06:59:39Z +3982 2005-07-06T23:14:16Z 4327 64 2005-07-08T21:21:16Z 2 2020-02-15T06:59:39Z +3983 2005-07-06T23:14:21Z 1261 6 2005-07-12T17:55:21Z 2 2020-02-15T06:59:39Z +3984 2005-07-06T23:22:36Z 2205 570 2005-07-08T21:40:36Z 2 2020-02-15T06:59:39Z +3985 2005-07-06T23:24:03Z 2096 307 2005-07-10T00:20:03Z 2 2020-02-15T06:59:39Z +3986 2005-07-06T23:25:13Z 3737 122 2005-07-09T21:26:13Z 2 2020-02-15T06:59:39Z +3987 2005-07-06T23:28:24Z 3104 270 2005-07-15T00:52:24Z 1 2020-02-15T06:59:39Z +3988 2005-07-06T23:30:42Z 2981 421 2005-07-13T03:06:42Z 2 2020-02-15T06:59:39Z +3989 2005-07-06T23:30:54Z 2366 213 2005-07-12T01:28:54Z 1 2020-02-15T06:59:39Z +3990 2005-07-06T23:32:44Z 2009 558 2005-07-14T01:35:44Z 2 2020-02-15T06:59:39Z +3991 2005-07-06T23:33:41Z 587 583 2005-07-16T01:31:41Z 1 2020-02-15T06:59:39Z +3992 2005-07-06T23:36:56Z 3219 448 2005-07-15T03:13:56Z 1 2020-02-15T06:59:39Z +3993 2005-07-06T23:37:06Z 1061 525 2005-07-14T19:31:06Z 1 2020-02-15T06:59:39Z +3994 2005-07-06T23:39:01Z 902 487 2005-07-14T00:33:01Z 1 2020-02-15T06:59:39Z +3995 2005-07-06T23:43:03Z 3990 128 2005-07-13T04:13:03Z 2 2020-02-15T06:59:39Z +3996 2005-07-06T23:46:43Z 2857 551 2005-07-14T22:34:43Z 2 2020-02-15T06:59:39Z +3997 2005-07-06T23:46:52Z 3895 52 2005-07-14T05:39:52Z 2 2020-02-15T06:59:39Z +3998 2005-07-06T23:49:20Z 1245 566 2005-07-12T20:39:20Z 1 2020-02-15T06:59:39Z +3999 2005-07-06T23:50:54Z 707 390 2005-07-09T22:09:54Z 1 2020-02-15T06:59:39Z +4000 2005-07-06T23:58:37Z 2122 95 2005-07-08T21:43:37Z 1 2020-02-15T06:59:39Z +4001 2005-07-07T00:07:00Z 864 120 2005-07-13T21:27:00Z 2 2020-02-15T06:59:39Z +4002 2005-07-07T00:08:18Z 2790 308 2005-07-14T01:29:18Z 2 2020-02-15T06:59:39Z +4003 2005-07-07T00:09:02Z 4054 8 2005-07-08T04:27:02Z 1 2020-02-15T06:59:39Z +4004 2005-07-07T00:20:51Z 667 574 2005-07-11T18:55:51Z 2 2020-02-15T06:59:39Z +4005 2005-07-07T00:22:26Z 3677 190 2005-07-15T04:34:26Z 2 2020-02-15T06:59:39Z +4006 2005-07-07T00:25:29Z 397 473 2005-07-08T05:30:29Z 2 2020-02-15T06:59:39Z +4007 2005-07-07T00:26:05Z 2071 285 2005-07-15T19:53:05Z 1 2020-02-15T06:59:39Z +4008 2005-07-07T00:26:43Z 1107 505 2005-07-16T03:58:43Z 2 2020-02-15T06:59:39Z +4009 2005-07-07T00:28:55Z 3607 394 2005-07-10T00:37:55Z 1 2020-02-15T06:59:39Z +4010 2005-07-07T00:47:00Z 4509 476 2005-07-12T06:23:00Z 2 2020-02-15T06:59:39Z +4011 2005-07-07T00:48:25Z 2052 20 2005-07-13T06:30:25Z 2 2020-02-15T06:59:39Z +4012 2005-07-07T00:56:09Z 1400 104 2005-07-10T21:49:09Z 1 2020-02-15T06:59:39Z +4013 2005-07-07T00:58:00Z 2344 475 2005-07-15T19:42:00Z 2 2020-02-15T06:59:39Z +4014 2005-07-07T00:58:54Z 583 510 2005-07-12T02:40:54Z 1 2020-02-15T06:59:39Z +4015 2005-07-07T00:59:46Z 3032 233 2005-07-14T03:16:46Z 2 2020-02-15T06:59:39Z +4016 2005-07-07T01:05:50Z 3318 335 2005-07-09T05:59:50Z 1 2020-02-15T06:59:39Z +4017 2005-07-07T01:08:18Z 3117 595 2005-07-09T01:47:18Z 2 2020-02-15T06:59:39Z +4018 2005-07-07T01:10:33Z 906 207 2005-07-12T20:54:33Z 2 2020-02-15T06:59:39Z +4019 2005-07-07T01:27:44Z 3200 294 2005-07-10T21:30:44Z 1 2020-02-15T06:59:39Z +4020 2005-07-07T01:42:22Z 3760 471 2005-07-10T00:53:22Z 1 2020-02-15T06:59:39Z +4021 2005-07-07T01:46:44Z 1676 315 2005-07-12T00:16:44Z 2 2020-02-15T06:59:39Z +4022 2005-07-07T01:50:06Z 3914 390 2005-07-09T21:47:06Z 2 2020-02-15T06:59:39Z +4023 2005-07-07T01:55:25Z 274 573 2005-07-08T02:43:25Z 2 2020-02-15T06:59:39Z +4024 2005-07-07T02:11:23Z 3976 448 2005-07-11T02:00:23Z 1 2020-02-15T06:59:39Z +4025 2005-07-07T02:13:24Z 3908 114 2005-07-08T00:47:24Z 1 2020-02-15T06:59:39Z +4026 2005-07-07T02:15:48Z 4142 251 2005-07-14T04:15:48Z 2 2020-02-15T06:59:39Z +4027 2005-07-07T02:19:01Z 56 116 2005-07-10T01:12:01Z 1 2020-02-15T06:59:39Z +4028 2005-07-07T02:19:14Z 1651 344 2005-07-15T08:09:14Z 2 2020-02-15T06:59:39Z +4029 2005-07-07T02:19:44Z 4075 518 2005-07-15T02:30:44Z 2 2020-02-15T06:59:39Z +4030 2005-07-07T02:25:42Z 1734 300 2005-07-08T22:53:42Z 2 2020-02-15T06:59:39Z +4031 2005-07-07T02:32:07Z 3094 143 2005-07-14T06:01:07Z 2 2020-02-15T06:59:39Z +4032 2005-07-07T02:34:13Z 2628 335 2005-07-14T22:43:13Z 1 2020-02-15T06:59:39Z +4033 2005-07-07T02:35:46Z 203 453 2005-07-16T01:12:46Z 1 2020-02-15T06:59:39Z +4034 2005-07-07T02:36:33Z 1666 354 2005-07-09T08:32:33Z 2 2020-02-15T06:59:39Z +4035 2005-07-07T02:45:02Z 3611 539 2005-07-14T01:41:02Z 1 2020-02-15T06:59:39Z +4036 2005-07-07T02:48:00Z 500 397 2005-07-07T22:46:00Z 1 2020-02-15T06:59:39Z +4037 2005-07-07T02:52:52Z 3903 594 2005-07-16T00:09:52Z 1 2020-02-15T06:59:39Z +4038 2005-07-07T02:52:53Z 1264 27 2005-07-11T22:32:53Z 2 2020-02-15T06:59:39Z +4039 2005-07-07T02:57:59Z 4050 290 2005-07-12T03:44:59Z 2 2020-02-15T06:59:39Z +4040 2005-07-07T03:02:40Z 3046 103 2005-07-16T06:05:40Z 2 2020-02-15T06:59:39Z +4041 2005-07-07T03:03:33Z 2217 445 2005-07-09T07:57:33Z 2 2020-02-15T06:59:39Z +4042 2005-07-07T03:06:40Z 50 10 2005-07-10T02:37:40Z 1 2020-02-15T06:59:39Z +4043 2005-07-07T03:09:50Z 3427 204 2005-07-10T07:49:50Z 2 2020-02-15T06:59:39Z +4044 2005-07-07T03:22:23Z 3263 94 2005-07-13T03:23:23Z 1 2020-02-15T06:59:39Z +4045 2005-07-07T03:26:14Z 1422 529 2005-07-11T06:52:14Z 1 2020-02-15T06:59:39Z +4046 2005-07-07T03:27:59Z 3518 491 2005-07-14T01:14:59Z 1 2020-02-15T06:59:39Z +4047 2005-07-07T03:28:49Z 3475 364 2005-07-09T02:42:49Z 2 2020-02-15T06:59:39Z +4048 2005-07-07T03:30:52Z 659 474 2005-07-14T05:05:52Z 2 2020-02-15T06:59:39Z +4049 2005-07-07T03:34:53Z 4172 79 2005-07-15T04:10:53Z 2 2020-02-15T06:59:39Z +4050 2005-07-07T03:35:33Z 104 528 2005-07-15T03:11:33Z 1 2020-02-15T06:59:39Z +4051 2005-07-07T03:37:28Z 2715 331 2005-07-09T01:40:28Z 1 2020-02-15T06:59:39Z +4052 2005-07-07T03:38:22Z 206 442 2005-07-13T02:56:22Z 2 2020-02-15T06:59:39Z +4053 2005-07-07T03:39:22Z 2889 377 2005-07-09T22:32:22Z 1 2020-02-15T06:59:39Z +4054 2005-07-07T03:42:07Z 3885 260 2005-07-10T03:22:07Z 1 2020-02-15T06:59:39Z +4055 2005-07-07T03:49:13Z 2561 513 2005-07-11T03:15:13Z 2 2020-02-15T06:59:39Z +4056 2005-07-07T03:57:36Z 4211 360 2005-07-09T08:53:36Z 2 2020-02-15T06:59:39Z +4057 2005-07-07T04:00:20Z 2838 141 2005-07-12T08:14:20Z 1 2020-02-15T06:59:39Z +4058 2005-07-07T04:02:50Z 3877 442 2005-07-10T04:30:50Z 2 2020-02-15T06:59:39Z +4059 2005-07-07T04:04:26Z 292 401 2005-07-10T22:35:26Z 1 2020-02-15T06:59:39Z +4060 2005-07-07T04:10:13Z 2697 211 2005-07-13T07:44:13Z 1 2020-02-15T06:59:39Z +4061 2005-07-07T04:13:35Z 62 70 2005-07-10T23:58:35Z 2 2020-02-15T06:59:39Z +4062 2005-07-07T04:22:27Z 1323 410 2005-07-09T03:27:27Z 1 2020-02-15T06:59:39Z +4063 2005-07-07T04:23:57Z 1452 331 2005-07-14T23:35:57Z 2 2020-02-15T06:59:39Z +4064 2005-07-07T04:29:20Z 1402 47 2005-07-14T05:48:20Z 2 2020-02-15T06:59:39Z +4065 2005-07-07T04:32:28Z 1339 26 2005-07-12T08:30:28Z 1 2020-02-15T06:59:39Z +4066 2005-07-07T04:34:09Z 1975 368 2005-07-10T23:54:09Z 1 2020-02-15T06:59:39Z +4067 2005-07-07T04:34:23Z 2945 469 2005-07-16T04:04:23Z 1 2020-02-15T06:59:39Z +4068 2005-07-07T04:34:38Z 4152 206 2005-07-11T09:16:38Z 2 2020-02-15T06:59:39Z +4069 2005-07-07T04:35:06Z 3361 570 2005-07-10T23:59:06Z 2 2020-02-15T06:59:39Z +4070 2005-07-07T04:37:09Z 2926 496 2005-07-08T04:19:09Z 2 2020-02-15T06:59:39Z +4071 2005-07-07T04:37:26Z 2883 209 2005-07-13T06:45:26Z 2 2020-02-15T06:59:39Z +4072 2005-07-07T04:48:02Z 3130 310 2005-07-12T10:32:02Z 2 2020-02-15T06:59:39Z +4073 2005-07-07T04:49:13Z 647 290 2005-07-10T03:20:13Z 2 2020-02-15T06:59:39Z +4074 2005-07-07T04:49:49Z 2347 412 2005-07-12T04:51:49Z 2 2020-02-15T06:59:39Z +4075 2005-07-07T04:51:44Z 1989 593 2005-07-09T03:07:44Z 2 2020-02-15T06:59:39Z +4076 2005-07-07T04:52:15Z 3148 329 2005-07-13T23:22:15Z 1 2020-02-15T06:59:39Z +4077 2005-07-07T04:53:40Z 2445 377 2005-07-09T09:56:40Z 2 2020-02-15T06:59:39Z +4078 2005-07-07T05:05:05Z 1671 522 2005-07-10T05:39:05Z 1 2020-02-15T06:59:39Z +4079 2005-07-07T05:06:27Z 2202 84 2005-07-16T08:46:27Z 1 2020-02-15T06:59:39Z +4080 2005-07-07T05:09:54Z 1364 148 2005-07-11T23:58:54Z 1 2020-02-15T06:59:39Z +4081 2005-07-07T05:10:08Z 1138 284 2005-07-12T00:47:08Z 1 2020-02-15T06:59:39Z +4082 2005-07-07T05:11:53Z 2904 108 2005-07-12T00:55:53Z 1 2020-02-15T06:59:39Z +4083 2005-07-07T05:13:15Z 3454 490 2005-07-08T09:11:15Z 1 2020-02-15T06:59:39Z +4084 2005-07-07T05:16:00Z 2588 441 2005-07-15T09:23:00Z 1 2020-02-15T06:59:39Z +4085 2005-07-07T05:25:39Z 1683 573 2005-07-12T04:30:39Z 1 2020-02-15T06:59:39Z +4086 2005-07-07T05:26:06Z 253 494 2005-07-12T00:45:06Z 2 2020-02-15T06:59:39Z +4087 2005-07-07T05:30:56Z 3066 433 2005-07-16T10:20:56Z 1 2020-02-15T06:59:39Z +4088 2005-07-07T05:31:55Z 234 66 2005-07-15T07:35:55Z 1 2020-02-15T06:59:39Z +4089 2005-07-07T05:45:59Z 3431 102 2005-07-16T07:34:59Z 2 2020-02-15T06:59:39Z +4090 2005-07-07T05:47:33Z 3096 67 2005-07-08T04:25:33Z 2 2020-02-15T06:59:39Z +4091 2005-07-07T05:53:38Z 3928 337 2005-07-14T03:12:38Z 2 2020-02-15T06:59:39Z +4092 2005-07-07T05:54:18Z 1721 246 2005-07-16T09:14:18Z 1 2020-02-15T06:59:39Z +4093 2005-07-07T05:54:50Z 1534 337 2005-07-12T00:34:50Z 1 2020-02-15T06:59:39Z +4094 2005-07-07T06:00:21Z 2412 517 2005-07-10T03:24:21Z 2 2020-02-15T06:59:39Z +4095 2005-07-07T06:01:48Z 2900 33 2005-07-15T02:52:48Z 2 2020-02-15T06:59:39Z +4096 2005-07-07T06:09:11Z 3911 403 2005-07-08T09:17:11Z 2 2020-02-15T06:59:39Z +4097 2005-07-07T06:10:55Z 2454 56 2005-07-11T02:45:55Z 1 2020-02-15T06:59:39Z +4098 2005-07-07T06:14:51Z 2865 35 2005-07-14T06:51:51Z 2 2020-02-15T06:59:39Z +4099 2005-07-07T06:20:33Z 1930 76 2005-07-16T08:39:33Z 1 2020-02-15T06:59:39Z +4100 2005-07-07T06:20:52Z 2346 332 2005-07-15T05:58:52Z 2 2020-02-15T06:59:39Z +4101 2005-07-07T06:25:11Z 2891 588 2005-07-12T07:44:11Z 2 2020-02-15T06:59:39Z +4102 2005-07-07T06:25:19Z 3998 135 2005-07-11T00:50:19Z 2 2020-02-15T06:59:39Z +4103 2005-07-07T06:25:28Z 3632 91 2005-07-12T11:18:28Z 1 2020-02-15T06:59:39Z +4104 2005-07-07T06:25:41Z 1066 338 2005-07-13T04:18:41Z 2 2020-02-15T06:59:39Z +4105 2005-07-07T06:31:00Z 439 423 2005-07-09T03:52:00Z 1 2020-02-15T06:59:39Z +4106 2005-07-07T06:33:35Z 4083 563 2005-07-13T04:03:35Z 1 2020-02-15T06:59:39Z +4107 2005-07-07T06:36:32Z 4232 206 2005-07-14T03:36:32Z 1 2020-02-15T06:59:39Z +4108 2005-07-07T06:38:31Z 4535 66 2005-07-08T10:44:31Z 1 2020-02-15T06:59:39Z +4109 2005-07-07T06:39:43Z 532 517 2005-07-10T06:30:43Z 1 2020-02-15T06:59:39Z +4110 2005-07-07T06:44:27Z 226 486 2005-07-12T05:43:27Z 2 2020-02-15T06:59:39Z +4111 2005-07-07T06:47:56Z 1009 515 2005-07-13T02:13:56Z 1 2020-02-15T06:59:39Z +4112 2005-07-07T06:49:09Z 3284 533 2005-07-16T06:53:09Z 2 2020-02-15T06:59:39Z +4113 2005-07-07T06:49:52Z 915 170 2005-07-12T04:00:52Z 1 2020-02-15T06:59:39Z +4114 2005-07-07T06:51:12Z 4109 426 2005-07-15T01:36:12Z 1 2020-02-15T06:59:39Z +4115 2005-07-07T06:52:23Z 102 371 2005-07-14T06:12:23Z 2 2020-02-15T06:59:39Z +4116 2005-07-07T06:56:13Z 666 352 2005-07-11T11:13:13Z 2 2020-02-15T06:59:39Z +4117 2005-07-07T06:58:14Z 780 158 2005-07-16T05:28:14Z 1 2020-02-15T06:59:39Z +4118 2005-07-07T07:03:30Z 355 224 2005-07-08T09:20:30Z 1 2020-02-15T06:59:39Z +4119 2005-07-07T07:06:03Z 2078 319 2005-07-13T01:56:03Z 2 2020-02-15T06:59:39Z +4120 2005-07-07T07:07:03Z 987 559 2005-07-16T04:07:03Z 1 2020-02-15T06:59:39Z +4121 2005-07-07T07:13:50Z 2429 176 2005-07-13T04:32:50Z 2 2020-02-15T06:59:39Z +4122 2005-07-07T07:15:35Z 273 31 2005-07-14T12:10:35Z 1 2020-02-15T06:59:39Z +4123 2005-07-07T07:16:19Z 2707 469 2005-07-10T05:23:19Z 1 2020-02-15T06:59:39Z +4124 2005-07-07T07:19:54Z 2856 330 2005-07-11T05:54:54Z 1 2020-02-15T06:59:39Z +4125 2005-07-07T07:20:29Z 4131 269 2005-07-15T06:41:29Z 2 2020-02-15T06:59:39Z +4126 2005-07-07T07:24:11Z 3018 163 2005-07-15T07:31:11Z 1 2020-02-15T06:59:39Z +4127 2005-07-07T07:26:19Z 1774 15 2005-07-14T07:50:19Z 2 2020-02-15T06:59:39Z +4128 2005-07-07T07:35:25Z 3563 492 2005-07-14T08:13:25Z 1 2020-02-15T06:59:39Z +4129 2005-07-07T07:37:03Z 1413 592 2005-07-14T13:31:03Z 1 2020-02-15T06:59:39Z +4130 2005-07-07T07:51:53Z 4170 256 2005-07-11T12:41:53Z 2 2020-02-15T06:59:39Z +4131 2005-07-07T07:53:18Z 2621 58 2005-07-08T04:48:18Z 1 2020-02-15T06:59:39Z +4132 2005-07-07T08:06:07Z 993 154 2005-07-10T14:04:07Z 1 2020-02-15T06:59:39Z +4133 2005-07-07T08:12:26Z 3672 488 2005-07-16T03:43:26Z 1 2020-02-15T06:59:39Z +4134 2005-07-07T08:14:24Z 2917 183 2005-07-09T10:42:24Z 1 2020-02-15T06:59:39Z +4135 2005-07-07T08:15:03Z 3384 36 2005-07-11T10:56:03Z 1 2020-02-15T06:59:39Z +4136 2005-07-07T08:15:52Z 3461 203 2005-07-10T04:22:52Z 2 2020-02-15T06:59:39Z +4137 2005-07-07T08:17:06Z 2065 485 2005-07-11T10:52:06Z 2 2020-02-15T06:59:39Z +4138 2005-07-07T08:17:13Z 1588 317 2005-07-14T05:18:13Z 2 2020-02-15T06:59:39Z +4139 2005-07-07T08:17:35Z 2094 509 2005-07-14T14:01:35Z 2 2020-02-15T06:59:39Z +4140 2005-07-07T08:19:10Z 1897 190 2005-07-14T07:27:10Z 2 2020-02-15T06:59:39Z +4141 2005-07-07T08:19:20Z 1904 456 2005-07-11T06:54:20Z 1 2020-02-15T06:59:39Z +4142 2005-07-07T08:19:45Z 4045 492 2005-07-08T13:55:45Z 1 2020-02-15T06:59:39Z +4143 2005-07-07T08:22:07Z 597 238 2005-07-13T11:42:07Z 1 2020-02-15T06:59:39Z +4144 2005-07-07T08:25:44Z 550 431 2005-07-16T13:10:44Z 2 2020-02-15T06:59:39Z +4145 2005-07-07T08:26:39Z 3050 592 2005-07-16T12:54:39Z 2 2020-02-15T06:59:39Z +4146 2005-07-07T08:30:16Z 176 411 2005-07-12T07:52:16Z 1 2020-02-15T06:59:39Z +4147 2005-07-07T08:32:12Z 2776 274 2005-07-12T10:10:12Z 2 2020-02-15T06:59:39Z +4148 2005-07-07T08:36:58Z 260 59 2005-07-09T05:51:58Z 1 2020-02-15T06:59:39Z +4149 2005-07-07T08:40:17Z 3028 50 2005-07-10T02:58:17Z 2 2020-02-15T06:59:39Z +4150 2005-07-07T08:43:22Z 4424 188 2005-07-08T05:21:22Z 2 2020-02-15T06:59:39Z +4151 2005-07-07T08:49:02Z 4564 428 2005-07-11T05:19:02Z 1 2020-02-15T06:59:39Z +4152 2005-07-07T08:50:33Z 1761 89 2005-07-14T10:56:33Z 2 2020-02-15T06:59:39Z +4153 2005-07-07T08:53:08Z 2185 299 2005-07-11T05:09:08Z 2 2020-02-15T06:59:39Z +4154 2005-07-07T08:58:23Z 191 594 2005-07-14T03:16:23Z 2 2020-02-15T06:59:39Z +4155 2005-07-07T09:00:49Z 212 548 2005-07-13T10:59:49Z 2 2020-02-15T06:59:39Z +4156 2005-07-07T09:03:51Z 1259 585 2005-07-12T09:46:51Z 2 2020-02-15T06:59:39Z +4157 2005-07-07T09:04:26Z 304 183 2005-07-08T09:55:26Z 1 2020-02-15T06:59:39Z +4158 2005-07-07T09:05:42Z 291 433 2005-07-09T04:28:42Z 1 2020-02-15T06:59:39Z +4159 2005-07-07T09:10:57Z 3625 62 2005-07-09T10:19:57Z 2 2020-02-15T06:59:39Z +4160 2005-07-07T09:13:17Z 1909 326 2005-07-15T11:50:17Z 2 2020-02-15T06:59:39Z +4161 2005-07-07T09:15:11Z 4021 216 2005-07-15T06:59:11Z 1 2020-02-15T06:59:39Z +4162 2005-07-07T09:17:26Z 745 571 2005-07-15T10:15:26Z 2 2020-02-15T06:59:39Z +4163 2005-07-07T09:19:28Z 3176 376 2005-07-10T06:47:28Z 2 2020-02-15T06:59:39Z +4164 2005-07-07T09:20:11Z 3133 295 2005-07-14T09:35:11Z 1 2020-02-15T06:59:39Z +4165 2005-07-07T09:23:27Z 3845 66 2005-07-15T06:00:27Z 1 2020-02-15T06:59:39Z +4166 2005-07-07T09:33:30Z 3267 376 2005-07-16T06:06:30Z 1 2020-02-15T06:59:39Z +4167 2005-07-07T09:37:08Z 3771 175 2005-07-16T06:16:08Z 2 2020-02-15T06:59:39Z +4168 2005-07-07T09:37:24Z 1872 132 2005-07-09T14:32:24Z 2 2020-02-15T06:59:39Z +4169 2005-07-07T09:39:18Z 3360 580 2005-07-11T13:43:18Z 1 2020-02-15T06:59:39Z +4170 2005-07-07T09:44:36Z 2665 99 2005-07-13T14:10:36Z 1 2020-02-15T06:59:39Z +4171 2005-07-07T09:49:04Z 4199 476 2005-07-14T03:58:04Z 2 2020-02-15T06:59:39Z +4172 2005-07-07T09:49:09Z 1158 309 2005-07-11T15:14:09Z 2 2020-02-15T06:59:39Z +4173 2005-07-07T09:57:26Z 4272 320 2005-07-10T04:05:26Z 1 2020-02-15T06:59:39Z +4174 2005-07-07T09:59:49Z 3814 182 2005-07-11T13:34:49Z 1 2020-02-15T06:59:39Z +4175 2005-07-07T10:02:03Z 1979 8 2005-07-10T06:09:03Z 2 2020-02-15T06:59:39Z +4176 2005-07-07T10:03:34Z 2745 420 2005-07-16T08:43:34Z 1 2020-02-15T06:59:39Z +4177 2005-07-07T10:12:36Z 4106 317 2005-07-15T15:48:36Z 2 2020-02-15T06:59:39Z +4178 2005-07-07T10:14:31Z 2898 513 2005-07-12T09:38:31Z 2 2020-02-15T06:59:39Z +4179 2005-07-07T10:17:15Z 559 75 2005-07-10T05:12:15Z 2 2020-02-15T06:59:39Z +4180 2005-07-07T10:23:25Z 1704 3 2005-07-10T13:18:25Z 1 2020-02-15T06:59:39Z +4181 2005-07-07T10:27:54Z 3725 598 2005-07-13T06:09:54Z 1 2020-02-15T06:59:39Z +4182 2005-07-07T10:28:00Z 3080 256 2005-07-08T12:50:00Z 1 2020-02-15T06:59:39Z +4183 2005-07-07T10:28:33Z 3342 479 2005-07-15T12:29:33Z 1 2020-02-15T06:59:39Z +4184 2005-07-07T10:30:08Z 1022 468 2005-07-14T12:56:08Z 1 2020-02-15T06:59:39Z +4185 2005-07-07T10:31:05Z 2425 395 2005-07-13T05:30:05Z 2 2020-02-15T06:59:39Z +4186 2005-07-07T10:32:25Z 3910 185 2005-07-15T06:22:25Z 1 2020-02-15T06:59:39Z +4187 2005-07-07T10:41:31Z 2 161 2005-07-11T06:25:31Z 1 2020-02-15T06:59:39Z +4188 2005-07-07T10:45:29Z 3243 391 2005-07-16T09:39:29Z 1 2020-02-15T06:59:39Z +4189 2005-07-07T10:51:07Z 1492 386 2005-07-14T14:46:07Z 2 2020-02-15T06:59:39Z +4190 2005-07-07T10:52:39Z 826 349 2005-07-11T13:19:39Z 1 2020-02-15T06:59:39Z +4191 2005-07-07T10:56:14Z 2475 390 2005-07-11T09:56:14Z 1 2020-02-15T06:59:39Z +4192 2005-07-07T10:57:06Z 624 558 2005-07-13T16:30:06Z 1 2020-02-15T06:59:39Z +4193 2005-07-07T10:57:21Z 3791 445 2005-07-09T07:33:21Z 2 2020-02-15T06:59:39Z +4194 2005-07-07T10:59:39Z 1753 153 2005-07-15T09:34:39Z 1 2020-02-15T06:59:39Z +4195 2005-07-07T11:00:02Z 450 455 2005-07-14T16:54:02Z 1 2020-02-15T06:59:39Z +4196 2005-07-07T11:06:33Z 3407 564 2005-07-14T13:46:33Z 1 2020-02-15T06:59:39Z +4197 2005-07-07T11:07:52Z 2515 324 2005-07-10T10:19:52Z 1 2020-02-15T06:59:39Z +4198 2005-07-07T11:08:11Z 333 247 2005-07-16T15:29:11Z 1 2020-02-15T06:59:39Z +4199 2005-07-07T11:13:07Z 2120 259 2005-07-11T07:17:07Z 1 2020-02-15T06:59:39Z +4200 2005-07-07T11:15:11Z 1097 292 2005-07-11T11:46:11Z 2 2020-02-15T06:59:39Z +4201 2005-07-07T11:19:51Z 3682 145 2005-07-16T08:48:51Z 1 2020-02-15T06:59:39Z +4202 2005-07-07T11:23:48Z 2274 38 2005-07-16T16:32:48Z 1 2020-02-15T06:59:39Z +4203 2005-07-07T11:24:14Z 2743 189 2005-07-11T16:26:14Z 1 2020-02-15T06:59:39Z +4204 2005-07-07T11:24:18Z 1513 569 2005-07-15T12:42:18Z 1 2020-02-15T06:59:39Z +4205 2005-07-07T11:25:39Z 3922 486 2005-07-11T06:12:39Z 1 2020-02-15T06:59:39Z +4206 2005-07-07T11:32:16Z 1557 448 2005-07-14T13:07:16Z 2 2020-02-15T06:59:39Z +4207 2005-07-07T11:32:45Z 1119 588 2005-07-14T05:49:45Z 2 2020-02-15T06:59:39Z +4208 2005-07-07T11:34:22Z 3617 441 2005-07-09T08:25:22Z 1 2020-02-15T06:59:39Z +4209 2005-07-07T11:35:08Z 2010 100 2005-07-10T10:58:08Z 1 2020-02-15T06:59:39Z +4210 2005-07-07T11:36:20Z 1972 581 2005-07-16T12:38:20Z 1 2020-02-15T06:59:39Z +4211 2005-07-07T11:50:41Z 2001 214 2005-07-09T13:58:41Z 2 2020-02-15T06:59:39Z +4212 2005-07-07T11:53:14Z 1825 574 2005-07-09T07:12:14Z 1 2020-02-15T06:59:39Z +4213 2005-07-07T11:53:49Z 705 103 2005-07-13T07:51:49Z 1 2020-02-15T06:59:39Z +4214 2005-07-07T11:54:33Z 2534 484 2005-07-08T10:49:33Z 2 2020-02-15T06:59:39Z +4215 2005-07-07T12:00:52Z 1239 22 2005-07-11T15:14:52Z 2 2020-02-15T06:59:39Z +4216 2005-07-07T12:01:34Z 1216 467 2005-07-08T09:59:34Z 1 2020-02-15T06:59:39Z +4217 2005-07-07T12:08:59Z 3186 228 2005-07-11T15:07:59Z 2 2020-02-15T06:59:39Z +4218 2005-07-07T12:10:24Z 152 497 2005-07-15T16:09:24Z 1 2020-02-15T06:59:39Z +4219 2005-07-07T12:11:22Z 2800 16 2005-07-11T11:05:22Z 1 2020-02-15T06:59:39Z +4220 2005-07-07T12:12:36Z 821 513 2005-07-10T13:37:36Z 1 2020-02-15T06:59:39Z +4221 2005-07-07T12:18:57Z 4567 143 2005-07-12T09:47:57Z 2 2020-02-15T06:59:39Z +4222 2005-07-07T12:20:21Z 2053 467 2005-07-11T11:09:21Z 2 2020-02-15T06:59:39Z +4223 2005-07-07T12:23:54Z 2407 405 2005-07-10T14:46:54Z 2 2020-02-15T06:59:39Z +4224 2005-07-07T12:24:21Z 3659 419 2005-07-10T11:48:21Z 1 2020-02-15T06:59:39Z +4225 2005-07-07T12:24:37Z 1766 377 2005-07-12T06:47:37Z 2 2020-02-15T06:59:39Z +4226 2005-07-07T12:37:56Z 1692 57 2005-07-09T08:48:56Z 2 2020-02-15T06:59:39Z +4227 2005-07-07T12:41:36Z 4186 78 2005-07-15T12:33:36Z 1 2020-02-15T06:59:39Z +4228 2005-07-07T12:42:02Z 1020 38 2005-07-12T10:52:02Z 1 2020-02-15T06:59:39Z +4229 2005-07-07T12:43:23Z 953 106 2005-07-13T15:00:23Z 2 2020-02-15T06:59:39Z +4230 2005-07-07T12:46:47Z 353 205 2005-07-15T06:52:47Z 1 2020-02-15T06:59:39Z +4231 2005-07-07T12:48:19Z 3522 194 2005-07-13T18:45:19Z 1 2020-02-15T06:59:39Z +4232 2005-07-07T12:49:12Z 3841 347 2005-07-15T16:45:12Z 1 2020-02-15T06:59:39Z +4233 2005-07-07T13:00:20Z 1849 488 2005-07-13T16:37:20Z 1 2020-02-15T06:59:39Z +4234 2005-07-07T13:01:35Z 1179 195 2005-07-15T13:05:35Z 1 2020-02-15T06:59:39Z +4235 2005-07-07T13:05:52Z 3525 86 2005-07-10T12:17:52Z 2 2020-02-15T06:59:39Z +4236 2005-07-07T13:12:07Z 642 213 2005-07-08T15:00:07Z 2 2020-02-15T06:59:39Z +4237 2005-07-07T13:16:55Z 3773 477 2005-07-15T16:33:55Z 1 2020-02-15T06:59:39Z +4238 2005-07-07T13:22:20Z 3024 7 2005-07-10T07:44:20Z 2 2020-02-15T06:59:39Z +4239 2005-07-07T13:23:17Z 3866 122 2005-07-13T17:49:17Z 1 2020-02-15T06:59:39Z +4240 2005-07-07T13:33:12Z 1024 65 2005-07-13T12:28:12Z 1 2020-02-15T06:59:39Z +4241 2005-07-07T13:39:00Z 4154 595 2005-07-12T17:49:00Z 2 2020-02-15T06:59:39Z +4242 2005-07-07T13:39:01Z 3626 286 2005-07-12T18:29:01Z 1 2020-02-15T06:59:39Z +4243 2005-07-07T13:39:58Z 4559 339 2005-07-12T19:27:58Z 1 2020-02-15T06:59:39Z +4244 2005-07-07T13:41:58Z 592 581 2005-07-09T15:32:58Z 2 2020-02-15T06:59:39Z +4245 2005-07-07T13:48:33Z 3743 91 2005-07-10T09:54:33Z 1 2020-02-15T06:59:39Z +4246 2005-07-07T13:49:03Z 1141 411 2005-07-09T13:01:03Z 1 2020-02-15T06:59:39Z +4247 2005-07-07T13:51:54Z 808 539 2005-07-10T09:43:54Z 2 2020-02-15T06:59:39Z +4248 2005-07-07T13:59:20Z 773 161 2005-07-14T15:18:20Z 2 2020-02-15T06:59:39Z +4249 2005-07-07T14:05:17Z 4185 111 2005-07-10T09:21:17Z 2 2020-02-15T06:59:39Z +4250 2005-07-07T14:08:11Z 2556 423 2005-07-13T08:09:11Z 2 2020-02-15T06:59:39Z +4251 2005-07-07T14:11:55Z 3541 367 2005-07-16T14:01:55Z 2 2020-02-15T06:59:39Z +4252 2005-07-07T14:13:05Z 474 154 2005-07-09T14:17:05Z 1 2020-02-15T06:59:39Z +4253 2005-07-07T14:13:13Z 3355 157 2005-07-16T18:55:13Z 2 2020-02-15T06:59:39Z +4254 2005-07-07T14:13:52Z 3957 529 2005-07-12T10:39:52Z 2 2020-02-15T06:59:39Z +4255 2005-07-07T14:14:13Z 749 10 2005-07-12T18:32:13Z 1 2020-02-15T06:59:39Z +4256 2005-07-07T14:14:36Z 1386 129 2005-07-10T09:41:36Z 1 2020-02-15T06:59:39Z +4257 2005-07-07T14:18:41Z 3927 553 2005-07-08T14:58:41Z 1 2020-02-15T06:59:39Z +4258 2005-07-07T14:20:59Z 1562 492 2005-07-16T10:03:59Z 1 2020-02-15T06:59:39Z +4259 2005-07-07T14:22:18Z 4378 467 2005-07-11T19:38:18Z 1 2020-02-15T06:59:39Z +4260 2005-07-07T14:22:45Z 4575 305 2005-07-08T15:10:45Z 2 2020-02-15T06:59:39Z +4261 2005-07-07T14:23:56Z 1405 496 2005-07-13T15:26:56Z 1 2020-02-15T06:59:39Z +4262 2005-07-07T14:24:30Z 3122 29 2005-07-14T13:12:30Z 1 2020-02-15T06:59:39Z +4263 2005-07-07T14:24:44Z 2975 16 2005-07-13T18:22:44Z 1 2020-02-15T06:59:39Z +4264 2005-07-07T14:25:28Z 3499 406 2005-07-08T08:49:28Z 2 2020-02-15T06:59:39Z +4265 2005-07-07T14:27:51Z 1685 69 2005-07-12T19:55:51Z 2 2020-02-15T06:59:39Z +4266 2005-07-07T14:34:50Z 1578 509 2005-07-08T09:23:50Z 2 2020-02-15T06:59:39Z +4267 2005-07-07T14:35:30Z 136 410 2005-07-11T10:41:30Z 1 2020-02-15T06:59:39Z +4268 2005-07-07T14:36:05Z 432 80 2005-07-16T14:36:05Z 1 2020-02-15T06:59:39Z +4269 2005-07-07T14:38:33Z 415 496 2005-07-09T10:27:33Z 1 2020-02-15T06:59:39Z +4270 2005-07-07T14:38:41Z 183 210 2005-07-10T19:07:41Z 2 2020-02-15T06:59:39Z +4271 2005-07-07T14:38:52Z 533 150 2005-07-15T12:05:52Z 1 2020-02-15T06:59:39Z +4272 2005-07-07T14:39:20Z 488 120 2005-07-13T08:57:20Z 2 2020-02-15T06:59:39Z +4273 2005-07-07T14:40:22Z 4163 159 2005-07-13T09:58:22Z 2 2020-02-15T06:59:39Z +4274 2005-07-07T14:42:04Z 787 26 2005-07-13T20:23:04Z 1 2020-02-15T06:59:39Z +4275 2005-07-07T14:43:51Z 1167 393 2005-07-15T18:04:51Z 2 2020-02-15T06:59:39Z +4276 2005-07-07T14:50:59Z 221 366 2005-07-09T15:42:59Z 2 2020-02-15T06:59:39Z +4277 2005-07-07T14:52:12Z 1983 106 2005-07-09T13:10:12Z 1 2020-02-15T06:59:39Z +4278 2005-07-07T14:53:24Z 3693 6 2005-07-13T14:21:24Z 2 2020-02-15T06:59:39Z +4279 2005-07-07T15:01:53Z 581 335 2005-07-08T09:43:53Z 1 2020-02-15T06:59:39Z +4280 2005-07-07T15:09:31Z 1115 593 2005-07-13T14:47:31Z 1 2020-02-15T06:59:39Z +4281 2005-07-07T15:17:50Z 1182 321 2005-07-08T11:42:50Z 2 2020-02-15T06:59:39Z +4282 2005-07-07T15:26:31Z 3134 25 2005-07-11T14:27:31Z 1 2020-02-15T06:59:39Z +4283 2005-07-07T15:29:35Z 2807 477 2005-07-11T17:12:35Z 1 2020-02-15T06:59:39Z +4284 2005-07-07T15:31:57Z 1313 521 2005-07-09T10:20:57Z 2 2020-02-15T06:59:39Z +4285 2005-07-07T15:34:35Z 511 308 2005-07-15T09:43:35Z 2 2020-02-15T06:59:39Z +4286 2005-07-07T15:36:44Z 4496 111 2005-07-11T13:04:44Z 2 2020-02-15T06:59:39Z +4287 2005-07-07T15:37:31Z 3558 94 2005-07-16T19:59:31Z 2 2020-02-15T06:59:39Z +4288 2005-07-07T15:38:25Z 1508 64 2005-07-13T16:23:25Z 2 2020-02-15T06:59:39Z +4289 2005-07-07T15:45:58Z 3172 231 2005-07-09T11:11:58Z 2 2020-02-15T06:59:39Z +4290 2005-07-07T15:47:10Z 4174 277 2005-07-15T15:03:10Z 1 2020-02-15T06:59:39Z +4291 2005-07-07T15:47:47Z 2074 298 2005-07-10T11:45:47Z 1 2020-02-15T06:59:39Z +4292 2005-07-07T15:48:38Z 3084 401 2005-07-15T17:53:38Z 1 2020-02-15T06:59:39Z +4293 2005-07-07T15:53:47Z 984 221 2005-07-10T18:11:47Z 1 2020-02-15T06:59:39Z +4294 2005-07-07T15:56:23Z 2845 41 2005-07-15T14:50:23Z 2 2020-02-15T06:59:39Z +4295 2005-07-07T16:08:51Z 2490 319 2005-07-13T13:06:51Z 2 2020-02-15T06:59:39Z +4296 2005-07-07T16:16:03Z 977 407 2005-07-08T20:16:03Z 2 2020-02-15T06:59:39Z +4297 2005-07-07T16:24:09Z 882 141 2005-07-13T15:08:09Z 2 2020-02-15T06:59:39Z +4298 2005-07-07T16:27:25Z 1055 560 2005-07-12T18:20:25Z 1 2020-02-15T06:59:39Z +4299 2005-07-07T16:33:48Z 870 80 2005-07-16T11:48:48Z 1 2020-02-15T06:59:39Z +4300 2005-07-07T16:36:16Z 1189 38 2005-07-10T13:59:16Z 2 2020-02-15T06:59:39Z +4301 2005-07-07T16:37:23Z 1630 440 2005-07-11T18:05:23Z 2 2020-02-15T06:59:39Z +4302 2005-07-07T16:47:53Z 3669 332 2005-07-16T22:22:53Z 2 2020-02-15T06:59:39Z +4303 2005-07-07T16:57:32Z 818 108 2005-07-14T17:42:32Z 2 2020-02-15T06:59:39Z +4304 2005-07-07T17:01:19Z 3382 165 2005-07-12T22:47:19Z 2 2020-02-15T06:59:39Z +4305 2005-07-07T17:07:11Z 3926 240 2005-07-08T16:15:11Z 2 2020-02-15T06:59:39Z +4306 2005-07-07T17:12:32Z 1219 210 2005-07-16T11:24:32Z 2 2020-02-15T06:59:39Z +4307 2005-07-07T17:20:39Z 2827 394 2005-07-16T14:42:39Z 1 2020-02-15T06:59:39Z +4308 2005-07-07T17:29:16Z 1482 168 2005-07-11T21:47:16Z 1 2020-02-15T06:59:39Z +4309 2005-07-07T17:29:41Z 3549 209 2005-07-14T22:22:41Z 2 2020-02-15T06:59:39Z +4310 2005-07-07T17:30:56Z 3842 390 2005-07-12T13:19:56Z 2 2020-02-15T06:59:39Z +4311 2005-07-07T17:31:14Z 2985 498 2005-07-11T19:21:14Z 2 2020-02-15T06:59:39Z +4312 2005-07-07T17:34:59Z 3870 97 2005-07-09T17:45:59Z 2 2020-02-15T06:59:39Z +4313 2005-07-07T17:36:56Z 91 29 2005-07-13T12:00:56Z 1 2020-02-15T06:59:39Z +4314 2005-07-07T17:38:31Z 539 184 2005-07-09T20:24:31Z 1 2020-02-15T06:59:39Z +4315 2005-07-07T17:40:26Z 1472 195 2005-07-09T22:58:26Z 2 2020-02-15T06:59:39Z +4316 2005-07-07T17:44:22Z 517 301 2005-07-14T15:12:22Z 2 2020-02-15T06:59:39Z +4317 2005-07-07T17:44:49Z 2234 110 2005-07-08T21:48:49Z 2 2020-02-15T06:59:39Z +4318 2005-07-07T17:47:50Z 1607 321 2005-07-14T12:15:50Z 2 2020-02-15T06:59:39Z +4319 2005-07-07T17:50:27Z 3389 25 2005-07-10T13:53:27Z 2 2020-02-15T06:59:39Z +4320 2005-07-07T17:51:59Z 3437 376 2005-07-13T18:39:59Z 1 2020-02-15T06:59:39Z +4321 2005-07-07T17:52:38Z 612 91 2005-07-11T23:37:38Z 1 2020-02-15T06:59:39Z +4322 2005-07-07T17:54:37Z 1522 568 2005-07-14T13:56:37Z 1 2020-02-15T06:59:39Z +4323 2005-07-07T17:55:53Z 1287 336 2005-07-13T16:43:53Z 2 2020-02-15T06:59:39Z +4324 2005-07-07T17:57:56Z 952 226 2005-07-13T22:34:56Z 1 2020-02-15T06:59:39Z +4325 2005-07-07T17:59:24Z 3728 373 2005-07-16T17:10:24Z 2 2020-02-15T06:59:39Z +4326 2005-07-07T18:01:22Z 4037 331 2005-07-16T15:45:22Z 1 2020-02-15T06:59:39Z +4327 2005-07-07T18:01:39Z 860 73 2005-07-12T22:40:39Z 1 2020-02-15T06:59:39Z +4328 2005-07-07T18:03:17Z 2174 264 2005-07-14T16:14:17Z 1 2020-02-15T06:59:39Z +4329 2005-07-07T18:04:16Z 638 504 2005-07-15T17:58:16Z 2 2020-02-15T06:59:39Z +4330 2005-07-07T18:09:41Z 2408 408 2005-07-14T22:05:41Z 1 2020-02-15T06:59:39Z +4331 2005-07-07T18:22:30Z 419 535 2005-07-13T18:20:30Z 1 2020-02-15T06:59:39Z +4332 2005-07-07T18:25:26Z 1714 137 2005-07-16T15:05:26Z 1 2020-02-15T06:59:39Z +4333 2005-07-07T18:31:50Z 76 113 2005-07-08T21:26:50Z 1 2020-02-15T06:59:39Z +4334 2005-07-07T18:32:04Z 3021 210 2005-07-08T16:19:04Z 1 2020-02-15T06:59:39Z +4335 2005-07-07T18:33:57Z 1332 375 2005-07-11T13:23:57Z 1 2020-02-15T06:59:39Z +4336 2005-07-07T18:34:36Z 482 532 2005-07-10T17:58:36Z 2 2020-02-15T06:59:39Z +4337 2005-07-07T18:36:37Z 2313 464 2005-07-14T14:59:37Z 2 2020-02-15T06:59:39Z +4338 2005-07-07T18:39:56Z 3152 581 2005-07-12T21:03:56Z 1 2020-02-15T06:59:39Z +4339 2005-07-07T18:41:42Z 3215 130 2005-07-08T13:00:42Z 1 2020-02-15T06:59:39Z +4340 2005-07-07T18:41:46Z 3919 227 2005-07-16T21:27:46Z 1 2020-02-15T06:59:39Z +4341 2005-07-07T18:44:23Z 4523 124 2005-07-15T18:13:23Z 1 2020-02-15T06:59:39Z +4342 2005-07-07T18:47:03Z 1355 120 2005-07-09T21:59:03Z 2 2020-02-15T06:59:39Z +4343 2005-07-07T18:48:54Z 1926 293 2005-07-12T15:19:54Z 1 2020-02-15T06:59:39Z +4344 2005-07-07T18:50:47Z 1185 99 2005-07-12T16:38:47Z 2 2020-02-15T06:59:39Z +4345 2005-07-07T18:52:57Z 2235 225 2005-07-15T21:24:57Z 2 2020-02-15T06:59:39Z +4346 2005-07-07T18:58:45Z 1906 520 2005-07-10T16:37:45Z 1 2020-02-15T06:59:39Z +4347 2005-07-07T18:58:57Z 1964 344 2005-07-14T16:35:57Z 2 2020-02-15T06:59:39Z +4348 2005-07-07T19:02:05Z 1948 452 2005-07-09T20:51:05Z 2 2020-02-15T06:59:39Z +4349 2005-07-07T19:02:37Z 3430 182 2005-07-09T17:25:37Z 2 2020-02-15T06:59:39Z +4350 2005-07-07T19:02:41Z 2223 299 2005-07-09T15:27:41Z 1 2020-02-15T06:59:39Z +4351 2005-07-07T19:04:24Z 3567 382 2005-07-14T00:03:24Z 2 2020-02-15T06:59:39Z +4352 2005-07-07T19:15:58Z 2636 249 2005-07-16T20:22:58Z 2 2020-02-15T06:59:39Z +4353 2005-07-07T19:19:05Z 368 452 2005-07-13T13:40:05Z 1 2020-02-15T06:59:39Z +4354 2005-07-07T19:21:02Z 4423 208 2005-07-15T17:03:02Z 2 2020-02-15T06:59:39Z +4355 2005-07-07T19:21:19Z 4557 438 2005-07-09T00:55:19Z 2 2020-02-15T06:59:39Z +4356 2005-07-07T19:21:22Z 1907 318 2005-07-16T15:57:22Z 1 2020-02-15T06:59:39Z +4357 2005-07-07T19:24:39Z 3413 103 2005-07-12T00:11:39Z 1 2020-02-15T06:59:39Z +4358 2005-07-07T19:27:04Z 3136 446 2005-07-14T23:46:04Z 1 2020-02-15T06:59:39Z +4359 2005-07-07T19:30:20Z 3222 282 2005-07-09T13:34:20Z 1 2020-02-15T06:59:39Z +4360 2005-07-07T19:31:12Z 1811 92 2005-07-10T23:11:12Z 2 2020-02-15T06:59:39Z +4361 2005-07-07T19:33:23Z 116 425 2005-07-12T22:36:23Z 1 2020-02-15T06:59:39Z +4362 2005-07-07T19:35:30Z 3759 425 2005-07-14T14:59:30Z 1 2020-02-15T06:59:39Z +4363 2005-07-07T19:43:28Z 3202 168 2005-07-13T00:15:28Z 2 2020-02-15T06:59:39Z +4364 2005-07-07T19:46:51Z 10 145 2005-07-08T21:55:51Z 1 2020-02-15T06:59:39Z +4365 2005-07-07T19:47:46Z 3207 442 2005-07-08T23:21:46Z 2 2020-02-15T06:59:39Z +4366 2005-07-07T19:48:36Z 2961 524 2005-07-14T01:14:36Z 1 2020-02-15T06:59:39Z +4367 2005-07-07T19:52:01Z 4529 48 2005-07-13T19:41:01Z 2 2020-02-15T06:59:39Z +4368 2005-07-07T19:55:19Z 736 324 2005-07-09T00:11:19Z 1 2020-02-15T06:59:39Z +4369 2005-07-07T20:01:38Z 3552 517 2005-07-13T01:19:38Z 2 2020-02-15T06:59:39Z +4370 2005-07-07T20:05:36Z 1591 559 2005-07-16T23:58:36Z 1 2020-02-15T06:59:39Z +4371 2005-07-07T20:06:45Z 2533 90 2005-07-08T18:50:45Z 1 2020-02-15T06:59:39Z +4372 2005-07-07T20:09:01Z 2207 252 2005-07-09T18:24:01Z 1 2020-02-15T06:59:39Z +4373 2005-07-07T20:10:59Z 3593 470 2005-07-12T21:30:59Z 2 2020-02-15T06:59:39Z +4374 2005-07-07T20:13:58Z 4377 517 2005-07-11T18:11:58Z 2 2020-02-15T06:59:39Z +4375 2005-07-07T20:20:29Z 3035 560 2005-07-16T19:29:29Z 2 2020-02-15T06:59:39Z +4376 2005-07-07T20:24:33Z 1344 151 2005-07-11T18:32:33Z 1 2020-02-15T06:59:39Z +4377 2005-07-07T20:28:57Z 3294 205 2005-07-16T02:13:57Z 2 2020-02-15T06:59:39Z +4378 2005-07-07T20:29:08Z 1244 24 2005-07-12T19:17:08Z 2 2020-02-15T06:59:39Z +4379 2005-07-07T20:32:30Z 2773 316 2005-07-11T20:40:30Z 2 2020-02-15T06:59:39Z +4380 2005-07-07T20:35:00Z 3164 353 2005-07-14T17:06:00Z 1 2020-02-15T06:59:39Z +4381 2005-07-07T20:37:53Z 3727 486 2005-07-10T16:54:53Z 1 2020-02-15T06:59:39Z +4382 2005-07-07T20:41:03Z 657 26 2005-07-14T15:15:03Z 1 2020-02-15T06:59:39Z +4383 2005-07-07T20:45:51Z 2649 591 2005-07-17T00:52:51Z 2 2020-02-15T06:59:39Z +4384 2005-07-07T20:46:45Z 1178 59 2005-07-16T21:54:45Z 1 2020-02-15T06:59:39Z +4385 2005-07-07T20:48:38Z 849 564 2005-07-11T17:03:38Z 2 2020-02-15T06:59:39Z +4386 2005-07-07T20:55:19Z 499 314 2005-07-10T21:51:19Z 1 2020-02-15T06:59:39Z +4387 2005-07-07T20:56:47Z 591 335 2005-07-16T00:51:47Z 1 2020-02-15T06:59:39Z +4388 2005-07-07T20:58:03Z 3150 210 2005-07-16T20:05:03Z 2 2020-02-15T06:59:39Z +4389 2005-07-07T20:58:58Z 1672 166 2005-07-13T19:57:58Z 2 2020-02-15T06:59:39Z +4390 2005-07-07T20:59:06Z 6 44 2005-07-09T00:04:06Z 2 2020-02-15T06:59:39Z +4391 2005-07-07T21:09:38Z 2135 42 2005-07-09T17:35:38Z 1 2020-02-15T06:59:39Z +4392 2005-07-07T21:11:02Z 4236 491 2005-07-13T21:52:02Z 1 2020-02-15T06:59:39Z +4393 2005-07-07T21:12:36Z 4034 395 2005-07-09T22:41:36Z 2 2020-02-15T06:59:39Z +4394 2005-07-07T21:12:45Z 563 156 2005-07-16T18:24:45Z 2 2020-02-15T06:59:39Z +4395 2005-07-07T21:13:22Z 360 544 2005-07-08T22:59:22Z 2 2020-02-15T06:59:39Z +4396 2005-07-07T21:14:19Z 750 275 2005-07-10T19:22:19Z 1 2020-02-15T06:59:39Z +4397 2005-07-07T21:14:54Z 3085 494 2005-07-13T19:24:54Z 2 2020-02-15T06:59:39Z +4398 2005-07-07T21:18:44Z 3628 426 2005-07-10T22:45:44Z 1 2020-02-15T06:59:39Z +4399 2005-07-07T21:20:28Z 4515 402 2005-07-12T20:57:28Z 2 2020-02-15T06:59:39Z +4400 2005-07-07T21:22:26Z 49 370 2005-07-16T00:59:26Z 2 2020-02-15T06:59:39Z +4401 2005-07-07T21:26:27Z 2725 405 2005-07-12T17:18:27Z 2 2020-02-15T06:59:39Z +4402 2005-07-07T21:28:46Z 1198 26 2005-07-08T17:04:46Z 1 2020-02-15T06:59:39Z +4403 2005-07-07T21:29:40Z 3973 447 2005-07-09T17:58:40Z 1 2020-02-15T06:59:39Z +4404 2005-07-07T21:31:53Z 944 25 2005-07-13T19:00:53Z 1 2020-02-15T06:59:39Z +4405 2005-07-07T21:33:16Z 2102 145 2005-07-15T00:33:16Z 2 2020-02-15T06:59:39Z +4406 2005-07-07T21:35:16Z 438 448 2005-07-15T16:13:16Z 2 2020-02-15T06:59:39Z +4407 2005-07-07T21:39:45Z 267 20 2005-07-11T23:40:45Z 1 2020-02-15T06:59:39Z +4408 2005-07-07T21:41:06Z 2482 258 2005-07-11T00:32:06Z 1 2020-02-15T06:59:39Z +4409 2005-07-07T21:47:29Z 3153 8 2005-07-11T20:14:29Z 2 2020-02-15T06:59:39Z +4410 2005-07-07T21:48:16Z 2754 584 2005-07-09T03:15:16Z 1 2020-02-15T06:59:39Z +4411 2005-07-07T21:54:58Z 320 224 2005-07-14T16:14:58Z 2 2020-02-15T06:59:39Z +4412 2005-07-07T21:56:53Z 1181 282 2005-07-11T19:28:53Z 1 2020-02-15T06:59:39Z +4413 2005-07-07T22:00:04Z 1062 565 2005-07-10T18:20:04Z 2 2020-02-15T06:59:39Z +4414 2005-07-07T22:00:21Z 991 434 2005-07-12T02:51:21Z 1 2020-02-15T06:59:39Z +4415 2005-07-07T22:01:43Z 1403 329 2005-07-13T03:09:43Z 2 2020-02-15T06:59:39Z +4416 2005-07-07T22:04:36Z 1247 290 2005-07-09T02:44:36Z 2 2020-02-15T06:59:39Z +4417 2005-07-07T22:05:05Z 743 452 2005-07-09T16:16:05Z 2 2020-02-15T06:59:39Z +4418 2005-07-07T22:05:30Z 4368 417 2005-07-11T18:42:30Z 1 2020-02-15T06:59:39Z +4419 2005-07-07T22:06:24Z 783 39 2005-07-15T23:59:24Z 1 2020-02-15T06:59:39Z +4420 2005-07-07T22:07:31Z 4427 346 2005-07-12T19:14:31Z 2 2020-02-15T06:59:39Z +4421 2005-07-07T22:07:55Z 4103 417 2005-07-16T20:21:55Z 1 2020-02-15T06:59:39Z +4422 2005-07-07T22:09:45Z 1741 345 2005-07-10T01:43:45Z 1 2020-02-15T06:59:39Z +4423 2005-07-07T22:11:28Z 2721 526 2005-07-14T18:49:28Z 2 2020-02-15T06:59:39Z +4424 2005-07-07T22:14:43Z 662 384 2005-07-11T01:17:43Z 1 2020-02-15T06:59:39Z +4425 2005-07-07T22:22:44Z 877 345 2005-07-08T22:23:44Z 2 2020-02-15T06:59:39Z +4426 2005-07-07T22:28:32Z 364 242 2005-07-16T02:04:32Z 1 2020-02-15T06:59:39Z +4427 2005-07-07T22:28:51Z 1021 69 2005-07-11T21:37:51Z 2 2020-02-15T06:59:39Z +4428 2005-07-07T22:29:40Z 2575 181 2005-07-11T02:46:40Z 2 2020-02-15T06:59:39Z +4429 2005-07-07T22:32:47Z 2949 187 2005-07-15T03:10:47Z 2 2020-02-15T06:59:39Z +4430 2005-07-07T22:35:24Z 3436 278 2005-07-14T23:49:24Z 1 2020-02-15T06:59:39Z +4431 2005-07-07T22:39:02Z 936 26 2005-07-16T19:24:02Z 1 2020-02-15T06:59:39Z +4432 2005-07-07T22:40:02Z 2779 295 2005-07-15T01:46:02Z 1 2020-02-15T06:59:39Z +4433 2005-07-07T22:45:41Z 88 449 2005-07-16T23:30:41Z 2 2020-02-15T06:59:39Z +4434 2005-07-07T22:48:34Z 1801 32 2005-07-09T18:55:34Z 1 2020-02-15T06:59:39Z +4435 2005-07-07T22:51:04Z 3815 157 2005-07-14T23:15:04Z 2 2020-02-15T06:59:39Z +4436 2005-07-07T22:52:04Z 4326 563 2005-07-10T04:51:04Z 1 2020-02-15T06:59:39Z +4437 2005-07-07T22:55:41Z 3578 414 2005-07-13T19:40:41Z 1 2020-02-15T06:59:39Z +4438 2005-07-07T22:56:17Z 4371 104 2005-07-16T17:28:17Z 1 2020-02-15T06:59:39Z +4439 2005-07-07T22:57:30Z 2393 521 2005-07-10T18:28:30Z 1 2020-02-15T06:59:39Z +4440 2005-07-07T23:00:58Z 1236 507 2005-07-08T21:31:58Z 2 2020-02-15T06:59:39Z +4441 2005-07-07T23:04:23Z 3680 211 2005-07-13T19:07:23Z 1 2020-02-15T06:59:39Z +4442 2005-07-07T23:05:30Z 461 123 2005-07-13T22:20:30Z 2 2020-02-15T06:59:39Z +4443 2005-07-07T23:05:53Z 72 389 2005-07-16T01:46:53Z 1 2020-02-15T06:59:39Z +4444 2005-07-07T23:07:44Z 764 529 2005-07-14T02:51:44Z 2 2020-02-15T06:59:39Z +4445 2005-07-07T23:08:22Z 3328 327 2005-07-16T03:49:22Z 1 2020-02-15T06:59:39Z +4446 2005-07-07T23:12:16Z 2629 438 2005-07-13T19:42:16Z 1 2020-02-15T06:59:39Z +4447 2005-07-07T23:15:28Z 404 549 2005-07-14T22:53:28Z 2 2020-02-15T06:59:39Z +4448 2005-07-07T23:17:12Z 2768 536 2005-07-13T18:26:12Z 1 2020-02-15T06:59:39Z +4449 2005-07-07T23:18:58Z 2813 354 2005-07-15T20:40:58Z 2 2020-02-15T06:59:39Z +4450 2005-07-07T23:20:05Z 1252 345 2005-07-13T19:50:05Z 2 2020-02-15T06:59:39Z +4451 2005-07-07T23:29:54Z 179 85 2005-07-10T23:29:54Z 2 2020-02-15T06:59:39Z +4452 2005-07-07T23:31:54Z 2414 460 2005-07-14T04:05:54Z 1 2020-02-15T06:59:39Z +4453 2005-07-07T23:32:39Z 89 560 2005-07-12T01:38:39Z 2 2020-02-15T06:59:39Z +4454 2005-07-07T23:37:00Z 1395 9 2005-07-11T02:30:00Z 1 2020-02-15T06:59:39Z +4455 2005-07-07T23:43:46Z 1396 507 2005-07-08T21:34:46Z 2 2020-02-15T06:59:39Z +4456 2005-07-07T23:45:21Z 3395 421 2005-07-13T23:03:21Z 2 2020-02-15T06:59:39Z +4457 2005-07-07T23:45:38Z 407 567 2005-07-09T20:02:38Z 1 2020-02-15T06:59:39Z +4458 2005-07-07T23:47:47Z 1307 229 2005-07-09T19:17:47Z 2 2020-02-15T06:59:39Z +4459 2005-07-07T23:48:52Z 3987 227 2005-07-13T19:37:52Z 2 2020-02-15T06:59:39Z +4460 2005-07-07T23:50:14Z 4121 592 2005-07-09T21:55:14Z 1 2020-02-15T06:59:39Z +4461 2005-07-07T23:59:43Z 3656 286 2005-07-16T19:44:43Z 2 2020-02-15T06:59:39Z +4462 2005-07-08T00:02:49Z 4120 257 2005-07-15T20:48:49Z 2 2020-02-15T06:59:39Z +4463 2005-07-08T00:04:59Z 4356 422 2005-07-16T01:19:59Z 1 2020-02-15T06:59:39Z +4464 2005-07-08T00:07:18Z 4484 583 2005-07-08T22:14:18Z 2 2020-02-15T06:59:39Z +4465 2005-07-08T00:07:45Z 2877 329 2005-07-13T18:08:45Z 2 2020-02-15T06:59:39Z +4466 2005-07-08T00:12:53Z 3320 304 2005-07-17T03:49:53Z 2 2020-02-15T06:59:39Z +4467 2005-07-08T00:13:52Z 4466 339 2005-07-09T00:52:52Z 1 2020-02-15T06:59:39Z +4468 2005-07-08T00:17:59Z 3302 170 2005-07-12T05:51:59Z 2 2020-02-15T06:59:39Z +4469 2005-07-08T00:18:32Z 2173 192 2005-07-12T21:17:32Z 2 2020-02-15T06:59:39Z +4470 2005-07-08T00:20:57Z 3605 145 2005-07-10T02:31:57Z 1 2020-02-15T06:59:39Z +4471 2005-07-08T00:21:29Z 263 30 2005-07-11T18:48:29Z 2 2020-02-15T06:59:39Z +4472 2005-07-08T00:22:06Z 2089 343 2005-07-16T20:16:06Z 1 2020-02-15T06:59:39Z +4473 2005-07-08T00:22:10Z 1387 481 2005-07-09T21:11:10Z 1 2020-02-15T06:59:39Z +4474 2005-07-08T00:26:56Z 4474 137 2005-07-12T23:07:56Z 1 2020-02-15T06:59:39Z +4475 2005-07-08T00:27:30Z 3466 340 2005-07-09T05:39:30Z 1 2020-02-15T06:59:39Z +4476 2005-07-08T00:34:25Z 395 279 2005-07-08T22:55:25Z 1 2020-02-15T06:59:39Z +4477 2005-07-08T00:38:24Z 1602 552 2005-07-13T05:14:24Z 1 2020-02-15T06:59:39Z +4478 2005-07-08T00:39:08Z 1764 357 2005-07-11T21:57:08Z 2 2020-02-15T06:59:39Z +4479 2005-07-08T00:52:35Z 3516 211 2005-07-09T20:19:35Z 2 2020-02-15T06:59:39Z +4480 2005-07-08T00:56:30Z 4457 296 2005-07-10T20:52:30Z 2 2020-02-15T06:59:39Z +4481 2005-07-08T00:58:15Z 1669 474 2005-07-11T23:22:15Z 2 2020-02-15T06:59:39Z +4482 2005-07-08T01:01:18Z 3500 511 2005-07-11T01:18:18Z 1 2020-02-15T06:59:39Z +4483 2005-07-08T01:03:12Z 1222 425 2005-07-17T00:20:12Z 1 2020-02-15T06:59:39Z +4484 2005-07-08T01:05:57Z 2867 306 2005-07-16T00:41:57Z 2 2020-02-15T06:59:39Z +4485 2005-07-08T01:07:54Z 2614 130 2005-07-16T03:19:54Z 2 2020-02-15T06:59:39Z +4486 2005-07-08T01:09:09Z 837 197 2005-07-16T23:40:09Z 1 2020-02-15T06:59:39Z +4487 2005-07-08T01:20:22Z 2220 360 2005-07-16T21:23:22Z 2 2020-02-15T06:59:39Z +4488 2005-07-08T01:22:23Z 2108 89 2005-07-13T21:17:23Z 1 2020-02-15T06:59:39Z +4489 2005-07-08T01:23:58Z 4306 259 2005-07-09T01:35:58Z 2 2020-02-15T06:59:39Z +4490 2005-07-08T01:26:32Z 2690 161 2005-07-09T01:13:32Z 1 2020-02-15T06:59:39Z +4491 2005-07-08T01:30:46Z 1168 413 2005-07-11T03:12:46Z 1 2020-02-15T06:59:39Z +4492 2005-07-08T01:32:04Z 1152 247 2005-07-10T22:11:04Z 1 2020-02-15T06:59:39Z +4493 2005-07-08T01:40:24Z 1369 167 2005-07-09T02:17:24Z 2 2020-02-15T06:59:39Z +4494 2005-07-08T01:42:45Z 1655 349 2005-07-16T22:29:45Z 2 2020-02-15T06:59:39Z +4495 2005-07-08T01:43:46Z 3515 404 2005-07-10T07:38:46Z 1 2020-02-15T06:59:39Z +4496 2005-07-08T01:44:19Z 150 578 2005-07-08T20:34:19Z 2 2020-02-15T06:59:39Z +4497 2005-07-08T01:51:32Z 1995 142 2005-07-15T22:56:32Z 1 2020-02-15T06:59:39Z +4498 2005-07-08T02:07:50Z 4299 43 2005-07-12T23:54:50Z 2 2020-02-15T06:59:39Z +4499 2005-07-08T02:08:48Z 851 199 2005-07-10T07:06:48Z 2 2020-02-15T06:59:39Z +4500 2005-07-08T02:10:01Z 398 462 2005-07-15T05:49:01Z 2 2020-02-15T06:59:39Z +4501 2005-07-08T02:12:00Z 1412 262 2005-07-10T02:16:00Z 2 2020-02-15T06:59:39Z +4502 2005-07-08T02:12:04Z 225 470 2005-07-15T02:19:04Z 2 2020-02-15T06:59:39Z +4503 2005-07-08T02:17:12Z 1503 8 2005-07-13T08:12:12Z 1 2020-02-15T06:59:39Z +4504 2005-07-08T02:19:27Z 361 422 2005-07-12T21:15:27Z 1 2020-02-15T06:59:39Z +4505 2005-07-08T02:20:04Z 1864 481 2005-07-14T20:28:04Z 2 2020-02-15T06:59:39Z +4506 2005-07-08T02:22:18Z 1484 133 2005-07-13T04:54:18Z 2 2020-02-15T06:59:39Z +4507 2005-07-08T02:22:45Z 819 505 2005-07-14T20:53:45Z 1 2020-02-15T06:59:39Z +4508 2005-07-08T02:28:41Z 3996 97 2005-07-16T23:59:41Z 1 2020-02-15T06:59:39Z +4509 2005-07-08T02:32:38Z 1760 230 2005-07-14T01:05:38Z 2 2020-02-15T06:59:39Z +4510 2005-07-08T02:34:51Z 1085 27 2005-07-17T06:03:51Z 2 2020-02-15T06:59:39Z +4511 2005-07-08T02:36:21Z 4438 75 2005-07-15T06:01:21Z 1 2020-02-15T06:59:39Z +4512 2005-07-08T02:38:56Z 1569 424 2005-07-10T20:46:56Z 1 2020-02-15T06:59:39Z +4513 2005-07-08T02:39:59Z 3704 182 2005-07-14T07:48:59Z 2 2020-02-15T06:59:39Z +4514 2005-07-08T02:41:25Z 1938 576 2005-07-15T06:17:25Z 1 2020-02-15T06:59:39Z +4515 2005-07-08T02:42:03Z 1998 229 2005-07-10T07:22:03Z 2 2020-02-15T06:59:39Z +4516 2005-07-08T02:43:41Z 2314 497 2005-07-14T02:20:41Z 1 2020-02-15T06:59:39Z +4517 2005-07-08T02:45:19Z 453 16 2005-07-12T03:04:19Z 2 2020-02-15T06:59:39Z +4518 2005-07-08T02:48:36Z 697 592 2005-07-13T04:53:36Z 2 2020-02-15T06:59:39Z +4519 2005-07-08T02:51:23Z 4425 459 2005-07-12T06:52:23Z 2 2020-02-15T06:59:39Z +4520 2005-07-08T02:53:46Z 3505 104 2005-07-08T22:27:46Z 2 2020-02-15T06:59:39Z +4521 2005-07-08T02:57:56Z 2652 327 2005-07-11T22:49:56Z 2 2020-02-15T06:59:39Z +4522 2005-07-08T03:03:12Z 4114 307 2005-07-10T04:49:12Z 1 2020-02-15T06:59:39Z +4523 2005-07-08T03:06:59Z 2785 347 2005-07-17T04:44:59Z 1 2020-02-15T06:59:39Z +4524 2005-07-08T03:10:48Z 2218 185 2005-07-09T07:49:48Z 2 2020-02-15T06:59:39Z +4525 2005-07-08T03:15:00Z 3631 458 2005-07-11T04:53:00Z 1 2020-02-15T06:59:39Z +4526 2005-07-08T03:17:05Z 1443 1 2005-07-14T01:19:05Z 2 2020-02-15T06:59:39Z +4527 2005-07-08T03:20:10Z 2263 468 2005-07-15T02:21:10Z 1 2020-02-15T06:59:39Z +4528 2005-07-08T03:24:54Z 3209 439 2005-07-09T03:50:54Z 2 2020-02-15T06:59:39Z +4529 2005-07-08T03:26:20Z 1361 104 2005-07-16T05:04:20Z 1 2020-02-15T06:59:39Z +4530 2005-07-08T03:27:05Z 3775 79 2005-07-11T07:44:05Z 1 2020-02-15T06:59:39Z +4531 2005-07-08T03:27:59Z 3108 142 2005-07-10T22:48:59Z 1 2020-02-15T06:59:39Z +4532 2005-07-08T03:30:39Z 4012 481 2005-07-11T21:49:39Z 1 2020-02-15T06:59:39Z +4533 2005-07-08T03:32:01Z 1105 474 2005-07-10T21:57:01Z 1 2020-02-15T06:59:39Z +4534 2005-07-08T03:36:55Z 2518 132 2005-07-16T00:49:55Z 2 2020-02-15T06:59:39Z +4535 2005-07-08T03:40:46Z 561 29 2005-07-13T06:53:46Z 2 2020-02-15T06:59:39Z +4536 2005-07-08T03:43:22Z 220 26 2005-07-15T08:44:22Z 1 2020-02-15T06:59:39Z +4537 2005-07-08T03:48:40Z 1305 448 2005-07-13T22:54:40Z 2 2020-02-15T06:59:39Z +4538 2005-07-08T03:56:29Z 3638 451 2005-07-15T08:24:29Z 1 2020-02-15T06:59:39Z +4539 2005-07-08T04:01:02Z 2450 264 2005-07-14T22:32:02Z 1 2020-02-15T06:59:39Z +4540 2005-07-08T04:03:28Z 4160 309 2005-07-13T03:31:28Z 2 2020-02-15T06:59:39Z +4541 2005-07-08T04:04:19Z 1976 248 2005-07-13T07:27:19Z 2 2020-02-15T06:59:39Z +4542 2005-07-08T04:06:30Z 4169 293 2005-07-16T06:54:30Z 2 2020-02-15T06:59:39Z +4543 2005-07-08T04:06:55Z 913 41 2005-07-12T23:17:55Z 2 2020-02-15T06:59:39Z +4544 2005-07-08T04:11:04Z 4471 351 2005-07-09T22:48:04Z 1 2020-02-15T06:59:39Z +4545 2005-07-08T04:17:47Z 3658 271 2005-07-13T07:19:47Z 1 2020-02-15T06:59:39Z +4546 2005-07-08T04:18:36Z 4507 393 2005-07-17T08:23:36Z 1 2020-02-15T06:59:39Z +4547 2005-07-08T04:20:19Z 3386 255 2005-07-09T00:28:19Z 2 2020-02-15T06:59:39Z +4548 2005-07-08T04:21:54Z 765 164 2005-07-14T23:16:54Z 2 2020-02-15T06:59:39Z +4549 2005-07-08T04:25:03Z 2797 98 2005-07-10T09:01:03Z 2 2020-02-15T06:59:39Z +4550 2005-07-08T04:34:00Z 615 409 2005-07-14T23:45:00Z 2 2020-02-15T06:59:39Z +4551 2005-07-08T04:36:21Z 1160 494 2005-07-17T10:23:21Z 2 2020-02-15T06:59:39Z +4552 2005-07-08T04:36:35Z 2549 313 2005-07-14T05:48:35Z 2 2020-02-15T06:59:39Z +4553 2005-07-08T04:43:41Z 2114 529 2005-07-09T23:55:41Z 1 2020-02-15T06:59:39Z +4554 2005-07-08T04:48:03Z 3878 376 2005-07-16T04:34:03Z 1 2020-02-15T06:59:39Z +4555 2005-07-08T04:48:36Z 1757 68 2005-07-17T07:57:36Z 1 2020-02-15T06:59:39Z +4556 2005-07-08T04:48:41Z 4099 348 2005-07-16T08:51:41Z 2 2020-02-15T06:59:39Z +4557 2005-07-08T04:49:15Z 1191 132 2005-07-14T00:00:15Z 2 2020-02-15T06:59:39Z +4558 2005-07-08T04:55:26Z 828 448 2005-07-09T10:53:26Z 2 2020-02-15T06:59:39Z +4559 2005-07-08T04:56:49Z 1911 424 2005-07-12T08:56:49Z 2 2020-02-15T06:59:39Z +4560 2005-07-08T04:58:48Z 303 36 2005-07-10T04:27:48Z 1 2020-02-15T06:59:39Z +4561 2005-07-08T05:02:43Z 1643 500 2005-07-11T04:56:43Z 1 2020-02-15T06:59:39Z +4562 2005-07-08T05:08:32Z 963 454 2005-07-12T08:16:32Z 2 2020-02-15T06:59:39Z +4563 2005-07-08T05:08:55Z 287 522 2005-07-16T05:44:55Z 2 2020-02-15T06:59:39Z +4564 2005-07-08T05:09:38Z 2494 519 2005-07-11T05:37:38Z 2 2020-02-15T06:59:39Z +4565 2005-07-08T05:12:28Z 3755 563 2005-07-17T03:38:28Z 2 2020-02-15T06:59:39Z +4566 2005-07-08T05:18:50Z 4302 133 2005-07-15T01:53:50Z 1 2020-02-15T06:59:39Z +4567 2005-07-08T05:20:04Z 4073 202 2005-07-10T01:35:04Z 1 2020-02-15T06:59:39Z +4568 2005-07-08T05:23:59Z 2626 122 2005-07-09T06:07:59Z 1 2020-02-15T06:59:39Z +4569 2005-07-08T05:30:51Z 2925 366 2005-07-14T04:14:51Z 2 2020-02-15T06:59:39Z +4570 2005-07-08T05:33:59Z 2612 503 2005-07-14T09:27:59Z 1 2020-02-15T06:59:39Z +4571 2005-07-08T05:34:41Z 2416 86 2005-07-17T02:15:41Z 1 2020-02-15T06:59:39Z +4572 2005-07-08T05:36:59Z 1324 323 2005-07-12T04:46:59Z 2 2020-02-15T06:59:39Z +4573 2005-07-08T05:38:46Z 2478 400 2005-07-15T07:07:46Z 1 2020-02-15T06:59:39Z +4574 2005-07-08T05:39:42Z 536 257 2005-07-08T23:44:42Z 2 2020-02-15T06:59:39Z +4575 2005-07-08T05:49:14Z 231 41 2005-07-11T04:08:14Z 2 2020-02-15T06:59:39Z +4576 2005-07-08T05:51:19Z 1920 567 2005-07-10T11:36:19Z 1 2020-02-15T06:59:39Z +4577 2005-07-08T05:59:00Z 1688 442 2005-07-16T06:23:00Z 2 2020-02-15T06:59:39Z +4578 2005-07-08T06:00:17Z 1533 497 2005-07-10T06:58:17Z 2 2020-02-15T06:59:39Z +4579 2005-07-08T06:01:56Z 4290 585 2005-07-13T11:24:56Z 1 2020-02-15T06:59:39Z +4580 2005-07-08T06:04:23Z 3512 199 2005-07-15T05:42:23Z 2 2020-02-15T06:59:39Z +4581 2005-07-08T06:05:06Z 887 591 2005-07-16T00:54:06Z 1 2020-02-15T06:59:39Z +4582 2005-07-08T06:09:09Z 688 274 2005-07-14T02:23:09Z 1 2020-02-15T06:59:39Z +4583 2005-07-08T06:09:44Z 4151 365 2005-07-12T03:44:44Z 1 2020-02-15T06:59:39Z +4584 2005-07-08T06:11:02Z 2322 368 2005-07-11T05:14:02Z 1 2020-02-15T06:59:39Z +4585 2005-07-08T06:11:58Z 1622 143 2005-07-17T01:58:58Z 1 2020-02-15T06:59:39Z +4586 2005-07-08T06:12:33Z 1374 461 2005-07-13T11:06:33Z 2 2020-02-15T06:59:39Z +4587 2005-07-08T06:16:26Z 3502 63 2005-07-13T00:59:26Z 1 2020-02-15T06:59:39Z +4588 2005-07-08T06:18:01Z 3629 198 2005-07-10T08:59:01Z 1 2020-02-15T06:59:39Z +4589 2005-07-08T06:26:04Z 1192 99 2005-07-09T10:31:04Z 2 2020-02-15T06:59:39Z +4590 2005-07-08T06:27:48Z 4233 580 2005-07-14T07:46:48Z 1 2020-02-15T06:59:39Z +4591 2005-07-08T06:29:43Z 2276 182 2005-07-17T07:20:43Z 1 2020-02-15T06:59:39Z +4592 2005-07-08T06:31:28Z 2141 235 2005-07-10T06:08:28Z 2 2020-02-15T06:59:39Z +4593 2005-07-08T06:38:12Z 2897 528 2005-07-16T10:48:12Z 2 2020-02-15T06:59:39Z +4594 2005-07-08T06:40:06Z 26 506 2005-07-16T05:51:06Z 2 2020-02-15T06:59:39Z +4595 2005-07-08T06:40:25Z 760 336 2005-07-14T08:54:25Z 1 2020-02-15T06:59:39Z +4596 2005-07-08T06:41:25Z 2280 306 2005-07-14T01:36:25Z 1 2020-02-15T06:59:39Z +4597 2005-07-08T06:43:42Z 3767 545 2005-07-13T01:32:42Z 1 2020-02-15T06:59:39Z +4598 2005-07-08T06:46:26Z 258 82 2005-07-16T01:21:26Z 1 2020-02-15T06:59:39Z +4599 2005-07-08T06:48:26Z 2098 356 2005-07-11T07:06:26Z 1 2020-02-15T06:59:39Z +4600 2005-07-08T06:48:37Z 1526 457 2005-07-15T10:11:37Z 1 2020-02-15T06:59:39Z +4601 2005-07-08T06:49:10Z 3184 572 2005-07-09T07:43:10Z 1 2020-02-15T06:59:39Z +4602 2005-07-08T06:52:40Z 3616 129 2005-07-10T06:30:40Z 1 2020-02-15T06:59:39Z +4603 2005-07-08T06:57:07Z 755 334 2005-07-17T04:32:07Z 1 2020-02-15T06:59:39Z +4604 2005-07-08T06:58:43Z 4230 402 2005-07-14T06:41:43Z 1 2020-02-15T06:59:39Z +4605 2005-07-08T07:00:14Z 1139 523 2005-07-16T08:38:14Z 1 2020-02-15T06:59:39Z +4606 2005-07-08T07:05:50Z 1946 502 2005-07-16T09:11:50Z 2 2020-02-15T06:59:39Z +4607 2005-07-08T07:15:14Z 1193 281 2005-07-11T01:32:14Z 1 2020-02-15T06:59:39Z +4608 2005-07-08T07:19:11Z 758 11 2005-07-11T01:37:11Z 1 2020-02-15T06:59:39Z +4609 2005-07-08T07:22:29Z 3711 573 2005-07-10T08:06:29Z 1 2020-02-15T06:59:39Z +4610 2005-07-08T07:28:05Z 1279 265 2005-07-14T02:10:05Z 1 2020-02-15T06:59:39Z +4611 2005-07-08T07:33:56Z 3486 1 2005-07-12T13:25:56Z 2 2020-02-15T06:59:39Z +4612 2005-07-08T07:40:44Z 82 371 2005-07-12T03:48:44Z 1 2020-02-15T06:59:39Z +4613 2005-07-08T07:44:49Z 476 581 2005-07-09T04:47:49Z 1 2020-02-15T06:59:39Z +4614 2005-07-08T07:45:17Z 2579 71 2005-07-12T02:10:17Z 2 2020-02-15T06:59:39Z +4615 2005-07-08T07:46:53Z 1200 404 2005-07-16T12:43:53Z 2 2020-02-15T06:59:39Z +4616 2005-07-08T07:48:12Z 2580 280 2005-07-10T08:13:12Z 2 2020-02-15T06:59:39Z +4617 2005-07-08T07:55:08Z 3784 475 2005-07-17T02:49:08Z 2 2020-02-15T06:59:39Z +4618 2005-07-08T08:00:20Z 3691 179 2005-07-14T05:59:20Z 1 2020-02-15T06:59:39Z +4619 2005-07-08T08:01:09Z 2127 579 2005-07-16T05:52:09Z 2 2020-02-15T06:59:39Z +4620 2005-07-08T08:01:44Z 3467 210 2005-07-16T07:43:44Z 2 2020-02-15T06:59:39Z +4621 2005-07-08T08:02:18Z 1594 297 2005-07-12T08:53:18Z 2 2020-02-15T06:59:39Z +4622 2005-07-08T08:02:42Z 2710 289 2005-07-10T07:46:42Z 2 2020-02-15T06:59:39Z +4623 2005-07-08T08:03:22Z 4171 593 2005-07-12T09:11:22Z 2 2020-02-15T06:59:39Z +4624 2005-07-08T08:12:17Z 1548 341 2005-07-15T12:24:17Z 2 2020-02-15T06:59:39Z +4625 2005-07-08T08:14:26Z 318 473 2005-07-09T03:45:26Z 1 2020-02-15T06:59:39Z +4626 2005-07-08T08:18:21Z 37 268 2005-07-10T11:36:21Z 1 2020-02-15T06:59:39Z +4627 2005-07-08T08:24:39Z 2383 78 2005-07-13T11:04:39Z 2 2020-02-15T06:59:39Z +4628 2005-07-08T08:25:52Z 1888 540 2005-07-10T11:22:52Z 1 2020-02-15T06:59:39Z +4629 2005-07-08T08:31:26Z 228 563 2005-07-17T12:07:26Z 1 2020-02-15T06:59:39Z +4630 2005-07-08T08:33:38Z 3446 319 2005-07-09T13:09:38Z 2 2020-02-15T06:59:39Z +4631 2005-07-08T08:38:22Z 470 59 2005-07-11T03:33:22Z 2 2020-02-15T06:59:39Z +4632 2005-07-08T08:38:57Z 4330 393 2005-07-15T09:33:57Z 1 2020-02-15T06:59:39Z +4633 2005-07-08T08:39:39Z 3178 348 2005-07-15T10:23:39Z 1 2020-02-15T06:59:39Z +4634 2005-07-08T08:40:02Z 811 275 2005-07-12T04:45:02Z 2 2020-02-15T06:59:39Z +4635 2005-07-08T08:42:40Z 2434 65 2005-07-14T10:31:40Z 1 2020-02-15T06:59:39Z +4636 2005-07-08T08:44:32Z 1858 228 2005-07-10T08:59:32Z 2 2020-02-15T06:59:39Z +4637 2005-07-08T08:49:54Z 1917 263 2005-07-11T13:12:54Z 2 2020-02-15T06:59:39Z +4638 2005-07-08T08:57:20Z 2240 305 2005-07-10T05:08:20Z 2 2020-02-15T06:59:39Z +4639 2005-07-08T08:57:21Z 2459 75 2005-07-14T11:22:21Z 2 2020-02-15T06:59:39Z +4640 2005-07-08T08:59:34Z 1147 506 2005-07-15T03:31:34Z 1 2020-02-15T06:59:39Z +4641 2005-07-08T09:09:46Z 2436 26 2005-07-17T03:54:46Z 2 2020-02-15T06:59:39Z +4642 2005-07-08T09:13:28Z 1962 30 2005-07-10T06:17:28Z 2 2020-02-15T06:59:39Z +4643 2005-07-08T09:13:56Z 239 436 2005-07-10T12:09:56Z 2 2020-02-15T06:59:39Z +4644 2005-07-08T09:14:29Z 3239 38 2005-07-10T07:20:29Z 2 2020-02-15T06:59:39Z +4645 2005-07-08T09:20:09Z 687 400 2005-07-09T06:07:09Z 2 2020-02-15T06:59:39Z +4646 2005-07-08T09:23:26Z 618 362 2005-07-16T04:03:26Z 1 2020-02-15T06:59:39Z +4647 2005-07-08T09:27:36Z 674 312 2005-07-16T14:56:36Z 2 2020-02-15T06:59:39Z +4648 2005-07-08T09:31:27Z 3490 444 2005-07-13T03:55:27Z 2 2020-02-15T06:59:39Z +4649 2005-07-08T09:32:05Z 1116 221 2005-07-15T08:37:05Z 2 2020-02-15T06:59:39Z +4650 2005-07-08T09:32:08Z 2850 108 2005-07-15T15:20:08Z 1 2020-02-15T06:59:39Z +4651 2005-07-08T09:39:39Z 4064 557 2005-07-09T12:14:39Z 2 2020-02-15T06:59:39Z +4652 2005-07-08T09:47:51Z 4198 127 2005-07-16T04:09:51Z 2 2020-02-15T06:59:39Z +4653 2005-07-08T09:48:01Z 2511 404 2005-07-17T05:18:01Z 1 2020-02-15T06:59:39Z +4654 2005-07-08T09:48:03Z 4210 434 2005-07-17T13:17:03Z 1 2020-02-15T06:59:39Z +4655 2005-07-08T09:49:22Z 4078 213 2005-07-15T13:08:22Z 1 2020-02-15T06:59:39Z +4656 2005-07-08T09:50:10Z 839 141 2005-07-13T15:00:10Z 1 2020-02-15T06:59:39Z +4657 2005-07-08T09:51:02Z 1002 54 2005-07-09T09:29:02Z 2 2020-02-15T06:59:39Z +4658 2005-07-08T09:51:11Z 3131 166 2005-07-10T12:30:11Z 2 2020-02-15T06:59:39Z +4659 2005-07-08T09:53:28Z 4389 425 2005-07-14T14:56:28Z 2 2020-02-15T06:59:39Z +4660 2005-07-08T09:54:47Z 1208 139 2005-07-11T15:19:47Z 2 2020-02-15T06:59:39Z +4661 2005-07-08T09:55:06Z 2641 518 2005-07-11T08:26:06Z 1 2020-02-15T06:59:39Z +4662 2005-07-08T09:58:54Z 1370 553 2005-07-10T12:51:54Z 1 2020-02-15T06:59:39Z +4663 2005-07-08T09:59:18Z 2959 139 2005-07-10T11:25:18Z 1 2020-02-15T06:59:39Z +4664 2005-07-08T10:01:28Z 1318 546 2005-07-12T10:37:28Z 2 2020-02-15T06:59:39Z +4665 2005-07-08T10:04:24Z 575 106 2005-07-14T15:13:24Z 1 2020-02-15T06:59:39Z +4666 2005-07-08T10:05:02Z 4576 120 2005-07-16T07:28:02Z 1 2020-02-15T06:59:39Z +4667 2005-07-08T10:06:26Z 3348 485 2005-07-14T04:48:26Z 1 2020-02-15T06:59:39Z +4668 2005-07-08T10:11:45Z 3971 481 2005-07-17T13:01:45Z 2 2020-02-15T06:59:39Z +4669 2005-07-08T10:13:08Z 3494 581 2005-07-16T07:52:08Z 1 2020-02-15T06:59:39Z +4670 2005-07-08T10:14:18Z 3317 153 2005-07-16T15:10:18Z 2 2020-02-15T06:59:39Z +4671 2005-07-08T10:15:32Z 2139 55 2005-07-14T08:19:32Z 2 2020-02-15T06:59:39Z +4672 2005-07-08T10:15:38Z 1922 18 2005-07-16T05:06:38Z 1 2020-02-15T06:59:39Z +4673 2005-07-08T10:16:00Z 2792 91 2005-07-17T10:03:00Z 2 2020-02-15T06:59:39Z +4674 2005-07-08T10:19:28Z 1617 329 2005-07-12T12:54:28Z 2 2020-02-15T06:59:39Z +4675 2005-07-08T10:24:22Z 1309 380 2005-07-14T11:09:22Z 1 2020-02-15T06:59:39Z +4676 2005-07-08T10:26:02Z 2590 302 2005-07-10T13:38:02Z 2 2020-02-15T06:59:39Z +4677 2005-07-08T10:30:36Z 1226 258 2005-07-14T12:40:36Z 1 2020-02-15T06:59:39Z +4678 2005-07-08T10:30:40Z 241 219 2005-07-13T11:08:40Z 1 2020-02-15T06:59:39Z +4679 2005-07-08T10:33:14Z 3610 423 2005-07-15T14:30:14Z 2 2020-02-15T06:59:39Z +4680 2005-07-08T10:35:28Z 4043 227 2005-07-14T08:42:28Z 1 2020-02-15T06:59:39Z +4681 2005-07-08T10:36:03Z 1025 133 2005-07-16T09:21:03Z 2 2020-02-15T06:59:39Z +4682 2005-07-08T10:38:27Z 873 263 2005-07-11T06:29:27Z 2 2020-02-15T06:59:39Z +4683 2005-07-08T10:38:28Z 3464 283 2005-07-09T12:07:28Z 1 2020-02-15T06:59:39Z +4684 2005-07-08T10:41:06Z 503 585 2005-07-17T10:35:06Z 1 2020-02-15T06:59:39Z +4685 2005-07-08T10:45:13Z 602 590 2005-07-12T08:29:13Z 1 2020-02-15T06:59:39Z +4686 2005-07-08T10:53:39Z 1398 234 2005-07-10T05:34:39Z 2 2020-02-15T06:59:39Z +4687 2005-07-08T10:54:19Z 1156 169 2005-07-10T08:00:19Z 2 2020-02-15T06:59:39Z +4688 2005-07-08T11:03:29Z 3574 80 2005-07-17T15:41:29Z 2 2020-02-15T06:59:39Z +4689 2005-07-08T11:03:47Z 2519 364 2005-07-16T06:07:47Z 2 2020-02-15T06:59:39Z +4690 2005-07-08T11:04:02Z 3304 64 2005-07-15T10:27:02Z 2 2020-02-15T06:59:39Z +4691 2005-07-08T11:04:53Z 596 126 2005-07-09T07:48:53Z 1 2020-02-15T06:59:39Z +4692 2005-07-08T11:07:06Z 1490 288 2005-07-09T14:08:06Z 1 2020-02-15T06:59:39Z +4693 2005-07-08T11:07:36Z 1694 221 2005-07-14T08:40:36Z 1 2020-02-15T06:59:39Z +4694 2005-07-08T11:07:37Z 3637 229 2005-07-12T06:53:37Z 2 2020-02-15T06:59:39Z +4695 2005-07-08T11:07:59Z 805 39 2005-07-17T16:35:59Z 1 2020-02-15T06:59:39Z +4696 2005-07-08T11:12:27Z 1358 424 2005-07-14T05:41:27Z 1 2020-02-15T06:59:39Z +4697 2005-07-08T11:19:14Z 4143 224 2005-07-12T07:14:14Z 2 2020-02-15T06:59:39Z +4698 2005-07-08T11:19:31Z 3963 570 2005-07-13T13:45:31Z 2 2020-02-15T06:59:39Z +4699 2005-07-08T11:36:56Z 2462 348 2005-07-14T11:35:56Z 2 2020-02-15T06:59:39Z +4700 2005-07-08T11:37:21Z 3889 317 2005-07-12T15:41:21Z 1 2020-02-15T06:59:39Z +4701 2005-07-08T11:38:48Z 3012 522 2005-07-13T15:59:48Z 2 2020-02-15T06:59:39Z +4702 2005-07-08T11:41:36Z 2593 56 2005-07-10T06:55:36Z 1 2020-02-15T06:59:39Z +4703 2005-07-08T11:44:56Z 2859 544 2005-07-13T09:17:56Z 1 2020-02-15T06:59:39Z +4704 2005-07-08T11:45:35Z 2291 28 2005-07-10T09:46:35Z 1 2020-02-15T06:59:39Z +4705 2005-07-08T11:50:38Z 3709 85 2005-07-12T15:58:38Z 2 2020-02-15T06:59:39Z +4706 2005-07-08T11:51:41Z 2512 380 2005-07-17T12:58:41Z 1 2020-02-15T06:59:39Z +4707 2005-07-08T11:57:28Z 52 286 2005-07-10T17:47:28Z 1 2020-02-15T06:59:39Z +4708 2005-07-08T11:59:19Z 3249 212 2005-07-17T07:11:19Z 2 2020-02-15T06:59:39Z +4709 2005-07-08T12:04:34Z 3964 124 2005-07-15T06:48:34Z 1 2020-02-15T06:59:39Z +4710 2005-07-08T12:04:53Z 248 590 2005-07-13T11:28:53Z 2 2020-02-15T06:59:39Z +4711 2005-07-08T12:06:58Z 2327 563 2005-07-12T08:37:58Z 1 2020-02-15T06:59:39Z +4712 2005-07-08T12:10:50Z 2371 39 2005-07-17T14:54:50Z 2 2020-02-15T06:59:39Z +4713 2005-07-08T12:12:33Z 1399 207 2005-07-16T17:13:33Z 1 2020-02-15T06:59:39Z +4714 2005-07-08T12:12:48Z 1932 385 2005-07-17T08:43:48Z 2 2020-02-15T06:59:39Z +4715 2005-07-08T12:15:37Z 4010 276 2005-07-10T10:37:37Z 2 2020-02-15T06:59:39Z +4716 2005-07-08T12:18:51Z 1923 391 2005-07-11T11:06:51Z 2 2020-02-15T06:59:39Z +4717 2005-07-08T12:22:43Z 1491 453 2005-07-11T10:24:43Z 2 2020-02-15T06:59:39Z +4718 2005-07-08T12:32:08Z 1653 535 2005-07-17T17:34:08Z 2 2020-02-15T06:59:39Z +4719 2005-07-08T12:33:00Z 1315 556 2005-07-15T12:30:00Z 1 2020-02-15T06:59:39Z +4720 2005-07-08T12:34:34Z 2669 452 2005-07-09T10:28:34Z 1 2020-02-15T06:59:39Z +4721 2005-07-08T12:39:31Z 3105 234 2005-07-15T18:07:31Z 1 2020-02-15T06:59:39Z +4722 2005-07-08T12:42:27Z 3738 590 2005-07-09T09:14:27Z 2 2020-02-15T06:59:39Z +4723 2005-07-08T12:44:59Z 965 44 2005-07-17T07:22:59Z 2 2020-02-15T06:59:39Z +4724 2005-07-08T12:46:30Z 3375 18 2005-07-14T12:39:30Z 1 2020-02-15T06:59:39Z +4725 2005-07-08T12:47:11Z 2058 3 2005-07-15T09:08:11Z 2 2020-02-15T06:59:39Z +4726 2005-07-08T12:50:54Z 4369 144 2005-07-17T07:09:54Z 2 2020-02-15T06:59:39Z +4727 2005-07-08T12:54:15Z 1251 39 2005-07-17T14:32:15Z 2 2020-02-15T06:59:39Z +4728 2005-07-08T12:59:01Z 3687 462 2005-07-13T13:00:01Z 1 2020-02-15T06:59:39Z +4729 2005-07-08T12:59:40Z 1429 205 2005-07-10T13:35:40Z 2 2020-02-15T06:59:39Z +4730 2005-07-08T12:59:49Z 1619 126 2005-07-14T16:15:49Z 2 2020-02-15T06:59:39Z +4731 2005-07-08T13:08:18Z 4124 241 2005-07-09T13:16:18Z 2 2020-02-15T06:59:39Z +4732 2005-07-08T13:09:45Z 308 562 2005-07-14T10:10:45Z 1 2020-02-15T06:59:39Z +4733 2005-07-08T13:12:07Z 2230 93 2005-07-13T07:34:07Z 1 2020-02-15T06:59:39Z +4734 2005-07-08T13:12:12Z 1928 546 2005-07-10T09:01:12Z 2 2020-02-15T06:59:39Z +4735 2005-07-08T13:12:27Z 4324 381 2005-07-13T10:06:27Z 2 2020-02-15T06:59:39Z +4736 2005-07-08T13:22:55Z 3009 79 2005-07-17T07:27:55Z 1 2020-02-15T06:59:39Z +4737 2005-07-08T13:23:53Z 4286 116 2005-07-12T18:49:53Z 1 2020-02-15T06:59:39Z +4738 2005-07-08T13:24:58Z 2021 31 2005-07-17T17:44:58Z 2 2020-02-15T06:59:39Z +4739 2005-07-08T13:25:57Z 140 197 2005-07-11T17:36:57Z 1 2020-02-15T06:59:39Z +4740 2005-07-08T13:30:35Z 2559 379 2005-07-14T18:43:35Z 1 2020-02-15T06:59:39Z +4741 2005-07-08T13:31:23Z 516 260 2005-07-17T12:02:23Z 2 2020-02-15T06:59:39Z +4742 2005-07-08T13:35:23Z 3022 340 2005-07-11T10:24:23Z 2 2020-02-15T06:59:39Z +4743 2005-07-08T13:42:36Z 80 535 2005-07-11T18:54:36Z 2 2020-02-15T06:59:39Z +4744 2005-07-08T13:43:57Z 2948 507 2005-07-12T09:21:57Z 2 2020-02-15T06:59:39Z +4745 2005-07-08T13:45:09Z 1351 354 2005-07-12T18:54:09Z 1 2020-02-15T06:59:39Z +4746 2005-07-08T13:47:55Z 173 148 2005-07-11T09:06:55Z 2 2020-02-15T06:59:39Z +4747 2005-07-08T13:53:01Z 3942 383 2005-07-12T17:10:01Z 2 2020-02-15T06:59:39Z +4748 2005-07-08T13:59:38Z 4279 9 2005-07-15T16:51:38Z 1 2020-02-15T06:59:39Z +4749 2005-07-08T14:05:58Z 1190 236 2005-07-10T18:35:58Z 2 2020-02-15T06:59:39Z +4750 2005-07-08T14:07:03Z 3383 198 2005-07-13T18:05:03Z 1 2020-02-15T06:59:40Z +4751 2005-07-08T14:07:52Z 3469 436 2005-07-13T10:37:52Z 2 2020-02-15T06:59:40Z +4752 2005-07-08T14:15:20Z 3250 512 2005-07-12T13:22:20Z 1 2020-02-15T06:59:40Z +4753 2005-07-08T14:18:41Z 1642 391 2005-07-09T10:00:41Z 2 2020-02-15T06:59:40Z +4754 2005-07-08T14:20:01Z 3177 108 2005-07-11T11:50:01Z 1 2020-02-15T06:59:40Z +4755 2005-07-08T14:23:41Z 661 378 2005-07-10T19:35:41Z 1 2020-02-15T06:59:40Z +4756 2005-07-08T14:24:00Z 3068 351 2005-07-12T16:16:00Z 1 2020-02-15T06:59:40Z +4757 2005-07-08T14:36:51Z 1278 504 2005-07-12T15:28:51Z 1 2020-02-15T06:59:40Z +4758 2005-07-08T14:38:02Z 3698 288 2005-07-13T12:09:02Z 2 2020-02-15T06:59:40Z +4759 2005-07-08T14:39:22Z 3999 284 2005-07-17T15:02:22Z 2 2020-02-15T06:59:40Z +4760 2005-07-08T14:48:07Z 3718 177 2005-07-10T12:41:07Z 2 2020-02-15T06:59:40Z +4761 2005-07-08T14:51:45Z 3556 351 2005-07-14T20:28:45Z 1 2020-02-15T06:59:40Z +4762 2005-07-08T14:54:42Z 390 36 2005-07-12T18:08:42Z 1 2020-02-15T06:59:40Z +4763 2005-07-08T14:57:32Z 899 465 2005-07-15T10:00:32Z 2 2020-02-15T06:59:40Z +4764 2005-07-08T15:01:25Z 1188 89 2005-07-17T15:16:25Z 1 2020-02-15T06:59:40Z +4765 2005-07-08T15:08:45Z 469 437 2005-07-13T10:44:45Z 1 2020-02-15T06:59:40Z +4766 2005-07-08T15:16:04Z 1057 149 2005-07-15T11:04:04Z 2 2020-02-15T06:59:40Z +4767 2005-07-08T15:18:53Z 3744 350 2005-07-13T15:48:53Z 1 2020-02-15T06:59:40Z +4768 2005-07-08T15:28:20Z 2787 482 2005-07-09T11:46:20Z 1 2020-02-15T06:59:40Z +4769 2005-07-08T15:29:16Z 3462 501 2005-07-09T18:42:16Z 2 2020-02-15T06:59:40Z +4770 2005-07-08T15:29:46Z 2406 573 2005-07-14T13:31:46Z 1 2020-02-15T06:59:40Z +4771 2005-07-08T15:33:32Z 1060 32 2005-07-10T12:38:32Z 1 2020-02-15T06:59:40Z +4772 2005-07-08T15:41:11Z 2156 486 2005-07-17T15:25:11Z 1 2020-02-15T06:59:40Z +4773 2005-07-08T15:41:39Z 3025 519 2005-07-13T18:16:39Z 1 2020-02-15T06:59:40Z +4774 2005-07-08T15:42:28Z 673 489 2005-07-16T18:29:28Z 2 2020-02-15T06:59:40Z +4775 2005-07-08T15:44:05Z 4277 595 2005-07-11T20:39:05Z 2 2020-02-15T06:59:40Z +4776 2005-07-08T15:44:20Z 2598 563 2005-07-17T10:50:20Z 2 2020-02-15T06:59:40Z +4777 2005-07-08T15:48:34Z 449 102 2005-07-16T15:25:34Z 1 2020-02-15T06:59:40Z +4778 2005-07-08T15:51:51Z 611 78 2005-07-12T16:58:51Z 2 2020-02-15T06:59:40Z +4779 2005-07-08T15:53:41Z 1321 338 2005-07-15T20:30:41Z 1 2020-02-15T06:59:40Z +4780 2005-07-08T16:06:51Z 2740 115 2005-07-13T18:34:51Z 1 2020-02-15T06:59:40Z +4781 2005-07-08T16:06:55Z 1818 593 2005-07-16T11:22:55Z 2 2020-02-15T06:59:40Z +4782 2005-07-08T16:08:51Z 445 436 2005-07-17T17:56:51Z 1 2020-02-15T06:59:40Z +4783 2005-07-08T16:09:24Z 3952 214 2005-07-16T21:53:24Z 2 2020-02-15T06:59:40Z +4784 2005-07-08T16:09:56Z 549 182 2005-07-09T20:35:56Z 1 2020-02-15T06:59:40Z +4785 2005-07-08T16:10:19Z 58 474 2005-07-11T18:52:19Z 1 2020-02-15T06:59:40Z +4786 2005-07-08T16:13:05Z 2724 294 2005-07-16T15:29:05Z 1 2020-02-15T06:59:40Z +4787 2005-07-08T16:16:04Z 3929 7 2005-07-14T18:02:04Z 2 2020-02-15T06:59:40Z +4788 2005-07-08T16:17:35Z 691 533 2005-07-11T11:56:35Z 2 2020-02-15T06:59:40Z +4789 2005-07-08T16:22:01Z 20 73 2005-07-15T18:29:01Z 2 2020-02-15T06:59:40Z +4790 2005-07-08T16:25:27Z 100 500 2005-07-11T11:35:27Z 1 2020-02-15T06:59:40Z +4791 2005-07-08T16:27:24Z 2505 393 2005-07-14T21:50:24Z 2 2020-02-15T06:59:40Z +4792 2005-07-08T16:29:38Z 2132 147 2005-07-10T16:31:38Z 2 2020-02-15T06:59:40Z +4793 2005-07-08T16:30:01Z 3090 427 2005-07-15T17:56:01Z 1 2020-02-15T06:59:40Z +4794 2005-07-08T16:30:11Z 2497 451 2005-07-17T12:41:11Z 2 2020-02-15T06:59:40Z +4795 2005-07-08T16:32:54Z 3409 497 2005-07-09T14:15:54Z 1 2020-02-15T06:59:40Z +4796 2005-07-08T16:35:44Z 2484 9 2005-07-13T11:08:44Z 2 2020-02-15T06:59:40Z +4797 2005-07-08T16:39:05Z 1389 265 2005-07-09T11:41:05Z 1 2020-02-15T06:59:40Z +4798 2005-07-08T16:45:16Z 3874 212 2005-07-16T13:45:16Z 2 2020-02-15T06:59:40Z +4799 2005-07-08T16:49:27Z 4112 512 2005-07-12T19:58:27Z 2 2020-02-15T06:59:40Z +4800 2005-07-08T16:51:08Z 1940 99 2005-07-13T14:16:08Z 2 2020-02-15T06:59:40Z +4801 2005-07-08T16:51:36Z 761 431 2005-07-13T17:23:36Z 1 2020-02-15T06:59:40Z +4802 2005-07-08T16:55:17Z 22 562 2005-07-15T19:34:17Z 1 2020-02-15T06:59:40Z +4803 2005-07-08T16:56:34Z 1786 174 2005-07-14T20:16:34Z 1 2020-02-15T06:59:40Z +4804 2005-07-08T16:57:30Z 3756 269 2005-07-10T18:25:30Z 1 2020-02-15T06:59:40Z +4805 2005-07-08T16:59:12Z 377 453 2005-07-09T15:02:12Z 1 2020-02-15T06:59:40Z +4806 2005-07-08T17:01:02Z 214 506 2005-07-15T21:41:02Z 1 2020-02-15T06:59:40Z +4807 2005-07-08T17:01:48Z 4511 348 2005-07-16T22:33:48Z 2 2020-02-15T06:59:40Z +4808 2005-07-08T17:02:49Z 2544 563 2005-07-12T22:49:49Z 2 2020-02-15T06:59:40Z +4809 2005-07-08T17:03:22Z 4251 474 2005-07-17T22:39:22Z 1 2020-02-15T06:59:40Z +4810 2005-07-08T17:04:06Z 4056 209 2005-07-09T13:41:06Z 1 2020-02-15T06:59:40Z +4811 2005-07-08T17:04:24Z 4032 127 2005-07-12T16:41:24Z 2 2020-02-15T06:59:40Z +4812 2005-07-08T17:07:11Z 3281 304 2005-07-17T21:03:11Z 2 2020-02-15T06:59:40Z +4813 2005-07-08T17:09:56Z 2752 439 2005-07-09T22:29:56Z 1 2020-02-15T06:59:40Z +4814 2005-07-08T17:11:09Z 3497 244 2005-07-17T12:43:09Z 2 2020-02-15T06:59:40Z +4815 2005-07-08T17:12:51Z 840 581 2005-07-17T13:14:51Z 1 2020-02-15T06:59:40Z +4816 2005-07-08T17:14:14Z 2700 207 2005-07-11T15:03:14Z 1 2020-02-15T06:59:40Z +4817 2005-07-08T17:17:31Z 1608 145 2005-07-09T22:32:31Z 2 2020-02-15T06:59:40Z +4818 2005-07-08T17:18:22Z 115 144 2005-07-14T14:40:22Z 1 2020-02-15T06:59:40Z +4819 2005-07-08T17:19:15Z 1342 64 2005-07-16T14:32:15Z 1 2020-02-15T06:59:40Z +4820 2005-07-08T17:25:23Z 2672 172 2005-07-17T20:32:23Z 2 2020-02-15T06:59:40Z +4821 2005-07-08T17:28:08Z 1690 172 2005-07-11T17:44:08Z 1 2020-02-15T06:59:40Z +4822 2005-07-08T17:28:47Z 3970 185 2005-07-14T13:06:47Z 1 2020-02-15T06:59:40Z +4823 2005-07-08T17:28:54Z 155 206 2005-07-11T23:10:54Z 1 2020-02-15T06:59:40Z +4824 2005-07-08T17:37:39Z 1855 225 2005-07-16T18:27:39Z 1 2020-02-15T06:59:40Z +4825 2005-07-08T17:43:01Z 2419 563 2005-07-11T20:58:01Z 1 2020-02-15T06:59:40Z +4826 2005-07-08T17:44:25Z 911 180 2005-07-16T20:14:25Z 2 2020-02-15T06:59:40Z +4827 2005-07-08T17:46:30Z 4455 110 2005-07-11T14:12:30Z 2 2020-02-15T06:59:40Z +4828 2005-07-08T17:52:29Z 1100 92 2005-07-11T14:35:29Z 1 2020-02-15T06:59:40Z +4829 2005-07-08T17:54:18Z 2661 133 2005-07-11T23:41:18Z 1 2020-02-15T06:59:40Z +4830 2005-07-08T17:56:23Z 1150 359 2005-07-17T21:40:23Z 2 2020-02-15T06:59:40Z +4831 2005-07-08T18:00:14Z 2739 243 2005-07-12T15:54:14Z 2 2020-02-15T06:59:40Z +4832 2005-07-08T18:07:05Z 1838 509 2005-07-10T19:37:05Z 2 2020-02-15T06:59:40Z +4833 2005-07-08T18:07:35Z 2921 581 2005-07-13T15:29:35Z 2 2020-02-15T06:59:40Z +4834 2005-07-08T18:07:45Z 1288 301 2005-07-14T15:27:45Z 1 2020-02-15T06:59:40Z +4835 2005-07-08T18:08:13Z 2499 95 2005-07-17T16:51:13Z 2 2020-02-15T06:59:40Z +4836 2005-07-08T18:09:08Z 2756 311 2005-07-15T20:19:08Z 1 2020-02-15T06:59:40Z +4837 2005-07-08T18:09:12Z 1944 149 2005-07-11T16:40:12Z 1 2020-02-15T06:59:40Z +4838 2005-07-08T18:11:00Z 3733 84 2005-07-17T12:57:00Z 2 2020-02-15T06:59:40Z +4839 2005-07-08T18:13:10Z 1810 556 2005-07-15T12:49:10Z 1 2020-02-15T06:59:40Z +4840 2005-07-08T18:18:16Z 1670 119 2005-07-16T14:59:16Z 1 2020-02-15T06:59:40Z +4841 2005-07-08T18:18:23Z 518 248 2005-07-11T16:51:23Z 2 2020-02-15T06:59:40Z +4842 2005-07-08T18:21:30Z 1438 160 2005-07-10T22:25:30Z 2 2020-02-15T06:59:40Z +4843 2005-07-08T18:27:28Z 3640 45 2005-07-15T00:26:28Z 2 2020-02-15T06:59:40Z +4844 2005-07-08T18:28:13Z 4057 237 2005-07-09T21:17:13Z 2 2020-02-15T06:59:40Z +4845 2005-07-08T18:28:20Z 2337 553 2005-07-09T14:38:20Z 2 2020-02-15T06:59:40Z +4846 2005-07-08T18:29:05Z 417 556 2005-07-10T22:33:05Z 2 2020-02-15T06:59:40Z +4847 2005-07-08T18:29:13Z 3397 544 2005-07-15T18:12:13Z 2 2020-02-15T06:59:40Z +4848 2005-07-08T18:30:16Z 2962 251 2005-07-12T19:53:16Z 2 2020-02-15T06:59:40Z +4849 2005-07-08T18:34:34Z 4323 146 2005-07-14T20:27:34Z 2 2020-02-15T06:59:40Z +4850 2005-07-08T18:39:31Z 3039 154 2005-07-13T00:18:31Z 2 2020-02-15T06:59:40Z +4851 2005-07-08T18:40:05Z 134 557 2005-07-12T21:46:05Z 1 2020-02-15T06:59:40Z +4852 2005-07-08T18:43:15Z 3545 418 2005-07-15T18:48:15Z 2 2020-02-15T06:59:40Z +4853 2005-07-08T18:43:18Z 1454 23 2005-07-12T14:28:18Z 2 2020-02-15T06:59:40Z +4854 2005-07-08T18:44:44Z 3644 487 2005-07-13T13:37:44Z 1 2020-02-15T06:59:40Z +4855 2005-07-08T18:45:50Z 1146 337 2005-07-11T18:23:50Z 2 2020-02-15T06:59:40Z +4856 2005-07-08T18:47:38Z 2441 7 2005-07-13T15:02:38Z 2 2020-02-15T06:59:40Z +4857 2005-07-08T18:52:07Z 2069 211 2005-07-11T22:06:07Z 1 2020-02-15T06:59:40Z +4858 2005-07-08T18:53:24Z 3424 447 2005-07-17T20:32:24Z 2 2020-02-15T06:59:40Z +4859 2005-07-08T18:54:04Z 1939 369 2005-07-13T13:04:04Z 1 2020-02-15T06:59:40Z +4860 2005-07-08T18:54:07Z 428 123 2005-07-17T15:09:07Z 2 2020-02-15T06:59:40Z +4861 2005-07-08T18:57:30Z 2984 455 2005-07-16T15:12:30Z 2 2020-02-15T06:59:40Z +4862 2005-07-08T19:02:46Z 293 291 2005-07-17T20:17:46Z 1 2020-02-15T06:59:40Z +4863 2005-07-08T19:03:15Z 1 431 2005-07-11T21:29:15Z 2 2020-02-15T06:59:40Z +4864 2005-07-08T19:05:34Z 2974 281 2005-07-17T15:05:34Z 2 2020-02-15T06:59:40Z +4865 2005-07-08T19:09:04Z 1614 418 2005-07-13T21:25:04Z 2 2020-02-15T06:59:40Z +4866 2005-07-08T19:09:59Z 4036 278 2005-07-15T00:51:59Z 2 2020-02-15T06:59:40Z +4867 2005-07-08T19:10:52Z 4090 593 2005-07-09T21:43:52Z 2 2020-02-15T06:59:40Z +4868 2005-07-08T19:13:50Z 1157 307 2005-07-14T20:59:50Z 2 2020-02-15T06:59:40Z +4869 2005-07-08T19:14:05Z 2860 376 2005-07-15T22:27:05Z 1 2020-02-15T06:59:40Z +4870 2005-07-08T19:14:45Z 3089 260 2005-07-12T18:58:45Z 2 2020-02-15T06:59:40Z +4871 2005-07-08T19:19:52Z 2509 210 2005-07-13T20:27:52Z 2 2020-02-15T06:59:40Z +4872 2005-07-08T19:23:16Z 1836 103 2005-07-10T14:17:16Z 2 2020-02-15T06:59:40Z +4873 2005-07-08T19:23:32Z 4500 473 2005-07-11T15:24:32Z 1 2020-02-15T06:59:40Z +4874 2005-07-08T19:23:38Z 2386 223 2005-07-13T14:39:38Z 2 2020-02-15T06:59:40Z +4875 2005-07-08T19:24:17Z 843 555 2005-07-11T19:15:17Z 2 2020-02-15T06:59:40Z +4876 2005-07-08T19:27:50Z 1959 283 2005-07-14T15:42:50Z 1 2020-02-15T06:59:40Z +4877 2005-07-08T19:31:02Z 1846 287 2005-07-15T19:05:02Z 1 2020-02-15T06:59:40Z +4878 2005-07-08T19:33:49Z 4009 172 2005-07-17T17:47:49Z 1 2020-02-15T06:59:40Z +4879 2005-07-08T19:34:55Z 1406 196 2005-07-09T15:53:55Z 1 2020-02-15T06:59:40Z +4880 2005-07-08T19:36:17Z 4178 269 2005-07-13T00:01:17Z 1 2020-02-15T06:59:40Z +4881 2005-07-08T19:40:34Z 4346 349 2005-07-09T17:08:34Z 2 2020-02-15T06:59:40Z +4882 2005-07-08T19:42:03Z 4540 184 2005-07-16T22:24:03Z 1 2020-02-15T06:59:40Z +4883 2005-07-08T19:46:58Z 1366 563 2005-07-10T15:48:58Z 1 2020-02-15T06:59:40Z +4884 2005-07-08T19:49:17Z 3543 425 2005-07-15T23:14:17Z 2 2020-02-15T06:59:40Z +4885 2005-07-08T19:51:17Z 442 233 2005-07-12T16:02:17Z 2 2020-02-15T06:59:40Z +4886 2005-07-08T19:53:22Z 3393 474 2005-07-09T17:05:22Z 1 2020-02-15T06:59:40Z +4887 2005-07-08T19:59:14Z 3613 543 2005-07-15T22:53:14Z 1 2020-02-15T06:59:40Z +4888 2005-07-08T20:04:27Z 1220 527 2005-07-10T14:53:27Z 2 2020-02-15T06:59:40Z +4889 2005-07-08T20:04:43Z 4463 5 2005-07-13T17:57:43Z 2 2020-02-15T06:59:40Z +4890 2005-07-08T20:05:38Z 3576 574 2005-07-14T14:55:38Z 2 2020-02-15T06:59:40Z +4891 2005-07-08T20:06:19Z 1787 59 2005-07-16T18:52:19Z 1 2020-02-15T06:59:40Z +4892 2005-07-08T20:06:25Z 3566 193 2005-07-14T20:04:25Z 1 2020-02-15T06:59:40Z +4893 2005-07-08T20:19:55Z 2060 210 2005-07-15T21:28:55Z 2 2020-02-15T06:59:40Z +4894 2005-07-08T20:21:31Z 1028 286 2005-07-11T01:59:31Z 1 2020-02-15T06:59:40Z +4895 2005-07-08T20:22:05Z 2620 242 2005-07-12T20:49:05Z 1 2020-02-15T06:59:40Z +4896 2005-07-08T20:23:15Z 3006 129 2005-07-10T15:38:15Z 1 2020-02-15T06:59:40Z +4897 2005-07-08T20:25:11Z 2950 258 2005-07-09T17:16:11Z 1 2020-02-15T06:59:40Z +4898 2005-07-08T20:31:43Z 3212 218 2005-07-15T15:58:43Z 2 2020-02-15T06:59:40Z +4899 2005-07-08T20:37:11Z 414 32 2005-07-10T21:53:11Z 1 2020-02-15T06:59:40Z +4900 2005-07-08T20:38:06Z 3487 426 2005-07-09T22:45:06Z 2 2020-02-15T06:59:40Z +4901 2005-07-08T20:44:51Z 2187 507 2005-07-10T01:04:51Z 1 2020-02-15T06:59:40Z +4902 2005-07-08T20:49:30Z 2238 554 2005-07-13T16:54:30Z 2 2020-02-15T06:59:40Z +4903 2005-07-08T20:50:05Z 1769 132 2005-07-13T15:27:05Z 1 2020-02-15T06:59:40Z +4904 2005-07-08T20:53:27Z 2051 173 2005-07-18T01:16:27Z 1 2020-02-15T06:59:40Z +4905 2005-07-08T20:56:00Z 4101 246 2005-07-12T00:19:00Z 2 2020-02-15T06:59:40Z +4906 2005-07-08T20:59:13Z 1527 490 2005-07-15T01:12:13Z 2 2020-02-15T06:59:40Z +4907 2005-07-08T21:01:41Z 1206 209 2005-07-13T02:23:41Z 2 2020-02-15T06:59:40Z +4908 2005-07-08T21:05:44Z 1963 160 2005-07-17T21:33:44Z 2 2020-02-15T06:59:40Z +4909 2005-07-08T21:07:24Z 1451 228 2005-07-10T22:34:24Z 1 2020-02-15T06:59:40Z +4910 2005-07-08T21:13:56Z 3675 219 2005-07-18T02:39:56Z 2 2020-02-15T06:59:40Z +4911 2005-07-08T21:20:26Z 4479 66 2005-07-15T03:11:26Z 1 2020-02-15T06:59:40Z +4912 2005-07-08T21:26:11Z 2012 275 2005-07-18T02:19:11Z 1 2020-02-15T06:59:40Z +4913 2005-07-08T21:27:48Z 982 368 2005-07-18T02:51:48Z 1 2020-02-15T06:59:40Z +4914 2005-07-08T21:30:53Z 298 535 2005-07-17T01:29:53Z 1 2020-02-15T06:59:40Z +4915 2005-07-08T21:31:22Z 2772 178 2005-07-13T16:45:22Z 2 2020-02-15T06:59:40Z +4916 2005-07-08T21:32:17Z 2680 212 2005-07-14T20:55:17Z 2 2020-02-15T06:59:40Z +4917 2005-07-08T21:32:30Z 3231 104 2005-07-09T15:34:30Z 1 2020-02-15T06:59:40Z +4918 2005-07-08T21:37:31Z 3819 220 2005-07-11T20:16:31Z 2 2020-02-15T06:59:40Z +4919 2005-07-08T21:41:54Z 2106 157 2005-07-11T23:14:54Z 1 2020-02-15T06:59:40Z +4920 2005-07-08T21:42:10Z 4285 239 2005-07-15T03:08:10Z 1 2020-02-15T06:59:40Z +4921 2005-07-08T21:43:21Z 425 109 2005-07-10T16:06:21Z 2 2020-02-15T06:59:40Z +4922 2005-07-08T21:44:00Z 2928 577 2005-07-10T02:58:00Z 2 2020-02-15T06:59:40Z +4923 2005-07-08T21:44:39Z 932 18 2005-07-17T15:50:39Z 2 2020-02-15T06:59:40Z +4924 2005-07-08T21:55:25Z 4344 180 2005-07-16T16:52:25Z 1 2020-02-15T06:59:40Z +4925 2005-07-08T21:56:00Z 2169 68 2005-07-14T17:17:00Z 2 2020-02-15T06:59:40Z +4926 2005-07-08T22:01:48Z 4155 415 2005-07-18T03:27:48Z 1 2020-02-15T06:59:40Z +4927 2005-07-08T22:05:35Z 2566 136 2005-07-14T23:22:35Z 2 2020-02-15T06:59:40Z +4928 2005-07-08T22:05:41Z 4363 77 2005-07-09T23:09:41Z 2 2020-02-15T06:59:40Z +4929 2005-07-08T22:06:18Z 734 297 2005-07-17T18:17:18Z 2 2020-02-15T06:59:40Z +4930 2005-07-08T22:15:48Z 2057 451 2005-07-15T21:02:48Z 2 2020-02-15T06:59:40Z +4931 2005-07-08T22:16:18Z 2750 284 2005-07-17T03:42:18Z 1 2020-02-15T06:59:40Z +4932 2005-07-08T22:17:40Z 4237 558 2005-07-15T22:13:40Z 2 2020-02-15T06:59:40Z +4933 2005-07-08T22:18:29Z 322 579 2005-07-13T03:47:29Z 2 2020-02-15T06:59:40Z +4934 2005-07-08T22:18:42Z 1744 517 2005-07-10T20:44:42Z 2 2020-02-15T06:59:40Z +4935 2005-07-08T22:20:56Z 2708 230 2005-07-12T01:01:56Z 2 2020-02-15T06:59:40Z +4936 2005-07-08T22:24:50Z 2033 298 2005-07-15T03:14:50Z 2 2020-02-15T06:59:40Z +4937 2005-07-08T22:29:59Z 33 273 2005-07-15T21:51:59Z 2 2020-02-15T06:59:40Z +4938 2005-07-08T22:32:53Z 2164 418 2005-07-14T16:48:53Z 2 2020-02-15T06:59:40Z +4939 2005-07-08T22:35:30Z 3201 425 2005-07-17T22:05:30Z 1 2020-02-15T06:59:40Z +4940 2005-07-08T22:36:06Z 971 215 2005-07-15T04:28:06Z 1 2020-02-15T06:59:40Z +4941 2005-07-08T22:39:10Z 3816 553 2005-07-15T17:49:10Z 2 2020-02-15T06:59:40Z +4942 2005-07-08T22:42:47Z 4467 120 2005-07-15T04:36:47Z 2 2020-02-15T06:59:40Z +4943 2005-07-08T22:43:05Z 2732 11 2005-07-15T18:17:05Z 2 2020-02-15T06:59:40Z +4944 2005-07-08T22:44:28Z 3648 293 2005-07-17T21:51:28Z 2 2020-02-15T06:59:40Z +4945 2005-07-08T22:45:02Z 2079 165 2005-07-11T23:59:02Z 2 2020-02-15T06:59:40Z +4946 2005-07-08T22:46:23Z 272 440 2005-07-16T17:19:23Z 1 2020-02-15T06:59:40Z +4947 2005-07-08T22:49:37Z 3905 388 2005-07-17T21:03:37Z 1 2020-02-15T06:59:40Z +4948 2005-07-08T22:54:21Z 2972 518 2005-07-17T03:52:21Z 2 2020-02-15T06:59:40Z +4949 2005-07-08T22:57:10Z 1184 567 2005-07-11T01:26:10Z 2 2020-02-15T06:59:40Z +4950 2005-07-08T22:58:07Z 3291 148 2005-07-09T20:41:07Z 2 2020-02-15T06:59:40Z +4951 2005-07-08T22:58:21Z 2766 28 2005-07-16T18:58:21Z 1 2020-02-15T06:59:40Z +4952 2005-07-08T23:00:07Z 459 14 2005-07-09T21:47:07Z 1 2020-02-15T06:59:40Z +4953 2005-07-08T23:09:48Z 2460 168 2005-07-11T02:08:48Z 2 2020-02-15T06:59:40Z +4954 2005-07-08T23:14:16Z 627 99 2005-07-14T23:23:16Z 2 2020-02-15T06:59:40Z +4955 2005-07-08T23:16:21Z 1103 225 2005-07-14T02:09:21Z 2 2020-02-15T06:59:40Z +4956 2005-07-08T23:17:10Z 1512 477 2005-07-18T00:14:10Z 1 2020-02-15T06:59:40Z +4957 2005-07-08T23:18:48Z 4082 399 2005-07-09T23:13:48Z 1 2020-02-15T06:59:40Z +4958 2005-07-08T23:19:52Z 2354 346 2005-07-17T20:31:52Z 1 2020-02-15T06:59:40Z +4959 2005-07-08T23:22:23Z 3898 236 2005-07-10T03:17:23Z 2 2020-02-15T06:59:40Z +4960 2005-07-08T23:27:16Z 2176 434 2005-07-18T02:01:16Z 1 2020-02-15T06:59:40Z +4961 2005-07-08T23:35:53Z 3668 96 2005-07-14T22:46:53Z 2 2020-02-15T06:59:40Z +4962 2005-07-08T23:36:13Z 4399 532 2005-07-15T03:39:13Z 1 2020-02-15T06:59:40Z +4963 2005-07-08T23:38:40Z 737 404 2005-07-12T05:33:40Z 2 2020-02-15T06:59:40Z +4964 2005-07-08T23:46:38Z 1033 455 2005-07-09T22:19:38Z 2 2020-02-15T06:59:40Z +4965 2005-07-08T23:46:57Z 535 432 2005-07-15T18:47:57Z 1 2020-02-15T06:59:40Z +4966 2005-07-08T23:47:25Z 4360 118 2005-07-14T03:35:25Z 1 2020-02-15T06:59:40Z +4967 2005-07-08T23:48:03Z 108 339 2005-07-15T23:51:03Z 2 2020-02-15T06:59:40Z +4968 2005-07-08T23:49:19Z 3204 390 2005-07-14T02:46:19Z 1 2020-02-15T06:59:40Z +4969 2005-07-08T23:51:26Z 4563 231 2005-07-12T03:21:26Z 2 2020-02-15T06:59:40Z +4970 2005-07-08T23:54:29Z 2983 100 2005-07-16T22:47:29Z 1 2020-02-15T06:59:40Z +4971 2005-07-08T23:54:49Z 460 64 2005-07-16T00:15:49Z 1 2020-02-15T06:59:40Z +4972 2005-07-08T23:56:09Z 2451 498 2005-07-16T19:15:09Z 1 2020-02-15T06:59:40Z +4973 2005-07-08T23:58:18Z 391 432 2005-07-14T21:42:18Z 1 2020-02-15T06:59:40Z +4974 2005-07-09T00:00:36Z 1071 152 2005-07-13T21:03:36Z 1 2020-02-15T06:59:40Z +4975 2005-07-09T00:02:46Z 3730 101 2005-07-14T18:05:46Z 2 2020-02-15T06:59:40Z +4976 2005-07-09T00:03:30Z 617 199 2005-07-10T19:05:30Z 1 2020-02-15T06:59:40Z +4977 2005-07-09T00:15:50Z 3310 584 2005-07-10T00:34:50Z 2 2020-02-15T06:59:40Z +4978 2005-07-09T00:22:02Z 2578 279 2005-07-18T04:37:02Z 1 2020-02-15T06:59:40Z +4979 2005-07-09T00:24:34Z 3447 204 2005-07-12T20:04:34Z 1 2020-02-15T06:59:40Z +4980 2005-07-09T00:26:59Z 2638 100 2005-07-14T19:42:59Z 1 2020-02-15T06:59:40Z +4981 2005-07-09T00:29:29Z 3363 399 2005-07-16T19:06:29Z 2 2020-02-15T06:59:40Z +4982 2005-07-09T00:30:52Z 249 162 2005-07-15T23:50:52Z 1 2020-02-15T06:59:40Z +4983 2005-07-09T00:34:16Z 1469 81 2005-07-17T03:21:16Z 2 2020-02-15T06:59:40Z +4984 2005-07-09T00:35:31Z 1303 214 2005-07-17T03:44:31Z 1 2020-02-15T06:59:40Z +4985 2005-07-09T00:36:02Z 2146 208 2005-07-14T04:06:02Z 2 2020-02-15T06:59:40Z +4986 2005-07-09T00:44:33Z 3517 589 2005-07-09T19:45:33Z 2 2020-02-15T06:59:40Z +4987 2005-07-09T00:45:41Z 996 277 2005-07-14T03:32:41Z 2 2020-02-15T06:59:40Z +4988 2005-07-09T00:46:14Z 2718 433 2005-07-16T01:45:14Z 2 2020-02-15T06:59:40Z +4989 2005-07-09T00:46:56Z 3326 210 2005-07-17T06:24:56Z 1 2020-02-15T06:59:40Z +4990 2005-07-09T00:48:49Z 3305 35 2005-07-10T06:36:49Z 2 2020-02-15T06:59:40Z +4991 2005-07-09T00:49:03Z 1856 540 2005-07-13T05:02:03Z 1 2020-02-15T06:59:40Z +4992 2005-07-09T00:49:37Z 2081 315 2005-07-16T02:05:37Z 1 2020-02-15T06:59:40Z +4993 2005-07-09T00:49:47Z 1740 517 2005-07-11T21:19:47Z 1 2020-02-15T06:59:40Z +4994 2005-07-09T00:54:13Z 2546 246 2005-07-09T21:02:13Z 1 2020-02-15T06:59:40Z +4995 2005-07-09T00:57:46Z 2063 247 2005-07-13T03:32:46Z 1 2020-02-15T06:59:40Z +4996 2005-07-09T00:59:46Z 4440 129 2005-07-16T01:30:46Z 2 2020-02-15T06:59:40Z +4997 2005-07-09T01:06:03Z 186 102 2005-07-18T04:21:03Z 2 2020-02-15T06:59:40Z +4998 2005-07-09T01:07:21Z 202 534 2005-07-10T05:48:21Z 2 2020-02-15T06:59:40Z +4999 2005-07-09T01:12:57Z 1797 196 2005-07-17T00:12:57Z 1 2020-02-15T06:59:40Z +5000 2005-07-09T01:16:13Z 668 146 2005-07-14T21:55:13Z 1 2020-02-15T06:59:40Z +5001 2005-07-09T01:17:04Z 2025 40 2005-07-16T03:25:04Z 2 2020-02-15T06:59:40Z +5002 2005-07-09T01:17:08Z 2388 430 2005-07-15T21:53:08Z 1 2020-02-15T06:59:40Z +5003 2005-07-09T01:19:03Z 3438 569 2005-07-10T04:28:03Z 2 2020-02-15T06:59:40Z +5004 2005-07-09T01:20:50Z 2637 382 2005-07-09T19:56:50Z 1 2020-02-15T06:59:40Z +5005 2005-07-09T01:21:44Z 3034 451 2005-07-14T20:27:44Z 1 2020-02-15T06:59:40Z +5006 2005-07-09T01:24:07Z 1277 486 2005-07-18T03:56:07Z 1 2020-02-15T06:59:40Z +5007 2005-07-09T01:26:22Z 3079 207 2005-07-12T20:48:22Z 1 2020-02-15T06:59:40Z +5008 2005-07-09T01:31:42Z 824 509 2005-07-11T22:34:42Z 2 2020-02-15T06:59:40Z +5009 2005-07-09T01:32:17Z 1539 102 2005-07-18T03:39:17Z 2 2020-02-15T06:59:40Z +5010 2005-07-09T01:33:23Z 1999 574 2005-07-14T04:00:23Z 2 2020-02-15T06:59:40Z +5011 2005-07-09T01:44:40Z 463 249 2005-07-11T00:58:40Z 2 2020-02-15T06:59:40Z +5012 2005-07-09T01:45:04Z 1456 251 2005-07-12T02:13:04Z 1 2020-02-15T06:59:40Z +5013 2005-07-09T01:46:45Z 3000 35 2005-07-16T06:57:45Z 1 2020-02-15T06:59:40Z +5014 2005-07-09T01:51:49Z 4095 334 2005-07-10T04:48:49Z 1 2020-02-15T06:59:40Z +5015 2005-07-09T01:54:24Z 1564 178 2005-07-12T20:07:24Z 1 2020-02-15T06:59:40Z +5016 2005-07-09T01:57:57Z 1871 5 2005-07-09T22:07:57Z 1 2020-02-15T06:59:40Z +5017 2005-07-09T02:00:16Z 3745 241 2005-07-14T06:28:16Z 1 2020-02-15T06:59:40Z +5018 2005-07-09T02:01:05Z 2317 541 2005-07-10T04:09:05Z 1 2020-02-15T06:59:40Z +5019 2005-07-09T02:04:32Z 3534 295 2005-07-15T07:01:32Z 2 2020-02-15T06:59:40Z +5020 2005-07-09T02:07:56Z 4113 565 2005-07-09T23:59:56Z 1 2020-02-15T06:59:40Z +5021 2005-07-09T02:09:41Z 3445 73 2005-07-13T05:47:41Z 1 2020-02-15T06:59:40Z +5022 2005-07-09T02:10:54Z 928 499 2005-07-17T08:07:54Z 2 2020-02-15T06:59:40Z +5023 2005-07-09T02:23:16Z 3206 358 2005-07-15T20:37:16Z 1 2020-02-15T06:59:40Z +5024 2005-07-09T02:25:12Z 2987 335 2005-07-12T03:15:12Z 1 2020-02-15T06:59:40Z +5025 2005-07-09T02:28:24Z 153 91 2005-07-12T04:43:24Z 2 2020-02-15T06:59:40Z +5026 2005-07-09T02:32:34Z 989 463 2005-07-13T04:39:34Z 2 2020-02-15T06:59:40Z +5027 2005-07-09T02:32:37Z 2179 109 2005-07-16T23:13:37Z 1 2020-02-15T06:59:40Z +5028 2005-07-09T02:34:45Z 4531 30 2005-07-14T20:45:45Z 2 2020-02-15T06:59:40Z +5029 2005-07-09T02:35:32Z 3938 265 2005-07-17T22:46:32Z 1 2020-02-15T06:59:40Z +5030 2005-07-09T02:35:43Z 25 497 2005-07-17T02:05:43Z 1 2020-02-15T06:59:40Z +5031 2005-07-09T02:36:37Z 4224 312 2005-07-14T03:09:37Z 2 2020-02-15T06:59:40Z +5032 2005-07-09T02:39:47Z 2257 333 2005-07-10T07:45:47Z 1 2020-02-15T06:59:40Z +5033 2005-07-09T02:42:01Z 2841 299 2005-07-14T00:29:01Z 1 2020-02-15T06:59:40Z +5034 2005-07-09T02:48:15Z 340 148 2005-07-11T23:13:15Z 2 2020-02-15T06:59:40Z +5035 2005-07-09T02:51:34Z 3699 99 2005-07-16T21:38:34Z 1 2020-02-15T06:59:40Z +5036 2005-07-09T02:58:41Z 75 573 2005-07-17T04:09:41Z 1 2020-02-15T06:59:40Z +5037 2005-07-09T02:59:10Z 435 524 2005-07-15T07:54:10Z 2 2020-02-15T06:59:40Z +5038 2005-07-09T03:12:52Z 3086 10 2005-07-17T22:27:52Z 2 2020-02-15T06:59:40Z +5039 2005-07-09T03:14:45Z 2020 268 2005-07-16T06:57:45Z 2 2020-02-15T06:59:40Z +5040 2005-07-09T03:16:34Z 2479 405 2005-07-17T01:13:34Z 2 2020-02-15T06:59:40Z +5041 2005-07-09T03:18:51Z 2711 305 2005-07-13T03:08:51Z 1 2020-02-15T06:59:40Z +5042 2005-07-09T03:20:30Z 3609 254 2005-07-15T07:22:30Z 1 2020-02-15T06:59:40Z +5043 2005-07-09T03:25:18Z 2979 369 2005-07-13T00:57:18Z 2 2020-02-15T06:59:40Z +5044 2005-07-09T03:30:25Z 1625 147 2005-07-11T02:32:25Z 2 2020-02-15T06:59:40Z +5045 2005-07-09T03:33:32Z 1041 230 2005-07-18T06:15:32Z 1 2020-02-15T06:59:40Z +5046 2005-07-09T03:34:57Z 1639 227 2005-07-17T22:36:57Z 2 2020-02-15T06:59:40Z +5047 2005-07-09T03:44:15Z 230 272 2005-07-15T09:07:15Z 2 2020-02-15T06:59:40Z +5048 2005-07-09T03:46:33Z 1271 466 2005-07-15T01:14:33Z 1 2020-02-15T06:59:40Z +5049 2005-07-09T03:54:12Z 3336 144 2005-07-11T22:39:12Z 2 2020-02-15T06:59:40Z +5050 2005-07-09T03:54:38Z 3876 337 2005-07-10T02:23:38Z 2 2020-02-15T06:59:40Z +5051 2005-07-09T03:57:53Z 4091 85 2005-07-16T08:22:53Z 2 2020-02-15T06:59:40Z +5052 2005-07-09T03:59:43Z 1884 305 2005-07-12T05:48:43Z 1 2020-02-15T06:59:40Z +5053 2005-07-09T03:59:46Z 570 295 2005-07-09T23:53:46Z 2 2020-02-15T06:59:40Z +5054 2005-07-09T04:01:02Z 4001 135 2005-07-18T05:16:02Z 2 2020-02-15T06:59:40Z +5055 2005-07-09T04:05:28Z 751 54 2005-07-14T04:26:28Z 2 2020-02-15T06:59:40Z +5056 2005-07-09T04:13:45Z 2599 526 2005-07-10T06:17:45Z 2 2020-02-15T06:59:40Z +5057 2005-07-09T04:20:29Z 1076 178 2005-07-14T23:59:29Z 1 2020-02-15T06:59:40Z +5058 2005-07-09T04:20:35Z 917 221 2005-07-18T08:09:35Z 2 2020-02-15T06:59:40Z +5059 2005-07-09T04:28:01Z 3951 396 2005-07-15T22:57:01Z 1 2020-02-15T06:59:40Z +5060 2005-07-09T04:28:03Z 4317 57 2005-07-12T07:41:03Z 2 2020-02-15T06:59:40Z +5061 2005-07-09T04:30:50Z 3893 230 2005-07-12T03:24:50Z 1 2020-02-15T06:59:40Z +5062 2005-07-09T04:36:49Z 2190 141 2005-07-10T06:26:49Z 1 2020-02-15T06:59:40Z +5063 2005-07-09T04:37:31Z 1027 133 2005-07-13T09:56:31Z 2 2020-02-15T06:59:40Z +5064 2005-07-09T04:38:51Z 373 512 2005-07-18T00:33:51Z 2 2020-02-15T06:59:40Z +5065 2005-07-09T04:42:00Z 1788 599 2005-07-12T08:55:00Z 1 2020-02-15T06:59:40Z +5066 2005-07-09T04:48:50Z 1702 169 2005-07-12T22:54:50Z 2 2020-02-15T06:59:40Z +5067 2005-07-09T04:52:35Z 1480 225 2005-07-11T23:33:35Z 2 2020-02-15T06:59:40Z +5068 2005-07-09T04:53:18Z 2937 10 2005-07-13T09:21:18Z 1 2020-02-15T06:59:40Z +5069 2005-07-09T04:56:30Z 4417 183 2005-07-13T23:53:30Z 2 2020-02-15T06:59:40Z +5070 2005-07-09T04:58:26Z 2305 407 2005-07-09T23:00:26Z 2 2020-02-15T06:59:40Z +5071 2005-07-09T05:00:39Z 4358 12 2005-07-09T23:08:39Z 1 2020-02-15T06:59:40Z +5072 2005-07-09T05:01:58Z 94 254 2005-07-18T08:17:58Z 2 2020-02-15T06:59:40Z +5073 2005-07-09T05:02:35Z 546 408 2005-07-15T01:22:35Z 2 2020-02-15T06:59:40Z +5074 2005-07-09T05:06:24Z 1379 12 2005-07-12T04:37:24Z 1 2020-02-15T06:59:40Z +5075 2005-07-09T05:12:07Z 903 170 2005-07-12T08:29:07Z 1 2020-02-15T06:59:40Z +5076 2005-07-09T05:13:22Z 4388 574 2005-07-16T09:11:22Z 1 2020-02-15T06:59:40Z +5077 2005-07-09T05:18:01Z 686 574 2005-07-17T10:39:01Z 2 2020-02-15T06:59:40Z +5078 2005-07-09T05:20:24Z 1994 78 2005-07-13T06:41:24Z 2 2020-02-15T06:59:40Z +5079 2005-07-09T05:20:40Z 3948 566 2005-07-17T00:06:40Z 1 2020-02-15T06:59:40Z +5080 2005-07-09T05:23:55Z 635 254 2005-07-11T05:56:55Z 2 2020-02-15T06:59:40Z +5081 2005-07-09T05:25:20Z 1953 420 2005-07-13T23:45:20Z 1 2020-02-15T06:59:40Z +5082 2005-07-09T05:28:38Z 1584 470 2005-07-10T02:46:38Z 2 2020-02-15T06:59:40Z +5083 2005-07-09T05:30:32Z 148 494 2005-07-11T02:20:32Z 1 2020-02-15T06:59:40Z +5084 2005-07-09T05:33:27Z 3113 87 2005-07-17T08:54:27Z 2 2020-02-15T06:59:40Z +5085 2005-07-09T05:36:49Z 4164 437 2005-07-13T09:26:49Z 1 2020-02-15T06:59:40Z +5086 2005-07-09T05:40:04Z 3072 539 2005-07-16T07:51:04Z 1 2020-02-15T06:59:40Z +5087 2005-07-09T05:44:28Z 3716 395 2005-07-10T02:25:28Z 2 2020-02-15T06:59:40Z +5088 2005-07-09T05:45:16Z 3324 454 2005-07-15T00:41:16Z 2 2020-02-15T06:59:40Z +5089 2005-07-09T05:45:40Z 451 289 2005-07-15T05:31:40Z 1 2020-02-15T06:59:40Z +5090 2005-07-09T05:48:22Z 1728 296 2005-07-11T06:50:22Z 2 2020-02-15T06:59:40Z +5091 2005-07-09T05:52:54Z 4572 149 2005-07-10T02:49:54Z 1 2020-02-15T06:59:40Z +5092 2005-07-09T05:57:39Z 3256 139 2005-07-12T00:45:39Z 2 2020-02-15T06:59:40Z +5093 2005-07-09T05:59:12Z 2734 597 2005-07-10T11:45:12Z 2 2020-02-15T06:59:40Z +5094 2005-07-09T05:59:47Z 4451 178 2005-07-18T05:34:47Z 2 2020-02-15T06:59:40Z +5095 2005-07-09T06:08:22Z 2788 292 2005-07-11T10:52:22Z 1 2020-02-15T06:59:40Z +5096 2005-07-09T06:08:23Z 490 231 2005-07-14T11:36:23Z 1 2020-02-15T06:59:40Z +5097 2005-07-09T06:09:51Z 3252 343 2005-07-10T03:55:51Z 2 2020-02-15T06:59:40Z +5098 2005-07-09T06:13:54Z 1772 406 2005-07-10T04:27:54Z 1 2020-02-15T06:59:40Z +5099 2005-07-09T06:14:30Z 768 393 2005-07-12T08:23:30Z 2 2020-02-15T06:59:40Z +5100 2005-07-09T06:16:03Z 3193 101 2005-07-10T10:21:03Z 1 2020-02-15T06:59:40Z +5101 2005-07-09T06:21:29Z 2737 154 2005-07-11T02:58:29Z 1 2020-02-15T06:59:40Z +5102 2005-07-09T06:25:48Z 242 316 2005-07-16T11:32:48Z 2 2020-02-15T06:59:40Z +5103 2005-07-09T06:34:40Z 2390 397 2005-07-10T03:44:40Z 2 2020-02-15T06:59:40Z +5104 2005-07-09T06:37:07Z 2109 14 2005-07-14T12:32:07Z 1 2020-02-15T06:59:40Z +5105 2005-07-09T06:38:59Z 2555 290 2005-07-17T03:06:59Z 2 2020-02-15T06:59:40Z +5106 2005-07-09T06:40:24Z 110 137 2005-07-13T10:28:24Z 1 2020-02-15T06:59:40Z +5107 2005-07-09T06:42:32Z 1697 21 2005-07-10T08:21:32Z 2 2020-02-15T06:59:40Z +5108 2005-07-09T06:44:30Z 4229 30 2005-07-17T04:24:30Z 1 2020-02-15T06:59:40Z +5109 2005-07-09T06:48:49Z 2373 102 2005-07-14T01:17:49Z 1 2020-02-15T06:59:40Z +5110 2005-07-09T06:57:25Z 195 200 2005-07-12T05:39:25Z 2 2020-02-15T06:59:40Z +5111 2005-07-09T07:02:19Z 2875 12 2005-07-10T06:27:19Z 2 2020-02-15T06:59:40Z +5112 2005-07-09T07:04:04Z 3529 285 2005-07-13T08:42:04Z 1 2020-02-15T06:59:40Z +5113 2005-07-09T07:06:18Z 3618 282 2005-07-13T07:10:18Z 2 2020-02-15T06:59:40Z +5114 2005-07-09T07:07:05Z 3734 64 2005-07-15T03:06:05Z 1 2020-02-15T06:59:40Z +5115 2005-07-09T07:07:18Z 2296 212 2005-07-16T03:28:18Z 2 2020-02-15T06:59:40Z +5116 2005-07-09T07:10:12Z 2491 332 2005-07-14T09:16:12Z 2 2020-02-15T06:59:40Z +5117 2005-07-09T07:11:22Z 2284 208 2005-07-15T08:44:22Z 1 2020-02-15T06:59:40Z +5118 2005-07-09T07:13:52Z 957 5 2005-07-18T05:18:52Z 2 2020-02-15T06:59:40Z +5119 2005-07-09T07:14:18Z 2996 301 2005-07-18T04:07:18Z 1 2020-02-15T06:59:40Z +5120 2005-07-09T07:14:23Z 4431 373 2005-07-14T04:00:23Z 2 2020-02-15T06:59:40Z +5121 2005-07-09T07:18:31Z 3321 526 2005-07-15T01:48:31Z 1 2020-02-15T06:59:40Z +5122 2005-07-09T07:19:35Z 1423 261 2005-07-16T03:04:35Z 2 2020-02-15T06:59:40Z +5123 2005-07-09T07:20:30Z 4278 219 2005-07-14T05:24:30Z 1 2020-02-15T06:59:40Z +5124 2005-07-09T07:25:19Z 1857 565 2005-07-15T01:51:19Z 1 2020-02-15T06:59:40Z +5125 2005-07-09T07:25:28Z 990 263 2005-07-12T12:34:28Z 1 2020-02-15T06:59:40Z +5126 2005-07-09T07:25:35Z 3312 315 2005-07-18T05:05:35Z 1 2020-02-15T06:59:40Z +5127 2005-07-09T07:25:47Z 3649 129 2005-07-13T11:44:47Z 2 2020-02-15T06:59:40Z +5128 2005-07-09T07:25:54Z 3757 155 2005-07-16T04:04:54Z 2 2020-02-15T06:59:40Z +5129 2005-07-09T07:28:33Z 4516 441 2005-07-14T05:12:33Z 2 2020-02-15T06:59:40Z +5130 2005-07-09T07:29:45Z 3264 93 2005-07-13T05:56:45Z 1 2020-02-15T06:59:40Z +5131 2005-07-09T07:35:03Z 3179 167 2005-07-10T06:05:03Z 1 2020-02-15T06:59:40Z +5132 2005-07-09T07:40:32Z 4158 101 2005-07-16T02:16:32Z 2 2020-02-15T06:59:40Z +5133 2005-07-09T07:43:22Z 3403 469 2005-07-12T04:52:22Z 1 2020-02-15T06:59:40Z +5134 2005-07-09T07:53:12Z 149 491 2005-07-16T05:30:12Z 1 2020-02-15T06:59:40Z +5135 2005-07-09T07:53:22Z 3005 538 2005-07-16T04:50:22Z 2 2020-02-15T06:59:40Z +5136 2005-07-09T07:55:01Z 3498 395 2005-07-11T05:26:01Z 2 2020-02-15T06:59:40Z +5137 2005-07-09T08:00:34Z 409 126 2005-07-12T05:34:34Z 1 2020-02-15T06:59:40Z +5138 2005-07-09T08:00:46Z 1283 548 2005-07-12T09:31:46Z 2 2020-02-15T06:59:40Z +5139 2005-07-09T08:01:51Z 51 539 2005-07-18T09:16:51Z 2 2020-02-15T06:59:40Z +5140 2005-07-09T08:04:59Z 947 303 2005-07-11T08:28:59Z 2 2020-02-15T06:59:40Z +5141 2005-07-09T08:05:14Z 590 488 2005-07-18T04:36:14Z 1 2020-02-15T06:59:40Z +5142 2005-07-09T08:05:23Z 369 56 2005-07-13T12:37:23Z 2 2020-02-15T06:59:40Z +5143 2005-07-09T08:07:07Z 3803 196 2005-07-18T10:17:07Z 1 2020-02-15T06:59:40Z +5144 2005-07-09T08:09:53Z 3530 89 2005-07-18T07:11:53Z 2 2020-02-15T06:59:40Z +5145 2005-07-09T08:13:25Z 2397 204 2005-07-10T03:56:25Z 2 2020-02-15T06:59:40Z +5146 2005-07-09T08:14:58Z 776 194 2005-07-11T07:04:58Z 1 2020-02-15T06:59:40Z +5147 2005-07-09T08:17:41Z 2270 326 2005-07-18T09:45:41Z 2 2020-02-15T06:59:40Z +5148 2005-07-09T08:22:46Z 456 48 2005-07-18T04:36:46Z 1 2020-02-15T06:59:40Z +5149 2005-07-09T08:28:23Z 1500 330 2005-07-16T06:19:23Z 2 2020-02-15T06:59:40Z +5150 2005-07-09T08:28:40Z 1961 410 2005-07-16T04:47:40Z 1 2020-02-15T06:59:40Z +5151 2005-07-09T08:31:03Z 224 228 2005-07-10T08:18:03Z 2 2020-02-15T06:59:40Z +5152 2005-07-09T08:34:44Z 4005 331 2005-07-10T05:26:44Z 1 2020-02-15T06:59:40Z +5153 2005-07-09T08:35:05Z 2826 504 2005-07-18T14:21:05Z 1 2020-02-15T06:59:40Z +5154 2005-07-09T08:46:18Z 3785 361 2005-07-14T03:19:18Z 1 2020-02-15T06:59:40Z +5155 2005-07-09T08:46:54Z 988 523 2005-07-14T04:13:54Z 1 2020-02-15T06:59:40Z +5156 2005-07-09T08:51:42Z 416 5 2005-07-15T03:59:42Z 2 2020-02-15T06:59:40Z +5157 2005-07-09T08:52:12Z 637 463 2005-07-12T04:32:12Z 2 2020-02-15T06:59:40Z +5158 2005-07-09T08:53:09Z 2825 272 2005-07-10T11:05:09Z 1 2020-02-15T06:59:40Z +5159 2005-07-09T08:55:52Z 3479 213 2005-07-10T04:32:52Z 1 2020-02-15T06:59:40Z +5160 2005-07-09T08:57:07Z 1925 467 2005-07-18T06:01:07Z 1 2020-02-15T06:59:40Z +5161 2005-07-09T08:57:56Z 2617 284 2005-07-18T07:41:56Z 2 2020-02-15T06:59:40Z +5162 2005-07-09T09:00:11Z 2765 43 2005-07-17T07:26:11Z 1 2020-02-15T06:59:40Z +5163 2005-07-09T09:00:28Z 1486 103 2005-07-17T08:07:28Z 2 2020-02-15T06:59:40Z +5164 2005-07-09T09:03:14Z 1170 511 2005-07-14T04:20:14Z 1 2020-02-15T06:59:40Z +5165 2005-07-09T09:08:53Z 280 590 2005-07-14T06:01:53Z 1 2020-02-15T06:59:40Z +5166 2005-07-09T09:15:48Z 2771 298 2005-07-16T06:04:48Z 1 2020-02-15T06:59:40Z +5167 2005-07-09T09:18:43Z 2485 437 2005-07-14T12:59:43Z 2 2020-02-15T06:59:40Z +5168 2005-07-09T09:20:01Z 4096 420 2005-07-11T14:42:01Z 1 2020-02-15T06:59:40Z +5169 2005-07-09T09:22:25Z 2608 116 2005-07-10T03:48:25Z 1 2020-02-15T06:59:40Z +5170 2005-07-09T09:24:19Z 66 209 2005-07-18T04:02:19Z 1 2020-02-15T06:59:40Z +5171 2005-07-09T09:26:55Z 2099 371 2005-07-10T10:34:55Z 1 2020-02-15T06:59:40Z +5172 2005-07-09T09:31:27Z 4046 214 2005-07-13T04:03:27Z 1 2020-02-15T06:59:40Z +5173 2005-07-09T09:31:44Z 2848 490 2005-07-15T04:20:44Z 2 2020-02-15T06:59:40Z +5174 2005-07-09T09:31:59Z 3621 47 2005-07-15T03:49:59Z 1 2020-02-15T06:59:40Z +5175 2005-07-09T09:34:28Z 1003 409 2005-07-15T15:19:28Z 2 2020-02-15T06:59:40Z +5176 2005-07-09T09:39:31Z 328 119 2005-07-17T11:56:31Z 2 2020-02-15T06:59:40Z +5177 2005-07-09T09:43:21Z 1675 452 2005-07-13T07:29:21Z 1 2020-02-15T06:59:40Z +5178 2005-07-09T09:59:52Z 1750 167 2005-07-18T13:01:52Z 2 2020-02-15T06:59:40Z +5179 2005-07-09T10:00:44Z 2995 256 2005-07-11T06:52:44Z 1 2020-02-15T06:59:40Z +5180 2005-07-09T10:06:53Z 3684 494 2005-07-12T15:25:53Z 1 2020-02-15T06:59:40Z +5181 2005-07-09T10:07:27Z 2569 45 2005-07-17T10:18:27Z 2 2020-02-15T06:59:40Z +5182 2005-07-09T10:08:10Z 725 197 2005-07-16T14:36:10Z 2 2020-02-15T06:59:40Z +5183 2005-07-09T10:13:45Z 2866 394 2005-07-16T15:55:45Z 2 2020-02-15T06:59:40Z +5184 2005-07-09T10:14:34Z 1101 166 2005-07-14T16:05:34Z 2 2020-02-15T06:59:40Z +5185 2005-07-09T10:14:39Z 357 53 2005-07-10T13:31:39Z 1 2020-02-15T06:59:40Z +5186 2005-07-09T10:18:40Z 2415 276 2005-07-13T05:05:40Z 2 2020-02-15T06:59:40Z +5187 2005-07-09T10:19:51Z 2631 91 2005-07-14T10:35:51Z 1 2020-02-15T06:59:40Z +5188 2005-07-09T10:22:31Z 3265 34 2005-07-13T04:41:31Z 1 2020-02-15T06:59:40Z +5189 2005-07-09T10:23:21Z 2539 113 2005-07-14T08:06:21Z 1 2020-02-15T06:59:40Z +5190 2005-07-09T10:25:24Z 2213 532 2005-07-18T04:33:24Z 1 2020-02-15T06:59:40Z +5191 2005-07-09T10:26:48Z 2131 167 2005-07-10T15:52:48Z 2 2020-02-15T06:59:40Z +5192 2005-07-09T10:27:09Z 1225 410 2005-07-10T12:04:09Z 1 2020-02-15T06:59:40Z +5193 2005-07-09T10:28:18Z 2166 485 2005-07-12T12:18:18Z 1 2020-02-15T06:59:40Z +5194 2005-07-09T10:31:34Z 3809 202 2005-07-15T08:50:34Z 2 2020-02-15T06:59:40Z +5195 2005-07-09T10:39:31Z 3399 59 2005-07-18T13:54:31Z 1 2020-02-15T06:59:40Z +5196 2005-07-09T10:43:34Z 2278 536 2005-07-13T12:10:34Z 2 2020-02-15T06:59:40Z +5197 2005-07-09T10:43:54Z 1571 541 2005-07-16T10:19:54Z 1 2020-02-15T06:59:40Z +5198 2005-07-09T10:49:10Z 218 101 2005-07-13T04:52:10Z 1 2020-02-15T06:59:40Z +5199 2005-07-09T10:50:56Z 349 42 2005-07-10T06:43:56Z 1 2020-02-15T06:59:40Z +5200 2005-07-09T10:52:09Z 4528 125 2005-07-13T15:12:09Z 1 2020-02-15T06:59:40Z +5201 2005-07-09T10:52:53Z 2453 551 2005-07-16T12:41:53Z 2 2020-02-15T06:59:40Z +5202 2005-07-09T10:53:48Z 3417 321 2005-07-15T13:31:48Z 1 2020-02-15T06:59:40Z +5203 2005-07-09T10:53:59Z 3661 588 2005-07-15T09:45:59Z 2 2020-02-15T06:59:40Z +5204 2005-07-09T10:54:14Z 1791 432 2005-07-12T14:29:14Z 2 2020-02-15T06:59:40Z +5205 2005-07-09T10:56:37Z 161 79 2005-07-13T05:45:37Z 1 2020-02-15T06:59:40Z +5206 2005-07-09T11:11:01Z 692 517 2005-07-17T07:23:01Z 2 2020-02-15T06:59:40Z +5207 2005-07-09T11:15:44Z 3496 59 2005-07-17T06:00:44Z 1 2020-02-15T06:59:40Z +5208 2005-07-09T11:16:56Z 1881 560 2005-07-10T07:21:56Z 2 2020-02-15T06:59:40Z +5209 2005-07-09T11:22:39Z 4441 222 2005-07-17T09:31:39Z 1 2020-02-15T06:59:40Z +5210 2005-07-09T11:24:19Z 4514 355 2005-07-11T06:27:19Z 1 2020-02-15T06:59:40Z +5211 2005-07-09T11:26:50Z 2216 241 2005-07-16T15:30:50Z 1 2020-02-15T06:59:40Z +5212 2005-07-09T11:37:47Z 3240 400 2005-07-15T14:42:47Z 1 2020-02-15T06:59:40Z +5213 2005-07-09T11:39:43Z 3708 552 2005-07-18T16:20:43Z 2 2020-02-15T06:59:40Z +5214 2005-07-09T11:43:08Z 1657 290 2005-07-17T08:58:08Z 2 2020-02-15T06:59:40Z +5215 2005-07-09T11:47:58Z 3888 528 2005-07-18T09:58:58Z 1 2020-02-15T06:59:40Z +5216 2005-07-09T11:54:58Z 1644 515 2005-07-12T09:46:58Z 2 2020-02-15T06:59:40Z +5217 2005-07-09T11:56:50Z 4150 430 2005-07-17T07:10:50Z 1 2020-02-15T06:59:40Z +5218 2005-07-09T11:57:12Z 1121 83 2005-07-13T06:34:12Z 2 2020-02-15T06:59:40Z +5219 2005-07-09T11:57:55Z 3933 209 2005-07-15T09:43:55Z 2 2020-02-15T06:59:40Z +5220 2005-07-09T11:59:04Z 2577 435 2005-07-15T06:20:04Z 1 2020-02-15T06:59:40Z +5221 2005-07-09T12:02:23Z 2339 84 2005-07-16T15:43:23Z 1 2020-02-15T06:59:40Z +5222 2005-07-09T12:05:45Z 2508 400 2005-07-13T12:11:45Z 1 2020-02-15T06:59:40Z +5223 2005-07-09T12:06:03Z 2335 72 2005-07-17T15:50:03Z 1 2020-02-15T06:59:40Z +5224 2005-07-09T12:07:27Z 279 311 2005-07-17T08:59:27Z 1 2020-02-15T06:59:40Z +5225 2005-07-09T12:10:16Z 703 445 2005-07-12T09:55:16Z 2 2020-02-15T06:59:40Z +5226 2005-07-09T12:10:44Z 3128 218 2005-07-11T17:32:44Z 2 2020-02-15T06:59:40Z +5227 2005-07-09T12:16:39Z 1862 362 2005-07-18T15:38:39Z 2 2020-02-15T06:59:40Z +5228 2005-07-09T12:26:01Z 622 195 2005-07-14T13:31:01Z 2 2020-02-15T06:59:40Z +5229 2005-07-09T12:30:18Z 4472 372 2005-07-14T15:31:18Z 2 2020-02-15T06:59:40Z +5230 2005-07-09T12:30:23Z 3707 51 2005-07-13T08:41:23Z 1 2020-02-15T06:59:40Z +5231 2005-07-09T12:35:02Z 1275 405 2005-07-10T09:22:02Z 1 2020-02-15T06:59:40Z +5232 2005-07-09T12:35:08Z 3353 175 2005-07-14T14:55:08Z 1 2020-02-15T06:59:40Z +5233 2005-07-09T12:44:26Z 1401 131 2005-07-15T12:31:26Z 1 2020-02-15T06:59:40Z +5234 2005-07-09T12:44:47Z 4182 398 2005-07-17T10:02:47Z 1 2020-02-15T06:59:40Z +5235 2005-07-09T12:54:25Z 1044 122 2005-07-18T16:28:25Z 1 2020-02-15T06:59:40Z +5236 2005-07-09T12:56:29Z 1215 519 2005-07-13T08:26:29Z 1 2020-02-15T06:59:40Z +5237 2005-07-09T12:56:58Z 2341 84 2005-07-11T15:41:58Z 1 2020-02-15T06:59:40Z +5238 2005-07-09T13:11:14Z 3297 100 2005-07-10T07:27:14Z 2 2020-02-15T06:59:40Z +5239 2005-07-09T13:12:35Z 380 497 2005-07-10T13:37:35Z 1 2020-02-15T06:59:40Z +5240 2005-07-09T13:14:48Z 1378 350 2005-07-10T18:47:48Z 2 2020-02-15T06:59:40Z +5241 2005-07-09T13:19:14Z 4079 314 2005-07-11T14:32:14Z 1 2020-02-15T06:59:40Z +5242 2005-07-09T13:20:25Z 848 12 2005-07-18T07:38:25Z 1 2020-02-15T06:59:40Z +5243 2005-07-09T13:22:08Z 122 587 2005-07-16T09:25:08Z 1 2020-02-15T06:59:40Z +5244 2005-07-09T13:24:07Z 3726 1 2005-07-14T14:01:07Z 2 2020-02-15T06:59:40Z +5245 2005-07-09T13:24:14Z 3547 115 2005-07-12T11:16:14Z 1 2020-02-15T06:59:40Z +5246 2005-07-09T13:25:18Z 3548 276 2005-07-13T18:38:18Z 1 2020-02-15T06:59:40Z +5247 2005-07-09T13:26:28Z 1186 298 2005-07-12T14:00:28Z 2 2020-02-15T06:59:40Z +5248 2005-07-09T13:29:44Z 246 279 2005-07-12T18:12:44Z 1 2020-02-15T06:59:40Z +5249 2005-07-09T13:33:53Z 1950 389 2005-07-11T12:55:53Z 2 2020-02-15T06:59:40Z +5250 2005-07-09T13:35:32Z 2162 384 2005-07-13T12:19:32Z 1 2020-02-15T06:59:40Z +5251 2005-07-09T13:36:10Z 478 474 2005-07-15T11:40:10Z 1 2020-02-15T06:59:40Z +5252 2005-07-09T13:40:44Z 2581 335 2005-07-14T09:41:44Z 1 2020-02-15T06:59:40Z +5253 2005-07-09T13:41:17Z 2241 532 2005-07-17T17:09:17Z 1 2020-02-15T06:59:40Z +5254 2005-07-09T13:50:11Z 654 263 2005-07-13T09:07:11Z 1 2020-02-15T06:59:40Z +5255 2005-07-09T13:51:08Z 4418 313 2005-07-17T13:58:08Z 2 2020-02-15T06:59:40Z +5256 2005-07-09T13:55:45Z 4226 273 2005-07-15T17:02:45Z 1 2020-02-15T06:59:40Z +5257 2005-07-09T13:56:43Z 286 292 2005-07-10T14:26:43Z 2 2020-02-15T06:59:40Z +5258 2005-07-09T13:56:56Z 3125 207 2005-07-11T16:01:56Z 2 2020-02-15T06:59:40Z +5259 2005-07-09T14:02:50Z 1310 207 2005-07-11T19:13:50Z 2 2020-02-15T06:59:40Z +5260 2005-07-09T14:05:45Z 3143 75 2005-07-14T08:41:45Z 2 2020-02-15T06:59:40Z +5261 2005-07-09T14:06:56Z 2899 105 2005-07-11T14:21:56Z 2 2020-02-15T06:59:40Z +5262 2005-07-09T14:08:01Z 1092 240 2005-07-12T16:48:01Z 1 2020-02-15T06:59:40Z +5263 2005-07-09T14:10:36Z 119 406 2005-07-12T15:07:36Z 1 2020-02-15T06:59:40Z +5264 2005-07-09T14:11:28Z 3307 545 2005-07-12T18:24:28Z 2 2020-02-15T06:59:40Z +5265 2005-07-09T14:15:01Z 4482 139 2005-07-18T14:43:01Z 2 2020-02-15T06:59:40Z +5266 2005-07-09T14:17:40Z 2409 222 2005-07-16T10:42:40Z 1 2020-02-15T06:59:40Z +5267 2005-07-09T14:21:10Z 2242 233 2005-07-15T12:02:10Z 1 2020-02-15T06:59:40Z +5268 2005-07-09T14:22:43Z 1083 119 2005-07-12T08:27:43Z 1 2020-02-15T06:59:40Z +5269 2005-07-09T14:23:05Z 3886 230 2005-07-17T14:03:05Z 1 2020-02-15T06:59:40Z +5270 2005-07-09T14:23:46Z 1523 128 2005-07-13T15:04:46Z 1 2020-02-15T06:59:40Z +5271 2005-07-09T14:25:01Z 2691 522 2005-07-16T17:28:01Z 1 2020-02-15T06:59:40Z +5272 2005-07-09T14:26:01Z 1547 90 2005-07-12T20:20:01Z 1 2020-02-15T06:59:40Z +5273 2005-07-09T14:31:24Z 4570 38 2005-07-14T13:27:24Z 2 2020-02-15T06:59:40Z +5274 2005-07-09T14:34:09Z 4579 108 2005-07-14T13:02:09Z 1 2020-02-15T06:59:40Z +5275 2005-07-09T14:34:18Z 729 249 2005-07-13T12:56:18Z 2 2020-02-15T06:59:40Z +5276 2005-07-09T14:35:13Z 2524 521 2005-07-12T14:24:13Z 2 2020-02-15T06:59:40Z +5277 2005-07-09T14:40:42Z 2026 332 2005-07-16T14:18:42Z 2 2020-02-15T06:59:40Z +5278 2005-07-09T14:44:23Z 2573 532 2005-07-15T10:48:23Z 1 2020-02-15T06:59:40Z +5279 2005-07-09T14:46:36Z 709 64 2005-07-17T10:04:36Z 2 2020-02-15T06:59:40Z +5280 2005-07-09T14:55:07Z 1177 351 2005-07-12T10:05:07Z 2 2020-02-15T06:59:40Z +5281 2005-07-09T14:55:07Z 1966 71 2005-07-13T15:24:07Z 2 2020-02-15T06:59:40Z +5282 2005-07-09T15:01:23Z 4386 226 2005-07-13T11:06:23Z 2 2020-02-15T06:59:40Z +5283 2005-07-09T15:07:17Z 644 295 2005-07-17T09:52:17Z 2 2020-02-15T06:59:40Z +5284 2005-07-09T15:08:21Z 1036 585 2005-07-16T09:53:21Z 2 2020-02-15T06:59:40Z +5285 2005-07-09T15:10:44Z 676 468 2005-07-16T13:02:44Z 2 2020-02-15T06:59:40Z +5286 2005-07-09T15:11:41Z 483 498 2005-07-10T19:19:41Z 2 2020-02-15T06:59:40Z +5287 2005-07-09T15:11:54Z 3110 523 2005-07-16T16:05:54Z 2 2020-02-15T06:59:40Z +5288 2005-07-09T15:13:07Z 850 120 2005-07-16T12:39:07Z 1 2020-02-15T06:59:40Z +5289 2005-07-09T15:14:08Z 4336 30 2005-07-12T12:51:08Z 2 2020-02-15T06:59:40Z +5290 2005-07-09T15:14:47Z 277 50 2005-07-11T20:30:47Z 2 2020-02-15T06:59:40Z +5291 2005-07-09T15:15:02Z 1367 194 2005-07-15T10:22:02Z 2 2020-02-15T06:59:40Z +5292 2005-07-09T15:16:54Z 3195 62 2005-07-11T15:21:54Z 1 2020-02-15T06:59:40Z +5293 2005-07-09T15:17:23Z 2880 542 2005-07-11T11:23:23Z 2 2020-02-15T06:59:40Z +5294 2005-07-09T15:23:42Z 3237 22 2005-07-15T15:28:42Z 2 2020-02-15T06:59:40Z +5295 2005-07-09T15:25:06Z 4460 86 2005-07-10T12:40:06Z 1 2020-02-15T06:59:40Z +5296 2005-07-09T15:26:27Z 495 109 2005-07-15T10:03:27Z 2 2020-02-15T06:59:40Z +5297 2005-07-09T15:32:29Z 3434 202 2005-07-14T14:58:29Z 1 2020-02-15T06:59:40Z +5298 2005-07-09T15:36:17Z 3491 149 2005-07-18T19:07:17Z 2 2020-02-15T06:59:40Z +5299 2005-07-09T15:38:09Z 4416 469 2005-07-15T16:39:09Z 2 2020-02-15T06:59:40Z +5300 2005-07-09T15:40:46Z 2520 8 2005-07-15T13:46:46Z 1 2020-02-15T06:59:40Z +5301 2005-07-09T15:42:10Z 245 459 2005-07-16T21:27:10Z 2 2020-02-15T06:59:40Z +5302 2005-07-09T15:42:36Z 4270 72 2005-07-10T21:04:36Z 2 2020-02-15T06:59:40Z +5303 2005-07-09T15:44:09Z 3572 350 2005-07-15T18:09:09Z 2 2020-02-15T06:59:40Z +5304 2005-07-09T15:48:06Z 4411 51 2005-07-14T19:29:06Z 1 2020-02-15T06:59:40Z +5305 2005-07-09T15:55:36Z 625 309 2005-07-18T15:59:36Z 1 2020-02-15T06:59:40Z +5306 2005-07-09T15:56:45Z 2221 409 2005-07-15T19:02:45Z 2 2020-02-15T06:59:40Z +5307 2005-07-09T15:57:15Z 2847 32 2005-07-17T13:42:15Z 2 2020-02-15T06:59:40Z +5308 2005-07-09T15:58:38Z 1684 52 2005-07-15T13:55:38Z 2 2020-02-15T06:59:40Z +5309 2005-07-09T16:00:16Z 4026 338 2005-07-17T17:56:16Z 1 2020-02-15T06:59:40Z +5310 2005-07-09T16:00:34Z 1565 24 2005-07-12T12:45:34Z 2 2020-02-15T06:59:40Z +5311 2005-07-09T16:02:54Z 986 107 2005-07-18T10:44:54Z 1 2020-02-15T06:59:40Z +5312 2005-07-09T16:03:09Z 2123 258 2005-07-13T16:41:09Z 2 2020-02-15T06:59:40Z +5313 2005-07-09T16:04:45Z 1885 52 2005-07-17T18:53:45Z 2 2020-02-15T06:59:40Z +5314 2005-07-09T16:05:28Z 3770 372 2005-07-10T18:18:28Z 1 2020-02-15T06:59:40Z +5315 2005-07-09T16:09:19Z 585 134 2005-07-14T21:10:19Z 1 2020-02-15T06:59:40Z +5316 2005-07-09T16:09:42Z 3856 438 2005-07-11T15:20:42Z 1 2020-02-15T06:59:40Z +5317 2005-07-09T16:10:25Z 2693 14 2005-07-18T17:10:25Z 2 2020-02-15T06:59:40Z +5318 2005-07-09T16:11:33Z 1738 472 2005-07-14T12:49:33Z 2 2020-02-15T06:59:40Z +5319 2005-07-09T16:17:44Z 1899 282 2005-07-18T16:35:44Z 1 2020-02-15T06:59:40Z +5320 2005-07-09T16:23:32Z 3140 228 2005-07-18T18:16:32Z 1 2020-02-15T06:59:40Z +5321 2005-07-09T16:26:33Z 3347 245 2005-07-15T15:05:33Z 2 2020-02-15T06:59:40Z +5322 2005-07-09T16:28:13Z 4420 432 2005-07-18T14:53:13Z 1 2020-02-15T06:59:40Z +5323 2005-07-09T16:34:07Z 1302 35 2005-07-13T21:37:07Z 1 2020-02-15T06:59:40Z +5324 2005-07-09T16:34:18Z 4024 113 2005-07-15T12:35:18Z 2 2020-02-15T06:59:40Z +5325 2005-07-09T16:35:47Z 2703 492 2005-07-10T11:52:47Z 1 2020-02-15T06:59:40Z +5326 2005-07-09T16:38:01Z 797 1 2005-07-13T18:02:01Z 1 2020-02-15T06:59:40Z +5327 2005-07-09T16:39:49Z 3657 547 2005-07-12T18:47:49Z 2 2020-02-15T06:59:40Z +5328 2005-07-09T16:48:29Z 2444 247 2005-07-17T20:20:29Z 2 2020-02-15T06:59:40Z +5329 2005-07-09T16:49:46Z 1628 402 2005-07-16T19:05:46Z 1 2020-02-15T06:59:40Z +5330 2005-07-09T16:53:57Z 3812 410 2005-07-18T19:54:57Z 1 2020-02-15T06:59:40Z +5331 2005-07-09T16:54:06Z 4181 447 2005-07-10T19:04:06Z 1 2020-02-15T06:59:40Z +5332 2005-07-09T16:59:23Z 3269 568 2005-07-10T16:01:23Z 2 2020-02-15T06:59:40Z +5333 2005-07-09T16:59:38Z 2142 419 2005-07-16T17:23:38Z 2 2020-02-15T06:59:40Z +5334 2005-07-09T17:00:13Z 3852 482 2005-07-11T15:50:13Z 1 2020-02-15T06:59:40Z +5335 2005-07-09T17:00:49Z 2353 588 2005-07-12T12:21:49Z 2 2020-02-15T06:59:40Z +5336 2005-07-09T17:01:08Z 4144 410 2005-07-11T19:22:08Z 2 2020-02-15T06:59:40Z +5337 2005-07-09T17:03:50Z 4168 343 2005-07-16T22:25:50Z 2 2020-02-15T06:59:40Z +5338 2005-07-09T17:07:07Z 3449 191 2005-07-14T11:15:07Z 1 2020-02-15T06:59:40Z +5339 2005-07-09T17:09:17Z 698 380 2005-07-10T21:07:17Z 2 2020-02-15T06:59:40Z +5340 2005-07-09T17:11:35Z 650 267 2005-07-17T17:59:35Z 2 2020-02-15T06:59:40Z +5341 2005-07-09T17:13:23Z 2522 8 2005-07-14T18:11:23Z 2 2020-02-15T06:59:40Z +5342 2005-07-09T17:20:03Z 3828 289 2005-07-18T12:44:03Z 2 2020-02-15T06:59:40Z +5343 2005-07-09T17:23:43Z 92 485 2005-07-18T22:14:43Z 1 2020-02-15T06:59:40Z +5344 2005-07-09T17:27:05Z 159 197 2005-07-10T15:51:05Z 2 2020-02-15T06:59:40Z +5345 2005-07-09T17:28:18Z 3055 348 2005-07-11T14:30:18Z 2 2020-02-15T06:59:40Z +5346 2005-07-09T17:29:01Z 2488 287 2005-07-14T12:47:01Z 2 2020-02-15T06:59:40Z +5347 2005-07-09T17:31:32Z 1293 246 2005-07-10T21:06:32Z 2 2020-02-15T06:59:40Z +5348 2005-07-09T17:34:11Z 3495 597 2005-07-15T18:32:11Z 2 2020-02-15T06:59:40Z +5349 2005-07-09T17:35:35Z 3139 161 2005-07-18T14:05:35Z 1 2020-02-15T06:59:40Z +5350 2005-07-09T17:39:30Z 724 129 2005-07-11T16:43:30Z 2 2020-02-15T06:59:40Z +5351 2005-07-09T17:40:52Z 3722 112 2005-07-14T16:55:52Z 2 2020-02-15T06:59:40Z +5352 2005-07-09T17:54:58Z 908 372 2005-07-15T16:20:58Z 1 2020-02-15T06:59:40Z +5353 2005-07-09T18:04:29Z 2994 196 2005-07-15T17:46:29Z 2 2020-02-15T06:59:40Z +5354 2005-07-09T18:04:33Z 951 354 2005-07-15T18:19:33Z 1 2020-02-15T06:59:40Z +5355 2005-07-09T18:07:17Z 2458 100 2005-07-16T20:33:17Z 2 2020-02-15T06:59:40Z +5356 2005-07-09T18:08:28Z 2905 188 2005-07-14T14:11:28Z 2 2020-02-15T06:59:40Z +5357 2005-07-09T18:08:59Z 1988 411 2005-07-16T17:28:59Z 2 2020-02-15T06:59:40Z +5358 2005-07-09T18:09:21Z 3764 71 2005-07-14T23:59:21Z 2 2020-02-15T06:59:40Z +5359 2005-07-09T18:10:52Z 4392 453 2005-07-18T13:34:52Z 2 2020-02-15T06:59:40Z +5360 2005-07-09T18:14:03Z 679 562 2005-07-10T15:17:03Z 2 2020-02-15T06:59:40Z +5361 2005-07-09T18:15:32Z 2045 279 2005-07-17T23:32:32Z 2 2020-02-15T06:59:40Z +5362 2005-07-09T18:16:08Z 24 266 2005-07-18T18:27:08Z 1 2020-02-15T06:59:40Z +5363 2005-07-09T18:18:49Z 2180 425 2005-07-14T22:16:49Z 1 2020-02-15T06:59:40Z +5364 2005-07-09T18:24:48Z 2746 366 2005-07-10T12:30:48Z 1 2020-02-15T06:59:40Z +5365 2005-07-09T18:27:00Z 4469 527 2005-07-11T14:18:00Z 1 2020-02-15T06:59:40Z +5366 2005-07-09T18:28:37Z 886 187 2005-07-13T20:45:37Z 1 2020-02-15T06:59:40Z +5367 2005-07-09T18:39:15Z 1446 485 2005-07-16T14:19:15Z 2 2020-02-15T06:59:40Z +5368 2005-07-09T18:41:59Z 4429 502 2005-07-16T00:32:59Z 2 2020-02-15T06:59:40Z +5369 2005-07-09T18:42:16Z 1550 538 2005-07-12T18:16:16Z 2 2020-02-15T06:59:40Z +5370 2005-07-09T18:43:19Z 2193 248 2005-07-15T19:59:19Z 1 2020-02-15T06:59:40Z +5371 2005-07-09T18:47:48Z 789 425 2005-07-14T14:39:48Z 2 2020-02-15T06:59:40Z +5372 2005-07-09T18:48:39Z 3551 148 2005-07-11T17:40:39Z 1 2020-02-15T06:59:40Z +5373 2005-07-09T18:48:57Z 950 428 2005-07-10T16:34:57Z 1 2020-02-15T06:59:40Z +5374 2005-07-09T18:52:08Z 946 144 2005-07-16T16:34:08Z 1 2020-02-15T06:59:40Z +5375 2005-07-09T18:52:55Z 1407 558 2005-07-16T15:32:55Z 2 2020-02-15T06:59:40Z +5376 2005-07-09T18:54:08Z 1730 104 2005-07-17T22:01:08Z 1 2020-02-15T06:59:40Z +5377 2005-07-09T19:04:30Z 3118 578 2005-07-11T14:42:30Z 1 2020-02-15T06:59:40Z +5378 2005-07-09T19:05:56Z 1570 138 2005-07-10T18:03:56Z 2 2020-02-15T06:59:40Z +5379 2005-07-09T19:08:03Z 2110 475 2005-07-10T17:58:03Z 1 2020-02-15T06:59:40Z +5380 2005-07-09T19:08:44Z 3047 166 2005-07-11T20:09:44Z 1 2020-02-15T06:59:40Z +5381 2005-07-09T19:11:11Z 3033 332 2005-07-13T17:10:11Z 2 2020-02-15T06:59:40Z +5382 2005-07-09T19:12:57Z 78 586 2005-07-14T15:44:57Z 1 2020-02-15T06:59:40Z +5383 2005-07-09T19:14:32Z 573 14 2005-07-11T19:57:32Z 1 2020-02-15T06:59:40Z +5384 2005-07-09T19:17:46Z 1729 180 2005-07-12T13:50:46Z 1 2020-02-15T06:59:40Z +5385 2005-07-09T19:18:11Z 4291 112 2005-07-16T18:50:11Z 2 2020-02-15T06:59:40Z +5386 2005-07-09T19:19:09Z 721 594 2005-07-13T00:13:09Z 2 2020-02-15T06:59:40Z +5387 2005-07-09T19:25:14Z 4452 244 2005-07-11T21:00:14Z 1 2020-02-15T06:59:40Z +5388 2005-07-09T19:25:25Z 1546 332 2005-07-14T19:51:25Z 2 2020-02-15T06:59:40Z +5389 2005-07-09T19:25:45Z 3882 484 2005-07-17T13:31:45Z 1 2020-02-15T06:59:40Z +5390 2005-07-09T19:26:22Z 715 139 2005-07-14T22:46:22Z 1 2020-02-15T06:59:40Z +5391 2005-07-09T19:28:34Z 402 132 2005-07-18T01:07:34Z 1 2020-02-15T06:59:40Z +5392 2005-07-09T19:32:30Z 2552 499 2005-07-16T15:01:30Z 1 2020-02-15T06:59:40Z +5393 2005-07-09T19:35:12Z 1417 446 2005-07-11T14:00:12Z 1 2020-02-15T06:59:40Z +5394 2005-07-09T19:36:15Z 1828 83 2005-07-18T18:10:15Z 2 2020-02-15T06:59:40Z +5395 2005-07-09T19:42:37Z 4428 131 2005-07-10T15:39:37Z 1 2020-02-15T06:59:40Z +5396 2005-07-09T19:42:52Z 3795 559 2005-07-15T21:45:52Z 1 2020-02-15T06:59:40Z +5397 2005-07-09T19:43:51Z 4376 191 2005-07-17T00:11:51Z 1 2020-02-15T06:59:40Z +5398 2005-07-09T19:44:58Z 4352 199 2005-07-17T00:56:58Z 1 2020-02-15T06:59:40Z +5399 2005-07-09T19:52:44Z 261 67 2005-07-10T18:31:44Z 2 2020-02-15T06:59:40Z +5400 2005-07-09T19:56:40Z 3435 192 2005-07-14T20:43:40Z 2 2020-02-15T06:59:40Z +5401 2005-07-09T19:59:10Z 431 43 2005-07-11T23:21:10Z 2 2020-02-15T06:59:40Z +5402 2005-07-09T20:01:58Z 4450 379 2005-07-10T14:07:58Z 1 2020-02-15T06:59:40Z +5403 2005-07-09T20:07:09Z 3991 36 2005-07-12T18:33:09Z 1 2020-02-15T06:59:40Z +5404 2005-07-09T20:10:43Z 3685 236 2005-07-13T15:16:43Z 1 2020-02-15T06:59:40Z +5405 2005-07-09T20:11:49Z 799 45 2005-07-18T18:37:49Z 2 2020-02-15T06:59:40Z +5406 2005-07-09T20:13:23Z 1322 563 2005-07-11T22:05:23Z 2 2020-02-15T06:59:40Z +5407 2005-07-09T20:16:07Z 3641 475 2005-07-14T21:41:07Z 2 2020-02-15T06:59:40Z +5408 2005-07-09T20:16:51Z 3162 144 2005-07-18T22:19:51Z 1 2020-02-15T06:59:40Z +5409 2005-07-09T20:17:19Z 3538 446 2005-07-13T23:30:19Z 1 2020-02-15T06:59:40Z +5410 2005-07-09T20:21:10Z 2261 281 2005-07-18T21:43:10Z 2 2020-02-15T06:59:40Z +5411 2005-07-09T20:23:38Z 4292 304 2005-07-16T01:17:38Z 2 2020-02-15T06:59:40Z +5412 2005-07-09T20:23:52Z 3174 458 2005-07-18T18:40:52Z 1 2020-02-15T06:59:40Z +5413 2005-07-09T20:28:42Z 2056 167 2005-07-10T19:23:42Z 2 2020-02-15T06:59:40Z +5414 2005-07-09T20:29:36Z 1201 174 2005-07-13T01:55:36Z 2 2020-02-15T06:59:40Z +5415 2005-07-09T20:30:03Z 4413 475 2005-07-18T00:20:03Z 1 2020-02-15T06:59:40Z +5416 2005-07-09T20:33:50Z 568 219 2005-07-14T01:50:50Z 2 2020-02-15T06:59:40Z +5417 2005-07-09T20:34:09Z 3569 265 2005-07-14T00:36:09Z 2 2020-02-15T06:59:40Z +5418 2005-07-09T20:41:35Z 55 114 2005-07-14T00:15:35Z 1 2020-02-15T06:59:40Z +5419 2005-07-09T20:47:36Z 1516 226 2005-07-12T01:36:36Z 1 2020-02-15T06:59:40Z +5420 2005-07-09T20:48:42Z 1739 80 2005-07-15T21:35:42Z 2 2020-02-15T06:59:40Z +5421 2005-07-09T20:49:12Z 2437 33 2005-07-10T16:30:12Z 1 2020-02-15T06:59:40Z +5422 2005-07-09T20:55:47Z 436 409 2005-07-15T15:15:47Z 2 2020-02-15T06:59:40Z +5423 2005-07-09T20:56:48Z 1952 440 2005-07-17T14:58:48Z 2 2020-02-15T06:59:40Z +5424 2005-07-09T20:59:09Z 3694 72 2005-07-12T00:05:09Z 2 2020-02-15T06:59:40Z +5425 2005-07-09T21:02:26Z 531 37 2005-07-16T23:38:26Z 2 2020-02-15T06:59:40Z +5426 2005-07-09T21:04:47Z 251 438 2005-07-17T00:55:47Z 1 2020-02-15T06:59:40Z +5427 2005-07-09T21:12:26Z 3197 499 2005-07-14T01:02:26Z 1 2020-02-15T06:59:40Z +5428 2005-07-09T21:12:50Z 3109 346 2005-07-14T16:25:50Z 2 2020-02-15T06:59:40Z +5429 2005-07-09T21:14:03Z 2467 105 2005-07-18T01:33:03Z 1 2020-02-15T06:59:40Z +5430 2005-07-09T21:19:54Z 1441 173 2005-07-15T22:53:54Z 1 2020-02-15T06:59:40Z +5431 2005-07-09T21:21:11Z 2780 213 2005-07-10T21:16:11Z 1 2020-02-15T06:59:40Z +5432 2005-07-09T21:21:25Z 1958 64 2005-07-14T21:34:25Z 2 2020-02-15T06:59:40Z +5433 2005-07-09T21:22:00Z 2679 349 2005-07-10T21:18:00Z 2 2020-02-15T06:59:40Z +5434 2005-07-09T21:25:20Z 3790 334 2005-07-15T03:12:20Z 2 2020-02-15T06:59:40Z +5435 2005-07-09T21:28:07Z 2884 273 2005-07-18T21:16:07Z 2 2020-02-15T06:59:40Z +5436 2005-07-09T21:31:11Z 2364 89 2005-07-13T16:59:11Z 2 2020-02-15T06:59:40Z +5437 2005-07-09T21:32:29Z 3532 26 2005-07-15T00:27:29Z 2 2020-02-15T06:59:40Z +5438 2005-07-09T21:34:32Z 487 241 2005-07-16T02:21:32Z 2 2020-02-15T06:59:40Z +5439 2005-07-09T21:39:35Z 1993 58 2005-07-13T17:45:35Z 2 2020-02-15T06:59:40Z +5440 2005-07-09T21:45:17Z 138 332 2005-07-11T22:43:17Z 2 2020-02-15T06:59:40Z +5441 2005-07-09T21:52:05Z 3913 7 2005-07-17T02:54:05Z 1 2020-02-15T06:59:40Z +5442 2005-07-09T21:55:19Z 3093 29 2005-07-19T01:18:19Z 2 2020-02-15T06:59:40Z +5443 2005-07-09T21:56:09Z 2951 137 2005-07-16T00:33:09Z 2 2020-02-15T06:59:40Z +5444 2005-07-09T21:58:57Z 2968 10 2005-07-11T03:09:57Z 2 2020-02-15T06:59:40Z +5445 2005-07-09T21:59:41Z 565 578 2005-07-15T00:40:41Z 1 2020-02-15T06:59:40Z +5446 2005-07-09T21:59:55Z 2769 454 2005-07-11T01:45:55Z 2 2020-02-15T06:59:40Z +5447 2005-07-09T22:09:28Z 2530 473 2005-07-18T20:03:28Z 2 2020-02-15T06:59:40Z +5448 2005-07-09T22:11:14Z 646 463 2005-07-15T21:08:14Z 2 2020-02-15T06:59:40Z +5449 2005-07-09T22:12:01Z 921 261 2005-07-18T01:18:01Z 2 2020-02-15T06:59:40Z +5450 2005-07-09T22:13:25Z 2356 328 2005-07-13T23:28:25Z 1 2020-02-15T06:59:40Z +5451 2005-07-09T22:22:10Z 3484 39 2005-07-11T02:43:10Z 1 2020-02-15T06:59:40Z +5452 2005-07-09T22:23:21Z 2036 80 2005-07-17T00:20:21Z 1 2020-02-15T06:59:40Z +5453 2005-07-09T22:24:11Z 1780 106 2005-07-19T04:08:11Z 1 2020-02-15T06:59:40Z +5454 2005-07-09T22:24:25Z 3049 97 2005-07-11T01:52:25Z 1 2020-02-15T06:59:40Z +5455 2005-07-09T22:28:45Z 1955 464 2005-07-18T02:50:45Z 2 2020-02-15T06:59:40Z +5456 2005-07-09T22:31:45Z 3003 360 2005-07-12T03:53:45Z 1 2020-02-15T06:59:40Z +5457 2005-07-09T22:33:14Z 4179 433 2005-07-12T02:30:14Z 1 2020-02-15T06:59:40Z +5458 2005-07-09T22:35:49Z 2203 521 2005-07-16T22:55:49Z 1 2020-02-15T06:59:40Z +5459 2005-07-09T22:43:56Z 1847 168 2005-07-12T18:05:56Z 1 2020-02-15T06:59:40Z +5460 2005-07-09T22:46:14Z 2410 38 2005-07-12T21:26:14Z 2 2020-02-15T06:59:40Z +5461 2005-07-09T22:48:04Z 53 244 2005-07-10T17:56:04Z 2 2020-02-15T06:59:40Z +5462 2005-07-09T22:56:53Z 871 583 2005-07-11T21:50:53Z 2 2020-02-15T06:59:40Z +5463 2005-07-09T22:57:02Z 601 374 2005-07-11T03:10:02Z 1 2020-02-15T06:59:40Z +5464 2005-07-09T22:58:14Z 3692 434 2005-07-15T02:48:14Z 1 2020-02-15T06:59:40Z +5465 2005-07-09T23:01:13Z 723 503 2005-07-13T01:03:13Z 1 2020-02-15T06:59:40Z +5466 2005-07-09T23:03:21Z 2302 482 2005-07-10T20:11:21Z 2 2020-02-15T06:59:40Z +5467 2005-07-09T23:05:47Z 374 543 2005-07-16T17:06:47Z 2 2020-02-15T06:59:40Z +5468 2005-07-09T23:06:09Z 2196 81 2005-07-13T00:48:09Z 1 2020-02-15T06:59:40Z +5469 2005-07-09T23:08:07Z 2201 475 2005-07-13T19:13:07Z 1 2020-02-15T06:59:40Z +5470 2005-07-09T23:10:49Z 3254 325 2005-07-18T04:30:49Z 1 2020-02-15T06:59:40Z +5471 2005-07-09T23:11:52Z 4086 347 2005-07-13T02:08:52Z 2 2020-02-15T06:59:40Z +5472 2005-07-09T23:16:40Z 865 165 2005-07-10T18:43:40Z 2 2020-02-15T06:59:40Z +5473 2005-07-09T23:19:11Z 4283 51 2005-07-19T02:30:11Z 2 2020-02-15T06:59:40Z +5474 2005-07-09T23:23:57Z 3608 375 2005-07-15T03:11:57Z 1 2020-02-15T06:59:40Z +5475 2005-07-09T23:31:38Z 726 219 2005-07-12T03:51:38Z 1 2020-02-15T06:59:40Z +5476 2005-07-09T23:37:09Z 1199 427 2005-07-15T23:57:09Z 1 2020-02-15T06:59:40Z +5477 2005-07-09T23:43:49Z 994 542 2005-07-15T05:03:49Z 2 2020-02-15T06:59:40Z +5478 2005-07-09T23:45:15Z 3213 583 2005-07-15T22:48:15Z 1 2020-02-15T06:59:40Z +5479 2005-07-09T23:47:33Z 216 250 2005-07-13T01:09:33Z 1 2020-02-15T06:59:40Z +5480 2005-07-09T23:49:07Z 847 452 2005-07-12T00:15:07Z 1 2020-02-15T06:59:40Z +5481 2005-07-09T23:51:57Z 562 479 2005-07-11T05:28:57Z 2 2020-02-15T06:59:40Z +5482 2005-07-09T23:53:04Z 2136 460 2005-07-15T04:59:04Z 1 2020-02-15T06:59:40Z +5483 2005-07-09T23:54:09Z 4362 89 2005-07-17T23:36:09Z 1 2020-02-15T06:59:40Z +5484 2005-07-09T23:54:37Z 3248 495 2005-07-15T02:05:37Z 1 2020-02-15T06:59:40Z +5485 2005-07-09T23:55:25Z 3930 173 2005-07-14T04:08:25Z 1 2020-02-15T06:59:40Z +5486 2005-07-09T23:57:44Z 2864 538 2005-07-14T00:23:44Z 1 2020-02-15T06:59:40Z +5487 2005-07-10T00:01:50Z 1144 341 2005-07-10T20:43:50Z 1 2020-02-15T06:59:40Z +5488 2005-07-10T00:02:06Z 4262 173 2005-07-15T01:45:06Z 2 2020-02-15T06:59:40Z +5489 2005-07-10T00:07:03Z 2319 490 2005-07-15T19:52:03Z 1 2020-02-15T06:59:40Z +5490 2005-07-10T00:09:11Z 3044 367 2005-07-14T21:23:11Z 1 2020-02-15T06:59:40Z +5491 2005-07-10T00:09:45Z 2007 49 2005-07-11T02:25:45Z 1 2020-02-15T06:59:40Z +5492 2005-07-10T00:11:09Z 4524 558 2005-07-14T01:27:09Z 1 2020-02-15T06:59:40Z +5493 2005-07-10T00:11:44Z 2037 539 2005-07-15T19:24:44Z 2 2020-02-15T06:59:40Z +5494 2005-07-10T00:15:00Z 3087 139 2005-07-17T01:12:00Z 2 2020-02-15T06:59:40Z +5495 2005-07-10T00:16:54Z 2199 257 2005-07-19T01:22:54Z 2 2020-02-15T06:59:40Z +5496 2005-07-10T00:20:23Z 3182 369 2005-07-18T21:10:23Z 2 2020-02-15T06:59:40Z +5497 2005-07-10T00:23:23Z 4473 92 2005-07-16T03:54:23Z 1 2020-02-15T06:59:40Z +5498 2005-07-10T00:27:21Z 63 302 2005-07-13T20:11:21Z 2 2020-02-15T06:59:40Z +5499 2005-07-10T00:27:45Z 1525 127 2005-07-17T06:11:45Z 1 2020-02-15T06:59:40Z +5500 2005-07-10T00:28:17Z 3380 457 2005-07-15T19:09:17Z 1 2020-02-15T06:59:40Z +5501 2005-07-10T00:33:48Z 3979 372 2005-07-17T02:58:48Z 1 2020-02-15T06:59:40Z +5502 2005-07-10T00:34:15Z 3712 243 2005-07-11T21:44:15Z 1 2020-02-15T06:59:40Z +5503 2005-07-10T00:35:37Z 3892 262 2005-07-12T20:29:37Z 1 2020-02-15T06:59:40Z +5504 2005-07-10T00:36:38Z 3053 455 2005-07-16T19:36:38Z 1 2020-02-15T06:59:40Z +5505 2005-07-10T00:38:48Z 896 253 2005-07-12T03:12:48Z 2 2020-02-15T06:59:40Z +5506 2005-07-10T00:45:48Z 2432 117 2005-07-18T20:35:48Z 2 2020-02-15T06:59:40Z +5507 2005-07-10T00:49:04Z 716 399 2005-07-15T22:06:04Z 2 2020-02-15T06:59:40Z +5508 2005-07-10T00:50:01Z 2977 345 2005-07-16T19:07:01Z 1 2020-02-15T06:59:40Z +5509 2005-07-10T00:54:46Z 1142 102 2005-07-16T05:10:46Z 1 2020-02-15T06:59:40Z +5510 2005-07-10T00:58:37Z 1298 67 2005-07-17T22:02:37Z 2 2020-02-15T06:59:40Z +5511 2005-07-10T01:00:00Z 3678 301 2005-07-12T20:44:00Z 1 2020-02-15T06:59:40Z +5512 2005-07-10T01:05:38Z 4470 405 2005-07-17T20:47:38Z 1 2020-02-15T06:59:40Z +5513 2005-07-10T01:05:41Z 2558 356 2005-07-11T02:05:41Z 2 2020-02-15T06:59:40Z +5514 2005-07-10T01:09:42Z 1824 522 2005-07-17T05:47:42Z 1 2020-02-15T06:59:40Z +5515 2005-07-10T01:12:44Z 3772 39 2005-07-13T00:39:44Z 1 2020-02-15T06:59:40Z +5516 2005-07-10T01:13:52Z 1902 581 2005-07-15T22:56:52Z 1 2020-02-15T06:59:40Z +5517 2005-07-10T01:15:00Z 3689 42 2005-07-19T01:59:00Z 1 2020-02-15T06:59:40Z +5518 2005-07-10T01:15:11Z 3340 451 2005-07-18T19:28:11Z 2 2020-02-15T06:59:40Z +5519 2005-07-10T01:18:32Z 1312 85 2005-07-11T20:39:32Z 1 2020-02-15T06:59:40Z +5520 2005-07-10T01:30:41Z 2527 501 2005-07-15T21:37:41Z 2 2020-02-15T06:59:40Z +5521 2005-07-10T01:31:22Z 1956 182 2005-07-17T05:42:22Z 2 2020-02-15T06:59:40Z +5522 2005-07-10T01:46:29Z 2622 573 2005-07-18T00:41:29Z 2 2020-02-15T06:59:40Z +5523 2005-07-10T01:47:55Z 2233 125 2005-07-18T22:25:55Z 1 2020-02-15T06:59:40Z +5524 2005-07-10T01:49:24Z 3596 386 2005-07-14T22:55:24Z 1 2020-02-15T06:59:40Z +5525 2005-07-10T02:03:08Z 3141 241 2005-07-18T07:32:08Z 1 2020-02-15T06:59:40Z +5526 2005-07-10T02:04:03Z 3909 144 2005-07-16T22:15:03Z 2 2020-02-15T06:59:40Z +5527 2005-07-10T02:06:01Z 4462 554 2005-07-15T00:55:01Z 2 2020-02-15T06:59:40Z +5528 2005-07-10T02:09:21Z 680 551 2005-07-17T06:22:21Z 2 2020-02-15T06:59:40Z +5529 2005-07-10T02:11:13Z 1652 590 2005-07-15T06:56:13Z 2 2020-02-15T06:59:40Z +5530 2005-07-10T02:13:49Z 2701 74 2005-07-18T08:01:49Z 2 2020-02-15T06:59:40Z +5531 2005-07-10T02:13:59Z 2992 173 2005-07-15T00:01:59Z 2 2020-02-15T06:59:40Z +5532 2005-07-10T02:17:31Z 983 522 2005-07-16T02:57:31Z 2 2020-02-15T06:59:40Z +5533 2005-07-10T02:19:28Z 2567 270 2005-07-11T01:37:28Z 1 2020-02-15T06:59:40Z +5534 2005-07-10T02:26:49Z 3251 156 2005-07-11T07:13:49Z 1 2020-02-15T06:59:40Z +5535 2005-07-10T02:27:42Z 1623 394 2005-07-12T21:13:42Z 1 2020-02-15T06:59:40Z +5536 2005-07-10T02:29:42Z 1919 195 2005-07-13T04:06:42Z 2 2020-02-15T06:59:40Z +5537 2005-07-10T02:35:41Z 1781 254 2005-07-13T07:11:41Z 2 2020-02-15T06:59:40Z +5538 2005-07-10T02:39:40Z 2119 367 2005-07-12T01:39:40Z 2 2020-02-15T06:59:40Z +5539 2005-07-10T02:42:58Z 3217 90 2005-07-16T02:27:58Z 2 2020-02-15T06:59:40Z +5540 2005-07-10T02:44:21Z 132 250 2005-07-11T07:13:21Z 1 2020-02-15T06:59:40Z +5541 2005-07-10T02:44:27Z 1211 135 2005-07-13T04:13:27Z 2 2020-02-15T06:59:40Z +5542 2005-07-10T02:45:53Z 1713 105 2005-07-15T23:23:53Z 2 2020-02-15T06:59:40Z +5543 2005-07-10T02:48:03Z 1496 71 2005-07-17T05:49:03Z 2 2020-02-15T06:59:40Z +5544 2005-07-10T02:48:07Z 1014 316 2005-07-17T01:08:07Z 1 2020-02-15T06:59:40Z +5545 2005-07-10T02:50:29Z 118 236 2005-07-16T02:11:29Z 1 2020-02-15T06:59:40Z +5546 2005-07-10T02:50:37Z 2918 515 2005-07-16T08:22:37Z 1 2020-02-15T06:59:40Z +5547 2005-07-10T02:52:47Z 1432 519 2005-07-16T02:10:47Z 1 2020-02-15T06:59:40Z +5548 2005-07-10T02:56:45Z 2973 317 2005-07-13T01:33:45Z 2 2020-02-15T06:59:40Z +5549 2005-07-10T02:58:29Z 2685 163 2005-07-17T05:24:29Z 2 2020-02-15T06:59:40Z +5550 2005-07-10T02:58:35Z 1905 254 2005-07-16T02:38:35Z 2 2020-02-15T06:59:40Z +5551 2005-07-10T03:01:09Z 4238 44 2005-07-18T02:04:09Z 2 2020-02-15T06:59:40Z +5552 2005-07-10T03:01:19Z 2879 27 2005-07-13T06:53:19Z 2 2020-02-15T06:59:40Z +5553 2005-07-10T03:03:35Z 1686 6 2005-07-14T07:49:35Z 2 2020-02-15T06:59:40Z +5554 2005-07-10T03:03:38Z 4084 252 2005-07-17T00:00:38Z 2 2020-02-15T06:59:40Z +5555 2005-07-10T03:08:55Z 2551 79 2005-07-11T01:36:55Z 2 2020-02-15T06:59:40Z +5556 2005-07-10T03:10:17Z 4483 354 2005-07-14T02:47:17Z 1 2020-02-15T06:59:40Z +5557 2005-07-10T03:10:21Z 1433 346 2005-07-11T21:34:21Z 1 2020-02-15T06:59:40Z +5558 2005-07-10T03:12:08Z 1123 96 2005-07-14T03:09:08Z 2 2020-02-15T06:59:40Z +5559 2005-07-10T03:13:07Z 4122 496 2005-07-18T08:33:07Z 1 2020-02-15T06:59:40Z +5560 2005-07-10T03:13:24Z 720 231 2005-07-19T06:03:24Z 2 2020-02-15T06:59:40Z +5561 2005-07-10T03:15:24Z 1048 369 2005-07-15T06:46:24Z 1 2020-02-15T06:59:40Z +5562 2005-07-10T03:17:42Z 3604 300 2005-07-12T03:26:42Z 1 2020-02-15T06:59:40Z +5563 2005-07-10T03:21:02Z 2258 362 2005-07-14T07:40:02Z 1 2020-02-15T06:59:40Z +5564 2005-07-10T03:23:05Z 196 355 2005-07-16T07:46:05Z 2 2020-02-15T06:59:40Z +5565 2005-07-10T03:29:48Z 3368 14 2005-07-17T04:43:48Z 1 2020-02-15T06:59:40Z +5566 2005-07-10T03:30:17Z 1343 124 2005-07-13T06:32:17Z 1 2020-02-15T06:59:40Z +5567 2005-07-10T03:36:46Z 1616 147 2005-07-15T23:22:46Z 2 2020-02-15T06:59:40Z +5568 2005-07-10T03:36:56Z 1130 424 2005-07-11T08:35:56Z 2 2020-02-15T06:59:40Z +5569 2005-07-10T03:38:32Z 2835 69 2005-07-16T00:02:32Z 2 2020-02-15T06:59:40Z +5570 2005-07-10T03:46:47Z 2013 374 2005-07-17T09:28:47Z 1 2020-02-15T06:59:40Z +5571 2005-07-10T03:48:20Z 1084 76 2005-07-11T02:09:20Z 2 2020-02-15T06:59:40Z +5572 2005-07-10T03:49:00Z 2709 458 2005-07-14T01:25:00Z 1 2020-02-15T06:59:40Z +5573 2005-07-10T03:50:47Z 2957 170 2005-07-17T06:40:47Z 2 2020-02-15T06:59:40Z +5574 2005-07-10T03:54:38Z 2307 163 2005-07-19T07:20:38Z 2 2020-02-15T06:59:40Z +5575 2005-07-10T03:55:50Z 2316 107 2005-07-12T08:40:50Z 1 2020-02-15T06:59:40Z +5576 2005-07-10T03:57:05Z 1453 217 2005-07-13T02:16:05Z 2 2020-02-15T06:59:40Z +5577 2005-07-10T03:58:40Z 3779 266 2005-07-14T03:36:40Z 1 2020-02-15T06:59:40Z +5578 2005-07-10T04:00:31Z 4543 378 2005-07-16T08:06:31Z 2 2020-02-15T06:59:40Z +5579 2005-07-10T04:04:29Z 945 203 2005-07-14T04:31:29Z 1 2020-02-15T06:59:40Z +5580 2005-07-10T04:05:49Z 2753 521 2005-07-18T22:36:49Z 2 2020-02-15T06:59:40Z +5581 2005-07-10T04:06:06Z 3450 306 2005-07-15T08:31:06Z 2 2020-02-15T06:59:40Z +5582 2005-07-10T04:08:25Z 3341 305 2005-07-13T06:04:25Z 1 2020-02-15T06:59:40Z +5583 2005-07-10T04:08:48Z 1242 391 2005-07-19T07:59:48Z 1 2020-02-15T06:59:40Z +5584 2005-07-10T04:15:25Z 2606 289 2005-07-16T22:54:25Z 2 2020-02-15T06:59:40Z +5585 2005-07-10T04:15:43Z 3524 63 2005-07-15T08:24:43Z 1 2020-02-15T06:59:40Z +5586 2005-07-10T04:17:06Z 2965 427 2005-07-18T07:11:06Z 1 2020-02-15T06:59:40Z +5587 2005-07-10T04:17:25Z 4485 531 2005-07-15T01:41:25Z 1 2020-02-15T06:59:40Z +5588 2005-07-10T04:21:10Z 1166 535 2005-07-16T02:58:10Z 2 2020-02-15T06:59:40Z +5589 2005-07-10T04:22:58Z 3673 296 2005-07-10T23:13:58Z 1 2020-02-15T06:59:40Z +5590 2005-07-10T04:23:11Z 4442 407 2005-07-19T09:03:11Z 1 2020-02-15T06:59:40Z +5591 2005-07-10T04:25:03Z 378 374 2005-07-16T04:21:03Z 1 2020-02-15T06:59:40Z +5592 2005-07-10T04:26:13Z 2471 222 2005-07-19T02:32:13Z 2 2020-02-15T06:59:40Z +5593 2005-07-10T04:33:13Z 702 287 2005-07-17T08:44:13Z 2 2020-02-15T06:59:40Z +5594 2005-07-10T04:33:36Z 61 440 2005-07-12T08:13:36Z 2 2020-02-15T06:59:40Z +5595 2005-07-10T04:33:45Z 264 572 2005-07-16T04:04:45Z 1 2020-02-15T06:59:40Z +5596 2005-07-10T04:43:14Z 1662 240 2005-07-11T22:58:14Z 2 2020-02-15T06:59:40Z +5597 2005-07-10T04:47:57Z 4264 576 2005-07-17T01:54:57Z 2 2020-02-15T06:59:40Z +5598 2005-07-10T04:48:29Z 3412 397 2005-07-18T10:33:29Z 2 2020-02-15T06:59:40Z +5599 2005-07-10T04:52:04Z 3054 391 2005-07-13T05:19:04Z 1 2020-02-15T06:59:40Z +5600 2005-07-10T04:55:45Z 3713 138 2005-07-18T03:10:45Z 2 2020-02-15T06:59:40Z +5601 2005-07-10T04:56:55Z 3062 511 2005-07-11T00:14:55Z 1 2020-02-15T06:59:40Z +5602 2005-07-10T05:02:22Z 3544 253 2005-07-14T23:40:22Z 2 2020-02-15T06:59:40Z +5603 2005-07-10T05:04:54Z 1308 74 2005-07-12T01:54:54Z 2 2020-02-15T06:59:40Z +5604 2005-07-10T05:05:00Z 3702 78 2005-07-12T08:04:00Z 1 2020-02-15T06:59:40Z +5605 2005-07-10T05:06:45Z 2964 273 2005-07-15T02:51:45Z 2 2020-02-15T06:59:40Z +5606 2005-07-10T05:07:55Z 2896 51 2005-07-15T00:14:55Z 2 2020-02-15T06:59:40Z +5607 2005-07-10T05:08:10Z 4257 52 2005-07-15T00:40:10Z 2 2020-02-15T06:59:40Z +5608 2005-07-10T05:08:26Z 3854 384 2005-07-10T23:24:26Z 1 2020-02-15T06:59:40Z +5609 2005-07-10T05:09:46Z 1553 492 2005-07-12T10:38:46Z 1 2020-02-15T06:59:40Z +5610 2005-07-10T05:09:52Z 481 131 2005-07-13T07:08:52Z 2 2020-02-15T06:59:40Z +5611 2005-07-10T05:13:43Z 2832 424 2005-07-16T05:56:43Z 1 2020-02-15T06:59:40Z +5612 2005-07-10T05:15:12Z 2363 472 2005-07-17T09:50:12Z 2 2020-02-15T06:59:40Z +5613 2005-07-10T05:15:43Z 4517 220 2005-07-13T05:17:43Z 2 2020-02-15T06:59:40Z +5614 2005-07-10T05:16:56Z 133 371 2005-07-13T02:03:56Z 1 2020-02-15T06:59:40Z +5615 2005-07-10T05:18:51Z 1521 173 2005-07-17T11:05:51Z 2 2020-02-15T06:59:40Z +5616 2005-07-10T05:21:11Z 4014 238 2005-07-18T08:42:11Z 2 2020-02-15T06:59:40Z +5617 2005-07-10T05:28:50Z 2324 342 2005-07-12T00:02:50Z 2 2020-02-15T06:59:40Z +5618 2005-07-10T05:28:58Z 757 316 2005-07-18T01:38:58Z 1 2020-02-15T06:59:40Z +5619 2005-07-10T05:29:33Z 113 204 2005-07-15T00:40:33Z 1 2020-02-15T06:59:40Z +5620 2005-07-10T05:30:52Z 2980 92 2005-07-16T04:13:52Z 1 2020-02-15T06:59:40Z +5621 2005-07-10T05:34:10Z 552 310 2005-07-14T02:49:10Z 1 2020-02-15T06:59:40Z +5622 2005-07-10T05:39:37Z 1783 568 2005-07-15T00:48:37Z 2 2020-02-15T06:59:40Z +5623 2005-07-10T05:41:38Z 4464 229 2005-07-14T01:01:38Z 2 2020-02-15T06:59:40Z +5624 2005-07-10T05:43:16Z 1015 114 2005-07-12T05:33:16Z 1 2020-02-15T06:59:40Z +5625 2005-07-10T05:44:02Z 1751 114 2005-07-12T00:03:02Z 2 2020-02-15T06:59:40Z +5626 2005-07-10T05:49:35Z 3029 389 2005-07-15T08:05:35Z 1 2020-02-15T06:59:40Z +5627 2005-07-10T05:51:12Z 244 136 2005-07-17T09:56:12Z 2 2020-02-15T06:59:40Z +5628 2005-07-10T05:56:40Z 4040 87 2005-07-17T11:13:40Z 1 2020-02-15T06:59:40Z +5629 2005-07-10T06:02:25Z 400 546 2005-07-16T07:33:25Z 1 2020-02-15T06:59:40Z +5630 2005-07-10T06:08:14Z 1151 537 2005-07-14T03:37:14Z 2 2020-02-15T06:59:40Z +5631 2005-07-10T06:15:45Z 2095 595 2005-07-17T09:53:45Z 2 2020-02-15T06:59:40Z +5632 2005-07-10T06:17:06Z 2632 404 2005-07-17T02:32:06Z 2 2020-02-15T06:59:40Z +5633 2005-07-10T06:22:24Z 1056 480 2005-07-11T05:59:24Z 2 2020-02-15T06:59:40Z +5634 2005-07-10T06:25:48Z 323 487 2005-07-17T09:07:48Z 2 2020-02-15T06:59:40Z +5635 2005-07-10T06:28:39Z 1457 222 2005-07-17T08:35:39Z 2 2020-02-15T06:59:40Z +5636 2005-07-10T06:31:24Z 4116 2 2005-07-13T02:36:24Z 1 2020-02-15T06:59:40Z +5637 2005-07-10T06:31:37Z 4436 45 2005-07-17T01:16:37Z 1 2020-02-15T06:59:40Z +5638 2005-07-10T06:32:49Z 1528 570 2005-07-13T04:32:49Z 2 2020-02-15T06:59:40Z +5639 2005-07-10T06:33:39Z 2452 249 2005-07-19T07:47:39Z 1 2020-02-15T06:59:40Z +5640 2005-07-10T06:38:00Z 2706 574 2005-07-18T08:56:00Z 2 2020-02-15T06:59:40Z +5641 2005-07-10T06:43:43Z 3568 50 2005-07-15T06:33:43Z 1 2020-02-15T06:59:40Z +5642 2005-07-10T06:46:08Z 3630 299 2005-07-13T10:03:08Z 1 2020-02-15T06:59:40Z +5643 2005-07-10T06:49:00Z 796 34 2005-07-14T01:53:00Z 1 2020-02-15T06:59:40Z +5644 2005-07-10T06:57:44Z 4069 476 2005-07-15T03:52:44Z 2 2020-02-15T06:59:40Z +5645 2005-07-10T06:58:21Z 1586 333 2005-07-18T04:19:21Z 2 2020-02-15T06:59:40Z +5646 2005-07-10T07:08:09Z 1471 166 2005-07-14T03:48:09Z 2 2020-02-15T06:59:40Z +5647 2005-07-10T07:08:40Z 1466 128 2005-07-13T05:19:40Z 2 2020-02-15T06:59:40Z +5648 2005-07-10T07:09:21Z 4359 24 2005-07-16T07:23:21Z 2 2020-02-15T06:59:40Z +5649 2005-07-10T07:15:07Z 1349 336 2005-07-12T11:57:07Z 2 2020-02-15T06:59:40Z +5650 2005-07-10T07:17:01Z 2793 461 2005-07-15T11:59:01Z 1 2020-02-15T06:59:40Z +5651 2005-07-10T07:17:13Z 301 239 2005-07-15T12:13:13Z 2 2020-02-15T06:59:40Z +5652 2005-07-10T07:18:58Z 927 42 2005-07-19T07:52:58Z 1 2020-02-15T06:59:40Z +5653 2005-07-10T07:21:27Z 919 28 2005-07-16T01:58:27Z 1 2020-02-15T06:59:40Z +5654 2005-07-10T07:24:46Z 3419 490 2005-07-14T07:39:46Z 2 2020-02-15T06:59:40Z +5655 2005-07-10T07:31:06Z 3470 113 2005-07-17T08:22:06Z 1 2020-02-15T06:59:40Z +5656 2005-07-10T07:31:07Z 4138 159 2005-07-15T04:44:07Z 1 2020-02-15T06:59:40Z +5657 2005-07-10T07:33:43Z 4342 508 2005-07-18T01:55:43Z 2 2020-02-15T06:59:40Z +5658 2005-07-10T07:34:08Z 4402 165 2005-07-19T04:21:08Z 2 2020-02-15T06:59:40Z +5659 2005-07-10T07:45:40Z 4265 9 2005-07-15T05:20:40Z 1 2020-02-15T06:59:40Z +5660 2005-07-10T07:46:12Z 1404 171 2005-07-17T07:48:12Z 1 2020-02-15T06:59:40Z +5661 2005-07-10T07:53:51Z 1878 108 2005-07-14T12:57:51Z 2 2020-02-15T06:59:40Z +5662 2005-07-10T07:59:24Z 219 502 2005-07-14T13:06:24Z 1 2020-02-15T06:59:40Z +5663 2005-07-10T08:01:33Z 3078 530 2005-07-15T03:36:33Z 2 2020-02-15T06:59:40Z +5664 2005-07-10T08:04:41Z 2375 469 2005-07-17T10:29:41Z 1 2020-02-15T06:59:40Z +5665 2005-07-10T08:10:08Z 1175 415 2005-07-11T05:22:08Z 2 2020-02-15T06:59:40Z +5666 2005-07-10T08:10:29Z 2225 242 2005-07-17T04:54:29Z 2 2020-02-15T06:59:40Z +5667 2005-07-10T08:11:03Z 683 336 2005-07-15T08:23:03Z 2 2020-02-15T06:59:40Z +5668 2005-07-10T08:11:05Z 309 211 2005-07-16T13:15:05Z 1 2020-02-15T06:59:40Z +5669 2005-07-10T08:12:53Z 1173 323 2005-07-11T05:48:53Z 2 2020-02-15T06:59:40Z +5670 2005-07-10T08:14:52Z 610 121 2005-07-14T04:13:52Z 2 2020-02-15T06:59:40Z +5671 2005-07-10T08:18:22Z 1304 268 2005-07-11T07:03:22Z 2 2020-02-15T06:59:40Z +5672 2005-07-10T08:19:38Z 2326 158 2005-07-16T06:28:38Z 2 2020-02-15T06:59:40Z +5673 2005-07-10T08:21:54Z 4018 117 2005-07-11T05:54:54Z 2 2020-02-15T06:59:40Z +5674 2005-07-10T08:26:26Z 548 258 2005-07-16T02:43:26Z 1 2020-02-15T06:59:40Z +5675 2005-07-10T08:31:06Z 2134 376 2005-07-17T11:48:06Z 1 2020-02-15T06:59:40Z +5676 2005-07-10T08:38:32Z 3595 153 2005-07-13T10:11:32Z 1 2020-02-15T06:59:40Z +5677 2005-07-10T08:41:28Z 2647 105 2005-07-12T09:05:28Z 2 2020-02-15T06:59:40Z +5678 2005-07-10T08:42:42Z 4366 96 2005-07-19T03:48:42Z 1 2020-02-15T06:59:40Z +5679 2005-07-10T08:44:02Z 389 138 2005-07-14T05:30:02Z 1 2020-02-15T06:59:40Z +5680 2005-07-10T08:47:36Z 3503 199 2005-07-17T06:10:36Z 1 2020-02-15T06:59:40Z +5681 2005-07-10T08:48:39Z 4176 50 2005-07-18T07:17:39Z 1 2020-02-15T06:59:40Z +5682 2005-07-10T08:51:39Z 17 302 2005-07-12T14:44:39Z 2 2020-02-15T06:59:40Z +5683 2005-07-10T08:52:13Z 4433 285 2005-07-19T10:25:13Z 1 2020-02-15T06:59:40Z +5684 2005-07-10T08:59:03Z 99 132 2005-07-15T07:21:03Z 1 2020-02-15T06:59:40Z +5685 2005-07-10T09:01:38Z 1462 170 2005-07-17T10:58:38Z 1 2020-02-15T06:59:40Z +5686 2005-07-10T09:06:03Z 717 521 2005-07-11T10:59:03Z 2 2020-02-15T06:59:40Z +5687 2005-07-10T09:07:19Z 2170 363 2005-07-16T11:17:19Z 2 2020-02-15T06:59:40Z +5688 2005-07-10T09:16:08Z 3036 598 2005-07-15T09:44:08Z 1 2020-02-15T06:59:40Z +5689 2005-07-10T09:24:17Z 1731 381 2005-07-15T05:36:17Z 1 2020-02-15T06:59:40Z +5690 2005-07-10T09:26:49Z 1326 362 2005-07-19T07:17:49Z 2 2020-02-15T06:59:40Z +5691 2005-07-10T09:29:49Z 3526 466 2005-07-16T13:37:49Z 1 2020-02-15T06:59:40Z +5692 2005-07-10T09:32:22Z 59 244 2005-07-15T15:20:22Z 2 2020-02-15T06:59:40Z +5693 2005-07-10T09:35:43Z 2167 208 2005-07-12T08:05:43Z 2 2020-02-15T06:59:40Z +5694 2005-07-10T09:40:38Z 3476 57 2005-07-14T09:16:38Z 1 2020-02-15T06:59:40Z +5695 2005-07-10T09:43:40Z 440 459 2005-07-13T15:04:40Z 2 2020-02-15T06:59:40Z +5696 2005-07-10T09:44:32Z 128 96 2005-07-12T13:38:32Z 2 2020-02-15T06:59:40Z +5697 2005-07-10T09:44:44Z 934 515 2005-07-12T12:13:44Z 2 2020-02-15T06:59:40Z +5698 2005-07-10T09:47:00Z 639 46 2005-07-16T06:26:00Z 1 2020-02-15T06:59:40Z +5699 2005-07-10T09:48:04Z 958 211 2005-07-17T09:07:04Z 1 2020-02-15T06:59:40Z +5700 2005-07-10T09:49:42Z 3961 87 2005-07-19T04:20:42Z 1 2020-02-15T06:59:40Z +5701 2005-07-10T09:56:24Z 2395 91 2005-07-16T15:11:24Z 2 2020-02-15T06:59:40Z +5702 2005-07-10T10:00:01Z 3349 324 2005-07-11T15:29:01Z 1 2020-02-15T06:59:40Z +5703 2005-07-10T10:04:15Z 1585 132 2005-07-16T07:43:15Z 1 2020-02-15T06:59:40Z +5704 2005-07-10T10:06:29Z 2104 591 2005-07-17T10:48:29Z 1 2020-02-15T06:59:40Z +5705 2005-07-10T10:09:17Z 4030 300 2005-07-19T07:24:17Z 2 2020-02-15T06:59:40Z +5706 2005-07-10T10:21:46Z 3701 255 2005-07-16T04:37:46Z 2 2020-02-15T06:59:40Z +5707 2005-07-10T10:26:14Z 708 581 2005-07-18T06:19:14Z 1 2020-02-15T06:59:40Z +5708 2005-07-10T10:29:19Z 571 484 2005-07-18T06:50:19Z 1 2020-02-15T06:59:40Z +5709 2005-07-10T10:31:52Z 732 302 2005-07-12T10:47:52Z 1 2020-02-15T06:59:40Z +5710 2005-07-10T10:32:52Z 2843 265 2005-07-18T06:28:52Z 1 2020-02-15T06:59:40Z +5711 2005-07-10T10:37:20Z 3988 481 2005-07-13T11:20:20Z 1 2020-02-15T06:59:40Z +5712 2005-07-10T10:40:32Z 3480 304 2005-07-12T11:45:32Z 1 2020-02-15T06:59:40Z +5713 2005-07-10T10:46:15Z 1213 572 2005-07-19T14:34:15Z 1 2020-02-15T06:59:40Z +5714 2005-07-10T10:46:57Z 3706 17 2005-07-18T14:07:57Z 1 2020-02-15T06:59:40Z +5715 2005-07-10T10:48:03Z 1638 132 2005-07-18T11:27:03Z 1 2020-02-15T06:59:40Z +5716 2005-07-10T10:59:23Z 3416 102 2005-07-16T12:25:23Z 2 2020-02-15T06:59:40Z +5717 2005-07-10T11:02:03Z 529 15 2005-07-13T13:00:03Z 1 2020-02-15T06:59:40Z +5718 2005-07-10T11:03:20Z 3719 20 2005-07-19T15:38:20Z 2 2020-02-15T06:59:40Z +5719 2005-07-10T11:07:40Z 2100 94 2005-07-15T14:14:40Z 2 2020-02-15T06:59:40Z +5720 2005-07-10T11:09:12Z 576 339 2005-07-16T07:31:12Z 1 2020-02-15T06:59:40Z +5721 2005-07-10T11:09:35Z 2348 5 2005-07-17T16:41:35Z 2 2020-02-15T06:59:40Z +5722 2005-07-10T11:10:04Z 2890 556 2005-07-12T16:31:04Z 2 2020-02-15T06:59:40Z +5723 2005-07-10T11:14:48Z 605 33 2005-07-11T15:46:48Z 2 2020-02-15T06:59:40Z +5724 2005-07-10T11:18:12Z 3597 289 2005-07-16T14:53:12Z 2 2020-02-15T06:59:40Z +5725 2005-07-10T11:21:21Z 4293 426 2005-07-14T05:34:21Z 2 2020-02-15T06:59:40Z +5726 2005-07-10T11:22:08Z 3582 131 2005-07-13T05:55:08Z 1 2020-02-15T06:59:40Z +5727 2005-07-10T11:25:28Z 3338 550 2005-07-11T11:03:28Z 2 2020-02-15T06:59:40Z +5728 2005-07-10T11:26:14Z 636 335 2005-07-15T12:55:14Z 1 2020-02-15T06:59:40Z +5729 2005-07-10T11:27:25Z 4137 188 2005-07-15T06:13:25Z 2 2020-02-15T06:59:40Z +5730 2005-07-10T11:28:32Z 1903 301 2005-07-11T11:45:32Z 2 2020-02-15T06:59:40Z +5731 2005-07-10T11:31:52Z 2960 440 2005-07-14T11:44:52Z 1 2020-02-15T06:59:40Z +5732 2005-07-10T11:36:32Z 2833 597 2005-07-12T13:09:32Z 2 2020-02-15T06:59:40Z +5733 2005-07-10T11:37:24Z 3806 415 2005-07-11T12:34:24Z 2 2020-02-15T06:59:40Z +5734 2005-07-10T11:37:28Z 399 447 2005-07-16T11:10:28Z 1 2020-02-15T06:59:40Z +5735 2005-07-10T11:39:15Z 3259 65 2005-07-19T09:52:15Z 1 2020-02-15T06:59:40Z +5736 2005-07-10T11:45:48Z 1172 27 2005-07-13T16:40:48Z 1 2020-02-15T06:59:40Z +5737 2005-07-10T11:50:04Z 1118 218 2005-07-13T10:37:04Z 1 2020-02-15T06:59:40Z +5738 2005-07-10T11:50:51Z 200 187 2005-07-19T17:46:51Z 1 2020-02-15T06:59:40Z +5739 2005-07-10T11:51:50Z 163 219 2005-07-19T17:40:50Z 1 2020-02-15T06:59:40Z +5740 2005-07-10T11:51:58Z 2147 325 2005-07-12T07:53:58Z 2 2020-02-15T06:59:40Z +5741 2005-07-10T11:55:40Z 2041 513 2005-07-16T15:02:40Z 2 2020-02-15T06:59:40Z +5742 2005-07-10T11:56:18Z 3975 596 2005-07-19T06:59:18Z 2 2020-02-15T06:59:40Z +5743 2005-07-10T11:57:38Z 593 297 2005-07-19T15:38:38Z 2 2020-02-15T06:59:40Z +5744 2005-07-10T12:08:33Z 1372 437 2005-07-14T12:34:33Z 2 2020-02-15T06:59:40Z +5745 2005-07-10T12:10:11Z 41 305 2005-07-19T06:56:11Z 1 2020-02-15T06:59:40Z +5746 2005-07-10T12:15:12Z 3071 82 2005-07-16T07:02:12Z 1 2020-02-15T06:59:40Z +5747 2005-07-10T12:15:33Z 4562 583 2005-07-18T10:11:33Z 1 2020-02-15T06:59:40Z +5748 2005-07-10T12:19:59Z 1618 99 2005-07-12T12:59:59Z 1 2020-02-15T06:59:40Z +5749 2005-07-10T12:20:36Z 1768 304 2005-07-19T10:39:36Z 1 2020-02-15T06:59:40Z +5750 2005-07-10T12:20:41Z 3855 330 2005-07-17T08:25:41Z 2 2020-02-15T06:59:40Z +5751 2005-07-10T12:25:11Z 387 479 2005-07-11T15:23:11Z 1 2020-02-15T06:59:40Z +5752 2005-07-10T12:27:38Z 4444 86 2005-07-18T09:22:38Z 2 2020-02-15T06:59:40Z +5753 2005-07-10T12:29:43Z 3639 444 2005-07-17T12:50:43Z 2 2020-02-15T06:59:40Z +5754 2005-07-10T12:32:43Z 162 291 2005-07-12T13:11:43Z 2 2020-02-15T06:59:40Z +5755 2005-07-10T12:38:56Z 2760 2 2005-07-19T17:02:56Z 1 2020-02-15T06:59:40Z +5756 2005-07-10T12:39:28Z 130 183 2005-07-11T14:08:28Z 2 2020-02-15T06:59:40Z +5757 2005-07-10T12:40:17Z 1827 101 2005-07-12T14:02:17Z 1 2020-02-15T06:59:40Z +5758 2005-07-10T12:42:43Z 502 363 2005-07-16T10:18:43Z 2 2020-02-15T06:59:40Z +5759 2005-07-10T12:43:22Z 816 591 2005-07-16T16:42:22Z 1 2020-02-15T06:59:40Z +5760 2005-07-10T12:44:48Z 1050 154 2005-07-14T12:25:48Z 1 2020-02-15T06:59:40Z +5761 2005-07-10T12:45:36Z 1763 287 2005-07-13T10:05:36Z 2 2020-02-15T06:59:40Z +5762 2005-07-10T12:48:01Z 1815 217 2005-07-18T16:43:01Z 1 2020-02-15T06:59:40Z +5763 2005-07-10T12:58:12Z 753 397 2005-07-14T08:52:12Z 1 2020-02-15T06:59:40Z +5764 2005-07-10T12:58:16Z 1556 245 2005-07-19T07:28:16Z 1 2020-02-15T06:59:40Z +5765 2005-07-10T13:03:02Z 2619 293 2005-07-16T09:31:02Z 1 2020-02-15T06:59:40Z +5766 2005-07-10T13:07:31Z 7 406 2005-07-16T13:03:31Z 1 2020-02-15T06:59:40Z +5767 2005-07-10T13:13:18Z 2871 32 2005-07-17T14:41:18Z 2 2020-02-15T06:59:40Z +5768 2005-07-10T13:15:26Z 345 196 2005-07-15T09:42:26Z 1 2020-02-15T06:59:40Z +5769 2005-07-10T13:17:58Z 4052 141 2005-07-11T11:32:58Z 1 2020-02-15T06:59:40Z +5770 2005-07-10T13:21:28Z 914 71 2005-07-11T08:59:28Z 2 2020-02-15T06:59:40Z +5771 2005-07-10T13:26:45Z 3275 153 2005-07-14T15:43:45Z 1 2020-02-15T06:59:40Z +5772 2005-07-10T13:27:40Z 3635 21 2005-07-17T08:24:40Z 1 2020-02-15T06:59:40Z +5773 2005-07-10T13:31:09Z 3277 180 2005-07-15T08:21:09Z 2 2020-02-15T06:59:40Z +5774 2005-07-10T13:31:56Z 326 113 2005-07-18T07:32:56Z 1 2020-02-15T06:59:40Z +5775 2005-07-10T13:34:26Z 2175 325 2005-07-15T10:01:26Z 1 2020-02-15T06:59:40Z +5776 2005-07-10T13:35:22Z 3592 568 2005-07-12T17:58:22Z 1 2020-02-15T06:59:40Z +5777 2005-07-10T13:38:41Z 3959 40 2005-07-17T15:48:41Z 2 2020-02-15T06:59:40Z +5778 2005-07-10T13:41:37Z 4435 324 2005-07-14T16:26:37Z 1 2020-02-15T06:59:40Z +5779 2005-07-10T13:45:54Z 3266 244 2005-07-15T18:13:54Z 1 2020-02-15T06:59:40Z +5780 2005-07-10T13:46:23Z 168 516 2005-07-14T17:19:23Z 2 2020-02-15T06:59:40Z +5781 2005-07-10T13:49:30Z 3191 167 2005-07-11T12:11:30Z 2 2020-02-15T06:59:40Z +5782 2005-07-10T13:52:56Z 2514 440 2005-07-15T09:32:56Z 2 2020-02-15T06:59:40Z +5783 2005-07-10T13:55:33Z 3331 385 2005-07-16T12:13:33Z 1 2020-02-15T06:59:40Z +5784 2005-07-10T14:03:28Z 2323 422 2005-07-16T16:22:28Z 1 2020-02-15T06:59:40Z +5785 2005-07-10T14:06:03Z 142 211 2005-07-17T17:59:03Z 2 2020-02-15T06:59:40Z +5786 2005-07-10T14:06:44Z 2290 350 2005-07-14T19:55:44Z 2 2020-02-15T06:59:40Z +5787 2005-07-10T14:08:49Z 1075 44 2005-07-19T18:29:49Z 1 2020-02-15T06:59:40Z +5788 2005-07-10T14:10:22Z 1707 63 2005-07-14T19:46:22Z 2 2020-02-15T06:59:40Z +5789 2005-07-10T14:11:26Z 2601 571 2005-07-18T16:19:26Z 1 2020-02-15T06:59:40Z +5790 2005-07-10T14:15:21Z 1696 235 2005-07-14T08:53:21Z 2 2020-02-15T06:59:40Z +5791 2005-07-10T14:16:22Z 2795 319 2005-07-19T13:38:22Z 2 2020-02-15T06:59:40Z +5792 2005-07-10T14:22:19Z 4234 92 2005-07-19T09:08:19Z 1 2020-02-15T06:59:40Z +5793 2005-07-10T14:33:00Z 2927 268 2005-07-13T19:27:00Z 1 2020-02-15T06:59:40Z +5794 2005-07-10T14:34:53Z 1164 198 2005-07-17T11:50:53Z 2 2020-02-15T06:59:40Z +5795 2005-07-10T14:36:29Z 3958 304 2005-07-14T13:26:29Z 1 2020-02-15T06:59:40Z +5796 2005-07-10T14:42:54Z 1631 286 2005-07-17T08:47:54Z 2 2020-02-15T06:59:40Z +5797 2005-07-10T14:43:52Z 1880 384 2005-07-13T16:12:52Z 2 2020-02-15T06:59:40Z +5798 2005-07-10T14:45:09Z 331 107 2005-07-16T13:43:09Z 1 2020-02-15T06:59:40Z +5799 2005-07-10T14:53:35Z 3045 520 2005-07-14T16:18:35Z 2 2020-02-15T06:59:40Z +5800 2005-07-10T14:58:36Z 2466 411 2005-07-11T19:50:36Z 2 2020-02-15T06:59:40Z +5801 2005-07-10T14:59:05Z 3511 439 2005-07-14T17:55:05Z 2 2020-02-15T06:59:40Z +5802 2005-07-10T15:02:17Z 2295 520 2005-07-19T15:43:17Z 2 2020-02-15T06:59:40Z +5803 2005-07-10T15:05:42Z 1982 244 2005-07-15T10:19:42Z 1 2020-02-15T06:59:40Z +5804 2005-07-10T15:06:31Z 2168 137 2005-07-14T11:00:31Z 1 2020-02-15T06:59:40Z +5805 2005-07-10T15:08:41Z 3553 532 2005-07-19T16:35:41Z 2 2020-02-15T06:59:40Z +5806 2005-07-10T15:11:54Z 29 108 2005-07-15T11:51:54Z 2 2020-02-15T06:59:40Z +5807 2005-07-10T15:16:30Z 2092 301 2005-07-11T14:02:30Z 2 2020-02-15T06:59:40Z +5808 2005-07-10T15:17:33Z 2310 170 2005-07-14T12:14:33Z 2 2020-02-15T06:59:40Z +5809 2005-07-10T15:19:30Z 1748 461 2005-07-13T12:31:30Z 2 2020-02-15T06:59:40Z +5810 2005-07-10T15:22:04Z 1426 482 2005-07-18T21:05:04Z 2 2020-02-15T06:59:40Z +5811 2005-07-10T15:27:04Z 4007 441 2005-07-12T17:20:04Z 1 2020-02-15T06:59:40Z +5812 2005-07-10T15:27:56Z 1681 581 2005-07-18T15:37:56Z 2 2020-02-15T06:59:40Z +5813 2005-07-10T15:34:37Z 942 512 2005-07-17T16:14:37Z 2 2020-02-15T06:59:40Z +5814 2005-07-10T15:46:50Z 2537 71 2005-07-13T15:28:50Z 2 2020-02-15T06:59:40Z +5815 2005-07-10T15:48:19Z 2934 22 2005-07-13T12:09:19Z 1 2020-02-15T06:59:40Z +5816 2005-07-10T15:48:47Z 1746 382 2005-07-13T11:51:47Z 2 2020-02-15T06:59:40Z +5817 2005-07-10T15:49:12Z 2993 28 2005-07-18T19:30:12Z 2 2020-02-15T06:59:40Z +5818 2005-07-10T15:51:12Z 3940 334 2005-07-14T14:10:12Z 2 2020-02-15T06:59:40Z +5819 2005-07-10T15:56:20Z 3439 347 2005-07-12T19:59:20Z 2 2020-02-15T06:59:40Z +5820 2005-07-10T16:04:59Z 1511 485 2005-07-16T12:10:59Z 1 2020-02-15T06:59:40Z +5821 2005-07-10T16:07:16Z 147 302 2005-07-14T19:48:16Z 1 2020-02-15T06:59:40Z +5822 2005-07-10T16:10:39Z 1385 38 2005-07-13T19:05:39Z 2 2020-02-15T06:59:40Z +5823 2005-07-10T16:19:52Z 1879 483 2005-07-11T12:33:52Z 2 2020-02-15T06:59:40Z +5824 2005-07-10T16:19:53Z 1980 449 2005-07-12T11:17:53Z 2 2020-02-15T06:59:40Z +5825 2005-07-10T16:20:30Z 3843 444 2005-07-11T18:58:30Z 1 2020-02-15T06:59:40Z +5826 2005-07-10T16:21:02Z 4104 254 2005-07-17T21:08:02Z 1 2020-02-15T06:59:40Z +5827 2005-07-10T16:22:20Z 1296 290 2005-07-15T21:13:20Z 2 2020-02-15T06:59:40Z +5828 2005-07-10T16:27:25Z 2999 156 2005-07-11T18:42:25Z 1 2020-02-15T06:59:40Z +5829 2005-07-10T16:29:41Z 3405 118 2005-07-14T22:03:41Z 1 2020-02-15T06:59:40Z +5830 2005-07-10T16:34:00Z 2358 59 2005-07-18T16:42:00Z 1 2020-02-15T06:59:40Z +5831 2005-07-10T16:34:02Z 830 43 2005-07-11T14:27:02Z 2 2020-02-15T06:59:40Z +5832 2005-07-10T16:34:48Z 2387 63 2005-07-17T17:25:48Z 1 2020-02-15T06:59:40Z +5833 2005-07-10T16:39:24Z 3829 187 2005-07-17T12:52:24Z 1 2020-02-15T06:59:40Z +5834 2005-07-10T16:44:12Z 85 360 2005-07-14T11:34:12Z 2 2020-02-15T06:59:40Z +5835 2005-07-10T16:44:58Z 800 11 2005-07-17T16:03:58Z 2 2020-02-15T06:59:40Z +5836 2005-07-10T16:49:02Z 1842 310 2005-07-11T22:35:02Z 2 2020-02-15T06:59:40Z +5837 2005-07-10T16:57:50Z 1648 478 2005-07-18T14:07:50Z 2 2020-02-15T06:59:40Z +5838 2005-07-10T17:04:56Z 1627 202 2005-07-11T15:15:56Z 1 2020-02-15T06:59:40Z +5839 2005-07-10T17:08:30Z 252 367 2005-07-13T21:21:30Z 2 2020-02-15T06:59:40Z +5840 2005-07-10T17:09:09Z 1073 72 2005-07-15T22:52:09Z 1 2020-02-15T06:59:40Z +5841 2005-07-10T17:11:31Z 1230 525 2005-07-18T15:50:31Z 2 2020-02-15T06:59:40Z +5842 2005-07-10T17:11:37Z 139 247 2005-07-14T21:43:37Z 1 2020-02-15T06:59:40Z +5843 2005-07-10T17:14:27Z 1615 599 2005-07-15T21:18:27Z 2 2020-02-15T06:59:40Z +5844 2005-07-10T17:14:43Z 609 147 2005-07-12T19:27:43Z 1 2020-02-15T06:59:40Z +5845 2005-07-10T17:23:14Z 2882 334 2005-07-12T16:29:14Z 2 2020-02-15T06:59:40Z +5846 2005-07-10T17:25:24Z 938 233 2005-07-12T13:41:24Z 2 2020-02-15T06:59:40Z +5847 2005-07-10T17:27:42Z 4403 220 2005-07-12T14:51:42Z 2 2020-02-15T06:59:40Z +5848 2005-07-10T17:28:14Z 4549 409 2005-07-14T11:54:14Z 1 2020-02-15T06:59:40Z +5849 2005-07-10T17:32:33Z 1632 44 2005-07-19T22:39:33Z 1 2020-02-15T06:59:40Z +5850 2005-07-10T17:36:27Z 4015 531 2005-07-15T16:44:27Z 2 2020-02-15T06:59:40Z +5851 2005-07-10T17:40:47Z 3944 510 2005-07-11T19:24:47Z 2 2020-02-15T06:59:40Z +5852 2005-07-10T17:43:30Z 3890 484 2005-07-15T15:05:30Z 2 2020-02-15T06:59:40Z +5853 2005-07-10T17:45:13Z 3026 520 2005-07-17T21:37:13Z 1 2020-02-15T06:59:40Z +5854 2005-07-10T17:47:34Z 997 547 2005-07-13T20:14:34Z 2 2020-02-15T06:59:40Z +5855 2005-07-10T17:54:06Z 2457 166 2005-07-18T15:41:06Z 2 2020-02-15T06:59:40Z +5856 2005-07-10T17:57:32Z 497 314 2005-07-11T13:57:32Z 1 2020-02-15T06:59:40Z +5857 2005-07-10T17:59:29Z 1265 29 2005-07-18T18:13:29Z 1 2020-02-15T06:59:40Z +5858 2005-07-10T18:00:07Z 2913 257 2005-07-11T20:01:07Z 2 2020-02-15T06:59:40Z +5859 2005-07-10T18:02:02Z 131 220 2005-07-11T23:24:02Z 1 2020-02-15T06:59:40Z +5860 2005-07-10T18:08:49Z 3897 180 2005-07-16T16:43:49Z 2 2020-02-15T06:59:40Z +5861 2005-07-10T18:14:22Z 3881 277 2005-07-14T15:32:22Z 1 2020-02-15T06:59:40Z +5862 2005-07-10T18:20:48Z 2075 157 2005-07-17T00:09:48Z 1 2020-02-15T06:59:40Z +5863 2005-07-10T18:25:23Z 2557 419 2005-07-15T23:49:23Z 1 2020-02-15T06:59:40Z +5864 2005-07-10T18:29:57Z 4380 437 2005-07-19T14:27:57Z 2 2020-02-15T06:59:40Z +5865 2005-07-10T18:31:05Z 1382 126 2005-07-12T18:29:05Z 2 2020-02-15T06:59:40Z +5866 2005-07-10T18:35:14Z 457 484 2005-07-19T19:41:14Z 2 2020-02-15T06:59:40Z +5867 2005-07-10T18:39:01Z 730 321 2005-07-19T21:56:01Z 2 2020-02-15T06:59:40Z +5868 2005-07-10T18:39:16Z 452 429 2005-07-15T21:19:16Z 1 2020-02-15T06:59:40Z +5869 2005-07-10T18:40:09Z 2157 40 2005-07-17T18:42:09Z 1 2020-02-15T06:59:40Z +5870 2005-07-10T18:40:25Z 1524 438 2005-07-12T15:39:25Z 2 2020-02-15T06:59:40Z +5871 2005-07-10T18:46:08Z 3288 307 2005-07-16T17:32:08Z 1 2020-02-15T06:59:40Z +5872 2005-07-10T18:54:05Z 270 364 2005-07-19T15:41:05Z 1 2020-02-15T06:59:40Z +5873 2005-07-10T19:02:10Z 3151 354 2005-07-14T19:13:10Z 2 2020-02-15T06:59:40Z +5874 2005-07-10T19:02:51Z 2255 131 2005-07-16T13:14:51Z 1 2020-02-15T06:59:40Z +5875 2005-07-10T19:06:47Z 964 575 2005-07-18T17:33:47Z 2 2020-02-15T06:59:40Z +5876 2005-07-10T19:07:15Z 4445 578 2005-07-14T17:29:15Z 2 2020-02-15T06:59:40Z +5877 2005-07-10T19:08:51Z 1520 537 2005-07-19T19:48:51Z 1 2020-02-15T06:59:40Z +5878 2005-07-10T19:09:57Z 3805 271 2005-07-16T17:22:57Z 1 2020-02-15T06:59:40Z +5879 2005-07-10T19:12:47Z 3851 430 2005-07-16T16:32:47Z 1 2020-02-15T06:59:40Z +5880 2005-07-10T19:14:58Z 359 482 2005-07-17T01:13:58Z 1 2020-02-15T06:59:40Z +5881 2005-07-10T19:19:43Z 236 25 2005-07-12T20:11:43Z 1 2020-02-15T06:59:40Z +5882 2005-07-10T19:20:34Z 2830 319 2005-07-11T18:39:34Z 2 2020-02-15T06:59:40Z +5883 2005-07-10T19:25:21Z 2820 17 2005-07-16T20:50:21Z 2 2020-02-15T06:59:40Z +5884 2005-07-10T19:31:38Z 916 498 2005-07-11T20:30:38Z 1 2020-02-15T06:59:40Z +5885 2005-07-10T19:33:50Z 3129 331 2005-07-17T00:26:50Z 2 2020-02-15T06:59:40Z +5886 2005-07-10T19:36:25Z 907 215 2005-07-11T22:24:25Z 2 2020-02-15T06:59:40Z +5887 2005-07-10T19:45:47Z 2602 532 2005-07-15T22:15:47Z 1 2020-02-15T06:59:40Z +5888 2005-07-10T19:52:17Z 1620 268 2005-07-18T20:32:17Z 2 2020-02-15T06:59:40Z +5889 2005-07-10T19:54:41Z 1706 491 2005-07-12T20:08:41Z 2 2020-02-15T06:59:40Z +5890 2005-07-10T20:00:25Z 1463 535 2005-07-18T17:57:25Z 2 2020-02-15T06:59:40Z +5891 2005-07-10T20:01:17Z 4355 184 2005-07-12T00:15:17Z 1 2020-02-15T06:59:40Z +5892 2005-07-10T20:02:42Z 4322 333 2005-07-11T20:02:42Z 1 2020-02-15T06:59:40Z +5893 2005-07-10T20:05:30Z 1689 439 2005-07-14T23:05:30Z 1 2020-02-15T06:59:40Z +5894 2005-07-10T20:09:34Z 2264 194 2005-07-17T15:39:34Z 1 2020-02-15T06:59:40Z +5895 2005-07-10T20:13:19Z 2272 164 2005-07-17T17:51:19Z 1 2020-02-15T06:59:40Z +5896 2005-07-10T20:15:56Z 731 357 2005-07-12T00:39:56Z 1 2020-02-15T06:59:40Z +5897 2005-07-10T20:16:14Z 740 413 2005-07-19T15:49:14Z 2 2020-02-15T06:59:40Z +5898 2005-07-10T20:18:09Z 3257 538 2005-07-16T14:44:09Z 1 2020-02-15T06:59:40Z +5899 2005-07-10T20:21:52Z 1391 388 2005-07-13T00:46:52Z 1 2020-02-15T06:59:40Z +5900 2005-07-10T20:21:54Z 1081 419 2005-07-17T00:26:54Z 1 2020-02-15T06:59:40Z +5901 2005-07-10T20:22:12Z 86 165 2005-07-19T16:43:12Z 2 2020-02-15T06:59:40Z +5902 2005-07-10T20:31:24Z 2727 228 2005-07-11T20:50:24Z 1 2020-02-15T06:59:40Z +5903 2005-07-10T20:39:04Z 1388 573 2005-07-11T17:41:04Z 1 2020-02-15T06:59:40Z +5904 2005-07-10T20:39:44Z 350 531 2005-07-13T17:57:44Z 2 2020-02-15T06:59:40Z +5905 2005-07-10T20:41:09Z 3891 10 2005-07-19T14:49:09Z 1 2020-02-15T06:59:40Z +5906 2005-07-10T20:41:41Z 514 323 2005-07-14T00:12:41Z 2 2020-02-15T06:59:40Z +5907 2005-07-10T20:41:41Z 4432 168 2005-07-15T21:18:41Z 2 2020-02-15T06:59:40Z +5908 2005-07-10T20:44:14Z 810 156 2005-07-13T15:05:14Z 2 2020-02-15T06:59:40Z +5909 2005-07-10T20:46:13Z 2333 44 2005-07-14T18:01:13Z 2 2020-02-15T06:59:40Z +5910 2005-07-10T20:51:34Z 1039 464 2005-07-19T14:54:34Z 1 2020-02-15T06:59:40Z +5911 2005-07-10T20:51:42Z 4140 420 2005-07-14T21:58:42Z 2 2020-02-15T06:59:40Z +5912 2005-07-10T20:58:22Z 1187 351 2005-07-17T01:15:22Z 2 2020-02-15T06:59:40Z +5913 2005-07-10T20:58:55Z 2767 277 2005-07-13T15:18:55Z 1 2020-02-15T06:59:40Z +5914 2005-07-10T21:01:12Z 2639 372 2005-07-16T18:27:12Z 2 2020-02-15T06:59:40Z +5915 2005-07-10T21:12:16Z 2464 66 2005-07-15T16:59:16Z 2 2020-02-15T06:59:40Z +5916 2005-07-10T21:26:31Z 2267 35 2005-07-19T20:23:31Z 1 2020-02-15T06:59:40Z +5917 2005-07-10T21:30:22Z 2910 74 2005-07-12T18:54:22Z 2 2020-02-15T06:59:40Z +5918 2005-07-10T21:32:06Z 120 34 2005-07-19T21:35:06Z 1 2020-02-15T06:59:40Z +5919 2005-07-10T21:32:14Z 164 92 2005-07-12T16:47:14Z 1 2020-02-15T06:59:40Z +5920 2005-07-10T21:33:58Z 1893 221 2005-07-17T19:41:58Z 2 2020-02-15T06:59:40Z +5921 2005-07-10T21:35:12Z 3920 7 2005-07-18T19:59:12Z 1 2020-02-15T06:59:40Z +5922 2005-07-10T21:36:53Z 1392 271 2005-07-16T02:51:53Z 1 2020-02-15T06:59:40Z +5923 2005-07-10T21:40:06Z 1817 401 2005-07-13T00:01:06Z 1 2020-02-15T06:59:40Z +5924 2005-07-10T21:41:23Z 629 191 2005-07-16T21:33:23Z 1 2020-02-15T06:59:40Z +5925 2005-07-10T21:41:27Z 3724 503 2005-07-18T18:35:27Z 2 2020-02-15T06:59:40Z +5926 2005-07-10T21:53:42Z 2840 282 2005-07-20T01:04:42Z 1 2020-02-15T06:59:40Z +5927 2005-07-10T21:57:14Z 807 70 2005-07-16T19:32:14Z 1 2020-02-15T06:59:40Z +5928 2005-07-10T21:58:30Z 4132 50 2005-07-15T19:41:30Z 1 2020-02-15T06:59:40Z +5929 2005-07-10T21:59:29Z 4303 54 2005-07-14T20:20:29Z 2 2020-02-15T06:59:40Z +5930 2005-07-10T21:59:32Z 2338 254 2005-07-11T18:40:32Z 2 2020-02-15T06:59:40Z +5931 2005-07-10T22:04:19Z 2259 341 2005-07-13T00:45:19Z 2 2020-02-15T06:59:40Z +5932 2005-07-10T22:05:15Z 2269 523 2005-07-12T17:04:15Z 2 2020-02-15T06:59:40Z +5933 2005-07-10T22:06:48Z 4372 419 2005-07-12T23:58:48Z 2 2020-02-15T06:59:40Z +5934 2005-07-10T22:07:59Z 3825 576 2005-07-15T21:07:59Z 2 2020-02-15T06:59:40Z +5935 2005-07-10T22:11:04Z 3371 258 2005-07-19T18:12:04Z 2 2020-02-15T06:59:40Z +5936 2005-07-10T22:14:30Z 1951 522 2005-07-15T01:32:30Z 1 2020-02-15T06:59:40Z +5937 2005-07-10T22:16:08Z 1579 580 2005-07-16T03:08:08Z 2 2020-02-15T06:59:40Z +5938 2005-07-10T22:17:42Z 2834 236 2005-07-16T22:38:42Z 2 2020-02-15T06:59:40Z +5939 2005-07-10T22:30:05Z 4491 207 2005-07-14T00:02:05Z 2 2020-02-15T06:59:40Z +5940 2005-07-10T22:31:01Z 3295 292 2005-07-14T00:52:01Z 1 2020-02-15T06:59:40Z +5941 2005-07-10T22:40:47Z 492 43 2005-07-17T00:19:47Z 2 2020-02-15T06:59:40Z +5942 2005-07-10T22:47:17Z 2861 317 2005-07-17T01:54:17Z 2 2020-02-15T06:59:40Z +5943 2005-07-10T22:48:13Z 3019 255 2005-07-16T01:33:13Z 1 2020-02-15T06:59:40Z +5944 2005-07-10T22:51:44Z 3904 432 2005-07-18T17:54:44Z 2 2020-02-15T06:59:40Z +5945 2005-07-10T22:52:42Z 427 374 2005-07-11T21:52:42Z 1 2020-02-15T06:59:40Z +5946 2005-07-10T22:57:29Z 1629 308 2005-07-12T00:08:29Z 1 2020-02-15T06:59:40Z +5947 2005-07-10T23:07:42Z 327 331 2005-07-18T23:13:42Z 1 2020-02-15T06:59:40Z +5948 2005-07-10T23:12:08Z 3260 57 2005-07-18T19:06:08Z 2 2020-02-15T06:59:40Z +5949 2005-07-10T23:13:00Z 4397 496 2005-07-14T01:10:00Z 2 2020-02-15T06:59:40Z +5950 2005-07-10T23:13:45Z 4319 585 2005-07-13T02:35:45Z 1 2020-02-15T06:59:40Z +5951 2005-07-10T23:14:29Z 2501 589 2005-07-13T01:01:29Z 1 2020-02-15T06:59:40Z +5952 2005-07-10T23:18:20Z 3406 595 2005-07-16T17:42:20Z 1 2020-02-15T06:59:40Z +5953 2005-07-10T23:21:35Z 992 386 2005-07-14T20:48:35Z 2 2020-02-15T06:59:40Z +5954 2005-07-10T23:22:01Z 2627 32 2005-07-14T04:42:01Z 2 2020-02-15T06:59:40Z +5955 2005-07-10T23:22:10Z 834 409 2005-07-17T17:55:10Z 2 2020-02-15T06:59:40Z +5956 2005-07-10T23:23:08Z 2536 499 2005-07-13T17:36:08Z 1 2020-02-15T06:59:40Z +5957 2005-07-10T23:24:02Z 2517 210 2005-07-12T20:28:02Z 1 2020-02-15T06:59:40Z +5958 2005-07-10T23:31:51Z 3468 430 2005-07-19T00:36:51Z 2 2020-02-15T06:59:40Z +5959 2005-07-10T23:35:36Z 3169 436 2005-07-13T02:19:36Z 1 2020-02-15T06:59:40Z +5960 2005-07-10T23:38:34Z 3884 239 2005-07-11T19:21:34Z 1 2020-02-15T06:59:40Z +5961 2005-07-10T23:43:23Z 3537 21 2005-07-15T05:21:23Z 2 2020-02-15T06:59:40Z +5962 2005-07-10T23:45:22Z 1292 507 2005-07-13T03:49:22Z 2 2020-02-15T06:59:40Z +5963 2005-07-10T23:47:08Z 4434 35 2005-07-12T04:27:08Z 1 2020-02-15T06:59:40Z +5964 2005-07-10T23:47:18Z 3981 456 2005-07-12T03:55:18Z 2 2020-02-15T06:59:40Z +5965 2005-07-10T23:51:52Z 4476 348 2005-07-11T23:29:52Z 1 2020-02-15T06:59:40Z +5966 2005-07-10T23:59:27Z 2076 384 2005-07-14T23:38:27Z 2 2020-02-15T06:59:40Z +5967 2005-07-11T00:02:19Z 2125 215 2005-07-18T23:08:19Z 1 2020-02-15T06:59:40Z +5968 2005-07-11T00:03:11Z 3273 554 2005-07-19T18:46:11Z 1 2020-02-15T06:59:40Z +5969 2005-07-11T00:03:22Z 4177 433 2005-07-18T01:28:22Z 2 2020-02-15T06:59:40Z +5970 2005-07-11T00:04:50Z 1514 94 2005-07-19T03:36:50Z 1 2020-02-15T06:59:40Z +5971 2005-07-11T00:05:58Z 2191 84 2005-07-19T04:50:58Z 2 2020-02-15T06:59:40Z +5972 2005-07-11T00:08:54Z 4577 30 2005-07-17T21:01:54Z 1 2020-02-15T06:59:40Z +5973 2005-07-11T00:09:17Z 1194 165 2005-07-14T19:18:17Z 1 2020-02-15T06:59:40Z +5974 2005-07-11T00:10:37Z 3984 517 2005-07-18T18:48:37Z 2 2020-02-15T06:59:40Z +5975 2005-07-11T00:14:19Z 2997 15 2005-07-16T04:21:19Z 1 2020-02-15T06:59:40Z +5976 2005-07-11T00:16:35Z 1693 505 2005-07-20T01:30:35Z 2 2020-02-15T06:59:40Z +5977 2005-07-11T00:16:38Z 4011 484 2005-07-19T21:00:38Z 1 2020-02-15T06:59:40Z +5978 2005-07-11T00:16:54Z 1720 508 2005-07-19T18:55:54Z 1 2020-02-15T06:59:40Z +5979 2005-07-11T00:17:09Z 1736 251 2005-07-14T00:38:09Z 1 2020-02-15T06:59:40Z +5980 2005-07-11T00:18:21Z 1777 309 2005-07-14T21:26:21Z 1 2020-02-15T06:59:40Z +5981 2005-07-11T00:19:04Z 2151 241 2005-07-13T19:10:04Z 1 2020-02-15T06:59:40Z +5982 2005-07-11T00:24:44Z 2329 403 2005-07-14T04:42:44Z 2 2020-02-15T06:59:40Z +5983 2005-07-11T00:34:11Z 351 127 2005-07-15T05:37:11Z 1 2020-02-15T06:59:40Z +5984 2005-07-11T00:44:36Z 2801 178 2005-07-15T00:04:36Z 1 2020-02-15T06:59:40Z +5985 2005-07-11T00:51:58Z 1108 506 2005-07-14T22:02:58Z 2 2020-02-15T06:59:40Z +5986 2005-07-11T00:54:56Z 1624 171 2005-07-13T22:52:56Z 2 2020-02-15T06:59:40Z +5987 2005-07-11T00:55:31Z 1000 447 2005-07-16T06:28:31Z 2 2020-02-15T06:59:40Z +5988 2005-07-11T00:55:38Z 151 158 2005-07-13T21:36:38Z 2 2020-02-15T06:59:40Z +5989 2005-07-11T00:57:53Z 696 283 2005-07-15T02:24:53Z 1 2020-02-15T06:59:40Z +5990 2005-07-11T01:03:14Z 1561 432 2005-07-15T19:32:14Z 1 2020-02-15T06:59:40Z +5991 2005-07-11T01:03:38Z 3623 590 2005-07-12T22:32:38Z 2 2020-02-15T06:59:40Z +5992 2005-07-11T01:06:21Z 4216 54 2005-07-13T19:15:21Z 2 2020-02-15T06:59:40Z +5993 2005-07-11T01:06:41Z 3588 529 2005-07-14T19:19:41Z 1 2020-02-15T06:59:40Z +5994 2005-07-11T01:14:10Z 4287 295 2005-07-12T00:42:10Z 2 2020-02-15T06:59:40Z +5995 2005-07-11T01:15:39Z 4357 360 2005-07-20T05:01:39Z 2 2020-02-15T06:59:40Z +5996 2005-07-11T01:18:33Z 4263 223 2005-07-17T04:18:33Z 1 2020-02-15T06:59:40Z +5997 2005-07-11T01:19:50Z 3542 128 2005-07-16T06:29:50Z 1 2020-02-15T06:59:40Z +5998 2005-07-11T01:20:46Z 1458 250 2005-07-15T21:41:46Z 1 2020-02-15T06:59:40Z +5999 2005-07-11T01:21:22Z 211 450 2005-07-19T01:35:22Z 1 2020-02-15T06:59:40Z +6000 2005-07-11T01:23:06Z 1986 371 2005-07-12T04:39:06Z 2 2020-02-15T06:59:40Z +6001 2005-07-11T01:24:44Z 1779 45 2005-07-11T22:55:44Z 1 2020-02-15T06:59:40Z +6002 2005-07-11T01:27:49Z 4422 45 2005-07-12T06:02:49Z 1 2020-02-15T06:59:40Z +6003 2005-07-11T01:28:33Z 296 527 2005-07-17T21:24:33Z 1 2020-02-15T06:59:40Z +6004 2005-07-11T01:34:25Z 1756 204 2005-07-18T00:48:25Z 2 2020-02-15T06:59:40Z +6005 2005-07-11T01:36:42Z 809 78 2005-07-14T04:47:42Z 2 2020-02-15T06:59:40Z +6006 2005-07-11T01:38:42Z 4201 399 2005-07-17T05:18:42Z 2 2020-02-15T06:59:40Z +6007 2005-07-11T01:43:06Z 4393 289 2005-07-17T04:46:06Z 1 2020-02-15T06:59:40Z +6008 2005-07-11T01:51:29Z 1227 216 2005-07-18T01:39:29Z 1 2020-02-15T06:59:40Z +6009 2005-07-11T01:51:58Z 494 470 2005-07-18T07:12:58Z 2 2020-02-15T06:59:40Z +6010 2005-07-11T01:52:28Z 771 285 2005-07-13T03:13:28Z 1 2020-02-15T06:59:40Z +6011 2005-07-11T01:54:48Z 3899 527 2005-07-18T07:17:48Z 2 2020-02-15T06:59:40Z +6012 2005-07-11T02:00:12Z 2609 258 2005-07-17T02:49:12Z 2 2020-02-15T06:59:40Z +6013 2005-07-11T02:02:03Z 3774 543 2005-07-14T02:07:03Z 1 2020-02-15T06:59:40Z +6014 2005-07-11T02:02:55Z 3748 397 2005-07-12T23:49:55Z 1 2020-02-15T06:59:40Z +6015 2005-07-11T02:04:12Z 295 596 2005-07-13T02:43:12Z 2 2020-02-15T06:59:40Z +6016 2005-07-11T02:04:45Z 651 296 2005-07-17T22:22:45Z 1 2020-02-15T06:59:40Z +6017 2005-07-11T02:05:32Z 4088 596 2005-07-14T22:50:32Z 1 2020-02-15T06:59:40Z +6018 2005-07-11T02:06:36Z 4555 500 2005-07-12T02:16:36Z 2 2020-02-15T06:59:40Z +6019 2005-07-11T02:08:29Z 3483 9 2005-07-13T02:19:29Z 2 2020-02-15T06:59:40Z +6020 2005-07-11T02:08:55Z 1974 71 2005-07-16T22:07:55Z 1 2020-02-15T06:59:40Z +6021 2005-07-11T02:10:18Z 3949 173 2005-07-13T05:19:18Z 1 2020-02-15T06:59:40Z +6022 2005-07-11T02:15:53Z 2435 469 2005-07-13T03:40:53Z 2 2020-02-15T06:59:40Z +6023 2005-07-11T02:15:57Z 3794 456 2005-07-15T21:30:57Z 2 2020-02-15T06:59:40Z +6024 2005-07-11T02:16:47Z 2923 271 2005-07-12T05:54:47Z 1 2020-02-15T06:59:40Z +6025 2005-07-11T02:18:13Z 3306 113 2005-07-11T23:30:13Z 1 2020-02-15T06:59:40Z +6026 2005-07-11T02:21:43Z 3936 409 2005-07-13T03:49:43Z 1 2020-02-15T06:59:40Z +6027 2005-07-11T02:26:29Z 4536 513 2005-07-18T23:05:29Z 1 2020-02-15T06:59:40Z +6028 2005-07-11T02:31:44Z 784 450 2005-07-14T03:18:44Z 1 2020-02-15T06:59:40Z +6029 2005-07-11T02:36:46Z 2030 520 2005-07-14T20:51:46Z 2 2020-02-15T06:59:40Z +6030 2005-07-11T02:37:51Z 95 36 2005-07-16T22:34:51Z 2 2020-02-15T06:59:40Z +6031 2005-07-11T02:42:14Z 1530 224 2005-07-14T03:24:14Z 2 2020-02-15T06:59:40Z +6032 2005-07-11T02:49:01Z 3792 28 2005-07-18T05:05:01Z 2 2020-02-15T06:59:40Z +6033 2005-07-11T02:59:34Z 2819 322 2005-07-16T03:48:34Z 2 2020-02-15T06:59:40Z +6034 2005-07-11T03:00:50Z 1735 324 2005-07-16T06:19:50Z 1 2020-02-15T06:59:40Z +6035 2005-07-11T03:01:45Z 3474 176 2005-07-14T01:04:45Z 2 2020-02-15T06:59:40Z +6036 2005-07-11T03:02:28Z 2553 297 2005-07-15T22:12:28Z 2 2020-02-15T06:59:40Z +6037 2005-07-11T03:06:54Z 1886 386 2005-07-12T22:46:54Z 2 2020-02-15T06:59:40Z +6038 2005-07-11T03:10:37Z 1555 243 2005-07-19T05:14:37Z 2 2020-02-15T06:59:40Z +6039 2005-07-11T03:12:19Z 1776 137 2005-07-19T05:46:19Z 1 2020-02-15T06:59:40Z +6040 2005-07-11T03:14:26Z 2161 511 2005-07-14T01:12:26Z 2 2020-02-15T06:59:40Z +6041 2005-07-11T03:14:58Z 2815 551 2005-07-13T00:48:58Z 2 2020-02-15T06:59:40Z +6042 2005-07-11T03:17:04Z 2153 5 2005-07-19T07:08:04Z 1 2020-02-15T06:59:40Z +6043 2005-07-11T03:18:10Z 3303 430 2005-07-12T05:50:10Z 1 2020-02-15T06:59:40Z +6044 2005-07-11T03:18:39Z 1270 481 2005-07-13T06:58:39Z 2 2020-02-15T06:59:40Z +6045 2005-07-11T03:21:05Z 2003 39 2005-07-17T23:10:05Z 1 2020-02-15T06:59:40Z +6046 2005-07-11T03:21:49Z 1935 569 2005-07-19T23:58:49Z 1 2020-02-15T06:59:40Z +6047 2005-07-11T03:27:01Z 4147 235 2005-07-16T06:42:01Z 2 2020-02-15T06:59:40Z +6048 2005-07-11T03:32:23Z 975 154 2005-07-14T07:39:23Z 1 2020-02-15T06:59:40Z +6049 2005-07-11T03:32:32Z 2582 236 2005-07-15T06:57:32Z 2 2020-02-15T06:59:40Z +6050 2005-07-11T03:34:29Z 825 527 2005-07-15T02:55:29Z 1 2020-02-15T06:59:40Z +6051 2005-07-11T03:46:41Z 2675 435 2005-07-11T22:36:41Z 2 2020-02-15T06:59:40Z +6052 2005-07-11T03:51:27Z 881 75 2005-07-16T02:55:27Z 2 2020-02-15T06:59:40Z +6053 2005-07-11T03:51:59Z 2836 237 2005-07-19T09:13:59Z 2 2020-02-15T06:59:40Z +6054 2005-07-11T03:58:39Z 1176 354 2005-07-13T23:08:39Z 1 2020-02-15T06:59:40Z +6055 2005-07-11T03:59:08Z 595 125 2005-07-18T05:35:08Z 2 2020-02-15T06:59:40Z +6056 2005-07-11T04:01:27Z 3069 145 2005-07-12T04:14:27Z 1 2020-02-15T06:59:40Z +6057 2005-07-11T04:03:40Z 1340 187 2005-07-17T01:34:40Z 2 2020-02-15T06:59:40Z +6058 2005-07-11T04:03:51Z 3761 498 2005-07-14T03:52:51Z 1 2020-02-15T06:59:40Z +6059 2005-07-11T04:03:54Z 1437 394 2005-07-18T01:35:54Z 1 2020-02-15T06:59:40Z +6060 2005-07-11T04:06:17Z 3146 342 2005-07-12T03:05:17Z 1 2020-02-15T06:59:40Z +6061 2005-07-11T04:06:25Z 1859 392 2005-07-11T23:11:25Z 1 2020-02-15T06:59:40Z +6062 2005-07-11T04:11:58Z 3301 408 2005-07-15T05:00:58Z 1 2020-02-15T06:59:40Z +6063 2005-07-11T04:16:51Z 1715 519 2005-07-13T08:35:51Z 2 2020-02-15T06:59:40Z +6064 2005-07-11T04:23:18Z 265 297 2005-07-19T02:21:18Z 1 2020-02-15T06:59:40Z +6065 2005-07-11T04:25:51Z 1007 562 2005-07-17T08:19:51Z 1 2020-02-15T06:59:40Z +6066 2005-07-11T04:32:42Z 1877 155 2005-07-15T03:56:42Z 2 2020-02-15T06:59:40Z +6067 2005-07-11T04:34:49Z 2097 186 2005-07-16T09:33:49Z 1 2020-02-15T06:59:40Z +6068 2005-07-11T04:41:09Z 2331 265 2005-07-14T04:45:09Z 1 2020-02-15T06:59:40Z +6069 2005-07-11T04:44:59Z 256 553 2005-07-13T01:00:59Z 1 2020-02-15T06:59:40Z +6070 2005-07-11T04:47:42Z 1679 267 2005-07-13T01:49:42Z 2 2020-02-15T06:59:40Z +6071 2005-07-11T04:50:03Z 889 179 2005-07-19T23:52:03Z 1 2020-02-15T06:59:40Z +6072 2005-07-11T04:52:40Z 1790 339 2005-07-18T01:02:40Z 1 2020-02-15T06:59:40Z +6073 2005-07-11T04:54:31Z 4243 466 2005-07-20T07:23:31Z 1 2020-02-15T06:59:40Z +6074 2005-07-11T04:59:56Z 2876 259 2005-07-13T23:31:56Z 1 2020-02-15T06:59:40Z +6075 2005-07-11T05:03:03Z 2160 283 2005-07-12T01:28:03Z 1 2020-02-15T06:59:40Z +6076 2005-07-11T05:05:30Z 1792 143 2005-07-18T04:22:30Z 1 2020-02-15T06:59:40Z +6077 2005-07-11T05:06:08Z 2154 542 2005-07-16T10:29:08Z 1 2020-02-15T06:59:40Z +6078 2005-07-11T05:06:52Z 3985 91 2005-07-17T06:13:52Z 2 2020-02-15T06:59:40Z +6079 2005-07-11T05:07:14Z 1494 119 2005-07-17T08:45:14Z 1 2020-02-15T06:59:40Z +6080 2005-07-11T05:08:11Z 2682 115 2005-07-16T09:54:11Z 2 2020-02-15T06:59:40Z +6081 2005-07-11T05:11:09Z 2286 72 2005-07-13T05:33:09Z 2 2020-02-15T06:59:40Z +6082 2005-07-11T05:12:41Z 1091 82 2005-07-16T03:40:41Z 2 2020-02-15T06:59:40Z +6083 2005-07-11T05:12:49Z 3183 285 2005-07-15T00:46:49Z 2 2020-02-15T06:59:40Z +6084 2005-07-11T05:16:20Z 1334 479 2005-07-19T01:38:20Z 2 2020-02-15T06:59:40Z +6085 2005-07-11T05:24:36Z 312 155 2005-07-16T03:49:36Z 2 2020-02-15T06:59:40Z +6086 2005-07-11T05:29:03Z 1505 420 2005-07-16T01:17:03Z 1 2020-02-15T06:59:40Z +6087 2005-07-11T05:29:22Z 198 155 2005-07-12T23:33:22Z 2 2020-02-15T06:59:40Z +6088 2005-07-11T05:40:35Z 3796 498 2005-07-17T07:14:35Z 2 2020-02-15T06:59:40Z +6089 2005-07-11T05:45:59Z 3298 580 2005-07-17T11:04:59Z 2 2020-02-15T06:59:40Z +6090 2005-07-11T05:47:08Z 71 241 2005-07-20T07:52:08Z 2 2020-02-15T06:59:40Z +6091 2005-07-11T05:49:18Z 580 383 2005-07-15T07:26:18Z 1 2020-02-15T06:59:40Z +6092 2005-07-11T05:51:31Z 2129 75 2005-07-17T03:42:31Z 1 2020-02-15T06:59:40Z +6093 2005-07-11T05:52:50Z 1868 117 2005-07-20T11:45:50Z 1 2020-02-15T06:59:40Z +6094 2005-07-11T05:54:42Z 2684 285 2005-07-18T08:19:42Z 2 2020-02-15T06:59:40Z +6095 2005-07-11T06:06:41Z 727 501 2005-07-19T06:14:41Z 1 2020-02-15T06:59:40Z +6096 2005-07-11T06:18:04Z 2720 420 2005-07-14T01:15:04Z 1 2020-02-15T06:59:40Z +6097 2005-07-11T06:21:43Z 297 416 2005-07-16T10:04:43Z 1 2020-02-15T06:59:40Z +6098 2005-07-11T06:23:28Z 3016 525 2005-07-17T04:05:28Z 1 2020-02-15T06:59:40Z +6099 2005-07-11T06:24:44Z 3865 469 2005-07-15T08:03:44Z 2 2020-02-15T06:59:40Z +6100 2005-07-11T06:40:31Z 3485 16 2005-07-14T10:59:31Z 2 2020-02-15T06:59:40Z +6101 2005-07-11T06:50:33Z 2618 508 2005-07-18T01:52:33Z 2 2020-02-15T06:59:40Z +6102 2005-07-11T06:53:09Z 4305 146 2005-07-17T07:05:09Z 1 2020-02-15T06:59:40Z +6103 2005-07-11T06:59:55Z 262 540 2005-07-16T09:30:55Z 1 2020-02-15T06:59:40Z +6104 2005-07-11T07:01:35Z 3531 389 2005-07-17T02:29:35Z 1 2020-02-15T06:59:40Z +6105 2005-07-11T07:03:19Z 3501 595 2005-07-19T06:46:19Z 1 2020-02-15T06:59:40Z +6106 2005-07-11T07:05:06Z 2714 185 2005-07-20T09:27:06Z 1 2020-02-15T06:59:40Z +6107 2005-07-11T07:07:09Z 3798 304 2005-07-14T07:32:09Z 2 2020-02-15T06:59:40Z +6108 2005-07-11T07:19:24Z 4296 572 2005-07-13T12:38:24Z 2 2020-02-15T06:59:40Z +6109 2005-07-11T07:20:57Z 3603 163 2005-07-13T07:29:57Z 2 2020-02-15T06:59:40Z +6110 2005-07-11T07:23:47Z 541 405 2005-07-20T03:17:47Z 2 2020-02-15T06:59:40Z +6111 2005-07-11T07:26:57Z 3504 300 2005-07-13T10:43:57Z 2 2020-02-15T06:59:40Z +6112 2005-07-11T07:28:05Z 1311 366 2005-07-18T07:29:05Z 1 2020-02-15T06:59:40Z +6113 2005-07-11T07:31:08Z 4437 115 2005-07-20T11:01:08Z 2 2020-02-15T06:59:40Z +6114 2005-07-11T07:33:48Z 479 404 2005-07-18T06:13:48Z 2 2020-02-15T06:59:40Z +6115 2005-07-11T07:36:50Z 3415 27 2005-07-13T11:30:50Z 1 2020-02-15T06:59:40Z +6116 2005-07-11T07:37:38Z 247 381 2005-07-14T11:53:38Z 2 2020-02-15T06:59:40Z +6117 2005-07-11T07:39:38Z 2613 135 2005-07-18T12:07:38Z 2 2020-02-15T06:59:40Z +6118 2005-07-11T07:43:08Z 3013 13 2005-07-20T03:17:08Z 1 2020-02-15T06:59:40Z +6119 2005-07-11T07:44:46Z 4281 472 2005-07-20T04:41:46Z 2 2020-02-15T06:59:40Z +6120 2005-07-11T07:49:53Z 3299 268 2005-07-19T04:56:53Z 2 2020-02-15T06:59:40Z +6121 2005-07-11T07:55:27Z 1613 347 2005-07-16T03:43:27Z 2 2020-02-15T06:59:40Z +6122 2005-07-11T07:58:07Z 2212 32 2005-07-16T09:52:07Z 1 2020-02-15T06:59:40Z +6123 2005-07-11T08:02:27Z 1354 200 2005-07-15T08:58:27Z 2 2020-02-15T06:59:40Z +6124 2005-07-11T08:02:32Z 2022 368 2005-07-12T05:58:32Z 2 2020-02-15T06:59:40Z +6125 2005-07-11T08:03:35Z 2439 307 2005-07-18T12:46:35Z 1 2020-02-15T06:59:40Z +6126 2005-07-11T08:06:56Z 1069 230 2005-07-16T11:42:56Z 1 2020-02-15T06:59:40Z +6127 2005-07-11T08:06:59Z 285 355 2005-07-12T09:01:59Z 1 2020-02-15T06:59:40Z +6128 2005-07-11T08:15:08Z 2050 18 2005-07-13T03:36:08Z 1 2020-02-15T06:59:40Z +6129 2005-07-11T08:15:09Z 3875 222 2005-07-18T13:00:09Z 1 2020-02-15T06:59:40Z +6130 2005-07-11T08:19:56Z 2547 538 2005-07-16T12:02:56Z 2 2020-02-15T06:59:40Z +6131 2005-07-11T08:22:05Z 3313 107 2005-07-14T07:40:05Z 1 2020-02-15T06:59:40Z +6132 2005-07-11T08:24:44Z 3229 319 2005-07-13T06:41:44Z 1 2020-02-15T06:59:40Z +6133 2005-07-11T08:25:22Z 1992 107 2005-07-13T13:17:22Z 1 2020-02-15T06:59:40Z +6134 2005-07-11T08:28:19Z 3225 305 2005-07-18T09:20:19Z 2 2020-02-15T06:59:40Z +6135 2005-07-11T08:32:23Z 833 325 2005-07-17T08:43:23Z 1 2020-02-15T06:59:40Z +6136 2005-07-11T08:34:09Z 205 346 2005-07-14T06:11:09Z 1 2020-02-15T06:59:40Z +6137 2005-07-11T08:34:20Z 2029 67 2005-07-13T03:31:20Z 2 2020-02-15T06:59:40Z +6138 2005-07-11T08:36:04Z 1808 438 2005-07-13T10:30:04Z 2 2020-02-15T06:59:40Z +6139 2005-07-11T08:39:33Z 3065 206 2005-07-17T08:00:33Z 2 2020-02-15T06:59:40Z +6140 2005-07-11T08:40:47Z 2749 363 2005-07-14T07:26:47Z 1 2020-02-15T06:59:40Z +6141 2005-07-11T08:52:16Z 2279 228 2005-07-17T03:00:16Z 1 2020-02-15T06:59:40Z +6142 2005-07-11T08:54:09Z 1722 136 2005-07-18T05:23:09Z 2 2020-02-15T06:59:40Z +6143 2005-07-11T09:02:37Z 1030 169 2005-07-19T05:57:37Z 2 2020-02-15T06:59:40Z +6144 2005-07-11T09:02:53Z 1077 554 2005-07-15T10:58:53Z 2 2020-02-15T06:59:40Z +6145 2005-07-11T09:07:01Z 1359 540 2005-07-19T08:21:01Z 1 2020-02-15T06:59:40Z +6146 2005-07-11T09:09:59Z 3374 11 2005-07-20T11:42:59Z 2 2020-02-15T06:59:40Z +6147 2005-07-11T09:13:08Z 910 35 2005-07-17T03:48:08Z 1 2020-02-15T06:59:40Z +6148 2005-07-11T09:14:22Z 4318 410 2005-07-12T08:01:22Z 1 2020-02-15T06:59:40Z +6149 2005-07-11T09:19:31Z 4337 26 2005-07-17T14:45:31Z 2 2020-02-15T06:59:40Z +6150 2005-07-11T09:23:56Z 1110 418 2005-07-15T10:56:56Z 2 2020-02-15T06:59:40Z +6151 2005-07-11T09:25:17Z 352 476 2005-07-12T05:11:17Z 1 2020-02-15T06:59:40Z +6152 2005-07-11T09:25:52Z 560 361 2005-07-17T07:40:52Z 2 2020-02-15T06:59:40Z +6153 2005-07-11T09:31:04Z 105 47 2005-07-19T03:41:04Z 1 2020-02-15T06:59:40Z +6154 2005-07-11T09:32:19Z 2717 368 2005-07-16T15:10:19Z 1 2020-02-15T06:59:40Z +6155 2005-07-11T09:45:31Z 785 229 2005-07-18T08:09:31Z 1 2020-02-15T06:59:40Z +6156 2005-07-11T09:45:48Z 302 297 2005-07-15T04:51:48Z 1 2020-02-15T06:59:40Z +6157 2005-07-11T09:48:16Z 4481 133 2005-07-16T05:00:16Z 2 2020-02-15T06:59:40Z +6158 2005-07-11T09:50:24Z 3954 92 2005-07-13T04:49:24Z 2 2020-02-15T06:59:40Z +6159 2005-07-11T09:55:34Z 126 225 2005-07-13T10:01:34Z 2 2020-02-15T06:59:40Z +6160 2005-07-11T10:08:13Z 2716 110 2005-07-14T08:18:13Z 1 2020-02-15T06:59:40Z +6161 2005-07-11T10:11:54Z 3681 524 2005-07-15T12:12:54Z 2 2020-02-15T06:59:40Z +6162 2005-07-11T10:12:30Z 786 79 2005-07-19T06:02:30Z 2 2020-02-15T06:59:40Z +6163 2005-07-11T10:13:46Z 1330 1 2005-07-19T13:15:46Z 2 2020-02-15T06:59:40Z +6164 2005-07-11T10:16:23Z 2755 47 2005-07-14T11:21:23Z 1 2020-02-15T06:59:40Z +6165 2005-07-11T10:17:29Z 3540 9 2005-07-17T07:27:29Z 1 2020-02-15T06:59:40Z +6166 2005-07-11T10:19:05Z 967 503 2005-07-12T14:30:05Z 1 2020-02-15T06:59:40Z +6167 2005-07-11T10:21:21Z 3255 200 2005-07-14T15:38:21Z 1 2020-02-15T06:59:40Z +6168 2005-07-11T10:21:38Z 284 77 2005-07-14T09:55:38Z 2 2020-02-15T06:59:41Z +6169 2005-07-11T10:25:56Z 2781 148 2005-07-19T07:18:56Z 2 2020-02-15T06:59:41Z +6170 2005-07-11T10:29:21Z 278 580 2005-07-16T05:13:21Z 2 2020-02-15T06:59:41Z +6171 2005-07-11T10:29:35Z 448 491 2005-07-16T12:01:35Z 1 2020-02-15T06:59:41Z +6172 2005-07-11T10:32:09Z 3514 219 2005-07-14T16:23:09Z 1 2020-02-15T06:59:41Z +6173 2005-07-11T10:33:11Z 4252 419 2005-07-15T10:57:11Z 1 2020-02-15T06:59:41Z +6174 2005-07-11T10:36:28Z 3123 7 2005-07-18T16:19:28Z 2 2020-02-15T06:59:41Z +6175 2005-07-11T10:44:37Z 3037 195 2005-07-15T08:13:37Z 1 2020-02-15T06:59:41Z +6176 2005-07-11T10:48:21Z 2969 279 2005-07-12T15:54:21Z 2 2020-02-15T06:59:41Z +6177 2005-07-11T10:53:49Z 313 589 2005-07-17T14:54:49Z 1 2020-02-15T06:59:41Z +6178 2005-07-11T10:59:09Z 2777 91 2005-07-16T11:19:09Z 2 2020-02-15T06:59:41Z +6179 2005-07-11T10:59:59Z 3665 42 2005-07-17T06:02:59Z 1 2020-02-15T06:59:41Z +6180 2005-07-11T11:06:50Z 4401 351 2005-07-19T09:03:50Z 2 2020-02-15T06:59:41Z +6181 2005-07-11T11:10:11Z 4398 200 2005-07-15T09:33:11Z 1 2020-02-15T06:59:41Z +6182 2005-07-11T11:11:38Z 2562 540 2005-07-17T08:33:38Z 2 2020-02-15T06:59:41Z +6183 2005-07-11T11:14:35Z 856 402 2005-07-16T15:35:35Z 1 2020-02-15T06:59:41Z +6184 2005-07-11T11:19:21Z 1131 146 2005-07-19T07:35:21Z 1 2020-02-15T06:59:41Z +6185 2005-07-11T11:25:09Z 4331 294 2005-07-18T12:09:09Z 2 2020-02-15T06:59:41Z +6186 2005-07-11T11:26:41Z 2086 128 2005-07-17T12:02:41Z 2 2020-02-15T06:59:41Z +6187 2005-07-11T11:28:51Z 3344 500 2005-07-12T15:44:51Z 1 2020-02-15T06:59:41Z +6188 2005-07-11T11:31:47Z 189 114 2005-07-15T09:28:47Z 1 2020-02-15T06:59:41Z +6189 2005-07-11T11:36:03Z 3800 552 2005-07-20T15:33:03Z 2 2020-02-15T06:59:41Z +6190 2005-07-11T11:36:18Z 2564 321 2005-07-19T17:05:18Z 2 2020-02-15T06:59:41Z +6191 2005-07-11T11:37:52Z 3448 480 2005-07-17T12:45:52Z 1 2020-02-15T06:59:41Z +6192 2005-07-11T11:44:41Z 4573 314 2005-07-19T10:12:41Z 1 2020-02-15T06:59:41Z +6193 2005-07-11T11:46:57Z 465 189 2005-07-19T14:11:57Z 2 2020-02-15T06:59:41Z +6194 2005-07-11T11:51:00Z 1049 83 2005-07-15T12:34:00Z 2 2020-02-15T06:59:41Z +6195 2005-07-11T12:00:32Z 4193 319 2005-07-16T15:00:32Z 2 2020-02-15T06:59:41Z +6196 2005-07-11T12:05:46Z 995 429 2005-07-18T08:27:46Z 2 2020-02-15T06:59:41Z +6197 2005-07-11T12:09:51Z 4156 596 2005-07-12T06:15:51Z 1 2020-02-15T06:59:41Z +6198 2005-07-11T12:12:17Z 3345 470 2005-07-18T07:40:17Z 2 2020-02-15T06:59:41Z +6199 2005-07-11T12:16:03Z 4329 80 2005-07-18T15:33:03Z 2 2020-02-15T06:59:41Z +6200 2005-07-11T12:16:42Z 3258 137 2005-07-17T09:27:42Z 2 2020-02-15T06:59:41Z +6201 2005-07-11T12:18:07Z 4530 559 2005-07-12T12:11:07Z 2 2020-02-15T06:59:41Z +6202 2005-07-11T12:24:25Z 1424 373 2005-07-18T08:13:25Z 1 2020-02-15T06:59:41Z +6203 2005-07-11T12:28:57Z 1001 408 2005-07-15T14:10:57Z 1 2020-02-15T06:59:41Z +6204 2005-07-11T12:29:22Z 2572 362 2005-07-13T10:41:22Z 2 2020-02-15T06:59:41Z +6205 2005-07-11T12:31:24Z 3442 303 2005-07-13T11:31:24Z 2 2020-02-15T06:59:41Z +6206 2005-07-11T12:32:14Z 1368 459 2005-07-15T15:01:14Z 2 2020-02-15T06:59:41Z +6207 2005-07-11T12:34:24Z 3226 143 2005-07-14T10:15:24Z 2 2020-02-15T06:59:41Z +6208 2005-07-11T12:34:56Z 672 31 2005-07-19T15:17:56Z 1 2020-02-15T06:59:41Z +6209 2005-07-11T12:36:05Z 3091 219 2005-07-17T14:48:05Z 2 2020-02-15T06:59:41Z +6210 2005-07-11T12:36:43Z 931 209 2005-07-17T17:45:43Z 2 2020-02-15T06:59:41Z +6211 2005-07-11T12:39:01Z 2699 6 2005-07-20T15:59:01Z 2 2020-02-15T06:59:41Z +6212 2005-07-11T12:40:48Z 3962 337 2005-07-15T17:49:48Z 2 2020-02-15T06:59:41Z +6213 2005-07-11T12:43:07Z 485 23 2005-07-16T07:23:07Z 2 2020-02-15T06:59:41Z +6214 2005-07-11T12:49:48Z 1258 49 2005-07-18T07:41:48Z 2 2020-02-15T06:59:41Z +6215 2005-07-11T12:52:36Z 316 390 2005-07-12T08:33:36Z 1 2020-02-15T06:59:41Z +6216 2005-07-11T12:57:05Z 3571 387 2005-07-13T12:31:05Z 1 2020-02-15T06:59:41Z +6217 2005-07-11T13:13:45Z 1090 177 2005-07-19T16:37:45Z 2 2020-02-15T06:59:41Z +6218 2005-07-11T13:14:58Z 815 410 2005-07-16T08:13:58Z 2 2020-02-15T06:59:41Z +6219 2005-07-11T13:18:37Z 38 303 2005-07-13T13:18:37Z 2 2020-02-15T06:59:41Z +6220 2005-07-11T13:22:06Z 1717 421 2005-07-12T17:46:06Z 2 2020-02-15T06:59:41Z +6221 2005-07-11T13:24:27Z 1699 393 2005-07-15T17:51:27Z 1 2020-02-15T06:59:41Z +6222 2005-07-11T13:25:49Z 2066 386 2005-07-13T14:32:49Z 1 2020-02-15T06:59:41Z +6223 2005-07-11T13:27:09Z 3754 192 2005-07-12T14:02:09Z 1 2020-02-15T06:59:41Z +6224 2005-07-11T13:42:18Z 3274 475 2005-07-16T09:28:18Z 1 2020-02-15T06:59:41Z +6225 2005-07-11T13:45:14Z 2483 204 2005-07-14T10:23:14Z 1 2020-02-15T06:59:41Z +6226 2005-07-11T13:48:11Z 2758 134 2005-07-15T17:18:11Z 2 2020-02-15T06:59:41Z +6227 2005-07-11T13:56:46Z 1654 210 2005-07-18T12:53:46Z 1 2020-02-15T06:59:41Z +6228 2005-07-11T13:58:36Z 2281 367 2005-07-17T19:03:36Z 2 2020-02-15T06:59:41Z +6229 2005-07-11T13:59:50Z 3137 399 2005-07-20T09:26:50Z 1 2020-02-15T06:59:41Z +6230 2005-07-11T14:02:19Z 2260 490 2005-07-17T08:11:19Z 2 2020-02-15T06:59:41Z +6231 2005-07-11T14:02:36Z 2526 122 2005-07-13T19:04:36Z 2 2020-02-15T06:59:41Z +6232 2005-07-11T14:08:27Z 2492 590 2005-07-20T19:34:27Z 2 2020-02-15T06:59:41Z +6233 2005-07-11T14:10:47Z 3731 378 2005-07-15T15:13:47Z 2 2020-02-15T06:59:41Z +6234 2005-07-11T14:16:10Z 2911 232 2005-07-19T19:55:10Z 1 2020-02-15T06:59:41Z +6235 2005-07-11T14:17:51Z 2659 379 2005-07-17T11:14:51Z 2 2020-02-15T06:59:41Z +6236 2005-07-11T14:18:17Z 3813 338 2005-07-14T08:47:17Z 2 2020-02-15T06:59:41Z +6237 2005-07-11T14:19:12Z 2215 166 2005-07-15T15:05:12Z 1 2020-02-15T06:59:41Z +6238 2005-07-11T14:20:18Z 3749 23 2005-07-14T18:34:18Z 1 2020-02-15T06:59:41Z +6239 2005-07-11T14:20:48Z 4107 132 2005-07-17T13:41:48Z 2 2020-02-15T06:59:41Z +6240 2005-07-11T14:32:41Z 640 524 2005-07-20T18:38:41Z 1 2020-02-15T06:59:41Z +6241 2005-07-11T14:40:48Z 4449 74 2005-07-18T09:51:48Z 1 2020-02-15T06:59:41Z +6242 2005-07-11T14:45:04Z 670 245 2005-07-12T18:34:04Z 2 2020-02-15T06:59:41Z +6243 2005-07-11T14:53:25Z 3456 26 2005-07-15T09:26:25Z 2 2020-02-15T06:59:41Z +6244 2005-07-11T14:53:38Z 1558 383 2005-07-12T16:42:38Z 1 2020-02-15T06:59:41Z +6245 2005-07-11T14:56:57Z 512 241 2005-07-16T14:35:57Z 1 2020-02-15T06:59:41Z +6246 2005-07-11T14:57:51Z 2376 172 2005-07-19T19:10:51Z 2 2020-02-15T06:59:41Z +6247 2005-07-11T15:00:05Z 2504 589 2005-07-18T13:47:05Z 1 2020-02-15T06:59:41Z +6248 2005-07-11T15:01:54Z 2686 6 2005-07-19T16:58:54Z 1 2020-02-15T06:59:41Z +6249 2005-07-11T15:02:02Z 4334 30 2005-07-14T11:37:02Z 2 2020-02-15T06:59:41Z +6250 2005-07-11T15:02:04Z 4087 458 2005-07-17T10:54:04Z 1 2020-02-15T06:59:41Z +6251 2005-07-11T15:06:20Z 3956 230 2005-07-18T20:11:20Z 2 2020-02-15T06:59:41Z +6252 2005-07-11T15:06:29Z 1294 295 2005-07-16T14:07:29Z 1 2020-02-15T06:59:41Z +6253 2005-07-11T15:07:19Z 1425 570 2005-07-13T11:00:19Z 1 2020-02-15T06:59:41Z +6254 2005-07-11T15:10:18Z 2038 20 2005-07-17T14:20:18Z 2 2020-02-15T06:59:41Z +6255 2005-07-11T15:11:33Z 1459 319 2005-07-15T19:55:33Z 2 2020-02-15T06:59:41Z +6256 2005-07-11T15:19:22Z 480 307 2005-07-13T12:43:22Z 1 2020-02-15T06:59:41Z +6257 2005-07-11T15:23:46Z 3253 492 2005-07-14T17:26:46Z 2 2020-02-15T06:59:41Z +6258 2005-07-11T15:24:32Z 632 417 2005-07-18T18:29:32Z 1 2020-02-15T06:59:41Z +6259 2005-07-11T15:25:52Z 3007 84 2005-07-13T11:54:52Z 2 2020-02-15T06:59:41Z +6260 2005-07-11T15:26:29Z 4308 454 2005-07-13T17:37:29Z 2 2020-02-15T06:59:41Z +6261 2005-07-11T15:28:34Z 694 386 2005-07-14T17:54:34Z 1 2020-02-15T06:59:41Z +6262 2005-07-11T15:33:24Z 4136 355 2005-07-17T12:40:24Z 1 2020-02-15T06:59:41Z +6263 2005-07-11T15:33:50Z 2391 336 2005-07-17T12:49:50Z 2 2020-02-15T06:59:41Z +6264 2005-07-11T15:42:35Z 4246 565 2005-07-12T11:29:35Z 2 2020-02-15T06:59:41Z +6265 2005-07-11T15:43:51Z 3931 477 2005-07-12T12:51:51Z 2 2020-02-15T06:59:41Z +6266 2005-07-11T15:45:39Z 941 397 2005-07-15T18:29:39Z 1 2020-02-15T06:59:41Z +6267 2005-07-11T15:53:00Z 2152 20 2005-07-17T18:09:00Z 2 2020-02-15T06:59:41Z +6268 2005-07-11T15:55:34Z 1154 125 2005-07-19T17:25:34Z 1 2020-02-15T06:59:41Z +6269 2005-07-11T15:58:43Z 3915 167 2005-07-13T13:25:43Z 1 2020-02-15T06:59:41Z +6270 2005-07-11T15:59:10Z 2308 292 2005-07-18T10:29:10Z 2 2020-02-15T06:59:41Z +6271 2005-07-11T16:01:35Z 1246 467 2005-07-20T12:07:35Z 2 2020-02-15T06:59:41Z +6272 2005-07-11T16:03:49Z 3103 240 2005-07-15T19:54:49Z 1 2020-02-15T06:59:41Z +6273 2005-07-11T16:08:41Z 2403 152 2005-07-14T16:41:41Z 2 2020-02-15T06:59:41Z +6274 2005-07-11T16:09:42Z 2998 472 2005-07-19T20:46:42Z 1 2020-02-15T06:59:41Z +6275 2005-07-11T16:12:11Z 3599 333 2005-07-17T20:19:11Z 2 2020-02-15T06:59:41Z +6276 2005-07-11T16:15:50Z 1826 284 2005-07-19T20:50:50Z 2 2020-02-15T06:59:41Z +6277 2005-07-11T16:19:01Z 4023 92 2005-07-18T21:00:01Z 2 2020-02-15T06:59:41Z +6278 2005-07-11T16:20:02Z 2232 558 2005-07-19T19:29:02Z 2 2020-02-15T06:59:41Z +6279 2005-07-11T16:26:07Z 1254 49 2005-07-17T21:05:07Z 2 2020-02-15T06:59:41Z +6280 2005-07-11T16:36:17Z 4055 33 2005-07-13T14:04:17Z 2 2020-02-15T06:59:41Z +6281 2005-07-11T16:38:16Z 835 236 2005-07-13T10:57:16Z 2 2020-02-15T06:59:41Z +6282 2005-07-11T16:46:22Z 4453 60 2005-07-15T13:19:22Z 1 2020-02-15T06:59:41Z +6283 2005-07-11T16:47:32Z 3319 402 2005-07-17T21:46:32Z 1 2020-02-15T06:59:41Z +6284 2005-07-11T16:51:39Z 2938 177 2005-07-15T19:59:39Z 1 2020-02-15T06:59:41Z +6285 2005-07-11T16:52:07Z 2140 444 2005-07-13T21:33:07Z 2 2020-02-15T06:59:41Z +6286 2005-07-11T16:55:35Z 1070 140 2005-07-13T22:51:35Z 1 2020-02-15T06:59:41Z +6287 2005-07-11T17:00:04Z 35 93 2005-07-12T13:16:04Z 1 2020-02-15T06:59:41Z +6288 2005-07-11T17:01:52Z 3235 357 2005-07-19T15:11:52Z 1 2020-02-15T06:59:41Z +6289 2005-07-11T17:06:39Z 3185 99 2005-07-12T15:54:39Z 2 2020-02-15T06:59:41Z +6290 2005-07-11T17:12:42Z 2634 66 2005-07-19T21:53:42Z 2 2020-02-15T06:59:41Z +6291 2005-07-11T17:16:40Z 3126 262 2005-07-13T18:24:40Z 2 2020-02-15T06:59:41Z +6292 2005-07-11T17:23:33Z 4375 505 2005-07-12T16:27:33Z 2 2020-02-15T06:59:41Z +6293 2005-07-11T17:24:57Z 4260 471 2005-07-13T18:45:57Z 2 2020-02-15T06:59:41Z +6294 2005-07-11T17:25:55Z 1732 463 2005-07-15T17:48:55Z 1 2020-02-15T06:59:41Z +6295 2005-07-11T17:30:58Z 1393 7 2005-07-15T15:50:58Z 1 2020-02-15T06:59:41Z +6296 2005-07-11T17:34:04Z 4202 484 2005-07-17T21:12:04Z 1 2020-02-15T06:59:41Z +6297 2005-07-11T17:37:22Z 2738 69 2005-07-19T13:54:22Z 2 2020-02-15T06:59:41Z +6298 2005-07-11T17:42:33Z 3906 256 2005-07-13T18:14:33Z 2 2020-02-15T06:59:41Z +6299 2005-07-11T17:45:08Z 4125 324 2005-07-13T16:36:08Z 2 2020-02-15T06:59:41Z +6300 2005-07-11T17:50:09Z 1269 283 2005-07-18T13:11:09Z 1 2020-02-15T06:59:41Z +6301 2005-07-11T17:54:09Z 3528 275 2005-07-18T20:42:09Z 2 2020-02-15T06:59:41Z +6302 2005-07-11T17:55:38Z 3221 391 2005-07-17T22:11:38Z 1 2020-02-15T06:59:41Z +6303 2005-07-11T17:55:43Z 846 236 2005-07-13T12:50:43Z 1 2020-02-15T06:59:41Z +6304 2005-07-11T18:02:16Z 4183 579 2005-07-14T14:01:16Z 1 2020-02-15T06:59:41Z +6305 2005-07-11T18:02:25Z 1544 337 2005-07-20T13:29:25Z 1 2020-02-15T06:59:41Z +6306 2005-07-11T18:04:26Z 486 208 2005-07-20T14:22:26Z 2 2020-02-15T06:59:41Z +6307 2005-07-11T18:04:29Z 4029 345 2005-07-17T23:40:29Z 2 2020-02-15T06:59:41Z +6308 2005-07-11T18:08:41Z 3155 472 2005-07-19T15:48:41Z 2 2020-02-15T06:59:41Z +6309 2005-07-11T18:13:24Z 1054 232 2005-07-13T23:11:24Z 1 2020-02-15T06:59:41Z +6310 2005-07-11T18:14:05Z 3064 537 2005-07-16T15:39:05Z 2 2020-02-15T06:59:41Z +6311 2005-07-11T18:18:52Z 1789 373 2005-07-16T17:52:52Z 2 2020-02-15T06:59:41Z +6312 2005-07-11T18:19:02Z 2188 417 2005-07-18T00:00:02Z 1 2020-02-15T06:59:41Z +6313 2005-07-11T18:29:52Z 2976 283 2005-07-14T21:34:52Z 1 2020-02-15T06:59:41Z +6314 2005-07-11T18:32:44Z 4128 55 2005-07-17T23:58:44Z 1 2020-02-15T06:59:41Z +6315 2005-07-11T18:42:49Z 608 374 2005-07-12T23:19:49Z 2 2020-02-15T06:59:41Z +6316 2005-07-11T18:44:52Z 1910 526 2005-07-19T23:35:52Z 2 2020-02-15T06:59:41Z +6317 2005-07-11T18:47:41Z 4206 225 2005-07-14T18:18:41Z 1 2020-02-15T06:59:41Z +6318 2005-07-11T18:48:22Z 2048 425 2005-07-12T13:39:22Z 1 2020-02-15T06:59:41Z +6319 2005-07-11T18:50:45Z 3739 233 2005-07-12T15:26:45Z 1 2020-02-15T06:59:41Z +6320 2005-07-11T18:50:55Z 441 511 2005-07-13T22:46:55Z 2 2020-02-15T06:59:41Z +6321 2005-07-11T18:51:02Z 2655 388 2005-07-14T20:57:02Z 2 2020-02-15T06:59:41Z +6322 2005-07-11T18:58:20Z 4115 403 2005-07-14T16:41:20Z 2 2020-02-15T06:59:41Z +6323 2005-07-11T19:02:19Z 1352 346 2005-07-14T15:54:19Z 1 2020-02-15T06:59:41Z +6324 2005-07-11T19:02:34Z 655 386 2005-07-17T15:57:34Z 1 2020-02-15T06:59:41Z +6325 2005-07-11T19:06:01Z 4556 542 2005-07-18T18:25:01Z 2 2020-02-15T06:59:41Z +6326 2005-07-11T19:06:55Z 2137 563 2005-07-12T20:41:55Z 1 2020-02-15T06:59:41Z +6327 2005-07-11T19:07:29Z 909 146 2005-07-15T16:09:29Z 1 2020-02-15T06:59:41Z +6328 2005-07-11T19:09:33Z 999 260 2005-07-12T20:16:33Z 2 2020-02-15T06:59:41Z +6329 2005-07-11T19:10:38Z 2763 352 2005-07-19T14:46:38Z 2 2020-02-15T06:59:41Z +6330 2005-07-11T19:15:42Z 3917 119 2005-07-17T19:10:42Z 1 2020-02-15T06:59:41Z +6331 2005-07-11T19:17:21Z 1356 295 2005-07-18T18:35:21Z 2 2020-02-15T06:59:41Z +6332 2005-07-11T19:19:06Z 1733 538 2005-07-13T13:51:06Z 2 2020-02-15T06:59:41Z +6333 2005-07-11T19:20:16Z 2610 285 2005-07-17T15:33:16Z 1 2020-02-15T06:59:41Z +6334 2005-07-11T19:20:44Z 948 168 2005-07-19T18:49:44Z 2 2020-02-15T06:59:41Z +6335 2005-07-11T19:25:15Z 2757 396 2005-07-16T17:02:15Z 1 2020-02-15T06:59:41Z +6336 2005-07-11T19:30:13Z 1229 471 2005-07-20T21:27:13Z 2 2020-02-15T06:59:41Z +6337 2005-07-11T19:30:47Z 3967 47 2005-07-19T20:27:47Z 2 2020-02-15T06:59:41Z +6338 2005-07-11T19:39:41Z 1691 54 2005-07-18T01:13:41Z 2 2020-02-15T06:59:41Z +6339 2005-07-11T19:45:32Z 2401 145 2005-07-18T22:34:32Z 2 2020-02-15T06:59:41Z +6340 2005-07-11T19:46:05Z 2374 264 2005-07-20T16:51:05Z 2 2020-02-15T06:59:41Z +6341 2005-07-11T19:48:02Z 3580 448 2005-07-15T01:31:02Z 1 2020-02-15T06:59:41Z +6342 2005-07-11T19:48:24Z 1851 403 2005-07-13T14:09:24Z 2 2020-02-15T06:59:41Z +6343 2005-07-11T19:51:35Z 513 147 2005-07-12T19:13:35Z 1 2020-02-15T06:59:41Z +6344 2005-07-11T20:04:43Z 3074 78 2005-07-18T14:35:43Z 2 2020-02-15T06:59:41Z +6345 2005-07-11T20:05:18Z 4332 532 2005-07-20T17:28:18Z 1 2020-02-15T06:59:41Z +6346 2005-07-11T20:08:34Z 4066 445 2005-07-16T16:35:34Z 2 2020-02-15T06:59:41Z +6347 2005-07-11T20:18:53Z 3160 178 2005-07-16T20:45:53Z 1 2020-02-15T06:59:41Z +6348 2005-07-11T20:21:18Z 21 66 2005-07-19T15:56:18Z 2 2020-02-15T06:59:41Z +6349 2005-07-11T20:25:05Z 1581 216 2005-07-21T00:35:05Z 2 2020-02-15T06:59:41Z +6350 2005-07-11T20:30:15Z 2853 225 2005-07-16T21:30:15Z 1 2020-02-15T06:59:41Z +6351 2005-07-11T20:31:44Z 1852 507 2005-07-18T17:16:44Z 2 2020-02-15T06:59:41Z +6352 2005-07-11T20:34:13Z 1143 235 2005-07-13T19:49:13Z 1 2020-02-15T06:59:41Z +6353 2005-07-11T20:48:56Z 699 130 2005-07-21T00:11:56Z 1 2020-02-15T06:59:41Z +6354 2005-07-11T20:54:27Z 3203 176 2005-07-18T23:46:27Z 2 2020-02-15T06:59:41Z +6355 2005-07-11T20:56:29Z 2472 482 2005-07-20T01:50:29Z 2 2020-02-15T06:59:41Z +6356 2005-07-11T20:57:48Z 2645 149 2005-07-12T22:40:48Z 2 2020-02-15T06:59:41Z +6357 2005-07-11T20:58:51Z 658 252 2005-07-12T15:06:51Z 1 2020-02-15T06:59:41Z +6358 2005-07-11T21:03:12Z 4527 567 2005-07-15T20:06:12Z 2 2020-02-15T06:59:41Z +6359 2005-07-11T21:06:17Z 1656 30 2005-07-16T02:51:17Z 2 2020-02-15T06:59:41Z +6360 2005-07-11T21:07:40Z 3075 338 2005-07-16T15:11:40Z 1 2020-02-15T06:59:41Z +6361 2005-07-11T21:09:14Z 2903 561 2005-07-14T18:26:14Z 2 2020-02-15T06:59:41Z +6362 2005-07-11T21:09:31Z 4259 358 2005-07-13T23:08:31Z 1 2020-02-15T06:59:41Z +6363 2005-07-11T21:13:19Z 4167 344 2005-07-20T15:44:19Z 1 2020-02-15T06:59:41Z +6364 2005-07-11T21:14:48Z 4146 160 2005-07-20T23:20:48Z 2 2020-02-15T06:59:41Z +6365 2005-07-11T21:17:40Z 4550 566 2005-07-14T20:53:40Z 1 2020-02-15T06:59:41Z +6366 2005-07-11T21:18:16Z 3989 366 2005-07-17T00:21:16Z 1 2020-02-15T06:59:41Z +6367 2005-07-11T21:18:29Z 1465 357 2005-07-15T01:05:29Z 1 2020-02-15T06:59:41Z +6368 2005-07-11T21:19:01Z 3666 588 2005-07-13T17:56:01Z 2 2020-02-15T06:59:41Z +6369 2005-07-11T21:23:36Z 1086 252 2005-07-13T22:23:36Z 2 2020-02-15T06:59:41Z +6370 2005-07-11T21:28:32Z 1410 99 2005-07-20T02:51:32Z 2 2020-02-15T06:59:41Z +6371 2005-07-11T21:31:51Z 4297 265 2005-07-16T23:10:51Z 1 2020-02-15T06:59:41Z +6372 2005-07-11T21:35:06Z 741 64 2005-07-15T02:30:06Z 2 2020-02-15T06:59:41Z +6373 2005-07-11T21:35:20Z 1042 115 2005-07-13T23:22:20Z 2 2020-02-15T06:59:41Z +6374 2005-07-11T21:36:10Z 266 244 2005-07-17T15:50:10Z 2 2020-02-15T06:59:41Z +6375 2005-07-11T21:39:46Z 1936 8 2005-07-18T02:12:46Z 2 2020-02-15T06:59:41Z +6376 2005-07-11T21:40:23Z 1834 263 2005-07-13T23:16:23Z 1 2020-02-15T06:59:41Z +6377 2005-07-11T21:41:16Z 4017 118 2005-07-15T20:05:16Z 1 2020-02-15T06:59:41Z +6378 2005-07-11T21:45:23Z 3170 145 2005-07-14T16:56:23Z 1 2020-02-15T06:59:41Z +6379 2005-07-11T21:51:25Z 522 287 2005-07-17T03:38:25Z 2 2020-02-15T06:59:41Z +6380 2005-07-11T21:55:40Z 3378 172 2005-07-17T20:42:40Z 1 2020-02-15T06:59:41Z +6381 2005-07-11T21:58:48Z 2584 340 2005-07-16T16:18:48Z 1 2020-02-15T06:59:41Z +6382 2005-07-11T21:58:53Z 3223 336 2005-07-17T21:18:53Z 2 2020-02-15T06:59:41Z +6383 2005-07-11T22:06:53Z 4275 486 2005-07-17T16:09:53Z 1 2020-02-15T06:59:41Z +6384 2005-07-11T22:07:26Z 491 313 2005-07-16T22:39:26Z 1 2020-02-15T06:59:41Z +6385 2005-07-11T22:07:32Z 1830 69 2005-07-20T16:57:32Z 1 2020-02-15T06:59:41Z +6386 2005-07-11T22:14:57Z 633 593 2005-07-15T16:41:57Z 2 2020-02-15T06:59:41Z +6387 2005-07-11T22:15:56Z 1726 384 2005-07-14T20:20:56Z 2 2020-02-15T06:59:41Z +6388 2005-07-11T22:17:16Z 3506 525 2005-07-19T23:50:16Z 2 2020-02-15T06:59:41Z +6389 2005-07-11T22:18:20Z 2268 274 2005-07-16T16:57:20Z 2 2020-02-15T06:59:41Z +6390 2005-07-11T22:19:23Z 3057 77 2005-07-15T20:10:23Z 2 2020-02-15T06:59:41Z +6391 2005-07-11T22:23:09Z 1745 264 2005-07-15T23:02:09Z 1 2020-02-15T06:59:41Z +6392 2005-07-11T22:25:19Z 4406 468 2005-07-16T04:24:19Z 1 2020-02-15T06:59:41Z +6393 2005-07-11T22:28:12Z 3802 164 2005-07-14T18:03:12Z 1 2020-02-15T06:59:41Z +6394 2005-07-11T22:29:15Z 2574 52 2005-07-20T02:19:15Z 2 2020-02-15T06:59:41Z +6395 2005-07-11T22:29:29Z 3058 264 2005-07-18T00:50:29Z 1 2020-02-15T06:59:41Z +6396 2005-07-11T22:31:08Z 2394 507 2005-07-19T17:19:08Z 2 2020-02-15T06:59:41Z +6397 2005-07-11T22:34:02Z 2423 287 2005-07-13T23:01:02Z 1 2020-02-15T06:59:41Z +6398 2005-07-11T22:34:49Z 1409 296 2005-07-17T17:58:49Z 2 2020-02-15T06:59:41Z +6399 2005-07-11T22:39:05Z 2031 288 2005-07-16T01:12:05Z 1 2020-02-15T06:59:41Z +6400 2005-07-11T22:43:44Z 3289 536 2005-07-19T03:58:44Z 2 2020-02-15T06:59:41Z +6401 2005-07-11T22:44:34Z 1427 35 2005-07-12T22:18:34Z 2 2020-02-15T06:59:41Z +6402 2005-07-11T22:46:10Z 2576 66 2005-07-16T04:02:10Z 1 2020-02-15T06:59:41Z +6403 2005-07-11T22:46:25Z 1019 238 2005-07-13T22:15:25Z 1 2020-02-15T06:59:41Z +6404 2005-07-11T22:49:50Z 1183 526 2005-07-14T18:29:50Z 2 2020-02-15T06:59:41Z +6405 2005-07-11T22:53:12Z 3983 357 2005-07-18T23:02:12Z 2 2020-02-15T06:59:41Z +6406 2005-07-11T22:55:27Z 4439 392 2005-07-20T04:50:27Z 2 2020-02-15T06:59:41Z +6407 2005-07-11T23:02:19Z 775 140 2005-07-21T00:30:19Z 1 2020-02-15T06:59:41Z +6408 2005-07-11T23:03:02Z 2008 350 2005-07-19T23:09:02Z 2 2020-02-15T06:59:41Z +6409 2005-07-11T23:05:49Z 3859 537 2005-07-13T00:13:49Z 2 2020-02-15T06:59:41Z +6410 2005-07-11T23:08:06Z 1127 560 2005-07-19T19:57:06Z 2 2020-02-15T06:59:41Z +6411 2005-07-11T23:10:50Z 4347 124 2005-07-19T17:15:50Z 1 2020-02-15T06:59:41Z +6412 2005-07-11T23:19:21Z 3797 220 2005-07-16T19:48:21Z 1 2020-02-15T06:59:41Z +6413 2005-07-11T23:26:11Z 4446 251 2005-07-17T21:58:11Z 2 2020-02-15T06:59:41Z +6414 2005-07-11T23:26:13Z 814 502 2005-07-18T17:29:13Z 1 2020-02-15T06:59:41Z +6415 2005-07-11T23:27:52Z 4175 84 2005-07-19T22:29:52Z 2 2020-02-15T06:59:41Z +6416 2005-07-11T23:29:14Z 1063 158 2005-07-13T20:20:14Z 1 2020-02-15T06:59:41Z +6417 2005-07-11T23:35:11Z 3042 80 2005-07-18T20:00:11Z 2 2020-02-15T06:59:41Z +6418 2005-07-11T23:36:27Z 3101 185 2005-07-16T18:42:27Z 1 2020-02-15T06:59:41Z +6419 2005-07-11T23:36:38Z 3683 311 2005-07-13T03:23:38Z 1 2020-02-15T06:59:41Z +6420 2005-07-11T23:38:49Z 4443 206 2005-07-17T17:46:49Z 2 2020-02-15T06:59:41Z +6421 2005-07-11T23:45:25Z 4477 479 2005-07-15T20:45:25Z 2 2020-02-15T06:59:41Z +6422 2005-07-11T23:46:19Z 762 257 2005-07-20T22:12:19Z 1 2020-02-15T06:59:41Z +6423 2005-07-11T23:47:31Z 892 427 2005-07-19T18:16:31Z 1 2020-02-15T06:59:41Z +6424 2005-07-11T23:49:37Z 3040 359 2005-07-21T00:53:37Z 1 2020-02-15T06:59:41Z +6425 2005-07-11T23:54:52Z 2487 339 2005-07-13T18:37:52Z 1 2020-02-15T06:59:41Z +6426 2005-07-11T23:56:38Z 498 495 2005-07-21T05:22:38Z 1 2020-02-15T06:59:41Z +6427 2005-07-11T23:57:34Z 1043 122 2005-07-14T18:05:34Z 2 2020-02-15T06:59:41Z +6428 2005-07-12T00:01:51Z 4365 187 2005-07-20T22:02:51Z 2 2020-02-15T06:59:41Z +6429 2005-07-12T00:02:50Z 141 342 2005-07-21T02:08:50Z 1 2020-02-15T06:59:41Z +6430 2005-07-12T00:03:34Z 178 390 2005-07-15T03:11:34Z 1 2020-02-15T06:59:41Z +6431 2005-07-12T00:03:57Z 3471 458 2005-07-20T03:47:57Z 1 2020-02-15T06:59:41Z +6432 2005-07-12T00:09:41Z 970 293 2005-07-20T20:06:41Z 1 2020-02-15T06:59:41Z +6433 2005-07-12T00:12:02Z 1357 101 2005-07-21T04:25:02Z 2 2020-02-15T06:59:41Z +6434 2005-07-12T00:14:25Z 1478 102 2005-07-20T19:54:25Z 2 2020-02-15T06:59:41Z +6435 2005-07-12T00:16:19Z 1957 561 2005-07-17T19:15:19Z 1 2020-02-15T06:59:41Z +6436 2005-07-12T00:18:42Z 3758 122 2005-07-13T03:57:42Z 2 2020-02-15T06:59:41Z +6437 2005-07-12T00:20:29Z 4539 355 2005-07-12T22:26:29Z 1 2020-02-15T06:59:41Z +6438 2005-07-12T00:23:01Z 412 211 2005-07-17T22:45:01Z 1 2020-02-15T06:59:41Z +6439 2005-07-12T00:23:48Z 3463 406 2005-07-13T00:54:48Z 2 2020-02-15T06:59:41Z +6440 2005-07-12T00:25:04Z 2148 269 2005-07-13T04:52:04Z 2 2020-02-15T06:59:41Z +6441 2005-07-12T00:27:08Z 2489 505 2005-07-14T03:12:08Z 1 2020-02-15T06:59:41Z +6442 2005-07-12T00:29:45Z 1273 360 2005-07-15T19:37:45Z 2 2020-02-15T06:59:41Z +6443 2005-07-12T00:35:51Z 895 155 2005-07-16T04:50:51Z 1 2020-02-15T06:59:41Z +6444 2005-07-12T00:36:02Z 2214 168 2005-07-18T05:53:02Z 1 2020-02-15T06:59:41Z +6445 2005-07-12T00:37:02Z 582 385 2005-07-17T22:05:02Z 2 2020-02-15T06:59:41Z +6446 2005-07-12T00:44:08Z 3634 473 2005-07-14T20:39:08Z 2 2020-02-15T06:59:41Z +6447 2005-07-12T00:45:17Z 3945 482 2005-07-18T05:56:17Z 2 2020-02-15T06:59:41Z +6448 2005-07-12T00:45:59Z 2663 160 2005-07-17T00:34:59Z 1 2020-02-15T06:59:41Z +6449 2005-07-12T00:48:58Z 4395 117 2005-07-21T02:57:58Z 1 2020-02-15T06:59:41Z +6450 2005-07-12T00:49:05Z 2413 32 2005-07-13T01:54:05Z 2 2020-02-15T06:59:41Z +6451 2005-07-12T00:52:19Z 1008 381 2005-07-16T21:30:19Z 2 2020-02-15T06:59:41Z +6452 2005-07-12T00:57:31Z 109 388 2005-07-14T20:41:31Z 1 2020-02-15T06:59:41Z +6453 2005-07-12T00:59:53Z 2506 169 2005-07-14T19:17:53Z 2 2020-02-15T06:59:41Z +6454 2005-07-12T01:00:12Z 4028 446 2005-07-16T22:12:12Z 1 2020-02-15T06:59:41Z +6455 2005-07-12T01:01:58Z 4267 277 2005-07-16T02:42:58Z 2 2020-02-15T06:59:41Z +6456 2005-07-12T01:05:11Z 259 387 2005-07-20T23:26:11Z 2 2020-02-15T06:59:41Z +6457 2005-07-12T01:06:35Z 2970 64 2005-07-14T03:27:35Z 1 2020-02-15T06:59:41Z +6458 2005-07-12T01:08:52Z 2809 138 2005-07-16T20:22:52Z 1 2020-02-15T06:59:41Z +6459 2005-07-12T01:12:03Z 4025 557 2005-07-15T23:48:03Z 1 2020-02-15T06:59:41Z +6460 2005-07-12T01:13:44Z 2402 371 2005-07-17T04:51:44Z 2 2020-02-15T06:59:41Z +6461 2005-07-12T01:14:03Z 1799 135 2005-07-19T21:12:03Z 1 2020-02-15T06:59:41Z +6462 2005-07-12T01:15:24Z 4534 414 2005-07-19T05:11:24Z 2 2020-02-15T06:59:41Z +6463 2005-07-12T01:16:11Z 2930 391 2005-07-13T01:37:11Z 1 2020-02-15T06:59:41Z +6464 2005-07-12T01:16:40Z 3100 303 2005-07-20T00:53:40Z 1 2020-02-15T06:59:41Z +6465 2005-07-12T01:17:11Z 2047 207 2005-07-20T00:29:11Z 2 2020-02-15T06:59:41Z +6466 2005-07-12T01:21:03Z 3369 235 2005-07-14T04:05:03Z 1 2020-02-15T06:59:41Z +6467 2005-07-12T01:22:03Z 2067 457 2005-07-20T04:37:03Z 2 2020-02-15T06:59:41Z +6468 2005-07-12T01:27:09Z 4560 541 2005-07-20T00:37:09Z 2 2020-02-15T06:59:41Z +6469 2005-07-12T01:29:27Z 3830 147 2005-07-16T20:22:27Z 2 2020-02-15T06:59:41Z +6470 2005-07-12T01:29:41Z 1680 240 2005-07-15T21:33:41Z 2 2020-02-15T06:59:41Z +6471 2005-07-12T01:31:06Z 2253 397 2005-07-13T05:26:06Z 1 2020-02-15T06:59:41Z +6472 2005-07-12T01:33:25Z 3780 183 2005-07-15T20:26:25Z 1 2020-02-15T06:59:41Z +6473 2005-07-12T01:35:40Z 527 594 2005-07-20T20:11:40Z 1 2020-02-15T06:59:41Z +6474 2005-07-12T01:36:46Z 310 43 2005-07-16T07:24:46Z 2 2020-02-15T06:59:41Z +6475 2005-07-12T01:36:57Z 2035 74 2005-07-17T21:22:57Z 1 2020-02-15T06:59:41Z +6476 2005-07-12T01:37:48Z 978 28 2005-07-12T20:21:48Z 2 2020-02-15T06:59:41Z +6477 2005-07-12T01:38:42Z 804 181 2005-07-17T05:19:42Z 2 2020-02-15T06:59:41Z +6478 2005-07-12T01:41:44Z 2589 483 2005-07-15T20:48:44Z 1 2020-02-15T06:59:41Z +6479 2005-07-12T01:49:00Z 2587 558 2005-07-21T04:26:00Z 1 2020-02-15T06:59:41Z +6480 2005-07-12T01:49:29Z 3076 309 2005-07-17T01:00:29Z 1 2020-02-15T06:59:41Z +6481 2005-07-12T01:50:15Z 2392 128 2005-07-20T03:03:15Z 1 2020-02-15T06:59:41Z +6482 2005-07-12T01:50:21Z 4135 57 2005-07-14T06:49:21Z 2 2020-02-15T06:59:41Z +6483 2005-07-12T01:59:20Z 1053 263 2005-07-12T22:22:20Z 2 2020-02-15T06:59:41Z +6484 2005-07-12T02:04:10Z 4093 556 2005-07-17T23:18:10Z 2 2020-02-15T06:59:41Z +6485 2005-07-12T02:07:59Z 1224 319 2005-07-19T22:56:59Z 1 2020-02-15T06:59:41Z +6486 2005-07-12T02:09:36Z 4008 75 2005-07-14T03:04:36Z 2 2020-02-15T06:59:41Z +6487 2005-07-12T02:17:00Z 4000 277 2005-07-19T00:57:00Z 2 2020-02-15T06:59:41Z +6488 2005-07-12T02:20:09Z 3974 169 2005-07-20T00:53:09Z 2 2020-02-15T06:59:41Z +6489 2005-07-12T02:22:46Z 1821 268 2005-07-17T06:16:46Z 2 2020-02-15T06:59:41Z +6490 2005-07-12T02:28:03Z 2249 548 2005-07-19T03:06:03Z 2 2020-02-15T06:59:41Z +6491 2005-07-12T02:28:31Z 2803 415 2005-07-21T00:38:31Z 1 2020-02-15T06:59:41Z +6492 2005-07-12T02:28:40Z 466 590 2005-07-17T05:58:40Z 2 2020-02-15T06:59:41Z +6493 2005-07-12T02:40:41Z 16 184 2005-07-16T04:56:41Z 1 2020-02-15T06:59:41Z +6494 2005-07-12T02:42:51Z 1124 57 2005-07-20T06:57:51Z 1 2020-02-15T06:59:41Z +6495 2005-07-12T02:57:02Z 2440 19 2005-07-14T08:35:02Z 1 2020-02-15T06:59:41Z +6496 2005-07-12T02:57:39Z 3550 139 2005-07-20T01:43:39Z 1 2020-02-15T06:59:41Z +6497 2005-07-12T03:04:29Z 933 222 2005-07-17T21:36:29Z 2 2020-02-15T06:59:41Z +6498 2005-07-12T03:05:38Z 243 48 2005-07-19T07:12:38Z 1 2020-02-15T06:59:41Z +6499 2005-07-12T03:11:18Z 3165 474 2005-07-21T07:50:18Z 2 2020-02-15T06:59:41Z +6500 2005-07-12T03:11:23Z 4521 577 2005-07-13T00:51:23Z 2 2020-02-15T06:59:41Z +6501 2005-07-12T03:11:55Z 2851 219 2005-07-16T02:08:55Z 2 2020-02-15T06:59:41Z +6502 2005-07-12T03:15:45Z 1641 40 2005-07-17T08:47:45Z 2 2020-02-15T06:59:41Z +6503 2005-07-12T03:18:07Z 1319 120 2005-07-15T00:05:07Z 1 2020-02-15T06:59:41Z +6504 2005-07-12T03:19:14Z 3786 535 2005-07-17T01:13:14Z 2 2020-02-15T06:59:41Z +6505 2005-07-12T03:27:37Z 3986 415 2005-07-17T22:42:37Z 2 2020-02-15T06:59:41Z +6506 2005-07-12T03:28:22Z 386 423 2005-07-17T22:43:22Z 1 2020-02-15T06:59:41Z +6507 2005-07-12T03:33:12Z 2463 118 2005-07-20T03:56:12Z 1 2020-02-15T06:59:41Z +6508 2005-07-12T03:34:50Z 1474 597 2005-07-17T02:57:50Z 2 2020-02-15T06:59:41Z +6509 2005-07-12T03:35:01Z 2468 427 2005-07-13T06:50:01Z 2 2020-02-15T06:59:41Z +6510 2005-07-12T03:35:39Z 905 446 2005-07-21T01:41:39Z 1 2020-02-15T06:59:41Z +6511 2005-07-12T03:39:29Z 1350 322 2005-07-17T01:01:29Z 2 2020-02-15T06:59:41Z +6512 2005-07-12T03:42:49Z 1703 68 2005-07-13T05:01:49Z 2 2020-02-15T06:59:41Z +6513 2005-07-12T03:44:43Z 2671 393 2005-07-13T05:54:43Z 1 2020-02-15T06:59:41Z +6514 2005-07-12T03:47:44Z 3562 73 2005-07-20T00:11:44Z 1 2020-02-15T06:59:41Z +6515 2005-07-12T03:50:32Z 706 261 2005-07-15T03:54:32Z 2 2020-02-15T06:59:41Z +6516 2005-07-12T03:51:54Z 863 291 2005-07-14T03:41:54Z 2 2020-02-15T06:59:41Z +6517 2005-07-12T03:52:39Z 185 387 2005-07-20T08:00:39Z 1 2020-02-15T06:59:41Z +6518 2005-07-12T03:59:42Z 2698 288 2005-07-19T22:21:42Z 2 2020-02-15T06:59:41Z +6519 2005-07-12T04:00:36Z 4149 598 2005-07-19T01:15:36Z 1 2020-02-15T06:59:41Z +6520 2005-07-12T04:05:16Z 1535 270 2005-07-15T08:26:16Z 1 2020-02-15T06:59:41Z +6521 2005-07-12T04:06:11Z 3293 49 2005-07-21T05:50:11Z 1 2020-02-15T06:59:41Z +6522 2005-07-12T04:11:58Z 3916 142 2005-07-15T08:32:58Z 1 2020-02-15T06:59:41Z +6523 2005-07-12T04:14:19Z 1848 574 2005-07-17T00:38:19Z 1 2020-02-15T06:59:41Z +6524 2005-07-12T04:14:35Z 1467 376 2005-07-17T03:59:35Z 2 2020-02-15T06:59:41Z +6525 2005-07-12T04:17:15Z 1408 103 2005-07-18T23:11:15Z 1 2020-02-15T06:59:41Z +6526 2005-07-12T04:21:20Z 1718 225 2005-07-18T23:45:20Z 2 2020-02-15T06:59:41Z +6527 2005-07-12T04:23:06Z 538 65 2005-07-17T00:20:06Z 1 2020-02-15T06:59:41Z +6528 2005-07-12T04:29:44Z 3824 598 2005-07-18T02:39:44Z 2 2020-02-15T06:59:41Z +6529 2005-07-12T04:31:04Z 1058 503 2005-07-17T07:09:04Z 2 2020-02-15T06:59:41Z +6530 2005-07-12T04:33:19Z 3410 75 2005-07-15T08:26:19Z 1 2020-02-15T06:59:41Z +6531 2005-07-12T04:35:24Z 4231 510 2005-07-16T05:37:24Z 2 2020-02-15T06:59:41Z +6532 2005-07-12T04:38:32Z 2361 225 2005-07-13T03:54:32Z 1 2020-02-15T06:59:41Z +6533 2005-07-12T04:39:38Z 3853 366 2005-07-18T05:29:38Z 1 2020-02-15T06:59:41Z +6534 2005-07-12T04:39:43Z 2359 577 2005-07-16T06:33:43Z 1 2020-02-15T06:59:41Z +6535 2005-07-12T04:43:43Z 1921 446 2005-07-17T04:52:43Z 1 2020-02-15T06:59:41Z +6536 2005-07-12T04:44:25Z 3521 289 2005-07-18T01:52:25Z 2 2020-02-15T06:59:41Z +6537 2005-07-12T04:46:30Z 3381 207 2005-07-19T03:04:30Z 2 2020-02-15T06:59:41Z +6538 2005-07-12T04:50:26Z 1987 529 2005-07-20T23:44:26Z 2 2020-02-15T06:59:41Z +6539 2005-07-12T04:50:49Z 2275 259 2005-07-19T03:23:49Z 1 2020-02-15T06:59:41Z +6540 2005-07-12T04:51:13Z 937 156 2005-07-21T03:38:13Z 1 2020-02-15T06:59:41Z +6541 2005-07-12T04:53:41Z 1795 529 2005-07-17T23:17:41Z 2 2020-02-15T06:59:41Z +6542 2005-07-12T04:53:49Z 2421 359 2005-07-13T01:48:49Z 1 2020-02-15T06:59:41Z +6543 2005-07-12T04:54:32Z 2568 264 2005-07-15T09:50:32Z 2 2020-02-15T06:59:41Z +6544 2005-07-12T04:56:15Z 1218 97 2005-07-17T08:28:15Z 1 2020-02-15T06:59:41Z +6545 2005-07-12T04:56:30Z 4447 376 2005-07-20T05:41:30Z 1 2020-02-15T06:59:41Z +6546 2005-07-12T04:57:17Z 393 105 2005-07-17T09:29:17Z 2 2020-02-15T06:59:41Z +6547 2005-07-12T04:57:46Z 2656 262 2005-07-18T08:36:46Z 2 2020-02-15T06:59:41Z +6548 2005-07-12T05:00:46Z 2480 488 2005-07-19T04:40:46Z 2 2020-02-15T06:59:41Z +6549 2005-07-12T05:02:01Z 2688 493 2005-07-20T06:19:01Z 2 2020-02-15T06:59:41Z +6550 2005-07-12T05:03:14Z 2184 112 2005-07-19T04:06:14Z 1 2020-02-15T06:59:41Z +6551 2005-07-12T05:03:43Z 282 567 2005-07-13T10:44:43Z 1 2020-02-15T06:59:41Z +6552 2005-07-12T05:05:06Z 766 493 2005-07-13T05:12:06Z 2 2020-02-15T06:59:41Z +6553 2005-07-12T05:06:39Z 1137 265 2005-07-21T10:37:39Z 1 2020-02-15T06:59:41Z +6554 2005-07-12T05:07:26Z 2741 178 2005-07-21T06:06:26Z 2 2020-02-15T06:59:41Z +6555 2005-07-12T05:08:16Z 1282 188 2005-07-14T04:09:16Z 1 2020-02-15T06:59:41Z +6556 2005-07-12T05:10:16Z 3901 570 2005-07-13T04:16:16Z 2 2020-02-15T06:59:41Z +6557 2005-07-12T05:12:03Z 1442 116 2005-07-20T06:49:03Z 1 2020-02-15T06:59:41Z +6558 2005-07-12T05:16:07Z 2195 164 2005-07-13T05:32:07Z 2 2020-02-15T06:59:41Z +6559 2005-07-12T05:20:35Z 458 353 2005-07-16T08:44:35Z 2 2020-02-15T06:59:41Z +6560 2005-07-12T05:22:06Z 433 54 2005-07-15T00:04:06Z 2 2020-02-15T06:59:41Z +6561 2005-07-12T05:24:02Z 4568 528 2005-07-16T03:43:02Z 2 2020-02-15T06:59:41Z +6562 2005-07-12T05:26:26Z 3969 27 2005-07-16T05:10:26Z 2 2020-02-15T06:59:41Z +6563 2005-07-12T05:34:09Z 87 438 2005-07-21T07:37:09Z 1 2020-02-15T06:59:41Z +6564 2005-07-12T05:34:44Z 2320 210 2005-07-18T06:12:44Z 2 2020-02-15T06:59:41Z +6565 2005-07-12T05:39:50Z 2751 35 2005-07-13T01:07:50Z 2 2020-02-15T06:59:41Z +6566 2005-07-12T05:42:53Z 1822 178 2005-07-19T01:23:53Z 2 2020-02-15T06:59:41Z +6567 2005-07-12T05:43:09Z 1336 198 2005-07-19T08:18:09Z 2 2020-02-15T06:59:41Z +6568 2005-07-12T05:45:47Z 4203 13 2005-07-15T05:18:47Z 2 2020-02-15T06:59:41Z +6569 2005-07-12T05:47:40Z 759 183 2005-07-20T06:23:40Z 2 2020-02-15T06:59:41Z +6570 2005-07-12T05:50:31Z 2082 217 2005-07-13T09:58:31Z 1 2020-02-15T06:59:41Z +6571 2005-07-12T05:51:47Z 3700 140 2005-07-15T11:31:47Z 1 2020-02-15T06:59:41Z +6572 2005-07-12T05:56:38Z 3121 35 2005-07-16T10:41:38Z 1 2020-02-15T06:59:41Z +6573 2005-07-12T06:03:40Z 3308 239 2005-07-13T11:49:40Z 2 2020-02-15T06:59:41Z +6574 2005-07-12T06:04:22Z 621 115 2005-07-18T03:19:22Z 2 2020-02-15T06:59:41Z +6575 2005-07-12T06:12:53Z 1414 598 2005-07-18T07:55:53Z 2 2020-02-15T06:59:41Z +6576 2005-07-12T06:13:41Z 339 362 2005-07-16T03:22:41Z 1 2020-02-15T06:59:41Z +6577 2005-07-12T06:15:05Z 4191 439 2005-07-15T06:23:05Z 1 2020-02-15T06:59:41Z +6578 2005-07-12T06:15:41Z 2304 229 2005-07-15T10:43:41Z 1 2020-02-15T06:59:41Z +6580 2005-07-12T06:26:10Z 1543 31 2005-07-13T06:44:10Z 1 2020-02-15T06:59:41Z +6581 2005-07-12T06:26:49Z 2121 468 2005-07-14T05:07:49Z 2 2020-02-15T06:59:41Z +6582 2005-07-12T06:28:12Z 2077 420 2005-07-19T06:19:12Z 1 2020-02-15T06:59:41Z +6583 2005-07-12T06:42:31Z 2343 462 2005-07-15T07:51:31Z 1 2020-02-15T06:59:41Z +6584 2005-07-12T06:43:36Z 1800 472 2005-07-16T12:18:36Z 2 2020-02-15T06:59:41Z +6585 2005-07-12T06:50:52Z 2064 136 2005-07-21T06:51:52Z 1 2020-02-15T06:59:41Z +6586 2005-07-12T06:56:24Z 3860 93 2005-07-17T09:36:24Z 1 2020-02-15T06:59:41Z +6587 2005-07-12T06:56:26Z 238 419 2005-07-20T05:53:26Z 2 2020-02-15T06:59:41Z +6588 2005-07-12T06:57:40Z 1257 420 2005-07-16T04:27:40Z 1 2020-02-15T06:59:41Z +6589 2005-07-12T07:06:29Z 1595 424 2005-07-14T12:06:29Z 2 2020-02-15T06:59:41Z +6590 2005-07-12T07:08:21Z 1067 442 2005-07-18T06:16:21Z 2 2020-02-15T06:59:41Z +6591 2005-07-12T07:13:46Z 2846 509 2005-07-16T05:15:46Z 2 2020-02-15T06:59:41Z +6592 2005-07-12T07:19:35Z 3481 273 2005-07-19T07:15:35Z 1 2020-02-15T06:59:41Z +6593 2005-07-12T07:21:17Z 3441 356 2005-07-14T02:35:17Z 2 2020-02-15T06:59:41Z +6594 2005-07-12T07:25:43Z 4458 517 2005-07-13T07:59:43Z 1 2020-02-15T06:59:41Z +6595 2005-07-12T07:25:48Z 1286 458 2005-07-20T02:24:48Z 2 2020-02-15T06:59:41Z +6596 2005-07-12T07:32:59Z 890 409 2005-07-13T02:47:59Z 1 2020-02-15T06:59:41Z +6597 2005-07-12T07:37:02Z 979 479 2005-07-16T10:24:02Z 2 2020-02-15T06:59:41Z +6598 2005-07-12T07:38:25Z 2049 532 2005-07-19T07:58:25Z 1 2020-02-15T06:59:41Z +6599 2005-07-12T07:41:14Z 4348 519 2005-07-21T02:45:14Z 2 2020-02-15T06:59:41Z +6600 2005-07-12T07:41:48Z 3315 389 2005-07-18T12:36:48Z 2 2020-02-15T06:59:41Z +6601 2005-07-12T07:44:49Z 1640 464 2005-07-20T03:22:49Z 2 2020-02-15T06:59:41Z +6602 2005-07-12T07:50:24Z 2382 214 2005-07-20T03:25:24Z 2 2020-02-15T06:59:41Z +6603 2005-07-12T07:52:55Z 3583 425 2005-07-16T13:19:55Z 2 2020-02-15T06:59:41Z +6604 2005-07-12T07:57:45Z 822 365 2005-07-16T05:41:45Z 2 2020-02-15T06:59:41Z +6605 2005-07-12T08:01:07Z 2892 547 2005-07-19T03:12:07Z 1 2020-02-15T06:59:41Z +6606 2005-07-12T08:03:40Z 2805 178 2005-07-13T09:05:40Z 1 2020-02-15T06:59:41Z +6607 2005-07-12T08:08:50Z 337 562 2005-07-20T09:17:50Z 1 2020-02-15T06:59:41Z +6608 2005-07-12T08:16:50Z 3577 244 2005-07-18T07:08:50Z 2 2020-02-15T06:59:41Z +6609 2005-07-12T08:19:41Z 3332 133 2005-07-19T08:19:41Z 2 2020-02-15T06:59:41Z +6610 2005-07-12T08:20:02Z 645 353 2005-07-21T09:16:02Z 2 2020-02-15T06:59:41Z +6611 2005-07-12T08:20:23Z 1604 286 2005-07-16T07:19:23Z 1 2020-02-15T06:59:41Z +6612 2005-07-12T08:28:33Z 235 152 2005-07-17T06:25:33Z 1 2020-02-15T06:59:41Z +6613 2005-07-12T08:30:07Z 3421 460 2005-07-14T10:25:07Z 2 2020-02-15T06:59:41Z +6614 2005-07-12T08:33:49Z 3004 144 2005-07-18T07:28:49Z 2 2020-02-15T06:59:41Z +6615 2005-07-12T08:36:22Z 23 438 2005-07-20T09:03:22Z 1 2020-02-15T06:59:41Z +6616 2005-07-12T08:37:30Z 1833 179 2005-07-20T10:33:30Z 1 2020-02-15T06:59:41Z +6617 2005-07-12T08:39:56Z 2292 248 2005-07-14T09:32:56Z 2 2020-02-15T06:59:41Z +6618 2005-07-12T08:41:42Z 4266 327 2005-07-14T05:34:42Z 1 2020-02-15T06:59:41Z +6619 2005-07-12T08:50:48Z 4062 305 2005-07-14T11:54:48Z 1 2020-02-15T06:59:41Z +6620 2005-07-12T08:51:03Z 2362 337 2005-07-16T03:59:03Z 2 2020-02-15T06:59:41Z +6621 2005-07-12T08:57:30Z 2229 561 2005-07-14T09:47:30Z 1 2020-02-15T06:59:41Z +6622 2005-07-12T09:04:11Z 4350 325 2005-07-13T04:27:11Z 1 2020-02-15T06:59:41Z +6623 2005-07-12T09:05:34Z 4412 302 2005-07-19T13:54:34Z 2 2020-02-15T06:59:41Z +6624 2005-07-12T09:05:50Z 3946 335 2005-07-18T13:59:50Z 2 2020-02-15T06:59:41Z +6625 2005-07-12T09:06:40Z 735 443 2005-07-21T04:57:40Z 2 2020-02-15T06:59:41Z +6626 2005-07-12T09:16:24Z 2418 269 2005-07-17T04:06:24Z 2 2020-02-15T06:59:41Z +6627 2005-07-12T09:16:46Z 626 565 2005-07-17T10:58:46Z 1 2020-02-15T06:59:41Z +6628 2005-07-12T09:18:08Z 2894 211 2005-07-21T04:27:08Z 2 2020-02-15T06:59:41Z +6629 2005-07-12T09:18:35Z 2855 582 2005-07-20T11:34:35Z 2 2020-02-15T06:59:41Z +6630 2005-07-12T09:30:05Z 1843 462 2005-07-14T08:29:05Z 2 2020-02-15T06:59:41Z +6631 2005-07-12T09:31:43Z 2340 204 2005-07-15T05:00:43Z 2 2020-02-15T06:59:41Z +6632 2005-07-12T09:33:10Z 2929 442 2005-07-15T11:36:10Z 1 2020-02-15T06:59:41Z +6633 2005-07-12T09:35:42Z 2908 150 2005-07-13T12:56:42Z 2 2020-02-15T06:59:41Z +6634 2005-07-12T09:37:18Z 2943 50 2005-07-13T09:28:18Z 1 2020-02-15T06:59:41Z +6635 2005-07-12T09:47:58Z 515 273 2005-07-16T15:43:58Z 1 2020-02-15T06:59:41Z +6636 2005-07-12T09:49:46Z 3270 441 2005-07-14T12:15:46Z 1 2020-02-15T06:59:41Z +6637 2005-07-12T09:57:39Z 2852 164 2005-07-19T08:40:39Z 1 2020-02-15T06:59:41Z +6638 2005-07-12T09:58:02Z 207 87 2005-07-13T09:40:02Z 1 2020-02-15T06:59:41Z +6639 2005-07-12T10:00:44Z 3385 587 2005-07-19T04:56:44Z 1 2020-02-15T06:59:41Z +6640 2005-07-12T10:27:19Z 2794 148 2005-07-21T06:28:19Z 2 2020-02-15T06:59:41Z +6641 2005-07-12T10:33:14Z 2165 334 2005-07-20T08:24:14Z 2 2020-02-15T06:59:41Z +6642 2005-07-12T10:37:52Z 201 441 2005-07-13T15:13:52Z 1 2020-02-15T06:59:41Z +6643 2005-07-12T10:39:22Z 174 88 2005-07-18T13:52:22Z 1 2020-02-15T06:59:41Z +6644 2005-07-12T10:39:39Z 2667 285 2005-07-14T11:50:39Z 1 2020-02-15T06:59:41Z +6645 2005-07-12T10:39:55Z 2858 73 2005-07-17T07:41:55Z 1 2020-02-15T06:59:41Z +6646 2005-07-12T10:41:34Z 4061 508 2005-07-15T05:31:34Z 1 2020-02-15T06:59:41Z +6647 2005-07-12T10:43:53Z 1841 8 2005-07-14T05:37:53Z 1 2020-02-15T06:59:41Z +6648 2005-07-12T10:46:30Z 718 356 2005-07-14T16:15:30Z 1 2020-02-15T06:59:41Z +6649 2005-07-12T10:51:09Z 70 57 2005-07-14T16:05:09Z 2 2020-02-15T06:59:41Z +6650 2005-07-12T10:57:10Z 1589 526 2005-07-14T07:24:10Z 1 2020-02-15T06:59:41Z +6651 2005-07-12T10:57:28Z 98 447 2005-07-15T06:06:28Z 2 2020-02-15T06:59:41Z +6652 2005-07-12T10:59:38Z 2200 518 2005-07-13T13:52:38Z 1 2020-02-15T06:59:41Z +6653 2005-07-12T11:06:17Z 614 25 2005-07-19T16:52:17Z 2 2020-02-15T06:59:41Z +6654 2005-07-12T11:06:28Z 2870 458 2005-07-20T10:27:28Z 1 2020-02-15T06:59:41Z +6655 2005-07-12T11:08:32Z 3937 100 2005-07-15T15:17:32Z 1 2020-02-15T06:59:41Z +6656 2005-07-12T11:09:47Z 2282 330 2005-07-14T05:50:47Z 1 2020-02-15T06:59:41Z +6657 2005-07-12T11:11:36Z 3697 553 2005-07-16T15:56:36Z 1 2020-02-15T06:59:41Z +6658 2005-07-12T11:13:21Z 172 27 2005-07-17T09:10:21Z 2 2020-02-15T06:59:41Z +6659 2005-07-12T11:18:05Z 2285 134 2005-07-16T16:45:05Z 2 2020-02-15T06:59:41Z +6660 2005-07-12T11:20:12Z 446 598 2005-07-20T12:58:12Z 2 2020-02-15T06:59:41Z +6661 2005-07-12T11:20:39Z 2367 315 2005-07-16T08:17:39Z 2 2020-02-15T06:59:41Z +6662 2005-07-12T11:21:06Z 1464 99 2005-07-13T13:00:06Z 1 2020-02-15T06:59:41Z +6663 2005-07-12T11:27:35Z 4364 5 2005-07-21T16:35:35Z 1 2020-02-15T06:59:41Z +6664 2005-07-12T11:28:22Z 4578 351 2005-07-15T09:30:22Z 1 2020-02-15T06:59:41Z +6665 2005-07-12T11:29:14Z 2912 587 2005-07-19T11:26:14Z 2 2020-02-15T06:59:41Z +6666 2005-07-12T11:32:15Z 3194 314 2005-07-14T16:09:15Z 2 2020-02-15T06:59:41Z +6667 2005-07-12T11:36:22Z 215 50 2005-07-19T12:53:22Z 1 2020-02-15T06:59:41Z +6668 2005-07-12T11:37:45Z 1498 199 2005-07-14T13:28:45Z 2 2020-02-15T06:59:41Z +6669 2005-07-12T11:39:55Z 1420 355 2005-07-20T05:56:55Z 1 2020-02-15T06:59:41Z +6670 2005-07-12T11:44:33Z 3106 249 2005-07-19T07:54:33Z 2 2020-02-15T06:59:41Z +6671 2005-07-12T11:48:48Z 955 526 2005-07-19T16:55:48Z 2 2020-02-15T06:59:41Z +6672 2005-07-12T11:49:16Z 375 439 2005-07-13T07:03:16Z 2 2020-02-15T06:59:41Z +6673 2005-07-12T11:50:56Z 1997 322 2005-07-13T14:27:56Z 1 2020-02-15T06:59:41Z +6674 2005-07-12T11:51:54Z 2385 399 2005-07-13T16:57:54Z 1 2020-02-15T06:59:41Z +6675 2005-07-12T11:53:06Z 2124 523 2005-07-13T06:09:06Z 1 2020-02-15T06:59:41Z +6676 2005-07-12T11:53:40Z 2294 571 2005-07-19T09:15:40Z 1 2020-02-15T06:59:41Z +6677 2005-07-12T11:58:14Z 2389 516 2005-07-21T06:05:14Z 2 2020-02-15T06:59:41Z +6678 2005-07-12T11:58:36Z 3473 330 2005-07-15T17:50:36Z 2 2020-02-15T06:59:41Z +6679 2005-07-12T12:01:07Z 3664 586 2005-07-14T11:36:07Z 1 2020-02-15T06:59:41Z +6680 2005-07-12T12:01:56Z 2887 43 2005-07-16T17:32:56Z 1 2020-02-15T06:59:41Z +6681 2005-07-12T12:04:12Z 854 368 2005-07-19T11:01:12Z 2 2020-02-15T06:59:41Z +6682 2005-07-12T12:12:43Z 1984 339 2005-07-21T10:49:43Z 2 2020-02-15T06:59:41Z +6683 2005-07-12T12:14:05Z 3433 244 2005-07-17T14:02:05Z 2 2020-02-15T06:59:41Z +6684 2005-07-12T12:14:42Z 2817 583 2005-07-21T11:07:42Z 2 2020-02-15T06:59:41Z +6685 2005-07-12T12:16:28Z 1434 5 2005-07-19T17:03:28Z 1 2020-02-15T06:59:41Z +6686 2005-07-12T12:18:38Z 3804 6 2005-07-13T17:56:38Z 2 2020-02-15T06:59:41Z +6687 2005-07-12T12:19:23Z 2736 128 2005-07-19T17:12:23Z 1 2020-02-15T06:59:41Z +6688 2005-07-12T12:22:12Z 2377 246 2005-07-14T14:05:12Z 1 2020-02-15T06:59:41Z +6689 2005-07-12T12:22:13Z 1568 525 2005-07-16T07:44:13Z 1 2020-02-15T06:59:41Z +6690 2005-07-12T12:23:02Z 4254 447 2005-07-16T15:39:02Z 2 2020-02-15T06:59:41Z +6691 2005-07-12T12:26:38Z 403 192 2005-07-18T13:26:38Z 2 2020-02-15T06:59:41Z +6692 2005-07-12T12:35:39Z 2837 372 2005-07-20T11:20:39Z 2 2020-02-15T06:59:41Z +6693 2005-07-12T12:37:00Z 2014 573 2005-07-20T09:36:00Z 1 2020-02-15T06:59:41Z +6694 2005-07-12T12:39:23Z 586 204 2005-07-19T14:47:23Z 1 2020-02-15T06:59:41Z +6695 2005-07-12T12:39:39Z 3088 550 2005-07-17T13:36:39Z 2 2020-02-15T06:59:41Z +6696 2005-07-12T12:44:04Z 299 273 2005-07-16T14:17:04Z 1 2020-02-15T06:59:41Z +6697 2005-07-12T12:44:57Z 210 103 2005-07-19T13:02:57Z 1 2020-02-15T06:59:41Z +6698 2005-07-12T12:45:00Z 4419 64 2005-07-16T11:16:00Z 2 2020-02-15T06:59:41Z +6699 2005-07-12T12:45:21Z 3411 565 2005-07-15T12:59:21Z 1 2020-02-15T06:59:41Z +6700 2005-07-12T12:47:22Z 3063 184 2005-07-21T16:04:22Z 1 2020-02-15T06:59:41Z +6701 2005-07-12T12:47:59Z 3428 454 2005-07-13T10:28:59Z 1 2020-02-15T06:59:41Z +6702 2005-07-12T12:48:03Z 233 164 2005-07-13T11:55:03Z 1 2020-02-15T06:59:41Z +6703 2005-07-12T12:50:19Z 46 470 2005-07-16T13:41:19Z 1 2020-02-15T06:59:41Z +6704 2005-07-12T12:50:24Z 1590 595 2005-07-20T16:41:24Z 2 2020-02-15T06:59:41Z +6705 2005-07-12T12:53:11Z 4268 363 2005-07-13T07:17:11Z 1 2020-02-15T06:59:41Z +6706 2005-07-12T12:59:16Z 4552 267 2005-07-19T10:37:16Z 1 2020-02-15T06:59:41Z +6707 2005-07-12T13:07:55Z 406 80 2005-07-16T16:26:55Z 2 2020-02-15T06:59:41Z +6708 2005-07-12T13:10:55Z 372 82 2005-07-21T07:36:55Z 1 2020-02-15T06:59:41Z +6709 2005-07-12T13:20:41Z 4049 322 2005-07-16T10:37:41Z 2 2020-02-15T06:59:41Z +6710 2005-07-12T13:23:09Z 806 462 2005-07-20T10:10:09Z 2 2020-02-15T06:59:41Z +6711 2005-07-12T13:23:40Z 2247 257 2005-07-20T11:45:40Z 2 2020-02-15T06:59:41Z +6712 2005-07-12T13:24:47Z 4581 226 2005-07-20T09:35:47Z 2 2020-02-15T06:59:41Z +6713 2005-07-12T13:27:36Z 4218 557 2005-07-16T11:14:36Z 1 2020-02-15T06:59:41Z +6714 2005-07-12T13:29:06Z 1947 370 2005-07-18T16:02:06Z 2 2020-02-15T06:59:41Z +6715 2005-07-12T13:32:28Z 643 386 2005-07-15T17:01:28Z 2 2020-02-15T06:59:41Z +6716 2005-07-12T13:34:58Z 2783 367 2005-07-19T15:09:58Z 1 2020-02-15T06:59:41Z +6717 2005-07-12T13:35:02Z 523 273 2005-07-20T15:03:02Z 1 2020-02-15T06:59:41Z +6718 2005-07-12T13:38:06Z 2283 541 2005-07-18T09:05:06Z 1 2020-02-15T06:59:41Z +6719 2005-07-12T13:40:37Z 739 330 2005-07-15T15:23:37Z 2 2020-02-15T06:59:41Z +6720 2005-07-12T13:41:16Z 2704 151 2005-07-13T14:41:16Z 2 2020-02-15T06:59:41Z +6721 2005-07-12T13:42:58Z 2798 462 2005-07-19T16:39:58Z 2 2020-02-15T06:59:41Z +6722 2005-07-12T13:44:03Z 3124 211 2005-07-19T12:43:03Z 2 2020-02-15T06:59:41Z +6723 2005-07-12T13:44:57Z 2678 499 2005-07-14T15:57:57Z 2 2020-02-15T06:59:41Z +6724 2005-07-12T13:45:15Z 2486 262 2005-07-19T19:18:15Z 1 2020-02-15T06:59:41Z +6725 2005-07-12T13:47:17Z 831 213 2005-07-17T13:31:17Z 1 2020-02-15T06:59:41Z +6726 2005-07-12T13:48:14Z 4494 97 2005-07-16T11:11:14Z 1 2020-02-15T06:59:41Z +6727 2005-07-12T13:54:25Z 3793 407 2005-07-14T17:29:25Z 1 2020-02-15T06:59:41Z +6728 2005-07-12T13:56:48Z 2113 414 2005-07-15T18:49:48Z 1 2020-02-15T06:59:41Z +6729 2005-07-12T13:58:23Z 2495 455 2005-07-19T09:34:23Z 2 2020-02-15T06:59:41Z +6730 2005-07-12T13:58:25Z 1552 532 2005-07-20T13:01:25Z 1 2020-02-15T06:59:41Z +6731 2005-07-12T13:58:27Z 844 593 2005-07-15T10:04:27Z 2 2020-02-15T06:59:41Z +6732 2005-07-12T13:58:51Z 1913 299 2005-07-17T17:42:51Z 1 2020-02-15T06:59:41Z +6733 2005-07-12T14:04:01Z 1476 585 2005-07-21T18:57:01Z 2 2020-02-15T06:59:41Z +6734 2005-07-12T14:04:24Z 2248 446 2005-07-21T19:47:24Z 1 2020-02-15T06:59:41Z +6735 2005-07-12T14:08:20Z 276 428 2005-07-18T09:41:20Z 2 2020-02-15T06:59:41Z +6736 2005-07-12T14:16:50Z 530 342 2005-07-15T16:26:50Z 1 2020-02-15T06:59:41Z +6737 2005-07-12T14:16:52Z 315 304 2005-07-18T19:48:52Z 1 2020-02-15T06:59:41Z +6738 2005-07-12T14:17:55Z 1197 366 2005-07-21T10:11:55Z 2 2020-02-15T06:59:41Z +6739 2005-07-12T14:22:08Z 1221 71 2005-07-18T16:57:08Z 2 2020-02-15T06:59:41Z +6740 2005-07-12T14:22:08Z 2431 139 2005-07-14T14:35:08Z 1 2020-02-15T06:59:41Z +6741 2005-07-12T14:24:16Z 237 359 2005-07-15T08:31:16Z 1 2020-02-15T06:59:41Z +6742 2005-07-12T14:25:31Z 4242 558 2005-07-17T08:50:31Z 2 2020-02-15T06:59:41Z +6743 2005-07-12T14:29:25Z 158 261 2005-07-13T13:13:25Z 1 2020-02-15T06:59:41Z +6744 2005-07-12T14:30:28Z 2565 64 2005-07-14T16:20:28Z 1 2020-02-15T06:59:41Z +6745 2005-07-12T14:30:51Z 1331 524 2005-07-13T13:42:51Z 2 2020-02-15T06:59:41Z +6746 2005-07-12T14:33:01Z 3127 537 2005-07-17T19:52:01Z 2 2020-02-15T06:59:41Z +6747 2005-07-12T14:33:21Z 3651 126 2005-07-13T09:59:21Z 2 2020-02-15T06:59:41Z +6748 2005-07-12T14:39:27Z 3655 540 2005-07-18T13:40:27Z 2 2020-02-15T06:59:41Z +6749 2005-07-12T14:43:05Z 2895 334 2005-07-21T15:13:05Z 2 2020-02-15T06:59:41Z +6750 2005-07-12T14:49:39Z 3838 459 2005-07-18T18:43:39Z 2 2020-02-15T06:59:41Z +6751 2005-07-12T14:50:34Z 1749 312 2005-07-15T19:39:34Z 2 2020-02-15T06:59:41Z +6752 2005-07-12T14:53:15Z 3392 453 2005-07-20T09:23:15Z 1 2020-02-15T06:59:41Z +6753 2005-07-12T14:55:42Z 2591 147 2005-07-18T19:16:42Z 1 2020-02-15T06:59:41Z +6754 2005-07-12T14:59:24Z 1460 114 2005-07-14T11:04:24Z 2 2020-02-15T06:59:41Z +6755 2005-07-12T15:07:49Z 2542 126 2005-07-21T18:43:49Z 2 2020-02-15T06:59:41Z +6756 2005-07-12T15:08:28Z 1174 531 2005-07-13T14:25:28Z 2 2020-02-15T06:59:41Z +6757 2005-07-12T15:09:48Z 547 558 2005-07-17T15:04:48Z 2 2020-02-15T06:59:41Z +6758 2005-07-12T15:13:49Z 4098 546 2005-07-20T09:31:49Z 2 2020-02-15T06:59:41Z +6759 2005-07-12T15:14:48Z 3624 49 2005-07-15T11:29:48Z 1 2020-02-15T06:59:41Z +6760 2005-07-12T15:16:00Z 501 502 2005-07-20T13:20:00Z 2 2020-02-15T06:59:41Z +6761 2005-07-12T15:17:42Z 3645 7 2005-07-18T17:59:42Z 2 2020-02-15T06:59:41Z +6762 2005-07-12T15:25:33Z 3857 262 2005-07-21T18:57:33Z 1 2020-02-15T06:59:41Z +6763 2005-07-12T15:26:34Z 3364 314 2005-07-18T16:38:34Z 2 2020-02-15T06:59:41Z +6764 2005-07-12T15:29:27Z 4407 396 2005-07-21T20:00:27Z 2 2020-02-15T06:59:41Z +6765 2005-07-12T15:30:47Z 2571 433 2005-07-19T14:19:47Z 2 2020-02-15T06:59:41Z +6766 2005-07-12T15:32:01Z 3615 171 2005-07-18T14:03:01Z 2 2020-02-15T06:59:41Z +6767 2005-07-12T15:46:55Z 1819 208 2005-07-17T17:36:55Z 2 2020-02-15T06:59:41Z +6768 2005-07-12T15:47:51Z 3418 151 2005-07-19T21:17:51Z 2 2020-02-15T06:59:41Z +6769 2005-07-12T15:48:54Z 1687 63 2005-07-21T14:39:54Z 2 2020-02-15T06:59:41Z +6770 2005-07-12T15:49:40Z 2080 360 2005-07-20T10:14:40Z 2 2020-02-15T06:59:41Z +6771 2005-07-12T15:54:40Z 1113 396 2005-07-17T15:56:40Z 2 2020-02-15T06:59:41Z +6772 2005-07-12T15:55:35Z 3810 89 2005-07-18T10:47:35Z 1 2020-02-15T06:59:41Z +6773 2005-07-12T15:55:39Z 3346 12 2005-07-18T17:52:39Z 2 2020-02-15T06:59:41Z +6774 2005-07-12T15:56:08Z 868 171 2005-07-13T18:42:08Z 1 2020-02-15T06:59:41Z +6775 2005-07-12T16:01:44Z 2909 383 2005-07-19T14:11:44Z 1 2020-02-15T06:59:41Z +6776 2005-07-12T16:02:09Z 2398 348 2005-07-20T16:31:09Z 1 2020-02-15T06:59:41Z +6777 2005-07-12T16:04:40Z 4089 351 2005-07-20T15:05:40Z 2 2020-02-15T06:59:41Z +6778 2005-07-12T16:06:00Z 4503 381 2005-07-14T21:57:00Z 2 2020-02-15T06:59:41Z +6779 2005-07-12T16:10:50Z 4468 404 2005-07-17T14:51:50Z 2 2020-02-15T06:59:41Z +6780 2005-07-12T16:18:12Z 1255 121 2005-07-13T17:56:12Z 2 2020-02-15T06:59:41Z +6781 2005-07-12T16:21:47Z 3783 533 2005-07-15T19:52:47Z 1 2020-02-15T06:59:41Z +6782 2005-07-12T16:23:25Z 2742 199 2005-07-20T18:46:25Z 2 2020-02-15T06:59:41Z +6783 2005-07-12T16:27:56Z 3633 506 2005-07-13T12:11:56Z 2 2020-02-15T06:59:41Z +6784 2005-07-12T16:28:49Z 197 578 2005-07-15T17:27:49Z 1 2020-02-15T06:59:41Z +6785 2005-07-12T16:30:57Z 4448 69 2005-07-18T20:46:57Z 1 2020-02-15T06:59:41Z +6786 2005-07-12T16:32:33Z 2011 546 2005-07-16T12:42:33Z 2 2020-02-15T06:59:41Z +6787 2005-07-12T16:33:28Z 1481 342 2005-07-18T21:48:28Z 2 2020-02-15T06:59:41Z +6788 2005-07-12T16:33:44Z 1162 460 2005-07-20T15:38:44Z 2 2020-02-15T06:59:41Z +6789 2005-07-12T16:34:40Z 1973 76 2005-07-14T17:02:40Z 2 2020-02-15T06:59:41Z +6790 2005-07-12T16:34:59Z 4486 400 2005-07-17T21:43:59Z 2 2020-02-15T06:59:41Z +6791 2005-07-12T16:35:07Z 1495 144 2005-07-20T15:32:07Z 2 2020-02-15T06:59:41Z +6792 2005-07-12T16:37:28Z 510 571 2005-07-20T11:20:28Z 2 2020-02-15T06:59:41Z +6793 2005-07-12T16:37:55Z 103 148 2005-07-21T16:04:55Z 2 2020-02-15T06:59:41Z +6794 2005-07-12T16:38:23Z 813 233 2005-07-20T17:36:23Z 2 2020-02-15T06:59:41Z +6795 2005-07-12T16:41:00Z 1489 245 2005-07-21T20:52:00Z 1 2020-02-15T06:59:41Z +6796 2005-07-12T16:44:16Z 227 291 2005-07-16T14:48:16Z 2 2020-02-15T06:59:41Z +6797 2005-07-12T16:47:06Z 1536 469 2005-07-14T14:38:06Z 2 2020-02-15T06:59:41Z +6798 2005-07-12T16:49:11Z 275 115 2005-07-19T12:11:11Z 2 2020-02-15T06:59:41Z +6799 2005-07-12T16:52:13Z 2778 42 2005-07-14T15:11:13Z 2 2020-02-15T06:59:41Z +6800 2005-07-12T17:03:56Z 3742 599 2005-07-21T20:32:56Z 2 2020-02-15T06:59:41Z +6801 2005-07-12T17:09:08Z 872 500 2005-07-21T22:25:08Z 1 2020-02-15T06:59:41Z +6802 2005-07-12T17:14:17Z 2942 298 2005-07-17T11:54:17Z 2 2020-02-15T06:59:41Z +6803 2005-07-12T17:21:49Z 2676 490 2005-07-14T18:01:49Z 2 2020-02-15T06:59:41Z +6804 2005-07-12T17:22:06Z 1554 269 2005-07-21T11:37:06Z 1 2020-02-15T06:59:41Z +6805 2005-07-12T17:23:01Z 1758 262 2005-07-21T19:38:01Z 2 2020-02-15T06:59:41Z +6806 2005-07-12T17:31:43Z 656 179 2005-07-17T14:36:43Z 1 2020-02-15T06:59:41Z +6807 2005-07-12T17:33:53Z 669 376 2005-07-18T16:28:53Z 2 2020-02-15T06:59:41Z +6808 2005-07-12T17:36:42Z 362 263 2005-07-18T23:33:42Z 2 2020-02-15T06:59:41Z +6809 2005-07-12T17:51:54Z 3455 168 2005-07-17T15:10:54Z 1 2020-02-15T06:59:41Z +6810 2005-07-12T17:54:19Z 2802 485 2005-07-20T16:58:19Z 2 2020-02-15T06:59:41Z +6811 2005-07-12T17:54:33Z 1572 107 2005-07-20T17:39:33Z 1 2020-02-15T06:59:41Z +6812 2005-07-12T18:03:25Z 2227 553 2005-07-20T18:33:25Z 2 2020-02-15T06:59:41Z +6813 2005-07-12T18:03:50Z 135 54 2005-07-16T16:30:50Z 1 2020-02-15T06:59:41Z +6814 2005-07-12T18:11:58Z 1863 579 2005-07-18T20:37:58Z 2 2020-02-15T06:59:41Z +6815 2005-07-12T18:14:10Z 3236 468 2005-07-17T14:16:10Z 1 2020-02-15T06:59:41Z +6816 2005-07-12T18:18:50Z 2963 290 2005-07-18T21:09:50Z 2 2020-02-15T06:59:41Z +6817 2005-07-12T18:19:57Z 184 135 2005-07-19T22:53:57Z 1 2020-02-15T06:59:41Z +6818 2005-07-12T18:20:54Z 1013 153 2005-07-21T00:03:54Z 2 2020-02-15T06:59:41Z +6819 2005-07-12T18:21:01Z 1253 198 2005-07-13T21:14:01Z 1 2020-02-15T06:59:41Z +6820 2005-07-12T18:21:30Z 223 243 2005-07-14T15:14:30Z 1 2020-02-15T06:59:41Z +6821 2005-07-12T18:22:10Z 623 363 2005-07-14T13:25:10Z 2 2020-02-15T06:59:41Z +6822 2005-07-12T18:23:39Z 1592 300 2005-07-19T21:06:39Z 1 2020-02-15T06:59:41Z +6823 2005-07-12T18:24:31Z 795 557 2005-07-17T23:13:31Z 1 2020-02-15T06:59:41Z +6824 2005-07-12T18:26:46Z 858 579 2005-07-21T15:23:46Z 1 2020-02-15T06:59:41Z +6825 2005-07-12T18:28:12Z 2342 281 2005-07-15T19:24:12Z 1 2020-02-15T06:59:41Z +6826 2005-07-12T18:32:02Z 1708 408 2005-07-16T23:21:02Z 1 2020-02-15T06:59:41Z +6827 2005-07-12T18:33:45Z 1529 283 2005-07-13T19:09:45Z 1 2020-02-15T06:59:41Z +6828 2005-07-12T18:38:51Z 874 502 2005-07-14T20:10:51Z 1 2020-02-15T06:59:41Z +6829 2005-07-12T18:38:59Z 4184 361 2005-07-16T23:25:59Z 1 2020-02-15T06:59:41Z +6830 2005-07-12T18:42:55Z 1943 578 2005-07-17T17:58:55Z 1 2020-02-15T06:59:41Z +6831 2005-07-12T18:44:04Z 924 163 2005-07-16T21:39:04Z 2 2020-02-15T06:59:41Z +6832 2005-07-12T18:51:41Z 444 220 2005-07-20T13:29:41Z 2 2020-02-15T06:59:41Z +6833 2005-07-12T18:53:34Z 912 301 2005-07-19T22:21:34Z 2 2020-02-15T06:59:41Z +6834 2005-07-12T18:53:37Z 897 533 2005-07-19T13:42:37Z 1 2020-02-15T06:59:41Z +6835 2005-07-12T18:58:03Z 1444 367 2005-07-18T00:41:03Z 1 2020-02-15T06:59:41Z +6836 2005-07-12T18:58:05Z 2744 113 2005-07-15T17:45:05Z 1 2020-02-15T06:59:41Z +6837 2005-07-12T18:59:45Z 1203 533 2005-07-21T22:47:45Z 2 2020-02-15T06:59:41Z +6838 2005-07-12T19:01:30Z 3492 354 2005-07-17T23:42:30Z 1 2020-02-15T06:59:41Z +6839 2005-07-12T19:03:19Z 3900 357 2005-07-15T23:48:19Z 1 2020-02-15T06:59:41Z +6840 2005-07-12T19:03:22Z 1381 323 2005-07-21T18:34:22Z 2 2020-02-15T06:59:41Z +6841 2005-07-12T19:04:24Z 2265 108 2005-07-14T23:58:24Z 1 2020-02-15T06:59:41Z +6842 2005-07-12T19:07:55Z 3376 366 2005-07-19T22:47:55Z 1 2020-02-15T06:59:41Z +6843 2005-07-12T19:14:05Z 746 561 2005-07-20T23:15:05Z 1 2020-02-15T06:59:41Z +6844 2005-07-12T19:14:53Z 3211 482 2005-07-18T16:07:53Z 2 2020-02-15T06:59:41Z +6845 2005-07-12T19:20:41Z 3833 414 2005-07-14T15:27:41Z 1 2020-02-15T06:59:41Z +6846 2005-07-12T19:20:45Z 1214 18 2005-07-17T00:06:45Z 1 2020-02-15T06:59:41Z +6847 2005-07-12T19:22:37Z 346 63 2005-07-21T18:53:37Z 2 2020-02-15T06:59:41Z +6848 2005-07-12T19:24:07Z 1782 433 2005-07-14T17:03:07Z 1 2020-02-15T06:59:41Z +6849 2005-07-12T19:29:19Z 4307 479 2005-07-19T22:03:19Z 1 2020-02-15T06:59:41Z +6850 2005-07-12T19:30:42Z 1145 433 2005-07-17T21:26:42Z 2 2020-02-15T06:59:41Z +6851 2005-07-12T19:32:14Z 664 280 2005-07-17T21:03:14Z 1 2020-02-15T06:59:41Z +6852 2005-07-12T19:33:49Z 2182 75 2005-07-13T20:01:49Z 2 2020-02-15T06:59:41Z +6853 2005-07-12T19:38:11Z 4006 299 2005-07-20T00:14:11Z 1 2020-02-15T06:59:41Z +6854 2005-07-12T19:38:57Z 3173 151 2005-07-16T16:28:57Z 1 2020-02-15T06:59:41Z +6855 2005-07-12T19:46:29Z 2657 24 2005-07-15T16:56:29Z 2 2020-02-15T06:59:41Z +6856 2005-07-12T19:50:16Z 4338 275 2005-07-14T22:25:16Z 1 2020-02-15T06:59:41Z +6857 2005-07-12T19:53:30Z 424 196 2005-07-13T15:22:30Z 1 2020-02-15T06:59:41Z +6858 2005-07-12T19:53:51Z 1095 516 2005-07-19T14:12:51Z 1 2020-02-15T06:59:41Z +6859 2005-07-12T19:53:57Z 4108 321 2005-07-17T19:48:57Z 2 2020-02-15T06:59:41Z +6860 2005-07-12T19:54:17Z 2907 91 2005-07-18T13:59:17Z 1 2020-02-15T06:59:41Z +6861 2005-07-12T19:56:52Z 354 83 2005-07-13T16:02:52Z 1 2020-02-15T06:59:41Z +6862 2005-07-12T19:58:09Z 3477 231 2005-07-18T15:48:09Z 2 2020-02-15T06:59:41Z +6863 2005-07-12T19:58:34Z 229 484 2005-07-21T16:57:34Z 1 2020-02-15T06:59:41Z +6864 2005-07-12T19:59:25Z 2252 38 2005-07-19T15:52:25Z 2 2020-02-15T06:59:41Z +6865 2005-07-12T20:02:40Z 1428 175 2005-07-20T00:39:40Z 2 2020-02-15T06:59:41Z +6866 2005-07-12T20:03:44Z 2481 312 2005-07-15T01:55:44Z 1 2020-02-15T06:59:41Z +6867 2005-07-12T20:06:47Z 3354 190 2005-07-19T16:59:47Z 1 2020-02-15T06:59:41Z +6868 2005-07-12T20:10:17Z 719 306 2005-07-15T22:34:17Z 2 2020-02-15T06:59:41Z +6869 2005-07-12T20:12:06Z 3546 278 2005-07-13T18:37:06Z 1 2020-02-15T06:59:41Z +6870 2005-07-12T20:13:45Z 3102 13 2005-07-16T22:09:45Z 2 2020-02-15T06:59:41Z +6871 2005-07-12T20:13:49Z 3612 204 2005-07-14T20:11:49Z 2 2020-02-15T06:59:41Z +6872 2005-07-12T20:15:04Z 3246 86 2005-07-18T18:19:04Z 1 2020-02-15T06:59:41Z +6873 2005-07-12T20:20:50Z 802 161 2005-07-17T01:51:50Z 1 2020-02-15T06:59:41Z +6874 2005-07-12T20:20:53Z 4478 539 2005-07-19T19:41:53Z 1 2020-02-15T06:59:41Z +6875 2005-07-12T20:23:05Z 3420 172 2005-07-19T00:09:05Z 2 2020-02-15T06:59:41Z +6876 2005-07-12T20:32:50Z 34 531 2005-07-16T21:12:50Z 1 2020-02-15T06:59:41Z +6877 2005-07-12T20:32:58Z 3968 231 2005-07-18T18:01:58Z 1 2020-02-15T06:59:41Z +6878 2005-07-12T20:37:13Z 2428 363 2005-07-19T20:13:13Z 2 2020-02-15T06:59:41Z +6879 2005-07-12T20:37:37Z 1901 416 2005-07-20T15:40:37Z 2 2020-02-15T06:59:41Z +6880 2005-07-12T20:41:35Z 1473 229 2005-07-17T02:22:35Z 1 2020-02-15T06:59:41Z +6881 2005-07-12T20:46:35Z 2496 346 2005-07-21T00:26:35Z 2 2020-02-15T06:59:41Z +6882 2005-07-12T20:50:39Z 2469 166 2005-07-14T21:01:39Z 1 2020-02-15T06:59:41Z +6883 2005-07-12T20:50:48Z 468 596 2005-07-19T16:00:48Z 2 2020-02-15T06:59:41Z +6884 2005-07-12T20:52:41Z 3642 17 2005-07-20T23:13:41Z 1 2020-02-15T06:59:41Z +6885 2005-07-12T20:56:04Z 3972 159 2005-07-15T19:21:04Z 2 2020-02-15T06:59:41Z +6886 2005-07-12T20:58:04Z 4533 429 2005-07-18T16:56:04Z 2 2020-02-15T06:59:41Z +6887 2005-07-12T21:00:23Z 4487 542 2005-07-21T17:46:23Z 1 2020-02-15T06:59:41Z +6888 2005-07-12T21:01:11Z 1896 490 2005-07-17T21:49:11Z 2 2020-02-15T06:59:41Z +6889 2005-07-12T21:01:22Z 2919 198 2005-07-20T20:16:22Z 2 2020-02-15T06:59:41Z +6890 2005-07-12T21:03:03Z 2538 473 2005-07-14T00:47:03Z 1 2020-02-15T06:59:41Z +6891 2005-07-12T21:07:35Z 3189 507 2005-07-14T16:59:35Z 2 2020-02-15T06:59:41Z +6892 2005-07-12T21:10:04Z 1567 138 2005-07-13T23:03:04Z 2 2020-02-15T06:59:41Z +6893 2005-07-12T21:20:11Z 2611 377 2005-07-21T18:55:11Z 2 2020-02-15T06:59:41Z +6894 2005-07-12T21:20:50Z 1347 315 2005-07-20T23:42:50Z 2 2020-02-15T06:59:41Z +6895 2005-07-12T21:23:59Z 2935 599 2005-07-19T20:47:59Z 2 2020-02-15T06:59:41Z +6896 2005-07-12T21:25:37Z 1266 111 2005-07-20T23:51:37Z 1 2020-02-15T06:59:41Z +6897 2005-07-12T21:30:41Z 170 13 2005-07-15T03:19:41Z 1 2020-02-15T06:59:41Z +6898 2005-07-12T21:39:04Z 1725 557 2005-07-15T20:30:04Z 1 2020-02-15T06:59:41Z +6899 2005-07-12T21:44:16Z 3565 483 2005-07-21T22:21:16Z 2 2020-02-15T06:59:41Z +6900 2005-07-12T21:45:25Z 129 292 2005-07-19T21:19:25Z 1 2020-02-15T06:59:41Z +6901 2005-07-12T21:46:33Z 4574 158 2005-07-16T21:36:33Z 1 2020-02-15T06:59:41Z +6902 2005-07-12T21:57:16Z 314 485 2005-07-14T20:56:16Z 1 2020-02-15T06:59:41Z +6903 2005-07-12T21:58:15Z 3690 517 2005-07-14T01:38:15Z 2 2020-02-15T06:59:41Z +6904 2005-07-12T22:02:09Z 2312 465 2005-07-17T16:42:09Z 1 2020-02-15T06:59:41Z +6905 2005-07-12T22:02:18Z 763 25 2005-07-18T23:30:18Z 1 2020-02-15T06:59:41Z +6906 2005-07-12T22:03:02Z 1435 335 2005-07-15T00:35:02Z 1 2020-02-15T06:59:41Z +6907 2005-07-12T22:03:49Z 2516 575 2005-07-18T19:18:49Z 1 2020-02-15T06:59:41Z +6908 2005-07-12T22:08:46Z 3161 529 2005-07-21T00:21:46Z 2 2020-02-15T06:59:41Z +6909 2005-07-12T22:09:30Z 769 174 2005-07-17T02:05:30Z 2 2020-02-15T06:59:41Z +6910 2005-07-12T22:11:21Z 1290 546 2005-07-21T02:35:21Z 1 2020-02-15T06:59:41Z +6911 2005-07-12T22:14:34Z 901 361 2005-07-18T20:17:34Z 1 2020-02-15T06:59:41Z +6912 2005-07-12T22:17:16Z 1701 471 2005-07-19T18:18:16Z 1 2020-02-15T06:59:41Z +6913 2005-07-12T22:18:12Z 569 443 2005-07-14T23:03:12Z 2 2020-02-15T06:59:41Z +6914 2005-07-12T22:26:56Z 496 361 2005-07-17T20:03:56Z 1 2020-02-15T06:59:41Z +6915 2005-07-12T22:28:09Z 1243 559 2005-07-14T00:53:09Z 1 2020-02-15T06:59:41Z +6916 2005-07-12T22:29:18Z 3311 88 2005-07-19T16:46:18Z 1 2020-02-15T06:59:41Z +6917 2005-07-12T22:30:15Z 3048 23 2005-07-20T03:20:15Z 1 2020-02-15T06:59:41Z +6918 2005-07-12T22:30:29Z 4085 140 2005-07-19T22:51:29Z 1 2020-02-15T06:59:41Z +6919 2005-07-12T22:32:17Z 1122 540 2005-07-18T20:09:17Z 1 2020-02-15T06:59:41Z +6920 2005-07-12T22:32:58Z 2301 109 2005-07-19T20:29:58Z 2 2020-02-15T06:59:41Z +6921 2005-07-12T22:39:03Z 3322 265 2005-07-21T18:54:03Z 2 2020-02-15T06:59:41Z +6922 2005-07-12T22:39:48Z 1114 371 2005-07-14T18:35:48Z 1 2020-02-15T06:59:41Z +6923 2005-07-12T22:40:48Z 2642 490 2005-07-19T23:07:48Z 2 2020-02-15T06:59:41Z +6924 2005-07-26T22:51:53Z 1257 502 2005-08-03T19:04:53Z 2 2020-02-15T06:59:41Z +6925 2005-07-26T22:52:32Z 2919 42 2005-07-29T21:22:32Z 1 2020-02-15T06:59:41Z +6926 2005-07-26T22:52:45Z 1276 354 2005-07-28T18:32:45Z 1 2020-02-15T06:59:41Z +6927 2005-07-26T22:56:00Z 4511 470 2005-08-05T03:16:00Z 2 2020-02-15T06:59:41Z +6928 2005-07-26T22:56:21Z 3605 487 2005-07-30T04:46:21Z 1 2020-02-15T06:59:41Z +6929 2005-07-26T22:59:19Z 3339 508 2005-08-03T22:40:19Z 1 2020-02-15T06:59:41Z +6930 2005-07-26T23:00:01Z 2989 393 2005-08-04T01:57:01Z 2 2020-02-15T06:59:41Z +6931 2005-07-26T23:02:57Z 2794 333 2005-07-28T04:48:57Z 2 2020-02-15T06:59:41Z +6932 2005-07-26T23:08:04Z 4517 463 2005-08-05T01:35:04Z 1 2020-02-15T06:59:41Z +6933 2005-07-26T23:09:23Z 1334 385 2005-07-31T20:50:23Z 1 2020-02-15T06:59:41Z +6934 2005-07-26T23:11:03Z 455 107 2005-08-04T19:18:03Z 1 2020-02-15T06:59:41Z +6935 2005-07-26T23:13:10Z 2771 435 2005-07-27T18:09:10Z 1 2020-02-15T06:59:41Z +6936 2005-07-26T23:13:34Z 60 538 2005-07-30T19:14:34Z 1 2020-02-15T06:59:41Z +6937 2005-07-26T23:15:50Z 1768 592 2005-07-27T19:14:50Z 1 2020-02-15T06:59:41Z +6938 2005-07-26T23:16:04Z 2058 427 2005-08-05T00:59:04Z 2 2020-02-15T06:59:41Z +6939 2005-07-26T23:17:51Z 278 354 2005-08-03T21:12:51Z 2 2020-02-15T06:59:41Z +6940 2005-07-26T23:18:35Z 3876 149 2005-08-05T01:44:35Z 2 2020-02-15T06:59:41Z +6941 2005-07-26T23:18:49Z 1575 441 2005-07-31T00:23:49Z 2 2020-02-15T06:59:41Z +6942 2005-07-26T23:27:40Z 1203 470 2005-07-31T03:17:40Z 2 2020-02-15T06:59:41Z +6943 2005-07-26T23:28:13Z 2436 21 2005-07-30T02:22:13Z 2 2020-02-15T06:59:41Z +6944 2005-07-26T23:34:02Z 1168 373 2005-08-05T01:27:02Z 1 2020-02-15T06:59:41Z +6945 2005-07-26T23:35:29Z 1627 560 2005-07-28T00:12:29Z 1 2020-02-15T06:59:41Z +6946 2005-07-26T23:40:07Z 1854 181 2005-08-04T01:18:07Z 2 2020-02-15T06:59:41Z +6947 2005-07-26T23:42:03Z 760 200 2005-08-02T05:06:03Z 2 2020-02-15T06:59:41Z +6948 2005-07-26T23:43:49Z 3088 228 2005-07-27T21:24:49Z 2 2020-02-15T06:59:41Z +6949 2005-07-26T23:44:12Z 1594 103 2005-07-30T05:39:12Z 2 2020-02-15T06:59:41Z +6950 2005-07-26T23:45:33Z 197 503 2005-07-31T04:40:33Z 2 2020-02-15T06:59:41Z +6951 2005-07-26T23:47:31Z 3348 98 2005-07-31T22:17:31Z 1 2020-02-15T06:59:41Z +6952 2005-07-26T23:51:27Z 4288 290 2005-07-30T02:45:27Z 2 2020-02-15T06:59:41Z +6953 2005-07-26T23:52:47Z 2910 306 2005-07-30T23:07:47Z 1 2020-02-15T06:59:41Z +6954 2005-07-26T23:55:13Z 1112 584 2005-07-28T19:01:13Z 2 2020-02-15T06:59:41Z +6955 2005-07-26T23:55:48Z 1104 469 2005-08-02T03:25:48Z 2 2020-02-15T06:59:41Z +6956 2005-07-26T23:55:57Z 2499 240 2005-08-03T21:41:57Z 1 2020-02-15T06:59:41Z +6957 2005-07-27T00:00:00Z 2231 518 2005-07-29T19:32:00Z 2 2020-02-15T06:59:41Z +6958 2005-07-27T00:02:41Z 657 333 2005-07-28T00:53:41Z 2 2020-02-15T06:59:41Z +6959 2005-07-27T00:07:51Z 1618 452 2005-07-27T20:45:51Z 2 2020-02-15T06:59:41Z +6960 2005-07-27T00:08:33Z 192 421 2005-08-03T20:58:33Z 2 2020-02-15T06:59:41Z +6961 2005-07-27T00:10:49Z 2205 38 2005-07-30T00:26:49Z 2 2020-02-15T06:59:41Z +6962 2005-07-27T00:10:58Z 4500 245 2005-07-30T02:11:58Z 2 2020-02-15T06:59:41Z +6963 2005-07-27T00:13:02Z 4284 489 2005-08-03T18:13:02Z 1 2020-02-15T06:59:41Z +6964 2005-07-27T00:15:04Z 1537 404 2005-07-31T00:04:04Z 2 2020-02-15T06:59:41Z +6965 2005-07-27T00:15:18Z 74 185 2005-07-28T04:30:18Z 2 2020-02-15T06:59:41Z +6966 2005-07-27T00:15:35Z 1577 45 2005-08-05T03:04:35Z 2 2020-02-15T06:59:41Z +6967 2005-07-27T00:16:31Z 1145 296 2005-08-03T22:19:31Z 1 2020-02-15T06:59:41Z +6968 2005-07-27T00:16:45Z 1662 370 2005-07-30T23:16:45Z 2 2020-02-15T06:59:41Z +6969 2005-07-27T00:23:54Z 2650 579 2005-08-03T04:34:54Z 1 2020-02-15T06:59:41Z +6970 2005-07-27T00:26:14Z 17 418 2005-08-03T20:00:14Z 2 2020-02-15T06:59:41Z +6971 2005-07-27T00:26:17Z 3493 366 2005-08-01T03:59:17Z 2 2020-02-15T06:59:41Z +6972 2005-07-27T00:31:25Z 1716 434 2005-07-28T22:15:25Z 2 2020-02-15T06:59:41Z +6973 2005-07-27T00:32:04Z 4572 564 2005-07-29T01:05:04Z 2 2020-02-15T06:59:41Z +6974 2005-07-27T00:39:16Z 2924 122 2005-08-04T01:59:16Z 2 2020-02-15T06:59:41Z +6975 2005-07-27T00:39:54Z 3328 527 2005-08-02T19:49:54Z 1 2020-02-15T06:59:41Z +6976 2005-07-27T00:40:01Z 3096 41 2005-07-31T22:30:01Z 2 2020-02-15T06:59:41Z +6977 2005-07-27T00:40:50Z 3545 429 2005-08-02T19:08:50Z 2 2020-02-15T06:59:41Z +6978 2005-07-27T00:47:40Z 3645 132 2005-07-31T04:32:40Z 2 2020-02-15T06:59:41Z +6979 2005-07-27T00:49:53Z 1001 141 2005-07-31T03:59:53Z 2 2020-02-15T06:59:41Z +6980 2005-07-27T00:50:30Z 1127 164 2005-08-03T23:35:30Z 1 2020-02-15T06:59:41Z +6981 2005-07-27T00:51:38Z 154 362 2005-07-28T01:06:38Z 2 2020-02-15T06:59:41Z +6982 2005-07-27T00:53:41Z 3843 284 2005-07-31T06:19:41Z 2 2020-02-15T06:59:41Z +6983 2005-07-27T00:55:03Z 1758 443 2005-08-01T21:19:03Z 2 2020-02-15T06:59:41Z +6984 2005-07-27T00:56:30Z 2407 297 2005-08-02T01:14:30Z 2 2020-02-15T06:59:41Z +6985 2005-07-27T00:57:42Z 1834 448 2005-07-31T00:53:42Z 1 2020-02-15T06:59:41Z +6986 2005-07-27T00:59:05Z 2104 262 2005-07-29T00:31:05Z 1 2020-02-15T06:59:41Z +6987 2005-07-27T00:59:50Z 3134 334 2005-07-28T01:47:50Z 1 2020-02-15T06:59:41Z +6988 2005-07-27T01:00:08Z 756 316 2005-07-31T04:35:08Z 2 2020-02-15T06:59:41Z +6989 2005-07-27T01:00:34Z 4036 120 2005-07-30T23:53:34Z 1 2020-02-15T06:59:41Z +6990 2005-07-27T01:02:46Z 4065 146 2005-07-31T00:22:46Z 1 2020-02-15T06:59:41Z +6991 2005-07-27T01:03:06Z 319 307 2005-08-05T04:18:06Z 2 2020-02-15T06:59:41Z +6992 2005-07-27T01:04:45Z 3411 106 2005-07-28T02:34:45Z 2 2020-02-15T06:59:41Z +6993 2005-07-27T01:05:24Z 3114 154 2005-07-30T06:23:24Z 2 2020-02-15T06:59:41Z +6994 2005-07-27T01:08:26Z 4316 400 2005-08-04T22:58:26Z 2 2020-02-15T06:59:41Z +6995 2005-07-27T01:12:13Z 1630 66 2005-07-29T21:26:13Z 1 2020-02-15T06:59:41Z +6996 2005-07-27T01:13:45Z 3237 236 2005-07-28T20:43:45Z 1 2020-02-15T06:59:41Z +6997 2005-07-27T01:14:02Z 2130 342 2005-07-29T01:12:02Z 2 2020-02-15T06:59:41Z +6998 2005-07-27T01:16:29Z 788 300 2005-07-30T05:50:29Z 2 2020-02-15T06:59:41Z +6999 2005-07-27T01:21:19Z 12 224 2005-07-29T20:33:19Z 2 2020-02-15T06:59:41Z +7000 2005-07-27T01:23:24Z 2024 31 2005-08-03T02:10:24Z 2 2020-02-15T06:59:41Z +7001 2005-07-27T01:25:34Z 1460 240 2005-07-31T23:30:34Z 2 2020-02-15T06:59:41Z +7002 2005-07-27T01:26:14Z 4157 349 2005-08-01T20:10:14Z 1 2020-02-15T06:59:41Z +7003 2005-07-27T01:32:06Z 636 161 2005-07-30T21:33:06Z 2 2020-02-15T06:59:41Z +7004 2005-07-27T01:36:05Z 4416 314 2005-08-03T23:46:05Z 1 2020-02-15T06:59:41Z +7005 2005-07-27T01:38:36Z 2438 446 2005-08-02T05:56:36Z 2 2020-02-15T06:59:41Z +7006 2005-07-27T01:42:20Z 3522 264 2005-08-03T03:19:20Z 1 2020-02-15T06:59:41Z +7007 2005-07-27T01:43:39Z 4186 257 2005-07-31T21:04:39Z 1 2020-02-15T06:59:41Z +7008 2005-07-27T01:44:03Z 3659 12 2005-07-28T21:19:03Z 2 2020-02-15T06:59:41Z +7009 2005-07-27T01:45:44Z 1585 414 2005-07-28T05:50:44Z 1 2020-02-15T06:59:41Z +7010 2005-07-27T01:56:01Z 3016 590 2005-07-30T04:40:01Z 1 2020-02-15T06:59:41Z +7011 2005-07-27T01:58:34Z 4082 254 2005-07-28T06:11:34Z 1 2020-02-15T06:59:41Z +7012 2005-07-27T02:01:03Z 779 239 2005-08-05T07:34:03Z 2 2020-02-15T06:59:41Z +7013 2005-07-27T02:03:21Z 3919 463 2005-07-31T22:12:21Z 1 2020-02-15T06:59:41Z +7014 2005-07-27T02:14:40Z 714 524 2005-08-03T00:32:40Z 2 2020-02-15T06:59:41Z +7015 2005-07-27T02:15:01Z 376 34 2005-07-28T07:46:01Z 2 2020-02-15T06:59:41Z +7016 2005-07-27T02:15:16Z 1425 423 2005-08-01T23:08:16Z 2 2020-02-15T06:59:41Z +7017 2005-07-27T02:16:03Z 753 176 2005-07-31T07:49:03Z 1 2020-02-15T06:59:41Z +7018 2005-07-27T02:20:22Z 1078 451 2005-08-02T05:04:22Z 2 2020-02-15T06:59:41Z +7019 2005-07-27T02:20:26Z 3837 491 2005-08-02T22:48:26Z 1 2020-02-15T06:59:41Z +7020 2005-07-27T02:24:27Z 3965 506 2005-07-29T01:27:27Z 2 2020-02-15T06:59:41Z +7021 2005-07-27T02:26:38Z 2690 380 2005-08-05T01:18:38Z 1 2020-02-15T06:59:41Z +7022 2005-07-27T02:31:15Z 1711 243 2005-07-29T02:52:15Z 1 2020-02-15T06:59:41Z +7023 2005-07-27T02:32:44Z 4196 303 2005-08-03T04:06:44Z 1 2020-02-15T06:59:41Z +7024 2005-07-27T02:36:40Z 3113 252 2005-07-28T06:58:40Z 1 2020-02-15T06:59:41Z +7025 2005-07-27T02:40:29Z 3530 176 2005-07-29T23:02:29Z 2 2020-02-15T06:59:41Z +7026 2005-07-27T02:48:58Z 3456 493 2005-07-29T03:41:58Z 2 2020-02-15T06:59:41Z +7027 2005-07-27T02:50:15Z 3280 61 2005-08-04T02:58:15Z 1 2020-02-15T06:59:41Z +7028 2005-07-27T02:54:25Z 834 179 2005-08-02T06:16:25Z 2 2020-02-15T06:59:41Z +7029 2005-07-27T02:57:43Z 2862 389 2005-07-30T08:24:43Z 1 2020-02-15T06:59:41Z +7030 2005-07-27T03:01:40Z 1277 550 2005-07-31T07:01:40Z 1 2020-02-15T06:59:41Z +7031 2005-07-27T03:02:07Z 1435 530 2005-08-02T07:14:07Z 1 2020-02-15T06:59:41Z +7032 2005-07-27T03:03:09Z 3397 269 2005-07-28T22:57:09Z 1 2020-02-15T06:59:41Z +7033 2005-07-27T03:03:25Z 2803 352 2005-07-28T01:57:25Z 2 2020-02-15T06:59:41Z +7034 2005-07-27T03:03:37Z 1712 281 2005-07-28T23:18:37Z 1 2020-02-15T06:59:41Z +7035 2005-07-27T03:06:09Z 2439 90 2005-08-02T21:59:09Z 2 2020-02-15T06:59:41Z +7036 2005-07-27T03:06:12Z 2569 70 2005-07-28T23:26:12Z 2 2020-02-15T06:59:41Z +7037 2005-07-27T03:06:44Z 3155 171 2005-08-02T04:51:44Z 2 2020-02-15T06:59:41Z +7038 2005-07-27T03:07:29Z 1909 518 2005-07-31T04:55:29Z 2 2020-02-15T06:59:41Z +7039 2005-07-27T03:11:48Z 1906 99 2005-08-01T23:55:48Z 1 2020-02-15T06:59:41Z +7040 2005-07-27T03:17:19Z 470 524 2005-07-29T07:03:19Z 2 2020-02-15T06:59:41Z +7041 2005-07-27T03:18:32Z 4212 379 2005-07-30T06:40:32Z 2 2020-02-15T06:59:41Z +7042 2005-07-27T03:20:18Z 399 188 2005-08-01T02:23:18Z 1 2020-02-15T06:59:41Z +7043 2005-07-27T03:24:23Z 3422 493 2005-08-05T02:55:23Z 2 2020-02-15T06:59:41Z +7044 2005-07-27T03:27:29Z 88 147 2005-08-01T07:00:29Z 2 2020-02-15T06:59:41Z +7045 2005-07-27T03:27:35Z 1788 64 2005-08-01T06:31:35Z 2 2020-02-15T06:59:41Z +7046 2005-07-27T03:27:56Z 3740 349 2005-07-30T00:54:56Z 2 2020-02-15T06:59:41Z +7047 2005-07-27T03:31:11Z 2866 236 2005-08-03T23:40:11Z 1 2020-02-15T06:59:41Z +7048 2005-07-27T03:31:48Z 3707 581 2005-08-05T07:30:48Z 2 2020-02-15T06:59:41Z +7049 2005-07-27T03:32:41Z 3043 332 2005-08-04T08:32:41Z 2 2020-02-15T06:59:41Z +7050 2005-07-27T03:33:17Z 1135 55 2005-08-02T03:12:17Z 1 2020-02-15T06:59:41Z +7051 2005-07-27T03:34:37Z 1310 184 2005-07-31T03:48:37Z 2 2020-02-15T06:59:41Z +7052 2005-07-27T03:36:38Z 3798 75 2005-08-03T21:51:38Z 1 2020-02-15T06:59:41Z +7053 2005-07-27T03:38:54Z 149 408 2005-07-31T01:13:54Z 1 2020-02-15T06:59:41Z +7054 2005-07-27T03:43:28Z 2661 179 2005-08-04T09:15:28Z 1 2020-02-15T06:59:41Z +7055 2005-07-27T03:45:42Z 4305 154 2005-07-30T05:11:42Z 1 2020-02-15T06:59:41Z +7056 2005-07-27T03:46:27Z 805 233 2005-08-05T07:46:27Z 1 2020-02-15T06:59:41Z +7057 2005-07-27T03:50:03Z 1196 320 2005-08-04T04:36:03Z 1 2020-02-15T06:59:41Z +7058 2005-07-27T03:50:46Z 716 90 2005-08-04T07:40:46Z 2 2020-02-15T06:59:41Z +7059 2005-07-27T03:51:02Z 129 578 2005-08-02T22:04:02Z 1 2020-02-15T06:59:41Z +7060 2005-07-27T03:51:04Z 3912 479 2005-08-03T07:53:04Z 1 2020-02-15T06:59:41Z +7061 2005-07-27T03:51:10Z 880 145 2005-07-31T05:36:10Z 1 2020-02-15T06:59:41Z +7062 2005-07-27T03:52:01Z 226 469 2005-08-03T08:26:01Z 1 2020-02-15T06:59:41Z +7063 2005-07-27T03:52:27Z 2125 58 2005-08-04T07:53:27Z 1 2020-02-15T06:59:41Z +7064 2005-07-27T03:53:29Z 4204 320 2005-08-03T06:32:29Z 1 2020-02-15T06:59:41Z +7065 2005-07-27T03:53:43Z 3570 536 2005-07-30T23:41:43Z 2 2020-02-15T06:59:41Z +7066 2005-07-27T03:53:52Z 1862 185 2005-08-05T03:32:52Z 1 2020-02-15T06:59:41Z +7067 2005-07-27T03:55:10Z 870 60 2005-08-01T02:56:10Z 1 2020-02-15T06:59:41Z +7068 2005-07-27T03:57:50Z 4465 568 2005-07-30T04:27:50Z 1 2020-02-15T06:59:41Z +7069 2005-07-27T03:59:35Z 2073 343 2005-08-05T03:33:35Z 1 2020-02-15T06:59:41Z +7070 2005-07-27T04:01:08Z 4182 280 2005-07-30T08:10:08Z 2 2020-02-15T06:59:41Z +7071 2005-07-27T04:01:15Z 4361 61 2005-08-03T05:18:15Z 2 2020-02-15T06:59:41Z +7072 2005-07-27T04:02:33Z 3899 260 2005-07-28T09:26:33Z 2 2020-02-15T06:59:41Z +7073 2005-07-27T04:03:26Z 3859 92 2005-08-03T05:50:26Z 1 2020-02-15T06:59:41Z +7074 2005-07-27T04:06:24Z 1390 165 2005-07-28T02:04:24Z 1 2020-02-15T06:59:41Z +7075 2005-07-27T04:11:40Z 4414 530 2005-08-03T08:16:40Z 2 2020-02-15T06:59:41Z +7076 2005-07-27T04:12:14Z 2821 333 2005-08-05T00:44:14Z 1 2020-02-15T06:59:41Z +7077 2005-07-27T04:13:02Z 3186 155 2005-07-31T23:15:02Z 1 2020-02-15T06:59:41Z +7078 2005-07-27T04:16:37Z 4518 545 2005-08-05T02:34:37Z 1 2020-02-15T06:59:41Z +7079 2005-07-27T04:21:58Z 4356 356 2005-08-04T08:08:58Z 1 2020-02-15T06:59:41Z +7080 2005-07-27T04:25:25Z 710 466 2005-08-04T04:22:25Z 2 2020-02-15T06:59:41Z +7081 2005-07-27T04:25:59Z 462 420 2005-08-01T00:14:59Z 1 2020-02-15T06:59:41Z +7082 2005-07-27T04:27:32Z 2032 64 2005-07-30T06:06:32Z 2 2020-02-15T06:59:41Z +7083 2005-07-27T04:28:39Z 2663 575 2005-07-30T04:35:39Z 2 2020-02-15T06:59:41Z +7084 2005-07-27T04:34:07Z 785 32 2005-08-05T00:21:07Z 2 2020-02-15T06:59:41Z +7085 2005-07-27T04:35:44Z 2603 223 2005-08-05T07:10:44Z 2 2020-02-15T06:59:41Z +7086 2005-07-27T04:39:46Z 2938 595 2005-08-05T00:32:46Z 2 2020-02-15T06:59:41Z +7087 2005-07-27T04:42:08Z 1159 22 2005-08-02T00:53:08Z 1 2020-02-15T06:59:41Z +7088 2005-07-27T04:42:28Z 373 88 2005-08-04T07:09:28Z 2 2020-02-15T06:59:41Z +7089 2005-07-27T04:43:42Z 1380 446 2005-07-30T10:04:42Z 1 2020-02-15T06:59:41Z +7090 2005-07-27T04:43:53Z 3495 218 2005-07-29T07:33:53Z 2 2020-02-15T06:59:41Z +7091 2005-07-27T04:44:10Z 2593 322 2005-07-31T07:14:10Z 1 2020-02-15T06:59:41Z +7092 2005-07-27T04:46:00Z 1433 345 2005-08-03T07:22:00Z 2 2020-02-15T06:59:41Z +7093 2005-07-27T04:47:00Z 3065 574 2005-07-31T10:15:00Z 1 2020-02-15T06:59:41Z +7094 2005-07-27T04:47:33Z 867 373 2005-07-31T04:07:33Z 2 2020-02-15T06:59:41Z +7095 2005-07-27T04:51:15Z 1008 551 2005-08-05T10:25:15Z 2 2020-02-15T06:59:41Z +7096 2005-07-27T04:54:42Z 2575 3 2005-08-03T01:42:42Z 2 2020-02-15T06:59:41Z +7097 2005-07-27T04:56:09Z 258 487 2005-07-31T05:47:09Z 1 2020-02-15T06:59:41Z +7098 2005-07-27T05:01:08Z 2555 359 2005-08-02T07:49:08Z 2 2020-02-15T06:59:41Z +7099 2005-07-27T05:03:44Z 3136 6 2005-07-29T00:12:44Z 2 2020-02-15T06:59:41Z +7100 2005-07-27T05:05:01Z 4224 413 2005-07-28T23:12:01Z 2 2020-02-15T06:59:41Z +7101 2005-07-27T05:06:34Z 2006 221 2005-07-29T06:12:34Z 1 2020-02-15T06:59:41Z +7102 2005-07-27T05:07:21Z 1081 411 2005-08-01T09:41:21Z 2 2020-02-15T06:59:41Z +7103 2005-07-27T05:08:59Z 1697 403 2005-07-29T03:42:59Z 2 2020-02-15T06:59:41Z +7104 2005-07-27T05:15:25Z 118 217 2005-08-01T05:36:25Z 2 2020-02-15T06:59:41Z +7105 2005-07-27T05:15:37Z 864 15 2005-07-28T05:49:37Z 2 2020-02-15T06:59:41Z +7106 2005-07-27T05:21:24Z 1415 201 2005-08-02T01:58:24Z 2 2020-02-15T06:59:41Z +7107 2005-07-27T05:22:04Z 1883 104 2005-08-02T06:38:04Z 1 2020-02-15T06:59:41Z +7108 2005-07-27T05:28:32Z 2720 355 2005-07-31T07:52:32Z 1 2020-02-15T06:59:41Z +7109 2005-07-27T05:28:57Z 1658 406 2005-08-04T10:41:57Z 2 2020-02-15T06:59:41Z +7110 2005-07-27T05:30:48Z 3289 157 2005-07-28T01:43:48Z 1 2020-02-15T06:59:41Z +7111 2005-07-27T05:38:16Z 1252 473 2005-07-29T04:28:16Z 2 2020-02-15T06:59:41Z +7112 2005-07-27T05:38:42Z 4056 101 2005-08-03T05:35:42Z 1 2020-02-15T06:59:41Z +7113 2005-07-27T05:41:20Z 1963 534 2005-07-30T04:50:20Z 1 2020-02-15T06:59:41Z +7114 2005-07-27T05:42:13Z 3892 121 2005-07-29T01:59:13Z 1 2020-02-15T06:59:41Z +7115 2005-07-27T05:42:58Z 3620 359 2005-08-02T05:35:58Z 2 2020-02-15T06:59:41Z +7116 2005-07-27T05:46:43Z 1755 209 2005-08-05T05:54:43Z 1 2020-02-15T06:59:41Z +7117 2005-07-27T05:48:36Z 2772 326 2005-08-01T00:33:36Z 1 2020-02-15T06:59:41Z +7118 2005-07-27T05:53:50Z 582 591 2005-08-05T04:19:50Z 2 2020-02-15T06:59:41Z +7119 2005-07-27T05:55:32Z 1732 102 2005-07-29T03:19:32Z 1 2020-02-15T06:59:41Z +7120 2005-07-27T05:56:39Z 416 98 2005-08-04T10:57:39Z 1 2020-02-15T06:59:41Z +7121 2005-07-27T05:58:32Z 1264 252 2005-07-29T06:14:32Z 1 2020-02-15T06:59:41Z +7122 2005-07-27T06:03:18Z 1699 172 2005-08-04T10:43:18Z 2 2020-02-15T06:59:41Z +7123 2005-07-27T06:08:48Z 134 232 2005-08-04T05:26:48Z 1 2020-02-15T06:59:41Z +7124 2005-07-27T06:09:30Z 3449 34 2005-08-02T09:31:30Z 1 2020-02-15T06:59:41Z +7125 2005-07-27T06:11:00Z 801 460 2005-08-04T09:41:00Z 2 2020-02-15T06:59:41Z +7126 2005-07-27T06:13:13Z 3240 582 2005-07-28T08:22:13Z 2 2020-02-15T06:59:41Z +7127 2005-07-27T06:13:48Z 273 486 2005-08-01T02:50:48Z 2 2020-02-15T06:59:41Z +7128 2005-07-27T06:14:36Z 143 529 2005-08-02T05:18:36Z 1 2020-02-15T06:59:41Z +7129 2005-07-27T06:18:01Z 1930 221 2005-07-28T02:38:01Z 1 2020-02-15T06:59:41Z +7130 2005-07-27T06:23:36Z 420 81 2005-07-28T10:23:36Z 1 2020-02-15T06:59:41Z +7131 2005-07-27T06:25:06Z 2832 585 2005-07-31T09:07:06Z 1 2020-02-15T06:59:41Z +7132 2005-07-27T06:28:34Z 3201 227 2005-08-05T06:02:34Z 2 2020-02-15T06:59:41Z +7133 2005-07-27T06:29:23Z 2995 496 2005-07-29T03:20:23Z 2 2020-02-15T06:59:41Z +7134 2005-07-27T06:33:06Z 1058 574 2005-07-28T06:15:06Z 1 2020-02-15T06:59:41Z +7135 2005-07-27T06:34:32Z 2959 172 2005-07-28T03:01:32Z 1 2020-02-15T06:59:41Z +7136 2005-07-27T06:38:25Z 1929 6 2005-08-03T05:13:25Z 1 2020-02-15T06:59:41Z +7137 2005-07-27T06:40:41Z 3957 483 2005-07-29T09:05:41Z 2 2020-02-15T06:59:41Z +7138 2005-07-27T06:47:13Z 1418 31 2005-08-03T01:12:13Z 2 2020-02-15T06:59:41Z +7139 2005-07-27T06:52:21Z 846 575 2005-07-30T01:45:21Z 1 2020-02-15T06:59:41Z +7140 2005-07-27T06:54:12Z 2028 35 2005-08-03T10:36:12Z 2 2020-02-15T06:59:41Z +7141 2005-07-27T06:55:27Z 3579 423 2005-08-01T11:10:27Z 1 2020-02-15T06:59:41Z +7142 2005-07-27T06:55:39Z 1743 396 2005-07-28T01:41:39Z 2 2020-02-15T06:59:41Z +7143 2005-07-27T06:56:31Z 2877 91 2005-07-31T04:38:31Z 2 2020-02-15T06:59:41Z +7144 2005-07-27T07:00:37Z 4506 485 2005-08-01T06:57:37Z 1 2020-02-15T06:59:41Z +7145 2005-07-27T07:01:00Z 3653 109 2005-07-31T02:31:00Z 1 2020-02-15T06:59:41Z +7146 2005-07-27T07:02:30Z 2245 323 2005-08-05T10:29:30Z 1 2020-02-15T06:59:41Z +7147 2005-07-27T07:02:34Z 990 192 2005-08-01T02:16:34Z 1 2020-02-15T06:59:41Z +7148 2005-07-27T07:04:09Z 1783 354 2005-08-03T10:20:09Z 2 2020-02-15T06:59:41Z +7149 2005-07-27T07:10:40Z 3902 242 2005-08-03T07:37:40Z 2 2020-02-15T06:59:41Z +7150 2005-07-27T07:11:14Z 457 191 2005-08-05T06:55:14Z 2 2020-02-15T06:59:41Z +7151 2005-07-27T07:14:31Z 1259 289 2005-08-01T01:35:31Z 2 2020-02-15T06:59:41Z +7152 2005-07-27T07:15:01Z 2338 370 2005-08-05T04:50:01Z 1 2020-02-15T06:59:41Z +7153 2005-07-27T07:15:38Z 2657 41 2005-07-28T09:56:38Z 1 2020-02-15T06:59:41Z +7154 2005-07-27T07:16:17Z 2019 518 2005-07-28T04:04:17Z 2 2020-02-15T06:59:41Z +7155 2005-07-27T07:18:46Z 171 23 2005-08-04T10:28:46Z 1 2020-02-15T06:59:41Z +7156 2005-07-27T07:19:34Z 34 154 2005-07-31T04:31:34Z 1 2020-02-15T06:59:41Z +7157 2005-07-27T07:20:28Z 1353 423 2005-08-02T07:19:28Z 1 2020-02-15T06:59:41Z +7158 2005-07-27T07:23:58Z 2432 38 2005-08-03T06:00:58Z 2 2020-02-15T06:59:41Z +7159 2005-07-27T07:24:00Z 1220 158 2005-08-05T11:13:00Z 1 2020-02-15T06:59:41Z +7160 2005-07-27T07:26:06Z 3905 71 2005-07-31T04:54:06Z 2 2020-02-15T06:59:41Z +7161 2005-07-27T07:26:32Z 378 572 2005-08-03T01:26:32Z 2 2020-02-15T06:59:41Z +7162 2005-07-27T07:32:45Z 2251 289 2005-07-30T03:48:45Z 1 2020-02-15T06:59:41Z +7163 2005-07-27T07:36:11Z 3666 38 2005-08-04T06:03:11Z 2 2020-02-15T06:59:41Z +7164 2005-07-27T07:36:34Z 527 284 2005-08-04T05:05:34Z 2 2020-02-15T06:59:41Z +7165 2005-07-27T07:36:46Z 497 243 2005-07-30T09:22:46Z 2 2020-02-15T06:59:41Z +7166 2005-07-27T07:36:56Z 1375 562 2005-08-02T03:46:56Z 1 2020-02-15T06:59:41Z +7167 2005-07-27T07:37:26Z 238 380 2005-08-03T06:39:26Z 1 2020-02-15T06:59:41Z +7168 2005-07-27T07:51:11Z 6 252 2005-08-01T04:08:11Z 2 2020-02-15T06:59:41Z +7169 2005-07-27T07:51:39Z 735 559 2005-08-01T06:42:39Z 1 2020-02-15T06:59:41Z +7170 2005-07-27T07:58:26Z 370 140 2005-07-28T02:30:26Z 1 2020-02-15T06:59:41Z +7171 2005-07-27T07:58:35Z 4381 406 2005-08-03T07:45:35Z 1 2020-02-15T06:59:41Z +7172 2005-07-27T07:59:16Z 2405 362 2005-08-01T04:46:16Z 1 2020-02-15T06:59:41Z +7173 2005-07-27T07:59:24Z 177 592 2005-07-28T02:23:24Z 2 2020-02-15T06:59:41Z +7174 2005-07-27T08:00:36Z 46 570 2005-08-01T03:11:36Z 1 2020-02-15T06:59:41Z +7175 2005-07-27T08:03:22Z 568 190 2005-08-01T02:47:22Z 2 2020-02-15T06:59:41Z +7176 2005-07-27T08:04:28Z 227 257 2005-07-29T14:00:28Z 2 2020-02-15T06:59:41Z +7177 2005-07-27T08:07:39Z 3818 133 2005-07-30T03:17:39Z 2 2020-02-15T06:59:41Z +7178 2005-07-27T08:09:25Z 1899 31 2005-07-29T13:00:25Z 2 2020-02-15T06:59:41Z +7179 2005-07-27T08:10:29Z 2365 537 2005-07-28T12:24:29Z 2 2020-02-15T06:59:41Z +7180 2005-07-27T08:14:34Z 460 215 2005-07-31T05:24:34Z 1 2020-02-15T06:59:41Z +7181 2005-07-27T08:14:34Z 2788 130 2005-07-28T03:09:34Z 1 2020-02-15T06:59:41Z +7182 2005-07-27T08:15:38Z 3209 97 2005-08-03T12:48:38Z 2 2020-02-15T06:59:41Z +7183 2005-07-27T08:18:38Z 3384 302 2005-08-01T03:24:38Z 1 2020-02-15T06:59:41Z +7184 2005-07-27T08:22:26Z 2324 457 2005-08-02T09:34:26Z 2 2020-02-15T06:59:41Z +7185 2005-07-27T08:23:54Z 2340 121 2005-07-30T09:50:54Z 1 2020-02-15T06:59:41Z +7186 2005-07-27T08:26:12Z 4005 584 2005-07-28T12:21:12Z 1 2020-02-15T06:59:41Z +7187 2005-07-27T08:27:58Z 2733 169 2005-08-05T09:05:58Z 1 2020-02-15T06:59:41Z +7188 2005-07-27T08:32:08Z 2199 259 2005-07-28T08:02:08Z 1 2020-02-15T06:59:41Z +7189 2005-07-27T08:35:02Z 4419 151 2005-07-30T14:00:02Z 2 2020-02-15T06:59:41Z +7190 2005-07-27T08:36:01Z 1330 372 2005-07-30T08:32:01Z 2 2020-02-15T06:59:41Z +7191 2005-07-27T08:36:15Z 4292 495 2005-08-03T08:54:15Z 1 2020-02-15T06:59:41Z +7192 2005-07-27T08:36:55Z 4329 532 2005-07-30T11:58:55Z 2 2020-02-15T06:59:41Z +7193 2005-07-27T08:37:00Z 1801 237 2005-07-30T12:51:00Z 2 2020-02-15T06:59:41Z +7194 2005-07-27T08:39:58Z 254 172 2005-08-01T03:12:58Z 1 2020-02-15T06:59:41Z +7195 2005-07-27T08:47:01Z 721 157 2005-07-30T08:40:01Z 2 2020-02-15T06:59:41Z +7196 2005-07-27T08:49:08Z 2998 118 2005-07-29T03:54:08Z 1 2020-02-15T06:59:41Z +7197 2005-07-27T08:49:32Z 2109 577 2005-07-31T13:50:32Z 1 2020-02-15T06:59:41Z +7198 2005-07-27T08:50:07Z 4283 520 2005-08-04T09:46:07Z 2 2020-02-15T06:59:41Z +7199 2005-07-27T08:53:23Z 3685 292 2005-08-03T10:01:23Z 1 2020-02-15T06:59:41Z +7200 2005-07-27T08:57:38Z 4406 78 2005-08-02T12:29:38Z 2 2020-02-15T06:59:41Z +7201 2005-07-27T08:57:40Z 482 598 2005-08-04T09:55:40Z 2 2020-02-15T06:59:41Z +7202 2005-07-27T09:00:20Z 109 560 2005-08-04T03:09:20Z 1 2020-02-15T06:59:41Z +7203 2005-07-27T09:01:23Z 1685 492 2005-08-04T14:14:23Z 1 2020-02-15T06:59:41Z +7204 2005-07-27T09:02:31Z 2512 531 2005-08-03T08:56:31Z 2 2020-02-15T06:59:41Z +7205 2005-07-27T09:06:13Z 2828 36 2005-08-05T07:11:13Z 1 2020-02-15T06:59:41Z +7206 2005-07-27T09:07:05Z 3752 373 2005-07-31T03:13:05Z 2 2020-02-15T06:59:41Z +7207 2005-07-27T09:13:26Z 336 51 2005-08-01T10:24:26Z 1 2020-02-15T06:59:41Z +7208 2005-07-27T09:16:28Z 1523 138 2005-07-28T09:40:28Z 1 2020-02-15T06:59:41Z +7209 2005-07-27T09:16:53Z 3766 49 2005-07-30T08:09:53Z 2 2020-02-15T06:59:41Z +7210 2005-07-27T09:19:05Z 1984 176 2005-07-28T04:35:05Z 1 2020-02-15T06:59:41Z +7211 2005-07-27T09:20:00Z 4445 285 2005-08-02T14:53:00Z 1 2020-02-15T06:59:41Z +7212 2005-07-27T09:21:22Z 2905 591 2005-08-01T04:47:22Z 2 2020-02-15T06:59:41Z +7213 2005-07-27T09:22:29Z 2836 502 2005-08-03T13:53:29Z 2 2020-02-15T06:59:41Z +7214 2005-07-27T09:23:33Z 802 309 2005-08-03T13:14:33Z 2 2020-02-15T06:59:41Z +7215 2005-07-27T09:24:00Z 2713 473 2005-08-05T07:37:00Z 2 2020-02-15T06:59:41Z +7216 2005-07-27T09:27:45Z 1812 292 2005-08-03T13:08:45Z 1 2020-02-15T06:59:41Z +7217 2005-07-27T09:31:44Z 2646 20 2005-07-29T10:48:44Z 1 2020-02-15T06:59:41Z +7218 2005-07-27T09:34:24Z 2458 530 2005-08-01T07:00:24Z 1 2020-02-15T06:59:41Z +7219 2005-07-27T09:35:36Z 4046 512 2005-07-29T04:44:36Z 1 2020-02-15T06:59:41Z +7220 2005-07-27T09:35:54Z 3867 79 2005-08-04T06:00:54Z 2 2020-02-15T06:59:41Z +7221 2005-07-27T09:37:35Z 3820 579 2005-07-28T11:25:35Z 1 2020-02-15T06:59:41Z +7222 2005-07-27T09:38:43Z 2330 206 2005-07-28T06:25:43Z 1 2020-02-15T06:59:41Z +7223 2005-07-27T09:42:27Z 2623 325 2005-08-04T04:02:27Z 1 2020-02-15T06:59:41Z +7224 2005-07-27T09:44:26Z 2701 106 2005-08-05T12:46:26Z 2 2020-02-15T06:59:41Z +7225 2005-07-27T09:47:12Z 632 306 2005-08-03T13:19:12Z 2 2020-02-15T06:59:41Z +7226 2005-07-27T09:47:53Z 3507 370 2005-08-01T08:24:53Z 1 2020-02-15T06:59:41Z +7227 2005-07-27T09:53:43Z 791 164 2005-08-05T09:36:43Z 2 2020-02-15T06:59:41Z +7228 2005-07-27T09:55:33Z 1693 481 2005-07-29T04:33:33Z 2 2020-02-15T06:59:41Z +7229 2005-07-27T10:00:54Z 978 182 2005-07-28T13:58:54Z 2 2020-02-15T06:59:41Z +7230 2005-07-27T10:01:41Z 1152 245 2005-08-02T11:00:41Z 1 2020-02-15T06:59:41Z +7231 2005-07-27T10:01:51Z 1638 86 2005-08-05T13:38:51Z 2 2020-02-15T06:59:41Z +7232 2005-07-27T10:04:19Z 1147 306 2005-07-28T09:43:19Z 2 2020-02-15T06:59:41Z +7233 2005-07-27T10:08:36Z 213 245 2005-07-31T16:00:36Z 1 2020-02-15T06:59:41Z +7234 2005-07-27T10:08:45Z 3873 372 2005-07-31T13:58:45Z 1 2020-02-15T06:59:41Z +7235 2005-07-27T10:09:30Z 1261 354 2005-08-05T11:44:30Z 2 2020-02-15T06:59:41Z +7236 2005-07-27T10:09:39Z 3004 218 2005-08-03T16:05:39Z 1 2020-02-15T06:59:41Z +7237 2005-07-27T10:12:36Z 1904 29 2005-07-31T08:40:36Z 2 2020-02-15T06:59:41Z +7238 2005-07-27T10:13:41Z 1197 116 2005-07-29T11:07:41Z 1 2020-02-15T06:59:41Z +7239 2005-07-27T10:20:27Z 1786 278 2005-07-29T10:15:27Z 1 2020-02-15T06:59:41Z +7240 2005-07-27T10:21:15Z 4565 324 2005-08-03T05:04:15Z 1 2020-02-15T06:59:41Z +7241 2005-07-27T10:25:49Z 2433 354 2005-07-28T05:30:49Z 2 2020-02-15T06:59:41Z +7242 2005-07-27T10:25:51Z 1966 565 2005-08-04T16:02:51Z 2 2020-02-15T06:59:41Z +7243 2005-07-27T10:26:11Z 1287 238 2005-07-29T11:43:11Z 2 2020-02-15T06:59:41Z +7244 2005-07-27T10:27:33Z 1329 339 2005-07-30T13:09:33Z 1 2020-02-15T06:59:41Z +7245 2005-07-27T10:29:06Z 260 95 2005-08-05T12:09:06Z 2 2020-02-15T06:59:41Z +7246 2005-07-27T10:30:41Z 2003 333 2005-07-30T05:44:41Z 1 2020-02-15T06:59:41Z +7247 2005-07-27T10:32:58Z 1445 102 2005-07-29T05:00:58Z 2 2020-02-15T06:59:41Z +7248 2005-07-27T10:37:45Z 4256 456 2005-08-01T13:13:45Z 1 2020-02-15T06:59:41Z +7249 2005-07-27T10:39:53Z 2441 425 2005-07-28T14:48:53Z 2 2020-02-15T06:59:41Z +7250 2005-07-27T10:44:09Z 3410 589 2005-07-28T11:47:09Z 1 2020-02-15T06:59:41Z +7251 2005-07-27T10:44:55Z 1737 360 2005-08-01T16:12:55Z 1 2020-02-15T06:59:41Z +7252 2005-07-27T10:45:28Z 3107 549 2005-08-04T06:24:28Z 2 2020-02-15T06:59:41Z +7253 2005-07-27T10:46:37Z 1950 236 2005-07-28T11:18:37Z 1 2020-02-15T06:59:41Z +7254 2005-07-27T10:48:50Z 2697 286 2005-07-28T10:34:50Z 1 2020-02-15T06:59:41Z +7255 2005-07-27T10:49:54Z 2101 502 2005-07-31T10:40:54Z 2 2020-02-15T06:59:41Z +7256 2005-07-27T10:58:32Z 4275 363 2005-07-29T08:58:32Z 2 2020-02-15T06:59:41Z +7257 2005-07-27T11:04:17Z 3302 480 2005-08-04T12:32:17Z 2 2020-02-15T06:59:41Z +7258 2005-07-27T11:05:54Z 2079 494 2005-08-02T11:36:54Z 1 2020-02-15T06:59:41Z +7259 2005-07-27T11:06:00Z 2345 406 2005-08-02T06:44:00Z 2 2020-02-15T06:59:41Z +7260 2005-07-27T11:09:28Z 3827 434 2005-08-03T09:41:28Z 1 2020-02-15T06:59:41Z +7261 2005-07-27T11:15:01Z 942 172 2005-07-28T09:42:01Z 2 2020-02-15T06:59:41Z +7262 2005-07-27T11:15:36Z 4097 522 2005-07-30T10:49:36Z 2 2020-02-15T06:59:41Z +7263 2005-07-27T11:17:22Z 725 324 2005-08-04T10:59:22Z 1 2020-02-15T06:59:41Z +7264 2005-07-27T11:18:58Z 2391 299 2005-08-03T07:43:58Z 2 2020-02-15T06:59:41Z +7265 2005-07-27T11:19:01Z 3465 290 2005-08-01T09:29:01Z 1 2020-02-15T06:59:41Z +7266 2005-07-27T11:22:17Z 3379 24 2005-08-04T05:45:17Z 1 2020-02-15T06:59:41Z +7267 2005-07-27T11:22:55Z 3661 122 2005-08-01T08:13:55Z 1 2020-02-15T06:59:41Z +7268 2005-07-27T11:23:09Z 2740 260 2005-08-01T12:42:09Z 2 2020-02-15T06:59:41Z +7269 2005-07-27T11:23:47Z 2089 209 2005-07-31T13:10:47Z 1 2020-02-15T06:59:41Z +7270 2005-07-27T11:29:02Z 1888 526 2005-08-05T08:04:02Z 1 2020-02-15T06:59:41Z +7271 2005-07-27T11:29:11Z 858 469 2005-08-05T15:33:11Z 1 2020-02-15T06:59:41Z +7272 2005-07-27T11:30:20Z 250 364 2005-07-29T17:16:20Z 2 2020-02-15T06:59:41Z +7273 2005-07-27T11:31:22Z 2465 1 2005-07-31T06:50:22Z 1 2020-02-15T06:59:41Z +7274 2005-07-27T11:35:34Z 4087 180 2005-08-01T07:10:34Z 1 2020-02-15T06:59:41Z +7275 2005-07-27T11:39:08Z 775 323 2005-07-30T13:37:08Z 2 2020-02-15T06:59:41Z +7276 2005-07-27T11:41:57Z 1665 314 2005-08-01T10:39:57Z 1 2020-02-15T06:59:41Z +7277 2005-07-27T11:48:37Z 1544 67 2005-08-03T07:20:37Z 1 2020-02-15T06:59:41Z +7278 2005-07-27T11:50:34Z 531 592 2005-08-01T10:22:34Z 1 2020-02-15T06:59:41Z +7279 2005-07-27T11:50:47Z 1424 12 2005-07-30T11:19:47Z 2 2020-02-15T06:59:41Z +7280 2005-07-27T11:50:52Z 236 342 2005-07-30T15:53:52Z 2 2020-02-15T06:59:41Z +7281 2005-07-27T11:59:20Z 1350 491 2005-08-04T12:48:20Z 1 2020-02-15T06:59:41Z +7282 2005-07-27T12:00:19Z 4418 276 2005-08-04T14:48:19Z 2 2020-02-15T06:59:41Z +7283 2005-07-27T12:02:41Z 3101 508 2005-08-05T07:25:41Z 1 2020-02-15T06:59:41Z +7284 2005-07-27T12:12:04Z 2336 52 2005-07-31T11:17:04Z 2 2020-02-15T06:59:41Z +7285 2005-07-27T12:14:06Z 2855 498 2005-08-03T14:57:06Z 2 2020-02-15T06:59:41Z +7286 2005-07-27T12:23:49Z 3452 498 2005-08-04T07:57:49Z 1 2020-02-15T06:59:41Z +7287 2005-07-27T12:24:12Z 926 198 2005-07-31T15:34:12Z 1 2020-02-15T06:59:41Z +7288 2005-07-27T12:24:59Z 45 226 2005-08-02T15:52:59Z 2 2020-02-15T06:59:41Z +7289 2005-07-27T12:26:51Z 2157 187 2005-08-02T18:20:51Z 2 2020-02-15T06:59:41Z +7290 2005-07-27T12:28:45Z 3652 423 2005-08-01T16:18:45Z 1 2020-02-15T06:59:41Z +7291 2005-07-27T12:30:47Z 310 263 2005-08-01T12:45:47Z 1 2020-02-15T06:59:41Z +7292 2005-07-27T12:34:14Z 795 468 2005-08-01T18:16:14Z 2 2020-02-15T06:59:41Z +7293 2005-07-27T12:37:28Z 3333 5 2005-07-30T15:12:28Z 2 2020-02-15T06:59:41Z +7294 2005-07-27T12:38:14Z 487 313 2005-07-30T13:01:14Z 1 2020-02-15T06:59:41Z +7295 2005-07-27T12:38:47Z 3396 462 2005-08-05T10:12:47Z 1 2020-02-15T06:59:41Z +7296 2005-07-27T12:39:48Z 1681 400 2005-08-04T18:24:48Z 2 2020-02-15T06:59:41Z +7297 2005-07-27T12:39:48Z 1855 135 2005-07-29T17:50:48Z 2 2020-02-15T06:59:41Z +7298 2005-07-27T12:45:14Z 1653 121 2005-07-30T07:02:14Z 1 2020-02-15T06:59:41Z +7299 2005-07-27T12:49:56Z 3002 286 2005-08-03T12:25:56Z 1 2020-02-15T06:59:41Z +7300 2005-07-27T12:50:17Z 4561 272 2005-08-04T18:43:17Z 1 2020-02-15T06:59:41Z +7301 2005-07-27T12:50:23Z 3367 93 2005-08-01T09:43:23Z 2 2020-02-15T06:59:41Z +7302 2005-07-27T12:52:13Z 4539 477 2005-07-29T15:13:13Z 2 2020-02-15T06:59:41Z +7303 2005-07-27T12:54:39Z 1398 163 2005-07-31T09:26:39Z 2 2020-02-15T06:59:41Z +7304 2005-07-27T12:56:56Z 1162 74 2005-08-05T09:19:56Z 2 2020-02-15T06:59:41Z +7305 2005-07-27T12:57:06Z 2464 229 2005-07-30T13:13:06Z 2 2020-02-15T06:59:41Z +7306 2005-07-27T12:57:26Z 2269 207 2005-08-03T09:35:26Z 2 2020-02-15T06:59:41Z +7307 2005-07-27T12:59:10Z 3882 595 2005-07-29T11:35:10Z 1 2020-02-15T06:59:41Z +7308 2005-07-27T13:00:25Z 1452 229 2005-08-03T16:04:25Z 1 2020-02-15T06:59:41Z +7309 2005-07-27T13:00:29Z 633 317 2005-07-29T12:15:29Z 2 2020-02-15T06:59:41Z +7310 2005-07-27T13:00:55Z 3711 103 2005-07-28T17:54:55Z 1 2020-02-15T06:59:41Z +7311 2005-07-27T13:02:54Z 2807 582 2005-08-04T09:52:54Z 1 2020-02-15T06:59:41Z +7312 2005-07-27T13:03:14Z 228 543 2005-07-31T07:56:14Z 2 2020-02-15T06:59:41Z +7313 2005-07-27T13:11:57Z 1884 396 2005-08-02T07:31:57Z 1 2020-02-15T06:59:41Z +7314 2005-07-27T13:13:32Z 1376 11 2005-08-03T09:24:32Z 2 2020-02-15T06:59:41Z +7315 2005-07-27T13:14:56Z 974 208 2005-08-03T08:44:56Z 2 2020-02-15T06:59:41Z +7316 2005-07-27T13:19:03Z 3344 114 2005-07-28T07:43:03Z 2 2020-02-15T06:59:41Z +7317 2005-07-27T13:19:41Z 1518 443 2005-07-29T16:16:41Z 2 2020-02-15T06:59:41Z +7318 2005-07-27T13:25:31Z 1954 301 2005-07-31T11:44:31Z 2 2020-02-15T06:59:41Z +7319 2005-07-27T13:31:25Z 2370 576 2005-08-04T07:31:25Z 1 2020-02-15T06:59:41Z +7320 2005-07-27T13:33:35Z 4348 241 2005-07-31T13:22:35Z 2 2020-02-15T06:59:41Z +7321 2005-07-27T13:33:38Z 3525 38 2005-08-03T07:35:38Z 2 2020-02-15T06:59:41Z +7322 2005-07-27T13:37:26Z 1810 508 2005-08-03T18:00:26Z 2 2020-02-15T06:59:41Z +7323 2005-07-27T13:39:40Z 3830 125 2005-07-29T08:45:40Z 2 2020-02-15T06:59:41Z +7324 2005-07-27T13:42:39Z 2572 462 2005-08-04T10:33:39Z 2 2020-02-15T06:59:41Z +7325 2005-07-27T13:46:55Z 1727 289 2005-07-28T14:21:55Z 1 2020-02-15T06:59:41Z +7326 2005-07-27T13:50:40Z 2844 432 2005-07-30T08:16:40Z 1 2020-02-15T06:59:41Z +7327 2005-07-27T13:53:26Z 4074 508 2005-08-04T17:58:26Z 2 2020-02-15T06:59:41Z +7328 2005-07-27T13:55:18Z 663 26 2005-08-01T19:52:18Z 1 2020-02-15T06:59:41Z +7329 2005-07-27T13:55:34Z 906 226 2005-08-04T15:15:34Z 1 2020-02-15T06:59:41Z +7330 2005-07-27T13:56:46Z 3705 237 2005-08-04T07:56:46Z 1 2020-02-15T06:59:41Z +7331 2005-07-27T13:57:50Z 2090 60 2005-07-31T08:59:50Z 1 2020-02-15T06:59:41Z +7332 2005-07-27T13:58:57Z 1761 151 2005-08-02T12:40:57Z 1 2020-02-15T06:59:41Z +7333 2005-07-27T13:59:11Z 1331 230 2005-07-30T16:04:11Z 1 2020-02-15T06:59:41Z +7334 2005-07-27T13:59:58Z 3006 461 2005-07-29T11:33:58Z 1 2020-02-15T06:59:41Z +7335 2005-07-27T14:06:50Z 1219 219 2005-08-05T18:27:50Z 2 2020-02-15T06:59:41Z +7336 2005-07-27T14:11:45Z 2706 46 2005-07-28T11:00:45Z 2 2020-02-15T06:59:41Z +7337 2005-07-27T14:12:04Z 3314 525 2005-08-03T14:57:04Z 2 2020-02-15T06:59:41Z +7338 2005-07-27T14:13:34Z 107 251 2005-08-03T18:36:34Z 2 2020-02-15T06:59:41Z +7339 2005-07-27T14:17:48Z 3343 316 2005-07-31T12:47:48Z 2 2020-02-15T06:59:41Z +7340 2005-07-27T14:18:10Z 1344 567 2005-07-30T09:57:10Z 1 2020-02-15T06:59:41Z +7341 2005-07-27T14:23:55Z 3567 498 2005-07-28T14:11:55Z 2 2020-02-15T06:59:41Z +7342 2005-07-27T14:25:17Z 4083 504 2005-08-04T10:02:17Z 2 2020-02-15T06:59:41Z +7343 2005-07-27T14:27:13Z 1177 526 2005-07-30T09:27:13Z 2 2020-02-15T06:59:41Z +7344 2005-07-27T14:29:28Z 1714 366 2005-07-31T15:36:28Z 1 2020-02-15T06:59:41Z +7345 2005-07-27T14:29:53Z 2434 572 2005-08-03T18:38:53Z 2 2020-02-15T06:59:41Z +7346 2005-07-27T14:30:42Z 741 2 2005-08-02T16:48:42Z 1 2020-02-15T06:59:41Z +7347 2005-07-27T14:31:24Z 3779 225 2005-07-31T16:19:24Z 1 2020-02-15T06:59:41Z +7348 2005-07-27T14:32:32Z 3238 43 2005-07-28T17:05:32Z 1 2020-02-15T06:59:41Z +7349 2005-07-27T14:33:00Z 861 195 2005-08-01T15:01:00Z 2 2020-02-15T06:59:41Z +7350 2005-07-27T14:34:14Z 737 410 2005-08-02T19:19:14Z 2 2020-02-15T06:59:41Z +7351 2005-07-27T14:37:36Z 2147 445 2005-07-30T09:58:36Z 2 2020-02-15T06:59:41Z +7352 2005-07-27T14:38:29Z 35 429 2005-07-28T14:24:29Z 1 2020-02-15T06:59:41Z +7353 2005-07-27T14:38:39Z 1308 357 2005-07-31T19:50:39Z 1 2020-02-15T06:59:41Z +7354 2005-07-27T14:42:11Z 2395 598 2005-08-03T18:19:11Z 2 2020-02-15T06:59:41Z +7355 2005-07-27T14:45:59Z 3803 115 2005-08-02T17:23:59Z 2 2020-02-15T06:59:41Z +7356 2005-07-27T14:47:35Z 309 397 2005-07-28T18:10:35Z 2 2020-02-15T06:59:41Z +7357 2005-07-27T14:48:31Z 1917 438 2005-08-02T18:07:31Z 2 2020-02-15T06:59:41Z +7358 2005-07-27T14:49:44Z 175 245 2005-07-28T20:00:44Z 1 2020-02-15T06:59:41Z +7359 2005-07-27T14:51:04Z 174 183 2005-07-31T16:03:04Z 2 2020-02-15T06:59:41Z +7360 2005-07-27T14:52:06Z 1312 467 2005-08-02T12:24:06Z 2 2020-02-15T06:59:41Z +7361 2005-07-27T14:53:55Z 4567 463 2005-07-31T19:48:55Z 2 2020-02-15T06:59:41Z +7362 2005-07-27T14:58:27Z 1902 419 2005-08-01T11:51:27Z 1 2020-02-15T06:59:41Z +7363 2005-07-27T14:58:29Z 1649 407 2005-08-05T09:02:29Z 1 2020-02-15T06:59:41Z +7364 2005-07-27T14:58:40Z 3046 592 2005-08-03T09:01:40Z 2 2020-02-15T06:59:41Z +7365 2005-07-27T15:00:20Z 3283 450 2005-07-30T12:58:20Z 1 2020-02-15T06:59:41Z +7366 2005-07-27T15:01:17Z 461 357 2005-08-04T20:28:17Z 1 2020-02-15T06:59:41Z +7367 2005-07-27T15:05:45Z 1738 383 2005-08-02T13:46:45Z 1 2020-02-15T06:59:41Z +7368 2005-07-27T15:06:05Z 2265 286 2005-07-31T14:10:05Z 2 2020-02-15T06:59:41Z +7369 2005-07-27T15:07:58Z 3889 139 2005-07-30T09:16:58Z 2 2020-02-15T06:59:41Z +7370 2005-07-27T15:15:53Z 2022 89 2005-08-03T19:53:53Z 2 2020-02-15T06:59:41Z +7371 2005-07-27T15:18:42Z 1807 577 2005-08-01T09:58:42Z 1 2020-02-15T06:59:41Z +7372 2005-07-27T15:18:42Z 3202 584 2005-08-01T15:18:42Z 2 2020-02-15T06:59:41Z +7373 2005-07-27T15:19:33Z 3074 488 2005-08-04T10:45:33Z 1 2020-02-15T06:59:41Z +7374 2005-07-27T15:20:57Z 3184 438 2005-08-05T13:09:57Z 2 2020-02-15T06:59:41Z +7375 2005-07-27T15:22:33Z 2970 381 2005-08-01T20:06:33Z 1 2020-02-15T06:59:41Z +7376 2005-07-27T15:23:02Z 488 2 2005-08-04T10:35:02Z 2 2020-02-15T06:59:41Z +7377 2005-07-27T15:31:28Z 1369 588 2005-08-02T19:59:28Z 2 2020-02-15T06:59:41Z +7378 2005-07-27T15:31:33Z 3297 144 2005-08-03T17:15:33Z 2 2020-02-15T06:59:41Z +7379 2005-07-27T15:36:43Z 424 415 2005-07-30T16:37:43Z 2 2020-02-15T06:59:41Z +7380 2005-07-27T15:37:01Z 988 348 2005-08-03T19:24:01Z 1 2020-02-15T06:59:41Z +7381 2005-07-27T15:40:26Z 1595 483 2005-08-02T17:26:26Z 2 2020-02-15T06:59:41Z +7382 2005-07-27T15:43:15Z 356 518 2005-07-28T11:18:15Z 2 2020-02-15T06:59:41Z +7383 2005-07-27T15:46:53Z 3860 50 2005-08-03T11:10:53Z 1 2020-02-15T06:59:41Z +7384 2005-07-27T15:49:45Z 3573 585 2005-08-04T15:17:45Z 1 2020-02-15T06:59:41Z +7385 2005-07-27T15:49:46Z 2996 56 2005-07-28T13:50:46Z 2 2020-02-15T06:59:41Z +7386 2005-07-27T15:52:10Z 3569 190 2005-08-04T15:13:10Z 1 2020-02-15T06:59:41Z +7387 2005-07-27T15:54:19Z 3274 233 2005-08-03T14:46:19Z 1 2020-02-15T06:59:41Z +7388 2005-07-27T15:54:19Z 4559 455 2005-08-01T17:02:19Z 2 2020-02-15T06:59:41Z +7389 2005-07-27T15:56:15Z 3822 156 2005-07-30T21:28:15Z 2 2020-02-15T06:59:41Z +7390 2005-07-27T15:59:19Z 1723 230 2005-08-04T10:09:19Z 2 2020-02-15T06:59:41Z +7391 2005-07-27T16:00:00Z 1153 531 2005-08-04T18:07:00Z 2 2020-02-15T06:59:41Z +7392 2005-07-27T16:01:05Z 3159 204 2005-08-01T17:23:05Z 2 2020-02-15T06:59:41Z +7393 2005-07-27T16:02:52Z 2369 181 2005-08-02T13:24:52Z 1 2020-02-15T06:59:41Z +7394 2005-07-27T16:03:08Z 2399 30 2005-08-04T11:27:08Z 2 2020-02-15T06:59:41Z +7395 2005-07-27T16:03:11Z 2888 411 2005-07-31T20:26:11Z 2 2020-02-15T06:59:41Z +7396 2005-07-27T16:03:53Z 3346 595 2005-08-05T10:36:53Z 2 2020-02-15T06:59:41Z +7397 2005-07-27T16:05:00Z 4474 245 2005-08-01T20:29:00Z 1 2020-02-15T06:59:41Z +7398 2005-07-27T16:07:22Z 1572 51 2005-08-05T16:16:22Z 1 2020-02-15T06:59:41Z +7399 2005-07-27T16:16:02Z 1682 526 2005-08-03T18:02:02Z 2 2020-02-15T06:59:41Z +7400 2005-07-27T16:16:37Z 2874 133 2005-07-31T12:34:37Z 2 2020-02-15T06:59:41Z +7401 2005-07-27T16:17:55Z 2759 583 2005-08-04T15:48:55Z 1 2020-02-15T06:59:41Z +7402 2005-07-27T16:19:40Z 2707 287 2005-08-05T14:48:40Z 2 2020-02-15T06:59:41Z +7403 2005-07-27T16:22:09Z 2551 163 2005-08-01T15:32:09Z 1 2020-02-15T06:59:41Z +7404 2005-07-27T16:24:43Z 2359 190 2005-07-29T11:40:43Z 2 2020-02-15T06:59:41Z +7405 2005-07-27T16:25:11Z 2312 42 2005-08-01T12:33:11Z 2 2020-02-15T06:59:41Z +7406 2005-07-27T16:25:45Z 1412 77 2005-08-05T20:39:45Z 1 2020-02-15T06:59:41Z +7407 2005-07-27T16:29:04Z 3093 410 2005-08-01T17:47:04Z 2 2020-02-15T06:59:41Z +7408 2005-07-27T16:31:40Z 625 371 2005-07-31T11:56:40Z 2 2020-02-15T06:59:41Z +7409 2005-07-27T16:38:24Z 2352 585 2005-07-30T18:06:24Z 1 2020-02-15T06:59:41Z +7410 2005-07-27T16:41:59Z 1559 337 2005-07-29T22:11:59Z 1 2020-02-15T06:59:41Z +7411 2005-07-27T16:42:30Z 515 302 2005-08-05T17:38:30Z 1 2020-02-15T06:59:41Z +7412 2005-07-27T16:44:34Z 950 582 2005-08-04T15:06:34Z 2 2020-02-15T06:59:41Z +7413 2005-07-27T16:45:40Z 2909 254 2005-07-31T12:02:40Z 1 2020-02-15T06:59:41Z +7414 2005-07-27T16:46:07Z 3276 265 2005-08-02T20:04:07Z 1 2020-02-15T06:59:41Z +7415 2005-07-27T16:50:59Z 4410 294 2005-08-02T11:21:59Z 1 2020-02-15T06:59:41Z +7416 2005-07-27T16:55:25Z 653 350 2005-07-29T11:27:25Z 1 2020-02-15T06:59:41Z +7417 2005-07-27T16:58:33Z 2952 214 2005-07-30T22:17:33Z 1 2020-02-15T06:59:41Z +7418 2005-07-27T16:59:09Z 3029 332 2005-07-29T15:08:09Z 2 2020-02-15T06:59:41Z +7419 2005-07-27T17:04:15Z 3454 352 2005-08-05T21:54:15Z 2 2020-02-15T06:59:41Z +7420 2005-07-27T17:09:39Z 3505 547 2005-07-30T12:30:39Z 2 2020-02-15T06:59:41Z +7421 2005-07-27T17:10:05Z 3548 70 2005-08-05T17:55:05Z 1 2020-02-15T06:59:41Z +7422 2005-07-27T17:10:42Z 3954 286 2005-08-03T19:32:42Z 1 2020-02-15T06:59:41Z +7423 2005-07-27T17:11:47Z 666 277 2005-07-29T12:29:47Z 2 2020-02-15T06:59:41Z +7424 2005-07-27T17:14:19Z 660 558 2005-08-01T19:21:19Z 2 2020-02-15T06:59:41Z +7425 2005-07-27T17:18:35Z 435 263 2005-08-02T11:18:35Z 1 2020-02-15T06:59:41Z +7426 2005-07-27T17:19:46Z 4420 239 2005-07-29T21:41:46Z 1 2020-02-15T06:59:41Z +7427 2005-07-27T17:20:16Z 2548 442 2005-08-03T20:38:16Z 2 2020-02-15T06:59:41Z +7428 2005-07-27T17:21:52Z 243 90 2005-08-05T17:13:52Z 2 2020-02-15T06:59:41Z +7429 2005-07-27T17:24:50Z 2160 515 2005-08-05T23:02:50Z 1 2020-02-15T06:59:41Z +7430 2005-07-27T17:26:14Z 4205 562 2005-08-01T13:02:14Z 2 2020-02-15T06:59:41Z +7431 2005-07-27T17:27:27Z 3931 589 2005-07-31T18:40:27Z 1 2020-02-15T06:59:41Z +7432 2005-07-27T17:31:40Z 3169 132 2005-07-28T17:44:40Z 2 2020-02-15T06:59:41Z +7433 2005-07-27T17:32:20Z 1748 282 2005-08-01T18:49:20Z 1 2020-02-15T06:59:41Z +7434 2005-07-27T17:34:40Z 2927 241 2005-07-29T15:01:40Z 1 2020-02-15T06:59:41Z +7435 2005-07-27T17:38:44Z 1574 380 2005-07-30T16:57:44Z 1 2020-02-15T06:59:41Z +7436 2005-07-27T17:39:12Z 299 45 2005-08-01T12:40:12Z 2 2020-02-15T06:59:41Z +7437 2005-07-27T17:39:18Z 2617 135 2005-07-28T18:33:18Z 2 2020-02-15T06:59:41Z +7438 2005-07-27T17:40:40Z 1364 52 2005-08-05T15:25:40Z 1 2020-02-15T06:59:41Z +7439 2005-07-27T17:42:31Z 4091 102 2005-08-05T16:34:31Z 1 2020-02-15T06:59:41Z +7440 2005-07-27T17:43:27Z 1476 484 2005-08-03T22:12:27Z 1 2020-02-15T06:59:41Z +7441 2005-07-27T17:46:53Z 4039 198 2005-07-31T23:05:53Z 1 2020-02-15T06:59:41Z +7442 2005-07-27T17:47:00Z 2471 105 2005-07-28T21:37:00Z 1 2020-02-15T06:59:41Z +7443 2005-07-27T17:47:43Z 703 380 2005-07-29T13:15:43Z 1 2020-02-15T06:59:41Z +7444 2005-07-27T17:49:16Z 120 531 2005-07-28T15:05:16Z 1 2020-02-15T06:59:41Z +7445 2005-07-27T17:57:15Z 4115 394 2005-07-31T20:24:15Z 1 2020-02-15T06:59:41Z +7446 2005-07-27T18:00:24Z 2337 486 2005-07-29T13:40:24Z 1 2020-02-15T06:59:41Z +7447 2005-07-27T18:02:08Z 1795 107 2005-07-29T21:15:08Z 1 2020-02-15T06:59:41Z +7448 2005-07-27T18:06:30Z 3584 175 2005-07-29T15:43:30Z 1 2020-02-15T06:59:41Z +7449 2005-07-27T18:17:41Z 2084 421 2005-08-01T18:52:41Z 1 2020-02-15T06:59:41Z +7450 2005-07-27T18:18:35Z 3496 191 2005-08-04T15:18:35Z 1 2020-02-15T06:59:41Z +7451 2005-07-27T18:18:41Z 2382 29 2005-08-03T13:55:41Z 2 2020-02-15T06:59:41Z +7452 2005-07-27T18:26:39Z 3482 285 2005-08-04T17:35:39Z 2 2020-02-15T06:59:41Z +7453 2005-07-27T18:27:13Z 2992 29 2005-07-29T23:52:13Z 1 2020-02-15T06:59:41Z +7454 2005-07-27T18:27:26Z 3248 75 2005-07-30T23:50:26Z 1 2020-02-15T06:59:41Z +7455 2005-07-27T18:34:41Z 3815 405 2005-07-31T17:32:41Z 1 2020-02-15T06:59:41Z +7456 2005-07-27T18:34:53Z 1959 501 2005-07-29T17:46:53Z 2 2020-02-15T06:59:41Z +7457 2005-07-27T18:35:17Z 3635 510 2005-07-30T12:41:17Z 2 2020-02-15T06:59:41Z +7458 2005-07-27T18:36:17Z 2964 327 2005-07-31T22:43:17Z 1 2020-02-15T06:59:41Z +7459 2005-07-27T18:40:20Z 2053 2 2005-08-02T21:07:20Z 2 2020-02-15T06:59:41Z +7460 2005-07-27T18:41:35Z 919 442 2005-07-29T15:16:35Z 2 2020-02-15T06:59:41Z +7461 2005-07-27T18:45:15Z 1236 476 2005-07-29T17:19:15Z 1 2020-02-15T06:59:41Z +7462 2005-07-27T18:47:47Z 878 114 2005-07-29T20:46:47Z 2 2020-02-15T06:59:41Z +7463 2005-07-27T18:48:32Z 3676 284 2005-07-29T23:54:32Z 2 2020-02-15T06:59:41Z +7464 2005-07-27T18:49:42Z 845 31 2005-07-28T20:45:42Z 2 2020-02-15T06:59:41Z +7465 2005-07-27T18:50:30Z 2357 115 2005-07-30T20:55:30Z 1 2020-02-15T06:59:41Z +7466 2005-07-27T18:51:17Z 2791 53 2005-07-31T16:58:17Z 1 2020-02-15T06:59:41Z +7467 2005-07-27T18:51:54Z 3869 240 2005-08-03T23:27:54Z 2 2020-02-15T06:59:41Z +7468 2005-07-27T18:52:27Z 3166 113 2005-08-03T19:29:27Z 2 2020-02-15T06:59:41Z +7469 2005-07-27T18:57:40Z 3723 189 2005-07-31T00:17:40Z 1 2020-02-15T06:59:41Z +7470 2005-07-27T19:01:03Z 289 564 2005-08-05T19:16:03Z 2 2020-02-15T06:59:41Z +7471 2005-07-27T19:02:19Z 1776 95 2005-07-30T15:12:19Z 1 2020-02-15T06:59:41Z +7472 2005-07-27T19:04:19Z 1535 103 2005-08-03T00:08:19Z 2 2020-02-15T06:59:41Z +7473 2005-07-27T19:05:40Z 401 341 2005-08-05T14:47:40Z 1 2020-02-15T06:59:41Z +7474 2005-07-27T19:07:17Z 2971 110 2005-07-30T00:37:17Z 1 2020-02-15T06:59:41Z +7475 2005-07-27T19:07:43Z 1670 255 2005-08-04T22:12:43Z 2 2020-02-15T06:59:41Z +7476 2005-07-27T19:08:56Z 2288 64 2005-07-31T16:36:56Z 2 2020-02-15T06:59:41Z +7477 2005-07-27T19:11:03Z 2692 355 2005-08-02T19:25:03Z 1 2020-02-15T06:59:41Z +7478 2005-07-27T19:16:02Z 3791 521 2005-08-04T22:30:02Z 2 2020-02-15T06:59:41Z +7479 2005-07-27T19:18:17Z 218 434 2005-07-30T18:55:17Z 1 2020-02-15T06:59:41Z +7480 2005-07-27T19:19:53Z 452 344 2005-08-02T01:01:53Z 1 2020-02-15T06:59:41Z +7481 2005-07-27T19:20:25Z 1804 240 2005-07-29T19:07:25Z 2 2020-02-15T06:59:41Z +7482 2005-07-27T19:24:16Z 485 348 2005-08-05T18:49:16Z 2 2020-02-15T06:59:41Z +7483 2005-07-27T19:25:00Z 3678 106 2005-07-29T21:19:00Z 2 2020-02-15T06:59:41Z +7484 2005-07-27T19:28:17Z 2746 211 2005-07-31T20:05:17Z 2 2020-02-15T06:59:41Z +7485 2005-07-27T19:29:09Z 631 362 2005-07-30T16:28:09Z 1 2020-02-15T06:59:41Z +7486 2005-07-27T19:29:24Z 4362 393 2005-08-02T20:46:24Z 2 2020-02-15T06:59:41Z +7487 2005-07-27T19:32:45Z 4451 58 2005-07-28T15:11:45Z 1 2020-02-15T06:59:41Z +7488 2005-07-27T19:36:15Z 554 365 2005-08-05T14:14:15Z 1 2020-02-15T06:59:41Z +7489 2005-07-27T19:39:38Z 3732 16 2005-07-30T23:10:38Z 2 2020-02-15T06:59:41Z +7490 2005-07-27T19:48:12Z 4503 595 2005-08-04T17:15:12Z 1 2020-02-15T06:59:41Z +7491 2005-07-27T19:53:23Z 4261 239 2005-07-28T23:25:23Z 2 2020-02-15T06:59:41Z +7492 2005-07-27T19:54:18Z 908 155 2005-07-31T15:36:18Z 2 2020-02-15T06:59:41Z +7493 2005-07-27T19:55:46Z 2868 177 2005-08-02T19:46:46Z 2 2020-02-15T06:59:41Z +7494 2005-07-27T19:56:31Z 2259 60 2005-07-30T14:28:31Z 1 2020-02-15T06:59:41Z +7495 2005-07-27T20:01:20Z 3446 426 2005-07-30T16:40:20Z 1 2020-02-15T06:59:41Z +7496 2005-07-27T20:04:05Z 2449 257 2005-08-02T20:12:05Z 1 2020-02-15T06:59:41Z +7497 2005-07-27T20:05:27Z 286 387 2005-07-30T22:47:27Z 1 2020-02-15T06:59:41Z +7498 2005-07-27T20:09:31Z 1144 455 2005-07-29T23:38:31Z 1 2020-02-15T06:59:41Z +7499 2005-07-27T20:10:28Z 3503 157 2005-07-30T16:24:28Z 1 2020-02-15T06:59:41Z +7500 2005-07-27T20:16:03Z 609 160 2005-07-29T18:50:03Z 1 2020-02-15T06:59:41Z +7501 2005-07-27T20:16:59Z 1464 587 2005-08-04T00:11:59Z 2 2020-02-15T06:59:41Z +7502 2005-07-27T20:19:08Z 3229 303 2005-07-28T18:32:08Z 2 2020-02-15T06:59:41Z +7503 2005-07-27T20:23:12Z 579 3 2005-08-05T18:46:12Z 2 2020-02-15T06:59:41Z +7504 2005-07-27T20:24:31Z 3354 283 2005-07-30T21:25:31Z 2 2020-02-15T06:59:41Z +7505 2005-07-27T20:28:03Z 1342 209 2005-08-03T17:04:03Z 1 2020-02-15T06:59:41Z +7506 2005-07-27T20:28:34Z 2091 527 2005-08-05T18:14:34Z 1 2020-02-15T06:59:41Z +7507 2005-07-27T20:31:48Z 3618 512 2005-08-02T17:27:48Z 1 2020-02-15T06:59:41Z +7508 2005-07-27T20:33:08Z 3401 465 2005-08-01T01:29:08Z 1 2020-02-15T06:59:41Z +7509 2005-07-27T20:37:19Z 4134 228 2005-08-04T19:35:19Z 2 2020-02-15T06:59:41Z +7510 2005-07-27T20:37:57Z 1617 257 2005-08-01T17:14:57Z 2 2020-02-15T06:59:41Z +7511 2005-07-27T20:38:40Z 4044 591 2005-08-04T22:36:40Z 2 2020-02-15T06:59:41Z +7512 2005-07-27T20:40:40Z 1343 352 2005-08-05T01:44:40Z 1 2020-02-15T06:59:41Z +7513 2005-07-27T20:51:04Z 939 411 2005-08-03T20:15:04Z 2 2020-02-15T06:59:41Z +7514 2005-07-27T20:51:49Z 400 44 2005-07-29T18:21:49Z 2 2020-02-15T06:59:41Z +7515 2005-07-27T20:52:37Z 1211 390 2005-08-02T20:17:37Z 2 2020-02-15T06:59:41Z +7516 2005-07-27T20:55:28Z 2178 134 2005-07-30T00:50:28Z 1 2020-02-15T06:59:41Z +7517 2005-07-27T20:57:07Z 3177 41 2005-08-04T15:08:07Z 1 2020-02-15T06:59:41Z +7518 2005-07-27T21:01:16Z 2676 257 2005-08-03T15:26:16Z 1 2020-02-15T06:59:41Z +7519 2005-07-27T21:01:41Z 4009 124 2005-08-05T19:15:41Z 1 2020-02-15T06:59:41Z +7520 2005-07-27T21:02:02Z 3875 191 2005-07-28T18:18:02Z 1 2020-02-15T06:59:41Z +7521 2005-07-27T21:04:42Z 3144 176 2005-08-03T16:06:42Z 1 2020-02-15T06:59:41Z +7522 2005-07-27T21:11:03Z 2038 478 2005-08-02T16:40:03Z 1 2020-02-15T06:59:41Z +7523 2005-07-27T21:11:23Z 4153 410 2005-07-28T16:37:23Z 1 2020-02-15T06:59:41Z +7524 2005-07-27T21:11:44Z 4295 225 2005-08-03T02:17:44Z 1 2020-02-15T06:59:41Z +7525 2005-07-27T21:13:28Z 4084 281 2005-08-04T19:44:28Z 2 2020-02-15T06:59:41Z +7526 2005-07-27T21:13:47Z 696 44 2005-08-05T15:23:47Z 2 2020-02-15T06:59:41Z +7527 2005-07-27T21:14:28Z 2124 426 2005-08-05T21:08:28Z 1 2020-02-15T06:59:41Z +7528 2005-07-27T21:15:25Z 1218 213 2005-08-03T19:12:25Z 1 2020-02-15T06:59:41Z +7529 2005-07-27T21:18:08Z 3644 145 2005-08-06T00:59:08Z 1 2020-02-15T06:59:41Z +7530 2005-07-27T21:18:58Z 3810 98 2005-07-31T01:51:58Z 2 2020-02-15T06:59:41Z +7531 2005-07-27T21:19:34Z 2393 221 2005-08-06T01:07:34Z 2 2020-02-15T06:59:41Z +7532 2005-07-27T21:20:52Z 677 34 2005-07-30T21:38:52Z 1 2020-02-15T06:59:41Z +7533 2005-07-27T21:24:33Z 1791 594 2005-08-05T16:33:33Z 2 2020-02-15T06:59:41Z +7534 2005-07-27T21:26:17Z 2276 282 2005-08-05T00:23:17Z 2 2020-02-15T06:59:41Z +7535 2005-07-27T21:32:39Z 772 123 2005-08-05T23:42:39Z 1 2020-02-15T06:59:41Z +7536 2005-07-27T21:34:09Z 3417 307 2005-08-02T03:26:09Z 1 2020-02-15T06:59:41Z +7537 2005-07-27T21:36:09Z 4456 269 2005-08-01T01:51:09Z 1 2020-02-15T06:59:41Z +7538 2005-07-27T21:38:04Z 2486 361 2005-08-02T03:14:04Z 1 2020-02-15T06:59:41Z +7539 2005-07-27T21:39:42Z 1849 423 2005-08-06T00:12:42Z 1 2020-02-15T06:59:41Z +7540 2005-07-27T21:39:55Z 2198 207 2005-08-04T18:10:55Z 2 2020-02-15T06:59:41Z +7541 2005-07-27T21:40:05Z 4100 206 2005-07-29T16:13:05Z 1 2020-02-15T06:59:41Z +7542 2005-07-27T21:43:04Z 1912 110 2005-07-30T00:02:04Z 1 2020-02-15T06:59:41Z +7543 2005-07-27T21:44:28Z 1289 526 2005-08-04T21:42:28Z 2 2020-02-15T06:59:41Z +7544 2005-07-27T21:47:37Z 766 249 2005-08-05T02:29:37Z 2 2020-02-15T06:59:41Z +7545 2005-07-27T21:48:03Z 2541 292 2005-08-01T22:23:03Z 2 2020-02-15T06:59:41Z +7546 2005-07-27T21:50:09Z 3683 494 2005-08-05T03:07:09Z 2 2020-02-15T06:59:41Z +7547 2005-07-27T21:51:48Z 1733 547 2005-08-06T01:05:48Z 2 2020-02-15T06:59:41Z +7548 2005-07-27T21:53:18Z 2194 484 2005-08-02T17:50:18Z 1 2020-02-15T06:59:41Z +7549 2005-07-27T21:53:21Z 1765 591 2005-08-05T18:53:21Z 1 2020-02-15T06:59:41Z +7550 2005-07-27T21:55:07Z 4488 71 2005-07-28T23:34:07Z 2 2020-02-15T06:59:41Z +7551 2005-07-27T21:59:15Z 2635 304 2005-07-31T19:54:15Z 2 2020-02-15T06:59:41Z +7552 2005-07-27T22:03:41Z 2166 16 2005-07-28T22:24:41Z 1 2020-02-15T06:59:41Z +7553 2005-07-27T22:11:36Z 1643 275 2005-08-03T17:52:36Z 1 2020-02-15T06:59:41Z +7554 2005-07-27T22:12:41Z 1805 135 2005-08-04T01:34:41Z 2 2020-02-15T06:59:41Z +7555 2005-07-27T22:17:05Z 3421 533 2005-08-02T02:50:05Z 2 2020-02-15T06:59:41Z +7556 2005-07-27T22:17:17Z 794 188 2005-07-28T19:17:17Z 2 2020-02-15T06:59:41Z +7557 2005-07-27T22:18:19Z 3152 131 2005-07-29T00:24:19Z 1 2020-02-15T06:59:41Z +7558 2005-07-27T22:19:08Z 550 80 2005-07-30T21:31:08Z 1 2020-02-15T06:59:41Z +7559 2005-07-27T22:20:03Z 661 149 2005-08-06T00:26:03Z 2 2020-02-15T06:59:41Z +7560 2005-07-27T22:20:17Z 3574 562 2005-08-02T23:00:17Z 2 2020-02-15T06:59:41Z +7561 2005-07-27T22:21:05Z 3433 291 2005-08-04T01:02:05Z 1 2020-02-15T06:59:41Z +7562 2005-07-27T22:25:15Z 4417 366 2005-08-01T01:21:15Z 2 2020-02-15T06:59:41Z +7563 2005-07-27T22:25:36Z 2709 453 2005-08-01T03:59:36Z 2 2020-02-15T06:59:41Z +7564 2005-07-27T22:31:17Z 2887 291 2005-08-01T01:05:17Z 2 2020-02-15T06:59:41Z +7565 2005-07-27T22:33:59Z 1028 114 2005-07-30T03:03:59Z 2 2020-02-15T06:59:41Z +7566 2005-07-27T22:34:45Z 1802 144 2005-08-01T22:20:45Z 1 2020-02-15T06:59:41Z +7567 2005-07-27T22:38:05Z 1066 504 2005-07-30T17:20:05Z 1 2020-02-15T06:59:41Z +7568 2005-07-27T22:38:53Z 1578 296 2005-07-29T00:51:53Z 1 2020-02-15T06:59:41Z +7569 2005-07-27T22:38:53Z 2315 528 2005-08-05T19:03:53Z 2 2020-02-15T06:59:41Z +7570 2005-07-27T22:40:06Z 3189 110 2005-07-28T23:14:06Z 1 2020-02-15T06:59:41Z +7571 2005-07-27T22:43:42Z 3850 368 2005-07-30T22:17:42Z 1 2020-02-15T06:59:41Z +7572 2005-07-27T22:44:29Z 3068 532 2005-08-01T03:04:29Z 1 2020-02-15T06:59:41Z +7573 2005-07-27T22:46:20Z 314 467 2005-08-04T01:55:20Z 1 2020-02-15T06:59:41Z +7574 2005-07-27T22:53:00Z 298 200 2005-07-29T18:39:00Z 2 2020-02-15T06:59:41Z +7575 2005-07-27T22:53:52Z 702 582 2005-07-29T02:02:52Z 1 2020-02-15T06:59:41Z +7576 2005-07-27T22:54:35Z 3374 446 2005-08-03T03:53:35Z 2 2020-02-15T06:59:41Z +7577 2005-07-27T22:56:07Z 2723 332 2005-08-05T21:23:07Z 2 2020-02-15T06:59:41Z +7578 2005-07-27T22:58:17Z 4210 332 2005-07-29T23:14:17Z 1 2020-02-15T06:59:41Z +7579 2005-07-27T23:06:41Z 501 352 2005-07-31T20:08:41Z 2 2020-02-15T06:59:41Z +7580 2005-07-27T23:07:40Z 338 28 2005-08-05T02:17:40Z 1 2020-02-15T06:59:41Z +7581 2005-07-27T23:14:35Z 2051 166 2005-07-29T21:30:35Z 1 2020-02-15T06:59:41Z +7582 2005-07-27T23:15:14Z 3941 128 2005-07-29T03:18:14Z 2 2020-02-15T06:59:41Z +7583 2005-07-27T23:15:22Z 2890 198 2005-08-04T04:39:22Z 2 2020-02-15T06:59:41Z +7584 2005-07-27T23:15:46Z 4390 338 2005-08-03T02:18:46Z 2 2020-02-15T06:59:41Z +7585 2005-07-27T23:18:22Z 467 440 2005-07-30T23:08:22Z 1 2020-02-15T06:59:41Z +7586 2005-07-27T23:19:29Z 15 316 2005-07-29T23:04:29Z 1 2020-02-15T06:59:41Z +7587 2005-07-27T23:23:03Z 655 113 2005-08-01T17:34:03Z 1 2020-02-15T06:59:41Z +7588 2005-07-27T23:23:31Z 4033 360 2005-08-04T02:54:31Z 1 2020-02-15T06:59:41Z +7589 2005-07-27T23:23:36Z 1569 32 2005-08-04T00:16:36Z 1 2020-02-15T06:59:41Z +7590 2005-07-27T23:24:24Z 2152 73 2005-07-28T19:53:24Z 2 2020-02-15T06:59:41Z +7591 2005-07-27T23:25:54Z 651 525 2005-08-02T22:54:54Z 1 2020-02-15T06:59:41Z +7592 2005-07-27T23:26:04Z 4105 316 2005-07-29T23:48:04Z 2 2020-02-15T06:59:41Z +7593 2005-07-27T23:28:47Z 1158 436 2005-08-02T19:51:47Z 1 2020-02-15T06:59:41Z +7594 2005-07-27T23:30:41Z 3230 424 2005-08-02T04:29:41Z 1 2020-02-15T06:59:41Z +7595 2005-07-27T23:32:23Z 4313 390 2005-08-03T05:28:23Z 1 2020-02-15T06:59:41Z +7596 2005-07-27T23:33:57Z 2097 275 2005-08-01T20:46:57Z 2 2020-02-15T06:59:41Z +7597 2005-07-27T23:35:49Z 2856 169 2005-07-30T21:38:49Z 1 2020-02-15T06:59:41Z +7598 2005-07-27T23:36:01Z 4545 438 2005-07-29T23:35:01Z 2 2020-02-15T06:59:41Z +7599 2005-07-27T23:38:46Z 3272 87 2005-07-28T22:52:46Z 1 2020-02-15T06:59:41Z +7600 2005-07-27T23:41:18Z 3492 107 2005-08-06T04:40:18Z 1 2020-02-15T06:59:41Z +7601 2005-07-27T23:48:15Z 903 228 2005-07-29T02:45:15Z 1 2020-02-15T06:59:41Z +7602 2005-07-27T23:48:35Z 2516 366 2005-08-04T17:58:35Z 1 2020-02-15T06:59:41Z +7603 2005-07-27T23:54:44Z 124 497 2005-07-29T01:24:44Z 1 2020-02-15T06:59:41Z +7604 2005-07-27T23:54:52Z 3720 406 2005-08-05T03:04:52Z 2 2020-02-15T06:59:41Z +7605 2005-07-27T23:57:01Z 1391 576 2005-08-03T04:11:01Z 1 2020-02-15T06:59:41Z +7606 2005-07-28T00:02:15Z 637 201 2005-07-29T03:14:15Z 2 2020-02-15T06:59:41Z +7607 2005-07-28T00:05:53Z 3914 293 2005-07-31T04:13:53Z 1 2020-02-15T06:59:41Z +7608 2005-07-28T00:08:36Z 1256 167 2005-07-28T18:13:36Z 1 2020-02-15T06:59:41Z +7609 2005-07-28T00:11:00Z 3655 179 2005-07-31T03:04:00Z 1 2020-02-15T06:59:41Z +7610 2005-07-28T00:11:35Z 1279 450 2005-07-31T00:33:35Z 1 2020-02-15T06:59:41Z +7611 2005-07-28T00:11:47Z 3347 467 2005-07-28T18:35:47Z 1 2020-02-15T06:59:41Z +7612 2005-07-28T00:11:55Z 1411 563 2005-07-30T00:47:55Z 1 2020-02-15T06:59:41Z +7613 2005-07-28T00:13:58Z 4253 202 2005-08-06T05:36:58Z 2 2020-02-15T06:59:41Z +7614 2005-07-28T00:14:38Z 3475 440 2005-07-29T18:18:38Z 1 2020-02-15T06:59:41Z +7615 2005-07-28T00:15:24Z 3884 373 2005-07-31T02:00:24Z 1 2020-02-15T06:59:41Z +7616 2005-07-28T00:15:26Z 3790 9 2005-07-30T21:52:26Z 1 2020-02-15T06:59:41Z +7617 2005-07-28T00:18:40Z 2904 340 2005-08-01T01:17:40Z 1 2020-02-15T06:59:41Z +7618 2005-07-28T00:24:14Z 774 271 2005-08-01T04:35:14Z 1 2020-02-15T06:59:41Z +7619 2005-07-28T00:25:41Z 1057 419 2005-07-30T04:35:41Z 2 2020-02-15T06:59:41Z +7620 2005-07-28T00:27:17Z 931 580 2005-07-31T02:04:17Z 1 2020-02-15T06:59:41Z +7621 2005-07-28T00:34:06Z 1833 88 2005-08-06T00:13:06Z 1 2020-02-15T06:59:41Z +7622 2005-07-28T00:37:34Z 4014 198 2005-07-31T23:27:34Z 2 2020-02-15T06:59:41Z +7623 2005-07-28T00:37:41Z 1146 459 2005-08-04T19:38:41Z 2 2020-02-15T06:59:41Z +7624 2005-07-28T00:37:44Z 2756 415 2005-07-30T21:26:44Z 1 2020-02-15T06:59:41Z +7625 2005-07-28T00:47:56Z 3129 382 2005-08-02T23:34:56Z 1 2020-02-15T06:59:41Z +7626 2005-07-28T00:49:01Z 4200 450 2005-07-31T00:43:01Z 1 2020-02-15T06:59:41Z +7627 2005-07-28T00:56:47Z 782 52 2005-08-02T04:16:47Z 1 2020-02-15T06:59:41Z +7628 2005-07-28T00:58:04Z 1240 516 2005-08-03T19:16:04Z 1 2020-02-15T06:59:41Z +7629 2005-07-28T01:00:09Z 2453 229 2005-07-30T06:49:09Z 1 2020-02-15T06:59:41Z +7630 2005-07-28T01:01:03Z 2798 351 2005-07-31T01:08:03Z 2 2020-02-15T06:59:41Z +7631 2005-07-28T01:01:15Z 2437 132 2005-08-01T06:16:15Z 2 2020-02-15T06:59:41Z +7632 2005-07-28T01:02:40Z 3233 181 2005-07-30T05:31:40Z 2 2020-02-15T06:59:41Z +7633 2005-07-28T01:03:41Z 4171 402 2005-08-01T23:54:41Z 2 2020-02-15T06:59:41Z +7634 2005-07-28T01:07:01Z 4487 365 2005-07-31T05:00:01Z 1 2020-02-15T06:59:41Z +7635 2005-07-28T01:08:11Z 55 413 2005-08-01T03:32:11Z 2 2020-02-15T06:59:41Z +7636 2005-07-28T01:08:36Z 202 51 2005-08-03T21:36:36Z 1 2020-02-15T06:59:41Z +7637 2005-07-28T01:12:25Z 87 91 2005-08-02T03:48:25Z 1 2020-02-15T06:59:41Z +7638 2005-07-28T01:13:26Z 1890 172 2005-07-28T20:34:26Z 1 2020-02-15T06:59:41Z +7639 2005-07-28T01:14:36Z 767 459 2005-07-29T00:19:36Z 1 2020-02-15T06:59:41Z +7640 2005-07-28T01:14:49Z 3014 229 2005-08-03T21:50:49Z 1 2020-02-15T06:59:41Z +7641 2005-07-28T01:15:45Z 1868 475 2005-08-04T23:50:45Z 1 2020-02-15T06:59:41Z +7642 2005-07-28T01:16:51Z 3995 523 2005-08-02T00:45:51Z 2 2020-02-15T06:59:41Z +7643 2005-07-28T01:19:44Z 4369 407 2005-08-04T21:16:44Z 1 2020-02-15T06:59:41Z +7644 2005-07-28T01:27:33Z 882 173 2005-07-31T22:58:33Z 2 2020-02-15T06:59:41Z +7645 2005-07-28T01:27:42Z 830 381 2005-08-03T07:16:42Z 2 2020-02-15T06:59:41Z +7646 2005-07-28T01:31:45Z 1615 255 2005-07-31T07:16:45Z 1 2020-02-15T06:59:41Z +7647 2005-07-28T01:35:17Z 3079 36 2005-08-01T00:14:17Z 1 2020-02-15T06:59:41Z +7648 2005-07-28T01:35:33Z 797 310 2005-08-04T06:21:33Z 2 2020-02-15T06:59:41Z +7649 2005-07-28T01:37:26Z 2704 318 2005-07-28T21:18:26Z 1 2020-02-15T06:59:41Z +7650 2005-07-28T01:47:20Z 701 290 2005-08-05T06:00:20Z 2 2020-02-15T06:59:41Z +7651 2005-07-28T01:48:32Z 2753 401 2005-08-03T03:10:32Z 2 2020-02-15T06:59:41Z +7652 2005-07-28T01:50:29Z 92 5 2005-07-30T22:23:29Z 2 2020-02-15T06:59:41Z +7653 2005-07-28T01:58:30Z 814 232 2005-07-28T23:32:30Z 2 2020-02-15T06:59:41Z +7654 2005-07-28T02:00:14Z 1009 360 2005-07-31T20:50:14Z 2 2020-02-15T06:59:41Z +7655 2005-07-28T02:01:11Z 2665 513 2005-07-30T23:12:11Z 2 2020-02-15T06:59:41Z +7656 2005-07-28T02:07:19Z 178 148 2005-07-31T04:05:19Z 1 2020-02-15T06:59:41Z +7657 2005-07-28T02:09:00Z 2319 518 2005-08-04T21:44:00Z 1 2020-02-15T06:59:41Z +7658 2005-07-28T02:09:12Z 1798 272 2005-07-30T00:54:12Z 2 2020-02-15T06:59:41Z +7659 2005-07-28T02:09:45Z 1622 584 2005-08-02T05:34:45Z 2 2020-02-15T06:59:41Z +7660 2005-07-28T02:10:10Z 4385 4 2005-07-30T04:29:10Z 2 2020-02-15T06:59:41Z +7661 2005-07-28T02:10:27Z 3060 256 2005-08-05T03:45:27Z 2 2020-02-15T06:59:41Z +7662 2005-07-28T02:16:08Z 1017 534 2005-08-03T21:51:08Z 1 2020-02-15T06:59:41Z +7663 2005-07-28T02:19:48Z 832 470 2005-07-30T21:43:48Z 2 2020-02-15T06:59:41Z +7664 2005-07-28T02:24:23Z 1989 461 2005-07-29T23:01:23Z 1 2020-02-15T06:59:41Z +7665 2005-07-28T02:28:30Z 1455 590 2005-07-31T20:42:30Z 1 2020-02-15T06:59:41Z +7666 2005-07-28T02:35:12Z 688 196 2005-08-05T05:43:12Z 2 2020-02-15T06:59:41Z +7667 2005-07-28T02:37:22Z 2415 443 2005-08-05T21:37:22Z 1 2020-02-15T06:59:41Z +7668 2005-07-28T02:41:31Z 3880 508 2005-08-02T06:08:31Z 1 2020-02-15T06:59:41Z +7669 2005-07-28T02:44:07Z 2624 483 2005-07-29T00:54:07Z 1 2020-02-15T06:59:41Z +7670 2005-07-28T02:44:25Z 1356 252 2005-07-29T21:55:25Z 2 2020-02-15T06:59:41Z +7671 2005-07-28T02:48:31Z 3464 442 2005-07-30T23:04:31Z 1 2020-02-15T06:59:41Z +7672 2005-07-28T02:49:41Z 573 542 2005-08-04T02:38:41Z 1 2020-02-15T06:59:41Z +7673 2005-07-28T02:53:53Z 2368 409 2005-08-06T00:07:53Z 1 2020-02-15T06:59:42Z +7674 2005-07-28T02:54:30Z 682 177 2005-08-05T23:09:30Z 1 2020-02-15T06:59:42Z +7675 2005-07-28T02:55:20Z 153 189 2005-07-31T05:27:20Z 1 2020-02-15T06:59:42Z +7676 2005-07-28T02:55:27Z 1110 508 2005-08-01T03:50:27Z 2 2020-02-15T06:59:42Z +7677 2005-07-28T02:56:37Z 4464 566 2005-07-31T02:21:37Z 1 2020-02-15T06:59:42Z +7678 2005-07-28T02:58:16Z 3398 510 2005-08-06T04:22:16Z 1 2020-02-15T06:59:42Z +7679 2005-07-28T02:58:39Z 1063 444 2005-08-02T04:58:39Z 1 2020-02-15T06:59:42Z +7680 2005-07-28T02:59:08Z 1784 559 2005-08-03T03:37:08Z 2 2020-02-15T06:59:42Z +7681 2005-07-28T03:07:09Z 1176 432 2005-07-29T08:30:09Z 2 2020-02-15T06:59:42Z +7682 2005-07-28T03:07:29Z 3296 400 2005-08-04T08:48:29Z 2 2020-02-15T06:59:42Z +7683 2005-07-28T03:11:29Z 1760 73 2005-08-04T00:14:29Z 1 2020-02-15T06:59:42Z +7684 2005-07-28T03:11:54Z 3365 40 2005-07-31T04:40:54Z 2 2020-02-15T06:59:42Z +7685 2005-07-28T03:13:00Z 2213 468 2005-08-01T00:29:00Z 2 2020-02-15T06:59:42Z +7686 2005-07-28T03:19:23Z 2144 184 2005-08-04T05:17:23Z 2 2020-02-15T06:59:42Z +7687 2005-07-28T03:20:26Z 689 325 2005-08-02T05:48:26Z 2 2020-02-15T06:59:42Z +7688 2005-07-28T03:20:47Z 1179 491 2005-08-06T06:07:47Z 2 2020-02-15T06:59:42Z +7689 2005-07-28T03:21:24Z 1803 253 2005-07-31T08:01:24Z 2 2020-02-15T06:59:42Z +7690 2005-07-28T03:26:21Z 1076 150 2005-07-29T00:08:21Z 1 2020-02-15T06:59:42Z +7691 2005-07-28T03:30:09Z 1579 112 2005-07-29T21:31:09Z 1 2020-02-15T06:59:42Z +7692 2005-07-28T03:30:21Z 267 392 2005-07-30T22:25:21Z 1 2020-02-15T06:59:42Z +7693 2005-07-28T03:31:22Z 2479 148 2005-07-31T06:42:22Z 2 2020-02-15T06:59:42Z +7694 2005-07-28T03:39:25Z 2892 538 2005-07-31T05:47:25Z 1 2020-02-15T06:59:42Z +7695 2005-07-28T03:41:13Z 2742 323 2005-08-06T05:06:13Z 2 2020-02-15T06:59:42Z +7696 2005-07-28T03:41:35Z 3463 56 2005-08-06T05:48:35Z 2 2020-02-15T06:59:42Z +7697 2005-07-28T03:43:45Z 3966 377 2005-08-03T07:55:45Z 2 2020-02-15T06:59:42Z +7698 2005-07-28T03:44:14Z 3650 561 2005-08-04T03:44:14Z 2 2020-02-15T06:59:42Z +7699 2005-07-28T03:52:21Z 4332 53 2005-08-01T05:00:21Z 2 2020-02-15T06:59:42Z +7700 2005-07-28T03:54:14Z 3546 124 2005-08-05T06:20:14Z 2 2020-02-15T06:59:42Z +7701 2005-07-28T03:54:28Z 1604 306 2005-08-01T08:39:28Z 2 2020-02-15T06:59:42Z +7702 2005-07-28T03:56:05Z 253 349 2005-07-31T03:29:05Z 1 2020-02-15T06:59:42Z +7703 2005-07-28T03:59:21Z 2150 3 2005-08-05T08:52:21Z 1 2020-02-15T06:59:42Z +7704 2005-07-28T04:02:13Z 2342 265 2005-08-04T00:51:13Z 1 2020-02-15T06:59:42Z +7705 2005-07-28T04:02:58Z 1072 22 2005-08-05T01:19:58Z 2 2020-02-15T06:59:42Z +7706 2005-07-28T04:03:17Z 994 263 2005-07-29T22:16:17Z 2 2020-02-15T06:59:42Z +7707 2005-07-28T04:07:47Z 2563 232 2005-07-29T02:02:47Z 1 2020-02-15T06:59:42Z +7708 2005-07-28T04:19:15Z 398 363 2005-08-04T04:41:15Z 1 2020-02-15T06:59:42Z +7709 2005-07-28T04:22:14Z 3800 81 2005-07-31T09:18:14Z 2 2020-02-15T06:59:42Z +7710 2005-07-28T04:24:07Z 3716 77 2005-08-03T22:49:07Z 2 2020-02-15T06:59:42Z +7711 2005-07-28T04:26:42Z 2695 426 2005-07-29T07:30:42Z 2 2020-02-15T06:59:42Z +7712 2005-07-28T04:29:53Z 3256 361 2005-08-02T00:57:53Z 2 2020-02-15T06:59:42Z +7713 2005-07-28T04:32:14Z 2018 572 2005-08-03T04:30:14Z 2 2020-02-15T06:59:42Z +7714 2005-07-28T04:32:30Z 940 70 2005-08-02T07:10:30Z 2 2020-02-15T06:59:42Z +7715 2005-07-28T04:32:38Z 3210 512 2005-08-05T00:37:38Z 2 2020-02-15T06:59:42Z +7716 2005-07-28T04:33:15Z 1493 284 2005-08-04T00:08:15Z 2 2020-02-15T06:59:42Z +7717 2005-07-28T04:33:54Z 730 459 2005-07-30T02:46:54Z 2 2020-02-15T06:59:42Z +7718 2005-07-28T04:37:59Z 3587 4 2005-07-29T09:20:59Z 2 2020-02-15T06:59:42Z +7719 2005-07-28T04:39:09Z 2481 286 2005-08-05T03:15:09Z 1 2020-02-15T06:59:42Z +7720 2005-07-28T04:41:44Z 185 520 2005-08-04T06:51:44Z 2 2020-02-15T06:59:42Z +7721 2005-07-28T04:42:58Z 2228 83 2005-07-31T07:52:58Z 1 2020-02-15T06:59:42Z +7722 2005-07-28T04:44:58Z 3828 309 2005-07-30T01:29:58Z 1 2020-02-15T06:59:42Z +7723 2005-07-28T04:45:37Z 3263 147 2005-07-30T09:03:37Z 2 2020-02-15T06:59:42Z +7724 2005-07-28T04:46:30Z 346 3 2005-08-04T08:41:30Z 1 2020-02-15T06:59:42Z +7725 2005-07-28T04:47:14Z 1922 326 2005-08-04T09:03:14Z 1 2020-02-15T06:59:42Z +7726 2005-07-28T04:52:19Z 2578 219 2005-08-04T09:05:19Z 1 2020-02-15T06:59:42Z +7727 2005-07-28T04:52:43Z 2274 123 2005-08-03T01:12:43Z 2 2020-02-15T06:59:42Z +7728 2005-07-28T04:56:33Z 492 130 2005-07-31T07:54:33Z 1 2020-02-15T06:59:42Z +7729 2005-07-28T04:57:57Z 1491 89 2005-07-30T09:38:57Z 1 2020-02-15T06:59:42Z +7730 2005-07-28T04:59:48Z 3118 155 2005-08-04T04:35:48Z 2 2020-02-15T06:59:42Z +7731 2005-07-28T05:01:18Z 1533 413 2005-07-29T02:22:18Z 1 2020-02-15T06:59:42Z +7732 2005-07-28T05:03:32Z 3597 158 2005-07-29T10:20:32Z 1 2020-02-15T06:59:42Z +7733 2005-07-28T05:04:47Z 10 82 2005-08-05T05:12:47Z 2 2020-02-15T06:59:42Z +7734 2005-07-28T05:08:44Z 2726 135 2005-07-30T09:42:44Z 2 2020-02-15T06:59:42Z +7735 2005-07-28T05:09:56Z 3949 372 2005-07-31T23:34:56Z 2 2020-02-15T06:59:42Z +7736 2005-07-28T05:12:04Z 4466 205 2005-08-05T02:28:04Z 2 2020-02-15T06:59:42Z +7737 2005-07-28T05:15:03Z 1235 494 2005-08-04T01:24:03Z 1 2020-02-15T06:59:42Z +7738 2005-07-28T05:21:42Z 80 10 2005-08-03T09:46:42Z 2 2020-02-15T06:59:42Z +7739 2005-07-28T05:21:51Z 1554 186 2005-07-30T02:06:51Z 2 2020-02-15T06:59:42Z +7740 2005-07-28T05:23:36Z 3613 395 2005-08-01T02:20:36Z 2 2020-02-15T06:59:42Z +7741 2005-07-28T05:25:55Z 3917 591 2005-08-02T02:40:55Z 1 2020-02-15T06:59:42Z +7742 2005-07-28T05:33:16Z 1808 49 2005-08-06T01:04:16Z 2 2020-02-15T06:59:42Z +7743 2005-07-28T05:36:13Z 2883 210 2005-08-03T11:28:13Z 2 2020-02-15T06:59:42Z +7744 2005-07-28T05:38:20Z 1863 288 2005-07-31T11:00:20Z 1 2020-02-15T06:59:42Z +7745 2005-07-28T05:46:28Z 1014 285 2005-08-06T07:44:28Z 2 2020-02-15T06:59:42Z +7746 2005-07-28T05:48:56Z 176 299 2005-08-04T07:33:56Z 1 2020-02-15T06:59:42Z +7747 2005-07-28T05:50:11Z 1775 78 2005-08-03T09:51:11Z 1 2020-02-15T06:59:42Z +7748 2005-07-28T05:52:23Z 3523 415 2005-07-31T01:35:23Z 2 2020-02-15T06:59:42Z +7749 2005-07-28T05:53:36Z 3585 232 2005-08-01T03:49:36Z 1 2020-02-15T06:59:42Z +7750 2005-07-28T05:55:30Z 820 220 2005-08-06T04:32:30Z 2 2020-02-15T06:59:42Z +7751 2005-07-28T05:56:13Z 4425 176 2005-08-05T08:08:13Z 1 2020-02-15T06:59:42Z +7752 2005-07-28T06:01:00Z 2218 209 2005-08-03T06:09:00Z 1 2020-02-15T06:59:42Z +7753 2005-07-28T06:09:19Z 3071 531 2005-08-06T06:17:19Z 1 2020-02-15T06:59:42Z +7754 2005-07-28T06:10:55Z 1981 138 2005-07-29T02:46:55Z 1 2020-02-15T06:59:42Z +7755 2005-07-28T06:22:18Z 1247 449 2005-08-06T11:38:18Z 2 2020-02-15T06:59:42Z +7756 2005-07-28T06:22:52Z 1611 469 2005-08-05T11:55:52Z 2 2020-02-15T06:59:42Z +7757 2005-07-28T06:23:00Z 3445 502 2005-07-30T12:02:00Z 1 2020-02-15T06:59:42Z +7758 2005-07-28T06:23:41Z 4333 356 2005-08-03T06:06:41Z 2 2020-02-15T06:59:42Z +7759 2005-07-28T06:28:45Z 3381 405 2005-08-03T11:38:45Z 1 2020-02-15T06:59:42Z +7760 2005-07-28T06:29:45Z 409 307 2005-08-03T01:36:45Z 1 2020-02-15T06:59:42Z +7761 2005-07-28T06:31:45Z 3568 112 2005-07-30T01:36:45Z 2 2020-02-15T06:59:42Z +7762 2005-07-28T06:34:23Z 3234 462 2005-08-05T09:55:23Z 2 2020-02-15T06:59:42Z +7763 2005-07-28T06:35:16Z 2461 116 2005-08-03T02:46:16Z 2 2020-02-15T06:59:42Z +7764 2005-07-28T06:40:05Z 3537 142 2005-07-30T02:51:05Z 2 2020-02-15T06:59:42Z +7765 2005-07-28T06:40:33Z 4098 294 2005-07-31T01:25:33Z 1 2020-02-15T06:59:42Z +7766 2005-07-28T06:41:57Z 2774 292 2005-08-06T11:21:57Z 2 2020-02-15T06:59:42Z +7767 2005-07-28T06:42:02Z 329 139 2005-08-05T11:19:02Z 2 2020-02-15T06:59:42Z +7768 2005-07-28T06:44:03Z 2450 123 2005-07-29T09:46:03Z 1 2020-02-15T06:59:42Z +7769 2005-07-28T06:45:23Z 3250 30 2005-07-30T12:18:23Z 1 2020-02-15T06:59:42Z +7770 2005-07-28T06:49:35Z 1486 507 2005-08-06T08:16:35Z 1 2020-02-15T06:59:42Z +7771 2005-07-28T06:52:12Z 1003 175 2005-07-30T12:48:12Z 1 2020-02-15T06:59:42Z +7772 2005-07-28T06:59:09Z 986 552 2005-08-01T10:49:09Z 1 2020-02-15T06:59:42Z +7773 2005-07-28T07:02:17Z 4143 380 2005-07-30T04:16:17Z 2 2020-02-15T06:59:42Z +7774 2005-07-28T07:03:25Z 3483 259 2005-08-03T02:05:25Z 1 2020-02-15T06:59:42Z +7775 2005-07-28T07:04:36Z 3795 475 2005-08-03T06:36:36Z 2 2020-02-15T06:59:42Z +7776 2005-07-28T07:04:36Z 4170 385 2005-08-01T09:32:36Z 1 2020-02-15T06:59:42Z +7777 2005-07-28T07:04:42Z 4422 287 2005-07-29T01:57:42Z 1 2020-02-15T06:59:42Z +7778 2005-07-28T07:10:11Z 1044 248 2005-08-05T05:09:11Z 1 2020-02-15T06:59:42Z +7779 2005-07-28T07:11:11Z 3663 414 2005-07-30T11:12:11Z 1 2020-02-15T06:59:42Z +7780 2005-07-28T07:11:55Z 3069 236 2005-08-06T05:41:55Z 1 2020-02-15T06:59:42Z +7781 2005-07-28T07:13:20Z 541 539 2005-08-06T05:43:20Z 2 2020-02-15T06:59:42Z +7782 2005-07-28T07:13:40Z 3770 199 2005-08-05T06:50:40Z 1 2020-02-15T06:59:42Z +7783 2005-07-28T07:14:43Z 3817 581 2005-08-01T05:03:43Z 2 2020-02-15T06:59:42Z +7784 2005-07-28T07:15:32Z 3611 505 2005-08-06T05:00:32Z 1 2020-02-15T06:59:42Z +7785 2005-07-28T07:16:11Z 4277 460 2005-08-02T03:43:11Z 1 2020-02-15T06:59:42Z +7786 2005-07-28T07:18:26Z 2285 222 2005-07-29T03:00:26Z 1 2020-02-15T06:59:42Z +7787 2005-07-28T07:19:02Z 2191 203 2005-08-06T02:38:02Z 2 2020-02-15T06:59:42Z +7788 2005-07-28T07:21:55Z 95 487 2005-08-03T06:33:55Z 1 2020-02-15T06:59:42Z +7789 2005-07-28T07:22:07Z 2837 426 2005-08-06T10:47:07Z 1 2020-02-15T06:59:42Z +7790 2005-07-28T07:22:35Z 2327 189 2005-07-30T02:59:35Z 1 2020-02-15T06:59:42Z +7791 2005-07-28T07:22:51Z 822 514 2005-07-30T03:09:51Z 1 2020-02-15T06:59:42Z +7792 2005-07-28T07:24:02Z 3736 236 2005-08-04T11:13:02Z 1 2020-02-15T06:59:42Z +7793 2005-07-28T07:26:14Z 24 32 2005-08-03T07:45:14Z 1 2020-02-15T06:59:42Z +7794 2005-07-28T07:28:03Z 4509 510 2005-08-06T12:32:03Z 2 2020-02-15T06:59:42Z +7795 2005-07-28T07:28:16Z 1278 38 2005-07-31T12:03:16Z 1 2020-02-15T06:59:42Z +7796 2005-07-28T07:39:39Z 622 419 2005-08-02T05:34:39Z 2 2020-02-15T06:59:42Z +7797 2005-07-28T07:41:07Z 4180 370 2005-07-31T04:13:07Z 1 2020-02-15T06:59:42Z +7798 2005-07-28T07:41:59Z 3281 236 2005-07-31T12:36:59Z 1 2020-02-15T06:59:42Z +7799 2005-07-28T07:42:09Z 2163 384 2005-08-02T10:02:09Z 2 2020-02-15T06:59:42Z +7800 2005-07-28T07:50:59Z 3386 499 2005-07-29T07:31:59Z 2 2020-02-15T06:59:42Z +7801 2005-07-28T07:51:56Z 2052 9 2005-07-30T12:18:56Z 1 2020-02-15T06:59:42Z +7802 2005-07-28T07:51:57Z 1108 298 2005-07-29T09:32:57Z 1 2020-02-15T06:59:42Z +7803 2005-07-28T07:52:13Z 3438 449 2005-08-03T13:35:13Z 1 2020-02-15T06:59:42Z +7804 2005-07-28T07:56:00Z 592 249 2005-07-30T10:33:00Z 2 2020-02-15T06:59:42Z +7805 2005-07-28T07:56:41Z 3204 366 2005-08-04T06:53:41Z 1 2020-02-15T06:59:42Z +7806 2005-07-28T07:58:17Z 4317 440 2005-08-06T10:15:17Z 1 2020-02-15T06:59:42Z +7807 2005-07-28T07:58:27Z 2204 504 2005-08-01T02:48:27Z 2 2020-02-15T06:59:42Z +7808 2005-07-28T07:58:56Z 4052 327 2005-08-02T10:49:56Z 1 2020-02-15T06:59:42Z +7809 2005-07-28T07:59:46Z 4150 94 2005-08-02T02:56:46Z 1 2020-02-15T06:59:42Z +7810 2005-07-28T08:00:38Z 30 537 2005-08-02T06:14:38Z 2 2020-02-15T06:59:42Z +7811 2005-07-28T08:06:01Z 3891 347 2005-07-30T10:08:01Z 2 2020-02-15T06:59:42Z +7812 2005-07-28T08:06:52Z 4556 237 2005-07-31T09:57:52Z 2 2020-02-15T06:59:42Z +7813 2005-07-28T08:08:27Z 4216 411 2005-07-30T03:08:27Z 2 2020-02-15T06:59:42Z +7814 2005-07-28T08:09:48Z 2662 258 2005-08-01T13:14:48Z 2 2020-02-15T06:59:42Z +7815 2005-07-28T08:14:11Z 3551 300 2005-07-30T02:34:11Z 2 2020-02-15T06:59:42Z +7816 2005-07-28T08:14:12Z 1422 283 2005-07-30T08:00:12Z 2 2020-02-15T06:59:42Z +7817 2005-07-28T08:20:55Z 600 259 2005-07-30T11:55:55Z 1 2020-02-15T06:59:42Z +7818 2005-07-28T08:25:00Z 1672 301 2005-07-29T14:07:00Z 1 2020-02-15T06:59:42Z +7819 2005-07-28T08:27:14Z 3182 100 2005-08-02T12:34:14Z 2 2020-02-15T06:59:42Z +7820 2005-07-28T08:28:51Z 4475 459 2005-08-05T10:00:51Z 1 2020-02-15T06:59:42Z +7821 2005-07-28T08:31:23Z 1184 433 2005-08-03T05:08:23Z 2 2020-02-15T06:59:42Z +7822 2005-07-28T08:31:45Z 1428 156 2005-07-31T11:06:45Z 1 2020-02-15T06:59:42Z +7823 2005-07-28T08:32:53Z 84 428 2005-08-06T11:59:53Z 1 2020-02-15T06:59:42Z +7824 2005-07-28T08:34:47Z 2241 153 2005-08-05T09:43:47Z 2 2020-02-15T06:59:42Z +7825 2005-07-28T08:34:57Z 4340 348 2005-08-06T02:45:57Z 1 2020-02-15T06:59:42Z +7826 2005-07-28T08:35:51Z 1473 214 2005-08-05T07:57:51Z 2 2020-02-15T06:59:42Z +7827 2005-07-28T08:37:22Z 659 422 2005-07-31T04:27:22Z 1 2020-02-15T06:59:42Z +7828 2005-07-28T08:40:46Z 1710 212 2005-07-30T14:22:46Z 1 2020-02-15T06:59:42Z +7829 2005-07-28T08:43:39Z 111 5 2005-08-04T14:33:39Z 1 2020-02-15T06:59:42Z +7830 2005-07-28T08:43:49Z 4492 144 2005-08-04T09:30:49Z 2 2020-02-15T06:59:42Z +7831 2005-07-28T08:44:21Z 4436 499 2005-07-30T03:25:21Z 2 2020-02-15T06:59:42Z +7832 2005-07-28T08:46:11Z 284 92 2005-08-04T06:55:11Z 1 2020-02-15T06:59:42Z +7833 2005-07-28T08:46:14Z 1166 263 2005-08-04T06:13:14Z 1 2020-02-15T06:59:42Z +7834 2005-07-28T08:46:43Z 4124 278 2005-07-31T07:09:43Z 2 2020-02-15T06:59:42Z +7835 2005-07-28T08:49:39Z 43 547 2005-08-02T07:16:39Z 2 2020-02-15T06:59:42Z +7836 2005-07-28T08:55:27Z 1770 481 2005-08-05T09:35:27Z 1 2020-02-15T06:59:42Z +7837 2005-07-28T08:58:32Z 115 374 2005-07-29T14:11:32Z 1 2020-02-15T06:59:42Z +7838 2005-07-28T09:00:21Z 2222 550 2005-07-29T05:52:21Z 1 2020-02-15T06:59:42Z +7839 2005-07-28T09:01:13Z 914 518 2005-08-04T11:46:13Z 1 2020-02-15T06:59:42Z +7840 2005-07-28T09:03:02Z 2899 482 2005-08-06T06:15:02Z 1 2020-02-15T06:59:42Z +7841 2005-07-28T09:04:45Z 1092 1 2005-07-30T12:37:45Z 2 2020-02-15T06:59:42Z +7842 2005-07-28T09:10:06Z 2447 276 2005-08-04T06:52:06Z 2 2020-02-15T06:59:42Z +7843 2005-07-28T09:10:22Z 3962 75 2005-08-01T11:27:22Z 2 2020-02-15T06:59:42Z +7844 2005-07-28T09:16:19Z 4220 187 2005-08-05T14:06:19Z 2 2020-02-15T06:59:42Z +7845 2005-07-28T09:18:07Z 38 352 2005-08-04T10:23:07Z 2 2020-02-15T06:59:42Z +7846 2005-07-28T09:21:18Z 4201 309 2005-08-06T07:10:18Z 2 2020-02-15T06:59:42Z +7847 2005-07-28T09:23:14Z 3602 323 2005-08-02T11:02:14Z 2 2020-02-15T06:59:42Z +7848 2005-07-28T09:24:31Z 162 509 2005-08-05T05:11:31Z 2 2020-02-15T06:59:42Z +7849 2005-07-28T09:30:02Z 996 423 2005-08-06T12:41:02Z 2 2020-02-15T06:59:42Z +7850 2005-07-28T09:31:13Z 2913 118 2005-08-02T14:06:13Z 2 2020-02-15T06:59:42Z +7851 2005-07-28T09:31:58Z 3596 253 2005-08-04T09:58:58Z 2 2020-02-15T06:59:42Z +7852 2005-07-28T09:34:29Z 3462 123 2005-07-30T05:48:29Z 1 2020-02-15T06:59:42Z +7853 2005-07-28T09:36:38Z 4053 318 2005-07-29T15:01:38Z 1 2020-02-15T06:59:42Z +7854 2005-07-28T09:42:31Z 3531 84 2005-08-02T09:25:31Z 1 2020-02-15T06:59:42Z +7855 2005-07-28T09:43:02Z 2474 288 2005-07-30T12:57:02Z 2 2020-02-15T06:59:42Z +7856 2005-07-28T09:48:24Z 2376 375 2005-07-29T09:49:24Z 2 2020-02-15T06:59:42Z +7857 2005-07-28T09:49:40Z 4027 500 2005-08-01T05:34:40Z 2 2020-02-15T06:59:42Z +7858 2005-07-28T09:50:18Z 992 144 2005-08-05T14:33:18Z 1 2020-02-15T06:59:42Z +7859 2005-07-28T09:57:17Z 3392 547 2005-08-04T06:04:17Z 1 2020-02-15T06:59:42Z +7860 2005-07-28T09:58:02Z 2400 241 2005-08-05T06:04:02Z 1 2020-02-15T06:59:42Z +7861 2005-07-28T10:02:01Z 1781 208 2005-08-06T13:17:01Z 1 2020-02-15T06:59:42Z +7862 2005-07-28T10:02:25Z 2507 299 2005-08-05T13:10:25Z 1 2020-02-15T06:59:42Z +7863 2005-07-28T10:05:46Z 1212 182 2005-07-29T14:42:46Z 1 2020-02-15T06:59:42Z +7864 2005-07-28T10:06:10Z 1238 20 2005-08-04T08:38:10Z 1 2020-02-15T06:59:42Z +7865 2005-07-28T10:07:04Z 2334 148 2005-08-06T08:16:04Z 2 2020-02-15T06:59:42Z +7866 2005-07-28T10:08:01Z 1602 101 2005-08-04T09:29:01Z 2 2020-02-15T06:59:42Z +7867 2005-07-28T10:08:54Z 713 297 2005-07-30T10:26:54Z 2 2020-02-15T06:59:42Z +7868 2005-07-28T10:08:55Z 3589 43 2005-07-30T11:52:55Z 1 2020-02-15T06:59:42Z +7869 2005-07-28T10:13:15Z 3005 298 2005-08-03T12:58:15Z 1 2020-02-15T06:59:42Z +7870 2005-07-28T10:16:03Z 970 240 2005-07-31T16:06:03Z 1 2020-02-15T06:59:42Z +7871 2005-07-28T10:16:37Z 3990 491 2005-08-05T11:24:37Z 2 2020-02-15T06:59:42Z +7872 2005-07-28T10:18:16Z 826 66 2005-07-31T10:57:16Z 1 2020-02-15T06:59:42Z +7873 2005-07-28T10:19:46Z 2947 82 2005-07-31T04:43:46Z 2 2020-02-15T06:59:42Z +7874 2005-07-28T10:21:52Z 2981 86 2005-08-06T16:19:52Z 1 2020-02-15T06:59:42Z +7875 2005-07-28T10:23:48Z 3693 504 2005-08-02T12:09:48Z 1 2020-02-15T06:59:42Z +7876 2005-07-28T10:24:22Z 3563 577 2005-08-04T07:15:22Z 1 2020-02-15T06:59:42Z +7877 2005-07-28T10:25:36Z 2576 65 2005-08-05T12:46:36Z 1 2020-02-15T06:59:42Z +7878 2005-07-28T10:27:10Z 1564 141 2005-07-29T11:22:10Z 1 2020-02-15T06:59:42Z +7879 2005-07-28T10:27:46Z 1969 125 2005-07-31T07:48:46Z 1 2020-02-15T06:59:42Z +7880 2005-07-28T10:30:37Z 3670 182 2005-08-03T08:05:37Z 2 2020-02-15T06:59:42Z +7881 2005-07-28T10:33:22Z 533 249 2005-08-02T12:10:22Z 1 2020-02-15T06:59:42Z +7882 2005-07-28T10:33:42Z 3922 516 2005-07-29T13:49:42Z 1 2020-02-15T06:59:42Z +7883 2005-07-28T10:37:20Z 447 526 2005-08-02T05:08:20Z 1 2020-02-15T06:59:42Z +7884 2005-07-28T10:37:24Z 3871 502 2005-07-31T10:31:24Z 1 2020-02-15T06:59:42Z +7885 2005-07-28T10:37:41Z 4294 260 2005-08-05T07:56:41Z 1 2020-02-15T06:59:42Z +7886 2005-07-28T10:37:55Z 237 352 2005-08-04T13:22:55Z 2 2020-02-15T06:59:42Z +7887 2005-07-28T10:40:12Z 2820 253 2005-08-02T06:09:12Z 1 2020-02-15T06:59:42Z +7888 2005-07-28T10:40:24Z 545 378 2005-08-01T16:18:24Z 1 2020-02-15T06:59:42Z +7889 2005-07-28T10:43:21Z 3123 416 2005-07-30T09:11:21Z 1 2020-02-15T06:59:42Z +7890 2005-07-28T10:43:40Z 3443 553 2005-07-31T06:07:40Z 1 2020-02-15T06:59:42Z +7891 2005-07-28T10:43:56Z 3637 560 2005-08-05T14:04:56Z 2 2020-02-15T06:59:42Z +7892 2005-07-28T10:46:58Z 2717 397 2005-07-30T16:03:58Z 1 2020-02-15T06:59:42Z +7893 2005-07-28T10:49:27Z 3058 479 2005-08-02T06:46:27Z 1 2020-02-15T06:59:42Z +7894 2005-07-28T10:53:58Z 3532 330 2005-08-02T13:42:58Z 2 2020-02-15T06:59:42Z +7895 2005-07-28T10:57:15Z 900 67 2005-08-02T15:10:15Z 2 2020-02-15T06:59:42Z +7896 2005-07-28T11:00:58Z 3561 389 2005-08-04T14:30:58Z 2 2020-02-15T06:59:42Z +7897 2005-07-28T11:01:51Z 1396 75 2005-07-31T13:13:51Z 1 2020-02-15T06:59:42Z +7898 2005-07-28T11:08:22Z 2680 499 2005-08-03T12:28:22Z 1 2020-02-15T06:59:42Z +7899 2005-07-28T11:10:12Z 4130 452 2005-08-02T13:20:12Z 2 2020-02-15T06:59:42Z +7900 2005-07-28T11:11:33Z 2781 154 2005-08-05T06:29:33Z 2 2020-02-15T06:59:42Z +7901 2005-07-28T11:12:12Z 4435 280 2005-08-01T08:13:12Z 1 2020-02-15T06:59:42Z +7902 2005-07-28T11:14:19Z 3066 356 2005-07-30T09:01:19Z 2 2020-02-15T06:59:42Z +7903 2005-07-28T11:20:36Z 2767 588 2005-07-31T09:16:36Z 1 2020-02-15T06:59:42Z +7904 2005-07-28T11:25:39Z 316 477 2005-08-06T08:22:39Z 2 2020-02-15T06:59:42Z +7905 2005-07-28T11:26:57Z 4287 455 2005-08-02T06:14:57Z 1 2020-02-15T06:59:42Z +7906 2005-07-28T11:31:42Z 1216 85 2005-08-01T11:56:42Z 2 2020-02-15T06:59:42Z +7907 2005-07-28T11:32:00Z 3252 433 2005-07-30T15:27:00Z 1 2020-02-15T06:59:42Z +7908 2005-07-28T11:32:57Z 3646 360 2005-08-03T13:30:57Z 2 2020-02-15T06:59:42Z +7909 2005-07-28T11:38:08Z 3355 210 2005-07-29T13:54:08Z 1 2020-02-15T06:59:42Z +7910 2005-07-28T11:44:56Z 2044 480 2005-08-05T14:37:56Z 2 2020-02-15T06:59:42Z +7911 2005-07-28T11:46:45Z 390 3 2005-07-29T07:19:45Z 1 2020-02-15T06:59:42Z +7912 2005-07-28T11:46:58Z 745 127 2005-08-05T12:50:58Z 1 2020-02-15T06:59:42Z +7913 2005-07-28T11:47:23Z 4001 459 2005-08-05T06:36:23Z 1 2020-02-15T06:59:42Z +7914 2005-07-28T11:48:08Z 2796 469 2005-07-30T14:14:08Z 1 2020-02-15T06:59:42Z +7915 2005-07-28T11:49:46Z 2088 186 2005-08-04T12:21:46Z 2 2020-02-15T06:59:42Z +7916 2005-07-28T11:49:53Z 3877 13 2005-07-29T15:01:53Z 1 2020-02-15T06:59:42Z +7917 2005-07-28T11:56:57Z 2071 416 2005-07-29T14:06:57Z 1 2020-02-15T06:59:42Z +7918 2005-07-28T11:58:53Z 63 473 2005-08-04T12:08:53Z 2 2020-02-15T06:59:42Z +7919 2005-07-28T11:59:45Z 2138 36 2005-08-06T11:19:45Z 1 2020-02-15T06:59:42Z +7920 2005-07-28T12:01:19Z 66 48 2005-08-05T07:08:19Z 1 2020-02-15T06:59:42Z +7921 2005-07-28T12:02:46Z 116 100 2005-08-01T12:08:46Z 2 2020-02-15T06:59:42Z +7922 2005-07-28T12:05:25Z 817 125 2005-08-02T12:13:25Z 2 2020-02-15T06:59:42Z +7923 2005-07-28T12:08:29Z 2273 458 2005-08-04T12:30:29Z 1 2020-02-15T06:59:42Z +7924 2005-07-28T12:08:53Z 656 97 2005-07-30T06:45:53Z 2 2020-02-15T06:59:42Z +7925 2005-07-28T12:10:02Z 1763 500 2005-08-02T15:50:02Z 1 2020-02-15T06:59:42Z +7926 2005-07-28T12:13:02Z 180 78 2005-08-05T08:54:02Z 1 2020-02-15T06:59:42Z +7927 2005-07-28T12:13:42Z 1263 27 2005-08-05T12:02:42Z 1 2020-02-15T06:59:42Z +7928 2005-07-28T12:15:51Z 912 473 2005-08-05T06:34:51Z 1 2020-02-15T06:59:42Z +7929 2005-07-28T12:16:40Z 2652 307 2005-07-31T13:09:40Z 2 2020-02-15T06:59:42Z +7930 2005-07-28T12:21:08Z 4181 320 2005-07-30T11:56:08Z 1 2020-02-15T06:59:42Z +7931 2005-07-28T12:23:41Z 1923 326 2005-08-06T09:49:41Z 2 2020-02-15T06:59:42Z +7932 2005-07-28T12:24:54Z 3738 462 2005-07-30T11:33:54Z 1 2020-02-15T06:59:42Z +7933 2005-07-28T12:27:27Z 3175 297 2005-07-29T10:34:27Z 2 2020-02-15T06:59:42Z +7934 2005-07-28T12:33:10Z 2642 332 2005-08-04T07:40:10Z 2 2020-02-15T06:59:42Z +7935 2005-07-28T12:33:17Z 3664 462 2005-08-04T14:40:17Z 2 2020-02-15T06:59:42Z +7936 2005-07-28T12:33:21Z 563 520 2005-07-30T13:31:21Z 2 2020-02-15T06:59:42Z +7937 2005-07-28T12:38:22Z 3944 323 2005-07-29T09:19:22Z 1 2020-02-15T06:59:42Z +7938 2005-07-28T12:39:11Z 2579 114 2005-08-04T16:56:11Z 1 2020-02-15T06:59:42Z +7939 2005-07-28T12:45:47Z 2004 37 2005-07-30T18:32:47Z 2 2020-02-15T06:59:42Z +7940 2005-07-28T12:46:47Z 901 409 2005-07-29T06:46:47Z 2 2020-02-15T06:59:42Z +7941 2005-07-28T12:47:20Z 439 566 2005-08-01T08:46:20Z 1 2020-02-15T06:59:42Z +7942 2005-07-28T12:49:44Z 1636 56 2005-07-31T18:07:44Z 2 2020-02-15T06:59:42Z +7943 2005-07-28T12:50:55Z 2914 346 2005-08-04T11:29:55Z 2 2020-02-15T06:59:42Z +7944 2005-07-28T12:51:22Z 3148 504 2005-07-30T12:19:22Z 1 2020-02-15T06:59:42Z +7945 2005-07-28T12:53:58Z 3326 316 2005-08-03T14:04:58Z 1 2020-02-15T06:59:42Z +7946 2005-07-28T13:01:22Z 99 90 2005-08-03T15:27:22Z 2 2020-02-15T06:59:42Z +7947 2005-07-28T13:05:50Z 2504 279 2005-08-02T11:16:50Z 2 2020-02-15T06:59:42Z +7948 2005-07-28T13:06:16Z 215 589 2005-08-05T08:38:16Z 1 2020-02-15T06:59:42Z +7949 2005-07-28T13:07:24Z 2145 487 2005-08-02T09:41:24Z 1 2020-02-15T06:59:42Z +7950 2005-07-28T13:21:00Z 2286 122 2005-08-05T18:47:00Z 2 2020-02-15T06:59:42Z +7951 2005-07-28T13:21:16Z 3979 237 2005-08-06T08:21:16Z 1 2020-02-15T06:59:42Z +7952 2005-07-28T13:23:49Z 3313 158 2005-08-01T08:50:49Z 1 2020-02-15T06:59:42Z +7953 2005-07-28T13:24:32Z 4471 319 2005-08-05T16:09:32Z 2 2020-02-15T06:59:42Z +7954 2005-07-28T13:25:05Z 3735 145 2005-07-29T18:50:05Z 2 2020-02-15T06:59:42Z +7955 2005-07-28T13:31:36Z 1519 522 2005-07-30T10:03:36Z 1 2020-02-15T06:59:42Z +7956 2005-07-28T13:32:17Z 4335 118 2005-08-06T14:51:17Z 2 2020-02-15T06:59:42Z +7957 2005-07-28T13:34:08Z 1623 78 2005-08-05T07:58:08Z 1 2020-02-15T06:59:42Z +7958 2005-07-28T13:34:34Z 421 593 2005-07-29T16:03:34Z 1 2020-02-15T06:59:42Z +7959 2005-07-28T13:43:20Z 1549 178 2005-08-02T12:13:20Z 2 2020-02-15T06:59:42Z +7960 2005-07-28T13:47:08Z 2718 324 2005-08-03T15:17:08Z 1 2020-02-15T06:59:42Z +7961 2005-07-28T13:47:21Z 3284 45 2005-08-01T09:33:21Z 1 2020-02-15T06:59:42Z +7962 2005-07-28T13:48:09Z 1746 126 2005-08-03T19:21:09Z 1 2020-02-15T06:59:42Z +7963 2005-07-28T13:48:38Z 921 247 2005-08-06T19:37:38Z 2 2020-02-15T06:59:42Z +7964 2005-07-28T13:49:58Z 2528 574 2005-08-03T10:03:58Z 2 2020-02-15T06:59:42Z +7965 2005-07-28T13:52:57Z 3671 134 2005-07-29T14:54:57Z 1 2020-02-15T06:59:42Z +7966 2005-07-28T13:53:54Z 2514 91 2005-08-06T15:32:54Z 1 2020-02-15T06:59:42Z +7967 2005-07-28T13:56:51Z 2040 187 2005-08-03T19:38:51Z 1 2020-02-15T06:59:42Z +7968 2005-07-28T13:57:35Z 3865 597 2005-08-04T13:40:35Z 1 2020-02-15T06:59:42Z +7969 2005-07-28T13:57:37Z 2224 123 2005-08-04T19:31:37Z 1 2020-02-15T06:59:42Z +7970 2005-07-28T13:58:38Z 998 507 2005-08-02T12:27:38Z 1 2020-02-15T06:59:42Z +7971 2005-07-28T14:00:47Z 1910 445 2005-08-02T10:01:47Z 1 2020-02-15T06:59:42Z +7972 2005-07-28T14:07:46Z 2930 269 2005-08-01T11:28:46Z 2 2020-02-15T06:59:42Z +7973 2005-07-28T14:10:06Z 3936 339 2005-07-29T11:26:06Z 2 2020-02-15T06:59:42Z +7974 2005-07-28T14:11:57Z 2442 380 2005-08-02T19:25:57Z 2 2020-02-15T06:59:42Z +7975 2005-07-28T14:12:47Z 2565 211 2005-08-05T09:18:47Z 1 2020-02-15T06:59:42Z +7976 2005-07-28T14:13:24Z 2296 205 2005-08-05T09:01:24Z 1 2020-02-15T06:59:42Z +7977 2005-07-28T14:15:54Z 3162 389 2005-08-01T18:58:54Z 2 2020-02-15T06:59:42Z +7978 2005-07-28T14:16:14Z 508 431 2005-08-01T12:53:14Z 2 2020-02-15T06:59:42Z +7979 2005-07-28T14:16:30Z 3303 94 2005-08-03T09:39:30Z 2 2020-02-15T06:59:42Z +7980 2005-07-28T14:16:49Z 1019 329 2005-08-05T09:20:49Z 1 2020-02-15T06:59:42Z +7981 2005-07-28T14:18:25Z 90 392 2005-08-04T15:21:25Z 2 2020-02-15T06:59:42Z +7982 2005-07-28T14:19:59Z 668 71 2005-07-29T14:09:59Z 2 2020-02-15T06:59:42Z +7983 2005-07-28T14:23:01Z 1836 115 2005-07-29T11:51:01Z 1 2020-02-15T06:59:42Z +7984 2005-07-28T14:27:51Z 2893 208 2005-08-04T17:34:51Z 1 2020-02-15T06:59:42Z +7985 2005-07-28T14:29:01Z 4022 388 2005-08-03T17:20:01Z 2 2020-02-15T06:59:42Z +7986 2005-07-28T14:30:13Z 1283 395 2005-08-05T09:35:13Z 1 2020-02-15T06:59:42Z +7987 2005-07-28T14:36:52Z 288 443 2005-08-05T16:49:52Z 2 2020-02-15T06:59:42Z +7988 2005-07-28T14:37:18Z 2906 517 2005-08-05T10:53:18Z 1 2020-02-15T06:59:42Z +7989 2005-07-28T14:39:05Z 3196 149 2005-08-05T13:58:05Z 2 2020-02-15T06:59:42Z +7990 2005-07-28T14:43:08Z 188 232 2005-08-01T10:51:08Z 2 2020-02-15T06:59:42Z +7991 2005-07-28T14:45:45Z 1133 59 2005-07-29T15:05:45Z 2 2020-02-15T06:59:42Z +7992 2005-07-28T14:53:06Z 1851 33 2005-07-29T18:17:06Z 1 2020-02-15T06:59:42Z +7993 2005-07-28T14:56:41Z 2926 353 2005-08-01T17:01:41Z 2 2020-02-15T06:59:42Z +7994 2005-07-28T14:56:54Z 2431 21 2005-07-30T09:56:54Z 2 2020-02-15T06:59:42Z +7995 2005-07-28T15:00:09Z 536 89 2005-08-01T12:33:09Z 2 2020-02-15T06:59:42Z +7996 2005-07-28T15:00:49Z 2171 408 2005-08-04T20:58:49Z 2 2020-02-15T06:59:42Z +7997 2005-07-28T15:02:25Z 1845 591 2005-08-04T14:35:25Z 1 2020-02-15T06:59:42Z +7998 2005-07-28T15:08:48Z 1397 598 2005-07-31T16:14:48Z 2 2020-02-15T06:59:42Z +7999 2005-07-28T15:10:14Z 2750 170 2005-08-06T17:08:14Z 2 2020-02-15T06:59:42Z +8000 2005-07-28T15:10:25Z 1644 212 2005-08-06T19:15:25Z 1 2020-02-15T06:59:42Z +8001 2005-07-28T15:10:55Z 2570 10 2005-08-05T18:23:55Z 1 2020-02-15T06:59:42Z +8002 2005-07-28T15:11:00Z 22 449 2005-07-31T15:46:00Z 2 2020-02-15T06:59:42Z +8003 2005-07-28T15:11:27Z 2775 89 2005-08-04T18:35:27Z 1 2020-02-15T06:59:42Z +8004 2005-07-28T15:14:07Z 4428 393 2005-07-30T19:32:07Z 2 2020-02-15T06:59:42Z +8005 2005-07-28T15:15:11Z 670 488 2005-07-29T14:54:11Z 1 2020-02-15T06:59:42Z +8006 2005-07-28T15:15:41Z 3959 109 2005-08-05T19:29:41Z 2 2020-02-15T06:59:42Z +8007 2005-07-28T15:22:27Z 1942 525 2005-07-30T13:06:27Z 2 2020-02-15T06:59:42Z +8008 2005-07-28T15:25:55Z 2093 41 2005-08-04T13:16:55Z 1 2020-02-15T06:59:42Z +8009 2005-07-28T15:25:58Z 337 372 2005-08-04T10:16:58Z 2 2020-02-15T06:59:42Z +8010 2005-07-28T15:26:20Z 68 467 2005-08-04T18:39:20Z 2 2020-02-15T06:59:42Z +8011 2005-07-28T15:26:39Z 4274 497 2005-07-30T13:59:39Z 1 2020-02-15T06:59:42Z +8012 2005-07-28T15:29:00Z 1513 343 2005-08-05T12:28:00Z 2 2020-02-15T06:59:42Z +8013 2005-07-28T15:30:26Z 2074 403 2005-08-05T16:29:26Z 1 2020-02-15T06:59:42Z +8014 2005-07-28T15:32:07Z 2339 11 2005-07-31T20:52:07Z 1 2020-02-15T06:59:42Z +8015 2005-07-28T15:33:03Z 1814 23 2005-07-30T15:32:03Z 2 2020-02-15T06:59:42Z +8016 2005-07-28T15:35:41Z 516 391 2005-07-30T20:06:41Z 2 2020-02-15T06:59:42Z +8017 2005-07-28T15:35:41Z 1764 328 2005-08-01T19:12:41Z 1 2020-02-15T06:59:42Z +8018 2005-07-28T15:36:48Z 4129 377 2005-08-06T20:04:48Z 1 2020-02-15T06:59:42Z +8019 2005-07-28T15:37:43Z 1844 84 2005-08-04T15:40:43Z 2 2020-02-15T06:59:42Z +8020 2005-07-28T15:43:32Z 4459 498 2005-08-05T12:19:32Z 1 2020-02-15T06:59:42Z +8021 2005-07-28T15:45:24Z 1920 501 2005-08-04T10:49:24Z 1 2020-02-15T06:59:42Z +8022 2005-07-28T15:48:56Z 294 314 2005-08-06T13:40:56Z 1 2020-02-15T06:59:42Z +8023 2005-07-28T15:53:29Z 2133 411 2005-07-31T12:26:29Z 1 2020-02-15T06:59:42Z +8024 2005-07-28T15:55:40Z 1735 90 2005-08-02T09:56:40Z 1 2020-02-15T06:59:42Z +8025 2005-07-28T16:03:27Z 2932 421 2005-08-03T21:58:27Z 2 2020-02-15T06:59:42Z +8026 2005-07-28T16:05:38Z 4225 511 2005-07-29T21:28:38Z 2 2020-02-15T06:59:42Z +8027 2005-07-28T16:09:57Z 1335 436 2005-08-05T18:17:57Z 1 2020-02-15T06:59:42Z +8028 2005-07-28T16:11:15Z 2715 137 2005-08-05T15:11:15Z 1 2020-02-15T06:59:42Z +8029 2005-07-28T16:11:21Z 4273 61 2005-08-05T13:52:21Z 1 2020-02-15T06:59:42Z +8030 2005-07-28T16:12:53Z 2633 30 2005-07-31T17:15:53Z 1 2020-02-15T06:59:42Z +8031 2005-07-28T16:15:49Z 2196 40 2005-08-02T18:27:49Z 2 2020-02-15T06:59:42Z +8032 2005-07-28T16:17:00Z 431 230 2005-07-29T13:32:00Z 1 2020-02-15T06:59:42Z +8033 2005-07-28T16:18:23Z 4268 1 2005-07-30T17:56:23Z 1 2020-02-15T06:59:42Z +8034 2005-07-28T16:20:26Z 1997 502 2005-08-04T19:11:26Z 2 2020-02-15T06:59:42Z +8035 2005-07-28T16:23:01Z 1503 14 2005-08-05T10:52:01Z 1 2020-02-15T06:59:42Z +8036 2005-07-28T16:27:43Z 2741 412 2005-08-01T13:41:43Z 2 2020-02-15T06:59:42Z +8037 2005-07-28T16:31:20Z 3973 409 2005-07-31T12:18:20Z 2 2020-02-15T06:59:42Z +8038 2005-07-28T16:32:55Z 1225 30 2005-07-30T21:08:55Z 1 2020-02-15T06:59:42Z +8039 2005-07-28T16:35:16Z 1996 203 2005-07-30T14:49:16Z 1 2020-02-15T06:59:42Z +8040 2005-07-28T16:39:43Z 4543 163 2005-08-02T20:00:43Z 2 2020-02-15T06:59:42Z +8041 2005-07-28T16:39:56Z 763 357 2005-07-30T18:44:56Z 1 2020-02-15T06:59:42Z +8042 2005-07-28T16:45:11Z 4325 14 2005-08-04T17:16:11Z 2 2020-02-15T06:59:42Z +8043 2005-07-28T16:45:44Z 208 577 2005-08-01T12:26:44Z 1 2020-02-15T06:59:42Z +8044 2005-07-28T16:49:12Z 879 442 2005-08-02T22:41:12Z 1 2020-02-15T06:59:42Z +8045 2005-07-28T16:49:38Z 3427 368 2005-08-03T15:42:38Z 1 2020-02-15T06:59:42Z +8046 2005-07-28T16:49:41Z 2873 120 2005-07-31T21:33:41Z 1 2020-02-15T06:59:42Z +8047 2005-07-28T16:49:43Z 2936 292 2005-08-03T14:48:43Z 2 2020-02-15T06:59:42Z +8048 2005-07-28T16:50:26Z 2721 182 2005-08-06T19:20:26Z 1 2020-02-15T06:59:42Z +8049 2005-07-28T16:51:58Z 673 42 2005-07-31T22:18:58Z 1 2020-02-15T06:59:42Z +8050 2005-07-28T16:55:47Z 1864 488 2005-08-02T13:20:47Z 1 2020-02-15T06:59:42Z +8051 2005-07-28T16:56:16Z 4405 192 2005-07-29T22:48:16Z 1 2020-02-15T06:59:42Z +8052 2005-07-28T16:57:31Z 2460 166 2005-08-03T18:03:31Z 2 2020-02-15T06:59:42Z +8053 2005-07-28T16:59:41Z 1511 526 2005-08-03T22:28:41Z 2 2020-02-15T06:59:42Z +8054 2005-07-28T17:02:18Z 1062 225 2005-08-06T11:55:18Z 1 2020-02-15T06:59:42Z +8055 2005-07-28T17:02:32Z 4162 304 2005-07-31T22:05:32Z 2 2020-02-15T06:59:42Z +8056 2005-07-28T17:04:15Z 4018 589 2005-08-03T19:11:15Z 2 2020-02-15T06:59:42Z +8057 2005-07-28T17:07:13Z 4177 483 2005-08-03T16:25:13Z 1 2020-02-15T06:59:42Z +8058 2005-07-28T17:07:49Z 2148 404 2005-08-03T22:57:49Z 1 2020-02-15T06:59:42Z +8059 2005-07-28T17:09:59Z 2611 372 2005-07-31T15:42:59Z 2 2020-02-15T06:59:42Z +8060 2005-07-28T17:10:02Z 3765 577 2005-08-05T17:11:02Z 1 2020-02-15T06:59:42Z +8061 2005-07-28T17:12:53Z 650 467 2005-08-05T13:56:53Z 2 2020-02-15T06:59:42Z +8062 2005-07-28T17:15:06Z 1384 317 2005-07-30T16:56:06Z 2 2020-02-15T06:59:42Z +8063 2005-07-28T17:15:11Z 935 163 2005-08-04T16:45:11Z 1 2020-02-15T06:59:42Z +8064 2005-07-28T17:15:38Z 3788 488 2005-08-04T18:04:38Z 2 2020-02-15T06:59:42Z +8065 2005-07-28T17:15:48Z 413 220 2005-08-04T15:49:48Z 2 2020-02-15T06:59:42Z +8066 2005-07-28T17:20:09Z 3208 462 2005-07-31T18:36:09Z 2 2020-02-15T06:59:42Z +8067 2005-07-28T17:20:17Z 3923 209 2005-07-29T21:55:17Z 1 2020-02-15T06:59:42Z +8068 2005-07-28T17:22:28Z 209 216 2005-07-29T12:24:28Z 2 2020-02-15T06:59:42Z +8069 2005-07-28T17:23:46Z 2822 178 2005-07-30T16:19:46Z 1 2020-02-15T06:59:42Z +8070 2005-07-28T17:26:56Z 1606 89 2005-08-01T17:33:56Z 1 2020-02-15T06:59:42Z +8071 2005-07-28T17:27:48Z 2582 131 2005-08-03T11:48:48Z 2 2020-02-15T06:59:42Z +8072 2005-07-28T17:27:59Z 2347 99 2005-07-30T19:08:59Z 1 2020-02-15T06:59:42Z +8073 2005-07-28T17:29:02Z 630 314 2005-08-01T22:17:02Z 2 2020-02-15T06:59:42Z +8074 2005-07-28T17:33:39Z 1558 1 2005-07-29T20:17:39Z 1 2020-02-15T06:59:42Z +8075 2005-07-28T17:37:28Z 2175 61 2005-07-29T11:56:28Z 2 2020-02-15T06:59:42Z +8076 2005-07-28T17:45:58Z 214 17 2005-08-04T18:07:58Z 2 2020-02-15T06:59:42Z +8077 2005-07-28T17:54:35Z 3253 122 2005-07-29T19:28:35Z 2 2020-02-15T06:59:42Z +8078 2005-07-28T17:54:42Z 3839 407 2005-07-30T18:18:42Z 2 2020-02-15T06:59:42Z +8079 2005-07-28T17:58:36Z 3564 432 2005-07-29T14:48:36Z 2 2020-02-15T06:59:42Z +8080 2005-07-28T18:05:06Z 3035 406 2005-07-29T22:44:06Z 2 2020-02-15T06:59:42Z +8081 2005-07-28T18:06:46Z 4404 362 2005-08-04T18:54:46Z 1 2020-02-15T06:59:42Z +8082 2005-07-28T18:08:02Z 3089 423 2005-08-04T14:33:02Z 2 2020-02-15T06:59:42Z +8083 2005-07-28T18:09:48Z 2187 30 2005-08-04T21:47:48Z 2 2020-02-15T06:59:42Z +8084 2005-07-28T18:11:58Z 911 571 2005-08-03T23:41:58Z 2 2020-02-15T06:59:42Z +8085 2005-07-28T18:13:15Z 3059 552 2005-08-04T13:45:15Z 2 2020-02-15T06:59:42Z +8086 2005-07-28T18:17:14Z 1182 3 2005-07-30T18:22:14Z 2 2020-02-15T06:59:42Z +8087 2005-07-28T18:21:16Z 1913 295 2005-08-03T12:38:16Z 2 2020-02-15T06:59:42Z +8088 2005-07-28T18:23:49Z 2590 343 2005-08-06T23:25:49Z 2 2020-02-15T06:59:42Z +8089 2005-07-28T18:26:47Z 1414 50 2005-08-03T21:28:47Z 1 2020-02-15T06:59:42Z +8090 2005-07-28T18:27:29Z 1336 387 2005-08-02T14:08:29Z 2 2020-02-15T06:59:42Z +8091 2005-07-28T18:27:29Z 3025 126 2005-08-01T19:45:29Z 2 2020-02-15T06:59:42Z +8092 2005-07-28T18:28:07Z 2034 167 2005-07-30T19:17:07Z 2 2020-02-15T06:59:42Z +8093 2005-07-28T18:29:16Z 1427 533 2005-08-05T21:49:16Z 1 2020-02-15T06:59:42Z +8094 2005-07-28T18:30:28Z 4276 432 2005-08-05T17:37:28Z 2 2020-02-15T06:59:42Z +8095 2005-07-28T18:32:40Z 2685 42 2005-08-06T23:45:40Z 1 2020-02-15T06:59:42Z +8096 2005-07-28T18:32:46Z 502 506 2005-08-06T15:00:46Z 1 2020-02-15T06:59:42Z +8097 2005-07-28T18:32:49Z 2719 436 2005-08-06T16:09:49Z 1 2020-02-15T06:59:42Z +8098 2005-07-28T18:34:20Z 1757 41 2005-07-31T19:07:20Z 2 2020-02-15T06:59:42Z +8099 2005-07-28T18:35:12Z 3694 36 2005-07-30T15:44:12Z 2 2020-02-15T06:59:42Z +8100 2005-07-28T18:43:11Z 2859 11 2005-08-02T15:56:11Z 2 2020-02-15T06:59:42Z +8101 2005-07-28T18:47:23Z 731 6 2005-07-31T16:23:23Z 1 2020-02-15T06:59:42Z +8102 2005-07-28T18:49:43Z 4505 237 2005-08-03T23:04:43Z 2 2020-02-15T06:59:42Z +8103 2005-07-28T18:50:14Z 4472 397 2005-08-04T16:53:14Z 1 2020-02-15T06:59:42Z +8104 2005-07-28T18:59:36Z 1080 533 2005-08-03T22:05:36Z 2 2020-02-15T06:59:42Z +8105 2005-07-28T18:59:46Z 1316 314 2005-07-29T22:51:46Z 1 2020-02-15T06:59:42Z +8106 2005-07-28T19:02:46Z 963 137 2005-07-30T20:48:46Z 2 2020-02-15T06:59:42Z +8107 2005-07-28T19:03:16Z 1318 518 2005-08-05T17:18:16Z 2 2020-02-15T06:59:42Z +8108 2005-07-28T19:07:38Z 1600 295 2005-08-03T15:13:38Z 2 2020-02-15T06:59:42Z +8109 2005-07-28T19:07:44Z 652 407 2005-07-31T14:59:44Z 1 2020-02-15T06:59:42Z +8110 2005-07-28T19:07:45Z 1244 225 2005-08-04T22:12:45Z 1 2020-02-15T06:59:42Z +8111 2005-07-28T19:10:03Z 3226 148 2005-07-29T22:25:03Z 1 2020-02-15T06:59:42Z +8112 2005-07-28T19:11:07Z 2444 528 2005-08-03T18:41:07Z 1 2020-02-15T06:59:42Z +8113 2005-07-28T19:14:00Z 4269 541 2005-08-06T00:05:00Z 2 2020-02-15T06:59:42Z +8114 2005-07-28T19:14:06Z 815 509 2005-08-05T13:16:06Z 1 2020-02-15T06:59:42Z +8115 2005-07-28T19:14:17Z 2080 106 2005-08-03T14:58:17Z 2 2020-02-15T06:59:42Z +8116 2005-07-28T19:20:07Z 4497 1 2005-07-29T22:54:07Z 1 2020-02-15T06:59:42Z +8117 2005-07-28T19:20:16Z 1502 300 2005-08-05T23:55:16Z 1 2020-02-15T06:59:42Z +8118 2005-07-28T19:22:22Z 331 566 2005-08-01T22:13:22Z 1 2020-02-15T06:59:42Z +8119 2005-07-28T19:23:15Z 1542 398 2005-08-04T15:53:15Z 2 2020-02-15T06:59:42Z +8120 2005-07-28T19:24:24Z 3993 235 2005-07-31T14:31:24Z 2 2020-02-15T06:59:42Z +8121 2005-07-28T19:25:45Z 2229 363 2005-08-02T13:30:45Z 2 2020-02-15T06:59:42Z +8122 2005-07-28T19:27:37Z 2141 18 2005-07-29T19:48:37Z 2 2020-02-15T06:59:42Z +8123 2005-07-28T19:28:23Z 2256 138 2005-08-04T19:41:23Z 1 2020-02-15T06:59:42Z +8124 2005-07-28T19:28:58Z 1187 357 2005-07-31T00:45:58Z 1 2020-02-15T06:59:42Z +8125 2005-07-28T19:31:48Z 4330 96 2005-07-30T01:09:48Z 1 2020-02-15T06:59:42Z +8126 2005-07-28T19:32:41Z 719 537 2005-08-05T00:33:41Z 2 2020-02-15T06:59:42Z +8127 2005-07-28T19:45:19Z 4265 20 2005-07-31T22:07:19Z 2 2020-02-15T06:59:42Z +8128 2005-07-28T19:46:06Z 2872 71 2005-08-06T16:10:06Z 2 2020-02-15T06:59:42Z +8129 2005-07-28T19:47:02Z 2546 345 2005-07-31T21:33:02Z 2 2020-02-15T06:59:42Z +8130 2005-07-28T19:48:15Z 4055 499 2005-08-05T14:18:15Z 2 2020-02-15T06:59:42Z +8131 2005-07-28T19:55:21Z 437 281 2005-08-02T21:52:21Z 2 2020-02-15T06:59:42Z +8132 2005-07-28T19:57:31Z 1303 562 2005-08-02T22:16:31Z 2 2020-02-15T06:59:42Z +8133 2005-07-28T20:01:06Z 849 461 2005-08-01T20:01:06Z 1 2020-02-15T06:59:42Z +8134 2005-07-28T20:01:23Z 1695 41 2005-08-03T01:00:23Z 2 2020-02-15T06:59:42Z +8135 2005-07-28T20:03:25Z 1339 164 2005-08-03T01:28:25Z 2 2020-02-15T06:59:42Z +8136 2005-07-28T20:05:48Z 3434 429 2005-08-01T20:31:48Z 2 2020-02-15T06:59:42Z +8137 2005-07-28T20:07:18Z 3188 312 2005-08-03T17:41:18Z 1 2020-02-15T06:59:42Z +8138 2005-07-28T20:12:17Z 1258 371 2005-08-01T15:21:17Z 2 2020-02-15T06:59:42Z +8139 2005-07-28T20:16:30Z 3651 177 2005-08-03T18:00:30Z 2 2020-02-15T06:59:42Z +8140 2005-07-28T20:17:50Z 4270 119 2005-07-30T18:07:50Z 1 2020-02-15T06:59:42Z +8141 2005-07-28T20:21:19Z 361 523 2005-07-30T19:16:19Z 2 2020-02-15T06:59:42Z +8142 2005-07-28T20:21:54Z 1075 322 2005-07-31T18:39:54Z 2 2020-02-15T06:59:42Z +8143 2005-07-28T20:23:11Z 3629 429 2005-08-01T18:17:11Z 1 2020-02-15T06:59:42Z +8144 2005-07-28T20:30:55Z 3556 320 2005-07-31T18:10:55Z 2 2020-02-15T06:59:42Z +8145 2005-07-28T20:34:41Z 937 198 2005-08-05T15:28:41Z 2 2020-02-15T06:59:42Z +8146 2005-07-28T20:37:36Z 2430 476 2005-07-31T16:03:36Z 2 2020-02-15T06:59:42Z +8147 2005-07-28T20:37:56Z 628 228 2005-07-30T18:26:56Z 1 2020-02-15T06:59:42Z +8148 2005-07-28T20:39:47Z 537 347 2005-08-02T16:29:47Z 1 2020-02-15T06:59:42Z +8149 2005-07-28T20:48:12Z 1790 591 2005-08-01T20:07:12Z 2 2020-02-15T06:59:42Z +8150 2005-07-28T20:50:41Z 3489 497 2005-08-02T00:43:41Z 1 2020-02-15T06:59:42Z +8151 2005-07-28T20:50:52Z 4370 495 2005-07-31T14:50:52Z 1 2020-02-15T06:59:42Z +8152 2005-07-28T20:53:05Z 2557 46 2005-08-06T20:03:05Z 2 2020-02-15T06:59:42Z +8153 2005-07-28T20:55:49Z 2173 347 2005-08-01T15:56:49Z 2 2020-02-15T06:59:42Z +8154 2005-07-28T20:56:18Z 1180 285 2005-08-01T21:56:18Z 2 2020-02-15T06:59:42Z +8155 2005-07-28T20:57:06Z 3023 428 2005-08-02T18:40:06Z 2 2020-02-15T06:59:42Z +8156 2005-07-28T20:59:04Z 1977 257 2005-08-01T01:52:04Z 1 2020-02-15T06:59:42Z +8157 2005-07-28T21:06:45Z 915 566 2005-08-04T16:06:45Z 1 2020-02-15T06:59:42Z +8158 2005-07-28T21:08:46Z 4327 458 2005-08-01T21:50:46Z 2 2020-02-15T06:59:42Z +8159 2005-07-28T21:09:28Z 1118 47 2005-08-04T15:34:28Z 1 2020-02-15T06:59:42Z +8160 2005-07-28T21:10:30Z 2446 138 2005-08-05T16:52:30Z 2 2020-02-15T06:59:42Z +8161 2005-07-28T21:11:00Z 848 555 2005-08-03T23:32:00Z 1 2020-02-15T06:59:42Z +8162 2005-07-28T21:11:46Z 4393 107 2005-08-04T18:26:46Z 1 2020-02-15T06:59:42Z +8163 2005-07-28T21:11:48Z 1919 157 2005-07-31T18:30:48Z 1 2020-02-15T06:59:42Z +8164 2005-07-28T21:17:19Z 1674 461 2005-07-30T21:12:19Z 2 2020-02-15T06:59:42Z +8165 2005-07-28T21:23:06Z 3460 197 2005-08-01T21:32:06Z 1 2020-02-15T06:59:42Z +8166 2005-07-28T21:23:33Z 3906 42 2005-08-03T21:07:33Z 2 2020-02-15T06:59:42Z +8167 2005-07-28T21:25:45Z 3181 311 2005-08-04T18:04:45Z 1 2020-02-15T06:59:42Z +8168 2005-07-28T21:28:32Z 1120 365 2005-07-30T02:10:32Z 1 2020-02-15T06:59:42Z +8169 2005-07-28T21:29:46Z 4086 366 2005-08-06T22:29:46Z 1 2020-02-15T06:59:42Z +8170 2005-07-28T21:32:29Z 2495 40 2005-08-03T22:02:29Z 1 2020-02-15T06:59:42Z +8171 2005-07-28T21:32:57Z 3380 296 2005-07-30T21:19:57Z 1 2020-02-15T06:59:42Z +8172 2005-07-28T21:34:36Z 1237 329 2005-08-06T23:53:36Z 1 2020-02-15T06:59:42Z +8173 2005-07-28T21:35:44Z 4377 332 2005-08-06T19:15:44Z 2 2020-02-15T06:59:42Z +8174 2005-07-28T21:36:52Z 465 359 2005-08-04T00:32:52Z 1 2020-02-15T06:59:42Z +8175 2005-07-28T21:38:16Z 641 429 2005-08-07T01:34:16Z 2 2020-02-15T06:59:42Z +8176 2005-07-28T21:42:08Z 3527 347 2005-08-03T22:59:08Z 2 2020-02-15T06:59:42Z +8177 2005-07-28T21:43:54Z 3696 122 2005-08-02T22:38:54Z 2 2020-02-15T06:59:42Z +8178 2005-07-28T21:54:31Z 2825 503 2005-08-02T23:56:31Z 2 2020-02-15T06:59:42Z +8179 2005-07-28T22:05:13Z 2902 578 2005-07-30T21:57:13Z 2 2020-02-15T06:59:42Z +8180 2005-07-28T22:05:24Z 3236 281 2005-08-01T19:09:24Z 1 2020-02-15T06:59:42Z +8181 2005-07-28T22:18:38Z 357 522 2005-08-06T02:43:38Z 2 2020-02-15T06:59:42Z +8182 2005-07-28T22:19:12Z 4120 427 2005-08-01T22:40:12Z 2 2020-02-15T06:59:42Z +8183 2005-07-28T22:21:07Z 1545 119 2005-08-04T19:20:07Z 2 2020-02-15T06:59:42Z +8184 2005-07-28T22:22:35Z 1249 160 2005-07-31T19:30:35Z 1 2020-02-15T06:59:42Z +8185 2005-07-28T22:23:49Z 2452 568 2005-07-31T00:07:49Z 1 2020-02-15T06:59:42Z +8186 2005-07-28T22:30:27Z 4255 102 2005-07-31T21:08:27Z 1 2020-02-15T06:59:42Z +8187 2005-07-28T22:33:53Z 945 87 2005-08-03T03:54:53Z 1 2020-02-15T06:59:42Z +8188 2005-07-28T22:34:12Z 3826 10 2005-08-01T02:32:12Z 2 2020-02-15T06:59:42Z +8189 2005-07-28T22:36:26Z 3515 361 2005-08-04T00:12:26Z 2 2020-02-15T06:59:42Z +8190 2005-07-28T22:47:06Z 2290 267 2005-08-04T21:51:06Z 1 2020-02-15T06:59:42Z +8191 2005-07-28T22:47:14Z 1777 508 2005-07-31T23:13:14Z 2 2020-02-15T06:59:42Z +8192 2005-07-28T22:49:11Z 255 552 2005-07-30T04:13:11Z 1 2020-02-15T06:59:42Z +8193 2005-07-28T22:50:50Z 2402 15 2005-08-01T04:14:50Z 2 2020-02-15T06:59:42Z +8194 2005-07-28T22:51:44Z 1148 424 2005-07-29T17:13:44Z 1 2020-02-15T06:59:42Z +8195 2005-07-28T22:52:58Z 3989 590 2005-08-04T02:12:58Z 1 2020-02-15T06:59:42Z +8196 2005-07-28T22:56:11Z 3435 21 2005-08-06T04:53:11Z 1 2020-02-15T06:59:42Z +8197 2005-07-28T23:04:10Z 4126 407 2005-08-05T00:06:10Z 2 2020-02-15T06:59:42Z +8198 2005-07-28T23:08:05Z 1767 356 2005-08-06T00:43:05Z 2 2020-02-15T06:59:42Z +8199 2005-07-28T23:10:25Z 404 471 2005-08-04T23:30:25Z 1 2020-02-15T06:59:42Z +8200 2005-07-28T23:10:46Z 353 185 2005-07-29T18:35:46Z 1 2020-02-15T06:59:42Z +8201 2005-07-28T23:10:48Z 220 567 2005-08-01T00:50:48Z 2 2020-02-15T06:59:42Z +8202 2005-07-28T23:11:45Z 3802 75 2005-08-03T21:57:45Z 2 2020-02-15T06:59:42Z +8203 2005-07-28T23:14:56Z 3878 100 2005-07-31T04:19:56Z 2 2020-02-15T06:59:42Z +8204 2005-07-28T23:18:29Z 2472 398 2005-08-02T04:49:29Z 1 2020-02-15T06:59:42Z +8205 2005-07-28T23:18:48Z 2944 434 2005-07-30T00:37:48Z 2 2020-02-15T06:59:42Z +8206 2005-07-28T23:20:31Z 2979 422 2005-08-04T21:36:31Z 1 2020-02-15T06:59:42Z +8207 2005-07-28T23:26:31Z 1195 475 2005-08-06T03:26:31Z 1 2020-02-15T06:59:42Z +8208 2005-07-28T23:26:35Z 1362 530 2005-08-01T23:00:35Z 2 2020-02-15T06:59:42Z +8209 2005-07-28T23:29:28Z 2484 127 2005-08-07T04:22:28Z 2 2020-02-15T06:59:42Z +8210 2005-07-28T23:31:05Z 3424 300 2005-08-06T17:36:05Z 1 2020-02-15T06:59:42Z +8211 2005-07-28T23:34:22Z 1859 193 2005-08-04T21:18:22Z 1 2020-02-15T06:59:42Z +8212 2005-07-28T23:37:23Z 1305 159 2005-08-04T04:33:23Z 2 2020-02-15T06:59:42Z +8213 2005-07-28T23:37:33Z 3816 17 2005-07-31T00:32:33Z 2 2020-02-15T06:59:42Z +8214 2005-07-28T23:37:57Z 352 509 2005-08-07T00:29:57Z 2 2020-02-15T06:59:42Z +8215 2005-07-28T23:43:56Z 2921 437 2005-08-03T19:30:56Z 2 2020-02-15T06:59:42Z +8216 2005-07-28T23:43:59Z 2211 254 2005-08-06T05:05:59Z 1 2020-02-15T06:59:42Z +8217 2005-07-28T23:44:13Z 3747 206 2005-08-03T21:27:13Z 2 2020-02-15T06:59:42Z +8218 2005-07-28T23:45:41Z 2769 578 2005-08-02T00:14:41Z 1 2020-02-15T06:59:42Z +8219 2005-07-28T23:46:31Z 3609 227 2005-08-03T00:11:31Z 2 2020-02-15T06:59:42Z +8220 2005-07-28T23:46:41Z 1061 360 2005-07-31T22:14:41Z 2 2020-02-15T06:59:42Z +8221 2005-07-28T23:47:19Z 3138 496 2005-08-02T20:42:19Z 1 2020-02-15T06:59:42Z +8222 2005-07-28T23:51:53Z 2999 278 2005-08-05T22:48:53Z 1 2020-02-15T06:59:42Z +8223 2005-07-28T23:56:01Z 4508 282 2005-08-03T22:27:01Z 1 2020-02-15T06:59:42Z +8224 2005-07-28T23:59:02Z 1995 467 2005-08-02T04:54:02Z 1 2020-02-15T06:59:42Z +8225 2005-07-28T23:59:29Z 3631 41 2005-07-30T03:27:29Z 2 2020-02-15T06:59:42Z +8226 2005-07-29T00:01:04Z 3541 368 2005-08-01T19:08:04Z 2 2020-02-15T06:59:42Z +8227 2005-07-29T00:02:22Z 269 167 2005-07-31T04:05:22Z 1 2020-02-15T06:59:42Z +8228 2005-07-29T00:08:58Z 1955 72 2005-08-03T00:12:58Z 2 2020-02-15T06:59:42Z +8229 2005-07-29T00:09:08Z 4272 498 2005-07-31T19:29:08Z 2 2020-02-15T06:59:42Z +8230 2005-07-29T00:12:59Z 1937 2 2005-08-06T19:52:59Z 2 2020-02-15T06:59:42Z +8231 2005-07-29T00:14:37Z 1083 331 2005-07-31T19:12:37Z 1 2020-02-15T06:59:42Z +8232 2005-07-29T00:14:37Z 3255 526 2005-08-06T00:57:37Z 1 2020-02-15T06:59:42Z +8233 2005-07-29T00:16:23Z 1640 93 2005-08-03T05:17:23Z 2 2020-02-15T06:59:42Z +8234 2005-07-29T00:19:20Z 644 227 2005-08-03T19:16:20Z 2 2020-02-15T06:59:42Z +8235 2005-07-29T00:22:56Z 1581 320 2005-08-03T04:03:56Z 2 2020-02-15T06:59:42Z +8236 2005-07-29T00:27:04Z 1901 369 2005-07-31T05:02:04Z 2 2020-02-15T06:59:42Z +8237 2005-07-29T00:29:56Z 608 441 2005-08-06T03:10:56Z 1 2020-02-15T06:59:42Z +8238 2005-07-29T00:30:06Z 2941 320 2005-08-02T22:52:06Z 2 2020-02-15T06:59:42Z +8239 2005-07-29T00:31:39Z 3951 549 2005-07-29T19:33:39Z 1 2020-02-15T06:59:42Z +8240 2005-07-29T00:33:32Z 1975 509 2005-08-05T21:25:32Z 2 2020-02-15T06:59:42Z +8241 2005-07-29T00:33:36Z 4297 26 2005-08-03T01:31:36Z 1 2020-02-15T06:59:42Z +8242 2005-07-29T00:34:27Z 509 99 2005-08-05T23:13:27Z 2 2020-02-15T06:59:42Z +8243 2005-07-29T00:35:33Z 1873 481 2005-08-04T06:02:33Z 2 2020-02-15T06:59:42Z +8244 2005-07-29T00:35:34Z 1552 175 2005-08-05T04:18:34Z 2 2020-02-15T06:59:42Z +8245 2005-07-29T00:37:09Z 3330 555 2005-08-05T05:48:09Z 2 2020-02-15T06:59:42Z +8246 2005-07-29T00:38:41Z 1724 146 2005-08-05T06:28:41Z 2 2020-02-15T06:59:42Z +8247 2005-07-29T00:41:38Z 2607 539 2005-08-06T20:29:38Z 2 2020-02-15T06:59:42Z +8248 2005-07-29T00:41:56Z 2017 272 2005-08-05T18:53:56Z 2 2020-02-15T06:59:42Z +8249 2005-07-29T00:48:44Z 3331 57 2005-08-07T04:25:44Z 2 2020-02-15T06:59:42Z +8250 2005-07-29T00:49:15Z 4519 533 2005-08-04T02:53:15Z 1 2020-02-15T06:59:42Z +8251 2005-07-29T00:50:14Z 2317 408 2005-08-03T23:52:14Z 2 2020-02-15T06:59:42Z +8252 2005-07-29T00:54:17Z 3312 257 2005-07-31T20:34:17Z 1 2020-02-15T06:59:42Z +8253 2005-07-29T00:57:06Z 2388 76 2005-08-07T01:46:06Z 1 2020-02-15T06:59:42Z +8254 2005-07-29T00:59:31Z 1787 392 2005-08-03T23:43:31Z 2 2020-02-15T06:59:42Z +8255 2005-07-29T01:02:30Z 3715 224 2005-08-01T22:39:30Z 1 2020-02-15T06:59:42Z +8256 2005-07-29T01:02:42Z 1483 537 2005-07-31T22:29:42Z 2 2020-02-15T06:59:42Z +8257 2005-07-29T01:03:20Z 3024 566 2005-08-04T21:54:20Z 1 2020-02-15T06:59:42Z +8258 2005-07-29T01:03:42Z 1379 370 2005-08-04T22:08:42Z 2 2020-02-15T06:59:42Z +8259 2005-07-29T01:05:16Z 343 274 2005-08-01T23:27:16Z 2 2020-02-15T06:59:42Z +8260 2005-07-29T01:11:00Z 4249 366 2005-08-06T00:36:00Z 1 2020-02-15T06:59:42Z +8261 2005-07-29T01:11:05Z 1915 50 2005-08-04T03:13:05Z 2 2020-02-15T06:59:42Z +8262 2005-07-29T01:11:18Z 1341 563 2005-08-02T05:17:18Z 2 2020-02-15T06:59:42Z +8263 2005-07-29T01:11:23Z 28 5 2005-07-31T01:53:23Z 2 2020-02-15T06:59:42Z +8264 2005-07-29T01:18:50Z 2987 175 2005-08-03T05:31:50Z 2 2020-02-15T06:59:42Z +8265 2005-07-29T01:20:15Z 2389 409 2005-08-06T19:32:15Z 2 2020-02-15T06:59:42Z +8266 2005-07-29T01:20:16Z 1972 196 2005-07-30T04:31:16Z 1 2020-02-15T06:59:42Z +8267 2005-07-29T01:21:02Z 4107 131 2005-08-04T19:34:02Z 2 2020-02-15T06:59:42Z +8268 2005-07-29T01:23:23Z 4239 421 2005-08-05T01:36:23Z 1 2020-02-15T06:59:42Z +8269 2005-07-29T01:26:54Z 2778 376 2005-08-04T22:42:54Z 1 2020-02-15T06:59:42Z +8270 2005-07-29T01:27:22Z 3565 282 2005-07-29T20:55:22Z 1 2020-02-15T06:59:42Z +8271 2005-07-29T01:27:44Z 83 481 2005-08-07T05:01:44Z 2 2020-02-15T06:59:42Z +8272 2005-07-29T01:29:51Z 70 346 2005-08-03T21:56:51Z 2 2020-02-15T06:59:42Z +8273 2005-07-29T01:33:16Z 4244 532 2005-08-06T04:26:16Z 2 2020-02-15T06:59:42Z +8274 2005-07-29T01:34:32Z 2634 340 2005-08-01T20:15:32Z 2 2020-02-15T06:59:42Z +8275 2005-07-29T01:35:47Z 4432 336 2005-07-30T02:16:47Z 1 2020-02-15T06:59:42Z +8276 2005-07-29T01:38:43Z 2451 466 2005-08-03T23:00:43Z 1 2020-02-15T06:59:42Z +8277 2005-07-29T01:38:53Z 1296 13 2005-08-04T07:09:53Z 2 2020-02-15T06:59:42Z +8278 2005-07-29T01:42:55Z 768 265 2005-08-05T01:55:55Z 2 2020-02-15T06:59:42Z +8279 2005-07-29T01:43:37Z 3838 176 2005-08-03T02:36:37Z 1 2020-02-15T06:59:42Z +8280 2005-07-29T01:45:51Z 1208 195 2005-08-05T22:51:51Z 2 2020-02-15T06:59:42Z +8281 2005-07-29T01:46:00Z 899 441 2005-08-04T23:09:00Z 1 2020-02-15T06:59:42Z +8282 2005-07-29T01:49:04Z 980 462 2005-08-05T01:51:04Z 2 2020-02-15T06:59:42Z +8283 2005-07-29T01:52:22Z 2002 300 2005-08-05T03:22:22Z 2 2020-02-15T06:59:42Z +8284 2005-07-29T01:56:40Z 4371 446 2005-08-07T07:15:40Z 2 2020-02-15T06:59:42Z +8285 2005-07-29T02:00:18Z 678 56 2005-08-03T20:43:18Z 2 2020-02-15T06:59:42Z +8286 2005-07-29T02:02:46Z 4092 87 2005-08-06T06:00:46Z 1 2020-02-15T06:59:42Z +8287 2005-07-29T02:03:58Z 812 178 2005-08-07T02:11:58Z 1 2020-02-15T06:59:42Z +8288 2005-07-29T02:04:22Z 1822 55 2005-08-05T04:21:22Z 2 2020-02-15T06:59:42Z +8289 2005-07-29T02:23:24Z 4579 459 2005-08-06T03:23:24Z 2 2020-02-15T06:59:42Z +8290 2005-07-29T02:24:08Z 3823 462 2005-08-03T01:02:08Z 2 2020-02-15T06:59:42Z +8291 2005-07-29T02:28:25Z 2817 455 2005-08-03T20:57:25Z 2 2020-02-15T06:59:42Z +8292 2005-07-29T02:29:36Z 4003 192 2005-08-07T08:06:36Z 1 2020-02-15T06:59:42Z +8293 2005-07-29T02:30:50Z 831 71 2005-08-04T03:09:50Z 2 2020-02-15T06:59:42Z +8294 2005-07-29T02:32:41Z 1811 520 2005-08-02T06:28:41Z 1 2020-02-15T06:59:42Z +8295 2005-07-29T02:42:14Z 2065 406 2005-07-30T22:22:14Z 1 2020-02-15T06:59:42Z +8296 2005-07-29T02:43:25Z 2543 88 2005-08-01T00:23:25Z 1 2020-02-15T06:59:42Z +8297 2005-07-29T02:45:46Z 3774 349 2005-07-31T20:49:46Z 1 2020-02-15T06:59:42Z +8298 2005-07-29T02:47:36Z 952 493 2005-08-05T07:58:36Z 2 2020-02-15T06:59:42Z +8299 2005-07-29T02:56:00Z 1797 173 2005-07-30T22:35:00Z 2 2020-02-15T06:59:42Z +8300 2005-07-29T02:57:59Z 4364 222 2005-08-05T01:12:59Z 2 2020-02-15T06:59:42Z +8301 2005-07-29T03:00:08Z 562 101 2005-08-01T04:26:08Z 2 2020-02-15T06:59:42Z +8302 2005-07-29T03:01:24Z 1314 103 2005-07-30T01:08:24Z 2 2020-02-15T06:59:42Z +8303 2005-07-29T03:05:56Z 1620 574 2005-08-04T06:13:56Z 1 2020-02-15T06:59:42Z +8304 2005-07-29T03:08:30Z 4431 119 2005-08-02T03:04:30Z 2 2020-02-15T06:59:42Z +8305 2005-07-29T03:08:47Z 3916 566 2005-08-06T07:49:47Z 2 2020-02-15T06:59:42Z +8306 2005-07-29T03:12:26Z 1708 232 2005-08-01T23:26:26Z 1 2020-02-15T06:59:42Z +8307 2005-07-29T03:18:34Z 3197 39 2005-08-06T05:51:34Z 2 2020-02-15T06:59:42Z +8308 2005-07-29T03:22:15Z 601 582 2005-08-04T21:38:15Z 2 2020-02-15T06:59:42Z +8309 2005-07-29T03:22:20Z 2250 446 2005-08-01T06:30:20Z 1 2020-02-15T06:59:42Z +8310 2005-07-29T03:25:56Z 2637 238 2005-08-06T23:18:56Z 2 2020-02-15T06:59:42Z +8311 2005-07-29T03:26:07Z 3623 63 2005-08-02T01:46:07Z 1 2020-02-15T06:59:42Z +8312 2005-07-29T03:32:38Z 3996 143 2005-07-31T02:12:38Z 1 2020-02-15T06:59:42Z +8313 2005-07-29T03:34:21Z 2736 91 2005-08-02T01:32:21Z 1 2020-02-15T06:59:42Z +8314 2005-07-29T03:35:04Z 2182 118 2005-08-06T08:43:04Z 2 2020-02-15T06:59:42Z +8315 2005-07-29T03:37:07Z 1420 135 2005-07-29T23:22:07Z 2 2020-02-15T06:59:42Z +8316 2005-07-29T03:38:49Z 4118 549 2005-08-03T07:41:49Z 1 2020-02-15T06:59:42Z +8317 2005-07-29T03:39:07Z 3898 415 2005-08-03T00:14:07Z 1 2020-02-15T06:59:42Z +8318 2005-07-29T03:44:30Z 4524 167 2005-07-30T05:03:30Z 2 2020-02-15T06:59:42Z +8319 2005-07-29T03:44:52Z 747 280 2005-08-01T00:35:52Z 2 2020-02-15T06:59:42Z +8320 2005-07-29T03:49:58Z 1285 513 2005-08-03T01:00:58Z 1 2020-02-15T06:59:42Z +8321 2005-07-29T03:50:54Z 1875 354 2005-08-01T02:08:54Z 1 2020-02-15T06:59:42Z +8322 2005-07-29T03:52:49Z 301 541 2005-08-02T22:53:49Z 1 2020-02-15T06:59:42Z +8323 2005-07-29T03:52:59Z 2766 87 2005-08-06T01:49:59Z 2 2020-02-15T06:59:42Z +8324 2005-07-29T03:56:05Z 1467 98 2005-08-02T01:41:05Z 1 2020-02-15T06:59:42Z +8325 2005-07-29T03:57:27Z 932 362 2005-08-06T22:30:27Z 1 2020-02-15T06:59:42Z +8326 2005-07-29T03:58:49Z 108 1 2005-08-01T05:16:49Z 2 2020-02-15T06:59:42Z +8327 2005-07-29T04:00:52Z 2928 317 2005-07-31T08:27:52Z 1 2020-02-15T06:59:42Z +8328 2005-07-29T04:06:24Z 4454 314 2005-08-03T22:24:24Z 1 2020-02-15T06:59:42Z +8329 2005-07-29T04:06:33Z 3468 108 2005-08-06T01:46:33Z 1 2020-02-15T06:59:42Z +8330 2005-07-29T04:09:07Z 2294 412 2005-08-05T05:00:07Z 2 2020-02-15T06:59:42Z +8331 2005-07-29T04:13:29Z 18 148 2005-08-04T07:09:29Z 1 2020-02-15T06:59:42Z +8332 2005-07-29T04:16:00Z 1142 217 2005-08-03T03:34:00Z 1 2020-02-15T06:59:42Z +8333 2005-07-29T04:16:40Z 823 494 2005-08-02T10:10:40Z 2 2020-02-15T06:59:42Z +8334 2005-07-29T04:18:25Z 982 154 2005-08-07T07:18:25Z 2 2020-02-15T06:59:42Z +8335 2005-07-29T04:18:25Z 1719 143 2005-07-31T08:12:25Z 2 2020-02-15T06:59:42Z +8336 2005-07-29T04:20:42Z 2120 210 2005-08-05T10:17:42Z 1 2020-02-15T06:59:42Z +8337 2005-07-29T04:31:55Z 752 157 2005-08-02T02:38:55Z 2 2020-02-15T06:59:42Z +8338 2005-07-29T04:40:39Z 2257 389 2005-08-07T04:40:39Z 2 2020-02-15T06:59:42Z +8339 2005-07-29T04:41:13Z 1870 129 2005-07-30T09:01:13Z 2 2020-02-15T06:59:42Z +8340 2005-07-29T04:41:44Z 1553 386 2005-08-07T10:33:44Z 1 2020-02-15T06:59:42Z +8341 2005-07-29T04:42:01Z 4208 309 2005-08-04T00:58:01Z 1 2020-02-15T06:59:42Z +8342 2005-07-29T04:45:05Z 3301 572 2005-08-01T07:20:05Z 1 2020-02-15T06:59:42Z +8343 2005-07-29T04:45:16Z 4267 439 2005-08-02T03:37:16Z 1 2020-02-15T06:59:42Z +8344 2005-07-29T04:45:25Z 221 257 2005-08-06T01:53:25Z 1 2020-02-15T06:59:42Z +8345 2005-07-29T04:47:37Z 1034 129 2005-08-02T07:25:37Z 1 2020-02-15T06:59:42Z +8346 2005-07-29T04:48:22Z 2475 385 2005-08-01T04:22:22Z 1 2020-02-15T06:59:42Z +8347 2005-07-29T04:49:25Z 4407 157 2005-07-31T00:57:25Z 2 2020-02-15T06:59:42Z +8348 2005-07-29T04:49:26Z 4533 174 2005-08-05T03:26:26Z 2 2020-02-15T06:59:42Z +8349 2005-07-29T04:50:22Z 534 416 2005-08-05T08:50:22Z 1 2020-02-15T06:59:42Z +8350 2005-07-29T04:50:39Z 3726 513 2005-07-31T05:36:39Z 2 2020-02-15T06:59:42Z +8351 2005-07-29T04:50:53Z 2963 202 2005-07-30T07:28:53Z 2 2020-02-15T06:59:42Z +8352 2005-07-29T04:52:01Z 2710 168 2005-08-06T07:39:01Z 2 2020-02-15T06:59:42Z +8353 2005-07-29T04:52:10Z 26 585 2005-07-30T04:01:10Z 1 2020-02-15T06:59:42Z +8354 2005-07-29T04:56:26Z 4476 579 2005-08-01T08:04:26Z 2 2020-02-15T06:59:42Z +8355 2005-07-29T04:57:43Z 4569 270 2005-08-03T06:25:43Z 1 2020-02-15T06:59:42Z +8356 2005-07-29T04:58:56Z 2951 483 2005-08-06T03:07:56Z 1 2020-02-15T06:59:42Z +8357 2005-07-29T04:59:44Z 892 76 2005-08-01T04:26:44Z 1 2020-02-15T06:59:42Z +8358 2005-07-29T05:00:58Z 1449 372 2005-08-01T02:49:58Z 2 2020-02-15T06:59:42Z +8359 2005-07-29T05:02:12Z 140 531 2005-08-04T08:52:12Z 1 2020-02-15T06:59:42Z +8360 2005-07-29T05:08:00Z 4135 62 2005-08-02T00:40:00Z 1 2020-02-15T06:59:42Z +8361 2005-07-29T05:08:57Z 3404 360 2005-08-03T02:49:57Z 1 2020-02-15T06:59:42Z +8362 2005-07-29T05:09:11Z 2287 223 2005-08-04T00:08:11Z 2 2020-02-15T06:59:42Z +8363 2005-07-29T05:10:08Z 1607 302 2005-08-06T00:11:08Z 1 2020-02-15T06:59:42Z +8364 2005-07-29T05:10:31Z 1361 362 2005-07-30T04:02:31Z 2 2020-02-15T06:59:42Z +8365 2005-07-29T05:11:00Z 53 280 2005-07-30T05:30:00Z 2 2020-02-15T06:59:42Z +8366 2005-07-29T05:11:14Z 479 39 2005-08-05T01:48:14Z 1 2020-02-15T06:59:42Z +8367 2005-07-29T05:11:19Z 4551 383 2005-08-02T00:35:19Z 1 2020-02-15T06:59:42Z +8368 2005-07-29T05:15:41Z 1410 200 2005-08-07T01:35:41Z 1 2020-02-15T06:59:42Z +8369 2005-07-29T05:15:42Z 1456 507 2005-08-01T03:36:42Z 2 2020-02-15T06:59:42Z +8370 2005-07-29T05:16:21Z 1206 121 2005-08-06T23:16:21Z 1 2020-02-15T06:59:42Z +8371 2005-07-29T05:16:35Z 2466 396 2005-07-31T01:49:35Z 1 2020-02-15T06:59:42Z +8372 2005-07-29T05:18:08Z 754 523 2005-08-06T09:39:08Z 1 2020-02-15T06:59:42Z +8373 2005-07-29T05:19:53Z 2070 457 2005-08-04T04:39:53Z 1 2020-02-15T06:59:42Z +8374 2005-07-29T05:24:02Z 1084 589 2005-08-05T03:55:02Z 1 2020-02-15T06:59:42Z +8375 2005-07-29T05:25:30Z 3634 125 2005-08-04T01:43:30Z 2 2020-02-15T06:59:42Z +8376 2005-07-29T05:25:32Z 3588 43 2005-08-01T07:42:32Z 2 2020-02-15T06:59:42Z +8377 2005-07-29T05:27:40Z 270 73 2005-07-30T02:52:40Z 2 2020-02-15T06:59:42Z +8378 2005-07-29T05:28:35Z 3500 347 2005-08-02T05:55:35Z 1 2020-02-15T06:59:42Z +8379 2005-07-29T05:29:40Z 3907 193 2005-08-06T05:56:40Z 2 2020-02-15T06:59:42Z +8380 2005-07-29T05:31:29Z 2279 145 2005-08-02T01:27:29Z 1 2020-02-15T06:59:42Z +8381 2005-07-29T05:31:44Z 865 313 2005-07-31T09:20:44Z 1 2020-02-15T06:59:42Z +8382 2005-07-29T05:33:21Z 317 238 2005-08-03T03:38:21Z 1 2020-02-15T06:59:42Z +8383 2005-07-29T05:36:47Z 3809 495 2005-08-03T05:53:47Z 2 2020-02-15T06:59:42Z +8384 2005-07-29T05:38:43Z 3807 227 2005-08-01T07:31:43Z 2 2020-02-15T06:59:42Z +8385 2005-07-29T05:39:16Z 4108 233 2005-08-03T00:30:16Z 1 2020-02-15T06:59:42Z +8386 2005-07-29T05:45:30Z 388 435 2005-08-05T03:56:30Z 2 2020-02-15T06:59:42Z +8387 2005-07-29T05:47:27Z 910 428 2005-07-31T06:26:27Z 1 2020-02-15T06:59:42Z +8388 2005-07-29T05:48:15Z 770 178 2005-08-05T06:24:15Z 2 2020-02-15T06:59:42Z +8389 2005-07-29T05:50:09Z 1241 133 2005-08-06T05:15:09Z 2 2020-02-15T06:59:42Z +8390 2005-07-29T05:52:26Z 581 32 2005-08-04T08:12:26Z 2 2020-02-15T06:59:42Z +8391 2005-07-29T05:52:50Z 2134 36 2005-08-03T04:45:50Z 2 2020-02-15T06:59:42Z +8392 2005-07-29T06:00:27Z 1323 65 2005-08-02T00:30:27Z 2 2020-02-15T06:59:42Z +8393 2005-07-29T06:02:11Z 3369 504 2005-08-07T03:23:11Z 1 2020-02-15T06:59:42Z +8394 2005-07-29T06:02:14Z 3933 148 2005-08-03T08:15:14Z 1 2020-02-15T06:59:42Z +8395 2005-07-29T06:03:30Z 1471 535 2005-07-31T09:08:30Z 2 2020-02-15T06:59:42Z +8396 2005-07-29T06:07:00Z 3911 516 2005-07-30T05:32:00Z 2 2020-02-15T06:59:42Z +8397 2005-07-29T06:09:35Z 3542 518 2005-08-01T02:08:35Z 1 2020-02-15T06:59:42Z +8398 2005-07-29T06:12:40Z 348 220 2005-08-02T05:01:40Z 2 2020-02-15T06:59:42Z +8399 2005-07-29T06:20:18Z 233 286 2005-08-04T01:26:18Z 1 2020-02-15T06:59:42Z +8400 2005-07-29T06:23:56Z 3680 573 2005-07-31T02:41:56Z 2 2020-02-15T06:59:42Z +8401 2005-07-29T06:25:08Z 3121 232 2005-08-01T06:49:08Z 1 2020-02-15T06:59:42Z +8402 2005-07-29T06:25:45Z 186 47 2005-08-07T10:48:45Z 1 2020-02-15T06:59:42Z +8403 2005-07-29T06:26:39Z 1360 163 2005-08-02T05:37:39Z 1 2020-02-15T06:59:42Z +8404 2005-07-29T06:27:01Z 2086 65 2005-08-07T04:33:01Z 1 2020-02-15T06:59:42Z +8405 2005-07-29T06:28:19Z 2164 76 2005-08-07T08:14:19Z 2 2020-02-15T06:59:42Z +8406 2005-07-29T06:34:45Z 2047 274 2005-08-06T02:28:45Z 1 2020-02-15T06:59:42Z +8407 2005-07-29T06:37:02Z 2985 336 2005-08-04T03:13:02Z 1 2020-02-15T06:59:42Z +8408 2005-07-29T06:40:40Z 1841 90 2005-07-30T10:02:40Z 2 2020-02-15T06:59:42Z +8409 2005-07-29T06:41:22Z 4314 303 2005-07-31T11:21:22Z 1 2020-02-15T06:59:42Z +8410 2005-07-29T06:41:36Z 3448 277 2005-08-02T08:38:36Z 1 2020-02-15T06:59:42Z +8411 2005-07-29T06:44:23Z 3085 412 2005-08-07T03:56:23Z 1 2020-02-15T06:59:42Z +8412 2005-07-29T06:44:50Z 743 312 2005-08-06T05:04:50Z 1 2020-02-15T06:59:42Z +8413 2005-07-29T06:47:39Z 2762 104 2005-08-02T09:15:39Z 2 2020-02-15T06:59:42Z +8414 2005-07-29T06:48:35Z 1337 433 2005-08-06T10:54:35Z 2 2020-02-15T06:59:42Z +8415 2005-07-29T06:52:27Z 2903 128 2005-08-02T10:40:27Z 1 2020-02-15T06:59:42Z +8416 2005-07-29T06:52:54Z 1999 315 2005-08-05T09:50:54Z 2 2020-02-15T06:59:42Z +8417 2005-07-29T06:53:36Z 750 227 2005-08-06T09:31:36Z 2 2020-02-15T06:59:42Z +8418 2005-07-29T06:54:21Z 3081 355 2005-08-05T06:50:21Z 2 2020-02-15T06:59:42Z +8419 2005-07-29T06:54:48Z 4574 37 2005-08-06T05:02:48Z 1 2020-02-15T06:59:42Z +8420 2005-07-29T07:00:45Z 4184 376 2005-08-06T02:20:45Z 1 2020-02-15T06:59:42Z +8421 2005-07-29T07:00:47Z 3399 588 2005-08-02T08:03:47Z 2 2020-02-15T06:59:42Z +8422 2005-07-29T07:02:55Z 3104 7 2005-08-03T12:35:55Z 1 2020-02-15T06:59:42Z +8423 2005-07-29T07:02:57Z 187 468 2005-08-06T04:59:57Z 1 2020-02-15T06:59:42Z +8424 2005-07-29T07:06:03Z 366 138 2005-08-06T12:00:03Z 2 2020-02-15T06:59:42Z +8425 2005-07-29T07:06:21Z 3491 486 2005-08-05T07:57:21Z 2 2020-02-15T06:59:42Z +8426 2005-07-29T07:07:48Z 1840 564 2005-08-07T08:56:48Z 2 2020-02-15T06:59:42Z +8427 2005-07-29T07:08:36Z 1624 441 2005-07-30T11:54:36Z 2 2020-02-15T06:59:42Z +8428 2005-07-29T07:10:14Z 2545 398 2005-08-06T02:29:14Z 2 2020-02-15T06:59:42Z +8429 2005-07-29T07:11:49Z 2456 588 2005-07-31T02:45:49Z 1 2020-02-15T06:59:42Z +8430 2005-07-29T07:12:17Z 3377 219 2005-08-03T09:53:17Z 2 2020-02-15T06:59:42Z +8431 2005-07-29T07:12:48Z 1583 193 2005-08-01T10:03:48Z 1 2020-02-15T06:59:42Z +8432 2005-07-29T07:13:33Z 3896 572 2005-07-30T03:14:33Z 1 2020-02-15T06:59:42Z +8433 2005-07-29T07:19:16Z 1957 125 2005-08-05T03:29:16Z 1 2020-02-15T06:59:42Z +8434 2005-07-29T07:20:14Z 40 141 2005-07-30T08:50:14Z 2 2020-02-15T06:59:42Z +8435 2005-07-29T07:20:16Z 4462 520 2005-08-02T09:54:16Z 2 2020-02-15T06:59:42Z +8436 2005-07-29T07:21:20Z 2702 598 2005-07-31T12:56:20Z 2 2020-02-15T06:59:42Z +8437 2005-07-29T07:23:43Z 2118 96 2005-08-04T10:52:43Z 1 2020-02-15T06:59:42Z +8438 2005-07-29T07:25:42Z 720 97 2005-08-04T07:39:42Z 1 2020-02-15T06:59:42Z +8439 2005-07-29T07:28:43Z 182 224 2005-08-04T11:22:43Z 1 2020-02-15T06:59:42Z +8440 2005-07-29T07:31:26Z 489 175 2005-08-04T07:04:26Z 1 2020-02-15T06:59:42Z +8441 2005-07-29T07:33:05Z 1000 526 2005-08-04T04:00:05Z 2 2020-02-15T06:59:42Z +8442 2005-07-29T07:33:07Z 4345 185 2005-08-03T03:09:07Z 2 2020-02-15T06:59:42Z +8443 2005-07-29T07:33:12Z 1059 251 2005-08-02T01:36:12Z 2 2020-02-15T06:59:42Z +8444 2005-07-29T07:36:13Z 3329 213 2005-08-05T04:55:13Z 1 2020-02-15T06:59:42Z +8445 2005-07-29T07:37:48Z 2792 384 2005-08-04T10:43:48Z 1 2020-02-15T06:59:42Z +8446 2005-07-29T07:38:10Z 1593 235 2005-08-06T04:39:10Z 2 2020-02-15T06:59:42Z +8447 2005-07-29T07:38:14Z 930 11 2005-08-05T02:27:14Z 2 2020-02-15T06:59:42Z +8448 2005-07-29T07:41:54Z 4349 393 2005-08-02T13:12:54Z 1 2020-02-15T06:59:42Z +8449 2005-07-29T07:42:25Z 2610 273 2005-07-30T06:07:25Z 2 2020-02-15T06:59:42Z +8450 2005-07-29T07:44:05Z 484 401 2005-08-01T12:23:05Z 1 2020-02-15T06:59:42Z +8451 2005-07-29T07:44:56Z 3309 495 2005-08-06T02:29:56Z 1 2020-02-15T06:59:42Z +8452 2005-07-29T07:45:00Z 4312 16 2005-08-05T09:46:00Z 2 2020-02-15T06:59:42Z +8453 2005-07-29T07:46:29Z 2907 32 2005-07-30T07:07:29Z 1 2020-02-15T06:59:42Z +8454 2005-07-29T07:49:04Z 159 244 2005-08-03T04:43:04Z 2 2020-02-15T06:59:42Z +8455 2005-07-29T07:53:06Z 4043 404 2005-08-05T05:29:06Z 1 2020-02-15T06:59:42Z +8456 2005-07-29T07:58:31Z 671 388 2005-08-05T07:17:31Z 2 2020-02-15T06:59:42Z +8457 2005-07-29T07:59:03Z 3371 239 2005-08-04T08:42:03Z 1 2020-02-15T06:59:42Z +8458 2005-07-29T08:05:09Z 3857 317 2005-08-02T03:42:09Z 1 2020-02-15T06:59:42Z +8459 2005-07-29T08:05:40Z 3441 144 2005-08-04T03:24:40Z 1 2020-02-15T06:59:42Z +8460 2005-07-29T08:08:03Z 2826 329 2005-08-07T06:53:03Z 2 2020-02-15T06:59:42Z +8461 2005-07-29T08:11:31Z 3373 399 2005-08-06T09:23:31Z 1 2020-02-15T06:59:42Z +8462 2005-07-29T08:15:42Z 3633 200 2005-08-04T03:57:42Z 1 2020-02-15T06:59:42Z +8463 2005-07-29T08:17:51Z 466 203 2005-08-03T13:41:51Z 1 2020-02-15T06:59:42Z +8464 2005-07-29T08:18:20Z 2343 28 2005-08-03T04:50:20Z 2 2020-02-15T06:59:42Z +8465 2005-07-29T08:20:49Z 4109 238 2005-07-31T04:02:49Z 2 2020-02-15T06:59:42Z +8466 2005-07-29T08:24:47Z 4010 285 2005-07-31T03:43:47Z 1 2020-02-15T06:59:42Z +8467 2005-07-29T08:25:35Z 263 326 2005-08-07T03:28:35Z 2 2020-02-15T06:59:42Z +8468 2005-07-29T08:26:04Z 1338 282 2005-08-02T07:18:04Z 1 2020-02-15T06:59:42Z +8469 2005-07-29T08:26:27Z 2754 408 2005-08-05T04:26:27Z 2 2020-02-15T06:59:42Z +8470 2005-07-29T08:28:50Z 3717 159 2005-07-30T13:40:50Z 2 2020-02-15T06:59:42Z +8471 2005-07-29T08:32:11Z 1520 533 2005-08-01T13:55:11Z 1 2020-02-15T06:59:42Z +8472 2005-07-29T08:36:22Z 2975 196 2005-08-02T07:55:22Z 1 2020-02-15T06:59:42Z +8473 2005-07-29T08:36:53Z 4141 311 2005-07-31T12:14:53Z 1 2020-02-15T06:59:42Z +8474 2005-07-29T08:36:56Z 4346 323 2005-08-01T03:07:56Z 1 2020-02-15T06:59:42Z +8475 2005-07-29T08:37:41Z 3695 260 2005-08-04T10:03:41Z 2 2020-02-15T06:59:42Z +8476 2005-07-29T08:39:12Z 3741 470 2005-08-06T03:03:12Z 1 2020-02-15T06:59:42Z +8477 2005-07-29T08:40:36Z 3571 354 2005-08-06T08:28:36Z 2 2020-02-15T06:59:42Z +8478 2005-07-29T08:40:36Z 3742 162 2005-08-01T10:23:36Z 1 2020-02-15T06:59:42Z +8479 2005-07-29T08:42:04Z 1990 195 2005-08-01T03:10:04Z 1 2020-02-15T06:59:42Z +8480 2005-07-29T08:44:46Z 3512 467 2005-08-05T13:22:46Z 1 2020-02-15T06:59:42Z +8481 2005-07-29T08:45:57Z 1739 454 2005-08-01T12:50:57Z 2 2020-02-15T06:59:42Z +8482 2005-07-29T08:46:33Z 2686 405 2005-07-31T11:07:33Z 2 2020-02-15T06:59:42Z +8483 2005-07-29T08:50:18Z 2786 186 2005-08-03T06:46:18Z 1 2020-02-15T06:59:42Z +8484 2005-07-29T08:51:59Z 742 260 2005-07-30T09:07:59Z 1 2020-02-15T06:59:42Z +8485 2005-07-29T08:53:09Z 3172 420 2005-07-30T11:25:09Z 1 2020-02-15T06:59:42Z +8486 2005-07-29T08:53:38Z 1759 221 2005-08-01T14:12:38Z 2 2020-02-15T06:59:42Z +8487 2005-07-29T08:53:49Z 1893 82 2005-07-31T09:10:49Z 2 2020-02-15T06:59:42Z +8488 2005-07-29T08:57:38Z 2176 478 2005-08-02T04:16:38Z 1 2020-02-15T06:59:42Z +8489 2005-07-29T08:58:03Z 375 265 2005-08-02T07:50:03Z 2 2020-02-15T06:59:42Z +8490 2005-07-29T08:59:25Z 1943 367 2005-08-05T14:02:25Z 2 2020-02-15T06:59:42Z +8491 2005-07-29T09:02:13Z 1806 242 2005-08-03T04:32:13Z 1 2020-02-15T06:59:42Z +8492 2005-07-29T09:04:17Z 4553 266 2005-08-02T08:48:17Z 2 2020-02-15T06:59:42Z +8493 2005-07-29T09:04:31Z 664 390 2005-08-04T05:17:31Z 2 2020-02-15T06:59:42Z +8494 2005-07-29T09:04:32Z 3524 92 2005-07-31T10:30:32Z 1 2020-02-15T06:59:42Z +8495 2005-07-29T09:05:06Z 344 51 2005-08-06T05:48:06Z 2 2020-02-15T06:59:42Z +8496 2005-07-29T09:05:33Z 765 114 2005-08-02T06:32:33Z 1 2020-02-15T06:59:42Z +8497 2005-07-29T09:07:03Z 1837 593 2005-08-02T09:18:03Z 2 2020-02-15T06:59:42Z +8498 2005-07-29T09:07:38Z 4468 190 2005-08-04T07:01:38Z 1 2020-02-15T06:59:42Z +8499 2005-07-29T09:10:41Z 219 42 2005-08-05T10:01:41Z 1 2020-02-15T06:59:42Z +8500 2005-07-29T09:12:01Z 4516 348 2005-07-31T10:15:01Z 1 2020-02-15T06:59:42Z +8501 2005-07-29T09:12:51Z 1052 309 2005-07-30T11:19:51Z 2 2020-02-15T06:59:42Z +8502 2005-07-29T09:15:41Z 2149 457 2005-07-30T10:41:41Z 1 2020-02-15T06:59:42Z +8503 2005-07-29T09:16:50Z 1164 240 2005-08-04T11:34:50Z 2 2020-02-15T06:59:42Z +8504 2005-07-29T09:20:16Z 2295 561 2005-08-07T04:27:16Z 2 2020-02-15T06:59:42Z +8505 2005-07-29T09:22:52Z 1454 346 2005-08-06T05:23:52Z 1 2020-02-15T06:59:42Z +8506 2005-07-29T09:23:52Z 3714 506 2005-07-31T04:42:52Z 1 2020-02-15T06:59:42Z +8507 2005-07-29T09:29:44Z 3273 524 2005-08-07T05:48:44Z 2 2020-02-15T06:59:42Z +8508 2005-07-29T09:34:38Z 4173 484 2005-08-01T14:52:38Z 2 2020-02-15T06:59:42Z +8509 2005-07-29T09:38:19Z 1332 80 2005-08-04T11:45:19Z 1 2020-02-15T06:59:42Z +8510 2005-07-29T09:41:38Z 7 487 2005-08-05T05:30:38Z 2 2020-02-15T06:59:42Z +8511 2005-07-29T09:42:42Z 3667 598 2005-08-06T14:22:42Z 2 2020-02-15T06:59:42Z +8512 2005-07-29T09:48:03Z 4132 351 2005-07-31T13:40:03Z 1 2020-02-15T06:59:42Z +8513 2005-07-29T09:52:59Z 3156 142 2005-07-31T12:05:59Z 1 2020-02-15T06:59:42Z +8514 2005-07-29T09:53:33Z 3755 99 2005-07-30T06:34:33Z 2 2020-02-15T06:59:42Z +8515 2005-07-29T09:55:20Z 1071 477 2005-08-05T07:08:20Z 2 2020-02-15T06:59:42Z +8516 2005-07-29T10:00:03Z 981 337 2005-08-02T09:34:03Z 1 2020-02-15T06:59:42Z +8517 2005-07-29T10:00:48Z 2064 274 2005-08-06T14:37:48Z 2 2020-02-15T06:59:42Z +8518 2005-07-29T10:05:27Z 2311 385 2005-08-02T05:39:27Z 1 2020-02-15T06:59:42Z +8519 2005-07-29T10:09:43Z 1163 588 2005-08-03T08:14:43Z 2 2020-02-15T06:59:42Z +8520 2005-07-29T10:10:02Z 2440 103 2005-08-02T05:25:02Z 2 2020-02-15T06:59:42Z +8521 2005-07-29T10:12:45Z 2608 402 2005-08-07T04:37:45Z 2 2020-02-15T06:59:42Z +8522 2005-07-29T10:16:19Z 3636 363 2005-08-06T14:58:19Z 1 2020-02-15T06:59:42Z +8523 2005-07-29T10:18:27Z 3614 558 2005-08-04T09:31:27Z 1 2020-02-15T06:59:42Z +8524 2005-07-29T10:20:07Z 2110 124 2005-08-03T04:30:07Z 1 2020-02-15T06:59:42Z +8525 2005-07-29T10:20:19Z 1322 111 2005-07-30T05:49:19Z 2 2020-02-15T06:59:42Z +8526 2005-07-29T10:20:48Z 575 88 2005-08-03T14:15:48Z 1 2020-02-15T06:59:42Z +8527 2005-07-29T10:21:00Z 709 168 2005-08-05T16:05:00Z 2 2020-02-15T06:59:42Z +8528 2005-07-29T10:24:22Z 2107 428 2005-08-07T10:34:22Z 1 2020-02-15T06:59:42Z +8529 2005-07-29T10:24:31Z 1055 501 2005-08-01T16:06:31Z 1 2020-02-15T06:59:42Z +8530 2005-07-29T10:26:14Z 4528 233 2005-07-31T10:24:14Z 1 2020-02-15T06:59:42Z +8531 2005-07-29T10:26:15Z 1631 427 2005-08-06T09:28:15Z 1 2020-02-15T06:59:42Z +8532 2005-07-29T10:26:56Z 3045 546 2005-08-02T13:23:56Z 2 2020-02-15T06:59:42Z +8533 2005-07-29T10:29:16Z 551 542 2005-08-01T06:52:16Z 1 2020-02-15T06:59:42Z +8534 2005-07-29T10:30:13Z 4029 516 2005-08-02T04:47:13Z 1 2020-02-15T06:59:42Z +8535 2005-07-29T10:32:33Z 4489 536 2005-07-31T05:46:33Z 1 2020-02-15T06:59:42Z +8536 2005-07-29T10:37:23Z 4510 219 2005-07-31T07:21:23Z 2 2020-02-15T06:59:42Z +8537 2005-07-29T10:44:54Z 1012 447 2005-08-06T14:55:54Z 2 2020-02-15T06:59:42Z +8538 2005-07-29T10:45:17Z 3768 500 2005-08-04T15:12:17Z 1 2020-02-15T06:59:42Z +8539 2005-07-29T10:48:24Z 599 325 2005-07-30T06:29:24Z 2 2020-02-15T06:59:42Z +8540 2005-07-29T10:52:51Z 539 180 2005-08-07T11:44:51Z 2 2020-02-15T06:59:42Z +8541 2005-07-29T10:55:01Z 976 340 2005-07-31T10:53:01Z 1 2020-02-15T06:59:42Z +8542 2005-07-29T11:01:50Z 792 213 2005-07-30T08:19:50Z 1 2020-02-15T06:59:42Z +8543 2005-07-29T11:01:57Z 403 346 2005-08-03T06:03:57Z 1 2020-02-15T06:59:42Z +8544 2005-07-29T11:02:08Z 412 542 2005-08-06T15:06:08Z 2 2020-02-15T06:59:42Z +8545 2005-07-29T11:07:04Z 3261 3 2005-08-06T13:30:04Z 2 2020-02-15T06:59:42Z +8546 2005-07-29T11:08:48Z 3224 418 2005-08-03T16:50:48Z 2 2020-02-15T06:59:42Z +8547 2005-07-29T11:10:15Z 875 438 2005-08-03T12:50:15Z 1 2020-02-15T06:59:42Z +8548 2005-07-29T11:11:33Z 3366 14 2005-08-04T11:52:33Z 2 2020-02-15T06:59:42Z +8549 2005-07-29T11:12:13Z 1866 206 2005-08-06T06:04:13Z 2 2020-02-15T06:59:42Z +8550 2005-07-29T11:12:37Z 1340 70 2005-07-30T15:05:37Z 2 2020-02-15T06:59:42Z +8551 2005-07-29T11:13:11Z 2083 340 2005-08-05T05:17:11Z 2 2020-02-15T06:59:42Z +8552 2005-07-29T11:14:02Z 1987 490 2005-08-05T14:13:02Z 2 2020-02-15T06:59:42Z +8553 2005-07-29T11:15:36Z 2645 49 2005-08-07T16:37:36Z 1 2020-02-15T06:59:42Z +8554 2005-07-29T11:16:29Z 1563 582 2005-07-31T06:38:29Z 2 2020-02-15T06:59:42Z +8555 2005-07-29T11:18:01Z 2784 18 2005-07-30T10:47:01Z 2 2020-02-15T06:59:42Z +8556 2005-07-29T11:18:27Z 2793 231 2005-07-30T05:21:27Z 2 2020-02-15T06:59:42Z +8557 2005-07-29T11:19:59Z 1481 459 2005-08-07T12:50:59Z 1 2020-02-15T06:59:42Z +8558 2005-07-29T11:24:49Z 1160 169 2005-07-31T15:03:49Z 1 2020-02-15T06:59:42Z +8559 2005-07-29T11:25:54Z 2078 279 2005-08-04T10:16:54Z 2 2020-02-15T06:59:42Z +8560 2005-07-29T11:27:27Z 3499 430 2005-08-01T12:05:27Z 2 2020-02-15T06:59:42Z +8561 2005-07-29T11:29:12Z 2207 344 2005-08-05T09:17:12Z 1 2020-02-15T06:59:42Z +8562 2005-07-29T11:32:13Z 3595 255 2005-07-30T08:23:13Z 2 2020-02-15T06:59:42Z +8563 2005-07-29T11:32:58Z 61 67 2005-08-05T07:21:58Z 2 2020-02-15T06:59:42Z +8564 2005-07-29T11:33:00Z 2830 316 2005-08-05T15:35:00Z 1 2020-02-15T06:59:42Z +8565 2005-07-29T11:35:23Z 3211 280 2005-08-06T08:28:23Z 1 2020-02-15T06:59:42Z +8566 2005-07-29T11:35:46Z 2011 544 2005-07-30T13:50:46Z 1 2020-02-15T06:59:42Z +8567 2005-07-29T11:37:30Z 1612 594 2005-08-03T05:58:30Z 2 2020-02-15T06:59:42Z +8568 2005-07-29T11:38:22Z 1599 583 2005-08-04T13:22:22Z 2 2020-02-15T06:59:42Z +8569 2005-07-29T11:39:17Z 276 348 2005-07-31T07:50:17Z 2 2020-02-15T06:59:42Z +8570 2005-07-29T11:40:08Z 3094 131 2005-08-06T10:23:08Z 1 2020-02-15T06:59:42Z +8571 2005-07-29T11:48:39Z 1778 407 2005-08-03T06:35:39Z 2 2020-02-15T06:59:42Z +8572 2005-07-29T11:51:24Z 2815 267 2005-08-02T11:44:24Z 1 2020-02-15T06:59:42Z +8573 2005-07-29T11:51:25Z 1637 179 2005-08-07T08:53:25Z 1 2020-02-15T06:59:42Z +8574 2005-07-29T11:51:53Z 2949 71 2005-08-03T05:59:53Z 2 2020-02-15T06:59:42Z +8575 2005-07-29T11:52:47Z 1668 441 2005-08-03T08:14:47Z 2 2020-02-15T06:59:42Z +8576 2005-07-29T11:55:01Z 3552 157 2005-08-03T08:41:01Z 2 2020-02-15T06:59:42Z +8577 2005-07-29T11:56:30Z 520 328 2005-08-07T15:41:30Z 1 2020-02-15T06:59:42Z +8578 2005-07-29T11:58:14Z 3737 148 2005-08-03T06:25:14Z 1 2020-02-15T06:59:42Z +8579 2005-07-29T11:59:22Z 4045 250 2005-07-30T11:41:22Z 2 2020-02-15T06:59:42Z +8580 2005-07-29T12:00:27Z 4040 543 2005-08-04T16:39:27Z 1 2020-02-15T06:59:42Z +8581 2005-07-29T12:02:06Z 2102 254 2005-08-02T10:32:06Z 2 2020-02-15T06:59:42Z +8582 2005-07-29T12:03:27Z 841 162 2005-08-03T07:02:27Z 1 2020-02-15T06:59:42Z +8583 2005-07-29T12:04:50Z 3130 191 2005-08-04T17:21:50Z 1 2020-02-15T06:59:42Z +8584 2005-07-29T12:07:53Z 1656 482 2005-07-31T09:27:53Z 1 2020-02-15T06:59:42Z +8585 2005-07-29T12:14:18Z 512 516 2005-08-03T08:31:18Z 2 2020-02-15T06:59:42Z +8586 2005-07-29T12:16:34Z 2752 374 2005-08-07T06:48:34Z 1 2020-02-15T06:59:42Z +8587 2005-07-29T12:18:40Z 1941 108 2005-08-03T14:01:40Z 1 2020-02-15T06:59:42Z +8588 2005-07-29T12:22:20Z 2858 416 2005-07-31T10:49:20Z 1 2020-02-15T06:59:42Z +8589 2005-07-29T12:28:17Z 1628 293 2005-08-05T11:40:17Z 1 2020-02-15T06:59:42Z +8590 2005-07-29T12:32:20Z 2505 114 2005-08-07T08:00:20Z 1 2020-02-15T06:59:42Z +8591 2005-07-29T12:32:33Z 2568 418 2005-08-01T16:19:33Z 2 2020-02-15T06:59:42Z +8592 2005-07-29T12:33:58Z 1952 271 2005-08-04T07:14:58Z 2 2020-02-15T06:59:42Z +8593 2005-07-29T12:38:14Z 2601 181 2005-08-07T07:04:14Z 1 2020-02-15T06:59:42Z +8594 2005-07-29T12:42:13Z 4155 115 2005-08-02T07:38:13Z 1 2020-02-15T06:59:42Z +8595 2005-07-29T12:47:43Z 3225 423 2005-08-07T13:51:43Z 2 2020-02-15T06:59:42Z +8596 2005-07-29T12:48:54Z 59 233 2005-08-04T07:19:54Z 2 2020-02-15T06:59:42Z +8597 2005-07-29T12:55:55Z 4218 222 2005-08-05T18:54:55Z 1 2020-02-15T06:59:42Z +8598 2005-07-29T12:56:59Z 626 2 2005-08-01T08:39:59Z 2 2020-02-15T06:59:42Z +8599 2005-07-29T12:58:52Z 1169 545 2005-08-03T08:19:52Z 1 2020-02-15T06:59:42Z +8600 2005-07-29T13:01:19Z 1488 226 2005-07-31T15:40:19Z 2 2020-02-15T06:59:42Z +8601 2005-07-29T13:03:31Z 3247 181 2005-08-06T16:32:31Z 1 2020-02-15T06:59:42Z +8602 2005-07-29T13:04:27Z 4002 64 2005-08-03T12:21:27Z 2 2020-02-15T06:59:42Z +8603 2005-07-29T13:07:07Z 3007 594 2005-08-04T18:32:07Z 2 2020-02-15T06:59:42Z +8604 2005-07-29T13:07:13Z 3909 326 2005-07-31T18:00:13Z 2 2020-02-15T06:59:42Z +8605 2005-07-29T13:13:34Z 3805 224 2005-08-07T08:29:34Z 1 2020-02-15T06:59:42Z +8606 2005-07-29T13:14:24Z 4051 340 2005-07-30T14:52:24Z 1 2020-02-15T06:59:42Z +8607 2005-07-29T13:18:00Z 4290 336 2005-07-30T18:51:00Z 2 2020-02-15T06:59:42Z +8608 2005-07-29T13:18:52Z 2976 165 2005-07-30T19:01:52Z 2 2020-02-15T06:59:42Z +8609 2005-07-29T13:19:25Z 3997 354 2005-08-06T08:33:25Z 2 2020-02-15T06:59:42Z +8610 2005-07-29T13:25:02Z 4222 563 2005-08-03T08:10:02Z 2 2020-02-15T06:59:42Z +8611 2005-07-29T13:26:21Z 610 373 2005-08-07T18:20:21Z 2 2020-02-15T06:59:42Z +8612 2005-07-29T13:28:20Z 3518 392 2005-08-06T14:39:20Z 2 2020-02-15T06:59:42Z +8613 2005-07-29T13:30:58Z 394 411 2005-08-05T16:21:58Z 2 2020-02-15T06:59:42Z +8614 2005-07-29T13:32:05Z 604 552 2005-08-04T15:26:05Z 1 2020-02-15T06:59:42Z +8615 2005-07-29T13:36:01Z 4453 15 2005-08-03T13:15:01Z 1 2020-02-15T06:59:42Z +8616 2005-07-29T13:39:09Z 2583 493 2005-08-01T16:49:09Z 1 2020-02-15T06:59:42Z +8617 2005-07-29T13:46:14Z 385 441 2005-08-06T13:26:14Z 2 2020-02-15T06:59:42Z +8618 2005-07-29T13:48:20Z 985 270 2005-08-06T14:12:20Z 2 2020-02-15T06:59:42Z +8619 2005-07-29T13:50:08Z 2169 50 2005-08-06T13:15:08Z 1 2020-02-15T06:59:42Z +8620 2005-07-29T13:51:20Z 3718 306 2005-08-02T13:05:20Z 1 2020-02-15T06:59:42Z +8621 2005-07-29T13:52:42Z 2473 358 2005-07-30T11:42:42Z 2 2020-02-15T06:59:42Z +8622 2005-07-29T13:53:28Z 4076 98 2005-07-31T16:12:28Z 2 2020-02-15T06:59:42Z +8623 2005-07-29T13:55:11Z 458 142 2005-08-05T11:16:11Z 1 2020-02-15T06:59:42Z +8624 2005-07-29T13:55:36Z 4402 439 2005-08-02T12:23:36Z 2 2020-02-15T06:59:42Z +8625 2005-07-29T13:59:13Z 884 410 2005-08-07T17:56:13Z 2 2020-02-15T06:59:42Z +8626 2005-07-29T14:03:20Z 3092 148 2005-08-02T09:05:20Z 1 2020-02-15T06:59:42Z +8627 2005-07-29T14:05:12Z 4235 226 2005-08-05T16:53:12Z 2 2020-02-15T06:59:42Z +8628 2005-07-29T14:06:24Z 4484 550 2005-08-06T10:42:24Z 2 2020-02-15T06:59:42Z +8629 2005-07-29T14:06:35Z 853 567 2005-08-03T16:59:35Z 2 2020-02-15T06:59:42Z +8630 2005-07-29T14:07:59Z 1378 406 2005-08-03T13:18:59Z 2 2020-02-15T06:59:42Z +8631 2005-07-29T14:08:06Z 98 559 2005-08-05T14:57:06Z 1 2020-02-15T06:59:42Z +8632 2005-07-29T14:11:25Z 1666 563 2005-08-07T15:32:25Z 1 2020-02-15T06:59:42Z +8633 2005-07-29T14:19:53Z 3436 534 2005-08-01T11:31:53Z 2 2020-02-15T06:59:42Z +8634 2005-07-29T14:19:57Z 2023 335 2005-08-07T13:44:57Z 1 2020-02-15T06:59:42Z +8635 2005-07-29T14:22:48Z 2894 383 2005-08-01T11:59:48Z 2 2020-02-15T06:59:42Z +8636 2005-07-29T14:24:13Z 4308 252 2005-08-02T14:39:13Z 1 2020-02-15T06:59:42Z +8637 2005-07-29T14:30:11Z 1069 310 2005-08-04T14:00:11Z 1 2020-02-15T06:59:42Z +8638 2005-07-29T14:30:23Z 4060 571 2005-08-01T10:32:23Z 1 2020-02-15T06:59:42Z +8639 2005-07-29T14:30:31Z 3504 290 2005-08-02T16:04:31Z 1 2020-02-15T06:59:42Z +8640 2005-07-29T14:34:17Z 1874 257 2005-08-01T13:09:17Z 2 2020-02-15T06:59:42Z +8641 2005-07-29T14:37:30Z 3199 30 2005-08-02T19:32:30Z 2 2020-02-15T06:59:42Z +8642 2005-07-29T14:38:17Z 3947 522 2005-08-03T14:41:17Z 1 2020-02-15T06:59:42Z +8643 2005-07-29T14:45:23Z 381 59 2005-08-04T18:42:23Z 1 2020-02-15T06:59:42Z +8644 2005-07-29T14:45:45Z 4507 314 2005-08-03T20:10:45Z 2 2020-02-15T06:59:42Z +8645 2005-07-29T14:47:45Z 2532 535 2005-07-30T14:56:45Z 2 2020-02-15T06:59:42Z +8646 2005-07-29T14:48:48Z 89 302 2005-08-03T18:11:48Z 2 2020-02-15T06:59:42Z +8647 2005-07-29T14:52:59Z 556 307 2005-08-06T11:09:59Z 2 2020-02-15T06:59:42Z +8648 2005-07-29T14:56:21Z 160 416 2005-07-31T16:56:21Z 2 2020-02-15T06:59:42Z +8649 2005-07-29T14:57:33Z 789 69 2005-08-07T09:43:33Z 2 2020-02-15T06:59:42Z +8650 2005-07-29T14:59:04Z 1272 134 2005-08-04T13:13:04Z 2 2020-02-15T06:59:42Z +8651 2005-07-29T15:02:18Z 2095 61 2005-08-07T09:34:18Z 2 2020-02-15T06:59:42Z +8652 2005-07-29T15:02:54Z 2729 219 2005-08-07T17:21:54Z 2 2020-02-15T06:59:42Z +8653 2005-07-29T15:04:23Z 4440 230 2005-08-02T09:39:23Z 2 2020-02-15T06:59:42Z +8654 2005-07-29T15:04:27Z 3925 84 2005-08-07T18:37:27Z 1 2020-02-15T06:59:42Z +8655 2005-07-29T15:04:42Z 3986 232 2005-08-04T11:26:42Z 1 2020-02-15T06:59:42Z +8656 2005-07-29T15:05:52Z 1385 460 2005-07-31T20:57:52Z 2 2020-02-15T06:59:42Z +8657 2005-07-29T15:09:25Z 3194 236 2005-07-31T19:10:25Z 1 2020-02-15T06:59:42Z +8658 2005-07-29T15:16:37Z 2033 427 2005-08-07T20:45:37Z 2 2020-02-15T06:59:42Z +8659 2005-07-29T15:26:31Z 558 168 2005-08-06T19:05:31Z 2 2020-02-15T06:59:42Z +8660 2005-07-29T15:26:59Z 3122 566 2005-08-05T21:04:59Z 2 2020-02-15T06:59:42Z +8661 2005-07-29T15:28:24Z 3409 341 2005-08-05T20:04:24Z 2 2020-02-15T06:59:42Z +8662 2005-07-29T15:31:33Z 3758 362 2005-07-30T09:39:33Z 2 2020-02-15T06:59:42Z +8663 2005-07-29T15:33:18Z 1281 214 2005-07-30T18:03:18Z 1 2020-02-15T06:59:42Z +8664 2005-07-29T15:36:27Z 198 102 2005-08-04T20:11:27Z 1 2020-02-15T06:59:42Z +8665 2005-07-29T15:39:29Z 1113 265 2005-08-01T10:33:29Z 2 2020-02-15T06:59:42Z +8666 2005-07-29T15:39:38Z 3669 591 2005-08-06T17:12:38Z 1 2020-02-15T06:59:42Z +8667 2005-07-29T15:40:57Z 3439 25 2005-07-31T20:59:57Z 1 2020-02-15T06:59:42Z +8668 2005-07-29T15:41:31Z 4531 71 2005-08-01T16:20:31Z 2 2020-02-15T06:59:42Z +8669 2005-07-29T15:44:55Z 1667 401 2005-08-01T14:09:55Z 2 2020-02-15T06:59:42Z +8670 2005-07-29T15:49:03Z 2354 446 2005-08-01T20:19:03Z 2 2020-02-15T06:59:42Z +8671 2005-07-29T15:49:37Z 1431 577 2005-08-05T18:20:37Z 1 2020-02-15T06:59:42Z +8672 2005-07-29T15:49:48Z 405 495 2005-08-06T17:59:48Z 2 2020-02-15T06:59:42Z +8673 2005-07-29T15:50:14Z 2167 29 2005-08-03T18:30:14Z 1 2020-02-15T06:59:42Z +8674 2005-07-29T15:54:22Z 1744 412 2005-07-31T12:15:22Z 1 2020-02-15T06:59:42Z +8675 2005-07-29T15:56:18Z 1026 258 2005-07-30T18:50:18Z 1 2020-02-15T06:59:42Z +8676 2005-07-29T15:59:06Z 283 533 2005-08-05T19:12:06Z 2 2020-02-15T06:59:42Z +8677 2005-07-29T16:01:13Z 513 315 2005-08-07T19:21:13Z 2 2020-02-15T06:59:42Z +8678 2005-07-29T16:04:00Z 3991 210 2005-08-05T12:37:00Z 1 2020-02-15T06:59:42Z +8679 2005-07-29T16:07:47Z 3549 536 2005-08-02T18:37:47Z 1 2020-02-15T06:59:42Z +8680 2005-07-29T16:08:03Z 1227 330 2005-07-31T17:26:03Z 1 2020-02-15T06:59:42Z +8681 2005-07-29T16:12:01Z 4004 309 2005-08-01T18:14:01Z 2 2020-02-15T06:59:42Z +8682 2005-07-29T16:15:26Z 4328 348 2005-08-03T20:15:26Z 2 2020-02-15T06:59:42Z +8683 2005-07-29T16:15:43Z 3915 513 2005-08-07T19:19:43Z 1 2020-02-15T06:59:42Z +8684 2005-07-29T16:16:33Z 2457 185 2005-08-07T12:27:33Z 2 2020-02-15T06:59:42Z +8685 2005-07-29T16:17:05Z 1827 321 2005-08-07T17:44:05Z 1 2020-02-15T06:59:42Z +8686 2005-07-29T16:17:49Z 4160 52 2005-08-01T12:50:49Z 2 2020-02-15T06:59:42Z +8687 2005-07-29T16:19:17Z 222 117 2005-08-01T15:28:17Z 1 2020-02-15T06:59:42Z +8688 2005-07-29T16:31:32Z 2263 381 2005-07-30T12:39:32Z 1 2020-02-15T06:59:42Z +8689 2005-07-29T16:38:58Z 824 487 2005-08-01T17:09:58Z 2 2020-02-15T06:59:42Z +8690 2005-07-29T16:39:28Z 1292 291 2005-08-01T14:03:28Z 2 2020-02-15T06:59:42Z +8691 2005-07-29T16:41:23Z 672 446 2005-08-02T12:32:23Z 2 2020-02-15T06:59:42Z +8692 2005-07-29T16:43:39Z 3192 88 2005-08-01T15:54:39Z 2 2020-02-15T06:59:42Z +8693 2005-07-29T16:44:13Z 917 51 2005-08-01T15:56:13Z 1 2020-02-15T06:59:42Z +8694 2005-07-29T16:44:48Z 503 345 2005-08-06T16:28:48Z 1 2020-02-15T06:59:42Z +8695 2005-07-29T16:44:55Z 694 280 2005-08-07T12:47:55Z 1 2020-02-15T06:59:42Z +8696 2005-07-29T16:45:18Z 2553 178 2005-08-07T18:51:18Z 1 2020-02-15T06:59:42Z +8697 2005-07-29T16:46:07Z 443 291 2005-08-02T19:27:07Z 2 2020-02-15T06:59:42Z +8698 2005-07-29T16:52:17Z 2973 324 2005-08-04T13:20:17Z 2 2020-02-15T06:59:42Z +8699 2005-07-29T16:53:00Z 4080 123 2005-08-07T20:31:00Z 1 2020-02-15T06:59:42Z +8700 2005-07-29T16:56:01Z 3710 196 2005-07-31T16:19:01Z 2 2020-02-15T06:59:42Z +8701 2005-07-29T17:02:35Z 3158 245 2005-08-07T19:55:35Z 2 2020-02-15T06:59:42Z +8702 2005-07-29T17:04:37Z 2215 306 2005-08-05T15:30:37Z 2 2020-02-15T06:59:42Z +8703 2005-07-29T17:12:44Z 1065 439 2005-07-30T19:38:44Z 1 2020-02-15T06:59:42Z +8704 2005-07-29T17:13:45Z 2117 107 2005-08-03T20:03:45Z 2 2020-02-15T06:59:42Z +8705 2005-07-29T17:14:29Z 4038 2 2005-08-02T16:01:29Z 1 2020-02-15T06:59:42Z +8706 2005-07-29T17:19:15Z 2886 515 2005-08-03T22:52:15Z 1 2020-02-15T06:59:42Z +8707 2005-07-29T17:21:58Z 2525 157 2005-08-02T14:47:58Z 2 2020-02-15T06:59:42Z +8708 2005-07-29T17:24:13Z 4054 529 2005-08-04T13:57:13Z 1 2020-02-15T06:59:42Z +8709 2005-07-29T17:25:54Z 902 199 2005-08-02T22:35:54Z 1 2020-02-15T06:59:42Z +8710 2005-07-29T17:26:03Z 3391 566 2005-07-30T19:51:03Z 1 2020-02-15T06:59:42Z +8711 2005-07-29T17:27:15Z 3471 575 2005-07-31T12:57:15Z 1 2020-02-15T06:59:42Z +8712 2005-07-29T17:30:06Z 2800 41 2005-08-03T22:55:06Z 2 2020-02-15T06:59:42Z +8713 2005-07-29T17:31:19Z 473 433 2005-08-02T16:37:19Z 2 2020-02-15T06:59:42Z +8714 2005-07-29T17:31:40Z 4547 362 2005-08-04T16:12:40Z 2 2020-02-15T06:59:42Z +8715 2005-07-29T17:33:45Z 860 11 2005-08-01T17:30:45Z 1 2020-02-15T06:59:42Z +8716 2005-07-29T17:39:09Z 2123 48 2005-08-03T20:26:09Z 2 2020-02-15T06:59:42Z +8717 2005-07-29T17:40:45Z 1821 260 2005-08-01T22:38:45Z 2 2020-02-15T06:59:42Z +8718 2005-07-29T17:41:14Z 137 23 2005-08-01T18:22:14Z 2 2020-02-15T06:59:42Z +8719 2005-07-29T17:45:45Z 995 333 2005-08-01T13:53:45Z 1 2020-02-15T06:59:42Z +8720 2005-07-29T17:48:32Z 152 180 2005-08-04T14:30:32Z 2 2020-02-15T06:59:42Z +8721 2005-07-29T17:56:21Z 2416 312 2005-08-02T21:30:21Z 2 2020-02-15T06:59:42Z +8722 2005-07-29T17:58:58Z 1389 401 2005-08-07T23:40:58Z 1 2020-02-15T06:59:42Z +8723 2005-07-29T18:03:47Z 224 39 2005-08-06T18:53:47Z 1 2020-02-15T06:59:42Z +8724 2005-07-29T18:05:21Z 898 372 2005-08-01T15:41:21Z 1 2020-02-15T06:59:42Z +8725 2005-07-29T18:08:42Z 2385 421 2005-08-04T16:01:42Z 2 2020-02-15T06:59:42Z +8726 2005-07-29T18:09:22Z 897 409 2005-08-06T16:24:22Z 1 2020-02-15T06:59:42Z +8727 2005-07-29T18:09:57Z 3031 528 2005-08-03T13:41:57Z 2 2020-02-15T06:59:42Z +8728 2005-07-29T18:12:49Z 973 341 2005-08-06T22:45:49Z 1 2020-02-15T06:59:42Z +8729 2005-07-29T18:23:02Z 3342 83 2005-07-31T16:09:02Z 2 2020-02-15T06:59:42Z +8730 2005-07-29T18:23:34Z 4191 592 2005-08-01T19:56:34Z 1 2020-02-15T06:59:42Z +8731 2005-07-29T18:23:57Z 2638 179 2005-08-05T19:38:57Z 1 2020-02-15T06:59:42Z +8732 2005-07-29T18:25:03Z 1143 346 2005-08-07T18:56:03Z 2 2020-02-15T06:59:42Z +8733 2005-07-29T18:26:34Z 3187 450 2005-08-03T15:06:34Z 1 2020-02-15T06:59:42Z +8734 2005-07-29T18:28:15Z 2374 303 2005-08-05T23:38:15Z 1 2020-02-15T06:59:42Z +8735 2005-07-29T18:28:54Z 2881 570 2005-08-03T12:43:54Z 2 2020-02-15T06:59:42Z +8736 2005-07-29T18:31:15Z 1726 530 2005-07-30T16:24:15Z 2 2020-02-15T06:59:42Z +8737 2005-07-29T18:32:13Z 4154 298 2005-08-05T21:07:13Z 2 2020-02-15T06:59:42Z +8738 2005-07-29T18:32:47Z 3893 210 2005-08-02T13:05:47Z 2 2020-02-15T06:59:42Z +8739 2005-07-29T18:34:33Z 4310 326 2005-08-02T16:05:33Z 1 2020-02-15T06:59:42Z +8740 2005-07-29T18:41:31Z 3781 378 2005-08-01T18:38:31Z 1 2020-02-15T06:59:42Z +8741 2005-07-29T18:44:57Z 165 4 2005-08-03T18:25:57Z 2 2020-02-15T06:59:42Z +8742 2005-07-29T18:56:12Z 918 208 2005-08-03T16:42:12Z 1 2020-02-15T06:59:42Z +8743 2005-07-29T18:57:01Z 2664 282 2005-07-31T22:09:01Z 2 2020-02-15T06:59:42Z +8744 2005-07-29T18:58:24Z 1086 280 2005-08-05T17:56:24Z 1 2020-02-15T06:59:42Z +8745 2005-07-29T19:03:05Z 1766 293 2005-08-06T14:06:05Z 2 2020-02-15T06:59:42Z +8746 2005-07-29T19:03:15Z 2179 275 2005-07-30T17:06:15Z 1 2020-02-15T06:59:42Z +8747 2005-07-29T19:07:57Z 2584 70 2005-07-30T16:01:57Z 1 2020-02-15T06:59:42Z +8748 2005-07-29T19:08:37Z 2184 237 2005-08-01T16:24:37Z 1 2020-02-15T06:59:42Z +8749 2005-07-29T19:13:15Z 2252 456 2005-08-01T15:02:15Z 1 2020-02-15T06:59:42Z +8750 2005-07-29T19:14:21Z 3157 158 2005-07-31T17:22:21Z 2 2020-02-15T06:59:42Z +8751 2005-07-29T19:14:39Z 3467 386 2005-07-31T23:11:39Z 1 2020-02-15T06:59:42Z +8752 2005-07-29T19:15:07Z 4202 253 2005-07-31T13:27:07Z 1 2020-02-15T06:59:42Z +8753 2005-07-29T19:15:50Z 1345 560 2005-07-31T19:13:50Z 2 2020-02-15T06:59:42Z +8754 2005-07-29T19:18:30Z 1678 174 2005-08-05T18:39:30Z 2 2020-02-15T06:59:42Z +8755 2005-07-29T19:18:31Z 1498 372 2005-07-31T19:20:31Z 2 2020-02-15T06:59:42Z +8756 2005-07-29T19:18:57Z 4146 120 2005-08-02T20:07:57Z 2 2020-02-15T06:59:42Z +8757 2005-07-29T19:19:10Z 3473 462 2005-08-02T13:47:10Z 2 2020-02-15T06:59:42Z +8758 2005-07-29T19:20:49Z 2816 442 2005-08-05T21:57:49Z 2 2020-02-15T06:59:42Z +8759 2005-07-29T19:22:37Z 844 209 2005-08-07T15:36:37Z 2 2020-02-15T06:59:42Z +8760 2005-07-29T19:22:40Z 3566 118 2005-08-05T01:09:40Z 2 2020-02-15T06:59:42Z +8761 2005-07-29T19:26:47Z 1317 539 2005-08-08T00:09:47Z 1 2020-02-15T06:59:42Z +8762 2005-07-29T19:30:02Z 2765 463 2005-08-04T18:38:02Z 1 2020-02-15T06:59:42Z +8763 2005-07-29T19:38:24Z 374 510 2005-08-04T16:51:24Z 1 2020-02-15T06:59:42Z +8764 2005-07-29T19:39:04Z 2348 303 2005-08-01T13:52:04Z 1 2020-02-15T06:59:42Z +8765 2005-07-29T19:40:08Z 2631 538 2005-07-31T14:24:08Z 2 2020-02-15T06:59:42Z +8766 2005-07-29T19:41:04Z 3888 338 2005-08-02T00:41:04Z 2 2020-02-15T06:59:42Z +8767 2005-07-29T19:42:33Z 962 467 2005-08-01T20:52:33Z 2 2020-02-15T06:59:42Z +8768 2005-07-29T19:43:02Z 1601 468 2005-08-03T23:36:02Z 1 2020-02-15T06:59:42Z +8769 2005-07-29T19:45:33Z 2180 588 2005-08-05T22:09:33Z 2 2020-02-15T06:59:42Z +8770 2005-07-29T19:53:50Z 4025 499 2005-08-05T14:22:50Z 1 2020-02-15T06:59:42Z +8771 2005-07-29T19:54:41Z 3533 347 2005-08-03T20:38:41Z 1 2020-02-15T06:59:42Z +8772 2005-07-29T19:55:25Z 3526 122 2005-08-05T18:48:25Z 1 2020-02-15T06:59:42Z +8773 2005-07-29T19:55:34Z 131 592 2005-07-30T14:11:34Z 1 2020-02-15T06:59:42Z +8774 2005-07-29T20:05:04Z 315 161 2005-07-31T14:32:04Z 1 2020-02-15T06:59:42Z +8775 2005-07-29T20:05:38Z 1358 44 2005-07-30T21:13:38Z 1 2020-02-15T06:59:42Z +8776 2005-07-29T20:07:06Z 1565 587 2005-08-06T20:42:06Z 2 2020-02-15T06:59:42Z +8777 2005-07-29T20:10:21Z 2462 382 2005-07-30T20:32:21Z 2 2020-02-15T06:59:42Z +8778 2005-07-29T20:14:25Z 3654 582 2005-08-04T00:50:25Z 1 2020-02-15T06:59:42Z +8779 2005-07-29T20:15:00Z 3245 202 2005-08-03T21:17:00Z 1 2020-02-15T06:59:42Z +8780 2005-07-29T20:19:45Z 1095 328 2005-08-03T22:22:45Z 2 2020-02-15T06:59:42Z +8781 2005-07-29T20:20:16Z 3746 235 2005-07-30T16:19:16Z 2 2020-02-15T06:59:42Z +8782 2005-07-29T20:29:34Z 4379 365 2005-08-04T02:19:34Z 1 2020-02-15T06:59:42Z +8783 2005-07-29T20:31:28Z 2316 71 2005-08-02T19:33:28Z 2 2020-02-15T06:59:42Z +8784 2005-07-29T20:35:37Z 2308 580 2005-07-30T17:22:37Z 1 2020-02-15T06:59:42Z +8785 2005-07-29T20:36:26Z 216 42 2005-07-30T15:06:26Z 1 2020-02-15T06:59:42Z +8786 2005-07-29T20:39:49Z 2404 533 2005-08-03T18:08:49Z 1 2020-02-15T06:59:42Z +8787 2005-07-29T20:43:49Z 2366 222 2005-07-31T15:15:49Z 1 2020-02-15T06:59:42Z +8788 2005-07-29T20:46:44Z 3412 121 2005-08-03T02:25:44Z 2 2020-02-15T06:59:42Z +8789 2005-07-29T20:47:27Z 3062 71 2005-08-05T18:36:27Z 1 2020-02-15T06:59:42Z +8790 2005-07-29T20:51:41Z 751 323 2005-07-30T17:30:41Z 2 2020-02-15T06:59:42Z +8791 2005-07-29T20:53:23Z 1677 469 2005-07-31T18:14:23Z 1 2020-02-15T06:59:42Z +8792 2005-07-29T20:56:14Z 3764 203 2005-08-07T16:44:14Z 2 2020-02-15T06:59:42Z +8793 2005-07-29T20:57:22Z 1819 167 2005-08-02T01:40:22Z 2 2020-02-15T06:59:42Z +8794 2005-07-29T20:59:38Z 3509 320 2005-07-31T00:15:38Z 2 2020-02-15T06:59:42Z +8795 2005-07-29T21:04:14Z 1896 302 2005-07-31T02:58:14Z 2 2020-02-15T06:59:42Z +8796 2005-07-29T21:09:11Z 2234 74 2005-08-04T22:55:11Z 1 2020-02-15T06:59:42Z +8797 2005-07-29T21:10:37Z 2929 566 2005-08-07T21:43:37Z 1 2020-02-15T06:59:42Z +8798 2005-07-29T21:15:38Z 800 513 2005-08-05T02:46:38Z 2 2020-02-15T06:59:42Z +8799 2005-07-29T21:16:47Z 326 237 2005-08-07T22:09:47Z 2 2020-02-15T06:59:42Z +8800 2005-07-29T21:18:59Z 2082 207 2005-08-06T19:59:59Z 2 2020-02-15T06:59:42Z +8801 2005-07-29T21:25:22Z 1111 590 2005-08-01T00:02:22Z 1 2020-02-15T06:59:42Z +8802 2005-07-29T21:25:51Z 296 407 2005-07-30T18:15:51Z 2 2020-02-15T06:59:42Z +8803 2005-07-29T21:26:24Z 2814 86 2005-08-06T18:05:24Z 2 2020-02-15T06:59:42Z +8804 2005-07-29T21:28:19Z 4461 363 2005-08-01T20:15:19Z 2 2020-02-15T06:59:42Z +8805 2005-07-29T21:29:58Z 4041 39 2005-08-04T23:12:58Z 1 2020-02-15T06:59:42Z +8806 2005-07-29T21:36:34Z 4085 454 2005-08-02T00:58:34Z 1 2020-02-15T06:59:42Z +8807 2005-07-29T21:36:59Z 2612 396 2005-08-01T17:40:59Z 1 2020-02-15T06:59:42Z +8808 2005-07-29T21:39:07Z 593 173 2005-08-03T02:09:07Z 2 2020-02-15T06:59:42Z +8809 2005-07-29T21:42:49Z 3278 8 2005-08-04T01:13:49Z 1 2020-02-15T06:59:42Z +8810 2005-07-29T21:45:19Z 1233 431 2005-08-08T01:45:19Z 2 2020-02-15T06:59:42Z +8811 2005-07-29T21:46:21Z 2041 245 2005-08-07T16:51:21Z 2 2020-02-15T06:59:42Z +8812 2005-07-29T21:47:40Z 1172 563 2005-08-04T01:18:40Z 2 2020-02-15T06:59:42Z +8813 2005-07-29T21:47:55Z 3442 497 2005-08-05T01:16:55Z 1 2020-02-15T06:59:42Z +8814 2005-07-29T21:49:43Z 1492 487 2005-08-01T19:56:43Z 1 2020-02-15T06:59:42Z +8815 2005-07-29T21:51:26Z 3469 230 2005-08-03T22:37:26Z 1 2020-02-15T06:59:42Z +8816 2005-07-29T21:53:00Z 3984 209 2005-08-01T21:20:00Z 1 2020-02-15T06:59:42Z +8817 2005-07-29T22:09:08Z 2716 175 2005-08-01T19:07:08Z 1 2020-02-15T06:59:42Z +8818 2005-07-29T22:14:04Z 3090 98 2005-08-07T17:26:04Z 1 2020-02-15T06:59:42Z +8819 2005-07-29T22:14:26Z 3100 591 2005-08-06T23:02:26Z 2 2020-02-15T06:59:42Z +8820 2005-07-29T22:14:56Z 481 594 2005-08-05T23:36:56Z 2 2020-02-15T06:59:42Z +8821 2005-07-29T22:18:12Z 52 477 2005-08-05T22:00:12Z 1 2020-02-15T06:59:42Z +8822 2005-07-29T22:20:21Z 744 35 2005-08-06T03:00:21Z 2 2020-02-15T06:59:42Z +8823 2005-07-29T22:22:12Z 951 75 2005-08-07T21:03:12Z 1 2020-02-15T06:59:42Z +8824 2005-07-29T22:22:58Z 3506 164 2005-07-31T21:02:58Z 2 2020-02-15T06:59:42Z +8825 2005-07-29T22:24:16Z 881 101 2005-08-05T00:27:16Z 2 2020-02-15T06:59:42Z +8826 2005-07-29T22:30:16Z 1800 369 2005-07-30T19:43:16Z 1 2020-02-15T06:59:42Z +8827 2005-07-29T22:31:24Z 1517 157 2005-08-06T21:05:24Z 2 2020-02-15T06:59:42Z +8828 2005-07-29T22:32:54Z 1608 547 2005-07-30T20:41:54Z 1 2020-02-15T06:59:42Z +8829 2005-07-29T22:33:34Z 1466 173 2005-08-05T20:23:34Z 2 2020-02-15T06:59:42Z +8830 2005-07-29T22:34:35Z 1751 202 2005-08-05T20:12:35Z 2 2020-02-15T06:59:42Z +8831 2005-07-29T22:37:41Z 3520 13 2005-08-08T04:28:41Z 1 2020-02-15T06:59:42Z +8832 2005-07-29T22:37:49Z 380 125 2005-08-04T23:32:49Z 1 2020-02-15T06:59:42Z +8833 2005-07-29T22:39:36Z 1741 101 2005-08-05T21:19:36Z 1 2020-02-15T06:59:42Z +8834 2005-07-29T22:41:48Z 4477 243 2005-08-05T03:21:48Z 2 2020-02-15T06:59:42Z +8835 2005-07-29T22:44:35Z 2653 237 2005-08-05T23:28:35Z 1 2020-02-15T06:59:42Z +8836 2005-07-29T22:46:08Z 3265 14 2005-08-02T19:53:08Z 2 2020-02-15T06:59:42Z +8837 2005-07-29T22:49:00Z 42 372 2005-08-07T21:56:00Z 2 2020-02-15T06:59:42Z +8838 2005-07-29T22:52:23Z 133 550 2005-08-03T22:49:23Z 1 2020-02-15T06:59:42Z +8839 2005-07-29T22:52:34Z 3440 580 2005-08-05T03:24:34Z 2 2020-02-15T06:59:42Z +8840 2005-07-29T22:55:38Z 1484 295 2005-08-06T02:11:38Z 1 2020-02-15T06:59:42Z +8841 2005-07-29T22:56:07Z 3935 363 2005-08-01T21:21:07Z 2 2020-02-15T06:59:42Z +8842 2005-07-29T23:03:40Z 4203 292 2005-08-06T23:23:40Z 2 2020-02-15T06:59:42Z +8843 2005-07-29T23:04:25Z 406 294 2005-08-05T22:12:25Z 1 2020-02-15T06:59:42Z +8844 2005-07-29T23:05:08Z 327 244 2005-08-06T00:24:08Z 2 2020-02-15T06:59:42Z +8845 2005-07-29T23:06:13Z 3036 543 2005-08-02T20:16:13Z 1 2020-02-15T06:59:42Z +8846 2005-07-29T23:10:28Z 2912 108 2005-08-03T22:07:28Z 2 2020-02-15T06:59:42Z +8847 2005-07-29T23:13:41Z 4133 480 2005-07-31T23:55:41Z 1 2020-02-15T06:59:42Z +8848 2005-07-29T23:20:58Z 2972 545 2005-08-03T17:28:58Z 2 2020-02-15T06:59:42Z +8849 2005-07-29T23:21:01Z 4300 79 2005-08-03T20:01:01Z 1 2020-02-15T06:59:42Z +8850 2005-07-29T23:24:20Z 355 86 2005-07-31T00:43:20Z 2 2020-02-15T06:59:42Z +8851 2005-07-29T23:26:19Z 212 445 2005-08-05T03:59:19Z 2 2020-02-15T06:59:42Z +8852 2005-07-29T23:30:03Z 1138 42 2005-08-05T05:22:03Z 2 2020-02-15T06:59:42Z +8853 2005-07-29T23:34:21Z 2323 58 2005-07-31T21:20:21Z 2 2020-02-15T06:59:42Z +8854 2005-07-29T23:40:07Z 1365 527 2005-08-01T00:35:07Z 2 2020-02-15T06:59:42Z +8855 2005-07-29T23:40:10Z 4388 335 2005-08-02T18:07:10Z 2 2020-02-15T06:59:42Z +8856 2005-07-29T23:42:00Z 2942 365 2005-08-07T03:00:00Z 1 2020-02-15T06:59:42Z +8857 2005-07-29T23:44:22Z 1348 477 2005-07-31T21:32:22Z 2 2020-02-15T06:59:42Z +8858 2005-07-29T23:44:35Z 2378 558 2005-08-01T05:25:35Z 2 2020-02-15T06:59:42Z +8859 2005-07-29T23:44:43Z 603 216 2005-08-07T18:14:43Z 2 2020-02-15T06:59:42Z +8860 2005-07-29T23:45:57Z 2841 531 2005-08-06T02:14:57Z 2 2020-02-15T06:59:42Z +8861 2005-07-29T23:47:29Z 759 560 2005-08-07T01:27:29Z 1 2020-02-15T06:59:42Z +8862 2005-07-29T23:49:23Z 916 21 2005-08-04T20:11:23Z 1 2020-02-15T06:59:42Z +8863 2005-07-29T23:52:01Z 75 47 2005-08-04T20:28:01Z 1 2020-02-15T06:59:42Z +8864 2005-07-29T23:52:12Z 2321 167 2005-07-30T22:12:12Z 1 2020-02-15T06:59:42Z +8865 2005-07-29T23:54:54Z 1835 305 2005-07-31T05:10:54Z 2 2020-02-15T06:59:42Z +8866 2005-07-29T23:58:19Z 1530 44 2005-08-01T05:19:19Z 2 2020-02-15T06:59:42Z +8867 2005-07-30T00:02:18Z 1388 497 2005-08-04T00:44:18Z 2 2020-02-15T06:59:42Z +8868 2005-07-30T00:02:26Z 1229 512 2005-08-01T22:28:26Z 2 2020-02-15T06:59:42Z +8869 2005-07-30T00:06:32Z 4353 308 2005-07-31T20:49:32Z 2 2020-02-15T06:59:42Z +8870 2005-07-30T00:08:08Z 4104 90 2005-08-08T00:15:08Z 2 2020-02-15T06:59:42Z +8871 2005-07-30T00:12:41Z 4535 382 2005-08-08T03:53:41Z 1 2020-02-15T06:59:42Z +8872 2005-07-30T00:13:54Z 2669 186 2005-08-01T18:34:54Z 1 2020-02-15T06:59:42Z +8873 2005-07-30T00:14:32Z 3498 91 2005-08-04T20:42:32Z 2 2020-02-15T06:59:42Z +8874 2005-07-30T00:14:45Z 459 564 2005-08-02T22:34:45Z 2 2020-02-15T06:59:42Z +8875 2005-07-30T00:15:09Z 1294 121 2005-08-04T02:54:09Z 2 2020-02-15T06:59:42Z +8876 2005-07-30T00:15:09Z 2394 579 2005-08-02T23:56:09Z 1 2020-02-15T06:59:42Z +8877 2005-07-30T00:15:22Z 1140 417 2005-07-31T00:53:22Z 1 2020-02-15T06:59:42Z +8878 2005-07-30T00:15:57Z 440 25 2005-08-01T00:22:57Z 2 2020-02-15T06:59:42Z +8879 2005-07-30T00:16:02Z 2956 584 2005-08-06T20:10:02Z 2 2020-02-15T06:59:42Z +8880 2005-07-30T00:16:55Z 2920 51 2005-08-01T01:05:55Z 1 2020-02-15T06:59:42Z +8881 2005-07-30T00:22:31Z 2012 118 2005-08-04T19:10:31Z 1 2020-02-15T06:59:42Z +8882 2005-07-30T00:24:05Z 441 410 2005-08-03T19:48:05Z 2 2020-02-15T06:59:42Z +8883 2005-07-30T00:24:48Z 1421 168 2005-08-04T00:24:48Z 2 2020-02-15T06:59:42Z +8884 2005-07-30T00:26:22Z 3050 80 2005-08-05T03:24:22Z 1 2020-02-15T06:59:42Z +8885 2005-07-30T00:36:26Z 2984 135 2005-08-06T03:05:26Z 1 2020-02-15T06:59:42Z +8886 2005-07-30T00:36:31Z 1469 418 2005-08-08T06:18:31Z 1 2020-02-15T06:59:42Z +8887 2005-07-30T00:36:54Z 4119 389 2005-08-04T19:07:54Z 1 2020-02-15T06:59:42Z +8888 2005-07-30T00:39:36Z 2824 284 2005-08-01T02:28:36Z 2 2020-02-15T06:59:42Z +8889 2005-07-30T00:39:43Z 3457 558 2005-08-02T23:22:43Z 1 2020-02-15T06:59:42Z +8890 2005-07-30T00:42:06Z 3656 470 2005-08-05T21:04:06Z 1 2020-02-15T06:59:42Z +8891 2005-07-30T00:46:55Z 4093 435 2005-08-06T23:32:55Z 2 2020-02-15T06:59:42Z +8892 2005-07-30T00:47:03Z 1584 184 2005-08-06T03:23:03Z 2 2020-02-15T06:59:42Z +8893 2005-07-30T00:48:19Z 1048 147 2005-08-01T03:25:19Z 1 2020-02-15T06:59:42Z +8894 2005-07-30T00:48:31Z 2055 552 2005-07-31T05:49:31Z 1 2020-02-15T06:59:42Z +8895 2005-07-30T00:49:17Z 3217 494 2005-07-31T01:56:17Z 1 2020-02-15T06:59:42Z +8896 2005-07-30T00:51:21Z 3560 205 2005-07-31T22:33:21Z 1 2020-02-15T06:59:42Z +8897 2005-07-30T01:00:17Z 1964 459 2005-08-01T03:41:17Z 1 2020-02-15T06:59:42Z +8898 2005-07-30T01:02:20Z 3961 452 2005-08-05T22:02:20Z 2 2020-02-15T06:59:42Z +8899 2005-07-30T01:05:30Z 4148 252 2005-08-01T23:32:30Z 1 2020-02-15T06:59:42Z +8900 2005-07-30T01:07:03Z 3057 375 2005-08-06T04:07:03Z 1 2020-02-15T06:59:42Z +8901 2005-07-30T01:07:12Z 4392 28 2005-08-02T06:34:12Z 1 2020-02-15T06:59:42Z +8902 2005-07-30T01:08:06Z 2983 408 2005-08-05T00:00:06Z 2 2020-02-15T06:59:42Z +8903 2005-07-30T01:08:06Z 4546 406 2005-07-30T21:47:06Z 2 2020-02-15T06:59:42Z +8904 2005-07-30T01:08:33Z 3622 575 2005-08-04T02:33:33Z 1 2020-02-15T06:59:42Z +8905 2005-07-30T01:11:11Z 2154 240 2005-08-04T22:39:11Z 1 2020-02-15T06:59:42Z +8906 2005-07-30T01:21:39Z 2667 560 2005-08-07T02:14:39Z 2 2020-02-15T06:59:42Z +8907 2005-07-30T01:25:03Z 3239 576 2005-08-03T05:41:03Z 1 2020-02-15T06:59:42Z +8908 2005-07-30T01:26:05Z 4498 391 2005-07-31T20:39:05Z 1 2020-02-15T06:59:42Z +8909 2005-07-30T01:28:03Z 2606 556 2005-08-06T04:40:03Z 2 2020-02-15T06:59:42Z +8910 2005-07-30T01:29:48Z 1039 569 2005-07-31T21:33:48Z 2 2020-02-15T06:59:42Z +8911 2005-07-30T01:30:57Z 2159 445 2005-08-02T20:01:57Z 1 2020-02-15T06:59:42Z +8912 2005-07-30T01:31:25Z 1686 280 2005-08-02T07:14:25Z 2 2020-02-15T06:59:42Z +8913 2005-07-30T01:35:01Z 429 391 2005-08-06T06:13:01Z 1 2020-02-15T06:59:42Z +8914 2005-07-30T01:42:03Z 1347 32 2005-08-04T03:53:03Z 1 2020-02-15T06:59:42Z +8915 2005-07-30T01:42:09Z 3030 42 2005-08-04T23:29:09Z 2 2020-02-15T06:59:42Z +8916 2005-07-30T01:42:21Z 3852 377 2005-08-03T05:28:21Z 1 2020-02-15T06:59:42Z +8917 2005-07-30T01:47:02Z 4460 309 2005-08-05T21:10:02Z 2 2020-02-15T06:59:42Z +8918 2005-07-30T01:56:22Z 2544 424 2005-08-04T01:58:22Z 2 2020-02-15T06:59:42Z +8919 2005-07-30T01:57:03Z 4006 337 2005-08-08T05:14:03Z 1 2020-02-15T06:59:42Z +8920 2005-07-30T01:59:24Z 4079 78 2005-08-02T22:37:24Z 2 2020-02-15T06:59:42Z +8921 2005-07-30T02:04:02Z 1016 354 2005-07-31T06:18:02Z 1 2020-02-15T06:59:42Z +8922 2005-07-30T02:08:25Z 1696 446 2005-08-08T07:19:25Z 2 2020-02-15T06:59:42Z +8923 2005-07-30T02:08:49Z 2425 446 2005-08-03T23:45:49Z 2 2020-02-15T06:59:42Z +8924 2005-07-30T02:08:58Z 2291 38 2005-08-05T02:13:58Z 2 2020-02-15T06:59:42Z +8925 2005-07-30T02:09:14Z 3753 500 2005-07-30T21:39:14Z 1 2020-02-15T06:59:42Z +8926 2005-07-30T02:10:31Z 3677 510 2005-08-03T23:56:31Z 1 2020-02-15T06:59:42Z +8927 2005-07-30T02:13:31Z 272 15 2005-08-01T01:34:31Z 1 2020-02-15T06:59:42Z +8928 2005-07-30T02:18:19Z 706 366 2005-08-05T00:49:19Z 2 2020-02-15T06:59:42Z +8929 2005-07-30T02:28:22Z 3501 472 2005-08-06T06:13:22Z 1 2020-02-15T06:59:42Z +8930 2005-07-30T02:28:38Z 1107 202 2005-08-02T01:43:38Z 2 2020-02-15T06:59:42Z +8931 2005-07-30T02:30:07Z 16 268 2005-08-02T08:24:07Z 2 2020-02-15T06:59:42Z +8932 2005-07-30T02:31:26Z 4537 295 2005-08-04T02:17:26Z 2 2020-02-15T06:59:42Z +8933 2005-07-30T02:36:06Z 1664 260 2005-08-02T23:37:06Z 2 2020-02-15T06:59:42Z +8934 2005-07-30T02:37:05Z 3223 494 2005-08-01T20:42:05Z 1 2020-02-15T06:59:42Z +8935 2005-07-30T02:38:45Z 285 76 2005-08-02T07:11:45Z 2 2020-02-15T06:59:42Z +8936 2005-07-30T02:47:13Z 1408 227 2005-08-01T02:25:13Z 2 2020-02-15T06:59:42Z +8937 2005-07-30T02:53:21Z 2406 544 2005-08-08T03:33:21Z 2 2020-02-15T06:59:42Z +8938 2005-07-30T02:56:08Z 4031 92 2005-07-31T23:08:08Z 2 2020-02-15T06:59:42Z +8939 2005-07-30T02:56:53Z 4175 598 2005-08-01T21:19:53Z 1 2020-02-15T06:59:42Z +8940 2005-07-30T02:57:26Z 1566 212 2005-08-05T22:05:26Z 1 2020-02-15T06:59:42Z +8941 2005-07-30T02:59:21Z 4147 329 2005-08-02T05:18:21Z 2 2020-02-15T06:59:42Z +8942 2005-07-30T03:01:07Z 4375 77 2005-08-06T22:50:07Z 2 2020-02-15T06:59:42Z +8943 2005-07-30T03:06:48Z 3698 531 2005-08-02T00:59:48Z 2 2020-02-15T06:59:42Z +8944 2005-07-30T03:11:44Z 3513 172 2005-08-06T23:15:44Z 2 2020-02-15T06:59:42Z +8945 2005-07-30T03:11:48Z 1441 447 2005-08-07T07:53:48Z 2 2020-02-15T06:59:42Z +8946 2005-07-30T03:14:53Z 3510 257 2005-08-04T00:50:53Z 1 2020-02-15T06:59:42Z +8947 2005-07-30T03:15:37Z 341 24 2005-08-04T07:10:37Z 2 2020-02-15T06:59:42Z +8948 2005-07-30T03:16:18Z 948 597 2005-08-04T03:16:18Z 1 2020-02-15T06:59:42Z +8949 2005-07-30T03:17:02Z 2876 231 2005-08-08T07:38:02Z 1 2020-02-15T06:59:42Z +8950 2005-07-30T03:17:13Z 3015 11 2005-08-07T00:20:13Z 1 2020-02-15T06:59:42Z +8951 2005-07-30T03:18:24Z 127 336 2005-08-08T08:50:24Z 2 2020-02-15T06:59:42Z +8952 2005-07-30T03:20:38Z 4397 36 2005-08-02T02:54:38Z 1 2020-02-15T06:59:42Z +8953 2005-07-30T03:21:05Z 535 278 2005-08-02T05:24:05Z 2 2020-02-15T06:59:42Z +8954 2005-07-30T03:25:51Z 991 137 2005-08-06T05:10:51Z 2 2020-02-15T06:59:42Z +8955 2005-07-30T03:28:27Z 4532 405 2005-08-04T04:56:27Z 2 2020-02-15T06:59:42Z +8956 2005-07-30T03:32:29Z 2129 71 2005-08-01T03:08:29Z 2 2020-02-15T06:59:42Z +8957 2005-07-30T03:34:10Z 811 158 2005-08-06T07:05:10Z 1 2020-02-15T06:59:42Z +8958 2005-07-30T03:34:26Z 1556 536 2005-08-06T08:14:26Z 1 2020-02-15T06:59:42Z +8959 2005-07-30T03:35:49Z 3508 550 2005-08-06T02:02:49Z 2 2020-02-15T06:59:42Z +8960 2005-07-30T03:36:31Z 391 525 2005-08-01T23:46:31Z 2 2020-02-15T06:59:42Z +8961 2005-07-30T03:43:35Z 3679 211 2005-08-06T07:42:35Z 1 2020-02-15T06:59:42Z +8962 2005-07-30T03:43:45Z 4439 406 2005-08-07T00:33:45Z 1 2020-02-15T06:59:42Z +8963 2005-07-30T03:46:26Z 100 544 2005-08-08T06:12:26Z 1 2020-02-15T06:59:42Z +8964 2005-07-30T03:49:35Z 280 424 2005-08-06T23:28:35Z 2 2020-02-15T06:59:42Z +8965 2005-07-30T03:52:37Z 2419 599 2005-08-05T01:28:37Z 2 2020-02-15T06:59:42Z +8966 2005-07-30T03:54:12Z 1903 522 2005-07-31T04:51:12Z 1 2020-02-15T06:59:42Z +8967 2005-07-30T03:56:55Z 1536 480 2005-08-06T05:25:55Z 2 2020-02-15T06:59:42Z +8968 2005-07-30T03:57:32Z 2280 339 2005-07-31T00:09:32Z 1 2020-02-15T06:59:42Z +8969 2005-07-30T04:00:19Z 2043 121 2005-08-06T04:39:19Z 1 2020-02-15T06:59:42Z +8970 2005-07-30T04:02:05Z 2940 313 2005-08-07T03:40:05Z 2 2020-02-15T06:59:42Z +8971 2005-07-30T04:03:58Z 3572 35 2005-08-08T04:16:58Z 2 2020-02-15T06:59:42Z +8972 2005-07-30T04:06:25Z 1974 89 2005-08-04T22:49:25Z 1 2020-02-15T06:59:42Z +8973 2005-07-30T04:09:13Z 886 282 2005-08-07T22:30:13Z 2 2020-02-15T06:59:42Z +8974 2005-07-30T04:09:16Z 3376 425 2005-08-04T06:55:16Z 1 2020-02-15T06:59:42Z +8975 2005-07-30T04:10:18Z 3288 356 2005-08-07T01:06:18Z 2 2020-02-15T06:59:42Z +8976 2005-07-30T04:12:32Z 2135 507 2005-08-04T23:08:32Z 1 2020-02-15T06:59:42Z +8977 2005-07-30T04:14:07Z 4099 334 2005-08-05T23:45:07Z 2 2020-02-15T06:59:42Z +8978 2005-07-30T04:14:28Z 711 5 2005-08-06T09:08:28Z 1 2020-02-15T06:59:42Z +8979 2005-07-30T04:20:25Z 1394 529 2005-08-08T03:39:25Z 2 2020-02-15T06:59:42Z +8980 2005-07-30T04:22:15Z 3061 105 2005-08-04T08:16:15Z 1 2020-02-15T06:59:42Z +8981 2005-07-30T04:25:30Z 4413 310 2005-08-06T02:37:30Z 1 2020-02-15T06:59:42Z +8982 2005-07-30T04:31:02Z 1128 251 2005-07-31T04:22:02Z 1 2020-02-15T06:59:42Z +8983 2005-07-30T04:31:08Z 1861 144 2005-07-31T09:28:08Z 1 2020-02-15T06:59:42Z +8984 2005-07-30T04:31:50Z 2126 485 2005-08-04T03:24:50Z 1 2020-02-15T06:59:42Z +8985 2005-07-30T04:34:51Z 3179 12 2005-08-06T00:45:51Z 2 2020-02-15T06:59:42Z +8986 2005-07-30T04:37:20Z 3992 551 2005-07-31T23:54:20Z 1 2020-02-15T06:59:42Z +8987 2005-07-30T04:37:36Z 1434 135 2005-08-08T10:14:36Z 2 2020-02-15T06:59:42Z +8988 2005-07-30T04:38:49Z 777 487 2005-08-07T07:00:49Z 2 2020-02-15T06:59:42Z +8989 2005-07-30T04:39:19Z 954 575 2005-08-06T02:11:19Z 1 2020-02-15T06:59:42Z +8990 2005-07-30T04:41:42Z 1869 292 2005-08-07T22:50:42Z 2 2020-02-15T06:59:42Z +8991 2005-07-30T04:42:54Z 4540 474 2005-08-01T23:51:54Z 1 2020-02-15T06:59:42Z +8992 2005-07-30T04:44:18Z 4478 54 2005-08-01T00:29:18Z 1 2020-02-15T06:59:42Z +8993 2005-07-30T04:51:25Z 1891 382 2005-08-01T01:04:25Z 1 2020-02-15T06:59:42Z +8994 2005-07-30T04:51:32Z 1527 287 2005-08-07T09:41:32Z 1 2020-02-15T06:59:42Z +8995 2005-07-30T04:53:11Z 3575 331 2005-08-07T00:24:11Z 1 2020-02-15T06:59:42Z +8996 2005-07-30T04:53:23Z 1970 579 2005-07-31T06:01:23Z 1 2020-02-15T06:59:42Z +8997 2005-07-30T04:53:56Z 850 31 2005-08-03T07:10:56Z 1 2020-02-15T06:59:42Z +8998 2005-07-30T04:54:14Z 1573 120 2005-08-08T08:18:14Z 2 2020-02-15T06:59:42Z +8999 2005-07-30T04:55:46Z 3458 424 2005-08-01T00:16:46Z 2 2020-02-15T06:59:42Z +9000 2005-07-30T04:58:55Z 3763 290 2005-08-08T04:01:55Z 2 2020-02-15T06:59:42Z +9001 2005-07-30T04:59:41Z 3682 440 2005-07-31T08:56:41Z 2 2020-02-15T06:59:42Z +9002 2005-07-30T05:02:21Z 1936 137 2005-07-31T04:58:21Z 1 2020-02-15T06:59:42Z +9003 2005-07-30T05:02:52Z 1605 507 2005-07-31T10:33:52Z 1 2020-02-15T06:59:42Z +9004 2005-07-30T05:04:27Z 3775 178 2005-07-31T00:49:27Z 1 2020-02-15T06:59:42Z +9005 2005-07-30T05:04:58Z 157 204 2005-08-03T07:41:58Z 2 2020-02-15T06:59:42Z +9006 2005-07-30T05:06:32Z 3315 49 2005-07-31T08:24:32Z 1 2020-02-15T06:59:42Z +9007 2005-07-30T05:09:32Z 2813 63 2005-08-02T06:12:32Z 2 2020-02-15T06:59:42Z +9008 2005-07-30T05:10:26Z 3592 371 2005-07-31T08:13:26Z 1 2020-02-15T06:59:42Z +9009 2005-07-30T05:12:01Z 4136 166 2005-08-07T10:58:01Z 1 2020-02-15T06:59:42Z +9010 2005-07-30T05:12:04Z 1698 152 2005-08-06T02:54:04Z 2 2020-02-15T06:59:42Z +9011 2005-07-30T05:16:29Z 2799 236 2005-08-05T06:57:29Z 1 2020-02-15T06:59:42Z +9012 2005-07-30T05:18:57Z 3604 494 2005-08-06T06:21:57Z 1 2020-02-15T06:59:42Z +9013 2005-07-30T05:19:20Z 2367 347 2005-08-04T01:35:20Z 1 2020-02-15T06:59:42Z +9014 2005-07-30T05:19:27Z 311 297 2005-08-01T01:10:27Z 2 2020-02-15T06:59:42Z +9015 2005-07-30T05:21:32Z 4128 203 2005-08-08T07:03:32Z 2 2020-02-15T06:59:42Z +9016 2005-07-30T05:26:13Z 4309 312 2005-08-04T00:25:13Z 2 2020-02-15T06:59:42Z +9017 2005-07-30T05:26:20Z 3325 319 2005-08-04T10:00:20Z 2 2020-02-15T06:59:42Z +9018 2005-07-30T05:28:40Z 1982 218 2005-08-07T01:34:40Z 1 2020-02-15T06:59:42Z +9019 2005-07-30T05:28:53Z 946 235 2005-08-03T02:16:53Z 2 2020-02-15T06:59:42Z +9020 2005-07-30T05:31:27Z 1700 142 2005-08-08T06:44:27Z 2 2020-02-15T06:59:42Z +9021 2005-07-30T05:34:24Z 674 498 2005-08-03T04:13:24Z 1 2020-02-15T06:59:42Z +9022 2005-07-30T05:34:45Z 4473 159 2005-08-03T23:57:45Z 2 2020-02-15T06:59:42Z +9023 2005-07-30T05:36:40Z 2911 148 2005-08-07T06:20:40Z 1 2020-02-15T06:59:42Z +9024 2005-07-30T05:44:42Z 164 329 2005-08-05T03:15:42Z 2 2020-02-15T06:59:42Z +9025 2005-07-30T05:50:08Z 2244 473 2005-07-31T09:58:08Z 1 2020-02-15T06:59:42Z +9026 2005-07-30T05:55:31Z 1524 423 2005-08-01T03:19:31Z 1 2020-02-15T06:59:42Z +9027 2005-07-30T05:58:27Z 449 72 2005-08-03T03:02:27Z 1 2020-02-15T06:59:42Z +9028 2005-07-30T06:00:35Z 2687 119 2005-08-02T01:35:35Z 1 2020-02-15T06:59:42Z +9029 2005-07-30T06:03:11Z 2220 52 2005-08-04T01:42:11Z 1 2020-02-15T06:59:42Z +9030 2005-07-30T06:05:38Z 2237 367 2005-08-03T00:19:38Z 1 2020-02-15T06:59:42Z +9031 2005-07-30T06:06:10Z 2377 2 2005-08-04T10:45:10Z 2 2020-02-15T06:59:42Z +9032 2005-07-30T06:06:54Z 4448 369 2005-08-01T05:27:54Z 1 2020-02-15T06:59:42Z +9033 2005-07-30T06:07:42Z 3416 35 2005-08-05T01:18:42Z 1 2020-02-15T06:59:42Z +9034 2005-07-30T06:10:58Z 3847 144 2005-08-08T05:00:58Z 2 2020-02-15T06:59:42Z +9035 2005-07-30T06:16:07Z 3785 243 2005-08-06T09:22:07Z 1 2020-02-15T06:59:42Z +9036 2005-07-30T06:18:38Z 790 18 2005-07-31T01:22:38Z 1 2020-02-15T06:59:42Z +9037 2005-07-30T06:23:14Z 3833 356 2005-08-08T06:25:14Z 1 2020-02-15T06:59:42Z +9038 2005-07-30T06:23:35Z 217 514 2005-08-06T11:10:35Z 1 2020-02-15T06:59:42Z +9039 2005-07-30T06:24:28Z 4493 485 2005-08-08T00:28:28Z 1 2020-02-15T06:59:42Z +9040 2005-07-30T06:31:45Z 392 33 2005-08-03T12:20:45Z 1 2020-02-15T06:59:42Z +9041 2005-07-30T06:32:36Z 1103 454 2005-08-01T10:28:36Z 2 2020-02-15T06:59:42Z +9042 2005-07-30T06:33:55Z 2770 398 2005-08-04T09:31:55Z 2 2020-02-15T06:59:42Z +9043 2005-07-30T06:34:07Z 4127 9 2005-08-02T01:16:07Z 1 2020-02-15T06:59:42Z +9044 2005-07-30T06:35:21Z 3796 319 2005-07-31T10:27:21Z 1 2020-02-15T06:59:42Z +9045 2005-07-30T06:36:57Z 4521 46 2005-08-08T01:51:57Z 1 2020-02-15T06:59:42Z +9046 2005-07-30T06:46:55Z 1736 215 2005-08-01T02:21:55Z 2 2020-02-15T06:59:42Z +9047 2005-07-30T06:56:33Z 256 522 2005-08-08T06:40:33Z 2 2020-02-15T06:59:42Z +9048 2005-07-30T06:57:07Z 3929 100 2005-08-05T00:57:07Z 1 2020-02-15T06:59:42Z +9049 2005-07-30T06:57:28Z 2620 417 2005-08-04T09:02:28Z 1 2020-02-15T06:59:42Z +9050 2005-07-30T06:59:55Z 106 40 2005-08-06T06:37:55Z 1 2020-02-15T06:59:42Z +9051 2005-07-30T07:05:54Z 1847 337 2005-08-07T09:12:54Z 2 2020-02-15T06:59:42Z +9052 2005-07-30T07:06:08Z 3351 408 2005-08-03T10:30:08Z 1 2020-02-15T06:59:42Z +9053 2005-07-30T07:07:39Z 2535 485 2005-08-01T09:22:39Z 2 2020-02-15T06:59:42Z +9054 2005-07-30T07:11:44Z 2860 209 2005-08-08T01:55:44Z 2 2020-02-15T06:59:42Z +9055 2005-07-30T07:13:07Z 634 512 2005-08-01T12:18:07Z 1 2020-02-15T06:59:42Z +9056 2005-07-30T07:13:20Z 4363 380 2005-08-03T07:36:20Z 1 2020-02-15T06:59:42Z +9057 2005-07-30T07:14:18Z 3141 202 2005-08-01T05:10:18Z 2 2020-02-15T06:59:42Z +9058 2005-07-30T07:15:45Z 4214 403 2005-07-31T02:57:45Z 2 2020-02-15T06:59:42Z +9059 2005-07-30T07:18:44Z 480 267 2005-08-08T08:39:44Z 1 2020-02-15T06:59:42Z +9060 2005-07-30T07:20:36Z 4360 87 2005-08-03T10:51:36Z 1 2020-02-15T06:59:42Z +9061 2005-07-30T07:21:52Z 1933 255 2005-08-08T10:52:52Z 1 2020-02-15T06:59:42Z +9062 2005-07-30T07:23:17Z 2780 358 2005-08-02T12:07:17Z 1 2020-02-15T06:59:42Z +9063 2005-07-30T07:24:34Z 2851 564 2005-08-05T01:28:34Z 2 2020-02-15T06:59:42Z +9064 2005-07-30T07:24:55Z 1417 194 2005-08-07T08:44:55Z 2 2020-02-15T06:59:42Z +9065 2005-07-30T07:25:09Z 349 238 2005-07-31T05:18:09Z 2 2020-02-15T06:59:42Z +9066 2005-07-30T07:28:54Z 196 171 2005-08-02T05:23:54Z 1 2020-02-15T06:59:42Z +9067 2005-07-30T07:31:01Z 3628 382 2005-08-04T11:44:01Z 2 2020-02-15T06:59:42Z +9068 2005-07-30T07:31:45Z 2264 78 2005-08-08T06:40:45Z 1 2020-02-15T06:59:42Z +9069 2005-07-30T07:39:59Z 1852 258 2005-08-02T04:10:59Z 1 2020-02-15T06:59:42Z +9070 2005-07-30T07:40:39Z 3690 276 2005-08-01T04:19:39Z 2 2020-02-15T06:59:42Z +9071 2005-07-30T07:40:58Z 3151 523 2005-08-01T06:59:58Z 2 2020-02-15T06:59:42Z +9072 2005-07-30T07:45:49Z 4536 106 2005-08-04T10:00:49Z 1 2020-02-15T06:59:42Z +9073 2005-07-30T07:49:56Z 2185 141 2005-08-05T06:25:56Z 2 2020-02-15T06:59:42Z +9074 2005-07-30T07:50:10Z 3244 84 2005-08-01T11:21:10Z 2 2020-02-15T06:59:42Z +9075 2005-07-30T07:55:14Z 1931 20 2005-08-02T13:49:14Z 1 2020-02-15T06:59:42Z +9076 2005-07-30T07:58:12Z 496 447 2005-08-08T06:04:12Z 1 2020-02-15T06:59:42Z +9077 2005-07-30T08:00:19Z 4324 471 2005-08-08T11:21:19Z 1 2020-02-15T06:59:42Z +9078 2005-07-30T08:01:00Z 955 300 2005-07-31T10:39:00Z 1 2020-02-15T06:59:42Z +9079 2005-07-30T08:02:00Z 2143 193 2005-07-31T04:02:00Z 2 2020-02-15T06:59:42Z +9080 2005-07-30T08:02:39Z 94 276 2005-08-06T12:02:39Z 1 2020-02-15T06:59:42Z +9081 2005-07-30T08:09:58Z 3040 572 2005-08-03T13:27:58Z 1 2020-02-15T06:59:42Z +9082 2005-07-30T08:11:22Z 4042 438 2005-08-06T09:26:22Z 2 2020-02-15T06:59:42Z +9083 2005-07-30T08:14:27Z 456 488 2005-08-07T14:02:27Z 1 2020-02-15T06:59:42Z +9084 2005-07-30T08:14:29Z 3950 171 2005-08-03T11:12:29Z 2 2020-02-15T06:59:42Z +9085 2005-07-30T08:17:24Z 3400 33 2005-08-03T09:35:24Z 2 2020-02-15T06:59:42Z +9086 2005-07-30T08:18:46Z 2779 57 2005-08-06T06:10:46Z 2 2020-02-15T06:59:42Z +9087 2005-07-30T08:19:47Z 4048 546 2005-08-02T07:15:47Z 1 2020-02-15T06:59:42Z +9088 2005-07-30T08:21:02Z 3407 245 2005-08-01T09:55:02Z 1 2020-02-15T06:59:42Z +9089 2005-07-30T08:23:39Z 490 369 2005-07-31T06:00:39Z 1 2020-02-15T06:59:42Z +9090 2005-07-30T08:24:42Z 3426 104 2005-08-08T06:17:42Z 2 2020-02-15T06:59:42Z +9091 2005-07-30T08:30:45Z 2249 66 2005-08-07T13:28:45Z 1 2020-02-15T06:59:42Z +9092 2005-07-30T08:30:56Z 1877 17 2005-08-06T08:09:56Z 2 2020-02-15T06:59:42Z +9093 2005-07-30T08:33:24Z 2208 96 2005-08-04T11:07:24Z 1 2020-02-15T06:59:42Z +9094 2005-07-30T08:35:10Z 2699 140 2005-08-07T08:18:10Z 2 2020-02-15T06:59:42Z +9095 2005-07-30T08:38:36Z 3019 511 2005-07-31T06:14:36Z 1 2020-02-15T06:59:42Z +9096 2005-07-30T08:39:23Z 540 216 2005-08-01T03:33:23Z 1 2020-02-15T06:59:42Z +9097 2005-07-30T08:40:35Z 570 173 2005-08-04T11:19:35Z 2 2020-02-15T06:59:42Z +9098 2005-07-30T08:44:21Z 1267 144 2005-08-08T12:31:21Z 1 2020-02-15T06:59:42Z +9099 2005-07-30T08:45:48Z 594 250 2005-08-01T03:18:48Z 2 2020-02-15T06:59:42Z +9100 2005-07-30T08:46:09Z 4117 4 2005-08-05T10:34:09Z 1 2020-02-15T06:59:42Z +9101 2005-07-30T08:47:13Z 3165 566 2005-08-02T12:52:13Z 1 2020-02-15T06:59:42Z +9102 2005-07-30T08:48:20Z 1154 276 2005-08-04T10:19:20Z 1 2020-02-15T06:59:42Z +9103 2005-07-30T08:49:26Z 3806 280 2005-07-31T14:15:26Z 1 2020-02-15T06:59:42Z +9104 2005-07-30T08:49:55Z 3372 322 2005-08-06T12:23:55Z 1 2020-02-15T06:59:42Z +9105 2005-07-30T08:50:25Z 4443 262 2005-08-05T06:08:25Z 1 2020-02-15T06:59:42Z +9106 2005-07-30T08:52:34Z 2935 148 2005-08-02T07:38:34Z 2 2020-02-15T06:59:42Z +9107 2005-07-30T08:52:45Z 1068 531 2005-08-05T08:39:45Z 2 2020-02-15T06:59:42Z +9108 2005-07-30T08:56:36Z 3977 490 2005-08-04T11:07:36Z 1 2020-02-15T06:59:42Z +9109 2005-07-30T08:58:24Z 787 266 2005-08-07T06:56:24Z 1 2020-02-15T06:59:42Z +9110 2005-07-30T09:05:42Z 1474 317 2005-08-03T05:15:42Z 1 2020-02-15T06:59:42Z +9111 2005-07-30T09:05:44Z 166 211 2005-08-04T14:27:44Z 2 2020-02-15T06:59:42Z +9112 2005-07-30T09:06:31Z 395 74 2005-08-04T05:12:31Z 2 2020-02-15T06:59:42Z +9113 2005-07-30T09:09:03Z 3903 374 2005-07-31T03:13:03Z 1 2020-02-15T06:59:42Z +9114 2005-07-30T09:13:21Z 893 18 2005-08-05T06:00:21Z 2 2020-02-15T06:59:42Z +9115 2005-07-30T09:13:55Z 3750 322 2005-08-04T04:02:55Z 2 2020-02-15T06:59:42Z +9116 2005-07-30T09:19:41Z 2917 446 2005-08-03T08:01:41Z 2 2020-02-15T06:59:42Z +9117 2005-07-30T09:20:59Z 3055 371 2005-08-07T08:47:59Z 1 2020-02-15T06:59:42Z +9118 2005-07-30T09:24:18Z 4538 172 2005-08-02T14:46:18Z 2 2020-02-15T06:59:42Z +9119 2005-07-30T09:25:56Z 275 305 2005-08-03T03:36:56Z 1 2020-02-15T06:59:42Z +9120 2005-07-30T09:26:08Z 139 473 2005-08-08T09:52:08Z 1 2020-02-15T06:59:42Z +9121 2005-07-30T09:36:26Z 3098 150 2005-08-05T15:17:26Z 2 2020-02-15T06:59:42Z +9122 2005-07-30T09:36:52Z 627 365 2005-08-05T13:20:52Z 1 2020-02-15T06:59:42Z +9123 2005-07-30T09:39:15Z 3748 293 2005-08-02T08:12:15Z 2 2020-02-15T06:59:42Z +9124 2005-07-30T09:43:12Z 4552 105 2005-08-06T06:17:12Z 1 2020-02-15T06:59:42Z +9125 2005-07-30T09:43:39Z 333 335 2005-08-07T14:02:39Z 1 2020-02-15T06:59:42Z +9126 2005-07-30T09:44:15Z 4495 590 2005-08-02T11:02:15Z 2 2020-02-15T06:59:42Z +9127 2005-07-30T09:46:36Z 4114 300 2005-07-31T07:43:36Z 1 2020-02-15T06:59:42Z +9128 2005-07-30T09:51:14Z 3647 372 2005-08-07T06:23:14Z 1 2020-02-15T06:59:42Z +9129 2005-07-30T09:51:21Z 2658 125 2005-08-07T08:50:21Z 2 2020-02-15T06:59:42Z +9130 2005-07-30T09:55:10Z 1715 354 2005-08-04T08:57:10Z 1 2020-02-15T06:59:42Z +9131 2005-07-30T09:55:57Z 623 142 2005-08-01T14:21:57Z 1 2020-02-15T06:59:42Z +9132 2005-07-30T09:56:00Z 402 159 2005-08-02T09:22:00Z 1 2020-02-15T06:59:42Z +9133 2005-07-30T09:59:00Z 408 576 2005-08-07T04:24:00Z 1 2020-02-15T06:59:42Z +9134 2005-07-30T10:00:21Z 3797 559 2005-08-01T05:01:21Z 1 2020-02-15T06:59:42Z +9135 2005-07-30T10:06:53Z 821 161 2005-08-03T13:57:53Z 2 2020-02-15T06:59:42Z +9136 2005-07-30T10:07:20Z 1734 57 2005-07-31T08:20:20Z 2 2020-02-15T06:59:42Z +9137 2005-07-30T10:09:24Z 840 459 2005-08-06T04:30:24Z 2 2020-02-15T06:59:42Z +9138 2005-07-30T10:11:52Z 2550 17 2005-07-31T07:05:52Z 2 2020-02-15T06:59:42Z +9139 2005-07-30T10:11:52Z 2809 133 2005-08-03T12:44:52Z 1 2020-02-15T06:59:42Z +9140 2005-07-30T10:12:01Z 4095 25 2005-08-06T09:16:01Z 2 2020-02-15T06:59:42Z +9141 2005-07-30T10:16:04Z 3087 484 2005-08-05T08:01:04Z 1 2020-02-15T06:59:42Z +9142 2005-07-30T10:21:03Z 4467 486 2005-08-04T15:14:03Z 1 2020-02-15T06:59:42Z +9143 2005-07-30T10:22:11Z 2962 511 2005-08-07T06:13:11Z 2 2020-02-15T06:59:42Z +9144 2005-07-30T10:22:15Z 718 381 2005-08-05T08:14:15Z 1 2020-02-15T06:59:42Z +9145 2005-07-30T10:27:55Z 559 176 2005-08-07T14:41:55Z 2 2020-02-15T06:59:42Z +9146 2005-07-30T10:32:08Z 483 302 2005-08-08T14:30:08Z 1 2020-02-15T06:59:42Z +9147 2005-07-30T10:38:59Z 4167 394 2005-08-02T11:45:59Z 2 2020-02-15T06:59:42Z +9148 2005-07-30T10:39:10Z 1407 333 2005-08-04T07:17:10Z 2 2020-02-15T06:59:42Z +9149 2005-07-30T10:45:12Z 2632 21 2005-08-01T09:40:12Z 1 2020-02-15T06:59:42Z +9150 2005-07-30T10:49:32Z 2834 213 2005-08-08T15:43:32Z 1 2020-02-15T06:59:42Z +9151 2005-07-30T10:50:53Z 3956 102 2005-08-07T08:19:53Z 1 2020-02-15T06:59:42Z +9152 2005-07-30T10:51:27Z 3607 595 2005-07-31T06:38:27Z 2 2020-02-15T06:59:42Z +9153 2005-07-30T10:58:16Z 3743 589 2005-08-03T06:16:16Z 2 2020-02-15T06:59:42Z +9154 2005-07-30T10:59:54Z 576 312 2005-08-05T16:47:54Z 1 2020-02-15T06:59:42Z +9155 2005-07-30T11:00:00Z 3787 107 2005-08-02T05:24:00Z 2 2020-02-15T06:59:42Z +9156 2005-07-30T11:04:55Z 1747 145 2005-07-31T14:10:55Z 2 2020-02-15T06:59:42Z +9157 2005-07-30T11:06:23Z 146 19 2005-08-05T05:29:23Z 2 2020-02-15T06:59:42Z +9158 2005-07-30T11:12:03Z 4017 16 2005-08-02T05:55:03Z 2 2020-02-15T06:59:42Z +9159 2005-07-30T11:16:37Z 1234 217 2005-08-03T10:32:37Z 1 2020-02-15T06:59:42Z +9160 2005-07-30T11:17:33Z 183 34 2005-08-06T15:16:33Z 2 2020-02-15T06:59:42Z +9161 2005-07-30T11:19:18Z 969 433 2005-08-02T05:32:18Z 1 2020-02-15T06:59:42Z +9162 2005-07-30T11:21:56Z 4198 184 2005-08-02T15:32:56Z 1 2020-02-15T06:59:42Z +9163 2005-07-30T11:23:22Z 4562 345 2005-07-31T07:34:22Z 2 2020-02-15T06:59:42Z +9164 2005-07-30T11:24:14Z 4434 342 2005-08-08T16:24:14Z 1 2020-02-15T06:59:42Z +9165 2005-07-30T11:24:28Z 4034 291 2005-08-03T09:38:28Z 1 2020-02-15T06:59:42Z +9166 2005-07-30T11:26:28Z 308 12 2005-08-04T12:32:28Z 1 2020-02-15T06:59:42Z +9167 2005-07-30T11:30:37Z 1785 162 2005-08-08T17:13:37Z 1 2020-02-15T06:59:42Z +9168 2005-07-30T11:31:17Z 2035 75 2005-08-08T16:56:17Z 2 2020-02-15T06:59:42Z +9169 2005-07-30T11:35:00Z 1567 245 2005-08-06T16:16:00Z 2 2020-02-15T06:59:42Z +9170 2005-07-30T11:35:24Z 4279 425 2005-08-05T05:36:24Z 1 2020-02-15T06:59:42Z +9171 2005-07-30T11:36:24Z 1832 189 2005-08-07T06:04:24Z 2 2020-02-15T06:59:42Z +9172 2005-07-30T11:36:38Z 695 437 2005-08-04T09:39:38Z 1 2020-02-15T06:59:42Z +9173 2005-07-30T11:40:10Z 2103 381 2005-08-04T05:40:10Z 2 2020-02-15T06:59:42Z +9174 2005-07-30T11:42:10Z 2636 144 2005-07-31T09:52:10Z 1 2020-02-15T06:59:42Z +9175 2005-07-30T11:47:48Z 358 133 2005-08-02T08:13:48Z 1 2020-02-15T06:59:42Z +9176 2005-07-30T11:50:54Z 2659 260 2005-08-02T14:25:54Z 2 2020-02-15T06:59:42Z +9177 2005-07-30T11:52:40Z 1088 400 2005-08-08T09:35:40Z 1 2020-02-15T06:59:42Z +9178 2005-07-30T11:58:50Z 2046 448 2005-08-08T15:24:50Z 2 2020-02-15T06:59:42Z +9179 2005-07-30T12:02:41Z 62 50 2005-08-05T15:23:41Z 2 2020-02-15T06:59:42Z +9180 2005-07-30T12:03:15Z 3479 442 2005-08-01T14:25:15Z 1 2020-02-15T06:59:42Z +9181 2005-07-30T12:05:58Z 3953 224 2005-08-02T06:22:58Z 1 2020-02-15T06:59:42Z +9182 2005-07-30T12:06:58Z 2533 165 2005-08-08T11:33:58Z 2 2020-02-15T06:59:42Z +9183 2005-07-30T12:09:56Z 4320 475 2005-08-06T11:50:56Z 2 2020-02-15T06:59:42Z +9184 2005-07-30T12:10:19Z 51 365 2005-08-01T07:35:19Z 2 2020-02-15T06:59:42Z +9185 2005-07-30T12:10:40Z 2268 426 2005-08-06T07:01:40Z 1 2020-02-15T06:59:42Z +9186 2005-07-30T12:13:48Z 4513 273 2005-07-31T11:59:48Z 1 2020-02-15T06:59:42Z +9187 2005-07-30T12:14:03Z 4008 469 2005-08-04T13:10:03Z 2 2020-02-15T06:59:42Z +9188 2005-07-30T12:19:54Z 727 195 2005-08-06T09:12:54Z 2 2020-02-15T06:59:42Z +9189 2005-07-30T12:20:59Z 4529 485 2005-08-06T16:15:59Z 1 2020-02-15T06:59:42Z +9190 2005-07-30T12:24:17Z 4421 177 2005-08-03T07:41:17Z 2 2020-02-15T06:59:42Z +9191 2005-07-30T12:25:51Z 500 314 2005-08-05T16:13:51Z 1 2020-02-15T06:59:42Z +9192 2005-07-30T12:26:26Z 2372 102 2005-08-04T07:54:26Z 2 2020-02-15T06:59:42Z +9193 2005-07-30T12:28:42Z 3470 69 2005-08-02T12:17:42Z 2 2020-02-15T06:59:42Z +9194 2005-07-30T12:28:45Z 2467 294 2005-08-06T14:38:45Z 1 2020-02-15T06:59:42Z +9195 2005-07-30T12:29:43Z 944 440 2005-08-04T12:35:43Z 1 2020-02-15T06:59:42Z +9196 2005-07-30T12:30:19Z 4298 251 2005-07-31T18:01:19Z 2 2020-02-15T06:59:42Z +9197 2005-07-30T12:31:36Z 3214 168 2005-08-03T09:05:36Z 1 2020-02-15T06:59:42Z +9198 2005-07-30T12:37:08Z 2371 105 2005-08-07T16:37:08Z 2 2020-02-15T06:59:42Z +9199 2005-07-30T12:38:00Z 4336 580 2005-08-01T07:09:00Z 1 2020-02-15T06:59:42Z +9200 2005-07-30T12:39:52Z 3277 137 2005-08-08T09:43:52Z 2 2020-02-15T06:59:42Z +9201 2005-07-30T12:42:21Z 4387 291 2005-08-08T06:50:21Z 1 2020-02-15T06:59:42Z +9202 2005-07-30T12:43:24Z 4525 466 2005-08-07T10:39:24Z 2 2020-02-15T06:59:42Z +9203 2005-07-30T12:43:40Z 2112 169 2005-08-01T09:31:40Z 2 2020-02-15T06:59:42Z +9204 2005-07-30T12:43:58Z 4378 43 2005-08-03T16:26:58Z 2 2020-02-15T06:59:42Z +9205 2005-07-30T12:46:40Z 4165 259 2005-08-08T14:58:40Z 1 2020-02-15T06:59:42Z +9206 2005-07-30T12:46:59Z 2021 404 2005-08-03T14:58:59Z 1 2020-02-15T06:59:42Z +9207 2005-07-30T12:49:57Z 1346 345 2005-07-31T14:32:57Z 2 2020-02-15T06:59:42Z +9208 2005-07-30T12:54:03Z 2751 339 2005-08-06T17:22:03Z 2 2020-02-15T06:59:42Z +9209 2005-07-30T12:55:36Z 3940 23 2005-08-03T11:31:36Z 2 2020-02-15T06:59:42Z +9210 2005-07-30T12:56:44Z 101 105 2005-08-08T09:41:44Z 2 2020-02-15T06:59:42Z +9211 2005-07-30T12:59:45Z 595 57 2005-08-07T18:17:45Z 2 2020-02-15T06:59:42Z +9212 2005-07-30T13:03:13Z 2111 73 2005-08-06T09:48:13Z 1 2020-02-15T06:59:42Z +9213 2005-07-30T13:07:11Z 184 388 2005-08-01T15:30:11Z 1 2020-02-15T06:59:43Z +9214 2005-07-30T13:10:14Z 2823 181 2005-08-06T14:22:14Z 2 2020-02-15T06:59:43Z +9215 2005-07-30T13:11:11Z 3591 128 2005-08-06T13:06:11Z 1 2020-02-15T06:59:43Z +9216 2005-07-30T13:11:19Z 2783 38 2005-07-31T11:27:19Z 2 2020-02-15T06:59:43Z +9217 2005-07-30T13:13:55Z 1561 112 2005-08-05T17:27:55Z 1 2020-02-15T06:59:43Z +9218 2005-07-30T13:14:35Z 119 172 2005-08-07T18:03:35Z 1 2020-02-15T06:59:43Z +9219 2005-07-30T13:15:21Z 771 329 2005-08-01T11:39:21Z 1 2020-02-15T06:59:43Z +9220 2005-07-30T13:17:27Z 2463 569 2005-08-07T11:34:27Z 2 2020-02-15T06:59:43Z +9221 2005-07-30T13:20:06Z 2496 113 2005-08-06T13:58:06Z 2 2020-02-15T06:59:43Z +9222 2005-07-30T13:21:08Z 3648 95 2005-08-08T10:42:08Z 2 2020-02-15T06:59:43Z +9223 2005-07-30T13:23:20Z 3231 595 2005-08-04T11:24:20Z 1 2020-02-15T06:59:43Z +9224 2005-07-30T13:25:37Z 2260 406 2005-08-01T15:13:37Z 2 2020-02-15T06:59:43Z +9225 2005-07-30T13:29:47Z 1992 391 2005-08-02T17:08:47Z 2 2020-02-15T06:59:43Z +9226 2005-07-30T13:31:20Z 4315 3 2005-08-06T16:42:20Z 1 2020-02-15T06:59:43Z +9227 2005-07-30T13:36:13Z 2353 522 2005-08-07T17:39:13Z 1 2020-02-15T06:59:43Z +9228 2005-07-30T13:36:57Z 2325 91 2005-08-05T10:43:57Z 1 2020-02-15T06:59:43Z +9229 2005-07-30T13:38:17Z 3780 276 2005-08-08T18:17:17Z 2 2020-02-15T06:59:43Z +9230 2005-07-30T13:39:42Z 1199 109 2005-07-31T19:20:42Z 1 2020-02-15T06:59:43Z +9231 2005-07-30T13:42:15Z 1587 489 2005-08-02T19:27:15Z 1 2020-02-15T06:59:43Z +9232 2005-07-30T13:43:00Z 1991 502 2005-08-02T11:39:00Z 2 2020-02-15T06:59:43Z +9233 2005-07-30T13:44:15Z 2320 357 2005-08-07T13:02:15Z 2 2020-02-15T06:59:43Z +9234 2005-07-30T13:45:54Z 1660 128 2005-08-02T15:33:54Z 1 2020-02-15T06:59:43Z +9235 2005-07-30T13:47:17Z 984 181 2005-08-06T17:15:17Z 2 2020-02-15T06:59:43Z +9236 2005-07-30T13:47:43Z 4030 2 2005-08-08T18:52:43Z 1 2020-02-15T06:59:43Z +9237 2005-07-30T13:48:17Z 2777 157 2005-07-31T13:57:17Z 2 2020-02-15T06:59:43Z +9238 2005-07-30T13:49:43Z 3356 12 2005-08-08T08:25:43Z 2 2020-02-15T06:59:43Z +9239 2005-07-30T13:50:52Z 1728 580 2005-08-06T16:28:52Z 1 2020-02-15T06:59:43Z +9240 2005-07-30T13:57:54Z 587 92 2005-08-03T12:23:54Z 2 2020-02-15T06:59:43Z +9241 2005-07-30T13:58:41Z 4145 187 2005-08-04T09:44:41Z 2 2020-02-15T06:59:43Z +9242 2005-07-30T14:03:58Z 755 306 2005-08-02T18:09:58Z 2 2020-02-15T06:59:43Z +9243 2005-07-30T14:06:27Z 876 516 2005-08-06T09:26:27Z 2 2020-02-15T06:59:43Z +9244 2005-07-30T14:06:53Z 3640 27 2005-08-03T19:46:53Z 1 2020-02-15T06:59:43Z +9245 2005-07-30T14:07:50Z 2586 116 2005-08-06T17:59:50Z 2 2020-02-15T06:59:43Z +9246 2005-07-30T14:12:31Z 3390 185 2005-08-02T14:25:31Z 2 2020-02-15T06:59:43Z +9247 2005-07-30T14:13:56Z 4106 426 2005-08-02T16:34:56Z 2 2020-02-15T06:59:43Z +9248 2005-07-30T14:14:11Z 1382 2 2005-08-05T11:19:11Z 1 2020-02-15T06:59:43Z +9249 2005-07-30T14:15:02Z 2015 296 2005-08-05T13:02:02Z 1 2020-02-15T06:59:43Z +9250 2005-07-30T14:18:16Z 4544 539 2005-08-04T12:31:16Z 1 2020-02-15T06:59:43Z +9251 2005-07-30T14:19:25Z 2948 390 2005-08-08T11:22:25Z 2 2020-02-15T06:59:43Z +9252 2005-07-30T14:19:59Z 2350 322 2005-08-07T15:17:59Z 1 2020-02-15T06:59:43Z +9253 2005-07-30T14:20:12Z 4183 151 2005-07-31T11:31:12Z 2 2020-02-15T06:59:43Z +9254 2005-07-30T14:26:11Z 495 33 2005-08-04T16:12:11Z 1 2020-02-15T06:59:43Z +9255 2005-07-30T14:26:46Z 1596 23 2005-08-07T18:16:46Z 1 2020-02-15T06:59:43Z +9256 2005-07-30T14:29:29Z 4021 19 2005-08-05T16:59:29Z 1 2020-02-15T06:59:43Z +9257 2005-07-30T14:30:38Z 2615 466 2005-08-04T17:57:38Z 1 2020-02-15T06:59:43Z +9258 2005-07-30T14:31:31Z 2007 275 2005-08-05T16:29:31Z 2 2020-02-15T06:59:43Z +9259 2005-07-30T14:37:44Z 97 138 2005-08-06T18:05:44Z 2 2020-02-15T06:59:43Z +9260 2005-07-30T14:38:22Z 3969 13 2005-08-07T18:47:22Z 2 2020-02-15T06:59:43Z +9261 2005-07-30T14:39:35Z 372 380 2005-08-08T11:26:35Z 1 2020-02-15T06:59:43Z +9262 2005-07-30T14:45:02Z 2322 349 2005-08-05T15:18:02Z 2 2020-02-15T06:59:43Z +9263 2005-07-30T14:48:24Z 73 410 2005-08-04T19:06:24Z 2 2020-02-15T06:59:43Z +9264 2005-07-30T14:51:36Z 4071 157 2005-08-02T10:06:36Z 1 2020-02-15T06:59:43Z +9265 2005-07-30T14:55:25Z 3700 560 2005-08-02T11:34:25Z 1 2020-02-15T06:59:43Z +9266 2005-07-30T14:59:01Z 1705 364 2005-07-31T17:01:01Z 2 2020-02-15T06:59:43Z +9267 2005-07-30T14:59:05Z 645 409 2005-08-04T10:17:05Z 1 2020-02-15T06:59:43Z +9268 2005-07-30T15:02:30Z 3593 592 2005-08-05T12:50:30Z 1 2020-02-15T06:59:43Z +9269 2005-07-30T15:02:33Z 548 435 2005-08-02T16:32:33Z 1 2020-02-15T06:59:43Z +9270 2005-07-30T15:03:16Z 700 232 2005-07-31T16:09:16Z 2 2020-02-15T06:59:43Z +9271 2005-07-30T15:04:31Z 2660 100 2005-07-31T20:33:31Z 1 2020-02-15T06:59:43Z +9272 2005-07-30T15:05:22Z 1352 553 2005-08-05T10:02:22Z 2 2020-02-15T06:59:43Z +9273 2005-07-30T15:05:36Z 1867 497 2005-08-08T09:07:36Z 1 2020-02-15T06:59:43Z +9274 2005-07-30T15:07:04Z 4424 47 2005-08-06T11:17:04Z 2 2020-02-15T06:59:43Z +9275 2005-07-30T15:09:15Z 1916 439 2005-07-31T10:23:15Z 2 2020-02-15T06:59:43Z +9276 2005-07-30T15:09:28Z 1528 237 2005-08-06T19:39:28Z 1 2020-02-15T06:59:43Z +9277 2005-07-30T15:13:45Z 3734 82 2005-08-05T10:25:45Z 2 2020-02-15T06:59:43Z +9278 2005-07-30T15:15:19Z 3782 581 2005-08-03T20:21:19Z 1 2020-02-15T06:59:43Z +9279 2005-07-30T15:15:21Z 1070 567 2005-08-07T18:46:21Z 1 2020-02-15T06:59:43Z +9280 2005-07-30T15:15:38Z 4103 286 2005-08-05T19:20:38Z 2 2020-02-15T06:59:43Z +9281 2005-07-30T15:15:51Z 3086 398 2005-08-05T12:58:51Z 1 2020-02-15T06:59:43Z +9282 2005-07-30T15:17:31Z 736 259 2005-08-07T20:46:31Z 1 2020-02-15T06:59:43Z +9283 2005-07-30T15:25:19Z 1858 360 2005-08-01T15:35:19Z 2 2020-02-15T06:59:43Z +9284 2005-07-30T15:25:19Z 3976 38 2005-08-01T17:45:19Z 2 2020-02-15T06:59:43Z +9285 2005-07-30T15:26:08Z 3686 273 2005-08-06T15:59:08Z 2 2020-02-15T06:59:43Z +9286 2005-07-30T15:32:28Z 2477 154 2005-07-31T20:42:28Z 2 2020-02-15T06:59:43Z +9287 2005-07-30T15:35:39Z 2048 551 2005-08-02T10:15:39Z 1 2020-02-15T06:59:43Z +9288 2005-07-30T15:56:39Z 2640 447 2005-08-04T13:25:39Z 2 2020-02-15T06:59:43Z +9289 2005-07-30T15:57:04Z 389 453 2005-08-07T18:46:04Z 1 2020-02-15T06:59:43Z +9290 2005-07-30T15:59:08Z 2275 500 2005-08-06T21:49:08Z 2 2020-02-15T06:59:43Z +9291 2005-07-30T16:03:39Z 2884 406 2005-08-05T11:11:39Z 2 2020-02-15T06:59:43Z +9292 2005-07-30T16:08:21Z 1702 11 2005-08-07T10:38:21Z 2 2020-02-15T06:59:43Z +9293 2005-07-30T16:12:28Z 1676 65 2005-08-05T18:34:28Z 2 2020-02-15T06:59:43Z +9294 2005-07-30T16:14:37Z 2468 433 2005-08-07T18:49:37Z 1 2020-02-15T06:59:43Z +9295 2005-07-30T16:18:39Z 494 102 2005-08-03T12:46:39Z 1 2020-02-15T06:59:43Z +9296 2005-07-30T16:21:13Z 4088 2 2005-08-08T11:57:13Z 1 2020-02-15T06:59:43Z +9297 2005-07-30T16:26:29Z 3502 191 2005-08-03T13:51:29Z 1 2020-02-15T06:59:43Z +9298 2005-07-30T16:27:53Z 2106 208 2005-08-07T12:32:53Z 2 2020-02-15T06:59:43Z +9299 2005-07-30T16:32:51Z 1515 555 2005-08-08T15:28:51Z 2 2020-02-15T06:59:43Z +9300 2005-07-30T16:33:12Z 1639 571 2005-08-05T15:56:12Z 1 2020-02-15T06:59:43Z +9301 2005-07-30T16:34:29Z 1073 174 2005-07-31T18:41:29Z 2 2020-02-15T06:59:43Z +9302 2005-07-30T16:34:57Z 2326 55 2005-07-31T11:08:57Z 2 2020-02-15T06:59:43Z +9303 2005-07-30T16:35:59Z 4299 186 2005-08-03T18:31:59Z 1 2020-02-15T06:59:43Z +9304 2005-07-30T16:41:34Z 2937 296 2005-08-02T13:55:34Z 2 2020-02-15T06:59:43Z +9305 2005-07-30T16:45:56Z 1224 82 2005-08-08T21:15:56Z 2 2020-02-15T06:59:43Z +9306 2005-07-30T16:47:17Z 3983 336 2005-08-02T22:15:17Z 1 2020-02-15T06:59:43Z +9307 2005-07-30T16:52:43Z 3831 538 2005-08-01T11:58:43Z 1 2020-02-15T06:59:43Z +9308 2005-07-30T16:53:21Z 2202 267 2005-08-08T15:33:21Z 2 2020-02-15T06:59:43Z +9309 2005-07-30T16:55:53Z 3616 30 2005-08-07T11:23:53Z 1 2020-02-15T06:59:43Z +9310 2005-07-30T16:57:09Z 2957 529 2005-08-03T18:14:09Z 1 2020-02-15T06:59:43Z +9311 2005-07-30T16:58:31Z 1432 178 2005-08-07T15:23:31Z 1 2020-02-15T06:59:43Z +9312 2005-07-30T16:59:17Z 2483 76 2005-08-03T17:24:17Z 2 2020-02-15T06:59:43Z +9313 2005-07-30T16:59:43Z 4070 41 2005-08-05T14:06:43Z 2 2020-02-15T06:59:43Z +9314 2005-07-30T17:05:19Z 2358 390 2005-07-31T12:19:19Z 1 2020-02-15T06:59:43Z +9315 2005-07-30T17:05:29Z 444 96 2005-08-01T12:47:29Z 1 2020-02-15T06:59:43Z +9316 2005-07-30T17:11:58Z 4409 366 2005-08-05T14:36:58Z 1 2020-02-15T06:59:43Z +9317 2005-07-30T17:13:37Z 4138 217 2005-08-08T11:33:37Z 1 2020-02-15T06:59:43Z +9318 2005-07-30T17:14:30Z 2426 314 2005-08-06T16:53:30Z 1 2020-02-15T06:59:43Z +9319 2005-07-30T17:15:27Z 4066 136 2005-08-03T14:03:27Z 1 2020-02-15T06:59:43Z +9320 2005-07-30T17:16:39Z 909 221 2005-08-06T18:43:39Z 2 2020-02-15T06:59:43Z +9321 2005-07-30T17:19:44Z 3558 112 2005-08-06T22:42:44Z 2 2020-02-15T06:59:43Z +9322 2005-07-30T17:21:39Z 223 439 2005-08-06T16:58:39Z 2 2020-02-15T06:59:43Z +9323 2005-07-30T17:21:44Z 3749 131 2005-08-03T16:28:44Z 1 2020-02-15T06:59:43Z +9324 2005-07-30T17:28:52Z 1231 332 2005-08-06T19:02:52Z 1 2020-02-15T06:59:43Z +9325 2005-07-30T17:29:19Z 1938 476 2005-08-08T12:55:19Z 2 2020-02-15T06:59:43Z +9326 2005-07-30T17:30:03Z 3772 588 2005-08-01T13:41:03Z 2 2020-02-15T06:59:43Z +9327 2005-07-30T17:31:03Z 345 373 2005-08-08T19:16:03Z 1 2020-02-15T06:59:43Z +9328 2005-07-30T17:32:11Z 1087 89 2005-08-05T13:36:11Z 1 2020-02-15T06:59:43Z +9329 2005-07-30T17:42:38Z 1293 593 2005-08-08T23:17:38Z 1 2020-02-15T06:59:43Z +9330 2005-07-30T17:44:24Z 4227 232 2005-08-08T17:39:24Z 1 2020-02-15T06:59:43Z +9331 2005-07-30T17:46:50Z 2248 274 2005-08-01T19:03:50Z 1 2020-02-15T06:59:43Z +9332 2005-07-30T17:53:39Z 1156 480 2005-08-02T12:25:39Z 1 2020-02-15T06:59:43Z +9333 2005-07-30T17:53:45Z 1377 437 2005-07-31T22:35:45Z 2 2020-02-15T06:59:43Z +9334 2005-07-30T17:56:38Z 1499 25 2005-08-03T21:27:38Z 1 2020-02-15T06:59:43Z +9335 2005-07-30T18:00:53Z 1006 522 2005-08-01T16:05:53Z 1 2020-02-15T06:59:43Z +9336 2005-07-30T18:01:15Z 1911 557 2005-08-05T23:10:15Z 1 2020-02-15T06:59:43Z +9337 2005-07-30T18:02:25Z 2363 90 2005-07-31T12:30:25Z 2 2020-02-15T06:59:43Z +9338 2005-07-30T18:03:13Z 1482 333 2005-08-08T23:57:13Z 2 2020-02-15T06:59:43Z +9339 2005-07-30T18:03:28Z 3171 68 2005-08-08T19:45:28Z 2 2020-02-15T06:59:43Z +9340 2005-07-30T18:07:16Z 3228 213 2005-08-04T14:33:16Z 2 2020-02-15T06:59:43Z +9341 2005-07-30T18:07:58Z 894 557 2005-08-01T17:43:58Z 1 2020-02-15T06:59:43Z +9342 2005-07-30T18:09:56Z 2318 552 2005-08-08T13:54:56Z 2 2020-02-15T06:59:43Z +9343 2005-07-30T18:13:13Z 3521 53 2005-08-02T13:48:13Z 1 2020-02-15T06:59:43Z +9344 2005-07-30T18:13:45Z 1005 396 2005-08-07T15:23:45Z 2 2020-02-15T06:59:43Z +9345 2005-07-30T18:13:51Z 2042 436 2005-08-07T13:45:51Z 2 2020-02-15T06:59:43Z +9346 2005-07-30T18:13:52Z 2845 196 2005-08-03T17:58:52Z 1 2020-02-15T06:59:43Z +9347 2005-07-30T18:16:03Z 3557 479 2005-08-05T18:35:03Z 1 2020-02-15T06:59:43Z +9348 2005-07-30T18:17:09Z 3128 87 2005-08-07T15:25:09Z 1 2020-02-15T06:59:43Z +9349 2005-07-30T18:20:08Z 3739 579 2005-08-08T22:06:08Z 1 2020-02-15T06:59:43Z +9350 2005-07-30T18:24:30Z 798 434 2005-08-02T15:34:30Z 2 2020-02-15T06:59:43Z +9351 2005-07-30T18:28:30Z 2063 107 2005-08-02T17:26:30Z 1 2020-02-15T06:59:43Z +9352 2005-07-30T18:29:26Z 2619 360 2005-07-31T19:43:26Z 1 2020-02-15T06:59:43Z +9353 2005-07-30T18:30:37Z 3581 283 2005-08-06T22:32:37Z 2 2020-02-15T06:59:43Z +9354 2005-07-30T18:32:51Z 510 595 2005-08-02T21:28:51Z 2 2020-02-15T06:59:43Z +9355 2005-07-30T18:35:25Z 1122 201 2005-08-03T20:33:25Z 2 2020-02-15T06:59:43Z +9356 2005-07-30T18:36:24Z 4188 60 2005-08-03T14:10:24Z 1 2020-02-15T06:59:43Z +9357 2005-07-30T18:37:00Z 3927 181 2005-08-08T19:57:00Z 2 2020-02-15T06:59:43Z +9358 2005-07-30T18:37:24Z 712 302 2005-08-07T23:34:24Z 2 2020-02-15T06:59:43Z +9359 2005-07-30T18:39:28Z 21 501 2005-07-31T15:39:28Z 1 2020-02-15T06:59:43Z +9360 2005-07-30T18:39:43Z 2119 186 2005-08-04T22:41:43Z 2 2020-02-15T06:59:43Z +9361 2005-07-30T18:43:49Z 4163 335 2005-08-06T21:24:49Z 1 2020-02-15T06:59:43Z +9362 2005-07-30T18:44:16Z 3357 420 2005-08-01T20:14:16Z 1 2020-02-15T06:59:43Z +9363 2005-07-30T18:44:23Z 873 323 2005-08-04T15:03:23Z 1 2020-02-15T06:59:43Z +9364 2005-07-30T18:44:44Z 306 87 2005-08-08T23:55:44Z 2 2020-02-15T06:59:43Z +9365 2005-07-30T18:46:02Z 1539 232 2005-08-03T20:15:02Z 1 2020-02-15T06:59:43Z +9366 2005-07-30T18:48:57Z 4013 557 2005-08-03T15:17:57Z 2 2020-02-15T06:59:43Z +9367 2005-07-30T18:49:58Z 793 557 2005-08-08T22:04:58Z 1 2020-02-15T06:59:43Z +9368 2005-07-30T18:50:53Z 3026 388 2005-08-05T17:56:53Z 2 2020-02-15T06:59:43Z +9369 2005-07-30T18:52:19Z 3538 36 2005-08-01T12:53:19Z 1 2020-02-15T06:59:43Z +9370 2005-07-30T18:57:29Z 4433 588 2005-08-01T21:35:29Z 2 2020-02-15T06:59:43Z +9371 2005-07-30T18:58:00Z 2980 4 2005-08-03T15:14:00Z 1 2020-02-15T06:59:43Z +9372 2005-07-30T19:04:30Z 4075 454 2005-08-09T00:18:30Z 2 2020-02-15T06:59:43Z +9373 2005-07-30T19:05:36Z 3478 180 2005-08-05T16:16:36Z 2 2020-02-15T06:59:43Z +9374 2005-07-30T19:10:03Z 103 302 2005-08-06T21:54:03Z 2 2020-02-15T06:59:43Z +9375 2005-07-30T19:10:17Z 3063 529 2005-08-02T23:00:17Z 1 2020-02-15T06:59:43Z +9376 2005-07-30T19:11:49Z 451 86 2005-08-04T18:14:49Z 1 2020-02-15T06:59:43Z +9377 2005-07-30T19:12:18Z 4164 421 2005-08-05T19:38:18Z 1 2020-02-15T06:59:43Z +9378 2005-07-30T19:12:54Z 2209 197 2005-08-05T18:16:54Z 1 2020-02-15T06:59:43Z +9379 2005-07-30T19:13:01Z 3855 452 2005-08-07T19:18:01Z 2 2020-02-15T06:59:43Z +9380 2005-07-30T19:17:31Z 4403 264 2005-08-01T20:46:31Z 1 2020-02-15T06:59:43Z +9381 2005-07-30T19:23:04Z 4064 329 2005-07-31T23:37:04Z 2 2020-02-15T06:59:43Z +9382 2005-07-30T19:23:44Z 2127 17 2005-08-06T16:20:44Z 2 2020-02-15T06:59:43Z +9383 2005-07-30T19:24:50Z 2806 416 2005-08-01T21:41:50Z 2 2020-02-15T06:59:43Z +9384 2005-07-30T19:25:35Z 2313 220 2005-08-08T21:50:35Z 1 2020-02-15T06:59:43Z +9385 2005-07-30T19:25:49Z 3453 570 2005-08-08T17:08:49Z 2 2020-02-15T06:59:43Z +9386 2005-07-30T19:26:21Z 1123 189 2005-08-05T21:00:21Z 2 2020-02-15T06:59:43Z +9387 2005-07-30T19:27:05Z 577 495 2005-08-07T21:19:05Z 2 2020-02-15T06:59:43Z +9388 2005-07-30T19:27:22Z 2116 332 2005-08-08T15:31:22Z 2 2020-02-15T06:59:43Z +9389 2005-07-30T19:27:59Z 3124 198 2005-08-04T18:25:59Z 2 2020-02-15T06:59:43Z +9390 2005-07-30T19:42:07Z 1794 103 2005-08-01T23:17:07Z 1 2020-02-15T06:59:43Z +9391 2005-07-30T19:48:41Z 665 273 2005-08-04T15:27:41Z 1 2020-02-15T06:59:43Z +9392 2005-07-30T19:50:13Z 2797 29 2005-08-03T22:38:13Z 2 2020-02-15T06:59:43Z +9393 2005-07-30T20:04:48Z 843 158 2005-08-02T15:52:48Z 2 2020-02-15T06:59:43Z +9394 2005-07-30T20:06:24Z 161 204 2005-08-06T22:36:24Z 1 2020-02-15T06:59:43Z +9395 2005-07-30T20:07:06Z 1298 306 2005-08-08T21:21:06Z 1 2020-02-15T06:59:43Z +9396 2005-07-30T20:07:24Z 1250 91 2005-08-03T21:20:24Z 2 2020-02-15T06:59:43Z +9397 2005-07-30T20:07:29Z 1550 373 2005-08-05T00:36:29Z 1 2020-02-15T06:59:43Z +9398 2005-07-30T20:09:00Z 1175 570 2005-08-01T23:35:00Z 2 2020-02-15T06:59:43Z +9399 2005-07-30T20:14:50Z 3668 569 2005-08-03T17:30:50Z 1 2020-02-15T06:59:43Z +9400 2005-07-30T20:15:58Z 3910 368 2005-08-03T21:21:58Z 1 2020-02-15T06:59:43Z +9401 2005-07-30T20:18:19Z 2057 331 2005-08-07T15:46:19Z 1 2020-02-15T06:59:43Z +9402 2005-07-30T20:18:27Z 2424 48 2005-08-07T21:29:27Z 2 2020-02-15T06:59:43Z +9403 2005-07-30T20:18:53Z 3466 267 2005-08-06T19:54:53Z 1 2020-02-15T06:59:43Z +9404 2005-07-30T20:21:35Z 3832 140 2005-08-02T15:52:35Z 1 2020-02-15T06:59:43Z +9405 2005-07-30T20:22:17Z 1983 463 2005-08-08T16:55:17Z 1 2020-02-15T06:59:43Z +9406 2005-07-30T20:24:00Z 3419 453 2005-08-07T19:50:00Z 1 2020-02-15T06:59:43Z +9407 2005-07-30T20:25:24Z 2594 585 2005-08-08T22:51:24Z 2 2020-02-15T06:59:43Z +9408 2005-07-30T20:32:09Z 4383 571 2005-08-04T20:14:09Z 2 2020-02-15T06:59:43Z +9409 2005-07-30T20:33:53Z 3053 156 2005-08-05T18:32:53Z 2 2020-02-15T06:59:43Z +9410 2005-07-30T20:38:05Z 1789 22 2005-07-31T19:57:05Z 2 2020-02-15T06:59:43Z +9411 2005-07-30T20:38:22Z 3484 536 2005-08-06T01:23:22Z 2 2020-02-15T06:59:43Z +9412 2005-07-30T20:44:10Z 2482 522 2005-08-06T21:13:10Z 2 2020-02-15T06:59:43Z +9413 2005-07-30T20:44:39Z 2618 290 2005-08-01T01:56:39Z 2 2020-02-15T06:59:43Z +9414 2005-07-30T20:46:02Z 578 484 2005-08-07T21:23:02Z 2 2020-02-15T06:59:43Z +9415 2005-07-30T20:48:31Z 3336 139 2005-08-05T19:45:31Z 2 2020-02-15T06:59:43Z +9416 2005-07-30T20:52:45Z 1470 265 2005-08-02T17:38:45Z 2 2020-02-15T06:59:43Z +9417 2005-07-30T20:54:55Z 2509 519 2005-08-04T00:54:55Z 2 2020-02-15T06:59:43Z +9418 2005-07-30T21:00:52Z 241 168 2005-08-08T15:56:52Z 2 2020-02-15T06:59:43Z +9419 2005-07-30T21:04:59Z 4427 142 2005-08-06T15:47:59Z 2 2020-02-15T06:59:43Z +9420 2005-07-30T21:05:18Z 147 72 2005-08-05T23:52:18Z 2 2020-02-15T06:59:43Z +9421 2005-07-30T21:08:32Z 2206 161 2005-08-02T00:43:32Z 1 2020-02-15T06:59:43Z +9422 2005-07-30T21:08:41Z 1843 470 2005-08-07T15:55:41Z 1 2020-02-15T06:59:43Z +9423 2005-07-30T21:10:14Z 3145 242 2005-08-07T16:34:14Z 2 2020-02-15T06:59:43Z +9424 2005-07-30T21:10:56Z 4499 256 2005-08-05T00:01:56Z 1 2020-02-15T06:59:43Z +9425 2005-07-30T21:11:21Z 271 295 2005-08-05T19:00:21Z 1 2020-02-15T06:59:43Z +9427 2005-07-30T21:16:33Z 1494 85 2005-08-05T17:23:33Z 2 2020-02-15T06:59:43Z +9428 2005-07-30T21:18:37Z 1948 335 2005-08-05T16:09:37Z 1 2020-02-15T06:59:43Z +9429 2005-07-30T21:19:26Z 1769 288 2005-08-07T18:39:26Z 1 2020-02-15T06:59:43Z +9430 2005-07-30T21:20:13Z 1529 367 2005-08-04T21:45:13Z 2 2020-02-15T06:59:43Z +9431 2005-07-30T21:24:22Z 3364 39 2005-08-03T01:22:22Z 2 2020-02-15T06:59:43Z +9432 2005-07-30T21:26:18Z 2489 570 2005-08-05T00:23:18Z 1 2020-02-15T06:59:43Z +9433 2005-07-30T21:28:17Z 1082 128 2005-08-08T18:20:17Z 2 2020-02-15T06:59:43Z +9434 2005-07-30T21:29:41Z 3792 13 2005-08-01T16:30:41Z 2 2020-02-15T06:59:43Z +9435 2005-07-30T21:31:02Z 3116 301 2005-08-05T22:34:02Z 1 2020-02-15T06:59:43Z +9436 2005-07-30T21:33:01Z 2329 268 2005-08-06T17:38:01Z 1 2020-02-15T06:59:43Z +9437 2005-07-30T21:36:04Z 1230 592 2005-08-08T01:26:04Z 1 2020-02-15T06:59:43Z +9438 2005-07-30T21:36:15Z 121 14 2005-08-07T16:54:15Z 2 2020-02-15T06:59:43Z +9439 2005-07-30T21:38:12Z 290 479 2005-08-06T00:03:12Z 1 2020-02-15T06:59:43Z +9440 2005-07-30T21:40:15Z 414 535 2005-08-04T15:45:15Z 2 2020-02-15T06:59:43Z +9441 2005-07-30T21:43:28Z 3982 519 2005-08-08T16:57:28Z 1 2020-02-15T06:59:43Z +9442 2005-07-30T21:44:31Z 44 75 2005-08-04T01:29:31Z 1 2020-02-15T06:59:43Z +9443 2005-07-30T21:45:46Z 1675 3 2005-08-05T21:22:46Z 1 2020-02-15T06:59:43Z +9444 2005-07-30T21:48:44Z 1134 259 2005-08-08T22:36:44Z 2 2020-02-15T06:59:43Z +9445 2005-07-30T21:50:42Z 1480 549 2005-08-05T18:34:42Z 2 2020-02-15T06:59:43Z +9446 2005-07-30T21:53:01Z 1880 477 2005-08-06T19:00:01Z 2 2020-02-15T06:59:43Z +9447 2005-07-30T21:54:22Z 1053 82 2005-08-09T01:07:22Z 2 2020-02-15T06:59:43Z +9448 2005-07-30T21:56:13Z 1213 278 2005-08-04T18:03:13Z 1 2020-02-15T06:59:43Z +9449 2005-07-30T22:02:34Z 2 581 2005-08-06T02:09:34Z 1 2020-02-15T06:59:43Z +9450 2005-07-30T22:04:04Z 1371 430 2005-08-05T18:39:04Z 2 2020-02-15T06:59:43Z +9451 2005-07-30T22:10:17Z 685 584 2005-08-07T02:53:17Z 2 2020-02-15T06:59:43Z +9452 2005-07-30T22:19:16Z 3178 130 2005-08-04T19:26:16Z 1 2020-02-15T06:59:43Z +9453 2005-07-30T22:20:04Z 1988 221 2005-08-08T02:27:04Z 1 2020-02-15T06:59:43Z +9454 2005-07-30T22:20:09Z 3028 81 2005-08-04T01:33:09Z 2 2020-02-15T06:59:43Z +9455 2005-07-30T22:20:29Z 2647 220 2005-08-08T20:08:29Z 1 2020-02-15T06:59:43Z +9456 2005-07-30T22:22:16Z 2068 534 2005-08-05T18:56:16Z 2 2020-02-15T06:59:43Z +9457 2005-07-30T22:23:05Z 2172 487 2005-07-31T23:07:05Z 2 2020-02-15T06:59:43Z +9458 2005-07-30T22:24:34Z 3105 343 2005-08-04T21:26:34Z 2 2020-02-15T06:59:43Z +9459 2005-07-30T22:24:46Z 1132 489 2005-08-02T00:44:46Z 2 2020-02-15T06:59:43Z +9460 2005-07-30T22:25:39Z 4463 580 2005-08-08T20:56:39Z 2 2020-02-15T06:59:43Z +9461 2005-07-30T22:29:13Z 1679 377 2005-08-05T20:55:13Z 2 2020-02-15T06:59:43Z +9462 2005-07-30T22:30:44Z 4090 192 2005-08-09T03:54:44Z 2 2020-02-15T06:59:43Z +9463 2005-07-30T22:30:57Z 883 352 2005-08-03T22:53:57Z 1 2020-02-15T06:59:43Z +9464 2005-07-30T22:31:31Z 3904 534 2005-08-07T01:10:31Z 2 2020-02-15T06:59:43Z +9465 2005-07-30T22:39:53Z 3084 2 2005-08-06T16:43:53Z 2 2020-02-15T06:59:43Z +9466 2005-07-30T22:44:36Z 2595 137 2005-08-07T02:35:36Z 2 2020-02-15T06:59:43Z +9467 2005-07-30T22:45:34Z 1905 202 2005-08-08T00:58:34Z 2 2020-02-15T06:59:43Z +9468 2005-07-30T22:53:52Z 4366 20 2005-08-07T00:22:52Z 2 2020-02-15T06:59:43Z +9469 2005-07-30T22:56:34Z 967 59 2005-08-07T03:16:34Z 2 2020-02-15T06:59:43Z +9470 2005-07-30T23:01:31Z 3908 566 2005-08-07T01:35:31Z 2 2020-02-15T06:59:43Z +9471 2005-07-30T23:02:36Z 2390 424 2005-08-04T17:49:36Z 1 2020-02-15T06:59:43Z +9472 2005-07-30T23:03:32Z 4178 404 2005-08-01T18:02:32Z 1 2020-02-15T06:59:43Z +9473 2005-07-30T23:04:13Z 1717 185 2005-08-04T21:48:13Z 2 2020-02-15T06:59:43Z +9474 2005-07-30T23:05:44Z 3771 206 2005-08-05T23:46:44Z 1 2020-02-15T06:59:43Z +9475 2005-07-30T23:06:33Z 2186 567 2005-08-04T23:23:33Z 1 2020-02-15T06:59:43Z +9476 2005-07-30T23:06:40Z 3599 197 2005-08-04T22:52:40Z 2 2020-02-15T06:59:43Z +9477 2005-07-30T23:07:22Z 1932 213 2005-08-04T20:54:22Z 1 2020-02-15T06:59:43Z +9478 2005-07-30T23:12:53Z 1139 283 2005-08-04T02:41:53Z 1 2020-02-15T06:59:43Z +9479 2005-07-30T23:22:09Z 3461 308 2005-07-31T22:26:09Z 2 2020-02-15T06:59:43Z +9480 2005-07-30T23:26:03Z 597 373 2005-08-04T21:18:03Z 2 2020-02-15T06:59:43Z +9481 2005-07-30T23:26:05Z 613 481 2005-08-04T17:46:05Z 1 2020-02-15T06:59:43Z +9482 2005-07-30T23:29:16Z 2421 348 2005-08-02T20:37:16Z 2 2020-02-15T06:59:43Z +9483 2005-07-30T23:31:31Z 1136 593 2005-08-09T04:29:31Z 2 2020-02-15T06:59:43Z +9484 2005-07-30T23:31:40Z 3389 26 2005-08-02T18:25:40Z 1 2020-02-15T06:59:43Z +9485 2005-07-30T23:32:40Z 3722 338 2005-08-08T17:44:40Z 1 2020-02-15T06:59:43Z +9486 2005-07-30T23:35:42Z 2787 403 2005-08-09T02:08:42Z 2 2020-02-15T06:59:43Z +9487 2005-07-30T23:40:22Z 2165 406 2005-08-01T22:29:22Z 1 2020-02-15T06:59:43Z +9488 2005-07-30T23:42:42Z 4221 528 2005-08-08T22:15:42Z 1 2020-02-15T06:59:43Z +9489 2005-07-30T23:43:32Z 4011 17 2005-07-31T20:45:32Z 2 2020-02-15T06:59:43Z +9490 2005-07-30T23:45:09Z 1302 487 2005-08-07T18:50:09Z 1 2020-02-15T06:59:43Z +9491 2005-07-30T23:45:23Z 3624 179 2005-08-01T00:33:23Z 2 2020-02-15T06:59:43Z +9492 2005-07-30T23:52:21Z 639 126 2005-08-08T20:50:21Z 2 2020-02-15T06:59:43Z +9493 2005-07-30T23:52:30Z 1522 5 2005-08-08T05:22:30Z 1 2020-02-15T06:59:43Z +9494 2005-07-30T23:52:46Z 3799 254 2005-08-05T23:13:46Z 2 2020-02-15T06:59:43Z +9495 2005-07-30T23:54:26Z 2128 397 2005-08-01T22:02:26Z 2 2020-02-15T06:59:43Z +9496 2005-07-30T23:55:20Z 453 125 2005-08-02T02:47:20Z 2 2020-02-15T06:59:43Z +9497 2005-07-30T23:56:54Z 933 595 2005-08-04T19:52:54Z 1 2020-02-15T06:59:43Z +9498 2005-07-30T23:56:55Z 1035 289 2005-08-03T18:34:55Z 2 2020-02-15T06:59:43Z +9499 2005-07-30T23:58:30Z 602 461 2005-08-01T00:55:30Z 2 2020-02-15T06:59:43Z +9500 2005-07-30T23:58:36Z 2808 241 2005-08-07T21:08:36Z 2 2020-02-15T06:59:43Z +9501 2005-07-30T23:59:21Z 4398 75 2005-08-05T19:50:21Z 2 2020-02-15T06:59:43Z +9502 2005-07-31T00:02:10Z 2700 471 2005-08-01T19:47:10Z 1 2020-02-15T06:59:43Z +9503 2005-07-31T00:02:38Z 1013 311 2005-08-06T06:01:38Z 1 2020-02-15T06:59:43Z +9504 2005-07-31T00:09:07Z 91 125 2005-08-02T05:44:07Z 1 2020-02-15T06:59:43Z +9505 2005-07-31T00:11:19Z 4047 543 2005-08-05T18:24:19Z 2 2020-02-15T06:59:43Z +9506 2005-07-31T00:19:01Z 3872 189 2005-08-02T00:20:01Z 1 2020-02-15T06:59:43Z +9507 2005-07-31T00:22:29Z 387 525 2005-08-07T05:59:29Z 2 2020-02-15T06:59:43Z +9508 2005-07-31T00:22:39Z 1204 316 2005-08-04T05:40:39Z 1 2020-02-15T06:59:43Z +9509 2005-07-31T00:22:42Z 818 320 2005-08-03T23:24:42Z 1 2020-02-15T06:59:43Z +9510 2005-07-31T00:24:17Z 2301 494 2005-08-08T18:47:17Z 2 2020-02-15T06:59:43Z +9511 2005-07-31T00:25:05Z 964 549 2005-08-09T02:46:05Z 1 2020-02-15T06:59:43Z +9512 2005-07-31T00:26:30Z 3786 173 2005-08-04T23:43:30Z 2 2020-02-15T06:59:43Z +9513 2005-07-31T00:28:30Z 396 317 2005-08-01T00:22:30Z 2 2020-02-15T06:59:43Z +9514 2005-07-31T00:29:44Z 1892 243 2005-08-02T23:49:44Z 1 2020-02-15T06:59:43Z +9515 2005-07-31T00:35:05Z 3099 264 2005-08-02T23:35:05Z 2 2020-02-15T06:59:43Z +9516 2005-07-31T00:40:58Z 3519 424 2005-08-07T02:13:58Z 2 2020-02-15T06:59:43Z +9517 2005-07-31T00:41:23Z 3299 170 2005-08-02T23:08:23Z 1 2020-02-15T06:59:43Z +9518 2005-07-31T00:43:26Z 2714 215 2005-08-04T19:12:26Z 2 2020-02-15T06:59:43Z +9519 2005-07-31T00:45:57Z 3767 235 2005-08-06T00:59:57Z 2 2020-02-15T06:59:43Z +9520 2005-07-31T00:50:54Z 1306 299 2005-08-04T20:05:54Z 1 2020-02-15T06:59:43Z +9521 2005-07-31T00:52:24Z 1423 227 2005-08-06T03:33:24Z 2 2020-02-15T06:59:43Z +9522 2005-07-31T00:55:11Z 4266 294 2005-08-03T06:41:11Z 2 2020-02-15T06:59:43Z +9523 2005-07-31T00:56:09Z 891 356 2005-08-05T05:44:09Z 2 2020-02-15T06:59:43Z +9524 2005-07-31T01:01:06Z 1796 535 2005-08-04T04:06:06Z 2 2020-02-15T06:59:43Z +9525 2005-07-31T01:02:18Z 2990 246 2005-08-06T21:31:18Z 1 2020-02-15T06:59:43Z +9526 2005-07-31T01:02:22Z 417 342 2005-08-04T03:00:22Z 1 2020-02-15T06:59:43Z +9527 2005-07-31T01:02:24Z 2539 200 2005-08-09T02:08:24Z 2 2020-02-15T06:59:43Z +9528 2005-07-31T01:05:04Z 193 241 2005-08-07T01:16:04Z 1 2020-02-15T06:59:43Z +9529 2005-07-31T01:05:26Z 816 123 2005-08-02T22:30:26Z 2 2020-02-15T06:59:43Z +9530 2005-07-31T01:09:06Z 1718 148 2005-08-04T23:47:06Z 2 2020-02-15T06:59:43Z +9531 2005-07-31T01:11:53Z 4550 268 2005-08-07T02:49:53Z 1 2020-02-15T06:59:43Z +9532 2005-07-31T01:16:51Z 1309 488 2005-08-01T20:23:51Z 1 2020-02-15T06:59:43Z +9533 2005-07-31T01:18:10Z 4156 522 2005-08-07T19:58:10Z 1 2020-02-15T06:59:43Z +9534 2005-07-31T01:18:27Z 4457 519 2005-08-06T00:28:27Z 1 2020-02-15T06:59:43Z +9535 2005-07-31T01:18:53Z 2413 485 2005-08-04T03:04:53Z 2 2020-02-15T06:59:43Z +9536 2005-07-31T01:19:02Z 2547 310 2005-08-02T19:38:02Z 1 2020-02-15T06:59:43Z +9537 2005-07-31T01:23:00Z 546 488 2005-08-01T01:16:00Z 2 2020-02-15T06:59:43Z +9538 2005-07-31T01:25:22Z 3402 68 2005-08-06T00:10:22Z 2 2020-02-15T06:59:43Z +9539 2005-07-31T01:36:19Z 3793 436 2005-08-04T23:47:19Z 1 2020-02-15T06:59:43Z +9540 2005-07-31T01:40:06Z 2200 365 2005-08-01T01:09:06Z 1 2020-02-15T06:59:43Z +9541 2005-07-31T01:40:14Z 1774 422 2005-08-05T06:34:14Z 2 2020-02-15T06:59:43Z +9542 2005-07-31T01:41:48Z 2243 595 2005-08-01T00:49:48Z 2 2020-02-15T06:59:43Z +9543 2005-07-31T01:43:34Z 956 369 2005-08-01T06:49:34Z 1 2020-02-15T06:59:43Z +9544 2005-07-31T01:44:51Z 2383 28 2005-08-05T05:25:51Z 2 2020-02-15T06:59:43Z +9545 2005-07-31T01:46:24Z 3451 594 2005-08-09T06:11:24Z 1 2020-02-15T06:59:43Z +9546 2005-07-31T01:47:40Z 211 63 2005-08-02T07:25:40Z 2 2020-02-15T06:59:43Z +9547 2005-07-31T01:52:34Z 2414 440 2005-08-03T23:12:34Z 2 2020-02-15T06:59:43Z +9548 2005-07-31T01:54:19Z 3038 576 2005-08-05T00:50:19Z 2 2020-02-15T06:59:43Z +9549 2005-07-31T01:57:04Z 2409 63 2005-08-07T21:00:04Z 2 2020-02-15T06:59:43Z +9550 2005-07-31T01:57:34Z 2233 583 2005-08-08T23:33:34Z 1 2020-02-15T06:59:43Z +9551 2005-07-31T02:04:58Z 1260 30 2005-08-06T04:07:58Z 2 2020-02-15T06:59:43Z +9552 2005-07-31T02:05:32Z 3544 261 2005-08-01T06:59:32Z 1 2020-02-15T06:59:43Z +9553 2005-07-31T02:06:34Z 4187 579 2005-08-08T02:20:34Z 1 2020-02-15T06:59:43Z +9554 2005-07-31T02:06:49Z 2581 490 2005-08-01T22:27:49Z 1 2020-02-15T06:59:43Z +9555 2005-07-31T02:11:16Z 2108 382 2005-08-03T06:58:16Z 2 2020-02-15T06:59:43Z +9556 2005-07-31T02:13:30Z 3269 521 2005-08-08T06:46:30Z 1 2020-02-15T06:59:43Z +9557 2005-07-31T02:14:01Z 708 328 2005-08-05T23:55:01Z 1 2020-02-15T06:59:43Z +9558 2005-07-31T02:14:35Z 1161 418 2005-08-06T03:00:35Z 1 2020-02-15T06:59:43Z +9559 2005-07-31T02:15:53Z 2882 159 2005-08-08T02:38:53Z 1 2020-02-15T06:59:43Z +9560 2005-07-31T02:17:27Z 4236 471 2005-08-07T03:33:27Z 1 2020-02-15T06:59:43Z +9561 2005-07-31T02:22:13Z 1079 58 2005-08-03T07:00:13Z 2 2020-02-15T06:59:43Z +9562 2005-07-31T02:23:20Z 1571 116 2005-08-06T21:01:20Z 2 2020-02-15T06:59:43Z +9563 2005-07-31T02:28:39Z 3858 167 2005-08-05T22:10:39Z 1 2020-02-15T06:59:43Z +9564 2005-07-31T02:31:37Z 383 377 2005-08-03T22:57:37Z 2 2020-02-15T06:59:43Z +9565 2005-07-31T02:32:00Z 3621 485 2005-08-04T05:45:00Z 1 2020-02-15T06:59:43Z +9566 2005-07-31T02:32:10Z 643 346 2005-08-02T23:54:10Z 2 2020-02-15T06:59:43Z +9567 2005-07-31T02:36:11Z 3688 37 2005-08-07T01:19:11Z 2 2020-02-15T06:59:43Z +9568 2005-07-31T02:37:44Z 1248 358 2005-08-02T07:07:44Z 2 2020-02-15T06:59:43Z +9569 2005-07-31T02:39:38Z 813 405 2005-08-02T05:09:38Z 2 2020-02-15T06:59:43Z +9570 2005-07-31T02:40:37Z 591 385 2005-08-01T01:59:37Z 1 2020-02-15T06:59:43Z +9571 2005-07-31T02:42:18Z 2219 1 2005-08-02T23:26:18Z 2 2020-02-15T06:59:43Z +9572 2005-07-31T02:44:10Z 1453 283 2005-08-01T03:30:10Z 2 2020-02-15T06:59:43Z +9573 2005-07-31T02:45:38Z 3745 59 2005-08-09T04:31:38Z 2 2020-02-15T06:59:43Z +9574 2005-07-31T02:49:20Z 2782 233 2005-08-05T02:36:20Z 2 2020-02-15T06:59:43Z +9575 2005-07-31T02:51:53Z 3971 193 2005-08-03T20:54:53Z 2 2020-02-15T06:59:43Z +9576 2005-07-31T02:52:59Z 3327 145 2005-08-05T23:35:59Z 2 2020-02-15T06:59:43Z +9577 2005-07-31T02:53:33Z 2423 526 2005-08-07T05:56:33Z 1 2020-02-15T06:59:43Z +9578 2005-07-31T02:54:31Z 2965 115 2005-08-02T02:48:31Z 1 2020-02-15T06:59:43Z +9579 2005-07-31T02:59:20Z 3547 35 2005-08-06T03:52:20Z 2 2020-02-15T06:59:43Z +9580 2005-07-31T03:01:11Z 532 22 2005-08-05T06:01:11Z 1 2020-02-15T06:59:43Z +9581 2005-07-31T03:03:07Z 2588 302 2005-08-05T23:01:07Z 1 2020-02-15T06:59:43Z +9582 2005-07-31T03:05:19Z 3913 347 2005-08-04T07:26:19Z 1 2020-02-15T06:59:43Z +9583 2005-07-31T03:05:21Z 3543 568 2005-08-06T00:14:21Z 2 2020-02-15T06:59:43Z +9584 2005-07-31T03:05:48Z 419 141 2005-08-01T05:50:48Z 2 2020-02-15T06:59:43Z +9585 2005-07-31T03:05:55Z 3249 197 2005-08-02T23:54:55Z 2 2020-02-15T06:59:43Z +9586 2005-07-31T03:07:16Z 3987 415 2005-08-04T00:39:16Z 1 2020-02-15T06:59:43Z +9587 2005-07-31T03:10:30Z 2966 235 2005-08-06T06:54:30Z 2 2020-02-15T06:59:43Z +9588 2005-07-31T03:13:13Z 1368 499 2005-08-02T04:06:13Z 1 2020-02-15T06:59:43Z +9589 2005-07-31T03:13:29Z 2604 574 2005-08-09T01:51:29Z 2 2020-02-15T06:59:43Z +9590 2005-07-31T03:17:16Z 2293 585 2005-08-08T04:24:16Z 1 2020-02-15T06:59:43Z +9591 2005-07-31T03:19:28Z 504 97 2005-08-01T07:30:28Z 1 2020-02-15T06:59:43Z +9592 2005-07-31T03:21:16Z 1828 14 2005-08-05T08:32:16Z 1 2020-02-15T06:59:43Z +9593 2005-07-31T03:22:30Z 1223 28 2005-08-05T08:23:30Z 1 2020-02-15T06:59:43Z +9594 2005-07-31T03:23:52Z 4382 148 2005-08-04T23:06:52Z 1 2020-02-15T06:59:43Z +9595 2005-07-31T03:27:58Z 2829 3 2005-08-03T05:58:58Z 1 2020-02-15T06:59:43Z +9596 2005-07-31T03:28:47Z 2847 55 2005-08-04T03:43:47Z 2 2020-02-15T06:59:43Z +9597 2005-07-31T03:29:07Z 3317 61 2005-08-09T03:33:07Z 2 2020-02-15T06:59:43Z +9598 2005-07-31T03:30:41Z 1105 468 2005-08-04T03:54:41Z 1 2020-02-15T06:59:43Z +9599 2005-07-31T03:32:06Z 3164 502 2005-08-04T07:47:06Z 2 2020-02-15T06:59:43Z +9600 2005-07-31T03:35:34Z 3731 464 2005-08-08T22:50:34Z 1 2020-02-15T06:59:43Z +9601 2005-07-31T03:42:17Z 1592 553 2005-08-04T02:02:17Z 2 2020-02-15T06:59:43Z +9602 2005-07-31T03:42:51Z 3173 386 2005-08-01T08:39:51Z 1 2020-02-15T06:59:43Z +9603 2005-07-31T03:43:43Z 2266 541 2005-08-02T00:11:43Z 2 2020-02-15T06:59:43Z +9604 2005-07-31T03:47:12Z 4342 580 2005-08-03T06:48:12Z 1 2020-02-15T06:59:43Z +9605 2005-07-31T03:50:07Z 1477 94 2005-08-07T09:15:07Z 2 2020-02-15T06:59:43Z +9606 2005-07-31T03:50:46Z 1357 253 2005-08-01T05:29:46Z 2 2020-02-15T06:59:43Z +9607 2005-07-31T03:51:06Z 3414 294 2005-08-02T00:18:06Z 2 2020-02-15T06:59:43Z +9608 2005-07-31T03:51:52Z 363 397 2005-08-06T05:38:52Z 2 2020-02-15T06:59:43Z +9609 2005-07-31T03:53:24Z 693 112 2005-08-05T08:32:24Z 2 2020-02-15T06:59:43Z +9610 2005-07-31T03:54:05Z 3110 16 2005-08-06T23:11:05Z 1 2020-02-15T06:59:43Z +9611 2005-07-31T03:54:43Z 1976 215 2005-08-05T03:54:43Z 2 2020-02-15T06:59:43Z +9612 2005-07-31T03:58:31Z 2142 69 2005-08-04T07:34:31Z 2 2020-02-15T06:59:43Z +9613 2005-07-31T03:58:53Z 3251 188 2005-08-02T00:10:53Z 1 2020-02-15T06:59:43Z +9614 2005-07-31T03:59:31Z 2955 548 2005-08-08T04:19:31Z 1 2020-02-15T06:59:43Z +9615 2005-07-31T03:59:56Z 3370 50 2005-08-02T00:46:56Z 2 2020-02-15T06:59:43Z +9616 2005-07-31T04:05:01Z 1210 550 2005-08-05T00:10:01Z 1 2020-02-15T06:59:43Z +9617 2005-07-31T04:15:38Z 529 102 2005-08-02T04:24:38Z 1 2020-02-15T06:59:43Z +9618 2005-07-31T04:16:14Z 2688 253 2005-08-07T02:43:14Z 2 2020-02-15T06:59:43Z +9619 2005-07-31T04:17:02Z 1730 138 2005-08-05T06:36:02Z 2 2020-02-15T06:59:43Z +9620 2005-07-31T04:19:18Z 2177 576 2005-08-08T09:20:18Z 1 2020-02-15T06:59:43Z +9621 2005-07-31T04:21:08Z 325 38 2005-08-08T03:50:08Z 2 2020-02-15T06:59:43Z +9622 2005-07-31T04:21:45Z 2255 411 2005-08-02T09:20:45Z 1 2020-02-15T06:59:43Z +9623 2005-07-31T04:30:02Z 113 360 2005-08-06T23:34:02Z 1 2020-02-15T06:59:43Z +9624 2005-07-31T04:30:03Z 3480 7 2005-08-06T09:13:03Z 1 2020-02-15T06:59:43Z +9625 2005-07-31T04:30:48Z 1703 445 2005-08-03T01:12:48Z 1 2020-02-15T06:59:43Z +9626 2005-07-31T04:37:41Z 2216 546 2005-08-08T04:00:41Z 1 2020-02-15T06:59:43Z +9627 2005-07-31T04:42:46Z 471 12 2005-08-08T00:42:46Z 2 2020-02-15T06:59:43Z +9628 2005-07-31T04:51:11Z 1387 565 2005-07-31T23:11:11Z 2 2020-02-15T06:59:43Z +9629 2005-07-31T04:54:43Z 2773 8 2005-08-02T08:36:43Z 1 2020-02-15T06:59:43Z +9630 2005-07-31T04:57:07Z 2008 599 2005-08-07T10:55:07Z 2 2020-02-15T06:59:43Z +9631 2005-07-31T05:02:00Z 321 595 2005-08-02T02:04:00Z 2 2020-02-15T06:59:43Z +9632 2005-07-31T05:02:23Z 3368 217 2005-08-06T04:49:23Z 2 2020-02-15T06:59:43Z +9633 2005-07-31T05:04:08Z 1141 334 2005-08-06T00:52:08Z 2 2020-02-15T06:59:43Z +9634 2005-07-31T05:06:02Z 924 444 2005-08-04T06:53:02Z 1 2020-02-15T06:59:43Z +9635 2005-07-31T05:12:27Z 1687 371 2005-08-02T00:24:27Z 2 2020-02-15T06:59:43Z +9636 2005-07-31T05:12:59Z 1725 27 2005-08-09T07:31:59Z 2 2020-02-15T06:59:43Z +9637 2005-07-31T05:18:54Z 3013 130 2005-08-03T01:23:54Z 2 2020-02-15T06:59:43Z +9638 2005-07-31T05:30:27Z 1616 436 2005-08-09T02:04:27Z 1 2020-02-15T06:59:43Z +9639 2005-07-31T05:32:10Z 1373 459 2005-08-03T07:04:10Z 2 2020-02-15T06:59:43Z +9640 2005-07-31T05:33:25Z 1067 67 2005-08-09T09:41:25Z 1 2020-02-15T06:59:43Z +9641 2005-07-31T05:33:48Z 1085 30 2005-08-04T07:43:48Z 1 2020-02-15T06:59:43Z +9642 2005-07-31T05:33:57Z 3550 68 2005-08-05T04:54:57Z 1 2020-02-15T06:59:43Z +9643 2005-07-31T05:35:48Z 3576 538 2005-08-08T04:28:48Z 2 2020-02-15T06:59:43Z +9644 2005-07-31T05:40:35Z 4577 441 2005-08-09T08:18:35Z 1 2020-02-15T06:59:43Z +9645 2005-07-31T05:42:49Z 3413 519 2005-08-04T00:08:49Z 1 2020-02-15T06:59:43Z +9646 2005-07-31T05:43:28Z 3756 89 2005-08-08T04:00:28Z 1 2020-02-15T06:59:43Z +9647 2005-07-31T05:45:15Z 3415 475 2005-08-06T08:54:15Z 1 2020-02-15T06:59:43Z +9648 2005-07-31T05:46:03Z 4063 72 2005-08-09T04:36:03Z 2 2020-02-15T06:59:43Z +9649 2005-07-31T05:46:54Z 1588 51 2005-08-04T08:42:54Z 2 2020-02-15T06:59:43Z +9650 2005-07-31T05:47:32Z 2997 414 2005-08-04T00:50:32Z 2 2020-02-15T06:59:43Z +9651 2005-07-31T05:48:49Z 4059 324 2005-08-04T06:53:49Z 1 2020-02-15T06:59:43Z +9652 2005-07-31T05:49:53Z 448 207 2005-08-06T07:38:53Z 2 2020-02-15T06:59:43Z +9653 2005-07-31T05:55:38Z 1451 383 2005-08-03T09:35:38Z 2 2020-02-15T06:59:43Z +9654 2005-07-31T05:57:42Z 3286 506 2005-08-06T04:19:42Z 1 2020-02-15T06:59:43Z +9655 2005-07-31T05:57:54Z 3403 435 2005-08-06T02:00:54Z 1 2020-02-15T06:59:43Z +9656 2005-07-31T06:00:21Z 4215 39 2005-08-05T04:36:21Z 1 2020-02-15T06:59:43Z +9657 2005-07-31T06:00:41Z 2681 402 2005-08-06T06:51:41Z 2 2020-02-15T06:59:43Z +9658 2005-07-31T06:00:52Z 2332 282 2005-08-09T04:47:52Z 2 2020-02-15T06:59:43Z +9659 2005-07-31T06:02:14Z 4262 360 2005-08-07T00:54:14Z 2 2020-02-15T06:59:43Z +9660 2005-07-31T06:03:17Z 1090 406 2005-08-07T06:59:17Z 2 2020-02-15T06:59:43Z +9661 2005-07-31T06:06:37Z 2693 237 2005-08-04T07:37:37Z 1 2020-02-15T06:59:43Z +9662 2005-07-31T06:09:53Z 2757 96 2005-08-08T00:50:53Z 2 2020-02-15T06:59:43Z +9663 2005-07-31T06:10:48Z 2099 339 2005-08-01T11:40:48Z 2 2020-02-15T06:59:43Z +9664 2005-07-31T06:12:08Z 360 13 2005-08-04T02:19:08Z 2 2020-02-15T06:59:43Z +9665 2005-07-31T06:17:33Z 2863 478 2005-08-04T08:53:33Z 1 2020-02-15T06:59:43Z +9666 2005-07-31T06:20:58Z 4318 592 2005-08-06T06:09:58Z 2 2020-02-15T06:59:43Z +9667 2005-07-31T06:23:52Z 4289 523 2005-08-09T09:12:52Z 1 2020-02-15T06:59:43Z +9668 2005-07-31T06:31:03Z 1647 378 2005-08-07T06:19:03Z 2 2020-02-15T06:59:43Z +9669 2005-07-31T06:31:36Z 4496 277 2005-08-08T03:05:36Z 2 2020-02-15T06:59:43Z +9670 2005-07-31T06:33:33Z 3709 349 2005-08-07T04:51:33Z 1 2020-02-15T06:59:43Z +9671 2005-07-31T06:33:41Z 920 133 2005-08-02T07:50:41Z 1 2020-02-15T06:59:43Z +9672 2005-07-31T06:34:06Z 4394 183 2005-08-08T10:29:06Z 2 2020-02-15T06:59:43Z +9673 2005-07-31T06:34:55Z 339 27 2005-08-09T09:15:55Z 2 2020-02-15T06:59:43Z +9674 2005-07-31T06:36:53Z 3213 297 2005-08-06T02:50:53Z 2 2020-02-15T06:59:43Z +9675 2005-07-31T06:37:07Z 2523 243 2005-08-03T07:03:07Z 1 2020-02-15T06:59:43Z +9676 2005-07-31T06:39:13Z 681 239 2005-08-05T09:31:13Z 2 2020-02-15T06:59:43Z +9677 2005-07-31T06:39:45Z 3200 274 2005-08-01T02:37:45Z 2 2020-02-15T06:59:43Z +9678 2005-07-31T06:40:47Z 3430 383 2005-08-02T00:57:47Z 2 2020-02-15T06:59:43Z +9679 2005-07-31T06:41:19Z 3819 599 2005-08-02T07:23:19Z 1 2020-02-15T06:59:43Z +9680 2005-07-31T06:41:46Z 3010 84 2005-08-01T11:02:46Z 2 2020-02-15T06:59:43Z +9681 2005-07-31T06:42:09Z 64 160 2005-08-06T08:21:09Z 1 2020-02-15T06:59:43Z +9682 2005-07-31T06:47:10Z 2427 425 2005-08-04T09:07:10Z 1 2020-02-15T06:59:43Z +9683 2005-07-31T06:47:13Z 856 141 2005-08-04T05:52:13Z 2 2020-02-15T06:59:43Z +9684 2005-07-31T06:48:33Z 362 591 2005-08-01T07:07:33Z 2 2020-02-15T06:59:43Z +9685 2005-07-31T06:49:18Z 3097 165 2005-08-04T03:19:18Z 1 2020-02-15T06:59:43Z +9686 2005-07-31T06:50:06Z 3825 386 2005-08-06T08:41:06Z 1 2020-02-15T06:59:43Z +9687 2005-07-31T06:52:54Z 3540 470 2005-08-01T03:40:54Z 2 2020-02-15T06:59:43Z +9688 2005-07-31T06:56:08Z 1304 566 2005-08-08T03:31:08Z 2 2020-02-15T06:59:43Z +9689 2005-07-31T07:00:08Z 819 498 2005-08-04T03:33:08Z 2 2020-02-15T06:59:43Z +9690 2005-07-31T07:06:29Z 4449 468 2005-08-06T09:45:29Z 2 2020-02-15T06:59:43Z +9691 2005-07-31T07:09:55Z 2626 50 2005-08-09T02:29:55Z 1 2020-02-15T06:59:43Z +9692 2005-07-31T07:11:04Z 3481 295 2005-08-07T06:34:04Z 2 2020-02-15T06:59:43Z +9693 2005-07-31T07:11:50Z 1031 273 2005-08-08T09:55:50Z 1 2020-02-15T06:59:43Z +9694 2005-07-31T07:13:16Z 3447 508 2005-08-06T09:12:16Z 2 2020-02-15T06:59:43Z +9695 2005-07-31T07:13:30Z 726 95 2005-08-07T05:38:30Z 2 2020-02-15T06:59:43Z +9696 2005-07-31T07:13:46Z 2703 156 2005-08-03T10:49:46Z 2 2020-02-15T06:59:43Z +9697 2005-07-31T07:23:11Z 762 479 2005-08-05T08:04:11Z 2 2020-02-15T06:59:43Z +9698 2005-07-31T07:24:35Z 3477 594 2005-08-09T04:52:35Z 2 2020-02-15T06:59:43Z +9699 2005-07-31T07:29:25Z 199 21 2005-08-06T01:35:25Z 1 2020-02-15T06:59:43Z +9700 2005-07-31T07:29:59Z 2678 40 2005-08-02T09:53:59Z 1 2020-02-15T06:59:43Z +9701 2005-07-31T07:32:21Z 4581 401 2005-08-01T05:07:21Z 2 2020-02-15T06:59:43Z +9702 2005-07-31T07:34:07Z 3353 525 2005-08-02T06:13:07Z 2 2020-02-15T06:59:43Z +9703 2005-07-31T07:34:52Z 2708 57 2005-08-03T13:33:52Z 2 2020-02-15T06:59:43Z +9704 2005-07-31T07:39:32Z 1402 385 2005-08-06T01:50:32Z 2 2020-02-15T06:59:43Z +9705 2005-07-31T07:40:33Z 4158 28 2005-08-01T03:50:33Z 2 2020-02-15T06:59:43Z +9706 2005-07-31T07:43:19Z 142 508 2005-08-05T11:11:19Z 1 2020-02-15T06:59:43Z +9707 2005-07-31T07:44:18Z 203 351 2005-08-08T12:45:18Z 1 2020-02-15T06:59:43Z +9708 2005-07-31T07:45:33Z 3264 12 2005-08-08T08:56:33Z 1 2020-02-15T06:59:43Z +9709 2005-07-31T08:04:55Z 2096 137 2005-08-07T08:58:55Z 1 2020-02-15T06:59:43Z +9710 2005-07-31T08:05:31Z 3486 380 2005-08-09T03:29:31Z 2 2020-02-15T06:59:43Z +9711 2005-07-31T08:06:41Z 1525 231 2005-08-02T10:30:41Z 2 2020-02-15T06:59:43Z +9712 2005-07-31T08:13:11Z 2487 219 2005-08-08T12:40:11Z 2 2020-02-15T06:59:43Z +9713 2005-07-31T08:13:28Z 929 158 2005-08-07T10:11:28Z 1 2020-02-15T06:59:43Z +9714 2005-07-31T08:15:32Z 1532 144 2005-08-03T08:33:32Z 2 2020-02-15T06:59:43Z +9715 2005-07-31T08:16:58Z 3319 237 2005-08-04T11:13:58Z 1 2020-02-15T06:59:43Z +9716 2005-07-31T08:23:53Z 3385 287 2005-08-08T12:03:53Z 2 2020-02-15T06:59:43Z +9717 2005-07-31T08:24:41Z 4207 114 2005-08-04T02:51:41Z 1 2020-02-15T06:59:43Z +9718 2005-07-31T08:25:03Z 2747 23 2005-08-08T04:16:03Z 2 2020-02-15T06:59:43Z +9719 2005-07-31T08:25:13Z 335 584 2005-08-05T08:22:13Z 1 2020-02-15T06:59:43Z +9720 2005-07-31T08:25:21Z 1282 587 2005-08-07T11:30:21Z 2 2020-02-15T06:59:43Z +9721 2005-07-31T08:28:46Z 3942 196 2005-08-05T14:03:46Z 1 2020-02-15T06:59:43Z +9722 2005-07-31T08:29:48Z 4260 125 2005-08-07T07:52:48Z 2 2020-02-15T06:59:43Z +9723 2005-07-31T08:31:18Z 3968 24 2005-08-03T10:25:18Z 1 2020-02-15T06:59:43Z +9724 2005-07-31T08:33:08Z 518 130 2005-08-08T04:50:08Z 1 2020-02-15T06:59:43Z +9725 2005-07-31T08:35:18Z 3960 503 2005-08-03T03:46:18Z 2 2020-02-15T06:59:43Z +9726 2005-07-31T08:37:07Z 1701 162 2005-08-09T06:09:07Z 1 2020-02-15T06:59:43Z +9727 2005-07-31T08:39:13Z 3076 536 2005-08-03T07:54:13Z 1 2020-02-15T06:59:43Z +9728 2005-07-31T08:40:54Z 3630 399 2005-08-03T04:14:54Z 2 2020-02-15T06:59:43Z +9729 2005-07-31T08:43:43Z 4199 273 2005-08-01T13:25:43Z 2 2020-02-15T06:59:43Z +9730 2005-07-31T08:50:08Z 2605 242 2005-08-08T12:21:08Z 2 2020-02-15T06:59:43Z +9731 2005-07-31T08:54:47Z 3713 349 2005-08-05T03:47:47Z 1 2020-02-15T06:59:43Z +9732 2005-07-31T08:56:08Z 3262 288 2005-08-07T11:05:08Z 2 2020-02-15T06:59:43Z +9733 2005-07-31T08:57:35Z 1255 575 2005-08-04T04:47:35Z 1 2020-02-15T06:59:43Z +9734 2005-07-31T08:57:45Z 3320 125 2005-08-05T11:57:45Z 1 2020-02-15T06:59:43Z +9735 2005-07-31T08:57:49Z 4228 315 2005-08-08T13:51:49Z 2 2020-02-15T06:59:43Z +9736 2005-07-31T08:58:40Z 2072 13 2005-08-09T08:34:40Z 2 2020-02-15T06:59:43Z +9737 2005-07-31T08:59:18Z 1720 475 2005-08-03T12:19:18Z 2 2020-02-15T06:59:43Z +9738 2005-07-31T09:04:14Z 2278 568 2005-08-05T14:40:14Z 2 2020-02-15T06:59:43Z +9739 2005-07-31T09:08:03Z 1328 343 2005-08-04T13:57:03Z 1 2020-02-15T06:59:43Z +9740 2005-07-31T09:08:03Z 3497 443 2005-08-06T04:48:03Z 2 2020-02-15T06:59:43Z +9741 2005-07-31T09:09:22Z 1971 495 2005-08-07T10:01:22Z 1 2020-02-15T06:59:43Z +9742 2005-07-31T09:10:20Z 4058 48 2005-08-08T10:07:20Z 1 2020-02-15T06:59:43Z +9743 2005-07-31T09:12:42Z 1740 476 2005-08-06T11:57:42Z 2 2020-02-15T06:59:43Z +9744 2005-07-31T09:15:38Z 839 459 2005-08-03T10:31:38Z 2 2020-02-15T06:59:43Z +9745 2005-07-31T09:16:14Z 3610 217 2005-08-07T12:11:14Z 1 2020-02-15T06:59:43Z +9746 2005-07-31T09:16:48Z 1459 308 2005-08-07T06:36:48Z 2 2020-02-15T06:59:43Z +9747 2005-07-31T09:16:57Z 2455 106 2005-08-08T06:47:57Z 2 2020-02-15T06:59:43Z +9748 2005-07-31T09:17:56Z 3308 550 2005-08-02T14:54:56Z 1 2020-02-15T06:59:43Z +9749 2005-07-31T09:18:33Z 658 52 2005-08-06T07:41:33Z 1 2020-02-15T06:59:43Z +9750 2005-07-31T09:19:46Z 3174 527 2005-08-06T08:07:46Z 1 2020-02-15T06:59:43Z +9751 2005-07-31T09:20:50Z 36 202 2005-08-01T05:34:50Z 2 2020-02-15T06:59:43Z +9752 2005-07-31T09:22:02Z 249 199 2005-08-02T14:34:02Z 1 2020-02-15T06:59:43Z +9753 2005-07-31T09:22:38Z 3529 98 2005-08-01T08:45:38Z 1 2020-02-15T06:59:43Z +9754 2005-07-31T09:23:43Z 3751 479 2005-08-08T06:04:43Z 1 2020-02-15T06:59:43Z +9755 2005-07-31T09:24:55Z 86 108 2005-08-07T06:00:55Z 2 2020-02-15T06:59:43Z +9756 2005-07-31T09:25:00Z 207 400 2005-08-02T05:11:00Z 1 2020-02-15T06:59:43Z +9757 2005-07-31T09:25:14Z 2596 408 2005-08-01T14:43:14Z 2 2020-02-15T06:59:43Z +9758 2005-07-31T09:25:38Z 1307 160 2005-08-03T14:16:38Z 1 2020-02-15T06:59:43Z +9759 2005-07-31T09:25:57Z 2950 574 2005-08-07T12:56:57Z 2 2020-02-15T06:59:43Z +9760 2005-07-31T09:29:33Z 426 511 2005-08-09T07:32:33Z 2 2020-02-15T06:59:43Z +9761 2005-07-31T09:31:54Z 3778 60 2005-08-03T11:02:54Z 2 2020-02-15T06:59:43Z +9762 2005-07-31T09:32:54Z 155 540 2005-08-05T04:55:54Z 1 2020-02-15T06:59:43Z +9763 2005-07-31T09:34:03Z 126 393 2005-08-08T05:30:03Z 1 2020-02-15T06:59:43Z +9764 2005-07-31T09:42:58Z 3761 136 2005-08-07T07:22:58Z 2 2020-02-15T06:59:43Z +9765 2005-07-31T09:44:40Z 472 551 2005-08-05T10:57:40Z 1 2020-02-15T06:59:43Z +9766 2005-07-31T09:46:29Z 4049 570 2005-08-01T05:08:29Z 1 2020-02-15T06:59:43Z +9767 2005-07-31T09:46:49Z 3432 89 2005-08-03T11:20:49Z 1 2020-02-15T06:59:43Z +9768 2005-07-31T09:48:41Z 2656 582 2005-08-08T11:40:41Z 2 2020-02-15T06:59:43Z +9769 2005-07-31T09:52:16Z 2958 484 2005-08-06T09:26:16Z 1 2020-02-15T06:59:43Z +9770 2005-07-31T09:52:40Z 1226 317 2005-08-09T06:44:40Z 1 2020-02-15T06:59:43Z +9771 2005-07-31T09:55:36Z 4123 398 2005-08-04T10:11:36Z 2 2020-02-15T06:59:43Z +9772 2005-07-31T09:56:07Z 3639 147 2005-08-01T13:50:07Z 2 2020-02-15T06:59:43Z +9773 2005-07-31T09:56:56Z 4555 376 2005-08-04T09:38:56Z 1 2020-02-15T06:59:43Z +9774 2005-07-31T09:57:51Z 4174 306 2005-08-02T09:08:51Z 2 2020-02-15T06:59:43Z +9775 2005-07-31T10:00:00Z 2818 162 2005-08-01T08:57:00Z 2 2020-02-15T06:59:43Z +9776 2005-07-31T10:01:03Z 2524 73 2005-08-03T07:20:03Z 2 2020-02-15T06:59:43Z +9777 2005-07-31T10:01:06Z 225 539 2005-08-08T04:44:06Z 2 2020-02-15T06:59:43Z +9778 2005-07-31T10:02:04Z 304 230 2005-08-04T07:44:04Z 2 2020-02-15T06:59:43Z +9779 2005-07-31T10:08:33Z 1280 402 2005-08-03T14:56:33Z 1 2020-02-15T06:59:43Z +9780 2005-07-31T10:10:22Z 3241 102 2005-08-02T11:43:22Z 1 2020-02-15T06:59:43Z +9781 2005-07-31T10:13:02Z 2310 155 2005-08-09T14:46:02Z 1 2020-02-15T06:59:43Z +9782 2005-07-31T10:14:26Z 2397 438 2005-08-06T16:11:26Z 1 2020-02-15T06:59:43Z +9783 2005-07-31T10:15:46Z 836 75 2005-08-09T13:22:46Z 2 2020-02-15T06:59:43Z +9784 2005-07-31T10:21:32Z 2761 362 2005-08-07T09:20:32Z 2 2020-02-15T06:59:43Z +9785 2005-07-31T10:22:15Z 4101 587 2005-08-02T10:02:15Z 1 2020-02-15T06:59:43Z +9786 2005-07-31T10:25:21Z 2560 586 2005-08-03T04:28:21Z 1 2020-02-15T06:59:43Z +9787 2005-07-31T10:26:19Z 3559 272 2005-08-09T09:02:19Z 1 2020-02-15T06:59:43Z +9788 2005-07-31T10:28:21Z 4367 344 2005-08-09T13:45:21Z 1 2020-02-15T06:59:43Z +9789 2005-07-31T10:30:25Z 619 137 2005-08-03T14:58:25Z 1 2020-02-15T06:59:43Z +9790 2005-07-31T10:34:08Z 3643 284 2005-08-04T11:19:08Z 2 2020-02-15T06:59:43Z +9791 2005-07-31T10:35:22Z 3642 300 2005-08-03T05:34:22Z 1 2020-02-15T06:59:43Z +9792 2005-07-31T10:43:41Z 3163 292 2005-08-07T10:18:41Z 1 2020-02-15T06:59:43Z +9793 2005-07-31T10:45:11Z 4576 295 2005-08-03T14:29:11Z 1 2020-02-15T06:59:43Z +9794 2005-07-31T10:47:01Z 1771 403 2005-08-02T06:52:01Z 2 2020-02-15T06:59:43Z +9795 2005-07-31T10:47:19Z 2005 63 2005-08-04T09:32:19Z 2 2020-02-15T06:59:43Z +9796 2005-07-31T10:52:43Z 1038 539 2005-08-09T06:08:43Z 1 2020-02-15T06:59:43Z +9797 2005-07-31T10:53:44Z 687 52 2005-08-09T05:51:44Z 1 2020-02-15T06:59:43Z +9798 2005-07-31T10:55:18Z 3759 55 2005-08-01T07:37:18Z 2 2020-02-15T06:59:43Z +9799 2005-07-31T10:58:32Z 3008 494 2005-08-01T12:08:32Z 1 2020-02-15T06:59:43Z +9800 2005-07-31T11:00:58Z 2153 257 2005-08-02T10:13:58Z 2 2020-02-15T06:59:43Z +9801 2005-07-31T11:03:13Z 3033 158 2005-08-04T10:55:13Z 2 2020-02-15T06:59:43Z +9802 2005-07-31T11:04:20Z 2156 594 2005-08-03T05:28:20Z 1 2020-02-15T06:59:43Z +9803 2005-07-31T11:06:02Z 3783 520 2005-08-01T06:25:02Z 1 2020-02-15T06:59:43Z +9804 2005-07-31T11:07:39Z 2490 196 2005-08-09T11:57:39Z 1 2020-02-15T06:59:43Z +9805 2005-07-31T11:11:10Z 4179 36 2005-08-03T07:36:10Z 2 2020-02-15T06:59:43Z +9806 2005-07-31T11:13:49Z 245 46 2005-08-04T06:18:49Z 1 2020-02-15T06:59:43Z +9807 2005-07-31T11:13:52Z 2137 267 2005-08-02T07:34:52Z 1 2020-02-15T06:59:43Z +9808 2005-07-31T11:17:22Z 3259 583 2005-08-07T15:54:22Z 1 2020-02-15T06:59:43Z +9809 2005-07-31T11:19:21Z 359 286 2005-08-08T12:43:21Z 2 2020-02-15T06:59:43Z +9810 2005-07-31T11:22:41Z 2066 545 2005-08-01T09:40:41Z 2 2020-02-15T06:59:43Z +9811 2005-07-31T11:23:45Z 3305 77 2005-08-06T15:51:45Z 1 2020-02-15T06:59:43Z +9812 2005-07-31T11:28:07Z 1540 57 2005-08-01T12:35:07Z 2 2020-02-15T06:59:43Z +9813 2005-07-31T11:29:23Z 1706 245 2005-08-07T08:01:23Z 2 2020-02-15T06:59:43Z +9814 2005-07-31T11:29:46Z 136 79 2005-08-08T15:49:46Z 1 2020-02-15T06:59:43Z +9815 2005-07-31T11:30:51Z 2728 540 2005-08-08T12:52:51Z 1 2020-02-15T06:59:43Z +9816 2005-07-31T11:32:58Z 4560 3 2005-08-04T17:12:58Z 2 2020-02-15T06:59:43Z +9817 2005-07-31T11:33:31Z 4019 170 2005-08-08T14:49:31Z 2 2020-02-15T06:59:43Z +9818 2005-07-31T11:34:32Z 1254 183 2005-08-04T08:20:32Z 1 2020-02-15T06:59:43Z +9819 2005-07-31T11:39:13Z 1927 292 2005-08-06T09:11:13Z 2 2020-02-15T06:59:43Z +9820 2005-07-31T11:46:57Z 499 279 2005-08-08T13:35:57Z 1 2020-02-15T06:59:43Z +9821 2005-07-31T11:47:54Z 386 271 2005-08-08T06:21:54Z 2 2020-02-15T06:59:43Z +9822 2005-07-31T11:48:25Z 2469 381 2005-08-05T15:52:25Z 2 2020-02-15T06:59:43Z +9823 2005-07-31T11:49:00Z 4423 129 2005-08-07T09:06:00Z 2 2020-02-15T06:59:43Z +9824 2005-07-31T11:49:55Z 4368 404 2005-08-07T16:54:55Z 2 2020-02-15T06:59:43Z +9825 2005-07-31T11:50:51Z 4322 390 2005-08-02T07:18:51Z 1 2020-02-15T06:59:43Z +9826 2005-07-31T11:51:46Z 2649 595 2005-08-09T17:18:46Z 1 2020-02-15T06:59:43Z +9827 2005-07-31T11:56:55Z 3840 329 2005-08-09T16:29:55Z 1 2020-02-15T06:59:43Z +9828 2005-07-31T11:56:57Z 3845 376 2005-08-02T17:05:57Z 1 2020-02-15T06:59:43Z +9829 2005-07-31T11:58:38Z 231 435 2005-08-07T08:11:38Z 2 2020-02-15T06:59:43Z +9830 2005-07-31T11:59:05Z 170 112 2005-08-06T10:38:05Z 1 2020-02-15T06:59:43Z +9831 2005-07-31T11:59:32Z 1961 192 2005-08-04T07:14:32Z 1 2020-02-15T06:59:43Z +9832 2005-07-31T12:01:49Z 3126 64 2005-08-08T09:21:49Z 1 2020-02-15T06:59:43Z +9833 2005-07-31T12:05:01Z 4243 368 2005-08-09T09:25:01Z 2 2020-02-15T06:59:43Z +9834 2005-07-31T12:05:42Z 2292 340 2005-08-07T15:26:42Z 1 2020-02-15T06:59:43Z +9835 2005-07-31T12:07:35Z 1051 328 2005-08-04T07:32:35Z 2 2020-02-15T06:59:43Z +9836 2005-07-31T12:12:00Z 2870 313 2005-08-09T06:53:00Z 1 2020-02-15T06:59:43Z +9837 2005-07-31T12:14:19Z 3488 573 2005-08-09T17:08:19Z 1 2020-02-15T06:59:43Z +9838 2005-07-31T12:18:49Z 3866 208 2005-08-03T16:49:49Z 2 2020-02-15T06:59:43Z +9839 2005-07-31T12:21:16Z 1591 561 2005-08-09T13:41:16Z 2 2020-02-15T06:59:43Z +9840 2005-07-31T12:23:18Z 364 388 2005-08-06T15:59:18Z 1 2020-02-15T06:59:43Z +9841 2005-07-31T12:24:19Z 4554 238 2005-08-09T15:31:19Z 1 2020-02-15T06:59:43Z +9842 2005-07-31T12:24:58Z 2896 261 2005-08-02T11:01:58Z 2 2020-02-15T06:59:43Z +9843 2005-07-31T12:25:28Z 2923 532 2005-08-01T09:51:28Z 2 2020-02-15T06:59:43Z +9844 2005-07-31T12:26:31Z 3930 181 2005-08-05T13:58:31Z 1 2020-02-15T06:59:43Z +9845 2005-07-31T12:28:05Z 2417 79 2005-08-06T06:47:05Z 1 2020-02-15T06:59:43Z +9846 2005-07-31T12:30:12Z 4240 573 2005-08-05T08:24:12Z 2 2020-02-15T06:59:43Z +9847 2005-07-31T12:33:43Z 1137 174 2005-08-04T14:15:43Z 2 2020-02-15T06:59:43Z +9848 2005-07-31T12:44:33Z 3290 346 2005-08-07T13:49:33Z 2 2020-02-15T06:59:43Z +9849 2005-07-31T12:44:34Z 2230 429 2005-08-02T16:49:34Z 1 2020-02-15T06:59:43Z +9850 2005-07-31T12:46:52Z 1461 497 2005-08-04T10:52:52Z 2 2020-02-15T06:59:43Z +9851 2005-07-31T12:50:24Z 25 49 2005-08-08T08:30:24Z 2 2020-02-15T06:59:43Z +9852 2005-07-31T12:52:17Z 4257 415 2005-08-05T07:59:17Z 2 2020-02-15T06:59:43Z +9853 2005-07-31T12:58:20Z 1782 221 2005-08-04T10:47:20Z 1 2020-02-15T06:59:43Z +9854 2005-07-31T12:59:34Z 1049 441 2005-08-03T07:20:34Z 2 2020-02-15T06:59:43Z +9855 2005-07-31T13:00:33Z 1246 326 2005-08-03T16:18:33Z 2 2020-02-15T06:59:43Z +9856 2005-07-31T13:00:35Z 723 347 2005-08-07T18:07:35Z 1 2020-02-15T06:59:43Z +9857 2005-07-31T13:00:53Z 3316 168 2005-08-09T15:56:53Z 1 2020-02-15T06:59:43Z +9858 2005-07-31T13:02:07Z 252 128 2005-08-03T15:14:07Z 2 2020-02-15T06:59:43Z +9859 2005-07-31T13:02:55Z 4094 127 2005-08-05T11:04:55Z 1 2020-02-15T06:59:43Z +9860 2005-07-31T13:03:24Z 3266 585 2005-08-07T07:28:24Z 2 2020-02-15T06:59:43Z +9861 2005-07-31T13:04:14Z 1050 264 2005-08-09T15:22:14Z 1 2020-02-15T06:59:43Z +9862 2005-07-31T13:05:03Z 474 513 2005-08-01T09:05:03Z 2 2020-02-15T06:59:43Z +9863 2005-07-31T13:05:29Z 19 239 2005-08-08T12:33:29Z 1 2020-02-15T06:59:43Z +9864 2005-07-31T13:06:54Z 3619 394 2005-08-02T11:47:54Z 2 2020-02-15T06:59:43Z +9865 2005-07-31T13:10:45Z 1355 580 2005-08-02T09:19:45Z 2 2020-02-15T06:59:43Z +9866 2005-07-31T13:13:50Z 3555 374 2005-08-07T15:11:50Z 1 2020-02-15T06:59:43Z +9867 2005-07-31T13:17:04Z 2485 83 2005-08-05T07:17:04Z 2 2020-02-15T06:59:43Z +9868 2005-07-31T13:20:08Z 266 378 2005-08-01T18:17:08Z 2 2020-02-15T06:59:43Z +9869 2005-07-31T13:21:54Z 783 261 2005-08-07T09:09:54Z 1 2020-02-15T06:59:43Z +9870 2005-07-31T13:22:51Z 442 195 2005-08-05T16:04:51Z 1 2020-02-15T06:59:43Z +9871 2005-07-31T13:25:46Z 194 109 2005-08-01T13:12:46Z 2 2020-02-15T06:59:43Z +9872 2005-07-31T13:27:55Z 1021 376 2005-08-04T14:33:55Z 1 2020-02-15T06:59:43Z +9873 2005-07-31T13:32:18Z 667 442 2005-08-06T11:15:18Z 2 2020-02-15T06:59:43Z +9874 2005-07-31T13:32:31Z 2476 482 2005-08-07T09:50:31Z 2 2020-02-15T06:59:43Z +9875 2005-07-31T13:37:41Z 2878 421 2005-08-03T15:17:41Z 2 2020-02-15T06:59:43Z +9876 2005-07-31T13:37:51Z 828 347 2005-08-07T18:05:51Z 2 2020-02-15T06:59:43Z +9877 2005-07-31T13:41:57Z 1299 559 2005-08-06T15:27:57Z 2 2020-02-15T06:59:43Z +9878 2005-07-31T13:42:02Z 1753 424 2005-08-05T10:15:02Z 2 2020-02-15T06:59:43Z +9879 2005-07-31T13:45:32Z 1935 178 2005-08-07T17:12:32Z 1 2020-02-15T06:59:43Z +9880 2005-07-31T13:49:02Z 3590 64 2005-08-08T10:31:02Z 2 2020-02-15T06:59:43Z +9881 2005-07-31T13:50:38Z 4209 412 2005-08-06T08:58:38Z 1 2020-02-15T06:59:43Z +9882 2005-07-31T13:53:33Z 1429 311 2005-08-09T15:55:33Z 1 2020-02-15T06:59:43Z +9883 2005-07-31T13:53:37Z 4286 356 2005-08-06T15:45:37Z 1 2020-02-15T06:59:43Z +9884 2005-07-31T13:56:24Z 511 590 2005-08-01T16:59:24Z 1 2020-02-15T06:59:43Z +9885 2005-07-31T13:59:32Z 3600 461 2005-08-07T12:30:32Z 2 2020-02-15T06:59:43Z +9886 2005-07-31T14:00:13Z 1386 519 2005-08-08T19:30:13Z 1 2020-02-15T06:59:43Z +9887 2005-07-31T14:00:32Z 436 549 2005-08-05T19:16:32Z 1 2020-02-15T06:59:43Z +9888 2005-07-31T14:00:53Z 4400 5 2005-08-08T18:51:53Z 2 2020-02-15T06:59:43Z +9889 2005-07-31T14:02:50Z 2842 143 2005-08-05T12:09:50Z 2 2020-02-15T06:59:43Z +9890 2005-07-31T14:04:44Z 1024 151 2005-08-01T11:24:44Z 1 2020-02-15T06:59:43Z +9891 2005-07-31T14:05:44Z 3359 462 2005-08-02T16:21:44Z 2 2020-02-15T06:59:43Z +9892 2005-07-31T14:06:25Z 1045 251 2005-08-03T18:11:25Z 2 2020-02-15T06:59:43Z +9893 2005-07-31T14:07:21Z 2445 179 2005-08-01T09:20:21Z 2 2020-02-15T06:59:43Z +9894 2005-07-31T14:07:44Z 3724 199 2005-08-05T18:01:44Z 2 2020-02-15T06:59:43Z +9895 2005-07-31T14:07:56Z 835 560 2005-08-05T14:56:56Z 1 2020-02-15T06:59:43Z +9896 2005-07-31T14:09:48Z 2591 586 2005-08-01T20:02:48Z 1 2020-02-15T06:59:43Z +9897 2005-07-31T14:11:57Z 3945 538 2005-08-02T12:20:57Z 1 2020-02-15T06:59:43Z +9898 2005-07-31T14:12:03Z 2151 359 2005-08-01T12:27:03Z 1 2020-02-15T06:59:43Z +9899 2005-07-31T14:12:36Z 3352 168 2005-08-08T08:59:36Z 1 2020-02-15T06:59:43Z +9900 2005-07-31T14:15:05Z 3132 453 2005-08-07T11:58:05Z 2 2020-02-15T06:59:43Z +9901 2005-07-31T14:20:59Z 3332 277 2005-08-03T09:30:59Z 1 2020-02-15T06:59:43Z +9902 2005-07-31T14:24:33Z 486 218 2005-08-09T11:11:33Z 2 2020-02-15T06:59:43Z +9903 2005-07-31T14:31:44Z 1621 316 2005-08-08T20:03:44Z 1 2020-02-15T06:59:43Z +9904 2005-07-31T14:34:17Z 4089 428 2005-08-08T17:19:17Z 1 2020-02-15T06:59:43Z +9905 2005-07-31T14:37:03Z 2839 519 2005-08-01T15:55:03Z 2 2020-02-15T06:59:43Z +9906 2005-07-31T14:38:12Z 4241 204 2005-08-01T13:56:12Z 1 2020-02-15T06:59:43Z +9907 2005-07-31T14:39:50Z 4282 120 2005-08-09T09:39:50Z 1 2020-02-15T06:59:43Z +9908 2005-07-31T14:39:52Z 4408 27 2005-08-09T09:46:52Z 2 2020-02-15T06:59:43Z +9909 2005-07-31T14:43:34Z 2600 587 2005-08-09T15:31:34Z 1 2020-02-15T06:59:43Z +9910 2005-07-31T14:47:57Z 368 122 2005-08-05T18:20:57Z 1 2020-02-15T06:59:43Z +9911 2005-07-31T14:48:01Z 3879 112 2005-08-06T11:55:01Z 1 2020-02-15T06:59:43Z +9912 2005-07-31T14:49:04Z 3119 367 2005-08-03T15:40:04Z 1 2020-02-15T06:59:43Z +9913 2005-07-31T14:51:04Z 3744 229 2005-08-06T12:12:04Z 1 2020-02-15T06:59:43Z +9914 2005-07-31T14:51:19Z 3147 530 2005-08-05T09:51:19Z 1 2020-02-15T06:59:43Z +9915 2005-07-31T14:52:26Z 2933 566 2005-08-03T11:53:26Z 1 2020-02-15T06:59:43Z +9916 2005-07-31T14:54:52Z 949 432 2005-08-07T13:18:52Z 1 2020-02-15T06:59:43Z +9917 2005-07-31T14:55:11Z 3829 159 2005-08-02T13:58:11Z 2 2020-02-15T06:59:43Z +9918 2005-07-31T14:55:22Z 2519 283 2005-08-04T09:02:22Z 2 2020-02-15T06:59:43Z +9919 2005-07-31T14:55:46Z 3205 291 2005-08-08T11:43:46Z 2 2020-02-15T06:59:43Z +9920 2005-07-31T14:57:13Z 3108 139 2005-08-03T18:58:13Z 2 2020-02-15T06:59:43Z +9921 2005-07-31T14:59:21Z 1004 332 2005-08-01T12:40:21Z 2 2020-02-15T06:59:43Z +9922 2005-07-31T14:59:37Z 3615 25 2005-08-06T14:05:37Z 1 2020-02-15T06:59:43Z +9923 2005-07-31T15:00:15Z 1635 209 2005-08-05T11:09:15Z 2 2020-02-15T06:59:43Z +9924 2005-07-31T15:04:57Z 1986 64 2005-08-05T20:07:57Z 2 2020-02-15T06:59:43Z +9925 2005-07-31T15:08:47Z 2351 24 2005-08-02T20:27:47Z 1 2020-02-15T06:59:43Z +9926 2005-07-31T15:11:51Z 3733 472 2005-08-09T18:26:51Z 1 2020-02-15T06:59:43Z +9927 2005-07-31T15:12:13Z 999 346 2005-08-01T11:37:13Z 1 2020-02-15T06:59:43Z +9928 2005-07-31T15:13:57Z 3627 53 2005-08-06T20:39:57Z 1 2020-02-15T06:59:43Z +9929 2005-07-31T15:17:24Z 2521 564 2005-08-03T17:27:24Z 1 2020-02-15T06:59:43Z +9930 2005-07-31T15:18:03Z 4491 304 2005-08-01T12:36:03Z 2 2020-02-15T06:59:43Z +9931 2005-07-31T15:18:19Z 3455 183 2005-08-04T14:23:19Z 2 2020-02-15T06:59:43Z +9932 2005-07-31T15:19:48Z 1691 264 2005-08-05T21:09:48Z 1 2020-02-15T06:59:43Z +9933 2005-07-31T15:24:46Z 2349 111 2005-08-01T10:00:46Z 1 2020-02-15T06:59:43Z +9934 2005-07-31T15:25:26Z 2492 236 2005-08-05T17:13:26Z 1 2020-02-15T06:59:43Z +9935 2005-07-31T15:27:07Z 2247 10 2005-08-05T11:23:07Z 1 2020-02-15T06:59:43Z +9936 2005-07-31T15:27:41Z 979 153 2005-08-06T16:25:41Z 1 2020-02-15T06:59:43Z +9937 2005-07-31T15:28:10Z 3697 521 2005-08-06T21:20:10Z 2 2020-02-15T06:59:43Z +9938 2005-07-31T15:28:47Z 2871 63 2005-08-09T21:24:47Z 2 2020-02-15T06:59:43Z +9939 2005-07-31T15:29:00Z 3049 538 2005-08-08T11:09:00Z 1 2020-02-15T06:59:43Z +9940 2005-07-31T15:29:06Z 3975 388 2005-08-06T14:26:06Z 2 2020-02-15T06:59:43Z +9941 2005-07-31T15:31:25Z 1756 175 2005-08-05T17:23:25Z 1 2020-02-15T06:59:43Z +9942 2005-07-31T15:35:43Z 4573 545 2005-08-07T17:37:43Z 2 2020-02-15T06:59:43Z +9943 2005-07-31T15:37:29Z 887 494 2005-08-09T18:25:29Z 1 2020-02-15T06:59:43Z +9944 2005-07-31T15:44:43Z 2540 241 2005-08-08T10:30:43Z 1 2020-02-15T06:59:43Z +9945 2005-07-31T15:47:51Z 2075 309 2005-08-02T19:06:51Z 1 2020-02-15T06:59:43Z +9946 2005-07-31T15:48:54Z 2100 29 2005-08-03T12:42:54Z 2 2020-02-15T06:59:43Z +9947 2005-07-31T15:49:40Z 1173 138 2005-08-08T11:11:40Z 1 2020-02-15T06:59:43Z +9948 2005-07-31T15:49:41Z 806 342 2005-08-06T12:36:41Z 1 2020-02-15T06:59:43Z +9949 2005-07-31T15:50:10Z 3258 309 2005-08-01T17:53:10Z 2 2020-02-15T06:59:43Z +9950 2005-07-31T15:50:22Z 1657 572 2005-08-08T19:10:22Z 2 2020-02-15T06:59:43Z +9951 2005-07-31T15:51:16Z 4412 95 2005-08-03T14:54:16Z 1 2020-02-15T06:59:43Z +9952 2005-07-31T15:52:37Z 1634 128 2005-08-06T10:50:37Z 2 2020-02-15T06:59:43Z +9953 2005-07-31T15:56:35Z 1646 211 2005-08-02T12:01:35Z 2 2020-02-15T06:59:43Z +9954 2005-07-31T15:57:07Z 1830 463 2005-08-05T12:04:07Z 2 2020-02-15T06:59:43Z +9955 2005-07-31T16:01:26Z 1745 342 2005-08-04T11:15:26Z 2 2020-02-15T06:59:43Z +9956 2005-07-31T16:03:47Z 4485 342 2005-08-01T16:40:47Z 2 2020-02-15T06:59:43Z +9957 2005-07-31T16:03:55Z 1857 85 2005-08-04T15:16:55Z 2 2020-02-15T06:59:43Z +9958 2005-07-31T16:03:56Z 4142 157 2005-08-04T15:21:56Z 2 2020-02-15T06:59:43Z +9959 2005-07-31T16:04:22Z 340 199 2005-08-03T21:51:22Z 2 2020-02-15T06:59:43Z +9960 2005-07-31T16:05:52Z 1022 569 2005-08-05T14:15:52Z 2 2020-02-15T06:59:43Z +9961 2005-07-31T16:07:50Z 1856 40 2005-08-07T18:37:50Z 2 2020-02-15T06:59:43Z +9962 2005-07-31T16:10:36Z 1951 576 2005-08-02T17:09:36Z 1 2020-02-15T06:59:43Z +9963 2005-07-31T16:16:46Z 1609 573 2005-08-02T22:00:46Z 1 2020-02-15T06:59:43Z +9964 2005-07-31T16:17:39Z 3149 191 2005-08-03T15:03:39Z 1 2020-02-15T06:59:43Z +9965 2005-07-31T16:19:32Z 3946 101 2005-08-05T20:18:32Z 2 2020-02-15T06:59:43Z +9966 2005-07-31T16:26:46Z 4137 373 2005-08-03T14:29:46Z 1 2020-02-15T06:59:43Z +9967 2005-07-31T16:31:17Z 958 537 2005-08-06T13:52:17Z 1 2020-02-15T06:59:43Z +9968 2005-07-31T16:32:16Z 2666 363 2005-08-08T12:23:16Z 1 2020-02-15T06:59:43Z +9969 2005-07-31T16:38:12Z 938 151 2005-08-05T11:45:12Z 2 2020-02-15T06:59:43Z +9970 2005-07-31T16:38:24Z 2846 578 2005-08-02T12:59:24Z 2 2020-02-15T06:59:43Z +9971 2005-07-31T16:42:16Z 2674 573 2005-08-09T18:08:16Z 2 2020-02-15T06:59:43Z +9972 2005-07-31T16:42:43Z 190 506 2005-08-02T11:05:43Z 2 2020-02-15T06:59:43Z +9973 2005-07-31T16:49:31Z 1850 369 2005-08-03T22:03:31Z 2 2020-02-15T06:59:43Z +9974 2005-07-31T16:51:11Z 430 503 2005-08-05T16:04:11Z 1 2020-02-15T06:59:43Z +9975 2005-07-31T16:53:43Z 2564 40 2005-08-07T20:13:43Z 2 2020-02-15T06:59:43Z +9976 2005-07-31T16:57:49Z 4219 579 2005-08-03T16:33:49Z 2 2020-02-15T06:59:43Z +9977 2005-07-31T16:58:42Z 2300 363 2005-08-09T13:34:42Z 1 2020-02-15T06:59:43Z +9978 2005-07-31T16:59:51Z 2812 427 2005-08-06T16:48:51Z 2 2020-02-15T06:59:43Z +9979 2005-07-31T17:00:07Z 646 576 2005-08-08T20:40:07Z 1 2020-02-15T06:59:43Z +9980 2005-07-31T17:02:00Z 122 225 2005-08-08T11:11:00Z 2 2020-02-15T06:59:43Z +9981 2005-07-31T17:08:31Z 1354 321 2005-08-01T22:46:31Z 2 2020-02-15T06:59:43Z +9982 2005-07-31T17:09:02Z 2698 428 2005-08-02T13:02:02Z 2 2020-02-15T06:59:43Z +9983 2005-07-31T17:09:36Z 350 129 2005-08-08T20:26:36Z 1 2020-02-15T06:59:43Z +9984 2005-07-31T17:12:23Z 433 432 2005-08-01T21:04:23Z 2 2020-02-15T06:59:43Z +9985 2005-07-31T17:14:47Z 1831 85 2005-08-01T12:11:47Z 2 2020-02-15T06:59:43Z +9986 2005-07-31T17:16:50Z 1242 124 2005-08-05T18:34:50Z 2 2020-02-15T06:59:43Z +9987 2005-07-31T17:22:35Z 1619 15 2005-08-01T21:19:35Z 2 2020-02-15T06:59:43Z +9988 2005-07-31T17:22:36Z 3844 243 2005-08-07T18:35:36Z 2 2020-02-15T06:59:43Z +9989 2005-07-31T17:22:39Z 1713 79 2005-08-01T18:55:39Z 1 2020-02-15T06:59:43Z +9990 2005-07-31T17:24:21Z 4481 555 2005-08-09T17:14:21Z 2 2020-02-15T06:59:43Z +9991 2005-07-31T17:26:27Z 3662 414 2005-08-03T17:36:27Z 1 2020-02-15T06:59:43Z +9992 2005-07-31T17:29:48Z 4242 304 2005-08-09T13:02:48Z 2 2020-02-15T06:59:43Z +9993 2005-07-31T17:30:20Z 2503 225 2005-08-01T20:53:20Z 2 2020-02-15T06:59:43Z +9994 2005-07-31T17:30:31Z 2155 195 2005-08-01T11:35:31Z 1 2020-02-15T06:59:43Z +9995 2005-07-31T17:30:47Z 1978 180 2005-08-04T12:20:47Z 2 2020-02-15T06:59:43Z +9996 2005-07-31T17:32:03Z 3271 104 2005-08-06T16:17:03Z 2 2020-02-15T06:59:43Z +9997 2005-07-31T17:37:30Z 640 579 2005-08-02T14:49:30Z 1 2020-02-15T06:59:43Z +9998 2005-07-31T17:40:35Z 2549 30 2005-08-04T18:15:35Z 1 2020-02-15T06:59:43Z +9999 2005-07-31T17:40:53Z 1438 543 2005-08-01T14:25:53Z 1 2020-02-15T06:59:43Z +10000 2005-07-31T17:41:05Z 3221 576 2005-08-02T20:51:05Z 1 2020-02-15T06:59:43Z +10001 2005-07-31T17:46:18Z 2188 244 2005-08-07T20:38:18Z 1 2020-02-15T06:59:43Z +10002 2005-07-31T17:48:16Z 1002 323 2005-08-06T16:15:16Z 1 2020-02-15T06:59:43Z +10003 2005-07-31T17:48:51Z 1603 13 2005-08-02T14:23:51Z 1 2020-02-15T06:59:43Z +10004 2005-07-31T17:51:23Z 2396 570 2005-08-03T19:12:23Z 1 2020-02-15T06:59:43Z +10005 2005-07-31T17:53:51Z 928 454 2005-08-09T21:39:51Z 1 2020-02-15T06:59:43Z +10006 2005-07-31T17:54:35Z 2538 470 2005-08-02T20:40:35Z 2 2020-02-15T06:59:43Z +10007 2005-07-31T17:54:58Z 293 445 2005-08-05T17:24:58Z 2 2020-02-15T06:59:43Z +10008 2005-07-31T17:59:36Z 2589 91 2005-08-03T22:43:36Z 2 2020-02-15T06:59:43Z +10009 2005-07-31T18:00:28Z 4441 437 2005-08-08T22:24:28Z 2 2020-02-15T06:59:43Z +10010 2005-07-31T18:01:36Z 2655 373 2005-08-07T20:27:36Z 2 2020-02-15T06:59:43Z +10011 2005-07-31T18:02:41Z 606 128 2005-08-08T17:04:41Z 1 2020-02-15T06:59:43Z +10012 2005-07-31T18:06:06Z 2554 513 2005-08-09T16:47:06Z 2 2020-02-15T06:59:43Z +10013 2005-07-31T18:08:21Z 2364 377 2005-08-08T13:22:21Z 2 2020-02-15T06:59:43Z +10014 2005-07-31T18:10:56Z 2344 443 2005-08-02T23:36:56Z 1 2020-02-15T06:59:43Z +10015 2005-07-31T18:11:17Z 67 153 2005-08-03T15:48:17Z 2 2020-02-15T06:59:43Z +10016 2005-07-31T18:13:06Z 2183 478 2005-08-09T22:11:06Z 1 2020-02-15T06:59:43Z +10017 2005-07-31T18:13:22Z 1495 424 2005-08-05T16:03:22Z 1 2020-02-15T06:59:43Z +10018 2005-07-31T18:15:14Z 3708 481 2005-08-05T14:44:14Z 2 2020-02-15T06:59:43Z +10019 2005-07-31T18:20:56Z 2114 536 2005-08-07T14:25:56Z 1 2020-02-15T06:59:43Z +10020 2005-07-31T18:21:08Z 302 526 2005-08-02T14:03:08Z 2 2020-02-15T06:59:43Z +10021 2005-07-31T18:24:39Z 3235 597 2005-08-01T19:16:39Z 1 2020-02-15T06:59:43Z +10022 2005-07-31T18:25:30Z 1900 115 2005-08-04T13:35:30Z 1 2020-02-15T06:59:43Z +10023 2005-07-31T18:25:51Z 384 318 2005-08-09T18:00:51Z 1 2020-02-15T06:59:43Z +10024 2005-07-31T18:26:36Z 265 129 2005-08-09T16:16:36Z 1 2020-02-15T06:59:43Z +10025 2005-07-31T18:29:09Z 475 565 2005-08-07T14:20:09Z 2 2020-02-15T06:59:43Z +10026 2005-07-31T18:31:51Z 39 332 2005-08-03T21:14:51Z 2 2020-02-15T06:59:43Z +10027 2005-07-31T18:33:51Z 525 287 2005-08-09T18:40:51Z 1 2020-02-15T06:59:43Z +10028 2005-07-31T18:35:54Z 2305 323 2005-08-01T13:01:54Z 2 2020-02-15T06:59:43Z +10029 2005-07-31T18:37:47Z 505 578 2005-08-06T14:58:47Z 2 2020-02-15T06:59:43Z +10030 2005-07-31T18:39:36Z 1392 325 2005-08-03T15:29:36Z 2 2020-02-15T06:59:43Z +10031 2005-07-31T18:40:15Z 3048 96 2005-08-03T14:38:15Z 1 2020-02-15T06:59:43Z +10032 2005-07-31T18:41:55Z 2331 126 2005-08-04T22:45:55Z 1 2020-02-15T06:59:43Z +10033 2005-07-31T18:44:29Z 4480 381 2005-08-04T19:52:29Z 1 2020-02-15T06:59:43Z +10034 2005-07-31T18:45:30Z 354 442 2005-08-04T21:13:30Z 2 2020-02-15T06:59:43Z +10035 2005-07-31T18:46:46Z 2694 333 2005-08-04T20:33:46Z 1 2020-02-15T06:59:43Z +10036 2005-07-31T18:47:20Z 41 491 2005-08-03T22:53:20Z 1 2020-02-15T06:59:43Z +10037 2005-07-31T18:48:08Z 438 58 2005-08-09T19:11:08Z 2 2020-02-15T06:59:43Z +10038 2005-07-31T18:49:12Z 3727 112 2005-08-01T18:02:12Z 1 2020-02-15T06:59:43Z +10039 2005-07-31T18:50:40Z 4391 111 2005-08-01T18:49:40Z 2 2020-02-15T06:59:43Z +10040 2005-07-31T18:54:15Z 2281 268 2005-08-05T17:33:15Z 2 2020-02-15T06:59:43Z +10041 2005-07-31T19:01:02Z 2994 379 2005-08-07T21:32:02Z 1 2020-02-15T06:59:43Z +10042 2005-07-31T19:01:25Z 123 204 2005-08-06T14:21:25Z 1 2020-02-15T06:59:43Z +10043 2005-07-31T19:02:07Z 2558 222 2005-08-07T17:58:07Z 1 2020-02-15T06:59:43Z +10044 2005-07-31T19:02:33Z 3349 388 2005-08-05T13:24:33Z 2 2020-02-15T06:59:43Z +10045 2005-07-31T19:04:35Z 58 118 2005-08-07T16:53:35Z 1 2020-02-15T06:59:43Z +10046 2005-07-31T19:07:11Z 4302 50 2005-08-03T13:25:11Z 1 2020-02-15T06:59:43Z +10047 2005-07-31T19:07:43Z 4195 244 2005-08-07T00:20:43Z 2 2020-02-15T06:59:43Z +10048 2005-07-31T19:08:56Z 3821 267 2005-08-05T20:15:56Z 2 2020-02-15T06:59:43Z +10049 2005-07-31T19:11:11Z 854 457 2005-08-03T22:15:11Z 1 2020-02-15T06:59:43Z +10050 2005-07-31T19:13:29Z 295 230 2005-08-06T15:44:29Z 1 2020-02-15T06:59:43Z +10051 2005-07-31T19:14:20Z 163 74 2005-08-05T19:45:20Z 1 2020-02-15T06:59:43Z +10052 2005-07-31T19:15:13Z 3307 39 2005-08-07T22:47:13Z 2 2020-02-15T06:59:43Z +10053 2005-07-31T19:15:39Z 4102 223 2005-08-07T22:32:39Z 1 2020-02-15T06:59:43Z +10054 2005-07-31T19:15:52Z 2303 598 2005-08-04T19:54:52Z 1 2020-02-15T06:59:43Z +10055 2005-07-31T19:15:58Z 2725 336 2005-08-05T20:23:58Z 1 2020-02-15T06:59:43Z +10056 2005-07-31T19:19:13Z 281 237 2005-08-01T16:09:13Z 2 2020-02-15T06:59:43Z +10057 2005-07-31T19:20:18Z 3485 230 2005-08-08T17:59:18Z 2 2020-02-15T06:59:43Z +10058 2005-07-31T19:20:21Z 758 237 2005-08-04T00:41:21Z 2 2020-02-15T06:59:43Z +10059 2005-07-31T19:20:49Z 2020 274 2005-08-03T14:39:49Z 1 2020-02-15T06:59:43Z +10060 2005-07-31T19:23:00Z 1979 42 2005-08-08T19:07:00Z 1 2020-02-15T06:59:43Z +10061 2005-07-31T19:23:25Z 1401 390 2005-08-04T19:38:25Z 1 2020-02-15T06:59:43Z +10062 2005-07-31T19:24:55Z 1815 333 2005-08-03T22:51:55Z 2 2020-02-15T06:59:43Z +10063 2005-07-31T19:25:13Z 3003 517 2005-08-09T15:55:13Z 1 2020-02-15T06:59:43Z +10064 2005-07-31T19:27:02Z 3140 41 2005-08-06T21:15:02Z 1 2020-02-15T06:59:43Z +10065 2005-07-31T19:27:34Z 1426 495 2005-08-01T13:45:34Z 2 2020-02-15T06:59:43Z +10066 2005-07-31T19:30:01Z 4285 123 2005-08-01T14:45:01Z 2 2020-02-15T06:59:43Z +10067 2005-07-31T19:37:58Z 1940 148 2005-08-04T17:32:58Z 2 2020-02-15T06:59:43Z +10068 2005-07-31T19:39:38Z 4000 58 2005-08-05T22:49:38Z 1 2020-02-15T06:59:43Z +10069 2005-07-31T19:43:18Z 2168 270 2005-08-06T19:40:18Z 2 2020-02-15T06:59:43Z +10070 2005-07-31T19:46:29Z 1010 325 2005-08-03T22:21:29Z 1 2020-02-15T06:59:43Z +10071 2005-07-31T19:49:35Z 2360 353 2005-08-03T00:00:35Z 2 2020-02-15T06:59:43Z +10072 2005-07-31T19:50:37Z 3963 520 2005-08-03T00:25:37Z 2 2020-02-15T06:59:43Z +10073 2005-07-31T19:53:15Z 4246 584 2005-08-05T23:12:15Z 2 2020-02-15T06:59:43Z +10074 2005-07-31T19:57:16Z 1268 69 2005-08-04T00:54:16Z 1 2020-02-15T06:59:43Z +10075 2005-07-31T19:58:42Z 2037 469 2005-08-08T19:49:42Z 1 2020-02-15T06:59:43Z +10076 2005-07-31T20:00:34Z 1117 555 2005-08-10T00:37:34Z 2 2020-02-15T06:59:43Z +10077 2005-07-31T20:01:06Z 2333 19 2005-08-09T16:07:06Z 1 2020-02-15T06:59:43Z +10078 2005-07-31T20:02:02Z 3198 151 2005-08-04T00:45:02Z 1 2020-02-15T06:59:43Z +10079 2005-07-31T20:05:45Z 4541 486 2005-08-04T16:25:45Z 2 2020-02-15T06:59:43Z +10080 2005-07-31T20:07:10Z 4355 62 2005-08-04T23:07:10Z 2 2020-02-15T06:59:43Z +10081 2005-07-31T20:07:44Z 3183 443 2005-08-06T20:04:44Z 1 2020-02-15T06:59:43Z +10082 2005-07-31T20:09:32Z 1275 76 2005-08-01T15:41:32Z 2 2020-02-15T06:59:43Z +10083 2005-07-31T20:10:19Z 2585 449 2005-08-06T23:18:19Z 1 2020-02-15T06:59:43Z +10084 2005-07-31T20:11:29Z 524 528 2005-08-06T22:28:29Z 2 2020-02-15T06:59:43Z +10085 2005-07-31T20:12:02Z 2556 392 2005-08-03T00:03:02Z 2 2020-02-15T06:59:43Z +10086 2005-07-31T20:14:08Z 2853 205 2005-08-07T01:33:08Z 2 2020-02-15T06:59:43Z +10087 2005-07-31T20:15:22Z 1393 245 2005-08-07T01:33:22Z 1 2020-02-15T06:59:43Z +10088 2005-07-31T20:16:21Z 4293 46 2005-08-01T22:47:21Z 2 2020-02-15T06:59:43Z +10089 2005-07-31T20:17:09Z 248 160 2005-08-01T19:14:09Z 2 2020-02-15T06:59:43Z +10090 2005-07-31T20:22:01Z 4023 533 2005-08-04T17:30:01Z 1 2020-02-15T06:59:43Z +10091 2005-07-31T20:23:13Z 1878 135 2005-08-02T21:58:13Z 2 2020-02-15T06:59:43Z +10092 2005-07-31T20:28:09Z 4151 364 2005-08-01T21:37:09Z 1 2020-02-15T06:59:43Z +10093 2005-07-31T20:30:32Z 3943 162 2005-08-04T00:04:32Z 2 2020-02-15T06:59:43Z +10094 2005-07-31T20:31:18Z 2865 596 2005-08-06T18:31:18Z 2 2020-02-15T06:59:43Z +10095 2005-07-31T20:38:35Z 4062 370 2005-08-02T02:33:35Z 1 2020-02-15T06:59:43Z +10096 2005-07-31T20:38:58Z 3606 290 2005-08-06T02:34:58Z 1 2020-02-15T06:59:43Z +10097 2005-07-31T20:39:38Z 784 519 2005-08-08T22:22:38Z 1 2020-02-15T06:59:43Z +10098 2005-07-31T20:41:17Z 1324 155 2005-08-02T00:06:17Z 2 2020-02-15T06:59:43Z +10099 2005-07-31T20:47:14Z 1960 220 2005-08-02T17:25:14Z 1 2020-02-15T06:59:43Z +10100 2005-07-31T20:47:18Z 4050 330 2005-08-03T16:58:18Z 2 2020-02-15T06:59:43Z +10101 2005-07-31T20:47:29Z 2513 119 2005-08-04T21:28:29Z 1 2020-02-15T06:59:43Z +10102 2005-07-31T20:49:10Z 4078 170 2005-08-08T20:15:10Z 1 2020-02-15T06:59:43Z +10103 2005-07-31T20:49:13Z 77 25 2005-08-05T15:55:13Z 2 2020-02-15T06:59:43Z +10104 2005-07-31T20:49:14Z 3358 186 2005-08-05T01:11:14Z 2 2020-02-15T06:59:43Z +10105 2005-07-31T20:54:20Z 112 286 2005-08-09T17:45:20Z 1 2020-02-15T06:59:43Z +10106 2005-07-31T21:00:47Z 3444 556 2005-08-02T20:11:47Z 2 2020-02-15T06:59:43Z +10107 2005-07-31T21:01:46Z 1326 414 2005-08-09T01:33:46Z 2 2020-02-15T06:59:43Z +10108 2005-07-31T21:02:14Z 3703 326 2005-08-01T18:28:14Z 1 2020-02-15T06:59:43Z +10109 2005-07-31T21:04:49Z 2852 403 2005-08-08T19:25:49Z 1 2020-02-15T06:59:43Z +10110 2005-07-31T21:06:12Z 4081 138 2005-08-03T02:03:12Z 2 2020-02-15T06:59:43Z +10111 2005-07-31T21:08:33Z 3474 38 2005-08-06T02:58:33Z 2 2020-02-15T06:59:43Z +10112 2005-07-31T21:08:56Z 2643 198 2005-08-01T23:35:56Z 2 2020-02-15T06:59:43Z +10113 2005-07-31T21:10:03Z 3974 461 2005-08-02T21:13:03Z 2 2020-02-15T06:59:43Z +10114 2005-07-31T21:12:58Z 3881 218 2005-08-02T19:45:58Z 2 2020-02-15T06:59:43Z +10115 2005-07-31T21:13:47Z 2731 68 2005-08-10T00:44:47Z 1 2020-02-15T06:59:43Z +10116 2005-07-31T21:14:02Z 738 28 2005-08-03T01:48:02Z 2 2020-02-15T06:59:43Z +10117 2005-07-31T21:14:31Z 1894 459 2005-08-01T15:59:31Z 2 2020-02-15T06:59:43Z +10118 2005-07-31T21:16:31Z 1209 143 2005-08-03T02:32:31Z 1 2020-02-15T06:59:43Z +10119 2005-07-31T21:20:59Z 54 351 2005-08-02T23:14:59Z 2 2020-02-15T06:59:43Z +10120 2005-07-31T21:24:24Z 1709 396 2005-08-03T17:44:24Z 2 2020-02-15T06:59:43Z +10121 2005-07-31T21:24:53Z 2969 425 2005-08-03T22:24:53Z 1 2020-02-15T06:59:43Z +10122 2005-07-31T21:29:28Z 4229 196 2005-08-09T00:04:28Z 1 2020-02-15T06:59:43Z +10123 2005-07-31T21:30:46Z 4564 487 2005-08-06T16:28:46Z 1 2020-02-15T06:59:43Z +10124 2005-07-31T21:31:49Z 1956 396 2005-08-04T00:06:49Z 1 2020-02-15T06:59:43Z +10125 2005-07-31T21:33:03Z 493 178 2005-08-01T19:10:03Z 1 2020-02-15T06:59:43Z +10126 2005-07-31T21:36:07Z 3 39 2005-08-03T23:59:07Z 1 2020-02-15T06:59:43Z +10127 2005-07-31T21:39:48Z 717 478 2005-08-06T00:10:48Z 1 2020-02-15T06:59:43Z +10128 2005-07-31T21:40:04Z 2559 508 2005-08-02T02:21:04Z 1 2020-02-15T06:59:43Z +10129 2005-07-31T21:41:35Z 2848 564 2005-08-05T17:05:35Z 1 2020-02-15T06:59:43Z +10130 2005-07-31T21:44:30Z 3964 95 2005-08-04T17:06:30Z 1 2020-02-15T06:59:43Z +10131 2005-07-31T21:45:28Z 4169 510 2005-08-04T00:19:28Z 2 2020-02-15T06:59:43Z +10132 2005-07-31T21:50:24Z 3934 23 2005-08-07T23:37:24Z 2 2020-02-15T06:59:43Z +10133 2005-07-31T21:55:07Z 614 234 2005-08-08T23:04:07Z 1 2020-02-15T06:59:43Z +10134 2005-07-31T21:56:10Z 4483 311 2005-08-06T21:20:10Z 1 2020-02-15T06:59:43Z +10135 2005-07-31T21:57:32Z 4193 307 2005-08-05T22:23:32Z 1 2020-02-15T06:59:43Z +10136 2005-07-31T21:58:56Z 3142 2 2005-08-03T19:44:56Z 1 2020-02-15T06:59:43Z +10137 2005-07-31T22:01:41Z 612 236 2005-08-07T22:24:41Z 1 2020-02-15T06:59:43Z +10138 2005-07-31T22:02:09Z 179 225 2005-08-07T20:46:09Z 2 2020-02-15T06:59:43Z +10139 2005-07-31T22:02:20Z 407 441 2005-08-04T02:09:20Z 1 2020-02-15T06:59:43Z +10140 2005-07-31T22:03:20Z 2494 550 2005-08-07T23:15:20Z 2 2020-02-15T06:59:43Z +10141 2005-07-31T22:08:29Z 8 8 2005-08-06T16:59:29Z 1 2020-02-15T06:59:43Z +10142 2005-07-31T22:10:54Z 1839 257 2005-08-09T19:04:54Z 2 2020-02-15T06:59:43Z +10143 2005-07-31T22:11:43Z 2139 271 2005-08-09T17:48:43Z 2 2020-02-15T06:59:43Z +10144 2005-07-31T22:13:52Z 3011 49 2005-08-05T19:27:52Z 1 2020-02-15T06:59:43Z +10145 2005-07-31T22:15:13Z 2511 361 2005-08-06T23:26:13Z 1 2020-02-15T06:59:43Z +10146 2005-07-31T22:17:56Z 1721 559 2005-08-02T21:27:56Z 1 2020-02-15T06:59:43Z +10147 2005-07-31T22:18:43Z 1351 198 2005-08-02T23:08:43Z 2 2020-02-15T06:59:43Z +10148 2005-07-31T22:19:16Z 1381 63 2005-08-05T00:15:16Z 2 2020-02-15T06:59:43Z +10149 2005-07-31T22:20:46Z 890 276 2005-08-07T23:12:46Z 2 2020-02-15T06:59:43Z +10150 2005-07-31T22:22:00Z 2328 419 2005-08-05T01:17:00Z 2 2020-02-15T06:59:43Z +10151 2005-07-31T22:22:37Z 4442 361 2005-08-01T22:20:37Z 1 2020-02-15T06:59:43Z +10152 2005-07-31T22:28:05Z 1114 244 2005-08-08T22:39:05Z 2 2020-02-15T06:59:43Z +10153 2005-07-31T22:30:10Z 2945 297 2005-08-06T02:32:10Z 2 2020-02-15T06:59:43Z +10154 2005-07-31T22:30:49Z 2745 149 2005-08-07T03:05:49Z 2 2020-02-15T06:59:43Z +10155 2005-07-31T22:31:43Z 3176 235 2005-08-07T02:43:43Z 1 2020-02-15T06:59:43Z +10156 2005-07-31T22:36:00Z 141 179 2005-08-02T00:03:00Z 2 2020-02-15T06:59:43Z +10157 2005-07-31T22:38:48Z 2960 232 2005-08-01T21:38:48Z 1 2020-02-15T06:59:43Z +10158 2005-07-31T22:40:31Z 1626 393 2005-08-08T18:25:31Z 2 2020-02-15T06:59:43Z +10159 2005-07-31T22:54:30Z 1174 515 2005-08-03T00:43:30Z 2 2020-02-15T06:59:43Z +10160 2005-07-31T23:07:40Z 863 295 2005-08-05T23:34:40Z 1 2020-02-15T06:59:43Z +10161 2005-07-31T23:09:41Z 2651 120 2005-08-02T20:46:41Z 2 2020-02-15T06:59:43Z +10162 2005-07-31T23:11:01Z 1327 475 2005-08-07T01:52:01Z 2 2020-02-15T06:59:43Z +10163 2005-07-31T23:12:34Z 2811 425 2005-08-01T22:47:34Z 2 2020-02-15T06:59:43Z +10164 2005-07-31T23:17:57Z 1405 89 2005-08-05T19:43:57Z 1 2020-02-15T06:59:43Z +10165 2005-07-31T23:21:23Z 3476 50 2005-08-06T18:06:23Z 1 2020-02-15T06:59:43Z +10166 2005-07-31T23:22:20Z 4304 484 2005-08-07T18:06:20Z 2 2020-02-15T06:59:43Z +10167 2005-07-31T23:24:31Z 1222 129 2005-08-06T17:42:31Z 2 2020-02-15T06:59:43Z +10168 2005-07-31T23:25:24Z 4548 570 2005-08-02T19:03:24Z 1 2020-02-15T06:59:43Z +10169 2005-07-31T23:27:13Z 2675 57 2005-08-05T20:32:13Z 2 2020-02-15T06:59:43Z +10170 2005-07-31T23:27:31Z 804 41 2005-08-08T04:53:31Z 2 2020-02-15T06:59:43Z +10171 2005-07-31T23:29:05Z 1367 401 2005-08-03T19:39:05Z 1 2020-02-15T06:59:43Z +10172 2005-07-31T23:29:51Z 2506 426 2005-08-09T01:57:51Z 1 2020-02-15T06:59:43Z +10173 2005-07-31T23:36:59Z 2527 326 2005-08-08T20:20:59Z 2 2020-02-15T06:59:43Z +10174 2005-07-31T23:40:08Z 2459 359 2005-08-06T21:08:08Z 2 2020-02-15T06:59:43Z +10175 2005-07-31T23:40:11Z 3672 137 2005-08-09T02:22:11Z 1 2020-02-15T06:59:43Z +10176 2005-07-31T23:40:35Z 1181 19 2005-08-09T00:46:35Z 2 2020-02-15T06:59:43Z +10177 2005-07-31T23:42:33Z 2242 279 2005-08-03T01:30:33Z 2 2020-02-15T06:59:43Z +10178 2005-07-31T23:43:04Z 1582 491 2005-08-03T00:43:04Z 1 2020-02-15T06:59:43Z +10179 2005-07-31T23:49:54Z 2136 131 2005-08-01T20:46:54Z 2 2020-02-15T06:59:43Z +10180 2005-07-31T23:57:43Z 757 50 2005-08-09T04:04:43Z 2 2020-02-15T06:59:43Z +10181 2005-08-01T00:00:44Z 3111 113 2005-08-04T19:33:44Z 1 2020-02-15T06:59:43Z +10182 2005-08-01T00:08:01Z 4112 578 2005-08-09T18:14:01Z 2 2020-02-15T06:59:43Z +10183 2005-08-01T00:08:01Z 4319 377 2005-08-09T20:41:01Z 1 2020-02-15T06:59:43Z +10184 2005-08-01T00:09:33Z 2785 77 2005-08-05T04:12:33Z 2 2020-02-15T06:59:43Z +10185 2005-08-01T00:12:11Z 1266 64 2005-08-03T03:03:11Z 1 2020-02-15T06:59:43Z +10186 2005-08-01T00:12:36Z 4563 294 2005-08-07T05:08:36Z 1 2020-02-15T06:59:43Z +10187 2005-08-01T00:15:49Z 1629 400 2005-08-05T01:00:49Z 2 2020-02-15T06:59:43Z +10188 2005-08-01T00:19:41Z 1221 331 2005-08-08T00:19:41Z 2 2020-02-15T06:59:43Z +10189 2005-08-01T00:25:00Z 616 509 2005-08-03T06:01:00Z 2 2020-02-15T06:59:43Z +10190 2005-08-01T00:27:53Z 4411 138 2005-08-01T20:32:53Z 2 2020-02-15T06:59:43Z +10191 2005-08-01T00:28:38Z 1131 196 2005-08-06T02:23:38Z 1 2020-02-15T06:59:43Z +10192 2005-08-01T00:33:00Z 1632 569 2005-08-05T03:37:00Z 2 2020-02-15T06:59:43Z +10193 2005-08-01T00:33:27Z 2036 358 2005-08-07T20:15:27Z 1 2020-02-15T06:59:43Z +10194 2005-08-01T00:33:52Z 1447 290 2005-08-06T04:50:52Z 2 2020-02-15T06:59:43Z +10195 2005-08-01T00:34:42Z 2691 396 2005-08-08T05:04:42Z 2 2020-02-15T06:59:43Z +10196 2005-08-01T00:34:51Z 3070 199 2005-08-05T03:43:51Z 1 2020-02-15T06:59:43Z +10197 2005-08-01T00:35:25Z 1186 127 2005-08-07T06:04:25Z 2 2020-02-15T06:59:43Z +10198 2005-08-01T00:36:15Z 1297 366 2005-08-07T06:18:15Z 2 2020-02-15T06:59:43Z +10199 2005-08-01T00:38:55Z 3665 526 2005-08-05T03:41:55Z 1 2020-02-15T06:59:43Z +10200 2005-08-01T00:39:05Z 580 421 2005-08-05T01:07:05Z 1 2020-02-15T06:59:43Z +10201 2005-08-01T00:42:18Z 3649 299 2005-08-08T20:49:18Z 2 2020-02-15T06:59:43Z +10202 2005-08-01T00:43:18Z 1099 306 2005-08-08T23:26:18Z 1 2020-02-15T06:59:43Z +10203 2005-08-01T00:45:27Z 1096 157 2005-08-04T22:45:27Z 2 2020-02-15T06:59:43Z +10204 2005-08-01T00:47:39Z 764 572 2005-08-05T01:11:39Z 1 2020-02-15T06:59:43Z +10205 2005-08-01T00:48:24Z 33 87 2005-08-06T23:53:24Z 1 2020-02-15T06:59:43Z +10206 2005-08-01T00:52:40Z 4479 90 2005-08-10T02:36:40Z 2 2020-02-15T06:59:43Z +10207 2005-08-01T00:53:01Z 2925 334 2005-08-05T05:51:01Z 2 2020-02-15T06:59:43Z +10208 2005-08-01T00:54:51Z 3324 246 2005-08-04T22:39:51Z 2 2020-02-15T06:59:43Z +10209 2005-08-01T00:56:47Z 2429 303 2005-08-03T19:58:47Z 2 2020-02-15T06:59:43Z +10210 2005-08-01T00:58:52Z 49 391 2005-08-10T01:16:52Z 1 2020-02-15T06:59:43Z +10211 2005-08-01T01:01:16Z 810 530 2005-08-10T01:31:16Z 1 2020-02-15T06:59:43Z +10212 2005-08-01T01:01:35Z 3728 324 2005-08-02T23:02:35Z 1 2020-02-15T06:59:43Z +10213 2005-08-01T01:03:18Z 1462 106 2005-08-09T20:07:18Z 1 2020-02-15T06:59:43Z +10214 2005-08-01T01:04:15Z 648 597 2005-08-01T19:31:15Z 2 2020-02-15T06:59:43Z +10215 2005-08-01T01:04:28Z 838 345 2005-08-09T21:43:28Z 2 2020-02-15T06:59:43Z +10216 2005-08-01T01:06:27Z 3603 436 2005-08-08T22:41:27Z 2 2020-02-15T06:59:43Z +10217 2005-08-01T01:07:27Z 1193 389 2005-08-09T00:42:27Z 1 2020-02-15T06:59:43Z +10218 2005-08-01T01:09:44Z 3886 101 2005-08-05T20:08:44Z 1 2020-02-15T06:59:43Z +10219 2005-08-01T01:10:33Z 2262 505 2005-08-10T02:45:33Z 2 2020-02-15T06:59:43Z +10220 2005-08-01T01:13:22Z 3920 294 2005-08-04T22:57:22Z 2 2020-02-15T06:59:43Z +10221 2005-08-01T01:16:50Z 3051 373 2005-08-03T05:35:50Z 2 2020-02-15T06:59:43Z +10222 2005-08-01T01:17:42Z 1214 295 2005-08-08T02:45:42Z 1 2020-02-15T06:59:43Z +10223 2005-08-01T01:23:15Z 1370 522 2005-08-02T19:39:15Z 1 2020-02-15T06:59:43Z +10224 2005-08-01T01:31:56Z 1443 587 2005-08-05T21:21:56Z 2 2020-02-15T06:59:43Z +10225 2005-08-01T01:38:40Z 3131 498 2005-08-06T20:00:40Z 1 2020-02-15T06:59:43Z +10226 2005-08-01T01:40:04Z 3067 107 2005-08-08T01:02:04Z 1 2020-02-15T06:59:43Z +10227 2005-08-01T01:42:22Z 872 571 2005-08-09T23:45:22Z 2 2020-02-15T06:59:43Z +10228 2005-08-01T01:43:18Z 1742 106 2005-08-06T22:10:18Z 2 2020-02-15T06:59:43Z +10229 2005-08-01T01:45:26Z 3459 175 2005-08-10T06:21:26Z 1 2020-02-15T06:59:43Z +10230 2005-08-01T01:49:36Z 76 398 2005-08-05T01:29:36Z 2 2020-02-15T06:59:43Z +10231 2005-08-01T01:50:49Z 1056 511 2005-08-06T03:12:49Z 1 2020-02-15T06:59:43Z +10232 2005-08-01T01:50:55Z 586 512 2005-08-03T04:12:55Z 1 2020-02-15T06:59:43Z +10233 2005-08-01T01:54:23Z 4571 459 2005-08-10T00:23:23Z 2 2020-02-15T06:59:43Z +10234 2005-08-01T01:56:20Z 1641 207 2005-08-09T01:51:20Z 2 2020-02-15T06:59:43Z +10235 2005-08-01T01:57:48Z 2850 30 2005-08-10T07:38:48Z 2 2020-02-15T06:59:43Z +10236 2005-08-01T02:05:34Z 3754 470 2005-08-01T23:40:34Z 1 2020-02-15T06:59:43Z +10237 2005-08-01T02:07:32Z 432 313 2005-08-07T03:54:32Z 1 2020-02-15T06:59:43Z +10238 2005-08-01T02:08:05Z 561 192 2005-08-02T01:52:05Z 1 2020-02-15T06:59:43Z +10239 2005-08-01T02:09:22Z 1232 467 2005-08-04T01:35:22Z 2 2020-02-15T06:59:43Z +10240 2005-08-01T02:09:33Z 4494 109 2005-08-07T02:22:33Z 2 2020-02-15T06:59:43Z +10241 2005-08-01T02:12:25Z 1526 161 2005-08-08T00:37:25Z 1 2020-02-15T06:59:43Z +10242 2005-08-01T02:18:12Z 1825 342 2005-08-02T22:32:12Z 2 2020-02-15T06:59:43Z +10243 2005-08-01T02:18:46Z 2236 132 2005-08-06T21:45:46Z 1 2020-02-15T06:59:43Z +10244 2005-08-01T02:20:01Z 567 51 2005-08-06T23:06:01Z 2 2020-02-15T06:59:43Z +10245 2005-08-01T02:24:09Z 2880 163 2005-08-02T02:31:09Z 1 2020-02-15T06:59:43Z +10246 2005-08-01T02:29:50Z 3598 261 2005-08-09T01:17:50Z 2 2020-02-15T06:59:43Z +10247 2005-08-01T02:34:06Z 4035 189 2005-08-09T02:33:06Z 1 2020-02-15T06:59:43Z +10248 2005-08-01T02:35:28Z 2146 298 2005-08-08T02:24:28Z 2 2020-02-15T06:59:43Z +10249 2005-08-01T02:35:39Z 135 437 2005-08-06T06:50:39Z 1 2020-02-15T06:59:43Z +10250 2005-08-01T02:38:42Z 3706 116 2005-08-07T03:59:42Z 2 2020-02-15T06:59:43Z +10251 2005-08-01T02:39:12Z 2986 39 2005-08-06T03:51:12Z 1 2020-02-15T06:59:43Z +10252 2005-08-01T02:39:39Z 2380 86 2005-08-10T00:40:39Z 2 2020-02-15T06:59:43Z +10253 2005-08-01T02:39:49Z 1406 101 2005-08-08T04:28:49Z 2 2020-02-15T06:59:43Z +10254 2005-08-01T02:42:03Z 2238 416 2005-08-05T23:31:03Z 1 2020-02-15T06:59:43Z +10255 2005-08-01T02:46:13Z 4558 459 2005-08-03T05:54:13Z 1 2020-02-15T06:59:43Z +10256 2005-08-01T02:47:11Z 780 58 2005-08-05T05:21:11Z 2 2020-02-15T06:59:43Z +10257 2005-08-01T02:49:43Z 2403 543 2005-08-04T04:45:43Z 2 2020-02-15T06:59:43Z +10258 2005-08-01T02:51:09Z 2062 469 2005-08-08T23:57:09Z 2 2020-02-15T06:59:43Z +10259 2005-08-01T02:52:05Z 1881 566 2005-08-03T20:54:05Z 1 2020-02-15T06:59:43Z +10260 2005-08-01T02:58:07Z 2864 461 2005-08-05T02:06:07Z 2 2020-02-15T06:59:43Z +10261 2005-08-01T02:58:27Z 2346 50 2005-08-01T21:55:27Z 2 2020-02-15T06:59:43Z +10262 2005-08-01T03:01:26Z 3842 181 2005-08-08T08:03:26Z 2 2020-02-15T06:59:43Z +10263 2005-08-01T03:02:48Z 2420 415 2005-08-08T02:16:48Z 2 2020-02-15T06:59:43Z +10264 2005-08-01T03:03:12Z 1374 297 2005-08-08T00:34:12Z 2 2020-02-15T06:59:43Z +10265 2005-08-01T03:05:04Z 3338 510 2005-08-08T08:09:04Z 1 2020-02-15T06:59:43Z +10266 2005-08-01T03:05:59Z 476 49 2005-08-06T06:23:59Z 1 2020-02-15T06:59:43Z +10267 2005-08-01T03:07:26Z 3883 72 2005-08-07T22:49:26Z 1 2020-02-15T06:59:43Z +10268 2005-08-01T03:08:56Z 2755 138 2005-08-08T02:41:56Z 1 2020-02-15T06:59:43Z +10269 2005-08-01T03:09:26Z 2537 39 2005-08-02T00:01:26Z 1 2020-02-15T06:59:43Z +10270 2005-08-01T03:10:24Z 2025 168 2005-08-07T03:04:24Z 2 2020-02-15T06:59:43Z +10271 2005-08-01T03:13:39Z 3692 6 2005-08-07T23:40:39Z 1 2020-02-15T06:59:43Z +10272 2005-08-01T03:14:34Z 128 273 2005-08-10T05:56:34Z 2 2020-02-15T06:59:43Z +10273 2005-08-01T03:14:47Z 1458 212 2005-08-07T03:59:47Z 1 2020-02-15T06:59:43Z +10274 2005-08-01T03:16:51Z 2916 375 2005-08-04T22:22:51Z 2 2020-02-15T06:59:43Z +10275 2005-08-01T03:20:08Z 669 463 2005-08-08T06:48:08Z 1 2020-02-15T06:59:43Z +10276 2005-08-01T03:22:23Z 2201 48 2005-08-03T07:59:23Z 1 2020-02-15T06:59:43Z +10277 2005-08-01T03:22:41Z 1472 176 2005-08-05T05:07:41Z 1 2020-02-15T06:59:43Z +10278 2005-08-01T03:25:27Z 2497 154 2005-08-08T07:52:27Z 1 2020-02-15T06:59:43Z +10279 2005-08-01T03:26:44Z 3794 247 2005-08-07T22:35:44Z 2 2020-02-15T06:59:43Z +10280 2005-08-01T03:27:15Z 1457 542 2005-08-07T23:01:15Z 2 2020-02-15T06:59:43Z +10281 2005-08-01T03:28:33Z 1047 549 2005-08-02T05:06:33Z 1 2020-02-15T06:59:43Z +10282 2005-08-01T03:29:10Z 617 472 2005-08-07T06:16:10Z 1 2020-02-15T06:59:43Z +10283 2005-08-01T03:29:45Z 4237 462 2005-08-07T04:19:45Z 1 2020-02-15T06:59:43Z +10284 2005-08-01T03:33:19Z 2879 20 2005-08-09T07:58:19Z 1 2020-02-15T06:59:43Z +10285 2005-08-01T03:35:11Z 4523 167 2005-08-05T03:55:11Z 2 2020-02-15T06:59:43Z +10286 2005-08-01T03:35:58Z 498 532 2005-08-10T05:17:58Z 2 2020-02-15T06:59:43Z +10287 2005-08-01T03:37:01Z 125 141 2005-08-05T23:03:01Z 2 2020-02-15T06:59:43Z +10288 2005-08-01T03:38:42Z 572 63 2005-08-06T04:34:42Z 1 2020-02-15T06:59:43Z +10289 2005-08-01T03:39:48Z 3153 566 2005-08-08T02:56:48Z 1 2020-02-15T06:59:43Z +10290 2005-08-01T03:39:50Z 4542 364 2005-08-08T22:29:50Z 2 2020-02-15T06:59:43Z +10291 2005-08-01T03:39:57Z 2056 420 2005-08-05T02:05:57Z 2 2020-02-15T06:59:43Z +10292 2005-08-01T03:42:40Z 2562 340 2005-08-01T23:36:40Z 2 2020-02-15T06:59:43Z +10293 2005-08-01T03:44:26Z 1570 258 2005-08-05T04:16:26Z 2 2020-02-15T06:59:43Z +10294 2005-08-01T03:48:12Z 528 28 2005-08-09T01:19:12Z 2 2020-02-15T06:59:43Z +10295 2005-08-01T03:53:49Z 2355 123 2005-08-10T03:56:49Z 1 2020-02-15T06:59:43Z +10296 2005-08-01T04:04:37Z 1958 573 2005-08-01T23:59:37Z 1 2020-02-15T06:59:43Z +10297 2005-08-01T04:05:04Z 2795 289 2005-08-09T06:08:04Z 1 2020-02-15T06:59:43Z +10298 2005-08-01T04:06:03Z 1383 323 2005-08-05T05:59:03Z 2 2020-02-15T06:59:43Z +10299 2005-08-01T04:08:04Z 1125 369 2005-08-04T08:11:04Z 1 2020-02-15T06:59:43Z +10300 2005-08-01T04:08:11Z 4334 207 2005-08-04T00:24:11Z 1 2020-02-15T06:59:43Z +10301 2005-08-01T04:09:37Z 3072 583 2005-08-04T23:14:37Z 2 2020-02-15T06:59:43Z +10302 2005-08-01T04:12:08Z 1043 144 2005-08-01T22:12:08Z 2 2020-02-15T06:59:43Z +10303 2005-08-01T04:13:33Z 936 479 2005-08-06T02:16:33Z 2 2020-02-15T06:59:43Z +10304 2005-08-01T04:14:12Z 1538 346 2005-08-07T22:38:12Z 1 2020-02-15T06:59:43Z +10305 2005-08-01T04:16:16Z 2946 160 2005-08-07T23:47:16Z 1 2020-02-15T06:59:43Z +10306 2005-08-01T04:19:18Z 2819 541 2005-08-09T02:16:18Z 1 2020-02-15T06:59:43Z +10307 2005-08-01T04:21:54Z 975 332 2005-08-04T09:24:54Z 2 2020-02-15T06:59:43Z +10308 2005-08-01T04:22:49Z 588 240 2005-08-09T04:39:49Z 2 2020-02-15T06:59:43Z +10309 2005-08-01T04:24:18Z 1505 156 2005-08-09T08:32:18Z 2 2020-02-15T06:59:43Z +10310 2005-08-01T04:24:47Z 9 271 2005-08-04T05:36:47Z 2 2020-02-15T06:59:43Z +10311 2005-08-01T04:27:59Z 4211 151 2005-08-02T08:51:59Z 1 2020-02-15T06:59:43Z +10312 2005-08-01T04:29:06Z 4389 172 2005-08-08T04:52:06Z 2 2020-02-15T06:59:43Z +10313 2005-08-01T04:29:29Z 1194 80 2005-08-04T08:12:29Z 2 2020-02-15T06:59:43Z +10314 2005-08-01T04:31:18Z 1548 252 2005-08-06T01:49:18Z 2 2020-02-15T06:59:43Z +10315 2005-08-01T04:34:45Z 895 258 2005-08-07T05:27:45Z 1 2020-02-15T06:59:43Z +10316 2005-08-01T04:34:57Z 1907 469 2005-08-06T02:34:57Z 2 2020-02-15T06:59:43Z +10317 2005-08-01T04:35:34Z 110 561 2005-08-06T02:27:34Z 2 2020-02-15T06:59:43Z +10318 2005-08-01T04:36:53Z 885 548 2005-08-04T00:54:53Z 1 2020-02-15T06:59:43Z +10319 2005-08-01T04:37:19Z 3120 394 2005-08-05T03:18:19Z 2 2020-02-15T06:59:43Z +10320 2005-08-01T04:39:26Z 2298 152 2005-08-08T06:01:26Z 1 2020-02-15T06:59:43Z +10321 2005-08-01T04:40:02Z 4512 177 2005-08-03T04:18:02Z 1 2020-02-15T06:59:43Z +10322 2005-08-01T04:44:13Z 1543 535 2005-08-08T00:20:13Z 2 2020-02-15T06:59:43Z +10323 2005-08-01T04:44:58Z 3539 577 2005-08-06T07:56:58Z 1 2020-02-15T06:59:43Z +10324 2005-08-01T04:49:06Z 523 25 2005-08-09T08:04:06Z 2 2020-02-15T06:59:43Z +10325 2005-08-01T04:52:12Z 2749 258 2005-08-08T09:31:12Z 1 2020-02-15T06:59:43Z +10326 2005-08-01T04:55:34Z 3856 325 2005-08-02T05:18:34Z 1 2020-02-15T06:59:43Z +10327 2005-08-01T04:55:35Z 328 382 2005-08-07T08:17:35Z 2 2020-02-15T06:59:43Z +10328 2005-08-01T04:56:10Z 1191 85 2005-08-01T23:22:10Z 2 2020-02-15T06:59:43Z +10329 2005-08-01T04:56:13Z 2289 302 2005-08-03T03:54:13Z 1 2020-02-15T06:59:43Z +10330 2005-08-01T04:57:04Z 1580 7 2005-08-07T23:00:04Z 2 2020-02-15T06:59:43Z +10331 2005-08-01T04:57:14Z 4152 575 2005-08-07T06:46:14Z 1 2020-02-15T06:59:43Z +10332 2005-08-01T04:57:32Z 642 258 2005-08-10T02:42:32Z 2 2020-02-15T06:59:43Z +10333 2005-08-01T04:58:32Z 3955 499 2005-08-04T00:51:32Z 2 2020-02-15T06:59:43Z +10334 2005-08-01T04:58:42Z 3387 445 2005-08-09T02:00:42Z 1 2020-02-15T06:59:43Z +10335 2005-08-01T04:59:30Z 323 33 2005-08-05T02:26:30Z 1 2020-02-15T06:59:43Z +10336 2005-08-01T04:59:53Z 1091 370 2005-08-03T08:05:53Z 2 2020-02-15T06:59:43Z +10337 2005-08-01T05:01:46Z 307 451 2005-08-10T02:41:46Z 1 2020-02-15T06:59:43Z +10338 2005-08-01T05:03:03Z 1295 339 2005-08-09T05:13:03Z 2 2020-02-15T06:59:43Z +10339 2005-08-01T05:05:50Z 615 363 2005-08-10T07:15:50Z 2 2020-02-15T06:59:43Z +10340 2005-08-01T05:07:03Z 3608 568 2005-08-06T01:03:03Z 1 2020-02-15T06:59:43Z +10341 2005-08-01T05:10:02Z 3304 445 2005-08-07T11:01:02Z 1 2020-02-15T06:59:43Z +10342 2005-08-01T05:11:11Z 332 140 2005-08-10T00:27:11Z 1 2020-02-15T06:59:43Z +10343 2005-08-01T05:15:47Z 2627 267 2005-08-02T04:48:47Z 2 2020-02-15T06:59:43Z +10344 2005-08-01T05:18:23Z 3673 367 2005-08-06T05:20:23Z 1 2020-02-15T06:59:43Z +10345 2005-08-01T05:18:56Z 3985 42 2005-08-04T01:34:56Z 2 2020-02-15T06:59:43Z +10346 2005-08-01T05:19:23Z 4192 476 2005-08-06T01:00:23Z 1 2020-02-15T06:59:43Z +10347 2005-08-01T05:20:03Z 953 574 2005-08-04T10:03:03Z 1 2020-02-15T06:59:43Z +10348 2005-08-01T05:23:00Z 2076 14 2005-08-04T01:12:00Z 2 2020-02-15T06:59:43Z +10349 2005-08-01T05:27:13Z 114 295 2005-08-08T10:15:13Z 1 2020-02-15T06:59:43Z +10350 2005-08-01T05:30:05Z 2067 78 2005-08-05T09:59:05Z 1 2020-02-15T06:59:43Z +10351 2005-08-01T05:32:13Z 3725 173 2005-08-08T09:48:13Z 1 2020-02-15T06:59:43Z +10352 2005-08-01T05:44:36Z 1288 564 2005-08-05T07:15:36Z 2 2020-02-15T06:59:43Z +10353 2005-08-01T05:46:33Z 1446 535 2005-08-08T09:14:33Z 1 2020-02-15T06:59:43Z +10354 2005-08-01T05:47:10Z 1680 416 2005-08-06T09:04:10Z 1 2020-02-15T06:59:43Z +10355 2005-08-01T05:47:37Z 2158 161 2005-08-02T09:28:37Z 2 2020-02-15T06:59:43Z +10356 2005-08-01T05:49:17Z 313 56 2005-08-10T05:57:17Z 1 2020-02-15T06:59:43Z +10357 2005-08-01T05:49:49Z 3102 475 2005-08-04T02:34:49Z 2 2020-02-15T06:59:43Z +10358 2005-08-01T05:50:07Z 3039 517 2005-08-03T08:18:07Z 1 2020-02-15T06:59:43Z +10359 2005-08-01T05:52:21Z 259 369 2005-08-06T05:52:21Z 2 2020-02-15T06:59:43Z +10360 2005-08-01T05:52:53Z 1129 443 2005-08-05T10:55:53Z 1 2020-02-15T06:59:43Z +10361 2005-08-01T05:53:49Z 318 529 2005-08-10T00:42:49Z 2 2020-02-15T06:59:43Z +10362 2005-08-01T05:55:13Z 72 181 2005-08-10T10:23:13Z 2 2020-02-15T06:59:43Z +10363 2005-08-01T06:01:52Z 320 174 2005-08-05T03:56:52Z 1 2020-02-15T06:59:43Z +10364 2005-08-01T06:06:49Z 1842 317 2005-08-09T06:05:49Z 2 2020-02-15T06:59:43Z +10365 2005-08-01T06:08:44Z 4032 442 2005-08-06T02:07:44Z 1 2020-02-15T06:59:43Z +10366 2005-08-01T06:09:37Z 2654 119 2005-08-05T03:19:37Z 1 2020-02-15T06:59:43Z +10367 2005-08-01T06:12:19Z 3408 242 2005-08-04T12:11:19Z 2 2020-02-15T06:59:43Z +10368 2005-08-01T06:13:38Z 3535 593 2005-08-08T04:40:38Z 2 2020-02-15T06:59:43Z +10369 2005-08-01T06:13:44Z 2534 424 2005-08-07T09:46:44Z 1 2020-02-15T06:59:43Z +10370 2005-08-01T06:18:04Z 4358 546 2005-08-05T01:41:04Z 2 2020-02-15T06:59:43Z +10371 2005-08-01T06:20:29Z 923 327 2005-08-04T00:31:29Z 2 2020-02-15T06:59:43Z +10372 2005-08-01T06:23:48Z 635 419 2005-08-06T03:47:48Z 1 2020-02-15T06:59:43Z +10373 2005-08-01T06:24:26Z 1754 588 2005-08-02T12:07:26Z 1 2020-02-15T06:59:43Z +10374 2005-08-01T06:25:27Z 4351 307 2005-08-07T05:44:27Z 2 2020-02-15T06:59:43Z +10375 2005-08-01T06:26:22Z 857 202 2005-08-06T02:51:22Z 2 2020-02-15T06:59:43Z +10376 2005-08-01T06:27:13Z 4194 474 2005-08-07T06:11:13Z 2 2020-02-15T06:59:43Z +10377 2005-08-01T06:28:28Z 2401 559 2005-08-10T05:45:28Z 2 2020-02-15T06:59:43Z +10378 2005-08-01T06:30:04Z 4110 113 2005-08-06T09:10:04Z 1 2020-02-15T06:59:43Z +10379 2005-08-01T06:34:29Z 3103 141 2005-08-06T07:49:29Z 1 2020-02-15T06:59:43Z +10380 2005-08-01T06:34:36Z 2225 533 2005-08-02T09:08:36Z 1 2020-02-15T06:59:43Z +10381 2005-08-01T06:36:37Z 522 412 2005-08-05T11:17:37Z 1 2020-02-15T06:59:43Z +10382 2005-08-01T06:36:45Z 4455 242 2005-08-02T06:06:45Z 1 2020-02-15T06:59:43Z +10383 2005-08-01T06:37:16Z 4166 592 2005-08-03T07:36:16Z 2 2020-02-15T06:59:43Z +10384 2005-08-01T06:39:14Z 2622 366 2005-08-02T03:06:14Z 1 2020-02-15T06:59:43Z +10385 2005-08-01T06:39:55Z 778 179 2005-08-06T02:16:55Z 1 2020-02-15T06:59:43Z +10386 2005-08-01T06:42:20Z 1568 26 2005-08-07T06:12:20Z 2 2020-02-15T06:59:43Z +10387 2005-08-01T06:42:31Z 1651 87 2005-08-08T07:44:31Z 1 2020-02-15T06:59:43Z +10388 2005-08-01T06:42:44Z 3180 99 2005-08-09T11:43:44Z 2 2020-02-15T06:59:43Z +10389 2005-08-01T06:46:43Z 3534 346 2005-08-08T07:07:43Z 2 2020-02-15T06:59:43Z +10390 2005-08-01T06:46:48Z 1489 502 2005-08-09T02:55:48Z 2 2020-02-15T06:59:43Z +10391 2005-08-01T06:49:05Z 2203 357 2005-08-04T01:51:05Z 2 2020-02-15T06:59:43Z +10392 2005-08-01T06:50:26Z 3017 12 2005-08-10T10:52:26Z 1 2020-02-15T06:59:43Z +10393 2005-08-01T06:52:50Z 808 258 2005-08-05T08:45:50Z 1 2020-02-15T06:59:43Z +10394 2005-08-01T06:58:17Z 1655 128 2005-08-05T02:09:17Z 1 2020-02-15T06:59:43Z +10395 2005-08-01T07:08:22Z 279 129 2005-08-05T08:00:22Z 2 2020-02-15T06:59:43Z +10396 2005-08-01T07:08:46Z 2982 284 2005-08-08T03:47:46Z 1 2020-02-15T06:59:43Z +10397 2005-08-01T07:11:27Z 4168 504 2005-08-03T07:51:27Z 1 2020-02-15T06:59:43Z +10398 2005-08-01T07:11:49Z 4306 174 2005-08-04T05:54:49Z 1 2020-02-15T06:59:43Z +10399 2005-08-01T07:13:39Z 2515 204 2005-08-10T06:56:39Z 1 2020-02-15T06:59:43Z +10400 2005-08-01T07:18:24Z 3897 132 2005-08-10T08:38:24Z 1 2020-02-15T06:59:43Z +10401 2005-08-01T07:27:09Z 1560 564 2005-08-02T01:38:09Z 1 2020-02-15T06:59:43Z +10402 2005-08-01T07:27:19Z 274 410 2005-08-04T12:30:19Z 1 2020-02-15T06:59:43Z +10403 2005-08-01T07:30:45Z 1968 494 2005-08-03T03:03:45Z 2 2020-02-15T06:59:43Z +10404 2005-08-01T07:31:25Z 2580 253 2005-08-07T09:23:25Z 1 2020-02-15T06:59:43Z +10405 2005-08-01T07:35:25Z 3641 463 2005-08-05T05:38:25Z 2 2020-02-15T06:59:43Z +10406 2005-08-01T07:37:05Z 2614 391 2005-08-02T06:11:05Z 1 2020-02-15T06:59:43Z +10407 2005-08-01T07:38:07Z 543 101 2005-08-02T05:38:07Z 2 2020-02-15T06:59:43Z +10408 2005-08-01T07:42:10Z 4144 334 2005-08-09T02:29:10Z 2 2020-02-15T06:59:43Z +10409 2005-08-01T07:49:15Z 2804 449 2005-08-02T13:42:15Z 2 2020-02-15T06:59:43Z +10410 2005-08-01T07:53:29Z 3901 247 2005-08-10T08:56:29Z 1 2020-02-15T06:59:43Z +10411 2005-08-01T07:56:32Z 1946 522 2005-08-10T04:58:32Z 2 2020-02-15T06:59:43Z +10412 2005-08-01T07:57:16Z 1555 325 2005-08-04T11:44:16Z 2 2020-02-15T06:59:43Z +10413 2005-08-01T07:59:39Z 1018 376 2005-08-08T03:55:39Z 1 2020-02-15T06:59:43Z +10414 2005-08-01T08:03:55Z 1271 361 2005-08-04T08:44:55Z 2 2020-02-15T06:59:43Z +10415 2005-08-01T08:05:59Z 2597 591 2005-08-04T13:46:59Z 1 2020-02-15T06:59:43Z +10416 2005-08-01T08:08:39Z 2629 449 2005-08-10T09:26:39Z 2 2020-02-15T06:59:43Z +10417 2005-08-01T08:10:36Z 3675 427 2005-08-02T03:42:36Z 2 2020-02-15T06:59:43Z +10418 2005-08-01T08:11:07Z 1692 248 2005-08-04T11:12:07Z 2 2020-02-15T06:59:43Z +10419 2005-08-01T08:13:22Z 415 66 2005-08-06T04:45:22Z 2 2020-02-15T06:59:43Z +10420 2005-08-01T08:13:53Z 3490 354 2005-08-06T08:05:53Z 2 2020-02-15T06:59:43Z +10421 2005-08-01T08:14:10Z 925 262 2005-08-03T05:56:10Z 2 2020-02-15T06:59:43Z +10422 2005-08-01T08:17:11Z 37 166 2005-08-10T10:08:11Z 2 2020-02-15T06:59:43Z +10423 2005-08-01T08:19:53Z 739 7 2005-08-08T10:25:53Z 1 2020-02-15T06:59:43Z +10424 2005-08-01T08:22:54Z 1921 88 2005-08-06T13:44:54Z 1 2020-02-15T06:59:43Z +10425 2005-08-01T08:23:25Z 322 447 2005-08-05T04:29:25Z 1 2020-02-15T06:59:43Z +10426 2005-08-01T08:26:08Z 1325 305 2005-08-09T04:09:08Z 1 2020-02-15T06:59:43Z +10427 2005-08-01T08:30:11Z 2978 356 2005-08-07T06:18:11Z 2 2020-02-15T06:59:43Z +10428 2005-08-01T08:30:11Z 4245 46 2005-08-02T09:30:11Z 2 2020-02-15T06:59:43Z +10429 2005-08-01T08:34:18Z 3894 511 2005-08-10T12:38:18Z 1 2020-02-15T06:59:43Z +10430 2005-08-01T08:37:06Z 1150 471 2005-08-03T07:25:06Z 1 2020-02-15T06:59:43Z +10431 2005-08-01T08:41:54Z 1074 138 2005-08-07T09:44:54Z 2 2020-02-15T06:59:43Z +10432 2005-08-01T08:43:21Z 4238 450 2005-08-08T13:09:21Z 2 2020-02-15T06:59:43Z +10433 2005-08-01T08:45:56Z 1508 517 2005-08-05T09:46:56Z 2 2020-02-15T06:59:43Z +10434 2005-08-01T08:47:00Z 4073 73 2005-08-06T08:34:00Z 1 2020-02-15T06:59:43Z +10435 2005-08-01T08:50:51Z 1934 392 2005-08-08T12:23:51Z 1 2020-02-15T06:59:43Z +10436 2005-08-01T08:50:59Z 4026 455 2005-08-04T05:23:59Z 1 2020-02-15T06:59:43Z +10437 2005-08-01T08:51:04Z 14 1 2005-08-10T12:12:04Z 1 2020-02-15T06:59:43Z +10438 2005-08-01T08:53:04Z 4217 316 2005-08-09T06:39:04Z 2 2020-02-15T06:59:43Z +10439 2005-08-01T08:54:26Z 2711 332 2005-08-08T14:04:26Z 1 2020-02-15T06:59:43Z +10440 2005-08-01T08:54:32Z 842 299 2005-08-02T10:59:32Z 2 2020-02-15T06:59:43Z +10441 2005-08-01T08:55:56Z 4122 176 2005-08-03T10:26:56Z 2 2020-02-15T06:59:43Z +10442 2005-08-01T08:58:08Z 4570 40 2005-08-05T09:07:08Z 2 2020-02-15T06:59:43Z +10443 2005-08-01T09:01:04Z 1965 403 2005-08-04T09:07:04Z 2 2020-02-15T06:59:43Z +10444 2005-08-01T09:01:40Z 3242 106 2005-08-09T11:31:40Z 1 2020-02-15T06:59:43Z +10445 2005-08-01T09:02:15Z 3582 211 2005-08-08T10:26:15Z 2 2020-02-15T06:59:43Z +10446 2005-08-01T09:02:17Z 2671 95 2005-08-04T10:00:17Z 2 2020-02-15T06:59:43Z +10447 2005-08-01T09:04:58Z 1198 241 2005-08-08T06:24:58Z 1 2020-02-15T06:59:43Z +10448 2005-08-01T09:09:31Z 2254 311 2005-08-02T09:55:31Z 2 2020-02-15T06:59:43Z +10449 2005-08-01T09:09:59Z 1395 213 2005-08-05T11:25:59Z 1 2020-02-15T06:59:43Z +10450 2005-08-01T09:10:03Z 234 380 2005-08-08T12:34:03Z 1 2020-02-15T06:59:43Z +10451 2005-08-01T09:11:25Z 2435 9 2005-08-03T12:37:25Z 2 2020-02-15T06:59:43Z +10452 2005-08-01T09:11:36Z 1973 442 2005-08-04T13:28:36Z 2 2020-02-15T06:59:43Z +10453 2005-08-01T09:13:27Z 1531 188 2005-08-08T11:34:27Z 2 2020-02-15T06:59:43Z +10454 2005-08-01T09:14:00Z 397 9 2005-08-04T04:52:00Z 2 2020-02-15T06:59:43Z +10455 2005-08-01T09:15:00Z 4197 99 2005-08-05T13:35:00Z 1 2020-02-15T06:59:43Z +10456 2005-08-01T09:17:21Z 4339 81 2005-08-06T10:30:21Z 1 2020-02-15T06:59:43Z +10457 2005-08-01T09:17:34Z 3052 121 2005-08-06T07:28:34Z 2 2020-02-15T06:59:43Z +10458 2005-08-01T09:19:48Z 1500 309 2005-08-02T10:16:48Z 1 2020-02-15T06:59:43Z +10459 2005-08-01T09:20:09Z 201 131 2005-08-03T11:36:09Z 1 2020-02-15T06:59:43Z +10460 2005-08-01T09:31:00Z 4504 197 2005-08-09T09:28:00Z 1 2020-02-15T06:59:43Z +10461 2005-08-01T09:32:53Z 3212 270 2005-08-09T10:19:53Z 1 2020-02-15T06:59:43Z +10462 2005-08-01T09:38:28Z 4526 193 2005-08-02T09:52:28Z 2 2020-02-15T06:59:43Z +10463 2005-08-01T09:39:43Z 1301 291 2005-08-10T03:42:43Z 1 2020-02-15T06:59:43Z +10464 2005-08-01T09:43:14Z 464 427 2005-08-06T09:01:14Z 1 2020-02-15T06:59:43Z +10465 2005-08-01T09:45:25Z 4384 534 2005-08-10T09:08:25Z 2 2020-02-15T06:59:43Z +10466 2005-08-01T09:45:26Z 138 2 2005-08-06T06:28:26Z 1 2020-02-15T06:59:43Z +10467 2005-08-01T09:45:58Z 3773 412 2005-08-09T10:17:58Z 2 2020-02-15T06:59:43Z +10468 2005-08-01T09:48:29Z 2115 129 2005-08-05T09:58:29Z 2 2020-02-15T06:59:43Z +10469 2005-08-01T09:51:11Z 3054 466 2005-08-05T06:53:11Z 2 2020-02-15T06:59:43Z +10470 2005-08-01T09:52:26Z 82 523 2005-08-05T06:52:26Z 1 2020-02-15T06:59:43Z +10471 2005-08-01T09:52:37Z 1684 135 2005-08-07T09:40:37Z 2 2020-02-15T06:59:43Z +10472 2005-08-01T09:54:41Z 506 405 2005-08-04T13:31:41Z 1 2020-02-15T06:59:43Z +10473 2005-08-01T09:56:24Z 3034 329 2005-08-10T12:36:24Z 2 2020-02-15T06:59:43Z +10474 2005-08-01T10:01:42Z 4482 488 2005-08-08T12:32:42Z 1 2020-02-15T06:59:43Z +10475 2005-08-01T10:03:17Z 2931 115 2005-08-10T15:50:17Z 2 2020-02-15T06:59:43Z +10476 2005-08-01T10:03:20Z 1993 263 2005-08-10T06:52:20Z 1 2020-02-15T06:59:43Z +10477 2005-08-01T10:04:17Z 235 506 2005-08-06T11:32:17Z 2 2020-02-15T06:59:43Z +10478 2005-08-01T10:09:06Z 3885 417 2005-08-06T05:05:06Z 1 2020-02-15T06:59:43Z +10479 2005-08-01T10:11:25Z 4580 275 2005-08-06T04:52:25Z 1 2020-02-15T06:59:43Z +10480 2005-08-01T10:13:41Z 553 560 2005-08-03T10:27:41Z 1 2020-02-15T06:59:43Z +10481 2005-08-01T10:17:26Z 229 170 2005-08-09T08:50:26Z 1 2020-02-15T06:59:43Z +10482 2005-08-01T10:17:47Z 48 358 2005-08-02T15:04:47Z 2 2020-02-15T06:59:43Z +10483 2005-08-01T10:19:45Z 1521 129 2005-08-04T09:29:45Z 1 2020-02-15T06:59:43Z +10484 2005-08-01T10:19:53Z 1908 400 2005-08-03T05:36:53Z 1 2020-02-15T06:59:43Z +10485 2005-08-01T10:20:34Z 29 50 2005-08-09T09:20:34Z 1 2020-02-15T06:59:43Z +10486 2005-08-01T10:23:43Z 2454 527 2005-08-05T07:11:43Z 2 2020-02-15T06:59:43Z +10487 2005-08-01T10:26:34Z 1121 577 2005-08-07T16:11:34Z 1 2020-02-15T06:59:43Z +10488 2005-08-01T10:27:27Z 297 423 2005-08-02T11:05:27Z 2 2020-02-15T06:59:43Z +10489 2005-08-01T10:27:42Z 4067 54 2005-08-07T12:56:42Z 1 2020-02-15T06:59:43Z +10490 2005-08-01T10:37:11Z 4365 329 2005-08-03T10:01:11Z 2 2020-02-15T06:59:43Z +10491 2005-08-01T10:38:27Z 3091 24 2005-08-04T04:55:27Z 2 2020-02-15T06:59:43Z +10492 2005-08-01T10:42:28Z 1669 334 2005-08-02T07:05:28Z 1 2020-02-15T06:59:43Z +10493 2005-08-01T10:43:12Z 2375 285 2005-08-07T08:13:12Z 2 2020-02-15T06:59:43Z +10494 2005-08-01T10:45:21Z 847 188 2005-08-02T12:34:21Z 1 2020-02-15T06:59:43Z +10495 2005-08-01T10:45:51Z 2232 41 2005-08-06T08:11:51Z 1 2020-02-15T06:59:43Z +10496 2005-08-01T10:53:16Z 411 525 2005-08-08T10:34:16Z 2 2020-02-15T06:59:43Z +10497 2005-08-01T10:55:59Z 1060 499 2005-08-07T11:15:59Z 1 2020-02-15T06:59:43Z +10498 2005-08-01T10:56:48Z 2672 355 2005-08-03T15:46:48Z 2 2020-02-15T06:59:43Z +10499 2005-08-01T11:00:20Z 3293 459 2005-08-10T11:52:20Z 2 2020-02-15T06:59:43Z +10500 2005-08-01T11:01:01Z 469 477 2005-08-06T08:59:01Z 2 2020-02-15T06:59:43Z +10501 2005-08-01T11:04:46Z 1792 351 2005-08-02T12:10:46Z 2 2020-02-15T06:59:43Z +10502 2005-08-01T11:06:39Z 3193 357 2005-08-05T07:11:39Z 1 2020-02-15T06:59:43Z +10503 2005-08-01T11:07:44Z 1823 357 2005-08-08T08:22:44Z 1 2020-02-15T06:59:43Z +10504 2005-08-01T11:10:55Z 3345 530 2005-08-10T10:16:55Z 1 2020-02-15T06:59:43Z +10505 2005-08-01T11:13:59Z 2977 426 2005-08-05T07:20:59Z 2 2020-02-15T06:59:43Z +10506 2005-08-01T11:16:05Z 1171 216 2005-08-03T05:37:05Z 2 2020-02-15T06:59:43Z +10507 2005-08-01T11:22:20Z 367 45 2005-08-04T13:18:20Z 2 2020-02-15T06:59:43Z +10508 2005-08-01T11:23:27Z 3890 431 2005-08-02T10:17:27Z 1 2020-02-15T06:59:43Z +10509 2005-08-01T11:25:28Z 96 504 2005-08-10T09:19:28Z 2 2020-02-15T06:59:43Z +10510 2005-08-01T11:28:30Z 410 259 2005-08-07T11:37:30Z 1 2020-02-15T06:59:43Z +10511 2005-08-01T11:32:16Z 3874 487 2005-08-04T09:38:16Z 1 2020-02-15T06:59:43Z +10512 2005-08-01T11:36:19Z 3294 438 2005-08-09T06:52:19Z 2 2020-02-15T06:59:43Z +10513 2005-08-01T11:37:34Z 4057 105 2005-08-02T17:15:34Z 2 2020-02-15T06:59:43Z +10514 2005-08-01T11:39:26Z 1512 7 2005-08-03T07:53:26Z 2 2020-02-15T06:59:43Z +10515 2005-08-01T11:41:33Z 874 383 2005-08-08T06:23:33Z 2 2020-02-15T06:59:43Z +10516 2005-08-01T11:41:55Z 3924 449 2005-08-08T17:16:55Z 1 2020-02-15T06:59:43Z +10517 2005-08-01T11:41:57Z 2299 199 2005-08-05T06:14:57Z 1 2020-02-15T06:59:43Z +10518 2005-08-01T11:44:08Z 4444 556 2005-08-07T07:58:08Z 2 2020-02-15T06:59:43Z +10519 2005-08-01T11:44:13Z 1967 456 2005-08-09T16:57:13Z 1 2020-02-15T06:59:43Z +10520 2005-08-01T11:45:58Z 4396 543 2005-08-06T17:28:58Z 2 2020-02-15T06:59:43Z +10521 2005-08-01T11:46:17Z 662 346 2005-08-05T11:06:17Z 2 2020-02-15T06:59:43Z +10522 2005-08-01T11:48:51Z 4159 254 2005-08-05T12:40:51Z 1 2020-02-15T06:59:43Z +10523 2005-08-01T11:52:32Z 2408 34 2005-08-02T10:47:32Z 1 2020-02-15T06:59:43Z +10524 2005-08-01T11:53:12Z 4116 38 2005-08-08T10:40:12Z 2 2020-02-15T06:59:43Z +10525 2005-08-01T11:53:17Z 3811 36 2005-08-07T07:24:17Z 1 2020-02-15T06:59:43Z +10526 2005-08-01T11:55:33Z 27 14 2005-08-08T16:42:33Z 1 2020-02-15T06:59:43Z +10527 2005-08-01T11:55:54Z 4530 431 2005-08-05T15:56:54Z 2 2020-02-15T06:59:43Z +10528 2005-08-01T11:56:22Z 4401 564 2005-08-07T07:13:22Z 1 2020-02-15T06:59:43Z +10529 2005-08-01T12:00:02Z 851 444 2005-08-08T16:18:02Z 1 2020-02-15T06:59:43Z +10530 2005-08-01T12:01:17Z 3216 520 2005-08-06T09:55:17Z 2 2020-02-15T06:59:43Z +10531 2005-08-01T12:06:30Z 3846 459 2005-08-04T10:23:30Z 2 2020-02-15T06:59:43Z +10532 2005-08-01T12:06:35Z 746 191 2005-08-07T16:04:35Z 2 2020-02-15T06:59:43Z +10533 2005-08-01T12:14:16Z 1924 593 2005-08-09T17:13:16Z 2 2020-02-15T06:59:43Z +10534 2005-08-01T12:15:11Z 4354 397 2005-08-04T17:06:11Z 1 2020-02-15T06:59:43Z +10535 2005-08-01T12:21:13Z 1838 284 2005-08-09T08:58:13Z 1 2020-02-15T06:59:43Z +10536 2005-08-01T12:21:53Z 1251 86 2005-08-04T13:08:53Z 2 2020-02-15T06:59:43Z +10537 2005-08-01T12:22:28Z 2140 418 2005-08-08T07:27:28Z 1 2020-02-15T06:59:43Z +10538 2005-08-01T12:22:41Z 686 37 2005-08-02T10:31:41Z 2 2020-02-15T06:59:43Z +10539 2005-08-01T12:23:00Z 3341 232 2005-08-07T10:25:00Z 2 2020-02-15T06:59:43Z +10540 2005-08-01T12:24:42Z 4121 84 2005-08-03T08:39:42Z 2 2020-02-15T06:59:43Z +10541 2005-08-01T12:24:54Z 1413 234 2005-08-03T16:18:54Z 1 2020-02-15T06:59:43Z +10542 2005-08-01T12:32:23Z 1102 465 2005-08-08T16:26:23Z 1 2020-02-15T06:59:43Z +10543 2005-08-01T12:36:09Z 624 29 2005-08-07T07:42:09Z 1 2020-02-15T06:59:43Z +10544 2005-08-01T12:36:21Z 3195 589 2005-08-07T12:25:21Z 2 2020-02-15T06:59:43Z +10545 2005-08-01T12:37:46Z 4230 425 2005-08-04T16:02:46Z 2 2020-02-15T06:59:43Z +10546 2005-08-01T12:44:17Z 1589 362 2005-08-06T16:26:17Z 2 2020-02-15T06:59:43Z +10547 2005-08-01T12:44:17Z 1707 403 2005-08-08T06:53:17Z 1 2020-02-15T06:59:43Z +10548 2005-08-01T12:44:32Z 1914 85 2005-08-07T09:17:32Z 1 2020-02-15T06:59:43Z +10549 2005-08-01T12:46:39Z 3719 61 2005-08-06T17:17:39Z 1 2020-02-15T06:59:43Z +10550 2005-08-01T12:46:52Z 1980 129 2005-08-05T16:48:52Z 2 2020-02-15T06:59:43Z +10551 2005-08-01T12:48:55Z 2974 294 2005-08-10T16:11:55Z 1 2020-02-15T06:59:43Z +10552 2005-08-01T12:49:44Z 4263 119 2005-08-04T16:20:44Z 2 2020-02-15T06:59:43Z +10553 2005-08-01T12:54:06Z 2768 415 2005-08-06T15:27:06Z 1 2020-02-15T06:59:43Z +10554 2005-08-01T12:56:19Z 3220 209 2005-08-03T09:44:19Z 2 2020-02-15T06:59:43Z +10555 2005-08-01T12:56:38Z 377 487 2005-08-10T18:19:38Z 1 2020-02-15T06:59:43Z +10556 2005-08-01T12:58:42Z 144 117 2005-08-03T07:18:42Z 2 2020-02-15T06:59:43Z +10557 2005-08-01T12:59:24Z 240 385 2005-08-04T17:08:24Z 2 2020-02-15T06:59:43Z +10558 2005-08-01T13:00:20Z 4399 117 2005-08-05T16:31:20Z 1 2020-02-15T06:59:43Z +10559 2005-08-01T13:02:58Z 2861 174 2005-08-09T10:03:58Z 2 2020-02-15T06:59:43Z +10560 2005-08-01T13:04:57Z 1534 427 2005-08-05T18:25:57Z 2 2020-02-15T06:59:43Z +10561 2005-08-01T13:05:35Z 2195 8 2005-08-04T08:34:35Z 2 2020-02-15T06:59:43Z +10562 2005-08-01T13:05:52Z 1947 178 2005-08-02T17:05:52Z 1 2020-02-15T06:59:43Z +10563 2005-08-01T13:06:03Z 1885 214 2005-08-09T08:39:03Z 2 2020-02-15T06:59:43Z +10564 2005-08-01T13:07:34Z 4469 387 2005-08-06T15:14:34Z 2 2020-02-15T06:59:43Z +10565 2005-08-01T13:08:27Z 347 165 2005-08-02T10:30:27Z 1 2020-02-15T06:59:43Z +10566 2005-08-01T13:12:11Z 3988 269 2005-08-05T11:16:11Z 2 2020-02-15T06:59:43Z +10567 2005-08-01T13:16:01Z 2744 212 2005-08-05T14:59:01Z 1 2020-02-15T06:59:43Z +10568 2005-08-01T13:17:28Z 3009 130 2005-08-08T17:04:28Z 1 2020-02-15T06:59:43Z +10569 2005-08-01T13:18:23Z 611 179 2005-08-10T13:33:23Z 1 2020-02-15T06:59:43Z +10570 2005-08-01T13:23:06Z 369 21 2005-08-05T15:30:06Z 2 2020-02-15T06:59:43Z +10571 2005-08-01T13:25:30Z 3660 308 2005-08-02T16:43:30Z 2 2020-02-15T06:59:43Z +10572 2005-08-01T13:26:53Z 1239 386 2005-08-07T18:47:53Z 2 2020-02-15T06:59:43Z +10573 2005-08-01T13:27:24Z 4252 585 2005-08-04T15:09:24Z 2 2020-02-15T06:59:43Z +10574 2005-08-01T13:36:51Z 679 287 2005-08-10T13:25:51Z 2 2020-02-15T06:59:43Z +10575 2005-08-01T13:41:41Z 4447 251 2005-08-08T11:30:41Z 1 2020-02-15T06:59:43Z +10576 2005-08-01T13:46:02Z 1876 180 2005-08-05T10:19:02Z 1 2020-02-15T06:59:43Z +10577 2005-08-01T13:46:38Z 2240 428 2005-08-06T11:35:38Z 2 2020-02-15T06:59:43Z +10578 2005-08-01T13:48:02Z 3704 113 2005-08-07T13:40:02Z 1 2020-02-15T06:59:43Z +10579 2005-08-01T13:48:22Z 4068 270 2005-08-07T11:51:22Z 1 2020-02-15T06:59:43Z +10580 2005-08-01T13:51:14Z 590 234 2005-08-08T11:49:14Z 2 2020-02-15T06:59:43Z +10581 2005-08-01T13:52:30Z 2801 217 2005-08-10T19:11:30Z 1 2020-02-15T06:59:43Z +10582 2005-08-01T13:54:22Z 2536 233 2005-08-05T16:46:22Z 2 2020-02-15T06:59:43Z +10583 2005-08-01T13:54:35Z 704 125 2005-08-03T18:21:35Z 1 2020-02-15T06:59:43Z +10584 2005-08-01T13:58:47Z 715 86 2005-08-06T13:38:47Z 2 2020-02-15T06:59:43Z +10585 2005-08-01T14:00:42Z 2670 228 2005-08-09T11:42:42Z 2 2020-02-15T06:59:43Z +10586 2005-08-01T14:00:59Z 3306 583 2005-08-06T10:00:59Z 2 2020-02-15T06:59:43Z +10587 2005-08-01T14:03:38Z 3000 521 2005-08-08T19:59:38Z 2 2020-02-15T06:59:43Z +10588 2005-08-01T14:10:21Z 2384 49 2005-08-03T13:47:21Z 2 2020-02-15T06:59:43Z +10589 2005-08-01T14:11:09Z 4280 375 2005-08-09T09:28:09Z 2 2020-02-15T06:59:43Z +10590 2005-08-01T14:11:53Z 740 78 2005-08-04T20:04:53Z 1 2020-02-15T06:59:43Z +10591 2005-08-01T14:12:29Z 3360 52 2005-08-04T08:46:29Z 2 2020-02-15T06:59:43Z +10592 2005-08-01T14:13:00Z 829 265 2005-08-09T13:03:00Z 2 2020-02-15T06:59:43Z +10593 2005-08-01T14:13:19Z 1886 144 2005-08-06T08:48:19Z 2 2020-02-15T06:59:43Z +10594 2005-08-01T14:14:59Z 1826 53 2005-08-07T10:48:59Z 2 2020-02-15T06:59:43Z +10595 2005-08-01T14:16:28Z 966 137 2005-08-03T10:37:28Z 1 2020-02-15T06:59:43Z +10596 2005-08-01T14:18:57Z 803 112 2005-08-07T14:59:57Z 2 2020-02-15T06:59:43Z +10597 2005-08-01T14:19:48Z 3292 3 2005-08-08T20:01:48Z 1 2020-02-15T06:59:43Z +10598 2005-08-01T14:23:36Z 2341 397 2005-08-10T14:07:36Z 2 2020-02-15T06:59:43Z +10599 2005-08-01T14:23:58Z 2422 271 2005-08-06T10:45:58Z 2 2020-02-15T06:59:43Z +10600 2005-08-01T14:25:21Z 3900 294 2005-08-06T18:00:21Z 1 2020-02-15T06:59:43Z +10601 2005-08-01T14:25:40Z 2843 420 2005-08-10T09:07:40Z 1 2020-02-15T06:59:43Z +10602 2005-08-01T14:30:23Z 1506 111 2005-08-07T15:20:23Z 1 2020-02-15T06:59:43Z +10603 2005-08-01T14:30:35Z 4024 394 2005-08-05T11:13:35Z 2 2020-02-15T06:59:43Z +10604 2005-08-01T14:35:08Z 2833 250 2005-08-08T10:19:08Z 2 2020-02-15T06:59:43Z +10605 2005-08-01T14:36:26Z 680 341 2005-08-06T12:04:26Z 2 2020-02-15T06:59:43Z +10606 2005-08-01T14:39:15Z 81 335 2005-08-08T11:31:15Z 1 2020-02-15T06:59:43Z +10607 2005-08-01T14:44:43Z 3999 438 2005-08-02T16:39:43Z 2 2020-02-15T06:59:43Z +10608 2005-08-01T14:48:41Z 3835 381 2005-08-04T17:32:41Z 2 2020-02-15T06:59:43Z +10609 2005-08-01T14:48:45Z 2587 5 2005-08-04T13:41:45Z 2 2020-02-15T06:59:43Z +10610 2005-08-01T14:49:41Z 1865 396 2005-08-03T13:07:41Z 1 2020-02-15T06:59:43Z +10611 2005-08-01T14:53:52Z 957 135 2005-08-07T09:15:52Z 2 2020-02-15T06:59:43Z +10612 2005-08-01T14:55:31Z 287 554 2005-08-06T19:01:31Z 1 2020-02-15T06:59:43Z +10613 2005-08-01T14:56:14Z 4357 527 2005-08-07T09:33:14Z 1 2020-02-15T06:59:43Z +10614 2005-08-01T14:57:00Z 232 533 2005-08-10T09:31:00Z 2 2020-02-15T06:59:43Z +10615 2005-08-01T14:58:14Z 2639 34 2005-08-02T13:38:14Z 1 2020-02-15T06:59:43Z +10616 2005-08-01T14:59:50Z 1094 20 2005-08-07T11:38:50Z 2 2020-02-15T06:59:43Z +10617 2005-08-01T15:05:52Z 4344 476 2005-08-09T18:54:52Z 1 2020-02-15T06:59:43Z +10618 2005-08-01T15:06:38Z 3729 386 2005-08-06T15:52:38Z 2 2020-02-15T06:59:43Z +10619 2005-08-01T15:07:04Z 2189 132 2005-08-07T11:42:04Z 2 2020-02-15T06:59:43Z +10620 2005-08-01T15:09:17Z 3064 183 2005-08-09T13:58:17Z 1 2020-02-15T06:59:43Z +10621 2005-08-01T15:10:26Z 1650 172 2005-08-04T10:58:26Z 1 2020-02-15T06:59:43Z +10622 2005-08-01T15:12:00Z 3044 171 2005-08-08T14:09:00Z 1 2020-02-15T06:59:43Z +10623 2005-08-01T15:22:38Z 4426 494 2005-08-03T11:03:38Z 2 2020-02-15T06:59:43Z +10624 2005-08-01T15:27:05Z 3801 74 2005-08-05T19:50:05Z 1 2020-02-15T06:59:43Z +10625 2005-08-01T15:27:10Z 3022 5 2005-08-02T13:16:10Z 1 2020-02-15T06:59:43Z +10626 2005-08-01T15:32:41Z 1042 122 2005-08-05T18:08:41Z 1 2020-02-15T06:59:43Z +10627 2005-08-01T15:33:03Z 2026 472 2005-08-02T21:26:03Z 1 2020-02-15T06:59:43Z +10628 2005-08-01T15:33:19Z 427 285 2005-08-05T17:27:19Z 1 2020-02-15T06:59:43Z +10629 2005-08-01T15:33:32Z 997 575 2005-08-08T12:40:32Z 2 2020-02-15T06:59:43Z +10630 2005-08-01T15:34:46Z 2335 39 2005-08-03T10:50:46Z 1 2020-02-15T06:59:43Z +10631 2005-08-01T15:35:14Z 2712 304 2005-08-03T10:48:14Z 1 2020-02-15T06:59:43Z +10632 2005-08-01T15:36:56Z 1290 406 2005-08-05T17:32:56Z 1 2020-02-15T06:59:43Z +10633 2005-08-01T15:37:17Z 3125 475 2005-08-10T14:30:17Z 2 2020-02-15T06:59:43Z +10634 2005-08-01T15:37:48Z 445 592 2005-08-02T12:11:48Z 2 2020-02-15T06:59:43Z +10635 2005-08-01T15:37:58Z 547 52 2005-08-07T11:15:58Z 2 2020-02-15T06:59:43Z +10636 2005-08-01T15:40:35Z 621 385 2005-08-05T18:46:35Z 1 2020-02-15T06:59:43Z +10637 2005-08-01T15:44:09Z 1243 161 2005-08-04T14:42:09Z 1 2020-02-15T06:59:43Z +10638 2005-08-01T15:44:20Z 2239 132 2005-08-08T16:05:20Z 2 2020-02-15T06:59:43Z +10639 2005-08-01T15:44:43Z 1015 39 2005-08-10T13:51:43Z 1 2020-02-15T06:59:43Z +10640 2005-08-01T15:44:51Z 3020 375 2005-08-06T15:52:51Z 1 2020-02-15T06:59:43Z +10641 2005-08-01T15:44:57Z 972 285 2005-08-04T18:15:57Z 2 2020-02-15T06:59:43Z +10642 2005-08-01T15:45:11Z 2573 294 2005-08-02T20:13:11Z 1 2020-02-15T06:59:43Z +10643 2005-08-01T15:48:33Z 3853 495 2005-08-06T20:24:33Z 2 2020-02-15T06:59:43Z +10644 2005-08-01T15:52:00Z 4374 7 2005-08-08T16:08:00Z 1 2020-02-15T06:59:43Z +10645 2005-08-01T15:52:01Z 3864 130 2005-08-09T18:58:01Z 1 2020-02-15T06:59:43Z +10646 2005-08-01T15:57:55Z 1752 209 2005-08-02T19:08:55Z 1 2020-02-15T06:59:43Z +10647 2005-08-01T16:08:46Z 3137 115 2005-08-06T20:37:46Z 2 2020-02-15T06:59:43Z +10648 2005-08-01T16:08:52Z 691 270 2005-08-05T20:17:52Z 1 2020-02-15T06:59:43Z +10649 2005-08-01T16:11:40Z 1032 278 2005-08-06T14:09:40Z 2 2020-02-15T06:59:43Z +10650 2005-08-01T16:18:45Z 2306 242 2005-08-09T16:29:45Z 1 2020-02-15T06:59:43Z +10651 2005-08-01T16:20:22Z 1541 404 2005-08-03T15:53:22Z 1 2020-02-15T06:59:43Z +10652 2005-08-01T16:24:08Z 1633 241 2005-08-03T16:00:08Z 2 2020-02-15T06:59:43Z +10653 2005-08-01T16:28:07Z 1190 75 2005-08-07T21:22:07Z 2 2020-02-15T06:59:43Z +10654 2005-08-01T16:31:35Z 2522 399 2005-08-05T12:04:35Z 2 2020-02-15T06:59:43Z +10655 2005-08-01T16:33:27Z 1399 385 2005-08-08T17:17:27Z 2 2020-02-15T06:59:43Z +10656 2005-08-01T16:38:04Z 2571 80 2005-08-09T19:37:04Z 2 2020-02-15T06:59:43Z +10657 2005-08-01T16:38:44Z 3075 590 2005-08-06T16:05:44Z 2 2020-02-15T06:59:43Z +10658 2005-08-01T16:39:18Z 2943 469 2005-08-09T18:17:18Z 2 2020-02-15T06:59:43Z +10659 2005-08-01T16:40:34Z 786 238 2005-08-09T21:00:34Z 2 2020-02-15T06:59:43Z +10660 2005-08-01T16:48:01Z 2518 253 2005-08-07T14:42:01Z 2 2020-02-15T06:59:43Z +10661 2005-08-01T16:48:31Z 3311 177 2005-08-02T21:02:31Z 1 2020-02-15T06:59:43Z +10662 2005-08-01T16:50:57Z 2857 151 2005-08-03T17:19:57Z 1 2020-02-15T06:59:43Z +10663 2005-08-01T16:51:08Z 4258 433 2005-08-08T21:17:08Z 2 2020-02-15T06:59:43Z +10664 2005-08-01T16:51:15Z 3167 337 2005-08-04T19:14:15Z 2 2020-02-15T06:59:43Z +10665 2005-08-01T16:56:17Z 3594 133 2005-08-03T18:58:17Z 1 2020-02-15T06:59:43Z +10666 2005-08-01T16:56:36Z 1945 197 2005-08-07T22:23:36Z 2 2020-02-15T06:59:43Z +10667 2005-08-01T16:58:22Z 3937 340 2005-08-10T15:41:22Z 1 2020-02-15T06:59:43Z +10668 2005-08-01T17:00:27Z 2085 58 2005-08-02T14:49:27Z 2 2020-02-15T06:59:43Z +10669 2005-08-01T17:03:28Z 2121 559 2005-08-08T21:34:28Z 2 2020-02-15T06:59:43Z +10670 2005-08-01T17:07:16Z 156 512 2005-08-10T11:46:16Z 2 2020-02-15T06:59:43Z +10671 2005-08-01T17:09:59Z 4430 10 2005-08-09T21:36:59Z 1 2020-02-15T06:59:43Z +10672 2005-08-01T17:10:54Z 3674 375 2005-08-07T12:19:54Z 2 2020-02-15T06:59:43Z +10673 2005-08-01T17:11:51Z 2735 528 2005-08-03T13:32:51Z 1 2020-02-15T06:59:43Z +10674 2005-08-01T17:11:52Z 1962 340 2005-08-08T19:34:52Z 1 2020-02-15T06:59:43Z +10675 2005-08-01T17:11:57Z 649 522 2005-08-10T17:18:57Z 1 2020-02-15T06:59:43Z +10676 2005-08-01T17:14:15Z 629 79 2005-08-04T12:34:15Z 1 2020-02-15T06:59:43Z +10677 2005-08-01T17:24:35Z 4350 483 2005-08-04T20:03:35Z 1 2020-02-15T06:59:43Z +10678 2005-08-01T17:26:24Z 4438 56 2005-08-05T22:55:24Z 1 2020-02-15T06:59:43Z +10679 2005-08-01T17:27:58Z 4437 198 2005-08-08T16:06:58Z 1 2020-02-15T06:59:43Z +10680 2005-08-01T17:28:05Z 2498 60 2005-08-04T19:34:05Z 1 2020-02-15T06:59:43Z +10681 2005-08-01T17:30:35Z 1468 119 2005-08-02T14:48:35Z 2 2020-02-15T06:59:43Z +10682 2005-08-01T17:32:53Z 4557 18 2005-08-06T15:49:53Z 2 2020-02-15T06:59:43Z +10683 2005-08-01T17:33:03Z 244 246 2005-08-04T23:12:03Z 1 2020-02-15T06:59:43Z +10684 2005-08-01T17:47:00Z 1985 244 2005-08-09T15:00:00Z 2 2020-02-15T06:59:43Z +10685 2005-08-01T17:49:38Z 2029 200 2005-08-07T21:04:38Z 2 2020-02-15T06:59:43Z +10686 2005-08-01T17:51:21Z 2542 150 2005-08-03T19:01:21Z 1 2020-02-15T06:59:43Z +10687 2005-08-01T17:53:02Z 3191 16 2005-08-05T19:16:02Z 2 2020-02-15T06:59:43Z +10688 2005-08-01T17:53:43Z 3161 449 2005-08-09T21:50:43Z 1 2020-02-15T06:59:43Z +10689 2005-08-01T18:04:18Z 1442 568 2005-08-05T21:17:18Z 2 2020-02-15T06:59:43Z +10690 2005-08-01T18:05:54Z 807 80 2005-08-10T21:43:54Z 2 2020-02-15T06:59:43Z +10691 2005-08-01T18:09:53Z 4281 276 2005-08-03T16:32:53Z 1 2020-02-15T06:59:43Z +10692 2005-08-01T18:12:35Z 371 596 2005-08-07T13:06:35Z 1 2020-02-15T06:59:44Z +10693 2005-08-01T18:14:14Z 2387 444 2005-08-03T22:00:14Z 2 2020-02-15T06:59:44Z +10694 2005-08-01T18:15:07Z 3429 98 2005-08-10T15:38:07Z 1 2020-02-15T06:59:44Z +10695 2005-08-01T18:16:20Z 3612 374 2005-08-03T12:21:20Z 2 2020-02-15T06:59:44Z +10696 2005-08-01T18:18:13Z 47 120 2005-08-04T14:09:13Z 1 2020-02-15T06:59:44Z +10697 2005-08-01T18:20:23Z 3115 519 2005-08-07T21:18:23Z 1 2020-02-15T06:59:44Z +10698 2005-08-01T18:24:41Z 2738 135 2005-08-08T18:59:41Z 2 2020-02-15T06:59:44Z +10699 2005-08-01T18:24:51Z 1029 125 2005-08-06T20:18:51Z 1 2020-02-15T06:59:44Z +10700 2005-08-01T18:26:31Z 4259 203 2005-08-07T19:51:31Z 2 2020-02-15T06:59:44Z +10701 2005-08-01T18:28:17Z 3958 538 2005-08-09T21:51:17Z 1 2020-02-15T06:59:44Z +10702 2005-08-01T18:34:59Z 2802 560 2005-08-09T23:44:59Z 2 2020-02-15T06:59:44Z +10703 2005-08-01T18:37:39Z 1818 181 2005-08-07T23:50:39Z 2 2020-02-15T06:59:44Z +10704 2005-08-01T18:38:02Z 960 594 2005-08-08T20:19:02Z 1 2020-02-15T06:59:44Z +10705 2005-08-01T18:38:54Z 4338 381 2005-08-04T18:00:54Z 1 2020-02-15T06:59:44Z +10706 2005-08-01T18:41:28Z 1183 147 2005-08-10T14:30:28Z 1 2020-02-15T06:59:44Z +10707 2005-08-01T18:41:34Z 1165 558 2005-08-06T12:41:34Z 1 2020-02-15T06:59:44Z +10708 2005-08-01T18:43:28Z 3978 567 2005-08-09T15:24:28Z 1 2020-02-15T06:59:44Z +10709 2005-08-01T18:43:57Z 282 418 2005-08-06T13:17:57Z 2 2020-02-15T06:59:44Z +10710 2005-08-01T18:44:36Z 3082 177 2005-08-03T13:17:36Z 1 2020-02-15T06:59:44Z +10711 2005-08-01T18:45:09Z 4278 400 2005-08-02T19:47:09Z 2 2020-02-15T06:59:44Z +10712 2005-08-01T18:47:56Z 1188 532 2005-08-07T19:26:56Z 2 2020-02-15T06:59:44Z +10713 2005-08-01T18:50:05Z 2030 369 2005-08-05T00:43:05Z 2 2020-02-15T06:59:44Z +10714 2005-08-01T18:51:29Z 1465 64 2005-08-04T18:49:29Z 2 2020-02-15T06:59:44Z +10715 2005-08-01T18:51:48Z 1054 386 2005-08-06T14:44:48Z 1 2020-02-15T06:59:44Z +10716 2005-08-01T18:53:48Z 3405 515 2005-08-04T13:49:48Z 1 2020-02-15T06:59:44Z +10717 2005-08-01T18:53:53Z 2934 365 2005-08-05T21:28:53Z 1 2020-02-15T06:59:44Z +10718 2005-08-01T18:55:38Z 2763 394 2005-08-04T14:45:38Z 1 2020-02-15T06:59:44Z +10719 2005-08-01T19:00:28Z 3861 188 2005-08-07T17:04:28Z 1 2020-02-15T06:59:44Z +10720 2005-08-01T19:04:33Z 3712 326 2005-08-06T23:12:33Z 2 2020-02-15T06:59:44Z +10721 2005-08-01T19:05:18Z 904 18 2005-08-09T20:45:18Z 2 2020-02-15T06:59:44Z +10722 2005-08-01T19:07:08Z 2849 90 2005-08-04T14:09:08Z 2 2020-02-15T06:59:44Z +10723 2005-08-01T19:10:49Z 2526 580 2005-08-08T19:21:49Z 2 2020-02-15T06:59:44Z +10724 2005-08-01T19:10:59Z 3425 576 2005-08-07T18:44:59Z 1 2020-02-15T06:59:44Z +10725 2005-08-01T19:11:04Z 4486 534 2005-08-07T18:16:04Z 2 2020-02-15T06:59:44Z +10726 2005-08-01T19:14:53Z 749 75 2005-08-08T23:56:53Z 2 2020-02-15T06:59:44Z +10727 2005-08-01T19:15:08Z 2049 16 2005-08-03T13:52:08Z 1 2020-02-15T06:59:44Z +10728 2005-08-01T19:15:09Z 3133 309 2005-08-04T19:35:09Z 1 2020-02-15T06:59:44Z +10729 2005-08-01T19:21:11Z 2918 595 2005-08-07T21:20:11Z 2 2020-02-15T06:59:44Z +10730 2005-08-01T19:21:42Z 1793 368 2005-08-10T21:18:42Z 1 2020-02-15T06:59:44Z +10731 2005-08-01T19:21:48Z 4248 278 2005-08-08T22:01:48Z 2 2020-02-15T06:59:44Z +10732 2005-08-01T19:25:18Z 2810 538 2005-08-10T22:26:18Z 1 2020-02-15T06:59:44Z +10733 2005-08-01T19:28:01Z 3980 560 2005-08-09T18:41:01Z 1 2020-02-15T06:59:44Z +10734 2005-08-01T19:28:47Z 1130 21 2005-08-03T00:41:47Z 2 2020-02-15T06:59:44Z +10735 2005-08-01T19:29:45Z 4061 544 2005-08-02T19:50:45Z 2 2020-02-15T06:59:44Z +10736 2005-08-01T19:30:21Z 2227 272 2005-08-02T22:37:21Z 1 2020-02-15T06:59:44Z +10737 2005-08-01T19:31:24Z 1773 149 2005-08-10T19:17:24Z 1 2020-02-15T06:59:44Z +10738 2005-08-01T19:39:08Z 544 377 2005-08-10T20:37:08Z 1 2020-02-15T06:59:44Z +10739 2005-08-01T19:46:11Z 3160 197 2005-08-06T21:08:11Z 2 2020-02-15T06:59:44Z +10740 2005-08-01T19:50:32Z 3215 144 2005-08-07T23:25:32Z 1 2020-02-15T06:59:44Z +10741 2005-08-01T19:52:52Z 3300 469 2005-08-04T19:58:52Z 1 2020-02-15T06:59:44Z +10742 2005-08-01T19:53:13Z 3658 416 2005-08-10T15:05:13Z 1 2020-02-15T06:59:44Z +10743 2005-08-01T19:55:09Z 4206 197 2005-08-03T19:29:09Z 1 2020-02-15T06:59:44Z +10744 2005-08-01T19:56:49Z 565 439 2005-08-09T16:33:49Z 2 2020-02-15T06:59:44Z +10745 2005-08-01T19:57:06Z 446 307 2005-08-07T18:04:06Z 1 2020-02-15T06:59:44Z +10746 2005-08-01T19:58:49Z 305 508 2005-08-10T19:00:49Z 2 2020-02-15T06:59:44Z +10747 2005-08-01T19:59:41Z 4527 266 2005-08-10T00:00:41Z 2 2020-02-15T06:59:44Z +10748 2005-08-01T20:01:24Z 3769 181 2005-08-05T19:55:24Z 1 2020-02-15T06:59:44Z +10749 2005-08-01T20:02:01Z 2953 214 2005-08-03T14:20:01Z 1 2020-02-15T06:59:44Z +10750 2005-08-01T20:06:00Z 3206 201 2005-08-07T15:48:00Z 1 2020-02-15T06:59:44Z +10751 2005-08-01T20:06:10Z 3257 518 2005-08-10T22:36:10Z 2 2020-02-15T06:59:44Z +10752 2005-08-01T20:08:49Z 3203 147 2005-08-10T15:41:49Z 2 2020-02-15T06:59:44Z +10753 2005-08-01T20:09:24Z 1557 273 2005-08-09T19:31:24Z 1 2020-02-15T06:59:44Z +10754 2005-08-01T20:12:33Z 2122 460 2005-08-10T01:07:33Z 2 2020-02-15T06:59:44Z +10755 2005-08-01T20:14:14Z 1217 239 2005-08-07T01:04:14Z 1 2020-02-15T06:59:44Z +10756 2005-08-01T20:17:03Z 4247 596 2005-08-08T18:31:03Z 2 2020-02-15T06:59:44Z +10757 2005-08-01T20:22:44Z 102 188 2005-08-04T19:48:44Z 2 2020-02-15T06:59:44Z +10758 2005-08-01T20:22:51Z 191 373 2005-08-10T16:11:51Z 1 2020-02-15T06:59:44Z +10759 2005-08-01T20:22:51Z 3528 256 2005-08-07T22:07:51Z 1 2020-02-15T06:59:44Z +10760 2005-08-01T20:25:20Z 1311 497 2005-08-09T16:57:20Z 1 2020-02-15T06:59:44Z +10761 2005-08-01T20:25:35Z 3967 36 2005-08-08T15:20:35Z 2 2020-02-15T06:59:44Z +10762 2005-08-01T20:28:39Z 1363 208 2005-08-05T17:36:39Z 1 2020-02-15T06:59:44Z +10763 2005-08-01T20:32:27Z 987 276 2005-08-05T01:24:27Z 2 2020-02-15T06:59:44Z +10764 2005-08-01T20:32:42Z 3808 357 2005-08-03T22:14:42Z 2 2020-02-15T06:59:44Z +10765 2005-08-01T20:34:51Z 566 337 2005-08-04T00:02:51Z 1 2020-02-15T06:59:44Z +10766 2005-08-01T20:36:29Z 947 420 2005-08-04T00:30:29Z 1 2020-02-15T06:59:44Z +10767 2005-08-01T20:37:23Z 2875 488 2005-08-04T23:15:23Z 2 2020-02-15T06:59:44Z +10768 2005-08-01T20:39:32Z 454 273 2005-08-10T19:41:32Z 1 2020-02-15T06:59:44Z +10769 2005-08-01T20:43:02Z 3222 348 2005-08-05T02:32:02Z 1 2020-02-15T06:59:44Z +10770 2005-08-01T20:45:39Z 2567 262 2005-08-04T19:21:39Z 1 2020-02-15T06:59:44Z +10771 2005-08-01T20:49:35Z 1274 485 2005-08-10T16:58:35Z 1 2020-02-15T06:59:44Z +10772 2005-08-01T20:51:10Z 132 485 2005-08-10T15:50:10Z 1 2020-02-15T06:59:44Z +10773 2005-08-01T20:53:45Z 3854 181 2005-08-07T00:16:45Z 1 2020-02-15T06:59:44Z +10774 2005-08-01T20:54:33Z 4231 407 2005-08-08T20:59:33Z 2 2020-02-15T06:59:44Z +10775 2005-08-01T20:59:52Z 4190 263 2005-08-04T19:31:52Z 2 2020-02-15T06:59:44Z +10776 2005-08-01T20:59:58Z 1598 565 2005-08-10T20:33:58Z 2 2020-02-15T06:59:44Z +10777 2005-08-01T21:03:50Z 3487 493 2005-08-06T19:29:50Z 1 2020-02-15T06:59:44Z +10778 2005-08-01T21:11:39Z 1939 220 2005-08-02T22:59:39Z 2 2020-02-15T06:59:44Z +10779 2005-08-01T21:11:54Z 2092 578 2005-08-09T21:00:54Z 2 2020-02-15T06:59:44Z +10780 2005-08-01T21:14:24Z 1450 51 2005-08-07T16:32:24Z 2 2020-02-15T06:59:44Z +10781 2005-08-01T21:22:41Z 1321 259 2005-08-06T01:02:41Z 1 2020-02-15T06:59:44Z +10782 2005-08-01T21:23:25Z 1507 577 2005-08-03T20:15:25Z 2 2020-02-15T06:59:44Z +10783 2005-08-01T21:23:37Z 1192 495 2005-08-09T20:18:37Z 1 2020-02-15T06:59:44Z +10784 2005-08-01T21:24:28Z 3494 208 2005-08-09T19:23:28Z 1 2020-02-15T06:59:44Z +10785 2005-08-01T21:24:55Z 2282 397 2005-08-06T17:47:55Z 1 2020-02-15T06:59:44Z +10786 2005-08-01T21:29:34Z 50 490 2005-08-10T17:27:34Z 1 2020-02-15T06:59:44Z +10787 2005-08-01T21:35:01Z 3246 127 2005-08-10T23:30:01Z 1 2020-02-15T06:59:44Z +10788 2005-08-01T21:37:10Z 3350 160 2005-08-03T01:33:10Z 1 2020-02-15T06:59:44Z +10789 2005-08-01T21:37:55Z 3298 403 2005-08-07T17:01:55Z 2 2020-02-15T06:59:44Z +10790 2005-08-01T21:38:37Z 3080 274 2005-08-08T17:20:37Z 2 2020-02-15T06:59:44Z +10791 2005-08-01T21:41:52Z 2061 338 2005-08-04T03:28:52Z 2 2020-02-15T06:59:44Z +10792 2005-08-01T21:44:24Z 1037 264 2005-08-02T19:48:24Z 2 2020-02-15T06:59:44Z +10793 2005-08-01T21:48:03Z 3018 225 2005-08-10T19:16:03Z 1 2020-02-15T06:59:44Z +10794 2005-08-01T21:51:15Z 889 27 2005-08-10T18:51:15Z 2 2020-02-15T06:59:44Z +10795 2005-08-01T21:56:37Z 2748 76 2005-08-03T01:36:37Z 1 2020-02-15T06:59:44Z +10796 2005-08-01T21:56:41Z 2113 534 2005-08-05T01:09:41Z 1 2020-02-15T06:59:44Z +10797 2005-08-01T22:02:51Z 1731 308 2005-08-03T23:07:51Z 1 2020-02-15T06:59:44Z +10798 2005-08-01T22:03:10Z 382 141 2005-08-08T01:34:10Z 1 2020-02-15T06:59:44Z +10799 2005-08-01T22:03:31Z 3282 145 2005-08-06T20:19:31Z 2 2020-02-15T06:59:44Z +10800 2005-08-01T22:07:44Z 507 583 2005-08-05T22:45:44Z 1 2020-02-15T06:59:44Z +10801 2005-08-01T22:09:35Z 3757 116 2005-08-08T22:23:35Z 1 2020-02-15T06:59:44Z +10802 2005-08-01T22:18:32Z 3998 178 2005-08-10T18:41:32Z 2 2020-02-15T06:59:44Z +10803 2005-08-01T22:22:07Z 3318 46 2005-08-08T02:37:07Z 2 2020-02-15T06:59:44Z +10804 2005-08-01T22:22:11Z 2915 596 2005-08-03T03:42:11Z 2 2020-02-15T06:59:44Z +10805 2005-08-01T22:23:37Z 557 203 2005-08-05T01:22:37Z 2 2020-02-15T06:59:44Z +10806 2005-08-01T22:25:29Z 3553 89 2005-08-04T18:46:29Z 2 2020-02-15T06:59:44Z +10807 2005-08-01T22:26:10Z 1673 287 2005-08-05T21:55:10Z 1 2020-02-15T06:59:44Z +10808 2005-08-01T22:37:11Z 596 480 2005-08-09T02:37:11Z 1 2020-02-15T06:59:44Z +10809 2005-08-01T22:39:27Z 1167 340 2005-08-03T03:44:27Z 2 2020-02-15T06:59:44Z +10810 2005-08-01T22:40:39Z 2314 376 2005-08-06T19:47:39Z 1 2020-02-15T06:59:44Z +10811 2005-08-01T22:41:15Z 4012 209 2005-08-10T00:10:15Z 1 2020-02-15T06:59:44Z +10812 2005-08-01T22:41:16Z 3762 11 2005-08-07T00:50:16Z 1 2020-02-15T06:59:44Z +10813 2005-08-01T22:43:00Z 3580 456 2005-08-03T21:43:00Z 1 2020-02-15T06:59:44Z +10814 2005-08-01T22:43:12Z 2758 49 2005-08-05T02:35:12Z 2 2020-02-15T06:59:44Z +10815 2005-08-01T22:46:21Z 877 62 2005-08-03T02:43:21Z 2 2020-02-15T06:59:44Z +10816 2005-08-01T22:48:57Z 905 129 2005-08-10T04:39:57Z 2 2020-02-15T06:59:44Z +10817 2005-08-01T22:51:08Z 3056 501 2005-08-10T16:55:08Z 2 2020-02-15T06:59:44Z +10818 2005-08-01T22:52:45Z 4549 309 2005-08-06T04:07:45Z 1 2020-02-15T06:59:44Z +10819 2005-08-01T22:52:57Z 983 308 2005-08-06T00:08:57Z 1 2020-02-15T06:59:44Z +10820 2005-08-01T22:53:40Z 1487 97 2005-08-02T17:59:40Z 2 2020-02-15T06:59:44Z +10821 2005-08-01T22:54:27Z 2016 522 2005-08-07T02:15:27Z 2 2020-02-15T06:59:44Z +10822 2005-08-01T22:54:28Z 3895 343 2005-08-02T17:19:28Z 1 2020-02-15T06:59:44Z +10823 2005-08-01T22:59:10Z 3322 405 2005-08-08T23:44:10Z 1 2020-02-15T06:59:44Z +10824 2005-08-01T23:00:22Z 3948 482 2005-08-04T04:14:22Z 2 2020-02-15T06:59:44Z +10825 2005-08-01T23:05:33Z 4386 587 2005-08-04T04:33:33Z 1 2020-02-15T06:59:44Z +10826 2005-08-01T23:07:56Z 1228 476 2005-08-08T04:10:56Z 2 2020-02-15T06:59:44Z +10827 2005-08-01T23:13:00Z 1590 46 2005-08-08T02:51:00Z 1 2020-02-15T06:59:44Z +10828 2005-08-01T23:16:10Z 2448 471 2005-08-09T21:17:10Z 1 2020-02-15T06:59:44Z +10829 2005-08-01T23:17:06Z 168 554 2005-08-09T17:22:06Z 2 2020-02-15T06:59:44Z +10830 2005-08-01T23:18:06Z 4176 148 2005-08-06T23:15:06Z 2 2020-02-15T06:59:44Z +10831 2005-08-01T23:22:45Z 1496 78 2005-08-07T01:05:45Z 2 2020-02-15T06:59:44Z +10832 2005-08-01T23:24:53Z 4096 487 2005-08-06T23:18:53Z 1 2020-02-15T06:59:44Z +10833 2005-08-01T23:25:55Z 4380 422 2005-08-10T18:01:55Z 1 2020-02-15T06:59:44Z +10834 2005-08-01T23:28:00Z 2270 252 2005-08-07T01:21:00Z 1 2020-02-15T06:59:44Z +10835 2005-08-01T23:28:49Z 351 90 2005-08-10T21:28:49Z 2 2020-02-15T06:59:44Z +10836 2005-08-01T23:29:58Z 4534 217 2005-08-07T23:03:58Z 2 2020-02-15T06:59:44Z +10837 2005-08-01T23:30:22Z 1816 410 2005-08-07T23:02:22Z 1 2020-02-15T06:59:44Z +10838 2005-08-01T23:36:10Z 69 387 2005-08-05T04:55:10Z 2 2020-02-15T06:59:44Z +10839 2005-08-01T23:37:39Z 2867 482 2005-08-02T20:18:39Z 1 2020-02-15T06:59:44Z +10840 2005-08-01T23:38:34Z 583 593 2005-08-07T02:36:34Z 2 2020-02-15T06:59:44Z +10841 2005-08-01T23:39:21Z 4337 102 2005-08-07T20:47:21Z 1 2020-02-15T06:59:44Z +10842 2005-08-01T23:41:24Z 1300 137 2005-08-11T03:48:24Z 1 2020-02-15T06:59:44Z +10843 2005-08-01T23:43:03Z 1286 192 2005-08-09T23:49:03Z 2 2020-02-15T06:59:44Z +10844 2005-08-01T23:46:58Z 1516 333 2005-08-09T19:42:58Z 2 2020-02-15T06:59:44Z +10845 2005-08-01T23:47:03Z 2737 42 2005-08-08T01:57:03Z 1 2020-02-15T06:59:44Z +10846 2005-08-01T23:47:54Z 2277 441 2005-08-08T01:10:54Z 1 2020-02-15T06:59:44Z +10847 2005-08-01T23:49:33Z 1200 280 2005-08-10T05:37:33Z 2 2020-02-15T06:59:44Z +10848 2005-08-01T23:50:22Z 2630 368 2005-08-06T00:52:22Z 1 2020-02-15T06:59:44Z +10849 2005-08-01T23:51:00Z 1683 278 2005-08-10T19:59:00Z 2 2020-02-15T06:59:44Z +10850 2005-08-01T23:53:45Z 1853 199 2005-08-10T21:11:45Z 1 2020-02-15T06:59:44Z +10851 2005-08-01T23:58:45Z 1359 154 2005-08-04T00:59:45Z 1 2020-02-15T06:59:44Z +10852 2005-08-02T00:00:33Z 3862 27 2005-08-03T23:09:33Z 1 2020-02-15T06:59:44Z +10853 2005-08-02T00:00:54Z 2682 41 2005-08-10T05:37:54Z 2 2020-02-15T06:59:44Z +10854 2005-08-02T00:02:06Z 3295 356 2005-08-02T21:55:06Z 2 2020-02-15T06:59:44Z +10855 2005-08-02T00:06:37Z 1366 274 2005-08-03T00:39:37Z 1 2020-02-15T06:59:44Z +10856 2005-08-02T00:07:14Z 2010 451 2005-08-04T02:48:14Z 2 2020-02-15T06:59:44Z +10857 2005-08-02T00:07:20Z 2961 360 2005-08-04T02:35:20Z 1 2020-02-15T06:59:44Z +10858 2005-08-02T00:08:39Z 852 312 2005-08-05T00:58:39Z 2 2020-02-15T06:59:44Z +10859 2005-08-02T00:11:39Z 277 375 2005-08-08T19:52:39Z 1 2020-02-15T06:59:44Z +10860 2005-08-02T00:12:32Z 2827 25 2005-08-04T03:50:32Z 1 2020-02-15T06:59:44Z +10861 2005-08-02T00:12:46Z 2162 131 2005-08-09T04:09:46Z 2 2020-02-15T06:59:44Z +10862 2005-08-02T00:17:34Z 1077 176 2005-08-08T00:31:34Z 2 2020-02-15T06:59:44Z +10863 2005-08-02T00:18:07Z 1170 161 2005-08-10T06:16:07Z 2 2020-02-15T06:59:44Z +10864 2005-08-02T00:18:59Z 1694 134 2005-08-08T22:20:59Z 1 2020-02-15T06:59:44Z +10865 2005-08-02T00:22:46Z 1485 201 2005-08-09T05:08:46Z 2 2020-02-15T06:59:44Z +10866 2005-08-02T00:22:49Z 117 424 2005-08-07T04:38:49Z 1 2020-02-15T06:59:44Z +10867 2005-08-02T00:24:15Z 2577 473 2005-08-05T21:09:15Z 1 2020-02-15T06:59:44Z +10868 2005-08-02T00:25:15Z 2443 562 2005-08-10T02:31:15Z 2 2020-02-15T06:59:44Z +10869 2005-08-02T00:26:54Z 2967 568 2005-08-04T03:40:54Z 2 2020-02-15T06:59:44Z +10870 2005-08-02T00:27:12Z 1509 33 2005-08-02T20:00:12Z 2 2020-02-15T06:59:44Z +10871 2005-08-02T00:27:24Z 104 75 2005-08-05T06:25:24Z 1 2020-02-15T06:59:44Z +10872 2005-08-02T00:27:50Z 2470 84 2005-08-06T20:34:50Z 2 2020-02-15T06:59:44Z +10873 2005-08-02T00:30:34Z 169 506 2005-08-07T00:16:34Z 2 2020-02-15T06:59:44Z +10874 2005-08-02T00:31:00Z 2552 230 2005-08-07T05:04:00Z 1 2020-02-15T06:59:44Z +10875 2005-08-02T00:31:44Z 862 175 2005-08-05T22:24:44Z 2 2020-02-15T06:59:44Z +10876 2005-08-02T00:31:58Z 2161 559 2005-08-05T21:45:58Z 1 2020-02-15T06:59:44Z +10877 2005-08-02T00:32:04Z 3337 487 2005-08-07T19:44:04Z 2 2020-02-15T06:59:44Z +10878 2005-08-02T00:33:12Z 3511 45 2005-08-07T06:02:12Z 1 2020-02-15T06:59:44Z +10879 2005-08-02T00:33:20Z 4415 334 2005-08-09T04:13:20Z 2 2020-02-15T06:59:44Z +10880 2005-08-02T00:34:12Z 450 528 2005-08-06T21:15:12Z 2 2020-02-15T06:59:44Z +10881 2005-08-02T00:38:14Z 781 253 2005-08-09T22:02:14Z 2 2020-02-15T06:59:44Z +10882 2005-08-02T00:47:16Z 1349 54 2005-08-09T22:11:16Z 1 2020-02-15T06:59:44Z +10883 2005-08-02T00:47:19Z 4 301 2005-08-03T00:02:19Z 1 2020-02-15T06:59:44Z +10884 2005-08-02T00:47:33Z 3702 569 2005-08-03T04:38:33Z 1 2020-02-15T06:59:44Z +10885 2005-08-02T00:51:37Z 4223 493 2005-08-09T20:49:37Z 2 2020-02-15T06:59:44Z +10886 2005-08-02T00:52:34Z 943 77 2005-08-08T00:30:34Z 1 2020-02-15T06:59:44Z +10887 2005-08-02T00:52:35Z 3450 573 2005-08-03T05:37:35Z 1 2020-02-15T06:59:44Z +10888 2005-08-02T00:52:45Z 2412 428 2005-08-03T03:07:45Z 1 2020-02-15T06:59:44Z +10889 2005-08-02T00:54:33Z 2098 64 2005-08-07T19:42:33Z 1 2020-02-15T06:59:44Z +10890 2005-08-02T00:58:46Z 78 210 2005-08-10T02:13:46Z 1 2020-02-15T06:59:44Z +10891 2005-08-02T01:09:55Z 1269 201 2005-08-05T05:03:55Z 2 2020-02-15T06:59:44Z +10892 2005-08-02T01:12:06Z 3243 109 2005-08-09T23:53:06Z 1 2020-02-15T06:59:44Z +10893 2005-08-02T01:12:13Z 2529 306 2005-08-11T05:53:13Z 2 2020-02-15T06:59:44Z +10894 2005-08-02T01:12:35Z 598 51 2005-08-09T22:55:35Z 1 2020-02-15T06:59:44Z +10895 2005-08-02T01:16:59Z 93 77 2005-08-03T02:41:59Z 2 2020-02-15T06:59:44Z +10896 2005-08-02T01:19:33Z 2283 505 2005-08-08T06:54:33Z 1 2020-02-15T06:59:44Z +10897 2005-08-02T01:23:42Z 291 338 2005-08-03T23:27:42Z 1 2020-02-15T06:59:44Z +10898 2005-08-02T01:29:57Z 3814 23 2005-08-06T00:07:57Z 2 2020-02-15T06:59:44Z +10899 2005-08-02T01:30:21Z 859 29 2005-08-06T05:01:21Z 2 2020-02-15T06:59:44Z +10900 2005-08-02T01:34:26Z 1749 139 2005-08-07T00:52:26Z 2 2020-02-15T06:59:44Z +10901 2005-08-02T01:35:44Z 3813 290 2005-08-04T21:20:44Z 2 2020-02-15T06:59:44Z +10902 2005-08-02T01:35:46Z 3863 486 2005-08-09T01:59:46Z 1 2020-02-15T06:59:44Z +10903 2005-08-02T01:41:59Z 2696 547 2005-08-06T23:03:59Z 1 2020-02-15T06:59:44Z +10904 2005-08-02T01:43:02Z 3681 593 2005-08-04T04:34:02Z 1 2020-02-15T06:59:44Z +10905 2005-08-02T01:45:59Z 2835 439 2005-08-04T22:28:59Z 1 2020-02-15T06:59:44Z +10906 2005-08-02T01:47:04Z 3139 463 2005-08-07T20:41:04Z 2 2020-02-15T06:59:44Z +10907 2005-08-02T01:51:48Z 1430 561 2005-08-02T19:53:48Z 1 2020-02-15T06:59:44Z +10908 2005-08-02T01:53:06Z 1284 269 2005-08-04T02:46:06Z 2 2020-02-15T06:59:44Z +10909 2005-08-02T01:53:59Z 3516 413 2005-08-03T04:36:59Z 2 2020-02-15T06:59:44Z +10910 2005-08-02T01:54:34Z 2428 266 2005-08-10T04:04:34Z 2 2020-02-15T06:59:44Z +10911 2005-08-02T01:58:36Z 769 195 2005-08-08T07:37:36Z 2 2020-02-15T06:59:44Z +10912 2005-08-02T02:00:03Z 732 477 2005-08-06T05:55:03Z 1 2020-02-15T06:59:44Z +10913 2005-08-02T02:04:03Z 3388 565 2005-08-09T03:21:03Z 1 2020-02-15T06:59:44Z +10914 2005-08-02T02:04:43Z 585 584 2005-08-06T03:00:43Z 1 2020-02-15T06:59:44Z +10915 2005-08-02T02:05:04Z 4568 418 2005-08-10T21:58:04Z 2 2020-02-15T06:59:44Z +10916 2005-08-02T02:05:59Z 3841 25 2005-08-06T03:46:59Z 2 2020-02-15T06:59:44Z +10917 2005-08-02T02:06:18Z 3146 378 2005-08-03T22:42:18Z 1 2020-02-15T06:59:44Z +10918 2005-08-02T02:10:56Z 3418 2 2005-08-02T21:23:56Z 1 2020-02-15T06:59:44Z +10919 2005-08-02T02:11:03Z 868 115 2005-08-04T01:49:03Z 1 2020-02-15T06:59:44Z +10920 2005-08-02T02:14:10Z 3106 531 2005-08-06T23:36:10Z 1 2020-02-15T06:59:44Z +10921 2005-08-02T02:14:33Z 1820 555 2005-08-09T20:58:33Z 2 2020-02-15T06:59:44Z +10922 2005-08-02T02:14:40Z 4522 539 2005-08-06T06:04:40Z 1 2020-02-15T06:59:44Z +10923 2005-08-02T02:15:01Z 2602 239 2005-08-03T04:18:01Z 1 2020-02-15T06:59:44Z +10924 2005-08-02T02:20:19Z 589 540 2005-08-11T05:50:19Z 2 2020-02-15T06:59:44Z +10925 2005-08-02T02:24:38Z 1475 98 2005-08-03T05:06:38Z 1 2020-02-15T06:59:44Z +10926 2005-08-02T02:26:37Z 4016 460 2005-08-09T20:55:37Z 1 2020-02-15T06:59:44Z +10927 2005-08-02T02:31:15Z 4125 288 2005-08-10T20:41:15Z 1 2020-02-15T06:59:44Z +10928 2005-08-02T02:34:12Z 2885 211 2005-08-07T21:13:12Z 1 2020-02-15T06:59:44Z +10929 2005-08-02T02:35:44Z 913 305 2005-08-05T03:52:44Z 1 2020-02-15T06:59:44Z +10930 2005-08-02T02:38:07Z 2027 206 2005-08-08T05:15:07Z 2 2020-02-15T06:59:44Z +10931 2005-08-02T02:44:59Z 3268 545 2005-08-04T02:02:59Z 1 2020-02-15T06:59:44Z +10932 2005-08-02T02:46:22Z 1688 595 2005-08-06T01:49:22Z 2 2020-02-15T06:59:44Z +10933 2005-08-02T02:50:49Z 3970 313 2005-08-08T04:39:49Z 1 2020-02-15T06:59:44Z +10934 2005-08-02T02:52:18Z 4458 142 2005-08-06T01:23:18Z 2 2020-02-15T06:59:44Z +10935 2005-08-02T02:54:53Z 4373 42 2005-08-10T00:07:53Z 2 2020-02-15T06:59:44Z +10936 2005-08-02T02:55:04Z 463 445 2005-08-11T07:56:04Z 1 2020-02-15T06:59:44Z +10937 2005-08-02T03:00:18Z 1320 416 2005-08-11T03:44:18Z 2 2020-02-15T06:59:44Z +10938 2005-08-02T03:05:22Z 3918 502 2005-08-05T08:31:22Z 1 2020-02-15T06:59:44Z +10939 2005-08-02T03:06:20Z 2131 161 2005-08-04T01:22:20Z 2 2020-02-15T06:59:44Z +10940 2005-08-02T03:08:29Z 3760 120 2005-08-07T21:28:29Z 2 2020-02-15T06:59:44Z +10941 2005-08-02T03:11:33Z 2132 531 2005-08-10T07:31:33Z 1 2020-02-15T06:59:44Z +10942 2005-08-02T03:16:31Z 2304 78 2005-08-11T02:46:31Z 2 2020-02-15T06:59:44Z +10943 2005-08-02T03:17:29Z 1036 377 2005-08-03T00:50:29Z 2 2020-02-15T06:59:44Z +10944 2005-08-02T03:20:03Z 2373 470 2005-08-04T04:13:03Z 2 2020-02-15T06:59:44Z +10945 2005-08-02T03:20:23Z 3684 532 2005-08-09T03:23:23Z 1 2020-02-15T06:59:44Z +10946 2005-08-02T03:20:39Z 4271 56 2005-08-05T02:59:39Z 1 2020-02-15T06:59:44Z +10947 2005-08-02T03:23:17Z 2510 500 2005-08-07T05:25:17Z 1 2020-02-15T06:59:44Z +10948 2005-08-02T03:23:23Z 4429 220 2005-08-05T23:18:23Z 1 2020-02-15T06:59:44Z +10949 2005-08-02T03:24:04Z 2309 389 2005-08-06T08:36:04Z 2 2020-02-15T06:59:44Z +10950 2005-08-02T03:25:08Z 707 451 2005-08-07T23:11:08Z 2 2020-02-15T06:59:44Z +10951 2005-08-02T03:26:35Z 173 144 2005-08-07T22:03:35Z 1 2020-02-15T06:59:44Z +10952 2005-08-02T03:28:21Z 3218 111 2005-08-09T01:41:21Z 1 2020-02-15T06:59:44Z +10953 2005-08-02T03:28:38Z 1510 483 2005-08-11T03:53:38Z 1 2020-02-15T06:59:44Z +10954 2005-08-02T03:30:24Z 3406 20 2005-08-08T05:52:24Z 2 2020-02-15T06:59:44Z +10955 2005-08-02T03:32:34Z 618 490 2005-08-09T21:53:34Z 2 2020-02-15T06:59:44Z +10956 2005-08-02T03:33:14Z 4372 54 2005-08-09T09:20:14Z 2 2020-02-15T06:59:44Z +10957 2005-08-02T03:33:30Z 1652 447 2005-08-10T06:19:30Z 2 2020-02-15T06:59:44Z +10958 2005-08-02T03:37:13Z 2174 160 2005-08-04T23:28:13Z 2 2020-02-15T06:59:44Z +10959 2005-08-02T03:39:39Z 4233 431 2005-08-11T07:20:39Z 1 2020-02-15T06:59:44Z +10960 2005-08-02T03:46:18Z 3536 399 2005-08-11T01:29:18Z 1 2020-02-15T06:59:44Z +10961 2005-08-02T03:47:55Z 1416 375 2005-08-09T02:03:55Z 1 2020-02-15T06:59:44Z +10962 2005-08-02T03:48:13Z 1953 538 2005-08-07T00:04:13Z 1 2020-02-15T06:59:44Z +10963 2005-08-02T03:48:17Z 4501 36 2005-08-02T22:15:17Z 1 2020-02-15T06:59:44Z +10964 2005-08-02T03:56:23Z 2356 36 2005-08-09T23:11:23Z 2 2020-02-15T06:59:44Z +10965 2005-08-02T04:00:19Z 2192 580 2005-08-09T03:27:19Z 1 2020-02-15T06:59:44Z +10966 2005-08-02T04:00:47Z 478 584 2005-08-08T01:58:47Z 2 2020-02-15T06:59:44Z +10967 2005-08-02T04:02:16Z 683 149 2005-08-09T07:57:16Z 1 2020-02-15T06:59:44Z +10968 2005-08-02T04:03:13Z 888 234 2005-08-11T08:36:13Z 1 2020-02-15T06:59:44Z +10969 2005-08-02T04:04:32Z 1898 244 2005-08-09T23:18:32Z 1 2020-02-15T06:59:44Z +10970 2005-08-02T04:06:46Z 1202 260 2005-08-10T04:27:46Z 1 2020-02-15T06:59:44Z +10971 2005-08-02T04:08:17Z 2789 383 2005-08-09T00:02:17Z 1 2020-02-15T06:59:44Z +10972 2005-08-02T04:08:25Z 1928 348 2005-08-09T23:25:25Z 1 2020-02-15T06:59:44Z +10973 2005-08-02T04:09:42Z 3562 127 2005-08-08T05:24:42Z 2 2020-02-15T06:59:44Z +10974 2005-08-02T04:10:52Z 690 491 2005-08-09T08:26:52Z 1 2020-02-15T06:59:44Z +10975 2005-08-02T04:11:25Z 2616 361 2005-08-04T04:39:25Z 2 2020-02-15T06:59:44Z +10976 2005-08-02T04:11:48Z 2418 326 2005-08-06T06:30:48Z 2 2020-02-15T06:59:44Z +10977 2005-08-02T04:12:17Z 2302 300 2005-08-06T06:52:17Z 2 2020-02-15T06:59:44Z +10978 2005-08-02T04:12:27Z 1597 487 2005-08-10T08:19:27Z 2 2020-02-15T06:59:44Z +10979 2005-08-02T04:16:37Z 2625 160 2005-08-06T00:01:37Z 2 2020-02-15T06:59:44Z +10980 2005-08-02T04:17:32Z 150 547 2005-08-04T05:12:32Z 1 2020-02-15T06:59:44Z +10981 2005-08-02T04:17:53Z 3699 305 2005-08-09T03:45:53Z 2 2020-02-15T06:59:44Z +10982 2005-08-02T04:19:11Z 2508 345 2005-08-04T00:20:11Z 2 2020-02-15T06:59:44Z +10983 2005-08-02T04:24:23Z 4502 380 2005-08-09T08:05:23Z 2 2020-02-15T06:59:44Z +10984 2005-08-02T04:30:02Z 1813 450 2005-08-10T02:51:02Z 1 2020-02-15T06:59:44Z +10985 2005-08-02T04:30:19Z 2734 186 2005-08-03T05:18:19Z 1 2020-02-15T06:59:44Z +10986 2005-08-02T04:35:24Z 555 597 2005-08-09T07:34:24Z 2 2020-02-15T06:59:44Z +10987 2005-08-02T04:36:52Z 968 349 2005-08-04T00:03:52Z 1 2020-02-15T06:59:44Z +10988 2005-08-02T04:38:17Z 1157 509 2005-08-09T00:09:17Z 1 2020-02-15T06:59:44Z +10989 2005-08-02T04:40:54Z 2272 7 2005-08-09T03:39:54Z 2 2020-02-15T06:59:44Z +10990 2005-08-02T04:41:06Z 262 111 2005-08-10T05:02:06Z 2 2020-02-15T06:59:44Z +10991 2005-08-02T04:41:12Z 2854 77 2005-08-05T05:36:12Z 2 2020-02-15T06:59:44Z +10992 2005-08-02T04:41:17Z 11 180 2005-08-09T02:13:17Z 1 2020-02-15T06:59:44Z +10993 2005-08-02T04:45:01Z 292 383 2005-08-04T03:32:01Z 1 2020-02-15T06:59:44Z +10994 2005-08-02T04:46:53Z 647 323 2005-08-11T10:30:53Z 1 2020-02-15T06:59:44Z +10995 2005-08-02T04:48:00Z 2891 340 2005-08-07T05:00:00Z 1 2020-02-15T06:59:44Z +10996 2005-08-02T04:48:11Z 2235 26 2005-08-06T08:00:11Z 1 2020-02-15T06:59:44Z +10997 2005-08-02T04:49:02Z 300 334 2005-08-10T08:13:02Z 2 2020-02-15T06:59:44Z +10998 2005-08-02T04:50:55Z 1479 435 2005-08-11T03:43:55Z 1 2020-02-15T06:59:44Z +10999 2005-08-02T04:53:13Z 2013 227 2005-08-06T04:36:13Z 2 2020-02-15T06:59:44Z +11000 2005-08-02T04:56:14Z 264 265 2005-08-07T01:39:14Z 2 2020-02-15T06:59:44Z +11001 2005-08-02T04:56:45Z 3701 5 2005-08-11T08:04:45Z 1 2020-02-15T06:59:44Z +11002 2005-08-02T05:02:56Z 3073 583 2005-08-05T07:04:56Z 2 2020-02-15T06:59:44Z +11003 2005-08-02T05:03:05Z 4301 272 2005-08-05T10:48:05Z 2 2020-02-15T06:59:44Z +11004 2005-08-02T05:04:18Z 200 45 2005-08-11T00:03:18Z 2 2020-02-15T06:59:44Z +11005 2005-08-02T05:05:23Z 1547 216 2005-08-07T23:28:23Z 2 2020-02-15T06:59:44Z +11006 2005-08-02T05:05:52Z 2776 473 2005-08-05T03:33:52Z 1 2020-02-15T06:59:44Z +11007 2005-08-02T05:05:53Z 4172 98 2005-08-05T01:56:53Z 2 2020-02-15T06:59:44Z +11008 2005-08-02T05:06:17Z 2831 375 2005-08-10T01:22:17Z 2 2020-02-15T06:59:44Z +11009 2005-08-02T05:06:23Z 2574 596 2005-08-08T03:02:23Z 1 2020-02-15T06:59:44Z +11010 2005-08-02T05:06:27Z 869 326 2005-08-03T23:47:27Z 2 2020-02-15T06:59:44Z +11011 2005-08-02T05:07:07Z 3981 256 2005-08-09T07:16:07Z 1 2020-02-15T06:59:44Z +11012 2005-08-02T05:09:42Z 542 162 2005-08-05T07:22:42Z 2 2020-02-15T06:59:44Z +11013 2005-08-02T05:10:54Z 2993 527 2005-08-10T08:59:54Z 1 2020-02-15T06:59:44Z +11014 2005-08-02T05:12:22Z 393 269 2005-08-07T09:33:22Z 1 2020-02-15T06:59:44Z +11015 2005-08-02T05:13:00Z 4331 138 2005-08-08T04:18:00Z 2 2020-02-15T06:59:44Z +11016 2005-08-02T05:19:13Z 4446 116 2005-08-05T05:31:13Z 1 2020-02-15T06:59:44Z +11017 2005-08-02T05:19:51Z 4140 480 2005-08-09T00:36:51Z 2 2020-02-15T06:59:44Z +11018 2005-08-02T05:27:53Z 2988 197 2005-08-07T10:48:53Z 1 2020-02-15T06:59:44Z +11019 2005-08-02T05:29:31Z 3227 112 2005-08-04T00:42:31Z 1 2020-02-15T06:59:44Z +11020 2005-08-02T05:29:48Z 1645 242 2005-08-06T05:36:48Z 2 2020-02-15T06:59:44Z +11021 2005-08-02T05:30:11Z 2069 385 2005-08-05T05:50:11Z 2 2020-02-15T06:59:44Z +11022 2005-08-02T05:35:03Z 827 206 2005-08-09T10:20:03Z 2 2020-02-15T06:59:44Z +11023 2005-08-02T05:36:38Z 3617 6 2005-08-10T05:39:38Z 1 2020-02-15T06:59:44Z +11024 2005-08-02T05:38:31Z 2284 427 2005-08-11T04:47:31Z 1 2020-02-15T06:59:44Z +11025 2005-08-02T05:39:12Z 2253 419 2005-08-08T00:09:12Z 2 2020-02-15T06:59:44Z +11026 2005-08-02T05:46:05Z 3554 531 2005-08-07T06:27:05Z 2 2020-02-15T06:59:44Z +11027 2005-08-02T05:47:10Z 571 412 2005-08-05T23:51:10Z 1 2020-02-15T06:59:44Z +11028 2005-08-02T05:48:20Z 2764 66 2005-08-10T11:21:20Z 1 2020-02-15T06:59:44Z +11029 2005-08-02T05:51:10Z 1023 45 2005-08-05T04:15:10Z 1 2020-02-15T06:59:44Z +11030 2005-08-02T05:51:20Z 1437 569 2005-08-06T04:20:20Z 1 2020-02-15T06:59:44Z +11031 2005-08-02T05:52:58Z 1205 361 2005-08-07T07:14:58Z 2 2020-02-15T06:59:44Z +11032 2005-08-02T05:53:35Z 1119 359 2005-08-05T02:58:35Z 2 2020-02-15T06:59:44Z +11033 2005-08-02T05:54:17Z 3323 155 2005-08-09T10:50:17Z 2 2020-02-15T06:59:44Z +11034 2005-08-02T05:54:53Z 2939 586 2005-08-09T04:14:53Z 1 2020-02-15T06:59:44Z +11035 2005-08-02T05:55:39Z 3776 305 2005-08-08T06:46:39Z 2 2020-02-15T06:59:44Z +11036 2005-08-02T05:56:29Z 2054 502 2005-08-05T05:00:29Z 2 2020-02-15T06:59:44Z +11037 2005-08-02T05:58:12Z 4291 220 2005-08-07T11:26:12Z 1 2020-02-15T06:59:44Z +11038 2005-08-02T05:59:42Z 4452 403 2005-08-08T04:37:42Z 2 2020-02-15T06:59:44Z +11039 2005-08-02T06:00:53Z 549 170 2005-08-05T06:19:53Z 2 2020-02-15T06:59:44Z +11040 2005-08-02T06:03:22Z 2297 223 2005-08-03T07:58:22Z 1 2020-02-15T06:59:44Z +11041 2005-08-02T06:03:53Z 1897 435 2005-08-03T11:57:53Z 1 2020-02-15T06:59:44Z +11042 2005-08-02T06:04:33Z 4149 439 2005-08-11T01:30:33Z 1 2020-02-15T06:59:44Z +11043 2005-08-02T06:04:44Z 65 573 2005-08-06T11:37:44Z 1 2020-02-15T06:59:44Z +11044 2005-08-02T06:05:27Z 2922 122 2005-08-06T05:15:27Z 1 2020-02-15T06:59:44Z +11045 2005-08-02T06:07:54Z 2214 402 2005-08-08T00:37:54Z 1 2020-02-15T06:59:44Z +11046 2005-08-02T06:08:34Z 2105 526 2005-08-06T08:45:34Z 2 2020-02-15T06:59:44Z +11047 2005-08-02T06:09:20Z 2267 416 2005-08-11T08:36:20Z 1 2020-02-15T06:59:44Z +11048 2005-08-02T06:15:07Z 206 491 2005-08-04T02:47:07Z 2 2020-02-15T06:59:44Z +11049 2005-08-02T06:15:40Z 4352 38 2005-08-11T10:09:40Z 2 2020-02-15T06:59:44Z +11050 2005-08-02T06:17:16Z 2077 234 2005-08-09T05:58:16Z 1 2020-02-15T06:59:44Z +11051 2005-08-02T06:23:39Z 4189 446 2005-08-06T06:46:39Z 2 2020-02-15T06:59:44Z +11052 2005-08-02T06:26:19Z 1089 331 2005-08-06T04:20:19Z 2 2020-02-15T06:59:44Z +11053 2005-08-02T06:27:13Z 2599 50 2005-08-09T11:24:13Z 2 2020-02-15T06:59:44Z +11054 2005-08-02T06:33:07Z 728 577 2005-08-10T02:52:07Z 2 2020-02-15T06:59:44Z +11055 2005-08-02T06:36:05Z 3851 182 2005-08-06T00:36:05Z 1 2020-02-15T06:59:44Z +11056 2005-08-02T06:36:27Z 1404 88 2005-08-10T06:02:27Z 1 2020-02-15T06:59:44Z +11057 2005-08-02T06:38:19Z 3143 137 2005-08-11T03:43:19Z 1 2020-02-15T06:59:44Z +11058 2005-08-02T06:38:44Z 3270 274 2005-08-06T06:45:44Z 1 2020-02-15T06:59:44Z +11059 2005-08-02T06:41:38Z 428 189 2005-08-09T04:34:38Z 1 2020-02-15T06:59:44Z +11060 2005-08-02T06:48:18Z 3395 496 2005-08-10T11:49:18Z 1 2020-02-15T06:59:44Z +11061 2005-08-02T06:50:18Z 809 245 2005-08-07T07:41:18Z 2 2020-02-15T06:59:44Z +11062 2005-08-02T06:52:54Z 2014 346 2005-08-07T10:59:54Z 1 2020-02-15T06:59:44Z +11063 2005-08-02T06:53:48Z 2261 461 2005-08-05T03:38:48Z 2 2020-02-15T06:59:44Z +11064 2005-08-02T06:55:17Z 3012 338 2005-08-06T03:29:17Z 1 2020-02-15T06:59:44Z +11065 2005-08-02T06:57:55Z 2226 357 2005-08-06T01:31:55Z 2 2020-02-15T06:59:44Z +11066 2005-08-02T06:58:32Z 4213 373 2005-08-10T01:27:32Z 2 2020-02-15T06:59:44Z +11067 2005-08-02T07:03:24Z 965 85 2005-08-10T08:59:24Z 2 2020-02-15T06:59:44Z +11068 2005-08-02T07:08:07Z 1262 52 2005-08-09T11:15:07Z 2 2020-02-15T06:59:44Z +11069 2005-08-02T07:09:34Z 57 4 2005-08-08T08:39:34Z 1 2020-02-15T06:59:44Z +11070 2005-08-02T07:10:39Z 4020 298 2005-08-03T07:43:39Z 1 2020-02-15T06:59:44Z +11071 2005-08-02T07:10:53Z 4264 294 2005-08-07T09:58:53Z 1 2020-02-15T06:59:44Z +11072 2005-08-02T07:10:57Z 3078 21 2005-08-04T07:42:57Z 1 2020-02-15T06:59:44Z +11073 2005-08-02T07:13:03Z 4232 234 2005-08-03T05:46:03Z 1 2020-02-15T06:59:44Z +11074 2005-08-02T07:21:43Z 1439 277 2005-08-08T05:18:43Z 1 2020-02-15T06:59:44Z +11075 2005-08-02T07:24:23Z 3027 503 2005-08-08T04:55:23Z 1 2020-02-15T06:59:44Z +11076 2005-08-02T07:24:47Z 837 211 2005-08-10T09:16:47Z 1 2020-02-15T06:59:44Z +11077 2005-08-02T07:26:43Z 4254 158 2005-08-09T10:34:43Z 2 2020-02-15T06:59:44Z +11078 2005-08-02T07:26:58Z 2362 587 2005-08-07T01:59:58Z 2 2020-02-15T06:59:44Z +11079 2005-08-02T07:29:10Z 3185 29 2005-08-07T01:59:10Z 2 2020-02-15T06:59:44Z +11080 2005-08-02T07:29:56Z 4303 571 2005-08-08T05:58:56Z 1 2020-02-15T06:59:44Z +11081 2005-08-02T07:30:14Z 3804 513 2005-08-09T08:50:14Z 1 2020-02-15T06:59:44Z +11082 2005-08-02T07:30:19Z 3037 190 2005-08-07T05:20:19Z 2 2020-02-15T06:59:44Z +11083 2005-08-02T07:32:01Z 4395 295 2005-08-08T02:23:01Z 1 2020-02-15T06:59:44Z +11084 2005-08-02T07:34:19Z 32 369 2005-08-07T09:30:19Z 1 2020-02-15T06:59:44Z +11085 2005-08-02T07:36:44Z 3207 276 2005-08-04T03:32:44Z 1 2020-02-15T06:59:44Z +11086 2005-08-02T07:38:44Z 552 371 2005-08-11T06:30:44Z 1 2020-02-15T06:59:44Z +11087 2005-08-02T07:41:41Z 654 2 2005-08-10T10:37:41Z 2 2020-02-15T06:59:44Z +11088 2005-08-02T07:48:31Z 2739 138 2005-08-05T08:09:31Z 2 2020-02-15T06:59:44Z +11089 2005-08-02T07:52:20Z 825 421 2005-08-07T07:24:20Z 1 2020-02-15T06:59:44Z +11090 2005-08-02T07:56:40Z 2743 89 2005-08-10T07:58:40Z 1 2020-02-15T06:59:44Z +11091 2005-08-02T07:56:41Z 1659 423 2005-08-07T05:35:41Z 2 2020-02-15T06:59:44Z +11092 2005-08-02T07:58:50Z 569 60 2005-08-04T03:23:50Z 2 2020-02-15T06:59:44Z +11093 2005-08-02T07:59:49Z 239 82 2005-08-11T06:01:49Z 1 2020-02-15T06:59:44Z +11094 2005-08-02T08:03:02Z 3095 18 2005-08-03T11:34:02Z 1 2020-02-15T06:59:44Z +11095 2005-08-02T08:03:20Z 3517 278 2005-08-10T05:20:20Z 1 2020-02-15T06:59:44Z +11096 2005-08-02T08:05:19Z 1436 34 2005-08-04T07:28:19Z 2 2020-02-15T06:59:44Z +11097 2005-08-02T08:05:46Z 2493 575 2005-08-10T12:00:46Z 2 2020-02-15T06:59:44Z +11098 2005-08-02T08:06:18Z 158 570 2005-08-11T04:50:18Z 2 2020-02-15T06:59:44Z +11099 2005-08-02T08:07:12Z 1444 102 2005-08-07T12:11:12Z 2 2020-02-15T06:59:44Z +11100 2005-08-02T08:08:00Z 3047 65 2005-08-10T07:19:00Z 1 2020-02-15T06:59:44Z +11101 2005-08-02T08:08:24Z 2621 80 2005-08-06T05:55:24Z 1 2020-02-15T06:59:44Z +11102 2005-08-02T08:08:30Z 3112 73 2005-08-04T09:16:30Z 1 2020-02-15T06:59:44Z +11103 2005-08-02T08:09:54Z 1879 158 2005-08-07T12:05:54Z 1 2020-02-15T06:59:44Z +11104 2005-08-02T08:09:58Z 3042 196 2005-08-05T11:55:58Z 1 2020-02-15T06:59:44Z +11105 2005-08-02T08:13:31Z 3170 245 2005-08-03T11:08:31Z 1 2020-02-15T06:59:44Z +11106 2005-08-02T08:17:38Z 2307 287 2005-08-03T07:54:38Z 1 2020-02-15T06:59:44Z +11107 2005-08-02T08:19:38Z 2217 410 2005-08-07T08:46:38Z 2 2020-02-15T06:59:44Z +11108 2005-08-02T08:20:01Z 560 447 2005-08-03T13:22:01Z 2 2020-02-15T06:59:44Z +11109 2005-08-02T08:20:29Z 2683 479 2005-08-09T11:35:29Z 2 2020-02-15T06:59:44Z +11110 2005-08-02T08:20:31Z 4311 4 2005-08-04T05:06:31Z 2 2020-02-15T06:59:44Z +11111 2005-08-02T08:21:27Z 334 378 2005-08-06T07:48:27Z 2 2020-02-15T06:59:44Z +11112 2005-08-02T08:25:14Z 526 207 2005-08-03T08:41:14Z 1 2020-02-15T06:59:44Z +11113 2005-08-02T08:26:24Z 1654 231 2005-08-07T09:24:24Z 2 2020-02-15T06:59:44Z +11114 2005-08-02T08:26:45Z 1273 572 2005-08-03T08:41:45Z 2 2020-02-15T06:59:44Z +11115 2005-08-02T08:31:06Z 3812 408 2005-08-04T02:36:06Z 2 2020-02-15T06:59:44Z +11116 2005-08-02T08:34:40Z 434 344 2005-08-09T04:56:40Z 1 2020-02-15T06:59:44Z +11117 2005-08-02T08:36:03Z 1613 474 2005-08-05T06:56:03Z 2 2020-02-15T06:59:44Z +11118 2005-08-02T08:44:18Z 2411 15 2005-08-05T08:08:18Z 2 2020-02-15T06:59:44Z +11119 2005-08-02T08:44:44Z 4307 489 2005-08-10T11:32:44Z 2 2020-02-15T06:59:44Z +11120 2005-08-02T08:47:04Z 4185 322 2005-08-05T05:33:04Z 1 2020-02-15T06:59:44Z +11121 2005-08-02T08:48:31Z 1025 572 2005-08-04T05:08:31Z 2 2020-02-15T06:59:44Z +11122 2005-08-02T08:49:09Z 3021 383 2005-08-08T04:33:09Z 1 2020-02-15T06:59:44Z +11123 2005-08-02T08:54:17Z 1926 150 2005-08-09T11:11:17Z 2 2020-02-15T06:59:44Z +11124 2005-08-02T08:55:25Z 698 249 2005-08-10T10:59:25Z 1 2020-02-15T06:59:44Z +11125 2005-08-02T08:55:35Z 2081 237 2005-08-03T09:12:35Z 1 2020-02-15T06:59:44Z +11126 2005-08-02T08:59:04Z 3310 47 2005-08-04T11:00:04Z 1 2020-02-15T06:59:44Z +11127 2005-08-02T09:00:59Z 1106 351 2005-08-05T11:54:59Z 2 2020-02-15T06:59:44Z +11128 2005-08-02T09:03:25Z 3472 386 2005-08-09T04:36:25Z 1 2020-02-15T06:59:44Z +11129 2005-08-02T09:08:44Z 23 566 2005-08-04T04:00:44Z 1 2020-02-15T06:59:44Z +11130 2005-08-02T09:08:59Z 684 329 2005-08-09T07:50:59Z 2 2020-02-15T06:59:44Z +11131 2005-08-02T09:10:04Z 1860 293 2005-08-08T09:59:04Z 2 2020-02-15T06:59:44Z +11132 2005-08-02T09:14:09Z 2212 398 2005-08-08T06:39:09Z 1 2020-02-15T06:59:44Z +11133 2005-08-02T09:15:45Z 675 120 2005-08-04T10:39:45Z 1 2020-02-15T06:59:44Z +11134 2005-08-02T09:19:22Z 2641 372 2005-08-11T03:56:22Z 1 2020-02-15T06:59:44Z +11135 2005-08-02T09:22:25Z 799 32 2005-08-04T14:30:25Z 2 2020-02-15T06:59:44Z +11136 2005-08-02T09:22:57Z 1315 559 2005-08-08T14:12:57Z 2 2020-02-15T06:59:44Z +11137 2005-08-02T09:25:31Z 2500 310 2005-08-08T08:10:31Z 1 2020-02-15T06:59:44Z +11138 2005-08-02T09:26:16Z 4250 458 2005-08-11T07:50:16Z 2 2020-02-15T06:59:44Z +11139 2005-08-02T09:27:36Z 1011 236 2005-08-08T14:07:36Z 2 2020-02-15T06:59:44Z +11140 2005-08-02T09:27:45Z 3836 132 2005-08-05T04:10:45Z 1 2020-02-15T06:59:44Z +11141 2005-08-02T09:29:11Z 1614 15 2005-08-04T07:50:11Z 1 2020-02-15T06:59:44Z +11142 2005-08-02T09:30:11Z 2954 306 2005-08-05T06:52:11Z 1 2020-02-15T06:59:44Z +11143 2005-08-02T09:32:54Z 3382 100 2005-08-05T12:04:54Z 2 2020-02-15T06:59:44Z +11144 2005-08-02T09:39:17Z 2724 376 2005-08-03T11:53:17Z 2 2020-02-15T06:59:44Z +11145 2005-08-02T09:43:24Z 1270 291 2005-08-05T15:29:24Z 1 2020-02-15T06:59:44Z +11146 2005-08-02T09:45:32Z 2488 552 2005-08-07T07:33:32Z 1 2020-02-15T06:59:44Z +11147 2005-08-02T09:45:54Z 1562 597 2005-08-07T07:28:54Z 1 2020-02-15T06:59:44Z +11148 2005-08-02T09:47:08Z 2991 230 2005-08-08T10:57:08Z 1 2020-02-15T06:59:44Z +11149 2005-08-02T09:51:43Z 3254 358 2005-08-11T09:40:43Z 2 2020-02-15T06:59:44Z +11150 2005-08-02T09:51:46Z 2193 527 2005-08-05T09:03:46Z 2 2020-02-15T06:59:44Z +11151 2005-08-02T09:52:44Z 3939 391 2005-08-05T06:29:44Z 2 2020-02-15T06:59:44Z +11152 2005-08-02T09:53:36Z 3887 494 2005-08-11T14:58:36Z 1 2020-02-15T06:59:44Z +11153 2005-08-02T09:54:19Z 1546 220 2005-08-10T14:57:19Z 1 2020-02-15T06:59:44Z +11154 2005-08-02T09:54:50Z 697 160 2005-08-06T14:48:50Z 2 2020-02-15T06:59:44Z +11155 2005-08-02T09:55:28Z 2001 73 2005-08-03T06:00:28Z 2 2020-02-15T06:59:44Z +11156 2005-08-02T09:56:06Z 907 465 2005-08-04T13:36:06Z 2 2020-02-15T06:59:44Z +11157 2005-08-02T09:58:15Z 1313 244 2005-08-06T04:23:15Z 2 2020-02-15T06:59:44Z +11158 2005-08-02T09:58:28Z 530 190 2005-08-10T13:54:28Z 2 2020-02-15T06:59:44Z +11159 2005-08-02T10:00:55Z 4575 249 2005-08-05T10:38:55Z 1 2020-02-15T06:59:44Z +11160 2005-08-02T10:05:30Z 3260 436 2005-08-07T08:30:30Z 1 2020-02-15T06:59:44Z +11161 2005-08-02T10:05:57Z 3321 503 2005-08-06T05:05:57Z 2 2020-02-15T06:59:44Z +11162 2005-08-02T10:07:54Z 1809 277 2005-08-05T11:35:54Z 2 2020-02-15T06:59:44Z +11163 2005-08-02T10:08:40Z 1925 505 2005-08-05T14:59:40Z 1 2020-02-15T06:59:44Z +11164 2005-08-02T10:10:56Z 4450 580 2005-08-10T11:20:56Z 2 2020-02-15T06:59:44Z +11165 2005-08-02T10:12:17Z 2059 513 2005-08-04T11:09:17Z 1 2020-02-15T06:59:44Z +11166 2005-08-02T10:14:58Z 638 11 2005-08-11T11:43:58Z 1 2020-02-15T06:59:44Z +11167 2005-08-02T10:15:51Z 148 451 2005-08-09T09:18:51Z 1 2020-02-15T06:59:44Z +11168 2005-08-02T10:19:42Z 468 555 2005-08-04T08:42:42Z 1 2020-02-15T06:59:44Z +11169 2005-08-02T10:19:42Z 2392 329 2005-08-07T05:45:42Z 1 2020-02-15T06:59:44Z +11170 2005-08-02T10:21:53Z 1333 547 2005-08-08T11:08:53Z 1 2020-02-15T06:59:44Z +11171 2005-08-02T10:23:41Z 3117 339 2005-08-04T14:22:41Z 2 2020-02-15T06:59:44Z +11172 2005-08-02T10:27:52Z 1207 76 2005-08-11T12:47:52Z 1 2020-02-15T06:59:44Z +11173 2005-08-02T10:28:00Z 4296 146 2005-08-10T14:53:00Z 1 2020-02-15T06:59:44Z +11174 2005-08-02T10:32:11Z 1551 328 2005-08-09T12:30:11Z 1 2020-02-15T06:59:44Z +11175 2005-08-02T10:38:47Z 85 164 2005-08-07T07:11:47Z 2 2020-02-15T06:59:44Z +11176 2005-08-02T10:39:43Z 1448 37 2005-08-09T14:42:43Z 2 2020-02-15T06:59:44Z +11177 2005-08-02T10:43:48Z 1149 2 2005-08-10T10:55:48Z 2 2020-02-15T06:59:44Z +11178 2005-08-02T10:48:10Z 2613 342 2005-08-06T06:07:10Z 1 2020-02-15T06:59:44Z +11179 2005-08-02T10:50:06Z 4376 5 2005-08-04T05:24:06Z 1 2020-02-15T06:59:44Z +11180 2005-08-02T10:54:30Z 3632 534 2005-08-11T15:55:30Z 1 2020-02-15T06:59:44Z +11181 2005-08-02T10:55:03Z 3127 557 2005-08-07T10:43:03Z 1 2020-02-15T06:59:44Z +11182 2005-08-02T10:55:14Z 605 54 2005-08-06T05:58:14Z 1 2020-02-15T06:59:44Z +11183 2005-08-02T11:00:32Z 833 102 2005-08-04T08:59:32Z 2 2020-02-15T06:59:44Z +11184 2005-08-02T11:01:26Z 871 259 2005-08-11T06:29:26Z 1 2020-02-15T06:59:44Z +11185 2005-08-02T11:04:35Z 1215 469 2005-08-05T13:48:35Z 2 2020-02-15T06:59:44Z +11186 2005-08-02T11:12:08Z 733 353 2005-08-03T10:46:08Z 1 2020-02-15T06:59:44Z +11187 2005-08-02T11:16:19Z 3626 410 2005-08-11T06:11:19Z 1 2020-02-15T06:59:44Z +11188 2005-08-02T11:17:11Z 1372 485 2005-08-08T16:46:11Z 2 2020-02-15T06:59:44Z +11189 2005-08-02T11:17:23Z 729 565 2005-08-09T16:30:23Z 2 2020-02-15T06:59:44Z +11190 2005-08-02T11:21:34Z 922 254 2005-08-05T05:23:34Z 1 2020-02-15T06:59:44Z +11191 2005-08-02T11:24:07Z 1097 571 2005-08-10T10:39:07Z 1 2020-02-15T06:59:44Z +11192 2005-08-02T11:29:41Z 1998 349 2005-08-07T06:01:41Z 2 2020-02-15T06:59:44Z +11193 2005-08-02T11:31:33Z 2246 292 2005-08-04T14:00:33Z 1 2020-02-15T06:59:44Z +11194 2005-08-02T11:35:53Z 2732 135 2005-08-10T11:28:53Z 1 2020-02-15T06:59:44Z +11195 2005-08-02T11:42:23Z 4359 177 2005-08-03T08:29:23Z 1 2020-02-15T06:59:44Z +11196 2005-08-02T11:42:40Z 2648 126 2005-08-10T11:58:40Z 2 2020-02-15T06:59:44Z +11197 2005-08-02T11:45:07Z 3041 122 2005-08-03T09:07:07Z 1 2020-02-15T06:59:44Z +11198 2005-08-02T11:45:15Z 2908 540 2005-08-10T11:42:15Z 2 2020-02-15T06:59:44Z +11199 2005-08-02T11:47:40Z 3926 578 2005-08-10T06:52:40Z 2 2020-02-15T06:59:44Z +11200 2005-08-02T11:48:36Z 2730 98 2005-08-07T08:35:36Z 2 2020-02-15T06:59:44Z +11201 2005-08-02T11:49:16Z 1501 195 2005-08-11T08:39:16Z 1 2020-02-15T06:59:44Z +11202 2005-08-02T11:51:57Z 3625 231 2005-08-08T09:41:57Z 1 2020-02-15T06:59:44Z +11203 2005-08-02T11:52:41Z 4520 92 2005-08-10T15:52:41Z 2 2020-02-15T06:59:44Z +11204 2005-08-02T11:56:31Z 3578 247 2005-08-06T14:16:31Z 2 2020-02-15T06:59:44Z +11205 2005-08-02T11:56:54Z 4321 552 2005-08-05T08:24:54Z 1 2020-02-15T06:59:44Z +11206 2005-08-02T11:58:03Z 4131 72 2005-08-07T12:36:03Z 2 2020-02-15T06:59:44Z +11207 2005-08-02T12:01:30Z 4470 481 2005-08-05T07:56:30Z 1 2020-02-15T06:59:44Z +11208 2005-08-02T12:02:37Z 4566 320 2005-08-05T10:56:37Z 1 2020-02-15T06:59:44Z +11209 2005-08-02T12:09:45Z 3219 24 2005-08-07T08:52:45Z 1 2020-02-15T06:59:44Z +11210 2005-08-02T12:15:54Z 422 202 2005-08-04T16:18:54Z 2 2020-02-15T06:59:44Z +11211 2005-08-02T12:16:48Z 1722 245 2005-08-03T10:40:48Z 1 2020-02-15T06:59:44Z +11212 2005-08-02T12:18:29Z 4007 343 2005-08-05T16:05:29Z 2 2020-02-15T06:59:44Z +11213 2005-08-02T12:18:35Z 1007 584 2005-08-05T08:44:35Z 2 2020-02-15T06:59:44Z +11214 2005-08-02T12:19:50Z 2722 407 2005-08-11T06:38:50Z 1 2020-02-15T06:59:44Z +11215 2005-08-02T12:20:42Z 379 197 2005-08-06T14:01:42Z 1 2020-02-15T06:59:44Z +11216 2005-08-02T12:23:43Z 1109 473 2005-08-03T13:19:43Z 1 2020-02-15T06:59:44Z +11217 2005-08-02T12:26:31Z 1201 417 2005-08-09T09:53:31Z 2 2020-02-15T06:59:44Z +11218 2005-08-02T12:29:12Z 1126 500 2005-08-10T16:13:12Z 2 2020-02-15T06:59:44Z +11219 2005-08-02T12:30:20Z 2889 461 2005-08-08T13:42:20Z 2 2020-02-15T06:59:44Z +11220 2005-08-02T12:31:41Z 3777 84 2005-08-05T08:23:41Z 2 2020-02-15T06:59:44Z +11221 2005-08-02T12:32:12Z 1689 146 2005-08-03T17:13:12Z 1 2020-02-15T06:59:44Z +11222 2005-08-02T12:32:28Z 1780 407 2005-08-11T18:15:28Z 2 2020-02-15T06:59:44Z +11223 2005-08-02T12:34:27Z 1994 597 2005-08-07T14:21:27Z 1 2020-02-15T06:59:44Z +11224 2005-08-02T12:40:38Z 3938 181 2005-08-04T10:02:38Z 2 2020-02-15T06:59:44Z +11225 2005-08-02T12:43:27Z 3721 159 2005-08-04T18:41:27Z 2 2020-02-15T06:59:44Z +11226 2005-08-02T12:47:30Z 79 282 2005-08-06T11:24:30Z 1 2020-02-15T06:59:44Z +11227 2005-08-02T12:48:05Z 1101 65 2005-08-11T14:08:05Z 1 2020-02-15T06:59:44Z +11228 2005-08-02T12:55:23Z 2561 144 2005-08-08T12:31:23Z 1 2020-02-15T06:59:44Z +11229 2005-08-02T12:56:37Z 941 332 2005-08-11T11:13:37Z 2 2020-02-15T06:59:44Z +11230 2005-08-02T12:59:08Z 1463 257 2005-08-04T13:42:08Z 1 2020-02-15T06:59:44Z +11231 2005-08-02T13:02:11Z 1100 90 2005-08-07T10:05:11Z 2 2020-02-15T06:59:44Z +11232 2005-08-02T13:04:12Z 971 8 2005-08-10T15:39:12Z 1 2020-02-15T06:59:44Z +11233 2005-08-02T13:06:11Z 2221 266 2005-08-08T15:02:11Z 1 2020-02-15T06:59:44Z +11234 2005-08-02T13:12:17Z 1020 27 2005-08-05T17:37:17Z 1 2020-02-15T06:59:44Z +11235 2005-08-02T13:13:21Z 2501 127 2005-08-03T07:17:21Z 1 2020-02-15T06:59:44Z +11236 2005-08-02T13:17:21Z 145 420 2005-08-09T09:53:21Z 2 2020-02-15T06:59:44Z +11237 2005-08-02T13:24:01Z 2668 426 2005-08-05T11:41:01Z 2 2020-02-15T06:59:44Z +11238 2005-08-02T13:25:50Z 2705 506 2005-08-08T19:12:50Z 2 2020-02-15T06:59:44Z +11239 2005-08-02T13:27:11Z 189 111 2005-08-03T14:36:11Z 1 2020-02-15T06:59:44Z +11240 2005-08-02T13:28:30Z 2170 597 2005-08-05T11:40:30Z 1 2020-02-15T06:59:44Z +11241 2005-08-02T13:29:24Z 3657 543 2005-08-11T11:36:24Z 2 2020-02-15T06:59:44Z +11242 2005-08-02T13:32:00Z 1041 434 2005-08-10T19:24:00Z 2 2020-02-15T06:59:44Z +11243 2005-08-02T13:32:48Z 2517 361 2005-08-11T18:55:48Z 1 2020-02-15T06:59:44Z +11244 2005-08-02T13:33:24Z 3423 142 2005-08-10T10:18:24Z 2 2020-02-15T06:59:44Z +11245 2005-08-02T13:33:50Z 2609 92 2005-08-04T10:20:50Z 2 2020-02-15T06:59:44Z +11246 2005-08-02T13:33:56Z 3577 550 2005-08-03T08:52:56Z 2 2020-02-15T06:59:44Z +11247 2005-08-02T13:34:08Z 1661 441 2005-08-06T16:23:08Z 2 2020-02-15T06:59:44Z +11248 2005-08-02T13:35:34Z 4139 312 2005-08-03T10:37:34Z 1 2020-02-15T06:59:44Z +11249 2005-08-02T13:35:40Z 3394 157 2005-08-07T11:22:40Z 1 2020-02-15T06:59:44Z +11250 2005-08-02T13:35:42Z 2223 279 2005-08-10T12:32:42Z 2 2020-02-15T06:59:44Z +11251 2005-08-02T13:40:49Z 2181 532 2005-08-09T14:16:49Z 2 2020-02-15T06:59:44Z +11252 2005-08-02T13:42:13Z 2410 337 2005-08-06T19:04:13Z 2 2020-02-15T06:59:44Z +11253 2005-08-02T13:42:44Z 2898 303 2005-08-09T17:06:44Z 2 2020-02-15T06:59:44Z +11254 2005-08-02T13:43:49Z 56 315 2005-08-08T13:16:49Z 1 2020-02-15T06:59:44Z +11255 2005-08-02T13:44:30Z 3393 569 2005-08-03T12:00:30Z 1 2020-02-15T06:59:44Z +11256 2005-08-02T13:44:53Z 2060 2 2005-08-04T16:39:53Z 1 2020-02-15T06:59:44Z +11257 2005-08-02T13:45:05Z 105 468 2005-08-11T16:37:05Z 1 2020-02-15T06:59:44Z +11258 2005-08-02T13:45:39Z 1576 242 2005-08-06T07:57:39Z 1 2020-02-15T06:59:44Z +11259 2005-08-02T13:46:30Z 896 330 2005-08-07T14:03:30Z 1 2020-02-15T06:59:44Z +11260 2005-08-02T13:52:19Z 4015 207 2005-08-06T08:13:19Z 2 2020-02-15T06:59:44Z +11261 2005-08-02T13:54:26Z 31 204 2005-08-10T19:04:26Z 2 2020-02-15T06:59:44Z +11262 2005-08-02T13:58:55Z 71 348 2005-08-05T18:09:55Z 2 2020-02-15T06:59:44Z +11263 2005-08-02T14:02:19Z 1189 421 2005-08-07T14:03:19Z 2 2020-02-15T06:59:44Z +11264 2005-08-02T14:05:18Z 3420 360 2005-08-10T08:46:18Z 2 2020-02-15T06:59:44Z +11265 2005-08-02T14:05:42Z 3870 531 2005-08-11T15:27:42Z 2 2020-02-15T06:59:44Z +11266 2005-08-02T14:07:35Z 3972 99 2005-08-04T13:31:35Z 1 2020-02-15T06:59:44Z +11267 2005-08-02T14:09:08Z 2045 244 2005-08-10T12:33:08Z 1 2020-02-15T06:59:44Z +11268 2005-08-02T14:10:39Z 3275 558 2005-08-04T14:35:39Z 1 2020-02-15T06:59:44Z +11269 2005-08-02T14:11:41Z 2398 297 2005-08-08T18:53:41Z 1 2020-02-15T06:59:44Z +11270 2005-08-02T14:18:07Z 1882 418 2005-08-03T08:20:07Z 1 2020-02-15T06:59:44Z +11271 2005-08-02T14:18:22Z 4323 93 2005-08-07T09:35:22Z 2 2020-02-15T06:59:44Z +11272 2005-08-02T14:20:27Z 4111 158 2005-08-07T12:24:27Z 2 2020-02-15T06:59:44Z +11273 2005-08-02T14:20:55Z 3383 541 2005-08-07T12:57:55Z 1 2020-02-15T06:59:44Z +11274 2005-08-02T14:24:08Z 1253 70 2005-08-11T14:56:08Z 1 2020-02-15T06:59:44Z +11275 2005-08-02T14:25:58Z 2838 464 2005-08-07T11:20:58Z 1 2020-02-15T06:59:44Z +11276 2005-08-02T14:28:46Z 4226 190 2005-08-04T14:00:46Z 1 2020-02-15T06:59:44Z +11277 2005-08-02T14:28:50Z 2050 68 2005-08-04T13:50:50Z 1 2020-02-15T06:59:44Z +11278 2005-08-02T14:29:43Z 961 143 2005-08-07T10:13:43Z 1 2020-02-15T06:59:44Z +11279 2005-08-02T14:30:03Z 151 125 2005-08-10T09:49:03Z 2 2020-02-15T06:59:44Z +11280 2005-08-02T14:34:33Z 1846 134 2005-08-08T15:40:33Z 2 2020-02-15T06:59:44Z +11281 2005-08-02T14:35:01Z 2210 137 2005-08-07T17:28:01Z 1 2020-02-15T06:59:44Z +11282 2005-08-02T14:35:03Z 1824 273 2005-08-03T16:02:03Z 2 2020-02-15T06:59:44Z +11283 2005-08-02T14:39:46Z 312 134 2005-08-05T10:19:46Z 2 2020-02-15T06:59:44Z +11284 2005-08-02T14:42:45Z 172 8 2005-08-04T11:55:45Z 2 2020-02-15T06:59:44Z +11285 2005-08-02T14:44:02Z 3849 585 2005-08-11T16:45:02Z 2 2020-02-15T06:59:44Z +11286 2005-08-02T14:44:22Z 1319 207 2005-08-10T09:01:22Z 2 2020-02-15T06:59:44Z +11287 2005-08-02T14:49:51Z 927 55 2005-08-09T09:19:51Z 2 2020-02-15T06:59:44Z +11288 2005-08-02T14:54:08Z 1478 298 2005-08-11T12:22:08Z 1 2020-02-15T06:59:44Z +11289 2005-08-02T14:55:00Z 2869 10 2005-08-11T13:57:00Z 1 2020-02-15T06:59:44Z +11290 2005-08-02T14:57:44Z 425 582 2005-08-09T19:36:44Z 2 2020-02-15T06:59:44Z +11291 2005-08-02T14:57:58Z 491 417 2005-08-11T09:04:58Z 2 2020-02-15T06:59:44Z +11292 2005-08-02T14:58:41Z 210 13 2005-08-06T14:38:41Z 2 2020-02-15T06:59:44Z +11293 2005-08-02T15:00:43Z 1514 475 2005-08-11T17:49:43Z 1 2020-02-15T06:59:44Z +11294 2005-08-02T15:08:27Z 855 411 2005-08-03T18:28:27Z 1 2020-02-15T06:59:44Z +11295 2005-08-02T15:10:06Z 423 67 2005-08-10T09:52:06Z 1 2020-02-15T06:59:44Z +11296 2005-08-02T15:15:27Z 247 154 2005-08-11T16:12:27Z 1 2020-02-15T06:59:44Z +11297 2005-08-02T15:22:47Z 2531 62 2005-08-11T18:45:47Z 1 2020-02-15T06:59:44Z +11298 2005-08-02T15:32:32Z 1663 35 2005-08-06T20:22:32Z 1 2020-02-15T06:59:44Z +11299 2005-08-02T15:36:52Z 3232 1 2005-08-10T16:40:52Z 2 2020-02-15T06:59:44Z +11300 2005-08-02T15:37:42Z 3032 552 2005-08-11T14:25:42Z 1 2020-02-15T06:59:44Z +11301 2005-08-02T15:37:59Z 676 502 2005-08-04T10:57:59Z 2 2020-02-15T06:59:44Z +11302 2005-08-02T15:38:03Z 1918 51 2005-08-09T10:33:03Z 2 2020-02-15T06:59:44Z +11303 2005-08-02T15:39:18Z 1817 417 2005-08-05T10:59:18Z 1 2020-02-15T06:59:44Z +11304 2005-08-02T15:40:10Z 2592 413 2005-08-06T16:12:10Z 2 2020-02-15T06:59:44Z +11305 2005-08-02T15:44:55Z 1690 341 2005-08-08T16:42:55Z 2 2020-02-15T06:59:44Z +11306 2005-08-02T15:45:10Z 13 247 2005-08-03T21:14:10Z 2 2020-02-15T06:59:44Z +11307 2005-08-02T15:48:08Z 1490 15 2005-08-06T20:33:08Z 2 2020-02-15T06:59:44Z +11308 2005-08-02T15:50:44Z 699 16 2005-08-05T11:38:44Z 2 2020-02-15T06:59:44Z +11309 2005-08-02T15:50:55Z 607 275 2005-08-09T18:28:55Z 1 2020-02-15T06:59:44Z +11310 2005-08-02T15:51:58Z 3601 415 2005-08-07T12:34:58Z 1 2020-02-15T06:59:44Z +11311 2005-08-02T15:53:48Z 204 197 2005-08-03T16:32:48Z 1 2020-02-15T06:59:44Z +11312 2005-08-02T15:56:51Z 1093 190 2005-08-07T20:56:51Z 2 2020-02-15T06:59:44Z +11313 2005-08-02T16:02:51Z 2689 419 2005-08-03T14:54:51Z 1 2020-02-15T06:59:44Z +11314 2005-08-02T16:04:08Z 2790 26 2005-08-04T18:47:08Z 1 2020-02-15T06:59:44Z +11315 2005-08-02T16:05:17Z 1116 13 2005-08-05T16:33:17Z 1 2020-02-15T06:59:44Z +11316 2005-08-02T16:07:49Z 521 108 2005-08-10T13:22:49Z 1 2020-02-15T06:59:44Z +11317 2005-08-02T16:08:52Z 1889 502 2005-08-08T21:12:52Z 1 2020-02-15T06:59:44Z +11318 2005-08-02T16:09:11Z 2386 532 2005-08-07T11:28:11Z 2 2020-02-15T06:59:44Z +11319 2005-08-02T16:10:09Z 4069 178 2005-08-09T11:21:09Z 2 2020-02-15T06:59:44Z +11320 2005-08-02T16:13:28Z 3362 550 2005-08-05T21:23:28Z 1 2020-02-15T06:59:44Z +11321 2005-08-02T16:15:07Z 205 266 2005-08-04T20:35:07Z 2 2020-02-15T06:59:44Z +11322 2005-08-02T16:23:17Z 761 418 2005-08-09T19:55:17Z 2 2020-02-15T06:59:44Z +11323 2005-08-02T16:29:57Z 3784 419 2005-08-06T16:01:57Z 1 2020-02-15T06:59:44Z +11324 2005-08-02T16:31:17Z 2900 540 2005-08-08T15:38:17Z 2 2020-02-15T06:59:44Z +11325 2005-08-02T16:33:11Z 4514 422 2005-08-08T13:42:11Z 1 2020-02-15T06:59:44Z +11326 2005-08-02T16:34:29Z 1762 530 2005-08-03T17:40:29Z 2 2020-02-15T06:59:44Z +11327 2005-08-02T16:40:47Z 773 361 2005-08-03T22:13:47Z 1 2020-02-15T06:59:44Z +11328 2005-08-02T16:42:38Z 2031 219 2005-08-04T21:02:38Z 1 2020-02-15T06:59:44Z +11329 2005-08-02T16:42:52Z 2677 399 2005-08-08T16:45:52Z 1 2020-02-15T06:59:44Z +11330 2005-08-02T16:45:33Z 4326 75 2005-08-04T15:15:33Z 2 2020-02-15T06:59:44Z +11331 2005-08-02T16:49:01Z 3789 568 2005-08-09T19:15:01Z 1 2020-02-15T06:59:44Z +11332 2005-08-02T16:52:57Z 2381 467 2005-08-04T14:13:57Z 1 2020-02-15T06:59:44Z +11333 2005-08-02T16:53:00Z 3335 225 2005-08-07T20:49:00Z 2 2020-02-15T06:59:44Z +11334 2005-08-02T16:53:20Z 1504 560 2005-08-11T20:47:20Z 1 2020-02-15T06:59:44Z +11335 2005-08-02T16:57:37Z 2968 157 2005-08-09T19:43:37Z 1 2020-02-15T06:59:44Z +11336 2005-08-02T16:58:56Z 1949 473 2005-08-06T16:56:56Z 1 2020-02-15T06:59:44Z +11337 2005-08-02T16:59:09Z 3428 366 2005-08-10T20:41:09Z 2 2020-02-15T06:59:44Z +11338 2005-08-02T17:00:12Z 3689 26 2005-08-03T18:54:12Z 1 2020-02-15T06:59:44Z +11339 2005-08-02T17:02:06Z 705 263 2005-08-08T21:12:06Z 1 2020-02-15T06:59:44Z +11340 2005-08-02T17:05:43Z 1403 366 2005-08-09T13:25:43Z 1 2020-02-15T06:59:44Z +11341 2005-08-02T17:09:24Z 3586 15 2005-08-09T19:48:24Z 2 2020-02-15T06:59:44Z +11342 2005-08-02T17:11:35Z 4251 179 2005-08-07T15:04:35Z 1 2020-02-15T06:59:44Z +11343 2005-08-02T17:12:30Z 564 466 2005-08-09T12:08:30Z 1 2020-02-15T06:59:44Z +11344 2005-08-02T17:13:26Z 365 38 2005-08-07T16:44:26Z 1 2020-02-15T06:59:44Z +11345 2005-08-02T17:14:19Z 1895 405 2005-08-11T14:02:19Z 2 2020-02-15T06:59:44Z +11346 2005-08-02T17:15:38Z 584 100 2005-08-04T13:31:38Z 2 2020-02-15T06:59:44Z +11347 2005-08-02T17:18:07Z 195 217 2005-08-05T12:30:07Z 1 2020-02-15T06:59:44Z +11348 2005-08-02T17:18:38Z 1704 389 2005-08-06T16:11:38Z 2 2020-02-15T06:59:44Z +11349 2005-08-02T17:21:49Z 1871 73 2005-08-06T18:40:49Z 1 2020-02-15T06:59:44Z +11350 2005-08-02T17:22:59Z 1265 598 2005-08-09T19:56:59Z 2 2020-02-15T06:59:44Z +11351 2005-08-02T17:28:07Z 242 198 2005-08-09T21:55:07Z 1 2020-02-15T06:59:44Z +11352 2005-08-02T17:29:39Z 2760 546 2005-08-10T15:31:39Z 1 2020-02-15T06:59:44Z +11353 2005-08-02T17:34:45Z 1729 444 2005-08-09T16:01:45Z 1 2020-02-15T06:59:44Z +11354 2005-08-02T17:35:10Z 1887 569 2005-08-09T12:07:10Z 2 2020-02-15T06:59:44Z +11355 2005-08-02T17:37:43Z 2673 185 2005-08-05T19:59:43Z 1 2020-02-15T06:59:44Z +11356 2005-08-02T17:42:40Z 303 200 2005-08-11T23:29:40Z 1 2020-02-15T06:59:44Z +11357 2005-08-02T17:42:49Z 2644 148 2005-08-11T18:14:49Z 1 2020-02-15T06:59:44Z +11358 2005-08-02T17:45:02Z 2361 56 2005-08-11T18:16:02Z 1 2020-02-15T06:59:44Z +11359 2005-08-02T17:45:55Z 1648 466 2005-08-10T20:53:55Z 2 2020-02-15T06:59:44Z +11360 2005-08-02T17:46:04Z 1750 66 2005-08-04T21:02:04Z 2 2020-02-15T06:59:44Z +11361 2005-08-02T17:46:34Z 1124 547 2005-08-03T15:21:34Z 1 2020-02-15T06:59:44Z +11362 2005-08-02T17:47:25Z 2628 331 2005-08-07T20:14:25Z 1 2020-02-15T06:59:44Z +11363 2005-08-02T17:48:39Z 3190 274 2005-08-05T17:20:39Z 1 2020-02-15T06:59:44Z +11364 2005-08-02T17:53:36Z 4515 44 2005-08-03T14:16:36Z 1 2020-02-15T06:59:44Z +11365 2005-08-02T18:00:09Z 1151 508 2005-08-04T13:40:09Z 2 2020-02-15T06:59:44Z +11366 2005-08-02T18:01:25Z 3583 280 2005-08-11T15:02:25Z 1 2020-02-15T06:59:44Z +11367 2005-08-02T18:01:38Z 1440 1 2005-08-04T13:19:38Z 1 2020-02-15T06:59:44Z +11368 2005-08-02T18:03:05Z 866 153 2005-08-07T20:40:05Z 1 2020-02-15T06:59:44Z +11369 2005-08-02T18:04:41Z 2480 480 2005-08-09T18:41:41Z 1 2020-02-15T06:59:44Z +11370 2005-08-02T18:06:01Z 3077 146 2005-08-04T15:10:01Z 1 2020-02-15T06:59:44Z +11371 2005-08-02T18:07:36Z 324 561 2005-08-06T17:52:36Z 1 2020-02-15T06:59:44Z +11372 2005-08-02T18:10:50Z 796 327 2005-08-07T17:58:50Z 1 2020-02-15T06:59:44Z +11373 2005-08-02T18:14:12Z 181 267 2005-08-06T23:37:12Z 1 2020-02-15T06:59:44Z +11374 2005-08-02T18:14:54Z 2805 424 2005-08-04T18:22:54Z 1 2020-02-15T06:59:44Z +11375 2005-08-02T18:14:56Z 1064 346 2005-08-08T23:29:56Z 1 2020-02-15T06:59:44Z +11376 2005-08-02T18:16:00Z 2530 177 2005-08-11T23:38:00Z 2 2020-02-15T06:59:44Z +11377 2005-08-02T18:16:47Z 3334 119 2005-08-08T13:46:47Z 1 2020-02-15T06:59:44Z +11378 2005-08-02T18:16:52Z 3824 188 2005-08-03T14:25:52Z 1 2020-02-15T06:59:44Z +11379 2005-08-02T18:16:55Z 251 61 2005-08-07T18:12:55Z 1 2020-02-15T06:59:44Z +11380 2005-08-02T18:17:32Z 1046 551 2005-08-03T19:26:32Z 2 2020-02-15T06:59:44Z +11381 2005-08-02T18:19:29Z 993 451 2005-08-08T20:39:29Z 2 2020-02-15T06:59:44Z +11382 2005-08-02T18:20:52Z 3848 407 2005-08-07T17:06:52Z 1 2020-02-15T06:59:44Z +11383 2005-08-02T18:22:05Z 257 445 2005-08-11T17:18:05Z 1 2020-02-15T06:59:44Z +11384 2005-08-02T18:23:01Z 2840 225 2005-08-05T17:59:01Z 1 2020-02-15T06:59:44Z +11385 2005-08-02T18:23:11Z 2478 192 2005-08-06T12:37:11Z 1 2020-02-15T06:59:44Z +11386 2005-08-02T18:24:03Z 519 183 2005-08-06T21:22:03Z 1 2020-02-15T06:59:44Z +11387 2005-08-02T18:32:38Z 2491 481 2005-08-07T19:08:38Z 2 2020-02-15T06:59:44Z +11388 2005-08-02T18:35:55Z 477 369 2005-08-09T21:56:55Z 1 2020-02-15T06:59:44Z +11389 2005-08-02T18:39:12Z 3267 270 2005-08-03T23:23:12Z 2 2020-02-15T06:59:44Z +11390 2005-08-02T18:39:16Z 3135 294 2005-08-04T21:43:16Z 1 2020-02-15T06:59:44Z +11391 2005-08-02T18:40:12Z 2039 403 2005-08-10T15:55:12Z 1 2020-02-15T06:59:44Z +11392 2005-08-02T18:41:11Z 261 146 2005-08-11T21:41:11Z 1 2020-02-15T06:59:44Z +11393 2005-08-02T18:44:29Z 1033 501 2005-08-11T23:58:29Z 1 2020-02-15T06:59:44Z +11394 2005-08-02T18:44:45Z 2087 257 2005-08-06T22:51:45Z 2 2020-02-15T06:59:44Z +11395 2005-08-02T18:47:44Z 4234 225 2005-08-10T17:07:44Z 2 2020-02-15T06:59:44Z +11396 2005-08-02T18:48:29Z 1155 59 2005-08-04T16:05:29Z 2 2020-02-15T06:59:44Z +11397 2005-08-02T18:53:14Z 2566 470 2005-08-09T18:09:14Z 1 2020-02-15T06:59:44Z +11398 2005-08-02T18:55:15Z 3952 6 2005-08-10T19:50:15Z 2 2020-02-15T06:59:44Z +11399 2005-08-02T18:56:28Z 2094 565 2005-08-11T23:19:28Z 1 2020-02-15T06:59:44Z +11400 2005-08-02T19:00:52Z 3150 9 2005-08-09T19:45:52Z 2 2020-02-15T06:59:44Z +11401 2005-08-02T19:05:06Z 1799 544 2005-08-09T22:34:06Z 1 2020-02-15T06:59:44Z +11402 2005-08-02T19:07:21Z 3291 561 2005-08-07T20:59:21Z 1 2020-02-15T06:59:44Z +11403 2005-08-02T19:10:21Z 4072 587 2005-08-04T00:44:21Z 2 2020-02-15T06:59:44Z +11404 2005-08-02T19:12:40Z 3285 60 2005-08-11T22:38:40Z 2 2020-02-15T06:59:44Z +11405 2005-08-02T19:13:39Z 418 10 2005-08-07T19:19:39Z 2 2020-02-15T06:59:44Z +11406 2005-08-02T19:16:10Z 2502 525 2005-08-04T20:51:10Z 2 2020-02-15T06:59:44Z +11407 2005-08-02T19:18:43Z 3437 513 2005-08-08T16:15:43Z 2 2020-02-15T06:59:44Z +11408 2005-08-02T19:25:13Z 1779 83 2005-08-06T17:12:13Z 1 2020-02-15T06:59:44Z +11409 2005-08-02T19:26:51Z 3691 418 2005-08-07T19:55:51Z 1 2020-02-15T06:59:44Z +11410 2005-08-02T19:29:01Z 692 592 2005-08-11T16:50:01Z 1 2020-02-15T06:59:44Z +11411 2005-08-02T19:29:47Z 1497 141 2005-08-09T16:27:47Z 2 2020-02-15T06:59:44Z +11412 2005-08-02T19:32:51Z 2271 141 2005-08-11T22:16:51Z 1 2020-02-15T06:59:44Z +11413 2005-08-02T19:35:19Z 1115 297 2005-08-05T21:33:19Z 2 2020-02-15T06:59:44Z +11414 2005-08-02T19:43:07Z 1772 353 2005-08-07T15:22:07Z 2 2020-02-15T06:59:44Z +11415 2005-08-02T19:43:38Z 2197 572 2005-08-10T15:13:38Z 1 2020-02-15T06:59:44Z +11416 2005-08-02T19:44:04Z 1848 58 2005-08-11T15:30:04Z 1 2020-02-15T06:59:44Z +11417 2005-08-02T19:44:46Z 3083 437 2005-08-11T21:43:46Z 2 2020-02-15T06:59:44Z +11418 2005-08-02T19:45:33Z 4490 91 2005-08-06T17:40:33Z 1 2020-02-15T06:59:44Z +11419 2005-08-02T19:46:38Z 514 444 2005-08-11T14:49:38Z 1 2020-02-15T06:59:44Z +11420 2005-08-02T19:47:56Z 3928 158 2005-08-05T21:48:56Z 2 2020-02-15T06:59:44Z +11421 2005-08-02T19:51:53Z 3361 473 2005-08-12T00:50:53Z 2 2020-02-15T06:59:44Z +11422 2005-08-02T19:52:08Z 342 72 2005-08-11T18:40:08Z 2 2020-02-15T06:59:44Z +11423 2005-08-02T19:57:13Z 3431 241 2005-08-06T00:54:13Z 2 2020-02-15T06:59:44Z +11424 2005-08-02T19:57:42Z 1030 84 2005-08-10T16:57:42Z 2 2020-02-15T06:59:44Z +11425 2005-08-02T19:58:48Z 989 419 2005-08-03T19:30:48Z 2 2020-02-15T06:59:44Z +11426 2005-08-02T20:00:09Z 130 572 2005-08-09T01:30:09Z 2 2020-02-15T06:59:44Z +11427 2005-08-02T20:02:39Z 3287 403 2005-08-04T22:26:39Z 2 2020-02-15T06:59:44Z +11428 2005-08-02T20:03:10Z 722 326 2005-08-04T01:55:10Z 1 2020-02-15T06:59:44Z +11429 2005-08-02T20:03:52Z 1098 348 2005-08-10T16:38:52Z 2 2020-02-15T06:59:44Z +11430 2005-08-02T20:04:36Z 2258 140 2005-08-08T19:43:36Z 1 2020-02-15T06:59:44Z +11431 2005-08-02T20:05:16Z 1409 271 2005-08-04T00:05:16Z 2 2020-02-15T06:59:44Z +11432 2005-08-02T20:10:01Z 959 540 2005-08-07T01:28:01Z 1 2020-02-15T06:59:44Z +11433 2005-08-02T20:13:10Z 1 518 2005-08-11T21:35:10Z 1 2020-02-15T06:59:44Z +11434 2005-08-02T20:13:14Z 3154 391 2005-08-05T15:01:14Z 1 2020-02-15T06:59:44Z +11435 2005-08-02T20:14:23Z 1625 502 2005-08-05T20:40:23Z 1 2020-02-15T06:59:44Z +11436 2005-08-02T20:16:06Z 3834 106 2005-08-05T20:40:06Z 2 2020-02-15T06:59:44Z +11437 2005-08-02T20:20:06Z 2679 225 2005-08-05T22:17:06Z 2 2020-02-15T06:59:44Z +11438 2005-08-02T20:21:08Z 1040 372 2005-08-10T22:12:08Z 1 2020-02-15T06:59:44Z +11439 2005-08-02T20:22:45Z 2897 18 2005-08-04T18:30:45Z 1 2020-02-15T06:59:44Z +11440 2005-08-02T20:24:02Z 2727 306 2005-08-07T16:42:02Z 2 2020-02-15T06:59:44Z +11441 2005-08-02T20:25:41Z 1027 389 2005-08-05T00:05:41Z 2 2020-02-15T06:59:44Z +11442 2005-08-02T20:26:19Z 2598 208 2005-08-07T00:33:19Z 2 2020-02-15T06:59:44Z +11443 2005-08-02T20:29:30Z 1291 581 2005-08-07T01:08:30Z 2 2020-02-15T06:59:44Z +11444 2005-08-02T20:32:55Z 1419 28 2005-08-08T23:21:55Z 2 2020-02-15T06:59:44Z +11445 2005-08-02T20:33:35Z 3340 108 2005-08-08T16:02:35Z 2 2020-02-15T06:59:44Z +11446 2005-08-02T20:33:37Z 748 342 2005-08-03T18:22:37Z 1 2020-02-15T06:59:44Z +11447 2005-08-02T20:36:25Z 3868 508 2005-08-07T18:52:25Z 1 2020-02-15T06:59:44Z +11448 2005-08-02T20:44:33Z 1185 496 2005-08-05T22:58:33Z 2 2020-02-15T06:59:44Z +11449 2005-08-02T20:44:43Z 3279 443 2005-08-07T23:47:43Z 2 2020-02-15T06:59:44Z +11450 2005-08-02T20:45:54Z 2009 214 2005-08-08T17:17:54Z 2 2020-02-15T06:59:44Z +11451 2005-08-02T20:45:56Z 776 515 2005-08-06T21:42:56Z 2 2020-02-15T06:59:44Z +11452 2005-08-02T20:59:52Z 1245 35 2005-08-12T01:16:52Z 1 2020-02-15T06:59:44Z +11453 2005-08-02T21:00:05Z 4578 84 2005-08-08T22:03:05Z 2 2020-02-15T06:59:44Z +11454 2005-08-02T21:04:39Z 2901 199 2005-08-05T19:03:39Z 1 2020-02-15T06:59:44Z +11455 2005-08-02T21:07:06Z 2000 498 2005-08-12T01:21:06Z 1 2020-02-15T06:59:44Z +11456 2005-08-02T21:14:04Z 3638 322 2005-08-07T19:49:04Z 2 2020-02-15T06:59:44Z +11457 2005-08-02T21:14:16Z 1642 379 2005-08-10T02:39:16Z 2 2020-02-15T06:59:44Z +11458 2005-08-02T21:24:02Z 3514 575 2005-08-04T01:32:02Z 2 2020-02-15T06:59:44Z +11459 2005-08-02T21:25:25Z 3730 392 2005-08-04T19:57:25Z 2 2020-02-15T06:59:44Z +11460 2005-08-02T21:28:03Z 4113 403 2005-08-08T18:24:03Z 1 2020-02-15T06:59:44Z +11461 2005-08-02T21:35:00Z 4343 65 2005-08-05T01:34:00Z 1 2020-02-15T06:59:44Z +11462 2005-08-02T21:36:46Z 167 268 2005-08-10T01:48:46Z 1 2020-02-15T06:59:44Z +11463 2005-08-02T21:37:36Z 1944 138 2005-08-08T03:11:36Z 2 2020-02-15T06:59:44Z +11464 2005-08-02T21:42:07Z 538 577 2005-08-03T21:44:07Z 2 2020-02-15T06:59:44Z +11465 2005-08-02T21:43:52Z 2190 447 2005-08-10T22:24:52Z 1 2020-02-15T06:59:44Z +11466 2005-08-02T21:46:46Z 3363 556 2005-08-06T01:42:46Z 1 2020-02-15T06:59:44Z +11467 2005-08-02T21:47:07Z 246 117 2005-08-09T00:50:07Z 1 2020-02-15T06:59:44Z +11468 2005-08-02T21:47:26Z 3168 413 2005-08-05T02:30:26Z 2 2020-02-15T06:59:44Z +11469 2005-08-02T21:48:09Z 230 77 2005-08-06T18:37:09Z 1 2020-02-15T06:59:44Z +11470 2005-08-02T21:48:28Z 2379 346 2005-08-05T23:58:28Z 2 2020-02-15T06:59:44Z +11471 2005-08-02T21:49:03Z 3378 355 2005-08-08T00:17:03Z 1 2020-02-15T06:59:44Z +11472 2005-08-02T21:49:06Z 1829 410 2005-08-11T20:17:06Z 1 2020-02-15T06:59:44Z +11473 2005-08-02T21:52:03Z 620 536 2005-08-09T02:01:03Z 1 2020-02-15T06:59:44Z +11474 2005-08-02T21:53:08Z 574 214 2005-08-05T22:36:08Z 1 2020-02-15T06:59:44Z +11475 2005-08-02T21:55:09Z 3687 194 2005-08-09T20:28:09Z 2 2020-02-15T06:59:44Z +11476 2005-08-02T22:03:47Z 724 144 2005-08-09T02:19:47Z 1 2020-02-15T06:59:44Z +11477 2005-08-02T22:09:01Z 1671 47 2005-08-07T03:46:01Z 2 2020-02-15T06:59:44Z +11478 2005-08-02T22:09:05Z 3932 197 2005-08-04T18:02:05Z 1 2020-02-15T06:59:44Z +11479 2005-08-02T22:18:13Z 4077 237 2005-08-12T00:43:13Z 1 2020-02-15T06:59:44Z +11480 2005-08-02T22:18:24Z 4161 14 2005-08-04T21:22:24Z 2 2020-02-15T06:59:44Z +11481 2005-08-02T22:18:41Z 4028 234 2005-08-09T23:43:41Z 2 2020-02-15T06:59:44Z +11482 2005-08-02T22:24:31Z 1400 134 2005-08-04T01:48:31Z 1 2020-02-15T06:59:44Z +11483 2005-08-02T22:28:22Z 1586 45 2005-08-11T18:06:22Z 1 2020-02-15T06:59:44Z +11484 2005-08-02T22:28:23Z 330 165 2005-08-04T20:51:23Z 2 2020-02-15T06:59:44Z +11485 2005-08-02T22:33:25Z 1872 326 2005-08-04T23:26:25Z 2 2020-02-15T06:59:44Z +11486 2005-08-02T22:34:06Z 1610 236 2005-08-09T00:46:06Z 2 2020-02-15T06:59:44Z +11487 2005-08-02T22:35:05Z 734 239 2005-08-08T00:54:05Z 2 2020-02-15T06:59:44Z +11488 2005-08-02T22:35:15Z 2520 45 2005-08-09T00:28:15Z 2 2020-02-15T06:59:44Z +11489 2005-08-02T22:35:28Z 3001 474 2005-08-04T00:29:28Z 2 2020-02-15T06:59:44Z +11490 2005-08-02T22:36:00Z 1178 156 2005-08-09T16:36:00Z 1 2020-02-15T06:59:44Z +11491 2005-08-02T22:44:50Z 268 307 2005-08-11T01:55:50Z 2 2020-02-15T06:59:44Z +11492 2005-08-02T22:46:47Z 4037 349 2005-08-09T19:54:47Z 2 2020-02-15T06:59:44Z +11493 2005-08-02T22:47:00Z 3375 124 2005-08-10T20:53:00Z 2 2020-02-15T06:59:44Z +11494 2005-08-02T22:51:23Z 3994 579 2005-08-09T01:52:23Z 1 2020-02-15T06:59:44Z +11495 2005-08-16T22:51:20Z 1265 247 2005-08-23T00:44:20Z 1 2020-02-15T06:59:44Z +11496 2006-02-14T15:16:03Z 2047 155 1 2020-02-15T06:59:44Z +11497 2005-08-16T22:52:30Z 436 12 2005-08-21T19:52:30Z 1 2020-02-15T06:59:44Z +11498 2005-08-16T22:52:54Z 487 482 2005-08-25T03:27:54Z 2 2020-02-15T06:59:44Z +11499 2005-08-16T22:54:12Z 3857 172 2005-08-24T03:37:12Z 2 2020-02-15T06:59:44Z +11500 2005-08-16T23:01:22Z 4003 584 2005-08-24T22:54:22Z 1 2020-02-15T06:59:44Z +11501 2005-08-16T23:04:53Z 2147 23 2005-08-19T20:57:53Z 2 2020-02-15T06:59:44Z +11502 2005-08-16T23:06:30Z 4470 11 2005-08-19T03:49:30Z 1 2020-02-15T06:59:44Z +11503 2005-08-16T23:10:34Z 1496 526 2005-08-25T03:55:34Z 1 2020-02-15T06:59:44Z +11504 2005-08-16T23:16:46Z 2132 350 2005-08-18T20:49:46Z 2 2020-02-15T06:59:44Z +11505 2005-08-16T23:18:47Z 3344 34 2005-08-23T19:52:47Z 2 2020-02-15T06:59:44Z +11506 2005-08-16T23:25:48Z 1529 565 2005-08-22T18:17:48Z 1 2020-02-15T06:59:44Z +11507 2005-08-16T23:26:43Z 4197 236 2005-08-24T22:48:43Z 2 2020-02-15T06:59:44Z +11508 2005-08-16T23:27:36Z 2688 19 2005-08-25T01:34:36Z 2 2020-02-15T06:59:44Z +11509 2005-08-16T23:29:53Z 2750 273 2005-08-19T02:09:53Z 1 2020-02-15T06:59:44Z +11510 2005-08-16T23:30:07Z 2997 400 2005-08-25T17:35:07Z 1 2020-02-15T06:59:44Z +11511 2005-08-16T23:39:59Z 2127 397 2005-08-18T18:04:59Z 1 2020-02-15T06:59:44Z +11512 2005-08-16T23:51:06Z 1248 373 2005-08-26T02:06:06Z 2 2020-02-15T06:59:44Z +11513 2005-08-16T23:51:33Z 4473 499 2005-08-24T01:37:33Z 2 2020-02-15T06:59:44Z +11514 2005-08-16T23:53:10Z 4240 423 2005-08-23T22:04:10Z 1 2020-02-15T06:59:44Z +11515 2005-08-16T23:54:34Z 1053 279 2005-08-21T19:00:34Z 1 2020-02-15T06:59:44Z +11516 2005-08-16T23:54:47Z 1860 90 2005-08-17T20:05:47Z 1 2020-02-15T06:59:44Z +11517 2005-08-16T23:56:28Z 4266 280 2005-08-21T22:40:28Z 1 2020-02-15T06:59:44Z +11518 2005-08-16T23:59:49Z 3297 407 2005-08-17T22:51:49Z 2 2020-02-15T06:59:44Z +11519 2005-08-17T00:01:27Z 1034 381 2005-08-19T04:54:27Z 2 2020-02-15T06:59:44Z +11520 2005-08-17T00:04:28Z 3536 119 2005-08-26T02:03:28Z 1 2020-02-15T06:59:44Z +11521 2005-08-17T00:04:54Z 463 229 2005-08-21T00:57:54Z 1 2020-02-15T06:59:44Z +11522 2005-08-17T00:05:05Z 2033 599 2005-08-24T04:56:05Z 1 2020-02-15T06:59:44Z +11523 2005-08-17T00:10:10Z 1329 421 2005-08-24T22:39:10Z 1 2020-02-15T06:59:44Z +11524 2005-08-17T00:10:55Z 317 533 2005-08-23T05:30:55Z 1 2020-02-15T06:59:44Z +11525 2005-08-17T00:15:31Z 1107 174 2005-08-20T21:14:31Z 1 2020-02-15T06:59:44Z +11526 2005-08-17T00:17:38Z 2419 572 2005-08-18T03:59:38Z 2 2020-02-15T06:59:44Z +11527 2005-08-17T00:25:06Z 162 264 2005-08-22T21:13:06Z 1 2020-02-15T06:59:44Z +11528 2005-08-17T00:27:23Z 893 14 2005-08-22T06:12:23Z 2 2020-02-15T06:59:44Z +11529 2005-08-17T00:28:01Z 3071 4 2005-08-19T04:47:01Z 2 2020-02-15T06:59:44Z +11530 2005-08-17T00:29:00Z 365 400 2005-08-22T03:22:00Z 1 2020-02-15T06:59:44Z +11531 2005-08-17T00:30:04Z 1817 278 2005-08-20T01:12:04Z 2 2020-02-15T06:59:44Z +11532 2005-08-17T00:34:14Z 1947 413 2005-08-22T19:37:14Z 2 2020-02-15T06:59:44Z +11533 2005-08-17T00:34:53Z 4252 264 2005-08-22T06:10:53Z 1 2020-02-15T06:59:44Z +11534 2005-08-17T00:35:27Z 2414 144 2005-08-24T01:36:27Z 1 2020-02-15T06:59:44Z +11535 2005-08-17T00:39:54Z 1649 356 2005-08-24T20:46:54Z 2 2020-02-15T06:59:44Z +11536 2005-08-17T00:40:03Z 2735 428 2005-08-21T19:11:03Z 1 2020-02-15T06:59:44Z +11537 2005-08-17T00:41:08Z 190 474 2005-08-19T00:25:08Z 2 2020-02-15T06:59:44Z +11538 2005-08-17T00:44:04Z 554 431 2005-08-18T03:43:04Z 2 2020-02-15T06:59:44Z +11539 2005-08-17T00:45:41Z 2064 264 2005-08-19T06:03:41Z 1 2020-02-15T06:59:44Z +11540 2005-08-17T00:48:03Z 3385 370 2005-08-25T03:46:03Z 1 2020-02-15T06:59:44Z +11541 2006-02-14T15:16:03Z 2026 335 1 2020-02-15T06:59:44Z +11542 2005-08-17T00:51:32Z 2155 7 2005-08-24T20:29:32Z 2 2020-02-15T06:59:44Z +11543 2005-08-17T00:54:28Z 2860 238 2005-08-25T04:31:28Z 2 2020-02-15T06:59:44Z +11544 2005-08-17T00:55:07Z 836 439 2005-08-22T19:25:07Z 1 2020-02-15T06:59:44Z +11545 2005-08-17T00:56:06Z 3198 257 2005-08-25T22:47:06Z 1 2020-02-15T06:59:44Z +11546 2005-08-17T00:57:36Z 2522 24 2005-08-18T23:16:36Z 1 2020-02-15T06:59:44Z +11547 2005-08-17T00:59:24Z 737 114 2005-08-20T04:03:24Z 2 2020-02-15T06:59:44Z +11548 2005-08-17T00:59:47Z 480 323 2005-08-22T05:09:47Z 1 2020-02-15T06:59:44Z +11549 2005-08-17T01:01:48Z 945 402 2005-08-19T21:24:48Z 2 2020-02-15T06:59:44Z +11550 2005-08-17T01:02:06Z 2972 339 2005-08-22T21:44:06Z 1 2020-02-15T06:59:44Z +11551 2005-08-17T01:03:49Z 3356 168 2005-08-18T22:31:49Z 1 2020-02-15T06:59:44Z +11552 2005-08-17T01:04:29Z 1143 230 2005-08-23T23:07:29Z 1 2020-02-15T06:59:44Z +11553 2005-08-17T01:04:31Z 3317 360 2005-08-24T00:44:31Z 1 2020-02-15T06:59:44Z +11554 2005-08-17T01:05:17Z 2212 460 2005-08-20T06:20:17Z 2 2020-02-15T06:59:44Z +11555 2005-08-17T01:08:59Z 2569 372 2005-08-18T06:09:59Z 2 2020-02-15T06:59:44Z +11556 2005-08-17T01:11:53Z 373 9 2005-08-18T23:41:53Z 1 2020-02-15T06:59:44Z +11557 2005-08-17T01:19:20Z 2376 416 2005-08-24T02:25:20Z 1 2020-02-15T06:59:44Z +11558 2005-08-17T01:19:52Z 1681 403 2005-08-19T00:47:52Z 2 2020-02-15T06:59:44Z +11559 2005-08-17T01:20:26Z 1812 385 2005-08-24T03:11:26Z 1 2020-02-15T06:59:44Z +11560 2005-08-17T01:20:30Z 2316 320 2005-08-18T04:29:30Z 2 2020-02-15T06:59:44Z +11561 2005-08-17T01:23:09Z 189 149 2005-08-23T21:02:09Z 2 2020-02-15T06:59:44Z +11562 2005-08-17T01:23:39Z 2992 424 2005-08-26T06:16:39Z 1 2020-02-15T06:59:44Z +11563 2006-02-14T15:16:03Z 1545 83 1 2020-02-15T06:59:44Z +11564 2005-08-17T01:27:49Z 2237 332 2005-08-19T22:07:49Z 1 2020-02-15T06:59:44Z +11565 2005-08-17T01:28:05Z 173 83 2005-08-23T23:33:05Z 2 2020-02-15T06:59:44Z +11566 2005-08-17T01:28:35Z 4020 520 2005-08-20T22:42:35Z 1 2020-02-15T06:59:44Z +11567 2005-08-17T01:28:43Z 567 558 2005-08-24T20:20:43Z 2 2020-02-15T06:59:44Z +11568 2005-08-17T01:30:01Z 183 342 2005-08-18T22:21:01Z 2 2020-02-15T06:59:44Z +11569 2005-08-17T01:31:04Z 2592 504 2005-08-24T03:36:04Z 2 2020-02-15T06:59:44Z +11570 2005-08-17T01:34:32Z 2466 343 2005-08-24T05:47:32Z 1 2020-02-15T06:59:44Z +11571 2005-08-17T01:37:51Z 203 296 2005-08-17T20:30:51Z 1 2020-02-15T06:59:44Z +11572 2005-08-17T01:37:55Z 3512 515 2005-08-19T06:22:55Z 2 2020-02-15T06:59:44Z +11573 2005-08-17T01:38:18Z 639 146 2005-08-19T05:06:18Z 2 2020-02-15T06:59:44Z +11574 2005-08-17T01:38:19Z 3596 277 2005-08-18T20:30:19Z 2 2020-02-15T06:59:44Z +11575 2005-08-17T01:50:26Z 1725 319 2005-08-18T00:43:26Z 1 2020-02-15T06:59:44Z +11576 2005-08-17T01:53:20Z 327 293 2005-08-19T00:15:20Z 1 2020-02-15T06:59:44Z +11577 2006-02-14T15:16:03Z 4106 219 2 2020-02-15T06:59:44Z +11578 2005-08-17T01:54:13Z 192 590 2005-08-26T02:00:13Z 2 2020-02-15T06:59:44Z +11579 2005-08-17T01:57:49Z 4256 356 2005-08-22T02:42:49Z 1 2020-02-15T06:59:44Z +11580 2005-08-17T01:59:07Z 1346 436 2005-08-21T06:18:07Z 2 2020-02-15T06:59:44Z +11581 2005-08-17T02:03:02Z 1249 231 2005-08-24T03:53:02Z 2 2020-02-15T06:59:44Z +11582 2005-08-17T02:03:49Z 2115 339 2005-08-24T03:29:49Z 1 2020-02-15T06:59:44Z +11583 2005-08-17T02:08:13Z 133 542 2005-08-20T23:13:13Z 2 2020-02-15T06:59:44Z +11584 2005-08-17T02:13:26Z 3906 479 2005-08-22T01:24:26Z 2 2020-02-15T06:59:44Z +11585 2005-08-17T02:14:36Z 753 297 2005-08-20T07:37:36Z 2 2020-02-15T06:59:44Z +11586 2005-08-17T02:20:42Z 3140 465 2005-08-26T05:01:42Z 1 2020-02-15T06:59:44Z +11587 2005-08-17T02:21:03Z 1319 156 2005-08-25T21:02:03Z 2 2020-02-15T06:59:44Z +11588 2005-08-17T02:26:23Z 2480 565 2005-08-22T02:32:23Z 1 2020-02-15T06:59:44Z +11589 2005-08-17T02:28:22Z 3480 554 2005-08-25T00:08:22Z 1 2020-02-15T06:59:44Z +11590 2005-08-17T02:28:33Z 3600 491 2005-08-20T03:13:33Z 1 2020-02-15T06:59:44Z +11591 2005-08-17T02:29:41Z 1670 6 2005-08-23T20:47:41Z 1 2020-02-15T06:59:44Z +11592 2005-08-17T02:36:04Z 720 383 2005-08-19T00:31:04Z 1 2020-02-15T06:59:44Z +11593 2006-02-14T15:16:03Z 817 99 1 2020-02-15T06:59:44Z +11594 2005-08-17T02:47:02Z 319 198 2005-08-22T05:14:02Z 2 2020-02-15T06:59:44Z +11595 2005-08-17T02:53:14Z 466 350 2005-08-26T02:05:14Z 1 2020-02-15T06:59:44Z +11596 2005-08-17T02:53:55Z 1674 290 2005-08-26T02:19:55Z 1 2020-02-15T06:59:44Z +11597 2005-08-17T03:02:56Z 4073 272 2005-08-26T04:47:56Z 1 2020-02-15T06:59:44Z +11598 2005-08-17T03:03:07Z 1949 319 2005-08-22T21:05:07Z 2 2020-02-15T06:59:44Z +11599 2005-08-17T03:08:10Z 3749 112 2005-08-25T05:01:10Z 2 2020-02-15T06:59:44Z +11600 2005-08-17T03:12:04Z 1978 400 2005-08-23T07:10:04Z 1 2020-02-15T06:59:44Z +11601 2005-08-17T03:14:47Z 1098 471 2005-08-20T00:21:47Z 2 2020-02-15T06:59:44Z +11602 2005-08-17T03:21:19Z 2082 391 2005-08-19T05:23:19Z 1 2020-02-15T06:59:44Z +11603 2005-08-17T03:22:10Z 3910 406 2005-08-18T06:48:10Z 1 2020-02-15T06:59:44Z +11604 2005-08-17T03:28:27Z 1820 388 2005-08-19T05:38:27Z 2 2020-02-15T06:59:44Z +11605 2005-08-17T03:30:57Z 1292 455 2005-08-24T07:02:57Z 2 2020-02-15T06:59:44Z +11606 2005-08-17T03:32:43Z 4138 499 2005-08-18T04:30:43Z 1 2020-02-15T06:59:44Z +11607 2005-08-17T03:36:06Z 4345 242 2005-08-20T01:06:06Z 1 2020-02-15T06:59:44Z +11608 2005-08-17T03:36:52Z 1673 448 2005-08-25T07:17:52Z 2 2020-02-15T06:59:44Z +11609 2005-08-17T03:41:11Z 351 73 2005-08-25T01:30:11Z 2 2020-02-15T06:59:44Z +11610 2005-08-17T03:43:37Z 3048 275 2005-08-20T22:14:37Z 1 2020-02-15T06:59:44Z +11611 2006-02-14T15:16:03Z 1857 192 2 2020-02-15T06:59:44Z +11612 2005-08-17T03:48:51Z 375 526 2005-08-20T03:03:51Z 1 2020-02-15T06:59:44Z +11613 2005-08-17T03:50:33Z 2486 126 2005-08-25T00:37:33Z 2 2020-02-15T06:59:44Z +11614 2005-08-17T03:52:18Z 805 2 2005-08-20T07:04:18Z 1 2020-02-15T06:59:44Z +11615 2005-08-17T03:54:35Z 4331 436 2005-08-23T06:54:35Z 2 2020-02-15T06:59:44Z +11616 2005-08-17T04:00:01Z 2588 36 2005-08-20T23:03:01Z 2 2020-02-15T06:59:44Z +11617 2005-08-17T04:00:40Z 1898 324 2005-08-18T00:36:40Z 1 2020-02-15T06:59:44Z +11618 2005-08-17T04:01:36Z 954 175 2005-08-23T01:02:36Z 1 2020-02-15T06:59:44Z +11619 2005-08-17T04:03:26Z 3652 374 2005-08-22T03:07:26Z 1 2020-02-15T06:59:44Z +11620 2005-08-17T04:06:22Z 3801 502 2005-08-17T23:53:22Z 1 2020-02-15T06:59:44Z +11621 2005-08-17T04:13:45Z 3708 216 2005-08-26T01:00:45Z 1 2020-02-15T06:59:44Z +11622 2005-08-17T04:15:46Z 499 220 2005-08-24T04:48:46Z 1 2020-02-15T06:59:44Z +11623 2005-08-17T04:15:47Z 759 163 2005-08-19T04:11:47Z 2 2020-02-15T06:59:44Z +11624 2005-08-17T04:17:42Z 606 527 2005-08-18T02:46:42Z 1 2020-02-15T06:59:44Z +11625 2005-08-17T04:18:52Z 712 521 2005-08-25T03:05:52Z 2 2020-02-15T06:59:44Z +11626 2005-08-17T04:25:42Z 4279 266 2005-08-23T05:46:42Z 1 2020-02-15T06:59:44Z +11627 2005-08-17T04:25:47Z 3945 168 2005-08-26T02:54:47Z 2 2020-02-15T06:59:44Z +11628 2005-08-17T04:27:18Z 3656 256 2005-08-25T01:12:18Z 2 2020-02-15T06:59:44Z +11629 2005-08-17T04:27:24Z 786 299 2005-08-26T10:25:24Z 2 2020-02-15T06:59:44Z +11630 2005-08-17T04:27:46Z 688 72 2005-08-19T09:58:46Z 2 2020-02-15T06:59:44Z +11631 2005-08-17T04:28:56Z 59 168 2005-08-24T00:42:56Z 2 2020-02-15T06:59:44Z +11632 2005-08-17T04:29:32Z 2551 238 2005-08-22T03:44:32Z 1 2020-02-15T06:59:44Z +11633 2005-08-17T04:30:09Z 1706 468 2005-08-20T06:56:09Z 1 2020-02-15T06:59:44Z +11634 2005-08-17T04:31:49Z 2576 206 2005-08-21T02:51:49Z 1 2020-02-15T06:59:44Z +11635 2005-08-17T04:33:17Z 2642 98 2005-08-21T07:50:17Z 2 2020-02-15T06:59:44Z +11636 2005-08-17T04:36:31Z 791 276 2005-08-24T00:03:31Z 2 2020-02-15T06:59:44Z +11637 2005-08-17T04:36:39Z 479 283 2005-08-18T02:17:39Z 1 2020-02-15T06:59:44Z +11638 2005-08-17T04:39:09Z 3421 152 2005-08-25T06:42:09Z 2 2020-02-15T06:59:44Z +11639 2005-08-17T04:43:29Z 3985 462 2005-08-25T01:04:29Z 2 2020-02-15T06:59:44Z +11640 2005-08-17T04:44:33Z 1718 501 2005-08-21T09:29:33Z 2 2020-02-15T06:59:44Z +11641 2005-08-17T04:45:39Z 2717 79 2005-08-20T10:38:39Z 1 2020-02-15T06:59:44Z +11642 2005-08-17T04:48:05Z 3790 25 2005-08-18T01:53:05Z 2 2020-02-15T06:59:44Z +11643 2005-08-17T04:49:35Z 1378 197 2005-08-24T07:05:35Z 1 2020-02-15T06:59:44Z +11644 2005-08-17T04:49:46Z 1760 438 2005-08-24T08:49:46Z 1 2020-02-15T06:59:44Z +11645 2005-08-17T04:50:56Z 4261 35 2005-08-25T23:03:56Z 1 2020-02-15T06:59:44Z +11646 2006-02-14T15:16:03Z 478 11 2 2020-02-15T06:59:44Z +11647 2005-08-17T04:54:14Z 3016 110 2005-08-23T04:16:14Z 2 2020-02-15T06:59:44Z +11648 2005-08-17T04:56:16Z 3362 465 2005-08-26T00:53:16Z 2 2020-02-15T06:59:44Z +11649 2005-08-17T04:59:26Z 3222 217 2005-08-20T04:02:26Z 2 2020-02-15T06:59:44Z +11650 2005-08-17T05:00:03Z 3979 418 2005-08-22T01:45:03Z 2 2020-02-15T06:59:44Z +11651 2005-08-17T05:02:25Z 3681 143 2005-08-24T08:15:25Z 2 2020-02-15T06:59:44Z +11652 2006-02-14T15:16:03Z 1622 597 2 2020-02-15T06:59:44Z +11653 2005-08-17T05:06:10Z 4475 358 2005-08-24T03:09:10Z 2 2020-02-15T06:59:44Z +11654 2005-08-17T05:06:19Z 1048 218 2005-08-18T04:32:19Z 2 2020-02-15T06:59:44Z +11655 2005-08-17T05:11:07Z 1699 113 2005-08-26T10:18:07Z 1 2020-02-15T06:59:44Z +11656 2005-08-17T05:11:09Z 1451 56 2005-08-25T07:51:09Z 1 2020-02-15T06:59:44Z +11657 2006-02-14T15:16:03Z 3043 53 2 2020-02-15T06:59:44Z +11658 2005-08-17T05:19:17Z 2008 422 2005-08-24T07:03:17Z 2 2020-02-15T06:59:44Z +11659 2005-08-17T05:20:45Z 2881 112 2005-08-22T10:18:45Z 1 2020-02-15T06:59:44Z +11660 2005-08-17T05:22:42Z 4081 525 2005-08-23T01:03:42Z 1 2020-02-15T06:59:44Z +11661 2005-08-17T05:25:57Z 1008 27 2005-08-25T04:37:57Z 1 2020-02-15T06:59:44Z +11662 2005-08-17T05:27:37Z 2730 177 2005-08-26T09:56:37Z 2 2020-02-15T06:59:44Z +11663 2005-08-17T05:30:19Z 3798 373 2005-08-25T08:14:19Z 1 2020-02-15T06:59:44Z +11664 2005-08-17T05:35:52Z 1343 433 2005-08-18T02:40:52Z 1 2020-02-15T06:59:44Z +11665 2005-08-17T05:36:57Z 334 254 2005-08-23T01:38:57Z 1 2020-02-15T06:59:44Z +11666 2005-08-17T05:45:10Z 250 531 2005-08-19T06:47:10Z 2 2020-02-15T06:59:44Z +11667 2005-08-17T05:46:55Z 1516 582 2005-08-26T08:19:55Z 1 2020-02-15T06:59:44Z +11668 2005-08-17T05:47:32Z 2162 249 2005-08-20T03:11:32Z 1 2020-02-15T06:59:44Z +11669 2005-08-17T05:48:51Z 3224 487 2005-08-22T01:22:51Z 1 2020-02-15T06:59:44Z +11670 2005-08-17T05:48:59Z 4437 286 2005-08-19T08:51:59Z 1 2020-02-15T06:59:44Z +11671 2005-08-17T05:50:21Z 3569 338 2005-08-20T03:43:21Z 1 2020-02-15T06:59:44Z +11672 2006-02-14T15:16:03Z 3947 521 2 2020-02-15T06:59:44Z +11673 2005-08-17T05:54:15Z 823 303 2005-08-21T08:12:15Z 2 2020-02-15T06:59:44Z +11674 2005-08-17T05:56:27Z 582 306 2005-08-24T08:50:27Z 2 2020-02-15T06:59:44Z +11675 2005-08-17T05:57:54Z 1322 514 2005-08-21T23:57:54Z 1 2020-02-15T06:59:44Z +11676 2006-02-14T15:16:03Z 4496 216 2 2020-02-15T06:59:44Z +11677 2005-08-17T06:06:26Z 2206 407 2005-08-20T04:35:26Z 2 2020-02-15T06:59:44Z +11678 2005-08-17T06:07:39Z 3511 176 2005-08-21T10:51:39Z 2 2020-02-15T06:59:44Z +11679 2005-08-17T06:08:54Z 3337 72 2005-08-21T07:50:54Z 1 2020-02-15T06:59:44Z +11680 2005-08-17T06:12:27Z 4538 221 2005-08-23T08:54:27Z 1 2020-02-15T06:59:44Z +11681 2005-08-17T06:13:30Z 1260 543 2005-08-26T01:29:30Z 2 2020-02-15T06:59:44Z +11682 2005-08-17T06:13:40Z 2544 387 2005-08-18T06:11:40Z 1 2020-02-15T06:59:44Z +11683 2005-08-17T06:15:17Z 2603 66 2005-08-26T05:33:17Z 1 2020-02-15T06:59:44Z +11684 2005-08-17T06:27:15Z 4277 517 2005-08-22T02:11:15Z 2 2020-02-15T06:59:44Z +11685 2005-08-17T06:39:16Z 3552 51 2005-08-22T04:20:16Z 2 2020-02-15T06:59:44Z +11686 2005-08-17T06:39:30Z 1393 392 2005-08-21T10:19:30Z 2 2020-02-15T06:59:44Z +11687 2005-08-17T06:39:59Z 1977 169 2005-08-23T04:53:59Z 1 2020-02-15T06:59:44Z +11688 2005-08-17T06:41:58Z 2229 82 2005-08-25T04:38:58Z 1 2020-02-15T06:59:44Z +11689 2005-08-17T06:42:08Z 2390 419 2005-08-26T06:09:08Z 1 2020-02-15T06:59:44Z +11690 2005-08-17T06:44:22Z 3934 267 2005-08-24T03:49:22Z 1 2020-02-15T06:59:44Z +11691 2005-08-17T06:51:05Z 2529 515 2005-08-24T09:53:05Z 1 2020-02-15T06:59:44Z +11692 2005-08-17T06:52:41Z 1222 350 2005-08-24T12:17:41Z 2 2020-02-15T06:59:44Z +11693 2005-08-17T06:56:56Z 793 221 2005-08-24T06:20:56Z 2 2020-02-15T06:59:44Z +11694 2005-08-17T06:57:30Z 3540 410 2005-08-24T07:52:30Z 1 2020-02-15T06:59:44Z +11695 2005-08-17T07:01:08Z 1110 386 2005-08-21T09:21:08Z 1 2020-02-15T06:59:44Z +11696 2005-08-17T07:01:09Z 3816 522 2005-08-21T09:12:09Z 2 2020-02-15T06:59:44Z +11697 2005-08-17T07:09:19Z 383 329 2005-08-19T02:02:19Z 1 2020-02-15T06:59:44Z +11698 2005-08-17T07:09:59Z 3946 353 2005-08-19T04:31:59Z 1 2020-02-15T06:59:44Z +11699 2005-08-17T07:11:58Z 3997 339 2005-08-26T12:08:58Z 1 2020-02-15T06:59:44Z +11700 2005-08-17T07:12:31Z 2365 104 2005-08-18T04:21:31Z 2 2020-02-15T06:59:44Z +11701 2005-08-17T07:15:47Z 993 34 2005-08-19T01:44:47Z 2 2020-02-15T06:59:44Z +11702 2005-08-17T07:18:56Z 3286 526 2005-08-24T06:33:56Z 1 2020-02-15T06:59:44Z +11703 2005-08-17T07:19:29Z 1692 279 2005-08-20T09:35:29Z 2 2020-02-15T06:59:44Z +11704 2005-08-17T07:21:22Z 1099 135 2005-08-25T06:06:22Z 1 2020-02-15T06:59:44Z +11705 2005-08-17T07:22:25Z 4242 489 2005-08-18T06:42:25Z 1 2020-02-15T06:59:44Z +11706 2005-08-17T07:23:46Z 4234 414 2005-08-18T10:13:46Z 2 2020-02-15T06:59:44Z +11707 2005-08-17T07:24:59Z 1030 581 2005-08-24T10:40:59Z 1 2020-02-15T06:59:44Z +11708 2005-08-17T07:26:47Z 76 582 2005-08-22T04:11:47Z 1 2020-02-15T06:59:44Z +11709 2006-02-14T15:16:03Z 1720 330 1 2020-02-15T06:59:44Z +11710 2005-08-17T07:29:44Z 613 553 2005-08-19T02:06:44Z 2 2020-02-15T06:59:44Z +11711 2005-08-17T07:30:55Z 1503 470 2005-08-18T09:21:55Z 1 2020-02-15T06:59:44Z +11712 2005-08-17T07:32:51Z 3607 203 2005-08-21T09:18:51Z 2 2020-02-15T06:59:44Z +11713 2005-08-17T07:34:05Z 1919 590 2005-08-25T07:49:05Z 1 2020-02-15T06:59:44Z +11714 2005-08-17T07:34:55Z 17 151 2005-08-18T04:07:55Z 1 2020-02-15T06:59:44Z +11715 2005-08-17T07:40:55Z 1615 452 2005-08-25T11:19:55Z 1 2020-02-15T06:59:44Z +11716 2005-08-17T07:40:55Z 3054 287 2005-08-21T05:56:55Z 1 2020-02-15T06:59:44Z +11717 2005-08-17T07:44:09Z 1371 566 2005-08-20T09:39:09Z 2 2020-02-15T06:59:44Z +11718 2005-08-17T07:44:42Z 3673 555 2005-08-23T03:02:42Z 2 2020-02-15T06:59:44Z +11719 2005-08-17T07:46:05Z 2054 338 2005-08-23T08:52:05Z 1 2020-02-15T06:59:44Z +11720 2005-08-17T07:46:54Z 1707 121 2005-08-26T04:19:54Z 2 2020-02-15T06:59:44Z +11721 2005-08-17T07:49:17Z 1923 46 2005-08-18T04:08:17Z 1 2020-02-15T06:59:44Z +11722 2005-08-17T07:53:03Z 2430 321 2005-08-22T06:56:03Z 2 2020-02-15T06:59:44Z +11723 2005-08-17T07:56:22Z 1665 341 2005-08-22T03:49:22Z 1 2020-02-15T06:59:44Z +11724 2005-08-17T08:04:44Z 4484 207 2005-08-25T03:25:44Z 2 2020-02-15T06:59:44Z +11725 2005-08-17T08:09:00Z 519 45 2005-08-18T09:50:00Z 1 2020-02-15T06:59:44Z +11726 2005-08-17T08:11:10Z 4438 266 2005-08-22T05:45:10Z 1 2020-02-15T06:59:44Z +11727 2005-08-17T08:12:20Z 98 6 2005-08-19T12:45:20Z 1 2020-02-15T06:59:44Z +11728 2005-08-17T08:12:26Z 726 444 2005-08-18T03:26:26Z 1 2020-02-15T06:59:44Z +11729 2005-08-17T08:14:41Z 2819 215 2005-08-22T02:54:41Z 1 2020-02-15T06:59:44Z +11730 2005-08-17T08:22:00Z 3817 98 2005-08-22T05:43:00Z 2 2020-02-15T06:59:44Z +11731 2005-08-17T08:24:35Z 917 52 2005-08-24T02:54:35Z 2 2020-02-15T06:59:44Z +11732 2005-08-17T08:29:46Z 460 137 2005-08-23T14:21:46Z 2 2020-02-15T06:59:44Z +11733 2005-08-17T08:31:03Z 439 251 2005-08-21T05:44:03Z 2 2020-02-15T06:59:44Z +11734 2005-08-17T08:34:22Z 4063 337 2005-08-25T11:56:22Z 2 2020-02-15T06:59:44Z +11735 2005-08-17T08:35:42Z 2555 452 2005-08-26T11:04:42Z 1 2020-02-15T06:59:44Z +11736 2005-08-17T08:40:55Z 4217 535 2005-08-26T09:03:55Z 1 2020-02-15T06:59:44Z +11737 2005-08-17T08:42:08Z 4128 549 2005-08-19T08:14:08Z 1 2020-02-15T06:59:44Z +11738 2005-08-17T08:45:55Z 3042 347 2005-08-26T07:09:55Z 1 2020-02-15T06:59:44Z +11739 2006-02-14T15:16:03Z 4568 373 2 2020-02-15T06:59:44Z +11740 2005-08-17T08:48:31Z 2441 27 2005-08-24T07:47:31Z 2 2020-02-15T06:59:44Z +11741 2005-08-17T08:48:39Z 1819 473 2005-08-20T07:37:39Z 1 2020-02-15T06:59:44Z +11742 2005-08-17T08:48:43Z 596 470 2005-08-23T07:18:43Z 2 2020-02-15T06:59:44Z +11743 2005-08-17T08:49:05Z 294 336 2005-08-22T08:53:05Z 2 2020-02-15T06:59:44Z +11744 2005-08-17T08:54:30Z 297 26 2005-08-25T03:28:30Z 1 2020-02-15T06:59:44Z +11745 2005-08-17T09:00:01Z 4018 240 2005-08-26T14:29:01Z 2 2020-02-15T06:59:44Z +11746 2005-08-17T09:03:24Z 4571 299 2005-08-25T06:08:24Z 2 2020-02-15T06:59:44Z +11747 2005-08-17T09:03:31Z 1041 555 2005-08-19T08:23:31Z 2 2020-02-15T06:59:44Z +11748 2005-08-17T09:04:02Z 1175 595 2005-08-21T12:22:02Z 2 2020-02-15T06:59:44Z +11749 2005-08-17T09:04:03Z 4141 567 2005-08-19T09:32:03Z 2 2020-02-15T06:59:44Z +11750 2005-08-17T09:07:00Z 665 190 2005-08-23T08:16:00Z 2 2020-02-15T06:59:44Z +11751 2005-08-17T09:07:56Z 3309 51 2005-08-26T13:16:56Z 1 2020-02-15T06:59:44Z +11752 2005-08-17T09:10:55Z 1833 481 2005-08-18T06:22:55Z 1 2020-02-15T06:59:44Z +11753 2005-08-17T09:11:52Z 2599 43 2005-08-25T05:03:52Z 2 2020-02-15T06:59:44Z +11754 2006-02-14T15:16:03Z 3747 163 2 2020-02-15T06:59:44Z +11755 2005-08-17T09:15:35Z 3457 513 2005-08-23T06:28:35Z 2 2020-02-15T06:59:44Z +11756 2005-08-17T09:29:22Z 1798 198 2005-08-21T12:17:22Z 1 2020-02-15T06:59:44Z +11757 2006-02-14T15:16:03Z 1295 550 2 2020-02-15T06:59:44Z +11758 2005-08-17T09:33:02Z 11 533 2005-08-24T05:03:02Z 2 2020-02-15T06:59:44Z +11759 2005-08-17T09:41:23Z 2655 108 2005-08-19T11:58:23Z 2 2020-02-15T06:59:44Z +11760 2005-08-17T09:44:22Z 626 545 2005-08-24T14:39:22Z 2 2020-02-15T06:59:44Z +11761 2005-08-17T09:44:59Z 2230 13 2005-08-25T07:46:59Z 1 2020-02-15T06:59:44Z +11762 2005-08-17T09:48:06Z 1204 244 2005-08-26T13:12:06Z 2 2020-02-15T06:59:44Z +11763 2005-08-17T09:51:39Z 872 586 2005-08-21T10:15:39Z 2 2020-02-15T06:59:44Z +11764 2005-08-17T09:51:54Z 4502 252 2005-08-20T07:11:54Z 1 2020-02-15T06:59:44Z +11765 2005-08-17T09:55:28Z 4311 308 2005-08-19T15:53:28Z 2 2020-02-15T06:59:44Z +11766 2005-08-17T09:58:40Z 2999 544 2005-08-21T04:59:40Z 1 2020-02-15T06:59:44Z +11767 2005-08-17T10:00:40Z 2374 77 2005-08-25T04:14:40Z 2 2020-02-15T06:59:44Z +11768 2005-08-17T10:02:29Z 1307 564 2005-08-23T10:26:29Z 1 2020-02-15T06:59:44Z +11769 2005-08-17T10:04:49Z 1406 418 2005-08-20T09:22:49Z 1 2020-02-15T06:59:44Z +11770 2005-08-17T10:05:05Z 2862 475 2005-08-20T15:59:05Z 1 2020-02-15T06:59:44Z +11771 2005-08-17T10:17:09Z 2575 324 2005-08-25T10:58:09Z 1 2020-02-15T06:59:44Z +11772 2005-08-17T10:18:57Z 1021 237 2005-08-26T12:48:57Z 2 2020-02-15T06:59:44Z +11773 2005-08-17T10:19:51Z 1886 384 2005-08-23T04:30:51Z 1 2020-02-15T06:59:44Z +11774 2005-08-17T10:20:39Z 1679 488 2005-08-23T13:37:39Z 1 2020-02-15T06:59:44Z +11775 2005-08-17T10:25:53Z 256 574 2005-08-22T08:37:53Z 2 2020-02-15T06:59:44Z +11776 2005-08-17T10:27:19Z 2400 306 2005-08-20T14:02:19Z 2 2020-02-15T06:59:44Z +11777 2005-08-17T10:27:19Z 4065 83 2005-08-26T13:10:19Z 1 2020-02-15T06:59:44Z +11778 2005-08-17T10:31:40Z 1306 213 2005-08-25T13:53:40Z 2 2020-02-15T06:59:44Z +11779 2005-08-17T10:31:58Z 181 126 2005-08-24T15:28:58Z 2 2020-02-15T06:59:44Z +11780 2005-08-17T10:34:24Z 2268 297 2005-08-21T04:55:24Z 1 2020-02-15T06:59:44Z +11781 2005-08-17T10:37:00Z 1853 506 2005-08-21T12:03:00Z 2 2020-02-15T06:59:44Z +11782 2006-02-14T15:16:03Z 4098 354 1 2020-02-15T06:59:44Z +11783 2005-08-17T10:39:24Z 979 152 2005-08-21T12:43:24Z 2 2020-02-15T06:59:44Z +11784 2005-08-17T10:48:05Z 3101 297 2005-08-19T06:47:05Z 1 2020-02-15T06:59:44Z +11785 2005-08-17T10:54:46Z 2760 182 2005-08-23T14:15:46Z 2 2020-02-15T06:59:44Z +11786 2005-08-17T10:57:40Z 1487 435 2005-08-24T06:48:40Z 2 2020-02-15T06:59:44Z +11787 2005-08-17T10:59:00Z 1980 195 2005-08-19T05:56:00Z 1 2020-02-15T06:59:44Z +11788 2005-08-17T10:59:18Z 1310 560 2005-08-22T11:12:18Z 1 2020-02-15T06:59:44Z +11789 2005-08-17T10:59:24Z 851 150 2005-08-26T16:17:24Z 1 2020-02-15T06:59:44Z +11790 2005-08-17T11:00:08Z 2384 451 2005-08-20T05:15:08Z 2 2020-02-15T06:59:44Z +11791 2005-08-17T11:01:11Z 3640 219 2005-08-22T06:31:11Z 2 2020-02-15T06:59:44Z +11792 2005-08-17T11:03:53Z 3703 376 2005-08-26T06:34:53Z 1 2020-02-15T06:59:44Z +11793 2005-08-17T11:05:53Z 1955 352 2005-08-25T12:25:53Z 1 2020-02-15T06:59:44Z +11794 2005-08-17T11:08:48Z 3486 453 2005-08-20T13:36:48Z 2 2020-02-15T06:59:44Z +11795 2005-08-17T11:13:38Z 2220 565 2005-08-19T14:20:38Z 2 2020-02-15T06:59:44Z +11796 2005-08-17T11:16:47Z 3983 435 2005-08-18T16:55:47Z 2 2020-02-15T06:59:44Z +11797 2005-08-17T11:17:21Z 1142 546 2005-08-18T09:14:21Z 2 2020-02-15T06:59:44Z +11798 2005-08-17T11:21:43Z 3974 448 2005-08-25T07:43:43Z 2 2020-02-15T06:59:44Z +11799 2005-08-17T11:25:25Z 40 501 2005-08-25T13:03:25Z 2 2020-02-15T06:59:44Z +11800 2005-08-17T11:29:52Z 2284 350 2005-08-21T08:37:52Z 1 2020-02-15T06:59:44Z +11801 2005-08-17T11:30:11Z 659 126 2005-08-23T09:54:11Z 1 2020-02-15T06:59:44Z +11802 2005-08-17T11:32:51Z 2815 221 2005-08-22T10:56:51Z 1 2020-02-15T06:59:44Z +11803 2005-08-17T11:42:08Z 3648 160 2005-08-22T07:45:08Z 2 2020-02-15T06:59:44Z +11804 2005-08-17T11:42:45Z 1040 556 2005-08-25T07:11:45Z 1 2020-02-15T06:59:44Z +11805 2005-08-17T11:48:47Z 1208 208 2005-08-26T11:06:47Z 2 2020-02-15T06:59:44Z +11806 2005-08-17T11:49:28Z 3203 125 2005-08-22T15:42:28Z 1 2020-02-15T06:59:44Z +11807 2005-08-17T11:51:15Z 4052 201 2005-08-21T11:47:15Z 2 2020-02-15T06:59:44Z +11808 2005-08-17T11:51:16Z 4042 462 2005-08-18T14:01:16Z 2 2020-02-15T06:59:44Z +11809 2005-08-17T11:51:39Z 1136 305 2005-08-24T17:14:39Z 1 2020-02-15T06:59:44Z +11810 2005-08-17T11:56:48Z 1548 270 2005-08-20T17:39:48Z 1 2020-02-15T06:59:44Z +11811 2005-08-17T11:59:18Z 195 130 2005-08-18T09:13:18Z 2 2020-02-15T06:59:44Z +11812 2005-08-17T12:00:54Z 119 132 2005-08-18T16:08:54Z 1 2020-02-15T06:59:44Z +11813 2005-08-17T12:06:54Z 1074 36 2005-08-21T17:52:54Z 2 2020-02-15T06:59:44Z +11814 2005-08-17T12:09:20Z 3462 509 2005-08-25T16:56:20Z 2 2020-02-15T06:59:44Z +11815 2005-08-17T12:13:26Z 272 192 2005-08-22T17:15:26Z 2 2020-02-15T06:59:44Z +11816 2005-08-17T12:14:16Z 3897 224 2005-08-19T06:15:16Z 2 2020-02-15T06:59:44Z +11817 2005-08-17T12:20:01Z 2297 38 2005-08-19T18:06:01Z 1 2020-02-15T06:59:44Z +11818 2005-08-17T12:22:04Z 213 512 2005-08-25T15:59:04Z 2 2020-02-15T06:59:44Z +11819 2005-08-17T12:25:17Z 656 208 2005-08-19T16:12:17Z 1 2020-02-15T06:59:44Z +11820 2005-08-17T12:25:33Z 2801 401 2005-08-19T07:04:33Z 2 2020-02-15T06:59:44Z +11821 2005-08-17T12:27:55Z 2711 20 2005-08-18T07:07:55Z 1 2020-02-15T06:59:44Z +11822 2005-08-17T12:32:39Z 1317 263 2005-08-18T12:30:39Z 2 2020-02-15T06:59:44Z +11823 2005-08-17T12:36:37Z 2626 352 2005-08-22T11:10:37Z 2 2020-02-15T06:59:44Z +11824 2005-08-17T12:37:54Z 2639 1 2005-08-19T10:11:54Z 2 2020-02-15T06:59:44Z +11825 2005-08-17T12:43:30Z 2656 296 2005-08-20T15:25:30Z 1 2020-02-15T06:59:44Z +11826 2005-08-17T12:43:46Z 1837 536 2005-08-19T16:59:46Z 2 2020-02-15T06:59:44Z +11827 2005-08-17T12:44:27Z 3064 523 2005-08-24T13:31:27Z 1 2020-02-15T06:59:44Z +11828 2005-08-17T12:48:28Z 2593 268 2005-08-24T09:24:28Z 2 2020-02-15T06:59:44Z +11829 2005-08-17T12:52:04Z 2207 563 2005-08-19T10:50:04Z 2 2020-02-15T06:59:44Z +11830 2005-08-17T12:53:15Z 3713 522 2005-08-25T08:08:15Z 1 2020-02-15T06:59:44Z +11831 2005-08-17T12:54:47Z 4562 32 2005-08-21T11:21:47Z 1 2020-02-15T06:59:44Z +11832 2005-08-17T12:55:31Z 2331 125 2005-08-19T08:31:31Z 1 2020-02-15T06:59:44Z +11833 2005-08-17T13:00:33Z 3728 424 2005-08-18T13:45:33Z 2 2020-02-15T06:59:44Z +11834 2005-08-17T13:00:40Z 2407 261 2005-08-22T12:50:40Z 1 2020-02-15T06:59:44Z +11835 2005-08-17T13:03:13Z 2796 479 2005-08-19T10:50:13Z 1 2020-02-15T06:59:44Z +11836 2005-08-17T13:03:36Z 2253 198 2005-08-19T17:15:36Z 1 2020-02-15T06:59:44Z +11837 2005-08-17T13:04:41Z 1085 81 2005-08-26T14:19:41Z 1 2020-02-15T06:59:44Z +11838 2005-08-17T13:06:00Z 3576 161 2005-08-20T11:44:00Z 1 2020-02-15T06:59:44Z +11839 2005-08-17T13:08:45Z 2282 80 2005-08-18T15:05:45Z 2 2020-02-15T06:59:44Z +11840 2005-08-17T13:09:01Z 1824 491 2005-08-19T17:42:01Z 1 2020-02-15T06:59:44Z +11841 2005-08-17T13:12:20Z 1524 270 2005-08-21T11:16:20Z 2 2020-02-15T06:59:44Z +11842 2005-08-17T13:13:37Z 2680 422 2005-08-20T08:32:37Z 1 2020-02-15T06:59:44Z +11843 2005-08-17T13:14:50Z 3091 187 2005-08-22T11:31:50Z 2 2020-02-15T06:59:44Z +11844 2005-08-17T13:16:04Z 3791 368 2005-08-18T10:16:04Z 1 2020-02-15T06:59:44Z +11845 2005-08-17T13:16:38Z 14 65 2005-08-18T11:21:38Z 1 2020-02-15T06:59:44Z +11846 2005-08-17T13:18:29Z 3306 283 2005-08-22T18:05:29Z 2 2020-02-15T06:59:44Z +11847 2006-02-14T15:16:03Z 1784 337 1 2020-02-15T06:59:44Z +11848 2006-02-14T15:16:03Z 3680 152 1 2020-02-15T06:59:44Z +11849 2005-08-17T13:24:55Z 1191 92 2005-08-22T12:50:55Z 2 2020-02-15T06:59:44Z +11850 2005-08-17T13:30:15Z 1437 80 2005-08-21T17:24:15Z 1 2020-02-15T06:59:44Z +11851 2005-08-17T13:30:27Z 3225 376 2005-08-20T15:34:27Z 2 2020-02-15T06:59:44Z +11852 2005-08-17T13:38:27Z 2358 596 2005-08-24T08:50:27Z 1 2020-02-15T06:59:44Z +11853 2005-08-17T13:39:32Z 3888 6 2005-08-23T18:44:32Z 2 2020-02-15T06:59:44Z +11854 2005-08-17T13:42:52Z 137 313 2005-08-26T14:04:52Z 1 2020-02-15T06:59:44Z +11855 2005-08-17T13:43:07Z 1062 535 2005-08-26T08:07:07Z 1 2020-02-15T06:59:44Z +11856 2005-08-17T13:44:49Z 305 28 2005-08-21T17:20:49Z 1 2020-02-15T06:59:44Z +11857 2005-08-17T13:48:30Z 101 146 2005-08-18T15:55:30Z 1 2020-02-15T06:59:44Z +11858 2005-08-17T13:50:31Z 3483 503 2005-08-19T08:45:31Z 2 2020-02-15T06:59:44Z +11859 2005-08-17T13:51:20Z 423 144 2005-08-21T13:47:20Z 2 2020-02-15T06:59:44Z +11860 2005-08-17T13:52:26Z 4354 257 2005-08-24T14:47:26Z 1 2020-02-15T06:59:44Z +11861 2005-08-17T13:53:47Z 2674 232 2005-08-21T16:07:47Z 1 2020-02-15T06:59:44Z +11862 2005-08-17T13:54:53Z 2604 529 2005-08-19T10:48:53Z 1 2020-02-15T06:59:44Z +11863 2005-08-17T13:56:01Z 1003 112 2005-08-23T18:38:01Z 1 2020-02-15T06:59:44Z +11864 2005-08-17T14:02:01Z 2985 96 2005-08-21T19:54:01Z 1 2020-02-15T06:59:44Z +11865 2005-08-17T14:03:46Z 2577 345 2005-08-19T08:39:46Z 1 2020-02-15T06:59:44Z +11866 2006-02-14T15:16:03Z 2758 200 2 2020-02-15T06:59:44Z +11867 2005-08-17T14:04:28Z 938 434 2005-08-21T10:08:28Z 1 2020-02-15T06:59:44Z +11868 2005-08-17T14:05:34Z 2909 445 2005-08-19T15:47:34Z 1 2020-02-15T06:59:44Z +11869 2005-08-17T14:10:22Z 3453 19 2005-08-24T18:39:22Z 1 2020-02-15T06:59:44Z +11870 2005-08-17T14:11:28Z 4251 432 2005-08-24T16:43:28Z 1 2020-02-15T06:59:44Z +11871 2005-08-17T14:11:44Z 3013 484 2005-08-18T17:50:44Z 1 2020-02-15T06:59:44Z +11872 2005-08-17T14:11:45Z 4306 113 2005-08-21T17:02:45Z 2 2020-02-15T06:59:44Z +11873 2005-08-17T14:14:39Z 4021 554 2005-08-18T17:20:39Z 2 2020-02-15T06:59:44Z +11874 2005-08-17T14:16:40Z 2637 467 2005-08-18T15:51:40Z 2 2020-02-15T06:59:44Z +11875 2005-08-17T14:16:48Z 1787 294 2005-08-26T14:20:48Z 1 2020-02-15T06:59:44Z +11876 2005-08-17T14:18:21Z 3982 426 2005-08-20T19:48:21Z 1 2020-02-15T06:59:44Z +11877 2005-08-17T14:21:11Z 4528 445 2005-08-25T19:46:11Z 1 2020-02-15T06:59:44Z +11878 2005-08-17T14:23:52Z 255 549 2005-08-21T14:23:52Z 1 2020-02-15T06:59:44Z +11879 2005-08-17T14:25:09Z 2500 312 2005-08-26T09:19:09Z 1 2020-02-15T06:59:44Z +11880 2005-08-17T14:28:28Z 1539 597 2005-08-26T12:32:28Z 2 2020-02-15T06:59:44Z +11881 2005-08-17T14:31:56Z 3124 272 2005-08-21T11:05:56Z 1 2020-02-15T06:59:44Z +11882 2005-08-17T14:33:41Z 2401 234 2005-08-26T17:25:41Z 2 2020-02-15T06:59:44Z +11883 2005-08-17T14:41:28Z 221 551 2005-08-19T09:54:28Z 1 2020-02-15T06:59:44Z +11884 2005-08-17T14:43:23Z 797 178 2005-08-25T15:38:23Z 1 2020-02-15T06:59:44Z +11885 2005-08-17T14:53:53Z 3931 481 2005-08-22T10:59:53Z 1 2020-02-15T06:59:44Z +11886 2005-08-17T14:58:51Z 608 204 2005-08-19T16:07:51Z 2 2020-02-15T06:59:44Z +11887 2005-08-17T15:03:13Z 3290 54 2005-08-19T09:49:13Z 1 2020-02-15T06:59:44Z +11888 2005-08-17T15:04:05Z 1100 160 2005-08-25T18:52:05Z 2 2020-02-15T06:59:44Z +11889 2005-08-17T15:08:27Z 293 395 2005-08-18T17:10:27Z 1 2020-02-15T06:59:44Z +11890 2005-08-17T15:08:43Z 3023 487 2005-08-26T14:56:43Z 2 2020-02-15T06:59:44Z +11891 2005-08-17T15:11:55Z 2619 115 2005-08-22T11:11:55Z 2 2020-02-15T06:59:44Z +11892 2005-08-17T15:13:21Z 746 227 2005-08-21T09:19:21Z 2 2020-02-15T06:59:44Z +11893 2005-08-17T15:13:29Z 2321 496 2005-08-25T11:09:29Z 1 2020-02-15T06:59:44Z +11894 2005-08-17T15:15:01Z 1223 67 2005-08-26T13:49:01Z 1 2020-02-15T06:59:44Z +11895 2005-08-17T15:15:07Z 2156 236 2005-08-18T11:00:07Z 2 2020-02-15T06:59:44Z +11896 2005-08-17T15:19:54Z 259 436 2005-08-24T18:22:54Z 2 2020-02-15T06:59:44Z +11897 2005-08-17T15:24:06Z 3904 238 2005-08-23T11:50:06Z 2 2020-02-15T06:59:44Z +11898 2005-08-17T15:24:12Z 3163 169 2005-08-24T13:36:12Z 2 2020-02-15T06:59:44Z +11899 2005-08-17T15:29:12Z 3179 84 2005-08-24T17:41:12Z 1 2020-02-15T06:59:44Z +11900 2005-08-17T15:30:44Z 1931 239 2005-08-19T16:12:44Z 1 2020-02-15T06:59:44Z +11901 2005-08-17T15:35:47Z 4274 70 2005-08-20T10:33:47Z 2 2020-02-15T06:59:44Z +11902 2005-08-17T15:37:34Z 1387 63 2005-08-22T17:28:34Z 2 2020-02-15T06:59:44Z +11903 2005-08-17T15:37:45Z 1196 542 2005-08-23T18:31:45Z 2 2020-02-15T06:59:44Z +11904 2005-08-17T15:39:26Z 2846 145 2005-08-21T18:24:26Z 2 2020-02-15T06:59:44Z +11905 2005-08-17T15:40:18Z 2725 349 2005-08-26T15:14:18Z 2 2020-02-15T06:59:44Z +11906 2005-08-17T15:40:46Z 325 478 2005-08-20T15:20:46Z 2 2020-02-15T06:59:44Z +11907 2005-08-17T15:40:47Z 3928 505 2005-08-20T19:55:47Z 2 2020-02-15T06:59:44Z +11908 2005-08-17T15:43:09Z 3390 314 2005-08-24T14:32:09Z 2 2020-02-15T06:59:44Z +11909 2006-02-14T15:16:03Z 871 474 1 2020-02-15T06:59:44Z +11910 2005-08-17T15:44:37Z 4254 418 2005-08-19T10:58:37Z 2 2020-02-15T06:59:44Z +11911 2005-08-17T15:51:35Z 3578 472 2005-08-26T20:26:35Z 2 2020-02-15T06:59:44Z +11912 2005-08-17T15:51:49Z 744 573 2005-08-24T18:48:49Z 1 2020-02-15T06:59:44Z +11913 2005-08-17T15:53:17Z 741 295 2005-08-24T18:50:17Z 2 2020-02-15T06:59:44Z +11914 2005-08-17T16:04:42Z 1634 230 2005-08-22T19:29:42Z 1 2020-02-15T06:59:44Z +11915 2005-08-17T16:05:28Z 1557 269 2005-08-25T19:53:28Z 2 2020-02-15T06:59:44Z +11916 2005-08-17T16:05:51Z 2631 86 2005-08-20T10:23:51Z 1 2020-02-15T06:59:44Z +11917 2005-08-17T16:08:17Z 1608 270 2005-08-20T20:01:17Z 1 2020-02-15T06:59:44Z +11918 2005-08-17T16:08:42Z 2169 533 2005-08-20T20:12:42Z 1 2020-02-15T06:59:44Z +11919 2005-08-17T16:08:49Z 4497 40 2005-08-20T16:59:49Z 2 2020-02-15T06:59:44Z +11920 2005-08-17T16:10:19Z 4253 402 2005-08-20T13:54:19Z 2 2020-02-15T06:59:44Z +11921 2005-08-17T16:12:27Z 494 485 2005-08-25T22:07:27Z 1 2020-02-15T06:59:44Z +11922 2005-08-17T16:20:37Z 3707 15 2005-08-26T16:53:37Z 2 2020-02-15T06:59:44Z +11923 2005-08-17T16:21:47Z 1907 72 2005-08-18T14:26:47Z 2 2020-02-15T06:59:44Z +11924 2005-08-17T16:22:05Z 1711 202 2005-08-26T12:34:05Z 1 2020-02-15T06:59:44Z +11925 2005-08-17T16:23:04Z 1441 370 2005-08-21T11:38:04Z 1 2020-02-15T06:59:44Z +11926 2005-08-17T16:25:02Z 2111 516 2005-08-22T11:36:02Z 1 2020-02-15T06:59:44Z +11927 2005-08-17T16:25:03Z 3134 178 2005-08-23T16:41:03Z 1 2020-02-15T06:59:44Z +11928 2005-08-17T16:28:24Z 79 261 2005-08-23T17:50:24Z 2 2020-02-15T06:59:44Z +11929 2005-08-17T16:28:51Z 3765 327 2005-08-25T19:36:51Z 1 2020-02-15T06:59:44Z +11930 2005-08-17T16:28:53Z 1299 5 2005-08-25T10:31:53Z 1 2020-02-15T06:59:44Z +11931 2005-08-17T16:35:14Z 2022 242 2005-08-19T19:16:14Z 1 2020-02-15T06:59:44Z +11932 2005-08-17T16:36:12Z 151 364 2005-08-18T19:34:12Z 2 2020-02-15T06:59:44Z +11933 2005-08-17T16:38:20Z 2574 438 2005-08-22T14:31:20Z 1 2020-02-15T06:59:44Z +11934 2005-08-17T16:40:00Z 1230 596 2005-08-20T20:13:00Z 2 2020-02-15T06:59:44Z +11935 2005-08-17T16:42:13Z 1640 66 2005-08-22T20:38:13Z 2 2020-02-15T06:59:44Z +11936 2005-08-17T16:45:34Z 1127 380 2005-08-21T13:33:34Z 2 2020-02-15T06:59:44Z +11937 2005-08-17T16:48:36Z 2926 515 2005-08-24T19:01:36Z 1 2020-02-15T06:59:44Z +11938 2005-08-17T16:54:54Z 3927 426 2005-08-24T19:18:54Z 1 2020-02-15T06:59:44Z +11939 2005-08-17T16:55:57Z 3305 516 2005-08-24T21:36:57Z 1 2020-02-15T06:59:44Z +11940 2005-08-17T16:56:28Z 1188 163 2005-08-18T15:09:28Z 1 2020-02-15T06:59:44Z +11941 2005-08-17T16:56:57Z 159 566 2005-08-24T16:29:57Z 1 2020-02-15T06:59:44Z +11942 2006-02-14T15:16:03Z 4094 576 2 2020-02-15T06:59:44Z +11943 2005-08-17T17:00:42Z 4466 69 2005-08-26T22:07:42Z 1 2020-02-15T06:59:44Z +11944 2005-08-17T17:02:42Z 27 389 2005-08-21T16:40:42Z 2 2020-02-15T06:59:44Z +11945 2005-08-17T17:05:33Z 1108 380 2005-08-20T18:37:33Z 2 2020-02-15T06:59:44Z +11946 2005-08-17T17:05:53Z 2953 569 2005-08-19T13:56:53Z 1 2020-02-15T06:59:44Z +11947 2005-08-17T17:08:13Z 2928 220 2005-08-23T21:53:13Z 1 2020-02-15T06:59:44Z +11948 2005-08-17T17:11:05Z 3329 40 2005-08-25T21:16:05Z 2 2020-02-15T06:59:44Z +11949 2005-08-17T17:12:26Z 854 198 2005-08-23T20:48:26Z 1 2020-02-15T06:59:44Z +11950 2005-08-17T17:13:16Z 4412 190 2005-08-26T21:25:16Z 1 2020-02-15T06:59:44Z +11951 2005-08-17T17:14:02Z 1394 155 2005-08-26T12:04:02Z 2 2020-02-15T06:59:44Z +11952 2005-08-17T17:14:57Z 2411 288 2005-08-19T19:15:57Z 1 2020-02-15T06:59:44Z +11953 2005-08-17T17:16:42Z 2993 399 2005-08-23T18:28:42Z 1 2020-02-15T06:59:44Z +11954 2005-08-17T17:18:36Z 220 145 2005-08-18T19:49:36Z 1 2020-02-15T06:59:44Z +11955 2005-08-17T17:21:35Z 1221 319 2005-08-24T22:06:35Z 1 2020-02-15T06:59:44Z +11956 2005-08-17T17:22:05Z 2533 457 2005-08-25T22:19:05Z 2 2020-02-15T06:59:44Z +11957 2005-08-17T17:22:29Z 1924 198 2005-08-23T21:47:29Z 2 2020-02-15T06:59:44Z +11958 2005-08-17T17:23:20Z 2061 217 2005-08-24T14:47:20Z 2 2020-02-15T06:59:44Z +11959 2005-08-17T17:23:35Z 2694 101 2005-08-20T20:57:35Z 1 2020-02-15T06:59:44Z +11960 2005-08-17T17:24:30Z 3924 84 2005-08-18T14:28:30Z 1 2020-02-15T06:59:44Z +11961 2005-08-17T17:28:01Z 2015 276 2005-08-21T20:43:01Z 1 2020-02-15T06:59:44Z +11962 2005-08-17T17:34:38Z 4384 29 2005-08-21T12:59:38Z 2 2020-02-15T06:59:44Z +11963 2005-08-17T17:35:47Z 232 211 2005-08-23T16:19:47Z 2 2020-02-15T06:59:44Z +11964 2005-08-17T17:37:03Z 2225 309 2005-08-25T11:55:03Z 2 2020-02-15T06:59:44Z +11965 2005-08-17T17:39:45Z 194 490 2005-08-19T12:05:45Z 1 2020-02-15T06:59:44Z +11966 2005-08-17T17:40:04Z 3702 283 2005-08-20T15:45:04Z 1 2020-02-15T06:59:44Z +11967 2005-08-17T17:45:00Z 1151 521 2005-08-22T13:03:00Z 1 2020-02-15T06:59:44Z +11968 2005-08-17T17:47:34Z 698 239 2005-08-18T19:40:34Z 1 2020-02-15T06:59:44Z +11969 2005-08-17T17:49:37Z 668 550 2005-08-19T19:45:37Z 2 2020-02-15T06:59:44Z +11970 2005-08-17T17:53:09Z 1779 21 2005-08-24T14:41:09Z 1 2020-02-15T06:59:44Z +11971 2005-08-17T17:53:42Z 2756 131 2005-08-18T12:11:42Z 2 2020-02-15T06:59:44Z +11972 2005-08-17T17:55:46Z 1282 308 2005-08-22T15:31:46Z 2 2020-02-15T06:59:44Z +11973 2005-08-17T17:55:58Z 1472 131 2005-08-21T19:55:58Z 2 2020-02-15T06:59:44Z +11974 2005-08-17T17:56:48Z 1609 485 2005-08-21T19:14:48Z 2 2020-02-15T06:59:44Z +11975 2005-08-17T17:58:39Z 3843 458 2005-08-20T19:11:39Z 2 2020-02-15T06:59:44Z +11976 2005-08-17T17:59:19Z 498 373 2005-08-23T14:51:19Z 2 2020-02-15T06:59:44Z +11977 2005-08-17T18:01:15Z 1528 536 2005-08-23T23:03:15Z 1 2020-02-15T06:59:44Z +11978 2005-08-17T18:02:10Z 4380 499 2005-08-18T20:40:10Z 2 2020-02-15T06:59:44Z +11979 2005-08-17T18:07:13Z 568 255 2005-08-19T23:12:13Z 1 2020-02-15T06:59:44Z +11980 2005-08-17T18:10:18Z 4165 589 2005-08-20T13:28:18Z 1 2020-02-15T06:59:44Z +11981 2005-08-17T18:10:40Z 3228 294 2005-08-20T16:56:40Z 1 2020-02-15T06:59:44Z +11982 2005-08-17T18:13:07Z 118 186 2005-08-18T19:06:07Z 1 2020-02-15T06:59:44Z +11983 2005-08-17T18:13:55Z 2580 304 2005-08-23T18:27:55Z 2 2020-02-15T06:59:44Z +11984 2005-08-17T18:16:30Z 3577 96 2005-08-24T21:09:30Z 2 2020-02-15T06:59:44Z +11985 2005-08-17T18:19:44Z 2208 198 2005-08-18T19:14:44Z 2 2020-02-15T06:59:44Z +11986 2005-08-17T18:21:58Z 1610 352 2005-08-18T13:05:58Z 1 2020-02-15T06:59:44Z +11987 2005-08-17T18:21:59Z 1478 494 2005-08-25T19:20:59Z 1 2020-02-15T06:59:44Z +11988 2005-08-17T18:23:50Z 3429 62 2005-08-18T22:30:50Z 2 2020-02-15T06:59:44Z +11989 2005-08-17T18:23:58Z 3686 439 2005-08-20T20:31:58Z 2 2020-02-15T06:59:44Z +11990 2005-08-17T18:26:22Z 3012 17 2005-08-19T14:34:22Z 2 2020-02-15T06:59:44Z +11991 2005-08-17T18:27:08Z 940 361 2005-08-25T14:07:08Z 1 2020-02-15T06:59:44Z +11992 2005-08-17T18:27:22Z 4132 136 2005-08-26T22:38:22Z 2 2020-02-15T06:59:44Z +11993 2005-08-17T18:27:49Z 295 303 2005-08-21T00:04:49Z 1 2020-02-15T06:59:44Z +11994 2005-08-17T18:29:35Z 3428 319 2005-08-25T23:39:35Z 1 2020-02-15T06:59:44Z +11995 2006-02-14T15:16:03Z 3953 69 1 2020-02-15T06:59:44Z +11996 2005-08-17T18:34:37Z 2720 510 2005-08-20T22:25:37Z 2 2020-02-15T06:59:44Z +11997 2005-08-17T18:34:38Z 2193 411 2005-08-26T00:12:38Z 2 2020-02-15T06:59:44Z +11998 2005-08-17T18:46:21Z 4258 299 2005-08-18T20:29:21Z 1 2020-02-15T06:59:44Z +11999 2005-08-17T18:47:07Z 4333 125 2005-08-20T23:26:07Z 2 2020-02-15T06:59:44Z +12000 2005-08-17T18:49:44Z 2256 149 2005-08-24T16:34:44Z 2 2020-02-15T06:59:44Z +12001 2006-02-14T15:16:03Z 4158 52 2 2020-02-15T06:59:44Z +12002 2005-08-17T18:56:02Z 1386 75 2005-08-20T17:36:02Z 1 2020-02-15T06:59:44Z +12003 2005-08-17T18:56:05Z 3868 70 2005-08-18T23:52:05Z 1 2020-02-15T06:59:44Z +12004 2005-08-17T18:56:53Z 2690 499 2005-08-26T14:56:53Z 1 2020-02-15T06:59:44Z +12005 2005-08-17T18:56:55Z 2062 403 2005-08-25T20:23:55Z 2 2020-02-15T06:59:44Z +12006 2005-08-17T19:09:12Z 4072 272 2005-08-24T13:50:12Z 1 2020-02-15T06:59:44Z +12007 2005-08-17T19:10:34Z 3007 268 2005-08-24T14:09:34Z 1 2020-02-15T06:59:44Z +12008 2005-08-17T19:16:18Z 865 562 2005-08-18T14:24:18Z 2 2020-02-15T06:59:44Z +12009 2006-02-14T15:16:03Z 2134 296 2 2020-02-15T06:59:44Z +12010 2005-08-17T19:17:54Z 1076 554 2005-08-26T00:41:54Z 1 2020-02-15T06:59:44Z +12011 2005-08-17T19:19:44Z 495 313 2005-08-23T00:56:44Z 2 2020-02-15T06:59:44Z +12012 2005-08-17T19:20:48Z 2698 69 2005-08-22T16:50:48Z 1 2020-02-15T06:59:44Z +12013 2005-08-17T19:23:02Z 3530 586 2005-08-23T00:31:02Z 2 2020-02-15T06:59:44Z +12014 2005-08-17T19:29:44Z 1778 554 2005-08-23T20:40:44Z 1 2020-02-15T06:59:44Z +12015 2005-08-17T19:32:44Z 593 11 2005-08-23T13:36:44Z 2 2020-02-15T06:59:44Z +12016 2005-08-17T19:33:24Z 2109 327 2005-08-21T19:59:24Z 2 2020-02-15T06:59:44Z +12017 2005-08-17T19:33:49Z 344 573 2005-08-22T01:16:49Z 2 2020-02-15T06:59:44Z +12018 2005-08-17T19:44:46Z 1921 319 2005-08-26T20:24:46Z 1 2020-02-15T06:59:44Z +12019 2005-08-17T19:48:55Z 2566 90 2005-08-21T18:20:55Z 1 2020-02-15T06:59:44Z +12020 2005-08-17T19:50:33Z 3258 72 2005-08-25T17:54:33Z 1 2020-02-15T06:59:44Z +12021 2005-08-17T19:52:43Z 3977 27 2005-08-23T21:49:43Z 1 2020-02-15T06:59:44Z +12022 2005-08-17T19:52:45Z 2067 461 2005-08-18T18:26:45Z 2 2020-02-15T06:59:44Z +12023 2005-08-17T19:54:54Z 247 22 2005-08-26T23:03:54Z 1 2020-02-15T06:59:44Z +12024 2005-08-17T19:57:34Z 2398 484 2005-08-21T23:00:34Z 2 2020-02-15T06:59:44Z +12025 2005-08-17T19:59:06Z 4019 209 2005-08-23T14:39:06Z 2 2020-02-15T06:59:44Z +12026 2005-08-17T20:00:10Z 1568 468 2005-08-26T01:54:10Z 1 2020-02-15T06:59:44Z +12027 2005-08-17T20:01:12Z 45 285 2005-08-26T21:08:12Z 2 2020-02-15T06:59:44Z +12028 2005-08-17T20:03:47Z 607 316 2005-08-23T17:09:47Z 2 2020-02-15T06:59:44Z +12029 2005-08-17T20:07:01Z 3516 148 2005-08-19T19:36:01Z 2 2020-02-15T06:59:44Z +12030 2005-08-17T20:10:48Z 449 434 2005-08-19T00:32:48Z 1 2020-02-15T06:59:44Z +12031 2005-08-17T20:11:35Z 2793 10 2005-08-24T23:48:35Z 2 2020-02-15T06:59:44Z +12032 2005-08-17T20:14:26Z 1106 141 2005-08-26T16:01:26Z 1 2020-02-15T06:59:44Z +12033 2005-08-17T20:14:34Z 2731 321 2005-08-26T00:22:34Z 2 2020-02-15T06:59:44Z +12034 2005-08-17T20:15:31Z 834 321 2005-08-24T15:46:31Z 2 2020-02-15T06:59:44Z +12035 2005-08-17T20:18:06Z 2335 469 2005-08-21T16:41:06Z 2 2020-02-15T06:59:44Z +12036 2005-08-17T20:19:06Z 3620 85 2005-08-18T19:57:06Z 2 2020-02-15T06:59:44Z +12037 2005-08-17T20:21:35Z 766 356 2005-08-22T17:16:35Z 2 2020-02-15T06:59:44Z +12038 2005-08-17T20:28:26Z 3794 148 2005-08-20T23:09:26Z 2 2020-02-15T06:59:44Z +12039 2005-08-17T20:29:08Z 4404 563 2005-08-23T21:20:08Z 2 2020-02-15T06:59:44Z +12040 2005-08-17T20:29:56Z 1288 558 2005-08-26T22:17:56Z 1 2020-02-15T06:59:44Z +12041 2005-08-17T20:34:33Z 2389 295 2005-08-19T00:47:33Z 1 2020-02-15T06:59:44Z +12042 2005-08-17T20:36:37Z 1772 570 2005-08-21T15:03:37Z 1 2020-02-15T06:59:44Z +12043 2005-08-17T20:38:21Z 3706 592 2005-08-22T16:52:21Z 2 2020-02-15T06:59:44Z +12044 2005-08-17T20:39:37Z 3377 388 2005-08-19T18:34:37Z 1 2020-02-15T06:59:44Z +12045 2005-08-17T20:40:46Z 469 556 2005-08-20T18:18:46Z 2 2020-02-15T06:59:44Z +12046 2005-08-17T20:47:46Z 3895 435 2005-08-19T16:09:46Z 2 2020-02-15T06:59:44Z +12047 2005-08-17T20:48:32Z 3886 251 2005-08-26T00:07:32Z 1 2020-02-15T06:59:44Z +12048 2005-08-17T20:49:24Z 3773 466 2005-08-27T02:01:24Z 2 2020-02-15T06:59:44Z +12049 2005-08-17T20:53:27Z 2433 178 2005-08-26T19:45:27Z 2 2020-02-15T06:59:44Z +12050 2005-08-17T20:55:25Z 2348 405 2005-08-22T20:31:25Z 2 2020-02-15T06:59:44Z +12051 2005-08-17T20:56:15Z 4001 579 2005-08-25T19:08:15Z 1 2020-02-15T06:59:44Z +12052 2005-08-17T20:57:02Z 99 536 2005-08-25T19:04:02Z 1 2020-02-15T06:59:44Z +12053 2005-08-17T20:57:27Z 4448 280 2005-08-20T19:51:27Z 1 2020-02-15T06:59:44Z +12054 2005-08-17T20:59:56Z 3780 53 2005-08-23T19:57:56Z 1 2020-02-15T06:59:44Z +12055 2005-08-17T21:02:19Z 1481 35 2005-08-18T15:24:19Z 1 2020-02-15T06:59:44Z +12056 2005-08-17T21:03:48Z 1091 460 2005-08-21T22:42:48Z 2 2020-02-15T06:59:44Z +12057 2005-08-17T21:04:35Z 1878 263 2005-08-25T00:17:35Z 1 2020-02-15T06:59:44Z +12058 2005-08-17T21:07:41Z 2438 540 2005-08-26T16:07:41Z 1 2020-02-15T06:59:44Z +12059 2005-08-17T21:09:23Z 4111 393 2005-08-25T23:09:23Z 1 2020-02-15T06:59:44Z +12060 2005-08-17T21:11:57Z 2373 127 2005-08-21T01:42:57Z 1 2020-02-15T06:59:44Z +12061 2005-08-17T21:13:35Z 144 532 2005-08-22T19:18:35Z 1 2020-02-15T06:59:44Z +12062 2005-08-17T21:24:47Z 1791 330 2005-08-20T20:35:47Z 2 2020-02-15T06:59:44Z +12063 2005-08-17T21:24:48Z 1141 550 2005-08-23T22:10:48Z 2 2020-02-15T06:59:44Z +12064 2006-02-14T15:16:03Z 298 284 1 2020-02-15T06:59:44Z +12065 2005-08-17T21:31:46Z 3644 77 2005-08-26T02:26:46Z 2 2020-02-15T06:59:44Z +12066 2006-02-14T15:16:03Z 2474 267 2 2020-02-15T06:59:44Z +12067 2005-08-17T21:36:47Z 2013 514 2005-08-22T01:10:47Z 2 2020-02-15T06:59:44Z +12068 2005-08-17T21:37:08Z 4327 388 2005-08-26T00:10:08Z 1 2020-02-15T06:59:44Z +12069 2005-08-17T21:39:40Z 631 389 2005-08-22T01:12:40Z 2 2020-02-15T06:59:44Z +12070 2005-08-17T21:46:47Z 1357 158 2005-08-22T22:59:47Z 1 2020-02-15T06:59:44Z +12071 2005-08-17T21:49:14Z 1874 507 2005-08-22T18:20:14Z 1 2020-02-15T06:59:44Z +12072 2005-08-17T21:50:25Z 209 61 2005-08-25T22:36:25Z 2 2020-02-15T06:59:44Z +12073 2005-08-17T21:50:39Z 2939 173 2005-08-21T02:59:39Z 1 2020-02-15T06:59:44Z +12074 2005-08-17T21:50:57Z 711 417 2005-08-20T00:58:57Z 2 2020-02-15T06:59:44Z +12075 2005-08-17T21:54:55Z 3147 125 2005-08-23T23:04:55Z 1 2020-02-15T06:59:44Z +12076 2005-08-17T21:58:19Z 4278 298 2005-08-20T22:10:19Z 1 2020-02-15T06:59:44Z +12077 2005-08-17T21:59:14Z 3589 550 2005-08-22T03:23:14Z 1 2020-02-15T06:59:44Z +12078 2005-08-17T22:00:22Z 684 137 2005-08-24T02:54:22Z 2 2020-02-15T06:59:44Z +12079 2005-08-17T22:04:17Z 646 230 2005-08-24T20:22:17Z 2 2020-02-15T06:59:44Z +12080 2005-08-17T22:08:04Z 1491 394 2005-08-19T22:55:04Z 2 2020-02-15T06:59:44Z +12081 2005-08-17T22:10:46Z 620 597 2005-08-22T22:37:46Z 1 2020-02-15T06:59:44Z +12082 2005-08-17T22:13:15Z 3435 521 2005-08-24T18:30:15Z 1 2020-02-15T06:59:44Z +12083 2005-08-17T22:13:37Z 1985 474 2005-08-19T19:01:37Z 2 2020-02-15T06:59:44Z +12084 2005-08-17T22:16:49Z 2706 60 2005-08-24T17:42:49Z 2 2020-02-15T06:59:44Z +12085 2005-08-17T22:17:09Z 600 31 2005-08-21T01:45:09Z 1 2020-02-15T06:59:44Z +12086 2005-08-17T22:20:01Z 3963 140 2005-08-26T02:14:01Z 1 2020-02-15T06:59:44Z +12087 2005-08-17T22:20:12Z 324 144 2005-08-20T02:11:12Z 2 2020-02-15T06:59:44Z +12088 2005-08-17T22:20:16Z 1754 360 2005-08-25T23:30:16Z 2 2020-02-15T06:59:44Z +12089 2005-08-17T22:20:29Z 651 538 2005-08-24T02:12:29Z 1 2020-02-15T06:59:44Z +12090 2005-08-17T22:21:43Z 3392 391 2005-08-20T23:53:43Z 2 2020-02-15T06:59:44Z +12091 2005-08-17T22:22:50Z 2161 555 2005-08-27T03:55:50Z 1 2020-02-15T06:59:44Z +12092 2005-08-17T22:28:15Z 3964 38 2005-08-18T16:46:15Z 2 2020-02-15T06:59:44Z +12093 2005-08-17T22:28:40Z 216 141 2005-08-22T02:05:40Z 1 2020-02-15T06:59:44Z +12094 2005-08-17T22:31:04Z 1050 130 2005-08-23T22:45:04Z 1 2020-02-15T06:59:44Z +12095 2005-08-17T22:32:37Z 1089 46 2005-08-20T04:00:37Z 1 2020-02-15T06:59:44Z +12096 2005-08-17T22:32:50Z 44 463 2005-08-25T03:33:50Z 1 2020-02-15T06:59:44Z +12097 2005-08-17T22:35:24Z 4135 325 2005-08-18T20:31:24Z 2 2020-02-15T06:59:44Z +12098 2005-08-17T22:38:31Z 534 545 2005-08-20T01:56:31Z 1 2020-02-15T06:59:44Z +12099 2005-08-17T22:38:54Z 1743 195 2005-08-18T21:29:54Z 2 2020-02-15T06:59:44Z +12100 2005-08-17T22:41:10Z 4365 391 2005-08-24T21:31:10Z 2 2020-02-15T06:59:44Z +12101 2006-02-14T15:16:03Z 1556 479 1 2020-02-15T06:59:44Z +12102 2005-08-17T22:45:26Z 4268 392 2005-08-24T01:47:26Z 2 2020-02-15T06:59:44Z +12103 2005-08-17T22:49:09Z 4363 153 2005-08-24T21:53:09Z 1 2020-02-15T06:59:44Z +12104 2005-08-17T22:53:00Z 4551 16 2005-08-23T19:49:00Z 1 2020-02-15T06:59:44Z +12105 2005-08-17T22:54:45Z 2848 390 2005-08-21T00:33:45Z 2 2020-02-15T06:59:44Z +12106 2005-08-17T22:55:32Z 3234 465 2005-08-19T23:55:32Z 2 2020-02-15T06:59:44Z +12107 2005-08-17T22:56:24Z 1060 141 2005-08-24T19:36:24Z 1 2020-02-15T06:59:44Z +12108 2005-08-17T22:56:39Z 1675 207 2005-08-26T19:37:39Z 1 2020-02-15T06:59:44Z +12109 2005-08-17T22:58:35Z 1423 509 2005-08-25T19:44:35Z 2 2020-02-15T06:59:44Z +12110 2005-08-17T22:59:46Z 2984 511 2005-08-23T17:51:46Z 1 2020-02-15T06:59:44Z +12111 2005-08-17T22:59:55Z 2905 317 2005-08-22T19:33:55Z 2 2020-02-15T06:59:44Z +12112 2005-08-17T23:00:31Z 4290 576 2005-08-25T02:05:31Z 1 2020-02-15T06:59:44Z +12113 2005-08-17T23:01:00Z 2707 393 2005-08-25T03:57:00Z 2 2020-02-15T06:59:44Z +12114 2005-08-17T23:02:00Z 1405 65 2005-08-26T18:02:00Z 1 2020-02-15T06:59:44Z +12115 2005-08-17T23:04:15Z 1228 457 2005-08-20T22:25:15Z 2 2020-02-15T06:59:44Z +12116 2006-02-14T15:16:03Z 3082 560 2 2020-02-15T06:59:44Z +12117 2005-08-17T23:11:12Z 4140 303 2005-08-22T23:56:12Z 1 2020-02-15T06:59:44Z +12118 2005-08-17T23:14:25Z 158 89 2005-08-26T22:26:25Z 1 2020-02-15T06:59:44Z +12119 2005-08-17T23:16:44Z 4298 567 2005-08-20T02:13:44Z 2 2020-02-15T06:59:44Z +12120 2005-08-17T23:16:46Z 2912 323 2005-08-19T00:11:46Z 2 2020-02-15T06:59:44Z +12121 2005-08-17T23:20:40Z 3423 69 2005-08-22T21:30:40Z 2 2020-02-15T06:59:44Z +12122 2005-08-17T23:20:45Z 4030 375 2005-08-25T04:23:45Z 2 2020-02-15T06:59:44Z +12123 2005-08-17T23:22:18Z 361 497 2005-08-19T23:36:18Z 2 2020-02-15T06:59:44Z +12124 2005-08-17T23:22:46Z 2036 22 2005-08-21T01:40:46Z 1 2020-02-15T06:59:44Z +12125 2005-08-17T23:24:25Z 136 573 2005-08-25T03:08:25Z 2 2020-02-15T06:59:44Z +12126 2005-08-17T23:25:21Z 2304 302 2005-08-23T21:51:21Z 1 2020-02-15T06:59:44Z +12127 2006-02-14T15:16:03Z 4218 582 2 2020-02-15T06:59:44Z +12128 2005-08-17T23:31:09Z 2252 415 2005-08-24T05:07:09Z 2 2020-02-15T06:59:44Z +12129 2005-08-17T23:31:25Z 891 146 2005-08-26T19:10:25Z 2 2020-02-15T06:59:44Z +12130 2006-02-14T15:16:03Z 1358 516 2 2020-02-15T06:59:44Z +12131 2005-08-17T23:34:16Z 3380 21 2005-08-26T01:18:16Z 1 2020-02-15T06:59:44Z +12132 2005-08-17T23:37:03Z 2600 403 2005-08-22T04:53:03Z 2 2020-02-15T06:59:44Z +12133 2005-08-17T23:47:16Z 1958 132 2005-08-19T03:46:16Z 2 2020-02-15T06:59:44Z +12134 2005-08-17T23:49:43Z 2682 288 2005-08-21T21:00:43Z 1 2020-02-15T06:59:44Z +12135 2005-08-17T23:50:24Z 1019 381 2005-08-23T18:01:24Z 2 2020-02-15T06:59:44Z +12136 2005-08-17T23:51:30Z 3944 527 2005-08-23T01:35:30Z 1 2020-02-15T06:59:44Z +12137 2005-08-17T23:52:26Z 3632 109 2005-08-27T00:19:26Z 1 2020-02-15T06:59:44Z +12138 2005-08-17T23:55:54Z 388 317 2005-08-26T23:32:54Z 1 2020-02-15T06:59:44Z +12139 2005-08-17T23:57:13Z 1537 342 2005-08-24T19:13:13Z 1 2020-02-15T06:59:44Z +12140 2005-08-17T23:57:55Z 322 408 2005-08-21T20:09:55Z 2 2020-02-15T06:59:44Z +12141 2006-02-14T15:16:03Z 731 101 1 2020-02-15T06:59:44Z +12142 2005-08-18T00:04:12Z 3748 373 2005-08-24T01:24:12Z 2 2020-02-15T06:59:44Z +12143 2005-08-18T00:06:26Z 2876 117 2005-08-24T02:45:26Z 2 2020-02-15T06:59:44Z +12144 2006-02-14T15:16:03Z 512 587 1 2020-02-15T06:59:44Z +12145 2005-08-18T00:10:04Z 3482 5 2005-08-26T00:51:04Z 1 2020-02-15T06:59:44Z +12146 2005-08-18T00:10:04Z 3833 434 2005-08-25T19:18:04Z 2 2020-02-15T06:59:44Z +12147 2005-08-18T00:10:20Z 705 41 2005-08-23T20:36:20Z 2 2020-02-15T06:59:44Z +12148 2005-08-18T00:13:15Z 2409 254 2005-08-20T01:27:15Z 2 2020-02-15T06:59:44Z +12149 2005-08-18T00:13:51Z 3696 277 2005-08-26T19:47:51Z 1 2020-02-15T06:59:44Z +12150 2005-08-18T00:13:55Z 3781 555 2005-08-20T23:35:55Z 2 2020-02-15T06:59:44Z +12151 2005-08-18T00:14:03Z 1976 4 2005-08-18T23:52:03Z 2 2020-02-15T06:59:44Z +12152 2005-08-18T00:21:35Z 2797 367 2005-08-22T02:51:35Z 1 2020-02-15T06:59:44Z +12153 2005-08-18T00:22:30Z 3929 387 2005-08-23T04:13:30Z 2 2020-02-15T06:59:44Z +12154 2005-08-18T00:23:56Z 2491 163 2005-08-21T00:31:56Z 2 2020-02-15T06:59:44Z +12155 2005-08-18T00:24:30Z 2065 315 2005-08-18T19:12:30Z 2 2020-02-15T06:59:44Z +12156 2005-08-18T00:27:33Z 3270 212 2005-08-26T01:43:33Z 1 2020-02-15T06:59:44Z +12157 2005-08-18T00:33:45Z 2311 569 2005-08-22T19:33:45Z 1 2020-02-15T06:59:44Z +12158 2005-08-18T00:34:20Z 4121 289 2005-08-22T20:10:20Z 2 2020-02-15T06:59:44Z +12159 2005-08-18T00:36:09Z 2243 106 2005-08-27T06:31:09Z 1 2020-02-15T06:59:44Z +12160 2005-08-18T00:37:59Z 1328 481 2005-08-19T20:51:59Z 1 2020-02-15T06:59:44Z +12161 2005-08-18T00:41:46Z 2420 444 2005-08-26T22:59:46Z 2 2020-02-15T06:59:44Z +12162 2005-08-18T00:44:30Z 2697 284 2005-08-25T03:34:30Z 1 2020-02-15T06:59:44Z +12163 2005-08-18T00:46:01Z 1349 455 2005-08-22T06:16:01Z 1 2020-02-15T06:59:44Z +12164 2005-08-18T00:46:38Z 3849 587 2005-08-19T04:38:38Z 2 2020-02-15T06:59:44Z +12165 2005-08-18T00:53:37Z 4215 24 2005-08-27T00:09:37Z 2 2020-02-15T06:59:44Z +12166 2005-08-18T00:57:06Z 3627 184 2005-08-26T03:13:06Z 2 2020-02-15T06:59:44Z +12167 2005-08-18T01:00:02Z 3085 338 2005-08-21T00:04:02Z 2 2020-02-15T06:59:44Z +12168 2005-08-18T01:03:52Z 2859 535 2005-08-18T20:19:52Z 1 2020-02-15T06:59:44Z +12169 2005-08-18T01:05:54Z 2281 323 2005-08-24T02:16:54Z 2 2020-02-15T06:59:44Z +12170 2005-08-18T01:06:10Z 1125 289 2005-08-25T02:40:10Z 2 2020-02-15T06:59:44Z +12171 2005-08-18T01:06:13Z 454 457 2005-08-22T19:39:13Z 2 2020-02-15T06:59:44Z +12172 2005-08-18T01:07:00Z 1162 226 2005-08-22T21:01:00Z 2 2020-02-15T06:59:44Z +12173 2005-08-18T01:08:34Z 2830 41 2005-08-24T20:52:34Z 1 2020-02-15T06:59:44Z +12174 2005-08-18T01:08:53Z 1458 101 2005-08-20T03:28:53Z 1 2020-02-15T06:59:44Z +12175 2005-08-18T01:10:17Z 4558 328 2005-08-19T05:25:17Z 2 2020-02-15T06:59:44Z +12176 2005-08-18T01:10:33Z 3873 255 2005-08-24T02:45:33Z 2 2020-02-15T06:59:44Z +12177 2005-08-18T01:15:47Z 522 470 2005-08-24T23:23:47Z 2 2020-02-15T06:59:44Z +12178 2005-08-18T01:17:32Z 1152 276 2005-08-25T19:32:32Z 1 2020-02-15T06:59:44Z +12179 2005-08-18T01:21:21Z 1499 222 2005-08-19T00:59:21Z 1 2020-02-15T06:59:44Z +12180 2005-08-18T01:28:15Z 2276 20 2005-08-20T20:52:15Z 2 2020-02-15T06:59:44Z +12181 2005-08-18T01:28:18Z 532 81 2005-08-23T21:17:18Z 2 2020-02-15T06:59:44Z +12182 2005-08-18T01:30:19Z 296 555 2005-08-21T05:52:19Z 1 2020-02-15T06:59:44Z +12183 2005-08-18T01:34:13Z 3153 344 2005-08-24T04:38:13Z 1 2020-02-15T06:59:44Z +12184 2005-08-18T01:36:00Z 1723 51 2005-08-21T01:59:00Z 1 2020-02-15T06:59:44Z +12185 2005-08-18T01:40:14Z 1558 588 2005-08-25T05:04:14Z 1 2020-02-15T06:59:44Z +12186 2005-08-18T01:43:36Z 1342 312 2005-08-23T07:13:36Z 1 2020-02-15T06:59:44Z +12187 2005-08-18T01:45:50Z 3360 38 2005-08-22T20:12:50Z 1 2020-02-15T06:59:44Z +12188 2005-08-18T01:51:43Z 2989 456 2005-08-18T22:23:43Z 1 2020-02-15T06:59:44Z +12189 2005-08-18T01:51:44Z 1764 363 2005-08-26T01:01:44Z 1 2020-02-15T06:59:44Z +12190 2005-08-18T01:54:44Z 2464 28 2005-08-27T04:32:44Z 1 2020-02-15T06:59:44Z +12191 2005-08-18T01:57:11Z 2667 316 2005-08-22T22:53:11Z 2 2020-02-15T06:59:44Z +12192 2005-08-18T02:01:40Z 3450 270 2005-08-21T05:45:40Z 1 2020-02-15T06:59:44Z +12193 2005-08-18T02:03:59Z 1086 290 2005-08-25T05:32:59Z 2 2020-02-15T06:59:44Z +12194 2005-08-18T02:04:47Z 292 558 2005-08-25T20:45:47Z 2 2020-02-15T06:59:44Z +12195 2005-08-18T02:07:49Z 943 347 2005-08-19T23:54:49Z 2 2020-02-15T06:59:44Z +12196 2005-08-18T02:08:48Z 4302 111 2005-08-26T00:39:48Z 1 2020-02-15T06:59:44Z +12197 2005-08-18T02:08:58Z 3687 564 2005-08-26T21:54:58Z 2 2020-02-15T06:59:44Z +12198 2005-08-18T02:09:20Z 1628 86 2005-08-21T21:28:20Z 2 2020-02-15T06:59:44Z +12199 2005-08-18T02:09:23Z 424 96 2005-08-22T20:33:23Z 1 2020-02-15T06:59:44Z +12200 2005-08-18T02:12:33Z 840 52 2005-08-18T20:47:33Z 2 2020-02-15T06:59:44Z +12201 2005-08-18T02:14:06Z 3676 540 2005-08-23T04:44:06Z 1 2020-02-15T06:59:44Z +12202 2005-08-18T02:14:08Z 672 563 2005-08-24T04:35:08Z 1 2020-02-15T06:59:44Z +12203 2005-08-18T02:18:52Z 4228 591 2005-08-22T21:01:52Z 1 2020-02-15T06:59:44Z +12204 2005-08-18T02:20:35Z 304 575 2005-08-26T01:27:35Z 2 2020-02-15T06:59:44Z +12205 2005-08-18T02:21:08Z 774 437 2005-08-27T00:08:08Z 2 2020-02-15T06:59:44Z +12206 2005-08-18T02:22:20Z 3275 254 2005-08-23T05:36:20Z 1 2020-02-15T06:59:44Z +12207 2005-08-18T02:24:07Z 3745 265 2005-08-22T07:53:07Z 1 2020-02-15T06:59:44Z +12208 2005-08-18T02:25:25Z 2039 551 2005-08-20T04:53:25Z 2 2020-02-15T06:59:44Z +12209 2005-08-18T02:27:20Z 279 243 2005-08-21T00:41:20Z 2 2020-02-15T06:59:44Z +12210 2005-08-18T02:27:29Z 3035 217 2005-08-20T23:32:29Z 2 2020-02-15T06:59:44Z +12211 2005-08-18T02:31:18Z 1484 19 2005-08-26T02:36:18Z 1 2020-02-15T06:59:44Z +12212 2005-08-18T02:33:29Z 3898 449 2005-08-25T07:10:29Z 2 2020-02-15T06:59:44Z +12213 2005-08-18T02:33:55Z 4058 157 2005-08-24T03:14:55Z 1 2020-02-15T06:59:44Z +12214 2005-08-18T02:34:22Z 2094 231 2005-08-21T07:48:22Z 2 2020-02-15T06:59:44Z +12215 2005-08-18T02:35:39Z 4095 47 2005-08-24T00:36:39Z 1 2020-02-15T06:59:44Z +12216 2005-08-18T02:37:07Z 4139 131 2005-08-19T02:09:07Z 2 2020-02-15T06:59:44Z +12217 2005-08-18T02:44:44Z 2556 105 2005-08-24T03:27:44Z 1 2020-02-15T06:59:44Z +12218 2005-08-18T02:48:14Z 1933 70 2005-08-21T01:52:14Z 2 2020-02-15T06:59:44Z +12219 2005-08-18T02:49:54Z 2249 271 2005-08-23T07:52:54Z 1 2020-02-15T06:59:44Z +12220 2005-08-18T02:50:02Z 982 530 2005-08-22T00:20:02Z 1 2020-02-15T06:59:44Z +12221 2005-08-18T02:50:51Z 2488 98 2005-08-27T06:22:51Z 2 2020-02-15T06:59:44Z +12222 2006-02-14T15:16:03Z 3949 22 1 2020-02-15T06:59:44Z +12223 2005-08-18T02:58:40Z 4142 397 2005-08-23T23:30:40Z 2 2020-02-15T06:59:44Z +12224 2005-08-18T02:59:09Z 1781 372 2005-08-19T06:22:09Z 1 2020-02-15T06:59:44Z +12225 2005-08-18T03:00:11Z 1876 306 2005-08-24T05:01:11Z 1 2020-02-15T06:59:44Z +12226 2005-08-18T03:00:48Z 682 234 2005-08-25T00:43:48Z 2 2020-02-15T06:59:44Z +12227 2005-08-18T03:04:28Z 3671 591 2005-08-21T08:52:28Z 2 2020-02-15T06:59:44Z +12228 2005-08-18T03:08:10Z 2772 9 2005-08-20T02:48:10Z 1 2020-02-15T06:59:44Z +12229 2005-08-18T03:08:23Z 1123 382 2005-08-22T03:42:23Z 1 2020-02-15T06:59:44Z +12230 2005-08-18T03:11:04Z 1910 231 2005-08-27T04:06:04Z 1 2020-02-15T06:59:44Z +12231 2005-08-18T03:11:44Z 1115 231 2005-08-24T03:26:44Z 1 2020-02-15T06:59:44Z +12232 2005-08-18T03:14:14Z 2399 87 2005-08-19T05:44:14Z 2 2020-02-15T06:59:44Z +12233 2005-08-18T03:16:54Z 174 535 2005-08-22T04:48:54Z 2 2020-02-15T06:59:44Z +12234 2005-08-18T03:17:33Z 3823 352 2005-08-25T04:44:33Z 2 2020-02-15T06:59:44Z +12235 2005-08-18T03:17:50Z 957 595 2005-08-20T02:49:50Z 1 2020-02-15T06:59:44Z +12236 2005-08-18T03:19:29Z 1190 474 2005-08-23T07:39:29Z 2 2020-02-15T06:59:44Z +12237 2005-08-18T03:24:38Z 4422 381 2005-08-25T09:05:38Z 1 2020-02-15T06:59:44Z +12238 2005-08-18T03:25:08Z 4043 46 2005-08-20T02:41:08Z 2 2020-02-15T06:59:44Z +12239 2005-08-18T03:26:42Z 1948 75 2005-08-24T23:48:42Z 1 2020-02-15T06:59:44Z +12240 2005-08-18T03:27:11Z 1168 30 2005-08-26T04:34:11Z 2 2020-02-15T06:59:44Z +12241 2005-08-18T03:33:17Z 1261 248 2005-08-21T03:13:17Z 2 2020-02-15T06:59:44Z +12242 2005-08-18T03:37:31Z 2095 121 2005-08-25T06:50:31Z 1 2020-02-15T06:59:44Z +12243 2005-08-18T03:38:54Z 1829 354 2005-08-27T06:56:54Z 2 2020-02-15T06:59:44Z +12244 2005-08-18T03:39:11Z 4441 362 2005-08-21T02:57:11Z 2 2020-02-15T06:59:44Z +12245 2005-08-18T03:46:40Z 2960 576 2005-08-24T22:27:40Z 2 2020-02-15T06:59:44Z +12246 2005-08-18T03:48:41Z 3199 258 2005-08-25T05:12:41Z 1 2020-02-15T06:59:44Z +12247 2005-08-18T03:51:51Z 2264 254 2005-08-24T05:36:51Z 2 2020-02-15T06:59:44Z +12248 2005-08-18T03:53:18Z 2120 562 2005-08-22T04:53:18Z 1 2020-02-15T06:59:44Z +12249 2005-08-18T03:53:34Z 3586 135 2005-08-21T01:14:34Z 1 2020-02-15T06:59:44Z +12250 2005-08-18T03:57:29Z 921 1 2005-08-22T23:05:29Z 1 2020-02-15T06:59:44Z +12251 2005-08-18T03:59:02Z 3044 276 2005-08-19T02:38:02Z 1 2020-02-15T06:59:44Z +12252 2005-08-18T03:59:51Z 127 350 2005-08-25T08:54:51Z 2 2020-02-15T06:59:44Z +12253 2005-08-18T04:00:50Z 566 446 2005-08-19T04:43:50Z 1 2020-02-15T06:59:44Z +12254 2005-08-18T04:05:29Z 2858 6 2005-08-23T04:17:29Z 1 2020-02-15T06:59:44Z +12255 2005-08-18T04:07:20Z 2100 266 2005-08-21T22:19:20Z 1 2020-02-15T06:59:44Z +12256 2005-08-18T04:09:39Z 2975 572 2005-08-22T01:53:39Z 2 2020-02-15T06:59:45Z +12257 2005-08-18T04:11:03Z 269 87 2005-08-25T01:20:03Z 2 2020-02-15T06:59:45Z +12258 2005-08-18T04:11:13Z 2861 83 2005-08-21T23:40:13Z 2 2020-02-15T06:59:45Z +12259 2005-08-18T04:14:35Z 2904 429 2005-08-18T22:30:35Z 2 2020-02-15T06:59:45Z +12260 2005-08-18T04:15:43Z 1352 150 2005-08-26T23:31:43Z 1 2020-02-15T06:59:45Z +12261 2005-08-18T04:16:06Z 4076 485 2005-08-27T08:04:06Z 1 2020-02-15T06:59:45Z +12262 2005-08-18T04:16:15Z 591 125 2005-08-20T09:16:15Z 1 2020-02-15T06:59:45Z +12263 2005-08-18T04:16:18Z 4053 131 2005-08-21T07:22:18Z 1 2020-02-15T06:59:45Z +12264 2005-08-18T04:17:33Z 3073 87 2005-08-26T08:07:33Z 1 2020-02-15T06:59:45Z +12265 2005-08-18T04:22:01Z 537 247 2005-08-20T03:22:01Z 1 2020-02-15T06:59:45Z +12266 2005-08-18T04:22:31Z 2192 467 2005-08-19T04:25:31Z 2 2020-02-15T06:59:45Z +12267 2005-08-18T04:24:30Z 652 388 2005-08-26T03:01:30Z 2 2020-02-15T06:59:45Z +12268 2005-08-18T04:26:54Z 93 39 2005-08-23T06:40:54Z 2 2020-02-15T06:59:45Z +12269 2005-08-18T04:27:54Z 724 573 2005-08-25T07:03:54Z 1 2020-02-15T06:59:45Z +12270 2005-08-18T04:32:05Z 2456 190 2005-08-21T01:37:05Z 2 2020-02-15T06:59:45Z +12271 2005-08-18T04:33:11Z 3866 471 2005-08-20T23:10:11Z 1 2020-02-15T06:59:45Z +12272 2005-08-18T04:39:10Z 1964 15 2005-08-24T09:41:10Z 1 2020-02-15T06:59:45Z +12273 2005-08-18T04:40:50Z 3539 431 2005-08-25T01:44:50Z 2 2020-02-15T06:59:45Z +12274 2005-08-18T04:41:47Z 265 47 2005-08-27T07:00:47Z 1 2020-02-15T06:59:45Z +12275 2005-08-18T04:42:02Z 1474 507 2005-08-25T00:50:02Z 1 2020-02-15T06:59:45Z +12276 2005-08-18T04:43:22Z 4491 397 2005-08-22T01:49:22Z 2 2020-02-15T06:59:45Z +12277 2006-02-14T15:16:03Z 407 33 2 2020-02-15T06:59:45Z +12278 2005-08-18T04:46:45Z 3205 294 2005-08-24T08:59:45Z 2 2020-02-15T06:59:45Z +12279 2005-08-18T04:47:30Z 4159 421 2005-08-19T09:47:30Z 2 2020-02-15T06:59:45Z +12280 2005-08-18T04:49:27Z 4032 46 2005-08-21T03:39:27Z 2 2020-02-15T06:59:45Z +12281 2005-08-18T04:50:32Z 4576 417 2005-08-21T00:14:32Z 2 2020-02-15T06:59:45Z +12282 2005-08-18T04:54:20Z 3623 173 2005-08-23T05:28:20Z 2 2020-02-15T06:59:45Z +12283 2005-08-18T04:54:25Z 574 240 2005-08-23T04:02:25Z 1 2020-02-15T06:59:45Z +12284 2005-08-18T04:55:49Z 3162 147 2005-08-22T08:45:49Z 2 2020-02-15T06:59:45Z +12285 2005-08-18T04:56:43Z 3531 215 2005-08-19T23:32:43Z 2 2020-02-15T06:59:45Z +12286 2005-08-18T04:57:59Z 3729 34 2005-08-18T23:20:59Z 2 2020-02-15T06:59:45Z +12287 2005-08-18T04:58:06Z 2238 136 2005-08-24T00:06:06Z 1 2020-02-15T06:59:45Z +12288 2005-08-18T05:01:20Z 4401 523 2005-08-25T09:51:20Z 2 2020-02-15T06:59:45Z +12289 2005-08-18T05:05:28Z 443 575 2005-08-26T09:02:28Z 1 2020-02-15T06:59:45Z +12290 2005-08-18T05:08:03Z 4100 283 2005-08-23T08:10:03Z 2 2020-02-15T06:59:45Z +12291 2005-08-18T05:08:37Z 4270 73 2005-08-23T09:01:37Z 1 2020-02-15T06:59:45Z +12292 2005-08-18T05:08:54Z 1417 58 2005-08-27T02:51:54Z 1 2020-02-15T06:59:45Z +12293 2005-08-18T05:13:36Z 614 514 2005-08-25T04:00:36Z 2 2020-02-15T06:59:45Z +12294 2005-08-18T05:14:44Z 2479 4 2005-08-27T01:32:44Z 2 2020-02-15T06:59:45Z +12295 2005-08-18T05:15:46Z 1651 532 2005-08-26T02:23:46Z 2 2020-02-15T06:59:45Z +12296 2005-08-18T05:16:28Z 2091 258 2005-08-22T10:32:28Z 1 2020-02-15T06:59:45Z +12297 2005-08-18T05:19:57Z 903 436 2005-08-21T00:53:57Z 1 2020-02-15T06:59:45Z +12298 2005-08-18T05:30:31Z 904 46 2005-08-27T07:33:31Z 1 2020-02-15T06:59:45Z +12299 2005-08-18T05:32:32Z 892 176 2005-08-22T08:14:32Z 2 2020-02-15T06:59:45Z +12300 2005-08-18T05:36:14Z 3213 540 2005-08-25T00:20:14Z 2 2020-02-15T06:59:45Z +12301 2005-08-18T05:36:20Z 2293 317 2005-08-23T03:15:20Z 1 2020-02-15T06:59:45Z +12302 2005-08-18T05:41:39Z 765 514 2005-08-22T06:02:39Z 1 2020-02-15T06:59:45Z +12303 2005-08-18T05:43:22Z 1604 245 2005-08-27T08:54:22Z 2 2020-02-15T06:59:45Z +12304 2005-08-18T05:44:29Z 1381 228 2005-08-24T04:31:29Z 1 2020-02-15T06:59:45Z +12305 2005-08-18T05:46:29Z 4463 534 2005-08-22T11:14:29Z 2 2020-02-15T06:59:45Z +12306 2005-08-18T05:47:55Z 3853 541 2005-08-21T01:56:55Z 1 2020-02-15T06:59:45Z +12307 2005-08-18T05:48:23Z 2679 187 2005-08-26T02:32:23Z 1 2020-02-15T06:59:45Z +12308 2005-08-18T05:48:53Z 2877 569 2005-08-22T09:03:53Z 1 2020-02-15T06:59:45Z +12309 2005-08-18T05:58:40Z 762 9 2005-08-20T02:20:40Z 2 2020-02-15T06:59:45Z +12310 2005-08-18T06:02:34Z 3814 385 2005-08-24T01:08:34Z 2 2020-02-15T06:59:45Z +12311 2005-08-18T06:07:00Z 1650 211 2005-08-21T07:54:00Z 2 2020-02-15T06:59:45Z +12312 2005-08-18T06:07:26Z 80 185 2005-08-21T02:07:26Z 2 2020-02-15T06:59:45Z +12313 2005-08-18T06:07:31Z 2053 180 2005-08-27T00:20:31Z 1 2020-02-15T06:59:45Z +12314 2005-08-18T06:10:02Z 2204 455 2005-08-25T02:48:02Z 1 2020-02-15T06:59:45Z +12315 2005-08-18T06:15:06Z 2012 579 2005-08-24T07:45:06Z 2 2020-02-15T06:59:45Z +12316 2005-08-18T06:16:09Z 4325 94 2005-08-27T05:54:09Z 2 2020-02-15T06:59:45Z +12317 2005-08-18T06:17:06Z 90 510 2005-08-22T08:56:06Z 1 2020-02-15T06:59:45Z +12318 2005-08-18T06:21:56Z 3694 332 2005-08-27T06:07:56Z 1 2020-02-15T06:59:45Z +12319 2005-08-18T06:26:45Z 999 368 2005-08-23T01:35:45Z 1 2020-02-15T06:59:45Z +12320 2005-08-18T06:26:51Z 3248 267 2005-08-20T04:00:51Z 1 2020-02-15T06:59:45Z +12321 2005-08-18T06:27:05Z 516 274 2005-08-24T02:26:05Z 1 2020-02-15T06:59:45Z +12322 2005-08-18T06:35:28Z 4235 365 2005-08-23T07:34:28Z 1 2020-02-15T06:59:45Z +12323 2005-08-18T06:36:22Z 4107 336 2005-08-26T11:36:22Z 1 2020-02-15T06:59:45Z +12324 2005-08-18T06:38:20Z 2436 221 2005-08-20T02:28:20Z 2 2020-02-15T06:59:45Z +12325 2005-08-18T06:41:30Z 1844 404 2005-08-26T02:49:30Z 1 2020-02-15T06:59:45Z +12326 2005-08-18T06:41:59Z 1865 114 2005-08-19T10:16:59Z 2 2020-02-15T06:59:45Z +12327 2005-08-18T06:43:22Z 2425 261 2005-08-25T10:50:22Z 2 2020-02-15T06:59:45Z +12328 2005-08-18T06:43:56Z 1355 77 2005-08-23T10:19:56Z 2 2020-02-15T06:59:45Z +12329 2005-08-18T06:44:30Z 3127 397 2005-08-25T04:05:30Z 1 2020-02-15T06:59:45Z +12330 2005-08-18T06:46:33Z 889 587 2005-08-26T11:35:33Z 2 2020-02-15T06:59:45Z +12331 2005-08-18T06:47:19Z 4565 483 2005-08-25T05:51:19Z 2 2020-02-15T06:59:45Z +12332 2005-08-18T06:51:05Z 627 235 2005-08-20T04:28:05Z 2 2020-02-15T06:59:45Z +12333 2005-08-18T06:51:39Z 4370 18 2005-08-21T01:44:39Z 2 2020-02-15T06:59:45Z +12334 2005-08-18T06:52:36Z 2629 160 2005-08-25T12:06:36Z 1 2020-02-15T06:59:45Z +12335 2005-08-18T06:59:15Z 2776 150 2005-08-20T06:47:15Z 1 2020-02-15T06:59:45Z +12336 2005-08-18T06:59:41Z 2484 75 2005-08-23T01:36:41Z 1 2020-02-15T06:59:45Z +12337 2005-08-18T07:02:24Z 4221 117 2005-08-20T10:11:24Z 1 2020-02-15T06:59:45Z +12338 2005-08-18T07:04:24Z 274 408 2005-08-19T08:36:24Z 2 2020-02-15T06:59:45Z +12339 2005-08-18T07:05:06Z 1600 370 2005-08-19T02:27:06Z 2 2020-02-15T06:59:45Z +12340 2005-08-18T07:07:01Z 3561 239 2005-08-20T05:06:01Z 1 2020-02-15T06:59:45Z +12341 2005-08-18T07:09:27Z 130 154 2005-08-21T03:44:27Z 1 2020-02-15T06:59:45Z +12342 2005-08-18T07:12:46Z 1408 63 2005-08-21T07:44:46Z 1 2020-02-15T06:59:45Z +12343 2005-08-18T07:15:13Z 448 507 2005-08-27T11:07:13Z 1 2020-02-15T06:59:45Z +12344 2005-08-18T07:15:19Z 3675 269 2005-08-24T04:58:19Z 2 2020-02-15T06:59:45Z +12345 2005-08-18T07:16:58Z 2359 44 2005-08-25T05:50:58Z 1 2020-02-15T06:59:45Z +12346 2005-08-18T07:17:55Z 1200 265 2005-08-21T11:35:55Z 2 2020-02-15T06:59:45Z +12347 2005-08-18T07:18:10Z 1788 454 2005-08-19T05:49:10Z 1 2020-02-15T06:59:45Z +12348 2005-08-18T07:21:47Z 434 186 2005-08-25T04:41:47Z 2 2020-02-15T06:59:45Z +12349 2005-08-18T07:23:42Z 4191 545 2005-08-19T04:25:42Z 1 2020-02-15T06:59:45Z +12350 2005-08-18T07:29:46Z 1333 172 2005-08-21T12:50:46Z 1 2020-02-15T06:59:45Z +12351 2005-08-18T07:32:12Z 2299 95 2005-08-24T04:29:12Z 2 2020-02-15T06:59:45Z +12352 2006-02-14T15:16:03Z 643 155 1 2020-02-15T06:59:45Z +12353 2005-08-18T07:33:08Z 1594 141 2005-08-21T03:42:08Z 2 2020-02-15T06:59:45Z +12354 2005-08-18T07:34:07Z 2913 499 2005-08-26T05:56:07Z 1 2020-02-15T06:59:45Z +12355 2005-08-18T07:36:23Z 4112 452 2005-08-20T08:59:23Z 1 2020-02-15T06:59:45Z +12356 2005-08-18T07:37:05Z 493 529 2005-08-24T10:49:05Z 1 2020-02-15T06:59:45Z +12357 2005-08-18T07:40:52Z 166 19 2005-08-22T02:51:52Z 1 2020-02-15T06:59:45Z +12358 2005-08-18T07:41:43Z 504 16 2005-08-20T03:46:43Z 1 2020-02-15T06:59:45Z +12359 2005-08-18T07:44:05Z 4172 28 2005-08-19T02:26:05Z 1 2020-02-15T06:59:45Z +12360 2005-08-18T07:46:35Z 929 123 2005-08-26T12:01:35Z 1 2020-02-15T06:59:45Z +12361 2005-08-18T07:47:31Z 1418 250 2005-08-22T12:08:31Z 2 2020-02-15T06:59:45Z +12362 2005-08-18T07:48:05Z 3131 367 2005-08-20T05:16:05Z 2 2020-02-15T06:59:45Z +12363 2005-08-18T07:52:49Z 3447 181 2005-08-26T03:20:49Z 2 2020-02-15T06:59:45Z +12364 2005-08-18T07:55:09Z 3398 84 2005-08-19T05:29:09Z 2 2020-02-15T06:59:45Z +12365 2005-08-18T07:55:09Z 4350 303 2005-08-24T05:42:09Z 1 2020-02-15T06:59:45Z +12366 2005-08-18T07:55:14Z 3799 115 2005-08-22T06:12:14Z 1 2020-02-15T06:59:45Z +12367 2005-08-18T07:57:14Z 1822 7 2005-08-27T07:07:14Z 2 2020-02-15T06:59:45Z +12368 2005-08-18T07:57:38Z 3777 392 2005-08-25T05:49:38Z 2 2020-02-15T06:59:45Z +12369 2005-08-18T07:57:43Z 484 337 2005-08-26T09:36:43Z 1 2020-02-15T06:59:45Z +12370 2005-08-18T07:57:47Z 3343 503 2005-08-22T11:32:47Z 1 2020-02-15T06:59:45Z +12371 2005-08-18T08:02:46Z 622 451 2005-08-19T02:50:46Z 2 2020-02-15T06:59:45Z +12372 2005-08-18T08:04:35Z 2982 131 2005-08-27T08:13:35Z 2 2020-02-15T06:59:45Z +12373 2005-08-18T08:07:25Z 777 367 2005-08-27T03:41:25Z 1 2020-02-15T06:59:45Z +12374 2005-08-18T08:07:45Z 939 74 2005-08-26T10:42:45Z 2 2020-02-15T06:59:45Z +12375 2005-08-18T08:20:08Z 3508 365 2005-08-21T08:50:08Z 2 2020-02-15T06:59:45Z +12376 2005-08-18T08:20:29Z 852 116 2005-08-20T13:20:29Z 1 2020-02-15T06:59:45Z +12377 2005-08-18T08:26:05Z 4564 31 2005-08-23T02:51:05Z 2 2020-02-15T06:59:45Z +12378 2005-08-18T08:26:13Z 4418 266 2005-08-19T07:21:13Z 1 2020-02-15T06:59:45Z +12379 2005-08-18T08:26:48Z 2879 99 2005-08-19T10:08:48Z 2 2020-02-15T06:59:45Z +12380 2005-08-18T08:27:28Z 55 215 2005-08-25T02:58:28Z 2 2020-02-15T06:59:45Z +12381 2005-08-18T08:31:43Z 3651 190 2005-08-23T12:24:43Z 2 2020-02-15T06:59:45Z +12382 2005-08-18T08:32:33Z 3049 566 2005-08-26T03:45:33Z 2 2020-02-15T06:59:45Z +12383 2005-08-18T08:36:03Z 1641 295 2005-08-23T03:30:03Z 2 2020-02-15T06:59:45Z +12384 2005-08-18T08:36:58Z 2557 193 2005-08-23T05:08:58Z 1 2020-02-15T06:59:45Z +12385 2005-08-18T08:39:33Z 3143 146 2005-08-21T14:22:33Z 1 2020-02-15T06:59:45Z +12386 2005-08-18T08:45:57Z 3303 199 2005-08-24T04:50:57Z 2 2020-02-15T06:59:45Z +12387 2005-08-18T08:46:24Z 3604 530 2005-08-21T02:56:24Z 2 2020-02-15T06:59:45Z +12388 2005-08-18T08:48:09Z 4016 555 2005-08-26T09:05:09Z 2 2020-02-15T06:59:45Z +12389 2005-08-18T08:48:36Z 1891 394 2005-08-22T08:59:36Z 2 2020-02-15T06:59:45Z +12390 2005-08-18T08:51:42Z 3603 377 2005-08-23T13:06:42Z 1 2020-02-15T06:59:45Z +12391 2005-08-18T08:52:53Z 1507 307 2005-08-22T12:15:53Z 2 2020-02-15T06:59:45Z +12392 2005-08-18T08:57:58Z 2695 113 2005-08-25T05:20:58Z 2 2020-02-15T06:59:45Z +12393 2005-08-18T09:02:41Z 2435 396 2005-08-26T12:47:41Z 1 2020-02-15T06:59:45Z +12394 2005-08-18T09:05:15Z 3605 330 2005-08-23T11:10:15Z 1 2020-02-15T06:59:45Z +12395 2005-08-18T09:06:30Z 2020 541 2005-08-21T12:09:30Z 2 2020-02-15T06:59:45Z +12396 2005-08-18T09:11:23Z 3624 40 2005-08-26T05:35:23Z 2 2020-02-15T06:59:45Z +12397 2005-08-18T09:12:52Z 1872 371 2005-08-27T10:44:52Z 2 2020-02-15T06:59:45Z +12398 2005-08-18T09:13:24Z 4247 321 2005-08-27T14:58:24Z 1 2020-02-15T06:59:45Z +12399 2005-08-18T09:13:42Z 3950 347 2005-08-27T11:44:42Z 1 2020-02-15T06:59:45Z +12400 2005-08-18T09:19:12Z 1767 10 2005-08-26T06:52:12Z 1 2020-02-15T06:59:45Z +12401 2005-08-18T09:20:51Z 4314 479 2005-08-21T05:50:51Z 2 2020-02-15T06:59:45Z +12402 2005-08-18T09:27:34Z 385 123 2005-08-25T13:10:34Z 2 2020-02-15T06:59:45Z +12403 2005-08-18T09:31:05Z 2124 440 2005-08-23T09:54:05Z 2 2020-02-15T06:59:45Z +12404 2005-08-18T09:36:34Z 1097 342 2005-08-23T10:12:34Z 2 2020-02-15T06:59:45Z +12405 2005-08-18T09:37:30Z 228 266 2005-08-27T13:11:30Z 2 2020-02-15T06:59:45Z +12406 2005-08-18T09:38:02Z 4368 510 2005-08-22T12:56:02Z 1 2020-02-15T06:59:45Z +12407 2005-08-18T09:39:26Z 391 220 2005-08-24T05:19:26Z 2 2020-02-15T06:59:45Z +12408 2005-08-18T09:40:38Z 2360 143 2005-08-19T04:45:38Z 1 2020-02-15T06:59:45Z +12409 2005-08-18T09:43:58Z 2568 64 2005-08-19T15:02:58Z 2 2020-02-15T06:59:45Z +12410 2005-08-18T09:45:33Z 1904 210 2005-08-27T08:50:33Z 1 2020-02-15T06:59:45Z +12411 2005-08-18T09:47:57Z 1234 181 2005-08-21T05:54:57Z 2 2020-02-15T06:59:45Z +12412 2005-08-18T09:49:52Z 1578 75 2005-08-23T12:32:52Z 2 2020-02-15T06:59:45Z +12413 2005-08-18T09:50:34Z 3466 366 2005-08-23T05:57:34Z 2 2020-02-15T06:59:45Z +12414 2005-08-18T09:50:40Z 4454 32 2005-08-26T06:45:40Z 2 2020-02-15T06:59:45Z +12415 2005-08-18T09:54:01Z 392 443 2005-08-24T15:41:01Z 1 2020-02-15T06:59:45Z +12416 2005-08-18T09:56:48Z 3784 515 2005-08-22T12:34:48Z 1 2020-02-15T06:59:45Z +12417 2005-08-18T09:57:00Z 3500 71 2005-08-19T08:56:00Z 1 2020-02-15T06:59:45Z +12418 2005-08-18T09:59:36Z 4186 241 2005-08-19T11:35:36Z 2 2020-02-15T06:59:45Z +12419 2005-08-18T10:01:48Z 3111 133 2005-08-19T13:40:48Z 1 2020-02-15T06:59:45Z +12420 2005-08-18T10:01:50Z 452 477 2005-08-22T08:14:50Z 1 2020-02-15T06:59:45Z +12421 2005-08-18T10:04:06Z 4067 158 2005-08-24T08:45:06Z 2 2020-02-15T06:59:45Z +12422 2005-08-18T10:13:12Z 1855 451 2005-08-20T14:36:12Z 2 2020-02-15T06:59:45Z +12423 2005-08-18T10:14:52Z 1014 470 2005-08-26T13:16:52Z 2 2020-02-15T06:59:45Z +12424 2005-08-18T10:16:57Z 2055 319 2005-08-27T04:41:57Z 1 2020-02-15T06:59:45Z +12425 2005-08-18T10:18:06Z 2000 405 2005-08-27T08:16:06Z 2 2020-02-15T06:59:45Z +12426 2005-08-18T10:24:11Z 799 75 2005-08-22T15:34:11Z 2 2020-02-15T06:59:45Z +12427 2005-08-18T10:24:17Z 1759 333 2005-08-27T14:22:17Z 1 2020-02-15T06:59:45Z +12428 2005-08-18T10:24:21Z 3735 121 2005-08-24T05:12:21Z 1 2020-02-15T06:59:45Z +12429 2005-08-18T10:26:46Z 2994 436 2005-08-27T13:23:46Z 1 2020-02-15T06:59:45Z +12430 2005-08-18T10:32:41Z 2840 196 2005-08-22T16:16:41Z 1 2020-02-15T06:59:45Z +12431 2005-08-18T10:34:59Z 4461 89 2005-08-22T14:42:59Z 1 2020-02-15T06:59:45Z +12432 2005-08-18T10:35:13Z 2543 263 2005-08-26T08:20:13Z 2 2020-02-15T06:59:45Z +12433 2005-08-18T10:37:49Z 1776 552 2005-08-19T08:00:49Z 1 2020-02-15T06:59:45Z +12434 2005-08-18T10:38:08Z 3078 314 2005-08-22T16:14:08Z 2 2020-02-15T06:59:45Z +12435 2005-08-18T10:38:31Z 3211 160 2005-08-26T15:18:31Z 1 2020-02-15T06:59:45Z +12436 2005-08-18T10:41:05Z 3761 499 2005-08-23T07:36:05Z 2 2020-02-15T06:59:45Z +12437 2005-08-18T10:42:43Z 4036 467 2005-08-26T11:58:43Z 2 2020-02-15T06:59:45Z +12438 2005-08-18T10:42:52Z 2043 186 2005-08-25T11:42:52Z 1 2020-02-15T06:59:45Z +12439 2005-08-18T10:44:57Z 3204 153 2005-08-22T06:51:57Z 1 2020-02-15T06:59:45Z +12440 2005-08-18T10:47:35Z 2779 474 2005-08-21T11:10:35Z 2 2020-02-15T06:59:45Z +12441 2005-08-18T10:47:57Z 2163 561 2005-08-26T07:11:57Z 2 2020-02-15T06:59:45Z +12442 2005-08-18T10:50:07Z 78 270 2005-08-21T08:06:07Z 1 2020-02-15T06:59:45Z +12443 2005-08-18T10:50:59Z 2048 233 2005-08-26T07:48:59Z 2 2020-02-15T06:59:45Z +12444 2005-08-18T10:53:12Z 1639 285 2005-08-19T13:54:12Z 2 2020-02-15T06:59:45Z +12445 2005-08-18T10:56:20Z 3347 350 2005-08-21T16:46:20Z 1 2020-02-15T06:59:45Z +12446 2005-08-18T10:56:29Z 2138 448 2005-08-23T05:30:29Z 1 2020-02-15T06:59:45Z +12447 2005-08-18T10:57:01Z 4084 469 2005-08-27T06:05:01Z 1 2020-02-15T06:59:45Z +12448 2005-08-18T10:59:04Z 3889 72 2005-08-21T06:45:04Z 2 2020-02-15T06:59:45Z +12449 2005-08-18T11:03:04Z 663 285 2005-08-19T07:34:04Z 1 2020-02-15T06:59:45Z +12450 2005-08-18T11:04:04Z 3439 518 2005-08-22T07:24:04Z 1 2020-02-15T06:59:45Z +12451 2005-08-18T11:04:42Z 2780 183 2005-08-20T08:20:42Z 1 2020-02-15T06:59:45Z +12452 2005-08-18T11:14:35Z 4260 358 2005-08-27T09:09:35Z 1 2020-02-15T06:59:45Z +12453 2005-08-18T11:17:07Z 2487 104 2005-08-25T12:34:07Z 1 2020-02-15T06:59:45Z +12454 2005-08-18T11:19:02Z 4219 184 2005-08-19T12:00:02Z 2 2020-02-15T06:59:45Z +12455 2005-08-18T11:19:47Z 4478 46 2005-08-22T16:08:47Z 2 2020-02-15T06:59:45Z +12456 2005-08-18T11:21:51Z 4578 85 2005-08-21T13:28:51Z 1 2020-02-15T06:59:45Z +12457 2006-02-14T15:16:03Z 2145 80 2 2020-02-15T06:59:45Z +12458 2005-08-18T11:22:53Z 4579 277 2005-08-22T14:30:53Z 2 2020-02-15T06:59:45Z +12459 2005-08-18T11:25:11Z 421 39 2005-08-22T06:13:11Z 1 2020-02-15T06:59:45Z +12460 2005-08-18T11:25:13Z 3550 419 2005-08-27T06:27:13Z 2 2020-02-15T06:59:45Z +12461 2005-08-18T11:28:14Z 1569 27 2005-08-21T09:47:14Z 1 2020-02-15T06:59:45Z +12462 2005-08-18T11:28:55Z 890 574 2005-08-20T12:06:55Z 2 2020-02-15T06:59:45Z +12463 2005-08-18T11:31:34Z 30 214 2005-08-23T12:04:34Z 1 2020-02-15T06:59:45Z +12464 2005-08-18T11:33:34Z 1954 157 2005-08-27T14:33:34Z 1 2020-02-15T06:59:45Z +12465 2005-08-18T11:35:02Z 1733 486 2005-08-21T11:52:02Z 2 2020-02-15T06:59:45Z +12466 2005-08-18T11:36:55Z 2686 462 2005-08-23T13:46:55Z 1 2020-02-15T06:59:45Z +12467 2005-08-18T11:40:09Z 1414 212 2005-08-19T13:33:09Z 2 2020-02-15T06:59:45Z +12468 2005-08-18T11:41:47Z 1689 80 2005-08-24T16:43:47Z 2 2020-02-15T06:59:45Z +12469 2005-08-18T11:53:07Z 2395 237 2005-08-24T16:00:07Z 1 2020-02-15T06:59:45Z +12470 2005-08-18T11:55:42Z 1290 82 2005-08-24T08:27:42Z 2 2020-02-15T06:59:45Z +12471 2005-08-18T11:57:00Z 242 101 2005-08-26T13:17:00Z 2 2020-02-15T06:59:45Z +12472 2005-08-18T11:58:48Z 4458 297 2005-08-27T16:37:48Z 2 2020-02-15T06:59:45Z +12473 2005-08-18T11:59:44Z 1237 303 2005-08-21T13:38:44Z 1 2020-02-15T06:59:45Z +12474 2005-08-18T12:10:03Z 2240 78 2005-08-27T17:05:03Z 1 2020-02-15T06:59:45Z +12475 2005-08-18T12:14:21Z 3118 401 2005-08-24T14:43:21Z 2 2020-02-15T06:59:45Z +12476 2005-08-18T12:22:40Z 2784 122 2005-08-20T17:29:40Z 2 2020-02-15T06:59:45Z +12477 2005-08-18T12:25:01Z 4516 74 2005-08-25T17:25:01Z 2 2020-02-15T06:59:45Z +12478 2005-08-18T12:25:16Z 4512 42 2005-08-22T06:27:16Z 2 2020-02-15T06:59:45Z +12479 2005-08-18T12:26:37Z 1119 401 2005-08-21T18:08:37Z 2 2020-02-15T06:59:45Z +12480 2005-08-18T12:26:43Z 3339 446 2005-08-26T13:23:43Z 1 2020-02-15T06:59:45Z +12481 2005-08-18T12:31:34Z 2424 218 2005-08-21T16:08:34Z 2 2020-02-15T06:59:45Z +12482 2005-08-18T12:37:36Z 3778 247 2005-08-26T09:53:36Z 1 2020-02-15T06:59:45Z +12483 2005-08-18T12:38:37Z 1805 488 2005-08-24T13:26:37Z 1 2020-02-15T06:59:45Z +12484 2005-08-18T12:39:37Z 3690 300 2005-08-24T08:47:37Z 2 2020-02-15T06:59:45Z +12485 2005-08-18T12:41:41Z 422 345 2005-08-22T16:38:41Z 2 2020-02-15T06:59:45Z +12486 2005-08-18T12:42:50Z 2991 515 2005-08-27T13:41:50Z 2 2020-02-15T06:59:45Z +12487 2005-08-18T12:45:24Z 2554 485 2005-08-22T12:39:24Z 1 2020-02-15T06:59:45Z +12488 2005-08-18T12:48:22Z 3323 29 2005-08-19T16:19:22Z 1 2020-02-15T06:59:45Z +12489 2006-02-14T15:16:03Z 387 60 2 2020-02-15T06:59:45Z +12490 2005-08-18T12:48:45Z 1577 187 2005-08-27T15:53:45Z 1 2020-02-15T06:59:45Z +12491 2005-08-18T12:48:45Z 2354 247 2005-08-22T12:40:45Z 2 2020-02-15T06:59:45Z +12492 2005-08-18T12:49:04Z 2839 224 2005-08-26T17:55:04Z 1 2020-02-15T06:59:45Z +12493 2005-08-18T12:53:38Z 3029 487 2005-08-27T13:15:38Z 2 2020-02-15T06:59:45Z +12494 2005-08-18T12:53:49Z 3845 522 2005-08-26T15:52:49Z 1 2020-02-15T06:59:45Z +12495 2005-08-18T12:56:37Z 1225 102 2005-08-22T06:58:37Z 1 2020-02-15T06:59:45Z +12496 2005-08-18T12:58:25Z 456 489 2005-08-27T18:43:25Z 2 2020-02-15T06:59:45Z +12497 2005-08-18T12:58:40Z 824 388 2005-08-24T08:24:40Z 1 2020-02-15T06:59:45Z +12498 2005-08-18T13:01:08Z 1063 408 2005-08-21T13:12:08Z 1 2020-02-15T06:59:45Z +12499 2005-08-18T13:05:37Z 2611 42 2005-08-19T07:41:37Z 1 2020-02-15T06:59:45Z +12500 2005-08-18T13:05:51Z 36 310 2005-08-19T14:54:51Z 2 2020-02-15T06:59:45Z +12501 2005-08-18T13:13:13Z 728 173 2005-08-23T07:24:13Z 2 2020-02-15T06:59:45Z +12502 2005-08-18T13:16:31Z 2153 235 2005-08-19T17:47:31Z 1 2020-02-15T06:59:45Z +12503 2005-08-18T13:16:46Z 3548 379 2005-08-19T10:24:46Z 2 2020-02-15T06:59:45Z +12504 2005-08-18T13:17:07Z 4429 44 2005-08-24T09:13:07Z 2 2020-02-15T06:59:45Z +12505 2005-08-18T13:17:30Z 3741 406 2005-08-23T18:03:30Z 1 2020-02-15T06:59:45Z +12506 2006-02-14T15:16:03Z 1132 114 2 2020-02-15T06:59:45Z +12507 2005-08-18T13:19:13Z 199 584 2005-08-27T11:48:13Z 2 2020-02-15T06:59:45Z +12508 2005-08-18T13:20:13Z 1059 29 2005-08-22T12:55:13Z 1 2020-02-15T06:59:45Z +12509 2005-08-18T13:21:52Z 2462 175 2005-08-20T12:14:52Z 2 2020-02-15T06:59:45Z +12510 2005-08-18T13:22:25Z 3051 394 2005-08-27T17:38:25Z 2 2020-02-15T06:59:45Z +12511 2005-08-18T13:23:19Z 919 447 2005-08-22T11:43:19Z 2 2020-02-15T06:59:45Z +12512 2005-08-18T13:28:27Z 3959 148 2005-08-26T19:08:27Z 2 2020-02-15T06:59:45Z +12513 2005-08-18T13:31:45Z 29 527 2005-08-25T08:26:45Z 1 2020-02-15T06:59:45Z +12514 2005-08-18T13:33:55Z 3310 400 2005-08-23T12:50:55Z 2 2020-02-15T06:59:45Z +12515 2005-08-18T13:39:26Z 2703 63 2005-08-22T09:05:26Z 1 2020-02-15T06:59:45Z +12516 2005-08-18T13:39:53Z 1332 302 2005-08-20T08:33:53Z 1 2020-02-15T06:59:45Z +12517 2005-08-18T13:40:20Z 2908 520 2005-08-27T14:04:20Z 1 2020-02-15T06:59:45Z +12518 2005-08-18T13:41:32Z 3860 264 2005-08-23T13:01:32Z 1 2020-02-15T06:59:45Z +12519 2005-08-18T13:42:14Z 2394 203 2005-08-24T16:44:14Z 1 2020-02-15T06:59:45Z +12520 2005-08-18T13:42:45Z 681 52 2005-08-23T12:54:45Z 2 2020-02-15T06:59:45Z +12521 2005-08-18T13:43:07Z 1022 369 2005-08-21T07:53:07Z 1 2020-02-15T06:59:45Z +12522 2005-08-18T13:45:40Z 4435 342 2005-08-27T17:05:40Z 1 2020-02-15T06:59:45Z +12523 2005-08-18T13:45:41Z 888 230 2005-08-27T10:46:41Z 1 2020-02-15T06:59:45Z +12524 2006-02-14T15:16:03Z 857 438 1 2020-02-15T06:59:45Z +12525 2005-08-18T13:48:31Z 2357 96 2005-08-23T13:04:31Z 2 2020-02-15T06:59:45Z +12526 2005-08-18T13:48:43Z 3541 54 2005-08-19T10:05:43Z 1 2020-02-15T06:59:45Z +12527 2005-08-18T13:48:46Z 2536 459 2005-08-26T13:31:46Z 2 2020-02-15T06:59:45Z +12528 2005-08-18T13:52:41Z 3381 398 2005-08-27T09:09:41Z 2 2020-02-15T06:59:45Z +12529 2005-08-18T13:53:36Z 1956 382 2005-08-19T18:20:36Z 2 2020-02-15T06:59:45Z +12530 2005-08-18T13:54:48Z 1054 521 2005-08-26T08:58:48Z 2 2020-02-15T06:59:45Z +12531 2005-08-18T13:57:50Z 2771 27 2005-08-22T09:46:50Z 2 2020-02-15T06:59:45Z +12532 2005-08-18T13:57:58Z 114 184 2005-08-24T14:58:58Z 2 2020-02-15T06:59:45Z +12533 2005-08-18T14:01:40Z 795 331 2005-08-20T15:32:40Z 1 2020-02-15T06:59:45Z +12534 2005-08-18T14:04:41Z 995 187 2005-08-25T16:57:41Z 1 2020-02-15T06:59:45Z +12535 2005-08-18T14:05:22Z 2944 516 2005-08-25T16:35:22Z 1 2020-02-15T06:59:45Z +12536 2005-08-18T14:06:06Z 2343 373 2005-08-25T14:21:06Z 1 2020-02-15T06:59:45Z +12537 2005-08-18T14:06:39Z 57 56 2005-08-25T09:36:39Z 2 2020-02-15T06:59:45Z +12538 2005-08-18T14:09:09Z 1373 118 2005-08-23T19:12:09Z 1 2020-02-15T06:59:45Z +12539 2005-08-18T14:10:09Z 3259 136 2005-08-19T19:44:09Z 2 2020-02-15T06:59:45Z +12540 2005-08-18T14:17:30Z 2826 304 2005-08-26T15:33:30Z 2 2020-02-15T06:59:45Z +12541 2005-08-18T14:18:30Z 4357 584 2005-08-26T10:24:30Z 1 2020-02-15T06:59:45Z +12542 2005-08-18T14:21:11Z 1920 230 2005-08-20T16:06:11Z 2 2020-02-15T06:59:45Z +12543 2005-08-18T14:23:55Z 330 324 2005-08-20T12:42:55Z 1 2020-02-15T06:59:45Z +12544 2005-08-18T14:25:51Z 3783 354 2005-08-26T18:42:51Z 1 2020-02-15T06:59:45Z +12545 2005-08-18T14:28:00Z 1988 168 2005-08-26T14:10:00Z 1 2020-02-15T06:59:45Z +12546 2005-08-18T14:29:37Z 610 30 2005-08-26T09:47:37Z 1 2020-02-15T06:59:45Z +12547 2005-08-18T14:29:39Z 3046 591 2005-08-22T16:52:39Z 2 2020-02-15T06:59:45Z +12548 2005-08-18T14:35:26Z 750 426 2005-08-27T18:58:26Z 1 2020-02-15T06:59:45Z +12549 2005-08-18T14:38:07Z 1010 377 2005-08-21T08:45:07Z 1 2020-02-15T06:59:45Z +12550 2005-08-18T14:40:38Z 4267 138 2005-08-19T13:33:38Z 2 2020-02-15T06:59:45Z +12551 2005-08-18T14:46:26Z 2195 15 2005-08-19T16:59:26Z 2 2020-02-15T06:59:45Z +12552 2005-08-18T14:46:34Z 4303 413 2005-08-20T11:02:34Z 2 2020-02-15T06:59:45Z +12553 2005-08-18T14:46:54Z 2893 454 2005-08-22T13:41:54Z 1 2020-02-15T06:59:45Z +12554 2005-08-18T14:47:28Z 715 404 2005-08-25T14:34:28Z 2 2020-02-15T06:59:45Z +12555 2005-08-18T14:49:22Z 4434 557 2005-08-26T14:11:22Z 2 2020-02-15T06:59:45Z +12556 2005-08-18T14:49:55Z 1984 3 2005-08-24T15:20:55Z 2 2020-02-15T06:59:45Z +12557 2005-08-18T14:51:03Z 313 364 2005-08-19T13:30:03Z 2 2020-02-15T06:59:45Z +12558 2005-08-18T14:52:35Z 167 289 2005-08-26T09:45:35Z 2 2020-02-15T06:59:45Z +12559 2005-08-18T14:53:58Z 39 513 2005-08-25T20:22:58Z 1 2020-02-15T06:59:45Z +12560 2005-08-18T14:54:19Z 829 596 2005-08-27T13:39:19Z 1 2020-02-15T06:59:45Z +12561 2005-08-18T14:58:51Z 812 392 2005-08-20T10:53:51Z 1 2020-02-15T06:59:45Z +12562 2005-08-18T15:00:03Z 529 212 2005-08-23T12:55:03Z 2 2020-02-15T06:59:45Z +12563 2005-08-18T15:08:29Z 2552 393 2005-08-27T15:15:29Z 1 2020-02-15T06:59:45Z +12564 2005-08-18T15:11:35Z 263 348 2005-08-22T11:45:35Z 2 2020-02-15T06:59:45Z +12565 2005-08-18T15:12:17Z 1284 211 2005-08-19T12:26:17Z 2 2020-02-15T06:59:45Z +12566 2005-08-18T15:13:04Z 1684 407 2005-08-21T19:29:04Z 2 2020-02-15T06:59:45Z +12567 2005-08-18T15:14:36Z 2931 308 2005-08-26T18:56:36Z 1 2020-02-15T06:59:45Z +12568 2005-08-18T15:15:44Z 2654 569 2005-08-22T19:32:44Z 2 2020-02-15T06:59:45Z +12569 2005-08-18T15:20:46Z 1009 29 2005-08-24T12:38:46Z 2 2020-02-15T06:59:45Z +12570 2005-08-18T15:23:31Z 3973 211 2005-08-22T09:59:31Z 2 2020-02-15T06:59:45Z +12571 2005-08-18T15:31:18Z 1013 591 2005-08-23T15:20:18Z 2 2020-02-15T06:59:45Z +12572 2005-08-18T15:32:54Z 1366 253 2005-08-21T10:30:54Z 1 2020-02-15T06:59:45Z +12573 2005-08-18T15:32:57Z 1416 182 2005-08-21T18:29:57Z 2 2020-02-15T06:59:45Z +12574 2006-02-14T15:16:03Z 177 317 2 2020-02-15T06:59:45Z +12575 2005-08-18T15:37:42Z 3441 117 2005-08-25T19:17:42Z 1 2020-02-15T06:59:45Z +12576 2005-08-18T15:38:31Z 329 119 2005-08-22T21:29:31Z 2 2020-02-15T06:59:45Z +12577 2005-08-18T15:39:46Z 4134 16 2005-08-25T18:05:46Z 2 2020-02-15T06:59:45Z +12578 2005-08-18T15:47:11Z 930 514 2005-08-21T10:55:11Z 1 2020-02-15T06:59:45Z +12579 2005-08-18T15:47:49Z 3021 547 2005-08-20T18:12:49Z 2 2020-02-15T06:59:45Z +12580 2005-08-18T15:49:08Z 1197 53 2005-08-24T11:03:08Z 2 2020-02-15T06:59:45Z +12581 2005-08-18T15:49:15Z 4309 70 2005-08-23T20:18:15Z 1 2020-02-15T06:59:45Z +12582 2005-08-18T15:51:12Z 4467 462 2005-08-20T12:05:12Z 1 2020-02-15T06:59:45Z +12583 2005-08-18T15:51:36Z 3090 108 2005-08-20T18:47:36Z 2 2020-02-15T06:59:45Z +12584 2005-08-18T15:51:36Z 4487 371 2005-08-25T19:21:36Z 1 2020-02-15T06:59:45Z +12585 2005-08-18T15:52:12Z 773 110 2005-08-22T21:00:12Z 1 2020-02-15T06:59:45Z +12586 2005-08-18T15:54:39Z 4245 460 2005-08-21T19:29:39Z 1 2020-02-15T06:59:45Z +12587 2005-08-18T16:03:13Z 3081 499 2005-08-25T19:30:13Z 1 2020-02-15T06:59:45Z +12588 2005-08-18T16:04:45Z 694 415 2005-08-23T20:30:45Z 1 2020-02-15T06:59:45Z +12589 2005-08-18T16:06:31Z 956 275 2005-08-27T17:20:31Z 1 2020-02-15T06:59:45Z +12590 2005-08-18T16:11:35Z 2624 308 2005-08-23T10:35:35Z 1 2020-02-15T06:59:45Z +12591 2005-08-18T16:16:41Z 723 546 2005-08-24T10:29:41Z 2 2020-02-15T06:59:45Z +12592 2005-08-18T16:17:50Z 1618 305 2005-08-25T20:20:50Z 1 2020-02-15T06:59:45Z +12593 2005-08-18T16:17:54Z 4092 72 2005-08-21T18:02:54Z 2 2020-02-15T06:59:45Z +12594 2005-08-18T16:24:24Z 4421 198 2005-08-25T15:45:24Z 1 2020-02-15T06:59:45Z +12595 2005-08-18T16:27:08Z 1662 286 2005-08-19T14:53:08Z 1 2020-02-15T06:59:45Z +12596 2005-08-18T16:29:35Z 3662 378 2005-08-24T16:48:35Z 1 2020-02-15T06:59:45Z +12597 2005-08-18T16:34:02Z 3804 474 2005-08-25T17:30:02Z 2 2020-02-15T06:59:45Z +12598 2005-08-18T16:34:03Z 3159 340 2005-08-22T16:44:03Z 1 2020-02-15T06:59:45Z +12599 2005-08-18T16:42:45Z 2032 34 2005-08-23T18:27:45Z 2 2020-02-15T06:59:45Z +12600 2005-08-18T16:44:24Z 1475 171 2005-08-25T17:28:24Z 1 2020-02-15T06:59:45Z +12601 2005-08-18T16:47:52Z 3099 598 2005-08-24T11:05:52Z 1 2020-02-15T06:59:45Z +12602 2005-08-18T16:49:50Z 2001 533 2005-08-21T11:13:50Z 2 2020-02-15T06:59:45Z +12603 2005-08-18T16:56:20Z 2769 119 2005-08-25T11:50:20Z 2 2020-02-15T06:59:45Z +12604 2005-08-18T16:58:48Z 4127 12 2005-08-19T19:36:48Z 1 2020-02-15T06:59:45Z +12605 2005-08-18T16:59:37Z 1359 496 2005-08-20T18:09:37Z 1 2020-02-15T06:59:45Z +12606 2005-08-18T17:02:21Z 359 275 2005-08-24T22:38:21Z 1 2020-02-15T06:59:45Z +12607 2005-08-18T17:03:49Z 2130 526 2005-08-19T18:29:49Z 1 2020-02-15T06:59:45Z +12608 2005-08-18T17:05:15Z 624 366 2005-08-23T17:00:15Z 2 2020-02-15T06:59:45Z +12609 2005-08-18T17:06:22Z 2327 486 2005-08-20T21:30:22Z 1 2020-02-15T06:59:45Z +12610 2006-02-14T15:16:03Z 3181 269 1 2020-02-15T06:59:45Z +12611 2005-08-18T17:09:42Z 1925 359 2005-08-24T11:57:42Z 2 2020-02-15T06:59:45Z +12612 2005-08-18T17:10:05Z 1035 129 2005-08-26T15:55:05Z 2 2020-02-15T06:59:45Z +12613 2005-08-18T17:16:01Z 3877 8 2005-08-23T18:40:01Z 2 2020-02-15T06:59:45Z +12614 2005-08-18T17:16:03Z 2233 60 2005-08-26T16:56:03Z 2 2020-02-15T06:59:45Z +12615 2005-08-18T17:16:07Z 2191 29 2005-08-27T12:57:07Z 1 2020-02-15T06:59:45Z +12616 2005-08-18T17:22:41Z 2952 476 2005-08-25T18:52:41Z 2 2020-02-15T06:59:45Z +12617 2005-08-18T17:22:48Z 3573 564 2005-08-24T17:40:48Z 2 2020-02-15T06:59:45Z +12618 2005-08-18T17:24:02Z 302 117 2005-08-19T15:22:02Z 1 2020-02-15T06:59:45Z +12619 2005-08-18T17:24:15Z 980 592 2005-08-21T15:56:15Z 1 2020-02-15T06:59:45Z +12620 2005-08-18T17:26:38Z 2663 221 2005-08-25T13:24:38Z 1 2020-02-15T06:59:45Z +12621 2005-08-18T17:31:36Z 4566 439 2005-08-24T16:43:36Z 2 2020-02-15T06:59:45Z +12622 2005-08-18T17:34:11Z 278 529 2005-08-24T16:10:11Z 1 2020-02-15T06:59:45Z +12623 2005-08-18T17:34:19Z 3670 177 2005-08-20T21:30:19Z 1 2020-02-15T06:59:45Z +12624 2005-08-18T17:35:00Z 1135 434 2005-08-27T12:18:00Z 2 2020-02-15T06:59:45Z +12625 2005-08-18T17:36:19Z 2645 108 2005-08-23T11:42:19Z 1 2020-02-15T06:59:45Z +12626 2005-08-18T17:36:45Z 4230 361 2005-08-26T17:12:45Z 1 2020-02-15T06:59:45Z +12627 2005-08-18T17:37:11Z 3760 150 2005-08-19T14:59:11Z 2 2020-02-15T06:59:45Z +12628 2005-08-18T17:40:25Z 3210 520 2005-08-25T13:39:25Z 1 2020-02-15T06:59:45Z +12629 2005-08-18T17:40:33Z 1705 459 2005-08-26T21:09:33Z 1 2020-02-15T06:59:45Z +12630 2005-08-18T17:49:28Z 1457 452 2005-08-24T12:23:28Z 1 2020-02-15T06:59:45Z +12631 2005-08-18T17:52:51Z 2782 339 2005-08-25T14:40:51Z 2 2020-02-15T06:59:45Z +12632 2005-08-18T17:54:21Z 827 381 2005-08-22T18:58:21Z 1 2020-02-15T06:59:45Z +12633 2005-08-18T17:55:38Z 4341 469 2005-08-23T17:19:38Z 2 2020-02-15T06:59:45Z +12634 2005-08-18T17:58:14Z 1037 549 2005-08-19T21:08:14Z 2 2020-02-15T06:59:45Z +12635 2005-08-18T18:00:23Z 331 15 2005-08-23T16:40:23Z 2 2020-02-15T06:59:45Z +12636 2005-08-18T18:00:29Z 1645 380 2005-08-26T20:08:29Z 2 2020-02-15T06:59:45Z +12637 2005-08-18T18:06:53Z 4005 145 2005-08-19T17:36:53Z 1 2020-02-15T06:59:45Z +12638 2005-08-18T18:11:39Z 2849 172 2005-08-25T21:54:39Z 2 2020-02-15T06:59:45Z +12639 2005-08-18T18:13:05Z 562 500 2005-08-27T16:00:05Z 2 2020-02-15T06:59:45Z +12640 2005-08-18T18:14:49Z 1715 544 2005-08-24T21:25:49Z 1 2020-02-15T06:59:45Z +12641 2005-08-18T18:18:08Z 776 467 2005-08-19T23:17:08Z 1 2020-02-15T06:59:45Z +12642 2005-08-18T18:19:16Z 2080 167 2005-08-20T17:30:16Z 2 2020-02-15T06:59:45Z +12643 2005-08-18T18:21:06Z 2245 165 2005-08-24T14:26:06Z 1 2020-02-15T06:59:45Z +12644 2005-08-18T18:22:27Z 1511 300 2005-08-26T00:01:27Z 1 2020-02-15T06:59:45Z +12645 2006-02-14T15:16:03Z 1658 457 1 2020-02-15T06:59:45Z +12646 2005-08-18T18:25:06Z 3103 388 2005-08-24T18:45:06Z 1 2020-02-15T06:59:45Z +12647 2005-08-18T18:29:51Z 323 520 2005-08-27T22:51:51Z 1 2020-02-15T06:59:45Z +12648 2005-08-18T18:30:21Z 3545 519 2005-08-25T19:17:21Z 1 2020-02-15T06:59:45Z +12649 2005-08-18T18:31:47Z 3201 530 2005-08-22T21:07:47Z 2 2020-02-15T06:59:45Z +12650 2005-08-18T18:33:20Z 3237 276 2005-08-21T17:45:20Z 2 2020-02-15T06:59:45Z +12651 2005-08-18T18:36:16Z 8 34 2005-08-22T22:01:16Z 1 2020-02-15T06:59:45Z +12652 2005-08-18T18:48:58Z 2118 9 2005-08-21T14:15:58Z 1 2020-02-15T06:59:45Z +12653 2005-08-18T18:53:17Z 3353 78 2005-08-26T14:08:17Z 1 2020-02-15T06:59:45Z +12654 2005-08-18T18:56:40Z 2217 438 2005-08-20T17:51:40Z 2 2020-02-15T06:59:45Z +12655 2005-08-18T18:57:44Z 859 533 2005-08-27T22:40:44Z 2 2020-02-15T06:59:45Z +12656 2005-08-18T18:58:35Z 3981 286 2005-08-21T00:41:35Z 1 2020-02-15T06:59:45Z +12657 2005-08-18T19:02:16Z 3621 100 2005-08-21T14:59:16Z 1 2020-02-15T06:59:45Z +12658 2005-08-18T19:05:42Z 4320 193 2005-08-19T19:08:42Z 1 2020-02-15T06:59:45Z +12659 2005-08-18T19:05:49Z 336 329 2005-08-24T22:12:49Z 2 2020-02-15T06:59:45Z +12660 2005-08-18T19:07:23Z 414 21 2005-08-27T17:20:23Z 2 2020-02-15T06:59:45Z +12661 2005-08-18T19:10:10Z 1547 333 2005-08-22T20:30:10Z 1 2020-02-15T06:59:45Z +12662 2005-08-18T19:10:41Z 1412 75 2005-08-23T16:59:41Z 1 2020-02-15T06:59:45Z +12663 2005-08-18T19:10:52Z 1163 375 2005-08-19T15:46:52Z 1 2020-02-15T06:59:45Z +12664 2005-08-18T19:10:54Z 2732 577 2005-08-25T19:19:54Z 1 2020-02-15T06:59:45Z +12665 2006-02-14T15:16:03Z 1701 410 2 2020-02-15T06:59:45Z +12666 2005-08-18T19:11:41Z 4156 251 2005-08-21T18:04:41Z 2 2020-02-15T06:59:45Z +12667 2005-08-18T19:11:45Z 104 545 2005-08-27T13:34:45Z 2 2020-02-15T06:59:45Z +12668 2005-08-18T19:16:47Z 1986 14 2005-08-19T16:31:47Z 1 2020-02-15T06:59:45Z +12669 2005-08-18T19:17:47Z 4530 433 2005-08-24T14:55:47Z 1 2020-02-15T06:59:45Z +12670 2005-08-18T19:17:58Z 1716 580 2005-08-23T20:54:58Z 2 2020-02-15T06:59:45Z +12671 2005-08-18T19:19:59Z 1734 577 2005-08-23T17:53:59Z 2 2020-02-15T06:59:45Z +12672 2006-02-14T15:16:03Z 1722 228 1 2020-02-15T06:59:45Z +12673 2005-08-18T19:21:56Z 4204 535 2005-08-26T22:44:56Z 2 2020-02-15T06:59:45Z +12674 2005-08-18T19:24:56Z 636 185 2005-08-26T22:16:56Z 2 2020-02-15T06:59:45Z +12675 2005-08-18T19:34:02Z 569 140 2005-08-23T13:36:02Z 2 2020-02-15T06:59:45Z +12676 2005-08-18T19:34:40Z 2581 393 2005-08-20T18:03:40Z 2 2020-02-15T06:59:45Z +12677 2005-08-18T19:36:05Z 1311 334 2005-08-22T21:23:05Z 2 2020-02-15T06:59:45Z +12678 2005-08-18T19:41:27Z 2504 181 2005-08-23T15:14:27Z 2 2020-02-15T06:59:45Z +12679 2005-08-18T19:42:11Z 1535 463 2005-08-25T01:01:11Z 1 2020-02-15T06:59:45Z +12680 2005-08-18T19:43:46Z 833 259 2005-08-27T00:08:46Z 2 2020-02-15T06:59:45Z +12681 2005-08-18T19:48:06Z 1570 518 2005-08-23T15:05:06Z 2 2020-02-15T06:59:45Z +12682 2006-02-14T15:16:03Z 1148 245 2 2020-02-15T06:59:45Z +12683 2005-08-18T19:50:43Z 1802 166 2005-08-26T00:47:43Z 1 2020-02-15T06:59:45Z +12684 2005-08-18T19:51:27Z 978 196 2005-08-19T15:56:27Z 1 2020-02-15T06:59:45Z +12685 2005-08-18T19:51:29Z 4283 114 2005-08-27T14:58:29Z 2 2020-02-15T06:59:45Z +12686 2005-08-18T19:55:09Z 501 385 2005-08-26T14:17:09Z 1 2020-02-15T06:59:45Z +12687 2005-08-18T19:57:39Z 3092 285 2005-08-27T01:36:39Z 2 2020-02-15T06:59:45Z +12688 2005-08-18T19:59:54Z 2315 65 2005-08-26T18:52:54Z 2 2020-02-15T06:59:45Z +12689 2005-08-18T20:06:34Z 1066 296 2005-08-22T20:11:34Z 2 2020-02-15T06:59:45Z +12690 2005-08-18T20:06:57Z 3574 361 2005-08-24T20:54:57Z 2 2020-02-15T06:59:45Z +12691 2005-08-18T20:07:46Z 3744 534 2005-08-26T18:49:46Z 2 2020-02-15T06:59:45Z +12692 2005-08-18T20:09:19Z 2781 273 2005-08-21T00:14:19Z 1 2020-02-15T06:59:45Z +12693 2005-08-18T20:10:19Z 1543 584 2005-08-25T21:11:19Z 1 2020-02-15T06:59:45Z +12694 2005-08-18T20:10:39Z 1741 268 2005-08-25T20:47:39Z 1 2020-02-15T06:59:45Z +12695 2005-08-18T20:11:35Z 446 483 2005-08-25T18:29:35Z 1 2020-02-15T06:59:45Z +12696 2005-08-18T20:13:08Z 3989 374 2005-08-19T18:02:08Z 2 2020-02-15T06:59:45Z +12697 2005-08-18T20:14:56Z 2774 152 2005-08-23T21:54:56Z 1 2020-02-15T06:59:45Z +12698 2006-02-14T15:16:03Z 3657 497 1 2020-02-15T06:59:45Z +12699 2005-08-18T20:20:59Z 3695 66 2005-08-22T17:00:59Z 1 2020-02-15T06:59:45Z +12700 2005-08-18T20:24:46Z 540 397 2005-08-23T21:50:46Z 1 2020-02-15T06:59:45Z +12701 2005-08-18T20:26:47Z 2337 489 2005-08-26T23:36:47Z 2 2020-02-15T06:59:45Z +12702 2005-08-18T20:30:33Z 1884 474 2005-08-27T01:22:33Z 2 2020-02-15T06:59:45Z +12703 2005-08-18T20:37:13Z 1278 453 2005-08-26T16:13:13Z 1 2020-02-15T06:59:45Z +12704 2005-08-18T20:43:00Z 51 93 2005-08-21T22:28:00Z 2 2020-02-15T06:59:45Z +12705 2005-08-18T20:44:14Z 2342 517 2005-08-23T20:46:14Z 1 2020-02-15T06:59:45Z +12706 2005-08-18T20:44:34Z 1079 170 2005-08-26T21:47:34Z 1 2020-02-15T06:59:45Z +12707 2005-08-18T20:52:02Z 1565 426 2005-08-25T19:03:02Z 2 2020-02-15T06:59:45Z +12708 2005-08-18T20:59:17Z 3448 28 2005-08-24T22:40:17Z 1 2020-02-15T06:59:45Z +12709 2005-08-18T20:59:51Z 3878 476 2005-08-26T01:21:51Z 2 2020-02-15T06:59:45Z +12710 2005-08-18T21:02:50Z 3011 310 2005-08-26T15:07:50Z 2 2020-02-15T06:59:45Z +12711 2005-08-18T21:03:32Z 2530 122 2005-08-26T17:31:32Z 1 2020-02-15T06:59:45Z +12712 2005-08-18T21:04:13Z 2628 444 2005-08-25T18:15:13Z 2 2020-02-15T06:59:45Z +12713 2005-08-18T21:07:28Z 1505 56 2005-08-24T17:46:28Z 1 2020-02-15T06:59:45Z +12714 2005-08-18T21:08:01Z 868 372 2005-08-27T17:09:01Z 2 2020-02-15T06:59:45Z +12715 2005-08-18T21:09:38Z 3768 266 2005-08-21T20:25:38Z 1 2020-02-15T06:59:45Z +12716 2006-02-14T15:16:03Z 858 570 2 2020-02-15T06:59:45Z +12717 2005-08-18T21:15:40Z 3551 167 2005-08-20T00:59:40Z 2 2020-02-15T06:59:45Z +12718 2005-08-18T21:21:44Z 3221 176 2005-08-20T01:01:44Z 1 2020-02-15T06:59:45Z +12719 2006-02-14T15:16:03Z 1094 87 2 2020-02-15T06:59:45Z +12720 2005-08-18T21:28:42Z 2676 419 2005-08-25T18:02:42Z 1 2020-02-15T06:59:45Z +12721 2005-08-18T21:30:12Z 1045 239 2005-08-22T22:45:12Z 1 2020-02-15T06:59:45Z +12722 2005-08-18T21:33:53Z 913 416 2005-08-27T23:47:53Z 2 2020-02-15T06:59:45Z +12723 2005-08-18T21:34:16Z 4167 430 2005-08-22T22:37:16Z 1 2020-02-15T06:59:45Z +12724 2005-08-18T21:37:20Z 2224 242 2005-08-27T21:56:20Z 2 2020-02-15T06:59:45Z +12725 2005-08-18T21:43:09Z 4071 51 2005-08-23T18:50:09Z 1 2020-02-15T06:59:45Z +12726 2005-08-18T21:44:46Z 20 397 2005-08-19T21:58:46Z 2 2020-02-15T06:59:45Z +12727 2005-08-18T21:45:15Z 15 178 2005-08-24T15:52:15Z 1 2020-02-15T06:59:45Z +12728 2005-08-18T21:47:48Z 3156 129 2005-08-25T16:13:48Z 1 2020-02-15T06:59:45Z +12729 2005-08-18T21:52:59Z 3711 424 2005-08-21T00:02:59Z 1 2020-02-15T06:59:45Z +12730 2005-08-18T21:55:01Z 75 7 2005-08-22T01:23:01Z 1 2020-02-15T06:59:45Z +12731 2005-08-18T21:55:38Z 1719 128 2005-08-23T20:30:38Z 1 2020-02-15T06:59:45Z +12732 2005-08-18T21:57:50Z 3307 535 2005-08-19T18:28:50Z 2 2020-02-15T06:59:45Z +12733 2005-08-18T21:59:00Z 3243 144 2005-08-24T02:25:00Z 1 2020-02-15T06:59:45Z +12734 2005-08-18T22:04:52Z 3619 121 2005-08-25T00:34:52Z 1 2020-02-15T06:59:45Z +12735 2005-08-18T22:04:54Z 3679 383 2005-08-23T21:19:54Z 2 2020-02-15T06:59:45Z +12736 2006-02-14T15:16:03Z 3591 244 2 2020-02-15T06:59:45Z +12737 2005-08-18T22:11:37Z 736 204 2005-08-26T04:08:37Z 1 2020-02-15T06:59:45Z +12738 2005-08-18T22:11:47Z 4313 589 2005-08-27T17:55:47Z 2 2020-02-15T06:59:45Z +12739 2005-08-18T22:15:18Z 4129 292 2005-08-27T00:37:18Z 2 2020-02-15T06:59:45Z +12740 2005-08-18T22:17:04Z 1157 330 2005-08-23T23:42:04Z 1 2020-02-15T06:59:45Z +12741 2005-08-18T22:17:05Z 2084 435 2005-08-25T20:07:05Z 2 2020-02-15T06:59:45Z +12742 2005-08-18T22:22:03Z 1742 68 2005-08-22T04:01:03Z 1 2020-02-15T06:59:45Z +12743 2005-08-18T22:22:31Z 2630 565 2005-08-27T00:31:31Z 1 2020-02-15T06:59:45Z +12744 2005-08-18T22:22:36Z 3815 593 2005-08-24T00:26:36Z 1 2020-02-15T06:59:45Z +12745 2005-08-18T22:22:45Z 262 24 2005-08-20T01:44:45Z 2 2020-02-15T06:59:45Z +12746 2006-02-14T15:16:03Z 1012 211 1 2020-02-15T06:59:45Z +12747 2005-08-18T22:28:22Z 4075 549 2005-08-22T22:25:22Z 2 2020-02-15T06:59:45Z +12748 2005-08-18T22:29:05Z 3249 373 2005-08-24T18:25:05Z 2 2020-02-15T06:59:45Z +12749 2005-08-18T22:31:21Z 828 388 2005-08-20T22:53:21Z 1 2020-02-15T06:59:45Z +12750 2005-08-18T22:32:39Z 3717 535 2005-08-26T01:54:39Z 1 2020-02-15T06:59:45Z +12751 2005-08-18T22:33:22Z 2791 352 2005-08-20T20:28:22Z 2 2020-02-15T06:59:45Z +12752 2005-08-18T22:33:36Z 3595 514 2005-08-27T23:55:36Z 1 2020-02-15T06:59:45Z +12753 2005-08-18T22:37:39Z 1494 470 2005-08-27T00:21:39Z 2 2020-02-15T06:59:45Z +12754 2005-08-18T22:37:41Z 4154 134 2005-08-27T20:17:41Z 2 2020-02-15T06:59:45Z +12755 2005-08-18T22:38:47Z 105 439 2005-08-22T23:58:47Z 1 2020-02-15T06:59:45Z +12756 2005-08-18T22:52:13Z 1840 89 2005-08-21T17:22:13Z 1 2020-02-15T06:59:45Z +12757 2005-08-18T22:57:45Z 1095 147 2005-08-21T22:43:45Z 1 2020-02-15T06:59:45Z +12758 2005-08-18T22:58:34Z 2279 30 2005-08-22T23:33:34Z 1 2020-02-15T06:59:45Z +12759 2006-02-14T15:16:03Z 4193 354 2 2020-02-15T06:59:45Z +12760 2005-08-18T23:03:19Z 4188 363 2005-08-24T17:53:19Z 1 2020-02-15T06:59:45Z +12761 2005-08-18T23:05:22Z 2684 364 2005-08-22T01:08:22Z 2 2020-02-15T06:59:45Z +12762 2005-08-18T23:06:54Z 3909 502 2005-08-21T18:30:54Z 1 2020-02-15T06:59:45Z +12763 2005-08-18T23:07:01Z 393 472 2005-08-21T18:45:01Z 1 2020-02-15T06:59:45Z +12764 2005-08-18T23:14:15Z 26 183 2005-08-22T20:23:15Z 1 2020-02-15T06:59:45Z +12765 2005-08-18T23:21:50Z 2244 298 2005-08-28T04:42:50Z 2 2020-02-15T06:59:45Z +12766 2005-08-18T23:25:20Z 3737 50 2005-08-27T04:43:20Z 1 2020-02-15T06:59:45Z +12767 2005-08-18T23:25:49Z 3351 432 2005-08-28T02:40:49Z 2 2020-02-15T06:59:45Z +12768 2005-08-18T23:26:11Z 1993 458 2005-08-19T20:31:11Z 2 2020-02-15T06:59:45Z +12769 2005-08-18T23:26:40Z 926 504 2005-08-25T03:03:40Z 1 2020-02-15T06:59:45Z +12770 2005-08-18T23:29:00Z 1654 575 2005-08-26T20:57:00Z 2 2020-02-15T06:59:45Z +12771 2005-08-18T23:29:23Z 3076 484 2005-08-22T17:31:23Z 2 2020-02-15T06:59:45Z +12772 2005-08-18T23:29:25Z 1179 397 2005-08-23T20:32:25Z 1 2020-02-15T06:59:45Z +12773 2005-08-18T23:32:19Z 4390 360 2005-08-27T04:40:19Z 1 2020-02-15T06:59:45Z +12774 2005-08-18T23:34:22Z 3601 21 2005-08-28T05:00:22Z 2 2020-02-15T06:59:45Z +12775 2005-08-18T23:35:56Z 4374 54 2005-08-26T18:37:56Z 1 2020-02-15T06:59:45Z +12776 2005-08-18T23:37:33Z 2345 55 2005-08-23T03:07:33Z 1 2020-02-15T06:59:45Z +12777 2005-08-18T23:39:22Z 3467 130 2005-08-27T20:28:22Z 1 2020-02-15T06:59:45Z +12778 2005-08-18T23:40:23Z 3626 290 2005-08-19T18:14:23Z 2 2020-02-15T06:59:45Z +12779 2005-08-18T23:44:00Z 1814 325 2005-08-26T05:27:00Z 2 2020-02-15T06:59:45Z +12780 2005-08-18T23:48:16Z 54 373 2005-08-20T18:13:16Z 2 2020-02-15T06:59:45Z +12781 2005-08-18T23:50:24Z 1187 168 2005-08-21T02:31:24Z 1 2020-02-15T06:59:45Z +12782 2005-08-18T23:56:23Z 1454 495 2005-08-25T18:47:23Z 1 2020-02-15T06:59:45Z +12783 2005-08-19T00:01:14Z 1109 503 2005-08-21T22:02:14Z 2 2020-02-15T06:59:45Z +12784 2005-08-19T00:02:46Z 447 513 2005-08-20T04:39:46Z 1 2020-02-15T06:59:45Z +12785 2005-08-19T00:05:49Z 4190 145 2005-08-21T04:39:49Z 2 2020-02-15T06:59:45Z +12786 2006-02-14T15:16:03Z 97 512 1 2020-02-15T06:59:45Z +12787 2005-08-19T00:07:58Z 2023 278 2005-08-24T00:42:58Z 2 2020-02-15T06:59:45Z +12788 2005-08-19T00:15:09Z 644 90 2005-08-27T21:54:09Z 1 2020-02-15T06:59:45Z +12789 2005-08-19T00:16:19Z 2412 557 2005-08-25T00:18:19Z 2 2020-02-15T06:59:45Z +12790 2005-08-19T00:16:54Z 1281 44 2005-08-26T02:00:54Z 1 2020-02-15T06:59:45Z +12791 2005-08-19T00:17:09Z 3594 573 2005-08-22T23:46:09Z 1 2020-02-15T06:59:45Z +12792 2006-02-14T15:16:03Z 1435 405 2 2020-02-15T06:59:45Z +12793 2005-08-19T00:20:36Z 1195 403 2005-08-28T02:43:36Z 1 2020-02-15T06:59:45Z +12794 2005-08-19T00:20:37Z 1586 336 2005-08-26T01:48:37Z 1 2020-02-15T06:59:45Z +12795 2005-08-19T00:21:52Z 2745 360 2005-08-22T22:13:52Z 2 2020-02-15T06:59:45Z +12796 2005-08-19T00:22:24Z 1285 368 2005-08-19T22:53:24Z 2 2020-02-15T06:59:45Z +12797 2005-08-19T00:24:08Z 1595 5 2005-08-21T22:53:08Z 2 2020-02-15T06:59:45Z +12798 2005-08-19T00:24:33Z 4244 534 2005-08-21T23:01:33Z 2 2020-02-15T06:59:45Z +12799 2005-08-19T00:27:01Z 3885 197 2005-08-22T03:30:01Z 2 2020-02-15T06:59:45Z +12800 2005-08-19T00:27:11Z 257 545 2005-08-22T01:08:11Z 1 2020-02-15T06:59:45Z +12801 2005-08-19T00:27:19Z 960 202 2005-08-26T03:10:19Z 1 2020-02-15T06:59:45Z +12802 2005-08-19T00:27:41Z 2461 462 2005-08-28T03:24:41Z 1 2020-02-15T06:59:45Z +12803 2005-08-19T00:28:21Z 1058 390 2005-08-23T02:02:21Z 1 2020-02-15T06:59:45Z +12804 2005-08-19T00:33:15Z 147 365 2005-08-28T02:16:15Z 2 2020-02-15T06:59:45Z +12805 2005-08-19T00:36:34Z 2964 345 2005-08-26T20:38:34Z 1 2020-02-15T06:59:45Z +12806 2005-08-19T00:37:26Z 4488 423 2005-08-23T18:49:26Z 2 2020-02-15T06:59:45Z +12807 2005-08-19T00:38:46Z 2323 513 2005-08-28T03:37:46Z 2 2020-02-15T06:59:45Z +12808 2005-08-19T00:40:41Z 3920 55 2005-08-21T06:39:41Z 2 2020-02-15T06:59:45Z +12809 2005-08-19T00:42:24Z 2005 22 2005-08-23T06:06:24Z 1 2020-02-15T06:59:45Z +12810 2005-08-19T00:44:10Z 1340 250 2005-08-22T22:30:10Z 2 2020-02-15T06:59:45Z +12811 2005-08-19T00:51:28Z 641 54 2005-08-24T01:57:28Z 2 2020-02-15T06:59:45Z +12812 2005-08-19T00:54:02Z 4024 450 2005-08-22T20:35:02Z 2 2020-02-15T06:59:45Z +12813 2005-08-19T00:54:22Z 3285 500 2005-08-19T21:17:22Z 2 2020-02-15T06:59:45Z +12814 2005-08-19T00:58:24Z 204 465 2005-08-21T05:46:24Z 1 2020-02-15T06:59:45Z +12815 2005-08-19T00:59:42Z 435 588 2005-08-25T21:43:42Z 2 2020-02-15T06:59:45Z +12816 2005-08-19T01:04:05Z 4051 342 2005-08-24T01:25:05Z 1 2020-02-15T06:59:45Z +12817 2005-08-19T01:04:35Z 1246 113 2005-08-25T21:14:35Z 1 2020-02-15T06:59:45Z +12818 2005-08-19T01:04:59Z 3069 528 2005-08-26T21:39:59Z 2 2020-02-15T06:59:45Z +12819 2005-08-19T01:05:05Z 1117 542 2005-08-22T05:50:05Z 1 2020-02-15T06:59:45Z +12820 2005-08-19T01:05:08Z 2936 127 2005-08-21T05:37:08Z 2 2020-02-15T06:59:45Z +12821 2005-08-19T01:07:02Z 3418 41 2005-08-23T01:22:02Z 2 2020-02-15T06:59:45Z +12822 2005-08-19T01:15:24Z 419 426 2005-08-20T06:38:24Z 1 2020-02-15T06:59:45Z +12823 2005-08-19T01:15:47Z 426 316 2005-08-22T05:32:47Z 2 2020-02-15T06:59:45Z +12824 2005-08-19T01:18:00Z 1875 247 2005-08-22T01:12:00Z 2 2020-02-15T06:59:45Z +12825 2005-08-19T01:23:58Z 4495 328 2005-08-20T00:19:58Z 2 2020-02-15T06:59:45Z +12826 2005-08-19T01:25:11Z 1277 439 2005-08-27T01:22:11Z 1 2020-02-15T06:59:45Z +12827 2005-08-19T01:27:23Z 880 253 2005-08-27T02:22:23Z 2 2020-02-15T06:59:45Z +12828 2005-08-19T01:37:47Z 4208 378 2005-08-24T22:31:47Z 2 2020-02-15T06:59:45Z +12829 2005-08-19T01:38:18Z 1129 326 2005-08-25T22:23:18Z 2 2020-02-15T06:59:45Z +12830 2005-08-19T01:40:25Z 4080 409 2005-08-20T23:49:25Z 2 2020-02-15T06:59:45Z +12831 2005-08-19T01:40:43Z 1916 183 2005-08-28T05:22:43Z 1 2020-02-15T06:59:45Z +12832 2005-08-19T01:41:44Z 2820 563 2005-08-24T23:15:44Z 2 2020-02-15T06:59:45Z +12833 2005-08-19T01:42:28Z 3723 59 2005-08-26T20:13:28Z 1 2020-02-15T06:59:45Z +12834 2005-08-19T01:47:30Z 757 133 2005-08-24T20:08:30Z 1 2020-02-15T06:59:45Z +12835 2005-08-19T01:47:45Z 1477 124 2005-08-26T00:58:45Z 2 2020-02-15T06:59:45Z +12836 2005-08-19T01:48:33Z 1380 196 2005-08-23T04:46:33Z 1 2020-02-15T06:59:45Z +12837 2005-08-19T01:51:09Z 2288 495 2005-08-22T07:14:09Z 2 2020-02-15T06:59:45Z +12838 2005-08-19T01:51:50Z 1207 308 2005-08-27T23:12:50Z 1 2020-02-15T06:59:45Z +12839 2005-08-19T01:53:43Z 1970 360 2005-08-28T02:27:43Z 2 2020-02-15T06:59:45Z +12840 2005-08-19T01:54:11Z 2098 182 2005-08-28T01:11:11Z 2 2020-02-15T06:59:45Z +12841 2005-08-19T01:55:55Z 4233 257 2005-08-24T02:56:55Z 1 2020-02-15T06:59:45Z +12842 2005-08-19T01:57:21Z 2540 119 2005-08-28T01:10:21Z 1 2020-02-15T06:59:45Z +12843 2005-08-19T01:58:54Z 3279 128 2005-08-20T00:20:54Z 2 2020-02-15T06:59:45Z +12844 2005-08-19T01:59:08Z 4146 584 2005-08-24T22:21:08Z 1 2020-02-15T06:59:45Z +12845 2005-08-19T02:02:37Z 1698 106 2005-08-22T01:08:37Z 1 2020-02-15T06:59:45Z +12846 2005-08-19T02:03:26Z 286 305 2005-08-25T07:39:26Z 2 2020-02-15T06:59:45Z +12847 2005-08-19T02:04:07Z 384 91 2005-08-23T20:13:07Z 2 2020-02-15T06:59:45Z +12848 2005-08-19T02:05:11Z 2833 539 2005-08-24T05:27:11Z 2 2020-02-15T06:59:45Z +12849 2005-08-19T02:05:37Z 3489 280 2005-08-23T07:00:37Z 1 2020-02-15T06:59:45Z +12850 2005-08-19T02:08:06Z 1816 440 2005-08-20T21:06:06Z 2 2020-02-15T06:59:45Z +12851 2005-08-19T02:12:12Z 3311 194 2005-08-25T23:51:12Z 1 2020-02-15T06:59:45Z +12852 2005-08-19T02:12:40Z 2446 260 2005-08-19T23:42:40Z 1 2020-02-15T06:59:45Z +12853 2005-08-19T02:15:32Z 3753 232 2005-08-27T21:26:32Z 2 2020-02-15T06:59:45Z +12854 2005-08-19T02:18:51Z 4577 362 2005-08-24T04:16:51Z 2 2020-02-15T06:59:45Z +12855 2005-08-19T02:18:58Z 2900 242 2005-08-19T20:50:58Z 1 2020-02-15T06:59:45Z +12856 2005-08-19T02:19:13Z 132 4 2005-08-23T07:49:13Z 2 2020-02-15T06:59:45Z +12857 2005-08-19T02:20:13Z 4307 443 2005-08-20T20:20:13Z 1 2020-02-15T06:59:45Z +12858 2005-08-19T02:22:16Z 3024 144 2005-08-26T07:25:16Z 2 2020-02-15T06:59:45Z +12859 2005-08-19T02:23:23Z 2289 139 2005-08-28T04:55:23Z 2 2020-02-15T06:59:45Z +12860 2005-08-19T02:24:41Z 778 548 2005-08-25T07:43:41Z 1 2020-02-15T06:59:45Z +12861 2005-08-19T02:30:24Z 3115 287 2005-08-22T08:23:24Z 1 2020-02-15T06:59:45Z +12862 2005-08-19T02:31:59Z 473 198 2005-08-26T08:16:59Z 2 2020-02-15T06:59:45Z +12863 2005-08-19T02:35:59Z 780 234 2005-08-21T21:13:59Z 1 2020-02-15T06:59:45Z +12864 2005-08-19T02:38:26Z 4481 465 2005-08-22T21:42:26Z 2 2020-02-15T06:59:45Z +12865 2005-08-19T02:38:50Z 3437 460 2005-08-21T02:33:50Z 1 2020-02-15T06:59:45Z +12866 2005-08-19T02:39:47Z 1766 229 2005-08-27T02:14:47Z 1 2020-02-15T06:59:45Z +12867 2005-08-19T02:40:11Z 4499 330 2005-08-20T04:01:11Z 1 2020-02-15T06:59:45Z +12868 2005-08-19T02:47:19Z 4054 551 2005-08-20T00:30:19Z 2 2020-02-15T06:59:45Z +12869 2005-08-19T02:50:36Z 3939 99 2005-08-26T21:38:36Z 2 2020-02-15T06:59:45Z +12870 2005-08-19T02:54:38Z 991 86 2005-08-27T00:45:38Z 1 2020-02-15T06:59:45Z +12871 2005-08-19T02:55:36Z 2625 217 2005-08-22T01:00:36Z 2 2020-02-15T06:59:45Z +12872 2005-08-19T02:57:37Z 1975 54 2005-08-22T23:23:37Z 1 2020-02-15T06:59:45Z +12873 2005-08-19T03:05:41Z 2140 138 2005-08-22T06:57:41Z 2 2020-02-15T06:59:45Z +12874 2005-08-19T03:07:57Z 848 254 2005-08-22T22:42:57Z 2 2020-02-15T06:59:45Z +12875 2005-08-19T03:10:21Z 1708 483 2005-08-26T01:00:21Z 2 2020-02-15T06:59:45Z +12876 2005-08-19T03:12:19Z 803 356 2005-08-20T02:24:19Z 2 2020-02-15T06:59:45Z +12877 2005-08-19T03:16:58Z 1016 40 2005-08-25T02:10:58Z 2 2020-02-15T06:59:45Z +12878 2005-08-19T03:17:08Z 1182 596 2005-08-23T03:44:08Z 1 2020-02-15T06:59:45Z +12879 2005-08-19T03:22:55Z 3556 210 2005-08-24T22:00:55Z 1 2020-02-15T06:59:45Z +12880 2005-08-19T03:27:17Z 3386 552 2005-08-28T06:16:17Z 2 2020-02-15T06:59:45Z +12881 2005-08-19T03:28:13Z 1432 121 2005-08-25T05:25:13Z 1 2020-02-15T06:59:45Z +12882 2005-08-19T03:33:46Z 911 153 2005-08-21T22:49:46Z 1 2020-02-15T06:59:45Z +12883 2005-08-19T03:33:47Z 964 555 2005-08-23T21:55:47Z 1 2020-02-15T06:59:45Z +12884 2005-08-19T03:34:04Z 2768 348 2005-08-28T01:00:04Z 2 2020-02-15T06:59:45Z +12885 2005-08-19T03:37:25Z 883 185 2005-08-20T22:10:25Z 1 2020-02-15T06:59:45Z +12886 2005-08-19T03:38:32Z 2157 174 2005-08-26T02:17:32Z 1 2020-02-15T06:59:45Z +12887 2005-08-19T03:38:54Z 1214 150 2005-08-27T08:45:54Z 1 2020-02-15T06:59:45Z +12888 2005-08-19T03:41:09Z 4398 146 2005-08-24T07:09:09Z 2 2020-02-15T06:59:45Z +12889 2005-08-19T03:41:31Z 4376 515 2005-08-27T00:46:31Z 2 2020-02-15T06:59:45Z +12890 2005-08-19T03:42:08Z 3831 150 2005-08-19T23:08:08Z 1 2020-02-15T06:59:45Z +12891 2006-02-14T15:16:03Z 2764 388 2 2020-02-15T06:59:45Z +12892 2005-08-19T03:46:34Z 1044 121 2005-08-21T05:11:34Z 2 2020-02-15T06:59:45Z +12893 2005-08-19T03:46:43Z 168 498 2005-08-20T08:38:43Z 2 2020-02-15T06:59:45Z +12894 2005-08-19T03:49:28Z 4581 541 2005-08-25T01:51:28Z 2 2020-02-15T06:59:45Z +12895 2005-08-19T03:50:48Z 4372 396 2005-08-26T09:13:48Z 1 2020-02-15T06:59:45Z +12896 2005-08-19T03:52:44Z 148 220 2005-08-24T22:27:44Z 1 2020-02-15T06:59:45Z +12897 2006-02-14T15:16:03Z 1512 178 2 2020-02-15T06:59:45Z +12898 2005-08-19T03:54:34Z 1555 586 2005-08-23T08:14:34Z 2 2020-02-15T06:59:45Z +12899 2005-08-19T04:03:34Z 830 105 2005-08-20T08:34:34Z 2 2020-02-15T06:59:45Z +12900 2005-08-19T04:03:49Z 849 408 2005-08-24T22:11:49Z 2 2020-02-15T06:59:45Z +12901 2006-02-14T15:16:03Z 2799 180 2 2020-02-15T06:59:45Z +12902 2006-02-14T15:16:03Z 464 91 2 2020-02-15T06:59:45Z +12903 2005-08-19T04:09:38Z 2340 302 2005-08-26T03:24:38Z 2 2020-02-15T06:59:45Z +12904 2005-08-19T04:10:50Z 459 257 2005-08-27T23:24:50Z 1 2020-02-15T06:59:45Z +12905 2005-08-19T04:13:37Z 1043 480 2005-08-26T23:52:37Z 1 2020-02-15T06:59:45Z +12906 2005-08-19T04:13:43Z 2060 401 2005-08-20T04:24:43Z 1 2020-02-15T06:59:45Z +12907 2005-08-19T04:16:13Z 2844 422 2005-08-27T02:43:13Z 1 2020-02-15T06:59:45Z +12908 2005-08-19T04:19:05Z 175 340 2005-08-25T09:50:05Z 1 2020-02-15T06:59:45Z +12909 2005-08-19T04:20:25Z 4300 210 2005-08-24T06:40:25Z 2 2020-02-15T06:59:45Z +12910 2005-08-19T04:23:13Z 3968 128 2005-08-20T22:27:13Z 1 2020-02-15T06:59:45Z +12911 2005-08-19T04:24:10Z 1770 367 2005-08-26T00:35:10Z 2 2020-02-15T06:59:45Z +12912 2005-08-19T04:24:35Z 1747 364 2005-08-27T07:13:35Z 2 2020-02-15T06:59:45Z +12913 2005-08-19T04:25:39Z 3719 356 2005-08-25T07:23:39Z 1 2020-02-15T06:59:45Z +12914 2005-08-19T04:25:59Z 4396 501 2005-08-23T08:04:59Z 2 2020-02-15T06:59:45Z +12915 2006-02-14T15:16:03Z 2651 516 1 2020-02-15T06:59:45Z +12916 2005-08-19T04:27:05Z 2277 157 2005-08-21T02:33:05Z 2 2020-02-15T06:59:45Z +12917 2005-08-19T04:27:11Z 107 152 2005-08-20T03:04:11Z 2 2020-02-15T06:59:45Z +12918 2005-08-19T04:31:36Z 972 13 2005-08-25T05:50:36Z 1 2020-02-15T06:59:45Z +12919 2005-08-19T04:32:15Z 2121 263 2005-08-24T05:56:15Z 2 2020-02-15T06:59:45Z +12920 2005-08-19T04:32:32Z 2516 511 2005-08-27T00:44:32Z 2 2020-02-15T06:59:45Z +12921 2005-08-19T04:47:48Z 781 234 2005-08-25T00:07:48Z 2 2020-02-15T06:59:45Z +12922 2005-08-19T04:48:48Z 342 25 2005-08-23T23:32:48Z 1 2020-02-15T06:59:45Z +12923 2005-08-19T04:50:20Z 1390 531 2005-08-22T10:42:20Z 1 2020-02-15T06:59:45Z +12924 2005-08-19T04:51:47Z 3807 519 2005-08-26T07:50:47Z 1 2020-02-15T06:59:45Z +12925 2005-08-19T04:59:01Z 3361 57 2005-08-27T02:03:01Z 2 2020-02-15T06:59:45Z +12926 2005-08-19T05:00:16Z 23 336 2005-08-26T06:12:16Z 2 2020-02-15T06:59:45Z +12927 2005-08-19T05:02:46Z 1171 223 2005-08-23T01:08:46Z 1 2020-02-15T06:59:45Z +12928 2005-08-19T05:04:09Z 4531 353 2005-08-24T09:09:09Z 2 2020-02-15T06:59:45Z +12929 2005-08-19T05:05:23Z 1531 310 2005-08-25T04:37:23Z 1 2020-02-15T06:59:45Z +12930 2005-08-19T05:11:32Z 4410 414 2005-08-22T02:20:32Z 2 2020-02-15T06:59:45Z +12931 2005-08-19T05:11:47Z 3070 407 2005-08-21T00:59:47Z 1 2020-02-15T06:59:45Z +12932 2005-08-19T05:17:30Z 2295 416 2005-08-21T09:24:30Z 1 2020-02-15T06:59:45Z +12933 2005-08-19T05:18:20Z 4103 589 2005-08-27T00:13:20Z 1 2020-02-15T06:59:45Z +12934 2005-08-19T05:18:42Z 3242 591 2005-08-24T10:42:42Z 1 2020-02-15T06:59:45Z +12935 2005-08-19T05:20:25Z 193 279 2005-08-21T03:10:25Z 2 2020-02-15T06:59:45Z +12936 2005-08-19T05:25:06Z 654 387 2005-08-28T08:21:06Z 1 2020-02-15T06:59:45Z +12937 2005-08-19T05:25:30Z 3826 348 2005-08-22T10:40:30Z 2 2020-02-15T06:59:45Z +12938 2006-02-14T15:16:03Z 3987 28 1 2020-02-15T06:59:45Z +12939 2005-08-19T05:38:25Z 3375 181 2005-08-23T23:52:25Z 1 2020-02-15T06:59:45Z +12940 2005-08-19T05:38:29Z 2222 340 2005-08-20T08:15:29Z 1 2020-02-15T06:59:45Z +12941 2005-08-19T05:39:26Z 2951 195 2005-08-22T09:50:26Z 2 2020-02-15T06:59:45Z +12942 2005-08-19T05:40:36Z 3938 103 2005-08-27T02:04:36Z 1 2020-02-15T06:59:45Z +12943 2005-08-19T05:46:26Z 3930 547 2005-08-22T03:26:26Z 2 2020-02-15T06:59:45Z +12944 2005-08-19T05:48:12Z 2956 148 2005-08-28T10:10:12Z 1 2020-02-15T06:59:45Z +12945 2005-08-19T05:51:46Z 3638 312 2005-08-23T11:22:46Z 2 2020-02-15T06:59:45Z +12946 2005-08-19T05:53:34Z 2066 444 2005-08-20T07:30:34Z 1 2020-02-15T06:59:45Z +12947 2005-08-19T05:54:21Z 935 499 2005-08-22T09:17:21Z 1 2020-02-15T06:59:45Z +12948 2005-08-19T05:55:14Z 4173 442 2005-08-22T01:05:14Z 2 2020-02-15T06:59:45Z +12949 2005-08-19T05:55:52Z 4209 279 2005-08-23T00:01:52Z 1 2020-02-15T06:59:45Z +12950 2005-08-19T05:55:58Z 1064 463 2005-08-23T08:05:58Z 1 2020-02-15T06:59:45Z +12951 2005-08-19T05:56:44Z 2143 70 2005-08-24T11:28:44Z 2 2020-02-15T06:59:45Z +12952 2005-08-19T06:00:52Z 2460 228 2005-08-20T02:17:52Z 1 2020-02-15T06:59:45Z +12953 2005-08-19T06:04:07Z 3954 429 2005-08-28T11:05:07Z 1 2020-02-15T06:59:45Z +12954 2005-08-19T06:04:34Z 3592 63 2005-08-28T02:12:34Z 2 2020-02-15T06:59:45Z +12955 2005-08-19T06:05:58Z 2040 410 2005-08-26T04:24:58Z 2 2020-02-15T06:59:45Z +12956 2005-08-19T06:06:26Z 3613 241 2005-08-28T08:37:26Z 2 2020-02-15T06:59:45Z +12957 2005-08-19T06:12:44Z 2219 512 2005-08-28T10:49:44Z 2 2020-02-15T06:59:45Z +12958 2005-08-19T06:19:21Z 4214 569 2005-08-20T02:21:21Z 1 2020-02-15T06:59:45Z +12959 2006-02-14T15:16:03Z 1540 284 2 2020-02-15T06:59:45Z +12960 2005-08-19T06:21:52Z 3498 152 2005-08-25T04:16:52Z 1 2020-02-15T06:59:45Z +12961 2005-08-19T06:22:37Z 4529 386 2005-08-23T00:49:37Z 1 2020-02-15T06:59:45Z +12962 2005-08-19T06:22:48Z 575 171 2005-08-27T07:47:48Z 1 2020-02-15T06:59:45Z +12963 2005-08-19T06:26:04Z 1521 2 2005-08-23T11:37:04Z 2 2020-02-15T06:59:45Z +12964 2005-08-19T06:29:13Z 2854 142 2005-08-22T12:23:13Z 2 2020-02-15T06:59:45Z +12965 2005-08-19T06:33:00Z 4308 430 2005-08-22T02:02:00Z 1 2020-02-15T06:59:45Z +12966 2005-08-19T06:37:48Z 3196 69 2005-08-26T03:59:48Z 2 2020-02-15T06:59:45Z +12967 2005-08-19T06:37:51Z 3404 170 2005-08-25T06:58:51Z 2 2020-02-15T06:59:45Z +12968 2005-08-19T06:38:18Z 3108 166 2005-08-20T08:29:18Z 1 2020-02-15T06:59:45Z +12969 2005-08-19T06:38:59Z 191 224 2005-08-25T09:09:59Z 2 2020-02-15T06:59:45Z +12970 2006-02-14T15:16:03Z 3999 216 1 2020-02-15T06:59:45Z +12971 2005-08-19T06:42:43Z 3504 492 2005-08-23T10:49:43Z 2 2020-02-15T06:59:45Z +12972 2005-08-19T06:43:28Z 1218 55 2005-08-27T11:30:28Z 1 2020-02-15T06:59:45Z +12973 2005-08-19T06:48:11Z 128 163 2005-08-22T07:18:11Z 2 2020-02-15T06:59:45Z +12974 2005-08-19T06:51:02Z 3599 218 2005-08-25T11:48:02Z 2 2020-02-15T06:59:45Z +12975 2005-08-19T06:51:19Z 3300 236 2005-08-25T04:22:19Z 1 2020-02-15T06:59:45Z +12976 2005-08-19T06:52:58Z 66 592 2005-08-26T11:23:58Z 2 2020-02-15T06:59:45Z +12977 2005-08-19T06:55:33Z 2004 388 2005-08-27T07:38:33Z 2 2020-02-15T06:59:45Z +12978 2005-08-19T06:57:27Z 3252 167 2005-08-20T09:10:27Z 2 2020-02-15T06:59:45Z +12979 2005-08-19T07:00:35Z 1227 267 2005-08-21T06:12:35Z 2 2020-02-15T06:59:45Z +12980 2005-08-19T07:03:14Z 1854 144 2005-08-26T05:07:14Z 1 2020-02-15T06:59:45Z +12981 2005-08-19T07:04:00Z 3925 481 2005-08-21T09:17:00Z 1 2020-02-15T06:59:45Z +12982 2005-08-19T07:06:34Z 1258 44 2005-08-21T06:53:34Z 1 2020-02-15T06:59:45Z +12983 2005-08-19T07:06:51Z 406 148 2005-08-28T10:35:51Z 2 2020-02-15T06:59:45Z +12984 2005-08-19T07:06:51Z 4211 537 2005-08-22T04:04:51Z 1 2020-02-15T06:59:45Z +12985 2005-08-19T07:08:05Z 4133 83 2005-08-24T02:25:05Z 1 2020-02-15T06:59:45Z +12986 2005-08-19T07:09:36Z 1145 210 2005-08-22T05:01:36Z 1 2020-02-15T06:59:45Z +12987 2005-08-19T07:11:44Z 3665 134 2005-08-20T04:17:44Z 1 2020-02-15T06:59:45Z +12988 2006-02-14T15:16:03Z 81 236 2 2020-02-15T06:59:45Z +12989 2005-08-19T07:19:04Z 2929 306 2005-08-21T10:58:04Z 1 2020-02-15T06:59:45Z +12990 2005-08-19T07:20:39Z 1825 360 2005-08-21T12:31:39Z 2 2020-02-15T06:59:45Z +12991 2005-08-19T07:21:24Z 2227 126 2005-08-21T04:31:24Z 2 2020-02-15T06:59:45Z +12992 2005-08-19T07:23:06Z 3022 597 2005-08-23T06:11:06Z 2 2020-02-15T06:59:45Z +12993 2005-08-19T07:24:03Z 4225 484 2005-08-26T07:15:03Z 2 2020-02-15T06:59:45Z +12994 2005-08-19T07:26:10Z 3809 506 2005-08-20T07:02:10Z 2 2020-02-15T06:59:45Z +12995 2005-08-19T07:26:30Z 2069 566 2005-08-25T12:47:30Z 2 2020-02-15T06:59:45Z +12996 2005-08-19T07:31:32Z 4445 380 2005-08-25T11:59:32Z 1 2020-02-15T06:59:45Z +12997 2005-08-19T07:31:46Z 1661 311 2005-08-24T09:20:46Z 2 2020-02-15T06:59:45Z +12998 2005-08-19T07:32:16Z 2301 354 2005-08-24T01:56:16Z 2 2020-02-15T06:59:45Z +12999 2005-08-19T07:34:53Z 661 24 2005-08-26T03:57:53Z 1 2020-02-15T06:59:45Z +13000 2005-08-19T07:36:42Z 2341 141 2005-08-22T08:50:42Z 1 2020-02-15T06:59:45Z +13001 2005-08-19T07:36:44Z 2505 254 2005-08-22T13:06:44Z 1 2020-02-15T06:59:45Z +13002 2005-08-19T07:37:58Z 3892 477 2005-08-26T11:32:58Z 2 2020-02-15T06:59:45Z +13003 2005-08-19T07:39:29Z 3431 451 2005-08-23T05:48:29Z 2 2020-02-15T06:59:45Z +13004 2005-08-19T07:40:08Z 771 442 2005-08-20T11:49:08Z 1 2020-02-15T06:59:45Z +13005 2005-08-19T07:45:42Z 3417 104 2005-08-20T12:45:42Z 2 2020-02-15T06:59:45Z +13006 2005-08-19T07:47:16Z 3157 134 2005-08-21T06:17:16Z 1 2020-02-15T06:59:45Z +13007 2005-08-19T07:47:43Z 4280 430 2005-08-26T02:48:43Z 2 2020-02-15T06:59:45Z +13008 2006-02-14T15:16:03Z 1838 181 1 2020-02-15T06:59:45Z +13009 2005-08-19T07:50:35Z 677 376 2005-08-21T06:04:35Z 1 2020-02-15T06:59:45Z +13010 2005-08-19T07:52:21Z 825 413 2005-08-27T12:51:21Z 1 2020-02-15T06:59:45Z +13011 2005-08-19T07:53:58Z 1998 529 2005-08-24T12:00:58Z 1 2020-02-15T06:59:45Z +13012 2005-08-19T07:54:59Z 1690 145 2005-08-26T09:50:59Z 2 2020-02-15T06:59:45Z +13013 2005-08-19T07:55:51Z 841 293 2005-08-26T05:14:51Z 1 2020-02-15T06:59:45Z +13014 2005-08-19T07:56:08Z 3400 344 2005-08-21T10:20:08Z 2 2020-02-15T06:59:45Z +13015 2005-08-19T07:56:51Z 3461 126 2005-08-28T07:05:51Z 2 2020-02-15T06:59:45Z +13016 2005-08-19T07:57:14Z 3095 175 2005-08-23T03:29:14Z 1 2020-02-15T06:59:45Z +13017 2005-08-19T08:02:24Z 2160 104 2005-08-26T07:32:24Z 1 2020-02-15T06:59:45Z +13018 2005-08-19T08:04:50Z 2122 168 2005-08-26T11:46:50Z 1 2020-02-15T06:59:45Z +13019 2005-08-19T08:07:43Z 2827 597 2005-08-20T12:09:43Z 2 2020-02-15T06:59:45Z +13020 2005-08-19T08:07:50Z 4501 92 2005-08-28T11:42:50Z 1 2020-02-15T06:59:45Z +13021 2005-08-19T08:08:04Z 1242 309 2005-08-26T12:04:04Z 2 2020-02-15T06:59:45Z +13022 2006-02-14T15:16:03Z 2266 336 2 2020-02-15T06:59:45Z +13023 2005-08-19T08:13:54Z 1566 69 2005-08-27T13:18:54Z 1 2020-02-15T06:59:45Z +13024 2005-08-19T08:19:21Z 2917 401 2005-08-27T05:18:21Z 1 2020-02-15T06:59:45Z +13025 2006-02-14T15:16:03Z 4066 269 1 2020-02-15T06:59:45Z +13026 2005-08-19T08:22:45Z 3026 79 2005-08-21T09:31:45Z 1 2020-02-15T06:59:45Z +13027 2005-08-19T08:25:16Z 3756 128 2005-08-25T13:42:16Z 1 2020-02-15T06:59:45Z +13028 2005-08-19T08:27:23Z 2165 371 2005-08-24T03:46:23Z 1 2020-02-15T06:59:45Z +13029 2005-08-19T08:28:04Z 3283 293 2005-08-22T12:25:04Z 2 2020-02-15T06:59:45Z +13030 2005-08-19T08:28:11Z 2614 240 2005-08-24T07:20:11Z 1 2020-02-15T06:59:45Z +13031 2005-08-19T08:30:04Z 1525 567 2005-08-23T09:35:04Z 2 2020-02-15T06:59:45Z +13032 2005-08-19T08:31:50Z 3699 82 2005-08-23T04:00:50Z 2 2020-02-15T06:59:45Z +13033 2005-08-19T08:34:39Z 1682 344 2005-08-28T10:13:39Z 1 2020-02-15T06:59:45Z +13034 2005-08-19T08:41:29Z 990 387 2005-08-20T07:36:29Z 2 2020-02-15T06:59:45Z +13035 2005-08-19T08:46:45Z 4082 135 2005-08-22T11:42:45Z 1 2020-02-15T06:59:45Z +13036 2005-08-19T08:48:37Z 1469 20 2005-08-22T04:13:37Z 2 2020-02-15T06:59:45Z +13037 2005-08-19T08:53:57Z 65 275 2005-08-28T08:56:57Z 2 2020-02-15T06:59:45Z +13038 2005-08-19T08:55:16Z 2226 532 2005-08-25T12:23:16Z 2 2020-02-15T06:59:45Z +13039 2005-08-19T08:55:19Z 1952 370 2005-08-20T07:39:19Z 2 2020-02-15T06:59:45Z +13040 2005-08-19T09:04:24Z 4113 425 2005-08-23T12:36:24Z 2 2020-02-15T06:59:45Z +13041 2005-08-19T09:05:38Z 1576 462 2005-08-27T06:34:38Z 1 2020-02-15T06:59:45Z +13042 2005-08-19T09:06:08Z 1047 414 2005-08-22T13:46:08Z 2 2020-02-15T06:59:45Z +13043 2005-08-19T09:07:13Z 24 127 2005-08-27T07:49:13Z 1 2020-02-15T06:59:45Z +13044 2005-08-19T09:14:31Z 809 142 2005-08-20T11:16:31Z 1 2020-02-15T06:59:45Z +13045 2005-08-19T09:17:35Z 389 254 2005-08-23T12:04:35Z 1 2020-02-15T06:59:45Z +13046 2005-08-19T09:21:10Z 965 37 2005-08-26T13:00:10Z 2 2020-02-15T06:59:45Z +13047 2005-08-19T09:24:49Z 2704 394 2005-08-24T11:06:49Z 2 2020-02-15T06:59:45Z +13048 2005-08-19T09:25:06Z 1029 486 2005-08-28T11:18:06Z 2 2020-02-15T06:59:45Z +13049 2005-08-19T09:25:40Z 4122 53 2005-08-27T10:19:40Z 2 2020-02-15T06:59:45Z +13050 2005-08-19T09:31:23Z 3682 131 2005-08-26T06:56:23Z 2 2020-02-15T06:59:45Z +13051 2005-08-19T09:31:33Z 4064 90 2005-08-28T06:15:33Z 1 2020-02-15T06:59:45Z +13052 2005-08-19T09:31:42Z 3036 502 2005-08-28T15:11:42Z 2 2020-02-15T06:59:45Z +13053 2005-08-19T09:31:48Z 2044 140 2005-08-28T07:51:48Z 2 2020-02-15T06:59:45Z +13054 2005-08-19T09:34:02Z 2983 325 2005-08-23T05:25:02Z 2 2020-02-15T06:59:45Z +13055 2005-08-19T09:36:28Z 3580 485 2005-08-24T05:53:28Z 2 2020-02-15T06:59:45Z +13056 2006-02-14T15:16:03Z 3751 115 2 2020-02-15T06:59:45Z +13057 2005-08-19T09:40:05Z 876 105 2005-08-28T13:22:05Z 2 2020-02-15T06:59:45Z +13058 2005-08-19T09:40:53Z 2437 24 2005-08-26T05:48:53Z 2 2020-02-15T06:59:45Z +13059 2005-08-19T09:42:01Z 3810 341 2005-08-21T12:07:01Z 1 2020-02-15T06:59:45Z +13060 2005-08-19T09:43:25Z 507 22 2005-08-28T15:22:25Z 1 2020-02-15T06:59:45Z +13061 2005-08-19T09:43:39Z 730 576 2005-08-24T10:03:39Z 1 2020-02-15T06:59:45Z +13062 2005-08-19T09:44:17Z 1790 385 2005-08-27T11:42:17Z 1 2020-02-15T06:59:45Z +13063 2005-08-19T09:45:41Z 1192 5 2005-08-24T09:11:41Z 2 2020-02-15T06:59:45Z +13064 2005-08-19T09:46:53Z 4131 588 2005-08-21T08:29:53Z 1 2020-02-15T06:59:45Z +13065 2005-08-19T09:48:52Z 1887 518 2005-08-22T07:12:52Z 1 2020-02-15T06:59:45Z +13066 2005-08-19T09:50:39Z 3730 336 2005-08-22T14:01:39Z 1 2020-02-15T06:59:45Z +13067 2005-08-19T09:51:17Z 3825 172 2005-08-25T09:58:17Z 2 2020-02-15T06:59:45Z +13068 2005-08-19T09:55:16Z 3019 1 2005-08-20T14:44:16Z 2 2020-02-15T06:59:45Z +13069 2005-08-19T09:55:20Z 368 299 2005-08-24T04:10:20Z 2 2020-02-15T06:59:45Z +13070 2005-08-19T09:56:23Z 2214 235 2005-08-24T09:08:23Z 2 2020-02-15T06:59:45Z +13071 2005-08-19T10:01:07Z 527 578 2005-08-26T14:26:07Z 1 2020-02-15T06:59:45Z +13072 2005-08-19T10:03:30Z 2313 447 2005-08-22T14:27:30Z 2 2020-02-15T06:59:45Z +13073 2005-08-19T10:05:38Z 855 506 2005-08-26T07:37:38Z 2 2020-02-15T06:59:45Z +13074 2005-08-19T10:06:53Z 3266 341 2005-08-28T09:56:53Z 2 2020-02-15T06:59:45Z +13075 2005-08-19T10:10:10Z 4125 224 2005-08-21T08:44:10Z 2 2020-02-15T06:59:45Z +13076 2005-08-19T10:10:26Z 1226 201 2005-08-22T05:41:26Z 1 2020-02-15T06:59:45Z +13077 2005-08-19T10:15:19Z 433 241 2005-08-21T06:51:19Z 2 2020-02-15T06:59:45Z +13078 2005-08-19T10:16:43Z 4104 479 2005-08-27T11:35:43Z 2 2020-02-15T06:59:45Z +13079 2006-02-14T15:16:03Z 733 107 1 2020-02-15T06:59:45Z +13080 2005-08-19T10:18:00Z 4222 452 2005-08-22T06:37:00Z 2 2020-02-15T06:59:45Z +13081 2005-08-19T10:19:06Z 3077 170 2005-08-20T05:49:06Z 1 2020-02-15T06:59:45Z +13082 2005-08-19T10:19:19Z 2117 387 2005-08-28T05:02:19Z 1 2020-02-15T06:59:45Z +13083 2005-08-19T10:26:45Z 3469 455 2005-08-23T05:31:45Z 2 2020-02-15T06:59:45Z +13084 2005-08-19T10:27:25Z 3792 204 2005-08-26T07:32:25Z 2 2020-02-15T06:59:45Z +13085 2005-08-19T10:28:22Z 360 215 2005-08-22T07:37:22Z 2 2020-02-15T06:59:45Z +13086 2005-08-19T10:32:28Z 3712 350 2005-08-26T07:57:28Z 2 2020-02-15T06:59:45Z +13087 2005-08-19T10:33:52Z 2693 171 2005-08-27T09:15:52Z 2 2020-02-15T06:59:45Z +13088 2005-08-19T10:36:11Z 4281 457 2005-08-21T09:12:11Z 1 2020-02-15T06:59:45Z +13089 2005-08-19T10:38:56Z 1783 63 2005-08-24T12:41:56Z 1 2020-02-15T06:59:45Z +13090 2005-08-19T10:39:54Z 1447 52 2005-08-28T10:31:54Z 1 2020-02-15T06:59:45Z +13091 2005-08-19T10:40:10Z 1815 127 2005-08-23T09:03:10Z 1 2020-02-15T06:59:45Z +13092 2005-08-19T10:41:09Z 4359 480 2005-08-25T05:11:09Z 2 2020-02-15T06:59:45Z +13093 2005-08-19T10:46:16Z 1667 160 2005-08-26T08:05:16Z 1 2020-02-15T06:59:45Z +13094 2005-08-19T10:47:58Z 3178 494 2005-08-21T06:20:58Z 1 2020-02-15T06:59:45Z +13095 2005-08-19T10:48:10Z 520 508 2005-08-28T06:15:10Z 1 2020-02-15T06:59:45Z +13096 2005-08-19T10:49:03Z 420 13 2005-08-21T05:33:03Z 1 2020-02-15T06:59:45Z +13097 2005-08-19T10:50:43Z 4194 157 2005-08-24T11:10:43Z 2 2020-02-15T06:59:45Z +13098 2005-08-19T10:51:59Z 3770 51 2005-08-24T11:27:59Z 1 2020-02-15T06:59:45Z +13099 2005-08-19T10:55:19Z 969 436 2005-08-27T10:54:19Z 1 2020-02-15T06:59:45Z +13100 2005-08-19T10:55:45Z 916 451 2005-08-25T12:28:45Z 1 2020-02-15T06:59:45Z +13101 2005-08-19T11:01:54Z 1804 39 2005-08-27T16:06:54Z 2 2020-02-15T06:59:45Z +13102 2005-08-19T11:02:03Z 2885 285 2005-08-28T13:05:03Z 2 2020-02-15T06:59:45Z +13103 2005-08-19T11:05:51Z 1751 274 2005-08-26T09:16:51Z 2 2020-02-15T06:59:45Z +13104 2005-08-19T11:06:06Z 310 591 2005-08-21T13:50:06Z 2 2020-02-15T06:59:45Z +13105 2005-08-19T11:06:16Z 729 279 2005-08-27T15:21:16Z 1 2020-02-15T06:59:45Z +13106 2006-02-14T15:16:03Z 3212 440 1 2020-02-15T06:59:45Z +13107 2005-08-19T11:13:58Z 3870 356 2005-08-20T15:03:58Z 2 2020-02-15T06:59:45Z +13108 2006-02-14T15:16:03Z 3630 73 1 2020-02-15T06:59:45Z +13109 2005-08-19T11:23:20Z 46 259 2005-08-25T17:05:20Z 1 2020-02-15T06:59:45Z +13110 2005-08-19T11:24:37Z 62 447 2005-08-21T05:48:37Z 1 2020-02-15T06:59:45Z +13111 2005-08-19T11:25:10Z 580 26 2005-08-21T05:52:10Z 2 2020-02-15T06:59:45Z +13112 2005-08-19T11:27:10Z 2074 259 2005-08-22T05:32:10Z 1 2020-02-15T06:59:45Z +13113 2005-08-19T11:27:20Z 2393 573 2005-08-23T12:40:20Z 1 2020-02-15T06:59:45Z +13114 2005-08-19T11:27:32Z 4342 550 2005-08-28T11:21:32Z 2 2020-02-15T06:59:45Z +13115 2005-08-19T11:27:43Z 1961 84 2005-08-20T10:58:43Z 1 2020-02-15T06:59:45Z +13116 2005-08-19T11:31:41Z 1544 150 2005-08-27T16:05:41Z 1 2020-02-15T06:59:45Z +13117 2005-08-19T11:33:20Z 3430 385 2005-08-20T11:55:20Z 2 2020-02-15T06:59:45Z +13118 2005-08-19T11:39:58Z 470 181 2005-08-25T14:44:58Z 1 2020-02-15T06:59:45Z +13119 2005-08-19T11:44:59Z 1401 240 2005-08-20T12:30:59Z 2 2020-02-15T06:59:45Z +13120 2005-08-19T11:47:38Z 2273 314 2005-08-26T08:20:38Z 2 2020-02-15T06:59:45Z +13121 2005-08-19T11:51:39Z 3517 251 2005-08-22T11:50:39Z 2 2020-02-15T06:59:45Z +13122 2005-08-19T11:53:49Z 3319 277 2005-08-26T16:01:49Z 2 2020-02-15T06:59:45Z +13123 2005-08-19T11:55:13Z 2804 220 2005-08-21T05:55:13Z 2 2020-02-15T06:59:45Z +13124 2005-08-19T11:55:59Z 2105 78 2005-08-26T06:01:59Z 2 2020-02-15T06:59:45Z +13125 2005-08-19T11:57:49Z 3722 192 2005-08-26T07:53:49Z 1 2020-02-15T06:59:45Z +13126 2005-08-19T12:00:28Z 1392 253 2005-08-28T17:27:28Z 1 2020-02-15T06:59:45Z +13127 2005-08-19T12:04:03Z 2582 178 2005-08-27T13:56:03Z 1 2020-02-15T06:59:45Z +13128 2005-08-19T12:04:16Z 485 206 2005-08-26T16:06:16Z 2 2020-02-15T06:59:45Z +13129 2005-08-19T12:05:04Z 4455 274 2005-08-26T10:24:04Z 1 2020-02-15T06:59:45Z +13130 2005-08-19T12:06:42Z 2006 254 2005-08-23T12:08:42Z 1 2020-02-15T06:59:45Z +13131 2005-08-19T12:08:13Z 1466 480 2005-08-27T13:43:13Z 2 2020-02-15T06:59:45Z +13132 2005-08-19T12:10:57Z 1748 529 2005-08-27T12:22:57Z 2 2020-02-15T06:59:45Z +13133 2005-08-19T12:11:03Z 1635 523 2005-08-28T12:36:03Z 2 2020-02-15T06:59:45Z +13134 2005-08-19T12:14:14Z 1354 184 2005-08-20T11:52:14Z 1 2020-02-15T06:59:45Z +13135 2005-08-19T12:22:52Z 1585 361 2005-08-21T14:04:52Z 2 2020-02-15T06:59:45Z +13136 2005-08-19T12:24:23Z 2532 50 2005-08-28T08:37:23Z 2 2020-02-15T06:59:45Z +13137 2005-08-19T12:26:32Z 4431 20 2005-08-22T13:26:32Z 1 2020-02-15T06:59:45Z +13138 2005-08-19T12:30:01Z 3138 214 2005-08-21T06:35:01Z 2 2020-02-15T06:59:45Z +13139 2005-08-19T12:32:10Z 2099 554 2005-08-24T12:12:10Z 1 2020-02-15T06:59:45Z +13140 2005-08-19T12:35:56Z 4210 323 2005-08-27T18:24:56Z 2 2020-02-15T06:59:45Z +13141 2005-08-19T12:41:41Z 4545 376 2005-08-21T08:17:41Z 2 2020-02-15T06:59:45Z +13142 2005-08-19T12:42:28Z 1404 269 2005-08-26T14:52:28Z 1 2020-02-15T06:59:45Z +13143 2005-08-19T12:44:38Z 1655 371 2005-08-25T10:59:38Z 2 2020-02-15T06:59:45Z +13144 2005-08-19T12:45:55Z 3766 456 2005-08-27T10:37:55Z 2 2020-02-15T06:59:45Z +13145 2005-08-19T12:53:53Z 1383 72 2005-08-23T08:06:53Z 1 2020-02-15T06:59:45Z +13146 2005-08-19T12:54:42Z 1463 116 2005-08-26T07:31:42Z 1 2020-02-15T06:59:45Z +13147 2005-08-19T12:55:09Z 3490 37 2005-08-22T18:10:09Z 1 2020-02-15T06:59:45Z +13148 2005-08-19T12:55:30Z 1762 137 2005-08-21T11:01:30Z 1 2020-02-15T06:59:45Z +13149 2005-08-19T13:07:12Z 1436 40 2005-08-28T18:12:12Z 1 2020-02-15T06:59:45Z +13150 2005-08-19T13:08:19Z 1514 457 2005-08-25T18:00:19Z 1 2020-02-15T06:59:45Z +13151 2005-08-19T13:08:23Z 3045 16 2005-08-20T12:38:23Z 2 2020-02-15T06:59:45Z +13152 2005-08-19T13:09:32Z 3571 597 2005-08-25T14:47:32Z 1 2020-02-15T06:59:45Z +13153 2005-08-19T13:09:47Z 3896 431 2005-08-23T17:35:47Z 2 2020-02-15T06:59:45Z +13154 2005-08-19T13:09:54Z 2465 255 2005-08-26T16:40:54Z 1 2020-02-15T06:59:45Z +13155 2005-08-19T13:10:23Z 290 442 2005-08-25T19:07:23Z 2 2020-02-15T06:59:45Z +13156 2005-08-19T13:10:42Z 770 512 2005-08-25T15:08:42Z 2 2020-02-15T06:59:45Z +13157 2005-08-19T13:12:28Z 4391 592 2005-08-20T10:41:28Z 1 2020-02-15T06:59:45Z +13158 2005-08-19T13:18:10Z 944 327 2005-08-25T09:27:10Z 1 2020-02-15T06:59:45Z +13159 2005-08-19T13:19:59Z 2300 497 2005-08-21T09:22:59Z 2 2020-02-15T06:59:45Z +13160 2005-08-19T13:21:04Z 410 484 2005-08-22T18:49:04Z 1 2020-02-15T06:59:45Z +13161 2006-02-14T15:16:03Z 986 175 1 2020-02-15T06:59:45Z +13162 2005-08-19T13:28:26Z 1845 478 2005-08-24T17:37:26Z 1 2020-02-15T06:59:45Z +13163 2005-08-19T13:29:46Z 3068 57 2005-08-22T07:48:46Z 2 2020-02-15T06:59:45Z +13164 2005-08-19T13:30:55Z 1104 145 2005-08-26T10:12:55Z 2 2020-02-15T06:59:45Z +13165 2005-08-19T13:34:10Z 138 289 2005-08-21T18:33:10Z 2 2020-02-15T06:59:45Z +13166 2005-08-19T13:36:28Z 4386 504 2005-08-22T07:57:28Z 1 2020-02-15T06:59:45Z +13167 2005-08-19T13:36:41Z 557 120 2005-08-23T15:29:41Z 2 2020-02-15T06:59:45Z +13168 2005-08-19T13:37:28Z 2210 186 2005-08-27T17:54:28Z 2 2020-02-15T06:59:45Z +13169 2005-08-19T13:43:35Z 1709 141 2005-08-26T09:31:35Z 1 2020-02-15T06:59:45Z +13170 2005-08-19T13:45:48Z 1072 176 2005-08-27T11:00:48Z 2 2020-02-15T06:59:45Z +13171 2005-08-19T13:48:54Z 1765 122 2005-08-27T18:57:54Z 1 2020-02-15T06:59:45Z +13172 2005-08-19T13:49:07Z 1301 298 2005-08-20T19:39:07Z 2 2020-02-15T06:59:45Z +13173 2005-08-19T13:50:36Z 1304 29 2005-08-26T12:34:36Z 2 2020-02-15T06:59:45Z +13174 2005-08-19T13:52:50Z 2303 482 2005-08-22T14:43:50Z 2 2020-02-15T06:59:45Z +13175 2005-08-19T13:54:53Z 3187 239 2005-08-20T16:25:53Z 2 2020-02-15T06:59:45Z +13176 2005-08-19T13:56:54Z 2269 1 2005-08-23T08:50:54Z 2 2020-02-15T06:59:45Z +13177 2005-08-19T13:56:58Z 3172 126 2005-08-23T13:13:58Z 2 2020-02-15T06:59:45Z +13178 2006-02-14T15:16:03Z 693 394 1 2020-02-15T06:59:45Z +13179 2005-08-19T13:59:53Z 1624 104 2005-08-25T12:10:53Z 1 2020-02-15T06:59:45Z +13180 2005-08-19T14:00:38Z 3443 322 2005-08-20T09:56:38Z 1 2020-02-15T06:59:45Z +13181 2005-08-19T14:00:56Z 1256 128 2005-08-24T13:52:56Z 2 2020-02-15T06:59:45Z +13182 2006-02-14T15:16:03Z 364 496 2 2020-02-15T06:59:45Z +13183 2005-08-19T14:09:26Z 2404 301 2005-08-28T08:44:26Z 2 2020-02-15T06:59:45Z +13184 2005-08-19T14:16:18Z 4395 393 2005-08-20T08:44:18Z 1 2020-02-15T06:59:45Z +13185 2005-08-19T14:22:30Z 241 174 2005-08-20T10:13:30Z 2 2020-02-15T06:59:45Z +13186 2005-08-19T14:23:19Z 2802 176 2005-08-28T11:26:19Z 1 2020-02-15T06:59:45Z +13187 2005-08-19T14:24:48Z 1944 543 2005-08-20T19:37:48Z 1 2020-02-15T06:59:45Z +13188 2005-08-19T14:27:03Z 583 472 2005-08-28T09:15:03Z 2 2020-02-15T06:59:45Z +13189 2005-08-19T14:27:16Z 3444 368 2005-08-28T10:34:16Z 1 2020-02-15T06:59:45Z +13190 2005-08-19T14:27:59Z 4316 290 2005-08-26T13:45:59Z 1 2020-02-15T06:59:45Z +13191 2005-08-19T14:28:48Z 2753 371 2005-08-23T12:53:48Z 2 2020-02-15T06:59:45Z +13192 2005-08-19T14:30:06Z 966 532 2005-08-27T15:20:06Z 1 2020-02-15T06:59:45Z +13193 2005-08-19T14:33:45Z 523 118 2005-08-28T08:46:45Z 2 2020-02-15T06:59:45Z +13194 2005-08-19T14:34:12Z 2473 58 2005-08-26T10:18:12Z 2 2020-02-15T06:59:45Z +13195 2005-08-19T14:39:14Z 2537 565 2005-08-24T10:30:14Z 2 2020-02-15T06:59:45Z +13196 2005-08-19T14:40:32Z 458 202 2005-08-26T18:15:32Z 2 2020-02-15T06:59:45Z +13197 2005-08-19T14:44:03Z 3190 358 2005-08-22T10:11:03Z 1 2020-02-15T06:59:45Z +13198 2005-08-19T14:47:18Z 4273 169 2005-08-21T18:09:18Z 2 2020-02-15T06:59:45Z +13199 2005-08-19T14:53:22Z 4291 339 2005-08-27T19:03:22Z 2 2020-02-15T06:59:45Z +13200 2005-08-19T14:55:58Z 2746 577 2005-08-27T11:35:58Z 2 2020-02-15T06:59:45Z +13201 2005-08-19T14:56:05Z 111 508 2005-08-25T14:37:05Z 1 2020-02-15T06:59:45Z +13202 2005-08-19T14:58:30Z 3546 381 2005-08-27T17:10:30Z 1 2020-02-15T06:59:45Z +13203 2005-08-19T15:00:58Z 804 257 2005-08-27T15:38:58Z 2 2020-02-15T06:59:45Z +13204 2005-08-19T15:02:48Z 4524 152 2005-08-24T18:07:48Z 1 2020-02-15T06:59:45Z +13205 2005-08-19T15:05:26Z 2616 495 2005-08-25T10:41:26Z 2 2020-02-15T06:59:45Z +13206 2005-08-19T15:05:34Z 2477 504 2005-08-21T20:37:34Z 2 2020-02-15T06:59:45Z +13207 2005-08-19T15:14:38Z 674 58 2005-08-27T16:09:38Z 1 2020-02-15T06:59:45Z +13208 2005-08-19T15:18:55Z 609 435 2005-08-24T11:59:55Z 1 2020-02-15T06:59:45Z +13209 2006-02-14T15:16:03Z 1574 5 2 2020-02-15T06:59:45Z +13210 2005-08-19T15:23:38Z 2789 487 2005-08-21T11:57:38Z 1 2020-02-15T06:59:45Z +13211 2005-08-19T15:23:41Z 1968 289 2005-08-22T16:58:41Z 1 2020-02-15T06:59:45Z +13212 2005-08-19T15:24:07Z 3691 158 2005-08-24T21:03:07Z 1 2020-02-15T06:59:45Z +13213 2005-08-19T15:25:48Z 1546 13 2005-08-22T09:32:48Z 1 2020-02-15T06:59:45Z +13214 2005-08-19T15:31:06Z 2675 157 2005-08-20T19:58:06Z 2 2020-02-15T06:59:45Z +13215 2005-08-19T15:35:38Z 3740 460 2005-08-27T12:16:38Z 1 2020-02-15T06:59:45Z +13216 2005-08-19T15:36:05Z 4335 422 2005-08-25T19:03:05Z 2 2020-02-15T06:59:45Z +13217 2005-08-19T15:38:39Z 616 565 2005-08-21T14:33:39Z 1 2020-02-15T06:59:45Z +13218 2005-08-19T15:39:39Z 4148 257 2005-08-22T17:28:39Z 1 2020-02-15T06:59:45Z +13219 2005-08-19T15:40:28Z 2075 288 2005-08-22T21:20:28Z 2 2020-02-15T06:59:45Z +13220 2005-08-19T15:42:32Z 1017 448 2005-08-25T13:37:32Z 1 2020-02-15T06:59:45Z +13221 2005-08-19T15:45:47Z 120 468 2005-08-26T21:10:47Z 1 2020-02-15T06:59:45Z +13222 2005-08-19T15:47:58Z 1656 91 2005-08-26T12:43:58Z 1 2020-02-15T06:59:45Z +13223 2005-08-19T15:52:04Z 332 461 2005-08-22T16:27:04Z 1 2020-02-15T06:59:45Z +13224 2005-08-19T15:52:13Z 3086 526 2005-08-28T20:53:13Z 2 2020-02-15T06:59:45Z +13225 2005-08-19T15:54:33Z 1420 562 2005-08-25T16:40:33Z 1 2020-02-15T06:59:45Z +13226 2005-08-19T16:05:36Z 2850 46 2005-08-21T10:07:36Z 2 2020-02-15T06:59:45Z +13227 2005-08-19T16:05:38Z 2759 288 2005-08-20T21:39:38Z 1 2020-02-15T06:59:45Z +13228 2005-08-19T16:08:16Z 2497 571 2005-08-20T18:55:16Z 1 2020-02-15T06:59:45Z +13229 2005-08-19T16:08:33Z 634 283 2005-08-22T19:54:33Z 2 2020-02-15T06:59:45Z +13230 2005-08-19T16:12:07Z 3645 151 2005-08-21T12:19:07Z 1 2020-02-15T06:59:45Z +13231 2005-08-19T16:12:49Z 2126 280 2005-08-27T17:14:49Z 2 2020-02-15T06:59:45Z +13232 2005-08-19T16:13:32Z 2370 206 2005-08-28T14:42:32Z 2 2020-02-15T06:59:45Z +13233 2005-08-19T16:14:41Z 1057 279 2005-08-24T21:13:41Z 1 2020-02-15T06:59:45Z +13234 2005-08-19T16:17:15Z 976 559 2005-08-27T12:36:15Z 1 2020-02-15T06:59:45Z +13235 2005-08-19T16:17:53Z 3902 367 2005-08-27T14:57:53Z 1 2020-02-15T06:59:45Z +13236 2005-08-19T16:18:24Z 4574 267 2005-08-27T17:48:24Z 2 2020-02-15T06:59:45Z +13237 2005-08-19T16:18:36Z 1272 169 2005-08-25T15:22:36Z 2 2020-02-15T06:59:45Z +13238 2005-08-19T16:20:56Z 985 348 2005-08-23T15:51:56Z 2 2020-02-15T06:59:45Z +13239 2005-08-19T16:22:13Z 3296 541 2005-08-23T19:26:13Z 1 2020-02-15T06:59:45Z +13240 2005-08-19T16:22:14Z 1411 179 2005-08-20T13:24:14Z 1 2020-02-15T06:59:45Z +13241 2005-08-19T16:25:00Z 3106 33 2005-08-26T12:27:00Z 2 2020-02-15T06:59:45Z +13242 2005-08-19T16:28:47Z 230 414 2005-08-24T22:13:47Z 2 2020-02-15T06:59:45Z +13243 2005-08-19T16:33:16Z 355 251 2005-08-25T13:19:16Z 2 2020-02-15T06:59:45Z +13244 2005-08-19T16:43:04Z 3246 298 2005-08-22T15:21:04Z 2 2020-02-15T06:59:45Z +13245 2005-08-19T16:43:41Z 1001 261 2005-08-20T21:17:41Z 1 2020-02-15T06:59:45Z +13246 2006-02-14T15:16:03Z 1849 411 2 2020-02-15T06:59:45Z +13247 2005-08-19T16:45:59Z 1271 24 2005-08-25T15:25:59Z 1 2020-02-15T06:59:45Z +13248 2005-08-19T16:47:41Z 2864 559 2005-08-28T18:11:41Z 2 2020-02-15T06:59:45Z +13249 2005-08-19T16:47:41Z 3084 377 2005-08-20T13:30:41Z 1 2020-02-15T06:59:45Z +13250 2005-08-19T16:47:55Z 2524 448 2005-08-26T16:54:55Z 2 2020-02-15T06:59:45Z +13251 2005-08-19T16:48:37Z 4216 111 2005-08-20T16:33:37Z 1 2020-02-15T06:59:45Z +13252 2005-08-19T16:50:50Z 775 451 2005-08-22T22:09:50Z 2 2020-02-15T06:59:45Z +13253 2005-08-19T16:53:56Z 472 399 2005-08-20T11:38:56Z 2 2020-02-15T06:59:45Z +13254 2005-08-19T16:54:01Z 3412 532 2005-08-27T19:50:01Z 2 2020-02-15T06:59:45Z +13255 2005-08-19T16:54:12Z 1101 150 2005-08-28T17:00:12Z 1 2020-02-15T06:59:45Z +13256 2005-08-19T16:54:12Z 2719 289 2005-08-28T16:54:12Z 1 2020-02-15T06:59:45Z +13257 2005-08-19T17:01:20Z 164 300 2005-08-24T17:26:20Z 1 2020-02-15T06:59:45Z +13258 2005-08-19T17:05:37Z 2246 349 2005-08-24T17:36:37Z 2 2020-02-15T06:59:45Z +13259 2005-08-19T17:08:53Z 2518 458 2005-08-23T14:14:53Z 1 2020-02-15T06:59:45Z +13260 2005-08-19T17:09:22Z 578 251 2005-08-24T21:31:22Z 2 2020-02-15T06:59:45Z +13261 2006-02-14T15:16:03Z 3538 417 1 2020-02-15T06:59:45Z +13262 2005-08-19T17:20:15Z 4483 184 2005-08-26T18:28:15Z 2 2020-02-15T06:59:45Z +13263 2005-08-19T17:26:55Z 214 206 2005-08-28T20:07:55Z 2 2020-02-15T06:59:45Z +13264 2005-08-19T17:27:10Z 1881 109 2005-08-27T16:00:10Z 1 2020-02-15T06:59:45Z +13265 2005-08-19T17:29:00Z 3933 314 2005-08-20T12:59:00Z 2 2020-02-15T06:59:45Z +13266 2005-08-19T17:31:20Z 1326 571 2005-08-21T11:41:20Z 2 2020-02-15T06:59:45Z +13267 2005-08-19T17:31:36Z 550 335 2005-08-21T13:47:36Z 1 2020-02-15T06:59:45Z +13268 2005-08-19T17:33:50Z 1166 255 2005-08-25T17:15:50Z 2 2020-02-15T06:59:45Z +13269 2005-08-19T17:34:00Z 2382 461 2005-08-20T15:17:00Z 2 2020-02-15T06:59:45Z +13270 2005-08-19T17:41:16Z 405 159 2005-08-23T20:22:16Z 2 2020-02-15T06:59:45Z +13271 2005-08-19T17:42:06Z 3872 242 2005-08-27T18:39:06Z 2 2020-02-15T06:59:45Z +13272 2005-08-19T17:49:13Z 2531 145 2005-08-23T15:49:13Z 2 2020-02-15T06:59:45Z +13273 2005-08-19T17:49:13Z 4181 433 2005-08-21T14:15:13Z 1 2020-02-15T06:59:45Z +13274 2005-08-19T17:50:03Z 704 272 2005-08-20T14:39:03Z 2 2020-02-15T06:59:45Z +13275 2005-08-19T17:53:38Z 710 377 2005-08-23T16:29:38Z 2 2020-02-15T06:59:45Z +13276 2005-08-19T17:53:42Z 625 516 2005-08-28T20:49:42Z 2 2020-02-15T06:59:45Z +13277 2005-08-19T17:57:35Z 3820 316 2005-08-25T15:45:35Z 2 2020-02-15T06:59:45Z +13278 2005-08-19T17:57:53Z 2691 282 2005-08-22T23:16:53Z 1 2020-02-15T06:59:45Z +13279 2005-08-19T18:02:18Z 2472 343 2005-08-24T22:15:18Z 2 2020-02-15T06:59:45Z +13280 2005-08-19T18:02:51Z 218 368 2005-08-21T23:17:51Z 2 2020-02-15T06:59:45Z +13281 2005-08-19T18:07:47Z 113 220 2005-08-20T21:51:47Z 2 2020-02-15T06:59:45Z +13282 2005-08-19T18:08:18Z 4373 59 2005-08-24T14:08:18Z 1 2020-02-15T06:59:45Z +13283 2005-08-19T18:10:19Z 2602 180 2005-08-23T16:09:19Z 2 2020-02-15T06:59:45Z +13284 2005-08-19T18:12:31Z 2128 338 2005-08-25T21:26:31Z 2 2020-02-15T06:59:45Z +13285 2005-08-19T18:18:44Z 2139 182 2005-08-20T12:33:44Z 1 2020-02-15T06:59:45Z +13286 2005-08-19T18:28:07Z 2685 245 2005-08-22T17:23:07Z 2 2020-02-15T06:59:45Z +13287 2005-08-19T18:28:24Z 2716 569 2005-08-26T20:13:24Z 2 2020-02-15T06:59:45Z +13288 2005-08-19T18:30:10Z 3558 162 2005-08-20T19:20:10Z 2 2020-02-15T06:59:45Z +13289 2005-08-19T18:31:30Z 3527 497 2005-08-20T13:43:30Z 1 2020-02-15T06:59:45Z +13290 2005-08-19T18:31:50Z 4174 23 2005-08-25T15:49:50Z 2 2020-02-15T06:59:45Z +13291 2005-08-19T18:32:11Z 1631 243 2005-08-20T18:22:11Z 2 2020-02-15T06:59:45Z +13292 2005-08-19T18:35:32Z 1336 171 2005-08-22T00:27:32Z 1 2020-02-15T06:59:45Z +13293 2005-08-19T18:35:52Z 380 399 2005-08-23T17:18:52Z 2 2020-02-15T06:59:45Z +13294 2005-08-19T18:36:35Z 156 534 2005-08-20T13:57:35Z 1 2020-02-15T06:59:45Z +13295 2006-02-14T15:16:03Z 2408 229 1 2020-02-15T06:59:45Z +13296 2005-08-19T18:43:53Z 1728 300 2005-08-21T23:30:53Z 2 2020-02-15T06:59:45Z +13297 2005-08-19T18:45:49Z 3818 359 2005-08-22T14:58:49Z 2 2020-02-15T06:59:45Z +13298 2006-02-14T15:16:03Z 2133 361 2 2020-02-15T06:59:45Z +13299 2005-08-19T18:46:33Z 4385 373 2005-08-22T20:45:33Z 1 2020-02-15T06:59:45Z +13300 2005-08-19T18:46:56Z 842 531 2005-08-28T20:23:56Z 2 2020-02-15T06:59:45Z +13301 2005-08-19T18:53:15Z 2261 494 2005-08-26T21:37:15Z 1 2020-02-15T06:59:45Z +13302 2005-08-19T18:54:26Z 4041 51 2005-08-21T23:01:26Z 1 2020-02-15T06:59:45Z +13303 2005-08-19T18:55:21Z 34 184 2005-08-23T18:49:21Z 2 2020-02-15T06:59:45Z +13304 2005-08-19T18:56:32Z 2979 405 2005-08-23T20:04:32Z 2 2020-02-15T06:59:45Z +13305 2005-08-19T18:57:05Z 2386 337 2005-08-28T22:28:05Z 1 2020-02-15T06:59:45Z +13306 2005-08-19T18:57:29Z 2742 229 2005-08-20T20:09:29Z 2 2020-02-15T06:59:45Z +13307 2005-08-19T18:58:44Z 2242 547 2005-08-22T00:15:44Z 1 2020-02-15T06:59:45Z +13308 2005-08-19T18:59:42Z 3189 414 2005-08-28T13:21:42Z 2 2020-02-15T06:59:45Z +13309 2005-08-19T19:04:00Z 2108 91 2005-08-28T23:08:00Z 2 2020-02-15T06:59:45Z +13310 2005-08-19T19:05:16Z 2563 311 2005-08-23T22:47:16Z 1 2020-02-15T06:59:45Z +13311 2005-08-19T19:07:09Z 3890 520 2005-08-20T23:07:09Z 1 2020-02-15T06:59:45Z +13312 2005-08-19T19:09:14Z 2891 418 2005-08-23T00:50:14Z 2 2020-02-15T06:59:45Z +13313 2005-08-19T19:11:41Z 3709 580 2005-08-21T23:53:41Z 2 2020-02-15T06:59:45Z +13314 2005-08-19T19:12:43Z 2899 347 2005-08-27T00:20:43Z 2 2020-02-15T06:59:45Z +13315 2005-08-19T19:16:18Z 3151 54 2005-08-21T20:58:18Z 1 2020-02-15T06:59:45Z +13316 2005-08-19T19:23:30Z 4450 10 2005-08-22T23:37:30Z 1 2020-02-15T06:59:45Z +13317 2005-08-19T19:25:42Z 3349 20 2005-08-20T20:57:42Z 2 2020-02-15T06:59:45Z +13318 2005-08-19T19:33:57Z 1389 413 2005-08-21T17:52:57Z 2 2020-02-15T06:59:45Z +13319 2005-08-19T19:35:13Z 2496 438 2005-08-27T17:59:13Z 1 2020-02-15T06:59:45Z +13320 2005-08-19T19:35:33Z 4522 172 2005-08-24T20:09:33Z 2 2020-02-15T06:59:45Z +13321 2005-08-19T19:40:37Z 4183 280 2005-08-21T19:09:37Z 2 2020-02-15T06:59:45Z +13322 2005-08-19T19:43:08Z 2149 559 2005-08-24T16:30:08Z 2 2020-02-15T06:59:45Z +13323 2005-08-19T19:48:07Z 1055 133 2005-08-23T15:28:07Z 1 2020-02-15T06:59:45Z +13324 2005-08-19T19:51:00Z 4349 564 2005-08-20T20:26:00Z 1 2020-02-15T06:59:45Z +13325 2005-08-19T19:52:02Z 2388 334 2005-08-22T21:14:02Z 1 2020-02-15T06:59:45Z +13326 2005-08-19T19:52:52Z 429 576 2005-08-20T18:56:52Z 1 2020-02-15T06:59:45Z +13327 2005-08-19T19:55:45Z 1808 72 2005-08-22T15:05:45Z 2 2020-02-15T06:59:45Z +13328 2005-08-19T19:56:01Z 605 462 2005-08-20T22:16:01Z 2 2020-02-15T06:59:45Z +13329 2005-08-19T19:56:55Z 3136 373 2005-08-25T01:19:55Z 2 2020-02-15T06:59:45Z +13330 2005-08-19T19:59:21Z 4276 297 2005-08-20T15:34:21Z 2 2020-02-15T06:59:45Z +13331 2005-08-19T20:00:25Z 3867 23 2005-08-21T17:03:25Z 1 2020-02-15T06:59:45Z +13332 2005-08-19T20:00:51Z 3144 503 2005-08-25T14:30:51Z 1 2020-02-15T06:59:45Z +13333 2006-02-14T15:16:03Z 1092 64 2 2020-02-15T06:59:45Z +13334 2005-08-19T20:02:33Z 461 379 2005-08-22T00:45:33Z 1 2020-02-15T06:59:45Z +13335 2005-08-19T20:03:18Z 1861 74 2005-08-24T20:09:18Z 2 2020-02-15T06:59:45Z +13336 2005-08-19T20:03:22Z 1011 289 2005-08-24T23:42:22Z 1 2020-02-15T06:59:45Z +13337 2005-08-19T20:06:57Z 3584 374 2005-08-20T16:31:57Z 1 2020-02-15T06:59:45Z +13338 2005-08-19T20:09:59Z 3739 86 2005-08-23T22:59:59Z 2 2020-02-15T06:59:45Z +13339 2005-08-19T20:18:36Z 1428 15 2005-08-28T21:34:36Z 1 2020-02-15T06:59:45Z +13340 2005-08-19T20:18:39Z 4358 45 2005-08-28T21:06:39Z 2 2020-02-15T06:59:45Z +13341 2005-08-19T20:18:53Z 1749 460 2005-08-27T14:36:53Z 1 2020-02-15T06:59:45Z +13342 2005-08-19T20:21:36Z 3476 172 2005-08-21T16:26:36Z 1 2020-02-15T06:59:45Z +13343 2005-08-19T20:22:08Z 1032 591 2005-08-27T17:21:08Z 1 2020-02-15T06:59:45Z +13344 2005-08-19T20:22:44Z 4392 514 2005-08-25T18:39:44Z 1 2020-02-15T06:59:45Z +13345 2005-08-19T20:25:24Z 47 55 2005-08-27T20:38:24Z 1 2020-02-15T06:59:45Z +13346 2005-08-19T20:28:21Z 4541 131 2005-08-28T00:28:21Z 2 2020-02-15T06:59:45Z +13347 2005-08-19T20:28:48Z 4038 562 2005-08-28T19:33:48Z 2 2020-02-15T06:59:45Z +13348 2005-08-19T20:31:48Z 275 456 2005-08-21T21:01:48Z 1 2020-02-15T06:59:45Z +13349 2005-08-19T20:43:16Z 4262 234 2005-08-20T16:21:16Z 1 2020-02-15T06:59:45Z +13350 2005-08-19T20:44:00Z 3523 214 2005-08-27T01:23:00Z 2 2020-02-15T06:59:45Z +13351 2006-02-14T15:16:03Z 4130 42 2 2020-02-15T06:59:45Z +13352 2005-08-19T20:51:40Z 2689 80 2005-08-24T01:22:40Z 1 2020-02-15T06:59:45Z +13353 2005-08-19T20:53:43Z 2790 131 2005-08-25T01:25:43Z 1 2020-02-15T06:59:45Z +13354 2005-08-19T20:55:23Z 1356 213 2005-08-27T20:09:23Z 2 2020-02-15T06:59:45Z +13355 2005-08-19T20:59:19Z 585 396 2005-08-23T21:44:19Z 1 2020-02-15T06:59:45Z +13356 2005-08-19T21:02:21Z 2713 324 2005-08-24T00:31:21Z 1 2020-02-15T06:59:45Z +13357 2005-08-19T21:02:59Z 3295 393 2005-08-25T23:46:59Z 2 2020-02-15T06:59:45Z +13358 2005-08-19T21:04:20Z 1510 439 2005-08-24T20:49:20Z 2 2020-02-15T06:59:45Z +13359 2005-08-19T21:04:49Z 4175 434 2005-08-27T01:46:49Z 1 2020-02-15T06:59:45Z +13360 2005-08-19T21:05:11Z 3396 327 2005-08-24T16:05:11Z 2 2020-02-15T06:59:45Z +13361 2005-08-19T21:07:22Z 4289 107 2005-08-21T21:26:22Z 2 2020-02-15T06:59:45Z +13362 2005-08-19T21:07:54Z 869 565 2005-08-20T17:29:54Z 2 2020-02-15T06:59:45Z +13363 2005-08-19T21:07:59Z 588 288 2005-08-21T17:08:59Z 1 2020-02-15T06:59:45Z +13364 2005-08-19T21:09:30Z 2773 236 2005-08-25T18:37:30Z 1 2020-02-15T06:59:45Z +13365 2005-08-19T21:12:37Z 4136 307 2005-08-25T19:56:37Z 2 2020-02-15T06:59:45Z +13366 2005-08-19T21:14:45Z 602 259 2005-08-21T03:06:45Z 1 2020-02-15T06:59:45Z +13367 2005-08-19T21:19:27Z 4569 290 2005-08-24T15:22:27Z 2 2020-02-15T06:59:45Z +13368 2005-08-19T21:19:35Z 1073 342 2005-08-21T16:12:35Z 2 2020-02-15T06:59:45Z +13369 2005-08-19T21:19:47Z 2728 116 2005-08-24T23:25:47Z 1 2020-02-15T06:59:45Z +13370 2005-08-19T21:20:11Z 239 101 2005-08-25T22:51:11Z 1 2020-02-15T06:59:45Z +13371 2005-08-19T21:21:47Z 3401 34 2005-08-26T16:17:47Z 2 2020-02-15T06:59:45Z +13372 2005-08-19T21:23:19Z 3366 150 2005-08-24T22:12:19Z 1 2020-02-15T06:59:45Z +13373 2005-08-19T21:23:31Z 4045 7 2005-08-25T22:38:31Z 1 2020-02-15T06:59:45Z +13374 2006-02-14T15:16:03Z 2721 227 1 2020-02-15T06:59:45Z +13375 2005-08-19T21:31:31Z 949 120 2005-08-29T00:17:31Z 1 2020-02-15T06:59:45Z +13376 2005-08-19T21:31:45Z 898 40 2005-08-22T01:14:45Z 2 2020-02-15T06:59:45Z +13377 2005-08-19T21:32:23Z 1316 572 2005-08-25T22:24:23Z 1 2020-02-15T06:59:45Z +13378 2005-08-19T21:33:35Z 2708 368 2005-08-20T22:47:35Z 1 2020-02-15T06:59:45Z +13379 2005-08-19T21:33:39Z 1623 227 2005-08-22T21:00:39Z 1 2020-02-15T06:59:45Z +13380 2005-08-19T21:36:58Z 4250 451 2005-08-22T23:55:58Z 1 2020-02-15T06:59:45Z +13381 2005-08-19T21:37:57Z 2823 21 2005-08-21T18:07:57Z 2 2020-02-15T06:59:45Z +13382 2005-08-19T21:38:41Z 3720 436 2005-08-28T15:49:41Z 1 2020-02-15T06:59:45Z +13383 2005-08-19T21:38:44Z 3193 434 2005-08-28T23:22:44Z 2 2020-02-15T06:59:45Z +13384 2005-08-19T21:38:51Z 1462 440 2005-08-23T17:55:51Z 1 2020-02-15T06:59:45Z +13385 2005-08-19T21:39:35Z 4323 252 2005-08-22T22:38:35Z 2 2020-02-15T06:59:45Z +13386 2005-08-19T21:43:58Z 4476 324 2005-08-24T20:29:58Z 2 2020-02-15T06:59:45Z +13387 2005-08-19T21:46:10Z 123 504 2005-08-24T01:16:10Z 1 2020-02-15T06:59:45Z +13388 2005-08-19T21:46:49Z 942 317 2005-08-27T16:18:49Z 1 2020-02-15T06:59:45Z +13389 2005-08-19T21:52:51Z 3352 257 2005-08-25T02:38:51Z 1 2020-02-15T06:59:45Z +13390 2006-02-14T15:16:03Z 2855 135 1 2020-02-15T06:59:45Z +13391 2005-08-19T22:01:42Z 4220 16 2005-08-24T22:20:42Z 2 2020-02-15T06:59:45Z +13392 2005-08-19T22:03:22Z 692 409 2005-08-28T19:27:22Z 1 2020-02-15T06:59:45Z +13393 2005-08-19T22:03:46Z 958 15 2005-08-28T19:19:46Z 2 2020-02-15T06:59:45Z +13394 2005-08-19T22:05:19Z 2597 45 2005-08-21T23:53:19Z 1 2020-02-15T06:59:45Z +13395 2005-08-19T22:05:40Z 53 80 2005-08-22T01:31:40Z 2 2020-02-15T06:59:45Z +13396 2005-08-19T22:06:09Z 4169 517 2005-08-23T23:26:09Z 2 2020-02-15T06:59:45Z +13397 2005-08-19T22:06:35Z 3863 379 2005-08-29T01:11:35Z 2 2020-02-15T06:59:45Z +13398 2005-08-19T22:08:48Z 3376 405 2005-08-23T03:24:48Z 1 2020-02-15T06:59:45Z +13399 2005-08-19T22:09:28Z 2309 21 2005-08-25T20:25:28Z 2 2020-02-15T06:59:45Z +13400 2005-08-19T22:11:44Z 2173 179 2005-08-20T23:27:44Z 2 2020-02-15T06:59:45Z +13401 2005-08-19T22:16:16Z 488 139 2005-08-25T19:01:16Z 2 2020-02-15T06:59:45Z +13402 2005-08-19T22:16:53Z 3264 372 2005-08-22T22:28:53Z 1 2020-02-15T06:59:45Z +13403 2005-08-19T22:18:07Z 3241 3 2005-08-27T19:23:07Z 1 2020-02-15T06:59:45Z +13404 2005-08-19T22:18:42Z 416 414 2005-08-23T16:29:42Z 2 2020-02-15T06:59:45Z +13405 2005-08-19T22:20:49Z 1554 181 2005-08-28T21:21:49Z 1 2020-02-15T06:59:45Z +13406 2005-08-19T22:22:01Z 3031 113 2005-08-22T18:16:01Z 1 2020-02-15T06:59:45Z +13407 2005-08-19T22:26:26Z 2512 131 2005-08-22T16:34:26Z 1 2020-02-15T06:59:45Z +13408 2005-08-19T22:34:51Z 2795 575 2005-08-21T03:30:51Z 1 2020-02-15T06:59:45Z +13409 2005-08-19T22:36:26Z 873 214 2005-08-22T01:52:26Z 2 2020-02-15T06:59:45Z +13410 2005-08-19T22:41:44Z 1421 104 2005-08-26T18:05:44Z 2 2020-02-15T06:59:45Z +13411 2005-08-19T22:43:38Z 4425 21 2005-08-26T18:29:38Z 2 2020-02-15T06:59:45Z +13412 2005-08-19T22:46:35Z 2806 404 2005-08-26T18:06:35Z 1 2020-02-15T06:59:45Z +13413 2005-08-19T22:46:46Z 1501 390 2005-08-24T22:52:46Z 1 2020-02-15T06:59:45Z +13414 2005-08-19T22:47:34Z 4126 438 2005-08-21T02:50:34Z 1 2020-02-15T06:59:45Z +13415 2005-08-19T22:48:09Z 1105 181 2005-08-25T02:09:09Z 1 2020-02-15T06:59:45Z +13416 2005-08-19T22:48:48Z 1075 204 2005-08-21T22:09:48Z 2 2020-02-15T06:59:45Z +13417 2005-08-19T22:51:39Z 92 468 2005-08-23T03:34:39Z 1 2020-02-15T06:59:45Z +13418 2005-08-19T22:53:56Z 2113 246 2005-08-28T02:05:56Z 2 2020-02-15T06:59:45Z +13419 2006-02-14T15:16:03Z 3507 537 1 2020-02-15T06:59:45Z +13420 2005-08-19T22:57:25Z 1796 102 2005-08-28T22:46:25Z 1 2020-02-15T06:59:45Z +13421 2006-02-14T15:16:03Z 9 366 1 2020-02-15T06:59:45Z +13422 2005-08-19T23:07:24Z 3835 404 2005-08-28T04:12:24Z 2 2020-02-15T06:59:45Z +13423 2005-08-19T23:07:42Z 546 311 2005-08-26T20:45:42Z 1 2020-02-15T06:59:45Z +13424 2005-08-19T23:10:09Z 4340 216 2005-08-23T02:25:09Z 1 2020-02-15T06:59:45Z +13425 2005-08-19T23:11:44Z 2274 340 2005-08-25T21:19:44Z 2 2020-02-15T06:59:45Z +13426 2005-08-19T23:15:00Z 3409 213 2005-08-21T01:53:00Z 2 2020-02-15T06:59:45Z +13427 2005-08-19T23:19:02Z 3120 239 2005-08-21T18:30:02Z 1 2020-02-15T06:59:45Z +13428 2006-02-14T15:16:03Z 106 44 2 2020-02-15T06:59:45Z +13429 2005-08-19T23:25:37Z 3677 23 2005-08-28T01:04:37Z 2 2020-02-15T06:59:45Z +13430 2005-08-19T23:25:43Z 2852 381 2005-08-22T18:41:43Z 1 2020-02-15T06:59:45Z +13431 2005-08-19T23:28:15Z 1700 229 2005-08-25T04:44:15Z 1 2020-02-15T06:59:45Z +13432 2005-08-19T23:29:06Z 2216 78 2005-08-23T00:57:06Z 1 2020-02-15T06:59:45Z +13433 2005-08-19T23:30:53Z 1647 171 2005-08-22T05:18:53Z 2 2020-02-15T06:59:45Z +13434 2005-08-19T23:34:26Z 2073 221 2005-08-23T18:33:26Z 1 2020-02-15T06:59:45Z +13435 2005-08-19T23:35:44Z 3919 30 2005-08-24T18:14:44Z 2 2020-02-15T06:59:45Z +13436 2005-08-19T23:36:25Z 2499 29 2005-08-23T18:38:25Z 1 2020-02-15T06:59:45Z +13437 2005-08-19T23:37:52Z 2292 67 2005-08-28T22:17:52Z 1 2020-02-15T06:59:45Z +13438 2005-08-19T23:38:02Z 1750 520 2005-08-26T21:36:02Z 1 2020-02-15T06:59:45Z +13439 2005-08-19T23:42:16Z 3535 551 2005-08-26T21:24:16Z 2 2020-02-15T06:59:45Z +13440 2005-08-19T23:42:52Z 2842 260 2005-08-25T19:19:52Z 1 2020-02-15T06:59:45Z +13441 2005-08-19T23:48:23Z 3188 125 2005-08-28T23:47:23Z 1 2020-02-15T06:59:45Z +13442 2005-08-19T23:50:45Z 2432 356 2005-08-27T22:01:45Z 2 2020-02-15T06:59:45Z +13443 2005-08-19T23:53:42Z 3161 236 2005-08-28T05:37:42Z 1 2020-02-15T06:59:45Z +13444 2005-08-20T00:00:24Z 2564 37 2005-08-21T05:59:24Z 2 2020-02-15T06:59:45Z +13445 2005-08-20T00:05:33Z 1630 495 2005-08-21T21:20:33Z 1 2020-02-15T06:59:45Z +13446 2005-08-20T00:06:13Z 3226 488 2005-08-22T19:56:13Z 1 2020-02-15T06:59:45Z +13447 2005-08-20T00:09:36Z 285 542 2005-08-25T01:22:36Z 1 2020-02-15T06:59:45Z +13448 2005-08-20T00:12:43Z 2870 327 2005-08-25T02:33:43Z 1 2020-02-15T06:59:45Z +13449 2005-08-20T00:17:01Z 1297 400 2005-08-23T20:42:01Z 2 2020-02-15T06:59:45Z +13450 2005-08-20T00:18:15Z 135 61 2005-08-24T19:36:15Z 1 2020-02-15T06:59:45Z +13451 2005-08-20T00:18:25Z 3837 6 2005-08-29T01:08:25Z 1 2020-02-15T06:59:45Z +13452 2005-08-20T00:20:07Z 2449 430 2005-08-25T05:43:07Z 1 2020-02-15T06:59:45Z +13453 2005-08-20T00:30:51Z 2203 164 2005-08-28T18:43:51Z 2 2020-02-15T06:59:45Z +13454 2005-08-20T00:30:52Z 1553 430 2005-08-27T19:45:52Z 2 2020-02-15T06:59:45Z +13455 2005-08-20T00:32:17Z 1315 133 2005-08-26T19:33:17Z 1 2020-02-15T06:59:45Z +13456 2005-08-20T00:33:19Z 1644 13 2005-08-22T01:47:19Z 1 2020-02-15T06:59:45Z +13457 2005-08-20T00:33:22Z 1220 256 2005-08-26T21:37:22Z 2 2020-02-15T06:59:45Z +13458 2005-08-20T00:35:30Z 4223 228 2005-08-21T20:51:30Z 1 2020-02-15T06:59:45Z +13459 2005-08-20T00:45:40Z 3666 114 2005-08-29T02:53:40Z 2 2020-02-15T06:59:45Z +13460 2005-08-20T00:48:24Z 244 410 2005-08-28T04:13:24Z 2 2020-02-15T06:59:45Z +13461 2005-08-20T00:49:04Z 2621 421 2005-08-28T02:49:04Z 2 2020-02-15T06:59:45Z +13462 2005-08-20T00:49:19Z 3865 489 2005-08-26T06:21:19Z 2 2020-02-15T06:59:45Z +13463 2005-08-20T00:50:54Z 510 21 2005-08-28T23:00:54Z 1 2020-02-15T06:59:45Z +13464 2006-02-14T15:16:03Z 4292 576 1 2020-02-15T06:59:45Z +13465 2005-08-20T00:54:14Z 1305 575 2005-08-21T20:55:14Z 2 2020-02-15T06:59:45Z +13466 2005-08-20T00:55:16Z 3088 262 2005-08-22T22:48:16Z 1 2020-02-15T06:59:45Z +13467 2005-08-20T00:56:44Z 696 373 2005-08-20T20:16:44Z 1 2020-02-15T06:59:45Z +13468 2005-08-20T00:56:44Z 1851 266 2005-08-29T06:26:44Z 1 2020-02-15T06:59:45Z +13469 2005-08-20T00:59:36Z 1410 235 2005-08-24T22:41:36Z 1 2020-02-15T06:59:45Z +13470 2005-08-20T01:01:16Z 3097 141 2005-08-21T03:19:16Z 1 2020-02-15T06:59:45Z +13471 2005-08-20T01:02:26Z 1391 296 2005-08-25T06:37:26Z 2 2020-02-15T06:59:45Z +13472 2005-08-20T01:03:31Z 3074 137 2005-08-28T02:54:31Z 1 2020-02-15T06:59:45Z +13473 2005-08-20T01:03:50Z 381 390 2005-08-22T02:33:50Z 2 2020-02-15T06:59:45Z +13474 2005-08-20T01:04:32Z 1209 116 2005-08-21T20:26:32Z 2 2020-02-15T06:59:45Z +13475 2005-08-20T01:05:05Z 3214 68 2005-08-20T20:22:05Z 2 2020-02-15T06:59:45Z +13476 2005-08-20T01:06:04Z 2866 7 2005-08-24T23:56:04Z 1 2020-02-15T06:59:45Z +13477 2005-08-20T01:07:00Z 1442 222 2005-08-26T02:47:00Z 1 2020-02-15T06:59:45Z +13478 2005-08-20T01:07:14Z 2190 466 2005-08-22T03:41:14Z 1 2020-02-15T06:59:45Z +13479 2005-08-20T01:09:11Z 1262 87 2005-08-26T05:35:11Z 2 2020-02-15T06:59:45Z +13480 2005-08-20T01:10:27Z 206 16 2005-08-27T22:18:27Z 2 2020-02-15T06:59:45Z +13481 2005-08-20T01:11:12Z 2678 157 2005-08-26T23:07:12Z 2 2020-02-15T06:59:45Z +13482 2005-08-20T01:14:30Z 1627 183 2005-08-24T04:57:30Z 1 2020-02-15T06:59:45Z +13483 2005-08-20T01:16:38Z 2550 441 2005-08-21T20:43:38Z 2 2020-02-15T06:59:45Z +13484 2005-08-20T01:16:52Z 1533 152 2005-08-22T23:47:52Z 2 2020-02-15T06:59:45Z +13485 2005-08-20T01:20:14Z 3802 379 2005-08-22T01:28:14Z 2 2020-02-15T06:59:45Z +13486 2006-02-14T15:16:03Z 4460 274 1 2020-02-15T06:59:45Z +13487 2005-08-20T01:27:05Z 2609 458 2005-08-24T00:41:05Z 2 2020-02-15T06:59:45Z +13488 2005-08-20T01:28:42Z 867 444 2005-08-25T06:17:42Z 2 2020-02-15T06:59:45Z +13489 2005-08-20T01:29:06Z 2934 443 2005-08-27T21:11:06Z 1 2020-02-15T06:59:45Z +13490 2005-08-20T01:29:29Z 238 18 2005-08-21T22:36:29Z 2 2020-02-15T06:59:45Z +13491 2005-08-20T01:30:56Z 2503 258 2005-08-28T23:26:56Z 2 2020-02-15T06:59:45Z +13492 2005-08-20T01:32:04Z 1155 462 2005-08-29T02:14:04Z 2 2020-02-15T06:59:45Z +13493 2005-08-20T01:33:36Z 2927 37 2005-08-24T06:32:36Z 1 2020-02-15T06:59:45Z +13494 2005-08-20T01:36:34Z 1632 414 2005-08-21T06:52:34Z 1 2020-02-15T06:59:45Z +13495 2005-08-20T01:40:25Z 3881 92 2005-08-23T06:32:25Z 2 2020-02-15T06:59:45Z +13496 2005-08-20T01:42:29Z 3040 454 2005-08-29T06:47:29Z 2 2020-02-15T06:59:45Z +13497 2005-08-20T01:46:38Z 1296 481 2005-08-26T05:37:38Z 2 2020-02-15T06:59:45Z +13498 2005-08-20T01:51:23Z 1603 578 2005-08-24T05:32:23Z 1 2020-02-15T06:59:45Z +13499 2005-08-20T01:52:30Z 1893 300 2005-08-28T04:57:30Z 1 2020-02-15T06:59:45Z +13500 2005-08-20T01:54:39Z 1353 577 2005-08-25T21:23:39Z 1 2020-02-15T06:59:45Z +13501 2005-08-20T01:56:20Z 4369 390 2005-08-22T23:07:20Z 2 2020-02-15T06:59:45Z +13502 2005-08-20T01:58:15Z 1324 309 2005-08-21T20:21:15Z 1 2020-02-15T06:59:45Z +13503 2005-08-20T02:00:33Z 453 15 2005-08-28T21:03:33Z 1 2020-02-15T06:59:45Z +13504 2005-08-20T02:01:48Z 4322 293 2005-08-25T21:52:48Z 2 2020-02-15T06:59:45Z +13505 2005-08-20T02:05:57Z 914 536 2005-08-23T05:52:57Z 1 2020-02-15T06:59:45Z +13506 2005-08-20T02:07:06Z 1334 261 2005-08-26T08:06:06Z 1 2020-02-15T06:59:45Z +13507 2005-08-20T02:10:27Z 3324 478 2005-08-23T04:03:27Z 2 2020-02-15T06:59:45Z +13508 2005-08-20T02:12:54Z 4120 408 2005-08-28T21:47:54Z 2 2020-02-15T06:59:45Z +13509 2005-08-20T02:14:16Z 3698 128 2005-08-22T06:36:16Z 2 2020-02-15T06:59:45Z +13510 2005-08-20T02:18:30Z 691 107 2005-08-27T01:33:30Z 1 2020-02-15T06:59:45Z +13511 2005-08-20T02:21:40Z 2973 23 2005-08-21T03:26:40Z 1 2020-02-15T06:59:45Z +13512 2005-08-20T02:27:13Z 4508 62 2005-08-28T04:40:13Z 2 2020-02-15T06:59:45Z +13513 2005-08-20T02:27:53Z 1653 454 2005-08-22T06:10:53Z 1 2020-02-15T06:59:45Z +13514 2005-08-20T02:28:09Z 3407 96 2005-08-25T00:41:09Z 1 2020-02-15T06:59:45Z +13515 2005-08-20T02:29:47Z 3438 194 2005-08-23T08:12:47Z 2 2020-02-15T06:59:45Z +13516 2005-08-20T02:32:45Z 4286 95 2005-08-27T04:38:45Z 1 2020-02-15T06:59:45Z +13517 2005-08-20T02:33:17Z 533 186 2005-08-23T22:40:17Z 2 2020-02-15T06:59:45Z +13518 2005-08-20T02:36:17Z 352 528 2005-08-24T08:06:17Z 1 2020-02-15T06:59:45Z +13519 2005-08-20T02:37:07Z 182 12 2005-08-23T01:26:07Z 2 2020-02-15T06:59:45Z +13520 2005-08-20T02:41:46Z 3326 74 2005-08-22T01:53:46Z 1 2020-02-15T06:59:45Z +13521 2005-08-20T02:42:28Z 2586 384 2005-08-22T06:12:28Z 1 2020-02-15T06:59:45Z +13522 2005-08-20T02:44:06Z 2940 343 2005-08-28T05:30:06Z 1 2020-02-15T06:59:45Z +13523 2005-08-20T02:47:03Z 163 572 2005-08-28T07:43:03Z 1 2020-02-15T06:59:45Z +13524 2005-08-20T02:48:43Z 4557 593 2005-08-27T03:14:43Z 2 2020-02-15T06:59:45Z +13525 2005-08-20T02:50:44Z 3514 111 2005-08-26T22:58:44Z 2 2020-02-15T06:59:45Z +13526 2005-08-20T02:58:42Z 1966 277 2005-08-27T22:36:42Z 2 2020-02-15T06:59:45Z +13527 2005-08-20T03:00:47Z 4424 521 2005-08-25T01:03:47Z 1 2020-02-15T06:59:45Z +13528 2005-08-20T03:03:31Z 1847 202 2005-08-26T03:09:31Z 1 2020-02-15T06:59:45Z +13529 2005-08-20T03:07:47Z 1979 193 2005-08-21T21:50:47Z 1 2020-02-15T06:59:45Z +13530 2005-08-20T03:12:43Z 597 156 2005-08-23T09:01:43Z 2 2020-02-15T06:59:45Z +13531 2005-08-20T03:26:10Z 2778 156 2005-08-25T03:41:10Z 1 2020-02-15T06:59:45Z +13532 2005-08-20T03:29:28Z 1433 168 2005-08-23T22:53:28Z 2 2020-02-15T06:59:45Z +13533 2005-08-20T03:30:00Z 1801 436 2005-08-27T05:53:00Z 1 2020-02-15T06:59:45Z +13534 2006-02-14T15:16:03Z 2476 75 1 2020-02-15T06:59:45Z +13535 2005-08-20T03:30:25Z 1563 86 2005-08-28T04:35:25Z 1 2020-02-15T06:59:45Z +13536 2005-08-20T03:35:16Z 667 183 2005-08-25T04:06:16Z 2 2020-02-15T06:59:45Z +13537 2005-08-20T03:39:15Z 2521 418 2005-08-23T22:03:15Z 2 2020-02-15T06:59:45Z +13538 2006-02-14T15:16:03Z 581 279 1 2020-02-15T06:59:45Z +13539 2005-08-20T03:40:27Z 3110 518 2005-08-27T07:15:27Z 1 2020-02-15T06:59:45Z +13540 2005-08-20T03:41:23Z 3785 557 2005-08-27T09:09:23Z 2 2020-02-15T06:59:45Z +13541 2005-08-20T03:41:41Z 1363 15 2005-08-24T23:14:41Z 1 2020-02-15T06:59:45Z +13542 2005-08-20T03:41:57Z 4543 147 2005-08-29T03:21:57Z 2 2020-02-15T06:59:45Z +13543 2005-08-20T03:43:13Z 2142 163 2005-08-29T07:14:13Z 2 2020-02-15T06:59:45Z +13544 2005-08-20T03:44:26Z 58 538 2005-08-27T22:11:26Z 1 2020-02-15T06:59:45Z +13545 2005-08-20T03:50:15Z 615 417 2005-08-27T22:24:15Z 1 2020-02-15T06:59:45Z +13546 2005-08-20T03:50:24Z 2492 390 2005-08-28T03:04:24Z 2 2020-02-15T06:59:45Z +13547 2005-08-20T03:53:16Z 3122 456 2005-08-25T04:02:16Z 1 2020-02-15T06:59:45Z +13548 2005-08-20T03:53:20Z 4389 319 2005-08-27T21:54:20Z 1 2020-02-15T06:59:45Z +13549 2005-08-20T03:58:41Z 508 274 2005-08-28T22:49:41Z 1 2020-02-15T06:59:45Z +13550 2005-08-20T03:58:51Z 208 206 2005-08-28T00:45:51Z 2 2020-02-15T06:59:45Z +13551 2005-08-20T04:00:30Z 1049 503 2005-08-21T06:26:30Z 2 2020-02-15T06:59:45Z +13552 2005-08-20T04:03:51Z 758 578 2005-08-23T02:48:51Z 2 2020-02-15T06:59:45Z +13553 2005-08-20T04:07:21Z 4407 314 2005-08-28T09:55:21Z 1 2020-02-15T06:59:45Z +13554 2005-08-20T04:08:39Z 2648 569 2005-08-28T07:11:39Z 2 2020-02-15T06:59:45Z +13555 2005-08-20T04:09:50Z 3176 93 2005-08-29T05:20:50Z 1 2020-02-15T06:59:45Z +13556 2005-08-20T04:10:26Z 3914 266 2005-08-26T06:45:26Z 2 2020-02-15T06:59:45Z +13557 2005-08-20T04:12:41Z 2290 23 2005-08-21T02:33:41Z 2 2020-02-15T06:59:45Z +13558 2005-08-20T04:13:17Z 1551 564 2005-08-24T06:38:17Z 1 2020-02-15T06:59:45Z +13559 2005-08-20T04:16:07Z 2413 444 2005-08-24T23:23:07Z 1 2020-02-15T06:59:45Z +13560 2005-08-20T04:17:16Z 820 56 2005-08-28T08:38:16Z 1 2020-02-15T06:59:45Z +13561 2006-02-14T15:16:03Z 3202 530 1 2020-02-15T06:59:45Z +13562 2005-08-20T04:31:45Z 4547 36 2005-08-25T09:59:45Z 1 2020-02-15T06:59:45Z +13563 2005-08-20T04:33:31Z 599 366 2005-08-24T07:08:31Z 2 2020-02-15T06:59:45Z +13564 2005-08-20T04:34:46Z 678 36 2005-08-28T23:18:46Z 2 2020-02-15T06:59:45Z +13565 2005-08-20T04:38:52Z 3378 214 2005-08-27T07:17:52Z 1 2020-02-15T06:59:45Z +13566 2005-08-20T04:45:32Z 4397 558 2005-08-28T02:12:32Z 2 2020-02-15T06:59:45Z +13567 2005-08-20T04:49:21Z 543 242 2005-08-26T10:27:21Z 1 2020-02-15T06:59:45Z +13568 2005-08-20T05:02:46Z 1243 151 2005-08-27T03:12:46Z 2 2020-02-15T06:59:45Z +13569 2005-08-20T05:02:59Z 1934 496 2005-08-28T00:51:59Z 1 2020-02-15T06:59:45Z +13570 2005-08-20T05:04:57Z 2808 188 2005-08-24T06:19:57Z 2 2020-02-15T06:59:45Z +13571 2005-08-20T05:05:14Z 1251 458 2005-08-25T03:59:14Z 2 2020-02-15T06:59:45Z +13572 2005-08-20T05:07:27Z 660 11 2005-08-23T23:33:27Z 1 2020-02-15T06:59:45Z +13573 2005-08-20T05:10:14Z 3032 59 2005-08-22T00:59:14Z 1 2020-02-15T06:59:45Z +13574 2005-08-20T05:10:39Z 2383 552 2005-08-21T02:21:39Z 2 2020-02-15T06:59:45Z +13575 2005-08-20T05:15:20Z 2729 339 2005-08-28T07:36:20Z 2 2020-02-15T06:59:45Z +13576 2005-08-20T05:19:56Z 2669 223 2005-08-22T09:08:56Z 2 2020-02-15T06:59:45Z +13577 2006-02-14T15:16:03Z 3844 448 2 2020-02-15T06:59:45Z +13578 2006-02-14T15:16:03Z 4301 352 2 2020-02-15T06:59:45Z +13579 2005-08-20T05:22:06Z 4237 333 2005-08-28T02:33:06Z 2 2020-02-15T06:59:45Z +13580 2005-08-20T05:23:34Z 4419 526 2005-08-23T02:45:34Z 1 2020-02-15T06:59:45Z +13581 2005-08-20T05:26:15Z 1753 119 2005-08-21T11:07:15Z 2 2020-02-15T06:59:45Z +13582 2005-08-20T05:28:11Z 211 166 2005-08-23T02:06:11Z 2 2020-02-15T06:59:45Z +13583 2005-08-20T05:29:45Z 176 74 2005-08-26T06:49:45Z 1 2020-02-15T06:59:45Z +13584 2006-02-14T15:16:03Z 3966 548 2 2020-02-15T06:59:45Z +13585 2005-08-20T05:32:23Z 3314 470 2005-08-27T23:36:23Z 1 2020-02-15T06:59:45Z +13586 2005-08-20T05:40:33Z 4544 445 2005-08-25T01:32:33Z 2 2020-02-15T06:59:45Z +13587 2006-02-14T15:16:03Z 2455 431 2 2020-02-15T06:59:45Z +13588 2005-08-20T05:47:11Z 702 279 2005-08-28T02:45:11Z 2 2020-02-15T06:59:45Z +13589 2005-08-20T05:47:25Z 3216 574 2005-08-23T01:29:25Z 2 2020-02-15T06:59:45Z +13590 2005-08-20T05:48:59Z 4417 264 2005-08-25T00:44:59Z 2 2020-02-15T06:59:45Z +13591 2005-08-20T05:50:05Z 3089 390 2005-08-27T08:43:05Z 2 2020-02-15T06:59:45Z +13592 2005-08-20T05:50:35Z 1509 470 2005-08-23T04:52:35Z 1 2020-02-15T06:59:45Z +13593 2005-08-20T05:50:52Z 261 585 2005-08-27T05:28:52Z 2 2020-02-15T06:59:45Z +13594 2005-08-20T05:53:31Z 3424 7 2005-08-23T09:01:31Z 1 2020-02-15T06:59:45Z +13595 2005-08-20T05:54:27Z 673 545 2005-08-29T01:25:27Z 1 2020-02-15T06:59:45Z +13596 2005-08-20T05:58:58Z 482 513 2005-08-27T08:35:58Z 1 2020-02-15T06:59:45Z +13597 2005-08-20T05:59:05Z 3697 72 2005-08-24T05:38:05Z 2 2020-02-15T06:59:45Z +13598 2005-08-20T05:59:17Z 2803 259 2005-08-29T01:02:17Z 1 2020-02-15T06:59:45Z +13599 2005-08-20T06:00:03Z 3333 150 2005-08-29T07:56:03Z 1 2020-02-15T06:59:45Z +13600 2005-08-20T06:00:25Z 431 528 2005-08-28T02:39:25Z 1 2020-02-15T06:59:45Z +13601 2005-08-20T06:01:15Z 2166 189 2005-08-29T06:14:15Z 2 2020-02-15T06:59:45Z +13602 2005-08-20T06:02:02Z 2805 348 2005-08-27T04:51:02Z 1 2020-02-15T06:59:45Z +13603 2005-08-20T06:02:48Z 937 362 2005-08-29T09:39:48Z 1 2020-02-15T06:59:45Z +13604 2005-08-20T06:03:33Z 4352 353 2005-08-21T07:06:33Z 1 2020-02-15T06:59:45Z +13605 2005-08-20T06:06:17Z 4446 522 2005-08-26T00:53:17Z 2 2020-02-15T06:59:45Z +13606 2005-08-20T06:07:01Z 83 146 2005-08-27T04:59:01Z 2 2020-02-15T06:59:45Z +13607 2005-08-20T06:08:42Z 2692 491 2005-08-21T01:59:42Z 2 2020-02-15T06:59:45Z +13608 2005-08-20T06:10:44Z 4110 193 2005-08-24T07:08:44Z 1 2020-02-15T06:59:45Z +13609 2005-08-20T06:11:51Z 299 328 2005-08-23T04:13:51Z 2 2020-02-15T06:59:45Z +13610 2005-08-20T06:14:12Z 2526 3 2005-08-26T00:44:12Z 2 2020-02-15T06:59:45Z +13611 2005-08-20T06:20:42Z 1460 112 2005-08-28T10:07:42Z 1 2020-02-15T06:59:45Z +13612 2005-08-20T06:22:08Z 675 505 2005-08-28T02:22:08Z 1 2020-02-15T06:59:45Z +13613 2005-08-20T06:23:53Z 2415 201 2005-08-29T11:40:53Z 2 2020-02-15T06:59:45Z +13614 2005-08-20T06:28:37Z 3736 381 2005-08-22T07:54:37Z 2 2020-02-15T06:59:45Z +13615 2005-08-20T06:28:53Z 1864 539 2005-08-27T11:40:53Z 2 2020-02-15T06:59:45Z +13616 2005-08-20T06:30:33Z 1694 194 2005-08-27T09:29:33Z 2 2020-02-15T06:59:45Z +13617 2005-08-20T06:35:30Z 4059 526 2005-08-29T09:03:30Z 1 2020-02-15T06:59:45Z +13618 2005-08-20T06:36:46Z 390 390 2005-08-29T05:17:46Z 2 2020-02-15T06:59:45Z +13619 2005-08-20T06:39:26Z 1068 365 2005-08-23T05:22:26Z 2 2020-02-15T06:59:45Z +13620 2005-08-20T06:41:27Z 2361 92 2005-08-24T11:02:27Z 1 2020-02-15T06:59:45Z +13621 2005-08-20T06:43:44Z 3754 581 2005-08-23T06:25:44Z 2 2020-02-15T06:59:45Z +13622 2005-08-20T06:45:32Z 3355 335 2005-08-25T02:40:32Z 1 2020-02-15T06:59:45Z +13623 2005-08-20T06:49:46Z 3948 321 2005-08-25T05:19:46Z 2 2020-02-15T06:59:45Z +13624 2005-08-20T06:51:02Z 430 63 2005-08-29T02:39:02Z 1 2020-02-15T06:59:45Z +13625 2005-08-20T06:52:03Z 60 422 2005-08-27T07:43:03Z 1 2020-02-15T06:59:45Z +13626 2005-08-20T06:55:24Z 594 524 2005-08-29T12:32:24Z 1 2020-02-15T06:59:45Z +13627 2005-08-20T06:59:00Z 603 329 2005-08-29T11:43:00Z 2 2020-02-15T06:59:45Z +13628 2005-08-20T07:03:53Z 1006 500 2005-08-22T11:27:53Z 2 2020-02-15T06:59:45Z +13629 2005-08-20T07:04:07Z 1834 392 2005-08-25T12:36:07Z 1 2020-02-15T06:59:45Z +13630 2005-08-20T07:05:56Z 3346 244 2005-08-29T04:15:56Z 1 2020-02-15T06:59:45Z +13631 2005-08-20T07:07:37Z 1015 535 2005-08-22T04:01:37Z 1 2020-02-15T06:59:45Z +13632 2005-08-20T07:10:52Z 4008 409 2005-08-29T10:19:52Z 2 2020-02-15T06:59:45Z +13633 2005-08-20T07:13:47Z 3227 301 2005-08-24T11:25:47Z 1 2020-02-15T06:59:45Z +13634 2005-08-20T07:16:45Z 850 411 2005-08-22T03:38:45Z 1 2020-02-15T06:59:45Z +13635 2005-08-20T07:17:35Z 669 286 2005-08-29T06:27:35Z 1 2020-02-15T06:59:45Z +13636 2005-08-20T07:20:09Z 1467 349 2005-08-23T09:58:09Z 1 2020-02-15T06:59:45Z +13637 2005-08-20T07:21:15Z 2298 342 2005-08-24T10:13:15Z 2 2020-02-15T06:59:45Z +13638 2005-08-20T07:21:15Z 3255 493 2005-08-23T11:09:15Z 2 2020-02-15T06:59:45Z +13639 2005-08-20T07:22:07Z 2489 562 2005-08-23T11:24:07Z 2 2020-02-15T06:59:45Z +13640 2005-08-20T07:22:53Z 3427 541 2005-08-21T11:54:53Z 2 2020-02-15T06:59:45Z +13641 2005-08-20T07:34:42Z 367 281 2005-08-26T05:18:42Z 1 2020-02-15T06:59:45Z +13642 2005-08-20T07:42:17Z 4415 452 2005-08-29T10:49:17Z 1 2020-02-15T06:59:45Z +13643 2005-08-20T07:42:24Z 2443 398 2005-08-26T09:13:24Z 2 2020-02-15T06:59:45Z +13644 2005-08-20T07:46:30Z 970 464 2005-08-27T01:54:30Z 1 2020-02-15T06:59:45Z +13645 2005-08-20T07:47:05Z 157 387 2005-08-23T02:58:05Z 1 2020-02-15T06:59:45Z +13646 2005-08-20T07:47:08Z 1347 242 2005-08-29T08:33:08Z 1 2020-02-15T06:59:45Z +13647 2005-08-20T07:48:07Z 3269 519 2005-08-28T07:56:07Z 2 2020-02-15T06:59:45Z +13648 2005-08-20T07:48:10Z 3921 596 2005-08-22T12:15:10Z 2 2020-02-15T06:59:45Z +13649 2005-08-20T07:48:38Z 1495 259 2005-08-23T07:43:38Z 2 2020-02-15T06:59:45Z +13650 2005-08-20T07:49:06Z 2644 322 2005-08-28T10:11:06Z 1 2020-02-15T06:59:45Z +13651 2005-08-20T07:50:08Z 1082 256 2005-08-21T07:11:08Z 1 2020-02-15T06:59:45Z +13652 2005-08-20T07:52:34Z 2548 67 2005-08-23T08:58:34Z 2 2020-02-15T06:59:45Z +13653 2005-08-20T07:54:54Z 4029 129 2005-08-29T06:43:54Z 1 2020-02-15T06:59:45Z +13654 2005-08-20T07:58:21Z 1582 469 2005-08-21T09:40:21Z 2 2020-02-15T06:59:45Z +13655 2005-08-20T07:59:13Z 4294 207 2005-08-22T12:04:13Z 1 2020-02-15T06:59:45Z +13656 2005-08-20T08:01:07Z 3180 411 2005-08-28T13:16:07Z 2 2020-02-15T06:59:45Z +13657 2005-08-20T08:01:39Z 1752 414 2005-08-23T07:31:39Z 1 2020-02-15T06:59:45Z +13658 2005-08-20T08:02:22Z 3827 487 2005-08-28T06:00:22Z 1 2020-02-15T06:59:45Z +13659 2005-08-20T08:05:52Z 3610 520 2005-08-24T12:38:52Z 1 2020-02-15T06:59:45Z +13660 2005-08-20T08:05:56Z 3972 72 2005-08-22T13:22:56Z 1 2020-02-15T06:59:45Z +13661 2005-08-20T08:05:59Z 3996 471 2005-08-29T12:15:59Z 1 2020-02-15T06:59:45Z +13662 2005-08-20T08:11:58Z 3880 592 2005-08-26T13:34:58Z 1 2020-02-15T06:59:45Z +13663 2005-08-20T08:12:33Z 3969 240 2005-08-27T03:23:33Z 2 2020-02-15T06:59:45Z +13664 2005-08-20T08:18:36Z 3750 264 2005-08-26T11:04:36Z 1 2020-02-15T06:59:45Z +13665 2005-08-20T08:19:20Z 117 291 2005-08-28T06:26:20Z 1 2020-02-15T06:59:45Z +13666 2005-08-20T08:20:19Z 2007 451 2005-08-22T03:22:19Z 1 2020-02-15T06:59:45Z +13667 2005-08-20T08:25:34Z 3856 280 2005-08-24T07:04:34Z 2 2020-02-15T06:59:45Z +13668 2005-08-20T08:26:06Z 3659 123 2005-08-25T05:52:06Z 2 2020-02-15T06:59:45Z +13669 2005-08-20T08:26:32Z 4504 261 2005-08-27T08:10:32Z 2 2020-02-15T06:59:45Z +13670 2005-08-20T08:27:01Z 1951 147 2005-08-29T05:59:01Z 2 2020-02-15T06:59:45Z +13671 2005-08-20T08:27:03Z 1473 201 2005-08-26T03:56:03Z 1 2020-02-15T06:59:45Z +13672 2005-08-20T08:27:27Z 2068 201 2005-08-22T06:15:27Z 2 2020-02-15T06:59:45Z +13673 2005-08-20T08:27:30Z 343 332 2005-08-26T05:14:30Z 1 2020-02-15T06:59:45Z +13674 2005-08-20T08:30:54Z 3397 36 2005-08-22T02:59:54Z 1 2020-02-15T06:59:45Z +13675 2005-08-20T08:32:51Z 350 493 2005-08-27T03:52:51Z 2 2020-02-15T06:59:45Z +13676 2005-08-20T08:33:21Z 3170 103 2005-08-25T02:51:21Z 1 2020-02-15T06:59:45Z +13677 2005-08-20T08:34:41Z 4013 15 2005-08-26T11:51:41Z 2 2020-02-15T06:59:45Z +13678 2005-08-20T08:38:24Z 1118 337 2005-08-27T13:54:24Z 2 2020-02-15T06:59:45Z +13679 2005-08-20T08:39:34Z 2878 229 2005-08-29T10:06:34Z 2 2020-02-15T06:59:45Z +13680 2005-08-20T08:44:06Z 2822 70 2005-08-27T09:58:06Z 2 2020-02-15T06:59:45Z +13681 2005-08-20T08:47:37Z 3039 328 2005-08-27T09:47:37Z 1 2020-02-15T06:59:45Z +13682 2005-08-20T08:50:39Z 287 30 2005-08-21T09:05:39Z 2 2020-02-15T06:59:45Z +13683 2005-08-20T08:54:55Z 1729 255 2005-08-24T14:10:55Z 2 2020-02-15T06:59:45Z +13684 2005-08-20T08:55:53Z 2213 348 2005-08-25T08:11:53Z 1 2020-02-15T06:59:45Z +13685 2005-08-20T08:57:11Z 3336 260 2005-08-27T07:26:11Z 1 2020-02-15T06:59:45Z +13686 2005-08-20T08:57:28Z 666 306 2005-08-24T07:21:28Z 2 2020-02-15T06:59:45Z +13687 2005-08-20T08:57:51Z 3629 290 2005-08-22T07:02:51Z 2 2020-02-15T06:59:45Z +13688 2005-08-20T08:59:38Z 1116 572 2005-08-28T04:54:38Z 2 2020-02-15T06:59:45Z +13689 2005-08-20T09:04:30Z 819 336 2005-08-22T05:38:30Z 2 2020-02-15T06:59:45Z +13690 2005-08-20T09:07:27Z 3721 513 2005-08-23T08:03:27Z 2 2020-02-15T06:59:45Z +13691 2005-08-20T09:07:39Z 676 548 2005-08-28T15:03:39Z 1 2020-02-15T06:59:45Z +13692 2005-08-20T09:07:52Z 1928 65 2005-08-21T05:17:52Z 1 2020-02-15T06:59:45Z +13693 2005-08-20T09:11:42Z 933 552 2005-08-24T15:00:42Z 2 2020-02-15T06:59:45Z +13694 2005-08-20T09:13:23Z 3654 454 2005-08-28T06:10:23Z 1 2020-02-15T06:59:45Z +13695 2005-08-20T09:13:25Z 3114 258 2005-08-27T11:51:25Z 2 2020-02-15T06:59:45Z +13696 2005-08-20T09:16:15Z 1279 206 2005-08-21T03:33:15Z 1 2020-02-15T06:59:45Z +13697 2005-08-20T09:21:08Z 291 76 2005-08-29T12:33:08Z 1 2020-02-15T06:59:45Z +13698 2005-08-20T09:24:26Z 3829 364 2005-08-22T05:04:26Z 2 2020-02-15T06:59:45Z +13699 2005-08-20T09:26:14Z 3913 21 2005-08-29T08:16:14Z 2 2020-02-15T06:59:45Z +13700 2005-08-20T09:26:17Z 4229 265 2005-08-27T05:49:17Z 2 2020-02-15T06:59:45Z +13701 2005-08-20T09:27:05Z 1643 564 2005-08-21T14:54:05Z 1 2020-02-15T06:59:45Z +13702 2005-08-20T09:27:20Z 700 296 2005-08-29T15:04:20Z 2 2020-02-15T06:59:45Z +13703 2005-08-20T09:29:35Z 2296 356 2005-08-27T08:03:35Z 2 2020-02-15T06:59:45Z +13704 2005-08-20T09:32:04Z 3373 4 2005-08-23T14:29:04Z 2 2020-02-15T06:59:45Z +13705 2005-08-20T09:32:23Z 3663 451 2005-08-21T13:51:23Z 1 2020-02-15T06:59:45Z +13706 2005-08-20T09:32:56Z 3005 363 2005-08-28T05:22:56Z 2 2020-02-15T06:59:45Z +13707 2005-08-20T09:33:58Z 826 232 2005-08-23T07:44:58Z 2 2020-02-15T06:59:45Z +13708 2005-08-20T09:34:07Z 2236 218 2005-08-26T10:17:07Z 1 2020-02-15T06:59:45Z +13709 2005-08-20T09:34:51Z 4089 422 2005-08-23T04:13:51Z 1 2020-02-15T06:59:45Z +13710 2005-08-20T09:35:20Z 756 333 2005-08-21T05:29:20Z 2 2020-02-15T06:59:45Z +13711 2005-08-20T09:35:20Z 2318 453 2005-08-28T09:06:20Z 2 2020-02-15T06:59:45Z +13712 2005-08-20T09:38:04Z 1039 581 2005-08-21T06:10:04Z 1 2020-02-15T06:59:45Z +13713 2006-02-14T15:16:03Z 3075 267 1 2020-02-15T06:59:45Z +13714 2005-08-20T09:41:09Z 2659 277 2005-08-22T06:28:09Z 1 2020-02-15T06:59:45Z +13715 2005-08-20T09:43:06Z 1028 292 2005-08-27T10:22:06Z 1 2020-02-15T06:59:45Z +13716 2005-08-20T09:48:32Z 86 386 2005-08-26T07:20:32Z 2 2020-02-15T06:59:45Z +13717 2005-08-20T09:50:52Z 1629 300 2005-08-28T11:32:52Z 2 2020-02-15T06:59:45Z +13718 2005-08-20T09:53:44Z 205 19 2005-08-29T13:46:44Z 2 2020-02-15T06:59:45Z +13719 2006-02-14T15:16:03Z 3547 208 1 2020-02-15T06:59:45Z +13720 2005-08-20T10:01:39Z 813 427 2005-08-27T08:26:39Z 1 2020-02-15T06:59:45Z +13721 2005-08-20T10:02:59Z 1444 297 2005-08-24T07:02:59Z 2 2020-02-15T06:59:45Z +13722 2005-08-20T10:03:45Z 1581 422 2005-08-25T04:26:45Z 1 2020-02-15T06:59:45Z +13723 2005-08-20T10:05:30Z 411 110 2005-08-27T07:43:30Z 2 2020-02-15T06:59:45Z +13724 2005-08-20T10:07:28Z 200 80 2005-08-24T07:47:28Z 2 2020-02-15T06:59:45Z +13725 2005-08-20T10:08:27Z 3861 306 2005-08-28T06:52:27Z 2 2020-02-15T06:59:45Z +13726 2005-08-20T10:08:40Z 2258 214 2005-08-23T14:58:40Z 1 2020-02-15T06:59:45Z +13727 2005-08-20T10:08:53Z 4201 85 2005-08-27T09:30:53Z 1 2020-02-15T06:59:45Z +13728 2005-08-20T10:11:07Z 1962 157 2005-08-23T10:32:07Z 1 2020-02-15T06:59:45Z +13729 2005-08-20T10:17:08Z 4108 415 2005-08-28T15:35:08Z 1 2020-02-15T06:59:45Z +13730 2005-08-20T10:17:09Z 1330 548 2005-08-28T10:45:09Z 1 2020-02-15T06:59:45Z +13731 2005-08-20T10:22:08Z 1133 450 2005-08-21T12:04:08Z 2 2020-02-15T06:59:45Z +13732 2005-08-20T10:24:41Z 1138 17 2005-08-22T04:44:41Z 1 2020-02-15T06:59:45Z +13733 2005-08-20T10:25:12Z 3994 85 2005-08-21T10:49:12Z 2 2020-02-15T06:59:45Z +13734 2005-08-20T10:29:57Z 4561 374 2005-08-25T14:41:57Z 2 2020-02-15T06:59:45Z +13735 2005-08-20T10:31:01Z 1813 35 2005-08-26T05:00:01Z 1 2020-02-15T06:59:45Z +13736 2005-08-20T10:31:23Z 3369 32 2005-08-28T06:51:23Z 1 2020-02-15T06:59:45Z +13737 2005-08-20T10:41:50Z 4319 200 2005-08-25T14:33:50Z 2 2020-02-15T06:59:45Z +13738 2005-08-20T10:42:42Z 2748 273 2005-08-25T09:32:42Z 1 2020-02-15T06:59:45Z +13739 2005-08-20T10:45:10Z 3027 441 2005-08-28T08:46:10Z 2 2020-02-15T06:59:45Z +13740 2005-08-20T10:48:43Z 4366 21 2005-08-29T15:30:43Z 1 2020-02-15T06:59:45Z +13741 2005-08-20T10:48:47Z 3887 195 2005-08-21T11:19:47Z 1 2020-02-15T06:59:45Z +13742 2005-08-20T10:49:15Z 1377 580 2005-08-21T11:05:15Z 2 2020-02-15T06:59:45Z +13743 2005-08-20T10:51:27Z 3693 57 2005-08-24T15:54:27Z 1 2020-02-15T06:59:45Z +13744 2005-08-20T10:51:45Z 2962 408 2005-08-25T06:42:45Z 2 2020-02-15T06:59:45Z +13745 2005-08-20T10:53:49Z 1264 142 2005-08-25T13:25:49Z 1 2020-02-15T06:59:45Z +13746 2005-08-20T10:55:28Z 3742 520 2005-08-25T07:48:28Z 2 2020-02-15T06:59:45Z +13747 2005-08-20T10:56:06Z 3332 74 2005-08-29T10:29:06Z 1 2020-02-15T06:59:45Z +13748 2005-08-20T10:59:54Z 2198 410 2005-08-23T12:33:54Z 1 2020-02-15T06:59:45Z +13749 2005-08-20T11:00:37Z 2811 282 2005-08-26T12:04:37Z 1 2020-02-15T06:59:45Z +13750 2005-08-20T11:11:42Z 3363 246 2005-08-29T16:16:42Z 2 2020-02-15T06:59:45Z +13751 2005-08-20T11:17:03Z 185 105 2005-08-22T14:12:03Z 2 2020-02-15T06:59:45Z +13752 2005-08-20T11:17:45Z 1794 77 2005-08-29T13:25:45Z 2 2020-02-15T06:59:45Z +13753 2006-02-14T15:16:03Z 3746 495 1 2020-02-15T06:59:45Z +13754 2005-08-20T11:18:08Z 1740 108 2005-08-22T11:55:08Z 1 2020-02-15T06:59:45Z +13755 2005-08-20T11:18:53Z 1927 342 2005-08-27T06:51:53Z 2 2020-02-15T06:59:45Z +13756 2006-02-14T15:16:03Z 1146 252 2 2020-02-15T06:59:45Z +13757 2005-08-20T11:20:12Z 1147 14 2005-08-23T10:14:12Z 2 2020-02-15T06:59:45Z +13758 2005-08-20T11:21:26Z 864 255 2005-08-29T14:37:26Z 2 2020-02-15T06:59:45Z +13759 2005-08-20T11:24:48Z 595 269 2005-08-29T10:29:48Z 1 2020-02-15T06:59:45Z +13760 2005-08-20T11:26:33Z 3459 436 2005-08-27T11:12:33Z 2 2020-02-15T06:59:45Z +13761 2005-08-20T11:28:50Z 3149 376 2005-08-21T12:05:50Z 2 2020-02-15T06:59:45Z +13762 2005-08-20T11:29:32Z 451 566 2005-08-23T17:25:32Z 1 2020-02-15T06:59:45Z +13763 2005-08-20T11:37:56Z 4171 469 2005-08-26T13:12:56Z 1 2020-02-15T06:59:45Z +13764 2005-08-20T11:38:16Z 989 386 2005-08-27T08:01:16Z 1 2020-02-15T06:59:45Z +13765 2005-08-20T11:39:00Z 2104 219 2005-08-21T06:05:00Z 1 2020-02-15T06:59:46Z +13766 2005-08-20T11:42:01Z 1313 189 2005-08-27T13:44:01Z 2 2020-02-15T06:59:46Z +13767 2005-08-20T11:43:36Z 2739 506 2005-08-22T17:10:36Z 1 2020-02-15T06:59:46Z +13768 2005-08-20T11:43:43Z 3847 198 2005-08-27T07:56:43Z 2 2020-02-15T06:59:46Z +13769 2005-08-20T11:43:52Z 2868 56 2005-08-28T13:19:52Z 1 2020-02-15T06:59:46Z +13770 2005-08-20T11:45:54Z 998 538 2005-08-22T17:08:54Z 1 2020-02-15T06:59:46Z +13771 2005-08-20T11:47:21Z 2278 512 2005-08-22T17:09:21Z 1 2020-02-15T06:59:46Z +13772 2005-08-20T11:47:52Z 2038 387 2005-08-28T05:50:52Z 2 2020-02-15T06:59:46Z +13773 2005-08-20T11:50:14Z 3389 64 2005-08-26T12:35:14Z 1 2020-02-15T06:59:46Z +13774 2005-08-20T11:54:01Z 735 244 2005-08-22T13:25:01Z 2 2020-02-15T06:59:46Z +13775 2005-08-20T11:56:30Z 1858 116 2005-08-28T12:48:30Z 2 2020-02-15T06:59:46Z +13776 2005-08-20T11:57:06Z 2439 137 2005-08-26T10:55:06Z 1 2020-02-15T06:59:46Z +13777 2005-08-20T12:03:35Z 3587 29 2005-08-27T10:13:35Z 1 2020-02-15T06:59:46Z +13778 2005-08-20T12:03:44Z 2385 539 2005-08-28T12:09:44Z 1 2020-02-15T06:59:46Z +13779 2005-08-20T12:03:54Z 63 440 2005-08-28T15:24:54Z 2 2020-02-15T06:59:46Z +13780 2006-02-14T15:16:03Z 1775 14 2 2020-02-15T06:59:46Z +13781 2005-08-20T12:06:45Z 971 368 2005-08-26T06:50:45Z 2 2020-02-15T06:59:46Z +13782 2005-08-20T12:09:26Z 577 305 2005-08-23T08:31:26Z 2 2020-02-15T06:59:46Z +13783 2005-08-20T12:11:03Z 2643 28 2005-08-21T15:53:03Z 2 2020-02-15T06:59:46Z +13784 2005-08-20T12:11:28Z 3087 431 2005-08-25T08:11:28Z 1 2020-02-15T06:59:46Z +13785 2005-08-20T12:11:46Z 379 453 2005-08-21T06:39:46Z 1 2020-02-15T06:59:46Z +13786 2005-08-20T12:13:24Z 515 94 2005-08-28T07:24:24Z 2 2020-02-15T06:59:46Z +13787 2005-08-20T12:15:23Z 253 188 2005-08-27T06:24:23Z 2 2020-02-15T06:59:46Z +13788 2005-08-20T12:15:41Z 3177 393 2005-08-28T16:28:41Z 2 2020-02-15T06:59:46Z +13789 2005-08-20T12:16:38Z 2523 53 2005-08-25T07:29:38Z 1 2020-02-15T06:59:46Z +13790 2005-08-20T12:17:27Z 1385 11 2005-08-25T12:20:27Z 1 2020-02-15T06:59:46Z +13791 2005-08-20T12:21:05Z 1890 67 2005-08-22T17:58:05Z 1 2020-02-15T06:59:46Z +13792 2005-08-20T12:21:37Z 4157 78 2005-08-27T14:28:37Z 1 2020-02-15T06:59:46Z +13793 2005-08-20T12:22:04Z 2598 424 2005-08-27T09:51:04Z 2 2020-02-15T06:59:46Z +13794 2005-08-20T12:25:32Z 2148 557 2005-08-23T06:38:32Z 2 2020-02-15T06:59:46Z +13795 2005-08-20T12:32:09Z 2837 331 2005-08-21T17:28:09Z 1 2020-02-15T06:59:46Z +13796 2005-08-20T12:32:32Z 28 209 2005-08-29T10:48:32Z 2 2020-02-15T06:59:46Z +13797 2005-08-20T12:33:36Z 2857 529 2005-08-25T18:03:36Z 1 2020-02-15T06:59:46Z +13798 2006-02-14T15:16:03Z 526 15 2 2020-02-15T06:59:46Z +13799 2005-08-20T12:36:42Z 4413 196 2005-08-28T08:47:42Z 1 2020-02-15T06:59:46Z +13800 2005-08-20T12:40:48Z 1552 407 2005-08-22T15:06:48Z 1 2020-02-15T06:59:46Z +13801 2005-08-20T12:40:53Z 1464 433 2005-08-21T16:29:53Z 1 2020-02-15T06:59:46Z +13802 2005-08-20T12:44:53Z 2079 156 2005-08-22T09:18:53Z 2 2020-02-15T06:59:46Z +13803 2005-08-20T12:46:17Z 1084 486 2005-08-24T15:44:17Z 2 2020-02-15T06:59:46Z +13804 2005-08-20T12:46:32Z 2232 19 2005-08-29T14:04:32Z 2 2020-02-15T06:59:46Z +13805 2005-08-20T12:53:12Z 349 454 2005-08-27T15:21:12Z 1 2020-02-15T06:59:46Z +13806 2005-08-20T12:53:46Z 444 341 2005-08-21T10:36:46Z 1 2020-02-15T06:59:46Z +13807 2005-08-20T12:55:40Z 3822 4 2005-08-28T09:06:40Z 2 2020-02-15T06:59:46Z +13808 2005-08-20T12:55:43Z 3689 262 2005-08-29T11:01:43Z 2 2020-02-15T06:59:46Z +13809 2005-08-20T12:56:03Z 1597 207 2005-08-27T11:58:03Z 1 2020-02-15T06:59:46Z +13810 2005-08-20T12:59:38Z 2228 450 2005-08-21T17:40:38Z 1 2020-02-15T06:59:46Z +13811 2005-08-20T13:00:30Z 1235 168 2005-08-24T10:18:30Z 1 2020-02-15T06:59:46Z +13812 2005-08-20T13:01:43Z 2788 122 2005-08-22T16:32:43Z 2 2020-02-15T06:59:46Z +13813 2005-08-20T13:03:26Z 601 455 2005-08-25T08:42:26Z 1 2020-02-15T06:59:46Z +13814 2005-08-20T13:07:23Z 2129 436 2005-08-22T16:23:23Z 2 2020-02-15T06:59:46Z +13815 2005-08-20T13:08:53Z 3388 582 2005-08-29T13:11:53Z 2 2020-02-15T06:59:46Z +13816 2005-08-20T13:13:56Z 273 27 2005-08-25T09:46:56Z 1 2020-02-15T06:59:46Z +13817 2005-08-20T13:15:30Z 1935 293 2005-08-22T18:48:30Z 2 2020-02-15T06:59:46Z +13818 2005-08-20T13:20:09Z 1283 495 2005-08-21T18:41:09Z 1 2020-02-15T06:59:46Z +13819 2005-08-20T13:23:15Z 1459 296 2005-08-22T16:02:15Z 2 2020-02-15T06:59:46Z +13820 2005-08-20T13:26:37Z 3191 81 2005-08-27T14:05:37Z 1 2020-02-15T06:59:46Z +13821 2005-08-20T13:33:47Z 2402 355 2005-08-25T18:09:47Z 1 2020-02-15T06:59:46Z +13822 2005-08-20T13:39:28Z 807 499 2005-08-24T07:40:28Z 1 2020-02-15T06:59:46Z +13823 2005-08-20T13:42:10Z 3875 89 2005-08-22T18:45:10Z 1 2020-02-15T06:59:46Z +13824 2005-08-20T13:43:12Z 2845 413 2005-08-22T17:26:12Z 1 2020-02-15T06:59:46Z +13825 2005-08-20T13:43:22Z 2135 167 2005-08-29T19:13:22Z 1 2020-02-15T06:59:46Z +13826 2005-08-20T13:46:38Z 401 436 2005-08-29T13:07:38Z 1 2020-02-15T06:59:46Z +13827 2005-08-20T13:47:19Z 1103 342 2005-08-28T09:13:19Z 1 2020-02-15T06:59:46Z +13828 2005-08-20T13:49:52Z 2391 450 2005-08-25T07:49:52Z 2 2020-02-15T06:59:46Z +13829 2005-08-20T13:50:17Z 3980 146 2005-08-24T11:30:17Z 2 2020-02-15T06:59:46Z +13830 2005-08-20T13:57:59Z 2874 61 2005-08-25T11:29:59Z 1 2020-02-15T06:59:46Z +13831 2005-08-20T13:59:35Z 570 480 2005-08-24T12:50:35Z 1 2020-02-15T06:59:46Z +13832 2005-08-20T14:00:25Z 3299 29 2005-08-28T10:11:25Z 1 2020-02-15T06:59:46Z +13833 2005-08-20T14:00:29Z 792 175 2005-08-29T12:01:29Z 2 2020-02-15T06:59:46Z +13834 2005-08-20T14:03:08Z 875 426 2005-08-22T10:12:08Z 1 2020-02-15T06:59:46Z +13835 2005-08-20T14:06:33Z 3738 143 2005-08-26T12:15:33Z 2 2020-02-15T06:59:46Z +13836 2005-08-20T14:18:16Z 4271 375 2005-08-21T18:13:16Z 2 2020-02-15T06:59:46Z +13837 2005-08-20T14:19:03Z 3220 67 2005-08-22T16:25:03Z 2 2020-02-15T06:59:46Z +13838 2005-08-20T14:22:46Z 1134 437 2005-08-29T12:28:46Z 2 2020-02-15T06:59:46Z +13839 2005-08-20T14:23:16Z 1056 437 2005-08-26T19:11:16Z 2 2020-02-15T06:59:46Z +13840 2005-08-20T14:23:20Z 1211 40 2005-08-28T11:53:20Z 1 2020-02-15T06:59:46Z +13841 2005-08-20T14:25:18Z 3277 203 2005-08-29T15:49:18Z 1 2020-02-15T06:59:46Z +13842 2005-08-20T14:29:37Z 4337 180 2005-08-29T18:19:37Z 1 2020-02-15T06:59:46Z +13843 2005-08-20T14:30:01Z 3058 308 2005-08-27T10:06:01Z 2 2020-02-15T06:59:46Z +13844 2005-08-20T14:30:26Z 983 179 2005-08-29T17:08:26Z 1 2020-02-15T06:59:46Z +13845 2005-08-20T14:31:21Z 3993 559 2005-08-29T18:29:21Z 1 2020-02-15T06:59:46Z +13846 2005-08-20T14:32:31Z 3289 257 2005-08-28T16:58:31Z 1 2020-02-15T06:59:46Z +13847 2005-08-20T14:33:59Z 2647 82 2005-08-25T08:49:59Z 1 2020-02-15T06:59:46Z +13848 2005-08-20T14:37:49Z 802 447 2005-08-25T13:15:49Z 1 2020-02-15T06:59:46Z +13849 2005-08-20T14:42:34Z 3774 261 2005-08-24T13:09:34Z 2 2020-02-15T06:59:46Z +13850 2005-08-20T14:43:03Z 3030 546 2005-08-27T11:41:03Z 2 2020-02-15T06:59:46Z +13851 2005-08-20T14:44:22Z 3278 80 2005-08-22T18:10:22Z 1 2020-02-15T06:59:46Z +13852 2005-08-20T14:45:23Z 85 535 2005-08-22T16:47:23Z 2 2020-02-15T06:59:46Z +13853 2005-08-20T14:47:02Z 1680 186 2005-08-26T20:32:02Z 1 2020-02-15T06:59:46Z +13854 2005-08-20T14:48:42Z 4192 158 2005-08-21T14:55:42Z 2 2020-02-15T06:59:46Z +13855 2005-08-20T14:48:55Z 1617 96 2005-08-28T14:45:55Z 1 2020-02-15T06:59:46Z +13856 2005-08-20T14:49:32Z 4196 407 2005-08-29T12:37:32Z 2 2020-02-15T06:59:46Z +13857 2005-08-20T14:50:06Z 2542 366 2005-08-24T10:38:06Z 2 2020-02-15T06:59:46Z +13858 2005-08-20T14:50:57Z 2167 33 2005-08-23T12:10:57Z 2 2020-02-15T06:59:46Z +13859 2005-08-20T14:53:43Z 4381 504 2005-08-28T09:50:43Z 1 2020-02-15T06:59:46Z +13860 2005-08-20T14:55:09Z 558 275 2005-08-22T20:42:09Z 1 2020-02-15T06:59:46Z +13861 2005-08-20T14:56:53Z 303 154 2005-08-22T18:13:53Z 2 2020-02-15T06:59:46Z +13862 2005-08-20T14:57:01Z 3271 170 2005-08-27T10:48:01Z 2 2020-02-15T06:59:46Z +13863 2005-08-20T14:57:50Z 2417 563 2005-08-29T15:36:50Z 2 2020-02-15T06:59:46Z +13864 2005-08-20T14:59:55Z 3935 214 2005-08-22T09:30:55Z 2 2020-02-15T06:59:46Z +13865 2005-08-20T15:04:09Z 3647 275 2005-08-24T10:06:09Z 2 2020-02-15T06:59:46Z +13866 2005-08-20T15:05:29Z 3432 343 2005-08-23T11:27:29Z 2 2020-02-15T06:59:46Z +13867 2005-08-20T15:05:42Z 4514 591 2005-08-29T10:48:42Z 2 2020-02-15T06:59:46Z +13868 2005-08-20T15:06:26Z 3173 51 2005-08-22T19:08:26Z 2 2020-02-15T06:59:46Z +13869 2005-08-20T15:08:57Z 1990 386 2005-08-29T13:13:57Z 2 2020-02-15T06:59:46Z +13870 2005-08-20T15:09:16Z 563 167 2005-08-28T10:00:16Z 2 2020-02-15T06:59:46Z +13871 2005-08-20T15:10:13Z 3206 372 2005-08-29T19:43:13Z 2 2020-02-15T06:59:46Z +13872 2005-08-20T15:10:30Z 2416 421 2005-08-24T10:14:30Z 2 2020-02-15T06:59:46Z +13873 2005-08-20T15:11:11Z 1683 306 2005-08-22T20:13:11Z 2 2020-02-15T06:59:46Z +13874 2005-08-20T15:11:48Z 72 86 2005-08-21T18:26:48Z 2 2020-02-15T06:59:46Z +13875 2005-08-20T15:13:11Z 348 83 2005-08-21T13:11:11Z 1 2020-02-15T06:59:46Z +13876 2005-08-20T15:15:28Z 3137 334 2005-08-23T12:42:28Z 2 2020-02-15T06:59:46Z +13877 2005-08-20T15:16:18Z 3387 5 2005-08-22T18:20:18Z 1 2020-02-15T06:59:46Z +13878 2005-08-20T15:17:38Z 49 481 2005-08-21T21:11:38Z 2 2020-02-15T06:59:46Z +13879 2005-08-20T15:18:10Z 4022 112 2005-08-22T19:23:10Z 2 2020-02-15T06:59:46Z +13880 2005-08-20T15:18:20Z 3911 268 2005-08-24T18:03:20Z 2 2020-02-15T06:59:46Z +13881 2005-08-20T15:18:55Z 2831 144 2005-08-25T11:25:55Z 1 2020-02-15T06:59:46Z +13882 2005-08-20T15:23:26Z 3245 51 2005-08-22T13:03:26Z 1 2020-02-15T06:59:46Z +13883 2005-08-20T15:28:53Z 584 568 2005-08-21T13:11:53Z 1 2020-02-15T06:59:46Z +13884 2005-08-20T15:30:51Z 3182 466 2005-08-26T13:34:51Z 1 2020-02-15T06:59:46Z +13885 2005-08-20T15:32:09Z 3195 537 2005-08-26T15:54:09Z 1 2020-02-15T06:59:46Z +13886 2005-08-20T15:34:43Z 2248 73 2005-08-26T11:48:43Z 2 2020-02-15T06:59:46Z +13887 2005-08-20T15:39:00Z 4002 413 2005-08-24T16:17:00Z 2 2020-02-15T06:59:46Z +13888 2005-08-20T15:39:42Z 1943 297 2005-08-28T13:41:42Z 1 2020-02-15T06:59:46Z +13889 2005-08-20T15:40:06Z 4406 501 2005-08-22T14:09:06Z 2 2020-02-15T06:59:46Z +13890 2005-08-20T15:41:00Z 2965 54 2005-08-22T16:00:00Z 1 2020-02-15T06:59:46Z +13891 2005-08-20T15:42:05Z 2042 289 2005-08-25T13:26:05Z 1 2020-02-15T06:59:46Z +13892 2005-08-20T15:50:17Z 1236 337 2005-08-29T13:33:17Z 2 2020-02-15T06:59:46Z +13893 2005-08-20T15:52:52Z 3503 390 2005-08-27T16:21:52Z 2 2020-02-15T06:59:46Z +13894 2005-08-20T15:55:20Z 2649 360 2005-08-26T17:26:20Z 2 2020-02-15T06:59:46Z +13895 2005-08-20T15:58:28Z 3060 12 2005-08-26T15:07:28Z 2 2020-02-15T06:59:46Z +13896 2005-08-20T15:59:56Z 1338 278 2005-08-21T20:14:56Z 2 2020-02-15T06:59:46Z +13897 2005-08-20T16:02:28Z 628 258 2005-08-23T14:29:28Z 1 2020-02-15T06:59:46Z +13898 2006-02-14T15:16:03Z 4007 369 2 2020-02-15T06:59:46Z +13899 2005-08-20T16:05:11Z 427 204 2005-08-23T15:14:11Z 2 2020-02-15T06:59:46Z +13900 2005-08-20T16:05:41Z 1140 66 2005-08-22T15:13:41Z 1 2020-02-15T06:59:46Z +13901 2005-08-20T16:06:53Z 3281 166 2005-08-28T11:30:53Z 1 2020-02-15T06:59:46Z +13902 2005-08-20T16:07:08Z 1165 275 2005-08-24T16:43:08Z 2 2020-02-15T06:59:46Z +13903 2005-08-20T16:07:55Z 1676 272 2005-08-25T18:26:55Z 1 2020-02-15T06:59:46Z +13904 2005-08-20T16:11:34Z 721 93 2005-08-26T12:46:34Z 1 2020-02-15T06:59:46Z +13905 2005-08-20T16:12:48Z 2714 437 2005-08-28T16:05:48Z 1 2020-02-15T06:59:46Z +13906 2005-08-20T16:16:03Z 3960 87 2005-08-21T13:29:03Z 2 2020-02-15T06:59:46Z +13907 2005-08-20T16:17:27Z 806 328 2005-08-24T20:14:27Z 2 2020-02-15T06:59:46Z +13908 2005-08-20T16:21:40Z 3661 532 2005-08-29T21:16:40Z 1 2020-02-15T06:59:46Z +13909 2005-08-20T16:26:36Z 1508 309 2005-08-21T20:59:36Z 2 2020-02-15T06:59:46Z +13910 2005-08-20T16:30:49Z 252 133 2005-08-24T13:30:49Z 2 2020-02-15T06:59:46Z +13911 2005-08-20T16:31:33Z 4400 304 2005-08-28T19:26:33Z 2 2020-02-15T06:59:46Z +13912 2005-08-20T16:32:10Z 968 207 2005-08-29T17:37:10Z 2 2020-02-15T06:59:46Z +13913 2005-08-20T16:37:35Z 4259 197 2005-08-26T13:12:35Z 2 2020-02-15T06:59:46Z +13914 2005-08-20T16:38:57Z 3037 237 2005-08-26T14:53:57Z 2 2020-02-15T06:59:46Z +13915 2005-08-20T16:42:53Z 1180 129 2005-08-23T20:30:53Z 2 2020-02-15T06:59:46Z +13916 2005-08-20T16:43:02Z 2971 302 2005-08-25T19:21:02Z 1 2020-02-15T06:59:46Z +13917 2005-08-20T16:43:28Z 4326 10 2005-08-29T16:44:28Z 2 2020-02-15T06:59:46Z +13918 2005-08-20T16:47:32Z 3301 248 2005-08-21T12:00:32Z 2 2020-02-15T06:59:46Z +13919 2005-08-20T16:47:34Z 909 129 2005-08-23T21:27:34Z 2 2020-02-15T06:59:46Z +13920 2005-08-20T16:51:18Z 3200 460 2005-08-27T16:05:18Z 2 2020-02-15T06:59:46Z +13921 2005-08-20T16:57:11Z 3943 59 2005-08-22T19:25:11Z 2 2020-02-15T06:59:46Z +13922 2005-08-20T17:02:37Z 1398 237 2005-08-29T19:28:37Z 1 2020-02-15T06:59:46Z +13923 2005-08-20T17:05:02Z 3129 588 2005-08-27T11:22:02Z 2 2020-02-15T06:59:46Z +13924 2005-08-20T17:05:18Z 3066 444 2005-08-23T16:54:18Z 2 2020-02-15T06:59:46Z +13925 2005-08-20T17:05:34Z 4034 565 2005-08-27T15:32:34Z 2 2020-02-15T06:59:46Z +13926 2005-08-20T17:09:27Z 932 158 2005-08-28T13:42:27Z 2 2020-02-15T06:59:46Z +13927 2005-08-20T17:11:58Z 4284 417 2005-08-24T12:44:58Z 1 2020-02-15T06:59:46Z +13928 2005-08-20T17:12:28Z 1121 244 2005-08-21T13:33:28Z 1 2020-02-15T06:59:46Z +13929 2005-08-20T17:13:48Z 946 57 2005-08-28T15:19:48Z 1 2020-02-15T06:59:46Z +13930 2005-08-20T17:15:06Z 3585 58 2005-08-21T14:29:06Z 1 2020-02-15T06:59:46Z +13931 2005-08-20T17:16:10Z 3884 32 2005-08-27T12:03:10Z 2 2020-02-15T06:59:46Z +13932 2005-08-20T17:17:00Z 471 441 2005-08-24T14:06:00Z 1 2020-02-15T06:59:46Z +13933 2005-08-20T17:17:07Z 647 159 2005-08-22T18:10:07Z 2 2020-02-15T06:59:46Z +13934 2005-08-20T17:18:48Z 4567 457 2005-08-26T15:31:48Z 1 2020-02-15T06:59:46Z +13935 2005-08-20T17:20:49Z 4426 205 2005-08-24T16:52:49Z 2 2020-02-15T06:59:46Z +13936 2005-08-20T17:22:35Z 1731 364 2005-08-23T20:07:35Z 2 2020-02-15T06:59:46Z +13937 2005-08-20T17:22:51Z 1755 172 2005-08-27T15:51:51Z 1 2020-02-15T06:59:46Z +13938 2005-08-20T17:24:45Z 3743 463 2005-08-21T18:39:45Z 1 2020-02-15T06:59:46Z +13939 2005-08-20T17:28:01Z 2700 585 2005-08-23T14:40:01Z 2 2020-02-15T06:59:46Z +13940 2005-08-20T17:28:57Z 2638 187 2005-08-27T22:07:57Z 1 2020-02-15T06:59:46Z +13941 2006-02-14T15:16:03Z 2727 476 2 2020-02-15T06:59:46Z +13942 2005-08-20T17:30:52Z 4403 211 2005-08-25T13:46:52Z 2 2020-02-15T06:59:46Z +13943 2005-08-20T17:31:18Z 22 464 2005-08-24T11:33:18Z 1 2020-02-15T06:59:46Z +13944 2005-08-20T17:41:16Z 3685 408 2005-08-23T12:02:16Z 1 2020-02-15T06:59:46Z +13945 2005-08-20T17:43:56Z 3328 270 2005-08-26T19:19:56Z 1 2020-02-15T06:59:46Z +13946 2005-08-20T17:44:32Z 3564 529 2005-08-28T19:19:32Z 1 2020-02-15T06:59:46Z +13947 2005-08-20T17:46:06Z 2562 218 2005-08-29T23:44:06Z 2 2020-02-15T06:59:46Z +13948 2005-08-20T17:50:48Z 4033 410 2005-08-25T20:56:48Z 2 2020-02-15T06:59:46Z +13949 2005-08-20T17:55:13Z 1518 34 2005-08-22T20:49:13Z 1 2020-02-15T06:59:46Z +13950 2005-08-20T17:58:00Z 3978 93 2005-08-29T23:23:00Z 1 2020-02-15T06:59:46Z +13951 2005-08-20T17:58:11Z 2034 40 2005-08-26T14:50:11Z 2 2020-02-15T06:59:46Z +13952 2006-02-14T15:16:03Z 224 199 2 2020-02-15T06:59:46Z +13953 2005-08-20T18:00:37Z 1818 371 2005-08-28T14:52:37Z 1 2020-02-15T06:59:46Z +13954 2005-08-20T18:02:41Z 3812 207 2005-08-27T21:52:41Z 2 2020-02-15T06:59:46Z +13955 2005-08-20T18:05:12Z 2613 273 2005-08-29T18:25:12Z 1 2020-02-15T06:59:46Z +13956 2005-08-20T18:08:19Z 3757 484 2005-08-29T17:03:19Z 1 2020-02-15T06:59:46Z +13957 2005-08-20T18:09:04Z 2889 179 2005-08-23T16:52:04Z 1 2020-02-15T06:59:46Z +13958 2005-08-20T18:11:44Z 2380 33 2005-08-28T14:59:44Z 1 2020-02-15T06:59:46Z +13959 2005-08-20T18:16:21Z 2283 142 2005-08-22T13:56:21Z 2 2020-02-15T06:59:46Z +13960 2005-08-20T18:16:26Z 4177 459 2005-08-29T14:06:26Z 1 2020-02-15T06:59:46Z +13961 2005-08-20T18:16:34Z 2271 129 2005-08-21T16:14:34Z 1 2020-02-15T06:59:46Z +13962 2005-08-20T18:18:06Z 1434 348 2005-08-24T22:16:06Z 2 2020-02-15T06:59:46Z +13963 2005-08-20T18:20:18Z 4145 368 2005-08-24T21:26:18Z 1 2020-02-15T06:59:46Z +13964 2005-08-20T18:24:26Z 108 128 2005-08-21T21:19:26Z 2 2020-02-15T06:59:46Z +13965 2006-02-14T15:16:03Z 670 324 2 2020-02-15T06:59:46Z +13966 2005-08-20T18:28:28Z 4520 260 2005-08-22T16:49:28Z 2 2020-02-15T06:59:46Z +13967 2005-08-20T18:28:46Z 2751 459 2005-08-26T17:37:46Z 2 2020-02-15T06:59:46Z +13968 2006-02-14T15:16:03Z 3715 15 2 2020-02-15T06:59:46Z +13969 2005-08-20T18:42:40Z 1836 237 2005-08-27T17:33:40Z 2 2020-02-15T06:59:46Z +13970 2005-08-20T18:43:34Z 1942 418 2005-08-22T15:17:34Z 2 2020-02-15T06:59:46Z +13971 2005-08-20T18:44:53Z 1678 64 2005-08-22T16:25:53Z 2 2020-02-15T06:59:46Z +13972 2005-08-20T18:52:17Z 1687 553 2005-08-28T15:19:17Z 1 2020-02-15T06:59:46Z +13973 2005-08-20T18:52:43Z 1181 58 2005-08-21T19:11:43Z 1 2020-02-15T06:59:46Z +13974 2005-08-20T18:54:59Z 1912 479 2005-08-28T13:02:59Z 1 2020-02-15T06:59:46Z +13975 2005-08-20T18:58:23Z 3821 286 2005-08-25T20:58:23Z 1 2020-02-15T06:59:46Z +13976 2005-08-20T19:02:16Z 1785 278 2005-08-25T17:58:16Z 2 2020-02-15T06:59:46Z +13977 2005-08-20T19:02:34Z 1126 115 2005-08-24T14:14:34Z 1 2020-02-15T06:59:46Z +13978 2005-08-20T19:03:25Z 1263 260 2005-08-27T18:02:25Z 2 2020-02-15T06:59:46Z +13979 2005-08-20T19:03:49Z 2998 211 2005-08-24T21:23:49Z 1 2020-02-15T06:59:46Z +13980 2005-08-20T19:04:40Z 1067 391 2005-08-21T18:36:40Z 2 2020-02-15T06:59:46Z +13981 2005-08-20T19:07:20Z 3342 249 2005-08-23T15:13:20Z 1 2020-02-15T06:59:46Z +13982 2005-08-20T19:08:25Z 2901 448 2005-08-28T15:59:25Z 2 2020-02-15T06:59:46Z +13983 2005-08-20T19:08:32Z 457 231 2005-08-29T23:45:32Z 1 2020-02-15T06:59:46Z +13984 2005-08-20T19:12:30Z 2183 473 2005-08-29T22:04:30Z 1 2020-02-15T06:59:46Z +13985 2005-08-20T19:13:06Z 1081 339 2005-08-24T21:24:06Z 2 2020-02-15T06:59:46Z +13986 2005-08-20T19:13:23Z 3701 152 2005-08-22T20:59:23Z 2 2020-02-15T06:59:46Z +13987 2005-08-20T19:19:30Z 1443 246 2005-08-23T15:37:30Z 2 2020-02-15T06:59:46Z +13988 2005-08-20T19:21:28Z 3567 466 2005-08-21T22:20:28Z 2 2020-02-15T06:59:46Z +13989 2005-08-20T19:27:50Z 1470 252 2005-08-28T15:17:50Z 2 2020-02-15T06:59:46Z +13990 2005-08-20T19:29:23Z 2272 481 2005-08-25T18:50:23Z 2 2020-02-15T06:59:46Z +13991 2005-08-20T19:29:44Z 1971 296 2005-08-24T21:10:44Z 1 2020-02-15T06:59:46Z +13992 2005-08-20T19:30:35Z 2798 136 2005-08-24T19:09:35Z 2 2020-02-15T06:59:46Z +13993 2005-08-20T19:32:29Z 1158 93 2005-08-26T16:59:29Z 2 2020-02-15T06:59:46Z +13994 2005-08-20T19:33:21Z 142 180 2005-08-24T20:55:21Z 1 2020-02-15T06:59:46Z +13995 2005-08-20T19:34:43Z 3789 381 2005-08-25T22:25:43Z 2 2020-02-15T06:59:46Z +13996 2005-08-20T19:45:43Z 3341 306 2005-08-22T16:47:43Z 2 2020-02-15T06:59:46Z +13997 2005-08-20T19:51:28Z 2330 175 2005-08-26T01:29:28Z 2 2020-02-15T06:59:46Z +13998 2005-08-20T19:52:38Z 3936 530 2005-08-26T14:57:38Z 1 2020-02-15T06:59:46Z +13999 2005-08-20T19:53:32Z 4149 239 2005-08-26T19:01:32Z 1 2020-02-15T06:59:46Z +14000 2005-08-20T20:06:05Z 3907 276 2005-08-28T17:02:05Z 1 2020-02-15T06:59:46Z +14001 2005-08-20T20:07:15Z 1318 120 2005-08-27T00:50:15Z 2 2020-02-15T06:59:46Z +14002 2005-08-20T20:12:19Z 87 33 2005-08-23T00:23:19Z 1 2020-02-15T06:59:46Z +14003 2005-08-20T20:16:06Z 3165 256 2005-08-28T14:36:06Z 1 2020-02-15T06:59:46Z +14004 2005-08-20T20:16:35Z 3445 358 2005-08-28T17:23:35Z 2 2020-02-15T06:59:46Z +14005 2005-08-20T20:19:05Z 1415 135 2005-08-26T01:42:05Z 2 2020-02-15T06:59:46Z +14006 2005-08-20T20:21:36Z 2189 186 2005-08-21T15:26:36Z 1 2020-02-15T06:59:46Z +14007 2005-08-20T20:22:47Z 374 284 2005-08-28T20:40:47Z 2 2020-02-15T06:59:46Z +14008 2005-08-20T20:26:00Z 2427 560 2005-08-28T17:23:00Z 2 2020-02-15T06:59:46Z +14009 2005-08-20T20:26:53Z 3004 382 2005-08-21T23:32:53Z 2 2020-02-15T06:59:46Z +14010 2005-08-20T20:29:46Z 934 537 2005-08-26T17:37:46Z 2 2020-02-15T06:59:46Z +14011 2005-08-20T20:32:56Z 1212 379 2005-08-28T21:44:56Z 1 2020-02-15T06:59:46Z +14012 2005-08-20T20:42:12Z 1866 274 2005-08-23T23:10:12Z 2 2020-02-15T06:59:46Z +14013 2005-08-20T20:42:50Z 3941 496 2005-08-25T21:37:50Z 2 2020-02-15T06:59:46Z +14014 2005-08-20T20:47:09Z 2188 335 2005-08-21T22:08:09Z 2 2020-02-15T06:59:46Z +14015 2005-08-20T20:47:43Z 3145 554 2005-08-26T19:37:43Z 1 2020-02-15T06:59:46Z +14016 2005-08-20T20:52:03Z 509 220 2005-08-23T18:04:03Z 2 2020-02-15T06:59:46Z +14017 2005-08-20T20:55:32Z 920 230 2005-08-23T16:12:32Z 1 2020-02-15T06:59:46Z +14018 2006-02-14T15:16:03Z 2136 533 2 2020-02-15T06:59:46Z +14019 2005-08-20T20:59:15Z 1929 202 2005-08-28T17:29:15Z 2 2020-02-15T06:59:46Z +14020 2005-08-20T20:59:43Z 2257 72 2005-08-23T17:11:43Z 2 2020-02-15T06:59:46Z +14021 2005-08-20T21:02:12Z 4394 147 2005-08-27T22:15:12Z 1 2020-02-15T06:59:46Z +14022 2005-08-20T21:08:49Z 4068 170 2005-08-29T21:57:49Z 1 2020-02-15T06:59:46Z +14023 2005-08-20T21:10:32Z 2668 304 2005-08-23T20:57:32Z 1 2020-02-15T06:59:46Z +14024 2005-08-20T21:13:58Z 1492 87 2005-08-29T23:02:58Z 1 2020-02-15T06:59:46Z +14025 2005-08-20T21:19:36Z 4521 37 2005-08-29T23:39:36Z 1 2020-02-15T06:59:46Z +14026 2005-08-20T21:21:08Z 115 231 2005-08-22T23:19:08Z 2 2020-02-15T06:59:46Z +14027 2005-08-20T21:21:34Z 284 432 2005-08-28T17:46:34Z 1 2020-02-15T06:59:46Z +14028 2005-08-20T21:23:03Z 4061 158 2005-08-25T17:29:03Z 2 2020-02-15T06:59:46Z +14029 2005-08-20T21:23:11Z 2653 219 2005-08-22T18:01:11Z 2 2020-02-15T06:59:46Z +14030 2005-08-20T21:23:54Z 1027 127 2005-08-27T01:19:54Z 1 2020-02-15T06:59:46Z +14031 2005-08-20T21:24:24Z 440 361 2005-08-23T21:47:24Z 2 2020-02-15T06:59:46Z +14032 2005-08-20T21:26:55Z 3542 317 2005-08-26T19:19:55Z 1 2020-02-15T06:59:46Z +14033 2005-08-20T21:30:53Z 525 243 2005-08-23T01:45:53Z 2 2020-02-15T06:59:46Z +14034 2005-08-20T21:31:52Z 3484 200 2005-08-29T00:13:52Z 1 2020-02-15T06:59:46Z +14035 2005-08-20T21:31:58Z 2035 260 2005-08-22T16:28:58Z 1 2020-02-15T06:59:46Z +14036 2005-08-20T21:35:27Z 202 256 2005-08-23T03:29:27Z 1 2020-02-15T06:59:46Z +14037 2005-08-20T21:35:58Z 3655 372 2005-08-29T23:06:58Z 2 2020-02-15T06:59:46Z +14038 2005-08-20T21:39:23Z 1069 589 2005-08-27T23:57:23Z 2 2020-02-15T06:59:46Z +14039 2005-08-20T21:39:43Z 4187 383 2005-08-24T19:03:43Z 1 2020-02-15T06:59:46Z +14040 2005-08-20T21:43:44Z 905 17 2005-08-25T16:30:44Z 1 2020-02-15T06:59:46Z +14041 2005-08-20T21:45:23Z 52 247 2005-08-26T01:42:23Z 1 2020-02-15T06:59:46Z +14042 2005-08-20T21:45:51Z 505 322 2005-08-23T19:57:51Z 2 2020-02-15T06:59:46Z +14043 2005-08-20T21:46:43Z 1485 586 2005-08-21T18:27:43Z 2 2020-02-15T06:59:46Z +14044 2005-08-20T21:48:38Z 1422 145 2005-08-29T02:56:38Z 1 2020-02-15T06:59:46Z +14045 2005-08-20T21:50:11Z 3010 509 2005-08-25T19:03:11Z 2 2020-02-15T06:59:46Z +14046 2005-08-20T21:53:21Z 2352 524 2005-08-23T17:51:21Z 2 2020-02-15T06:59:46Z +14047 2005-08-20T22:00:43Z 186 579 2005-08-24T03:17:43Z 2 2020-02-15T06:59:46Z +14048 2005-08-20T22:03:18Z 3475 105 2005-08-25T02:57:18Z 2 2020-02-15T06:59:46Z +14049 2005-08-20T22:08:55Z 1335 112 2005-08-28T20:24:55Z 1 2020-02-15T06:59:46Z +14050 2005-08-20T22:09:04Z 1737 596 2005-08-26T01:39:04Z 2 2020-02-15T06:59:46Z +14051 2005-08-20T22:09:51Z 4012 362 2005-08-29T04:04:51Z 2 2020-02-15T06:59:46Z +14052 2005-08-20T22:11:46Z 3893 514 2005-08-22T20:26:46Z 2 2020-02-15T06:59:46Z +14053 2005-08-20T22:13:59Z 2177 5 2005-08-26T20:50:59Z 2 2020-02-15T06:59:46Z +14054 2005-08-20T22:17:01Z 338 50 2005-08-21T21:34:01Z 1 2020-02-15T06:59:46Z +14055 2005-08-20T22:18:00Z 1571 148 2005-08-22T02:09:00Z 2 2020-02-15T06:59:46Z +14056 2005-08-20T22:18:53Z 1300 22 2005-08-27T01:05:53Z 2 2020-02-15T06:59:46Z +14057 2005-08-20T22:22:59Z 1526 333 2005-08-25T16:58:59Z 2 2020-02-15T06:59:46Z +14058 2005-08-20T22:24:35Z 178 430 2005-08-30T02:26:35Z 1 2020-02-15T06:59:46Z +14059 2005-08-20T22:24:44Z 2045 141 2005-08-26T21:25:44Z 2 2020-02-15T06:59:46Z +14060 2006-02-14T15:16:03Z 3100 175 2 2020-02-15T06:59:46Z +14061 2005-08-20T22:32:11Z 73 53 2005-08-22T19:28:11Z 1 2020-02-15T06:59:46Z +14062 2005-08-20T22:34:34Z 2841 239 2005-08-25T17:11:34Z 2 2020-02-15T06:59:46Z +14063 2005-08-20T22:36:40Z 1215 275 2005-08-25T00:18:40Z 2 2020-02-15T06:59:46Z +14064 2005-08-20T22:39:16Z 2938 103 2005-08-22T00:45:16Z 2 2020-02-15T06:59:46Z +14065 2005-08-20T22:40:47Z 3758 190 2005-08-24T01:47:47Z 1 2020-02-15T06:59:46Z +14066 2005-08-20T22:45:58Z 2444 274 2005-08-29T00:23:58Z 2 2020-02-15T06:59:46Z +14067 2005-08-20T22:49:23Z 1376 259 2005-08-29T22:28:23Z 2 2020-02-15T06:59:46Z +14068 2005-08-20T22:50:59Z 818 412 2005-08-29T00:45:59Z 1 2020-02-15T06:59:46Z +14069 2005-08-20T22:51:25Z 2239 197 2005-08-30T00:30:25Z 2 2020-02-15T06:59:46Z +14070 2005-08-20T22:56:34Z 846 581 2005-08-29T22:02:34Z 1 2020-02-15T06:59:46Z +14071 2005-08-20T23:01:56Z 2471 550 2005-08-22T02:14:56Z 1 2020-02-15T06:59:46Z +14072 2005-08-20T23:07:10Z 2387 515 2005-08-23T03:38:10Z 2 2020-02-15T06:59:46Z +14073 2005-08-20T23:12:57Z 2996 230 2005-08-28T18:47:57Z 2 2020-02-15T06:59:46Z +14074 2005-08-20T23:16:07Z 1303 506 2005-08-26T04:45:07Z 1 2020-02-15T06:59:46Z +14075 2005-08-20T23:18:54Z 3793 32 2005-08-26T21:59:54Z 2 2020-02-15T06:59:46Z +14076 2005-08-20T23:20:10Z 1070 574 2005-08-24T04:00:10Z 1 2020-02-15T06:59:46Z +14077 2005-08-20T23:24:07Z 3184 21 2005-08-29T02:53:07Z 1 2020-02-15T06:59:46Z +14078 2005-08-20T23:26:40Z 1642 396 2005-08-28T02:30:40Z 1 2020-02-15T06:59:46Z +14079 2005-08-20T23:29:25Z 3528 348 2005-08-25T04:16:25Z 2 2020-02-15T06:59:46Z +14080 2005-08-20T23:29:50Z 3962 266 2005-08-26T00:33:50Z 1 2020-02-15T06:59:46Z +14081 2005-08-20T23:35:13Z 589 392 2005-08-28T01:41:13Z 2 2020-02-15T06:59:46Z +14082 2005-08-20T23:42:00Z 3767 179 2005-08-27T00:59:00Z 1 2020-02-15T06:59:46Z +14083 2005-08-20T23:42:31Z 1823 176 2005-08-28T21:44:31Z 1 2020-02-15T06:59:46Z +14084 2005-08-20T23:42:46Z 900 37 2005-08-24T20:06:46Z 1 2020-02-15T06:59:46Z +14085 2005-08-20T23:46:24Z 3506 471 2005-08-29T02:31:24Z 2 2020-02-15T06:59:46Z +14086 2005-08-20T23:47:54Z 3244 253 2005-08-27T22:49:54Z 1 2020-02-15T06:59:46Z +14087 2005-08-20T23:53:40Z 2368 289 2005-08-26T20:22:40Z 1 2020-02-15T06:59:46Z +14088 2005-08-20T23:57:24Z 1184 518 2005-08-28T21:49:24Z 1 2020-02-15T06:59:46Z +14089 2005-08-20T23:59:02Z 1400 425 2005-08-27T00:19:02Z 1 2020-02-15T06:59:46Z +14090 2005-08-21T00:11:16Z 3254 168 2005-08-23T19:48:16Z 2 2020-02-15T06:59:46Z +14091 2005-08-21T00:11:17Z 3304 53 2005-08-27T18:38:17Z 1 2020-02-15T06:59:46Z +14092 2005-08-21T00:14:32Z 1596 273 2005-08-24T22:22:32Z 2 2020-02-15T06:59:46Z +14093 2005-08-21T00:21:29Z 1176 177 2005-08-22T04:01:29Z 1 2020-02-15T06:59:46Z +14094 2005-08-21T00:21:35Z 3674 471 2005-08-23T05:27:35Z 2 2020-02-15T06:59:46Z +14095 2005-08-21T00:25:45Z 1550 489 2005-08-28T23:00:45Z 1 2020-02-15T06:59:46Z +14096 2005-08-21T00:27:46Z 2089 342 2005-08-22T22:53:46Z 1 2020-02-15T06:59:46Z +14097 2005-08-21T00:28:48Z 4351 88 2005-08-29T22:15:48Z 1 2020-02-15T06:59:46Z +14098 2005-08-21T00:30:32Z 6 554 2 2020-02-15T06:59:46Z +14099 2005-08-21T00:31:03Z 2452 224 2005-08-27T03:18:03Z 2 2020-02-15T06:59:46Z +14100 2005-08-21T00:31:07Z 4295 397 2005-08-25T05:31:07Z 2 2020-02-15T06:59:46Z +14101 2005-08-21T00:33:03Z 1892 19 2005-08-24T01:59:03Z 1 2020-02-15T06:59:46Z +14102 2005-08-21T00:35:21Z 3772 584 2005-08-30T04:51:21Z 2 2020-02-15T06:59:46Z +14103 2005-08-21T00:37:00Z 1438 409 2005-08-25T22:09:00Z 2 2020-02-15T06:59:46Z +14104 2005-08-21T00:37:44Z 912 178 2005-08-21T22:55:44Z 2 2020-02-15T06:59:46Z +14105 2005-08-21T00:44:34Z 1111 71 2005-08-29T19:00:34Z 1 2020-02-15T06:59:46Z +14106 2005-08-21T00:46:01Z 2673 315 2005-08-27T23:44:01Z 1 2020-02-15T06:59:46Z +14107 2006-02-14T15:16:03Z 3998 251 1 2020-02-15T06:59:46Z +14108 2005-08-21T00:52:45Z 4339 243 2005-08-21T19:35:45Z 2 2020-02-15T06:59:46Z +14109 2005-08-21T00:52:58Z 1046 180 2005-08-22T00:09:58Z 2 2020-02-15T06:59:46Z +14110 2005-08-21T00:53:09Z 2709 35 2005-08-24T05:33:09Z 2 2020-02-15T06:59:46Z +14111 2005-08-21T00:59:01Z 1294 130 2005-08-22T20:43:01Z 2 2020-02-15T06:59:46Z +14112 2005-08-21T01:00:46Z 734 141 2005-08-27T03:46:46Z 1 2020-02-15T06:59:46Z +14113 2005-08-21T01:03:30Z 931 288 2005-08-23T06:46:30Z 2 2020-02-15T06:59:46Z +14114 2005-08-21T01:07:11Z 2270 8 2005-08-24T20:33:11Z 1 2020-02-15T06:59:46Z +14115 2005-08-21T01:10:29Z 1945 257 2005-08-24T01:21:29Z 1 2020-02-15T06:59:46Z +14116 2005-08-21T01:11:17Z 2356 142 2005-08-24T23:45:17Z 2 2020-02-15T06:59:46Z +14117 2005-08-21T01:11:59Z 573 493 2005-08-22T06:56:59Z 1 2020-02-15T06:59:46Z +14118 2005-08-21T01:13:37Z 2605 337 2005-08-28T02:35:37Z 2 2020-02-15T06:59:46Z +14119 2005-08-21T01:15:59Z 129 53 2005-08-27T23:36:59Z 2 2020-02-15T06:59:46Z +14120 2005-08-21T01:25:00Z 4069 302 2005-08-24T23:21:00Z 2 2020-02-15T06:59:46Z +14121 2005-08-21T01:26:33Z 4207 417 2005-08-28T22:47:33Z 2 2020-02-15T06:59:46Z +14122 2005-08-21T01:29:01Z 3955 86 2005-08-27T05:31:01Z 1 2020-02-15T06:59:46Z +14123 2005-08-21T01:31:25Z 143 66 2005-08-23T02:32:25Z 1 2020-02-15T06:59:46Z +14124 2005-08-21T01:31:51Z 311 35 2005-08-24T22:20:51Z 2 2020-02-15T06:59:46Z +14125 2005-08-21T01:32:16Z 2174 265 2005-08-26T00:09:16Z 1 2020-02-15T06:59:46Z +14126 2005-08-21T01:32:17Z 2738 215 2005-08-23T01:02:17Z 1 2020-02-15T06:59:46Z +14127 2005-08-21T01:33:32Z 4532 550 2005-08-22T02:47:32Z 2 2020-02-15T06:59:46Z +14128 2005-08-21T01:35:58Z 2594 81 2005-08-21T21:23:58Z 2 2020-02-15T06:59:46Z +14129 2005-08-21T01:42:15Z 3572 362 2005-08-23T20:04:15Z 2 2020-02-15T06:59:46Z +14130 2005-08-21T01:43:11Z 3859 352 2005-08-27T21:16:11Z 2 2020-02-15T06:59:46Z +14131 2005-08-21T01:43:40Z 4382 267 2005-08-29T02:00:40Z 2 2020-02-15T06:59:46Z +14132 2005-08-21T01:43:58Z 3806 91 2005-08-26T20:16:58Z 2 2020-02-15T06:59:46Z +14133 2005-08-21T01:44:14Z 2463 453 2005-08-30T02:19:14Z 2 2020-02-15T06:59:46Z +14134 2005-08-21T01:45:54Z 2159 497 2005-08-24T01:36:54Z 1 2020-02-15T06:59:46Z +14135 2005-08-21T01:53:54Z 347 59 2005-08-27T05:57:54Z 1 2020-02-15T06:59:46Z +14136 2005-08-21T01:57:26Z 268 135 2005-08-28T01:11:26Z 1 2020-02-15T06:59:46Z +14137 2006-02-14T15:16:03Z 2346 53 2 2020-02-15T06:59:46Z +14138 2005-08-21T01:59:37Z 1238 121 2005-08-30T01:17:37Z 2 2020-02-15T06:59:46Z +14139 2005-08-21T02:04:33Z 2280 561 2005-08-22T04:16:33Z 2 2020-02-15T06:59:46Z +14140 2005-08-21T02:04:57Z 2070 65 2005-08-29T06:41:57Z 2 2020-02-15T06:59:46Z +14141 2005-08-21T02:07:22Z 4527 190 2005-08-30T07:32:22Z 1 2020-02-15T06:59:46Z +14142 2005-08-21T02:07:43Z 1479 544 2005-08-23T02:37:43Z 2 2020-02-15T06:59:46Z +14143 2005-08-21T02:10:32Z 2549 146 2005-08-23T23:50:32Z 1 2020-02-15T06:59:46Z +14144 2005-08-21T02:10:57Z 2366 46 2005-08-28T01:02:57Z 1 2020-02-15T06:59:46Z +14145 2005-08-21T02:11:38Z 150 314 2005-08-22T22:19:38Z 2 2020-02-15T06:59:46Z +14146 2005-08-21T02:13:31Z 2151 192 2005-08-24T22:47:31Z 2 2020-02-15T06:59:46Z +14147 2005-08-21T02:14:03Z 1476 366 2005-08-27T22:38:03Z 1 2020-02-15T06:59:46Z +14148 2005-08-21T02:17:49Z 1605 528 2005-08-22T00:12:49Z 1 2020-02-15T06:59:46Z +14149 2005-08-21T02:22:47Z 3371 518 2005-08-24T02:36:47Z 1 2020-02-15T06:59:46Z +14150 2005-08-21T02:23:03Z 2324 161 2005-08-25T22:50:03Z 2 2020-02-15T06:59:46Z +14151 2005-08-21T02:23:25Z 2785 426 2005-08-30T07:08:25Z 1 2020-02-15T06:59:46Z +14152 2005-08-21T02:23:50Z 2561 379 2005-08-25T06:05:50Z 1 2020-02-15T06:59:46Z +14153 2005-08-21T02:24:33Z 1502 120 2005-08-27T05:28:33Z 2 2020-02-15T06:59:46Z +14154 2005-08-21T02:30:00Z 951 468 2005-08-28T01:41:00Z 2 2020-02-15T06:59:46Z +14155 2005-08-21T02:31:35Z 769 148 2005-08-27T06:00:35Z 2 2020-02-15T06:59:46Z +14156 2005-08-21T02:35:16Z 437 147 2005-08-27T01:32:16Z 2 2020-02-15T06:59:46Z +14157 2005-08-21T02:43:15Z 4471 128 2005-08-24T02:47:15Z 1 2020-02-15T06:59:46Z +14158 2005-08-21T02:43:20Z 474 114 2005-08-28T02:19:20Z 1 2020-02-15T06:59:46Z +14159 2005-08-21T02:45:58Z 3231 144 2005-08-27T04:53:58Z 1 2020-02-15T06:59:46Z +14160 2006-02-14T15:16:03Z 2428 493 2 2020-02-15T06:59:46Z +14161 2005-08-21T02:51:59Z 2744 21 2005-08-28T21:38:59Z 2 2020-02-15T06:59:46Z +14162 2005-08-21T02:55:34Z 3788 315 2005-08-27T00:13:34Z 1 2020-02-15T06:59:46Z +14163 2005-08-21T02:56:52Z 1007 204 2005-08-21T21:03:52Z 2 2020-02-15T06:59:46Z +14164 2005-08-21T02:58:02Z 2381 274 2005-08-29T23:17:02Z 2 2020-02-15T06:59:46Z +14165 2005-08-21T02:59:17Z 4151 150 2005-08-24T23:09:17Z 2 2020-02-15T06:59:46Z +14166 2005-08-21T02:59:31Z 2457 190 2005-08-24T23:19:31Z 2 2020-02-15T06:59:46Z +14167 2005-08-21T02:59:48Z 1005 64 2005-08-29T22:17:48Z 1 2020-02-15T06:59:46Z +14168 2005-08-21T03:00:03Z 1321 49 2005-08-29T06:04:03Z 2 2020-02-15T06:59:46Z +14169 2005-08-21T03:00:31Z 3800 396 2005-08-30T01:16:31Z 1 2020-02-15T06:59:46Z +14170 2005-08-21T03:00:39Z 894 259 2005-08-27T23:07:39Z 1 2020-02-15T06:59:46Z +14171 2005-08-21T03:00:42Z 4179 320 2005-08-24T00:54:42Z 1 2020-02-15T06:59:46Z +14172 2006-02-14T15:16:03Z 2158 450 2 2020-02-15T06:59:46Z +14173 2005-08-21T03:01:01Z 3175 152 2005-08-22T02:40:01Z 1 2020-02-15T06:59:46Z +14174 2005-08-21T03:01:45Z 1862 29 2005-08-22T07:19:45Z 2 2020-02-15T06:59:46Z +14175 2006-02-14T15:16:03Z 2021 452 1 2020-02-15T06:59:46Z +14176 2005-08-21T03:09:23Z 4420 556 2005-08-26T21:26:23Z 1 2020-02-15T06:59:46Z +14177 2005-08-21T03:11:33Z 409 121 2005-08-28T21:41:33Z 2 2020-02-15T06:59:46Z +14178 2005-08-21T03:13:45Z 2178 524 2005-08-22T01:50:45Z 1 2020-02-15T06:59:46Z +14179 2005-08-21T03:14:27Z 3956 79 2005-08-26T00:46:27Z 2 2020-02-15T06:59:46Z +14180 2005-08-21T03:16:15Z 796 262 2005-08-24T22:31:15Z 2 2020-02-15T06:59:46Z +14181 2005-08-21T03:16:30Z 197 210 2005-08-29T06:25:30Z 2 2020-02-15T06:59:46Z +14182 2005-08-21T03:17:10Z 2422 519 2005-08-24T21:46:10Z 1 2020-02-15T06:59:46Z +14183 2005-08-21T03:24:29Z 1888 26 2005-08-22T07:25:29Z 2 2020-02-15T06:59:46Z +14184 2005-08-21T03:24:50Z 3759 148 2005-08-29T01:46:50Z 2 2020-02-15T06:59:46Z +14185 2005-08-21T03:28:37Z 3957 579 2005-08-26T01:15:37Z 1 2020-02-15T06:59:46Z +14186 2005-08-21T03:31:07Z 3158 461 2005-08-28T07:29:07Z 2 2020-02-15T06:59:46Z +14187 2005-08-21T03:32:03Z 4031 275 2005-08-25T03:29:03Z 2 2020-02-15T06:59:46Z +14188 2005-08-21T03:32:04Z 4492 548 2005-08-22T07:26:04Z 1 2020-02-15T06:59:46Z +14189 2005-08-21T03:32:17Z 2209 127 2005-08-22T04:46:17Z 2 2020-02-15T06:59:46Z +14190 2005-08-21T03:35:21Z 4203 517 2005-08-29T07:35:21Z 2 2020-02-15T06:59:46Z +14191 2005-08-21T03:35:58Z 301 423 2005-08-28T00:28:58Z 1 2020-02-15T06:59:46Z +14192 2005-08-21T03:37:42Z 3563 26 2005-08-28T05:31:42Z 2 2020-02-15T06:59:46Z +14193 2005-08-21T03:38:27Z 513 25 2005-08-28T09:16:27Z 1 2020-02-15T06:59:46Z +14194 2005-08-21T03:40:11Z 2003 138 2005-08-26T07:38:11Z 1 2020-02-15T06:59:46Z +14195 2005-08-21T03:40:35Z 3732 93 2005-08-23T01:22:35Z 1 2020-02-15T06:59:46Z +14196 2005-08-21T03:40:40Z 4477 281 2005-08-25T05:55:40Z 1 2020-02-15T06:59:46Z +14197 2005-08-21T03:47:25Z 340 469 2005-08-30T09:15:25Z 2 2020-02-15T06:59:46Z +14198 2005-08-21T03:48:31Z 465 381 2005-08-24T07:10:31Z 2 2020-02-15T06:59:46Z +14199 2005-08-21T03:48:43Z 658 442 2005-08-23T04:01:43Z 1 2020-02-15T06:59:46Z +14200 2005-08-21T03:51:27Z 2339 349 2005-08-29T22:00:27Z 1 2020-02-15T06:59:46Z +14201 2005-08-21T03:51:34Z 314 427 2005-08-30T03:42:34Z 2 2020-02-15T06:59:46Z +14202 2005-08-21T03:51:52Z 1995 473 2005-08-22T09:35:52Z 1 2020-02-15T06:59:46Z +14203 2005-08-21T03:51:52Z 3668 95 2005-08-24T06:13:52Z 2 2020-02-15T06:59:46Z +14204 2006-02-14T15:16:03Z 4334 287 1 2020-02-15T06:59:46Z +14205 2005-08-21T03:57:15Z 315 406 2005-08-30T08:46:15Z 2 2020-02-15T06:59:46Z +14206 2005-08-21T03:59:26Z 860 279 2005-08-26T03:52:26Z 1 2020-02-15T06:59:46Z +14207 2005-08-21T04:08:19Z 1327 569 2005-08-29T07:59:19Z 2 2020-02-15T06:59:46Z +14208 2005-08-21T04:09:18Z 4180 299 2005-08-22T03:29:18Z 1 2020-02-15T06:59:46Z +14209 2005-08-21T04:17:56Z 896 472 2005-08-27T06:57:56Z 1 2020-02-15T06:59:46Z +14210 2005-08-21T04:28:02Z 1867 468 2005-08-24T02:14:02Z 2 2020-02-15T06:59:46Z +14211 2005-08-21T04:29:11Z 300 372 2005-08-24T02:50:11Z 2 2020-02-15T06:59:46Z +14212 2005-08-21T04:29:26Z 4540 354 2005-08-24T00:46:26Z 2 2020-02-15T06:59:46Z +14213 2005-08-21T04:30:47Z 382 511 2005-08-24T23:01:47Z 1 2020-02-15T06:59:46Z +14214 2005-08-21T04:30:49Z 4510 198 2005-08-26T04:42:49Z 1 2020-02-15T06:59:46Z +14215 2005-08-21T04:34:11Z 35 54 2005-08-27T10:30:11Z 2 2020-02-15T06:59:46Z +14216 2006-02-14T15:16:03Z 3763 186 1 2020-02-15T06:59:46Z +14217 2005-08-21T04:37:56Z 2847 66 2005-08-26T03:55:56Z 2 2020-02-15T06:59:46Z +14218 2005-08-21T04:43:59Z 4087 104 2005-08-27T10:29:59Z 1 2020-02-15T06:59:46Z +14219 2006-02-14T15:16:03Z 3718 334 2 2020-02-15T06:59:46Z +14220 2006-02-14T15:16:03Z 2618 162 1 2020-02-15T06:59:46Z +14221 2005-08-21T04:49:41Z 3824 51 2005-08-29T23:52:41Z 1 2020-02-15T06:59:46Z +14222 2005-08-21T04:49:48Z 714 7 2005-08-25T05:34:48Z 2 2020-02-15T06:59:46Z +14223 2005-08-21T04:51:51Z 514 392 2005-08-29T00:37:51Z 1 2020-02-15T06:59:46Z +14224 2005-08-21T04:53:08Z 3634 323 2005-08-27T04:12:08Z 2 2020-02-15T06:59:46Z +14225 2005-08-21T04:53:37Z 984 4 2005-08-25T23:39:37Z 2 2020-02-15T06:59:46Z +14226 2005-08-21T04:55:37Z 1793 316 2005-08-24T04:32:37Z 1 2020-02-15T06:59:46Z +14227 2005-08-21T04:56:31Z 4102 277 2005-08-22T05:04:31Z 2 2020-02-15T06:59:46Z +14228 2005-08-21T04:57:08Z 2016 71 2005-08-25T00:06:08Z 2 2020-02-15T06:59:46Z +14229 2005-08-21T04:57:15Z 4479 186 2005-08-26T10:00:15Z 1 2020-02-15T06:59:46Z +14230 2005-08-21T04:57:29Z 844 584 2005-08-27T08:14:29Z 2 2020-02-15T06:59:46Z +14231 2005-08-21T05:04:34Z 1244 307 2005-08-23T04:58:34Z 1 2020-02-15T06:59:46Z +14232 2005-08-21T05:07:02Z 2710 176 2005-08-29T06:57:02Z 1 2020-02-15T06:59:46Z +14233 2005-08-21T05:07:08Z 2943 599 2005-08-28T03:20:08Z 1 2020-02-15T06:59:46Z +14234 2005-08-21T05:07:12Z 1439 271 2005-08-23T06:44:12Z 2 2020-02-15T06:59:46Z +14235 2005-08-21T05:08:42Z 125 558 2005-08-29T23:36:42Z 1 2020-02-15T06:59:46Z +14236 2005-08-21T05:13:16Z 172 25 2005-08-26T04:03:16Z 2 2020-02-15T06:59:46Z +14237 2005-08-21T05:15:00Z 3284 410 2005-08-25T10:06:00Z 1 2020-02-15T06:59:46Z +14238 2005-08-21T05:16:40Z 3148 192 2005-08-30T02:13:40Z 2 2020-02-15T06:59:46Z +14239 2005-08-21T05:18:57Z 1559 416 2005-08-22T00:12:57Z 2 2020-02-15T06:59:46Z +14240 2005-08-21T05:19:39Z 3294 12 2005-08-22T23:25:39Z 2 2020-02-15T06:59:46Z +14241 2005-08-21T05:24:55Z 2547 291 2005-08-30T03:33:55Z 1 2020-02-15T06:59:46Z +14242 2005-08-21T05:25:59Z 1588 68 2005-08-27T07:22:59Z 1 2020-02-15T06:59:46Z +14243 2006-02-14T15:16:03Z 1489 264 1 2020-02-15T06:59:46Z +14244 2005-08-21T05:29:55Z 1150 43 2005-08-24T01:06:55Z 1 2020-02-15T06:59:46Z +14245 2005-08-21T05:30:54Z 975 354 2005-08-26T07:02:54Z 1 2020-02-15T06:59:46Z +14246 2005-08-21T05:34:09Z 3499 120 2005-08-26T06:12:09Z 1 2020-02-15T06:59:46Z +14247 2005-08-21T05:35:17Z 267 302 2005-08-26T03:22:17Z 1 2020-02-15T06:59:46Z +14248 2005-08-21T05:35:57Z 725 293 2005-08-28T05:53:57Z 2 2020-02-15T06:59:46Z +14249 2005-08-21T05:38:05Z 695 268 2005-08-28T09:07:05Z 2 2020-02-15T06:59:46Z +14250 2005-08-21T05:39:35Z 3008 313 2005-08-28T10:06:35Z 2 2020-02-15T06:59:46Z +14251 2005-08-21T05:42:20Z 139 486 2005-08-26T06:20:20Z 2 2020-02-15T06:59:46Z +14252 2005-08-21T05:44:07Z 2660 13 2005-08-29T08:53:07Z 1 2020-02-15T06:59:46Z +14253 2005-08-21T05:47:52Z 4246 456 2005-08-25T04:28:52Z 1 2020-02-15T06:59:46Z +14254 2005-08-21T05:51:28Z 1549 589 2005-08-29T06:05:28Z 2 2020-02-15T06:59:46Z +14255 2005-08-21T05:51:37Z 3125 492 2005-08-29T10:00:37Z 1 2020-02-15T06:59:46Z +14256 2005-08-21T05:52:27Z 2922 331 2005-08-29T02:10:27Z 2 2020-02-15T06:59:46Z +14257 2005-08-21T05:52:57Z 3830 178 2005-08-29T03:18:57Z 2 2020-02-15T06:59:46Z +14258 2005-08-21T05:56:36Z 752 359 2005-08-26T06:14:36Z 1 2020-02-15T06:59:46Z +14259 2005-08-21T06:00:22Z 3705 583 2005-08-22T05:38:22Z 2 2020-02-15T06:59:46Z +14260 2005-08-21T06:01:08Z 2961 40 2005-08-29T09:01:08Z 2 2020-02-15T06:59:46Z +14261 2005-08-21T06:07:24Z 1426 166 2005-08-26T09:57:24Z 1 2020-02-15T06:59:46Z +14262 2005-08-21T06:08:13Z 1430 324 2005-08-30T10:55:13Z 1 2020-02-15T06:59:46Z +14263 2005-08-21T06:08:15Z 2595 533 2005-08-29T09:22:15Z 2 2020-02-15T06:59:46Z +14264 2005-08-21T06:18:22Z 3426 295 2005-08-25T08:08:22Z 1 2020-02-15T06:59:46Z +14265 2005-08-21T06:20:14Z 3116 134 2005-08-23T09:05:14Z 1 2020-02-15T06:59:46Z +14266 2005-08-21T06:20:51Z 3543 269 2005-08-23T00:44:51Z 1 2020-02-15T06:59:46Z +14267 2006-02-14T15:16:03Z 2199 527 2 2020-02-15T06:59:46Z +14268 2005-08-21T06:21:24Z 2442 278 2005-08-23T05:39:24Z 2 2020-02-15T06:59:46Z +14269 2005-08-21T06:22:07Z 531 241 2005-08-30T00:41:07Z 2 2020-02-15T06:59:46Z +14270 2005-08-21T06:22:18Z 4083 171 2005-08-27T08:04:18Z 1 2020-02-15T06:59:46Z +14271 2005-08-21T06:23:29Z 4506 224 2005-08-27T04:49:29Z 1 2020-02-15T06:59:46Z +14272 2005-08-21T06:24:55Z 3908 243 2005-08-28T02:25:55Z 1 2020-02-15T06:59:46Z +14273 2005-08-21T06:26:48Z 2640 388 2005-08-30T10:34:48Z 1 2020-02-15T06:59:46Z +14274 2005-08-21T06:29:20Z 3183 405 2005-08-26T06:25:20Z 2 2020-02-15T06:59:46Z +14275 2005-08-21T06:30:30Z 3238 163 2005-08-25T12:28:30Z 1 2020-02-15T06:59:46Z +14276 2005-08-21T06:34:05Z 3637 318 2005-08-28T10:13:05Z 2 2020-02-15T06:59:46Z +14277 2005-08-21T06:34:41Z 2652 566 2005-08-28T10:53:41Z 2 2020-02-15T06:59:46Z +14278 2006-02-14T15:16:03Z 2334 557 2 2020-02-15T06:59:46Z +14279 2005-08-21T06:39:08Z 3325 387 2005-08-29T11:01:08Z 2 2020-02-15T06:59:46Z +14280 2005-08-21T06:39:58Z 1561 481 2005-08-23T04:50:58Z 1 2020-02-15T06:59:46Z +14281 2005-08-21T06:40:48Z 1848 166 2005-08-26T11:42:48Z 2 2020-02-15T06:59:46Z +14282 2005-08-21T06:41:29Z 3107 450 2005-08-22T12:37:29Z 1 2020-02-15T06:59:46Z +14283 2005-08-21T06:44:14Z 3052 253 2005-08-24T01:01:14Z 1 2020-02-15T06:59:46Z +14284 2005-08-21T06:44:37Z 633 486 2005-08-28T05:03:37Z 1 2020-02-15T06:59:46Z +14285 2005-08-21T06:50:48Z 402 249 2005-08-28T11:35:48Z 1 2020-02-15T06:59:46Z +14286 2005-08-21T06:53:53Z 2377 558 2005-08-27T11:37:53Z 2 2020-02-15T06:59:46Z +14287 2005-08-21T06:53:59Z 2426 427 2005-08-25T03:10:59Z 2 2020-02-15T06:59:46Z +14288 2005-08-21T06:57:34Z 587 512 2005-08-26T11:32:34Z 1 2020-02-15T06:59:46Z +14289 2005-08-21T06:58:49Z 1185 103 2005-08-25T11:29:49Z 2 2020-02-15T06:59:46Z +14290 2005-08-21T07:02:59Z 790 366 2005-08-28T02:57:59Z 1 2020-02-15T06:59:46Z +14291 2005-08-21T07:03:05Z 3988 56 2005-08-26T12:56:05Z 2 2020-02-15T06:59:46Z +14292 2005-08-21T07:06:20Z 1959 251 2005-08-22T01:39:20Z 2 2020-02-15T06:59:46Z +14293 2005-08-21T07:06:47Z 3555 364 2005-08-22T05:07:47Z 2 2020-02-15T06:59:46Z +14294 2005-08-21T07:07:26Z 354 455 2005-08-22T02:20:26Z 2 2020-02-15T06:59:46Z +14295 2005-08-21T07:09:27Z 2187 336 2005-08-22T01:27:27Z 2 2020-02-15T06:59:46Z +14296 2005-08-21T07:13:23Z 3813 275 2005-08-26T11:14:23Z 1 2020-02-15T06:59:46Z +14297 2005-08-21T07:13:46Z 1712 566 2005-08-25T09:07:46Z 1 2020-02-15T06:59:46Z +14298 2005-08-21T07:17:10Z 4317 410 2005-08-25T10:10:10Z 1 2020-02-15T06:59:46Z +14299 2005-08-21T07:18:57Z 4028 342 2005-08-24T01:28:57Z 1 2020-02-15T06:59:46Z +14300 2005-08-21T07:19:37Z 690 382 2005-08-25T12:06:37Z 2 2020-02-15T06:59:46Z +14301 2005-08-21T07:19:48Z 283 162 2005-08-28T02:06:48Z 1 2020-02-15T06:59:46Z +14302 2005-08-21T07:19:57Z 1287 511 2005-08-28T02:59:57Z 1 2020-02-15T06:59:46Z +14303 2005-08-21T07:22:43Z 992 475 2005-08-24T11:52:43Z 1 2020-02-15T06:59:46Z +14304 2005-08-21T07:23:10Z 2650 417 2005-08-26T11:21:10Z 2 2020-02-15T06:59:46Z +14305 2005-08-21T07:29:05Z 2056 58 2005-08-27T08:18:05Z 1 2020-02-15T06:59:46Z +14306 2005-08-21T07:32:35Z 4027 453 2005-08-30T05:53:35Z 1 2020-02-15T06:59:46Z +14307 2005-08-21T07:34:52Z 2894 328 2005-08-29T09:45:52Z 1 2020-02-15T06:59:46Z +14308 2005-08-21T07:43:21Z 3478 419 2005-08-25T02:39:21Z 2 2020-02-15T06:59:46Z +14309 2005-08-21T07:44:17Z 4447 468 2005-08-30T07:23:17Z 2 2020-02-15T06:59:46Z +14310 2005-08-21T07:44:32Z 95 177 2005-08-22T09:02:32Z 1 2020-02-15T06:59:46Z +14311 2005-08-21T07:45:47Z 1761 69 2005-08-27T02:23:47Z 2 2020-02-15T06:59:46Z +14312 2005-08-21T07:48:34Z 1090 238 2005-08-23T04:45:34Z 1 2020-02-15T06:59:46Z +14313 2005-08-21T07:49:53Z 3384 468 2005-08-30T05:52:53Z 2 2020-02-15T06:59:46Z +14314 2005-08-21T07:50:14Z 4115 178 2005-08-24T10:47:14Z 2 2020-02-15T06:59:46Z +14315 2005-08-21T07:56:39Z 1164 459 2005-08-27T04:52:39Z 1 2020-02-15T06:59:46Z +14316 2005-08-21T07:59:47Z 386 64 2005-08-23T02:20:47Z 2 2020-02-15T06:59:46Z +14317 2005-08-21T08:00:40Z 2090 471 2005-08-27T06:52:40Z 1 2020-02-15T06:59:46Z +14318 2006-02-14T15:16:03Z 1042 508 2 2020-02-15T06:59:46Z +14319 2005-08-21T08:00:55Z 4480 410 2005-08-26T05:04:55Z 1 2020-02-15T06:59:46Z +14320 2005-08-21T08:04:40Z 3121 199 2005-08-22T02:09:40Z 1 2020-02-15T06:59:46Z +14321 2005-08-21T08:05:12Z 967 236 2005-08-23T02:17:12Z 1 2020-02-15T06:59:46Z +14322 2005-08-21T08:06:30Z 2818 221 2005-08-29T10:12:30Z 2 2020-02-15T06:59:46Z +14323 2005-08-21T08:08:43Z 1257 97 2005-08-25T10:44:43Z 1 2020-02-15T06:59:46Z +14324 2005-08-21T08:10:56Z 1361 155 2005-08-30T12:09:56Z 1 2020-02-15T06:59:46Z +14325 2005-08-21T08:15:38Z 4432 313 2005-08-23T08:08:38Z 2 2020-02-15T06:59:46Z +14326 2005-08-21T08:15:41Z 1052 17 2005-08-27T05:22:41Z 1 2020-02-15T06:59:46Z +14327 2005-08-21T08:18:18Z 553 457 2005-08-30T02:21:18Z 2 2020-02-15T06:59:46Z +14328 2005-08-21T08:18:20Z 3194 489 2005-08-25T03:05:20Z 2 2020-02-15T06:59:46Z +14329 2005-08-21T08:22:56Z 3544 6 2005-08-28T02:22:56Z 2 2020-02-15T06:59:46Z +14330 2005-08-21T08:29:20Z 763 84 2005-08-30T03:59:20Z 2 2020-02-15T06:59:46Z +14331 2005-08-21T08:29:38Z 3128 372 2005-08-29T13:18:38Z 2 2020-02-15T06:59:46Z +14332 2005-08-21T08:30:43Z 1388 496 2005-08-29T10:51:43Z 1 2020-02-15T06:59:46Z +14333 2005-08-21T08:31:03Z 2976 93 2005-08-28T03:39:03Z 2 2020-02-15T06:59:46Z +14334 2005-08-21T08:32:32Z 1448 595 2005-08-25T02:53:32Z 2 2020-02-15T06:59:46Z +14335 2005-08-21T08:33:07Z 2610 263 2005-08-26T14:16:07Z 1 2020-02-15T06:59:46Z +14336 2005-08-21T08:33:42Z 3166 362 2005-08-23T03:27:42Z 1 2020-02-15T06:59:46Z +14337 2005-08-21T08:34:26Z 3529 506 2005-08-24T11:31:26Z 1 2020-02-15T06:59:46Z +14338 2005-08-21T08:36:03Z 1789 205 2005-08-24T12:31:03Z 2 2020-02-15T06:59:46Z +14339 2005-08-21T08:37:15Z 1744 30 2005-08-26T03:37:15Z 2 2020-02-15T06:59:46Z +14340 2005-08-21T08:38:21Z 2181 230 2005-08-25T09:25:21Z 1 2020-02-15T06:59:46Z +14341 2005-08-21T08:38:24Z 4498 560 2005-08-26T12:36:24Z 1 2020-02-15T06:59:46Z +14342 2005-08-21T08:39:26Z 2749 559 2005-08-23T11:40:26Z 2 2020-02-15T06:59:46Z +14343 2005-08-21T08:40:21Z 3769 238 2005-08-29T03:06:21Z 1 2020-02-15T06:59:46Z +14344 2005-08-21T08:40:56Z 1562 341 2005-08-27T12:40:56Z 1 2020-02-15T06:59:46Z +14345 2005-08-21T08:41:15Z 1726 598 2005-08-24T11:59:15Z 1 2020-02-15T06:59:46Z +14346 2005-08-21T08:42:26Z 109 17 2005-08-23T09:18:26Z 2 2020-02-15T06:59:46Z +14347 2005-08-21T08:42:31Z 3862 214 2005-08-25T07:11:31Z 2 2020-02-15T06:59:46Z +14348 2005-08-21T08:54:26Z 885 496 2005-08-24T02:55:26Z 2 2020-02-15T06:59:46Z +14349 2005-08-21T08:54:53Z 96 119 2005-08-30T14:27:53Z 1 2020-02-15T06:59:46Z +14350 2005-08-21T08:58:38Z 3174 222 2005-08-30T03:29:38Z 2 2020-02-15T06:59:46Z +14351 2005-08-21T09:04:20Z 2037 66 2005-08-25T05:27:20Z 1 2020-02-15T06:59:46Z +14352 2005-08-21T09:06:29Z 1224 527 2005-08-28T13:36:29Z 1 2020-02-15T06:59:46Z +14353 2005-08-21T09:07:50Z 1612 129 2005-08-22T10:31:50Z 2 2020-02-15T06:59:46Z +14354 2005-08-21T09:08:14Z 1137 382 2005-08-30T05:27:14Z 1 2020-02-15T06:59:46Z +14355 2005-08-21T09:08:29Z 649 271 2005-08-27T10:08:29Z 2 2020-02-15T06:59:46Z +14356 2005-08-21T09:08:51Z 3169 65 2005-08-24T04:36:51Z 2 2020-02-15T06:59:46Z +14357 2005-08-21T09:13:09Z 2906 233 2005-08-22T05:41:09Z 2 2020-02-15T06:59:46Z +14358 2005-08-21T09:14:28Z 861 112 2005-08-24T05:05:28Z 1 2020-02-15T06:59:46Z +14359 2005-08-21T09:16:19Z 1841 401 2005-08-22T09:28:19Z 1 2020-02-15T06:59:46Z +14360 2005-08-21T09:16:40Z 2677 246 2005-08-29T11:43:40Z 2 2020-02-15T06:59:46Z +14361 2006-02-14T15:16:03Z 1231 191 2 2020-02-15T06:59:46Z +14362 2005-08-21T09:19:49Z 1992 312 2005-08-26T11:06:49Z 1 2020-02-15T06:59:46Z +14363 2005-08-21T09:20:03Z 2579 560 2005-08-23T14:26:03Z 1 2020-02-15T06:59:46Z +14364 2005-08-21T09:25:11Z 3513 236 2005-08-29T09:04:11Z 1 2020-02-15T06:59:46Z +14365 2005-08-21T09:25:13Z 618 457 2005-08-27T11:48:13Z 1 2020-02-15T06:59:46Z +14366 2005-08-21T09:31:39Z 4011 524 2005-08-26T11:55:39Z 2 2020-02-15T06:59:46Z +14367 2005-08-21T09:31:44Z 870 244 2005-08-26T03:54:44Z 2 2020-02-15T06:59:46Z +14368 2005-08-21T09:31:47Z 2063 351 2005-08-30T04:17:47Z 1 2020-02-15T06:59:46Z +14369 2005-08-21T09:33:44Z 1636 392 2005-08-25T08:56:44Z 1 2020-02-15T06:59:46Z +14370 2005-08-21T09:35:14Z 3520 161 2005-08-27T05:21:14Z 2 2020-02-15T06:59:46Z +14371 2005-08-21T09:37:16Z 2197 221 2005-08-27T13:50:16Z 2 2020-02-15T06:59:46Z +14372 2005-08-21T09:39:50Z 1953 520 2005-08-28T13:36:50Z 1 2020-02-15T06:59:46Z +14373 2005-08-21T09:44:53Z 4433 268 2005-08-25T15:37:53Z 1 2020-02-15T06:59:46Z +14374 2006-02-14T15:16:03Z 236 213 2 2020-02-15T06:59:46Z +14375 2005-08-21T09:46:35Z 2507 550 2005-08-26T10:24:35Z 2 2020-02-15T06:59:46Z +14376 2005-08-21T09:48:56Z 1936 582 2005-08-22T12:15:56Z 2 2020-02-15T06:59:46Z +14377 2005-08-21T09:49:28Z 1325 6 2005-08-29T13:34:28Z 1 2020-02-15T06:59:46Z +14378 2005-08-21T09:50:02Z 810 515 2005-08-30T09:07:02Z 1 2020-02-15T06:59:46Z +14379 2005-08-21T09:53:03Z 3062 136 2005-08-24T14:32:03Z 1 2020-02-15T06:59:46Z +14380 2005-08-21T09:53:52Z 1523 198 2005-08-25T05:03:52Z 2 2020-02-15T06:59:46Z +14381 2005-08-21T09:55:47Z 811 391 2005-08-25T08:23:47Z 1 2020-02-15T06:59:46Z +14382 2005-08-21T10:01:03Z 4119 119 2005-08-22T13:21:03Z 2 2020-02-15T06:59:46Z +14383 2005-08-21T10:02:05Z 1941 482 2005-08-24T12:21:05Z 2 2020-02-15T06:59:46Z +14384 2005-08-21T10:02:37Z 2429 371 2005-08-26T08:20:37Z 1 2020-02-15T06:59:46Z +14385 2005-08-21T10:02:55Z 4356 317 2005-08-25T07:19:55Z 2 2020-02-15T06:59:46Z +14386 2005-08-21T10:06:34Z 3402 514 2005-08-25T14:19:34Z 1 2020-02-15T06:59:46Z +14387 2005-08-21T10:10:01Z 1286 295 2005-08-28T14:16:01Z 2 2020-02-15T06:59:46Z +14388 2005-08-21T10:15:13Z 1078 274 2005-08-30T13:41:13Z 2 2020-02-15T06:59:46Z +14389 2005-08-21T10:15:20Z 2718 145 2005-08-27T05:39:20Z 1 2020-02-15T06:59:46Z +14390 2005-08-21T10:15:38Z 3951 366 2005-08-28T05:50:38Z 2 2020-02-15T06:59:46Z +14391 2005-08-21T10:16:27Z 3117 205 2005-08-23T07:00:27Z 2 2020-02-15T06:59:46Z +14392 2005-08-21T10:19:25Z 847 586 2005-08-28T15:57:25Z 2 2020-02-15T06:59:46Z +14393 2005-08-21T10:22:51Z 3937 368 2005-08-29T08:28:51Z 1 2020-02-15T06:59:46Z +14394 2005-08-21T10:23:10Z 4555 118 2005-08-28T09:33:10Z 1 2020-02-15T06:59:46Z +14395 2005-08-21T10:24:00Z 632 506 2005-08-28T12:23:00Z 2 2020-02-15T06:59:46Z +14396 2005-08-21T10:24:54Z 3855 353 2005-08-22T04:49:54Z 2 2020-02-15T06:59:46Z +14397 2005-08-21T10:25:56Z 3883 47 2005-08-24T07:48:56Z 1 2020-02-15T06:59:46Z +14398 2005-08-21T10:27:21Z 357 505 2005-08-23T10:46:21Z 2 2020-02-15T06:59:46Z +14399 2005-08-21T10:33:23Z 3582 188 2005-08-27T08:00:23Z 1 2020-02-15T06:59:46Z +14400 2005-08-21T10:33:45Z 3891 569 2005-08-26T12:05:45Z 1 2020-02-15T06:59:46Z +14401 2005-08-21T10:36:20Z 3468 407 2005-08-30T06:45:20Z 1 2020-02-15T06:59:46Z +14402 2005-08-21T10:38:17Z 749 467 2005-08-27T08:36:17Z 2 2020-02-15T06:59:46Z +14403 2005-08-21T10:40:34Z 3581 297 2005-08-29T11:29:34Z 1 2020-02-15T06:59:46Z +14404 2005-08-21T10:43:04Z 3660 192 2005-08-30T10:00:04Z 1 2020-02-15T06:59:46Z +14405 2005-08-21T10:45:01Z 2777 470 2005-08-30T04:48:01Z 2 2020-02-15T06:59:46Z +14406 2005-08-21T10:46:35Z 2741 181 2005-08-28T15:55:35Z 1 2020-02-15T06:59:46Z +14407 2005-08-21T10:46:51Z 2403 500 2005-08-25T09:28:51Z 2 2020-02-15T06:59:46Z +14408 2005-08-21T10:47:24Z 222 593 2005-08-27T08:18:24Z 1 2020-02-15T06:59:46Z +14409 2005-08-21T10:53:35Z 1161 314 2005-08-25T10:40:35Z 2 2020-02-15T06:59:46Z +14410 2005-08-21T10:54:49Z 839 196 2005-08-26T08:28:49Z 2 2020-02-15T06:59:46Z +14411 2005-08-21T10:54:57Z 2125 502 2005-08-22T13:17:57Z 2 2020-02-15T06:59:46Z +14412 2005-08-21T11:02:09Z 212 121 2005-08-29T06:44:09Z 1 2020-02-15T06:59:46Z +14413 2005-08-21T11:06:33Z 50 367 2005-08-29T16:10:33Z 1 2020-02-15T06:59:46Z +14414 2005-08-21T11:08:17Z 1757 515 2005-08-23T08:37:17Z 2 2020-02-15T06:59:46Z +14415 2006-02-14T15:16:03Z 2670 561 2 2020-02-15T06:59:46Z +14416 2005-08-21T11:11:46Z 3002 384 2005-08-25T12:33:46Z 1 2020-02-15T06:59:46Z +14417 2005-08-21T11:13:35Z 1768 596 2005-08-25T11:27:35Z 1 2020-02-15T06:59:46Z +14418 2005-08-21T11:14:26Z 89 442 2005-08-28T08:34:26Z 2 2020-02-15T06:59:46Z +14419 2005-08-21T11:15:46Z 3146 221 2005-08-30T16:37:46Z 1 2020-02-15T06:59:46Z +14420 2005-08-21T11:16:15Z 2495 551 2005-08-24T06:06:15Z 2 2020-02-15T06:59:46Z +14421 2005-08-21T11:20:21Z 4402 406 2005-08-24T06:26:21Z 1 2020-02-15T06:59:46Z +14422 2005-08-21T11:21:46Z 1382 361 2005-08-25T13:15:46Z 1 2020-02-15T06:59:46Z +14423 2005-08-21T11:23:59Z 2873 521 2005-08-26T11:52:59Z 2 2020-02-15T06:59:46Z +14424 2005-08-21T11:24:11Z 2535 489 2005-08-29T13:13:11Z 2 2020-02-15T06:59:46Z +14425 2006-02-14T15:16:03Z 2752 560 2 2020-02-15T06:59:46Z +14426 2006-02-14T15:16:03Z 2902 315 1 2020-02-15T06:59:46Z +14427 2005-08-21T11:26:06Z 2353 163 2005-08-27T10:39:06Z 1 2020-02-15T06:59:46Z +14428 2005-08-21T11:27:07Z 1614 458 2005-08-29T09:50:07Z 1 2020-02-15T06:59:46Z +14429 2005-08-21T11:29:43Z 2513 66 2005-08-24T12:05:43Z 1 2020-02-15T06:59:46Z +14430 2005-08-21T11:31:11Z 2623 5 2005-08-26T06:29:11Z 1 2020-02-15T06:59:46Z +14431 2005-08-21T11:31:15Z 1572 106 2005-08-26T11:22:15Z 2 2020-02-15T06:59:46Z +14432 2005-08-21T11:36:15Z 2294 138 2005-08-24T08:02:15Z 2 2020-02-15T06:59:46Z +14433 2005-08-21T11:36:34Z 732 401 2005-08-26T08:51:34Z 1 2020-02-15T06:59:46Z +14434 2005-08-21T11:40:46Z 2085 549 2005-08-24T05:50:46Z 1 2020-02-15T06:59:46Z +14435 2005-08-21T11:44:37Z 2919 169 2005-08-24T08:04:37Z 1 2020-02-15T06:59:46Z +14436 2005-08-21T11:48:27Z 3473 560 2005-08-25T15:49:27Z 2 2020-02-15T06:59:46Z +14437 2005-08-21T11:48:32Z 1504 136 2005-08-25T11:06:32Z 2 2020-02-15T06:59:46Z +14438 2005-08-21T11:51:10Z 1621 392 2005-08-28T17:10:10Z 1 2020-02-15T06:59:46Z +14439 2005-08-21T11:52:41Z 3903 564 2005-08-30T10:36:41Z 1 2020-02-15T06:59:46Z +14440 2005-08-21T11:59:04Z 3495 194 2005-08-23T10:10:04Z 1 2020-02-15T06:59:46Z +14441 2005-08-21T11:59:38Z 1210 260 2005-08-26T11:17:38Z 2 2020-02-15T06:59:46Z +14442 2005-08-21T12:00:21Z 122 205 2005-08-23T17:00:21Z 2 2020-02-15T06:59:46Z +14443 2005-08-21T12:06:32Z 376 447 2005-08-29T13:44:32Z 2 2020-02-15T06:59:46Z +14444 2005-08-21T12:07:25Z 2211 225 2005-08-28T08:36:25Z 2 2020-02-15T06:59:46Z +14445 2005-08-21T12:07:42Z 3186 256 2005-08-22T17:51:42Z 2 2020-02-15T06:59:46Z +14446 2005-08-21T12:10:41Z 4367 21 2005-08-26T14:42:41Z 1 2020-02-15T06:59:46Z +14447 2005-08-21T12:12:05Z 1889 584 2005-08-27T14:47:05Z 2 2020-02-15T06:59:46Z +14448 2005-08-21T12:13:10Z 1937 263 2005-08-30T08:46:10Z 1 2020-02-15T06:59:46Z +14449 2005-08-21T12:13:18Z 653 529 2005-08-27T15:41:18Z 2 2020-02-15T06:59:46Z +14450 2005-08-21T12:21:25Z 1194 48 2005-08-26T14:35:25Z 2 2020-02-15T06:59:46Z +14451 2005-08-21T12:21:44Z 3967 467 2005-08-22T15:07:44Z 2 2020-02-15T06:59:46Z +14452 2005-08-21T12:23:20Z 4231 325 2005-08-27T06:26:20Z 1 2020-02-15T06:59:46Z +14453 2005-08-21T12:33:34Z 3312 237 2005-08-27T11:10:34Z 1 2020-02-15T06:59:46Z +14454 2005-08-21T12:35:49Z 2475 150 2005-08-22T16:28:49Z 2 2020-02-15T06:59:46Z +14455 2005-08-21T12:36:11Z 3442 68 2005-08-27T08:12:11Z 2 2020-02-15T06:59:46Z +14456 2005-08-21T12:38:09Z 2520 125 2005-08-26T08:29:09Z 1 2020-02-15T06:59:46Z +14457 2005-08-21T12:47:38Z 4288 340 2005-08-25T13:07:38Z 1 2020-02-15T06:59:46Z +14458 2005-08-21T12:47:53Z 1769 256 2005-08-30T17:09:53Z 2 2020-02-15T06:59:46Z +14459 2005-08-21T12:48:08Z 1532 98 2005-08-27T10:50:08Z 2 2020-02-15T06:59:46Z +14460 2005-08-21T12:48:48Z 4137 120 2005-08-30T16:34:48Z 2 2020-02-15T06:59:46Z +14461 2005-08-21T12:50:33Z 371 42 2005-08-30T13:35:33Z 1 2020-02-15T06:59:46Z +14462 2005-08-21T12:50:57Z 2201 96 2005-08-27T10:42:57Z 2 2020-02-15T06:59:46Z +14463 2005-08-21T12:51:49Z 1403 365 2005-08-29T12:17:49Z 1 2020-02-15T06:59:46Z +14464 2005-08-21T12:52:54Z 2310 121 2005-08-25T16:42:54Z 1 2020-02-15T06:59:46Z +14465 2005-08-21T12:54:22Z 4206 262 2005-08-28T10:46:22Z 2 2020-02-15T06:59:46Z +14466 2005-08-21T13:03:13Z 923 442 2005-08-22T15:19:13Z 2 2020-02-15T06:59:46Z +14467 2005-08-21T13:03:33Z 1498 522 2005-08-28T15:28:33Z 1 2020-02-15T06:59:46Z +14468 2005-08-21T13:07:10Z 4168 224 2005-08-30T19:05:10Z 2 2020-02-15T06:59:46Z +14469 2005-08-21T13:07:24Z 1957 554 2005-08-24T10:37:24Z 1 2020-02-15T06:59:46Z +14470 2005-08-21T13:09:41Z 3899 379 2005-08-23T10:20:41Z 2 2020-02-15T06:59:46Z +14471 2005-08-21T13:10:40Z 1254 395 2005-08-26T16:49:40Z 1 2020-02-15T06:59:46Z +14472 2005-08-21T13:13:57Z 4097 184 2005-08-23T14:04:57Z 2 2020-02-15T06:59:46Z +14473 2005-08-21T13:19:03Z 2747 298 2005-08-23T15:12:03Z 1 2020-02-15T06:59:46Z +14474 2005-08-21T13:22:48Z 2632 294 2005-08-27T14:13:48Z 2 2020-02-15T06:59:46Z +14475 2005-08-21T13:24:32Z 3164 2 2005-08-27T08:59:32Z 2 2020-02-15T06:59:46Z +14476 2005-08-21T13:31:07Z 2821 101 2005-08-23T17:06:07Z 1 2020-02-15T06:59:46Z +14477 2005-08-21T13:32:38Z 1564 126 2005-08-25T18:02:38Z 2 2020-02-15T06:59:46Z +14478 2005-08-21T13:33:28Z 2990 231 2005-08-25T13:33:28Z 2 2020-02-15T06:59:46Z +14479 2005-08-21T13:35:54Z 2235 324 2005-08-29T12:12:54Z 2 2020-02-15T06:59:46Z +14480 2005-08-21T13:36:40Z 229 411 2005-08-26T08:39:40Z 1 2020-02-15T06:59:46Z +14481 2005-08-21T13:41:14Z 4099 367 2005-08-30T07:53:14Z 2 2020-02-15T06:59:46Z +14482 2005-08-21T13:42:45Z 2765 23 2005-08-27T11:55:45Z 1 2020-02-15T06:59:46Z +14483 2005-08-21T13:43:59Z 37 275 2005-08-28T16:38:59Z 2 2020-02-15T06:59:46Z +14484 2005-08-21T13:47:29Z 3714 418 2005-08-23T18:25:29Z 1 2020-02-15T06:59:46Z +14485 2005-08-21T13:52:07Z 1637 241 2005-08-30T13:06:07Z 2 2020-02-15T06:59:46Z +14486 2005-08-21T13:52:54Z 3119 138 2005-08-23T07:58:54Z 1 2020-02-15T06:59:46Z +14487 2005-08-21T13:53:33Z 2578 526 2005-08-29T19:32:33Z 1 2020-02-15T06:59:46Z +14488 2006-02-14T15:16:03Z 4202 75 2 2020-02-15T06:59:46Z +14489 2005-08-21T13:53:59Z 2312 9 2005-08-30T15:45:59Z 2 2020-02-15T06:59:46Z +14490 2005-08-21T13:54:15Z 1771 205 2005-08-28T19:08:15Z 2 2020-02-15T06:59:46Z +14491 2005-08-21T13:55:39Z 2072 226 2005-08-29T17:51:39Z 1 2020-02-15T06:59:46Z +14492 2005-08-21T13:59:08Z 1591 266 2005-08-23T11:09:08Z 1 2020-02-15T06:59:46Z +14493 2005-08-21T14:01:44Z 2590 389 2005-08-28T17:20:44Z 1 2020-02-15T06:59:46Z +14494 2005-08-21T14:02:50Z 169 5 2005-08-22T16:45:50Z 2 2020-02-15T06:59:46Z +14495 2005-08-21T14:04:39Z 3215 429 2005-08-22T16:53:39Z 2 2020-02-15T06:59:46Z +14496 2005-08-21T14:07:35Z 2185 223 2005-08-24T12:31:35Z 1 2020-02-15T06:59:46Z +14497 2005-08-21T14:09:47Z 3240 254 2005-08-22T11:10:47Z 2 2020-02-15T06:59:46Z +14498 2005-08-21T14:10:44Z 3971 544 2005-08-23T08:29:44Z 1 2020-02-15T06:59:46Z +14499 2005-08-21T14:11:19Z 4109 292 2005-08-23T16:10:19Z 2 2020-02-15T06:59:46Z +14500 2005-08-21T14:11:30Z 2024 451 2005-08-27T12:19:30Z 1 2020-02-15T06:59:46Z +14501 2005-08-21T14:14:38Z 3588 576 2005-08-25T17:58:38Z 1 2020-02-15T06:59:46Z +14502 2005-08-21T14:22:28Z 2986 378 2005-08-23T10:40:28Z 1 2020-02-15T06:59:46Z +14503 2006-02-14T15:16:03Z 2144 188 1 2020-02-15T06:59:46Z +14504 2005-08-21T14:23:01Z 4536 312 2005-08-27T13:56:01Z 1 2020-02-15T06:59:46Z +14505 2005-08-21T14:26:28Z 2172 203 2005-08-29T17:34:28Z 1 2020-02-15T06:59:46Z +14506 2005-08-21T14:32:27Z 4493 537 2005-08-24T19:02:27Z 2 2020-02-15T06:59:46Z +14507 2005-08-21T14:32:45Z 1969 175 2005-08-28T09:50:45Z 2 2020-02-15T06:59:46Z +14508 2005-08-21T14:33:58Z 703 396 2005-08-27T10:45:58Z 2 2020-02-15T06:59:46Z +14509 2005-08-21T14:39:58Z 541 520 2005-08-26T13:19:58Z 1 2020-02-15T06:59:46Z +14510 2005-08-21T14:44:41Z 1868 547 2005-08-30T20:19:41Z 1 2020-02-15T06:59:46Z +14511 2005-08-21T14:45:34Z 4452 16 2005-08-28T10:36:34Z 2 2020-02-15T06:59:46Z +14512 2005-08-21T14:47:09Z 579 51 2005-08-24T18:10:09Z 2 2020-02-15T06:59:46Z +14513 2005-08-21T14:51:35Z 4265 185 2005-08-24T13:24:35Z 2 2020-02-15T06:59:46Z +14514 2005-08-21T14:51:52Z 1259 295 2005-08-30T10:40:52Z 2 2020-02-15T06:59:46Z +14515 2005-08-21T14:52:14Z 2215 242 2005-08-27T10:27:14Z 1 2020-02-15T06:59:46Z +14516 2006-02-14T15:16:03Z 713 457 2 2020-02-15T06:59:46Z +14517 2005-08-21T14:57:03Z 3568 311 2005-08-24T13:52:03Z 2 2020-02-15T06:59:46Z +14518 2005-08-21T14:58:58Z 2734 82 2005-08-24T13:19:58Z 2 2020-02-15T06:59:46Z +14519 2005-08-21T14:59:29Z 1541 403 2005-08-22T11:48:29Z 2 2020-02-15T06:59:46Z +14520 2005-08-21T15:00:49Z 4533 150 2005-08-30T19:04:49Z 1 2020-02-15T06:59:46Z +14521 2005-08-21T15:01:32Z 1538 200 2005-08-28T19:12:32Z 1 2020-02-15T06:59:46Z +14522 2005-08-21T15:01:34Z 2101 535 2005-08-25T16:37:34Z 1 2020-02-15T06:59:46Z +14523 2005-08-21T15:03:45Z 345 433 2005-08-22T18:06:45Z 2 2020-02-15T06:59:46Z +14524 2005-08-21T15:05:27Z 4409 374 2005-08-29T12:07:27Z 2 2020-02-15T06:59:46Z +14525 2005-08-21T15:06:49Z 3020 420 2005-08-22T16:30:49Z 1 2020-02-15T06:59:46Z +14526 2006-02-14T15:16:03Z 1799 534 1 2020-02-15T06:59:46Z +14527 2005-08-21T15:07:42Z 3496 232 2005-08-23T12:31:42Z 1 2020-02-15T06:59:46Z +14528 2005-08-21T15:08:05Z 4305 46 2005-08-26T15:58:05Z 2 2020-02-15T06:59:46Z +14529 2005-08-21T15:08:31Z 1774 380 2005-08-29T17:15:31Z 1 2020-02-15T06:59:46Z +14530 2005-08-21T15:10:50Z 1905 77 2005-08-26T09:20:50Z 2 2020-02-15T06:59:46Z +14531 2006-02-14T15:16:03Z 4296 568 2 2020-02-15T06:59:46Z +14532 2005-08-21T15:15:03Z 2057 37 2005-08-25T17:41:03Z 2 2020-02-15T06:59:46Z +14533 2005-08-21T15:15:19Z 2202 586 2005-08-26T12:47:19Z 1 2020-02-15T06:59:46Z +14534 2005-08-21T15:16:29Z 2514 56 2005-08-26T16:18:29Z 1 2020-02-15T06:59:46Z +14535 2005-08-21T15:22:37Z 530 412 2005-08-29T19:23:37Z 2 2020-02-15T06:59:46Z +14536 2005-08-21T15:22:50Z 2615 48 2005-08-27T17:03:50Z 1 2020-02-15T06:59:46Z +14537 2005-08-21T15:24:24Z 3755 405 2005-08-23T17:14:24Z 2 2020-02-15T06:59:46Z +14538 2005-08-21T15:28:15Z 3348 471 2005-08-22T19:55:15Z 2 2020-02-15T06:59:46Z +14539 2005-08-21T15:29:47Z 3340 41 2005-08-28T19:01:47Z 1 2020-02-15T06:59:46Z +14540 2005-08-21T15:34:23Z 2362 28 2005-08-27T11:51:23Z 2 2020-02-15T06:59:46Z +14541 2005-08-21T15:34:32Z 1275 576 2005-08-25T13:18:32Z 1 2020-02-15T06:59:46Z +14542 2005-08-21T15:36:34Z 1247 101 2005-08-27T20:24:34Z 2 2020-02-15T06:59:46Z +14543 2005-08-21T15:39:01Z 709 579 2005-08-28T09:47:01Z 1 2020-02-15T06:59:46Z +14544 2005-08-21T15:41:01Z 2445 589 2005-08-24T15:20:01Z 1 2020-02-15T06:59:46Z +14545 2005-08-21T15:44:23Z 2459 13 2005-08-29T20:09:23Z 2 2020-02-15T06:59:46Z +14546 2005-08-21T15:50:50Z 1515 466 2005-08-23T11:37:50Z 2 2020-02-15T06:59:46Z +14547 2005-08-21T15:51:38Z 1172 265 2005-08-26T15:35:38Z 1 2020-02-15T06:59:46Z +14548 2005-08-21T15:53:52Z 226 299 2005-08-25T15:39:52Z 2 2020-02-15T06:59:46Z +14549 2005-08-21T15:54:21Z 4117 155 2005-08-22T17:22:21Z 1 2020-02-15T06:59:46Z +14550 2005-08-21T15:56:39Z 2814 473 2005-08-23T21:40:39Z 1 2020-02-15T06:59:46Z +14551 2005-08-21T15:57:25Z 496 521 2005-08-28T11:10:25Z 2 2020-02-15T06:59:46Z +14552 2005-08-21T15:59:27Z 1991 477 2005-08-27T11:46:27Z 1 2020-02-15T06:59:46Z +14553 2005-08-21T15:59:40Z 3160 434 2005-08-23T11:54:40Z 2 2020-02-15T06:59:46Z +14554 2005-08-21T16:03:01Z 31 38 2005-08-26T13:09:01Z 2 2020-02-15T06:59:46Z +14555 2005-08-21T16:03:02Z 1926 440 2005-08-23T14:18:02Z 1 2020-02-15T06:59:46Z +14556 2005-08-21T16:03:27Z 475 265 2005-08-29T15:49:27Z 1 2020-02-15T06:59:46Z +14557 2005-08-21T16:05:11Z 483 490 2005-08-27T16:37:11Z 1 2020-02-15T06:59:46Z +14558 2005-08-21T16:10:50Z 3958 273 2005-08-28T16:36:50Z 2 2020-02-15T06:59:46Z +14559 2005-08-21T16:11:35Z 3842 433 2005-08-30T15:26:35Z 1 2020-02-15T06:59:46Z +14560 2005-08-21T16:13:47Z 1616 579 2005-08-26T15:19:47Z 1 2020-02-15T06:59:46Z +14561 2005-08-21T16:20:43Z 2498 443 2005-08-27T16:48:43Z 1 2020-02-15T06:59:46Z +14562 2005-08-21T16:22:59Z 3501 107 2005-08-22T21:15:59Z 1 2020-02-15T06:59:46Z +14563 2005-08-21T16:23:53Z 3984 212 2005-08-25T11:30:53Z 2 2020-02-15T06:59:46Z +14564 2005-08-21T16:24:43Z 3250 22 2005-08-26T16:58:43Z 1 2020-02-15T06:59:46Z +14565 2005-08-21T16:24:45Z 4160 250 2005-08-25T14:42:45Z 1 2020-02-15T06:59:46Z +14566 2005-08-21T16:25:05Z 84 87 2005-08-26T10:31:05Z 1 2020-02-15T06:59:46Z +14567 2005-08-21T16:27:25Z 3805 214 2005-08-26T10:47:25Z 1 2020-02-15T06:59:46Z +14568 2005-08-21T16:30:48Z 3331 582 2005-08-22T13:49:48Z 1 2020-02-15T06:59:46Z +14569 2005-08-21T16:31:22Z 884 15 2005-08-25T21:27:22Z 2 2020-02-15T06:59:46Z +14570 2005-08-21T16:32:32Z 955 32 2005-08-30T12:03:32Z 2 2020-02-15T06:59:46Z +14571 2005-08-21T16:40:26Z 2218 296 2005-08-29T17:10:26Z 1 2020-02-15T06:59:46Z +14572 2005-08-21T16:44:31Z 1397 538 2005-08-26T16:35:31Z 2 2020-02-15T06:59:46Z +14573 2005-08-21T16:44:32Z 2423 240 2005-08-23T14:01:32Z 2 2020-02-15T06:59:46Z +14574 2005-08-21T16:50:34Z 1611 62 2005-08-26T14:24:34Z 2 2020-02-15T06:59:46Z +14575 2005-08-21T16:51:34Z 3752 159 2005-08-30T20:13:34Z 2 2020-02-15T06:59:46Z +14576 2005-08-21T16:52:03Z 1189 45 2005-08-28T19:43:03Z 2 2020-02-15T06:59:46Z +14577 2005-08-21T16:52:29Z 1965 126 2005-08-26T12:30:29Z 1 2020-02-15T06:59:46Z +14578 2005-08-21T16:53:38Z 3141 389 2005-08-28T20:36:38Z 2 2020-02-15T06:59:46Z +14579 2005-08-21T16:54:47Z 1205 260 2005-08-28T12:35:47Z 1 2020-02-15T06:59:46Z +14580 2005-08-21T16:56:39Z 1440 448 2005-08-28T15:25:39Z 1 2020-02-15T06:59:46Z +14581 2005-08-21T17:07:08Z 751 243 2005-08-26T16:02:08Z 1 2020-02-15T06:59:46Z +14582 2005-08-21T17:08:33Z 1004 438 2005-08-29T18:04:33Z 2 2020-02-15T06:59:46Z +14583 2005-08-21T17:11:47Z 1203 455 2005-08-24T16:16:47Z 2 2020-02-15T06:59:46Z +14584 2005-08-21T17:15:33Z 2617 481 2005-08-24T20:24:33Z 2 2020-02-15T06:59:46Z +14585 2005-08-21T17:18:33Z 82 30 2005-08-26T11:36:33Z 1 2020-02-15T06:59:46Z +14586 2005-08-21T17:19:09Z 3094 182 2005-08-26T17:00:09Z 1 2020-02-15T06:59:46Z +14587 2005-08-21T17:20:55Z 2329 250 2005-08-26T17:17:55Z 1 2020-02-15T06:59:46Z +14588 2005-08-21T17:25:53Z 1350 219 2005-08-28T21:47:53Z 2 2020-02-15T06:59:46Z +14589 2005-08-21T17:28:55Z 2810 179 2005-08-22T23:06:55Z 1 2020-02-15T06:59:46Z +14590 2005-08-21T17:29:10Z 2633 526 2005-08-28T20:15:10Z 1 2020-02-15T06:59:46Z +14591 2005-08-21T17:30:09Z 3410 538 2005-08-24T12:27:09Z 1 2020-02-15T06:59:46Z +14592 2005-08-21T17:30:17Z 2681 563 2005-08-22T20:06:17Z 2 2020-02-15T06:59:46Z +14593 2005-08-21T17:33:18Z 1399 564 2005-08-24T22:11:18Z 1 2020-02-15T06:59:46Z +14594 2005-08-21T17:34:24Z 2978 62 2005-08-26T22:04:24Z 2 2020-02-15T06:59:46Z +14595 2005-08-21T17:35:17Z 1879 118 2005-08-27T12:11:17Z 1 2020-02-15T06:59:46Z +14596 2005-08-21T17:38:37Z 2010 472 2005-08-30T20:28:37Z 1 2020-02-15T06:59:46Z +14597 2005-08-21T17:39:41Z 1160 472 2005-08-25T14:07:41Z 1 2020-02-15T06:59:46Z +14598 2005-08-21T17:40:05Z 1113 359 2005-08-29T18:16:05Z 2 2020-02-15T06:59:46Z +14599 2005-08-21T17:43:42Z 4575 599 2005-08-22T18:53:42Z 1 2020-02-15T06:59:46Z +14600 2005-08-21T17:45:21Z 3532 255 2005-08-28T19:03:21Z 1 2020-02-15T06:59:46Z +14601 2005-08-21T17:45:52Z 548 406 2005-08-29T15:10:52Z 1 2020-02-15T06:59:46Z +14602 2005-08-21T17:48:49Z 3771 370 2005-08-28T21:38:49Z 1 2020-02-15T06:59:46Z +14603 2005-08-21T17:51:06Z 94 26 2005-08-28T15:36:06Z 1 2020-02-15T06:59:46Z +14604 2006-02-14T15:16:03Z 1024 585 2 2020-02-15T06:59:46Z +14605 2005-08-21T17:56:06Z 476 394 2005-08-24T18:35:06Z 1 2020-02-15T06:59:46Z +14606 2006-02-14T15:16:03Z 2291 592 2 2020-02-15T06:59:46Z +14607 2005-08-21T17:56:50Z 4518 417 2005-08-22T17:44:50Z 2 2020-02-15T06:59:46Z +14608 2005-08-21T17:57:22Z 3321 90 2005-08-25T13:20:22Z 1 2020-02-15T06:59:46Z +14609 2005-08-21T17:57:26Z 1206 551 2005-08-25T14:04:26Z 2 2020-02-15T06:59:46Z +14610 2005-08-21T17:59:09Z 1894 260 2005-08-29T21:36:09Z 2 2020-02-15T06:59:46Z +14611 2005-08-21T18:01:41Z 4078 443 2005-08-26T12:34:41Z 1 2020-02-15T06:59:46Z +14612 2005-08-21T18:03:15Z 4105 445 2005-08-27T13:39:15Z 1 2020-02-15T06:59:46Z +14613 2005-08-21T18:03:20Z 3841 20 2005-08-26T19:46:20Z 1 2020-02-15T06:59:46Z +14614 2005-08-21T18:03:51Z 3053 468 2005-08-30T13:37:51Z 1 2020-02-15T06:59:46Z +14615 2005-08-21T18:06:32Z 2332 171 2005-08-30T13:19:32Z 2 2020-02-15T06:59:46Z +14616 2006-02-14T15:16:03Z 4537 532 1 2020-02-15T06:59:46Z +14617 2005-08-21T18:07:40Z 3562 51 2005-08-24T23:48:40Z 2 2020-02-15T06:59:46Z +14618 2005-08-21T18:09:51Z 4490 270 2005-08-28T22:47:51Z 1 2020-02-15T06:59:46Z +14619 2005-08-21T18:10:03Z 1589 338 2005-08-23T13:40:03Z 2 2020-02-15T06:59:46Z +14620 2005-08-21T18:10:43Z 3272 78 2005-08-22T15:19:43Z 2 2020-02-15T06:59:46Z +14621 2005-08-21T18:17:59Z 3622 344 2005-08-23T14:16:59Z 1 2020-02-15T06:59:46Z +14622 2005-08-21T18:25:59Z 2702 559 2005-08-31T00:11:59Z 2 2020-02-15T06:59:46Z +14623 2005-08-21T18:29:13Z 901 33 2005-08-26T20:48:13Z 2 2020-02-15T06:59:46Z +14624 2005-08-21T18:32:42Z 4 344 2005-08-23T21:09:42Z 1 2020-02-15T06:59:46Z +14625 2005-08-21T18:34:21Z 2661 507 2005-08-29T21:41:21Z 1 2020-02-15T06:59:46Z +14626 2005-08-21T18:35:44Z 1038 554 2005-08-25T23:54:44Z 2 2020-02-15T06:59:46Z +14627 2005-08-21T18:35:54Z 2470 49 2005-08-30T21:17:54Z 1 2020-02-15T06:59:46Z +14628 2005-08-21T18:37:24Z 3636 331 2005-08-27T20:25:24Z 2 2020-02-15T06:59:46Z +14629 2005-08-21T18:39:52Z 761 148 2005-08-25T19:14:52Z 2 2020-02-15T06:59:46Z +14630 2005-08-21T18:43:44Z 4049 294 2005-08-29T17:08:44Z 2 2020-02-15T06:59:46Z +14631 2005-08-21T18:47:49Z 782 209 2005-08-28T16:54:49Z 1 2020-02-15T06:59:46Z +14632 2005-08-21T18:48:06Z 2807 38 2005-08-25T00:33:06Z 2 2020-02-15T06:59:46Z +14633 2005-08-21T18:51:10Z 2137 551 2005-08-25T13:07:10Z 1 2020-02-15T06:59:46Z +14634 2005-08-21T18:51:28Z 486 494 2005-08-29T19:30:28Z 2 2020-02-15T06:59:46Z +14635 2005-08-21T18:51:43Z 2171 108 2005-08-27T16:30:43Z 2 2020-02-15T06:59:46Z +14636 2005-08-21T18:59:17Z 1671 339 2005-08-23T13:19:17Z 2 2020-02-15T06:59:46Z +14637 2005-08-21T19:01:00Z 1846 76 2005-08-26T23:03:00Z 2 2020-02-15T06:59:46Z +14638 2005-08-21T19:01:36Z 3583 216 2005-08-22T15:09:36Z 2 2020-02-15T06:59:46Z +14639 2005-08-21T19:01:39Z 3510 210 2005-08-26T14:08:39Z 1 2020-02-15T06:59:46Z +14640 2005-08-21T19:03:19Z 1880 253 2005-08-27T00:37:19Z 2 2020-02-15T06:59:46Z +14641 2005-08-21T19:05:23Z 2205 147 2005-08-22T22:30:23Z 2 2020-02-15T06:59:46Z +14642 2005-08-21T19:09:40Z 1280 81 2005-08-30T13:25:40Z 2 2020-02-15T06:59:46Z +14643 2005-08-21T19:11:58Z 798 119 2005-08-29T19:52:58Z 1 2020-02-15T06:59:46Z +14644 2005-08-21T19:12:12Z 3905 453 2005-08-29T17:08:12Z 1 2020-02-15T06:59:46Z +14645 2005-08-21T19:12:47Z 2369 334 2005-08-25T21:42:47Z 1 2020-02-15T06:59:46Z +14646 2005-08-21T19:14:48Z 948 186 2005-08-23T17:15:48Z 1 2020-02-15T06:59:46Z +14647 2005-08-21T19:15:33Z 3854 36 2005-08-30T18:58:33Z 2 2020-02-15T06:59:46Z +14648 2005-08-21T19:18:01Z 2250 284 2005-08-25T14:59:01Z 2 2020-02-15T06:59:46Z +14649 2005-08-21T19:19:21Z 4074 43 2005-08-22T17:23:21Z 1 2020-02-15T06:59:46Z +14650 2005-08-21T19:24:51Z 1274 190 2005-08-25T13:58:51Z 2 2020-02-15T06:59:46Z +14651 2005-08-21T19:31:09Z 4037 544 2005-08-28T14:26:09Z 2 2020-02-15T06:59:46Z +14652 2005-08-21T19:32:05Z 4163 453 2005-08-23T23:33:05Z 2 2020-02-15T06:59:46Z +14653 2005-08-21T19:35:59Z 491 593 2005-08-24T15:31:59Z 1 2020-02-15T06:59:46Z +14654 2005-08-21T19:36:59Z 687 173 2005-08-23T22:03:59Z 2 2020-02-15T06:59:46Z +14655 2005-08-21T19:37:10Z 785 253 2005-08-22T15:43:10Z 1 2020-02-15T06:59:46Z +14656 2005-08-21T19:39:28Z 4205 201 2005-08-24T01:36:28Z 2 2020-02-15T06:59:46Z +14657 2005-08-21T19:39:43Z 477 244 2005-08-26T22:39:43Z 2 2020-02-15T06:59:46Z +14658 2005-08-21T19:41:50Z 1465 473 2005-08-25T16:11:50Z 1 2020-02-15T06:59:46Z +14659 2005-08-21T19:42:36Z 928 119 2005-08-26T14:06:36Z 1 2020-02-15T06:59:46Z +14660 2005-08-21T19:43:21Z 3433 452 2005-08-22T20:42:21Z 1 2020-02-15T06:59:46Z +14661 2005-08-21T19:44:21Z 745 469 2005-08-27T14:35:21Z 1 2020-02-15T06:59:46Z +14662 2005-08-21T19:45:27Z 2969 403 2005-08-23T14:44:27Z 2 2020-02-15T06:59:46Z +14663 2005-08-21T19:47:55Z 2351 150 2005-08-27T17:36:55Z 2 2020-02-15T06:59:46Z +14664 2005-08-21T19:48:47Z 4377 153 2005-08-27T16:47:47Z 1 2020-02-15T06:59:46Z +14665 2005-08-21T19:49:46Z 2896 58 2005-08-30T18:00:46Z 1 2020-02-15T06:59:46Z +14666 2005-08-21T19:51:09Z 2560 122 2005-08-30T22:42:09Z 2 2020-02-15T06:59:46Z +14667 2005-08-21T19:51:11Z 2608 55 2005-08-23T17:37:11Z 1 2020-02-15T06:59:46Z +14668 2005-08-21T19:51:30Z 1450 152 2005-08-29T19:38:30Z 2 2020-02-15T06:59:46Z +14669 2005-08-21T19:54:06Z 3154 317 2005-08-25T23:12:06Z 1 2020-02-15T06:59:46Z +14670 2005-08-21T19:54:11Z 4324 537 2005-08-27T21:42:11Z 2 2020-02-15T06:59:46Z +14671 2005-08-21T19:59:30Z 2622 53 2005-08-22T19:39:30Z 1 2020-02-15T06:59:46Z +14672 2005-08-21T19:59:33Z 4144 325 2005-08-30T19:40:33Z 1 2020-02-15T06:59:46Z +14673 2005-08-21T20:01:18Z 1827 445 2005-08-25T18:55:18Z 1 2020-02-15T06:59:46Z +14674 2005-08-21T20:01:34Z 572 300 2005-08-27T18:33:34Z 1 2020-02-15T06:59:46Z +14675 2005-08-21T20:01:51Z 328 170 2005-08-26T14:30:51Z 2 2020-02-15T06:59:46Z +14676 2005-08-21T20:02:18Z 877 49 2005-08-26T21:55:18Z 1 2020-02-15T06:59:46Z +14677 2005-08-21T20:12:30Z 4411 26 2005-08-28T15:11:30Z 1 2020-02-15T06:59:46Z +14678 2005-08-21T20:12:43Z 1911 383 2005-08-31T02:11:43Z 2 2020-02-15T06:59:46Z +14679 2005-08-21T20:14:58Z 1520 193 2005-08-23T23:39:58Z 1 2020-02-15T06:59:46Z +14680 2005-08-21T20:19:52Z 4469 524 2005-08-28T17:10:52Z 1 2020-02-15T06:59:46Z +14681 2005-08-21T20:25:13Z 1083 212 2005-08-30T19:48:13Z 1 2020-02-15T06:59:46Z +14682 2005-08-21T20:25:57Z 2974 314 2005-08-28T00:42:57Z 2 2020-02-15T06:59:46Z +14683 2005-08-21T20:27:44Z 3850 342 2005-08-29T16:54:44Z 1 2020-02-15T06:59:46Z +14684 2005-08-21T20:28:26Z 3593 369 2005-08-28T19:01:26Z 2 2020-02-15T06:59:46Z +14685 2005-08-21T20:31:25Z 1320 69 2005-08-22T21:02:25Z 1 2020-02-15T06:59:46Z +14686 2005-08-21T20:32:08Z 814 34 2005-08-26T18:07:08Z 1 2020-02-15T06:59:46Z +14687 2005-08-21T20:32:16Z 306 550 2005-08-26T16:17:16Z 2 2020-02-15T06:59:46Z +14688 2005-08-21T20:32:37Z 2573 219 2005-08-27T00:06:37Z 2 2020-02-15T06:59:46Z +14689 2005-08-21T20:33:00Z 1124 463 2005-08-22T18:10:00Z 1 2020-02-15T06:59:46Z +14690 2005-08-21T20:42:25Z 3649 456 2005-08-29T18:42:25Z 2 2020-02-15T06:59:46Z +14691 2005-08-21T20:42:29Z 2131 404 2005-08-24T01:22:29Z 1 2020-02-15T06:59:46Z +14692 2005-08-21T20:43:21Z 1908 192 2005-08-28T19:02:21Z 1 2020-02-15T06:59:46Z +14693 2005-08-21T20:44:19Z 3454 269 2005-08-29T00:37:19Z 2 2020-02-15T06:59:46Z +14694 2005-08-21T20:46:42Z 2767 363 2005-08-23T16:18:42Z 1 2020-02-15T06:59:46Z +14695 2005-08-21T20:46:47Z 412 206 2005-08-22T22:25:47Z 2 2020-02-15T06:59:46Z +14696 2005-08-21T20:48:05Z 3776 435 2005-08-25T14:55:05Z 1 2020-02-15T06:59:46Z +14697 2005-08-21T20:49:21Z 48 409 2005-08-26T01:39:21Z 2 2020-02-15T06:59:46Z +14698 2005-08-21T20:49:58Z 4255 196 2005-08-29T20:13:58Z 2 2020-02-15T06:59:46Z +14699 2005-08-21T20:50:48Z 1427 3 2005-08-29T18:08:48Z 2 2020-02-15T06:59:46Z +14700 2005-08-21T20:53:40Z 3446 360 2005-08-23T22:01:40Z 1 2020-02-15T06:59:46Z +14701 2005-08-21T20:54:32Z 3034 34 2005-08-30T16:46:32Z 1 2020-02-15T06:59:46Z +14702 2005-08-21T21:00:03Z 4096 345 2005-08-30T16:59:03Z 1 2020-02-15T06:59:46Z +14703 2005-08-21T21:01:19Z 4329 29 2005-08-22T15:13:19Z 2 2020-02-15T06:59:46Z +14704 2005-08-21T21:02:22Z 4062 248 2005-08-27T23:10:22Z 2 2020-02-15T06:59:46Z +14705 2005-08-21T21:02:55Z 2493 243 2005-08-25T20:20:55Z 2 2020-02-15T06:59:46Z +14706 2005-08-21T21:04:42Z 4494 589 2005-08-22T19:55:42Z 2 2020-02-15T06:59:46Z +14707 2005-08-21T21:06:29Z 2916 530 2005-08-30T23:37:29Z 1 2020-02-15T06:59:46Z +14708 2005-08-21T21:07:23Z 2828 226 2005-08-28T15:47:23Z 1 2020-02-15T06:59:46Z +14709 2005-08-21T21:07:59Z 1856 300 2005-08-31T02:19:59Z 1 2020-02-15T06:59:46Z +14710 2005-08-21T21:15:23Z 1922 587 2005-08-30T19:45:23Z 1 2020-02-15T06:59:46Z +14711 2005-08-21T21:22:07Z 1973 448 2005-08-30T16:24:07Z 2 2020-02-15T06:59:46Z +14712 2005-08-21T21:22:56Z 1198 226 2005-08-25T01:53:56Z 1 2020-02-15T06:59:46Z +14713 2005-08-21T21:27:24Z 3350 148 2005-08-23T20:26:24Z 1 2020-02-15T06:59:46Z +14714 2005-08-21T21:27:43Z 1 279 2005-08-30T22:26:43Z 1 2020-02-15T06:59:46Z +14715 2005-08-21T21:28:18Z 4453 287 2005-08-26T22:13:18Z 2 2020-02-15T06:59:46Z +14716 2005-08-21T21:29:55Z 2285 78 2005-08-23T18:34:55Z 2 2020-02-15T06:59:46Z +14717 2005-08-21T21:30:39Z 3839 366 2005-08-26T16:58:39Z 2 2020-02-15T06:59:46Z +14718 2005-08-21T21:39:25Z 3618 340 2005-08-26T22:07:25Z 2 2020-02-15T06:59:46Z +14719 2005-08-21T21:41:57Z 4091 599 2005-08-25T20:37:57Z 1 2020-02-15T06:59:46Z +14720 2005-08-21T21:43:53Z 3617 395 2005-08-25T18:21:53Z 1 2020-02-15T06:59:46Z +14721 2005-08-21T21:50:51Z 4257 349 2005-08-30T19:21:51Z 1 2020-02-15T06:59:46Z +14722 2005-08-21T21:50:53Z 2930 236 2005-08-30T03:13:53Z 1 2020-02-15T06:59:46Z +14723 2005-08-21T21:52:32Z 2755 548 2005-08-31T00:03:32Z 2 2020-02-15T06:59:46Z +14724 2005-08-21T21:53:47Z 3559 552 2005-08-23T20:14:47Z 2 2020-02-15T06:59:46Z +14725 2005-08-21T22:02:08Z 4427 403 2005-08-23T03:59:08Z 2 2020-02-15T06:59:46Z +14726 2005-08-21T22:08:52Z 4556 216 2005-08-22T18:28:52Z 1 2020-02-15T06:59:46Z +14727 2005-08-21T22:12:45Z 650 275 2005-08-25T00:46:45Z 1 2020-02-15T06:59:46Z +14728 2005-08-21T22:15:36Z 2671 474 2005-08-25T17:14:36Z 2 2020-02-15T06:59:46Z +14729 2005-08-21T22:16:57Z 2483 289 2005-08-27T21:32:57Z 1 2020-02-15T06:59:46Z +14730 2005-08-21T22:21:11Z 2949 439 2005-08-30T03:02:11Z 1 2020-02-15T06:59:46Z +14731 2005-08-21T22:21:49Z 1351 154 2005-08-24T16:27:49Z 1 2020-02-15T06:59:46Z +14732 2005-08-21T22:22:29Z 1915 482 2005-08-23T18:34:29Z 1 2020-02-15T06:59:46Z +14733 2005-08-21T22:22:33Z 398 408 2005-08-26T21:01:33Z 1 2020-02-15T06:59:46Z +14734 2006-02-14T15:16:03Z 1369 448 2 2020-02-15T06:59:46Z +14735 2005-08-21T22:25:09Z 950 35 2005-08-23T21:16:09Z 1 2020-02-15T06:59:46Z +14736 2005-08-21T22:25:53Z 207 139 2005-08-25T19:01:53Z 2 2020-02-15T06:59:46Z +14737 2005-08-21T22:27:11Z 1842 124 2005-08-25T18:51:11Z 2 2020-02-15T06:59:46Z +14738 2005-08-21T22:29:13Z 3315 521 2005-08-29T21:19:13Z 1 2020-02-15T06:59:46Z +14739 2005-08-21T22:33:22Z 4026 226 2005-08-22T19:45:22Z 1 2020-02-15T06:59:46Z +14740 2005-08-21T22:35:33Z 1717 333 2005-08-26T17:49:33Z 1 2020-02-15T06:59:46Z +14741 2006-02-14T15:16:03Z 612 60 2 2020-02-15T06:59:46Z +14742 2005-08-21T22:39:01Z 2988 421 2005-08-26T00:17:01Z 1 2020-02-15T06:59:46Z +14743 2005-08-21T22:41:56Z 4570 2 2005-08-29T00:18:56Z 1 2020-02-15T06:59:46Z +14744 2005-08-21T22:45:21Z 800 213 2005-08-29T23:57:21Z 1 2020-02-15T06:59:46Z +14745 2005-08-21T22:53:01Z 4399 277 2005-08-23T23:22:01Z 1 2020-02-15T06:59:46Z +14746 2005-08-21T22:54:02Z 3197 284 2005-08-27T17:04:02Z 2 2020-02-15T06:59:46Z +14747 2005-08-21T23:00:02Z 201 153 2005-08-26T18:58:02Z 2 2020-02-15T06:59:46Z +14748 2005-08-21T23:02:02Z 1697 81 2005-08-28T05:01:02Z 2 2020-02-15T06:59:46Z +14749 2005-08-21T23:08:33Z 831 235 2005-08-29T20:46:33Z 2 2020-02-15T06:59:46Z +14750 2005-08-21T23:09:32Z 918 303 2005-08-30T00:46:32Z 2 2020-02-15T06:59:46Z +14751 2005-08-21T23:11:23Z 1156 195 2005-08-30T20:01:23Z 2 2020-02-15T06:59:46Z +14752 2005-08-21T23:11:42Z 1252 362 2005-08-28T22:12:42Z 1 2020-02-15T06:59:46Z +14753 2005-08-21T23:11:43Z 1803 155 2005-08-22T22:25:43Z 2 2020-02-15T06:59:46Z +14754 2005-08-21T23:17:26Z 2355 137 2005-08-29T18:55:26Z 2 2020-02-15T06:59:46Z +14755 2005-08-21T23:18:08Z 862 328 2005-08-27T01:06:08Z 2 2020-02-15T06:59:46Z +14756 2005-08-21T23:21:23Z 564 288 2005-08-24T01:44:23Z 1 2020-02-15T06:59:46Z +14757 2005-08-21T23:23:37Z 1154 473 2005-08-26T23:24:37Z 2 2020-02-15T06:59:46Z +14758 2005-08-21T23:24:52Z 2372 339 2005-08-27T04:25:52Z 2 2020-02-15T06:59:46Z +14759 2005-08-21T23:28:58Z 3871 362 2005-08-31T00:35:58Z 2 2020-02-15T06:59:46Z +14760 2006-02-14T15:16:03Z 1367 355 1 2020-02-15T06:59:46Z +14761 2005-08-21T23:30:28Z 2657 490 2005-08-26T03:26:28Z 1 2020-02-15T06:59:46Z +14762 2005-08-21T23:33:57Z 4249 1 2005-08-23T01:30:57Z 1 2020-02-15T06:59:46Z +14763 2005-08-21T23:34:00Z 1480 116 2005-08-31T03:58:00Z 2 2020-02-15T06:59:46Z +14764 2005-08-21T23:37:47Z 1270 529 2005-08-24T00:23:47Z 2 2020-02-15T06:59:46Z +14765 2005-08-21T23:40:28Z 2817 435 2005-08-25T04:55:28Z 2 2020-02-15T06:59:46Z +14766 2005-08-21T23:42:20Z 768 523 2005-08-26T03:46:20Z 1 2020-02-15T06:59:46Z +14767 2005-08-21T23:43:00Z 1232 69 2005-08-29T05:26:00Z 1 2020-02-15T06:59:46Z +14768 2005-08-21T23:44:53Z 3465 570 2005-08-27T20:33:53Z 1 2020-02-15T06:59:46Z +14769 2006-02-14T15:16:03Z 1800 361 1 2020-02-15T06:59:46Z +14770 2005-08-21T23:47:16Z 2977 372 2005-08-25T04:48:16Z 1 2020-02-15T06:59:46Z +14771 2005-08-21T23:50:15Z 2665 149 2005-08-28T22:55:15Z 2 2020-02-15T06:59:46Z +14772 2005-08-21T23:50:39Z 4047 411 2005-08-30T20:44:39Z 2 2020-02-15T06:59:46Z +14773 2005-08-21T23:50:57Z 2541 413 2005-08-26T04:45:57Z 2 2020-02-15T06:59:46Z +14774 2005-08-21T23:52:32Z 3185 252 2005-08-26T23:42:32Z 2 2020-02-15T06:59:46Z +14775 2005-08-21T23:53:07Z 4044 400 2005-08-22T18:07:07Z 2 2020-02-15T06:59:46Z +14776 2005-08-21T23:53:35Z 3488 15 2005-08-24T02:00:35Z 2 2020-02-15T06:59:46Z +14777 2005-08-21T23:55:50Z 237 389 2005-08-28T04:31:50Z 1 2020-02-15T06:59:46Z +14778 2005-08-21T23:56:30Z 2152 396 2005-08-26T00:07:30Z 2 2020-02-15T06:59:46Z +14779 2005-08-22T00:00:56Z 1087 279 2005-08-31T00:01:56Z 2 2020-02-15T06:59:46Z +14780 2005-08-22T00:06:33Z 3171 491 2005-08-22T22:02:33Z 2 2020-02-15T06:59:46Z +14781 2005-08-22T00:15:12Z 3458 71 2005-08-29T21:02:12Z 1 2020-02-15T06:59:46Z +14782 2005-08-22T00:17:20Z 1727 211 2005-08-23T01:24:20Z 1 2020-02-15T06:59:46Z +14783 2005-08-22T00:21:57Z 3419 332 2005-08-28T01:27:57Z 2 2020-02-15T06:59:46Z +14784 2005-08-22T00:23:13Z 441 117 2005-08-28T03:42:13Z 1 2020-02-15T06:59:46Z +14785 2005-08-22T00:24:37Z 1981 560 2005-08-25T04:15:37Z 1 2020-02-15T06:59:46Z +14786 2005-08-22T00:24:42Z 2959 370 2005-08-25T19:36:42Z 1 2020-02-15T06:59:46Z +14787 2005-08-22T00:25:59Z 2634 38 2005-08-28T22:30:59Z 2 2020-02-15T06:59:46Z +14788 2005-08-22T00:27:59Z 1917 139 2005-08-29T23:54:59Z 2 2020-02-15T06:59:46Z +14789 2005-08-22T00:29:39Z 2344 279 2005-08-25T02:25:39Z 1 2020-02-15T06:59:46Z +14790 2005-08-22T00:34:17Z 1002 397 2005-08-31T02:27:17Z 1 2020-02-15T06:59:46Z +14791 2005-08-22T00:35:55Z 1490 317 2005-08-30T20:23:55Z 1 2020-02-15T06:59:46Z +14792 2005-08-22T00:36:41Z 4436 396 2005-08-30T18:58:41Z 1 2020-02-15T06:59:46Z +14793 2005-08-22T00:37:57Z 4285 154 2005-08-29T05:44:57Z 2 2020-02-15T06:59:46Z +14794 2005-08-22T00:39:31Z 413 156 2005-08-28T20:08:31Z 2 2020-02-15T06:59:46Z +14795 2005-08-22T00:40:22Z 1695 303 2005-08-26T01:37:22Z 1 2020-02-15T06:59:46Z +14796 2005-08-22T00:40:49Z 941 441 2005-08-30T03:59:49Z 1 2020-02-15T06:59:46Z +14797 2005-08-22T00:41:24Z 1131 546 2005-08-23T18:51:24Z 1 2020-02-15T06:59:46Z +14798 2005-08-22T00:44:08Z 7 92 2005-08-27T02:18:08Z 2 2020-02-15T06:59:46Z +14799 2005-08-22T00:44:57Z 1276 454 2005-08-24T20:08:57Z 2 2020-02-15T06:59:46Z +14800 2005-08-22T00:46:18Z 3554 533 2005-08-26T01:44:18Z 2 2020-02-15T06:59:46Z +14801 2005-08-22T00:46:54Z 1677 184 2005-08-30T19:03:54Z 1 2020-02-15T06:59:46Z +14802 2005-08-22T00:48:23Z 707 505 2005-08-28T01:02:23Z 1 2020-02-15T06:59:46Z +14803 2005-08-22T00:49:10Z 2525 278 2005-08-22T23:44:10Z 2 2020-02-15T06:59:46Z +14804 2005-08-22T00:51:25Z 372 94 2005-08-26T21:15:25Z 1 2020-02-15T06:59:46Z +14805 2005-08-22T00:52:01Z 783 169 2005-08-23T03:28:01Z 2 2020-02-15T06:59:46Z +14806 2005-08-22T00:53:08Z 2049 231 2005-08-23T06:26:08Z 2 2020-02-15T06:59:46Z +14807 2005-08-22T00:57:43Z 335 90 2005-08-26T23:40:43Z 1 2020-02-15T06:59:46Z +14808 2005-08-22T00:58:35Z 1657 362 2005-08-29T20:16:35Z 2 2020-02-15T06:59:46Z +14809 2005-08-22T01:00:42Z 1077 188 2005-08-29T19:55:42Z 1 2020-02-15T06:59:46Z +14810 2005-08-22T01:08:34Z 1982 78 2005-08-25T07:00:34Z 2 2020-02-15T06:59:46Z +14811 2005-08-22T01:09:04Z 1613 53 2005-08-26T19:30:04Z 1 2020-02-15T06:59:46Z +14812 2005-08-22T01:10:32Z 4282 211 2005-08-26T05:21:32Z 1 2020-02-15T06:59:46Z +14813 2005-08-22T01:11:37Z 3364 142 2005-08-24T05:57:37Z 2 2020-02-15T06:59:46Z +14814 2005-08-22T01:12:14Z 3109 250 2005-08-27T23:24:14Z 2 2020-02-15T06:59:46Z +14815 2005-08-22T01:12:44Z 1183 314 2005-08-24T01:42:44Z 2 2020-02-15T06:59:46Z +14816 2005-08-22T01:15:51Z 4086 534 2005-08-28T04:11:51Z 1 2020-02-15T06:59:46Z +14817 2005-08-22T01:17:16Z 910 215 2005-08-27T02:43:16Z 1 2020-02-15T06:59:46Z +14818 2005-08-22T01:17:18Z 1619 580 2005-08-26T05:40:18Z 1 2020-02-15T06:59:46Z +14819 2005-08-22T01:17:19Z 2890 410 2005-08-30T05:54:19Z 1 2020-02-15T06:59:46Z +14820 2005-08-22T01:18:37Z 1409 52 2005-08-23T19:44:37Z 1 2020-02-15T06:59:46Z +14821 2005-08-22T01:20:19Z 3155 62 2005-08-29T03:06:19Z 2 2020-02-15T06:59:46Z +14822 2005-08-22T01:21:14Z 2835 52 2005-08-30T03:59:14Z 1 2020-02-15T06:59:46Z +14823 2005-08-22T01:24:42Z 680 503 2005-08-22T19:45:42Z 2 2020-02-15T06:59:46Z +14824 2005-08-22T01:27:51Z 4162 594 2005-08-23T03:24:51Z 2 2020-02-15T06:59:46Z +14825 2005-08-22T01:27:57Z 1449 1 2005-08-27T07:01:57Z 2 2020-02-15T06:59:46Z +14826 2005-08-22T01:32:14Z 4023 426 2005-08-23T03:52:14Z 2 2020-02-15T06:59:46Z +14827 2005-08-22T01:32:32Z 2267 88 2005-08-31T06:21:32Z 2 2020-02-15T06:59:46Z +14828 2005-08-22T01:34:05Z 4114 319 2005-08-27T06:27:05Z 2 2020-02-15T06:59:46Z +14829 2005-08-22T01:35:37Z 3606 546 2005-08-23T19:55:37Z 2 2020-02-15T06:59:46Z +14830 2005-08-22T01:37:19Z 637 590 2005-08-27T20:10:19Z 1 2020-02-15T06:59:46Z +14831 2005-08-22T01:40:49Z 3370 156 2005-08-23T02:47:49Z 1 2020-02-15T06:59:46Z +14832 2005-08-22T01:43:29Z 1828 494 2005-08-29T07:19:29Z 2 2020-02-15T06:59:46Z +14833 2005-08-22T01:45:18Z 1960 551 2005-08-28T21:24:18Z 1 2020-02-15T06:59:46Z +14834 2005-08-22T01:45:58Z 3105 262 2005-08-28T20:52:58Z 1 2020-02-15T06:59:46Z +14835 2005-08-22T01:49:07Z 755 404 2005-08-30T04:28:07Z 1 2020-02-15T06:59:46Z +14836 2005-08-22T01:52:26Z 4287 418 2005-08-22T23:39:26Z 1 2020-02-15T06:59:46Z +14837 2005-08-22T01:54:52Z 2251 43 2005-08-29T02:24:52Z 1 2020-02-15T06:59:46Z +14838 2005-08-22T01:57:34Z 506 404 2005-08-25T06:34:34Z 1 2020-02-15T06:59:46Z +14839 2005-08-22T01:58:15Z 3440 567 2005-08-24T05:24:15Z 2 2020-02-15T06:59:46Z +14840 2005-08-22T01:58:42Z 1240 354 2005-08-29T22:32:42Z 2 2020-02-15T06:59:46Z +14841 2005-08-22T02:03:30Z 4017 384 2005-08-28T02:08:30Z 2 2020-02-15T06:59:46Z +14842 2005-08-22T02:04:38Z 2511 467 2005-08-30T06:46:38Z 2 2020-02-15T06:59:46Z +14843 2005-08-22T02:05:25Z 3000 454 2005-08-28T22:11:25Z 1 2020-02-15T06:59:46Z +14844 2005-08-22T02:09:12Z 145 513 2005-08-31T05:43:12Z 1 2020-02-15T06:59:46Z +14845 2005-08-22T02:12:44Z 69 292 2005-08-24T02:36:44Z 2 2020-02-15T06:59:46Z +14846 2005-08-22T02:13:48Z 3840 309 2005-08-30T05:39:48Z 1 2020-02-15T06:59:46Z +14847 2005-08-22T02:13:51Z 2995 327 2005-08-29T03:42:51Z 2 2020-02-15T06:59:46Z +14848 2005-08-22T02:14:19Z 395 218 2005-08-26T02:54:19Z 2 2020-02-15T06:59:46Z +14849 2005-08-22T02:15:26Z 3354 177 2005-08-28T00:56:26Z 2 2020-02-15T06:59:46Z +14850 2005-08-22T02:16:55Z 2405 435 2005-08-26T21:08:55Z 1 2020-02-15T06:59:46Z +14851 2005-08-22T02:20:44Z 1139 180 2005-08-26T08:02:44Z 2 2020-02-15T06:59:46Z +14852 2005-08-22T02:25:53Z 2262 352 2005-08-25T04:27:53Z 1 2020-02-15T06:59:46Z +14853 2005-08-22T02:26:33Z 3575 388 2005-08-31T02:49:33Z 2 2020-02-15T06:59:46Z +14854 2005-08-22T02:26:47Z 1989 117 2005-08-23T05:53:47Z 1 2020-02-15T06:59:46Z +14855 2005-08-22T02:27:32Z 1668 187 2005-08-31T03:35:32Z 1 2020-02-15T06:59:46Z +14856 2005-08-22T02:31:51Z 3292 151 2005-08-26T23:41:51Z 2 2020-02-15T06:59:46Z +14857 2005-08-22T02:42:39Z 4150 232 2005-08-24T21:26:39Z 2 2020-02-15T06:59:46Z +14858 2005-08-22T02:46:18Z 366 499 2005-08-30T08:22:18Z 1 2020-02-15T06:59:46Z +14859 2005-08-22T02:46:35Z 2150 463 2005-08-24T22:37:35Z 2 2020-02-15T06:59:46Z +14860 2005-08-22T02:47:07Z 1368 418 2005-08-28T00:00:07Z 1 2020-02-15T06:59:46Z +14861 2005-08-22T02:48:05Z 1806 422 2005-08-27T00:50:05Z 1 2020-02-15T06:59:46Z +14862 2005-08-22T02:51:41Z 3479 78 2005-08-28T06:30:41Z 2 2020-02-15T06:59:46Z +14863 2005-08-22T02:57:04Z 779 440 2005-08-30T03:24:04Z 2 2020-02-15T06:59:46Z +14864 2005-08-22T02:57:06Z 2872 460 2005-08-22T22:19:06Z 1 2020-02-15T06:59:46Z +14865 2005-08-22T03:06:38Z 3775 94 2005-08-23T04:26:38Z 1 2020-02-15T06:59:46Z +14866 2005-08-22T03:11:35Z 2607 445 2005-08-30T00:10:35Z 1 2020-02-15T06:59:46Z +14867 2005-08-22T03:14:46Z 271 114 2005-08-25T03:53:46Z 2 2020-02-15T06:59:46Z +14868 2005-08-22T03:15:01Z 4383 160 2005-08-25T01:24:01Z 1 2020-02-15T06:59:46Z +14869 2005-08-22T03:20:26Z 455 21 2005-08-23T05:25:26Z 2 2020-02-15T06:59:46Z +14870 2005-08-22T03:23:20Z 2170 512 2005-08-23T06:50:20Z 2 2020-02-15T06:59:46Z +14871 2005-08-22T03:23:24Z 3411 204 2005-08-23T22:23:24Z 2 2020-02-15T06:59:46Z +14872 2005-08-22T03:23:41Z 962 15 2005-08-29T23:25:41Z 1 2020-02-15T06:59:46Z +14873 2005-08-22T03:31:06Z 3533 314 2005-08-31T05:34:06Z 1 2020-02-15T06:59:46Z +14874 2005-08-22T03:32:05Z 1782 268 2005-08-24T07:02:05Z 2 2020-02-15T06:59:46Z +14875 2005-08-22T03:34:39Z 3912 513 2005-08-26T03:40:39Z 1 2020-02-15T06:59:46Z +14876 2005-08-22T03:39:29Z 3669 210 2005-08-23T06:53:29Z 1 2020-02-15T06:59:46Z +14877 2005-08-22T03:39:56Z 974 266 2005-08-24T03:41:56Z 2 2020-02-15T06:59:46Z +14878 2006-02-14T15:16:03Z 1202 441 2 2020-02-15T06:59:46Z +14879 2005-08-22T03:42:12Z 2154 148 2005-08-27T06:14:12Z 1 2020-02-15T06:59:46Z +14880 2005-08-22T03:44:36Z 3615 224 2005-08-24T05:45:36Z 2 2020-02-15T06:59:46Z +14881 2005-08-22T03:47:39Z 210 425 2005-08-26T05:58:39Z 2 2020-02-15T06:59:46Z +14882 2005-08-22T03:52:21Z 12 417 2005-08-25T04:50:21Z 2 2020-02-15T06:59:46Z +14883 2005-08-22T03:55:02Z 1946 177 2005-08-28T02:51:02Z 1 2020-02-15T06:59:46Z +14884 2005-08-22T03:57:08Z 2957 547 2005-08-23T07:11:08Z 1 2020-02-15T06:59:46Z +14885 2005-08-22T03:58:29Z 2097 248 2005-08-30T05:26:29Z 1 2020-02-15T06:59:46Z +14886 2005-08-22T03:59:01Z 4330 379 2005-08-23T01:22:01Z 1 2020-02-15T06:59:46Z +14887 2005-08-22T04:04:31Z 56 421 2005-08-31T02:30:31Z 1 2020-02-15T06:59:46Z +14888 2005-08-22T04:09:18Z 3345 91 2005-08-23T07:34:18Z 2 2020-02-15T06:59:46Z +14889 2005-08-22T04:10:10Z 1579 299 2005-08-24T06:23:10Z 2 2020-02-15T06:59:46Z +14890 2005-08-22T04:10:49Z 517 346 2005-08-30T23:23:49Z 1 2020-02-15T06:59:46Z +14891 2005-08-22T04:11:02Z 288 482 2005-08-27T03:22:02Z 1 2020-02-15T06:59:46Z +14892 2005-08-22T04:15:05Z 3061 82 2005-08-31T06:07:05Z 1 2020-02-15T06:59:46Z +14893 2005-08-22T04:15:48Z 2336 461 2005-08-30T08:05:48Z 1 2020-02-15T06:59:46Z +14894 2005-08-22T04:16:56Z 3494 347 2005-08-24T00:30:56Z 2 2020-02-15T06:59:46Z +14895 2005-08-22T04:19:23Z 4462 340 2005-08-27T04:02:23Z 1 2020-02-15T06:59:46Z +14896 2005-08-22T04:20:55Z 2508 569 2005-08-29T05:11:55Z 2 2020-02-15T06:59:46Z +14897 2005-08-22T04:22:31Z 1607 175 2005-08-26T00:09:31Z 1 2020-02-15T06:59:46Z +14898 2005-08-22T04:26:34Z 1736 299 2005-08-31T10:04:34Z 1 2020-02-15T06:59:46Z +14899 2005-08-22T04:26:38Z 3700 304 2005-08-31T08:36:38Z 2 2020-02-15T06:59:46Z +14900 2005-08-22T04:27:48Z 3420 329 2005-08-25T03:50:48Z 2 2020-02-15T06:59:46Z +14901 2005-08-22T04:31:37Z 4297 258 2005-08-29T08:24:37Z 1 2020-02-15T06:59:46Z +14902 2005-08-22T04:31:50Z 866 423 2005-08-23T23:47:50Z 2 2020-02-15T06:59:46Z +14903 2005-08-22T04:31:50Z 1795 51 2005-08-25T22:53:50Z 2 2020-02-15T06:59:46Z +14904 2005-08-22T04:32:01Z 722 71 2005-08-29T05:21:01Z 1 2020-02-15T06:59:46Z +14905 2005-08-22T04:34:22Z 4166 286 2005-08-26T04:00:22Z 2 2020-02-15T06:59:46Z +14906 2005-08-22T04:38:18Z 153 366 2005-08-29T23:03:18Z 1 2020-02-15T06:59:46Z +14907 2005-08-22T04:44:09Z 2469 116 2005-08-25T09:53:09Z 1 2020-02-15T06:59:46Z +14908 2005-08-22T04:44:10Z 102 349 2005-08-25T05:09:10Z 2 2020-02-15T06:59:46Z +14909 2005-08-22T04:48:44Z 1997 155 2005-08-25T04:59:44Z 1 2020-02-15T06:59:46Z +14910 2005-08-22T04:50:52Z 1266 540 2005-08-25T04:14:52Z 1 2020-02-15T06:59:46Z +14911 2005-08-22T04:51:42Z 353 273 2005-08-28T05:37:42Z 1 2020-02-15T06:59:46Z +14912 2005-08-22T04:51:42Z 2658 404 2005-08-23T23:50:42Z 1 2020-02-15T06:59:46Z +14913 2005-08-22T04:52:13Z 3609 503 2005-08-23T06:49:13Z 2 2020-02-15T06:59:46Z +14914 2005-08-22T04:53:35Z 4348 156 2005-08-26T10:35:35Z 1 2020-02-15T06:59:46Z +14915 2006-02-14T15:16:03Z 112 349 1 2020-02-15T06:59:46Z +14916 2005-08-22T04:56:57Z 2110 80 2005-08-24T06:36:57Z 2 2020-02-15T06:59:46Z +14917 2005-08-22T05:03:59Z 377 289 2005-08-29T04:00:59Z 2 2020-02-15T06:59:46Z +14918 2005-08-22T05:06:38Z 4056 154 2005-08-30T01:44:38Z 2 2020-02-15T06:59:46Z +14919 2005-08-22T05:07:17Z 1587 244 2005-08-30T06:41:17Z 2 2020-02-15T06:59:46Z +14920 2005-08-22T05:08:58Z 3357 106 2005-08-23T02:51:58Z 1 2020-02-15T06:59:46Z +14921 2005-08-22T05:12:24Z 3724 284 2005-08-26T08:20:24Z 2 2020-02-15T06:59:46Z +14922 2005-08-22T05:13:05Z 2322 151 2005-08-30T04:59:05Z 1 2020-02-15T06:59:46Z +14923 2005-08-22T05:13:33Z 3434 460 2005-08-28T01:39:33Z 2 2020-02-15T06:59:46Z +14924 2005-08-22T05:15:17Z 4189 118 2005-08-23T10:11:17Z 1 2020-02-15T06:59:46Z +14925 2005-08-22T05:16:16Z 442 128 2005-08-30T02:47:16Z 2 2020-02-15T06:59:46Z +14926 2005-08-22T05:18:44Z 2448 357 2005-08-26T02:18:44Z 1 2020-02-15T06:59:46Z +14927 2005-08-22T05:31:53Z 952 193 2005-08-27T07:04:53Z 1 2020-02-15T06:59:46Z +14928 2006-02-14T15:16:03Z 4375 472 1 2020-02-15T06:59:46Z +14929 2005-08-22T05:32:38Z 4195 546 2005-08-28T00:02:38Z 1 2020-02-15T06:59:46Z +14930 2005-08-22T05:38:32Z 2875 584 2005-08-30T07:21:32Z 1 2020-02-15T06:59:46Z +14931 2005-08-22T05:38:55Z 657 63 2005-08-28T04:15:55Z 2 2020-02-15T06:59:46Z +14932 2005-08-22T05:40:39Z 2259 516 2005-08-23T11:02:39Z 2 2020-02-15T06:59:46Z +14933 2006-02-14T15:16:03Z 1186 21 2 2020-02-15T06:59:46Z +14934 2005-08-22T05:47:15Z 815 226 2005-08-26T11:32:15Z 1 2020-02-15T06:59:46Z +14935 2005-08-22T05:47:31Z 2025 380 2005-08-29T00:33:31Z 2 2020-02-15T06:59:46Z +14936 2005-08-22T05:51:26Z 3710 241 2005-08-29T10:21:26Z 2 2020-02-15T06:59:46Z +14937 2005-08-22T05:51:59Z 1241 348 2005-08-31T01:45:59Z 2 2020-02-15T06:59:46Z +14938 2005-08-22T05:52:39Z 408 541 2005-08-31T11:43:39Z 1 2020-02-15T06:59:46Z +14939 2005-08-22T05:53:52Z 719 328 2005-08-27T06:20:52Z 1 2020-02-15T06:59:46Z +14940 2005-08-22T05:54:03Z 2635 46 2005-08-24T05:52:03Z 2 2020-02-15T06:59:46Z +14941 2005-08-22T05:58:23Z 2328 574 2005-08-28T10:58:23Z 1 2020-02-15T06:59:46Z +14942 2005-08-22T05:58:27Z 32 471 2005-08-31T10:08:27Z 1 2020-02-15T06:59:46Z +14943 2005-08-22T05:59:59Z 3515 265 2005-08-26T10:31:59Z 2 2020-02-15T06:59:46Z +14944 2005-08-22T06:01:26Z 535 153 2005-08-24T10:33:26Z 2 2020-02-15T06:59:46Z +14945 2005-08-22T06:05:38Z 1567 304 2005-08-29T12:01:38Z 1 2020-02-15T06:59:46Z +14946 2005-08-22T06:07:10Z 1395 308 2005-08-28T05:25:10Z 1 2020-02-15T06:59:46Z +14947 2005-08-22T06:07:52Z 3497 68 2005-08-28T01:12:52Z 2 2020-02-15T06:59:46Z +14948 2005-08-22T06:10:53Z 2914 488 2005-08-28T11:24:53Z 2 2020-02-15T06:59:46Z +14949 2005-08-22T06:12:16Z 2434 111 2005-08-25T08:25:16Z 2 2020-02-15T06:59:46Z +14950 2005-08-22T06:17:12Z 635 362 2005-08-27T08:48:12Z 2 2020-02-15T06:59:46Z +14951 2005-08-22T06:19:37Z 2800 197 2005-08-30T05:51:37Z 2 2020-02-15T06:59:46Z +14952 2005-08-22T06:20:07Z 2950 575 2005-08-28T01:18:07Z 1 2020-02-15T06:59:46Z +14953 2005-08-22T06:23:54Z 816 182 2005-08-28T03:19:54Z 1 2020-02-15T06:59:46Z +14954 2006-02-14T15:16:03Z 3608 525 1 2020-02-15T06:59:46Z +14955 2005-08-22T06:25:52Z 1534 445 2005-08-25T12:13:52Z 2 2020-02-15T06:59:46Z +14956 2005-08-22T06:26:16Z 3650 571 2005-08-25T11:06:16Z 2 2020-02-15T06:59:46Z +14957 2005-08-22T06:29:34Z 1384 323 2005-08-26T04:52:34Z 2 2020-02-15T06:59:46Z +14958 2005-08-22T06:30:10Z 1710 347 2005-08-28T09:43:10Z 2 2020-02-15T06:59:46Z +14959 2005-08-22T06:30:28Z 2009 569 2005-08-25T09:48:28Z 1 2020-02-15T06:59:46Z +14960 2005-08-22T06:31:36Z 3316 147 2005-08-29T07:10:36Z 2 2020-02-15T06:59:46Z +14961 2005-08-22T06:35:50Z 3274 52 2005-08-31T04:07:50Z 2 2020-02-15T06:59:46Z +14962 2005-08-22T06:37:43Z 3104 449 2005-08-29T03:44:43Z 2 2020-02-15T06:59:46Z +14963 2005-08-22T06:38:10Z 2672 384 2005-08-31T05:35:10Z 2 2020-02-15T06:59:46Z +14964 2005-08-22T06:39:24Z 2302 500 2005-08-26T06:05:24Z 1 2020-02-15T06:59:46Z +14965 2005-08-22T06:45:53Z 1036 148 2005-08-27T10:05:53Z 1 2020-02-15T06:59:46Z +14966 2005-08-22T06:45:57Z 679 259 2005-08-31T10:02:57Z 1 2020-02-15T06:59:46Z +14967 2005-08-22T06:46:03Z 289 67 2005-08-23T01:02:03Z 2 2020-02-15T06:59:46Z +14968 2005-08-22T06:46:59Z 3302 129 2005-08-29T07:36:59Z 1 2020-02-15T06:59:46Z +14969 2005-08-22T06:49:15Z 4060 120 2005-08-29T05:52:15Z 1 2020-02-15T06:59:46Z +14970 2005-08-22T06:49:29Z 536 529 2005-08-29T08:47:29Z 1 2020-02-15T06:59:46Z +14971 2005-08-22T06:52:49Z 1883 378 2005-08-28T06:27:49Z 2 2020-02-15T06:59:46Z +14972 2005-08-22T06:53:21Z 3422 310 2005-08-29T02:25:21Z 1 2020-02-15T06:59:46Z +14973 2005-08-22T06:59:28Z 2888 201 2005-08-30T02:28:28Z 1 2020-02-15T06:59:46Z +14974 2005-08-22T07:04:25Z 2596 157 2005-08-27T12:39:25Z 1 2020-02-15T06:59:46Z +14975 2005-08-22T07:07:50Z 924 244 2005-08-28T07:23:50Z 2 2020-02-15T06:59:46Z +14976 2005-08-22T07:10:26Z 77 581 2005-08-28T07:22:26Z 1 2020-02-15T06:59:46Z +14977 2005-08-22T07:12:53Z 4093 59 2005-08-30T08:11:53Z 2 2020-02-15T06:59:46Z +14978 2005-08-22T07:13:15Z 699 94 2005-08-25T12:26:15Z 1 2020-02-15T06:59:46Z +14979 2005-08-22T07:16:36Z 2320 387 2005-08-24T02:29:36Z 2 2020-02-15T06:59:46Z +14980 2005-08-22T07:16:45Z 2701 518 2005-08-26T06:04:45Z 2 2020-02-15T06:59:46Z +14981 2005-08-22T07:19:05Z 1239 544 2005-08-26T03:08:05Z 2 2020-02-15T06:59:46Z +14982 2005-08-22T07:20:55Z 2333 542 2005-08-31T04:35:55Z 2 2020-02-15T06:59:46Z +14983 2005-08-22T07:32:23Z 3579 363 2005-08-30T11:39:23Z 2 2020-02-15T06:59:46Z +14984 2005-08-22T07:35:31Z 1704 334 2005-08-30T02:32:31Z 1 2020-02-15T06:59:46Z +14985 2005-08-22T07:35:56Z 2017 29 2005-08-29T13:17:56Z 1 2020-02-15T06:59:46Z +14986 2005-08-22T07:37:24Z 1493 278 2005-08-23T04:22:24Z 2 2020-02-15T06:59:46Z +14987 2005-08-22T07:41:08Z 1513 138 2005-08-24T03:15:08Z 2 2020-02-15T06:59:46Z +14988 2005-08-22T07:46:05Z 2114 186 2005-08-29T06:43:05Z 1 2020-02-15T06:59:46Z +14989 2005-08-22T07:47:07Z 1431 58 2005-08-26T04:42:07Z 2 2020-02-15T06:59:46Z +14990 2005-08-22T07:48:01Z 4057 198 2005-08-24T06:41:01Z 2 2020-02-15T06:59:46Z +14991 2005-08-22T07:50:44Z 708 172 2005-08-30T06:32:44Z 2 2020-02-15T06:59:46Z +14992 2005-08-22T07:51:47Z 4430 415 2005-08-25T08:17:47Z 2 2020-02-15T06:59:46Z +14993 2005-08-22T07:52:18Z 3416 437 2005-08-27T02:13:18Z 1 2020-02-15T06:59:46Z +14994 2005-08-22T07:52:24Z 1601 509 2005-08-26T09:57:24Z 1 2020-02-15T06:59:46Z +14995 2005-08-22T07:52:31Z 4178 482 2005-08-24T05:16:31Z 1 2020-02-15T06:59:46Z +14996 2005-08-22T07:52:41Z 1178 411 2005-08-29T02:35:41Z 1 2020-02-15T06:59:46Z +14997 2005-08-22T07:53:00Z 2724 29 2005-08-28T03:47:00Z 2 2020-02-15T06:59:46Z +14998 2005-08-22T07:53:14Z 3852 92 2005-08-24T03:46:14Z 2 2020-02-15T06:59:46Z +14999 2005-08-22T07:54:47Z 3399 594 2005-08-23T08:39:47Z 1 2020-02-15T06:59:46Z +15000 2005-08-22T07:54:58Z 3080 161 2005-08-24T12:46:58Z 2 2020-02-15T06:59:46Z +15001 2005-08-22T08:00:49Z 2869 186 2005-08-27T05:53:49Z 2 2020-02-15T06:59:46Z +15002 2005-08-22T08:06:00Z 4198 242 2005-08-24T10:48:00Z 1 2020-02-15T06:59:46Z +15003 2005-08-22T08:11:24Z 4009 167 2005-08-28T08:49:24Z 1 2020-02-15T06:59:46Z +15004 2005-08-22T08:15:21Z 4464 375 2005-08-28T10:35:21Z 1 2020-02-15T06:59:46Z +15005 2005-08-22T08:15:44Z 2897 335 2005-08-24T09:52:44Z 2 2020-02-15T06:59:46Z +15006 2005-08-22T08:20:15Z 2967 97 2005-08-23T11:57:15Z 1 2020-02-15T06:59:46Z +15007 2005-08-22T08:21:21Z 3692 165 2005-08-27T04:44:21Z 2 2020-02-15T06:59:46Z +15008 2005-08-22T08:24:32Z 961 277 2005-08-31T13:48:32Z 2 2020-02-15T06:59:46Z +15009 2005-08-22T08:27:27Z 4025 325 2005-08-26T05:57:27Z 2 2020-02-15T06:59:46Z +15010 2005-08-22T08:30:17Z 171 508 2005-08-29T13:24:17Z 2 2020-02-15T06:59:46Z +15011 2005-08-22T08:31:07Z 2722 329 2005-08-24T04:47:07Z 1 2020-02-15T06:59:46Z +15012 2005-08-22T08:42:32Z 1584 454 2005-08-28T05:04:32Z 1 2020-02-15T06:59:46Z +15013 2005-08-22T08:42:45Z 141 141 2005-08-24T05:20:45Z 2 2020-02-15T06:59:46Z +15014 2005-08-22T08:43:11Z 3678 373 2005-08-31T02:55:11Z 1 2020-02-15T06:59:46Z +15015 2005-08-22T08:43:50Z 3067 14 2005-08-31T06:53:50Z 2 2020-02-15T06:59:46Z +15016 2005-08-22T08:47:35Z 879 434 2005-08-28T14:23:35Z 2 2020-02-15T06:59:46Z +15017 2005-08-22T08:47:44Z 3975 144 2005-08-29T08:16:44Z 1 2020-02-15T06:59:46Z +15018 2005-08-22T08:52:38Z 394 504 2005-08-25T08:08:38Z 1 2020-02-15T06:59:46Z +15019 2005-08-22T08:52:53Z 3425 450 2005-08-25T13:07:53Z 2 2020-02-15T06:59:46Z +15020 2005-08-22T08:54:12Z 3460 267 2005-08-27T04:54:12Z 1 2020-02-15T06:59:46Z +15021 2006-02-14T15:16:03Z 418 100 2 2020-02-15T06:59:46Z +15022 2005-08-22T08:55:43Z 249 506 2005-08-31T05:35:43Z 2 2020-02-15T06:59:46Z +15023 2005-08-22T08:56:48Z 358 296 2005-08-29T08:13:48Z 1 2020-02-15T06:59:46Z +15024 2005-08-22T08:57:10Z 1831 139 2005-08-24T10:39:10Z 1 2020-02-15T06:59:46Z +15025 2005-08-22T08:57:24Z 2107 257 2005-08-24T06:09:24Z 2 2020-02-15T06:59:46Z +15026 2005-08-22T09:01:52Z 4328 66 2005-08-28T09:21:52Z 1 2020-02-15T06:59:46Z +15027 2005-08-22T09:03:04Z 326 478 2005-08-29T04:03:04Z 2 2020-02-15T06:59:46Z +15028 2005-08-22T09:03:44Z 4248 37 2005-08-30T11:28:44Z 1 2020-02-15T06:59:46Z +15029 2005-08-22T09:04:53Z 2234 139 2005-08-25T09:03:53Z 1 2020-02-15T06:59:46Z +15030 2005-08-22T09:10:21Z 3168 341 2005-08-24T06:00:21Z 2 2020-02-15T06:59:46Z +15031 2005-08-22T09:11:48Z 3926 430 2005-08-27T06:11:48Z 1 2020-02-15T06:59:46Z +15032 2005-08-22T09:14:09Z 3414 467 2005-08-25T09:50:09Z 2 2020-02-15T06:59:46Z +15033 2005-08-22T09:25:24Z 2431 168 2005-08-28T09:56:24Z 2 2020-02-15T06:59:46Z +15034 2005-08-22T09:33:08Z 1331 235 2005-08-29T13:04:08Z 1 2020-02-15T06:59:46Z +15035 2005-08-22T09:34:32Z 339 513 2005-08-28T10:23:32Z 1 2020-02-15T06:59:46Z +15036 2005-08-22T09:36:00Z 874 280 2005-08-23T08:12:00Z 2 2020-02-15T06:59:46Z +15037 2005-08-22T09:36:33Z 4517 234 2005-08-31T11:20:33Z 2 2020-02-15T06:59:46Z +15038 2005-08-22T09:37:27Z 1685 3 2005-08-23T14:39:27Z 1 2020-02-15T06:59:46Z +15039 2005-08-22T09:37:54Z 895 180 2005-08-28T12:23:54Z 1 2020-02-15T06:59:46Z +15040 2005-08-22T09:41:09Z 3207 523 2005-08-23T12:49:09Z 2 2020-02-15T06:59:46Z +15041 2005-08-22T09:43:18Z 1913 372 2005-08-23T11:04:18Z 2 2020-02-15T06:59:46Z +15042 2005-08-22T09:47:37Z 3796 553 2005-08-31T04:42:37Z 1 2020-02-15T06:59:46Z +15043 2005-08-22T09:49:32Z 3797 182 2005-08-28T13:50:32Z 1 2020-02-15T06:59:46Z +15044 2005-08-22T09:51:54Z 4513 439 2005-08-31T12:45:54Z 1 2020-02-15T06:59:46Z +15045 2005-08-22T09:53:23Z 3485 161 2005-08-26T10:09:23Z 2 2020-02-15T06:59:46Z +15046 2005-08-22T09:54:54Z 1536 474 2005-08-26T07:34:54Z 1 2020-02-15T06:59:46Z +15047 2005-08-22T09:57:16Z 1309 19 2005-08-23T11:39:16Z 1 2020-02-15T06:59:46Z +15048 2005-08-22T10:00:04Z 2895 27 2005-08-26T08:26:04Z 1 2020-02-15T06:59:46Z +15049 2005-08-22T10:06:28Z 1573 102 2005-08-26T15:12:28Z 1 2020-02-15T06:59:46Z +15050 2005-08-22T10:07:52Z 3961 167 2005-08-23T04:45:52Z 1 2020-02-15T06:59:46Z +15051 2005-08-22T10:08:50Z 1419 300 2005-08-28T10:23:50Z 1 2020-02-15T06:59:46Z +15052 2005-08-22T10:09:19Z 2349 147 2005-08-31T09:27:19Z 2 2020-02-15T06:59:46Z +15053 2005-08-22T10:13:09Z 1065 374 2005-08-28T12:42:09Z 2 2020-02-15T06:59:46Z +15054 2005-08-22T10:14:33Z 2314 44 2005-08-25T15:07:33Z 1 2020-02-15T06:59:46Z +15055 2005-08-22T10:14:39Z 623 125 2005-08-25T07:25:39Z 2 2020-02-15T06:59:46Z +15056 2005-08-22T10:15:54Z 1871 503 2005-08-25T07:21:54Z 1 2020-02-15T06:59:46Z +15057 2005-08-22T10:19:58Z 4534 20 2005-08-28T05:12:58Z 1 2020-02-15T06:59:46Z +15058 2005-08-22T10:20:55Z 3537 288 2005-08-26T12:37:55Z 1 2020-02-15T06:59:46Z +15059 2005-08-22T10:22:00Z 4079 564 2005-08-29T07:01:00Z 2 2020-02-15T06:59:46Z +15060 2005-08-22T10:24:32Z 2740 63 2005-08-31T11:17:32Z 2 2020-02-15T06:59:46Z +15061 2005-08-22T10:29:44Z 3436 90 2005-08-24T14:40:44Z 1 2020-02-15T06:59:46Z +15062 2005-08-22T10:34:39Z 4393 139 2005-08-26T13:09:39Z 2 2020-02-15T06:59:46Z +15063 2005-08-22T10:39:51Z 1159 30 2005-08-25T16:03:51Z 2 2020-02-15T06:59:46Z +15064 2005-08-22T10:41:58Z 1233 425 2005-08-28T13:34:58Z 2 2020-02-15T06:59:46Z +15065 2005-08-22T10:46:44Z 468 510 2005-08-27T09:40:44Z 2 2020-02-15T06:59:46Z +15066 2005-08-22T10:49:06Z 2712 530 2005-08-23T10:25:06Z 1 2020-02-15T06:59:46Z +15067 2005-08-22T10:49:21Z 3684 461 2005-08-24T09:01:21Z 1 2020-02-15T06:59:46Z +15068 2005-08-22T10:50:13Z 3268 373 2005-08-26T05:04:13Z 2 2020-02-15T06:59:46Z +15069 2005-08-22T10:55:42Z 592 568 2005-08-28T06:59:42Z 2 2020-02-15T06:59:46Z +15070 2005-08-22T10:55:45Z 2687 441 2005-08-26T09:23:45Z 1 2020-02-15T06:59:46Z +15071 2005-08-22T10:58:43Z 417 541 2005-08-31T14:53:43Z 1 2020-02-15T06:59:46Z +15072 2005-08-22T10:58:45Z 2871 405 2005-08-30T16:18:45Z 1 2020-02-15T06:59:46Z +15073 2005-08-22T11:01:15Z 3970 336 2005-08-31T09:23:15Z 1 2020-02-15T06:59:46Z +15074 2005-08-22T11:02:52Z 3112 567 2005-08-28T07:59:52Z 2 2020-02-15T06:59:46Z +15075 2005-08-22T11:04:52Z 1938 535 2005-08-30T05:06:52Z 1 2020-02-15T06:59:46Z +15076 2005-08-22T11:05:34Z 4170 287 2005-08-27T14:40:34Z 1 2020-02-15T06:59:46Z +15077 2005-08-22T11:09:18Z 3142 503 2005-08-29T08:41:18Z 1 2020-02-15T06:59:46Z +15078 2005-08-22T11:09:31Z 3001 197 2005-08-25T12:16:31Z 1 2020-02-15T06:59:46Z +15079 2005-08-22T11:09:56Z 4552 540 2005-08-24T15:40:56Z 2 2020-02-15T06:59:46Z +15080 2005-08-22T11:11:51Z 927 133 2005-08-23T13:09:51Z 1 2020-02-15T06:59:46Z +15081 2005-08-22T11:14:31Z 2501 313 2005-08-28T14:23:31Z 2 2020-02-15T06:59:46Z +15082 2005-08-22T11:17:06Z 2046 137 2005-08-28T06:40:06Z 1 2020-02-15T06:59:46Z +15083 2005-08-22T11:17:37Z 1691 397 2005-08-28T06:27:37Z 2 2020-02-15T06:59:46Z +15084 2005-08-22T11:17:59Z 821 287 2005-08-23T09:23:59Z 1 2020-02-15T06:59:46Z +15085 2005-08-22T11:19:22Z 1669 67 2005-08-25T09:04:22Z 2 2020-02-15T06:59:46Z +15086 2005-08-22T11:21:08Z 264 494 2005-08-30T08:18:08Z 2 2020-02-15T06:59:46Z +15087 2005-08-22T11:24:09Z 233 404 2005-08-27T16:42:09Z 2 2020-02-15T06:59:46Z +15088 2005-08-22T11:28:26Z 4199 377 2005-08-24T15:46:26Z 2 2020-02-15T06:59:46Z +15089 2005-08-22T11:34:06Z 3288 61 2005-08-31T12:45:06Z 1 2020-02-15T06:59:46Z +15090 2005-08-22T11:34:33Z 2918 582 2005-08-31T06:09:33Z 2 2020-02-15T06:59:46Z +15091 2005-08-22T11:34:43Z 2092 477 2005-08-23T16:52:43Z 2 2020-02-15T06:59:46Z +15092 2005-08-22T11:36:16Z 2418 464 2005-08-28T09:49:16Z 2 2020-02-15T06:59:46Z +15093 2005-08-22T11:39:03Z 3534 60 2005-08-23T06:16:03Z 2 2020-02-15T06:59:46Z +15094 2006-02-14T15:16:03Z 922 424 1 2020-02-15T06:59:46Z +15095 2005-08-22T11:41:35Z 489 202 2005-08-25T16:44:35Z 2 2020-02-15T06:59:46Z +15096 2005-08-22T11:43:04Z 1983 33 2005-08-29T12:16:04Z 2 2020-02-15T06:59:46Z +15097 2005-08-22T11:43:42Z 2838 475 2005-08-27T10:25:42Z 1 2020-02-15T06:59:46Z +15098 2005-08-22T11:48:19Z 4414 88 2005-08-31T11:07:19Z 2 2020-02-15T06:59:46Z +15099 2005-08-22T11:49:16Z 1940 86 2005-08-26T06:38:16Z 2 2020-02-15T06:59:46Z +15100 2005-08-22T11:55:03Z 4489 312 2005-08-25T14:55:03Z 1 2020-02-15T06:59:46Z +15101 2005-08-22T11:56:02Z 683 335 2005-08-28T13:08:02Z 2 2020-02-15T06:59:46Z +15102 2005-08-22T11:58:58Z 2317 555 2005-08-29T08:37:58Z 1 2020-02-15T06:59:46Z +15103 2005-08-22T12:01:06Z 853 101 2005-08-25T14:40:06Z 2 2020-02-15T06:59:46Z +15104 2005-08-22T12:01:16Z 4550 359 2005-08-27T17:48:16Z 1 2020-02-15T06:59:46Z +15105 2005-08-22T12:01:33Z 3965 338 2005-08-26T14:29:33Z 2 2020-02-15T06:59:46Z +15106 2005-08-22T12:01:48Z 399 155 2005-08-27T16:12:48Z 1 2020-02-15T06:59:46Z +15107 2005-08-22T12:05:02Z 2378 376 2005-08-23T11:09:02Z 1 2020-02-15T06:59:46Z +15108 2005-08-22T12:10:07Z 3463 447 2005-08-26T14:46:07Z 2 2020-02-15T06:59:46Z +15109 2005-08-22T12:12:58Z 565 588 2005-08-30T07:20:58Z 1 2020-02-15T06:59:46Z +15110 2005-08-22T12:16:46Z 1379 72 2005-08-26T13:36:46Z 1 2020-02-15T06:59:46Z +15111 2005-08-22T12:21:43Z 4101 119 2005-08-24T09:31:43Z 1 2020-02-15T06:59:46Z +15112 2005-08-22T12:21:49Z 2832 160 2005-08-27T11:03:49Z 1 2020-02-15T06:59:46Z +15113 2005-08-22T12:23:59Z 4338 424 2005-08-27T09:59:59Z 1 2020-02-15T06:59:46Z +15114 2005-08-22T12:24:55Z 2481 121 2005-08-31T17:06:55Z 1 2020-02-15T06:59:46Z +15115 2005-08-22T12:28:01Z 1739 33 2005-08-26T16:12:01Z 1 2020-02-15T06:59:46Z +15116 2005-08-22T12:35:40Z 518 217 2005-08-23T17:58:40Z 1 2020-02-15T06:59:46Z +15117 2005-08-22T12:38:20Z 2502 292 2005-08-27T07:36:20Z 2 2020-02-15T06:59:46Z +15118 2005-08-22T12:38:37Z 2081 473 2005-08-29T14:01:37Z 2 2020-02-15T06:59:46Z +15119 2005-08-22T12:41:33Z 4526 288 2005-08-23T14:44:33Z 2 2020-02-15T06:59:46Z +15120 2005-08-22T12:42:47Z 3083 11 2005-08-23T14:21:47Z 1 2020-02-15T06:59:46Z +15121 2005-08-22T12:46:37Z 2981 415 2005-08-25T17:42:37Z 1 2020-02-15T06:59:46Z +15122 2005-08-22T12:47:45Z 1686 91 2005-08-29T13:18:45Z 2 2020-02-15T06:59:46Z +15123 2005-08-22T12:48:44Z 1455 445 2005-08-27T11:07:44Z 1 2020-02-15T06:59:46Z +15124 2005-08-22T12:51:38Z 1598 39 2005-08-26T09:05:38Z 1 2020-02-15T06:59:46Z +15125 2005-08-22T12:53:22Z 3942 221 2005-08-29T18:44:22Z 1 2020-02-15T06:59:46Z +15126 2005-08-22T12:53:58Z 1902 459 2005-08-28T07:39:58Z 1 2020-02-15T06:59:46Z +15127 2005-08-22T12:56:29Z 2397 287 2005-08-26T10:58:29Z 1 2020-02-15T06:59:46Z +15128 2005-08-22T12:57:26Z 3229 457 2005-08-30T11:35:26Z 2 2020-02-15T06:59:46Z +15129 2005-08-22T13:03:52Z 3782 234 2005-08-29T10:56:52Z 2 2020-02-15T06:59:46Z +15130 2005-08-22T13:04:32Z 2375 536 2005-08-30T17:24:32Z 1 2020-02-15T06:59:46Z +15131 2005-08-22T13:06:26Z 1930 119 2005-08-30T16:43:26Z 1 2020-02-15T06:59:46Z +15132 2005-08-22T13:11:25Z 3474 393 2005-08-27T17:04:25Z 2 2020-02-15T06:59:46Z +15133 2005-08-22T13:17:43Z 3408 137 2005-08-26T08:40:43Z 1 2020-02-15T06:59:46Z +15134 2005-08-22T13:18:25Z 4442 22 2005-08-29T18:03:25Z 1 2020-02-15T06:59:46Z +15135 2005-08-22T13:19:19Z 555 284 2005-08-27T17:09:19Z 2 2020-02-15T06:59:46Z +15136 2005-08-22T13:19:25Z 2606 435 2005-08-24T07:28:25Z 2 2020-02-15T06:59:46Z +15137 2005-08-22T13:20:28Z 856 241 2005-08-26T09:35:28Z 1 2020-02-15T06:59:46Z +15138 2005-08-22T13:36:30Z 2467 50 2005-08-27T15:35:30Z 1 2020-02-15T06:59:46Z +15139 2005-08-22T13:38:11Z 2018 237 2005-08-30T09:00:11Z 1 2020-02-15T06:59:46Z +15140 2005-08-22T13:39:20Z 1402 414 2005-08-30T18:19:20Z 2 2020-02-15T06:59:46Z +15141 2005-08-22T13:41:49Z 227 541 2005-08-28T15:25:49Z 2 2020-02-15T06:59:46Z +15142 2005-08-22T13:44:32Z 1337 351 2005-08-29T14:19:32Z 1 2020-02-15T06:59:46Z +15143 2005-08-22T13:46:24Z 1519 274 2005-08-25T09:47:24Z 2 2020-02-15T06:59:46Z +15144 2005-08-22T13:49:18Z 559 527 2005-08-26T11:11:18Z 2 2020-02-15T06:59:46Z +15145 2005-08-22T13:53:04Z 2179 2 2005-08-31T15:51:04Z 1 2020-02-15T06:59:46Z +15146 2005-08-22T13:57:55Z 3102 72 2005-08-28T12:57:55Z 2 2020-02-15T06:59:46Z +15147 2005-08-22T13:58:23Z 2553 4 2005-08-28T14:33:23Z 2 2020-02-15T06:59:46Z +15148 2005-08-22T13:59:19Z 3704 359 2005-08-31T13:59:19Z 2 2020-02-15T06:59:46Z +15149 2005-08-22T14:08:06Z 3059 537 2005-08-25T08:25:06Z 1 2020-02-15T06:59:46Z +15150 2005-08-22T14:12:05Z 1797 161 2005-08-27T12:47:05Z 1 2020-02-15T06:59:46Z +15151 2005-08-22T14:23:11Z 4070 463 2005-08-30T14:01:11Z 1 2020-02-15T06:59:46Z +15152 2005-08-22T14:25:21Z 739 123 2005-08-31T14:28:21Z 1 2020-02-15T06:59:46Z +15153 2005-08-22T14:26:01Z 1051 512 2005-08-27T14:17:01Z 2 2020-02-15T06:59:46Z +15154 2005-08-22T14:27:37Z 3395 106 2005-08-29T20:04:37Z 2 2020-02-15T06:59:46Z +15155 2005-08-22T14:27:46Z 2641 43 2005-08-23T17:46:46Z 2 2020-02-15T06:59:46Z +15156 2005-08-22T14:29:11Z 1174 494 2005-08-30T17:48:11Z 2 2020-02-15T06:59:46Z +15157 2005-08-22T14:30:09Z 1909 580 2005-08-29T18:28:09Z 1 2020-02-15T06:59:46Z +15158 2005-08-22T14:30:39Z 3614 588 2005-08-27T15:55:39Z 1 2020-02-15T06:59:46Z +15159 2005-08-22T14:32:25Z 4355 525 2005-08-24T11:19:25Z 2 2020-02-15T06:59:46Z +15160 2005-08-22T14:33:50Z 4321 249 2005-08-28T11:26:50Z 1 2020-02-15T06:59:46Z +15161 2005-08-22T14:37:22Z 1445 20 2005-08-27T17:40:22Z 1 2020-02-15T06:59:46Z +15162 2005-08-22T14:41:05Z 1756 439 2005-08-27T20:23:05Z 2 2020-02-15T06:59:46Z +15163 2005-08-22T14:43:13Z 3597 100 2005-08-26T14:26:13Z 1 2020-02-15T06:59:46Z +15164 2005-08-22T14:47:53Z 997 193 2005-08-25T16:05:53Z 1 2020-02-15T06:59:46Z +15165 2005-08-22T14:59:30Z 3664 168 2005-08-29T15:46:30Z 2 2020-02-15T06:59:46Z +15166 2005-08-22T15:05:37Z 1530 504 2005-08-30T12:22:37Z 2 2020-02-15T06:59:46Z +15167 2006-02-14T15:16:03Z 973 190 2 2020-02-15T06:59:46Z +15168 2005-08-22T15:14:20Z 3218 526 2005-08-25T20:12:20Z 2 2020-02-15T06:59:46Z +15169 2005-08-22T15:21:56Z 794 76 2005-08-28T09:40:56Z 1 2020-02-15T06:59:46Z +15170 2005-08-22T15:22:15Z 2123 521 2005-08-23T20:32:15Z 1 2020-02-15T06:59:46Z +15171 2005-08-22T15:23:59Z 1201 119 2005-08-28T12:05:59Z 2 2020-02-15T06:59:46Z +15172 2005-08-22T15:25:33Z 2367 511 2005-08-23T17:29:33Z 1 2020-02-15T06:59:46Z +15173 2005-08-22T15:26:29Z 2585 338 2005-08-29T14:03:29Z 1 2020-02-15T06:59:46Z +15174 2005-08-22T15:26:36Z 19 111 2005-08-31T10:47:36Z 2 2020-02-15T06:59:46Z +15175 2005-08-22T15:29:15Z 4318 380 2005-08-27T15:11:15Z 2 2020-02-15T06:59:46Z +15176 2005-08-22T15:30:25Z 3063 115 2005-08-31T20:00:25Z 1 2020-02-15T06:59:46Z +15177 2005-08-22T15:34:49Z 838 493 2005-08-26T12:54:49Z 1 2020-02-15T06:59:46Z +15178 2005-08-22T15:36:04Z 1745 15 2005-08-26T21:00:04Z 2 2020-02-15T06:59:46Z +15179 2005-08-22T15:36:22Z 450 328 2005-08-31T19:57:22Z 1 2020-02-15T06:59:46Z +15180 2005-08-22T15:42:57Z 234 532 2005-08-24T12:49:57Z 2 2020-02-15T06:59:46Z +15181 2005-08-22T15:46:20Z 3900 266 2005-08-27T09:56:20Z 1 2020-02-15T06:59:46Z +15182 2005-08-22T15:47:05Z 645 443 2005-08-25T11:55:05Z 1 2020-02-15T06:59:46Z +15183 2005-08-22T15:49:54Z 2696 268 2005-08-25T12:29:54Z 1 2020-02-15T06:59:46Z +15184 2005-08-22T15:51:12Z 1193 471 2005-08-24T19:23:12Z 2 2020-02-15T06:59:46Z +15185 2005-08-22T15:52:50Z 2948 472 2005-08-31T20:38:50Z 1 2020-02-15T06:59:46Z +15186 2005-08-22T15:52:57Z 1323 104 2005-08-24T21:12:57Z 1 2020-02-15T06:59:46Z +15187 2005-08-22T15:53:32Z 2338 461 2005-08-27T14:21:32Z 1 2020-02-15T06:59:46Z +15188 2005-08-22T15:55:48Z 131 478 2005-08-29T19:10:48Z 1 2020-02-15T06:59:46Z +15189 2005-08-22T15:56:42Z 2559 398 2005-08-29T12:20:42Z 1 2020-02-15T06:59:46Z +15190 2005-08-22T15:57:38Z 2096 84 2005-08-24T13:46:38Z 1 2020-02-15T06:59:46Z +15191 2006-02-14T15:16:03Z 3688 75 1 2020-02-15T06:59:46Z +15192 2005-08-22T16:06:23Z 4213 216 2005-08-27T13:12:23Z 1 2020-02-15T06:59:46Z +15193 2005-08-22T16:06:49Z 1033 40 2005-08-25T17:23:49Z 1 2020-02-15T06:59:46Z +15194 2005-08-22T16:07:34Z 1217 332 2005-08-26T19:16:34Z 1 2020-02-15T06:59:46Z +15195 2005-08-22T16:08:23Z 1080 508 2005-08-30T17:56:23Z 2 2020-02-15T06:59:46Z +15196 2005-08-22T16:11:32Z 1413 181 2005-08-30T22:06:32Z 1 2020-02-15T06:59:46Z +15197 2005-08-22T16:14:25Z 2915 159 2005-08-26T16:22:25Z 2 2020-02-15T06:59:46Z +15198 2005-08-22T16:15:33Z 1253 396 2005-08-29T20:49:33Z 1 2020-02-15T06:59:46Z +15199 2005-08-22T16:17:49Z 18 216 2005-08-25T20:12:49Z 1 2020-02-15T06:59:46Z +15200 2005-08-22T16:22:53Z 1000 374 2005-08-24T10:25:53Z 2 2020-02-15T06:59:46Z +15201 2005-08-22T16:24:42Z 4456 301 2005-08-31T17:54:42Z 1 2020-02-15T06:59:46Z +15202 2005-08-22T16:26:53Z 2119 374 2005-08-23T13:49:53Z 2 2020-02-15T06:59:46Z +15203 2005-08-22T16:28:00Z 743 568 2005-08-26T16:55:00Z 2 2020-02-15T06:59:46Z +15204 2005-08-22T16:30:43Z 1471 317 2005-08-26T20:37:43Z 2 2020-02-15T06:59:46Z +15205 2005-08-22T16:32:23Z 3276 489 2005-08-27T16:08:23Z 1 2020-02-15T06:59:46Z +15206 2005-08-22T16:33:39Z 3901 524 2005-08-31T11:41:39Z 1 2020-02-15T06:59:46Z +15207 2005-08-22T16:35:25Z 1149 442 2005-08-23T14:06:25Z 1 2020-02-15T06:59:46Z +15208 2005-08-22T16:35:47Z 4346 267 2005-08-30T15:16:47Z 1 2020-02-15T06:59:46Z +15209 2005-08-22T16:37:32Z 1620 588 2005-08-25T19:04:32Z 1 2020-02-15T06:59:46Z +15210 2005-08-22T16:37:36Z 3811 332 2005-08-29T11:54:36Z 1 2020-02-15T06:59:46Z +15211 2005-08-22T16:40:21Z 3025 410 2005-08-28T13:33:21Z 2 2020-02-15T06:59:46Z +15212 2005-08-22T16:44:26Z 2182 562 2005-08-27T20:26:26Z 1 2020-02-15T06:59:46Z +15213 2005-08-22T16:49:02Z 2002 166 2005-08-31T20:22:02Z 1 2020-02-15T06:59:46Z +15214 2005-08-22T16:53:29Z 1500 574 2005-08-24T14:17:29Z 1 2020-02-15T06:59:46Z +15215 2005-08-22T16:55:26Z 1906 344 2005-08-25T20:19:26Z 1 2020-02-15T06:59:46Z +15216 2005-08-22T16:57:02Z 1633 166 2005-08-24T16:11:02Z 2 2020-02-15T06:59:46Z +15217 2005-08-22T16:58:31Z 91 90 2005-08-23T22:33:31Z 1 2020-02-15T06:59:46Z +15218 2005-08-22T16:59:05Z 10 139 2005-08-30T17:01:05Z 1 2020-02-15T06:59:46Z +15219 2005-08-22T17:00:31Z 3313 544 2005-08-31T20:16:31Z 1 2020-02-15T06:59:46Z +15220 2005-08-22T17:02:23Z 187 128 2005-08-28T21:02:23Z 1 2020-02-15T06:59:46Z +15221 2005-08-22T17:12:29Z 110 253 2005-08-24T20:46:29Z 2 2020-02-15T06:59:46Z +15222 2005-08-22T17:12:30Z 1360 390 2005-08-27T15:10:30Z 2 2020-02-15T06:59:46Z +15223 2005-08-22T17:13:39Z 2263 541 2005-08-27T11:17:39Z 2 2020-02-15T06:59:46Z +15224 2005-08-22T17:18:05Z 33 81 2005-08-29T14:35:05Z 2 2020-02-15T06:59:46Z +15225 2005-08-22T17:18:32Z 1646 224 2005-08-24T17:25:32Z 1 2020-02-15T06:59:46Z +15226 2005-08-22T17:20:17Z 318 54 2005-08-31T15:36:17Z 1 2020-02-15T06:59:46Z +15227 2005-08-22T17:22:41Z 2987 151 2005-08-23T20:59:41Z 1 2020-02-15T06:59:46Z +15228 2005-08-22T17:27:23Z 2485 48 2005-08-29T11:38:23Z 2 2020-02-15T06:59:46Z +15229 2005-08-22T17:30:25Z 320 63 2005-08-23T14:13:25Z 1 2020-02-15T06:59:46Z +15230 2005-08-22T17:31:41Z 2572 466 2005-08-25T21:57:41Z 2 2020-02-15T06:59:46Z +15231 2005-08-22T17:32:57Z 2980 187 2005-08-25T13:06:57Z 1 2020-02-15T06:59:46Z +15232 2005-08-22T17:37:02Z 61 5 2005-08-25T18:45:02Z 1 2020-02-15T06:59:46Z +15233 2005-08-22T17:41:53Z 4405 197 2005-08-24T12:59:53Z 2 2020-02-15T06:59:46Z +15234 2006-02-14T15:16:03Z 908 228 2 2020-02-15T06:59:46Z +15235 2005-08-22T17:43:12Z 2726 416 2005-08-29T23:03:12Z 2 2020-02-15T06:59:46Z +15236 2005-08-22T17:44:27Z 4124 557 2005-08-24T23:25:27Z 1 2020-02-15T06:59:46Z +15237 2005-08-22T17:44:30Z 4485 148 2005-08-24T12:51:30Z 1 2020-02-15T06:59:46Z +15238 2005-08-22T17:46:12Z 403 70 2005-08-29T16:41:12Z 1 2020-02-15T06:59:46Z +15239 2005-08-22T17:46:17Z 1809 501 2005-08-26T19:03:17Z 1 2020-02-15T06:59:46Z +15240 2005-08-22T17:46:41Z 2014 11 2005-08-23T15:08:41Z 2 2020-02-15T06:59:46Z +15241 2005-08-22T17:47:40Z 832 337 2005-08-29T15:28:40Z 2 2020-02-15T06:59:46Z +15242 2005-08-22T17:48:10Z 2106 364 2005-08-27T23:32:10Z 1 2020-02-15T06:59:46Z +15243 2005-08-22T17:48:28Z 4408 308 2005-08-31T13:22:28Z 1 2020-02-15T06:59:46Z +15244 2005-08-22T17:48:42Z 1486 271 2005-08-28T13:17:42Z 2 2020-02-15T06:59:46Z +15245 2005-08-22T17:49:35Z 2545 298 2005-08-26T18:25:35Z 2 2020-02-15T06:59:46Z +15246 2005-08-22T17:50:49Z 3786 100 2005-08-30T22:21:49Z 1 2020-02-15T06:59:46Z +15247 2005-08-22T17:52:05Z 4572 250 2005-08-31T21:37:05Z 1 2020-02-15T06:59:46Z +15248 2005-08-22T17:53:06Z 977 20 2005-08-25T18:43:06Z 2 2020-02-15T06:59:46Z +15249 2005-08-22T17:58:27Z 121 444 2005-08-30T14:55:27Z 1 2020-02-15T06:59:46Z +15250 2005-08-22T18:03:11Z 2176 143 2005-08-27T12:19:11Z 2 2020-02-15T06:59:46Z +15251 2005-08-22T18:03:57Z 1994 285 2005-08-23T20:56:57Z 2 2020-02-15T06:59:46Z +15252 2005-08-22T18:04:22Z 1821 453 2005-08-25T17:14:22Z 2 2020-02-15T06:59:46Z +15253 2005-08-22T18:05:21Z 4143 333 2005-08-23T18:06:21Z 2 2020-02-15T06:59:46Z +15254 2005-08-22T18:13:07Z 3762 209 2005-08-24T21:55:07Z 1 2020-02-15T06:59:46Z +15255 2005-08-22T18:16:50Z 3415 84 2005-08-28T14:14:50Z 2 2020-02-15T06:59:46Z +15256 2005-08-22T18:20:07Z 1873 198 2005-08-28T12:57:07Z 1 2020-02-15T06:59:46Z +15257 2005-08-22T18:21:04Z 915 223 2005-08-30T20:13:04Z 1 2020-02-15T06:59:46Z +15258 2005-08-22T18:22:44Z 788 293 2005-08-25T16:54:44Z 1 2020-02-15T06:59:46Z +15259 2005-08-22T18:23:23Z 3261 488 2005-08-27T13:06:23Z 1 2020-02-15T06:59:46Z +15260 2005-08-22T18:24:16Z 3135 274 2005-08-24T21:26:16Z 1 2020-02-15T06:59:46Z +15261 2005-08-22T18:24:34Z 2200 140 2005-08-27T19:53:34Z 1 2020-02-15T06:59:46Z +15262 2005-08-22T18:25:21Z 2534 298 2005-08-28T22:19:21Z 1 2020-02-15T06:59:46Z +15263 2005-08-22T18:27:33Z 184 324 2005-08-30T14:05:33Z 1 2020-02-15T06:59:46Z +15264 2005-08-22T18:27:38Z 4459 440 2005-08-24T12:39:38Z 1 2020-02-15T06:59:46Z +15265 2005-08-22T18:35:59Z 1763 512 2005-08-28T21:18:59Z 2 2020-02-15T06:59:46Z +15266 2005-08-22T18:37:24Z 1870 124 2005-08-23T17:34:24Z 2 2020-02-15T06:59:46Z +15267 2005-08-22T18:37:48Z 2966 153 2005-08-24T00:22:48Z 1 2020-02-15T06:59:46Z +15268 2005-08-22T18:39:11Z 1245 301 2005-08-26T21:46:11Z 1 2020-02-15T06:59:46Z +15269 2005-08-22T18:39:44Z 524 275 2005-08-24T17:29:44Z 1 2020-02-15T06:59:46Z +15270 2005-08-22T18:48:42Z 4123 262 2005-08-28T15:38:42Z 2 2020-02-15T06:59:47Z +15271 2005-08-22T18:48:48Z 4232 59 2005-08-30T00:45:48Z 2 2020-02-15T06:59:47Z +15272 2005-08-22T18:49:40Z 1664 422 2005-08-28T21:22:40Z 1 2020-02-15T06:59:47Z +15273 2005-08-22T18:53:28Z 2558 422 2005-08-30T18:58:28Z 2 2020-02-15T06:59:47Z +15274 2005-08-22T18:55:52Z 3519 515 2005-08-23T20:02:52Z 1 2020-02-15T06:59:47Z +15275 2005-08-22T18:57:39Z 1522 597 2005-08-23T19:00:39Z 2 2020-02-15T06:59:47Z +15276 2005-08-22T18:59:01Z 4523 490 2005-08-23T19:49:01Z 2 2020-02-15T06:59:47Z +15277 2005-08-22T19:02:48Z 1780 217 2005-08-31T18:53:48Z 2 2020-02-15T06:59:47Z +15278 2005-08-22T19:06:47Z 2454 472 2005-08-25T01:00:47Z 2 2020-02-15T06:59:47Z +15279 2005-08-22T19:08:49Z 1088 363 2005-08-30T00:38:49Z 2 2020-02-15T06:59:47Z +15280 2005-08-22T19:09:52Z 3464 317 2005-08-28T00:39:52Z 1 2020-02-15T06:59:47Z +15281 2005-08-22T19:10:26Z 3992 543 2005-08-27T21:55:26Z 2 2020-02-15T06:59:47Z +15282 2006-02-14T15:16:03Z 1932 163 1 2020-02-15T06:59:47Z +15283 2005-08-22T19:16:04Z 1688 219 2005-08-31T21:05:04Z 1 2020-02-15T06:59:47Z +15284 2005-08-22T19:17:08Z 2265 393 2005-08-29T13:28:08Z 2 2020-02-15T06:59:47Z +15285 2005-08-22T19:17:24Z 481 233 2005-08-25T00:25:24Z 1 2020-02-15T06:59:47Z +15286 2005-08-22T19:17:56Z 3731 74 2005-08-29T16:08:56Z 2 2020-02-15T06:59:47Z +15287 2005-08-22T19:19:37Z 308 535 2005-08-29T16:05:37Z 1 2020-02-15T06:59:47Z +15288 2005-08-22T19:23:58Z 1999 475 2005-08-26T23:28:58Z 1 2020-02-15T06:59:47Z +15289 2005-08-22T19:27:24Z 1026 513 2005-08-30T22:21:24Z 1 2020-02-15T06:59:47Z +15290 2005-08-22T19:28:02Z 270 404 2005-08-31T20:04:02Z 2 2020-02-15T06:59:47Z +15291 2005-08-22T19:28:04Z 1461 494 2005-08-26T15:07:04Z 1 2020-02-15T06:59:47Z +15292 2005-08-22T19:28:56Z 3072 337 2005-08-28T22:39:56Z 2 2020-02-15T06:59:47Z +15293 2006-02-14T15:16:03Z 1219 263 2 2020-02-15T06:59:47Z +15294 2006-02-14T15:16:03Z 70 108 1 2020-02-15T06:59:47Z +15295 2005-08-22T19:36:21Z 2164 186 2005-08-31T00:07:21Z 2 2020-02-15T06:59:47Z +15296 2005-08-22T19:37:20Z 2715 55 2005-08-24T15:16:20Z 1 2020-02-15T06:59:47Z +15297 2006-02-14T15:16:03Z 3192 327 2 2020-02-15T06:59:47Z +15298 2005-08-22T19:41:37Z 1446 1 2005-08-28T22:49:37Z 1 2020-02-15T06:59:47Z +15299 2005-08-22T19:42:57Z 767 381 2005-08-23T15:29:57Z 2 2020-02-15T06:59:47Z +15300 2005-08-22T19:44:00Z 2319 399 2005-08-25T22:49:00Z 2 2020-02-15T06:59:47Z +15301 2005-08-22T19:44:16Z 619 454 2005-08-26T22:57:16Z 2 2020-02-15T06:59:47Z +15302 2005-08-22T19:44:53Z 188 320 2005-08-24T18:13:53Z 2 2020-02-15T06:59:47Z +15303 2005-08-22T19:44:59Z 1672 390 2005-08-30T21:59:59Z 1 2020-02-15T06:59:47Z +15304 2005-08-22T19:45:57Z 4332 112 2005-08-28T00:21:57Z 2 2020-02-15T06:59:47Z +15305 2005-08-22T19:46:05Z 671 529 2005-08-27T19:11:05Z 2 2020-02-15T06:59:47Z +15306 2005-08-22T19:46:36Z 521 340 2005-08-27T14:09:36Z 1 2020-02-15T06:59:47Z +15307 2005-08-22T19:54:26Z 4525 598 2005-08-29T01:38:26Z 2 2020-02-15T06:59:47Z +15308 2005-08-22T19:54:31Z 987 329 2005-08-26T23:09:31Z 1 2020-02-15T06:59:47Z +15309 2005-08-22T19:54:52Z 2743 141 2005-08-24T23:00:52Z 2 2020-02-15T06:59:47Z +15310 2005-08-22T19:56:41Z 2546 360 2005-08-24T16:32:41Z 2 2020-02-15T06:59:47Z +15311 2005-08-22T19:56:52Z 3612 176 2005-08-31T20:15:52Z 2 2020-02-15T06:59:47Z +15312 2005-08-22T19:58:15Z 2509 280 2005-08-25T19:21:15Z 2 2020-02-15T06:59:47Z +15313 2005-08-22T19:59:42Z 2587 333 2005-08-24T15:03:42Z 2 2020-02-15T06:59:47Z +15314 2006-02-14T15:16:03Z 2754 412 1 2020-02-15T06:59:47Z +15315 2005-08-22T20:03:46Z 312 1 2005-08-30T01:51:46Z 2 2020-02-15T06:59:47Z +15316 2005-08-22T20:07:03Z 1830 422 2005-08-27T18:45:03Z 1 2020-02-15T06:59:47Z +15317 2005-08-22T20:14:13Z 2325 512 2005-08-29T18:32:13Z 1 2020-02-15T06:59:47Z +15318 2005-08-22T20:15:16Z 1738 60 2005-08-25T14:17:16Z 1 2020-02-15T06:59:47Z +15319 2005-08-22T20:17:17Z 3041 188 2005-08-25T01:06:17Z 2 2020-02-15T06:59:47Z +15320 2005-08-22T20:17:49Z 648 407 2005-08-28T17:31:49Z 1 2020-02-15T06:59:47Z +15321 2005-08-22T20:20:04Z 4152 384 2005-08-24T23:26:04Z 2 2020-02-15T06:59:47Z +15322 2005-08-22T20:20:30Z 3553 263 2005-08-25T01:26:30Z 2 2020-02-15T06:59:47Z +15323 2005-08-22T20:22:40Z 1153 178 2005-08-26T00:35:40Z 1 2020-02-15T06:59:47Z +15324 2005-08-22T20:23:13Z 161 93 2005-08-29T18:23:13Z 1 2020-02-15T06:59:47Z +15325 2005-08-22T20:27:38Z 3549 74 2005-08-23T15:24:38Z 1 2020-02-15T06:59:47Z +15326 2006-02-14T15:16:03Z 3320 58 1 2020-02-15T06:59:47Z +15327 2005-08-22T20:31:24Z 1018 450 2005-08-30T23:52:24Z 1 2020-02-15T06:59:47Z +15328 2005-08-22T20:31:38Z 4546 274 2005-08-29T20:17:38Z 1 2020-02-15T06:59:47Z +15329 2005-08-22T20:32:39Z 1900 521 2005-08-23T17:15:39Z 1 2020-02-15T06:59:47Z +15330 2005-08-22T20:35:30Z 689 427 2005-08-30T21:54:30Z 1 2020-02-15T06:59:47Z +15331 2005-08-22T20:37:57Z 146 147 2005-08-25T21:56:57Z 1 2020-02-15T06:59:47Z +15332 2005-08-22T20:41:53Z 3368 162 2005-08-24T01:45:53Z 1 2020-02-15T06:59:47Z +15333 2005-08-22T20:44:06Z 1839 142 2005-08-29T22:34:06Z 2 2020-02-15T06:59:47Z +15334 2005-08-22T20:44:35Z 3882 407 2005-08-29T23:03:35Z 2 2020-02-15T06:59:47Z +15335 2005-08-22T20:44:55Z 1593 363 2005-08-28T21:43:55Z 1 2020-02-15T06:59:47Z +15336 2005-08-22T20:47:48Z 490 461 2005-08-31T18:17:48Z 2 2020-02-15T06:59:47Z +15337 2005-08-22T20:49:51Z 280 237 2005-08-26T23:27:51Z 1 2020-02-15T06:59:47Z +15338 2005-08-22T20:51:24Z 502 13 2005-08-24T23:41:24Z 2 2020-02-15T06:59:47Z +15339 2005-08-22T20:52:12Z 1660 331 2005-08-26T00:36:12Z 2 2020-02-15T06:59:47Z +15340 2005-08-22T20:55:56Z 3653 313 2005-08-27T18:52:56Z 1 2020-02-15T06:59:47Z +15341 2005-08-22T20:56:31Z 3359 91 2005-08-30T17:25:31Z 1 2020-02-15T06:59:47Z +15342 2005-08-22T20:56:41Z 3287 459 2005-08-26T22:51:41Z 2 2020-02-15T06:59:47Z +15343 2005-08-22T21:01:25Z 2589 538 2005-08-28T16:15:25Z 1 2020-02-15T06:59:47Z +15344 2005-08-22T21:01:48Z 3560 193 2005-08-27T15:47:48Z 1 2020-02-15T06:59:47Z +15345 2005-08-22T21:05:50Z 3481 277 2005-08-26T20:30:50Z 1 2020-02-15T06:59:47Z +15346 2005-08-22T21:06:00Z 3525 266 2005-08-28T22:08:00Z 1 2020-02-15T06:59:47Z +15347 2005-08-22T21:12:19Z 3764 519 2005-08-24T20:12:19Z 1 2020-02-15T06:59:47Z +15348 2005-08-22T21:13:46Z 3846 587 2005-08-24T17:06:46Z 1 2020-02-15T06:59:47Z +15349 2005-08-22T21:13:51Z 4055 587 2005-08-23T20:55:51Z 1 2020-02-15T06:59:47Z +15350 2005-08-22T21:15:29Z 1170 488 2005-08-24T02:56:29Z 1 2020-02-15T06:59:47Z +15351 2005-08-22T21:15:46Z 3260 154 2005-08-23T17:38:46Z 1 2020-02-15T06:59:47Z +15352 2005-08-22T21:16:54Z 16 560 2005-08-31T00:38:54Z 2 2020-02-15T06:59:47Z +15353 2005-08-22T21:18:08Z 3470 368 2005-08-25T20:29:08Z 2 2020-02-15T06:59:47Z +15354 2005-08-22T21:18:59Z 4212 412 2005-08-27T20:12:59Z 2 2020-02-15T06:59:47Z +15355 2005-08-22T21:19:24Z 3477 493 2005-08-28T20:36:24Z 2 2020-02-15T06:59:47Z +15356 2005-08-22T21:24:19Z 4507 539 2005-08-25T22:32:19Z 2 2020-02-15T06:59:47Z +15357 2005-08-22T21:28:59Z 727 24 2005-08-25T17:15:59Z 1 2020-02-15T06:59:47Z +15358 2005-08-22T21:29:14Z 822 448 2005-08-31T00:10:14Z 2 2020-02-15T06:59:47Z +15359 2005-08-22T21:34:00Z 4505 77 2005-08-29T18:59:00Z 1 2020-02-15T06:59:47Z +15360 2005-08-22T21:36:51Z 1950 531 2005-08-24T16:46:51Z 1 2020-02-15T06:59:47Z +15361 2005-08-22T21:39:45Z 1407 380 2005-08-23T17:32:45Z 2 2020-02-15T06:59:47Z +15362 2005-08-22T21:40:20Z 1023 497 2005-08-29T15:55:20Z 1 2020-02-15T06:59:47Z +15363 2005-08-22T21:41:40Z 2326 480 2005-08-23T21:40:40Z 1 2020-02-15T06:59:47Z +15364 2005-08-22T21:41:41Z 4184 204 2005-08-28T00:49:41Z 1 2020-02-15T06:59:47Z +15365 2005-08-22T21:42:17Z 3382 327 2005-09-01T03:14:17Z 2 2020-02-15T06:59:47Z +15366 2005-08-22T21:45:57Z 1453 374 2005-08-30T16:35:57Z 1 2020-02-15T06:59:47Z +15367 2005-08-22T21:47:53Z 160 355 2005-08-27T17:54:53Z 2 2020-02-15T06:59:47Z +15368 2005-08-22T21:57:15Z 1130 370 2005-08-29T16:28:15Z 1 2020-02-15T06:59:47Z +15369 2005-08-22T21:58:06Z 881 121 2005-08-26T00:27:06Z 2 2020-02-15T06:59:47Z +15370 2005-08-22T21:59:29Z 67 10 2005-08-27T16:32:29Z 1 2020-02-15T06:59:47Z +15371 2006-02-14T15:16:03Z 3672 94 2 2020-02-15T06:59:47Z +15372 2005-08-22T21:59:51Z 3876 273 2005-08-23T17:01:51Z 1 2020-02-15T06:59:47Z +15373 2005-08-22T22:08:11Z 4439 14 2005-08-24T01:05:11Z 2 2020-02-15T06:59:47Z +15374 2005-08-22T22:09:09Z 4275 8 2005-08-31T01:10:09Z 1 2020-02-15T06:59:47Z +15375 2005-08-22T22:12:02Z 3864 191 2005-08-24T00:50:02Z 2 2020-02-15T06:59:47Z +15376 2005-08-22T22:21:35Z 2963 390 2005-08-28T20:56:35Z 1 2020-02-15T06:59:47Z +15377 2005-08-22T22:22:33Z 3405 551 2005-08-29T18:41:33Z 1 2020-02-15T06:59:47Z +15378 2005-08-22T22:25:17Z 1483 340 2005-08-30T17:04:17Z 1 2020-02-15T06:59:47Z +15379 2005-08-22T22:26:13Z 1899 148 2005-08-31T18:19:13Z 1 2020-02-15T06:59:47Z +15380 2005-08-22T22:28:15Z 3642 423 2005-08-28T23:21:15Z 1 2020-02-15T06:59:47Z +15381 2005-08-22T22:28:36Z 845 110 2005-08-24T19:26:36Z 2 2020-02-15T06:59:47Z +15382 2005-08-22T22:30:50Z 333 376 2005-08-24T04:07:50Z 2 2020-02-15T06:59:47Z +15383 2005-08-22T22:31:20Z 686 405 2005-08-28T17:43:20Z 1 2020-02-15T06:59:47Z +15384 2005-08-22T22:34:44Z 3208 26 2005-08-23T23:25:44Z 2 2020-02-15T06:59:47Z +15385 2005-08-22T22:37:34Z 140 434 2005-08-26T00:36:34Z 2 2020-02-15T06:59:47Z +15386 2005-08-22T22:41:14Z 3056 327 2005-08-29T22:29:14Z 1 2020-02-15T06:59:47Z +15387 2005-08-22T22:49:13Z 3879 323 2005-08-29T01:49:13Z 2 2020-02-15T06:59:47Z +15388 2005-08-22T22:49:23Z 3995 50 2005-09-01T03:50:23Z 2 2020-02-15T06:59:47Z +15389 2005-08-22T22:51:13Z 2077 231 2005-08-28T23:46:13Z 1 2020-02-15T06:59:47Z +15390 2005-08-22T22:57:25Z 462 551 2005-08-31T18:06:25Z 1 2020-02-15T06:59:47Z +15391 2005-08-22T23:01:45Z 3918 482 2005-08-29T02:59:45Z 2 2020-02-15T06:59:47Z +15392 2005-08-22T23:02:15Z 538 410 2005-09-01T01:14:15Z 2 2020-02-15T06:59:47Z +15393 2005-08-22T23:04:09Z 2924 443 2005-08-27T02:23:09Z 2 2020-02-15T06:59:47Z +15394 2005-08-22T23:04:21Z 3455 507 2005-08-25T20:53:21Z 2 2020-02-15T06:59:47Z +15395 2005-08-22T23:06:25Z 2880 526 2005-08-30T19:18:25Z 1 2020-02-15T06:59:47Z +15396 2005-08-22T23:07:57Z 4050 319 2005-08-28T19:39:57Z 2 2020-02-15T06:59:47Z +15397 2005-08-22T23:08:46Z 1482 261 2005-08-25T20:58:46Z 1 2020-02-15T06:59:47Z +15398 2005-08-22T23:10:49Z 4451 109 2005-08-28T00:49:49Z 2 2020-02-15T06:59:47Z +15399 2005-08-22T23:11:59Z 3858 379 2005-08-26T22:16:59Z 2 2020-02-15T06:59:47Z +15400 2005-08-22T23:13:03Z 2664 473 2005-08-28T18:34:03Z 1 2020-02-15T06:59:47Z +15401 2005-08-22T23:13:10Z 1721 103 2005-09-01T03:44:10Z 1 2020-02-15T06:59:47Z +15402 2005-08-22T23:17:41Z 1575 293 2005-08-30T20:07:41Z 2 2020-02-15T06:59:47Z +15403 2005-08-22T23:18:10Z 4315 581 2005-08-23T18:08:10Z 2 2020-02-15T06:59:47Z +15404 2005-08-22T23:19:44Z 3557 211 2005-08-30T19:58:44Z 2 2020-02-15T06:59:47Z +15405 2005-08-22T23:20:41Z 3263 596 2005-08-25T23:53:41Z 1 2020-02-15T06:59:47Z +15406 2005-08-22T23:21:22Z 400 227 2005-08-28T22:21:22Z 1 2020-02-15T06:59:47Z +15407 2006-02-14T15:16:03Z 3330 42 2 2020-02-15T06:59:47Z +15408 2005-08-22T23:26:32Z 165 156 2005-08-30T20:22:32Z 1 2020-02-15T06:59:47Z +15409 2005-08-22T23:26:32Z 560 188 2005-08-24T22:44:32Z 1 2020-02-15T06:59:47Z +15410 2005-08-22T23:27:43Z 2052 403 2005-08-29T05:12:43Z 2 2020-02-15T06:59:47Z +15411 2005-08-22T23:35:41Z 4423 461 2005-08-26T00:51:41Z 1 2020-02-15T06:59:47Z +15412 2005-08-22T23:37:11Z 1267 199 2005-08-28T23:26:11Z 2 2020-02-15T06:59:47Z +15413 2005-08-22T23:38:01Z 2494 476 2005-08-23T19:27:01Z 2 2020-02-15T06:59:47Z +15414 2005-08-22T23:43:54Z 718 532 2005-08-30T18:26:54Z 1 2020-02-15T06:59:47Z +15415 2005-08-22T23:48:56Z 4176 204 2005-09-01T02:05:56Z 1 2020-02-15T06:59:47Z +15416 2005-08-22T23:51:23Z 1167 383 2005-08-29T20:03:23Z 1 2020-02-15T06:59:47Z +15417 2005-08-22T23:54:04Z 1826 305 2005-08-26T22:25:04Z 1 2020-02-15T06:59:47Z +15418 2005-08-22T23:54:14Z 808 205 2005-08-28T04:23:14Z 2 2020-02-15T06:59:47Z +15419 2005-08-22T23:54:36Z 1120 450 2005-08-25T00:52:36Z 1 2020-02-15T06:59:47Z +15420 2005-08-22T23:55:51Z 1396 161 2005-08-31T20:09:51Z 2 2020-02-15T06:59:47Z +15421 2005-08-22T23:56:37Z 3 541 2005-08-25T18:58:37Z 2 2020-02-15T06:59:47Z +15422 2005-08-22T23:58:09Z 2601 309 2005-08-30T19:03:09Z 2 2020-02-15T06:59:47Z +15423 2006-02-14T15:16:03Z 1786 596 1 2020-02-15T06:59:47Z +15424 2005-08-23T00:03:01Z 3452 138 2005-08-27T23:27:01Z 2 2020-02-15T06:59:47Z +15425 2005-08-23T00:05:57Z 551 259 2005-09-01T05:08:57Z 1 2020-02-15T06:59:47Z +15426 2005-08-23T00:07:19Z 3280 347 2005-08-26T23:19:19Z 1 2020-02-15T06:59:47Z +15427 2005-08-23T00:07:53Z 2775 448 2005-09-01T02:55:53Z 2 2020-02-15T06:59:47Z +15428 2005-08-23T00:11:52Z 4379 402 2005-08-24T02:35:52Z 1 2020-02-15T06:59:47Z +15429 2005-08-23T00:20:31Z 740 241 2005-08-23T20:22:31Z 1 2020-02-15T06:59:47Z +15430 2006-02-14T15:16:03Z 4353 282 1 2020-02-15T06:59:47Z +15431 2005-08-23T00:26:47Z 3251 550 2005-08-31T23:26:47Z 2 2020-02-15T06:59:47Z +15432 2005-08-23T00:26:52Z 1896 117 2005-08-27T06:11:52Z 1 2020-02-15T06:59:47Z +15433 2005-08-23T00:27:18Z 155 198 2005-08-26T21:36:18Z 1 2020-02-15T06:59:47Z +15434 2005-08-23T00:28:16Z 4378 518 2005-08-26T04:27:16Z 2 2020-02-15T06:59:47Z +15435 2005-08-23T00:28:19Z 2103 468 2005-08-26T00:44:19Z 2 2020-02-15T06:59:47Z +15436 2005-08-23T00:30:26Z 1527 505 2005-08-28T06:29:26Z 1 2020-02-15T06:59:47Z +15437 2005-08-23T00:31:09Z 4236 368 2005-08-30T06:17:09Z 2 2020-02-15T06:59:47Z +15438 2005-08-23T00:31:57Z 2030 46 2005-08-26T20:02:57Z 1 2020-02-15T06:59:47Z +15439 2005-08-23T00:34:28Z 3848 136 2005-08-27T01:07:28Z 1 2020-02-15T06:59:47Z +15440 2005-08-23T00:37:21Z 2254 559 2005-08-24T23:24:21Z 1 2020-02-15T06:59:47Z +15441 2006-02-14T15:16:03Z 258 422 2 2020-02-15T06:59:47Z +15442 2005-08-23T00:42:49Z 1452 42 2005-08-27T00:35:49Z 1 2020-02-15T06:59:47Z +15443 2005-08-23T00:44:15Z 742 598 2005-09-01T05:33:15Z 2 2020-02-15T06:59:47Z +15444 2005-08-23T00:46:52Z 959 153 2005-08-29T20:37:52Z 2 2020-02-15T06:59:47Z +15445 2005-08-23T00:48:29Z 196 28 2005-08-28T00:33:29Z 1 2020-02-15T06:59:47Z +15446 2005-08-23T00:49:24Z 503 379 2005-08-26T02:09:24Z 2 2020-02-15T06:59:47Z +15447 2005-08-23T00:53:57Z 4090 331 2005-08-29T06:19:57Z 2 2020-02-15T06:59:47Z +15448 2005-08-23T00:55:24Z 2903 490 2005-08-25T02:20:24Z 1 2020-02-15T06:59:47Z +15449 2005-08-23T00:55:43Z 2856 461 2005-08-28T03:41:43Z 1 2020-02-15T06:59:47Z +15450 2005-08-23T00:56:01Z 1102 322 2005-08-24T01:00:01Z 2 2020-02-15T06:59:47Z +15451 2005-08-23T00:56:27Z 231 514 2005-08-24T00:15:27Z 2 2020-02-15T06:59:47Z +15452 2005-08-23T00:57:12Z 717 115 2005-08-28T00:19:12Z 1 2020-02-15T06:59:47Z +15453 2005-08-23T01:01:01Z 2 359 2005-08-30T20:08:01Z 1 2020-02-15T06:59:47Z +15454 2006-02-14T15:16:03Z 2946 142 2 2020-02-15T06:59:47Z +15455 2005-08-23T01:05:00Z 3991 238 2005-08-26T22:56:00Z 1 2020-02-15T06:59:47Z +15456 2005-08-23T01:07:01Z 2451 262 2005-08-24T23:28:01Z 2 2020-02-15T06:59:47Z +15457 2005-08-23T01:07:37Z 4539 306 2005-08-26T19:46:37Z 1 2020-02-15T06:59:47Z +15458 2006-02-14T15:16:03Z 25 590 2 2020-02-15T06:59:47Z +15459 2005-08-23T01:09:48Z 2058 346 2005-08-24T04:52:48Z 1 2020-02-15T06:59:47Z +15460 2005-08-23T01:10:42Z 2907 20 2005-08-28T20:49:42Z 2 2020-02-15T06:59:47Z +15461 2005-08-23T01:13:52Z 4542 103 2005-08-30T00:44:52Z 1 2020-02-15T06:59:47Z +15462 2005-08-23T01:14:01Z 3267 389 2005-08-29T19:52:01Z 1 2020-02-15T06:59:47Z +15463 2005-08-23T01:15:07Z 863 127 2005-08-29T06:50:07Z 1 2020-02-15T06:59:47Z +15464 2005-08-23T01:15:18Z 3235 62 2005-08-29T02:58:18Z 2 2020-02-15T06:59:47Z +15465 2005-08-23T01:16:33Z 362 520 2005-08-28T20:08:33Z 2 2020-02-15T06:59:47Z +15466 2005-08-23T01:16:55Z 571 418 2005-08-29T22:57:55Z 1 2020-02-15T06:59:47Z +15467 2005-08-23T01:22:12Z 3658 103 2005-08-29T23:42:12Z 2 2020-02-15T06:59:47Z +15468 2005-08-23T01:25:30Z 2440 399 2005-08-28T01:40:30Z 2 2020-02-15T06:59:47Z +15469 2005-08-23T01:29:59Z 1939 597 2005-08-27T04:02:59Z 1 2020-02-15T06:59:47Z +15470 2005-08-23T01:35:12Z 3009 416 2005-09-01T05:33:12Z 1 2020-02-15T06:59:47Z +15471 2005-08-23T01:38:48Z 2591 139 2005-08-31T19:47:48Z 1 2020-02-15T06:59:47Z +15472 2005-08-23T01:39:05Z 4293 226 2005-08-25T04:43:05Z 1 2020-02-15T06:59:47Z +15473 2005-08-23T01:39:10Z 356 259 2005-08-25T03:48:10Z 1 2020-02-15T06:59:47Z +15474 2005-08-23T01:39:10Z 3015 188 2005-08-23T21:46:10Z 2 2020-02-15T06:59:47Z +15475 2005-08-23T01:44:43Z 4503 562 2005-08-23T23:53:43Z 2 2020-02-15T06:59:47Z +15476 2005-08-23T01:45:07Z 2478 433 2005-08-26T21:07:07Z 2 2020-02-15T06:59:47Z +15477 2005-08-23T01:46:35Z 2406 142 2005-08-28T22:12:35Z 1 2020-02-15T06:59:47Z +15478 2005-08-23T01:50:31Z 4563 167 2005-08-27T21:40:31Z 2 2020-02-15T06:59:47Z +15479 2005-08-23T01:50:53Z 4182 149 2005-08-29T00:53:53Z 1 2020-02-15T06:59:47Z +15480 2005-08-23T01:57:20Z 3298 577 2005-08-26T04:43:20Z 2 2020-02-15T06:59:47Z +15481 2005-08-23T01:59:14Z 3262 414 2005-08-27T04:38:14Z 1 2020-02-15T06:59:47Z +15482 2005-08-23T02:01:20Z 3923 181 2005-08-24T03:25:20Z 2 2020-02-15T06:59:47Z +15483 2005-08-23T02:02:53Z 2970 173 2005-08-26T04:13:53Z 1 2020-02-15T06:59:47Z +15484 2005-08-23T02:04:49Z 642 342 2005-08-24T05:46:49Z 1 2020-02-15T06:59:47Z +15485 2005-08-23T02:04:57Z 281 114 2005-08-28T07:05:57Z 2 2020-02-15T06:59:47Z +15486 2005-08-23T02:05:20Z 1666 502 2005-08-29T07:52:20Z 2 2020-02-15T06:59:47Z +15487 2005-08-23T02:05:51Z 2636 469 2005-08-25T04:45:51Z 1 2020-02-15T06:59:47Z +15488 2005-08-23T02:06:01Z 4535 385 2005-08-29T21:35:01Z 2 2020-02-15T06:59:47Z +15489 2005-08-23T02:06:41Z 764 285 2005-08-25T06:50:41Z 1 2020-02-15T06:59:47Z +15490 2005-08-23T02:08:18Z 3922 493 2005-08-30T06:15:18Z 1 2020-02-15T06:59:47Z +15491 2005-08-23T02:08:40Z 2059 28 2005-08-23T20:23:40Z 2 2020-02-15T06:59:47Z +15492 2005-08-23T02:13:46Z 1298 520 2005-08-26T21:53:46Z 2 2020-02-15T06:59:47Z +15493 2005-08-23T02:20:53Z 3521 308 2005-08-25T23:02:53Z 1 2020-02-15T06:59:47Z +15494 2005-08-23T02:25:09Z 2968 455 2005-08-27T00:18:09Z 1 2020-02-15T06:59:47Z +15495 2005-08-23T02:26:10Z 4310 193 2005-08-30T01:07:10Z 2 2020-02-15T06:59:47Z +15496 2005-08-23T02:30:23Z 1863 275 2005-08-31T03:31:23Z 2 2020-02-15T06:59:47Z +15497 2006-02-14T15:16:03Z 363 107 1 2020-02-15T06:59:47Z +15498 2005-08-23T02:33:27Z 1583 83 2005-08-23T22:30:27Z 1 2020-02-15T06:59:47Z +15499 2005-08-23T02:37:19Z 630 488 2005-08-23T20:57:19Z 1 2020-02-15T06:59:47Z +15500 2005-08-23T02:39:37Z 886 74 2005-08-27T06:42:37Z 1 2020-02-15T06:59:47Z +15501 2005-08-23T02:39:56Z 4468 138 2005-08-25T04:39:56Z 1 2020-02-15T06:59:47Z +15502 2005-08-23T02:40:04Z 3219 433 2005-08-31T00:36:04Z 2 2020-02-15T06:59:47Z +15503 2005-08-23T02:44:49Z 4519 582 2005-08-27T06:33:49Z 2 2020-02-15T06:59:47Z +15504 2005-08-23T02:45:21Z 1967 315 2005-09-01T03:24:21Z 2 2020-02-15T06:59:47Z +15505 2005-08-23T02:46:13Z 1144 375 2005-08-26T23:34:13Z 2 2020-02-15T06:59:47Z +15506 2005-08-23T02:48:24Z 1914 553 2005-08-28T04:10:24Z 1 2020-02-15T06:59:47Z +15507 2005-08-23T02:48:26Z 3130 563 2005-08-27T01:32:26Z 1 2020-02-15T06:59:47Z +15508 2005-08-23T02:49:04Z 4035 293 2005-08-29T00:58:04Z 1 2020-02-15T06:59:47Z +15509 2005-08-23T02:51:24Z 1291 6 2005-08-31T06:21:24Z 2 2020-02-15T06:59:47Z +15510 2005-08-23T02:51:27Z 3239 209 2005-09-01T02:44:27Z 2 2020-02-15T06:59:47Z +15511 2005-08-23T02:55:42Z 3327 303 2005-08-31T03:14:42Z 2 2020-02-15T06:59:47Z +15512 2005-08-23T02:57:30Z 4336 25 2005-08-25T01:47:30Z 2 2020-02-15T06:59:47Z +15513 2005-08-23T03:01:56Z 3779 147 2005-08-24T23:46:56Z 2 2020-02-15T06:59:47Z +15514 2005-08-23T03:03:40Z 2824 366 2005-08-24T01:06:40Z 1 2020-02-15T06:59:47Z +15515 2005-08-23T03:03:53Z 3940 307 2005-08-25T08:27:53Z 2 2020-02-15T06:59:47Z +15516 2005-08-23T03:12:54Z 219 82 2005-08-30T04:02:54Z 1 2020-02-15T06:59:47Z +15517 2005-08-23T03:13:01Z 2221 187 2005-08-25T21:14:01Z 2 2020-02-15T06:59:47Z +15518 2005-08-23T03:19:34Z 3522 410 2005-08-24T02:55:34Z 1 2020-02-15T06:59:47Z +15519 2005-08-23T03:23:32Z 542 443 2005-08-25T03:48:32Z 1 2020-02-15T06:59:47Z +15520 2005-08-23T03:30:45Z 1792 163 2005-09-01T00:20:45Z 1 2020-02-15T06:59:47Z +15521 2005-08-23T03:30:51Z 134 331 2005-08-28T22:09:51Z 1 2020-02-15T06:59:47Z +15522 2005-08-23T03:32:31Z 2396 468 2005-08-30T02:17:31Z 2 2020-02-15T06:59:47Z +15523 2005-08-23T03:32:36Z 2570 432 2005-08-26T22:08:36Z 2 2020-02-15T06:59:47Z +15524 2005-08-23T03:36:26Z 2886 68 2005-08-26T06:28:26Z 2 2020-02-15T06:59:47Z +15525 2005-08-23T03:43:32Z 3509 123 2005-08-25T07:31:32Z 2 2020-02-15T06:59:47Z +15526 2005-08-23T03:44:30Z 2892 516 2005-08-30T08:19:30Z 1 2020-02-15T06:59:47Z +15527 2005-08-23T03:44:51Z 88 393 2005-08-25T03:09:51Z 1 2020-02-15T06:59:47Z +15528 2005-08-23T03:45:40Z 3033 114 2005-08-25T01:16:40Z 1 2020-02-15T06:59:47Z +15529 2005-08-23T03:46:47Z 4015 19 2005-08-24T00:59:47Z 1 2020-02-15T06:59:47Z +15530 2005-08-23T03:50:48Z 154 167 2005-08-28T22:17:48Z 2 2020-02-15T06:59:47Z +15531 2005-08-23T03:52:36Z 2410 355 2005-08-25T23:21:36Z 1 2020-02-15T06:59:47Z +15532 2006-02-14T15:16:03Z 1061 23 1 2020-02-15T06:59:47Z +15533 2005-08-23T03:54:39Z 1895 400 2005-08-26T08:27:39Z 2 2020-02-15T06:59:47Z +15534 2005-08-23T03:55:54Z 544 169 2005-08-24T03:54:54Z 1 2020-02-15T06:59:47Z +15535 2005-08-23T03:58:02Z 2371 346 2005-08-25T05:06:02Z 2 2020-02-15T06:59:47Z +15536 2005-08-23T03:58:28Z 4004 98 2005-08-31T03:28:28Z 2 2020-02-15T06:59:47Z +15537 2005-08-23T04:00:30Z 2958 137 2005-08-24T01:45:30Z 2 2020-02-15T06:59:47Z +15538 2005-08-23T04:07:37Z 4226 211 2005-08-28T07:37:37Z 1 2020-02-15T06:59:47Z +15539 2005-08-23T04:09:03Z 2853 582 2005-08-26T04:01:03Z 1 2020-02-15T06:59:47Z +15540 2005-08-23T04:12:52Z 1696 197 2005-08-31T04:25:52Z 1 2020-02-15T06:59:47Z +15541 2005-08-23T04:13:53Z 2762 148 2005-08-29T05:51:53Z 1 2020-02-15T06:59:47Z +15542 2006-02-14T15:16:03Z 21 111 1 2020-02-15T06:59:47Z +15543 2005-08-23T04:15:41Z 3836 282 2005-09-01T05:09:41Z 2 2020-02-15T06:59:47Z +15544 2005-08-23T04:17:56Z 1918 30 2005-09-01T00:43:56Z 2 2020-02-15T06:59:47Z +15545 2005-08-23T04:20:16Z 843 513 2005-08-29T08:22:16Z 1 2020-02-15T06:59:47Z +15546 2005-08-23T04:20:38Z 2087 223 2005-09-01T09:57:38Z 2 2020-02-15T06:59:47Z +15547 2005-08-23T04:25:50Z 1488 69 2005-08-26T00:57:50Z 1 2020-02-15T06:59:47Z +15548 2005-08-23T04:26:20Z 2350 334 2005-08-28T01:27:20Z 1 2020-02-15T06:59:47Z +15549 2005-08-23T04:27:06Z 369 170 2005-09-01T06:07:06Z 1 2020-02-15T06:59:47Z +15550 2005-08-23T04:27:54Z 1375 465 2005-08-29T01:29:54Z 1 2020-02-15T06:59:47Z +15551 2005-08-23T04:28:25Z 3570 345 2005-08-26T07:19:25Z 1 2020-02-15T06:59:47Z +15552 2005-08-23T04:33:23Z 4347 527 2005-09-01T10:25:23Z 2 2020-02-15T06:59:47Z +15553 2005-08-23T04:33:39Z 1659 232 2005-08-25T07:53:39Z 2 2020-02-15T06:59:47Z +15554 2005-08-23T04:48:12Z 198 280 2005-08-29T05:11:12Z 1 2020-02-15T06:59:47Z +15555 2005-08-23T04:51:52Z 1869 347 2005-08-24T01:01:52Z 1 2020-02-15T06:59:47Z +15556 2005-08-23T04:52:16Z 3683 108 2005-09-01T02:05:16Z 2 2020-02-15T06:59:47Z +15557 2005-08-23T04:52:17Z 3641 444 2005-08-30T02:15:17Z 2 2020-02-15T06:59:47Z +15558 2005-08-23T04:52:22Z 638 474 2005-09-01T02:26:22Z 1 2020-02-15T06:59:47Z +15559 2005-08-23T04:55:05Z 1773 517 2005-08-30T09:01:05Z 2 2020-02-15T06:59:47Z +15560 2005-08-23T05:01:13Z 3616 107 2005-09-01T05:02:13Z 1 2020-02-15T06:59:47Z +15561 2005-08-23T05:02:31Z 68 469 2005-09-01T02:51:31Z 1 2020-02-15T06:59:47Z +15562 2005-08-23T05:04:33Z 4238 149 2005-08-27T09:58:33Z 1 2020-02-15T06:59:47Z +15563 2005-08-23T05:08:58Z 170 372 2005-08-24T04:24:58Z 1 2020-02-15T06:59:47Z +15564 2005-08-23T05:10:42Z 1268 353 2005-08-30T03:17:42Z 1 2020-02-15T06:59:47Z +15565 2005-08-23T05:13:09Z 71 546 2005-08-30T08:58:09Z 2 2020-02-15T06:59:47Z +15566 2005-08-23T05:17:23Z 4344 76 2005-09-01T08:09:23Z 2 2020-02-15T06:59:47Z +15567 2005-08-23T05:20:36Z 2506 54 2005-08-24T10:09:36Z 2 2020-02-15T06:59:47Z +15568 2005-08-23T05:24:09Z 988 556 2005-08-27T08:57:09Z 2 2020-02-15T06:59:47Z +15569 2005-08-23T05:24:29Z 1071 313 2005-08-30T08:23:29Z 2 2020-02-15T06:59:47Z +15570 2005-08-23T05:24:55Z 4014 557 2005-08-31T07:06:55Z 2 2020-02-15T06:59:47Z +15571 2005-08-23T05:26:30Z 716 57 2005-08-29T00:54:30Z 2 2020-02-15T06:59:47Z +15572 2005-08-23T05:28:01Z 2816 506 2005-08-27T00:14:01Z 2 2020-02-15T06:59:47Z +15573 2005-08-23T05:28:36Z 3133 561 2005-08-27T05:37:36Z 2 2020-02-15T06:59:47Z +15574 2005-08-23T05:29:32Z 3253 130 2005-09-01T01:25:32Z 2 2020-02-15T06:59:47Z +15575 2005-08-23T05:30:19Z 3916 218 2005-08-27T05:19:19Z 2 2020-02-15T06:59:47Z +15576 2005-08-23T05:32:03Z 3257 595 2005-08-26T02:31:03Z 1 2020-02-15T06:59:47Z +15577 2006-02-14T15:16:03Z 539 29 2 2020-02-15T06:59:47Z +15578 2005-08-23T05:37:13Z 2829 302 2005-08-27T01:11:13Z 1 2020-02-15T06:59:47Z +15579 2005-08-23T05:38:41Z 3986 480 2005-08-29T09:18:41Z 1 2020-02-15T06:59:47Z +15580 2005-08-23T05:39:06Z 754 279 2005-09-01T01:14:06Z 2 2020-02-15T06:59:47Z +15581 2005-08-23T05:42:13Z 4010 462 2005-08-28T00:03:13Z 1 2020-02-15T06:59:47Z +15582 2005-08-23T05:45:44Z 4264 297 2005-08-25T07:54:44Z 2 2020-02-15T06:59:47Z +15583 2005-08-23T05:47:55Z 4299 215 2005-08-26T01:46:55Z 1 2020-02-15T06:59:47Z +15584 2005-08-23T05:49:21Z 3526 500 2005-08-27T04:49:21Z 1 2020-02-15T06:59:47Z +15585 2005-08-23T05:55:22Z 1177 545 2005-08-24T11:45:22Z 2 2020-02-15T06:59:47Z +15586 2005-08-23T05:57:04Z 3232 148 2005-08-31T01:59:04Z 1 2020-02-15T06:59:47Z +15587 2005-08-23T06:00:28Z 2510 499 2005-08-29T10:15:28Z 1 2020-02-15T06:59:47Z +15588 2005-08-23T06:02:35Z 1810 503 2005-08-30T04:01:35Z 2 2020-02-15T06:59:47Z +15589 2005-08-23T06:03:31Z 2379 22 2005-08-30T07:44:31Z 2 2020-02-15T06:59:47Z +15590 2005-08-23T06:09:44Z 4048 599 2005-09-01T06:53:44Z 2 2020-02-15T06:59:47Z +15591 2005-08-23T06:11:52Z 64 62 2005-08-25T05:34:52Z 1 2020-02-15T06:59:47Z +15593 2005-08-23T06:15:09Z 3734 153 2005-08-27T07:47:09Z 2 2020-02-15T06:59:47Z +15594 2005-08-23T06:18:43Z 4227 567 2005-09-01T09:09:43Z 2 2020-02-15T06:59:47Z +15595 2005-08-23T06:19:12Z 4046 264 2005-08-31T04:52:12Z 1 2020-02-15T06:59:47Z +15596 2005-08-23T06:19:51Z 3834 186 2005-08-25T03:32:51Z 1 2020-02-15T06:59:47Z +15597 2005-08-23T06:21:20Z 3795 420 2005-08-28T02:47:20Z 2 2020-02-15T06:59:47Z +15598 2005-08-23T06:23:26Z 2794 66 2005-09-01T05:43:26Z 1 2020-02-15T06:59:47Z +15599 2005-08-23T06:25:07Z 4560 103 2005-08-29T00:48:07Z 1 2020-02-15T06:59:47Z +15600 2005-08-23T06:31:24Z 2260 113 2005-08-28T06:53:24Z 1 2020-02-15T06:59:47Z +15601 2005-08-23T06:33:26Z 3643 579 2005-08-24T04:10:26Z 1 2020-02-15T06:59:47Z +15602 2005-08-23T06:41:07Z 1429 81 2005-08-24T07:16:07Z 1 2020-02-15T06:59:47Z +15603 2005-08-23T06:41:32Z 2565 6 2005-08-28T08:51:32Z 1 2020-02-15T06:59:47Z +15604 2005-08-23T06:44:19Z 4000 458 2005-08-29T07:17:19Z 1 2020-02-15T06:59:47Z +15605 2005-08-23T06:48:47Z 3152 544 2005-08-28T06:09:47Z 1 2020-02-15T06:59:47Z +15606 2005-08-23T06:50:27Z 1811 279 2005-08-28T04:23:27Z 2 2020-02-15T06:59:47Z +15607 2005-08-23T06:54:06Z 4118 484 2005-08-26T05:03:06Z 2 2020-02-15T06:59:47Z +15608 2005-08-23T06:55:26Z 2921 454 2005-08-28T10:24:26Z 1 2020-02-15T06:59:47Z +15609 2005-08-23T06:56:04Z 1730 256 2005-09-01T03:25:04Z 1 2020-02-15T06:59:47Z +15610 2005-08-23T06:56:15Z 2076 215 2005-08-24T07:37:15Z 2 2020-02-15T06:59:47Z +15611 2005-08-23T06:56:18Z 1713 184 2005-08-25T06:10:18Z 1 2020-02-15T06:59:47Z +15612 2005-08-23T06:59:07Z 3367 305 2005-09-01T11:26:07Z 2 2020-02-15T06:59:47Z +15613 2005-08-23T07:03:19Z 307 461 2005-08-31T07:50:19Z 2 2020-02-15T06:59:47Z +15614 2005-08-23T07:05:15Z 1216 287 2005-09-01T11:41:15Z 1 2020-02-15T06:59:47Z +15615 2005-08-23T07:06:00Z 899 584 2005-08-30T11:21:00Z 2 2020-02-15T06:59:47Z +15616 2005-08-23T07:06:38Z 2947 70 2005-08-30T04:16:38Z 1 2020-02-15T06:59:47Z +15617 2005-08-23T07:07:22Z 4085 569 2005-08-27T01:24:22Z 2 2020-02-15T06:59:47Z +15618 2005-08-23T07:07:58Z 1903 60 2005-08-29T03:48:58Z 1 2020-02-15T06:59:47Z +15619 2005-08-23T07:10:14Z 2468 3 2005-08-26T07:21:14Z 2 2020-02-15T06:59:47Z +15620 2005-08-23T07:10:22Z 1173 270 2005-08-28T06:51:22Z 2 2020-02-15T06:59:47Z +15621 2005-08-23T07:13:43Z 3832 123 2005-08-29T08:19:43Z 1 2020-02-15T06:59:47Z +15622 2005-08-23T07:22:02Z 3335 302 2005-09-01T06:08:02Z 2 2020-02-15T06:59:47Z +15623 2005-08-23T07:23:29Z 3003 525 2005-08-31T01:47:29Z 1 2020-02-15T06:59:47Z +15624 2005-08-23T07:24:27Z 396 105 2005-08-29T12:36:27Z 2 2020-02-15T06:59:47Z +15625 2005-08-23T07:25:29Z 4200 207 2005-08-27T13:17:29Z 2 2020-02-15T06:59:47Z +15626 2005-08-23T07:25:34Z 640 370 2005-08-28T11:01:34Z 1 2020-02-15T06:59:47Z +15627 2005-08-23T07:25:38Z 1364 453 2005-08-31T02:53:38Z 2 2020-02-15T06:59:47Z +15628 2005-08-23T07:28:04Z 1348 408 2005-08-26T04:23:04Z 1 2020-02-15T06:59:47Z +15629 2005-08-23T07:28:22Z 3725 286 2005-08-29T06:29:22Z 2 2020-02-15T06:59:47Z +15630 2005-08-23T07:29:13Z 3590 580 2005-08-31T04:33:13Z 2 2020-02-15T06:59:47Z +15631 2005-08-23T07:30:23Z 2458 93 2005-08-24T07:23:23Z 1 2020-02-15T06:59:47Z +15632 2005-08-23T07:30:26Z 2941 60 2005-08-24T07:53:26Z 2 2020-02-15T06:59:47Z +15633 2005-08-23T07:31:10Z 882 497 2005-08-26T04:35:10Z 2 2020-02-15T06:59:47Z +15634 2005-08-23T07:34:18Z 2517 576 2005-08-24T12:00:18Z 2 2020-02-15T06:59:47Z +15635 2005-08-23T07:43:00Z 3308 4 2005-08-27T10:47:00Z 1 2020-02-15T06:59:47Z +15636 2005-08-23T07:50:46Z 1169 380 2005-08-26T07:59:46Z 2 2020-02-15T06:59:47Z +15637 2005-08-23T07:53:38Z 445 172 2005-08-29T03:16:38Z 2 2020-02-15T06:59:47Z +15638 2005-08-23T07:54:54Z 3358 563 2005-08-30T13:33:54Z 2 2020-02-15T06:59:47Z +15639 2005-08-23T08:03:25Z 42 214 2005-08-24T10:21:25Z 2 2020-02-15T06:59:47Z +15640 2005-08-23T08:04:40Z 3505 262 2005-08-24T06:38:40Z 1 2020-02-15T06:59:47Z +15641 2005-08-23T08:06:49Z 3126 240 2005-08-24T13:17:49Z 1 2020-02-15T06:59:47Z +15642 2005-08-23T08:09:11Z 2627 160 2005-08-28T05:57:11Z 1 2020-02-15T06:59:47Z +15643 2005-08-23T08:13:26Z 103 298 2005-08-25T05:18:26Z 2 2020-02-15T06:59:47Z +15644 2006-02-14T15:16:03Z 3139 43 2 2020-02-15T06:59:47Z +15645 2006-02-14T15:16:03Z 3838 214 2 2020-02-15T06:59:47Z +15646 2005-08-23T08:19:55Z 3217 114 2005-08-29T02:32:55Z 1 2020-02-15T06:59:47Z +15647 2005-08-23T08:23:56Z 2051 251 2005-08-26T11:00:56Z 1 2020-02-15T06:59:47Z +15648 2005-08-23T08:27:57Z 4039 80 2005-08-30T08:53:57Z 2 2020-02-15T06:59:47Z +15649 2005-08-23T08:28:03Z 415 60 2005-08-30T05:11:03Z 1 2020-02-15T06:59:47Z +15650 2005-08-23T08:29:53Z 2447 353 2005-08-25T07:23:53Z 2 2020-02-15T06:59:47Z +15651 2005-08-23T08:31:49Z 3393 451 2005-08-26T02:57:49Z 1 2020-02-15T06:59:47Z +15652 2005-08-23T08:34:10Z 4440 578 2005-08-30T12:31:10Z 1 2020-02-15T06:59:47Z +15653 2005-08-23T08:34:42Z 2736 439 2005-09-01T03:07:42Z 1 2020-02-15T06:59:47Z +15654 2005-08-23T08:34:53Z 4360 471 2005-08-30T04:18:53Z 2 2020-02-15T06:59:47Z +15655 2006-02-14T15:16:03Z 604 359 1 2020-02-15T06:59:47Z +15656 2005-08-23T08:38:58Z 4239 334 2005-08-24T04:08:58Z 2 2020-02-15T06:59:47Z +15657 2005-08-23T08:42:40Z 1897 36 2005-09-01T13:08:40Z 1 2020-02-15T06:59:47Z +15658 2005-08-23T08:48:43Z 3565 22 2005-08-25T05:38:43Z 1 2020-02-15T06:59:47Z +15659 2005-08-23T08:48:43Z 4573 131 2005-08-27T14:19:43Z 2 2020-02-15T06:59:47Z +15660 2005-08-23T08:51:21Z 3223 388 2005-08-28T06:26:21Z 2 2020-02-15T06:59:47Z +15661 2005-08-23T08:52:03Z 1599 346 2005-08-30T08:17:03Z 2 2020-02-15T06:59:47Z +15662 2005-08-23T08:52:50Z 3028 223 2005-08-24T08:08:50Z 1 2020-02-15T06:59:47Z +15663 2005-08-23T08:54:26Z 3291 291 2005-08-29T02:56:26Z 1 2020-02-15T06:59:47Z +15664 2005-08-23T08:57:11Z 2029 351 2005-08-31T14:19:11Z 2 2020-02-15T06:59:47Z +15665 2005-08-23T08:59:12Z 3471 487 2005-08-24T12:50:12Z 2 2020-02-15T06:59:47Z +15666 2005-08-23T09:01:10Z 3406 586 2005-08-31T12:32:10Z 2 2020-02-15T06:59:47Z +15667 2005-08-23T09:02:03Z 1302 73 2005-08-24T05:47:03Z 1 2020-02-15T06:59:47Z +15668 2005-08-23T09:02:04Z 1963 38 2005-08-29T03:17:04Z 2 2020-02-15T06:59:47Z +15669 2005-08-23T09:06:17Z 1542 334 2005-08-30T08:10:17Z 2 2020-02-15T06:59:47Z +15670 2005-08-23T09:07:11Z 2834 211 2005-08-31T04:32:11Z 2 2020-02-15T06:59:47Z +15671 2005-08-23T09:08:16Z 3716 112 2005-08-29T14:01:16Z 1 2020-02-15T06:59:47Z +15672 2005-08-23T09:09:18Z 701 210 2005-08-27T06:19:18Z 1 2020-02-15T06:59:47Z +15673 2005-08-23T09:12:50Z 3096 321 2005-08-29T12:45:50Z 2 2020-02-15T06:59:47Z +15674 2005-08-23T09:16:39Z 4482 90 2005-09-01T11:57:39Z 1 2020-02-15T06:59:47Z +15675 2005-08-23T09:18:52Z 4153 293 2005-08-30T14:59:52Z 2 2020-02-15T06:59:47Z +15676 2005-08-23T09:23:08Z 3874 353 2005-08-30T06:19:08Z 2 2020-02-15T06:59:47Z +15677 2005-08-23T09:23:36Z 2050 109 2005-08-27T05:01:36Z 1 2020-02-15T06:59:47Z +15678 2005-08-23T09:23:45Z 1345 413 2005-08-27T11:38:45Z 2 2020-02-15T06:59:47Z +15679 2005-08-23T09:27:29Z 2945 103 2005-08-28T09:14:29Z 1 2020-02-15T06:59:47Z +15680 2005-08-23T09:33:22Z 1370 169 2005-08-31T13:29:22Z 2 2020-02-15T06:59:47Z +15681 2005-08-23T09:35:34Z 2813 61 2005-08-27T08:33:34Z 1 2020-02-15T06:59:47Z +15682 2005-08-23T09:37:34Z 3293 31 2005-08-31T06:01:34Z 1 2020-02-15T06:59:47Z +15683 2005-08-23T09:38:17Z 3787 168 2005-08-30T12:31:17Z 2 2020-02-15T06:59:47Z +15684 2005-08-23T09:40:04Z 3976 586 2005-08-28T15:28:04Z 1 2020-02-15T06:59:47Z +15685 2005-08-23T09:41:28Z 370 491 2005-08-30T10:11:28Z 1 2020-02-15T06:59:47Z +15686 2005-08-23T09:42:21Z 2041 206 2005-08-29T12:22:21Z 1 2020-02-15T06:59:47Z +15687 2005-08-23T09:46:33Z 276 112 2005-09-01T06:07:33Z 1 2020-02-15T06:59:47Z +15688 2005-08-23T09:48:45Z 2851 105 2005-08-30T10:28:45Z 2 2020-02-15T06:59:47Z +15689 2005-08-23T09:52:55Z 248 259 2005-08-29T11:15:55Z 1 2020-02-15T06:59:47Z +15690 2005-08-23T09:53:30Z 2102 554 2005-08-29T10:27:30Z 1 2020-02-15T06:59:47Z +15691 2005-08-23T09:53:54Z 784 200 2005-08-27T10:14:54Z 1 2020-02-15T06:59:47Z +15692 2005-08-23T10:00:02Z 1852 503 2005-08-24T05:25:02Z 1 2020-02-15T06:59:47Z +15693 2005-08-23T10:00:24Z 748 94 2005-08-25T08:23:24Z 1 2020-02-15T06:59:47Z +15694 2005-08-23T10:02:46Z 3017 506 2005-08-31T05:46:46Z 2 2020-02-15T06:59:47Z +15695 2006-02-14T15:16:03Z 2954 300 1 2020-02-15T06:59:47Z +15696 2005-08-23T10:04:17Z 2836 93 2005-08-25T08:47:17Z 2 2020-02-15T06:59:47Z +15697 2005-08-23T10:04:36Z 1987 380 2005-08-24T05:00:36Z 2 2020-02-15T06:59:47Z +15698 2005-08-23T10:11:40Z 4465 395 2005-08-28T08:50:40Z 2 2020-02-15T06:59:47Z +15699 2005-08-23T10:20:35Z 4155 501 2005-08-30T13:56:35Z 1 2020-02-15T06:59:47Z +15700 2005-08-23T10:21:21Z 2935 552 2005-08-24T15:37:21Z 1 2020-02-15T06:59:47Z +15701 2005-08-23T10:22:21Z 2942 516 2005-08-24T10:52:21Z 1 2020-02-15T06:59:47Z +15702 2005-08-23T10:23:28Z 1602 56 2005-08-29T11:08:28Z 2 2020-02-15T06:59:47Z +15703 2005-08-23T10:23:48Z 2883 322 2005-09-01T06:54:48Z 2 2020-02-15T06:59:47Z +15704 2005-08-23T10:25:45Z 738 71 2005-08-29T16:06:45Z 2 2020-02-15T06:59:47Z +15705 2005-08-23T10:32:52Z 936 356 2005-08-29T13:18:52Z 2 2020-02-15T06:59:47Z +15706 2005-08-23T10:32:52Z 4486 220 2005-08-24T07:03:52Z 2 2020-02-15T06:59:47Z +15707 2005-08-23T10:35:45Z 3646 91 2005-08-27T10:57:45Z 1 2020-02-15T06:59:47Z +15708 2005-08-23T10:35:51Z 1974 46 2005-08-27T16:02:51Z 1 2020-02-15T06:59:47Z +15709 2005-08-23T10:36:00Z 346 206 2005-08-28T06:18:00Z 2 2020-02-15T06:59:47Z +15710 2006-02-14T15:16:03Z 1020 421 1 2020-02-15T06:59:47Z +15711 2005-08-23T10:43:00Z 789 297 2005-08-29T16:29:00Z 1 2020-02-15T06:59:47Z +15712 2005-08-23T10:43:56Z 1882 351 2005-08-29T15:35:56Z 2 2020-02-15T06:59:47Z +15713 2005-08-23T10:56:15Z 337 432 2005-08-29T09:14:15Z 2 2020-02-15T06:59:47Z +15714 2006-02-14T15:16:03Z 2083 56 1 2020-02-15T06:59:47Z +15715 2005-08-23T10:57:40Z 3808 86 2005-08-28T12:40:40Z 1 2020-02-15T06:59:47Z +15716 2005-08-23T11:02:00Z 2812 408 2005-08-28T14:46:00Z 1 2020-02-15T06:59:47Z +15717 2006-02-14T15:16:03Z 902 208 2 2020-02-15T06:59:47Z +15718 2005-08-23T11:05:17Z 2180 276 2005-08-28T12:50:17Z 1 2020-02-15T06:59:47Z +15719 2005-08-23T11:08:46Z 3990 599 2005-08-25T07:25:46Z 1 2020-02-15T06:59:47Z +15720 2005-08-23T11:15:20Z 2490 456 2005-08-31T09:49:20Z 1 2020-02-15T06:59:47Z +15721 2005-08-23T11:16:16Z 685 154 2005-08-28T10:21:16Z 1 2020-02-15T06:59:47Z +15722 2005-08-23T11:16:29Z 2809 26 2005-09-01T13:24:29Z 2 2020-02-15T06:59:47Z +15723 2005-08-23T11:17:26Z 3915 504 2005-08-31T13:58:26Z 2 2020-02-15T06:59:47Z +15724 2005-08-23T11:22:09Z 1025 478 2005-08-28T12:56:09Z 2 2020-02-15T06:59:47Z +15725 2005-08-23T11:25:00Z 378 599 2005-08-26T11:46:00Z 1 2020-02-15T06:59:47Z +15726 2005-08-23T11:28:26Z 906 503 2005-08-28T11:23:26Z 2 2020-02-15T06:59:47Z +15727 2005-08-23T11:28:49Z 2184 416 2005-08-24T06:24:49Z 2 2020-02-15T06:59:47Z +15728 2005-08-23T11:30:32Z 2567 323 2005-08-28T09:52:32Z 2 2020-02-15T06:59:47Z +15729 2006-02-14T15:16:03Z 2699 193 2 2020-02-15T06:59:47Z +15730 2005-08-23T11:32:35Z 947 147 2005-08-30T13:46:35Z 2 2020-02-15T06:59:47Z +15731 2005-08-23T11:33:25Z 3403 118 2005-08-24T07:19:25Z 2 2020-02-15T06:59:47Z +15732 2005-08-23T11:35:12Z 3247 412 2005-08-26T12:50:12Z 2 2020-02-15T06:59:47Z +15733 2005-08-23T11:37:32Z 4185 512 2005-08-28T16:27:32Z 1 2020-02-15T06:59:47Z +15734 2005-08-23T11:40:08Z 3952 302 2005-08-27T08:16:08Z 1 2020-02-15T06:59:47Z +15735 2006-02-14T15:16:03Z 3167 295 1 2020-02-15T06:59:47Z +15736 2005-08-23T11:40:30Z 4272 127 2005-08-30T12:40:30Z 1 2020-02-15T06:59:47Z +15737 2005-08-23T11:52:18Z 996 83 2005-08-28T15:28:18Z 1 2020-02-15T06:59:47Z +15738 2005-08-23T11:55:50Z 556 38 2005-08-30T15:07:50Z 1 2020-02-15T06:59:47Z +15739 2005-08-23T11:56:22Z 266 74 2005-08-29T16:10:22Z 2 2020-02-15T06:59:47Z +15740 2005-08-23T12:07:51Z 100 229 2005-08-24T13:23:51Z 2 2020-02-15T06:59:47Z +15741 2005-08-23T12:10:54Z 4243 126 2005-08-24T10:08:54Z 2 2020-02-15T06:59:47Z +15742 2005-08-23T12:11:37Z 1339 200 2005-08-31T07:28:37Z 2 2020-02-15T06:59:47Z +15743 2005-08-23T12:12:05Z 1625 139 2005-08-26T11:35:05Z 1 2020-02-15T06:59:47Z +15744 2005-08-23T12:15:51Z 2364 59 2005-08-31T17:19:51Z 1 2020-02-15T06:59:47Z +15745 2006-02-14T15:16:03Z 2737 43 1 2020-02-15T06:59:47Z +15746 2005-08-23T12:26:19Z 2241 246 2005-08-26T09:51:19Z 2 2020-02-15T06:59:47Z +15747 2005-08-23T12:29:24Z 1517 381 2005-08-31T08:27:24Z 2 2020-02-15T06:59:47Z +15748 2005-08-23T12:33:00Z 2757 380 2005-08-25T15:15:00Z 2 2020-02-15T06:59:47Z +15749 2005-08-23T12:33:41Z 4224 575 2005-08-24T10:52:41Z 1 2020-02-15T06:59:47Z +15750 2005-08-23T12:36:05Z 4474 496 2005-08-24T17:40:05Z 2 2020-02-15T06:59:47Z +15751 2005-08-23T12:41:07Z 697 199 2005-08-29T07:03:07Z 2 2020-02-15T06:59:47Z +15752 2005-08-23T12:41:38Z 2112 17 2005-09-01T14:06:38Z 1 2020-02-15T06:59:47Z +15753 2005-08-23T12:43:30Z 3451 144 2005-09-01T09:07:30Z 2 2020-02-15T06:59:47Z +15754 2005-08-23T12:43:42Z 2306 356 2005-08-27T17:45:42Z 2 2020-02-15T06:59:47Z +15755 2005-08-23T12:46:38Z 511 423 2005-08-25T12:59:38Z 1 2020-02-15T06:59:47Z +15756 2005-08-23T12:47:05Z 878 112 2005-08-28T08:34:05Z 2 2020-02-15T06:59:47Z +15757 2005-08-23T12:47:16Z 1308 356 2005-08-29T17:19:16Z 1 2020-02-15T06:59:47Z +15758 2005-08-23T12:47:26Z 152 46 2005-08-29T11:05:26Z 2 2020-02-15T06:59:47Z +15759 2005-08-23T12:47:37Z 1341 361 2005-09-01T11:28:37Z 2 2020-02-15T06:59:47Z +15760 2005-08-23T12:50:00Z 3050 273 2005-08-29T15:41:00Z 2 2020-02-15T06:59:47Z +15761 2005-08-23T12:55:51Z 4362 416 2005-08-26T16:51:51Z 1 2020-02-15T06:59:47Z +15762 2005-08-23T13:01:43Z 887 351 2005-08-26T16:35:43Z 1 2020-02-15T06:59:47Z +15763 2005-08-23T13:02:59Z 124 158 2005-08-24T17:45:59Z 2 2020-02-15T06:59:47Z +15764 2005-08-23T13:05:10Z 2937 8 2005-08-25T16:15:10Z 1 2020-02-15T06:59:47Z +15765 2005-08-23T13:06:19Z 1250 408 2005-08-31T12:18:19Z 1 2020-02-15T06:59:47Z +15766 2005-08-23T13:10:16Z 1996 436 2005-08-30T09:27:16Z 1 2020-02-15T06:59:47Z +15767 2005-08-23T13:14:15Z 3492 241 2005-08-27T14:43:15Z 2 2020-02-15T06:59:47Z +15768 2005-08-23T13:14:47Z 662 267 2005-08-29T14:17:47Z 2 2020-02-15T06:59:47Z +15769 2005-08-23T13:16:15Z 2392 276 2005-08-28T18:31:15Z 1 2020-02-15T06:59:47Z +15770 2005-08-23T13:18:16Z 1424 113 2005-08-29T11:31:16Z 1 2020-02-15T06:59:47Z +15771 2005-08-23T13:18:46Z 3667 262 2005-08-26T07:29:46Z 1 2020-02-15T06:59:47Z +15772 2005-08-23T13:22:56Z 4343 202 2005-08-26T10:35:56Z 2 2020-02-15T06:59:47Z +15773 2005-08-23T13:24:57Z 1626 189 2005-08-31T14:16:57Z 2 2020-02-15T06:59:47Z +15774 2005-08-23T13:25:08Z 1273 254 2005-08-28T10:08:08Z 2 2020-02-15T06:59:47Z +15775 2005-08-23T13:25:44Z 2146 173 2005-09-01T16:56:44Z 1 2020-02-15T06:59:47Z +15776 2005-08-23T13:26:01Z 43 514 2005-08-29T18:17:01Z 1 2020-02-15T06:59:47Z +15777 2005-08-23T13:29:08Z 4241 130 2005-08-27T18:50:08Z 2 2020-02-15T06:59:47Z +15778 2006-02-14T15:16:03Z 1269 234 1 2020-02-15T06:59:47Z +15779 2005-08-23T13:33:46Z 1560 419 2005-08-28T08:40:46Z 2 2020-02-15T06:59:47Z +15780 2006-02-14T15:16:03Z 2911 120 2 2020-02-15T06:59:47Z +15781 2005-08-23T13:41:05Z 4449 412 2005-08-31T13:11:05Z 1 2020-02-15T06:59:47Z +15782 2005-08-23T13:43:26Z 3282 245 2005-08-30T14:03:26Z 1 2020-02-15T06:59:47Z +15783 2005-08-23T13:45:44Z 397 247 2005-08-26T09:18:44Z 2 2020-02-15T06:59:47Z +15784 2005-08-23T13:46:00Z 126 425 2005-08-30T11:49:00Z 2 2020-02-15T06:59:47Z +15785 2005-08-23T13:46:27Z 1758 543 2005-08-27T10:16:27Z 2 2020-02-15T06:59:47Z +15786 2005-08-23T13:48:34Z 3132 371 2005-08-27T15:59:34Z 1 2020-02-15T06:59:47Z +15787 2005-08-23T13:51:57Z 2932 123 2005-08-27T17:06:57Z 1 2020-02-15T06:59:47Z +15788 2005-08-23T13:54:39Z 13 269 2005-08-26T10:17:39Z 1 2020-02-15T06:59:47Z +15789 2005-08-23T13:56:40Z 1213 350 2005-08-27T15:25:40Z 1 2020-02-15T06:59:47Z +15790 2005-08-23T14:01:07Z 2887 233 2005-08-30T10:32:07Z 2 2020-02-15T06:59:47Z +15791 2005-08-23T14:02:13Z 4147 445 2005-09-01T09:03:13Z 2 2020-02-15T06:59:47Z +15792 2005-08-23T14:05:37Z 2175 581 2005-08-28T10:54:37Z 1 2020-02-15T06:59:47Z +15793 2005-08-23T14:06:19Z 2863 22 2005-08-24T19:59:19Z 2 2020-02-15T06:59:47Z +15794 2006-02-14T15:16:03Z 3917 579 2 2020-02-15T06:59:47Z +15795 2005-08-23T14:07:56Z 4371 417 2005-08-25T12:10:56Z 2 2020-02-15T06:59:47Z +15796 2005-08-23T14:12:22Z 1425 158 2005-08-28T17:03:22Z 2 2020-02-15T06:59:47Z +15797 2005-08-23T14:13:47Z 497 503 2005-08-25T09:16:47Z 2 2020-02-15T06:59:47Z +15798 2005-08-23T14:23:03Z 3803 203 2005-08-30T17:39:03Z 2 2020-02-15T06:59:47Z +15799 2005-08-23T14:23:23Z 2519 215 2005-08-24T17:15:23Z 2 2020-02-15T06:59:47Z +15800 2005-08-23T14:23:44Z 963 43 2005-08-29T17:04:44Z 2 2020-02-15T06:59:47Z +15801 2005-08-23T14:26:04Z 1590 165 2005-08-28T15:04:04Z 1 2020-02-15T06:59:47Z +15802 2005-08-23T14:26:51Z 41 158 2005-08-29T16:28:51Z 2 2020-02-15T06:59:47Z +15803 2005-08-23T14:27:07Z 500 105 2005-08-28T12:01:07Z 2 2020-02-15T06:59:47Z +15804 2005-08-23T14:29:16Z 3338 585 2005-08-26T08:41:16Z 1 2020-02-15T06:59:47Z +15805 2005-08-23T14:31:19Z 4511 8 2005-08-25T19:01:19Z 2 2020-02-15T06:59:47Z +15806 2005-08-23T14:31:50Z 2683 166 2005-08-27T16:08:50Z 2 2020-02-15T06:59:47Z +15807 2005-08-23T14:35:10Z 2705 350 2005-08-29T19:06:10Z 2 2020-02-15T06:59:47Z +15808 2005-08-23T14:38:37Z 1663 446 2005-08-27T14:45:37Z 2 2020-02-15T06:59:47Z +15809 2005-08-23T14:42:07Z 1885 431 2005-08-27T15:00:07Z 2 2020-02-15T06:59:47Z +15810 2005-08-23T14:43:15Z 2196 171 2005-08-25T17:41:15Z 1 2020-02-15T06:59:47Z +15811 2005-08-23T14:43:46Z 3487 300 2005-08-27T16:43:46Z 1 2020-02-15T06:59:47Z +15812 2005-08-23T14:47:26Z 4457 45 2005-09-01T10:51:26Z 2 2020-02-15T06:59:47Z +15813 2006-02-14T15:16:03Z 981 9 1 2020-02-15T06:59:47Z +15814 2005-08-23T14:52:50Z 4361 459 2005-08-27T16:12:50Z 2 2020-02-15T06:59:47Z +15815 2005-08-23T14:55:47Z 316 444 2005-08-24T12:37:47Z 1 2020-02-15T06:59:47Z +15816 2005-08-23T14:58:06Z 3628 31 2005-08-28T13:30:06Z 1 2020-02-15T06:59:47Z +15817 2005-08-23T14:59:51Z 598 348 2005-08-25T15:27:51Z 1 2020-02-15T06:59:47Z +15818 2005-08-23T14:59:58Z 2620 439 2005-08-27T13:13:58Z 2 2020-02-15T06:59:47Z +15819 2005-08-23T15:01:54Z 3639 274 2005-08-31T20:01:54Z 2 2020-02-15T06:59:47Z +15820 2005-08-23T15:03:13Z 4553 308 2005-08-25T20:12:13Z 1 2020-02-15T06:59:47Z +15821 2005-08-23T15:03:58Z 1714 233 2005-08-24T17:46:58Z 2 2020-02-15T06:59:47Z +15822 2005-08-23T15:05:59Z 3602 492 2005-08-24T11:13:59Z 1 2020-02-15T06:59:47Z +15823 2005-08-23T15:08:00Z 3047 81 2005-08-24T17:52:00Z 2 2020-02-15T06:59:47Z +15824 2005-08-23T15:09:17Z 2933 371 2005-08-28T15:14:17Z 2 2020-02-15T06:59:47Z +15825 2005-08-23T15:10:42Z 149 346 2005-08-29T09:28:42Z 2 2020-02-15T06:59:47Z +15826 2005-08-23T15:15:02Z 215 311 2005-08-31T20:39:02Z 2 2020-02-15T06:59:47Z +15827 2005-08-23T15:15:19Z 1732 346 2005-08-24T10:50:19Z 2 2020-02-15T06:59:47Z +15828 2005-08-23T15:16:32Z 428 327 2005-08-29T12:20:32Z 1 2020-02-15T06:59:47Z +15829 2005-08-23T15:17:14Z 4387 30 2005-08-27T13:04:14Z 1 2020-02-15T06:59:47Z +15830 2005-08-23T15:19:15Z 309 467 2005-08-25T18:42:15Z 2 2020-02-15T06:59:47Z +15831 2005-08-23T15:21:19Z 3123 401 2005-08-24T15:47:19Z 2 2020-02-15T06:59:47Z +15832 2005-08-23T15:21:35Z 1468 537 2005-08-30T15:01:35Z 2 2020-02-15T06:59:47Z +15833 2005-08-23T15:22:15Z 801 349 2005-08-31T14:54:15Z 1 2020-02-15T06:59:47Z +15834 2005-08-23T15:23:50Z 217 165 2005-09-01T19:31:50Z 1 2020-02-15T06:59:47Z +15835 2005-08-23T15:25:27Z 1362 128 2005-09-01T16:14:27Z 2 2020-02-15T06:59:47Z +15836 2005-08-23T15:29:17Z 260 468 2005-08-26T11:44:17Z 2 2020-02-15T06:59:47Z +15837 2005-08-23T15:29:41Z 4388 283 2005-08-27T18:17:41Z 1 2020-02-15T06:59:47Z +15838 2005-08-23T15:30:48Z 2194 579 2005-08-31T11:20:48Z 2 2020-02-15T06:59:47Z +15839 2005-08-23T15:34:46Z 3726 294 2005-08-30T21:00:46Z 2 2020-02-15T06:59:47Z +15840 2005-08-23T15:34:49Z 1901 316 2005-08-24T16:54:49Z 1 2020-02-15T06:59:47Z +15841 2005-08-23T15:35:59Z 2865 571 2005-08-30T19:30:59Z 2 2020-02-15T06:59:47Z +15842 2005-08-23T15:36:05Z 1850 146 2005-08-30T14:05:05Z 2 2020-02-15T06:59:47Z +15843 2005-08-23T15:37:31Z 611 215 2005-08-28T18:41:31Z 2 2020-02-15T06:59:47Z +15844 2005-08-23T15:38:12Z 2027 119 2005-08-26T15:18:12Z 1 2020-02-15T06:59:47Z +15845 2005-08-23T15:38:34Z 4312 89 2005-08-25T10:06:34Z 1 2020-02-15T06:59:47Z +15846 2005-08-23T15:39:18Z 3635 47 2005-08-27T14:28:18Z 2 2020-02-15T06:59:47Z +15847 2005-08-23T15:39:38Z 2287 163 2005-08-24T11:46:38Z 1 2020-02-15T06:59:47Z +15848 2005-08-23T15:41:12Z 2141 336 2005-08-26T10:29:12Z 2 2020-02-15T06:59:47Z +15849 2005-08-23T15:41:20Z 4077 482 2005-08-27T15:47:20Z 2 2020-02-15T06:59:47Z +15850 2005-08-23T15:45:42Z 586 563 2005-08-27T19:24:42Z 1 2020-02-15T06:59:47Z +15851 2005-08-23T15:46:33Z 2286 469 2005-08-29T15:52:33Z 1 2020-02-15T06:59:47Z +15852 2005-08-23T15:47:02Z 1506 140 2005-08-25T19:37:02Z 1 2020-02-15T06:59:47Z +15853 2005-08-23T15:54:20Z 225 500 2005-08-24T18:53:20Z 2 2020-02-15T06:59:47Z +15854 2005-08-23T15:58:05Z 1648 464 2005-08-26T19:23:05Z 1 2020-02-15T06:59:47Z +15855 2005-08-23T15:59:01Z 2528 192 2005-08-29T20:26:01Z 1 2020-02-15T06:59:47Z +15856 2005-08-23T15:59:12Z 3379 395 2005-08-25T15:36:12Z 1 2020-02-15T06:59:47Z +15857 2005-08-23T15:59:51Z 2733 575 2005-08-26T12:01:51Z 2 2020-02-15T06:59:47Z +15858 2005-08-23T16:07:15Z 4515 81 2005-08-25T19:36:15Z 2 2020-02-15T06:59:47Z +15859 2005-08-23T16:08:15Z 4269 465 2005-08-28T11:08:15Z 1 2020-02-15T06:59:47Z +15860 2005-08-23T16:08:40Z 2583 41 2005-08-28T15:35:40Z 1 2020-02-15T06:59:47Z +15861 2005-08-23T16:15:45Z 1859 256 2005-09-01T11:37:45Z 2 2020-02-15T06:59:47Z +15862 2006-02-14T15:16:03Z 925 215 1 2020-02-15T06:59:47Z +15863 2005-08-23T16:17:09Z 2783 328 2005-08-28T16:10:09Z 2 2020-02-15T06:59:47Z +15864 2005-08-23T16:18:12Z 3014 256 2005-08-29T17:10:12Z 2 2020-02-15T06:59:47Z +15865 2005-08-23T16:18:25Z 2031 482 2005-08-26T10:57:25Z 2 2020-02-15T06:59:47Z +15866 2005-08-23T16:19:02Z 3828 296 2005-08-31T12:29:02Z 2 2020-02-15T06:59:47Z +15867 2006-02-14T15:16:03Z 837 505 2 2020-02-15T06:59:47Z +15868 2005-08-23T16:19:14Z 2186 306 2005-08-29T16:14:14Z 2 2020-02-15T06:59:47Z +15869 2005-08-23T16:22:20Z 1344 357 2005-08-27T11:52:20Z 1 2020-02-15T06:59:47Z +15870 2005-08-23T16:23:08Z 590 251 2005-08-28T20:30:08Z 2 2020-02-15T06:59:47Z +15871 2005-08-23T16:24:24Z 425 57 2005-09-01T13:48:24Z 2 2020-02-15T06:59:47Z +15872 2005-08-23T16:27:24Z 3391 212 2005-08-31T11:57:24Z 1 2020-02-15T06:59:47Z +15873 2005-08-23T16:27:59Z 4548 577 2005-08-26T11:11:59Z 2 2020-02-15T06:59:47Z +15874 2005-08-23T16:30:55Z 621 132 2005-08-28T20:57:55Z 1 2020-02-15T06:59:47Z +15875 2006-02-14T15:16:03Z 3611 41 1 2020-02-15T06:59:47Z +15876 2005-08-23T16:32:10Z 1735 87 2005-08-24T18:16:10Z 1 2020-02-15T06:59:47Z +15877 2005-08-23T16:33:33Z 2307 559 2005-08-26T10:36:33Z 2 2020-02-15T06:59:47Z +15878 2005-08-23T16:34:31Z 1592 493 2005-08-27T21:51:31Z 2 2020-02-15T06:59:47Z +15879 2005-08-23T16:42:53Z 235 482 2005-08-29T16:21:53Z 2 2020-02-15T06:59:47Z +15880 2005-08-23T16:43:54Z 2538 528 2005-08-31T14:40:54Z 2 2020-02-15T06:59:47Z +15881 2005-08-23T16:44:25Z 617 383 2005-08-29T13:58:25Z 1 2020-02-15T06:59:47Z +15882 2005-08-23T16:44:31Z 2028 312 2005-09-01T15:44:31Z 2 2020-02-15T06:59:47Z +15883 2005-08-23T16:44:56Z 2792 550 2005-08-24T22:42:56Z 1 2020-02-15T06:59:47Z +15884 2005-08-23T16:45:28Z 2255 81 2005-08-27T20:18:28Z 1 2020-02-15T06:59:47Z +15885 2005-08-23T16:50:43Z 2116 565 2005-08-29T20:19:43Z 1 2020-02-15T06:59:47Z +15886 2005-08-23T16:50:53Z 3038 91 2005-08-26T15:38:53Z 2 2020-02-15T06:59:47Z +15887 2005-08-23T16:54:09Z 4263 201 2005-08-26T13:20:09Z 2 2020-02-15T06:59:47Z +15888 2005-08-23T16:56:14Z 2955 321 2005-08-31T14:32:14Z 1 2020-02-15T06:59:47Z +15889 2005-08-23T16:57:43Z 787 137 2005-08-27T22:14:43Z 1 2020-02-15T06:59:47Z +15890 2005-08-23T16:58:12Z 3625 87 2005-08-24T12:23:12Z 1 2020-02-15T06:59:47Z +15891 2005-08-23T17:00:12Z 2168 52 2005-08-31T21:12:12Z 1 2020-02-15T06:59:47Z +15892 2005-08-23T17:01:00Z 1365 174 2005-08-28T12:50:00Z 1 2020-02-15T06:59:47Z +15893 2005-08-23T17:02:00Z 2571 438 2005-08-30T12:45:00Z 2 2020-02-15T06:59:47Z +15894 2006-02-14T15:16:03Z 4416 168 1 2020-02-15T06:59:47Z +15895 2005-08-23T17:09:31Z 2275 342 2005-08-30T17:15:31Z 1 2020-02-15T06:59:47Z +15896 2005-08-23T17:09:56Z 528 585 2005-08-31T14:51:56Z 2 2020-02-15T06:59:47Z +15897 2005-08-23T17:12:31Z 1652 15 2005-08-30T17:22:31Z 1 2020-02-15T06:59:47Z +15898 2005-08-23T17:13:01Z 3502 88 2005-08-29T11:22:01Z 2 2020-02-15T06:59:47Z +15899 2005-08-23T17:16:28Z 3851 596 2005-08-29T21:46:28Z 2 2020-02-15T06:59:47Z +15900 2005-08-23T17:16:30Z 1112 562 2005-08-27T18:02:30Z 1 2020-02-15T06:59:47Z +15901 2005-08-23T17:19:17Z 2761 226 2005-08-30T14:24:17Z 2 2020-02-15T06:59:47Z +15902 2005-08-23T17:28:03Z 4500 172 2005-08-30T18:36:03Z 1 2020-02-15T06:59:47Z +15903 2005-08-23T17:30:40Z 1289 267 2005-08-29T14:12:40Z 1 2020-02-15T06:59:47Z +15904 2005-08-23T17:32:19Z 179 37 2005-08-24T21:05:19Z 2 2020-02-15T06:59:47Z +15905 2005-08-23T17:33:04Z 3631 59 2005-08-26T17:38:04Z 2 2020-02-15T06:59:47Z +15906 2005-08-23T17:36:00Z 3230 445 2005-08-28T15:32:00Z 2 2020-02-15T06:59:47Z +15907 2005-08-23T17:39:35Z 2898 2 2005-08-25T23:23:35Z 1 2020-02-15T06:59:47Z +15908 2005-08-23T17:42:00Z 2453 135 2005-08-31T22:32:00Z 1 2020-02-15T06:59:47Z +15909 2005-08-23T17:42:42Z 404 452 2005-08-26T20:25:42Z 1 2020-02-15T06:59:47Z +15910 2005-08-23T17:43:16Z 254 456 2005-08-24T21:55:16Z 2 2020-02-15T06:59:47Z +15911 2005-08-23T17:44:53Z 3006 582 2005-09-01T19:14:53Z 1 2020-02-15T06:59:47Z +15912 2005-08-23T17:47:40Z 3079 229 2005-08-31T14:43:40Z 2 2020-02-15T06:59:47Z +15913 2005-08-23T17:48:30Z 3894 93 2005-08-31T21:17:30Z 2 2020-02-15T06:59:47Z +15914 2005-08-23T17:49:26Z 747 557 2005-08-24T12:20:26Z 1 2020-02-15T06:59:47Z +15915 2005-08-23T17:52:01Z 3566 167 2005-08-24T20:40:01Z 2 2020-02-15T06:59:47Z +15916 2005-08-23T17:56:01Z 4580 327 2005-08-31T21:49:01Z 2 2020-02-15T06:59:47Z +15917 2005-08-23T17:57:28Z 2093 589 2005-08-29T20:03:28Z 1 2020-02-15T06:59:47Z +15918 2005-08-23T17:57:35Z 1456 262 2005-08-28T14:16:35Z 2 2020-02-15T06:59:47Z +15919 2005-08-23T18:01:31Z 1746 497 2005-08-24T16:27:31Z 1 2020-02-15T06:59:47Z +15920 2005-08-23T18:05:10Z 243 212 2005-08-26T18:09:10Z 1 2020-02-15T06:59:47Z +15921 2005-08-23T18:06:54Z 223 522 2005-08-30T20:19:54Z 2 2020-02-15T06:59:47Z +15922 2005-08-23T18:07:31Z 1702 263 2005-09-01T22:27:31Z 1 2020-02-15T06:59:47Z +15923 2005-08-23T18:08:19Z 1693 276 2005-08-26T18:06:19Z 2 2020-02-15T06:59:47Z +15924 2005-08-23T18:08:59Z 1114 541 2005-08-27T12:20:59Z 2 2020-02-15T06:59:47Z +15925 2005-08-23T18:15:06Z 3394 440 2005-08-26T18:09:06Z 2 2020-02-15T06:59:47Z +15926 2005-08-23T18:20:56Z 2231 151 2005-08-24T18:20:56Z 2 2020-02-15T06:59:47Z +15927 2005-08-23T18:23:11Z 2450 401 2005-08-24T15:09:11Z 1 2020-02-15T06:59:47Z +15928 2005-08-23T18:23:24Z 2086 75 2005-09-01T23:43:24Z 2 2020-02-15T06:59:47Z +15929 2005-08-23T18:23:30Z 1832 477 2005-08-27T17:04:30Z 1 2020-02-15T06:59:47Z +15930 2005-08-23T18:26:51Z 180 379 2005-08-31T16:12:51Z 1 2020-02-15T06:59:47Z +15931 2005-08-23T18:28:09Z 1128 237 2005-08-28T23:08:09Z 1 2020-02-15T06:59:47Z +15932 2005-08-23T18:31:40Z 4554 405 2005-08-24T16:30:40Z 2 2020-02-15T06:59:47Z +15933 2005-08-23T18:36:44Z 3493 176 2005-08-26T12:41:44Z 2 2020-02-15T06:59:47Z +15934 2005-08-23T18:40:41Z 994 216 2005-08-25T00:18:41Z 2 2020-02-15T06:59:47Z +15935 2005-08-23T18:41:11Z 907 361 2005-08-25T20:59:11Z 1 2020-02-15T06:59:47Z +15936 2005-08-23T18:43:11Z 1293 411 2005-08-26T00:19:11Z 1 2020-02-15T06:59:47Z +15937 2005-08-23T18:43:22Z 2882 194 2005-08-24T22:53:22Z 1 2020-02-15T06:59:47Z +15938 2005-08-23T18:43:31Z 2884 341 2005-08-31T00:26:31Z 2 2020-02-15T06:59:47Z +15939 2005-08-23T18:44:21Z 3209 382 2005-09-01T17:25:21Z 2 2020-02-15T06:59:47Z +15940 2005-08-23T18:45:06Z 1606 86 2005-08-30T13:00:06Z 2 2020-02-15T06:59:47Z +15941 2005-08-23T18:46:44Z 4304 424 2005-08-31T17:31:44Z 1 2020-02-15T06:59:47Z +15942 2005-08-23T18:48:40Z 1096 210 2005-09-01T18:39:40Z 2 2020-02-15T06:59:47Z +15943 2005-08-23T18:49:32Z 706 462 2005-08-27T19:20:32Z 1 2020-02-15T06:59:47Z +15944 2005-08-23T18:50:54Z 4559 348 2005-08-25T18:04:54Z 2 2020-02-15T06:59:47Z +15945 2005-08-23T18:51:41Z 3633 43 2005-08-28T18:42:41Z 1 2020-02-15T06:59:47Z +15946 2005-08-23T18:54:07Z 4549 561 2005-08-28T21:21:07Z 1 2020-02-15T06:59:47Z +15947 2005-08-23T18:54:32Z 1877 580 2005-08-24T22:39:32Z 2 2020-02-15T06:59:47Z +15948 2005-08-23T18:59:33Z 432 520 2005-08-31T13:02:33Z 2 2020-02-15T06:59:47Z +15949 2005-08-23T19:06:04Z 1199 386 2005-08-26T18:39:04Z 2 2020-02-15T06:59:47Z +15950 2005-08-23T19:09:39Z 1374 280 2005-08-31T17:03:39Z 2 2020-02-15T06:59:47Z +15951 2005-08-23T19:10:32Z 3018 446 2005-08-29T14:17:32Z 1 2020-02-15T06:59:47Z +15952 2005-08-23T19:11:29Z 1314 224 2005-08-28T14:41:29Z 1 2020-02-15T06:59:47Z +15953 2005-08-23T19:13:46Z 3727 540 2005-08-28T23:05:46Z 1 2020-02-15T06:59:47Z +15954 2005-08-23T19:14:07Z 576 460 2005-08-24T20:21:07Z 1 2020-02-15T06:59:47Z +15955 2005-08-23T19:19:06Z 2247 349 2005-08-31T23:34:06Z 1 2020-02-15T06:59:47Z +15956 2005-08-23T19:19:21Z 2763 354 2005-08-25T22:15:21Z 2 2020-02-15T06:59:47Z +15957 2005-08-23T19:21:22Z 74 418 2005-08-31T16:42:22Z 1 2020-02-15T06:59:47Z +15958 2005-08-23T19:22:36Z 4164 492 2005-08-30T01:03:36Z 1 2020-02-15T06:59:47Z +15959 2005-08-23T19:27:04Z 547 415 2005-08-24T15:24:04Z 1 2020-02-15T06:59:47Z +15960 2005-08-23T19:35:42Z 1497 431 2005-08-26T17:36:42Z 2 2020-02-15T06:59:47Z +15961 2005-08-23T19:35:42Z 4006 200 2005-08-30T22:52:42Z 1 2020-02-15T06:59:47Z +15962 2005-08-23T19:42:04Z 3491 160 2005-08-25T23:53:04Z 1 2020-02-15T06:59:47Z +15963 2005-08-23T19:42:46Z 3819 134 2005-08-25T22:12:46Z 1 2020-02-15T06:59:47Z +15964 2005-08-23T19:45:25Z 251 141 2005-08-26T22:43:25Z 2 2020-02-15T06:59:47Z +15965 2005-08-23T19:46:39Z 3449 509 2005-08-24T20:08:39Z 2 2020-02-15T06:59:47Z +15966 2006-02-14T15:16:03Z 4472 374 1 2020-02-15T06:59:47Z +15967 2005-08-23T19:50:06Z 321 257 2005-08-29T14:51:06Z 1 2020-02-15T06:59:47Z +15968 2005-08-23T19:51:29Z 3598 257 2005-08-24T15:07:29Z 1 2020-02-15T06:59:47Z +15969 2005-08-23T19:51:30Z 1807 327 2005-08-31T23:50:30Z 1 2020-02-15T06:59:47Z +15970 2005-08-23T19:54:24Z 4509 395 2005-08-24T18:07:24Z 1 2020-02-15T06:59:47Z +15971 2005-08-23T19:59:33Z 3456 187 2005-09-02T01:28:33Z 1 2020-02-15T06:59:47Z +15972 2005-08-23T20:00:30Z 4428 25 2005-08-30T00:25:30Z 1 2020-02-15T06:59:47Z +15973 2005-08-23T20:04:41Z 2766 343 2005-09-01T20:08:41Z 2 2020-02-15T06:59:47Z +15974 2005-08-23T20:06:04Z 3518 201 2005-08-27T17:33:04Z 2 2020-02-15T06:59:47Z +15975 2005-08-23T20:06:23Z 2723 174 2005-08-27T19:52:23Z 1 2020-02-15T06:59:47Z +15976 2005-08-23T20:07:08Z 835 227 2005-08-25T01:47:08Z 2 2020-02-15T06:59:47Z +15977 2005-08-23T20:07:10Z 1031 550 2005-09-01T22:12:10Z 2 2020-02-15T06:59:47Z +15978 2005-08-23T20:08:18Z 4444 536 2005-08-31T17:35:18Z 2 2020-02-15T06:59:47Z +15979 2005-08-23T20:08:26Z 3733 536 2005-08-26T19:19:26Z 1 2020-02-15T06:59:47Z +15980 2005-08-23T20:10:13Z 3365 196 2005-08-24T17:44:13Z 2 2020-02-15T06:59:47Z +15981 2005-08-23T20:12:17Z 2867 489 2005-08-30T20:43:17Z 1 2020-02-15T06:59:47Z +15982 2005-08-23T20:13:31Z 2920 370 2005-09-01T21:51:31Z 2 2020-02-15T06:59:47Z +15983 2005-08-23T20:13:38Z 3318 464 2005-08-30T18:42:38Z 1 2020-02-15T06:59:47Z +15984 2005-08-23T20:16:27Z 2011 495 2005-08-27T01:43:27Z 1 2020-02-15T06:59:47Z +15985 2005-08-23T20:20:23Z 2646 179 2005-08-26T20:55:23Z 1 2020-02-15T06:59:47Z +15986 2005-08-23T20:20:37Z 3472 226 2005-08-29T20:49:37Z 1 2020-02-15T06:59:47Z +15987 2005-08-23T20:22:17Z 3150 302 2005-08-31T21:46:17Z 2 2020-02-15T06:59:47Z +15988 2005-08-23T20:23:08Z 3932 400 2005-08-28T20:50:08Z 1 2020-02-15T06:59:47Z +15989 2005-08-23T20:24:36Z 38 96 2005-08-26T20:35:36Z 1 2020-02-15T06:59:47Z +15990 2005-08-23T20:25:11Z 3233 512 2005-08-25T15:01:11Z 2 2020-02-15T06:59:47Z +15991 2005-08-23T20:27:34Z 2078 203 2005-08-28T16:48:34Z 2 2020-02-15T06:59:47Z +15992 2005-08-23T20:28:32Z 3334 589 2005-08-24T21:35:32Z 1 2020-02-15T06:59:47Z +15993 2005-08-23T20:28:44Z 1638 12 2005-08-27T16:23:44Z 2 2020-02-15T06:59:47Z +15994 2005-08-23T20:29:10Z 438 595 2005-08-28T01:41:10Z 2 2020-02-15T06:59:47Z +15995 2005-08-23T20:29:56Z 1122 377 2005-08-30T18:09:56Z 1 2020-02-15T06:59:47Z +15996 2005-08-23T20:31:38Z 3098 151 2005-08-29T20:58:38Z 1 2020-02-15T06:59:47Z +15997 2005-08-23T20:40:31Z 2843 447 2005-08-26T19:47:31Z 1 2020-02-15T06:59:47Z +15998 2005-08-23T20:41:09Z 1229 545 2005-08-27T00:20:09Z 1 2020-02-15T06:59:47Z +15999 2005-08-23T20:44:10Z 2584 377 2005-08-31T02:38:10Z 2 2020-02-15T06:59:47Z +16000 2005-08-23T20:44:36Z 282 71 2005-08-25T02:29:36Z 1 2020-02-15T06:59:47Z +16001 2005-08-23T20:45:53Z 245 108 2005-08-27T15:52:53Z 1 2020-02-15T06:59:47Z +16002 2005-08-23T20:47:12Z 2770 73 2005-08-27T23:07:12Z 1 2020-02-15T06:59:47Z +16003 2005-08-23T20:47:28Z 3413 577 2005-08-31T23:22:28Z 1 2020-02-15T06:59:47Z +16004 2005-08-23T20:53:20Z 2223 147 2005-08-31T15:15:20Z 2 2020-02-15T06:59:47Z +16005 2005-08-23T21:00:22Z 3265 466 2005-09-02T02:35:22Z 1 2020-02-15T06:59:47Z +16006 2005-08-23T21:01:09Z 240 533 2005-08-25T19:33:09Z 1 2020-02-15T06:59:47Z +16007 2005-08-23T21:02:43Z 3236 126 2005-08-30T23:37:43Z 2 2020-02-15T06:59:47Z +16008 2005-08-23T21:04:51Z 3273 189 2005-08-31T22:09:51Z 1 2020-02-15T06:59:47Z +16009 2005-08-23T21:07:59Z 3055 133 2005-08-29T16:54:59Z 2 2020-02-15T06:59:47Z +16010 2005-08-23T21:10:24Z 2539 173 2005-08-25T17:58:24Z 1 2020-02-15T06:59:47Z +16011 2005-08-23T21:11:33Z 1093 389 2005-08-31T17:51:33Z 1 2020-02-15T06:59:47Z +16012 2005-08-23T21:13:39Z 2421 80 2005-08-30T23:52:39Z 2 2020-02-15T06:59:47Z +16013 2005-08-23T21:17:17Z 561 462 2005-08-26T21:15:17Z 1 2020-02-15T06:59:47Z +16014 2005-08-23T21:18:31Z 3322 532 2005-08-31T17:28:31Z 2 2020-02-15T06:59:47Z +16015 2005-08-23T21:25:03Z 3113 50 2005-08-24T20:05:03Z 2 2020-02-15T06:59:47Z +16016 2005-08-23T21:26:35Z 3374 595 2005-08-28T16:06:35Z 2 2020-02-15T06:59:47Z +16017 2005-08-23T21:27:11Z 664 535 2005-08-24T23:22:11Z 1 2020-02-15T06:59:47Z +16018 2005-08-23T21:27:35Z 897 439 2005-08-30T00:36:35Z 1 2020-02-15T06:59:47Z +16019 2005-08-23T21:30:45Z 3093 278 2005-08-27T23:45:45Z 2 2020-02-15T06:59:47Z +16020 2005-08-23T21:34:33Z 277 311 2005-09-01T18:17:33Z 1 2020-02-15T06:59:47Z +16021 2005-08-23T21:37:59Z 3057 314 2005-08-31T01:52:59Z 1 2020-02-15T06:59:47Z +16022 2005-08-23T21:44:27Z 2925 504 2005-08-28T01:52:27Z 1 2020-02-15T06:59:47Z +16023 2005-08-23T21:45:02Z 2347 124 2005-08-24T21:28:02Z 1 2020-02-15T06:59:47Z +16024 2005-08-23T21:46:47Z 2910 473 2005-08-27T02:06:47Z 1 2020-02-15T06:59:47Z +16025 2005-08-23T21:48:54Z 1777 569 2005-08-24T22:05:54Z 2 2020-02-15T06:59:47Z +16026 2005-08-23T21:49:22Z 467 484 2005-08-27T00:47:22Z 1 2020-02-15T06:59:47Z +16027 2005-08-23T21:49:33Z 1724 160 2005-08-30T16:19:33Z 2 2020-02-15T06:59:47Z +16028 2005-08-23T21:52:56Z 2515 119 2005-08-30T18:16:56Z 2 2020-02-15T06:59:47Z +16029 2005-08-23T21:54:02Z 953 143 2005-08-29T23:55:02Z 1 2020-02-15T06:59:47Z +16030 2005-08-23T21:56:04Z 4161 137 2005-08-31T01:24:04Z 2 2020-02-15T06:59:47Z +16031 2005-08-23T21:59:26Z 1843 102 2005-08-29T20:15:26Z 1 2020-02-15T06:59:47Z +16032 2005-08-23T21:59:57Z 2527 447 2005-08-31T22:46:57Z 2 2020-02-15T06:59:47Z +16033 2005-08-23T22:06:15Z 760 226 2005-09-01T02:36:15Z 2 2020-02-15T06:59:47Z +16034 2005-08-23T22:06:34Z 655 502 2005-08-29T18:44:34Z 1 2020-02-15T06:59:47Z +16035 2005-08-23T22:08:04Z 549 37 2005-08-28T03:46:04Z 1 2020-02-15T06:59:47Z +16036 2005-08-23T22:12:44Z 1372 425 2005-08-25T17:48:44Z 2 2020-02-15T06:59:47Z +16037 2005-08-23T22:13:04Z 341 45 2005-09-01T02:48:04Z 2 2020-02-15T06:59:47Z +16038 2005-08-23T22:14:31Z 2612 172 2005-08-30T03:28:31Z 1 2020-02-15T06:59:47Z +16039 2005-08-23T22:18:51Z 545 78 2005-08-31T19:55:51Z 2 2020-02-15T06:59:47Z +16040 2005-08-23T22:19:33Z 3524 195 2005-09-02T02:19:33Z 2 2020-02-15T06:59:47Z +16041 2005-08-23T22:20:26Z 4116 121 2005-08-25T20:14:26Z 2 2020-02-15T06:59:47Z +16042 2005-08-23T22:20:40Z 629 131 2005-08-24T17:54:40Z 1 2020-02-15T06:59:47Z +16043 2005-08-23T22:21:03Z 3869 526 2005-08-31T03:09:03Z 2 2020-02-15T06:59:47Z +16044 2005-08-23T22:24:39Z 1312 468 2005-08-25T04:08:39Z 1 2020-02-15T06:59:47Z +16045 2005-08-23T22:25:26Z 772 14 2005-08-25T23:54:26Z 1 2020-02-15T06:59:47Z +16046 2005-08-23T22:26:47Z 4364 74 2005-08-27T18:02:47Z 2 2020-02-15T06:59:47Z +16047 2005-08-23T22:42:48Z 2088 114 2005-08-25T02:48:48Z 2 2020-02-15T06:59:47Z +16048 2005-08-23T22:43:07Z 2019 103 2005-08-31T21:33:07Z 1 2020-02-15T06:59:47Z +16049 2005-08-23T22:50:12Z 2666 393 2005-08-30T01:01:12Z 2 2020-02-15T06:59:47Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/staff.tsv b/drivers/csv/testdata/sakila-tsv-noheader/staff.tsv new file mode 100644 index 00000000..0c61e197 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/staff.tsv @@ -0,0 +1,2 @@ +1 Mike Hillyer 3 Mike.Hillyer@sakilastaff.com 1 1 Mike 8cb2237d0679ca88db6464eac60da96345513964 2020-02-15T06:59:28Z +2 Jon Stephens 4 Jon.Stephens@sakilastaff.com 2 1 Jon 8cb2237d0679ca88db6464eac60da96345513964 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv-noheader/store.tsv b/drivers/csv/testdata/sakila-tsv-noheader/store.tsv new file mode 100644 index 00000000..22eb7923 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv-noheader/store.tsv @@ -0,0 +1,2 @@ +1 1 1 2020-02-15T06:59:28Z +2 2 2 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv/actor.tsv b/drivers/csv/testdata/sakila-tsv/actor.tsv new file mode 100644 index 00000000..c244b95a --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/actor.tsv @@ -0,0 +1,201 @@ +actor_id first_name last_name last_update +1 PENELOPE GUINESS 2020-02-15T06:59:28Z +2 NICK WAHLBERG 2020-02-15T06:59:28Z +3 ED CHASE 2020-02-15T06:59:28Z +4 JENNIFER DAVIS 2020-02-15T06:59:28Z +5 JOHNNY LOLLOBRIGIDA 2020-02-15T06:59:28Z +6 BETTE NICHOLSON 2020-02-15T06:59:28Z +7 GRACE MOSTEL 2020-02-15T06:59:28Z +8 MATTHEW JOHANSSON 2020-02-15T06:59:28Z +9 JOE SWANK 2020-02-15T06:59:28Z +10 CHRISTIAN GABLE 2020-02-15T06:59:28Z +11 ZERO CAGE 2020-02-15T06:59:28Z +12 KARL BERRY 2020-02-15T06:59:28Z +13 UMA WOOD 2020-02-15T06:59:28Z +14 VIVIEN BERGEN 2020-02-15T06:59:28Z +15 CUBA OLIVIER 2020-02-15T06:59:28Z +16 FRED COSTNER 2020-02-15T06:59:28Z +17 HELEN VOIGHT 2020-02-15T06:59:28Z +18 DAN TORN 2020-02-15T06:59:28Z +19 BOB FAWCETT 2020-02-15T06:59:28Z +20 LUCILLE TRACY 2020-02-15T06:59:28Z +21 KIRSTEN PALTROW 2020-02-15T06:59:28Z +22 ELVIS MARX 2020-02-15T06:59:28Z +23 SANDRA KILMER 2020-02-15T06:59:28Z +24 CAMERON STREEP 2020-02-15T06:59:28Z +25 KEVIN BLOOM 2020-02-15T06:59:28Z +26 RIP CRAWFORD 2020-02-15T06:59:28Z +27 JULIA MCQUEEN 2020-02-15T06:59:28Z +28 WOODY HOFFMAN 2020-02-15T06:59:28Z +29 ALEC WAYNE 2020-02-15T06:59:28Z +30 SANDRA PECK 2020-02-15T06:59:28Z +31 SISSY SOBIESKI 2020-02-15T06:59:28Z +32 TIM HACKMAN 2020-02-15T06:59:28Z +33 MILLA PECK 2020-02-15T06:59:28Z +34 AUDREY OLIVIER 2020-02-15T06:59:28Z +35 JUDY DEAN 2020-02-15T06:59:28Z +36 BURT DUKAKIS 2020-02-15T06:59:28Z +37 VAL BOLGER 2020-02-15T06:59:28Z +38 TOM MCKELLEN 2020-02-15T06:59:28Z +39 GOLDIE BRODY 2020-02-15T06:59:28Z +40 JOHNNY CAGE 2020-02-15T06:59:28Z +41 JODIE DEGENERES 2020-02-15T06:59:28Z +42 TOM MIRANDA 2020-02-15T06:59:28Z +43 KIRK JOVOVICH 2020-02-15T06:59:28Z +44 NICK STALLONE 2020-02-15T06:59:28Z +45 REESE KILMER 2020-02-15T06:59:28Z +46 PARKER GOLDBERG 2020-02-15T06:59:28Z +47 JULIA BARRYMORE 2020-02-15T06:59:28Z +48 FRANCES DAY-LEWIS 2020-02-15T06:59:28Z +49 ANNE CRONYN 2020-02-15T06:59:28Z +50 NATALIE HOPKINS 2020-02-15T06:59:28Z +51 GARY PHOENIX 2020-02-15T06:59:28Z +52 CARMEN HUNT 2020-02-15T06:59:28Z +53 MENA TEMPLE 2020-02-15T06:59:28Z +54 PENELOPE PINKETT 2020-02-15T06:59:28Z +55 FAY KILMER 2020-02-15T06:59:28Z +56 DAN HARRIS 2020-02-15T06:59:28Z +57 JUDE CRUISE 2020-02-15T06:59:28Z +58 CHRISTIAN AKROYD 2020-02-15T06:59:28Z +59 DUSTIN TAUTOU 2020-02-15T06:59:28Z +60 HENRY BERRY 2020-02-15T06:59:28Z +61 CHRISTIAN NEESON 2020-02-15T06:59:28Z +62 JAYNE NEESON 2020-02-15T06:59:28Z +63 CAMERON WRAY 2020-02-15T06:59:28Z +64 RAY JOHANSSON 2020-02-15T06:59:28Z +65 ANGELA HUDSON 2020-02-15T06:59:28Z +66 MARY TANDY 2020-02-15T06:59:28Z +67 JESSICA BAILEY 2020-02-15T06:59:28Z +68 RIP WINSLET 2020-02-15T06:59:28Z +69 KENNETH PALTROW 2020-02-15T06:59:28Z +70 MICHELLE MCCONAUGHEY 2020-02-15T06:59:28Z +71 ADAM GRANT 2020-02-15T06:59:28Z +72 SEAN WILLIAMS 2020-02-15T06:59:28Z +73 GARY PENN 2020-02-15T06:59:28Z +74 MILLA KEITEL 2020-02-15T06:59:28Z +75 BURT POSEY 2020-02-15T06:59:28Z +76 ANGELINA ASTAIRE 2020-02-15T06:59:28Z +77 CARY MCCONAUGHEY 2020-02-15T06:59:28Z +78 GROUCHO SINATRA 2020-02-15T06:59:28Z +79 MAE HOFFMAN 2020-02-15T06:59:28Z +80 RALPH CRUZ 2020-02-15T06:59:28Z +81 SCARLETT DAMON 2020-02-15T06:59:28Z +82 WOODY JOLIE 2020-02-15T06:59:28Z +83 BEN WILLIS 2020-02-15T06:59:28Z +84 JAMES PITT 2020-02-15T06:59:28Z +85 MINNIE ZELLWEGER 2020-02-15T06:59:28Z +86 GREG CHAPLIN 2020-02-15T06:59:28Z +87 SPENCER PECK 2020-02-15T06:59:28Z +88 KENNETH PESCI 2020-02-15T06:59:28Z +89 CHARLIZE DENCH 2020-02-15T06:59:28Z +90 SEAN GUINESS 2020-02-15T06:59:28Z +91 CHRISTOPHER BERRY 2020-02-15T06:59:28Z +92 KIRSTEN AKROYD 2020-02-15T06:59:28Z +93 ELLEN PRESLEY 2020-02-15T06:59:28Z +94 KENNETH TORN 2020-02-15T06:59:28Z +95 DARYL WAHLBERG 2020-02-15T06:59:28Z +96 GENE WILLIS 2020-02-15T06:59:28Z +97 MEG HAWKE 2020-02-15T06:59:28Z +98 CHRIS BRIDGES 2020-02-15T06:59:28Z +99 JIM MOSTEL 2020-02-15T06:59:28Z +100 SPENCER DEPP 2020-02-15T06:59:28Z +101 SUSAN DAVIS 2020-02-15T06:59:28Z +102 WALTER TORN 2020-02-15T06:59:28Z +103 MATTHEW LEIGH 2020-02-15T06:59:28Z +104 PENELOPE CRONYN 2020-02-15T06:59:28Z +105 SIDNEY CROWE 2020-02-15T06:59:28Z +106 GROUCHO DUNST 2020-02-15T06:59:28Z +107 GINA DEGENERES 2020-02-15T06:59:28Z +108 WARREN NOLTE 2020-02-15T06:59:28Z +109 SYLVESTER DERN 2020-02-15T06:59:28Z +110 SUSAN DAVIS 2020-02-15T06:59:28Z +111 CAMERON ZELLWEGER 2020-02-15T06:59:28Z +112 RUSSELL BACALL 2020-02-15T06:59:28Z +113 MORGAN HOPKINS 2020-02-15T06:59:28Z +114 MORGAN MCDORMAND 2020-02-15T06:59:28Z +115 HARRISON BALE 2020-02-15T06:59:28Z +116 DAN STREEP 2020-02-15T06:59:28Z +117 RENEE TRACY 2020-02-15T06:59:28Z +118 CUBA ALLEN 2020-02-15T06:59:28Z +119 WARREN JACKMAN 2020-02-15T06:59:28Z +120 PENELOPE MONROE 2020-02-15T06:59:28Z +121 LIZA BERGMAN 2020-02-15T06:59:28Z +122 SALMA NOLTE 2020-02-15T06:59:28Z +123 JULIANNE DENCH 2020-02-15T06:59:28Z +124 SCARLETT BENING 2020-02-15T06:59:28Z +125 ALBERT NOLTE 2020-02-15T06:59:28Z +126 FRANCES TOMEI 2020-02-15T06:59:28Z +127 KEVIN GARLAND 2020-02-15T06:59:28Z +128 CATE MCQUEEN 2020-02-15T06:59:28Z +129 DARYL CRAWFORD 2020-02-15T06:59:28Z +130 GRETA KEITEL 2020-02-15T06:59:28Z +131 JANE JACKMAN 2020-02-15T06:59:28Z +132 ADAM HOPPER 2020-02-15T06:59:28Z +133 RICHARD PENN 2020-02-15T06:59:28Z +134 GENE HOPKINS 2020-02-15T06:59:28Z +135 RITA REYNOLDS 2020-02-15T06:59:28Z +136 ED MANSFIELD 2020-02-15T06:59:28Z +137 MORGAN WILLIAMS 2020-02-15T06:59:28Z +138 LUCILLE DEE 2020-02-15T06:59:28Z +139 EWAN GOODING 2020-02-15T06:59:28Z +140 WHOOPI HURT 2020-02-15T06:59:28Z +141 CATE HARRIS 2020-02-15T06:59:28Z +142 JADA RYDER 2020-02-15T06:59:28Z +143 RIVER DEAN 2020-02-15T06:59:28Z +144 ANGELA WITHERSPOON 2020-02-15T06:59:28Z +145 KIM ALLEN 2020-02-15T06:59:28Z +146 ALBERT JOHANSSON 2020-02-15T06:59:28Z +147 FAY WINSLET 2020-02-15T06:59:28Z +148 EMILY DEE 2020-02-15T06:59:28Z +149 RUSSELL TEMPLE 2020-02-15T06:59:28Z +150 JAYNE NOLTE 2020-02-15T06:59:28Z +151 GEOFFREY HESTON 2020-02-15T06:59:28Z +152 BEN HARRIS 2020-02-15T06:59:28Z +153 MINNIE KILMER 2020-02-15T06:59:28Z +154 MERYL GIBSON 2020-02-15T06:59:28Z +155 IAN TANDY 2020-02-15T06:59:28Z +156 FAY WOOD 2020-02-15T06:59:28Z +157 GRETA MALDEN 2020-02-15T06:59:28Z +158 VIVIEN BASINGER 2020-02-15T06:59:28Z +159 LAURA BRODY 2020-02-15T06:59:28Z +160 CHRIS DEPP 2020-02-15T06:59:28Z +161 HARVEY HOPE 2020-02-15T06:59:28Z +162 OPRAH KILMER 2020-02-15T06:59:28Z +163 CHRISTOPHER WEST 2020-02-15T06:59:28Z +164 HUMPHREY WILLIS 2020-02-15T06:59:28Z +165 AL GARLAND 2020-02-15T06:59:28Z +166 NICK DEGENERES 2020-02-15T06:59:28Z +167 LAURENCE BULLOCK 2020-02-15T06:59:28Z +168 WILL WILSON 2020-02-15T06:59:28Z +169 KENNETH HOFFMAN 2020-02-15T06:59:28Z +170 MENA HOPPER 2020-02-15T06:59:28Z +171 OLYMPIA PFEIFFER 2020-02-15T06:59:28Z +172 GROUCHO WILLIAMS 2020-02-15T06:59:28Z +173 ALAN DREYFUSS 2020-02-15T06:59:28Z +174 MICHAEL BENING 2020-02-15T06:59:28Z +175 WILLIAM HACKMAN 2020-02-15T06:59:28Z +176 JON CHASE 2020-02-15T06:59:28Z +177 GENE MCKELLEN 2020-02-15T06:59:28Z +178 LISA MONROE 2020-02-15T06:59:28Z +179 ED GUINESS 2020-02-15T06:59:28Z +180 JEFF SILVERSTONE 2020-02-15T06:59:28Z +181 MATTHEW CARREY 2020-02-15T06:59:28Z +182 DEBBIE AKROYD 2020-02-15T06:59:28Z +183 RUSSELL CLOSE 2020-02-15T06:59:28Z +184 HUMPHREY GARLAND 2020-02-15T06:59:28Z +185 MICHAEL BOLGER 2020-02-15T06:59:28Z +186 JULIA ZELLWEGER 2020-02-15T06:59:28Z +187 RENEE BALL 2020-02-15T06:59:28Z +188 ROCK DUKAKIS 2020-02-15T06:59:28Z +189 CUBA BIRCH 2020-02-15T06:59:28Z +190 AUDREY BAILEY 2020-02-15T06:59:28Z +191 GREGORY GOODING 2020-02-15T06:59:28Z +192 JOHN SUVARI 2020-02-15T06:59:28Z +193 BURT TEMPLE 2020-02-15T06:59:28Z +194 MERYL ALLEN 2020-02-15T06:59:28Z +195 JAYNE SILVERSTONE 2020-02-15T06:59:28Z +196 BELA WALKEN 2020-02-15T06:59:28Z +197 REESE WEST 2020-02-15T06:59:28Z +198 MARY KEITEL 2020-02-15T06:59:28Z +199 JULIA FAWCETT 2020-02-15T06:59:28Z +200 THORA TEMPLE 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv/address.tsv b/drivers/csv/testdata/sakila-tsv/address.tsv new file mode 100644 index 00000000..2ab17733 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/address.tsv @@ -0,0 +1,604 @@ +address_id address address2 district city_id postal_code phone last_update +1 47 MySakila Drive " " 300 " " 2020-02-15T06:59:28Z +2 28 MySQL Boulevard " " 576 " " 2020-02-15T06:59:28Z +3 23 Workhaven Lane " " 300 " " 2020-02-15T06:59:28Z +4 1411 Lillydale Drive " " 576 " " 2020-02-15T06:59:28Z +5 1913 Hanoi Way " " 463 35200 " " 2020-02-15T06:59:28Z +6 1121 Loja Avenue " " 449 17886 " " 2020-02-15T06:59:28Z +7 692 Joliet Street " " 38 83579 " " 2020-02-15T06:59:28Z +8 1566 Inegl Manor " " 349 53561 " " 2020-02-15T06:59:28Z +9 53 Idfu Parkway " " 361 42399 " " 2020-02-15T06:59:28Z +10 1795 Santiago de Compostela Way " " 295 18743 " " 2020-02-15T06:59:28Z +11 900 Santiago de Compostela Parkway " " 280 93896 " " 2020-02-15T06:59:28Z +12 478 Joliet Way " " 200 77948 " " 2020-02-15T06:59:28Z +13 613 Korolev Drive " " 329 45844 " " 2020-02-15T06:59:28Z +14 1531 Sal Drive " " 162 53628 " " 2020-02-15T06:59:28Z +15 1542 Tarlac Parkway " " 440 1027 " " 2020-02-15T06:59:28Z +16 808 Bhopal Manor " " 582 10672 " " 2020-02-15T06:59:28Z +17 270 Amroha Parkway " " 384 29610 " " 2020-02-15T06:59:28Z +18 770 Bydgoszcz Avenue " " 120 16266 " " 2020-02-15T06:59:28Z +19 419 Iligan Lane " " 76 72878 " " 2020-02-15T06:59:28Z +20 360 Toulouse Parkway " " 495 54308 " " 2020-02-15T06:59:28Z +21 270 Toulon Boulevard " " 156 81766 " " 2020-02-15T06:59:28Z +22 320 Brest Avenue " " 252 43331 " " 2020-02-15T06:59:28Z +23 1417 Lancaster Avenue " " 267 72192 " " 2020-02-15T06:59:28Z +24 1688 Okara Way " " 327 21954 " " 2020-02-15T06:59:28Z +25 262 A Corua (La Corua) Parkway " " 525 34418 " " 2020-02-15T06:59:28Z +26 28 Charlotte Amalie Street " " 443 37551 " " 2020-02-15T06:59:28Z +27 1780 Hino Boulevard " " 303 7716 " " 2020-02-15T06:59:28Z +28 96 Tafuna Way " " 128 99865 " " 2020-02-15T06:59:28Z +29 934 San Felipe de Puerto Plata Street " " 472 99780 " " 2020-02-15T06:59:28Z +30 18 Duisburg Boulevard " " 121 58327 " " 2020-02-15T06:59:28Z +31 217 Botshabelo Place " " 138 49521 " " 2020-02-15T06:59:28Z +32 1425 Shikarpur Manor " " 346 65599 " " 2020-02-15T06:59:28Z +33 786 Aurora Avenue " " 474 65750 " " 2020-02-15T06:59:28Z +34 1668 Anpolis Street " " 316 50199 " " 2020-02-15T06:59:28Z +35 33 Gorontalo Way " " 257 30348 " " 2020-02-15T06:59:28Z +36 176 Mandaluyong Place " " 239 65213 " " 2020-02-15T06:59:28Z +37 127 Purnea (Purnia) Manor " " 17 79388 " " 2020-02-15T06:59:28Z +38 61 Tama Street " " 284 94065 " " 2020-02-15T06:59:28Z +39 391 Callao Drive " " 544 34021 " " 2020-02-15T06:59:28Z +40 334 Munger (Monghyr) Lane " " 31 38145 " " 2020-02-15T06:59:28Z +41 1440 Fukuyama Loop " " 362 47929 " " 2020-02-15T06:59:28Z +42 269 Cam Ranh Parkway " " 115 34689 " " 2020-02-15T06:59:28Z +43 306 Antofagasta Place " " 569 3989 " " 2020-02-15T06:59:28Z +44 671 Graz Street " " 353 94399 " " 2020-02-15T06:59:28Z +45 42 Brindisi Place " " 586 16744 " " 2020-02-15T06:59:28Z +46 1632 Bislig Avenue " " 394 61117 " " 2020-02-15T06:59:28Z +47 1447 Imus Way " " 167 48942 " " 2020-02-15T06:59:28Z +48 1998 Halifax Drive " " 308 76022 " " 2020-02-15T06:59:28Z +49 1718 Valencia Street " " 27 37359 " " 2020-02-15T06:59:28Z +50 46 Pjatigorsk Lane " " 343 23616 " " 2020-02-15T06:59:28Z +51 686 Garland Manor " " 247 52535 " " 2020-02-15T06:59:28Z +52 909 Garland Manor " " 367 69367 " " 2020-02-15T06:59:28Z +53 725 Isesaki Place " " 237 74428 " " 2020-02-15T06:59:28Z +54 115 Hidalgo Parkway " " 379 80168 " " 2020-02-15T06:59:28Z +55 1135 Izumisano Parkway " " 171 48150 " " 2020-02-15T06:59:28Z +56 939 Probolinggo Loop " " 1 4166 " " 2020-02-15T06:59:28Z +57 17 Kabul Boulevard " " 355 38594 " " 2020-02-15T06:59:28Z +58 1964 Allappuzha (Alleppey) Street " " 227 48980 " " 2020-02-15T06:59:28Z +59 1697 Kowloon and New Kowloon Loop " " 49 57807 " " 2020-02-15T06:59:28Z +60 1668 Saint Louis Place " " 397 39072 " " 2020-02-15T06:59:28Z +61 943 Tokat Street " " 560 45428 " " 2020-02-15T06:59:28Z +62 1114 Liepaja Street " " 282 69226 " " 2020-02-15T06:59:28Z +63 1213 Ranchi Parkway " " 350 94352 " " 2020-02-15T06:59:28Z +64 81 Hodeida Way " " 231 55561 " " 2020-02-15T06:59:28Z +65 915 Ponce Place " " 56 83980 " " 2020-02-15T06:59:28Z +66 1717 Guadalajara Lane " " 441 85505 " " 2020-02-15T06:59:28Z +67 1214 Hanoi Way " " 306 67055 " " 2020-02-15T06:59:28Z +68 1966 Amroha Avenue " " 139 70385 " " 2020-02-15T06:59:28Z +69 698 Otsu Street " " 105 71110 " " 2020-02-15T06:59:28Z +70 1150 Kimchon Manor " " 321 96109 " " 2020-02-15T06:59:28Z +71 1586 Guaruj Place " " 579 5135 " " 2020-02-15T06:59:28Z +72 57 Arlington Manor " " 475 48960 " " 2020-02-15T06:59:28Z +73 1031 Daugavpils Parkway " " 63 59025 " " 2020-02-15T06:59:28Z +74 1124 Buenaventura Drive " " 13 6856 " " 2020-02-15T06:59:28Z +75 492 Cam Ranh Street " " 61 50805 " " 2020-02-15T06:59:28Z +76 89 Allappuzha (Alleppey) Manor " " 517 75444 " " 2020-02-15T06:59:28Z +77 1947 Poos de Caldas Boulevard " " 114 60951 " " 2020-02-15T06:59:28Z +78 1206 Dos Quebradas Place " " 431 20207 " " 2020-02-15T06:59:28Z +79 1551 Rampur Lane " " 108 72394 " " 2020-02-15T06:59:28Z +80 602 Paarl Street " " 402 98889 " " 2020-02-15T06:59:28Z +81 1692 Ede Loop " " 30 9223 " " 2020-02-15T06:59:28Z +82 936 Salzburg Lane " " 425 96709 " " 2020-02-15T06:59:28Z +83 586 Tete Way " " 256 1079 " " 2020-02-15T06:59:28Z +84 1888 Kabul Drive " " 217 20936 " " 2020-02-15T06:59:28Z +85 320 Baiyin Parkway " " 319 37307 " " 2020-02-15T06:59:28Z +86 927 Baha Blanca Parkway " " 479 9495 " " 2020-02-15T06:59:28Z +87 929 Tallahassee Loop " " 497 74671 " " 2020-02-15T06:59:28Z +88 125 Citt del Vaticano Boulevard " " 40 67912 " " 2020-02-15T06:59:28Z +89 1557 Ktahya Boulevard " " 88 88002 " " 2020-02-15T06:59:28Z +90 870 Ashqelon Loop " " 489 84931 " " 2020-02-15T06:59:28Z +91 1740 Portoviejo Avenue " " 480 29932 " " 2020-02-15T06:59:28Z +92 1942 Ciparay Parkway " " 113 82624 " " 2020-02-15T06:59:28Z +93 1926 El Alto Avenue " " 289 75543 " " 2020-02-15T06:59:28Z +94 1952 Chatsworth Drive " " 332 25958 " " 2020-02-15T06:59:28Z +95 1370 Le Mans Avenue " " 53 52163 " " 2020-02-15T06:59:28Z +96 984 Effon-Alaiye Avenue " " 183 17119 " " 2020-02-15T06:59:28Z +97 832 Nakhon Sawan Manor " " 592 49021 " " 2020-02-15T06:59:28Z +98 152 Kitwe Parkway " " 82 53182 " " 2020-02-15T06:59:28Z +99 1697 Tanauan Lane " " 399 22870 " " 2020-02-15T06:59:28Z +100 1308 Arecibo Way " " 41 30695 " " 2020-02-15T06:59:28Z +101 1599 Plock Drive " " 534 71986 " " 2020-02-15T06:59:28Z +102 669 Firozabad Loop " " 12 92265 " " 2020-02-15T06:59:28Z +103 588 Vila Velha Manor " " 268 51540 " " 2020-02-15T06:59:28Z +104 1913 Kamakura Place " " 238 97287 " " 2020-02-15T06:59:28Z +105 733 Mandaluyong Place " " 2 77459 " " 2020-02-15T06:59:28Z +106 659 Vaduz Drive " " 34 49708 " " 2020-02-15T06:59:28Z +107 1177 Jelets Way " " 220 3305 " " 2020-02-15T06:59:28Z +108 1386 Yangor Avenue " " 543 80720 " " 2020-02-15T06:59:28Z +109 454 Nakhon Sawan Boulevard " " 173 76383 " " 2020-02-15T06:59:28Z +110 1867 San Juan Bautista Tuxtepec Avenue " " 225 78311 " " 2020-02-15T06:59:28Z +111 1532 Dzerzinsk Way " " 334 9599 " " 2020-02-15T06:59:28Z +112 1002 Ahmadnagar Manor " " 213 93026 " " 2020-02-15T06:59:28Z +113 682 Junan Way " " 273 30418 " " 2020-02-15T06:59:28Z +114 804 Elista Drive " " 159 61069 " " 2020-02-15T06:59:28Z +115 1378 Alvorada Avenue " " 102 75834 " " 2020-02-15T06:59:28Z +116 793 Cam Ranh Avenue " " 292 87057 " " 2020-02-15T06:59:28Z +117 1079 Tel Aviv-Jaffa Boulevard " " 132 10885 " " 2020-02-15T06:59:28Z +118 442 Rae Bareli Place " " 148 24321 " " 2020-02-15T06:59:28Z +119 1107 Nakhon Sawan Avenue " " 365 75149 " " 2020-02-15T06:59:28Z +120 544 Malm Parkway " " 403 63502 " " 2020-02-15T06:59:28Z +121 1967 Sincelejo Place " " 176 73644 " " 2020-02-15T06:59:28Z +122 333 Goinia Way " " 185 78625 " " 2020-02-15T06:59:28Z +123 1987 Coacalco de Berriozbal Loop " " 476 96065 " " 2020-02-15T06:59:28Z +124 241 Mosul Lane " " 147 76157 " " 2020-02-15T06:59:28Z +125 211 Chiayi Drive " " 164 58186 " " 2020-02-15T06:59:28Z +126 1175 Tanauan Way " " 305 64615 " " 2020-02-15T06:59:28Z +127 117 Boa Vista Way " " 566 6804 " " 2020-02-15T06:59:28Z +128 848 Tafuna Manor " " 281 45142 " " 2020-02-15T06:59:28Z +129 569 Baicheng Lane " " 85 60304 " " 2020-02-15T06:59:28Z +130 1666 Qomsheh Drive " " 410 66255 " " 2020-02-15T06:59:28Z +131 801 Hagonoy Drive " " 484 8439 " " 2020-02-15T06:59:28Z +132 1050 Garden Grove Avenue " " 236 4999 " " 2020-02-15T06:59:28Z +133 1854 Tieli Street " " 302 15819 " " 2020-02-15T06:59:28Z +134 758 Junan Lane " " 190 82639 " " 2020-02-15T06:59:28Z +135 1752 So Leopoldo Parkway " " 345 14014 " " 2020-02-15T06:59:28Z +136 898 Belm Manor " " 87 49757 " " 2020-02-15T06:59:28Z +137 261 Saint Louis Way " " 541 83401 " " 2020-02-15T06:59:28Z +138 765 Southampton Drive " " 421 4285 " " 2020-02-15T06:59:28Z +139 943 Johannesburg Avenue " " 417 5892 " " 2020-02-15T06:59:28Z +140 788 Atinsk Street " " 211 81691 " " 2020-02-15T06:59:28Z +141 1749 Daxian Place " " 29 11044 " " 2020-02-15T06:59:28Z +142 1587 Sullana Lane " " 207 85769 " " 2020-02-15T06:59:28Z +143 1029 Dzerzinsk Manor " " 542 57519 " " 2020-02-15T06:59:28Z +144 1666 Beni-Mellal Place " " 123 13377 " " 2020-02-15T06:59:28Z +145 928 Jaffna Loop " " 172 93762 " " 2020-02-15T06:59:28Z +146 483 Ljubertsy Parkway " " 149 60562 " " 2020-02-15T06:59:28Z +147 374 Bat Yam Boulevard " " 266 97700 " " 2020-02-15T06:59:28Z +148 1027 Songkhla Manor " " 340 30861 " " 2020-02-15T06:59:28Z +149 999 Sanaa Loop " " 491 3439 " " 2020-02-15T06:59:28Z +150 879 Newcastle Way " " 499 90732 " " 2020-02-15T06:59:28Z +151 1337 Lincoln Parkway " " 555 99457 " " 2020-02-15T06:59:28Z +152 1952 Pune Lane " " 442 92150 " " 2020-02-15T06:59:28Z +153 782 Mosul Street " " 94 25545 " " 2020-02-15T06:59:28Z +154 781 Shimonoseki Drive " " 202 95444 " " 2020-02-15T06:59:28Z +155 1560 Jelets Boulevard " " 291 77777 " " 2020-02-15T06:59:28Z +156 1963 Moscow Place " " 354 64863 " " 2020-02-15T06:59:28Z +157 456 Escobar Way " " 232 36061 " " 2020-02-15T06:59:28Z +158 798 Cianjur Avenue " " 590 76990 " " 2020-02-15T06:59:28Z +159 185 Novi Sad Place " " 72 41778 " " 2020-02-15T06:59:28Z +160 1367 Yantai Manor " " 381 21294 " " 2020-02-15T06:59:28Z +161 1386 Nakhon Sawan Boulevard " " 420 53502 " " 2020-02-15T06:59:28Z +162 369 Papeete Way " " 187 66639 " " 2020-02-15T06:59:28Z +163 1440 Compton Place " " 307 81037 " " 2020-02-15T06:59:28Z +164 1623 Baha Blanca Manor " " 310 81511 " " 2020-02-15T06:59:28Z +165 97 Shimoga Avenue " " 533 44660 " " 2020-02-15T06:59:28Z +166 1740 Le Mans Loop " " 297 22853 " " 2020-02-15T06:59:28Z +167 1287 Xiangfan Boulevard " " 253 57844 " " 2020-02-15T06:59:28Z +168 842 Salzburg Lane " " 529 3313 " " 2020-02-15T06:59:28Z +169 154 Tallahassee Loop " " 199 62250 " " 2020-02-15T06:59:28Z +170 710 San Felipe del Progreso Avenue " " 304 76901 " " 2020-02-15T06:59:28Z +171 1540 Wroclaw Drive " " 107 62686 " " 2020-02-15T06:59:28Z +172 475 Atinsk Way " " 240 59571 " " 2020-02-15T06:59:28Z +173 1294 Firozabad Drive " " 407 70618 " " 2020-02-15T06:59:28Z +174 1877 Ezhou Lane " " 550 63337 " " 2020-02-15T06:59:28Z +175 316 Uruapan Street " " 223 58194 " " 2020-02-15T06:59:28Z +176 29 Pyongyang Loop " " 58 47753 " " 2020-02-15T06:59:28Z +177 1010 Klerksdorp Way " " 186 6802 " " 2020-02-15T06:59:28Z +178 1848 Salala Boulevard " " 373 25220 " " 2020-02-15T06:59:28Z +179 431 Xiangtan Avenue " " 18 4854 " " 2020-02-15T06:59:28Z +180 757 Rustenburg Avenue " " 483 89668 " " 2020-02-15T06:59:28Z +181 146 Johannesburg Way " " 330 54132 " " 2020-02-15T06:59:28Z +182 1891 Rizhao Boulevard " " 456 47288 " " 2020-02-15T06:59:28Z +183 1089 Iwatsuki Avenue " " 270 35109 " " 2020-02-15T06:59:28Z +184 1410 Benin City Parkway " " 405 29747 " " 2020-02-15T06:59:28Z +185 682 Garden Grove Place " " 333 67497 " " 2020-02-15T06:59:28Z +186 533 al-Ayn Boulevard " " 126 8862 " " 2020-02-15T06:59:28Z +187 1839 Szkesfehrvr Parkway " " 317 55709 " " 2020-02-15T06:59:28Z +188 741 Ambattur Manor " " 438 43310 " " 2020-02-15T06:59:28Z +189 927 Barcelona Street " " 467 65121 " " 2020-02-15T06:59:28Z +190 435 0 Way " " 195 74750 " " 2020-02-15T06:59:28Z +191 140 Chiayi Parkway " " 506 38982 " " 2020-02-15T06:59:28Z +192 1166 Changhwa Street " " 62 58852 " " 2020-02-15T06:59:28Z +193 891 Novi Sad Manor " " 383 5379 " " 2020-02-15T06:59:28Z +194 605 Rio Claro Parkway " " 513 49348 " " 2020-02-15T06:59:28Z +195 1077 San Felipe de Puerto Plata Place " " 369 65387 " " 2020-02-15T06:59:28Z +196 9 San Miguel de Tucumn Manor " " 169 90845 " " 2020-02-15T06:59:28Z +197 447 Surakarta Loop " " 271 10428 " " 2020-02-15T06:59:28Z +198 345 Oshawa Boulevard " " 204 32114 " " 2020-02-15T06:59:28Z +199 1792 Valle de la Pascua Place " " 477 15540 " " 2020-02-15T06:59:28Z +200 1074 Binzhou Manor " " 325 36490 " " 2020-02-15T06:59:28Z +201 817 Bradford Loop " " 109 89459 " " 2020-02-15T06:59:28Z +202 955 Bamenda Way " " 218 1545 " " 2020-02-15T06:59:28Z +203 1149 A Corua (La Corua) Boulevard " " 194 95824 " " 2020-02-15T06:59:28Z +204 387 Mwene-Ditu Drive " " 35 8073 " " 2020-02-15T06:59:28Z +205 68 Molodetno Manor " " 575 4662 " " 2020-02-15T06:59:28Z +206 642 Nador Drive " " 77 3924 " " 2020-02-15T06:59:28Z +207 1688 Nador Lane " " 184 61613 " " 2020-02-15T06:59:28Z +208 1215 Pyongyang Parkway " " 557 25238 " " 2020-02-15T06:59:28Z +209 1679 Antofagasta Street " " 122 86599 " " 2020-02-15T06:59:28Z +210 1304 s-Hertogenbosch Way " " 83 10925 " " 2020-02-15T06:59:28Z +211 850 Salala Loop " " 371 10800 " " 2020-02-15T06:59:28Z +212 624 Oshawa Boulevard " " 51 89959 " " 2020-02-15T06:59:28Z +213 43 Dadu Avenue " " 74 4855 " " 2020-02-15T06:59:28Z +214 751 Lima Loop " " 7 99405 " " 2020-02-15T06:59:28Z +215 1333 Haldia Street " " 174 82161 " " 2020-02-15T06:59:28Z +216 660 Jedda Boulevard " " 65 25053 " " 2020-02-15T06:59:28Z +217 1001 Miyakonojo Lane " " 518 67924 " " 2020-02-15T06:59:28Z +218 226 Brest Manor " " 508 2299 " " 2020-02-15T06:59:28Z +219 1229 Valencia Parkway " " 498 99124 " " 2020-02-15T06:59:28Z +220 1201 Qomsheh Manor " " 28 21464 " " 2020-02-15T06:59:28Z +221 866 Shivapuri Manor " " 448 22474 " " 2020-02-15T06:59:28Z +222 1168 Najafabad Parkway " " 251 40301 " " 2020-02-15T06:59:28Z +223 1244 Allappuzha (Alleppey) Place " " 567 20657 " " 2020-02-15T06:59:28Z +224 1842 Luzinia Boulevard " " 593 94420 " " 2020-02-15T06:59:28Z +225 1926 Gingoog Street " " 511 22824 " " 2020-02-15T06:59:28Z +226 810 Palghat (Palakkad) Boulevard " " 235 73431 " " 2020-02-15T06:59:28Z +227 1820 Maring Parkway " " 324 88307 " " 2020-02-15T06:59:28Z +228 60 Poos de Caldas Street " " 243 82338 " " 2020-02-15T06:59:28Z +229 1014 Loja Manor " " 22 66851 " " 2020-02-15T06:59:28Z +230 201 Effon-Alaiye Way " " 37 64344 " " 2020-02-15T06:59:28Z +231 430 Alessandria Loop " " 439 47446 " " 2020-02-15T06:59:28Z +232 754 Valencia Place " " 406 87911 " " 2020-02-15T06:59:28Z +233 356 Olomouc Manor " " 26 93323 " " 2020-02-15T06:59:28Z +234 1256 Bislig Boulevard " " 86 50598 " " 2020-02-15T06:59:28Z +235 954 Kimchon Place " " 559 42420 " " 2020-02-15T06:59:28Z +236 885 Yingkou Manor " " 596 31390 " " 2020-02-15T06:59:28Z +237 1736 Cavite Place " " 216 98775 " " 2020-02-15T06:59:28Z +238 346 Skikda Parkway " " 233 90628 " " 2020-02-15T06:59:28Z +239 98 Stara Zagora Boulevard " " 96 76448 " " 2020-02-15T06:59:28Z +240 1479 Rustenburg Boulevard " " 527 18727 " " 2020-02-15T06:59:28Z +241 647 A Corua (La Corua) Street " " 357 36971 " " 2020-02-15T06:59:28Z +242 1964 Gijn Manor " " 473 14408 " " 2020-02-15T06:59:28Z +243 47 Syktyvkar Lane " " 118 22236 " " 2020-02-15T06:59:28Z +244 1148 Saarbrcken Parkway " " 226 1921 " " 2020-02-15T06:59:28Z +245 1103 Bilbays Parkway " " 578 87660 " " 2020-02-15T06:59:28Z +246 1246 Boksburg Parkway " " 422 28349 " " 2020-02-15T06:59:28Z +247 1483 Pathankot Street " " 454 37288 " " 2020-02-15T06:59:28Z +248 582 Papeete Loop " " 294 27722 " " 2020-02-15T06:59:28Z +249 300 Junan Street " " 553 81314 " " 2020-02-15T06:59:28Z +250 829 Grand Prairie Way " " 328 6461 " " 2020-02-15T06:59:28Z +251 1473 Changhwa Parkway " " 124 75933 " " 2020-02-15T06:59:28Z +252 1309 Weifang Street " " 520 57338 " " 2020-02-15T06:59:28Z +253 1760 Oshawa Manor " " 535 38140 " " 2020-02-15T06:59:28Z +254 786 Stara Zagora Way " " 390 98332 " " 2020-02-15T06:59:28Z +255 1966 Tonghae Street " " 198 36481 " " 2020-02-15T06:59:28Z +256 1497 Yuzhou Drive " " 312 3433 " " 2020-02-15T06:59:28Z +258 752 Ondo Loop " " 338 32474 " " 2020-02-15T06:59:28Z +259 1338 Zalantun Lane " " 413 45403 " " 2020-02-15T06:59:28Z +260 127 Iwakuni Boulevard " " 192 20777 " " 2020-02-15T06:59:28Z +261 51 Laredo Avenue " " 342 68146 " " 2020-02-15T06:59:28Z +262 771 Yaound Manor " " 64 86768 " " 2020-02-15T06:59:28Z +263 532 Toulon Street " " 460 69517 " " 2020-02-15T06:59:28Z +264 1027 Banjul Place " " 197 50390 " " 2020-02-15T06:59:28Z +265 1158 Mandi Bahauddin Parkway " " 136 98484 " " 2020-02-15T06:59:28Z +266 862 Xintai Lane " " 548 30065 " " 2020-02-15T06:59:28Z +267 816 Cayenne Parkway " " 414 93629 " " 2020-02-15T06:59:28Z +268 1831 Nam Dinh Loop " " 323 51990 " " 2020-02-15T06:59:28Z +269 446 Kirovo-Tepetsk Lane " " 203 19428 " " 2020-02-15T06:59:28Z +270 682 Halisahar Place " " 378 20536 " " 2020-02-15T06:59:28Z +271 1587 Loja Manor " " 447 5410 " " 2020-02-15T06:59:28Z +272 1762 Paarl Parkway " " 298 53928 " " 2020-02-15T06:59:28Z +273 1519 Ilorin Place " " 395 49298 " " 2020-02-15T06:59:28Z +274 920 Kumbakonam Loop " " 446 75090 " " 2020-02-15T06:59:28Z +275 906 Goinia Way " " 255 83565 " " 2020-02-15T06:59:28Z +276 1675 Xiangfan Manor " " 283 11763 " " 2020-02-15T06:59:28Z +277 85 San Felipe de Puerto Plata Drive " " 584 46063 " " 2020-02-15T06:59:28Z +278 144 South Hill Loop " " 445 2012 " " 2020-02-15T06:59:28Z +279 1884 Shikarpur Avenue " " 263 85548 " " 2020-02-15T06:59:28Z +280 1980 Kamjanets-Podilskyi Street " " 404 89502 " " 2020-02-15T06:59:28Z +281 1944 Bamenda Way " " 573 24645 " " 2020-02-15T06:59:28Z +282 556 Baybay Manor " " 374 55802 " " 2020-02-15T06:59:28Z +283 457 Tongliao Loop " " 222 56254 " " 2020-02-15T06:59:28Z +284 600 Bradford Street " " 514 96204 " " 2020-02-15T06:59:28Z +285 1006 Santa Brbara dOeste Manor " " 389 36229 " " 2020-02-15T06:59:28Z +286 1308 Sumy Loop " " 175 30657 " " 2020-02-15T06:59:28Z +287 1405 Chisinau Place " " 411 8160 " " 2020-02-15T06:59:28Z +288 226 Halifax Street " " 277 58492 " " 2020-02-15T06:59:28Z +289 1279 Udine Parkway " " 69 75860 " " 2020-02-15T06:59:28Z +290 1336 Benin City Drive " " 386 46044 " " 2020-02-15T06:59:28Z +291 1155 Liaocheng Place " " 152 22650 " " 2020-02-15T06:59:28Z +292 1993 Tabuk Lane " " 522 64221 " " 2020-02-15T06:59:28Z +293 86 Higashiosaka Lane " " 563 33768 " " 2020-02-15T06:59:28Z +294 1912 Allende Manor " " 279 58124 " " 2020-02-15T06:59:28Z +295 544 Tarsus Boulevard " " 562 53145 " " 2020-02-15T06:59:28Z +296 1936 Cuman Avenue " " 433 61195 " " 2020-02-15T06:59:28Z +297 1192 Tongliao Street " " 470 19065 " " 2020-02-15T06:59:28Z +298 44 Najafabad Way " " 146 61391 " " 2020-02-15T06:59:28Z +299 32 Pudukkottai Lane " " 140 38834 " " 2020-02-15T06:59:28Z +300 661 Chisinau Lane " " 274 8856 " " 2020-02-15T06:59:28Z +301 951 Stara Zagora Manor " " 400 98573 " " 2020-02-15T06:59:28Z +302 922 Vila Velha Loop " " 9 4085 " " 2020-02-15T06:59:28Z +303 898 Jining Lane " " 387 40070 " " 2020-02-15T06:59:28Z +304 1635 Kuwana Boulevard " " 205 52137 " " 2020-02-15T06:59:28Z +305 41 El Alto Parkway " " 398 56883 " " 2020-02-15T06:59:28Z +306 1883 Maikop Lane " " 254 68469 " " 2020-02-15T06:59:28Z +307 1908 Gaziantep Place " " 536 58979 " " 2020-02-15T06:59:28Z +308 687 Alessandria Parkway " " 455 57587 " " 2020-02-15T06:59:28Z +309 827 Yuncheng Drive " " 99 79047 " " 2020-02-15T06:59:28Z +310 913 Coacalco de Berriozbal Loop " " 33 42141 " " 2020-02-15T06:59:28Z +311 715 So Bernardo do Campo Lane " " 507 84804 " " 2020-02-15T06:59:28Z +312 1354 Siegen Street " " 25 80184 " " 2020-02-15T06:59:28Z +313 1191 Sungai Petani Boulevard " " 262 9668 " " 2020-02-15T06:59:28Z +314 1224 Huejutla de Reyes Boulevard " " 91 70923 " " 2020-02-15T06:59:28Z +315 543 Bergamo Avenue " " 215 59686 " " 2020-02-15T06:59:28Z +316 746 Joliet Lane " " 286 94878 " " 2020-02-15T06:59:28Z +317 780 Kimberley Way " " 515 17032 " " 2020-02-15T06:59:28Z +318 1774 Yaound Place " " 166 91400 " " 2020-02-15T06:59:28Z +319 1957 Yantai Lane " " 490 59255 " " 2020-02-15T06:59:28Z +320 1542 Lubumbashi Boulevard " " 57 62472 " " 2020-02-15T06:59:28Z +321 651 Pathankot Loop " " 336 59811 " " 2020-02-15T06:59:28Z +322 1359 Zhoushan Parkway " " 545 29763 " " 2020-02-15T06:59:28Z +323 1769 Iwaki Lane " " 97 25787 " " 2020-02-15T06:59:28Z +324 1145 Vilnius Manor " " 451 73170 " " 2020-02-15T06:59:28Z +325 1892 Nabereznyje Telny Lane " " 516 28396 " " 2020-02-15T06:59:28Z +326 470 Boksburg Street " " 81 97960 " " 2020-02-15T06:59:28Z +327 1427 A Corua (La Corua) Place " " 45 85799 " " 2020-02-15T06:59:28Z +328 479 San Felipe del Progreso Avenue " " 130 54949 " " 2020-02-15T06:59:28Z +329 867 Benin City Avenue " " 591 78543 " " 2020-02-15T06:59:28Z +330 981 Kumbakonam Place " " 89 87611 " " 2020-02-15T06:59:28Z +331 1016 Iwakuni Street " " 269 49833 " " 2020-02-15T06:59:28Z +332 663 Baha Blanca Parkway " " 5 33463 " " 2020-02-15T06:59:28Z +333 1860 Taguig Loop " " 119 59550 " " 2020-02-15T06:59:28Z +334 1816 Bydgoszcz Loop " " 234 64308 " " 2020-02-15T06:59:28Z +335 587 Benguela Manor " " 42 91590 " " 2020-02-15T06:59:28Z +336 430 Kumbakonam Drive " " 457 28814 " " 2020-02-15T06:59:28Z +337 1838 Tabriz Lane " " 143 1195 " " 2020-02-15T06:59:28Z +338 431 Szkesfehrvr Avenue " " 48 57828 " " 2020-02-15T06:59:28Z +339 503 Sogamoso Loop " " 505 49812 " " 2020-02-15T06:59:28Z +340 507 Smolensk Loop " " 492 22971 " " 2020-02-15T06:59:28Z +341 1920 Weifang Avenue " " 427 15643 " " 2020-02-15T06:59:28Z +342 124 al-Manama Way " " 382 52368 " " 2020-02-15T06:59:28Z +343 1443 Mardan Street " " 392 31483 " " 2020-02-15T06:59:28Z +344 1909 Benguela Lane " " 581 19913 " " 2020-02-15T06:59:28Z +345 68 Ponce Parkway " " 201 85926 " " 2020-02-15T06:59:28Z +346 1217 Konotop Avenue " " 151 504 " " 2020-02-15T06:59:28Z +347 1293 Nam Dinh Way " " 84 71583 " " 2020-02-15T06:59:28Z +348 785 Vaduz Street " " 335 36170 " " 2020-02-15T06:59:28Z +349 1516 Escobar Drive " " 370 46069 " " 2020-02-15T06:59:28Z +350 1628 Nagareyama Lane " " 453 60079 " " 2020-02-15T06:59:28Z +351 1157 Nyeri Loop " " 320 56380 " " 2020-02-15T06:59:28Z +352 1673 Tangail Drive " " 137 26857 " " 2020-02-15T06:59:28Z +353 381 Kabul Way " " 209 87272 " " 2020-02-15T06:59:28Z +354 953 Hodeida Street " " 221 18841 " " 2020-02-15T06:59:28Z +355 469 Nakhon Sawan Street " " 531 58866 " " 2020-02-15T06:59:28Z +356 1378 Beira Loop " " 597 40792 " " 2020-02-15T06:59:28Z +357 1641 Changhwa Place " " 52 37636 " " 2020-02-15T06:59:28Z +358 1698 Southport Loop " " 393 49009 " " 2020-02-15T06:59:28Z +359 519 Nyeri Manor " " 461 37650 " " 2020-02-15T06:59:28Z +360 619 Hunuco Avenue " " 331 81508 " " 2020-02-15T06:59:28Z +361 45 Aparecida de Goinia Place " " 464 7431 " " 2020-02-15T06:59:28Z +362 482 Kowloon and New Kowloon Manor " " 90 97056 " " 2020-02-15T06:59:28Z +363 604 Bern Place " " 429 5373 " " 2020-02-15T06:59:28Z +364 1623 Kingstown Drive " " 20 91299 " " 2020-02-15T06:59:28Z +365 1009 Zanzibar Lane " " 32 64875 " " 2020-02-15T06:59:28Z +366 114 Jalib al-Shuyukh Manor " " 585 60440 " " 2020-02-15T06:59:28Z +367 1163 London Parkway " " 66 6066 " " 2020-02-15T06:59:28Z +368 1658 Jastrzebie-Zdrj Loop " " 372 96584 " " 2020-02-15T06:59:28Z +369 817 Laredo Avenue " " 188 77449 " " 2020-02-15T06:59:28Z +370 1565 Tangail Manor " " 377 45750 " " 2020-02-15T06:59:28Z +371 1912 Emeishan Drive " " 50 33050 " " 2020-02-15T06:59:28Z +372 230 Urawa Drive " " 8 2738 " " 2020-02-15T06:59:28Z +373 1922 Miraj Way " " 356 13203 " " 2020-02-15T06:59:28Z +374 433 Florencia Street " " 250 91330 " " 2020-02-15T06:59:28Z +375 1049 Matamoros Parkway " " 191 69640 " " 2020-02-15T06:59:28Z +376 1061 Ede Avenue " " 98 57810 " " 2020-02-15T06:59:28Z +377 154 Oshawa Manor " " 415 72771 " " 2020-02-15T06:59:28Z +378 1191 Tandil Drive " " 523 6362 " " 2020-02-15T06:59:28Z +379 1133 Rizhao Avenue " " 572 2800 " " 2020-02-15T06:59:28Z +380 1519 Santiago de los Caballeros Loop " " 348 22025 " " 2020-02-15T06:59:28Z +381 1618 Olomouc Manor " " 285 26385 " " 2020-02-15T06:59:28Z +382 220 Hidalgo Drive " " 265 45298 " " 2020-02-15T06:59:28Z +383 686 Donostia-San Sebastin Lane " " 471 97390 " " 2020-02-15T06:59:28Z +384 97 Mogiljov Lane " " 73 89294 " " 2020-02-15T06:59:28Z +385 1642 Charlotte Amalie Drive " " 549 75442 " " 2020-02-15T06:59:28Z +386 1368 Maracabo Boulevard " " 493 32716 " " 2020-02-15T06:59:28Z +387 401 Sucre Boulevard " " 322 25007 " " 2020-02-15T06:59:28Z +388 368 Hunuco Boulevard " " 360 17165 " " 2020-02-15T06:59:28Z +389 500 Lincoln Parkway " " 210 95509 " " 2020-02-15T06:59:28Z +390 102 Chapra Drive " " 521 14073 " " 2020-02-15T06:59:28Z +391 1793 Meixian Place " " 258 33535 " " 2020-02-15T06:59:28Z +392 514 Ife Way " " 315 69973 " " 2020-02-15T06:59:28Z +393 717 Changzhou Lane " " 104 21615 " " 2020-02-15T06:59:28Z +394 753 Ilorin Avenue " " 157 3656 " " 2020-02-15T06:59:28Z +395 1337 Mit Ghamr Avenue " " 358 29810 " " 2020-02-15T06:59:28Z +396 767 Pyongyang Drive " " 229 83536 " " 2020-02-15T06:59:28Z +397 614 Pak Kret Street " " 6 27796 " " 2020-02-15T06:59:28Z +398 954 Lapu-Lapu Way " " 278 8816 " " 2020-02-15T06:59:28Z +399 331 Bydgoszcz Parkway " " 181 966 " " 2020-02-15T06:59:28Z +400 1152 Citrus Heights Manor " " 15 5239 " " 2020-02-15T06:59:28Z +401 168 Cianjur Manor " " 228 73824 " " 2020-02-15T06:59:28Z +402 616 Hagonoy Avenue " " 39 46043 " " 2020-02-15T06:59:28Z +403 1190 0 Place " " 44 10417 " " 2020-02-15T06:59:28Z +404 734 Bchar Place " " 375 30586 " " 2020-02-15T06:59:28Z +405 530 Lausanne Lane " " 135 11067 " " 2020-02-15T06:59:28Z +406 454 Patiala Lane " " 276 13496 " " 2020-02-15T06:59:28Z +407 1346 Mysore Drive " " 92 61507 " " 2020-02-15T06:59:28Z +408 990 Etawah Loop " " 564 79940 " " 2020-02-15T06:59:28Z +409 1266 Laredo Parkway " " 380 7664 " " 2020-02-15T06:59:28Z +410 88 Nagaon Manor " " 524 86868 " " 2020-02-15T06:59:28Z +411 264 Bhimavaram Manor " " 111 54749 " " 2020-02-15T06:59:28Z +412 1639 Saarbrcken Drive " " 437 9827 " " 2020-02-15T06:59:28Z +413 692 Amroha Drive " " 230 35575 " " 2020-02-15T06:59:28Z +414 1936 Lapu-Lapu Parkway " " 141 7122 " " 2020-02-15T06:59:28Z +415 432 Garden Grove Street " " 430 65630 " " 2020-02-15T06:59:28Z +416 1445 Carmen Parkway " " 117 70809 " " 2020-02-15T06:59:28Z +417 791 Salinas Street " " 208 40509 " " 2020-02-15T06:59:28Z +418 126 Acua Parkway " " 71 58888 " " 2020-02-15T06:59:28Z +419 397 Sunnyvale Avenue " " 19 55566 " " 2020-02-15T06:59:28Z +420 992 Klerksdorp Loop " " 23 33711 " " 2020-02-15T06:59:28Z +421 966 Arecibo Loop " " 134 94018 " " 2020-02-15T06:59:28Z +422 289 Santo Andr Manor " " 16 72410 " " 2020-02-15T06:59:28Z +423 437 Chungho Drive " " 450 59489 " " 2020-02-15T06:59:28Z +424 1948 Bayugan Parkway " " 264 60622 " " 2020-02-15T06:59:28Z +425 1866 al-Qatif Avenue " " 155 89420 " " 2020-02-15T06:59:28Z +426 1661 Abha Drive " " 416 14400 " " 2020-02-15T06:59:28Z +427 1557 Cape Coral Parkway " " 293 46875 " " 2020-02-15T06:59:28Z +428 1727 Matamoros Place " " 465 78813 " " 2020-02-15T06:59:28Z +429 1269 Botosani Manor " " 468 47394 " " 2020-02-15T06:59:28Z +430 355 Vitria de Santo Anto Way " " 452 81758 " " 2020-02-15T06:59:28Z +431 1596 Acua Parkway " " 418 70425 " " 2020-02-15T06:59:28Z +432 259 Ipoh Drive " " 189 64964 " " 2020-02-15T06:59:28Z +433 1823 Hoshiarpur Lane " " 510 33191 " " 2020-02-15T06:59:28Z +434 1404 Taguig Drive " " 547 87212 " " 2020-02-15T06:59:28Z +435 740 Udaipur Lane " " 150 33505 " " 2020-02-15T06:59:28Z +436 287 Cuautla Boulevard " " 501 72736 " " 2020-02-15T06:59:28Z +437 1766 Almirante Brown Street " " 364 63104 " " 2020-02-15T06:59:28Z +438 596 Huixquilucan Place " " 351 65892 " " 2020-02-15T06:59:28Z +439 1351 Aparecida de Goinia Parkway " " 391 41775 " " 2020-02-15T06:59:28Z +440 722 Bradford Lane " " 249 90920 " " 2020-02-15T06:59:28Z +441 983 Santa F Way " " 565 47472 " " 2020-02-15T06:59:28Z +442 1245 Ibirit Way " " 290 40926 " " 2020-02-15T06:59:28Z +443 1836 Korla Parkway " " 272 55405 " " 2020-02-15T06:59:28Z +444 231 Kaliningrad Place " " 70 57833 " " 2020-02-15T06:59:28Z +445 495 Bhimavaram Lane " " 144 3 " " 2020-02-15T06:59:28Z +446 1924 Shimonoseki Drive " " 59 52625 " " 2020-02-15T06:59:28Z +447 105 Dzerzinsk Manor " " 540 48570 " " 2020-02-15T06:59:28Z +448 614 Denizli Parkway " " 486 29444 " " 2020-02-15T06:59:28Z +449 1289 Belm Boulevard " " 530 88306 " " 2020-02-15T06:59:28Z +450 203 Tambaram Street " " 161 73942 " " 2020-02-15T06:59:28Z +451 1704 Tambaram Manor " " 554 2834 " " 2020-02-15T06:59:28Z +452 207 Cuernavaca Loop " " 352 52671 " " 2020-02-15T06:59:28Z +453 319 Springs Loop " " 160 99552 " " 2020-02-15T06:59:28Z +454 956 Nam Dinh Manor " " 481 21872 " " 2020-02-15T06:59:28Z +455 1947 Paarl Way " " 509 23636 " " 2020-02-15T06:59:28Z +456 814 Simferopol Loop " " 154 48745 " " 2020-02-15T06:59:28Z +457 535 Ahmadnagar Manor " " 3 41136 " " 2020-02-15T06:59:28Z +458 138 Caracas Boulevard " " 326 16790 " " 2020-02-15T06:59:28Z +459 251 Florencia Drive " " 556 16119 " " 2020-02-15T06:59:28Z +460 659 Gatineau Boulevard " " 153 28587 " " 2020-02-15T06:59:28Z +461 1889 Valparai Way " " 600 75559 " " 2020-02-15T06:59:28Z +462 1485 Bratislava Place " " 435 83183 " " 2020-02-15T06:59:28Z +463 935 Aden Boulevard " " 532 64709 " " 2020-02-15T06:59:28Z +464 76 Kermanshah Manor " " 423 23343 " " 2020-02-15T06:59:28Z +465 734 Tanshui Avenue " " 170 70664 " " 2020-02-15T06:59:28Z +466 118 Jaffna Loop " " 182 10447 " " 2020-02-15T06:59:28Z +467 1621 Tongliao Avenue " " 558 22173 " " 2020-02-15T06:59:28Z +468 1844 Usak Avenue " " 196 84461 " " 2020-02-15T06:59:28Z +469 1872 Toulon Loop " " 428 7939 " " 2020-02-15T06:59:28Z +470 1088 Ibirit Place " " 595 88502 " " 2020-02-15T06:59:28Z +471 1322 Mosul Parkway " " 145 95400 " " 2020-02-15T06:59:28Z +472 1447 Chatsworth Place " " 129 41545 " " 2020-02-15T06:59:28Z +473 1257 Guadalajara Street " " 78 33599 " " 2020-02-15T06:59:28Z +474 1469 Plock Lane " " 388 95835 " " 2020-02-15T06:59:28Z +475 434 Ourense (Orense) Manor " " 206 14122 " " 2020-02-15T06:59:28Z +476 270 Tambaram Parkway " " 244 9668 " " 2020-02-15T06:59:28Z +477 1786 Salinas Place " " 359 66546 " " 2020-02-15T06:59:28Z +478 1078 Stara Zagora Drive " " 301 69221 " " 2020-02-15T06:59:28Z +479 1854 Okara Boulevard " " 158 42123 " " 2020-02-15T06:59:28Z +480 421 Yaound Street " " 385 11363 " " 2020-02-15T06:59:28Z +481 1153 Allende Way " " 179 20336 " " 2020-02-15T06:59:28Z +482 808 Naala-Porto Parkway " " 500 41060 " " 2020-02-15T06:59:28Z +483 632 Usolje-Sibirskoje Parkway " " 36 73085 " " 2020-02-15T06:59:28Z +484 98 Pyongyang Boulevard " " 11 88749 " " 2020-02-15T06:59:28Z +485 984 Novoterkassk Loop " " 180 28165 " " 2020-02-15T06:59:28Z +486 64 Korla Street " " 347 25145 " " 2020-02-15T06:59:28Z +487 1785 So Bernardo do Campo Street " " 125 71182 " " 2020-02-15T06:59:28Z +488 698 Jelets Boulevard " " 142 2596 " " 2020-02-15T06:59:28Z +489 1297 Alvorada Parkway " " 587 11839 " " 2020-02-15T06:59:28Z +490 1909 Dayton Avenue " " 469 88513 " " 2020-02-15T06:59:28Z +491 1789 Saint-Denis Parkway " " 4 8268 " " 2020-02-15T06:59:28Z +492 185 Mannheim Lane " " 408 23661 " " 2020-02-15T06:59:28Z +493 184 Mandaluyong Street " " 288 94239 " " 2020-02-15T06:59:28Z +494 591 Sungai Petani Drive " " 376 46400 " " 2020-02-15T06:59:28Z +495 656 Matamoros Drive " " 487 19489 " " 2020-02-15T06:59:28Z +496 775 ostka Drive " " 337 22358 " " 2020-02-15T06:59:28Z +497 1013 Tabuk Boulevard " " 261 96203 " " 2020-02-15T06:59:28Z +498 319 Plock Parkway " " 504 26101 " " 2020-02-15T06:59:28Z +499 1954 Kowloon and New Kowloon Way " " 434 63667 " " 2020-02-15T06:59:28Z +500 362 Rajkot Lane " " 47 98030 " " 2020-02-15T06:59:28Z +501 1060 Tandil Lane " " 432 72349 " " 2020-02-15T06:59:28Z +502 1515 Korla Way " " 589 57197 " " 2020-02-15T06:59:28Z +503 1416 San Juan Bautista Tuxtepec Avenue " " 444 50592 " " 2020-02-15T06:59:28Z +504 1 Valle de Santiago Avenue " " 93 86208 " " 2020-02-15T06:59:28Z +505 519 Brescia Parkway " " 318 69504 " " 2020-02-15T06:59:28Z +506 414 Mandaluyong Street " " 314 16370 " " 2020-02-15T06:59:28Z +507 1197 Sokoto Boulevard " " 478 87687 " " 2020-02-15T06:59:28Z +508 496 Celaya Drive " " 552 90797 " " 2020-02-15T06:59:28Z +509 786 Matsue Way " " 245 37469 " " 2020-02-15T06:59:28Z +510 48 Maracabo Place " " 519 1570 " " 2020-02-15T06:59:28Z +511 1152 al-Qatif Lane " " 412 44816 " " 2020-02-15T06:59:28Z +512 1269 Ipoh Avenue " " 163 54674 " " 2020-02-15T06:59:28Z +513 758 Korolev Parkway " " 568 75474 " " 2020-02-15T06:59:28Z +514 1747 Rustenburg Place " " 110 51369 " " 2020-02-15T06:59:28Z +515 886 Tonghae Place " " 259 19450 " " 2020-02-15T06:59:28Z +516 1574 Goinia Boulevard " " 502 39529 " " 2020-02-15T06:59:28Z +517 548 Uruapan Street " " 312 35653 " " 2020-02-15T06:59:28Z +519 962 Tama Loop " " 583 65952 " " 2020-02-15T06:59:28Z +520 1778 Gijn Manor " " 594 35156 " " 2020-02-15T06:59:28Z +521 568 Dhule (Dhulia) Loop " " 127 92568 " " 2020-02-15T06:59:28Z +522 1768 Udine Loop " " 60 32347 " " 2020-02-15T06:59:28Z +523 608 Birgunj Parkway " " 116 400 " " 2020-02-15T06:59:28Z +524 680 A Corua (La Corua) Manor " " 482 49806 " " 2020-02-15T06:59:28Z +525 1949 Sanya Street " " 224 61244 " " 2020-02-15T06:59:28Z +526 617 Klerksdorp Place " " 366 94707 " " 2020-02-15T06:59:28Z +527 1993 0 Loop " " 588 41214 " " 2020-02-15T06:59:28Z +528 1176 Southend-on-Sea Manor " " 458 81651 " " 2020-02-15T06:59:28Z +529 600 Purnea (Purnia) Avenue " " 571 18043 " " 2020-02-15T06:59:28Z +530 1003 Qinhuangdao Street " " 419 25972 " " 2020-02-15T06:59:28Z +531 1986 Sivas Place " " 551 95775 " " 2020-02-15T06:59:28Z +532 1427 Tabuk Place " " 101 31342 " " 2020-02-15T06:59:28Z +533 556 Asuncin Way " " 339 35364 " " 2020-02-15T06:59:28Z +534 486 Ondo Parkway " " 67 35202 " " 2020-02-15T06:59:28Z +535 635 Brest Manor " " 75 40899 " " 2020-02-15T06:59:28Z +536 166 Jinchang Street " " 165 86760 " " 2020-02-15T06:59:28Z +537 958 Sagamihara Lane " " 287 88408 " " 2020-02-15T06:59:28Z +538 1817 Livorno Way " " 100 79401 " " 2020-02-15T06:59:28Z +539 1332 Gaziantep Lane " " 80 22813 " " 2020-02-15T06:59:28Z +540 949 Allende Lane " " 24 67521 " " 2020-02-15T06:59:28Z +541 195 Ilorin Street " " 363 49250 " " 2020-02-15T06:59:28Z +542 193 Bhusawal Place " " 539 9750 " " 2020-02-15T06:59:28Z +543 43 Vilnius Manor " " 42 79814 " " 2020-02-15T06:59:28Z +544 183 Haiphong Street " " 46 69953 " " 2020-02-15T06:59:28Z +545 163 Augusta-Richmond County Loop " " 561 33030 " " 2020-02-15T06:59:28Z +546 191 Jos Azueta Parkway " " 436 13629 " " 2020-02-15T06:59:28Z +547 379 Lublin Parkway " " 309 74568 " " 2020-02-15T06:59:28Z +548 1658 Cuman Loop " " 396 51309 " " 2020-02-15T06:59:28Z +549 454 Qinhuangdao Drive " " 68 25866 " " 2020-02-15T06:59:28Z +550 1715 Okayama Street " " 485 55676 " " 2020-02-15T06:59:28Z +551 182 Nukualofa Drive " " 275 15414 " " 2020-02-15T06:59:28Z +552 390 Wroclaw Way " " 462 5753 " " 2020-02-15T06:59:28Z +553 1421 Quilmes Lane " " 260 19151 " " 2020-02-15T06:59:28Z +554 947 Trshavn Place " " 528 841 " " 2020-02-15T06:59:28Z +555 1764 Jalib al-Shuyukh Parkway " " 459 77642 " " 2020-02-15T06:59:28Z +556 346 Cam Ranh Avenue " " 599 39976 " " 2020-02-15T06:59:28Z +557 1407 Pachuca de Soto Place " " 21 26284 " " 2020-02-15T06:59:28Z +558 904 Clarksville Drive " " 193 52234 " " 2020-02-15T06:59:28Z +559 1917 Kumbakonam Parkway " " 368 11892 " " 2020-02-15T06:59:28Z +560 1447 Imus Place " " 426 12905 " " 2020-02-15T06:59:28Z +561 1497 Fengshan Drive " " 112 63022 " " 2020-02-15T06:59:28Z +562 869 Shikarpur Way " " 496 57380 " " 2020-02-15T06:59:28Z +563 1059 Yuncheng Avenue " " 570 47498 " " 2020-02-15T06:59:28Z +564 505 Madiun Boulevard " " 577 97271 " " 2020-02-15T06:59:28Z +565 1741 Hoshiarpur Boulevard " " 79 22372 " " 2020-02-15T06:59:28Z +566 1229 Varanasi (Benares) Manor " " 43 40195 " " 2020-02-15T06:59:28Z +567 1894 Boa Vista Way " " 178 77464 " " 2020-02-15T06:59:28Z +568 1342 Sharja Way " " 488 93655 " " 2020-02-15T06:59:28Z +569 1342 Abha Boulevard " " 95 10714 " " 2020-02-15T06:59:28Z +570 415 Pune Avenue " " 580 44274 " " 2020-02-15T06:59:28Z +571 1746 Faaa Way " " 214 32515 " " 2020-02-15T06:59:28Z +572 539 Hami Way " " 538 52196 " " 2020-02-15T06:59:28Z +573 1407 Surakarta Manor " " 466 33224 " " 2020-02-15T06:59:28Z +574 502 Mandi Bahauddin Parkway " " 55 15992 " " 2020-02-15T06:59:28Z +575 1052 Pathankot Avenue " " 299 77397 " " 2020-02-15T06:59:28Z +576 1351 Sousse Lane " " 341 37815 " " 2020-02-15T06:59:28Z +577 1501 Pangkal Pinang Avenue " " 409 943 " " 2020-02-15T06:59:28Z +578 1405 Hagonoy Avenue " " 133 86587 " " 2020-02-15T06:59:28Z +579 521 San Juan Bautista Tuxtepec Place " " 598 95093 " " 2020-02-15T06:59:28Z +580 923 Tangail Boulevard " " 10 33384 " " 2020-02-15T06:59:28Z +581 186 Skikda Lane " " 131 89422 " " 2020-02-15T06:59:28Z +582 1568 Celaya Parkway " " 168 34750 " " 2020-02-15T06:59:28Z +583 1489 Kakamigahara Lane " " 526 98883 " " 2020-02-15T06:59:28Z +584 1819 Alessandria Loop " " 103 53829 " " 2020-02-15T06:59:28Z +585 1208 Tama Loop " " 344 73605 " " 2020-02-15T06:59:28Z +586 951 Springs Lane " " 219 96115 " " 2020-02-15T06:59:28Z +587 760 Miyakonojo Drive " " 246 64682 " " 2020-02-15T06:59:28Z +588 966 Asuncin Way " " 212 62703 " " 2020-02-15T06:59:28Z +589 1584 Ljubertsy Lane " " 494 22954 " " 2020-02-15T06:59:28Z +590 247 Jining Parkway " " 54 53446 " " 2020-02-15T06:59:28Z +591 773 Dallas Manor " " 424 12664 " " 2020-02-15T06:59:28Z +592 1923 Stara Zagora Lane " " 546 95179 " " 2020-02-15T06:59:28Z +593 1402 Zanzibar Boulevard " " 106 71102 " " 2020-02-15T06:59:28Z +594 1464 Kursk Parkway " " 574 17381 " " 2020-02-15T06:59:28Z +595 1074 Sanaa Parkway " " 311 22474 " " 2020-02-15T06:59:28Z +596 1759 Niznekamsk Avenue " " 14 39414 " " 2020-02-15T06:59:28Z +597 32 Liaocheng Way " " 248 1944 " " 2020-02-15T06:59:28Z +598 42 Fontana Avenue " " 512 14684 " " 2020-02-15T06:59:28Z +599 1895 Zhezqazghan Drive " " 177 36693 " " 2020-02-15T06:59:28Z +600 1837 Kaduna Parkway " " 241 82580 " " 2020-02-15T06:59:28Z +601 844 Bucuresti Place " " 242 36603 " " 2020-02-15T06:59:28Z +602 1101 Bucuresti Boulevard " " 401 97661 " " 2020-02-15T06:59:28Z +603 1103 Quilmes Boulevard " " 503 52137 " " 2020-02-15T06:59:28Z +604 1331 Usak Boulevard " " 296 61960 " " 2020-02-15T06:59:28Z +605 1325 Fukuyama Street " " 537 27107 " " 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv/category.tsv b/drivers/csv/testdata/sakila-tsv/category.tsv new file mode 100644 index 00000000..e4e2d281 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/category.tsv @@ -0,0 +1,17 @@ +category_id name last_update +1 Action 2020-02-15T06:59:28Z +2 Animation 2020-02-15T06:59:28Z +3 Children 2020-02-15T06:59:28Z +4 Classics 2020-02-15T06:59:28Z +5 Comedy 2020-02-15T06:59:28Z +6 Documentary 2020-02-15T06:59:28Z +7 Drama 2020-02-15T06:59:28Z +8 Family 2020-02-15T06:59:28Z +9 Foreign 2020-02-15T06:59:28Z +10 Games 2020-02-15T06:59:28Z +11 Horror 2020-02-15T06:59:28Z +12 Music 2020-02-15T06:59:28Z +13 New 2020-02-15T06:59:28Z +14 Sci-Fi 2020-02-15T06:59:28Z +15 Sports 2020-02-15T06:59:28Z +16 Travel 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv/city.tsv b/drivers/csv/testdata/sakila-tsv/city.tsv new file mode 100644 index 00000000..a6637e5e --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/city.tsv @@ -0,0 +1,601 @@ +city_id city country_id last_update +1 A Corua (La Corua) 87 2020-02-15T06:59:28Z +2 Abha 82 2020-02-15T06:59:28Z +3 Abu Dhabi 101 2020-02-15T06:59:28Z +4 Acua 60 2020-02-15T06:59:28Z +5 Adana 97 2020-02-15T06:59:28Z +6 Addis Abeba 31 2020-02-15T06:59:28Z +7 Aden 107 2020-02-15T06:59:28Z +8 Adoni 44 2020-02-15T06:59:28Z +9 Ahmadnagar 44 2020-02-15T06:59:28Z +10 Akishima 50 2020-02-15T06:59:28Z +11 Akron 103 2020-02-15T06:59:28Z +12 al-Ayn 101 2020-02-15T06:59:28Z +13 al-Hawiya 82 2020-02-15T06:59:28Z +14 al-Manama 11 2020-02-15T06:59:28Z +15 al-Qadarif 89 2020-02-15T06:59:28Z +16 al-Qatif 82 2020-02-15T06:59:28Z +17 Alessandria 49 2020-02-15T06:59:28Z +18 Allappuzha (Alleppey) 44 2020-02-15T06:59:28Z +19 Allende 60 2020-02-15T06:59:28Z +20 Almirante Brown 6 2020-02-15T06:59:28Z +21 Alvorada 15 2020-02-15T06:59:28Z +22 Ambattur 44 2020-02-15T06:59:28Z +23 Amersfoort 67 2020-02-15T06:59:28Z +24 Amroha 44 2020-02-15T06:59:28Z +25 Angra dos Reis 15 2020-02-15T06:59:28Z +26 Anpolis 15 2020-02-15T06:59:28Z +27 Antofagasta 22 2020-02-15T06:59:28Z +28 Aparecida de Goinia 15 2020-02-15T06:59:28Z +29 Apeldoorn 67 2020-02-15T06:59:28Z +30 Araatuba 15 2020-02-15T06:59:28Z +31 Arak 46 2020-02-15T06:59:28Z +32 Arecibo 77 2020-02-15T06:59:28Z +33 Arlington 103 2020-02-15T06:59:28Z +34 Ashdod 48 2020-02-15T06:59:28Z +35 Ashgabat 98 2020-02-15T06:59:28Z +36 Ashqelon 48 2020-02-15T06:59:28Z +37 Asuncin 73 2020-02-15T06:59:28Z +38 Athenai 39 2020-02-15T06:59:28Z +39 Atinsk 80 2020-02-15T06:59:28Z +40 Atlixco 60 2020-02-15T06:59:28Z +41 Augusta-Richmond County 103 2020-02-15T06:59:28Z +42 Aurora 103 2020-02-15T06:59:28Z +43 Avellaneda 6 2020-02-15T06:59:28Z +44 Bag 15 2020-02-15T06:59:28Z +45 Baha Blanca 6 2020-02-15T06:59:28Z +46 Baicheng 23 2020-02-15T06:59:28Z +47 Baiyin 23 2020-02-15T06:59:28Z +48 Baku 10 2020-02-15T06:59:28Z +49 Balaiha 80 2020-02-15T06:59:28Z +50 Balikesir 97 2020-02-15T06:59:28Z +51 Balurghat 44 2020-02-15T06:59:28Z +52 Bamenda 19 2020-02-15T06:59:28Z +53 Bandar Seri Begawan 16 2020-02-15T06:59:28Z +54 Banjul 37 2020-02-15T06:59:28Z +55 Barcelona 104 2020-02-15T06:59:28Z +56 Basel 91 2020-02-15T06:59:28Z +57 Bat Yam 48 2020-02-15T06:59:28Z +58 Batman 97 2020-02-15T06:59:28Z +59 Batna 2 2020-02-15T06:59:28Z +60 Battambang 18 2020-02-15T06:59:28Z +61 Baybay 75 2020-02-15T06:59:28Z +62 Bayugan 75 2020-02-15T06:59:28Z +63 Bchar 2 2020-02-15T06:59:28Z +64 Beira 63 2020-02-15T06:59:28Z +65 Bellevue 103 2020-02-15T06:59:28Z +66 Belm 15 2020-02-15T06:59:28Z +67 Benguela 4 2020-02-15T06:59:28Z +68 Beni-Mellal 62 2020-02-15T06:59:28Z +69 Benin City 69 2020-02-15T06:59:28Z +70 Bergamo 49 2020-02-15T06:59:28Z +71 Berhampore (Baharampur) 44 2020-02-15T06:59:28Z +72 Bern 91 2020-02-15T06:59:28Z +73 Bhavnagar 44 2020-02-15T06:59:28Z +74 Bhilwara 44 2020-02-15T06:59:28Z +75 Bhimavaram 44 2020-02-15T06:59:28Z +76 Bhopal 44 2020-02-15T06:59:28Z +77 Bhusawal 44 2020-02-15T06:59:28Z +78 Bijapur 44 2020-02-15T06:59:28Z +79 Bilbays 29 2020-02-15T06:59:28Z +80 Binzhou 23 2020-02-15T06:59:28Z +81 Birgunj 66 2020-02-15T06:59:28Z +82 Bislig 75 2020-02-15T06:59:28Z +83 Blumenau 15 2020-02-15T06:59:28Z +84 Boa Vista 15 2020-02-15T06:59:28Z +85 Boksburg 85 2020-02-15T06:59:28Z +86 Botosani 78 2020-02-15T06:59:28Z +87 Botshabelo 85 2020-02-15T06:59:28Z +88 Bradford 102 2020-02-15T06:59:28Z +89 Braslia 15 2020-02-15T06:59:28Z +90 Bratislava 84 2020-02-15T06:59:28Z +91 Brescia 49 2020-02-15T06:59:28Z +92 Brest 34 2020-02-15T06:59:28Z +93 Brindisi 49 2020-02-15T06:59:28Z +94 Brockton 103 2020-02-15T06:59:28Z +95 Bucuresti 78 2020-02-15T06:59:28Z +96 Buenaventura 24 2020-02-15T06:59:28Z +97 Bydgoszcz 76 2020-02-15T06:59:28Z +98 Cabuyao 75 2020-02-15T06:59:28Z +99 Callao 74 2020-02-15T06:59:28Z +100 Cam Ranh 105 2020-02-15T06:59:28Z +101 Cape Coral 103 2020-02-15T06:59:28Z +102 Caracas 104 2020-02-15T06:59:28Z +103 Carmen 60 2020-02-15T06:59:28Z +104 Cavite 75 2020-02-15T06:59:28Z +105 Cayenne 35 2020-02-15T06:59:28Z +106 Celaya 60 2020-02-15T06:59:28Z +107 Chandrapur 44 2020-02-15T06:59:28Z +108 Changhwa 92 2020-02-15T06:59:28Z +109 Changzhou 23 2020-02-15T06:59:28Z +110 Chapra 44 2020-02-15T06:59:28Z +111 Charlotte Amalie 106 2020-02-15T06:59:28Z +112 Chatsworth 85 2020-02-15T06:59:28Z +113 Cheju 86 2020-02-15T06:59:28Z +114 Chiayi 92 2020-02-15T06:59:28Z +115 Chisinau 61 2020-02-15T06:59:28Z +116 Chungho 92 2020-02-15T06:59:28Z +117 Cianjur 45 2020-02-15T06:59:28Z +118 Ciomas 45 2020-02-15T06:59:28Z +119 Ciparay 45 2020-02-15T06:59:28Z +120 Citrus Heights 103 2020-02-15T06:59:28Z +121 Citt del Vaticano 41 2020-02-15T06:59:28Z +122 Ciudad del Este 73 2020-02-15T06:59:28Z +123 Clarksville 103 2020-02-15T06:59:28Z +124 Coacalco de Berriozbal 60 2020-02-15T06:59:28Z +125 Coatzacoalcos 60 2020-02-15T06:59:28Z +126 Compton 103 2020-02-15T06:59:28Z +127 Coquimbo 22 2020-02-15T06:59:28Z +128 Crdoba 6 2020-02-15T06:59:28Z +129 Cuauhtmoc 60 2020-02-15T06:59:28Z +130 Cuautla 60 2020-02-15T06:59:28Z +131 Cuernavaca 60 2020-02-15T06:59:28Z +132 Cuman 104 2020-02-15T06:59:28Z +133 Czestochowa 76 2020-02-15T06:59:28Z +134 Dadu 72 2020-02-15T06:59:28Z +135 Dallas 103 2020-02-15T06:59:28Z +136 Datong 23 2020-02-15T06:59:28Z +137 Daugavpils 54 2020-02-15T06:59:28Z +138 Davao 75 2020-02-15T06:59:28Z +139 Daxian 23 2020-02-15T06:59:28Z +140 Dayton 103 2020-02-15T06:59:28Z +141 Deba Habe 69 2020-02-15T06:59:28Z +142 Denizli 97 2020-02-15T06:59:28Z +143 Dhaka 12 2020-02-15T06:59:28Z +144 Dhule (Dhulia) 44 2020-02-15T06:59:28Z +145 Dongying 23 2020-02-15T06:59:28Z +146 Donostia-San Sebastin 87 2020-02-15T06:59:28Z +147 Dos Quebradas 24 2020-02-15T06:59:28Z +148 Duisburg 38 2020-02-15T06:59:28Z +149 Dundee 102 2020-02-15T06:59:28Z +150 Dzerzinsk 80 2020-02-15T06:59:28Z +151 Ede 67 2020-02-15T06:59:28Z +152 Effon-Alaiye 69 2020-02-15T06:59:28Z +153 El Alto 14 2020-02-15T06:59:28Z +154 El Fuerte 60 2020-02-15T06:59:28Z +155 El Monte 103 2020-02-15T06:59:28Z +156 Elista 80 2020-02-15T06:59:28Z +157 Emeishan 23 2020-02-15T06:59:28Z +158 Emmen 67 2020-02-15T06:59:28Z +159 Enshi 23 2020-02-15T06:59:28Z +160 Erlangen 38 2020-02-15T06:59:28Z +161 Escobar 6 2020-02-15T06:59:28Z +162 Esfahan 46 2020-02-15T06:59:28Z +163 Eskisehir 97 2020-02-15T06:59:28Z +164 Etawah 44 2020-02-15T06:59:28Z +165 Ezeiza 6 2020-02-15T06:59:28Z +166 Ezhou 23 2020-02-15T06:59:28Z +167 Faaa 36 2020-02-15T06:59:28Z +168 Fengshan 92 2020-02-15T06:59:28Z +169 Firozabad 44 2020-02-15T06:59:28Z +170 Florencia 24 2020-02-15T06:59:28Z +171 Fontana 103 2020-02-15T06:59:28Z +172 Fukuyama 50 2020-02-15T06:59:28Z +173 Funafuti 99 2020-02-15T06:59:28Z +174 Fuyu 23 2020-02-15T06:59:28Z +175 Fuzhou 23 2020-02-15T06:59:28Z +176 Gandhinagar 44 2020-02-15T06:59:28Z +177 Garden Grove 103 2020-02-15T06:59:28Z +178 Garland 103 2020-02-15T06:59:28Z +179 Gatineau 20 2020-02-15T06:59:28Z +180 Gaziantep 97 2020-02-15T06:59:28Z +181 Gijn 87 2020-02-15T06:59:28Z +182 Gingoog 75 2020-02-15T06:59:28Z +183 Goinia 15 2020-02-15T06:59:28Z +184 Gorontalo 45 2020-02-15T06:59:28Z +185 Grand Prairie 103 2020-02-15T06:59:28Z +186 Graz 9 2020-02-15T06:59:28Z +187 Greensboro 103 2020-02-15T06:59:28Z +188 Guadalajara 60 2020-02-15T06:59:28Z +189 Guaruj 15 2020-02-15T06:59:28Z +190 guas Lindas de Gois 15 2020-02-15T06:59:28Z +191 Gulbarga 44 2020-02-15T06:59:28Z +192 Hagonoy 75 2020-02-15T06:59:28Z +193 Haining 23 2020-02-15T06:59:28Z +194 Haiphong 105 2020-02-15T06:59:28Z +195 Haldia 44 2020-02-15T06:59:28Z +196 Halifax 20 2020-02-15T06:59:28Z +197 Halisahar 44 2020-02-15T06:59:28Z +198 Halle/Saale 38 2020-02-15T06:59:28Z +199 Hami 23 2020-02-15T06:59:28Z +200 Hamilton 68 2020-02-15T06:59:28Z +201 Hanoi 105 2020-02-15T06:59:28Z +202 Hidalgo 60 2020-02-15T06:59:28Z +203 Higashiosaka 50 2020-02-15T06:59:28Z +204 Hino 50 2020-02-15T06:59:28Z +205 Hiroshima 50 2020-02-15T06:59:28Z +206 Hodeida 107 2020-02-15T06:59:28Z +207 Hohhot 23 2020-02-15T06:59:28Z +208 Hoshiarpur 44 2020-02-15T06:59:28Z +209 Hsichuh 92 2020-02-15T06:59:28Z +210 Huaian 23 2020-02-15T06:59:28Z +211 Hubli-Dharwad 44 2020-02-15T06:59:28Z +212 Huejutla de Reyes 60 2020-02-15T06:59:28Z +213 Huixquilucan 60 2020-02-15T06:59:28Z +214 Hunuco 74 2020-02-15T06:59:28Z +215 Ibirit 15 2020-02-15T06:59:28Z +216 Idfu 29 2020-02-15T06:59:28Z +217 Ife 69 2020-02-15T06:59:28Z +218 Ikerre 69 2020-02-15T06:59:28Z +219 Iligan 75 2020-02-15T06:59:28Z +220 Ilorin 69 2020-02-15T06:59:28Z +221 Imus 75 2020-02-15T06:59:28Z +222 Inegl 97 2020-02-15T06:59:28Z +223 Ipoh 59 2020-02-15T06:59:28Z +224 Isesaki 50 2020-02-15T06:59:28Z +225 Ivanovo 80 2020-02-15T06:59:28Z +226 Iwaki 50 2020-02-15T06:59:28Z +227 Iwakuni 50 2020-02-15T06:59:28Z +228 Iwatsuki 50 2020-02-15T06:59:28Z +229 Izumisano 50 2020-02-15T06:59:28Z +230 Jaffna 88 2020-02-15T06:59:28Z +231 Jaipur 44 2020-02-15T06:59:28Z +232 Jakarta 45 2020-02-15T06:59:28Z +233 Jalib al-Shuyukh 53 2020-02-15T06:59:28Z +234 Jamalpur 12 2020-02-15T06:59:28Z +235 Jaroslavl 80 2020-02-15T06:59:28Z +236 Jastrzebie-Zdrj 76 2020-02-15T06:59:28Z +237 Jedda 82 2020-02-15T06:59:28Z +238 Jelets 80 2020-02-15T06:59:28Z +239 Jhansi 44 2020-02-15T06:59:28Z +240 Jinchang 23 2020-02-15T06:59:28Z +241 Jining 23 2020-02-15T06:59:28Z +242 Jinzhou 23 2020-02-15T06:59:28Z +243 Jodhpur 44 2020-02-15T06:59:28Z +244 Johannesburg 85 2020-02-15T06:59:28Z +245 Joliet 103 2020-02-15T06:59:28Z +246 Jos Azueta 60 2020-02-15T06:59:28Z +247 Juazeiro do Norte 15 2020-02-15T06:59:28Z +248 Juiz de Fora 15 2020-02-15T06:59:28Z +249 Junan 23 2020-02-15T06:59:28Z +250 Jurez 60 2020-02-15T06:59:28Z +251 Kabul 1 2020-02-15T06:59:28Z +252 Kaduna 69 2020-02-15T06:59:28Z +253 Kakamigahara 50 2020-02-15T06:59:28Z +254 Kaliningrad 80 2020-02-15T06:59:28Z +255 Kalisz 76 2020-02-15T06:59:28Z +256 Kamakura 50 2020-02-15T06:59:28Z +257 Kamarhati 44 2020-02-15T06:59:28Z +258 Kamjanets-Podilskyi 100 2020-02-15T06:59:28Z +259 Kamyin 80 2020-02-15T06:59:28Z +260 Kanazawa 50 2020-02-15T06:59:28Z +261 Kanchrapara 44 2020-02-15T06:59:28Z +262 Kansas City 103 2020-02-15T06:59:28Z +263 Karnal 44 2020-02-15T06:59:28Z +264 Katihar 44 2020-02-15T06:59:28Z +265 Kermanshah 46 2020-02-15T06:59:28Z +266 Kilis 97 2020-02-15T06:59:28Z +267 Kimberley 85 2020-02-15T06:59:28Z +268 Kimchon 86 2020-02-15T06:59:28Z +269 Kingstown 81 2020-02-15T06:59:28Z +270 Kirovo-Tepetsk 80 2020-02-15T06:59:28Z +271 Kisumu 52 2020-02-15T06:59:28Z +272 Kitwe 109 2020-02-15T06:59:28Z +273 Klerksdorp 85 2020-02-15T06:59:28Z +274 Kolpino 80 2020-02-15T06:59:28Z +275 Konotop 100 2020-02-15T06:59:28Z +276 Koriyama 50 2020-02-15T06:59:28Z +277 Korla 23 2020-02-15T06:59:28Z +278 Korolev 80 2020-02-15T06:59:28Z +279 Kowloon and New Kowloon 42 2020-02-15T06:59:28Z +280 Kragujevac 108 2020-02-15T06:59:28Z +281 Ktahya 97 2020-02-15T06:59:28Z +282 Kuching 59 2020-02-15T06:59:28Z +283 Kumbakonam 44 2020-02-15T06:59:28Z +284 Kurashiki 50 2020-02-15T06:59:28Z +285 Kurgan 80 2020-02-15T06:59:28Z +286 Kursk 80 2020-02-15T06:59:28Z +287 Kuwana 50 2020-02-15T06:59:28Z +288 La Paz 60 2020-02-15T06:59:28Z +289 La Plata 6 2020-02-15T06:59:28Z +290 La Romana 27 2020-02-15T06:59:28Z +291 Laiwu 23 2020-02-15T06:59:28Z +292 Lancaster 103 2020-02-15T06:59:28Z +293 Laohekou 23 2020-02-15T06:59:28Z +294 Lapu-Lapu 75 2020-02-15T06:59:28Z +295 Laredo 103 2020-02-15T06:59:28Z +296 Lausanne 91 2020-02-15T06:59:28Z +297 Le Mans 34 2020-02-15T06:59:28Z +298 Lengshuijiang 23 2020-02-15T06:59:28Z +299 Leshan 23 2020-02-15T06:59:28Z +300 Lethbridge 20 2020-02-15T06:59:28Z +301 Lhokseumawe 45 2020-02-15T06:59:28Z +302 Liaocheng 23 2020-02-15T06:59:28Z +303 Liepaja 54 2020-02-15T06:59:28Z +304 Lilongwe 58 2020-02-15T06:59:28Z +305 Lima 74 2020-02-15T06:59:28Z +306 Lincoln 103 2020-02-15T06:59:28Z +307 Linz 9 2020-02-15T06:59:28Z +308 Lipetsk 80 2020-02-15T06:59:28Z +309 Livorno 49 2020-02-15T06:59:28Z +310 Ljubertsy 80 2020-02-15T06:59:28Z +311 Loja 28 2020-02-15T06:59:28Z +312 London 102 2020-02-15T06:59:28Z +313 London 20 2020-02-15T06:59:28Z +314 Lublin 76 2020-02-15T06:59:28Z +315 Lubumbashi 25 2020-02-15T06:59:28Z +316 Lungtan 92 2020-02-15T06:59:28Z +317 Luzinia 15 2020-02-15T06:59:28Z +318 Madiun 45 2020-02-15T06:59:28Z +319 Mahajanga 57 2020-02-15T06:59:28Z +320 Maikop 80 2020-02-15T06:59:28Z +321 Malm 90 2020-02-15T06:59:28Z +322 Manchester 103 2020-02-15T06:59:28Z +323 Mandaluyong 75 2020-02-15T06:59:28Z +324 Mandi Bahauddin 72 2020-02-15T06:59:28Z +325 Mannheim 38 2020-02-15T06:59:28Z +326 Maracabo 104 2020-02-15T06:59:28Z +327 Mardan 72 2020-02-15T06:59:28Z +328 Maring 15 2020-02-15T06:59:28Z +329 Masqat 71 2020-02-15T06:59:28Z +330 Matamoros 60 2020-02-15T06:59:28Z +331 Matsue 50 2020-02-15T06:59:28Z +332 Meixian 23 2020-02-15T06:59:28Z +333 Memphis 103 2020-02-15T06:59:28Z +334 Merlo 6 2020-02-15T06:59:28Z +335 Mexicali 60 2020-02-15T06:59:28Z +336 Miraj 44 2020-02-15T06:59:28Z +337 Mit Ghamr 29 2020-02-15T06:59:28Z +338 Miyakonojo 50 2020-02-15T06:59:28Z +339 Mogiljov 13 2020-02-15T06:59:28Z +340 Molodetno 13 2020-02-15T06:59:28Z +341 Monclova 60 2020-02-15T06:59:28Z +342 Monywa 64 2020-02-15T06:59:28Z +343 Moscow 80 2020-02-15T06:59:28Z +344 Mosul 47 2020-02-15T06:59:28Z +345 Mukateve 100 2020-02-15T06:59:28Z +346 Munger (Monghyr) 44 2020-02-15T06:59:28Z +347 Mwanza 93 2020-02-15T06:59:28Z +348 Mwene-Ditu 25 2020-02-15T06:59:28Z +349 Myingyan 64 2020-02-15T06:59:28Z +350 Mysore 44 2020-02-15T06:59:28Z +351 Naala-Porto 63 2020-02-15T06:59:28Z +352 Nabereznyje Telny 80 2020-02-15T06:59:28Z +353 Nador 62 2020-02-15T06:59:28Z +354 Nagaon 44 2020-02-15T06:59:28Z +355 Nagareyama 50 2020-02-15T06:59:28Z +356 Najafabad 46 2020-02-15T06:59:28Z +357 Naju 86 2020-02-15T06:59:28Z +358 Nakhon Sawan 94 2020-02-15T06:59:28Z +359 Nam Dinh 105 2020-02-15T06:59:28Z +360 Namibe 4 2020-02-15T06:59:28Z +361 Nantou 92 2020-02-15T06:59:28Z +362 Nanyang 23 2020-02-15T06:59:28Z +363 NDjamna 21 2020-02-15T06:59:28Z +364 Newcastle 85 2020-02-15T06:59:28Z +365 Nezahualcyotl 60 2020-02-15T06:59:28Z +366 Nha Trang 105 2020-02-15T06:59:28Z +367 Niznekamsk 80 2020-02-15T06:59:28Z +368 Novi Sad 108 2020-02-15T06:59:28Z +369 Novoterkassk 80 2020-02-15T06:59:28Z +370 Nukualofa 95 2020-02-15T06:59:28Z +371 Nuuk 40 2020-02-15T06:59:28Z +372 Nyeri 52 2020-02-15T06:59:28Z +373 Ocumare del Tuy 104 2020-02-15T06:59:28Z +374 Ogbomosho 69 2020-02-15T06:59:28Z +375 Okara 72 2020-02-15T06:59:28Z +376 Okayama 50 2020-02-15T06:59:28Z +377 Okinawa 50 2020-02-15T06:59:28Z +378 Olomouc 26 2020-02-15T06:59:28Z +379 Omdurman 89 2020-02-15T06:59:28Z +380 Omiya 50 2020-02-15T06:59:28Z +381 Ondo 69 2020-02-15T06:59:28Z +382 Onomichi 50 2020-02-15T06:59:28Z +383 Oshawa 20 2020-02-15T06:59:28Z +384 Osmaniye 97 2020-02-15T06:59:28Z +385 ostka 100 2020-02-15T06:59:28Z +386 Otsu 50 2020-02-15T06:59:28Z +387 Oulu 33 2020-02-15T06:59:28Z +388 Ourense (Orense) 87 2020-02-15T06:59:28Z +389 Owo 69 2020-02-15T06:59:28Z +390 Oyo 69 2020-02-15T06:59:28Z +391 Ozamis 75 2020-02-15T06:59:28Z +392 Paarl 85 2020-02-15T06:59:28Z +393 Pachuca de Soto 60 2020-02-15T06:59:28Z +394 Pak Kret 94 2020-02-15T06:59:28Z +395 Palghat (Palakkad) 44 2020-02-15T06:59:28Z +396 Pangkal Pinang 45 2020-02-15T06:59:28Z +397 Papeete 36 2020-02-15T06:59:28Z +398 Parbhani 44 2020-02-15T06:59:28Z +399 Pathankot 44 2020-02-15T06:59:28Z +400 Patiala 44 2020-02-15T06:59:28Z +401 Patras 39 2020-02-15T06:59:28Z +402 Pavlodar 51 2020-02-15T06:59:28Z +403 Pemalang 45 2020-02-15T06:59:28Z +404 Peoria 103 2020-02-15T06:59:28Z +405 Pereira 24 2020-02-15T06:59:28Z +406 Phnom Penh 18 2020-02-15T06:59:28Z +407 Pingxiang 23 2020-02-15T06:59:28Z +408 Pjatigorsk 80 2020-02-15T06:59:28Z +409 Plock 76 2020-02-15T06:59:28Z +410 Po 15 2020-02-15T06:59:28Z +411 Ponce 77 2020-02-15T06:59:28Z +412 Pontianak 45 2020-02-15T06:59:28Z +413 Poos de Caldas 15 2020-02-15T06:59:28Z +414 Portoviejo 28 2020-02-15T06:59:28Z +415 Probolinggo 45 2020-02-15T06:59:28Z +416 Pudukkottai 44 2020-02-15T06:59:28Z +417 Pune 44 2020-02-15T06:59:28Z +418 Purnea (Purnia) 44 2020-02-15T06:59:28Z +419 Purwakarta 45 2020-02-15T06:59:28Z +420 Pyongyang 70 2020-02-15T06:59:28Z +421 Qalyub 29 2020-02-15T06:59:28Z +422 Qinhuangdao 23 2020-02-15T06:59:28Z +423 Qomsheh 46 2020-02-15T06:59:28Z +424 Quilmes 6 2020-02-15T06:59:28Z +425 Rae Bareli 44 2020-02-15T06:59:28Z +426 Rajkot 44 2020-02-15T06:59:28Z +427 Rampur 44 2020-02-15T06:59:28Z +428 Rancagua 22 2020-02-15T06:59:28Z +429 Ranchi 44 2020-02-15T06:59:28Z +430 Richmond Hill 20 2020-02-15T06:59:28Z +431 Rio Claro 15 2020-02-15T06:59:28Z +432 Rizhao 23 2020-02-15T06:59:28Z +433 Roanoke 103 2020-02-15T06:59:28Z +434 Robamba 28 2020-02-15T06:59:28Z +435 Rockford 103 2020-02-15T06:59:28Z +436 Ruse 17 2020-02-15T06:59:28Z +437 Rustenburg 85 2020-02-15T06:59:28Z +438 s-Hertogenbosch 67 2020-02-15T06:59:28Z +439 Saarbrcken 38 2020-02-15T06:59:28Z +440 Sagamihara 50 2020-02-15T06:59:28Z +441 Saint Louis 103 2020-02-15T06:59:28Z +442 Saint-Denis 79 2020-02-15T06:59:28Z +443 Sal 62 2020-02-15T06:59:28Z +444 Salala 71 2020-02-15T06:59:28Z +445 Salamanca 60 2020-02-15T06:59:28Z +446 Salinas 103 2020-02-15T06:59:28Z +447 Salzburg 9 2020-02-15T06:59:28Z +448 Sambhal 44 2020-02-15T06:59:28Z +449 San Bernardino 103 2020-02-15T06:59:28Z +450 San Felipe de Puerto Plata 27 2020-02-15T06:59:28Z +451 San Felipe del Progreso 60 2020-02-15T06:59:28Z +452 San Juan Bautista Tuxtepec 60 2020-02-15T06:59:28Z +453 San Lorenzo 73 2020-02-15T06:59:28Z +454 San Miguel de Tucumn 6 2020-02-15T06:59:28Z +455 Sanaa 107 2020-02-15T06:59:28Z +456 Santa Brbara dOeste 15 2020-02-15T06:59:28Z +457 Santa F 6 2020-02-15T06:59:28Z +458 Santa Rosa 75 2020-02-15T06:59:28Z +459 Santiago de Compostela 87 2020-02-15T06:59:28Z +460 Santiago de los Caballeros 27 2020-02-15T06:59:28Z +461 Santo Andr 15 2020-02-15T06:59:28Z +462 Sanya 23 2020-02-15T06:59:28Z +463 Sasebo 50 2020-02-15T06:59:28Z +464 Satna 44 2020-02-15T06:59:28Z +465 Sawhaj 29 2020-02-15T06:59:28Z +466 Serpuhov 80 2020-02-15T06:59:28Z +467 Shahr-e Kord 46 2020-02-15T06:59:28Z +468 Shanwei 23 2020-02-15T06:59:28Z +469 Shaoguan 23 2020-02-15T06:59:28Z +470 Sharja 101 2020-02-15T06:59:28Z +471 Shenzhen 23 2020-02-15T06:59:28Z +472 Shikarpur 72 2020-02-15T06:59:28Z +473 Shimoga 44 2020-02-15T06:59:28Z +474 Shimonoseki 50 2020-02-15T06:59:28Z +475 Shivapuri 44 2020-02-15T06:59:28Z +476 Shubra al-Khayma 29 2020-02-15T06:59:28Z +477 Siegen 38 2020-02-15T06:59:28Z +478 Siliguri (Shiliguri) 44 2020-02-15T06:59:28Z +479 Simferopol 100 2020-02-15T06:59:28Z +480 Sincelejo 24 2020-02-15T06:59:28Z +481 Sirjan 46 2020-02-15T06:59:28Z +482 Sivas 97 2020-02-15T06:59:28Z +483 Skikda 2 2020-02-15T06:59:28Z +484 Smolensk 80 2020-02-15T06:59:28Z +485 So Bernardo do Campo 15 2020-02-15T06:59:28Z +486 So Leopoldo 15 2020-02-15T06:59:28Z +487 Sogamoso 24 2020-02-15T06:59:28Z +488 Sokoto 69 2020-02-15T06:59:28Z +489 Songkhla 94 2020-02-15T06:59:28Z +490 Sorocaba 15 2020-02-15T06:59:28Z +491 Soshanguve 85 2020-02-15T06:59:28Z +492 Sousse 96 2020-02-15T06:59:28Z +493 South Hill 5 2020-02-15T06:59:28Z +494 Southampton 102 2020-02-15T06:59:28Z +495 Southend-on-Sea 102 2020-02-15T06:59:28Z +496 Southport 102 2020-02-15T06:59:28Z +497 Springs 85 2020-02-15T06:59:28Z +498 Stara Zagora 17 2020-02-15T06:59:28Z +499 Sterling Heights 103 2020-02-15T06:59:28Z +500 Stockport 102 2020-02-15T06:59:28Z +501 Sucre 14 2020-02-15T06:59:28Z +502 Suihua 23 2020-02-15T06:59:28Z +503 Sullana 74 2020-02-15T06:59:28Z +504 Sultanbeyli 97 2020-02-15T06:59:28Z +505 Sumqayit 10 2020-02-15T06:59:28Z +506 Sumy 100 2020-02-15T06:59:28Z +507 Sungai Petani 59 2020-02-15T06:59:28Z +508 Sunnyvale 103 2020-02-15T06:59:28Z +509 Surakarta 45 2020-02-15T06:59:28Z +510 Syktyvkar 80 2020-02-15T06:59:28Z +511 Syrakusa 49 2020-02-15T06:59:28Z +512 Szkesfehrvr 43 2020-02-15T06:59:28Z +513 Tabora 93 2020-02-15T06:59:28Z +514 Tabriz 46 2020-02-15T06:59:28Z +515 Tabuk 82 2020-02-15T06:59:28Z +516 Tafuna 3 2020-02-15T06:59:28Z +517 Taguig 75 2020-02-15T06:59:28Z +518 Taizz 107 2020-02-15T06:59:28Z +519 Talavera 75 2020-02-15T06:59:28Z +520 Tallahassee 103 2020-02-15T06:59:28Z +521 Tama 50 2020-02-15T06:59:28Z +522 Tambaram 44 2020-02-15T06:59:28Z +523 Tanauan 75 2020-02-15T06:59:28Z +524 Tandil 6 2020-02-15T06:59:28Z +525 Tangail 12 2020-02-15T06:59:28Z +526 Tanshui 92 2020-02-15T06:59:28Z +527 Tanza 75 2020-02-15T06:59:28Z +528 Tarlac 75 2020-02-15T06:59:28Z +529 Tarsus 97 2020-02-15T06:59:28Z +530 Tartu 30 2020-02-15T06:59:28Z +531 Teboksary 80 2020-02-15T06:59:28Z +532 Tegal 45 2020-02-15T06:59:28Z +533 Tel Aviv-Jaffa 48 2020-02-15T06:59:28Z +534 Tete 63 2020-02-15T06:59:28Z +535 Tianjin 23 2020-02-15T06:59:28Z +536 Tiefa 23 2020-02-15T06:59:28Z +537 Tieli 23 2020-02-15T06:59:28Z +538 Tokat 97 2020-02-15T06:59:28Z +539 Tonghae 86 2020-02-15T06:59:28Z +540 Tongliao 23 2020-02-15T06:59:28Z +541 Torren 60 2020-02-15T06:59:28Z +542 Touliu 92 2020-02-15T06:59:28Z +543 Toulon 34 2020-02-15T06:59:28Z +544 Toulouse 34 2020-02-15T06:59:28Z +545 Trshavn 32 2020-02-15T06:59:28Z +546 Tsaotun 92 2020-02-15T06:59:28Z +547 Tsuyama 50 2020-02-15T06:59:28Z +548 Tuguegarao 75 2020-02-15T06:59:28Z +549 Tychy 76 2020-02-15T06:59:28Z +550 Udaipur 44 2020-02-15T06:59:28Z +551 Udine 49 2020-02-15T06:59:28Z +552 Ueda 50 2020-02-15T06:59:28Z +553 Uijongbu 86 2020-02-15T06:59:28Z +554 Uluberia 44 2020-02-15T06:59:28Z +555 Urawa 50 2020-02-15T06:59:28Z +556 Uruapan 60 2020-02-15T06:59:28Z +557 Usak 97 2020-02-15T06:59:28Z +558 Usolje-Sibirskoje 80 2020-02-15T06:59:28Z +559 Uttarpara-Kotrung 44 2020-02-15T06:59:28Z +560 Vaduz 55 2020-02-15T06:59:28Z +561 Valencia 104 2020-02-15T06:59:28Z +562 Valle de la Pascua 104 2020-02-15T06:59:28Z +563 Valle de Santiago 60 2020-02-15T06:59:28Z +564 Valparai 44 2020-02-15T06:59:28Z +565 Vancouver 20 2020-02-15T06:59:28Z +566 Varanasi (Benares) 44 2020-02-15T06:59:28Z +567 Vicente Lpez 6 2020-02-15T06:59:28Z +568 Vijayawada 44 2020-02-15T06:59:28Z +569 Vila Velha 15 2020-02-15T06:59:28Z +570 Vilnius 56 2020-02-15T06:59:28Z +571 Vinh 105 2020-02-15T06:59:28Z +572 Vitria de Santo Anto 15 2020-02-15T06:59:28Z +573 Warren 103 2020-02-15T06:59:28Z +574 Weifang 23 2020-02-15T06:59:28Z +575 Witten 38 2020-02-15T06:59:28Z +576 Woodridge 8 2020-02-15T06:59:28Z +577 Wroclaw 76 2020-02-15T06:59:28Z +578 Xiangfan 23 2020-02-15T06:59:28Z +579 Xiangtan 23 2020-02-15T06:59:28Z +580 Xintai 23 2020-02-15T06:59:28Z +581 Xinxiang 23 2020-02-15T06:59:28Z +582 Yamuna Nagar 44 2020-02-15T06:59:28Z +583 Yangor 65 2020-02-15T06:59:28Z +584 Yantai 23 2020-02-15T06:59:28Z +585 Yaound 19 2020-02-15T06:59:28Z +586 Yerevan 7 2020-02-15T06:59:28Z +587 Yinchuan 23 2020-02-15T06:59:28Z +588 Yingkou 23 2020-02-15T06:59:28Z +589 York 102 2020-02-15T06:59:28Z +590 Yuncheng 23 2020-02-15T06:59:28Z +591 Yuzhou 23 2020-02-15T06:59:28Z +592 Zalantun 23 2020-02-15T06:59:28Z +593 Zanzibar 93 2020-02-15T06:59:28Z +594 Zaoyang 23 2020-02-15T06:59:28Z +595 Zapopan 60 2020-02-15T06:59:28Z +596 Zaria 69 2020-02-15T06:59:28Z +597 Zeleznogorsk 80 2020-02-15T06:59:28Z +598 Zhezqazghan 51 2020-02-15T06:59:28Z +599 Zhoushan 23 2020-02-15T06:59:28Z +600 Ziguinchor 83 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv/country.tsv b/drivers/csv/testdata/sakila-tsv/country.tsv new file mode 100644 index 00000000..c9022699 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/country.tsv @@ -0,0 +1,110 @@ +country_id country last_update +1 Afghanistan 2020-02-15T06:59:27Z +2 Algeria 2020-02-15T06:59:27Z +3 American Samoa 2020-02-15T06:59:27Z +4 Angola 2020-02-15T06:59:27Z +5 Anguilla 2020-02-15T06:59:27Z +6 Argentina 2020-02-15T06:59:27Z +7 Armenia 2020-02-15T06:59:27Z +8 Australia 2020-02-15T06:59:27Z +9 Austria 2020-02-15T06:59:27Z +10 Azerbaijan 2020-02-15T06:59:27Z +11 Bahrain 2020-02-15T06:59:27Z +12 Bangladesh 2020-02-15T06:59:27Z +13 Belarus 2020-02-15T06:59:27Z +14 Bolivia 2020-02-15T06:59:27Z +15 Brazil 2020-02-15T06:59:27Z +16 Brunei 2020-02-15T06:59:27Z +17 Bulgaria 2020-02-15T06:59:27Z +18 Cambodia 2020-02-15T06:59:27Z +19 Cameroon 2020-02-15T06:59:27Z +20 Canada 2020-02-15T06:59:27Z +21 Chad 2020-02-15T06:59:27Z +22 Chile 2020-02-15T06:59:27Z +23 China 2020-02-15T06:59:27Z +24 Colombia 2020-02-15T06:59:27Z +25 Congo, The Democratic Republic of the 2020-02-15T06:59:27Z +26 Czech Republic 2020-02-15T06:59:27Z +27 Dominican Republic 2020-02-15T06:59:27Z +28 Ecuador 2020-02-15T06:59:27Z +29 Egypt 2020-02-15T06:59:27Z +30 Estonia 2020-02-15T06:59:27Z +31 Ethiopia 2020-02-15T06:59:27Z +32 Faroe Islands 2020-02-15T06:59:27Z +33 Finland 2020-02-15T06:59:27Z +34 France 2020-02-15T06:59:27Z +35 French Guiana 2020-02-15T06:59:27Z +36 French Polynesia 2020-02-15T06:59:27Z +37 Gambia 2020-02-15T06:59:27Z +38 Germany 2020-02-15T06:59:27Z +39 Greece 2020-02-15T06:59:27Z +40 Greenland 2020-02-15T06:59:27Z +41 Holy See (Vatican City State) 2020-02-15T06:59:28Z +42 Hong Kong 2020-02-15T06:59:28Z +43 Hungary 2020-02-15T06:59:28Z +44 India 2020-02-15T06:59:28Z +45 Indonesia 2020-02-15T06:59:28Z +46 Iran 2020-02-15T06:59:28Z +47 Iraq 2020-02-15T06:59:28Z +48 Israel 2020-02-15T06:59:28Z +49 Italy 2020-02-15T06:59:28Z +50 Japan 2020-02-15T06:59:28Z +51 Kazakstan 2020-02-15T06:59:28Z +52 Kenya 2020-02-15T06:59:28Z +53 Kuwait 2020-02-15T06:59:28Z +54 Latvia 2020-02-15T06:59:28Z +55 Liechtenstein 2020-02-15T06:59:28Z +56 Lithuania 2020-02-15T06:59:28Z +57 Madagascar 2020-02-15T06:59:28Z +58 Malawi 2020-02-15T06:59:28Z +59 Malaysia 2020-02-15T06:59:28Z +60 Mexico 2020-02-15T06:59:28Z +61 Moldova 2020-02-15T06:59:28Z +62 Morocco 2020-02-15T06:59:28Z +63 Mozambique 2020-02-15T06:59:28Z +64 Myanmar 2020-02-15T06:59:28Z +65 Nauru 2020-02-15T06:59:28Z +66 Nepal 2020-02-15T06:59:28Z +67 Netherlands 2020-02-15T06:59:28Z +68 New Zealand 2020-02-15T06:59:28Z +69 Nigeria 2020-02-15T06:59:28Z +70 North Korea 2020-02-15T06:59:28Z +71 Oman 2020-02-15T06:59:28Z +72 Pakistan 2020-02-15T06:59:28Z +73 Paraguay 2020-02-15T06:59:28Z +74 Peru 2020-02-15T06:59:28Z +75 Philippines 2020-02-15T06:59:28Z +76 Poland 2020-02-15T06:59:28Z +77 Puerto Rico 2020-02-15T06:59:28Z +78 Romania 2020-02-15T06:59:28Z +79 Runion 2020-02-15T06:59:28Z +80 Russian Federation 2020-02-15T06:59:28Z +81 Saint Vincent and the Grenadines 2020-02-15T06:59:28Z +82 Saudi Arabia 2020-02-15T06:59:28Z +83 Senegal 2020-02-15T06:59:28Z +84 Slovakia 2020-02-15T06:59:28Z +85 South Africa 2020-02-15T06:59:28Z +86 South Korea 2020-02-15T06:59:28Z +87 Spain 2020-02-15T06:59:28Z +88 Sri Lanka 2020-02-15T06:59:28Z +89 Sudan 2020-02-15T06:59:28Z +90 Sweden 2020-02-15T06:59:28Z +91 Switzerland 2020-02-15T06:59:28Z +92 Taiwan 2020-02-15T06:59:28Z +93 Tanzania 2020-02-15T06:59:28Z +94 Thailand 2020-02-15T06:59:28Z +95 Tonga 2020-02-15T06:59:28Z +96 Tunisia 2020-02-15T06:59:28Z +97 Turkey 2020-02-15T06:59:28Z +98 Turkmenistan 2020-02-15T06:59:28Z +99 Tuvalu 2020-02-15T06:59:28Z +100 Ukraine 2020-02-15T06:59:28Z +101 United Arab Emirates 2020-02-15T06:59:28Z +102 United Kingdom 2020-02-15T06:59:28Z +103 United States 2020-02-15T06:59:28Z +104 Venezuela 2020-02-15T06:59:28Z +105 Vietnam 2020-02-15T06:59:28Z +106 Virgin Islands, U.S. 2020-02-15T06:59:28Z +107 Yemen 2020-02-15T06:59:28Z +108 Yugoslavia 2020-02-15T06:59:28Z +109 Zambia 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv/customer.tsv b/drivers/csv/testdata/sakila-tsv/customer.tsv new file mode 100644 index 00000000..aca4302e --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/customer.tsv @@ -0,0 +1,600 @@ +customer_id store_id first_name last_name email address_id active create_date last_update +1 1 MARY SMITH MARY.SMITH@sakilacustomer.org 5 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +2 1 PATRICIA JOHNSON PATRICIA.JOHNSON@sakilacustomer.org 6 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +3 1 LINDA WILLIAMS LINDA.WILLIAMS@sakilacustomer.org 7 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +4 2 BARBARA JONES BARBARA.JONES@sakilacustomer.org 8 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +5 1 ELIZABETH BROWN ELIZABETH.BROWN@sakilacustomer.org 9 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +6 2 JENNIFER DAVIS JENNIFER.DAVIS@sakilacustomer.org 10 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +7 1 MARIA MILLER MARIA.MILLER@sakilacustomer.org 11 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +8 2 SUSAN WILSON SUSAN.WILSON@sakilacustomer.org 12 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +9 2 MARGARET MOORE MARGARET.MOORE@sakilacustomer.org 13 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +10 1 DOROTHY TAYLOR DOROTHY.TAYLOR@sakilacustomer.org 14 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +11 2 LISA ANDERSON LISA.ANDERSON@sakilacustomer.org 15 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +12 1 NANCY THOMAS NANCY.THOMAS@sakilacustomer.org 16 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +13 2 KAREN JACKSON KAREN.JACKSON@sakilacustomer.org 17 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +14 2 BETTY WHITE BETTY.WHITE@sakilacustomer.org 18 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +15 1 HELEN HARRIS HELEN.HARRIS@sakilacustomer.org 19 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +16 2 SANDRA MARTIN SANDRA.MARTIN@sakilacustomer.org 20 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +17 1 DONNA THOMPSON DONNA.THOMPSON@sakilacustomer.org 21 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +18 2 CAROL GARCIA CAROL.GARCIA@sakilacustomer.org 22 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +19 1 RUTH MARTINEZ RUTH.MARTINEZ@sakilacustomer.org 23 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +20 2 SHARON ROBINSON SHARON.ROBINSON@sakilacustomer.org 24 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +21 1 MICHELLE CLARK MICHELLE.CLARK@sakilacustomer.org 25 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +22 1 LAURA RODRIGUEZ LAURA.RODRIGUEZ@sakilacustomer.org 26 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +23 2 SARAH LEWIS SARAH.LEWIS@sakilacustomer.org 27 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +24 2 KIMBERLY LEE KIMBERLY.LEE@sakilacustomer.org 28 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +25 1 DEBORAH WALKER DEBORAH.WALKER@sakilacustomer.org 29 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +26 2 JESSICA HALL JESSICA.HALL@sakilacustomer.org 30 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +27 2 SHIRLEY ALLEN SHIRLEY.ALLEN@sakilacustomer.org 31 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +28 1 CYNTHIA YOUNG CYNTHIA.YOUNG@sakilacustomer.org 32 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +29 2 ANGELA HERNANDEZ ANGELA.HERNANDEZ@sakilacustomer.org 33 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +30 1 MELISSA KING MELISSA.KING@sakilacustomer.org 34 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +31 2 BRENDA WRIGHT BRENDA.WRIGHT@sakilacustomer.org 35 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +32 1 AMY LOPEZ AMY.LOPEZ@sakilacustomer.org 36 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +33 2 ANNA HILL ANNA.HILL@sakilacustomer.org 37 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +34 2 REBECCA SCOTT REBECCA.SCOTT@sakilacustomer.org 38 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +35 2 VIRGINIA GREEN VIRGINIA.GREEN@sakilacustomer.org 39 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +36 2 KATHLEEN ADAMS KATHLEEN.ADAMS@sakilacustomer.org 40 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +37 1 PAMELA BAKER PAMELA.BAKER@sakilacustomer.org 41 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +38 1 MARTHA GONZALEZ MARTHA.GONZALEZ@sakilacustomer.org 42 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +39 1 DEBRA NELSON DEBRA.NELSON@sakilacustomer.org 43 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +40 2 AMANDA CARTER AMANDA.CARTER@sakilacustomer.org 44 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +41 1 STEPHANIE MITCHELL STEPHANIE.MITCHELL@sakilacustomer.org 45 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +42 2 CAROLYN PEREZ CAROLYN.PEREZ@sakilacustomer.org 46 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +43 2 CHRISTINE ROBERTS CHRISTINE.ROBERTS@sakilacustomer.org 47 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +44 1 MARIE TURNER MARIE.TURNER@sakilacustomer.org 48 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +45 1 JANET PHILLIPS JANET.PHILLIPS@sakilacustomer.org 49 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +46 2 CATHERINE CAMPBELL CATHERINE.CAMPBELL@sakilacustomer.org 50 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +47 1 FRANCES PARKER FRANCES.PARKER@sakilacustomer.org 51 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +48 1 ANN EVANS ANN.EVANS@sakilacustomer.org 52 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +49 2 JOYCE EDWARDS JOYCE.EDWARDS@sakilacustomer.org 53 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +50 1 DIANE COLLINS DIANE.COLLINS@sakilacustomer.org 54 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +51 1 ALICE STEWART ALICE.STEWART@sakilacustomer.org 55 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +52 1 JULIE SANCHEZ JULIE.SANCHEZ@sakilacustomer.org 56 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +53 1 HEATHER MORRIS HEATHER.MORRIS@sakilacustomer.org 57 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +54 1 TERESA ROGERS TERESA.ROGERS@sakilacustomer.org 58 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +55 2 DORIS REED DORIS.REED@sakilacustomer.org 59 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +56 1 GLORIA COOK GLORIA.COOK@sakilacustomer.org 60 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +57 2 EVELYN MORGAN EVELYN.MORGAN@sakilacustomer.org 61 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +58 1 JEAN BELL JEAN.BELL@sakilacustomer.org 62 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +59 1 CHERYL MURPHY CHERYL.MURPHY@sakilacustomer.org 63 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +60 1 MILDRED BAILEY MILDRED.BAILEY@sakilacustomer.org 64 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +61 2 KATHERINE RIVERA KATHERINE.RIVERA@sakilacustomer.org 65 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +62 1 JOAN COOPER JOAN.COOPER@sakilacustomer.org 66 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +63 1 ASHLEY RICHARDSON ASHLEY.RICHARDSON@sakilacustomer.org 67 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +64 2 JUDITH COX JUDITH.COX@sakilacustomer.org 68 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +65 2 ROSE HOWARD ROSE.HOWARD@sakilacustomer.org 69 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +66 2 JANICE WARD JANICE.WARD@sakilacustomer.org 70 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +67 1 KELLY TORRES KELLY.TORRES@sakilacustomer.org 71 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +68 1 NICOLE PETERSON NICOLE.PETERSON@sakilacustomer.org 72 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +69 2 JUDY GRAY JUDY.GRAY@sakilacustomer.org 73 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +70 2 CHRISTINA RAMIREZ CHRISTINA.RAMIREZ@sakilacustomer.org 74 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +71 1 KATHY JAMES KATHY.JAMES@sakilacustomer.org 75 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +72 2 THERESA WATSON THERESA.WATSON@sakilacustomer.org 76 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +73 2 BEVERLY BROOKS BEVERLY.BROOKS@sakilacustomer.org 77 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +74 1 DENISE KELLY DENISE.KELLY@sakilacustomer.org 78 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +75 2 TAMMY SANDERS TAMMY.SANDERS@sakilacustomer.org 79 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +76 2 IRENE PRICE IRENE.PRICE@sakilacustomer.org 80 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +77 2 JANE BENNETT JANE.BENNETT@sakilacustomer.org 81 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +78 1 LORI WOOD LORI.WOOD@sakilacustomer.org 82 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +79 1 RACHEL BARNES RACHEL.BARNES@sakilacustomer.org 83 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +80 1 MARILYN ROSS MARILYN.ROSS@sakilacustomer.org 84 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +81 1 ANDREA HENDERSON ANDREA.HENDERSON@sakilacustomer.org 85 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +82 1 KATHRYN COLEMAN KATHRYN.COLEMAN@sakilacustomer.org 86 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +83 1 LOUISE JENKINS LOUISE.JENKINS@sakilacustomer.org 87 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +84 2 SARA PERRY SARA.PERRY@sakilacustomer.org 88 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +85 2 ANNE POWELL ANNE.POWELL@sakilacustomer.org 89 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +86 2 JACQUELINE LONG JACQUELINE.LONG@sakilacustomer.org 90 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +87 1 WANDA PATTERSON WANDA.PATTERSON@sakilacustomer.org 91 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +88 2 BONNIE HUGHES BONNIE.HUGHES@sakilacustomer.org 92 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +89 1 JULIA FLORES JULIA.FLORES@sakilacustomer.org 93 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +90 2 RUBY WASHINGTON RUBY.WASHINGTON@sakilacustomer.org 94 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +91 2 LOIS BUTLER LOIS.BUTLER@sakilacustomer.org 95 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +92 2 TINA SIMMONS TINA.SIMMONS@sakilacustomer.org 96 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +93 1 PHYLLIS FOSTER PHYLLIS.FOSTER@sakilacustomer.org 97 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +94 1 NORMA GONZALES NORMA.GONZALES@sakilacustomer.org 98 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +95 2 PAULA BRYANT PAULA.BRYANT@sakilacustomer.org 99 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +96 1 DIANA ALEXANDER DIANA.ALEXANDER@sakilacustomer.org 100 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +97 2 ANNIE RUSSELL ANNIE.RUSSELL@sakilacustomer.org 101 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +98 1 LILLIAN GRIFFIN LILLIAN.GRIFFIN@sakilacustomer.org 102 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +99 2 EMILY DIAZ EMILY.DIAZ@sakilacustomer.org 103 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +100 1 ROBIN HAYES ROBIN.HAYES@sakilacustomer.org 104 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +101 1 PEGGY MYERS PEGGY.MYERS@sakilacustomer.org 105 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +102 1 CRYSTAL FORD CRYSTAL.FORD@sakilacustomer.org 106 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +103 1 GLADYS HAMILTON GLADYS.HAMILTON@sakilacustomer.org 107 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +104 1 RITA GRAHAM RITA.GRAHAM@sakilacustomer.org 108 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +105 1 DAWN SULLIVAN DAWN.SULLIVAN@sakilacustomer.org 109 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +106 1 CONNIE WALLACE CONNIE.WALLACE@sakilacustomer.org 110 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +107 1 FLORENCE WOODS FLORENCE.WOODS@sakilacustomer.org 111 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +108 1 TRACY COLE TRACY.COLE@sakilacustomer.org 112 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +109 2 EDNA WEST EDNA.WEST@sakilacustomer.org 113 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +110 2 TIFFANY JORDAN TIFFANY.JORDAN@sakilacustomer.org 114 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +111 1 CARMEN OWENS CARMEN.OWENS@sakilacustomer.org 115 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +112 2 ROSA REYNOLDS ROSA.REYNOLDS@sakilacustomer.org 116 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +113 2 CINDY FISHER CINDY.FISHER@sakilacustomer.org 117 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +114 2 GRACE ELLIS GRACE.ELLIS@sakilacustomer.org 118 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +115 1 WENDY HARRISON WENDY.HARRISON@sakilacustomer.org 119 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +116 1 VICTORIA GIBSON VICTORIA.GIBSON@sakilacustomer.org 120 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +117 1 EDITH MCDONALD EDITH.MCDONALD@sakilacustomer.org 121 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +118 1 KIM CRUZ KIM.CRUZ@sakilacustomer.org 122 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +119 1 SHERRY MARSHALL SHERRY.MARSHALL@sakilacustomer.org 123 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +120 2 SYLVIA ORTIZ SYLVIA.ORTIZ@sakilacustomer.org 124 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +121 1 JOSEPHINE GOMEZ JOSEPHINE.GOMEZ@sakilacustomer.org 125 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +122 1 THELMA MURRAY THELMA.MURRAY@sakilacustomer.org 126 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +123 2 SHANNON FREEMAN SHANNON.FREEMAN@sakilacustomer.org 127 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +124 1 SHEILA WELLS SHEILA.WELLS@sakilacustomer.org 128 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +125 1 ETHEL WEBB ETHEL.WEBB@sakilacustomer.org 129 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +126 1 ELLEN SIMPSON ELLEN.SIMPSON@sakilacustomer.org 130 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +127 2 ELAINE STEVENS ELAINE.STEVENS@sakilacustomer.org 131 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +128 1 MARJORIE TUCKER MARJORIE.TUCKER@sakilacustomer.org 132 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +129 1 CARRIE PORTER CARRIE.PORTER@sakilacustomer.org 133 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +130 1 CHARLOTTE HUNTER CHARLOTTE.HUNTER@sakilacustomer.org 134 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +131 2 MONICA HICKS MONICA.HICKS@sakilacustomer.org 135 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +132 2 ESTHER CRAWFORD ESTHER.CRAWFORD@sakilacustomer.org 136 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +133 1 PAULINE HENRY PAULINE.HENRY@sakilacustomer.org 137 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +134 1 EMMA BOYD EMMA.BOYD@sakilacustomer.org 138 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +135 2 JUANITA MASON JUANITA.MASON@sakilacustomer.org 139 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +136 2 ANITA MORALES ANITA.MORALES@sakilacustomer.org 140 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +137 2 RHONDA KENNEDY RHONDA.KENNEDY@sakilacustomer.org 141 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +138 1 HAZEL WARREN HAZEL.WARREN@sakilacustomer.org 142 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +139 1 AMBER DIXON AMBER.DIXON@sakilacustomer.org 143 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +140 1 EVA RAMOS EVA.RAMOS@sakilacustomer.org 144 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +141 1 DEBBIE REYES DEBBIE.REYES@sakilacustomer.org 145 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +142 1 APRIL BURNS APRIL.BURNS@sakilacustomer.org 146 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +143 1 LESLIE GORDON LESLIE.GORDON@sakilacustomer.org 147 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +144 1 CLARA SHAW CLARA.SHAW@sakilacustomer.org 148 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +145 1 LUCILLE HOLMES LUCILLE.HOLMES@sakilacustomer.org 149 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +146 1 JAMIE RICE JAMIE.RICE@sakilacustomer.org 150 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +147 2 JOANNE ROBERTSON JOANNE.ROBERTSON@sakilacustomer.org 151 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +148 1 ELEANOR HUNT ELEANOR.HUNT@sakilacustomer.org 152 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +149 1 VALERIE BLACK VALERIE.BLACK@sakilacustomer.org 153 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +150 2 DANIELLE DANIELS DANIELLE.DANIELS@sakilacustomer.org 154 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +151 2 MEGAN PALMER MEGAN.PALMER@sakilacustomer.org 155 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +152 1 ALICIA MILLS ALICIA.MILLS@sakilacustomer.org 156 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +153 2 SUZANNE NICHOLS SUZANNE.NICHOLS@sakilacustomer.org 157 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +154 2 MICHELE GRANT MICHELE.GRANT@sakilacustomer.org 158 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +155 1 GAIL KNIGHT GAIL.KNIGHT@sakilacustomer.org 159 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +156 1 BERTHA FERGUSON BERTHA.FERGUSON@sakilacustomer.org 160 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +157 2 DARLENE ROSE DARLENE.ROSE@sakilacustomer.org 161 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +158 1 VERONICA STONE VERONICA.STONE@sakilacustomer.org 162 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +159 1 JILL HAWKINS JILL.HAWKINS@sakilacustomer.org 163 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +160 2 ERIN DUNN ERIN.DUNN@sakilacustomer.org 164 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +161 1 GERALDINE PERKINS GERALDINE.PERKINS@sakilacustomer.org 165 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +162 2 LAUREN HUDSON LAUREN.HUDSON@sakilacustomer.org 166 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +163 1 CATHY SPENCER CATHY.SPENCER@sakilacustomer.org 167 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +164 2 JOANN GARDNER JOANN.GARDNER@sakilacustomer.org 168 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +165 2 LORRAINE STEPHENS LORRAINE.STEPHENS@sakilacustomer.org 169 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +166 1 LYNN PAYNE LYNN.PAYNE@sakilacustomer.org 170 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +167 2 SALLY PIERCE SALLY.PIERCE@sakilacustomer.org 171 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +168 1 REGINA BERRY REGINA.BERRY@sakilacustomer.org 172 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +169 2 ERICA MATTHEWS ERICA.MATTHEWS@sakilacustomer.org 173 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +170 1 BEATRICE ARNOLD BEATRICE.ARNOLD@sakilacustomer.org 174 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +171 2 DOLORES WAGNER DOLORES.WAGNER@sakilacustomer.org 175 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +172 1 BERNICE WILLIS BERNICE.WILLIS@sakilacustomer.org 176 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +173 1 AUDREY RAY AUDREY.RAY@sakilacustomer.org 177 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +174 2 YVONNE WATKINS YVONNE.WATKINS@sakilacustomer.org 178 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +175 1 ANNETTE OLSON ANNETTE.OLSON@sakilacustomer.org 179 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +176 1 JUNE CARROLL JUNE.CARROLL@sakilacustomer.org 180 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +177 2 SAMANTHA DUNCAN SAMANTHA.DUNCAN@sakilacustomer.org 181 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +178 2 MARION SNYDER MARION.SNYDER@sakilacustomer.org 182 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +179 1 DANA HART DANA.HART@sakilacustomer.org 183 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +180 2 STACY CUNNINGHAM STACY.CUNNINGHAM@sakilacustomer.org 184 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +181 2 ANA BRADLEY ANA.BRADLEY@sakilacustomer.org 185 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +182 1 RENEE LANE RENEE.LANE@sakilacustomer.org 186 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +183 2 IDA ANDREWS IDA.ANDREWS@sakilacustomer.org 187 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +184 1 VIVIAN RUIZ VIVIAN.RUIZ@sakilacustomer.org 188 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +185 1 ROBERTA HARPER ROBERTA.HARPER@sakilacustomer.org 189 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +186 2 HOLLY FOX HOLLY.FOX@sakilacustomer.org 190 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +187 2 BRITTANY RILEY BRITTANY.RILEY@sakilacustomer.org 191 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +188 1 MELANIE ARMSTRONG MELANIE.ARMSTRONG@sakilacustomer.org 192 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +189 1 LORETTA CARPENTER LORETTA.CARPENTER@sakilacustomer.org 193 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +190 2 YOLANDA WEAVER YOLANDA.WEAVER@sakilacustomer.org 194 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +191 1 JEANETTE GREENE JEANETTE.GREENE@sakilacustomer.org 195 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +192 1 LAURIE LAWRENCE LAURIE.LAWRENCE@sakilacustomer.org 196 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +193 2 KATIE ELLIOTT KATIE.ELLIOTT@sakilacustomer.org 197 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +194 2 KRISTEN CHAVEZ KRISTEN.CHAVEZ@sakilacustomer.org 198 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +195 1 VANESSA SIMS VANESSA.SIMS@sakilacustomer.org 199 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +196 1 ALMA AUSTIN ALMA.AUSTIN@sakilacustomer.org 200 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +197 2 SUE PETERS SUE.PETERS@sakilacustomer.org 201 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +198 2 ELSIE KELLEY ELSIE.KELLEY@sakilacustomer.org 202 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +199 2 BETH FRANKLIN BETH.FRANKLIN@sakilacustomer.org 203 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +200 2 JEANNE LAWSON JEANNE.LAWSON@sakilacustomer.org 204 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +201 1 VICKI FIELDS VICKI.FIELDS@sakilacustomer.org 205 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +202 2 CARLA GUTIERREZ CARLA.GUTIERREZ@sakilacustomer.org 206 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +203 1 TARA RYAN TARA.RYAN@sakilacustomer.org 207 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +204 1 ROSEMARY SCHMIDT ROSEMARY.SCHMIDT@sakilacustomer.org 208 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +205 2 EILEEN CARR EILEEN.CARR@sakilacustomer.org 209 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +206 1 TERRI VASQUEZ TERRI.VASQUEZ@sakilacustomer.org 210 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +207 1 GERTRUDE CASTILLO GERTRUDE.CASTILLO@sakilacustomer.org 211 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +208 1 LUCY WHEELER LUCY.WHEELER@sakilacustomer.org 212 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +209 2 TONYA CHAPMAN TONYA.CHAPMAN@sakilacustomer.org 213 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +210 2 ELLA OLIVER ELLA.OLIVER@sakilacustomer.org 214 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +211 1 STACEY MONTGOMERY STACEY.MONTGOMERY@sakilacustomer.org 215 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +212 2 WILMA RICHARDS WILMA.RICHARDS@sakilacustomer.org 216 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +213 1 GINA WILLIAMSON GINA.WILLIAMSON@sakilacustomer.org 217 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +214 1 KRISTIN JOHNSTON KRISTIN.JOHNSTON@sakilacustomer.org 218 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +215 2 JESSIE BANKS JESSIE.BANKS@sakilacustomer.org 219 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +216 1 NATALIE MEYER NATALIE.MEYER@sakilacustomer.org 220 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +217 2 AGNES BISHOP AGNES.BISHOP@sakilacustomer.org 221 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +218 1 VERA MCCOY VERA.MCCOY@sakilacustomer.org 222 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +219 2 WILLIE HOWELL WILLIE.HOWELL@sakilacustomer.org 223 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +220 2 CHARLENE ALVAREZ CHARLENE.ALVAREZ@sakilacustomer.org 224 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +221 1 BESSIE MORRISON BESSIE.MORRISON@sakilacustomer.org 225 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +222 2 DELORES HANSEN DELORES.HANSEN@sakilacustomer.org 226 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +223 1 MELINDA FERNANDEZ MELINDA.FERNANDEZ@sakilacustomer.org 227 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +224 2 PEARL GARZA PEARL.GARZA@sakilacustomer.org 228 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +225 1 ARLENE HARVEY ARLENE.HARVEY@sakilacustomer.org 229 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +226 2 MAUREEN LITTLE MAUREEN.LITTLE@sakilacustomer.org 230 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +227 1 COLLEEN BURTON COLLEEN.BURTON@sakilacustomer.org 231 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +228 2 ALLISON STANLEY ALLISON.STANLEY@sakilacustomer.org 232 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +229 1 TAMARA NGUYEN TAMARA.NGUYEN@sakilacustomer.org 233 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +230 2 JOY GEORGE JOY.GEORGE@sakilacustomer.org 234 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +231 1 GEORGIA JACOBS GEORGIA.JACOBS@sakilacustomer.org 235 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +232 2 CONSTANCE REID CONSTANCE.REID@sakilacustomer.org 236 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +233 2 LILLIE KIM LILLIE.KIM@sakilacustomer.org 237 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +234 1 CLAUDIA FULLER CLAUDIA.FULLER@sakilacustomer.org 238 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +235 1 JACKIE LYNCH JACKIE.LYNCH@sakilacustomer.org 239 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +236 1 MARCIA DEAN MARCIA.DEAN@sakilacustomer.org 240 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +237 1 TANYA GILBERT TANYA.GILBERT@sakilacustomer.org 241 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +238 1 NELLIE GARRETT NELLIE.GARRETT@sakilacustomer.org 242 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +239 2 MINNIE ROMERO MINNIE.ROMERO@sakilacustomer.org 243 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +240 1 MARLENE WELCH MARLENE.WELCH@sakilacustomer.org 244 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +241 2 HEIDI LARSON HEIDI.LARSON@sakilacustomer.org 245 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +242 1 GLENDA FRAZIER GLENDA.FRAZIER@sakilacustomer.org 246 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +243 1 LYDIA BURKE LYDIA.BURKE@sakilacustomer.org 247 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +244 2 VIOLA HANSON VIOLA.HANSON@sakilacustomer.org 248 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +245 1 COURTNEY DAY COURTNEY.DAY@sakilacustomer.org 249 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +246 1 MARIAN MENDOZA MARIAN.MENDOZA@sakilacustomer.org 250 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +247 1 STELLA MORENO STELLA.MORENO@sakilacustomer.org 251 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +248 1 CAROLINE BOWMAN CAROLINE.BOWMAN@sakilacustomer.org 252 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +249 2 DORA MEDINA DORA.MEDINA@sakilacustomer.org 253 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +250 2 JO FOWLER JO.FOWLER@sakilacustomer.org 254 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +251 2 VICKIE BREWER VICKIE.BREWER@sakilacustomer.org 255 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +252 2 MATTIE HOFFMAN MATTIE.HOFFMAN@sakilacustomer.org 256 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +253 1 TERRY CARLSON TERRY.CARLSON@sakilacustomer.org 258 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +254 2 MAXINE SILVA MAXINE.SILVA@sakilacustomer.org 259 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +255 2 IRMA PEARSON IRMA.PEARSON@sakilacustomer.org 260 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +256 2 MABEL HOLLAND MABEL.HOLLAND@sakilacustomer.org 261 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +257 2 MARSHA DOUGLAS MARSHA.DOUGLAS@sakilacustomer.org 262 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +258 1 MYRTLE FLEMING MYRTLE.FLEMING@sakilacustomer.org 263 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +259 2 LENA JENSEN LENA.JENSEN@sakilacustomer.org 264 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +260 1 CHRISTY VARGAS CHRISTY.VARGAS@sakilacustomer.org 265 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +261 1 DEANNA BYRD DEANNA.BYRD@sakilacustomer.org 266 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +262 2 PATSY DAVIDSON PATSY.DAVIDSON@sakilacustomer.org 267 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +263 1 HILDA HOPKINS HILDA.HOPKINS@sakilacustomer.org 268 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +264 1 GWENDOLYN MAY GWENDOLYN.MAY@sakilacustomer.org 269 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +265 2 JENNIE TERRY JENNIE.TERRY@sakilacustomer.org 270 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +266 2 NORA HERRERA NORA.HERRERA@sakilacustomer.org 271 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +267 1 MARGIE WADE MARGIE.WADE@sakilacustomer.org 272 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +268 1 NINA SOTO NINA.SOTO@sakilacustomer.org 273 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +269 1 CASSANDRA WALTERS CASSANDRA.WALTERS@sakilacustomer.org 274 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +270 1 LEAH CURTIS LEAH.CURTIS@sakilacustomer.org 275 1 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +271 1 PENNY NEAL PENNY.NEAL@sakilacustomer.org 276 0 2006-02-14T22:04:36Z 2020-02-15T06:59:36Z +272 1 KAY CALDWELL KAY.CALDWELL@sakilacustomer.org 277 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +273 2 PRISCILLA LOWE PRISCILLA.LOWE@sakilacustomer.org 278 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +274 1 NAOMI JENNINGS NAOMI.JENNINGS@sakilacustomer.org 279 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +275 2 CAROLE BARNETT CAROLE.BARNETT@sakilacustomer.org 280 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +276 1 BRANDY GRAVES BRANDY.GRAVES@sakilacustomer.org 281 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +277 2 OLGA JIMENEZ OLGA.JIMENEZ@sakilacustomer.org 282 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +278 2 BILLIE HORTON BILLIE.HORTON@sakilacustomer.org 283 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +279 2 DIANNE SHELTON DIANNE.SHELTON@sakilacustomer.org 284 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +280 2 TRACEY BARRETT TRACEY.BARRETT@sakilacustomer.org 285 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +281 2 LEONA OBRIEN LEONA.OBRIEN@sakilacustomer.org 286 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +282 2 JENNY CASTRO JENNY.CASTRO@sakilacustomer.org 287 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +283 1 FELICIA SUTTON FELICIA.SUTTON@sakilacustomer.org 288 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +284 1 SONIA GREGORY SONIA.GREGORY@sakilacustomer.org 289 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +285 1 MIRIAM MCKINNEY MIRIAM.MCKINNEY@sakilacustomer.org 290 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +286 1 VELMA LUCAS VELMA.LUCAS@sakilacustomer.org 291 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +287 2 BECKY MILES BECKY.MILES@sakilacustomer.org 292 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +288 1 BOBBIE CRAIG BOBBIE.CRAIG@sakilacustomer.org 293 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +289 1 VIOLET RODRIQUEZ VIOLET.RODRIQUEZ@sakilacustomer.org 294 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +290 1 KRISTINA CHAMBERS KRISTINA.CHAMBERS@sakilacustomer.org 295 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +291 1 TONI HOLT TONI.HOLT@sakilacustomer.org 296 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +292 2 MISTY LAMBERT MISTY.LAMBERT@sakilacustomer.org 297 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +293 2 MAE FLETCHER MAE.FLETCHER@sakilacustomer.org 298 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +294 2 SHELLY WATTS SHELLY.WATTS@sakilacustomer.org 299 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +295 1 DAISY BATES DAISY.BATES@sakilacustomer.org 300 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +296 2 RAMONA HALE RAMONA.HALE@sakilacustomer.org 301 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +297 1 SHERRI RHODES SHERRI.RHODES@sakilacustomer.org 302 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +298 1 ERIKA PENA ERIKA.PENA@sakilacustomer.org 303 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +299 2 JAMES GANNON JAMES.GANNON@sakilacustomer.org 304 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +300 1 JOHN FARNSWORTH JOHN.FARNSWORTH@sakilacustomer.org 305 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +301 2 ROBERT BAUGHMAN ROBERT.BAUGHMAN@sakilacustomer.org 306 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +302 1 MICHAEL SILVERMAN MICHAEL.SILVERMAN@sakilacustomer.org 307 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +303 2 WILLIAM SATTERFIELD WILLIAM.SATTERFIELD@sakilacustomer.org 308 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +304 2 DAVID ROYAL DAVID.ROYAL@sakilacustomer.org 309 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +305 1 RICHARD MCCRARY RICHARD.MCCRARY@sakilacustomer.org 310 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +306 1 CHARLES KOWALSKI CHARLES.KOWALSKI@sakilacustomer.org 311 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +307 2 JOSEPH JOY JOSEPH.JOY@sakilacustomer.org 312 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +308 1 THOMAS GRIGSBY THOMAS.GRIGSBY@sakilacustomer.org 313 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +309 1 CHRISTOPHER GRECO CHRISTOPHER.GRECO@sakilacustomer.org 314 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +310 2 DANIEL CABRAL DANIEL.CABRAL@sakilacustomer.org 315 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +311 2 PAUL TROUT PAUL.TROUT@sakilacustomer.org 316 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +312 2 MARK RINEHART MARK.RINEHART@sakilacustomer.org 317 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +313 2 DONALD MAHON DONALD.MAHON@sakilacustomer.org 318 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +314 1 GEORGE LINTON GEORGE.LINTON@sakilacustomer.org 319 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +315 2 KENNETH GOODEN KENNETH.GOODEN@sakilacustomer.org 320 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +316 1 STEVEN CURLEY STEVEN.CURLEY@sakilacustomer.org 321 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +317 2 EDWARD BAUGH EDWARD.BAUGH@sakilacustomer.org 322 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +318 1 BRIAN WYMAN BRIAN.WYMAN@sakilacustomer.org 323 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +319 2 RONALD WEINER RONALD.WEINER@sakilacustomer.org 324 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +320 2 ANTHONY SCHWAB ANTHONY.SCHWAB@sakilacustomer.org 325 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +321 1 KEVIN SCHULER KEVIN.SCHULER@sakilacustomer.org 326 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +322 1 JASON MORRISSEY JASON.MORRISSEY@sakilacustomer.org 327 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +323 2 MATTHEW MAHAN MATTHEW.MAHAN@sakilacustomer.org 328 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +324 2 GARY COY GARY.COY@sakilacustomer.org 329 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +325 1 TIMOTHY BUNN TIMOTHY.BUNN@sakilacustomer.org 330 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +326 1 JOSE ANDREW JOSE.ANDREW@sakilacustomer.org 331 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +327 2 LARRY THRASHER LARRY.THRASHER@sakilacustomer.org 332 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +328 2 JEFFREY SPEAR JEFFREY.SPEAR@sakilacustomer.org 333 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +329 2 FRANK WAGGONER FRANK.WAGGONER@sakilacustomer.org 334 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +330 1 SCOTT SHELLEY SCOTT.SHELLEY@sakilacustomer.org 335 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +331 1 ERIC ROBERT ERIC.ROBERT@sakilacustomer.org 336 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +332 1 STEPHEN QUALLS STEPHEN.QUALLS@sakilacustomer.org 337 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +333 2 ANDREW PURDY ANDREW.PURDY@sakilacustomer.org 338 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +334 2 RAYMOND MCWHORTER RAYMOND.MCWHORTER@sakilacustomer.org 339 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +335 1 GREGORY MAULDIN GREGORY.MAULDIN@sakilacustomer.org 340 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +336 1 JOSHUA MARK JOSHUA.MARK@sakilacustomer.org 341 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +337 1 JERRY JORDON JERRY.JORDON@sakilacustomer.org 342 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +338 1 DENNIS GILMAN DENNIS.GILMAN@sakilacustomer.org 343 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +339 2 WALTER PERRYMAN WALTER.PERRYMAN@sakilacustomer.org 344 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +340 1 PATRICK NEWSOM PATRICK.NEWSOM@sakilacustomer.org 345 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +341 1 PETER MENARD PETER.MENARD@sakilacustomer.org 346 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +342 1 HAROLD MARTINO HAROLD.MARTINO@sakilacustomer.org 347 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +343 1 DOUGLAS GRAF DOUGLAS.GRAF@sakilacustomer.org 348 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +344 1 HENRY BILLINGSLEY HENRY.BILLINGSLEY@sakilacustomer.org 349 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +345 1 CARL ARTIS CARL.ARTIS@sakilacustomer.org 350 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +346 1 ARTHUR SIMPKINS ARTHUR.SIMPKINS@sakilacustomer.org 351 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +347 2 RYAN SALISBURY RYAN.SALISBURY@sakilacustomer.org 352 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +348 2 ROGER QUINTANILLA ROGER.QUINTANILLA@sakilacustomer.org 353 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +349 2 JOE GILLILAND JOE.GILLILAND@sakilacustomer.org 354 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +350 1 JUAN FRALEY JUAN.FRALEY@sakilacustomer.org 355 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +351 1 JACK FOUST JACK.FOUST@sakilacustomer.org 356 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +352 1 ALBERT CROUSE ALBERT.CROUSE@sakilacustomer.org 357 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +353 1 JONATHAN SCARBOROUGH JONATHAN.SCARBOROUGH@sakilacustomer.org 358 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +354 2 JUSTIN NGO JUSTIN.NGO@sakilacustomer.org 359 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +355 2 TERRY GRISSOM TERRY.GRISSOM@sakilacustomer.org 360 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +356 2 GERALD FULTZ GERALD.FULTZ@sakilacustomer.org 361 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +357 1 KEITH RICO KEITH.RICO@sakilacustomer.org 362 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +358 2 SAMUEL MARLOW SAMUEL.MARLOW@sakilacustomer.org 363 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +359 2 WILLIE MARKHAM WILLIE.MARKHAM@sakilacustomer.org 364 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +360 2 RALPH MADRIGAL RALPH.MADRIGAL@sakilacustomer.org 365 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +361 2 LAWRENCE LAWTON LAWRENCE.LAWTON@sakilacustomer.org 366 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +362 1 NICHOLAS BARFIELD NICHOLAS.BARFIELD@sakilacustomer.org 367 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +363 2 ROY WHITING ROY.WHITING@sakilacustomer.org 368 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +364 1 BENJAMIN VARNEY BENJAMIN.VARNEY@sakilacustomer.org 369 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +365 2 BRUCE SCHWARZ BRUCE.SCHWARZ@sakilacustomer.org 370 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +366 1 BRANDON HUEY BRANDON.HUEY@sakilacustomer.org 371 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +367 1 ADAM GOOCH ADAM.GOOCH@sakilacustomer.org 372 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +368 1 HARRY ARCE HARRY.ARCE@sakilacustomer.org 373 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +369 2 FRED WHEAT FRED.WHEAT@sakilacustomer.org 374 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +370 2 WAYNE TRUONG WAYNE.TRUONG@sakilacustomer.org 375 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +371 1 BILLY POULIN BILLY.POULIN@sakilacustomer.org 376 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +372 2 STEVE MACKENZIE STEVE.MACKENZIE@sakilacustomer.org 377 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +373 1 LOUIS LEONE LOUIS.LEONE@sakilacustomer.org 378 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +374 2 JEREMY HURTADO JEREMY.HURTADO@sakilacustomer.org 379 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +375 2 AARON SELBY AARON.SELBY@sakilacustomer.org 380 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +376 1 RANDY GAITHER RANDY.GAITHER@sakilacustomer.org 381 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +377 1 HOWARD FORTNER HOWARD.FORTNER@sakilacustomer.org 382 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +378 1 EUGENE CULPEPPER EUGENE.CULPEPPER@sakilacustomer.org 383 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +379 1 CARLOS COUGHLIN CARLOS.COUGHLIN@sakilacustomer.org 384 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +380 1 RUSSELL BRINSON RUSSELL.BRINSON@sakilacustomer.org 385 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +381 2 BOBBY BOUDREAU BOBBY.BOUDREAU@sakilacustomer.org 386 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +382 2 VICTOR BARKLEY VICTOR.BARKLEY@sakilacustomer.org 387 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +383 1 MARTIN BALES MARTIN.BALES@sakilacustomer.org 388 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +384 2 ERNEST STEPP ERNEST.STEPP@sakilacustomer.org 389 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +385 1 PHILLIP HOLM PHILLIP.HOLM@sakilacustomer.org 390 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +386 1 TODD TAN TODD.TAN@sakilacustomer.org 391 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +387 2 JESSE SCHILLING JESSE.SCHILLING@sakilacustomer.org 392 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +388 2 CRAIG MORRELL CRAIG.MORRELL@sakilacustomer.org 393 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +389 1 ALAN KAHN ALAN.KAHN@sakilacustomer.org 394 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +390 1 SHAWN HEATON SHAWN.HEATON@sakilacustomer.org 395 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +391 1 CLARENCE GAMEZ CLARENCE.GAMEZ@sakilacustomer.org 396 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +392 2 SEAN DOUGLASS SEAN.DOUGLASS@sakilacustomer.org 397 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +393 1 PHILIP CAUSEY PHILIP.CAUSEY@sakilacustomer.org 398 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +394 2 CHRIS BROTHERS CHRIS.BROTHERS@sakilacustomer.org 399 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +395 2 JOHNNY TURPIN JOHNNY.TURPIN@sakilacustomer.org 400 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +396 1 EARL SHANKS EARL.SHANKS@sakilacustomer.org 401 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +397 1 JIMMY SCHRADER JIMMY.SCHRADER@sakilacustomer.org 402 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +398 1 ANTONIO MEEK ANTONIO.MEEK@sakilacustomer.org 403 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +399 1 DANNY ISOM DANNY.ISOM@sakilacustomer.org 404 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +400 2 BRYAN HARDISON BRYAN.HARDISON@sakilacustomer.org 405 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +401 2 TONY CARRANZA TONY.CARRANZA@sakilacustomer.org 406 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +402 1 LUIS YANEZ LUIS.YANEZ@sakilacustomer.org 407 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +403 1 MIKE WAY MIKE.WAY@sakilacustomer.org 408 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +404 2 STANLEY SCROGGINS STANLEY.SCROGGINS@sakilacustomer.org 409 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +405 1 LEONARD SCHOFIELD LEONARD.SCHOFIELD@sakilacustomer.org 410 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +406 1 NATHAN RUNYON NATHAN.RUNYON@sakilacustomer.org 411 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +407 1 DALE RATCLIFF DALE.RATCLIFF@sakilacustomer.org 412 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +408 1 MANUEL MURRELL MANUEL.MURRELL@sakilacustomer.org 413 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +409 2 RODNEY MOELLER RODNEY.MOELLER@sakilacustomer.org 414 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +410 2 CURTIS IRBY CURTIS.IRBY@sakilacustomer.org 415 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +411 1 NORMAN CURRIER NORMAN.CURRIER@sakilacustomer.org 416 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +412 2 ALLEN BUTTERFIELD ALLEN.BUTTERFIELD@sakilacustomer.org 417 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +413 2 MARVIN YEE MARVIN.YEE@sakilacustomer.org 418 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +414 1 VINCENT RALSTON VINCENT.RALSTON@sakilacustomer.org 419 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +415 1 GLENN PULLEN GLENN.PULLEN@sakilacustomer.org 420 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +416 2 JEFFERY PINSON JEFFERY.PINSON@sakilacustomer.org 421 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +417 1 TRAVIS ESTEP TRAVIS.ESTEP@sakilacustomer.org 422 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +418 2 JEFF EAST JEFF.EAST@sakilacustomer.org 423 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +419 1 CHAD CARBONE CHAD.CARBONE@sakilacustomer.org 424 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +420 1 JACOB LANCE JACOB.LANCE@sakilacustomer.org 425 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +421 1 LEE HAWKS LEE.HAWKS@sakilacustomer.org 426 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +422 1 MELVIN ELLINGTON MELVIN.ELLINGTON@sakilacustomer.org 427 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +423 2 ALFRED CASILLAS ALFRED.CASILLAS@sakilacustomer.org 428 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +424 2 KYLE SPURLOCK KYLE.SPURLOCK@sakilacustomer.org 429 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +425 2 FRANCIS SIKES FRANCIS.SIKES@sakilacustomer.org 430 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +426 1 BRADLEY MOTLEY BRADLEY.MOTLEY@sakilacustomer.org 431 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +427 2 JESUS MCCARTNEY JESUS.MCCARTNEY@sakilacustomer.org 432 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +428 2 HERBERT KRUGER HERBERT.KRUGER@sakilacustomer.org 433 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +429 2 FREDERICK ISBELL FREDERICK.ISBELL@sakilacustomer.org 434 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +430 1 RAY HOULE RAY.HOULE@sakilacustomer.org 435 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +431 2 JOEL FRANCISCO JOEL.FRANCISCO@sakilacustomer.org 436 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +432 1 EDWIN BURK EDWIN.BURK@sakilacustomer.org 437 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +433 1 DON BONE DON.BONE@sakilacustomer.org 438 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +434 1 EDDIE TOMLIN EDDIE.TOMLIN@sakilacustomer.org 439 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +435 2 RICKY SHELBY RICKY.SHELBY@sakilacustomer.org 440 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +436 1 TROY QUIGLEY TROY.QUIGLEY@sakilacustomer.org 441 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +437 2 RANDALL NEUMANN RANDALL.NEUMANN@sakilacustomer.org 442 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +438 1 BARRY LOVELACE BARRY.LOVELACE@sakilacustomer.org 443 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +439 2 ALEXANDER FENNELL ALEXANDER.FENNELL@sakilacustomer.org 444 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +440 1 BERNARD COLBY BERNARD.COLBY@sakilacustomer.org 445 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +441 1 MARIO CHEATHAM MARIO.CHEATHAM@sakilacustomer.org 446 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +442 1 LEROY BUSTAMANTE LEROY.BUSTAMANTE@sakilacustomer.org 447 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +443 2 FRANCISCO SKIDMORE FRANCISCO.SKIDMORE@sakilacustomer.org 448 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +444 2 MARCUS HIDALGO MARCUS.HIDALGO@sakilacustomer.org 449 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +445 1 MICHEAL FORMAN MICHEAL.FORMAN@sakilacustomer.org 450 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +446 2 THEODORE CULP THEODORE.CULP@sakilacustomer.org 451 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +447 1 CLIFFORD BOWENS CLIFFORD.BOWENS@sakilacustomer.org 452 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +448 1 MIGUEL BETANCOURT MIGUEL.BETANCOURT@sakilacustomer.org 453 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +449 2 OSCAR AQUINO OSCAR.AQUINO@sakilacustomer.org 454 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +450 1 JAY ROBB JAY.ROBB@sakilacustomer.org 455 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +451 1 JIM REA JIM.REA@sakilacustomer.org 456 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +452 1 TOM MILNER TOM.MILNER@sakilacustomer.org 457 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +453 1 CALVIN MARTEL CALVIN.MARTEL@sakilacustomer.org 458 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +454 2 ALEX GRESHAM ALEX.GRESHAM@sakilacustomer.org 459 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +455 2 JON WILES JON.WILES@sakilacustomer.org 460 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +456 2 RONNIE RICKETTS RONNIE.RICKETTS@sakilacustomer.org 461 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +457 2 BILL GAVIN BILL.GAVIN@sakilacustomer.org 462 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +458 1 LLOYD DOWD LLOYD.DOWD@sakilacustomer.org 463 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +459 1 TOMMY COLLAZO TOMMY.COLLAZO@sakilacustomer.org 464 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +460 1 LEON BOSTIC LEON.BOSTIC@sakilacustomer.org 465 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +461 1 DEREK BLAKELY DEREK.BLAKELY@sakilacustomer.org 466 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +462 2 WARREN SHERROD WARREN.SHERROD@sakilacustomer.org 467 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +463 2 DARRELL POWER DARRELL.POWER@sakilacustomer.org 468 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +464 1 JEROME KENYON JEROME.KENYON@sakilacustomer.org 469 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +465 1 FLOYD GANDY FLOYD.GANDY@sakilacustomer.org 470 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +466 1 LEO EBERT LEO.EBERT@sakilacustomer.org 471 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +467 2 ALVIN DELOACH ALVIN.DELOACH@sakilacustomer.org 472 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +468 1 TIM CARY TIM.CARY@sakilacustomer.org 473 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +469 2 WESLEY BULL WESLEY.BULL@sakilacustomer.org 474 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +470 1 GORDON ALLARD GORDON.ALLARD@sakilacustomer.org 475 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +471 1 DEAN SAUER DEAN.SAUER@sakilacustomer.org 476 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +472 1 GREG ROBINS GREG.ROBINS@sakilacustomer.org 477 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +473 2 JORGE OLIVARES JORGE.OLIVARES@sakilacustomer.org 478 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +474 2 DUSTIN GILLETTE DUSTIN.GILLETTE@sakilacustomer.org 479 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +475 2 PEDRO CHESTNUT PEDRO.CHESTNUT@sakilacustomer.org 480 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +476 1 DERRICK BOURQUE DERRICK.BOURQUE@sakilacustomer.org 481 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +477 1 DAN PAINE DAN.PAINE@sakilacustomer.org 482 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +478 1 LEWIS LYMAN LEWIS.LYMAN@sakilacustomer.org 483 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +479 1 ZACHARY HITE ZACHARY.HITE@sakilacustomer.org 484 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +480 1 COREY HAUSER COREY.HAUSER@sakilacustomer.org 485 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +481 1 HERMAN DEVORE HERMAN.DEVORE@sakilacustomer.org 486 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +482 1 MAURICE CRAWLEY MAURICE.CRAWLEY@sakilacustomer.org 487 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +483 2 VERNON CHAPA VERNON.CHAPA@sakilacustomer.org 488 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +484 1 ROBERTO VU ROBERTO.VU@sakilacustomer.org 489 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +485 1 CLYDE TOBIAS CLYDE.TOBIAS@sakilacustomer.org 490 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +486 1 GLEN TALBERT GLEN.TALBERT@sakilacustomer.org 491 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +487 2 HECTOR POINDEXTER HECTOR.POINDEXTER@sakilacustomer.org 492 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +488 2 SHANE MILLARD SHANE.MILLARD@sakilacustomer.org 493 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +489 1 RICARDO MEADOR RICARDO.MEADOR@sakilacustomer.org 494 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +490 1 SAM MCDUFFIE SAM.MCDUFFIE@sakilacustomer.org 495 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +491 2 RICK MATTOX RICK.MATTOX@sakilacustomer.org 496 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +492 2 LESTER KRAUS LESTER.KRAUS@sakilacustomer.org 497 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +493 1 BRENT HARKINS BRENT.HARKINS@sakilacustomer.org 498 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +494 2 RAMON CHOATE RAMON.CHOATE@sakilacustomer.org 499 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +495 2 CHARLIE BESS CHARLIE.BESS@sakilacustomer.org 500 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +496 2 TYLER WREN TYLER.WREN@sakilacustomer.org 501 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +497 2 GILBERT SLEDGE GILBERT.SLEDGE@sakilacustomer.org 502 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +498 1 GENE SANBORN GENE.SANBORN@sakilacustomer.org 503 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +499 2 MARC OUTLAW MARC.OUTLAW@sakilacustomer.org 504 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +500 1 REGINALD KINDER REGINALD.KINDER@sakilacustomer.org 505 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +501 1 RUBEN GEARY RUBEN.GEARY@sakilacustomer.org 506 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +502 1 BRETT CORNWELL BRETT.CORNWELL@sakilacustomer.org 507 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +503 1 ANGEL BARCLAY ANGEL.BARCLAY@sakilacustomer.org 508 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +504 1 NATHANIEL ADAM NATHANIEL.ADAM@sakilacustomer.org 509 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +505 1 RAFAEL ABNEY RAFAEL.ABNEY@sakilacustomer.org 510 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +506 2 LESLIE SEWARD LESLIE.SEWARD@sakilacustomer.org 511 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +507 2 EDGAR RHOADS EDGAR.RHOADS@sakilacustomer.org 512 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +508 2 MILTON HOWLAND MILTON.HOWLAND@sakilacustomer.org 513 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +509 1 RAUL FORTIER RAUL.FORTIER@sakilacustomer.org 514 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +510 2 BEN EASTER BEN.EASTER@sakilacustomer.org 515 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +511 1 CHESTER BENNER CHESTER.BENNER@sakilacustomer.org 516 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +512 1 CECIL VINES CECIL.VINES@sakilacustomer.org 517 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +513 2 DUANE TUBBS DUANE.TUBBS@sakilacustomer.org 519 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +514 2 FRANKLIN TROUTMAN FRANKLIN.TROUTMAN@sakilacustomer.org 520 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +515 1 ANDRE RAPP ANDRE.RAPP@sakilacustomer.org 521 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +516 2 ELMER NOE ELMER.NOE@sakilacustomer.org 522 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +517 2 BRAD MCCURDY BRAD.MCCURDY@sakilacustomer.org 523 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +518 1 GABRIEL HARDER GABRIEL.HARDER@sakilacustomer.org 524 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +519 2 RON DELUCA RON.DELUCA@sakilacustomer.org 525 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +520 2 MITCHELL WESTMORELAND MITCHELL.WESTMORELAND@sakilacustomer.org 526 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +521 2 ROLAND SOUTH ROLAND.SOUTH@sakilacustomer.org 527 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +522 2 ARNOLD HAVENS ARNOLD.HAVENS@sakilacustomer.org 528 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +523 1 HARVEY GUAJARDO HARVEY.GUAJARDO@sakilacustomer.org 529 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +524 1 JARED ELY JARED.ELY@sakilacustomer.org 530 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +525 2 ADRIAN CLARY ADRIAN.CLARY@sakilacustomer.org 531 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +526 2 KARL SEAL KARL.SEAL@sakilacustomer.org 532 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +527 1 CORY MEEHAN CORY.MEEHAN@sakilacustomer.org 533 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +528 1 CLAUDE HERZOG CLAUDE.HERZOG@sakilacustomer.org 534 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +529 2 ERIK GUILLEN ERIK.GUILLEN@sakilacustomer.org 535 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +530 2 DARRYL ASHCRAFT DARRYL.ASHCRAFT@sakilacustomer.org 536 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +531 2 JAMIE WAUGH JAMIE.WAUGH@sakilacustomer.org 537 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +532 2 NEIL RENNER NEIL.RENNER@sakilacustomer.org 538 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +533 1 JESSIE MILAM JESSIE.MILAM@sakilacustomer.org 539 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +534 1 CHRISTIAN JUNG CHRISTIAN.JUNG@sakilacustomer.org 540 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +535 1 JAVIER ELROD JAVIER.ELROD@sakilacustomer.org 541 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +536 2 FERNANDO CHURCHILL FERNANDO.CHURCHILL@sakilacustomer.org 542 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +537 2 CLINTON BUFORD CLINTON.BUFORD@sakilacustomer.org 543 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +538 2 TED BREAUX TED.BREAUX@sakilacustomer.org 544 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +539 1 MATHEW BOLIN MATHEW.BOLIN@sakilacustomer.org 545 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +540 1 TYRONE ASHER TYRONE.ASHER@sakilacustomer.org 546 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +541 2 DARREN WINDHAM DARREN.WINDHAM@sakilacustomer.org 547 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +542 2 LONNIE TIRADO LONNIE.TIRADO@sakilacustomer.org 548 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +543 1 LANCE PEMBERTON LANCE.PEMBERTON@sakilacustomer.org 549 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +544 2 CODY NOLEN CODY.NOLEN@sakilacustomer.org 550 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +545 2 JULIO NOLAND JULIO.NOLAND@sakilacustomer.org 551 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +546 1 KELLY KNOTT KELLY.KNOTT@sakilacustomer.org 552 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +547 1 KURT EMMONS KURT.EMMONS@sakilacustomer.org 553 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +548 1 ALLAN CORNISH ALLAN.CORNISH@sakilacustomer.org 554 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +549 1 NELSON CHRISTENSON NELSON.CHRISTENSON@sakilacustomer.org 555 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +550 2 GUY BROWNLEE GUY.BROWNLEE@sakilacustomer.org 556 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +551 2 CLAYTON BARBEE CLAYTON.BARBEE@sakilacustomer.org 557 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +552 2 HUGH WALDROP HUGH.WALDROP@sakilacustomer.org 558 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +553 1 MAX PITT MAX.PITT@sakilacustomer.org 559 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +554 1 DWAYNE OLVERA DWAYNE.OLVERA@sakilacustomer.org 560 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +555 1 DWIGHT LOMBARDI DWIGHT.LOMBARDI@sakilacustomer.org 561 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +556 2 ARMANDO GRUBER ARMANDO.GRUBER@sakilacustomer.org 562 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +557 1 FELIX GAFFNEY FELIX.GAFFNEY@sakilacustomer.org 563 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +558 1 JIMMIE EGGLESTON JIMMIE.EGGLESTON@sakilacustomer.org 564 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +559 2 EVERETT BANDA EVERETT.BANDA@sakilacustomer.org 565 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +560 1 JORDAN ARCHULETA JORDAN.ARCHULETA@sakilacustomer.org 566 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +561 2 IAN STILL IAN.STILL@sakilacustomer.org 567 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +562 1 WALLACE SLONE WALLACE.SLONE@sakilacustomer.org 568 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +563 2 KEN PREWITT KEN.PREWITT@sakilacustomer.org 569 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +564 2 BOB PFEIFFER BOB.PFEIFFER@sakilacustomer.org 570 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +565 2 JAIME NETTLES JAIME.NETTLES@sakilacustomer.org 571 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +566 1 CASEY MENA CASEY.MENA@sakilacustomer.org 572 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +567 2 ALFREDO MCADAMS ALFREDO.MCADAMS@sakilacustomer.org 573 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +568 2 ALBERTO HENNING ALBERTO.HENNING@sakilacustomer.org 574 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +569 2 DAVE GARDINER DAVE.GARDINER@sakilacustomer.org 575 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +570 2 IVAN CROMWELL IVAN.CROMWELL@sakilacustomer.org 576 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +571 2 JOHNNIE CHISHOLM JOHNNIE.CHISHOLM@sakilacustomer.org 577 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +572 1 SIDNEY BURLESON SIDNEY.BURLESON@sakilacustomer.org 578 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +573 1 BYRON BOX BYRON.BOX@sakilacustomer.org 579 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +574 2 JULIAN VEST JULIAN.VEST@sakilacustomer.org 580 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +575 2 ISAAC OGLESBY ISAAC.OGLESBY@sakilacustomer.org 581 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +576 2 MORRIS MCCARTER MORRIS.MCCARTER@sakilacustomer.org 582 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +577 2 CLIFTON MALCOLM CLIFTON.MALCOLM@sakilacustomer.org 583 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +578 2 WILLARD LUMPKIN WILLARD.LUMPKIN@sakilacustomer.org 584 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +579 2 DARYL LARUE DARYL.LARUE@sakilacustomer.org 585 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +580 1 ROSS GREY ROSS.GREY@sakilacustomer.org 586 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +581 1 VIRGIL WOFFORD VIRGIL.WOFFORD@sakilacustomer.org 587 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +582 2 ANDY VANHORN ANDY.VANHORN@sakilacustomer.org 588 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +583 1 MARSHALL THORN MARSHALL.THORN@sakilacustomer.org 589 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +584 2 SALVADOR TEEL SALVADOR.TEEL@sakilacustomer.org 590 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +585 1 PERRY SWAFFORD PERRY.SWAFFORD@sakilacustomer.org 591 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +586 1 KIRK STCLAIR KIRK.STCLAIR@sakilacustomer.org 592 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +587 1 SERGIO STANFIELD SERGIO.STANFIELD@sakilacustomer.org 593 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +588 1 MARION OCAMPO MARION.OCAMPO@sakilacustomer.org 594 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +589 1 TRACY HERRMANN TRACY.HERRMANN@sakilacustomer.org 595 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +590 2 SETH HANNON SETH.HANNON@sakilacustomer.org 596 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +591 1 KENT ARSENAULT KENT.ARSENAULT@sakilacustomer.org 597 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +592 1 TERRANCE ROUSH TERRANCE.ROUSH@sakilacustomer.org 598 0 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +593 2 RENE MCALISTER RENE.MCALISTER@sakilacustomer.org 599 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +594 1 EDUARDO HIATT EDUARDO.HIATT@sakilacustomer.org 600 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +595 1 TERRENCE GUNDERSON TERRENCE.GUNDERSON@sakilacustomer.org 601 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +596 1 ENRIQUE FORSYTHE ENRIQUE.FORSYTHE@sakilacustomer.org 602 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +597 1 FREDDIE DUGGAN FREDDIE.DUGGAN@sakilacustomer.org 603 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +598 1 WADE DELVALLE WADE.DELVALLE@sakilacustomer.org 604 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z +599 2 AUSTIN CINTRON AUSTIN.CINTRON@sakilacustomer.org 605 1 2006-02-14T22:04:37Z 2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-tsv/film.tsv b/drivers/csv/testdata/sakila-tsv/film.tsv new file mode 100644 index 00000000..32a7d36e --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/film.tsv @@ -0,0 +1,1001 @@ +film_id title description release_year language_id original_language_id rental_duration rental_rate length replacement_cost rating special_features last_update +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Trailers 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Deleted Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Trailers,Commentaries 2020-02-15T06:59:28Z +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 Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:28Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:28Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z +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 Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Trailers,Behind the Scenes 2020-02-15T06:59:29Z +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 Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Deleted Scenes 2020-02-15T06:59:29Z +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 Trailers,Commentaries,Behind the Scenes 2020-02-15T06:59:29Z diff --git a/drivers/csv/testdata/sakila-tsv/film_actor.tsv b/drivers/csv/testdata/sakila-tsv/film_actor.tsv new file mode 100644 index 00000000..d80705fa --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/film_actor.tsv @@ -0,0 +1,5463 @@ +actor_id film_id last_update +1 1 2020-02-15T06:59:32Z +1 23 2020-02-15T06:59:32Z +1 25 2020-02-15T06:59:32Z +1 106 2020-02-15T06:59:32Z +1 140 2020-02-15T06:59:32Z +1 166 2020-02-15T06:59:32Z +1 277 2020-02-15T06:59:32Z +1 361 2020-02-15T06:59:32Z +1 438 2020-02-15T06:59:32Z +1 499 2020-02-15T06:59:32Z +1 506 2020-02-15T06:59:32Z +1 509 2020-02-15T06:59:32Z +1 605 2020-02-15T06:59:32Z +1 635 2020-02-15T06:59:32Z +1 749 2020-02-15T06:59:32Z +1 832 2020-02-15T06:59:32Z +1 939 2020-02-15T06:59:32Z +1 970 2020-02-15T06:59:32Z +1 980 2020-02-15T06:59:32Z +2 3 2020-02-15T06:59:32Z +2 31 2020-02-15T06:59:32Z +2 47 2020-02-15T06:59:32Z +2 105 2020-02-15T06:59:32Z +2 132 2020-02-15T06:59:32Z +2 145 2020-02-15T06:59:32Z +2 226 2020-02-15T06:59:32Z +2 249 2020-02-15T06:59:32Z +2 314 2020-02-15T06:59:32Z +2 321 2020-02-15T06:59:32Z +2 357 2020-02-15T06:59:32Z +2 369 2020-02-15T06:59:32Z +2 399 2020-02-15T06:59:32Z +2 458 2020-02-15T06:59:32Z +2 481 2020-02-15T06:59:32Z +2 485 2020-02-15T06:59:32Z +2 518 2020-02-15T06:59:32Z +2 540 2020-02-15T06:59:32Z +2 550 2020-02-15T06:59:32Z +2 555 2020-02-15T06:59:32Z +2 561 2020-02-15T06:59:32Z +2 742 2020-02-15T06:59:32Z +2 754 2020-02-15T06:59:32Z +2 811 2020-02-15T06:59:32Z +2 958 2020-02-15T06:59:32Z +3 17 2020-02-15T06:59:32Z +3 40 2020-02-15T06:59:32Z +3 42 2020-02-15T06:59:32Z +3 87 2020-02-15T06:59:32Z +3 111 2020-02-15T06:59:32Z +3 185 2020-02-15T06:59:32Z +3 289 2020-02-15T06:59:32Z +3 329 2020-02-15T06:59:32Z +3 336 2020-02-15T06:59:32Z +3 341 2020-02-15T06:59:32Z +3 393 2020-02-15T06:59:32Z +3 441 2020-02-15T06:59:32Z +3 453 2020-02-15T06:59:32Z +3 480 2020-02-15T06:59:32Z +3 539 2020-02-15T06:59:32Z +3 618 2020-02-15T06:59:32Z +3 685 2020-02-15T06:59:32Z +3 827 2020-02-15T06:59:32Z +3 966 2020-02-15T06:59:32Z +3 967 2020-02-15T06:59:32Z +3 971 2020-02-15T06:59:32Z +3 996 2020-02-15T06:59:32Z +4 23 2020-02-15T06:59:32Z +4 25 2020-02-15T06:59:32Z +4 56 2020-02-15T06:59:32Z +4 62 2020-02-15T06:59:32Z +4 79 2020-02-15T06:59:32Z +4 87 2020-02-15T06:59:32Z +4 355 2020-02-15T06:59:32Z +4 379 2020-02-15T06:59:32Z +4 398 2020-02-15T06:59:32Z +4 463 2020-02-15T06:59:32Z +4 490 2020-02-15T06:59:32Z +4 616 2020-02-15T06:59:32Z +4 635 2020-02-15T06:59:32Z +4 691 2020-02-15T06:59:32Z +4 712 2020-02-15T06:59:32Z +4 714 2020-02-15T06:59:32Z +4 721 2020-02-15T06:59:32Z +4 798 2020-02-15T06:59:32Z +4 832 2020-02-15T06:59:32Z +4 858 2020-02-15T06:59:32Z +4 909 2020-02-15T06:59:32Z +4 924 2020-02-15T06:59:32Z +5 19 2020-02-15T06:59:32Z +5 54 2020-02-15T06:59:32Z +5 85 2020-02-15T06:59:32Z +5 146 2020-02-15T06:59:32Z +5 171 2020-02-15T06:59:32Z +5 172 2020-02-15T06:59:32Z +5 202 2020-02-15T06:59:32Z +5 203 2020-02-15T06:59:32Z +5 286 2020-02-15T06:59:32Z +5 288 2020-02-15T06:59:32Z +5 316 2020-02-15T06:59:32Z +5 340 2020-02-15T06:59:32Z +5 369 2020-02-15T06:59:32Z +5 375 2020-02-15T06:59:32Z +5 383 2020-02-15T06:59:32Z +5 392 2020-02-15T06:59:32Z +5 411 2020-02-15T06:59:32Z +5 503 2020-02-15T06:59:32Z +5 535 2020-02-15T06:59:32Z +5 571 2020-02-15T06:59:32Z +5 650 2020-02-15T06:59:32Z +5 665 2020-02-15T06:59:32Z +5 687 2020-02-15T06:59:32Z +5 730 2020-02-15T06:59:32Z +5 732 2020-02-15T06:59:32Z +5 811 2020-02-15T06:59:32Z +5 817 2020-02-15T06:59:32Z +5 841 2020-02-15T06:59:32Z +5 865 2020-02-15T06:59:32Z +6 29 2020-02-15T06:59:32Z +6 53 2020-02-15T06:59:32Z +6 60 2020-02-15T06:59:32Z +6 70 2020-02-15T06:59:32Z +6 112 2020-02-15T06:59:32Z +6 164 2020-02-15T06:59:32Z +6 165 2020-02-15T06:59:32Z +6 193 2020-02-15T06:59:32Z +6 256 2020-02-15T06:59:32Z +6 451 2020-02-15T06:59:32Z +6 503 2020-02-15T06:59:32Z +6 509 2020-02-15T06:59:32Z +6 517 2020-02-15T06:59:32Z +6 519 2020-02-15T06:59:32Z +6 605 2020-02-15T06:59:32Z +6 692 2020-02-15T06:59:32Z +6 826 2020-02-15T06:59:32Z +6 892 2020-02-15T06:59:32Z +6 902 2020-02-15T06:59:32Z +6 994 2020-02-15T06:59:32Z +7 25 2020-02-15T06:59:32Z +7 27 2020-02-15T06:59:32Z +7 35 2020-02-15T06:59:32Z +7 67 2020-02-15T06:59:32Z +7 96 2020-02-15T06:59:32Z +7 170 2020-02-15T06:59:32Z +7 173 2020-02-15T06:59:32Z +7 217 2020-02-15T06:59:32Z +7 218 2020-02-15T06:59:32Z +7 225 2020-02-15T06:59:32Z +7 292 2020-02-15T06:59:32Z +7 351 2020-02-15T06:59:32Z +7 414 2020-02-15T06:59:32Z +7 463 2020-02-15T06:59:32Z +7 554 2020-02-15T06:59:32Z +7 618 2020-02-15T06:59:32Z +7 633 2020-02-15T06:59:32Z +7 637 2020-02-15T06:59:32Z +7 691 2020-02-15T06:59:32Z +7 758 2020-02-15T06:59:32Z +7 766 2020-02-15T06:59:32Z +7 770 2020-02-15T06:59:32Z +7 805 2020-02-15T06:59:32Z +7 806 2020-02-15T06:59:32Z +7 846 2020-02-15T06:59:32Z +7 900 2020-02-15T06:59:32Z +7 901 2020-02-15T06:59:32Z +7 910 2020-02-15T06:59:32Z +7 957 2020-02-15T06:59:32Z +7 959 2020-02-15T06:59:32Z +8 47 2020-02-15T06:59:32Z +8 115 2020-02-15T06:59:32Z +8 158 2020-02-15T06:59:32Z +8 179 2020-02-15T06:59:32Z +8 195 2020-02-15T06:59:32Z +8 205 2020-02-15T06:59:32Z +8 255 2020-02-15T06:59:32Z +8 263 2020-02-15T06:59:32Z +8 321 2020-02-15T06:59:32Z +8 396 2020-02-15T06:59:32Z +8 458 2020-02-15T06:59:32Z +8 523 2020-02-15T06:59:32Z +8 532 2020-02-15T06:59:32Z +8 554 2020-02-15T06:59:32Z +8 752 2020-02-15T06:59:32Z +8 769 2020-02-15T06:59:32Z +8 771 2020-02-15T06:59:32Z +8 859 2020-02-15T06:59:32Z +8 895 2020-02-15T06:59:32Z +8 936 2020-02-15T06:59:32Z +9 30 2020-02-15T06:59:32Z +9 74 2020-02-15T06:59:32Z +9 147 2020-02-15T06:59:32Z +9 148 2020-02-15T06:59:32Z +9 191 2020-02-15T06:59:32Z +9 200 2020-02-15T06:59:32Z +9 204 2020-02-15T06:59:32Z +9 434 2020-02-15T06:59:32Z +9 510 2020-02-15T06:59:32Z +9 514 2020-02-15T06:59:32Z +9 552 2020-02-15T06:59:32Z +9 650 2020-02-15T06:59:32Z +9 671 2020-02-15T06:59:32Z +9 697 2020-02-15T06:59:32Z +9 722 2020-02-15T06:59:32Z +9 752 2020-02-15T06:59:32Z +9 811 2020-02-15T06:59:32Z +9 815 2020-02-15T06:59:32Z +9 865 2020-02-15T06:59:32Z +9 873 2020-02-15T06:59:32Z +9 889 2020-02-15T06:59:32Z +9 903 2020-02-15T06:59:32Z +9 926 2020-02-15T06:59:32Z +9 964 2020-02-15T06:59:32Z +9 974 2020-02-15T06:59:32Z +10 1 2020-02-15T06:59:32Z +10 9 2020-02-15T06:59:32Z +10 191 2020-02-15T06:59:32Z +10 236 2020-02-15T06:59:32Z +10 251 2020-02-15T06:59:32Z +10 366 2020-02-15T06:59:32Z +10 477 2020-02-15T06:59:32Z +10 480 2020-02-15T06:59:32Z +10 522 2020-02-15T06:59:32Z +10 530 2020-02-15T06:59:32Z +10 587 2020-02-15T06:59:32Z +10 694 2020-02-15T06:59:32Z +10 703 2020-02-15T06:59:32Z +10 716 2020-02-15T06:59:32Z +10 782 2020-02-15T06:59:32Z +10 914 2020-02-15T06:59:32Z +10 929 2020-02-15T06:59:32Z +10 930 2020-02-15T06:59:32Z +10 964 2020-02-15T06:59:32Z +10 966 2020-02-15T06:59:32Z +10 980 2020-02-15T06:59:32Z +10 983 2020-02-15T06:59:32Z +11 118 2020-02-15T06:59:32Z +11 205 2020-02-15T06:59:32Z +11 281 2020-02-15T06:59:32Z +11 283 2020-02-15T06:59:32Z +11 348 2020-02-15T06:59:32Z +11 364 2020-02-15T06:59:32Z +11 395 2020-02-15T06:59:32Z +11 429 2020-02-15T06:59:32Z +11 433 2020-02-15T06:59:32Z +11 453 2020-02-15T06:59:32Z +11 485 2020-02-15T06:59:32Z +11 532 2020-02-15T06:59:32Z +11 567 2020-02-15T06:59:32Z +11 587 2020-02-15T06:59:32Z +11 597 2020-02-15T06:59:32Z +11 636 2020-02-15T06:59:32Z +11 709 2020-02-15T06:59:32Z +11 850 2020-02-15T06:59:32Z +11 854 2020-02-15T06:59:32Z +11 888 2020-02-15T06:59:32Z +11 896 2020-02-15T06:59:32Z +11 928 2020-02-15T06:59:32Z +11 938 2020-02-15T06:59:32Z +11 969 2020-02-15T06:59:32Z +11 988 2020-02-15T06:59:32Z +12 16 2020-02-15T06:59:32Z +12 17 2020-02-15T06:59:32Z +12 34 2020-02-15T06:59:32Z +12 37 2020-02-15T06:59:32Z +12 91 2020-02-15T06:59:32Z +12 92 2020-02-15T06:59:32Z +12 107 2020-02-15T06:59:32Z +12 155 2020-02-15T06:59:32Z +12 177 2020-02-15T06:59:32Z +12 208 2020-02-15T06:59:32Z +12 213 2020-02-15T06:59:32Z +12 216 2020-02-15T06:59:32Z +12 243 2020-02-15T06:59:32Z +12 344 2020-02-15T06:59:32Z +12 400 2020-02-15T06:59:32Z +12 416 2020-02-15T06:59:32Z +12 420 2020-02-15T06:59:32Z +12 457 2020-02-15T06:59:32Z +12 513 2020-02-15T06:59:32Z +12 540 2020-02-15T06:59:32Z +12 593 2020-02-15T06:59:32Z +12 631 2020-02-15T06:59:32Z +12 635 2020-02-15T06:59:32Z +12 672 2020-02-15T06:59:32Z +12 716 2020-02-15T06:59:32Z +12 728 2020-02-15T06:59:32Z +12 812 2020-02-15T06:59:32Z +12 838 2020-02-15T06:59:32Z +12 871 2020-02-15T06:59:32Z +12 880 2020-02-15T06:59:32Z +12 945 2020-02-15T06:59:32Z +13 17 2020-02-15T06:59:32Z +13 29 2020-02-15T06:59:32Z +13 45 2020-02-15T06:59:32Z +13 87 2020-02-15T06:59:32Z +13 110 2020-02-15T06:59:32Z +13 144 2020-02-15T06:59:32Z +13 154 2020-02-15T06:59:32Z +13 162 2020-02-15T06:59:32Z +13 203 2020-02-15T06:59:32Z +13 254 2020-02-15T06:59:32Z +13 337 2020-02-15T06:59:32Z +13 346 2020-02-15T06:59:32Z +13 381 2020-02-15T06:59:32Z +13 385 2020-02-15T06:59:32Z +13 427 2020-02-15T06:59:32Z +13 456 2020-02-15T06:59:32Z +13 513 2020-02-15T06:59:32Z +13 515 2020-02-15T06:59:32Z +13 522 2020-02-15T06:59:32Z +13 524 2020-02-15T06:59:32Z +13 528 2020-02-15T06:59:32Z +13 571 2020-02-15T06:59:32Z +13 588 2020-02-15T06:59:32Z +13 597 2020-02-15T06:59:32Z +13 600 2020-02-15T06:59:32Z +13 718 2020-02-15T06:59:32Z +13 729 2020-02-15T06:59:32Z +13 816 2020-02-15T06:59:32Z +13 817 2020-02-15T06:59:32Z +13 832 2020-02-15T06:59:32Z +13 833 2020-02-15T06:59:32Z +13 843 2020-02-15T06:59:32Z +13 897 2020-02-15T06:59:32Z +13 966 2020-02-15T06:59:32Z +13 998 2020-02-15T06:59:32Z +14 154 2020-02-15T06:59:32Z +14 187 2020-02-15T06:59:32Z +14 232 2020-02-15T06:59:32Z +14 241 2020-02-15T06:59:32Z +14 253 2020-02-15T06:59:32Z +14 255 2020-02-15T06:59:32Z +14 258 2020-02-15T06:59:32Z +14 284 2020-02-15T06:59:32Z +14 292 2020-02-15T06:59:32Z +14 370 2020-02-15T06:59:32Z +14 415 2020-02-15T06:59:32Z +14 417 2020-02-15T06:59:32Z +14 418 2020-02-15T06:59:32Z +14 454 2020-02-15T06:59:32Z +14 472 2020-02-15T06:59:32Z +14 475 2020-02-15T06:59:32Z +14 495 2020-02-15T06:59:32Z +14 536 2020-02-15T06:59:32Z +14 537 2020-02-15T06:59:32Z +14 612 2020-02-15T06:59:32Z +14 688 2020-02-15T06:59:32Z +14 759 2020-02-15T06:59:32Z +14 764 2020-02-15T06:59:32Z +14 847 2020-02-15T06:59:32Z +14 856 2020-02-15T06:59:32Z +14 890 2020-02-15T06:59:32Z +14 908 2020-02-15T06:59:32Z +14 919 2020-02-15T06:59:32Z +14 948 2020-02-15T06:59:32Z +14 970 2020-02-15T06:59:32Z +15 31 2020-02-15T06:59:32Z +15 89 2020-02-15T06:59:32Z +15 91 2020-02-15T06:59:32Z +15 108 2020-02-15T06:59:32Z +15 125 2020-02-15T06:59:32Z +15 236 2020-02-15T06:59:32Z +15 275 2020-02-15T06:59:32Z +15 280 2020-02-15T06:59:32Z +15 326 2020-02-15T06:59:32Z +15 342 2020-02-15T06:59:32Z +15 414 2020-02-15T06:59:32Z +15 445 2020-02-15T06:59:32Z +15 500 2020-02-15T06:59:32Z +15 502 2020-02-15T06:59:32Z +15 541 2020-02-15T06:59:32Z +15 553 2020-02-15T06:59:32Z +15 594 2020-02-15T06:59:32Z +15 626 2020-02-15T06:59:32Z +15 635 2020-02-15T06:59:32Z +15 745 2020-02-15T06:59:32Z +15 783 2020-02-15T06:59:32Z +15 795 2020-02-15T06:59:32Z +15 817 2020-02-15T06:59:32Z +15 886 2020-02-15T06:59:32Z +15 924 2020-02-15T06:59:32Z +15 949 2020-02-15T06:59:32Z +15 968 2020-02-15T06:59:32Z +15 985 2020-02-15T06:59:32Z +16 80 2020-02-15T06:59:32Z +16 87 2020-02-15T06:59:32Z +16 101 2020-02-15T06:59:32Z +16 121 2020-02-15T06:59:32Z +16 155 2020-02-15T06:59:32Z +16 177 2020-02-15T06:59:32Z +16 218 2020-02-15T06:59:32Z +16 221 2020-02-15T06:59:32Z +16 267 2020-02-15T06:59:32Z +16 269 2020-02-15T06:59:32Z +16 271 2020-02-15T06:59:32Z +16 280 2020-02-15T06:59:32Z +16 287 2020-02-15T06:59:32Z +16 345 2020-02-15T06:59:32Z +16 438 2020-02-15T06:59:32Z +16 453 2020-02-15T06:59:32Z +16 455 2020-02-15T06:59:32Z +16 456 2020-02-15T06:59:32Z +16 503 2020-02-15T06:59:32Z +16 548 2020-02-15T06:59:32Z +16 582 2020-02-15T06:59:32Z +16 583 2020-02-15T06:59:32Z +16 717 2020-02-15T06:59:32Z +16 758 2020-02-15T06:59:32Z +16 779 2020-02-15T06:59:32Z +16 886 2020-02-15T06:59:32Z +16 967 2020-02-15T06:59:32Z +17 96 2020-02-15T06:59:32Z +17 119 2020-02-15T06:59:32Z +17 124 2020-02-15T06:59:32Z +17 127 2020-02-15T06:59:32Z +17 154 2020-02-15T06:59:32Z +17 199 2020-02-15T06:59:32Z +17 201 2020-02-15T06:59:32Z +17 236 2020-02-15T06:59:32Z +17 280 2020-02-15T06:59:32Z +17 310 2020-02-15T06:59:32Z +17 313 2020-02-15T06:59:32Z +17 378 2020-02-15T06:59:32Z +17 457 2020-02-15T06:59:32Z +17 469 2020-02-15T06:59:32Z +17 478 2020-02-15T06:59:32Z +17 500 2020-02-15T06:59:32Z +17 515 2020-02-15T06:59:32Z +17 521 2020-02-15T06:59:32Z +17 573 2020-02-15T06:59:32Z +17 603 2020-02-15T06:59:32Z +17 606 2020-02-15T06:59:32Z +17 734 2020-02-15T06:59:32Z +17 770 2020-02-15T06:59:32Z +17 794 2020-02-15T06:59:32Z +17 800 2020-02-15T06:59:32Z +17 853 2020-02-15T06:59:32Z +17 873 2020-02-15T06:59:32Z +17 874 2020-02-15T06:59:32Z +17 880 2020-02-15T06:59:32Z +17 948 2020-02-15T06:59:32Z +17 957 2020-02-15T06:59:32Z +17 959 2020-02-15T06:59:32Z +18 44 2020-02-15T06:59:32Z +18 84 2020-02-15T06:59:32Z +18 144 2020-02-15T06:59:32Z +18 172 2020-02-15T06:59:32Z +18 268 2020-02-15T06:59:32Z +18 279 2020-02-15T06:59:32Z +18 280 2020-02-15T06:59:32Z +18 321 2020-02-15T06:59:32Z +18 386 2020-02-15T06:59:32Z +18 460 2020-02-15T06:59:32Z +18 462 2020-02-15T06:59:32Z +18 484 2020-02-15T06:59:32Z +18 536 2020-02-15T06:59:32Z +18 561 2020-02-15T06:59:32Z +18 612 2020-02-15T06:59:32Z +18 717 2020-02-15T06:59:32Z +18 808 2020-02-15T06:59:32Z +18 842 2020-02-15T06:59:32Z +18 863 2020-02-15T06:59:32Z +18 883 2020-02-15T06:59:32Z +18 917 2020-02-15T06:59:32Z +18 944 2020-02-15T06:59:32Z +19 2 2020-02-15T06:59:32Z +19 3 2020-02-15T06:59:32Z +19 144 2020-02-15T06:59:32Z +19 152 2020-02-15T06:59:32Z +19 182 2020-02-15T06:59:32Z +19 208 2020-02-15T06:59:32Z +19 212 2020-02-15T06:59:32Z +19 217 2020-02-15T06:59:32Z +19 266 2020-02-15T06:59:32Z +19 404 2020-02-15T06:59:32Z +19 428 2020-02-15T06:59:32Z +19 473 2020-02-15T06:59:32Z +19 490 2020-02-15T06:59:32Z +19 510 2020-02-15T06:59:32Z +19 513 2020-02-15T06:59:32Z +19 644 2020-02-15T06:59:32Z +19 670 2020-02-15T06:59:32Z +19 673 2020-02-15T06:59:32Z +19 711 2020-02-15T06:59:32Z +19 750 2020-02-15T06:59:32Z +19 752 2020-02-15T06:59:32Z +19 756 2020-02-15T06:59:32Z +19 771 2020-02-15T06:59:32Z +19 785 2020-02-15T06:59:32Z +19 877 2020-02-15T06:59:32Z +20 1 2020-02-15T06:59:32Z +20 54 2020-02-15T06:59:32Z +20 63 2020-02-15T06:59:32Z +20 140 2020-02-15T06:59:32Z +20 146 2020-02-15T06:59:32Z +20 165 2020-02-15T06:59:32Z +20 231 2020-02-15T06:59:32Z +20 243 2020-02-15T06:59:32Z +20 269 2020-02-15T06:59:32Z +20 274 2020-02-15T06:59:32Z +20 348 2020-02-15T06:59:32Z +20 366 2020-02-15T06:59:32Z +20 445 2020-02-15T06:59:32Z +20 478 2020-02-15T06:59:32Z +20 492 2020-02-15T06:59:32Z +20 499 2020-02-15T06:59:32Z +20 527 2020-02-15T06:59:32Z +20 531 2020-02-15T06:59:32Z +20 538 2020-02-15T06:59:32Z +20 589 2020-02-15T06:59:32Z +20 643 2020-02-15T06:59:32Z +20 652 2020-02-15T06:59:32Z +20 663 2020-02-15T06:59:32Z +20 714 2020-02-15T06:59:32Z +20 717 2020-02-15T06:59:32Z +20 757 2020-02-15T06:59:32Z +20 784 2020-02-15T06:59:32Z +20 863 2020-02-15T06:59:32Z +20 962 2020-02-15T06:59:32Z +20 977 2020-02-15T06:59:32Z +21 6 2020-02-15T06:59:32Z +21 87 2020-02-15T06:59:32Z +21 88 2020-02-15T06:59:32Z +21 142 2020-02-15T06:59:32Z +21 159 2020-02-15T06:59:32Z +21 179 2020-02-15T06:59:32Z +21 253 2020-02-15T06:59:32Z +21 281 2020-02-15T06:59:32Z +21 321 2020-02-15T06:59:32Z +21 398 2020-02-15T06:59:32Z +21 426 2020-02-15T06:59:32Z +21 429 2020-02-15T06:59:32Z +21 497 2020-02-15T06:59:32Z +21 507 2020-02-15T06:59:32Z +21 530 2020-02-15T06:59:32Z +21 680 2020-02-15T06:59:32Z +21 686 2020-02-15T06:59:32Z +21 700 2020-02-15T06:59:32Z +21 702 2020-02-15T06:59:32Z +21 733 2020-02-15T06:59:32Z +21 734 2020-02-15T06:59:32Z +21 798 2020-02-15T06:59:32Z +21 804 2020-02-15T06:59:32Z +21 887 2020-02-15T06:59:32Z +21 893 2020-02-15T06:59:32Z +21 920 2020-02-15T06:59:32Z +21 983 2020-02-15T06:59:32Z +22 9 2020-02-15T06:59:32Z +22 23 2020-02-15T06:59:32Z +22 56 2020-02-15T06:59:32Z +22 89 2020-02-15T06:59:32Z +22 111 2020-02-15T06:59:32Z +22 146 2020-02-15T06:59:32Z +22 291 2020-02-15T06:59:32Z +22 294 2020-02-15T06:59:32Z +22 349 2020-02-15T06:59:32Z +22 369 2020-02-15T06:59:32Z +22 418 2020-02-15T06:59:32Z +22 430 2020-02-15T06:59:32Z +22 483 2020-02-15T06:59:32Z +22 491 2020-02-15T06:59:32Z +22 495 2020-02-15T06:59:32Z +22 536 2020-02-15T06:59:32Z +22 600 2020-02-15T06:59:32Z +22 634 2020-02-15T06:59:32Z +22 648 2020-02-15T06:59:32Z +22 688 2020-02-15T06:59:32Z +22 731 2020-02-15T06:59:32Z +22 742 2020-02-15T06:59:32Z +22 775 2020-02-15T06:59:32Z +22 802 2020-02-15T06:59:32Z +22 912 2020-02-15T06:59:32Z +22 964 2020-02-15T06:59:32Z +23 6 2020-02-15T06:59:32Z +23 42 2020-02-15T06:59:32Z +23 78 2020-02-15T06:59:32Z +23 105 2020-02-15T06:59:32Z +23 116 2020-02-15T06:59:32Z +23 117 2020-02-15T06:59:32Z +23 125 2020-02-15T06:59:32Z +23 212 2020-02-15T06:59:32Z +23 226 2020-02-15T06:59:32Z +23 235 2020-02-15T06:59:32Z +23 254 2020-02-15T06:59:32Z +23 367 2020-02-15T06:59:32Z +23 370 2020-02-15T06:59:32Z +23 414 2020-02-15T06:59:32Z +23 419 2020-02-15T06:59:32Z +23 435 2020-02-15T06:59:32Z +23 449 2020-02-15T06:59:32Z +23 491 2020-02-15T06:59:32Z +23 536 2020-02-15T06:59:32Z +23 549 2020-02-15T06:59:32Z +23 636 2020-02-15T06:59:32Z +23 649 2020-02-15T06:59:32Z +23 673 2020-02-15T06:59:32Z +23 691 2020-02-15T06:59:32Z +23 766 2020-02-15T06:59:32Z +23 782 2020-02-15T06:59:32Z +23 804 2020-02-15T06:59:32Z +23 820 2020-02-15T06:59:32Z +23 826 2020-02-15T06:59:32Z +23 833 2020-02-15T06:59:32Z +23 842 2020-02-15T06:59:32Z +23 853 2020-02-15T06:59:32Z +23 855 2020-02-15T06:59:32Z +23 856 2020-02-15T06:59:32Z +23 935 2020-02-15T06:59:32Z +23 981 2020-02-15T06:59:32Z +23 997 2020-02-15T06:59:32Z +24 3 2020-02-15T06:59:32Z +24 83 2020-02-15T06:59:32Z +24 112 2020-02-15T06:59:32Z +24 126 2020-02-15T06:59:32Z +24 148 2020-02-15T06:59:32Z +24 164 2020-02-15T06:59:32Z +24 178 2020-02-15T06:59:32Z +24 194 2020-02-15T06:59:32Z +24 199 2020-02-15T06:59:32Z +24 242 2020-02-15T06:59:32Z +24 256 2020-02-15T06:59:32Z +24 277 2020-02-15T06:59:32Z +24 335 2020-02-15T06:59:32Z +24 405 2020-02-15T06:59:32Z +24 463 2020-02-15T06:59:32Z +24 515 2020-02-15T06:59:32Z +24 585 2020-02-15T06:59:32Z +24 603 2020-02-15T06:59:32Z +24 653 2020-02-15T06:59:32Z +24 704 2020-02-15T06:59:32Z +24 781 2020-02-15T06:59:32Z +24 829 2020-02-15T06:59:32Z +24 832 2020-02-15T06:59:32Z +24 969 2020-02-15T06:59:32Z +25 21 2020-02-15T06:59:32Z +25 86 2020-02-15T06:59:32Z +25 153 2020-02-15T06:59:32Z +25 179 2020-02-15T06:59:32Z +25 204 2020-02-15T06:59:32Z +25 213 2020-02-15T06:59:32Z +25 226 2020-02-15T06:59:32Z +25 245 2020-02-15T06:59:32Z +25 311 2020-02-15T06:59:32Z +25 404 2020-02-15T06:59:32Z +25 411 2020-02-15T06:59:32Z +25 420 2020-02-15T06:59:32Z +25 538 2020-02-15T06:59:32Z +25 564 2020-02-15T06:59:32Z +25 583 2020-02-15T06:59:32Z +25 606 2020-02-15T06:59:32Z +25 688 2020-02-15T06:59:32Z +25 697 2020-02-15T06:59:32Z +25 755 2020-02-15T06:59:32Z +25 871 2020-02-15T06:59:32Z +25 914 2020-02-15T06:59:32Z +26 9 2020-02-15T06:59:32Z +26 21 2020-02-15T06:59:32Z +26 34 2020-02-15T06:59:32Z +26 90 2020-02-15T06:59:32Z +26 93 2020-02-15T06:59:32Z +26 103 2020-02-15T06:59:32Z +26 147 2020-02-15T06:59:32Z +26 186 2020-02-15T06:59:32Z +26 201 2020-02-15T06:59:32Z +26 225 2020-02-15T06:59:32Z +26 241 2020-02-15T06:59:32Z +26 327 2020-02-15T06:59:32Z +26 329 2020-02-15T06:59:32Z +26 340 2020-02-15T06:59:32Z +26 345 2020-02-15T06:59:32Z +26 390 2020-02-15T06:59:32Z +26 392 2020-02-15T06:59:32Z +26 529 2020-02-15T06:59:32Z +26 544 2020-02-15T06:59:32Z +26 564 2020-02-15T06:59:32Z +26 635 2020-02-15T06:59:32Z +26 644 2020-02-15T06:59:32Z +26 682 2020-02-15T06:59:32Z +26 688 2020-02-15T06:59:32Z +26 715 2020-02-15T06:59:32Z +26 732 2020-02-15T06:59:32Z +26 758 2020-02-15T06:59:32Z +26 764 2020-02-15T06:59:32Z +26 795 2020-02-15T06:59:32Z +26 821 2020-02-15T06:59:32Z +26 885 2020-02-15T06:59:32Z +26 904 2020-02-15T06:59:32Z +26 906 2020-02-15T06:59:32Z +27 19 2020-02-15T06:59:32Z +27 34 2020-02-15T06:59:32Z +27 85 2020-02-15T06:59:32Z +27 150 2020-02-15T06:59:32Z +27 172 2020-02-15T06:59:32Z +27 273 2020-02-15T06:59:32Z +27 334 2020-02-15T06:59:32Z +27 347 2020-02-15T06:59:32Z +27 359 2020-02-15T06:59:32Z +27 398 2020-02-15T06:59:32Z +27 415 2020-02-15T06:59:32Z +27 462 2020-02-15T06:59:32Z +27 477 2020-02-15T06:59:32Z +27 500 2020-02-15T06:59:32Z +27 503 2020-02-15T06:59:32Z +27 540 2020-02-15T06:59:32Z +27 586 2020-02-15T06:59:32Z +27 593 2020-02-15T06:59:32Z +27 637 2020-02-15T06:59:32Z +27 679 2020-02-15T06:59:32Z +27 682 2020-02-15T06:59:32Z +27 695 2020-02-15T06:59:32Z +27 771 2020-02-15T06:59:32Z +27 805 2020-02-15T06:59:32Z +27 830 2020-02-15T06:59:32Z +27 854 2020-02-15T06:59:32Z +27 873 2020-02-15T06:59:32Z +27 880 2020-02-15T06:59:32Z +27 889 2020-02-15T06:59:32Z +27 904 2020-02-15T06:59:32Z +27 967 2020-02-15T06:59:32Z +27 986 2020-02-15T06:59:32Z +27 996 2020-02-15T06:59:32Z +28 14 2020-02-15T06:59:32Z +28 43 2020-02-15T06:59:32Z +28 58 2020-02-15T06:59:32Z +28 74 2020-02-15T06:59:32Z +28 96 2020-02-15T06:59:32Z +28 107 2020-02-15T06:59:32Z +28 259 2020-02-15T06:59:32Z +28 263 2020-02-15T06:59:32Z +28 287 2020-02-15T06:59:32Z +28 358 2020-02-15T06:59:32Z +28 502 2020-02-15T06:59:32Z +28 508 2020-02-15T06:59:32Z +28 532 2020-02-15T06:59:32Z +28 551 2020-02-15T06:59:32Z +28 574 2020-02-15T06:59:32Z +28 597 2020-02-15T06:59:32Z +28 619 2020-02-15T06:59:32Z +28 625 2020-02-15T06:59:32Z +28 652 2020-02-15T06:59:32Z +28 679 2020-02-15T06:59:32Z +28 743 2020-02-15T06:59:32Z +28 790 2020-02-15T06:59:32Z +28 793 2020-02-15T06:59:32Z +28 816 2020-02-15T06:59:32Z +28 827 2020-02-15T06:59:32Z +28 835 2020-02-15T06:59:32Z +28 879 2020-02-15T06:59:32Z +28 908 2020-02-15T06:59:32Z +28 953 2020-02-15T06:59:32Z +28 973 2020-02-15T06:59:32Z +28 994 2020-02-15T06:59:32Z +29 10 2020-02-15T06:59:32Z +29 79 2020-02-15T06:59:32Z +29 105 2020-02-15T06:59:32Z +29 110 2020-02-15T06:59:32Z +29 131 2020-02-15T06:59:32Z +29 133 2020-02-15T06:59:32Z +29 172 2020-02-15T06:59:32Z +29 226 2020-02-15T06:59:32Z +29 273 2020-02-15T06:59:32Z +29 282 2020-02-15T06:59:32Z +29 296 2020-02-15T06:59:32Z +29 311 2020-02-15T06:59:32Z +29 335 2020-02-15T06:59:32Z +29 342 2020-02-15T06:59:32Z +29 436 2020-02-15T06:59:32Z +29 444 2020-02-15T06:59:32Z +29 449 2020-02-15T06:59:32Z +29 462 2020-02-15T06:59:32Z +29 482 2020-02-15T06:59:32Z +29 488 2020-02-15T06:59:32Z +29 519 2020-02-15T06:59:32Z +29 547 2020-02-15T06:59:32Z +29 590 2020-02-15T06:59:32Z +29 646 2020-02-15T06:59:32Z +29 723 2020-02-15T06:59:32Z +29 812 2020-02-15T06:59:32Z +29 862 2020-02-15T06:59:32Z +29 928 2020-02-15T06:59:32Z +29 944 2020-02-15T06:59:32Z +30 1 2020-02-15T06:59:32Z +30 53 2020-02-15T06:59:32Z +30 64 2020-02-15T06:59:32Z +30 69 2020-02-15T06:59:32Z +30 77 2020-02-15T06:59:32Z +30 87 2020-02-15T06:59:32Z +30 260 2020-02-15T06:59:32Z +30 262 2020-02-15T06:59:32Z +30 286 2020-02-15T06:59:32Z +30 292 2020-02-15T06:59:32Z +30 301 2020-02-15T06:59:32Z +30 318 2020-02-15T06:59:32Z +30 321 2020-02-15T06:59:32Z +30 357 2020-02-15T06:59:32Z +30 565 2020-02-15T06:59:32Z +30 732 2020-02-15T06:59:32Z +30 797 2020-02-15T06:59:32Z +30 838 2020-02-15T06:59:32Z +30 945 2020-02-15T06:59:32Z +31 88 2020-02-15T06:59:32Z +31 146 2020-02-15T06:59:32Z +31 163 2020-02-15T06:59:32Z +31 164 2020-02-15T06:59:32Z +31 188 2020-02-15T06:59:32Z +31 299 2020-02-15T06:59:32Z +31 308 2020-02-15T06:59:32Z +31 368 2020-02-15T06:59:32Z +31 380 2020-02-15T06:59:32Z +31 431 2020-02-15T06:59:32Z +31 585 2020-02-15T06:59:32Z +31 637 2020-02-15T06:59:32Z +31 700 2020-02-15T06:59:32Z +31 739 2020-02-15T06:59:32Z +31 793 2020-02-15T06:59:32Z +31 802 2020-02-15T06:59:32Z +31 880 2020-02-15T06:59:32Z +31 978 2020-02-15T06:59:32Z +32 65 2020-02-15T06:59:32Z +32 84 2020-02-15T06:59:32Z +32 103 2020-02-15T06:59:32Z +32 112 2020-02-15T06:59:32Z +32 136 2020-02-15T06:59:32Z +32 197 2020-02-15T06:59:32Z +32 199 2020-02-15T06:59:32Z +32 219 2020-02-15T06:59:32Z +32 309 2020-02-15T06:59:32Z +32 312 2020-02-15T06:59:32Z +32 401 2020-02-15T06:59:32Z +32 427 2020-02-15T06:59:32Z +32 431 2020-02-15T06:59:32Z +32 523 2020-02-15T06:59:32Z +32 567 2020-02-15T06:59:32Z +32 585 2020-02-15T06:59:32Z +32 606 2020-02-15T06:59:32Z +32 651 2020-02-15T06:59:32Z +32 667 2020-02-15T06:59:32Z +32 669 2020-02-15T06:59:32Z +32 815 2020-02-15T06:59:32Z +32 928 2020-02-15T06:59:32Z +32 980 2020-02-15T06:59:32Z +33 56 2020-02-15T06:59:32Z +33 112 2020-02-15T06:59:32Z +33 135 2020-02-15T06:59:32Z +33 154 2020-02-15T06:59:32Z +33 214 2020-02-15T06:59:32Z +33 252 2020-02-15T06:59:32Z +33 305 2020-02-15T06:59:32Z +33 306 2020-02-15T06:59:32Z +33 473 2020-02-15T06:59:32Z +33 489 2020-02-15T06:59:32Z +33 574 2020-02-15T06:59:32Z +33 618 2020-02-15T06:59:32Z +33 667 2020-02-15T06:59:32Z +33 694 2020-02-15T06:59:32Z +33 712 2020-02-15T06:59:32Z +33 735 2020-02-15T06:59:32Z +33 737 2020-02-15T06:59:32Z +33 754 2020-02-15T06:59:32Z +33 775 2020-02-15T06:59:32Z +33 878 2020-02-15T06:59:32Z +33 881 2020-02-15T06:59:32Z +33 965 2020-02-15T06:59:32Z +33 972 2020-02-15T06:59:32Z +33 993 2020-02-15T06:59:32Z +34 43 2020-02-15T06:59:32Z +34 90 2020-02-15T06:59:32Z +34 119 2020-02-15T06:59:32Z +34 125 2020-02-15T06:59:32Z +34 172 2020-02-15T06:59:32Z +34 182 2020-02-15T06:59:32Z +34 244 2020-02-15T06:59:32Z +34 336 2020-02-15T06:59:32Z +34 389 2020-02-15T06:59:32Z +34 393 2020-02-15T06:59:32Z +34 438 2020-02-15T06:59:32Z +34 493 2020-02-15T06:59:32Z +34 502 2020-02-15T06:59:32Z +34 525 2020-02-15T06:59:32Z +34 668 2020-02-15T06:59:32Z +34 720 2020-02-15T06:59:32Z +34 779 2020-02-15T06:59:32Z +34 788 2020-02-15T06:59:32Z +34 794 2020-02-15T06:59:32Z +34 836 2020-02-15T06:59:32Z +34 846 2020-02-15T06:59:32Z +34 853 2020-02-15T06:59:32Z +34 929 2020-02-15T06:59:32Z +34 950 2020-02-15T06:59:32Z +34 971 2020-02-15T06:59:32Z +35 10 2020-02-15T06:59:32Z +35 35 2020-02-15T06:59:32Z +35 52 2020-02-15T06:59:32Z +35 201 2020-02-15T06:59:32Z +35 256 2020-02-15T06:59:32Z +35 389 2020-02-15T06:59:32Z +35 589 2020-02-15T06:59:32Z +35 612 2020-02-15T06:59:32Z +35 615 2020-02-15T06:59:32Z +35 707 2020-02-15T06:59:32Z +35 732 2020-02-15T06:59:32Z +35 738 2020-02-15T06:59:32Z +35 748 2020-02-15T06:59:32Z +35 817 2020-02-15T06:59:32Z +35 914 2020-02-15T06:59:32Z +36 15 2020-02-15T06:59:32Z +36 81 2020-02-15T06:59:32Z +36 171 2020-02-15T06:59:32Z +36 231 2020-02-15T06:59:32Z +36 245 2020-02-15T06:59:32Z +36 283 2020-02-15T06:59:32Z +36 380 2020-02-15T06:59:32Z +36 381 2020-02-15T06:59:32Z +36 387 2020-02-15T06:59:32Z +36 390 2020-02-15T06:59:32Z +36 410 2020-02-15T06:59:32Z +36 426 2020-02-15T06:59:32Z +36 427 2020-02-15T06:59:32Z +36 453 2020-02-15T06:59:32Z +36 466 2020-02-15T06:59:32Z +36 484 2020-02-15T06:59:32Z +36 493 2020-02-15T06:59:32Z +36 499 2020-02-15T06:59:32Z +36 569 2020-02-15T06:59:32Z +36 590 2020-02-15T06:59:32Z +36 600 2020-02-15T06:59:32Z +36 714 2020-02-15T06:59:32Z +36 715 2020-02-15T06:59:32Z +36 716 2020-02-15T06:59:32Z +36 731 2020-02-15T06:59:32Z +36 875 2020-02-15T06:59:32Z +36 915 2020-02-15T06:59:32Z +36 931 2020-02-15T06:59:32Z +36 956 2020-02-15T06:59:32Z +37 10 2020-02-15T06:59:32Z +37 12 2020-02-15T06:59:32Z +37 19 2020-02-15T06:59:32Z +37 118 2020-02-15T06:59:32Z +37 119 2020-02-15T06:59:32Z +37 122 2020-02-15T06:59:32Z +37 146 2020-02-15T06:59:32Z +37 204 2020-02-15T06:59:32Z +37 253 2020-02-15T06:59:32Z +37 260 2020-02-15T06:59:32Z +37 277 2020-02-15T06:59:32Z +37 317 2020-02-15T06:59:32Z +37 467 2020-02-15T06:59:32Z +37 477 2020-02-15T06:59:32Z +37 485 2020-02-15T06:59:32Z +37 508 2020-02-15T06:59:32Z +37 529 2020-02-15T06:59:32Z +37 553 2020-02-15T06:59:32Z +37 555 2020-02-15T06:59:32Z +37 572 2020-02-15T06:59:32Z +37 588 2020-02-15T06:59:32Z +37 662 2020-02-15T06:59:32Z +37 663 2020-02-15T06:59:32Z +37 694 2020-02-15T06:59:32Z +37 697 2020-02-15T06:59:32Z +37 785 2020-02-15T06:59:32Z +37 839 2020-02-15T06:59:32Z +37 840 2020-02-15T06:59:32Z +37 853 2020-02-15T06:59:32Z +37 900 2020-02-15T06:59:32Z +37 925 2020-02-15T06:59:32Z +37 963 2020-02-15T06:59:32Z +37 966 2020-02-15T06:59:32Z +37 989 2020-02-15T06:59:32Z +37 997 2020-02-15T06:59:32Z +38 24 2020-02-15T06:59:32Z +38 111 2020-02-15T06:59:32Z +38 160 2020-02-15T06:59:32Z +38 176 2020-02-15T06:59:32Z +38 223 2020-02-15T06:59:32Z +38 241 2020-02-15T06:59:32Z +38 274 2020-02-15T06:59:32Z +38 335 2020-02-15T06:59:32Z +38 338 2020-02-15T06:59:32Z +38 353 2020-02-15T06:59:32Z +38 448 2020-02-15T06:59:32Z +38 450 2020-02-15T06:59:32Z +38 458 2020-02-15T06:59:32Z +38 501 2020-02-15T06:59:32Z +38 516 2020-02-15T06:59:32Z +38 547 2020-02-15T06:59:32Z +38 583 2020-02-15T06:59:32Z +38 618 2020-02-15T06:59:32Z +38 619 2020-02-15T06:59:32Z +38 705 2020-02-15T06:59:32Z +38 793 2020-02-15T06:59:32Z +38 827 2020-02-15T06:59:32Z +38 839 2020-02-15T06:59:32Z +38 853 2020-02-15T06:59:32Z +38 876 2020-02-15T06:59:32Z +39 71 2020-02-15T06:59:32Z +39 73 2020-02-15T06:59:32Z +39 168 2020-02-15T06:59:32Z +39 203 2020-02-15T06:59:32Z +39 222 2020-02-15T06:59:32Z +39 290 2020-02-15T06:59:32Z +39 293 2020-02-15T06:59:32Z +39 320 2020-02-15T06:59:32Z +39 415 2020-02-15T06:59:32Z +39 425 2020-02-15T06:59:32Z +39 431 2020-02-15T06:59:32Z +39 456 2020-02-15T06:59:32Z +39 476 2020-02-15T06:59:32Z +39 559 2020-02-15T06:59:32Z +39 587 2020-02-15T06:59:32Z +39 598 2020-02-15T06:59:32Z +39 606 2020-02-15T06:59:32Z +39 648 2020-02-15T06:59:32Z +39 683 2020-02-15T06:59:32Z +39 689 2020-02-15T06:59:32Z +39 696 2020-02-15T06:59:32Z +39 700 2020-02-15T06:59:32Z +39 703 2020-02-15T06:59:32Z +39 736 2020-02-15T06:59:32Z +39 772 2020-02-15T06:59:32Z +39 815 2020-02-15T06:59:32Z +39 831 2020-02-15T06:59:32Z +39 920 2020-02-15T06:59:32Z +40 1 2020-02-15T06:59:32Z +40 11 2020-02-15T06:59:32Z +40 34 2020-02-15T06:59:32Z +40 107 2020-02-15T06:59:32Z +40 128 2020-02-15T06:59:32Z +40 163 2020-02-15T06:59:32Z +40 177 2020-02-15T06:59:32Z +40 223 2020-02-15T06:59:32Z +40 233 2020-02-15T06:59:32Z +40 326 2020-02-15T06:59:32Z +40 374 2020-02-15T06:59:32Z +40 394 2020-02-15T06:59:32Z +40 396 2020-02-15T06:59:32Z +40 463 2020-02-15T06:59:32Z +40 466 2020-02-15T06:59:32Z +40 494 2020-02-15T06:59:32Z +40 521 2020-02-15T06:59:32Z +40 723 2020-02-15T06:59:32Z +40 737 2020-02-15T06:59:32Z +40 744 2020-02-15T06:59:32Z +40 747 2020-02-15T06:59:32Z +40 754 2020-02-15T06:59:32Z +40 799 2020-02-15T06:59:32Z +40 835 2020-02-15T06:59:32Z +40 868 2020-02-15T06:59:32Z +40 869 2020-02-15T06:59:32Z +40 887 2020-02-15T06:59:32Z +40 933 2020-02-15T06:59:32Z +40 938 2020-02-15T06:59:32Z +41 4 2020-02-15T06:59:32Z +41 60 2020-02-15T06:59:32Z +41 69 2020-02-15T06:59:32Z +41 86 2020-02-15T06:59:32Z +41 100 2020-02-15T06:59:32Z +41 150 2020-02-15T06:59:32Z +41 159 2020-02-15T06:59:32Z +41 194 2020-02-15T06:59:32Z +41 203 2020-02-15T06:59:32Z +41 212 2020-02-15T06:59:32Z +41 230 2020-02-15T06:59:32Z +41 249 2020-02-15T06:59:32Z +41 252 2020-02-15T06:59:32Z +41 305 2020-02-15T06:59:32Z +41 336 2020-02-15T06:59:32Z +41 383 2020-02-15T06:59:32Z +41 544 2020-02-15T06:59:32Z +41 596 2020-02-15T06:59:32Z +41 657 2020-02-15T06:59:32Z +41 674 2020-02-15T06:59:32Z +41 678 2020-02-15T06:59:32Z +41 721 2020-02-15T06:59:32Z +41 724 2020-02-15T06:59:32Z +41 779 2020-02-15T06:59:32Z +41 784 2020-02-15T06:59:32Z +41 799 2020-02-15T06:59:32Z +41 894 2020-02-15T06:59:32Z +41 912 2020-02-15T06:59:32Z +41 942 2020-02-15T06:59:32Z +42 24 2020-02-15T06:59:32Z +42 139 2020-02-15T06:59:32Z +42 309 2020-02-15T06:59:32Z +42 320 2020-02-15T06:59:32Z +42 333 2020-02-15T06:59:32Z +42 500 2020-02-15T06:59:32Z +42 502 2020-02-15T06:59:32Z +42 505 2020-02-15T06:59:32Z +42 527 2020-02-15T06:59:32Z +42 535 2020-02-15T06:59:32Z +42 546 2020-02-15T06:59:32Z +42 568 2020-02-15T06:59:32Z +42 648 2020-02-15T06:59:32Z +42 665 2020-02-15T06:59:32Z +42 673 2020-02-15T06:59:32Z +42 687 2020-02-15T06:59:32Z +42 713 2020-02-15T06:59:32Z +42 738 2020-02-15T06:59:32Z +42 798 2020-02-15T06:59:32Z +42 861 2020-02-15T06:59:33Z +42 865 2020-02-15T06:59:33Z +42 867 2020-02-15T06:59:33Z +42 876 2020-02-15T06:59:33Z +42 890 2020-02-15T06:59:33Z +42 907 2020-02-15T06:59:33Z +42 922 2020-02-15T06:59:33Z +42 932 2020-02-15T06:59:33Z +43 19 2020-02-15T06:59:33Z +43 42 2020-02-15T06:59:33Z +43 56 2020-02-15T06:59:33Z +43 89 2020-02-15T06:59:33Z +43 105 2020-02-15T06:59:33Z +43 147 2020-02-15T06:59:33Z +43 161 2020-02-15T06:59:33Z +43 180 2020-02-15T06:59:33Z +43 239 2020-02-15T06:59:33Z +43 276 2020-02-15T06:59:33Z +43 330 2020-02-15T06:59:33Z +43 344 2020-02-15T06:59:33Z +43 359 2020-02-15T06:59:33Z +43 377 2020-02-15T06:59:33Z +43 410 2020-02-15T06:59:33Z +43 462 2020-02-15T06:59:33Z +43 533 2020-02-15T06:59:33Z +43 598 2020-02-15T06:59:33Z +43 605 2020-02-15T06:59:33Z +43 608 2020-02-15T06:59:33Z +43 621 2020-02-15T06:59:33Z +43 753 2020-02-15T06:59:33Z +43 827 2020-02-15T06:59:33Z +43 833 2020-02-15T06:59:33Z +43 917 2020-02-15T06:59:33Z +43 958 2020-02-15T06:59:33Z +44 58 2020-02-15T06:59:33Z +44 84 2020-02-15T06:59:33Z +44 88 2020-02-15T06:59:33Z +44 94 2020-02-15T06:59:33Z +44 109 2020-02-15T06:59:33Z +44 176 2020-02-15T06:59:33Z +44 242 2020-02-15T06:59:33Z +44 273 2020-02-15T06:59:33Z +44 322 2020-02-15T06:59:33Z +44 420 2020-02-15T06:59:33Z +44 434 2020-02-15T06:59:33Z +44 490 2020-02-15T06:59:33Z +44 591 2020-02-15T06:59:33Z +44 598 2020-02-15T06:59:33Z +44 604 2020-02-15T06:59:33Z +44 699 2020-02-15T06:59:33Z +44 751 2020-02-15T06:59:33Z +44 784 2020-02-15T06:59:33Z +44 825 2020-02-15T06:59:33Z +44 854 2020-02-15T06:59:33Z +44 875 2020-02-15T06:59:33Z +44 878 2020-02-15T06:59:33Z +44 883 2020-02-15T06:59:33Z +44 896 2020-02-15T06:59:33Z +44 902 2020-02-15T06:59:33Z +44 937 2020-02-15T06:59:33Z +44 944 2020-02-15T06:59:33Z +44 952 2020-02-15T06:59:33Z +44 982 2020-02-15T06:59:33Z +44 998 2020-02-15T06:59:33Z +45 18 2020-02-15T06:59:33Z +45 65 2020-02-15T06:59:33Z +45 66 2020-02-15T06:59:33Z +45 115 2020-02-15T06:59:33Z +45 117 2020-02-15T06:59:33Z +45 164 2020-02-15T06:59:33Z +45 187 2020-02-15T06:59:33Z +45 198 2020-02-15T06:59:33Z +45 219 2020-02-15T06:59:33Z +45 330 2020-02-15T06:59:33Z +45 407 2020-02-15T06:59:33Z +45 416 2020-02-15T06:59:33Z +45 463 2020-02-15T06:59:33Z +45 467 2020-02-15T06:59:33Z +45 484 2020-02-15T06:59:33Z +45 502 2020-02-15T06:59:33Z +45 503 2020-02-15T06:59:33Z +45 508 2020-02-15T06:59:33Z +45 537 2020-02-15T06:59:33Z +45 680 2020-02-15T06:59:33Z +45 714 2020-02-15T06:59:33Z +45 767 2020-02-15T06:59:33Z +45 778 2020-02-15T06:59:33Z +45 797 2020-02-15T06:59:33Z +45 810 2020-02-15T06:59:33Z +45 895 2020-02-15T06:59:33Z +45 900 2020-02-15T06:59:33Z +45 901 2020-02-15T06:59:33Z +45 920 2020-02-15T06:59:33Z +45 925 2020-02-15T06:59:33Z +45 975 2020-02-15T06:59:33Z +45 978 2020-02-15T06:59:33Z +46 38 2020-02-15T06:59:33Z +46 51 2020-02-15T06:59:33Z +46 174 2020-02-15T06:59:33Z +46 254 2020-02-15T06:59:33Z +46 296 2020-02-15T06:59:33Z +46 319 2020-02-15T06:59:33Z +46 407 2020-02-15T06:59:33Z +46 448 2020-02-15T06:59:33Z +46 456 2020-02-15T06:59:33Z +46 463 2020-02-15T06:59:33Z +46 478 2020-02-15T06:59:33Z +46 538 2020-02-15T06:59:33Z +46 540 2020-02-15T06:59:33Z +46 567 2020-02-15T06:59:33Z +46 731 2020-02-15T06:59:33Z +46 766 2020-02-15T06:59:33Z +46 768 2020-02-15T06:59:33Z +46 820 2020-02-15T06:59:33Z +46 829 2020-02-15T06:59:33Z +46 830 2020-02-15T06:59:33Z +46 836 2020-02-15T06:59:33Z +46 889 2020-02-15T06:59:33Z +46 980 2020-02-15T06:59:33Z +46 991 2020-02-15T06:59:33Z +47 25 2020-02-15T06:59:33Z +47 36 2020-02-15T06:59:33Z +47 53 2020-02-15T06:59:33Z +47 67 2020-02-15T06:59:33Z +47 172 2020-02-15T06:59:33Z +47 233 2020-02-15T06:59:33Z +47 273 2020-02-15T06:59:33Z +47 351 2020-02-15T06:59:33Z +47 385 2020-02-15T06:59:33Z +47 484 2020-02-15T06:59:33Z +47 508 2020-02-15T06:59:33Z +47 576 2020-02-15T06:59:33Z +47 670 2020-02-15T06:59:33Z +47 734 2020-02-15T06:59:33Z +47 737 2020-02-15T06:59:33Z +47 770 2020-02-15T06:59:33Z +47 777 2020-02-15T06:59:33Z +47 787 2020-02-15T06:59:33Z +47 790 2020-02-15T06:59:33Z +47 913 2020-02-15T06:59:33Z +47 923 2020-02-15T06:59:33Z +47 924 2020-02-15T06:59:33Z +47 944 2020-02-15T06:59:33Z +47 973 2020-02-15T06:59:33Z +48 99 2020-02-15T06:59:33Z +48 101 2020-02-15T06:59:33Z +48 134 2020-02-15T06:59:33Z +48 150 2020-02-15T06:59:33Z +48 164 2020-02-15T06:59:33Z +48 211 2020-02-15T06:59:33Z +48 245 2020-02-15T06:59:33Z +48 267 2020-02-15T06:59:33Z +48 287 2020-02-15T06:59:33Z +48 295 2020-02-15T06:59:33Z +48 312 2020-02-15T06:59:33Z +48 315 2020-02-15T06:59:33Z +48 345 2020-02-15T06:59:33Z +48 349 2020-02-15T06:59:33Z +48 428 2020-02-15T06:59:33Z +48 506 2020-02-15T06:59:33Z +48 545 2020-02-15T06:59:33Z +48 559 2020-02-15T06:59:33Z +48 570 2020-02-15T06:59:33Z +48 599 2020-02-15T06:59:33Z +48 645 2020-02-15T06:59:33Z +48 705 2020-02-15T06:59:33Z +48 757 2020-02-15T06:59:33Z +48 792 2020-02-15T06:59:33Z +48 922 2020-02-15T06:59:33Z +48 926 2020-02-15T06:59:33Z +49 31 2020-02-15T06:59:33Z +49 151 2020-02-15T06:59:33Z +49 195 2020-02-15T06:59:33Z +49 207 2020-02-15T06:59:33Z +49 250 2020-02-15T06:59:33Z +49 282 2020-02-15T06:59:33Z +49 348 2020-02-15T06:59:33Z +49 391 2020-02-15T06:59:33Z +49 400 2020-02-15T06:59:33Z +49 407 2020-02-15T06:59:33Z +49 423 2020-02-15T06:59:33Z +49 433 2020-02-15T06:59:33Z +49 469 2020-02-15T06:59:33Z +49 506 2020-02-15T06:59:33Z +49 542 2020-02-15T06:59:33Z +49 558 2020-02-15T06:59:33Z +49 579 2020-02-15T06:59:33Z +49 595 2020-02-15T06:59:33Z +49 662 2020-02-15T06:59:33Z +49 709 2020-02-15T06:59:33Z +49 716 2020-02-15T06:59:33Z +49 725 2020-02-15T06:59:33Z +49 729 2020-02-15T06:59:33Z +49 811 2020-02-15T06:59:33Z +49 927 2020-02-15T06:59:33Z +49 977 2020-02-15T06:59:33Z +49 980 2020-02-15T06:59:33Z +50 111 2020-02-15T06:59:33Z +50 178 2020-02-15T06:59:33Z +50 243 2020-02-15T06:59:33Z +50 248 2020-02-15T06:59:33Z +50 274 2020-02-15T06:59:33Z +50 288 2020-02-15T06:59:33Z +50 303 2020-02-15T06:59:33Z +50 306 2020-02-15T06:59:33Z +50 327 2020-02-15T06:59:33Z +50 372 2020-02-15T06:59:33Z +50 401 2020-02-15T06:59:33Z +50 417 2020-02-15T06:59:33Z +50 420 2020-02-15T06:59:33Z +50 437 2020-02-15T06:59:33Z +50 476 2020-02-15T06:59:33Z +50 504 2020-02-15T06:59:33Z +50 520 2020-02-15T06:59:33Z +50 552 2020-02-15T06:59:33Z +50 591 2020-02-15T06:59:33Z +50 621 2020-02-15T06:59:33Z +50 632 2020-02-15T06:59:33Z +50 645 2020-02-15T06:59:33Z +50 672 2020-02-15T06:59:33Z +50 717 2020-02-15T06:59:33Z +50 732 2020-02-15T06:59:33Z +50 795 2020-02-15T06:59:33Z +50 829 2020-02-15T06:59:33Z +50 840 2020-02-15T06:59:33Z +50 897 2020-02-15T06:59:33Z +50 918 2020-02-15T06:59:33Z +50 924 2020-02-15T06:59:33Z +50 957 2020-02-15T06:59:33Z +51 5 2020-02-15T06:59:33Z +51 63 2020-02-15T06:59:33Z +51 103 2020-02-15T06:59:33Z +51 112 2020-02-15T06:59:33Z +51 121 2020-02-15T06:59:33Z +51 153 2020-02-15T06:59:33Z +51 395 2020-02-15T06:59:33Z +51 408 2020-02-15T06:59:33Z +51 420 2020-02-15T06:59:33Z +51 461 2020-02-15T06:59:33Z +51 490 2020-02-15T06:59:33Z +51 525 2020-02-15T06:59:33Z +51 627 2020-02-15T06:59:33Z +51 678 2020-02-15T06:59:33Z +51 733 2020-02-15T06:59:33Z +51 734 2020-02-15T06:59:33Z +51 737 2020-02-15T06:59:33Z +51 750 2020-02-15T06:59:33Z +51 847 2020-02-15T06:59:33Z +51 891 2020-02-15T06:59:33Z +51 895 2020-02-15T06:59:33Z +51 940 2020-02-15T06:59:33Z +51 974 2020-02-15T06:59:33Z +51 990 2020-02-15T06:59:33Z +51 993 2020-02-15T06:59:33Z +52 20 2020-02-15T06:59:33Z +52 92 2020-02-15T06:59:33Z +52 96 2020-02-15T06:59:33Z +52 108 2020-02-15T06:59:33Z +52 203 2020-02-15T06:59:33Z +52 249 2020-02-15T06:59:33Z +52 341 2020-02-15T06:59:33Z +52 376 2020-02-15T06:59:33Z +52 388 2020-02-15T06:59:33Z +52 407 2020-02-15T06:59:33Z +52 424 2020-02-15T06:59:33Z +52 474 2020-02-15T06:59:33Z +52 515 2020-02-15T06:59:33Z +52 517 2020-02-15T06:59:33Z +52 584 2020-02-15T06:59:33Z +52 596 2020-02-15T06:59:33Z +52 664 2020-02-15T06:59:33Z +52 675 2020-02-15T06:59:33Z +52 689 2020-02-15T06:59:33Z +52 714 2020-02-15T06:59:33Z +52 812 2020-02-15T06:59:33Z +52 878 2020-02-15T06:59:33Z +52 879 2020-02-15T06:59:33Z +52 915 2020-02-15T06:59:33Z +52 951 2020-02-15T06:59:33Z +52 999 2020-02-15T06:59:33Z +53 1 2020-02-15T06:59:33Z +53 9 2020-02-15T06:59:33Z +53 51 2020-02-15T06:59:33Z +53 58 2020-02-15T06:59:33Z +53 109 2020-02-15T06:59:33Z +53 122 2020-02-15T06:59:33Z +53 126 2020-02-15T06:59:33Z +53 181 2020-02-15T06:59:33Z +53 256 2020-02-15T06:59:33Z +53 268 2020-02-15T06:59:33Z +53 285 2020-02-15T06:59:33Z +53 307 2020-02-15T06:59:33Z +53 358 2020-02-15T06:59:33Z +53 386 2020-02-15T06:59:33Z +53 447 2020-02-15T06:59:33Z +53 465 2020-02-15T06:59:33Z +53 490 2020-02-15T06:59:33Z +53 492 2020-02-15T06:59:33Z +53 508 2020-02-15T06:59:33Z +53 518 2020-02-15T06:59:33Z +53 573 2020-02-15T06:59:33Z +53 576 2020-02-15T06:59:33Z +53 577 2020-02-15T06:59:33Z +53 697 2020-02-15T06:59:33Z +53 725 2020-02-15T06:59:33Z +53 727 2020-02-15T06:59:33Z +53 937 2020-02-15T06:59:33Z +53 947 2020-02-15T06:59:33Z +53 961 2020-02-15T06:59:33Z +53 980 2020-02-15T06:59:33Z +54 84 2020-02-15T06:59:33Z +54 129 2020-02-15T06:59:33Z +54 150 2020-02-15T06:59:33Z +54 184 2020-02-15T06:59:33Z +54 285 2020-02-15T06:59:33Z +54 292 2020-02-15T06:59:33Z +54 301 2020-02-15T06:59:33Z +54 348 2020-02-15T06:59:33Z +54 489 2020-02-15T06:59:33Z +54 510 2020-02-15T06:59:33Z +54 524 2020-02-15T06:59:33Z +54 546 2020-02-15T06:59:33Z +54 600 2020-02-15T06:59:33Z +54 636 2020-02-15T06:59:33Z +54 649 2020-02-15T06:59:33Z +54 658 2020-02-15T06:59:33Z +54 754 2020-02-15T06:59:33Z +54 764 2020-02-15T06:59:33Z +54 842 2020-02-15T06:59:33Z +54 858 2020-02-15T06:59:33Z +54 861 2020-02-15T06:59:33Z +54 913 2020-02-15T06:59:33Z +54 970 2020-02-15T06:59:33Z +54 988 2020-02-15T06:59:33Z +54 990 2020-02-15T06:59:33Z +55 8 2020-02-15T06:59:33Z +55 27 2020-02-15T06:59:33Z +55 75 2020-02-15T06:59:33Z +55 197 2020-02-15T06:59:33Z +55 307 2020-02-15T06:59:33Z +55 320 2020-02-15T06:59:33Z +55 340 2020-02-15T06:59:33Z +55 403 2020-02-15T06:59:33Z +55 485 2020-02-15T06:59:33Z +55 486 2020-02-15T06:59:33Z +55 603 2020-02-15T06:59:33Z +55 612 2020-02-15T06:59:33Z +55 620 2020-02-15T06:59:33Z +55 709 2020-02-15T06:59:33Z +55 776 2020-02-15T06:59:33Z +55 790 2020-02-15T06:59:33Z +55 815 2020-02-15T06:59:33Z +55 827 2020-02-15T06:59:33Z +55 930 2020-02-15T06:59:33Z +55 963 2020-02-15T06:59:33Z +56 63 2020-02-15T06:59:33Z +56 87 2020-02-15T06:59:33Z +56 226 2020-02-15T06:59:33Z +56 236 2020-02-15T06:59:33Z +56 298 2020-02-15T06:59:33Z +56 307 2020-02-15T06:59:33Z +56 354 2020-02-15T06:59:33Z +56 383 2020-02-15T06:59:33Z +56 417 2020-02-15T06:59:33Z +56 421 2020-02-15T06:59:33Z +56 457 2020-02-15T06:59:33Z +56 462 2020-02-15T06:59:33Z +56 474 2020-02-15T06:59:33Z +56 521 2020-02-15T06:59:33Z +56 593 2020-02-15T06:59:33Z +56 728 2020-02-15T06:59:33Z +56 750 2020-02-15T06:59:33Z +56 769 2020-02-15T06:59:33Z +56 781 2020-02-15T06:59:33Z +56 795 2020-02-15T06:59:33Z +56 844 2020-02-15T06:59:33Z +56 851 2020-02-15T06:59:33Z +56 862 2020-02-15T06:59:33Z +56 868 2020-02-15T06:59:33Z +56 892 2020-02-15T06:59:33Z +56 893 2020-02-15T06:59:33Z +56 936 2020-02-15T06:59:33Z +56 965 2020-02-15T06:59:33Z +57 16 2020-02-15T06:59:33Z +57 34 2020-02-15T06:59:33Z +57 101 2020-02-15T06:59:33Z +57 114 2020-02-15T06:59:33Z +57 122 2020-02-15T06:59:33Z +57 134 2020-02-15T06:59:33Z +57 144 2020-02-15T06:59:33Z +57 153 2020-02-15T06:59:33Z +57 192 2020-02-15T06:59:33Z +57 213 2020-02-15T06:59:33Z +57 258 2020-02-15T06:59:33Z +57 267 2020-02-15T06:59:33Z +57 317 2020-02-15T06:59:33Z +57 340 2020-02-15T06:59:33Z +57 393 2020-02-15T06:59:33Z +57 437 2020-02-15T06:59:33Z +57 447 2020-02-15T06:59:33Z +57 502 2020-02-15T06:59:33Z +57 592 2020-02-15T06:59:33Z +57 605 2020-02-15T06:59:33Z +57 637 2020-02-15T06:59:33Z +57 685 2020-02-15T06:59:33Z +57 707 2020-02-15T06:59:33Z +57 714 2020-02-15T06:59:33Z +57 717 2020-02-15T06:59:33Z +57 737 2020-02-15T06:59:33Z +57 767 2020-02-15T06:59:33Z +57 852 2020-02-15T06:59:33Z +57 891 2020-02-15T06:59:33Z +57 918 2020-02-15T06:59:33Z +58 48 2020-02-15T06:59:33Z +58 68 2020-02-15T06:59:33Z +58 119 2020-02-15T06:59:33Z +58 128 2020-02-15T06:59:33Z +58 135 2020-02-15T06:59:33Z +58 175 2020-02-15T06:59:33Z +58 199 2020-02-15T06:59:33Z +58 235 2020-02-15T06:59:33Z +58 242 2020-02-15T06:59:33Z +58 243 2020-02-15T06:59:33Z +58 254 2020-02-15T06:59:33Z +58 306 2020-02-15T06:59:33Z +58 316 2020-02-15T06:59:33Z +58 417 2020-02-15T06:59:33Z +58 426 2020-02-15T06:59:33Z +58 460 2020-02-15T06:59:33Z +58 477 2020-02-15T06:59:33Z +58 541 2020-02-15T06:59:33Z +58 549 2020-02-15T06:59:33Z +58 551 2020-02-15T06:59:33Z +58 553 2020-02-15T06:59:33Z +58 578 2020-02-15T06:59:33Z +58 602 2020-02-15T06:59:33Z +58 632 2020-02-15T06:59:33Z +58 635 2020-02-15T06:59:33Z +58 638 2020-02-15T06:59:33Z +58 698 2020-02-15T06:59:33Z +58 726 2020-02-15T06:59:33Z +58 755 2020-02-15T06:59:33Z +58 800 2020-02-15T06:59:33Z +58 856 2020-02-15T06:59:33Z +58 858 2020-02-15T06:59:33Z +59 5 2020-02-15T06:59:33Z +59 46 2020-02-15T06:59:33Z +59 54 2020-02-15T06:59:33Z +59 72 2020-02-15T06:59:33Z +59 88 2020-02-15T06:59:33Z +59 121 2020-02-15T06:59:33Z +59 129 2020-02-15T06:59:33Z +59 130 2020-02-15T06:59:33Z +59 183 2020-02-15T06:59:33Z +59 210 2020-02-15T06:59:33Z +59 241 2020-02-15T06:59:33Z +59 295 2020-02-15T06:59:33Z +59 418 2020-02-15T06:59:33Z +59 572 2020-02-15T06:59:33Z +59 644 2020-02-15T06:59:33Z +59 650 2020-02-15T06:59:33Z +59 689 2020-02-15T06:59:33Z +59 694 2020-02-15T06:59:33Z +59 702 2020-02-15T06:59:33Z +59 713 2020-02-15T06:59:33Z +59 749 2020-02-15T06:59:33Z +59 772 2020-02-15T06:59:33Z +59 853 2020-02-15T06:59:33Z +59 862 2020-02-15T06:59:33Z +59 943 2020-02-15T06:59:33Z +59 946 2020-02-15T06:59:33Z +59 984 2020-02-15T06:59:33Z +60 31 2020-02-15T06:59:33Z +60 85 2020-02-15T06:59:33Z +60 133 2020-02-15T06:59:33Z +60 142 2020-02-15T06:59:33Z +60 177 2020-02-15T06:59:33Z +60 179 2020-02-15T06:59:33Z +60 186 2020-02-15T06:59:33Z +60 222 2020-02-15T06:59:33Z +60 235 2020-02-15T06:59:33Z +60 239 2020-02-15T06:59:33Z +60 253 2020-02-15T06:59:33Z +60 262 2020-02-15T06:59:33Z +60 297 2020-02-15T06:59:33Z +60 299 2020-02-15T06:59:33Z +60 334 2020-02-15T06:59:33Z +60 376 2020-02-15T06:59:33Z +60 423 2020-02-15T06:59:33Z +60 436 2020-02-15T06:59:33Z +60 493 2020-02-15T06:59:33Z +60 534 2020-02-15T06:59:33Z +60 551 2020-02-15T06:59:33Z +60 658 2020-02-15T06:59:33Z +60 665 2020-02-15T06:59:33Z +60 679 2020-02-15T06:59:33Z +60 754 2020-02-15T06:59:33Z +60 771 2020-02-15T06:59:33Z +60 783 2020-02-15T06:59:33Z +60 784 2020-02-15T06:59:33Z +60 805 2020-02-15T06:59:33Z +60 830 2020-02-15T06:59:33Z +60 835 2020-02-15T06:59:33Z +60 928 2020-02-15T06:59:33Z +60 952 2020-02-15T06:59:33Z +60 971 2020-02-15T06:59:33Z +60 986 2020-02-15T06:59:33Z +61 235 2020-02-15T06:59:33Z +61 237 2020-02-15T06:59:33Z +61 307 2020-02-15T06:59:33Z +61 362 2020-02-15T06:59:33Z +61 372 2020-02-15T06:59:33Z +61 374 2020-02-15T06:59:33Z +61 423 2020-02-15T06:59:33Z +61 433 2020-02-15T06:59:33Z +61 508 2020-02-15T06:59:33Z +61 518 2020-02-15T06:59:33Z +61 519 2020-02-15T06:59:33Z +61 535 2020-02-15T06:59:33Z +61 537 2020-02-15T06:59:33Z +61 585 2020-02-15T06:59:33Z +61 639 2020-02-15T06:59:33Z +61 648 2020-02-15T06:59:33Z +61 649 2020-02-15T06:59:33Z +61 703 2020-02-15T06:59:33Z +61 752 2020-02-15T06:59:33Z +61 766 2020-02-15T06:59:33Z +61 767 2020-02-15T06:59:33Z +61 780 2020-02-15T06:59:33Z +61 831 2020-02-15T06:59:33Z +61 832 2020-02-15T06:59:33Z +61 990 2020-02-15T06:59:33Z +62 6 2020-02-15T06:59:33Z +62 42 2020-02-15T06:59:33Z +62 54 2020-02-15T06:59:33Z +62 100 2020-02-15T06:59:33Z +62 101 2020-02-15T06:59:33Z +62 129 2020-02-15T06:59:33Z +62 198 2020-02-15T06:59:33Z +62 211 2020-02-15T06:59:33Z +62 231 2020-02-15T06:59:33Z +62 272 2020-02-15T06:59:33Z +62 295 2020-02-15T06:59:33Z +62 337 2020-02-15T06:59:33Z +62 375 2020-02-15T06:59:33Z +62 385 2020-02-15T06:59:33Z +62 393 2020-02-15T06:59:33Z +62 398 2020-02-15T06:59:33Z +62 406 2020-02-15T06:59:33Z +62 413 2020-02-15T06:59:33Z +62 428 2020-02-15T06:59:33Z +62 445 2020-02-15T06:59:33Z +62 457 2020-02-15T06:59:33Z +62 465 2020-02-15T06:59:33Z +62 688 2020-02-15T06:59:33Z +62 707 2020-02-15T06:59:33Z +62 719 2020-02-15T06:59:33Z +62 951 2020-02-15T06:59:33Z +62 981 2020-02-15T06:59:33Z +62 988 2020-02-15T06:59:33Z +62 990 2020-02-15T06:59:33Z +63 73 2020-02-15T06:59:33Z +63 134 2020-02-15T06:59:33Z +63 167 2020-02-15T06:59:33Z +63 208 2020-02-15T06:59:33Z +63 225 2020-02-15T06:59:33Z +63 248 2020-02-15T06:59:33Z +63 249 2020-02-15T06:59:33Z +63 278 2020-02-15T06:59:33Z +63 392 2020-02-15T06:59:33Z +63 517 2020-02-15T06:59:33Z +63 633 2020-02-15T06:59:33Z +63 763 2020-02-15T06:59:33Z +63 781 2020-02-15T06:59:33Z +63 809 2020-02-15T06:59:33Z +63 893 2020-02-15T06:59:33Z +63 932 2020-02-15T06:59:33Z +63 944 2020-02-15T06:59:33Z +63 945 2020-02-15T06:59:33Z +63 981 2020-02-15T06:59:33Z +64 3 2020-02-15T06:59:33Z +64 10 2020-02-15T06:59:33Z +64 37 2020-02-15T06:59:33Z +64 87 2020-02-15T06:59:33Z +64 88 2020-02-15T06:59:33Z +64 124 2020-02-15T06:59:33Z +64 197 2020-02-15T06:59:33Z +64 280 2020-02-15T06:59:33Z +64 291 2020-02-15T06:59:33Z +64 307 2020-02-15T06:59:33Z +64 335 2020-02-15T06:59:33Z +64 345 2020-02-15T06:59:33Z +64 448 2020-02-15T06:59:33Z +64 469 2020-02-15T06:59:33Z +64 471 2020-02-15T06:59:33Z +64 506 2020-02-15T06:59:33Z +64 543 2020-02-15T06:59:33Z +64 557 2020-02-15T06:59:33Z +64 569 2020-02-15T06:59:33Z +64 572 2020-02-15T06:59:33Z +64 597 2020-02-15T06:59:33Z +64 616 2020-02-15T06:59:33Z +64 646 2020-02-15T06:59:33Z +64 694 2020-02-15T06:59:33Z +64 832 2020-02-15T06:59:33Z +64 852 2020-02-15T06:59:33Z +64 860 2020-02-15T06:59:33Z +64 921 2020-02-15T06:59:33Z +64 925 2020-02-15T06:59:33Z +64 980 2020-02-15T06:59:33Z +65 39 2020-02-15T06:59:33Z +65 46 2020-02-15T06:59:33Z +65 97 2020-02-15T06:59:33Z +65 106 2020-02-15T06:59:33Z +65 117 2020-02-15T06:59:33Z +65 125 2020-02-15T06:59:33Z +65 158 2020-02-15T06:59:33Z +65 276 2020-02-15T06:59:33Z +65 305 2020-02-15T06:59:33Z +65 338 2020-02-15T06:59:33Z +65 347 2020-02-15T06:59:33Z +65 371 2020-02-15T06:59:33Z +65 398 2020-02-15T06:59:33Z +65 471 2020-02-15T06:59:33Z +65 475 2020-02-15T06:59:33Z +65 476 2020-02-15T06:59:33Z +65 491 2020-02-15T06:59:33Z +65 496 2020-02-15T06:59:33Z +65 516 2020-02-15T06:59:33Z +65 517 2020-02-15T06:59:33Z +65 541 2020-02-15T06:59:33Z +65 556 2020-02-15T06:59:33Z +65 571 2020-02-15T06:59:33Z +65 577 2020-02-15T06:59:33Z +65 615 2020-02-15T06:59:33Z +65 658 2020-02-15T06:59:33Z +65 683 2020-02-15T06:59:33Z +65 694 2020-02-15T06:59:33Z +65 714 2020-02-15T06:59:33Z +65 735 2020-02-15T06:59:33Z +65 852 2020-02-15T06:59:33Z +65 938 2020-02-15T06:59:33Z +65 951 2020-02-15T06:59:33Z +65 965 2020-02-15T06:59:33Z +66 55 2020-02-15T06:59:33Z +66 143 2020-02-15T06:59:33Z +66 207 2020-02-15T06:59:33Z +66 226 2020-02-15T06:59:33Z +66 229 2020-02-15T06:59:33Z +66 230 2020-02-15T06:59:33Z +66 283 2020-02-15T06:59:33Z +66 300 2020-02-15T06:59:33Z +66 342 2020-02-15T06:59:33Z +66 350 2020-02-15T06:59:33Z +66 361 2020-02-15T06:59:33Z +66 376 2020-02-15T06:59:33Z +66 424 2020-02-15T06:59:33Z +66 434 2020-02-15T06:59:33Z +66 553 2020-02-15T06:59:33Z +66 608 2020-02-15T06:59:33Z +66 676 2020-02-15T06:59:33Z +66 697 2020-02-15T06:59:33Z +66 706 2020-02-15T06:59:33Z +66 725 2020-02-15T06:59:33Z +66 769 2020-02-15T06:59:33Z +66 793 2020-02-15T06:59:33Z +66 829 2020-02-15T06:59:33Z +66 871 2020-02-15T06:59:33Z +66 909 2020-02-15T06:59:33Z +66 915 2020-02-15T06:59:33Z +66 928 2020-02-15T06:59:33Z +66 951 2020-02-15T06:59:33Z +66 957 2020-02-15T06:59:33Z +66 960 2020-02-15T06:59:33Z +66 999 2020-02-15T06:59:33Z +67 24 2020-02-15T06:59:33Z +67 57 2020-02-15T06:59:33Z +67 67 2020-02-15T06:59:33Z +67 144 2020-02-15T06:59:33Z +67 242 2020-02-15T06:59:33Z +67 244 2020-02-15T06:59:33Z +67 256 2020-02-15T06:59:33Z +67 408 2020-02-15T06:59:33Z +67 477 2020-02-15T06:59:33Z +67 496 2020-02-15T06:59:33Z +67 512 2020-02-15T06:59:33Z +67 576 2020-02-15T06:59:33Z +67 601 2020-02-15T06:59:33Z +67 725 2020-02-15T06:59:33Z +67 726 2020-02-15T06:59:33Z +67 731 2020-02-15T06:59:33Z +67 766 2020-02-15T06:59:33Z +67 861 2020-02-15T06:59:33Z +67 870 2020-02-15T06:59:33Z +67 915 2020-02-15T06:59:33Z +67 945 2020-02-15T06:59:33Z +67 972 2020-02-15T06:59:33Z +67 981 2020-02-15T06:59:33Z +68 9 2020-02-15T06:59:33Z +68 45 2020-02-15T06:59:33Z +68 133 2020-02-15T06:59:33Z +68 161 2020-02-15T06:59:33Z +68 205 2020-02-15T06:59:33Z +68 213 2020-02-15T06:59:33Z +68 215 2020-02-15T06:59:33Z +68 255 2020-02-15T06:59:33Z +68 296 2020-02-15T06:59:33Z +68 315 2020-02-15T06:59:33Z +68 325 2020-02-15T06:59:33Z +68 331 2020-02-15T06:59:33Z +68 347 2020-02-15T06:59:33Z +68 357 2020-02-15T06:59:33Z +68 378 2020-02-15T06:59:33Z +68 380 2020-02-15T06:59:33Z +68 386 2020-02-15T06:59:33Z +68 396 2020-02-15T06:59:33Z +68 435 2020-02-15T06:59:33Z +68 497 2020-02-15T06:59:33Z +68 607 2020-02-15T06:59:33Z +68 654 2020-02-15T06:59:33Z +68 665 2020-02-15T06:59:33Z +68 671 2020-02-15T06:59:33Z +68 706 2020-02-15T06:59:33Z +68 747 2020-02-15T06:59:33Z +68 834 2020-02-15T06:59:33Z +68 839 2020-02-15T06:59:33Z +68 840 2020-02-15T06:59:33Z +68 971 2020-02-15T06:59:33Z +69 15 2020-02-15T06:59:33Z +69 88 2020-02-15T06:59:33Z +69 111 2020-02-15T06:59:33Z +69 202 2020-02-15T06:59:33Z +69 236 2020-02-15T06:59:33Z +69 292 2020-02-15T06:59:33Z +69 300 2020-02-15T06:59:33Z +69 306 2020-02-15T06:59:33Z +69 374 2020-02-15T06:59:33Z +69 396 2020-02-15T06:59:33Z +69 452 2020-02-15T06:59:33Z +69 466 2020-02-15T06:59:33Z +69 529 2020-02-15T06:59:33Z +69 612 2020-02-15T06:59:33Z +69 720 2020-02-15T06:59:33Z +69 722 2020-02-15T06:59:33Z +69 761 2020-02-15T06:59:33Z +69 791 2020-02-15T06:59:33Z +69 864 2020-02-15T06:59:33Z +69 877 2020-02-15T06:59:33Z +69 914 2020-02-15T06:59:33Z +70 50 2020-02-15T06:59:33Z +70 53 2020-02-15T06:59:33Z +70 92 2020-02-15T06:59:33Z +70 202 2020-02-15T06:59:33Z +70 227 2020-02-15T06:59:33Z +70 249 2020-02-15T06:59:33Z +70 290 2020-02-15T06:59:33Z +70 304 2020-02-15T06:59:33Z +70 343 2020-02-15T06:59:33Z +70 414 2020-02-15T06:59:33Z +70 453 2020-02-15T06:59:33Z +70 466 2020-02-15T06:59:33Z +70 504 2020-02-15T06:59:33Z +70 584 2020-02-15T06:59:33Z +70 628 2020-02-15T06:59:33Z +70 654 2020-02-15T06:59:33Z +70 725 2020-02-15T06:59:33Z +70 823 2020-02-15T06:59:33Z +70 834 2020-02-15T06:59:33Z +70 856 2020-02-15T06:59:33Z +70 869 2020-02-15T06:59:33Z +70 953 2020-02-15T06:59:33Z +70 964 2020-02-15T06:59:33Z +71 26 2020-02-15T06:59:33Z +71 52 2020-02-15T06:59:33Z +71 233 2020-02-15T06:59:33Z +71 317 2020-02-15T06:59:33Z +71 359 2020-02-15T06:59:33Z +71 362 2020-02-15T06:59:33Z +71 385 2020-02-15T06:59:33Z +71 399 2020-02-15T06:59:33Z +71 450 2020-02-15T06:59:33Z +71 532 2020-02-15T06:59:33Z +71 560 2020-02-15T06:59:33Z +71 574 2020-02-15T06:59:33Z +71 638 2020-02-15T06:59:33Z +71 773 2020-02-15T06:59:33Z +71 833 2020-02-15T06:59:33Z +71 874 2020-02-15T06:59:33Z +71 918 2020-02-15T06:59:33Z +71 956 2020-02-15T06:59:33Z +72 34 2020-02-15T06:59:33Z +72 144 2020-02-15T06:59:33Z +72 237 2020-02-15T06:59:33Z +72 249 2020-02-15T06:59:33Z +72 286 2020-02-15T06:59:33Z +72 296 2020-02-15T06:59:33Z +72 325 2020-02-15T06:59:33Z +72 331 2020-02-15T06:59:33Z +72 405 2020-02-15T06:59:33Z +72 450 2020-02-15T06:59:33Z +72 550 2020-02-15T06:59:33Z +72 609 2020-02-15T06:59:33Z +72 623 2020-02-15T06:59:33Z +72 636 2020-02-15T06:59:33Z +72 640 2020-02-15T06:59:33Z +72 665 2020-02-15T06:59:33Z +72 718 2020-02-15T06:59:33Z +72 743 2020-02-15T06:59:33Z +72 757 2020-02-15T06:59:33Z +72 773 2020-02-15T06:59:33Z +72 854 2020-02-15T06:59:33Z +72 865 2020-02-15T06:59:33Z +72 938 2020-02-15T06:59:33Z +72 956 2020-02-15T06:59:33Z +72 964 2020-02-15T06:59:33Z +72 969 2020-02-15T06:59:33Z +73 36 2020-02-15T06:59:33Z +73 45 2020-02-15T06:59:33Z +73 51 2020-02-15T06:59:33Z +73 77 2020-02-15T06:59:33Z +73 148 2020-02-15T06:59:33Z +73 245 2020-02-15T06:59:33Z +73 275 2020-02-15T06:59:33Z +73 322 2020-02-15T06:59:33Z +73 374 2020-02-15T06:59:33Z +73 379 2020-02-15T06:59:33Z +73 467 2020-02-15T06:59:33Z +73 548 2020-02-15T06:59:33Z +73 561 2020-02-15T06:59:33Z +73 562 2020-02-15T06:59:33Z +73 565 2020-02-15T06:59:33Z +73 627 2020-02-15T06:59:33Z +73 666 2020-02-15T06:59:33Z +73 667 2020-02-15T06:59:33Z +73 707 2020-02-15T06:59:33Z +73 748 2020-02-15T06:59:33Z +73 772 2020-02-15T06:59:33Z +73 823 2020-02-15T06:59:33Z +73 936 2020-02-15T06:59:33Z +73 946 2020-02-15T06:59:33Z +73 950 2020-02-15T06:59:33Z +73 998 2020-02-15T06:59:33Z +74 28 2020-02-15T06:59:33Z +74 44 2020-02-15T06:59:33Z +74 117 2020-02-15T06:59:33Z +74 185 2020-02-15T06:59:33Z +74 192 2020-02-15T06:59:33Z +74 203 2020-02-15T06:59:33Z +74 263 2020-02-15T06:59:33Z +74 321 2020-02-15T06:59:33Z +74 415 2020-02-15T06:59:33Z +74 484 2020-02-15T06:59:33Z +74 503 2020-02-15T06:59:33Z +74 537 2020-02-15T06:59:33Z +74 543 2020-02-15T06:59:33Z +74 617 2020-02-15T06:59:33Z +74 626 2020-02-15T06:59:33Z +74 637 2020-02-15T06:59:33Z +74 663 2020-02-15T06:59:33Z +74 704 2020-02-15T06:59:33Z +74 720 2020-02-15T06:59:33Z +74 747 2020-02-15T06:59:33Z +74 780 2020-02-15T06:59:33Z +74 804 2020-02-15T06:59:33Z +74 834 2020-02-15T06:59:33Z +74 836 2020-02-15T06:59:33Z +74 848 2020-02-15T06:59:33Z +74 872 2020-02-15T06:59:33Z +74 902 2020-02-15T06:59:33Z +74 956 2020-02-15T06:59:33Z +75 12 2020-02-15T06:59:33Z +75 34 2020-02-15T06:59:33Z +75 143 2020-02-15T06:59:33Z +75 170 2020-02-15T06:59:33Z +75 222 2020-02-15T06:59:33Z +75 301 2020-02-15T06:59:33Z +75 347 2020-02-15T06:59:33Z +75 372 2020-02-15T06:59:33Z +75 436 2020-02-15T06:59:33Z +75 445 2020-02-15T06:59:33Z +75 446 2020-02-15T06:59:33Z +75 492 2020-02-15T06:59:33Z +75 498 2020-02-15T06:59:33Z +75 508 2020-02-15T06:59:33Z +75 541 2020-02-15T06:59:33Z +75 547 2020-02-15T06:59:33Z +75 579 2020-02-15T06:59:33Z +75 645 2020-02-15T06:59:33Z +75 667 2020-02-15T06:59:33Z +75 744 2020-02-15T06:59:33Z +75 764 2020-02-15T06:59:33Z +75 780 2020-02-15T06:59:33Z +75 870 2020-02-15T06:59:33Z +75 920 2020-02-15T06:59:33Z +76 60 2020-02-15T06:59:33Z +76 66 2020-02-15T06:59:33Z +76 68 2020-02-15T06:59:33Z +76 95 2020-02-15T06:59:33Z +76 122 2020-02-15T06:59:33Z +76 187 2020-02-15T06:59:33Z +76 223 2020-02-15T06:59:33Z +76 234 2020-02-15T06:59:33Z +76 251 2020-02-15T06:59:33Z +76 348 2020-02-15T06:59:33Z +76 444 2020-02-15T06:59:33Z +76 464 2020-02-15T06:59:33Z +76 474 2020-02-15T06:59:33Z +76 498 2020-02-15T06:59:33Z +76 568 2020-02-15T06:59:33Z +76 604 2020-02-15T06:59:33Z +76 606 2020-02-15T06:59:33Z +76 642 2020-02-15T06:59:33Z +76 648 2020-02-15T06:59:33Z +76 650 2020-02-15T06:59:33Z +76 709 2020-02-15T06:59:33Z +76 760 2020-02-15T06:59:33Z +76 765 2020-02-15T06:59:33Z +76 781 2020-02-15T06:59:33Z +76 850 2020-02-15T06:59:33Z +76 862 2020-02-15T06:59:33Z +76 866 2020-02-15T06:59:33Z +76 870 2020-02-15T06:59:33Z +76 912 2020-02-15T06:59:33Z +76 935 2020-02-15T06:59:33Z +76 958 2020-02-15T06:59:33Z +77 13 2020-02-15T06:59:33Z +77 22 2020-02-15T06:59:33Z +77 40 2020-02-15T06:59:33Z +77 73 2020-02-15T06:59:33Z +77 78 2020-02-15T06:59:33Z +77 153 2020-02-15T06:59:33Z +77 224 2020-02-15T06:59:33Z +77 240 2020-02-15T06:59:33Z +77 245 2020-02-15T06:59:33Z +77 261 2020-02-15T06:59:33Z +77 343 2020-02-15T06:59:33Z +77 442 2020-02-15T06:59:33Z +77 458 2020-02-15T06:59:33Z +77 538 2020-02-15T06:59:33Z +77 566 2020-02-15T06:59:33Z +77 612 2020-02-15T06:59:33Z +77 635 2020-02-15T06:59:33Z +77 694 2020-02-15T06:59:33Z +77 749 2020-02-15T06:59:33Z +77 938 2020-02-15T06:59:33Z +77 943 2020-02-15T06:59:33Z +77 963 2020-02-15T06:59:33Z +77 969 2020-02-15T06:59:33Z +77 993 2020-02-15T06:59:33Z +78 86 2020-02-15T06:59:33Z +78 239 2020-02-15T06:59:33Z +78 260 2020-02-15T06:59:33Z +78 261 2020-02-15T06:59:33Z +78 265 2020-02-15T06:59:33Z +78 301 2020-02-15T06:59:33Z +78 387 2020-02-15T06:59:33Z +78 393 2020-02-15T06:59:33Z +78 428 2020-02-15T06:59:33Z +78 457 2020-02-15T06:59:33Z +78 505 2020-02-15T06:59:33Z +78 520 2020-02-15T06:59:33Z +78 530 2020-02-15T06:59:33Z +78 549 2020-02-15T06:59:33Z +78 552 2020-02-15T06:59:33Z +78 599 2020-02-15T06:59:33Z +78 670 2020-02-15T06:59:33Z +78 674 2020-02-15T06:59:33Z +78 689 2020-02-15T06:59:33Z +78 762 2020-02-15T06:59:33Z +78 767 2020-02-15T06:59:33Z +78 811 2020-02-15T06:59:33Z +78 852 2020-02-15T06:59:33Z +78 880 2020-02-15T06:59:33Z +78 963 2020-02-15T06:59:33Z +78 968 2020-02-15T06:59:33Z +79 32 2020-02-15T06:59:33Z +79 33 2020-02-15T06:59:33Z +79 40 2020-02-15T06:59:33Z +79 141 2020-02-15T06:59:33Z +79 205 2020-02-15T06:59:33Z +79 230 2020-02-15T06:59:33Z +79 242 2020-02-15T06:59:33Z +79 262 2020-02-15T06:59:33Z +79 267 2020-02-15T06:59:33Z +79 269 2020-02-15T06:59:33Z +79 299 2020-02-15T06:59:33Z +79 367 2020-02-15T06:59:33Z +79 428 2020-02-15T06:59:33Z +79 430 2020-02-15T06:59:33Z +79 473 2020-02-15T06:59:33Z +79 607 2020-02-15T06:59:33Z +79 628 2020-02-15T06:59:33Z +79 634 2020-02-15T06:59:33Z +79 646 2020-02-15T06:59:33Z +79 727 2020-02-15T06:59:33Z +79 750 2020-02-15T06:59:33Z +79 753 2020-02-15T06:59:33Z +79 769 2020-02-15T06:59:33Z +79 776 2020-02-15T06:59:33Z +79 788 2020-02-15T06:59:33Z +79 840 2020-02-15T06:59:33Z +79 853 2020-02-15T06:59:33Z +79 916 2020-02-15T06:59:33Z +80 69 2020-02-15T06:59:33Z +80 118 2020-02-15T06:59:33Z +80 124 2020-02-15T06:59:33Z +80 175 2020-02-15T06:59:33Z +80 207 2020-02-15T06:59:33Z +80 212 2020-02-15T06:59:33Z +80 260 2020-02-15T06:59:33Z +80 262 2020-02-15T06:59:33Z +80 280 2020-02-15T06:59:33Z +80 341 2020-02-15T06:59:33Z +80 342 2020-02-15T06:59:33Z +80 343 2020-02-15T06:59:33Z +80 362 2020-02-15T06:59:33Z +80 436 2020-02-15T06:59:33Z +80 475 2020-02-15T06:59:33Z +80 553 2020-02-15T06:59:33Z +80 619 2020-02-15T06:59:33Z +80 622 2020-02-15T06:59:33Z +80 680 2020-02-15T06:59:33Z +80 687 2020-02-15T06:59:33Z +80 688 2020-02-15T06:59:33Z +80 709 2020-02-15T06:59:33Z +80 788 2020-02-15T06:59:33Z +80 807 2020-02-15T06:59:33Z +80 858 2020-02-15T06:59:33Z +80 888 2020-02-15T06:59:33Z +80 941 2020-02-15T06:59:33Z +80 979 2020-02-15T06:59:33Z +81 4 2020-02-15T06:59:33Z +81 11 2020-02-15T06:59:33Z +81 59 2020-02-15T06:59:33Z +81 89 2020-02-15T06:59:33Z +81 178 2020-02-15T06:59:33Z +81 186 2020-02-15T06:59:33Z +81 194 2020-02-15T06:59:33Z +81 215 2020-02-15T06:59:33Z +81 219 2020-02-15T06:59:33Z +81 232 2020-02-15T06:59:33Z +81 260 2020-02-15T06:59:33Z +81 267 2020-02-15T06:59:33Z +81 268 2020-02-15T06:59:33Z +81 304 2020-02-15T06:59:33Z +81 332 2020-02-15T06:59:33Z +81 389 2020-02-15T06:59:33Z +81 398 2020-02-15T06:59:33Z +81 453 2020-02-15T06:59:33Z +81 458 2020-02-15T06:59:33Z +81 465 2020-02-15T06:59:33Z +81 505 2020-02-15T06:59:33Z +81 508 2020-02-15T06:59:33Z +81 527 2020-02-15T06:59:33Z +81 545 2020-02-15T06:59:33Z +81 564 2020-02-15T06:59:33Z +81 578 2020-02-15T06:59:33Z +81 579 2020-02-15T06:59:33Z +81 613 2020-02-15T06:59:33Z +81 619 2020-02-15T06:59:33Z +81 643 2020-02-15T06:59:33Z +81 692 2020-02-15T06:59:33Z +81 710 2020-02-15T06:59:33Z +81 729 2020-02-15T06:59:33Z +81 761 2020-02-15T06:59:33Z +81 827 2020-02-15T06:59:33Z +81 910 2020-02-15T06:59:33Z +82 17 2020-02-15T06:59:33Z +82 33 2020-02-15T06:59:33Z +82 104 2020-02-15T06:59:33Z +82 143 2020-02-15T06:59:33Z +82 188 2020-02-15T06:59:33Z +82 242 2020-02-15T06:59:33Z +82 247 2020-02-15T06:59:33Z +82 290 2020-02-15T06:59:33Z +82 306 2020-02-15T06:59:33Z +82 316 2020-02-15T06:59:33Z +82 344 2020-02-15T06:59:33Z +82 453 2020-02-15T06:59:33Z +82 468 2020-02-15T06:59:33Z +82 480 2020-02-15T06:59:33Z +82 497 2020-02-15T06:59:33Z +82 503 2020-02-15T06:59:33Z +82 527 2020-02-15T06:59:33Z +82 551 2020-02-15T06:59:33Z +82 561 2020-02-15T06:59:33Z +82 750 2020-02-15T06:59:33Z +82 787 2020-02-15T06:59:33Z +82 802 2020-02-15T06:59:33Z +82 838 2020-02-15T06:59:33Z +82 839 2020-02-15T06:59:33Z +82 870 2020-02-15T06:59:33Z +82 877 2020-02-15T06:59:33Z +82 893 2020-02-15T06:59:33Z +82 911 2020-02-15T06:59:33Z +82 954 2020-02-15T06:59:33Z +82 978 2020-02-15T06:59:33Z +82 985 2020-02-15T06:59:33Z +83 49 2020-02-15T06:59:33Z +83 52 2020-02-15T06:59:33Z +83 58 2020-02-15T06:59:33Z +83 110 2020-02-15T06:59:33Z +83 120 2020-02-15T06:59:33Z +83 121 2020-02-15T06:59:33Z +83 135 2020-02-15T06:59:33Z +83 165 2020-02-15T06:59:33Z +83 217 2020-02-15T06:59:33Z +83 247 2020-02-15T06:59:33Z +83 249 2020-02-15T06:59:33Z +83 263 2020-02-15T06:59:33Z +83 268 2020-02-15T06:59:33Z +83 279 2020-02-15T06:59:33Z +83 281 2020-02-15T06:59:33Z +83 339 2020-02-15T06:59:33Z +83 340 2020-02-15T06:59:33Z +83 369 2020-02-15T06:59:33Z +83 412 2020-02-15T06:59:33Z +83 519 2020-02-15T06:59:33Z +83 529 2020-02-15T06:59:33Z +83 615 2020-02-15T06:59:33Z +83 631 2020-02-15T06:59:33Z +83 655 2020-02-15T06:59:33Z +83 672 2020-02-15T06:59:33Z +83 686 2020-02-15T06:59:33Z +83 719 2020-02-15T06:59:33Z +83 764 2020-02-15T06:59:33Z +83 777 2020-02-15T06:59:33Z +83 784 2020-02-15T06:59:33Z +83 833 2020-02-15T06:59:33Z +83 873 2020-02-15T06:59:33Z +83 932 2020-02-15T06:59:33Z +84 19 2020-02-15T06:59:33Z +84 39 2020-02-15T06:59:33Z +84 46 2020-02-15T06:59:33Z +84 175 2020-02-15T06:59:33Z +84 238 2020-02-15T06:59:33Z +84 281 2020-02-15T06:59:33Z +84 290 2020-02-15T06:59:33Z +84 312 2020-02-15T06:59:33Z +84 317 2020-02-15T06:59:33Z +84 413 2020-02-15T06:59:33Z +84 414 2020-02-15T06:59:33Z +84 460 2020-02-15T06:59:33Z +84 479 2020-02-15T06:59:33Z +84 491 2020-02-15T06:59:33Z +84 529 2020-02-15T06:59:33Z +84 540 2020-02-15T06:59:33Z +84 566 2020-02-15T06:59:33Z +84 574 2020-02-15T06:59:33Z +84 589 2020-02-15T06:59:33Z +84 616 2020-02-15T06:59:33Z +84 646 2020-02-15T06:59:33Z +84 703 2020-02-15T06:59:33Z +84 729 2020-02-15T06:59:33Z +84 764 2020-02-15T06:59:33Z +84 782 2020-02-15T06:59:33Z +84 809 2020-02-15T06:59:33Z +84 830 2020-02-15T06:59:33Z +84 843 2020-02-15T06:59:33Z +84 887 2020-02-15T06:59:33Z +84 975 2020-02-15T06:59:33Z +84 996 2020-02-15T06:59:33Z +85 2 2020-02-15T06:59:33Z +85 14 2020-02-15T06:59:33Z +85 72 2020-02-15T06:59:33Z +85 85 2020-02-15T06:59:33Z +85 92 2020-02-15T06:59:33Z +85 148 2020-02-15T06:59:33Z +85 216 2020-02-15T06:59:33Z +85 290 2020-02-15T06:59:33Z +85 296 2020-02-15T06:59:33Z +85 297 2020-02-15T06:59:33Z +85 337 2020-02-15T06:59:33Z +85 383 2020-02-15T06:59:33Z +85 421 2020-02-15T06:59:33Z +85 446 2020-02-15T06:59:33Z +85 461 2020-02-15T06:59:33Z +85 475 2020-02-15T06:59:33Z +85 478 2020-02-15T06:59:33Z +85 522 2020-02-15T06:59:33Z +85 543 2020-02-15T06:59:33Z +85 558 2020-02-15T06:59:33Z +85 591 2020-02-15T06:59:33Z +85 630 2020-02-15T06:59:33Z +85 678 2020-02-15T06:59:33Z +85 711 2020-02-15T06:59:33Z +85 761 2020-02-15T06:59:33Z +85 812 2020-02-15T06:59:33Z +85 869 2020-02-15T06:59:33Z +85 875 2020-02-15T06:59:33Z +85 895 2020-02-15T06:59:33Z +85 957 2020-02-15T06:59:33Z +85 960 2020-02-15T06:59:33Z +86 137 2020-02-15T06:59:33Z +86 163 2020-02-15T06:59:33Z +86 196 2020-02-15T06:59:33Z +86 216 2020-02-15T06:59:33Z +86 249 2020-02-15T06:59:33Z +86 303 2020-02-15T06:59:33Z +86 331 2020-02-15T06:59:33Z +86 364 2020-02-15T06:59:33Z +86 391 2020-02-15T06:59:33Z +86 432 2020-02-15T06:59:33Z +86 482 2020-02-15T06:59:33Z +86 486 2020-02-15T06:59:33Z +86 519 2020-02-15T06:59:33Z +86 520 2020-02-15T06:59:33Z +86 548 2020-02-15T06:59:33Z +86 623 2020-02-15T06:59:33Z +86 631 2020-02-15T06:59:33Z +86 636 2020-02-15T06:59:33Z +86 752 2020-02-15T06:59:33Z +86 760 2020-02-15T06:59:33Z +86 808 2020-02-15T06:59:33Z +86 857 2020-02-15T06:59:33Z +86 878 2020-02-15T06:59:33Z +86 893 2020-02-15T06:59:33Z +86 905 2020-02-15T06:59:33Z +86 923 2020-02-15T06:59:33Z +86 929 2020-02-15T06:59:33Z +87 48 2020-02-15T06:59:33Z +87 157 2020-02-15T06:59:33Z +87 161 2020-02-15T06:59:33Z +87 199 2020-02-15T06:59:33Z +87 207 2020-02-15T06:59:33Z +87 250 2020-02-15T06:59:33Z +87 253 2020-02-15T06:59:33Z +87 312 2020-02-15T06:59:33Z +87 421 2020-02-15T06:59:33Z +87 570 2020-02-15T06:59:33Z +87 599 2020-02-15T06:59:33Z +87 606 2020-02-15T06:59:33Z +87 654 2020-02-15T06:59:33Z +87 679 2020-02-15T06:59:33Z +87 706 2020-02-15T06:59:33Z +87 718 2020-02-15T06:59:33Z +87 721 2020-02-15T06:59:33Z +87 830 2020-02-15T06:59:33Z +87 870 2020-02-15T06:59:33Z +87 952 2020-02-15T06:59:33Z +87 961 2020-02-15T06:59:33Z +88 4 2020-02-15T06:59:33Z +88 76 2020-02-15T06:59:33Z +88 87 2020-02-15T06:59:33Z +88 128 2020-02-15T06:59:33Z +88 170 2020-02-15T06:59:33Z +88 193 2020-02-15T06:59:33Z +88 234 2020-02-15T06:59:33Z +88 304 2020-02-15T06:59:33Z +88 602 2020-02-15T06:59:33Z +88 620 2020-02-15T06:59:33Z +88 668 2020-02-15T06:59:33Z +88 717 2020-02-15T06:59:33Z +88 785 2020-02-15T06:59:33Z +88 819 2020-02-15T06:59:33Z +88 839 2020-02-15T06:59:33Z +88 881 2020-02-15T06:59:33Z +88 908 2020-02-15T06:59:33Z +88 929 2020-02-15T06:59:33Z +88 940 2020-02-15T06:59:33Z +88 968 2020-02-15T06:59:33Z +89 47 2020-02-15T06:59:33Z +89 103 2020-02-15T06:59:33Z +89 117 2020-02-15T06:59:33Z +89 162 2020-02-15T06:59:33Z +89 182 2020-02-15T06:59:33Z +89 187 2020-02-15T06:59:33Z +89 212 2020-02-15T06:59:33Z +89 254 2020-02-15T06:59:33Z +89 266 2020-02-15T06:59:33Z +89 306 2020-02-15T06:59:33Z +89 342 2020-02-15T06:59:33Z +89 406 2020-02-15T06:59:33Z +89 410 2020-02-15T06:59:33Z +89 446 2020-02-15T06:59:33Z +89 473 2020-02-15T06:59:33Z +89 488 2020-02-15T06:59:33Z +89 529 2020-02-15T06:59:33Z +89 542 2020-02-15T06:59:33Z +89 564 2020-02-15T06:59:33Z +89 697 2020-02-15T06:59:33Z +89 833 2020-02-15T06:59:33Z +89 864 2020-02-15T06:59:33Z +89 970 2020-02-15T06:59:33Z +89 976 2020-02-15T06:59:33Z +90 2 2020-02-15T06:59:33Z +90 11 2020-02-15T06:59:33Z +90 100 2020-02-15T06:59:33Z +90 197 2020-02-15T06:59:33Z +90 212 2020-02-15T06:59:33Z +90 262 2020-02-15T06:59:33Z +90 303 2020-02-15T06:59:33Z +90 330 2020-02-15T06:59:33Z +90 363 2020-02-15T06:59:33Z +90 374 2020-02-15T06:59:33Z +90 384 2020-02-15T06:59:33Z +90 385 2020-02-15T06:59:33Z +90 391 2020-02-15T06:59:33Z +90 406 2020-02-15T06:59:33Z +90 433 2020-02-15T06:59:33Z +90 442 2020-02-15T06:59:33Z +90 451 2020-02-15T06:59:33Z +90 520 2020-02-15T06:59:33Z +90 529 2020-02-15T06:59:33Z +90 542 2020-02-15T06:59:33Z +90 586 2020-02-15T06:59:33Z +90 633 2020-02-15T06:59:33Z +90 663 2020-02-15T06:59:33Z +90 676 2020-02-15T06:59:33Z +90 771 2020-02-15T06:59:33Z +90 817 2020-02-15T06:59:33Z +90 838 2020-02-15T06:59:33Z +90 855 2020-02-15T06:59:33Z +90 858 2020-02-15T06:59:33Z +90 868 2020-02-15T06:59:33Z +90 880 2020-02-15T06:59:33Z +90 901 2020-02-15T06:59:33Z +90 925 2020-02-15T06:59:33Z +91 13 2020-02-15T06:59:33Z +91 25 2020-02-15T06:59:33Z +91 48 2020-02-15T06:59:33Z +91 176 2020-02-15T06:59:33Z +91 181 2020-02-15T06:59:33Z +91 190 2020-02-15T06:59:33Z +91 335 2020-02-15T06:59:33Z +91 416 2020-02-15T06:59:33Z +91 447 2020-02-15T06:59:33Z +91 480 2020-02-15T06:59:33Z +91 493 2020-02-15T06:59:33Z +91 509 2020-02-15T06:59:33Z +91 511 2020-02-15T06:59:33Z +91 608 2020-02-15T06:59:33Z +91 807 2020-02-15T06:59:33Z +91 829 2020-02-15T06:59:33Z +91 849 2020-02-15T06:59:33Z +91 859 2020-02-15T06:59:33Z +91 941 2020-02-15T06:59:33Z +91 982 2020-02-15T06:59:33Z +92 90 2020-02-15T06:59:33Z +92 94 2020-02-15T06:59:33Z +92 103 2020-02-15T06:59:33Z +92 104 2020-02-15T06:59:33Z +92 123 2020-02-15T06:59:33Z +92 137 2020-02-15T06:59:33Z +92 207 2020-02-15T06:59:33Z +92 229 2020-02-15T06:59:33Z +92 338 2020-02-15T06:59:33Z +92 381 2020-02-15T06:59:33Z +92 436 2020-02-15T06:59:33Z +92 443 2020-02-15T06:59:33Z +92 453 2020-02-15T06:59:33Z +92 470 2020-02-15T06:59:33Z +92 505 2020-02-15T06:59:33Z +92 512 2020-02-15T06:59:33Z +92 543 2020-02-15T06:59:33Z +92 545 2020-02-15T06:59:33Z +92 547 2020-02-15T06:59:33Z +92 553 2020-02-15T06:59:33Z +92 564 2020-02-15T06:59:33Z +92 568 2020-02-15T06:59:33Z +92 618 2020-02-15T06:59:33Z +92 662 2020-02-15T06:59:33Z +92 686 2020-02-15T06:59:33Z +92 699 2020-02-15T06:59:33Z +92 712 2020-02-15T06:59:33Z +92 728 2020-02-15T06:59:33Z +92 802 2020-02-15T06:59:33Z +92 825 2020-02-15T06:59:33Z +92 838 2020-02-15T06:59:33Z +92 889 2020-02-15T06:59:33Z +92 929 2020-02-15T06:59:33Z +92 991 2020-02-15T06:59:33Z +93 71 2020-02-15T06:59:33Z +93 120 2020-02-15T06:59:33Z +93 124 2020-02-15T06:59:33Z +93 280 2020-02-15T06:59:33Z +93 325 2020-02-15T06:59:33Z +93 339 2020-02-15T06:59:33Z +93 427 2020-02-15T06:59:33Z +93 445 2020-02-15T06:59:33Z +93 453 2020-02-15T06:59:33Z +93 473 2020-02-15T06:59:33Z +93 573 2020-02-15T06:59:33Z +93 621 2020-02-15T06:59:33Z +93 644 2020-02-15T06:59:33Z +93 678 2020-02-15T06:59:33Z +93 680 2020-02-15T06:59:33Z +93 699 2020-02-15T06:59:33Z +93 744 2020-02-15T06:59:33Z +93 768 2020-02-15T06:59:33Z +93 777 2020-02-15T06:59:33Z +93 835 2020-02-15T06:59:33Z +93 856 2020-02-15T06:59:33Z +93 874 2020-02-15T06:59:33Z +93 909 2020-02-15T06:59:33Z +93 916 2020-02-15T06:59:33Z +93 982 2020-02-15T06:59:33Z +94 13 2020-02-15T06:59:33Z +94 60 2020-02-15T06:59:33Z +94 76 2020-02-15T06:59:33Z +94 122 2020-02-15T06:59:33Z +94 153 2020-02-15T06:59:33Z +94 193 2020-02-15T06:59:33Z +94 206 2020-02-15T06:59:33Z +94 228 2020-02-15T06:59:33Z +94 270 2020-02-15T06:59:33Z +94 275 2020-02-15T06:59:33Z +94 320 2020-02-15T06:59:33Z +94 322 2020-02-15T06:59:33Z +94 337 2020-02-15T06:59:33Z +94 354 2020-02-15T06:59:33Z +94 402 2020-02-15T06:59:33Z +94 428 2020-02-15T06:59:33Z +94 457 2020-02-15T06:59:33Z +94 473 2020-02-15T06:59:33Z +94 475 2020-02-15T06:59:33Z +94 512 2020-02-15T06:59:33Z +94 517 2020-02-15T06:59:33Z +94 521 2020-02-15T06:59:33Z +94 533 2020-02-15T06:59:33Z +94 540 2020-02-15T06:59:33Z +94 548 2020-02-15T06:59:33Z +94 551 2020-02-15T06:59:33Z +94 712 2020-02-15T06:59:33Z +94 713 2020-02-15T06:59:33Z +94 724 2020-02-15T06:59:33Z +94 775 2020-02-15T06:59:33Z +94 788 2020-02-15T06:59:33Z +94 950 2020-02-15T06:59:33Z +94 989 2020-02-15T06:59:33Z +95 22 2020-02-15T06:59:33Z +95 35 2020-02-15T06:59:33Z +95 47 2020-02-15T06:59:33Z +95 52 2020-02-15T06:59:33Z +95 65 2020-02-15T06:59:33Z +95 74 2020-02-15T06:59:33Z +95 126 2020-02-15T06:59:33Z +95 207 2020-02-15T06:59:33Z +95 245 2020-02-15T06:59:33Z +95 294 2020-02-15T06:59:33Z +95 301 2020-02-15T06:59:33Z +95 312 2020-02-15T06:59:33Z +95 329 2020-02-15T06:59:33Z +95 353 2020-02-15T06:59:33Z +95 375 2020-02-15T06:59:33Z +95 420 2020-02-15T06:59:33Z +95 424 2020-02-15T06:59:33Z +95 431 2020-02-15T06:59:33Z +95 498 2020-02-15T06:59:33Z +95 522 2020-02-15T06:59:33Z +95 546 2020-02-15T06:59:33Z +95 551 2020-02-15T06:59:33Z +95 619 2020-02-15T06:59:33Z +95 627 2020-02-15T06:59:33Z +95 690 2020-02-15T06:59:33Z +95 748 2020-02-15T06:59:33Z +95 813 2020-02-15T06:59:33Z +95 828 2020-02-15T06:59:33Z +95 855 2020-02-15T06:59:33Z +95 903 2020-02-15T06:59:33Z +95 923 2020-02-15T06:59:33Z +96 8 2020-02-15T06:59:33Z +96 36 2020-02-15T06:59:33Z +96 40 2020-02-15T06:59:33Z +96 54 2020-02-15T06:59:33Z +96 58 2020-02-15T06:59:33Z +96 66 2020-02-15T06:59:33Z +96 134 2020-02-15T06:59:33Z +96 209 2020-02-15T06:59:33Z +96 244 2020-02-15T06:59:33Z +96 320 2020-02-15T06:59:33Z +96 430 2020-02-15T06:59:33Z +96 452 2020-02-15T06:59:33Z +96 486 2020-02-15T06:59:33Z +96 572 2020-02-15T06:59:33Z +96 590 2020-02-15T06:59:33Z +96 661 2020-02-15T06:59:33Z +96 778 2020-02-15T06:59:33Z +96 832 2020-02-15T06:59:33Z +96 846 2020-02-15T06:59:33Z +96 874 2020-02-15T06:59:33Z +96 945 2020-02-15T06:59:33Z +96 968 2020-02-15T06:59:33Z +96 987 2020-02-15T06:59:33Z +97 143 2020-02-15T06:59:33Z +97 177 2020-02-15T06:59:33Z +97 188 2020-02-15T06:59:33Z +97 197 2020-02-15T06:59:33Z +97 256 2020-02-15T06:59:33Z +97 312 2020-02-15T06:59:33Z +97 342 2020-02-15T06:59:33Z +97 348 2020-02-15T06:59:33Z +97 358 2020-02-15T06:59:33Z +97 370 2020-02-15T06:59:33Z +97 437 2020-02-15T06:59:33Z +97 446 2020-02-15T06:59:33Z +97 466 2020-02-15T06:59:33Z +97 518 2020-02-15T06:59:33Z +97 553 2020-02-15T06:59:33Z +97 561 2020-02-15T06:59:33Z +97 641 2020-02-15T06:59:33Z +97 656 2020-02-15T06:59:33Z +97 728 2020-02-15T06:59:33Z +97 755 2020-02-15T06:59:33Z +97 757 2020-02-15T06:59:33Z +97 826 2020-02-15T06:59:33Z +97 862 2020-02-15T06:59:33Z +97 930 2020-02-15T06:59:33Z +97 933 2020-02-15T06:59:33Z +97 947 2020-02-15T06:59:33Z +97 951 2020-02-15T06:59:33Z +98 66 2020-02-15T06:59:33Z +98 72 2020-02-15T06:59:33Z +98 81 2020-02-15T06:59:33Z +98 87 2020-02-15T06:59:33Z +98 107 2020-02-15T06:59:33Z +98 120 2020-02-15T06:59:33Z +98 183 2020-02-15T06:59:33Z +98 194 2020-02-15T06:59:33Z +98 212 2020-02-15T06:59:33Z +98 297 2020-02-15T06:59:33Z +98 607 2020-02-15T06:59:33Z +98 634 2020-02-15T06:59:33Z +98 686 2020-02-15T06:59:33Z +98 705 2020-02-15T06:59:33Z +98 710 2020-02-15T06:59:33Z +98 721 2020-02-15T06:59:33Z +98 725 2020-02-15T06:59:33Z +98 734 2020-02-15T06:59:33Z +98 738 2020-02-15T06:59:33Z +98 765 2020-02-15T06:59:33Z +98 782 2020-02-15T06:59:33Z +98 824 2020-02-15T06:59:33Z +98 829 2020-02-15T06:59:33Z +98 912 2020-02-15T06:59:33Z +98 955 2020-02-15T06:59:33Z +98 985 2020-02-15T06:59:33Z +98 990 2020-02-15T06:59:33Z +99 7 2020-02-15T06:59:33Z +99 27 2020-02-15T06:59:33Z +99 84 2020-02-15T06:59:33Z +99 250 2020-02-15T06:59:33Z +99 322 2020-02-15T06:59:33Z +99 325 2020-02-15T06:59:33Z +99 381 2020-02-15T06:59:33Z +99 414 2020-02-15T06:59:33Z +99 475 2020-02-15T06:59:33Z +99 490 2020-02-15T06:59:33Z +99 512 2020-02-15T06:59:33Z +99 540 2020-02-15T06:59:33Z +99 572 2020-02-15T06:59:33Z +99 600 2020-02-15T06:59:33Z +99 618 2020-02-15T06:59:33Z +99 620 2020-02-15T06:59:33Z +99 622 2020-02-15T06:59:33Z +99 636 2020-02-15T06:59:33Z +99 672 2020-02-15T06:59:33Z +99 726 2020-02-15T06:59:33Z +99 741 2020-02-15T06:59:33Z +99 796 2020-02-15T06:59:33Z +99 835 2020-02-15T06:59:33Z +99 967 2020-02-15T06:59:33Z +99 978 2020-02-15T06:59:33Z +99 982 2020-02-15T06:59:33Z +100 17 2020-02-15T06:59:33Z +100 118 2020-02-15T06:59:33Z +100 250 2020-02-15T06:59:33Z +100 411 2020-02-15T06:59:33Z +100 414 2020-02-15T06:59:33Z +100 513 2020-02-15T06:59:33Z +100 563 2020-02-15T06:59:33Z +100 642 2020-02-15T06:59:33Z +100 714 2020-02-15T06:59:33Z +100 718 2020-02-15T06:59:33Z +100 759 2020-02-15T06:59:33Z +100 779 2020-02-15T06:59:33Z +100 815 2020-02-15T06:59:33Z +100 846 2020-02-15T06:59:33Z +100 850 2020-02-15T06:59:33Z +100 872 2020-02-15T06:59:33Z +100 877 2020-02-15T06:59:33Z +100 909 2020-02-15T06:59:33Z +100 919 2020-02-15T06:59:33Z +100 944 2020-02-15T06:59:33Z +100 967 2020-02-15T06:59:33Z +100 979 2020-02-15T06:59:33Z +100 991 2020-02-15T06:59:33Z +100 992 2020-02-15T06:59:33Z +101 60 2020-02-15T06:59:33Z +101 66 2020-02-15T06:59:33Z +101 85 2020-02-15T06:59:33Z +101 146 2020-02-15T06:59:33Z +101 189 2020-02-15T06:59:33Z +101 250 2020-02-15T06:59:33Z +101 255 2020-02-15T06:59:33Z +101 263 2020-02-15T06:59:33Z +101 275 2020-02-15T06:59:33Z +101 289 2020-02-15T06:59:33Z +101 491 2020-02-15T06:59:33Z +101 494 2020-02-15T06:59:33Z +101 511 2020-02-15T06:59:33Z +101 568 2020-02-15T06:59:33Z +101 608 2020-02-15T06:59:33Z +101 617 2020-02-15T06:59:33Z +101 655 2020-02-15T06:59:33Z +101 662 2020-02-15T06:59:33Z +101 700 2020-02-15T06:59:33Z +101 702 2020-02-15T06:59:33Z +101 758 2020-02-15T06:59:33Z +101 774 2020-02-15T06:59:33Z +101 787 2020-02-15T06:59:33Z +101 828 2020-02-15T06:59:33Z +101 841 2020-02-15T06:59:33Z +101 928 2020-02-15T06:59:33Z +101 932 2020-02-15T06:59:33Z +101 936 2020-02-15T06:59:33Z +101 941 2020-02-15T06:59:33Z +101 978 2020-02-15T06:59:33Z +101 980 2020-02-15T06:59:33Z +101 984 2020-02-15T06:59:33Z +101 988 2020-02-15T06:59:33Z +102 20 2020-02-15T06:59:33Z +102 34 2020-02-15T06:59:33Z +102 53 2020-02-15T06:59:33Z +102 123 2020-02-15T06:59:33Z +102 124 2020-02-15T06:59:33Z +102 194 2020-02-15T06:59:33Z +102 200 2020-02-15T06:59:33Z +102 205 2020-02-15T06:59:33Z +102 268 2020-02-15T06:59:34Z +102 326 2020-02-15T06:59:34Z +102 329 2020-02-15T06:59:34Z +102 334 2020-02-15T06:59:34Z +102 351 2020-02-15T06:59:34Z +102 418 2020-02-15T06:59:34Z +102 431 2020-02-15T06:59:34Z +102 446 2020-02-15T06:59:34Z +102 485 2020-02-15T06:59:34Z +102 508 2020-02-15T06:59:34Z +102 517 2020-02-15T06:59:34Z +102 521 2020-02-15T06:59:34Z +102 526 2020-02-15T06:59:34Z +102 529 2020-02-15T06:59:34Z +102 544 2020-02-15T06:59:34Z +102 600 2020-02-15T06:59:34Z +102 605 2020-02-15T06:59:34Z +102 606 2020-02-15T06:59:34Z +102 624 2020-02-15T06:59:34Z +102 631 2020-02-15T06:59:34Z +102 712 2020-02-15T06:59:34Z +102 728 2020-02-15T06:59:34Z +102 744 2020-02-15T06:59:34Z +102 796 2020-02-15T06:59:34Z +102 802 2020-02-15T06:59:34Z +102 810 2020-02-15T06:59:34Z +102 828 2020-02-15T06:59:34Z +102 837 2020-02-15T06:59:34Z +102 845 2020-02-15T06:59:34Z +102 852 2020-02-15T06:59:34Z +102 958 2020-02-15T06:59:34Z +102 979 2020-02-15T06:59:34Z +102 980 2020-02-15T06:59:34Z +103 5 2020-02-15T06:59:34Z +103 118 2020-02-15T06:59:34Z +103 130 2020-02-15T06:59:34Z +103 197 2020-02-15T06:59:34Z +103 199 2020-02-15T06:59:34Z +103 206 2020-02-15T06:59:34Z +103 215 2020-02-15T06:59:34Z +103 221 2020-02-15T06:59:34Z +103 271 2020-02-15T06:59:34Z +103 285 2020-02-15T06:59:34Z +103 315 2020-02-15T06:59:34Z +103 318 2020-02-15T06:59:34Z +103 333 2020-02-15T06:59:34Z +103 347 2020-02-15T06:59:34Z +103 356 2020-02-15T06:59:34Z +103 360 2020-02-15T06:59:34Z +103 378 2020-02-15T06:59:34Z +103 437 2020-02-15T06:59:34Z +103 585 2020-02-15T06:59:34Z +103 609 2020-02-15T06:59:34Z +103 639 2020-02-15T06:59:34Z +103 643 2020-02-15T06:59:34Z +103 692 2020-02-15T06:59:34Z +103 735 2020-02-15T06:59:34Z +103 822 2020-02-15T06:59:34Z +103 895 2020-02-15T06:59:34Z +103 903 2020-02-15T06:59:34Z +103 912 2020-02-15T06:59:34Z +103 942 2020-02-15T06:59:34Z +103 956 2020-02-15T06:59:34Z +104 19 2020-02-15T06:59:34Z +104 39 2020-02-15T06:59:34Z +104 40 2020-02-15T06:59:34Z +104 59 2020-02-15T06:59:34Z +104 70 2020-02-15T06:59:34Z +104 136 2020-02-15T06:59:34Z +104 156 2020-02-15T06:59:34Z +104 184 2020-02-15T06:59:34Z +104 198 2020-02-15T06:59:34Z +104 233 2020-02-15T06:59:34Z +104 259 2020-02-15T06:59:34Z +104 287 2020-02-15T06:59:34Z +104 309 2020-02-15T06:59:34Z +104 313 2020-02-15T06:59:34Z +104 394 2020-02-15T06:59:34Z +104 401 2020-02-15T06:59:34Z +104 463 2020-02-15T06:59:34Z +104 506 2020-02-15T06:59:34Z +104 516 2020-02-15T06:59:34Z +104 583 2020-02-15T06:59:34Z +104 600 2020-02-15T06:59:34Z +104 607 2020-02-15T06:59:34Z +104 657 2020-02-15T06:59:34Z +104 677 2020-02-15T06:59:34Z +104 739 2020-02-15T06:59:34Z +104 892 2020-02-15T06:59:34Z +104 904 2020-02-15T06:59:34Z +104 926 2020-02-15T06:59:34Z +104 945 2020-02-15T06:59:34Z +104 984 2020-02-15T06:59:34Z +104 999 2020-02-15T06:59:34Z +105 12 2020-02-15T06:59:34Z +105 15 2020-02-15T06:59:34Z +105 21 2020-02-15T06:59:34Z +105 29 2020-02-15T06:59:34Z +105 42 2020-02-15T06:59:34Z +105 116 2020-02-15T06:59:34Z +105 158 2020-02-15T06:59:34Z +105 239 2020-02-15T06:59:34Z +105 280 2020-02-15T06:59:34Z +105 283 2020-02-15T06:59:34Z +105 315 2020-02-15T06:59:34Z +105 333 2020-02-15T06:59:34Z +105 372 2020-02-15T06:59:34Z +105 377 2020-02-15T06:59:34Z +105 530 2020-02-15T06:59:34Z +105 558 2020-02-15T06:59:34Z +105 561 2020-02-15T06:59:34Z +105 606 2020-02-15T06:59:34Z +105 649 2020-02-15T06:59:34Z +105 686 2020-02-15T06:59:34Z +105 750 2020-02-15T06:59:34Z +105 795 2020-02-15T06:59:34Z +105 831 2020-02-15T06:59:34Z +105 835 2020-02-15T06:59:34Z +105 858 2020-02-15T06:59:34Z +105 864 2020-02-15T06:59:34Z +105 893 2020-02-15T06:59:34Z +105 906 2020-02-15T06:59:34Z +105 910 2020-02-15T06:59:34Z +105 915 2020-02-15T06:59:34Z +105 954 2020-02-15T06:59:34Z +105 990 2020-02-15T06:59:34Z +105 993 2020-02-15T06:59:34Z +105 994 2020-02-15T06:59:34Z +106 44 2020-02-15T06:59:34Z +106 83 2020-02-15T06:59:34Z +106 108 2020-02-15T06:59:34Z +106 126 2020-02-15T06:59:34Z +106 136 2020-02-15T06:59:34Z +106 166 2020-02-15T06:59:34Z +106 189 2020-02-15T06:59:34Z +106 194 2020-02-15T06:59:34Z +106 204 2020-02-15T06:59:34Z +106 229 2020-02-15T06:59:34Z +106 241 2020-02-15T06:59:34Z +106 345 2020-02-15T06:59:34Z +106 365 2020-02-15T06:59:34Z +106 399 2020-02-15T06:59:34Z +106 439 2020-02-15T06:59:34Z +106 457 2020-02-15T06:59:34Z +106 469 2020-02-15T06:59:34Z +106 500 2020-02-15T06:59:34Z +106 505 2020-02-15T06:59:34Z +106 559 2020-02-15T06:59:34Z +106 566 2020-02-15T06:59:34Z +106 585 2020-02-15T06:59:34Z +106 639 2020-02-15T06:59:34Z +106 654 2020-02-15T06:59:34Z +106 659 2020-02-15T06:59:34Z +106 675 2020-02-15T06:59:34Z +106 687 2020-02-15T06:59:34Z +106 752 2020-02-15T06:59:34Z +106 763 2020-02-15T06:59:34Z +106 780 2020-02-15T06:59:34Z +106 858 2020-02-15T06:59:34Z +106 866 2020-02-15T06:59:34Z +106 881 2020-02-15T06:59:34Z +106 894 2020-02-15T06:59:34Z +106 934 2020-02-15T06:59:34Z +107 62 2020-02-15T06:59:34Z +107 112 2020-02-15T06:59:34Z +107 133 2020-02-15T06:59:34Z +107 136 2020-02-15T06:59:34Z +107 138 2020-02-15T06:59:34Z +107 162 2020-02-15T06:59:34Z +107 165 2020-02-15T06:59:34Z +107 172 2020-02-15T06:59:34Z +107 209 2020-02-15T06:59:34Z +107 220 2020-02-15T06:59:34Z +107 239 2020-02-15T06:59:34Z +107 277 2020-02-15T06:59:34Z +107 292 2020-02-15T06:59:34Z +107 338 2020-02-15T06:59:34Z +107 348 2020-02-15T06:59:34Z +107 369 2020-02-15T06:59:34Z +107 388 2020-02-15T06:59:34Z +107 392 2020-02-15T06:59:34Z +107 409 2020-02-15T06:59:34Z +107 430 2020-02-15T06:59:34Z +107 445 2020-02-15T06:59:34Z +107 454 2020-02-15T06:59:34Z +107 458 2020-02-15T06:59:34Z +107 467 2020-02-15T06:59:34Z +107 520 2020-02-15T06:59:34Z +107 534 2020-02-15T06:59:34Z +107 548 2020-02-15T06:59:34Z +107 571 2020-02-15T06:59:34Z +107 574 2020-02-15T06:59:34Z +107 603 2020-02-15T06:59:34Z +107 606 2020-02-15T06:59:34Z +107 637 2020-02-15T06:59:34Z +107 774 2020-02-15T06:59:34Z +107 781 2020-02-15T06:59:34Z +107 796 2020-02-15T06:59:34Z +107 831 2020-02-15T06:59:34Z +107 849 2020-02-15T06:59:34Z +107 859 2020-02-15T06:59:34Z +107 879 2020-02-15T06:59:34Z +107 905 2020-02-15T06:59:34Z +107 973 2020-02-15T06:59:34Z +107 977 2020-02-15T06:59:34Z +108 1 2020-02-15T06:59:34Z +108 6 2020-02-15T06:59:34Z +108 9 2020-02-15T06:59:34Z +108 137 2020-02-15T06:59:34Z +108 208 2020-02-15T06:59:34Z +108 219 2020-02-15T06:59:34Z +108 242 2020-02-15T06:59:34Z +108 278 2020-02-15T06:59:34Z +108 302 2020-02-15T06:59:34Z +108 350 2020-02-15T06:59:34Z +108 378 2020-02-15T06:59:34Z +108 379 2020-02-15T06:59:34Z +108 495 2020-02-15T06:59:34Z +108 507 2020-02-15T06:59:34Z +108 517 2020-02-15T06:59:34Z +108 561 2020-02-15T06:59:34Z +108 567 2020-02-15T06:59:34Z +108 648 2020-02-15T06:59:34Z +108 652 2020-02-15T06:59:34Z +108 655 2020-02-15T06:59:34Z +108 673 2020-02-15T06:59:34Z +108 693 2020-02-15T06:59:34Z +108 696 2020-02-15T06:59:34Z +108 702 2020-02-15T06:59:34Z +108 721 2020-02-15T06:59:34Z +108 733 2020-02-15T06:59:34Z +108 741 2020-02-15T06:59:34Z +108 744 2020-02-15T06:59:34Z +108 887 2020-02-15T06:59:34Z +108 892 2020-02-15T06:59:34Z +108 894 2020-02-15T06:59:34Z +108 920 2020-02-15T06:59:34Z +108 958 2020-02-15T06:59:34Z +108 966 2020-02-15T06:59:34Z +109 12 2020-02-15T06:59:34Z +109 48 2020-02-15T06:59:34Z +109 77 2020-02-15T06:59:34Z +109 157 2020-02-15T06:59:34Z +109 174 2020-02-15T06:59:34Z +109 190 2020-02-15T06:59:34Z +109 243 2020-02-15T06:59:34Z +109 281 2020-02-15T06:59:34Z +109 393 2020-02-15T06:59:34Z +109 463 2020-02-15T06:59:34Z +109 622 2020-02-15T06:59:34Z +109 657 2020-02-15T06:59:34Z +109 694 2020-02-15T06:59:34Z +109 700 2020-02-15T06:59:34Z +109 732 2020-02-15T06:59:34Z +109 753 2020-02-15T06:59:34Z +109 785 2020-02-15T06:59:34Z +109 786 2020-02-15T06:59:34Z +109 863 2020-02-15T06:59:34Z +109 885 2020-02-15T06:59:34Z +109 955 2020-02-15T06:59:34Z +109 967 2020-02-15T06:59:34Z +110 8 2020-02-15T06:59:34Z +110 27 2020-02-15T06:59:34Z +110 62 2020-02-15T06:59:34Z +110 120 2020-02-15T06:59:34Z +110 126 2020-02-15T06:59:34Z +110 156 2020-02-15T06:59:34Z +110 292 2020-02-15T06:59:34Z +110 343 2020-02-15T06:59:34Z +110 360 2020-02-15T06:59:34Z +110 369 2020-02-15T06:59:34Z +110 435 2020-02-15T06:59:34Z +110 513 2020-02-15T06:59:34Z +110 525 2020-02-15T06:59:34Z +110 539 2020-02-15T06:59:34Z +110 545 2020-02-15T06:59:34Z +110 625 2020-02-15T06:59:34Z +110 650 2020-02-15T06:59:34Z +110 801 2020-02-15T06:59:34Z +110 912 2020-02-15T06:59:34Z +110 961 2020-02-15T06:59:34Z +110 987 2020-02-15T06:59:34Z +111 61 2020-02-15T06:59:34Z +111 78 2020-02-15T06:59:34Z +111 98 2020-02-15T06:59:34Z +111 162 2020-02-15T06:59:34Z +111 179 2020-02-15T06:59:34Z +111 194 2020-02-15T06:59:34Z +111 325 2020-02-15T06:59:34Z +111 359 2020-02-15T06:59:34Z +111 382 2020-02-15T06:59:34Z +111 403 2020-02-15T06:59:34Z +111 407 2020-02-15T06:59:34Z +111 414 2020-02-15T06:59:34Z +111 474 2020-02-15T06:59:34Z +111 489 2020-02-15T06:59:34Z +111 508 2020-02-15T06:59:34Z +111 555 2020-02-15T06:59:34Z +111 603 2020-02-15T06:59:34Z +111 608 2020-02-15T06:59:34Z +111 643 2020-02-15T06:59:34Z +111 669 2020-02-15T06:59:34Z +111 679 2020-02-15T06:59:34Z +111 680 2020-02-15T06:59:34Z +111 699 2020-02-15T06:59:34Z +111 731 2020-02-15T06:59:34Z +111 732 2020-02-15T06:59:34Z +111 737 2020-02-15T06:59:34Z +111 744 2020-02-15T06:59:34Z +111 777 2020-02-15T06:59:34Z +111 847 2020-02-15T06:59:34Z +111 894 2020-02-15T06:59:34Z +111 919 2020-02-15T06:59:34Z +111 962 2020-02-15T06:59:34Z +111 973 2020-02-15T06:59:34Z +112 34 2020-02-15T06:59:34Z +112 37 2020-02-15T06:59:34Z +112 151 2020-02-15T06:59:34Z +112 173 2020-02-15T06:59:34Z +112 188 2020-02-15T06:59:34Z +112 231 2020-02-15T06:59:34Z +112 312 2020-02-15T06:59:34Z +112 322 2020-02-15T06:59:34Z +112 443 2020-02-15T06:59:34Z +112 450 2020-02-15T06:59:34Z +112 565 2020-02-15T06:59:34Z +112 603 2020-02-15T06:59:34Z +112 606 2020-02-15T06:59:34Z +112 654 2020-02-15T06:59:34Z +112 666 2020-02-15T06:59:34Z +112 700 2020-02-15T06:59:34Z +112 728 2020-02-15T06:59:34Z +112 772 2020-02-15T06:59:34Z +112 796 2020-02-15T06:59:34Z +112 817 2020-02-15T06:59:34Z +112 829 2020-02-15T06:59:34Z +112 856 2020-02-15T06:59:34Z +112 865 2020-02-15T06:59:34Z +112 869 2020-02-15T06:59:34Z +112 988 2020-02-15T06:59:34Z +113 35 2020-02-15T06:59:34Z +113 84 2020-02-15T06:59:34Z +113 116 2020-02-15T06:59:34Z +113 181 2020-02-15T06:59:34Z +113 218 2020-02-15T06:59:34Z +113 249 2020-02-15T06:59:34Z +113 258 2020-02-15T06:59:34Z +113 292 2020-02-15T06:59:34Z +113 322 2020-02-15T06:59:34Z +113 353 2020-02-15T06:59:34Z +113 403 2020-02-15T06:59:34Z +113 525 2020-02-15T06:59:34Z +113 642 2020-02-15T06:59:34Z +113 656 2020-02-15T06:59:34Z +113 674 2020-02-15T06:59:34Z +113 680 2020-02-15T06:59:34Z +113 700 2020-02-15T06:59:34Z +113 719 2020-02-15T06:59:34Z +113 723 2020-02-15T06:59:34Z +113 726 2020-02-15T06:59:34Z +113 732 2020-02-15T06:59:34Z +113 748 2020-02-15T06:59:34Z +113 838 2020-02-15T06:59:34Z +113 890 2020-02-15T06:59:34Z +113 921 2020-02-15T06:59:34Z +113 969 2020-02-15T06:59:34Z +113 981 2020-02-15T06:59:34Z +114 13 2020-02-15T06:59:34Z +114 68 2020-02-15T06:59:34Z +114 90 2020-02-15T06:59:34Z +114 162 2020-02-15T06:59:34Z +114 188 2020-02-15T06:59:34Z +114 194 2020-02-15T06:59:34Z +114 210 2020-02-15T06:59:34Z +114 237 2020-02-15T06:59:34Z +114 254 2020-02-15T06:59:34Z +114 305 2020-02-15T06:59:34Z +114 339 2020-02-15T06:59:34Z +114 420 2020-02-15T06:59:34Z +114 425 2020-02-15T06:59:34Z +114 452 2020-02-15T06:59:34Z +114 538 2020-02-15T06:59:34Z +114 619 2020-02-15T06:59:34Z +114 757 2020-02-15T06:59:34Z +114 807 2020-02-15T06:59:34Z +114 827 2020-02-15T06:59:34Z +114 841 2020-02-15T06:59:34Z +114 861 2020-02-15T06:59:34Z +114 866 2020-02-15T06:59:34Z +114 913 2020-02-15T06:59:34Z +114 961 2020-02-15T06:59:34Z +114 993 2020-02-15T06:59:34Z +115 49 2020-02-15T06:59:34Z +115 52 2020-02-15T06:59:34Z +115 245 2020-02-15T06:59:34Z +115 246 2020-02-15T06:59:34Z +115 277 2020-02-15T06:59:34Z +115 302 2020-02-15T06:59:34Z +115 379 2020-02-15T06:59:34Z +115 383 2020-02-15T06:59:34Z +115 391 2020-02-15T06:59:34Z +115 428 2020-02-15T06:59:34Z +115 506 2020-02-15T06:59:34Z +115 531 2020-02-15T06:59:34Z +115 607 2020-02-15T06:59:34Z +115 615 2020-02-15T06:59:34Z +115 661 2020-02-15T06:59:34Z +115 671 2020-02-15T06:59:34Z +115 686 2020-02-15T06:59:34Z +115 703 2020-02-15T06:59:34Z +115 714 2020-02-15T06:59:34Z +115 740 2020-02-15T06:59:34Z +115 754 2020-02-15T06:59:34Z +115 846 2020-02-15T06:59:34Z +115 887 2020-02-15T06:59:34Z +115 952 2020-02-15T06:59:34Z +115 955 2020-02-15T06:59:34Z +115 966 2020-02-15T06:59:34Z +115 985 2020-02-15T06:59:34Z +115 994 2020-02-15T06:59:34Z +116 36 2020-02-15T06:59:34Z +116 48 2020-02-15T06:59:34Z +116 88 2020-02-15T06:59:34Z +116 90 2020-02-15T06:59:34Z +116 105 2020-02-15T06:59:34Z +116 128 2020-02-15T06:59:34Z +116 336 2020-02-15T06:59:34Z +116 338 2020-02-15T06:59:34Z +116 384 2020-02-15T06:59:34Z +116 412 2020-02-15T06:59:34Z +116 420 2020-02-15T06:59:34Z +116 451 2020-02-15T06:59:34Z +116 481 2020-02-15T06:59:34Z +116 492 2020-02-15T06:59:34Z +116 584 2020-02-15T06:59:34Z +116 606 2020-02-15T06:59:34Z +116 622 2020-02-15T06:59:34Z +116 647 2020-02-15T06:59:34Z +116 653 2020-02-15T06:59:34Z +116 742 2020-02-15T06:59:34Z +116 784 2020-02-15T06:59:34Z +116 844 2020-02-15T06:59:34Z +116 939 2020-02-15T06:59:34Z +116 956 2020-02-15T06:59:34Z +117 10 2020-02-15T06:59:34Z +117 15 2020-02-15T06:59:34Z +117 42 2020-02-15T06:59:34Z +117 167 2020-02-15T06:59:34Z +117 178 2020-02-15T06:59:34Z +117 190 2020-02-15T06:59:34Z +117 197 2020-02-15T06:59:34Z +117 224 2020-02-15T06:59:34Z +117 246 2020-02-15T06:59:34Z +117 273 2020-02-15T06:59:34Z +117 298 2020-02-15T06:59:34Z +117 316 2020-02-15T06:59:34Z +117 337 2020-02-15T06:59:34Z +117 395 2020-02-15T06:59:34Z +117 423 2020-02-15T06:59:34Z +117 432 2020-02-15T06:59:34Z +117 459 2020-02-15T06:59:34Z +117 468 2020-02-15T06:59:34Z +117 550 2020-02-15T06:59:34Z +117 578 2020-02-15T06:59:34Z +117 707 2020-02-15T06:59:34Z +117 710 2020-02-15T06:59:34Z +117 738 2020-02-15T06:59:34Z +117 739 2020-02-15T06:59:34Z +117 778 2020-02-15T06:59:34Z +117 783 2020-02-15T06:59:34Z +117 785 2020-02-15T06:59:34Z +117 797 2020-02-15T06:59:34Z +117 812 2020-02-15T06:59:34Z +117 831 2020-02-15T06:59:34Z +117 864 2020-02-15T06:59:34Z +117 887 2020-02-15T06:59:34Z +117 926 2020-02-15T06:59:34Z +118 35 2020-02-15T06:59:34Z +118 39 2020-02-15T06:59:34Z +118 41 2020-02-15T06:59:34Z +118 49 2020-02-15T06:59:34Z +118 55 2020-02-15T06:59:34Z +118 136 2020-02-15T06:59:34Z +118 141 2020-02-15T06:59:34Z +118 151 2020-02-15T06:59:34Z +118 311 2020-02-15T06:59:34Z +118 384 2020-02-15T06:59:34Z +118 399 2020-02-15T06:59:34Z +118 499 2020-02-15T06:59:34Z +118 517 2020-02-15T06:59:34Z +118 553 2020-02-15T06:59:34Z +118 558 2020-02-15T06:59:34Z +118 572 2020-02-15T06:59:34Z +118 641 2020-02-15T06:59:34Z +118 656 2020-02-15T06:59:34Z +118 695 2020-02-15T06:59:34Z +118 735 2020-02-15T06:59:34Z +118 788 2020-02-15T06:59:34Z +118 852 2020-02-15T06:59:34Z +118 938 2020-02-15T06:59:34Z +118 957 2020-02-15T06:59:34Z +118 969 2020-02-15T06:59:34Z +119 21 2020-02-15T06:59:34Z +119 49 2020-02-15T06:59:34Z +119 64 2020-02-15T06:59:34Z +119 87 2020-02-15T06:59:34Z +119 143 2020-02-15T06:59:34Z +119 171 2020-02-15T06:59:34Z +119 172 2020-02-15T06:59:34Z +119 173 2020-02-15T06:59:34Z +119 381 2020-02-15T06:59:34Z +119 394 2020-02-15T06:59:34Z +119 412 2020-02-15T06:59:34Z +119 418 2020-02-15T06:59:34Z +119 454 2020-02-15T06:59:34Z +119 509 2020-02-15T06:59:34Z +119 521 2020-02-15T06:59:34Z +119 567 2020-02-15T06:59:34Z +119 570 2020-02-15T06:59:34Z +119 592 2020-02-15T06:59:34Z +119 614 2020-02-15T06:59:34Z +119 636 2020-02-15T06:59:34Z +119 649 2020-02-15T06:59:34Z +119 693 2020-02-15T06:59:34Z +119 738 2020-02-15T06:59:34Z +119 751 2020-02-15T06:59:34Z +119 782 2020-02-15T06:59:34Z +119 786 2020-02-15T06:59:34Z +119 788 2020-02-15T06:59:34Z +119 802 2020-02-15T06:59:34Z +119 858 2020-02-15T06:59:34Z +119 868 2020-02-15T06:59:34Z +119 900 2020-02-15T06:59:34Z +119 939 2020-02-15T06:59:34Z +120 57 2020-02-15T06:59:34Z +120 63 2020-02-15T06:59:34Z +120 144 2020-02-15T06:59:34Z +120 149 2020-02-15T06:59:34Z +120 208 2020-02-15T06:59:34Z +120 231 2020-02-15T06:59:34Z +120 238 2020-02-15T06:59:34Z +120 255 2020-02-15T06:59:34Z +120 414 2020-02-15T06:59:34Z +120 424 2020-02-15T06:59:34Z +120 489 2020-02-15T06:59:34Z +120 513 2020-02-15T06:59:34Z +120 590 2020-02-15T06:59:34Z +120 641 2020-02-15T06:59:34Z +120 642 2020-02-15T06:59:34Z +120 659 2020-02-15T06:59:34Z +120 682 2020-02-15T06:59:34Z +120 691 2020-02-15T06:59:34Z +120 715 2020-02-15T06:59:34Z +120 717 2020-02-15T06:59:34Z +120 722 2020-02-15T06:59:34Z +120 746 2020-02-15T06:59:34Z +120 830 2020-02-15T06:59:34Z +120 894 2020-02-15T06:59:34Z +120 898 2020-02-15T06:59:34Z +120 911 2020-02-15T06:59:34Z +120 994 2020-02-15T06:59:34Z +121 141 2020-02-15T06:59:34Z +121 154 2020-02-15T06:59:34Z +121 161 2020-02-15T06:59:34Z +121 170 2020-02-15T06:59:34Z +121 186 2020-02-15T06:59:34Z +121 198 2020-02-15T06:59:34Z +121 220 2020-02-15T06:59:34Z +121 222 2020-02-15T06:59:34Z +121 284 2020-02-15T06:59:34Z +121 297 2020-02-15T06:59:34Z +121 338 2020-02-15T06:59:34Z +121 353 2020-02-15T06:59:34Z +121 449 2020-02-15T06:59:34Z +121 479 2020-02-15T06:59:34Z +121 517 2020-02-15T06:59:34Z +121 633 2020-02-15T06:59:34Z +121 654 2020-02-15T06:59:34Z +121 658 2020-02-15T06:59:34Z +121 666 2020-02-15T06:59:34Z +121 771 2020-02-15T06:59:34Z +121 780 2020-02-15T06:59:34Z +121 847 2020-02-15T06:59:34Z +121 884 2020-02-15T06:59:34Z +121 885 2020-02-15T06:59:34Z +121 966 2020-02-15T06:59:34Z +122 22 2020-02-15T06:59:34Z +122 29 2020-02-15T06:59:34Z +122 76 2020-02-15T06:59:34Z +122 83 2020-02-15T06:59:34Z +122 157 2020-02-15T06:59:34Z +122 158 2020-02-15T06:59:34Z +122 166 2020-02-15T06:59:34Z +122 227 2020-02-15T06:59:34Z +122 238 2020-02-15T06:59:34Z +122 300 2020-02-15T06:59:34Z +122 307 2020-02-15T06:59:34Z +122 363 2020-02-15T06:59:34Z +122 470 2020-02-15T06:59:34Z +122 489 2020-02-15T06:59:34Z +122 491 2020-02-15T06:59:34Z +122 542 2020-02-15T06:59:34Z +122 620 2020-02-15T06:59:34Z +122 649 2020-02-15T06:59:34Z +122 654 2020-02-15T06:59:34Z +122 673 2020-02-15T06:59:34Z +122 718 2020-02-15T06:59:34Z +122 795 2020-02-15T06:59:34Z +122 957 2020-02-15T06:59:34Z +122 961 2020-02-15T06:59:34Z +122 998 2020-02-15T06:59:34Z +123 3 2020-02-15T06:59:34Z +123 43 2020-02-15T06:59:34Z +123 67 2020-02-15T06:59:34Z +123 105 2020-02-15T06:59:34Z +123 148 2020-02-15T06:59:34Z +123 151 2020-02-15T06:59:34Z +123 185 2020-02-15T06:59:34Z +123 223 2020-02-15T06:59:34Z +123 234 2020-02-15T06:59:34Z +123 245 2020-02-15T06:59:34Z +123 246 2020-02-15T06:59:34Z +123 266 2020-02-15T06:59:34Z +123 286 2020-02-15T06:59:34Z +123 429 2020-02-15T06:59:34Z +123 442 2020-02-15T06:59:34Z +123 446 2020-02-15T06:59:34Z +123 479 2020-02-15T06:59:34Z +123 480 2020-02-15T06:59:34Z +123 494 2020-02-15T06:59:34Z +123 503 2020-02-15T06:59:34Z +123 530 2020-02-15T06:59:34Z +123 576 2020-02-15T06:59:34Z +123 577 2020-02-15T06:59:34Z +123 589 2020-02-15T06:59:34Z +123 593 2020-02-15T06:59:34Z +123 725 2020-02-15T06:59:34Z +123 730 2020-02-15T06:59:34Z +123 786 2020-02-15T06:59:34Z +123 860 2020-02-15T06:59:34Z +123 892 2020-02-15T06:59:34Z +123 926 2020-02-15T06:59:34Z +123 988 2020-02-15T06:59:34Z +124 22 2020-02-15T06:59:34Z +124 64 2020-02-15T06:59:34Z +124 106 2020-02-15T06:59:34Z +124 113 2020-02-15T06:59:34Z +124 190 2020-02-15T06:59:34Z +124 246 2020-02-15T06:59:34Z +124 260 2020-02-15T06:59:34Z +124 263 2020-02-15T06:59:34Z +124 289 2020-02-15T06:59:34Z +124 306 2020-02-15T06:59:34Z +124 312 2020-02-15T06:59:34Z +124 322 2020-02-15T06:59:34Z +124 343 2020-02-15T06:59:34Z +124 449 2020-02-15T06:59:34Z +124 468 2020-02-15T06:59:34Z +124 539 2020-02-15T06:59:34Z +124 601 2020-02-15T06:59:34Z +124 726 2020-02-15T06:59:34Z +124 742 2020-02-15T06:59:34Z +124 775 2020-02-15T06:59:34Z +124 785 2020-02-15T06:59:34Z +124 814 2020-02-15T06:59:34Z +124 858 2020-02-15T06:59:34Z +124 882 2020-02-15T06:59:34Z +124 987 2020-02-15T06:59:34Z +124 997 2020-02-15T06:59:34Z +125 62 2020-02-15T06:59:34Z +125 98 2020-02-15T06:59:34Z +125 100 2020-02-15T06:59:34Z +125 114 2020-02-15T06:59:34Z +125 175 2020-02-15T06:59:34Z +125 188 2020-02-15T06:59:34Z +125 204 2020-02-15T06:59:34Z +125 238 2020-02-15T06:59:34Z +125 250 2020-02-15T06:59:34Z +125 324 2020-02-15T06:59:34Z +125 338 2020-02-15T06:59:34Z +125 361 2020-02-15T06:59:34Z +125 367 2020-02-15T06:59:34Z +125 395 2020-02-15T06:59:34Z +125 414 2020-02-15T06:59:34Z +125 428 2020-02-15T06:59:34Z +125 429 2020-02-15T06:59:34Z +125 450 2020-02-15T06:59:34Z +125 497 2020-02-15T06:59:34Z +125 557 2020-02-15T06:59:34Z +125 568 2020-02-15T06:59:34Z +125 584 2020-02-15T06:59:34Z +125 602 2020-02-15T06:59:34Z +125 623 2020-02-15T06:59:34Z +125 664 2020-02-15T06:59:34Z +125 683 2020-02-15T06:59:34Z +125 710 2020-02-15T06:59:34Z +125 877 2020-02-15T06:59:34Z +125 908 2020-02-15T06:59:34Z +125 949 2020-02-15T06:59:34Z +125 965 2020-02-15T06:59:34Z +126 21 2020-02-15T06:59:34Z +126 34 2020-02-15T06:59:34Z +126 43 2020-02-15T06:59:34Z +126 58 2020-02-15T06:59:34Z +126 85 2020-02-15T06:59:34Z +126 96 2020-02-15T06:59:34Z +126 193 2020-02-15T06:59:34Z +126 194 2020-02-15T06:59:34Z +126 199 2020-02-15T06:59:34Z +126 256 2020-02-15T06:59:34Z +126 263 2020-02-15T06:59:34Z +126 288 2020-02-15T06:59:34Z +126 317 2020-02-15T06:59:34Z +126 347 2020-02-15T06:59:34Z +126 369 2020-02-15T06:59:34Z +126 370 2020-02-15T06:59:34Z +126 419 2020-02-15T06:59:34Z +126 468 2020-02-15T06:59:34Z +126 469 2020-02-15T06:59:34Z +126 545 2020-02-15T06:59:34Z +126 685 2020-02-15T06:59:34Z +126 836 2020-02-15T06:59:34Z +126 860 2020-02-15T06:59:34Z +127 36 2020-02-15T06:59:34Z +127 47 2020-02-15T06:59:34Z +127 48 2020-02-15T06:59:34Z +127 79 2020-02-15T06:59:34Z +127 119 2020-02-15T06:59:34Z +127 141 2020-02-15T06:59:34Z +127 157 2020-02-15T06:59:34Z +127 202 2020-02-15T06:59:34Z +127 286 2020-02-15T06:59:34Z +127 333 2020-02-15T06:59:34Z +127 354 2020-02-15T06:59:34Z +127 366 2020-02-15T06:59:34Z +127 382 2020-02-15T06:59:34Z +127 388 2020-02-15T06:59:34Z +127 411 2020-02-15T06:59:34Z +127 459 2020-02-15T06:59:34Z +127 553 2020-02-15T06:59:34Z +127 573 2020-02-15T06:59:34Z +127 613 2020-02-15T06:59:34Z +127 617 2020-02-15T06:59:34Z +127 641 2020-02-15T06:59:34Z +127 710 2020-02-15T06:59:34Z +127 727 2020-02-15T06:59:34Z +127 749 2020-02-15T06:59:34Z +127 763 2020-02-15T06:59:34Z +127 771 2020-02-15T06:59:34Z +127 791 2020-02-15T06:59:34Z +127 819 2020-02-15T06:59:34Z +127 839 2020-02-15T06:59:34Z +127 846 2020-02-15T06:59:34Z +127 911 2020-02-15T06:59:34Z +127 953 2020-02-15T06:59:34Z +127 970 2020-02-15T06:59:34Z +128 26 2020-02-15T06:59:34Z +128 82 2020-02-15T06:59:34Z +128 119 2020-02-15T06:59:34Z +128 168 2020-02-15T06:59:34Z +128 212 2020-02-15T06:59:34Z +128 238 2020-02-15T06:59:34Z +128 299 2020-02-15T06:59:34Z +128 312 2020-02-15T06:59:34Z +128 326 2020-02-15T06:59:34Z +128 336 2020-02-15T06:59:34Z +128 345 2020-02-15T06:59:34Z +128 407 2020-02-15T06:59:34Z +128 462 2020-02-15T06:59:34Z +128 485 2020-02-15T06:59:34Z +128 516 2020-02-15T06:59:34Z +128 564 2020-02-15T06:59:34Z +128 614 2020-02-15T06:59:34Z +128 650 2020-02-15T06:59:34Z +128 665 2020-02-15T06:59:34Z +128 671 2020-02-15T06:59:34Z +128 693 2020-02-15T06:59:34Z +128 696 2020-02-15T06:59:34Z +128 759 2020-02-15T06:59:34Z +128 774 2020-02-15T06:59:34Z +128 814 2020-02-15T06:59:34Z +128 899 2020-02-15T06:59:34Z +128 912 2020-02-15T06:59:34Z +128 944 2020-02-15T06:59:34Z +128 949 2020-02-15T06:59:34Z +128 965 2020-02-15T06:59:34Z +129 56 2020-02-15T06:59:34Z +129 89 2020-02-15T06:59:34Z +129 101 2020-02-15T06:59:34Z +129 166 2020-02-15T06:59:34Z +129 202 2020-02-15T06:59:34Z +129 230 2020-02-15T06:59:34Z +129 247 2020-02-15T06:59:34Z +129 249 2020-02-15T06:59:34Z +129 348 2020-02-15T06:59:34Z +129 367 2020-02-15T06:59:34Z +129 391 2020-02-15T06:59:34Z +129 418 2020-02-15T06:59:34Z +129 431 2020-02-15T06:59:34Z +129 452 2020-02-15T06:59:34Z +129 471 2020-02-15T06:59:34Z +129 520 2020-02-15T06:59:34Z +129 597 2020-02-15T06:59:34Z +129 602 2020-02-15T06:59:34Z +129 640 2020-02-15T06:59:34Z +129 669 2020-02-15T06:59:34Z +129 684 2020-02-15T06:59:34Z +129 705 2020-02-15T06:59:34Z +129 805 2020-02-15T06:59:34Z +129 826 2020-02-15T06:59:34Z +129 834 2020-02-15T06:59:34Z +129 857 2020-02-15T06:59:34Z +129 910 2020-02-15T06:59:34Z +129 920 2020-02-15T06:59:34Z +129 938 2020-02-15T06:59:34Z +129 962 2020-02-15T06:59:34Z +130 9 2020-02-15T06:59:34Z +130 26 2020-02-15T06:59:34Z +130 37 2020-02-15T06:59:34Z +130 43 2020-02-15T06:59:34Z +130 49 2020-02-15T06:59:34Z +130 57 2020-02-15T06:59:34Z +130 107 2020-02-15T06:59:34Z +130 112 2020-02-15T06:59:34Z +130 208 2020-02-15T06:59:34Z +130 326 2020-02-15T06:59:34Z +130 375 2020-02-15T06:59:34Z +130 416 2020-02-15T06:59:34Z +130 431 2020-02-15T06:59:34Z +130 452 2020-02-15T06:59:34Z +130 453 2020-02-15T06:59:34Z +130 478 2020-02-15T06:59:34Z +130 507 2020-02-15T06:59:34Z +130 525 2020-02-15T06:59:34Z +130 549 2020-02-15T06:59:34Z +130 592 2020-02-15T06:59:34Z +130 702 2020-02-15T06:59:34Z +130 725 2020-02-15T06:59:34Z +130 764 2020-02-15T06:59:34Z +130 809 2020-02-15T06:59:34Z +130 869 2020-02-15T06:59:34Z +130 930 2020-02-15T06:59:34Z +130 981 2020-02-15T06:59:34Z +131 48 2020-02-15T06:59:34Z +131 66 2020-02-15T06:59:34Z +131 94 2020-02-15T06:59:34Z +131 120 2020-02-15T06:59:34Z +131 147 2020-02-15T06:59:34Z +131 206 2020-02-15T06:59:34Z +131 320 2020-02-15T06:59:34Z +131 383 2020-02-15T06:59:34Z +131 432 2020-02-15T06:59:34Z +131 436 2020-02-15T06:59:34Z +131 450 2020-02-15T06:59:34Z +131 479 2020-02-15T06:59:34Z +131 494 2020-02-15T06:59:34Z +131 515 2020-02-15T06:59:34Z +131 539 2020-02-15T06:59:34Z +131 590 2020-02-15T06:59:34Z +131 647 2020-02-15T06:59:34Z +131 693 2020-02-15T06:59:34Z +131 713 2020-02-15T06:59:34Z +131 770 2020-02-15T06:59:34Z +131 798 2020-02-15T06:59:34Z +131 809 2020-02-15T06:59:34Z +131 875 2020-02-15T06:59:34Z +131 881 2020-02-15T06:59:34Z +131 921 2020-02-15T06:59:34Z +132 81 2020-02-15T06:59:34Z +132 82 2020-02-15T06:59:34Z +132 133 2020-02-15T06:59:34Z +132 156 2020-02-15T06:59:34Z +132 162 2020-02-15T06:59:34Z +132 311 2020-02-15T06:59:34Z +132 345 2020-02-15T06:59:34Z +132 377 2020-02-15T06:59:34Z +132 410 2020-02-15T06:59:34Z +132 538 2020-02-15T06:59:34Z +132 562 2020-02-15T06:59:34Z +132 586 2020-02-15T06:59:34Z +132 626 2020-02-15T06:59:34Z +132 637 2020-02-15T06:59:34Z +132 698 2020-02-15T06:59:34Z +132 756 2020-02-15T06:59:34Z +132 806 2020-02-15T06:59:34Z +132 897 2020-02-15T06:59:34Z +132 899 2020-02-15T06:59:34Z +132 904 2020-02-15T06:59:34Z +132 930 2020-02-15T06:59:34Z +132 987 2020-02-15T06:59:34Z +133 7 2020-02-15T06:59:34Z +133 51 2020-02-15T06:59:34Z +133 133 2020-02-15T06:59:34Z +133 172 2020-02-15T06:59:34Z +133 210 2020-02-15T06:59:34Z +133 270 2020-02-15T06:59:34Z +133 280 2020-02-15T06:59:34Z +133 286 2020-02-15T06:59:34Z +133 338 2020-02-15T06:59:34Z +133 342 2020-02-15T06:59:34Z +133 351 2020-02-15T06:59:34Z +133 368 2020-02-15T06:59:34Z +133 385 2020-02-15T06:59:34Z +133 390 2020-02-15T06:59:34Z +133 397 2020-02-15T06:59:34Z +133 410 2020-02-15T06:59:34Z +133 452 2020-02-15T06:59:34Z +133 463 2020-02-15T06:59:34Z +133 514 2020-02-15T06:59:34Z +133 588 2020-02-15T06:59:34Z +133 594 2020-02-15T06:59:34Z +133 635 2020-02-15T06:59:34Z +133 652 2020-02-15T06:59:34Z +133 727 2020-02-15T06:59:34Z +133 806 2020-02-15T06:59:34Z +133 868 2020-02-15T06:59:34Z +133 882 2020-02-15T06:59:34Z +133 894 2020-02-15T06:59:34Z +133 933 2020-02-15T06:59:34Z +133 952 2020-02-15T06:59:34Z +134 132 2020-02-15T06:59:34Z +134 145 2020-02-15T06:59:34Z +134 161 2020-02-15T06:59:34Z +134 219 2020-02-15T06:59:34Z +134 243 2020-02-15T06:59:34Z +134 250 2020-02-15T06:59:34Z +134 278 2020-02-15T06:59:34Z +134 341 2020-02-15T06:59:34Z +134 386 2020-02-15T06:59:34Z +134 413 2020-02-15T06:59:34Z +134 558 2020-02-15T06:59:34Z +134 588 2020-02-15T06:59:34Z +134 624 2020-02-15T06:59:34Z +134 655 2020-02-15T06:59:34Z +134 683 2020-02-15T06:59:34Z +134 690 2020-02-15T06:59:34Z +134 861 2020-02-15T06:59:34Z +134 896 2020-02-15T06:59:34Z +134 897 2020-02-15T06:59:34Z +134 915 2020-02-15T06:59:34Z +134 927 2020-02-15T06:59:34Z +134 936 2020-02-15T06:59:34Z +135 35 2020-02-15T06:59:34Z +135 41 2020-02-15T06:59:34Z +135 65 2020-02-15T06:59:34Z +135 88 2020-02-15T06:59:34Z +135 170 2020-02-15T06:59:34Z +135 269 2020-02-15T06:59:34Z +135 320 2020-02-15T06:59:34Z +135 353 2020-02-15T06:59:34Z +135 357 2020-02-15T06:59:34Z +135 364 2020-02-15T06:59:34Z +135 455 2020-02-15T06:59:34Z +135 458 2020-02-15T06:59:34Z +135 484 2020-02-15T06:59:34Z +135 541 2020-02-15T06:59:34Z +135 553 2020-02-15T06:59:34Z +135 616 2020-02-15T06:59:34Z +135 628 2020-02-15T06:59:34Z +135 719 2020-02-15T06:59:34Z +135 814 2020-02-15T06:59:34Z +135 905 2020-02-15T06:59:34Z +136 20 2020-02-15T06:59:34Z +136 25 2020-02-15T06:59:34Z +136 33 2020-02-15T06:59:34Z +136 56 2020-02-15T06:59:34Z +136 61 2020-02-15T06:59:34Z +136 193 2020-02-15T06:59:34Z +136 214 2020-02-15T06:59:34Z +136 229 2020-02-15T06:59:34Z +136 243 2020-02-15T06:59:34Z +136 256 2020-02-15T06:59:34Z +136 262 2020-02-15T06:59:34Z +136 271 2020-02-15T06:59:34Z +136 288 2020-02-15T06:59:34Z +136 300 2020-02-15T06:59:34Z +136 364 2020-02-15T06:59:34Z +136 401 2020-02-15T06:59:34Z +136 414 2020-02-15T06:59:34Z +136 420 2020-02-15T06:59:34Z +136 474 2020-02-15T06:59:34Z +136 485 2020-02-15T06:59:34Z +136 542 2020-02-15T06:59:34Z +136 552 2020-02-15T06:59:34Z +136 620 2020-02-15T06:59:34Z +136 649 2020-02-15T06:59:34Z +136 686 2020-02-15T06:59:34Z +136 781 2020-02-15T06:59:34Z +136 806 2020-02-15T06:59:34Z +136 808 2020-02-15T06:59:34Z +136 818 2020-02-15T06:59:34Z +136 842 2020-02-15T06:59:34Z +136 933 2020-02-15T06:59:34Z +136 993 2020-02-15T06:59:34Z +137 6 2020-02-15T06:59:34Z +137 14 2020-02-15T06:59:34Z +137 56 2020-02-15T06:59:34Z +137 96 2020-02-15T06:59:34Z +137 160 2020-02-15T06:59:34Z +137 224 2020-02-15T06:59:34Z +137 249 2020-02-15T06:59:34Z +137 254 2020-02-15T06:59:34Z +137 263 2020-02-15T06:59:34Z +137 268 2020-02-15T06:59:34Z +137 304 2020-02-15T06:59:34Z +137 390 2020-02-15T06:59:34Z +137 410 2020-02-15T06:59:34Z +137 433 2020-02-15T06:59:34Z +137 446 2020-02-15T06:59:34Z +137 489 2020-02-15T06:59:34Z +137 530 2020-02-15T06:59:34Z +137 564 2020-02-15T06:59:34Z +137 603 2020-02-15T06:59:34Z +137 610 2020-02-15T06:59:34Z +137 688 2020-02-15T06:59:34Z +137 703 2020-02-15T06:59:34Z +137 745 2020-02-15T06:59:34Z +137 758 2020-02-15T06:59:34Z +137 832 2020-02-15T06:59:34Z +137 841 2020-02-15T06:59:34Z +137 917 2020-02-15T06:59:34Z +138 8 2020-02-15T06:59:34Z +138 52 2020-02-15T06:59:34Z +138 61 2020-02-15T06:59:34Z +138 125 2020-02-15T06:59:34Z +138 157 2020-02-15T06:59:34Z +138 214 2020-02-15T06:59:34Z +138 258 2020-02-15T06:59:34Z +138 376 2020-02-15T06:59:34Z +138 403 2020-02-15T06:59:34Z +138 446 2020-02-15T06:59:34Z +138 453 2020-02-15T06:59:34Z +138 508 2020-02-15T06:59:34Z +138 553 2020-02-15T06:59:34Z +138 561 2020-02-15T06:59:34Z +138 583 2020-02-15T06:59:34Z +138 627 2020-02-15T06:59:34Z +138 639 2020-02-15T06:59:34Z +138 695 2020-02-15T06:59:34Z +138 747 2020-02-15T06:59:34Z +138 879 2020-02-15T06:59:34Z +138 885 2020-02-15T06:59:34Z +138 923 2020-02-15T06:59:34Z +138 970 2020-02-15T06:59:34Z +138 989 2020-02-15T06:59:34Z +139 20 2020-02-15T06:59:34Z +139 35 2020-02-15T06:59:34Z +139 57 2020-02-15T06:59:34Z +139 74 2020-02-15T06:59:34Z +139 90 2020-02-15T06:59:34Z +139 107 2020-02-15T06:59:34Z +139 155 2020-02-15T06:59:34Z +139 170 2020-02-15T06:59:34Z +139 181 2020-02-15T06:59:34Z +139 200 2020-02-15T06:59:34Z +139 229 2020-02-15T06:59:34Z +139 233 2020-02-15T06:59:34Z +139 261 2020-02-15T06:59:34Z +139 262 2020-02-15T06:59:34Z +139 266 2020-02-15T06:59:34Z +139 282 2020-02-15T06:59:34Z +139 284 2020-02-15T06:59:34Z +139 373 2020-02-15T06:59:34Z +139 447 2020-02-15T06:59:34Z +139 489 2020-02-15T06:59:34Z +139 529 2020-02-15T06:59:34Z +139 540 2020-02-15T06:59:34Z +139 570 2020-02-15T06:59:34Z +139 602 2020-02-15T06:59:34Z +139 605 2020-02-15T06:59:34Z +139 636 2020-02-15T06:59:34Z +139 691 2020-02-15T06:59:34Z +139 706 2020-02-15T06:59:34Z +139 719 2020-02-15T06:59:34Z +139 744 2020-02-15T06:59:34Z +139 746 2020-02-15T06:59:34Z +139 862 2020-02-15T06:59:34Z +139 892 2020-02-15T06:59:34Z +140 27 2020-02-15T06:59:34Z +140 77 2020-02-15T06:59:34Z +140 112 2020-02-15T06:59:34Z +140 135 2020-02-15T06:59:34Z +140 185 2020-02-15T06:59:34Z +140 258 2020-02-15T06:59:34Z +140 370 2020-02-15T06:59:34Z +140 373 2020-02-15T06:59:34Z +140 498 2020-02-15T06:59:34Z +140 509 2020-02-15T06:59:34Z +140 576 2020-02-15T06:59:34Z +140 587 2020-02-15T06:59:34Z +140 599 2020-02-15T06:59:34Z +140 608 2020-02-15T06:59:34Z +140 647 2020-02-15T06:59:34Z +140 665 2020-02-15T06:59:34Z +140 670 2020-02-15T06:59:34Z +140 693 2020-02-15T06:59:34Z +140 702 2020-02-15T06:59:34Z +140 729 2020-02-15T06:59:34Z +140 730 2020-02-15T06:59:34Z +140 731 2020-02-15T06:59:34Z +140 736 2020-02-15T06:59:34Z +140 742 2020-02-15T06:59:34Z +140 778 2020-02-15T06:59:34Z +140 820 2020-02-15T06:59:34Z +140 830 2020-02-15T06:59:34Z +140 835 2020-02-15T06:59:34Z +140 857 2020-02-15T06:59:34Z +140 923 2020-02-15T06:59:34Z +140 934 2020-02-15T06:59:34Z +140 999 2020-02-15T06:59:34Z +141 43 2020-02-15T06:59:34Z +141 67 2020-02-15T06:59:34Z +141 188 2020-02-15T06:59:34Z +141 191 2020-02-15T06:59:34Z +141 207 2020-02-15T06:59:34Z +141 223 2020-02-15T06:59:34Z +141 341 2020-02-15T06:59:34Z +141 358 2020-02-15T06:59:34Z +141 380 2020-02-15T06:59:34Z +141 395 2020-02-15T06:59:34Z +141 467 2020-02-15T06:59:34Z +141 491 2020-02-15T06:59:34Z +141 589 2020-02-15T06:59:34Z +141 607 2020-02-15T06:59:34Z +141 673 2020-02-15T06:59:34Z +141 740 2020-02-15T06:59:34Z +141 752 2020-02-15T06:59:34Z +141 768 2020-02-15T06:59:34Z +141 772 2020-02-15T06:59:34Z +141 787 2020-02-15T06:59:34Z +141 821 2020-02-15T06:59:34Z +141 829 2020-02-15T06:59:34Z +141 840 2020-02-15T06:59:34Z +141 849 2020-02-15T06:59:34Z +141 862 2020-02-15T06:59:34Z +141 863 2020-02-15T06:59:34Z +141 909 2020-02-15T06:59:34Z +141 992 2020-02-15T06:59:34Z +142 10 2020-02-15T06:59:34Z +142 18 2020-02-15T06:59:34Z +142 107 2020-02-15T06:59:34Z +142 139 2020-02-15T06:59:34Z +142 186 2020-02-15T06:59:34Z +142 199 2020-02-15T06:59:34Z +142 248 2020-02-15T06:59:34Z +142 328 2020-02-15T06:59:34Z +142 350 2020-02-15T06:59:34Z +142 371 2020-02-15T06:59:34Z +142 470 2020-02-15T06:59:34Z +142 481 2020-02-15T06:59:34Z +142 494 2020-02-15T06:59:34Z +142 501 2020-02-15T06:59:34Z +142 504 2020-02-15T06:59:34Z +142 540 2020-02-15T06:59:34Z +142 554 2020-02-15T06:59:34Z +142 575 2020-02-15T06:59:34Z +142 608 2020-02-15T06:59:34Z +142 710 2020-02-15T06:59:34Z +142 712 2020-02-15T06:59:34Z +142 735 2020-02-15T06:59:34Z +142 759 2020-02-15T06:59:34Z +142 794 2020-02-15T06:59:34Z +142 842 2020-02-15T06:59:34Z +142 859 2020-02-15T06:59:34Z +142 863 2020-02-15T06:59:34Z +142 875 2020-02-15T06:59:34Z +142 906 2020-02-15T06:59:34Z +142 914 2020-02-15T06:59:34Z +142 999 2020-02-15T06:59:34Z +143 47 2020-02-15T06:59:34Z +143 79 2020-02-15T06:59:34Z +143 141 2020-02-15T06:59:34Z +143 175 2020-02-15T06:59:34Z +143 232 2020-02-15T06:59:34Z +143 239 2020-02-15T06:59:34Z +143 316 2020-02-15T06:59:34Z +143 339 2020-02-15T06:59:34Z +143 361 2020-02-15T06:59:34Z +143 386 2020-02-15T06:59:34Z +143 404 2020-02-15T06:59:34Z +143 457 2020-02-15T06:59:34Z +143 485 2020-02-15T06:59:34Z +143 497 2020-02-15T06:59:34Z +143 560 2020-02-15T06:59:34Z +143 576 2020-02-15T06:59:34Z +143 603 2020-02-15T06:59:34Z +143 613 2020-02-15T06:59:34Z +143 659 2020-02-15T06:59:34Z +143 660 2020-02-15T06:59:34Z +143 680 2020-02-15T06:59:34Z +143 687 2020-02-15T06:59:34Z +143 690 2020-02-15T06:59:34Z +143 706 2020-02-15T06:59:34Z +143 792 2020-02-15T06:59:34Z +143 821 2020-02-15T06:59:34Z +143 830 2020-02-15T06:59:34Z +143 872 2020-02-15T06:59:34Z +143 878 2020-02-15T06:59:34Z +143 906 2020-02-15T06:59:34Z +143 958 2020-02-15T06:59:34Z +144 18 2020-02-15T06:59:34Z +144 67 2020-02-15T06:59:34Z +144 79 2020-02-15T06:59:34Z +144 90 2020-02-15T06:59:34Z +144 99 2020-02-15T06:59:34Z +144 105 2020-02-15T06:59:34Z +144 123 2020-02-15T06:59:34Z +144 125 2020-02-15T06:59:34Z +144 127 2020-02-15T06:59:34Z +144 130 2020-02-15T06:59:34Z +144 135 2020-02-15T06:59:34Z +144 164 2020-02-15T06:59:34Z +144 184 2020-02-15T06:59:34Z +144 216 2020-02-15T06:59:34Z +144 228 2020-02-15T06:59:34Z +144 260 2020-02-15T06:59:34Z +144 272 2020-02-15T06:59:34Z +144 291 2020-02-15T06:59:34Z +144 293 2020-02-15T06:59:34Z +144 312 2020-02-15T06:59:34Z +144 393 2020-02-15T06:59:34Z +144 396 2020-02-15T06:59:34Z +144 473 2020-02-15T06:59:34Z +144 504 2020-02-15T06:59:34Z +144 540 2020-02-15T06:59:34Z +144 599 2020-02-15T06:59:34Z +144 668 2020-02-15T06:59:34Z +144 702 2020-02-15T06:59:34Z +144 753 2020-02-15T06:59:34Z +144 762 2020-02-15T06:59:34Z +144 776 2020-02-15T06:59:34Z +144 785 2020-02-15T06:59:34Z +144 845 2020-02-15T06:59:34Z +144 894 2020-02-15T06:59:34Z +144 953 2020-02-15T06:59:34Z +145 39 2020-02-15T06:59:34Z +145 109 2020-02-15T06:59:34Z +145 120 2020-02-15T06:59:34Z +145 154 2020-02-15T06:59:34Z +145 155 2020-02-15T06:59:34Z +145 243 2020-02-15T06:59:34Z +145 293 2020-02-15T06:59:34Z +145 402 2020-02-15T06:59:34Z +145 409 2020-02-15T06:59:34Z +145 457 2020-02-15T06:59:34Z +145 475 2020-02-15T06:59:34Z +145 487 2020-02-15T06:59:34Z +145 494 2020-02-15T06:59:34Z +145 527 2020-02-15T06:59:34Z +145 592 2020-02-15T06:59:34Z +145 625 2020-02-15T06:59:34Z +145 629 2020-02-15T06:59:34Z +145 641 2020-02-15T06:59:34Z +145 661 2020-02-15T06:59:34Z +145 664 2020-02-15T06:59:34Z +145 692 2020-02-15T06:59:34Z +145 713 2020-02-15T06:59:34Z +145 726 2020-02-15T06:59:34Z +145 748 2020-02-15T06:59:34Z +145 822 2020-02-15T06:59:34Z +145 893 2020-02-15T06:59:34Z +145 923 2020-02-15T06:59:34Z +145 953 2020-02-15T06:59:34Z +146 12 2020-02-15T06:59:34Z +146 16 2020-02-15T06:59:34Z +146 33 2020-02-15T06:59:34Z +146 117 2020-02-15T06:59:34Z +146 177 2020-02-15T06:59:34Z +146 191 2020-02-15T06:59:34Z +146 197 2020-02-15T06:59:34Z +146 207 2020-02-15T06:59:34Z +146 218 2020-02-15T06:59:34Z +146 278 2020-02-15T06:59:34Z +146 296 2020-02-15T06:59:34Z +146 314 2020-02-15T06:59:34Z +146 320 2020-02-15T06:59:34Z +146 372 2020-02-15T06:59:34Z +146 384 2020-02-15T06:59:34Z +146 402 2020-02-15T06:59:34Z +146 410 2020-02-15T06:59:34Z +146 427 2020-02-15T06:59:34Z +146 429 2020-02-15T06:59:34Z +146 512 2020-02-15T06:59:34Z +146 514 2020-02-15T06:59:34Z +146 571 2020-02-15T06:59:34Z +146 591 2020-02-15T06:59:34Z +146 720 2020-02-15T06:59:34Z +146 731 2020-02-15T06:59:34Z +146 734 2020-02-15T06:59:34Z +146 871 2020-02-15T06:59:34Z +146 909 2020-02-15T06:59:34Z +146 922 2020-02-15T06:59:34Z +146 945 2020-02-15T06:59:34Z +146 955 2020-02-15T06:59:34Z +146 966 2020-02-15T06:59:34Z +146 969 2020-02-15T06:59:34Z +147 4 2020-02-15T06:59:34Z +147 85 2020-02-15T06:59:34Z +147 131 2020-02-15T06:59:34Z +147 139 2020-02-15T06:59:34Z +147 145 2020-02-15T06:59:34Z +147 178 2020-02-15T06:59:34Z +147 251 2020-02-15T06:59:34Z +147 254 2020-02-15T06:59:34Z +147 295 2020-02-15T06:59:34Z +147 298 2020-02-15T06:59:34Z +147 305 2020-02-15T06:59:34Z +147 310 2020-02-15T06:59:34Z +147 318 2020-02-15T06:59:34Z +147 333 2020-02-15T06:59:34Z +147 341 2020-02-15T06:59:34Z +147 351 2020-02-15T06:59:34Z +147 394 2020-02-15T06:59:34Z +147 402 2020-02-15T06:59:34Z +147 405 2020-02-15T06:59:34Z +147 410 2020-02-15T06:59:34Z +147 431 2020-02-15T06:59:34Z +147 443 2020-02-15T06:59:34Z +147 508 2020-02-15T06:59:34Z +147 554 2020-02-15T06:59:34Z +147 563 2020-02-15T06:59:34Z +147 649 2020-02-15T06:59:34Z +147 688 2020-02-15T06:59:34Z +147 708 2020-02-15T06:59:34Z +147 864 2020-02-15T06:59:34Z +147 957 2020-02-15T06:59:34Z +147 987 2020-02-15T06:59:34Z +148 27 2020-02-15T06:59:34Z +148 57 2020-02-15T06:59:34Z +148 133 2020-02-15T06:59:34Z +148 149 2020-02-15T06:59:34Z +148 226 2020-02-15T06:59:34Z +148 342 2020-02-15T06:59:34Z +148 368 2020-02-15T06:59:34Z +148 422 2020-02-15T06:59:34Z +148 468 2020-02-15T06:59:34Z +148 633 2020-02-15T06:59:34Z +148 718 2020-02-15T06:59:34Z +148 768 2020-02-15T06:59:34Z +148 772 2020-02-15T06:59:34Z +148 792 2020-02-15T06:59:34Z +149 53 2020-02-15T06:59:34Z +149 72 2020-02-15T06:59:34Z +149 95 2020-02-15T06:59:34Z +149 118 2020-02-15T06:59:34Z +149 139 2020-02-15T06:59:34Z +149 146 2020-02-15T06:59:34Z +149 153 2020-02-15T06:59:34Z +149 159 2020-02-15T06:59:34Z +149 169 2020-02-15T06:59:34Z +149 178 2020-02-15T06:59:34Z +149 188 2020-02-15T06:59:34Z +149 193 2020-02-15T06:59:34Z +149 339 2020-02-15T06:59:34Z +149 354 2020-02-15T06:59:34Z +149 362 2020-02-15T06:59:34Z +149 365 2020-02-15T06:59:34Z +149 458 2020-02-15T06:59:34Z +149 631 2020-02-15T06:59:34Z +149 670 2020-02-15T06:59:34Z +149 685 2020-02-15T06:59:34Z +149 761 2020-02-15T06:59:34Z +149 782 2020-02-15T06:59:34Z +149 810 2020-02-15T06:59:34Z +149 811 2020-02-15T06:59:34Z +149 899 2020-02-15T06:59:34Z +149 905 2020-02-15T06:59:34Z +149 913 2020-02-15T06:59:34Z +149 921 2020-02-15T06:59:34Z +149 947 2020-02-15T06:59:34Z +149 949 2020-02-15T06:59:34Z +149 992 2020-02-15T06:59:34Z +150 23 2020-02-15T06:59:34Z +150 63 2020-02-15T06:59:34Z +150 75 2020-02-15T06:59:34Z +150 94 2020-02-15T06:59:34Z +150 105 2020-02-15T06:59:34Z +150 168 2020-02-15T06:59:34Z +150 190 2020-02-15T06:59:34Z +150 206 2020-02-15T06:59:34Z +150 233 2020-02-15T06:59:34Z +150 270 2020-02-15T06:59:34Z +150 285 2020-02-15T06:59:34Z +150 306 2020-02-15T06:59:34Z +150 386 2020-02-15T06:59:34Z +150 433 2020-02-15T06:59:34Z +150 446 2020-02-15T06:59:34Z +150 447 2020-02-15T06:59:34Z +150 468 2020-02-15T06:59:34Z +150 508 2020-02-15T06:59:34Z +150 542 2020-02-15T06:59:34Z +150 551 2020-02-15T06:59:34Z +150 629 2020-02-15T06:59:34Z +150 647 2020-02-15T06:59:34Z +150 672 2020-02-15T06:59:34Z +150 697 2020-02-15T06:59:34Z +150 728 2020-02-15T06:59:34Z +150 777 2020-02-15T06:59:34Z +150 854 2020-02-15T06:59:34Z +150 873 2020-02-15T06:59:34Z +150 880 2020-02-15T06:59:34Z +150 887 2020-02-15T06:59:34Z +150 889 2020-02-15T06:59:34Z +150 892 2020-02-15T06:59:34Z +150 953 2020-02-15T06:59:34Z +150 962 2020-02-15T06:59:34Z +151 131 2020-02-15T06:59:34Z +151 144 2020-02-15T06:59:34Z +151 167 2020-02-15T06:59:34Z +151 170 2020-02-15T06:59:34Z +151 217 2020-02-15T06:59:34Z +151 232 2020-02-15T06:59:34Z +151 342 2020-02-15T06:59:34Z +151 367 2020-02-15T06:59:34Z +151 370 2020-02-15T06:59:34Z +151 382 2020-02-15T06:59:34Z +151 451 2020-02-15T06:59:34Z +151 463 2020-02-15T06:59:34Z +151 482 2020-02-15T06:59:34Z +151 501 2020-02-15T06:59:34Z +151 527 2020-02-15T06:59:34Z +151 539 2020-02-15T06:59:34Z +151 570 2020-02-15T06:59:34Z +151 574 2020-02-15T06:59:34Z +151 634 2020-02-15T06:59:34Z +151 658 2020-02-15T06:59:34Z +151 665 2020-02-15T06:59:34Z +151 703 2020-02-15T06:59:34Z +151 880 2020-02-15T06:59:34Z +151 892 2020-02-15T06:59:34Z +151 895 2020-02-15T06:59:34Z +151 989 2020-02-15T06:59:34Z +152 59 2020-02-15T06:59:34Z +152 153 2020-02-15T06:59:34Z +152 217 2020-02-15T06:59:34Z +152 248 2020-02-15T06:59:34Z +152 318 2020-02-15T06:59:34Z +152 332 2020-02-15T06:59:34Z +152 475 2020-02-15T06:59:34Z +152 476 2020-02-15T06:59:34Z +152 578 2020-02-15T06:59:34Z +152 607 2020-02-15T06:59:34Z +152 611 2020-02-15T06:59:34Z +152 615 2020-02-15T06:59:34Z +152 674 2020-02-15T06:59:34Z +152 680 2020-02-15T06:59:34Z +152 729 2020-02-15T06:59:34Z +152 768 2020-02-15T06:59:34Z +152 821 2020-02-15T06:59:34Z +152 846 2020-02-15T06:59:34Z +152 891 2020-02-15T06:59:34Z +152 898 2020-02-15T06:59:34Z +152 927 2020-02-15T06:59:34Z +152 964 2020-02-15T06:59:34Z +152 968 2020-02-15T06:59:34Z +153 47 2020-02-15T06:59:34Z +153 64 2020-02-15T06:59:34Z +153 136 2020-02-15T06:59:34Z +153 180 2020-02-15T06:59:34Z +153 203 2020-02-15T06:59:34Z +153 231 2020-02-15T06:59:34Z +153 444 2020-02-15T06:59:34Z +153 476 2020-02-15T06:59:34Z +153 480 2020-02-15T06:59:34Z +153 486 2020-02-15T06:59:34Z +153 536 2020-02-15T06:59:34Z +153 627 2020-02-15T06:59:34Z +153 732 2020-02-15T06:59:34Z +153 756 2020-02-15T06:59:34Z +153 766 2020-02-15T06:59:34Z +153 817 2020-02-15T06:59:34Z +153 847 2020-02-15T06:59:34Z +153 919 2020-02-15T06:59:34Z +153 938 2020-02-15T06:59:34Z +153 988 2020-02-15T06:59:34Z +154 27 2020-02-15T06:59:34Z +154 111 2020-02-15T06:59:34Z +154 141 2020-02-15T06:59:34Z +154 158 2020-02-15T06:59:34Z +154 169 2020-02-15T06:59:34Z +154 170 2020-02-15T06:59:34Z +154 193 2020-02-15T06:59:34Z +154 208 2020-02-15T06:59:34Z +154 274 2020-02-15T06:59:34Z +154 276 2020-02-15T06:59:34Z +154 282 2020-02-15T06:59:34Z +154 299 2020-02-15T06:59:34Z +154 314 2020-02-15T06:59:34Z +154 396 2020-02-15T06:59:34Z +154 399 2020-02-15T06:59:34Z +154 421 2020-02-15T06:59:34Z +154 440 2020-02-15T06:59:34Z +154 467 2020-02-15T06:59:34Z +154 474 2020-02-15T06:59:34Z +154 489 2020-02-15T06:59:34Z +154 588 2020-02-15T06:59:34Z +154 602 2020-02-15T06:59:34Z +154 680 2020-02-15T06:59:34Z +154 698 2020-02-15T06:59:34Z +154 802 2020-02-15T06:59:34Z +154 842 2020-02-15T06:59:34Z +154 954 2020-02-15T06:59:34Z +154 988 2020-02-15T06:59:34Z +155 20 2020-02-15T06:59:34Z +155 67 2020-02-15T06:59:34Z +155 128 2020-02-15T06:59:34Z +155 153 2020-02-15T06:59:34Z +155 220 2020-02-15T06:59:34Z +155 249 2020-02-15T06:59:34Z +155 303 2020-02-15T06:59:34Z +155 312 2020-02-15T06:59:34Z +155 359 2020-02-15T06:59:34Z +155 361 2020-02-15T06:59:34Z +155 383 2020-02-15T06:59:34Z +155 387 2020-02-15T06:59:34Z +155 407 2020-02-15T06:59:34Z +155 427 2020-02-15T06:59:34Z +155 459 2020-02-15T06:59:34Z +155 513 2020-02-15T06:59:34Z +155 584 2020-02-15T06:59:34Z +155 590 2020-02-15T06:59:34Z +155 630 2020-02-15T06:59:34Z +155 688 2020-02-15T06:59:34Z +155 757 2020-02-15T06:59:34Z +155 768 2020-02-15T06:59:34Z +155 785 2020-02-15T06:59:34Z +155 849 2020-02-15T06:59:34Z +155 885 2020-02-15T06:59:34Z +155 890 2020-02-15T06:59:34Z +155 941 2020-02-15T06:59:34Z +155 966 2020-02-15T06:59:34Z +155 987 2020-02-15T06:59:34Z +155 997 2020-02-15T06:59:34Z +155 1000 2020-02-15T06:59:34Z +156 53 2020-02-15T06:59:34Z +156 155 2020-02-15T06:59:34Z +156 198 2020-02-15T06:59:34Z +156 244 2020-02-15T06:59:34Z +156 262 2020-02-15T06:59:34Z +156 263 2020-02-15T06:59:34Z +156 285 2020-02-15T06:59:34Z +156 297 2020-02-15T06:59:34Z +156 301 2020-02-15T06:59:34Z +156 349 2020-02-15T06:59:34Z +156 379 2020-02-15T06:59:34Z +156 448 2020-02-15T06:59:34Z +156 462 2020-02-15T06:59:34Z +156 467 2020-02-15T06:59:34Z +156 504 2020-02-15T06:59:34Z +156 518 2020-02-15T06:59:34Z +156 593 2020-02-15T06:59:34Z +156 646 2020-02-15T06:59:34Z +156 705 2020-02-15T06:59:34Z +156 754 2020-02-15T06:59:34Z +156 775 2020-02-15T06:59:34Z +156 844 2020-02-15T06:59:34Z +157 10 2020-02-15T06:59:34Z +157 24 2020-02-15T06:59:34Z +157 34 2020-02-15T06:59:34Z +157 122 2020-02-15T06:59:34Z +157 159 2020-02-15T06:59:34Z +157 183 2020-02-15T06:59:34Z +157 210 2020-02-15T06:59:34Z +157 217 2020-02-15T06:59:34Z +157 291 2020-02-15T06:59:34Z +157 303 2020-02-15T06:59:34Z +157 321 2020-02-15T06:59:34Z +157 326 2020-02-15T06:59:35Z +157 353 2020-02-15T06:59:35Z +157 400 2020-02-15T06:59:35Z +157 406 2020-02-15T06:59:35Z +157 431 2020-02-15T06:59:35Z +157 496 2020-02-15T06:59:35Z +157 535 2020-02-15T06:59:35Z +157 573 2020-02-15T06:59:35Z +157 574 2020-02-15T06:59:35Z +157 604 2020-02-15T06:59:35Z +157 616 2020-02-15T06:59:35Z +157 642 2020-02-15T06:59:35Z +157 661 2020-02-15T06:59:35Z +157 696 2020-02-15T06:59:35Z +157 713 2020-02-15T06:59:35Z +157 802 2020-02-15T06:59:35Z +157 835 2020-02-15T06:59:35Z +157 874 2020-02-15T06:59:35Z +157 913 2020-02-15T06:59:35Z +157 967 2020-02-15T06:59:35Z +157 973 2020-02-15T06:59:35Z +158 32 2020-02-15T06:59:35Z +158 47 2020-02-15T06:59:35Z +158 64 2020-02-15T06:59:35Z +158 66 2020-02-15T06:59:35Z +158 102 2020-02-15T06:59:35Z +158 121 2020-02-15T06:59:35Z +158 177 2020-02-15T06:59:35Z +158 178 2020-02-15T06:59:35Z +158 188 2020-02-15T06:59:35Z +158 215 2020-02-15T06:59:35Z +158 241 2020-02-15T06:59:35Z +158 293 2020-02-15T06:59:35Z +158 437 2020-02-15T06:59:35Z +158 473 2020-02-15T06:59:35Z +158 483 2020-02-15T06:59:35Z +158 532 2020-02-15T06:59:35Z +158 555 2020-02-15T06:59:35Z +158 581 2020-02-15T06:59:35Z +158 601 2020-02-15T06:59:35Z +158 616 2020-02-15T06:59:35Z +158 626 2020-02-15T06:59:35Z +158 637 2020-02-15T06:59:35Z +158 799 2020-02-15T06:59:35Z +158 812 2020-02-15T06:59:35Z +158 824 2020-02-15T06:59:35Z +158 830 2020-02-15T06:59:35Z +158 840 2020-02-15T06:59:35Z +158 869 2020-02-15T06:59:35Z +158 879 2020-02-15T06:59:35Z +158 880 2020-02-15T06:59:35Z +158 894 2020-02-15T06:59:35Z +158 896 2020-02-15T06:59:35Z +158 967 2020-02-15T06:59:35Z +158 968 2020-02-15T06:59:35Z +158 990 2020-02-15T06:59:35Z +159 20 2020-02-15T06:59:35Z +159 82 2020-02-15T06:59:35Z +159 127 2020-02-15T06:59:35Z +159 187 2020-02-15T06:59:35Z +159 206 2020-02-15T06:59:35Z +159 208 2020-02-15T06:59:35Z +159 223 2020-02-15T06:59:35Z +159 248 2020-02-15T06:59:35Z +159 342 2020-02-15T06:59:35Z +159 343 2020-02-15T06:59:35Z +159 344 2020-02-15T06:59:35Z +159 364 2020-02-15T06:59:35Z +159 418 2020-02-15T06:59:35Z +159 549 2020-02-15T06:59:35Z +159 561 2020-02-15T06:59:35Z +159 600 2020-02-15T06:59:35Z +159 674 2020-02-15T06:59:35Z +159 680 2020-02-15T06:59:35Z +159 784 2020-02-15T06:59:35Z +159 789 2020-02-15T06:59:35Z +159 800 2020-02-15T06:59:35Z +159 802 2020-02-15T06:59:35Z +159 818 2020-02-15T06:59:35Z +159 876 2020-02-15T06:59:35Z +159 907 2020-02-15T06:59:35Z +159 978 2020-02-15T06:59:35Z +160 2 2020-02-15T06:59:35Z +160 17 2020-02-15T06:59:35Z +160 43 2020-02-15T06:59:35Z +160 242 2020-02-15T06:59:35Z +160 267 2020-02-15T06:59:35Z +160 275 2020-02-15T06:59:35Z +160 368 2020-02-15T06:59:35Z +160 455 2020-02-15T06:59:35Z +160 469 2020-02-15T06:59:35Z +160 484 2020-02-15T06:59:35Z +160 579 2020-02-15T06:59:35Z +160 660 2020-02-15T06:59:35Z +160 755 2020-02-15T06:59:35Z +160 767 2020-02-15T06:59:35Z +160 769 2020-02-15T06:59:35Z +160 794 2020-02-15T06:59:35Z +160 826 2020-02-15T06:59:35Z +160 883 2020-02-15T06:59:35Z +160 950 2020-02-15T06:59:35Z +160 954 2020-02-15T06:59:35Z +161 43 2020-02-15T06:59:35Z +161 58 2020-02-15T06:59:35Z +161 89 2020-02-15T06:59:35Z +161 90 2020-02-15T06:59:35Z +161 120 2020-02-15T06:59:35Z +161 188 2020-02-15T06:59:35Z +161 247 2020-02-15T06:59:35Z +161 269 2020-02-15T06:59:35Z +161 281 2020-02-15T06:59:35Z +161 340 2020-02-15T06:59:35Z +161 353 2020-02-15T06:59:35Z +161 401 2020-02-15T06:59:35Z +161 414 2020-02-15T06:59:35Z +161 425 2020-02-15T06:59:35Z +161 469 2020-02-15T06:59:35Z +161 526 2020-02-15T06:59:35Z +161 588 2020-02-15T06:59:35Z +161 644 2020-02-15T06:59:35Z +161 653 2020-02-15T06:59:35Z +161 655 2020-02-15T06:59:35Z +161 669 2020-02-15T06:59:35Z +161 684 2020-02-15T06:59:35Z +161 714 2020-02-15T06:59:35Z +161 749 2020-02-15T06:59:35Z +161 807 2020-02-15T06:59:35Z +161 825 2020-02-15T06:59:35Z +161 850 2020-02-15T06:59:35Z +161 880 2020-02-15T06:59:35Z +161 920 2020-02-15T06:59:35Z +161 921 2020-02-15T06:59:35Z +161 924 2020-02-15T06:59:35Z +161 927 2020-02-15T06:59:35Z +162 1 2020-02-15T06:59:35Z +162 4 2020-02-15T06:59:35Z +162 7 2020-02-15T06:59:35Z +162 18 2020-02-15T06:59:35Z +162 28 2020-02-15T06:59:35Z +162 32 2020-02-15T06:59:35Z +162 33 2020-02-15T06:59:35Z +162 41 2020-02-15T06:59:35Z +162 85 2020-02-15T06:59:35Z +162 121 2020-02-15T06:59:35Z +162 164 2020-02-15T06:59:35Z +162 274 2020-02-15T06:59:35Z +162 279 2020-02-15T06:59:35Z +162 409 2020-02-15T06:59:35Z +162 410 2020-02-15T06:59:35Z +162 415 2020-02-15T06:59:35Z +162 500 2020-02-15T06:59:35Z +162 574 2020-02-15T06:59:35Z +162 612 2020-02-15T06:59:35Z +162 636 2020-02-15T06:59:35Z +162 659 2020-02-15T06:59:35Z +162 786 2020-02-15T06:59:35Z +162 844 2020-02-15T06:59:35Z +162 909 2020-02-15T06:59:35Z +162 968 2020-02-15T06:59:35Z +163 30 2020-02-15T06:59:35Z +163 45 2020-02-15T06:59:35Z +163 166 2020-02-15T06:59:35Z +163 180 2020-02-15T06:59:35Z +163 239 2020-02-15T06:59:35Z +163 283 2020-02-15T06:59:35Z +163 303 2020-02-15T06:59:35Z +163 304 2020-02-15T06:59:35Z +163 307 2020-02-15T06:59:35Z +163 394 2020-02-15T06:59:35Z +163 409 2020-02-15T06:59:35Z +163 434 2020-02-15T06:59:35Z +163 444 2020-02-15T06:59:35Z +163 522 2020-02-15T06:59:35Z +163 719 2020-02-15T06:59:35Z +163 785 2020-02-15T06:59:35Z +163 833 2020-02-15T06:59:35Z +163 881 2020-02-15T06:59:35Z +163 891 2020-02-15T06:59:35Z +163 947 2020-02-15T06:59:35Z +163 996 2020-02-15T06:59:35Z +164 15 2020-02-15T06:59:35Z +164 23 2020-02-15T06:59:35Z +164 148 2020-02-15T06:59:35Z +164 169 2020-02-15T06:59:35Z +164 252 2020-02-15T06:59:35Z +164 324 2020-02-15T06:59:35Z +164 347 2020-02-15T06:59:35Z +164 367 2020-02-15T06:59:35Z +164 431 2020-02-15T06:59:35Z +164 448 2020-02-15T06:59:35Z +164 469 2020-02-15T06:59:35Z +164 545 2020-02-15T06:59:35Z +164 610 2020-02-15T06:59:35Z +164 613 2020-02-15T06:59:35Z +164 673 2020-02-15T06:59:35Z +164 681 2020-02-15T06:59:35Z +164 698 2020-02-15T06:59:35Z +164 801 2020-02-15T06:59:35Z +164 820 2020-02-15T06:59:35Z +164 832 2020-02-15T06:59:35Z +164 834 2020-02-15T06:59:35Z +164 851 2020-02-15T06:59:35Z +164 884 2020-02-15T06:59:35Z +164 908 2020-02-15T06:59:35Z +164 957 2020-02-15T06:59:35Z +164 984 2020-02-15T06:59:35Z +165 72 2020-02-15T06:59:35Z +165 95 2020-02-15T06:59:35Z +165 146 2020-02-15T06:59:35Z +165 204 2020-02-15T06:59:35Z +165 253 2020-02-15T06:59:35Z +165 286 2020-02-15T06:59:35Z +165 360 2020-02-15T06:59:35Z +165 375 2020-02-15T06:59:35Z +165 395 2020-02-15T06:59:35Z +165 421 2020-02-15T06:59:35Z +165 437 2020-02-15T06:59:35Z +165 473 2020-02-15T06:59:35Z +165 607 2020-02-15T06:59:35Z +165 644 2020-02-15T06:59:35Z +165 659 2020-02-15T06:59:35Z +165 693 2020-02-15T06:59:35Z +165 737 2020-02-15T06:59:35Z +165 779 2020-02-15T06:59:35Z +165 798 2020-02-15T06:59:35Z +165 807 2020-02-15T06:59:35Z +165 809 2020-02-15T06:59:35Z +165 832 2020-02-15T06:59:35Z +165 833 2020-02-15T06:59:35Z +165 947 2020-02-15T06:59:35Z +165 948 2020-02-15T06:59:35Z +165 962 2020-02-15T06:59:35Z +166 25 2020-02-15T06:59:35Z +166 38 2020-02-15T06:59:35Z +166 55 2020-02-15T06:59:35Z +166 61 2020-02-15T06:59:35Z +166 68 2020-02-15T06:59:35Z +166 86 2020-02-15T06:59:35Z +166 146 2020-02-15T06:59:35Z +166 255 2020-02-15T06:59:35Z +166 297 2020-02-15T06:59:35Z +166 306 2020-02-15T06:59:35Z +166 326 2020-02-15T06:59:35Z +166 361 2020-02-15T06:59:35Z +166 366 2020-02-15T06:59:35Z +166 426 2020-02-15T06:59:35Z +166 580 2020-02-15T06:59:35Z +166 622 2020-02-15T06:59:35Z +166 674 2020-02-15T06:59:35Z +166 714 2020-02-15T06:59:35Z +166 788 2020-02-15T06:59:35Z +166 867 2020-02-15T06:59:35Z +166 944 2020-02-15T06:59:35Z +166 1000 2020-02-15T06:59:35Z +167 17 2020-02-15T06:59:35Z +167 25 2020-02-15T06:59:35Z +167 63 2020-02-15T06:59:35Z +167 72 2020-02-15T06:59:35Z +167 107 2020-02-15T06:59:35Z +167 120 2020-02-15T06:59:35Z +167 191 2020-02-15T06:59:35Z +167 294 2020-02-15T06:59:35Z +167 319 2020-02-15T06:59:35Z +167 339 2020-02-15T06:59:35Z +167 341 2020-02-15T06:59:35Z +167 496 2020-02-15T06:59:35Z +167 554 2020-02-15T06:59:35Z +167 626 2020-02-15T06:59:35Z +167 628 2020-02-15T06:59:35Z +167 672 2020-02-15T06:59:35Z +167 692 2020-02-15T06:59:35Z +167 717 2020-02-15T06:59:35Z +167 734 2020-02-15T06:59:35Z +167 794 2020-02-15T06:59:35Z +167 800 2020-02-15T06:59:35Z +167 802 2020-02-15T06:59:35Z +167 856 2020-02-15T06:59:35Z +167 864 2020-02-15T06:59:35Z +167 882 2020-02-15T06:59:35Z +167 923 2020-02-15T06:59:35Z +168 32 2020-02-15T06:59:35Z +168 56 2020-02-15T06:59:35Z +168 92 2020-02-15T06:59:35Z +168 115 2020-02-15T06:59:35Z +168 188 2020-02-15T06:59:35Z +168 196 2020-02-15T06:59:35Z +168 208 2020-02-15T06:59:35Z +168 237 2020-02-15T06:59:35Z +168 241 2020-02-15T06:59:35Z +168 255 2020-02-15T06:59:35Z +168 305 2020-02-15T06:59:35Z +168 336 2020-02-15T06:59:35Z +168 387 2020-02-15T06:59:35Z +168 433 2020-02-15T06:59:35Z +168 438 2020-02-15T06:59:35Z +168 519 2020-02-15T06:59:35Z +168 602 2020-02-15T06:59:35Z +168 619 2020-02-15T06:59:35Z +168 626 2020-02-15T06:59:35Z +168 652 2020-02-15T06:59:35Z +168 678 2020-02-15T06:59:35Z +168 685 2020-02-15T06:59:35Z +168 804 2020-02-15T06:59:35Z +168 807 2020-02-15T06:59:35Z +168 826 2020-02-15T06:59:35Z +168 841 2020-02-15T06:59:35Z +168 886 2020-02-15T06:59:35Z +168 889 2020-02-15T06:59:35Z +168 892 2020-02-15T06:59:35Z +168 927 2020-02-15T06:59:35Z +168 959 2020-02-15T06:59:35Z +169 6 2020-02-15T06:59:35Z +169 78 2020-02-15T06:59:35Z +169 93 2020-02-15T06:59:35Z +169 246 2020-02-15T06:59:35Z +169 248 2020-02-15T06:59:35Z +169 289 2020-02-15T06:59:35Z +169 301 2020-02-15T06:59:35Z +169 326 2020-02-15T06:59:35Z +169 349 2020-02-15T06:59:35Z +169 372 2020-02-15T06:59:35Z +169 398 2020-02-15T06:59:35Z +169 434 2020-02-15T06:59:35Z +169 505 2020-02-15T06:59:35Z +169 564 2020-02-15T06:59:35Z +169 571 2020-02-15T06:59:35Z +169 634 2020-02-15T06:59:35Z +169 642 2020-02-15T06:59:35Z +169 673 2020-02-15T06:59:35Z +169 694 2020-02-15T06:59:35Z +169 727 2020-02-15T06:59:35Z +169 778 2020-02-15T06:59:35Z +169 815 2020-02-15T06:59:35Z +169 847 2020-02-15T06:59:35Z +169 849 2020-02-15T06:59:35Z +169 894 2020-02-15T06:59:35Z +169 897 2020-02-15T06:59:35Z +169 954 2020-02-15T06:59:35Z +169 992 2020-02-15T06:59:35Z +169 998 2020-02-15T06:59:35Z +170 7 2020-02-15T06:59:35Z +170 15 2020-02-15T06:59:35Z +170 27 2020-02-15T06:59:35Z +170 33 2020-02-15T06:59:35Z +170 102 2020-02-15T06:59:35Z +170 139 2020-02-15T06:59:35Z +170 180 2020-02-15T06:59:35Z +170 184 2020-02-15T06:59:35Z +170 212 2020-02-15T06:59:35Z +170 299 2020-02-15T06:59:35Z +170 322 2020-02-15T06:59:35Z +170 358 2020-02-15T06:59:35Z +170 416 2020-02-15T06:59:35Z +170 508 2020-02-15T06:59:35Z +170 537 2020-02-15T06:59:35Z +170 705 2020-02-15T06:59:35Z +170 758 2020-02-15T06:59:35Z +170 764 2020-02-15T06:59:35Z +170 868 2020-02-15T06:59:35Z +170 877 2020-02-15T06:59:35Z +170 886 2020-02-15T06:59:35Z +170 925 2020-02-15T06:59:35Z +170 993 2020-02-15T06:59:35Z +170 996 2020-02-15T06:59:35Z +171 49 2020-02-15T06:59:35Z +171 146 2020-02-15T06:59:35Z +171 166 2020-02-15T06:59:35Z +171 181 2020-02-15T06:59:35Z +171 219 2020-02-15T06:59:35Z +171 273 2020-02-15T06:59:35Z +171 296 2020-02-15T06:59:35Z +171 318 2020-02-15T06:59:35Z +171 342 2020-02-15T06:59:35Z +171 397 2020-02-15T06:59:35Z +171 447 2020-02-15T06:59:35Z +171 450 2020-02-15T06:59:35Z +171 466 2020-02-15T06:59:35Z +171 549 2020-02-15T06:59:35Z +171 560 2020-02-15T06:59:35Z +171 566 2020-02-15T06:59:35Z +171 608 2020-02-15T06:59:35Z +171 625 2020-02-15T06:59:35Z +171 645 2020-02-15T06:59:35Z +171 701 2020-02-15T06:59:35Z +171 761 2020-02-15T06:59:35Z +171 779 2020-02-15T06:59:35Z +171 849 2020-02-15T06:59:35Z +171 872 2020-02-15T06:59:35Z +171 892 2020-02-15T06:59:35Z +171 898 2020-02-15T06:59:35Z +171 903 2020-02-15T06:59:35Z +171 953 2020-02-15T06:59:35Z +172 57 2020-02-15T06:59:35Z +172 100 2020-02-15T06:59:35Z +172 148 2020-02-15T06:59:35Z +172 215 2020-02-15T06:59:35Z +172 302 2020-02-15T06:59:35Z +172 345 2020-02-15T06:59:35Z +172 368 2020-02-15T06:59:35Z +172 385 2020-02-15T06:59:35Z +172 423 2020-02-15T06:59:35Z +172 487 2020-02-15T06:59:35Z +172 493 2020-02-15T06:59:35Z +172 529 2020-02-15T06:59:35Z +172 538 2020-02-15T06:59:35Z +172 567 2020-02-15T06:59:35Z +172 609 2020-02-15T06:59:35Z +172 639 2020-02-15T06:59:35Z +172 649 2020-02-15T06:59:35Z +172 661 2020-02-15T06:59:35Z +172 667 2020-02-15T06:59:35Z +172 710 2020-02-15T06:59:35Z +172 744 2020-02-15T06:59:35Z +172 758 2020-02-15T06:59:35Z +172 771 2020-02-15T06:59:35Z +172 833 2020-02-15T06:59:35Z +172 959 2020-02-15T06:59:35Z +173 49 2020-02-15T06:59:35Z +173 55 2020-02-15T06:59:35Z +173 74 2020-02-15T06:59:35Z +173 80 2020-02-15T06:59:35Z +173 106 2020-02-15T06:59:35Z +173 154 2020-02-15T06:59:35Z +173 162 2020-02-15T06:59:35Z +173 188 2020-02-15T06:59:35Z +173 235 2020-02-15T06:59:35Z +173 313 2020-02-15T06:59:35Z +173 379 2020-02-15T06:59:35Z +173 405 2020-02-15T06:59:35Z +173 491 2020-02-15T06:59:35Z +173 496 2020-02-15T06:59:35Z +173 529 2020-02-15T06:59:35Z +173 550 2020-02-15T06:59:35Z +173 564 2020-02-15T06:59:35Z +173 571 2020-02-15T06:59:35Z +173 592 2020-02-15T06:59:35Z +173 688 2020-02-15T06:59:35Z +173 753 2020-02-15T06:59:35Z +173 757 2020-02-15T06:59:35Z +173 852 2020-02-15T06:59:35Z +173 857 2020-02-15T06:59:35Z +173 921 2020-02-15T06:59:35Z +173 928 2020-02-15T06:59:35Z +173 933 2020-02-15T06:59:35Z +174 11 2020-02-15T06:59:35Z +174 61 2020-02-15T06:59:35Z +174 168 2020-02-15T06:59:35Z +174 298 2020-02-15T06:59:35Z +174 352 2020-02-15T06:59:35Z +174 442 2020-02-15T06:59:35Z +174 451 2020-02-15T06:59:35Z +174 496 2020-02-15T06:59:35Z +174 610 2020-02-15T06:59:35Z +174 618 2020-02-15T06:59:35Z +174 622 2020-02-15T06:59:35Z +174 659 2020-02-15T06:59:35Z +174 677 2020-02-15T06:59:35Z +174 705 2020-02-15T06:59:35Z +174 722 2020-02-15T06:59:35Z +174 780 2020-02-15T06:59:35Z +174 797 2020-02-15T06:59:35Z +174 809 2020-02-15T06:59:35Z +174 827 2020-02-15T06:59:35Z +174 830 2020-02-15T06:59:35Z +174 852 2020-02-15T06:59:35Z +174 853 2020-02-15T06:59:35Z +174 879 2020-02-15T06:59:35Z +174 982 2020-02-15T06:59:35Z +175 9 2020-02-15T06:59:35Z +175 29 2020-02-15T06:59:35Z +175 67 2020-02-15T06:59:35Z +175 129 2020-02-15T06:59:35Z +175 155 2020-02-15T06:59:35Z +175 190 2020-02-15T06:59:35Z +175 191 2020-02-15T06:59:35Z +175 362 2020-02-15T06:59:35Z +175 405 2020-02-15T06:59:35Z +175 424 2020-02-15T06:59:35Z +175 439 2020-02-15T06:59:35Z +175 442 2020-02-15T06:59:35Z +175 483 2020-02-15T06:59:35Z +175 591 2020-02-15T06:59:35Z +175 596 2020-02-15T06:59:35Z +175 616 2020-02-15T06:59:35Z +175 719 2020-02-15T06:59:35Z +175 729 2020-02-15T06:59:35Z +175 772 2020-02-15T06:59:35Z +175 778 2020-02-15T06:59:35Z +175 828 2020-02-15T06:59:35Z +175 842 2020-02-15T06:59:35Z +175 890 2020-02-15T06:59:35Z +175 908 2020-02-15T06:59:35Z +175 977 2020-02-15T06:59:35Z +175 978 2020-02-15T06:59:35Z +175 998 2020-02-15T06:59:35Z +176 13 2020-02-15T06:59:35Z +176 73 2020-02-15T06:59:35Z +176 89 2020-02-15T06:59:35Z +176 150 2020-02-15T06:59:35Z +176 162 2020-02-15T06:59:35Z +176 238 2020-02-15T06:59:35Z +176 252 2020-02-15T06:59:35Z +176 303 2020-02-15T06:59:35Z +176 320 2020-02-15T06:59:35Z +176 401 2020-02-15T06:59:35Z +176 417 2020-02-15T06:59:35Z +176 441 2020-02-15T06:59:35Z +176 458 2020-02-15T06:59:35Z +176 461 2020-02-15T06:59:35Z +176 517 2020-02-15T06:59:35Z +176 521 2020-02-15T06:59:35Z +176 543 2020-02-15T06:59:35Z +176 573 2020-02-15T06:59:35Z +176 699 2020-02-15T06:59:35Z +176 726 2020-02-15T06:59:35Z +176 740 2020-02-15T06:59:35Z +176 746 2020-02-15T06:59:35Z +176 758 2020-02-15T06:59:35Z +176 802 2020-02-15T06:59:35Z +176 827 2020-02-15T06:59:35Z +176 839 2020-02-15T06:59:35Z +176 859 2020-02-15T06:59:35Z +176 872 2020-02-15T06:59:35Z +176 946 2020-02-15T06:59:35Z +177 12 2020-02-15T06:59:35Z +177 39 2020-02-15T06:59:35Z +177 52 2020-02-15T06:59:35Z +177 55 2020-02-15T06:59:35Z +177 86 2020-02-15T06:59:35Z +177 175 2020-02-15T06:59:35Z +177 188 2020-02-15T06:59:35Z +177 235 2020-02-15T06:59:35Z +177 237 2020-02-15T06:59:35Z +177 289 2020-02-15T06:59:35Z +177 363 2020-02-15T06:59:35Z +177 401 2020-02-15T06:59:35Z +177 433 2020-02-15T06:59:35Z +177 458 2020-02-15T06:59:35Z +177 522 2020-02-15T06:59:35Z +177 543 2020-02-15T06:59:35Z +177 563 2020-02-15T06:59:35Z +177 649 2020-02-15T06:59:35Z +177 683 2020-02-15T06:59:35Z +177 684 2020-02-15T06:59:35Z +177 726 2020-02-15T06:59:35Z +177 751 2020-02-15T06:59:35Z +177 763 2020-02-15T06:59:35Z +177 764 2020-02-15T06:59:35Z +177 827 2020-02-15T06:59:35Z +177 910 2020-02-15T06:59:35Z +177 956 2020-02-15T06:59:35Z +178 30 2020-02-15T06:59:35Z +178 34 2020-02-15T06:59:35Z +178 109 2020-02-15T06:59:35Z +178 146 2020-02-15T06:59:35Z +178 160 2020-02-15T06:59:35Z +178 164 2020-02-15T06:59:35Z +178 194 2020-02-15T06:59:35Z +178 197 2020-02-15T06:59:35Z +178 273 2020-02-15T06:59:35Z +178 311 2020-02-15T06:59:35Z +178 397 2020-02-15T06:59:35Z +178 483 2020-02-15T06:59:35Z +178 517 2020-02-15T06:59:35Z +178 537 2020-02-15T06:59:35Z +178 587 2020-02-15T06:59:35Z +178 708 2020-02-15T06:59:35Z +178 733 2020-02-15T06:59:35Z +178 744 2020-02-15T06:59:35Z +178 762 2020-02-15T06:59:35Z +178 930 2020-02-15T06:59:35Z +178 974 2020-02-15T06:59:35Z +178 983 2020-02-15T06:59:35Z +178 1000 2020-02-15T06:59:35Z +179 24 2020-02-15T06:59:35Z +179 27 2020-02-15T06:59:35Z +179 65 2020-02-15T06:59:35Z +179 85 2020-02-15T06:59:35Z +179 109 2020-02-15T06:59:35Z +179 131 2020-02-15T06:59:35Z +179 159 2020-02-15T06:59:35Z +179 193 2020-02-15T06:59:35Z +179 250 2020-02-15T06:59:35Z +179 291 2020-02-15T06:59:35Z +179 353 2020-02-15T06:59:35Z +179 415 2020-02-15T06:59:35Z +179 463 2020-02-15T06:59:35Z +179 468 2020-02-15T06:59:35Z +179 489 2020-02-15T06:59:35Z +179 566 2020-02-15T06:59:35Z +179 588 2020-02-15T06:59:35Z +179 650 2020-02-15T06:59:35Z +179 698 2020-02-15T06:59:35Z +179 732 2020-02-15T06:59:35Z +179 737 2020-02-15T06:59:35Z +179 769 2020-02-15T06:59:35Z +179 811 2020-02-15T06:59:35Z +179 817 2020-02-15T06:59:35Z +179 852 2020-02-15T06:59:35Z +179 924 2020-02-15T06:59:35Z +179 931 2020-02-15T06:59:35Z +179 960 2020-02-15T06:59:35Z +179 976 2020-02-15T06:59:35Z +180 12 2020-02-15T06:59:35Z +180 33 2020-02-15T06:59:35Z +180 144 2020-02-15T06:59:35Z +180 195 2020-02-15T06:59:35Z +180 258 2020-02-15T06:59:35Z +180 441 2020-02-15T06:59:35Z +180 506 2020-02-15T06:59:35Z +180 561 2020-02-15T06:59:35Z +180 609 2020-02-15T06:59:35Z +180 622 2020-02-15T06:59:35Z +180 628 2020-02-15T06:59:35Z +180 657 2020-02-15T06:59:35Z +180 724 2020-02-15T06:59:35Z +180 729 2020-02-15T06:59:35Z +180 732 2020-02-15T06:59:35Z +180 777 2020-02-15T06:59:35Z +180 809 2020-02-15T06:59:35Z +180 811 2020-02-15T06:59:35Z +180 820 2020-02-15T06:59:35Z +180 824 2020-02-15T06:59:35Z +180 847 2020-02-15T06:59:35Z +180 869 2020-02-15T06:59:35Z +180 874 2020-02-15T06:59:35Z +180 955 2020-02-15T06:59:35Z +180 963 2020-02-15T06:59:35Z +181 5 2020-02-15T06:59:35Z +181 40 2020-02-15T06:59:35Z +181 74 2020-02-15T06:59:35Z +181 78 2020-02-15T06:59:35Z +181 83 2020-02-15T06:59:35Z +181 152 2020-02-15T06:59:35Z +181 195 2020-02-15T06:59:35Z +181 233 2020-02-15T06:59:35Z +181 286 2020-02-15T06:59:35Z +181 301 2020-02-15T06:59:35Z +181 311 2020-02-15T06:59:35Z +181 381 2020-02-15T06:59:35Z +181 387 2020-02-15T06:59:35Z +181 403 2020-02-15T06:59:35Z +181 409 2020-02-15T06:59:35Z +181 420 2020-02-15T06:59:35Z +181 437 2020-02-15T06:59:35Z +181 456 2020-02-15T06:59:35Z +181 507 2020-02-15T06:59:35Z +181 522 2020-02-15T06:59:35Z +181 539 2020-02-15T06:59:35Z +181 542 2020-02-15T06:59:35Z +181 546 2020-02-15T06:59:35Z +181 579 2020-02-15T06:59:35Z +181 596 2020-02-15T06:59:35Z +181 604 2020-02-15T06:59:35Z +181 609 2020-02-15T06:59:35Z +181 625 2020-02-15T06:59:35Z +181 744 2020-02-15T06:59:35Z +181 816 2020-02-15T06:59:35Z +181 836 2020-02-15T06:59:35Z +181 868 2020-02-15T06:59:35Z +181 870 2020-02-15T06:59:35Z +181 874 2020-02-15T06:59:35Z +181 892 2020-02-15T06:59:35Z +181 907 2020-02-15T06:59:35Z +181 911 2020-02-15T06:59:35Z +181 921 2020-02-15T06:59:35Z +181 991 2020-02-15T06:59:35Z +182 33 2020-02-15T06:59:35Z +182 160 2020-02-15T06:59:35Z +182 301 2020-02-15T06:59:35Z +182 324 2020-02-15T06:59:35Z +182 346 2020-02-15T06:59:35Z +182 362 2020-02-15T06:59:35Z +182 391 2020-02-15T06:59:35Z +182 413 2020-02-15T06:59:35Z +182 421 2020-02-15T06:59:35Z +182 437 2020-02-15T06:59:35Z +182 590 2020-02-15T06:59:35Z +182 639 2020-02-15T06:59:35Z +182 668 2020-02-15T06:59:35Z +182 677 2020-02-15T06:59:35Z +182 679 2020-02-15T06:59:35Z +182 695 2020-02-15T06:59:35Z +182 714 2020-02-15T06:59:35Z +182 720 2020-02-15T06:59:35Z +182 819 2020-02-15T06:59:35Z +182 828 2020-02-15T06:59:35Z +182 845 2020-02-15T06:59:35Z +182 864 2020-02-15T06:59:35Z +182 940 2020-02-15T06:59:35Z +182 990 2020-02-15T06:59:35Z +183 32 2020-02-15T06:59:35Z +183 40 2020-02-15T06:59:35Z +183 71 2020-02-15T06:59:35Z +183 113 2020-02-15T06:59:35Z +183 313 2020-02-15T06:59:35Z +183 388 2020-02-15T06:59:35Z +183 389 2020-02-15T06:59:35Z +183 390 2020-02-15T06:59:35Z +183 495 2020-02-15T06:59:35Z +183 520 2020-02-15T06:59:35Z +183 576 2020-02-15T06:59:35Z +183 636 2020-02-15T06:59:35Z +183 715 2020-02-15T06:59:35Z +183 850 2020-02-15T06:59:35Z +183 862 2020-02-15T06:59:35Z +183 914 2020-02-15T06:59:35Z +183 941 2020-02-15T06:59:35Z +183 949 2020-02-15T06:59:35Z +183 983 2020-02-15T06:59:35Z +184 35 2020-02-15T06:59:35Z +184 87 2020-02-15T06:59:35Z +184 146 2020-02-15T06:59:35Z +184 169 2020-02-15T06:59:35Z +184 221 2020-02-15T06:59:35Z +184 336 2020-02-15T06:59:35Z +184 371 2020-02-15T06:59:35Z +184 452 2020-02-15T06:59:35Z +184 486 2020-02-15T06:59:35Z +184 492 2020-02-15T06:59:35Z +184 500 2020-02-15T06:59:35Z +184 574 2020-02-15T06:59:35Z +184 580 2020-02-15T06:59:35Z +184 597 2020-02-15T06:59:35Z +184 615 2020-02-15T06:59:35Z +184 640 2020-02-15T06:59:35Z +184 642 2020-02-15T06:59:35Z +184 650 2020-02-15T06:59:35Z +184 661 2020-02-15T06:59:35Z +184 684 2020-02-15T06:59:35Z +184 745 2020-02-15T06:59:35Z +184 772 2020-02-15T06:59:35Z +184 787 2020-02-15T06:59:35Z +184 867 2020-02-15T06:59:35Z +184 959 2020-02-15T06:59:35Z +184 966 2020-02-15T06:59:35Z +184 967 2020-02-15T06:59:35Z +184 969 2020-02-15T06:59:35Z +184 985 2020-02-15T06:59:35Z +185 7 2020-02-15T06:59:35Z +185 95 2020-02-15T06:59:35Z +185 138 2020-02-15T06:59:35Z +185 265 2020-02-15T06:59:35Z +185 286 2020-02-15T06:59:35Z +185 360 2020-02-15T06:59:35Z +185 411 2020-02-15T06:59:35Z +185 427 2020-02-15T06:59:35Z +185 437 2020-02-15T06:59:35Z +185 448 2020-02-15T06:59:35Z +185 494 2020-02-15T06:59:35Z +185 510 2020-02-15T06:59:35Z +185 518 2020-02-15T06:59:35Z +185 554 2020-02-15T06:59:35Z +185 560 2020-02-15T06:59:35Z +185 571 2020-02-15T06:59:35Z +185 584 2020-02-15T06:59:35Z +185 631 2020-02-15T06:59:35Z +185 665 2020-02-15T06:59:35Z +185 694 2020-02-15T06:59:35Z +185 730 2020-02-15T06:59:35Z +185 761 2020-02-15T06:59:35Z +185 818 2020-02-15T06:59:35Z +185 845 2020-02-15T06:59:35Z +185 880 2020-02-15T06:59:35Z +185 882 2020-02-15T06:59:35Z +185 919 2020-02-15T06:59:35Z +185 920 2020-02-15T06:59:35Z +185 965 2020-02-15T06:59:35Z +185 973 2020-02-15T06:59:35Z +186 95 2020-02-15T06:59:35Z +186 187 2020-02-15T06:59:35Z +186 208 2020-02-15T06:59:35Z +186 228 2020-02-15T06:59:35Z +186 237 2020-02-15T06:59:35Z +186 422 2020-02-15T06:59:35Z +186 482 2020-02-15T06:59:35Z +186 508 2020-02-15T06:59:35Z +186 552 2020-02-15T06:59:35Z +186 579 2020-02-15T06:59:35Z +186 637 2020-02-15T06:59:35Z +186 648 2020-02-15T06:59:35Z +186 654 2020-02-15T06:59:35Z +186 729 2020-02-15T06:59:35Z +186 983 2020-02-15T06:59:35Z +186 994 2020-02-15T06:59:35Z +187 17 2020-02-15T06:59:35Z +187 25 2020-02-15T06:59:35Z +187 29 2020-02-15T06:59:35Z +187 51 2020-02-15T06:59:35Z +187 73 2020-02-15T06:59:35Z +187 76 2020-02-15T06:59:35Z +187 98 2020-02-15T06:59:35Z +187 110 2020-02-15T06:59:35Z +187 127 2020-02-15T06:59:35Z +187 168 2020-02-15T06:59:35Z +187 222 2020-02-15T06:59:35Z +187 224 2020-02-15T06:59:35Z +187 297 2020-02-15T06:59:35Z +187 354 2020-02-15T06:59:35Z +187 379 2020-02-15T06:59:35Z +187 417 2020-02-15T06:59:35Z +187 435 2020-02-15T06:59:35Z +187 441 2020-02-15T06:59:35Z +187 474 2020-02-15T06:59:35Z +187 499 2020-02-15T06:59:35Z +187 538 2020-02-15T06:59:35Z +187 548 2020-02-15T06:59:35Z +187 561 2020-02-15T06:59:35Z +187 617 2020-02-15T06:59:35Z +187 625 2020-02-15T06:59:35Z +187 664 2020-02-15T06:59:35Z +187 671 2020-02-15T06:59:35Z +187 768 2020-02-15T06:59:35Z +187 779 2020-02-15T06:59:35Z +187 906 2020-02-15T06:59:35Z +187 914 2020-02-15T06:59:35Z +187 923 2020-02-15T06:59:35Z +187 976 2020-02-15T06:59:35Z +188 1 2020-02-15T06:59:35Z +188 10 2020-02-15T06:59:35Z +188 14 2020-02-15T06:59:35Z +188 51 2020-02-15T06:59:35Z +188 102 2020-02-15T06:59:35Z +188 111 2020-02-15T06:59:35Z +188 146 2020-02-15T06:59:35Z +188 206 2020-02-15T06:59:35Z +188 223 2020-02-15T06:59:35Z +188 289 2020-02-15T06:59:35Z +188 311 2020-02-15T06:59:35Z +188 322 2020-02-15T06:59:35Z +188 338 2020-02-15T06:59:35Z +188 396 2020-02-15T06:59:35Z +188 412 2020-02-15T06:59:35Z +188 506 2020-02-15T06:59:35Z +188 517 2020-02-15T06:59:35Z +188 529 2020-02-15T06:59:35Z +188 566 2020-02-15T06:59:35Z +188 593 2020-02-15T06:59:35Z +188 606 2020-02-15T06:59:35Z +188 662 2020-02-15T06:59:35Z +188 770 2020-02-15T06:59:35Z +188 773 2020-02-15T06:59:35Z +188 774 2020-02-15T06:59:35Z +188 815 2020-02-15T06:59:35Z +188 849 2020-02-15T06:59:35Z +188 925 2020-02-15T06:59:35Z +188 988 2020-02-15T06:59:35Z +188 989 2020-02-15T06:59:35Z +189 43 2020-02-15T06:59:35Z +189 82 2020-02-15T06:59:35Z +189 171 2020-02-15T06:59:35Z +189 266 2020-02-15T06:59:35Z +189 272 2020-02-15T06:59:35Z +189 315 2020-02-15T06:59:35Z +189 378 2020-02-15T06:59:35Z +189 492 2020-02-15T06:59:35Z +189 509 2020-02-15T06:59:35Z +189 512 2020-02-15T06:59:35Z +189 519 2020-02-15T06:59:35Z +189 533 2020-02-15T06:59:35Z +189 548 2020-02-15T06:59:35Z +189 560 2020-02-15T06:59:35Z +189 628 2020-02-15T06:59:35Z +189 734 2020-02-15T06:59:35Z +189 748 2020-02-15T06:59:35Z +189 788 2020-02-15T06:59:35Z +189 820 2020-02-15T06:59:35Z +189 853 2020-02-15T06:59:35Z +189 882 2020-02-15T06:59:35Z +189 896 2020-02-15T06:59:35Z +189 899 2020-02-15T06:59:35Z +189 940 2020-02-15T06:59:35Z +190 38 2020-02-15T06:59:35Z +190 54 2020-02-15T06:59:35Z +190 62 2020-02-15T06:59:35Z +190 87 2020-02-15T06:59:35Z +190 173 2020-02-15T06:59:35Z +190 234 2020-02-15T06:59:35Z +190 253 2020-02-15T06:59:35Z +190 278 2020-02-15T06:59:35Z +190 310 2020-02-15T06:59:35Z +190 374 2020-02-15T06:59:35Z +190 411 2020-02-15T06:59:35Z +190 426 2020-02-15T06:59:35Z +190 472 2020-02-15T06:59:35Z +190 549 2020-02-15T06:59:35Z +190 562 2020-02-15T06:59:35Z +190 606 2020-02-15T06:59:35Z +190 623 2020-02-15T06:59:35Z +190 679 2020-02-15T06:59:35Z +190 682 2020-02-15T06:59:35Z +190 693 2020-02-15T06:59:35Z +190 695 2020-02-15T06:59:35Z +190 705 2020-02-15T06:59:35Z +190 708 2020-02-15T06:59:35Z +190 802 2020-02-15T06:59:35Z +190 806 2020-02-15T06:59:35Z +190 874 2020-02-15T06:59:35Z +190 959 2020-02-15T06:59:35Z +191 16 2020-02-15T06:59:35Z +191 39 2020-02-15T06:59:35Z +191 84 2020-02-15T06:59:35Z +191 185 2020-02-15T06:59:35Z +191 219 2020-02-15T06:59:35Z +191 293 2020-02-15T06:59:35Z +191 296 2020-02-15T06:59:35Z +191 378 2020-02-15T06:59:35Z +191 410 2020-02-15T06:59:35Z +191 420 2020-02-15T06:59:35Z +191 461 2020-02-15T06:59:35Z +191 544 2020-02-15T06:59:35Z +191 551 2020-02-15T06:59:35Z +191 596 2020-02-15T06:59:35Z +191 638 2020-02-15T06:59:35Z +191 668 2020-02-15T06:59:35Z +191 692 2020-02-15T06:59:35Z +191 775 2020-02-15T06:59:35Z +191 801 2020-02-15T06:59:35Z +191 819 2020-02-15T06:59:35Z +191 827 2020-02-15T06:59:35Z +191 830 2020-02-15T06:59:35Z +191 834 2020-02-15T06:59:35Z +191 849 2020-02-15T06:59:35Z +191 858 2020-02-15T06:59:35Z +191 914 2020-02-15T06:59:35Z +191 958 2020-02-15T06:59:35Z +191 969 2020-02-15T06:59:35Z +191 971 2020-02-15T06:59:35Z +191 993 2020-02-15T06:59:35Z +192 16 2020-02-15T06:59:35Z +192 69 2020-02-15T06:59:35Z +192 117 2020-02-15T06:59:35Z +192 155 2020-02-15T06:59:35Z +192 166 2020-02-15T06:59:35Z +192 179 2020-02-15T06:59:35Z +192 214 2020-02-15T06:59:35Z +192 361 2020-02-15T06:59:35Z +192 367 2020-02-15T06:59:35Z +192 426 2020-02-15T06:59:35Z +192 465 2020-02-15T06:59:35Z +192 470 2020-02-15T06:59:35Z +192 475 2020-02-15T06:59:35Z +192 485 2020-02-15T06:59:35Z +192 541 2020-02-15T06:59:35Z +192 578 2020-02-15T06:59:35Z +192 592 2020-02-15T06:59:35Z +192 614 2020-02-15T06:59:35Z +192 618 2020-02-15T06:59:35Z +192 622 2020-02-15T06:59:35Z +192 674 2020-02-15T06:59:35Z +192 677 2020-02-15T06:59:35Z +192 680 2020-02-15T06:59:35Z +192 682 2020-02-15T06:59:35Z +192 708 2020-02-15T06:59:35Z +192 711 2020-02-15T06:59:35Z +192 747 2020-02-15T06:59:35Z +192 763 2020-02-15T06:59:35Z +192 819 2020-02-15T06:59:35Z +193 44 2020-02-15T06:59:35Z +193 80 2020-02-15T06:59:35Z +193 103 2020-02-15T06:59:35Z +193 109 2020-02-15T06:59:35Z +193 119 2020-02-15T06:59:35Z +193 141 2020-02-15T06:59:35Z +193 164 2020-02-15T06:59:35Z +193 291 2020-02-15T06:59:35Z +193 352 2020-02-15T06:59:35Z +193 358 2020-02-15T06:59:35Z +193 376 2020-02-15T06:59:35Z +193 412 2020-02-15T06:59:35Z +193 462 2020-02-15T06:59:35Z +193 689 2020-02-15T06:59:35Z +193 709 2020-02-15T06:59:35Z +193 745 2020-02-15T06:59:35Z +193 807 2020-02-15T06:59:35Z +193 828 2020-02-15T06:59:35Z +193 834 2020-02-15T06:59:35Z +193 851 2020-02-15T06:59:35Z +193 937 2020-02-15T06:59:35Z +193 953 2020-02-15T06:59:35Z +193 960 2020-02-15T06:59:35Z +194 9 2020-02-15T06:59:35Z +194 42 2020-02-15T06:59:35Z +194 67 2020-02-15T06:59:35Z +194 86 2020-02-15T06:59:35Z +194 88 2020-02-15T06:59:35Z +194 98 2020-02-15T06:59:35Z +194 135 2020-02-15T06:59:35Z +194 161 2020-02-15T06:59:35Z +194 163 2020-02-15T06:59:35Z +194 215 2020-02-15T06:59:35Z +194 232 2020-02-15T06:59:35Z +194 352 2020-02-15T06:59:35Z +194 415 2020-02-15T06:59:35Z +194 486 2020-02-15T06:59:35Z +194 498 2020-02-15T06:59:35Z +194 531 2020-02-15T06:59:35Z +194 719 2020-02-15T06:59:35Z +194 738 2020-02-15T06:59:35Z +194 786 2020-02-15T06:59:35Z +194 872 2020-02-15T06:59:35Z +194 938 2020-02-15T06:59:35Z +194 940 2020-02-15T06:59:35Z +195 129 2020-02-15T06:59:35Z +195 130 2020-02-15T06:59:35Z +195 141 2020-02-15T06:59:35Z +195 144 2020-02-15T06:59:35Z +195 298 2020-02-15T06:59:35Z +195 359 2020-02-15T06:59:35Z +195 361 2020-02-15T06:59:35Z +195 392 2020-02-15T06:59:35Z +195 403 2020-02-15T06:59:35Z +195 494 2020-02-15T06:59:35Z +195 520 2020-02-15T06:59:35Z +195 534 2020-02-15T06:59:35Z +195 560 2020-02-15T06:59:35Z +195 592 2020-02-15T06:59:35Z +195 649 2020-02-15T06:59:35Z +195 658 2020-02-15T06:59:35Z +195 673 2020-02-15T06:59:35Z +195 677 2020-02-15T06:59:35Z +195 706 2020-02-15T06:59:35Z +195 738 2020-02-15T06:59:35Z +195 769 2020-02-15T06:59:35Z +195 781 2020-02-15T06:59:35Z +195 794 2020-02-15T06:59:35Z +195 813 2020-02-15T06:59:35Z +195 869 2020-02-15T06:59:35Z +195 885 2020-02-15T06:59:35Z +195 962 2020-02-15T06:59:35Z +196 64 2020-02-15T06:59:35Z +196 122 2020-02-15T06:59:35Z +196 156 2020-02-15T06:59:35Z +196 169 2020-02-15T06:59:35Z +196 276 2020-02-15T06:59:35Z +196 284 2020-02-15T06:59:35Z +196 303 2020-02-15T06:59:35Z +196 324 2020-02-15T06:59:35Z +196 423 2020-02-15T06:59:35Z +196 473 2020-02-15T06:59:35Z +196 484 2020-02-15T06:59:35Z +196 515 2020-02-15T06:59:35Z +196 524 2020-02-15T06:59:35Z +196 541 2020-02-15T06:59:35Z +196 560 2020-02-15T06:59:35Z +196 575 2020-02-15T06:59:35Z +196 576 2020-02-15T06:59:35Z +196 587 2020-02-15T06:59:35Z +196 615 2020-02-15T06:59:35Z +196 635 2020-02-15T06:59:35Z +196 684 2020-02-15T06:59:35Z +196 795 2020-02-15T06:59:35Z +196 815 2020-02-15T06:59:35Z +196 833 2020-02-15T06:59:35Z +196 837 2020-02-15T06:59:35Z +196 906 2020-02-15T06:59:35Z +196 908 2020-02-15T06:59:35Z +196 919 2020-02-15T06:59:35Z +196 939 2020-02-15T06:59:35Z +196 972 2020-02-15T06:59:35Z +197 6 2020-02-15T06:59:35Z +197 29 2020-02-15T06:59:35Z +197 63 2020-02-15T06:59:35Z +197 123 2020-02-15T06:59:35Z +197 129 2020-02-15T06:59:35Z +197 147 2020-02-15T06:59:35Z +197 164 2020-02-15T06:59:35Z +197 189 2020-02-15T06:59:35Z +197 243 2020-02-15T06:59:35Z +197 249 2020-02-15T06:59:35Z +197 258 2020-02-15T06:59:35Z +197 364 2020-02-15T06:59:35Z +197 369 2020-02-15T06:59:35Z +197 370 2020-02-15T06:59:35Z +197 418 2020-02-15T06:59:35Z +197 522 2020-02-15T06:59:35Z +197 531 2020-02-15T06:59:35Z +197 554 2020-02-15T06:59:35Z +197 598 2020-02-15T06:59:35Z +197 628 2020-02-15T06:59:35Z +197 691 2020-02-15T06:59:35Z +197 724 2020-02-15T06:59:35Z +197 746 2020-02-15T06:59:35Z +197 752 2020-02-15T06:59:35Z +197 758 2020-02-15T06:59:35Z +197 769 2020-02-15T06:59:35Z +197 815 2020-02-15T06:59:35Z +197 916 2020-02-15T06:59:35Z +197 950 2020-02-15T06:59:35Z +197 967 2020-02-15T06:59:35Z +197 974 2020-02-15T06:59:35Z +197 979 2020-02-15T06:59:35Z +197 995 2020-02-15T06:59:35Z +198 1 2020-02-15T06:59:35Z +198 109 2020-02-15T06:59:35Z +198 125 2020-02-15T06:59:35Z +198 186 2020-02-15T06:59:35Z +198 262 2020-02-15T06:59:35Z +198 264 2020-02-15T06:59:35Z +198 303 2020-02-15T06:59:35Z +198 309 2020-02-15T06:59:35Z +198 311 2020-02-15T06:59:35Z +198 329 2020-02-15T06:59:35Z +198 347 2020-02-15T06:59:35Z +198 379 2020-02-15T06:59:35Z +198 395 2020-02-15T06:59:35Z +198 406 2020-02-15T06:59:35Z +198 450 2020-02-15T06:59:35Z +198 464 2020-02-15T06:59:35Z +198 482 2020-02-15T06:59:35Z +198 499 2020-02-15T06:59:35Z +198 536 2020-02-15T06:59:35Z +198 541 2020-02-15T06:59:35Z +198 545 2020-02-15T06:59:35Z +198 555 2020-02-15T06:59:35Z +198 568 2020-02-15T06:59:35Z +198 570 2020-02-15T06:59:35Z +198 588 2020-02-15T06:59:35Z +198 597 2020-02-15T06:59:35Z +198 628 2020-02-15T06:59:35Z +198 745 2020-02-15T06:59:35Z +198 758 2020-02-15T06:59:35Z +198 796 2020-02-15T06:59:35Z +198 806 2020-02-15T06:59:35Z +198 817 2020-02-15T06:59:35Z +198 843 2020-02-15T06:59:35Z +198 858 2020-02-15T06:59:35Z +198 871 2020-02-15T06:59:35Z +198 886 2020-02-15T06:59:35Z +198 892 2020-02-15T06:59:35Z +198 924 2020-02-15T06:59:35Z +198 952 2020-02-15T06:59:35Z +198 997 2020-02-15T06:59:35Z +199 67 2020-02-15T06:59:35Z +199 84 2020-02-15T06:59:35Z +199 145 2020-02-15T06:59:35Z +199 159 2020-02-15T06:59:35Z +199 216 2020-02-15T06:59:35Z +199 432 2020-02-15T06:59:35Z +199 541 2020-02-15T06:59:35Z +199 604 2020-02-15T06:59:35Z +199 640 2020-02-15T06:59:35Z +199 689 2020-02-15T06:59:35Z +199 730 2020-02-15T06:59:35Z +199 784 2020-02-15T06:59:35Z +199 785 2020-02-15T06:59:35Z +199 886 2020-02-15T06:59:35Z +199 953 2020-02-15T06:59:35Z +200 5 2020-02-15T06:59:35Z +200 49 2020-02-15T06:59:35Z +200 80 2020-02-15T06:59:35Z +200 116 2020-02-15T06:59:35Z +200 121 2020-02-15T06:59:35Z +200 149 2020-02-15T06:59:35Z +200 346 2020-02-15T06:59:35Z +200 419 2020-02-15T06:59:35Z +200 462 2020-02-15T06:59:35Z +200 465 2020-02-15T06:59:35Z +200 474 2020-02-15T06:59:35Z +200 537 2020-02-15T06:59:35Z +200 538 2020-02-15T06:59:35Z +200 544 2020-02-15T06:59:35Z +200 714 2020-02-15T06:59:35Z +200 879 2020-02-15T06:59:35Z +200 912 2020-02-15T06:59:35Z +200 945 2020-02-15T06:59:35Z +200 958 2020-02-15T06:59:35Z +200 993 2020-02-15T06:59:35Z diff --git a/drivers/csv/testdata/sakila-tsv/film_category.tsv b/drivers/csv/testdata/sakila-tsv/film_category.tsv new file mode 100644 index 00000000..997484ed --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/film_category.tsv @@ -0,0 +1,1001 @@ +film_id category_id last_update +1 6 2020-02-15T06:59:35Z +2 11 2020-02-15T06:59:35Z +3 6 2020-02-15T06:59:35Z +4 11 2020-02-15T06:59:35Z +5 8 2020-02-15T06:59:35Z +6 9 2020-02-15T06:59:35Z +7 5 2020-02-15T06:59:35Z +8 11 2020-02-15T06:59:35Z +9 11 2020-02-15T06:59:35Z +10 15 2020-02-15T06:59:35Z +11 9 2020-02-15T06:59:35Z +12 12 2020-02-15T06:59:35Z +13 11 2020-02-15T06:59:35Z +14 4 2020-02-15T06:59:35Z +15 9 2020-02-15T06:59:35Z +16 9 2020-02-15T06:59:35Z +17 12 2020-02-15T06:59:35Z +18 2 2020-02-15T06:59:35Z +19 1 2020-02-15T06:59:35Z +20 12 2020-02-15T06:59:35Z +21 1 2020-02-15T06:59:35Z +22 13 2020-02-15T06:59:35Z +23 2 2020-02-15T06:59:35Z +24 11 2020-02-15T06:59:35Z +25 13 2020-02-15T06:59:35Z +26 14 2020-02-15T06:59:35Z +27 15 2020-02-15T06:59:35Z +28 5 2020-02-15T06:59:35Z +29 1 2020-02-15T06:59:35Z +30 11 2020-02-15T06:59:35Z +31 8 2020-02-15T06:59:35Z +32 13 2020-02-15T06:59:35Z +33 7 2020-02-15T06:59:35Z +34 11 2020-02-15T06:59:35Z +35 11 2020-02-15T06:59:35Z +36 2 2020-02-15T06:59:35Z +37 4 2020-02-15T06:59:35Z +38 1 2020-02-15T06:59:35Z +39 14 2020-02-15T06:59:35Z +40 6 2020-02-15T06:59:35Z +41 16 2020-02-15T06:59:35Z +42 15 2020-02-15T06:59:35Z +43 8 2020-02-15T06:59:35Z +44 14 2020-02-15T06:59:35Z +45 13 2020-02-15T06:59:35Z +46 10 2020-02-15T06:59:35Z +47 9 2020-02-15T06:59:35Z +48 3 2020-02-15T06:59:35Z +49 14 2020-02-15T06:59:35Z +50 8 2020-02-15T06:59:35Z +51 12 2020-02-15T06:59:35Z +52 9 2020-02-15T06:59:35Z +53 8 2020-02-15T06:59:35Z +54 12 2020-02-15T06:59:35Z +55 14 2020-02-15T06:59:35Z +56 1 2020-02-15T06:59:35Z +57 16 2020-02-15T06:59:35Z +58 6 2020-02-15T06:59:35Z +59 3 2020-02-15T06:59:35Z +60 4 2020-02-15T06:59:35Z +61 7 2020-02-15T06:59:35Z +62 6 2020-02-15T06:59:35Z +63 8 2020-02-15T06:59:35Z +64 7 2020-02-15T06:59:35Z +65 11 2020-02-15T06:59:35Z +66 3 2020-02-15T06:59:35Z +67 1 2020-02-15T06:59:35Z +68 3 2020-02-15T06:59:35Z +69 14 2020-02-15T06:59:35Z +70 2 2020-02-15T06:59:35Z +71 8 2020-02-15T06:59:35Z +72 6 2020-02-15T06:59:35Z +73 14 2020-02-15T06:59:35Z +74 12 2020-02-15T06:59:35Z +75 16 2020-02-15T06:59:35Z +76 12 2020-02-15T06:59:35Z +77 13 2020-02-15T06:59:35Z +78 2 2020-02-15T06:59:35Z +79 7 2020-02-15T06:59:35Z +80 8 2020-02-15T06:59:35Z +81 14 2020-02-15T06:59:35Z +82 8 2020-02-15T06:59:35Z +83 8 2020-02-15T06:59:35Z +84 16 2020-02-15T06:59:35Z +85 6 2020-02-15T06:59:35Z +86 12 2020-02-15T06:59:35Z +87 16 2020-02-15T06:59:35Z +88 16 2020-02-15T06:59:35Z +89 2 2020-02-15T06:59:35Z +90 13 2020-02-15T06:59:35Z +91 4 2020-02-15T06:59:35Z +92 11 2020-02-15T06:59:35Z +93 13 2020-02-15T06:59:35Z +94 8 2020-02-15T06:59:35Z +95 13 2020-02-15T06:59:35Z +96 13 2020-02-15T06:59:35Z +97 1 2020-02-15T06:59:35Z +98 7 2020-02-15T06:59:35Z +99 5 2020-02-15T06:59:35Z +100 9 2020-02-15T06:59:35Z +101 6 2020-02-15T06:59:35Z +102 15 2020-02-15T06:59:35Z +103 16 2020-02-15T06:59:35Z +104 9 2020-02-15T06:59:35Z +105 1 2020-02-15T06:59:35Z +106 10 2020-02-15T06:59:35Z +107 7 2020-02-15T06:59:35Z +108 13 2020-02-15T06:59:35Z +109 13 2020-02-15T06:59:35Z +110 3 2020-02-15T06:59:35Z +111 1 2020-02-15T06:59:35Z +112 9 2020-02-15T06:59:35Z +113 15 2020-02-15T06:59:35Z +114 14 2020-02-15T06:59:35Z +115 1 2020-02-15T06:59:35Z +116 4 2020-02-15T06:59:35Z +117 10 2020-02-15T06:59:35Z +118 2 2020-02-15T06:59:35Z +119 5 2020-02-15T06:59:35Z +120 15 2020-02-15T06:59:35Z +121 2 2020-02-15T06:59:35Z +122 11 2020-02-15T06:59:35Z +123 16 2020-02-15T06:59:35Z +124 3 2020-02-15T06:59:35Z +125 16 2020-02-15T06:59:35Z +126 1 2020-02-15T06:59:35Z +127 5 2020-02-15T06:59:35Z +128 9 2020-02-15T06:59:35Z +129 6 2020-02-15T06:59:35Z +130 1 2020-02-15T06:59:35Z +131 4 2020-02-15T06:59:35Z +132 14 2020-02-15T06:59:35Z +133 12 2020-02-15T06:59:35Z +134 2 2020-02-15T06:59:35Z +135 15 2020-02-15T06:59:35Z +136 13 2020-02-15T06:59:35Z +137 14 2020-02-15T06:59:35Z +138 14 2020-02-15T06:59:35Z +139 8 2020-02-15T06:59:35Z +140 14 2020-02-15T06:59:35Z +141 10 2020-02-15T06:59:35Z +142 6 2020-02-15T06:59:35Z +143 7 2020-02-15T06:59:35Z +144 13 2020-02-15T06:59:35Z +145 8 2020-02-15T06:59:35Z +146 7 2020-02-15T06:59:35Z +147 8 2020-02-15T06:59:35Z +148 9 2020-02-15T06:59:35Z +149 3 2020-02-15T06:59:35Z +150 6 2020-02-15T06:59:35Z +151 14 2020-02-15T06:59:35Z +152 3 2020-02-15T06:59:35Z +153 14 2020-02-15T06:59:35Z +154 2 2020-02-15T06:59:35Z +155 13 2020-02-15T06:59:35Z +156 6 2020-02-15T06:59:35Z +157 3 2020-02-15T06:59:35Z +158 12 2020-02-15T06:59:35Z +159 5 2020-02-15T06:59:35Z +160 2 2020-02-15T06:59:35Z +161 12 2020-02-15T06:59:35Z +162 1 2020-02-15T06:59:35Z +163 13 2020-02-15T06:59:35Z +164 6 2020-02-15T06:59:35Z +165 14 2020-02-15T06:59:35Z +166 4 2020-02-15T06:59:35Z +167 16 2020-02-15T06:59:35Z +168 3 2020-02-15T06:59:35Z +169 16 2020-02-15T06:59:35Z +170 9 2020-02-15T06:59:35Z +171 11 2020-02-15T06:59:35Z +172 7 2020-02-15T06:59:35Z +173 7 2020-02-15T06:59:35Z +174 12 2020-02-15T06:59:35Z +175 8 2020-02-15T06:59:35Z +176 15 2020-02-15T06:59:35Z +177 14 2020-02-15T06:59:35Z +178 5 2020-02-15T06:59:35Z +179 7 2020-02-15T06:59:35Z +180 4 2020-02-15T06:59:35Z +181 16 2020-02-15T06:59:35Z +182 5 2020-02-15T06:59:35Z +183 8 2020-02-15T06:59:35Z +184 4 2020-02-15T06:59:35Z +185 9 2020-02-15T06:59:35Z +186 7 2020-02-15T06:59:35Z +187 15 2020-02-15T06:59:35Z +188 5 2020-02-15T06:59:35Z +189 10 2020-02-15T06:59:35Z +190 4 2020-02-15T06:59:35Z +191 3 2020-02-15T06:59:35Z +192 9 2020-02-15T06:59:35Z +193 2 2020-02-15T06:59:35Z +194 1 2020-02-15T06:59:35Z +195 14 2020-02-15T06:59:35Z +196 4 2020-02-15T06:59:35Z +197 15 2020-02-15T06:59:35Z +198 9 2020-02-15T06:59:35Z +199 6 2020-02-15T06:59:35Z +200 10 2020-02-15T06:59:35Z +201 9 2020-02-15T06:59:35Z +202 5 2020-02-15T06:59:35Z +203 14 2020-02-15T06:59:35Z +204 7 2020-02-15T06:59:35Z +205 1 2020-02-15T06:59:35Z +206 6 2020-02-15T06:59:35Z +207 9 2020-02-15T06:59:35Z +208 2 2020-02-15T06:59:35Z +209 7 2020-02-15T06:59:35Z +210 1 2020-02-15T06:59:35Z +211 10 2020-02-15T06:59:35Z +212 1 2020-02-15T06:59:35Z +213 8 2020-02-15T06:59:35Z +214 3 2020-02-15T06:59:35Z +215 10 2020-02-15T06:59:35Z +216 13 2020-02-15T06:59:35Z +217 10 2020-02-15T06:59:35Z +218 7 2020-02-15T06:59:35Z +219 6 2020-02-15T06:59:35Z +220 12 2020-02-15T06:59:35Z +221 6 2020-02-15T06:59:35Z +222 11 2020-02-15T06:59:35Z +223 2 2020-02-15T06:59:35Z +224 16 2020-02-15T06:59:35Z +225 7 2020-02-15T06:59:35Z +226 13 2020-02-15T06:59:35Z +227 10 2020-02-15T06:59:35Z +228 4 2020-02-15T06:59:35Z +229 1 2020-02-15T06:59:35Z +230 7 2020-02-15T06:59:35Z +231 8 2020-02-15T06:59:35Z +232 10 2020-02-15T06:59:35Z +233 16 2020-02-15T06:59:35Z +234 14 2020-02-15T06:59:35Z +235 14 2020-02-15T06:59:35Z +236 10 2020-02-15T06:59:35Z +237 15 2020-02-15T06:59:35Z +238 3 2020-02-15T06:59:35Z +239 2 2020-02-15T06:59:35Z +240 14 2020-02-15T06:59:35Z +241 2 2020-02-15T06:59:35Z +242 5 2020-02-15T06:59:35Z +243 2 2020-02-15T06:59:35Z +244 12 2020-02-15T06:59:35Z +245 2 2020-02-15T06:59:35Z +246 9 2020-02-15T06:59:35Z +247 5 2020-02-15T06:59:35Z +248 6 2020-02-15T06:59:35Z +249 4 2020-02-15T06:59:35Z +250 1 2020-02-15T06:59:35Z +251 13 2020-02-15T06:59:35Z +252 1 2020-02-15T06:59:35Z +253 1 2020-02-15T06:59:35Z +254 15 2020-02-15T06:59:35Z +255 12 2020-02-15T06:59:35Z +256 15 2020-02-15T06:59:35Z +257 16 2020-02-15T06:59:35Z +258 11 2020-02-15T06:59:35Z +259 2 2020-02-15T06:59:35Z +260 15 2020-02-15T06:59:35Z +261 6 2020-02-15T06:59:35Z +262 8 2020-02-15T06:59:35Z +263 15 2020-02-15T06:59:35Z +264 10 2020-02-15T06:59:35Z +265 5 2020-02-15T06:59:35Z +266 4 2020-02-15T06:59:35Z +267 13 2020-02-15T06:59:35Z +268 2 2020-02-15T06:59:35Z +269 8 2020-02-15T06:59:35Z +270 13 2020-02-15T06:59:35Z +271 1 2020-02-15T06:59:35Z +272 7 2020-02-15T06:59:35Z +273 8 2020-02-15T06:59:35Z +274 6 2020-02-15T06:59:35Z +275 11 2020-02-15T06:59:35Z +276 5 2020-02-15T06:59:35Z +277 11 2020-02-15T06:59:35Z +278 12 2020-02-15T06:59:35Z +279 15 2020-02-15T06:59:35Z +280 3 2020-02-15T06:59:35Z +281 10 2020-02-15T06:59:35Z +282 7 2020-02-15T06:59:35Z +283 13 2020-02-15T06:59:35Z +284 12 2020-02-15T06:59:35Z +285 14 2020-02-15T06:59:35Z +286 16 2020-02-15T06:59:35Z +287 1 2020-02-15T06:59:35Z +288 16 2020-02-15T06:59:35Z +289 13 2020-02-15T06:59:35Z +290 9 2020-02-15T06:59:35Z +291 15 2020-02-15T06:59:35Z +292 1 2020-02-15T06:59:35Z +293 15 2020-02-15T06:59:35Z +294 16 2020-02-15T06:59:35Z +295 6 2020-02-15T06:59:35Z +296 14 2020-02-15T06:59:35Z +297 4 2020-02-15T06:59:35Z +298 14 2020-02-15T06:59:35Z +299 16 2020-02-15T06:59:35Z +300 2 2020-02-15T06:59:35Z +301 11 2020-02-15T06:59:35Z +302 10 2020-02-15T06:59:35Z +303 1 2020-02-15T06:59:35Z +304 3 2020-02-15T06:59:35Z +305 13 2020-02-15T06:59:35Z +306 10 2020-02-15T06:59:35Z +307 16 2020-02-15T06:59:35Z +308 5 2020-02-15T06:59:35Z +309 8 2020-02-15T06:59:35Z +310 10 2020-02-15T06:59:35Z +311 9 2020-02-15T06:59:35Z +312 14 2020-02-15T06:59:35Z +313 11 2020-02-15T06:59:35Z +314 2 2020-02-15T06:59:35Z +315 8 2020-02-15T06:59:35Z +316 10 2020-02-15T06:59:35Z +317 5 2020-02-15T06:59:35Z +318 1 2020-02-15T06:59:35Z +319 14 2020-02-15T06:59:35Z +320 13 2020-02-15T06:59:35Z +321 13 2020-02-15T06:59:35Z +322 15 2020-02-15T06:59:35Z +323 15 2020-02-15T06:59:35Z +324 5 2020-02-15T06:59:35Z +325 2 2020-02-15T06:59:35Z +326 2 2020-02-15T06:59:35Z +327 1 2020-02-15T06:59:35Z +328 3 2020-02-15T06:59:35Z +329 1 2020-02-15T06:59:35Z +330 2 2020-02-15T06:59:35Z +331 10 2020-02-15T06:59:35Z +332 5 2020-02-15T06:59:35Z +333 12 2020-02-15T06:59:35Z +334 11 2020-02-15T06:59:35Z +335 5 2020-02-15T06:59:35Z +336 6 2020-02-15T06:59:35Z +337 9 2020-02-15T06:59:35Z +338 14 2020-02-15T06:59:35Z +339 16 2020-02-15T06:59:35Z +340 13 2020-02-15T06:59:35Z +341 4 2020-02-15T06:59:35Z +342 16 2020-02-15T06:59:35Z +343 3 2020-02-15T06:59:35Z +344 3 2020-02-15T06:59:35Z +345 8 2020-02-15T06:59:35Z +346 4 2020-02-15T06:59:35Z +347 16 2020-02-15T06:59:35Z +348 8 2020-02-15T06:59:35Z +349 2 2020-02-15T06:59:35Z +350 14 2020-02-15T06:59:35Z +351 11 2020-02-15T06:59:35Z +352 10 2020-02-15T06:59:35Z +353 9 2020-02-15T06:59:35Z +354 3 2020-02-15T06:59:35Z +355 2 2020-02-15T06:59:35Z +356 3 2020-02-15T06:59:35Z +357 4 2020-02-15T06:59:35Z +358 4 2020-02-15T06:59:35Z +359 8 2020-02-15T06:59:35Z +360 1 2020-02-15T06:59:35Z +361 15 2020-02-15T06:59:35Z +362 10 2020-02-15T06:59:35Z +363 12 2020-02-15T06:59:35Z +364 13 2020-02-15T06:59:35Z +365 5 2020-02-15T06:59:35Z +366 7 2020-02-15T06:59:35Z +367 14 2020-02-15T06:59:35Z +368 7 2020-02-15T06:59:35Z +369 14 2020-02-15T06:59:35Z +370 3 2020-02-15T06:59:35Z +371 1 2020-02-15T06:59:35Z +372 15 2020-02-15T06:59:35Z +373 3 2020-02-15T06:59:35Z +374 14 2020-02-15T06:59:35Z +375 1 2020-02-15T06:59:35Z +376 9 2020-02-15T06:59:35Z +377 8 2020-02-15T06:59:35Z +378 12 2020-02-15T06:59:35Z +379 7 2020-02-15T06:59:35Z +380 9 2020-02-15T06:59:35Z +381 10 2020-02-15T06:59:35Z +382 10 2020-02-15T06:59:35Z +383 15 2020-02-15T06:59:35Z +384 12 2020-02-15T06:59:35Z +385 5 2020-02-15T06:59:35Z +386 16 2020-02-15T06:59:35Z +387 10 2020-02-15T06:59:35Z +388 5 2020-02-15T06:59:35Z +389 15 2020-02-15T06:59:35Z +390 14 2020-02-15T06:59:35Z +391 8 2020-02-15T06:59:35Z +392 3 2020-02-15T06:59:35Z +393 6 2020-02-15T06:59:35Z +394 14 2020-02-15T06:59:35Z +395 1 2020-02-15T06:59:35Z +396 7 2020-02-15T06:59:35Z +397 14 2020-02-15T06:59:35Z +398 12 2020-02-15T06:59:35Z +399 9 2020-02-15T06:59:35Z +400 6 2020-02-15T06:59:35Z +401 7 2020-02-15T06:59:35Z +402 2 2020-02-15T06:59:35Z +403 7 2020-02-15T06:59:35Z +404 5 2020-02-15T06:59:35Z +405 16 2020-02-15T06:59:35Z +406 10 2020-02-15T06:59:35Z +407 6 2020-02-15T06:59:35Z +408 10 2020-02-15T06:59:35Z +409 3 2020-02-15T06:59:35Z +410 5 2020-02-15T06:59:35Z +411 12 2020-02-15T06:59:35Z +412 6 2020-02-15T06:59:35Z +413 5 2020-02-15T06:59:35Z +414 9 2020-02-15T06:59:35Z +415 11 2020-02-15T06:59:35Z +416 9 2020-02-15T06:59:35Z +417 1 2020-02-15T06:59:35Z +418 7 2020-02-15T06:59:35Z +419 8 2020-02-15T06:59:35Z +420 15 2020-02-15T06:59:35Z +421 9 2020-02-15T06:59:35Z +422 14 2020-02-15T06:59:35Z +423 3 2020-02-15T06:59:35Z +424 3 2020-02-15T06:59:35Z +425 4 2020-02-15T06:59:35Z +426 12 2020-02-15T06:59:35Z +427 6 2020-02-15T06:59:35Z +428 8 2020-02-15T06:59:35Z +429 15 2020-02-15T06:59:35Z +430 2 2020-02-15T06:59:35Z +431 9 2020-02-15T06:59:35Z +432 4 2020-02-15T06:59:35Z +433 2 2020-02-15T06:59:35Z +434 16 2020-02-15T06:59:35Z +435 9 2020-02-15T06:59:35Z +436 13 2020-02-15T06:59:35Z +437 8 2020-02-15T06:59:35Z +438 10 2020-02-15T06:59:35Z +439 7 2020-02-15T06:59:35Z +440 9 2020-02-15T06:59:35Z +441 6 2020-02-15T06:59:35Z +442 8 2020-02-15T06:59:35Z +443 5 2020-02-15T06:59:35Z +444 5 2020-02-15T06:59:35Z +445 4 2020-02-15T06:59:35Z +446 15 2020-02-15T06:59:35Z +447 10 2020-02-15T06:59:35Z +448 13 2020-02-15T06:59:35Z +449 14 2020-02-15T06:59:35Z +450 3 2020-02-15T06:59:35Z +451 16 2020-02-15T06:59:35Z +452 9 2020-02-15T06:59:35Z +453 15 2020-02-15T06:59:35Z +454 12 2020-02-15T06:59:35Z +455 9 2020-02-15T06:59:35Z +456 2 2020-02-15T06:59:35Z +457 6 2020-02-15T06:59:35Z +458 8 2020-02-15T06:59:35Z +459 9 2020-02-15T06:59:35Z +460 9 2020-02-15T06:59:35Z +461 2 2020-02-15T06:59:35Z +462 12 2020-02-15T06:59:35Z +463 15 2020-02-15T06:59:35Z +464 2 2020-02-15T06:59:35Z +465 13 2020-02-15T06:59:35Z +466 6 2020-02-15T06:59:35Z +467 9 2020-02-15T06:59:35Z +468 3 2020-02-15T06:59:35Z +469 4 2020-02-15T06:59:35Z +470 2 2020-02-15T06:59:35Z +471 4 2020-02-15T06:59:35Z +472 16 2020-02-15T06:59:35Z +473 7 2020-02-15T06:59:35Z +474 15 2020-02-15T06:59:35Z +475 11 2020-02-15T06:59:35Z +476 8 2020-02-15T06:59:35Z +477 12 2020-02-15T06:59:35Z +478 5 2020-02-15T06:59:35Z +479 8 2020-02-15T06:59:35Z +480 4 2020-02-15T06:59:35Z +481 13 2020-02-15T06:59:35Z +482 4 2020-02-15T06:59:35Z +483 10 2020-02-15T06:59:35Z +484 4 2020-02-15T06:59:35Z +485 3 2020-02-15T06:59:35Z +486 9 2020-02-15T06:59:35Z +487 4 2020-02-15T06:59:35Z +488 15 2020-02-15T06:59:35Z +489 2 2020-02-15T06:59:35Z +490 13 2020-02-15T06:59:35Z +491 3 2020-02-15T06:59:35Z +492 13 2020-02-15T06:59:35Z +493 9 2020-02-15T06:59:36Z +494 11 2020-02-15T06:59:36Z +495 11 2020-02-15T06:59:36Z +496 16 2020-02-15T06:59:36Z +497 6 2020-02-15T06:59:36Z +498 8 2020-02-15T06:59:36Z +499 8 2020-02-15T06:59:36Z +500 9 2020-02-15T06:59:36Z +501 1 2020-02-15T06:59:36Z +502 5 2020-02-15T06:59:36Z +503 15 2020-02-15T06:59:36Z +504 7 2020-02-15T06:59:36Z +505 3 2020-02-15T06:59:36Z +506 11 2020-02-15T06:59:36Z +507 10 2020-02-15T06:59:36Z +508 10 2020-02-15T06:59:36Z +509 3 2020-02-15T06:59:36Z +510 2 2020-02-15T06:59:36Z +511 1 2020-02-15T06:59:36Z +512 4 2020-02-15T06:59:36Z +513 16 2020-02-15T06:59:36Z +514 7 2020-02-15T06:59:36Z +515 3 2020-02-15T06:59:36Z +516 12 2020-02-15T06:59:36Z +517 15 2020-02-15T06:59:36Z +518 16 2020-02-15T06:59:36Z +519 15 2020-02-15T06:59:36Z +520 14 2020-02-15T06:59:36Z +521 7 2020-02-15T06:59:36Z +522 5 2020-02-15T06:59:36Z +523 4 2020-02-15T06:59:36Z +524 5 2020-02-15T06:59:36Z +525 4 2020-02-15T06:59:36Z +526 16 2020-02-15T06:59:36Z +527 11 2020-02-15T06:59:36Z +528 8 2020-02-15T06:59:36Z +529 5 2020-02-15T06:59:36Z +530 1 2020-02-15T06:59:36Z +531 9 2020-02-15T06:59:36Z +532 15 2020-02-15T06:59:36Z +533 9 2020-02-15T06:59:36Z +534 8 2020-02-15T06:59:36Z +535 11 2020-02-15T06:59:36Z +536 4 2020-02-15T06:59:36Z +537 4 2020-02-15T06:59:36Z +538 13 2020-02-15T06:59:36Z +539 7 2020-02-15T06:59:36Z +540 12 2020-02-15T06:59:36Z +541 2 2020-02-15T06:59:36Z +542 1 2020-02-15T06:59:36Z +543 16 2020-02-15T06:59:36Z +544 6 2020-02-15T06:59:36Z +545 9 2020-02-15T06:59:36Z +546 10 2020-02-15T06:59:36Z +547 3 2020-02-15T06:59:36Z +548 4 2020-02-15T06:59:36Z +549 1 2020-02-15T06:59:36Z +550 8 2020-02-15T06:59:36Z +551 13 2020-02-15T06:59:36Z +552 6 2020-02-15T06:59:36Z +553 3 2020-02-15T06:59:36Z +554 4 2020-02-15T06:59:36Z +555 5 2020-02-15T06:59:36Z +556 10 2020-02-15T06:59:36Z +557 8 2020-02-15T06:59:36Z +558 13 2020-02-15T06:59:36Z +559 14 2020-02-15T06:59:36Z +560 10 2020-02-15T06:59:36Z +561 13 2020-02-15T06:59:36Z +562 12 2020-02-15T06:59:36Z +563 10 2020-02-15T06:59:36Z +564 2 2020-02-15T06:59:36Z +565 9 2020-02-15T06:59:36Z +566 9 2020-02-15T06:59:36Z +567 9 2020-02-15T06:59:36Z +568 5 2020-02-15T06:59:36Z +569 2 2020-02-15T06:59:36Z +570 15 2020-02-15T06:59:36Z +571 6 2020-02-15T06:59:36Z +572 14 2020-02-15T06:59:36Z +573 3 2020-02-15T06:59:36Z +574 1 2020-02-15T06:59:36Z +575 6 2020-02-15T06:59:36Z +576 6 2020-02-15T06:59:36Z +577 15 2020-02-15T06:59:36Z +578 4 2020-02-15T06:59:36Z +579 1 2020-02-15T06:59:36Z +580 13 2020-02-15T06:59:36Z +581 12 2020-02-15T06:59:36Z +582 2 2020-02-15T06:59:36Z +583 2 2020-02-15T06:59:36Z +584 9 2020-02-15T06:59:36Z +585 7 2020-02-15T06:59:36Z +586 1 2020-02-15T06:59:36Z +587 6 2020-02-15T06:59:36Z +588 3 2020-02-15T06:59:36Z +589 6 2020-02-15T06:59:36Z +590 13 2020-02-15T06:59:36Z +591 10 2020-02-15T06:59:36Z +592 12 2020-02-15T06:59:36Z +593 11 2020-02-15T06:59:36Z +594 1 2020-02-15T06:59:36Z +595 9 2020-02-15T06:59:36Z +596 10 2020-02-15T06:59:36Z +597 10 2020-02-15T06:59:36Z +598 15 2020-02-15T06:59:36Z +599 15 2020-02-15T06:59:36Z +600 11 2020-02-15T06:59:36Z +601 16 2020-02-15T06:59:36Z +602 14 2020-02-15T06:59:36Z +603 8 2020-02-15T06:59:36Z +604 5 2020-02-15T06:59:36Z +605 9 2020-02-15T06:59:36Z +606 15 2020-02-15T06:59:36Z +607 9 2020-02-15T06:59:36Z +608 3 2020-02-15T06:59:36Z +609 16 2020-02-15T06:59:36Z +610 8 2020-02-15T06:59:36Z +611 4 2020-02-15T06:59:36Z +612 15 2020-02-15T06:59:36Z +613 5 2020-02-15T06:59:36Z +614 10 2020-02-15T06:59:36Z +615 2 2020-02-15T06:59:36Z +616 6 2020-02-15T06:59:36Z +617 8 2020-02-15T06:59:36Z +618 7 2020-02-15T06:59:36Z +619 15 2020-02-15T06:59:36Z +620 14 2020-02-15T06:59:36Z +621 8 2020-02-15T06:59:36Z +622 6 2020-02-15T06:59:36Z +623 9 2020-02-15T06:59:36Z +624 10 2020-02-15T06:59:36Z +625 14 2020-02-15T06:59:36Z +626 3 2020-02-15T06:59:36Z +627 6 2020-02-15T06:59:36Z +628 15 2020-02-15T06:59:36Z +629 6 2020-02-15T06:59:36Z +630 7 2020-02-15T06:59:36Z +631 15 2020-02-15T06:59:36Z +632 13 2020-02-15T06:59:36Z +633 4 2020-02-15T06:59:36Z +634 8 2020-02-15T06:59:36Z +635 13 2020-02-15T06:59:36Z +636 12 2020-02-15T06:59:36Z +637 14 2020-02-15T06:59:36Z +638 5 2020-02-15T06:59:36Z +639 8 2020-02-15T06:59:36Z +640 9 2020-02-15T06:59:36Z +641 9 2020-02-15T06:59:36Z +642 16 2020-02-15T06:59:36Z +643 7 2020-02-15T06:59:36Z +644 2 2020-02-15T06:59:36Z +645 16 2020-02-15T06:59:36Z +646 10 2020-02-15T06:59:36Z +647 12 2020-02-15T06:59:36Z +648 16 2020-02-15T06:59:36Z +649 2 2020-02-15T06:59:36Z +650 6 2020-02-15T06:59:36Z +651 2 2020-02-15T06:59:36Z +652 4 2020-02-15T06:59:36Z +653 11 2020-02-15T06:59:36Z +654 10 2020-02-15T06:59:36Z +655 14 2020-02-15T06:59:36Z +656 16 2020-02-15T06:59:36Z +657 5 2020-02-15T06:59:36Z +658 11 2020-02-15T06:59:36Z +659 1 2020-02-15T06:59:36Z +660 5 2020-02-15T06:59:36Z +661 9 2020-02-15T06:59:36Z +662 7 2020-02-15T06:59:36Z +663 4 2020-02-15T06:59:36Z +664 1 2020-02-15T06:59:36Z +665 11 2020-02-15T06:59:36Z +666 7 2020-02-15T06:59:36Z +667 15 2020-02-15T06:59:36Z +668 15 2020-02-15T06:59:36Z +669 9 2020-02-15T06:59:36Z +670 6 2020-02-15T06:59:36Z +671 15 2020-02-15T06:59:36Z +672 5 2020-02-15T06:59:36Z +673 12 2020-02-15T06:59:36Z +674 9 2020-02-15T06:59:36Z +675 13 2020-02-15T06:59:36Z +676 15 2020-02-15T06:59:36Z +677 13 2020-02-15T06:59:36Z +678 15 2020-02-15T06:59:36Z +679 8 2020-02-15T06:59:36Z +680 5 2020-02-15T06:59:36Z +681 15 2020-02-15T06:59:36Z +682 8 2020-02-15T06:59:36Z +683 7 2020-02-15T06:59:36Z +684 10 2020-02-15T06:59:36Z +685 13 2020-02-15T06:59:36Z +686 13 2020-02-15T06:59:36Z +687 6 2020-02-15T06:59:36Z +688 3 2020-02-15T06:59:36Z +689 9 2020-02-15T06:59:36Z +690 2 2020-02-15T06:59:36Z +691 15 2020-02-15T06:59:36Z +692 2 2020-02-15T06:59:36Z +693 2 2020-02-15T06:59:36Z +694 4 2020-02-15T06:59:36Z +695 8 2020-02-15T06:59:36Z +696 2 2020-02-15T06:59:36Z +697 1 2020-02-15T06:59:36Z +698 6 2020-02-15T06:59:36Z +699 10 2020-02-15T06:59:36Z +700 8 2020-02-15T06:59:36Z +701 10 2020-02-15T06:59:36Z +702 11 2020-02-15T06:59:36Z +703 2 2020-02-15T06:59:36Z +704 5 2020-02-15T06:59:36Z +705 9 2020-02-15T06:59:36Z +706 7 2020-02-15T06:59:36Z +707 1 2020-02-15T06:59:36Z +708 6 2020-02-15T06:59:36Z +709 7 2020-02-15T06:59:36Z +710 8 2020-02-15T06:59:36Z +711 14 2020-02-15T06:59:36Z +712 6 2020-02-15T06:59:36Z +713 6 2020-02-15T06:59:36Z +714 14 2020-02-15T06:59:36Z +715 8 2020-02-15T06:59:36Z +716 11 2020-02-15T06:59:36Z +717 1 2020-02-15T06:59:36Z +718 12 2020-02-15T06:59:36Z +719 15 2020-02-15T06:59:36Z +720 13 2020-02-15T06:59:36Z +721 12 2020-02-15T06:59:36Z +722 11 2020-02-15T06:59:36Z +723 14 2020-02-15T06:59:36Z +724 8 2020-02-15T06:59:36Z +725 4 2020-02-15T06:59:36Z +726 9 2020-02-15T06:59:36Z +727 8 2020-02-15T06:59:36Z +728 7 2020-02-15T06:59:36Z +729 15 2020-02-15T06:59:36Z +730 13 2020-02-15T06:59:36Z +731 4 2020-02-15T06:59:36Z +732 1 2020-02-15T06:59:36Z +733 15 2020-02-15T06:59:36Z +734 6 2020-02-15T06:59:36Z +735 3 2020-02-15T06:59:36Z +736 8 2020-02-15T06:59:36Z +737 11 2020-02-15T06:59:36Z +738 9 2020-02-15T06:59:36Z +739 7 2020-02-15T06:59:36Z +740 11 2020-02-15T06:59:36Z +741 12 2020-02-15T06:59:36Z +742 10 2020-02-15T06:59:36Z +743 2 2020-02-15T06:59:36Z +744 4 2020-02-15T06:59:36Z +745 15 2020-02-15T06:59:36Z +746 10 2020-02-15T06:59:36Z +747 10 2020-02-15T06:59:36Z +748 1 2020-02-15T06:59:36Z +749 11 2020-02-15T06:59:36Z +750 13 2020-02-15T06:59:36Z +751 13 2020-02-15T06:59:36Z +752 12 2020-02-15T06:59:36Z +753 8 2020-02-15T06:59:36Z +754 5 2020-02-15T06:59:36Z +755 3 2020-02-15T06:59:36Z +756 5 2020-02-15T06:59:36Z +757 6 2020-02-15T06:59:36Z +758 7 2020-02-15T06:59:36Z +759 13 2020-02-15T06:59:36Z +760 13 2020-02-15T06:59:36Z +761 3 2020-02-15T06:59:36Z +762 10 2020-02-15T06:59:36Z +763 15 2020-02-15T06:59:36Z +764 15 2020-02-15T06:59:36Z +765 5 2020-02-15T06:59:36Z +766 7 2020-02-15T06:59:36Z +767 12 2020-02-15T06:59:36Z +768 3 2020-02-15T06:59:36Z +769 9 2020-02-15T06:59:36Z +770 9 2020-02-15T06:59:36Z +771 7 2020-02-15T06:59:36Z +772 7 2020-02-15T06:59:36Z +773 15 2020-02-15T06:59:36Z +774 5 2020-02-15T06:59:36Z +775 7 2020-02-15T06:59:36Z +776 6 2020-02-15T06:59:36Z +777 15 2020-02-15T06:59:36Z +778 8 2020-02-15T06:59:36Z +779 15 2020-02-15T06:59:36Z +780 8 2020-02-15T06:59:36Z +781 10 2020-02-15T06:59:36Z +782 15 2020-02-15T06:59:36Z +783 16 2020-02-15T06:59:36Z +784 16 2020-02-15T06:59:36Z +785 16 2020-02-15T06:59:36Z +786 3 2020-02-15T06:59:36Z +787 16 2020-02-15T06:59:36Z +788 6 2020-02-15T06:59:36Z +789 9 2020-02-15T06:59:36Z +790 7 2020-02-15T06:59:36Z +791 6 2020-02-15T06:59:36Z +792 9 2020-02-15T06:59:36Z +793 1 2020-02-15T06:59:36Z +794 1 2020-02-15T06:59:36Z +795 8 2020-02-15T06:59:36Z +796 15 2020-02-15T06:59:36Z +797 12 2020-02-15T06:59:36Z +798 14 2020-02-15T06:59:36Z +799 11 2020-02-15T06:59:36Z +800 11 2020-02-15T06:59:36Z +801 3 2020-02-15T06:59:36Z +802 1 2020-02-15T06:59:36Z +803 7 2020-02-15T06:59:36Z +804 11 2020-02-15T06:59:36Z +805 2 2020-02-15T06:59:36Z +806 13 2020-02-15T06:59:36Z +807 10 2020-02-15T06:59:36Z +808 4 2020-02-15T06:59:36Z +809 15 2020-02-15T06:59:36Z +810 8 2020-02-15T06:59:36Z +811 16 2020-02-15T06:59:36Z +812 6 2020-02-15T06:59:36Z +813 15 2020-02-15T06:59:36Z +814 5 2020-02-15T06:59:36Z +815 4 2020-02-15T06:59:36Z +816 2 2020-02-15T06:59:36Z +817 14 2020-02-15T06:59:36Z +818 7 2020-02-15T06:59:36Z +819 12 2020-02-15T06:59:36Z +820 2 2020-02-15T06:59:36Z +821 9 2020-02-15T06:59:36Z +822 8 2020-02-15T06:59:36Z +823 1 2020-02-15T06:59:36Z +824 8 2020-02-15T06:59:36Z +825 1 2020-02-15T06:59:36Z +826 16 2020-02-15T06:59:36Z +827 7 2020-02-15T06:59:36Z +828 4 2020-02-15T06:59:36Z +829 8 2020-02-15T06:59:36Z +830 11 2020-02-15T06:59:36Z +831 14 2020-02-15T06:59:36Z +832 8 2020-02-15T06:59:36Z +833 3 2020-02-15T06:59:36Z +834 6 2020-02-15T06:59:36Z +835 10 2020-02-15T06:59:36Z +836 15 2020-02-15T06:59:36Z +837 5 2020-02-15T06:59:36Z +838 1 2020-02-15T06:59:36Z +839 14 2020-02-15T06:59:36Z +840 10 2020-02-15T06:59:36Z +841 15 2020-02-15T06:59:36Z +842 10 2020-02-15T06:59:36Z +843 4 2020-02-15T06:59:36Z +844 15 2020-02-15T06:59:36Z +845 9 2020-02-15T06:59:36Z +846 13 2020-02-15T06:59:36Z +847 13 2020-02-15T06:59:36Z +848 16 2020-02-15T06:59:36Z +849 2 2020-02-15T06:59:36Z +850 1 2020-02-15T06:59:36Z +851 15 2020-02-15T06:59:36Z +852 3 2020-02-15T06:59:36Z +853 3 2020-02-15T06:59:36Z +854 11 2020-02-15T06:59:36Z +855 6 2020-02-15T06:59:36Z +856 11 2020-02-15T06:59:36Z +857 5 2020-02-15T06:59:36Z +858 5 2020-02-15T06:59:36Z +859 2 2020-02-15T06:59:36Z +860 14 2020-02-15T06:59:36Z +861 10 2020-02-15T06:59:36Z +862 4 2020-02-15T06:59:36Z +863 14 2020-02-15T06:59:36Z +864 3 2020-02-15T06:59:36Z +865 2 2020-02-15T06:59:36Z +866 8 2020-02-15T06:59:36Z +867 8 2020-02-15T06:59:36Z +868 16 2020-02-15T06:59:36Z +869 1 2020-02-15T06:59:36Z +870 11 2020-02-15T06:59:36Z +871 5 2020-02-15T06:59:36Z +872 16 2020-02-15T06:59:36Z +873 3 2020-02-15T06:59:36Z +874 4 2020-02-15T06:59:36Z +875 15 2020-02-15T06:59:36Z +876 11 2020-02-15T06:59:36Z +877 12 2020-02-15T06:59:36Z +878 16 2020-02-15T06:59:36Z +879 12 2020-02-15T06:59:36Z +880 2 2020-02-15T06:59:36Z +881 11 2020-02-15T06:59:36Z +882 7 2020-02-15T06:59:36Z +883 3 2020-02-15T06:59:36Z +884 12 2020-02-15T06:59:36Z +885 11 2020-02-15T06:59:36Z +886 2 2020-02-15T06:59:36Z +887 2 2020-02-15T06:59:36Z +888 6 2020-02-15T06:59:36Z +889 3 2020-02-15T06:59:36Z +890 15 2020-02-15T06:59:36Z +891 4 2020-02-15T06:59:36Z +892 2 2020-02-15T06:59:36Z +893 14 2020-02-15T06:59:36Z +894 16 2020-02-15T06:59:36Z +895 4 2020-02-15T06:59:36Z +896 3 2020-02-15T06:59:36Z +897 7 2020-02-15T06:59:36Z +898 15 2020-02-15T06:59:36Z +899 4 2020-02-15T06:59:36Z +900 9 2020-02-15T06:59:36Z +901 2 2020-02-15T06:59:36Z +902 15 2020-02-15T06:59:36Z +903 16 2020-02-15T06:59:36Z +904 11 2020-02-15T06:59:36Z +905 5 2020-02-15T06:59:36Z +906 5 2020-02-15T06:59:36Z +907 7 2020-02-15T06:59:36Z +908 9 2020-02-15T06:59:36Z +909 11 2020-02-15T06:59:36Z +910 7 2020-02-15T06:59:36Z +911 1 2020-02-15T06:59:36Z +912 14 2020-02-15T06:59:36Z +913 13 2020-02-15T06:59:36Z +914 16 2020-02-15T06:59:36Z +915 1 2020-02-15T06:59:36Z +916 2 2020-02-15T06:59:36Z +917 15 2020-02-15T06:59:36Z +918 3 2020-02-15T06:59:36Z +919 10 2020-02-15T06:59:36Z +920 13 2020-02-15T06:59:36Z +921 12 2020-02-15T06:59:36Z +922 11 2020-02-15T06:59:36Z +923 7 2020-02-15T06:59:36Z +924 14 2020-02-15T06:59:36Z +925 6 2020-02-15T06:59:36Z +926 6 2020-02-15T06:59:36Z +927 1 2020-02-15T06:59:36Z +928 3 2020-02-15T06:59:36Z +929 9 2020-02-15T06:59:36Z +930 14 2020-02-15T06:59:36Z +931 16 2020-02-15T06:59:36Z +932 5 2020-02-15T06:59:36Z +933 13 2020-02-15T06:59:36Z +934 10 2020-02-15T06:59:36Z +935 13 2020-02-15T06:59:36Z +936 12 2020-02-15T06:59:36Z +937 13 2020-02-15T06:59:36Z +938 5 2020-02-15T06:59:36Z +939 5 2020-02-15T06:59:36Z +940 15 2020-02-15T06:59:36Z +941 10 2020-02-15T06:59:36Z +942 7 2020-02-15T06:59:36Z +943 6 2020-02-15T06:59:36Z +944 7 2020-02-15T06:59:36Z +945 6 2020-02-15T06:59:36Z +946 8 2020-02-15T06:59:36Z +947 9 2020-02-15T06:59:36Z +948 13 2020-02-15T06:59:36Z +949 10 2020-02-15T06:59:36Z +950 4 2020-02-15T06:59:36Z +951 4 2020-02-15T06:59:36Z +952 6 2020-02-15T06:59:36Z +953 2 2020-02-15T06:59:36Z +954 13 2020-02-15T06:59:36Z +955 3 2020-02-15T06:59:36Z +956 10 2020-02-15T06:59:36Z +957 9 2020-02-15T06:59:36Z +958 7 2020-02-15T06:59:36Z +959 3 2020-02-15T06:59:36Z +960 6 2020-02-15T06:59:36Z +961 9 2020-02-15T06:59:36Z +962 4 2020-02-15T06:59:36Z +963 2 2020-02-15T06:59:36Z +964 1 2020-02-15T06:59:36Z +965 11 2020-02-15T06:59:36Z +966 6 2020-02-15T06:59:36Z +967 14 2020-02-15T06:59:36Z +968 1 2020-02-15T06:59:36Z +969 7 2020-02-15T06:59:36Z +970 4 2020-02-15T06:59:36Z +971 9 2020-02-15T06:59:36Z +972 14 2020-02-15T06:59:36Z +973 6 2020-02-15T06:59:36Z +974 13 2020-02-15T06:59:36Z +975 8 2020-02-15T06:59:36Z +976 10 2020-02-15T06:59:36Z +977 16 2020-02-15T06:59:36Z +978 5 2020-02-15T06:59:36Z +979 7 2020-02-15T06:59:36Z +980 12 2020-02-15T06:59:36Z +981 16 2020-02-15T06:59:36Z +982 1 2020-02-15T06:59:36Z +983 12 2020-02-15T06:59:36Z +984 9 2020-02-15T06:59:36Z +985 14 2020-02-15T06:59:36Z +986 2 2020-02-15T06:59:36Z +987 12 2020-02-15T06:59:36Z +988 16 2020-02-15T06:59:36Z +989 16 2020-02-15T06:59:36Z +990 11 2020-02-15T06:59:36Z +991 1 2020-02-15T06:59:36Z +992 6 2020-02-15T06:59:36Z +993 3 2020-02-15T06:59:36Z +994 13 2020-02-15T06:59:36Z +995 11 2020-02-15T06:59:36Z +996 6 2020-02-15T06:59:36Z +997 12 2020-02-15T06:59:36Z +998 11 2020-02-15T06:59:36Z +999 3 2020-02-15T06:59:36Z +1000 5 2020-02-15T06:59:36Z diff --git a/drivers/csv/testdata/sakila-tsv/film_text.tsv b/drivers/csv/testdata/sakila-tsv/film_text.tsv new file mode 100644 index 00000000..e69de29b diff --git a/drivers/csv/testdata/sakila-tsv/inventory.tsv b/drivers/csv/testdata/sakila-tsv/inventory.tsv new file mode 100644 index 00000000..41c6b8d6 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/inventory.tsv @@ -0,0 +1,4582 @@ +inventory_id film_id store_id last_update +1 1 1 2020-02-15T06:59:29Z +2 1 1 2020-02-15T06:59:29Z +3 1 1 2020-02-15T06:59:29Z +4 1 1 2020-02-15T06:59:29Z +5 1 2 2020-02-15T06:59:29Z +6 1 2 2020-02-15T06:59:29Z +7 1 2 2020-02-15T06:59:29Z +8 1 2 2020-02-15T06:59:29Z +9 2 2 2020-02-15T06:59:29Z +10 2 2 2020-02-15T06:59:29Z +11 2 2 2020-02-15T06:59:29Z +12 3 2 2020-02-15T06:59:29Z +13 3 2 2020-02-15T06:59:29Z +14 3 2 2020-02-15T06:59:29Z +15 3 2 2020-02-15T06:59:29Z +16 4 1 2020-02-15T06:59:29Z +17 4 1 2020-02-15T06:59:29Z +18 4 1 2020-02-15T06:59:29Z +19 4 1 2020-02-15T06:59:29Z +20 4 2 2020-02-15T06:59:29Z +21 4 2 2020-02-15T06:59:29Z +22 4 2 2020-02-15T06:59:29Z +23 5 2 2020-02-15T06:59:29Z +24 5 2 2020-02-15T06:59:29Z +25 5 2 2020-02-15T06:59:29Z +26 6 1 2020-02-15T06:59:29Z +27 6 1 2020-02-15T06:59:29Z +28 6 1 2020-02-15T06:59:29Z +29 6 2 2020-02-15T06:59:29Z +30 6 2 2020-02-15T06:59:29Z +31 6 2 2020-02-15T06:59:29Z +32 7 1 2020-02-15T06:59:29Z +33 7 1 2020-02-15T06:59:29Z +34 7 2 2020-02-15T06:59:29Z +35 7 2 2020-02-15T06:59:29Z +36 7 2 2020-02-15T06:59:29Z +37 8 2 2020-02-15T06:59:29Z +38 8 2 2020-02-15T06:59:29Z +39 8 2 2020-02-15T06:59:29Z +40 8 2 2020-02-15T06:59:29Z +41 9 1 2020-02-15T06:59:29Z +42 9 1 2020-02-15T06:59:29Z +43 9 1 2020-02-15T06:59:29Z +44 9 2 2020-02-15T06:59:29Z +45 9 2 2020-02-15T06:59:29Z +46 10 1 2020-02-15T06:59:29Z +47 10 1 2020-02-15T06:59:29Z +48 10 1 2020-02-15T06:59:29Z +49 10 1 2020-02-15T06:59:29Z +50 10 2 2020-02-15T06:59:29Z +51 10 2 2020-02-15T06:59:29Z +52 10 2 2020-02-15T06:59:29Z +53 11 1 2020-02-15T06:59:29Z +54 11 1 2020-02-15T06:59:29Z +55 11 1 2020-02-15T06:59:29Z +56 11 1 2020-02-15T06:59:29Z +57 11 2 2020-02-15T06:59:29Z +58 11 2 2020-02-15T06:59:29Z +59 11 2 2020-02-15T06:59:29Z +60 12 1 2020-02-15T06:59:29Z +61 12 1 2020-02-15T06:59:29Z +62 12 1 2020-02-15T06:59:29Z +63 12 2 2020-02-15T06:59:29Z +64 12 2 2020-02-15T06:59:29Z +65 12 2 2020-02-15T06:59:29Z +66 12 2 2020-02-15T06:59:29Z +67 13 2 2020-02-15T06:59:29Z +68 13 2 2020-02-15T06:59:29Z +69 13 2 2020-02-15T06:59:29Z +70 13 2 2020-02-15T06:59:29Z +71 15 1 2020-02-15T06:59:29Z +72 15 1 2020-02-15T06:59:29Z +73 15 2 2020-02-15T06:59:29Z +74 15 2 2020-02-15T06:59:29Z +75 15 2 2020-02-15T06:59:29Z +76 15 2 2020-02-15T06:59:29Z +77 16 1 2020-02-15T06:59:29Z +78 16 1 2020-02-15T06:59:29Z +79 16 2 2020-02-15T06:59:29Z +80 16 2 2020-02-15T06:59:29Z +81 17 1 2020-02-15T06:59:29Z +82 17 1 2020-02-15T06:59:29Z +83 17 1 2020-02-15T06:59:29Z +84 17 2 2020-02-15T06:59:29Z +85 17 2 2020-02-15T06:59:29Z +86 17 2 2020-02-15T06:59:29Z +87 18 1 2020-02-15T06:59:29Z +88 18 1 2020-02-15T06:59:29Z +89 18 1 2020-02-15T06:59:29Z +90 18 2 2020-02-15T06:59:29Z +91 18 2 2020-02-15T06:59:29Z +92 18 2 2020-02-15T06:59:29Z +93 19 1 2020-02-15T06:59:29Z +94 19 1 2020-02-15T06:59:29Z +95 19 1 2020-02-15T06:59:29Z +96 19 1 2020-02-15T06:59:29Z +97 19 2 2020-02-15T06:59:29Z +98 19 2 2020-02-15T06:59:29Z +99 20 1 2020-02-15T06:59:29Z +100 20 1 2020-02-15T06:59:29Z +101 20 1 2020-02-15T06:59:29Z +102 21 1 2020-02-15T06:59:29Z +103 21 1 2020-02-15T06:59:29Z +104 21 2 2020-02-15T06:59:29Z +105 21 2 2020-02-15T06:59:29Z +106 21 2 2020-02-15T06:59:29Z +107 21 2 2020-02-15T06:59:29Z +108 22 1 2020-02-15T06:59:29Z +109 22 1 2020-02-15T06:59:29Z +110 22 1 2020-02-15T06:59:29Z +111 22 1 2020-02-15T06:59:29Z +112 22 2 2020-02-15T06:59:29Z +113 22 2 2020-02-15T06:59:29Z +114 22 2 2020-02-15T06:59:29Z +115 23 1 2020-02-15T06:59:29Z +116 23 1 2020-02-15T06:59:29Z +117 23 1 2020-02-15T06:59:29Z +118 23 2 2020-02-15T06:59:29Z +119 23 2 2020-02-15T06:59:29Z +120 24 1 2020-02-15T06:59:29Z +121 24 1 2020-02-15T06:59:29Z +122 24 1 2020-02-15T06:59:29Z +123 24 1 2020-02-15T06:59:29Z +124 25 1 2020-02-15T06:59:29Z +125 25 1 2020-02-15T06:59:29Z +126 25 1 2020-02-15T06:59:29Z +127 25 1 2020-02-15T06:59:29Z +128 25 2 2020-02-15T06:59:29Z +129 25 2 2020-02-15T06:59:29Z +130 26 1 2020-02-15T06:59:29Z +131 26 1 2020-02-15T06:59:29Z +132 26 2 2020-02-15T06:59:29Z +133 26 2 2020-02-15T06:59:29Z +134 26 2 2020-02-15T06:59:29Z +135 27 1 2020-02-15T06:59:29Z +136 27 1 2020-02-15T06:59:29Z +137 27 1 2020-02-15T06:59:29Z +138 27 1 2020-02-15T06:59:29Z +139 28 1 2020-02-15T06:59:29Z +140 28 1 2020-02-15T06:59:29Z +141 28 1 2020-02-15T06:59:29Z +142 29 1 2020-02-15T06:59:29Z +143 29 1 2020-02-15T06:59:29Z +144 30 1 2020-02-15T06:59:29Z +145 30 1 2020-02-15T06:59:29Z +146 31 1 2020-02-15T06:59:29Z +147 31 1 2020-02-15T06:59:29Z +148 31 1 2020-02-15T06:59:29Z +149 31 1 2020-02-15T06:59:29Z +150 31 2 2020-02-15T06:59:29Z +151 31 2 2020-02-15T06:59:29Z +152 31 2 2020-02-15T06:59:29Z +153 31 2 2020-02-15T06:59:29Z +154 32 2 2020-02-15T06:59:29Z +155 32 2 2020-02-15T06:59:29Z +156 34 2 2020-02-15T06:59:29Z +157 34 2 2020-02-15T06:59:29Z +158 34 2 2020-02-15T06:59:29Z +159 34 2 2020-02-15T06:59:29Z +160 35 1 2020-02-15T06:59:29Z +161 35 1 2020-02-15T06:59:29Z +162 35 1 2020-02-15T06:59:29Z +163 35 1 2020-02-15T06:59:29Z +164 35 2 2020-02-15T06:59:29Z +165 35 2 2020-02-15T06:59:29Z +166 35 2 2020-02-15T06:59:29Z +167 37 1 2020-02-15T06:59:29Z +168 37 1 2020-02-15T06:59:29Z +169 37 1 2020-02-15T06:59:29Z +170 37 1 2020-02-15T06:59:29Z +171 37 2 2020-02-15T06:59:29Z +172 37 2 2020-02-15T06:59:29Z +173 37 2 2020-02-15T06:59:29Z +174 39 1 2020-02-15T06:59:29Z +175 39 1 2020-02-15T06:59:29Z +176 39 1 2020-02-15T06:59:29Z +177 39 2 2020-02-15T06:59:29Z +178 39 2 2020-02-15T06:59:29Z +179 39 2 2020-02-15T06:59:29Z +180 39 2 2020-02-15T06:59:29Z +181 40 2 2020-02-15T06:59:29Z +182 40 2 2020-02-15T06:59:29Z +183 40 2 2020-02-15T06:59:29Z +184 40 2 2020-02-15T06:59:29Z +185 42 2 2020-02-15T06:59:29Z +186 42 2 2020-02-15T06:59:29Z +187 42 2 2020-02-15T06:59:29Z +188 42 2 2020-02-15T06:59:29Z +189 43 1 2020-02-15T06:59:29Z +190 43 1 2020-02-15T06:59:29Z +191 43 1 2020-02-15T06:59:29Z +192 43 2 2020-02-15T06:59:29Z +193 43 2 2020-02-15T06:59:29Z +194 43 2 2020-02-15T06:59:29Z +195 43 2 2020-02-15T06:59:29Z +196 44 1 2020-02-15T06:59:29Z +197 44 1 2020-02-15T06:59:29Z +198 44 2 2020-02-15T06:59:29Z +199 44 2 2020-02-15T06:59:29Z +200 44 2 2020-02-15T06:59:29Z +201 45 1 2020-02-15T06:59:29Z +202 45 1 2020-02-15T06:59:29Z +203 45 1 2020-02-15T06:59:29Z +204 45 1 2020-02-15T06:59:29Z +205 45 2 2020-02-15T06:59:29Z +206 45 2 2020-02-15T06:59:29Z +207 46 2 2020-02-15T06:59:29Z +208 46 2 2020-02-15T06:59:29Z +209 46 2 2020-02-15T06:59:29Z +210 47 2 2020-02-15T06:59:29Z +211 47 2 2020-02-15T06:59:29Z +212 48 1 2020-02-15T06:59:29Z +213 48 1 2020-02-15T06:59:29Z +214 48 2 2020-02-15T06:59:29Z +215 48 2 2020-02-15T06:59:29Z +216 49 1 2020-02-15T06:59:29Z +217 49 1 2020-02-15T06:59:29Z +218 49 1 2020-02-15T06:59:29Z +219 49 2 2020-02-15T06:59:29Z +220 49 2 2020-02-15T06:59:29Z +221 49 2 2020-02-15T06:59:29Z +222 50 1 2020-02-15T06:59:29Z +223 50 1 2020-02-15T06:59:29Z +224 50 1 2020-02-15T06:59:29Z +225 50 2 2020-02-15T06:59:29Z +226 50 2 2020-02-15T06:59:29Z +227 51 1 2020-02-15T06:59:29Z +228 51 1 2020-02-15T06:59:29Z +229 51 2 2020-02-15T06:59:29Z +230 51 2 2020-02-15T06:59:29Z +231 51 2 2020-02-15T06:59:29Z +232 51 2 2020-02-15T06:59:29Z +233 52 2 2020-02-15T06:59:29Z +234 52 2 2020-02-15T06:59:29Z +235 53 1 2020-02-15T06:59:29Z +236 53 1 2020-02-15T06:59:29Z +237 54 1 2020-02-15T06:59:29Z +238 54 1 2020-02-15T06:59:29Z +239 54 1 2020-02-15T06:59:29Z +240 54 2 2020-02-15T06:59:29Z +241 54 2 2020-02-15T06:59:29Z +242 55 1 2020-02-15T06:59:29Z +243 55 1 2020-02-15T06:59:29Z +244 55 1 2020-02-15T06:59:29Z +245 55 1 2020-02-15T06:59:29Z +246 55 2 2020-02-15T06:59:29Z +247 55 2 2020-02-15T06:59:29Z +248 56 1 2020-02-15T06:59:29Z +249 56 1 2020-02-15T06:59:29Z +250 56 1 2020-02-15T06:59:29Z +251 56 2 2020-02-15T06:59:29Z +252 56 2 2020-02-15T06:59:29Z +253 57 1 2020-02-15T06:59:29Z +254 57 1 2020-02-15T06:59:29Z +255 57 1 2020-02-15T06:59:29Z +256 57 1 2020-02-15T06:59:29Z +257 57 2 2020-02-15T06:59:29Z +258 57 2 2020-02-15T06:59:29Z +259 57 2 2020-02-15T06:59:29Z +260 58 2 2020-02-15T06:59:29Z +261 58 2 2020-02-15T06:59:29Z +262 58 2 2020-02-15T06:59:29Z +263 58 2 2020-02-15T06:59:29Z +264 59 1 2020-02-15T06:59:29Z +265 59 1 2020-02-15T06:59:29Z +266 59 1 2020-02-15T06:59:29Z +267 59 2 2020-02-15T06:59:29Z +268 59 2 2020-02-15T06:59:29Z +269 60 1 2020-02-15T06:59:29Z +270 60 1 2020-02-15T06:59:29Z +271 60 1 2020-02-15T06:59:29Z +272 61 1 2020-02-15T06:59:29Z +273 61 1 2020-02-15T06:59:29Z +274 61 1 2020-02-15T06:59:29Z +275 61 1 2020-02-15T06:59:29Z +276 61 2 2020-02-15T06:59:29Z +277 61 2 2020-02-15T06:59:29Z +278 62 2 2020-02-15T06:59:29Z +279 62 2 2020-02-15T06:59:29Z +280 63 1 2020-02-15T06:59:29Z +281 63 1 2020-02-15T06:59:29Z +282 63 2 2020-02-15T06:59:29Z +283 63 2 2020-02-15T06:59:29Z +284 64 2 2020-02-15T06:59:29Z +285 64 2 2020-02-15T06:59:29Z +286 64 2 2020-02-15T06:59:29Z +287 65 2 2020-02-15T06:59:29Z +288 65 2 2020-02-15T06:59:29Z +289 65 2 2020-02-15T06:59:29Z +290 65 2 2020-02-15T06:59:29Z +291 66 1 2020-02-15T06:59:29Z +292 66 1 2020-02-15T06:59:29Z +293 66 1 2020-02-15T06:59:29Z +294 67 1 2020-02-15T06:59:29Z +295 67 1 2020-02-15T06:59:29Z +296 67 2 2020-02-15T06:59:29Z +297 67 2 2020-02-15T06:59:29Z +298 67 2 2020-02-15T06:59:29Z +299 67 2 2020-02-15T06:59:29Z +300 68 1 2020-02-15T06:59:29Z +301 68 1 2020-02-15T06:59:29Z +302 68 2 2020-02-15T06:59:29Z +303 68 2 2020-02-15T06:59:29Z +304 69 1 2020-02-15T06:59:29Z +305 69 1 2020-02-15T06:59:29Z +306 69 1 2020-02-15T06:59:29Z +307 69 1 2020-02-15T06:59:29Z +308 69 2 2020-02-15T06:59:29Z +309 69 2 2020-02-15T06:59:29Z +310 69 2 2020-02-15T06:59:29Z +311 69 2 2020-02-15T06:59:29Z +312 70 1 2020-02-15T06:59:29Z +313 70 1 2020-02-15T06:59:29Z +314 70 2 2020-02-15T06:59:29Z +315 70 2 2020-02-15T06:59:29Z +316 71 2 2020-02-15T06:59:29Z +317 71 2 2020-02-15T06:59:29Z +318 71 2 2020-02-15T06:59:29Z +319 71 2 2020-02-15T06:59:29Z +320 72 1 2020-02-15T06:59:29Z +321 72 1 2020-02-15T06:59:29Z +322 72 1 2020-02-15T06:59:29Z +323 72 1 2020-02-15T06:59:29Z +324 72 2 2020-02-15T06:59:29Z +325 72 2 2020-02-15T06:59:29Z +326 73 1 2020-02-15T06:59:29Z +327 73 1 2020-02-15T06:59:29Z +328 73 1 2020-02-15T06:59:29Z +329 73 1 2020-02-15T06:59:29Z +330 73 2 2020-02-15T06:59:29Z +331 73 2 2020-02-15T06:59:29Z +332 73 2 2020-02-15T06:59:29Z +333 73 2 2020-02-15T06:59:29Z +334 74 1 2020-02-15T06:59:29Z +335 74 1 2020-02-15T06:59:29Z +336 74 1 2020-02-15T06:59:29Z +337 74 2 2020-02-15T06:59:29Z +338 74 2 2020-02-15T06:59:29Z +339 75 2 2020-02-15T06:59:29Z +340 75 2 2020-02-15T06:59:29Z +341 75 2 2020-02-15T06:59:29Z +342 76 1 2020-02-15T06:59:29Z +343 76 1 2020-02-15T06:59:29Z +344 76 1 2020-02-15T06:59:29Z +345 77 1 2020-02-15T06:59:29Z +346 77 1 2020-02-15T06:59:29Z +347 77 1 2020-02-15T06:59:29Z +348 77 1 2020-02-15T06:59:29Z +349 77 2 2020-02-15T06:59:29Z +350 77 2 2020-02-15T06:59:29Z +351 78 1 2020-02-15T06:59:29Z +352 78 1 2020-02-15T06:59:29Z +353 78 1 2020-02-15T06:59:29Z +354 78 2 2020-02-15T06:59:29Z +355 78 2 2020-02-15T06:59:29Z +356 78 2 2020-02-15T06:59:29Z +357 78 2 2020-02-15T06:59:29Z +358 79 1 2020-02-15T06:59:29Z +359 79 1 2020-02-15T06:59:29Z +360 79 1 2020-02-15T06:59:29Z +361 79 2 2020-02-15T06:59:29Z +362 79 2 2020-02-15T06:59:29Z +363 79 2 2020-02-15T06:59:29Z +364 80 1 2020-02-15T06:59:29Z +365 80 1 2020-02-15T06:59:29Z +366 80 1 2020-02-15T06:59:29Z +367 80 1 2020-02-15T06:59:29Z +368 81 1 2020-02-15T06:59:29Z +369 81 1 2020-02-15T06:59:29Z +370 81 1 2020-02-15T06:59:29Z +371 81 1 2020-02-15T06:59:29Z +372 82 1 2020-02-15T06:59:29Z +373 82 1 2020-02-15T06:59:29Z +374 83 1 2020-02-15T06:59:29Z +375 83 1 2020-02-15T06:59:29Z +376 83 1 2020-02-15T06:59:29Z +377 83 2 2020-02-15T06:59:29Z +378 83 2 2020-02-15T06:59:29Z +379 84 1 2020-02-15T06:59:29Z +380 84 1 2020-02-15T06:59:29Z +381 84 1 2020-02-15T06:59:29Z +382 84 1 2020-02-15T06:59:29Z +383 85 2 2020-02-15T06:59:29Z +384 85 2 2020-02-15T06:59:29Z +385 85 2 2020-02-15T06:59:29Z +386 85 2 2020-02-15T06:59:29Z +387 86 1 2020-02-15T06:59:29Z +388 86 1 2020-02-15T06:59:29Z +389 86 1 2020-02-15T06:59:29Z +390 86 1 2020-02-15T06:59:29Z +391 86 2 2020-02-15T06:59:29Z +392 86 2 2020-02-15T06:59:29Z +393 86 2 2020-02-15T06:59:29Z +394 86 2 2020-02-15T06:59:29Z +395 88 2 2020-02-15T06:59:29Z +396 88 2 2020-02-15T06:59:29Z +397 88 2 2020-02-15T06:59:29Z +398 88 2 2020-02-15T06:59:29Z +399 89 1 2020-02-15T06:59:29Z +400 89 1 2020-02-15T06:59:29Z +401 89 1 2020-02-15T06:59:29Z +402 89 2 2020-02-15T06:59:29Z +403 89 2 2020-02-15T06:59:29Z +404 89 2 2020-02-15T06:59:29Z +405 90 1 2020-02-15T06:59:29Z +406 90 1 2020-02-15T06:59:29Z +407 90 1 2020-02-15T06:59:29Z +408 90 2 2020-02-15T06:59:29Z +409 90 2 2020-02-15T06:59:29Z +410 90 2 2020-02-15T06:59:29Z +411 91 1 2020-02-15T06:59:29Z +412 91 1 2020-02-15T06:59:29Z +413 91 1 2020-02-15T06:59:29Z +414 91 1 2020-02-15T06:59:29Z +415 91 2 2020-02-15T06:59:29Z +416 91 2 2020-02-15T06:59:29Z +417 91 2 2020-02-15T06:59:29Z +418 91 2 2020-02-15T06:59:29Z +419 92 1 2020-02-15T06:59:29Z +420 92 1 2020-02-15T06:59:29Z +421 92 2 2020-02-15T06:59:29Z +422 92 2 2020-02-15T06:59:29Z +423 93 2 2020-02-15T06:59:29Z +424 93 2 2020-02-15T06:59:29Z +425 93 2 2020-02-15T06:59:29Z +426 94 1 2020-02-15T06:59:29Z +427 94 1 2020-02-15T06:59:29Z +428 95 1 2020-02-15T06:59:29Z +429 95 1 2020-02-15T06:59:29Z +430 95 2 2020-02-15T06:59:29Z +431 95 2 2020-02-15T06:59:29Z +432 95 2 2020-02-15T06:59:29Z +433 96 1 2020-02-15T06:59:29Z +434 96 1 2020-02-15T06:59:29Z +435 96 1 2020-02-15T06:59:29Z +436 97 1 2020-02-15T06:59:29Z +437 97 1 2020-02-15T06:59:29Z +438 97 1 2020-02-15T06:59:29Z +439 97 1 2020-02-15T06:59:29Z +440 97 2 2020-02-15T06:59:29Z +441 97 2 2020-02-15T06:59:29Z +442 98 1 2020-02-15T06:59:29Z +443 98 1 2020-02-15T06:59:29Z +444 98 1 2020-02-15T06:59:29Z +445 99 1 2020-02-15T06:59:29Z +446 99 1 2020-02-15T06:59:29Z +447 99 1 2020-02-15T06:59:29Z +448 99 2 2020-02-15T06:59:29Z +449 99 2 2020-02-15T06:59:29Z +450 99 2 2020-02-15T06:59:29Z +451 100 1 2020-02-15T06:59:29Z +452 100 1 2020-02-15T06:59:29Z +453 100 1 2020-02-15T06:59:29Z +454 100 1 2020-02-15T06:59:29Z +455 100 2 2020-02-15T06:59:29Z +456 100 2 2020-02-15T06:59:29Z +457 101 1 2020-02-15T06:59:29Z +458 101 1 2020-02-15T06:59:29Z +459 101 1 2020-02-15T06:59:29Z +460 101 1 2020-02-15T06:59:29Z +461 101 2 2020-02-15T06:59:29Z +462 101 2 2020-02-15T06:59:29Z +463 102 2 2020-02-15T06:59:29Z +464 102 2 2020-02-15T06:59:29Z +465 103 1 2020-02-15T06:59:29Z +466 103 1 2020-02-15T06:59:29Z +467 103 1 2020-02-15T06:59:29Z +468 103 1 2020-02-15T06:59:29Z +469 103 2 2020-02-15T06:59:29Z +470 103 2 2020-02-15T06:59:29Z +471 103 2 2020-02-15T06:59:29Z +472 103 2 2020-02-15T06:59:29Z +473 104 2 2020-02-15T06:59:29Z +474 104 2 2020-02-15T06:59:29Z +475 104 2 2020-02-15T06:59:29Z +476 105 1 2020-02-15T06:59:29Z +477 105 1 2020-02-15T06:59:29Z +478 105 2 2020-02-15T06:59:29Z +479 105 2 2020-02-15T06:59:29Z +480 105 2 2020-02-15T06:59:29Z +481 106 1 2020-02-15T06:59:29Z +482 106 1 2020-02-15T06:59:29Z +483 107 2 2020-02-15T06:59:29Z +484 107 2 2020-02-15T06:59:29Z +485 109 1 2020-02-15T06:59:29Z +486 109 1 2020-02-15T06:59:29Z +487 109 1 2020-02-15T06:59:29Z +488 109 1 2020-02-15T06:59:29Z +489 109 2 2020-02-15T06:59:29Z +490 109 2 2020-02-15T06:59:29Z +491 109 2 2020-02-15T06:59:29Z +492 109 2 2020-02-15T06:59:29Z +493 110 1 2020-02-15T06:59:29Z +494 110 1 2020-02-15T06:59:29Z +495 110 1 2020-02-15T06:59:29Z +496 110 1 2020-02-15T06:59:29Z +497 111 2 2020-02-15T06:59:29Z +498 111 2 2020-02-15T06:59:29Z +499 111 2 2020-02-15T06:59:29Z +500 111 2 2020-02-15T06:59:29Z +501 112 1 2020-02-15T06:59:29Z +502 112 1 2020-02-15T06:59:29Z +503 112 1 2020-02-15T06:59:29Z +504 112 1 2020-02-15T06:59:29Z +505 112 2 2020-02-15T06:59:29Z +506 112 2 2020-02-15T06:59:29Z +507 112 2 2020-02-15T06:59:29Z +508 113 2 2020-02-15T06:59:29Z +509 113 2 2020-02-15T06:59:29Z +510 113 2 2020-02-15T06:59:29Z +511 113 2 2020-02-15T06:59:29Z +512 114 1 2020-02-15T06:59:29Z +513 114 1 2020-02-15T06:59:29Z +514 114 1 2020-02-15T06:59:29Z +515 114 1 2020-02-15T06:59:29Z +516 114 2 2020-02-15T06:59:29Z +517 114 2 2020-02-15T06:59:29Z +518 114 2 2020-02-15T06:59:29Z +519 115 1 2020-02-15T06:59:29Z +520 115 1 2020-02-15T06:59:29Z +521 115 1 2020-02-15T06:59:29Z +522 115 2 2020-02-15T06:59:29Z +523 115 2 2020-02-15T06:59:29Z +524 115 2 2020-02-15T06:59:29Z +525 115 2 2020-02-15T06:59:29Z +526 116 1 2020-02-15T06:59:29Z +527 116 1 2020-02-15T06:59:29Z +528 116 2 2020-02-15T06:59:29Z +529 116 2 2020-02-15T06:59:29Z +530 116 2 2020-02-15T06:59:29Z +531 116 2 2020-02-15T06:59:29Z +532 117 1 2020-02-15T06:59:29Z +533 117 1 2020-02-15T06:59:29Z +534 117 1 2020-02-15T06:59:29Z +535 117 1 2020-02-15T06:59:29Z +536 117 2 2020-02-15T06:59:29Z +537 117 2 2020-02-15T06:59:29Z +538 118 1 2020-02-15T06:59:29Z +539 118 1 2020-02-15T06:59:29Z +540 118 1 2020-02-15T06:59:29Z +541 118 1 2020-02-15T06:59:29Z +542 118 2 2020-02-15T06:59:29Z +543 118 2 2020-02-15T06:59:29Z +544 119 1 2020-02-15T06:59:29Z +545 119 1 2020-02-15T06:59:29Z +546 119 1 2020-02-15T06:59:29Z +547 119 2 2020-02-15T06:59:29Z +548 119 2 2020-02-15T06:59:29Z +549 119 2 2020-02-15T06:59:29Z +550 119 2 2020-02-15T06:59:29Z +551 120 1 2020-02-15T06:59:29Z +552 120 1 2020-02-15T06:59:29Z +553 120 1 2020-02-15T06:59:29Z +554 121 1 2020-02-15T06:59:29Z +555 121 1 2020-02-15T06:59:29Z +556 121 1 2020-02-15T06:59:29Z +557 121 2 2020-02-15T06:59:29Z +558 121 2 2020-02-15T06:59:29Z +559 121 2 2020-02-15T06:59:29Z +560 122 1 2020-02-15T06:59:29Z +561 122 1 2020-02-15T06:59:29Z +562 122 1 2020-02-15T06:59:29Z +563 122 1 2020-02-15T06:59:29Z +564 122 2 2020-02-15T06:59:29Z +565 122 2 2020-02-15T06:59:29Z +566 122 2 2020-02-15T06:59:29Z +567 123 1 2020-02-15T06:59:29Z +568 123 1 2020-02-15T06:59:29Z +569 123 2 2020-02-15T06:59:29Z +570 123 2 2020-02-15T06:59:29Z +571 123 2 2020-02-15T06:59:29Z +572 124 2 2020-02-15T06:59:29Z +573 124 2 2020-02-15T06:59:29Z +574 124 2 2020-02-15T06:59:29Z +575 125 2 2020-02-15T06:59:29Z +576 125 2 2020-02-15T06:59:29Z +577 126 2 2020-02-15T06:59:29Z +578 126 2 2020-02-15T06:59:29Z +579 126 2 2020-02-15T06:59:29Z +580 127 1 2020-02-15T06:59:29Z +581 127 1 2020-02-15T06:59:29Z +582 127 1 2020-02-15T06:59:29Z +583 127 1 2020-02-15T06:59:29Z +584 127 2 2020-02-15T06:59:29Z +585 127 2 2020-02-15T06:59:29Z +586 127 2 2020-02-15T06:59:29Z +587 127 2 2020-02-15T06:59:29Z +588 129 1 2020-02-15T06:59:29Z +589 129 1 2020-02-15T06:59:29Z +590 129 1 2020-02-15T06:59:29Z +591 129 2 2020-02-15T06:59:29Z +592 129 2 2020-02-15T06:59:29Z +593 129 2 2020-02-15T06:59:29Z +594 130 1 2020-02-15T06:59:29Z +595 130 1 2020-02-15T06:59:29Z +596 130 2 2020-02-15T06:59:29Z +597 130 2 2020-02-15T06:59:29Z +598 130 2 2020-02-15T06:59:29Z +599 130 2 2020-02-15T06:59:29Z +600 131 1 2020-02-15T06:59:29Z +601 131 1 2020-02-15T06:59:29Z +602 131 1 2020-02-15T06:59:29Z +603 131 1 2020-02-15T06:59:29Z +604 131 2 2020-02-15T06:59:29Z +605 131 2 2020-02-15T06:59:29Z +606 132 1 2020-02-15T06:59:29Z +607 132 1 2020-02-15T06:59:29Z +608 132 1 2020-02-15T06:59:29Z +609 132 1 2020-02-15T06:59:29Z +610 132 2 2020-02-15T06:59:29Z +611 132 2 2020-02-15T06:59:29Z +612 133 1 2020-02-15T06:59:29Z +613 133 1 2020-02-15T06:59:29Z +614 133 2 2020-02-15T06:59:29Z +615 133 2 2020-02-15T06:59:29Z +616 134 2 2020-02-15T06:59:29Z +617 134 2 2020-02-15T06:59:29Z +618 134 2 2020-02-15T06:59:29Z +619 135 1 2020-02-15T06:59:29Z +620 135 1 2020-02-15T06:59:29Z +621 135 1 2020-02-15T06:59:29Z +622 135 2 2020-02-15T06:59:29Z +623 135 2 2020-02-15T06:59:29Z +624 135 2 2020-02-15T06:59:29Z +625 135 2 2020-02-15T06:59:29Z +626 136 1 2020-02-15T06:59:29Z +627 136 1 2020-02-15T06:59:29Z +628 136 1 2020-02-15T06:59:29Z +629 137 2 2020-02-15T06:59:29Z +630 137 2 2020-02-15T06:59:29Z +631 137 2 2020-02-15T06:59:29Z +632 137 2 2020-02-15T06:59:29Z +633 138 1 2020-02-15T06:59:29Z +634 138 1 2020-02-15T06:59:29Z +635 138 2 2020-02-15T06:59:29Z +636 138 2 2020-02-15T06:59:29Z +637 138 2 2020-02-15T06:59:29Z +638 139 1 2020-02-15T06:59:29Z +639 139 1 2020-02-15T06:59:29Z +640 139 1 2020-02-15T06:59:29Z +641 139 1 2020-02-15T06:59:29Z +642 139 2 2020-02-15T06:59:29Z +643 139 2 2020-02-15T06:59:29Z +644 140 1 2020-02-15T06:59:29Z +645 140 1 2020-02-15T06:59:29Z +646 140 2 2020-02-15T06:59:29Z +647 140 2 2020-02-15T06:59:29Z +648 140 2 2020-02-15T06:59:29Z +649 141 1 2020-02-15T06:59:29Z +650 141 1 2020-02-15T06:59:29Z +651 141 1 2020-02-15T06:59:29Z +652 141 2 2020-02-15T06:59:29Z +653 141 2 2020-02-15T06:59:29Z +654 142 1 2020-02-15T06:59:29Z +655 142 1 2020-02-15T06:59:29Z +656 142 1 2020-02-15T06:59:29Z +657 142 2 2020-02-15T06:59:29Z +658 142 2 2020-02-15T06:59:29Z +659 143 1 2020-02-15T06:59:29Z +660 143 1 2020-02-15T06:59:29Z +661 143 1 2020-02-15T06:59:29Z +662 143 1 2020-02-15T06:59:29Z +663 143 2 2020-02-15T06:59:29Z +664 143 2 2020-02-15T06:59:29Z +665 143 2 2020-02-15T06:59:29Z +666 145 2 2020-02-15T06:59:29Z +667 145 2 2020-02-15T06:59:29Z +668 145 2 2020-02-15T06:59:29Z +669 146 1 2020-02-15T06:59:29Z +670 146 1 2020-02-15T06:59:29Z +671 146 1 2020-02-15T06:59:29Z +672 147 1 2020-02-15T06:59:29Z +673 147 1 2020-02-15T06:59:29Z +674 147 1 2020-02-15T06:59:29Z +675 147 2 2020-02-15T06:59:29Z +676 147 2 2020-02-15T06:59:29Z +677 147 2 2020-02-15T06:59:29Z +678 149 1 2020-02-15T06:59:29Z +679 149 1 2020-02-15T06:59:29Z +680 149 1 2020-02-15T06:59:29Z +681 149 2 2020-02-15T06:59:29Z +682 149 2 2020-02-15T06:59:29Z +683 149 2 2020-02-15T06:59:29Z +684 150 1 2020-02-15T06:59:29Z +685 150 1 2020-02-15T06:59:29Z +686 150 2 2020-02-15T06:59:29Z +687 150 2 2020-02-15T06:59:29Z +688 150 2 2020-02-15T06:59:29Z +689 150 2 2020-02-15T06:59:29Z +690 151 1 2020-02-15T06:59:29Z +691 151 1 2020-02-15T06:59:29Z +692 151 2 2020-02-15T06:59:29Z +693 151 2 2020-02-15T06:59:29Z +694 152 1 2020-02-15T06:59:29Z +695 152 1 2020-02-15T06:59:29Z +696 152 1 2020-02-15T06:59:29Z +697 152 1 2020-02-15T06:59:29Z +698 153 1 2020-02-15T06:59:29Z +699 153 1 2020-02-15T06:59:29Z +700 153 1 2020-02-15T06:59:29Z +701 153 1 2020-02-15T06:59:29Z +702 154 1 2020-02-15T06:59:29Z +703 154 1 2020-02-15T06:59:29Z +704 154 1 2020-02-15T06:59:29Z +705 154 2 2020-02-15T06:59:29Z +706 154 2 2020-02-15T06:59:29Z +707 154 2 2020-02-15T06:59:29Z +708 154 2 2020-02-15T06:59:29Z +709 155 1 2020-02-15T06:59:29Z +710 155 1 2020-02-15T06:59:29Z +711 155 2 2020-02-15T06:59:29Z +712 155 2 2020-02-15T06:59:29Z +713 155 2 2020-02-15T06:59:29Z +714 156 2 2020-02-15T06:59:29Z +715 156 2 2020-02-15T06:59:29Z +716 157 2 2020-02-15T06:59:29Z +717 157 2 2020-02-15T06:59:29Z +718 157 2 2020-02-15T06:59:29Z +719 158 1 2020-02-15T06:59:29Z +720 158 1 2020-02-15T06:59:29Z +721 158 2 2020-02-15T06:59:29Z +722 158 2 2020-02-15T06:59:29Z +723 158 2 2020-02-15T06:59:29Z +724 159 1 2020-02-15T06:59:29Z +725 159 1 2020-02-15T06:59:29Z +726 159 1 2020-02-15T06:59:29Z +727 159 1 2020-02-15T06:59:29Z +728 159 2 2020-02-15T06:59:29Z +729 159 2 2020-02-15T06:59:29Z +730 159 2 2020-02-15T06:59:29Z +731 160 1 2020-02-15T06:59:29Z +732 160 1 2020-02-15T06:59:29Z +733 160 2 2020-02-15T06:59:29Z +734 160 2 2020-02-15T06:59:29Z +735 160 2 2020-02-15T06:59:29Z +736 161 1 2020-02-15T06:59:29Z +737 161 1 2020-02-15T06:59:29Z +738 162 1 2020-02-15T06:59:29Z +739 162 1 2020-02-15T06:59:29Z +740 162 1 2020-02-15T06:59:29Z +741 162 2 2020-02-15T06:59:29Z +742 162 2 2020-02-15T06:59:29Z +743 162 2 2020-02-15T06:59:29Z +744 162 2 2020-02-15T06:59:29Z +745 163 2 2020-02-15T06:59:29Z +746 163 2 2020-02-15T06:59:29Z +747 163 2 2020-02-15T06:59:29Z +748 164 1 2020-02-15T06:59:29Z +749 164 1 2020-02-15T06:59:29Z +750 164 2 2020-02-15T06:59:29Z +751 164 2 2020-02-15T06:59:29Z +752 164 2 2020-02-15T06:59:29Z +753 165 1 2020-02-15T06:59:29Z +754 165 1 2020-02-15T06:59:29Z +755 165 1 2020-02-15T06:59:29Z +756 165 2 2020-02-15T06:59:29Z +757 165 2 2020-02-15T06:59:29Z +758 166 1 2020-02-15T06:59:29Z +759 166 1 2020-02-15T06:59:29Z +760 166 1 2020-02-15T06:59:29Z +761 166 1 2020-02-15T06:59:29Z +762 166 2 2020-02-15T06:59:29Z +763 166 2 2020-02-15T06:59:29Z +764 167 1 2020-02-15T06:59:29Z +765 167 1 2020-02-15T06:59:29Z +766 167 1 2020-02-15T06:59:29Z +767 167 1 2020-02-15T06:59:29Z +768 167 2 2020-02-15T06:59:29Z +769 167 2 2020-02-15T06:59:29Z +770 167 2 2020-02-15T06:59:29Z +771 168 1 2020-02-15T06:59:30Z +772 168 1 2020-02-15T06:59:30Z +773 169 1 2020-02-15T06:59:30Z +774 169 1 2020-02-15T06:59:30Z +775 169 2 2020-02-15T06:59:30Z +776 169 2 2020-02-15T06:59:30Z +777 170 1 2020-02-15T06:59:30Z +778 170 1 2020-02-15T06:59:30Z +779 170 2 2020-02-15T06:59:30Z +780 170 2 2020-02-15T06:59:30Z +781 170 2 2020-02-15T06:59:30Z +782 170 2 2020-02-15T06:59:30Z +783 172 1 2020-02-15T06:59:30Z +784 172 1 2020-02-15T06:59:30Z +785 172 1 2020-02-15T06:59:30Z +786 172 1 2020-02-15T06:59:30Z +787 172 2 2020-02-15T06:59:30Z +788 172 2 2020-02-15T06:59:30Z +789 172 2 2020-02-15T06:59:30Z +790 173 1 2020-02-15T06:59:30Z +791 173 1 2020-02-15T06:59:30Z +792 173 1 2020-02-15T06:59:30Z +793 173 2 2020-02-15T06:59:30Z +794 173 2 2020-02-15T06:59:30Z +795 174 1 2020-02-15T06:59:30Z +796 174 1 2020-02-15T06:59:30Z +797 174 1 2020-02-15T06:59:30Z +798 174 1 2020-02-15T06:59:30Z +799 174 2 2020-02-15T06:59:30Z +800 174 2 2020-02-15T06:59:30Z +801 174 2 2020-02-15T06:59:30Z +802 174 2 2020-02-15T06:59:30Z +803 175 1 2020-02-15T06:59:30Z +804 175 1 2020-02-15T06:59:30Z +805 175 2 2020-02-15T06:59:30Z +806 175 2 2020-02-15T06:59:30Z +807 175 2 2020-02-15T06:59:30Z +808 176 1 2020-02-15T06:59:30Z +809 176 1 2020-02-15T06:59:30Z +810 176 2 2020-02-15T06:59:30Z +811 176 2 2020-02-15T06:59:30Z +812 176 2 2020-02-15T06:59:30Z +813 176 2 2020-02-15T06:59:30Z +814 177 2 2020-02-15T06:59:30Z +815 177 2 2020-02-15T06:59:30Z +816 177 2 2020-02-15T06:59:30Z +817 178 1 2020-02-15T06:59:30Z +818 178 1 2020-02-15T06:59:30Z +819 179 1 2020-02-15T06:59:30Z +820 179 1 2020-02-15T06:59:30Z +821 179 1 2020-02-15T06:59:30Z +822 179 1 2020-02-15T06:59:30Z +823 180 2 2020-02-15T06:59:30Z +824 180 2 2020-02-15T06:59:30Z +825 181 1 2020-02-15T06:59:30Z +826 181 1 2020-02-15T06:59:30Z +827 181 1 2020-02-15T06:59:30Z +828 181 2 2020-02-15T06:59:30Z +829 181 2 2020-02-15T06:59:30Z +830 181 2 2020-02-15T06:59:30Z +831 181 2 2020-02-15T06:59:30Z +832 182 1 2020-02-15T06:59:30Z +833 182 1 2020-02-15T06:59:30Z +834 183 1 2020-02-15T06:59:30Z +835 183 1 2020-02-15T06:59:30Z +836 183 1 2020-02-15T06:59:30Z +837 183 2 2020-02-15T06:59:30Z +838 183 2 2020-02-15T06:59:30Z +839 183 2 2020-02-15T06:59:30Z +840 184 1 2020-02-15T06:59:30Z +841 184 1 2020-02-15T06:59:30Z +842 184 2 2020-02-15T06:59:30Z +843 184 2 2020-02-15T06:59:30Z +844 184 2 2020-02-15T06:59:30Z +845 185 1 2020-02-15T06:59:30Z +846 185 1 2020-02-15T06:59:30Z +847 186 1 2020-02-15T06:59:30Z +848 186 1 2020-02-15T06:59:30Z +849 186 2 2020-02-15T06:59:30Z +850 186 2 2020-02-15T06:59:30Z +851 187 2 2020-02-15T06:59:30Z +852 187 2 2020-02-15T06:59:30Z +853 187 2 2020-02-15T06:59:30Z +854 188 1 2020-02-15T06:59:30Z +855 188 1 2020-02-15T06:59:30Z +856 188 1 2020-02-15T06:59:30Z +857 189 1 2020-02-15T06:59:30Z +858 189 1 2020-02-15T06:59:30Z +859 189 2 2020-02-15T06:59:30Z +860 189 2 2020-02-15T06:59:30Z +861 189 2 2020-02-15T06:59:30Z +862 189 2 2020-02-15T06:59:30Z +863 190 2 2020-02-15T06:59:30Z +864 190 2 2020-02-15T06:59:30Z +865 190 2 2020-02-15T06:59:30Z +866 190 2 2020-02-15T06:59:30Z +867 191 1 2020-02-15T06:59:30Z +868 191 1 2020-02-15T06:59:30Z +869 191 1 2020-02-15T06:59:30Z +870 191 2 2020-02-15T06:59:30Z +871 191 2 2020-02-15T06:59:30Z +872 191 2 2020-02-15T06:59:30Z +873 193 1 2020-02-15T06:59:30Z +874 193 1 2020-02-15T06:59:30Z +875 193 1 2020-02-15T06:59:30Z +876 193 1 2020-02-15T06:59:30Z +877 193 2 2020-02-15T06:59:30Z +878 193 2 2020-02-15T06:59:30Z +879 193 2 2020-02-15T06:59:30Z +880 193 2 2020-02-15T06:59:30Z +881 194 1 2020-02-15T06:59:30Z +882 194 1 2020-02-15T06:59:30Z +883 194 2 2020-02-15T06:59:30Z +884 194 2 2020-02-15T06:59:30Z +885 196 1 2020-02-15T06:59:30Z +886 196 1 2020-02-15T06:59:30Z +887 197 1 2020-02-15T06:59:30Z +888 197 1 2020-02-15T06:59:30Z +889 199 1 2020-02-15T06:59:30Z +890 199 1 2020-02-15T06:59:30Z +891 199 1 2020-02-15T06:59:30Z +892 199 1 2020-02-15T06:59:30Z +893 199 2 2020-02-15T06:59:30Z +894 199 2 2020-02-15T06:59:30Z +895 199 2 2020-02-15T06:59:30Z +896 199 2 2020-02-15T06:59:30Z +897 200 1 2020-02-15T06:59:30Z +898 200 1 2020-02-15T06:59:30Z +899 200 1 2020-02-15T06:59:30Z +900 200 1 2020-02-15T06:59:30Z +901 200 2 2020-02-15T06:59:30Z +902 200 2 2020-02-15T06:59:30Z +903 200 2 2020-02-15T06:59:30Z +904 200 2 2020-02-15T06:59:30Z +905 201 1 2020-02-15T06:59:30Z +906 201 1 2020-02-15T06:59:30Z +907 201 1 2020-02-15T06:59:30Z +908 201 1 2020-02-15T06:59:30Z +909 202 1 2020-02-15T06:59:30Z +910 202 1 2020-02-15T06:59:30Z +911 202 1 2020-02-15T06:59:30Z +912 203 2 2020-02-15T06:59:30Z +913 203 2 2020-02-15T06:59:30Z +914 203 2 2020-02-15T06:59:30Z +915 203 2 2020-02-15T06:59:30Z +916 204 1 2020-02-15T06:59:30Z +917 204 1 2020-02-15T06:59:30Z +918 204 1 2020-02-15T06:59:30Z +919 204 1 2020-02-15T06:59:30Z +920 204 2 2020-02-15T06:59:30Z +921 204 2 2020-02-15T06:59:30Z +922 205 1 2020-02-15T06:59:30Z +923 205 1 2020-02-15T06:59:30Z +924 205 1 2020-02-15T06:59:30Z +925 205 1 2020-02-15T06:59:30Z +926 206 1 2020-02-15T06:59:30Z +927 206 1 2020-02-15T06:59:30Z +928 206 1 2020-02-15T06:59:30Z +929 206 1 2020-02-15T06:59:30Z +930 206 2 2020-02-15T06:59:30Z +931 206 2 2020-02-15T06:59:30Z +932 206 2 2020-02-15T06:59:30Z +933 206 2 2020-02-15T06:59:30Z +934 207 1 2020-02-15T06:59:30Z +935 207 1 2020-02-15T06:59:30Z +936 207 1 2020-02-15T06:59:30Z +937 207 1 2020-02-15T06:59:30Z +938 208 1 2020-02-15T06:59:30Z +939 208 1 2020-02-15T06:59:30Z +940 208 1 2020-02-15T06:59:30Z +941 209 1 2020-02-15T06:59:30Z +942 209 1 2020-02-15T06:59:30Z +943 209 1 2020-02-15T06:59:30Z +944 209 1 2020-02-15T06:59:30Z +945 210 2 2020-02-15T06:59:30Z +946 210 2 2020-02-15T06:59:30Z +947 210 2 2020-02-15T06:59:30Z +948 211 1 2020-02-15T06:59:30Z +949 211 1 2020-02-15T06:59:30Z +950 212 1 2020-02-15T06:59:30Z +951 212 1 2020-02-15T06:59:30Z +952 212 1 2020-02-15T06:59:30Z +953 212 2 2020-02-15T06:59:30Z +954 212 2 2020-02-15T06:59:30Z +955 213 1 2020-02-15T06:59:30Z +956 213 1 2020-02-15T06:59:30Z +957 213 1 2020-02-15T06:59:30Z +958 213 1 2020-02-15T06:59:30Z +959 214 2 2020-02-15T06:59:30Z +960 214 2 2020-02-15T06:59:30Z +961 214 2 2020-02-15T06:59:30Z +962 214 2 2020-02-15T06:59:30Z +963 215 1 2020-02-15T06:59:30Z +964 215 1 2020-02-15T06:59:30Z +965 215 1 2020-02-15T06:59:30Z +966 215 2 2020-02-15T06:59:30Z +967 215 2 2020-02-15T06:59:30Z +968 215 2 2020-02-15T06:59:30Z +969 216 1 2020-02-15T06:59:30Z +970 216 1 2020-02-15T06:59:30Z +971 216 2 2020-02-15T06:59:30Z +972 216 2 2020-02-15T06:59:30Z +973 216 2 2020-02-15T06:59:30Z +974 218 1 2020-02-15T06:59:30Z +975 218 1 2020-02-15T06:59:30Z +976 218 1 2020-02-15T06:59:30Z +977 218 1 2020-02-15T06:59:30Z +978 218 2 2020-02-15T06:59:30Z +979 218 2 2020-02-15T06:59:30Z +980 218 2 2020-02-15T06:59:30Z +981 219 1 2020-02-15T06:59:30Z +982 219 1 2020-02-15T06:59:30Z +983 219 1 2020-02-15T06:59:30Z +984 219 1 2020-02-15T06:59:30Z +985 220 1 2020-02-15T06:59:30Z +986 220 1 2020-02-15T06:59:30Z +987 220 1 2020-02-15T06:59:30Z +988 220 1 2020-02-15T06:59:30Z +989 220 2 2020-02-15T06:59:30Z +990 220 2 2020-02-15T06:59:30Z +991 220 2 2020-02-15T06:59:30Z +992 220 2 2020-02-15T06:59:30Z +993 222 1 2020-02-15T06:59:30Z +994 222 1 2020-02-15T06:59:30Z +995 222 2 2020-02-15T06:59:30Z +996 222 2 2020-02-15T06:59:30Z +997 222 2 2020-02-15T06:59:30Z +998 222 2 2020-02-15T06:59:30Z +999 223 2 2020-02-15T06:59:30Z +1000 223 2 2020-02-15T06:59:30Z +1001 224 1 2020-02-15T06:59:30Z +1002 224 1 2020-02-15T06:59:30Z +1003 225 1 2020-02-15T06:59:30Z +1004 225 1 2020-02-15T06:59:30Z +1005 225 1 2020-02-15T06:59:30Z +1006 226 1 2020-02-15T06:59:30Z +1007 226 1 2020-02-15T06:59:30Z +1008 226 2 2020-02-15T06:59:30Z +1009 226 2 2020-02-15T06:59:30Z +1010 226 2 2020-02-15T06:59:30Z +1011 227 1 2020-02-15T06:59:30Z +1012 227 1 2020-02-15T06:59:30Z +1013 227 1 2020-02-15T06:59:30Z +1014 227 2 2020-02-15T06:59:30Z +1015 227 2 2020-02-15T06:59:30Z +1016 228 1 2020-02-15T06:59:30Z +1017 228 1 2020-02-15T06:59:30Z +1018 228 1 2020-02-15T06:59:30Z +1019 228 2 2020-02-15T06:59:30Z +1020 228 2 2020-02-15T06:59:30Z +1021 228 2 2020-02-15T06:59:30Z +1022 228 2 2020-02-15T06:59:30Z +1023 229 1 2020-02-15T06:59:30Z +1024 229 1 2020-02-15T06:59:30Z +1025 229 2 2020-02-15T06:59:30Z +1026 229 2 2020-02-15T06:59:30Z +1027 230 1 2020-02-15T06:59:30Z +1028 230 1 2020-02-15T06:59:30Z +1029 231 1 2020-02-15T06:59:30Z +1030 231 1 2020-02-15T06:59:30Z +1031 231 1 2020-02-15T06:59:30Z +1032 231 1 2020-02-15T06:59:30Z +1033 231 2 2020-02-15T06:59:30Z +1034 231 2 2020-02-15T06:59:30Z +1035 231 2 2020-02-15T06:59:30Z +1036 231 2 2020-02-15T06:59:30Z +1037 232 1 2020-02-15T06:59:30Z +1038 232 1 2020-02-15T06:59:30Z +1039 232 1 2020-02-15T06:59:30Z +1040 232 2 2020-02-15T06:59:30Z +1041 232 2 2020-02-15T06:59:30Z +1042 233 1 2020-02-15T06:59:30Z +1043 233 1 2020-02-15T06:59:30Z +1044 233 1 2020-02-15T06:59:30Z +1045 233 1 2020-02-15T06:59:30Z +1046 233 2 2020-02-15T06:59:30Z +1047 233 2 2020-02-15T06:59:30Z +1048 234 1 2020-02-15T06:59:30Z +1049 234 1 2020-02-15T06:59:30Z +1050 234 1 2020-02-15T06:59:30Z +1051 234 1 2020-02-15T06:59:30Z +1052 234 2 2020-02-15T06:59:30Z +1053 234 2 2020-02-15T06:59:30Z +1054 234 2 2020-02-15T06:59:30Z +1055 235 1 2020-02-15T06:59:30Z +1056 235 1 2020-02-15T06:59:30Z +1057 235 2 2020-02-15T06:59:30Z +1058 235 2 2020-02-15T06:59:30Z +1059 235 2 2020-02-15T06:59:30Z +1060 235 2 2020-02-15T06:59:30Z +1061 236 2 2020-02-15T06:59:30Z +1062 236 2 2020-02-15T06:59:30Z +1063 236 2 2020-02-15T06:59:30Z +1064 236 2 2020-02-15T06:59:30Z +1065 237 1 2020-02-15T06:59:30Z +1066 237 1 2020-02-15T06:59:30Z +1067 238 1 2020-02-15T06:59:30Z +1068 238 1 2020-02-15T06:59:30Z +1069 239 1 2020-02-15T06:59:30Z +1070 239 1 2020-02-15T06:59:30Z +1071 239 1 2020-02-15T06:59:30Z +1072 239 1 2020-02-15T06:59:30Z +1073 239 2 2020-02-15T06:59:30Z +1074 239 2 2020-02-15T06:59:30Z +1075 239 2 2020-02-15T06:59:30Z +1076 239 2 2020-02-15T06:59:30Z +1077 240 2 2020-02-15T06:59:30Z +1078 240 2 2020-02-15T06:59:30Z +1079 240 2 2020-02-15T06:59:30Z +1080 241 1 2020-02-15T06:59:30Z +1081 241 1 2020-02-15T06:59:30Z +1082 241 1 2020-02-15T06:59:30Z +1083 241 1 2020-02-15T06:59:30Z +1084 242 1 2020-02-15T06:59:30Z +1085 242 1 2020-02-15T06:59:30Z +1086 242 2 2020-02-15T06:59:30Z +1087 242 2 2020-02-15T06:59:30Z +1088 242 2 2020-02-15T06:59:30Z +1089 243 1 2020-02-15T06:59:30Z +1090 243 1 2020-02-15T06:59:30Z +1091 243 2 2020-02-15T06:59:30Z +1092 243 2 2020-02-15T06:59:30Z +1093 243 2 2020-02-15T06:59:30Z +1094 243 2 2020-02-15T06:59:30Z +1095 244 1 2020-02-15T06:59:30Z +1096 244 1 2020-02-15T06:59:30Z +1097 244 1 2020-02-15T06:59:30Z +1098 244 1 2020-02-15T06:59:30Z +1099 244 2 2020-02-15T06:59:30Z +1100 244 2 2020-02-15T06:59:30Z +1101 244 2 2020-02-15T06:59:30Z +1102 245 1 2020-02-15T06:59:30Z +1103 245 1 2020-02-15T06:59:30Z +1104 245 1 2020-02-15T06:59:30Z +1105 245 2 2020-02-15T06:59:30Z +1106 245 2 2020-02-15T06:59:30Z +1107 245 2 2020-02-15T06:59:30Z +1108 245 2 2020-02-15T06:59:30Z +1109 246 2 2020-02-15T06:59:30Z +1110 246 2 2020-02-15T06:59:30Z +1111 246 2 2020-02-15T06:59:30Z +1112 247 1 2020-02-15T06:59:30Z +1113 247 1 2020-02-15T06:59:30Z +1114 247 1 2020-02-15T06:59:30Z +1115 247 2 2020-02-15T06:59:30Z +1116 247 2 2020-02-15T06:59:30Z +1117 247 2 2020-02-15T06:59:30Z +1118 247 2 2020-02-15T06:59:30Z +1119 248 2 2020-02-15T06:59:30Z +1120 248 2 2020-02-15T06:59:30Z +1121 249 1 2020-02-15T06:59:30Z +1122 249 1 2020-02-15T06:59:30Z +1123 249 2 2020-02-15T06:59:30Z +1124 249 2 2020-02-15T06:59:30Z +1125 249 2 2020-02-15T06:59:30Z +1126 249 2 2020-02-15T06:59:30Z +1127 250 2 2020-02-15T06:59:30Z +1128 250 2 2020-02-15T06:59:30Z +1129 250 2 2020-02-15T06:59:30Z +1130 250 2 2020-02-15T06:59:30Z +1131 251 1 2020-02-15T06:59:30Z +1132 251 1 2020-02-15T06:59:30Z +1133 251 2 2020-02-15T06:59:30Z +1134 251 2 2020-02-15T06:59:30Z +1135 251 2 2020-02-15T06:59:30Z +1136 252 1 2020-02-15T06:59:30Z +1137 252 1 2020-02-15T06:59:30Z +1138 252 1 2020-02-15T06:59:30Z +1139 252 2 2020-02-15T06:59:30Z +1140 252 2 2020-02-15T06:59:30Z +1141 252 2 2020-02-15T06:59:30Z +1142 253 1 2020-02-15T06:59:30Z +1143 253 1 2020-02-15T06:59:30Z +1144 253 1 2020-02-15T06:59:30Z +1145 253 1 2020-02-15T06:59:30Z +1146 253 2 2020-02-15T06:59:30Z +1147 253 2 2020-02-15T06:59:30Z +1148 254 1 2020-02-15T06:59:30Z +1149 254 1 2020-02-15T06:59:30Z +1150 254 2 2020-02-15T06:59:30Z +1151 254 2 2020-02-15T06:59:30Z +1152 254 2 2020-02-15T06:59:30Z +1153 255 1 2020-02-15T06:59:30Z +1154 255 1 2020-02-15T06:59:30Z +1155 255 1 2020-02-15T06:59:30Z +1156 255 1 2020-02-15T06:59:30Z +1157 255 2 2020-02-15T06:59:30Z +1158 255 2 2020-02-15T06:59:30Z +1159 256 2 2020-02-15T06:59:30Z +1160 256 2 2020-02-15T06:59:30Z +1161 256 2 2020-02-15T06:59:30Z +1162 257 2 2020-02-15T06:59:30Z +1163 257 2 2020-02-15T06:59:30Z +1164 257 2 2020-02-15T06:59:30Z +1165 258 2 2020-02-15T06:59:30Z +1166 258 2 2020-02-15T06:59:30Z +1167 258 2 2020-02-15T06:59:30Z +1168 258 2 2020-02-15T06:59:30Z +1169 259 1 2020-02-15T06:59:30Z +1170 259 1 2020-02-15T06:59:30Z +1171 260 2 2020-02-15T06:59:30Z +1172 260 2 2020-02-15T06:59:30Z +1173 260 2 2020-02-15T06:59:30Z +1174 260 2 2020-02-15T06:59:30Z +1175 261 1 2020-02-15T06:59:30Z +1176 261 1 2020-02-15T06:59:30Z +1177 262 2 2020-02-15T06:59:30Z +1178 262 2 2020-02-15T06:59:30Z +1179 263 1 2020-02-15T06:59:30Z +1180 263 1 2020-02-15T06:59:30Z +1181 263 1 2020-02-15T06:59:30Z +1182 263 1 2020-02-15T06:59:30Z +1183 263 2 2020-02-15T06:59:30Z +1184 263 2 2020-02-15T06:59:30Z +1185 263 2 2020-02-15T06:59:30Z +1186 264 2 2020-02-15T06:59:30Z +1187 264 2 2020-02-15T06:59:30Z +1188 265 1 2020-02-15T06:59:30Z +1189 265 1 2020-02-15T06:59:30Z +1190 265 1 2020-02-15T06:59:30Z +1191 265 1 2020-02-15T06:59:30Z +1192 266 1 2020-02-15T06:59:30Z +1193 266 1 2020-02-15T06:59:30Z +1194 266 1 2020-02-15T06:59:30Z +1195 266 1 2020-02-15T06:59:30Z +1196 266 2 2020-02-15T06:59:30Z +1197 266 2 2020-02-15T06:59:30Z +1198 266 2 2020-02-15T06:59:30Z +1199 266 2 2020-02-15T06:59:30Z +1200 267 1 2020-02-15T06:59:30Z +1201 267 1 2020-02-15T06:59:30Z +1202 267 1 2020-02-15T06:59:30Z +1203 267 1 2020-02-15T06:59:30Z +1204 267 2 2020-02-15T06:59:30Z +1205 267 2 2020-02-15T06:59:30Z +1206 268 2 2020-02-15T06:59:30Z +1207 268 2 2020-02-15T06:59:30Z +1208 269 1 2020-02-15T06:59:30Z +1209 269 1 2020-02-15T06:59:30Z +1210 269 2 2020-02-15T06:59:30Z +1211 269 2 2020-02-15T06:59:30Z +1212 269 2 2020-02-15T06:59:30Z +1213 269 2 2020-02-15T06:59:30Z +1214 270 1 2020-02-15T06:59:30Z +1215 270 1 2020-02-15T06:59:30Z +1216 270 1 2020-02-15T06:59:30Z +1217 270 2 2020-02-15T06:59:30Z +1218 270 2 2020-02-15T06:59:30Z +1219 270 2 2020-02-15T06:59:30Z +1220 270 2 2020-02-15T06:59:30Z +1221 271 1 2020-02-15T06:59:30Z +1222 271 1 2020-02-15T06:59:30Z +1223 271 1 2020-02-15T06:59:30Z +1224 271 2 2020-02-15T06:59:30Z +1225 271 2 2020-02-15T06:59:30Z +1226 272 1 2020-02-15T06:59:30Z +1227 272 1 2020-02-15T06:59:30Z +1228 272 1 2020-02-15T06:59:30Z +1229 272 1 2020-02-15T06:59:30Z +1230 273 1 2020-02-15T06:59:30Z +1231 273 1 2020-02-15T06:59:30Z +1232 273 1 2020-02-15T06:59:30Z +1233 273 1 2020-02-15T06:59:30Z +1234 273 2 2020-02-15T06:59:30Z +1235 273 2 2020-02-15T06:59:30Z +1236 273 2 2020-02-15T06:59:30Z +1237 274 1 2020-02-15T06:59:30Z +1238 274 1 2020-02-15T06:59:30Z +1239 274 1 2020-02-15T06:59:30Z +1240 274 2 2020-02-15T06:59:30Z +1241 274 2 2020-02-15T06:59:30Z +1242 274 2 2020-02-15T06:59:30Z +1243 274 2 2020-02-15T06:59:30Z +1244 275 1 2020-02-15T06:59:30Z +1245 275 1 2020-02-15T06:59:30Z +1246 275 1 2020-02-15T06:59:30Z +1247 275 2 2020-02-15T06:59:30Z +1248 275 2 2020-02-15T06:59:30Z +1249 276 1 2020-02-15T06:59:30Z +1250 276 1 2020-02-15T06:59:30Z +1251 276 1 2020-02-15T06:59:30Z +1252 276 1 2020-02-15T06:59:30Z +1253 277 1 2020-02-15T06:59:30Z +1254 277 1 2020-02-15T06:59:30Z +1255 277 1 2020-02-15T06:59:30Z +1256 278 1 2020-02-15T06:59:30Z +1257 278 1 2020-02-15T06:59:30Z +1258 279 1 2020-02-15T06:59:30Z +1259 279 1 2020-02-15T06:59:30Z +1260 280 1 2020-02-15T06:59:30Z +1261 280 1 2020-02-15T06:59:30Z +1262 280 1 2020-02-15T06:59:30Z +1263 280 1 2020-02-15T06:59:30Z +1264 280 2 2020-02-15T06:59:30Z +1265 280 2 2020-02-15T06:59:30Z +1266 281 1 2020-02-15T06:59:30Z +1267 281 1 2020-02-15T06:59:30Z +1268 281 2 2020-02-15T06:59:30Z +1269 281 2 2020-02-15T06:59:30Z +1270 281 2 2020-02-15T06:59:30Z +1271 281 2 2020-02-15T06:59:30Z +1272 282 1 2020-02-15T06:59:30Z +1273 282 1 2020-02-15T06:59:30Z +1274 282 1 2020-02-15T06:59:30Z +1275 282 2 2020-02-15T06:59:30Z +1276 282 2 2020-02-15T06:59:30Z +1277 282 2 2020-02-15T06:59:30Z +1278 283 1 2020-02-15T06:59:30Z +1279 283 1 2020-02-15T06:59:30Z +1280 283 1 2020-02-15T06:59:30Z +1281 284 1 2020-02-15T06:59:30Z +1282 284 1 2020-02-15T06:59:30Z +1283 284 1 2020-02-15T06:59:30Z +1284 284 2 2020-02-15T06:59:30Z +1285 284 2 2020-02-15T06:59:30Z +1286 284 2 2020-02-15T06:59:30Z +1287 284 2 2020-02-15T06:59:30Z +1288 285 1 2020-02-15T06:59:30Z +1289 285 1 2020-02-15T06:59:30Z +1290 285 1 2020-02-15T06:59:30Z +1291 285 2 2020-02-15T06:59:30Z +1292 285 2 2020-02-15T06:59:30Z +1293 285 2 2020-02-15T06:59:30Z +1294 285 2 2020-02-15T06:59:30Z +1295 286 1 2020-02-15T06:59:30Z +1296 286 1 2020-02-15T06:59:30Z +1297 286 2 2020-02-15T06:59:30Z +1298 286 2 2020-02-15T06:59:30Z +1299 286 2 2020-02-15T06:59:30Z +1300 287 1 2020-02-15T06:59:30Z +1301 287 1 2020-02-15T06:59:30Z +1302 287 2 2020-02-15T06:59:30Z +1303 287 2 2020-02-15T06:59:30Z +1304 288 1 2020-02-15T06:59:30Z +1305 288 1 2020-02-15T06:59:30Z +1306 288 2 2020-02-15T06:59:30Z +1307 288 2 2020-02-15T06:59:30Z +1308 288 2 2020-02-15T06:59:30Z +1309 288 2 2020-02-15T06:59:30Z +1310 289 1 2020-02-15T06:59:30Z +1311 289 1 2020-02-15T06:59:30Z +1312 290 1 2020-02-15T06:59:30Z +1313 290 1 2020-02-15T06:59:30Z +1314 290 1 2020-02-15T06:59:30Z +1315 291 1 2020-02-15T06:59:30Z +1316 291 1 2020-02-15T06:59:30Z +1317 291 1 2020-02-15T06:59:30Z +1318 291 1 2020-02-15T06:59:30Z +1319 292 1 2020-02-15T06:59:30Z +1320 292 1 2020-02-15T06:59:30Z +1321 292 1 2020-02-15T06:59:30Z +1322 292 2 2020-02-15T06:59:30Z +1323 292 2 2020-02-15T06:59:30Z +1324 292 2 2020-02-15T06:59:30Z +1325 293 1 2020-02-15T06:59:30Z +1326 293 1 2020-02-15T06:59:30Z +1327 293 2 2020-02-15T06:59:30Z +1328 293 2 2020-02-15T06:59:30Z +1329 293 2 2020-02-15T06:59:30Z +1330 294 1 2020-02-15T06:59:30Z +1331 294 1 2020-02-15T06:59:30Z +1332 294 2 2020-02-15T06:59:30Z +1333 294 2 2020-02-15T06:59:30Z +1334 294 2 2020-02-15T06:59:30Z +1335 295 1 2020-02-15T06:59:30Z +1336 295 1 2020-02-15T06:59:30Z +1337 295 1 2020-02-15T06:59:30Z +1338 295 1 2020-02-15T06:59:30Z +1339 295 2 2020-02-15T06:59:30Z +1340 295 2 2020-02-15T06:59:30Z +1341 295 2 2020-02-15T06:59:30Z +1342 295 2 2020-02-15T06:59:30Z +1343 296 1 2020-02-15T06:59:30Z +1344 296 1 2020-02-15T06:59:30Z +1345 296 1 2020-02-15T06:59:30Z +1346 296 1 2020-02-15T06:59:30Z +1347 297 2 2020-02-15T06:59:30Z +1348 297 2 2020-02-15T06:59:30Z +1349 298 1 2020-02-15T06:59:30Z +1350 298 1 2020-02-15T06:59:30Z +1351 298 2 2020-02-15T06:59:30Z +1352 298 2 2020-02-15T06:59:30Z +1353 298 2 2020-02-15T06:59:30Z +1354 299 1 2020-02-15T06:59:30Z +1355 299 1 2020-02-15T06:59:30Z +1356 299 1 2020-02-15T06:59:30Z +1357 299 1 2020-02-15T06:59:30Z +1358 300 1 2020-02-15T06:59:30Z +1359 300 1 2020-02-15T06:59:30Z +1360 300 2 2020-02-15T06:59:30Z +1361 300 2 2020-02-15T06:59:30Z +1362 300 2 2020-02-15T06:59:30Z +1363 300 2 2020-02-15T06:59:30Z +1364 301 1 2020-02-15T06:59:30Z +1365 301 1 2020-02-15T06:59:30Z +1366 301 1 2020-02-15T06:59:30Z +1367 301 1 2020-02-15T06:59:30Z +1368 301 2 2020-02-15T06:59:30Z +1369 301 2 2020-02-15T06:59:30Z +1370 301 2 2020-02-15T06:59:30Z +1371 301 2 2020-02-15T06:59:30Z +1372 302 1 2020-02-15T06:59:30Z +1373 302 1 2020-02-15T06:59:30Z +1374 302 2 2020-02-15T06:59:30Z +1375 302 2 2020-02-15T06:59:30Z +1376 302 2 2020-02-15T06:59:30Z +1377 302 2 2020-02-15T06:59:30Z +1378 303 1 2020-02-15T06:59:30Z +1379 303 1 2020-02-15T06:59:30Z +1380 303 1 2020-02-15T06:59:30Z +1381 303 1 2020-02-15T06:59:30Z +1382 303 2 2020-02-15T06:59:30Z +1383 303 2 2020-02-15T06:59:30Z +1384 304 1 2020-02-15T06:59:30Z +1385 304 1 2020-02-15T06:59:30Z +1386 304 1 2020-02-15T06:59:30Z +1387 304 1 2020-02-15T06:59:30Z +1388 304 2 2020-02-15T06:59:30Z +1389 304 2 2020-02-15T06:59:30Z +1390 305 1 2020-02-15T06:59:30Z +1391 305 1 2020-02-15T06:59:30Z +1392 305 1 2020-02-15T06:59:30Z +1393 305 1 2020-02-15T06:59:30Z +1394 305 2 2020-02-15T06:59:30Z +1395 305 2 2020-02-15T06:59:30Z +1396 305 2 2020-02-15T06:59:30Z +1397 306 1 2020-02-15T06:59:30Z +1398 306 1 2020-02-15T06:59:30Z +1399 306 1 2020-02-15T06:59:30Z +1400 307 1 2020-02-15T06:59:30Z +1401 307 1 2020-02-15T06:59:30Z +1402 307 1 2020-02-15T06:59:30Z +1403 307 2 2020-02-15T06:59:30Z +1404 307 2 2020-02-15T06:59:30Z +1405 307 2 2020-02-15T06:59:30Z +1406 308 1 2020-02-15T06:59:30Z +1407 308 1 2020-02-15T06:59:30Z +1408 308 2 2020-02-15T06:59:30Z +1409 308 2 2020-02-15T06:59:30Z +1410 309 1 2020-02-15T06:59:30Z +1411 309 1 2020-02-15T06:59:30Z +1412 309 2 2020-02-15T06:59:30Z +1413 309 2 2020-02-15T06:59:30Z +1414 309 2 2020-02-15T06:59:30Z +1415 309 2 2020-02-15T06:59:30Z +1416 310 1 2020-02-15T06:59:30Z +1417 310 1 2020-02-15T06:59:30Z +1418 311 1 2020-02-15T06:59:30Z +1419 311 1 2020-02-15T06:59:30Z +1420 311 1 2020-02-15T06:59:30Z +1421 311 2 2020-02-15T06:59:30Z +1422 311 2 2020-02-15T06:59:30Z +1423 311 2 2020-02-15T06:59:30Z +1424 311 2 2020-02-15T06:59:30Z +1425 312 2 2020-02-15T06:59:30Z +1426 312 2 2020-02-15T06:59:30Z +1427 312 2 2020-02-15T06:59:30Z +1428 313 1 2020-02-15T06:59:30Z +1429 313 1 2020-02-15T06:59:30Z +1430 313 1 2020-02-15T06:59:30Z +1431 313 1 2020-02-15T06:59:30Z +1432 313 2 2020-02-15T06:59:30Z +1433 313 2 2020-02-15T06:59:30Z +1434 314 1 2020-02-15T06:59:30Z +1435 314 1 2020-02-15T06:59:30Z +1436 314 2 2020-02-15T06:59:30Z +1437 314 2 2020-02-15T06:59:30Z +1438 314 2 2020-02-15T06:59:30Z +1439 314 2 2020-02-15T06:59:30Z +1440 315 2 2020-02-15T06:59:30Z +1441 315 2 2020-02-15T06:59:30Z +1442 315 2 2020-02-15T06:59:30Z +1443 316 2 2020-02-15T06:59:30Z +1444 316 2 2020-02-15T06:59:30Z +1445 317 1 2020-02-15T06:59:30Z +1446 317 1 2020-02-15T06:59:30Z +1447 317 1 2020-02-15T06:59:30Z +1448 317 1 2020-02-15T06:59:30Z +1449 317 2 2020-02-15T06:59:30Z +1450 317 2 2020-02-15T06:59:30Z +1451 317 2 2020-02-15T06:59:30Z +1452 319 1 2020-02-15T06:59:30Z +1453 319 1 2020-02-15T06:59:30Z +1454 319 1 2020-02-15T06:59:30Z +1455 319 2 2020-02-15T06:59:30Z +1456 319 2 2020-02-15T06:59:30Z +1457 319 2 2020-02-15T06:59:30Z +1458 319 2 2020-02-15T06:59:30Z +1459 320 1 2020-02-15T06:59:30Z +1460 320 1 2020-02-15T06:59:30Z +1461 320 1 2020-02-15T06:59:30Z +1462 320 2 2020-02-15T06:59:30Z +1463 320 2 2020-02-15T06:59:30Z +1464 320 2 2020-02-15T06:59:30Z +1465 320 2 2020-02-15T06:59:30Z +1466 321 1 2020-02-15T06:59:30Z +1467 321 1 2020-02-15T06:59:30Z +1468 321 1 2020-02-15T06:59:30Z +1469 321 1 2020-02-15T06:59:30Z +1470 322 1 2020-02-15T06:59:30Z +1471 322 1 2020-02-15T06:59:30Z +1472 322 1 2020-02-15T06:59:30Z +1473 322 1 2020-02-15T06:59:30Z +1474 322 2 2020-02-15T06:59:30Z +1475 322 2 2020-02-15T06:59:30Z +1476 323 2 2020-02-15T06:59:30Z +1477 323 2 2020-02-15T06:59:30Z +1478 323 2 2020-02-15T06:59:30Z +1479 323 2 2020-02-15T06:59:30Z +1480 324 1 2020-02-15T06:59:30Z +1481 324 1 2020-02-15T06:59:30Z +1482 324 1 2020-02-15T06:59:30Z +1483 324 2 2020-02-15T06:59:30Z +1484 324 2 2020-02-15T06:59:30Z +1485 326 1 2020-02-15T06:59:30Z +1486 326 1 2020-02-15T06:59:30Z +1487 326 2 2020-02-15T06:59:30Z +1488 326 2 2020-02-15T06:59:30Z +1489 326 2 2020-02-15T06:59:30Z +1490 326 2 2020-02-15T06:59:30Z +1491 327 1 2020-02-15T06:59:30Z +1492 327 1 2020-02-15T06:59:30Z +1493 327 1 2020-02-15T06:59:30Z +1494 327 1 2020-02-15T06:59:30Z +1495 327 2 2020-02-15T06:59:30Z +1496 327 2 2020-02-15T06:59:30Z +1497 328 2 2020-02-15T06:59:30Z +1498 328 2 2020-02-15T06:59:30Z +1499 328 2 2020-02-15T06:59:30Z +1500 328 2 2020-02-15T06:59:30Z +1501 329 1 2020-02-15T06:59:30Z +1502 329 1 2020-02-15T06:59:30Z +1503 329 1 2020-02-15T06:59:30Z +1504 329 2 2020-02-15T06:59:30Z +1505 329 2 2020-02-15T06:59:30Z +1506 329 2 2020-02-15T06:59:30Z +1507 330 1 2020-02-15T06:59:30Z +1508 330 1 2020-02-15T06:59:30Z +1509 330 1 2020-02-15T06:59:30Z +1510 330 1 2020-02-15T06:59:30Z +1511 330 2 2020-02-15T06:59:30Z +1512 330 2 2020-02-15T06:59:30Z +1513 330 2 2020-02-15T06:59:30Z +1514 331 1 2020-02-15T06:59:30Z +1515 331 1 2020-02-15T06:59:30Z +1516 331 1 2020-02-15T06:59:30Z +1517 331 1 2020-02-15T06:59:30Z +1518 331 2 2020-02-15T06:59:30Z +1519 331 2 2020-02-15T06:59:30Z +1520 331 2 2020-02-15T06:59:30Z +1521 331 2 2020-02-15T06:59:30Z +1522 333 1 2020-02-15T06:59:30Z +1523 333 1 2020-02-15T06:59:30Z +1524 333 2 2020-02-15T06:59:30Z +1525 333 2 2020-02-15T06:59:30Z +1526 334 1 2020-02-15T06:59:30Z +1527 334 1 2020-02-15T06:59:30Z +1528 334 2 2020-02-15T06:59:30Z +1529 334 2 2020-02-15T06:59:30Z +1530 334 2 2020-02-15T06:59:30Z +1531 334 2 2020-02-15T06:59:30Z +1532 335 1 2020-02-15T06:59:30Z +1533 335 1 2020-02-15T06:59:30Z +1534 336 1 2020-02-15T06:59:30Z +1535 336 1 2020-02-15T06:59:30Z +1536 336 1 2020-02-15T06:59:30Z +1537 336 2 2020-02-15T06:59:30Z +1538 336 2 2020-02-15T06:59:30Z +1539 337 1 2020-02-15T06:59:30Z +1540 337 1 2020-02-15T06:59:30Z +1541 337 2 2020-02-15T06:59:30Z +1542 337 2 2020-02-15T06:59:30Z +1543 338 2 2020-02-15T06:59:30Z +1544 338 2 2020-02-15T06:59:30Z +1545 338 2 2020-02-15T06:59:30Z +1546 339 2 2020-02-15T06:59:30Z +1547 339 2 2020-02-15T06:59:30Z +1548 339 2 2020-02-15T06:59:30Z +1549 340 1 2020-02-15T06:59:30Z +1550 340 1 2020-02-15T06:59:30Z +1551 341 1 2020-02-15T06:59:30Z +1552 341 1 2020-02-15T06:59:30Z +1553 341 1 2020-02-15T06:59:30Z +1554 341 1 2020-02-15T06:59:30Z +1555 341 2 2020-02-15T06:59:30Z +1556 341 2 2020-02-15T06:59:30Z +1557 341 2 2020-02-15T06:59:30Z +1558 341 2 2020-02-15T06:59:30Z +1559 342 1 2020-02-15T06:59:30Z +1560 342 1 2020-02-15T06:59:30Z +1561 342 1 2020-02-15T06:59:30Z +1562 342 1 2020-02-15T06:59:30Z +1563 343 1 2020-02-15T06:59:30Z +1564 343 1 2020-02-15T06:59:30Z +1565 344 1 2020-02-15T06:59:30Z +1566 344 1 2020-02-15T06:59:30Z +1567 344 1 2020-02-15T06:59:30Z +1568 344 2 2020-02-15T06:59:30Z +1569 344 2 2020-02-15T06:59:30Z +1570 345 1 2020-02-15T06:59:30Z +1571 345 1 2020-02-15T06:59:30Z +1572 345 1 2020-02-15T06:59:30Z +1573 345 2 2020-02-15T06:59:30Z +1574 345 2 2020-02-15T06:59:30Z +1575 346 1 2020-02-15T06:59:30Z +1576 346 1 2020-02-15T06:59:30Z +1577 346 2 2020-02-15T06:59:30Z +1578 346 2 2020-02-15T06:59:30Z +1579 346 2 2020-02-15T06:59:30Z +1580 346 2 2020-02-15T06:59:30Z +1581 347 1 2020-02-15T06:59:30Z +1582 347 1 2020-02-15T06:59:30Z +1583 347 1 2020-02-15T06:59:30Z +1584 347 1 2020-02-15T06:59:30Z +1585 348 2 2020-02-15T06:59:30Z +1586 348 2 2020-02-15T06:59:30Z +1587 348 2 2020-02-15T06:59:30Z +1588 348 2 2020-02-15T06:59:30Z +1589 349 1 2020-02-15T06:59:30Z +1590 349 1 2020-02-15T06:59:30Z +1591 349 1 2020-02-15T06:59:30Z +1592 349 1 2020-02-15T06:59:30Z +1593 349 2 2020-02-15T06:59:30Z +1594 349 2 2020-02-15T06:59:30Z +1595 349 2 2020-02-15T06:59:30Z +1596 350 1 2020-02-15T06:59:30Z +1597 350 1 2020-02-15T06:59:30Z +1598 350 1 2020-02-15T06:59:30Z +1599 350 1 2020-02-15T06:59:30Z +1600 350 2 2020-02-15T06:59:30Z +1601 350 2 2020-02-15T06:59:30Z +1602 350 2 2020-02-15T06:59:30Z +1603 350 2 2020-02-15T06:59:30Z +1604 351 1 2020-02-15T06:59:30Z +1605 351 1 2020-02-15T06:59:30Z +1606 351 1 2020-02-15T06:59:30Z +1607 351 2 2020-02-15T06:59:30Z +1608 351 2 2020-02-15T06:59:30Z +1609 351 2 2020-02-15T06:59:30Z +1610 352 2 2020-02-15T06:59:30Z +1611 352 2 2020-02-15T06:59:30Z +1612 352 2 2020-02-15T06:59:30Z +1613 352 2 2020-02-15T06:59:30Z +1614 353 1 2020-02-15T06:59:30Z +1615 353 1 2020-02-15T06:59:30Z +1616 353 2 2020-02-15T06:59:30Z +1617 353 2 2020-02-15T06:59:30Z +1618 353 2 2020-02-15T06:59:30Z +1619 353 2 2020-02-15T06:59:30Z +1620 354 1 2020-02-15T06:59:30Z +1621 354 1 2020-02-15T06:59:30Z +1622 354 1 2020-02-15T06:59:30Z +1623 354 2 2020-02-15T06:59:30Z +1624 354 2 2020-02-15T06:59:30Z +1625 355 2 2020-02-15T06:59:30Z +1626 355 2 2020-02-15T06:59:30Z +1627 356 1 2020-02-15T06:59:30Z +1628 356 1 2020-02-15T06:59:30Z +1629 356 1 2020-02-15T06:59:30Z +1630 356 1 2020-02-15T06:59:30Z +1631 356 2 2020-02-15T06:59:30Z +1632 356 2 2020-02-15T06:59:30Z +1633 356 2 2020-02-15T06:59:30Z +1634 356 2 2020-02-15T06:59:30Z +1635 357 2 2020-02-15T06:59:30Z +1636 357 2 2020-02-15T06:59:30Z +1637 357 2 2020-02-15T06:59:30Z +1638 357 2 2020-02-15T06:59:30Z +1639 358 1 2020-02-15T06:59:30Z +1640 358 1 2020-02-15T06:59:30Z +1641 358 1 2020-02-15T06:59:30Z +1642 358 1 2020-02-15T06:59:30Z +1643 358 2 2020-02-15T06:59:30Z +1644 358 2 2020-02-15T06:59:30Z +1645 358 2 2020-02-15T06:59:30Z +1646 358 2 2020-02-15T06:59:30Z +1647 360 1 2020-02-15T06:59:30Z +1648 360 1 2020-02-15T06:59:30Z +1649 360 1 2020-02-15T06:59:30Z +1650 360 1 2020-02-15T06:59:30Z +1651 361 1 2020-02-15T06:59:30Z +1652 361 1 2020-02-15T06:59:30Z +1653 361 1 2020-02-15T06:59:30Z +1654 361 1 2020-02-15T06:59:30Z +1655 361 2 2020-02-15T06:59:30Z +1656 361 2 2020-02-15T06:59:30Z +1657 361 2 2020-02-15T06:59:30Z +1658 361 2 2020-02-15T06:59:30Z +1659 362 1 2020-02-15T06:59:30Z +1660 362 1 2020-02-15T06:59:30Z +1661 363 1 2020-02-15T06:59:30Z +1662 363 1 2020-02-15T06:59:30Z +1663 363 1 2020-02-15T06:59:30Z +1664 363 2 2020-02-15T06:59:30Z +1665 363 2 2020-02-15T06:59:30Z +1666 363 2 2020-02-15T06:59:30Z +1667 364 1 2020-02-15T06:59:30Z +1668 364 1 2020-02-15T06:59:30Z +1669 364 1 2020-02-15T06:59:30Z +1670 365 1 2020-02-15T06:59:30Z +1671 365 1 2020-02-15T06:59:30Z +1672 365 2 2020-02-15T06:59:30Z +1673 365 2 2020-02-15T06:59:30Z +1674 366 1 2020-02-15T06:59:30Z +1675 366 1 2020-02-15T06:59:30Z +1676 366 1 2020-02-15T06:59:30Z +1677 366 1 2020-02-15T06:59:30Z +1678 366 2 2020-02-15T06:59:30Z +1679 366 2 2020-02-15T06:59:30Z +1680 366 2 2020-02-15T06:59:30Z +1681 367 1 2020-02-15T06:59:30Z +1682 367 1 2020-02-15T06:59:30Z +1683 367 1 2020-02-15T06:59:30Z +1684 367 1 2020-02-15T06:59:30Z +1685 367 2 2020-02-15T06:59:30Z +1686 367 2 2020-02-15T06:59:30Z +1687 367 2 2020-02-15T06:59:30Z +1688 368 1 2020-02-15T06:59:30Z +1689 368 1 2020-02-15T06:59:30Z +1690 369 1 2020-02-15T06:59:30Z +1691 369 1 2020-02-15T06:59:30Z +1692 369 1 2020-02-15T06:59:30Z +1693 369 1 2020-02-15T06:59:30Z +1694 369 2 2020-02-15T06:59:30Z +1695 369 2 2020-02-15T06:59:30Z +1696 369 2 2020-02-15T06:59:30Z +1697 369 2 2020-02-15T06:59:30Z +1698 370 1 2020-02-15T06:59:30Z +1699 370 1 2020-02-15T06:59:30Z +1700 370 1 2020-02-15T06:59:30Z +1701 370 2 2020-02-15T06:59:30Z +1702 370 2 2020-02-15T06:59:30Z +1703 371 1 2020-02-15T06:59:30Z +1704 371 1 2020-02-15T06:59:30Z +1705 371 1 2020-02-15T06:59:30Z +1706 372 1 2020-02-15T06:59:30Z +1707 372 1 2020-02-15T06:59:30Z +1708 373 1 2020-02-15T06:59:30Z +1709 373 1 2020-02-15T06:59:30Z +1710 373 1 2020-02-15T06:59:30Z +1711 373 2 2020-02-15T06:59:30Z +1712 373 2 2020-02-15T06:59:30Z +1713 374 1 2020-02-15T06:59:30Z +1714 374 1 2020-02-15T06:59:30Z +1715 374 1 2020-02-15T06:59:30Z +1716 374 2 2020-02-15T06:59:30Z +1717 374 2 2020-02-15T06:59:30Z +1718 374 2 2020-02-15T06:59:30Z +1719 374 2 2020-02-15T06:59:30Z +1720 375 1 2020-02-15T06:59:30Z +1721 375 1 2020-02-15T06:59:30Z +1722 376 1 2020-02-15T06:59:30Z +1723 376 1 2020-02-15T06:59:30Z +1724 376 1 2020-02-15T06:59:30Z +1725 376 1 2020-02-15T06:59:30Z +1726 376 2 2020-02-15T06:59:30Z +1727 376 2 2020-02-15T06:59:30Z +1728 376 2 2020-02-15T06:59:30Z +1729 377 1 2020-02-15T06:59:30Z +1730 377 1 2020-02-15T06:59:30Z +1731 377 1 2020-02-15T06:59:30Z +1732 377 2 2020-02-15T06:59:30Z +1733 377 2 2020-02-15T06:59:30Z +1734 377 2 2020-02-15T06:59:30Z +1735 378 1 2020-02-15T06:59:30Z +1736 378 1 2020-02-15T06:59:30Z +1737 378 1 2020-02-15T06:59:30Z +1738 378 1 2020-02-15T06:59:30Z +1739 378 2 2020-02-15T06:59:30Z +1740 378 2 2020-02-15T06:59:30Z +1741 378 2 2020-02-15T06:59:30Z +1742 378 2 2020-02-15T06:59:30Z +1743 379 2 2020-02-15T06:59:30Z +1744 379 2 2020-02-15T06:59:30Z +1745 379 2 2020-02-15T06:59:30Z +1746 379 2 2020-02-15T06:59:30Z +1747 380 1 2020-02-15T06:59:30Z +1748 380 1 2020-02-15T06:59:30Z +1749 380 2 2020-02-15T06:59:30Z +1750 380 2 2020-02-15T06:59:30Z +1751 380 2 2020-02-15T06:59:30Z +1752 381 1 2020-02-15T06:59:30Z +1753 381 1 2020-02-15T06:59:30Z +1754 381 2 2020-02-15T06:59:30Z +1755 381 2 2020-02-15T06:59:30Z +1756 381 2 2020-02-15T06:59:30Z +1757 382 1 2020-02-15T06:59:30Z +1758 382 1 2020-02-15T06:59:30Z +1759 382 1 2020-02-15T06:59:30Z +1760 382 1 2020-02-15T06:59:30Z +1761 382 2 2020-02-15T06:59:30Z +1762 382 2 2020-02-15T06:59:30Z +1763 382 2 2020-02-15T06:59:30Z +1764 382 2 2020-02-15T06:59:30Z +1765 383 1 2020-02-15T06:59:30Z +1766 383 1 2020-02-15T06:59:30Z +1767 383 1 2020-02-15T06:59:30Z +1768 383 2 2020-02-15T06:59:30Z +1769 383 2 2020-02-15T06:59:30Z +1770 384 2 2020-02-15T06:59:30Z +1771 384 2 2020-02-15T06:59:30Z +1772 384 2 2020-02-15T06:59:30Z +1773 385 1 2020-02-15T06:59:30Z +1774 385 1 2020-02-15T06:59:30Z +1775 385 2 2020-02-15T06:59:30Z +1776 385 2 2020-02-15T06:59:30Z +1777 385 2 2020-02-15T06:59:30Z +1778 387 1 2020-02-15T06:59:30Z +1779 387 1 2020-02-15T06:59:30Z +1780 387 1 2020-02-15T06:59:30Z +1781 387 2 2020-02-15T06:59:30Z +1782 387 2 2020-02-15T06:59:30Z +1783 387 2 2020-02-15T06:59:30Z +1784 388 1 2020-02-15T06:59:30Z +1785 388 1 2020-02-15T06:59:30Z +1786 388 1 2020-02-15T06:59:30Z +1787 388 2 2020-02-15T06:59:30Z +1788 388 2 2020-02-15T06:59:30Z +1789 388 2 2020-02-15T06:59:30Z +1790 389 1 2020-02-15T06:59:30Z +1791 389 1 2020-02-15T06:59:30Z +1792 389 2 2020-02-15T06:59:30Z +1793 389 2 2020-02-15T06:59:30Z +1794 390 1 2020-02-15T06:59:30Z +1795 390 1 2020-02-15T06:59:30Z +1796 390 1 2020-02-15T06:59:30Z +1797 391 1 2020-02-15T06:59:30Z +1798 391 1 2020-02-15T06:59:30Z +1799 391 1 2020-02-15T06:59:30Z +1800 391 1 2020-02-15T06:59:30Z +1801 391 2 2020-02-15T06:59:30Z +1802 391 2 2020-02-15T06:59:30Z +1803 391 2 2020-02-15T06:59:30Z +1804 392 1 2020-02-15T06:59:30Z +1805 392 1 2020-02-15T06:59:30Z +1806 392 1 2020-02-15T06:59:30Z +1807 392 1 2020-02-15T06:59:30Z +1808 392 2 2020-02-15T06:59:30Z +1809 392 2 2020-02-15T06:59:30Z +1810 393 1 2020-02-15T06:59:30Z +1811 393 1 2020-02-15T06:59:30Z +1812 394 1 2020-02-15T06:59:30Z +1813 394 1 2020-02-15T06:59:30Z +1814 394 1 2020-02-15T06:59:30Z +1815 394 1 2020-02-15T06:59:30Z +1816 395 1 2020-02-15T06:59:30Z +1817 395 1 2020-02-15T06:59:30Z +1818 395 1 2020-02-15T06:59:30Z +1819 395 2 2020-02-15T06:59:30Z +1820 395 2 2020-02-15T06:59:30Z +1821 395 2 2020-02-15T06:59:30Z +1822 396 2 2020-02-15T06:59:30Z +1823 396 2 2020-02-15T06:59:30Z +1824 396 2 2020-02-15T06:59:30Z +1825 396 2 2020-02-15T06:59:30Z +1826 397 1 2020-02-15T06:59:30Z +1827 397 1 2020-02-15T06:59:30Z +1828 397 1 2020-02-15T06:59:30Z +1829 397 2 2020-02-15T06:59:30Z +1830 397 2 2020-02-15T06:59:30Z +1831 397 2 2020-02-15T06:59:30Z +1832 397 2 2020-02-15T06:59:30Z +1833 398 2 2020-02-15T06:59:30Z +1834 398 2 2020-02-15T06:59:30Z +1835 398 2 2020-02-15T06:59:30Z +1836 398 2 2020-02-15T06:59:30Z +1837 399 2 2020-02-15T06:59:30Z +1838 399 2 2020-02-15T06:59:30Z +1839 400 1 2020-02-15T06:59:30Z +1840 400 1 2020-02-15T06:59:30Z +1841 401 1 2020-02-15T06:59:30Z +1842 401 1 2020-02-15T06:59:30Z +1843 402 1 2020-02-15T06:59:30Z +1844 402 1 2020-02-15T06:59:30Z +1845 402 1 2020-02-15T06:59:30Z +1846 402 2 2020-02-15T06:59:30Z +1847 402 2 2020-02-15T06:59:30Z +1848 402 2 2020-02-15T06:59:30Z +1849 403 1 2020-02-15T06:59:30Z +1850 403 1 2020-02-15T06:59:30Z +1851 403 1 2020-02-15T06:59:30Z +1852 403 1 2020-02-15T06:59:30Z +1853 403 2 2020-02-15T06:59:30Z +1854 403 2 2020-02-15T06:59:30Z +1855 403 2 2020-02-15T06:59:30Z +1856 403 2 2020-02-15T06:59:30Z +1857 405 2 2020-02-15T06:59:30Z +1858 405 2 2020-02-15T06:59:30Z +1859 406 1 2020-02-15T06:59:30Z +1860 406 1 2020-02-15T06:59:30Z +1861 406 2 2020-02-15T06:59:30Z +1862 406 2 2020-02-15T06:59:30Z +1863 406 2 2020-02-15T06:59:30Z +1864 406 2 2020-02-15T06:59:30Z +1865 407 1 2020-02-15T06:59:30Z +1866 407 1 2020-02-15T06:59:30Z +1867 408 1 2020-02-15T06:59:30Z +1868 408 1 2020-02-15T06:59:30Z +1869 408 1 2020-02-15T06:59:30Z +1870 408 1 2020-02-15T06:59:30Z +1871 408 2 2020-02-15T06:59:30Z +1872 408 2 2020-02-15T06:59:30Z +1873 408 2 2020-02-15T06:59:30Z +1874 409 1 2020-02-15T06:59:30Z +1875 409 1 2020-02-15T06:59:30Z +1876 409 1 2020-02-15T06:59:30Z +1877 409 1 2020-02-15T06:59:30Z +1878 409 2 2020-02-15T06:59:30Z +1879 409 2 2020-02-15T06:59:30Z +1880 409 2 2020-02-15T06:59:30Z +1881 410 1 2020-02-15T06:59:30Z +1882 410 1 2020-02-15T06:59:30Z +1883 410 1 2020-02-15T06:59:30Z +1884 410 2 2020-02-15T06:59:30Z +1885 410 2 2020-02-15T06:59:30Z +1886 411 1 2020-02-15T06:59:30Z +1887 411 1 2020-02-15T06:59:30Z +1888 412 1 2020-02-15T06:59:30Z +1889 412 1 2020-02-15T06:59:30Z +1890 412 1 2020-02-15T06:59:30Z +1891 412 1 2020-02-15T06:59:30Z +1892 412 2 2020-02-15T06:59:30Z +1893 412 2 2020-02-15T06:59:30Z +1894 412 2 2020-02-15T06:59:30Z +1895 412 2 2020-02-15T06:59:30Z +1896 413 1 2020-02-15T06:59:30Z +1897 413 1 2020-02-15T06:59:30Z +1898 413 1 2020-02-15T06:59:30Z +1899 414 1 2020-02-15T06:59:30Z +1900 414 1 2020-02-15T06:59:30Z +1901 414 1 2020-02-15T06:59:30Z +1902 414 2 2020-02-15T06:59:30Z +1903 414 2 2020-02-15T06:59:30Z +1904 414 2 2020-02-15T06:59:30Z +1905 415 1 2020-02-15T06:59:30Z +1906 415 1 2020-02-15T06:59:30Z +1907 415 1 2020-02-15T06:59:30Z +1908 415 2 2020-02-15T06:59:30Z +1909 415 2 2020-02-15T06:59:30Z +1910 415 2 2020-02-15T06:59:30Z +1911 416 1 2020-02-15T06:59:30Z +1912 416 1 2020-02-15T06:59:30Z +1913 416 2 2020-02-15T06:59:30Z +1914 416 2 2020-02-15T06:59:30Z +1915 416 2 2020-02-15T06:59:30Z +1916 416 2 2020-02-15T06:59:30Z +1917 417 1 2020-02-15T06:59:30Z +1918 417 1 2020-02-15T06:59:30Z +1919 417 1 2020-02-15T06:59:30Z +1920 417 1 2020-02-15T06:59:30Z +1921 417 2 2020-02-15T06:59:30Z +1922 417 2 2020-02-15T06:59:30Z +1923 418 1 2020-02-15T06:59:30Z +1924 418 1 2020-02-15T06:59:30Z +1925 418 1 2020-02-15T06:59:30Z +1926 418 1 2020-02-15T06:59:30Z +1927 418 2 2020-02-15T06:59:30Z +1928 418 2 2020-02-15T06:59:30Z +1929 418 2 2020-02-15T06:59:30Z +1930 418 2 2020-02-15T06:59:30Z +1931 420 1 2020-02-15T06:59:30Z +1932 420 1 2020-02-15T06:59:30Z +1933 420 2 2020-02-15T06:59:30Z +1934 420 2 2020-02-15T06:59:30Z +1935 420 2 2020-02-15T06:59:30Z +1936 421 2 2020-02-15T06:59:30Z +1937 421 2 2020-02-15T06:59:30Z +1938 421 2 2020-02-15T06:59:30Z +1939 421 2 2020-02-15T06:59:30Z +1940 422 2 2020-02-15T06:59:30Z +1941 422 2 2020-02-15T06:59:30Z +1942 423 1 2020-02-15T06:59:30Z +1943 423 1 2020-02-15T06:59:30Z +1944 423 2 2020-02-15T06:59:30Z +1945 423 2 2020-02-15T06:59:30Z +1946 424 1 2020-02-15T06:59:30Z +1947 424 1 2020-02-15T06:59:30Z +1948 424 1 2020-02-15T06:59:30Z +1949 424 2 2020-02-15T06:59:30Z +1950 424 2 2020-02-15T06:59:30Z +1951 425 2 2020-02-15T06:59:30Z +1952 425 2 2020-02-15T06:59:30Z +1953 426 2 2020-02-15T06:59:30Z +1954 426 2 2020-02-15T06:59:30Z +1955 426 2 2020-02-15T06:59:30Z +1956 427 1 2020-02-15T06:59:30Z +1957 427 1 2020-02-15T06:59:30Z +1958 427 1 2020-02-15T06:59:30Z +1959 427 1 2020-02-15T06:59:30Z +1960 428 1 2020-02-15T06:59:30Z +1961 428 1 2020-02-15T06:59:30Z +1962 428 1 2020-02-15T06:59:30Z +1963 428 1 2020-02-15T06:59:30Z +1964 428 2 2020-02-15T06:59:30Z +1965 428 2 2020-02-15T06:59:30Z +1966 429 1 2020-02-15T06:59:30Z +1967 429 1 2020-02-15T06:59:30Z +1968 429 2 2020-02-15T06:59:30Z +1969 429 2 2020-02-15T06:59:30Z +1970 429 2 2020-02-15T06:59:30Z +1971 429 2 2020-02-15T06:59:30Z +1972 430 2 2020-02-15T06:59:30Z +1973 430 2 2020-02-15T06:59:30Z +1974 430 2 2020-02-15T06:59:30Z +1975 430 2 2020-02-15T06:59:30Z +1976 431 2 2020-02-15T06:59:30Z +1977 431 2 2020-02-15T06:59:30Z +1978 431 2 2020-02-15T06:59:30Z +1979 432 1 2020-02-15T06:59:30Z +1980 432 1 2020-02-15T06:59:30Z +1981 432 1 2020-02-15T06:59:30Z +1982 432 2 2020-02-15T06:59:30Z +1983 432 2 2020-02-15T06:59:30Z +1984 433 1 2020-02-15T06:59:30Z +1985 433 1 2020-02-15T06:59:30Z +1986 433 1 2020-02-15T06:59:30Z +1987 433 1 2020-02-15T06:59:30Z +1988 433 2 2020-02-15T06:59:30Z +1989 433 2 2020-02-15T06:59:30Z +1990 434 1 2020-02-15T06:59:30Z +1991 434 1 2020-02-15T06:59:30Z +1992 434 1 2020-02-15T06:59:30Z +1993 434 1 2020-02-15T06:59:30Z +1994 434 2 2020-02-15T06:59:30Z +1995 434 2 2020-02-15T06:59:30Z +1996 434 2 2020-02-15T06:59:30Z +1997 434 2 2020-02-15T06:59:30Z +1998 435 1 2020-02-15T06:59:30Z +1999 435 1 2020-02-15T06:59:30Z +2000 436 1 2020-02-15T06:59:30Z +2001 436 1 2020-02-15T06:59:30Z +2002 436 1 2020-02-15T06:59:30Z +2003 436 2 2020-02-15T06:59:30Z +2004 436 2 2020-02-15T06:59:30Z +2005 436 2 2020-02-15T06:59:30Z +2006 437 1 2020-02-15T06:59:30Z +2007 437 1 2020-02-15T06:59:30Z +2008 437 2 2020-02-15T06:59:30Z +2009 437 2 2020-02-15T06:59:30Z +2010 437 2 2020-02-15T06:59:30Z +2011 437 2 2020-02-15T06:59:30Z +2012 438 1 2020-02-15T06:59:30Z +2013 438 1 2020-02-15T06:59:30Z +2014 438 2 2020-02-15T06:59:30Z +2015 438 2 2020-02-15T06:59:30Z +2016 438 2 2020-02-15T06:59:30Z +2017 439 1 2020-02-15T06:59:30Z +2018 439 1 2020-02-15T06:59:30Z +2019 439 1 2020-02-15T06:59:30Z +2020 439 1 2020-02-15T06:59:30Z +2021 439 2 2020-02-15T06:59:30Z +2022 439 2 2020-02-15T06:59:30Z +2023 440 1 2020-02-15T06:59:30Z +2024 440 1 2020-02-15T06:59:30Z +2025 440 2 2020-02-15T06:59:30Z +2026 440 2 2020-02-15T06:59:30Z +2027 441 1 2020-02-15T06:59:30Z +2028 441 1 2020-02-15T06:59:30Z +2029 442 1 2020-02-15T06:59:30Z +2030 442 1 2020-02-15T06:59:30Z +2031 442 1 2020-02-15T06:59:30Z +2032 443 1 2020-02-15T06:59:30Z +2033 443 1 2020-02-15T06:59:30Z +2034 443 1 2020-02-15T06:59:30Z +2035 443 2 2020-02-15T06:59:30Z +2036 443 2 2020-02-15T06:59:30Z +2037 443 2 2020-02-15T06:59:30Z +2038 443 2 2020-02-15T06:59:30Z +2039 444 1 2020-02-15T06:59:30Z +2040 444 1 2020-02-15T06:59:30Z +2041 444 1 2020-02-15T06:59:30Z +2042 444 1 2020-02-15T06:59:30Z +2043 444 2 2020-02-15T06:59:30Z +2044 444 2 2020-02-15T06:59:30Z +2045 444 2 2020-02-15T06:59:30Z +2046 444 2 2020-02-15T06:59:30Z +2047 445 1 2020-02-15T06:59:30Z +2048 445 1 2020-02-15T06:59:30Z +2049 445 1 2020-02-15T06:59:30Z +2050 445 2 2020-02-15T06:59:30Z +2051 445 2 2020-02-15T06:59:30Z +2052 445 2 2020-02-15T06:59:30Z +2053 446 1 2020-02-15T06:59:30Z +2054 446 1 2020-02-15T06:59:30Z +2055 446 2 2020-02-15T06:59:30Z +2056 446 2 2020-02-15T06:59:30Z +2057 447 1 2020-02-15T06:59:30Z +2058 447 1 2020-02-15T06:59:30Z +2059 447 1 2020-02-15T06:59:30Z +2060 447 1 2020-02-15T06:59:30Z +2061 447 2 2020-02-15T06:59:30Z +2062 447 2 2020-02-15T06:59:30Z +2063 447 2 2020-02-15T06:59:30Z +2064 448 1 2020-02-15T06:59:30Z +2065 448 1 2020-02-15T06:59:30Z +2066 448 2 2020-02-15T06:59:30Z +2067 448 2 2020-02-15T06:59:30Z +2068 448 2 2020-02-15T06:59:30Z +2069 449 2 2020-02-15T06:59:30Z +2070 449 2 2020-02-15T06:59:30Z +2071 449 2 2020-02-15T06:59:30Z +2072 449 2 2020-02-15T06:59:30Z +2073 450 1 2020-02-15T06:59:30Z +2074 450 1 2020-02-15T06:59:30Z +2075 450 1 2020-02-15T06:59:30Z +2076 450 2 2020-02-15T06:59:30Z +2077 450 2 2020-02-15T06:59:30Z +2078 450 2 2020-02-15T06:59:30Z +2079 450 2 2020-02-15T06:59:30Z +2080 451 1 2020-02-15T06:59:30Z +2081 451 1 2020-02-15T06:59:30Z +2082 451 2 2020-02-15T06:59:30Z +2083 451 2 2020-02-15T06:59:30Z +2084 451 2 2020-02-15T06:59:30Z +2085 452 2 2020-02-15T06:59:30Z +2086 452 2 2020-02-15T06:59:30Z +2087 452 2 2020-02-15T06:59:30Z +2088 452 2 2020-02-15T06:59:30Z +2089 453 1 2020-02-15T06:59:30Z +2090 453 1 2020-02-15T06:59:30Z +2091 453 1 2020-02-15T06:59:30Z +2092 453 2 2020-02-15T06:59:30Z +2093 453 2 2020-02-15T06:59:30Z +2094 454 1 2020-02-15T06:59:30Z +2095 454 1 2020-02-15T06:59:30Z +2096 455 1 2020-02-15T06:59:30Z +2097 455 1 2020-02-15T06:59:30Z +2098 455 1 2020-02-15T06:59:30Z +2099 455 1 2020-02-15T06:59:30Z +2100 456 1 2020-02-15T06:59:30Z +2101 456 1 2020-02-15T06:59:30Z +2102 456 2 2020-02-15T06:59:30Z +2103 456 2 2020-02-15T06:59:30Z +2104 456 2 2020-02-15T06:59:30Z +2105 456 2 2020-02-15T06:59:30Z +2106 457 1 2020-02-15T06:59:30Z +2107 457 1 2020-02-15T06:59:30Z +2108 457 2 2020-02-15T06:59:30Z +2109 457 2 2020-02-15T06:59:30Z +2110 457 2 2020-02-15T06:59:30Z +2111 457 2 2020-02-15T06:59:30Z +2112 458 1 2020-02-15T06:59:30Z +2113 458 1 2020-02-15T06:59:30Z +2114 458 2 2020-02-15T06:59:30Z +2115 458 2 2020-02-15T06:59:30Z +2116 458 2 2020-02-15T06:59:30Z +2117 458 2 2020-02-15T06:59:30Z +2118 459 2 2020-02-15T06:59:30Z +2119 459 2 2020-02-15T06:59:30Z +2120 460 1 2020-02-15T06:59:30Z +2121 460 1 2020-02-15T06:59:30Z +2122 460 1 2020-02-15T06:59:30Z +2123 460 1 2020-02-15T06:59:30Z +2124 460 2 2020-02-15T06:59:30Z +2125 460 2 2020-02-15T06:59:30Z +2126 460 2 2020-02-15T06:59:30Z +2127 460 2 2020-02-15T06:59:30Z +2128 461 1 2020-02-15T06:59:30Z +2129 461 1 2020-02-15T06:59:30Z +2130 461 2 2020-02-15T06:59:30Z +2131 461 2 2020-02-15T06:59:30Z +2132 461 2 2020-02-15T06:59:30Z +2133 461 2 2020-02-15T06:59:30Z +2134 462 1 2020-02-15T06:59:30Z +2135 462 1 2020-02-15T06:59:30Z +2136 462 2 2020-02-15T06:59:30Z +2137 462 2 2020-02-15T06:59:30Z +2138 462 2 2020-02-15T06:59:30Z +2139 463 1 2020-02-15T06:59:30Z +2140 463 1 2020-02-15T06:59:30Z +2141 463 1 2020-02-15T06:59:30Z +2142 463 2 2020-02-15T06:59:30Z +2143 463 2 2020-02-15T06:59:30Z +2144 464 1 2020-02-15T06:59:30Z +2145 464 1 2020-02-15T06:59:30Z +2146 464 1 2020-02-15T06:59:30Z +2147 464 1 2020-02-15T06:59:30Z +2148 464 2 2020-02-15T06:59:30Z +2149 464 2 2020-02-15T06:59:30Z +2150 464 2 2020-02-15T06:59:30Z +2151 465 1 2020-02-15T06:59:30Z +2152 465 1 2020-02-15T06:59:30Z +2153 465 2 2020-02-15T06:59:30Z +2154 465 2 2020-02-15T06:59:30Z +2155 465 2 2020-02-15T06:59:30Z +2156 466 1 2020-02-15T06:59:30Z +2157 466 1 2020-02-15T06:59:30Z +2158 467 1 2020-02-15T06:59:30Z +2159 467 1 2020-02-15T06:59:30Z +2160 467 1 2020-02-15T06:59:30Z +2161 467 1 2020-02-15T06:59:30Z +2162 467 2 2020-02-15T06:59:30Z +2163 467 2 2020-02-15T06:59:30Z +2164 467 2 2020-02-15T06:59:30Z +2165 468 1 2020-02-15T06:59:30Z +2166 468 1 2020-02-15T06:59:30Z +2167 468 1 2020-02-15T06:59:30Z +2168 468 1 2020-02-15T06:59:30Z +2169 468 2 2020-02-15T06:59:30Z +2170 468 2 2020-02-15T06:59:30Z +2171 468 2 2020-02-15T06:59:30Z +2172 468 2 2020-02-15T06:59:30Z +2173 469 2 2020-02-15T06:59:30Z +2174 469 2 2020-02-15T06:59:30Z +2175 469 2 2020-02-15T06:59:30Z +2176 470 1 2020-02-15T06:59:30Z +2177 470 1 2020-02-15T06:59:30Z +2178 471 1 2020-02-15T06:59:30Z +2179 471 1 2020-02-15T06:59:30Z +2180 471 1 2020-02-15T06:59:30Z +2181 471 2 2020-02-15T06:59:30Z +2182 471 2 2020-02-15T06:59:30Z +2183 471 2 2020-02-15T06:59:30Z +2184 471 2 2020-02-15T06:59:30Z +2185 472 2 2020-02-15T06:59:30Z +2186 472 2 2020-02-15T06:59:30Z +2187 473 1 2020-02-15T06:59:30Z +2188 473 1 2020-02-15T06:59:30Z +2189 473 2 2020-02-15T06:59:30Z +2190 473 2 2020-02-15T06:59:30Z +2191 473 2 2020-02-15T06:59:30Z +2192 474 2 2020-02-15T06:59:30Z +2193 474 2 2020-02-15T06:59:30Z +2194 474 2 2020-02-15T06:59:30Z +2195 474 2 2020-02-15T06:59:30Z +2196 475 2 2020-02-15T06:59:30Z +2197 475 2 2020-02-15T06:59:30Z +2198 476 1 2020-02-15T06:59:30Z +2199 476 1 2020-02-15T06:59:30Z +2200 476 1 2020-02-15T06:59:30Z +2201 476 2 2020-02-15T06:59:30Z +2202 476 2 2020-02-15T06:59:30Z +2203 476 2 2020-02-15T06:59:30Z +2204 476 2 2020-02-15T06:59:30Z +2205 477 2 2020-02-15T06:59:30Z +2206 477 2 2020-02-15T06:59:30Z +2207 477 2 2020-02-15T06:59:30Z +2208 478 1 2020-02-15T06:59:30Z +2209 478 1 2020-02-15T06:59:30Z +2210 478 2 2020-02-15T06:59:30Z +2211 478 2 2020-02-15T06:59:30Z +2212 478 2 2020-02-15T06:59:30Z +2213 479 1 2020-02-15T06:59:30Z +2214 479 1 2020-02-15T06:59:30Z +2215 479 2 2020-02-15T06:59:30Z +2216 479 2 2020-02-15T06:59:30Z +2217 479 2 2020-02-15T06:59:30Z +2218 480 1 2020-02-15T06:59:30Z +2219 480 1 2020-02-15T06:59:30Z +2220 480 2 2020-02-15T06:59:30Z +2221 480 2 2020-02-15T06:59:30Z +2222 481 1 2020-02-15T06:59:30Z +2223 481 1 2020-02-15T06:59:30Z +2224 481 1 2020-02-15T06:59:30Z +2225 481 2 2020-02-15T06:59:30Z +2226 481 2 2020-02-15T06:59:30Z +2227 481 2 2020-02-15T06:59:30Z +2228 482 1 2020-02-15T06:59:30Z +2229 482 1 2020-02-15T06:59:30Z +2230 482 1 2020-02-15T06:59:30Z +2231 483 1 2020-02-15T06:59:30Z +2232 483 1 2020-02-15T06:59:30Z +2233 483 1 2020-02-15T06:59:30Z +2234 483 2 2020-02-15T06:59:30Z +2235 483 2 2020-02-15T06:59:30Z +2236 484 1 2020-02-15T06:59:30Z +2237 484 1 2020-02-15T06:59:30Z +2238 484 1 2020-02-15T06:59:30Z +2239 484 1 2020-02-15T06:59:30Z +2240 484 2 2020-02-15T06:59:30Z +2241 484 2 2020-02-15T06:59:30Z +2242 484 2 2020-02-15T06:59:30Z +2243 485 2 2020-02-15T06:59:30Z +2244 485 2 2020-02-15T06:59:30Z +2245 485 2 2020-02-15T06:59:30Z +2246 486 1 2020-02-15T06:59:30Z +2247 486 1 2020-02-15T06:59:30Z +2248 486 1 2020-02-15T06:59:30Z +2249 486 1 2020-02-15T06:59:30Z +2250 486 2 2020-02-15T06:59:30Z +2251 486 2 2020-02-15T06:59:30Z +2252 487 2 2020-02-15T06:59:30Z +2253 487 2 2020-02-15T06:59:30Z +2254 487 2 2020-02-15T06:59:30Z +2255 488 1 2020-02-15T06:59:30Z +2256 488 1 2020-02-15T06:59:30Z +2257 488 2 2020-02-15T06:59:30Z +2258 488 2 2020-02-15T06:59:30Z +2259 488 2 2020-02-15T06:59:30Z +2260 489 1 2020-02-15T06:59:30Z +2261 489 1 2020-02-15T06:59:30Z +2262 489 1 2020-02-15T06:59:30Z +2263 489 1 2020-02-15T06:59:30Z +2264 489 2 2020-02-15T06:59:30Z +2265 489 2 2020-02-15T06:59:30Z +2266 489 2 2020-02-15T06:59:30Z +2267 489 2 2020-02-15T06:59:30Z +2268 490 1 2020-02-15T06:59:30Z +2269 490 1 2020-02-15T06:59:30Z +2270 491 1 2020-02-15T06:59:30Z +2271 491 1 2020-02-15T06:59:30Z +2272 491 2 2020-02-15T06:59:30Z +2273 491 2 2020-02-15T06:59:30Z +2274 491 2 2020-02-15T06:59:30Z +2275 491 2 2020-02-15T06:59:30Z +2276 492 1 2020-02-15T06:59:30Z +2277 492 1 2020-02-15T06:59:30Z +2278 493 2 2020-02-15T06:59:30Z +2279 493 2 2020-02-15T06:59:30Z +2280 493 2 2020-02-15T06:59:30Z +2281 494 1 2020-02-15T06:59:30Z +2282 494 1 2020-02-15T06:59:30Z +2283 494 1 2020-02-15T06:59:30Z +2284 494 1 2020-02-15T06:59:30Z +2285 494 2 2020-02-15T06:59:30Z +2286 494 2 2020-02-15T06:59:30Z +2287 496 1 2020-02-15T06:59:30Z +2288 496 1 2020-02-15T06:59:30Z +2289 496 2 2020-02-15T06:59:30Z +2290 496 2 2020-02-15T06:59:30Z +2291 496 2 2020-02-15T06:59:30Z +2292 498 1 2020-02-15T06:59:30Z +2293 498 1 2020-02-15T06:59:30Z +2294 499 1 2020-02-15T06:59:30Z +2295 499 1 2020-02-15T06:59:30Z +2296 500 1 2020-02-15T06:59:30Z +2297 500 1 2020-02-15T06:59:30Z +2298 500 1 2020-02-15T06:59:30Z +2299 500 1 2020-02-15T06:59:30Z +2300 500 2 2020-02-15T06:59:30Z +2301 500 2 2020-02-15T06:59:30Z +2302 500 2 2020-02-15T06:59:30Z +2303 500 2 2020-02-15T06:59:30Z +2304 501 1 2020-02-15T06:59:30Z +2305 501 1 2020-02-15T06:59:30Z +2306 501 1 2020-02-15T06:59:30Z +2307 501 2 2020-02-15T06:59:30Z +2308 501 2 2020-02-15T06:59:30Z +2309 502 1 2020-02-15T06:59:30Z +2310 502 1 2020-02-15T06:59:30Z +2311 502 1 2020-02-15T06:59:30Z +2312 502 1 2020-02-15T06:59:30Z +2313 502 2 2020-02-15T06:59:30Z +2314 502 2 2020-02-15T06:59:30Z +2315 502 2 2020-02-15T06:59:30Z +2316 503 1 2020-02-15T06:59:30Z +2317 503 1 2020-02-15T06:59:30Z +2318 503 1 2020-02-15T06:59:30Z +2319 504 1 2020-02-15T06:59:30Z +2320 504 1 2020-02-15T06:59:30Z +2321 504 1 2020-02-15T06:59:30Z +2322 504 1 2020-02-15T06:59:30Z +2323 504 2 2020-02-15T06:59:30Z +2324 504 2 2020-02-15T06:59:30Z +2325 505 2 2020-02-15T06:59:30Z +2326 505 2 2020-02-15T06:59:30Z +2327 505 2 2020-02-15T06:59:30Z +2328 505 2 2020-02-15T06:59:30Z +2329 506 1 2020-02-15T06:59:30Z +2330 506 1 2020-02-15T06:59:30Z +2331 506 1 2020-02-15T06:59:30Z +2332 506 1 2020-02-15T06:59:30Z +2333 506 2 2020-02-15T06:59:30Z +2334 506 2 2020-02-15T06:59:30Z +2335 507 2 2020-02-15T06:59:30Z +2336 507 2 2020-02-15T06:59:30Z +2337 508 2 2020-02-15T06:59:30Z +2338 508 2 2020-02-15T06:59:30Z +2339 508 2 2020-02-15T06:59:30Z +2340 509 2 2020-02-15T06:59:30Z +2341 509 2 2020-02-15T06:59:30Z +2342 509 2 2020-02-15T06:59:30Z +2343 510 1 2020-02-15T06:59:30Z +2344 510 1 2020-02-15T06:59:30Z +2345 510 1 2020-02-15T06:59:30Z +2346 510 1 2020-02-15T06:59:30Z +2347 511 1 2020-02-15T06:59:30Z +2348 511 1 2020-02-15T06:59:30Z +2349 511 2 2020-02-15T06:59:30Z +2350 511 2 2020-02-15T06:59:30Z +2351 511 2 2020-02-15T06:59:30Z +2352 512 1 2020-02-15T06:59:30Z +2353 512 1 2020-02-15T06:59:30Z +2354 512 2 2020-02-15T06:59:30Z +2355 512 2 2020-02-15T06:59:30Z +2356 512 2 2020-02-15T06:59:30Z +2357 512 2 2020-02-15T06:59:30Z +2358 513 2 2020-02-15T06:59:30Z +2359 513 2 2020-02-15T06:59:30Z +2360 514 1 2020-02-15T06:59:30Z +2361 514 1 2020-02-15T06:59:30Z +2362 514 2 2020-02-15T06:59:30Z +2363 514 2 2020-02-15T06:59:30Z +2364 514 2 2020-02-15T06:59:30Z +2365 514 2 2020-02-15T06:59:30Z +2366 515 2 2020-02-15T06:59:30Z +2367 515 2 2020-02-15T06:59:30Z +2368 516 2 2020-02-15T06:59:30Z +2369 516 2 2020-02-15T06:59:30Z +2370 516 2 2020-02-15T06:59:30Z +2371 517 2 2020-02-15T06:59:30Z +2372 517 2 2020-02-15T06:59:30Z +2373 518 1 2020-02-15T06:59:30Z +2374 518 1 2020-02-15T06:59:30Z +2375 518 2 2020-02-15T06:59:30Z +2376 518 2 2020-02-15T06:59:30Z +2377 518 2 2020-02-15T06:59:30Z +2378 518 2 2020-02-15T06:59:30Z +2379 519 2 2020-02-15T06:59:30Z +2380 519 2 2020-02-15T06:59:30Z +2381 519 2 2020-02-15T06:59:30Z +2382 519 2 2020-02-15T06:59:30Z +2383 520 1 2020-02-15T06:59:30Z +2384 520 1 2020-02-15T06:59:30Z +2385 521 1 2020-02-15T06:59:30Z +2386 521 1 2020-02-15T06:59:30Z +2387 521 1 2020-02-15T06:59:30Z +2388 521 1 2020-02-15T06:59:30Z +2389 521 2 2020-02-15T06:59:30Z +2390 521 2 2020-02-15T06:59:30Z +2391 521 2 2020-02-15T06:59:30Z +2392 522 2 2020-02-15T06:59:30Z +2393 522 2 2020-02-15T06:59:30Z +2394 523 1 2020-02-15T06:59:30Z +2395 523 1 2020-02-15T06:59:30Z +2396 524 1 2020-02-15T06:59:30Z +2397 524 1 2020-02-15T06:59:30Z +2398 524 2 2020-02-15T06:59:30Z +2399 524 2 2020-02-15T06:59:30Z +2400 524 2 2020-02-15T06:59:30Z +2401 524 2 2020-02-15T06:59:30Z +2402 525 1 2020-02-15T06:59:30Z +2403 525 1 2020-02-15T06:59:30Z +2404 525 1 2020-02-15T06:59:30Z +2405 525 1 2020-02-15T06:59:30Z +2406 525 2 2020-02-15T06:59:30Z +2407 525 2 2020-02-15T06:59:30Z +2408 525 2 2020-02-15T06:59:30Z +2409 525 2 2020-02-15T06:59:30Z +2410 526 2 2020-02-15T06:59:30Z +2411 526 2 2020-02-15T06:59:30Z +2412 526 2 2020-02-15T06:59:30Z +2413 526 2 2020-02-15T06:59:30Z +2414 527 1 2020-02-15T06:59:30Z +2415 527 1 2020-02-15T06:59:30Z +2416 527 2 2020-02-15T06:59:30Z +2417 527 2 2020-02-15T06:59:30Z +2418 527 2 2020-02-15T06:59:30Z +2419 527 2 2020-02-15T06:59:30Z +2420 528 1 2020-02-15T06:59:30Z +2421 528 1 2020-02-15T06:59:30Z +2422 528 1 2020-02-15T06:59:30Z +2423 529 1 2020-02-15T06:59:30Z +2424 529 1 2020-02-15T06:59:30Z +2425 529 1 2020-02-15T06:59:30Z +2426 529 1 2020-02-15T06:59:30Z +2427 530 1 2020-02-15T06:59:30Z +2428 530 1 2020-02-15T06:59:30Z +2429 530 1 2020-02-15T06:59:30Z +2430 531 1 2020-02-15T06:59:30Z +2431 531 1 2020-02-15T06:59:30Z +2432 531 1 2020-02-15T06:59:30Z +2433 531 1 2020-02-15T06:59:30Z +2434 531 2 2020-02-15T06:59:30Z +2435 531 2 2020-02-15T06:59:30Z +2436 531 2 2020-02-15T06:59:30Z +2437 531 2 2020-02-15T06:59:30Z +2438 532 2 2020-02-15T06:59:30Z +2439 532 2 2020-02-15T06:59:30Z +2440 532 2 2020-02-15T06:59:30Z +2441 532 2 2020-02-15T06:59:30Z +2442 533 1 2020-02-15T06:59:30Z +2443 533 1 2020-02-15T06:59:30Z +2444 533 1 2020-02-15T06:59:30Z +2445 534 1 2020-02-15T06:59:30Z +2446 534 1 2020-02-15T06:59:30Z +2447 534 2 2020-02-15T06:59:30Z +2448 534 2 2020-02-15T06:59:30Z +2449 534 2 2020-02-15T06:59:31Z +2450 535 1 2020-02-15T06:59:31Z +2451 535 1 2020-02-15T06:59:31Z +2452 535 1 2020-02-15T06:59:31Z +2453 535 1 2020-02-15T06:59:31Z +2454 536 1 2020-02-15T06:59:31Z +2455 536 1 2020-02-15T06:59:31Z +2456 536 1 2020-02-15T06:59:31Z +2457 536 2 2020-02-15T06:59:31Z +2458 536 2 2020-02-15T06:59:31Z +2459 537 2 2020-02-15T06:59:31Z +2460 537 2 2020-02-15T06:59:31Z +2461 537 2 2020-02-15T06:59:31Z +2462 538 2 2020-02-15T06:59:31Z +2463 538 2 2020-02-15T06:59:31Z +2464 538 2 2020-02-15T06:59:31Z +2465 539 1 2020-02-15T06:59:31Z +2466 539 1 2020-02-15T06:59:31Z +2467 540 1 2020-02-15T06:59:31Z +2468 540 1 2020-02-15T06:59:31Z +2469 540 1 2020-02-15T06:59:31Z +2470 541 2 2020-02-15T06:59:31Z +2471 541 2 2020-02-15T06:59:31Z +2472 542 1 2020-02-15T06:59:31Z +2473 542 1 2020-02-15T06:59:31Z +2474 542 1 2020-02-15T06:59:31Z +2475 542 1 2020-02-15T06:59:31Z +2476 542 2 2020-02-15T06:59:31Z +2477 542 2 2020-02-15T06:59:31Z +2478 543 1 2020-02-15T06:59:31Z +2479 543 1 2020-02-15T06:59:31Z +2480 544 1 2020-02-15T06:59:31Z +2481 544 1 2020-02-15T06:59:31Z +2482 544 2 2020-02-15T06:59:31Z +2483 544 2 2020-02-15T06:59:31Z +2484 545 1 2020-02-15T06:59:31Z +2485 545 1 2020-02-15T06:59:31Z +2486 545 1 2020-02-15T06:59:31Z +2487 545 1 2020-02-15T06:59:31Z +2488 545 2 2020-02-15T06:59:31Z +2489 545 2 2020-02-15T06:59:31Z +2490 546 2 2020-02-15T06:59:31Z +2491 546 2 2020-02-15T06:59:31Z +2492 546 2 2020-02-15T06:59:31Z +2493 546 2 2020-02-15T06:59:31Z +2494 547 2 2020-02-15T06:59:31Z +2495 547 2 2020-02-15T06:59:31Z +2496 548 1 2020-02-15T06:59:31Z +2497 548 1 2020-02-15T06:59:31Z +2498 549 1 2020-02-15T06:59:31Z +2499 549 1 2020-02-15T06:59:31Z +2500 549 2 2020-02-15T06:59:31Z +2501 549 2 2020-02-15T06:59:31Z +2502 550 1 2020-02-15T06:59:31Z +2503 550 1 2020-02-15T06:59:31Z +2504 550 1 2020-02-15T06:59:31Z +2505 551 1 2020-02-15T06:59:31Z +2506 551 1 2020-02-15T06:59:31Z +2507 551 1 2020-02-15T06:59:31Z +2508 551 2 2020-02-15T06:59:31Z +2509 551 2 2020-02-15T06:59:31Z +2510 551 2 2020-02-15T06:59:31Z +2511 552 2 2020-02-15T06:59:31Z +2512 552 2 2020-02-15T06:59:31Z +2513 552 2 2020-02-15T06:59:31Z +2514 552 2 2020-02-15T06:59:31Z +2515 553 2 2020-02-15T06:59:31Z +2516 553 2 2020-02-15T06:59:31Z +2517 553 2 2020-02-15T06:59:31Z +2518 554 1 2020-02-15T06:59:31Z +2519 554 1 2020-02-15T06:59:31Z +2520 554 1 2020-02-15T06:59:31Z +2521 554 1 2020-02-15T06:59:31Z +2522 554 2 2020-02-15T06:59:31Z +2523 554 2 2020-02-15T06:59:31Z +2524 554 2 2020-02-15T06:59:31Z +2525 555 1 2020-02-15T06:59:31Z +2526 555 1 2020-02-15T06:59:31Z +2527 555 1 2020-02-15T06:59:31Z +2528 555 2 2020-02-15T06:59:31Z +2529 555 2 2020-02-15T06:59:31Z +2530 555 2 2020-02-15T06:59:31Z +2531 555 2 2020-02-15T06:59:31Z +2532 556 1 2020-02-15T06:59:31Z +2533 556 1 2020-02-15T06:59:31Z +2534 556 1 2020-02-15T06:59:31Z +2535 556 2 2020-02-15T06:59:31Z +2536 556 2 2020-02-15T06:59:31Z +2537 556 2 2020-02-15T06:59:31Z +2538 556 2 2020-02-15T06:59:31Z +2539 557 1 2020-02-15T06:59:31Z +2540 557 1 2020-02-15T06:59:31Z +2541 557 2 2020-02-15T06:59:31Z +2542 557 2 2020-02-15T06:59:31Z +2543 557 2 2020-02-15T06:59:31Z +2544 558 2 2020-02-15T06:59:31Z +2545 558 2 2020-02-15T06:59:31Z +2546 559 1 2020-02-15T06:59:31Z +2547 559 1 2020-02-15T06:59:31Z +2548 559 1 2020-02-15T06:59:31Z +2549 559 1 2020-02-15T06:59:31Z +2550 559 2 2020-02-15T06:59:31Z +2551 559 2 2020-02-15T06:59:31Z +2552 559 2 2020-02-15T06:59:31Z +2553 559 2 2020-02-15T06:59:31Z +2554 560 1 2020-02-15T06:59:31Z +2555 560 1 2020-02-15T06:59:31Z +2556 560 1 2020-02-15T06:59:31Z +2557 560 2 2020-02-15T06:59:31Z +2558 560 2 2020-02-15T06:59:31Z +2559 561 1 2020-02-15T06:59:31Z +2560 561 1 2020-02-15T06:59:31Z +2561 561 1 2020-02-15T06:59:31Z +2562 561 1 2020-02-15T06:59:31Z +2563 562 1 2020-02-15T06:59:31Z +2564 562 1 2020-02-15T06:59:31Z +2565 562 1 2020-02-15T06:59:31Z +2566 562 1 2020-02-15T06:59:31Z +2567 562 2 2020-02-15T06:59:31Z +2568 562 2 2020-02-15T06:59:31Z +2569 563 1 2020-02-15T06:59:31Z +2570 563 1 2020-02-15T06:59:31Z +2571 563 1 2020-02-15T06:59:31Z +2572 563 1 2020-02-15T06:59:31Z +2573 563 2 2020-02-15T06:59:31Z +2574 563 2 2020-02-15T06:59:31Z +2575 563 2 2020-02-15T06:59:31Z +2576 564 2 2020-02-15T06:59:31Z +2577 564 2 2020-02-15T06:59:31Z +2578 564 2 2020-02-15T06:59:31Z +2579 565 1 2020-02-15T06:59:31Z +2580 565 1 2020-02-15T06:59:31Z +2581 566 1 2020-02-15T06:59:31Z +2582 566 1 2020-02-15T06:59:31Z +2583 567 1 2020-02-15T06:59:31Z +2584 567 1 2020-02-15T06:59:31Z +2585 567 2 2020-02-15T06:59:31Z +2586 567 2 2020-02-15T06:59:31Z +2587 568 1 2020-02-15T06:59:31Z +2588 568 1 2020-02-15T06:59:31Z +2589 568 2 2020-02-15T06:59:31Z +2590 568 2 2020-02-15T06:59:31Z +2591 569 1 2020-02-15T06:59:31Z +2592 569 1 2020-02-15T06:59:31Z +2593 570 1 2020-02-15T06:59:31Z +2594 570 1 2020-02-15T06:59:31Z +2595 570 2 2020-02-15T06:59:31Z +2596 570 2 2020-02-15T06:59:31Z +2597 570 2 2020-02-15T06:59:31Z +2598 571 1 2020-02-15T06:59:31Z +2599 571 1 2020-02-15T06:59:31Z +2600 571 2 2020-02-15T06:59:31Z +2601 571 2 2020-02-15T06:59:31Z +2602 571 2 2020-02-15T06:59:31Z +2603 571 2 2020-02-15T06:59:31Z +2604 572 1 2020-02-15T06:59:31Z +2605 572 1 2020-02-15T06:59:31Z +2606 572 1 2020-02-15T06:59:31Z +2607 572 1 2020-02-15T06:59:31Z +2608 572 2 2020-02-15T06:59:31Z +2609 572 2 2020-02-15T06:59:31Z +2610 572 2 2020-02-15T06:59:31Z +2611 572 2 2020-02-15T06:59:31Z +2612 573 1 2020-02-15T06:59:31Z +2613 573 1 2020-02-15T06:59:31Z +2614 573 1 2020-02-15T06:59:31Z +2615 573 1 2020-02-15T06:59:31Z +2616 574 1 2020-02-15T06:59:31Z +2617 574 1 2020-02-15T06:59:31Z +2618 574 2 2020-02-15T06:59:31Z +2619 574 2 2020-02-15T06:59:31Z +2620 574 2 2020-02-15T06:59:31Z +2621 575 1 2020-02-15T06:59:31Z +2622 575 1 2020-02-15T06:59:31Z +2623 575 2 2020-02-15T06:59:31Z +2624 575 2 2020-02-15T06:59:31Z +2625 575 2 2020-02-15T06:59:31Z +2626 575 2 2020-02-15T06:59:31Z +2627 576 2 2020-02-15T06:59:31Z +2628 576 2 2020-02-15T06:59:31Z +2629 576 2 2020-02-15T06:59:31Z +2630 577 1 2020-02-15T06:59:31Z +2631 577 1 2020-02-15T06:59:31Z +2632 577 1 2020-02-15T06:59:31Z +2633 578 1 2020-02-15T06:59:31Z +2634 578 1 2020-02-15T06:59:31Z +2635 578 2 2020-02-15T06:59:31Z +2636 578 2 2020-02-15T06:59:31Z +2637 578 2 2020-02-15T06:59:31Z +2638 579 1 2020-02-15T06:59:31Z +2639 579 1 2020-02-15T06:59:31Z +2640 579 1 2020-02-15T06:59:31Z +2641 579 1 2020-02-15T06:59:31Z +2642 579 2 2020-02-15T06:59:31Z +2643 579 2 2020-02-15T06:59:31Z +2644 579 2 2020-02-15T06:59:31Z +2645 580 1 2020-02-15T06:59:31Z +2646 580 1 2020-02-15T06:59:31Z +2647 580 1 2020-02-15T06:59:31Z +2648 580 1 2020-02-15T06:59:31Z +2649 580 2 2020-02-15T06:59:31Z +2650 580 2 2020-02-15T06:59:31Z +2651 581 1 2020-02-15T06:59:31Z +2652 581 1 2020-02-15T06:59:31Z +2653 581 1 2020-02-15T06:59:31Z +2654 582 2 2020-02-15T06:59:31Z +2655 582 2 2020-02-15T06:59:31Z +2656 583 1 2020-02-15T06:59:31Z +2657 583 1 2020-02-15T06:59:31Z +2658 583 1 2020-02-15T06:59:31Z +2659 583 2 2020-02-15T06:59:31Z +2660 583 2 2020-02-15T06:59:31Z +2661 584 1 2020-02-15T06:59:31Z +2662 584 1 2020-02-15T06:59:31Z +2663 585 2 2020-02-15T06:59:31Z +2664 585 2 2020-02-15T06:59:31Z +2665 585 2 2020-02-15T06:59:31Z +2666 585 2 2020-02-15T06:59:31Z +2667 586 1 2020-02-15T06:59:31Z +2668 586 1 2020-02-15T06:59:31Z +2669 586 1 2020-02-15T06:59:31Z +2670 586 1 2020-02-15T06:59:31Z +2671 586 2 2020-02-15T06:59:31Z +2672 586 2 2020-02-15T06:59:31Z +2673 586 2 2020-02-15T06:59:31Z +2674 586 2 2020-02-15T06:59:31Z +2675 587 1 2020-02-15T06:59:31Z +2676 587 1 2020-02-15T06:59:31Z +2677 587 1 2020-02-15T06:59:31Z +2678 588 2 2020-02-15T06:59:31Z +2679 588 2 2020-02-15T06:59:31Z +2680 588 2 2020-02-15T06:59:31Z +2681 588 2 2020-02-15T06:59:31Z +2682 589 2 2020-02-15T06:59:31Z +2683 589 2 2020-02-15T06:59:31Z +2684 589 2 2020-02-15T06:59:31Z +2685 589 2 2020-02-15T06:59:31Z +2686 590 1 2020-02-15T06:59:31Z +2687 590 1 2020-02-15T06:59:31Z +2688 590 1 2020-02-15T06:59:31Z +2689 590 2 2020-02-15T06:59:31Z +2690 590 2 2020-02-15T06:59:31Z +2691 590 2 2020-02-15T06:59:31Z +2692 590 2 2020-02-15T06:59:31Z +2693 591 2 2020-02-15T06:59:31Z +2694 591 2 2020-02-15T06:59:31Z +2695 591 2 2020-02-15T06:59:31Z +2696 592 1 2020-02-15T06:59:31Z +2697 592 1 2020-02-15T06:59:31Z +2698 592 2 2020-02-15T06:59:31Z +2699 592 2 2020-02-15T06:59:31Z +2700 593 2 2020-02-15T06:59:31Z +2701 593 2 2020-02-15T06:59:31Z +2702 593 2 2020-02-15T06:59:31Z +2703 593 2 2020-02-15T06:59:31Z +2704 594 1 2020-02-15T06:59:31Z +2705 594 1 2020-02-15T06:59:31Z +2706 594 1 2020-02-15T06:59:31Z +2707 595 1 2020-02-15T06:59:31Z +2708 595 1 2020-02-15T06:59:31Z +2709 595 1 2020-02-15T06:59:31Z +2710 595 1 2020-02-15T06:59:31Z +2711 595 2 2020-02-15T06:59:31Z +2712 595 2 2020-02-15T06:59:31Z +2713 595 2 2020-02-15T06:59:31Z +2714 595 2 2020-02-15T06:59:31Z +2715 596 1 2020-02-15T06:59:31Z +2716 596 1 2020-02-15T06:59:31Z +2717 596 2 2020-02-15T06:59:31Z +2718 596 2 2020-02-15T06:59:31Z +2719 596 2 2020-02-15T06:59:31Z +2720 596 2 2020-02-15T06:59:31Z +2721 597 2 2020-02-15T06:59:31Z +2722 597 2 2020-02-15T06:59:31Z +2723 597 2 2020-02-15T06:59:31Z +2724 597 2 2020-02-15T06:59:31Z +2725 598 1 2020-02-15T06:59:31Z +2726 598 1 2020-02-15T06:59:31Z +2727 598 1 2020-02-15T06:59:31Z +2728 598 1 2020-02-15T06:59:31Z +2729 599 1 2020-02-15T06:59:31Z +2730 599 1 2020-02-15T06:59:31Z +2731 599 1 2020-02-15T06:59:31Z +2732 599 2 2020-02-15T06:59:31Z +2733 599 2 2020-02-15T06:59:31Z +2734 600 1 2020-02-15T06:59:31Z +2735 600 1 2020-02-15T06:59:31Z +2736 600 2 2020-02-15T06:59:31Z +2737 600 2 2020-02-15T06:59:31Z +2738 601 1 2020-02-15T06:59:31Z +2739 601 1 2020-02-15T06:59:31Z +2740 601 1 2020-02-15T06:59:31Z +2741 601 2 2020-02-15T06:59:31Z +2742 601 2 2020-02-15T06:59:31Z +2743 602 1 2020-02-15T06:59:31Z +2744 602 1 2020-02-15T06:59:31Z +2745 602 2 2020-02-15T06:59:31Z +2746 602 2 2020-02-15T06:59:31Z +2747 602 2 2020-02-15T06:59:31Z +2748 603 1 2020-02-15T06:59:31Z +2749 603 1 2020-02-15T06:59:31Z +2750 603 1 2020-02-15T06:59:31Z +2751 603 1 2020-02-15T06:59:31Z +2752 603 2 2020-02-15T06:59:31Z +2753 603 2 2020-02-15T06:59:31Z +2754 604 2 2020-02-15T06:59:31Z +2755 604 2 2020-02-15T06:59:31Z +2756 604 2 2020-02-15T06:59:31Z +2757 605 2 2020-02-15T06:59:31Z +2758 605 2 2020-02-15T06:59:31Z +2759 606 1 2020-02-15T06:59:31Z +2760 606 1 2020-02-15T06:59:31Z +2761 606 2 2020-02-15T06:59:31Z +2762 606 2 2020-02-15T06:59:31Z +2763 606 2 2020-02-15T06:59:31Z +2764 606 2 2020-02-15T06:59:31Z +2765 608 1 2020-02-15T06:59:31Z +2766 608 1 2020-02-15T06:59:31Z +2767 608 2 2020-02-15T06:59:31Z +2768 608 2 2020-02-15T06:59:31Z +2769 608 2 2020-02-15T06:59:31Z +2770 608 2 2020-02-15T06:59:31Z +2771 609 1 2020-02-15T06:59:31Z +2772 609 1 2020-02-15T06:59:31Z +2773 609 1 2020-02-15T06:59:31Z +2774 609 1 2020-02-15T06:59:31Z +2775 609 2 2020-02-15T06:59:31Z +2776 609 2 2020-02-15T06:59:31Z +2777 609 2 2020-02-15T06:59:31Z +2778 609 2 2020-02-15T06:59:31Z +2779 610 1 2020-02-15T06:59:31Z +2780 610 1 2020-02-15T06:59:31Z +2781 610 2 2020-02-15T06:59:31Z +2782 610 2 2020-02-15T06:59:31Z +2783 610 2 2020-02-15T06:59:31Z +2784 611 1 2020-02-15T06:59:31Z +2785 611 1 2020-02-15T06:59:31Z +2786 611 1 2020-02-15T06:59:31Z +2787 611 1 2020-02-15T06:59:31Z +2788 611 2 2020-02-15T06:59:31Z +2789 611 2 2020-02-15T06:59:31Z +2790 612 2 2020-02-15T06:59:31Z +2791 612 2 2020-02-15T06:59:31Z +2792 613 1 2020-02-15T06:59:31Z +2793 613 1 2020-02-15T06:59:31Z +2794 614 1 2020-02-15T06:59:31Z +2795 614 1 2020-02-15T06:59:31Z +2796 614 1 2020-02-15T06:59:31Z +2797 614 2 2020-02-15T06:59:31Z +2798 614 2 2020-02-15T06:59:31Z +2799 614 2 2020-02-15T06:59:31Z +2800 615 2 2020-02-15T06:59:31Z +2801 615 2 2020-02-15T06:59:31Z +2802 615 2 2020-02-15T06:59:31Z +2803 615 2 2020-02-15T06:59:31Z +2804 616 1 2020-02-15T06:59:31Z +2805 616 1 2020-02-15T06:59:31Z +2806 616 2 2020-02-15T06:59:31Z +2807 616 2 2020-02-15T06:59:31Z +2808 616 2 2020-02-15T06:59:31Z +2809 616 2 2020-02-15T06:59:31Z +2810 617 1 2020-02-15T06:59:31Z +2811 617 1 2020-02-15T06:59:31Z +2812 617 1 2020-02-15T06:59:31Z +2813 618 2 2020-02-15T06:59:31Z +2814 618 2 2020-02-15T06:59:31Z +2815 618 2 2020-02-15T06:59:31Z +2816 618 2 2020-02-15T06:59:31Z +2817 619 1 2020-02-15T06:59:31Z +2818 619 1 2020-02-15T06:59:31Z +2819 619 2 2020-02-15T06:59:31Z +2820 619 2 2020-02-15T06:59:31Z +2821 619 2 2020-02-15T06:59:31Z +2822 619 2 2020-02-15T06:59:31Z +2823 620 1 2020-02-15T06:59:31Z +2824 620 1 2020-02-15T06:59:31Z +2825 620 2 2020-02-15T06:59:31Z +2826 620 2 2020-02-15T06:59:31Z +2827 620 2 2020-02-15T06:59:31Z +2828 621 1 2020-02-15T06:59:31Z +2829 621 1 2020-02-15T06:59:31Z +2830 621 1 2020-02-15T06:59:31Z +2831 621 1 2020-02-15T06:59:31Z +2832 621 2 2020-02-15T06:59:31Z +2833 621 2 2020-02-15T06:59:31Z +2834 621 2 2020-02-15T06:59:31Z +2835 621 2 2020-02-15T06:59:31Z +2836 622 2 2020-02-15T06:59:31Z +2837 622 2 2020-02-15T06:59:31Z +2838 623 1 2020-02-15T06:59:31Z +2839 623 1 2020-02-15T06:59:31Z +2840 623 2 2020-02-15T06:59:31Z +2841 623 2 2020-02-15T06:59:31Z +2842 623 2 2020-02-15T06:59:31Z +2843 624 1 2020-02-15T06:59:31Z +2844 624 1 2020-02-15T06:59:31Z +2845 624 1 2020-02-15T06:59:31Z +2846 624 2 2020-02-15T06:59:31Z +2847 624 2 2020-02-15T06:59:31Z +2848 624 2 2020-02-15T06:59:31Z +2849 624 2 2020-02-15T06:59:31Z +2850 625 1 2020-02-15T06:59:31Z +2851 625 1 2020-02-15T06:59:31Z +2852 625 1 2020-02-15T06:59:31Z +2853 625 2 2020-02-15T06:59:31Z +2854 625 2 2020-02-15T06:59:31Z +2855 625 2 2020-02-15T06:59:31Z +2856 625 2 2020-02-15T06:59:31Z +2857 626 2 2020-02-15T06:59:31Z +2858 626 2 2020-02-15T06:59:31Z +2859 626 2 2020-02-15T06:59:31Z +2860 626 2 2020-02-15T06:59:31Z +2861 627 2 2020-02-15T06:59:31Z +2862 627 2 2020-02-15T06:59:31Z +2863 627 2 2020-02-15T06:59:31Z +2864 628 1 2020-02-15T06:59:31Z +2865 628 1 2020-02-15T06:59:31Z +2866 628 1 2020-02-15T06:59:31Z +2867 628 2 2020-02-15T06:59:31Z +2868 628 2 2020-02-15T06:59:31Z +2869 629 2 2020-02-15T06:59:31Z +2870 629 2 2020-02-15T06:59:31Z +2871 629 2 2020-02-15T06:59:31Z +2872 629 2 2020-02-15T06:59:31Z +2873 630 2 2020-02-15T06:59:31Z +2874 630 2 2020-02-15T06:59:31Z +2875 630 2 2020-02-15T06:59:31Z +2876 631 1 2020-02-15T06:59:31Z +2877 631 1 2020-02-15T06:59:31Z +2878 631 1 2020-02-15T06:59:31Z +2879 631 2 2020-02-15T06:59:31Z +2880 631 2 2020-02-15T06:59:31Z +2881 632 1 2020-02-15T06:59:31Z +2882 632 1 2020-02-15T06:59:31Z +2883 632 1 2020-02-15T06:59:31Z +2884 633 2 2020-02-15T06:59:31Z +2885 633 2 2020-02-15T06:59:31Z +2886 633 2 2020-02-15T06:59:31Z +2887 634 2 2020-02-15T06:59:31Z +2888 634 2 2020-02-15T06:59:31Z +2889 634 2 2020-02-15T06:59:31Z +2890 634 2 2020-02-15T06:59:31Z +2891 635 2 2020-02-15T06:59:31Z +2892 635 2 2020-02-15T06:59:31Z +2893 636 1 2020-02-15T06:59:31Z +2894 636 1 2020-02-15T06:59:31Z +2895 636 1 2020-02-15T06:59:31Z +2896 637 1 2020-02-15T06:59:31Z +2897 637 1 2020-02-15T06:59:31Z +2898 637 2 2020-02-15T06:59:31Z +2899 637 2 2020-02-15T06:59:31Z +2900 637 2 2020-02-15T06:59:31Z +2901 638 1 2020-02-15T06:59:31Z +2902 638 1 2020-02-15T06:59:31Z +2903 638 1 2020-02-15T06:59:31Z +2904 638 1 2020-02-15T06:59:31Z +2905 638 2 2020-02-15T06:59:31Z +2906 638 2 2020-02-15T06:59:31Z +2907 638 2 2020-02-15T06:59:31Z +2908 638 2 2020-02-15T06:59:31Z +2909 639 2 2020-02-15T06:59:31Z +2910 639 2 2020-02-15T06:59:31Z +2911 639 2 2020-02-15T06:59:31Z +2912 640 2 2020-02-15T06:59:31Z +2913 640 2 2020-02-15T06:59:31Z +2914 640 2 2020-02-15T06:59:31Z +2915 641 1 2020-02-15T06:59:31Z +2916 641 1 2020-02-15T06:59:31Z +2917 641 1 2020-02-15T06:59:31Z +2918 641 2 2020-02-15T06:59:31Z +2919 641 2 2020-02-15T06:59:31Z +2920 641 2 2020-02-15T06:59:31Z +2921 641 2 2020-02-15T06:59:31Z +2922 643 1 2020-02-15T06:59:31Z +2923 643 1 2020-02-15T06:59:31Z +2924 643 1 2020-02-15T06:59:31Z +2925 643 2 2020-02-15T06:59:31Z +2926 643 2 2020-02-15T06:59:31Z +2927 643 2 2020-02-15T06:59:31Z +2928 644 1 2020-02-15T06:59:31Z +2929 644 1 2020-02-15T06:59:31Z +2930 644 1 2020-02-15T06:59:31Z +2931 644 2 2020-02-15T06:59:31Z +2932 644 2 2020-02-15T06:59:31Z +2933 644 2 2020-02-15T06:59:31Z +2934 644 2 2020-02-15T06:59:31Z +2935 645 1 2020-02-15T06:59:31Z +2936 645 1 2020-02-15T06:59:31Z +2937 645 1 2020-02-15T06:59:31Z +2938 645 2 2020-02-15T06:59:31Z +2939 645 2 2020-02-15T06:59:31Z +2940 645 2 2020-02-15T06:59:31Z +2941 646 1 2020-02-15T06:59:31Z +2942 646 1 2020-02-15T06:59:31Z +2943 646 1 2020-02-15T06:59:31Z +2944 646 2 2020-02-15T06:59:31Z +2945 646 2 2020-02-15T06:59:31Z +2946 647 1 2020-02-15T06:59:31Z +2947 647 1 2020-02-15T06:59:31Z +2948 647 1 2020-02-15T06:59:31Z +2949 647 2 2020-02-15T06:59:31Z +2950 647 2 2020-02-15T06:59:31Z +2951 647 2 2020-02-15T06:59:31Z +2952 648 1 2020-02-15T06:59:31Z +2953 648 1 2020-02-15T06:59:31Z +2954 648 1 2020-02-15T06:59:31Z +2955 648 1 2020-02-15T06:59:31Z +2956 648 2 2020-02-15T06:59:31Z +2957 648 2 2020-02-15T06:59:31Z +2958 649 1 2020-02-15T06:59:31Z +2959 649 1 2020-02-15T06:59:31Z +2960 649 2 2020-02-15T06:59:31Z +2961 649 2 2020-02-15T06:59:31Z +2962 649 2 2020-02-15T06:59:31Z +2963 649 2 2020-02-15T06:59:31Z +2964 650 1 2020-02-15T06:59:31Z +2965 650 1 2020-02-15T06:59:31Z +2966 650 2 2020-02-15T06:59:31Z +2967 650 2 2020-02-15T06:59:31Z +2968 650 2 2020-02-15T06:59:31Z +2969 650 2 2020-02-15T06:59:31Z +2970 651 1 2020-02-15T06:59:31Z +2971 651 1 2020-02-15T06:59:31Z +2972 651 2 2020-02-15T06:59:31Z +2973 651 2 2020-02-15T06:59:31Z +2974 651 2 2020-02-15T06:59:31Z +2975 651 2 2020-02-15T06:59:31Z +2976 652 1 2020-02-15T06:59:31Z +2977 652 1 2020-02-15T06:59:31Z +2978 652 1 2020-02-15T06:59:31Z +2979 652 1 2020-02-15T06:59:31Z +2980 653 1 2020-02-15T06:59:31Z +2981 653 1 2020-02-15T06:59:31Z +2982 654 1 2020-02-15T06:59:31Z +2983 654 1 2020-02-15T06:59:31Z +2984 654 2 2020-02-15T06:59:31Z +2985 654 2 2020-02-15T06:59:31Z +2986 655 1 2020-02-15T06:59:31Z +2987 655 1 2020-02-15T06:59:31Z +2988 655 1 2020-02-15T06:59:31Z +2989 655 2 2020-02-15T06:59:31Z +2990 655 2 2020-02-15T06:59:31Z +2991 655 2 2020-02-15T06:59:31Z +2992 656 2 2020-02-15T06:59:31Z +2993 656 2 2020-02-15T06:59:31Z +2994 657 1 2020-02-15T06:59:31Z +2995 657 1 2020-02-15T06:59:31Z +2996 657 1 2020-02-15T06:59:31Z +2997 657 1 2020-02-15T06:59:31Z +2998 657 2 2020-02-15T06:59:31Z +2999 657 2 2020-02-15T06:59:31Z +3000 658 2 2020-02-15T06:59:31Z +3001 658 2 2020-02-15T06:59:31Z +3002 658 2 2020-02-15T06:59:31Z +3003 658 2 2020-02-15T06:59:31Z +3004 659 2 2020-02-15T06:59:31Z +3005 659 2 2020-02-15T06:59:31Z +3006 660 1 2020-02-15T06:59:31Z +3007 660 1 2020-02-15T06:59:31Z +3008 660 2 2020-02-15T06:59:31Z +3009 660 2 2020-02-15T06:59:31Z +3010 661 1 2020-02-15T06:59:31Z +3011 661 1 2020-02-15T06:59:31Z +3012 661 1 2020-02-15T06:59:31Z +3013 661 1 2020-02-15T06:59:31Z +3014 662 1 2020-02-15T06:59:31Z +3015 662 1 2020-02-15T06:59:31Z +3016 662 2 2020-02-15T06:59:31Z +3017 662 2 2020-02-15T06:59:31Z +3018 663 1 2020-02-15T06:59:31Z +3019 663 1 2020-02-15T06:59:31Z +3020 663 1 2020-02-15T06:59:31Z +3021 663 2 2020-02-15T06:59:31Z +3022 663 2 2020-02-15T06:59:31Z +3023 664 1 2020-02-15T06:59:31Z +3024 664 1 2020-02-15T06:59:31Z +3025 664 2 2020-02-15T06:59:31Z +3026 664 2 2020-02-15T06:59:31Z +3027 664 2 2020-02-15T06:59:31Z +3028 665 1 2020-02-15T06:59:31Z +3029 665 1 2020-02-15T06:59:31Z +3030 665 1 2020-02-15T06:59:31Z +3031 665 1 2020-02-15T06:59:31Z +3032 665 2 2020-02-15T06:59:31Z +3033 665 2 2020-02-15T06:59:31Z +3034 665 2 2020-02-15T06:59:31Z +3035 666 1 2020-02-15T06:59:31Z +3036 666 1 2020-02-15T06:59:31Z +3037 666 1 2020-02-15T06:59:31Z +3038 666 2 2020-02-15T06:59:31Z +3039 666 2 2020-02-15T06:59:31Z +3040 667 1 2020-02-15T06:59:31Z +3041 667 1 2020-02-15T06:59:31Z +3042 667 2 2020-02-15T06:59:31Z +3043 667 2 2020-02-15T06:59:31Z +3044 668 1 2020-02-15T06:59:31Z +3045 668 1 2020-02-15T06:59:31Z +3046 668 2 2020-02-15T06:59:31Z +3047 668 2 2020-02-15T06:59:31Z +3048 668 2 2020-02-15T06:59:31Z +3049 670 1 2020-02-15T06:59:31Z +3050 670 1 2020-02-15T06:59:31Z +3051 670 1 2020-02-15T06:59:31Z +3052 670 1 2020-02-15T06:59:31Z +3053 670 2 2020-02-15T06:59:31Z +3054 670 2 2020-02-15T06:59:31Z +3055 670 2 2020-02-15T06:59:31Z +3056 672 1 2020-02-15T06:59:31Z +3057 672 1 2020-02-15T06:59:31Z +3058 672 2 2020-02-15T06:59:31Z +3059 672 2 2020-02-15T06:59:31Z +3060 672 2 2020-02-15T06:59:31Z +3061 672 2 2020-02-15T06:59:31Z +3062 673 1 2020-02-15T06:59:31Z +3063 673 1 2020-02-15T06:59:31Z +3064 673 2 2020-02-15T06:59:31Z +3065 673 2 2020-02-15T06:59:31Z +3066 674 1 2020-02-15T06:59:31Z +3067 674 1 2020-02-15T06:59:31Z +3068 674 1 2020-02-15T06:59:31Z +3069 675 1 2020-02-15T06:59:31Z +3070 675 1 2020-02-15T06:59:31Z +3071 676 1 2020-02-15T06:59:31Z +3072 676 1 2020-02-15T06:59:31Z +3073 676 2 2020-02-15T06:59:31Z +3074 676 2 2020-02-15T06:59:31Z +3075 676 2 2020-02-15T06:59:31Z +3076 676 2 2020-02-15T06:59:31Z +3077 677 1 2020-02-15T06:59:31Z +3078 677 1 2020-02-15T06:59:31Z +3079 677 1 2020-02-15T06:59:31Z +3080 677 2 2020-02-15T06:59:31Z +3081 677 2 2020-02-15T06:59:31Z +3082 677 2 2020-02-15T06:59:31Z +3083 677 2 2020-02-15T06:59:31Z +3084 678 1 2020-02-15T06:59:31Z +3085 678 1 2020-02-15T06:59:31Z +3086 678 1 2020-02-15T06:59:31Z +3087 678 1 2020-02-15T06:59:31Z +3088 679 1 2020-02-15T06:59:31Z +3089 679 1 2020-02-15T06:59:31Z +3090 679 2 2020-02-15T06:59:31Z +3091 679 2 2020-02-15T06:59:31Z +3092 680 1 2020-02-15T06:59:31Z +3093 680 1 2020-02-15T06:59:31Z +3094 680 2 2020-02-15T06:59:31Z +3095 680 2 2020-02-15T06:59:31Z +3096 680 2 2020-02-15T06:59:31Z +3097 680 2 2020-02-15T06:59:31Z +3098 681 1 2020-02-15T06:59:31Z +3099 681 1 2020-02-15T06:59:31Z +3100 681 1 2020-02-15T06:59:31Z +3101 681 2 2020-02-15T06:59:31Z +3102 681 2 2020-02-15T06:59:31Z +3103 681 2 2020-02-15T06:59:31Z +3104 682 1 2020-02-15T06:59:31Z +3105 682 1 2020-02-15T06:59:31Z +3106 682 1 2020-02-15T06:59:31Z +3107 683 1 2020-02-15T06:59:31Z +3108 683 1 2020-02-15T06:59:31Z +3109 683 1 2020-02-15T06:59:31Z +3110 683 1 2020-02-15T06:59:31Z +3111 683 2 2020-02-15T06:59:31Z +3112 683 2 2020-02-15T06:59:31Z +3113 683 2 2020-02-15T06:59:31Z +3114 683 2 2020-02-15T06:59:31Z +3115 684 2 2020-02-15T06:59:31Z +3116 684 2 2020-02-15T06:59:31Z +3117 685 2 2020-02-15T06:59:31Z +3118 685 2 2020-02-15T06:59:31Z +3119 686 1 2020-02-15T06:59:31Z +3120 686 1 2020-02-15T06:59:31Z +3121 686 1 2020-02-15T06:59:31Z +3122 686 1 2020-02-15T06:59:31Z +3123 687 1 2020-02-15T06:59:31Z +3124 687 1 2020-02-15T06:59:31Z +3125 687 1 2020-02-15T06:59:31Z +3126 687 2 2020-02-15T06:59:31Z +3127 687 2 2020-02-15T06:59:31Z +3128 687 2 2020-02-15T06:59:31Z +3129 687 2 2020-02-15T06:59:31Z +3130 688 2 2020-02-15T06:59:31Z +3131 688 2 2020-02-15T06:59:31Z +3132 688 2 2020-02-15T06:59:31Z +3133 688 2 2020-02-15T06:59:31Z +3134 689 1 2020-02-15T06:59:31Z +3135 689 1 2020-02-15T06:59:31Z +3136 689 1 2020-02-15T06:59:31Z +3137 689 1 2020-02-15T06:59:31Z +3138 689 2 2020-02-15T06:59:31Z +3139 689 2 2020-02-15T06:59:31Z +3140 690 1 2020-02-15T06:59:31Z +3141 690 1 2020-02-15T06:59:31Z +3142 690 1 2020-02-15T06:59:31Z +3143 690 1 2020-02-15T06:59:31Z +3144 690 2 2020-02-15T06:59:31Z +3145 690 2 2020-02-15T06:59:31Z +3146 691 1 2020-02-15T06:59:31Z +3147 691 1 2020-02-15T06:59:31Z +3148 691 1 2020-02-15T06:59:31Z +3149 691 2 2020-02-15T06:59:31Z +3150 691 2 2020-02-15T06:59:31Z +3151 692 2 2020-02-15T06:59:31Z +3152 692 2 2020-02-15T06:59:31Z +3153 692 2 2020-02-15T06:59:31Z +3154 693 1 2020-02-15T06:59:31Z +3155 693 1 2020-02-15T06:59:31Z +3156 693 2 2020-02-15T06:59:31Z +3157 693 2 2020-02-15T06:59:31Z +3158 693 2 2020-02-15T06:59:31Z +3159 694 1 2020-02-15T06:59:31Z +3160 694 1 2020-02-15T06:59:31Z +3161 694 1 2020-02-15T06:59:31Z +3162 694 1 2020-02-15T06:59:31Z +3163 694 2 2020-02-15T06:59:31Z +3164 694 2 2020-02-15T06:59:31Z +3165 695 1 2020-02-15T06:59:31Z +3166 695 1 2020-02-15T06:59:31Z +3167 696 1 2020-02-15T06:59:31Z +3168 696 1 2020-02-15T06:59:31Z +3169 696 2 2020-02-15T06:59:31Z +3170 696 2 2020-02-15T06:59:31Z +3171 696 2 2020-02-15T06:59:31Z +3172 697 1 2020-02-15T06:59:31Z +3173 697 1 2020-02-15T06:59:31Z +3174 697 1 2020-02-15T06:59:31Z +3175 697 1 2020-02-15T06:59:31Z +3176 697 2 2020-02-15T06:59:31Z +3177 697 2 2020-02-15T06:59:31Z +3178 697 2 2020-02-15T06:59:31Z +3179 697 2 2020-02-15T06:59:31Z +3180 698 1 2020-02-15T06:59:31Z +3181 698 1 2020-02-15T06:59:31Z +3182 698 1 2020-02-15T06:59:31Z +3183 698 1 2020-02-15T06:59:31Z +3184 698 2 2020-02-15T06:59:31Z +3185 698 2 2020-02-15T06:59:31Z +3186 698 2 2020-02-15T06:59:31Z +3187 699 1 2020-02-15T06:59:31Z +3188 699 1 2020-02-15T06:59:31Z +3189 700 2 2020-02-15T06:59:31Z +3190 700 2 2020-02-15T06:59:31Z +3191 700 2 2020-02-15T06:59:31Z +3192 702 1 2020-02-15T06:59:31Z +3193 702 1 2020-02-15T06:59:31Z +3194 702 1 2020-02-15T06:59:31Z +3195 702 1 2020-02-15T06:59:31Z +3196 702 2 2020-02-15T06:59:31Z +3197 702 2 2020-02-15T06:59:31Z +3198 702 2 2020-02-15T06:59:31Z +3199 702 2 2020-02-15T06:59:31Z +3200 703 2 2020-02-15T06:59:31Z +3201 703 2 2020-02-15T06:59:31Z +3202 704 1 2020-02-15T06:59:31Z +3203 704 1 2020-02-15T06:59:31Z +3204 704 2 2020-02-15T06:59:31Z +3205 704 2 2020-02-15T06:59:31Z +3206 704 2 2020-02-15T06:59:31Z +3207 705 1 2020-02-15T06:59:31Z +3208 705 1 2020-02-15T06:59:31Z +3209 705 1 2020-02-15T06:59:31Z +3210 705 1 2020-02-15T06:59:31Z +3211 706 1 2020-02-15T06:59:31Z +3212 706 1 2020-02-15T06:59:31Z +3213 706 2 2020-02-15T06:59:31Z +3214 706 2 2020-02-15T06:59:31Z +3215 706 2 2020-02-15T06:59:31Z +3216 706 2 2020-02-15T06:59:31Z +3217 707 1 2020-02-15T06:59:31Z +3218 707 1 2020-02-15T06:59:31Z +3219 707 2 2020-02-15T06:59:31Z +3220 707 2 2020-02-15T06:59:31Z +3221 707 2 2020-02-15T06:59:31Z +3222 707 2 2020-02-15T06:59:31Z +3223 708 1 2020-02-15T06:59:31Z +3224 708 1 2020-02-15T06:59:31Z +3225 708 2 2020-02-15T06:59:31Z +3226 708 2 2020-02-15T06:59:31Z +3227 709 1 2020-02-15T06:59:31Z +3228 709 1 2020-02-15T06:59:31Z +3229 709 2 2020-02-15T06:59:31Z +3230 709 2 2020-02-15T06:59:31Z +3231 709 2 2020-02-15T06:59:31Z +3232 709 2 2020-02-15T06:59:31Z +3233 710 1 2020-02-15T06:59:31Z +3234 710 1 2020-02-15T06:59:31Z +3235 710 1 2020-02-15T06:59:31Z +3236 710 1 2020-02-15T06:59:31Z +3237 710 2 2020-02-15T06:59:31Z +3238 710 2 2020-02-15T06:59:31Z +3239 711 2 2020-02-15T06:59:31Z +3240 711 2 2020-02-15T06:59:31Z +3241 711 2 2020-02-15T06:59:31Z +3242 711 2 2020-02-15T06:59:31Z +3243 714 2 2020-02-15T06:59:31Z +3244 714 2 2020-02-15T06:59:31Z +3245 714 2 2020-02-15T06:59:31Z +3246 715 1 2020-02-15T06:59:31Z +3247 715 1 2020-02-15T06:59:31Z +3248 715 1 2020-02-15T06:59:31Z +3249 715 1 2020-02-15T06:59:31Z +3250 715 2 2020-02-15T06:59:31Z +3251 715 2 2020-02-15T06:59:31Z +3252 715 2 2020-02-15T06:59:31Z +3253 716 1 2020-02-15T06:59:31Z +3254 716 1 2020-02-15T06:59:31Z +3255 716 2 2020-02-15T06:59:31Z +3256 716 2 2020-02-15T06:59:31Z +3257 716 2 2020-02-15T06:59:31Z +3258 717 1 2020-02-15T06:59:31Z +3259 717 1 2020-02-15T06:59:31Z +3260 717 2 2020-02-15T06:59:31Z +3261 717 2 2020-02-15T06:59:31Z +3262 718 2 2020-02-15T06:59:31Z +3263 718 2 2020-02-15T06:59:31Z +3264 719 1 2020-02-15T06:59:31Z +3265 719 1 2020-02-15T06:59:31Z +3266 720 1 2020-02-15T06:59:31Z +3267 720 1 2020-02-15T06:59:31Z +3268 720 1 2020-02-15T06:59:31Z +3269 720 2 2020-02-15T06:59:31Z +3270 720 2 2020-02-15T06:59:31Z +3271 720 2 2020-02-15T06:59:31Z +3272 720 2 2020-02-15T06:59:31Z +3273 721 1 2020-02-15T06:59:31Z +3274 721 1 2020-02-15T06:59:31Z +3275 722 1 2020-02-15T06:59:31Z +3276 722 1 2020-02-15T06:59:31Z +3277 722 2 2020-02-15T06:59:31Z +3278 722 2 2020-02-15T06:59:31Z +3279 723 1 2020-02-15T06:59:31Z +3280 723 1 2020-02-15T06:59:31Z +3281 723 1 2020-02-15T06:59:31Z +3282 723 1 2020-02-15T06:59:31Z +3283 723 2 2020-02-15T06:59:31Z +3284 723 2 2020-02-15T06:59:31Z +3285 723 2 2020-02-15T06:59:31Z +3286 724 1 2020-02-15T06:59:31Z +3287 724 1 2020-02-15T06:59:31Z +3288 724 2 2020-02-15T06:59:31Z +3289 724 2 2020-02-15T06:59:31Z +3290 724 2 2020-02-15T06:59:31Z +3291 724 2 2020-02-15T06:59:31Z +3292 725 1 2020-02-15T06:59:31Z +3293 725 1 2020-02-15T06:59:31Z +3294 725 1 2020-02-15T06:59:31Z +3295 725 2 2020-02-15T06:59:31Z +3296 725 2 2020-02-15T06:59:31Z +3297 725 2 2020-02-15T06:59:31Z +3298 726 2 2020-02-15T06:59:31Z +3299 726 2 2020-02-15T06:59:31Z +3300 726 2 2020-02-15T06:59:31Z +3301 727 1 2020-02-15T06:59:31Z +3302 727 1 2020-02-15T06:59:31Z +3303 727 2 2020-02-15T06:59:31Z +3304 727 2 2020-02-15T06:59:31Z +3305 727 2 2020-02-15T06:59:31Z +3306 728 1 2020-02-15T06:59:31Z +3307 728 1 2020-02-15T06:59:31Z +3308 728 1 2020-02-15T06:59:31Z +3309 728 2 2020-02-15T06:59:31Z +3310 728 2 2020-02-15T06:59:31Z +3311 729 2 2020-02-15T06:59:31Z +3312 729 2 2020-02-15T06:59:31Z +3313 729 2 2020-02-15T06:59:31Z +3314 729 2 2020-02-15T06:59:31Z +3315 730 1 2020-02-15T06:59:31Z +3316 730 1 2020-02-15T06:59:31Z +3317 730 1 2020-02-15T06:59:31Z +3318 730 1 2020-02-15T06:59:31Z +3319 730 2 2020-02-15T06:59:31Z +3320 730 2 2020-02-15T06:59:31Z +3321 730 2 2020-02-15T06:59:31Z +3322 730 2 2020-02-15T06:59:31Z +3323 731 2 2020-02-15T06:59:31Z +3324 731 2 2020-02-15T06:59:31Z +3325 731 2 2020-02-15T06:59:31Z +3326 732 1 2020-02-15T06:59:31Z +3327 732 1 2020-02-15T06:59:31Z +3328 732 1 2020-02-15T06:59:31Z +3329 732 1 2020-02-15T06:59:31Z +3330 733 1 2020-02-15T06:59:31Z +3331 733 1 2020-02-15T06:59:31Z +3332 733 1 2020-02-15T06:59:31Z +3333 733 1 2020-02-15T06:59:31Z +3334 733 2 2020-02-15T06:59:31Z +3335 733 2 2020-02-15T06:59:31Z +3336 733 2 2020-02-15T06:59:31Z +3337 734 1 2020-02-15T06:59:31Z +3338 734 1 2020-02-15T06:59:31Z +3339 734 2 2020-02-15T06:59:31Z +3340 734 2 2020-02-15T06:59:31Z +3341 734 2 2020-02-15T06:59:31Z +3342 734 2 2020-02-15T06:59:31Z +3343 735 1 2020-02-15T06:59:31Z +3344 735 1 2020-02-15T06:59:31Z +3345 735 1 2020-02-15T06:59:31Z +3346 735 2 2020-02-15T06:59:31Z +3347 735 2 2020-02-15T06:59:31Z +3348 735 2 2020-02-15T06:59:31Z +3349 735 2 2020-02-15T06:59:31Z +3350 736 1 2020-02-15T06:59:31Z +3351 736 1 2020-02-15T06:59:31Z +3352 736 1 2020-02-15T06:59:31Z +3353 736 1 2020-02-15T06:59:31Z +3354 737 1 2020-02-15T06:59:31Z +3355 737 1 2020-02-15T06:59:31Z +3356 737 2 2020-02-15T06:59:31Z +3357 737 2 2020-02-15T06:59:31Z +3358 737 2 2020-02-15T06:59:31Z +3359 737 2 2020-02-15T06:59:31Z +3360 738 1 2020-02-15T06:59:31Z +3361 738 1 2020-02-15T06:59:31Z +3362 738 1 2020-02-15T06:59:31Z +3363 738 1 2020-02-15T06:59:31Z +3364 738 2 2020-02-15T06:59:31Z +3365 738 2 2020-02-15T06:59:31Z +3366 738 2 2020-02-15T06:59:31Z +3367 738 2 2020-02-15T06:59:31Z +3368 739 1 2020-02-15T06:59:31Z +3369 739 1 2020-02-15T06:59:31Z +3370 739 2 2020-02-15T06:59:31Z +3371 739 2 2020-02-15T06:59:31Z +3372 739 2 2020-02-15T06:59:31Z +3373 740 2 2020-02-15T06:59:31Z +3374 740 2 2020-02-15T06:59:31Z +3375 740 2 2020-02-15T06:59:31Z +3376 741 1 2020-02-15T06:59:31Z +3377 741 1 2020-02-15T06:59:31Z +3378 741 1 2020-02-15T06:59:31Z +3379 741 1 2020-02-15T06:59:31Z +3380 741 2 2020-02-15T06:59:31Z +3381 741 2 2020-02-15T06:59:31Z +3382 743 1 2020-02-15T06:59:31Z +3383 743 1 2020-02-15T06:59:31Z +3384 743 2 2020-02-15T06:59:31Z +3385 743 2 2020-02-15T06:59:31Z +3386 743 2 2020-02-15T06:59:31Z +3387 743 2 2020-02-15T06:59:31Z +3388 744 1 2020-02-15T06:59:31Z +3389 744 1 2020-02-15T06:59:31Z +3390 744 2 2020-02-15T06:59:31Z +3391 744 2 2020-02-15T06:59:31Z +3392 744 2 2020-02-15T06:59:31Z +3393 745 1 2020-02-15T06:59:31Z +3394 745 1 2020-02-15T06:59:31Z +3395 745 1 2020-02-15T06:59:31Z +3396 745 1 2020-02-15T06:59:31Z +3397 745 2 2020-02-15T06:59:31Z +3398 745 2 2020-02-15T06:59:31Z +3399 745 2 2020-02-15T06:59:31Z +3400 745 2 2020-02-15T06:59:31Z +3401 746 1 2020-02-15T06:59:31Z +3402 746 1 2020-02-15T06:59:31Z +3403 746 2 2020-02-15T06:59:31Z +3404 746 2 2020-02-15T06:59:31Z +3405 746 2 2020-02-15T06:59:31Z +3406 747 1 2020-02-15T06:59:31Z +3407 747 1 2020-02-15T06:59:31Z +3408 747 2 2020-02-15T06:59:31Z +3409 747 2 2020-02-15T06:59:31Z +3410 747 2 2020-02-15T06:59:31Z +3411 748 1 2020-02-15T06:59:31Z +3412 748 1 2020-02-15T06:59:31Z +3413 748 1 2020-02-15T06:59:31Z +3414 748 1 2020-02-15T06:59:31Z +3415 748 2 2020-02-15T06:59:31Z +3416 748 2 2020-02-15T06:59:31Z +3417 748 2 2020-02-15T06:59:31Z +3418 748 2 2020-02-15T06:59:31Z +3419 749 1 2020-02-15T06:59:31Z +3420 749 1 2020-02-15T06:59:31Z +3421 749 2 2020-02-15T06:59:31Z +3422 749 2 2020-02-15T06:59:31Z +3423 750 1 2020-02-15T06:59:31Z +3424 750 1 2020-02-15T06:59:31Z +3425 750 1 2020-02-15T06:59:31Z +3426 751 2 2020-02-15T06:59:31Z +3427 751 2 2020-02-15T06:59:31Z +3428 752 2 2020-02-15T06:59:31Z +3429 752 2 2020-02-15T06:59:31Z +3430 752 2 2020-02-15T06:59:31Z +3431 753 1 2020-02-15T06:59:31Z +3432 753 1 2020-02-15T06:59:31Z +3433 753 1 2020-02-15T06:59:31Z +3434 753 1 2020-02-15T06:59:31Z +3435 753 2 2020-02-15T06:59:31Z +3436 753 2 2020-02-15T06:59:31Z +3437 753 2 2020-02-15T06:59:31Z +3438 753 2 2020-02-15T06:59:31Z +3439 754 2 2020-02-15T06:59:31Z +3440 754 2 2020-02-15T06:59:31Z +3441 755 1 2020-02-15T06:59:31Z +3442 755 1 2020-02-15T06:59:31Z +3443 755 1 2020-02-15T06:59:31Z +3444 755 1 2020-02-15T06:59:31Z +3445 755 2 2020-02-15T06:59:31Z +3446 755 2 2020-02-15T06:59:31Z +3447 755 2 2020-02-15T06:59:31Z +3448 756 2 2020-02-15T06:59:31Z +3449 756 2 2020-02-15T06:59:31Z +3450 756 2 2020-02-15T06:59:31Z +3451 757 1 2020-02-15T06:59:31Z +3452 757 1 2020-02-15T06:59:31Z +3453 757 1 2020-02-15T06:59:31Z +3454 757 2 2020-02-15T06:59:31Z +3455 757 2 2020-02-15T06:59:31Z +3456 758 2 2020-02-15T06:59:31Z +3457 758 2 2020-02-15T06:59:31Z +3458 758 2 2020-02-15T06:59:31Z +3459 759 1 2020-02-15T06:59:31Z +3460 759 1 2020-02-15T06:59:31Z +3461 759 2 2020-02-15T06:59:31Z +3462 759 2 2020-02-15T06:59:31Z +3463 759 2 2020-02-15T06:59:31Z +3464 759 2 2020-02-15T06:59:31Z +3465 760 1 2020-02-15T06:59:31Z +3466 760 1 2020-02-15T06:59:31Z +3467 760 1 2020-02-15T06:59:31Z +3468 760 2 2020-02-15T06:59:31Z +3469 760 2 2020-02-15T06:59:31Z +3470 760 2 2020-02-15T06:59:31Z +3471 760 2 2020-02-15T06:59:31Z +3472 761 2 2020-02-15T06:59:31Z +3473 761 2 2020-02-15T06:59:31Z +3474 761 2 2020-02-15T06:59:31Z +3475 762 2 2020-02-15T06:59:31Z +3476 762 2 2020-02-15T06:59:31Z +3477 762 2 2020-02-15T06:59:31Z +3478 762 2 2020-02-15T06:59:31Z +3479 763 1 2020-02-15T06:59:31Z +3480 763 1 2020-02-15T06:59:31Z +3481 763 1 2020-02-15T06:59:31Z +3482 763 2 2020-02-15T06:59:31Z +3483 763 2 2020-02-15T06:59:31Z +3484 764 1 2020-02-15T06:59:31Z +3485 764 1 2020-02-15T06:59:31Z +3486 764 1 2020-02-15T06:59:31Z +3487 764 1 2020-02-15T06:59:31Z +3488 764 2 2020-02-15T06:59:31Z +3489 764 2 2020-02-15T06:59:31Z +3490 764 2 2020-02-15T06:59:31Z +3491 764 2 2020-02-15T06:59:31Z +3492 765 1 2020-02-15T06:59:31Z +3493 765 1 2020-02-15T06:59:31Z +3494 765 1 2020-02-15T06:59:31Z +3495 765 1 2020-02-15T06:59:31Z +3496 766 1 2020-02-15T06:59:31Z +3497 766 1 2020-02-15T06:59:31Z +3498 766 1 2020-02-15T06:59:31Z +3499 767 1 2020-02-15T06:59:31Z +3500 767 1 2020-02-15T06:59:31Z +3501 767 1 2020-02-15T06:59:31Z +3502 767 1 2020-02-15T06:59:31Z +3503 767 2 2020-02-15T06:59:31Z +3504 767 2 2020-02-15T06:59:31Z +3505 767 2 2020-02-15T06:59:31Z +3506 767 2 2020-02-15T06:59:31Z +3507 768 1 2020-02-15T06:59:31Z +3508 768 1 2020-02-15T06:59:31Z +3509 768 1 2020-02-15T06:59:31Z +3510 768 2 2020-02-15T06:59:31Z +3511 768 2 2020-02-15T06:59:31Z +3512 768 2 2020-02-15T06:59:31Z +3513 769 2 2020-02-15T06:59:31Z +3514 769 2 2020-02-15T06:59:31Z +3515 770 2 2020-02-15T06:59:31Z +3516 770 2 2020-02-15T06:59:31Z +3517 770 2 2020-02-15T06:59:31Z +3518 771 1 2020-02-15T06:59:31Z +3519 771 1 2020-02-15T06:59:31Z +3520 771 1 2020-02-15T06:59:31Z +3521 771 2 2020-02-15T06:59:31Z +3522 771 2 2020-02-15T06:59:31Z +3523 771 2 2020-02-15T06:59:31Z +3524 771 2 2020-02-15T06:59:31Z +3525 772 1 2020-02-15T06:59:31Z +3526 772 1 2020-02-15T06:59:31Z +3527 772 1 2020-02-15T06:59:31Z +3528 772 1 2020-02-15T06:59:31Z +3529 772 2 2020-02-15T06:59:31Z +3530 772 2 2020-02-15T06:59:31Z +3531 773 1 2020-02-15T06:59:31Z +3532 773 1 2020-02-15T06:59:31Z +3533 773 1 2020-02-15T06:59:31Z +3534 773 1 2020-02-15T06:59:31Z +3535 773 2 2020-02-15T06:59:31Z +3536 773 2 2020-02-15T06:59:31Z +3537 773 2 2020-02-15T06:59:31Z +3538 773 2 2020-02-15T06:59:31Z +3539 774 1 2020-02-15T06:59:31Z +3540 774 1 2020-02-15T06:59:31Z +3541 774 1 2020-02-15T06:59:31Z +3542 774 1 2020-02-15T06:59:31Z +3543 775 1 2020-02-15T06:59:31Z +3544 775 1 2020-02-15T06:59:31Z +3545 775 1 2020-02-15T06:59:31Z +3546 775 2 2020-02-15T06:59:31Z +3547 775 2 2020-02-15T06:59:31Z +3548 776 1 2020-02-15T06:59:31Z +3549 776 1 2020-02-15T06:59:31Z +3550 776 2 2020-02-15T06:59:31Z +3551 776 2 2020-02-15T06:59:31Z +3552 776 2 2020-02-15T06:59:31Z +3553 777 1 2020-02-15T06:59:31Z +3554 777 1 2020-02-15T06:59:31Z +3555 777 1 2020-02-15T06:59:31Z +3556 777 2 2020-02-15T06:59:31Z +3557 777 2 2020-02-15T06:59:31Z +3558 777 2 2020-02-15T06:59:31Z +3559 778 1 2020-02-15T06:59:31Z +3560 778 1 2020-02-15T06:59:31Z +3561 778 1 2020-02-15T06:59:31Z +3562 778 1 2020-02-15T06:59:31Z +3563 778 2 2020-02-15T06:59:31Z +3564 778 2 2020-02-15T06:59:31Z +3565 779 2 2020-02-15T06:59:31Z +3566 779 2 2020-02-15T06:59:31Z +3567 780 2 2020-02-15T06:59:31Z +3568 780 2 2020-02-15T06:59:31Z +3569 780 2 2020-02-15T06:59:31Z +3570 781 2 2020-02-15T06:59:31Z +3571 781 2 2020-02-15T06:59:31Z +3572 782 1 2020-02-15T06:59:31Z +3573 782 1 2020-02-15T06:59:31Z +3574 782 1 2020-02-15T06:59:31Z +3575 782 2 2020-02-15T06:59:31Z +3576 782 2 2020-02-15T06:59:31Z +3577 782 2 2020-02-15T06:59:31Z +3578 783 1 2020-02-15T06:59:31Z +3579 783 1 2020-02-15T06:59:31Z +3580 783 1 2020-02-15T06:59:31Z +3581 783 1 2020-02-15T06:59:31Z +3582 784 1 2020-02-15T06:59:31Z +3583 784 1 2020-02-15T06:59:31Z +3584 784 1 2020-02-15T06:59:31Z +3585 784 2 2020-02-15T06:59:31Z +3586 784 2 2020-02-15T06:59:31Z +3587 784 2 2020-02-15T06:59:31Z +3588 785 1 2020-02-15T06:59:31Z +3589 785 1 2020-02-15T06:59:31Z +3590 785 1 2020-02-15T06:59:31Z +3591 785 1 2020-02-15T06:59:31Z +3592 785 2 2020-02-15T06:59:31Z +3593 785 2 2020-02-15T06:59:31Z +3594 786 1 2020-02-15T06:59:31Z +3595 786 1 2020-02-15T06:59:31Z +3596 786 1 2020-02-15T06:59:31Z +3597 786 2 2020-02-15T06:59:31Z +3598 786 2 2020-02-15T06:59:31Z +3599 786 2 2020-02-15T06:59:31Z +3600 786 2 2020-02-15T06:59:31Z +3601 787 1 2020-02-15T06:59:31Z +3602 787 1 2020-02-15T06:59:31Z +3603 787 1 2020-02-15T06:59:31Z +3604 788 1 2020-02-15T06:59:31Z +3605 788 1 2020-02-15T06:59:31Z +3606 788 2 2020-02-15T06:59:31Z +3607 788 2 2020-02-15T06:59:31Z +3608 789 1 2020-02-15T06:59:31Z +3609 789 1 2020-02-15T06:59:31Z +3610 789 1 2020-02-15T06:59:31Z +3611 789 1 2020-02-15T06:59:31Z +3612 789 2 2020-02-15T06:59:31Z +3613 789 2 2020-02-15T06:59:31Z +3614 789 2 2020-02-15T06:59:31Z +3615 789 2 2020-02-15T06:59:31Z +3616 790 1 2020-02-15T06:59:31Z +3617 790 1 2020-02-15T06:59:31Z +3618 790 1 2020-02-15T06:59:31Z +3619 790 1 2020-02-15T06:59:31Z +3620 790 2 2020-02-15T06:59:31Z +3621 790 2 2020-02-15T06:59:31Z +3622 790 2 2020-02-15T06:59:31Z +3623 791 1 2020-02-15T06:59:31Z +3624 791 1 2020-02-15T06:59:31Z +3625 791 2 2020-02-15T06:59:31Z +3626 791 2 2020-02-15T06:59:31Z +3627 791 2 2020-02-15T06:59:31Z +3628 791 2 2020-02-15T06:59:31Z +3629 792 2 2020-02-15T06:59:31Z +3630 792 2 2020-02-15T06:59:31Z +3631 792 2 2020-02-15T06:59:31Z +3632 793 1 2020-02-15T06:59:31Z +3633 793 1 2020-02-15T06:59:31Z +3634 793 1 2020-02-15T06:59:31Z +3635 793 1 2020-02-15T06:59:31Z +3636 794 1 2020-02-15T06:59:31Z +3637 794 1 2020-02-15T06:59:31Z +3638 794 2 2020-02-15T06:59:31Z +3639 794 2 2020-02-15T06:59:31Z +3640 795 1 2020-02-15T06:59:31Z +3641 795 1 2020-02-15T06:59:31Z +3642 795 1 2020-02-15T06:59:31Z +3643 795 1 2020-02-15T06:59:31Z +3644 796 1 2020-02-15T06:59:31Z +3645 796 1 2020-02-15T06:59:31Z +3646 796 2 2020-02-15T06:59:31Z +3647 796 2 2020-02-15T06:59:31Z +3648 796 2 2020-02-15T06:59:31Z +3649 797 1 2020-02-15T06:59:31Z +3650 797 1 2020-02-15T06:59:31Z +3651 797 2 2020-02-15T06:59:31Z +3652 797 2 2020-02-15T06:59:31Z +3653 797 2 2020-02-15T06:59:31Z +3654 798 1 2020-02-15T06:59:31Z +3655 798 1 2020-02-15T06:59:31Z +3656 798 2 2020-02-15T06:59:31Z +3657 798 2 2020-02-15T06:59:31Z +3658 799 1 2020-02-15T06:59:31Z +3659 799 1 2020-02-15T06:59:31Z +3660 800 1 2020-02-15T06:59:31Z +3661 800 1 2020-02-15T06:59:31Z +3662 800 2 2020-02-15T06:59:31Z +3663 800 2 2020-02-15T06:59:31Z +3664 800 2 2020-02-15T06:59:31Z +3665 800 2 2020-02-15T06:59:31Z +3666 803 1 2020-02-15T06:59:31Z +3667 803 1 2020-02-15T06:59:31Z +3668 803 1 2020-02-15T06:59:31Z +3669 803 1 2020-02-15T06:59:31Z +3670 803 2 2020-02-15T06:59:31Z +3671 803 2 2020-02-15T06:59:31Z +3672 804 1 2020-02-15T06:59:31Z +3673 804 1 2020-02-15T06:59:31Z +3674 804 1 2020-02-15T06:59:31Z +3675 804 1 2020-02-15T06:59:31Z +3676 804 2 2020-02-15T06:59:31Z +3677 804 2 2020-02-15T06:59:31Z +3678 804 2 2020-02-15T06:59:31Z +3679 805 1 2020-02-15T06:59:31Z +3680 805 1 2020-02-15T06:59:31Z +3681 805 2 2020-02-15T06:59:31Z +3682 805 2 2020-02-15T06:59:31Z +3683 805 2 2020-02-15T06:59:31Z +3684 806 1 2020-02-15T06:59:31Z +3685 806 1 2020-02-15T06:59:31Z +3686 806 1 2020-02-15T06:59:31Z +3687 806 2 2020-02-15T06:59:31Z +3688 806 2 2020-02-15T06:59:31Z +3689 807 1 2020-02-15T06:59:31Z +3690 807 1 2020-02-15T06:59:31Z +3691 807 1 2020-02-15T06:59:31Z +3692 807 2 2020-02-15T06:59:31Z +3693 807 2 2020-02-15T06:59:31Z +3694 808 2 2020-02-15T06:59:31Z +3695 808 2 2020-02-15T06:59:31Z +3696 809 2 2020-02-15T06:59:31Z +3697 809 2 2020-02-15T06:59:31Z +3698 809 2 2020-02-15T06:59:31Z +3699 809 2 2020-02-15T06:59:31Z +3700 810 1 2020-02-15T06:59:31Z +3701 810 1 2020-02-15T06:59:31Z +3702 810 1 2020-02-15T06:59:31Z +3703 810 1 2020-02-15T06:59:31Z +3704 810 2 2020-02-15T06:59:31Z +3705 810 2 2020-02-15T06:59:31Z +3706 810 2 2020-02-15T06:59:31Z +3707 811 1 2020-02-15T06:59:31Z +3708 811 1 2020-02-15T06:59:31Z +3709 811 1 2020-02-15T06:59:31Z +3710 812 1 2020-02-15T06:59:31Z +3711 812 1 2020-02-15T06:59:31Z +3712 812 1 2020-02-15T06:59:31Z +3713 812 2 2020-02-15T06:59:31Z +3714 812 2 2020-02-15T06:59:31Z +3715 812 2 2020-02-15T06:59:31Z +3716 813 2 2020-02-15T06:59:31Z +3717 813 2 2020-02-15T06:59:31Z +3718 813 2 2020-02-15T06:59:31Z +3719 813 2 2020-02-15T06:59:31Z +3720 814 1 2020-02-15T06:59:31Z +3721 814 1 2020-02-15T06:59:31Z +3722 814 1 2020-02-15T06:59:31Z +3723 814 2 2020-02-15T06:59:31Z +3724 814 2 2020-02-15T06:59:31Z +3725 814 2 2020-02-15T06:59:31Z +3726 814 2 2020-02-15T06:59:31Z +3727 815 1 2020-02-15T06:59:31Z +3728 815 1 2020-02-15T06:59:31Z +3729 815 1 2020-02-15T06:59:31Z +3730 816 1 2020-02-15T06:59:31Z +3731 816 1 2020-02-15T06:59:31Z +3732 816 1 2020-02-15T06:59:31Z +3733 816 1 2020-02-15T06:59:31Z +3734 816 2 2020-02-15T06:59:31Z +3735 816 2 2020-02-15T06:59:31Z +3736 816 2 2020-02-15T06:59:31Z +3737 817 1 2020-02-15T06:59:31Z +3738 817 1 2020-02-15T06:59:31Z +3739 818 1 2020-02-15T06:59:31Z +3740 818 1 2020-02-15T06:59:31Z +3741 818 1 2020-02-15T06:59:31Z +3742 818 2 2020-02-15T06:59:31Z +3743 818 2 2020-02-15T06:59:31Z +3744 819 1 2020-02-15T06:59:31Z +3745 819 1 2020-02-15T06:59:31Z +3746 819 1 2020-02-15T06:59:31Z +3747 820 1 2020-02-15T06:59:31Z +3748 820 1 2020-02-15T06:59:31Z +3749 820 1 2020-02-15T06:59:31Z +3750 820 1 2020-02-15T06:59:31Z +3751 820 2 2020-02-15T06:59:31Z +3752 820 2 2020-02-15T06:59:31Z +3753 821 2 2020-02-15T06:59:31Z +3754 821 2 2020-02-15T06:59:31Z +3755 821 2 2020-02-15T06:59:31Z +3756 821 2 2020-02-15T06:59:31Z +3757 822 2 2020-02-15T06:59:31Z +3758 822 2 2020-02-15T06:59:31Z +3759 823 1 2020-02-15T06:59:31Z +3760 823 1 2020-02-15T06:59:31Z +3761 823 1 2020-02-15T06:59:31Z +3762 823 2 2020-02-15T06:59:31Z +3763 823 2 2020-02-15T06:59:31Z +3764 823 2 2020-02-15T06:59:31Z +3765 823 2 2020-02-15T06:59:31Z +3766 824 2 2020-02-15T06:59:31Z +3767 824 2 2020-02-15T06:59:31Z +3768 824 2 2020-02-15T06:59:31Z +3769 824 2 2020-02-15T06:59:31Z +3770 825 1 2020-02-15T06:59:31Z +3771 825 1 2020-02-15T06:59:31Z +3772 825 1 2020-02-15T06:59:31Z +3773 826 2 2020-02-15T06:59:31Z +3774 826 2 2020-02-15T06:59:31Z +3775 827 1 2020-02-15T06:59:31Z +3776 827 1 2020-02-15T06:59:31Z +3777 827 2 2020-02-15T06:59:31Z +3778 827 2 2020-02-15T06:59:31Z +3779 827 2 2020-02-15T06:59:31Z +3780 827 2 2020-02-15T06:59:31Z +3781 828 2 2020-02-15T06:59:31Z +3782 828 2 2020-02-15T06:59:31Z +3783 828 2 2020-02-15T06:59:31Z +3784 828 2 2020-02-15T06:59:31Z +3785 829 1 2020-02-15T06:59:31Z +3786 829 1 2020-02-15T06:59:31Z +3787 829 2 2020-02-15T06:59:31Z +3788 829 2 2020-02-15T06:59:31Z +3789 829 2 2020-02-15T06:59:31Z +3790 830 2 2020-02-15T06:59:31Z +3791 830 2 2020-02-15T06:59:31Z +3792 830 2 2020-02-15T06:59:31Z +3793 830 2 2020-02-15T06:59:31Z +3794 831 1 2020-02-15T06:59:31Z +3795 831 1 2020-02-15T06:59:31Z +3796 831 1 2020-02-15T06:59:31Z +3797 832 1 2020-02-15T06:59:31Z +3798 832 1 2020-02-15T06:59:31Z +3799 832 1 2020-02-15T06:59:31Z +3800 832 1 2020-02-15T06:59:31Z +3801 833 1 2020-02-15T06:59:31Z +3802 833 1 2020-02-15T06:59:31Z +3803 833 1 2020-02-15T06:59:31Z +3804 833 2 2020-02-15T06:59:31Z +3805 833 2 2020-02-15T06:59:31Z +3806 833 2 2020-02-15T06:59:31Z +3807 833 2 2020-02-15T06:59:31Z +3808 834 2 2020-02-15T06:59:31Z +3809 834 2 2020-02-15T06:59:31Z +3810 834 2 2020-02-15T06:59:31Z +3811 835 1 2020-02-15T06:59:31Z +3812 835 1 2020-02-15T06:59:31Z +3813 835 1 2020-02-15T06:59:31Z +3814 835 1 2020-02-15T06:59:31Z +3815 835 2 2020-02-15T06:59:31Z +3816 835 2 2020-02-15T06:59:31Z +3817 835 2 2020-02-15T06:59:31Z +3818 835 2 2020-02-15T06:59:31Z +3819 836 1 2020-02-15T06:59:31Z +3820 836 1 2020-02-15T06:59:31Z +3821 836 1 2020-02-15T06:59:31Z +3822 837 2 2020-02-15T06:59:31Z +3823 837 2 2020-02-15T06:59:31Z +3824 837 2 2020-02-15T06:59:31Z +3825 838 1 2020-02-15T06:59:31Z +3826 838 1 2020-02-15T06:59:31Z +3827 838 2 2020-02-15T06:59:31Z +3828 838 2 2020-02-15T06:59:31Z +3829 838 2 2020-02-15T06:59:31Z +3830 838 2 2020-02-15T06:59:31Z +3831 839 2 2020-02-15T06:59:31Z +3832 839 2 2020-02-15T06:59:31Z +3833 840 1 2020-02-15T06:59:31Z +3834 840 1 2020-02-15T06:59:31Z +3835 840 1 2020-02-15T06:59:31Z +3836 840 1 2020-02-15T06:59:31Z +3837 841 1 2020-02-15T06:59:31Z +3838 841 1 2020-02-15T06:59:31Z +3839 841 1 2020-02-15T06:59:31Z +3840 841 2 2020-02-15T06:59:31Z +3841 841 2 2020-02-15T06:59:31Z +3842 841 2 2020-02-15T06:59:31Z +3843 841 2 2020-02-15T06:59:31Z +3844 842 1 2020-02-15T06:59:31Z +3845 842 1 2020-02-15T06:59:31Z +3846 842 2 2020-02-15T06:59:31Z +3847 842 2 2020-02-15T06:59:31Z +3848 843 1 2020-02-15T06:59:31Z +3849 843 1 2020-02-15T06:59:31Z +3850 843 1 2020-02-15T06:59:31Z +3851 843 1 2020-02-15T06:59:31Z +3852 843 2 2020-02-15T06:59:31Z +3853 843 2 2020-02-15T06:59:31Z +3854 843 2 2020-02-15T06:59:31Z +3855 844 1 2020-02-15T06:59:31Z +3856 844 1 2020-02-15T06:59:31Z +3857 844 2 2020-02-15T06:59:31Z +3858 844 2 2020-02-15T06:59:31Z +3859 845 1 2020-02-15T06:59:31Z +3860 845 1 2020-02-15T06:59:31Z +3861 845 1 2020-02-15T06:59:31Z +3862 845 1 2020-02-15T06:59:31Z +3863 845 2 2020-02-15T06:59:31Z +3864 845 2 2020-02-15T06:59:31Z +3865 845 2 2020-02-15T06:59:31Z +3866 846 1 2020-02-15T06:59:31Z +3867 846 1 2020-02-15T06:59:31Z +3868 846 1 2020-02-15T06:59:31Z +3869 846 1 2020-02-15T06:59:31Z +3870 846 2 2020-02-15T06:59:31Z +3871 846 2 2020-02-15T06:59:31Z +3872 846 2 2020-02-15T06:59:31Z +3873 846 2 2020-02-15T06:59:31Z +3874 847 2 2020-02-15T06:59:31Z +3875 847 2 2020-02-15T06:59:31Z +3876 847 2 2020-02-15T06:59:31Z +3877 847 2 2020-02-15T06:59:31Z +3878 848 1 2020-02-15T06:59:31Z +3879 848 1 2020-02-15T06:59:31Z +3880 848 1 2020-02-15T06:59:31Z +3881 849 1 2020-02-15T06:59:31Z +3882 849 1 2020-02-15T06:59:31Z +3883 849 1 2020-02-15T06:59:31Z +3884 849 1 2020-02-15T06:59:31Z +3885 849 2 2020-02-15T06:59:31Z +3886 849 2 2020-02-15T06:59:31Z +3887 849 2 2020-02-15T06:59:31Z +3888 849 2 2020-02-15T06:59:31Z +3889 850 1 2020-02-15T06:59:31Z +3890 850 1 2020-02-15T06:59:31Z +3891 850 1 2020-02-15T06:59:31Z +3892 850 2 2020-02-15T06:59:31Z +3893 850 2 2020-02-15T06:59:31Z +3894 850 2 2020-02-15T06:59:31Z +3895 850 2 2020-02-15T06:59:31Z +3896 851 1 2020-02-15T06:59:31Z +3897 851 1 2020-02-15T06:59:31Z +3898 851 1 2020-02-15T06:59:31Z +3899 851 2 2020-02-15T06:59:31Z +3900 851 2 2020-02-15T06:59:31Z +3901 851 2 2020-02-15T06:59:31Z +3902 852 1 2020-02-15T06:59:31Z +3903 852 1 2020-02-15T06:59:31Z +3904 852 1 2020-02-15T06:59:31Z +3905 852 1 2020-02-15T06:59:31Z +3906 852 2 2020-02-15T06:59:31Z +3907 852 2 2020-02-15T06:59:31Z +3908 852 2 2020-02-15T06:59:31Z +3909 853 1 2020-02-15T06:59:31Z +3910 853 1 2020-02-15T06:59:31Z +3911 853 1 2020-02-15T06:59:31Z +3912 854 2 2020-02-15T06:59:31Z +3913 854 2 2020-02-15T06:59:31Z +3914 854 2 2020-02-15T06:59:31Z +3915 854 2 2020-02-15T06:59:31Z +3916 855 1 2020-02-15T06:59:31Z +3917 855 1 2020-02-15T06:59:31Z +3918 855 2 2020-02-15T06:59:31Z +3919 855 2 2020-02-15T06:59:31Z +3920 856 1 2020-02-15T06:59:31Z +3921 856 1 2020-02-15T06:59:31Z +3922 856 1 2020-02-15T06:59:31Z +3923 856 1 2020-02-15T06:59:31Z +3924 856 2 2020-02-15T06:59:31Z +3925 856 2 2020-02-15T06:59:31Z +3926 856 2 2020-02-15T06:59:31Z +3927 856 2 2020-02-15T06:59:31Z +3928 857 1 2020-02-15T06:59:31Z +3929 857 1 2020-02-15T06:59:31Z +3930 857 1 2020-02-15T06:59:31Z +3931 857 2 2020-02-15T06:59:31Z +3932 857 2 2020-02-15T06:59:31Z +3933 857 2 2020-02-15T06:59:31Z +3934 857 2 2020-02-15T06:59:31Z +3935 858 2 2020-02-15T06:59:31Z +3936 858 2 2020-02-15T06:59:31Z +3937 858 2 2020-02-15T06:59:31Z +3938 858 2 2020-02-15T06:59:31Z +3939 859 1 2020-02-15T06:59:31Z +3940 859 1 2020-02-15T06:59:31Z +3941 859 1 2020-02-15T06:59:31Z +3942 859 2 2020-02-15T06:59:31Z +3943 859 2 2020-02-15T06:59:31Z +3944 859 2 2020-02-15T06:59:31Z +3945 861 1 2020-02-15T06:59:31Z +3946 861 1 2020-02-15T06:59:31Z +3947 861 1 2020-02-15T06:59:31Z +3948 861 2 2020-02-15T06:59:31Z +3949 861 2 2020-02-15T06:59:31Z +3950 861 2 2020-02-15T06:59:31Z +3951 862 1 2020-02-15T06:59:31Z +3952 862 1 2020-02-15T06:59:31Z +3953 862 1 2020-02-15T06:59:31Z +3954 862 2 2020-02-15T06:59:31Z +3955 862 2 2020-02-15T06:59:31Z +3956 863 1 2020-02-15T06:59:31Z +3957 863 1 2020-02-15T06:59:31Z +3958 863 1 2020-02-15T06:59:31Z +3959 863 1 2020-02-15T06:59:31Z +3960 863 2 2020-02-15T06:59:31Z +3961 863 2 2020-02-15T06:59:31Z +3962 863 2 2020-02-15T06:59:31Z +3963 864 1 2020-02-15T06:59:31Z +3964 864 1 2020-02-15T06:59:31Z +3965 864 1 2020-02-15T06:59:31Z +3966 864 1 2020-02-15T06:59:31Z +3967 864 2 2020-02-15T06:59:31Z +3968 864 2 2020-02-15T06:59:31Z +3969 865 1 2020-02-15T06:59:31Z +3970 865 1 2020-02-15T06:59:31Z +3971 865 1 2020-02-15T06:59:31Z +3972 865 1 2020-02-15T06:59:31Z +3973 865 2 2020-02-15T06:59:31Z +3974 865 2 2020-02-15T06:59:31Z +3975 866 2 2020-02-15T06:59:31Z +3976 866 2 2020-02-15T06:59:31Z +3977 867 1 2020-02-15T06:59:31Z +3978 867 1 2020-02-15T06:59:31Z +3979 867 1 2020-02-15T06:59:31Z +3980 867 1 2020-02-15T06:59:31Z +3981 868 1 2020-02-15T06:59:31Z +3982 868 1 2020-02-15T06:59:31Z +3983 868 1 2020-02-15T06:59:31Z +3984 869 1 2020-02-15T06:59:31Z +3985 869 1 2020-02-15T06:59:31Z +3986 869 1 2020-02-15T06:59:31Z +3987 869 1 2020-02-15T06:59:31Z +3988 869 2 2020-02-15T06:59:31Z +3989 869 2 2020-02-15T06:59:31Z +3990 869 2 2020-02-15T06:59:31Z +3991 870 1 2020-02-15T06:59:31Z +3992 870 1 2020-02-15T06:59:31Z +3993 870 1 2020-02-15T06:59:31Z +3994 870 1 2020-02-15T06:59:31Z +3995 870 2 2020-02-15T06:59:31Z +3996 870 2 2020-02-15T06:59:31Z +3997 870 2 2020-02-15T06:59:31Z +3998 870 2 2020-02-15T06:59:31Z +3999 871 1 2020-02-15T06:59:31Z +4000 871 1 2020-02-15T06:59:31Z +4001 871 2 2020-02-15T06:59:31Z +4002 871 2 2020-02-15T06:59:31Z +4003 871 2 2020-02-15T06:59:31Z +4004 872 2 2020-02-15T06:59:31Z +4005 872 2 2020-02-15T06:59:31Z +4006 872 2 2020-02-15T06:59:31Z +4007 873 1 2020-02-15T06:59:31Z +4008 873 1 2020-02-15T06:59:31Z +4009 873 1 2020-02-15T06:59:31Z +4010 873 1 2020-02-15T06:59:31Z +4011 873 2 2020-02-15T06:59:31Z +4012 873 2 2020-02-15T06:59:31Z +4013 873 2 2020-02-15T06:59:31Z +4014 873 2 2020-02-15T06:59:31Z +4015 875 1 2020-02-15T06:59:31Z +4016 875 1 2020-02-15T06:59:31Z +4017 875 1 2020-02-15T06:59:31Z +4018 875 2 2020-02-15T06:59:31Z +4019 875 2 2020-02-15T06:59:31Z +4020 875 2 2020-02-15T06:59:31Z +4021 875 2 2020-02-15T06:59:31Z +4022 876 1 2020-02-15T06:59:31Z +4023 876 1 2020-02-15T06:59:31Z +4024 877 1 2020-02-15T06:59:31Z +4025 877 1 2020-02-15T06:59:31Z +4026 877 1 2020-02-15T06:59:31Z +4027 877 2 2020-02-15T06:59:31Z +4028 877 2 2020-02-15T06:59:31Z +4029 878 2 2020-02-15T06:59:31Z +4030 878 2 2020-02-15T06:59:31Z +4031 878 2 2020-02-15T06:59:31Z +4032 878 2 2020-02-15T06:59:31Z +4033 879 1 2020-02-15T06:59:31Z +4034 879 1 2020-02-15T06:59:31Z +4035 879 1 2020-02-15T06:59:31Z +4036 879 1 2020-02-15T06:59:31Z +4037 879 2 2020-02-15T06:59:31Z +4038 879 2 2020-02-15T06:59:31Z +4039 879 2 2020-02-15T06:59:31Z +4040 880 1 2020-02-15T06:59:31Z +4041 880 1 2020-02-15T06:59:31Z +4042 880 1 2020-02-15T06:59:31Z +4043 880 1 2020-02-15T06:59:31Z +4044 880 2 2020-02-15T06:59:31Z +4045 880 2 2020-02-15T06:59:31Z +4046 880 2 2020-02-15T06:59:31Z +4047 880 2 2020-02-15T06:59:31Z +4048 881 2 2020-02-15T06:59:31Z +4049 881 2 2020-02-15T06:59:31Z +4050 881 2 2020-02-15T06:59:31Z +4051 881 2 2020-02-15T06:59:31Z +4052 882 1 2020-02-15T06:59:31Z +4053 882 1 2020-02-15T06:59:31Z +4054 882 1 2020-02-15T06:59:31Z +4055 882 1 2020-02-15T06:59:31Z +4056 883 2 2020-02-15T06:59:31Z +4057 883 2 2020-02-15T06:59:32Z +4058 884 2 2020-02-15T06:59:32Z +4059 884 2 2020-02-15T06:59:32Z +4060 884 2 2020-02-15T06:59:32Z +4061 885 1 2020-02-15T06:59:32Z +4062 885 1 2020-02-15T06:59:32Z +4063 886 1 2020-02-15T06:59:32Z +4064 886 1 2020-02-15T06:59:32Z +4065 886 1 2020-02-15T06:59:32Z +4066 886 1 2020-02-15T06:59:32Z +4067 887 1 2020-02-15T06:59:32Z +4068 887 1 2020-02-15T06:59:32Z +4069 887 1 2020-02-15T06:59:32Z +4070 887 1 2020-02-15T06:59:32Z +4071 887 2 2020-02-15T06:59:32Z +4072 887 2 2020-02-15T06:59:32Z +4073 888 1 2020-02-15T06:59:32Z +4074 888 1 2020-02-15T06:59:32Z +4075 888 1 2020-02-15T06:59:32Z +4076 888 1 2020-02-15T06:59:32Z +4077 889 1 2020-02-15T06:59:32Z +4078 889 1 2020-02-15T06:59:32Z +4079 889 1 2020-02-15T06:59:32Z +4080 890 1 2020-02-15T06:59:32Z +4081 890 1 2020-02-15T06:59:32Z +4082 890 1 2020-02-15T06:59:32Z +4083 890 2 2020-02-15T06:59:32Z +4084 890 2 2020-02-15T06:59:32Z +4085 890 2 2020-02-15T06:59:32Z +4086 890 2 2020-02-15T06:59:32Z +4087 891 1 2020-02-15T06:59:32Z +4088 891 1 2020-02-15T06:59:32Z +4089 891 1 2020-02-15T06:59:32Z +4090 891 2 2020-02-15T06:59:32Z +4091 891 2 2020-02-15T06:59:32Z +4092 891 2 2020-02-15T06:59:32Z +4093 891 2 2020-02-15T06:59:32Z +4094 892 1 2020-02-15T06:59:32Z +4095 892 1 2020-02-15T06:59:32Z +4096 892 1 2020-02-15T06:59:32Z +4097 892 2 2020-02-15T06:59:32Z +4098 892 2 2020-02-15T06:59:32Z +4099 892 2 2020-02-15T06:59:32Z +4100 892 2 2020-02-15T06:59:32Z +4101 893 1 2020-02-15T06:59:32Z +4102 893 1 2020-02-15T06:59:32Z +4103 893 1 2020-02-15T06:59:32Z +4104 893 1 2020-02-15T06:59:32Z +4105 893 2 2020-02-15T06:59:32Z +4106 893 2 2020-02-15T06:59:32Z +4107 893 2 2020-02-15T06:59:32Z +4108 893 2 2020-02-15T06:59:32Z +4109 894 1 2020-02-15T06:59:32Z +4110 894 1 2020-02-15T06:59:32Z +4111 894 1 2020-02-15T06:59:32Z +4112 894 2 2020-02-15T06:59:32Z +4113 894 2 2020-02-15T06:59:32Z +4114 895 1 2020-02-15T06:59:32Z +4115 895 1 2020-02-15T06:59:32Z +4116 895 1 2020-02-15T06:59:32Z +4117 895 1 2020-02-15T06:59:32Z +4118 895 2 2020-02-15T06:59:32Z +4119 895 2 2020-02-15T06:59:32Z +4120 895 2 2020-02-15T06:59:32Z +4121 896 1 2020-02-15T06:59:32Z +4122 896 1 2020-02-15T06:59:32Z +4123 896 2 2020-02-15T06:59:32Z +4124 896 2 2020-02-15T06:59:32Z +4125 897 1 2020-02-15T06:59:32Z +4126 897 1 2020-02-15T06:59:32Z +4127 897 1 2020-02-15T06:59:32Z +4128 897 1 2020-02-15T06:59:32Z +4129 897 2 2020-02-15T06:59:32Z +4130 897 2 2020-02-15T06:59:32Z +4131 897 2 2020-02-15T06:59:32Z +4132 897 2 2020-02-15T06:59:32Z +4133 898 1 2020-02-15T06:59:32Z +4134 898 1 2020-02-15T06:59:32Z +4135 898 1 2020-02-15T06:59:32Z +4136 898 2 2020-02-15T06:59:32Z +4137 898 2 2020-02-15T06:59:32Z +4138 899 1 2020-02-15T06:59:32Z +4139 899 1 2020-02-15T06:59:32Z +4140 899 1 2020-02-15T06:59:32Z +4141 900 1 2020-02-15T06:59:32Z +4142 900 1 2020-02-15T06:59:32Z +4143 900 2 2020-02-15T06:59:32Z +4144 900 2 2020-02-15T06:59:32Z +4145 901 1 2020-02-15T06:59:32Z +4146 901 1 2020-02-15T06:59:32Z +4147 901 1 2020-02-15T06:59:32Z +4148 901 1 2020-02-15T06:59:32Z +4149 901 2 2020-02-15T06:59:32Z +4150 901 2 2020-02-15T06:59:32Z +4151 901 2 2020-02-15T06:59:32Z +4152 902 1 2020-02-15T06:59:32Z +4153 902 1 2020-02-15T06:59:32Z +4154 902 1 2020-02-15T06:59:32Z +4155 902 1 2020-02-15T06:59:32Z +4156 902 2 2020-02-15T06:59:32Z +4157 902 2 2020-02-15T06:59:32Z +4158 902 2 2020-02-15T06:59:32Z +4159 903 2 2020-02-15T06:59:32Z +4160 903 2 2020-02-15T06:59:32Z +4161 904 1 2020-02-15T06:59:32Z +4162 904 1 2020-02-15T06:59:32Z +4163 905 1 2020-02-15T06:59:32Z +4164 905 1 2020-02-15T06:59:32Z +4165 905 1 2020-02-15T06:59:32Z +4166 906 1 2020-02-15T06:59:32Z +4167 906 1 2020-02-15T06:59:32Z +4168 906 2 2020-02-15T06:59:32Z +4169 906 2 2020-02-15T06:59:32Z +4170 906 2 2020-02-15T06:59:32Z +4171 907 1 2020-02-15T06:59:32Z +4172 907 1 2020-02-15T06:59:32Z +4173 907 1 2020-02-15T06:59:32Z +4174 907 1 2020-02-15T06:59:32Z +4175 908 1 2020-02-15T06:59:32Z +4176 908 1 2020-02-15T06:59:32Z +4177 908 2 2020-02-15T06:59:32Z +4178 908 2 2020-02-15T06:59:32Z +4179 910 2 2020-02-15T06:59:32Z +4180 910 2 2020-02-15T06:59:32Z +4181 911 1 2020-02-15T06:59:32Z +4182 911 1 2020-02-15T06:59:32Z +4183 911 1 2020-02-15T06:59:32Z +4184 911 1 2020-02-15T06:59:32Z +4185 911 2 2020-02-15T06:59:32Z +4186 911 2 2020-02-15T06:59:32Z +4187 911 2 2020-02-15T06:59:32Z +4188 911 2 2020-02-15T06:59:32Z +4189 912 1 2020-02-15T06:59:32Z +4190 912 1 2020-02-15T06:59:32Z +4191 912 1 2020-02-15T06:59:32Z +4192 912 2 2020-02-15T06:59:32Z +4193 912 2 2020-02-15T06:59:32Z +4194 912 2 2020-02-15T06:59:32Z +4195 913 1 2020-02-15T06:59:32Z +4196 913 1 2020-02-15T06:59:32Z +4197 913 1 2020-02-15T06:59:32Z +4198 913 1 2020-02-15T06:59:32Z +4199 913 2 2020-02-15T06:59:32Z +4200 913 2 2020-02-15T06:59:32Z +4201 914 1 2020-02-15T06:59:32Z +4202 914 1 2020-02-15T06:59:32Z +4203 914 2 2020-02-15T06:59:32Z +4204 914 2 2020-02-15T06:59:32Z +4205 914 2 2020-02-15T06:59:32Z +4206 914 2 2020-02-15T06:59:32Z +4207 915 1 2020-02-15T06:59:32Z +4208 915 1 2020-02-15T06:59:32Z +4209 915 1 2020-02-15T06:59:32Z +4210 915 1 2020-02-15T06:59:32Z +4211 915 2 2020-02-15T06:59:32Z +4212 915 2 2020-02-15T06:59:32Z +4213 916 1 2020-02-15T06:59:32Z +4214 916 1 2020-02-15T06:59:32Z +4215 916 2 2020-02-15T06:59:32Z +4216 916 2 2020-02-15T06:59:32Z +4217 917 1 2020-02-15T06:59:32Z +4218 917 1 2020-02-15T06:59:32Z +4219 917 1 2020-02-15T06:59:32Z +4220 917 2 2020-02-15T06:59:32Z +4221 917 2 2020-02-15T06:59:32Z +4222 918 2 2020-02-15T06:59:32Z +4223 918 2 2020-02-15T06:59:32Z +4224 918 2 2020-02-15T06:59:32Z +4225 918 2 2020-02-15T06:59:32Z +4226 919 1 2020-02-15T06:59:32Z +4227 919 1 2020-02-15T06:59:32Z +4228 919 1 2020-02-15T06:59:32Z +4229 919 1 2020-02-15T06:59:32Z +4230 920 1 2020-02-15T06:59:32Z +4231 920 1 2020-02-15T06:59:32Z +4232 920 1 2020-02-15T06:59:32Z +4233 920 2 2020-02-15T06:59:32Z +4234 920 2 2020-02-15T06:59:32Z +4235 921 1 2020-02-15T06:59:32Z +4236 921 1 2020-02-15T06:59:32Z +4237 921 2 2020-02-15T06:59:32Z +4238 921 2 2020-02-15T06:59:32Z +4239 922 1 2020-02-15T06:59:32Z +4240 922 1 2020-02-15T06:59:32Z +4241 922 1 2020-02-15T06:59:32Z +4242 922 2 2020-02-15T06:59:32Z +4243 922 2 2020-02-15T06:59:32Z +4244 922 2 2020-02-15T06:59:32Z +4245 922 2 2020-02-15T06:59:32Z +4246 923 2 2020-02-15T06:59:32Z +4247 923 2 2020-02-15T06:59:32Z +4248 923 2 2020-02-15T06:59:32Z +4249 924 1 2020-02-15T06:59:32Z +4250 924 1 2020-02-15T06:59:32Z +4251 924 2 2020-02-15T06:59:32Z +4252 924 2 2020-02-15T06:59:32Z +4253 924 2 2020-02-15T06:59:32Z +4254 925 1 2020-02-15T06:59:32Z +4255 925 1 2020-02-15T06:59:32Z +4256 925 1 2020-02-15T06:59:32Z +4257 925 2 2020-02-15T06:59:32Z +4258 925 2 2020-02-15T06:59:32Z +4259 926 2 2020-02-15T06:59:32Z +4260 926 2 2020-02-15T06:59:32Z +4261 927 1 2020-02-15T06:59:32Z +4262 927 1 2020-02-15T06:59:32Z +4263 927 1 2020-02-15T06:59:32Z +4264 927 1 2020-02-15T06:59:32Z +4265 928 1 2020-02-15T06:59:32Z +4266 928 1 2020-02-15T06:59:32Z +4267 928 1 2020-02-15T06:59:32Z +4268 929 1 2020-02-15T06:59:32Z +4269 929 1 2020-02-15T06:59:32Z +4270 929 1 2020-02-15T06:59:32Z +4271 929 1 2020-02-15T06:59:32Z +4272 930 1 2020-02-15T06:59:32Z +4273 930 1 2020-02-15T06:59:32Z +4274 930 1 2020-02-15T06:59:32Z +4275 930 2 2020-02-15T06:59:32Z +4276 930 2 2020-02-15T06:59:32Z +4277 930 2 2020-02-15T06:59:32Z +4278 931 2 2020-02-15T06:59:32Z +4279 931 2 2020-02-15T06:59:32Z +4280 931 2 2020-02-15T06:59:32Z +4281 932 1 2020-02-15T06:59:32Z +4282 932 1 2020-02-15T06:59:32Z +4283 932 2 2020-02-15T06:59:32Z +4284 932 2 2020-02-15T06:59:32Z +4285 933 1 2020-02-15T06:59:32Z +4286 933 1 2020-02-15T06:59:32Z +4287 933 1 2020-02-15T06:59:32Z +4288 934 2 2020-02-15T06:59:32Z +4289 934 2 2020-02-15T06:59:32Z +4290 934 2 2020-02-15T06:59:32Z +4291 935 2 2020-02-15T06:59:32Z +4292 935 2 2020-02-15T06:59:32Z +4293 936 1 2020-02-15T06:59:32Z +4294 936 1 2020-02-15T06:59:32Z +4295 936 2 2020-02-15T06:59:32Z +4296 936 2 2020-02-15T06:59:32Z +4297 936 2 2020-02-15T06:59:32Z +4298 936 2 2020-02-15T06:59:32Z +4299 937 1 2020-02-15T06:59:32Z +4300 937 1 2020-02-15T06:59:32Z +4301 937 2 2020-02-15T06:59:32Z +4302 937 2 2020-02-15T06:59:32Z +4303 937 2 2020-02-15T06:59:32Z +4304 938 1 2020-02-15T06:59:32Z +4305 938 1 2020-02-15T06:59:32Z +4306 938 1 2020-02-15T06:59:32Z +4307 938 1 2020-02-15T06:59:32Z +4308 938 2 2020-02-15T06:59:32Z +4309 938 2 2020-02-15T06:59:32Z +4310 939 2 2020-02-15T06:59:32Z +4311 939 2 2020-02-15T06:59:32Z +4312 939 2 2020-02-15T06:59:32Z +4313 939 2 2020-02-15T06:59:32Z +4314 940 1 2020-02-15T06:59:32Z +4315 940 1 2020-02-15T06:59:32Z +4316 940 1 2020-02-15T06:59:32Z +4317 941 1 2020-02-15T06:59:32Z +4318 941 1 2020-02-15T06:59:32Z +4319 941 1 2020-02-15T06:59:32Z +4320 941 1 2020-02-15T06:59:32Z +4321 941 2 2020-02-15T06:59:32Z +4322 941 2 2020-02-15T06:59:32Z +4323 941 2 2020-02-15T06:59:32Z +4324 942 1 2020-02-15T06:59:32Z +4325 942 1 2020-02-15T06:59:32Z +4326 942 2 2020-02-15T06:59:32Z +4327 942 2 2020-02-15T06:59:32Z +4328 944 1 2020-02-15T06:59:32Z +4329 944 1 2020-02-15T06:59:32Z +4330 944 2 2020-02-15T06:59:32Z +4331 944 2 2020-02-15T06:59:32Z +4332 944 2 2020-02-15T06:59:32Z +4333 945 1 2020-02-15T06:59:32Z +4334 945 1 2020-02-15T06:59:32Z +4335 945 1 2020-02-15T06:59:32Z +4336 945 1 2020-02-15T06:59:32Z +4337 945 2 2020-02-15T06:59:32Z +4338 945 2 2020-02-15T06:59:32Z +4339 945 2 2020-02-15T06:59:32Z +4340 945 2 2020-02-15T06:59:32Z +4341 946 2 2020-02-15T06:59:32Z +4342 946 2 2020-02-15T06:59:32Z +4343 946 2 2020-02-15T06:59:32Z +4344 946 2 2020-02-15T06:59:32Z +4345 947 1 2020-02-15T06:59:32Z +4346 947 1 2020-02-15T06:59:32Z +4347 948 1 2020-02-15T06:59:32Z +4348 948 1 2020-02-15T06:59:32Z +4349 948 2 2020-02-15T06:59:32Z +4350 948 2 2020-02-15T06:59:32Z +4351 948 2 2020-02-15T06:59:32Z +4352 948 2 2020-02-15T06:59:32Z +4353 949 1 2020-02-15T06:59:32Z +4354 949 1 2020-02-15T06:59:32Z +4355 949 1 2020-02-15T06:59:32Z +4356 949 1 2020-02-15T06:59:32Z +4357 949 2 2020-02-15T06:59:32Z +4358 949 2 2020-02-15T06:59:32Z +4359 951 1 2020-02-15T06:59:32Z +4360 951 1 2020-02-15T06:59:32Z +4361 951 1 2020-02-15T06:59:32Z +4362 951 2 2020-02-15T06:59:32Z +4363 951 2 2020-02-15T06:59:32Z +4364 951 2 2020-02-15T06:59:32Z +4365 951 2 2020-02-15T06:59:32Z +4366 952 1 2020-02-15T06:59:32Z +4367 952 1 2020-02-15T06:59:32Z +4368 952 1 2020-02-15T06:59:32Z +4369 953 1 2020-02-15T06:59:32Z +4370 953 1 2020-02-15T06:59:32Z +4371 953 1 2020-02-15T06:59:32Z +4372 953 1 2020-02-15T06:59:32Z +4373 953 2 2020-02-15T06:59:32Z +4374 953 2 2020-02-15T06:59:32Z +4375 956 1 2020-02-15T06:59:32Z +4376 956 1 2020-02-15T06:59:32Z +4377 956 1 2020-02-15T06:59:32Z +4378 956 1 2020-02-15T06:59:32Z +4379 957 1 2020-02-15T06:59:32Z +4380 957 1 2020-02-15T06:59:32Z +4381 957 1 2020-02-15T06:59:32Z +4382 957 2 2020-02-15T06:59:32Z +4383 957 2 2020-02-15T06:59:32Z +4384 958 1 2020-02-15T06:59:32Z +4385 958 1 2020-02-15T06:59:32Z +4386 958 1 2020-02-15T06:59:32Z +4387 958 2 2020-02-15T06:59:32Z +4388 958 2 2020-02-15T06:59:32Z +4389 958 2 2020-02-15T06:59:32Z +4390 959 1 2020-02-15T06:59:32Z +4391 959 1 2020-02-15T06:59:32Z +4392 960 2 2020-02-15T06:59:32Z +4393 960 2 2020-02-15T06:59:32Z +4394 960 2 2020-02-15T06:59:32Z +4395 961 1 2020-02-15T06:59:32Z +4396 961 1 2020-02-15T06:59:32Z +4397 961 1 2020-02-15T06:59:32Z +4398 961 2 2020-02-15T06:59:32Z +4399 961 2 2020-02-15T06:59:32Z +4400 962 1 2020-02-15T06:59:32Z +4401 962 1 2020-02-15T06:59:32Z +4402 962 1 2020-02-15T06:59:32Z +4403 962 1 2020-02-15T06:59:32Z +4404 963 1 2020-02-15T06:59:32Z +4405 963 1 2020-02-15T06:59:32Z +4406 963 2 2020-02-15T06:59:32Z +4407 963 2 2020-02-15T06:59:32Z +4408 963 2 2020-02-15T06:59:32Z +4409 964 1 2020-02-15T06:59:32Z +4410 964 1 2020-02-15T06:59:32Z +4411 964 1 2020-02-15T06:59:32Z +4412 964 2 2020-02-15T06:59:32Z +4413 964 2 2020-02-15T06:59:32Z +4414 965 1 2020-02-15T06:59:32Z +4415 965 1 2020-02-15T06:59:32Z +4416 966 1 2020-02-15T06:59:32Z +4417 966 1 2020-02-15T06:59:32Z +4418 966 2 2020-02-15T06:59:32Z +4419 966 2 2020-02-15T06:59:32Z +4420 966 2 2020-02-15T06:59:32Z +4421 966 2 2020-02-15T06:59:32Z +4422 967 1 2020-02-15T06:59:32Z +4423 967 1 2020-02-15T06:59:32Z +4424 967 1 2020-02-15T06:59:32Z +4425 967 2 2020-02-15T06:59:32Z +4426 967 2 2020-02-15T06:59:32Z +4427 968 1 2020-02-15T06:59:32Z +4428 968 1 2020-02-15T06:59:32Z +4429 968 1 2020-02-15T06:59:32Z +4430 969 1 2020-02-15T06:59:32Z +4431 969 1 2020-02-15T06:59:32Z +4432 969 1 2020-02-15T06:59:32Z +4433 969 1 2020-02-15T06:59:32Z +4434 970 1 2020-02-15T06:59:32Z +4435 970 1 2020-02-15T06:59:32Z +4436 970 1 2020-02-15T06:59:32Z +4437 970 2 2020-02-15T06:59:32Z +4438 970 2 2020-02-15T06:59:32Z +4439 970 2 2020-02-15T06:59:32Z +4440 970 2 2020-02-15T06:59:32Z +4441 971 1 2020-02-15T06:59:32Z +4442 971 1 2020-02-15T06:59:32Z +4443 971 1 2020-02-15T06:59:32Z +4444 971 1 2020-02-15T06:59:32Z +4445 972 1 2020-02-15T06:59:32Z +4446 972 1 2020-02-15T06:59:32Z +4447 972 1 2020-02-15T06:59:32Z +4448 972 2 2020-02-15T06:59:32Z +4449 972 2 2020-02-15T06:59:32Z +4450 972 2 2020-02-15T06:59:32Z +4451 973 1 2020-02-15T06:59:32Z +4452 973 1 2020-02-15T06:59:32Z +4453 973 1 2020-02-15T06:59:32Z +4454 973 1 2020-02-15T06:59:32Z +4455 973 2 2020-02-15T06:59:32Z +4456 973 2 2020-02-15T06:59:32Z +4457 973 2 2020-02-15T06:59:32Z +4458 973 2 2020-02-15T06:59:32Z +4459 974 1 2020-02-15T06:59:32Z +4460 974 1 2020-02-15T06:59:32Z +4461 975 1 2020-02-15T06:59:32Z +4462 975 1 2020-02-15T06:59:32Z +4463 975 2 2020-02-15T06:59:32Z +4464 975 2 2020-02-15T06:59:32Z +4465 975 2 2020-02-15T06:59:32Z +4466 976 1 2020-02-15T06:59:32Z +4467 976 1 2020-02-15T06:59:32Z +4468 976 2 2020-02-15T06:59:32Z +4469 976 2 2020-02-15T06:59:32Z +4470 976 2 2020-02-15T06:59:32Z +4471 976 2 2020-02-15T06:59:32Z +4472 977 2 2020-02-15T06:59:32Z +4473 977 2 2020-02-15T06:59:32Z +4474 977 2 2020-02-15T06:59:32Z +4475 978 1 2020-02-15T06:59:32Z +4476 978 1 2020-02-15T06:59:32Z +4477 978 1 2020-02-15T06:59:32Z +4478 979 1 2020-02-15T06:59:32Z +4479 979 1 2020-02-15T06:59:32Z +4480 979 1 2020-02-15T06:59:32Z +4481 979 1 2020-02-15T06:59:32Z +4482 979 2 2020-02-15T06:59:32Z +4483 979 2 2020-02-15T06:59:32Z +4484 979 2 2020-02-15T06:59:32Z +4485 980 1 2020-02-15T06:59:32Z +4486 980 1 2020-02-15T06:59:32Z +4487 980 1 2020-02-15T06:59:32Z +4488 980 2 2020-02-15T06:59:32Z +4489 980 2 2020-02-15T06:59:32Z +4490 981 1 2020-02-15T06:59:32Z +4491 981 1 2020-02-15T06:59:32Z +4492 981 1 2020-02-15T06:59:32Z +4493 981 2 2020-02-15T06:59:32Z +4494 981 2 2020-02-15T06:59:32Z +4495 981 2 2020-02-15T06:59:32Z +4496 982 1 2020-02-15T06:59:32Z +4497 982 1 2020-02-15T06:59:32Z +4498 982 1 2020-02-15T06:59:32Z +4499 982 2 2020-02-15T06:59:32Z +4500 982 2 2020-02-15T06:59:32Z +4501 982 2 2020-02-15T06:59:32Z +4502 982 2 2020-02-15T06:59:32Z +4503 983 1 2020-02-15T06:59:32Z +4504 983 1 2020-02-15T06:59:32Z +4505 983 1 2020-02-15T06:59:32Z +4506 984 1 2020-02-15T06:59:32Z +4507 984 1 2020-02-15T06:59:32Z +4508 985 1 2020-02-15T06:59:32Z +4509 985 1 2020-02-15T06:59:32Z +4510 985 1 2020-02-15T06:59:32Z +4511 985 1 2020-02-15T06:59:32Z +4512 985 2 2020-02-15T06:59:32Z +4513 985 2 2020-02-15T06:59:32Z +4514 985 2 2020-02-15T06:59:32Z +4515 986 1 2020-02-15T06:59:32Z +4516 986 1 2020-02-15T06:59:32Z +4517 986 1 2020-02-15T06:59:32Z +4518 986 1 2020-02-15T06:59:32Z +4519 986 2 2020-02-15T06:59:32Z +4520 986 2 2020-02-15T06:59:32Z +4521 987 1 2020-02-15T06:59:32Z +4522 987 1 2020-02-15T06:59:32Z +4523 987 2 2020-02-15T06:59:32Z +4524 987 2 2020-02-15T06:59:32Z +4525 988 1 2020-02-15T06:59:32Z +4526 988 1 2020-02-15T06:59:32Z +4527 988 1 2020-02-15T06:59:32Z +4528 988 2 2020-02-15T06:59:32Z +4529 988 2 2020-02-15T06:59:32Z +4530 989 1 2020-02-15T06:59:32Z +4531 989 1 2020-02-15T06:59:32Z +4532 989 1 2020-02-15T06:59:32Z +4533 989 1 2020-02-15T06:59:32Z +4534 989 2 2020-02-15T06:59:32Z +4535 989 2 2020-02-15T06:59:32Z +4536 990 2 2020-02-15T06:59:32Z +4537 990 2 2020-02-15T06:59:32Z +4538 991 1 2020-02-15T06:59:32Z +4539 991 1 2020-02-15T06:59:32Z +4540 991 2 2020-02-15T06:59:32Z +4541 991 2 2020-02-15T06:59:32Z +4542 991 2 2020-02-15T06:59:32Z +4543 992 2 2020-02-15T06:59:32Z +4544 992 2 2020-02-15T06:59:32Z +4545 992 2 2020-02-15T06:59:32Z +4546 992 2 2020-02-15T06:59:32Z +4547 993 1 2020-02-15T06:59:32Z +4548 993 1 2020-02-15T06:59:32Z +4549 993 1 2020-02-15T06:59:32Z +4550 993 1 2020-02-15T06:59:32Z +4551 993 2 2020-02-15T06:59:32Z +4552 993 2 2020-02-15T06:59:32Z +4553 993 2 2020-02-15T06:59:32Z +4554 994 1 2020-02-15T06:59:32Z +4555 994 1 2020-02-15T06:59:32Z +4556 994 1 2020-02-15T06:59:32Z +4557 995 1 2020-02-15T06:59:32Z +4558 995 1 2020-02-15T06:59:32Z +4559 995 1 2020-02-15T06:59:32Z +4560 995 1 2020-02-15T06:59:32Z +4561 995 2 2020-02-15T06:59:32Z +4562 995 2 2020-02-15T06:59:32Z +4563 996 1 2020-02-15T06:59:32Z +4564 996 1 2020-02-15T06:59:32Z +4565 997 1 2020-02-15T06:59:32Z +4566 997 1 2020-02-15T06:59:32Z +4567 998 2 2020-02-15T06:59:32Z +4568 998 2 2020-02-15T06:59:32Z +4569 999 1 2020-02-15T06:59:32Z +4570 999 1 2020-02-15T06:59:32Z +4571 999 2 2020-02-15T06:59:32Z +4572 999 2 2020-02-15T06:59:32Z +4573 999 2 2020-02-15T06:59:32Z +4574 1000 1 2020-02-15T06:59:32Z +4575 1000 1 2020-02-15T06:59:32Z +4576 1000 1 2020-02-15T06:59:32Z +4577 1000 1 2020-02-15T06:59:32Z +4578 1000 2 2020-02-15T06:59:32Z +4579 1000 2 2020-02-15T06:59:32Z +4580 1000 2 2020-02-15T06:59:32Z +4581 1000 2 2020-02-15T06:59:32Z diff --git a/drivers/csv/testdata/sakila-tsv/language.tsv b/drivers/csv/testdata/sakila-tsv/language.tsv new file mode 100644 index 00000000..9b679d28 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/language.tsv @@ -0,0 +1,7 @@ +language_id name last_update +1 English 2020-02-15T06:59:27Z +2 Italian 2020-02-15T06:59:27Z +3 Japanese 2020-02-15T06:59:27Z +4 Mandarin 2020-02-15T06:59:27Z +5 French 2020-02-15T06:59:27Z +6 German 2020-02-15T06:59:27Z diff --git a/drivers/csv/testdata/sakila-tsv/payment.tsv b/drivers/csv/testdata/sakila-tsv/payment.tsv new file mode 100644 index 00000000..a4bdd806 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/payment.tsv @@ -0,0 +1,16050 @@ +payment_id customer_id staff_id rental_id amount payment_date last_update +1 1 1 76 2.99 2005-05-25T11:30:37Z 2020-02-15T06:59:47Z +2 1 1 573 0.99 2005-05-28T10:35:23Z 2020-02-15T06:59:47Z +3 1 1 1185 5.99 2005-06-15T00:54:12Z 2020-02-15T06:59:47Z +4 1 2 1422 0.99 2005-06-15T18:02:53Z 2020-02-15T06:59:47Z +5 1 2 1476 9.99 2005-06-15T21:08:46Z 2020-02-15T06:59:47Z +6 1 1 1725 4.99 2005-06-16T15:18:57Z 2020-02-15T06:59:47Z +7 1 1 2308 4.99 2005-06-18T08:41:48Z 2020-02-15T06:59:47Z +8 1 2 2363 0.99 2005-06-18T13:33:59Z 2020-02-15T06:59:47Z +9 1 1 3284 3.99 2005-06-21T06:24:45Z 2020-02-15T06:59:47Z +10 1 2 4526 5.99 2005-07-08T03:17:05Z 2020-02-15T06:59:47Z +11 1 1 4611 5.99 2005-07-08T07:33:56Z 2020-02-15T06:59:47Z +12 1 1 5244 4.99 2005-07-09T13:24:07Z 2020-02-15T06:59:47Z +13 1 1 5326 4.99 2005-07-09T16:38:01Z 2020-02-15T06:59:47Z +14 1 1 6163 7.99 2005-07-11T10:13:46Z 2020-02-15T06:59:47Z +15 1 2 7273 2.99 2005-07-27T11:31:22Z 2020-02-15T06:59:47Z +16 1 1 7841 4.99 2005-07-28T09:04:45Z 2020-02-15T06:59:47Z +17 1 2 8033 4.99 2005-07-28T16:18:23Z 2020-02-15T06:59:47Z +18 1 1 8074 0.99 2005-07-28T17:33:39Z 2020-02-15T06:59:47Z +19 1 2 8116 0.99 2005-07-28T19:20:07Z 2020-02-15T06:59:47Z +20 1 2 8326 2.99 2005-07-29T03:58:49Z 2020-02-15T06:59:47Z +21 1 2 9571 2.99 2005-07-31T02:42:18Z 2020-02-15T06:59:47Z +22 1 2 10437 4.99 2005-08-01T08:51:04Z 2020-02-15T06:59:47Z +23 1 2 11299 3.99 2005-08-02T15:36:52Z 2020-02-15T06:59:47Z +24 1 1 11367 0.99 2005-08-02T18:01:38Z 2020-02-15T06:59:47Z +25 1 2 11824 4.99 2005-08-17T12:37:54Z 2020-02-15T06:59:47Z +26 1 1 12250 0.99 2005-08-18T03:57:29Z 2020-02-15T06:59:47Z +27 1 2 13068 0.99 2005-08-19T09:55:16Z 2020-02-15T06:59:47Z +28 1 2 13176 2.99 2005-08-19T13:56:54Z 2020-02-15T06:59:47Z +29 1 1 14762 0.99 2005-08-21T23:33:57Z 2020-02-15T06:59:47Z +30 1 1 14825 1.99 2005-08-22T01:27:57Z 2020-02-15T06:59:47Z +31 1 2 15298 2.99 2005-08-22T19:41:37Z 2020-02-15T06:59:47Z +32 1 1 15315 5.99 2005-08-22T20:03:46Z 2020-02-15T06:59:47Z +33 2 1 320 4.99 2005-05-27T00:09:24Z 2020-02-15T06:59:47Z +34 2 1 2128 2.99 2005-06-17T20:54:58Z 2020-02-15T06:59:47Z +35 2 1 5636 2.99 2005-07-10T06:31:24Z 2020-02-15T06:59:47Z +36 2 1 5755 6.99 2005-07-10T12:38:56Z 2020-02-15T06:59:47Z +37 2 2 7346 4.99 2005-07-27T14:30:42Z 2020-02-15T06:59:47Z +38 2 1 7376 5.99 2005-07-27T15:23:02Z 2020-02-15T06:59:47Z +39 2 2 7459 5.99 2005-07-27T18:40:20Z 2020-02-15T06:59:47Z +40 2 2 8230 5.99 2005-07-29T00:12:59Z 2020-02-15T06:59:47Z +41 2 1 8598 2.99 2005-07-29T12:56:59Z 2020-02-15T06:59:47Z +42 2 2 8705 5.99 2005-07-29T17:14:29Z 2020-02-15T06:59:47Z +43 2 1 9031 4.99 2005-07-30T06:06:10Z 2020-02-15T06:59:47Z +44 2 2 9236 10.99 2005-07-30T13:47:43Z 2020-02-15T06:59:47Z +45 2 2 9248 0.99 2005-07-30T14:14:11Z 2020-02-15T06:59:47Z +46 2 2 9296 6.99 2005-07-30T16:21:13Z 2020-02-15T06:59:47Z +47 2 2 9465 6.99 2005-07-30T22:39:53Z 2020-02-15T06:59:47Z +48 2 1 10136 2.99 2005-07-31T21:58:56Z 2020-02-15T06:59:47Z +49 2 1 10466 0.99 2005-08-01T09:45:26Z 2020-02-15T06:59:47Z +50 2 1 10918 0.99 2005-08-02T02:10:56Z 2020-02-15T06:59:47Z +51 2 1 11087 5.99 2005-08-02T07:41:41Z 2020-02-15T06:59:47Z +52 2 1 11177 6.99 2005-08-02T10:43:48Z 2020-02-15T06:59:47Z +53 2 2 11256 2.99 2005-08-02T13:44:53Z 2020-02-15T06:59:47Z +54 2 1 11614 2.99 2005-08-17T03:52:18Z 2020-02-15T06:59:47Z +55 2 1 12963 2.99 2005-08-19T06:26:04Z 2020-02-15T06:59:47Z +56 2 1 14475 4.99 2005-08-21T13:24:32Z 2020-02-15T06:59:47Z +57 2 2 14743 5.99 2005-08-21T22:41:56Z 2020-02-15T06:59:47Z +58 2 2 15145 4.99 2005-08-22T13:53:04Z 2020-02-15T06:59:47Z +59 2 2 15907 4.99 2005-08-23T17:39:35Z 2020-02-15T06:59:47Z +60 3 1 435 1.99 2005-05-27T17:17:09Z 2020-02-15T06:59:47Z +61 3 1 830 2.99 2005-05-29T22:43:55Z 2020-02-15T06:59:47Z +62 3 1 1546 8.99 2005-06-16T01:34:05Z 2020-02-15T06:59:47Z +63 3 1 1726 6.99 2005-06-16T15:19:10Z 2020-02-15T06:59:47Z +64 3 2 1911 6.99 2005-06-17T05:15:15Z 2020-02-15T06:59:47Z +65 3 1 2628 2.99 2005-06-19T08:34:53Z 2020-02-15T06:59:47Z +66 3 1 4180 4.99 2005-07-07T10:23:25Z 2020-02-15T06:59:47Z +67 3 1 4725 4.99 2005-07-08T12:47:11Z 2020-02-15T06:59:47Z +68 3 1 7096 5.99 2005-07-27T04:54:42Z 2020-02-15T06:59:47Z +69 3 2 7503 10.99 2005-07-27T20:23:12Z 2020-02-15T06:59:47Z +70 3 2 7703 7.99 2005-07-28T03:59:21Z 2020-02-15T06:59:47Z +71 3 2 7724 6.99 2005-07-28T04:46:30Z 2020-02-15T06:59:47Z +72 3 1 7911 4.99 2005-07-28T11:46:45Z 2020-02-15T06:59:47Z +73 3 2 8086 4.99 2005-07-28T18:17:14Z 2020-02-15T06:59:47Z +74 3 1 8545 2.99 2005-07-29T11:07:04Z 2020-02-15T06:59:47Z +75 3 1 9226 1.99 2005-07-30T13:31:20Z 2020-02-15T06:59:47Z +76 3 2 9443 3.99 2005-07-30T21:45:46Z 2020-02-15T06:59:47Z +77 3 1 9595 2.99 2005-07-31T03:27:58Z 2020-02-15T06:59:47Z +78 3 2 9816 4.99 2005-07-31T11:32:58Z 2020-02-15T06:59:47Z +79 3 2 10597 5.99 2005-08-01T14:19:48Z 2020-02-15T06:59:47Z +80 3 2 12556 4.99 2005-08-18T14:49:55Z 2020-02-15T06:59:47Z +81 3 1 13403 8.99 2005-08-19T22:18:07Z 2020-02-15T06:59:47Z +82 3 2 13610 2.99 2005-08-20T06:14:12Z 2020-02-15T06:59:47Z +83 3 2 14699 8.99 2005-08-21T20:50:48Z 2020-02-15T06:59:47Z +84 3 2 15038 0.99 2005-08-22T09:37:27Z 2020-02-15T06:59:47Z +85 3 1 15619 2.99 2005-08-23T07:10:14Z 2020-02-15T06:59:47Z +86 4 1 1297 4.99 2005-06-15T09:31:28Z 2020-02-15T06:59:47Z +87 4 1 1633 0.99 2005-06-16T08:08:40Z 2020-02-15T06:59:47Z +88 4 2 1707 2.99 2005-06-16T14:01:27Z 2020-02-15T06:59:47Z +89 4 2 1735 0.99 2005-06-16T15:51:52Z 2020-02-15T06:59:47Z +90 4 2 2043 0.99 2005-06-17T14:31:12Z 2020-02-15T06:59:47Z +91 4 1 2642 5.99 2005-06-19T09:39:01Z 2020-02-15T06:59:47Z +92 4 1 7660 2.99 2005-07-28T02:10:10Z 2020-02-15T06:59:47Z +93 4 2 7718 2.99 2005-07-28T04:37:59Z 2020-02-15T06:59:47Z +94 4 1 8741 3.99 2005-07-29T18:44:57Z 2020-02-15T06:59:47Z +95 4 1 9100 5.99 2005-07-30T08:46:09Z 2020-02-15T06:59:47Z +96 4 1 9371 5.99 2005-07-30T18:58:00Z 2020-02-15T06:59:47Z +97 4 2 11069 0.99 2005-08-02T07:09:34Z 2020-02-15T06:59:47Z +98 4 1 11110 2.99 2005-08-02T08:20:31Z 2020-02-15T06:59:47Z +99 4 2 11529 4.99 2005-08-17T00:28:01Z 2020-02-15T06:59:47Z +100 4 1 12151 2.99 2005-08-18T00:14:03Z 2020-02-15T06:59:47Z +101 4 2 12294 8.99 2005-08-18T05:14:44Z 2020-02-15T06:59:47Z +102 4 2 12856 1.99 2005-08-19T02:19:13Z 2020-02-15T06:59:47Z +103 4 1 13704 2.99 2005-08-20T09:32:04Z 2020-02-15T06:59:47Z +104 4 1 13807 6.99 2005-08-20T12:55:40Z 2020-02-15T06:59:47Z +105 4 2 14225 4.99 2005-08-21T04:53:37Z 2020-02-15T06:59:47Z +106 4 1 15147 2.99 2005-08-22T13:58:23Z 2020-02-15T06:59:47Z +107 4 2 15635 1.99 2005-08-23T07:43:00Z 2020-02-15T06:59:47Z +108 5 1 731 0.99 2005-05-29T07:25:16Z 2020-02-15T06:59:47Z +109 5 1 1085 6.99 2005-05-31T11:15:43Z 2020-02-15T06:59:47Z +110 5 1 1142 1.99 2005-05-31T19:46:38Z 2020-02-15T06:59:47Z +111 5 1 1502 3.99 2005-06-15T22:03:14Z 2020-02-15T06:59:47Z +112 5 2 1631 2.99 2005-06-16T08:01:02Z 2020-02-15T06:59:47Z +113 5 2 2063 4.99 2005-06-17T15:56:53Z 2020-02-15T06:59:47Z +114 5 2 2570 2.99 2005-06-19T04:20:13Z 2020-02-15T06:59:47Z +115 5 2 3126 4.99 2005-06-20T18:38:22Z 2020-02-15T06:59:47Z +116 5 2 3677 4.99 2005-07-06T09:11:58Z 2020-02-15T06:59:47Z +117 5 2 4889 2.99 2005-07-08T20:04:43Z 2020-02-15T06:59:47Z +118 5 1 5016 4.99 2005-07-09T01:57:57Z 2020-02-15T06:59:47Z +119 5 2 5118 5.99 2005-07-09T07:13:52Z 2020-02-15T06:59:47Z +120 5 2 5156 1.99 2005-07-09T08:51:42Z 2020-02-15T06:59:47Z +121 5 2 5721 0.99 2005-07-10T11:09:35Z 2020-02-15T06:59:47Z +122 5 1 6042 8.99 2005-07-11T03:17:04Z 2020-02-15T06:59:47Z +123 5 1 6663 3.99 2005-07-12T11:27:35Z 2020-02-15T06:59:47Z +124 5 2 6685 4.99 2005-07-12T12:16:28Z 2020-02-15T06:59:47Z +125 5 2 7293 0.99 2005-07-27T12:37:28Z 2020-02-15T06:59:47Z +126 5 2 7652 0.99 2005-07-28T01:50:29Z 2020-02-15T06:59:47Z +127 5 2 7829 3.99 2005-07-28T08:43:39Z 2020-02-15T06:59:47Z +128 5 1 8263 2.99 2005-07-29T01:11:23Z 2020-02-15T06:59:47Z +129 5 1 8978 1.99 2005-07-30T04:14:28Z 2020-02-15T06:59:47Z +130 5 1 9493 4.99 2005-07-30T23:52:30Z 2020-02-15T06:59:47Z +131 5 1 9888 3.99 2005-07-31T14:00:53Z 2020-02-15T06:59:47Z +132 5 2 10609 4.99 2005-08-01T14:48:45Z 2020-02-15T06:59:47Z +133 5 1 10625 0.99 2005-08-01T15:27:10Z 2020-02-15T06:59:47Z +134 5 2 11001 4.99 2005-08-02T04:56:45Z 2020-02-15T06:59:47Z +135 5 1 11179 4.99 2005-08-02T10:50:06Z 2020-02-15T06:59:47Z +136 5 2 11930 3.99 2005-08-17T16:28:53Z 2020-02-15T06:59:47Z +137 5 1 12145 9.99 2005-08-18T00:10:04Z 2020-02-15T06:59:47Z +138 5 1 12797 2.99 2005-08-19T00:24:08Z 2020-02-15T06:59:47Z +139 5 1 13063 1.99 2005-08-19T09:45:41Z 2020-02-15T06:59:47Z +140 5 2 13877 0.99 2005-08-20T15:16:18Z 2020-02-15T06:59:47Z +141 5 2 14053 6.99 2005-08-20T22:13:59Z 2020-02-15T06:59:47Z +142 5 1 14430 6.99 2005-08-21T11:31:11Z 2020-02-15T06:59:47Z +143 5 2 14494 2.99 2005-08-21T14:02:50Z 2020-02-15T06:59:47Z +144 5 2 15232 0.99 2005-08-22T17:37:02Z 2020-02-15T06:59:47Z +145 5 2 13209 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +146 6 2 57 4.99 2005-05-25T08:43:32Z 2020-02-15T06:59:47Z +147 6 1 577 2.99 2005-05-28T11:09:14Z 2020-02-15T06:59:47Z +148 6 2 916 0.99 2005-05-30T11:25:01Z 2020-02-15T06:59:47Z +149 6 1 1575 3.99 2005-06-16T03:41:38Z 2020-02-15T06:59:47Z +150 6 2 1841 2.99 2005-06-16T23:44:13Z 2020-02-15T06:59:47Z +151 6 1 1966 0.99 2005-06-17T09:19:45Z 2020-02-15T06:59:47Z +152 6 1 2345 0.99 2005-06-18T12:03:23Z 2020-02-15T06:59:47Z +153 6 2 3983 0.99 2005-07-06T23:14:21Z 2020-02-15T06:59:47Z +154 6 2 4278 2.99 2005-07-07T14:53:24Z 2020-02-15T06:59:47Z +155 6 1 5553 0.99 2005-07-10T03:03:35Z 2020-02-15T06:59:47Z +156 6 2 6211 5.99 2005-07-11T12:39:01Z 2020-02-15T06:59:47Z +157 6 1 6248 7.99 2005-07-11T15:01:54Z 2020-02-15T06:59:47Z +158 6 2 6686 0.99 2005-07-12T12:18:38Z 2020-02-15T06:59:47Z +159 6 2 7099 2.99 2005-07-27T05:03:44Z 2020-02-15T06:59:47Z +160 6 2 7136 2.99 2005-07-27T06:38:25Z 2020-02-15T06:59:47Z +161 6 1 8101 0.99 2005-07-28T18:47:23Z 2020-02-15T06:59:47Z +162 6 1 10271 2.99 2005-08-01T03:13:39Z 2020-02-15T06:59:47Z +163 6 1 11023 2.99 2005-08-02T05:36:38Z 2020-02-15T06:59:47Z +164 6 1 11398 3.99 2005-08-02T18:55:15Z 2020-02-15T06:59:47Z +165 6 1 11591 6.99 2005-08-17T02:29:41Z 2020-02-15T06:59:47Z +166 6 1 11727 0.99 2005-08-17T08:12:20Z 2020-02-15T06:59:47Z +167 6 1 11853 0.99 2005-08-17T13:39:32Z 2020-02-15T06:59:47Z +168 6 2 12254 2.99 2005-08-18T04:05:29Z 2020-02-15T06:59:47Z +169 6 2 13451 6.99 2005-08-20T00:18:25Z 2020-02-15T06:59:47Z +170 6 1 14329 7.99 2005-08-21T08:22:56Z 2020-02-15T06:59:47Z +171 6 1 14377 4.99 2005-08-21T09:49:28Z 2020-02-15T06:59:47Z +172 6 1 15509 5.99 2005-08-23T02:51:24Z 2020-02-15T06:59:47Z +173 6 2 15603 0.99 2005-08-23T06:41:32Z 2020-02-15T06:59:47Z +174 7 2 46 5.99 2005-05-25T06:04:08Z 2020-02-15T06:59:47Z +175 7 2 117 0.99 2005-05-25T19:30:46Z 2020-02-15T06:59:47Z +176 7 2 748 2.99 2005-05-29T09:27:00Z 2020-02-15T06:59:47Z +177 7 1 975 4.99 2005-05-30T21:07:15Z 2020-02-15T06:59:47Z +178 7 1 1063 5.99 2005-05-31T08:44:29Z 2020-02-15T06:59:47Z +179 7 2 1810 0.99 2005-06-16T21:06:00Z 2020-02-15T06:59:47Z +180 7 1 2250 2.99 2005-06-18T05:03:36Z 2020-02-15T06:59:47Z +181 7 1 2709 0.99 2005-06-19T14:00:26Z 2020-02-15T06:59:47Z +182 7 1 2888 4.99 2005-06-20T01:50:56Z 2020-02-15T06:59:47Z +183 7 1 3007 0.99 2005-06-20T10:11:53Z 2020-02-15T06:59:47Z +184 7 2 3639 5.99 2005-07-06T07:09:17Z 2020-02-15T06:59:47Z +185 7 2 4238 2.99 2005-07-07T13:22:20Z 2020-02-15T06:59:47Z +186 7 2 4787 5.99 2005-07-08T16:16:04Z 2020-02-15T06:59:47Z +187 7 1 4856 4.99 2005-07-08T18:47:38Z 2020-02-15T06:59:47Z +188 7 1 5441 8.99 2005-07-09T21:52:05Z 2020-02-15T06:59:47Z +189 7 1 5921 7.99 2005-07-10T21:35:12Z 2020-02-15T06:59:47Z +190 7 1 6174 1.99 2005-07-11T10:36:28Z 2020-02-15T06:59:47Z +191 7 1 6295 2.99 2005-07-11T17:30:58Z 2020-02-15T06:59:47Z +192 7 2 6761 3.99 2005-07-12T15:17:42Z 2020-02-15T06:59:47Z +193 7 2 8422 5.99 2005-07-29T07:02:55Z 2020-02-15T06:59:47Z +194 7 2 9624 7.99 2005-07-31T04:30:03Z 2020-02-15T06:59:47Z +195 7 2 10330 6.99 2005-08-01T04:57:04Z 2020-02-15T06:59:47Z +196 7 1 10423 5.99 2005-08-01T08:19:53Z 2020-02-15T06:59:47Z +197 7 1 10514 4.99 2005-08-01T11:39:26Z 2020-02-15T06:59:47Z +198 7 2 10644 4.99 2005-08-01T15:52:00Z 2020-02-15T06:59:47Z +199 7 2 10989 3.99 2005-08-02T04:40:54Z 2020-02-15T06:59:47Z +200 7 2 11542 7.99 2005-08-17T00:51:32Z 2020-02-15T06:59:47Z +201 7 1 12367 8.99 2005-08-18T07:57:14Z 2020-02-15T06:59:47Z +202 7 1 12730 2.99 2005-08-18T21:55:01Z 2020-02-15T06:59:47Z +203 7 2 13373 2.99 2005-08-19T21:23:31Z 2020-02-15T06:59:47Z +204 7 1 13476 2.99 2005-08-20T01:06:04Z 2020-02-15T06:59:47Z +205 7 1 13594 0.99 2005-08-20T05:53:31Z 2020-02-15T06:59:47Z +206 7 1 14222 5.99 2005-08-21T04:49:48Z 2020-02-15T06:59:47Z +207 8 2 866 6.99 2005-05-30T03:43:54Z 2020-02-15T06:59:47Z +208 8 2 1305 2.99 2005-06-15T09:59:16Z 2020-02-15T06:59:47Z +209 8 1 2095 5.99 2005-06-17T18:21:35Z 2020-02-15T06:59:47Z +210 8 2 3114 4.99 2005-06-20T17:57:47Z 2020-02-15T06:59:47Z +211 8 1 3475 5.99 2005-07-05T23:01:21Z 2020-02-15T06:59:47Z +212 8 1 4003 0.99 2005-07-07T00:09:02Z 2020-02-15T06:59:47Z +213 8 2 4175 2.99 2005-07-07T10:02:03Z 2020-02-15T06:59:47Z +214 8 2 4409 3.99 2005-07-07T21:47:29Z 2020-02-15T06:59:47Z +215 8 1 4503 3.99 2005-07-08T02:17:12Z 2020-02-15T06:59:47Z +216 8 1 5300 2.99 2005-07-09T15:40:46Z 2020-02-15T06:59:47Z +217 8 2 5341 2.99 2005-07-09T17:13:23Z 2020-02-15T06:59:47Z +218 8 1 6375 4.99 2005-07-11T21:39:46Z 2020-02-15T06:59:47Z +219 8 1 6647 0.99 2005-07-12T10:43:53Z 2020-02-15T06:59:47Z +220 8 1 8809 1.99 2005-07-29T21:42:49Z 2020-02-15T06:59:47Z +221 8 2 9629 2.99 2005-07-31T04:54:43Z 2020-02-15T06:59:47Z +222 8 2 10141 0.99 2005-07-31T22:08:29Z 2020-02-15T06:59:47Z +223 8 2 10561 2.99 2005-08-01T13:05:35Z 2020-02-15T06:59:47Z +224 8 1 11232 9.99 2005-08-02T13:04:12Z 2020-02-15T06:59:47Z +225 8 2 11284 2.99 2005-08-02T14:42:45Z 2020-02-15T06:59:47Z +226 8 1 12613 2.99 2005-08-18T17:16:01Z 2020-02-15T06:59:47Z +227 8 1 14114 0.99 2005-08-21T01:07:11Z 2020-02-15T06:59:47Z +228 8 1 15374 7.99 2005-08-22T22:09:09Z 2020-02-15T06:59:47Z +229 8 1 15764 2.99 2005-08-23T13:05:10Z 2020-02-15T06:59:47Z +230 8 1 15805 4.99 2005-08-23T14:31:19Z 2020-02-15T06:59:47Z +231 9 2 350 4.99 2005-05-27T05:01:28Z 2020-02-15T06:59:47Z +232 9 2 877 0.99 2005-05-30T05:48:59Z 2020-02-15T06:59:47Z +233 9 2 1075 4.99 2005-05-31T10:13:34Z 2020-02-15T06:59:47Z +234 9 2 3142 7.99 2005-06-20T19:59:28Z 2020-02-15T06:59:47Z +235 9 2 3262 4.99 2005-06-21T04:08:43Z 2020-02-15T06:59:47Z +236 9 1 4454 2.99 2005-07-07T23:37:00Z 2020-02-15T06:59:47Z +237 9 2 4748 0.99 2005-07-08T13:59:38Z 2020-02-15T06:59:47Z +238 9 1 4796 1.99 2005-07-08T16:35:44Z 2020-02-15T06:59:47Z +239 9 1 5659 2.99 2005-07-10T07:45:40Z 2020-02-15T06:59:47Z +240 9 2 6019 4.99 2005-07-11T02:08:29Z 2020-02-15T06:59:47Z +241 9 1 6165 5.99 2005-07-11T10:17:29Z 2020-02-15T06:59:47Z +242 9 2 7616 0.99 2005-07-28T00:15:26Z 2020-02-15T06:59:47Z +243 9 1 7801 2.99 2005-07-28T07:51:56Z 2020-02-15T06:59:47Z +244 9 1 9043 4.99 2005-07-30T06:34:07Z 2020-02-15T06:59:47Z +245 9 1 10451 0.99 2005-08-01T09:11:25Z 2020-02-15T06:59:47Z +246 9 1 10454 4.99 2005-08-01T09:14:00Z 2020-02-15T06:59:47Z +247 9 2 11400 5.99 2005-08-02T19:00:52Z 2020-02-15T06:59:47Z +248 9 1 11556 0.99 2005-08-17T01:11:53Z 2020-02-15T06:59:47Z +249 9 1 12228 2.99 2005-08-18T03:08:10Z 2020-02-15T06:59:47Z +250 9 1 12309 2.99 2005-08-18T05:58:40Z 2020-02-15T06:59:47Z +251 9 2 12652 4.99 2005-08-18T18:48:58Z 2020-02-15T06:59:47Z +252 9 2 14489 7.99 2005-08-21T13:53:59Z 2020-02-15T06:59:47Z +253 9 1 15813 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +254 10 2 1140 4.99 2005-05-31T19:36:30Z 2020-02-15T06:59:47Z +255 10 1 1801 4.99 2005-06-16T20:21:53Z 2020-02-15T06:59:47Z +256 10 1 1995 4.99 2005-06-17T11:11:14Z 2020-02-15T06:59:47Z +257 10 2 2222 3.99 2005-06-18T03:26:23Z 2020-02-15T06:59:47Z +258 10 1 2814 0.99 2005-06-19T20:01:59Z 2020-02-15T06:59:47Z +259 10 1 2865 0.99 2005-06-20T00:00:55Z 2020-02-15T06:59:47Z +260 10 2 3790 3.99 2005-07-06T14:13:45Z 2020-02-15T06:59:47Z +261 10 2 4042 4.99 2005-07-07T03:06:40Z 2020-02-15T06:59:47Z +262 10 1 4255 1.99 2005-07-07T14:14:13Z 2020-02-15T06:59:47Z +263 10 1 5038 7.99 2005-07-09T03:12:52Z 2020-02-15T06:59:47Z +264 10 2 5068 2.99 2005-07-09T04:53:18Z 2020-02-15T06:59:47Z +265 10 1 5444 0.99 2005-07-09T21:58:57Z 2020-02-15T06:59:47Z +266 10 1 5905 2.99 2005-07-10T20:41:09Z 2020-02-15T06:59:47Z +267 10 1 7738 2.99 2005-07-28T05:21:42Z 2020-02-15T06:59:47Z +268 10 2 8001 6.99 2005-07-28T15:10:55Z 2020-02-15T06:59:47Z +269 10 2 8188 4.99 2005-07-28T22:34:12Z 2020-02-15T06:59:47Z +270 10 1 9935 4.99 2005-07-31T15:27:07Z 2020-02-15T06:59:47Z +271 10 2 10671 8.99 2005-08-01T17:09:59Z 2020-02-15T06:59:47Z +272 10 2 11289 2.99 2005-08-02T14:55:00Z 2020-02-15T06:59:47Z +273 10 1 11405 0.99 2005-08-02T19:13:39Z 2020-02-15T06:59:47Z +274 10 2 12031 2.99 2005-08-17T20:11:35Z 2020-02-15T06:59:47Z +275 10 2 12400 2.99 2005-08-18T09:19:12Z 2020-02-15T06:59:47Z +276 10 2 13316 4.99 2005-08-19T19:23:30Z 2020-02-15T06:59:47Z +277 10 2 13917 2.99 2005-08-20T16:43:28Z 2020-02-15T06:59:47Z +278 10 1 15370 5.99 2005-08-22T21:59:29Z 2020-02-15T06:59:47Z +279 11 1 987 6.99 2005-05-30T22:59:12Z 2020-02-15T06:59:47Z +280 11 1 1470 6.99 2005-06-15T20:53:07Z 2020-02-15T06:59:47Z +281 11 1 1939 7.99 2005-06-17T07:26:45Z 2020-02-15T06:59:47Z +282 11 1 3192 0.99 2005-06-20T23:49:12Z 2020-02-15T06:59:47Z +283 11 2 4608 2.99 2005-07-08T07:19:11Z 2020-02-15T06:59:47Z +284 11 1 4943 4.99 2005-07-08T22:43:05Z 2020-02-15T06:59:47Z +285 11 2 5835 5.99 2005-07-10T16:44:58Z 2020-02-15T06:59:47Z +286 11 2 6146 6.99 2005-07-11T09:09:59Z 2020-02-15T06:59:47Z +287 11 1 7314 4.99 2005-07-27T13:13:32Z 2020-02-15T06:59:47Z +288 11 1 8014 4.99 2005-07-28T15:32:07Z 2020-02-15T06:59:47Z +289 11 2 8100 2.99 2005-07-28T18:43:11Z 2020-02-15T06:59:47Z +290 11 2 8447 1.99 2005-07-29T07:38:14Z 2020-02-15T06:59:47Z +291 11 1 8715 0.99 2005-07-29T17:33:45Z 2020-02-15T06:59:47Z +292 11 1 8950 9.99 2005-07-30T03:17:13Z 2020-02-15T06:59:47Z +293 11 2 9292 6.99 2005-07-30T16:08:21Z 2020-02-15T06:59:47Z +294 11 1 10812 4.99 2005-08-01T22:41:16Z 2020-02-15T06:59:47Z +295 11 2 11166 6.99 2005-08-02T10:14:58Z 2020-02-15T06:59:47Z +296 11 2 11502 0.99 2005-08-16T23:06:30Z 2020-02-15T06:59:47Z +297 11 2 12015 5.99 2005-08-17T19:32:44Z 2020-02-15T06:59:47Z +298 11 2 13572 0.99 2005-08-20T05:07:27Z 2020-02-15T06:59:47Z +299 11 1 13790 4.99 2005-08-20T12:17:27Z 2020-02-15T06:59:47Z +300 11 1 15120 0.99 2005-08-22T12:42:47Z 2020-02-15T06:59:47Z +301 11 2 15240 2.99 2005-08-22T17:46:41Z 2020-02-15T06:59:47Z +302 11 1 11646 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +303 12 1 988 4.99 2005-05-30T23:08:03Z 2020-02-15T06:59:47Z +304 12 1 1084 4.99 2005-05-31T11:10:17Z 2020-02-15T06:59:47Z +305 12 2 1752 5.99 2005-06-16T17:02:55Z 2020-02-15T06:59:47Z +306 12 2 2434 5.99 2005-06-18T18:11:51Z 2020-02-15T06:59:47Z +307 12 2 2500 5.99 2005-06-18T23:07:12Z 2020-02-15T06:59:47Z +308 12 2 2623 4.99 2005-06-19T08:11:51Z 2020-02-15T06:59:47Z +309 12 2 3135 2.99 2005-06-20T19:33:52Z 2020-02-15T06:59:47Z +310 12 1 3411 0.99 2005-06-21T16:31:27Z 2020-02-15T06:59:47Z +311 12 1 3870 3.99 2005-07-06T17:57:54Z 2020-02-15T06:59:47Z +312 12 1 5071 0.99 2005-07-09T05:00:39Z 2020-02-15T06:59:47Z +313 12 1 5074 0.99 2005-07-09T05:06:24Z 2020-02-15T06:59:47Z +314 12 2 5111 0.99 2005-07-09T07:02:19Z 2020-02-15T06:59:47Z +315 12 2 5242 3.99 2005-07-09T13:20:25Z 2020-02-15T06:59:47Z +316 12 1 6773 2.99 2005-07-12T15:55:39Z 2020-02-15T06:59:47Z +317 12 2 7008 0.99 2005-07-27T01:44:03Z 2020-02-15T06:59:47Z +318 12 2 7279 0.99 2005-07-27T11:50:47Z 2020-02-15T06:59:47Z +319 12 2 8985 0.99 2005-07-30T04:34:51Z 2020-02-15T06:59:47Z +320 12 2 9166 4.99 2005-07-30T11:26:28Z 2020-02-15T06:59:47Z +321 12 2 9238 5.99 2005-07-30T13:49:43Z 2020-02-15T06:59:47Z +322 12 1 9627 5.99 2005-07-31T04:42:46Z 2020-02-15T06:59:47Z +323 12 2 9708 5.99 2005-07-31T07:45:33Z 2020-02-15T06:59:47Z +324 12 2 10392 10.99 2005-08-01T06:50:26Z 2020-02-15T06:59:47Z +325 12 2 11497 0.99 2005-08-16T22:52:30Z 2020-02-15T06:59:47Z +326 12 1 12604 4.99 2005-08-18T16:58:48Z 2020-02-15T06:59:47Z +327 12 2 13519 0.99 2005-08-20T02:37:07Z 2020-02-15T06:59:47Z +328 12 2 13895 2.99 2005-08-20T15:58:28Z 2020-02-15T06:59:47Z +329 12 2 14240 4.99 2005-08-21T05:19:39Z 2020-02-15T06:59:47Z +330 12 1 15993 0.99 2005-08-23T20:28:44Z 2020-02-15T06:59:47Z +331 13 1 1933 2.99 2005-06-17T06:54:42Z 2020-02-15T06:59:47Z +332 13 1 2209 4.99 2005-06-18T02:24:01Z 2020-02-15T06:59:47Z +333 13 1 2952 2.99 2005-06-20T06:26:57Z 2020-02-15T06:59:47Z +334 13 1 3047 8.99 2005-06-20T12:45:33Z 2020-02-15T06:59:47Z +335 13 2 3946 2.99 2005-07-06T21:39:24Z 2020-02-15T06:59:47Z +336 13 1 6118 8.99 2005-07-11T07:43:08Z 2020-02-15T06:59:47Z +337 13 1 6568 2.99 2005-07-12T05:45:47Z 2020-02-15T06:59:47Z +338 13 1 6870 0.99 2005-07-12T20:13:45Z 2020-02-15T06:59:47Z +339 13 1 6897 2.99 2005-07-12T21:30:41Z 2020-02-15T06:59:47Z +340 13 1 7916 2.99 2005-07-28T11:49:53Z 2020-02-15T06:59:47Z +341 13 1 8277 2.99 2005-07-29T01:38:53Z 2020-02-15T06:59:47Z +342 13 2 8831 11.99 2005-07-29T22:37:41Z 2020-02-15T06:59:47Z +343 13 2 9260 9.99 2005-07-30T14:38:22Z 2020-02-15T06:59:47Z +344 13 2 9434 0.99 2005-07-30T21:29:41Z 2020-02-15T06:59:47Z +345 13 1 9664 0.99 2005-07-31T06:12:08Z 2020-02-15T06:59:47Z +346 13 1 9736 7.99 2005-07-31T08:58:40Z 2020-02-15T06:59:47Z +347 13 1 10003 4.99 2005-07-31T17:48:51Z 2020-02-15T06:59:47Z +348 13 1 11292 4.99 2005-08-02T14:58:41Z 2020-02-15T06:59:47Z +349 13 2 11315 0.99 2005-08-02T16:05:17Z 2020-02-15T06:59:47Z +350 13 2 11761 5.99 2005-08-17T09:44:59Z 2020-02-15T06:59:47Z +351 13 2 12918 7.99 2005-08-19T04:31:36Z 2020-02-15T06:59:47Z +352 13 2 13096 4.99 2005-08-19T10:49:03Z 2020-02-15T06:59:47Z +353 13 2 13213 0.99 2005-08-19T15:25:48Z 2020-02-15T06:59:47Z +354 13 1 13456 0.99 2005-08-20T00:33:19Z 2020-02-15T06:59:47Z +355 13 1 14252 9.99 2005-08-21T05:44:07Z 2020-02-15T06:59:47Z +356 13 2 14545 7.99 2005-08-21T15:44:23Z 2020-02-15T06:59:47Z +357 13 1 15338 4.99 2005-08-22T20:51:24Z 2020-02-15T06:59:47Z +358 14 1 151 0.99 2005-05-26T00:37:28Z 2020-02-15T06:59:47Z +359 14 1 346 9.99 2005-05-27T04:34:41Z 2020-02-15T06:59:47Z +360 14 1 525 5.99 2005-05-28T04:25:33Z 2020-02-15T06:59:47Z +361 14 1 671 2.99 2005-05-28T22:04:30Z 2020-02-15T06:59:47Z +362 14 2 815 0.99 2005-05-29T20:24:28Z 2020-02-15T06:59:47Z +363 14 2 1360 4.99 2005-06-15T13:32:15Z 2020-02-15T06:59:47Z +364 14 1 3707 2.99 2005-07-06T10:21:49Z 2020-02-15T06:59:47Z +365 14 1 4952 0.99 2005-07-08T23:00:07Z 2020-02-15T06:59:47Z +366 14 1 5104 0.99 2005-07-09T06:37:07Z 2020-02-15T06:59:47Z +367 14 2 5317 7.99 2005-07-09T16:10:25Z 2020-02-15T06:59:47Z +368 14 1 5383 4.99 2005-07-09T19:14:32Z 2020-02-15T06:59:47Z +369 14 1 5565 7.99 2005-07-10T03:29:48Z 2020-02-15T06:59:47Z +370 14 1 8035 6.99 2005-07-28T16:23:01Z 2020-02-15T06:59:47Z +371 14 1 8042 0.99 2005-07-28T16:45:11Z 2020-02-15T06:59:47Z +372 14 1 8548 3.99 2005-07-29T11:11:33Z 2020-02-15T06:59:47Z +373 14 2 8836 4.99 2005-07-29T22:46:08Z 2020-02-15T06:59:47Z +374 14 2 9438 4.99 2005-07-30T21:36:15Z 2020-02-15T06:59:47Z +375 14 1 9592 2.99 2005-07-31T03:21:16Z 2020-02-15T06:59:47Z +376 14 1 10348 2.99 2005-08-01T05:23:00Z 2020-02-15T06:59:47Z +377 14 2 10526 6.99 2005-08-01T11:55:33Z 2020-02-15T06:59:47Z +378 14 1 11480 4.99 2005-08-02T22:18:24Z 2020-02-15T06:59:47Z +379 14 2 11528 3.99 2005-08-17T00:27:23Z 2020-02-15T06:59:47Z +380 14 1 12668 2.99 2005-08-18T19:16:47Z 2020-02-15T06:59:47Z +381 14 1 13757 4.99 2005-08-20T11:20:12Z 2020-02-15T06:59:47Z +382 14 2 15015 6.99 2005-08-22T08:43:50Z 2020-02-15T06:59:47Z +383 14 1 15373 0.99 2005-08-22T22:08:11Z 2020-02-15T06:59:47Z +384 14 1 16045 0.99 2005-08-23T22:25:26Z 2020-02-15T06:59:47Z +385 14 1 13780 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +386 15 1 2486 2.99 2005-06-18T21:26:56Z 2020-02-15T06:59:47Z +387 15 1 2937 5.99 2005-06-20T05:15:37Z 2020-02-15T06:59:47Z +388 15 2 3182 0.99 2005-06-20T22:52:18Z 2020-02-15T06:59:47Z +389 15 1 3550 7.99 2005-07-06T02:29:21Z 2020-02-15T06:59:47Z +390 15 1 4127 5.99 2005-07-07T07:26:19Z 2020-02-15T06:59:47Z +391 15 1 5717 2.99 2005-07-10T11:02:03Z 2020-02-15T06:59:47Z +392 15 2 5975 2.99 2005-07-11T00:14:19Z 2020-02-15T06:59:47Z +393 15 1 7105 4.99 2005-07-27T05:15:37Z 2020-02-15T06:59:47Z +394 15 1 8193 0.99 2005-07-28T22:50:50Z 2020-02-15T06:59:47Z +395 15 2 8615 6.99 2005-07-29T13:36:01Z 2020-02-15T06:59:47Z +396 15 2 8927 4.99 2005-07-30T02:13:31Z 2020-02-15T06:59:47Z +397 15 1 9987 2.99 2005-07-31T17:22:35Z 2020-02-15T06:59:47Z +398 15 1 11118 2.99 2005-08-02T08:44:18Z 2020-02-15T06:59:47Z +399 15 1 11141 2.99 2005-08-02T09:29:11Z 2020-02-15T06:59:47Z +400 15 2 11307 2.99 2005-08-02T15:48:08Z 2020-02-15T06:59:47Z +401 15 2 11341 2.99 2005-08-02T17:09:24Z 2020-02-15T06:59:47Z +402 15 1 11922 7.99 2005-08-17T16:20:37Z 2020-02-15T06:59:47Z +403 15 2 12272 2.99 2005-08-18T04:39:10Z 2020-02-15T06:59:47Z +404 15 2 12551 2.99 2005-08-18T14:46:26Z 2020-02-15T06:59:47Z +405 15 1 12635 2.99 2005-08-18T18:00:23Z 2020-02-15T06:59:47Z +406 15 2 13339 8.99 2005-08-19T20:18:36Z 2020-02-15T06:59:47Z +407 15 1 13393 5.99 2005-08-19T22:03:46Z 2020-02-15T06:59:47Z +408 15 2 13503 5.99 2005-08-20T02:00:33Z 2020-02-15T06:59:47Z +409 15 1 13541 4.99 2005-08-20T03:41:41Z 2020-02-15T06:59:47Z +410 15 2 13677 3.99 2005-08-20T08:34:41Z 2020-02-15T06:59:47Z +411 15 2 14569 0.99 2005-08-21T16:31:22Z 2020-02-15T06:59:47Z +412 15 2 14776 4.99 2005-08-21T23:53:35Z 2020-02-15T06:59:47Z +413 15 2 14872 8.99 2005-08-22T03:23:41Z 2020-02-15T06:59:47Z +414 15 1 15178 0.99 2005-08-22T15:36:04Z 2020-02-15T06:59:47Z +415 15 1 15897 4.99 2005-08-23T17:12:31Z 2020-02-15T06:59:47Z +416 15 1 13798 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +417 15 2 13968 0 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +418 16 1 335 3.99 2005-05-27T03:07:10Z 2020-02-15T06:59:47Z +419 16 1 593 2.99 2005-05-28T13:33:23Z 2020-02-15T06:59:47Z +420 16 2 887 0.99 2005-05-30T07:10:00Z 2020-02-15T06:59:47Z +421 16 1 1017 2.99 2005-05-31T02:53:36Z 2020-02-15T06:59:47Z +422 16 2 1934 6.99 2005-06-17T07:04:57Z 2020-02-15T06:59:47Z +423 16 1 1944 7.99 2005-06-17T07:50:53Z 2020-02-15T06:59:47Z +424 16 1 1.99 2005-06-18T04:56:12Z 2020-02-15T06:59:47Z +425 16 1 2960 7.99 2005-06-20T07:10:09Z 2020-02-15T06:59:47Z +426 16 2 3348 0.99 2005-06-21T11:16:42Z 2020-02-15T06:59:47Z +427 16 1 3548 0.99 2005-07-06T02:23:39Z 2020-02-15T06:59:47Z +428 16 2 4219 2.99 2005-07-07T12:11:22Z 2020-02-15T06:59:47Z +429 16 2 4263 3.99 2005-07-07T14:24:44Z 2020-02-15T06:59:47Z +430 16 2 4517 4.99 2005-07-08T02:45:19Z 2020-02-15T06:59:47Z +431 16 1 6100 4.99 2005-07-11T06:40:31Z 2020-02-15T06:59:47Z +432 16 2 7489 0.99 2005-07-27T19:39:38Z 2020-02-15T06:59:47Z +433 16 2 7552 2.99 2005-07-27T22:03:41Z 2020-02-15T06:59:47Z +434 16 2 8452 5.99 2005-07-29T07:45:00Z 2020-02-15T06:59:47Z +435 16 2 9158 0.99 2005-07-30T11:12:03Z 2020-02-15T06:59:47Z +436 16 2 9610 5.99 2005-07-31T03:54:05Z 2020-02-15T06:59:47Z +437 16 2 10687 2.99 2005-08-01T17:53:02Z 2020-02-15T06:59:47Z +438 16 2 10727 2.99 2005-08-01T19:15:08Z 2020-02-15T06:59:47Z +439 16 2 11308 0.99 2005-08-02T15:50:44Z 2020-02-15T06:59:47Z +440 16 2 12104 2.99 2005-08-17T22:53:00Z 2020-02-15T06:59:47Z +441 16 1 12358 4.99 2005-08-18T07:41:43Z 2020-02-15T06:59:47Z +442 16 1 12577 7.99 2005-08-18T15:39:46Z 2020-02-15T06:59:47Z +443 16 2 13151 4.99 2005-08-19T13:08:23Z 2020-02-15T06:59:47Z +444 16 1 13391 4.99 2005-08-19T22:01:42Z 2020-02-15T06:59:47Z +445 16 1 13480 6.99 2005-08-20T01:10:27Z 2020-02-15T06:59:47Z +446 16 1 14511 8.99 2005-08-21T14:45:34Z 2020-02-15T06:59:47Z +447 17 2 287 2.99 2005-05-26T19:44:54Z 2020-02-15T06:59:47Z +448 17 1 580 2.99 2005-05-28T11:19:53Z 2020-02-15T06:59:47Z +449 17 2 884 4.99 2005-05-30T06:41:32Z 2020-02-15T06:59:47Z +450 17 2 2175 5.99 2005-06-18T00:17:58Z 2020-02-15T06:59:47Z +451 17 1 2684 8.99 2005-06-19T12:29:08Z 2020-02-15T06:59:47Z +452 17 2 3269 5.99 2005-06-21T05:06:30Z 2020-02-15T06:59:47Z +453 17 1 5714 3.99 2005-07-10T10:46:57Z 2020-02-15T06:59:47Z +454 17 1 5883 3.99 2005-07-10T19:25:21Z 2020-02-15T06:59:47Z +455 17 2 6884 1.99 2005-07-12T20:52:41Z 2020-02-15T06:59:47Z +456 17 2 8076 8.99 2005-07-28T17:45:58Z 2020-02-15T06:59:47Z +457 17 1 8213 2.99 2005-07-28T23:37:33Z 2020-02-15T06:59:47Z +458 17 2 9092 8.99 2005-07-30T08:30:56Z 2020-02-15T06:59:47Z +459 17 1 9138 2.99 2005-07-30T10:11:52Z 2020-02-15T06:59:47Z +460 17 2 9382 8.99 2005-07-30T19:23:44Z 2020-02-15T06:59:47Z +461 17 1 9489 0.99 2005-07-30T23:43:32Z 2020-02-15T06:59:47Z +462 17 2 11990 4.99 2005-08-17T18:26:22Z 2020-02-15T06:59:47Z +463 17 1 13732 2.99 2005-08-20T10:24:41Z 2020-02-15T06:59:47Z +464 17 1 14040 2.99 2005-08-20T21:43:44Z 2020-02-15T06:59:47Z +465 17 2 14326 2.99 2005-08-21T08:15:41Z 2020-02-15T06:59:47Z +466 17 1 14346 2.99 2005-08-21T08:42:26Z 2020-02-15T06:59:47Z +467 17 2 15752 5.99 2005-08-23T12:41:38Z 2020-02-15T06:59:47Z +468 18 1 50 2.99 2005-05-25T06:44:53Z 2020-02-15T06:59:47Z +469 18 1 116 4.99 2005-05-25T19:27:51Z 2020-02-15T06:59:47Z +470 18 1 692 4.99 2005-05-29T01:32:10Z 2020-02-15T06:59:47Z +471 18 2 1451 5.99 2005-06-15T19:30:18Z 2020-02-15T06:59:47Z +472 18 2 1783 4.99 2005-06-16T19:23:23Z 2020-02-15T06:59:47Z +473 18 2 2112 5.99 2005-06-17T19:52:42Z 2020-02-15T06:59:47Z +474 18 1 2990 8.99 2005-06-20T09:02:51Z 2020-02-15T06:59:47Z +475 18 2 4672 3.99 2005-07-08T10:15:38Z 2020-02-15T06:59:47Z +476 18 2 4724 3.99 2005-07-08T12:46:30Z 2020-02-15T06:59:47Z +477 18 2 4923 3.99 2005-07-08T21:44:39Z 2020-02-15T06:59:47Z +478 18 2 6128 2.99 2005-07-11T08:15:08Z 2020-02-15T06:59:47Z +479 18 1 6846 0.99 2005-07-12T19:20:45Z 2020-02-15T06:59:47Z +480 18 2 8122 2.99 2005-07-28T19:27:37Z 2020-02-15T06:59:47Z +481 18 1 8555 4.99 2005-07-29T11:18:01Z 2020-02-15T06:59:47Z +482 18 1 9036 4.99 2005-07-30T06:18:38Z 2020-02-15T06:59:47Z +483 18 2 9114 4.99 2005-07-30T09:13:21Z 2020-02-15T06:59:47Z +484 18 1 10682 4.99 2005-08-01T17:32:53Z 2020-02-15T06:59:47Z +485 18 2 10721 1.99 2005-08-01T19:05:18Z 2020-02-15T06:59:47Z +486 18 2 11094 4.99 2005-08-02T08:03:02Z 2020-02-15T06:59:47Z +487 18 2 11439 4.99 2005-08-02T20:22:45Z 2020-02-15T06:59:47Z +488 18 2 12333 0.99 2005-08-18T06:51:39Z 2020-02-15T06:59:47Z +489 18 2 13490 0.99 2005-08-20T01:29:29Z 2020-02-15T06:59:47Z +490 19 2 18 0.99 2005-05-25T01:10:47Z 2020-02-15T06:59:47Z +491 19 2 110 9.99 2005-05-25T18:43:49Z 2020-02-15T06:59:47Z +492 19 1 179 6.99 2005-05-26T04:26:06Z 2020-02-15T06:59:47Z +493 19 1 337 2.99 2005-05-27T03:22:30Z 2020-02-15T06:59:47Z +494 19 2 591 2.99 2005-05-28T13:11:04Z 2020-02-15T06:59:47Z +495 19 2 696 2.99 2005-05-29T01:59:10Z 2020-02-15T06:59:47Z +496 19 1 2657 2.99 2005-06-19T10:42:59Z 2020-02-15T06:59:47Z +497 19 1 2848 2.99 2005-06-19T22:55:37Z 2020-02-15T06:59:47Z +498 19 2 3423 2.99 2005-06-21T17:38:02Z 2020-02-15T06:59:47Z +499 19 2 3549 4.99 2005-07-06T02:24:55Z 2020-02-15T06:59:47Z +500 19 2 6495 4.99 2005-07-12T02:57:02Z 2020-02-15T06:59:47Z +501 19 1 9157 5.99 2005-07-30T11:06:23Z 2020-02-15T06:59:47Z +502 19 1 9256 0.99 2005-07-30T14:29:29Z 2020-02-15T06:59:47Z +503 19 2 10077 9.99 2005-07-31T20:01:06Z 2020-02-15T06:59:47Z +504 19 1 10176 7.99 2005-07-31T23:40:35Z 2020-02-15T06:59:47Z +505 19 2 11508 8.99 2005-08-16T23:27:36Z 2020-02-15T06:59:47Z +506 19 1 11869 5.99 2005-08-17T14:10:22Z 2020-02-15T06:59:47Z +507 19 1 12211 9.99 2005-08-18T02:31:18Z 2020-02-15T06:59:47Z +508 19 2 12357 2.99 2005-08-18T07:40:52Z 2020-02-15T06:59:47Z +509 19 1 13718 8.99 2005-08-20T09:53:44Z 2020-02-15T06:59:47Z +510 19 2 13804 8.99 2005-08-20T12:46:32Z 2020-02-15T06:59:47Z +511 19 1 14101 4.99 2005-08-21T00:33:03Z 2020-02-15T06:59:47Z +512 19 1 15047 2.99 2005-08-22T09:57:16Z 2020-02-15T06:59:47Z +513 19 2 15529 0.99 2005-08-23T03:46:47Z 2020-02-15T06:59:47Z +514 20 2 202 2.99 2005-05-26T07:27:36Z 2020-02-15T06:59:47Z +515 20 2 497 6.99 2005-05-28T00:54:39Z 2020-02-15T06:59:47Z +516 20 2 546 1.99 2005-05-28T07:16:25Z 2020-02-15T06:59:47Z +517 20 2 1558 0.99 2005-06-16T02:33:53Z 2020-02-15T06:59:47Z +518 20 2 2136 3.99 2005-06-17T21:16:41Z 2020-02-15T06:59:47Z +519 20 2 2343 4.99 2005-06-18T11:46:26Z 2020-02-15T06:59:47Z +520 20 1 3350 4.99 2005-06-21T11:21:38Z 2020-02-15T06:59:47Z +521 20 2 4011 3.99 2005-07-07T00:48:25Z 2020-02-15T06:59:47Z +522 20 1 4407 2.99 2005-07-07T21:39:45Z 2020-02-15T06:59:47Z +523 20 1 5718 2.99 2005-07-10T11:03:20Z 2020-02-15T06:59:47Z +524 20 1 6254 2.99 2005-07-11T15:10:18Z 2020-02-15T06:59:47Z +525 20 2 6267 6.99 2005-07-11T15:53:00Z 2020-02-15T06:59:47Z +526 20 2 7217 4.99 2005-07-27T09:31:44Z 2020-02-15T06:59:47Z +527 20 2 7864 5.99 2005-07-28T10:06:10Z 2020-02-15T06:59:47Z +528 20 2 8127 2.99 2005-07-28T19:45:19Z 2020-02-15T06:59:47Z +529 20 2 9075 4.99 2005-07-30T07:55:14Z 2020-02-15T06:59:47Z +530 20 2 9468 3.99 2005-07-30T22:53:52Z 2020-02-15T06:59:47Z +531 20 2 10284 4.99 2005-08-01T03:33:19Z 2020-02-15T06:59:47Z +532 20 1 10616 7.99 2005-08-01T14:59:50Z 2020-02-15T06:59:47Z +533 20 1 10954 1.99 2005-08-02T03:30:24Z 2020-02-15T06:59:47Z +534 20 1 11821 0.99 2005-08-17T12:27:55Z 2020-02-15T06:59:47Z +535 20 1 12180 0.99 2005-08-18T01:28:15Z 2020-02-15T06:59:47Z +536 20 2 13036 4.99 2005-08-19T08:48:37Z 2020-02-15T06:59:47Z +537 20 1 13137 4.99 2005-08-19T12:26:32Z 2020-02-15T06:59:47Z +538 20 2 13317 2.99 2005-08-19T19:25:42Z 2020-02-15T06:59:47Z +539 20 2 14613 2.99 2005-08-21T18:03:20Z 2020-02-15T06:59:47Z +540 20 2 15057 6.99 2005-08-22T10:19:58Z 2020-02-15T06:59:47Z +541 20 1 15161 1.99 2005-08-22T14:37:22Z 2020-02-15T06:59:47Z +542 20 2 15248 0.99 2005-08-22T17:53:06Z 2020-02-15T06:59:47Z +543 20 1 15460 2.99 2005-08-23T01:10:42Z 2020-02-15T06:59:47Z +544 21 1 260 3.99 2005-05-26T15:42:20Z 2020-02-15T06:59:47Z +545 21 2 463 3.99 2005-05-27T20:11:47Z 2020-02-15T06:59:47Z +546 21 1 570 0.99 2005-05-28T10:15:04Z 2020-02-15T06:59:47Z +547 21 2 2235 7.99 2005-06-18T04:08:50Z 2020-02-15T06:59:47Z +548 21 1 2268 4.99 2005-06-18T06:13:41Z 2020-02-15T06:59:47Z +549 21 1 2393 2.99 2005-06-18T15:37:55Z 2020-02-15T06:59:47Z +550 21 2 2830 4.99 2005-06-19T21:14:33Z 2020-02-15T06:59:47Z +551 21 1 3212 10.99 2005-06-21T01:04:35Z 2020-02-15T06:59:47Z +552 21 2 5107 4.99 2005-07-09T06:42:32Z 2020-02-15T06:59:47Z +553 21 1 5772 3.99 2005-07-10T13:27:40Z 2020-02-15T06:59:47Z +554 21 1 5961 2.99 2005-07-10T23:43:23Z 2020-02-15T06:59:47Z +555 21 2 6943 1.99 2005-07-26T23:28:13Z 2020-02-15T06:59:47Z +556 21 1 7994 0.99 2005-07-28T14:56:54Z 2020-02-15T06:59:47Z +557 21 2 8196 6.99 2005-07-28T22:56:11Z 2020-02-15T06:59:47Z +558 21 2 8862 2.99 2005-07-29T23:49:23Z 2020-02-15T06:59:47Z +559 21 2 9149 0.99 2005-07-30T10:45:12Z 2020-02-15T06:59:47Z +560 21 1 9699 5.99 2005-07-31T07:29:25Z 2020-02-15T06:59:47Z +561 21 2 10570 4.99 2005-08-01T13:23:06Z 2020-02-15T06:59:47Z +562 21 1 10734 0.99 2005-08-01T19:28:47Z 2020-02-15T06:59:47Z +563 21 2 11072 0.99 2005-08-02T07:10:57Z 2020-02-15T06:59:47Z +564 21 2 11970 0.99 2005-08-17T17:53:09Z 2020-02-15T06:59:47Z +565 21 2 12131 2.99 2005-08-17T23:34:16Z 2020-02-15T06:59:47Z +566 21 2 12660 4.99 2005-08-18T19:07:23Z 2020-02-15T06:59:47Z +567 21 1 12774 6.99 2005-08-18T23:34:22Z 2020-02-15T06:59:47Z +568 21 1 13381 2.99 2005-08-19T21:37:57Z 2020-02-15T06:59:47Z +569 21 2 13399 4.99 2005-08-19T22:09:28Z 2020-02-15T06:59:47Z +570 21 1 13411 4.99 2005-08-19T22:43:38Z 2020-02-15T06:59:47Z +571 21 1 13463 8.99 2005-08-20T00:50:54Z 2020-02-15T06:59:47Z +572 21 1 13699 9.99 2005-08-20T09:26:14Z 2020-02-15T06:59:47Z +573 21 1 13740 4.99 2005-08-20T10:48:43Z 2020-02-15T06:59:47Z +574 21 2 14077 8.99 2005-08-20T23:24:07Z 2020-02-15T06:59:47Z +575 21 2 14161 2.99 2005-08-21T02:51:59Z 2020-02-15T06:59:47Z +576 21 2 14446 2.99 2005-08-21T12:10:41Z 2020-02-15T06:59:47Z +577 21 1 14869 4.99 2005-08-22T03:20:26Z 2020-02-15T06:59:47Z +578 21 1 14933 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +579 22 1 370 4.99 2005-05-27T07:49:43Z 2020-02-15T06:59:47Z +580 22 1 556 4.99 2005-05-28T08:31:36Z 2020-02-15T06:59:47Z +581 22 2 820 8.99 2005-05-29T21:07:22Z 2020-02-15T06:59:47Z +582 22 1 3419 2.99 2005-06-21T17:18:01Z 2020-02-15T06:59:47Z +583 22 2 4215 2.99 2005-07-07T12:00:52Z 2020-02-15T06:59:47Z +584 22 1 5294 6.99 2005-07-09T15:23:42Z 2020-02-15T06:59:47Z +585 22 1 5815 2.99 2005-07-10T15:48:19Z 2020-02-15T06:59:47Z +586 22 1 7087 4.99 2005-07-27T04:42:08Z 2020-02-15T06:59:47Z +587 22 1 7705 7.99 2005-07-28T04:02:58Z 2020-02-15T06:59:47Z +588 22 2 9410 0.99 2005-07-30T20:38:05Z 2020-02-15T06:59:47Z +589 22 1 9580 4.99 2005-07-31T03:01:11Z 2020-02-15T06:59:47Z +590 22 1 12023 5.99 2005-08-17T19:54:54Z 2020-02-15T06:59:47Z +591 22 1 12124 2.99 2005-08-17T23:22:46Z 2020-02-15T06:59:47Z +592 22 2 12809 0.99 2005-08-19T00:42:24Z 2020-02-15T06:59:47Z +593 22 2 13060 9.99 2005-08-19T09:43:25Z 2020-02-15T06:59:47Z +594 22 1 14056 2.99 2005-08-20T22:18:53Z 2020-02-15T06:59:47Z +595 22 1 14564 6.99 2005-08-21T16:24:43Z 2020-02-15T06:59:47Z +596 22 1 15134 7.99 2005-08-22T13:18:25Z 2020-02-15T06:59:47Z +597 22 1 15589 6.99 2005-08-23T06:03:31Z 2020-02-15T06:59:47Z +598 22 1 15658 4.99 2005-08-23T08:48:43Z 2020-02-15T06:59:47Z +599 22 1 15793 4.99 2005-08-23T14:06:19Z 2020-02-15T06:59:47Z +600 22 1 12222 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +601 23 1 129 8.99 2005-05-25T21:20:03Z 2020-02-15T06:59:47Z +602 23 1 654 2.99 2005-05-28T20:15:30Z 2020-02-15T06:59:47Z +603 23 2 1090 0.99 2005-05-31T12:03:44Z 2020-02-15T06:59:47Z +604 23 1 2753 1.99 2005-06-19T16:44:35Z 2020-02-15T06:59:47Z +605 23 1 2827 0.99 2005-06-19T20:50:01Z 2020-02-15T06:59:47Z +606 23 1 3015 5.99 2005-06-20T10:48:56Z 2020-02-15T06:59:47Z +607 23 1 3055 4.99 2005-06-20T13:19:58Z 2020-02-15T06:59:47Z +608 23 1 3461 2.99 2005-06-21T21:49:18Z 2020-02-15T06:59:47Z +609 23 2 3736 3.99 2005-07-06T11:43:44Z 2020-02-15T06:59:47Z +610 23 2 3781 2.99 2005-07-06T13:53:41Z 2020-02-15T06:59:47Z +611 23 2 4853 2.99 2005-07-08T18:43:18Z 2020-02-15T06:59:47Z +612 23 1 6213 2.99 2005-07-11T12:43:07Z 2020-02-15T06:59:47Z +613 23 1 6238 2.99 2005-07-11T14:20:18Z 2020-02-15T06:59:47Z +614 23 2 6917 5.99 2005-07-12T22:30:15Z 2020-02-15T06:59:47Z +615 23 1 7155 7.99 2005-07-27T07:18:46Z 2020-02-15T06:59:47Z +616 23 1 8015 2.99 2005-07-28T15:33:03Z 2020-02-15T06:59:47Z +617 23 2 8718 0.99 2005-07-29T17:41:14Z 2020-02-15T06:59:47Z +618 23 2 9209 5.99 2005-07-30T12:55:36Z 2020-02-15T06:59:47Z +619 23 2 9255 9.99 2005-07-30T14:26:46Z 2020-02-15T06:59:47Z +620 23 2 9718 3.99 2005-07-31T08:25:03Z 2020-02-15T06:59:47Z +621 23 1 10132 6.99 2005-07-31T21:50:24Z 2020-02-15T06:59:47Z +622 23 1 10898 2.99 2005-08-02T01:29:57Z 2020-02-15T06:59:47Z +623 23 2 11501 2.99 2005-08-16T23:04:53Z 2020-02-15T06:59:47Z +624 23 2 13290 2.99 2005-08-19T18:31:50Z 2020-02-15T06:59:47Z +625 23 2 13331 4.99 2005-08-19T20:00:25Z 2020-02-15T06:59:47Z +626 23 2 13429 6.99 2005-08-19T23:25:37Z 2020-02-15T06:59:47Z +627 23 2 13511 0.99 2005-08-20T02:21:40Z 2020-02-15T06:59:47Z +628 23 2 13557 0.99 2005-08-20T04:12:41Z 2020-02-15T06:59:47Z +629 23 2 14482 2.99 2005-08-21T13:42:45Z 2020-02-15T06:59:47Z +630 23 2 15532 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +631 24 2 1007 6.99 2005-05-31T01:02:28Z 2020-02-15T06:59:47Z +632 24 2 1077 2.99 2005-05-31T10:22:54Z 2020-02-15T06:59:47Z +633 24 1 1716 2.99 2005-06-16T14:39:31Z 2020-02-15T06:59:47Z +634 24 1 2070 2.99 2005-06-17T16:27:51Z 2020-02-15T06:59:47Z +635 24 2 2116 4.99 2005-06-17T20:16:12Z 2020-02-15T06:59:47Z +636 24 1 2451 5.99 2005-06-18T19:28:02Z 2020-02-15T06:59:47Z +637 24 2 2963 7.99 2005-06-20T07:33:09Z 2020-02-15T06:59:47Z +638 24 2 3649 7.99 2005-07-06T07:32:42Z 2020-02-15T06:59:47Z +639 24 2 4378 2.99 2005-07-07T20:29:08Z 2020-02-15T06:59:47Z +640 24 1 5310 0.99 2005-07-09T16:00:34Z 2020-02-15T06:59:47Z +641 24 2 5648 0.99 2005-07-10T07:09:21Z 2020-02-15T06:59:47Z +642 24 1 6855 4.99 2005-07-12T19:46:29Z 2020-02-15T06:59:47Z +643 24 1 7266 1.99 2005-07-27T11:22:17Z 2020-02-15T06:59:47Z +644 24 1 8947 4.99 2005-07-30T03:15:37Z 2020-02-15T06:59:47Z +645 24 1 9723 0.99 2005-07-31T08:31:18Z 2020-02-15T06:59:47Z +646 24 2 9925 0.99 2005-07-31T15:08:47Z 2020-02-15T06:59:47Z +647 24 2 10491 2.99 2005-08-01T10:38:27Z 2020-02-15T06:59:47Z +648 24 1 11209 2.99 2005-08-02T12:09:45Z 2020-02-15T06:59:47Z +649 24 2 11546 2.99 2005-08-17T00:57:36Z 2020-02-15T06:59:47Z +650 24 2 12165 8.99 2005-08-18T00:53:37Z 2020-02-15T06:59:47Z +651 24 1 12745 2.99 2005-08-18T22:22:45Z 2020-02-15T06:59:47Z +652 24 1 12999 1.99 2005-08-19T07:34:53Z 2020-02-15T06:59:47Z +653 24 2 13058 4.99 2005-08-19T09:40:53Z 2020-02-15T06:59:47Z +654 24 1 13247 0.99 2005-08-19T16:45:59Z 2020-02-15T06:59:47Z +655 24 2 15357 4.99 2005-08-22T21:28:59Z 2020-02-15T06:59:47Z +656 25 1 90 7.99 2005-05-25T14:31:25Z 2020-02-15T06:59:47Z +657 25 2 1033 2.99 2005-05-31T04:50:07Z 2020-02-15T06:59:47Z +658 25 1 1338 4.99 2005-06-15T12:17:34Z 2020-02-15T06:59:47Z +659 25 1 1365 2.99 2005-06-15T14:09:55Z 2020-02-15T06:59:47Z +660 25 2 1754 6.99 2005-06-16T17:13:23Z 2020-02-15T06:59:47Z +661 25 2 2625 8.99 2005-06-19T08:23:11Z 2020-02-15T06:59:47Z +662 25 1 2901 4.99 2005-06-20T02:41:28Z 2020-02-15T06:59:47Z +663 25 1 3447 4.99 2005-06-21T20:53:31Z 2020-02-15T06:59:47Z +664 25 1 4282 2.99 2005-07-07T15:26:31Z 2020-02-15T06:59:47Z +665 25 1 4319 0.99 2005-07-07T17:50:27Z 2020-02-15T06:59:47Z +666 25 2 4404 2.99 2005-07-07T21:31:53Z 2020-02-15T06:59:47Z +667 25 1 5881 2.99 2005-07-10T19:19:43Z 2020-02-15T06:59:47Z +668 25 1 6653 4.99 2005-07-12T11:06:17Z 2020-02-15T06:59:47Z +669 25 2 6905 2.99 2005-07-12T22:02:18Z 2020-02-15T06:59:47Z +670 25 2 8667 2.99 2005-07-29T15:40:57Z 2020-02-15T06:59:47Z +671 25 2 8878 0.99 2005-07-30T00:15:57Z 2020-02-15T06:59:47Z +672 25 1 9140 8.99 2005-07-30T10:12:01Z 2020-02-15T06:59:47Z +673 25 2 9334 2.99 2005-07-30T17:56:38Z 2020-02-15T06:59:47Z +674 25 2 9922 2.99 2005-07-31T14:59:37Z 2020-02-15T06:59:47Z +675 25 2 10103 2.99 2005-07-31T20:49:13Z 2020-02-15T06:59:47Z +676 25 1 10324 5.99 2005-08-01T04:49:06Z 2020-02-15T06:59:47Z +677 25 2 10860 2.99 2005-08-02T00:12:32Z 2020-02-15T06:59:47Z +678 25 1 10916 2.99 2005-08-02T02:05:59Z 2020-02-15T06:59:47Z +679 25 1 11642 0.99 2005-08-17T04:48:05Z 2020-02-15T06:59:47Z +680 25 1 12922 0.99 2005-08-19T04:48:48Z 2020-02-15T06:59:47Z +681 25 1 14193 4.99 2005-08-21T03:38:27Z 2020-02-15T06:59:47Z +682 25 1 14236 4.99 2005-08-21T05:13:16Z 2020-02-15T06:59:47Z +683 25 1 15512 0.99 2005-08-23T02:57:30Z 2020-02-15T06:59:47Z +684 25 1 15972 5.99 2005-08-23T20:00:30Z 2020-02-15T06:59:47Z +685 26 1 796 2.99 2005-05-29T16:59:44Z 2020-02-15T06:59:47Z +686 26 2 1105 2.99 2005-05-31T14:33:56Z 2020-02-15T06:59:47Z +687 26 1 1440 5.99 2005-06-15T18:53:14Z 2020-02-15T06:59:47Z +688 26 2 1706 4.99 2005-06-16T14:01:02Z 2020-02-15T06:59:47Z +689 26 1 2093 9.99 2005-06-17T18:14:08Z 2020-02-15T06:59:47Z +690 26 2 2416 3.99 2005-06-18T17:07:34Z 2020-02-15T06:59:47Z +691 26 2 2421 6.99 2005-06-18T17:25:05Z 2020-02-15T06:59:47Z +692 26 1 2532 4.99 2005-06-19T01:27:46Z 2020-02-15T06:59:47Z +693 26 1 2745 4.99 2005-06-19T16:21:19Z 2020-02-15T06:59:47Z +694 26 1 4065 2.99 2005-07-07T04:32:28Z 2020-02-15T06:59:47Z +695 26 1 4274 4.99 2005-07-07T14:42:04Z 2020-02-15T06:59:47Z +696 26 1 4382 4.99 2005-07-07T20:41:03Z 2020-02-15T06:59:47Z +697 26 2 4402 0.99 2005-07-07T21:28:46Z 2020-02-15T06:59:47Z +698 26 1 4431 6.99 2005-07-07T22:39:02Z 2020-02-15T06:59:47Z +699 26 1 4536 3.99 2005-07-08T03:43:22Z 2020-02-15T06:59:47Z +700 26 1 4641 6.99 2005-07-08T09:09:46Z 2020-02-15T06:59:47Z +701 26 1 5437 2.99 2005-07-09T21:32:29Z 2020-02-15T06:59:47Z +702 26 1 6149 1.99 2005-07-11T09:19:31Z 2020-02-15T06:59:47Z +703 26 2 6243 2.99 2005-07-11T14:53:25Z 2020-02-15T06:59:47Z +704 26 2 7328 0.99 2005-07-27T13:55:18Z 2020-02-15T06:59:47Z +705 26 1 8241 4.99 2005-07-29T00:33:36Z 2020-02-15T06:59:47Z +706 26 1 9484 0.99 2005-07-30T23:31:40Z 2020-02-15T06:59:47Z +707 26 1 10386 3.99 2005-08-01T06:42:20Z 2020-02-15T06:59:47Z +708 26 1 10996 3.99 2005-08-02T04:48:11Z 2020-02-15T06:59:47Z +709 26 2 11314 2.99 2005-08-02T16:04:08Z 2020-02-15T06:59:47Z +710 26 1 11338 0.99 2005-08-02T17:00:12Z 2020-02-15T06:59:47Z +711 26 1 11744 5.99 2005-08-17T08:54:30Z 2020-02-15T06:59:47Z +712 26 2 13111 4.99 2005-08-19T11:25:10Z 2020-02-15T06:59:47Z +713 26 2 14183 4.99 2005-08-21T03:24:29Z 2020-02-15T06:59:47Z +714 26 2 14192 8.99 2005-08-21T03:37:42Z 2020-02-15T06:59:47Z +715 26 2 14603 1.99 2005-08-21T17:51:06Z 2020-02-15T06:59:47Z +716 26 1 14677 7.99 2005-08-21T20:12:30Z 2020-02-15T06:59:47Z +717 26 1 15384 2.99 2005-08-22T22:34:44Z 2020-02-15T06:59:47Z +718 26 1 15722 7.99 2005-08-23T11:16:29Z 2020-02-15T06:59:47Z +719 27 2 787 2.99 2005-05-29T16:03:03Z 2020-02-15T06:59:47Z +720 27 1 1310 4.99 2005-06-15T10:11:42Z 2020-02-15T06:59:47Z +721 27 2 1480 4.99 2005-06-15T21:17:17Z 2020-02-15T06:59:47Z +722 27 2 1699 2.99 2005-06-16T13:05:09Z 2020-02-15T06:59:47Z +723 27 2 1960 3.99 2005-06-17T08:59:57Z 2020-02-15T06:59:47Z +724 27 2 2512 2.99 2005-06-18T23:48:47Z 2020-02-15T06:59:47Z +725 27 1 2815 4.99 2005-06-19T20:03:29Z 2020-02-15T06:59:47Z +726 27 1 3038 1.99 2005-06-20T12:28:59Z 2020-02-15T06:59:47Z +727 27 2 3420 3.99 2005-06-21T17:22:36Z 2020-02-15T06:59:47Z +728 27 2 4038 0.99 2005-07-07T02:52:53Z 2020-02-15T06:59:47Z +729 27 1 4510 5.99 2005-07-08T02:34:51Z 2020-02-15T06:59:47Z +730 27 1 5552 0.99 2005-07-10T03:01:19Z 2020-02-15T06:59:47Z +731 27 1 5736 4.99 2005-07-10T11:45:48Z 2020-02-15T06:59:47Z +732 27 2 6115 0.99 2005-07-11T07:36:50Z 2020-02-15T06:59:47Z +733 27 2 6562 5.99 2005-07-12T05:26:26Z 2020-02-15T06:59:47Z +734 27 2 6658 4.99 2005-07-12T11:13:21Z 2020-02-15T06:59:47Z +735 27 1 7927 1.99 2005-07-28T12:13:42Z 2020-02-15T06:59:47Z +736 27 2 9244 0.99 2005-07-30T14:06:53Z 2020-02-15T06:59:47Z +737 27 2 9636 5.99 2005-07-31T05:12:59Z 2020-02-15T06:59:47Z +738 27 1 9673 7.99 2005-07-31T06:34:55Z 2020-02-15T06:59:47Z +739 27 1 9908 4.99 2005-07-31T14:39:52Z 2020-02-15T06:59:47Z +740 27 1 10794 7.99 2005-08-01T21:51:15Z 2020-02-15T06:59:47Z +741 27 1 10852 4.99 2005-08-02T00:00:33Z 2020-02-15T06:59:47Z +742 27 1 11234 0.99 2005-08-02T13:12:17Z 2020-02-15T06:59:47Z +743 27 1 11661 8.99 2005-08-17T05:25:57Z 2020-02-15T06:59:47Z +744 27 2 11740 6.99 2005-08-17T08:48:31Z 2020-02-15T06:59:47Z +745 27 2 12021 5.99 2005-08-17T19:52:43Z 2020-02-15T06:59:47Z +746 27 2 12461 0.99 2005-08-18T11:28:14Z 2020-02-15T06:59:47Z +747 27 1 12531 2.99 2005-08-18T13:57:50Z 2020-02-15T06:59:47Z +748 27 2 13816 4.99 2005-08-20T13:13:56Z 2020-02-15T06:59:47Z +749 27 1 15048 0.99 2005-08-22T10:00:04Z 2020-02-15T06:59:47Z +750 28 2 388 2.99 2005-05-27T10:37:27Z 2020-02-15T06:59:47Z +751 28 1 868 2.99 2005-05-30T04:19:55Z 2020-02-15T06:59:47Z +752 28 2 1240 2.99 2005-06-15T04:58:07Z 2020-02-15T06:59:47Z +753 28 1 1543 4.99 2005-06-16T01:24:08Z 2020-02-15T06:59:47Z +754 28 2 2299 3.99 2005-06-18T08:18:52Z 2020-02-15T06:59:47Z +755 28 2 2604 0.99 2005-06-19T06:30:10Z 2020-02-15T06:59:47Z +756 28 1 3231 0.99 2005-06-21T02:25:00Z 2020-02-15T06:59:47Z +757 28 1 3845 0.99 2005-07-06T16:38:14Z 2020-02-15T06:59:47Z +758 28 2 4704 0.99 2005-07-08T11:45:35Z 2020-02-15T06:59:47Z +759 28 2 4951 4.99 2005-07-08T22:58:21Z 2020-02-15T06:59:47Z +760 28 2 5653 2.99 2005-07-10T07:21:27Z 2020-02-15T06:59:47Z +761 28 1 5817 5.99 2005-07-10T15:49:12Z 2020-02-15T06:59:47Z +762 28 2 6032 0.99 2005-07-11T02:49:01Z 2020-02-15T06:59:47Z +763 28 2 6476 0.99 2005-07-12T01:37:48Z 2020-02-15T06:59:47Z +764 28 1 7580 9.99 2005-07-27T23:07:40Z 2020-02-15T06:59:47Z +765 28 1 8464 4.99 2005-07-29T08:18:20Z 2020-02-15T06:59:47Z +766 28 1 8901 2.99 2005-07-30T01:07:12Z 2020-02-15T06:59:47Z +767 28 2 9544 2.99 2005-07-31T01:44:51Z 2020-02-15T06:59:47Z +768 28 2 9593 4.99 2005-07-31T03:22:30Z 2020-02-15T06:59:47Z +769 28 2 9705 4.99 2005-07-31T07:40:33Z 2020-02-15T06:59:47Z +770 28 2 10116 2.99 2005-07-31T21:14:02Z 2020-02-15T06:59:47Z +771 28 2 10294 6.99 2005-08-01T03:48:12Z 2020-02-15T06:59:47Z +772 28 1 11444 2.99 2005-08-02T20:32:55Z 2020-02-15T06:59:47Z +773 28 1 11856 3.99 2005-08-17T13:44:49Z 2020-02-15T06:59:47Z +774 28 2 12190 2.99 2005-08-18T01:54:44Z 2020-02-15T06:59:47Z +775 28 1 12359 0.99 2005-08-18T07:44:05Z 2020-02-15T06:59:47Z +776 28 1 12708 2.99 2005-08-18T20:59:17Z 2020-02-15T06:59:47Z +777 28 2 13783 4.99 2005-08-20T12:11:03Z 2020-02-15T06:59:47Z +778 28 2 14540 2.99 2005-08-21T15:34:23Z 2020-02-15T06:59:47Z +779 28 1 15445 4.99 2005-08-23T00:48:29Z 2020-02-15T06:59:47Z +780 28 1 15491 2.99 2005-08-23T02:08:40Z 2020-02-15T06:59:47Z +781 28 2 12938 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +782 29 2 194 1.99 2005-05-26T06:52:33Z 2020-02-15T06:59:47Z +783 29 1 2655 0.99 2005-06-19T10:38:42Z 2020-02-15T06:59:47Z +784 29 1 2673 0.99 2005-06-19T11:42:20Z 2020-02-15T06:59:47Z +785 29 1 2701 7.99 2005-06-19T13:33:06Z 2020-02-15T06:59:47Z +786 29 1 2735 2.99 2005-06-19T15:42:07Z 2020-02-15T06:59:47Z +787 29 2 2801 2.99 2005-06-19T19:18:09Z 2020-02-15T06:59:47Z +788 29 2 2923 2.99 2005-06-20T04:16:07Z 2020-02-15T06:59:47Z +789 29 1 3324 2.99 2005-06-21T08:49:16Z 2020-02-15T06:59:47Z +790 29 2 4262 6.99 2005-07-07T14:24:30Z 2020-02-15T06:59:47Z +791 29 1 4313 0.99 2005-07-07T17:36:56Z 2020-02-15T06:59:47Z +792 29 2 4535 0.99 2005-07-08T03:40:46Z 2020-02-15T06:59:47Z +793 29 2 5442 10.99 2005-07-09T21:55:19Z 2020-02-15T06:59:47Z +794 29 1 5857 1.99 2005-07-10T17:59:29Z 2020-02-15T06:59:47Z +795 29 2 7237 3.99 2005-07-27T10:12:36Z 2020-02-15T06:59:47Z +796 29 1 7451 6.99 2005-07-27T18:18:41Z 2020-02-15T06:59:47Z +797 29 1 7453 0.99 2005-07-27T18:27:13Z 2020-02-15T06:59:47Z +798 29 2 8673 2.99 2005-07-29T15:50:14Z 2020-02-15T06:59:47Z +799 29 2 9392 4.99 2005-07-30T19:50:13Z 2020-02-15T06:59:47Z +800 29 1 9946 4.99 2005-07-31T15:48:54Z 2020-02-15T06:59:47Z +801 29 1 10543 5.99 2005-08-01T12:36:09Z 2020-02-15T06:59:47Z +802 29 2 10899 1.99 2005-08-02T01:30:21Z 2020-02-15T06:59:47Z +803 29 1 11079 4.99 2005-08-02T07:29:10Z 2020-02-15T06:59:47Z +804 29 2 11962 2.99 2005-08-17T17:34:38Z 2020-02-15T06:59:47Z +805 29 1 12488 4.99 2005-08-18T12:48:22Z 2020-02-15T06:59:47Z +806 29 1 12508 2.99 2005-08-18T13:20:13Z 2020-02-15T06:59:47Z +807 29 2 12569 6.99 2005-08-18T15:20:46Z 2020-02-15T06:59:47Z +808 29 2 12615 6.99 2005-08-18T17:16:07Z 2020-02-15T06:59:47Z +809 29 2 13173 2.99 2005-08-19T13:50:36Z 2020-02-15T06:59:47Z +810 29 1 13436 0.99 2005-08-19T23:36:25Z 2020-02-15T06:59:47Z +811 29 2 13777 2.99 2005-08-20T12:03:35Z 2020-02-15T06:59:47Z +812 29 1 13832 3.99 2005-08-20T14:00:25Z 2020-02-15T06:59:47Z +813 29 1 14174 0.99 2005-08-21T03:01:45Z 2020-02-15T06:59:47Z +814 29 1 14703 4.99 2005-08-21T21:01:19Z 2020-02-15T06:59:47Z +815 29 1 14985 7.99 2005-08-22T07:35:56Z 2020-02-15T06:59:47Z +816 29 1 14997 5.99 2005-08-22T07:53:00Z 2020-02-15T06:59:47Z +817 29 2 15577 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:47Z +818 30 2 1874 1.99 2005-06-17T02:39:20Z 2020-02-15T06:59:47Z +819 30 2 1895 2.99 2005-06-17T04:25:12Z 2020-02-15T06:59:47Z +820 30 2 2154 4.99 2005-06-17T22:59:42Z 2020-02-15T06:59:47Z +821 30 2 2730 2.99 2005-06-19T15:10:09Z 2020-02-15T06:59:47Z +822 30 1 3964 4.99 2005-07-06T22:23:02Z 2020-02-15T06:59:47Z +823 30 2 4471 2.99 2005-07-08T00:21:29Z 2020-02-15T06:59:47Z +824 30 2 4642 2.99 2005-07-08T09:13:28Z 2020-02-15T06:59:47Z +825 30 2 5028 5.99 2005-07-09T02:34:45Z 2020-02-15T06:59:47Z +826 30 1 5108 9.99 2005-07-09T06:44:30Z 2020-02-15T06:59:47Z +827 30 1 5289 0.99 2005-07-09T15:14:08Z 2020-02-15T06:59:47Z +828 30 2 5972 7.99 2005-07-11T00:08:54Z 2020-02-15T06:59:47Z +829 30 1 6249 0.99 2005-07-11T15:02:02Z 2020-02-15T06:59:47Z +830 30 2 6359 2.99 2005-07-11T21:06:17Z 2020-02-15T06:59:47Z +831 30 2 7394 2.99 2005-07-27T16:03:08Z 2020-02-15T06:59:47Z +832 30 2 7769 4.99 2005-07-28T06:45:23Z 2020-02-15T06:59:47Z +833 30 1 8030 4.99 2005-07-28T16:12:53Z 2020-02-15T06:59:47Z +834 30 2 8038 4.99 2005-07-28T16:32:55Z 2020-02-15T06:59:47Z +835 30 1 8083 4.99 2005-07-28T18:09:48Z 2020-02-15T06:59:47Z +836 30 1 8641 2.99 2005-07-29T14:37:30Z 2020-02-15T06:59:47Z +837 30 2 9309 2.99 2005-07-30T16:55:53Z 2020-02-15T06:59:47Z +838 30 2 9551 0.99 2005-07-31T02:04:58Z 2020-02-15T06:59:47Z +839 30 1 9641 0.99 2005-07-31T05:33:48Z 2020-02-15T06:59:47Z +840 30 1 9998 2.99 2005-07-31T17:40:35Z 2020-02-15T06:59:47Z +841 30 1 10235 6.99 2005-08-01T01:57:48Z 2020-02-15T06:59:47Z +842 30 1 12240 2.99 2005-08-18T03:27:11Z 2020-02-15T06:59:48Z +843 30 1 12546 2.99 2005-08-18T14:29:37Z 2020-02-15T06:59:48Z +844 30 2 12758 0.99 2005-08-18T22:58:34Z 2020-02-15T06:59:48Z +845 30 1 13435 0.99 2005-08-19T23:35:44Z 2020-02-15T06:59:48Z +846 30 1 13682 4.99 2005-08-20T08:50:39Z 2020-02-15T06:59:48Z +847 30 1 14339 0.99 2005-08-21T08:37:15Z 2020-02-15T06:59:48Z +848 30 1 14585 2.99 2005-08-21T17:18:33Z 2020-02-15T06:59:48Z +849 30 1 15063 4.99 2005-08-22T10:39:51Z 2020-02-15T06:59:48Z +850 30 1 15544 4.99 2005-08-23T04:17:56Z 2020-02-15T06:59:48Z +851 30 2 15829 2.99 2005-08-23T15:17:14Z 2020-02-15T06:59:48Z +852 31 2 1656 4.99 2005-06-16T10:05:40Z 2020-02-15T06:59:48Z +853 31 1 1838 1.99 2005-06-16T23:20:16Z 2020-02-15T06:59:48Z +854 31 1 2233 0.99 2005-06-18T03:57:36Z 2020-02-15T06:59:48Z +855 31 2 2341 6.99 2005-06-18T11:35:30Z 2020-02-15T06:59:48Z +856 31 1 2396 7.99 2005-06-18T15:49:48Z 2020-02-15T06:59:48Z +857 31 2 2438 0.99 2005-06-18T18:34:21Z 2020-02-15T06:59:48Z +858 31 1 2530 0.99 2005-06-19T01:20:00Z 2020-02-15T06:59:48Z +859 31 2 2648 4.99 2005-06-19T10:06:20Z 2020-02-15T06:59:48Z +860 31 2 3117 2.99 2005-06-20T18:05:15Z 2020-02-15T06:59:48Z +861 31 2 3172 1.99 2005-06-20T22:19:25Z 2020-02-15T06:59:48Z +862 31 1 3205 0.99 2005-06-21T00:38:47Z 2020-02-15T06:59:48Z +863 31 1 3701 4.99 2005-07-06T10:12:45Z 2020-02-15T06:59:48Z +864 31 2 3967 4.99 2005-07-06T22:45:10Z 2020-02-15T06:59:48Z +865 31 1 4122 6.99 2005-07-07T07:15:35Z 2020-02-15T06:59:48Z +866 31 2 4738 9.99 2005-07-08T13:24:58Z 2020-02-15T06:59:48Z +867 31 1 6208 3.99 2005-07-11T12:34:56Z 2020-02-15T06:59:48Z +868 31 2 6580 4.99 2005-07-12T06:26:10Z 2020-02-15T06:59:48Z +869 31 1 7000 1.99 2005-07-27T01:23:24Z 2020-02-15T06:59:48Z +870 31 2 7138 3.99 2005-07-27T06:47:13Z 2020-02-15T06:59:48Z +871 31 2 7178 2.99 2005-07-27T08:09:25Z 2020-02-15T06:59:48Z +872 31 2 7464 2.99 2005-07-27T18:49:42Z 2020-02-15T06:59:48Z +873 31 2 8997 0.99 2005-07-30T04:53:56Z 2020-02-15T06:59:48Z +874 31 2 12085 4.99 2005-08-17T22:17:09Z 2020-02-15T06:59:48Z +875 31 1 12377 0.99 2005-08-18T08:26:05Z 2020-02-15T06:59:48Z +876 31 2 15682 6.99 2005-08-23T09:37:34Z 2020-02-15T06:59:48Z +877 31 2 15816 6.99 2005-08-23T14:58:06Z 2020-02-15T06:59:48Z +878 32 2 483 4.99 2005-05-27T23:00:25Z 2020-02-15T06:59:48Z +879 32 2 803 4.99 2005-05-29T17:52:30Z 2020-02-15T06:59:48Z +880 32 2 1067 4.99 2005-05-31T09:12:13Z 2020-02-15T06:59:48Z +881 32 2 1887 6.99 2005-06-17T03:53:18Z 2020-02-15T06:59:48Z +882 32 2 2160 0.99 2005-06-17T23:39:11Z 2020-02-15T06:59:48Z +883 32 2 2624 5.99 2005-06-19T08:22:09Z 2020-02-15T06:59:48Z +884 32 2 2891 1.99 2005-06-20T02:02:05Z 2020-02-15T06:59:48Z +885 32 1 3500 2.99 2005-07-06T00:11:13Z 2020-02-15T06:59:48Z +886 32 1 4434 2.99 2005-07-07T22:48:34Z 2020-02-15T06:59:48Z +887 32 2 4771 2.99 2005-07-08T15:33:32Z 2020-02-15T06:59:48Z +888 32 2 4899 0.99 2005-07-08T20:37:11Z 2020-02-15T06:59:48Z +889 32 1 5307 9.99 2005-07-09T15:57:15Z 2020-02-15T06:59:48Z +890 32 1 5767 0.99 2005-07-10T13:13:18Z 2020-02-15T06:59:48Z +891 32 1 5954 2.99 2005-07-10T23:22:01Z 2020-02-15T06:59:48Z +892 32 1 6122 3.99 2005-07-11T07:58:07Z 2020-02-15T06:59:48Z +893 32 2 6450 2.99 2005-07-12T00:49:05Z 2020-02-15T06:59:48Z +894 32 1 7084 6.99 2005-07-27T04:34:07Z 2020-02-15T06:59:48Z +895 32 1 7589 5.99 2005-07-27T23:23:36Z 2020-02-15T06:59:48Z +896 32 1 7793 2.99 2005-07-28T07:26:14Z 2020-02-15T06:59:48Z +897 32 2 8390 5.99 2005-07-29T05:52:26Z 2020-02-15T06:59:48Z +898 32 2 8453 2.99 2005-07-29T07:46:29Z 2020-02-15T06:59:48Z +899 32 2 8914 2.99 2005-07-30T01:42:03Z 2020-02-15T06:59:48Z +900 32 1 11135 4.99 2005-08-02T09:22:25Z 2020-02-15T06:59:48Z +901 32 2 11831 4.99 2005-08-17T12:54:47Z 2020-02-15T06:59:48Z +902 32 2 12414 9.99 2005-08-18T09:50:40Z 2020-02-15T06:59:48Z +903 32 1 13736 8.99 2005-08-20T10:31:23Z 2020-02-15T06:59:48Z +904 32 1 13931 1.99 2005-08-20T17:16:10Z 2020-02-15T06:59:48Z +905 32 1 14075 0.99 2005-08-20T23:18:54Z 2020-02-15T06:59:48Z +906 32 2 14570 5.99 2005-08-21T16:32:32Z 2020-02-15T06:59:48Z +907 33 1 165 2.99 2005-05-26T02:28:36Z 2020-02-15T06:59:48Z +908 33 1 1301 10.99 2005-06-15T09:46:33Z 2020-02-15T06:59:48Z +909 33 2 3173 8.99 2005-06-20T22:21:10Z 2020-02-15T06:59:48Z +910 33 1 4095 5.99 2005-07-07T06:01:48Z 2020-02-15T06:59:48Z +911 33 1 5421 0.99 2005-07-09T20:49:12Z 2020-02-15T06:59:48Z +912 33 1 5723 4.99 2005-07-10T11:14:48Z 2020-02-15T06:59:48Z +913 33 2 6280 0.99 2005-07-11T16:36:17Z 2020-02-15T06:59:48Z +914 33 1 7992 4.99 2005-07-28T14:53:06Z 2020-02-15T06:59:48Z +915 33 1 9040 4.99 2005-07-30T06:31:45Z 2020-02-15T06:59:48Z +916 33 2 9085 4.99 2005-07-30T08:17:24Z 2020-02-15T06:59:48Z +917 33 1 9254 1.99 2005-07-30T14:26:11Z 2020-02-15T06:59:48Z +918 33 2 10335 2.99 2005-08-01T04:59:30Z 2020-02-15T06:59:48Z +919 33 1 10870 4.99 2005-08-02T00:27:12Z 2020-02-15T06:59:48Z +920 33 1 13241 7.99 2005-08-19T16:25:00Z 2020-02-15T06:59:48Z +921 33 1 13858 2.99 2005-08-20T14:50:57Z 2020-02-15T06:59:48Z +922 33 1 13958 7.99 2005-08-20T18:11:44Z 2020-02-15T06:59:48Z +923 33 1 14002 0.99 2005-08-20T20:12:19Z 2020-02-15T06:59:48Z +924 33 1 14623 0.99 2005-08-21T18:29:13Z 2020-02-15T06:59:48Z +925 33 1 15096 5.99 2005-08-22T11:43:04Z 2020-02-15T06:59:48Z +926 33 2 15115 2.99 2005-08-22T12:28:01Z 2020-02-15T06:59:48Z +927 33 1 12277 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +928 34 1 1900 4.99 2005-06-17T04:29:58Z 2020-02-15T06:59:48Z +929 34 2 2257 5.99 2005-06-18T05:29:52Z 2020-02-15T06:59:48Z +930 34 1 3150 0.99 2005-06-20T20:35:28Z 2020-02-15T06:59:48Z +931 34 2 3508 3.99 2005-07-06T00:24:25Z 2020-02-15T06:59:48Z +932 34 1 3911 2.99 2005-07-06T20:09:11Z 2020-02-15T06:59:48Z +933 34 1 5188 4.99 2005-07-09T10:22:31Z 2020-02-15T06:59:48Z +934 34 2 5643 4.99 2005-07-10T06:49:00Z 2020-02-15T06:59:48Z +935 34 2 5918 5.99 2005-07-10T21:32:06Z 2020-02-15T06:59:48Z +936 34 2 7015 2.99 2005-07-27T02:15:01Z 2020-02-15T06:59:48Z +937 34 2 7124 2.99 2005-07-27T06:09:30Z 2020-02-15T06:59:48Z +938 34 1 7532 0.99 2005-07-27T21:20:52Z 2020-02-15T06:59:48Z +939 34 1 9160 3.99 2005-07-30T11:17:33Z 2020-02-15T06:59:48Z +940 34 1 10523 0.99 2005-08-01T11:52:32Z 2020-02-15T06:59:48Z +941 34 1 10615 4.99 2005-08-01T14:58:14Z 2020-02-15T06:59:48Z +942 34 2 11096 0.99 2005-08-02T08:05:19Z 2020-02-15T06:59:48Z +943 34 1 11505 2.99 2005-08-16T23:18:47Z 2020-02-15T06:59:48Z +944 34 2 11701 4.99 2005-08-17T07:15:47Z 2020-02-15T06:59:48Z +945 34 2 12286 2.99 2005-08-18T04:57:59Z 2020-02-15T06:59:48Z +946 34 1 12599 2.99 2005-08-18T16:42:45Z 2020-02-15T06:59:48Z +947 34 1 12651 0.99 2005-08-18T18:36:16Z 2020-02-15T06:59:48Z +948 34 1 13371 4.99 2005-08-19T21:21:47Z 2020-02-15T06:59:48Z +949 34 2 13949 2.99 2005-08-20T17:55:13Z 2020-02-15T06:59:48Z +950 34 1 14686 5.99 2005-08-21T20:32:08Z 2020-02-15T06:59:48Z +951 34 2 14701 7.99 2005-08-21T20:54:32Z 2020-02-15T06:59:48Z +952 35 2 47 3.99 2005-05-25T06:05:20Z 2020-02-15T06:59:48Z +953 35 1 424 6.99 2005-05-27T15:34:01Z 2020-02-15T06:59:48Z +954 35 1 1579 0.99 2005-06-16T04:09:08Z 2020-02-15T06:59:48Z +955 35 1 1989 2.99 2005-06-17T10:47:24Z 2020-02-15T06:59:48Z +956 35 1 2229 4.99 2005-06-18T03:50:18Z 2020-02-15T06:59:48Z +957 35 1 2231 0.99 2005-06-18T03:52:14Z 2020-02-15T06:59:48Z +958 35 1 2743 2.99 2005-06-19T16:15:56Z 2020-02-15T06:59:48Z +959 35 2 3112 4.99 2005-06-20T17:53:30Z 2020-02-15T06:59:48Z +960 35 2 3597 2.99 2005-07-06T05:03:59Z 2020-02-15T06:59:48Z +961 35 2 4098 4.99 2005-07-07T06:14:51Z 2020-02-15T06:59:48Z +962 35 2 4990 0.99 2005-07-09T00:48:49Z 2020-02-15T06:59:48Z +963 35 1 5013 2.99 2005-07-09T01:46:45Z 2020-02-15T06:59:48Z +964 35 2 5323 0.99 2005-07-09T16:34:07Z 2020-02-15T06:59:48Z +965 35 1 5916 5.99 2005-07-10T21:26:31Z 2020-02-15T06:59:48Z +966 35 1 5963 0.99 2005-07-10T23:47:08Z 2020-02-15T06:59:48Z +967 35 1 6147 5.99 2005-07-11T09:13:08Z 2020-02-15T06:59:48Z +968 35 1 6401 4.99 2005-07-11T22:44:34Z 2020-02-15T06:59:48Z +969 35 1 6565 4.99 2005-07-12T05:39:50Z 2020-02-15T06:59:48Z +970 35 1 6572 4.99 2005-07-12T05:56:38Z 2020-02-15T06:59:48Z +971 35 1 7140 4.99 2005-07-27T06:54:12Z 2020-02-15T06:59:48Z +972 35 1 8822 6.99 2005-07-29T22:20:21Z 2020-02-15T06:59:48Z +973 35 1 8971 5.99 2005-07-30T04:03:58Z 2020-02-15T06:59:48Z +974 35 2 9033 2.99 2005-07-30T06:07:42Z 2020-02-15T06:59:48Z +975 35 1 9579 6.99 2005-07-31T02:59:20Z 2020-02-15T06:59:48Z +976 35 1 11298 1.99 2005-08-02T15:32:32Z 2020-02-15T06:59:48Z +977 35 1 11452 7.99 2005-08-02T20:59:52Z 2020-02-15T06:59:48Z +978 35 1 11645 4.99 2005-08-17T04:50:56Z 2020-02-15T06:59:48Z +979 35 1 12055 4.99 2005-08-17T21:02:19Z 2020-02-15T06:59:48Z +980 35 1 13735 2.99 2005-08-20T10:31:01Z 2020-02-15T06:59:48Z +981 35 1 14110 0.99 2005-08-21T00:53:09Z 2020-02-15T06:59:48Z +982 35 2 14124 2.99 2005-08-21T01:31:51Z 2020-02-15T06:59:48Z +983 35 2 14735 4.99 2005-08-21T22:25:09Z 2020-02-15T06:59:48Z +984 36 1 349 0.99 2005-05-27T04:53:11Z 2020-02-15T06:59:48Z +985 36 1 716 0.99 2005-05-29T04:35:29Z 2020-02-15T06:59:48Z +986 36 2 2741 0.99 2005-06-19T16:05:41Z 2020-02-15T06:59:48Z +987 36 2 4135 0.99 2005-07-07T08:15:03Z 2020-02-15T06:59:48Z +988 36 2 4560 4.99 2005-07-08T04:58:48Z 2020-02-15T06:59:48Z +989 36 2 4762 4.99 2005-07-08T14:54:42Z 2020-02-15T06:59:48Z +990 36 1 5403 0.99 2005-07-09T20:07:09Z 2020-02-15T06:59:48Z +991 36 2 6030 0.99 2005-07-11T02:37:51Z 2020-02-15T06:59:48Z +992 36 1 7205 6.99 2005-07-27T09:06:13Z 2020-02-15T06:59:48Z +993 36 1 7647 0.99 2005-07-28T01:35:17Z 2020-02-15T06:59:48Z +994 36 2 7919 6.99 2005-07-28T11:59:45Z 2020-02-15T06:59:48Z +995 36 2 8099 0.99 2005-07-28T18:35:12Z 2020-02-15T06:59:48Z +996 36 1 8391 2.99 2005-07-29T05:52:50Z 2020-02-15T06:59:48Z +997 36 1 8952 4.99 2005-07-30T03:20:38Z 2020-02-15T06:59:48Z +998 36 1 9369 2.99 2005-07-30T18:52:19Z 2020-02-15T06:59:48Z +999 36 2 9805 0.99 2005-07-31T11:11:10Z 2020-02-15T06:59:48Z +1000 36 2 10525 2.99 2005-08-01T11:53:17Z 2020-02-15T06:59:48Z +1001 36 2 10761 2.99 2005-08-01T20:25:35Z 2020-02-15T06:59:48Z +1002 36 1 10963 0.99 2005-08-02T03:48:17Z 2020-02-15T06:59:48Z +1003 36 2 10964 6.99 2005-08-02T03:56:23Z 2020-02-15T06:59:48Z +1004 36 2 11616 4.99 2005-08-17T04:00:01Z 2020-02-15T06:59:48Z +1005 36 1 11813 4.99 2005-08-17T12:06:54Z 2020-02-15T06:59:48Z +1006 36 2 13562 2.99 2005-08-20T04:31:45Z 2020-02-15T06:59:48Z +1007 36 2 13564 1.99 2005-08-20T04:34:46Z 2020-02-15T06:59:48Z +1008 36 1 13674 4.99 2005-08-20T08:30:54Z 2020-02-15T06:59:48Z +1009 36 1 14647 9.99 2005-08-21T19:15:33Z 2020-02-15T06:59:48Z +1010 36 2 15657 4.99 2005-08-23T08:42:40Z 2020-02-15T06:59:48Z +1011 37 1 25 0.99 2005-05-25T03:21:20Z 2020-02-15T06:59:48Z +1012 37 1 923 2.99 2005-05-30T11:58:50Z 2020-02-15T06:59:48Z +1013 37 1 1583 4.99 2005-06-16T04:44:23Z 2020-02-15T06:59:48Z +1014 37 2 1812 1.99 2005-06-16T21:08:46Z 2020-02-15T06:59:48Z +1015 37 2 1854 3.99 2005-06-17T00:43:57Z 2020-02-15T06:59:48Z +1016 37 2 3472 7.99 2005-07-05T22:56:33Z 2020-02-15T06:59:48Z +1017 37 1 3734 5.99 2005-07-06T11:40:27Z 2020-02-15T06:59:48Z +1018 37 1 5425 5.99 2005-07-09T21:02:26Z 2020-02-15T06:59:48Z +1019 37 2 7939 0.99 2005-07-28T12:45:47Z 2020-02-15T06:59:48Z +1020 37 1 8419 9.99 2005-07-29T06:54:48Z 2020-02-15T06:59:48Z +1021 37 1 9567 5.99 2005-07-31T02:36:11Z 2020-02-15T06:59:48Z +1022 37 1 10538 2.99 2005-08-01T12:22:41Z 2020-02-15T06:59:48Z +1023 37 1 11176 3.99 2005-08-02T10:39:43Z 2020-02-15T06:59:48Z +1024 37 1 13046 7.99 2005-08-19T09:21:10Z 2020-02-15T06:59:48Z +1025 37 2 13147 4.99 2005-08-19T12:55:09Z 2020-02-15T06:59:48Z +1026 37 2 13444 0.99 2005-08-20T00:00:24Z 2020-02-15T06:59:48Z +1027 37 2 13493 3.99 2005-08-20T01:33:36Z 2020-02-15T06:59:48Z +1028 37 2 14025 8.99 2005-08-20T21:19:36Z 2020-02-15T06:59:48Z +1029 37 1 14084 0.99 2005-08-20T23:42:46Z 2020-02-15T06:59:48Z +1030 37 2 14532 2.99 2005-08-21T15:15:03Z 2020-02-15T06:59:48Z +1031 37 1 15028 3.99 2005-08-22T09:03:44Z 2020-02-15T06:59:48Z +1032 37 1 15904 0.99 2005-08-23T17:32:19Z 2020-02-15T06:59:48Z +1033 37 2 16035 0.99 2005-08-23T22:08:04Z 2020-02-15T06:59:48Z +1034 38 2 1250 2.99 2005-06-15T05:55:40Z 2020-02-15T06:59:48Z +1035 38 1 2550 1.99 2005-06-19T02:49:55Z 2020-02-15T06:59:48Z +1036 38 2 2605 1.99 2005-06-19T06:48:01Z 2020-02-15T06:59:48Z +1037 38 2 3003 4.99 2005-06-20T10:00:51Z 2020-02-15T06:59:48Z +1038 38 2 3392 3.99 2005-06-21T15:12:44Z 2020-02-15T06:59:48Z +1039 38 1 4202 5.99 2005-07-07T11:23:48Z 2020-02-15T06:59:48Z +1040 38 2 4228 1.99 2005-07-07T12:42:02Z 2020-02-15T06:59:48Z +1041 38 1 4300 4.99 2005-07-07T16:36:16Z 2020-02-15T06:59:48Z +1042 38 2 4644 4.99 2005-07-08T09:14:29Z 2020-02-15T06:59:48Z +1043 38 1 5273 2.99 2005-07-09T14:31:24Z 2020-02-15T06:59:48Z +1044 38 2 5460 2.99 2005-07-09T22:46:14Z 2020-02-15T06:59:48Z +1045 38 1 5822 2.99 2005-07-10T16:10:39Z 2020-02-15T06:59:48Z +1046 38 1 6864 5.99 2005-07-12T19:59:25Z 2020-02-15T06:59:48Z +1047 38 1 6961 0.99 2005-07-27T00:10:49Z 2020-02-15T06:59:48Z +1048 38 2 7158 4.99 2005-07-27T07:23:58Z 2020-02-15T06:59:48Z +1049 38 2 7163 5.99 2005-07-27T07:36:11Z 2020-02-15T06:59:48Z +1050 38 2 7321 5.99 2005-07-27T13:33:38Z 2020-02-15T06:59:48Z +1051 38 1 7795 0.99 2005-07-28T07:28:16Z 2020-02-15T06:59:48Z +1052 38 2 8924 3.99 2005-07-30T02:08:58Z 2020-02-15T06:59:48Z +1053 38 2 9216 0.99 2005-07-30T13:11:19Z 2020-02-15T06:59:48Z +1054 38 1 9284 0.99 2005-07-30T15:25:19Z 2020-02-15T06:59:48Z +1055 38 1 9621 4.99 2005-07-31T04:21:08Z 2020-02-15T06:59:48Z +1056 38 2 10111 2.99 2005-07-31T21:08:33Z 2020-02-15T06:59:48Z +1057 38 2 10524 6.99 2005-08-01T11:53:12Z 2020-02-15T06:59:48Z +1058 38 2 11049 3.99 2005-08-02T06:15:40Z 2020-02-15T06:59:48Z +1059 38 1 11344 2.99 2005-08-02T17:13:26Z 2020-02-15T06:59:48Z +1060 38 1 11817 4.99 2005-08-17T12:20:01Z 2020-02-15T06:59:48Z +1061 38 2 12092 0.99 2005-08-17T22:28:15Z 2020-02-15T06:59:48Z +1062 38 2 12187 1.99 2005-08-18T01:45:50Z 2020-02-15T06:59:48Z +1063 38 1 14554 4.99 2005-08-21T16:03:01Z 2020-02-15T06:59:48Z +1064 38 2 14632 2.99 2005-08-21T18:48:06Z 2020-02-15T06:59:48Z +1065 38 1 14787 6.99 2005-08-22T00:25:59Z 2020-02-15T06:59:48Z +1066 38 1 15668 2.99 2005-08-23T09:02:04Z 2020-02-15T06:59:48Z +1067 38 1 15738 5.99 2005-08-23T11:55:50Z 2020-02-15T06:59:48Z +1068 39 1 1625 5.99 2005-06-16T07:49:08Z 2020-02-15T06:59:48Z +1069 39 1 1905 4.99 2005-06-17T04:51:43Z 2020-02-15T06:59:48Z +1070 39 2 2135 0.99 2005-06-17T21:14:02Z 2020-02-15T06:59:48Z +1071 39 2 2439 4.99 2005-06-18T18:35:04Z 2020-02-15T06:59:48Z +1072 39 1 2631 4.99 2005-06-19T08:49:53Z 2020-02-15T06:59:48Z +1073 39 1 2876 4.99 2005-06-20T01:06:34Z 2020-02-15T06:59:48Z +1074 39 1 4419 5.99 2005-07-07T22:06:24Z 2020-02-15T06:59:48Z +1075 39 2 4695 8.99 2005-07-08T11:07:59Z 2020-02-15T06:59:48Z +1076 39 2 4712 6.99 2005-07-08T12:10:50Z 2020-02-15T06:59:48Z +1077 39 2 4727 7.99 2005-07-08T12:54:15Z 2020-02-15T06:59:48Z +1078 39 1 5451 4.99 2005-07-09T22:22:10Z 2020-02-15T06:59:48Z +1079 39 2 5515 2.99 2005-07-10T01:12:44Z 2020-02-15T06:59:48Z +1080 39 1 6045 2.99 2005-07-11T03:21:05Z 2020-02-15T06:59:48Z +1081 39 2 8307 6.99 2005-07-29T03:18:34Z 2020-02-15T06:59:48Z +1082 39 2 8366 1.99 2005-07-29T05:11:14Z 2020-02-15T06:59:48Z +1083 39 2 8723 7.99 2005-07-29T18:03:47Z 2020-02-15T06:59:48Z +1084 39 1 8805 2.99 2005-07-29T21:29:58Z 2020-02-15T06:59:48Z +1085 39 1 9431 1.99 2005-07-30T21:24:22Z 2020-02-15T06:59:48Z +1086 39 1 9656 4.99 2005-07-31T06:00:21Z 2020-02-15T06:59:48Z +1087 39 2 10052 4.99 2005-07-31T19:15:13Z 2020-02-15T06:59:48Z +1088 39 1 10126 0.99 2005-07-31T21:36:07Z 2020-02-15T06:59:48Z +1089 39 1 10251 4.99 2005-08-01T02:39:12Z 2020-02-15T06:59:48Z +1090 39 2 10269 4.99 2005-08-01T03:09:26Z 2020-02-15T06:59:48Z +1091 39 2 10630 0.99 2005-08-01T15:34:46Z 2020-02-15T06:59:48Z +1092 39 1 10639 9.99 2005-08-01T15:44:43Z 2020-02-15T06:59:48Z +1093 39 2 12268 0.99 2005-08-18T04:26:54Z 2020-02-15T06:59:48Z +1094 39 2 12459 4.99 2005-08-18T11:25:11Z 2020-02-15T06:59:48Z +1095 39 2 13101 7.99 2005-08-19T11:01:54Z 2020-02-15T06:59:48Z +1096 39 2 15124 5.99 2005-08-22T12:51:38Z 2020-02-15T06:59:48Z +1097 40 1 128 4.99 2005-05-25T21:19:53Z 2020-02-15T06:59:48Z +1098 40 2 2470 7.99 2005-06-18T20:28:31Z 2020-02-15T06:59:48Z +1099 40 2 2896 2.99 2005-06-20T02:33:42Z 2020-02-15T06:59:48Z +1100 40 1 2993 4.99 2005-06-20T09:12:12Z 2020-02-15T06:59:48Z +1101 40 1 3428 0.99 2005-06-21T18:39:34Z 2020-02-15T06:59:48Z +1102 40 2 5001 1.99 2005-07-09T01:17:04Z 2020-02-15T06:59:48Z +1103 40 2 5777 2.99 2005-07-10T13:38:41Z 2020-02-15T06:59:48Z +1104 40 1 5869 5.99 2005-07-10T18:40:09Z 2020-02-15T06:59:48Z +1105 40 1 6502 0.99 2005-07-12T03:15:45Z 2020-02-15T06:59:48Z +1106 40 2 7684 0.99 2005-07-28T03:11:54Z 2020-02-15T06:59:48Z +1107 40 2 8031 0.99 2005-07-28T16:15:49Z 2020-02-15T06:59:48Z +1108 40 2 8170 3.99 2005-07-28T21:32:29Z 2020-02-15T06:59:48Z +1109 40 1 9050 8.99 2005-07-30T06:59:55Z 2020-02-15T06:59:48Z +1110 40 2 9700 4.99 2005-07-31T07:29:59Z 2020-02-15T06:59:48Z +1111 40 2 9961 6.99 2005-07-31T16:07:50Z 2020-02-15T06:59:48Z +1112 40 1 9975 1.99 2005-07-31T16:53:43Z 2020-02-15T06:59:48Z +1113 40 1 10442 2.99 2005-08-01T08:58:08Z 2020-02-15T06:59:48Z +1114 40 2 11919 0.99 2005-08-17T16:08:49Z 2020-02-15T06:59:48Z +1115 40 2 11948 3.99 2005-08-17T17:11:05Z 2020-02-15T06:59:48Z +1116 40 2 12396 9.99 2005-08-18T09:11:23Z 2020-02-15T06:59:48Z +1117 40 2 12877 2.99 2005-08-19T03:16:58Z 2020-02-15T06:59:48Z +1118 40 1 13149 6.99 2005-08-19T13:07:12Z 2020-02-15T06:59:48Z +1119 40 1 13376 0.99 2005-08-19T21:31:45Z 2020-02-15T06:59:48Z +1120 40 1 13840 5.99 2005-08-20T14:23:20Z 2020-02-15T06:59:48Z +1121 40 1 13951 2.99 2005-08-20T17:58:11Z 2020-02-15T06:59:48Z +1122 40 1 14260 6.99 2005-08-21T06:01:08Z 2020-02-15T06:59:48Z +1123 40 1 15193 2.99 2005-08-22T16:06:49Z 2020-02-15T06:59:48Z +1124 41 1 2563 4.99 2005-06-19T03:24:17Z 2020-02-15T06:59:48Z +1125 41 2 3246 7.99 2005-06-21T03:10:01Z 2020-02-15T06:59:48Z +1126 41 2 3827 2.99 2005-07-06T15:52:03Z 2020-02-15T06:59:48Z +1127 41 2 4294 9.99 2005-07-07T15:56:23Z 2020-02-15T06:59:48Z +1128 41 1 4543 4.99 2005-07-08T04:06:55Z 2020-02-15T06:59:48Z +1129 41 1 4575 2.99 2005-07-08T05:49:14Z 2020-02-15T06:59:48Z +1130 41 1 6976 4.99 2005-07-27T00:40:01Z 2020-02-15T06:59:48Z +1131 41 2 7153 4.99 2005-07-27T07:15:38Z 2020-02-15T06:59:48Z +1132 41 1 7517 1.99 2005-07-27T20:57:07Z 2020-02-15T06:59:48Z +1133 41 2 8008 6.99 2005-07-28T15:25:55Z 2020-02-15T06:59:48Z +1134 41 1 8098 0.99 2005-07-28T18:34:20Z 2020-02-15T06:59:48Z +1135 41 1 8134 6.99 2005-07-28T20:01:23Z 2020-02-15T06:59:48Z +1136 41 2 8225 2.99 2005-07-28T23:59:29Z 2020-02-15T06:59:48Z +1137 41 1 8712 2.99 2005-07-29T17:30:06Z 2020-02-15T06:59:48Z +1138 41 2 9313 5.99 2005-07-30T16:59:43Z 2020-02-15T06:59:48Z +1139 41 1 10064 2.99 2005-07-31T19:27:02Z 2020-02-15T06:59:48Z +1140 41 1 10170 7.99 2005-07-31T23:27:31Z 2020-02-15T06:59:48Z +1141 41 2 10495 4.99 2005-08-01T10:45:51Z 2020-02-15T06:59:48Z +1142 41 1 10853 5.99 2005-08-02T00:00:54Z 2020-02-15T06:59:48Z +1143 41 2 12147 2.99 2005-08-18T00:10:20Z 2020-02-15T06:59:48Z +1144 41 2 12173 3.99 2005-08-18T01:08:34Z 2020-02-15T06:59:48Z +1145 41 2 12821 0.99 2005-08-19T01:07:02Z 2020-02-15T06:59:48Z +1146 41 2 14539 7.99 2005-08-21T15:29:47Z 2020-02-15T06:59:48Z +1147 41 2 15860 4.99 2005-08-23T16:08:40Z 2020-02-15T06:59:48Z +1148 41 1 15875 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1149 42 1 635 5.99 2005-05-28T17:46:57Z 2020-02-15T06:59:48Z +1150 42 2 1534 0.99 2005-06-16T00:49:32Z 2020-02-15T06:59:48Z +1151 42 2 2056 2.99 2005-06-17T15:27:33Z 2020-02-15T06:59:48Z +1152 42 1 2170 3.99 2005-06-17T23:57:34Z 2020-02-15T06:59:48Z +1153 42 1 2302 4.99 2005-06-18T08:27:33Z 2020-02-15T06:59:48Z +1154 42 2 4391 2.99 2005-07-07T21:09:38Z 2020-02-15T06:59:48Z +1155 42 2 5199 4.99 2005-07-09T10:50:56Z 2020-02-15T06:59:48Z +1156 42 2 5517 5.99 2005-07-10T01:15:00Z 2020-02-15T06:59:48Z +1157 42 2 5652 3.99 2005-07-10T07:18:58Z 2020-02-15T06:59:48Z +1158 42 1 6179 2.99 2005-07-11T10:59:59Z 2020-02-15T06:59:48Z +1159 42 1 6799 2.99 2005-07-12T16:52:13Z 2020-02-15T06:59:48Z +1160 42 1 6925 0.99 2005-07-26T22:52:32Z 2020-02-15T06:59:48Z +1161 42 1 7405 3.99 2005-07-27T16:25:11Z 2020-02-15T06:59:48Z +1162 42 1 8049 0.99 2005-07-28T16:51:58Z 2020-02-15T06:59:48Z +1163 42 1 8095 6.99 2005-07-28T18:32:40Z 2020-02-15T06:59:48Z +1164 42 1 8166 2.99 2005-07-28T21:23:33Z 2020-02-15T06:59:48Z +1165 42 1 8499 3.99 2005-07-29T09:10:41Z 2020-02-15T06:59:48Z +1166 42 2 8785 2.99 2005-07-29T20:36:26Z 2020-02-15T06:59:48Z +1167 42 2 8852 3.99 2005-07-29T23:30:03Z 2020-02-15T06:59:48Z +1168 42 2 8915 3.99 2005-07-30T01:42:09Z 2020-02-15T06:59:48Z +1169 42 2 10060 6.99 2005-07-31T19:23:00Z 2020-02-15T06:59:48Z +1170 42 2 10345 2.99 2005-08-01T05:18:56Z 2020-02-15T06:59:48Z +1171 42 2 10845 2.99 2005-08-01T23:47:03Z 2020-02-15T06:59:48Z +1172 42 1 10935 5.99 2005-08-02T02:54:53Z 2020-02-15T06:59:48Z +1173 42 1 12478 4.99 2005-08-18T12:25:16Z 2020-02-15T06:59:48Z +1174 42 2 12499 2.99 2005-08-18T13:05:37Z 2020-02-15T06:59:48Z +1175 42 1 14461 7.99 2005-08-21T12:50:33Z 2020-02-15T06:59:48Z +1176 42 1 15442 2.99 2005-08-23T00:42:49Z 2020-02-15T06:59:48Z +1177 42 1 13351 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1178 42 1 15407 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1179 43 2 123 4.99 2005-05-25T20:26:42Z 2020-02-15T06:59:48Z +1180 43 1 652 4.99 2005-05-28T20:08:47Z 2020-02-15T06:59:48Z +1181 43 2 1544 4.99 2005-06-16T01:28:22Z 2020-02-15T06:59:48Z +1182 43 2 3683 1.99 2005-07-06T09:25:56Z 2020-02-15T06:59:48Z +1183 43 1 4498 2.99 2005-07-08T02:07:50Z 2020-02-15T06:59:48Z +1184 43 1 5162 4.99 2005-07-09T09:00:11Z 2020-02-15T06:59:48Z +1185 43 1 5401 4.99 2005-07-09T19:59:10Z 2020-02-15T06:59:48Z +1186 43 1 5831 2.99 2005-07-10T16:34:02Z 2020-02-15T06:59:48Z +1187 43 2 5941 4.99 2005-07-10T22:40:47Z 2020-02-15T06:59:48Z +1188 43 1 6474 3.99 2005-07-12T01:36:46Z 2020-02-15T06:59:48Z +1189 43 2 6680 0.99 2005-07-12T12:01:56Z 2020-02-15T06:59:48Z +1190 43 1 7348 4.99 2005-07-27T14:32:32Z 2020-02-15T06:59:48Z +1191 43 2 7868 4.99 2005-07-28T10:08:55Z 2020-02-15T06:59:48Z +1192 43 2 8376 4.99 2005-07-29T05:25:32Z 2020-02-15T06:59:48Z +1193 43 1 9204 4.99 2005-07-30T12:43:58Z 2020-02-15T06:59:48Z +1194 43 1 11753 4.99 2005-08-17T09:11:52Z 2020-02-15T06:59:48Z +1195 43 1 14244 2.99 2005-08-21T05:29:55Z 2020-02-15T06:59:48Z +1196 43 1 14649 4.99 2005-08-21T19:19:21Z 2020-02-15T06:59:48Z +1197 43 2 14837 4.99 2005-08-22T01:54:52Z 2020-02-15T06:59:48Z +1198 43 2 15155 4.99 2005-08-22T14:27:46Z 2020-02-15T06:59:48Z +1199 43 2 15800 6.99 2005-08-23T14:23:44Z 2020-02-15T06:59:48Z +1200 43 2 15945 2.99 2005-08-23T18:51:41Z 2020-02-15T06:59:48Z +1201 43 2 15644 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1202 43 1 15745 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1203 44 1 29 0.99 2005-05-25T03:47:12Z 2020-02-15T06:59:48Z +1204 44 1 99 4.99 2005-05-25T16:50:20Z 2020-02-15T06:59:48Z +1205 44 1 407 2.99 2005-05-27T13:57:38Z 2020-02-15T06:59:48Z +1206 44 2 721 0.99 2005-05-29T05:28:47Z 2020-02-15T06:59:48Z +1207 44 1 904 2.99 2005-05-30T10:19:42Z 2020-02-15T06:59:48Z +1208 44 1 1497 3.99 2005-06-15T21:56:39Z 2020-02-15T06:59:48Z +1209 44 1 2369 2.99 2005-06-18T14:25:29Z 2020-02-15T06:59:48Z +1210 44 1 2809 3.99 2005-06-19T19:40:27Z 2020-02-15T06:59:48Z +1211 44 2 2866 4.99 2005-06-20T00:01:36Z 2020-02-15T06:59:48Z +1212 44 2 4390 0.99 2005-07-07T20:59:06Z 2020-02-15T06:59:48Z +1213 44 2 4723 9.99 2005-07-08T12:44:59Z 2020-02-15T06:59:48Z +1214 44 1 5551 3.99 2005-07-10T03:01:09Z 2020-02-15T06:59:48Z +1215 44 1 5787 8.99 2005-07-10T14:08:49Z 2020-02-15T06:59:48Z +1216 44 2 5849 6.99 2005-07-10T17:32:33Z 2020-02-15T06:59:48Z +1217 44 2 5909 4.99 2005-07-10T20:46:13Z 2020-02-15T06:59:48Z +1218 44 1 7514 0.99 2005-07-27T20:51:49Z 2020-02-15T06:59:48Z +1219 44 2 7526 6.99 2005-07-27T21:13:47Z 2020-02-15T06:59:48Z +1220 44 2 8775 4.99 2005-07-29T20:05:38Z 2020-02-15T06:59:48Z +1221 44 1 8866 4.99 2005-07-29T23:58:19Z 2020-02-15T06:59:48Z +1222 44 1 11364 2.99 2005-08-02T17:53:36Z 2020-02-15T06:59:48Z +1223 44 2 12345 3.99 2005-08-18T07:16:58Z 2020-02-15T06:59:48Z +1224 44 1 12504 4.99 2005-08-18T13:17:07Z 2020-02-15T06:59:48Z +1225 44 1 12790 6.99 2005-08-19T00:16:54Z 2020-02-15T06:59:48Z +1226 44 2 12982 4.99 2005-08-19T07:06:34Z 2020-02-15T06:59:48Z +1227 44 2 15054 2.99 2005-08-22T10:14:33Z 2020-02-15T06:59:48Z +1228 44 2 13428 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1229 45 2 277 2.99 2005-05-26T17:32:11Z 2020-02-15T06:59:48Z +1230 45 1 1806 4.99 2005-06-16T20:41:57Z 2020-02-15T06:59:48Z +1231 45 2 1979 2.99 2005-06-17T09:45:30Z 2020-02-15T06:59:48Z +1232 45 2 2722 4.99 2005-06-19T14:55:17Z 2020-02-15T06:59:48Z +1233 45 1 3391 3.99 2005-06-21T15:11:02Z 2020-02-15T06:59:48Z +1234 45 2 3444 0.99 2005-06-21T20:39:39Z 2020-02-15T06:59:48Z +1235 45 1 4843 0.99 2005-07-08T18:27:28Z 2020-02-15T06:59:48Z +1236 45 1 5181 6.99 2005-07-09T10:07:27Z 2020-02-15T06:59:48Z +1237 45 1 5405 7.99 2005-07-09T20:11:49Z 2020-02-15T06:59:48Z +1238 45 1 5637 0.99 2005-07-10T06:31:37Z 2020-02-15T06:59:48Z +1239 45 2 6001 0.99 2005-07-11T01:24:44Z 2020-02-15T06:59:48Z +1240 45 2 6002 2.99 2005-07-11T01:27:49Z 2020-02-15T06:59:48Z +1241 45 1 6966 9.99 2005-07-27T00:15:35Z 2020-02-15T06:59:48Z +1242 45 1 7436 2.99 2005-07-27T17:39:12Z 2020-02-15T06:59:48Z +1243 45 1 7961 3.99 2005-07-28T13:47:21Z 2020-02-15T06:59:48Z +1244 45 1 10507 2.99 2005-08-01T11:22:20Z 2020-02-15T06:59:48Z +1245 45 2 10878 6.99 2005-08-02T00:33:12Z 2020-02-15T06:59:48Z +1246 45 1 11004 8.99 2005-08-02T05:04:18Z 2020-02-15T06:59:48Z +1247 45 1 11029 4.99 2005-08-02T05:51:10Z 2020-02-15T06:59:48Z +1248 45 2 11483 2.99 2005-08-02T22:28:22Z 2020-02-15T06:59:48Z +1249 45 2 11488 3.99 2005-08-02T22:35:15Z 2020-02-15T06:59:48Z +1250 45 1 11725 2.99 2005-08-17T08:09:00Z 2020-02-15T06:59:48Z +1251 45 1 13340 3.99 2005-08-19T20:18:39Z 2020-02-15T06:59:48Z +1252 45 2 13394 4.99 2005-08-19T22:05:19Z 2020-02-15T06:59:48Z +1253 45 1 14576 6.99 2005-08-21T16:52:03Z 2020-02-15T06:59:48Z +1254 45 1 15812 10.99 2005-08-23T14:47:26Z 2020-02-15T06:59:48Z +1255 45 2 16037 7.99 2005-08-23T22:13:04Z 2020-02-15T06:59:48Z +1256 46 2 401 2.99 2005-05-27T12:57:55Z 2020-02-15T06:59:48Z +1257 46 2 432 4.99 2005-05-27T16:40:29Z 2020-02-15T06:59:48Z +1258 46 1 938 2.99 2005-05-30T14:47:31Z 2020-02-15T06:59:48Z +1259 46 1 1166 4.99 2005-06-14T23:17:03Z 2020-02-15T06:59:48Z +1260 46 2 1214 4.99 2005-06-15T03:18:40Z 2020-02-15T06:59:48Z +1261 46 2 2144 0.99 2005-06-17T22:05:40Z 2020-02-15T06:59:48Z +1262 46 1 2203 2.99 2005-06-18T02:10:42Z 2020-02-15T06:59:48Z +1263 46 2 2965 8.99 2005-06-20T07:33:38Z 2020-02-15T06:59:48Z +1264 46 2 2975 4.99 2005-06-20T08:06:18Z 2020-02-15T06:59:48Z +1265 46 2 3439 4.99 2005-06-21T19:36:15Z 2020-02-15T06:59:48Z +1266 46 2 3855 2.99 2005-07-06T17:03:48Z 2020-02-15T06:59:48Z +1267 46 1 3916 4.99 2005-07-06T20:18:50Z 2020-02-15T06:59:48Z +1268 46 2 5698 4.99 2005-07-10T09:47:00Z 2020-02-15T06:59:48Z +1269 46 1 7336 0.99 2005-07-27T14:11:45Z 2020-02-15T06:59:48Z +1270 46 2 8152 3.99 2005-07-28T20:53:05Z 2020-02-15T06:59:48Z +1271 46 2 9045 8.99 2005-07-30T06:36:57Z 2020-02-15T06:59:48Z +1272 46 2 9806 2.99 2005-07-31T11:13:49Z 2020-02-15T06:59:48Z +1273 46 1 10088 2.99 2005-07-31T20:16:21Z 2020-02-15T06:59:48Z +1274 46 2 10428 4.99 2005-08-01T08:30:11Z 2020-02-15T06:59:48Z +1275 46 1 10803 4.99 2005-08-01T22:22:07Z 2020-02-15T06:59:48Z +1276 46 1 10827 5.99 2005-08-01T23:13:00Z 2020-02-15T06:59:48Z +1277 46 1 11721 0.99 2005-08-17T07:49:17Z 2020-02-15T06:59:48Z +1278 46 2 12095 4.99 2005-08-17T22:32:37Z 2020-02-15T06:59:48Z +1279 46 2 12238 2.99 2005-08-18T03:25:08Z 2020-02-15T06:59:48Z +1280 46 2 12280 4.99 2005-08-18T04:49:27Z 2020-02-15T06:59:48Z +1281 46 1 12298 2.99 2005-08-18T05:30:31Z 2020-02-15T06:59:48Z +1282 46 2 12455 4.99 2005-08-18T11:19:47Z 2020-02-15T06:59:48Z +1283 46 1 13226 0.99 2005-08-19T16:05:36Z 2020-02-15T06:59:48Z +1284 46 2 14144 4.99 2005-08-21T02:10:57Z 2020-02-15T06:59:48Z +1285 46 2 14528 6.99 2005-08-21T15:08:05Z 2020-02-15T06:59:48Z +1286 46 1 14940 4.99 2005-08-22T05:54:03Z 2020-02-15T06:59:48Z +1287 46 1 15438 2.99 2005-08-23T00:31:57Z 2020-02-15T06:59:48Z +1288 46 1 15708 0.99 2005-08-23T10:35:51Z 2020-02-15T06:59:48Z +1289 46 1 15758 5.99 2005-08-23T12:47:26Z 2020-02-15T06:59:48Z +1290 47 2 175 3.99 2005-05-26T03:46:26Z 2020-02-15T06:59:48Z +1291 47 2 207 4.99 2005-05-26T08:04:38Z 2020-02-15T06:59:48Z +1292 47 1 300 6.99 2005-05-26T20:57:00Z 2020-02-15T06:59:48Z +1293 47 1 1882 4.99 2005-06-17T03:17:21Z 2020-02-15T06:59:48Z +1294 47 1 2307 6.99 2005-06-18T08:34:59Z 2020-02-15T06:59:48Z +1295 47 2 3320 5.99 2005-06-21T08:29:41Z 2020-02-15T06:59:48Z +1296 47 1 3631 4.99 2005-07-06T06:36:53Z 2020-02-15T06:59:48Z +1297 47 2 4064 5.99 2005-07-07T04:29:20Z 2020-02-15T06:59:48Z +1298 47 1 5174 0.99 2005-07-09T09:31:59Z 2020-02-15T06:59:48Z +1299 47 2 6153 9.99 2005-07-11T09:31:04Z 2020-02-15T06:59:48Z +1300 47 2 6164 0.99 2005-07-11T10:16:23Z 2020-02-15T06:59:48Z +1301 47 1 6337 3.99 2005-07-11T19:30:47Z 2020-02-15T06:59:48Z +1302 47 2 8159 4.99 2005-07-28T21:09:28Z 2020-02-15T06:59:48Z +1303 47 2 8402 6.99 2005-07-29T06:25:45Z 2020-02-15T06:59:48Z +1304 47 1 8863 3.99 2005-07-29T23:52:01Z 2020-02-15T06:59:48Z +1305 47 2 9274 4.99 2005-07-30T15:07:04Z 2020-02-15T06:59:48Z +1306 47 1 11126 0.99 2005-08-02T08:59:04Z 2020-02-15T06:59:48Z +1307 47 2 11477 5.99 2005-08-02T22:09:01Z 2020-02-15T06:59:48Z +1308 47 1 12215 7.99 2005-08-18T02:35:39Z 2020-02-15T06:59:48Z +1309 47 2 12274 7.99 2005-08-18T04:41:47Z 2020-02-15T06:59:48Z +1310 47 1 14397 0.99 2005-08-21T10:25:56Z 2020-02-15T06:59:48Z +1311 47 2 15846 2.99 2005-08-23T15:39:18Z 2020-02-15T06:59:48Z +1312 48 2 72 0.99 2005-05-25T10:52:13Z 2020-02-15T06:59:48Z +1313 48 1 297 2.99 2005-05-26T20:48:48Z 2020-02-15T06:59:48Z +1314 48 1 390 4.99 2005-05-27T11:02:26Z 2020-02-15T06:59:48Z +1315 48 2 1689 9.99 2005-06-16T12:18:41Z 2020-02-15T06:59:48Z +1316 48 2 2822 0.99 2005-06-19T20:29:24Z 2020-02-15T06:59:48Z +1317 48 2 3758 4.99 2005-07-06T12:43:11Z 2020-02-15T06:59:48Z +1318 48 1 4367 2.99 2005-07-07T19:52:01Z 2020-02-15T06:59:48Z +1319 48 2 5148 6.99 2005-07-09T08:22:46Z 2020-02-15T06:59:48Z +1320 48 2 6498 3.99 2005-07-12T03:05:38Z 2020-02-15T06:59:48Z +1321 48 1 7920 2.99 2005-07-28T12:01:19Z 2020-02-15T06:59:48Z +1322 48 1 8716 6.99 2005-07-29T17:39:09Z 2020-02-15T06:59:48Z +1323 48 1 9402 7.99 2005-07-30T20:18:27Z 2020-02-15T06:59:48Z +1324 48 2 9742 7.99 2005-07-31T09:10:20Z 2020-02-15T06:59:48Z +1325 48 2 10276 2.99 2005-08-01T03:22:23Z 2020-02-15T06:59:48Z +1326 48 2 14450 1.99 2005-08-21T12:21:25Z 2020-02-15T06:59:48Z +1327 48 2 14536 2.99 2005-08-21T15:22:50Z 2020-02-15T06:59:48Z +1328 48 1 15228 3.99 2005-08-22T17:27:23Z 2020-02-15T06:59:48Z +1329 49 2 96 1.99 2005-05-25T16:32:19Z 2020-02-15T06:59:48Z +1330 49 1 239 3.99 2005-05-26T12:30:26Z 2020-02-15T06:59:48Z +1331 49 2 846 2.99 2005-05-30T01:17:45Z 2020-02-15T06:59:48Z +1332 49 2 1010 4.99 2005-05-31T01:57:32Z 2020-02-15T06:59:48Z +1333 49 1 1164 0.99 2005-06-14T23:16:26Z 2020-02-15T06:59:48Z +1334 49 2 1237 9.99 2005-06-15T04:44:10Z 2020-02-15T06:59:48Z +1335 49 2 1688 0.99 2005-06-16T12:11:20Z 2020-02-15T06:59:48Z +1336 49 2 1777 6.99 2005-06-16T18:52:12Z 2020-02-15T06:59:48Z +1337 49 2 3235 4.99 2005-06-21T02:46:17Z 2020-02-15T06:59:48Z +1338 49 2 3575 4.99 2005-07-06T03:36:19Z 2020-02-15T06:59:48Z +1339 49 2 3615 0.99 2005-07-06T05:47:47Z 2020-02-15T06:59:48Z +1340 49 1 5491 2.99 2005-07-10T00:09:45Z 2020-02-15T06:59:48Z +1341 49 1 6214 4.99 2005-07-11T12:49:48Z 2020-02-15T06:59:48Z +1342 49 1 6279 6.99 2005-07-11T16:26:07Z 2020-02-15T06:59:48Z +1343 49 1 6521 7.99 2005-07-12T04:06:11Z 2020-02-15T06:59:48Z +1344 49 2 6759 4.99 2005-07-12T15:14:48Z 2020-02-15T06:59:48Z +1345 49 2 7209 4.99 2005-07-27T09:16:53Z 2020-02-15T06:59:48Z +1346 49 2 7742 8.99 2005-07-28T05:33:16Z 2020-02-15T06:59:48Z +1347 49 2 8553 10.99 2005-07-29T11:15:36Z 2020-02-15T06:59:48Z +1348 49 2 9006 0.99 2005-07-30T05:06:32Z 2020-02-15T06:59:48Z +1349 49 1 9851 4.99 2005-07-31T12:50:24Z 2020-02-15T06:59:48Z +1350 49 1 10144 4.99 2005-07-31T22:13:52Z 2020-02-15T06:59:48Z +1351 49 1 10266 0.99 2005-08-01T03:05:59Z 2020-02-15T06:59:48Z +1352 49 1 10588 2.99 2005-08-01T14:10:21Z 2020-02-15T06:59:48Z +1353 49 1 10814 2.99 2005-08-01T22:43:12Z 2020-02-15T06:59:48Z +1354 49 2 14168 5.99 2005-08-21T03:00:03Z 2020-02-15T06:59:48Z +1355 49 1 14627 6.99 2005-08-21T18:35:54Z 2020-02-15T06:59:48Z +1356 49 1 14676 2.99 2005-08-21T20:02:18Z 2020-02-15T06:59:48Z +1357 50 1 763 4.99 2005-05-29T11:32:15Z 2020-02-15T06:59:48Z +1358 50 1 794 4.99 2005-05-29T16:44:11Z 2020-02-15T06:59:48Z +1359 50 1 905 4.99 2005-05-30T10:25:00Z 2020-02-15T06:59:48Z +1360 50 1 1029 4.99 2005-05-31T03:52:02Z 2020-02-15T06:59:48Z +1361 50 2 1136 4.99 2005-05-31T19:19:36Z 2020-02-15T06:59:48Z +1362 50 1 1223 2.99 2005-06-15T03:38:53Z 2020-02-15T06:59:48Z +1363 50 1 1785 4.99 2005-06-16T19:27:12Z 2020-02-15T06:59:48Z +1364 50 2 3000 0.99 2005-06-20T09:32:33Z 2020-02-15T06:59:48Z +1365 50 2 3169 2.99 2005-06-20T21:55:54Z 2020-02-15T06:59:48Z +1366 50 2 4149 2.99 2005-07-07T08:40:17Z 2020-02-15T06:59:48Z +1367 50 2 5290 4.99 2005-07-09T15:14:47Z 2020-02-15T06:59:48Z +1368 50 2 5641 4.99 2005-07-10T06:43:43Z 2020-02-15T06:59:48Z +1369 50 2 5681 9.99 2005-07-10T08:48:39Z 2020-02-15T06:59:48Z +1370 50 1 5928 6.99 2005-07-10T21:58:30Z 2020-02-15T06:59:48Z +1371 50 2 6634 0.99 2005-07-12T09:37:18Z 2020-02-15T06:59:48Z +1372 50 1 6667 8.99 2005-07-12T11:36:22Z 2020-02-15T06:59:48Z +1373 50 1 7383 4.99 2005-07-27T15:46:53Z 2020-02-15T06:59:48Z +1374 50 1 8089 0.99 2005-07-28T18:26:47Z 2020-02-15T06:59:48Z +1375 50 1 8261 0.99 2005-07-29T01:11:05Z 2020-02-15T06:59:48Z +1376 50 1 8619 5.99 2005-07-29T13:50:08Z 2020-02-15T06:59:48Z +1377 50 2 9179 0.99 2005-07-30T12:02:41Z 2020-02-15T06:59:48Z +1378 50 1 9615 4.99 2005-07-31T03:59:56Z 2020-02-15T06:59:48Z +1379 50 2 9691 10.99 2005-07-31T07:09:55Z 2020-02-15T06:59:48Z +1380 50 2 10046 2.99 2005-07-31T19:07:11Z 2020-02-15T06:59:48Z +1381 50 2 10165 0.99 2005-07-31T23:21:23Z 2020-02-15T06:59:48Z +1382 50 2 10180 6.99 2005-07-31T23:57:43Z 2020-02-15T06:59:48Z +1383 50 2 10261 4.99 2005-08-01T02:58:27Z 2020-02-15T06:59:48Z +1384 50 2 10485 7.99 2005-08-01T10:20:34Z 2020-02-15T06:59:48Z +1385 50 2 11053 3.99 2005-08-02T06:27:13Z 2020-02-15T06:59:48Z +1386 50 1 12766 6.99 2005-08-18T23:25:20Z 2020-02-15T06:59:48Z +1387 50 2 13136 7.99 2005-08-19T12:24:23Z 2020-02-15T06:59:48Z +1388 50 1 14054 4.99 2005-08-20T22:17:01Z 2020-02-15T06:59:48Z +1389 50 2 15138 2.99 2005-08-22T13:36:30Z 2020-02-15T06:59:48Z +1390 50 2 15388 6.99 2005-08-22T22:49:23Z 2020-02-15T06:59:48Z +1391 50 1 16015 4.99 2005-08-23T21:25:03Z 2020-02-15T06:59:48Z +1392 51 2 119 4.99 2005-05-25T19:37:02Z 2020-02-15T06:59:48Z +1393 51 1 661 4.99 2005-05-28T21:01:25Z 2020-02-15T06:59:48Z +1394 51 2 1028 4.99 2005-05-31T03:48:05Z 2020-02-15T06:59:48Z +1395 51 2 1373 1.99 2005-06-15T14:48:04Z 2020-02-15T06:59:48Z +1396 51 1 1477 0.99 2005-06-15T21:11:18Z 2020-02-15T06:59:48Z +1397 51 1 3525 9.99 2005-07-06T01:02:39Z 2020-02-15T06:59:48Z +1398 51 1 5230 2.99 2005-07-09T12:30:23Z 2020-02-15T06:59:48Z +1399 51 2 5304 5.99 2005-07-09T15:48:06Z 2020-02-15T06:59:48Z +1400 51 1 5473 7.99 2005-07-09T23:19:11Z 2020-02-15T06:59:48Z +1401 51 1 5606 4.99 2005-07-10T05:07:55Z 2020-02-15T06:59:48Z +1402 51 1 7207 5.99 2005-07-27T09:13:26Z 2020-02-15T06:59:48Z +1403 51 1 7398 6.99 2005-07-27T16:07:22Z 2020-02-15T06:59:48Z +1404 51 1 7636 5.99 2005-07-28T01:08:36Z 2020-02-15T06:59:48Z +1405 51 1 8495 4.99 2005-07-29T09:05:06Z 2020-02-15T06:59:48Z +1406 51 1 8693 0.99 2005-07-29T16:44:13Z 2020-02-15T06:59:48Z +1407 51 1 8880 0.99 2005-07-30T00:16:55Z 2020-02-15T06:59:48Z +1408 51 2 9649 0.99 2005-07-31T05:46:54Z 2020-02-15T06:59:48Z +1409 51 2 10244 4.99 2005-08-01T02:20:01Z 2020-02-15T06:59:48Z +1410 51 1 10780 2.99 2005-08-01T21:14:24Z 2020-02-15T06:59:48Z +1411 51 1 10894 0.99 2005-08-02T01:12:35Z 2020-02-15T06:59:48Z +1412 51 1 11302 2.99 2005-08-02T15:38:03Z 2020-02-15T06:59:48Z +1413 51 2 11685 4.99 2005-08-17T06:39:16Z 2020-02-15T06:59:48Z +1414 51 2 11751 6.99 2005-08-17T09:07:56Z 2020-02-15T06:59:48Z +1415 51 1 12184 0.99 2005-08-18T01:36:00Z 2020-02-15T06:59:48Z +1416 51 1 12725 4.99 2005-08-18T21:43:09Z 2020-02-15T06:59:48Z +1417 51 2 13098 2.99 2005-08-19T10:51:59Z 2020-02-15T06:59:48Z +1418 51 1 13302 2.99 2005-08-19T18:54:26Z 2020-02-15T06:59:48Z +1419 51 1 13868 0.99 2005-08-20T15:06:26Z 2020-02-15T06:59:48Z +1420 51 2 13882 2.99 2005-08-20T15:23:26Z 2020-02-15T06:59:48Z +1421 51 2 14221 6.99 2005-08-21T04:49:41Z 2020-02-15T06:59:48Z +1422 51 2 14512 4.99 2005-08-21T14:47:09Z 2020-02-15T06:59:48Z +1423 51 1 14617 4.99 2005-08-21T18:07:40Z 2020-02-15T06:59:48Z +1424 51 1 14903 4.99 2005-08-22T04:31:50Z 2020-02-15T06:59:48Z +1425 52 1 874 0.99 2005-05-30T05:36:21Z 2020-02-15T06:59:48Z +1426 52 1 1196 4.99 2005-06-15T01:38:31Z 2020-02-15T06:59:48Z +1427 52 2 2232 0.99 2005-06-18T03:54:31Z 2020-02-15T06:59:48Z +1428 52 1 2862 2.99 2005-06-19T23:47:24Z 2020-02-15T06:59:48Z +1429 52 2 3196 4.99 2005-06-21T00:02:28Z 2020-02-15T06:59:48Z +1430 52 1 3997 1.99 2005-07-06T23:46:52Z 2020-02-15T06:59:48Z +1431 52 1 5308 0.99 2005-07-09T15:58:38Z 2020-02-15T06:59:48Z +1432 52 2 5313 3.99 2005-07-09T16:04:45Z 2020-02-15T06:59:48Z +1433 52 1 5607 2.99 2005-07-10T05:08:10Z 2020-02-15T06:59:48Z +1434 52 1 6394 7.99 2005-07-11T22:29:15Z 2020-02-15T06:59:48Z +1435 52 2 7284 0.99 2005-07-27T12:12:04Z 2020-02-15T06:59:48Z +1436 52 2 7438 5.99 2005-07-27T17:40:40Z 2020-02-15T06:59:48Z +1437 52 2 7627 4.99 2005-07-28T00:56:47Z 2020-02-15T06:59:48Z +1438 52 1 8686 4.99 2005-07-29T16:17:49Z 2020-02-15T06:59:48Z +1439 52 1 9029 4.99 2005-07-30T06:03:11Z 2020-02-15T06:59:48Z +1440 52 2 9749 3.99 2005-07-31T09:18:33Z 2020-02-15T06:59:48Z +1441 52 2 9797 4.99 2005-07-31T10:53:44Z 2020-02-15T06:59:48Z +1442 52 2 10591 0.99 2005-08-01T14:12:29Z 2020-02-15T06:59:48Z +1443 52 1 10635 0.99 2005-08-01T15:37:58Z 2020-02-15T06:59:48Z +1444 52 1 11068 0.99 2005-08-02T07:08:07Z 2020-02-15T06:59:48Z +1445 52 1 11731 3.99 2005-08-17T08:24:35Z 2020-02-15T06:59:48Z +1446 52 2 12200 2.99 2005-08-18T02:12:33Z 2020-02-15T06:59:48Z +1447 52 2 12520 0.99 2005-08-18T13:42:45Z 2020-02-15T06:59:48Z +1448 52 2 13090 5.99 2005-08-19T10:39:54Z 2020-02-15T06:59:48Z +1449 52 2 14820 2.99 2005-08-22T01:18:37Z 2020-02-15T06:59:48Z +1450 52 1 14822 5.99 2005-08-22T01:21:14Z 2020-02-15T06:59:48Z +1451 52 2 14961 6.99 2005-08-22T06:35:50Z 2020-02-15T06:59:48Z +1452 52 2 15891 5.99 2005-08-23T17:00:12Z 2020-02-15T06:59:48Z +1453 52 1 12001 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1454 53 1 88 3.99 2005-05-25T14:13:54Z 2020-02-15T06:59:48Z +1455 53 1 378 2.99 2005-05-27T09:23:22Z 2020-02-15T06:59:48Z +1456 53 1 751 0.99 2005-05-29T09:55:43Z 2020-02-15T06:59:48Z +1457 53 2 783 5.99 2005-05-29T14:41:18Z 2020-02-15T06:59:48Z +1458 53 2 856 9.99 2005-05-30T02:01:21Z 2020-02-15T06:59:48Z +1459 53 1 1107 2.99 2005-05-31T15:04:05Z 2020-02-15T06:59:48Z +1460 53 1 1964 0.99 2005-06-17T09:10:09Z 2020-02-15T06:59:48Z +1461 53 1 2388 2.99 2005-06-18T15:26:30Z 2020-02-15T06:59:48Z +1462 53 1 2903 2.99 2005-06-20T02:49:01Z 2020-02-15T06:59:48Z +1463 53 2 3140 2.99 2005-06-20T19:47:12Z 2020-02-15T06:59:48Z +1464 53 2 3244 0.99 2005-06-21T03:01:10Z 2020-02-15T06:59:48Z +1465 53 2 3591 2.99 2005-07-06T04:37:10Z 2020-02-15T06:59:48Z +1466 53 2 3898 4.99 2005-07-06T19:12:37Z 2020-02-15T06:59:48Z +1467 53 2 5185 2.99 2005-07-09T10:14:39Z 2020-02-15T06:59:48Z +1468 53 2 7466 2.99 2005-07-27T18:51:17Z 2020-02-15T06:59:48Z +1469 53 1 7699 4.99 2005-07-28T03:52:21Z 2020-02-15T06:59:48Z +1470 53 1 9343 4.99 2005-07-30T18:13:13Z 2020-02-15T06:59:48Z +1471 53 1 9928 7.99 2005-07-31T15:13:57Z 2020-02-15T06:59:48Z +1472 53 1 10594 3.99 2005-08-01T14:14:59Z 2020-02-15T06:59:48Z +1473 53 1 12054 5.99 2005-08-17T20:59:56Z 2020-02-15T06:59:48Z +1474 53 1 12580 2.99 2005-08-18T15:49:08Z 2020-02-15T06:59:48Z +1475 53 1 13049 5.99 2005-08-19T09:25:40Z 2020-02-15T06:59:48Z +1476 53 2 13789 2.99 2005-08-20T12:16:38Z 2020-02-15T06:59:48Z +1477 53 1 14061 2.99 2005-08-20T22:32:11Z 2020-02-15T06:59:48Z +1478 53 2 14091 0.99 2005-08-21T00:11:17Z 2020-02-15T06:59:48Z +1479 53 2 14119 5.99 2005-08-21T01:15:59Z 2020-02-15T06:59:48Z +1480 53 1 14671 4.99 2005-08-21T19:59:30Z 2020-02-15T06:59:48Z +1481 53 2 14811 0.99 2005-08-22T01:09:04Z 2020-02-15T06:59:48Z +1482 53 2 11657 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1483 53 1 14137 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1484 54 2 198 4.99 2005-05-26T07:03:49Z 2020-02-15T06:59:48Z +1485 54 2 441 4.99 2005-05-27T18:11:05Z 2020-02-15T06:59:48Z +1486 54 2 545 3.99 2005-05-28T07:10:20Z 2020-02-15T06:59:48Z +1487 54 1 1556 4.99 2005-06-16T02:19:02Z 2020-02-15T06:59:48Z +1488 54 1 1571 2.99 2005-06-16T03:22:00Z 2020-02-15T06:59:48Z +1489 54 2 2323 6.99 2005-06-18T09:55:02Z 2020-02-15T06:59:48Z +1490 54 1 2647 4.99 2005-06-19T09:57:56Z 2020-02-15T06:59:48Z +1491 54 2 4657 4.99 2005-07-08T09:51:02Z 2020-02-15T06:59:48Z +1492 54 2 5055 1.99 2005-07-09T04:05:28Z 2020-02-15T06:59:48Z +1493 54 1 5929 2.99 2005-07-10T21:59:29Z 2020-02-15T06:59:48Z +1494 54 1 5992 2.99 2005-07-11T01:06:21Z 2020-02-15T06:59:48Z +1495 54 1 6338 7.99 2005-07-11T19:39:41Z 2020-02-15T06:59:48Z +1496 54 2 6560 2.99 2005-07-12T05:22:06Z 2020-02-15T06:59:48Z +1497 54 1 6813 0.99 2005-07-12T18:03:50Z 2020-02-15T06:59:48Z +1498 54 2 8992 4.99 2005-07-30T04:44:18Z 2020-02-15T06:59:48Z +1499 54 2 10489 5.99 2005-08-01T10:27:42Z 2020-02-15T06:59:48Z +1500 54 2 10882 5.99 2005-08-02T00:47:16Z 2020-02-15T06:59:48Z +1501 54 1 10956 4.99 2005-08-02T03:33:14Z 2020-02-15T06:59:48Z +1502 54 1 11182 4.99 2005-08-02T10:55:14Z 2020-02-15T06:59:48Z +1503 54 2 11887 2.99 2005-08-17T15:03:13Z 2020-02-15T06:59:48Z +1504 54 1 12526 2.99 2005-08-18T13:48:43Z 2020-02-15T06:59:48Z +1505 54 2 12775 5.99 2005-08-18T23:35:56Z 2020-02-15T06:59:48Z +1506 54 1 12811 4.99 2005-08-19T00:51:28Z 2020-02-15T06:59:48Z +1507 54 2 12872 0.99 2005-08-19T02:57:37Z 2020-02-15T06:59:48Z +1508 54 2 13315 2.99 2005-08-19T19:16:18Z 2020-02-15T06:59:48Z +1509 54 1 13890 0.99 2005-08-20T15:41:00Z 2020-02-15T06:59:48Z +1510 54 1 14215 4.99 2005-08-21T04:34:11Z 2020-02-15T06:59:48Z +1511 54 1 15226 10.99 2005-08-22T17:20:17Z 2020-02-15T06:59:48Z +1512 54 1 15567 4.99 2005-08-23T05:20:36Z 2020-02-15T06:59:48Z +1513 55 1 555 4.99 2005-05-28T08:31:14Z 2020-02-15T06:59:48Z +1514 55 1 1027 9.99 2005-05-31T03:46:19Z 2020-02-15T06:59:48Z +1515 55 1 1048 0.99 2005-05-31T06:49:53Z 2020-02-15T06:59:48Z +1516 55 2 1825 2.99 2005-06-16T21:53:05Z 2020-02-15T06:59:48Z +1517 55 2 2062 2.99 2005-06-17T15:56:43Z 2020-02-15T06:59:48Z +1518 55 1 2904 2.99 2005-06-20T02:54:06Z 2020-02-15T06:59:48Z +1519 55 1 2976 4.99 2005-06-20T08:09:11Z 2020-02-15T06:59:48Z +1520 55 1 3149 4.99 2005-06-20T20:34:55Z 2020-02-15T06:59:48Z +1521 55 1 4671 4.99 2005-07-08T10:15:32Z 2020-02-15T06:59:48Z +1522 55 2 6314 7.99 2005-07-11T18:32:44Z 2020-02-15T06:59:48Z +1523 55 2 7050 4.99 2005-07-27T03:33:17Z 2020-02-15T06:59:48Z +1524 55 2 8288 6.99 2005-07-29T02:04:22Z 2020-02-15T06:59:48Z +1525 55 1 9302 2.99 2005-07-30T16:34:57Z 2020-02-15T06:59:48Z +1526 55 2 9596 5.99 2005-07-31T03:28:47Z 2020-02-15T06:59:48Z +1527 55 2 9798 2.99 2005-07-31T10:55:18Z 2020-02-15T06:59:48Z +1528 55 2 11287 1.99 2005-08-02T14:49:51Z 2020-02-15T06:59:48Z +1529 55 1 12776 4.99 2005-08-18T23:37:33Z 2020-02-15T06:59:48Z +1530 55 1 12808 4.99 2005-08-19T00:40:41Z 2020-02-15T06:59:48Z +1531 55 2 12972 1.99 2005-08-19T06:43:28Z 2020-02-15T06:59:48Z +1532 55 1 13345 6.99 2005-08-19T20:25:24Z 2020-02-15T06:59:48Z +1533 55 1 14667 2.99 2005-08-21T19:51:11Z 2020-02-15T06:59:48Z +1534 55 1 15296 4.99 2005-08-22T19:37:20Z 2020-02-15T06:59:48Z +1535 56 1 130 3.99 2005-05-25T21:21:56Z 2020-02-15T06:59:48Z +1536 56 1 341 5.99 2005-05-27T04:01:42Z 2020-02-15T06:59:48Z +1537 56 1 496 2.99 2005-05-28T00:43:41Z 2020-02-15T06:59:48Z +1538 56 1 569 6.99 2005-05-28T10:12:41Z 2020-02-15T06:59:48Z +1539 56 2 1795 6.99 2005-06-16T20:09:01Z 2020-02-15T06:59:48Z +1540 56 1 2140 0.99 2005-06-17T21:40:29Z 2020-02-15T06:59:48Z +1541 56 1 2485 4.99 2005-06-18T21:26:03Z 2020-02-15T06:59:48Z +1542 56 1 2989 0.99 2005-06-20T08:59:37Z 2020-02-15T06:59:48Z +1543 56 1 3718 7.99 2005-07-06T10:57:56Z 2020-02-15T06:59:48Z +1544 56 2 3771 2.99 2005-07-06T13:19:34Z 2020-02-15T06:59:48Z +1545 56 1 4097 3.99 2005-07-07T06:10:55Z 2020-02-15T06:59:48Z +1546 56 2 4702 4.99 2005-07-08T11:41:36Z 2020-02-15T06:59:48Z +1547 56 1 5142 4.99 2005-07-09T08:05:23Z 2020-02-15T06:59:48Z +1548 56 1 7385 2.99 2005-07-27T15:49:46Z 2020-02-15T06:59:48Z +1549 56 1 7696 7.99 2005-07-28T03:41:35Z 2020-02-15T06:59:48Z +1550 56 2 7942 0.99 2005-07-28T12:49:44Z 2020-02-15T06:59:48Z +1551 56 1 8285 0.99 2005-07-29T02:00:18Z 2020-02-15T06:59:48Z +1552 56 2 10356 6.99 2005-08-01T05:49:17Z 2020-02-15T06:59:48Z +1553 56 2 10678 0.99 2005-08-01T17:26:24Z 2020-02-15T06:59:48Z +1554 56 1 10946 4.99 2005-08-02T03:20:39Z 2020-02-15T06:59:48Z +1555 56 1 11358 5.99 2005-08-02T17:45:02Z 2020-02-15T06:59:48Z +1556 56 1 11656 4.99 2005-08-17T05:11:09Z 2020-02-15T06:59:48Z +1557 56 2 12537 1.99 2005-08-18T14:06:39Z 2020-02-15T06:59:48Z +1558 56 2 12713 4.99 2005-08-18T21:07:28Z 2020-02-15T06:59:48Z +1559 56 2 13560 8.99 2005-08-20T04:17:16Z 2020-02-15T06:59:48Z +1560 56 1 13769 5.99 2005-08-20T11:43:52Z 2020-02-15T06:59:48Z +1561 56 2 14291 3.99 2005-08-21T07:03:05Z 2020-02-15T06:59:48Z +1562 56 2 14534 0.99 2005-08-21T15:16:29Z 2020-02-15T06:59:48Z +1563 56 2 15702 7.99 2005-08-23T10:23:28Z 2020-02-15T06:59:48Z +1564 56 2 15714 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1565 57 2 152 9.99 2005-05-26T00:41:10Z 2020-02-15T06:59:48Z +1566 57 2 943 4.99 2005-05-30T15:20:19Z 2020-02-15T06:59:48Z +1567 57 1 2058 5.99 2005-06-17T15:34:41Z 2020-02-15T06:59:48Z +1568 57 1 2105 0.99 2005-06-17T19:15:45Z 2020-02-15T06:59:48Z +1569 57 1 2360 4.99 2005-06-18T13:11:13Z 2020-02-15T06:59:48Z +1570 57 2 2910 7.99 2005-06-20T03:31:18Z 2020-02-15T06:59:48Z +1571 57 1 3357 0.99 2005-06-21T11:55:42Z 2020-02-15T06:59:48Z +1572 57 1 3727 4.99 2005-07-06T11:16:43Z 2020-02-15T06:59:48Z +1573 57 2 4226 4.99 2005-07-07T12:37:56Z 2020-02-15T06:59:48Z +1574 57 1 5060 4.99 2005-07-09T04:28:03Z 2020-02-15T06:59:48Z +1575 57 1 5694 0.99 2005-07-10T09:40:38Z 2020-02-15T06:59:48Z +1576 57 2 5948 2.99 2005-07-10T23:12:08Z 2020-02-15T06:59:48Z +1577 57 2 6482 4.99 2005-07-12T01:50:21Z 2020-02-15T06:59:48Z +1578 57 1 6494 1.99 2005-07-12T02:42:51Z 2020-02-15T06:59:48Z +1579 57 2 6649 4.99 2005-07-12T10:51:09Z 2020-02-15T06:59:48Z +1580 57 2 8249 5.99 2005-07-29T00:48:44Z 2020-02-15T06:59:48Z +1581 57 1 9086 0.99 2005-07-30T08:18:46Z 2020-02-15T06:59:48Z +1582 57 2 9136 0.99 2005-07-30T10:07:20Z 2020-02-15T06:59:48Z +1583 57 1 9211 1.99 2005-07-30T12:59:45Z 2020-02-15T06:59:48Z +1584 57 1 9703 0.99 2005-07-31T07:34:52Z 2020-02-15T06:59:48Z +1585 57 2 9812 2.99 2005-07-31T11:28:07Z 2020-02-15T06:59:48Z +1586 57 2 10169 4.99 2005-07-31T23:27:13Z 2020-02-15T06:59:48Z +1587 57 2 12925 5.99 2005-08-19T04:59:01Z 2020-02-15T06:59:48Z +1588 57 2 13163 0.99 2005-08-19T13:29:46Z 2020-02-15T06:59:48Z +1589 57 2 13743 0.99 2005-08-20T10:51:27Z 2020-02-15T06:59:48Z +1590 57 2 13929 9.99 2005-08-20T17:13:48Z 2020-02-15T06:59:48Z +1591 57 2 15571 0.99 2005-08-23T05:26:30Z 2020-02-15T06:59:48Z +1592 57 2 15871 9.99 2005-08-23T16:24:24Z 2020-02-15T06:59:48Z +1593 58 1 230 0.99 2005-05-26T11:31:50Z 2020-02-15T06:59:48Z +1594 58 2 276 7.99 2005-05-26T17:16:07Z 2020-02-15T06:59:48Z +1595 58 2 761 0.99 2005-05-29T11:09:01Z 2020-02-15T06:59:48Z +1596 58 1 2191 4.99 2005-06-18T01:33:09Z 2020-02-15T06:59:48Z +1597 58 2 2543 0.99 2005-06-19T02:14:11Z 2020-02-15T06:59:48Z +1598 58 1 2906 0.99 2005-06-20T03:04:56Z 2020-02-15T06:59:48Z +1599 58 1 3685 4.99 2005-07-06T09:30:45Z 2020-02-15T06:59:48Z +1600 58 2 4131 4.99 2005-07-07T07:53:18Z 2020-02-15T06:59:48Z +1601 58 2 5439 1.99 2005-07-09T21:39:35Z 2020-02-15T06:59:48Z +1602 58 1 7063 9.99 2005-07-27T03:52:27Z 2020-02-15T06:59:48Z +1603 58 2 7487 4.99 2005-07-27T19:32:45Z 2020-02-15T06:59:48Z +1604 58 1 8853 0.99 2005-07-29T23:34:21Z 2020-02-15T06:59:48Z +1605 58 2 9561 2.99 2005-07-31T02:22:13Z 2020-02-15T06:59:48Z +1606 58 2 10037 2.99 2005-07-31T18:48:08Z 2020-02-15T06:59:48Z +1607 58 1 10068 4.99 2005-07-31T19:39:38Z 2020-02-15T06:59:48Z +1608 58 2 10256 4.99 2005-08-01T02:47:11Z 2020-02-15T06:59:48Z +1609 58 1 10668 0.99 2005-08-01T17:00:27Z 2020-02-15T06:59:48Z +1610 58 1 11416 6.99 2005-08-02T19:44:04Z 2020-02-15T06:59:48Z +1611 58 2 12292 8.99 2005-08-18T05:08:54Z 2020-02-15T06:59:48Z +1612 58 1 13194 6.99 2005-08-19T14:34:12Z 2020-02-15T06:59:48Z +1613 58 1 13207 3.99 2005-08-19T15:14:38Z 2020-02-15T06:59:48Z +1614 58 1 13930 2.99 2005-08-20T17:15:06Z 2020-02-15T06:59:48Z +1615 58 2 13973 4.99 2005-08-20T18:52:43Z 2020-02-15T06:59:48Z +1616 58 2 14305 5.99 2005-08-21T07:29:05Z 2020-02-15T06:59:48Z +1617 58 1 14665 6.99 2005-08-21T19:49:46Z 2020-02-15T06:59:48Z +1618 58 1 14989 4.99 2005-08-22T07:47:07Z 2020-02-15T06:59:48Z +1619 58 2 15326 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1620 59 2 212 4.99 2005-05-26T08:34:41Z 2020-02-15T06:59:48Z +1621 59 2 951 2.99 2005-05-30T16:10:35Z 2020-02-15T06:59:48Z +1622 59 1 1154 5.99 2005-05-31T21:42:09Z 2020-02-15T06:59:48Z +1623 59 1 1269 2.99 2005-06-15T07:29:59Z 2020-02-15T06:59:48Z +1624 59 1 1728 3.99 2005-06-16T15:29:29Z 2020-02-15T06:59:48Z +1625 59 1 2921 3.99 2005-06-20T04:13:04Z 2020-02-15T06:59:48Z +1626 59 2 4148 2.99 2005-07-07T08:36:58Z 2020-02-15T06:59:48Z +1627 59 1 4384 4.99 2005-07-07T20:46:45Z 2020-02-15T06:59:48Z +1628 59 1 4631 4.99 2005-07-08T08:38:22Z 2020-02-15T06:59:48Z +1629 59 1 4891 3.99 2005-07-08T20:06:19Z 2020-02-15T06:59:48Z +1630 59 2 5195 8.99 2005-07-09T10:39:31Z 2020-02-15T06:59:48Z +1631 59 1 5207 3.99 2005-07-09T11:15:44Z 2020-02-15T06:59:48Z +1632 59 1 5830 4.99 2005-07-10T16:34:00Z 2020-02-15T06:59:48Z +1633 59 1 7991 4.99 2005-07-28T14:45:45Z 2020-02-15T06:59:48Z +1634 59 2 8643 4.99 2005-07-29T14:45:23Z 2020-02-15T06:59:48Z +1635 59 1 9469 8.99 2005-07-30T22:56:34Z 2020-02-15T06:59:48Z +1636 59 2 9573 6.99 2005-07-31T02:45:38Z 2020-02-15T06:59:48Z +1637 59 2 11396 4.99 2005-08-02T18:48:29Z 2020-02-15T06:59:48Z +1638 59 1 12833 5.99 2005-08-19T01:42:28Z 2020-02-15T06:59:48Z +1639 59 2 13282 2.99 2005-08-19T18:08:18Z 2020-02-15T06:59:48Z +1640 59 1 13573 2.99 2005-08-20T05:10:14Z 2020-02-15T06:59:48Z +1641 59 2 13921 4.99 2005-08-20T16:57:11Z 2020-02-15T06:59:48Z +1642 59 1 14135 5.99 2005-08-21T01:53:54Z 2020-02-15T06:59:48Z +1643 59 1 14977 5.99 2005-08-22T07:12:53Z 2020-02-15T06:59:48Z +1644 59 2 15271 5.99 2005-08-22T18:48:48Z 2020-02-15T06:59:48Z +1645 59 2 15744 4.99 2005-08-23T12:15:51Z 2020-02-15T06:59:48Z +1646 59 2 15905 2.99 2005-08-23T17:33:04Z 2020-02-15T06:59:48Z +1647 60 1 318 4.99 2005-05-26T23:37:39Z 2020-02-15T06:59:48Z +1648 60 2 706 1.99 2005-05-29T03:05:49Z 2020-02-15T06:59:48Z +1649 60 2 934 2.99 2005-05-30T13:24:46Z 2020-02-15T06:59:48Z +1650 60 2 1482 4.99 2005-06-15T21:18:16Z 2020-02-15T06:59:48Z +1651 60 2 2394 4.99 2005-06-18T15:42:30Z 2020-02-15T06:59:48Z +1652 60 2 3473 2.99 2005-07-05T22:57:34Z 2020-02-15T06:59:48Z +1653 60 1 3849 2.99 2005-07-06T16:49:43Z 2020-02-15T06:59:48Z +1654 60 1 6282 5.99 2005-07-11T16:46:22Z 2020-02-15T06:59:48Z +1655 60 2 7067 0.99 2005-07-27T03:55:10Z 2020-02-15T06:59:48Z +1656 60 1 7331 3.99 2005-07-27T13:57:50Z 2020-02-15T06:59:48Z +1657 60 1 7494 0.99 2005-07-27T19:56:31Z 2020-02-15T06:59:48Z +1658 60 1 9356 4.99 2005-07-30T18:36:24Z 2020-02-15T06:59:48Z +1659 60 1 9761 4.99 2005-07-31T09:31:54Z 2020-02-15T06:59:48Z +1660 60 2 10680 0.99 2005-08-01T17:28:05Z 2020-02-15T06:59:48Z +1661 60 1 11092 4.99 2005-08-02T07:58:50Z 2020-02-15T06:59:48Z +1662 60 1 11404 8.99 2005-08-02T19:12:40Z 2020-02-15T06:59:48Z +1663 60 1 12084 1.99 2005-08-17T22:16:49Z 2020-02-15T06:59:48Z +1664 60 2 12614 7.99 2005-08-18T17:16:03Z 2020-02-15T06:59:48Z +1665 60 1 15093 2.99 2005-08-22T11:39:03Z 2020-02-15T06:59:48Z +1666 60 1 15318 2.99 2005-08-22T20:15:16Z 2020-02-15T06:59:48Z +1667 60 1 15618 5.99 2005-08-23T07:07:58Z 2020-02-15T06:59:48Z +1668 60 1 15632 0.99 2005-08-23T07:30:26Z 2020-02-15T06:59:48Z +1669 60 1 15649 2.99 2005-08-23T08:28:03Z 2020-02-15T06:59:48Z +1670 60 2 12489 9.98 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1671 60 2 14741 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1672 61 1 1157 0.99 2005-05-31T22:47:45Z 2020-02-15T06:59:48Z +1673 61 1 7027 7.99 2005-07-27T02:50:15Z 2020-02-15T06:59:48Z +1674 61 2 7071 1.99 2005-07-27T04:01:15Z 2020-02-15T06:59:48Z +1675 61 2 8029 6.99 2005-07-28T16:11:21Z 2020-02-15T06:59:48Z +1676 61 2 8075 4.99 2005-07-28T17:37:28Z 2020-02-15T06:59:48Z +1677 61 1 8651 3.99 2005-07-29T15:02:18Z 2020-02-15T06:59:48Z +1678 61 2 9597 6.99 2005-07-31T03:29:07Z 2020-02-15T06:59:48Z +1679 61 2 10549 0.99 2005-08-01T12:46:39Z 2020-02-15T06:59:48Z +1680 61 2 11379 2.99 2005-08-02T18:16:55Z 2020-02-15T06:59:48Z +1681 61 1 12072 9.99 2005-08-17T21:50:25Z 2020-02-15T06:59:48Z +1682 61 1 13450 0.99 2005-08-20T00:18:15Z 2020-02-15T06:59:48Z +1683 61 1 13830 0.99 2005-08-20T13:57:59Z 2020-02-15T06:59:48Z +1684 61 2 15089 6.99 2005-08-22T11:34:06Z 2020-02-15T06:59:48Z +1685 61 1 15681 1.99 2005-08-23T09:35:34Z 2020-02-15T06:59:48Z +1686 62 2 885 0.99 2005-05-30T06:54:28Z 2020-02-15T06:59:48Z +1687 62 1 947 4.99 2005-05-30T15:36:57Z 2020-02-15T06:59:48Z +1688 62 2 1241 6.99 2005-06-15T04:59:43Z 2020-02-15T06:59:48Z +1689 62 1 1486 0.99 2005-06-15T21:25:30Z 2020-02-15T06:59:48Z +1690 62 1 1587 0.99 2005-06-16T04:52:28Z 2020-02-15T06:59:48Z +1691 62 2 3021 4.99 2005-06-20T11:13:01Z 2020-02-15T06:59:48Z +1692 62 1 3035 5.99 2005-06-20T12:17:03Z 2020-02-15T06:59:48Z +1693 62 1 3287 0.99 2005-06-21T06:32:39Z 2020-02-15T06:59:48Z +1694 62 1 3327 3.99 2005-06-21T09:04:50Z 2020-02-15T06:59:48Z +1695 62 2 3843 2.99 2005-07-06T16:35:40Z 2020-02-15T06:59:48Z +1696 62 2 4159 4.99 2005-07-07T09:10:57Z 2020-02-15T06:59:48Z +1697 62 2 5292 2.99 2005-07-09T15:16:54Z 2020-02-15T06:59:48Z +1698 62 2 8360 4.99 2005-07-29T05:08:00Z 2020-02-15T06:59:48Z +1699 62 2 10080 0.99 2005-07-31T20:07:10Z 2020-02-15T06:59:48Z +1700 62 1 10815 2.99 2005-08-01T22:46:21Z 2020-02-15T06:59:48Z +1701 62 1 11297 5.99 2005-08-02T15:22:47Z 2020-02-15T06:59:48Z +1702 62 1 11988 0.99 2005-08-17T18:23:50Z 2020-02-15T06:59:48Z +1703 62 2 13512 8.99 2005-08-20T02:27:13Z 2020-02-15T06:59:48Z +1704 62 2 14574 1.99 2005-08-21T16:50:34Z 2020-02-15T06:59:48Z +1705 62 2 14594 2.99 2005-08-21T17:34:24Z 2020-02-15T06:59:48Z +1706 62 2 14821 4.99 2005-08-22T01:20:19Z 2020-02-15T06:59:48Z +1707 62 1 15464 6.99 2005-08-23T01:15:18Z 2020-02-15T06:59:48Z +1708 62 1 15591 0.99 2005-08-23T06:11:52Z 2020-02-15T06:59:48Z +1709 63 2 1818 0.99 2005-06-16T21:30:34Z 2020-02-15T06:59:48Z +1710 63 2 3923 8.99 2005-07-06T20:34:10Z 2020-02-15T06:59:48Z +1711 63 1 4587 4.99 2005-07-08T06:16:26Z 2020-02-15T06:59:48Z +1712 63 1 5585 6.99 2005-07-10T04:15:43Z 2020-02-15T06:59:48Z +1713 63 2 5788 4.99 2005-07-10T14:10:22Z 2020-02-15T06:59:48Z +1714 63 2 5832 4.99 2005-07-10T16:34:48Z 2020-02-15T06:59:48Z +1715 63 2 6769 3.99 2005-07-12T15:48:54Z 2020-02-15T06:59:48Z +1716 63 2 6847 8.99 2005-07-12T19:22:37Z 2020-02-15T06:59:48Z +1717 63 2 8311 5.99 2005-07-29T03:26:07Z 2020-02-15T06:59:48Z +1718 63 2 9007 0.99 2005-07-30T05:09:32Z 2020-02-15T06:59:48Z +1719 63 1 9546 4.99 2005-07-31T01:47:40Z 2020-02-15T06:59:48Z +1720 63 2 9549 3.99 2005-07-31T01:57:04Z 2020-02-15T06:59:48Z +1721 63 1 9795 0.99 2005-07-31T10:47:19Z 2020-02-15T06:59:48Z +1722 63 2 9938 2.99 2005-07-31T15:28:47Z 2020-02-15T06:59:48Z +1723 63 2 10148 0.99 2005-07-31T22:19:16Z 2020-02-15T06:59:48Z +1724 63 1 10288 6.99 2005-08-01T03:38:42Z 2020-02-15T06:59:48Z +1725 63 1 11902 4.99 2005-08-17T15:37:34Z 2020-02-15T06:59:48Z +1726 63 2 12342 2.99 2005-08-18T07:12:46Z 2020-02-15T06:59:48Z +1727 63 2 12515 0.99 2005-08-18T13:39:26Z 2020-02-15T06:59:48Z +1728 63 1 12954 7.99 2005-08-19T06:04:34Z 2020-02-15T06:59:48Z +1729 63 1 13089 0.99 2005-08-19T10:38:56Z 2020-02-15T06:59:48Z +1730 63 1 13624 8.99 2005-08-20T06:51:02Z 2020-02-15T06:59:48Z +1731 63 1 14931 3.99 2005-08-22T05:38:55Z 2020-02-15T06:59:48Z +1732 63 1 15060 5.99 2005-08-22T10:24:32Z 2020-02-15T06:59:48Z +1733 63 1 15229 2.99 2005-08-22T17:30:25Z 2020-02-15T06:59:48Z +1734 64 1 494 4.99 2005-05-28T00:39:31Z 2020-02-15T06:59:48Z +1735 64 1 587 0.99 2005-05-28T12:05:33Z 2020-02-15T06:59:48Z +1736 64 1 1001 2.99 2005-05-31T00:46:31Z 2020-02-15T06:59:48Z +1737 64 2 1335 0.99 2005-06-15T11:51:30Z 2020-02-15T06:59:48Z +1738 64 1 2060 2.99 2005-06-17T15:42:42Z 2020-02-15T06:59:48Z +1739 64 2 3982 0.99 2005-07-06T23:14:16Z 2020-02-15T06:59:48Z +1740 64 1 4288 4.99 2005-07-07T15:38:25Z 2020-02-15T06:59:48Z +1741 64 1 4690 1.99 2005-07-08T11:04:02Z 2020-02-15T06:59:48Z +1742 64 2 4819 5.99 2005-07-08T17:19:15Z 2020-02-15T06:59:48Z +1743 64 2 4971 5.99 2005-07-08T23:54:49Z 2020-02-15T06:59:48Z +1744 64 1 5114 3.99 2005-07-09T07:07:05Z 2020-02-15T06:59:48Z +1745 64 2 5279 2.99 2005-07-09T14:46:36Z 2020-02-15T06:59:48Z +1746 64 1 5432 0.99 2005-07-09T21:21:25Z 2020-02-15T06:59:48Z +1747 64 2 6372 2.99 2005-07-11T21:35:06Z 2020-02-15T06:59:48Z +1748 64 2 6457 0.99 2005-07-12T01:06:35Z 2020-02-15T06:59:48Z +1749 64 2 6698 1.99 2005-07-12T12:45:00Z 2020-02-15T06:59:48Z +1750 64 2 6744 0.99 2005-07-12T14:30:28Z 2020-02-15T06:59:48Z +1751 64 2 7045 0.99 2005-07-27T03:27:35Z 2020-02-15T06:59:48Z +1752 64 1 7082 2.99 2005-07-27T04:27:32Z 2020-02-15T06:59:48Z +1753 64 1 7476 1.99 2005-07-27T19:08:56Z 2020-02-15T06:59:48Z +1754 64 2 8602 4.99 2005-07-29T13:04:27Z 2020-02-15T06:59:48Z +1755 64 1 9832 2.99 2005-07-31T12:01:49Z 2020-02-15T06:59:48Z +1756 64 1 9880 6.99 2005-07-31T13:49:02Z 2020-02-15T06:59:48Z +1757 64 1 9924 3.99 2005-07-31T15:04:57Z 2020-02-15T06:59:48Z +1758 64 2 10185 0.99 2005-08-01T00:12:11Z 2020-02-15T06:59:48Z +1759 64 2 10714 4.99 2005-08-01T18:51:29Z 2020-02-15T06:59:48Z +1760 64 1 10889 4.99 2005-08-02T00:54:33Z 2020-02-15T06:59:48Z +1761 64 1 12409 0.99 2005-08-18T09:43:58Z 2020-02-15T06:59:48Z +1762 64 1 13773 2.99 2005-08-20T11:50:14Z 2020-02-15T06:59:48Z +1763 64 1 13971 0.99 2005-08-20T18:44:53Z 2020-02-15T06:59:48Z +1764 64 1 14167 5.99 2005-08-21T02:59:48Z 2020-02-15T06:59:48Z +1765 64 2 14316 0.99 2005-08-21T07:59:47Z 2020-02-15T06:59:48Z +1766 64 2 13333 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1767 65 1 295 4.99 2005-05-26T20:33:20Z 2020-02-15T06:59:48Z +1768 65 2 657 0.99 2005-05-28T20:23:09Z 2020-02-15T06:59:48Z +1769 65 1 2173 7.99 2005-06-18T00:08:20Z 2020-02-15T06:59:48Z +1770 65 1 3051 4.99 2005-06-20T13:06:52Z 2020-02-15T06:59:48Z +1771 65 1 3535 4.99 2005-07-06T01:32:46Z 2020-02-15T06:59:48Z +1772 65 1 4240 4.99 2005-07-07T13:33:12Z 2020-02-15T06:59:48Z +1773 65 2 4635 3.99 2005-07-08T08:42:40Z 2020-02-15T06:59:48Z +1774 65 1 5735 3.99 2005-07-10T11:39:15Z 2020-02-15T06:59:48Z +1775 65 2 6527 0.99 2005-07-12T04:23:06Z 2020-02-15T06:59:48Z +1776 65 1 7877 6.99 2005-07-28T10:25:36Z 2020-02-15T06:59:48Z +1777 65 2 8392 1.99 2005-07-29T06:00:27Z 2020-02-15T06:59:48Z +1778 65 2 8404 5.99 2005-07-29T06:27:01Z 2020-02-15T06:59:48Z +1779 65 1 9293 3.99 2005-07-30T16:12:28Z 2020-02-15T06:59:48Z +1780 65 2 11100 5.99 2005-08-02T08:08:00Z 2020-02-15T06:59:48Z +1781 65 1 11227 8.99 2005-08-02T12:48:05Z 2020-02-15T06:59:48Z +1782 65 2 11461 4.99 2005-08-02T21:35:00Z 2020-02-15T06:59:48Z +1783 65 2 11845 2.99 2005-08-17T13:16:38Z 2020-02-15T06:59:48Z +1784 65 1 12114 7.99 2005-08-17T23:02:00Z 2020-02-15T06:59:48Z +1785 65 1 12688 6.99 2005-08-18T19:59:54Z 2020-02-15T06:59:48Z +1786 65 2 13692 0.99 2005-08-20T09:07:52Z 2020-02-15T06:59:48Z +1787 65 2 14140 6.99 2005-08-21T02:04:57Z 2020-02-15T06:59:48Z +1788 65 1 14356 0.99 2005-08-21T09:08:51Z 2020-02-15T06:59:48Z +1789 66 2 933 4.99 2005-05-30T13:08:45Z 2020-02-15T06:59:48Z +1790 66 1 1236 2.99 2005-06-15T04:34:27Z 2020-02-15T06:59:48Z +1791 66 1 1907 2.99 2005-06-17T05:08:27Z 2020-02-15T06:59:48Z +1792 66 1 2106 4.99 2005-06-17T19:29:03Z 2020-02-15T06:59:48Z +1793 66 2 2571 2.99 2005-06-19T04:20:14Z 2020-02-15T06:59:48Z +1794 66 1 2577 4.99 2005-06-19T04:36:03Z 2020-02-15T06:59:48Z +1795 66 1 3334 3.99 2005-06-21T10:04:33Z 2020-02-15T06:59:48Z +1796 66 2 3395 6.99 2005-06-21T15:19:19Z 2020-02-15T06:59:48Z +1797 66 1 3573 4.99 2005-07-06T03:33:48Z 2020-02-15T06:59:48Z +1798 66 2 3757 2.99 2005-07-06T12:42:26Z 2020-02-15T06:59:48Z +1799 66 2 4088 2.99 2005-07-07T05:31:55Z 2020-02-15T06:59:48Z +1800 66 1 4108 4.99 2005-07-07T06:38:31Z 2020-02-15T06:59:48Z +1801 66 2 4165 6.99 2005-07-07T09:23:27Z 2020-02-15T06:59:48Z +1802 66 2 4911 5.99 2005-07-08T21:20:26Z 2020-02-15T06:59:48Z +1803 66 2 5915 0.99 2005-07-10T21:12:16Z 2020-02-15T06:59:48Z +1804 66 1 6290 8.99 2005-07-11T17:12:42Z 2020-02-15T06:59:48Z +1805 66 2 6348 5.99 2005-07-11T20:21:18Z 2020-02-15T06:59:48Z +1806 66 1 6402 3.99 2005-07-11T22:46:10Z 2020-02-15T06:59:48Z +1807 66 1 6995 2.99 2005-07-27T01:12:13Z 2020-02-15T06:59:48Z +1808 66 1 7872 2.99 2005-07-28T10:18:16Z 2020-02-15T06:59:48Z +1809 66 1 9091 5.99 2005-07-30T08:30:45Z 2020-02-15T06:59:48Z +1810 66 1 10419 0.99 2005-08-01T08:13:22Z 2020-02-15T06:59:48Z +1811 66 2 11028 5.99 2005-08-02T05:48:20Z 2020-02-15T06:59:48Z +1812 66 2 11360 2.99 2005-08-02T17:46:04Z 2020-02-15T06:59:48Z +1813 66 1 11683 5.99 2005-08-17T06:15:17Z 2020-02-15T06:59:48Z +1814 66 1 11935 0.99 2005-08-17T16:42:13Z 2020-02-15T06:59:48Z +1815 66 1 12699 0.99 2005-08-18T20:20:59Z 2020-02-15T06:59:48Z +1816 66 1 13900 2.99 2005-08-20T16:05:41Z 2020-02-15T06:59:48Z +1817 66 2 14123 2.99 2005-08-21T01:31:25Z 2020-02-15T06:59:48Z +1818 66 1 14217 6.99 2005-08-21T04:37:56Z 2020-02-15T06:59:48Z +1819 66 2 14351 2.99 2005-08-21T09:04:20Z 2020-02-15T06:59:48Z +1820 66 2 14429 0.99 2005-08-21T11:29:43Z 2020-02-15T06:59:48Z +1821 66 2 15026 4.99 2005-08-22T09:01:52Z 2020-02-15T06:59:48Z +1822 66 1 15598 8.99 2005-08-23T06:23:26Z 2020-02-15T06:59:48Z +1823 67 2 331 9.99 2005-05-27T02:22:26Z 2020-02-15T06:59:48Z +1824 67 1 767 2.99 2005-05-29T12:20:19Z 2020-02-15T06:59:48Z +1825 67 1 2064 3.99 2005-06-17T15:57:56Z 2020-02-15T06:59:48Z +1826 67 1 2542 3.99 2005-06-19T02:08:39Z 2020-02-15T06:59:48Z +1827 67 2 2810 0.99 2005-06-19T19:44:12Z 2020-02-15T06:59:48Z +1828 67 1 3359 4.99 2005-06-21T12:08:18Z 2020-02-15T06:59:48Z +1829 67 2 4090 4.99 2005-07-07T05:47:33Z 2020-02-15T06:59:48Z +1830 67 2 5399 2.99 2005-07-09T19:52:44Z 2020-02-15T06:59:48Z +1831 67 2 5510 2.99 2005-07-10T00:58:37Z 2020-02-15T06:59:48Z +1832 67 1 6137 2.99 2005-07-11T08:34:20Z 2020-02-15T06:59:48Z +1833 67 2 7277 5.99 2005-07-27T11:48:37Z 2020-02-15T06:59:48Z +1834 67 2 7895 0.99 2005-07-28T10:57:15Z 2020-02-15T06:59:48Z +1835 67 2 8563 1.99 2005-07-29T11:32:58Z 2020-02-15T06:59:48Z +1836 67 1 9640 7.99 2005-07-31T05:33:25Z 2020-02-15T06:59:48Z +1837 67 1 11295 8.99 2005-08-02T15:10:06Z 2020-02-15T06:59:48Z +1838 67 1 11894 8.99 2005-08-17T15:15:01Z 2020-02-15T06:59:48Z +1839 67 2 13437 4.99 2005-08-19T23:37:52Z 2020-02-15T06:59:48Z +1840 67 1 13652 2.99 2005-08-20T07:52:34Z 2020-02-15T06:59:48Z +1841 67 2 13791 4.99 2005-08-20T12:21:05Z 2020-02-15T06:59:48Z +1842 67 2 13837 2.99 2005-08-20T14:19:03Z 2020-02-15T06:59:48Z +1843 67 2 14967 4.99 2005-08-22T06:46:03Z 2020-02-15T06:59:48Z +1844 67 2 15085 2.99 2005-08-22T11:19:22Z 2020-02-15T06:59:48Z +1845 68 2 1828 5.99 2005-06-16T22:04:34Z 2020-02-15T06:59:48Z +1846 68 2 1957 8.99 2005-06-17T08:50:58Z 2020-02-15T06:59:48Z +1847 68 2 2633 2.99 2005-06-19T08:53:10Z 2020-02-15T06:59:48Z +1848 68 2 2662 4.99 2005-06-19T10:53:42Z 2020-02-15T06:59:48Z +1849 68 1 2686 2.99 2005-06-19T12:44:20Z 2020-02-15T06:59:48Z +1850 68 1 3598 0.99 2005-07-06T05:11:04Z 2020-02-15T06:59:48Z +1851 68 2 3801 4.99 2005-07-06T15:05:50Z 2020-02-15T06:59:48Z +1852 68 1 3864 0.99 2005-07-06T17:41:42Z 2020-02-15T06:59:48Z +1853 68 2 4555 6.99 2005-07-08T04:48:36Z 2020-02-15T06:59:48Z +1854 68 1 4925 3.99 2005-07-08T21:56:00Z 2020-02-15T06:59:48Z +1855 68 1 6512 4.99 2005-07-12T03:42:49Z 2020-02-15T06:59:48Z +1856 68 2 9339 3.99 2005-07-30T18:03:28Z 2020-02-15T06:59:48Z +1857 68 1 9538 3.99 2005-07-31T01:25:22Z 2020-02-15T06:59:48Z +1858 68 2 9642 4.99 2005-07-31T05:33:57Z 2020-02-15T06:59:48Z +1859 68 1 10115 7.99 2005-07-31T21:13:47Z 2020-02-15T06:59:48Z +1860 68 1 11277 2.99 2005-08-02T14:28:50Z 2020-02-15T06:59:48Z +1861 68 2 12742 2.99 2005-08-18T22:22:03Z 2020-02-15T06:59:48Z +1862 68 2 13475 4.99 2005-08-20T01:05:05Z 2020-02-15T06:59:48Z +1863 68 2 14242 0.99 2005-08-21T05:25:59Z 2020-02-15T06:59:48Z +1864 68 2 14455 5.99 2005-08-21T12:36:11Z 2020-02-15T06:59:48Z +1865 68 1 14947 1.99 2005-08-22T06:07:52Z 2020-02-15T06:59:48Z +1866 68 1 15524 4.99 2005-08-23T03:36:26Z 2020-02-15T06:59:48Z +1867 69 2 584 4.99 2005-05-28T11:49:00Z 2020-02-15T06:59:48Z +1868 69 2 765 1.99 2005-05-29T11:38:34Z 2020-02-15T06:59:48Z +1869 69 1 1549 2.99 2005-06-16T01:57:15Z 2020-02-15T06:59:48Z +1870 69 1 3358 4.99 2005-06-21T11:56:40Z 2020-02-15T06:59:48Z +1871 69 1 3883 8.99 2005-07-06T18:39:38Z 2020-02-15T06:59:48Z +1872 69 1 4265 0.99 2005-07-07T14:27:51Z 2020-02-15T06:59:48Z +1873 69 1 4427 0.99 2005-07-07T22:28:51Z 2020-02-15T06:59:48Z +1874 69 2 5569 3.99 2005-07-10T03:38:32Z 2020-02-15T06:59:48Z +1875 69 2 6297 4.99 2005-07-11T17:37:22Z 2020-02-15T06:59:48Z +1876 69 1 6385 6.99 2005-07-11T22:07:32Z 2020-02-15T06:59:48Z +1877 69 2 6785 6.99 2005-07-12T16:30:57Z 2020-02-15T06:59:48Z +1878 69 2 8649 6.99 2005-07-29T14:57:33Z 2020-02-15T06:59:48Z +1879 69 2 9193 2.99 2005-07-30T12:28:42Z 2020-02-15T06:59:48Z +1880 69 1 9612 2.99 2005-07-31T03:58:31Z 2020-02-15T06:59:48Z +1881 69 2 10074 0.99 2005-07-31T19:57:16Z 2020-02-15T06:59:48Z +1882 69 1 11943 3.99 2005-08-17T17:00:42Z 2020-02-15T06:59:48Z +1883 69 1 12012 2.99 2005-08-17T19:20:48Z 2020-02-15T06:59:48Z +1884 69 1 12121 2.99 2005-08-17T23:20:40Z 2020-02-15T06:59:48Z +1885 69 1 12966 5.99 2005-08-19T06:37:48Z 2020-02-15T06:59:48Z +1886 69 1 13023 5.99 2005-08-19T08:13:54Z 2020-02-15T06:59:48Z +1887 69 2 14311 3.99 2005-08-21T07:45:47Z 2020-02-15T06:59:48Z +1888 69 2 14685 0.99 2005-08-21T20:31:25Z 2020-02-15T06:59:48Z +1889 69 2 14767 2.99 2005-08-21T23:43:00Z 2020-02-15T06:59:48Z +1890 69 1 15547 2.99 2005-08-23T04:25:50Z 2020-02-15T06:59:48Z +1891 69 2 11995 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1892 70 2 1044 4.99 2005-05-31T06:24:44Z 2020-02-15T06:59:48Z +1893 70 1 2472 4.99 2005-06-18T20:32:40Z 2020-02-15T06:59:48Z +1894 70 1 4061 0.99 2005-07-07T04:13:35Z 2020-02-15T06:59:48Z +1895 70 1 5927 5.99 2005-07-10T21:57:14Z 2020-02-15T06:59:48Z +1896 70 2 7036 4.99 2005-07-27T03:06:12Z 2020-02-15T06:59:48Z +1897 70 2 7421 7.99 2005-07-27T17:10:05Z 2020-02-15T06:59:48Z +1898 70 1 7714 2.99 2005-07-28T04:32:30Z 2020-02-15T06:59:48Z +1899 70 2 8550 0.99 2005-07-29T11:12:37Z 2020-02-15T06:59:48Z +1900 70 1 8747 2.99 2005-07-29T19:07:57Z 2020-02-15T06:59:48Z +1901 70 1 11274 9.99 2005-08-02T14:24:08Z 2020-02-15T06:59:48Z +1902 70 1 11901 2.99 2005-08-17T15:35:47Z 2020-02-15T06:59:48Z +1903 70 1 12003 4.99 2005-08-17T18:56:05Z 2020-02-15T06:59:48Z +1904 70 2 12218 4.99 2005-08-18T02:48:14Z 2020-02-15T06:59:48Z +1905 70 1 12581 6.99 2005-08-18T15:49:15Z 2020-02-15T06:59:48Z +1906 70 1 12951 3.99 2005-08-19T05:56:44Z 2020-02-15T06:59:48Z +1907 70 2 13680 4.99 2005-08-20T08:44:06Z 2020-02-15T06:59:48Z +1908 70 2 15238 0.99 2005-08-22T17:46:12Z 2020-02-15T06:59:48Z +1909 70 1 15616 3.99 2005-08-23T07:06:38Z 2020-02-15T06:59:48Z +1910 71 1 199 2.99 2005-05-26T07:11:58Z 2020-02-15T06:59:48Z +1911 71 1 272 9.99 2005-05-26T16:27:11Z 2020-02-15T06:59:48Z +1912 71 2 1873 2.99 2005-06-17T02:38:28Z 2020-02-15T06:59:48Z +1913 71 1 2374 4.99 2005-06-18T14:44:06Z 2020-02-15T06:59:48Z +1914 71 2 3345 5.99 2005-06-21T11:05:07Z 2020-02-15T06:59:48Z +1915 71 2 4614 4.99 2005-07-08T07:45:17Z 2020-02-15T06:59:48Z +1916 71 2 5281 1.99 2005-07-09T14:55:07Z 2020-02-15T06:59:48Z +1917 71 2 5358 3.99 2005-07-09T18:09:21Z 2020-02-15T06:59:48Z +1918 71 1 5543 8.99 2005-07-10T02:48:03Z 2020-02-15T06:59:48Z +1919 71 1 5770 4.99 2005-07-10T13:21:28Z 2020-02-15T06:59:48Z +1920 71 2 5814 4.99 2005-07-10T15:46:50Z 2020-02-15T06:59:48Z +1921 71 2 6020 0.99 2005-07-11T02:08:55Z 2020-02-15T06:59:48Z +1922 71 1 6739 5.99 2005-07-12T14:22:08Z 2020-02-15T06:59:48Z +1923 71 2 7160 0.99 2005-07-27T07:26:06Z 2020-02-15T06:59:48Z +1924 71 1 7550 4.99 2005-07-27T21:55:07Z 2020-02-15T06:59:48Z +1925 71 2 7982 4.99 2005-07-28T14:19:59Z 2020-02-15T06:59:48Z +1926 71 2 8128 2.99 2005-07-28T19:46:06Z 2020-02-15T06:59:48Z +1927 71 1 8293 2.99 2005-07-29T02:30:50Z 2020-02-15T06:59:48Z +1928 71 1 8574 1.99 2005-07-29T11:51:53Z 2020-02-15T06:59:48Z +1929 71 1 8668 4.99 2005-07-29T15:41:31Z 2020-02-15T06:59:48Z +1930 71 1 8783 3.99 2005-07-29T20:31:28Z 2020-02-15T06:59:48Z +1931 71 1 8789 4.99 2005-07-29T20:47:27Z 2020-02-15T06:59:48Z +1932 71 1 8956 0.99 2005-07-30T03:32:29Z 2020-02-15T06:59:48Z +1933 71 1 12417 4.99 2005-08-18T09:57:00Z 2020-02-15T06:59:48Z +1934 71 1 14105 7.99 2005-08-21T00:44:34Z 2020-02-15T06:59:48Z +1935 71 1 14228 3.99 2005-08-21T04:57:08Z 2020-02-15T06:59:48Z +1936 71 2 14781 4.99 2005-08-22T00:15:12Z 2020-02-15T06:59:48Z +1937 71 2 14904 3.99 2005-08-22T04:32:01Z 2020-02-15T06:59:48Z +1938 71 1 15704 4.99 2005-08-23T10:25:45Z 2020-02-15T06:59:48Z +1939 71 1 16000 0.99 2005-08-23T20:44:36Z 2020-02-15T06:59:48Z +1940 72 2 785 4.99 2005-05-29T15:08:41Z 2020-02-15T06:59:48Z +1941 72 2 845 4.99 2005-05-30T01:17:25Z 2020-02-15T06:59:48Z +1942 72 2 1047 0.99 2005-05-31T06:45:57Z 2020-02-15T06:59:48Z +1943 72 2 2294 4.99 2005-06-18T07:46:34Z 2020-02-15T06:59:48Z +1944 72 1 3700 0.99 2005-07-06T10:12:19Z 2020-02-15T06:59:48Z +1945 72 2 5223 4.99 2005-07-09T12:06:03Z 2020-02-15T06:59:48Z +1946 72 1 5302 4.99 2005-07-09T15:42:36Z 2020-02-15T06:59:48Z +1947 72 1 5424 0.99 2005-07-09T20:59:09Z 2020-02-15T06:59:48Z +1948 72 1 5840 4.99 2005-07-10T17:09:09Z 2020-02-15T06:59:48Z +1949 72 2 6081 0.99 2005-07-11T05:11:09Z 2020-02-15T06:59:48Z +1950 72 2 8228 4.99 2005-07-29T00:08:58Z 2020-02-15T06:59:48Z +1951 72 1 9027 2.99 2005-07-30T05:58:27Z 2020-02-15T06:59:48Z +1952 72 2 9420 5.99 2005-07-30T21:05:18Z 2020-02-15T06:59:48Z +1953 72 2 9648 4.99 2005-07-31T05:46:03Z 2020-02-15T06:59:48Z +1954 72 2 10267 0.99 2005-08-01T03:07:26Z 2020-02-15T06:59:48Z +1955 72 2 11206 6.99 2005-08-02T11:58:03Z 2020-02-15T06:59:48Z +1956 72 2 11422 5.99 2005-08-02T19:52:08Z 2020-02-15T06:59:48Z +1957 72 1 11630 2.99 2005-08-17T04:27:46Z 2020-02-15T06:59:48Z +1958 72 1 11679 4.99 2005-08-17T06:08:54Z 2020-02-15T06:59:48Z +1959 72 1 11923 2.99 2005-08-17T16:21:47Z 2020-02-15T06:59:48Z +1960 72 2 12020 2.99 2005-08-17T19:50:33Z 2020-02-15T06:59:48Z +1961 72 1 12448 0.99 2005-08-18T10:59:04Z 2020-02-15T06:59:48Z +1962 72 2 12593 0.99 2005-08-18T16:17:54Z 2020-02-15T06:59:48Z +1963 72 1 13145 0.99 2005-08-19T12:53:53Z 2020-02-15T06:59:48Z +1964 72 2 13327 4.99 2005-08-19T19:55:45Z 2020-02-15T06:59:48Z +1965 72 2 13597 0.99 2005-08-20T05:59:05Z 2020-02-15T06:59:48Z +1966 72 2 13660 4.99 2005-08-20T08:05:56Z 2020-02-15T06:59:48Z +1967 72 1 14020 0.99 2005-08-20T20:59:43Z 2020-02-15T06:59:48Z +1968 72 2 15110 0.99 2005-08-22T12:16:46Z 2020-02-15T06:59:48Z +1969 72 2 15146 2.99 2005-08-22T13:57:55Z 2020-02-15T06:59:48Z +1970 73 1 70 2.99 2005-05-25T10:15:23Z 2020-02-15T06:59:48Z +1971 73 2 1133 4.99 2005-05-31T19:12:21Z 2020-02-15T06:59:48Z +1972 73 1 1669 0.99 2005-06-16T10:20:20Z 2020-02-15T06:59:48Z +1973 73 2 2940 4.99 2005-06-20T05:20:01Z 2020-02-15T06:59:48Z +1974 73 2 4327 2.99 2005-07-07T18:01:39Z 2020-02-15T06:59:48Z +1975 73 1 4789 4.99 2005-07-08T16:22:01Z 2020-02-15T06:59:48Z +1976 73 2 5021 4.99 2005-07-09T02:09:41Z 2020-02-15T06:59:48Z +1977 73 1 6514 9.99 2005-07-12T03:47:44Z 2020-02-15T06:59:48Z +1978 73 1 6645 2.99 2005-07-12T10:39:55Z 2020-02-15T06:59:48Z +1979 73 1 7590 4.99 2005-07-27T23:24:24Z 2020-02-15T06:59:48Z +1980 73 1 7683 4.99 2005-07-28T03:11:29Z 2020-02-15T06:59:48Z +1981 73 1 8377 4.99 2005-07-29T05:27:40Z 2020-02-15T06:59:48Z +1982 73 1 9212 2.99 2005-07-30T13:03:13Z 2020-02-15T06:59:48Z +1983 73 1 9776 2.99 2005-07-31T10:01:03Z 2020-02-15T06:59:48Z +1984 73 2 10434 4.99 2005-08-01T08:47:00Z 2020-02-15T06:59:48Z +1985 73 1 11102 4.99 2005-08-02T08:08:30Z 2020-02-15T06:59:48Z +1986 73 2 11155 0.99 2005-08-02T09:55:28Z 2020-02-15T06:59:48Z +1987 73 2 11349 4.99 2005-08-02T17:21:49Z 2020-02-15T06:59:48Z +1988 73 2 11609 3.99 2005-08-17T03:41:11Z 2020-02-15T06:59:48Z +1989 73 2 12291 4.99 2005-08-18T05:08:37Z 2020-02-15T06:59:48Z +1990 73 1 13886 4.99 2005-08-20T15:34:43Z 2020-02-15T06:59:48Z +1991 73 1 15667 0.99 2005-08-23T09:02:03Z 2020-02-15T06:59:48Z +1992 73 2 16002 2.99 2005-08-23T20:47:12Z 2020-02-15T06:59:48Z +1993 73 2 13108 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +1994 74 2 1121 6.99 2005-05-31T16:37:36Z 2020-02-15T06:59:48Z +1995 74 1 2498 1.99 2005-06-18T22:56:26Z 2020-02-15T06:59:48Z +1996 74 2 2517 0.99 2005-06-19T00:11:26Z 2020-02-15T06:59:48Z +1997 74 1 3020 1.99 2005-06-20T11:12:04Z 2020-02-15T06:59:48Z +1998 74 2 3445 7.99 2005-06-21T20:40:28Z 2020-02-15T06:59:48Z +1999 74 2 3819 3.99 2005-07-06T15:35:06Z 2020-02-15T06:59:48Z +2000 74 1 5530 2.99 2005-07-10T02:13:49Z 2020-02-15T06:59:48Z +2001 74 2 5603 2.99 2005-07-10T05:04:54Z 2020-02-15T06:59:48Z +2002 74 2 5917 4.99 2005-07-10T21:30:22Z 2020-02-15T06:59:48Z +2003 74 1 6241 7.99 2005-07-11T14:40:48Z 2020-02-15T06:59:48Z +2004 74 1 6475 2.99 2005-07-12T01:36:57Z 2020-02-15T06:59:48Z +2005 74 1 7304 6.99 2005-07-27T12:56:56Z 2020-02-15T06:59:48Z +2006 74 2 8796 5.99 2005-07-29T21:09:11Z 2020-02-15T06:59:48Z +2007 74 2 9112 4.99 2005-07-30T09:06:31Z 2020-02-15T06:59:48Z +2008 74 2 10051 3.99 2005-07-31T19:14:20Z 2020-02-15T06:59:48Z +2009 74 1 10624 0.99 2005-08-01T15:27:05Z 2020-02-15T06:59:48Z +2010 74 2 12374 3.99 2005-08-18T08:07:45Z 2020-02-15T06:59:48Z +2011 74 2 12477 3.99 2005-08-18T12:25:01Z 2020-02-15T06:59:48Z +2012 74 2 13335 0.99 2005-08-19T20:03:18Z 2020-02-15T06:59:48Z +2013 74 2 13520 0.99 2005-08-20T02:41:46Z 2020-02-15T06:59:48Z +2014 74 1 13583 1.99 2005-08-20T05:29:45Z 2020-02-15T06:59:48Z +2015 74 2 13747 5.99 2005-08-20T10:56:06Z 2020-02-15T06:59:48Z +2016 74 1 15286 4.99 2005-08-22T19:17:56Z 2020-02-15T06:59:48Z +2017 74 2 15325 4.99 2005-08-22T20:27:38Z 2020-02-15T06:59:48Z +2018 74 2 15500 0.99 2005-08-23T02:39:37Z 2020-02-15T06:59:48Z +2019 74 2 15739 4.99 2005-08-23T11:56:22Z 2020-02-15T06:59:48Z +2020 74 1 16046 0.99 2005-08-23T22:26:47Z 2020-02-15T06:59:48Z +2021 75 1 180 4.99 2005-05-26T04:46:23Z 2020-02-15T06:59:48Z +2022 75 2 268 0.99 2005-05-26T16:19:08Z 2020-02-15T06:59:48Z +2023 75 1 1920 4.99 2005-06-17T06:00:23Z 2020-02-15T06:59:48Z +2024 75 1 2161 7.99 2005-06-17T23:39:50Z 2020-02-15T06:59:48Z +2025 75 2 2738 4.99 2005-06-19T15:56:30Z 2020-02-15T06:59:48Z +2026 75 2 3062 6.99 2005-06-20T13:50:00Z 2020-02-15T06:59:48Z +2027 75 1 3210 4.99 2005-06-21T01:00:25Z 2020-02-15T06:59:48Z +2028 75 1 3711 0.99 2005-07-06T10:46:15Z 2020-02-15T06:59:48Z +2029 75 2 4179 2.99 2005-07-07T10:17:15Z 2020-02-15T06:59:48Z +2030 75 2 4511 0.99 2005-07-08T02:36:21Z 2020-02-15T06:59:48Z +2031 75 1 4639 5.99 2005-07-08T08:57:21Z 2020-02-15T06:59:48Z +2032 75 2 5260 2.99 2005-07-09T14:05:45Z 2020-02-15T06:59:48Z +2033 75 2 6052 0.99 2005-07-11T03:51:27Z 2020-02-15T06:59:48Z +2034 75 1 6092 3.99 2005-07-11T05:51:31Z 2020-02-15T06:59:48Z +2035 75 1 6486 0.99 2005-07-12T02:09:36Z 2020-02-15T06:59:48Z +2036 75 2 6530 0.99 2005-07-12T04:33:19Z 2020-02-15T06:59:48Z +2037 75 2 6852 2.99 2005-07-12T19:33:49Z 2020-02-15T06:59:48Z +2038 75 1 7052 2.99 2005-07-27T03:36:38Z 2020-02-15T06:59:48Z +2039 75 1 7454 4.99 2005-07-27T18:27:26Z 2020-02-15T06:59:48Z +2040 75 1 7843 0.99 2005-07-28T09:10:22Z 2020-02-15T06:59:48Z +2041 75 2 7897 2.99 2005-07-28T11:01:51Z 2020-02-15T06:59:48Z +2042 75 2 8202 1.99 2005-07-28T23:11:45Z 2020-02-15T06:59:48Z +2043 75 1 8823 6.99 2005-07-29T22:22:12Z 2020-02-15T06:59:48Z +2044 75 2 9168 5.99 2005-07-30T11:31:17Z 2020-02-15T06:59:48Z +2045 75 2 9442 4.99 2005-07-30T21:44:31Z 2020-02-15T06:59:48Z +2046 75 2 9501 4.99 2005-07-30T23:59:21Z 2020-02-15T06:59:48Z +2047 75 1 9783 9.99 2005-07-31T10:15:46Z 2020-02-15T06:59:48Z +2048 75 2 10653 5.99 2005-08-01T16:28:07Z 2020-02-15T06:59:48Z +2049 75 1 10726 3.99 2005-08-01T19:14:53Z 2020-02-15T06:59:48Z +2050 75 1 10871 4.99 2005-08-02T00:27:24Z 2020-02-15T06:59:48Z +2051 75 1 11330 0.99 2005-08-02T16:45:33Z 2020-02-15T06:59:48Z +2052 75 1 12002 2.99 2005-08-17T18:56:02Z 2020-02-15T06:59:48Z +2053 75 2 12239 0.99 2005-08-18T03:26:42Z 2020-02-15T06:59:48Z +2054 75 1 12336 1.99 2005-08-18T06:59:41Z 2020-02-15T06:59:48Z +2055 75 1 12412 5.99 2005-08-18T09:49:52Z 2020-02-15T06:59:48Z +2056 75 1 12426 4.99 2005-08-18T10:24:11Z 2020-02-15T06:59:48Z +2057 75 1 12662 0.99 2005-08-18T19:10:41Z 2020-02-15T06:59:48Z +2058 75 2 15928 5.99 2005-08-23T18:23:24Z 2020-02-15T06:59:48Z +2059 75 2 13534 8.97 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2060 75 1 14488 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2061 75 2 15191 0 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2062 76 2 574 1.99 2005-05-28T10:44:28Z 2020-02-15T06:59:48Z +2063 76 1 926 0.99 2005-05-30T12:15:54Z 2020-02-15T06:59:48Z +2064 76 2 1487 0.99 2005-06-15T21:27:42Z 2020-02-15T06:59:48Z +2065 76 1 1791 6.99 2005-06-16T20:04:28Z 2020-02-15T06:59:48Z +2066 76 2 2111 0.99 2005-06-17T19:47:21Z 2020-02-15T06:59:48Z +2067 76 2 2397 1.99 2005-06-18T15:51:25Z 2020-02-15T06:59:48Z +2068 76 1 2894 0.99 2005-06-20T02:22:42Z 2020-02-15T06:59:48Z +2069 76 2 3416 0.99 2005-06-21T17:05:29Z 2020-02-15T06:59:48Z +2070 76 2 4099 4.99 2005-07-07T06:20:33Z 2020-02-15T06:59:48Z +2071 76 2 5571 0.99 2005-07-10T03:48:20Z 2020-02-15T06:59:48Z +2072 76 2 6789 0.99 2005-07-12T16:34:40Z 2020-02-15T06:59:48Z +2073 76 2 8253 6.99 2005-07-29T00:57:06Z 2020-02-15T06:59:48Z +2074 76 2 8357 2.99 2005-07-29T04:59:44Z 2020-02-15T06:59:48Z +2075 76 2 8405 3.99 2005-07-29T06:28:19Z 2020-02-15T06:59:48Z +2076 76 1 8935 0.99 2005-07-30T02:38:45Z 2020-02-15T06:59:48Z +2077 76 2 9312 2.99 2005-07-30T16:59:17Z 2020-02-15T06:59:48Z +2078 76 2 10082 0.99 2005-07-31T20:09:32Z 2020-02-15T06:59:48Z +2079 76 2 10795 4.99 2005-08-01T21:56:37Z 2020-02-15T06:59:48Z +2080 76 2 11172 7.99 2005-08-02T10:27:52Z 2020-02-15T06:59:48Z +2081 76 2 13697 3.99 2005-08-20T09:21:08Z 2020-02-15T06:59:48Z +2082 76 1 14637 2.99 2005-08-21T19:01:00Z 2020-02-15T06:59:48Z +2083 76 2 15169 4.99 2005-08-22T15:21:56Z 2020-02-15T06:59:48Z +2084 76 1 15566 10.99 2005-08-23T05:17:23Z 2020-02-15T06:59:48Z +2085 77 2 319 2.99 2005-05-26T23:52:13Z 2020-02-15T06:59:48Z +2086 77 1 419 1.99 2005-05-27T15:15:11Z 2020-02-15T06:59:48Z +2087 77 2 561 2.99 2005-05-28T08:54:06Z 2020-02-15T06:59:48Z +2088 77 1 586 0.99 2005-05-28T12:03:00Z 2020-02-15T06:59:48Z +2089 77 1 760 5.99 2005-05-29T11:07:25Z 2020-02-15T06:59:48Z +2090 77 1 1710 4.99 2005-06-16T14:11:24Z 2020-02-15T06:59:48Z +2091 77 1 2354 3.99 2005-06-18T12:54:18Z 2020-02-15T06:59:48Z +2092 77 2 2452 8.99 2005-06-18T19:29:21Z 2020-02-15T06:59:48Z +2093 77 1 3151 2.99 2005-06-20T20:36:53Z 2020-02-15T06:59:48Z +2094 77 2 3238 0.99 2005-06-21T02:48:21Z 2020-02-15T06:59:48Z +2095 77 2 4928 0.99 2005-07-08T22:05:41Z 2020-02-15T06:59:48Z +2096 77 2 6168 0.99 2005-07-11T10:21:38Z 2020-02-15T06:59:48Z +2097 77 2 6390 2.99 2005-07-11T22:19:23Z 2020-02-15T06:59:48Z +2098 77 1 7406 3.99 2005-07-27T16:25:45Z 2020-02-15T06:59:48Z +2099 77 1 7710 0.99 2005-07-28T04:24:07Z 2020-02-15T06:59:48Z +2100 77 2 8942 4.99 2005-07-30T03:01:07Z 2020-02-15T06:59:48Z +2101 77 1 9811 0.99 2005-07-31T11:23:45Z 2020-02-15T06:59:48Z +2102 77 2 10184 4.99 2005-08-01T00:09:33Z 2020-02-15T06:59:48Z +2103 77 1 10886 2.99 2005-08-02T00:52:34Z 2020-02-15T06:59:48Z +2104 77 1 10895 0.99 2005-08-02T01:16:59Z 2020-02-15T06:59:48Z +2105 77 2 10991 0.99 2005-08-02T04:41:12Z 2020-02-15T06:59:48Z +2106 77 1 11469 2.99 2005-08-02T21:48:09Z 2020-02-15T06:59:48Z +2107 77 2 11767 7.99 2005-08-17T10:00:40Z 2020-02-15T06:59:48Z +2108 77 1 12065 6.99 2005-08-17T21:31:46Z 2020-02-15T06:59:48Z +2109 77 2 12328 1.99 2005-08-18T06:43:56Z 2020-02-15T06:59:48Z +2110 77 2 13752 9.99 2005-08-20T11:17:45Z 2020-02-15T06:59:48Z +2111 77 2 14530 4.99 2005-08-21T15:10:50Z 2020-02-15T06:59:48Z +2112 77 2 15359 2.99 2005-08-22T21:34:00Z 2020-02-15T06:59:48Z +2113 78 1 2207 2.99 2005-06-18T02:19:21Z 2020-02-15T06:59:48Z +2114 78 2 2949 6.99 2005-06-20T06:05:53Z 2020-02-15T06:59:48Z +2115 78 2 3248 7.99 2005-06-21T03:12:21Z 2020-02-15T06:59:48Z +2116 78 1 3593 4.99 2005-07-06T04:39:52Z 2020-02-15T06:59:48Z +2117 78 2 4227 5.99 2005-07-07T12:41:36Z 2020-02-15T06:59:48Z +2118 78 2 4627 2.99 2005-07-08T08:24:39Z 2020-02-15T06:59:48Z +2119 78 2 4778 0.99 2005-07-08T15:51:51Z 2020-02-15T06:59:48Z +2120 78 1 5078 1.99 2005-07-09T05:20:24Z 2020-02-15T06:59:48Z +2121 78 2 5604 0.99 2005-07-10T05:05:00Z 2020-02-15T06:59:48Z +2122 78 1 6005 0.99 2005-07-11T01:36:42Z 2020-02-15T06:59:48Z +2123 78 1 6344 4.99 2005-07-11T20:04:43Z 2020-02-15T06:59:48Z +2124 78 2 7200 1.99 2005-07-27T08:57:38Z 2020-02-15T06:59:48Z +2125 78 2 7747 4.99 2005-07-28T05:50:11Z 2020-02-15T06:59:48Z +2126 78 2 7926 3.99 2005-07-28T12:13:02Z 2020-02-15T06:59:48Z +2127 78 1 7957 6.99 2005-07-28T13:34:08Z 2020-02-15T06:59:48Z +2128 78 2 8920 4.99 2005-07-30T01:59:24Z 2020-02-15T06:59:48Z +2129 78 1 9068 5.99 2005-07-30T07:31:45Z 2020-02-15T06:59:48Z +2130 78 2 10350 3.99 2005-08-01T05:30:05Z 2020-02-15T06:59:48Z +2131 78 1 10590 2.99 2005-08-01T14:11:53Z 2020-02-15T06:59:48Z +2132 78 1 10831 7.99 2005-08-01T23:22:45Z 2020-02-15T06:59:48Z +2133 78 1 10942 10.99 2005-08-02T03:16:31Z 2020-02-15T06:59:48Z +2134 78 2 12474 8.99 2005-08-18T12:10:03Z 2020-02-15T06:59:48Z +2135 78 2 12653 4.99 2005-08-18T18:53:17Z 2020-02-15T06:59:48Z +2136 78 2 13124 5.99 2005-08-19T11:55:59Z 2020-02-15T06:59:48Z +2137 78 1 13432 0.99 2005-08-19T23:29:06Z 2020-02-15T06:59:48Z +2138 78 2 13792 5.99 2005-08-20T12:21:37Z 2020-02-15T06:59:48Z +2139 78 2 14620 2.99 2005-08-21T18:10:43Z 2020-02-15T06:59:48Z +2140 78 1 14716 0.99 2005-08-21T21:29:55Z 2020-02-15T06:59:48Z +2141 78 1 14810 2.99 2005-08-22T01:08:34Z 2020-02-15T06:59:48Z +2142 78 2 14862 7.99 2005-08-22T02:51:41Z 2020-02-15T06:59:48Z +2143 78 2 16039 2.99 2005-08-23T22:18:51Z 2020-02-15T06:59:48Z +2144 79 1 840 4.99 2005-05-30T00:28:41Z 2020-02-15T06:59:48Z +2145 79 1 859 2.99 2005-05-30T02:36:20Z 2020-02-15T06:59:48Z +2146 79 1 928 2.99 2005-05-30T12:27:14Z 2020-02-15T06:59:48Z +2147 79 2 3096 4.99 2005-06-20T16:17:56Z 2020-02-15T06:59:48Z +2148 79 2 3178 2.99 2005-06-20T22:35:12Z 2020-02-15T06:59:48Z +2149 79 1 3641 0.99 2005-07-06T07:17:09Z 2020-02-15T06:59:48Z +2150 79 1 3748 2.99 2005-07-06T12:11:22Z 2020-02-15T06:59:48Z +2151 79 2 4049 4.99 2005-07-07T03:34:53Z 2020-02-15T06:59:48Z +2152 79 1 4530 4.99 2005-07-08T03:27:05Z 2020-02-15T06:59:48Z +2153 79 2 4736 4.99 2005-07-08T13:22:55Z 2020-02-15T06:59:48Z +2154 79 2 5205 2.99 2005-07-09T10:56:37Z 2020-02-15T06:59:48Z +2155 79 1 5555 2.99 2005-07-10T03:08:55Z 2020-02-15T06:59:48Z +2156 79 2 6162 5.99 2005-07-11T10:12:30Z 2020-02-15T06:59:48Z +2157 79 1 7220 9.99 2005-07-27T09:35:54Z 2020-02-15T06:59:48Z +2158 79 1 8849 2.99 2005-07-29T23:21:01Z 2020-02-15T06:59:48Z +2159 79 1 9814 1.99 2005-07-31T11:29:46Z 2020-02-15T06:59:48Z +2160 79 2 9845 6.99 2005-07-31T12:28:05Z 2020-02-15T06:59:48Z +2161 79 1 9989 0.99 2005-07-31T17:22:39Z 2020-02-15T06:59:48Z +2162 79 1 10676 2.99 2005-08-01T17:14:15Z 2020-02-15T06:59:48Z +2163 79 2 11641 4.99 2005-08-17T04:45:39Z 2020-02-15T06:59:48Z +2164 79 2 13026 2.99 2005-08-19T08:22:45Z 2020-02-15T06:59:48Z +2165 79 1 14179 0.99 2005-08-21T03:14:27Z 2020-02-15T06:59:48Z +2166 80 1 2596 2.99 2005-06-19T05:48:26Z 2020-02-15T06:59:48Z +2167 80 2 2805 8.99 2005-06-19T19:29:17Z 2020-02-15T06:59:48Z +2168 80 1 3367 3.99 2005-06-21T13:08:21Z 2020-02-15T06:59:48Z +2169 80 2 3623 4.99 2005-07-06T06:05:23Z 2020-02-15T06:59:48Z +2170 80 2 4268 8.99 2005-07-07T14:36:05Z 2020-02-15T06:59:48Z +2171 80 2 4299 3.99 2005-07-07T16:33:48Z 2020-02-15T06:59:48Z +2172 80 1 4688 5.99 2005-07-08T11:03:29Z 2020-02-15T06:59:48Z +2173 80 2 5420 3.99 2005-07-09T20:48:42Z 2020-02-15T06:59:48Z +2174 80 2 5452 4.99 2005-07-09T22:23:21Z 2020-02-15T06:59:48Z +2175 80 1 6199 5.99 2005-07-11T12:16:03Z 2020-02-15T06:59:48Z +2176 80 2 6417 6.99 2005-07-11T23:35:11Z 2020-02-15T06:59:48Z +2177 80 2 6707 1.99 2005-07-12T13:07:55Z 2020-02-15T06:59:48Z +2178 80 2 7558 0.99 2005-07-27T22:19:08Z 2020-02-15T06:59:48Z +2179 80 1 8509 5.99 2005-07-29T09:38:19Z 2020-02-15T06:59:48Z +2180 80 1 8884 6.99 2005-07-30T00:26:22Z 2020-02-15T06:59:48Z +2181 80 1 10313 0.99 2005-08-01T04:29:29Z 2020-02-15T06:59:48Z +2182 80 1 10656 6.99 2005-08-01T16:38:04Z 2020-02-15T06:59:48Z +2183 80 1 10690 8.99 2005-08-01T18:05:54Z 2020-02-15T06:59:48Z +2184 80 2 11101 5.99 2005-08-02T08:08:24Z 2020-02-15T06:59:48Z +2185 80 2 11839 0.99 2005-08-17T13:08:45Z 2020-02-15T06:59:48Z +2186 80 1 11850 1.99 2005-08-17T13:30:15Z 2020-02-15T06:59:48Z +2187 80 2 12468 2.99 2005-08-18T11:41:47Z 2020-02-15T06:59:48Z +2188 80 1 13352 4.99 2005-08-19T20:51:40Z 2020-02-15T06:59:48Z +2189 80 2 13395 0.99 2005-08-19T22:05:40Z 2020-02-15T06:59:48Z +2190 80 1 13724 4.99 2005-08-20T10:07:28Z 2020-02-15T06:59:48Z +2191 80 2 13851 0.99 2005-08-20T14:44:22Z 2020-02-15T06:59:48Z +2192 80 1 14916 0.99 2005-08-22T04:56:57Z 2020-02-15T06:59:48Z +2193 80 1 15648 8.99 2005-08-23T08:27:57Z 2020-02-15T06:59:48Z +2194 80 1 16012 5.99 2005-08-23T21:13:39Z 2020-02-15T06:59:48Z +2195 80 2 12457 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2196 81 1 289 0.99 2005-05-26T20:01:09Z 2020-02-15T06:59:48Z +2197 81 1 2714 1.99 2005-06-19T14:26:09Z 2020-02-15T06:59:48Z +2198 81 1 2854 5.99 2005-06-19T23:11:48Z 2020-02-15T06:59:48Z +2199 81 1 3229 4.99 2005-06-21T02:20:41Z 2020-02-15T06:59:48Z +2200 81 1 3879 2.99 2005-07-06T18:31:20Z 2020-02-15T06:59:48Z +2201 81 2 4983 9.99 2005-07-09T00:34:16Z 2020-02-15T06:59:48Z +2202 81 1 5468 0.99 2005-07-09T23:06:09Z 2020-02-15T06:59:48Z +2203 81 2 7130 4.99 2005-07-27T06:23:36Z 2020-02-15T06:59:48Z +2204 81 1 7709 0.99 2005-07-28T04:22:14Z 2020-02-15T06:59:48Z +2205 81 2 9454 3.99 2005-07-30T22:20:09Z 2020-02-15T06:59:48Z +2206 81 2 10456 0.99 2005-08-01T09:17:21Z 2020-02-15T06:59:48Z +2207 81 1 11837 5.99 2005-08-17T13:04:41Z 2020-02-15T06:59:48Z +2208 81 2 12181 4.99 2005-08-18T01:28:18Z 2020-02-15T06:59:48Z +2209 81 2 13820 5.99 2005-08-20T13:26:37Z 2020-02-15T06:59:48Z +2210 81 1 14128 4.99 2005-08-21T01:35:58Z 2020-02-15T06:59:48Z +2211 81 1 14642 3.99 2005-08-21T19:09:40Z 2020-02-15T06:59:48Z +2212 81 2 14748 7.99 2005-08-21T23:02:02Z 2020-02-15T06:59:48Z +2213 81 1 15224 5.99 2005-08-22T17:18:05Z 2020-02-15T06:59:48Z +2214 81 1 15602 4.99 2005-08-23T06:41:07Z 2020-02-15T06:59:48Z +2215 81 1 15823 4.99 2005-08-23T15:08:00Z 2020-02-15T06:59:48Z +2216 81 1 15858 2.99 2005-08-23T16:07:15Z 2020-02-15T06:59:48Z +2217 81 2 15884 1.99 2005-08-23T16:45:28Z 2020-02-15T06:59:48Z +2218 82 2 145 2.99 2005-05-25T23:59:03Z 2020-02-15T06:59:48Z +2219 82 2 288 8.99 2005-05-26T19:47:49Z 2020-02-15T06:59:48Z +2220 82 1 1438 0.99 2005-06-15T18:38:51Z 2020-02-15T06:59:48Z +2221 82 2 1570 0.99 2005-06-16T03:21:33Z 2020-02-15T06:59:48Z +2222 82 1 2506 8.99 2005-06-18T23:29:53Z 2020-02-15T06:59:48Z +2223 82 1 2819 8.99 2005-06-19T20:13:33Z 2020-02-15T06:59:48Z +2224 82 2 3332 0.99 2005-06-21T09:55:12Z 2020-02-15T06:59:48Z +2225 82 1 3680 2.99 2005-07-06T09:16:10Z 2020-02-15T06:59:48Z +2226 82 1 4598 6.99 2005-07-08T06:46:26Z 2020-02-15T06:59:48Z +2227 82 2 5746 4.99 2005-07-10T12:15:12Z 2020-02-15T06:59:48Z +2228 82 2 6082 6.99 2005-07-11T05:12:41Z 2020-02-15T06:59:48Z +2229 82 2 6708 6.99 2005-07-12T13:10:55Z 2020-02-15T06:59:48Z +2230 82 2 7733 9.99 2005-07-28T05:04:47Z 2020-02-15T06:59:48Z +2231 82 2 7873 0.99 2005-07-28T10:19:46Z 2020-02-15T06:59:48Z +2232 82 1 8487 4.99 2005-07-29T08:53:49Z 2020-02-15T06:59:48Z +2233 82 2 9277 3.99 2005-07-30T15:13:45Z 2020-02-15T06:59:48Z +2234 82 1 9305 8.99 2005-07-30T16:45:56Z 2020-02-15T06:59:48Z +2235 82 1 9447 6.99 2005-07-30T21:54:22Z 2020-02-15T06:59:48Z +2236 82 1 11093 4.99 2005-08-02T07:59:49Z 2020-02-15T06:59:48Z +2237 82 2 11688 5.99 2005-08-17T06:41:58Z 2020-02-15T06:59:48Z +2238 82 1 12470 3.99 2005-08-18T11:55:42Z 2020-02-15T06:59:48Z +2239 82 1 13032 0.99 2005-08-19T08:31:50Z 2020-02-15T06:59:48Z +2240 82 2 13847 6.99 2005-08-20T14:33:59Z 2020-02-15T06:59:48Z +2241 82 2 14518 0.99 2005-08-21T14:58:58Z 2020-02-15T06:59:48Z +2242 82 2 14892 4.99 2005-08-22T04:15:05Z 2020-02-15T06:59:48Z +2243 82 2 15516 3.99 2005-08-23T03:12:54Z 2020-02-15T06:59:48Z +2244 83 2 222 0.99 2005-05-26T10:14:38Z 2020-02-15T06:59:48Z +2245 83 2 950 0.99 2005-05-30T16:06:08Z 2020-02-15T06:59:48Z +2246 83 2 989 2.99 2005-05-30T23:11:51Z 2020-02-15T06:59:48Z +2247 83 1 1354 5.99 2005-06-15T13:13:49Z 2020-02-15T06:59:48Z +2248 83 1 1591 5.99 2005-06-16T05:12:37Z 2020-02-15T06:59:48Z +2249 83 2 1617 3.99 2005-06-16T07:06:06Z 2020-02-15T06:59:48Z +2250 83 2 3230 4.99 2005-06-21T02:23:16Z 2020-02-15T06:59:48Z +2251 83 2 3722 6.99 2005-07-06T11:10:27Z 2020-02-15T06:59:48Z +2252 83 1 3754 2.99 2005-07-06T12:35:44Z 2020-02-15T06:59:48Z +2253 83 1 5218 0.99 2005-07-09T11:57:12Z 2020-02-15T06:59:48Z +2254 83 2 5394 6.99 2005-07-09T19:36:15Z 2020-02-15T06:59:48Z +2255 83 2 6194 2.99 2005-07-11T11:51:00Z 2020-02-15T06:59:48Z +2256 83 2 6861 2.99 2005-07-12T19:56:52Z 2020-02-15T06:59:48Z +2257 83 2 7721 0.99 2005-07-28T04:42:58Z 2020-02-15T06:59:48Z +2258 83 2 8729 4.99 2005-07-29T18:23:02Z 2020-02-15T06:59:48Z +2259 83 1 9867 1.99 2005-07-31T13:17:04Z 2020-02-15T06:59:48Z +2260 83 1 11408 0.99 2005-08-02T19:25:13Z 2020-02-15T06:59:48Z +2261 83 1 11565 5.99 2005-08-17T01:28:05Z 2020-02-15T06:59:48Z +2262 83 2 11777 4.99 2005-08-17T10:27:19Z 2020-02-15T06:59:48Z +2263 83 1 12258 4.99 2005-08-18T04:11:13Z 2020-02-15T06:59:48Z +2264 83 2 12985 5.99 2005-08-19T07:08:05Z 2020-02-15T06:59:48Z +2265 83 1 13875 4.99 2005-08-20T15:13:11Z 2020-02-15T06:59:48Z +2266 83 2 15498 4.99 2005-08-23T02:33:27Z 2020-02-15T06:59:48Z +2267 83 2 15737 5.99 2005-08-23T11:52:18Z 2020-02-15T06:59:48Z +2268 83 2 11563 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2269 84 2 408 0.99 2005-05-27T13:57:39Z 2020-02-15T06:59:48Z +2270 84 1 739 6.99 2005-05-29T08:28:18Z 2020-02-15T06:59:48Z +2271 84 1 834 4.99 2005-05-29T23:24:30Z 2020-02-15T06:59:48Z +2272 84 2 1195 0.99 2005-06-15T01:37:38Z 2020-02-15T06:59:48Z +2273 84 2 1320 4.99 2005-06-15T10:42:13Z 2020-02-15T06:59:48Z +2274 84 2 1815 0.99 2005-06-16T21:16:07Z 2020-02-15T06:59:48Z +2275 84 1 2012 5.99 2005-06-17T11:57:15Z 2020-02-15T06:59:48Z +2276 84 2 2042 0.99 2005-06-17T14:31:02Z 2020-02-15T06:59:48Z +2277 84 2 2409 0.99 2005-06-18T16:53:33Z 2020-02-15T06:59:48Z +2278 84 2 4079 6.99 2005-07-07T05:06:27Z 2020-02-15T06:59:48Z +2279 84 2 4838 6.99 2005-07-08T18:11:00Z 2020-02-15T06:59:48Z +2280 84 1 5221 5.99 2005-07-09T12:02:23Z 2020-02-15T06:59:48Z +2281 84 1 5237 0.99 2005-07-09T12:56:58Z 2020-02-15T06:59:48Z +2282 84 1 5971 5.99 2005-07-11T00:05:58Z 2020-02-15T06:59:48Z +2283 84 2 6259 2.99 2005-07-11T15:25:52Z 2020-02-15T06:59:48Z +2284 84 2 6415 9.99 2005-07-11T23:27:52Z 2020-02-15T06:59:48Z +2285 84 1 7854 2.99 2005-07-28T09:42:31Z 2020-02-15T06:59:48Z +2286 84 2 8019 4.99 2005-07-28T15:37:43Z 2020-02-15T06:59:48Z +2287 84 1 8654 8.99 2005-07-29T15:04:27Z 2020-02-15T06:59:48Z +2288 84 2 9074 2.99 2005-07-30T07:50:10Z 2020-02-15T06:59:48Z +2289 84 2 9680 4.99 2005-07-31T06:41:46Z 2020-02-15T06:59:48Z +2290 84 2 10540 0.99 2005-08-01T12:24:42Z 2020-02-15T06:59:48Z +2291 84 1 10872 2.99 2005-08-02T00:27:50Z 2020-02-15T06:59:48Z +2292 84 2 11220 4.99 2005-08-02T12:31:41Z 2020-02-15T06:59:48Z +2293 84 2 11424 3.99 2005-08-02T19:57:42Z 2020-02-15T06:59:48Z +2294 84 2 11453 7.99 2005-08-02T21:00:05Z 2020-02-15T06:59:48Z +2295 84 2 11899 0.99 2005-08-17T15:29:12Z 2020-02-15T06:59:48Z +2296 84 2 11960 4.99 2005-08-17T17:24:30Z 2020-02-15T06:59:48Z +2297 84 2 12364 4.99 2005-08-18T07:55:09Z 2020-02-15T06:59:48Z +2298 84 2 13115 2.99 2005-08-19T11:27:43Z 2020-02-15T06:59:48Z +2299 84 1 14330 5.99 2005-08-21T08:29:20Z 2020-02-15T06:59:48Z +2300 84 1 15190 4.99 2005-08-22T15:57:38Z 2020-02-15T06:59:48Z +2301 84 1 15255 2.99 2005-08-22T18:16:50Z 2020-02-15T06:59:48Z +2302 85 1 690 9.99 2005-05-29T00:54:53Z 2020-02-15T06:59:48Z +2303 85 2 908 4.99 2005-05-30T10:38:37Z 2020-02-15T06:59:48Z +2304 85 1 1685 1.99 2005-06-16T12:06:57Z 2020-02-15T06:59:48Z +2305 85 1 2131 5.99 2005-06-17T21:02:25Z 2020-02-15T06:59:48Z +2306 85 2 2794 0.99 2005-06-19T18:53:05Z 2020-02-15T06:59:48Z +2307 85 1 3165 4.99 2005-06-20T21:29:17Z 2020-02-15T06:59:48Z +2308 85 1 3307 1.99 2005-06-21T07:52:30Z 2020-02-15T06:59:48Z +2309 85 2 3418 3.99 2005-06-21T17:06:38Z 2020-02-15T06:59:48Z +2310 85 2 4451 0.99 2005-07-07T23:29:54Z 2020-02-15T06:59:48Z +2311 85 1 4705 2.99 2005-07-08T11:50:38Z 2020-02-15T06:59:48Z +2312 85 1 5051 4.99 2005-07-09T03:57:53Z 2020-02-15T06:59:48Z +2313 85 1 5519 0.99 2005-07-10T01:18:32Z 2020-02-15T06:59:48Z +2314 85 2 7906 0.99 2005-07-28T11:31:42Z 2020-02-15T06:59:48Z +2315 85 2 9427 7.99 2005-07-30T21:16:33Z 2020-02-15T06:59:48Z +2316 85 2 9957 4.99 2005-07-31T16:03:55Z 2020-02-15T06:59:48Z +2317 85 1 9985 2.99 2005-07-31T17:14:47Z 2020-02-15T06:59:48Z +2318 85 1 10328 4.99 2005-08-01T04:56:10Z 2020-02-15T06:59:48Z +2319 85 1 10548 0.99 2005-08-01T12:44:32Z 2020-02-15T06:59:48Z +2320 85 2 11067 8.99 2005-08-02T07:03:24Z 2020-02-15T06:59:48Z +2321 85 2 12036 0.99 2005-08-17T20:19:06Z 2020-02-15T06:59:48Z +2322 85 1 12456 4.99 2005-08-18T11:21:51Z 2020-02-15T06:59:48Z +2323 85 1 13727 3.99 2005-08-20T10:08:53Z 2020-02-15T06:59:48Z +2324 85 2 13733 0.99 2005-08-20T10:25:12Z 2020-02-15T06:59:48Z +2325 86 1 66 1.99 2005-05-25T09:35:12Z 2020-02-15T06:59:48Z +2326 86 2 1640 4.99 2005-06-16T08:35:39Z 2020-02-15T06:59:48Z +2327 86 2 1822 0.99 2005-06-16T21:43:45Z 2020-02-15T06:59:48Z +2328 86 2 1924 2.99 2005-06-17T06:13:34Z 2020-02-15T06:59:48Z +2329 86 1 2141 4.99 2005-06-17T21:41:34Z 2020-02-15T06:59:48Z +2330 86 1 2518 4.99 2005-06-19T00:16:23Z 2020-02-15T06:59:48Z +2331 86 1 3207 0.99 2005-06-21T00:43:16Z 2020-02-15T06:59:48Z +2332 86 2 3270 4.99 2005-06-21T05:07:31Z 2020-02-15T06:59:48Z +2333 86 1 3611 0.99 2005-07-06T05:37:18Z 2020-02-15T06:59:48Z +2334 86 2 3945 4.99 2005-07-06T21:35:00Z 2020-02-15T06:59:48Z +2335 86 1 4235 2.99 2005-07-07T13:05:52Z 2020-02-15T06:59:48Z +2336 86 1 4571 9.99 2005-07-08T05:34:41Z 2020-02-15T06:59:48Z +2337 86 2 5295 0.99 2005-07-09T15:25:06Z 2020-02-15T06:59:48Z +2338 86 1 5752 8.99 2005-07-10T12:27:38Z 2020-02-15T06:59:48Z +2339 86 2 6872 7.99 2005-07-12T20:15:04Z 2020-02-15T06:59:48Z +2340 86 1 7231 2.99 2005-07-27T10:01:51Z 2020-02-15T06:59:48Z +2341 86 1 7874 10.99 2005-07-28T10:21:52Z 2020-02-15T06:59:48Z +2342 86 2 8803 5.99 2005-07-29T21:26:24Z 2020-02-15T06:59:48Z +2343 86 1 8850 2.99 2005-07-29T23:24:20Z 2020-02-15T06:59:48Z +2344 86 2 9376 4.99 2005-07-30T19:11:49Z 2020-02-15T06:59:48Z +2345 86 2 10252 8.99 2005-08-01T02:39:39Z 2020-02-15T06:59:48Z +2346 86 2 10536 4.99 2005-08-01T12:21:53Z 2020-02-15T06:59:48Z +2347 86 2 10584 6.99 2005-08-01T13:58:47Z 2020-02-15T06:59:48Z +2348 86 2 11916 0.99 2005-08-17T16:05:51Z 2020-02-15T06:59:48Z +2349 86 1 12198 2.99 2005-08-18T02:09:20Z 2020-02-15T06:59:48Z +2350 86 2 12870 3.99 2005-08-19T02:54:38Z 2020-02-15T06:59:48Z +2351 86 2 13338 4.99 2005-08-19T20:09:59Z 2020-02-15T06:59:48Z +2352 86 1 13535 4.99 2005-08-20T03:30:25Z 2020-02-15T06:59:48Z +2353 86 1 13874 2.99 2005-08-20T15:11:48Z 2020-02-15T06:59:48Z +2354 86 2 14122 1.99 2005-08-21T01:29:01Z 2020-02-15T06:59:48Z +2355 86 2 15099 4.99 2005-08-22T11:49:16Z 2020-02-15T06:59:48Z +2356 86 1 15715 1.99 2005-08-23T10:57:40Z 2020-02-15T06:59:48Z +2357 86 2 15940 5.99 2005-08-23T18:45:06Z 2020-02-15T06:59:48Z +2358 87 2 451 4.99 2005-05-27T19:27:54Z 2020-02-15T06:59:48Z +2359 87 1 674 2.99 2005-05-28T22:11:35Z 2020-02-15T06:59:48Z +2360 87 2 1580 4.99 2005-06-16T04:12:25Z 2020-02-15T06:59:48Z +2361 87 1 1904 2.99 2005-06-17T04:45:41Z 2020-02-15T06:59:48Z +2362 87 2 2408 2.99 2005-06-18T16:50:44Z 2020-02-15T06:59:48Z +2363 87 1 2516 4.99 2005-06-19T00:03:28Z 2020-02-15T06:59:48Z +2364 87 2 3122 9.99 2005-06-20T18:25:57Z 2020-02-15T06:59:48Z +2365 87 1 5084 7.99 2005-07-09T05:33:27Z 2020-02-15T06:59:48Z +2366 87 1 5628 3.99 2005-07-10T05:56:40Z 2020-02-15T06:59:48Z +2367 87 2 5700 4.99 2005-07-10T09:49:42Z 2020-02-15T06:59:48Z +2368 87 1 6638 4.99 2005-07-12T09:58:02Z 2020-02-15T06:59:48Z +2369 87 2 7599 2.99 2005-07-27T23:38:46Z 2020-02-15T06:59:48Z +2370 87 2 8187 7.99 2005-07-28T22:33:53Z 2020-02-15T06:59:48Z +2371 87 1 8286 5.99 2005-07-29T02:02:46Z 2020-02-15T06:59:48Z +2372 87 2 8323 4.99 2005-07-29T03:52:59Z 2020-02-15T06:59:48Z +2373 87 2 9060 0.99 2005-07-30T07:20:36Z 2020-02-15T06:59:48Z +2374 87 1 9348 2.99 2005-07-30T18:17:09Z 2020-02-15T06:59:48Z +2375 87 2 9364 8.99 2005-07-30T18:44:44Z 2020-02-15T06:59:48Z +2376 87 2 10205 4.99 2005-08-01T00:48:24Z 2020-02-15T06:59:48Z +2377 87 1 10387 4.99 2005-08-01T06:42:31Z 2020-02-15T06:59:48Z +2378 87 1 12232 0.99 2005-08-18T03:14:14Z 2020-02-15T06:59:48Z +2379 87 1 12257 8.99 2005-08-18T04:11:03Z 2020-02-15T06:59:48Z +2380 87 1 12264 5.99 2005-08-18T04:17:33Z 2020-02-15T06:59:48Z +2381 87 1 13479 0.99 2005-08-20T01:09:11Z 2020-02-15T06:59:48Z +2382 87 1 13906 0.99 2005-08-20T16:16:03Z 2020-02-15T06:59:48Z +2383 87 2 14024 10.99 2005-08-20T21:13:58Z 2020-02-15T06:59:48Z +2384 87 1 14566 2.99 2005-08-21T16:25:05Z 2020-02-15T06:59:48Z +2385 87 1 15876 2.99 2005-08-23T16:32:10Z 2020-02-15T06:59:48Z +2386 87 2 15890 4.99 2005-08-23T16:58:12Z 2020-02-15T06:59:48Z +2387 87 2 12719 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:48Z +2388 88 2 36 2.99 2005-05-25T04:36:26Z 2020-02-15T06:59:48Z +2389 88 1 1433 2.99 2005-06-15T18:30:00Z 2020-02-15T06:59:48Z +2390 88 1 2483 7.99 2005-06-18T21:22:23Z 2020-02-15T06:59:48Z +2391 88 1 2878 2.99 2005-06-20T01:09:14Z 2020-02-15T06:59:48Z +2392 88 2 3524 0.99 2005-07-06T01:01:51Z 2020-02-15T06:59:48Z +2393 88 2 3620 0.99 2005-07-06T06:01:50Z 2020-02-15T06:59:48Z +2394 88 2 3673 5.99 2005-07-06T09:02:09Z 2020-02-15T06:59:48Z +2395 88 1 3846 5.99 2005-07-06T16:43:10Z 2020-02-15T06:59:48Z +2396 88 1 6643 1.99 2005-07-12T10:39:22Z 2020-02-15T06:59:48Z +2397 88 1 6916 4.99 2005-07-12T22:29:18Z 2020-02-15T06:59:48Z +2398 88 1 7088 5.99 2005-07-27T04:42:28Z 2020-02-15T06:59:48Z +2399 88 1 7621 8.99 2005-07-28T00:34:06Z 2020-02-15T06:59:48Z +2400 88 1 8296 2.99 2005-07-29T02:43:25Z 2020-02-15T06:59:48Z +2401 88 2 8526 2.99 2005-07-29T10:20:48Z 2020-02-15T06:59:48Z +2402 88 1 8692 2.99 2005-07-29T16:43:39Z 2020-02-15T06:59:48Z +2403 88 1 10424 0.99 2005-08-01T08:22:54Z 2020-02-15T06:59:48Z +2404 88 1 11056 6.99 2005-08-02T06:36:27Z 2020-02-15T06:59:48Z +2405 88 2 14097 2.99 2005-08-21T00:28:48Z 2020-02-15T06:59:48Z +2406 88 2 14827 5.99 2005-08-22T01:32:32Z 2020-02-15T06:59:48Z +2407 88 2 15098 3.99 2005-08-22T11:48:19Z 2020-02-15T06:59:48Z +2408 88 1 15898 4.99 2005-08-23T17:13:01Z 2020-02-15T06:59:48Z +2409 89 2 141 2.99 2005-05-25T23:34:53Z 2020-02-15T06:59:48Z +2410 89 2 588 0.99 2005-05-28T12:08:37Z 2020-02-15T06:59:48Z +2411 89 1 740 5.99 2005-05-29T08:30:36Z 2020-02-15T06:59:48Z +2412 89 1 1252 8.99 2005-06-15T06:05:18Z 2020-02-15T06:59:48Z +2413 89 2 1407 7.99 2005-06-15T16:45:07Z 2020-02-15T06:59:48Z +2414 89 1 1948 4.99 2005-06-17T08:06:53Z 2020-02-15T06:59:48Z +2415 89 1 2523 0.99 2005-06-19T00:45:56Z 2020-02-15T06:59:48Z +2416 89 1 2835 7.99 2005-06-19T21:44:11Z 2020-02-15T06:59:48Z +2417 89 2 4152 4.99 2005-07-07T08:50:33Z 2020-02-15T06:59:48Z +2418 89 1 4488 0.99 2005-07-08T01:22:23Z 2020-02-15T06:59:48Z +2419 89 1 4764 8.99 2005-07-08T15:01:25Z 2020-02-15T06:59:48Z +2420 89 2 5144 7.99 2005-07-09T08:09:53Z 2020-02-15T06:59:48Z +2421 89 2 5436 2.99 2005-07-09T21:31:11Z 2020-02-15T06:59:48Z +2422 89 1 5483 2.99 2005-07-09T23:54:09Z 2020-02-15T06:59:48Z +2423 89 1 6772 2.99 2005-07-12T15:55:35Z 2020-02-15T06:59:48Z +2424 89 2 7370 7.99 2005-07-27T15:15:53Z 2020-02-15T06:59:48Z +2425 89 2 7729 4.99 2005-07-28T04:57:57Z 2020-02-15T06:59:48Z +2426 89 2 7995 4.99 2005-07-28T15:00:09Z 2020-02-15T06:59:48Z +2427 89 1 8003 2.99 2005-07-28T15:11:27Z 2020-02-15T06:59:48Z +2428 89 2 8070 2.99 2005-07-28T17:26:56Z 2020-02-15T06:59:49Z +2429 89 2 8972 0.99 2005-07-30T04:06:25Z 2020-02-15T06:59:49Z +2430 89 1 9328 2.99 2005-07-30T17:32:11Z 2020-02-15T06:59:49Z +2431 89 2 9646 2.99 2005-07-31T05:43:28Z 2020-02-15T06:59:49Z +2432 89 2 9767 0.99 2005-07-31T09:46:49Z 2020-02-15T06:59:49Z +2433 89 2 10164 4.99 2005-07-31T23:17:57Z 2020-02-15T06:59:49Z +2434 89 2 10806 4.99 2005-08-01T22:25:29Z 2020-02-15T06:59:49Z +2435 89 1 11090 3.99 2005-08-02T07:56:40Z 2020-02-15T06:59:49Z +2436 89 1 12118 3.99 2005-08-17T23:14:25Z 2020-02-15T06:59:49Z +2437 89 2 12431 2.99 2005-08-18T10:34:59Z 2020-02-15T06:59:49Z +2438 89 1 12756 2.99 2005-08-18T22:52:13Z 2020-02-15T06:59:49Z +2439 89 1 13823 2.99 2005-08-20T13:42:10Z 2020-02-15T06:59:49Z +2440 89 1 15845 2.99 2005-08-23T15:38:34Z 2020-02-15T06:59:49Z +2441 90 2 2033 0.99 2005-06-17T13:24:43Z 2020-02-15T06:59:49Z +2442 90 2 2584 6.99 2005-06-19T05:02:36Z 2020-02-15T06:59:49Z +2443 90 2 3132 0.99 2005-06-20T19:09:46Z 2020-02-15T06:59:49Z +2444 90 2 3729 3.99 2005-07-06T11:30:29Z 2020-02-15T06:59:49Z +2445 90 2 4371 4.99 2005-07-07T20:06:45Z 2020-02-15T06:59:49Z +2446 90 2 5272 0.99 2005-07-09T14:26:01Z 2020-02-15T06:59:49Z +2447 90 2 5539 3.99 2005-07-10T02:42:58Z 2020-02-15T06:59:49Z +2448 90 2 7035 5.99 2005-07-27T03:06:09Z 2020-02-15T06:59:49Z +2449 90 2 7058 1.99 2005-07-27T03:50:46Z 2020-02-15T06:59:49Z +2450 90 1 7428 5.99 2005-07-27T17:21:52Z 2020-02-15T06:59:49Z +2451 90 1 7946 6.99 2005-07-28T13:01:22Z 2020-02-15T06:59:49Z +2452 90 1 8024 2.99 2005-07-28T15:55:40Z 2020-02-15T06:59:49Z +2453 90 1 8408 0.99 2005-07-29T06:40:40Z 2020-02-15T06:59:49Z +2454 90 2 8870 9.99 2005-07-30T00:08:08Z 2020-02-15T06:59:49Z +2455 90 2 9337 2.99 2005-07-30T18:02:25Z 2020-02-15T06:59:49Z +2456 90 2 10206 7.99 2005-08-01T00:52:40Z 2020-02-15T06:59:49Z +2457 90 1 10722 4.99 2005-08-01T19:07:08Z 2020-02-15T06:59:49Z +2458 90 1 10835 4.99 2005-08-01T23:28:49Z 2020-02-15T06:59:49Z +2459 90 2 11231 4.99 2005-08-02T13:02:11Z 2020-02-15T06:59:49Z +2460 90 1 11516 0.99 2005-08-16T23:54:47Z 2020-02-15T06:59:49Z +2461 90 2 12019 0.99 2005-08-17T19:48:55Z 2020-02-15T06:59:49Z +2462 90 1 12788 2.99 2005-08-19T00:15:09Z 2020-02-15T06:59:49Z +2463 90 1 13051 4.99 2005-08-19T09:31:33Z 2020-02-15T06:59:49Z +2464 90 1 14608 1.99 2005-08-21T17:57:22Z 2020-02-15T06:59:49Z +2465 90 1 14807 4.99 2005-08-22T00:57:43Z 2020-02-15T06:59:49Z +2466 90 2 15061 0.99 2005-08-22T10:29:44Z 2020-02-15T06:59:49Z +2467 90 2 15217 0.99 2005-08-22T16:58:31Z 2020-02-15T06:59:49Z +2468 90 1 15674 7.99 2005-08-23T09:16:39Z 2020-02-15T06:59:49Z +2469 91 2 216 5.99 2005-05-26T09:17:43Z 2020-02-15T06:59:49Z +2470 91 1 1299 4.99 2005-06-15T09:34:50Z 2020-02-15T06:59:49Z +2471 91 1 2457 3.99 2005-06-18T19:38:20Z 2020-02-15T06:59:49Z +2472 91 1 2908 0.99 2005-06-20T03:16:52Z 2020-02-15T06:59:49Z +2473 91 2 3384 2.99 2005-06-21T14:07:35Z 2020-02-15T06:59:49Z +2474 91 2 3802 0.99 2005-07-06T15:06:09Z 2020-02-15T06:59:49Z +2475 91 2 4103 2.99 2005-07-07T06:25:28Z 2020-02-15T06:59:49Z +2476 91 1 4245 4.99 2005-07-07T13:48:33Z 2020-02-15T06:59:49Z +2477 91 1 4321 4.99 2005-07-07T17:52:38Z 2020-02-15T06:59:49Z +2478 91 1 4673 4.99 2005-07-08T10:16:00Z 2020-02-15T06:59:49Z +2479 91 2 5025 4.99 2005-07-09T02:28:24Z 2020-02-15T06:59:49Z +2480 91 2 5187 1.99 2005-07-09T10:19:51Z 2020-02-15T06:59:49Z +2481 91 2 5701 0.99 2005-07-10T09:56:24Z 2020-02-15T06:59:49Z +2482 91 1 6078 4.99 2005-07-11T05:06:52Z 2020-02-15T06:59:49Z +2483 91 1 6178 2.99 2005-07-11T10:59:09Z 2020-02-15T06:59:49Z +2484 91 2 6860 2.99 2005-07-12T19:54:17Z 2020-02-15T06:59:49Z +2485 91 2 7143 0.99 2005-07-27T06:56:31Z 2020-02-15T06:59:49Z +2486 91 2 7637 0.99 2005-07-28T01:12:25Z 2020-02-15T06:59:49Z +2487 91 1 7966 4.99 2005-07-28T13:53:54Z 2020-02-15T06:59:49Z +2488 91 1 8313 0.99 2005-07-29T03:34:21Z 2020-02-15T06:59:49Z +2489 91 2 8873 0.99 2005-07-30T00:14:32Z 2020-02-15T06:59:49Z +2490 91 2 9228 2.99 2005-07-30T13:36:57Z 2020-02-15T06:59:49Z +2491 91 2 9396 4.99 2005-07-30T20:07:24Z 2020-02-15T06:59:49Z +2492 91 2 10008 4.99 2005-07-31T17:59:36Z 2020-02-15T06:59:49Z +2493 91 2 11418 0.99 2005-08-02T19:45:33Z 2020-02-15T06:59:49Z +2494 91 1 12847 0.99 2005-08-19T02:04:07Z 2020-02-15T06:59:49Z +2495 91 2 13222 4.99 2005-08-19T15:47:58Z 2020-02-15T06:59:49Z +2496 91 2 13309 4.99 2005-08-19T19:04:00Z 2020-02-15T06:59:49Z +2497 91 1 14132 0.99 2005-08-21T01:43:58Z 2020-02-15T06:59:49Z +2498 91 2 14888 2.99 2005-08-22T04:09:18Z 2020-02-15T06:59:49Z +2499 91 1 15122 1.99 2005-08-22T12:47:45Z 2020-02-15T06:59:49Z +2500 91 1 15341 4.99 2005-08-22T20:56:31Z 2020-02-15T06:59:49Z +2501 91 1 15707 1.99 2005-08-23T10:35:45Z 2020-02-15T06:59:49Z +2502 91 2 15886 4.99 2005-08-23T16:50:53Z 2020-02-15T06:59:49Z +2503 91 1 12902 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2504 92 1 271 5.99 2005-05-26T16:22:01Z 2020-02-15T06:59:49Z +2505 92 1 456 4.99 2005-05-27T19:50:06Z 2020-02-15T06:59:49Z +2506 92 2 2084 4.99 2005-06-17T17:17:19Z 2020-02-15T06:59:49Z +2507 92 1 2521 0.99 2005-06-19T00:41:08Z 2020-02-15T06:59:49Z +2508 92 1 2740 8.99 2005-06-19T15:59:04Z 2020-02-15T06:59:49Z +2509 92 2 3595 8.99 2005-07-06T04:59:49Z 2020-02-15T06:59:49Z +2510 92 2 3716 7.99 2005-07-06T10:52:32Z 2020-02-15T06:59:49Z +2511 92 1 4360 2.99 2005-07-07T19:31:12Z 2020-02-15T06:59:49Z +2512 92 2 4828 4.99 2005-07-08T17:52:29Z 2020-02-15T06:59:49Z +2513 92 2 5497 5.99 2005-07-10T00:23:23Z 2020-02-15T06:59:49Z +2514 92 2 5620 7.99 2005-07-10T05:30:52Z 2020-02-15T06:59:49Z +2515 92 1 5792 6.99 2005-07-10T14:22:19Z 2020-02-15T06:59:49Z +2516 92 2 5919 2.99 2005-07-10T21:32:14Z 2020-02-15T06:59:49Z +2517 92 1 6158 0.99 2005-07-11T09:50:24Z 2020-02-15T06:59:49Z +2518 92 2 6277 6.99 2005-07-11T16:19:01Z 2020-02-15T06:59:49Z +2519 92 1 7073 4.99 2005-07-27T04:03:26Z 2020-02-15T06:59:49Z +2520 92 1 7832 1.99 2005-07-28T08:46:11Z 2020-02-15T06:59:49Z +2521 92 1 8494 4.99 2005-07-29T09:04:32Z 2020-02-15T06:59:49Z +2522 92 1 8938 4.99 2005-07-30T02:56:08Z 2020-02-15T06:59:49Z +2523 92 1 9240 4.99 2005-07-30T13:57:54Z 2020-02-15T06:59:49Z +2524 92 2 11203 4.99 2005-08-02T11:52:41Z 2020-02-15T06:59:49Z +2525 92 2 11245 2.99 2005-08-02T13:33:50Z 2020-02-15T06:59:49Z +2526 92 1 11849 4.99 2005-08-17T13:24:55Z 2020-02-15T06:59:49Z +2527 92 2 13020 5.99 2005-08-19T08:07:50Z 2020-02-15T06:59:49Z +2528 92 1 13495 0.99 2005-08-20T01:40:25Z 2020-02-15T06:59:49Z +2529 92 1 13620 2.99 2005-08-20T06:41:27Z 2020-02-15T06:59:49Z +2530 92 1 14798 0.99 2005-08-22T00:44:08Z 2020-02-15T06:59:49Z +2531 92 2 14998 4.99 2005-08-22T07:53:14Z 2020-02-15T06:59:49Z +2532 93 2 113 2.99 2005-05-25T19:07:40Z 2020-02-15T06:59:49Z +2533 93 2 420 6.99 2005-05-27T15:19:38Z 2020-02-15T06:59:49Z +2534 93 1 1025 4.99 2005-05-31T03:41:37Z 2020-02-15T06:59:49Z +2535 93 2 2256 4.99 2005-06-18T05:21:56Z 2020-02-15T06:59:49Z +2536 93 1 3109 0.99 2005-06-20T17:33:55Z 2020-02-15T06:59:49Z +2537 93 1 4733 2.99 2005-07-08T13:12:07Z 2020-02-15T06:59:49Z +2538 93 2 5130 4.99 2005-07-09T07:29:45Z 2020-02-15T06:59:49Z +2539 93 2 6287 4.99 2005-07-11T17:00:04Z 2020-02-15T06:59:49Z +2540 93 1 6586 4.99 2005-07-12T06:56:24Z 2020-02-15T06:59:49Z +2541 93 1 7301 2.99 2005-07-27T12:50:23Z 2020-02-15T06:59:49Z +2542 93 1 8233 0.99 2005-07-29T00:16:23Z 2020-02-15T06:59:49Z +2543 93 2 11271 5.99 2005-08-02T14:18:22Z 2020-02-15T06:59:49Z +2544 93 1 12704 4.99 2005-08-18T20:43:00Z 2020-02-15T06:59:49Z +2545 93 1 13555 2.99 2005-08-20T04:09:50Z 2020-02-15T06:59:49Z +2546 93 2 13904 2.99 2005-08-20T16:11:34Z 2020-02-15T06:59:49Z +2547 93 1 13950 8.99 2005-08-20T17:58:00Z 2020-02-15T06:59:49Z +2548 93 1 13993 4.99 2005-08-20T19:32:29Z 2020-02-15T06:59:49Z +2549 93 1 14195 0.99 2005-08-21T03:40:35Z 2020-02-15T06:59:49Z +2550 93 2 14333 4.99 2005-08-21T08:31:03Z 2020-02-15T06:59:49Z +2551 93 2 15324 5.99 2005-08-22T20:23:13Z 2020-02-15T06:59:49Z +2552 93 2 15631 2.99 2005-08-23T07:30:23Z 2020-02-15T06:59:49Z +2553 93 1 15696 0.99 2005-08-23T10:04:17Z 2020-02-15T06:59:49Z +2554 93 2 15913 1.99 2005-08-23T17:48:30Z 2020-02-15T06:59:49Z +2555 94 1 127 2.99 2005-05-25T21:10:40Z 2020-02-15T06:59:49Z +2556 94 2 629 4.99 2005-05-28T17:19:15Z 2020-02-15T06:59:49Z +2557 94 2 1213 2.99 2005-06-15T03:14:05Z 2020-02-15T06:59:49Z +2558 94 1 1367 4.99 2005-06-15T14:25:17Z 2020-02-15T06:59:49Z +2559 94 2 1734 3.99 2005-06-16T15:49:30Z 2020-02-15T06:59:49Z +2560 94 2 2620 4.99 2005-06-19T08:06:29Z 2020-02-15T06:59:49Z +2561 94 1 2816 2.99 2005-06-19T20:04:23Z 2020-02-15T06:59:49Z +2562 94 2 4044 0.99 2005-07-07T03:22:23Z 2020-02-15T06:59:49Z +2563 94 1 4287 8.99 2005-07-07T15:37:31Z 2020-02-15T06:59:49Z +2564 94 2 5719 4.99 2005-07-10T11:07:40Z 2020-02-15T06:59:49Z +2565 94 2 5970 4.99 2005-07-11T00:04:50Z 2020-02-15T06:59:49Z +2566 94 2 7809 2.99 2005-07-28T07:59:46Z 2020-02-15T06:59:49Z +2567 94 2 7979 0.99 2005-07-28T14:16:30Z 2020-02-15T06:59:49Z +2568 94 1 9605 4.99 2005-07-31T03:50:07Z 2020-02-15T06:59:49Z +2569 94 1 12316 2.99 2005-08-18T06:16:09Z 2020-02-15T06:59:49Z +2570 94 1 13786 5.99 2005-08-20T12:13:24Z 2020-02-15T06:59:49Z +2571 94 2 14804 1.99 2005-08-22T00:51:25Z 2020-02-15T06:59:49Z +2572 94 1 14865 4.99 2005-08-22T03:06:38Z 2020-02-15T06:59:49Z +2573 94 1 14978 0.99 2005-08-22T07:13:15Z 2020-02-15T06:59:49Z +2574 94 1 15693 0.99 2005-08-23T10:00:24Z 2020-02-15T06:59:49Z +2575 94 1 15371 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2576 95 1 490 4.99 2005-05-28T00:09:56Z 2020-02-15T06:59:49Z +2577 95 2 1174 2.99 2005-06-15T00:12:51Z 2020-02-15T06:59:49Z +2578 95 2 1261 1.99 2005-06-15T06:52:57Z 2020-02-15T06:59:49Z +2579 95 2 3056 2.99 2005-06-20T13:20:58Z 2020-02-15T06:59:49Z +2580 95 2 3426 0.99 2005-06-21T18:12:10Z 2020-02-15T06:59:49Z +2581 95 1 3633 1.99 2005-07-06T06:43:26Z 2020-02-15T06:59:49Z +2582 95 2 4000 4.99 2005-07-06T23:58:37Z 2020-02-15T06:59:49Z +2583 95 1 4835 5.99 2005-07-08T18:08:13Z 2020-02-15T06:59:49Z +2584 95 2 7245 5.99 2005-07-27T10:29:06Z 2020-02-15T06:59:49Z +2585 95 1 7471 4.99 2005-07-27T19:02:19Z 2020-02-15T06:59:49Z +2586 95 1 9222 6.99 2005-07-30T13:21:08Z 2020-02-15T06:59:49Z +2587 95 1 9695 6.99 2005-07-31T07:13:30Z 2020-02-15T06:59:49Z +2588 95 1 9951 4.99 2005-07-31T15:51:16Z 2020-02-15T06:59:49Z +2589 95 1 10130 0.99 2005-07-31T21:44:30Z 2020-02-15T06:59:49Z +2590 95 2 10446 0.99 2005-08-01T09:02:17Z 2020-02-15T06:59:49Z +2591 95 2 12351 5.99 2005-08-18T07:32:12Z 2020-02-15T06:59:49Z +2592 95 2 13516 7.99 2005-08-20T02:32:45Z 2020-02-15T06:59:49Z +2593 95 2 14203 4.99 2005-08-21T03:51:52Z 2020-02-15T06:59:49Z +2594 96 1 1266 3.99 2005-06-15T07:11:39Z 2020-02-15T06:59:49Z +2595 96 2 1413 7.99 2005-06-15T17:25:07Z 2020-02-15T06:59:49Z +2596 96 2 1437 0.99 2005-06-15T18:37:04Z 2020-02-15T06:59:49Z +2597 96 1 2372 0.99 2005-06-18T14:37:37Z 2020-02-15T06:59:49Z +2598 96 2 2973 5.99 2005-06-20T07:59:27Z 2020-02-15T06:59:49Z +2599 96 1 3308 0.99 2005-06-21T07:58:36Z 2020-02-15T06:59:49Z +2600 96 2 3463 0.99 2005-06-21T22:00:00Z 2020-02-15T06:59:49Z +2601 96 1 3720 2.99 2005-07-06T11:06:57Z 2020-02-15T06:59:49Z +2602 96 2 3742 2.99 2005-07-06T12:01:38Z 2020-02-15T06:59:49Z +2603 96 1 4961 4.99 2005-07-08T23:35:53Z 2020-02-15T06:59:49Z +2604 96 1 5558 0.99 2005-07-10T03:12:08Z 2020-02-15T06:59:49Z +2605 96 1 5678 4.99 2005-07-10T08:42:42Z 2020-02-15T06:59:49Z +2606 96 1 5696 2.99 2005-07-10T09:44:32Z 2020-02-15T06:59:49Z +2607 96 2 8125 4.99 2005-07-28T19:31:48Z 2020-02-15T06:59:49Z +2608 96 1 8437 6.99 2005-07-29T07:23:43Z 2020-02-15T06:59:49Z +2609 96 2 9093 3.99 2005-07-30T08:33:24Z 2020-02-15T06:59:49Z +2610 96 1 9315 4.99 2005-07-30T17:05:29Z 2020-02-15T06:59:49Z +2611 96 1 9662 3.99 2005-07-31T06:09:53Z 2020-02-15T06:59:49Z +2612 96 2 10031 4.99 2005-07-31T18:40:15Z 2020-02-15T06:59:49Z +2613 96 2 11864 4.99 2005-08-17T14:02:01Z 2020-02-15T06:59:49Z +2614 96 1 11984 3.99 2005-08-17T18:16:30Z 2020-02-15T06:59:49Z +2615 96 1 12199 4.99 2005-08-18T02:09:23Z 2020-02-15T06:59:49Z +2616 96 2 12525 4.99 2005-08-18T13:48:31Z 2020-02-15T06:59:49Z +2617 96 1 13514 0.99 2005-08-20T02:28:09Z 2020-02-15T06:59:49Z +2618 96 1 13855 4.99 2005-08-20T14:48:55Z 2020-02-15T06:59:49Z +2619 96 1 14462 3.99 2005-08-21T12:50:57Z 2020-02-15T06:59:49Z +2620 96 2 15989 4.99 2005-08-23T20:24:36Z 2020-02-15T06:59:49Z +2621 97 2 2083 2.99 2005-06-17T17:14:00Z 2020-02-15T06:59:49Z +2622 97 2 2790 4.99 2005-06-19T18:49:45Z 2020-02-15T06:59:49Z +2623 97 1 3459 0.99 2005-06-21T21:45:47Z 2020-02-15T06:59:49Z +2624 97 1 3540 2.99 2005-07-06T01:47:20Z 2020-02-15T06:59:49Z +2625 97 2 3565 0.99 2005-07-06T03:02:58Z 2020-02-15T06:59:49Z +2626 97 2 3818 4.99 2005-07-06T15:33:31Z 2020-02-15T06:59:49Z +2627 97 2 4312 4.99 2005-07-07T17:34:59Z 2020-02-15T06:59:49Z +2628 97 1 4508 4.99 2005-07-08T02:28:41Z 2020-02-15T06:59:49Z +2629 97 2 5454 4.99 2005-07-09T22:24:25Z 2020-02-15T06:59:49Z +2630 97 1 6544 0.99 2005-07-12T04:56:15Z 2020-02-15T06:59:49Z +2631 97 1 6726 0.99 2005-07-12T13:48:14Z 2020-02-15T06:59:49Z +2632 97 2 7182 5.99 2005-07-27T08:15:38Z 2020-02-15T06:59:49Z +2633 97 2 7924 0.99 2005-07-28T12:08:53Z 2020-02-15T06:59:49Z +2634 97 2 8438 2.99 2005-07-29T07:25:42Z 2020-02-15T06:59:49Z +2635 97 1 9591 4.99 2005-07-31T03:19:28Z 2020-02-15T06:59:49Z +2636 97 1 10820 2.99 2005-08-01T22:53:40Z 2020-02-15T06:59:49Z +2637 97 2 14323 4.99 2005-08-21T08:08:43Z 2020-02-15T06:59:49Z +2638 97 1 15006 0.99 2005-08-22T08:20:15Z 2020-02-15T06:59:49Z +2639 98 2 214 3.99 2005-05-26T08:48:49Z 2020-02-15T06:59:49Z +2640 98 1 1362 3.99 2005-06-15T13:53:32Z 2020-02-15T06:59:49Z +2641 98 2 1590 5.99 2005-06-16T05:11:41Z 2020-02-15T06:59:49Z +2642 98 1 2213 4.99 2005-06-18T02:36:47Z 2020-02-15T06:59:49Z +2643 98 1 2445 0.99 2005-06-18T19:02:11Z 2020-02-15T06:59:49Z +2644 98 2 2601 4.99 2005-06-19T06:09:44Z 2020-02-15T06:59:49Z +2645 98 2 3399 4.99 2005-06-21T15:47:48Z 2020-02-15T06:59:49Z +2646 98 2 3682 7.99 2005-07-06T09:22:48Z 2020-02-15T06:59:49Z +2647 98 1 4549 4.99 2005-07-08T04:25:03Z 2020-02-15T06:59:49Z +2648 98 2 6951 2.99 2005-07-26T23:47:31Z 2020-02-15T06:59:49Z +2649 98 2 7120 3.99 2005-07-27T05:56:39Z 2020-02-15T06:59:49Z +2650 98 1 7530 0.99 2005-07-27T21:18:58Z 2020-02-15T06:59:49Z +2651 98 1 8324 5.99 2005-07-29T03:56:05Z 2020-02-15T06:59:49Z +2652 98 2 8622 4.99 2005-07-29T13:53:28Z 2020-02-15T06:59:49Z +2653 98 2 8818 5.99 2005-07-29T22:14:04Z 2020-02-15T06:59:49Z +2654 98 1 9753 2.99 2005-07-31T09:22:38Z 2020-02-15T06:59:49Z +2655 98 2 10694 3.99 2005-08-01T18:15:07Z 2020-02-15T06:59:49Z +2656 98 1 10925 2.99 2005-08-02T02:24:38Z 2020-02-15T06:59:49Z +2657 98 2 11007 0.99 2005-08-02T05:05:53Z 2020-02-15T06:59:49Z +2658 98 2 11200 2.99 2005-08-02T11:48:36Z 2020-02-15T06:59:49Z +2659 98 1 11635 5.99 2005-08-17T04:33:17Z 2020-02-15T06:59:49Z +2660 98 1 11730 2.99 2005-08-17T08:22:00Z 2020-02-15T06:59:49Z +2661 98 2 12221 5.99 2005-08-18T02:50:51Z 2020-02-15T06:59:49Z +2662 98 2 14459 1.99 2005-08-21T12:48:08Z 2020-02-15T06:59:49Z +2663 98 1 15536 7.99 2005-08-23T03:58:28Z 2020-02-15T06:59:49Z +2664 99 2 867 0.99 2005-05-30T03:54:43Z 2020-02-15T06:59:49Z +2665 99 1 1858 4.99 2005-06-17T01:13:11Z 2020-02-15T06:59:49Z +2666 99 1 2368 2.99 2005-06-18T14:10:27Z 2020-02-15T06:59:49Z +2667 99 2 3780 6.99 2005-07-06T13:52:02Z 2020-02-15T06:59:49Z +2668 99 2 4170 2.99 2005-07-07T09:44:36Z 2020-02-15T06:59:49Z +2669 99 2 4344 4.99 2005-07-07T18:50:47Z 2020-02-15T06:59:49Z +2670 99 1 4589 0.99 2005-07-08T06:26:04Z 2020-02-15T06:59:49Z +2671 99 2 4800 4.99 2005-07-08T16:51:08Z 2020-02-15T06:59:49Z +2672 99 2 4954 2.99 2005-07-08T23:14:16Z 2020-02-15T06:59:49Z +2673 99 2 5035 2.99 2005-07-09T02:51:34Z 2020-02-15T06:59:49Z +2674 99 1 5748 2.99 2005-07-10T12:19:59Z 2020-02-15T06:59:49Z +2675 99 1 6289 2.99 2005-07-11T17:06:39Z 2020-02-15T06:59:49Z +2676 99 1 6370 3.99 2005-07-11T21:28:32Z 2020-02-15T06:59:49Z +2677 99 2 6662 4.99 2005-07-12T11:21:06Z 2020-02-15T06:59:49Z +2678 99 1 7039 4.99 2005-07-27T03:11:48Z 2020-02-15T06:59:49Z +2679 99 1 8072 0.99 2005-07-28T17:27:59Z 2020-02-15T06:59:49Z +2680 99 2 8242 7.99 2005-07-29T00:34:27Z 2020-02-15T06:59:49Z +2681 99 2 8514 0.99 2005-07-29T09:53:33Z 2020-02-15T06:59:49Z +2682 99 2 10388 7.99 2005-08-01T06:42:44Z 2020-02-15T06:59:49Z +2683 99 1 10455 1.99 2005-08-01T09:15:00Z 2020-02-15T06:59:49Z +2684 99 2 11266 4.99 2005-08-02T14:07:35Z 2020-02-15T06:59:49Z +2685 99 2 12379 0.99 2005-08-18T08:26:48Z 2020-02-15T06:59:49Z +2686 99 2 12869 8.99 2005-08-19T02:50:36Z 2020-02-15T06:59:49Z +2687 99 1 11593 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2688 100 1 71 0.99 2005-05-25T10:26:39Z 2020-02-15T06:59:49Z +2689 100 2 1216 4.99 2005-06-15T03:23:48Z 2020-02-15T06:59:49Z +2690 100 1 1340 3.99 2005-06-15T12:24:15Z 2020-02-15T06:59:49Z +2691 100 1 1427 2.99 2005-06-15T18:17:28Z 2020-02-15T06:59:49Z +2692 100 2 3468 6.99 2005-06-21T22:43:45Z 2020-02-15T06:59:49Z +2693 100 2 3602 5.99 2005-07-06T05:23:10Z 2020-02-15T06:59:49Z +2694 100 1 3800 8.99 2005-07-06T15:01:27Z 2020-02-15T06:59:49Z +2695 100 1 4209 2.99 2005-07-07T11:35:08Z 2020-02-15T06:59:49Z +2696 100 1 4970 8.99 2005-07-08T23:54:29Z 2020-02-15T06:59:49Z +2697 100 2 4980 6.99 2005-07-09T00:26:59Z 2020-02-15T06:59:49Z +2698 100 2 5238 4.99 2005-07-09T13:11:14Z 2020-02-15T06:59:49Z +2699 100 2 5355 6.99 2005-07-09T18:07:17Z 2020-02-15T06:59:49Z +2700 100 1 6655 4.99 2005-07-12T11:08:32Z 2020-02-15T06:59:49Z +2701 100 2 7819 4.99 2005-07-28T08:27:14Z 2020-02-15T06:59:49Z +2702 100 1 7921 1.99 2005-07-28T12:02:46Z 2020-02-15T06:59:49Z +2703 100 2 8203 0.99 2005-07-28T23:14:56Z 2020-02-15T06:59:49Z +2704 100 2 9048 5.99 2005-07-30T06:57:07Z 2020-02-15T06:59:49Z +2705 100 1 9271 4.99 2005-07-30T15:04:31Z 2020-02-15T06:59:49Z +2706 100 1 11143 0.99 2005-08-02T09:32:54Z 2020-02-15T06:59:49Z +2707 100 2 11346 4.99 2005-08-02T17:15:38Z 2020-02-15T06:59:49Z +2708 100 1 12657 0.99 2005-08-18T19:02:16Z 2020-02-15T06:59:49Z +2709 100 1 15163 0.99 2005-08-22T14:43:13Z 2020-02-15T06:59:49Z +2710 100 2 15246 3.99 2005-08-22T17:50:49Z 2020-02-15T06:59:49Z +2711 100 2 15021 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2712 101 1 468 9.99 2005-05-27T21:13:10Z 2020-02-15T06:59:49Z +2713 101 1 4975 2.99 2005-07-09T00:02:46Z 2020-02-15T06:59:49Z +2714 101 2 5100 2.99 2005-07-09T06:16:03Z 2020-02-15T06:59:49Z +2715 101 1 5132 5.99 2005-07-09T07:40:32Z 2020-02-15T06:59:49Z +2716 101 2 5198 2.99 2005-07-09T10:49:10Z 2020-02-15T06:59:49Z +2717 101 1 5757 2.99 2005-07-10T12:40:17Z 2020-02-15T06:59:49Z +2718 101 2 6433 5.99 2005-07-12T00:12:02Z 2020-02-15T06:59:49Z +2719 101 2 7112 5.99 2005-07-27T05:38:42Z 2020-02-15T06:59:49Z +2720 101 2 7866 8.99 2005-07-28T10:08:01Z 2020-02-15T06:59:49Z +2721 101 1 8301 0.99 2005-07-29T03:00:08Z 2020-02-15T06:59:49Z +2722 101 2 8825 1.99 2005-07-29T22:24:16Z 2020-02-15T06:59:49Z +2723 101 2 8833 4.99 2005-07-29T22:39:36Z 2020-02-15T06:59:49Z +2724 101 2 9965 6.99 2005-07-31T16:19:32Z 2020-02-15T06:59:49Z +2725 101 2 10218 0.99 2005-08-01T01:09:44Z 2020-02-15T06:59:49Z +2726 101 1 10253 6.99 2005-08-01T02:39:49Z 2020-02-15T06:59:49Z +2727 101 1 10407 0.99 2005-08-01T07:38:07Z 2020-02-15T06:59:49Z +2728 101 2 11959 4.99 2005-08-17T17:23:35Z 2020-02-15T06:59:49Z +2729 101 2 12174 2.99 2005-08-18T01:08:53Z 2020-02-15T06:59:49Z +2730 101 1 12471 4.99 2005-08-18T11:57:00Z 2020-02-15T06:59:49Z +2731 101 2 13370 1.99 2005-08-19T21:20:11Z 2020-02-15T06:59:49Z +2732 101 1 14476 0.99 2005-08-21T13:31:07Z 2020-02-15T06:59:49Z +2733 101 2 14542 3.99 2005-08-21T15:36:34Z 2020-02-15T06:59:49Z +2734 101 2 15103 2.99 2005-08-22T12:01:06Z 2020-02-15T06:59:49Z +2735 101 2 12141 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2736 102 1 247 4.99 2005-05-26T14:01:05Z 2020-02-15T06:59:49Z +2737 102 1 358 0.99 2005-05-27T06:43:59Z 2020-02-15T06:59:49Z +2738 102 2 562 1.99 2005-05-28T09:01:21Z 2020-02-15T06:59:49Z +2739 102 2 1215 2.99 2005-06-15T03:21:00Z 2020-02-15T06:59:49Z +2740 102 2 2419 8.99 2005-06-18T17:21:24Z 2020-02-15T06:59:49Z +2741 102 2 3520 1.99 2005-07-06T00:58:27Z 2020-02-15T06:59:49Z +2742 102 2 3630 1.99 2005-07-06T06:27:15Z 2020-02-15T06:59:49Z +2743 102 2 3665 4.99 2005-07-06T08:23:08Z 2020-02-15T06:59:49Z +2744 102 1 4089 6.99 2005-07-07T05:45:59Z 2020-02-15T06:59:49Z +2745 102 2 4777 3.99 2005-07-08T15:48:34Z 2020-02-15T06:59:49Z +2746 102 1 4997 6.99 2005-07-09T01:06:03Z 2020-02-15T06:59:49Z +2747 102 1 5009 5.99 2005-07-09T01:32:17Z 2020-02-15T06:59:49Z +2748 102 1 5109 4.99 2005-07-09T06:48:49Z 2020-02-15T06:59:49Z +2749 102 2 5509 5.99 2005-07-10T00:54:46Z 2020-02-15T06:59:49Z +2750 102 1 5716 2.99 2005-07-10T10:59:23Z 2020-02-15T06:59:49Z +2751 102 2 6434 5.99 2005-07-12T00:14:25Z 2020-02-15T06:59:49Z +2752 102 2 7119 0.99 2005-07-27T05:55:32Z 2020-02-15T06:59:49Z +2753 102 2 7247 0.99 2005-07-27T10:32:58Z 2020-02-15T06:59:49Z +2754 102 2 7439 6.99 2005-07-27T17:42:31Z 2020-02-15T06:59:49Z +2755 102 1 8186 0.99 2005-07-28T22:30:27Z 2020-02-15T06:59:49Z +2756 102 1 8664 5.99 2005-07-29T15:36:27Z 2020-02-15T06:59:49Z +2757 102 2 9151 3.99 2005-07-30T10:50:53Z 2020-02-15T06:59:49Z +2758 102 1 9192 2.99 2005-07-30T12:26:26Z 2020-02-15T06:59:49Z +2759 102 2 9295 0.99 2005-07-30T16:18:39Z 2020-02-15T06:59:49Z +2760 102 2 9617 2.99 2005-07-31T04:15:38Z 2020-02-15T06:59:49Z +2761 102 1 9780 4.99 2005-07-31T10:10:22Z 2020-02-15T06:59:49Z +2762 102 2 10841 1.99 2005-08-01T23:39:21Z 2020-02-15T06:59:49Z +2763 102 2 11099 4.99 2005-08-02T08:07:12Z 2020-02-15T06:59:49Z +2764 102 1 11183 4.99 2005-08-02T11:00:32Z 2020-02-15T06:59:49Z +2765 102 2 12495 4.99 2005-08-18T12:56:37Z 2020-02-15T06:59:49Z +2766 102 1 13420 9.99 2005-08-19T22:57:25Z 2020-02-15T06:59:49Z +2767 102 1 15049 1.99 2005-08-22T10:06:28Z 2020-02-15T06:59:49Z +2768 102 2 16031 3.99 2005-08-23T21:59:26Z 2020-02-15T06:59:49Z +2769 103 1 240 7.99 2005-05-26T12:40:23Z 2020-02-15T06:59:49Z +2770 103 1 658 9.99 2005-05-28T20:23:23Z 2020-02-15T06:59:49Z +2771 103 2 1396 4.99 2005-06-15T16:22:38Z 2020-02-15T06:59:49Z +2772 103 1 2118 0.99 2005-06-17T20:28:29Z 2020-02-15T06:59:49Z +2773 103 1 2197 0.99 2005-06-18T01:50:27Z 2020-02-15T06:59:49Z +2774 103 1 2724 0.99 2005-06-19T14:57:54Z 2020-02-15T06:59:49Z +2775 103 2 3750 6.99 2005-07-06T12:19:28Z 2020-02-15T06:59:49Z +2776 103 1 3850 4.99 2005-07-06T16:51:21Z 2020-02-15T06:59:49Z +2777 103 2 4040 6.99 2005-07-07T03:02:40Z 2020-02-15T06:59:49Z +2778 103 1 4213 2.99 2005-07-07T11:53:49Z 2020-02-15T06:59:49Z +2779 103 1 4357 1.99 2005-07-07T19:24:39Z 2020-02-15T06:59:49Z +2780 103 2 4872 4.99 2005-07-08T19:23:16Z 2020-02-15T06:59:49Z +2781 103 2 5163 4.99 2005-07-09T09:00:28Z 2020-02-15T06:59:49Z +2782 103 1 6525 5.99 2005-07-12T04:17:15Z 2020-02-15T06:59:49Z +2783 103 2 6697 6.99 2005-07-12T12:44:57Z 2020-02-15T06:59:49Z +2784 103 2 6949 2.99 2005-07-26T23:44:12Z 2020-02-15T06:59:49Z +2785 103 1 7310 0.99 2005-07-27T13:00:55Z 2020-02-15T06:59:49Z +2786 103 2 7472 6.99 2005-07-27T19:04:19Z 2020-02-15T06:59:49Z +2787 103 1 8302 0.99 2005-07-29T03:01:24Z 2020-02-15T06:59:49Z +2788 103 1 8520 4.99 2005-07-29T10:10:02Z 2020-02-15T06:59:49Z +2789 103 2 9390 4.99 2005-07-30T19:42:07Z 2020-02-15T06:59:49Z +2790 103 2 12942 7.99 2005-08-19T05:40:36Z 2020-02-15T06:59:49Z +2791 103 1 13676 0.99 2005-08-20T08:33:21Z 2020-02-15T06:59:49Z +2792 103 2 14064 2.99 2005-08-20T22:39:16Z 2020-02-15T06:59:49Z +2793 103 2 14289 4.99 2005-08-21T06:58:49Z 2020-02-15T06:59:49Z +2794 103 2 15401 8.99 2005-08-22T23:13:10Z 2020-02-15T06:59:49Z +2795 103 1 15461 5.99 2005-08-23T01:13:52Z 2020-02-15T06:59:49Z +2796 103 1 15467 3.99 2005-08-23T01:22:12Z 2020-02-15T06:59:49Z +2797 103 1 15599 5.99 2005-08-23T06:25:07Z 2020-02-15T06:59:49Z +2798 103 2 15679 0.99 2005-08-23T09:27:29Z 2020-02-15T06:59:49Z +2799 103 2 16048 8.99 2005-08-23T22:43:07Z 2020-02-15T06:59:49Z +2800 104 1 163 10.99 2005-05-26T02:26:23Z 2020-02-15T06:59:49Z +2801 104 2 808 3.99 2005-05-29T19:08:20Z 2020-02-15T06:59:49Z +2802 104 2 1287 3.99 2005-06-15T08:41:38Z 2020-02-15T06:59:49Z +2803 104 1 2107 0.99 2005-06-17T19:31:16Z 2020-02-15T06:59:49Z +2804 104 2 2928 0.99 2005-06-20T04:43:45Z 2020-02-15T06:59:49Z +2805 104 2 3273 2.99 2005-06-21T05:24:17Z 2020-02-15T06:59:49Z +2806 104 2 4012 4.99 2005-07-07T00:56:09Z 2020-02-15T06:59:49Z +2807 104 2 4438 6.99 2005-07-07T22:56:17Z 2020-02-15T06:59:49Z +2808 104 2 4520 4.99 2005-07-08T02:53:46Z 2020-02-15T06:59:49Z +2809 104 1 4529 7.99 2005-07-08T03:26:20Z 2020-02-15T06:59:49Z +2810 104 1 4917 2.99 2005-07-08T21:32:30Z 2020-02-15T06:59:49Z +2811 104 1 5376 1.99 2005-07-09T18:54:08Z 2020-02-15T06:59:49Z +2812 104 2 7107 2.99 2005-07-27T05:22:04Z 2020-02-15T06:59:49Z +2813 104 1 8413 1.99 2005-07-29T06:47:39Z 2020-02-15T06:59:49Z +2814 104 1 9090 3.99 2005-07-30T08:24:42Z 2020-02-15T06:59:49Z +2815 104 2 9996 5.99 2005-07-31T17:32:03Z 2020-02-15T06:59:49Z +2816 104 1 11700 2.99 2005-08-17T07:12:31Z 2020-02-15T06:59:49Z +2817 104 1 12453 3.99 2005-08-18T11:17:07Z 2020-02-15T06:59:49Z +2818 104 1 13005 0.99 2005-08-19T07:45:42Z 2020-02-15T06:59:49Z +2819 104 1 13017 1.99 2005-08-19T08:02:24Z 2020-02-15T06:59:49Z +2820 104 1 13179 4.99 2005-08-19T13:59:53Z 2020-02-15T06:59:49Z +2821 104 1 13410 3.99 2005-08-19T22:41:44Z 2020-02-15T06:59:49Z +2822 104 1 14218 3.99 2005-08-21T04:43:59Z 2020-02-15T06:59:49Z +2823 104 2 15186 0.99 2005-08-22T15:52:57Z 2020-02-15T06:59:49Z +2824 105 1 327 8.99 2005-05-27T01:18:57Z 2020-02-15T06:59:49Z +2825 105 2 473 7.99 2005-05-27T21:36:34Z 2020-02-15T06:59:49Z +2826 105 1 485 2.99 2005-05-27T23:40:52Z 2020-02-15T06:59:49Z +2827 105 1 779 6.99 2005-05-29T14:17:17Z 2020-02-15T06:59:49Z +2828 105 2 1789 3.99 2005-06-16T19:49:18Z 2020-02-15T06:59:49Z +2829 105 2 1991 3.99 2005-06-17T10:49:23Z 2020-02-15T06:59:49Z +2830 105 2 2635 3.99 2005-06-19T09:08:45Z 2020-02-15T06:59:49Z +2831 105 2 5261 4.99 2005-07-09T14:06:56Z 2020-02-15T06:59:49Z +2832 105 1 5429 4.99 2005-07-09T21:14:03Z 2020-02-15T06:59:49Z +2833 105 2 5542 2.99 2005-07-10T02:45:53Z 2020-02-15T06:59:49Z +2834 105 2 5677 4.99 2005-07-10T08:41:28Z 2020-02-15T06:59:49Z +2835 105 2 6546 4.99 2005-07-12T04:57:17Z 2020-02-15T06:59:49Z +2836 105 1 7442 2.99 2005-07-27T17:47:00Z 2020-02-15T06:59:49Z +2837 105 2 8980 2.99 2005-07-30T04:22:15Z 2020-02-15T06:59:49Z +2838 105 2 9124 3.99 2005-07-30T09:43:12Z 2020-02-15T06:59:49Z +2839 105 2 9198 5.99 2005-07-30T12:37:08Z 2020-02-15T06:59:49Z +2840 105 2 9210 9.99 2005-07-30T12:56:44Z 2020-02-15T06:59:49Z +2841 105 1 10513 4.99 2005-08-01T11:37:34Z 2020-02-15T06:59:49Z +2842 105 1 12217 0.99 2005-08-18T02:44:44Z 2020-02-15T06:59:49Z +2843 105 2 12899 2.99 2005-08-19T04:03:34Z 2020-02-15T06:59:49Z +2844 105 1 13057 6.99 2005-08-19T09:40:05Z 2020-02-15T06:59:49Z +2845 105 1 13751 2.99 2005-08-20T11:17:03Z 2020-02-15T06:59:49Z +2846 105 2 14048 0.99 2005-08-20T22:03:18Z 2020-02-15T06:59:49Z +2847 105 2 15624 4.99 2005-08-23T07:24:27Z 2020-02-15T06:59:49Z +2848 105 2 15688 4.99 2005-08-23T09:48:45Z 2020-02-15T06:59:49Z +2849 105 2 15803 2.99 2005-08-23T14:27:07Z 2020-02-15T06:59:49Z +2850 106 2 552 3.99 2005-05-28T07:53:38Z 2020-02-15T06:59:49Z +2851 106 2 1156 0.99 2005-05-31T22:37:34Z 2020-02-15T06:59:49Z +2852 106 1 2295 4.99 2005-06-18T07:56:18Z 2020-02-15T06:59:49Z +2853 106 1 3023 4.99 2005-06-20T11:18:11Z 2020-02-15T06:59:49Z +2854 106 1 4229 4.99 2005-07-07T12:43:23Z 2020-02-15T06:59:49Z +2855 106 2 4277 2.99 2005-07-07T14:52:12Z 2020-02-15T06:59:49Z +2856 106 1 4665 3.99 2005-07-08T10:04:24Z 2020-02-15T06:59:49Z +2857 106 2 5453 3.99 2005-07-09T22:24:11Z 2020-02-15T06:59:49Z +2858 106 2 6992 0.99 2005-07-27T01:04:45Z 2020-02-15T06:59:49Z +2859 106 1 7224 3.99 2005-07-27T09:44:26Z 2020-02-15T06:59:49Z +2860 106 1 7483 4.99 2005-07-27T19:25:00Z 2020-02-15T06:59:49Z +2861 106 1 8115 4.99 2005-07-28T19:14:17Z 2020-02-15T06:59:49Z +2862 106 2 9072 2.99 2005-07-30T07:45:49Z 2020-02-15T06:59:49Z +2863 106 2 9747 7.99 2005-07-31T09:16:57Z 2020-02-15T06:59:49Z +2864 106 2 10213 8.99 2005-08-01T01:03:18Z 2020-02-15T06:59:49Z +2865 106 1 10228 2.99 2005-08-01T01:43:18Z 2020-02-15T06:59:49Z +2866 106 1 10444 8.99 2005-08-01T09:01:40Z 2020-02-15T06:59:49Z +2867 106 2 11436 0.99 2005-08-02T20:16:06Z 2020-02-15T06:59:49Z +2868 106 1 12159 7.99 2005-08-18T00:36:09Z 2020-02-15T06:59:49Z +2869 106 1 12845 2.99 2005-08-19T02:02:37Z 2020-02-15T06:59:49Z +2870 106 2 14431 2.99 2005-08-21T11:31:15Z 2020-02-15T06:59:49Z +2871 106 1 14920 0.99 2005-08-22T05:08:58Z 2020-02-15T06:59:49Z +2872 106 1 15154 6.99 2005-08-22T14:27:37Z 2020-02-15T06:59:49Z +2873 107 1 170 5.99 2005-05-26T03:11:12Z 2020-02-15T06:59:49Z +2874 107 1 1026 5.99 2005-05-31T03:45:26Z 2020-02-15T06:59:49Z +2875 107 2 1243 2.99 2005-06-15T05:07:32Z 2020-02-15T06:59:49Z +2876 107 2 2693 6.99 2005-06-19T13:11:47Z 2020-02-15T06:59:49Z +2877 107 2 2860 4.99 2005-06-19T23:20:40Z 2020-02-15T06:59:49Z +2878 107 2 2897 3.99 2005-06-20T02:34:23Z 2020-02-15T06:59:49Z +2879 107 1 3033 3.99 2005-06-20T12:02:05Z 2020-02-15T06:59:49Z +2880 107 2 3120 0.99 2005-06-20T18:19:29Z 2020-02-15T06:59:49Z +2881 107 2 3174 0.99 2005-06-20T22:24:00Z 2020-02-15T06:59:49Z +2882 107 2 3824 6.99 2005-07-06T15:43:15Z 2020-02-15T06:59:49Z +2883 107 2 5311 4.99 2005-07-09T16:02:54Z 2020-02-15T06:59:49Z +2884 107 2 5575 2.99 2005-07-10T03:55:50Z 2020-02-15T06:59:49Z +2885 107 2 5798 3.99 2005-07-10T14:45:09Z 2020-02-15T06:59:49Z +2886 107 2 6131 2.99 2005-07-11T08:22:05Z 2020-02-15T06:59:49Z +2887 107 2 6133 0.99 2005-07-11T08:25:22Z 2020-02-15T06:59:49Z +2888 107 1 6811 5.99 2005-07-12T17:54:33Z 2020-02-15T06:59:49Z +2889 107 2 6934 6.99 2005-07-26T23:11:03Z 2020-02-15T06:59:49Z +2890 107 2 7447 4.99 2005-07-27T18:02:08Z 2020-02-15T06:59:49Z +2891 107 1 7600 7.99 2005-07-27T23:41:18Z 2020-02-15T06:59:49Z +2892 107 1 8162 4.99 2005-07-28T21:11:46Z 2020-02-15T06:59:49Z +2893 107 2 8704 1.99 2005-07-29T17:13:45Z 2020-02-15T06:59:49Z +2894 107 1 9155 2.99 2005-07-30T11:00:00Z 2020-02-15T06:59:49Z +2895 107 2 9351 2.99 2005-07-30T18:28:30Z 2020-02-15T06:59:49Z +2896 107 1 10226 4.99 2005-08-01T01:40:04Z 2020-02-15T06:59:49Z +2897 107 2 13361 4.99 2005-08-19T21:07:22Z 2020-02-15T06:59:49Z +2898 107 1 13510 6.99 2005-08-20T02:18:30Z 2020-02-15T06:59:49Z +2899 107 1 14562 4.99 2005-08-21T16:22:59Z 2020-02-15T06:59:49Z +2900 107 1 15560 3.99 2005-08-23T05:01:13Z 2020-02-15T06:59:49Z +2901 107 1 13079 1.98 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2902 107 1 15497 0 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2903 108 1 105 4.99 2005-05-25T17:54:12Z 2020-02-15T06:59:49Z +2904 108 2 1055 0.99 2005-05-31T07:47:18Z 2020-02-15T06:59:49Z +2905 108 2 1372 4.99 2005-06-15T14:45:48Z 2020-02-15T06:59:49Z +2906 108 1 1425 2.99 2005-06-15T18:13:46Z 2020-02-15T06:59:49Z +2907 108 1 2061 8.99 2005-06-17T15:47:00Z 2020-02-15T06:59:49Z +2908 108 1 2210 2.99 2005-06-18T02:27:01Z 2020-02-15T06:59:49Z +2909 108 2 3116 4.99 2005-06-20T18:04:55Z 2020-02-15T06:59:49Z +2910 108 1 3875 0.99 2005-07-06T18:15:39Z 2020-02-15T06:59:49Z +2911 108 2 4082 2.99 2005-07-07T05:11:53Z 2020-02-15T06:59:49Z +2912 108 1 4303 1.99 2005-07-07T16:57:32Z 2020-02-15T06:59:49Z +2913 108 1 4650 4.99 2005-07-08T09:32:08Z 2020-02-15T06:59:49Z +2914 108 1 4754 0.99 2005-07-08T14:20:01Z 2020-02-15T06:59:49Z +2915 108 2 5274 6.99 2005-07-09T14:34:09Z 2020-02-15T06:59:49Z +2916 108 1 5661 5.99 2005-07-10T07:53:51Z 2020-02-15T06:59:49Z +2917 108 2 5806 4.99 2005-07-10T15:11:54Z 2020-02-15T06:59:49Z +2918 108 1 6841 0.99 2005-07-12T19:04:24Z 2020-02-15T06:59:49Z +2919 108 2 8329 5.99 2005-07-29T04:06:33Z 2020-02-15T06:59:49Z +2920 108 2 8587 4.99 2005-07-29T12:18:40Z 2020-02-15T06:59:49Z +2921 108 1 8846 4.99 2005-07-29T23:10:28Z 2020-02-15T06:59:49Z +2922 108 2 9755 4.99 2005-07-31T09:24:55Z 2020-02-15T06:59:49Z +2923 108 1 11316 5.99 2005-08-02T16:07:49Z 2020-02-15T06:59:49Z +2924 108 2 11445 6.99 2005-08-02T20:33:35Z 2020-02-15T06:59:49Z +2925 108 2 11759 2.99 2005-08-17T09:41:23Z 2020-02-15T06:59:49Z +2926 108 1 12583 2.99 2005-08-18T15:51:36Z 2020-02-15T06:59:49Z +2927 108 2 12625 6.99 2005-08-18T17:36:19Z 2020-02-15T06:59:49Z +2928 108 2 13754 2.99 2005-08-20T11:18:08Z 2020-02-15T06:59:49Z +2929 108 2 14635 3.99 2005-08-21T18:51:43Z 2020-02-15T06:59:49Z +2930 108 2 15556 8.99 2005-08-23T04:52:16Z 2020-02-15T06:59:49Z +2931 108 1 16001 2.99 2005-08-23T20:45:53Z 2020-02-15T06:59:49Z +2932 108 1 15294 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2933 109 1 203 5.99 2005-05-26T07:27:57Z 2020-02-15T06:59:49Z +2934 109 1 386 0.99 2005-05-27T10:26:31Z 2020-02-15T06:59:49Z +2935 109 2 622 3.99 2005-05-28T15:58:22Z 2020-02-15T06:59:49Z +2936 109 1 698 0.99 2005-05-29T02:10:52Z 2020-02-15T06:59:49Z +2937 109 1 1061 7.99 2005-05-31T08:27:58Z 2020-02-15T06:59:49Z +2938 109 1 1106 4.99 2005-05-31T14:36:52Z 2020-02-15T06:59:49Z +2939 109 1 1115 2.99 2005-05-31T16:07:09Z 2020-02-15T06:59:49Z +2940 109 2 1581 2.99 2005-06-16T04:28:45Z 2020-02-15T06:59:49Z +2941 109 2 1891 3.99 2005-06-17T04:16:44Z 2020-02-15T06:59:49Z +2942 109 2 2198 6.99 2005-06-18T01:51:22Z 2020-02-15T06:59:49Z +2943 109 2 2679 5.99 2005-06-19T12:12:30Z 2020-02-15T06:59:49Z +2944 109 2 3076 5.99 2005-06-20T15:01:19Z 2020-02-15T06:59:49Z +2945 109 1 4921 4.99 2005-07-08T21:43:21Z 2020-02-15T06:59:49Z +2946 109 1 5027 2.99 2005-07-09T02:32:37Z 2020-02-15T06:59:49Z +2947 109 2 5296 2.99 2005-07-09T15:26:27Z 2020-02-15T06:59:49Z +2948 109 2 6920 6.99 2005-07-12T22:32:58Z 2020-02-15T06:59:49Z +2949 109 2 7145 0.99 2005-07-27T07:01:00Z 2020-02-15T06:59:49Z +2950 109 1 8006 3.99 2005-07-28T15:15:41Z 2020-02-15T06:59:49Z +2951 109 1 9230 0.99 2005-07-30T13:39:42Z 2020-02-15T06:59:49Z +2952 109 1 9871 2.99 2005-07-31T13:25:46Z 2020-02-15T06:59:49Z +2953 109 2 10240 0.99 2005-08-01T02:09:33Z 2020-02-15T06:59:49Z +2954 109 2 10892 3.99 2005-08-02T01:12:06Z 2020-02-15T06:59:49Z +2955 109 2 12137 6.99 2005-08-17T23:52:26Z 2020-02-15T06:59:49Z +2956 109 1 13264 3.99 2005-08-19T17:27:10Z 2020-02-15T06:59:49Z +2957 109 2 15398 7.99 2005-08-22T23:10:49Z 2020-02-15T06:59:49Z +2958 109 2 15677 2.99 2005-08-23T09:23:36Z 2020-02-15T06:59:49Z +2959 110 1 515 7.99 2005-05-28T03:10:10Z 2020-02-15T06:59:49Z +2960 110 2 538 1.99 2005-05-28T06:21:05Z 2020-02-15T06:59:49Z +2961 110 2 1528 8.99 2005-06-16T00:32:52Z 2020-02-15T06:59:49Z +2962 110 1 3587 4.99 2005-07-06T04:27:52Z 2020-02-15T06:59:49Z +2963 110 1 4317 2.99 2005-07-07T17:44:49Z 2020-02-15T06:59:49Z +2964 110 2 4827 4.99 2005-07-08T17:46:30Z 2020-02-15T06:59:49Z +2965 110 1 6160 4.99 2005-07-11T10:08:13Z 2020-02-15T06:59:49Z +2966 110 1 7474 0.99 2005-07-27T19:07:17Z 2020-02-15T06:59:49Z +2967 110 2 7542 0.99 2005-07-27T21:43:04Z 2020-02-15T06:59:49Z +2968 110 1 7570 2.99 2005-07-27T22:40:06Z 2020-02-15T06:59:49Z +2969 110 1 11647 7.99 2005-08-17T04:54:14Z 2020-02-15T06:59:49Z +2970 110 2 12585 3.99 2005-08-18T15:52:12Z 2020-02-15T06:59:49Z +2971 110 1 13723 2.99 2005-08-20T10:05:30Z 2020-02-15T06:59:49Z +2972 110 2 15381 2.99 2005-08-22T22:28:36Z 2020-02-15T06:59:49Z +2973 111 2 505 2.99 2005-05-28T02:06:37Z 2020-02-15T06:59:49Z +2974 111 1 1593 6.99 2005-06-16T05:14:52Z 2020-02-15T06:59:49Z +2975 111 2 1974 2.99 2005-06-17T09:30:05Z 2020-02-15T06:59:49Z +2976 111 2 1999 1.99 2005-06-17T11:30:08Z 2020-02-15T06:59:49Z +2977 111 2 2297 4.99 2005-06-18T08:17:41Z 2020-02-15T06:59:49Z +2978 111 2 3087 2.99 2005-06-20T15:53:59Z 2020-02-15T06:59:49Z +2979 111 2 3333 2.99 2005-06-21T10:01:36Z 2020-02-15T06:59:49Z +2980 111 2 3485 1.99 2005-07-05T23:25:54Z 2020-02-15T06:59:49Z +2981 111 1 3551 3.99 2005-07-06T02:33:48Z 2020-02-15T06:59:49Z +2982 111 2 3963 9.99 2005-07-06T22:19:17Z 2020-02-15T06:59:49Z +2983 111 1 4249 4.99 2005-07-07T14:05:17Z 2020-02-15T06:59:49Z +2984 111 2 4286 0.99 2005-07-07T15:36:44Z 2020-02-15T06:59:49Z +2985 111 1 6896 2.99 2005-07-12T21:25:37Z 2020-02-15T06:59:49Z +2986 111 2 8525 0.99 2005-07-29T10:20:19Z 2020-02-15T06:59:49Z +2987 111 2 9933 0.99 2005-07-31T15:24:46Z 2020-02-15T06:59:49Z +2988 111 2 10039 2.99 2005-07-31T18:50:40Z 2020-02-15T06:59:49Z +2989 111 2 10602 4.99 2005-08-01T14:30:23Z 2020-02-15T06:59:49Z +2990 111 1 10952 4.99 2005-08-02T03:28:21Z 2020-02-15T06:59:49Z +2991 111 2 10990 4.99 2005-08-02T04:41:06Z 2020-02-15T06:59:49Z +2992 111 2 11239 2.99 2005-08-02T13:27:11Z 2020-02-15T06:59:49Z +2993 111 2 12196 3.99 2005-08-18T02:08:48Z 2020-02-15T06:59:49Z +2994 111 2 13251 2.99 2005-08-19T16:48:37Z 2020-02-15T06:59:49Z +2995 111 2 13525 5.99 2005-08-20T02:50:44Z 2020-02-15T06:59:49Z +2996 111 1 14949 0.99 2005-08-22T06:12:16Z 2020-02-15T06:59:49Z +2997 111 2 15174 6.99 2005-08-22T15:26:36Z 2020-02-15T06:59:49Z +2998 111 2 15542 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +2999 112 1 396 0.99 2005-05-27T11:47:04Z 2020-02-15T06:59:49Z +3000 112 2 701 2.99 2005-05-29T02:26:27Z 2020-02-15T06:59:49Z +3001 112 1 1835 4.99 2005-06-16T23:05:36Z 2020-02-15T06:59:49Z +3002 112 2 1930 2.99 2005-06-17T06:50:46Z 2020-02-15T06:59:49Z +3003 112 1 2193 4.99 2005-06-18T01:38:45Z 2020-02-15T06:59:49Z +3004 112 2 3018 2.99 2005-06-20T11:10:35Z 2020-02-15T06:59:49Z +3005 112 1 5351 4.99 2005-07-09T17:40:52Z 2020-02-15T06:59:49Z +3006 112 1 5385 2.99 2005-07-09T19:18:11Z 2020-02-15T06:59:49Z +3007 112 2 6550 2.99 2005-07-12T05:03:14Z 2020-02-15T06:59:49Z +3008 112 2 7691 4.99 2005-07-28T03:30:09Z 2020-02-15T06:59:49Z +3009 112 2 7761 4.99 2005-07-28T06:31:45Z 2020-02-15T06:59:49Z +3010 112 1 9217 4.99 2005-07-30T13:13:55Z 2020-02-15T06:59:49Z +3011 112 2 9321 6.99 2005-07-30T17:19:44Z 2020-02-15T06:59:49Z +3012 112 2 9609 4.99 2005-07-31T03:53:24Z 2020-02-15T06:59:49Z +3013 112 1 9830 5.99 2005-07-31T11:59:05Z 2020-02-15T06:59:49Z +3014 112 2 9911 3.99 2005-07-31T14:48:01Z 2020-02-15T06:59:49Z +3015 112 1 10038 2.99 2005-07-31T18:49:12Z 2020-02-15T06:59:49Z +3016 112 2 10596 5.99 2005-08-01T14:18:57Z 2020-02-15T06:59:49Z +3017 112 1 11019 2.99 2005-08-02T05:29:31Z 2020-02-15T06:59:49Z +3018 112 1 11599 7.99 2005-08-17T03:08:10Z 2020-02-15T06:59:49Z +3019 112 2 11659 4.99 2005-08-17T05:20:45Z 2020-02-15T06:59:49Z +3020 112 2 11863 3.99 2005-08-17T13:56:01Z 2020-02-15T06:59:49Z +3021 112 2 13611 8.99 2005-08-20T06:20:42Z 2020-02-15T06:59:49Z +3022 112 2 13879 2.99 2005-08-20T15:18:10Z 2020-02-15T06:59:49Z +3023 112 2 14049 5.99 2005-08-20T22:08:55Z 2020-02-15T06:59:49Z +3024 112 1 14358 0.99 2005-08-21T09:14:28Z 2020-02-15T06:59:49Z +3025 112 2 15304 4.99 2005-08-22T19:45:57Z 2020-02-15T06:59:49Z +3026 112 1 15671 0.99 2005-08-23T09:08:16Z 2020-02-15T06:59:49Z +3027 112 1 15687 8.99 2005-08-23T09:46:33Z 2020-02-15T06:59:49Z +3028 112 1 15756 2.99 2005-08-23T12:47:05Z 2020-02-15T06:59:49Z +3029 113 1 510 0.99 2005-05-28T02:52:14Z 2020-02-15T06:59:49Z +3030 113 2 776 0.99 2005-05-29T13:35:35Z 2020-02-15T06:59:49Z +3031 113 2 2077 4.99 2005-06-17T16:46:11Z 2020-02-15T06:59:49Z +3032 113 1 2282 2.99 2005-06-18T06:48:23Z 2020-02-15T06:59:49Z +3033 113 1 2783 2.99 2005-06-19T18:29:10Z 2020-02-15T06:59:49Z +3034 113 2 3004 0.99 2005-06-20T10:04:36Z 2020-02-15T06:59:49Z +3035 113 1 3124 8.99 2005-06-20T18:28:19Z 2020-02-15T06:59:49Z +3036 113 1 3162 6.99 2005-06-20T21:21:15Z 2020-02-15T06:59:49Z +3037 113 2 3657 5.99 2005-07-06T07:55:30Z 2020-02-15T06:59:49Z +3038 113 1 4333 2.99 2005-07-07T18:31:50Z 2020-02-15T06:59:49Z +3039 113 2 5189 2.99 2005-07-09T10:23:21Z 2020-02-15T06:59:49Z +3040 113 2 5324 2.99 2005-07-09T16:34:18Z 2020-02-15T06:59:49Z +3041 113 2 5655 4.99 2005-07-10T07:31:06Z 2020-02-15T06:59:49Z +3042 113 1 5774 5.99 2005-07-10T13:31:56Z 2020-02-15T06:59:49Z +3043 113 1 6025 0.99 2005-07-11T02:18:13Z 2020-02-15T06:59:49Z +3044 113 1 6836 0.99 2005-07-12T18:58:05Z 2020-02-15T06:59:49Z +3045 113 2 7468 5.99 2005-07-27T18:52:27Z 2020-02-15T06:59:49Z +3046 113 2 7587 2.99 2005-07-27T23:23:03Z 2020-02-15T06:59:49Z +3047 113 2 9221 6.99 2005-07-30T13:20:06Z 2020-02-15T06:59:49Z +3048 113 2 10181 4.99 2005-08-01T00:00:44Z 2020-02-15T06:59:49Z +3049 113 1 10378 0.99 2005-08-01T06:30:04Z 2020-02-15T06:59:49Z +3050 113 2 10578 1.99 2005-08-01T13:48:02Z 2020-02-15T06:59:49Z +3051 113 2 11655 7.99 2005-08-17T05:11:07Z 2020-02-15T06:59:49Z +3052 113 1 11872 5.99 2005-08-17T14:11:45Z 2020-02-15T06:59:49Z +3053 113 1 12392 5.99 2005-08-18T08:57:58Z 2020-02-15T06:59:49Z +3054 113 2 12817 3.99 2005-08-19T01:04:35Z 2020-02-15T06:59:49Z +3055 113 2 13406 2.99 2005-08-19T22:22:01Z 2020-02-15T06:59:49Z +3056 113 1 15600 1.99 2005-08-23T06:31:24Z 2020-02-15T06:59:49Z +3057 113 1 15770 2.99 2005-08-23T13:18:16Z 2020-02-15T06:59:49Z +3058 114 1 205 4.99 2005-05-26T07:59:37Z 2020-02-15T06:59:49Z +3059 114 1 255 4.99 2005-05-26T14:52:15Z 2020-02-15T06:59:49Z +3060 114 2 889 2.99 2005-05-30T07:14:53Z 2020-02-15T06:59:49Z +3061 114 1 2059 2.99 2005-06-17T15:36:12Z 2020-02-15T06:59:49Z +3062 114 2 2680 7.99 2005-06-19T12:13:37Z 2020-02-15T06:59:49Z +3063 114 1 3094 2.99 2005-06-20T16:06:51Z 2020-02-15T06:59:49Z +3064 114 2 3144 5.99 2005-06-20T20:14:20Z 2020-02-15T06:59:49Z +3065 114 1 3484 4.99 2005-07-05T23:23:11Z 2020-02-15T06:59:49Z +3066 114 1 3924 2.99 2005-07-06T20:38:02Z 2020-02-15T06:59:49Z +3067 114 1 4025 0.99 2005-07-07T02:13:24Z 2020-02-15T06:59:49Z +3068 114 1 5418 0.99 2005-07-09T20:41:35Z 2020-02-15T06:59:49Z +3069 114 2 5624 4.99 2005-07-10T05:43:16Z 2020-02-15T06:59:49Z +3070 114 1 5625 2.99 2005-07-10T05:44:02Z 2020-02-15T06:59:49Z +3071 114 1 6188 2.99 2005-07-11T11:31:47Z 2020-02-15T06:59:49Z +3072 114 1 6754 4.99 2005-07-12T14:59:24Z 2020-02-15T06:59:49Z +3073 114 2 7316 2.99 2005-07-27T13:19:03Z 2020-02-15T06:59:49Z +3074 114 2 7462 2.99 2005-07-27T18:47:47Z 2020-02-15T06:59:49Z +3075 114 2 7565 2.99 2005-07-27T22:33:59Z 2020-02-15T06:59:49Z +3076 114 2 7938 5.99 2005-07-28T12:39:11Z 2020-02-15T06:59:49Z +3077 114 2 8496 4.99 2005-07-29T09:05:33Z 2020-02-15T06:59:49Z +3078 114 1 8590 10.99 2005-07-29T12:32:20Z 2020-02-15T06:59:49Z +3079 114 1 9717 4.99 2005-07-31T08:24:41Z 2020-02-15T06:59:49Z +3080 114 1 11547 4.99 2005-08-17T00:59:24Z 2020-02-15T06:59:49Z +3081 114 2 12326 0.99 2005-08-18T06:41:59Z 2020-02-15T06:59:49Z +3082 114 1 12685 6.99 2005-08-18T19:51:29Z 2020-02-15T06:59:49Z +3083 114 2 13459 6.99 2005-08-20T00:45:40Z 2020-02-15T06:59:49Z +3084 114 2 14158 5.99 2005-08-21T02:43:20Z 2020-02-15T06:59:49Z +3085 114 1 14867 4.99 2005-08-22T03:14:46Z 2020-02-15T06:59:49Z +3086 114 1 15485 0.99 2005-08-23T02:04:57Z 2020-02-15T06:59:49Z +3087 114 1 15528 2.99 2005-08-23T03:45:40Z 2020-02-15T06:59:49Z +3088 114 2 15646 3.99 2005-08-23T08:19:55Z 2020-02-15T06:59:49Z +3089 114 1 16047 0.99 2005-08-23T22:42:48Z 2020-02-15T06:59:49Z +3090 114 2 12506 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3091 115 1 915 0.99 2005-05-30T11:20:27Z 2020-02-15T06:59:49Z +3092 115 1 983 0.99 2005-05-30T22:15:51Z 2020-02-15T06:59:49Z +3093 115 1 1102 2.99 2005-05-31T14:20:29Z 2020-02-15T06:59:49Z +3094 115 2 1361 0.99 2005-06-15T13:37:38Z 2020-02-15T06:59:49Z +3095 115 2 1515 2.99 2005-06-15T23:07:50Z 2020-02-15T06:59:49Z +3096 115 1 3289 6.99 2005-06-21T06:41:48Z 2020-02-15T06:59:49Z +3097 115 2 3544 0.99 2005-07-06T02:06:32Z 2020-02-15T06:59:49Z +3098 115 1 3624 0.99 2005-07-06T06:06:27Z 2020-02-15T06:59:49Z +3099 115 1 4780 1.99 2005-07-08T16:06:51Z 2020-02-15T06:59:49Z +3100 115 1 5245 4.99 2005-07-09T13:24:14Z 2020-02-15T06:59:49Z +3101 115 1 6080 2.99 2005-07-11T05:08:11Z 2020-02-15T06:59:49Z +3102 115 2 6113 2.99 2005-07-11T07:31:08Z 2020-02-15T06:59:49Z +3103 115 1 6373 0.99 2005-07-11T21:35:20Z 2020-02-15T06:59:49Z +3104 115 1 6574 5.99 2005-07-12T06:04:22Z 2020-02-15T06:59:49Z +3105 115 1 6798 6.99 2005-07-12T16:49:11Z 2020-02-15T06:59:49Z +3106 115 2 7355 1.99 2005-07-27T14:45:59Z 2020-02-15T06:59:49Z +3107 115 2 7465 4.99 2005-07-27T18:50:30Z 2020-02-15T06:59:49Z +3108 115 1 7983 4.99 2005-07-28T14:23:01Z 2020-02-15T06:59:49Z +3109 115 1 8594 4.99 2005-07-29T12:42:13Z 2020-02-15T06:59:49Z +3110 115 2 9578 0.99 2005-07-31T02:54:31Z 2020-02-15T06:59:49Z +3111 115 2 10022 3.99 2005-07-31T18:25:30Z 2020-02-15T06:59:49Z +3112 115 2 10475 4.99 2005-08-01T10:03:17Z 2020-02-15T06:59:49Z +3113 115 2 10647 2.99 2005-08-01T16:08:46Z 2020-02-15T06:59:49Z +3114 115 2 10919 0.99 2005-08-02T02:11:03Z 2020-02-15T06:59:49Z +3115 115 1 11891 2.99 2005-08-17T15:11:55Z 2020-02-15T06:59:49Z +3116 115 2 12366 0.99 2005-08-18T07:55:14Z 2020-02-15T06:59:49Z +3117 115 2 13977 0.99 2005-08-20T19:02:34Z 2020-02-15T06:59:49Z +3118 115 1 15176 6.99 2005-08-22T15:30:25Z 2020-02-15T06:59:49Z +3119 115 2 15452 0.99 2005-08-23T00:57:12Z 2020-02-15T06:59:49Z +3120 115 2 13056 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3121 116 1 1058 4.99 2005-05-31T08:04:17Z 2020-02-15T06:59:49Z +3122 116 2 1332 0.99 2005-06-15T11:36:01Z 2020-02-15T06:59:49Z +3123 116 2 1533 0.99 2005-06-16T00:46:02Z 2020-02-15T06:59:49Z +3124 116 2 1762 4.99 2005-06-16T17:50:19Z 2020-02-15T06:59:49Z +3125 116 2 1913 4.99 2005-06-17T05:19:47Z 2020-02-15T06:59:49Z +3126 116 1 2639 4.99 2005-06-19T09:24:02Z 2020-02-15T06:59:49Z +3127 116 1 2861 3.99 2005-06-19T23:21:34Z 2020-02-15T06:59:49Z +3128 116 2 3908 6.99 2005-07-06T19:47:26Z 2020-02-15T06:59:49Z +3129 116 2 3940 2.99 2005-07-06T21:16:59Z 2020-02-15T06:59:49Z +3130 116 1 4027 0.99 2005-07-07T02:19:01Z 2020-02-15T06:59:49Z +3131 116 2 4737 4.99 2005-07-08T13:23:53Z 2020-02-15T06:59:49Z +3132 116 2 5169 2.99 2005-07-09T09:22:25Z 2020-02-15T06:59:49Z +3133 116 1 6557 4.99 2005-07-12T05:12:03Z 2020-02-15T06:59:49Z +3134 116 1 7238 0.99 2005-07-27T10:13:41Z 2020-02-15T06:59:49Z +3135 116 2 7763 5.99 2005-07-28T06:35:16Z 2020-02-15T06:59:49Z +3136 116 2 9245 6.99 2005-07-30T14:07:50Z 2020-02-15T06:59:49Z +3137 116 1 9562 3.99 2005-07-31T02:23:20Z 2020-02-15T06:59:49Z +3138 116 2 10250 1.99 2005-08-01T02:38:42Z 2020-02-15T06:59:49Z +3139 116 1 10801 1.99 2005-08-01T22:09:35Z 2020-02-15T06:59:49Z +3140 116 2 11016 4.99 2005-08-02T05:19:13Z 2020-02-15T06:59:49Z +3141 116 2 12376 2.99 2005-08-18T08:20:29Z 2020-02-15T06:59:49Z +3142 116 2 13146 7.99 2005-08-19T12:54:42Z 2020-02-15T06:59:49Z +3143 116 1 13369 0.99 2005-08-19T21:19:47Z 2020-02-15T06:59:49Z +3144 116 1 13474 0.99 2005-08-20T01:04:32Z 2020-02-15T06:59:49Z +3145 116 1 13775 6.99 2005-08-20T11:56:30Z 2020-02-15T06:59:49Z +3146 116 2 14763 11.99 2005-08-21T23:34:00Z 2020-02-15T06:59:49Z +3147 116 1 14907 2.99 2005-08-22T04:44:09Z 2020-02-15T06:59:49Z +3148 117 1 700 0.99 2005-05-29T02:18:54Z 2020-02-15T06:59:49Z +3149 117 2 1114 0.99 2005-05-31T16:00:33Z 2020-02-15T06:59:49Z +3150 117 1 1755 2.99 2005-06-16T17:18:44Z 2020-02-15T06:59:49Z +3151 117 2 3218 2.99 2005-06-21T01:38:09Z 2020-02-15T06:59:49Z +3152 117 2 5506 5.99 2005-07-10T00:45:48Z 2020-02-15T06:59:49Z +3153 117 1 5673 0.99 2005-07-10T08:21:54Z 2020-02-15T06:59:49Z +3154 117 1 6093 9.99 2005-07-11T05:52:50Z 2020-02-15T06:59:49Z +3155 117 1 6449 6.99 2005-07-12T00:48:58Z 2020-02-15T06:59:49Z +3156 117 1 8687 2.99 2005-07-29T16:19:17Z 2020-02-15T06:59:49Z +3157 117 2 10556 2.99 2005-08-01T12:58:42Z 2020-02-15T06:59:49Z +3158 117 1 10558 4.99 2005-08-01T13:00:20Z 2020-02-15T06:59:49Z +3159 117 2 11467 3.99 2005-08-02T21:47:07Z 2020-02-15T06:59:49Z +3160 117 1 12143 2.99 2005-08-18T00:06:26Z 2020-02-15T06:59:49Z +3161 117 1 12337 2.99 2005-08-18T07:02:24Z 2020-02-15T06:59:49Z +3162 117 1 12575 6.99 2005-08-18T15:37:42Z 2020-02-15T06:59:49Z +3163 117 1 12618 4.99 2005-08-18T17:24:02Z 2020-02-15T06:59:49Z +3164 117 1 14784 0.99 2005-08-22T00:23:13Z 2020-02-15T06:59:49Z +3165 117 2 14854 2.99 2005-08-22T02:26:47Z 2020-02-15T06:59:49Z +3166 117 1 15432 2.99 2005-08-23T00:26:52Z 2020-02-15T06:59:49Z +3167 118 2 351 5.99 2005-05-27T05:39:03Z 2020-02-15T06:59:49Z +3168 118 2 1766 4.99 2005-06-16T17:59:37Z 2020-02-15T06:59:49Z +3169 118 2 2217 0.99 2005-06-18T03:12:29Z 2020-02-15T06:59:49Z +3170 118 1 3263 4.99 2005-06-21T04:15:52Z 2020-02-15T06:59:49Z +3171 118 1 4966 0.99 2005-07-08T23:47:25Z 2020-02-15T06:59:49Z +3172 118 1 5829 1.99 2005-07-10T16:29:41Z 2020-02-15T06:59:49Z +3173 118 1 6377 0.99 2005-07-11T21:41:16Z 2020-02-15T06:59:49Z +3174 118 1 6507 1.99 2005-07-12T03:33:12Z 2020-02-15T06:59:49Z +3175 118 1 7196 2.99 2005-07-27T08:49:08Z 2020-02-15T06:59:49Z +3176 118 1 7850 4.99 2005-07-28T09:31:13Z 2020-02-15T06:59:49Z +3177 118 2 7956 4.99 2005-07-28T13:32:17Z 2020-02-15T06:59:49Z +3178 118 1 8314 3.99 2005-07-29T03:35:04Z 2020-02-15T06:59:49Z +3179 118 2 8760 7.99 2005-07-29T19:22:40Z 2020-02-15T06:59:49Z +3180 118 1 8881 4.99 2005-07-30T00:22:31Z 2020-02-15T06:59:49Z +3181 118 2 10045 1.99 2005-07-31T19:04:35Z 2020-02-15T06:59:49Z +3182 118 2 12538 2.99 2005-08-18T14:09:09Z 2020-02-15T06:59:49Z +3183 118 2 13193 6.99 2005-08-19T14:33:45Z 2020-02-15T06:59:49Z +3184 118 2 14394 5.99 2005-08-21T10:23:10Z 2020-02-15T06:59:49Z +3185 118 2 14595 7.99 2005-08-21T17:35:17Z 2020-02-15T06:59:49Z +3186 118 1 14924 2.99 2005-08-22T05:15:17Z 2020-02-15T06:59:49Z +3187 118 1 15731 0.99 2005-08-23T11:33:25Z 2020-02-15T06:59:49Z +3188 119 2 67 0.99 2005-05-25T09:41:01Z 2020-02-15T06:59:49Z +3189 119 1 235 5.99 2005-05-26T11:51:09Z 2020-02-15T06:59:49Z +3190 119 2 540 6.99 2005-05-28T06:40:25Z 2020-02-15T06:59:49Z +3191 119 1 1179 7.99 2005-06-15T00:36:50Z 2020-02-15T06:59:49Z +3192 119 2 2009 2.99 2005-06-17T11:48:31Z 2020-02-15T06:59:49Z +3193 119 2 3388 5.99 2005-06-21T14:34:51Z 2020-02-15T06:59:49Z +3194 119 2 4840 8.99 2005-07-08T18:18:16Z 2020-02-15T06:59:49Z +3195 119 1 5176 5.99 2005-07-09T09:39:31Z 2020-02-15T06:59:49Z +3196 119 1 5268 0.99 2005-07-09T14:22:43Z 2020-02-15T06:59:49Z +3197 119 1 6079 7.99 2005-07-11T05:07:14Z 2020-02-15T06:59:49Z +3198 119 2 6330 0.99 2005-07-11T19:15:42Z 2020-02-15T06:59:49Z +3199 119 2 8140 4.99 2005-07-28T20:17:50Z 2020-02-15T06:59:49Z +3200 119 1 8183 5.99 2005-07-28T22:21:07Z 2020-02-15T06:59:49Z +3201 119 1 8304 4.99 2005-07-29T03:08:30Z 2020-02-15T06:59:49Z +3202 119 2 9028 2.99 2005-07-30T06:00:35Z 2020-02-15T06:59:49Z +3203 119 1 10101 0.99 2005-07-31T20:47:29Z 2020-02-15T06:59:49Z +3204 119 1 10366 3.99 2005-08-01T06:09:37Z 2020-02-15T06:59:49Z +3205 119 2 10552 2.99 2005-08-01T12:49:44Z 2020-02-15T06:59:49Z +3206 119 1 10681 4.99 2005-08-01T17:30:35Z 2020-02-15T06:59:49Z +3207 119 2 11377 2.99 2005-08-02T18:16:47Z 2020-02-15T06:59:49Z +3208 119 1 11520 5.99 2005-08-17T00:04:28Z 2020-02-15T06:59:49Z +3209 119 2 12576 2.99 2005-08-18T15:38:31Z 2020-02-15T06:59:49Z +3210 119 2 12603 3.99 2005-08-18T16:56:20Z 2020-02-15T06:59:49Z +3211 119 2 12842 6.99 2005-08-19T01:57:21Z 2020-02-15T06:59:49Z +3212 119 1 13581 4.99 2005-08-20T05:26:15Z 2020-02-15T06:59:49Z +3213 119 2 14349 3.99 2005-08-21T08:54:53Z 2020-02-15T06:59:49Z +3214 119 2 14382 2.99 2005-08-21T10:01:03Z 2020-02-15T06:59:49Z +3215 119 2 14643 6.99 2005-08-21T19:11:58Z 2020-02-15T06:59:49Z +3216 119 2 14659 0.99 2005-08-21T19:42:36Z 2020-02-15T06:59:49Z +3217 119 1 15111 4.99 2005-08-22T12:21:43Z 2020-02-15T06:59:49Z +3218 119 2 15131 3.99 2005-08-22T13:06:26Z 2020-02-15T06:59:49Z +3219 119 2 15171 6.99 2005-08-22T15:23:59Z 2020-02-15T06:59:49Z +3220 119 1 15844 2.99 2005-08-23T15:38:12Z 2020-02-15T06:59:49Z +3221 119 2 16028 3.99 2005-08-23T21:52:56Z 2020-02-15T06:59:49Z +3222 120 2 68 7.99 2005-05-25T09:47:31Z 2020-02-15T06:59:49Z +3223 120 2 532 0.99 2005-05-28T05:36:58Z 2020-02-15T06:59:49Z +3224 120 1 1374 3.99 2005-06-15T14:49:54Z 2020-02-15T06:59:49Z +3225 120 1 1820 4.99 2005-06-16T21:34:50Z 2020-02-15T06:59:49Z +3226 120 2 1932 2.99 2005-06-17T06:54:41Z 2020-02-15T06:59:49Z +3227 120 1 2169 4.99 2005-06-17T23:57:23Z 2020-02-15T06:59:49Z +3228 120 1 2803 9.99 2005-06-19T19:18:27Z 2020-02-15T06:59:49Z +3229 120 1 3133 2.99 2005-06-20T19:18:32Z 2020-02-15T06:59:49Z +3230 120 1 4001 5.99 2005-07-07T00:07:00Z 2020-02-15T06:59:49Z +3231 120 2 4272 3.99 2005-07-07T14:39:20Z 2020-02-15T06:59:49Z +3232 120 2 4342 0.99 2005-07-07T18:47:03Z 2020-02-15T06:59:49Z +3233 120 2 4666 9.99 2005-07-08T10:05:02Z 2020-02-15T06:59:49Z +3234 120 1 4942 1.99 2005-07-08T22:42:47Z 2020-02-15T06:59:49Z +3235 120 2 5288 1.99 2005-07-09T15:13:07Z 2020-02-15T06:59:49Z +3236 120 2 6503 0.99 2005-07-12T03:18:07Z 2020-02-15T06:59:49Z +3237 120 1 6989 4.99 2005-07-27T01:00:34Z 2020-02-15T06:59:49Z +3238 120 2 8046 0.99 2005-07-28T16:49:41Z 2020-02-15T06:59:49Z +3239 120 2 8756 1.99 2005-07-29T19:18:57Z 2020-02-15T06:59:49Z +3240 120 1 8998 6.99 2005-07-30T04:54:14Z 2020-02-15T06:59:49Z +3241 120 2 9907 6.99 2005-07-31T14:39:50Z 2020-02-15T06:59:49Z +3242 120 2 10161 0.99 2005-07-31T23:09:41Z 2020-02-15T06:59:49Z +3243 120 2 10696 4.99 2005-08-01T18:18:13Z 2020-02-15T06:59:49Z +3244 120 1 10940 3.99 2005-08-02T03:08:29Z 2020-02-15T06:59:49Z +3245 120 2 11133 0.99 2005-08-02T09:15:45Z 2020-02-15T06:59:49Z +3246 120 2 13167 2.99 2005-08-19T13:36:41Z 2020-02-15T06:59:49Z +3247 120 2 13375 7.99 2005-08-19T21:31:31Z 2020-02-15T06:59:49Z +3248 120 1 14001 2.99 2005-08-20T20:07:15Z 2020-02-15T06:59:49Z +3249 120 1 14153 4.99 2005-08-21T02:24:33Z 2020-02-15T06:59:49Z +3250 120 1 14246 4.99 2005-08-21T05:34:09Z 2020-02-15T06:59:49Z +3251 120 2 14460 9.99 2005-08-21T12:48:48Z 2020-02-15T06:59:49Z +3252 120 2 14969 6.99 2005-08-22T06:49:15Z 2020-02-15T06:59:49Z +3253 120 1 15780 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3254 121 1 217 4.99 2005-05-26T09:24:26Z 2020-02-15T06:59:49Z +3255 121 1 1634 2.99 2005-06-16T08:16:05Z 2020-02-15T06:59:49Z +3256 121 1 1833 1.99 2005-06-16T22:45:03Z 2020-02-15T06:59:49Z +3257 121 2 5670 0.99 2005-07-10T08:14:52Z 2020-02-15T06:59:49Z +3258 121 2 6780 4.99 2005-07-12T16:18:12Z 2020-02-15T06:59:49Z +3259 121 2 7114 0.99 2005-07-27T05:42:13Z 2020-02-15T06:59:49Z +3260 121 1 7185 0.99 2005-07-27T08:23:54Z 2020-02-15T06:59:49Z +3261 121 2 7298 2.99 2005-07-27T12:45:14Z 2020-02-15T06:59:49Z +3262 121 1 8370 6.99 2005-07-29T05:16:21Z 2020-02-15T06:59:49Z +3263 121 2 8788 1.99 2005-07-29T20:46:44Z 2020-02-15T06:59:49Z +3264 121 2 8875 2.99 2005-07-30T00:15:09Z 2020-02-15T06:59:49Z +3265 121 2 8969 8.99 2005-07-30T04:00:19Z 2020-02-15T06:59:49Z +3266 121 2 10457 5.99 2005-08-01T09:17:34Z 2020-02-15T06:59:49Z +3267 121 2 11720 8.99 2005-08-17T07:46:54Z 2020-02-15T06:59:49Z +3268 121 2 12242 1.99 2005-08-18T03:37:31Z 2020-02-15T06:59:49Z +3269 121 2 12428 3.99 2005-08-18T10:24:21Z 2020-02-15T06:59:49Z +3270 121 2 12734 1.99 2005-08-18T22:04:52Z 2020-02-15T06:59:49Z +3271 121 1 12881 5.99 2005-08-19T03:28:13Z 2020-02-15T06:59:49Z +3272 121 2 12892 0.99 2005-08-19T03:46:34Z 2020-02-15T06:59:49Z +3273 121 1 14138 7.99 2005-08-21T01:59:37Z 2020-02-15T06:59:49Z +3274 121 1 14177 4.99 2005-08-21T03:11:33Z 2020-02-15T06:59:49Z +3275 121 2 14412 9.99 2005-08-21T11:02:09Z 2020-02-15T06:59:49Z +3276 121 1 14464 2.99 2005-08-21T12:52:54Z 2020-02-15T06:59:49Z +3277 121 2 15114 7.99 2005-08-22T12:24:55Z 2020-02-15T06:59:49Z +3278 121 1 15369 0.99 2005-08-22T21:58:06Z 2020-02-15T06:59:49Z +3279 121 1 16041 2.99 2005-08-23T22:20:26Z 2020-02-15T06:59:49Z +3280 122 2 853 0.99 2005-05-30T01:43:31Z 2020-02-15T06:59:49Z +3281 122 2 1135 4.99 2005-05-31T19:15:11Z 2020-02-15T06:59:49Z +3282 122 1 1211 0.99 2005-06-15T03:01:20Z 2020-02-15T06:59:49Z +3283 122 2 1442 7.99 2005-06-15T18:55:34Z 2020-02-15T06:59:49Z +3284 122 2 2240 3.99 2005-06-18T04:28:27Z 2020-02-15T06:59:49Z +3285 122 1 2253 0.99 2005-06-18T05:11:43Z 2020-02-15T06:59:49Z +3286 122 1 2482 4.99 2005-06-18T21:10:44Z 2020-02-15T06:59:49Z +3287 122 2 2595 4.99 2005-06-19T05:43:55Z 2020-02-15T06:59:49Z +3288 122 2 2834 1.99 2005-06-19T21:41:46Z 2020-02-15T06:59:49Z +3289 122 1 3778 2.99 2005-07-06T13:44:48Z 2020-02-15T06:59:49Z +3290 122 2 3986 4.99 2005-07-06T23:25:13Z 2020-02-15T06:59:49Z +3291 122 1 4239 7.99 2005-07-07T13:23:17Z 2020-02-15T06:59:49Z +3292 122 1 4568 4.99 2005-07-08T05:23:59Z 2020-02-15T06:59:49Z +3293 122 2 5235 6.99 2005-07-09T12:54:25Z 2020-02-15T06:59:49Z +3294 122 2 6231 0.99 2005-07-11T14:02:36Z 2020-02-15T06:59:49Z +3295 122 1 6427 0.99 2005-07-11T23:57:34Z 2020-02-15T06:59:49Z +3296 122 1 6436 0.99 2005-07-12T00:18:42Z 2020-02-15T06:59:49Z +3297 122 2 6974 7.99 2005-07-27T00:39:16Z 2020-02-15T06:59:49Z +3298 122 1 7267 2.99 2005-07-27T11:22:55Z 2020-02-15T06:59:49Z +3299 122 2 7950 4.99 2005-07-28T13:21:00Z 2020-02-15T06:59:49Z +3300 122 1 8077 2.99 2005-07-28T17:54:35Z 2020-02-15T06:59:49Z +3301 122 2 8177 0.99 2005-07-28T21:43:54Z 2020-02-15T06:59:49Z +3302 122 1 8772 5.99 2005-07-29T19:55:25Z 2020-02-15T06:59:49Z +3303 122 2 9910 4.99 2005-07-31T14:47:57Z 2020-02-15T06:59:49Z +3304 122 1 10626 1.99 2005-08-01T15:32:41Z 2020-02-15T06:59:49Z +3305 122 2 11044 3.99 2005-08-02T06:05:27Z 2020-02-15T06:59:49Z +3306 122 2 11197 2.99 2005-08-02T11:45:07Z 2020-02-15T06:59:49Z +3307 122 2 12476 4.99 2005-08-18T12:22:40Z 2020-02-15T06:59:49Z +3308 122 2 12711 4.99 2005-08-18T21:03:32Z 2020-02-15T06:59:49Z +3309 122 1 13171 2.99 2005-08-19T13:48:54Z 2020-02-15T06:59:49Z +3310 122 1 13812 4.99 2005-08-20T13:01:43Z 2020-02-15T06:59:49Z +3311 122 2 14666 5.99 2005-08-21T19:51:09Z 2020-02-15T06:59:49Z +3312 123 1 992 2.99 2005-05-30T23:47:56Z 2020-02-15T06:59:49Z +3313 123 2 1490 4.99 2005-06-15T21:42:17Z 2020-02-15T06:59:49Z +3314 123 1 1751 0.99 2005-06-16T17:00:14Z 2020-02-15T06:59:49Z +3315 123 2 1775 4.99 2005-06-16T18:28:19Z 2020-02-15T06:59:49Z +3316 123 2 1951 0.99 2005-06-17T08:30:35Z 2020-02-15T06:59:49Z +3317 123 1 2594 2.99 2005-06-19T05:43:43Z 2020-02-15T06:59:49Z +3318 123 1 4442 3.99 2005-07-07T23:05:30Z 2020-02-15T06:59:49Z +3319 123 1 4860 8.99 2005-07-08T18:54:07Z 2020-02-15T06:59:49Z +3320 123 2 7535 4.99 2005-07-27T21:32:39Z 2020-02-15T06:59:49Z +3321 123 1 7727 2.99 2005-07-28T04:52:43Z 2020-02-15T06:59:49Z +3322 123 2 7768 0.99 2005-07-28T06:44:03Z 2020-02-15T06:59:49Z +3323 123 1 7852 2.99 2005-07-28T09:34:29Z 2020-02-15T06:59:49Z +3324 123 1 7969 5.99 2005-07-28T13:57:37Z 2020-02-15T06:59:49Z +3325 123 2 8699 4.99 2005-07-29T16:53:00Z 2020-02-15T06:59:49Z +3326 123 2 9529 4.99 2005-07-31T01:05:26Z 2020-02-15T06:59:49Z +3327 123 1 10066 4.99 2005-07-31T19:30:01Z 2020-02-15T06:59:49Z +3328 123 2 10295 8.99 2005-08-01T03:53:49Z 2020-02-15T06:59:49Z +3329 123 1 12360 2.99 2005-08-18T07:46:35Z 2020-02-15T06:59:49Z +3330 123 1 12402 3.99 2005-08-18T09:27:34Z 2020-02-15T06:59:49Z +3331 123 1 13668 2.99 2005-08-20T08:26:06Z 2020-02-15T06:59:49Z +3332 123 2 15152 7.99 2005-08-22T14:25:21Z 2020-02-15T06:59:49Z +3333 123 2 15525 4.99 2005-08-23T03:43:32Z 2020-02-15T06:59:49Z +3334 123 1 15621 1.99 2005-08-23T07:13:43Z 2020-02-15T06:59:49Z +3335 123 2 15787 2.99 2005-08-23T13:51:57Z 2020-02-15T06:59:49Z +3336 124 1 775 0.99 2005-05-29T13:23:26Z 2020-02-15T06:59:49Z +3337 124 2 1039 4.99 2005-05-31T05:32:29Z 2020-02-15T06:59:49Z +3338 124 2 1057 3.99 2005-05-31T07:58:06Z 2020-02-15T06:59:49Z +3339 124 2 1130 5.99 2005-05-31T18:13:57Z 2020-02-15T06:59:49Z +3340 124 2 2336 1.99 2005-06-18T11:00:05Z 2020-02-15T06:59:49Z +3341 124 1 4341 7.99 2005-07-07T18:44:23Z 2020-02-15T06:59:49Z +3342 124 2 4709 2.99 2005-07-08T12:04:34Z 2020-02-15T06:59:49Z +3343 124 1 5566 2.99 2005-07-10T03:30:17Z 2020-02-15T06:59:49Z +3344 124 1 6411 2.99 2005-07-11T23:10:50Z 2020-02-15T06:59:49Z +3345 124 1 7519 6.99 2005-07-27T21:01:41Z 2020-02-15T06:59:49Z +3346 124 2 7700 8.99 2005-07-28T03:54:14Z 2020-02-15T06:59:49Z +3347 124 2 8524 0.99 2005-07-29T10:20:07Z 2020-02-15T06:59:49Z +3348 124 1 9986 3.99 2005-07-31T17:16:50Z 2020-02-15T06:59:49Z +3349 124 2 11493 5.99 2005-08-02T22:47:00Z 2020-02-15T06:59:49Z +3350 124 1 12835 4.99 2005-08-19T01:47:45Z 2020-02-15T06:59:49Z +3351 124 2 14737 0.99 2005-08-21T22:27:11Z 2020-02-15T06:59:49Z +3352 124 2 15266 4.99 2005-08-22T18:37:24Z 2020-02-15T06:59:49Z +3353 124 2 16023 0.99 2005-08-23T21:45:02Z 2020-02-15T06:59:49Z +3354 125 2 185 3.99 2005-05-26T05:30:03Z 2020-02-15T06:59:49Z +3355 125 1 1481 2.99 2005-06-15T21:17:58Z 2020-02-15T06:59:49Z +3356 125 1 2355 3.99 2005-06-18T12:57:06Z 2020-02-15T06:59:49Z +3357 125 1 2826 7.99 2005-06-19T20:41:35Z 2020-02-15T06:59:49Z +3358 125 1 3118 4.99 2005-06-20T18:05:57Z 2020-02-15T06:59:49Z +3359 125 1 3617 4.99 2005-07-06T05:58:06Z 2020-02-15T06:59:49Z +3360 125 1 5200 2.99 2005-07-09T10:52:09Z 2020-02-15T06:59:49Z +3361 125 2 5523 7.99 2005-07-10T01:47:55Z 2020-02-15T06:59:49Z +3362 125 1 6055 0.99 2005-07-11T03:59:08Z 2020-02-15T06:59:49Z +3363 125 2 6268 6.99 2005-07-11T15:55:34Z 2020-02-15T06:59:49Z +3364 125 1 7323 4.99 2005-07-27T13:39:40Z 2020-02-15T06:59:49Z +3365 125 2 7879 0.99 2005-07-28T10:27:46Z 2020-02-15T06:59:49Z +3366 125 2 7922 0.99 2005-07-28T12:05:25Z 2020-02-15T06:59:49Z +3367 125 2 8375 2.99 2005-07-29T05:25:30Z 2020-02-15T06:59:49Z +3368 125 1 8433 2.99 2005-07-29T07:19:16Z 2020-02-15T06:59:49Z +3369 125 1 8832 4.99 2005-07-29T22:37:49Z 2020-02-15T06:59:49Z +3370 125 1 9129 9.99 2005-07-30T09:51:21Z 2020-02-15T06:59:49Z +3371 125 1 9496 4.99 2005-07-30T23:55:20Z 2020-02-15T06:59:49Z +3372 125 2 9504 0.99 2005-07-31T00:09:07Z 2020-02-15T06:59:49Z +3373 125 1 9722 4.99 2005-07-31T08:29:48Z 2020-02-15T06:59:49Z +3374 125 2 9734 2.99 2005-07-31T08:57:45Z 2020-02-15T06:59:49Z +3375 125 1 10583 2.99 2005-08-01T13:54:35Z 2020-02-15T06:59:49Z +3376 125 1 10699 2.99 2005-08-01T18:24:51Z 2020-02-15T06:59:49Z +3377 125 2 11279 7.99 2005-08-02T14:30:03Z 2020-02-15T06:59:49Z +3378 125 1 11806 4.99 2005-08-17T11:49:28Z 2020-02-15T06:59:49Z +3379 125 1 11832 4.99 2005-08-17T12:55:31Z 2020-02-15T06:59:49Z +3380 125 1 11999 0.99 2005-08-17T18:47:07Z 2020-02-15T06:59:49Z +3381 125 1 12075 4.99 2005-08-17T21:54:55Z 2020-02-15T06:59:49Z +3382 125 2 12262 2.99 2005-08-18T04:16:15Z 2020-02-15T06:59:49Z +3383 125 2 13441 6.99 2005-08-19T23:48:23Z 2020-02-15T06:59:49Z +3384 125 2 14456 2.99 2005-08-21T12:38:09Z 2020-02-15T06:59:49Z +3385 125 1 15055 2.99 2005-08-22T10:14:39Z 2020-02-15T06:59:49Z +3386 126 1 9 4.99 2005-05-25T00:00:40Z 2020-02-15T06:59:49Z +3387 126 1 752 4.99 2005-05-29T10:14:15Z 2020-02-15T06:59:49Z +3388 126 2 1054 4.99 2005-05-31T07:33:25Z 2020-02-15T06:59:49Z +3389 126 1 3450 2.99 2005-06-21T21:01:57Z 2020-02-15T06:59:49Z +3390 126 2 3502 5.99 2005-07-06T00:15:06Z 2020-02-15T06:59:49Z +3391 126 1 3725 4.99 2005-07-06T11:15:04Z 2020-02-15T06:59:49Z +3392 126 1 3804 7.99 2005-07-06T15:08:08Z 2020-02-15T06:59:49Z +3393 126 1 4691 0.99 2005-07-08T11:04:53Z 2020-02-15T06:59:49Z +3394 126 2 4730 2.99 2005-07-08T12:59:49Z 2020-02-15T06:59:49Z +3395 126 2 5137 0.99 2005-07-09T08:00:34Z 2020-02-15T06:59:49Z +3396 126 1 5865 0.99 2005-07-10T18:31:05Z 2020-02-15T06:59:49Z +3397 126 1 6747 0.99 2005-07-12T14:33:21Z 2020-02-15T06:59:49Z +3398 126 2 6755 6.99 2005-07-12T15:07:49Z 2020-02-15T06:59:49Z +3399 126 1 7962 0.99 2005-07-28T13:48:09Z 2020-02-15T06:59:49Z +3400 126 1 8091 2.99 2005-07-28T18:27:29Z 2020-02-15T06:59:49Z +3401 126 1 9492 6.99 2005-07-30T23:52:21Z 2020-02-15T06:59:49Z +3402 126 2 10032 4.99 2005-07-31T18:41:55Z 2020-02-15T06:59:49Z +3403 126 1 11196 9.99 2005-08-02T11:42:40Z 2020-02-15T06:59:49Z +3404 126 2 11613 4.99 2005-08-17T03:50:33Z 2020-02-15T06:59:49Z +3405 126 1 11779 3.99 2005-08-17T10:31:58Z 2020-02-15T06:59:49Z +3406 126 1 11801 0.99 2005-08-17T11:30:11Z 2020-02-15T06:59:49Z +3407 126 2 12991 2.99 2005-08-19T07:21:24Z 2020-02-15T06:59:49Z +3408 126 2 13015 7.99 2005-08-19T07:56:51Z 2020-02-15T06:59:49Z +3409 126 2 13177 0.99 2005-08-19T13:56:58Z 2020-02-15T06:59:49Z +3410 126 2 14477 2.99 2005-08-21T13:32:38Z 2020-02-15T06:59:49Z +3411 126 2 14577 2.99 2005-08-21T16:52:29Z 2020-02-15T06:59:49Z +3412 126 2 15741 4.99 2005-08-23T12:10:54Z 2020-02-15T06:59:49Z +3413 126 1 16007 7.99 2005-08-23T21:02:43Z 2020-02-15T06:59:49Z +3414 127 1 452 0.99 2005-05-27T19:30:33Z 2020-02-15T06:59:49Z +3415 127 1 708 0.99 2005-05-29T03:23:47Z 2020-02-15T06:59:49Z +3416 127 1 1293 4.99 2005-06-15T09:06:24Z 2020-02-15T06:59:49Z +3417 127 2 1803 2.99 2005-06-16T20:32:47Z 2020-02-15T06:59:49Z +3418 127 2 2412 3.99 2005-06-18T16:58:58Z 2020-02-15T06:59:49Z +3419 127 1 4652 5.99 2005-07-08T09:47:51Z 2020-02-15T06:59:49Z +3420 127 2 4811 5.99 2005-07-08T17:04:24Z 2020-02-15T06:59:49Z +3421 127 2 5499 2.99 2005-07-10T00:27:45Z 2020-02-15T06:59:49Z +3422 127 2 5983 2.99 2005-07-11T00:34:11Z 2020-02-15T06:59:49Z +3423 127 1 7912 4.99 2005-07-28T11:46:58Z 2020-02-15T06:59:49Z +3424 127 2 8209 6.99 2005-07-28T23:29:28Z 2020-02-15T06:59:49Z +3425 127 1 9859 6.99 2005-07-31T13:02:55Z 2020-02-15T06:59:49Z +3426 127 1 10197 2.99 2005-08-01T00:35:25Z 2020-02-15T06:59:49Z +3427 127 1 10787 10.99 2005-08-01T21:35:01Z 2020-02-15T06:59:49Z +3428 127 1 10973 7.99 2005-08-02T04:09:42Z 2020-02-15T06:59:49Z +3429 127 1 11235 0.99 2005-08-02T13:13:21Z 2020-02-15T06:59:49Z +3430 127 2 12060 4.99 2005-08-17T21:11:57Z 2020-02-15T06:59:49Z +3431 127 2 12820 2.99 2005-08-19T01:05:08Z 2020-02-15T06:59:49Z +3432 127 2 13043 4.99 2005-08-19T09:07:13Z 2020-02-15T06:59:49Z +3433 127 1 13091 2.99 2005-08-19T10:40:10Z 2020-02-15T06:59:49Z +3434 127 2 14030 2.99 2005-08-20T21:23:54Z 2020-02-15T06:59:49Z +3435 127 1 14189 2.99 2005-08-21T03:32:17Z 2020-02-15T06:59:49Z +3436 127 1 15463 5.99 2005-08-23T01:15:07Z 2020-02-15T06:59:49Z +3437 127 2 15736 5.99 2005-08-23T11:40:30Z 2020-02-15T06:59:49Z +3438 128 2 888 5.99 2005-05-30T07:13:14Z 2020-02-15T06:59:49Z +3439 128 2 1131 2.99 2005-05-31T18:44:19Z 2020-02-15T06:59:49Z +3440 128 2 2519 7.99 2005-06-19T00:19:21Z 2020-02-15T06:59:49Z +3441 128 1 2565 0.99 2005-06-19T03:44:03Z 2020-02-15T06:59:49Z +3442 128 1 3751 0.99 2005-07-06T12:23:41Z 2020-02-15T06:59:49Z +3443 128 2 3995 5.99 2005-07-06T23:43:03Z 2020-02-15T06:59:49Z +3444 128 1 5270 2.99 2005-07-09T14:23:46Z 2020-02-15T06:59:49Z +3445 128 1 5647 4.99 2005-07-10T07:08:40Z 2020-02-15T06:59:49Z +3446 128 2 5997 4.99 2005-07-11T01:19:50Z 2020-02-15T06:59:49Z +3447 128 2 6186 2.99 2005-07-11T11:26:41Z 2020-02-15T06:59:49Z +3448 128 2 6481 6.99 2005-07-12T01:50:15Z 2020-02-15T06:59:49Z +3449 128 2 6687 2.99 2005-07-12T12:19:23Z 2020-02-15T06:59:49Z +3450 128 2 7582 4.99 2005-07-27T23:15:14Z 2020-02-15T06:59:49Z +3451 128 2 8415 2.99 2005-07-29T06:52:27Z 2020-02-15T06:59:49Z +3452 128 2 9215 5.99 2005-07-30T13:11:11Z 2020-02-15T06:59:49Z +3453 128 2 9234 2.99 2005-07-30T13:45:54Z 2020-02-15T06:59:49Z +3454 128 1 9433 5.99 2005-07-30T21:28:17Z 2020-02-15T06:59:49Z +3455 128 2 9858 2.99 2005-07-31T13:02:07Z 2020-02-15T06:59:49Z +3456 128 1 9952 3.99 2005-07-31T15:52:37Z 2020-02-15T06:59:49Z +3457 128 1 10011 2.99 2005-07-31T18:02:41Z 2020-02-15T06:59:49Z +3458 128 1 10394 2.99 2005-08-01T06:58:17Z 2020-02-15T06:59:49Z +3459 128 2 12731 2.99 2005-08-18T21:55:38Z 2020-02-15T06:59:49Z +3460 128 2 12843 2.99 2005-08-19T01:58:54Z 2020-02-15T06:59:49Z +3461 128 2 12910 0.99 2005-08-19T04:23:13Z 2020-02-15T06:59:49Z +3462 128 2 13027 0.99 2005-08-19T08:25:16Z 2020-02-15T06:59:49Z +3463 128 2 13181 5.99 2005-08-19T14:00:56Z 2020-02-15T06:59:49Z +3464 128 1 13509 0.99 2005-08-20T02:14:16Z 2020-02-15T06:59:49Z +3465 128 2 13964 2.99 2005-08-20T18:24:26Z 2020-02-15T06:59:49Z +3466 128 2 14157 0.99 2005-08-21T02:43:15Z 2020-02-15T06:59:49Z +3467 128 1 14925 8.99 2005-08-22T05:16:16Z 2020-02-15T06:59:49Z +3468 128 1 15220 3.99 2005-08-22T17:02:23Z 2020-02-15T06:59:49Z +3469 128 1 15835 8.99 2005-08-23T15:25:27Z 2020-02-15T06:59:49Z +3470 129 2 1732 0.99 2005-06-16T15:34:41Z 2020-02-15T06:59:49Z +3471 129 1 2727 3.99 2005-06-19T15:02:39Z 2020-02-15T06:59:49Z +3472 129 2 2768 0.99 2005-06-19T17:46:52Z 2020-02-15T06:59:49Z +3473 129 2 2795 4.99 2005-06-19T18:58:53Z 2020-02-15T06:59:49Z +3474 129 1 3183 4.99 2005-06-20T22:55:55Z 2020-02-15T06:59:49Z +3475 129 1 3219 3.99 2005-06-21T01:43:26Z 2020-02-15T06:59:49Z +3476 129 1 3689 0.99 2005-07-06T09:43:01Z 2020-02-15T06:59:49Z +3477 129 2 3900 4.99 2005-07-06T19:21:28Z 2020-02-15T06:59:49Z +3478 129 2 3936 0.99 2005-07-06T21:15:03Z 2020-02-15T06:59:49Z +3479 129 2 4256 2.99 2005-07-07T14:14:36Z 2020-02-15T06:59:49Z +3480 129 1 4602 0.99 2005-07-08T06:52:40Z 2020-02-15T06:59:49Z +3481 129 1 4896 2.99 2005-07-08T20:23:15Z 2020-02-15T06:59:49Z +3482 129 1 4996 0.99 2005-07-09T00:59:46Z 2020-02-15T06:59:49Z +3483 129 1 5127 0.99 2005-07-09T07:25:47Z 2020-02-15T06:59:49Z +3484 129 2 5350 4.99 2005-07-09T17:39:30Z 2020-02-15T06:59:49Z +3485 129 1 8339 4.99 2005-07-29T04:41:13Z 2020-02-15T06:59:49Z +3486 129 1 8345 2.99 2005-07-29T04:47:37Z 2020-02-15T06:59:49Z +3487 129 2 9823 4.99 2005-07-31T11:49:00Z 2020-02-15T06:59:49Z +3488 129 1 9983 7.99 2005-07-31T17:09:36Z 2020-02-15T06:59:49Z +3489 129 1 10024 7.99 2005-07-31T18:26:36Z 2020-02-15T06:59:49Z +3490 129 2 10167 5.99 2005-07-31T23:24:31Z 2020-02-15T06:59:49Z +3491 129 2 10395 2.99 2005-08-01T07:08:22Z 2020-02-15T06:59:49Z +3492 129 1 10468 0.99 2005-08-01T09:48:29Z 2020-02-15T06:59:49Z +3493 129 1 10483 2.99 2005-08-01T10:19:45Z 2020-02-15T06:59:49Z +3494 129 2 10550 2.99 2005-08-01T12:46:52Z 2020-02-15T06:59:49Z +3495 129 2 10816 4.99 2005-08-01T22:48:57Z 2020-02-15T06:59:49Z +3496 129 2 12612 3.99 2005-08-18T17:10:05Z 2020-02-15T06:59:49Z +3497 129 2 12728 4.99 2005-08-18T21:47:48Z 2020-02-15T06:59:49Z +3498 129 2 13653 10.99 2005-08-20T07:54:54Z 2020-02-15T06:59:49Z +3499 129 1 13915 4.99 2005-08-20T16:42:53Z 2020-02-15T06:59:49Z +3500 129 1 13919 4.99 2005-08-20T16:47:34Z 2020-02-15T06:59:49Z +3501 129 1 13961 0.99 2005-08-20T18:16:34Z 2020-02-15T06:59:49Z +3502 129 1 14353 0.99 2005-08-21T09:07:50Z 2020-02-15T06:59:49Z +3503 129 2 14968 1.99 2005-08-22T06:46:59Z 2020-02-15T06:59:49Z +3504 130 1 1 2.99 2005-05-24T22:53:30Z 2020-02-15T06:59:49Z +3505 130 1 746 2.99 2005-05-29T09:25:10Z 2020-02-15T06:59:49Z +3506 130 1 1630 2.99 2005-06-16T07:55:01Z 2020-02-15T06:59:49Z +3507 130 2 1864 2.99 2005-06-17T01:39:47Z 2020-02-15T06:59:49Z +3508 130 2 2163 2.99 2005-06-17T23:46:16Z 2020-02-15T06:59:49Z +3509 130 2 2292 2.99 2005-06-18T07:37:48Z 2020-02-15T06:59:49Z +3510 130 1 2535 2.99 2005-06-19T01:39:04Z 2020-02-15T06:59:49Z +3511 130 1 2982 6.99 2005-06-20T08:38:29Z 2020-02-15T06:59:49Z +3512 130 2 4339 4.99 2005-07-07T18:41:42Z 2020-02-15T06:59:49Z +3513 130 2 4485 4.99 2005-07-08T01:07:54Z 2020-02-15T06:59:49Z +3514 130 1 6353 3.99 2005-07-11T20:48:56Z 2020-02-15T06:59:49Z +3515 130 1 7181 4.99 2005-07-27T08:14:34Z 2020-02-15T06:59:49Z +3516 130 1 7728 0.99 2005-07-28T04:56:33Z 2020-02-15T06:59:49Z +3517 130 1 9452 0.99 2005-07-30T22:19:16Z 2020-02-15T06:59:49Z +3518 130 2 9637 4.99 2005-07-31T05:18:54Z 2020-02-15T06:59:49Z +3519 130 2 9724 5.99 2005-07-31T08:33:08Z 2020-02-15T06:59:49Z +3520 130 2 10568 2.99 2005-08-01T13:17:28Z 2020-02-15T06:59:49Z +3521 130 2 10645 5.99 2005-08-01T15:52:01Z 2020-02-15T06:59:49Z +3522 130 1 11811 2.99 2005-08-17T11:59:18Z 2020-02-15T06:59:49Z +3523 130 1 12094 2.99 2005-08-17T22:31:04Z 2020-02-15T06:59:49Z +3524 130 1 12777 6.99 2005-08-18T23:39:22Z 2020-02-15T06:59:49Z +3525 130 2 14111 0.99 2005-08-21T00:59:01Z 2020-02-15T06:59:49Z +3526 130 2 15574 5.99 2005-08-23T05:29:32Z 2020-02-15T06:59:49Z +3527 130 1 15777 4.99 2005-08-23T13:29:08Z 2020-02-15T06:59:49Z +3528 131 2 55 2.99 2005-05-25T08:26:13Z 2020-02-15T06:59:49Z +3529 131 1 83 4.99 2005-05-25T12:30:15Z 2020-02-15T06:59:49Z +3530 131 2 944 7.99 2005-05-30T15:26:24Z 2020-02-15T06:59:49Z +3531 131 1 1646 9.99 2005-06-16T09:12:53Z 2020-02-15T06:59:49Z +3532 131 2 1768 4.99 2005-06-16T18:02:06Z 2020-02-15T06:59:49Z +3533 131 1 3515 2.99 2005-07-06T00:48:55Z 2020-02-15T06:59:49Z +3534 131 1 5233 4.99 2005-07-09T12:44:26Z 2020-02-15T06:59:49Z +3535 131 1 5395 4.99 2005-07-09T19:42:37Z 2020-02-15T06:59:49Z +3536 131 1 5610 2.99 2005-07-10T05:09:52Z 2020-02-15T06:59:49Z +3537 131 2 5726 2.99 2005-07-10T11:22:08Z 2020-02-15T06:59:49Z +3538 131 1 5874 3.99 2005-07-10T19:02:51Z 2020-02-15T06:59:49Z +3539 131 1 7557 2.99 2005-07-27T22:18:19Z 2020-02-15T06:59:49Z +3540 131 2 8071 0.99 2005-07-28T17:27:48Z 2020-02-15T06:59:49Z +3541 131 1 8267 6.99 2005-07-29T01:21:02Z 2020-02-15T06:59:49Z +3542 131 1 8570 8.99 2005-07-29T11:40:08Z 2020-02-15T06:59:49Z +3543 131 1 9323 3.99 2005-07-30T17:21:44Z 2020-02-15T06:59:49Z +3544 131 1 10179 2.99 2005-07-31T23:49:54Z 2020-02-15T06:59:49Z +3545 131 1 10459 4.99 2005-08-01T09:20:09Z 2020-02-15T06:59:49Z +3546 131 1 10861 1.99 2005-08-02T00:12:46Z 2020-02-15T06:59:49Z +3547 131 2 11971 0.99 2005-08-17T17:53:42Z 2020-02-15T06:59:49Z +3548 131 1 11973 2.99 2005-08-17T17:55:58Z 2020-02-15T06:59:49Z +3549 131 1 12216 0.99 2005-08-18T02:37:07Z 2020-02-15T06:59:49Z +3550 131 2 12263 0.99 2005-08-18T04:16:18Z 2020-02-15T06:59:49Z +3551 131 1 12372 9.99 2005-08-18T08:04:35Z 2020-02-15T06:59:49Z +3552 131 2 13050 6.99 2005-08-19T09:31:23Z 2020-02-15T06:59:49Z +3553 131 2 13346 7.99 2005-08-19T20:28:21Z 2020-02-15T06:59:49Z +3554 131 2 13353 2.99 2005-08-19T20:53:43Z 2020-02-15T06:59:49Z +3555 131 1 13407 0.99 2005-08-19T22:26:26Z 2020-02-15T06:59:49Z +3556 131 2 15659 2.99 2005-08-23T08:48:43Z 2020-02-15T06:59:49Z +3557 131 1 16042 2.99 2005-08-23T22:20:40Z 2020-02-15T06:59:49Z +3558 132 1 1843 0.99 2005-06-16T23:53:42Z 2020-02-15T06:59:49Z +3559 132 1 2208 4.99 2005-06-18T02:22:07Z 2020-02-15T06:59:49Z +3560 132 1 2384 0.99 2005-06-18T15:18:49Z 2020-02-15T06:59:49Z +3561 132 2 2608 2.99 2005-06-19T07:10:36Z 2020-02-15T06:59:49Z +3562 132 2 2924 4.99 2005-06-20T04:20:14Z 2020-02-15T06:59:49Z +3563 132 1 3121 4.99 2005-06-20T18:23:30Z 2020-02-15T06:59:49Z +3564 132 1 3706 0.99 2005-07-06T10:18:01Z 2020-02-15T06:59:49Z +3565 132 2 3825 2.99 2005-07-06T15:50:03Z 2020-02-15T06:59:49Z +3566 132 1 4168 4.99 2005-07-07T09:37:24Z 2020-02-15T06:59:49Z +3567 132 1 4534 4.99 2005-07-08T03:36:55Z 2020-02-15T06:59:49Z +3568 132 1 4557 5.99 2005-07-08T04:49:15Z 2020-02-15T06:59:49Z +3569 132 2 4903 0.99 2005-07-08T20:50:05Z 2020-02-15T06:59:49Z +3570 132 1 5391 2.99 2005-07-09T19:28:34Z 2020-02-15T06:59:49Z +3571 132 2 5684 5.99 2005-07-10T08:59:03Z 2020-02-15T06:59:49Z +3572 132 1 5703 0.99 2005-07-10T10:04:15Z 2020-02-15T06:59:49Z +3573 132 2 5715 1.99 2005-07-10T10:48:03Z 2020-02-15T06:59:49Z +3574 132 1 6239 6.99 2005-07-11T14:20:48Z 2020-02-15T06:59:49Z +3575 132 1 6978 1.99 2005-07-27T00:47:40Z 2020-02-15T06:59:49Z +3576 132 2 7432 0.99 2005-07-27T17:31:40Z 2020-02-15T06:59:49Z +3577 132 1 7631 1.99 2005-07-28T01:01:15Z 2020-02-15T06:59:49Z +3578 132 2 10243 4.99 2005-08-01T02:18:46Z 2020-02-15T06:59:49Z +3579 132 1 10400 6.99 2005-08-01T07:18:24Z 2020-02-15T06:59:49Z +3580 132 2 10619 3.99 2005-08-01T15:07:04Z 2020-02-15T06:59:49Z +3581 132 1 10638 6.99 2005-08-01T15:44:20Z 2020-02-15T06:59:49Z +3582 132 2 11140 0.99 2005-08-02T09:27:45Z 2020-02-15T06:59:49Z +3583 132 2 11812 0.99 2005-08-17T12:00:54Z 2020-02-15T06:59:49Z +3584 132 2 12133 0.99 2005-08-17T23:47:16Z 2020-02-15T06:59:49Z +3585 132 1 15874 4.99 2005-08-23T16:30:55Z 2020-02-15T06:59:49Z +3586 133 1 275 6.99 2005-05-26T17:09:53Z 2020-02-15T06:59:49Z +3587 133 2 447 2.99 2005-05-27T18:57:02Z 2020-02-15T06:59:49Z +3588 133 2 1522 3.99 2005-06-16T00:17:39Z 2020-02-15T06:59:49Z +3589 133 2 2665 7.99 2005-06-19T11:12:35Z 2020-02-15T06:59:49Z +3590 133 1 3006 0.99 2005-06-20T10:10:29Z 2020-02-15T06:59:49Z +3591 133 2 3365 0.99 2005-06-21T12:55:48Z 2020-02-15T06:59:49Z +3592 133 2 4506 6.99 2005-07-08T02:22:18Z 2020-02-15T06:59:49Z +3593 133 2 4566 2.99 2005-07-08T05:18:50Z 2020-02-15T06:59:49Z +3594 133 1 4681 6.99 2005-07-08T10:36:03Z 2020-02-15T06:59:49Z +3595 133 2 4829 2.99 2005-07-08T17:54:18Z 2020-02-15T06:59:49Z +3596 133 2 5063 2.99 2005-07-09T04:37:31Z 2020-02-15T06:59:49Z +3597 133 1 6157 4.99 2005-07-11T09:48:16Z 2020-02-15T06:59:49Z +3598 133 1 6609 3.99 2005-07-12T08:19:41Z 2020-02-15T06:59:49Z +3599 133 1 7177 2.99 2005-07-27T08:07:39Z 2020-02-15T06:59:49Z +3600 133 1 7400 0.99 2005-07-27T16:16:37Z 2020-02-15T06:59:49Z +3601 133 2 8389 6.99 2005-07-29T05:50:09Z 2020-02-15T06:59:49Z +3602 133 2 9139 2.99 2005-07-30T10:11:52Z 2020-02-15T06:59:49Z +3603 133 1 9175 0.99 2005-07-30T11:47:48Z 2020-02-15T06:59:49Z +3604 133 2 9671 0.99 2005-07-31T06:33:41Z 2020-02-15T06:59:49Z +3605 133 1 10665 0.99 2005-08-01T16:56:17Z 2020-02-15T06:59:49Z +3606 133 1 12419 4.99 2005-08-18T10:01:48Z 2020-02-15T06:59:49Z +3607 133 1 12834 4.99 2005-08-19T01:47:30Z 2020-02-15T06:59:49Z +3608 133 2 13323 2.99 2005-08-19T19:48:07Z 2020-02-15T06:59:49Z +3609 133 1 13455 1.99 2005-08-20T00:32:17Z 2020-02-15T06:59:49Z +3610 133 2 13910 2.99 2005-08-20T16:30:49Z 2020-02-15T06:59:49Z +3611 133 2 15080 0.99 2005-08-22T11:11:51Z 2020-02-15T06:59:49Z +3612 133 1 16009 6.99 2005-08-23T21:07:59Z 2020-02-15T06:59:49Z +3613 134 1 366 3.99 2005-05-27T07:33:54Z 2020-02-15T06:59:49Z +3614 134 2 798 0.99 2005-05-29T17:23:43Z 2020-02-15T06:59:49Z +3615 134 1 814 6.99 2005-05-29T20:16:12Z 2020-02-15T06:59:49Z +3616 134 2 1124 4.99 2005-05-31T16:49:34Z 2020-02-15T06:59:49Z +3617 134 1 1618 9.99 2005-06-16T07:08:38Z 2020-02-15T06:59:49Z +3618 134 2 1784 0.99 2005-06-16T19:25:32Z 2020-02-15T06:59:49Z +3619 134 2 1881 0.99 2005-06-17T03:09:56Z 2020-02-15T06:59:49Z +3620 134 1 3267 5.99 2005-06-21T04:55:21Z 2020-02-15T06:59:49Z +3621 134 1 5315 4.99 2005-07-09T16:09:19Z 2020-02-15T06:59:49Z +3622 134 2 6226 2.99 2005-07-11T13:48:11Z 2020-02-15T06:59:49Z +3623 134 1 6659 0.99 2005-07-12T11:18:05Z 2020-02-15T06:59:49Z +3624 134 2 7516 2.99 2005-07-27T20:55:28Z 2020-02-15T06:59:49Z +3625 134 2 7965 4.99 2005-07-28T13:52:57Z 2020-02-15T06:59:49Z +3626 134 2 8650 1.99 2005-07-29T14:59:04Z 2020-02-15T06:59:49Z +3627 134 1 10864 6.99 2005-08-02T00:18:59Z 2020-02-15T06:59:49Z +3628 134 1 11280 3.99 2005-08-02T14:34:33Z 2020-02-15T06:59:49Z +3629 134 1 11283 4.99 2005-08-02T14:39:46Z 2020-02-15T06:59:49Z +3630 134 2 11482 4.99 2005-08-02T22:24:31Z 2020-02-15T06:59:49Z +3631 134 1 12754 7.99 2005-08-18T22:37:41Z 2020-02-15T06:59:49Z +3632 134 2 12987 2.99 2005-08-19T07:11:44Z 2020-02-15T06:59:49Z +3633 134 2 13006 2.99 2005-08-19T07:47:16Z 2020-02-15T06:59:49Z +3634 134 2 14265 2.99 2005-08-21T06:20:14Z 2020-02-15T06:59:49Z +3635 134 2 15963 2.99 2005-08-23T19:42:46Z 2020-02-15T06:59:49Z +3636 135 1 78 5.99 2005-05-25T11:35:18Z 2020-02-15T06:59:49Z +3637 135 2 753 3.99 2005-05-29T10:16:42Z 2020-02-15T06:59:49Z +3638 135 2 1272 0.99 2005-06-15T07:42:58Z 2020-02-15T06:59:49Z +3639 135 2 1671 1.99 2005-06-16T10:30:22Z 2020-02-15T06:59:49Z +3640 135 2 2941 2.99 2005-06-20T05:22:18Z 2020-02-15T06:59:49Z +3641 135 1 4102 0.99 2005-07-07T06:25:19Z 2020-02-15T06:59:49Z +3642 135 2 5054 7.99 2005-07-09T04:01:02Z 2020-02-15T06:59:49Z +3643 135 1 5541 0.99 2005-07-10T02:44:27Z 2020-02-15T06:59:49Z +3644 135 1 6117 3.99 2005-07-11T07:39:38Z 2020-02-15T06:59:49Z +3645 135 1 6461 3.99 2005-07-12T01:14:03Z 2020-02-15T06:59:49Z +3646 135 1 6817 3.99 2005-07-12T18:19:57Z 2020-02-15T06:59:49Z +3647 135 2 7297 4.99 2005-07-27T12:39:48Z 2020-02-15T06:59:49Z +3648 135 1 7437 0.99 2005-07-27T17:39:18Z 2020-02-15T06:59:49Z +3649 135 1 7554 7.99 2005-07-27T22:12:41Z 2020-02-15T06:59:49Z +3650 135 1 7734 0.99 2005-07-28T05:08:44Z 2020-02-15T06:59:49Z +3651 135 1 8315 0.99 2005-07-29T03:37:07Z 2020-02-15T06:59:49Z +3652 135 2 8885 7.99 2005-07-30T00:36:26Z 2020-02-15T06:59:49Z +3653 135 1 8987 6.99 2005-07-30T04:37:36Z 2020-02-15T06:59:49Z +3654 135 2 10091 4.99 2005-07-31T20:23:13Z 2020-02-15T06:59:49Z +3655 135 2 10471 0.99 2005-08-01T09:52:37Z 2020-02-15T06:59:49Z +3656 135 1 10611 2.99 2005-08-01T14:53:52Z 2020-02-15T06:59:49Z +3657 135 1 10698 3.99 2005-08-01T18:24:41Z 2020-02-15T06:59:49Z +3658 135 2 11194 5.99 2005-08-02T11:35:53Z 2020-02-15T06:59:49Z +3659 135 1 11704 7.99 2005-08-17T07:21:22Z 2020-02-15T06:59:49Z +3660 135 1 12249 2.99 2005-08-18T03:53:34Z 2020-02-15T06:59:49Z +3661 135 1 13035 0.99 2005-08-19T08:46:45Z 2020-02-15T06:59:49Z +3662 135 1 14005 0.99 2005-08-20T20:19:05Z 2020-02-15T06:59:49Z +3663 135 2 14136 5.99 2005-08-21T01:57:26Z 2020-02-15T06:59:49Z +3664 135 2 15908 2.99 2005-08-23T17:42:00Z 2020-02-15T06:59:49Z +3665 135 1 13390 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3666 136 2 1150 2.99 2005-05-31T21:20:09Z 2020-02-15T06:59:49Z +3667 136 2 2104 2.99 2005-06-17T19:14:30Z 2020-02-15T06:59:49Z +3668 136 1 4927 0.99 2005-07-08T22:05:35Z 2020-02-15T06:59:49Z +3669 136 1 5627 3.99 2005-07-10T05:51:12Z 2020-02-15T06:59:49Z +3670 136 2 6142 3.99 2005-07-11T08:54:09Z 2020-02-15T06:59:49Z +3671 136 1 6585 8.99 2005-07-12T06:50:52Z 2020-02-15T06:59:49Z +3672 136 2 9319 0.99 2005-07-30T17:15:27Z 2020-02-15T06:59:49Z +3673 136 2 9764 5.99 2005-07-31T09:42:58Z 2020-02-15T06:59:49Z +3674 136 2 11992 10.99 2005-08-17T18:27:22Z 2020-02-15T06:59:49Z +3675 136 1 12287 5.99 2005-08-18T04:58:06Z 2020-02-15T06:59:49Z +3676 136 2 12539 0.99 2005-08-18T14:10:09Z 2020-02-15T06:59:49Z +3677 136 2 13992 4.99 2005-08-20T19:30:35Z 2020-02-15T06:59:49Z +3678 136 2 14379 0.99 2005-08-21T09:53:03Z 2020-02-15T06:59:49Z +3679 136 1 14437 2.99 2005-08-21T11:48:32Z 2020-02-15T06:59:49Z +3680 136 1 15439 4.99 2005-08-23T00:34:28Z 2020-02-15T06:59:49Z +3681 137 1 925 2.99 2005-05-30T12:13:52Z 2020-02-15T06:59:49Z +3682 137 1 2469 6.99 2005-06-18T20:24:23Z 2020-02-15T06:59:49Z +3683 137 1 2785 2.99 2005-06-19T18:43:57Z 2020-02-15T06:59:49Z +3684 137 2 3058 3.99 2005-06-20T13:28:35Z 2020-02-15T06:59:49Z +3685 137 1 3436 5.99 2005-06-21T19:16:09Z 2020-02-15T06:59:49Z +3686 137 2 3589 4.99 2005-07-06T04:30:18Z 2020-02-15T06:59:49Z +3687 137 2 3676 5.99 2005-07-06T09:10:37Z 2020-02-15T06:59:49Z +3688 137 2 3874 6.99 2005-07-06T18:06:12Z 2020-02-15T06:59:49Z +3689 137 1 4332 6.99 2005-07-07T18:25:26Z 2020-02-15T06:59:49Z +3690 137 2 4474 3.99 2005-07-08T00:26:56Z 2020-02-15T06:59:49Z +3691 137 1 5106 2.99 2005-07-09T06:40:24Z 2020-02-15T06:59:49Z +3692 137 1 5443 3.99 2005-07-09T21:56:09Z 2020-02-15T06:59:49Z +3693 137 1 5804 2.99 2005-07-10T15:06:31Z 2020-02-15T06:59:49Z +3694 137 1 6039 6.99 2005-07-11T03:12:19Z 2020-02-15T06:59:49Z +3695 137 2 6200 0.99 2005-07-11T12:16:42Z 2020-02-15T06:59:49Z +3696 137 1 8028 8.99 2005-07-28T16:11:15Z 2020-02-15T06:59:49Z +3697 137 1 8106 4.99 2005-07-28T19:02:46Z 2020-02-15T06:59:49Z +3698 137 2 8954 2.99 2005-07-30T03:25:51Z 2020-02-15T06:59:49Z +3699 137 1 9002 4.99 2005-07-30T05:02:21Z 2020-02-15T06:59:49Z +3700 137 2 9200 4.99 2005-07-30T12:39:52Z 2020-02-15T06:59:49Z +3701 137 2 9466 7.99 2005-07-30T22:44:36Z 2020-02-15T06:59:49Z +3702 137 1 9709 4.99 2005-07-31T08:04:55Z 2020-02-15T06:59:49Z +3703 137 1 9789 2.99 2005-07-31T10:30:25Z 2020-02-15T06:59:49Z +3704 137 1 10175 6.99 2005-07-31T23:40:11Z 2020-02-15T06:59:49Z +3705 137 2 10595 4.99 2005-08-01T14:16:28Z 2020-02-15T06:59:49Z +3706 137 2 10842 5.99 2005-08-01T23:41:24Z 2020-02-15T06:59:49Z +3707 137 2 11057 4.99 2005-08-02T06:38:19Z 2020-02-15T06:59:49Z +3708 137 1 11281 3.99 2005-08-02T14:35:01Z 2020-02-15T06:59:49Z +3709 137 2 11732 3.99 2005-08-17T08:29:46Z 2020-02-15T06:59:49Z +3710 137 1 12078 2.99 2005-08-17T22:00:22Z 2020-02-15T06:59:49Z +3711 137 1 13148 0.99 2005-08-19T12:55:30Z 2020-02-15T06:59:49Z +3712 137 1 13472 5.99 2005-08-20T01:03:31Z 2020-02-15T06:59:49Z +3713 137 1 13776 5.99 2005-08-20T11:57:06Z 2020-02-15T06:59:49Z +3714 137 1 14754 7.99 2005-08-21T23:17:26Z 2020-02-15T06:59:49Z +3715 137 2 15082 7.99 2005-08-22T11:17:06Z 2020-02-15T06:59:49Z +3716 137 1 15133 0.99 2005-08-22T13:17:43Z 2020-02-15T06:59:49Z +3717 137 2 15537 2.99 2005-08-23T04:00:30Z 2020-02-15T06:59:49Z +3718 137 2 15889 4.99 2005-08-23T16:57:43Z 2020-02-15T06:59:49Z +3719 137 1 16030 9.99 2005-08-23T21:56:04Z 2020-02-15T06:59:49Z +3720 138 1 523 2.99 2005-05-28T03:53:26Z 2020-02-15T06:59:49Z +3721 138 1 1020 0.99 2005-05-31T03:06:08Z 2020-02-15T06:59:49Z +3722 138 2 1316 0.99 2005-06-15T10:26:23Z 2020-02-15T06:59:49Z +3723 138 2 2038 0.99 2005-06-17T14:00:51Z 2020-02-15T06:59:49Z +3724 138 1 2731 7.99 2005-06-19T15:14:55Z 2020-02-15T06:59:49Z +3725 138 2 3481 2.99 2005-07-05T23:13:07Z 2020-02-15T06:59:49Z +3726 138 1 5378 0.99 2005-07-09T19:05:56Z 2020-02-15T06:59:49Z +3727 138 1 5600 1.99 2005-07-10T04:55:45Z 2020-02-15T06:59:49Z +3728 138 1 5679 4.99 2005-07-10T08:44:02Z 2020-02-15T06:59:49Z +3729 138 1 6458 2.99 2005-07-12T01:08:52Z 2020-02-15T06:59:49Z +3730 138 1 6892 0.99 2005-07-12T21:10:04Z 2020-02-15T06:59:49Z +3731 138 1 7208 2.99 2005-07-27T09:16:28Z 2020-02-15T06:59:49Z +3732 138 1 7754 2.99 2005-07-28T06:10:55Z 2020-02-15T06:59:49Z +3733 138 2 8123 4.99 2005-07-28T19:28:23Z 2020-02-15T06:59:49Z +3734 138 2 8160 3.99 2005-07-28T21:10:30Z 2020-02-15T06:59:49Z +3735 138 1 8424 3.99 2005-07-29T07:06:03Z 2020-02-15T06:59:49Z +3736 138 2 9259 1.99 2005-07-30T14:37:44Z 2020-02-15T06:59:49Z +3737 138 1 9619 0.99 2005-07-31T04:17:02Z 2020-02-15T06:59:49Z +3738 138 1 9947 9.99 2005-07-31T15:49:40Z 2020-02-15T06:59:49Z +3739 138 1 10110 0.99 2005-07-31T21:06:12Z 2020-02-15T06:59:49Z +3740 138 2 10190 4.99 2005-08-01T00:27:53Z 2020-02-15T06:59:49Z +3741 138 1 10268 3.99 2005-08-01T03:08:56Z 2020-02-15T06:59:49Z +3742 138 1 10431 5.99 2005-08-01T08:41:54Z 2020-02-15T06:59:49Z +3743 138 1 11015 4.99 2005-08-02T05:13:00Z 2020-02-15T06:59:49Z +3744 138 1 11088 0.99 2005-08-02T07:48:31Z 2020-02-15T06:59:49Z +3745 138 1 11463 0.99 2005-08-02T21:37:36Z 2020-02-15T06:59:49Z +3746 138 2 12550 2.99 2005-08-18T14:40:38Z 2020-02-15T06:59:49Z +3747 138 2 12873 2.99 2005-08-19T03:05:41Z 2020-02-15T06:59:49Z +3748 138 1 14194 1.99 2005-08-21T03:40:11Z 2020-02-15T06:59:49Z +3749 138 2 14432 4.99 2005-08-21T11:36:15Z 2020-02-15T06:59:49Z +3750 138 2 14486 4.99 2005-08-21T13:52:54Z 2020-02-15T06:59:49Z +3751 138 1 14987 4.99 2005-08-22T07:41:08Z 2020-02-15T06:59:49Z +3752 138 1 15424 2.99 2005-08-23T00:03:01Z 2020-02-15T06:59:49Z +3753 138 1 15501 0.99 2005-08-23T02:39:56Z 2020-02-15T06:59:49Z +3754 139 2 1169 2.99 2005-06-14T23:42:56Z 2020-02-15T06:59:49Z +3755 139 1 1736 2.99 2005-06-16T15:52:32Z 2020-02-15T06:59:49Z +3756 139 1 2659 0.99 2005-06-19T10:47:42Z 2020-02-15T06:59:49Z +3757 139 2 2718 7.99 2005-06-19T14:49:42Z 2020-02-15T06:59:49Z +3758 139 2 4660 0.99 2005-07-08T09:54:47Z 2020-02-15T06:59:49Z +3759 139 2 4663 2.99 2005-07-08T09:59:18Z 2020-02-15T06:59:49Z +3760 139 2 5092 2.99 2005-07-09T05:57:39Z 2020-02-15T06:59:49Z +3761 139 2 5265 7.99 2005-07-09T14:15:01Z 2020-02-15T06:59:49Z +3762 139 1 5390 6.99 2005-07-09T19:26:22Z 2020-02-15T06:59:49Z +3763 139 1 5494 6.99 2005-07-10T00:15:00Z 2020-02-15T06:59:49Z +3764 139 1 6496 6.99 2005-07-12T02:57:39Z 2020-02-15T06:59:49Z +3765 139 2 6740 0.99 2005-07-12T14:22:08Z 2020-02-15T06:59:49Z +3766 139 1 7369 0.99 2005-07-27T15:07:58Z 2020-02-15T06:59:49Z +3767 139 2 7767 5.99 2005-07-28T06:42:02Z 2020-02-15T06:59:49Z +3768 139 2 9415 2.99 2005-07-30T20:48:31Z 2020-02-15T06:59:49Z +3769 139 2 9920 4.99 2005-07-31T14:57:13Z 2020-02-15T06:59:49Z +3770 139 1 10900 2.99 2005-08-02T01:34:26Z 2020-02-15T06:59:49Z +3771 139 1 12859 6.99 2005-08-19T02:23:23Z 2020-02-15T06:59:49Z +3772 139 2 13401 3.99 2005-08-19T22:16:16Z 2020-02-15T06:59:49Z +3773 139 2 14736 5.99 2005-08-21T22:25:53Z 2020-02-15T06:59:49Z +3774 139 1 14788 2.99 2005-08-22T00:27:59Z 2020-02-15T06:59:49Z +3775 139 1 15024 2.99 2005-08-22T08:57:10Z 2020-02-15T06:59:49Z +3776 139 2 15029 2.99 2005-08-22T09:04:53Z 2020-02-15T06:59:49Z +3777 139 1 15062 2.99 2005-08-22T10:34:39Z 2020-02-15T06:59:49Z +3778 139 1 15218 9.99 2005-08-22T16:59:05Z 2020-02-15T06:59:49Z +3779 139 1 15471 3.99 2005-08-23T01:38:48Z 2020-02-15T06:59:49Z +3780 139 1 15743 0.99 2005-08-23T12:12:05Z 2020-02-15T06:59:49Z +3781 140 1 1586 4.99 2005-06-16T04:51:18Z 2020-02-15T06:59:49Z +3782 140 1 1687 2.99 2005-06-16T12:09:20Z 2020-02-15T06:59:49Z +3783 140 2 2332 6.99 2005-06-18T10:53:51Z 2020-02-15T06:59:49Z +3784 140 2 3171 0.99 2005-06-20T22:15:47Z 2020-02-15T06:59:49Z +3785 140 1 6286 4.99 2005-07-11T16:55:35Z 2020-02-15T06:59:49Z +3786 140 1 6407 9.99 2005-07-11T23:02:19Z 2020-02-15T06:59:49Z +3787 140 2 6571 0.99 2005-07-12T05:51:47Z 2020-02-15T06:59:49Z +3788 140 1 6918 2.99 2005-07-12T22:30:29Z 2020-02-15T06:59:49Z +3789 140 1 7170 4.99 2005-07-27T07:58:26Z 2020-02-15T06:59:49Z +3790 140 1 9094 4.99 2005-07-30T08:35:10Z 2020-02-15T06:59:49Z +3791 140 1 9404 0.99 2005-07-30T20:21:35Z 2020-02-15T06:59:49Z +3792 140 1 10342 6.99 2005-08-01T05:11:11Z 2020-02-15T06:59:49Z +3793 140 2 11430 3.99 2005-08-02T20:04:36Z 2020-02-15T06:59:49Z +3794 140 1 12086 4.99 2005-08-17T22:20:01Z 2020-02-15T06:59:49Z +3795 140 1 12675 4.99 2005-08-18T19:34:02Z 2020-02-15T06:59:49Z +3796 140 2 13053 10.99 2005-08-19T09:31:48Z 2020-02-15T06:59:49Z +3797 140 1 15261 2.99 2005-08-22T18:24:34Z 2020-02-15T06:59:49Z +3798 140 1 15852 2.99 2005-08-23T15:47:02Z 2020-02-15T06:59:49Z +3799 141 2 930 2.99 2005-05-30T12:44:57Z 2020-02-15T06:59:49Z +3800 141 2 1242 7.99 2005-06-15T05:05:07Z 2020-02-15T06:59:49Z +3801 141 2 2895 7.99 2005-06-20T02:26:31Z 2020-02-15T06:59:49Z +3802 141 1 3434 4.99 2005-06-21T19:08:28Z 2020-02-15T06:59:49Z +3803 141 1 4057 1.99 2005-07-07T04:00:20Z 2020-02-15T06:59:49Z +3804 141 2 4297 0.99 2005-07-07T16:24:09Z 2020-02-15T06:59:49Z +3805 141 1 4656 5.99 2005-07-08T09:50:10Z 2020-02-15T06:59:49Z +3806 141 2 5062 2.99 2005-07-09T04:36:49Z 2020-02-15T06:59:49Z +3807 141 1 5769 0.99 2005-07-10T13:17:58Z 2020-02-15T06:59:49Z +3808 141 2 6979 4.99 2005-07-27T00:49:53Z 2020-02-15T06:59:49Z +3809 141 2 7878 2.99 2005-07-28T10:27:10Z 2020-02-15T06:59:49Z +3810 141 1 8434 4.99 2005-07-29T07:20:14Z 2020-02-15T06:59:49Z +3811 141 2 9073 7.99 2005-07-30T07:49:56Z 2020-02-15T06:59:49Z +3812 141 1 9584 4.99 2005-07-31T03:05:48Z 2020-02-15T06:59:49Z +3813 141 2 9683 2.99 2005-07-31T06:47:13Z 2020-02-15T06:59:49Z +3814 141 1 10287 3.99 2005-08-01T03:37:01Z 2020-02-15T06:59:49Z +3815 141 1 10379 1.99 2005-08-01T06:34:29Z 2020-02-15T06:59:49Z +3816 141 1 10798 4.99 2005-08-01T22:03:10Z 2020-02-15T06:59:49Z +3817 141 1 11411 2.99 2005-08-02T19:29:47Z 2020-02-15T06:59:49Z +3818 141 1 11412 5.99 2005-08-02T19:32:51Z 2020-02-15T06:59:49Z +3819 141 1 12032 5.99 2005-08-17T20:14:26Z 2020-02-15T06:59:49Z +3820 141 1 12093 2.99 2005-08-17T22:28:40Z 2020-02-15T06:59:49Z +3821 141 2 12107 3.99 2005-08-17T22:56:24Z 2020-02-15T06:59:49Z +3822 141 2 12353 2.99 2005-08-18T07:33:08Z 2020-02-15T06:59:49Z +3823 141 1 13000 0.99 2005-08-19T07:36:42Z 2020-02-15T06:59:49Z +3824 141 2 13169 2.99 2005-08-19T13:43:35Z 2020-02-15T06:59:49Z +3825 141 2 13470 4.99 2005-08-20T01:01:16Z 2020-02-15T06:59:49Z +3826 141 2 14059 7.99 2005-08-20T22:24:44Z 2020-02-15T06:59:49Z +3827 141 1 14112 2.99 2005-08-21T01:00:46Z 2020-02-15T06:59:49Z +3828 141 1 15013 4.99 2005-08-22T08:42:45Z 2020-02-15T06:59:49Z +3829 141 1 15309 0.99 2005-08-22T19:54:52Z 2020-02-15T06:59:49Z +3830 141 1 15964 2.99 2005-08-23T19:45:25Z 2020-02-15T06:59:49Z +3831 142 2 11 8.99 2005-05-25T00:09:02Z 2020-02-15T06:59:49Z +3832 142 1 148 0.99 2005-05-26T00:25:23Z 2020-02-15T06:59:49Z +3833 142 1 575 9.99 2005-05-28T10:56:09Z 2020-02-15T06:59:49Z +3834 142 1 1268 1.99 2005-06-15T07:29:30Z 2020-02-15T06:59:49Z +3835 142 1 3214 2.99 2005-06-21T01:08:26Z 2020-02-15T06:59:49Z +3836 142 2 3492 2.99 2005-07-05T23:44:37Z 2020-02-15T06:59:49Z +3837 142 2 4497 4.99 2005-07-08T01:51:32Z 2020-02-15T06:59:49Z +3838 142 1 4531 4.99 2005-07-08T03:27:59Z 2020-02-15T06:59:49Z +3839 142 1 6522 0.99 2005-07-12T04:11:58Z 2020-02-15T06:59:49Z +3840 142 1 7764 2.99 2005-07-28T06:40:05Z 2020-02-15T06:59:49Z +3841 142 2 8513 2.99 2005-07-29T09:52:59Z 2020-02-15T06:59:49Z +3842 142 2 8623 4.99 2005-07-29T13:55:11Z 2020-02-15T06:59:49Z +3843 142 1 9020 7.99 2005-07-30T05:31:27Z 2020-02-15T06:59:49Z +3844 142 1 9131 2.99 2005-07-30T09:55:57Z 2020-02-15T06:59:49Z +3845 142 1 9419 5.99 2005-07-30T21:04:59Z 2020-02-15T06:59:49Z +3846 142 2 10934 5.99 2005-08-02T02:52:18Z 2020-02-15T06:59:49Z +3847 142 2 11244 5.99 2005-08-02T13:33:24Z 2020-02-15T06:59:49Z +3848 142 1 12964 0.99 2005-08-19T06:29:13Z 2020-02-15T06:59:49Z +3849 142 1 13044 0.99 2005-08-19T09:14:31Z 2020-02-15T06:59:49Z +3850 142 2 13745 0.99 2005-08-20T10:53:49Z 2020-02-15T06:59:49Z +3851 142 1 13959 0.99 2005-08-20T18:16:21Z 2020-02-15T06:59:49Z +3852 142 2 14116 4.99 2005-08-21T01:11:17Z 2020-02-15T06:59:49Z +3853 142 2 14813 0.99 2005-08-22T01:11:37Z 2020-02-15T06:59:49Z +3854 142 2 15333 2.99 2005-08-22T20:44:06Z 2020-02-15T06:59:49Z +3855 142 1 15477 1.99 2005-08-23T01:46:35Z 2020-02-15T06:59:49Z +3856 142 1 15454 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:49Z +3857 143 1 221 2.99 2005-05-26T10:14:09Z 2020-02-15T06:59:49Z +3858 143 1 312 2.99 2005-05-26T22:52:19Z 2020-02-15T06:59:49Z +3859 143 2 1898 1.99 2005-06-17T04:28:11Z 2020-02-15T06:59:49Z +3860 143 1 1942 4.99 2005-06-17T07:43:39Z 2020-02-15T06:59:49Z +3861 143 2 2251 3.99 2005-06-18T05:05:08Z 2020-02-15T06:59:49Z +3862 143 1 2574 0.99 2005-06-19T04:23:52Z 2020-02-15T06:59:49Z +3863 143 1 2588 4.99 2005-06-19T05:20:31Z 2020-02-15T06:59:49Z +3864 143 1 4031 7.99 2005-07-07T02:32:07Z 2020-02-15T06:59:49Z +3865 143 2 4221 0.99 2005-07-07T12:18:57Z 2020-02-15T06:59:49Z +3866 143 1 4585 7.99 2005-07-08T06:11:58Z 2020-02-15T06:59:49Z +3867 143 2 6076 6.99 2005-07-11T05:05:30Z 2020-02-15T06:59:49Z +3868 143 2 6207 4.99 2005-07-11T12:34:24Z 2020-02-15T06:59:49Z +3869 143 1 8312 0.99 2005-07-29T03:32:38Z 2020-02-15T06:59:49Z +3870 143 1 8335 0.99 2005-07-29T04:18:25Z 2020-02-15T06:59:49Z +3871 143 2 9889 1.99 2005-07-31T14:02:50Z 2020-02-15T06:59:49Z +3872 143 1 10118 0.99 2005-07-31T21:16:31Z 2020-02-15T06:59:49Z +3873 143 1 11278 6.99 2005-08-02T14:29:43Z 2020-02-15T06:59:49Z +3874 143 2 11651 6.99 2005-08-17T05:02:25Z 2020-02-15T06:59:49Z +3875 143 1 12408 2.99 2005-08-18T09:40:38Z 2020-02-15T06:59:49Z +3876 143 2 13835 4.99 2005-08-20T14:06:33Z 2020-02-15T06:59:49Z +3877 143 1 15250 5.99 2005-08-22T18:03:11Z 2020-02-15T06:59:49Z +3878 143 1 16029 4.99 2005-08-23T21:54:02Z 2020-02-15T06:59:49Z +3879 144 1 323 2.99 2005-05-27T00:49:27Z 2020-02-15T06:59:49Z +3880 144 2 345 2.99 2005-05-27T04:32:25Z 2020-02-15T06:59:49Z +3881 144 1 1814 5.99 2005-06-16T21:15:22Z 2020-02-15T06:59:49Z +3882 144 1 1943 0.99 2005-06-17T07:49:17Z 2020-02-15T06:59:49Z +3883 144 1 2756 4.99 2005-06-19T16:57:42Z 2020-02-15T06:59:49Z +3884 144 2 3019 4.99 2005-06-20T11:11:52Z 2020-02-15T06:59:49Z +3885 144 1 3145 2.99 2005-06-20T20:21:17Z 2020-02-15T06:59:49Z +3886 144 1 3321 2.99 2005-06-21T08:33:26Z 2020-02-15T06:59:49Z +3887 144 1 4726 6.99 2005-07-08T12:50:54Z 2020-02-15T06:59:49Z +3888 144 2 4818 3.99 2005-07-08T17:18:22Z 2020-02-15T06:59:49Z +3889 144 2 5049 0.99 2005-07-09T03:54:12Z 2020-02-15T06:59:49Z +3890 144 2 5374 8.99 2005-07-09T18:52:08Z 2020-02-15T06:59:49Z +3891 144 2 5408 7.99 2005-07-09T20:16:51Z 2020-02-15T06:59:49Z +3892 144 2 5526 7.99 2005-07-10T02:04:03Z 2020-02-15T06:59:49Z +3893 144 2 6614 7.99 2005-07-12T08:33:49Z 2020-02-15T06:59:49Z +3894 144 2 6791 9.99 2005-07-12T16:35:07Z 2020-02-15T06:59:49Z +3895 144 2 7378 5.99 2005-07-27T15:31:33Z 2020-02-15T06:59:49Z +3896 144 2 7566 2.99 2005-07-27T22:34:45Z 2020-02-15T06:59:49Z +3897 144 1 7830 0.99 2005-07-28T08:43:49Z 2020-02-15T06:59:49Z +3898 144 1 7858 3.99 2005-07-28T09:50:18Z 2020-02-15T06:59:49Z +3899 144 2 8459 5.99 2005-07-29T08:05:40Z 2020-02-15T06:59:49Z +3900 144 1 8983 0.99 2005-07-30T04:31:08Z 2020-02-15T06:59:49Z +3901 144 1 9034 7.99 2005-07-30T06:10:58Z 2020-02-15T06:59:49Z +3902 144 1 9098 3.99 2005-07-30T08:44:21Z 2020-02-15T06:59:49Z +3903 144 2 9174 4.99 2005-07-30T11:42:10Z 2020-02-15T06:59:49Z +3904 144 2 9714 0.99 2005-07-31T08:15:32Z 2020-02-15T06:59:49Z +3905 144 1 10302 0.99 2005-08-01T04:12:08Z 2020-02-15T06:59:49Z +3906 144 1 10593 4.99 2005-08-01T14:13:19Z 2020-02-15T06:59:49Z +3907 144 1 10740 5.99 2005-08-01T19:50:32Z 2020-02-15T06:59:49Z +3908 144 1 10951 4.99 2005-08-02T03:26:35Z 2020-02-15T06:59:49Z +3909 144 1 11228 2.99 2005-08-02T12:55:23Z 2020-02-15T06:59:49Z +3910 144 2 11476 6.99 2005-08-02T22:03:47Z 2020-02-15T06:59:49Z +3911 144 1 11534 7.99 2005-08-17T00:35:27Z 2020-02-15T06:59:49Z +3912 144 1 11859 4.99 2005-08-17T13:51:20Z 2020-02-15T06:59:49Z +3913 144 2 12087 2.99 2005-08-17T22:20:12Z 2020-02-15T06:59:49Z +3914 144 2 12733 2.99 2005-08-18T21:59:00Z 2020-02-15T06:59:49Z +3915 144 1 12858 3.99 2005-08-19T02:22:16Z 2020-02-15T06:59:49Z +3916 144 2 12980 6.99 2005-08-19T07:03:14Z 2020-02-15T06:59:49Z +3917 144 2 13881 2.99 2005-08-20T15:18:55Z 2020-02-15T06:59:49Z +3918 144 2 14159 2.99 2005-08-21T02:45:58Z 2020-02-15T06:59:49Z +3919 144 1 15017 1.99 2005-08-22T08:47:44Z 2020-02-15T06:59:49Z +3920 144 1 15753 7.99 2005-08-23T12:43:30Z 2020-02-15T06:59:49Z +3921 145 1 500 0.99 2005-05-28T01:05:25Z 2020-02-15T06:59:49Z +3922 145 2 2271 4.99 2005-06-18T06:29:52Z 2020-02-15T06:59:49Z +3923 145 2 2614 0.99 2005-06-19T07:28:11Z 2020-02-15T06:59:49Z +3924 145 1 3647 5.99 2005-07-06T07:29:17Z 2020-02-15T06:59:49Z +3925 145 2 4201 8.99 2005-07-07T11:19:51Z 2020-02-15T06:59:49Z +3926 145 1 4364 4.99 2005-07-07T19:46:51Z 2020-02-15T06:59:49Z +3927 145 2 4405 6.99 2005-07-07T21:33:16Z 2020-02-15T06:59:49Z +3928 145 1 4470 2.99 2005-07-08T00:20:57Z 2020-02-15T06:59:49Z +3929 145 2 4817 2.99 2005-07-08T17:17:31Z 2020-02-15T06:59:49Z +3930 145 2 6056 2.99 2005-07-11T04:01:27Z 2020-02-15T06:59:49Z +3931 145 1 6339 1.99 2005-07-11T19:45:32Z 2020-02-15T06:59:49Z +3932 145 2 6378 0.99 2005-07-11T21:45:23Z 2020-02-15T06:59:49Z +3933 145 2 7061 2.99 2005-07-27T03:51:10Z 2020-02-15T06:59:49Z +3934 145 1 7529 7.99 2005-07-27T21:18:08Z 2020-02-15T06:59:49Z +3935 145 2 7954 0.99 2005-07-28T13:25:05Z 2020-02-15T06:59:49Z +3936 145 1 8380 0.99 2005-07-29T05:31:29Z 2020-02-15T06:59:49Z +3937 145 1 9156 2.99 2005-07-30T11:04:55Z 2020-02-15T06:59:49Z +3938 145 2 9576 0.99 2005-07-31T02:52:59Z 2020-02-15T06:59:49Z +3939 145 2 10799 4.99 2005-08-01T22:03:31Z 2020-02-15T06:59:49Z +3940 145 2 11904 5.99 2005-08-17T15:39:26Z 2020-02-15T06:59:49Z +3941 145 2 11954 2.99 2005-08-17T17:18:36Z 2020-02-15T06:59:49Z +3942 145 1 12637 2.99 2005-08-18T18:06:53Z 2020-02-15T06:59:49Z +3943 145 2 12785 2.99 2005-08-19T00:05:49Z 2020-02-15T06:59:49Z +3944 145 2 13012 7.99 2005-08-19T07:54:59Z 2020-02-15T06:59:49Z +3945 145 1 13164 3.99 2005-08-19T13:30:55Z 2020-02-15T06:59:49Z +3946 145 2 13272 0.99 2005-08-19T17:49:13Z 2020-02-15T06:59:49Z +3947 145 2 14044 5.99 2005-08-20T21:48:38Z 2020-02-15T06:59:49Z +3948 145 2 14389 6.99 2005-08-21T10:15:20Z 2020-02-15T06:59:49Z +3949 146 2 762 7.99 2005-05-29T11:15:51Z 2020-02-15T06:59:49Z +3950 146 1 1073 4.99 2005-05-31T09:55:04Z 2020-02-15T06:59:49Z +3951 146 2 1209 7.99 2005-06-15T02:31:12Z 2020-02-15T06:59:49Z +3952 146 2 1724 1.99 2005-06-16T15:15:43Z 2020-02-15T06:59:49Z +3953 146 2 2099 2.99 2005-06-17T18:47:26Z 2020-02-15T06:59:49Z +3954 146 1 2242 3.99 2005-06-18T04:32:28Z 2020-02-15T06:59:49Z +3955 146 1 2342 2.99 2005-06-18T11:42:40Z 2020-02-15T06:59:49Z +3956 146 1 2800 0.99 2005-06-19T19:15:56Z 2020-02-15T06:59:49Z +3957 146 1 3131 4.99 2005-06-20T19:08:00Z 2020-02-15T06:59:49Z +3958 146 1 4849 6.99 2005-07-08T18:34:34Z 2020-02-15T06:59:49Z +3959 146 2 5000 4.99 2005-07-09T01:16:13Z 2020-02-15T06:59:49Z +3960 146 1 6102 7.99 2005-07-11T06:53:09Z 2020-02-15T06:59:49Z +3961 146 2 6184 6.99 2005-07-11T11:19:21Z 2020-02-15T06:59:49Z +3962 146 1 6327 4.99 2005-07-11T19:07:29Z 2020-02-15T06:59:49Z +3963 146 1 6990 0.99 2005-07-27T01:02:46Z 2020-02-15T06:59:49Z +3964 146 2 8246 3.99 2005-07-29T00:38:41Z 2020-02-15T06:59:49Z +3965 146 2 11173 7.99 2005-08-02T10:28:00Z 2020-02-15T06:59:49Z +3966 146 1 11221 2.99 2005-08-02T12:32:12Z 2020-02-15T06:59:49Z +3967 146 2 11370 0.99 2005-08-02T18:06:01Z 2020-02-15T06:59:49Z +3968 146 2 11392 5.99 2005-08-02T18:41:11Z 2020-02-15T06:59:49Z +3969 146 1 11573 4.99 2005-08-17T01:38:18Z 2020-02-15T06:59:49Z +3970 146 1 11857 4.99 2005-08-17T13:48:30Z 2020-02-15T06:59:49Z +3971 146 1 12129 7.99 2005-08-17T23:31:25Z 2020-02-15T06:59:49Z +3972 146 1 12385 2.99 2005-08-18T08:39:33Z 2020-02-15T06:59:49Z +3973 146 1 12888 4.99 2005-08-19T03:41:09Z 2020-02-15T06:59:49Z +3974 146 1 13606 4.99 2005-08-20T06:07:01Z 2020-02-15T06:59:49Z +3975 146 2 13829 4.99 2005-08-20T13:50:17Z 2020-02-15T06:59:49Z +3976 146 2 14143 2.99 2005-08-21T02:10:32Z 2020-02-15T06:59:49Z +3977 146 1 15842 6.99 2005-08-23T15:36:05Z 2020-02-15T06:59:49Z +3978 147 1 362 0.99 2005-05-27T07:10:25Z 2020-02-15T06:59:49Z +3979 147 1 509 0.99 2005-05-28T02:51:12Z 2020-02-15T06:59:49Z +3980 147 1 2171 0.99 2005-06-18T00:06:04Z 2020-02-15T06:59:49Z +3981 147 1 2456 6.99 2005-06-18T19:36:50Z 2020-02-15T06:59:49Z +3982 147 2 2859 2.99 2005-06-19T23:18:42Z 2020-02-15T06:59:49Z +3983 147 2 3011 5.99 2005-06-20T10:39:10Z 2020-02-15T06:59:49Z +3984 147 2 3919 7.99 2005-07-06T20:26:21Z 2020-02-15T06:59:49Z +3985 147 2 3956 2.99 2005-07-06T22:01:51Z 2020-02-15T06:59:49Z +3986 147 2 4792 0.99 2005-07-08T16:29:38Z 2020-02-15T06:59:49Z +3987 147 2 5044 0.99 2005-07-09T03:30:25Z 2020-02-15T06:59:49Z +3988 147 1 5567 2.99 2005-07-10T03:36:46Z 2020-02-15T06:59:49Z +3989 147 1 5844 0.99 2005-07-10T17:14:43Z 2020-02-15T06:59:49Z +3990 147 2 6343 0.99 2005-07-11T19:51:35Z 2020-02-15T06:59:49Z +3991 147 2 6469 4.99 2005-07-12T01:29:27Z 2020-02-15T06:59:49Z +3992 147 2 6753 2.99 2005-07-12T14:55:42Z 2020-02-15T06:59:49Z +3993 147 2 7044 0.99 2005-07-27T03:27:29Z 2020-02-15T06:59:49Z +3994 147 1 7723 0.99 2005-07-28T04:45:37Z 2020-02-15T06:59:49Z +3995 147 1 8893 2.99 2005-07-30T00:48:19Z 2020-02-15T06:59:49Z +3996 147 2 9772 0.99 2005-07-31T09:56:07Z 2020-02-15T06:59:49Z +3997 147 1 10706 7.99 2005-08-01T18:41:28Z 2020-02-15T06:59:49Z +3998 147 2 10752 8.99 2005-08-01T20:08:49Z 2020-02-15T06:59:49Z +3999 147 1 12284 4.99 2005-08-18T04:55:49Z 2020-02-15T06:59:49Z +4000 147 1 12757 4.99 2005-08-18T22:57:45Z 2020-02-15T06:59:49Z +4001 147 2 13542 4.99 2005-08-20T03:41:57Z 2020-02-15T06:59:49Z +4002 147 2 13670 3.99 2005-08-20T08:27:01Z 2020-02-15T06:59:49Z +4003 147 2 14021 4.99 2005-08-20T21:02:12Z 2020-02-15T06:59:49Z +4004 147 1 14156 0.99 2005-08-21T02:35:16Z 2020-02-15T06:59:49Z +4005 147 2 14641 0.99 2005-08-21T19:05:23Z 2020-02-15T06:59:49Z +4006 147 2 14960 4.99 2005-08-22T06:31:36Z 2020-02-15T06:59:49Z +4007 147 1 15052 2.99 2005-08-22T10:09:19Z 2020-02-15T06:59:49Z +4008 147 2 15331 4.99 2005-08-22T20:37:57Z 2020-02-15T06:59:49Z +4009 147 2 15513 4.99 2005-08-23T03:01:56Z 2020-02-15T06:59:49Z +4010 147 1 15730 8.99 2005-08-23T11:32:35Z 2020-02-15T06:59:49Z +4011 147 2 16004 6.99 2005-08-23T20:53:20Z 2020-02-15T06:59:49Z +4012 148 1 682 4.99 2005-05-28T23:53:18Z 2020-02-15T06:59:49Z +4013 148 1 1501 1.99 2005-06-15T22:02:35Z 2020-02-15T06:59:49Z +4014 148 2 1517 6.99 2005-06-15T23:20:26Z 2020-02-15T06:59:49Z +4015 148 2 2751 3.99 2005-06-19T16:39:23Z 2020-02-15T06:59:49Z +4016 148 2 2843 3.99 2005-06-19T22:36:39Z 2020-02-15T06:59:49Z +4017 148 2 2847 5.99 2005-06-19T22:54:01Z 2020-02-15T06:59:49Z +4018 148 1 3653 0.99 2005-07-06T07:45:13Z 2020-02-15T06:59:49Z +4019 148 1 4080 0.99 2005-07-07T05:09:54Z 2020-02-15T06:59:49Z +4020 148 1 4746 2.99 2005-07-08T13:47:55Z 2020-02-15T06:59:49Z +4021 148 1 4950 2.99 2005-07-08T22:58:07Z 2020-02-15T06:59:49Z +4022 148 1 5034 4.99 2005-07-09T02:48:15Z 2020-02-15T06:59:49Z +4023 148 1 5372 4.99 2005-07-09T18:48:39Z 2020-02-15T06:59:49Z +4024 148 1 6169 1.99 2005-07-11T10:25:56Z 2020-02-15T06:59:49Z +4025 148 1 6640 8.99 2005-07-12T10:27:19Z 2020-02-15T06:59:49Z +4026 148 2 6793 10.99 2005-07-12T16:37:55Z 2020-02-15T06:59:49Z +4027 148 1 7656 0.99 2005-07-28T02:07:19Z 2020-02-15T06:59:49Z +4028 148 2 7693 4.99 2005-07-28T03:31:22Z 2020-02-15T06:59:49Z +4029 148 1 7865 9.99 2005-07-28T10:07:04Z 2020-02-15T06:59:49Z +4030 148 2 8111 4.99 2005-07-28T19:10:03Z 2020-02-15T06:59:49Z +4031 148 2 8331 3.99 2005-07-29T04:13:29Z 2020-02-15T06:59:49Z +4032 148 1 8394 4.99 2005-07-29T06:02:14Z 2020-02-15T06:59:49Z +4033 148 2 8578 4.99 2005-07-29T11:58:14Z 2020-02-15T06:59:49Z +4034 148 2 8626 4.99 2005-07-29T14:03:20Z 2020-02-15T06:59:49Z +4035 148 1 9023 5.99 2005-07-30T05:36:40Z 2020-02-15T06:59:49Z +4036 148 1 9106 2.99 2005-07-30T08:52:34Z 2020-02-15T06:59:49Z +4037 148 1 9530 1.99 2005-07-31T01:09:06Z 2020-02-15T06:59:49Z +4038 148 1 9594 4.99 2005-07-31T03:23:52Z 2020-02-15T06:59:49Z +4039 148 2 10067 4.99 2005-07-31T19:37:58Z 2020-02-15T06:59:49Z +4040 148 2 10830 6.99 2005-08-01T23:18:06Z 2020-02-15T06:59:49Z +4041 148 1 11357 10.99 2005-08-02T17:42:49Z 2020-02-15T06:59:49Z +4042 148 1 12029 2.99 2005-08-17T20:07:01Z 2020-02-15T06:59:49Z +4043 148 2 12038 0.99 2005-08-17T20:28:26Z 2020-02-15T06:59:49Z +4044 148 2 12512 3.99 2005-08-18T13:28:27Z 2020-02-15T06:59:50Z +4045 148 1 12944 6.99 2005-08-19T05:48:12Z 2020-02-15T06:59:50Z +4046 148 1 12983 6.99 2005-08-19T07:06:51Z 2020-02-15T06:59:50Z +4047 148 1 14055 0.99 2005-08-20T22:18:00Z 2020-02-15T06:59:50Z +4048 148 1 14155 4.99 2005-08-21T02:31:35Z 2020-02-15T06:59:50Z +4049 148 2 14184 6.99 2005-08-21T03:24:50Z 2020-02-15T06:59:50Z +4050 148 2 14629 2.99 2005-08-21T18:39:52Z 2020-02-15T06:59:50Z +4051 148 2 14713 0.99 2005-08-21T21:27:24Z 2020-02-15T06:59:50Z +4052 148 2 14879 5.99 2005-08-22T03:42:12Z 2020-02-15T06:59:50Z +4053 148 2 14965 2.99 2005-08-22T06:45:53Z 2020-02-15T06:59:50Z +4054 148 2 15237 4.99 2005-08-22T17:44:30Z 2020-02-15T06:59:50Z +4055 148 2 15379 8.99 2005-08-22T22:26:13Z 2020-02-15T06:59:50Z +4056 148 1 15541 3.99 2005-08-23T04:13:53Z 2020-02-15T06:59:50Z +4057 148 2 15586 3.99 2005-08-23T05:57:04Z 2020-02-15T06:59:50Z +4058 149 1 764 4.99 2005-05-29T11:37:35Z 2020-02-15T06:59:50Z +4059 149 2 1521 2.99 2005-06-15T23:58:53Z 2020-02-15T06:59:50Z +4060 149 1 1800 2.99 2005-06-16T20:18:46Z 2020-02-15T06:59:50Z +4061 149 2 1996 6.99 2005-06-17T11:17:45Z 2020-02-15T06:59:50Z +4062 149 2 2194 4.99 2005-06-18T01:41:37Z 2020-02-15T06:59:50Z +4063 149 1 2305 5.99 2005-06-18T08:31:18Z 2020-02-15T06:59:50Z +4064 149 2 2383 7.99 2005-06-18T15:17:59Z 2020-02-15T06:59:50Z +4065 149 1 2752 0.99 2005-06-19T16:44:18Z 2020-02-15T06:59:50Z +4066 149 1 3894 2.99 2005-07-06T19:01:39Z 2020-02-15T06:59:50Z +4067 149 1 3939 6.99 2005-07-06T21:16:32Z 2020-02-15T06:59:50Z +4068 149 1 4766 3.99 2005-07-08T15:16:04Z 2020-02-15T06:59:50Z +4069 149 1 4837 0.99 2005-07-08T18:09:12Z 2020-02-15T06:59:50Z +4070 149 1 5091 2.99 2005-07-09T05:52:54Z 2020-02-15T06:59:50Z +4071 149 1 5298 10.99 2005-07-09T15:36:17Z 2020-02-15T06:59:50Z +4072 149 1 6356 4.99 2005-07-11T20:57:48Z 2020-02-15T06:59:50Z +4073 149 2 6940 5.99 2005-07-26T23:18:35Z 2020-02-15T06:59:50Z +4074 149 2 7559 4.99 2005-07-27T22:20:03Z 2020-02-15T06:59:50Z +4075 149 1 7989 6.99 2005-07-28T14:39:05Z 2020-02-15T06:59:50Z +4076 149 2 10154 2.99 2005-07-31T22:30:49Z 2020-02-15T06:59:50Z +4077 149 2 10737 7.99 2005-08-01T19:31:24Z 2020-02-15T06:59:50Z +4078 149 2 10967 0.99 2005-08-02T04:02:16Z 2020-02-15T06:59:50Z +4079 149 1 11561 2.99 2005-08-17T01:23:09Z 2020-02-15T06:59:50Z +4080 149 1 12000 4.99 2005-08-17T18:49:44Z 2020-02-15T06:59:50Z +4081 149 1 14771 3.99 2005-08-21T23:50:15Z 2020-02-15T06:59:50Z +4082 149 2 15479 4.99 2005-08-23T01:50:53Z 2020-02-15T06:59:50Z +4083 149 2 15562 2.99 2005-08-23T05:04:33Z 2020-02-15T06:59:50Z +4084 150 1 422 3.99 2005-05-27T15:31:55Z 2020-02-15T06:59:50Z +4085 150 1 609 2.99 2005-05-28T15:04:02Z 2020-02-15T06:59:50Z +4086 150 1 995 3.99 2005-05-31T00:06:02Z 2020-02-15T06:59:50Z +4087 150 2 3187 1.99 2005-06-20T23:06:07Z 2020-02-15T06:59:50Z +4088 150 1 3456 5.99 2005-06-21T21:19:47Z 2020-02-15T06:59:50Z +4089 150 1 4271 6.99 2005-07-07T14:38:52Z 2020-02-15T06:59:50Z +4090 150 1 6633 2.99 2005-07-12T09:35:42Z 2020-02-15T06:59:50Z +4091 150 2 7690 4.99 2005-07-28T03:26:21Z 2020-02-15T06:59:50Z +4092 150 1 9121 2.99 2005-07-30T09:36:26Z 2020-02-15T06:59:50Z +4093 150 1 10686 2.99 2005-08-01T17:51:21Z 2020-02-15T06:59:50Z +4094 150 2 11123 2.99 2005-08-02T08:54:17Z 2020-02-15T06:59:50Z +4095 150 2 11789 6.99 2005-08-17T10:59:24Z 2020-02-15T06:59:50Z +4096 150 2 12260 6.99 2005-08-18T04:15:43Z 2020-02-15T06:59:50Z +4097 150 2 12335 2.99 2005-08-18T06:59:15Z 2020-02-15T06:59:50Z +4098 150 2 12627 2.99 2005-08-18T17:37:11Z 2020-02-15T06:59:50Z +4099 150 1 12887 1.99 2005-08-19T03:38:54Z 2020-02-15T06:59:50Z +4100 150 2 12890 0.99 2005-08-19T03:42:08Z 2020-02-15T06:59:50Z +4101 150 1 13116 6.99 2005-08-19T11:31:41Z 2020-02-15T06:59:50Z +4102 150 2 13255 8.99 2005-08-19T16:54:12Z 2020-02-15T06:59:50Z +4103 150 1 13372 2.99 2005-08-19T21:23:19Z 2020-02-15T06:59:50Z +4104 150 2 13599 5.99 2005-08-20T06:00:03Z 2020-02-15T06:59:50Z +4105 150 2 14165 0.99 2005-08-21T02:59:17Z 2020-02-15T06:59:50Z +4106 150 2 14454 2.99 2005-08-21T12:35:49Z 2020-02-15T06:59:50Z +4107 150 2 14520 9.99 2005-08-21T15:00:49Z 2020-02-15T06:59:50Z +4108 150 1 14663 0.99 2005-08-21T19:47:55Z 2020-02-15T06:59:50Z +4109 151 2 164 4.99 2005-05-26T02:26:49Z 2020-02-15T06:59:50Z +4110 151 2 418 5.99 2005-05-27T15:13:17Z 2020-02-15T06:59:50Z +4111 151 2 2474 2.99 2005-06-18T20:51:34Z 2020-02-15T06:59:50Z +4112 151 2 2947 2.99 2005-06-20T06:00:21Z 2020-02-15T06:59:50Z +4113 151 1 3017 3.99 2005-06-20T11:08:56Z 2020-02-15T06:59:50Z +4114 151 2 3089 0.99 2005-06-20T15:57:01Z 2020-02-15T06:59:50Z +4115 151 2 3390 2.99 2005-06-21T15:10:50Z 2020-02-15T06:59:50Z +4116 151 1 4376 2.99 2005-07-07T20:24:33Z 2020-02-15T06:59:50Z +4117 151 2 6720 0.99 2005-07-12T13:41:16Z 2020-02-15T06:59:50Z +4118 151 2 6768 3.99 2005-07-12T15:47:51Z 2020-02-15T06:59:50Z +4119 151 2 6854 0.99 2005-07-12T19:38:57Z 2020-02-15T06:59:50Z +4120 151 1 7189 0.99 2005-07-27T08:35:02Z 2020-02-15T06:59:50Z +4121 151 2 7332 3.99 2005-07-27T13:58:57Z 2020-02-15T06:59:50Z +4122 151 1 9253 4.99 2005-07-30T14:20:12Z 2020-02-15T06:59:50Z +4123 151 1 9890 4.99 2005-07-31T14:04:44Z 2020-02-15T06:59:50Z +4124 151 1 9969 2.99 2005-07-31T16:38:12Z 2020-02-15T06:59:50Z +4125 151 1 10078 2.99 2005-07-31T20:02:02Z 2020-02-15T06:59:50Z +4126 151 1 10311 4.99 2005-08-01T04:27:59Z 2020-02-15T06:59:50Z +4127 151 1 10662 2.99 2005-08-01T16:50:57Z 2020-02-15T06:59:50Z +4128 151 2 11714 2.99 2005-08-17T07:34:55Z 2020-02-15T06:59:50Z +4129 151 2 13230 0.99 2005-08-19T16:12:07Z 2020-02-15T06:59:50Z +4130 151 1 13568 5.99 2005-08-20T05:02:46Z 2020-02-15T06:59:50Z +4131 151 1 14856 4.99 2005-08-22T02:31:51Z 2020-02-15T06:59:50Z +4132 151 2 14922 3.99 2005-08-22T05:13:05Z 2020-02-15T06:59:50Z +4133 151 1 15227 4.99 2005-08-22T17:22:41Z 2020-02-15T06:59:50Z +4134 151 1 15926 2.99 2005-08-23T18:20:56Z 2020-02-15T06:59:50Z +4135 151 2 15996 2.99 2005-08-23T20:31:38Z 2020-02-15T06:59:50Z +4136 152 2 359 4.99 2005-05-27T06:48:33Z 2020-02-15T06:59:50Z +4137 152 1 745 4.99 2005-05-29T09:22:57Z 2020-02-15T06:59:50Z +4138 152 1 2882 4.99 2005-06-20T01:26:26Z 2020-02-15T06:59:50Z +4139 152 2 3577 2.99 2005-07-06T03:40:36Z 2020-02-15T06:59:50Z +4140 152 1 3786 7.99 2005-07-06T14:00:41Z 2020-02-15T06:59:50Z +4141 152 1 4974 4.99 2005-07-09T00:00:36Z 2020-02-15T06:59:50Z +4142 152 1 6273 0.99 2005-07-11T16:08:41Z 2020-02-15T06:59:50Z +4143 152 1 6612 2.99 2005-07-12T08:28:33Z 2020-02-15T06:59:50Z +4144 152 1 9010 5.99 2005-07-30T05:12:04Z 2020-02-15T06:59:50Z +4145 152 1 10320 6.99 2005-08-01T04:39:26Z 2020-02-15T06:59:50Z +4146 152 2 11638 6.99 2005-08-17T04:39:09Z 2020-02-15T06:59:50Z +4147 152 2 11783 0.99 2005-08-17T10:39:24Z 2020-02-15T06:59:50Z +4148 152 1 12697 2.99 2005-08-18T20:14:56Z 2020-02-15T06:59:50Z +4149 152 1 12917 4.99 2005-08-19T04:27:11Z 2020-02-15T06:59:50Z +4150 152 2 12960 1.99 2005-08-19T06:21:52Z 2020-02-15T06:59:50Z +4151 152 1 13204 4.99 2005-08-19T15:02:48Z 2020-02-15T06:59:50Z +4152 152 2 13484 0.99 2005-08-20T01:16:52Z 2020-02-15T06:59:50Z +4153 152 1 13986 0.99 2005-08-20T19:13:23Z 2020-02-15T06:59:50Z +4154 152 1 14173 0.99 2005-08-21T03:01:01Z 2020-02-15T06:59:50Z +4155 152 2 14668 4.99 2005-08-21T19:51:30Z 2020-02-15T06:59:50Z +4156 152 2 11848 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4157 153 1 2224 0.99 2005-06-18T03:33:58Z 2020-02-15T06:59:50Z +4158 153 1 2649 0.99 2005-06-19T10:20:09Z 2020-02-15T06:59:50Z +4159 153 1 2893 4.99 2005-06-20T02:22:08Z 2020-02-15T06:59:50Z +4160 153 1 2945 5.99 2005-06-20T05:49:27Z 2020-02-15T06:59:50Z +4161 153 1 3795 0.99 2005-07-06T14:37:41Z 2020-02-15T06:59:50Z +4162 153 1 3949 0.99 2005-07-06T21:46:36Z 2020-02-15T06:59:50Z +4163 153 1 4194 5.99 2005-07-07T10:59:39Z 2020-02-15T06:59:50Z +4164 153 2 4670 5.99 2005-07-08T10:14:18Z 2020-02-15T06:59:50Z +4165 153 2 5676 0.99 2005-07-10T08:38:32Z 2020-02-15T06:59:50Z +4166 153 2 5771 0.99 2005-07-10T13:26:45Z 2020-02-15T06:59:50Z +4167 153 2 6818 9.99 2005-07-12T18:20:54Z 2020-02-15T06:59:50Z +4168 153 2 7824 7.99 2005-07-28T08:34:47Z 2020-02-15T06:59:50Z +4169 153 2 9936 0.99 2005-07-31T15:27:41Z 2020-02-15T06:59:50Z +4170 153 2 10015 4.99 2005-07-31T18:11:17Z 2020-02-15T06:59:50Z +4171 153 2 11368 4.99 2005-08-02T18:03:05Z 2020-02-15T06:59:50Z +4172 153 1 12103 1.99 2005-08-17T22:49:09Z 2020-02-15T06:59:50Z +4173 153 1 12439 3.99 2005-08-18T10:44:57Z 2020-02-15T06:59:50Z +4174 153 1 12882 4.99 2005-08-19T03:33:46Z 2020-02-15T06:59:50Z +4175 153 1 14664 4.99 2005-08-21T19:48:47Z 2020-02-15T06:59:50Z +4176 153 1 14747 4.99 2005-08-21T23:00:02Z 2020-02-15T06:59:50Z +4177 153 1 14944 4.99 2005-08-22T06:01:26Z 2020-02-15T06:59:50Z +4178 153 2 15267 0.99 2005-08-22T18:37:48Z 2020-02-15T06:59:50Z +4179 153 2 15444 7.99 2005-08-23T00:46:52Z 2020-02-15T06:59:50Z +4180 153 1 15593 1.99 2005-08-23T06:15:09Z 2020-02-15T06:59:50Z +4181 154 1 469 5.99 2005-05-27T21:14:26Z 2020-02-15T06:59:50Z +4182 154 2 865 7.99 2005-05-30T03:39:44Z 2020-02-15T06:59:50Z +4183 154 2 978 5.99 2005-05-30T21:30:52Z 2020-02-15T06:59:50Z +4184 154 1 1963 0.99 2005-06-17T09:09:31Z 2020-02-15T06:59:50Z +4185 154 1 2886 4.99 2005-06-20T01:38:39Z 2020-02-15T06:59:50Z +4186 154 1 2985 2.99 2005-06-20T08:45:08Z 2020-02-15T06:59:50Z +4187 154 2 3806 7.99 2005-07-06T15:09:41Z 2020-02-15T06:59:50Z +4188 154 2 3912 0.99 2005-07-06T20:10:03Z 2020-02-15T06:59:50Z +4189 154 2 4132 4.99 2005-07-07T08:06:07Z 2020-02-15T06:59:50Z +4190 154 1 4252 2.99 2005-07-07T14:13:05Z 2020-02-15T06:59:50Z +4191 154 1 4850 5.99 2005-07-08T18:39:31Z 2020-02-15T06:59:50Z +4192 154 1 5101 0.99 2005-07-09T06:21:29Z 2020-02-15T06:59:50Z +4193 154 2 5760 2.99 2005-07-10T12:44:48Z 2020-02-15T06:59:50Z +4194 154 1 6048 0.99 2005-07-11T03:32:23Z 2020-02-15T06:59:50Z +4195 154 2 6993 4.99 2005-07-27T01:05:24Z 2020-02-15T06:59:50Z +4196 154 1 7055 4.99 2005-07-27T03:45:42Z 2020-02-15T06:59:50Z +4197 154 1 7156 4.99 2005-07-27T07:19:34Z 2020-02-15T06:59:50Z +4198 154 2 7900 1.99 2005-07-28T11:11:33Z 2020-02-15T06:59:50Z +4199 154 2 8334 7.99 2005-07-29T04:18:25Z 2020-02-15T06:59:50Z +4200 154 2 9286 2.99 2005-07-30T15:32:28Z 2020-02-15T06:59:50Z +4201 154 1 10278 6.99 2005-08-01T03:25:27Z 2020-02-15T06:59:50Z +4202 154 1 10851 4.99 2005-08-01T23:58:45Z 2020-02-15T06:59:50Z +4203 154 1 11296 5.99 2005-08-02T15:15:27Z 2020-02-15T06:59:50Z +4204 154 1 12341 0.99 2005-08-18T07:09:27Z 2020-02-15T06:59:50Z +4205 154 2 13861 4.99 2005-08-20T14:56:53Z 2020-02-15T06:59:50Z +4206 154 2 14731 2.99 2005-08-21T22:21:49Z 2020-02-15T06:59:50Z +4207 154 2 14793 7.99 2005-08-22T00:37:57Z 2020-02-15T06:59:50Z +4208 154 1 14918 6.99 2005-08-22T05:06:38Z 2020-02-15T06:59:50Z +4209 154 1 15351 0.99 2005-08-22T21:15:46Z 2020-02-15T06:59:50Z +4210 154 1 15721 2.99 2005-08-23T11:16:16Z 2020-02-15T06:59:50Z +4211 155 1 568 2.99 2005-05-28T09:57:36Z 2020-02-15T06:59:50Z +4212 155 2 1519 1.99 2005-06-15T23:55:27Z 2020-02-15T06:59:50Z +4213 155 1 1554 7.99 2005-06-16T02:16:47Z 2020-02-15T06:59:50Z +4214 155 1 2028 7.99 2005-06-17T13:08:08Z 2020-02-15T06:59:50Z +4215 155 1 2869 4.99 2005-06-20T00:09:25Z 2020-02-15T06:59:50Z +4216 155 2 3405 4.99 2005-06-21T15:58:25Z 2020-02-15T06:59:50Z +4217 155 1 5128 1.99 2005-07-09T07:25:54Z 2020-02-15T06:59:50Z +4218 155 1 6066 5.99 2005-07-11T04:32:42Z 2020-02-15T06:59:50Z +4219 155 1 6085 4.99 2005-07-11T05:24:36Z 2020-02-15T06:59:50Z +4220 155 2 6087 4.99 2005-07-11T05:29:22Z 2020-02-15T06:59:50Z +4221 155 1 6443 2.99 2005-07-12T00:35:51Z 2020-02-15T06:59:50Z +4222 155 1 7077 3.99 2005-07-27T04:13:02Z 2020-02-15T06:59:50Z +4223 155 1 7492 2.99 2005-07-27T19:54:18Z 2020-02-15T06:59:50Z +4224 155 2 7730 5.99 2005-07-28T04:59:48Z 2020-02-15T06:59:50Z +4225 155 2 9781 7.99 2005-07-31T10:13:02Z 2020-02-15T06:59:50Z +4226 155 1 10098 0.99 2005-07-31T20:41:17Z 2020-02-15T06:59:50Z +4227 155 1 11033 4.99 2005-08-02T05:54:17Z 2020-02-15T06:59:50Z +4228 155 2 11951 5.99 2005-08-17T17:14:02Z 2020-02-15T06:59:50Z +4229 155 1 14324 8.99 2005-08-21T08:10:56Z 2020-02-15T06:59:50Z +4230 155 2 14549 2.99 2005-08-21T15:54:21Z 2020-02-15T06:59:50Z +4231 155 1 14753 2.99 2005-08-21T23:11:43Z 2020-02-15T06:59:50Z +4232 155 2 14909 0.99 2005-08-22T04:48:44Z 2020-02-15T06:59:50Z +4233 155 1 15106 0.99 2005-08-22T12:01:48Z 2020-02-15T06:59:50Z +4234 155 2 11496 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4235 155 1 12352 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4236 156 2 899 6.99 2005-05-30T09:29:30Z 2020-02-15T06:59:50Z +4237 156 1 1052 4.99 2005-05-31T07:07:03Z 2020-02-15T06:59:50Z +4238 156 2 2089 9.99 2005-06-17T17:45:09Z 2020-02-15T06:59:50Z +4239 156 2 2221 0.99 2005-06-18T03:24:56Z 2020-02-15T06:59:50Z +4240 156 1 2658 4.99 2005-06-19T10:43:42Z 2020-02-15T06:59:50Z +4241 156 1 2782 0.99 2005-06-19T18:25:07Z 2020-02-15T06:59:50Z +4242 156 2 4394 2.99 2005-07-07T21:12:45Z 2020-02-15T06:59:50Z +4243 156 2 5534 4.99 2005-07-10T02:26:49Z 2020-02-15T06:59:50Z +4244 156 1 5828 2.99 2005-07-10T16:27:25Z 2020-02-15T06:59:50Z +4245 156 2 5908 0.99 2005-07-10T20:44:14Z 2020-02-15T06:59:50Z +4246 156 2 6540 6.99 2005-07-12T04:51:13Z 2020-02-15T06:59:50Z +4247 156 2 7389 2.99 2005-07-27T15:56:15Z 2020-02-15T06:59:50Z +4248 156 2 7822 4.99 2005-07-28T08:31:45Z 2020-02-15T06:59:50Z +4249 156 1 9409 6.99 2005-07-30T20:33:53Z 2020-02-15T06:59:50Z +4250 156 1 9696 0.99 2005-07-31T07:13:46Z 2020-02-15T06:59:50Z +4251 156 2 10309 6.99 2005-08-01T04:24:18Z 2020-02-15T06:59:50Z +4252 156 2 11490 2.99 2005-08-02T22:36:00Z 2020-02-15T06:59:50Z +4253 156 1 11587 5.99 2005-08-17T02:21:03Z 2020-02-15T06:59:50Z +4254 156 2 13530 0.99 2005-08-20T03:12:43Z 2020-02-15T06:59:50Z +4255 156 2 13531 2.99 2005-08-20T03:26:10Z 2020-02-15T06:59:50Z +4256 156 2 13802 2.99 2005-08-20T12:44:53Z 2020-02-15T06:59:50Z +4257 156 1 14794 1.99 2005-08-22T00:39:31Z 2020-02-15T06:59:50Z +4258 156 2 14831 4.99 2005-08-22T01:40:49Z 2020-02-15T06:59:50Z +4259 156 1 14914 0.99 2005-08-22T04:53:35Z 2020-02-15T06:59:50Z +4260 156 1 15408 6.99 2005-08-22T23:26:32Z 2020-02-15T06:59:50Z +4261 157 2 352 0.99 2005-05-27T05:48:19Z 2020-02-15T06:59:50Z +4262 157 1 642 4.99 2005-05-28T18:49:12Z 2020-02-15T06:59:50Z +4263 157 2 2340 0.99 2005-06-18T11:30:56Z 2020-02-15T06:59:50Z +4264 157 1 3739 0.99 2005-07-06T11:54:18Z 2020-02-15T06:59:50Z +4265 157 1 4253 5.99 2005-07-07T14:13:13Z 2020-02-15T06:59:50Z +4266 157 2 4435 3.99 2005-07-07T22:51:04Z 2020-02-15T06:59:50Z +4267 157 1 4919 0.99 2005-07-08T21:41:54Z 2020-02-15T06:59:50Z +4268 157 1 5862 4.99 2005-07-10T18:20:48Z 2020-02-15T06:59:50Z +4269 157 1 7110 2.99 2005-07-27T05:30:48Z 2020-02-15T06:59:50Z +4270 157 2 7195 2.99 2005-07-27T08:47:01Z 2020-02-15T06:59:50Z +4271 157 2 7499 4.99 2005-07-27T20:10:28Z 2020-02-15T06:59:50Z +4272 157 2 8163 0.99 2005-07-28T21:11:48Z 2020-02-15T06:59:50Z +4273 157 2 8337 0.99 2005-07-29T04:31:55Z 2020-02-15T06:59:50Z +4274 157 2 8347 0.99 2005-07-29T04:49:25Z 2020-02-15T06:59:50Z +4275 157 2 8576 4.99 2005-07-29T11:55:01Z 2020-02-15T06:59:50Z +4276 157 1 8707 0.99 2005-07-29T17:21:58Z 2020-02-15T06:59:50Z +4277 157 1 8827 4.99 2005-07-29T22:31:24Z 2020-02-15T06:59:50Z +4278 157 2 9237 2.99 2005-07-30T13:48:17Z 2020-02-15T06:59:50Z +4279 157 2 9264 4.99 2005-07-30T14:51:36Z 2020-02-15T06:59:50Z +4280 157 1 9958 2.99 2005-07-31T16:03:56Z 2020-02-15T06:59:50Z +4281 157 1 10203 4.99 2005-08-01T00:45:27Z 2020-02-15T06:59:50Z +4282 157 2 11249 4.99 2005-08-02T13:35:40Z 2020-02-15T06:59:50Z +4283 157 2 11335 4.99 2005-08-02T16:57:37Z 2020-02-15T06:59:50Z +4284 157 1 12213 5.99 2005-08-18T02:33:55Z 2020-02-15T06:59:50Z +4285 157 1 12464 6.99 2005-08-18T11:33:34Z 2020-02-15T06:59:50Z +4286 157 1 12916 0.99 2005-08-19T04:27:05Z 2020-02-15T06:59:50Z +4287 157 1 13097 4.99 2005-08-19T10:50:43Z 2020-02-15T06:59:50Z +4288 157 1 13214 4.99 2005-08-19T15:31:06Z 2020-02-15T06:59:50Z +4289 157 1 13481 6.99 2005-08-20T01:11:12Z 2020-02-15T06:59:50Z +4290 157 1 13728 2.99 2005-08-20T10:11:07Z 2020-02-15T06:59:50Z +4291 157 2 14974 4.99 2005-08-22T07:04:25Z 2020-02-15T06:59:50Z +4292 158 2 245 4.99 2005-05-26T13:46:59Z 2020-02-15T06:59:50Z +4293 158 1 293 5.99 2005-05-26T20:27:02Z 2020-02-15T06:59:50Z +4294 158 1 1380 0.99 2005-06-15T15:13:10Z 2020-02-15T06:59:50Z +4295 158 2 1790 4.99 2005-06-16T19:58:40Z 2020-02-15T06:59:50Z +4296 158 2 2035 6.99 2005-06-17T13:45:09Z 2020-02-15T06:59:50Z +4297 158 2 3203 8.99 2005-06-21T00:34:56Z 2020-02-15T06:59:50Z +4298 158 1 4117 8.99 2005-07-07T06:58:14Z 2020-02-15T06:59:50Z +4299 158 1 5672 2.99 2005-07-10T08:19:38Z 2020-02-15T06:59:50Z +4300 158 1 5988 4.99 2005-07-11T00:55:38Z 2020-02-15T06:59:50Z +4301 158 1 6416 2.99 2005-07-11T23:29:14Z 2020-02-15T06:59:50Z +4302 158 2 6901 5.99 2005-07-12T21:46:33Z 2020-02-15T06:59:50Z +4303 158 2 7159 2.99 2005-07-27T07:24:00Z 2020-02-15T06:59:50Z +4304 158 1 7732 0.99 2005-07-28T05:03:32Z 2020-02-15T06:59:50Z +4305 158 2 7952 2.99 2005-07-28T13:23:49Z 2020-02-15T06:59:50Z +4306 158 1 8750 2.99 2005-07-29T19:14:21Z 2020-02-15T06:59:50Z +4307 158 1 8957 1.99 2005-07-30T03:34:10Z 2020-02-15T06:59:50Z +4308 158 1 9393 2.99 2005-07-30T20:04:48Z 2020-02-15T06:59:50Z +4309 158 1 9713 1.99 2005-07-31T08:13:28Z 2020-02-15T06:59:50Z +4310 158 1 9801 2.99 2005-07-31T11:03:13Z 2020-02-15T06:59:50Z +4311 158 2 11077 4.99 2005-08-02T07:26:43Z 2020-02-15T06:59:50Z +4312 158 1 11103 6.99 2005-08-02T08:09:54Z 2020-02-15T06:59:50Z +4313 158 1 11272 0.99 2005-08-02T14:20:27Z 2020-02-15T06:59:50Z +4314 158 1 11420 2.99 2005-08-02T19:47:56Z 2020-02-15T06:59:50Z +4315 158 2 12070 1.99 2005-08-17T21:46:47Z 2020-02-15T06:59:50Z +4316 158 2 12421 5.99 2005-08-18T10:04:06Z 2020-02-15T06:59:50Z +4317 158 2 13212 1.99 2005-08-19T15:24:07Z 2020-02-15T06:59:50Z +4318 158 2 13854 2.99 2005-08-20T14:48:42Z 2020-02-15T06:59:50Z +4319 158 1 13926 2.99 2005-08-20T17:09:27Z 2020-02-15T06:59:50Z +4320 158 2 14028 0.99 2005-08-20T21:23:03Z 2020-02-15T06:59:50Z +4321 158 1 15763 2.99 2005-08-23T13:02:59Z 2020-02-15T06:59:50Z +4322 158 1 15796 5.99 2005-08-23T14:12:22Z 2020-02-15T06:59:50Z +4323 158 1 15802 5.99 2005-08-23T14:26:51Z 2020-02-15T06:59:50Z +4324 159 2 475 2.99 2005-05-27T22:16:26Z 2020-02-15T06:59:50Z +4325 159 2 549 1.99 2005-05-28T07:35:37Z 2020-02-15T06:59:50Z +4326 159 1 598 0.99 2005-05-28T14:04:50Z 2020-02-15T06:59:50Z +4327 159 1 832 3.99 2005-05-29T22:51:20Z 2020-02-15T06:59:50Z +4328 159 1 1695 0.99 2005-06-16T12:40:28Z 2020-02-15T06:59:50Z +4329 159 1 2572 0.99 2005-06-19T04:21:26Z 2020-02-15T06:59:50Z +4330 159 2 3914 5.99 2005-07-06T20:11:10Z 2020-02-15T06:59:50Z +4331 159 2 4273 4.99 2005-07-07T14:40:22Z 2020-02-15T06:59:50Z +4332 159 2 5656 0.99 2005-07-10T07:31:07Z 2020-02-15T06:59:50Z +4333 159 2 6885 4.99 2005-07-12T20:56:04Z 2020-02-15T06:59:50Z +4334 159 2 8212 2.99 2005-07-28T23:37:23Z 2020-02-15T06:59:50Z +4335 159 1 8470 0.99 2005-07-29T08:28:50Z 2020-02-15T06:59:50Z +4336 159 2 9022 3.99 2005-07-30T05:34:45Z 2020-02-15T06:59:50Z +4337 159 2 9132 0.99 2005-07-30T09:56:00Z 2020-02-15T06:59:50Z +4338 159 1 9559 7.99 2005-07-31T02:15:53Z 2020-02-15T06:59:50Z +4339 159 1 9917 4.99 2005-07-31T14:55:11Z 2020-02-15T06:59:50Z +4340 159 2 11225 4.99 2005-08-02T12:43:27Z 2020-02-15T06:59:50Z +4341 159 2 13270 1.99 2005-08-19T17:41:16Z 2020-02-15T06:59:50Z +4342 159 1 13933 0.99 2005-08-20T17:17:07Z 2020-02-15T06:59:50Z +4343 159 2 14575 8.99 2005-08-21T16:51:34Z 2020-02-15T06:59:50Z +4344 159 1 15197 0.99 2005-08-22T16:14:25Z 2020-02-15T06:59:50Z +4345 160 2 2314 4.99 2005-06-18T09:03:19Z 2020-02-15T06:59:50Z +4346 160 1 2465 2.99 2005-06-18T20:07:02Z 2020-02-15T06:59:50Z +4347 160 2 2873 2.99 2005-06-20T00:41:25Z 2020-02-15T06:59:50Z +4348 160 1 4842 0.99 2005-07-08T18:21:30Z 2020-02-15T06:59:50Z +4349 160 1 4908 5.99 2005-07-08T21:05:44Z 2020-02-15T06:59:50Z +4350 160 2 6364 6.99 2005-07-11T21:14:48Z 2020-02-15T06:59:50Z +4351 160 2 6448 1.99 2005-07-12T00:45:59Z 2020-02-15T06:59:50Z +4352 160 2 7500 0.99 2005-07-27T20:16:03Z 2020-02-15T06:59:50Z +4353 160 1 8184 4.99 2005-07-28T22:22:35Z 2020-02-15T06:59:50Z +4354 160 1 9681 0.99 2005-07-31T06:42:09Z 2020-02-15T06:59:50Z +4355 160 2 9758 2.99 2005-07-31T09:25:38Z 2020-02-15T06:59:50Z +4356 160 2 10089 2.99 2005-07-31T20:17:09Z 2020-02-15T06:59:50Z +4357 160 1 10305 2.99 2005-08-01T04:16:16Z 2020-02-15T06:59:50Z +4358 160 2 10788 0.99 2005-08-01T21:37:10Z 2020-02-15T06:59:50Z +4359 160 2 10958 4.99 2005-08-02T03:37:13Z 2020-02-15T06:59:50Z +4360 160 2 10979 5.99 2005-08-02T04:16:37Z 2020-02-15T06:59:50Z +4361 160 2 11154 2.99 2005-08-02T09:54:50Z 2020-02-15T06:59:50Z +4362 160 1 11803 2.99 2005-08-17T11:42:08Z 2020-02-15T06:59:50Z +4363 160 1 11888 7.99 2005-08-17T15:04:05Z 2020-02-15T06:59:50Z +4364 160 2 12334 2.99 2005-08-18T06:52:36Z 2020-02-15T06:59:50Z +4365 160 1 12435 7.99 2005-08-18T10:38:31Z 2020-02-15T06:59:50Z +4366 160 2 13093 6.99 2005-08-19T10:46:16Z 2020-02-15T06:59:50Z +4367 160 1 14868 4.99 2005-08-22T03:15:01Z 2020-02-15T06:59:50Z +4368 160 1 15112 2.99 2005-08-22T12:21:49Z 2020-02-15T06:59:50Z +4369 160 2 15642 2.99 2005-08-23T08:09:11Z 2020-02-15T06:59:50Z +4370 160 1 15962 4.99 2005-08-23T19:42:04Z 2020-02-15T06:59:50Z +4371 160 1 16027 3.99 2005-08-23T21:49:33Z 2020-02-15T06:59:50Z +4372 161 2 428 2.99 2005-05-27T16:10:58Z 2020-02-15T06:59:50Z +4373 161 2 477 3.99 2005-05-27T22:33:33Z 2020-02-15T06:59:50Z +4374 161 1 520 5.99 2005-05-28T03:27:37Z 2020-02-15T06:59:50Z +4375 161 2 539 0.99 2005-05-28T06:26:16Z 2020-02-15T06:59:50Z +4376 161 1 612 2.99 2005-05-28T15:24:54Z 2020-02-15T06:59:50Z +4377 161 1 1003 0.99 2005-05-31T00:48:20Z 2020-02-15T06:59:50Z +4378 161 1 1856 2.99 2005-06-17T01:02:00Z 2020-02-15T06:59:50Z +4379 161 1 3075 3.99 2005-06-20T14:52:19Z 2020-02-15T06:59:50Z +4380 161 1 3948 4.99 2005-07-06T21:45:53Z 2020-02-15T06:59:50Z +4381 161 2 4187 0.99 2005-07-07T10:41:31Z 2020-02-15T06:59:50Z +4382 161 2 4248 6.99 2005-07-07T13:59:20Z 2020-02-15T06:59:50Z +4383 161 1 4490 2.99 2005-07-08T01:26:32Z 2020-02-15T06:59:50Z +4384 161 2 5349 6.99 2005-07-09T17:35:35Z 2020-02-15T06:59:50Z +4385 161 2 6873 4.99 2005-07-12T20:20:50Z 2020-02-15T06:59:50Z +4386 161 1 7003 2.99 2005-07-27T01:32:06Z 2020-02-15T06:59:50Z +4387 161 2 8774 4.99 2005-07-29T20:05:04Z 2020-02-15T06:59:50Z +4388 161 1 9135 4.99 2005-07-30T10:06:53Z 2020-02-15T06:59:50Z +4389 161 2 9421 0.99 2005-07-30T21:08:32Z 2020-02-15T06:59:50Z +4390 161 1 10241 5.99 2005-08-01T02:12:25Z 2020-02-15T06:59:50Z +4391 161 1 10355 0.99 2005-08-01T05:47:37Z 2020-02-15T06:59:50Z +4392 161 1 10637 2.99 2005-08-01T15:44:09Z 2020-02-15T06:59:50Z +4393 161 1 10863 6.99 2005-08-02T00:18:07Z 2020-02-15T06:59:50Z +4394 161 2 10939 0.99 2005-08-02T03:06:20Z 2020-02-15T06:59:50Z +4395 161 1 11838 2.99 2005-08-17T13:06:00Z 2020-02-15T06:59:50Z +4396 161 2 14150 0.99 2005-08-21T02:23:03Z 2020-02-15T06:59:50Z +4397 161 1 14370 7.99 2005-08-21T09:35:14Z 2020-02-15T06:59:50Z +4398 161 1 15000 0.99 2005-08-22T07:54:58Z 2020-02-15T06:59:50Z +4399 161 2 15045 5.99 2005-08-22T09:53:23Z 2020-02-15T06:59:50Z +4400 161 2 15150 2.99 2005-08-22T14:12:05Z 2020-02-15T06:59:50Z +4401 161 1 15420 5.99 2005-08-22T23:55:51Z 2020-02-15T06:59:50Z +4402 162 1 285 1.99 2005-05-26T19:41:40Z 2020-02-15T06:59:50Z +4403 162 1 501 4.99 2005-05-28T01:09:36Z 2020-02-15T06:59:50Z +4404 162 1 688 4.99 2005-05-29T00:45:24Z 2020-02-15T06:59:50Z +4405 162 2 1339 4.99 2005-06-15T12:21:56Z 2020-02-15T06:59:50Z +4406 162 1 2366 0.99 2005-06-18T13:46:39Z 2020-02-15T06:59:50Z +4407 162 1 2547 4.99 2005-06-19T02:44:17Z 2020-02-15T06:59:50Z +4408 162 1 3040 0.99 2005-06-20T12:34:13Z 2020-02-15T06:59:50Z +4409 162 2 3180 0.99 2005-06-20T22:48:44Z 2020-02-15T06:59:50Z +4410 162 2 4982 2.99 2005-07-09T00:30:52Z 2020-02-15T06:59:50Z +4411 162 2 8478 4.99 2005-07-29T08:40:36Z 2020-02-15T06:59:50Z +4412 162 1 8582 4.99 2005-07-29T12:03:27Z 2020-02-15T06:59:50Z +4413 162 2 9167 4.99 2005-07-30T11:30:37Z 2020-02-15T06:59:50Z +4414 162 1 9726 7.99 2005-07-31T08:37:07Z 2020-02-15T06:59:50Z +4415 162 1 9775 0.99 2005-07-31T10:00:00Z 2020-02-15T06:59:50Z +4416 162 2 10093 5.99 2005-07-31T20:30:32Z 2020-02-15T06:59:50Z +4417 162 2 11012 0.99 2005-08-02T05:09:42Z 2020-02-15T06:59:50Z +4418 162 1 13288 4.99 2005-08-19T18:30:10Z 2020-02-15T06:59:50Z +4419 162 2 14301 1.99 2005-08-21T07:19:48Z 2020-02-15T06:59:50Z +4420 162 1 15332 4.99 2005-08-22T20:41:53Z 2020-02-15T06:59:50Z +4421 162 1 14220 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4422 163 2 1265 4.99 2005-06-15T07:00:50Z 2020-02-15T06:59:50Z +4423 163 2 2000 2.99 2005-06-17T11:32:30Z 2020-02-15T06:59:50Z +4424 163 2 2110 7.99 2005-06-17T19:45:49Z 2020-02-15T06:59:50Z +4425 163 2 2536 5.99 2005-06-19T01:41:34Z 2020-02-15T06:59:50Z +4426 163 1 2994 6.99 2005-06-20T09:17:05Z 2020-02-15T06:59:50Z +4427 163 1 3179 0.99 2005-06-20T22:37:59Z 2020-02-15T06:59:50Z +4428 163 2 3915 3.99 2005-07-06T20:16:46Z 2020-02-15T06:59:50Z +4429 163 1 4126 1.99 2005-07-07T07:24:11Z 2020-02-15T06:59:50Z +4430 163 2 5549 4.99 2005-07-10T02:58:29Z 2020-02-15T06:59:50Z +4431 163 1 5574 10.99 2005-07-10T03:54:38Z 2020-02-15T06:59:50Z +4432 163 1 6109 0.99 2005-07-11T07:20:57Z 2020-02-15T06:59:50Z +4433 163 1 6831 1.99 2005-07-12T18:44:04Z 2020-02-15T06:59:50Z +4434 163 1 7303 1.99 2005-07-27T12:54:39Z 2020-02-15T06:59:50Z +4435 163 1 7403 2.99 2005-07-27T16:22:09Z 2020-02-15T06:59:50Z +4436 163 2 8040 0.99 2005-07-28T16:39:43Z 2020-02-15T06:59:50Z +4437 163 2 8063 4.99 2005-07-28T17:15:11Z 2020-02-15T06:59:50Z +4438 163 2 8403 4.99 2005-07-29T06:26:39Z 2020-02-15T06:59:50Z +4439 163 2 10245 0.99 2005-08-01T02:24:09Z 2020-02-15T06:59:50Z +4440 163 2 11623 2.99 2005-08-17T04:15:47Z 2020-02-15T06:59:50Z +4441 163 2 11940 4.99 2005-08-17T16:56:28Z 2020-02-15T06:59:50Z +4442 163 1 12154 2.99 2005-08-18T00:23:56Z 2020-02-15T06:59:50Z +4443 163 2 12973 2.99 2005-08-19T06:48:11Z 2020-02-15T06:59:50Z +4444 163 2 13543 7.99 2005-08-20T03:43:13Z 2020-02-15T06:59:50Z +4445 163 2 14275 4.99 2005-08-21T06:30:30Z 2020-02-15T06:59:50Z +4446 163 2 14427 5.99 2005-08-21T11:26:06Z 2020-02-15T06:59:50Z +4447 163 1 15520 8.99 2005-08-23T03:30:45Z 2020-02-15T06:59:50Z +4448 163 1 15847 0.99 2005-08-23T15:39:38Z 2020-02-15T06:59:50Z +4449 163 2 11754 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4450 163 1 15282 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4451 164 2 1011 1.99 2005-05-31T02:05:39Z 2020-02-15T06:59:50Z +4452 164 2 1713 4.99 2005-06-16T14:28:33Z 2020-02-15T06:59:50Z +4453 164 2 2589 2.99 2005-06-19T05:21:27Z 2020-02-15T06:59:50Z +4454 164 1 3082 8.99 2005-06-20T15:32:11Z 2020-02-15T06:59:50Z +4455 164 2 4548 4.99 2005-07-08T04:21:54Z 2020-02-15T06:59:50Z +4456 164 1 5895 3.99 2005-07-10T20:13:19Z 2020-02-15T06:59:50Z +4457 164 1 6393 0.99 2005-07-11T22:28:12Z 2020-02-15T06:59:50Z +4458 164 2 6558 2.99 2005-07-12T05:16:07Z 2020-02-15T06:59:50Z +4459 164 1 6637 4.99 2005-07-12T09:57:39Z 2020-02-15T06:59:50Z +4460 164 2 6702 0.99 2005-07-12T12:48:03Z 2020-02-15T06:59:50Z +4461 164 1 6980 3.99 2005-07-27T00:50:30Z 2020-02-15T06:59:50Z +4462 164 1 7227 6.99 2005-07-27T09:53:43Z 2020-02-15T06:59:50Z +4463 164 2 8135 3.99 2005-07-28T20:03:25Z 2020-02-15T06:59:50Z +4464 164 2 8824 4.99 2005-07-29T22:22:58Z 2020-02-15T06:59:50Z +4465 164 2 11175 2.99 2005-08-02T10:38:47Z 2020-02-15T06:59:50Z +4466 164 2 13453 5.99 2005-08-20T00:30:51Z 2020-02-15T06:59:50Z +4467 165 2 338 4.99 2005-05-27T03:42:52Z 2020-02-15T06:59:50Z +4468 165 1 2013 3.99 2005-06-17T12:03:01Z 2020-02-15T06:59:50Z +4469 165 2 3195 2.99 2005-06-21T00:02:10Z 2020-02-15T06:59:50Z +4470 165 2 3531 4.99 2005-07-06T01:24:08Z 2020-02-15T06:59:50Z +4471 165 1 3784 5.99 2005-07-06T13:57:56Z 2020-02-15T06:59:50Z +4472 165 2 4304 0.99 2005-07-07T17:01:19Z 2020-02-15T06:59:50Z +4473 165 2 4945 2.99 2005-07-08T22:45:02Z 2020-02-15T06:59:50Z +4474 165 1 5472 4.99 2005-07-09T23:16:40Z 2020-02-15T06:59:50Z +4475 165 2 5658 4.99 2005-07-10T07:34:08Z 2020-02-15T06:59:50Z +4476 165 2 5901 6.99 2005-07-10T20:22:12Z 2020-02-15T06:59:50Z +4477 165 1 5973 0.99 2005-07-11T00:09:17Z 2020-02-15T06:59:50Z +4478 165 1 7074 2.99 2005-07-27T04:06:24Z 2020-02-15T06:59:50Z +4479 165 1 8608 0.99 2005-07-29T13:18:52Z 2020-02-15T06:59:50Z +4480 165 2 9182 7.99 2005-07-30T12:06:58Z 2020-02-15T06:59:50Z +4481 165 2 9685 4.99 2005-07-31T06:49:18Z 2020-02-15T06:59:50Z +4482 165 1 10565 4.99 2005-08-01T13:08:27Z 2020-02-15T06:59:50Z +4483 165 1 11484 2.99 2005-08-02T22:28:23Z 2020-02-15T06:59:50Z +4484 165 2 12643 4.99 2005-08-18T18:21:06Z 2020-02-15T06:59:50Z +4485 165 2 15007 1.99 2005-08-22T08:21:21Z 2020-02-15T06:59:50Z +4486 165 1 15801 3.99 2005-08-23T14:26:04Z 2020-02-15T06:59:50Z +4487 165 2 15834 5.99 2005-08-23T15:23:50Z 2020-02-15T06:59:50Z +4488 166 1 662 1.99 2005-05-28T21:09:31Z 2020-02-15T06:59:50Z +4489 166 2 1412 2.99 2005-06-15T17:09:48Z 2020-02-15T06:59:50Z +4490 166 1 2211 3.99 2005-06-18T02:29:10Z 2020-02-15T06:59:50Z +4491 166 1 2874 5.99 2005-06-20T00:42:26Z 2020-02-15T06:59:50Z +4492 166 1 3085 0.99 2005-06-20T15:42:33Z 2020-02-15T06:59:50Z +4493 166 2 3606 2.99 2005-07-06T05:28:02Z 2020-02-15T06:59:50Z +4494 166 1 3642 2.99 2005-07-06T07:18:20Z 2020-02-15T06:59:50Z +4495 166 2 4389 6.99 2005-07-07T20:58:58Z 2020-02-15T06:59:50Z +4496 166 1 4658 0.99 2005-07-08T09:51:11Z 2020-02-15T06:59:50Z +4497 166 1 5184 4.99 2005-07-09T10:14:34Z 2020-02-15T06:59:50Z +4498 166 2 5380 4.99 2005-07-09T19:08:44Z 2020-02-15T06:59:50Z +4499 166 1 5646 2.99 2005-07-10T07:08:09Z 2020-02-15T06:59:50Z +4500 166 1 5855 7.99 2005-07-10T17:54:06Z 2020-02-15T06:59:50Z +4501 166 2 6237 0.99 2005-07-11T14:19:12Z 2020-02-15T06:59:50Z +4502 166 2 6882 2.99 2005-07-12T20:50:39Z 2020-02-15T06:59:50Z +4503 166 1 7581 2.99 2005-07-27T23:14:35Z 2020-02-15T06:59:50Z +4504 166 1 8052 5.99 2005-07-28T16:57:31Z 2020-02-15T06:59:50Z +4505 166 1 9009 8.99 2005-07-30T05:12:01Z 2020-02-15T06:59:50Z +4506 166 2 10422 7.99 2005-08-01T08:17:11Z 2020-02-15T06:59:50Z +4507 166 2 12683 4.99 2005-08-18T19:50:43Z 2020-02-15T06:59:50Z +4508 166 1 12968 4.99 2005-08-19T06:38:18Z 2020-02-15T06:59:50Z +4509 166 2 13582 4.99 2005-08-20T05:28:11Z 2020-02-15T06:59:50Z +4510 166 2 13901 7.99 2005-08-20T16:06:53Z 2020-02-15T06:59:50Z +4511 166 2 14261 5.99 2005-08-21T06:07:24Z 2020-02-15T06:59:50Z +4512 166 2 14281 2.99 2005-08-21T06:40:48Z 2020-02-15T06:59:50Z +4513 166 1 15213 5.99 2005-08-22T16:49:02Z 2020-02-15T06:59:50Z +4514 166 2 15216 2.99 2005-08-22T16:57:02Z 2020-02-15T06:59:50Z +4515 166 2 15806 1.99 2005-08-23T14:31:50Z 2020-02-15T06:59:50Z +4516 167 1 280 2.99 2005-05-26T18:36:58Z 2020-02-15T06:59:50Z +4517 167 1 365 2.99 2005-05-27T07:31:20Z 2020-02-15T06:59:50Z +4518 167 1 927 4.99 2005-05-30T12:16:40Z 2020-02-15T06:59:50Z +4519 167 1 1416 3.99 2005-06-15T17:44:57Z 2020-02-15T06:59:50Z +4520 167 1 1509 5.99 2005-06-15T22:35:53Z 2020-02-15T06:59:50Z +4521 167 2 2381 5.99 2005-06-18T15:00:30Z 2020-02-15T06:59:50Z +4522 167 2 3518 4.99 2005-07-06T00:56:03Z 2020-02-15T06:59:50Z +4523 167 2 4493 0.99 2005-07-08T01:40:24Z 2020-02-15T06:59:50Z +4524 167 2 5131 0.99 2005-07-09T07:35:03Z 2020-02-15T06:59:50Z +4525 167 1 5178 4.99 2005-07-09T09:59:52Z 2020-02-15T06:59:50Z +4526 167 1 5191 0.99 2005-07-09T10:26:48Z 2020-02-15T06:59:50Z +4527 167 1 5413 4.99 2005-07-09T20:28:42Z 2020-02-15T06:59:50Z +4528 167 1 5781 2.99 2005-07-10T13:49:30Z 2020-02-15T06:59:50Z +4529 167 2 6269 4.99 2005-07-11T15:58:43Z 2020-02-15T06:59:50Z +4530 167 1 7608 4.99 2005-07-28T00:08:36Z 2020-02-15T06:59:50Z +4531 167 1 8092 2.99 2005-07-28T18:28:07Z 2020-02-15T06:59:50Z +4532 167 2 8227 4.99 2005-07-29T00:02:22Z 2020-02-15T06:59:50Z +4533 167 1 8318 2.99 2005-07-29T03:44:30Z 2020-02-15T06:59:50Z +4534 167 1 8793 0.99 2005-07-29T20:57:22Z 2020-02-15T06:59:50Z +4535 167 2 8864 0.99 2005-07-29T23:52:12Z 2020-02-15T06:59:50Z +4536 167 2 9563 4.99 2005-07-31T02:28:39Z 2020-02-15T06:59:50Z +4537 167 2 10285 3.99 2005-08-01T03:35:11Z 2020-02-15T06:59:50Z +4538 167 1 12642 4.99 2005-08-18T18:19:16Z 2020-02-15T06:59:50Z +4539 167 2 12717 4.99 2005-08-18T21:15:40Z 2020-02-15T06:59:50Z +4540 167 1 12978 4.99 2005-08-19T06:57:27Z 2020-02-15T06:59:50Z +4541 167 1 13825 6.99 2005-08-20T13:43:22Z 2020-02-15T06:59:50Z +4542 167 1 13870 1.99 2005-08-20T15:09:16Z 2020-02-15T06:59:50Z +4543 167 1 15003 3.99 2005-08-22T08:11:24Z 2020-02-15T06:59:50Z +4544 167 1 15050 0.99 2005-08-22T10:07:52Z 2020-02-15T06:59:50Z +4545 167 2 15478 0.99 2005-08-23T01:50:31Z 2020-02-15T06:59:50Z +4546 167 2 15530 4.99 2005-08-23T03:50:48Z 2020-02-15T06:59:50Z +4547 167 2 15915 4.99 2005-08-23T17:52:01Z 2020-02-15T06:59:50Z +4548 168 2 404 0.99 2005-05-27T13:31:51Z 2020-02-15T06:59:50Z +4549 168 1 488 4.99 2005-05-28T00:07:50Z 2020-02-15T06:59:50Z +4550 168 2 1222 4.99 2005-06-15T03:38:49Z 2020-02-15T06:59:50Z +4551 168 1 3530 2.99 2005-07-06T01:22:45Z 2020-02-15T06:59:50Z +4552 168 1 4308 5.99 2005-07-07T17:29:16Z 2020-02-15T06:59:50Z +4553 168 2 4363 5.99 2005-07-07T19:43:28Z 2020-02-15T06:59:50Z +4554 168 2 4953 2.99 2005-07-08T23:09:48Z 2020-02-15T06:59:50Z +4555 168 1 5459 0.99 2005-07-09T22:43:56Z 2020-02-15T06:59:50Z +4556 168 1 5907 5.99 2005-07-10T20:41:41Z 2020-02-15T06:59:50Z +4557 168 1 6334 5.99 2005-07-11T19:20:44Z 2020-02-15T06:59:50Z +4558 168 2 6444 0.99 2005-07-12T00:36:02Z 2020-02-15T06:59:50Z +4559 168 2 6809 3.99 2005-07-12T17:51:54Z 2020-02-15T06:59:50Z +4560 168 2 8352 1.99 2005-07-29T04:52:01Z 2020-02-15T06:59:50Z +4561 168 1 8527 1.99 2005-07-29T10:21:00Z 2020-02-15T06:59:50Z +4562 168 2 8659 6.99 2005-07-29T15:26:31Z 2020-02-15T06:59:50Z +4563 168 2 8883 1.99 2005-07-30T00:24:48Z 2020-02-15T06:59:50Z +4564 168 2 9197 4.99 2005-07-30T12:31:36Z 2020-02-15T06:59:50Z +4565 168 1 9418 4.99 2005-07-30T21:00:52Z 2020-02-15T06:59:50Z +4566 168 2 9857 6.99 2005-07-31T13:00:53Z 2020-02-15T06:59:50Z +4567 168 2 9899 4.99 2005-07-31T14:12:36Z 2020-02-15T06:59:50Z +4568 168 2 10270 0.99 2005-08-01T03:10:24Z 2020-02-15T06:59:50Z +4569 168 1 11551 0.99 2005-08-17T01:03:49Z 2020-02-15T06:59:50Z +4570 168 1 11627 10.99 2005-08-17T04:25:47Z 2020-02-15T06:59:50Z +4571 168 1 11631 1.99 2005-08-17T04:28:56Z 2020-02-15T06:59:50Z +4572 168 1 12545 6.99 2005-08-18T14:28:00Z 2020-02-15T06:59:50Z +4573 168 1 12781 2.99 2005-08-18T23:50:24Z 2020-02-15T06:59:50Z +4574 168 1 13018 8.99 2005-08-19T08:04:50Z 2020-02-15T06:59:50Z +4575 168 2 13532 4.99 2005-08-20T03:29:28Z 2020-02-15T06:59:50Z +4576 168 2 13811 0.99 2005-08-20T13:00:30Z 2020-02-15T06:59:50Z +4577 168 1 14090 2.99 2005-08-21T00:11:16Z 2020-02-15T06:59:50Z +4578 168 1 15033 3.99 2005-08-22T09:25:24Z 2020-02-15T06:59:50Z +4579 168 1 15165 2.99 2005-08-22T14:59:30Z 2020-02-15T06:59:50Z +4580 168 2 15683 2.99 2005-08-23T09:38:17Z 2020-02-15T06:59:50Z +4581 168 1 15894 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4582 169 2 527 3.99 2005-05-28T04:28:38Z 2020-02-15T06:59:50Z +4583 169 1 1087 4.99 2005-05-31T11:18:08Z 2020-02-15T06:59:50Z +4584 169 1 2023 4.99 2005-06-17T12:52:58Z 2020-02-15T06:59:50Z +4585 169 1 3261 2.99 2005-06-21T04:07:41Z 2020-02-15T06:59:50Z +4586 169 1 3493 8.99 2005-07-05T23:46:19Z 2020-02-15T06:59:50Z +4587 169 1 4687 4.99 2005-07-08T10:54:19Z 2020-02-15T06:59:50Z +4588 169 1 5066 2.99 2005-07-09T04:48:50Z 2020-02-15T06:59:50Z +4589 169 1 6143 3.99 2005-07-11T09:02:37Z 2020-02-15T06:59:50Z +4590 169 2 6453 4.99 2005-07-12T00:59:53Z 2020-02-15T06:59:50Z +4591 169 2 6488 9.99 2005-07-12T02:20:09Z 2020-02-15T06:59:50Z +4592 169 2 7187 6.99 2005-07-27T08:27:58Z 2020-02-15T06:59:50Z +4593 169 1 7597 0.99 2005-07-27T23:35:49Z 2020-02-15T06:59:50Z +4594 169 2 8558 4.99 2005-07-29T11:24:49Z 2020-02-15T06:59:50Z +4595 169 2 9203 0.99 2005-07-30T12:43:40Z 2020-02-15T06:59:50Z +4596 169 2 11687 5.99 2005-08-17T06:39:59Z 2020-02-15T06:59:50Z +4597 169 1 11898 5.99 2005-08-17T15:24:12Z 2020-02-15T06:59:50Z +4598 169 2 13198 2.99 2005-08-19T14:47:18Z 2020-02-15T06:59:50Z +4599 169 2 13237 1.99 2005-08-19T16:18:36Z 2020-02-15T06:59:50Z +4600 169 2 14435 0.99 2005-08-21T11:44:37Z 2020-02-15T06:59:50Z +4601 169 2 14805 4.99 2005-08-22T00:52:01Z 2020-02-15T06:59:50Z +4602 169 2 15534 0.99 2005-08-23T03:55:54Z 2020-02-15T06:59:50Z +4603 169 2 15680 4.99 2005-08-23T09:33:22Z 2020-02-15T06:59:50Z +4604 170 1 211 2.99 2005-05-26T08:33:10Z 2020-02-15T06:59:50Z +4605 170 1 377 5.99 2005-05-27T09:04:05Z 2020-02-15T06:59:50Z +4606 170 2 504 0.99 2005-05-28T02:05:34Z 2020-02-15T06:59:50Z +4607 170 2 2117 0.99 2005-06-17T20:24:00Z 2020-02-15T06:59:50Z +4608 170 2 2413 8.99 2005-06-18T16:59:34Z 2020-02-15T06:59:50Z +4609 170 2 3651 4.99 2005-07-06T07:40:31Z 2020-02-15T06:59:50Z +4610 170 1 3749 4.99 2005-07-06T12:18:03Z 2020-02-15T06:59:50Z +4611 170 2 4113 4.99 2005-07-07T06:49:52Z 2020-02-15T06:59:50Z +4612 170 2 4468 0.99 2005-07-08T00:17:59Z 2020-02-15T06:59:50Z +4613 170 2 5075 0.99 2005-07-09T05:12:07Z 2020-02-15T06:59:50Z +4614 170 1 5573 4.99 2005-07-10T03:50:47Z 2020-02-15T06:59:50Z +4615 170 2 5685 7.99 2005-07-10T09:01:38Z 2020-02-15T06:59:50Z +4616 170 2 5808 2.99 2005-07-10T15:17:33Z 2020-02-15T06:59:50Z +4617 170 1 7999 7.99 2005-07-28T15:10:14Z 2020-02-15T06:59:50Z +4618 170 2 9517 2.99 2005-07-31T00:41:23Z 2020-02-15T06:59:50Z +4619 170 1 9817 2.99 2005-07-31T11:33:31Z 2020-02-15T06:59:50Z +4620 170 1 10102 9.99 2005-07-31T20:49:10Z 2020-02-15T06:59:50Z +4621 170 2 10481 5.99 2005-08-01T10:17:26Z 2020-02-15T06:59:50Z +4622 170 1 11039 0.99 2005-08-02T06:00:53Z 2020-02-15T06:59:50Z +4623 170 2 12706 3.99 2005-08-18T20:44:34Z 2020-02-15T06:59:50Z +4624 170 1 12967 3.99 2005-08-19T06:37:51Z 2020-02-15T06:59:50Z +4625 170 1 13081 0.99 2005-08-19T10:19:06Z 2020-02-15T06:59:50Z +4626 170 2 13862 6.99 2005-08-20T14:57:01Z 2020-02-15T06:59:50Z +4627 170 2 14022 8.99 2005-08-20T21:08:49Z 2020-02-15T06:59:50Z +4628 170 2 14675 2.99 2005-08-21T20:01:51Z 2020-02-15T06:59:50Z +4629 170 1 15549 7.99 2005-08-23T04:27:06Z 2020-02-15T06:59:50Z +4630 171 2 804 9.99 2005-05-29T18:10:24Z 2020-02-15T06:59:50Z +4631 171 2 1676 0.99 2005-06-16T11:06:09Z 2020-02-15T06:59:50Z +4632 171 2 2004 4.99 2005-06-17T11:43:38Z 2020-02-15T06:59:50Z +4633 171 2 2199 5.99 2005-06-18T01:57:56Z 2020-02-15T06:59:50Z +4634 171 1 2497 4.99 2005-06-18T22:50:40Z 2020-02-15T06:59:50Z +4635 171 2 2599 5.99 2005-06-19T06:06:07Z 2020-02-15T06:59:50Z +4636 171 2 2788 2.99 2005-06-19T18:48:11Z 2020-02-15T06:59:50Z +4637 171 2 3338 6.99 2005-06-21T10:27:31Z 2020-02-15T06:59:50Z +4638 171 1 3621 0.99 2005-07-06T06:03:55Z 2020-02-15T06:59:50Z +4639 171 2 3745 2.99 2005-07-06T12:10:32Z 2020-02-15T06:59:50Z +4640 171 1 5660 5.99 2005-07-10T07:46:12Z 2020-02-15T06:59:50Z +4641 171 1 5986 4.99 2005-07-11T00:54:56Z 2020-02-15T06:59:50Z +4642 171 1 6766 2.99 2005-07-12T15:32:01Z 2020-02-15T06:59:50Z +4643 171 2 6774 0.99 2005-07-12T15:56:08Z 2020-02-15T06:59:50Z +4644 171 1 7037 3.99 2005-07-27T03:06:44Z 2020-02-15T06:59:50Z +4645 171 2 9066 4.99 2005-07-30T07:28:54Z 2020-02-15T06:59:50Z +4646 171 2 9084 5.99 2005-07-30T08:14:29Z 2020-02-15T06:59:50Z +4647 171 2 10622 4.99 2005-08-01T15:12:00Z 2020-02-15T06:59:50Z +4648 171 1 12600 4.99 2005-08-18T16:44:24Z 2020-02-15T06:59:50Z +4649 171 1 12962 5.99 2005-08-19T06:22:48Z 2020-02-15T06:59:50Z +4650 171 2 13087 6.99 2005-08-19T10:33:52Z 2020-02-15T06:59:50Z +4651 171 2 13292 0.99 2005-08-19T18:35:32Z 2020-02-15T06:59:50Z +4652 171 2 13433 0.99 2005-08-19T23:30:53Z 2020-02-15T06:59:50Z +4653 171 1 14270 1.99 2005-08-21T06:22:18Z 2020-02-15T06:59:50Z +4654 171 2 14615 9.99 2005-08-21T18:06:32Z 2020-02-15T06:59:50Z +4655 171 2 15810 0.99 2005-08-23T14:43:15Z 2020-02-15T06:59:50Z +4656 172 2 449 3.99 2005-05-27T19:13:15Z 2020-02-15T06:59:50Z +4657 172 1 685 6.99 2005-05-29T00:17:51Z 2020-02-15T06:59:50Z +4658 172 1 837 0.99 2005-05-30T00:02:08Z 2020-02-15T06:59:50Z +4659 172 2 1507 0.99 2005-06-15T22:25:26Z 2020-02-15T06:59:50Z +4660 172 1 2052 0.99 2005-06-17T15:14:43Z 2020-02-15T06:59:50Z +4661 172 2 3032 1.99 2005-06-20T11:58:30Z 2020-02-15T06:59:50Z +4662 172 1 4820 5.99 2005-07-08T17:25:23Z 2020-02-15T06:59:50Z +4663 172 1 4821 4.99 2005-07-08T17:28:08Z 2020-02-15T06:59:50Z +4664 172 2 4878 6.99 2005-07-08T19:33:49Z 2020-02-15T06:59:50Z +4665 172 2 6246 7.99 2005-07-11T14:57:51Z 2020-02-15T06:59:50Z +4666 172 1 6380 0.99 2005-07-11T21:55:40Z 2020-02-15T06:59:50Z +4667 172 1 6875 5.99 2005-07-12T20:23:05Z 2020-02-15T06:59:50Z +4668 172 1 7122 6.99 2005-07-27T06:03:18Z 2020-02-15T06:59:50Z +4669 172 1 7135 2.99 2005-07-27T06:34:32Z 2020-02-15T06:59:50Z +4670 172 1 7194 3.99 2005-07-27T08:39:58Z 2020-02-15T06:59:50Z +4671 172 2 7261 2.99 2005-07-27T11:15:01Z 2020-02-15T06:59:50Z +4672 172 1 7638 4.99 2005-07-28T01:13:26Z 2020-02-15T06:59:50Z +4673 172 2 8944 6.99 2005-07-30T03:11:44Z 2020-02-15T06:59:50Z +4674 172 1 9118 2.99 2005-07-30T09:24:18Z 2020-02-15T06:59:50Z +4675 172 2 9218 5.99 2005-07-30T13:14:35Z 2020-02-15T06:59:50Z +4676 172 1 10312 3.99 2005-08-01T04:29:06Z 2020-02-15T06:59:50Z +4677 172 2 10621 0.99 2005-08-01T15:10:26Z 2020-02-15T06:59:50Z +4678 172 2 11499 6.99 2005-08-16T22:54:12Z 2020-02-15T06:59:50Z +4679 172 2 12350 4.99 2005-08-18T07:29:46Z 2020-02-15T06:59:50Z +4680 172 2 12638 8.99 2005-08-18T18:11:39Z 2020-02-15T06:59:50Z +4681 172 2 13067 5.99 2005-08-19T09:51:17Z 2020-02-15T06:59:50Z +4682 172 2 13320 4.99 2005-08-19T19:35:33Z 2020-02-15T06:59:50Z +4683 172 1 13342 0.99 2005-08-19T20:21:36Z 2020-02-15T06:59:50Z +4684 172 2 13937 4.99 2005-08-20T17:22:51Z 2020-02-15T06:59:50Z +4685 172 1 14991 4.99 2005-08-22T07:50:44Z 2020-02-15T06:59:50Z +4686 172 2 15637 2.99 2005-08-23T07:53:38Z 2020-02-15T06:59:50Z +4687 172 1 15902 3.99 2005-08-23T17:28:03Z 2020-02-15T06:59:50Z +4688 172 2 16038 3.99 2005-08-23T22:14:31Z 2020-02-15T06:59:50Z +4689 173 2 578 2.99 2005-05-28T11:15:48Z 2020-02-15T06:59:50Z +4690 173 1 628 4.99 2005-05-28T17:05:46Z 2020-02-15T06:59:50Z +4691 173 2 1188 2.99 2005-06-15T01:04:07Z 2020-02-15T06:59:50Z +4692 173 2 2435 4.99 2005-06-18T18:12:26Z 2020-02-15T06:59:50Z +4693 173 1 2602 2.99 2005-06-19T06:10:08Z 2020-02-15T06:59:50Z +4694 173 2 3224 0.99 2005-06-21T02:11:36Z 2020-02-15T06:59:50Z +4695 173 1 3336 4.99 2005-06-21T10:14:27Z 2020-02-15T06:59:50Z +4696 173 2 3717 0.99 2005-07-06T10:53:34Z 2020-02-15T06:59:50Z +4697 173 1 4904 7.99 2005-07-08T20:53:27Z 2020-02-15T06:59:50Z +4698 173 2 5430 2.99 2005-07-09T21:19:54Z 2020-02-15T06:59:50Z +4699 173 2 5485 4.99 2005-07-09T23:55:25Z 2020-02-15T06:59:50Z +4700 173 1 5488 2.99 2005-07-10T00:02:06Z 2020-02-15T06:59:50Z +4701 173 2 5531 2.99 2005-07-10T02:13:59Z 2020-02-15T06:59:50Z +4702 173 1 5615 3.99 2005-07-10T05:18:51Z 2020-02-15T06:59:50Z +4703 173 2 6021 4.99 2005-07-11T02:10:18Z 2020-02-15T06:59:50Z +4704 173 1 7644 0.99 2005-07-28T01:27:33Z 2020-02-15T06:59:50Z +4705 173 2 8299 2.99 2005-07-29T02:56:00Z 2020-02-15T06:59:50Z +4706 173 2 8808 4.99 2005-07-29T21:39:07Z 2020-02-15T06:59:50Z +4707 173 2 8829 8.99 2005-07-29T22:33:34Z 2020-02-15T06:59:50Z +4708 173 1 9097 4.99 2005-07-30T08:40:35Z 2020-02-15T06:59:50Z +4709 173 2 9512 2.99 2005-07-31T00:26:30Z 2020-02-15T06:59:50Z +4710 173 1 10351 5.99 2005-08-01T05:32:13Z 2020-02-15T06:59:50Z +4711 173 2 12073 2.99 2005-08-17T21:50:39Z 2020-02-15T06:59:50Z +4712 173 1 12282 6.99 2005-08-18T04:54:20Z 2020-02-15T06:59:50Z +4713 173 2 12501 4.99 2005-08-18T13:13:13Z 2020-02-15T06:59:50Z +4714 173 1 14654 2.99 2005-08-21T19:36:59Z 2020-02-15T06:59:50Z +4715 173 2 15483 0.99 2005-08-23T02:02:53Z 2020-02-15T06:59:50Z +4716 173 1 15775 8.99 2005-08-23T13:25:44Z 2020-02-15T06:59:50Z +4717 173 1 16010 2.99 2005-08-23T21:10:24Z 2020-02-15T06:59:50Z +4718 174 1 41 5.99 2005-05-25T05:12:29Z 2020-02-15T06:59:50Z +4719 174 2 1071 4.99 2005-05-31T09:48:56Z 2020-02-15T06:59:50Z +4720 174 2 1566 7.99 2005-06-16T03:13:20Z 2020-02-15T06:59:50Z +4721 174 1 1609 0.99 2005-06-16T06:34:59Z 2020-02-15T06:59:50Z +4722 174 1 2326 5.99 2005-06-18T10:14:22Z 2020-02-15T06:59:50Z +4723 174 2 3446 1.99 2005-06-21T20:45:51Z 2020-02-15T06:59:50Z +4724 174 2 4803 1.99 2005-07-08T16:56:34Z 2020-02-15T06:59:50Z +4725 174 2 5414 4.99 2005-07-09T20:29:36Z 2020-02-15T06:59:50Z +4726 174 1 6909 4.99 2005-07-12T22:09:30Z 2020-02-15T06:59:50Z +4727 174 2 8348 7.99 2005-07-29T04:49:26Z 2020-02-15T06:59:50Z +4728 174 1 8754 4.99 2005-07-29T19:18:30Z 2020-02-15T06:59:50Z +4729 174 1 9301 4.99 2005-07-30T16:34:29Z 2020-02-15T06:59:50Z +4730 174 1 9847 2.99 2005-07-31T12:33:43Z 2020-02-15T06:59:50Z +4731 174 1 10363 2.99 2005-08-01T06:01:52Z 2020-02-15T06:59:50Z +4732 174 2 10398 4.99 2005-08-01T07:11:49Z 2020-02-15T06:59:50Z +4733 174 1 10559 8.99 2005-08-01T13:02:58Z 2020-02-15T06:59:50Z +4734 174 1 11525 0.99 2005-08-17T00:15:31Z 2020-02-15T06:59:50Z +4735 174 2 12886 5.99 2005-08-19T03:38:32Z 2020-02-15T06:59:50Z +4736 174 1 13185 0.99 2005-08-19T14:22:30Z 2020-02-15T06:59:50Z +4737 174 1 15892 1.99 2005-08-23T17:01:00Z 2020-02-15T06:59:50Z +4738 174 1 15975 4.99 2005-08-23T20:06:23Z 2020-02-15T06:59:50Z +4739 175 2 1495 0.99 2005-06-15T21:54:31Z 2020-02-15T06:59:50Z +4740 175 2 3266 4.99 2005-06-21T04:49:07Z 2020-02-15T06:59:50Z +4741 175 1 3625 4.99 2005-07-06T06:12:52Z 2020-02-15T06:59:50Z +4742 175 2 4167 5.99 2005-07-07T09:37:08Z 2020-02-15T06:59:50Z +4743 175 1 5232 1.99 2005-07-09T12:35:08Z 2020-02-15T06:59:50Z +4744 175 2 6865 7.99 2005-07-12T20:02:40Z 2020-02-15T06:59:50Z +4745 175 1 7448 2.99 2005-07-27T18:06:30Z 2020-02-15T06:59:50Z +4746 175 1 7771 0.99 2005-07-28T06:52:12Z 2020-02-15T06:59:50Z +4747 175 1 8244 2.99 2005-07-29T00:35:34Z 2020-02-15T06:59:50Z +4748 175 1 8264 4.99 2005-07-29T01:18:50Z 2020-02-15T06:59:50Z +4749 175 1 8440 3.99 2005-07-29T07:31:26Z 2020-02-15T06:59:50Z +4750 175 1 8817 4.99 2005-07-29T22:09:08Z 2020-02-15T06:59:50Z +4751 175 2 9941 4.99 2005-07-31T15:31:25Z 2020-02-15T06:59:50Z +4752 175 2 10229 7.99 2005-08-01T01:45:26Z 2020-02-15T06:59:50Z +4753 175 1 10875 0.99 2005-08-02T00:31:44Z 2020-02-15T06:59:50Z +4754 175 2 11618 4.99 2005-08-17T04:01:36Z 2020-02-15T06:59:50Z +4755 175 1 12509 0.99 2005-08-18T13:21:52Z 2020-02-15T06:59:50Z +4756 175 1 13016 4.99 2005-08-19T07:57:14Z 2020-02-15T06:59:50Z +4757 175 2 13833 6.99 2005-08-20T14:00:29Z 2020-02-15T06:59:50Z +4758 175 2 13997 6.99 2005-08-20T19:51:28Z 2020-02-15T06:59:50Z +4759 175 2 14507 4.99 2005-08-21T14:32:45Z 2020-02-15T06:59:50Z +4760 175 2 14897 2.99 2005-08-22T04:22:31Z 2020-02-15T06:59:50Z +4761 175 2 14060 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4762 175 2 13161 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4763 176 1 172 0.99 2005-05-26T03:17:42Z 2020-02-15T06:59:50Z +4764 176 2 380 6.99 2005-05-27T09:34:39Z 2020-02-15T06:59:50Z +4765 176 1 553 3.99 2005-05-28T08:14:44Z 2020-02-15T06:59:50Z +4766 176 1 663 1.99 2005-05-28T21:23:02Z 2020-02-15T06:59:50Z +4767 176 1 1062 7.99 2005-05-31T08:38:20Z 2020-02-15T06:59:50Z +4768 176 1 1291 5.99 2005-06-15T08:55:01Z 2020-02-15T06:59:50Z +4769 176 1 1741 7.99 2005-06-16T16:31:37Z 2020-02-15T06:59:50Z +4770 176 1 1836 6.99 2005-06-16T23:13:05Z 2020-02-15T06:59:50Z +4771 176 1 2181 8.99 2005-06-18T00:48:31Z 2020-02-15T06:59:50Z +4772 176 1 2218 2.99 2005-06-18T03:13:13Z 2020-02-15T06:59:50Z +4773 176 2 2427 2.99 2005-06-18T17:45:00Z 2020-02-15T06:59:50Z +4774 176 2 2503 1.99 2005-06-18T23:17:19Z 2020-02-15T06:59:50Z +4775 176 1 2922 4.99 2005-06-20T04:13:47Z 2020-02-15T06:59:50Z +4776 176 1 3643 4.99 2005-07-06T07:20:08Z 2020-02-15T06:59:50Z +4777 176 2 3931 6.99 2005-07-06T21:03:46Z 2020-02-15T06:59:50Z +4778 176 2 4121 3.99 2005-07-07T07:13:50Z 2020-02-15T06:59:50Z +4779 176 1 6035 2.99 2005-07-11T03:01:45Z 2020-02-15T06:59:50Z +4780 176 1 6354 6.99 2005-07-11T20:54:27Z 2020-02-15T06:59:50Z +4781 176 1 7017 4.99 2005-07-27T02:16:03Z 2020-02-15T06:59:50Z +4782 176 1 7025 2.99 2005-07-27T02:40:29Z 2020-02-15T06:59:50Z +4783 176 1 7210 2.99 2005-07-27T09:19:05Z 2020-02-15T06:59:50Z +4784 176 2 7521 2.99 2005-07-27T21:04:42Z 2020-02-15T06:59:50Z +4785 176 1 7751 5.99 2005-07-28T05:56:13Z 2020-02-15T06:59:50Z +4786 176 1 8279 2.99 2005-07-29T01:43:37Z 2020-02-15T06:59:50Z +4787 176 2 9145 6.99 2005-07-30T10:27:55Z 2020-02-15T06:59:50Z +4788 176 1 10277 2.99 2005-08-01T03:22:41Z 2020-02-15T06:59:50Z +4789 176 2 10441 0.99 2005-08-01T08:55:56Z 2020-02-15T06:59:50Z +4790 176 1 10862 2.99 2005-08-02T00:17:34Z 2020-02-15T06:59:50Z +4791 176 1 11678 5.99 2005-08-17T06:07:39Z 2020-02-15T06:59:50Z +4792 176 1 12299 2.99 2005-08-18T05:32:32Z 2020-02-15T06:59:50Z +4793 176 1 12718 2.99 2005-08-18T21:21:44Z 2020-02-15T06:59:50Z +4794 176 1 13170 7.99 2005-08-19T13:45:48Z 2020-02-15T06:59:50Z +4795 176 2 13186 5.99 2005-08-19T14:23:19Z 2020-02-15T06:59:50Z +4796 176 1 14083 7.99 2005-08-20T23:42:31Z 2020-02-15T06:59:50Z +4797 176 2 14232 1.99 2005-08-21T05:07:02Z 2020-02-15T06:59:50Z +4798 176 2 15311 4.99 2005-08-22T19:56:52Z 2020-02-15T06:59:50Z +4799 176 1 15933 4.99 2005-08-23T18:36:44Z 2020-02-15T06:59:50Z +4800 177 1 1393 2.99 2005-06-15T16:12:50Z 2020-02-15T06:59:50Z +4801 177 1 1524 2.99 2005-06-16T00:25:52Z 2020-02-15T06:59:50Z +4802 177 2 1621 4.99 2005-06-16T07:24:12Z 2020-02-15T06:59:50Z +4803 177 1 1738 0.99 2005-06-16T16:07:27Z 2020-02-15T06:59:50Z +4804 177 2 2467 2.99 2005-06-18T20:20:05Z 2020-02-15T06:59:50Z +4805 177 1 4760 0.99 2005-07-08T14:48:07Z 2020-02-15T06:59:50Z +4806 177 2 6217 9.99 2005-07-11T13:13:45Z 2020-02-15T06:59:50Z +4807 177 1 6284 2.99 2005-07-11T16:51:39Z 2020-02-15T06:59:50Z +4808 177 1 7493 3.99 2005-07-27T19:55:46Z 2020-02-15T06:59:50Z +4809 177 2 7674 1.99 2005-07-28T02:54:30Z 2020-02-15T06:59:50Z +4810 177 1 8139 0.99 2005-07-28T20:16:30Z 2020-02-15T06:59:50Z +4811 177 2 9190 1.99 2005-07-30T12:24:17Z 2020-02-15T06:59:50Z +4812 177 2 10321 4.99 2005-08-01T04:40:02Z 2020-02-15T06:59:50Z +4813 177 1 10661 2.99 2005-08-01T16:48:31Z 2020-02-15T06:59:50Z +4814 177 1 10710 0.99 2005-08-01T18:44:36Z 2020-02-15T06:59:50Z +4815 177 1 11195 0.99 2005-08-02T11:42:23Z 2020-02-15T06:59:50Z +4816 177 1 11376 5.99 2005-08-02T18:16:00Z 2020-02-15T06:59:50Z +4817 177 2 11662 6.99 2005-08-17T05:27:37Z 2020-02-15T06:59:50Z +4818 177 1 12623 4.99 2005-08-18T17:34:19Z 2020-02-15T06:59:50Z +4819 177 2 14093 0.99 2005-08-21T00:21:29Z 2020-02-15T06:59:50Z +4820 177 2 14310 0.99 2005-08-21T07:44:32Z 2020-02-15T06:59:50Z +4821 177 2 14849 2.99 2005-08-22T02:15:26Z 2020-02-15T06:59:50Z +4822 177 2 14883 0.99 2005-08-22T03:55:02Z 2020-02-15T06:59:50Z +4823 178 1 1292 6.99 2005-06-15T09:03:52Z 2020-02-15T06:59:50Z +4824 178 2 1458 6.99 2005-06-15T20:24:05Z 2020-02-15T06:59:50Z +4825 178 2 1568 2.99 2005-06-16T03:14:01Z 2020-02-15T06:59:50Z +4826 178 2 1745 3.99 2005-06-16T16:41:16Z 2020-02-15T06:59:50Z +4827 178 2 2124 1.99 2005-06-17T20:49:14Z 2020-02-15T06:59:50Z +4828 178 1 2293 4.99 2005-06-18T07:45:03Z 2020-02-15T06:59:50Z +4829 178 2 2844 6.99 2005-06-19T22:40:12Z 2020-02-15T06:59:50Z +4830 178 1 2898 9.99 2005-06-20T02:38:06Z 2020-02-15T06:59:50Z +4831 178 1 4915 2.99 2005-07-08T21:31:22Z 2020-02-15T06:59:50Z +4832 178 1 5015 2.99 2005-07-09T01:54:24Z 2020-02-15T06:59:50Z +4833 178 1 5057 4.99 2005-07-09T04:20:29Z 2020-02-15T06:59:50Z +4834 178 1 5094 10.99 2005-07-09T05:59:47Z 2020-02-15T06:59:50Z +4835 178 1 5984 2.99 2005-07-11T00:44:36Z 2020-02-15T06:59:50Z +4836 178 2 6347 4.99 2005-07-11T20:18:53Z 2020-02-15T06:59:50Z +4837 178 1 6554 5.99 2005-07-12T05:07:26Z 2020-02-15T06:59:50Z +4838 178 1 6566 6.99 2005-07-12T05:42:53Z 2020-02-15T06:59:50Z +4839 178 2 6606 2.99 2005-07-12T08:03:40Z 2020-02-15T06:59:50Z +4840 178 1 7959 4.99 2005-07-28T13:43:20Z 2020-02-15T06:59:50Z +4841 178 2 8069 0.99 2005-07-28T17:23:46Z 2020-02-15T06:59:50Z +4842 178 1 8287 3.99 2005-07-29T02:03:58Z 2020-02-15T06:59:50Z +4843 178 2 8388 5.99 2005-07-29T05:48:15Z 2020-02-15T06:59:50Z +4844 178 2 8696 4.99 2005-07-29T16:45:18Z 2020-02-15T06:59:50Z +4845 178 2 9004 4.99 2005-07-30T05:04:27Z 2020-02-15T06:59:50Z +4846 178 1 9311 7.99 2005-07-30T16:58:31Z 2020-02-15T06:59:50Z +4847 178 2 9879 4.99 2005-07-31T13:45:32Z 2020-02-15T06:59:50Z +4848 178 2 10125 0.99 2005-07-31T21:33:03Z 2020-02-15T06:59:50Z +4849 178 2 10562 0.99 2005-08-01T13:05:52Z 2020-02-15T06:59:50Z +4850 178 1 10802 5.99 2005-08-01T22:18:32Z 2020-02-15T06:59:50Z +4851 178 2 11319 6.99 2005-08-02T16:10:09Z 2020-02-15T06:59:50Z +4852 178 2 11884 6.99 2005-08-17T14:43:23Z 2020-02-15T06:59:50Z +4853 178 2 11927 3.99 2005-08-17T16:25:03Z 2020-02-15T06:59:50Z +4854 178 2 12049 6.99 2005-08-17T20:53:27Z 2020-02-15T06:59:50Z +4855 178 2 12727 2.99 2005-08-18T21:45:15Z 2020-02-15T06:59:50Z +4856 178 1 13127 2.99 2005-08-19T12:04:03Z 2020-02-15T06:59:50Z +4857 178 1 14104 4.99 2005-08-21T00:37:44Z 2020-02-15T06:59:50Z +4858 178 1 14257 7.99 2005-08-21T05:52:57Z 2020-02-15T06:59:50Z +4859 178 2 14314 2.99 2005-08-21T07:50:14Z 2020-02-15T06:59:50Z +4860 178 1 15323 4.99 2005-08-22T20:22:40Z 2020-02-15T06:59:50Z +4861 178 1 12897 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4862 179 1 502 0.99 2005-05-28T01:34:43Z 2020-02-15T06:59:50Z +4863 179 1 759 6.99 2005-05-29T10:57:57Z 2020-02-15T06:59:50Z +4864 179 1 1046 4.99 2005-05-31T06:42:30Z 2020-02-15T06:59:50Z +4865 179 2 1286 7.99 2005-06-15T08:41:13Z 2020-02-15T06:59:50Z +4866 179 1 2613 4.99 2005-06-19T07:25:50Z 2020-02-15T06:59:50Z +4867 179 1 3671 6.99 2005-07-06T09:01:29Z 2020-02-15T06:59:50Z +4868 179 1 3844 0.99 2005-07-06T16:37:58Z 2020-02-15T06:59:50Z +4869 179 1 4618 2.99 2005-07-08T08:00:20Z 2020-02-15T06:59:50Z +4870 179 2 6071 6.99 2005-07-11T04:50:03Z 2020-02-15T06:59:50Z +4871 179 1 6616 7.99 2005-07-12T08:37:30Z 2020-02-15T06:59:50Z +4872 179 1 6806 2.99 2005-07-12T17:31:43Z 2020-02-15T06:59:50Z +4873 179 1 7028 6.99 2005-07-27T02:54:25Z 2020-02-15T06:59:50Z +4874 179 1 7054 4.99 2005-07-27T03:43:28Z 2020-02-15T06:59:50Z +4875 179 1 7609 4.99 2005-07-28T00:11:00Z 2020-02-15T06:59:50Z +4876 179 1 8573 2.99 2005-07-29T11:51:25Z 2020-02-15T06:59:50Z +4877 179 1 8731 8.99 2005-07-29T18:23:57Z 2020-02-15T06:59:50Z +4878 179 2 9491 4.99 2005-07-30T23:45:23Z 2020-02-15T06:59:50Z +4879 179 2 9893 0.99 2005-07-31T14:07:21Z 2020-02-15T06:59:50Z +4880 179 1 10156 4.99 2005-07-31T22:36:00Z 2020-02-15T06:59:50Z +4881 179 1 10385 4.99 2005-08-01T06:39:55Z 2020-02-15T06:59:50Z +4882 179 2 10569 3.99 2005-08-01T13:18:23Z 2020-02-15T06:59:50Z +4883 179 1 11342 0.99 2005-08-02T17:11:35Z 2020-02-15T06:59:50Z +4884 179 2 13240 0.99 2005-08-19T16:22:14Z 2020-02-15T06:59:50Z +4885 179 1 13400 4.99 2005-08-19T22:11:44Z 2020-02-15T06:59:50Z +4886 179 2 13844 7.99 2005-08-20T14:30:26Z 2020-02-15T06:59:50Z +4887 179 2 13957 0.99 2005-08-20T18:09:04Z 2020-02-15T06:59:50Z +4888 179 2 14082 7.99 2005-08-20T23:42:00Z 2020-02-15T06:59:50Z +4889 179 1 14589 0.99 2005-08-21T17:28:55Z 2020-02-15T06:59:50Z +4890 179 1 15985 4.99 2005-08-23T20:20:23Z 2020-02-15T06:59:50Z +4891 180 1 1122 2.99 2005-05-31T16:39:33Z 2020-02-15T06:59:50Z +4892 180 2 2700 2.99 2005-06-19T13:31:52Z 2020-02-15T06:59:50Z +4893 180 1 2798 2.99 2005-06-19T19:07:48Z 2020-02-15T06:59:50Z +4894 180 2 4826 7.99 2005-07-08T17:44:25Z 2020-02-15T06:59:50Z +4895 180 1 4924 9.99 2005-07-08T21:55:25Z 2020-02-15T06:59:50Z +4896 180 2 5384 0.99 2005-07-09T19:17:46Z 2020-02-15T06:59:50Z +4897 180 2 5773 0.99 2005-07-10T13:31:09Z 2020-02-15T06:59:50Z +4898 180 1 5860 3.99 2005-07-10T18:08:49Z 2020-02-15T06:59:50Z +4899 180 1 7274 2.99 2005-07-27T11:35:34Z 2020-02-15T06:59:50Z +4900 180 2 8540 2.99 2005-07-29T10:52:51Z 2020-02-15T06:59:50Z +4901 180 2 8720 5.99 2005-07-29T17:48:32Z 2020-02-15T06:59:50Z +4902 180 1 9373 0.99 2005-07-30T19:05:36Z 2020-02-15T06:59:50Z +4903 180 2 9995 3.99 2005-07-31T17:30:47Z 2020-02-15T06:59:50Z +4904 180 1 10576 5.99 2005-08-01T13:46:02Z 2020-02-15T06:59:50Z +4905 180 1 10992 8.99 2005-08-02T04:41:17Z 2020-02-15T06:59:50Z +4906 180 1 12313 8.99 2005-08-18T06:07:31Z 2020-02-15T06:59:50Z +4907 180 1 13283 2.99 2005-08-19T18:10:19Z 2020-02-15T06:59:50Z +4908 180 2 13842 4.99 2005-08-20T14:29:37Z 2020-02-15T06:59:50Z +4909 180 1 13994 2.99 2005-08-20T19:33:21Z 2020-02-15T06:59:50Z +4910 180 1 14109 0.99 2005-08-21T00:52:58Z 2020-02-15T06:59:50Z +4911 180 1 14851 2.99 2005-08-22T02:20:44Z 2020-02-15T06:59:50Z +4912 180 1 15039 4.99 2005-08-22T09:37:54Z 2020-02-15T06:59:50Z +4913 180 1 12901 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4914 181 2 579 6.99 2005-05-28T11:19:23Z 2020-02-15T06:59:50Z +4915 181 1 1638 2.99 2005-06-16T08:32:36Z 2020-02-15T06:59:50Z +4916 181 1 2645 5.99 2005-06-19T09:50:35Z 2020-02-15T06:59:50Z +4917 181 2 3449 5.99 2005-06-21T21:01:27Z 2020-02-15T06:59:50Z +4918 181 2 3469 4.99 2005-06-21T22:48:59Z 2020-02-15T06:59:50Z +4919 181 1 3862 6.99 2005-07-06T17:35:22Z 2020-02-15T06:59:50Z +4920 181 2 4428 4.99 2005-07-07T22:29:40Z 2020-02-15T06:59:50Z +4921 181 2 6477 4.99 2005-07-12T01:38:42Z 2020-02-15T06:59:50Z +4922 181 1 6946 8.99 2005-07-26T23:40:07Z 2020-02-15T06:59:50Z +4923 181 1 7393 0.99 2005-07-27T16:02:52Z 2020-02-15T06:59:50Z +4924 181 1 7632 4.99 2005-07-28T01:02:40Z 2020-02-15T06:59:50Z +4925 181 1 8593 5.99 2005-07-29T12:38:14Z 2020-02-15T06:59:50Z +4926 181 1 8601 9.99 2005-07-29T13:03:31Z 2020-02-15T06:59:50Z +4927 181 2 9214 4.99 2005-07-30T13:10:14Z 2020-02-15T06:59:50Z +4928 181 2 9235 5.99 2005-07-30T13:47:17Z 2020-02-15T06:59:50Z +4929 181 1 9357 8.99 2005-07-30T18:37:00Z 2020-02-15T06:59:50Z +4930 181 1 9844 4.99 2005-07-31T12:26:31Z 2020-02-15T06:59:50Z +4931 181 2 10262 4.99 2005-08-01T03:01:26Z 2020-02-15T06:59:50Z +4932 181 2 10362 6.99 2005-08-01T05:55:13Z 2020-02-15T06:59:50Z +4933 181 2 10703 2.99 2005-08-01T18:37:39Z 2020-02-15T06:59:50Z +4934 181 1 10748 4.99 2005-08-01T20:01:24Z 2020-02-15T06:59:50Z +4935 181 1 10773 6.99 2005-08-01T20:53:45Z 2020-02-15T06:59:50Z +4936 181 2 11224 4.99 2005-08-02T12:40:38Z 2020-02-15T06:59:50Z +4937 181 1 12363 7.99 2005-08-18T07:52:49Z 2020-02-15T06:59:50Z +4938 181 1 12411 0.99 2005-08-18T09:47:57Z 2020-02-15T06:59:50Z +4939 181 1 12678 2.99 2005-08-18T19:41:27Z 2020-02-15T06:59:50Z +4940 181 2 12939 2.99 2005-08-19T05:38:25Z 2020-02-15T06:59:50Z +4941 181 2 13118 4.99 2005-08-19T11:39:58Z 2020-02-15T06:59:50Z +4942 181 2 13405 4.99 2005-08-19T22:20:49Z 2020-02-15T06:59:50Z +4943 181 2 13415 2.99 2005-08-19T22:48:09Z 2020-02-15T06:59:50Z +4944 181 2 14406 3.99 2005-08-21T10:46:35Z 2020-02-15T06:59:50Z +4945 181 2 15196 2.99 2005-08-22T16:11:32Z 2020-02-15T06:59:50Z +4946 181 2 15482 4.99 2005-08-23T02:01:20Z 2020-02-15T06:59:50Z +4947 181 2 13008 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +4948 182 2 161 0.99 2005-05-26T01:51:48Z 2020-02-15T06:59:50Z +4949 182 2 425 3.99 2005-05-27T15:51:30Z 2020-02-15T06:59:50Z +4950 182 2 1542 3.99 2005-06-16T01:20:05Z 2020-02-15T06:59:50Z +4951 182 1 2049 2.99 2005-06-17T14:58:36Z 2020-02-15T06:59:50Z +4952 182 2 2120 5.99 2005-06-17T20:36:50Z 2020-02-15T06:59:50Z +4953 182 1 2234 0.99 2005-06-18T04:01:28Z 2020-02-15T06:59:50Z +4954 182 1 3509 2.99 2005-07-06T00:24:57Z 2020-02-15T06:59:50Z +4955 182 1 3697 6.99 2005-07-06T10:07:22Z 2020-02-15T06:59:50Z +4956 182 1 4174 2.99 2005-07-07T09:59:49Z 2020-02-15T06:59:50Z +4957 182 1 4349 0.99 2005-07-07T19:02:37Z 2020-02-15T06:59:50Z +4958 182 2 4513 1.99 2005-07-08T02:39:59Z 2020-02-15T06:59:50Z +4959 182 2 4591 3.99 2005-07-08T06:29:43Z 2020-02-15T06:59:50Z +4960 182 2 4784 0.99 2005-07-08T16:09:56Z 2020-02-15T06:59:50Z +4961 182 1 5521 2.99 2005-07-10T01:31:22Z 2020-02-15T06:59:50Z +4962 182 2 7229 0.99 2005-07-27T10:00:54Z 2020-02-15T06:59:50Z +4963 182 2 7863 0.99 2005-07-28T10:05:46Z 2020-02-15T06:59:50Z +4964 182 2 7880 4.99 2005-07-28T10:30:37Z 2020-02-15T06:59:50Z +4965 182 2 8048 8.99 2005-07-28T16:50:26Z 2020-02-15T06:59:50Z +4966 182 1 11055 4.99 2005-08-02T06:36:05Z 2020-02-15T06:59:50Z +4967 182 2 11785 3.99 2005-08-17T10:54:46Z 2020-02-15T06:59:50Z +4968 182 1 12573 4.99 2005-08-18T15:32:57Z 2020-02-15T06:59:50Z +4969 182 1 12840 6.99 2005-08-19T01:54:11Z 2020-02-15T06:59:50Z +4970 182 1 13285 2.99 2005-08-19T18:18:44Z 2020-02-15T06:59:50Z +4971 182 1 14586 5.99 2005-08-21T17:19:09Z 2020-02-15T06:59:50Z +4972 182 1 14953 6.99 2005-08-22T06:23:54Z 2020-02-15T06:59:50Z +4973 182 1 15043 1.99 2005-08-22T09:49:32Z 2020-02-15T06:59:50Z +4974 183 1 382 0.99 2005-05-27T10:12:00Z 2020-02-15T06:59:50Z +4975 183 1 1279 0.99 2005-06-15T08:13:57Z 2020-02-15T06:59:50Z +4976 183 2 2188 1.99 2005-06-18T01:19:04Z 2020-02-15T06:59:50Z +4977 183 2 2471 5.99 2005-06-18T20:31:00Z 2020-02-15T06:59:50Z +4978 183 1 3381 5.99 2005-06-21T14:02:59Z 2020-02-15T06:59:50Z +4979 183 1 3869 2.99 2005-07-06T17:56:46Z 2020-02-15T06:59:50Z +4980 183 2 4134 0.99 2005-07-07T08:14:24Z 2020-02-15T06:59:50Z +4981 183 2 4157 2.99 2005-07-07T09:04:26Z 2020-02-15T06:59:50Z +4982 183 1 5069 1.99 2005-07-09T04:56:30Z 2020-02-15T06:59:50Z +4983 183 2 5756 0.99 2005-07-10T12:39:28Z 2020-02-15T06:59:50Z +4984 183 1 6472 4.99 2005-07-12T01:33:25Z 2020-02-15T06:59:50Z +4985 183 1 6569 4.99 2005-07-12T05:47:40Z 2020-02-15T06:59:50Z +4986 183 2 7359 0.99 2005-07-27T14:51:04Z 2020-02-15T06:59:50Z +4987 183 2 9672 5.99 2005-07-31T06:34:06Z 2020-02-15T06:59:50Z +4988 183 1 9818 4.99 2005-07-31T11:34:32Z 2020-02-15T06:59:50Z +4989 183 2 9931 2.99 2005-07-31T15:18:19Z 2020-02-15T06:59:50Z +4990 183 2 10620 5.99 2005-08-01T15:09:17Z 2020-02-15T06:59:50Z +4991 183 2 11386 2.99 2005-08-02T18:24:03Z 2020-02-15T06:59:50Z +4992 183 2 12451 0.99 2005-08-18T11:04:42Z 2020-02-15T06:59:50Z +4993 183 2 12764 3.99 2005-08-18T23:14:15Z 2020-02-15T06:59:50Z +4994 183 2 12831 3.99 2005-08-19T01:40:43Z 2020-02-15T06:59:50Z +4995 183 1 13482 2.99 2005-08-20T01:14:30Z 2020-02-15T06:59:50Z +4996 183 1 13536 4.99 2005-08-20T03:35:16Z 2020-02-15T06:59:50Z +4997 184 1 196 2.99 2005-05-26T06:55:58Z 2020-02-15T06:59:50Z +4998 184 2 534 4.99 2005-05-28T06:15:25Z 2020-02-15T06:59:50Z +4999 184 1 567 1.99 2005-05-28T09:56:20Z 2020-02-15T06:59:50Z +5000 184 2 1976 2.99 2005-06-17T09:38:08Z 2020-02-15T06:59:50Z +5001 184 1 2312 0.99 2005-06-18T08:55:46Z 2020-02-15T06:59:50Z +5002 184 1 4314 0.99 2005-07-07T17:38:31Z 2020-02-15T06:59:50Z +5003 184 2 4882 6.99 2005-07-08T19:42:03Z 2020-02-15T06:59:50Z +5004 184 1 5891 0.99 2005-07-10T20:01:17Z 2020-02-15T06:59:50Z +5005 184 2 6493 2.99 2005-07-12T02:40:41Z 2020-02-15T06:59:50Z +5006 184 2 6700 6.99 2005-07-12T12:47:22Z 2020-02-15T06:59:50Z +5007 184 2 7051 4.99 2005-07-27T03:34:37Z 2020-02-15T06:59:50Z +5008 184 2 7686 6.99 2005-07-28T03:19:23Z 2020-02-15T06:59:50Z +5009 184 1 8892 4.99 2005-07-30T00:47:03Z 2020-02-15T06:59:50Z +5010 184 1 9162 0.99 2005-07-30T11:21:56Z 2020-02-15T06:59:50Z +5011 184 2 12166 9.99 2005-08-18T00:57:06Z 2020-02-15T06:59:50Z +5012 184 2 12454 2.99 2005-08-18T11:19:02Z 2020-02-15T06:59:50Z +5013 184 1 12532 2.99 2005-08-18T13:57:58Z 2020-02-15T06:59:50Z +5014 184 1 13134 0.99 2005-08-19T12:14:14Z 2020-02-15T06:59:50Z +5015 184 1 13262 5.99 2005-08-19T17:20:15Z 2020-02-15T06:59:50Z +5016 184 1 13303 4.99 2005-08-19T18:55:21Z 2020-02-15T06:59:50Z +5017 184 2 14472 4.99 2005-08-21T13:13:57Z 2020-02-15T06:59:50Z +5018 184 1 14801 5.99 2005-08-22T00:46:54Z 2020-02-15T06:59:50Z +5019 184 2 15611 0.99 2005-08-23T06:56:18Z 2020-02-15T06:59:50Z +5020 185 2 20 2.99 2005-05-25T01:48:41Z 2020-02-15T06:59:50Z +5021 185 2 154 0.99 2005-05-26T00:55:56Z 2020-02-15T06:59:50Z +5022 185 1 646 0.99 2005-05-28T19:16:14Z 2020-02-15T06:59:50Z +5023 185 1 2459 4.99 2005-06-18T19:44:08Z 2020-02-15T06:59:50Z +5024 185 1 3314 4.99 2005-06-21T08:17:00Z 2020-02-15T06:59:50Z +5025 185 1 3325 4.99 2005-06-21T08:51:44Z 2020-02-15T06:59:50Z +5026 185 1 4186 9.99 2005-07-07T10:32:25Z 2020-02-15T06:59:50Z +5027 185 1 4524 2.99 2005-07-08T03:10:48Z 2020-02-15T06:59:50Z +5028 185 2 4822 7.99 2005-07-08T17:28:47Z 2020-02-15T06:59:50Z +5029 185 2 6106 2.99 2005-07-11T07:05:06Z 2020-02-15T06:59:50Z +5030 185 1 6418 1.99 2005-07-11T23:36:27Z 2020-02-15T06:59:50Z +5031 185 1 6965 2.99 2005-07-27T00:15:18Z 2020-02-15T06:59:50Z +5032 185 1 7066 4.99 2005-07-27T03:53:52Z 2020-02-15T06:59:50Z +5033 185 1 8200 2.99 2005-07-28T23:10:46Z 2020-02-15T06:59:50Z +5034 185 2 8442 0.99 2005-07-29T07:33:07Z 2020-02-15T06:59:50Z +5035 185 1 8684 8.99 2005-07-29T16:16:33Z 2020-02-15T06:59:50Z +5036 185 2 9246 0.99 2005-07-30T14:12:31Z 2020-02-15T06:59:50Z +5037 185 2 9473 2.99 2005-07-30T23:04:13Z 2020-02-15T06:59:50Z +5038 185 2 11355 0.99 2005-08-02T17:37:43Z 2020-02-15T06:59:50Z +5039 185 1 12312 2.99 2005-08-18T06:07:26Z 2020-02-15T06:59:50Z +5040 185 1 12674 5.99 2005-08-18T19:24:56Z 2020-02-15T06:59:50Z +5041 185 1 12885 0.99 2005-08-19T03:37:25Z 2020-02-15T06:59:50Z +5042 185 2 14513 2.99 2005-08-21T14:51:35Z 2020-02-15T06:59:50Z +5043 186 1 581 1.99 2005-05-28T11:20:29Z 2020-02-15T06:59:50Z +5044 186 2 958 0.99 2005-05-30T17:58:03Z 2020-02-15T06:59:50Z +5045 186 1 1192 4.99 2005-06-15T01:18:39Z 2020-02-15T06:59:50Z +5046 186 1 1300 2.99 2005-06-15T09:36:19Z 2020-02-15T06:59:50Z +5047 186 1 1663 2.99 2005-06-16T10:14:15Z 2020-02-15T06:59:50Z +5048 186 2 2132 4.99 2005-06-17T21:05:06Z 2020-02-15T06:59:50Z +5049 186 2 2875 4.99 2005-06-20T00:47:18Z 2020-02-15T06:59:50Z +5050 186 1 3039 4.99 2005-06-20T12:32:30Z 2020-02-15T06:59:50Z +5051 186 2 6067 4.99 2005-07-11T04:34:49Z 2020-02-15T06:59:50Z +5052 186 2 7739 0.99 2005-07-28T05:21:51Z 2020-02-15T06:59:50Z +5053 186 1 7915 3.99 2005-07-28T11:49:46Z 2020-02-15T06:59:50Z +5054 186 1 8483 4.99 2005-07-29T08:50:18Z 2020-02-15T06:59:50Z +5055 186 2 8872 0.99 2005-07-30T00:13:54Z 2020-02-15T06:59:50Z +5056 186 2 9303 2.99 2005-07-30T16:35:59Z 2020-02-15T06:59:50Z +5057 186 2 9360 5.99 2005-07-30T18:39:43Z 2020-02-15T06:59:50Z +5058 186 1 10104 1.99 2005-07-31T20:49:14Z 2020-02-15T06:59:50Z +5059 186 1 10985 0.99 2005-08-02T04:30:19Z 2020-02-15T06:59:50Z +5060 186 1 11982 0.99 2005-08-17T18:13:07Z 2020-02-15T06:59:50Z +5061 186 1 12348 5.99 2005-08-18T07:21:47Z 2020-02-15T06:59:50Z +5062 186 1 12438 8.99 2005-08-18T10:42:52Z 2020-02-15T06:59:50Z +5063 186 1 13168 6.99 2005-08-19T13:37:28Z 2020-02-15T06:59:50Z +5064 186 2 13517 4.99 2005-08-20T02:33:17Z 2020-02-15T06:59:50Z +5065 186 1 13853 3.99 2005-08-20T14:47:02Z 2020-02-15T06:59:50Z +5066 186 1 14006 2.99 2005-08-20T20:21:36Z 2020-02-15T06:59:50Z +5067 186 2 14229 4.99 2005-08-21T04:57:15Z 2020-02-15T06:59:50Z +5068 186 2 14646 4.99 2005-08-21T19:14:48Z 2020-02-15T06:59:50Z +5069 186 2 14988 3.99 2005-08-22T07:46:05Z 2020-02-15T06:59:50Z +5070 186 2 15001 0.99 2005-08-22T08:00:49Z 2020-02-15T06:59:50Z +5071 186 2 15295 3.99 2005-08-22T19:36:21Z 2020-02-15T06:59:50Z +5072 186 1 15596 0.99 2005-08-23T06:19:51Z 2020-02-15T06:59:50Z +5073 186 1 14216 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5074 187 1 252 7.99 2005-05-26T14:39:53Z 2020-02-15T06:59:50Z +5075 187 2 1323 6.99 2005-06-15T10:55:17Z 2020-02-15T06:59:50Z +5076 187 2 1462 4.99 2005-06-15T20:37:40Z 2020-02-15T06:59:50Z +5077 187 2 1592 0.99 2005-06-16T05:14:37Z 2020-02-15T06:59:50Z +5078 187 2 2127 0.99 2005-06-17T20:54:48Z 2020-02-15T06:59:50Z +5079 187 2 2533 0.99 2005-06-19T01:34:26Z 2020-02-15T06:59:50Z +5080 187 1 2742 5.99 2005-06-19T16:05:47Z 2020-02-15T06:59:50Z +5081 187 1 3402 2.99 2005-06-21T15:54:37Z 2020-02-15T06:59:50Z +5082 187 2 3709 10.99 2005-07-06T10:26:56Z 2020-02-15T06:59:50Z +5083 187 1 4429 4.99 2005-07-07T22:32:47Z 2020-02-15T06:59:50Z +5084 187 2 5366 0.99 2005-07-09T18:28:37Z 2020-02-15T06:59:50Z +5085 187 1 5738 8.99 2005-07-10T11:50:51Z 2020-02-15T06:59:50Z +5086 187 2 5833 6.99 2005-07-10T16:39:24Z 2020-02-15T06:59:50Z +5087 187 1 6057 3.99 2005-07-11T04:03:40Z 2020-02-15T06:59:50Z +5088 187 2 6428 2.99 2005-07-12T00:01:51Z 2020-02-15T06:59:50Z +5089 187 2 7289 4.99 2005-07-27T12:26:51Z 2020-02-15T06:59:50Z +5090 187 2 7844 7.99 2005-07-28T09:16:19Z 2020-02-15T06:59:50Z +5091 187 2 7967 7.99 2005-07-28T13:56:51Z 2020-02-15T06:59:50Z +5092 187 1 9241 2.99 2005-07-30T13:58:41Z 2020-02-15T06:59:50Z +5093 187 1 11843 2.99 2005-08-17T13:14:50Z 2020-02-15T06:59:50Z +5094 187 2 12307 8.99 2005-08-18T05:48:23Z 2020-02-15T06:59:50Z +5095 187 2 12490 9.99 2005-08-18T12:48:45Z 2020-02-15T06:59:50Z +5096 187 1 12534 7.99 2005-08-18T14:04:41Z 2020-02-15T06:59:50Z +5097 187 2 13940 8.99 2005-08-20T17:28:57Z 2020-02-15T06:59:50Z +5098 187 2 14855 8.99 2005-08-22T02:27:32Z 2020-02-15T06:59:50Z +5099 187 2 15231 4.99 2005-08-22T17:32:57Z 2020-02-15T06:59:50Z +5100 187 2 15517 2.99 2005-08-23T03:13:01Z 2020-02-15T06:59:50Z +5101 187 2 15971 7.99 2005-08-23T19:59:33Z 2020-02-15T06:59:50Z +5102 188 2 1527 2.99 2005-06-16T00:31:40Z 2020-02-15T06:59:50Z +5103 188 2 1927 0.99 2005-06-17T06:48:19Z 2020-02-15T06:59:50Z +5104 188 1 2515 4.99 2005-06-18T23:57:31Z 2020-02-15T06:59:50Z +5105 188 2 2733 4.99 2005-06-19T15:21:53Z 2020-02-15T06:59:50Z +5106 188 2 3848 3.99 2005-07-06T16:47:32Z 2020-02-15T06:59:50Z +5107 188 2 4150 2.99 2005-07-07T08:43:22Z 2020-02-15T06:59:50Z +5108 188 2 5356 2.99 2005-07-09T18:08:28Z 2020-02-15T06:59:50Z +5109 188 2 5729 5.99 2005-07-10T11:27:25Z 2020-02-15T06:59:50Z +5110 188 2 6555 4.99 2005-07-12T05:08:16Z 2020-02-15T06:59:50Z +5111 188 2 7042 0.99 2005-07-27T03:20:18Z 2020-02-15T06:59:50Z +5112 188 1 7556 4.99 2005-07-27T22:17:17Z 2020-02-15T06:59:50Z +5113 188 2 9613 4.99 2005-07-31T03:58:53Z 2020-02-15T06:59:50Z +5114 188 2 10453 5.99 2005-08-01T09:13:27Z 2020-02-15T06:59:50Z +5115 188 1 10494 0.99 2005-08-01T10:45:21Z 2020-02-15T06:59:50Z +5116 188 2 10719 4.99 2005-08-01T19:00:28Z 2020-02-15T06:59:50Z +5117 188 2 10757 4.99 2005-08-01T20:22:44Z 2020-02-15T06:59:50Z +5118 188 2 11378 2.99 2005-08-02T18:16:52Z 2020-02-15T06:59:50Z +5119 188 1 13570 2.99 2005-08-20T05:04:57Z 2020-02-15T06:59:50Z +5120 188 1 13787 5.99 2005-08-20T12:15:23Z 2020-02-15T06:59:50Z +5121 188 1 14399 2.99 2005-08-21T10:33:23Z 2020-02-15T06:59:50Z +5122 188 2 14809 2.99 2005-08-22T01:00:42Z 2020-02-15T06:59:50Z +5123 188 2 15319 2.99 2005-08-22T20:17:17Z 2020-02-15T06:59:50Z +5124 188 2 15409 0.99 2005-08-22T23:26:32Z 2020-02-15T06:59:50Z +5125 188 2 15474 4.99 2005-08-23T01:39:10Z 2020-02-15T06:59:50Z +5126 188 1 14503 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5127 189 2 1117 5.99 2005-05-31T16:15:31Z 2020-02-15T06:59:50Z +5128 189 1 1541 0.99 2005-06-16T01:15:59Z 2020-02-15T06:59:50Z +5129 189 1 1834 0.99 2005-06-16T22:49:08Z 2020-02-15T06:59:50Z +5130 189 2 2905 1.99 2005-06-20T02:56:16Z 2020-02-15T06:59:50Z +5131 189 1 3108 6.99 2005-06-20T17:28:43Z 2020-02-15T06:59:50Z +5132 189 1 3346 2.99 2005-06-21T11:06:53Z 2020-02-15T06:59:50Z +5133 189 1 3763 0.99 2005-07-06T12:56:31Z 2020-02-15T06:59:50Z +5134 189 2 3813 4.99 2005-07-06T15:23:34Z 2020-02-15T06:59:50Z +5135 189 2 4203 0.99 2005-07-07T11:24:14Z 2020-02-15T06:59:50Z +5136 189 1 6193 5.99 2005-07-11T11:46:57Z 2020-02-15T06:59:50Z +5137 189 1 7469 4.99 2005-07-27T18:57:40Z 2020-02-15T06:59:50Z +5138 189 1 7675 4.99 2005-07-28T02:55:20Z 2020-02-15T06:59:50Z +5139 189 2 7790 2.99 2005-07-28T07:22:35Z 2020-02-15T06:59:50Z +5140 189 2 9171 5.99 2005-07-30T11:36:24Z 2020-02-15T06:59:50Z +5141 189 2 9386 0.99 2005-07-30T19:26:21Z 2020-02-15T06:59:50Z +5142 189 1 9506 4.99 2005-07-31T00:19:01Z 2020-02-15T06:59:50Z +5143 189 1 10247 9.99 2005-08-01T02:34:06Z 2020-02-15T06:59:50Z +5144 189 2 11059 6.99 2005-08-02T06:41:38Z 2020-02-15T06:59:50Z +5145 189 2 13601 6.99 2005-08-20T06:01:15Z 2020-02-15T06:59:50Z +5146 189 1 13766 3.99 2005-08-20T11:42:01Z 2020-02-15T06:59:50Z +5147 189 1 15773 1.99 2005-08-23T13:24:57Z 2020-02-15T06:59:50Z +5148 189 1 16008 5.99 2005-08-23T21:04:51Z 2020-02-15T06:59:50Z +5149 190 2 430 4.99 2005-05-27T16:22:10Z 2020-02-15T06:59:50Z +5150 190 1 693 2.99 2005-05-29T01:42:31Z 2020-02-15T06:59:50Z +5151 190 1 1319 2.99 2005-06-15T10:39:05Z 2020-02-15T06:59:50Z +5152 190 1 1347 2.99 2005-06-15T12:43:43Z 2020-02-15T06:59:50Z +5153 190 1 2057 4.99 2005-06-17T15:31:58Z 2020-02-15T06:59:50Z +5154 190 1 2568 3.99 2005-06-19T04:09:03Z 2020-02-15T06:59:50Z +5155 190 1 3386 4.99 2005-06-21T14:21:06Z 2020-02-15T06:59:50Z +5156 190 2 4005 5.99 2005-07-07T00:22:26Z 2020-02-15T06:59:50Z +5157 190 1 4140 2.99 2005-07-07T08:19:10Z 2020-02-15T06:59:50Z +5158 190 2 6867 3.99 2005-07-12T20:06:47Z 2020-02-15T06:59:50Z +5159 190 1 7175 4.99 2005-07-27T08:03:22Z 2020-02-15T06:59:50Z +5160 190 1 7386 5.99 2005-07-27T15:52:10Z 2020-02-15T06:59:50Z +5161 190 2 7404 2.99 2005-07-27T16:24:43Z 2020-02-15T06:59:50Z +5162 190 1 8498 0.99 2005-07-29T09:07:38Z 2020-02-15T06:59:50Z +5163 190 1 11082 5.99 2005-08-02T07:30:19Z 2020-02-15T06:59:50Z +5164 190 2 11158 6.99 2005-08-02T09:58:28Z 2020-02-15T06:59:50Z +5165 190 2 11276 4.99 2005-08-02T14:28:46Z 2020-02-15T06:59:50Z +5166 190 2 11312 6.99 2005-08-02T15:56:51Z 2020-02-15T06:59:50Z +5167 190 2 11750 0.99 2005-08-17T09:07:00Z 2020-02-15T06:59:50Z +5168 190 2 11950 9.99 2005-08-17T17:13:16Z 2020-02-15T06:59:50Z +5169 190 1 12270 2.99 2005-08-18T04:32:05Z 2020-02-15T06:59:50Z +5170 190 2 12381 0.99 2005-08-18T08:31:43Z 2020-02-15T06:59:50Z +5171 190 2 14065 0.99 2005-08-20T22:40:47Z 2020-02-15T06:59:50Z +5172 190 2 14141 4.99 2005-08-21T02:07:22Z 2020-02-15T06:59:50Z +5173 190 2 14166 2.99 2005-08-21T02:59:31Z 2020-02-15T06:59:50Z +5174 190 2 14650 0.99 2005-08-21T19:24:51Z 2020-02-15T06:59:50Z +5175 190 2 15167 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5176 191 1 1134 2.99 2005-05-31T19:14:15Z 2020-02-15T06:59:50Z +5177 191 2 1152 4.99 2005-05-31T21:32:17Z 2020-02-15T06:59:50Z +5178 191 2 1173 2.99 2005-06-14T23:54:46Z 2020-02-15T06:59:50Z +5179 191 1 1278 0.99 2005-06-15T08:09:12Z 2020-02-15T06:59:50Z +5180 191 1 1677 2.99 2005-06-16T11:07:11Z 2020-02-15T06:59:50Z +5181 191 2 1870 2.99 2005-06-17T02:24:36Z 2020-02-15T06:59:50Z +5182 191 1 2051 4.99 2005-06-17T15:10:16Z 2020-02-15T06:59:50Z +5183 191 2 2555 2.99 2005-06-19T03:07:02Z 2020-02-15T06:59:50Z +5184 191 1 5338 2.99 2005-07-09T17:07:07Z 2020-02-15T06:59:50Z +5185 191 2 5397 5.99 2005-07-09T19:43:51Z 2020-02-15T06:59:50Z +5186 191 1 5924 5.99 2005-07-10T21:41:23Z 2020-02-15T06:59:50Z +5187 191 1 7150 6.99 2005-07-27T07:11:14Z 2020-02-15T06:59:50Z +5188 191 1 7450 3.99 2005-07-27T18:18:35Z 2020-02-15T06:59:50Z +5189 191 1 7520 2.99 2005-07-27T21:02:02Z 2020-02-15T06:59:50Z +5190 191 2 8583 0.99 2005-07-29T12:04:50Z 2020-02-15T06:59:50Z +5191 191 1 9297 4.99 2005-07-30T16:26:29Z 2020-02-15T06:59:50Z +5192 191 1 9964 4.99 2005-07-31T16:17:39Z 2020-02-15T06:59:50Z +5193 191 2 10532 2.99 2005-08-01T12:06:35Z 2020-02-15T06:59:50Z +5194 191 2 15375 4.99 2005-08-22T22:12:02Z 2020-02-15T06:59:50Z +5195 191 1 14361 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5196 192 1 895 1.99 2005-05-30T08:50:43Z 2020-02-15T06:59:50Z +5197 192 1 2760 3.99 2005-06-19T17:16:33Z 2020-02-15T06:59:50Z +5198 192 1 3902 2.99 2005-07-06T19:25:18Z 2020-02-15T06:59:50Z +5199 192 1 4469 4.99 2005-07-08T00:18:32Z 2020-02-15T06:59:50Z +5200 192 1 5400 2.99 2005-07-09T19:56:40Z 2020-02-15T06:59:50Z +5201 192 2 6223 0.99 2005-07-11T13:27:09Z 2020-02-15T06:59:50Z +5202 192 2 6691 0.99 2005-07-12T12:26:38Z 2020-02-15T06:59:50Z +5203 192 2 7147 2.99 2005-07-27T07:02:34Z 2020-02-15T06:59:50Z +5204 192 2 8051 0.99 2005-07-28T16:56:16Z 2020-02-15T06:59:50Z +5205 192 2 8292 7.99 2005-07-29T02:29:36Z 2020-02-15T06:59:50Z +5206 192 1 9462 7.99 2005-07-30T22:30:44Z 2020-02-15T06:59:50Z +5207 192 1 9831 2.99 2005-07-31T11:59:32Z 2020-02-15T06:59:50Z +5208 192 2 10238 0.99 2005-08-01T02:08:05Z 2020-02-15T06:59:50Z +5209 192 1 10843 7.99 2005-08-01T23:43:03Z 2020-02-15T06:59:50Z +5210 192 1 11385 4.99 2005-08-02T18:23:11Z 2020-02-15T06:59:50Z +5211 192 1 11815 4.99 2005-08-17T12:13:26Z 2020-02-15T06:59:50Z +5212 192 1 13125 5.99 2005-08-19T11:57:49Z 2020-02-15T06:59:50Z +5213 192 2 14146 4.99 2005-08-21T02:13:31Z 2020-02-15T06:59:50Z +5214 192 2 14238 7.99 2005-08-21T05:16:40Z 2020-02-15T06:59:50Z +5215 192 1 14404 4.99 2005-08-21T10:43:04Z 2020-02-15T06:59:50Z +5216 192 2 14692 6.99 2005-08-21T20:43:21Z 2020-02-15T06:59:50Z +5217 192 2 15855 2.99 2005-08-23T15:59:01Z 2020-02-15T06:59:50Z +5218 192 1 11611 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5219 193 2 273 2.99 2005-05-26T16:29:36Z 2020-02-15T06:59:50Z +5220 193 2 464 0.99 2005-05-27T20:42:44Z 2020-02-15T06:59:50Z +5221 193 1 1325 4.99 2005-06-15T11:03:24Z 2020-02-15T06:59:50Z +5222 193 2 2377 6.99 2005-06-18T14:56:23Z 2020-02-15T06:59:50Z +5223 193 2 2841 6.99 2005-06-19T22:21:06Z 2020-02-15T06:59:50Z +5224 193 2 2846 4.99 2005-06-19T22:52:14Z 2020-02-15T06:59:50Z +5225 193 2 2880 2.99 2005-06-20T01:24:54Z 2020-02-15T06:59:50Z +5226 193 1 3297 8.99 2005-06-21T07:08:19Z 2020-02-15T06:59:50Z +5227 193 1 4892 6.99 2005-07-08T20:06:25Z 2020-02-15T06:59:50Z +5228 193 1 8211 2.99 2005-07-28T23:34:22Z 2020-02-15T06:59:50Z +5229 193 1 8379 4.99 2005-07-29T05:29:40Z 2020-02-15T06:59:50Z +5230 193 1 8431 4.99 2005-07-29T07:12:48Z 2020-02-15T06:59:50Z +5231 193 1 9079 2.99 2005-07-30T08:02:00Z 2020-02-15T06:59:50Z +5232 193 1 9575 4.99 2005-07-31T02:51:53Z 2020-02-15T06:59:50Z +5233 193 2 10462 2.99 2005-08-01T09:38:28Z 2020-02-15T06:59:50Z +5234 193 2 12384 0.99 2005-08-18T08:36:58Z 2020-02-15T06:59:50Z +5235 193 2 12658 4.99 2005-08-18T19:05:42Z 2020-02-15T06:59:50Z +5236 193 1 13529 2.99 2005-08-20T03:07:47Z 2020-02-15T06:59:50Z +5237 193 1 13608 0.99 2005-08-20T06:10:44Z 2020-02-15T06:59:50Z +5238 193 1 14679 2.99 2005-08-21T20:14:58Z 2020-02-15T06:59:50Z +5239 193 1 14927 4.99 2005-08-22T05:31:53Z 2020-02-15T06:59:50Z +5240 193 2 15164 4.99 2005-08-22T14:47:53Z 2020-02-15T06:59:50Z +5241 193 2 15344 6.99 2005-08-22T21:01:48Z 2020-02-15T06:59:50Z +5242 193 2 15495 5.99 2005-08-23T02:26:10Z 2020-02-15T06:59:50Z +5243 193 2 15729 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5244 194 2 334 4.99 2005-05-27T03:03:07Z 2020-02-15T06:59:50Z +5245 194 2 677 7.99 2005-05-28T23:00:08Z 2020-02-15T06:59:50Z +5246 194 1 1430 0.99 2005-06-15T18:24:55Z 2020-02-15T06:59:50Z +5247 194 1 2245 7.99 2005-06-18T04:52:59Z 2020-02-15T06:59:50Z +5248 194 1 2347 2.99 2005-06-18T12:12:29Z 2020-02-15T06:59:50Z +5249 194 1 2463 3.99 2005-06-18T20:01:43Z 2020-02-15T06:59:50Z +5250 194 1 2807 3.99 2005-06-19T19:32:53Z 2020-02-15T06:59:50Z +5251 194 2 4231 7.99 2005-07-07T12:48:19Z 2020-02-15T06:59:50Z +5252 194 2 5146 2.99 2005-07-09T08:14:58Z 2020-02-15T06:59:50Z +5253 194 1 5291 2.99 2005-07-09T15:15:02Z 2020-02-15T06:59:50Z +5254 194 2 5894 3.99 2005-07-10T20:09:34Z 2020-02-15T06:59:50Z +5255 194 1 9064 7.99 2005-07-30T07:24:55Z 2020-02-15T06:59:50Z +5256 194 2 11475 5.99 2005-08-02T21:55:09Z 2020-02-15T06:59:50Z +5257 194 2 12851 3.99 2005-08-19T02:12:12Z 2020-02-15T06:59:50Z +5258 194 1 13515 0.99 2005-08-20T02:29:47Z 2020-02-15T06:59:50Z +5259 194 2 13616 7.99 2005-08-20T06:30:33Z 2020-02-15T06:59:50Z +5260 194 1 14440 4.99 2005-08-21T11:59:04Z 2020-02-15T06:59:50Z +5261 194 2 15937 4.99 2005-08-23T18:43:22Z 2020-02-15T06:59:50Z +5262 195 1 4234 6.99 2005-07-07T13:01:35Z 2020-02-15T06:59:50Z +5263 195 1 4315 2.99 2005-07-07T17:40:26Z 2020-02-15T06:59:50Z +5264 195 1 5228 4.99 2005-07-09T12:26:01Z 2020-02-15T06:59:50Z +5265 195 1 5536 0.99 2005-07-10T02:29:42Z 2020-02-15T06:59:50Z +5266 195 2 6175 4.99 2005-07-11T10:44:37Z 2020-02-15T06:59:50Z +5267 195 1 7349 2.99 2005-07-27T14:33:00Z 2020-02-15T06:59:50Z +5268 195 2 8280 4.99 2005-07-29T01:45:51Z 2020-02-15T06:59:50Z +5269 195 2 8479 0.99 2005-07-29T08:42:04Z 2020-02-15T06:59:50Z +5270 195 2 9188 6.99 2005-07-30T12:19:54Z 2020-02-15T06:59:50Z +5271 195 1 9870 5.99 2005-07-31T13:22:51Z 2020-02-15T06:59:50Z +5272 195 1 9994 4.99 2005-07-31T17:30:31Z 2020-02-15T06:59:50Z +5273 195 2 10911 4.99 2005-08-02T01:58:36Z 2020-02-15T06:59:50Z +5274 195 1 11201 7.99 2005-08-02T11:49:16Z 2020-02-15T06:59:50Z +5275 195 2 11787 2.99 2005-08-17T10:59:00Z 2020-02-15T06:59:50Z +5276 195 2 12099 0.99 2005-08-17T22:38:54Z 2020-02-15T06:59:50Z +5277 195 2 12941 0.99 2005-08-19T05:39:26Z 2020-02-15T06:59:50Z +5278 195 2 13741 0.99 2005-08-20T10:48:47Z 2020-02-15T06:59:50Z +5279 195 2 14751 7.99 2005-08-21T23:11:23Z 2020-02-15T06:59:50Z +5280 195 2 16040 11.99 2005-08-23T22:19:33Z 2020-02-15T06:59:50Z +5281 196 2 106 11.99 2005-05-25T18:18:19Z 2020-02-15T06:59:50Z +5282 196 2 178 5.99 2005-05-26T04:21:46Z 2020-02-15T06:59:50Z +5283 196 2 491 2.99 2005-05-28T00:13:35Z 2020-02-15T06:59:50Z +5284 196 1 1053 1.99 2005-05-31T07:12:44Z 2020-02-15T06:59:50Z +5285 196 1 1182 5.99 2005-06-15T00:45:21Z 2020-02-15T06:59:50Z +5286 196 1 1348 2.99 2005-06-15T12:45:30Z 2020-02-15T06:59:50Z +5287 196 2 1600 0.99 2005-06-16T06:04:12Z 2020-02-15T06:59:50Z +5288 196 1 2681 0.99 2005-06-19T12:15:27Z 2020-02-15T06:59:50Z +5289 196 2 2912 4.99 2005-06-20T03:32:45Z 2020-02-15T06:59:50Z +5290 196 1 3104 4.99 2005-06-20T17:06:46Z 2020-02-15T06:59:50Z +5291 196 2 3271 5.99 2005-06-21T05:16:10Z 2020-02-15T06:59:50Z +5292 196 2 3342 4.99 2005-06-21T10:46:36Z 2020-02-15T06:59:50Z +5293 196 1 4879 2.99 2005-07-08T19:34:55Z 2020-02-15T06:59:50Z +5294 196 2 4999 4.99 2005-07-09T01:12:57Z 2020-02-15T06:59:50Z +5295 196 2 5143 4.99 2005-07-09T08:07:07Z 2020-02-15T06:59:50Z +5296 196 2 5353 3.99 2005-07-09T18:04:29Z 2020-02-15T06:59:50Z +5297 196 2 5768 4.99 2005-07-10T13:15:26Z 2020-02-15T06:59:50Z +5298 196 2 6857 4.99 2005-07-12T19:53:30Z 2020-02-15T06:59:50Z +5299 196 2 7666 3.99 2005-07-28T02:35:12Z 2020-02-15T06:59:50Z +5300 196 2 8266 0.99 2005-07-29T01:20:16Z 2020-02-15T06:59:50Z +5301 196 2 8472 1.99 2005-07-29T08:36:22Z 2020-02-15T06:59:50Z +5302 196 2 8700 0.99 2005-07-29T16:56:01Z 2020-02-15T06:59:50Z +5303 196 1 9346 5.99 2005-07-30T18:13:52Z 2020-02-15T06:59:50Z +5304 196 1 9721 6.99 2005-07-31T08:28:46Z 2020-02-15T06:59:50Z +5305 196 1 9804 4.99 2005-07-31T11:07:39Z 2020-02-15T06:59:50Z +5306 196 2 10122 10.99 2005-07-31T21:29:28Z 2020-02-15T06:59:50Z +5307 196 1 10191 4.99 2005-08-01T00:28:38Z 2020-02-15T06:59:50Z +5308 196 1 11104 2.99 2005-08-02T08:09:58Z 2020-02-15T06:59:50Z +5309 196 2 12430 0.99 2005-08-18T10:32:41Z 2020-02-15T06:59:50Z +5310 196 2 12684 0.99 2005-08-18T19:51:27Z 2020-02-15T06:59:50Z +5311 196 2 12836 0.99 2005-08-19T01:48:33Z 2020-02-15T06:59:50Z +5312 196 1 13799 8.99 2005-08-20T12:36:42Z 2020-02-15T06:59:50Z +5313 196 2 14410 5.99 2005-08-21T10:54:49Z 2020-02-15T06:59:50Z +5314 196 1 14698 5.99 2005-08-21T20:49:58Z 2020-02-15T06:59:50Z +5315 196 2 15980 0.99 2005-08-23T20:10:13Z 2020-02-15T06:59:50Z +5316 197 2 94 2.99 2005-05-25T16:03:42Z 2020-02-15T06:59:50Z +5317 197 1 215 0.99 2005-05-26T09:02:47Z 2020-02-15T06:59:50Z +5318 197 1 391 2.99 2005-05-27T11:03:55Z 2020-02-15T06:59:50Z +5319 197 2 649 1.99 2005-05-28T19:35:45Z 2020-02-15T06:59:50Z +5320 197 1 683 2.99 2005-05-29T00:09:48Z 2020-02-15T06:59:50Z +5321 197 2 730 3.99 2005-05-29T07:00:59Z 2020-02-15T06:59:50Z +5322 197 1 903 3.99 2005-05-30T10:11:29Z 2020-02-15T06:59:50Z +5323 197 1 918 0.99 2005-05-30T11:32:24Z 2020-02-15T06:59:50Z +5324 197 2 1175 2.99 2005-06-15T00:15:15Z 2020-02-15T06:59:50Z +5325 197 1 1363 0.99 2005-06-15T14:05:11Z 2020-02-15T06:59:50Z +5326 197 1 1503 2.99 2005-06-15T22:07:09Z 2020-02-15T06:59:50Z +5327 197 2 1605 8.99 2005-06-16T06:17:55Z 2020-02-15T06:59:50Z +5328 197 2 1919 4.99 2005-06-17T05:40:52Z 2020-02-15T06:59:50Z +5329 197 1 2090 2.99 2005-06-17T18:06:14Z 2020-02-15T06:59:50Z +5330 197 1 2750 4.99 2005-06-19T16:37:24Z 2020-02-15T06:59:50Z +5331 197 2 2781 2.99 2005-06-19T18:24:42Z 2020-02-15T06:59:50Z +5332 197 1 4486 8.99 2005-07-08T01:09:09Z 2020-02-15T06:59:50Z +5333 197 2 4739 4.99 2005-07-08T13:25:57Z 2020-02-15T06:59:50Z +5334 197 2 5182 6.99 2005-07-09T10:08:10Z 2020-02-15T06:59:50Z +5335 197 2 5344 0.99 2005-07-09T17:27:05Z 2020-02-15T06:59:50Z +5336 197 1 8165 2.99 2005-07-28T21:23:06Z 2020-02-15T06:59:50Z +5337 197 2 9378 4.99 2005-07-30T19:12:54Z 2020-02-15T06:59:50Z +5338 197 1 9476 0.99 2005-07-30T23:06:40Z 2020-02-15T06:59:50Z +5339 197 2 9585 4.99 2005-07-31T03:05:55Z 2020-02-15T06:59:50Z +5340 197 2 10460 3.99 2005-08-01T09:31:00Z 2020-02-15T06:59:50Z +5341 197 2 10666 0.99 2005-08-01T16:56:36Z 2020-02-15T06:59:50Z +5342 197 2 10739 4.99 2005-08-01T19:46:11Z 2020-02-15T06:59:50Z +5343 197 1 10743 2.99 2005-08-01T19:55:09Z 2020-02-15T06:59:50Z +5344 197 1 11018 4.99 2005-08-02T05:27:53Z 2020-02-15T06:59:50Z +5345 197 1 11215 4.99 2005-08-02T12:20:42Z 2020-02-15T06:59:50Z +5346 197 1 11311 4.99 2005-08-02T15:53:48Z 2020-02-15T06:59:50Z +5347 197 1 11478 2.99 2005-08-02T22:09:05Z 2020-02-15T06:59:50Z +5348 197 1 11643 1.99 2005-08-17T04:49:35Z 2020-02-15T06:59:50Z +5349 197 1 12799 0.99 2005-08-19T00:27:01Z 2020-02-15T06:59:50Z +5350 197 2 13913 3.99 2005-08-20T16:37:35Z 2020-02-15T06:59:50Z +5351 197 1 14069 9.99 2005-08-20T22:51:25Z 2020-02-15T06:59:50Z +5352 197 2 14951 4.99 2005-08-22T06:19:37Z 2020-02-15T06:59:50Z +5353 197 1 15078 2.99 2005-08-22T11:09:31Z 2020-02-15T06:59:50Z +5354 197 2 15233 0.99 2005-08-22T17:41:53Z 2020-02-15T06:59:50Z +5355 197 1 15540 8.99 2005-08-23T04:12:52Z 2020-02-15T06:59:50Z +5356 198 1 357 0.99 2005-05-27T06:37:15Z 2020-02-15T06:59:50Z +5357 198 1 582 4.99 2005-05-28T11:33:46Z 2020-02-15T06:59:50Z +5358 198 2 639 2.99 2005-05-28T18:25:02Z 2020-02-15T06:59:50Z +5359 198 1 932 2.99 2005-05-30T12:55:36Z 2020-02-15T06:59:50Z +5360 198 2 1132 4.99 2005-05-31T18:44:53Z 2020-02-15T06:59:50Z +5361 198 2 2185 0.99 2005-06-18T01:12:22Z 2020-02-15T06:59:50Z +5362 198 2 3770 2.99 2005-07-06T13:14:28Z 2020-02-15T06:59:50Z +5363 198 2 4588 2.99 2005-07-08T06:18:01Z 2020-02-15T06:59:50Z +5364 198 2 4750 0.99 2005-07-08T14:07:03Z 2020-02-15T06:59:50Z +5365 198 2 5794 4.99 2005-07-10T14:34:53Z 2020-02-15T06:59:50Z +5366 198 2 6567 4.99 2005-07-12T05:43:09Z 2020-02-15T06:59:50Z +5367 198 1 6819 4.99 2005-07-12T18:21:01Z 2020-02-15T06:59:50Z +5368 198 2 6889 4.99 2005-07-12T21:01:22Z 2020-02-15T06:59:50Z +5369 198 1 7287 0.99 2005-07-27T12:24:12Z 2020-02-15T06:59:50Z +5370 198 1 7441 5.99 2005-07-27T17:46:53Z 2020-02-15T06:59:50Z +5371 198 1 7583 2.99 2005-07-27T23:15:22Z 2020-02-15T06:59:50Z +5372 198 2 7622 0.99 2005-07-28T00:37:34Z 2020-02-15T06:59:50Z +5373 198 1 8145 5.99 2005-07-28T20:34:41Z 2020-02-15T06:59:50Z +5374 198 2 9389 0.99 2005-07-30T19:27:59Z 2020-02-15T06:59:50Z +5375 198 1 10112 4.99 2005-07-31T21:08:56Z 2020-02-15T06:59:50Z +5376 198 1 10147 2.99 2005-07-31T22:18:43Z 2020-02-15T06:59:50Z +5377 198 1 10679 0.99 2005-08-01T17:27:58Z 2020-02-15T06:59:50Z +5378 198 1 11351 3.99 2005-08-02T17:28:07Z 2020-02-15T06:59:50Z +5379 198 1 11594 6.99 2005-08-17T02:47:02Z 2020-02-15T06:59:50Z +5380 198 1 11756 2.99 2005-08-17T09:29:22Z 2020-02-15T06:59:50Z +5381 198 1 11836 4.99 2005-08-17T13:03:36Z 2020-02-15T06:59:50Z +5382 198 2 11949 2.99 2005-08-17T17:12:26Z 2020-02-15T06:59:50Z +5383 198 1 11957 1.99 2005-08-17T17:22:29Z 2020-02-15T06:59:50Z +5384 198 2 11985 2.99 2005-08-17T18:19:44Z 2020-02-15T06:59:50Z +5385 198 2 12594 4.99 2005-08-18T16:24:24Z 2020-02-15T06:59:50Z +5386 198 1 12862 5.99 2005-08-19T02:31:59Z 2020-02-15T06:59:50Z +5387 198 1 13768 5.99 2005-08-20T11:43:43Z 2020-02-15T06:59:50Z +5388 198 1 14214 5.99 2005-08-21T04:30:49Z 2020-02-15T06:59:50Z +5389 198 2 14380 2.99 2005-08-21T09:53:52Z 2020-02-15T06:59:50Z +5390 198 2 14990 4.99 2005-08-22T07:48:01Z 2020-02-15T06:59:50Z +5391 198 1 15256 6.99 2005-08-22T18:20:07Z 2020-02-15T06:59:50Z +5392 198 1 15433 4.99 2005-08-23T00:27:18Z 2020-02-15T06:59:50Z +5393 199 1 499 7.99 2005-05-28T01:05:07Z 2020-02-15T06:59:50Z +5394 199 1 1406 4.99 2005-06-15T16:44:00Z 2020-02-15T06:59:50Z +5395 199 1 1910 2.99 2005-06-17T05:11:27Z 2020-02-15T06:59:50Z +5396 199 1 3299 0.99 2005-06-21T07:23:34Z 2020-02-15T06:59:50Z +5397 199 1 4499 2.99 2005-07-08T02:08:48Z 2020-02-15T06:59:50Z +5398 199 2 4580 8.99 2005-07-08T06:04:23Z 2020-02-15T06:59:50Z +5399 199 1 4976 4.99 2005-07-09T00:03:30Z 2020-02-15T06:59:50Z +5400 199 2 5398 2.99 2005-07-09T19:44:58Z 2020-02-15T06:59:50Z +5401 199 2 5680 5.99 2005-07-10T08:47:36Z 2020-02-15T06:59:50Z +5402 199 2 6668 2.99 2005-07-12T11:37:45Z 2020-02-15T06:59:50Z +5403 199 2 6782 4.99 2005-07-12T16:23:25Z 2020-02-15T06:59:50Z +5404 199 1 7782 4.99 2005-07-28T07:13:40Z 2020-02-15T06:59:50Z +5405 199 1 8709 0.99 2005-07-29T17:25:54Z 2020-02-15T06:59:50Z +5406 199 1 9752 2.99 2005-07-31T09:22:02Z 2020-02-15T06:59:50Z +5407 199 2 9894 4.99 2005-07-31T14:07:44Z 2020-02-15T06:59:50Z +5408 199 1 9959 4.99 2005-07-31T16:04:22Z 2020-02-15T06:59:50Z +5409 199 1 10196 2.99 2005-08-01T00:34:51Z 2020-02-15T06:59:50Z +5410 199 2 10517 4.99 2005-08-01T11:41:57Z 2020-02-15T06:59:50Z +5411 199 1 10850 8.99 2005-08-01T23:53:45Z 2020-02-15T06:59:50Z +5412 199 1 11454 2.99 2005-08-02T21:04:39Z 2020-02-15T06:59:50Z +5413 199 1 12386 0.99 2005-08-18T08:45:57Z 2020-02-15T06:59:50Z +5414 199 2 14320 4.99 2005-08-21T08:04:40Z 2020-02-15T06:59:50Z +5415 199 2 15412 0.99 2005-08-22T23:37:11Z 2020-02-15T06:59:50Z +5416 199 2 15751 3.99 2005-08-23T12:41:07Z 2020-02-15T06:59:50Z +5417 199 2 13952 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5418 200 2 270 9.99 2005-05-26T16:20:56Z 2020-02-15T06:59:50Z +5419 200 2 1296 1.99 2005-06-15T09:23:59Z 2020-02-15T06:59:50Z +5420 200 2 1309 4.99 2005-06-15T10:10:49Z 2020-02-15T06:59:50Z +5421 200 2 1899 6.99 2005-06-17T04:29:15Z 2020-02-15T06:59:50Z +5422 200 1 2227 4.99 2005-06-18T03:43:23Z 2020-02-15T06:59:50Z +5423 200 2 2667 3.99 2005-06-19T11:28:46Z 2020-02-15T06:59:50Z +5424 200 2 2717 4.99 2005-06-19T14:46:10Z 2020-02-15T06:59:50Z +5425 200 1 3190 3.99 2005-06-20T23:27:15Z 2020-02-15T06:59:50Z +5426 200 1 3580 4.99 2005-07-06T03:48:44Z 2020-02-15T06:59:50Z +5427 200 1 5110 2.99 2005-07-09T06:57:25Z 2020-02-15T06:59:50Z +5428 200 1 6123 0.99 2005-07-11T08:02:27Z 2020-02-15T06:59:50Z +5429 200 2 6167 2.99 2005-07-11T10:21:21Z 2020-02-15T06:59:50Z +5430 200 1 6181 4.99 2005-07-11T11:10:11Z 2020-02-15T06:59:50Z +5431 200 1 6947 3.99 2005-07-26T23:42:03Z 2020-02-15T06:59:50Z +5432 200 1 7574 2.99 2005-07-27T22:53:00Z 2020-02-15T06:59:50Z +5433 200 2 8368 3.99 2005-07-29T05:15:41Z 2020-02-15T06:59:50Z +5434 200 2 8462 2.99 2005-07-29T08:15:42Z 2020-02-15T06:59:50Z +5435 200 1 9527 6.99 2005-07-31T01:02:24Z 2020-02-15T06:59:50Z +5436 200 1 10685 2.99 2005-08-01T17:49:38Z 2020-02-15T06:59:50Z +5437 200 1 11356 8.99 2005-08-02T17:42:40Z 2020-02-15T06:59:50Z +5438 200 1 13737 5.99 2005-08-20T10:41:50Z 2020-02-15T06:59:50Z +5439 200 1 14034 10.99 2005-08-20T21:31:52Z 2020-02-15T06:59:50Z +5440 200 2 14521 6.99 2005-08-21T15:01:32Z 2020-02-15T06:59:50Z +5441 200 2 15691 4.99 2005-08-23T09:53:54Z 2020-02-15T06:59:50Z +5442 200 2 15742 5.99 2005-08-23T12:11:37Z 2020-02-15T06:59:50Z +5443 200 1 15961 6.99 2005-08-23T19:35:42Z 2020-02-15T06:59:50Z +5444 200 2 11866 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5445 201 1 311 3.99 2005-05-26T22:51:37Z 2020-02-15T06:59:50Z +5446 201 1 670 6.99 2005-05-28T22:04:03Z 2020-02-15T06:59:50Z +5447 201 2 756 5.99 2005-05-29T10:28:45Z 2020-02-15T06:59:50Z +5448 201 1 2047 1.99 2005-06-17T14:40:58Z 2020-02-15T06:59:50Z +5449 201 1 2157 3.99 2005-06-17T23:30:52Z 2020-02-15T06:59:50Z +5450 201 2 2359 6.99 2005-06-18T13:04:42Z 2020-02-15T06:59:50Z +5451 201 1 3106 4.99 2005-06-20T17:18:06Z 2020-02-15T06:59:50Z +5452 201 1 3364 7.99 2005-06-21T12:37:46Z 2020-02-15T06:59:50Z +5453 201 2 3528 4.99 2005-07-06T01:13:27Z 2020-02-15T06:59:50Z +5454 201 2 3708 6.99 2005-07-06T10:23:27Z 2020-02-15T06:59:50Z +5455 201 1 7106 0.99 2005-07-27T05:21:24Z 2020-02-15T06:59:50Z +5456 201 2 7606 2.99 2005-07-28T00:02:15Z 2020-02-15T06:59:50Z +5457 201 2 9355 0.99 2005-07-30T18:35:25Z 2020-02-15T06:59:50Z +5458 201 2 10750 5.99 2005-08-01T20:06:00Z 2020-02-15T06:59:50Z +5459 201 2 10865 3.99 2005-08-02T00:22:46Z 2020-02-15T06:59:50Z +5460 201 1 10891 0.99 2005-08-02T01:09:55Z 2020-02-15T06:59:50Z +5461 201 2 11807 0.99 2005-08-17T11:51:15Z 2020-02-15T06:59:50Z +5462 201 2 13076 4.99 2005-08-19T10:10:26Z 2020-02-15T06:59:50Z +5463 201 2 13613 9.99 2005-08-20T06:23:53Z 2020-02-15T06:59:50Z +5464 201 2 13671 3.99 2005-08-20T08:27:03Z 2020-02-15T06:59:50Z +5465 201 2 13672 2.99 2005-08-20T08:27:27Z 2020-02-15T06:59:50Z +5466 201 2 14656 2.99 2005-08-21T19:39:28Z 2020-02-15T06:59:50Z +5467 201 1 14973 2.99 2005-08-22T06:59:28Z 2020-02-15T06:59:50Z +5468 201 1 15887 2.99 2005-08-23T16:54:09Z 2020-02-15T06:59:50Z +5469 201 2 15974 5.99 2005-08-23T20:06:04Z 2020-02-15T06:59:50Z +5470 202 1 1474 2.99 2005-06-15T20:55:42Z 2020-02-15T06:59:50Z +5471 202 1 1535 4.99 2005-06-16T00:52:04Z 2020-02-15T06:59:50Z +5472 202 1 3008 0.99 2005-06-20T10:23:25Z 2020-02-15T06:59:50Z +5473 202 2 3148 0.99 2005-06-20T20:27:18Z 2020-02-15T06:59:50Z +5474 202 1 3861 8.99 2005-07-06T17:24:49Z 2020-02-15T06:59:50Z +5475 202 2 4567 4.99 2005-07-08T05:20:04Z 2020-02-15T06:59:50Z +5476 202 2 5194 2.99 2005-07-09T10:31:34Z 2020-02-15T06:59:50Z +5477 202 1 5297 2.99 2005-07-09T15:32:29Z 2020-02-15T06:59:50Z +5478 202 2 5838 2.99 2005-07-10T17:04:56Z 2020-02-15T06:59:50Z +5479 202 1 7613 2.99 2005-07-28T00:13:58Z 2020-02-15T06:59:50Z +5480 202 1 8351 2.99 2005-07-29T04:50:53Z 2020-02-15T06:59:50Z +5481 202 1 8779 2.99 2005-07-29T20:15:00Z 2020-02-15T06:59:50Z +5482 202 1 8830 2.99 2005-07-29T22:34:35Z 2020-02-15T06:59:50Z +5483 202 2 8930 0.99 2005-07-30T02:28:38Z 2020-02-15T06:59:50Z +5484 202 2 9057 2.99 2005-07-30T07:14:18Z 2020-02-15T06:59:50Z +5485 202 2 9467 8.99 2005-07-30T22:45:34Z 2020-02-15T06:59:50Z +5486 202 2 9751 4.99 2005-07-31T09:20:50Z 2020-02-15T06:59:50Z +5487 202 1 10375 2.99 2005-08-01T06:26:22Z 2020-02-15T06:59:50Z +5488 202 1 11210 4.99 2005-08-02T12:15:54Z 2020-02-15T06:59:50Z +5489 202 2 11924 4.99 2005-08-17T16:22:05Z 2020-02-15T06:59:50Z +5490 202 2 12801 8.99 2005-08-19T00:27:19Z 2020-02-15T06:59:50Z +5491 202 1 13196 4.99 2005-08-19T14:40:32Z 2020-02-15T06:59:50Z +5492 202 1 13528 3.99 2005-08-20T03:03:31Z 2020-02-15T06:59:50Z +5493 202 1 14019 3.99 2005-08-20T20:59:15Z 2020-02-15T06:59:50Z +5494 202 1 15095 0.99 2005-08-22T11:41:35Z 2020-02-15T06:59:50Z +5495 202 2 15772 4.99 2005-08-23T13:22:56Z 2020-02-15T06:59:50Z +5496 203 1 314 0.99 2005-05-26T23:09:41Z 2020-02-15T06:59:50Z +5497 203 1 1217 4.99 2005-06-15T03:24:14Z 2020-02-15T06:59:50Z +5498 203 1 1715 2.99 2005-06-16T14:37:12Z 2020-02-15T06:59:50Z +5499 203 2 2939 7.99 2005-06-20T05:18:16Z 2020-02-15T06:59:50Z +5500 203 2 3406 2.99 2005-06-21T16:00:18Z 2020-02-15T06:59:50Z +5501 203 2 4136 2.99 2005-07-07T08:15:52Z 2020-02-15T06:59:50Z +5502 203 2 5579 5.99 2005-07-10T04:04:29Z 2020-02-15T06:59:50Z +5503 203 2 7787 6.99 2005-07-28T07:19:02Z 2020-02-15T06:59:50Z +5504 203 1 8039 0.99 2005-07-28T16:35:16Z 2020-02-15T06:59:50Z +5505 203 1 8463 4.99 2005-07-29T08:17:51Z 2020-02-15T06:59:50Z +5506 203 1 8792 7.99 2005-07-29T20:56:14Z 2020-02-15T06:59:50Z +5507 203 2 9015 10.99 2005-07-30T05:21:32Z 2020-02-15T06:59:50Z +5508 203 2 10700 3.99 2005-08-01T18:26:31Z 2020-02-15T06:59:50Z +5509 203 2 10805 2.99 2005-08-01T22:23:37Z 2020-02-15T06:59:50Z +5510 203 1 11712 2.99 2005-08-17T07:32:51Z 2020-02-15T06:59:50Z +5511 203 1 12519 0.99 2005-08-18T13:42:14Z 2020-02-15T06:59:50Z +5512 203 2 13841 4.99 2005-08-20T14:25:18Z 2020-02-15T06:59:50Z +5513 203 2 14505 5.99 2005-08-21T14:26:28Z 2020-02-15T06:59:50Z +5514 203 2 15798 2.99 2005-08-23T14:23:03Z 2020-02-15T06:59:50Z +5515 203 2 15991 2.99 2005-08-23T20:27:34Z 2020-02-15T06:59:50Z +5516 204 2 251 0.99 2005-05-26T14:35:40Z 2020-02-15T06:59:50Z +5517 204 2 399 4.99 2005-05-27T12:48:38Z 2020-02-15T06:59:50Z +5518 204 2 857 4.99 2005-05-30T02:01:23Z 2020-02-15T06:59:50Z +5519 204 1 1016 1.99 2005-05-31T02:49:43Z 2020-02-15T06:59:50Z +5520 204 1 1321 2.99 2005-06-15T10:49:17Z 2020-02-15T06:59:50Z +5521 204 1 1616 7.99 2005-06-16T07:04:52Z 2020-02-15T06:59:50Z +5522 204 1 1871 4.99 2005-06-17T02:25:12Z 2020-02-15T06:59:50Z +5523 204 2 1894 7.99 2005-06-17T04:18:48Z 2020-02-15T06:59:50Z +5524 204 2 2186 2.99 2005-06-18T01:15:27Z 2020-02-15T06:59:50Z +5525 204 2 2734 4.99 2005-06-19T15:36:27Z 2020-02-15T06:59:50Z +5526 204 1 4043 0.99 2005-07-07T03:09:50Z 2020-02-15T06:59:50Z +5527 204 1 4979 4.99 2005-07-09T00:24:34Z 2020-02-15T06:59:50Z +5528 204 2 5145 0.99 2005-07-09T08:13:25Z 2020-02-15T06:59:50Z +5529 204 1 5619 2.99 2005-07-10T05:29:33Z 2020-02-15T06:59:50Z +5530 204 2 6004 4.99 2005-07-11T01:34:25Z 2020-02-15T06:59:50Z +5531 204 2 6225 2.99 2005-07-11T13:45:14Z 2020-02-15T06:59:50Z +5532 204 2 6631 0.99 2005-07-12T09:31:43Z 2020-02-15T06:59:50Z +5533 204 1 6694 6.99 2005-07-12T12:39:23Z 2020-02-15T06:59:50Z +5534 204 2 6871 2.99 2005-07-12T20:13:49Z 2020-02-15T06:59:50Z +5535 204 1 7392 4.99 2005-07-27T16:01:05Z 2020-02-15T06:59:50Z +5536 204 2 9005 0.99 2005-07-30T05:04:58Z 2020-02-15T06:59:50Z +5537 204 1 9394 5.99 2005-07-30T20:06:24Z 2020-02-15T06:59:50Z +5538 204 2 9906 4.99 2005-07-31T14:38:12Z 2020-02-15T06:59:50Z +5539 204 2 10042 2.99 2005-07-31T19:01:25Z 2020-02-15T06:59:50Z +5540 204 2 10399 5.99 2005-08-01T07:13:39Z 2020-02-15T06:59:50Z +5541 204 1 11261 7.99 2005-08-02T13:54:26Z 2020-02-15T06:59:50Z +5542 204 2 11886 0.99 2005-08-17T14:58:51Z 2020-02-15T06:59:50Z +5543 204 1 12737 6.99 2005-08-18T22:11:37Z 2020-02-15T06:59:50Z +5544 204 1 13084 0.99 2005-08-19T10:27:25Z 2020-02-15T06:59:50Z +5545 204 1 13416 4.99 2005-08-19T22:48:48Z 2020-02-15T06:59:50Z +5546 204 2 13899 2.99 2005-08-20T16:05:11Z 2020-02-15T06:59:50Z +5547 204 2 14163 4.99 2005-08-21T02:56:52Z 2020-02-15T06:59:50Z +5548 204 1 14871 0.99 2005-08-22T03:23:24Z 2020-02-15T06:59:50Z +5549 204 1 15364 4.99 2005-08-22T21:41:41Z 2020-02-15T06:59:50Z +5550 204 2 15415 11.99 2005-08-22T23:48:56Z 2020-02-15T06:59:50Z +5551 205 1 1238 2.99 2005-06-15T04:49:08Z 2020-02-15T06:59:50Z +5552 205 1 1357 4.99 2005-06-15T13:26:23Z 2020-02-15T06:59:50Z +5553 205 1 1767 0.99 2005-06-16T18:01:36Z 2020-02-15T06:59:50Z +5554 205 2 2237 5.99 2005-06-18T04:17:44Z 2020-02-15T06:59:50Z +5555 205 1 3601 7.99 2005-07-06T05:20:25Z 2020-02-15T06:59:50Z +5556 205 2 4230 3.99 2005-07-07T12:46:47Z 2020-02-15T06:59:50Z +5557 205 2 4377 7.99 2005-07-07T20:28:57Z 2020-02-15T06:59:50Z +5558 205 1 4729 4.99 2005-07-08T12:59:40Z 2020-02-15T06:59:50Z +5559 205 1 7736 2.99 2005-07-28T05:12:04Z 2020-02-15T06:59:50Z +5560 205 2 7976 7.99 2005-07-28T14:13:24Z 2020-02-15T06:59:50Z +5561 205 2 8896 4.99 2005-07-30T00:51:21Z 2020-02-15T06:59:50Z +5562 205 2 10086 4.99 2005-07-31T20:14:08Z 2020-02-15T06:59:50Z +5563 205 1 13935 2.99 2005-08-20T17:20:49Z 2020-02-15T06:59:50Z +5564 205 1 14338 0.99 2005-08-21T08:36:03Z 2020-02-15T06:59:50Z +5565 205 2 14391 4.99 2005-08-21T10:16:27Z 2020-02-15T06:59:50Z +5566 205 1 14442 2.99 2005-08-21T12:00:21Z 2020-02-15T06:59:50Z +5567 205 2 14490 6.99 2005-08-21T13:54:15Z 2020-02-15T06:59:50Z +5568 205 2 15418 0.99 2005-08-22T23:54:14Z 2020-02-15T06:59:50Z +5569 206 2 1872 0.99 2005-06-17T02:27:03Z 2020-02-15T06:59:50Z +5570 206 2 2477 5.99 2005-06-18T20:58:46Z 2020-02-15T06:59:50Z +5571 206 2 3012 4.99 2005-06-20T10:43:13Z 2020-02-15T06:59:50Z +5572 206 1 3533 5.99 2005-07-06T01:26:44Z 2020-02-15T06:59:50Z +5573 206 2 3831 0.99 2005-07-06T16:06:35Z 2020-02-15T06:59:50Z +5574 206 1 3847 4.99 2005-07-06T16:44:41Z 2020-02-15T06:59:50Z +5575 206 2 4068 4.99 2005-07-07T04:34:38Z 2020-02-15T06:59:50Z +5576 206 2 4107 4.99 2005-07-07T06:36:32Z 2020-02-15T06:59:50Z +5577 206 2 4823 4.99 2005-07-08T17:28:54Z 2020-02-15T06:59:50Z +5578 206 1 6139 3.99 2005-07-11T08:39:33Z 2020-02-15T06:59:50Z +5579 206 1 6420 6.99 2005-07-11T23:38:49Z 2020-02-15T06:59:50Z +5580 206 1 7222 4.99 2005-07-27T09:38:43Z 2020-02-15T06:59:50Z +5581 206 2 7541 4.99 2005-07-27T21:40:05Z 2020-02-15T06:59:50Z +5582 206 1 8217 5.99 2005-07-28T23:44:13Z 2020-02-15T06:59:50Z +5583 206 1 8549 3.99 2005-07-29T11:12:13Z 2020-02-15T06:59:50Z +5584 206 2 9474 2.99 2005-07-30T23:05:44Z 2020-02-15T06:59:50Z +5585 206 2 10930 3.99 2005-08-02T02:38:07Z 2020-02-15T06:59:50Z +5586 206 1 11022 2.99 2005-08-02T05:35:03Z 2020-02-15T06:59:50Z +5587 206 2 11634 2.99 2005-08-17T04:31:49Z 2020-02-15T06:59:50Z +5588 206 1 13128 4.99 2005-08-19T12:04:16Z 2020-02-15T06:59:50Z +5589 206 2 13232 2.99 2005-08-19T16:13:32Z 2020-02-15T06:59:50Z +5590 206 2 13263 10.99 2005-08-19T17:26:55Z 2020-02-15T06:59:50Z +5591 206 2 13550 9.99 2005-08-20T03:58:51Z 2020-02-15T06:59:50Z +5592 206 2 13696 0.99 2005-08-20T09:16:15Z 2020-02-15T06:59:50Z +5593 206 2 14695 0.99 2005-08-21T20:46:47Z 2020-02-15T06:59:50Z +5594 206 2 15686 7.99 2005-08-23T09:42:21Z 2020-02-15T06:59:50Z +5595 206 1 15709 4.99 2005-08-23T10:36:00Z 2020-02-15T06:59:50Z +5596 207 1 39 0.99 2005-05-25T04:51:46Z 2020-02-15T06:59:50Z +5597 207 1 44 0.99 2005-05-25T05:53:23Z 2020-02-15T06:59:50Z +5598 207 1 659 0.99 2005-05-28T20:27:53Z 2020-02-15T06:59:50Z +5599 207 2 826 6.99 2005-05-29T21:56:15Z 2020-02-15T06:59:50Z +5600 207 2 896 3.99 2005-05-30T09:03:52Z 2020-02-15T06:59:50Z +5601 207 2 1144 3.99 2005-05-31T20:04:10Z 2020-02-15T06:59:50Z +5602 207 2 1945 3.99 2005-06-17T07:51:26Z 2020-02-15T06:59:50Z +5603 207 2 3584 2.99 2005-07-06T04:16:43Z 2020-02-15T06:59:50Z +5604 207 2 3687 9.99 2005-07-06T09:38:33Z 2020-02-15T06:59:50Z +5605 207 1 4018 2.99 2005-07-07T01:10:33Z 2020-02-15T06:59:50Z +5606 207 2 4713 5.99 2005-07-08T12:12:33Z 2020-02-15T06:59:50Z +5607 207 1 4816 0.99 2005-07-08T17:14:14Z 2020-02-15T06:59:50Z +5608 207 2 5007 0.99 2005-07-09T01:26:22Z 2020-02-15T06:59:50Z +5609 207 1 5258 0.99 2005-07-09T13:56:56Z 2020-02-15T06:59:50Z +5610 207 1 5259 4.99 2005-07-09T14:02:50Z 2020-02-15T06:59:50Z +5611 207 2 5939 0.99 2005-07-10T22:30:05Z 2020-02-15T06:59:50Z +5612 207 2 6465 5.99 2005-07-12T01:17:11Z 2020-02-15T06:59:50Z +5613 207 1 6537 0.99 2005-07-12T04:46:30Z 2020-02-15T06:59:50Z +5614 207 2 7306 5.99 2005-07-27T12:57:26Z 2020-02-15T06:59:50Z +5615 207 1 7540 5.99 2005-07-27T21:39:55Z 2020-02-15T06:59:50Z +5616 207 1 8800 5.99 2005-07-29T21:18:59Z 2020-02-15T06:59:50Z +5617 207 2 9652 2.99 2005-07-31T05:49:53Z 2020-02-15T06:59:50Z +5618 207 2 10234 3.99 2005-08-01T01:56:20Z 2020-02-15T06:59:50Z +5619 207 2 10300 0.99 2005-08-01T04:08:11Z 2020-02-15T06:59:50Z +5620 207 1 11112 2.99 2005-08-02T08:25:14Z 2020-02-15T06:59:50Z +5621 207 2 11260 0.99 2005-08-02T13:52:19Z 2020-02-15T06:59:50Z +5622 207 2 11286 5.99 2005-08-02T14:44:22Z 2020-02-15T06:59:50Z +5623 207 1 11724 6.99 2005-08-17T08:04:44Z 2020-02-15T06:59:50Z +5624 207 2 12108 6.99 2005-08-17T22:56:39Z 2020-02-15T06:59:50Z +5625 207 2 13655 2.99 2005-08-20T07:59:13Z 2020-02-15T06:59:50Z +5626 207 2 13809 8.99 2005-08-20T12:56:03Z 2020-02-15T06:59:50Z +5627 207 2 13912 9.99 2005-08-20T16:32:10Z 2020-02-15T06:59:50Z +5628 207 2 13954 3.99 2005-08-20T18:02:41Z 2020-02-15T06:59:50Z +5629 207 1 15625 1.99 2005-08-23T07:25:29Z 2020-02-15T06:59:50Z +5630 208 1 100 4.99 2005-05-25T16:50:28Z 2020-02-15T06:59:50Z +5631 208 1 1805 0.99 2005-06-16T20:36:00Z 2020-02-15T06:59:50Z +5632 208 1 1949 5.99 2005-06-17T08:19:22Z 2020-02-15T06:59:50Z +5633 208 2 2592 0.99 2005-06-19T05:36:54Z 2020-02-15T06:59:50Z +5634 208 1 2695 2.99 2005-06-19T13:25:53Z 2020-02-15T06:59:50Z +5635 208 2 2907 0.99 2005-06-20T03:15:09Z 2020-02-15T06:59:50Z +5636 208 2 3811 2.99 2005-07-06T15:20:37Z 2020-02-15T06:59:50Z +5637 208 1 4354 5.99 2005-07-07T19:21:02Z 2020-02-15T06:59:50Z +5638 208 2 4985 4.99 2005-07-09T00:36:02Z 2020-02-15T06:59:50Z +5639 208 1 5117 2.99 2005-07-09T07:11:22Z 2020-02-15T06:59:50Z +5640 208 2 5693 2.99 2005-07-10T09:35:43Z 2020-02-15T06:59:50Z +5641 208 2 6306 6.99 2005-07-11T18:04:26Z 2020-02-15T06:59:50Z +5642 208 1 6767 1.99 2005-07-12T15:46:55Z 2020-02-15T06:59:50Z +5643 208 1 7315 0.99 2005-07-27T13:14:56Z 2020-02-15T06:59:50Z +5644 208 1 7861 2.99 2005-07-28T10:02:01Z 2020-02-15T06:59:50Z +5645 208 2 7984 2.99 2005-07-28T14:27:51Z 2020-02-15T06:59:50Z +5646 208 1 8742 1.99 2005-07-29T18:56:12Z 2020-02-15T06:59:50Z +5647 208 2 9298 3.99 2005-07-30T16:27:53Z 2020-02-15T06:59:50Z +5648 208 1 9838 4.99 2005-07-31T12:18:49Z 2020-02-15T06:59:50Z +5649 208 2 10762 4.99 2005-08-01T20:28:39Z 2020-02-15T06:59:50Z +5650 208 2 10784 5.99 2005-08-01T21:24:28Z 2020-02-15T06:59:50Z +5651 208 2 11442 2.99 2005-08-02T20:26:19Z 2020-02-15T06:59:50Z +5652 208 2 11805 6.99 2005-08-17T11:48:47Z 2020-02-15T06:59:50Z +5653 208 2 11819 0.99 2005-08-17T12:25:17Z 2020-02-15T06:59:50Z +5654 208 1 13719 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5655 208 1 15717 0 2006-02-14T15:16:03Z 2020-02-15T06:59:50Z +5656 209 2 340 9.99 2005-05-27T03:55:25Z 2020-02-15T06:59:50Z +5657 209 1 471 0.99 2005-05-27T21:32:42Z 2020-02-15T06:59:50Z +5658 209 2 1143 2.99 2005-05-31T19:53:03Z 2020-02-15T06:59:50Z +5659 209 2 1201 4.99 2005-06-15T02:06:28Z 2020-02-15T06:59:50Z +5660 209 1 1657 4.99 2005-06-16T10:06:49Z 2020-02-15T06:59:50Z +5661 209 1 2650 4.99 2005-06-19T10:21:45Z 2020-02-15T06:59:50Z +5662 209 1 2796 4.99 2005-06-19T19:00:37Z 2020-02-15T06:59:50Z +5663 209 2 3504 2.99 2005-07-06T00:18:29Z 2020-02-15T06:59:50Z +5664 209 2 4071 5.99 2005-07-07T04:37:26Z 2020-02-15T06:59:50Z +5665 209 1 4309 5.99 2005-07-07T17:29:41Z 2020-02-15T06:59:50Z +5666 209 2 4810 4.99 2005-07-08T17:04:06Z 2020-02-15T06:59:50Z +5667 209 1 4907 4.99 2005-07-08T21:01:41Z 2020-02-15T06:59:50Z +5668 209 2 5170 3.99 2005-07-09T09:24:19Z 2020-02-15T06:59:50Z +5669 209 2 5219 5.99 2005-07-09T11:57:55Z 2020-02-15T06:59:50Z +5670 209 1 6210 0.99 2005-07-11T12:36:43Z 2020-02-15T06:59:50Z +5671 209 1 7116 6.99 2005-07-27T05:46:43Z 2020-02-15T06:59:50Z +5672 209 1 7269 3.99 2005-07-27T11:23:47Z 2020-02-15T06:59:50Z +5673 209 1 7505 4.99 2005-07-27T20:28:03Z 2020-02-15T06:59:50Z +5674 209 2 7752 5.99 2005-07-28T06:01:00Z 2020-02-15T06:59:50Z +5675 209 1 8067 4.99 2005-07-28T17:20:17Z 2020-02-15T06:59:50Z +5676 209 2 8759 8.99 2005-07-29T19:22:37Z 2020-02-15T06:59:51Z +5677 209 2 8816 2.99 2005-07-29T21:53:00Z 2020-02-15T06:59:51Z +5678 209 2 9054 6.99 2005-07-30T07:11:44Z 2020-02-15T06:59:51Z +5679 209 1 9923 0.99 2005-07-31T15:00:15Z 2020-02-15T06:59:51Z +5680 209 2 10554 2.99 2005-08-01T12:56:19Z 2020-02-15T06:59:51Z +5681 209 1 10646 4.99 2005-08-01T15:57:55Z 2020-02-15T06:59:51Z +5682 209 2 10811 6.99 2005-08-01T22:41:15Z 2020-02-15T06:59:51Z +5683 209 1 12025 0.99 2005-08-17T19:59:06Z 2020-02-15T06:59:51Z +5684 209 1 13796 8.99 2005-08-20T12:32:32Z 2020-02-15T06:59:51Z +5685 209 2 14631 6.99 2005-08-21T18:47:49Z 2020-02-15T06:59:51Z +5686 209 1 15254 2.99 2005-08-22T18:13:07Z 2020-02-15T06:59:51Z +5687 209 2 15510 9.99 2005-08-23T02:51:27Z 2020-02-15T06:59:51Z +5688 210 1 953 2.99 2005-05-30T16:34:02Z 2020-02-15T06:59:51Z +5689 210 2 1177 2.99 2005-06-15T00:33:04Z 2020-02-15T06:59:51Z +5690 210 2 2856 0.99 2005-06-19T23:13:04Z 2020-02-15T06:59:51Z +5691 210 2 3563 4.99 2005-07-06T02:57:01Z 2020-02-15T06:59:51Z +5692 210 2 3884 4.99 2005-07-06T18:41:33Z 2020-02-15T06:59:51Z +5693 210 2 4270 0.99 2005-07-07T14:38:41Z 2020-02-15T06:59:51Z +5694 210 1 4306 2.99 2005-07-07T17:12:32Z 2020-02-15T06:59:51Z +5695 210 1 4334 0.99 2005-07-07T18:32:04Z 2020-02-15T06:59:51Z +5696 210 2 4388 7.99 2005-07-07T20:58:03Z 2020-02-15T06:59:51Z +5697 210 1 4620 5.99 2005-07-08T08:01:44Z 2020-02-15T06:59:51Z +5698 210 1 4871 6.99 2005-07-08T19:19:52Z 2020-02-15T06:59:51Z +5699 210 1 4893 4.99 2005-07-08T20:19:55Z 2020-02-15T06:59:51Z +5700 210 1 4989 3.99 2005-07-09T00:46:56Z 2020-02-15T06:59:51Z +5701 210 2 5957 0.99 2005-07-10T23:24:02Z 2020-02-15T06:59:51Z +5702 210 2 6227 4.99 2005-07-11T13:56:46Z 2020-02-15T06:59:51Z +5703 210 1 6564 1.99 2005-07-12T05:34:44Z 2020-02-15T06:59:51Z +5704 210 1 7743 5.99 2005-07-28T05:36:13Z 2020-02-15T06:59:51Z +5705 210 2 7909 0.99 2005-07-28T11:38:08Z 2020-02-15T06:59:51Z +5706 210 2 8336 8.99 2005-07-29T04:20:42Z 2020-02-15T06:59:51Z +5707 210 2 8678 3.99 2005-07-29T16:04:00Z 2020-02-15T06:59:51Z +5708 210 2 8738 0.99 2005-07-29T18:32:47Z 2020-02-15T06:59:51Z +5709 210 2 10890 4.99 2005-08-02T00:58:46Z 2020-02-15T06:59:51Z +5710 210 2 12410 8.99 2005-08-18T09:45:33Z 2020-02-15T06:59:51Z +5711 210 1 12879 4.99 2005-08-19T03:22:55Z 2020-02-15T06:59:51Z +5712 210 2 12909 2.99 2005-08-19T04:20:25Z 2020-02-15T06:59:51Z +5713 210 2 12986 4.99 2005-08-19T07:09:36Z 2020-02-15T06:59:51Z +5714 210 1 14181 7.99 2005-08-21T03:16:30Z 2020-02-15T06:59:51Z +5715 210 2 14639 6.99 2005-08-21T19:01:39Z 2020-02-15T06:59:51Z +5716 210 2 14876 4.99 2005-08-22T03:39:29Z 2020-02-15T06:59:51Z +5717 210 2 15672 0.99 2005-08-23T09:09:18Z 2020-02-15T06:59:51Z +5718 210 2 15942 8.99 2005-08-23T18:48:40Z 2020-02-15T06:59:51Z +5719 211 1 238 4.99 2005-05-26T12:30:22Z 2020-02-15T06:59:51Z +5720 211 2 2812 8.99 2005-06-19T19:58:16Z 2020-02-15T06:59:51Z +5721 211 2 3437 6.99 2005-06-21T19:20:17Z 2020-02-15T06:59:51Z +5722 211 2 3937 8.99 2005-07-06T21:15:38Z 2020-02-15T06:59:51Z +5723 211 2 4060 2.99 2005-07-07T04:10:13Z 2020-02-15T06:59:51Z +5724 211 2 4441 5.99 2005-07-07T23:04:23Z 2020-02-15T06:59:51Z +5725 211 2 4479 2.99 2005-07-08T00:52:35Z 2020-02-15T06:59:51Z +5726 211 1 4857 2.99 2005-07-08T18:52:07Z 2020-02-15T06:59:51Z +5727 211 1 5668 5.99 2005-07-10T08:11:05Z 2020-02-15T06:59:51Z +5728 211 2 5699 3.99 2005-07-10T09:48:04Z 2020-02-15T06:59:51Z +5729 211 2 5785 4.99 2005-07-10T14:06:03Z 2020-02-15T06:59:51Z +5730 211 2 6438 0.99 2005-07-12T00:23:01Z 2020-02-15T06:59:51Z +5731 211 1 6628 4.99 2005-07-12T09:18:08Z 2020-02-15T06:59:51Z +5732 211 1 6722 1.99 2005-07-12T13:44:03Z 2020-02-15T06:59:51Z +5733 211 2 7484 0.99 2005-07-27T19:28:17Z 2020-02-15T06:59:51Z +5734 211 1 7975 2.99 2005-07-28T14:12:47Z 2020-02-15T06:59:51Z +5735 211 2 8961 6.99 2005-07-30T03:43:35Z 2020-02-15T06:59:51Z +5736 211 1 9111 3.99 2005-07-30T09:05:44Z 2020-02-15T06:59:51Z +5737 211 1 9953 0.99 2005-07-31T15:56:35Z 2020-02-15T06:59:51Z +5738 211 1 10445 2.99 2005-08-01T09:02:15Z 2020-02-15T06:59:51Z +5739 211 2 10928 4.99 2005-08-02T02:34:12Z 2020-02-15T06:59:51Z +5740 211 2 11076 8.99 2005-08-02T07:24:47Z 2020-02-15T06:59:51Z +5741 211 2 11963 3.99 2005-08-17T17:35:47Z 2020-02-15T06:59:51Z +5742 211 2 12311 0.99 2005-08-18T06:07:00Z 2020-02-15T06:59:51Z +5743 211 2 12565 4.99 2005-08-18T15:12:17Z 2020-02-15T06:59:51Z +5744 211 2 12570 5.99 2005-08-18T15:23:31Z 2020-02-15T06:59:51Z +5745 211 2 13942 2.99 2005-08-20T17:30:52Z 2020-02-15T06:59:51Z +5746 211 1 13979 2.99 2005-08-20T19:03:49Z 2020-02-15T06:59:51Z +5747 211 2 14782 0.99 2005-08-22T00:17:20Z 2020-02-15T06:59:51Z +5748 211 2 14812 1.99 2005-08-22T01:10:32Z 2020-02-15T06:59:51Z +5749 211 1 15404 7.99 2005-08-22T23:19:44Z 2020-02-15T06:59:51Z +5750 211 2 15538 6.99 2005-08-23T04:07:37Z 2020-02-15T06:59:51Z +5751 211 2 15670 5.99 2005-08-23T09:07:11Z 2020-02-15T06:59:51Z +5752 211 2 12746 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5753 212 1 1356 0.99 2005-06-15T13:17:01Z 2020-02-15T06:59:51Z +5754 212 2 1379 0.99 2005-06-15T15:05:10Z 2020-02-15T06:59:51Z +5755 212 1 1637 2.99 2005-06-16T08:29:58Z 2020-02-15T06:59:51Z +5756 212 2 2739 9.99 2005-06-19T15:58:38Z 2020-02-15T06:59:51Z +5757 212 2 4708 10.99 2005-07-08T11:59:19Z 2020-02-15T06:59:51Z +5758 212 2 4798 3.99 2005-07-08T16:45:16Z 2020-02-15T06:59:51Z +5759 212 2 4916 6.99 2005-07-08T21:32:17Z 2020-02-15T06:59:51Z +5760 212 1 5115 6.99 2005-07-09T07:07:18Z 2020-02-15T06:59:51Z +5761 212 2 7828 2.99 2005-07-28T08:40:46Z 2020-02-15T06:59:51Z +5762 212 2 8000 4.99 2005-07-28T15:10:25Z 2020-02-15T06:59:51Z +5763 212 1 8940 3.99 2005-07-30T02:57:26Z 2020-02-15T06:59:51Z +5764 212 2 10273 4.99 2005-08-01T03:14:47Z 2020-02-15T06:59:51Z +5765 212 2 10567 0.99 2005-08-01T13:16:01Z 2020-02-15T06:59:51Z +5766 212 1 12156 7.99 2005-08-18T00:27:33Z 2020-02-15T06:59:51Z +5767 212 2 12467 0.99 2005-08-18T11:40:09Z 2020-02-15T06:59:51Z +5768 212 2 12562 3.99 2005-08-18T15:00:03Z 2020-02-15T06:59:51Z +5769 212 1 14563 2.99 2005-08-21T16:23:53Z 2020-02-15T06:59:51Z +5770 212 2 14681 5.99 2005-08-21T20:25:13Z 2020-02-15T06:59:51Z +5771 212 1 15872 4.99 2005-08-23T16:27:24Z 2020-02-15T06:59:51Z +5772 212 2 15920 2.99 2005-08-23T18:05:10Z 2020-02-15T06:59:51Z +5773 213 2 385 0.99 2005-05-27T10:23:25Z 2020-02-15T06:59:51Z +5774 213 1 1489 0.99 2005-06-15T21:41:38Z 2020-02-15T06:59:51Z +5775 213 2 1936 4.99 2005-06-17T07:15:41Z 2020-02-15T06:59:51Z +5776 213 1 2322 5.99 2005-06-18T09:44:21Z 2020-02-15T06:59:51Z +5777 213 1 2509 0.99 2005-06-18T23:44:08Z 2020-02-15T06:59:51Z +5778 213 2 2569 6.99 2005-06-19T04:19:04Z 2020-02-15T06:59:51Z +5779 213 1 2889 4.99 2005-06-20T01:54:08Z 2020-02-15T06:59:51Z +5780 213 2 2946 4.99 2005-06-20T05:50:40Z 2020-02-15T06:59:51Z +5781 213 1 3252 2.99 2005-06-21T03:25:26Z 2020-02-15T06:59:51Z +5782 213 1 3313 2.99 2005-06-21T08:11:18Z 2020-02-15T06:59:51Z +5783 213 2 3989 4.99 2005-07-06T23:30:54Z 2020-02-15T06:59:51Z +5784 213 2 4236 4.99 2005-07-07T13:12:07Z 2020-02-15T06:59:51Z +5785 213 1 4655 8.99 2005-07-08T09:49:22Z 2020-02-15T06:59:51Z +5786 213 2 5159 4.99 2005-07-09T08:55:52Z 2020-02-15T06:59:51Z +5787 213 1 5431 0.99 2005-07-09T21:21:11Z 2020-02-15T06:59:51Z +5788 213 2 6725 2.99 2005-07-12T13:47:17Z 2020-02-15T06:59:51Z +5789 213 2 7528 0.99 2005-07-27T21:15:25Z 2020-02-15T06:59:51Z +5790 213 2 8444 2.99 2005-07-29T07:36:13Z 2020-02-15T06:59:51Z +5791 213 2 8542 4.99 2005-07-29T11:01:50Z 2020-02-15T06:59:51Z +5792 213 2 9150 6.99 2005-07-30T10:49:32Z 2020-02-15T06:59:51Z +5793 213 2 9340 2.99 2005-07-30T18:07:16Z 2020-02-15T06:59:51Z +5794 213 1 9477 4.99 2005-07-30T23:07:22Z 2020-02-15T06:59:51Z +5795 213 1 10449 2.99 2005-08-01T09:09:59Z 2020-02-15T06:59:51Z +5796 213 2 11778 3.99 2005-08-17T10:31:40Z 2020-02-15T06:59:51Z +5797 213 1 13354 4.99 2005-08-19T20:55:23Z 2020-02-15T06:59:51Z +5798 213 2 13426 0.99 2005-08-19T23:15:00Z 2020-02-15T06:59:51Z +5799 213 1 14744 6.99 2005-08-21T22:45:21Z 2020-02-15T06:59:51Z +5800 213 2 14374 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5801 214 1 242 1.99 2005-05-26T13:05:08Z 2020-02-15T06:59:51Z +5802 214 1 278 3.99 2005-05-26T17:40:58Z 2020-02-15T06:59:51Z +5803 214 1 1076 2.99 2005-05-31T10:14:31Z 2020-02-15T06:59:51Z +5804 214 2 1093 2.99 2005-05-31T12:32:26Z 2020-02-15T06:59:51Z +5805 214 2 1112 0.99 2005-05-31T15:51:39Z 2020-02-15T06:59:51Z +5806 214 2 1275 4.99 2005-06-15T07:55:43Z 2020-02-15T06:59:51Z +5807 214 2 2085 2.99 2005-06-17T17:30:56Z 2020-02-15T06:59:51Z +5808 214 2 2868 2.99 2005-06-20T00:08:58Z 2020-02-15T06:59:51Z +5809 214 2 4211 0.99 2005-07-07T11:50:41Z 2020-02-15T06:59:51Z +5810 214 1 4783 3.99 2005-07-08T16:09:24Z 2020-02-15T06:59:51Z +5811 214 2 4984 3.99 2005-07-09T00:35:31Z 2020-02-15T06:59:51Z +5812 214 2 5172 2.99 2005-07-09T09:31:27Z 2020-02-15T06:59:51Z +5813 214 1 6602 7.99 2005-07-12T07:50:24Z 2020-02-15T06:59:51Z +5814 214 2 7417 4.99 2005-07-27T16:58:33Z 2020-02-15T06:59:51Z +5815 214 2 7826 5.99 2005-07-28T08:35:51Z 2020-02-15T06:59:51Z +5816 214 1 8663 4.99 2005-07-29T15:33:18Z 2020-02-15T06:59:51Z +5817 214 1 10563 3.99 2005-08-01T13:06:03Z 2020-02-15T06:59:51Z +5818 214 2 10749 4.99 2005-08-01T20:02:01Z 2020-02-15T06:59:51Z +5819 214 2 11450 2.99 2005-08-02T20:45:54Z 2020-02-15T06:59:51Z +5820 214 2 11474 4.99 2005-08-02T21:53:08Z 2020-02-15T06:59:51Z +5821 214 2 12463 4.99 2005-08-18T11:31:34Z 2020-02-15T06:59:51Z +5822 214 2 13138 2.99 2005-08-19T12:30:01Z 2020-02-15T06:59:51Z +5823 214 2 13350 9.99 2005-08-19T20:44:00Z 2020-02-15T06:59:51Z +5824 214 1 13409 2.99 2005-08-19T22:36:26Z 2020-02-15T06:59:51Z +5825 214 1 13565 0.99 2005-08-20T04:38:52Z 2020-02-15T06:59:51Z +5826 214 1 13726 0.99 2005-08-20T10:08:40Z 2020-02-15T06:59:51Z +5827 214 1 13864 4.99 2005-08-20T14:59:55Z 2020-02-15T06:59:51Z +5828 214 2 14347 4.99 2005-08-21T08:42:31Z 2020-02-15T06:59:51Z +5829 214 1 14567 0.99 2005-08-21T16:27:25Z 2020-02-15T06:59:51Z +5830 214 2 15639 2.99 2005-08-23T08:03:25Z 2020-02-15T06:59:51Z +5831 214 2 15645 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5832 215 1 711 4.99 2005-05-29T03:49:03Z 2020-02-15T06:59:51Z +5833 215 2 1080 4.99 2005-05-31T10:55:26Z 2020-02-15T06:59:51Z +5834 215 2 1376 4.99 2005-06-15T14:59:06Z 2020-02-15T06:59:51Z +5835 215 2 1599 4.99 2005-06-16T06:03:33Z 2020-02-15T06:59:51Z +5836 215 2 1845 4.99 2005-06-16T23:56:11Z 2020-02-15T06:59:51Z +5837 215 2 2006 2.99 2005-06-17T11:47:03Z 2020-02-15T06:59:51Z +5838 215 2 2918 2.99 2005-06-20T04:09:04Z 2020-02-15T06:59:51Z +5839 215 1 3143 2.99 2005-06-20T20:01:52Z 2020-02-15T06:59:51Z +5840 215 2 4940 8.99 2005-07-08T22:36:06Z 2020-02-15T06:59:51Z +5841 215 1 5886 2.99 2005-07-10T19:36:25Z 2020-02-15T06:59:51Z +5842 215 2 5967 8.99 2005-07-11T00:02:19Z 2020-02-15T06:59:51Z +5843 215 1 7180 1.99 2005-07-27T08:14:34Z 2020-02-15T06:59:51Z +5844 215 2 9046 2.99 2005-07-30T06:46:55Z 2020-02-15T06:59:51Z +5845 215 1 9518 0.99 2005-07-31T00:43:26Z 2020-02-15T06:59:51Z +5846 215 2 9611 4.99 2005-07-31T03:54:43Z 2020-02-15T06:59:51Z +5847 215 1 11729 2.99 2005-08-17T08:14:41Z 2020-02-15T06:59:51Z +5848 215 2 12285 2.99 2005-08-18T04:56:43Z 2020-02-15T06:59:51Z +5849 215 1 12380 1.99 2005-08-18T08:27:28Z 2020-02-15T06:59:51Z +5850 215 2 13085 0.99 2005-08-19T10:28:22Z 2020-02-15T06:59:51Z +5851 215 2 14126 0.99 2005-08-21T01:32:17Z 2020-02-15T06:59:51Z +5852 215 2 14817 4.99 2005-08-22T01:17:16Z 2020-02-15T06:59:51Z +5853 215 1 15583 2.99 2005-08-23T05:47:55Z 2020-02-15T06:59:51Z +5854 215 2 15610 2.99 2005-08-23T06:56:15Z 2020-02-15T06:59:51Z +5855 215 2 15799 2.99 2005-08-23T14:23:23Z 2020-02-15T06:59:51Z +5856 215 1 15843 0.99 2005-08-23T15:37:31Z 2020-02-15T06:59:51Z +5857 215 2 15862 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5858 216 1 997 4.99 2005-05-31T00:08:25Z 2020-02-15T06:59:51Z +5859 216 2 1461 6.99 2005-06-15T20:32:08Z 2020-02-15T06:59:51Z +5860 216 1 1664 0.99 2005-06-16T10:15:20Z 2020-02-15T06:59:51Z +5861 216 1 1672 3.99 2005-06-16T10:37:34Z 2020-02-15T06:59:51Z +5862 216 2 2351 0.99 2005-06-18T12:27:57Z 2020-02-15T06:59:51Z +5863 216 1 3432 2.99 2005-06-21T19:02:03Z 2020-02-15T06:59:51Z +5864 216 2 4161 2.99 2005-07-07T09:15:11Z 2020-02-15T06:59:51Z +5865 216 1 6008 6.99 2005-07-11T01:51:29Z 2020-02-15T06:59:51Z +5866 216 2 6349 7.99 2005-07-11T20:25:05Z 2020-02-15T06:59:51Z +5867 216 1 8068 4.99 2005-07-28T17:22:28Z 2020-02-15T06:59:51Z +5868 216 2 8859 8.99 2005-07-29T23:44:43Z 2020-02-15T06:59:51Z +5869 216 1 9096 0.99 2005-07-30T08:39:23Z 2020-02-15T06:59:51Z +5870 216 1 10506 4.99 2005-08-01T11:16:05Z 2020-02-15T06:59:51Z +5871 216 1 11005 0.99 2005-08-02T05:05:23Z 2020-02-15T06:59:51Z +5872 216 2 11621 7.99 2005-08-17T04:13:45Z 2020-02-15T06:59:51Z +5873 216 2 13424 0.99 2005-08-19T23:10:09Z 2020-02-15T06:59:51Z +5874 216 2 14638 2.99 2005-08-21T19:01:36Z 2020-02-15T06:59:51Z +5875 216 2 14726 4.99 2005-08-21T22:08:52Z 2020-02-15T06:59:51Z +5876 216 1 15192 4.99 2005-08-22T16:06:23Z 2020-02-15T06:59:51Z +5877 216 2 15199 2.99 2005-08-22T16:17:49Z 2020-02-15T06:59:51Z +5878 216 2 15934 4.99 2005-08-23T18:40:41Z 2020-02-15T06:59:51Z +5879 216 1 12970 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5880 216 1 11676 0 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5881 217 2 828 2.99 2005-05-29T22:14:55Z 2020-02-15T06:59:51Z +5882 217 2 1141 8.99 2005-05-31T19:42:02Z 2020-02-15T06:59:51Z +5883 217 1 1322 2.99 2005-06-15T10:55:09Z 2020-02-15T06:59:51Z +5884 217 1 2076 6.99 2005-06-17T16:43:47Z 2020-02-15T06:59:51Z +5885 217 1 2842 4.99 2005-06-19T22:34:20Z 2020-02-15T06:59:51Z +5886 217 2 5576 2.99 2005-07-10T03:57:05Z 2020-02-15T06:59:51Z +5887 217 2 5762 3.99 2005-07-10T12:48:01Z 2020-02-15T06:59:51Z +5888 217 2 6570 4.99 2005-07-12T05:50:31Z 2020-02-15T06:59:51Z +5889 217 2 7104 2.99 2005-07-27T05:15:25Z 2020-02-15T06:59:51Z +5890 217 2 8332 4.99 2005-07-29T04:16:00Z 2020-02-15T06:59:51Z +5891 217 1 9159 0.99 2005-07-30T11:16:37Z 2020-02-15T06:59:51Z +5892 217 2 9317 2.99 2005-07-30T17:13:37Z 2020-02-15T06:59:51Z +5893 217 2 9632 6.99 2005-07-31T05:02:23Z 2020-02-15T06:59:51Z +5894 217 2 9745 2.99 2005-07-31T09:16:14Z 2020-02-15T06:59:51Z +5895 217 1 10581 5.99 2005-08-01T13:52:30Z 2020-02-15T06:59:51Z +5896 217 1 10836 6.99 2005-08-01T23:29:58Z 2020-02-15T06:59:51Z +5897 217 1 11347 2.99 2005-08-02T17:18:07Z 2020-02-15T06:59:51Z +5898 217 1 11649 2.99 2005-08-17T04:59:26Z 2020-02-15T06:59:51Z +5899 217 1 11958 4.99 2005-08-17T17:23:20Z 2020-02-15T06:59:51Z +5900 217 2 12210 4.99 2005-08-18T02:27:29Z 2020-02-15T06:59:51Z +5901 217 1 12871 4.99 2005-08-19T02:55:36Z 2020-02-15T06:59:51Z +5902 217 2 15116 0.99 2005-08-22T12:35:40Z 2020-02-15T06:59:51Z +5903 217 2 15277 2.99 2005-08-22T19:02:48Z 2020-02-15T06:59:51Z +5904 218 1 1459 2.99 2005-06-15T20:25:53Z 2020-02-15T06:59:51Z +5905 218 1 2262 0.99 2005-06-18T05:49:46Z 2020-02-15T06:59:51Z +5906 218 1 2267 0.99 2005-06-18T06:10:23Z 2020-02-15T06:59:51Z +5907 218 1 4898 6.99 2005-07-08T20:31:43Z 2020-02-15T06:59:51Z +5908 218 1 5226 0.99 2005-07-09T12:10:44Z 2020-02-15T06:59:51Z +5909 218 2 5737 0.99 2005-07-10T11:50:04Z 2020-02-15T06:59:51Z +5910 218 2 7090 4.99 2005-07-27T04:43:53Z 2020-02-15T06:59:51Z +5911 218 1 7236 8.99 2005-07-27T10:09:39Z 2020-02-15T06:59:51Z +5912 218 2 9018 6.99 2005-07-30T05:28:40Z 2020-02-15T06:59:51Z +5913 218 2 9902 6.99 2005-07-31T14:24:33Z 2020-02-15T06:59:51Z +5914 218 1 10114 0.99 2005-07-31T21:12:58Z 2020-02-15T06:59:51Z +5915 218 1 11654 2.99 2005-08-17T05:06:19Z 2020-02-15T06:59:51Z +5916 218 2 12481 2.99 2005-08-18T12:31:34Z 2020-02-15T06:59:51Z +5917 218 1 12974 0.99 2005-08-19T06:51:02Z 2020-02-15T06:59:51Z +5918 218 2 13708 5.99 2005-08-20T09:34:07Z 2020-02-15T06:59:51Z +5919 218 2 13947 5.99 2005-08-20T17:46:06Z 2020-02-15T06:59:51Z +5920 218 2 14848 4.99 2005-08-22T02:14:19Z 2020-02-15T06:59:51Z +5921 218 2 15575 0.99 2005-08-23T05:30:19Z 2020-02-15T06:59:51Z +5922 219 1 414 0.99 2005-05-27T14:48:20Z 2020-02-15T06:59:51Z +5923 219 2 2417 3.99 2005-06-18T17:12:01Z 2020-02-15T06:59:51Z +5924 219 2 2580 0.99 2005-06-19T04:44:30Z 2020-02-15T06:59:51Z +5925 219 2 4678 0.99 2005-07-08T10:30:40Z 2020-02-15T06:59:51Z +5926 219 2 4910 7.99 2005-07-08T21:13:56Z 2020-02-15T06:59:51Z +5927 219 2 5123 0.99 2005-07-09T07:20:30Z 2020-02-15T06:59:51Z +5928 219 2 5416 4.99 2005-07-09T20:33:50Z 2020-02-15T06:59:51Z +5929 219 2 5475 4.99 2005-07-09T23:31:38Z 2020-02-15T06:59:51Z +5930 219 2 5739 7.99 2005-07-10T11:51:50Z 2020-02-15T06:59:51Z +5931 219 2 6172 4.99 2005-07-11T10:32:09Z 2020-02-15T06:59:51Z +5932 219 1 6209 2.99 2005-07-11T12:36:05Z 2020-02-15T06:59:51Z +5933 219 2 6501 1.99 2005-07-12T03:11:55Z 2020-02-15T06:59:51Z +5934 219 2 7335 2.99 2005-07-27T14:06:50Z 2020-02-15T06:59:51Z +5935 219 1 7726 5.99 2005-07-28T04:52:19Z 2020-02-15T06:59:51Z +5936 219 1 8430 0.99 2005-07-29T07:12:17Z 2020-02-15T06:59:51Z +5937 219 2 8536 4.99 2005-07-29T10:37:23Z 2020-02-15T06:59:51Z +5938 219 1 8652 6.99 2005-07-29T15:02:54Z 2020-02-15T06:59:51Z +5939 219 1 9712 4.99 2005-07-31T08:13:11Z 2020-02-15T06:59:51Z +5940 219 1 11328 2.99 2005-08-02T16:42:38Z 2020-02-15T06:59:51Z +5941 219 2 11791 0.99 2005-08-17T11:01:11Z 2020-02-15T06:59:51Z +5942 219 1 13765 4.99 2005-08-20T11:39:00Z 2020-02-15T06:59:51Z +5943 219 2 14029 0.99 2005-08-20T21:23:11Z 2020-02-15T06:59:51Z +5944 219 1 14588 5.99 2005-08-21T17:25:53Z 2020-02-15T06:59:51Z +5945 219 1 14688 4.99 2005-08-21T20:32:37Z 2020-02-15T06:59:51Z +5946 219 1 15283 4.99 2005-08-22T19:16:04Z 2020-02-15T06:59:51Z +5947 219 1 11577 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +5948 220 2 409 0.99 2005-05-27T14:10:58Z 2020-02-15T06:59:51Z +5949 220 1 480 3.99 2005-05-27T22:47:39Z 2020-02-15T06:59:51Z +5950 220 1 1832 0.99 2005-06-16T22:35:20Z 2020-02-15T06:59:51Z +5951 220 2 4918 2.99 2005-07-08T21:37:31Z 2020-02-15T06:59:51Z +5952 220 2 5613 2.99 2005-07-10T05:15:43Z 2020-02-15T06:59:51Z +5953 220 2 5847 2.99 2005-07-10T17:27:42Z 2020-02-15T06:59:51Z +5954 220 2 5859 0.99 2005-07-10T18:02:02Z 2020-02-15T06:59:51Z +5955 220 2 6412 0.99 2005-07-11T23:19:21Z 2020-02-15T06:59:51Z +5956 220 2 6832 8.99 2005-07-12T18:51:41Z 2020-02-15T06:59:51Z +5957 220 2 7750 9.99 2005-07-28T05:55:30Z 2020-02-15T06:59:51Z +5958 220 1 8065 2.99 2005-07-28T17:15:48Z 2020-02-15T06:59:51Z +5959 220 1 8398 4.99 2005-07-29T06:12:40Z 2020-02-15T06:59:51Z +5960 220 2 9384 7.99 2005-07-30T19:25:35Z 2020-02-15T06:59:51Z +5961 220 2 9455 10.99 2005-07-30T22:20:29Z 2020-02-15T06:59:51Z +5962 220 1 10099 2.99 2005-07-31T20:47:14Z 2020-02-15T06:59:51Z +5963 220 2 10778 4.99 2005-08-01T21:11:39Z 2020-02-15T06:59:51Z +5964 220 1 10948 4.99 2005-08-02T03:23:23Z 2020-02-15T06:59:51Z +5965 220 1 11037 0.99 2005-08-02T05:58:12Z 2020-02-15T06:59:51Z +5966 220 1 11153 3.99 2005-08-02T09:54:19Z 2020-02-15T06:59:51Z +5967 220 1 11622 4.99 2005-08-17T04:15:46Z 2020-02-15T06:59:51Z +5968 220 2 11947 2.99 2005-08-17T17:08:13Z 2020-02-15T06:59:51Z +5969 220 1 12407 4.99 2005-08-18T09:39:26Z 2020-02-15T06:59:51Z +5970 220 1 12896 4.99 2005-08-19T03:52:44Z 2020-02-15T06:59:51Z +5971 220 2 13123 2.99 2005-08-19T11:55:13Z 2020-02-15T06:59:51Z +5972 220 1 13281 2.99 2005-08-19T18:07:47Z 2020-02-15T06:59:51Z +5973 220 2 14016 4.99 2005-08-20T20:52:03Z 2020-02-15T06:59:51Z +5974 220 2 15706 4.99 2005-08-23T10:32:52Z 2020-02-15T06:59:51Z +5975 221 2 226 4.99 2005-05-26T10:44:04Z 2020-02-15T06:59:51Z +5976 221 1 1369 0.99 2005-06-15T14:29:14Z 2020-02-15T06:59:51Z +5977 221 1 2331 2.99 2005-06-18T10:50:09Z 2020-02-15T06:59:51Z +5978 221 2 2473 2.99 2005-06-18T20:42:45Z 2020-02-15T06:59:51Z +5979 221 1 2660 10.99 2005-06-19T10:50:02Z 2020-02-15T06:59:51Z +5980 221 1 3200 5.99 2005-06-21T00:22:47Z 2020-02-15T06:59:51Z +5981 221 1 4293 4.99 2005-07-07T15:53:47Z 2020-02-15T06:59:51Z +5982 221 2 4649 4.99 2005-07-08T09:32:05Z 2020-02-15T06:59:51Z +5983 221 1 4693 6.99 2005-07-08T11:07:36Z 2020-02-15T06:59:51Z +5984 221 1 5058 5.99 2005-07-09T04:20:35Z 2020-02-15T06:59:51Z +5985 221 2 5920 5.99 2005-07-10T21:33:58Z 2020-02-15T06:59:51Z +5986 221 1 7101 2.99 2005-07-27T05:06:34Z 2020-02-15T06:59:51Z +5987 221 1 7129 0.99 2005-07-27T06:18:01Z 2020-02-15T06:59:51Z +5988 221 2 7531 8.99 2005-07-27T21:19:34Z 2020-02-15T06:59:51Z +5989 221 2 8486 0.99 2005-07-29T08:53:38Z 2020-02-15T06:59:51Z +5990 221 1 9320 6.99 2005-07-30T17:16:39Z 2020-02-15T06:59:51Z +5991 221 1 9453 7.99 2005-07-30T22:20:04Z 2020-02-15T06:59:51Z +5992 221 2 9853 0.99 2005-07-31T12:58:20Z 2020-02-15T06:59:51Z +5993 221 2 11680 4.99 2005-08-17T06:12:27Z 2020-02-15T06:59:51Z +5994 221 1 11693 4.99 2005-08-17T06:56:56Z 2020-02-15T06:59:51Z +5995 221 1 11802 2.99 2005-08-17T11:32:51Z 2020-02-15T06:59:51Z +5996 221 1 12324 0.99 2005-08-18T06:38:20Z 2020-02-15T06:59:51Z +5997 221 2 12620 3.99 2005-08-18T17:26:38Z 2020-02-15T06:59:51Z +5998 221 2 13434 2.99 2005-08-19T23:34:26Z 2020-02-15T06:59:51Z +5999 221 2 14322 5.99 2005-08-21T08:06:30Z 2020-02-15T06:59:51Z +6000 221 2 14371 0.99 2005-08-21T09:37:16Z 2020-02-15T06:59:51Z +6001 221 1 14419 7.99 2005-08-21T11:15:46Z 2020-02-15T06:59:51Z +6002 221 1 15125 8.99 2005-08-22T12:53:22Z 2020-02-15T06:59:51Z +6003 222 1 5 6.99 2005-05-24T23:05:21Z 2020-02-15T06:59:51Z +6004 222 1 134 4.99 2005-05-25T21:48:41Z 2020-02-15T06:59:51Z +6005 222 2 416 0.99 2005-05-27T15:02:10Z 2020-02-15T06:59:51Z +6006 222 2 809 3.99 2005-05-29T19:10:20Z 2020-02-15T06:59:51Z +6007 222 2 1006 2.99 2005-05-31T00:57:08Z 2020-02-15T06:59:51Z +6008 222 1 1368 8.99 2005-06-15T14:27:47Z 2020-02-15T06:59:51Z +6009 222 2 2603 6.99 2005-06-19T06:21:25Z 2020-02-15T06:59:51Z +6010 222 2 5209 8.99 2005-07-09T11:22:39Z 2020-02-15T06:59:51Z +6011 222 1 5266 3.99 2005-07-09T14:17:40Z 2020-02-15T06:59:51Z +6012 222 2 5592 6.99 2005-07-10T04:26:13Z 2020-02-15T06:59:51Z +6013 222 2 5635 5.99 2005-07-10T06:28:39Z 2020-02-15T06:59:51Z +6014 222 2 6129 2.99 2005-07-11T08:15:09Z 2020-02-15T06:59:51Z +6015 222 1 6497 0.99 2005-07-12T03:04:29Z 2020-02-15T06:59:51Z +6016 222 2 7786 0.99 2005-07-28T07:18:26Z 2020-02-15T06:59:51Z +6017 222 1 8300 1.99 2005-07-29T02:57:59Z 2020-02-15T06:59:51Z +6018 222 2 8597 6.99 2005-07-29T12:55:55Z 2020-02-15T06:59:51Z +6019 222 1 8787 4.99 2005-07-29T20:43:49Z 2020-02-15T06:59:51Z +6020 222 2 10043 1.99 2005-07-31T19:02:07Z 2020-02-15T06:59:51Z +6021 222 2 12179 2.99 2005-08-18T01:21:21Z 2020-02-15T06:59:51Z +6022 222 1 13477 2.99 2005-08-20T01:07:00Z 2020-02-15T06:59:51Z +6023 222 2 14350 2.99 2005-08-21T08:58:38Z 2020-02-15T06:59:51Z +6024 223 2 524 2.99 2005-05-28T03:57:28Z 2020-02-15T06:59:51Z +6025 223 2 1839 5.99 2005-06-16T23:22:22Z 2020-02-15T06:59:51Z +6026 223 1 2334 4.99 2005-06-18T10:56:24Z 2020-02-15T06:59:51Z +6027 223 1 3513 5.99 2005-07-06T00:45:57Z 2020-02-15T06:59:51Z +6028 223 1 3705 0.99 2005-07-06T10:17:59Z 2020-02-15T06:59:51Z +6029 223 1 4874 4.99 2005-07-08T19:23:38Z 2020-02-15T06:59:51Z +6030 223 2 5996 2.99 2005-07-11T01:18:33Z 2020-02-15T06:59:51Z +6031 223 2 7085 5.99 2005-07-27T04:35:44Z 2020-02-15T06:59:51Z +6032 223 2 8362 3.99 2005-07-29T05:09:11Z 2020-02-15T06:59:51Z +6033 223 2 10053 7.99 2005-07-31T19:15:39Z 2020-02-15T06:59:51Z +6034 223 2 11040 4.99 2005-08-02T06:03:22Z 2020-02-15T06:59:51Z +6035 223 1 12927 5.99 2005-08-19T05:02:46Z 2020-02-15T06:59:51Z +6036 223 1 13576 0.99 2005-08-20T05:19:56Z 2020-02-15T06:59:51Z +6037 223 2 14496 4.99 2005-08-21T14:07:35Z 2020-02-15T06:59:51Z +6038 223 1 15257 7.99 2005-08-22T18:21:04Z 2020-02-15T06:59:51Z +6039 223 2 15546 5.99 2005-08-23T04:20:38Z 2020-02-15T06:59:51Z +6040 223 1 15662 2.99 2005-08-23T08:52:50Z 2020-02-15T06:59:51Z +6041 224 1 1424 7.99 2005-06-15T18:08:14Z 2020-02-15T06:59:51Z +6042 224 1 2277 2.99 2005-06-18T06:35:03Z 2020-02-15T06:59:51Z +6043 224 2 3282 4.99 2005-06-21T06:18:42Z 2020-02-15T06:59:51Z +6044 224 1 4118 2.99 2005-07-07T07:03:30Z 2020-02-15T06:59:51Z +6045 224 2 4411 3.99 2005-07-07T21:54:58Z 2020-02-15T06:59:51Z +6046 224 1 4697 2.99 2005-07-08T11:19:14Z 2020-02-15T06:59:51Z +6047 224 1 6031 4.99 2005-07-11T02:42:14Z 2020-02-15T06:59:51Z +6048 224 2 6999 2.99 2005-07-27T01:21:19Z 2020-02-15T06:59:51Z +6049 224 2 8255 0.99 2005-07-29T01:02:30Z 2020-02-15T06:59:51Z +6050 224 2 8439 2.99 2005-07-29T07:28:43Z 2020-02-15T06:59:51Z +6051 224 1 8605 4.99 2005-07-29T13:13:34Z 2020-02-15T06:59:51Z +6052 224 1 9181 0.99 2005-07-30T12:05:58Z 2020-02-15T06:59:51Z +6053 224 1 11816 0.99 2005-08-17T12:14:16Z 2020-02-15T06:59:51Z +6054 224 1 12492 4.99 2005-08-18T12:49:04Z 2020-02-15T06:59:51Z +6055 224 1 12969 2.99 2005-08-19T06:38:59Z 2020-02-15T06:59:51Z +6056 224 2 13075 4.99 2005-08-19T10:10:10Z 2020-02-15T06:59:51Z +6057 224 2 14099 0.99 2005-08-21T00:31:03Z 2020-02-15T06:59:51Z +6058 224 2 14271 5.99 2005-08-21T06:23:29Z 2020-02-15T06:59:51Z +6059 224 2 14468 5.99 2005-08-21T13:07:10Z 2020-02-15T06:59:51Z +6060 224 2 14880 2.99 2005-08-22T03:44:36Z 2020-02-15T06:59:51Z +6061 224 1 15225 0.99 2005-08-22T17:18:32Z 2020-02-15T06:59:51Z +6062 224 1 15952 1.99 2005-08-23T19:11:29Z 2020-02-15T06:59:51Z +6063 225 1 812 4.99 2005-05-29T20:00:30Z 2020-02-15T06:59:51Z +6064 225 1 963 3.99 2005-05-30T18:52:53Z 2020-02-15T06:59:51Z +6065 225 2 2226 7.99 2005-06-18T03:39:56Z 2020-02-15T06:59:51Z +6066 225 2 3574 4.99 2005-07-06T03:36:01Z 2020-02-15T06:59:51Z +6067 225 1 4345 7.99 2005-07-07T18:52:57Z 2020-02-15T06:59:51Z +6068 225 1 4824 7.99 2005-07-08T17:37:39Z 2020-02-15T06:59:51Z +6069 225 2 4955 2.99 2005-07-08T23:16:21Z 2020-02-15T06:59:51Z +6070 225 1 5067 4.99 2005-07-09T04:52:35Z 2020-02-15T06:59:51Z +6071 225 1 6159 2.99 2005-07-11T09:55:34Z 2020-02-15T06:59:51Z +6072 225 1 6317 2.99 2005-07-11T18:47:41Z 2020-02-15T06:59:51Z +6073 225 2 6350 2.99 2005-07-11T20:30:15Z 2020-02-15T06:59:51Z +6074 225 1 6526 3.99 2005-07-12T04:21:20Z 2020-02-15T06:59:51Z +6075 225 2 6532 2.99 2005-07-12T04:38:32Z 2020-02-15T06:59:51Z +6076 225 2 7347 4.99 2005-07-27T14:31:24Z 2020-02-15T06:59:51Z +6077 225 1 7524 6.99 2005-07-27T21:11:44Z 2020-02-15T06:59:51Z +6078 225 1 8054 7.99 2005-07-28T17:02:18Z 2020-02-15T06:59:51Z +6079 225 2 8110 4.99 2005-07-28T19:07:45Z 2020-02-15T06:59:51Z +6080 225 1 9980 4.99 2005-07-31T17:02:00Z 2020-02-15T06:59:51Z +6081 225 2 9993 2.99 2005-07-31T17:30:20Z 2020-02-15T06:59:51Z +6082 225 2 10138 2.99 2005-07-31T22:02:09Z 2020-02-15T06:59:51Z +6083 225 1 10793 2.99 2005-08-01T21:48:03Z 2020-02-15T06:59:51Z +6084 225 2 11333 1.99 2005-08-02T16:53:00Z 2020-02-15T06:59:51Z +6085 225 2 11384 0.99 2005-08-02T18:23:01Z 2020-02-15T06:59:51Z +6086 225 2 11395 5.99 2005-08-02T18:47:44Z 2020-02-15T06:59:51Z +6087 225 2 11437 4.99 2005-08-02T20:20:06Z 2020-02-15T06:59:51Z +6088 225 2 14444 5.99 2005-08-21T12:07:25Z 2020-02-15T06:59:51Z +6089 226 2 3414 2.99 2005-06-21T16:58:50Z 2020-02-15T06:59:51Z +6090 226 1 3466 4.99 2005-06-21T22:13:33Z 2020-02-15T06:59:51Z +6091 226 1 3721 4.99 2005-07-06T11:10:09Z 2020-02-15T06:59:51Z +6092 226 1 4324 4.99 2005-07-07T17:57:56Z 2020-02-15T06:59:51Z +6093 226 1 5282 2.99 2005-07-09T15:01:23Z 2020-02-15T06:59:51Z +6094 226 1 5419 2.99 2005-07-09T20:47:36Z 2020-02-15T06:59:51Z +6095 226 1 6712 9.99 2005-07-12T13:24:47Z 2020-02-15T06:59:51Z +6096 226 2 7288 5.99 2005-07-27T12:24:59Z 2020-02-15T06:59:51Z +6097 226 1 7329 3.99 2005-07-27T13:55:34Z 2020-02-15T06:59:51Z +6098 226 2 8600 2.99 2005-07-29T13:01:19Z 2020-02-15T06:59:51Z +6099 226 1 8627 2.99 2005-07-29T14:05:12Z 2020-02-15T06:59:51Z +6100 226 1 12172 1.99 2005-08-18T01:07:00Z 2020-02-15T06:59:51Z +6101 226 1 14491 6.99 2005-08-21T13:55:39Z 2020-02-15T06:59:51Z +6102 226 1 14708 4.99 2005-08-21T21:07:23Z 2020-02-15T06:59:51Z +6103 226 1 14712 0.99 2005-08-21T21:22:56Z 2020-02-15T06:59:51Z +6104 226 2 14739 0.99 2005-08-21T22:33:22Z 2020-02-15T06:59:51Z +6105 226 2 14934 4.99 2005-08-22T05:47:15Z 2020-02-15T06:59:51Z +6106 226 2 15472 2.99 2005-08-23T01:39:05Z 2020-02-15T06:59:51Z +6107 226 1 15901 4.99 2005-08-23T17:19:17Z 2020-02-15T06:59:51Z +6108 226 1 15986 2.99 2005-08-23T20:20:37Z 2020-02-15T06:59:51Z +6109 226 1 16033 5.99 2005-08-23T22:06:15Z 2020-02-15T06:59:51Z +6110 227 1 111 4.99 2005-05-25T18:45:19Z 2020-02-15T06:59:51Z +6111 227 1 1023 3.99 2005-05-31T03:26:50Z 2020-02-15T06:59:51Z +6112 227 1 1679 2.99 2005-06-16T11:11:01Z 2020-02-15T06:59:51Z +6113 227 2 2155 1.99 2005-06-17T23:07:29Z 2020-02-15T06:59:51Z +6114 227 1 2164 6.99 2005-06-17T23:46:21Z 2020-02-15T06:59:51Z +6115 227 2 3065 0.99 2005-06-20T13:53:53Z 2020-02-15T06:59:51Z +6116 227 1 3576 5.99 2005-07-06T03:40:01Z 2020-02-15T06:59:51Z +6117 227 2 4340 2.99 2005-07-07T18:41:46Z 2020-02-15T06:59:51Z +6118 227 2 4459 4.99 2005-07-07T23:48:52Z 2020-02-15T06:59:51Z +6119 227 1 4680 2.99 2005-07-08T10:35:28Z 2020-02-15T06:59:51Z +6120 227 1 5046 3.99 2005-07-09T03:34:57Z 2020-02-15T06:59:51Z +6121 227 1 7132 7.99 2005-07-27T06:28:34Z 2020-02-15T06:59:51Z +6122 227 1 8219 2.99 2005-07-28T23:46:31Z 2020-02-15T06:59:51Z +6123 227 1 8234 0.99 2005-07-29T00:19:20Z 2020-02-15T06:59:51Z +6124 227 1 8384 0.99 2005-07-29T05:38:43Z 2020-02-15T06:59:51Z +6125 227 2 8417 4.99 2005-07-29T06:53:36Z 2020-02-15T06:59:51Z +6126 227 1 8936 2.99 2005-07-30T02:47:13Z 2020-02-15T06:59:51Z +6127 227 2 9521 2.99 2005-07-31T00:52:24Z 2020-02-15T06:59:51Z +6128 227 2 10999 3.99 2005-08-02T04:53:13Z 2020-02-15T06:59:51Z +6129 227 2 11892 0.99 2005-08-17T15:13:21Z 2020-02-15T06:59:51Z +6130 227 2 13379 4.99 2005-08-19T21:33:39Z 2020-02-15T06:59:51Z +6131 227 2 15406 0.99 2005-08-22T23:21:22Z 2020-02-15T06:59:51Z +6132 227 2 15976 4.99 2005-08-23T20:07:08Z 2020-02-15T06:59:51Z +6133 227 2 13374 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6134 228 2 492 4.99 2005-05-28T00:24:58Z 2020-02-15T06:59:51Z +6135 228 2 1070 0.99 2005-05-31T09:39:56Z 2020-02-15T06:59:51Z +6136 228 2 2284 3.99 2005-06-18T06:59:51Z 2020-02-15T06:59:51Z +6137 228 2 2863 2.99 2005-06-19T23:58:38Z 2020-02-15T06:59:51Z +6138 228 2 2934 2.99 2005-06-20T05:05:53Z 2020-02-15T06:59:51Z +6139 228 2 3433 3.99 2005-06-21T19:07:19Z 2020-02-15T06:59:51Z +6140 228 2 3538 0.99 2005-07-06T01:37:07Z 2020-02-15T06:59:51Z +6141 228 2 3710 8.99 2005-07-06T10:28:53Z 2020-02-15T06:59:51Z +6142 228 1 3715 6.99 2005-07-06T10:51:48Z 2020-02-15T06:59:51Z +6143 228 2 3796 0.99 2005-07-06T14:45:22Z 2020-02-15T06:59:51Z +6144 228 1 4217 3.99 2005-07-07T12:08:59Z 2020-02-15T06:59:51Z +6145 228 1 4636 4.99 2005-07-08T08:44:32Z 2020-02-15T06:59:51Z +6146 228 1 4909 0.99 2005-07-08T21:07:24Z 2020-02-15T06:59:51Z +6147 228 1 5151 2.99 2005-07-09T08:31:03Z 2020-02-15T06:59:51Z +6148 228 1 5320 4.99 2005-07-09T16:23:32Z 2020-02-15T06:59:51Z +6149 228 2 5902 0.99 2005-07-10T20:31:24Z 2020-02-15T06:59:51Z +6150 228 2 6141 1.99 2005-07-11T08:52:16Z 2020-02-15T06:59:51Z +6151 228 1 6948 2.99 2005-07-26T23:43:49Z 2020-02-15T06:59:51Z +6152 228 2 7509 8.99 2005-07-27T20:37:19Z 2020-02-15T06:59:51Z +6153 228 1 7601 0.99 2005-07-27T23:48:15Z 2020-02-15T06:59:51Z +6154 228 1 8147 2.99 2005-07-28T20:37:56Z 2020-02-15T06:59:51Z +6155 228 1 10585 4.99 2005-08-01T14:00:42Z 2020-02-15T06:59:51Z +6156 228 1 12304 0.99 2005-08-18T05:44:29Z 2020-02-15T06:59:51Z +6157 228 2 12952 2.99 2005-08-19T06:00:52Z 2020-02-15T06:59:51Z +6158 228 2 13458 4.99 2005-08-20T00:35:30Z 2020-02-15T06:59:51Z +6159 228 2 12672 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6160 228 1 15234 0 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6161 229 1 2200 4.99 2005-06-18T01:59:16Z 2020-02-15T06:59:51Z +6162 229 1 3208 0.99 2005-06-21T00:50:03Z 2020-02-15T06:59:51Z +6163 229 1 3277 7.99 2005-06-21T05:36:37Z 2020-02-15T06:59:51Z +6164 229 2 3280 0.99 2005-06-21T06:08:12Z 2020-02-15T06:59:51Z +6165 229 2 3933 4.99 2005-07-06T21:06:37Z 2020-02-15T06:59:51Z +6166 229 2 4458 2.99 2005-07-07T23:47:47Z 2020-02-15T06:59:51Z +6167 229 1 4515 4.99 2005-07-08T02:42:03Z 2020-02-15T06:59:51Z +6168 229 2 4694 0.99 2005-07-08T11:07:37Z 2020-02-15T06:59:51Z +6169 229 1 5623 2.99 2005-07-10T05:41:38Z 2020-02-15T06:59:51Z +6170 229 2 6155 4.99 2005-07-11T09:45:31Z 2020-02-15T06:59:51Z +6171 229 2 6578 4.99 2005-07-12T06:15:41Z 2020-02-15T06:59:51Z +6172 229 1 6880 2.99 2005-07-12T20:41:35Z 2020-02-15T06:59:51Z +6173 229 2 7305 0.99 2005-07-27T12:57:06Z 2020-02-15T06:59:51Z +6174 229 2 7308 5.99 2005-07-27T13:00:25Z 2020-02-15T06:59:51Z +6175 229 2 7629 0.99 2005-07-28T01:00:09Z 2020-02-15T06:59:51Z +6176 229 2 7640 7.99 2005-07-28T01:14:49Z 2020-02-15T06:59:51Z +6177 229 2 9913 3.99 2005-07-31T14:51:04Z 2020-02-15T06:59:51Z +6178 229 1 11521 4.99 2005-08-17T00:04:54Z 2020-02-15T06:59:51Z +6179 229 1 12866 2.99 2005-08-19T02:39:47Z 2020-02-15T06:59:51Z +6180 229 2 13306 0.99 2005-08-19T18:57:29Z 2020-02-15T06:59:51Z +6181 229 2 13431 4.99 2005-08-19T23:28:15Z 2020-02-15T06:59:51Z +6182 229 1 13679 5.99 2005-08-20T08:39:34Z 2020-02-15T06:59:51Z +6183 229 1 15740 4.99 2005-08-23T12:07:51Z 2020-02-15T06:59:51Z +6184 229 2 15912 2.99 2005-08-23T17:47:40Z 2020-02-15T06:59:51Z +6185 229 2 13295 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6186 230 1 32 0.99 2005-05-25T04:06:21Z 2020-02-15T06:59:51Z +6187 230 1 1078 4.99 2005-05-31T10:28:33Z 2020-02-15T06:59:51Z +6188 230 2 1468 3.99 2005-06-15T20:48:22Z 2020-02-15T06:59:51Z +6189 230 1 1744 4.99 2005-06-16T16:39:58Z 2020-02-15T06:59:51Z +6190 230 2 1793 0.99 2005-06-16T20:07:27Z 2020-02-15T06:59:51Z +6191 230 2 2450 8.99 2005-06-18T19:25:47Z 2020-02-15T06:59:51Z +6192 230 2 2675 0.99 2005-06-19T11:52:15Z 2020-02-15T06:59:51Z +6193 230 1 2777 0.99 2005-06-19T18:16:26Z 2020-02-15T06:59:51Z +6194 230 1 4509 3.99 2005-07-08T02:32:38Z 2020-02-15T06:59:51Z +6195 230 1 4935 0.99 2005-07-08T22:20:56Z 2020-02-15T06:59:51Z +6196 230 1 5045 4.99 2005-07-09T03:33:32Z 2020-02-15T06:59:51Z +6197 230 1 5061 0.99 2005-07-09T04:30:50Z 2020-02-15T06:59:51Z +6198 230 2 5269 2.99 2005-07-09T14:23:05Z 2020-02-15T06:59:51Z +6199 230 2 6126 4.99 2005-07-11T08:06:56Z 2020-02-15T06:59:51Z +6200 230 1 6251 2.99 2005-07-11T15:06:20Z 2020-02-15T06:59:51Z +6201 230 2 7333 4.99 2005-07-27T13:59:11Z 2020-02-15T06:59:51Z +6202 230 2 7390 4.99 2005-07-27T15:59:19Z 2020-02-15T06:59:51Z +6203 230 2 8032 4.99 2005-07-28T16:17:00Z 2020-02-15T06:59:51Z +6204 230 2 8653 0.99 2005-07-29T15:04:23Z 2020-02-15T06:59:51Z +6205 230 1 8815 2.99 2005-07-29T21:51:26Z 2020-02-15T06:59:51Z +6206 230 2 9778 3.99 2005-07-31T10:02:04Z 2020-02-15T06:59:51Z +6207 230 2 10050 3.99 2005-07-31T19:13:29Z 2020-02-15T06:59:51Z +6208 230 1 10057 9.99 2005-07-31T19:20:18Z 2020-02-15T06:59:51Z +6209 230 2 10874 2.99 2005-08-02T00:31:00Z 2020-02-15T06:59:51Z +6210 230 2 11148 5.99 2005-08-02T09:47:08Z 2020-02-15T06:59:51Z +6211 230 1 11552 5.99 2005-08-17T01:04:29Z 2020-02-15T06:59:51Z +6212 230 2 11914 2.99 2005-08-17T16:04:42Z 2020-02-15T06:59:51Z +6213 230 1 12079 1.99 2005-08-17T22:04:17Z 2020-02-15T06:59:51Z +6214 230 2 12523 7.99 2005-08-18T13:45:41Z 2020-02-15T06:59:51Z +6215 230 2 12542 0.99 2005-08-18T14:21:11Z 2020-02-15T06:59:51Z +6216 230 2 14017 0.99 2005-08-20T20:55:32Z 2020-02-15T06:59:51Z +6217 230 1 14073 5.99 2005-08-20T23:12:57Z 2020-02-15T06:59:51Z +6218 230 1 14340 2.99 2005-08-21T08:38:21Z 2020-02-15T06:59:51Z +6219 231 1 329 5.99 2005-05-27T01:57:14Z 2020-02-15T06:59:51Z +6220 231 1 479 6.99 2005-05-27T22:39:10Z 2020-02-15T06:59:51Z +6221 231 1 512 8.99 2005-05-28T03:07:50Z 2020-02-15T06:59:51Z +6222 231 2 2423 0.99 2005-06-18T17:32:08Z 2020-02-15T06:59:51Z +6223 231 2 3561 9.99 2005-07-06T02:54:33Z 2020-02-15T06:59:51Z +6224 231 1 3839 2.99 2005-07-06T16:30:30Z 2020-02-15T06:59:51Z +6225 231 2 4289 0.99 2005-07-07T15:45:58Z 2020-02-15T06:59:51Z +6226 231 2 4969 0.99 2005-07-08T23:51:26Z 2020-02-15T06:59:51Z +6227 231 1 5096 2.99 2005-07-09T06:08:23Z 2020-02-15T06:59:51Z +6228 231 1 5560 5.99 2005-07-10T03:13:24Z 2020-02-15T06:59:51Z +6229 231 1 6862 0.99 2005-07-12T19:58:09Z 2020-02-15T06:59:51Z +6230 231 1 6877 1.99 2005-07-12T20:32:58Z 2020-02-15T06:59:51Z +6231 231 1 8556 0.99 2005-07-29T11:18:27Z 2020-02-15T06:59:51Z +6232 231 2 8949 5.99 2005-07-30T03:17:02Z 2020-02-15T06:59:51Z +6233 231 2 9711 2.99 2005-07-31T08:06:41Z 2020-02-15T06:59:51Z +6234 231 2 11113 2.99 2005-08-02T08:26:24Z 2020-02-15T06:59:51Z +6235 231 1 11202 7.99 2005-08-02T11:51:57Z 2020-02-15T06:59:51Z +6236 231 1 11581 5.99 2005-08-17T02:03:02Z 2020-02-15T06:59:51Z +6237 231 1 12214 0.99 2005-08-18T02:34:22Z 2020-02-15T06:59:51Z +6238 231 2 12230 8.99 2005-08-18T03:11:04Z 2020-02-15T06:59:51Z +6239 231 1 12231 3.99 2005-08-18T03:11:44Z 2020-02-15T06:59:51Z +6240 231 2 13983 6.99 2005-08-20T19:08:32Z 2020-02-15T06:59:51Z +6241 231 1 14026 0.99 2005-08-20T21:21:08Z 2020-02-15T06:59:51Z +6242 231 1 14478 4.99 2005-08-21T13:33:28Z 2020-02-15T06:59:51Z +6243 231 2 14806 2.99 2005-08-22T00:53:08Z 2020-02-15T06:59:51Z +6244 231 1 15389 3.99 2005-08-22T22:51:13Z 2020-02-15T06:59:51Z +6245 232 1 28 4.99 2005-05-25T03:42:37Z 2020-02-15T06:59:51Z +6246 232 1 805 3.99 2005-05-29T18:18:18Z 2020-02-15T06:59:51Z +6247 232 2 1619 0.99 2005-06-16T07:14:13Z 2020-02-15T06:59:51Z +6248 232 1 2833 8.99 2005-06-19T21:34:54Z 2020-02-15T06:59:51Z +6249 232 2 6234 5.99 2005-07-11T14:16:10Z 2020-02-15T06:59:51Z +6250 232 1 6309 2.99 2005-07-11T18:13:24Z 2020-02-15T06:59:51Z +6251 232 1 7123 5.99 2005-07-27T06:08:48Z 2020-02-15T06:59:51Z +6252 232 2 7653 4.99 2005-07-28T01:58:30Z 2020-02-15T06:59:51Z +6253 232 2 7707 0.99 2005-07-28T04:07:47Z 2020-02-15T06:59:51Z +6254 232 1 7749 2.99 2005-07-28T05:53:36Z 2020-02-15T06:59:51Z +6255 232 1 7990 2.99 2005-07-28T14:43:08Z 2020-02-15T06:59:51Z +6256 232 1 8306 2.99 2005-07-29T03:12:26Z 2020-02-15T06:59:51Z +6257 232 2 8401 4.99 2005-07-29T06:25:08Z 2020-02-15T06:59:51Z +6258 232 2 8655 4.99 2005-07-29T15:04:42Z 2020-02-15T06:59:51Z +6259 232 2 9270 0.99 2005-07-30T15:03:16Z 2020-02-15T06:59:51Z +6260 232 2 9330 10.99 2005-07-30T17:44:24Z 2020-02-15T06:59:51Z +6261 232 2 9365 2.99 2005-07-30T18:46:02Z 2020-02-15T06:59:51Z +6262 232 2 10157 2.99 2005-07-31T22:38:48Z 2020-02-15T06:59:51Z +6263 232 1 10539 6.99 2005-08-01T12:23:00Z 2020-02-15T06:59:51Z +6264 232 2 11861 0.99 2005-08-17T13:53:47Z 2020-02-15T06:59:51Z +6265 232 2 12853 2.99 2005-08-19T02:15:32Z 2020-02-15T06:59:51Z +6266 232 2 13707 2.99 2005-08-20T09:33:58Z 2020-02-15T06:59:51Z +6267 232 2 14527 0.99 2005-08-21T15:07:42Z 2020-02-15T06:59:51Z +6268 232 2 14857 0.99 2005-08-22T02:42:39Z 2020-02-15T06:59:51Z +6269 232 2 15553 2.99 2005-08-23T04:33:39Z 2020-02-15T06:59:51Z +6270 233 2 1992 2.99 2005-06-17T10:58:53Z 2020-02-15T06:59:51Z +6271 233 2 2244 2.99 2005-06-18T04:46:33Z 2020-02-15T06:59:51Z +6272 233 1 2424 2.99 2005-06-18T17:35:08Z 2020-02-15T06:59:51Z +6273 233 2 2443 4.99 2005-06-18T18:52:30Z 2020-02-15T06:59:51Z +6274 233 1 3832 2.99 2005-07-06T16:12:23Z 2020-02-15T06:59:51Z +6275 233 1 4015 5.99 2005-07-07T00:59:46Z 2020-02-15T06:59:51Z +6276 233 1 4885 4.99 2005-07-08T19:51:17Z 2020-02-15T06:59:51Z +6277 233 2 5267 5.99 2005-07-09T14:21:10Z 2020-02-15T06:59:51Z +6278 233 1 5846 2.99 2005-07-10T17:25:24Z 2020-02-15T06:59:51Z +6279 233 1 6319 4.99 2005-07-11T18:50:45Z 2020-02-15T06:59:51Z +6280 233 1 6794 2.99 2005-07-12T16:38:23Z 2020-02-15T06:59:51Z +6281 233 1 7056 8.99 2005-07-27T03:46:27Z 2020-02-15T06:59:51Z +6282 233 2 7387 4.99 2005-07-27T15:54:19Z 2020-02-15T06:59:51Z +6283 233 2 8385 5.99 2005-07-29T05:39:16Z 2020-02-15T06:59:51Z +6284 233 2 8530 2.99 2005-07-29T10:26:14Z 2020-02-15T06:59:51Z +6285 233 2 8596 0.99 2005-07-29T12:48:54Z 2020-02-15T06:59:51Z +6286 233 1 9574 0.99 2005-07-31T02:49:20Z 2020-02-15T06:59:51Z +6287 233 1 10582 4.99 2005-08-01T13:54:22Z 2020-02-15T06:59:51Z +6288 233 1 12443 5.99 2005-08-18T10:50:59Z 2020-02-15T06:59:51Z +6289 233 2 14357 2.99 2005-08-21T09:13:09Z 2020-02-15T06:59:51Z +6290 233 2 15285 2.99 2005-08-22T19:17:24Z 2020-02-15T06:59:51Z +6291 233 1 15790 1.99 2005-08-23T14:01:07Z 2020-02-15T06:59:51Z +6292 233 2 15821 0.99 2005-08-23T15:03:58Z 2020-02-15T06:59:51Z +6293 234 2 1125 4.99 2005-05-31T17:23:44Z 2020-02-15T06:59:51Z +6294 234 2 1245 3.99 2005-06-15T05:09:01Z 2020-02-15T06:59:51Z +6295 234 2 1645 0.99 2005-06-16T09:10:06Z 2020-02-15T06:59:51Z +6296 234 1 1674 2.99 2005-06-16T10:57:00Z 2020-02-15T06:59:51Z +6297 234 2 1993 5.99 2005-06-17T10:59:24Z 2020-02-15T06:59:51Z +6298 234 1 2005 4.99 2005-06-17T11:44:54Z 2020-02-15T06:59:51Z +6299 234 2 2511 5.99 2005-06-18T23:45:30Z 2020-02-15T06:59:51Z +6300 234 2 3185 6.99 2005-06-20T22:58:01Z 2020-02-15T06:59:51Z +6301 234 2 3199 4.99 2005-06-21T00:12:40Z 2020-02-15T06:59:51Z +6302 234 2 4686 0.99 2005-07-08T10:53:39Z 2020-02-15T06:59:51Z +6303 234 1 4721 7.99 2005-07-08T12:39:31Z 2020-02-15T06:59:51Z +6304 234 2 10133 5.99 2005-07-31T21:55:07Z 2020-02-15T06:59:51Z +6305 234 2 10541 0.99 2005-08-01T12:24:54Z 2020-02-15T06:59:51Z +6306 234 2 10580 6.99 2005-08-01T13:51:14Z 2020-02-15T06:59:51Z +6307 234 2 10968 7.99 2005-08-02T04:03:13Z 2020-02-15T06:59:51Z +6308 234 1 11050 4.99 2005-08-02T06:17:16Z 2020-02-15T06:59:51Z +6309 234 1 11073 0.99 2005-08-02T07:13:03Z 2020-02-15T06:59:51Z +6310 234 1 11481 3.99 2005-08-02T22:18:41Z 2020-02-15T06:59:51Z +6311 234 1 11882 3.99 2005-08-17T14:33:41Z 2020-02-15T06:59:51Z +6312 234 1 12226 0.99 2005-08-18T03:00:48Z 2020-02-15T06:59:51Z +6313 234 2 12863 4.99 2005-08-19T02:35:59Z 2020-02-15T06:59:51Z +6314 234 1 12921 5.99 2005-08-19T04:47:48Z 2020-02-15T06:59:51Z +6315 234 2 13349 2.99 2005-08-19T20:43:16Z 2020-02-15T06:59:51Z +6316 234 2 15037 5.99 2005-08-22T09:36:33Z 2020-02-15T06:59:51Z +6317 234 1 15129 2.99 2005-08-22T13:03:52Z 2020-02-15T06:59:51Z +6318 234 1 15778 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6319 235 2 807 2.99 2005-05-29T18:50:50Z 2020-02-15T06:59:51Z +6320 235 1 1148 0.99 2005-05-31T20:38:40Z 2020-02-15T06:59:51Z +6321 235 1 1493 4.99 2005-06-15T21:50:32Z 2020-02-15T06:59:51Z +6322 235 2 1811 0.99 2005-06-16T21:06:20Z 2020-02-15T06:59:51Z +6323 235 2 3581 2.99 2005-07-06T03:57:35Z 2020-02-15T06:59:51Z +6324 235 1 3752 6.99 2005-07-06T12:30:12Z 2020-02-15T06:59:51Z +6325 235 1 3968 4.99 2005-07-06T22:47:09Z 2020-02-15T06:59:51Z +6326 235 2 4592 2.99 2005-07-08T06:31:28Z 2020-02-15T06:59:51Z +6327 235 1 5790 4.99 2005-07-10T14:15:21Z 2020-02-15T06:59:51Z +6328 235 1 6047 2.99 2005-07-11T03:27:01Z 2020-02-15T06:59:51Z +6329 235 2 6352 4.99 2005-07-11T20:34:13Z 2020-02-15T06:59:51Z +6330 235 2 6466 4.99 2005-07-12T01:21:03Z 2020-02-15T06:59:51Z +6331 235 1 8120 0.99 2005-07-28T19:24:24Z 2020-02-15T06:59:51Z +6332 235 2 8446 6.99 2005-07-29T07:38:10Z 2020-02-15T06:59:51Z +6333 235 2 8781 0.99 2005-07-29T20:20:16Z 2020-02-15T06:59:51Z +6334 235 1 9019 5.99 2005-07-30T05:28:53Z 2020-02-15T06:59:51Z +6335 235 2 9519 6.99 2005-07-31T00:45:57Z 2020-02-15T06:59:51Z +6336 235 1 9587 3.99 2005-07-31T03:10:30Z 2020-02-15T06:59:51Z +6337 235 2 10155 0.99 2005-07-31T22:31:43Z 2020-02-15T06:59:51Z +6338 235 2 12332 2.99 2005-08-18T06:51:05Z 2020-02-15T06:59:51Z +6339 235 1 12502 4.99 2005-08-18T13:16:31Z 2020-02-15T06:59:51Z +6340 235 2 13070 0.99 2005-08-19T09:56:23Z 2020-02-15T06:59:51Z +6341 235 1 13469 0.99 2005-08-20T00:59:36Z 2020-02-15T06:59:51Z +6342 235 2 14749 3.99 2005-08-21T23:08:33Z 2020-02-15T06:59:51Z +6343 235 1 15034 6.99 2005-08-22T09:33:08Z 2020-02-15T06:59:51Z +6344 236 2 262 2.99 2005-05-26T15:46:56Z 2020-02-15T06:59:51Z +6345 236 2 344 2.99 2005-05-27T04:30:22Z 2020-02-15T06:59:51Z +6346 236 1 1032 2.99 2005-05-31T04:28:43Z 2020-02-15T06:59:51Z +6347 236 1 1262 0.99 2005-06-15T06:54:53Z 2020-02-15T06:59:51Z +6348 236 2 1308 5.99 2005-06-15T10:07:48Z 2020-02-15T06:59:51Z +6349 236 2 2139 8.99 2005-06-17T21:29:34Z 2020-02-15T06:59:51Z +6350 236 2 2311 6.99 2005-06-18T08:51:29Z 2020-02-15T06:59:51Z +6351 236 1 2630 2.99 2005-06-19T08:47:21Z 2020-02-15T06:59:51Z +6352 236 2 2840 3.99 2005-06-19T22:17:44Z 2020-02-15T06:59:51Z +6353 236 1 3353 4.99 2005-06-21T11:29:23Z 2020-02-15T06:59:51Z +6354 236 2 3460 2.99 2005-06-21T21:46:56Z 2020-02-15T06:59:51Z +6355 236 1 3645 0.99 2005-07-06T07:22:09Z 2020-02-15T06:59:51Z +6356 236 2 3857 4.99 2005-07-06T17:07:54Z 2020-02-15T06:59:51Z +6357 236 2 4749 4.99 2005-07-08T14:05:58Z 2020-02-15T06:59:51Z +6358 236 1 4959 0.99 2005-07-08T23:22:23Z 2020-02-15T06:59:51Z +6359 236 1 5404 2.99 2005-07-09T20:10:43Z 2020-02-15T06:59:51Z +6360 236 1 5545 3.99 2005-07-10T02:50:29Z 2020-02-15T06:59:51Z +6361 236 2 5938 3.99 2005-07-10T22:17:42Z 2020-02-15T06:59:51Z +6362 236 2 6049 0.99 2005-07-11T03:32:32Z 2020-02-15T06:59:51Z +6363 236 2 6281 4.99 2005-07-11T16:38:16Z 2020-02-15T06:59:51Z +6364 236 1 6303 2.99 2005-07-11T17:55:43Z 2020-02-15T06:59:51Z +6365 236 2 6996 4.99 2005-07-27T01:13:45Z 2020-02-15T06:59:51Z +6366 236 2 7047 4.99 2005-07-27T03:31:11Z 2020-02-15T06:59:51Z +6367 236 2 7253 0.99 2005-07-27T10:46:37Z 2020-02-15T06:59:51Z +6368 236 1 7780 5.99 2005-07-28T07:11:55Z 2020-02-15T06:59:51Z +6369 236 1 7792 4.99 2005-07-28T07:24:02Z 2020-02-15T06:59:51Z +6370 236 2 7798 2.99 2005-07-28T07:41:59Z 2020-02-15T06:59:51Z +6371 236 1 8657 2.99 2005-07-29T15:09:25Z 2020-02-15T06:59:51Z +6372 236 1 9011 5.99 2005-07-30T05:16:29Z 2020-02-15T06:59:51Z +6373 236 1 9934 2.99 2005-07-31T15:25:26Z 2020-02-15T06:59:51Z +6374 236 2 10137 4.99 2005-07-31T22:01:41Z 2020-02-15T06:59:51Z +6375 236 2 11139 6.99 2005-08-02T09:27:36Z 2020-02-15T06:59:51Z +6376 236 2 11486 3.99 2005-08-02T22:34:06Z 2020-02-15T06:59:51Z +6377 236 2 11507 5.99 2005-08-16T23:26:43Z 2020-02-15T06:59:51Z +6378 236 1 11895 4.99 2005-08-17T15:15:07Z 2020-02-15T06:59:51Z +6379 236 1 12975 2.99 2005-08-19T06:51:19Z 2020-02-15T06:59:51Z +6380 236 1 13364 2.99 2005-08-19T21:09:30Z 2020-02-15T06:59:51Z +6381 236 1 13443 7.99 2005-08-19T23:53:42Z 2020-02-15T06:59:51Z +6382 236 2 14321 4.99 2005-08-21T08:05:12Z 2020-02-15T06:59:51Z +6383 236 1 14364 7.99 2005-08-21T09:25:11Z 2020-02-15T06:59:51Z +6384 236 2 14722 4.99 2005-08-21T21:50:53Z 2020-02-15T06:59:51Z +6385 236 1 12988 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6386 237 2 133 0.99 2005-05-25T21:48:30Z 2020-02-15T06:59:51Z +6387 237 1 182 4.99 2005-05-26T04:49:17Z 2020-02-15T06:59:51Z +6388 237 1 1500 0.99 2005-06-15T22:00:45Z 2020-02-15T06:59:51Z +6389 237 2 1518 0.99 2005-06-15T23:36:37Z 2020-02-15T06:59:51Z +6390 237 1 2156 4.99 2005-06-17T23:08:12Z 2020-02-15T06:59:51Z +6391 237 1 2492 2.99 2005-06-18T22:04:15Z 2020-02-15T06:59:51Z +6392 237 2 3069 2.99 2005-06-20T14:13:00Z 2020-02-15T06:59:51Z +6393 237 1 4844 4.99 2005-07-08T18:28:13Z 2020-02-15T06:59:51Z +6394 237 2 6053 4.99 2005-07-11T03:51:59Z 2020-02-15T06:59:51Z +6395 237 1 7193 2.99 2005-07-27T08:37:00Z 2020-02-15T06:59:51Z +6396 237 2 7330 3.99 2005-07-27T13:56:46Z 2020-02-15T06:59:51Z +6397 237 1 7812 4.99 2005-07-28T08:06:52Z 2020-02-15T06:59:51Z +6398 237 2 7951 8.99 2005-07-28T13:21:16Z 2020-02-15T06:59:51Z +6399 237 2 8102 2.99 2005-07-28T18:49:43Z 2020-02-15T06:59:51Z +6400 237 2 8748 2.99 2005-07-29T19:08:37Z 2020-02-15T06:59:51Z +6401 237 2 8799 6.99 2005-07-29T21:16:47Z 2020-02-15T06:59:51Z +6402 237 1 8835 3.99 2005-07-29T22:44:35Z 2020-02-15T06:59:51Z +6403 237 1 9276 5.99 2005-07-30T15:09:28Z 2020-02-15T06:59:51Z +6404 237 1 9661 4.99 2005-07-31T06:06:37Z 2020-02-15T06:59:51Z +6405 237 2 9715 1.99 2005-07-31T08:16:58Z 2020-02-15T06:59:51Z +6406 237 2 10056 0.99 2005-07-31T19:19:13Z 2020-02-15T06:59:51Z +6407 237 2 10058 2.99 2005-07-31T19:20:21Z 2020-02-15T06:59:51Z +6408 237 2 11125 4.99 2005-08-02T08:55:35Z 2020-02-15T06:59:51Z +6409 237 2 11479 11.99 2005-08-02T22:18:13Z 2020-02-15T06:59:51Z +6410 237 2 11772 5.99 2005-08-17T10:18:57Z 2020-02-15T06:59:51Z +6411 237 1 12469 0.99 2005-08-18T11:53:07Z 2020-02-15T06:59:51Z +6412 237 2 13914 6.99 2005-08-20T16:38:57Z 2020-02-15T06:59:51Z +6413 237 2 13922 6.99 2005-08-20T17:02:37Z 2020-02-15T06:59:51Z +6414 237 2 13969 6.99 2005-08-20T18:42:40Z 2020-02-15T06:59:51Z +6415 237 2 14453 3.99 2005-08-21T12:33:34Z 2020-02-15T06:59:51Z +6416 237 2 15139 8.99 2005-08-22T13:38:11Z 2020-02-15T06:59:51Z +6417 237 1 15337 0.99 2005-08-22T20:49:51Z 2020-02-15T06:59:51Z +6418 237 2 15931 1.99 2005-08-23T18:28:09Z 2020-02-15T06:59:51Z +6419 238 2 315 4.99 2005-05-26T23:12:55Z 2020-02-15T06:59:51Z +6420 238 1 842 2.99 2005-05-30T00:32:04Z 2020-02-15T06:59:51Z +6421 238 1 1199 2.99 2005-06-15T01:58:50Z 2020-02-15T06:59:51Z +6422 238 1 1660 4.99 2005-06-16T10:12:55Z 2020-02-15T06:59:51Z +6423 238 1 3181 2.99 2005-06-20T22:51:02Z 2020-02-15T06:59:51Z +6424 238 1 4143 0.99 2005-07-07T08:22:07Z 2020-02-15T06:59:51Z +6425 238 1 5616 5.99 2005-07-10T05:21:11Z 2020-02-15T06:59:51Z +6426 238 2 6403 0.99 2005-07-11T22:46:25Z 2020-02-15T06:59:51Z +6427 238 2 7243 4.99 2005-07-27T10:26:11Z 2020-02-15T06:59:51Z +6428 238 1 8310 8.99 2005-07-29T03:25:56Z 2020-02-15T06:59:51Z +6429 238 1 8382 6.99 2005-07-29T05:33:21Z 2020-02-15T06:59:51Z +6430 238 1 8465 0.99 2005-07-29T08:20:49Z 2020-02-15T06:59:51Z +6431 238 1 9065 4.99 2005-07-30T07:25:09Z 2020-02-15T06:59:51Z +6432 238 2 9841 7.99 2005-07-31T12:24:19Z 2020-02-15T06:59:51Z +6433 238 1 10659 5.99 2005-08-01T16:40:34Z 2020-02-15T06:59:51Z +6434 238 2 11543 5.99 2005-08-17T00:54:28Z 2020-02-15T06:59:51Z +6435 238 2 11632 2.99 2005-08-17T04:29:32Z 2020-02-15T06:59:51Z +6436 238 1 11897 2.99 2005-08-17T15:24:06Z 2020-02-15T06:59:51Z +6437 238 1 14312 4.99 2005-08-21T07:48:34Z 2020-02-15T06:59:51Z +6438 238 1 14343 8.99 2005-08-21T08:40:21Z 2020-02-15T06:59:51Z +6439 238 1 15455 0.99 2005-08-23T01:05:00Z 2020-02-15T06:59:51Z +6440 239 2 8 4.99 2005-05-24T23:31:46Z 2020-02-15T06:59:51Z +6441 239 1 444 2.99 2005-05-27T18:39:15Z 2020-02-15T06:59:51Z +6442 239 1 621 4.99 2005-05-28T15:58:12Z 2020-02-15T06:59:51Z +6443 239 1 636 6.99 2005-05-28T17:47:58Z 2020-02-15T06:59:51Z +6444 239 1 1022 7.99 2005-05-31T03:16:45Z 2020-02-15T06:59:51Z +6445 239 2 1082 5.99 2005-05-31T11:02:01Z 2020-02-15T06:59:51Z +6446 239 1 1160 4.99 2005-06-14T23:00:34Z 2020-02-15T06:59:51Z +6447 239 2 1560 4.99 2005-06-16T02:36:43Z 2020-02-15T06:59:51Z +6448 239 2 2215 2.99 2005-06-18T02:48:21Z 2020-02-15T06:59:51Z +6449 239 1 2390 4.99 2005-06-18T15:29:26Z 2020-02-15T06:59:51Z +6450 239 1 3383 5.99 2005-06-21T14:07:19Z 2020-02-15T06:59:51Z +6451 239 2 3547 0.99 2005-07-06T02:18:06Z 2020-02-15T06:59:51Z +6452 239 1 3552 5.99 2005-07-06T02:34:09Z 2020-02-15T06:59:51Z +6453 239 2 4920 7.99 2005-07-08T21:42:10Z 2020-02-15T06:59:51Z +6454 239 2 5651 4.99 2005-07-10T07:17:13Z 2020-02-15T06:59:51Z +6455 239 1 5960 0.99 2005-07-10T23:38:34Z 2020-02-15T06:59:51Z +6456 239 1 6573 0.99 2005-07-12T06:03:40Z 2020-02-15T06:59:51Z +6457 239 2 7012 8.99 2005-07-27T02:01:03Z 2020-02-15T06:59:51Z +6458 239 1 7426 0.99 2005-07-27T17:19:46Z 2020-02-15T06:59:51Z +6459 239 2 7491 2.99 2005-07-27T19:53:23Z 2020-02-15T06:59:51Z +6460 239 1 8457 6.99 2005-07-29T07:59:03Z 2020-02-15T06:59:51Z +6461 239 2 9676 0.99 2005-07-31T06:39:13Z 2020-02-15T06:59:51Z +6462 239 1 9863 5.99 2005-07-31T13:05:29Z 2020-02-15T06:59:51Z +6463 239 1 10755 0.99 2005-08-01T20:14:14Z 2020-02-15T06:59:51Z +6464 239 2 10923 2.99 2005-08-02T02:15:01Z 2020-02-15T06:59:51Z +6465 239 1 11487 2.99 2005-08-02T22:35:05Z 2020-02-15T06:59:51Z +6466 239 2 11900 4.99 2005-08-17T15:30:44Z 2020-02-15T06:59:51Z +6467 239 1 11968 0.99 2005-08-17T17:47:34Z 2020-02-15T06:59:51Z +6468 239 1 12340 4.99 2005-08-18T07:07:01Z 2020-02-15T06:59:51Z +6469 239 1 12721 1.99 2005-08-18T21:30:12Z 2020-02-15T06:59:51Z +6470 239 1 13175 4.99 2005-08-19T13:54:53Z 2020-02-15T06:59:51Z +6471 239 2 13427 4.99 2005-08-19T23:19:02Z 2020-02-15T06:59:51Z +6472 239 2 13999 3.99 2005-08-20T19:53:32Z 2020-02-15T06:59:51Z +6473 239 2 14062 1.99 2005-08-20T22:34:34Z 2020-02-15T06:59:51Z +6474 240 1 246 2.99 2005-05-26T13:57:07Z 2020-02-15T06:59:51Z +6475 240 1 460 2.99 2005-05-27T20:02:03Z 2020-02-15T06:59:51Z +6476 240 1 643 4.99 2005-05-28T18:52:11Z 2020-02-15T06:59:51Z +6477 240 2 2196 3.99 2005-06-18T01:47:07Z 2020-02-15T06:59:51Z +6478 240 1 2264 4.99 2005-06-18T05:58:45Z 2020-02-15T06:59:51Z +6479 240 2 2872 5.99 2005-06-20T00:38:21Z 2020-02-15T06:59:51Z +6480 240 2 4305 4.99 2005-07-07T17:07:11Z 2020-02-15T06:59:51Z +6481 240 2 5262 4.99 2005-07-09T14:08:01Z 2020-02-15T06:59:51Z +6482 240 1 5596 0.99 2005-07-10T04:43:14Z 2020-02-15T06:59:51Z +6483 240 1 6272 0.99 2005-07-11T16:03:49Z 2020-02-15T06:59:51Z +6484 240 2 6470 0.99 2005-07-12T01:29:41Z 2020-02-15T06:59:51Z +6485 240 1 6956 4.99 2005-07-26T23:55:57Z 2020-02-15T06:59:51Z +6486 240 1 7001 4.99 2005-07-27T01:25:34Z 2020-02-15T06:59:51Z +6487 240 1 7467 8.99 2005-07-27T18:51:54Z 2020-02-15T06:59:51Z +6488 240 2 7481 4.99 2005-07-27T19:20:25Z 2020-02-15T06:59:51Z +6489 240 1 7870 4.99 2005-07-28T10:16:03Z 2020-02-15T06:59:51Z +6490 240 2 8503 3.99 2005-07-29T09:16:50Z 2020-02-15T06:59:51Z +6491 240 2 8905 5.99 2005-07-30T01:11:11Z 2020-02-15T06:59:51Z +6492 240 1 10308 7.99 2005-08-01T04:22:49Z 2020-02-15T06:59:51Z +6493 240 1 11745 3.99 2005-08-17T09:00:01Z 2020-02-15T06:59:51Z +6494 240 2 12283 6.99 2005-08-18T04:54:25Z 2020-02-15T06:59:51Z +6495 240 2 13030 2.99 2005-08-19T08:28:11Z 2020-02-15T06:59:51Z +6496 240 2 13119 4.99 2005-08-19T11:44:59Z 2020-02-15T06:59:51Z +6497 240 1 13663 8.99 2005-08-20T08:12:33Z 2020-02-15T06:59:51Z +6498 240 2 14573 2.99 2005-08-21T16:44:32Z 2020-02-15T06:59:51Z +6499 240 2 15641 0.99 2005-08-23T08:06:49Z 2020-02-15T06:59:51Z +6500 241 1 627 7.99 2005-05-28T17:04:43Z 2020-02-15T06:59:51Z +6501 241 1 1059 3.99 2005-05-31T08:20:43Z 2020-02-15T06:59:51Z +6502 241 2 2428 0.99 2005-06-18T17:47:34Z 2020-02-15T06:59:51Z +6503 241 1 2455 0.99 2005-06-18T19:33:06Z 2020-02-15T06:59:51Z +6504 241 2 2478 5.99 2005-06-18T21:01:21Z 2020-02-15T06:59:51Z +6505 241 2 2683 2.99 2005-06-19T12:27:19Z 2020-02-15T06:59:51Z +6506 241 2 3258 0.99 2005-06-21T03:53:58Z 2020-02-15T06:59:51Z +6507 241 2 3822 0.99 2005-07-06T15:41:15Z 2020-02-15T06:59:51Z +6508 241 1 4731 0.99 2005-07-08T13:08:18Z 2020-02-15T06:59:51Z +6509 241 2 5017 2.99 2005-07-09T02:00:16Z 2020-02-15T06:59:51Z +6510 241 1 5211 0.99 2005-07-09T11:26:50Z 2020-02-15T06:59:51Z +6511 241 1 5438 4.99 2005-07-09T21:34:32Z 2020-02-15T06:59:51Z +6512 241 2 5525 3.99 2005-07-10T02:03:08Z 2020-02-15T06:59:51Z +6513 241 1 5981 4.99 2005-07-11T00:19:04Z 2020-02-15T06:59:51Z +6514 241 2 6090 6.99 2005-07-11T05:47:08Z 2020-02-15T06:59:51Z +6515 241 2 6245 2.99 2005-07-11T14:56:57Z 2020-02-15T06:59:51Z +6516 241 1 7320 0.99 2005-07-27T13:33:35Z 2020-02-15T06:59:51Z +6517 241 1 7434 2.99 2005-07-27T17:34:40Z 2020-02-15T06:59:51Z +6518 241 1 7860 2.99 2005-07-28T09:58:02Z 2020-02-15T06:59:51Z +6519 241 1 9500 6.99 2005-07-30T23:58:36Z 2020-02-15T06:59:51Z +6520 241 1 9528 3.99 2005-07-31T01:05:04Z 2020-02-15T06:59:51Z +6521 241 1 9944 5.99 2005-07-31T15:44:43Z 2020-02-15T06:59:51Z +6522 241 2 10447 3.99 2005-08-01T09:04:58Z 2020-02-15T06:59:51Z +6523 241 1 10652 2.99 2005-08-01T16:24:08Z 2020-02-15T06:59:51Z +6524 241 1 11423 1.99 2005-08-02T19:57:13Z 2020-02-15T06:59:51Z +6525 241 2 12418 4.99 2005-08-18T09:59:36Z 2020-02-15T06:59:51Z +6526 241 1 12956 4.99 2005-08-19T06:06:26Z 2020-02-15T06:59:51Z +6527 241 2 13077 2.99 2005-08-19T10:15:19Z 2020-02-15T06:59:51Z +6528 241 2 14269 7.99 2005-08-21T06:22:07Z 2020-02-15T06:59:51Z +6529 241 2 14485 2.99 2005-08-21T13:52:07Z 2020-02-15T06:59:51Z +6530 241 1 14936 0.99 2005-08-22T05:51:26Z 2020-02-15T06:59:51Z +6531 241 2 15137 2.99 2005-08-22T13:20:28Z 2020-02-15T06:59:51Z +6532 241 1 15429 2.99 2005-08-23T00:20:31Z 2020-02-15T06:59:51Z +6533 241 1 15767 4.99 2005-08-23T13:14:15Z 2020-02-15T06:59:51Z +6534 242 1 108 2.99 2005-05-25T18:30:05Z 2020-02-15T06:59:51Z +6535 242 2 283 3.99 2005-05-26T19:05:05Z 2020-02-15T06:59:51Z +6536 242 2 881 4.99 2005-05-30T06:15:36Z 2020-02-15T06:59:51Z +6537 242 2 1304 4.99 2005-06-15T09:56:02Z 2020-02-15T06:59:51Z +6538 242 1 1384 4.99 2005-06-15T15:22:03Z 2020-02-15T06:59:51Z +6539 242 1 1483 4.99 2005-06-15T21:21:58Z 2020-02-15T06:59:51Z +6540 242 2 1702 4.99 2005-06-16T13:21:05Z 2020-02-15T06:59:51Z +6541 242 1 2691 4.99 2005-06-19T13:06:50Z 2020-02-15T06:59:51Z +6542 242 2 2942 4.99 2005-06-20T05:27:31Z 2020-02-15T06:59:51Z +6543 242 1 3471 4.99 2005-07-05T22:51:44Z 2020-02-15T06:59:51Z +6544 242 2 3604 0.99 2005-07-06T05:25:22Z 2020-02-15T06:59:51Z +6545 242 1 4426 4.99 2005-07-07T22:28:32Z 2020-02-15T06:59:51Z +6546 242 2 4895 1.99 2005-07-08T20:22:05Z 2020-02-15T06:59:51Z +6547 242 2 5666 5.99 2005-07-10T08:10:29Z 2020-02-15T06:59:51Z +6548 242 2 7149 3.99 2005-07-27T07:10:40Z 2020-02-15T06:59:51Z +6549 242 1 8491 4.99 2005-07-29T09:02:13Z 2020-02-15T06:59:51Z +6550 242 1 9423 3.99 2005-07-30T21:10:14Z 2020-02-15T06:59:51Z +6551 242 1 9730 6.99 2005-07-31T08:50:08Z 2020-02-15T06:59:51Z +6552 242 2 10367 0.99 2005-08-01T06:12:19Z 2020-02-15T06:59:51Z +6553 242 2 10382 4.99 2005-08-01T06:36:45Z 2020-02-15T06:59:51Z +6554 242 2 10650 9.99 2005-08-01T16:18:45Z 2020-02-15T06:59:51Z +6555 242 2 11020 0.99 2005-08-02T05:29:48Z 2020-02-15T06:59:51Z +6556 242 1 11258 4.99 2005-08-02T13:45:39Z 2020-02-15T06:59:51Z +6557 242 2 11607 0.99 2005-08-17T03:36:06Z 2020-02-15T06:59:51Z +6558 242 1 11931 4.99 2005-08-17T16:35:14Z 2020-02-15T06:59:51Z +6559 242 2 12724 7.99 2005-08-18T21:37:20Z 2020-02-15T06:59:51Z +6560 242 1 12855 4.99 2005-08-19T02:18:58Z 2020-02-15T06:59:51Z +6561 242 1 13271 9.99 2005-08-19T17:42:06Z 2020-02-15T06:59:51Z +6562 242 2 13567 0.99 2005-08-20T04:49:21Z 2020-02-15T06:59:51Z +6563 242 2 13646 5.99 2005-08-20T07:47:08Z 2020-02-15T06:59:51Z +6564 242 1 14515 0.99 2005-08-21T14:52:14Z 2020-02-15T06:59:51Z +6565 242 1 15002 0.99 2005-08-22T08:06:00Z 2020-02-15T06:59:51Z +6566 243 1 188 4.99 2005-05-26T05:47:12Z 2020-02-15T06:59:51Z +6567 243 1 1405 5.99 2005-06-15T16:41:26Z 2020-02-15T06:59:51Z +6568 243 1 1452 0.99 2005-06-15T19:32:52Z 2020-02-15T06:59:51Z +6569 243 2 2757 5.99 2005-06-19T17:01:14Z 2020-02-15T06:59:51Z +6570 243 2 3854 5.99 2005-07-06T17:02:33Z 2020-02-15T06:59:51Z +6571 243 1 3965 4.99 2005-07-06T22:36:20Z 2020-02-15T06:59:51Z +6572 243 1 4831 0.99 2005-07-08T18:00:14Z 2020-02-15T06:59:51Z +6573 243 1 5502 0.99 2005-07-10T00:34:15Z 2020-02-15T06:59:51Z +6574 243 2 6038 3.99 2005-07-11T03:10:37Z 2020-02-15T06:59:51Z +6575 243 2 6820 2.99 2005-07-12T18:21:30Z 2020-02-15T06:59:51Z +6576 243 2 7022 2.99 2005-07-27T02:31:15Z 2020-02-15T06:59:51Z +6577 243 2 7165 0.99 2005-07-27T07:36:46Z 2020-02-15T06:59:51Z +6578 243 1 8834 4.99 2005-07-29T22:41:48Z 2020-02-15T06:59:51Z +6579 243 2 9035 2.99 2005-07-30T06:16:07Z 2020-02-15T06:59:51Z +6580 243 2 9514 4.99 2005-07-31T00:29:44Z 2020-02-15T06:59:51Z +6581 243 2 9675 2.99 2005-07-31T06:37:07Z 2020-02-15T06:59:51Z +6582 243 2 9988 5.99 2005-07-31T17:22:36Z 2020-02-15T06:59:51Z +6583 243 1 12209 2.99 2005-08-18T02:27:20Z 2020-02-15T06:59:51Z +6584 243 1 13291 2.99 2005-08-19T18:32:11Z 2020-02-15T06:59:51Z +6585 243 1 14033 2.99 2005-08-20T21:30:53Z 2020-02-15T06:59:51Z +6586 243 1 14108 0.99 2005-08-21T00:52:45Z 2020-02-15T06:59:51Z +6587 243 1 14272 3.99 2005-08-21T06:24:55Z 2020-02-15T06:59:51Z +6588 243 2 14581 1.99 2005-08-21T17:07:08Z 2020-02-15T06:59:51Z +6589 243 2 14705 2.99 2005-08-21T21:02:55Z 2020-02-15T06:59:51Z +6590 244 2 592 4.99 2005-05-28T13:21:08Z 2020-02-15T06:59:51Z +6591 244 1 797 1.99 2005-05-29T17:12:17Z 2020-02-15T06:59:51Z +6592 244 2 1189 6.99 2005-06-15T01:04:22Z 2020-02-15T06:59:51Z +6593 244 1 1595 5.99 2005-06-16T05:23:46Z 2020-02-15T06:59:51Z +6594 244 2 2955 3.99 2005-06-20T06:46:35Z 2020-02-15T06:59:51Z +6595 244 1 4814 4.99 2005-07-08T17:11:09Z 2020-02-15T06:59:51Z +6596 244 2 5387 4.99 2005-07-09T19:25:14Z 2020-02-15T06:59:51Z +6597 244 2 5461 0.99 2005-07-09T22:48:04Z 2020-02-15T06:59:51Z +6598 244 2 5692 0.99 2005-07-10T09:32:22Z 2020-02-15T06:59:51Z +6599 244 1 5779 4.99 2005-07-10T13:45:54Z 2020-02-15T06:59:51Z +6600 244 1 5803 3.99 2005-07-10T15:05:42Z 2020-02-15T06:59:51Z +6601 244 2 6374 4.99 2005-07-11T21:36:10Z 2020-02-15T06:59:51Z +6602 244 2 6608 2.99 2005-07-12T08:16:50Z 2020-02-15T06:59:51Z +6603 244 2 6683 2.99 2005-07-12T12:14:05Z 2020-02-15T06:59:51Z +6604 244 2 8454 0.99 2005-07-29T07:49:04Z 2020-02-15T06:59:51Z +6605 244 2 8844 5.99 2005-07-29T23:05:08Z 2020-02-15T06:59:51Z +6606 244 1 10001 4.99 2005-07-31T17:46:18Z 2020-02-15T06:59:51Z +6607 244 2 10047 4.99 2005-07-31T19:07:43Z 2020-02-15T06:59:51Z +6608 244 1 10152 5.99 2005-07-31T22:28:05Z 2020-02-15T06:59:51Z +6609 244 2 10684 6.99 2005-08-01T17:47:00Z 2020-02-15T06:59:51Z +6610 244 2 10969 2.99 2005-08-02T04:04:32Z 2020-02-15T06:59:51Z +6611 244 2 11157 0.99 2005-08-02T09:58:15Z 2020-02-15T06:59:51Z +6612 244 1 11267 9.99 2005-08-02T14:09:08Z 2020-02-15T06:59:51Z +6613 244 1 11762 9.99 2005-08-17T09:48:06Z 2020-02-15T06:59:51Z +6614 244 1 13630 4.99 2005-08-20T07:05:56Z 2020-02-15T06:59:51Z +6615 244 2 13774 0.99 2005-08-20T11:54:01Z 2020-02-15T06:59:51Z +6616 244 1 13928 0.99 2005-08-20T17:12:28Z 2020-02-15T06:59:51Z +6617 244 1 14367 0.99 2005-08-21T09:31:44Z 2020-02-15T06:59:51Z +6618 244 2 14657 0.99 2005-08-21T19:39:43Z 2020-02-15T06:59:51Z +6619 244 1 14919 1.99 2005-08-22T05:07:17Z 2020-02-15T06:59:51Z +6620 244 1 14975 3.99 2005-08-22T07:07:50Z 2020-02-15T06:59:51Z +6621 244 2 12736 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6622 245 2 79 4.99 2005-05-25T12:11:07Z 2020-02-15T06:59:51Z +6623 245 1 241 0.99 2005-05-26T12:49:01Z 2020-02-15T06:59:51Z +6624 245 1 519 7.99 2005-05-28T03:22:33Z 2020-02-15T06:59:51Z +6625 245 1 719 2.99 2005-05-29T05:16:05Z 2020-02-15T06:59:51Z +6626 245 2 725 2.99 2005-05-29T06:03:41Z 2020-02-15T06:59:51Z +6627 245 2 948 8.99 2005-05-30T15:44:27Z 2020-02-15T06:59:51Z +6628 245 1 1377 2.99 2005-06-15T15:02:03Z 2020-02-15T06:59:51Z +6629 245 1 2122 2.99 2005-06-17T20:48:27Z 2020-02-15T06:59:51Z +6630 245 1 3157 2.99 2005-06-20T21:07:54Z 2020-02-15T06:59:51Z +6631 245 1 3634 2.99 2005-07-06T06:51:14Z 2020-02-15T06:59:51Z +6632 245 2 5321 2.99 2005-07-09T16:26:33Z 2020-02-15T06:59:51Z +6633 245 1 5764 4.99 2005-07-10T12:58:16Z 2020-02-15T06:59:51Z +6634 245 2 6242 2.99 2005-07-11T14:45:04Z 2020-02-15T06:59:51Z +6635 245 1 6795 5.99 2005-07-12T16:41:00Z 2020-02-15T06:59:51Z +6636 245 2 6962 0.99 2005-07-27T00:10:58Z 2020-02-15T06:59:51Z +6637 245 1 7230 4.99 2005-07-27T10:01:41Z 2020-02-15T06:59:51Z +6638 245 2 7233 5.99 2005-07-27T10:08:36Z 2020-02-15T06:59:51Z +6639 245 1 7358 0.99 2005-07-27T14:49:44Z 2020-02-15T06:59:51Z +6640 245 2 7397 4.99 2005-07-27T16:05:00Z 2020-02-15T06:59:51Z +6641 245 2 8701 6.99 2005-07-29T17:02:35Z 2020-02-15T06:59:51Z +6642 245 1 8811 10.99 2005-07-29T21:46:21Z 2020-02-15T06:59:51Z +6643 245 2 9088 0.99 2005-07-30T08:21:02Z 2020-02-15T06:59:51Z +6644 245 2 9169 4.99 2005-07-30T11:35:00Z 2020-02-15T06:59:51Z +6645 245 1 9813 6.99 2005-07-31T11:29:23Z 2020-02-15T06:59:51Z +6646 245 1 10087 3.99 2005-07-31T20:15:22Z 2020-02-15T06:59:51Z +6647 245 2 11061 0.99 2005-08-02T06:50:18Z 2020-02-15T06:59:51Z +6648 245 1 11105 0.99 2005-08-02T08:13:31Z 2020-02-15T06:59:51Z +6649 245 1 11211 0.99 2005-08-02T12:16:48Z 2020-02-15T06:59:51Z +6650 245 1 12303 7.99 2005-08-18T05:43:22Z 2020-02-15T06:59:51Z +6651 245 1 13286 0.99 2005-08-19T18:28:07Z 2020-02-15T06:59:51Z +6652 245 1 15782 6.99 2005-08-23T13:43:26Z 2020-02-15T06:59:51Z +6653 245 2 12682 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6654 246 1 124 6.99 2005-05-25T20:46:11Z 2020-02-15T06:59:51Z +6655 246 2 421 8.99 2005-05-27T15:30:13Z 2020-02-15T06:59:51Z +6656 246 2 434 5.99 2005-05-27T16:54:27Z 2020-02-15T06:59:51Z +6657 246 1 699 3.99 2005-05-29T02:11:44Z 2020-02-15T06:59:51Z +6658 246 1 1051 4.99 2005-05-31T07:02:09Z 2020-02-15T06:59:51Z +6659 246 2 1448 1.99 2005-06-15T19:17:16Z 2020-02-15T06:59:51Z +6660 246 1 1968 2.99 2005-06-17T09:20:36Z 2020-02-15T06:59:51Z +6661 246 2 2704 1.99 2005-06-19T13:50:10Z 2020-02-15T06:59:51Z +6662 246 1 2725 0.99 2005-06-19T15:01:23Z 2020-02-15T06:59:51Z +6663 246 1 3152 4.99 2005-06-20T20:42:41Z 2020-02-15T06:59:51Z +6664 246 1 4092 7.99 2005-07-07T05:54:18Z 2020-02-15T06:59:51Z +6665 246 2 4905 4.99 2005-07-08T20:56:00Z 2020-02-15T06:59:51Z +6666 246 2 4994 2.99 2005-07-09T00:54:13Z 2020-02-15T06:59:51Z +6667 246 2 5347 0.99 2005-07-09T17:31:32Z 2020-02-15T06:59:51Z +6668 246 1 6688 4.99 2005-07-12T12:22:12Z 2020-02-15T06:59:51Z +6669 246 2 9525 5.99 2005-07-31T01:02:18Z 2020-02-15T06:59:51Z +6670 246 2 10208 4.99 2005-08-01T00:54:51Z 2020-02-15T06:59:51Z +6671 246 2 10683 2.99 2005-08-01T17:33:03Z 2020-02-15T06:59:51Z +6672 246 2 13418 5.99 2005-08-19T22:53:56Z 2020-02-15T06:59:51Z +6673 246 1 13750 6.99 2005-08-20T11:11:42Z 2020-02-15T06:59:51Z +6674 246 1 13987 4.99 2005-08-20T19:19:30Z 2020-02-15T06:59:51Z +6675 246 1 14360 6.99 2005-08-21T09:16:40Z 2020-02-15T06:59:51Z +6676 246 1 15746 2.99 2005-08-23T12:26:19Z 2020-02-15T06:59:51Z +6677 247 1 189 4.99 2005-05-26T06:01:41Z 2020-02-15T06:59:51Z +6678 247 2 448 3.99 2005-05-27T19:03:08Z 2020-02-15T06:59:51Z +6679 247 1 450 6.99 2005-05-27T19:18:54Z 2020-02-15T06:59:51Z +6680 247 1 2288 5.99 2005-06-18T07:23:17Z 2020-02-15T06:59:51Z +6681 247 2 3955 2.99 2005-07-06T21:58:08Z 2020-02-15T06:59:51Z +6682 247 2 4198 6.99 2005-07-07T11:08:11Z 2020-02-15T06:59:51Z +6683 247 1 4492 2.99 2005-07-08T01:32:04Z 2020-02-15T06:59:51Z +6684 247 2 4995 2.99 2005-07-09T00:57:46Z 2020-02-15T06:59:51Z +6685 247 1 5328 6.99 2005-07-09T16:48:29Z 2020-02-15T06:59:51Z +6686 247 1 5842 4.99 2005-07-10T17:11:37Z 2020-02-15T06:59:51Z +6687 247 1 7963 5.99 2005-07-28T13:48:38Z 2020-02-15T06:59:51Z +6688 247 1 10279 1.99 2005-08-01T03:26:44Z 2020-02-15T06:59:51Z +6689 247 1 10410 6.99 2005-08-01T07:53:29Z 2020-02-15T06:59:51Z +6690 247 2 11204 2.99 2005-08-02T11:56:31Z 2020-02-15T06:59:51Z +6691 247 2 11306 2.99 2005-08-02T15:45:10Z 2020-02-15T06:59:51Z +6692 247 1 11495 0.99 2005-08-16T22:51:20Z 2020-02-15T06:59:51Z +6693 247 2 12265 4.99 2005-08-18T04:22:01Z 2020-02-15T06:59:51Z +6694 247 1 12482 7.99 2005-08-18T12:37:36Z 2020-02-15T06:59:51Z +6695 247 1 12491 4.99 2005-08-18T12:48:45Z 2020-02-15T06:59:51Z +6696 247 1 12824 4.99 2005-08-19T01:18:00Z 2020-02-15T06:59:51Z +6697 247 1 14041 4.99 2005-08-20T21:45:23Z 2020-02-15T06:59:51Z +6698 247 1 15783 4.99 2005-08-23T13:45:44Z 2020-02-15T06:59:51Z +6699 248 2 330 7.99 2005-05-27T02:15:30Z 2020-02-15T06:59:51Z +6700 248 1 618 4.99 2005-05-28T15:50:07Z 2020-02-15T06:59:51Z +6701 248 1 2066 3.99 2005-06-17T16:07:08Z 2020-02-15T06:59:51Z +6702 248 2 2371 0.99 2005-06-18T14:35:29Z 2020-02-15T06:59:51Z +6703 248 1 3910 0.99 2005-07-06T20:05:18Z 2020-02-15T06:59:51Z +6704 248 2 4541 4.99 2005-07-08T04:04:19Z 2020-02-15T06:59:51Z +6705 248 1 4841 0.99 2005-07-08T18:18:23Z 2020-02-15T06:59:51Z +6706 248 1 5370 2.99 2005-07-09T18:43:19Z 2020-02-15T06:59:51Z +6707 248 2 6617 2.99 2005-07-12T08:39:56Z 2020-02-15T06:59:51Z +6708 248 2 7778 5.99 2005-07-28T07:10:11Z 2020-02-15T06:59:51Z +6709 248 2 10418 4.99 2005-08-01T08:11:07Z 2020-02-15T06:59:51Z +6710 248 1 12241 0.99 2005-08-18T03:33:17Z 2020-02-15T06:59:51Z +6711 248 1 13918 0.99 2005-08-20T16:47:32Z 2020-02-15T06:59:51Z +6712 248 2 14704 0.99 2005-08-21T21:02:22Z 2020-02-15T06:59:51Z +6713 248 2 14885 5.99 2005-08-22T03:58:29Z 2020-02-15T06:59:51Z +6714 249 2 316 4.99 2005-05-26T23:22:55Z 2020-02-15T06:59:51Z +6715 249 2 400 2.99 2005-05-27T12:51:44Z 2020-02-15T06:59:51Z +6716 249 1 438 6.99 2005-05-27T17:52:34Z 2020-02-15T06:59:51Z +6717 249 1 597 3.99 2005-05-28T14:01:02Z 2020-02-15T06:59:51Z +6718 249 1 1204 0.99 2005-06-15T02:21:46Z 2020-02-15T06:59:51Z +6719 249 1 1473 5.99 2005-06-15T20:55:20Z 2020-02-15T06:59:51Z +6720 249 2 1753 2.99 2005-06-16T17:08:17Z 2020-02-15T06:59:51Z +6721 249 2 2129 1.99 2005-06-17T20:58:32Z 2020-02-15T06:59:51Z +6722 249 2 3175 7.99 2005-06-20T22:30:23Z 2020-02-15T06:59:51Z +6723 249 1 4352 9.99 2005-07-07T19:15:58Z 2020-02-15T06:59:51Z +6724 249 1 5011 4.99 2005-07-09T01:44:40Z 2020-02-15T06:59:51Z +6725 249 1 5275 4.99 2005-07-09T14:34:18Z 2020-02-15T06:59:51Z +6726 249 2 5639 3.99 2005-07-10T06:33:39Z 2020-02-15T06:59:51Z +6727 249 2 6670 7.99 2005-07-12T11:44:33Z 2020-02-15T06:59:51Z +6728 249 1 7544 7.99 2005-07-27T21:47:37Z 2020-02-15T06:59:51Z +6729 249 1 7804 2.99 2005-07-28T07:56:00Z 2020-02-15T06:59:51Z +6730 249 2 7881 4.99 2005-07-28T10:33:22Z 2020-02-15T06:59:51Z +6731 249 1 11124 1.99 2005-08-02T08:55:25Z 2020-02-15T06:59:51Z +6732 249 1 11159 4.99 2005-08-02T10:00:55Z 2020-02-15T06:59:51Z +6733 249 2 11668 0.99 2005-08-17T05:47:32Z 2020-02-15T06:59:51Z +6734 249 2 13981 4.99 2005-08-20T19:07:20Z 2020-02-15T06:59:51Z +6735 249 2 14285 0.99 2005-08-21T06:50:48Z 2020-02-15T06:59:51Z +6736 249 1 15160 6.99 2005-08-22T14:33:50Z 2020-02-15T06:59:51Z +6737 250 1 61 5.99 2005-05-25T09:01:57Z 2020-02-15T06:59:51Z +6738 250 1 176 3.99 2005-05-26T03:47:39Z 2020-02-15T06:59:51Z +6739 250 1 637 4.99 2005-05-28T18:14:29Z 2020-02-15T06:59:51Z +6740 250 2 687 0.99 2005-05-29T00:32:09Z 2020-02-15T06:59:51Z +6741 250 1 1146 2.99 2005-05-31T20:34:45Z 2020-02-15T06:59:51Z +6742 250 1 2432 4.99 2005-06-18T17:59:18Z 2020-02-15T06:59:51Z +6743 250 1 3635 4.99 2005-07-06T06:55:36Z 2020-02-15T06:59:51Z +6744 250 1 3951 3.99 2005-07-06T21:50:41Z 2020-02-15T06:59:51Z +6745 250 1 5479 2.99 2005-07-09T23:47:33Z 2020-02-15T06:59:51Z +6746 250 1 5540 0.99 2005-07-10T02:44:21Z 2020-02-15T06:59:51Z +6747 250 1 5998 2.99 2005-07-11T01:20:46Z 2020-02-15T06:59:51Z +6748 250 1 8579 2.99 2005-07-29T11:59:22Z 2020-02-15T06:59:51Z +6749 250 2 9099 0.99 2005-07-30T08:45:48Z 2020-02-15T06:59:51Z +6750 250 2 10604 4.99 2005-08-01T14:35:08Z 2020-02-15T06:59:51Z +6751 250 1 12361 0.99 2005-08-18T07:47:31Z 2020-02-15T06:59:51Z +6752 250 1 12810 0.99 2005-08-19T00:44:10Z 2020-02-15T06:59:51Z +6753 250 2 14565 4.99 2005-08-21T16:24:45Z 2020-02-15T06:59:51Z +6754 250 1 14587 5.99 2005-08-21T17:20:55Z 2020-02-15T06:59:51Z +6755 250 2 14814 4.99 2005-08-22T01:12:14Z 2020-02-15T06:59:51Z +6756 250 2 15247 6.99 2005-08-22T17:52:05Z 2020-02-15T06:59:51Z +6757 251 1 264 2.99 2005-05-26T16:00:49Z 2020-02-15T06:59:51Z +6758 251 1 309 1.99 2005-05-26T22:38:10Z 2020-02-15T06:59:51Z +6759 251 2 393 2.99 2005-05-27T11:18:25Z 2020-02-15T06:59:51Z +6760 251 2 1069 3.99 2005-05-31T09:32:31Z 2020-02-15T06:59:51Z +6761 251 1 1091 4.99 2005-05-31T12:11:04Z 2020-02-15T06:59:51Z +6762 251 2 1155 2.99 2005-05-31T22:17:11Z 2020-02-15T06:59:51Z +6763 251 1 2238 6.99 2005-06-18T04:22:06Z 2020-02-15T06:59:51Z +6764 251 2 3422 7.99 2005-06-21T17:24:40Z 2020-02-15T06:59:51Z +6765 251 1 3464 2.99 2005-06-21T22:08:58Z 2020-02-15T06:59:51Z +6766 251 1 3799 4.99 2005-07-06T15:00:14Z 2020-02-15T06:59:51Z +6767 251 2 4026 3.99 2005-07-07T02:15:48Z 2020-02-15T06:59:51Z +6768 251 2 4848 2.99 2005-07-08T18:30:16Z 2020-02-15T06:59:51Z +6769 251 2 5012 2.99 2005-07-09T01:45:04Z 2020-02-15T06:59:51Z +6770 251 2 5979 2.99 2005-07-11T00:17:09Z 2020-02-15T06:59:51Z +6771 251 2 6413 6.99 2005-07-11T23:26:11Z 2020-02-15T06:59:51Z +6772 251 2 7338 8.99 2005-07-27T14:13:34Z 2020-02-15T06:59:51Z +6773 251 2 8443 2.99 2005-07-29T07:33:12Z 2020-02-15T06:59:51Z +6774 251 2 8982 0.99 2005-07-30T04:31:02Z 2020-02-15T06:59:51Z +6775 251 1 9196 2.99 2005-07-30T12:30:19Z 2020-02-15T06:59:51Z +6776 251 1 9892 0.99 2005-07-31T14:06:25Z 2020-02-15T06:59:51Z +6777 251 1 10575 7.99 2005-08-01T13:41:41Z 2020-02-15T06:59:51Z +6778 251 1 11733 0.99 2005-08-17T08:31:03Z 2020-02-15T06:59:51Z +6779 251 2 12047 3.99 2005-08-17T20:48:32Z 2020-02-15T06:59:51Z +6780 251 2 12666 4.99 2005-08-18T19:11:41Z 2020-02-15T06:59:51Z +6781 251 2 13121 2.99 2005-08-19T11:51:39Z 2020-02-15T06:59:51Z +6782 251 1 13243 2.99 2005-08-19T16:33:16Z 2020-02-15T06:59:51Z +6783 251 2 13260 6.99 2005-08-19T17:09:22Z 2020-02-15T06:59:51Z +6784 251 1 14292 0.99 2005-08-21T07:06:20Z 2020-02-15T06:59:51Z +6785 251 2 15647 2.99 2005-08-23T08:23:56Z 2020-02-15T06:59:51Z +6786 251 2 15870 4.99 2005-08-23T16:23:08Z 2020-02-15T06:59:51Z +6787 251 1 14107 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6788 252 1 707 4.99 2005-05-29T03:18:19Z 2020-02-15T06:59:51Z +6789 252 1 1095 0.99 2005-05-31T13:15:41Z 2020-02-15T06:59:51Z +6790 252 1 1395 5.99 2005-06-15T16:21:04Z 2020-02-15T06:59:51Z +6791 252 2 2716 4.99 2005-06-19T14:40:17Z 2020-02-15T06:59:51Z +6792 252 1 2968 0.99 2005-06-20T07:41:47Z 2020-02-15T06:59:51Z +6793 252 2 4372 0.99 2005-07-07T20:09:01Z 2020-02-15T06:59:51Z +6794 252 2 5554 2.99 2005-07-10T03:03:38Z 2020-02-15T06:59:51Z +6795 252 1 6357 0.99 2005-07-11T20:58:51Z 2020-02-15T06:59:51Z +6796 252 2 6369 0.99 2005-07-11T21:23:36Z 2020-02-15T06:59:51Z +6797 252 1 7024 4.99 2005-07-27T02:36:40Z 2020-02-15T06:59:51Z +6798 252 2 7121 0.99 2005-07-27T05:58:32Z 2020-02-15T06:59:51Z +6799 252 2 7168 0.99 2005-07-27T07:51:11Z 2020-02-15T06:59:51Z +6800 252 1 7670 0.99 2005-07-28T02:44:25Z 2020-02-15T06:59:51Z +6801 252 1 8636 5.99 2005-07-29T14:24:13Z 2020-02-15T06:59:51Z +6802 252 1 8899 0.99 2005-07-30T01:05:30Z 2020-02-15T06:59:51Z +6803 252 2 10314 0.99 2005-08-01T04:31:18Z 2020-02-15T06:59:51Z +6804 252 2 10834 2.99 2005-08-01T23:28:00Z 2020-02-15T06:59:51Z +6805 252 2 11764 0.99 2005-08-17T09:51:54Z 2020-02-15T06:59:51Z +6806 252 1 13385 4.99 2005-08-19T21:39:35Z 2020-02-15T06:59:51Z +6807 252 2 13989 5.99 2005-08-20T19:27:50Z 2020-02-15T06:59:51Z +6808 252 1 14774 4.99 2005-08-21T23:52:32Z 2020-02-15T06:59:51Z +6809 252 2 13756 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +6810 253 1 566 6.99 2005-05-28T09:51:39Z 2020-02-15T06:59:51Z +6811 253 1 648 0.99 2005-05-28T19:25:54Z 2020-02-15T06:59:51Z +6812 253 1 986 2.99 2005-05-30T22:22:52Z 2020-02-15T06:59:51Z +6813 253 2 1378 1.99 2005-06-15T15:03:15Z 2020-02-15T06:59:51Z +6814 253 2 1606 6.99 2005-06-16T06:18:31Z 2020-02-15T06:59:51Z +6815 253 2 2081 5.99 2005-06-17T17:05:02Z 2020-02-15T06:59:51Z +6816 253 1 2142 4.99 2005-06-17T21:55:43Z 2020-02-15T06:59:51Z +6817 253 1 2454 4.99 2005-06-18T19:32:51Z 2020-02-15T06:59:51Z +6818 253 2 2636 4.99 2005-06-19T09:13:06Z 2020-02-15T06:59:51Z +6819 253 1 3658 7.99 2005-07-06T08:01:08Z 2020-02-15T06:59:51Z +6820 253 1 5505 2.99 2005-07-10T00:38:48Z 2020-02-15T06:59:51Z +6821 253 1 5602 4.99 2005-07-10T05:02:22Z 2020-02-15T06:59:51Z +6822 253 2 7689 2.99 2005-07-28T03:21:24Z 2020-02-15T06:59:51Z +6823 253 2 7851 0.99 2005-07-28T09:31:58Z 2020-02-15T06:59:51Z +6824 253 2 7887 2.99 2005-07-28T10:40:12Z 2020-02-15T06:59:51Z +6825 253 2 8752 2.99 2005-07-29T19:15:07Z 2020-02-15T06:59:51Z +6826 253 2 9606 0.99 2005-07-31T03:50:46Z 2020-02-15T06:59:51Z +6827 253 2 9618 6.99 2005-07-31T04:16:14Z 2020-02-15T06:59:51Z +6828 253 2 10404 4.99 2005-08-01T07:31:25Z 2020-02-15T06:59:51Z +6829 253 1 10660 2.99 2005-08-01T16:48:01Z 2020-02-15T06:59:51Z +6830 253 2 10881 6.99 2005-08-02T00:38:14Z 2020-02-15T06:59:51Z +6831 253 1 12572 0.99 2005-08-18T15:32:54Z 2020-02-15T06:59:51Z +6832 253 2 12827 5.99 2005-08-19T01:27:23Z 2020-02-15T06:59:51Z +6833 253 1 13126 5.99 2005-08-19T12:00:28Z 2020-02-15T06:59:51Z +6834 253 2 14086 3.99 2005-08-20T23:47:54Z 2020-02-15T06:59:51Z +6835 253 2 14283 4.99 2005-08-21T06:44:14Z 2020-02-15T06:59:51Z +6836 253 1 14640 7.99 2005-08-21T19:03:19Z 2020-02-15T06:59:51Z +6837 253 2 14655 4.99 2005-08-21T19:37:10Z 2020-02-15T06:59:51Z +6838 253 2 15221 2.99 2005-08-22T17:12:29Z 2020-02-15T06:59:51Z +6839 254 1 183 2.99 2005-05-26T05:01:18Z 2020-02-15T06:59:51Z +6840 254 1 1108 5.99 2005-05-31T15:05:12Z 2020-02-15T06:59:51Z +6841 254 1 1285 2.99 2005-06-15T08:33:06Z 2020-02-15T06:59:51Z +6842 254 2 1390 0.99 2005-06-15T16:06:29Z 2020-02-15T06:59:51Z +6843 254 1 2082 2.99 2005-06-17T17:13:32Z 2020-02-15T06:59:51Z +6844 254 1 2138 2.99 2005-06-17T21:28:14Z 2020-02-15T06:59:51Z +6845 254 2 2687 3.99 2005-06-19T12:46:52Z 2020-02-15T06:59:51Z +6846 254 1 3882 4.99 2005-07-06T18:38:21Z 2020-02-15T06:59:51Z +6847 254 2 5042 2.99 2005-07-09T03:20:30Z 2020-02-15T06:59:51Z +6848 254 1 5072 3.99 2005-07-09T05:01:58Z 2020-02-15T06:59:51Z +6849 254 2 5080 2.99 2005-07-09T05:23:55Z 2020-02-15T06:59:51Z +6850 254 1 5537 0.99 2005-07-10T02:35:41Z 2020-02-15T06:59:51Z +6851 254 1 5550 5.99 2005-07-10T02:58:35Z 2020-02-15T06:59:51Z +6852 254 1 5826 7.99 2005-07-10T16:21:02Z 2020-02-15T06:59:51Z +6853 254 2 5930 4.99 2005-07-10T21:59:32Z 2020-02-15T06:59:51Z +6854 254 2 7011 0.99 2005-07-27T01:58:34Z 2020-02-15T06:59:51Z +6855 254 1 7413 4.99 2005-07-27T16:45:40Z 2020-02-15T06:59:51Z +6856 254 2 8216 7.99 2005-07-28T23:43:59Z 2020-02-15T06:59:51Z +6857 254 2 8581 4.99 2005-07-29T12:02:06Z 2020-02-15T06:59:51Z +6858 254 2 9494 1.99 2005-07-30T23:52:46Z 2020-02-15T06:59:51Z +6859 254 1 10522 4.99 2005-08-01T11:48:51Z 2020-02-15T06:59:51Z +6860 254 1 11190 0.99 2005-08-02T11:21:34Z 2020-02-15T06:59:51Z +6861 254 1 11665 6.99 2005-08-17T05:36:57Z 2020-02-15T06:59:51Z +6862 254 2 12148 0.99 2005-08-18T00:13:15Z 2020-02-15T06:59:51Z +6863 254 1 12206 0.99 2005-08-18T02:22:20Z 2020-02-15T06:59:51Z +6864 254 1 12247 2.99 2005-08-18T03:51:51Z 2020-02-15T06:59:51Z +6865 254 1 12874 0.99 2005-08-19T03:07:57Z 2020-02-15T06:59:51Z +6866 254 2 13001 4.99 2005-08-19T07:36:44Z 2020-02-15T06:59:51Z +6867 254 1 13045 4.99 2005-08-19T09:17:35Z 2020-02-15T06:59:51Z +6868 254 2 13130 2.99 2005-08-19T12:06:42Z 2020-02-15T06:59:51Z +6869 254 2 14497 4.99 2005-08-21T14:09:47Z 2020-02-15T06:59:51Z +6870 254 1 15774 0.99 2005-08-23T13:25:08Z 2020-02-15T06:59:51Z +6871 255 1 1235 2.99 2005-06-15T04:31:28Z 2020-02-15T06:59:51Z +6872 255 1 1420 6.99 2005-06-15T17:56:14Z 2020-02-15T06:59:51Z +6873 255 2 1681 2.99 2005-06-16T11:38:17Z 2020-02-15T06:59:51Z +6874 255 2 3442 2.99 2005-06-21T20:06:51Z 2020-02-15T06:59:51Z +6875 255 1 4547 0.99 2005-07-08T04:20:19Z 2020-02-15T06:59:51Z +6876 255 1 5706 1.99 2005-07-10T10:21:46Z 2020-02-15T06:59:51Z +6877 255 1 5943 0.99 2005-07-10T22:48:13Z 2020-02-15T06:59:51Z +6878 255 2 7475 8.99 2005-07-27T19:07:43Z 2020-02-15T06:59:51Z +6879 255 1 7646 2.99 2005-07-28T01:31:45Z 2020-02-15T06:59:51Z +6880 255 1 8562 0.99 2005-07-29T11:32:13Z 2020-02-15T06:59:51Z +6881 255 1 9061 6.99 2005-07-30T07:21:52Z 2020-02-15T06:59:51Z +6882 255 2 11979 4.99 2005-08-17T18:07:13Z 2020-02-15T06:59:51Z +6883 255 2 12176 7.99 2005-08-18T01:10:33Z 2020-02-15T06:59:51Z +6884 255 2 13154 2.99 2005-08-19T13:09:54Z 2020-02-15T06:59:51Z +6885 255 1 13268 0.99 2005-08-19T17:33:50Z 2020-02-15T06:59:51Z +6886 255 2 13683 0.99 2005-08-20T08:54:55Z 2020-02-15T06:59:51Z +6887 255 1 13758 8.99 2005-08-20T11:21:26Z 2020-02-15T06:59:51Z +6888 255 2 14600 3.99 2005-08-21T17:45:21Z 2020-02-15T06:59:51Z +6889 256 1 51 4.99 2005-05-25T06:49:10Z 2020-02-15T06:59:51Z +6890 256 1 232 0.99 2005-05-26T11:38:05Z 2020-02-15T06:59:51Z +6891 256 2 738 4.99 2005-05-29T08:20:08Z 2020-02-15T06:59:51Z +6892 256 1 935 2.99 2005-05-30T13:29:36Z 2020-02-15T06:59:51Z +6893 256 1 1116 0.99 2005-05-31T16:10:46Z 2020-02-15T06:59:51Z +6894 256 1 1555 2.99 2005-06-16T02:17:07Z 2020-02-15T06:59:51Z +6895 256 2 1965 0.99 2005-06-17T09:17:39Z 2020-02-15T06:59:51Z +6896 256 2 1973 4.99 2005-06-17T09:26:15Z 2020-02-15T06:59:51Z +6897 256 2 2230 4.99 2005-06-18T03:50:49Z 2020-02-15T06:59:51Z +6898 256 1 2380 6.99 2005-06-18T15:00:04Z 2020-02-15T06:59:51Z +6899 256 2 2561 4.99 2005-06-19T03:14:52Z 2020-02-15T06:59:51Z +6900 256 1 2839 4.99 2005-06-19T22:07:24Z 2020-02-15T06:59:51Z +6901 256 1 4130 0.99 2005-07-07T07:51:53Z 2020-02-15T06:59:51Z +6902 256 2 4182 0.99 2005-07-07T10:28:00Z 2020-02-15T06:59:51Z +6903 256 1 5179 2.99 2005-07-09T10:00:44Z 2020-02-15T06:59:51Z +6904 256 1 6298 0.99 2005-07-11T17:42:33Z 2020-02-15T06:59:51Z +6905 256 1 7661 3.99 2005-07-28T02:10:27Z 2020-02-15T06:59:51Z +6906 256 2 9424 2.99 2005-07-30T21:10:56Z 2020-02-15T06:59:51Z +6907 256 2 10759 4.99 2005-08-01T20:22:51Z 2020-02-15T06:59:51Z +6908 256 2 11011 2.99 2005-08-02T05:07:07Z 2020-02-15T06:59:51Z +6909 256 2 11628 8.99 2005-08-17T04:27:18Z 2020-02-15T06:59:51Z +6910 256 2 13457 0.99 2005-08-20T00:33:22Z 2020-02-15T06:59:51Z +6911 256 1 13651 0.99 2005-08-20T07:50:08Z 2020-02-15T06:59:51Z +6912 256 1 14003 6.99 2005-08-20T20:16:06Z 2020-02-15T06:59:51Z +6913 256 2 14036 4.99 2005-08-20T21:35:27Z 2020-02-15T06:59:51Z +6914 256 2 14445 2.99 2005-08-21T12:07:42Z 2020-02-15T06:59:51Z +6915 256 2 14458 3.99 2005-08-21T12:47:53Z 2020-02-15T06:59:51Z +6916 256 2 15609 2.99 2005-08-23T06:56:04Z 2020-02-15T06:59:51Z +6917 256 2 15861 4.99 2005-08-23T16:15:45Z 2020-02-15T06:59:51Z +6918 256 1 15864 7.99 2005-08-23T16:18:12Z 2020-02-15T06:59:51Z +6919 257 2 139 2.99 2005-05-25T23:00:21Z 2020-02-15T06:59:51Z +6920 257 2 244 2.99 2005-05-26T13:40:40Z 2020-02-15T06:59:51Z +6921 257 2 705 2.99 2005-05-29T02:48:52Z 2020-02-15T06:59:51Z +6922 257 1 2557 0.99 2005-06-19T03:08:51Z 2020-02-15T06:59:51Z +6923 257 2 3083 4.99 2005-06-20T15:33:47Z 2020-02-15T06:59:51Z +6924 257 2 4462 6.99 2005-07-08T00:02:49Z 2020-02-15T06:59:51Z +6925 257 2 4574 4.99 2005-07-08T05:39:42Z 2020-02-15T06:59:51Z +6926 257 1 5495 6.99 2005-07-10T00:16:54Z 2020-02-15T06:59:51Z +6927 257 1 5858 4.99 2005-07-10T18:00:07Z 2020-02-15T06:59:51Z +6928 257 1 6422 5.99 2005-07-11T23:46:19Z 2020-02-15T06:59:51Z +6929 257 2 6711 5.99 2005-07-12T13:23:40Z 2020-02-15T06:59:51Z +6930 257 2 7007 4.99 2005-07-27T01:43:39Z 2020-02-15T06:59:51Z +6931 257 1 7176 2.99 2005-07-27T08:04:28Z 2020-02-15T06:59:51Z +6932 257 1 7496 1.99 2005-07-27T20:04:05Z 2020-02-15T06:59:51Z +6933 257 2 7510 2.99 2005-07-27T20:37:57Z 2020-02-15T06:59:51Z +6934 257 2 7518 5.99 2005-07-27T21:01:16Z 2020-02-15T06:59:51Z +6935 257 2 8156 3.99 2005-07-28T20:59:04Z 2020-02-15T06:59:51Z +6936 257 2 8252 2.99 2005-07-29T00:54:17Z 2020-02-15T06:59:51Z +6937 257 1 8344 4.99 2005-07-29T04:45:25Z 2020-02-15T06:59:51Z +6938 257 1 8640 4.99 2005-07-29T14:34:17Z 2020-02-15T06:59:51Z +6939 257 2 8946 6.99 2005-07-30T03:14:53Z 2020-02-15T06:59:51Z +6940 257 1 9800 4.99 2005-07-31T11:00:58Z 2020-02-15T06:59:51Z +6941 257 2 10142 4.99 2005-07-31T22:10:54Z 2020-02-15T06:59:51Z +6942 257 1 11230 4.99 2005-08-02T12:59:08Z 2020-02-15T06:59:51Z +6943 257 1 11394 0.99 2005-08-02T18:44:45Z 2020-02-15T06:59:51Z +6944 257 2 11545 6.99 2005-08-17T00:56:06Z 2020-02-15T06:59:51Z +6945 257 2 11860 1.99 2005-08-17T13:52:26Z 2020-02-15T06:59:51Z +6946 257 2 12841 2.99 2005-08-19T01:55:55Z 2020-02-15T06:59:51Z +6947 257 1 12904 5.99 2005-08-19T04:10:50Z 2020-02-15T06:59:51Z +6948 257 2 13203 7.99 2005-08-19T15:00:58Z 2020-02-15T06:59:51Z +6949 257 2 13218 0.99 2005-08-19T15:39:39Z 2020-02-15T06:59:51Z +6950 257 1 13389 2.99 2005-08-19T21:52:51Z 2020-02-15T06:59:51Z +6951 257 2 13846 5.99 2005-08-20T14:32:31Z 2020-02-15T06:59:51Z +6952 257 2 14115 0.99 2005-08-21T01:10:29Z 2020-02-15T06:59:51Z +6953 257 1 15025 0.99 2005-08-22T08:57:24Z 2020-02-15T06:59:51Z +6954 257 1 15967 2.99 2005-08-23T19:50:06Z 2020-02-15T06:59:51Z +6955 257 2 15968 0.99 2005-08-23T19:51:29Z 2020-02-15T06:59:51Z +6956 258 1 1743 2.99 2005-06-16T16:38:10Z 2020-02-15T06:59:51Z +6957 258 2 2678 0.99 2005-06-19T12:12:23Z 2020-02-15T06:59:51Z +6958 258 2 2931 8.99 2005-06-20T04:50:45Z 2020-02-15T06:59:51Z +6959 258 2 4408 2.99 2005-07-07T21:41:06Z 2020-02-15T06:59:51Z +6960 258 1 4677 5.99 2005-07-08T10:30:36Z 2020-02-15T06:59:51Z +6961 258 2 4897 0.99 2005-07-08T20:25:11Z 2020-02-15T06:59:51Z +6962 258 2 5312 5.99 2005-07-09T16:03:09Z 2020-02-15T06:59:51Z +6963 258 1 5674 0.99 2005-07-10T08:26:26Z 2020-02-15T06:59:51Z +6964 258 1 5935 9.99 2005-07-10T22:11:04Z 2020-02-15T06:59:51Z +6965 258 2 6012 4.99 2005-07-11T02:00:12Z 2020-02-15T06:59:51Z +6966 258 1 7814 2.99 2005-07-28T08:09:48Z 2020-02-15T06:59:51Z +6967 258 1 8675 4.99 2005-07-29T15:56:18Z 2020-02-15T06:59:51Z +6968 258 2 9069 4.99 2005-07-30T07:39:59Z 2020-02-15T06:59:51Z +6969 258 2 10293 1.99 2005-08-01T03:44:26Z 2020-02-15T06:59:51Z +6970 258 2 10315 4.99 2005-08-01T04:34:45Z 2020-02-15T06:59:51Z +6971 258 1 10325 5.99 2005-08-01T04:52:12Z 2020-02-15T06:59:51Z +6972 258 2 10332 6.99 2005-08-01T04:57:32Z 2020-02-15T06:59:51Z +6973 258 1 10393 0.99 2005-08-01T06:52:50Z 2020-02-15T06:59:51Z +6974 258 1 12246 5.99 2005-08-18T03:48:41Z 2020-02-15T06:59:51Z +6975 258 2 12296 3.99 2005-08-18T05:16:28Z 2020-02-15T06:59:51Z +6976 258 1 13491 4.99 2005-08-20T01:30:56Z 2020-02-15T06:59:51Z +6977 258 1 13695 6.99 2005-08-20T09:13:25Z 2020-02-15T06:59:51Z +6978 258 2 13897 2.99 2005-08-20T16:02:28Z 2020-02-15T06:59:51Z +6979 258 2 14901 6.99 2005-08-22T04:31:37Z 2020-02-15T06:59:51Z +6980 259 2 722 6.99 2005-05-29T05:30:31Z 2020-02-15T06:59:51Z +6981 259 2 901 2.99 2005-05-30T09:40:40Z 2020-02-15T06:59:51Z +6982 259 1 1147 5.99 2005-05-31T20:37:52Z 2020-02-15T06:59:51Z +6983 259 1 1641 7.99 2005-06-16T08:46:26Z 2020-02-15T06:59:51Z +6984 259 2 1723 7.99 2005-06-16T15:14:18Z 2020-02-15T06:59:51Z +6985 259 2 1813 2.99 2005-06-16T21:11:00Z 2020-02-15T06:59:51Z +6986 259 2 2375 5.99 2005-06-18T14:47:29Z 2020-02-15T06:59:51Z +6987 259 2 4199 5.99 2005-07-07T11:13:07Z 2020-02-15T06:59:51Z +6988 259 2 4489 4.99 2005-07-08T01:23:58Z 2020-02-15T06:59:51Z +6989 259 1 6074 0.99 2005-07-11T04:59:56Z 2020-02-15T06:59:51Z +6990 259 2 6539 3.99 2005-07-12T04:50:49Z 2020-02-15T06:59:51Z +6991 259 2 7188 2.99 2005-07-27T08:32:08Z 2020-02-15T06:59:51Z +6992 259 2 7774 7.99 2005-07-28T07:03:25Z 2020-02-15T06:59:51Z +6993 259 1 7817 4.99 2005-07-28T08:20:55Z 2020-02-15T06:59:51Z +6994 259 2 9205 6.99 2005-07-30T12:46:40Z 2020-02-15T06:59:51Z +6995 259 1 9282 6.99 2005-07-30T15:17:31Z 2020-02-15T06:59:51Z +6996 259 1 9444 7.99 2005-07-30T21:48:44Z 2020-02-15T06:59:51Z +6997 259 1 10510 3.99 2005-08-01T11:28:30Z 2020-02-15T06:59:51Z +6998 259 1 10781 2.99 2005-08-01T21:22:41Z 2020-02-15T06:59:51Z +6999 259 1 11184 3.99 2005-08-02T11:01:26Z 2020-02-15T06:59:51Z +7000 259 2 12680 6.99 2005-08-18T19:43:46Z 2020-02-15T06:59:51Z +7001 259 1 13109 4.99 2005-08-19T11:23:20Z 2020-02-15T06:59:51Z +7002 259 2 13112 2.99 2005-08-19T11:27:10Z 2020-02-15T06:59:51Z +7003 259 2 13366 4.99 2005-08-19T21:14:45Z 2020-02-15T06:59:51Z +7004 259 1 13598 5.99 2005-08-20T05:59:17Z 2020-02-15T06:59:51Z +7005 259 2 13649 4.99 2005-08-20T07:48:38Z 2020-02-15T06:59:51Z +7006 259 2 14067 6.99 2005-08-20T22:49:23Z 2020-02-15T06:59:51Z +7007 259 2 14170 4.99 2005-08-21T03:00:39Z 2020-02-15T06:59:51Z +7008 259 2 14966 2.99 2005-08-22T06:45:57Z 2020-02-15T06:59:51Z +7009 259 1 15425 10.99 2005-08-23T00:05:57Z 2020-02-15T06:59:51Z +7010 259 1 15473 2.99 2005-08-23T01:39:10Z 2020-02-15T06:59:51Z +7011 259 2 1.99 2005-08-23T06:13:16Z 2020-02-15T06:59:51Z +7012 259 1 15689 2.99 2005-08-23T09:52:55Z 2020-02-15T06:59:51Z +7013 260 1 1101 8.99 2005-05-31T14:13:59Z 2020-02-15T06:59:51Z +7014 260 1 1626 3.99 2005-06-16T07:49:47Z 2020-02-15T06:59:51Z +7015 260 2 2001 2.99 2005-06-17T11:35:09Z 2020-02-15T06:59:51Z +7016 260 2 2040 2.99 2005-06-17T14:18:37Z 2020-02-15T06:59:51Z +7017 260 1 2091 10.99 2005-06-17T18:09:04Z 2020-02-15T06:59:51Z +7018 260 1 2178 0.99 2005-06-18T00:38:35Z 2020-02-15T06:59:51Z +7019 260 1 2823 7.99 2005-06-19T20:30:21Z 2020-02-15T06:59:51Z +7020 260 2 2958 3.99 2005-06-20T06:56:20Z 2020-02-15T06:59:51Z +7021 260 1 3193 0.99 2005-06-20T23:52:30Z 2020-02-15T06:59:51Z +7022 260 2 4054 0.99 2005-07-07T03:42:07Z 2020-02-15T06:59:51Z +7023 260 2 4741 6.99 2005-07-08T13:31:23Z 2020-02-15T06:59:51Z +7024 260 1 4870 2.99 2005-07-08T19:14:45Z 2020-02-15T06:59:51Z +7025 260 2 6328 2.99 2005-07-11T19:09:33Z 2020-02-15T06:59:51Z +7026 260 2 7072 0.99 2005-07-27T04:02:33Z 2020-02-15T06:59:51Z +7027 260 1 7268 1.99 2005-07-27T11:23:09Z 2020-02-15T06:59:51Z +7028 260 1 7885 7.99 2005-07-28T10:37:41Z 2020-02-15T06:59:51Z +7029 260 1 8475 1.99 2005-07-29T08:37:41Z 2020-02-15T06:59:51Z +7030 260 1 8484 2.99 2005-07-29T08:51:59Z 2020-02-15T06:59:51Z +7031 260 1 8717 0.99 2005-07-29T17:40:45Z 2020-02-15T06:59:51Z +7032 260 1 8933 0.99 2005-07-30T02:36:06Z 2020-02-15T06:59:51Z +7033 260 2 9176 4.99 2005-07-30T11:50:54Z 2020-02-15T06:59:51Z +7034 260 2 10970 8.99 2005-08-02T04:06:46Z 2020-02-15T06:59:51Z +7035 260 1 12852 0.99 2005-08-19T02:12:40Z 2020-02-15T06:59:51Z +7036 260 2 13440 2.99 2005-08-19T23:42:52Z 2020-02-15T06:59:51Z +7037 260 1 13685 3.99 2005-08-20T08:57:11Z 2020-02-15T06:59:51Z +7038 260 1 13966 2.99 2005-08-20T18:28:28Z 2020-02-15T06:59:51Z +7039 260 2 13978 0.99 2005-08-20T19:03:25Z 2020-02-15T06:59:51Z +7040 260 2 14035 2.99 2005-08-20T21:31:58Z 2020-02-15T06:59:51Z +7041 260 2 14441 2.99 2005-08-21T11:59:38Z 2020-02-15T06:59:51Z +7042 260 1 14579 7.99 2005-08-21T16:54:47Z 2020-02-15T06:59:51Z +7043 260 1 14610 6.99 2005-08-21T17:59:09Z 2020-02-15T06:59:51Z +7044 261 1 12 4.99 2005-05-25T00:19:27Z 2020-02-15T06:59:51Z +7045 261 2 465 3.99 2005-05-27T20:44:36Z 2020-02-15T06:59:51Z +7046 261 2 542 6.99 2005-05-28T06:42:13Z 2020-02-15T06:59:51Z +7047 261 1 792 0.99 2005-05-29T16:32:10Z 2020-02-15T06:59:51Z +7048 261 1 1760 2.99 2005-06-16T17:48:37Z 2020-02-15T06:59:51Z +7049 261 1 1877 5.99 2005-06-17T02:54:16Z 2020-02-15T06:59:51Z +7050 261 2 1988 8.99 2005-06-17T10:42:34Z 2020-02-15T06:59:51Z +7051 261 2 2072 3.99 2005-06-17T16:33:32Z 2020-02-15T06:59:51Z +7052 261 2 2392 0.99 2005-06-18T15:34:18Z 2020-02-15T06:59:51Z +7053 261 1 3363 0.99 2005-06-21T12:25:07Z 2020-02-15T06:59:51Z +7054 261 1 5122 3.99 2005-07-09T07:19:35Z 2020-02-15T06:59:51Z +7055 261 1 5449 5.99 2005-07-09T22:12:01Z 2020-02-15T06:59:51Z +7056 261 2 6515 2.99 2005-07-12T03:50:32Z 2020-02-15T06:59:51Z +7057 261 1 6743 0.99 2005-07-12T14:29:25Z 2020-02-15T06:59:51Z +7058 261 2 9552 4.99 2005-07-31T02:05:32Z 2020-02-15T06:59:51Z +7059 261 1 9842 4.99 2005-07-31T12:24:58Z 2020-02-15T06:59:51Z +7060 261 1 9869 4.99 2005-07-31T13:21:54Z 2020-02-15T06:59:51Z +7061 261 2 10246 1.99 2005-08-01T02:29:50Z 2020-02-15T06:59:51Z +7062 261 1 11834 1.99 2005-08-17T13:00:40Z 2020-02-15T06:59:51Z +7063 261 2 11928 2.99 2005-08-17T16:28:24Z 2020-02-15T06:59:51Z +7064 261 1 12327 6.99 2005-08-18T06:43:22Z 2020-02-15T06:59:51Z +7065 261 2 13245 4.99 2005-08-19T16:43:41Z 2020-02-15T06:59:51Z +7066 261 2 13506 5.99 2005-08-20T02:07:06Z 2020-02-15T06:59:51Z +7067 261 1 13669 2.99 2005-08-20T08:26:32Z 2020-02-15T06:59:51Z +7068 261 1 13849 4.99 2005-08-20T14:42:34Z 2020-02-15T06:59:51Z +7069 261 2 15397 4.99 2005-08-22T23:08:46Z 2020-02-15T06:59:51Z +7070 262 2 984 4.99 2005-05-30T22:17:17Z 2020-02-15T06:59:51Z +7071 262 1 1563 2.99 2005-06-16T02:46:28Z 2020-02-15T06:59:51Z +7072 262 1 2771 6.99 2005-06-19T17:54:48Z 2020-02-15T06:59:51Z +7073 262 2 2850 8.99 2005-06-19T23:06:28Z 2020-02-15T06:59:51Z +7074 262 1 2915 1.99 2005-06-20T03:57:17Z 2020-02-15T06:59:51Z +7075 262 1 3521 1.99 2005-07-06T01:00:11Z 2020-02-15T06:59:51Z +7076 262 1 3699 3.99 2005-07-06T10:11:25Z 2020-02-15T06:59:51Z +7077 262 1 4501 0.99 2005-07-08T02:12:00Z 2020-02-15T06:59:51Z +7078 262 2 5503 0.99 2005-07-10T00:35:37Z 2020-02-15T06:59:51Z +7079 262 1 6291 0.99 2005-07-11T17:16:40Z 2020-02-15T06:59:51Z +7080 262 2 6547 7.99 2005-07-12T04:57:46Z 2020-02-15T06:59:51Z +7081 262 1 6724 3.99 2005-07-12T13:45:15Z 2020-02-15T06:59:51Z +7082 262 2 6762 7.99 2005-07-12T15:25:33Z 2020-02-15T06:59:51Z +7083 262 1 6805 6.99 2005-07-12T17:23:01Z 2020-02-15T06:59:51Z +7084 262 1 6986 4.99 2005-07-27T00:59:05Z 2020-02-15T06:59:51Z +7085 262 1 9105 6.99 2005-07-30T08:50:25Z 2020-02-15T06:59:51Z +7086 262 2 10421 0.99 2005-08-01T08:14:10Z 2020-02-15T06:59:51Z +7087 262 2 10770 0.99 2005-08-01T20:45:39Z 2020-02-15T06:59:51Z +7088 262 2 13466 2.99 2005-08-20T00:55:16Z 2020-02-15T06:59:51Z +7089 262 1 13808 5.99 2005-08-20T12:55:43Z 2020-02-15T06:59:51Z +7090 262 1 14180 4.99 2005-08-21T03:16:15Z 2020-02-15T06:59:51Z +7091 262 2 14465 3.99 2005-08-21T12:54:22Z 2020-02-15T06:59:51Z +7092 262 2 14834 6.99 2005-08-22T01:45:58Z 2020-02-15T06:59:51Z +7093 262 2 15270 3.99 2005-08-22T18:48:42Z 2020-02-15T06:59:51Z +7094 262 1 15456 0.99 2005-08-23T01:07:01Z 2020-02-15T06:59:51Z +7095 262 1 15640 4.99 2005-08-23T08:04:40Z 2020-02-15T06:59:51Z +7096 262 2 15771 4.99 2005-08-23T13:18:46Z 2020-02-15T06:59:51Z +7097 262 1 15918 3.99 2005-08-23T17:57:35Z 2020-02-15T06:59:51Z +7098 263 1 97 4.99 2005-05-25T16:34:24Z 2020-02-15T06:59:51Z +7099 263 1 266 0.99 2005-05-26T16:08:05Z 2020-02-15T06:59:51Z +7100 263 2 2126 8.99 2005-06-17T20:54:36Z 2020-02-15T06:59:51Z +7101 263 2 3257 1.99 2005-06-21T03:47:19Z 2020-02-15T06:59:51Z +7102 263 1 3578 4.99 2005-07-06T03:47:05Z 2020-02-15T06:59:51Z +7103 263 2 3773 2.99 2005-07-06T13:23:34Z 2020-02-15T06:59:51Z +7104 263 2 4637 0.99 2005-07-08T08:49:54Z 2020-02-15T06:59:51Z +7105 263 2 4682 2.99 2005-07-08T10:38:27Z 2020-02-15T06:59:51Z +7106 263 2 5125 2.99 2005-07-09T07:25:28Z 2020-02-15T06:59:51Z +7107 263 2 5254 1.99 2005-07-09T13:50:11Z 2020-02-15T06:59:51Z +7108 263 2 6376 4.99 2005-07-11T21:40:23Z 2020-02-15T06:59:51Z +7109 263 1 6483 2.99 2005-07-12T01:59:20Z 2020-02-15T06:59:51Z +7110 263 1 6808 1.99 2005-07-12T17:36:42Z 2020-02-15T06:59:51Z +7111 263 2 7291 4.99 2005-07-27T12:30:47Z 2020-02-15T06:59:51Z +7112 263 1 7425 4.99 2005-07-27T17:18:35Z 2020-02-15T06:59:51Z +7113 263 1 7706 4.99 2005-07-28T04:03:17Z 2020-02-15T06:59:51Z +7114 263 2 7833 1.99 2005-07-28T08:46:14Z 2020-02-15T06:59:51Z +7115 263 1 10476 6.99 2005-08-01T10:03:20Z 2020-02-15T06:59:51Z +7116 263 1 10775 2.99 2005-08-01T20:59:52Z 2020-02-15T06:59:51Z +7117 263 1 11339 2.99 2005-08-02T17:02:06Z 2020-02-15T06:59:51Z +7118 263 1 11822 0.99 2005-08-17T12:32:39Z 2020-02-15T06:59:51Z +7119 263 2 12057 9.99 2005-08-17T21:04:35Z 2020-02-15T06:59:51Z +7120 263 2 12432 5.99 2005-08-18T10:35:13Z 2020-02-15T06:59:51Z +7121 263 2 12919 6.99 2005-08-19T04:32:15Z 2020-02-15T06:59:51Z +7122 263 1 14335 3.99 2005-08-21T08:33:07Z 2020-02-15T06:59:51Z +7123 263 2 14448 6.99 2005-08-21T12:13:10Z 2020-02-15T06:59:51Z +7124 263 1 15322 4.99 2005-08-22T20:20:30Z 2020-02-15T06:59:51Z +7125 263 2 15922 7.99 2005-08-23T18:07:31Z 2020-02-15T06:59:51Z +7126 263 1 15293 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7127 264 2 1165 3.99 2005-06-14T23:16:27Z 2020-02-15T06:59:51Z +7128 264 1 1206 4.99 2005-06-15T02:27:07Z 2020-02-15T06:59:51Z +7129 264 1 3028 0.99 2005-06-20T11:50:52Z 2020-02-15T06:59:51Z +7130 264 1 3403 3.99 2005-06-21T15:55:06Z 2020-02-15T06:59:51Z +7131 264 1 3618 6.99 2005-07-06T05:58:45Z 2020-02-15T06:59:51Z +7132 264 1 4328 4.99 2005-07-07T18:03:17Z 2020-02-15T06:59:51Z +7133 264 1 4539 0.99 2005-07-08T04:01:02Z 2020-02-15T06:59:51Z +7134 264 1 6340 8.99 2005-07-11T19:46:05Z 2020-02-15T06:59:51Z +7135 264 2 6391 0.99 2005-07-11T22:23:09Z 2020-02-15T06:59:51Z +7136 264 1 6395 2.99 2005-07-11T22:29:29Z 2020-02-15T06:59:51Z +7137 264 1 6543 0.99 2005-07-12T04:54:32Z 2020-02-15T06:59:51Z +7138 264 1 7006 8.99 2005-07-27T01:42:20Z 2020-02-15T06:59:51Z +7139 264 2 9380 2.99 2005-07-30T19:17:31Z 2020-02-15T06:59:51Z +7140 264 2 9515 0.99 2005-07-31T00:35:05Z 2020-02-15T06:59:51Z +7141 264 1 9861 5.99 2005-07-31T13:04:14Z 2020-02-15T06:59:51Z +7142 264 1 9932 5.99 2005-07-31T15:19:48Z 2020-02-15T06:59:51Z +7143 264 2 10792 2.99 2005-08-01T21:44:24Z 2020-02-15T06:59:51Z +7144 264 1 11527 3.99 2005-08-17T00:25:06Z 2020-02-15T06:59:51Z +7145 264 2 11533 0.99 2005-08-17T00:34:53Z 2020-02-15T06:59:51Z +7146 264 1 11539 2.99 2005-08-17T00:45:41Z 2020-02-15T06:59:51Z +7147 264 1 12518 4.99 2005-08-18T13:41:32Z 2020-02-15T06:59:51Z +7148 264 2 13590 2.99 2005-08-20T05:48:59Z 2020-02-15T06:59:51Z +7149 264 1 13664 5.99 2005-08-20T08:18:36Z 2020-02-15T06:59:51Z +7150 264 1 15595 4.99 2005-08-23T06:19:12Z 2020-02-15T06:59:51Z +7151 264 2 14243 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7152 265 2 74 0.99 2005-05-25T11:09:48Z 2020-02-15T06:59:51Z +7153 265 2 2027 7.99 2005-06-17T13:06:56Z 2020-02-15T06:59:51Z +7154 265 2 2562 4.99 2005-06-19T03:15:05Z 2020-02-15T06:59:51Z +7155 265 1 2598 2.99 2005-06-19T05:59:57Z 2020-02-15T06:59:51Z +7156 265 1 3823 2.99 2005-07-06T15:41:27Z 2020-02-15T06:59:51Z +7157 265 1 4610 0.99 2005-07-08T07:28:05Z 2020-02-15T06:59:51Z +7158 265 1 4797 2.99 2005-07-08T16:39:05Z 2020-02-15T06:59:51Z +7159 265 2 5029 7.99 2005-07-09T02:35:32Z 2020-02-15T06:59:51Z +7160 265 1 5417 4.99 2005-07-09T20:34:09Z 2020-02-15T06:59:51Z +7161 265 1 5710 9.99 2005-07-10T10:32:52Z 2020-02-15T06:59:51Z +7162 265 1 6068 4.99 2005-07-11T04:41:09Z 2020-02-15T06:59:51Z +7163 265 2 6371 4.99 2005-07-11T21:31:51Z 2020-02-15T06:59:51Z +7164 265 2 6553 5.99 2005-07-12T05:06:39Z 2020-02-15T06:59:51Z +7165 265 2 6921 6.99 2005-07-12T22:39:03Z 2020-02-15T06:59:51Z +7166 265 2 7414 1.99 2005-07-27T16:46:07Z 2020-02-15T06:59:51Z +7167 265 1 7704 2.99 2005-07-28T04:02:13Z 2020-02-15T06:59:51Z +7168 265 1 8278 5.99 2005-07-29T01:42:55Z 2020-02-15T06:59:51Z +7169 265 2 8489 2.99 2005-07-29T08:58:03Z 2020-02-15T06:59:51Z +7170 265 2 8665 0.99 2005-07-29T15:39:29Z 2020-02-15T06:59:51Z +7171 265 1 9416 2.99 2005-07-30T20:52:45Z 2020-02-15T06:59:51Z +7172 265 2 10592 3.99 2005-08-01T14:13:00Z 2020-02-15T06:59:51Z +7173 265 2 11000 3.99 2005-08-02T04:56:14Z 2020-02-15T06:59:51Z +7174 265 1 12207 1.99 2005-08-18T02:24:07Z 2020-02-15T06:59:51Z +7175 265 2 12346 4.99 2005-08-18T07:17:55Z 2020-02-15T06:59:51Z +7176 265 2 13700 8.99 2005-08-20T09:26:17Z 2020-02-15T06:59:51Z +7177 265 2 14125 4.99 2005-08-21T01:32:16Z 2020-02-15T06:59:51Z +7178 265 1 14547 6.99 2005-08-21T15:51:38Z 2020-02-15T06:59:51Z +7179 265 2 14556 6.99 2005-08-21T16:03:27Z 2020-02-15T06:59:51Z +7180 265 1 14943 2.99 2005-08-22T05:59:59Z 2020-02-15T06:59:51Z +7181 266 1 86 1.99 2005-05-25T13:36:12Z 2020-02-15T06:59:51Z +7182 266 2 651 2.99 2005-05-28T19:46:50Z 2020-02-15T06:59:51Z +7183 266 2 1280 5.99 2005-06-15T08:16:06Z 2020-02-15T06:59:51Z +7184 266 2 2065 4.99 2005-06-17T16:03:46Z 2020-02-15T06:59:51Z +7185 266 2 3002 4.99 2005-06-20T09:56:12Z 2020-02-15T06:59:51Z +7186 266 1 3059 4.99 2005-06-20T13:38:41Z 2020-02-15T06:59:51Z +7187 266 2 3585 0.99 2005-07-06T04:22:36Z 2020-02-15T06:59:51Z +7188 266 2 5362 5.99 2005-07-09T18:16:08Z 2020-02-15T06:59:51Z +7189 266 1 5577 4.99 2005-07-10T03:58:40Z 2020-02-15T06:59:51Z +7190 266 1 8492 2.99 2005-07-29T09:04:17Z 2020-02-15T06:59:51Z +7191 266 2 9109 5.99 2005-07-30T08:58:24Z 2020-02-15T06:59:51Z +7192 266 2 10747 4.99 2005-08-01T19:59:41Z 2020-02-15T06:59:51Z +7193 266 2 10910 5.99 2005-08-02T01:54:34Z 2020-02-15T06:59:51Z +7194 266 2 11233 5.99 2005-08-02T13:06:11Z 2020-02-15T06:59:51Z +7195 266 1 11321 4.99 2005-08-02T16:15:07Z 2020-02-15T06:59:51Z +7196 266 2 11626 0.99 2005-08-17T04:25:42Z 2020-02-15T06:59:51Z +7197 266 1 11726 0.99 2005-08-17T08:11:10Z 2020-02-15T06:59:51Z +7198 266 1 12255 4.99 2005-08-18T04:07:20Z 2020-02-15T06:59:51Z +7199 266 2 12378 0.99 2005-08-18T08:26:13Z 2020-02-15T06:59:51Z +7200 266 1 12405 6.99 2005-08-18T09:37:30Z 2020-02-15T06:59:51Z +7201 266 1 12715 4.99 2005-08-18T21:09:38Z 2020-02-15T06:59:51Z +7202 266 1 13468 8.99 2005-08-20T00:56:44Z 2020-02-15T06:59:51Z +7203 266 1 13556 6.99 2005-08-20T04:10:26Z 2020-02-15T06:59:51Z +7204 266 1 14080 1.99 2005-08-20T23:29:50Z 2020-02-15T06:59:51Z +7205 266 1 14492 2.99 2005-08-21T13:59:08Z 2020-02-15T06:59:51Z +7206 266 1 14877 0.99 2005-08-22T03:39:56Z 2020-02-15T06:59:51Z +7207 266 1 15181 2.99 2005-08-22T15:46:20Z 2020-02-15T06:59:51Z +7208 266 1 15346 4.99 2005-08-22T21:06:00Z 2020-02-15T06:59:51Z +7209 267 2 91 6.99 2005-05-25T14:57:22Z 2020-02-15T06:59:51Z +7210 267 1 436 4.99 2005-05-27T17:21:04Z 2020-02-15T06:59:51Z +7211 267 2 1030 4.99 2005-05-31T04:06:47Z 2020-02-15T06:59:51Z +7212 267 2 1257 4.99 2005-06-15T06:15:36Z 2020-02-15T06:59:51Z +7213 267 2 1349 4.99 2005-06-15T12:49:02Z 2020-02-15T06:59:51Z +7214 267 2 2265 2.99 2005-06-18T06:03:27Z 2020-02-15T06:59:51Z +7215 267 2 2578 7.99 2005-06-19T04:40:06Z 2020-02-15T06:59:51Z +7216 267 1 2582 6.99 2005-06-19T04:56:27Z 2020-02-15T06:59:51Z +7217 267 2 2699 2.99 2005-06-19T13:29:28Z 2020-02-15T06:59:51Z +7218 267 2 2754 4.99 2005-06-19T16:55:59Z 2020-02-15T06:59:51Z +7219 267 1 2877 1.99 2005-06-20T01:07:16Z 2020-02-15T06:59:51Z +7220 267 2 3090 0.99 2005-06-20T16:00:19Z 2020-02-15T06:59:51Z +7221 267 1 3817 2.99 2005-07-06T15:31:45Z 2020-02-15T06:59:51Z +7222 267 1 5340 6.99 2005-07-09T17:11:35Z 2020-02-15T06:59:51Z +7223 267 1 6070 0.99 2005-07-11T04:47:42Z 2020-02-15T06:59:51Z +7224 267 1 6706 3.99 2005-07-12T12:59:16Z 2020-02-15T06:59:51Z +7225 267 1 8190 4.99 2005-07-28T22:47:06Z 2020-02-15T06:59:51Z +7226 267 1 8572 1.99 2005-07-29T11:51:24Z 2020-02-15T06:59:51Z +7227 267 2 9059 3.99 2005-07-30T07:18:44Z 2020-02-15T06:59:51Z +7228 267 1 9308 6.99 2005-07-30T16:53:21Z 2020-02-15T06:59:51Z +7229 267 2 9403 4.99 2005-07-30T20:18:53Z 2020-02-15T06:59:51Z +7230 267 2 9807 2.99 2005-07-31T11:13:52Z 2020-02-15T06:59:51Z +7231 267 2 10048 4.99 2005-07-31T19:08:56Z 2020-02-15T06:59:51Z +7232 267 1 10343 2.99 2005-08-01T05:15:47Z 2020-02-15T06:59:51Z +7233 267 2 11373 0.99 2005-08-02T18:14:12Z 2020-02-15T06:59:51Z +7234 267 1 11690 6.99 2005-08-17T06:44:22Z 2020-02-15T06:59:51Z +7235 267 1 12320 4.99 2005-08-18T06:26:51Z 2020-02-15T06:59:51Z +7236 267 1 12979 4.99 2005-08-19T07:00:35Z 2020-02-15T06:59:51Z +7237 267 2 13236 9.99 2005-08-19T16:18:24Z 2020-02-15T06:59:51Z +7238 267 1 14131 5.99 2005-08-21T01:43:40Z 2020-02-15T06:59:51Z +7239 267 2 15020 3.99 2005-08-22T08:54:12Z 2020-02-15T06:59:51Z +7240 267 1 15208 3.99 2005-08-22T16:35:47Z 2020-02-15T06:59:51Z +7241 267 1 15768 0.99 2005-08-23T13:14:47Z 2020-02-15T06:59:51Z +7242 267 1 15903 3.99 2005-08-23T17:30:40Z 2020-02-15T06:59:51Z +7243 267 2 12066 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7244 267 2 13713 0 2006-02-14T15:16:03Z 2020-02-15T06:59:51Z +7245 268 1 1394 2.99 2005-06-15T16:17:21Z 2020-02-15T06:59:51Z +7246 268 2 1450 4.99 2005-06-15T19:22:08Z 2020-02-15T06:59:51Z +7247 268 2 1551 3.99 2005-06-16T02:01:15Z 2020-02-15T06:59:51Z +7248 268 1 2133 0.99 2005-06-17T21:10:05Z 2020-02-15T06:59:51Z +7249 268 2 2324 4.99 2005-06-18T10:00:33Z 2020-02-15T06:59:51Z +7250 268 2 2858 2.99 2005-06-19T23:17:11Z 2020-02-15T06:59:51Z +7251 268 1 3066 3.99 2005-06-20T13:55:41Z 2020-02-15T06:59:51Z +7252 268 1 3361 1.99 2005-06-21T12:14:23Z 2020-02-15T06:59:51Z +7253 268 2 3670 4.99 2005-07-06T08:56:43Z 2020-02-15T06:59:51Z +7254 268 2 4626 4.99 2005-07-08T08:18:21Z 2020-02-15T06:59:51Z +7255 268 1 5039 7.99 2005-07-09T03:14:45Z 2020-02-15T06:59:51Z +7256 268 2 5671 2.99 2005-07-10T08:18:22Z 2020-02-15T06:59:51Z +7257 268 2 5793 2.99 2005-07-10T14:33:00Z 2020-02-15T06:59:51Z +7258 268 2 5888 6.99 2005-07-10T19:52:17Z 2020-02-15T06:59:51Z +7259 268 1 6120 3.99 2005-07-11T07:49:53Z 2020-02-15T06:59:51Z +7260 268 2 6489 1.99 2005-07-12T02:22:46Z 2020-02-15T06:59:51Z +7261 268 1 8931 2.99 2005-07-30T02:30:07Z 2020-02-15T06:59:51Z +7262 268 2 9436 7.99 2005-07-30T21:33:01Z 2020-02-15T06:59:51Z +7263 268 2 9531 3.99 2005-07-31T01:11:53Z 2020-02-15T06:59:51Z +7264 268 1 10040 1.99 2005-07-31T18:54:15Z 2020-02-15T06:59:51Z +7265 268 2 11462 7.99 2005-08-02T21:36:46Z 2020-02-15T06:59:51Z +7266 268 2 11828 6.99 2005-08-17T12:48:28Z 2020-02-15T06:59:51Z +7267 268 2 12007 2.99 2005-08-17T19:10:34Z 2020-02-15T06:59:51Z +7268 268 2 12694 4.99 2005-08-18T20:10:39Z 2020-02-15T06:59:51Z +7269 268 2 13880 5.99 2005-08-20T15:18:20Z 2020-02-15T06:59:51Z +7270 268 2 14249 4.99 2005-08-21T05:38:05Z 2020-02-15T06:59:51Z +7271 268 2 14373 4.99 2005-08-21T09:44:53Z 2020-02-15T06:59:51Z +7272 268 1 14874 0.99 2005-08-22T03:32:05Z 2020-02-15T06:59:51Z +7273 268 2 15183 2.99 2005-08-22T15:49:54Z 2020-02-15T06:59:51Z +7274 269 2 7 1.99 2005-05-24T23:11:53Z 2020-02-15T06:59:51Z +7275 269 1 98 0.99 2005-05-25T16:48:24Z 2020-02-15T06:59:51Z +7276 269 2 678 6.99 2005-05-28T23:15:48Z 2020-02-15T06:59:51Z +7277 269 2 703 0.99 2005-05-29T02:29:36Z 2020-02-15T06:59:51Z +7278 269 1 750 4.99 2005-05-29T09:41:40Z 2020-02-15T06:59:51Z +7279 269 2 1099 2.99 2005-05-31T13:54:48Z 2020-02-15T06:59:51Z +7280 269 1 1334 3.99 2005-06-15T11:43:09Z 2020-02-15T06:59:51Z +7281 269 2 1909 2.99 2005-06-17T05:11:04Z 2020-02-15T06:59:51Z +7282 269 2 2493 6.99 2005-06-18T22:12:09Z 2020-02-15T06:59:51Z +7283 269 1 4125 9.99 2005-07-07T07:20:29Z 2020-02-15T06:59:51Z +7284 269 2 4804 0.99 2005-07-08T16:57:30Z 2020-02-15T06:59:51Z +7285 269 2 4880 6.99 2005-07-08T19:36:17Z 2020-02-15T06:59:51Z +7286 269 1 6440 2.99 2005-07-12T00:25:04Z 2020-02-15T06:59:51Z +7287 269 1 6626 5.99 2005-07-12T09:16:24Z 2020-02-15T06:59:51Z +7288 269 2 6804 4.99 2005-07-12T17:22:06Z 2020-02-15T06:59:51Z +7289 269 1 7032 4.99 2005-07-27T03:03:09Z 2020-02-15T06:59:51Z +7290 269 1 7537 6.99 2005-07-27T21:36:09Z 2020-02-15T06:59:51Z +7291 269 1 7972 2.99 2005-07-28T14:07:46Z 2020-02-15T06:59:51Z +7292 269 2 10566 2.99 2005-08-01T13:12:11Z 2020-02-15T06:59:51Z +7293 269 1 10908 4.99 2005-08-02T01:53:06Z 2020-02-15T06:59:51Z +7294 269 1 11014 4.99 2005-08-02T05:12:22Z 2020-02-15T06:59:51Z +7295 269 1 11915 3.99 2005-08-17T16:05:28Z 2020-02-15T06:59:51Z +7296 269 1 12344 4.99 2005-08-18T07:15:19Z 2020-02-15T06:59:51Z +7297 269 2 13142 5.99 2005-08-19T12:42:28Z 2020-02-15T06:59:52Z +7298 269 2 13759 2.99 2005-08-20T11:24:48Z 2020-02-15T06:59:52Z +7299 269 1 14266 4.99 2005-08-21T06:20:51Z 2020-02-15T06:59:52Z +7300 269 2 14693 6.99 2005-08-21T20:44:19Z 2020-02-15T06:59:52Z +7301 269 2 15788 2.99 2005-08-23T13:54:39Z 2020-02-15T06:59:52Z +7302 269 1 13025 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7303 269 2 12610 0 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7304 270 1 193 1.99 2005-05-26T06:41:48Z 2020-02-15T06:59:52Z +7305 270 1 1040 4.99 2005-05-31T05:35:16Z 2020-02-15T06:59:52Z +7306 270 1 1345 4.99 2005-06-15T12:32:13Z 2020-02-15T06:59:52Z +7307 270 1 1896 6.99 2005-06-17T04:25:46Z 2020-02-15T06:59:52Z +7308 270 1 2115 3.99 2005-06-17T20:02:16Z 2020-02-15T06:59:52Z +7309 270 2 3164 5.99 2005-06-20T21:29:00Z 2020-02-15T06:59:52Z +7310 270 1 3501 3.99 2005-07-06T00:11:28Z 2020-02-15T06:59:52Z +7311 270 1 3987 9.99 2005-07-06T23:28:24Z 2020-02-15T06:59:52Z +7312 270 2 5533 0.99 2005-07-10T02:19:28Z 2020-02-15T06:59:52Z +7313 270 2 6520 4.99 2005-07-12T04:05:16Z 2020-02-15T06:59:52Z +7314 270 1 8355 2.99 2005-07-29T04:57:43Z 2020-02-15T06:59:52Z +7315 270 2 8618 3.99 2005-07-29T13:48:20Z 2020-02-15T06:59:52Z +7316 270 1 10069 3.99 2005-07-31T19:43:18Z 2020-02-15T06:59:52Z +7317 270 1 10461 7.99 2005-08-01T09:32:53Z 2020-02-15T06:59:52Z +7318 270 2 10579 5.99 2005-08-01T13:48:22Z 2020-02-15T06:59:52Z +7319 270 2 10648 4.99 2005-08-01T16:08:52Z 2020-02-15T06:59:52Z +7320 270 1 11389 2.99 2005-08-02T18:39:12Z 2020-02-15T06:59:52Z +7321 270 1 11810 0.99 2005-08-17T11:56:48Z 2020-02-15T06:59:52Z +7322 270 2 11841 2.99 2005-08-17T13:12:20Z 2020-02-15T06:59:52Z +7323 270 1 11917 2.99 2005-08-17T16:08:17Z 2020-02-15T06:59:52Z +7324 270 1 12192 2.99 2005-08-18T02:01:40Z 2020-02-15T06:59:52Z +7325 270 1 12442 2.99 2005-08-18T10:50:07Z 2020-02-15T06:59:52Z +7326 270 2 13945 1.99 2005-08-20T17:43:56Z 2020-02-15T06:59:52Z +7327 270 1 14618 0.99 2005-08-21T18:09:51Z 2020-02-15T06:59:52Z +7328 270 2 15620 6.99 2005-08-23T07:10:22Z 2020-02-15T06:59:52Z +7329 271 1 1096 8.99 2005-05-31T13:30:49Z 2020-02-15T06:59:52Z +7330 271 2 1852 2.99 2005-06-17T00:38:20Z 2020-02-15T06:59:52Z +7331 271 1 3640 1.99 2005-07-06T07:12:26Z 2020-02-15T06:59:52Z +7332 271 2 4545 2.99 2005-07-08T04:17:47Z 2020-02-15T06:59:52Z +7333 271 2 5878 1.99 2005-07-10T19:09:57Z 2020-02-15T06:59:52Z +7334 271 1 5922 2.99 2005-07-10T21:36:53Z 2020-02-15T06:59:52Z +7335 271 1 6024 2.99 2005-07-11T02:16:47Z 2020-02-15T06:59:52Z +7336 271 1 7618 3.99 2005-07-28T00:24:14Z 2020-02-15T06:59:52Z +7337 271 1 8592 0.99 2005-07-29T12:33:58Z 2020-02-15T06:59:52Z +7338 271 1 9821 4.99 2005-07-31T11:47:54Z 2020-02-15T06:59:52Z +7339 271 2 10143 7.99 2005-07-31T22:11:43Z 2020-02-15T06:59:52Z +7340 271 2 10310 4.99 2005-08-01T04:24:47Z 2020-02-15T06:59:52Z +7341 271 1 10599 3.99 2005-08-01T14:23:58Z 2020-02-15T06:59:52Z +7342 271 1 11431 2.99 2005-08-02T20:05:16Z 2020-02-15T06:59:52Z +7343 271 1 12219 4.99 2005-08-18T02:49:54Z 2020-02-15T06:59:52Z +7344 271 2 14234 0.99 2005-08-21T05:07:12Z 2020-02-15T06:59:52Z +7345 271 2 14355 4.99 2005-08-21T09:08:29Z 2020-02-15T06:59:52Z +7346 271 1 15244 2.99 2005-08-22T17:48:42Z 2020-02-15T06:59:52Z +7347 272 1 33 0.99 2005-05-25T04:18:51Z 2020-02-15T06:59:52Z +7348 272 1 405 6.99 2005-05-27T13:32:39Z 2020-02-15T06:59:52Z +7349 272 1 1041 6.99 2005-05-31T05:46:23Z 2020-02-15T06:59:52Z +7350 272 1 1072 0.99 2005-05-31T09:52:50Z 2020-02-15T06:59:52Z +7351 272 2 1604 4.99 2005-06-16T06:14:25Z 2020-02-15T06:59:52Z +7352 272 2 2546 5.99 2005-06-19T02:39:39Z 2020-02-15T06:59:52Z +7353 272 1 3323 5.99 2005-06-21T08:45:33Z 2020-02-15T06:59:52Z +7354 272 2 5047 3.99 2005-07-09T03:44:15Z 2020-02-15T06:59:52Z +7355 272 2 5158 2.99 2005-07-09T08:53:09Z 2020-02-15T06:59:52Z +7356 272 2 7300 7.99 2005-07-27T12:50:17Z 2020-02-15T06:59:52Z +7357 272 2 7658 2.99 2005-07-28T02:09:12Z 2020-02-15T06:59:52Z +7358 272 1 8248 7.99 2005-07-29T00:41:56Z 2020-02-15T06:59:52Z +7359 272 2 9787 10.99 2005-07-31T10:26:19Z 2020-02-15T06:59:52Z +7360 272 1 10736 2.99 2005-08-01T19:30:21Z 2020-02-15T06:59:52Z +7361 272 2 11003 2.99 2005-08-02T05:03:05Z 2020-02-15T06:59:52Z +7362 272 2 11597 8.99 2005-08-17T03:02:56Z 2020-02-15T06:59:52Z +7363 272 1 11881 0.99 2005-08-17T14:31:56Z 2020-02-15T06:59:52Z +7364 272 2 12006 6.99 2005-08-17T19:09:12Z 2020-02-15T06:59:52Z +7365 272 2 13274 2.99 2005-08-19T17:50:03Z 2020-02-15T06:59:52Z +7366 272 1 13903 2.99 2005-08-20T16:07:55Z 2020-02-15T06:59:52Z +7367 273 2 122 3.99 2005-05-25T19:46:21Z 2020-02-15T06:59:52Z +7368 273 2 980 0.99 2005-05-30T21:45:19Z 2020-02-15T06:59:52Z +7369 273 2 1391 6.99 2005-06-15T16:11:21Z 2020-02-15T06:59:52Z +7370 273 2 1747 6.99 2005-06-16T16:53:33Z 2020-02-15T06:59:52Z +7371 273 2 1765 4.99 2005-06-16T17:56:10Z 2020-02-15T06:59:52Z +7372 273 1 2301 1.99 2005-06-18T08:24:03Z 2020-02-15T06:59:52Z +7373 273 1 3202 0.99 2005-06-21T00:33:47Z 2020-02-15T06:59:52Z +7374 273 2 3556 2.99 2005-07-06T02:46:13Z 2020-02-15T06:59:52Z +7375 273 1 4937 5.99 2005-07-08T22:29:59Z 2020-02-15T06:59:52Z +7376 273 1 5256 7.99 2005-07-09T13:55:45Z 2020-02-15T06:59:52Z +7377 273 2 5435 7.99 2005-07-09T21:28:07Z 2020-02-15T06:59:52Z +7378 273 1 5605 2.99 2005-07-10T05:06:45Z 2020-02-15T06:59:52Z +7379 273 1 6592 8.99 2005-07-12T07:19:35Z 2020-02-15T06:59:52Z +7380 273 1 6635 1.99 2005-07-12T09:47:58Z 2020-02-15T06:59:52Z +7381 273 2 6696 2.99 2005-07-12T12:44:04Z 2020-02-15T06:59:52Z +7382 273 1 6717 5.99 2005-07-12T13:35:02Z 2020-02-15T06:59:52Z +7383 273 1 8449 2.99 2005-07-29T07:42:25Z 2020-02-15T06:59:52Z +7384 273 1 9186 4.99 2005-07-30T12:13:48Z 2020-02-15T06:59:52Z +7385 273 2 9285 5.99 2005-07-30T15:26:08Z 2020-02-15T06:59:52Z +7386 273 2 9391 0.99 2005-07-30T19:48:41Z 2020-02-15T06:59:52Z +7387 273 2 9693 3.99 2005-07-31T07:11:50Z 2020-02-15T06:59:52Z +7388 273 2 9729 0.99 2005-07-31T08:43:43Z 2020-02-15T06:59:52Z +7389 273 1 10272 8.99 2005-08-01T03:14:34Z 2020-02-15T06:59:52Z +7390 273 1 10753 3.99 2005-08-01T20:09:24Z 2020-02-15T06:59:52Z +7391 273 1 10768 6.99 2005-08-01T20:39:32Z 2020-02-15T06:59:52Z +7392 273 1 11282 4.99 2005-08-02T14:35:03Z 2020-02-15T06:59:52Z +7393 273 2 11509 4.99 2005-08-16T23:29:53Z 2020-02-15T06:59:52Z +7394 273 1 12692 0.99 2005-08-18T20:09:19Z 2020-02-15T06:59:52Z +7395 273 2 13738 4.99 2005-08-20T10:42:42Z 2020-02-15T06:59:52Z +7396 273 1 13955 5.99 2005-08-20T18:05:12Z 2020-02-15T06:59:52Z +7397 273 2 14092 4.99 2005-08-21T00:14:32Z 2020-02-15T06:59:52Z +7398 273 2 14558 2.99 2005-08-21T16:10:50Z 2020-02-15T06:59:52Z +7399 273 2 14911 2.99 2005-08-22T04:51:42Z 2020-02-15T06:59:52Z +7400 273 2 15372 2.99 2005-08-22T21:59:51Z 2020-02-15T06:59:52Z +7401 273 1 15760 6.99 2005-08-23T12:50:00Z 2020-02-15T06:59:52Z +7402 274 1 147 2.99 2005-05-26T00:17:50Z 2020-02-15T06:59:52Z +7403 274 1 208 4.99 2005-05-26T08:10:22Z 2020-02-15T06:59:52Z +7404 274 2 301 2.99 2005-05-26T21:06:14Z 2020-02-15T06:59:52Z +7405 274 1 394 5.99 2005-05-27T11:26:11Z 2020-02-15T06:59:52Z +7406 274 2 474 2.99 2005-05-27T22:11:56Z 2020-02-15T06:59:52Z +7407 274 1 892 4.99 2005-05-30T08:02:56Z 2020-02-15T06:59:52Z +7408 274 1 2098 0.99 2005-06-17T18:42:09Z 2020-02-15T06:59:52Z +7409 274 2 3291 9.99 2005-06-21T06:55:36Z 2020-02-15T06:59:52Z +7410 274 2 3532 5.99 2005-07-06T01:24:38Z 2020-02-15T06:59:52Z +7411 274 1 4147 2.99 2005-07-07T08:32:12Z 2020-02-15T06:59:52Z +7412 274 2 4582 2.99 2005-07-08T06:09:09Z 2020-02-15T06:59:52Z +7413 274 2 6389 3.99 2005-07-11T22:18:20Z 2020-02-15T06:59:52Z +7414 274 2 8259 0.99 2005-07-29T01:05:16Z 2020-02-15T06:59:52Z +7415 274 2 8406 5.99 2005-07-29T06:34:45Z 2020-02-15T06:59:52Z +7416 274 2 8517 7.99 2005-07-29T10:00:48Z 2020-02-15T06:59:52Z +7417 274 1 9331 4.99 2005-07-30T17:46:50Z 2020-02-15T06:59:52Z +7418 274 1 9677 4.99 2005-07-31T06:39:45Z 2020-02-15T06:59:52Z +7419 274 2 10059 4.99 2005-07-31T19:20:49Z 2020-02-15T06:59:52Z +7420 274 1 10790 1.99 2005-08-01T21:38:37Z 2020-02-15T06:59:52Z +7421 274 2 10855 0.99 2005-08-02T00:06:37Z 2020-02-15T06:59:52Z +7422 274 1 11058 3.99 2005-08-02T06:38:44Z 2020-02-15T06:59:52Z +7423 274 2 11363 2.99 2005-08-02T17:48:39Z 2020-02-15T06:59:52Z +7424 274 1 12321 3.99 2005-08-18T06:27:05Z 2020-02-15T06:59:52Z +7425 274 1 13103 2.99 2005-08-19T11:05:51Z 2020-02-15T06:59:52Z +7426 274 2 13129 8.99 2005-08-19T12:05:04Z 2020-02-15T06:59:52Z +7427 274 1 13549 8.99 2005-08-20T03:58:41Z 2020-02-15T06:59:52Z +7428 274 1 14012 0.99 2005-08-20T20:42:12Z 2020-02-15T06:59:52Z +7429 274 1 14066 7.99 2005-08-20T22:45:58Z 2020-02-15T06:59:52Z +7430 274 2 14164 7.99 2005-08-21T02:58:02Z 2020-02-15T06:59:52Z +7431 274 1 14388 4.99 2005-08-21T10:15:13Z 2020-02-15T06:59:52Z +7432 274 2 15143 2.99 2005-08-22T13:46:24Z 2020-02-15T06:59:52Z +7433 274 1 15260 2.99 2005-08-22T18:24:16Z 2020-02-15T06:59:52Z +7434 274 2 15328 2.99 2005-08-22T20:31:38Z 2020-02-15T06:59:52Z +7435 274 2 15819 3.99 2005-08-23T15:01:54Z 2020-02-15T06:59:52Z +7436 274 1 13486 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7437 275 2 336 2.99 2005-05-27T03:15:23Z 2020-02-15T06:59:52Z +7438 275 2 1797 3.99 2005-06-16T20:13:03Z 2020-02-15T06:59:52Z +7439 275 2 2414 0.99 2005-06-18T17:01:55Z 2020-02-15T06:59:52Z +7440 275 1 2646 4.99 2005-06-19T09:56:01Z 2020-02-15T06:59:52Z +7441 275 1 3355 2.99 2005-06-21T11:30:47Z 2020-02-15T06:59:52Z +7442 275 2 4396 0.99 2005-07-07T21:14:19Z 2020-02-15T06:59:52Z +7443 275 1 4634 0.99 2005-07-08T08:40:02Z 2020-02-15T06:59:52Z +7444 275 2 4912 9.99 2005-07-08T21:26:11Z 2020-02-15T06:59:52Z +7445 275 2 6301 5.99 2005-07-11T17:54:09Z 2020-02-15T06:59:52Z +7446 275 2 6856 0.99 2005-07-12T19:50:16Z 2020-02-15T06:59:52Z +7447 275 1 7553 2.99 2005-07-27T22:11:36Z 2020-02-15T06:59:52Z +7448 275 2 7596 4.99 2005-07-27T23:33:57Z 2020-02-15T06:59:52Z +7449 275 1 8746 2.99 2005-07-29T19:03:15Z 2020-02-15T06:59:52Z +7450 275 2 9258 2.99 2005-07-30T14:31:31Z 2020-02-15T06:59:52Z +7451 275 1 10479 6.99 2005-08-01T10:11:25Z 2020-02-15T06:59:52Z +7452 275 2 11309 1.99 2005-08-02T15:50:55Z 2020-02-15T06:59:52Z +7453 275 1 11610 4.99 2005-08-17T03:43:37Z 2020-02-15T06:59:52Z +7454 275 2 12589 5.99 2005-08-18T16:06:31Z 2020-02-15T06:59:52Z +7455 275 1 12606 1.99 2005-08-18T17:02:21Z 2020-02-15T06:59:52Z +7456 275 1 13037 3.99 2005-08-19T08:53:57Z 2020-02-15T06:59:52Z +7457 275 2 13860 2.99 2005-08-20T14:55:09Z 2020-02-15T06:59:52Z +7458 275 2 13865 1.99 2005-08-20T15:04:09Z 2020-02-15T06:59:52Z +7459 275 2 13902 0.99 2005-08-20T16:07:08Z 2020-02-15T06:59:52Z +7460 275 2 14063 0.99 2005-08-20T22:36:40Z 2020-02-15T06:59:52Z +7461 275 1 14187 5.99 2005-08-21T03:32:03Z 2020-02-15T06:59:52Z +7462 275 1 14296 2.99 2005-08-21T07:13:23Z 2020-02-15T06:59:52Z +7463 275 2 14483 5.99 2005-08-21T13:43:59Z 2020-02-15T06:59:52Z +7464 275 2 14727 4.99 2005-08-21T22:12:45Z 2020-02-15T06:59:52Z +7465 275 2 15269 2.99 2005-08-22T18:39:44Z 2020-02-15T06:59:52Z +7466 275 2 15496 3.99 2005-08-23T02:30:23Z 2020-02-15T06:59:52Z +7467 276 1 736 3.99 2005-05-29T08:10:07Z 2020-02-15T06:59:52Z +7468 276 1 860 10.99 2005-05-30T02:45:16Z 2020-02-15T06:59:52Z +7469 276 1 1352 0.99 2005-06-15T12:58:27Z 2020-02-15T06:59:52Z +7470 276 2 2763 4.99 2005-06-19T17:23:34Z 2020-02-15T06:59:52Z +7471 276 2 3064 6.99 2005-06-20T13:53:13Z 2020-02-15T06:59:52Z +7472 276 2 3714 2.99 2005-07-06T10:51:28Z 2020-02-15T06:59:52Z +7473 276 1 4715 0.99 2005-07-08T12:15:37Z 2020-02-15T06:59:52Z +7474 276 2 5186 4.99 2005-07-09T10:18:40Z 2020-02-15T06:59:52Z +7475 276 2 5246 4.99 2005-07-09T13:25:18Z 2020-02-15T06:59:52Z +7476 276 2 7282 5.99 2005-07-27T12:00:19Z 2020-02-15T06:59:52Z +7477 276 2 7842 2.99 2005-07-28T09:10:06Z 2020-02-15T06:59:52Z +7478 276 1 9070 0.99 2005-07-30T07:40:39Z 2020-02-15T06:59:52Z +7479 276 1 9080 1.99 2005-07-30T08:02:39Z 2020-02-15T06:59:52Z +7480 276 1 9102 4.99 2005-07-30T08:48:20Z 2020-02-15T06:59:52Z +7481 276 1 9229 8.99 2005-07-30T13:38:17Z 2020-02-15T06:59:52Z +7482 276 2 10149 5.99 2005-07-31T22:20:46Z 2020-02-15T06:59:52Z +7483 276 2 10691 0.99 2005-08-01T18:09:53Z 2020-02-15T06:59:52Z +7484 276 1 10763 2.99 2005-08-01T20:32:27Z 2020-02-15T06:59:52Z +7485 276 2 11085 2.99 2005-08-02T07:36:44Z 2020-02-15T06:59:52Z +7486 276 1 11636 4.99 2005-08-17T04:36:31Z 2020-02-15T06:59:52Z +7487 276 2 11961 3.99 2005-08-17T17:28:01Z 2020-02-15T06:59:52Z +7488 276 2 12178 5.99 2005-08-18T01:17:32Z 2020-02-15T06:59:52Z +7489 276 2 12251 4.99 2005-08-18T03:59:02Z 2020-02-15T06:59:52Z +7490 276 1 12650 4.99 2005-08-18T18:33:20Z 2020-02-15T06:59:52Z +7491 276 1 14000 4.99 2005-08-20T20:06:05Z 2020-02-15T06:59:52Z +7492 276 2 15718 2.99 2005-08-23T11:05:17Z 2020-02-15T06:59:52Z +7493 276 1 15769 3.99 2005-08-23T13:16:15Z 2020-02-15T06:59:52Z +7494 276 2 15923 4.99 2005-08-23T18:08:19Z 2020-02-15T06:59:52Z +7495 277 2 308 6.99 2005-05-26T22:01:39Z 2020-02-15T06:59:52Z +7496 277 1 1331 2.99 2005-06-15T11:34:33Z 2020-02-15T06:59:52Z +7497 277 2 1717 2.99 2005-06-16T14:47:16Z 2020-02-15T06:59:52Z +7498 277 2 2162 3.99 2005-06-17T23:45:47Z 2020-02-15T06:59:52Z +7499 277 2 2723 4.99 2005-06-19T14:55:23Z 2020-02-15T06:59:52Z +7500 277 1 3247 5.99 2005-06-21T03:12:15Z 2020-02-15T06:59:52Z +7501 277 2 3274 4.99 2005-06-21T05:30:36Z 2020-02-15T06:59:52Z +7502 277 1 3344 2.99 2005-06-21T10:57:27Z 2020-02-15T06:59:52Z +7503 277 2 3740 5.99 2005-07-06T11:55:35Z 2020-02-15T06:59:52Z +7504 277 2 3897 2.99 2005-07-06T19:11:43Z 2020-02-15T06:59:52Z +7505 277 1 4290 4.99 2005-07-07T15:47:10Z 2020-02-15T06:59:52Z +7506 277 2 4987 5.99 2005-07-09T00:45:41Z 2020-02-15T06:59:52Z +7507 277 1 5861 0.99 2005-07-10T18:14:22Z 2020-02-15T06:59:52Z +7508 277 1 5913 2.99 2005-07-10T20:58:55Z 2020-02-15T06:59:52Z +7509 277 2 6455 2.99 2005-07-12T01:01:58Z 2020-02-15T06:59:52Z +7510 277 1 6487 5.99 2005-07-12T02:17:00Z 2020-02-15T06:59:52Z +7511 277 2 7423 4.99 2005-07-27T17:11:47Z 2020-02-15T06:59:52Z +7512 277 2 8410 2.99 2005-07-29T06:41:36Z 2020-02-15T06:59:52Z +7513 277 2 9669 4.99 2005-07-31T06:31:36Z 2020-02-15T06:59:52Z +7514 277 1 9901 0.99 2005-07-31T14:20:59Z 2020-02-15T06:59:52Z +7515 277 2 11074 3.99 2005-08-02T07:21:43Z 2020-02-15T06:59:52Z +7516 277 2 11162 4.99 2005-08-02T10:07:54Z 2020-02-15T06:59:52Z +7517 277 2 11574 0.99 2005-08-17T01:38:19Z 2020-02-15T06:59:52Z +7518 277 2 12149 3.99 2005-08-18T00:13:51Z 2020-02-15T06:59:52Z +7519 277 1 12458 5.99 2005-08-18T11:22:53Z 2020-02-15T06:59:52Z +7520 277 1 13122 4.99 2005-08-19T11:53:49Z 2020-02-15T06:59:52Z +7521 277 2 13526 4.99 2005-08-20T02:58:42Z 2020-02-15T06:59:52Z +7522 277 1 13714 4.99 2005-08-20T09:41:09Z 2020-02-15T06:59:52Z +7523 277 2 14227 4.99 2005-08-21T04:56:31Z 2020-02-15T06:59:52Z +7524 277 2 14745 4.99 2005-08-21T22:53:01Z 2020-02-15T06:59:52Z +7525 277 1 15008 10.99 2005-08-22T08:24:32Z 2020-02-15T06:59:52Z +7526 277 1 15345 5.99 2005-08-22T21:05:50Z 2020-02-15T06:59:52Z +7527 278 1 1092 4.99 2005-05-31T12:15:57Z 2020-02-15T06:59:52Z +7528 278 2 1387 0.99 2005-06-15T15:40:56Z 2020-02-15T06:59:52Z +7529 278 1 1978 2.99 2005-06-17T09:42:34Z 2020-02-15T06:59:52Z +7530 278 2 2078 4.99 2005-06-17T16:48:55Z 2020-02-15T06:59:52Z +7531 278 1 3453 2.99 2005-06-21T21:12:11Z 2020-02-15T06:59:52Z +7532 278 1 3776 2.99 2005-07-06T13:31:37Z 2020-02-15T06:59:52Z +7533 278 1 4430 4.99 2005-07-07T22:35:24Z 2020-02-15T06:59:52Z +7534 278 2 4866 8.99 2005-07-08T19:09:59Z 2020-02-15T06:59:52Z +7535 278 2 6869 4.99 2005-07-12T20:12:06Z 2020-02-15T06:59:52Z +7536 278 1 7239 0.99 2005-07-27T10:20:27Z 2020-02-15T06:59:52Z +7537 278 2 7834 0.99 2005-07-28T08:46:43Z 2020-02-15T06:59:52Z +7538 278 2 8222 5.99 2005-07-28T23:51:53Z 2020-02-15T06:59:52Z +7539 278 1 8953 4.99 2005-07-30T03:21:05Z 2020-02-15T06:59:52Z +7540 278 2 9448 2.99 2005-07-30T21:56:13Z 2020-02-15T06:59:52Z +7541 278 1 10649 2.99 2005-08-01T16:11:40Z 2020-02-15T06:59:52Z +7542 278 1 10731 2.99 2005-08-01T19:21:48Z 2020-02-15T06:59:52Z +7543 278 2 10849 3.99 2005-08-01T23:51:00Z 2020-02-15T06:59:52Z +7544 278 1 11095 5.99 2005-08-02T08:03:20Z 2020-02-15T06:59:52Z +7545 278 2 11531 0.99 2005-08-17T00:30:04Z 2020-02-15T06:59:52Z +7546 278 1 12787 0.99 2005-08-19T00:07:58Z 2020-02-15T06:59:52Z +7547 278 1 13896 0.99 2005-08-20T15:59:56Z 2020-02-15T06:59:52Z +7548 278 2 13976 0.99 2005-08-20T19:02:16Z 2020-02-15T06:59:52Z +7549 278 1 14268 2.99 2005-08-21T06:21:24Z 2020-02-15T06:59:52Z +7550 278 2 14803 0.99 2005-08-22T00:49:10Z 2020-02-15T06:59:52Z +7551 278 1 14986 4.99 2005-08-22T07:37:24Z 2020-02-15T06:59:52Z +7552 278 1 16019 4.99 2005-08-23T21:30:45Z 2020-02-15T06:59:52Z +7553 279 1 979 2.99 2005-05-30T21:37:11Z 2020-02-15T06:59:52Z +7554 279 2 1019 0.99 2005-05-31T03:05:07Z 2020-02-15T06:59:52Z +7555 279 1 1178 2.99 2005-06-15T00:36:40Z 2020-02-15T06:59:52Z +7556 279 1 2147 4.99 2005-06-17T22:28:13Z 2020-02-15T06:59:52Z +7557 279 1 3215 0.99 2005-06-21T01:11:32Z 2020-02-15T06:59:52Z +7558 279 1 3374 2.99 2005-06-21T13:36:30Z 2020-02-15T06:59:52Z +7559 279 1 3375 4.99 2005-06-21T13:37:18Z 2020-02-15T06:59:52Z +7560 279 1 4476 4.99 2005-07-08T00:34:25Z 2020-02-15T06:59:52Z +7561 279 1 4978 7.99 2005-07-09T00:22:02Z 2020-02-15T06:59:52Z +7562 279 2 5248 2.99 2005-07-09T13:29:44Z 2020-02-15T06:59:52Z +7563 279 1 5361 9.99 2005-07-09T18:15:32Z 2020-02-15T06:59:52Z +7564 279 1 6176 0.99 2005-07-11T10:48:21Z 2020-02-15T06:59:52Z +7565 279 1 7947 2.99 2005-07-28T13:05:50Z 2020-02-15T06:59:52Z +7566 279 2 8559 3.99 2005-07-29T11:25:54Z 2020-02-15T06:59:52Z +7567 279 2 9820 5.99 2005-07-31T11:46:57Z 2020-02-15T06:59:52Z +7568 279 2 10177 2.99 2005-07-31T23:42:33Z 2020-02-15T06:59:52Z +7569 279 2 11250 6.99 2005-08-02T13:35:42Z 2020-02-15T06:59:52Z +7570 279 1 11515 2.99 2005-08-16T23:54:34Z 2020-02-15T06:59:52Z +7571 279 1 11703 4.99 2005-08-17T07:19:29Z 2020-02-15T06:59:52Z +7572 279 2 12935 2.99 2005-08-19T05:20:25Z 2020-02-15T06:59:52Z +7573 279 1 12949 4.99 2005-08-19T05:55:52Z 2020-02-15T06:59:52Z +7574 279 1 13105 7.99 2005-08-19T11:06:16Z 2020-02-15T06:59:52Z +7575 279 1 13233 2.99 2005-08-19T16:14:41Z 2020-02-15T06:59:52Z +7576 279 2 13588 4.99 2005-08-20T05:47:11Z 2020-02-15T06:59:52Z +7577 279 2 14206 2.99 2005-08-21T03:59:26Z 2020-02-15T06:59:52Z +7578 279 1 14714 3.99 2005-08-21T21:27:43Z 2020-02-15T06:59:52Z +7579 279 1 14779 5.99 2005-08-22T00:00:56Z 2020-02-15T06:59:52Z +7580 279 1 14789 4.99 2005-08-22T00:29:39Z 2020-02-15T06:59:52Z +7581 279 2 15580 6.99 2005-08-23T05:39:06Z 2020-02-15T06:59:52Z +7582 279 1 15606 2.99 2005-08-23T06:50:27Z 2020-02-15T06:59:52Z +7583 279 2 13538 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7584 280 1 1014 4.99 2005-05-31T02:39:16Z 2020-02-15T06:59:52Z +7585 280 1 2656 3.99 2005-06-19T10:42:33Z 2020-02-15T06:59:52Z +7586 280 2 3009 4.99 2005-06-20T10:24:44Z 2020-02-15T06:59:52Z +7587 280 2 3097 0.99 2005-06-20T16:26:14Z 2020-02-15T06:59:52Z +7588 280 1 4616 4.99 2005-07-08T07:48:12Z 2020-02-15T06:59:52Z +7589 280 2 6851 0.99 2005-07-12T19:32:14Z 2020-02-15T06:59:52Z +7590 280 1 7070 4.99 2005-07-27T04:01:08Z 2020-02-15T06:59:52Z +7591 280 2 7901 0.99 2005-07-28T11:12:12Z 2020-02-15T06:59:52Z +7592 280 2 8319 0.99 2005-07-29T03:44:52Z 2020-02-15T06:59:52Z +7593 280 1 8365 0.99 2005-07-29T05:11:00Z 2020-02-15T06:59:52Z +7594 280 1 8565 7.99 2005-07-29T11:35:23Z 2020-02-15T06:59:52Z +7595 280 2 8695 6.99 2005-07-29T16:44:55Z 2020-02-15T06:59:52Z +7596 280 2 8744 3.99 2005-07-29T18:58:24Z 2020-02-15T06:59:52Z +7597 280 1 8912 0.99 2005-07-30T01:31:25Z 2020-02-15T06:59:52Z +7598 280 2 9103 0.99 2005-07-30T08:49:26Z 2020-02-15T06:59:52Z +7599 280 1 10847 9.99 2005-08-01T23:49:33Z 2020-02-15T06:59:52Z +7600 280 1 11366 4.99 2005-08-02T18:01:25Z 2020-02-15T06:59:52Z +7601 280 1 11517 2.99 2005-08-16T23:56:28Z 2020-02-15T06:59:52Z +7602 280 1 12053 4.99 2005-08-17T20:57:27Z 2020-02-15T06:59:52Z +7603 280 1 12849 5.99 2005-08-19T02:05:37Z 2020-02-15T06:59:52Z +7604 280 2 13231 9.99 2005-08-19T16:12:49Z 2020-02-15T06:59:52Z +7605 280 1 13321 4.99 2005-08-19T19:40:37Z 2020-02-15T06:59:52Z +7606 280 1 13667 4.99 2005-08-20T08:25:34Z 2020-02-15T06:59:52Z +7607 280 2 15036 2.99 2005-08-22T09:36:00Z 2020-02-15T06:59:52Z +7608 280 1 15312 4.99 2005-08-22T19:58:15Z 2020-02-15T06:59:52Z +7609 280 2 15554 5.99 2005-08-23T04:48:12Z 2020-02-15T06:59:52Z +7610 280 2 15950 5.99 2005-08-23T19:09:39Z 2020-02-15T06:59:52Z +7611 281 2 650 2.99 2005-05-28T19:45:40Z 2020-02-15T06:59:52Z +7612 281 2 754 2.99 2005-05-29T10:18:59Z 2020-02-15T06:59:52Z +7613 281 2 1485 5.99 2005-06-15T21:24:10Z 2020-02-15T06:59:52Z +7614 281 1 2254 5.99 2005-06-18T05:15:14Z 2020-02-15T06:59:52Z +7615 281 1 4607 0.99 2005-07-08T07:15:14Z 2020-02-15T06:59:52Z +7616 281 2 4864 6.99 2005-07-08T19:05:34Z 2020-02-15T06:59:52Z +7617 281 2 5410 5.99 2005-07-09T20:21:10Z 2020-02-15T06:59:52Z +7618 281 2 6825 0.99 2005-07-12T18:28:12Z 2020-02-15T06:59:52Z +7619 281 2 7034 2.99 2005-07-27T03:03:37Z 2020-02-15T06:59:52Z +7620 281 1 7525 3.99 2005-07-27T21:13:28Z 2020-02-15T06:59:52Z +7621 281 2 8131 0.99 2005-07-28T19:55:21Z 2020-02-15T06:59:52Z +7622 281 2 8180 4.99 2005-07-28T22:05:24Z 2020-02-15T06:59:52Z +7623 281 1 13641 2.99 2005-08-20T07:34:42Z 2020-02-15T06:59:52Z +7624 281 1 14196 1.99 2005-08-21T03:40:40Z 2020-02-15T06:59:52Z +7625 282 2 48 1.99 2005-05-25T06:20:46Z 2020-02-15T06:59:52Z +7626 282 2 282 6.99 2005-05-26T18:56:26Z 2020-02-15T06:59:52Z +7627 282 2 564 0.99 2005-05-28T09:12:09Z 2020-02-15T06:59:52Z +7628 282 1 2016 2.99 2005-06-17T12:18:36Z 2020-02-15T06:59:52Z +7629 282 2 2176 2.99 2005-06-18T00:29:51Z 2020-02-15T06:59:52Z +7630 282 2 3408 4.99 2005-06-21T16:15:11Z 2020-02-15T06:59:52Z +7631 282 1 3417 2.99 2005-06-21T17:06:20Z 2020-02-15T06:59:52Z +7632 282 2 3675 2.99 2005-07-06T09:09:19Z 2020-02-15T06:59:52Z +7633 282 1 3885 2.99 2005-07-06T18:43:43Z 2020-02-15T06:59:52Z +7634 282 1 4359 2.99 2005-07-07T19:30:20Z 2020-02-15T06:59:52Z +7635 282 2 4412 4.99 2005-07-07T21:56:53Z 2020-02-15T06:59:52Z +7636 282 1 5113 0.99 2005-07-09T07:06:18Z 2020-02-15T06:59:52Z +7637 282 2 5319 8.99 2005-07-09T16:17:44Z 2020-02-15T06:59:52Z +7638 282 1 5926 6.99 2005-07-10T21:53:42Z 2020-02-15T06:59:52Z +7639 282 1 7433 2.99 2005-07-27T17:32:20Z 2020-02-15T06:59:52Z +7640 282 2 7534 3.99 2005-07-27T21:26:17Z 2020-02-15T06:59:52Z +7641 282 1 8223 6.99 2005-07-28T23:56:01Z 2020-02-15T06:59:52Z +7642 282 2 8270 4.99 2005-07-29T01:27:22Z 2020-02-15T06:59:52Z +7643 282 2 8468 1.99 2005-07-29T08:26:04Z 2020-02-15T06:59:52Z +7644 282 2 8743 0.99 2005-07-29T18:57:01Z 2020-02-15T06:59:52Z +7645 282 2 8973 1.99 2005-07-30T04:09:13Z 2020-02-15T06:59:52Z +7646 282 2 9658 9.99 2005-07-31T06:00:52Z 2020-02-15T06:59:52Z +7647 282 2 11226 2.99 2005-08-02T12:47:30Z 2020-02-15T06:59:52Z +7648 282 1 13278 2.99 2005-08-19T17:57:53Z 2020-02-15T06:59:52Z +7649 282 2 13749 2.99 2005-08-20T11:00:37Z 2020-02-15T06:59:52Z +7650 282 2 15543 4.99 2005-08-23T04:15:41Z 2020-02-15T06:59:52Z +7651 282 2 15430 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7652 283 1 1749 0.99 2005-06-16T16:56:00Z 2020-02-15T06:59:52Z +7653 283 2 1796 2.99 2005-06-16T20:10:43Z 2020-02-15T06:59:52Z +7654 283 2 2333 2.99 2005-06-18T10:55:54Z 2020-02-15T06:59:52Z +7655 283 1 2685 2.99 2005-06-19T12:35:21Z 2020-02-15T06:59:52Z +7656 283 2 2849 7.99 2005-06-19T23:06:00Z 2020-02-15T06:59:52Z +7657 283 1 3534 4.99 2005-07-06T01:32:27Z 2020-02-15T06:59:52Z +7658 283 1 3568 6.99 2005-07-06T03:11:57Z 2020-02-15T06:59:52Z +7659 283 2 3590 4.99 2005-07-06T04:35:12Z 2020-02-15T06:59:52Z +7660 283 2 3672 0.99 2005-07-06T09:01:56Z 2020-02-15T06:59:52Z +7661 283 2 4683 2.99 2005-07-08T10:38:28Z 2020-02-15T06:59:52Z +7662 283 2 4876 1.99 2005-07-08T19:27:50Z 2020-02-15T06:59:52Z +7663 283 2 5989 2.99 2005-07-11T00:57:53Z 2020-02-15T06:59:52Z +7664 283 1 6075 0.99 2005-07-11T05:03:03Z 2020-02-15T06:59:52Z +7665 283 1 6300 1.99 2005-07-11T17:50:09Z 2020-02-15T06:59:52Z +7666 283 2 6313 0.99 2005-07-11T18:29:52Z 2020-02-15T06:59:52Z +7667 283 1 6827 4.99 2005-07-12T18:33:45Z 2020-02-15T06:59:52Z +7668 283 1 7504 0.99 2005-07-27T20:24:31Z 2020-02-15T06:59:52Z +7669 283 1 7816 0.99 2005-07-28T08:14:12Z 2020-02-15T06:59:52Z +7670 283 2 9353 4.99 2005-07-30T18:30:37Z 2020-02-15T06:59:52Z +7671 283 2 9478 2.99 2005-07-30T23:12:53Z 2020-02-15T06:59:52Z +7672 283 2 9572 2.99 2005-07-31T02:44:10Z 2020-02-15T06:59:52Z +7673 283 2 9918 2.99 2005-07-31T14:55:22Z 2020-02-15T06:59:52Z +7674 283 1 11637 0.99 2005-08-17T04:36:39Z 2020-02-15T06:59:52Z +7675 283 2 11846 2.99 2005-08-17T13:18:29Z 2020-02-15T06:59:52Z +7676 283 2 11966 0.99 2005-08-17T17:40:04Z 2020-02-15T06:59:52Z +7677 283 1 12290 6.99 2005-08-18T05:08:03Z 2020-02-15T06:59:52Z +7678 283 1 13229 2.99 2005-08-19T16:08:33Z 2020-02-15T06:59:52Z +7679 283 1 15837 2.99 2005-08-23T15:29:41Z 2020-02-15T06:59:52Z +7680 284 2 423 0.99 2005-05-27T15:32:57Z 2020-02-15T06:59:52Z +7681 284 2 791 0.99 2005-05-29T16:30:42Z 2020-02-15T06:59:52Z +7682 284 1 1145 6.99 2005-05-31T20:13:45Z 2020-02-15T06:59:52Z +7683 284 1 1171 0.99 2005-06-14T23:50:11Z 2020-02-15T06:59:52Z +7684 284 2 2813 6.99 2005-06-19T20:01:47Z 2020-02-15T06:59:52Z +7685 284 2 3296 0.99 2005-06-21T07:04:53Z 2020-02-15T06:59:52Z +7686 284 1 3572 0.99 2005-07-06T03:33:23Z 2020-02-15T06:59:52Z +7687 284 2 4081 2.99 2005-07-07T05:10:08Z 2020-02-15T06:59:52Z +7688 284 1 4759 7.99 2005-07-08T14:39:22Z 2020-02-15T06:59:52Z +7689 284 2 4931 7.99 2005-07-08T22:16:18Z 2020-02-15T06:59:52Z +7690 284 1 5161 6.99 2005-07-09T08:57:56Z 2020-02-15T06:59:52Z +7691 284 1 6276 5.99 2005-07-11T16:15:50Z 2020-02-15T06:59:52Z +7692 284 2 6982 2.99 2005-07-27T00:53:41Z 2020-02-15T06:59:52Z +7693 284 1 7164 6.99 2005-07-27T07:36:34Z 2020-02-15T06:59:52Z +7694 284 1 7463 4.99 2005-07-27T18:48:32Z 2020-02-15T06:59:52Z +7695 284 2 7716 8.99 2005-07-28T04:33:15Z 2020-02-15T06:59:52Z +7696 284 1 8888 2.99 2005-07-30T00:39:36Z 2020-02-15T06:59:52Z +7697 284 1 9790 0.99 2005-07-31T10:34:08Z 2020-02-15T06:59:52Z +7698 284 1 10396 7.99 2005-08-01T07:08:46Z 2020-02-15T06:59:52Z +7699 284 1 10535 4.99 2005-08-01T12:21:13Z 2020-02-15T06:59:52Z +7700 284 2 12162 3.99 2005-08-18T00:44:30Z 2020-02-15T06:59:52Z +7701 284 1 14007 5.99 2005-08-20T20:22:47Z 2020-02-15T06:59:52Z +7702 284 1 14648 4.99 2005-08-21T19:18:01Z 2020-02-15T06:59:52Z +7703 284 2 14746 4.99 2005-08-21T22:54:02Z 2020-02-15T06:59:52Z +7704 284 1 14921 4.99 2005-08-22T05:12:24Z 2020-02-15T06:59:52Z +7705 284 2 15135 3.99 2005-08-22T13:19:19Z 2020-02-15T06:59:52Z +7706 284 1 12064 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7707 284 2 12959 0 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7708 285 2 1161 7.99 2005-06-14T23:07:08Z 2020-02-15T06:59:52Z +7709 285 2 1302 3.99 2005-06-15T09:48:37Z 2020-02-15T06:59:52Z +7710 285 1 2249 5.99 2005-06-18T05:03:08Z 2020-02-15T06:59:52Z +7711 285 2 4007 6.99 2005-07-07T00:26:05Z 2020-02-15T06:59:52Z +7712 285 2 5112 2.99 2005-07-09T07:04:04Z 2020-02-15T06:59:52Z +7713 285 1 5683 9.99 2005-07-10T08:52:13Z 2020-02-15T06:59:52Z +7714 285 1 6010 0.99 2005-07-11T01:52:28Z 2020-02-15T06:59:52Z +7715 285 2 6083 3.99 2005-07-11T05:12:49Z 2020-02-15T06:59:52Z +7716 285 1 6094 4.99 2005-07-11T05:54:42Z 2020-02-15T06:59:52Z +7717 285 2 6333 4.99 2005-07-11T19:20:16Z 2020-02-15T06:59:52Z +7718 285 2 6644 0.99 2005-07-12T10:39:39Z 2020-02-15T06:59:52Z +7719 285 1 7211 6.99 2005-07-27T09:20:00Z 2020-02-15T06:59:52Z +7720 285 1 7452 9.99 2005-07-27T18:26:39Z 2020-02-15T06:59:52Z +7721 285 1 7745 9.99 2005-07-28T05:46:28Z 2020-02-15T06:59:52Z +7722 285 1 8154 4.99 2005-07-28T20:56:18Z 2020-02-15T06:59:52Z +7723 285 2 8466 0.99 2005-07-29T08:24:47Z 2020-02-15T06:59:52Z +7724 285 1 10493 5.99 2005-08-01T10:43:12Z 2020-02-15T06:59:52Z +7725 285 2 10628 2.99 2005-08-01T15:33:19Z 2020-02-15T06:59:52Z +7726 285 1 10641 4.99 2005-08-01T15:44:57Z 2020-02-15T06:59:52Z +7727 285 1 12027 8.99 2005-08-17T20:01:12Z 2020-02-15T06:59:52Z +7728 285 1 12444 0.99 2005-08-18T10:53:12Z 2020-02-15T06:59:52Z +7729 285 1 12449 0.99 2005-08-18T11:03:04Z 2020-02-15T06:59:52Z +7730 285 2 12687 9.99 2005-08-18T19:57:39Z 2020-02-15T06:59:52Z +7731 285 2 13102 7.99 2005-08-19T11:02:03Z 2020-02-15T06:59:52Z +7732 285 2 15251 0.99 2005-08-22T18:03:57Z 2020-02-15T06:59:52Z +7733 285 1 15489 4.99 2005-08-23T02:06:41Z 2020-02-15T06:59:52Z +7734 286 2 81 6.99 2005-05-25T12:15:19Z 2020-02-15T06:59:52Z +7735 286 1 1690 8.99 2005-06-16T12:24:18Z 2020-02-15T06:59:52Z +7736 286 1 2195 4.99 2005-06-18T01:44:46Z 2020-02-15T06:59:52Z +7737 286 2 3592 4.99 2005-07-06T04:38:50Z 2020-02-15T06:59:52Z +7738 286 2 3692 3.99 2005-07-06T09:54:12Z 2020-02-15T06:59:52Z +7739 286 2 4242 6.99 2005-07-07T13:39:01Z 2020-02-15T06:59:52Z +7740 286 2 4461 9.99 2005-07-07T23:59:43Z 2020-02-15T06:59:52Z +7741 286 1 4707 4.99 2005-07-08T11:57:28Z 2020-02-15T06:59:52Z +7742 286 1 4894 2.99 2005-07-08T20:21:31Z 2020-02-15T06:59:52Z +7743 286 1 5796 4.99 2005-07-10T14:42:54Z 2020-02-15T06:59:52Z +7744 286 2 6611 2.99 2005-07-12T08:20:23Z 2020-02-15T06:59:52Z +7745 286 1 7254 2.99 2005-07-27T10:48:50Z 2020-02-15T06:59:52Z +7746 286 1 7299 2.99 2005-07-27T12:49:56Z 2020-02-15T06:59:52Z +7747 286 1 7368 0.99 2005-07-27T15:06:05Z 2020-02-15T06:59:52Z +7748 286 1 7422 2.99 2005-07-27T17:10:42Z 2020-02-15T06:59:52Z +7749 286 1 7719 6.99 2005-07-28T04:39:09Z 2020-02-15T06:59:52Z +7750 286 2 8399 0.99 2005-07-29T06:20:18Z 2020-02-15T06:59:52Z +7751 286 2 9280 6.99 2005-07-30T15:15:38Z 2020-02-15T06:59:52Z +7752 286 1 9809 3.99 2005-07-31T11:19:21Z 2020-02-15T06:59:52Z +7753 286 2 10105 5.99 2005-07-31T20:54:20Z 2020-02-15T06:59:52Z +7754 286 2 11670 0.99 2005-08-17T05:48:59Z 2020-02-15T06:59:52Z +7755 286 2 12595 0.99 2005-08-18T16:27:08Z 2020-02-15T06:59:52Z +7756 286 1 12656 0.99 2005-08-18T18:58:35Z 2020-02-15T06:59:52Z +7757 286 2 13635 5.99 2005-08-20T07:17:35Z 2020-02-15T06:59:52Z +7758 286 1 13975 4.99 2005-08-20T18:58:23Z 2020-02-15T06:59:52Z +7759 286 1 14905 0.99 2005-08-22T04:34:22Z 2020-02-15T06:59:52Z +7760 286 2 15629 4.99 2005-08-23T07:28:22Z 2020-02-15T06:59:52Z +7761 287 2 498 0.99 2005-05-28T01:01:21Z 2020-02-15T06:59:52Z +7762 287 1 655 2.99 2005-05-28T20:16:20Z 2020-02-15T06:59:52Z +7763 287 2 964 2.99 2005-05-30T18:53:21Z 2020-02-15T06:59:52Z +7764 287 1 1247 7.99 2005-06-15T05:16:40Z 2020-02-15T06:59:52Z +7765 287 2 1642 2.99 2005-06-16T08:54:15Z 2020-02-15T06:59:52Z +7766 287 2 2286 9.99 2005-06-18T07:02:32Z 2020-02-15T06:59:52Z +7767 287 2 2612 6.99 2005-06-19T07:19:41Z 2020-02-15T06:59:52Z +7768 287 2 4877 4.99 2005-07-08T19:31:02Z 2020-02-15T06:59:52Z +7769 287 2 5346 1.99 2005-07-09T17:29:01Z 2020-02-15T06:59:52Z +7770 287 1 5593 3.99 2005-07-10T04:33:13Z 2020-02-15T06:59:52Z +7771 287 2 5761 0.99 2005-07-10T12:45:36Z 2020-02-15T06:59:52Z +7772 287 2 6379 3.99 2005-07-11T21:51:25Z 2020-02-15T06:59:52Z +7773 287 1 6397 2.99 2005-07-11T22:34:02Z 2020-02-15T06:59:52Z +7774 287 2 7402 2.99 2005-07-27T16:19:40Z 2020-02-15T06:59:52Z +7775 287 2 7777 2.99 2005-07-28T07:04:42Z 2020-02-15T06:59:52Z +7776 287 2 8994 6.99 2005-07-30T04:51:32Z 2020-02-15T06:59:52Z +7777 287 2 9716 1.99 2005-07-31T08:23:53Z 2020-02-15T06:59:52Z +7778 287 1 10027 6.99 2005-07-31T18:33:51Z 2020-02-15T06:59:52Z +7779 287 2 10574 2.99 2005-08-01T13:36:51Z 2020-02-15T06:59:52Z +7780 287 2 10807 4.99 2005-08-01T22:26:10Z 2020-02-15T06:59:52Z +7781 287 2 11106 4.99 2005-08-02T08:17:38Z 2020-02-15T06:59:52Z +7782 287 1 11716 4.99 2005-08-17T07:40:55Z 2020-02-15T06:59:52Z +7783 287 2 12861 2.99 2005-08-19T02:30:24Z 2020-02-15T06:59:52Z +7784 287 2 14715 6.99 2005-08-21T21:28:18Z 2020-02-15T06:59:52Z +7785 287 2 15076 1.99 2005-08-22T11:05:34Z 2020-02-15T06:59:52Z +7786 287 1 15084 4.99 2005-08-22T11:17:59Z 2020-02-15T06:59:52Z +7787 287 2 15127 0.99 2005-08-22T12:56:29Z 2020-02-15T06:59:52Z +7788 287 1 15614 2.99 2005-08-23T07:05:15Z 2020-02-15T06:59:52Z +7789 287 2 14204 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +7790 288 2 93 3.99 2005-05-25T15:54:16Z 2020-02-15T06:59:52Z +7791 288 2 427 6.99 2005-05-27T16:10:04Z 2020-02-15T06:59:52Z +7792 288 1 503 4.99 2005-05-28T01:35:25Z 2020-02-15T06:59:52Z +7793 288 2 565 5.99 2005-05-28T09:26:31Z 2020-02-15T06:59:52Z +7794 288 1 1466 5.99 2005-06-15T20:46:04Z 2020-02-15T06:59:52Z +7795 288 1 3958 3.99 2005-07-06T22:07:33Z 2020-02-15T06:59:52Z +7796 288 1 4692 2.99 2005-07-08T11:07:06Z 2020-02-15T06:59:52Z +7797 288 2 4758 0.99 2005-07-08T14:38:02Z 2020-02-15T06:59:52Z +7798 288 1 6399 2.99 2005-07-11T22:39:05Z 2020-02-15T06:59:52Z +7799 288 2 6518 3.99 2005-07-12T03:59:42Z 2020-02-15T06:59:52Z +7800 288 2 7744 0.99 2005-07-28T05:38:20Z 2020-02-15T06:59:52Z +7801 288 2 7855 2.99 2005-07-28T09:43:02Z 2020-02-15T06:59:52Z +7802 288 2 9429 2.99 2005-07-30T21:19:26Z 2020-02-15T06:59:52Z +7803 288 1 9732 0.99 2005-07-31T08:56:08Z 2020-02-15T06:59:52Z +7804 288 1 10927 9.99 2005-08-02T02:31:15Z 2020-02-15T06:59:52Z +7805 288 2 11952 2.99 2005-08-17T17:14:57Z 2020-02-15T06:59:52Z +7806 288 1 12134 1.99 2005-08-17T23:49:43Z 2020-02-15T06:59:52Z +7807 288 1 13219 2.99 2005-08-19T15:40:28Z 2020-02-15T06:59:52Z +7808 288 1 13227 0.99 2005-08-19T16:05:38Z 2020-02-15T06:59:52Z +7809 288 2 13363 2.99 2005-08-19T21:07:59Z 2020-02-15T06:59:52Z +7810 288 2 14113 0.99 2005-08-21T01:03:30Z 2020-02-15T06:59:52Z +7811 288 2 14756 0.99 2005-08-21T23:21:23Z 2020-02-15T06:59:52Z +7812 288 2 15058 2.99 2005-08-22T10:20:55Z 2020-02-15T06:59:52Z +7813 288 1 15119 2.99 2005-08-22T12:41:33Z 2020-02-15T06:59:52Z +7814 289 2 1880 4.99 2005-06-17T03:08:59Z 2020-02-15T06:59:52Z +7815 289 2 2316 0.99 2005-06-18T09:04:59Z 2020-02-15T06:59:52Z +7816 289 1 2387 6.99 2005-06-18T15:24:19Z 2020-02-15T06:59:52Z +7817 289 1 2784 10.99 2005-06-19T18:40:29Z 2020-02-15T06:59:52Z +7818 289 2 2948 6.99 2005-06-20T06:02:35Z 2020-02-15T06:59:52Z +7819 289 2 3123 6.99 2005-06-20T18:26:14Z 2020-02-15T06:59:52Z +7820 289 1 3588 2.99 2005-07-06T04:29:13Z 2020-02-15T06:59:52Z +7821 289 2 4622 0.99 2005-07-08T08:02:42Z 2020-02-15T06:59:52Z +7822 289 1 5089 4.99 2005-07-09T05:45:40Z 2020-02-15T06:59:52Z +7823 289 2 5342 8.99 2005-07-09T17:20:03Z 2020-02-15T06:59:52Z +7824 289 2 5584 4.99 2005-07-10T04:15:25Z 2020-02-15T06:59:52Z +7825 289 2 5724 0.99 2005-07-10T11:18:12Z 2020-02-15T06:59:52Z +7826 289 2 6007 3.99 2005-07-11T01:43:06Z 2020-02-15T06:59:52Z +7827 289 2 6536 7.99 2005-07-12T04:44:25Z 2020-02-15T06:59:52Z +7828 289 1 7151 4.99 2005-07-27T07:14:31Z 2020-02-15T06:59:52Z +7829 289 1 7162 4.99 2005-07-27T07:32:45Z 2020-02-15T06:59:52Z +7830 289 2 7325 0.99 2005-07-27T13:46:55Z 2020-02-15T06:59:52Z +7831 289 1 9498 2.99 2005-07-30T23:56:55Z 2020-02-15T06:59:52Z +7832 289 2 10297 7.99 2005-08-01T04:05:04Z 2020-02-15T06:59:52Z +7833 289 1 12158 1.99 2005-08-18T00:34:20Z 2020-02-15T06:59:52Z +7834 289 1 12170 0.99 2005-08-18T01:06:10Z 2020-02-15T06:59:52Z +7835 289 2 12558 7.99 2005-08-18T14:52:35Z 2020-02-15T06:59:52Z +7836 289 2 13165 0.99 2005-08-19T13:34:10Z 2020-02-15T06:59:52Z +7837 289 2 13211 0.99 2005-08-19T15:23:41Z 2020-02-15T06:59:52Z +7838 289 2 13256 9.99 2005-08-19T16:54:12Z 2020-02-15T06:59:52Z +7839 289 2 13336 5.99 2005-08-19T20:03:22Z 2020-02-15T06:59:52Z +7840 289 2 13891 6.99 2005-08-20T15:42:05Z 2020-02-15T06:59:52Z +7841 289 1 14087 0.99 2005-08-20T23:53:40Z 2020-02-15T06:59:52Z +7842 289 2 14729 4.99 2005-08-21T22:16:57Z 2020-02-15T06:59:52Z +7843 289 2 14917 4.99 2005-08-22T05:03:59Z 2020-02-15T06:59:52Z +7844 290 1 160 2.99 2005-05-26T01:46:20Z 2020-02-15T06:59:52Z +7845 290 1 1220 6.99 2005-06-15T03:26:15Z 2020-02-15T06:59:52Z +7846 290 2 1336 8.99 2005-06-15T12:01:34Z 2020-02-15T06:59:52Z +7847 290 2 1496 4.99 2005-06-15T21:55:58Z 2020-02-15T06:59:52Z +7848 290 2 1532 0.99 2005-06-16T00:41:31Z 2020-02-15T06:59:52Z +7849 290 1 3013 3.99 2005-06-20T10:45:09Z 2020-02-15T06:59:52Z +7850 290 2 4039 4.99 2005-07-07T02:57:59Z 2020-02-15T06:59:52Z +7851 290 1 4073 0.99 2005-07-07T04:49:13Z 2020-02-15T06:59:52Z +7852 290 2 4416 0.99 2005-07-07T22:04:36Z 2020-02-15T06:59:52Z +7853 290 1 5105 2.99 2005-07-09T06:38:59Z 2020-02-15T06:59:52Z +7854 290 2 5214 5.99 2005-07-09T11:43:08Z 2020-02-15T06:59:52Z +7855 290 2 5827 2.99 2005-07-10T16:22:20Z 2020-02-15T06:59:52Z +7856 290 2 6816 4.99 2005-07-12T18:18:50Z 2020-02-15T06:59:52Z +7857 290 1 6952 4.99 2005-07-26T23:51:27Z 2020-02-15T06:59:52Z +7858 290 2 7265 2.99 2005-07-27T11:19:01Z 2020-02-15T06:59:52Z +7859 290 1 7650 1.99 2005-07-28T01:47:20Z 2020-02-15T06:59:52Z +7860 290 1 8639 4.99 2005-07-29T14:30:31Z 2020-02-15T06:59:52Z +7861 290 1 9000 7.99 2005-07-30T04:58:55Z 2020-02-15T06:59:52Z +7862 290 1 9413 0.99 2005-07-30T20:44:39Z 2020-02-15T06:59:52Z +7863 290 2 10096 3.99 2005-07-31T20:38:58Z 2020-02-15T06:59:52Z +7864 290 1 10194 1.99 2005-08-01T00:33:52Z 2020-02-15T06:59:52Z +7865 290 1 10901 2.99 2005-08-02T01:35:44Z 2020-02-15T06:59:52Z +7866 290 1 11596 6.99 2005-08-17T02:53:55Z 2020-02-15T06:59:52Z +7867 290 2 12193 3.99 2005-08-18T02:03:59Z 2020-02-15T06:59:52Z +7868 290 2 12778 4.99 2005-08-18T23:40:23Z 2020-02-15T06:59:52Z +7869 290 2 13190 1.99 2005-08-19T14:27:59Z 2020-02-15T06:59:52Z +7870 290 1 13367 2.99 2005-08-19T21:19:27Z 2020-02-15T06:59:52Z +7871 290 2 13687 2.99 2005-08-20T08:57:51Z 2020-02-15T06:59:52Z +7872 291 1 54 4.99 2005-05-25T07:23:25Z 2020-02-15T06:59:52Z +7873 291 2 747 4.99 2005-05-29T09:26:34Z 2020-02-15T06:59:52Z +7874 291 1 1012 2.99 2005-05-31T02:18:05Z 2020-02-15T06:59:52Z +7875 291 1 1191 2.99 2005-06-15T01:10:35Z 2020-02-15T06:59:52Z +7876 291 1 2300 2.99 2005-06-18T08:22:34Z 2020-02-15T06:59:52Z +7877 291 2 3042 2.99 2005-06-20T12:38:27Z 2020-02-15T06:59:52Z +7878 291 2 3512 4.99 2005-07-06T00:43:06Z 2020-02-15T06:59:52Z +7879 291 2 4862 3.99 2005-07-08T19:02:46Z 2020-02-15T06:59:52Z +7880 291 2 5754 2.99 2005-07-10T12:32:43Z 2020-02-15T06:59:52Z +7881 291 2 6516 4.99 2005-07-12T03:51:54Z 2020-02-15T06:59:52Z +7882 291 1 6796 2.99 2005-07-12T16:44:16Z 2020-02-15T06:59:52Z +7883 291 1 7561 5.99 2005-07-27T22:21:05Z 2020-02-15T06:59:52Z +7884 291 2 7564 0.99 2005-07-27T22:31:17Z 2020-02-15T06:59:52Z +7885 291 1 8690 0.99 2005-07-29T16:39:28Z 2020-02-15T06:59:52Z +7886 291 2 8697 4.99 2005-07-29T16:46:07Z 2020-02-15T06:59:52Z +7887 291 1 9165 5.99 2005-07-30T11:24:28Z 2020-02-15T06:59:52Z +7888 291 2 9201 5.99 2005-07-30T12:42:21Z 2020-02-15T06:59:52Z +7889 291 2 9919 7.99 2005-07-31T14:55:46Z 2020-02-15T06:59:52Z +7890 291 1 10463 4.99 2005-08-01T09:39:43Z 2020-02-15T06:59:52Z +7891 291 2 11145 0.99 2005-08-02T09:43:24Z 2020-02-15T06:59:52Z +7892 291 1 13665 5.99 2005-08-20T08:19:20Z 2020-02-15T06:59:52Z +7893 291 2 14241 4.99 2005-08-21T05:24:55Z 2020-02-15T06:59:52Z +7894 291 2 15663 3.99 2005-08-23T08:54:26Z 2020-02-15T06:59:52Z +7895 292 1 324 0.99 2005-05-27T01:00:04Z 2020-02-15T06:59:52Z +7896 292 1 1901 3.99 2005-06-17T04:35:19Z 2020-02-15T06:59:52Z +7897 292 2 2258 3.99 2005-06-18T05:30:36Z 2020-02-15T06:59:52Z +7898 292 1 2838 3.99 2005-06-19T22:06:06Z 2020-02-15T06:59:52Z +7899 292 2 3328 2.99 2005-06-21T09:08:44Z 2020-02-15T06:59:52Z +7900 292 2 3557 0.99 2005-07-06T02:48:39Z 2020-02-15T06:59:52Z +7901 292 1 4200 4.99 2005-07-07T11:15:11Z 2020-02-15T06:59:52Z +7902 292 2 5095 4.99 2005-07-09T06:08:22Z 2020-02-15T06:59:52Z +7903 292 2 5257 0.99 2005-07-09T13:56:43Z 2020-02-15T06:59:52Z +7904 292 1 5940 4.99 2005-07-10T22:31:01Z 2020-02-15T06:59:52Z +7905 292 1 6270 8.99 2005-07-11T15:59:10Z 2020-02-15T06:59:52Z +7906 292 1 6900 6.99 2005-07-12T21:45:25Z 2020-02-15T06:59:52Z +7907 292 2 7199 5.99 2005-07-27T08:53:23Z 2020-02-15T06:59:52Z +7908 292 1 7216 2.99 2005-07-27T09:27:45Z 2020-02-15T06:59:52Z +7909 292 1 7545 2.99 2005-07-27T21:48:03Z 2020-02-15T06:59:52Z +7910 292 1 7766 4.99 2005-07-28T06:41:57Z 2020-02-15T06:59:52Z +7911 292 1 8047 2.99 2005-07-28T16:49:43Z 2020-02-15T06:59:52Z +7912 292 2 8842 4.99 2005-07-29T23:03:40Z 2020-02-15T06:59:52Z +7913 292 1 8990 8.99 2005-07-30T04:41:42Z 2020-02-15T06:59:52Z +7914 292 1 9792 5.99 2005-07-31T10:43:41Z 2020-02-15T06:59:52Z +7915 292 2 9819 1.99 2005-07-31T11:39:13Z 2020-02-15T06:59:52Z +7916 292 1 11193 4.99 2005-08-02T11:31:33Z 2020-02-15T06:59:52Z +7917 292 1 12739 10.99 2005-08-18T22:15:18Z 2020-02-15T06:59:52Z +7918 292 1 13715 2.99 2005-08-20T09:43:06Z 2020-02-15T06:59:52Z +7919 292 1 14499 0.99 2005-08-21T14:11:19Z 2020-02-15T06:59:52Z +7920 292 2 14845 4.99 2005-08-22T02:12:44Z 2020-02-15T06:59:52Z +7921 292 1 15117 2.99 2005-08-22T12:38:20Z 2020-02-15T06:59:52Z +7922 293 2 445 0.99 2005-05-27T18:42:57Z 2020-02-15T06:59:52Z +7923 293 1 924 4.99 2005-05-30T12:10:59Z 2020-02-15T06:59:52Z +7924 293 2 1034 8.99 2005-05-31T04:53:40Z 2020-02-15T06:59:52Z +7925 293 1 1589 9.99 2005-06-16T04:58:03Z 2020-02-15T06:59:52Z +7926 293 1 1829 5.99 2005-06-16T22:14:21Z 2020-02-15T06:59:52Z +7927 293 2 1860 4.99 2005-06-17T01:17:12Z 2020-02-15T06:59:52Z +7928 293 1 2386 4.99 2005-06-18T15:22:51Z 2020-02-15T06:59:52Z +7929 293 2 3025 2.99 2005-06-20T11:46:48Z 2020-02-15T06:59:52Z +7930 293 1 3290 1.99 2005-06-21T06:45:34Z 2020-02-15T06:59:52Z +7931 293 2 3452 4.99 2005-06-21T21:11:27Z 2020-02-15T06:59:52Z +7932 293 1 3906 3.99 2005-07-06T19:35:55Z 2020-02-15T06:59:52Z +7933 293 2 4343 0.99 2005-07-07T18:48:54Z 2020-02-15T06:59:52Z +7934 293 2 4542 4.99 2005-07-08T04:06:30Z 2020-02-15T06:59:52Z +7935 293 2 4944 6.99 2005-07-08T22:44:28Z 2020-02-15T06:59:52Z +7936 293 2 5765 3.99 2005-07-10T13:03:02Z 2020-02-15T06:59:52Z +7937 293 1 6432 9.99 2005-07-12T00:09:41Z 2020-02-15T06:59:52Z +7938 293 2 7607 4.99 2005-07-28T00:05:53Z 2020-02-15T06:59:52Z +7939 293 1 8589 4.99 2005-07-29T12:28:17Z 2020-02-15T06:59:52Z +7940 293 1 8745 2.99 2005-07-29T19:03:05Z 2020-02-15T06:59:52Z +7941 293 2 9123 2.99 2005-07-30T09:39:15Z 2020-02-15T06:59:52Z +7942 293 2 11131 1.99 2005-08-02T09:10:04Z 2020-02-15T06:59:52Z +7943 293 1 11576 2.99 2005-08-17T01:53:20Z 2020-02-15T06:59:52Z +7944 293 2 13013 6.99 2005-08-19T07:55:51Z 2020-02-15T06:59:52Z +7945 293 1 13029 2.99 2005-08-19T08:28:04Z 2020-02-15T06:59:52Z +7946 293 2 13504 5.99 2005-08-20T02:01:48Z 2020-02-15T06:59:52Z +7947 293 1 13817 4.99 2005-08-20T13:15:30Z 2020-02-15T06:59:52Z +7948 293 1 14248 6.99 2005-08-21T05:35:57Z 2020-02-15T06:59:52Z +7949 293 1 15258 4.99 2005-08-22T18:22:44Z 2020-02-15T06:59:52Z +7950 293 1 15402 8.99 2005-08-22T23:17:41Z 2020-02-15T06:59:52Z +7951 293 1 15508 7.99 2005-08-23T02:49:04Z 2020-02-15T06:59:52Z +7952 293 2 15675 5.99 2005-08-23T09:18:52Z 2020-02-15T06:59:52Z +7953 294 1 595 1.99 2005-05-28T13:59:54Z 2020-02-15T06:59:52Z +7954 294 1 2900 2.99 2005-06-20T02:40:04Z 2020-02-15T06:59:52Z +7955 294 2 3330 2.99 2005-06-21T09:22:37Z 2020-02-15T06:59:52Z +7956 294 1 3681 4.99 2005-07-06T09:19:30Z 2020-02-15T06:59:52Z +7957 294 2 4019 4.99 2005-07-07T01:27:44Z 2020-02-15T06:59:52Z +7958 294 1 4786 7.99 2005-07-08T16:13:05Z 2020-02-15T06:59:52Z +7959 294 2 6185 5.99 2005-07-11T11:25:09Z 2020-02-15T06:59:52Z +7960 294 2 7415 6.99 2005-07-27T16:50:59Z 2020-02-15T06:59:52Z +7961 294 1 7765 4.99 2005-07-28T06:40:33Z 2020-02-15T06:59:52Z +7962 294 2 8843 4.99 2005-07-29T23:04:25Z 2020-02-15T06:59:52Z +7963 294 2 9194 2.99 2005-07-30T12:28:45Z 2020-02-15T06:59:52Z +7964 294 1 9522 2.99 2005-07-31T00:55:11Z 2020-02-15T06:59:52Z +7965 294 2 9607 0.99 2005-07-31T03:51:06Z 2020-02-15T06:59:52Z +7966 294 2 10186 0.99 2005-08-01T00:12:36Z 2020-02-15T06:59:52Z +7967 294 2 10220 4.99 2005-08-01T01:13:22Z 2020-02-15T06:59:52Z +7968 294 1 10551 6.99 2005-08-01T12:48:55Z 2020-02-15T06:59:52Z +7969 294 2 10600 2.99 2005-08-01T14:25:21Z 2020-02-15T06:59:52Z +7970 294 2 10642 4.99 2005-08-01T15:45:11Z 2020-02-15T06:59:52Z +7971 294 2 11071 2.99 2005-08-02T07:10:53Z 2020-02-15T06:59:52Z +7972 294 1 11390 2.99 2005-08-02T18:39:16Z 2020-02-15T06:59:52Z +7973 294 2 11875 4.99 2005-08-17T14:16:48Z 2020-02-15T06:59:52Z +7974 294 2 11981 2.99 2005-08-17T18:10:40Z 2020-02-15T06:59:52Z +7975 294 1 12278 5.99 2005-08-18T04:46:45Z 2020-02-15T06:59:52Z +7976 294 1 14474 2.99 2005-08-21T13:22:48Z 2020-02-15T06:59:52Z +7977 294 2 14630 7.99 2005-08-21T18:43:44Z 2020-02-15T06:59:52Z +7978 294 1 15839 5.99 2005-08-23T15:34:46Z 2020-02-15T06:59:52Z +7979 295 2 371 3.99 2005-05-27T08:08:18Z 2020-02-15T06:59:52Z +7980 295 1 1184 5.99 2005-06-15T00:49:36Z 2020-02-15T06:59:52Z +7981 295 1 1328 2.99 2005-06-15T11:23:27Z 2020-02-15T06:59:52Z +7982 295 2 1935 2.99 2005-06-17T07:14:15Z 2020-02-15T06:59:52Z +7983 295 1 2054 2.99 2005-06-17T15:26:37Z 2020-02-15T06:59:52Z +7984 295 1 2431 1.99 2005-06-18T17:53:03Z 2020-02-15T06:59:52Z +7985 295 1 2638 1.99 2005-06-19T09:23:30Z 2020-02-15T06:59:52Z +7986 295 1 2999 2.99 2005-06-20T09:30:34Z 2020-02-15T06:59:52Z +7987 295 1 3198 1.99 2005-06-21T00:08:54Z 2020-02-15T06:59:52Z +7988 295 2 3394 8.99 2005-06-21T15:17:39Z 2020-02-15T06:59:52Z +7989 295 2 3496 1.99 2005-07-05T23:59:15Z 2020-02-15T06:59:52Z +7990 295 1 3876 9.99 2005-07-06T18:21:13Z 2020-02-15T06:59:52Z +7991 295 1 4164 1.99 2005-07-07T09:20:11Z 2020-02-15T06:59:52Z +7992 295 1 4432 1.99 2005-07-07T22:40:02Z 2020-02-15T06:59:52Z +7993 295 1 5019 2.99 2005-07-09T02:04:32Z 2020-02-15T06:59:52Z +7994 295 2 5053 4.99 2005-07-09T03:59:46Z 2020-02-15T06:59:52Z +7995 295 2 5283 2.99 2005-07-09T15:07:17Z 2020-02-15T06:59:52Z +7996 295 2 5994 4.99 2005-07-11T01:14:10Z 2020-02-15T06:59:52Z +7997 295 1 6252 2.99 2005-07-11T15:06:29Z 2020-02-15T06:59:52Z +7998 295 2 6331 3.99 2005-07-11T19:17:21Z 2020-02-15T06:59:52Z +7999 295 2 8087 0.99 2005-07-28T18:21:16Z 2020-02-15T06:59:52Z +8000 295 1 8108 7.99 2005-07-28T19:07:38Z 2020-02-15T06:59:52Z +8001 295 1 8840 9.99 2005-07-29T22:55:38Z 2020-02-15T06:59:52Z +8002 295 2 8932 2.99 2005-07-30T02:31:26Z 2020-02-15T06:59:52Z +8003 295 1 9425 7.99 2005-07-30T21:11:21Z 2020-02-15T06:59:52Z +8004 295 2 9692 8.99 2005-07-31T07:11:04Z 2020-02-15T06:59:52Z +8005 295 2 9793 4.99 2005-07-31T10:45:11Z 2020-02-15T06:59:52Z +8006 295 2 10160 4.99 2005-07-31T23:07:40Z 2020-02-15T06:59:52Z +8007 295 2 10222 0.99 2005-08-01T01:17:42Z 2020-02-15T06:59:52Z +8008 295 1 10349 3.99 2005-08-01T05:27:13Z 2020-02-15T06:59:52Z +8009 295 2 11083 4.99 2005-08-02T07:32:01Z 2020-02-15T06:59:52Z +8010 295 2 11913 5.99 2005-08-17T15:53:17Z 2020-02-15T06:59:52Z +8011 295 2 12041 4.99 2005-08-17T20:34:33Z 2020-02-15T06:59:52Z +8012 295 1 12383 0.99 2005-08-18T08:36:03Z 2020-02-15T06:59:52Z +8013 295 1 14264 0.99 2005-08-21T06:18:22Z 2020-02-15T06:59:52Z +8014 295 1 14387 6.99 2005-08-21T10:10:01Z 2020-02-15T06:59:52Z +8015 295 1 14514 6.99 2005-08-21T14:51:52Z 2020-02-15T06:59:52Z +8016 295 2 15735 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8017 296 2 162 4.99 2005-05-26T02:02:05Z 2020-02-15T06:59:52Z +8018 296 1 511 5.99 2005-05-28T03:04:04Z 2020-02-15T06:59:52Z +8019 296 1 869 4.99 2005-05-30T04:22:06Z 2020-02-15T06:59:52Z +8020 296 2 956 2.99 2005-05-30T17:30:28Z 2020-02-15T06:59:52Z +8021 296 2 1659 4.99 2005-06-16T10:11:46Z 2020-02-15T06:59:52Z +8022 296 1 3034 0.99 2005-06-20T12:15:50Z 2020-02-15T06:59:52Z +8023 296 2 3119 0.99 2005-06-20T18:11:44Z 2020-02-15T06:59:52Z +8024 296 2 3486 7.99 2005-07-05T23:29:55Z 2020-02-15T06:59:52Z +8025 296 1 3810 2.99 2005-07-06T15:18:44Z 2020-02-15T06:59:52Z +8026 296 1 4480 4.99 2005-07-08T00:56:30Z 2020-02-15T06:59:52Z +8027 296 2 5090 0.99 2005-07-09T05:48:22Z 2020-02-15T06:59:52Z +8028 296 1 5589 4.99 2005-07-10T04:22:58Z 2020-02-15T06:59:52Z +8029 296 2 6016 4.99 2005-07-11T02:04:45Z 2020-02-15T06:59:52Z +8030 296 1 6398 5.99 2005-07-11T22:34:49Z 2020-02-15T06:59:52Z +8031 296 1 6967 6.99 2005-07-27T00:16:31Z 2020-02-15T06:59:52Z +8032 296 2 7568 4.99 2005-07-27T22:38:53Z 2020-02-15T06:59:52Z +8033 296 2 8171 0.99 2005-07-28T21:32:57Z 2020-02-15T06:59:52Z +8034 296 1 9249 5.99 2005-07-30T14:15:02Z 2020-02-15T06:59:52Z +8035 296 1 9304 2.99 2005-07-30T16:41:34Z 2020-02-15T06:59:52Z +8036 296 2 11571 4.99 2005-08-17T01:37:51Z 2020-02-15T06:59:52Z +8037 296 2 11825 4.99 2005-08-17T12:43:30Z 2020-02-15T06:59:52Z +8038 296 2 12689 3.99 2005-08-18T20:06:34Z 2020-02-15T06:59:52Z +8039 296 2 13471 2.99 2005-08-20T01:02:26Z 2020-02-15T06:59:52Z +8040 296 1 13702 2.99 2005-08-20T09:27:20Z 2020-02-15T06:59:52Z +8041 296 1 13819 4.99 2005-08-20T13:23:15Z 2020-02-15T06:59:52Z +8042 296 1 13991 1.99 2005-08-20T19:29:44Z 2020-02-15T06:59:52Z +8043 296 2 14571 7.99 2005-08-21T16:40:26Z 2020-02-15T06:59:52Z +8044 296 2 15023 2.99 2005-08-22T08:56:48Z 2020-02-15T06:59:52Z +8045 296 2 15866 7.99 2005-08-23T16:19:02Z 2020-02-15T06:59:52Z +8046 296 1 12009 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8047 297 2 143 0.99 2005-05-25T23:45:52Z 2020-02-15T06:59:52Z +8048 297 1 954 3.99 2005-05-30T16:57:29Z 2020-02-15T06:59:52Z +8049 297 1 1409 3.99 2005-06-15T16:58:12Z 2020-02-15T06:59:52Z +8050 297 1 2067 2.99 2005-06-17T16:11:08Z 2020-02-15T06:59:52Z +8051 297 1 2202 8.99 2005-06-18T02:09:24Z 2020-02-15T06:59:52Z +8052 297 1 2260 2.99 2005-06-18T05:38:36Z 2020-02-15T06:59:52Z +8053 297 2 2339 4.99 2005-06-18T11:29:22Z 2020-02-15T06:59:52Z +8054 297 1 3582 0.99 2005-07-06T04:10:35Z 2020-02-15T06:59:52Z +8055 297 2 4621 2.99 2005-07-08T08:02:18Z 2020-02-15T06:59:52Z +8056 297 1 4929 5.99 2005-07-08T22:06:18Z 2020-02-15T06:59:52Z +8057 297 1 5743 8.99 2005-07-10T11:57:38Z 2020-02-15T06:59:52Z +8058 297 2 6036 2.99 2005-07-11T03:02:28Z 2020-02-15T06:59:52Z +8059 297 1 6064 6.99 2005-07-11T04:23:18Z 2020-02-15T06:59:52Z +8060 297 1 6156 4.99 2005-07-11T09:45:48Z 2020-02-15T06:59:52Z +8061 297 1 6984 2.99 2005-07-27T00:56:30Z 2020-02-15T06:59:52Z +8062 297 2 7867 0.99 2005-07-28T10:08:54Z 2020-02-15T06:59:52Z +8063 297 1 7933 0.99 2005-07-28T12:27:27Z 2020-02-15T06:59:52Z +8064 297 2 9014 2.99 2005-07-30T05:19:27Z 2020-02-15T06:59:52Z +8065 297 2 9674 5.99 2005-07-31T06:36:53Z 2020-02-15T06:59:52Z +8066 297 1 10153 0.99 2005-07-31T22:30:10Z 2020-02-15T06:59:52Z +8067 297 2 10264 4.99 2005-08-01T03:03:12Z 2020-02-15T06:59:52Z +8068 297 2 11269 0.99 2005-08-02T14:11:41Z 2020-02-15T06:59:52Z +8069 297 2 11413 0.99 2005-08-02T19:35:19Z 2020-02-15T06:59:52Z +8070 297 2 11585 4.99 2005-08-17T02:14:36Z 2020-02-15T06:59:52Z +8071 297 1 11780 2.99 2005-08-17T10:34:24Z 2020-02-15T06:59:52Z +8072 297 1 11784 0.99 2005-08-17T10:48:05Z 2020-02-15T06:59:52Z +8073 297 1 12472 10.99 2005-08-18T11:58:48Z 2020-02-15T06:59:52Z +8074 297 1 13330 2.99 2005-08-19T19:59:21Z 2020-02-15T06:59:52Z +8075 297 2 13721 4.99 2005-08-20T10:02:59Z 2020-02-15T06:59:52Z +8076 297 1 13888 1.99 2005-08-20T15:39:42Z 2020-02-15T06:59:52Z +8077 297 1 14403 5.99 2005-08-21T10:40:34Z 2020-02-15T06:59:52Z +8078 297 2 15582 2.99 2005-08-23T05:45:44Z 2020-02-15T06:59:52Z +8079 297 1 15711 4.99 2005-08-23T10:43:00Z 2020-02-15T06:59:52Z +8080 298 1 383 3.99 2005-05-27T10:12:20Z 2020-02-15T06:59:52Z +8081 298 2 1454 4.99 2005-06-15T19:49:41Z 2020-02-15T06:59:52Z +8082 298 2 2385 3.99 2005-06-18T15:22:40Z 2020-02-15T06:59:52Z +8083 298 2 3095 4.99 2005-06-20T16:16:53Z 2020-02-15T06:59:52Z +8084 298 2 3400 4.99 2005-06-21T15:50:30Z 2020-02-15T06:59:52Z +8085 298 2 3479 0.99 2005-07-05T23:08:53Z 2020-02-15T06:59:52Z +8086 298 1 3728 2.99 2005-07-06T11:29:00Z 2020-02-15T06:59:52Z +8087 298 2 4291 2.99 2005-07-07T15:47:47Z 2020-02-15T06:59:52Z +8088 298 1 4936 3.99 2005-07-08T22:24:50Z 2020-02-15T06:59:52Z +8089 298 2 5166 2.99 2005-07-09T09:15:48Z 2020-02-15T06:59:52Z +8090 298 1 5247 2.99 2005-07-09T13:26:28Z 2020-02-15T06:59:52Z +8091 298 2 6802 0.99 2005-07-12T17:14:17Z 2020-02-15T06:59:52Z +8092 298 2 7802 0.99 2005-07-28T07:51:57Z 2020-02-15T06:59:52Z +8093 298 1 7869 7.99 2005-07-28T10:13:15Z 2020-02-15T06:59:52Z +8094 298 2 8737 5.99 2005-07-29T18:32:13Z 2020-02-15T06:59:52Z +8095 298 2 10248 6.99 2005-08-01T02:35:28Z 2020-02-15T06:59:52Z +8096 298 1 11070 0.99 2005-08-02T07:10:39Z 2020-02-15T06:59:52Z +8097 298 2 11288 6.99 2005-08-02T14:54:08Z 2020-02-15T06:59:52Z +8098 298 2 12076 0.99 2005-08-17T21:58:19Z 2020-02-15T06:59:52Z +8099 298 1 12765 8.99 2005-08-18T23:21:50Z 2020-02-15T06:59:52Z +8100 298 1 13172 0.99 2005-08-19T13:49:07Z 2020-02-15T06:59:52Z +8101 298 1 13244 4.99 2005-08-19T16:43:04Z 2020-02-15T06:59:52Z +8102 298 2 14473 0.99 2005-08-21T13:19:03Z 2020-02-15T06:59:52Z +8103 298 1 15245 3.99 2005-08-22T17:49:35Z 2020-02-15T06:59:52Z +8104 298 2 15262 4.99 2005-08-22T18:25:21Z 2020-02-15T06:59:52Z +8105 298 1 15643 4.99 2005-08-23T08:13:26Z 2020-02-15T06:59:52Z +8106 299 1 332 5.99 2005-05-27T02:27:10Z 2020-02-15T06:59:52Z +8107 299 2 606 8.99 2005-05-28T14:48:39Z 2020-02-15T06:59:52Z +8108 299 1 1650 8.99 2005-06-16T09:23:20Z 2020-02-15T06:59:52Z +8109 299 2 2664 4.99 2005-06-19T11:11:23Z 2020-02-15T06:59:52Z +8110 299 1 2774 2.99 2005-06-19T18:05:11Z 2020-02-15T06:59:52Z +8111 299 2 2791 4.99 2005-06-19T18:51:27Z 2020-02-15T06:59:52Z +8112 299 1 3074 0.99 2005-06-20T14:41:41Z 2020-02-15T06:59:52Z +8113 299 2 3223 2.99 2005-06-21T02:06:45Z 2020-02-15T06:59:52Z +8114 299 1 3288 5.99 2005-06-21T06:36:59Z 2020-02-15T06:59:52Z +8115 299 2 3497 0.99 2005-07-06T00:00:03Z 2020-02-15T06:59:52Z +8116 299 2 4153 5.99 2005-07-07T08:53:08Z 2020-02-15T06:59:52Z +8117 299 1 4350 2.99 2005-07-07T19:02:41Z 2020-02-15T06:59:52Z +8118 299 2 5033 1.99 2005-07-09T02:42:01Z 2020-02-15T06:59:52Z +8119 299 1 5642 2.99 2005-07-10T06:46:08Z 2020-02-15T06:59:52Z +8120 299 2 6732 0.99 2005-07-12T13:58:51Z 2020-02-15T06:59:52Z +8121 299 1 6853 7.99 2005-07-12T19:38:11Z 2020-02-15T06:59:52Z +8122 299 1 7264 4.99 2005-07-27T11:18:58Z 2020-02-15T06:59:52Z +8123 299 1 7746 2.99 2005-07-28T05:48:56Z 2020-02-15T06:59:52Z +8124 299 2 7862 9.99 2005-07-28T10:02:25Z 2020-02-15T06:59:52Z +8125 299 1 9520 2.99 2005-07-31T00:50:54Z 2020-02-15T06:59:52Z +8126 299 1 10201 0.99 2005-08-01T00:42:18Z 2020-02-15T06:59:52Z +8127 299 2 10440 2.99 2005-08-01T08:54:32Z 2020-02-15T06:59:52Z +8128 299 1 11629 6.99 2005-08-17T04:27:24Z 2020-02-15T06:59:52Z +8129 299 1 11746 5.99 2005-08-17T09:03:24Z 2020-02-15T06:59:52Z +8130 299 1 11998 0.99 2005-08-17T18:46:21Z 2020-02-15T06:59:52Z +8131 299 1 13069 4.99 2005-08-19T09:55:20Z 2020-02-15T06:59:52Z +8132 299 2 14208 0.99 2005-08-21T04:09:18Z 2020-02-15T06:59:52Z +8133 299 1 14548 3.99 2005-08-21T15:53:52Z 2020-02-15T06:59:52Z +8134 299 2 14889 4.99 2005-08-22T04:10:10Z 2020-02-15T06:59:52Z +8135 299 2 14898 6.99 2005-08-22T04:26:34Z 2020-02-15T06:59:52Z +8136 300 2 457 0.99 2005-05-27T19:52:29Z 2020-02-15T06:59:52Z +8137 300 1 780 3.99 2005-05-29T14:18:32Z 2020-02-15T06:59:52Z +8138 300 1 1111 4.99 2005-05-31T15:24:19Z 2020-02-15T06:59:52Z +8139 300 2 1381 0.99 2005-06-15T15:17:21Z 2020-02-15T06:59:52Z +8140 300 1 3177 2.99 2005-06-20T22:32:44Z 2020-02-15T06:59:52Z +8141 300 1 3775 0.99 2005-07-06T13:27:33Z 2020-02-15T06:59:52Z +8142 300 1 4030 0.99 2005-07-07T02:25:42Z 2020-02-15T06:59:52Z +8143 300 2 5562 2.99 2005-07-10T03:17:42Z 2020-02-15T06:59:52Z +8144 300 1 5705 10.99 2005-07-10T10:09:17Z 2020-02-15T06:59:52Z +8145 300 2 6111 4.99 2005-07-11T07:26:57Z 2020-02-15T06:59:52Z +8146 300 1 6822 5.99 2005-07-12T18:23:39Z 2020-02-15T06:59:52Z +8147 300 1 6998 4.99 2005-07-27T01:16:29Z 2020-02-15T06:59:52Z +8148 300 1 7815 4.99 2005-07-28T08:14:11Z 2020-02-15T06:59:52Z +8149 300 1 8117 6.99 2005-07-28T19:20:16Z 2020-02-15T06:59:52Z +8150 300 1 8210 6.99 2005-07-28T23:31:05Z 2020-02-15T06:59:52Z +8151 300 1 8283 3.99 2005-07-29T01:52:22Z 2020-02-15T06:59:52Z +8152 300 1 9078 0.99 2005-07-30T08:01:00Z 2020-02-15T06:59:52Z +8153 300 2 9127 2.99 2005-07-30T09:46:36Z 2020-02-15T06:59:52Z +8154 300 2 9791 0.99 2005-07-31T10:35:22Z 2020-02-15T06:59:52Z +8155 300 1 10977 4.99 2005-08-02T04:12:17Z 2020-02-15T06:59:52Z +8156 300 2 12484 2.99 2005-08-18T12:39:37Z 2020-02-15T06:59:52Z +8157 300 2 12644 5.99 2005-08-18T18:22:27Z 2020-02-15T06:59:52Z +8158 300 2 13257 3.99 2005-08-19T17:01:20Z 2020-02-15T06:59:52Z +8159 300 1 13296 0.99 2005-08-19T18:43:53Z 2020-02-15T06:59:52Z +8160 300 2 13499 6.99 2005-08-20T01:52:30Z 2020-02-15T06:59:52Z +8161 300 1 13717 5.99 2005-08-20T09:50:52Z 2020-02-15T06:59:52Z +8162 300 1 14674 7.99 2005-08-21T20:01:34Z 2020-02-15T06:59:52Z +8163 300 1 14709 9.99 2005-08-21T21:07:59Z 2020-02-15T06:59:52Z +8164 300 2 15051 2.99 2005-08-22T10:08:50Z 2020-02-15T06:59:52Z +8165 300 2 15811 5.99 2005-08-23T14:43:46Z 2020-02-15T06:59:52Z +8166 300 1 15695 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8167 301 2 27 4.99 2005-05-25T03:41:50Z 2020-02-15T06:59:52Z +8168 301 2 227 5.99 2005-05-26T10:51:46Z 2020-02-15T06:59:52Z +8169 301 1 955 0.99 2005-05-30T16:59:03Z 2020-02-15T06:59:52Z +8170 301 1 1853 0.99 2005-06-17T00:39:54Z 2020-02-15T06:59:52Z +8171 301 1 2611 4.99 2005-06-19T07:18:17Z 2020-02-15T06:59:52Z +8172 301 2 2925 2.99 2005-06-20T04:23:49Z 2020-02-15T06:59:52Z +8173 301 2 4316 4.99 2005-07-07T17:44:22Z 2020-02-15T06:59:52Z +8174 301 2 4834 3.99 2005-07-08T18:07:45Z 2020-02-15T06:59:52Z +8175 301 1 5119 6.99 2005-07-09T07:14:18Z 2020-02-15T06:59:52Z +8176 301 2 5511 4.99 2005-07-10T01:00:00Z 2020-02-15T06:59:52Z +8177 301 2 5730 2.99 2005-07-10T11:28:32Z 2020-02-15T06:59:52Z +8178 301 2 5807 2.99 2005-07-10T15:16:30Z 2020-02-15T06:59:52Z +8179 301 2 6833 6.99 2005-07-12T18:53:34Z 2020-02-15T06:59:52Z +8180 301 2 7318 4.99 2005-07-27T13:25:31Z 2020-02-15T06:59:52Z +8181 301 2 7818 4.99 2005-07-28T08:25:00Z 2020-02-15T06:59:52Z +8182 301 2 9435 4.99 2005-07-30T21:31:02Z 2020-02-15T06:59:52Z +8183 301 1 10883 0.99 2005-08-02T00:47:19Z 2020-02-15T06:59:52Z +8184 301 2 13183 5.99 2005-08-19T14:09:26Z 2020-02-15T06:59:52Z +8185 301 2 13633 2.99 2005-08-20T07:13:47Z 2020-02-15T06:59:52Z +8186 301 1 15201 10.99 2005-08-22T16:24:42Z 2020-02-15T06:59:52Z +8187 301 1 15268 1.99 2005-08-22T18:39:11Z 2020-02-15T06:59:52Z +8188 302 2 38 4.99 2005-05-25T04:47:44Z 2020-02-15T06:59:52Z +8189 302 2 92 5.99 2005-05-25T15:38:46Z 2020-02-15T06:59:52Z +8190 302 1 1231 2.99 2005-06-15T04:04:41Z 2020-02-15T06:59:52Z +8191 302 2 4676 4.99 2005-07-08T10:26:02Z 2020-02-15T06:59:52Z +8192 302 2 5498 0.99 2005-07-10T00:27:21Z 2020-02-15T06:59:52Z +8193 302 2 5682 2.99 2005-07-10T08:51:39Z 2020-02-15T06:59:52Z +8194 302 2 5709 0.99 2005-07-10T10:31:52Z 2020-02-15T06:59:52Z +8195 302 2 5821 4.99 2005-07-10T16:07:16Z 2020-02-15T06:59:52Z +8196 302 2 6623 7.99 2005-07-12T09:05:34Z 2020-02-15T06:59:52Z +8197 302 1 7183 0.99 2005-07-27T08:18:38Z 2020-02-15T06:59:52Z +8198 302 1 7411 6.99 2005-07-27T16:42:30Z 2020-02-15T06:59:52Z +8199 302 1 8363 6.99 2005-07-29T05:10:08Z 2020-02-15T06:59:52Z +8200 302 2 8646 0.99 2005-07-29T14:48:48Z 2020-02-15T06:59:52Z +8201 302 1 8795 2.99 2005-07-29T21:04:14Z 2020-02-15T06:59:52Z +8202 302 1 9146 7.99 2005-07-30T10:32:08Z 2020-02-15T06:59:52Z +8203 302 2 9358 2.99 2005-07-30T18:37:24Z 2020-02-15T06:59:52Z +8204 302 1 9374 8.99 2005-07-30T19:10:03Z 2020-02-15T06:59:52Z +8205 302 2 9581 5.99 2005-07-31T03:03:07Z 2020-02-15T06:59:52Z +8206 302 2 10329 0.99 2005-08-01T04:56:13Z 2020-02-15T06:59:52Z +8207 302 1 12126 7.99 2005-08-17T23:25:21Z 2020-02-15T06:59:52Z +8208 302 2 12516 4.99 2005-08-18T13:39:53Z 2020-02-15T06:59:52Z +8209 302 1 12903 2.99 2005-08-19T04:09:38Z 2020-02-15T06:59:52Z +8210 302 1 13916 2.99 2005-08-20T16:43:02Z 2020-02-15T06:59:52Z +8211 302 1 14120 4.99 2005-08-21T01:25:00Z 2020-02-15T06:59:52Z +8212 302 2 14247 3.99 2005-08-21T05:35:17Z 2020-02-15T06:59:52Z +8213 302 2 15578 2.99 2005-08-23T05:37:13Z 2020-02-15T06:59:52Z +8214 302 1 15622 5.99 2005-08-23T07:22:02Z 2020-02-15T06:59:52Z +8215 302 2 15734 0.99 2005-08-23T11:40:08Z 2020-02-15T06:59:52Z +8216 302 2 15987 6.99 2005-08-23T20:22:17Z 2020-02-15T06:59:52Z +8217 303 1 265 0.99 2005-05-26T16:07:38Z 2020-02-15T06:59:52Z +8218 303 1 871 2.99 2005-05-30T05:01:30Z 2020-02-15T06:59:52Z +8219 303 2 1050 4.99 2005-05-31T07:01:27Z 2020-02-15T06:59:52Z +8220 303 2 1970 4.99 2005-06-17T09:23:16Z 2020-02-15T06:59:52Z +8221 303 1 2223 8.99 2005-06-18T03:27:03Z 2020-02-15T06:59:52Z +8222 303 1 3077 3.99 2005-06-20T15:05:18Z 2020-02-15T06:59:52Z +8223 303 1 3107 2.99 2005-06-20T17:26:05Z 2020-02-15T06:59:52Z +8224 303 1 5140 4.99 2005-07-09T08:04:59Z 2020-02-15T06:59:52Z +8225 303 1 6205 4.99 2005-07-11T12:31:24Z 2020-02-15T06:59:52Z +8226 303 2 6219 4.99 2005-07-11T13:18:37Z 2020-02-15T06:59:52Z +8227 303 1 6464 4.99 2005-07-12T01:16:40Z 2020-02-15T06:59:52Z +8228 303 1 7023 4.99 2005-07-27T02:32:44Z 2020-02-15T06:59:52Z +8229 303 2 7502 2.99 2005-07-27T20:19:08Z 2020-02-15T06:59:52Z +8230 303 1 8409 0.99 2005-07-29T06:41:22Z 2020-02-15T06:59:52Z +8231 303 2 8734 6.99 2005-07-29T18:28:15Z 2020-02-15T06:59:52Z +8232 303 2 8764 0.99 2005-07-29T19:39:04Z 2020-02-15T06:59:52Z +8233 303 2 10209 2.99 2005-08-01T00:56:47Z 2020-02-15T06:59:52Z +8234 303 1 11253 4.99 2005-08-02T13:42:44Z 2020-02-15T06:59:52Z +8235 303 2 11673 2.99 2005-08-17T05:54:15Z 2020-02-15T06:59:52Z +8236 303 2 11993 2.99 2005-08-17T18:27:49Z 2020-02-15T06:59:52Z +8237 303 2 12117 0.99 2005-08-17T23:11:12Z 2020-02-15T06:59:52Z +8238 303 1 12365 0.99 2005-08-18T07:55:09Z 2020-02-15T06:59:52Z +8239 303 2 12473 2.99 2005-08-18T11:59:44Z 2020-02-15T06:59:52Z +8240 303 1 14750 5.99 2005-08-21T23:09:32Z 2020-02-15T06:59:52Z +8241 303 2 14795 4.99 2005-08-22T00:40:22Z 2020-02-15T06:59:52Z +8242 303 1 15511 3.99 2005-08-23T02:55:42Z 2020-02-15T06:59:52Z +8243 304 1 135 10.99 2005-05-25T21:58:58Z 2020-02-15T06:59:52Z +8244 304 1 415 0.99 2005-05-27T14:51:45Z 2020-02-15T06:59:52Z +8245 304 2 937 2.99 2005-05-30T14:47:31Z 2020-02-15T06:59:52Z +8246 304 1 1414 6.99 2005-06-15T17:26:32Z 2020-02-15T06:59:52Z +8247 304 2 1525 4.99 2005-06-16T00:26:07Z 2020-02-15T06:59:52Z +8248 304 1 2039 3.99 2005-06-17T14:03:43Z 2020-02-15T06:59:52Z +8249 304 2 2902 4.99 2005-06-20T02:45:35Z 2020-02-15T06:59:52Z +8250 304 1 4466 6.99 2005-07-08T00:12:53Z 2020-02-15T06:59:52Z +8251 304 2 4812 8.99 2005-07-08T17:07:11Z 2020-02-15T06:59:52Z +8252 304 1 5411 2.99 2005-07-09T20:23:38Z 2020-02-15T06:59:52Z +8253 304 1 5712 4.99 2005-07-10T10:40:32Z 2020-02-15T06:59:52Z +8254 304 2 5749 3.99 2005-07-10T12:20:36Z 2020-02-15T06:59:52Z +8255 304 2 5795 0.99 2005-07-10T14:36:29Z 2020-02-15T06:59:52Z +8256 304 2 6107 0.99 2005-07-11T07:07:09Z 2020-02-15T06:59:52Z +8257 304 1 6737 4.99 2005-07-12T14:16:52Z 2020-02-15T06:59:52Z +8258 304 2 7551 4.99 2005-07-27T21:59:15Z 2020-02-15T06:59:52Z +8259 304 2 8055 4.99 2005-07-28T17:02:32Z 2020-02-15T06:59:52Z +8260 304 1 9930 0.99 2005-07-31T15:18:03Z 2020-02-15T06:59:52Z +8261 304 1 9992 6.99 2005-07-31T17:29:48Z 2020-02-15T06:59:52Z +8262 304 1 10631 0.99 2005-08-01T15:35:14Z 2020-02-15T06:59:52Z +8263 304 2 11983 4.99 2005-08-17T18:13:55Z 2020-02-15T06:59:52Z +8264 304 1 12540 5.99 2005-08-18T14:17:30Z 2020-02-15T06:59:52Z +8265 304 2 13911 3.99 2005-08-20T16:31:33Z 2020-02-15T06:59:52Z +8266 304 1 14023 0.99 2005-08-20T21:10:32Z 2020-02-15T06:59:52Z +8267 304 1 14899 4.99 2005-08-22T04:26:38Z 2020-02-15T06:59:52Z +8268 304 1 14945 4.99 2005-08-22T06:05:38Z 2020-02-15T06:59:52Z +8269 305 2 69 2.99 2005-05-25T10:10:14Z 2020-02-15T06:59:52Z +8270 305 1 1574 4.99 2005-06-16T03:39:56Z 2020-02-15T06:59:52Z +8271 305 2 1884 0.99 2005-06-17T03:19:20Z 2020-02-15T06:59:52Z +8272 305 1 2166 11.99 2005-06-17T23:51:21Z 2020-02-15T06:59:52Z +8273 305 1 3387 0.99 2005-06-21T14:21:49Z 2020-02-15T06:59:52Z +8274 305 2 4260 4.99 2005-07-07T14:22:45Z 2020-02-15T06:59:52Z +8275 305 1 4638 2.99 2005-07-08T08:57:20Z 2020-02-15T06:59:52Z +8276 305 2 5041 0.99 2005-07-09T03:18:51Z 2020-02-15T06:59:52Z +8277 305 1 5052 2.99 2005-07-09T03:59:43Z 2020-02-15T06:59:52Z +8278 305 2 5582 4.99 2005-07-10T04:08:25Z 2020-02-15T06:59:52Z +8279 305 1 5745 8.99 2005-07-10T12:10:11Z 2020-02-15T06:59:52Z +8280 305 1 6134 7.99 2005-07-11T08:28:19Z 2020-02-15T06:59:52Z +8281 305 2 6619 0.99 2005-07-12T08:50:48Z 2020-02-15T06:59:52Z +8282 305 2 8865 4.99 2005-07-29T23:54:54Z 2020-02-15T06:59:52Z +8283 305 2 9119 4.99 2005-07-30T09:25:56Z 2020-02-15T06:59:52Z +8284 305 2 10426 4.99 2005-08-01T08:26:08Z 2020-02-15T06:59:52Z +8285 305 2 10929 4.99 2005-08-02T02:35:44Z 2020-02-15T06:59:52Z +8286 305 1 10981 2.99 2005-08-02T04:17:53Z 2020-02-15T06:59:52Z +8287 305 2 11035 5.99 2005-08-02T05:55:39Z 2020-02-15T06:59:52Z +8288 305 2 11809 3.99 2005-08-17T11:51:39Z 2020-02-15T06:59:52Z +8289 305 2 12592 3.99 2005-08-18T16:17:50Z 2020-02-15T06:59:52Z +8290 305 2 12846 0.99 2005-08-19T02:03:26Z 2020-02-15T06:59:52Z +8291 305 1 13782 4.99 2005-08-20T12:09:26Z 2020-02-15T06:59:52Z +8292 305 2 15417 2.99 2005-08-22T23:54:04Z 2020-02-15T06:59:52Z +8293 305 1 15612 6.99 2005-08-23T06:59:07Z 2020-02-15T06:59:52Z +8294 306 2 375 3.99 2005-05-27T08:49:21Z 2020-02-15T06:59:52Z +8295 306 2 672 6.99 2005-05-28T22:05:29Z 2020-02-15T06:59:52Z +8296 306 2 1172 0.99 2005-06-14T23:54:34Z 2020-02-15T06:59:52Z +8297 306 2 2836 6.99 2005-06-19T21:58:21Z 2020-02-15T06:59:52Z +8298 306 1 3814 6.99 2005-07-06T15:23:56Z 2020-02-15T06:59:52Z +8299 306 2 4484 5.99 2005-07-08T01:05:57Z 2020-02-15T06:59:52Z +8300 306 2 4596 1.99 2005-07-08T06:41:25Z 2020-02-15T06:59:52Z +8301 306 2 5581 2.99 2005-07-10T04:06:06Z 2020-02-15T06:59:52Z +8302 306 2 6868 2.99 2005-07-12T20:10:17Z 2020-02-15T06:59:52Z +8303 306 1 6953 4.99 2005-07-26T23:52:47Z 2020-02-15T06:59:52Z +8304 306 1 7225 6.99 2005-07-27T09:47:12Z 2020-02-15T06:59:52Z +8305 306 1 7232 4.99 2005-07-27T10:04:19Z 2020-02-15T06:59:52Z +8306 306 2 7701 2.99 2005-07-28T03:54:28Z 2020-02-15T06:59:52Z +8307 306 2 8620 0.99 2005-07-29T13:51:20Z 2020-02-15T06:59:52Z +8308 306 1 8702 0.99 2005-07-29T17:04:37Z 2020-02-15T06:59:52Z +8309 306 2 9242 4.99 2005-07-30T14:03:58Z 2020-02-15T06:59:52Z +8310 306 2 9395 4.99 2005-07-30T20:07:06Z 2020-02-15T06:59:52Z +8311 306 1 9774 0.99 2005-07-31T09:57:51Z 2020-02-15T06:59:52Z +8312 306 1 10202 6.99 2005-08-01T00:43:18Z 2020-02-15T06:59:52Z +8313 306 2 10893 5.99 2005-08-02T01:12:13Z 2020-02-15T06:59:52Z +8314 306 2 11142 4.99 2005-08-02T09:30:11Z 2020-02-15T06:59:52Z +8315 306 1 11440 0.99 2005-08-02T20:24:02Z 2020-02-15T06:59:52Z +8316 306 2 11674 6.99 2005-08-17T05:56:27Z 2020-02-15T06:59:52Z +8317 306 2 11776 0.99 2005-08-17T10:27:19Z 2020-02-15T06:59:52Z +8318 306 1 12225 7.99 2005-08-18T03:00:11Z 2020-02-15T06:59:52Z +8319 306 1 12989 2.99 2005-08-19T07:19:04Z 2020-02-15T06:59:52Z +8320 306 1 13686 4.99 2005-08-20T08:57:28Z 2020-02-15T06:59:52Z +8321 306 2 13725 5.99 2005-08-20T10:08:27Z 2020-02-15T06:59:52Z +8322 306 1 13873 0.99 2005-08-20T15:11:11Z 2020-02-15T06:59:52Z +8323 306 1 13996 4.99 2005-08-20T19:45:43Z 2020-02-15T06:59:52Z +8324 306 1 15457 2.99 2005-08-23T01:07:37Z 2020-02-15T06:59:52Z +8325 306 2 15868 7.99 2005-08-23T16:19:14Z 2020-02-15T06:59:52Z +8326 307 2 413 4.99 2005-05-27T14:45:37Z 2020-02-15T06:59:52Z +8327 307 1 535 4.99 2005-05-28T06:16:32Z 2020-02-15T06:59:52Z +8328 307 1 614 1.99 2005-05-28T15:33:28Z 2020-02-15T06:59:52Z +8329 307 1 970 6.99 2005-05-30T19:50:28Z 2020-02-15T06:59:52Z +8330 307 2 2152 2.99 2005-06-17T22:53:27Z 2020-02-15T06:59:52Z +8331 307 1 2167 0.99 2005-06-17T23:51:28Z 2020-02-15T06:59:52Z +8332 307 1 2787 4.99 2005-06-19T18:47:00Z 2020-02-15T06:59:52Z +8333 307 1 2881 2.99 2005-06-20T01:26:18Z 2020-02-15T06:59:52Z +8334 307 2 3057 5.99 2005-06-20T13:22:48Z 2020-02-15T06:59:52Z +8335 307 1 3209 4.99 2005-06-21T00:51:06Z 2020-02-15T06:59:52Z +8336 307 1 3962 6.99 2005-07-06T22:13:45Z 2020-02-15T06:59:52Z +8337 307 1 3985 4.99 2005-07-06T23:24:03Z 2020-02-15T06:59:52Z +8338 307 1 4522 2.99 2005-07-08T03:03:12Z 2020-02-15T06:59:52Z +8339 307 1 4868 4.99 2005-07-08T19:13:50Z 2020-02-15T06:59:52Z +8340 307 1 5871 3.99 2005-07-10T18:46:08Z 2020-02-15T06:59:52Z +8341 307 2 6125 6.99 2005-07-11T08:03:35Z 2020-02-15T06:59:52Z +8342 307 1 6256 0.99 2005-07-11T15:19:22Z 2020-02-15T06:59:52Z +8343 307 1 6991 10.99 2005-07-27T01:03:06Z 2020-02-15T06:59:52Z +8344 307 1 7536 2.99 2005-07-27T21:34:09Z 2020-02-15T06:59:52Z +8345 307 1 7760 3.99 2005-07-28T06:29:45Z 2020-02-15T06:59:52Z +8346 307 1 7929 0.99 2005-07-28T12:16:40Z 2020-02-15T06:59:52Z +8347 307 1 8647 6.99 2005-07-29T14:52:59Z 2020-02-15T06:59:52Z +8348 307 1 10135 4.99 2005-07-31T21:57:32Z 2020-02-15T06:59:52Z +8349 307 1 10374 0.99 2005-08-01T06:25:27Z 2020-02-15T06:59:52Z +8350 307 1 10745 2.99 2005-08-01T19:57:06Z 2020-02-15T06:59:52Z +8351 307 1 11491 7.99 2005-08-02T22:44:50Z 2020-02-15T06:59:52Z +8352 307 2 12391 4.99 2005-08-18T08:52:53Z 2020-02-15T06:59:52Z +8353 307 2 13365 6.99 2005-08-19T21:12:37Z 2020-02-15T06:59:52Z +8354 307 1 14231 0.99 2005-08-21T05:04:34Z 2020-02-15T06:59:52Z +8355 307 2 15515 4.99 2005-08-23T03:03:53Z 2020-02-15T06:59:52Z +8356 308 2 589 3.99 2005-05-28T12:27:50Z 2020-02-15T06:59:52Z +8357 308 1 2037 0.99 2005-06-17T13:54:20Z 2020-02-15T06:59:52Z +8358 308 1 2094 0.99 2005-06-17T18:18:56Z 2020-02-15T06:59:52Z +8359 308 2 2168 4.99 2005-06-17T23:53:24Z 2020-02-15T06:59:52Z +8360 308 1 2346 7.99 2005-06-18T12:08:16Z 2020-02-15T06:59:52Z +8361 308 2 2448 4.99 2005-06-18T19:13:45Z 2020-02-15T06:59:52Z +8362 308 1 4002 3.99 2005-07-07T00:08:18Z 2020-02-15T06:59:52Z +8363 308 1 4285 8.99 2005-07-07T15:34:35Z 2020-02-15T06:59:52Z +8364 308 1 5946 2.99 2005-07-10T22:57:29Z 2020-02-15T06:59:52Z +8365 308 2 8869 0.99 2005-07-30T00:06:32Z 2020-02-15T06:59:52Z +8366 308 1 9479 2.99 2005-07-30T23:22:09Z 2020-02-15T06:59:52Z +8367 308 1 9746 7.99 2005-07-31T09:16:48Z 2020-02-15T06:59:52Z +8368 308 1 10571 2.99 2005-08-01T13:25:30Z 2020-02-15T06:59:52Z +8369 308 2 10797 0.99 2005-08-01T22:02:51Z 2020-02-15T06:59:52Z +8370 308 1 10819 4.99 2005-08-01T22:52:57Z 2020-02-15T06:59:52Z +8371 308 1 11765 2.99 2005-08-17T09:55:28Z 2020-02-15T06:59:52Z +8372 308 1 11972 4.99 2005-08-17T17:55:46Z 2020-02-15T06:59:52Z +8373 308 2 12567 3.99 2005-08-18T15:14:36Z 2020-02-15T06:59:52Z +8374 308 1 12590 6.99 2005-08-18T16:11:35Z 2020-02-15T06:59:52Z +8375 308 2 12838 6.99 2005-08-19T01:51:50Z 2020-02-15T06:59:52Z +8376 308 1 13843 2.99 2005-08-20T14:30:01Z 2020-02-15T06:59:52Z +8377 308 2 14946 2.99 2005-08-22T06:07:10Z 2020-02-15T06:59:52Z +8378 308 1 15243 4.99 2005-08-22T17:48:28Z 2020-02-15T06:59:52Z +8379 308 2 15493 4.99 2005-08-23T02:20:53Z 2020-02-15T06:59:52Z +8380 308 2 15820 2.99 2005-08-23T15:03:13Z 2020-02-15T06:59:52Z +8381 309 2 218 6.99 2005-05-26T09:27:09Z 2020-02-15T06:59:52Z +8382 309 2 723 0.99 2005-05-29T05:34:44Z 2020-02-15T06:59:52Z +8383 309 1 1837 4.99 2005-06-16T23:16:15Z 2020-02-15T06:59:52Z +8384 309 2 2560 9.99 2005-06-19T03:12:42Z 2020-02-15T06:59:52Z +8385 309 2 2644 3.99 2005-06-19T09:42:30Z 2020-02-15T06:59:52Z +8386 309 2 2688 6.99 2005-06-19T12:50:56Z 2020-02-15T06:59:52Z +8387 309 2 3837 4.99 2005-07-06T16:27:43Z 2020-02-15T06:59:52Z +8388 309 2 3896 7.99 2005-07-06T19:09:15Z 2020-02-15T06:59:52Z +8389 309 2 4172 4.99 2005-07-07T09:49:09Z 2020-02-15T06:59:52Z +8390 309 1 4540 4.99 2005-07-08T04:03:28Z 2020-02-15T06:59:52Z +8391 309 2 5305 8.99 2005-07-09T15:55:36Z 2020-02-15T06:59:52Z +8392 309 1 5980 4.99 2005-07-11T00:18:21Z 2020-02-15T06:59:52Z +8393 309 2 6480 4.99 2005-07-12T01:49:29Z 2020-02-15T06:59:52Z +8394 309 2 7214 5.99 2005-07-27T09:23:33Z 2020-02-15T06:59:52Z +8395 309 2 7722 4.99 2005-07-28T04:44:58Z 2020-02-15T06:59:52Z +8396 309 1 7846 5.99 2005-07-28T09:21:18Z 2020-02-15T06:59:52Z +8397 309 1 8341 4.99 2005-07-29T04:42:01Z 2020-02-15T06:59:52Z +8398 309 1 8501 2.99 2005-07-29T09:12:51Z 2020-02-15T06:59:52Z +8399 309 1 8681 2.99 2005-07-29T16:12:01Z 2020-02-15T06:59:52Z +8400 309 1 8917 2.99 2005-07-30T01:47:02Z 2020-02-15T06:59:52Z +8401 309 2 9945 2.99 2005-07-31T15:47:51Z 2020-02-15T06:59:52Z +8402 309 1 9949 0.99 2005-07-31T15:50:10Z 2020-02-15T06:59:52Z +8403 309 1 10458 2.99 2005-08-01T09:19:48Z 2020-02-15T06:59:52Z +8404 309 1 10728 0.99 2005-08-01T19:15:09Z 2020-02-15T06:59:52Z +8405 309 1 10818 2.99 2005-08-01T22:52:45Z 2020-02-15T06:59:52Z +8406 309 2 11964 6.99 2005-08-17T17:37:03Z 2020-02-15T06:59:52Z +8407 309 2 13021 5.99 2005-08-19T08:08:04Z 2020-02-15T06:59:52Z +8408 309 2 13502 0.99 2005-08-20T01:58:15Z 2020-02-15T06:59:52Z +8409 309 2 13909 4.99 2005-08-20T16:26:36Z 2020-02-15T06:59:52Z +8410 309 2 14846 5.99 2005-08-22T02:13:48Z 2020-02-15T06:59:52Z +8411 309 2 15422 4.99 2005-08-22T23:58:09Z 2020-02-15T06:59:52Z +8412 310 2 104 0.99 2005-05-25T17:46:33Z 2020-02-15T06:59:52Z +8413 310 2 1162 4.99 2005-06-14T23:09:38Z 2020-02-15T06:59:52Z +8414 310 2 1333 2.99 2005-06-15T11:37:08Z 2020-02-15T06:59:52Z +8415 310 2 1918 3.99 2005-06-17T05:40:14Z 2020-02-15T06:59:52Z +8416 310 2 2088 6.99 2005-06-17T17:35:30Z 2020-02-15T06:59:52Z +8417 310 1 2480 5.99 2005-06-18T21:04:09Z 2020-02-15T06:59:52Z +8418 310 1 2618 2.99 2005-06-19T08:03:01Z 2020-02-15T06:59:52Z +8419 310 2 3830 10.99 2005-07-06T16:01:16Z 2020-02-15T06:59:52Z +8420 310 1 4072 0.99 2005-07-07T04:48:02Z 2020-02-15T06:59:52Z +8421 310 1 5621 5.99 2005-07-10T05:34:10Z 2020-02-15T06:59:52Z +8422 310 2 5836 0.99 2005-07-10T16:49:02Z 2020-02-15T06:59:52Z +8423 310 1 7648 5.99 2005-07-28T01:35:33Z 2020-02-15T06:59:52Z +8424 310 2 8637 5.99 2005-07-29T14:30:11Z 2020-02-15T06:59:52Z +8425 310 1 8981 7.99 2005-07-30T04:25:30Z 2020-02-15T06:59:52Z +8426 310 1 9536 2.99 2005-07-31T01:19:02Z 2020-02-15T06:59:52Z +8427 310 2 11137 2.99 2005-08-02T09:25:31Z 2020-02-15T06:59:52Z +8428 310 2 12500 4.99 2005-08-18T13:05:51Z 2020-02-15T06:59:52Z +8429 310 2 12710 7.99 2005-08-18T21:02:50Z 2020-02-15T06:59:52Z +8430 310 1 12929 4.99 2005-08-19T05:05:23Z 2020-02-15T06:59:52Z +8431 310 1 14972 5.99 2005-08-22T06:53:21Z 2020-02-15T06:59:52Z +8432 311 2 274 5.99 2005-05-26T16:48:51Z 2020-02-15T06:59:52Z +8433 311 2 544 6.99 2005-05-28T07:03:00Z 2020-02-15T06:59:52Z +8434 311 1 952 2.99 2005-05-30T16:28:07Z 2020-02-15T06:59:52Z +8435 311 2 990 3.99 2005-05-30T23:25:14Z 2020-02-15T06:59:52Z +8436 311 2 1128 6.99 2005-05-31T17:49:26Z 2020-02-15T06:59:52Z +8437 311 1 1622 4.99 2005-06-16T07:33:18Z 2020-02-15T06:59:52Z +8438 311 2 1955 0.99 2005-06-17T08:40:22Z 2020-02-15T06:59:52Z +8439 311 2 2967 6.99 2005-06-20T07:40:35Z 2020-02-15T06:59:52Z +8440 311 2 4836 3.99 2005-07-08T18:09:08Z 2020-02-15T06:59:52Z +8441 311 2 5224 5.99 2005-07-09T12:07:27Z 2020-02-15T06:59:52Z +8442 311 2 6419 4.99 2005-07-11T23:36:38Z 2020-02-15T06:59:52Z +8443 311 2 8167 6.99 2005-07-28T21:25:45Z 2020-02-15T06:59:52Z +8444 311 1 8473 2.99 2005-07-29T08:36:53Z 2020-02-15T06:59:52Z +8445 311 1 9503 6.99 2005-07-31T00:02:38Z 2020-02-15T06:59:52Z +8446 311 2 9882 8.99 2005-07-31T13:53:33Z 2020-02-15T06:59:52Z +8447 311 1 10134 4.99 2005-07-31T21:56:10Z 2020-02-15T06:59:52Z +8448 311 2 10448 4.99 2005-08-01T09:09:31Z 2020-02-15T06:59:52Z +8449 311 1 12997 2.99 2005-08-19T07:31:46Z 2020-02-15T06:59:52Z +8450 311 2 13310 0.99 2005-08-19T19:05:16Z 2020-02-15T06:59:52Z +8451 311 2 13423 1.99 2005-08-19T23:07:42Z 2020-02-15T06:59:52Z +8452 311 2 14517 4.99 2005-08-21T14:57:03Z 2020-02-15T06:59:52Z +8453 311 2 15826 9.99 2005-08-23T15:15:02Z 2020-02-15T06:59:52Z +8454 311 1 16020 8.99 2005-08-23T21:34:33Z 2020-02-15T06:59:52Z +8455 312 2 229 4.99 2005-05-26T11:19:20Z 2020-02-15T06:59:52Z +8456 312 1 530 0.99 2005-05-28T05:13:01Z 2020-02-15T06:59:52Z +8457 312 2 1049 4.99 2005-05-31T06:57:04Z 2020-02-15T06:59:52Z +8458 312 2 1079 6.99 2005-05-31T10:48:17Z 2020-02-15T06:59:52Z +8459 312 2 1419 0.99 2005-06-15T17:54:50Z 2020-02-15T06:59:52Z +8460 312 2 3457 3.99 2005-06-21T21:42:33Z 2020-02-15T06:59:52Z +8461 312 1 3766 2.99 2005-07-06T13:04:35Z 2020-02-15T06:59:52Z +8462 312 1 3792 1.99 2005-07-06T14:26:38Z 2020-02-15T06:59:52Z +8463 312 1 4647 3.99 2005-07-08T09:27:36Z 2020-02-15T06:59:52Z +8464 312 1 5031 5.99 2005-07-09T02:36:37Z 2020-02-15T06:59:52Z +8465 312 2 6751 2.99 2005-07-12T14:50:34Z 2020-02-15T06:59:52Z +8466 312 1 6866 2.99 2005-07-12T20:03:44Z 2020-02-15T06:59:52Z +8467 312 1 8137 4.99 2005-07-28T20:07:18Z 2020-02-15T06:59:52Z +8468 312 1 8412 6.99 2005-07-29T06:44:50Z 2020-02-15T06:59:52Z +8469 312 1 8721 4.99 2005-07-29T17:56:21Z 2020-02-15T06:59:52Z +8470 312 1 9016 6.99 2005-07-30T05:26:13Z 2020-02-15T06:59:52Z +8471 312 1 9154 3.99 2005-07-30T10:59:54Z 2020-02-15T06:59:52Z +8472 312 2 10858 2.99 2005-08-02T00:08:39Z 2020-02-15T06:59:52Z +8473 312 2 11248 0.99 2005-08-02T13:35:34Z 2020-02-15T06:59:52Z +8474 312 2 11879 5.99 2005-08-17T14:25:09Z 2020-02-15T06:59:52Z +8475 312 1 12186 2.99 2005-08-18T01:43:36Z 2020-02-15T06:59:52Z +8476 312 1 12945 0.99 2005-08-19T05:51:46Z 2020-02-15T06:59:52Z +8477 312 2 14362 2.99 2005-08-21T09:19:49Z 2020-02-15T06:59:52Z +8478 312 1 14504 3.99 2005-08-21T14:23:01Z 2020-02-15T06:59:52Z +8479 312 1 15100 4.99 2005-08-22T11:55:03Z 2020-02-15T06:59:52Z +8480 312 1 15882 6.99 2005-08-23T16:44:31Z 2020-02-15T06:59:52Z +8481 313 2 669 4.99 2005-05-28T22:03:25Z 2020-02-15T06:59:52Z +8482 313 2 712 2.99 2005-05-29T04:02:24Z 2020-02-15T06:59:52Z +8483 313 2 781 0.99 2005-05-29T14:23:58Z 2020-02-15T06:59:52Z +8484 313 2 843 0.99 2005-05-30T00:44:24Z 2020-02-15T06:59:52Z +8485 313 2 1312 2.99 2005-06-15T10:16:27Z 2020-02-15T06:59:52Z +8486 313 1 2617 7.99 2005-06-19T07:48:31Z 2020-02-15T06:59:52Z +8487 313 2 2711 4.99 2005-06-19T14:12:22Z 2020-02-15T06:59:52Z +8488 313 2 4552 2.99 2005-07-08T04:36:35Z 2020-02-15T06:59:52Z +8489 313 1 5255 5.99 2005-07-09T13:51:08Z 2020-02-15T06:59:52Z +8490 313 1 6384 2.99 2005-07-11T22:07:26Z 2020-02-15T06:59:52Z +8491 313 2 7294 0.99 2005-07-27T12:38:14Z 2020-02-15T06:59:52Z +8492 313 2 8381 4.99 2005-07-29T05:31:44Z 2020-02-15T06:59:52Z +8493 313 1 8970 3.99 2005-07-30T04:02:05Z 2020-02-15T06:59:52Z +8494 313 2 9836 2.99 2005-07-31T12:12:00Z 2020-02-15T06:59:52Z +8495 313 2 10237 5.99 2005-08-01T02:07:32Z 2020-02-15T06:59:52Z +8496 313 2 10933 7.99 2005-08-02T02:50:49Z 2020-02-15T06:59:52Z +8497 313 2 11854 2.99 2005-08-17T13:42:52Z 2020-02-15T06:59:52Z +8498 313 2 12011 2.99 2005-08-17T19:19:44Z 2020-02-15T06:59:52Z +8499 313 2 14250 2.99 2005-08-21T05:39:35Z 2020-02-15T06:59:52Z +8500 313 1 14325 4.99 2005-08-21T08:15:38Z 2020-02-15T06:59:52Z +8501 313 2 15081 2.99 2005-08-22T11:14:31Z 2020-02-15T06:59:52Z +8502 313 1 15340 0.99 2005-08-22T20:55:56Z 2020-02-15T06:59:52Z +8503 313 2 15569 6.99 2005-08-23T05:24:29Z 2020-02-15T06:59:52Z +8504 314 1 80 5.99 2005-05-25T12:12:07Z 2020-02-15T06:59:52Z +8505 314 1 440 4.99 2005-05-27T18:00:35Z 2020-02-15T06:59:52Z +8506 314 1 1598 3.99 2005-06-16T06:02:39Z 2020-02-15T06:59:52Z +8507 314 1 1624 2.99 2005-06-16T07:48:57Z 2020-02-15T06:59:52Z +8508 314 1 3517 0.99 2005-07-06T00:52:35Z 2020-02-15T06:59:52Z +8509 314 1 3656 2.99 2005-07-06T07:55:22Z 2020-02-15T06:59:52Z +8510 314 1 3808 0.99 2005-07-06T15:15:35Z 2020-02-15T06:59:52Z +8511 314 2 4386 0.99 2005-07-07T20:55:19Z 2020-02-15T06:59:52Z +8512 314 2 5241 4.99 2005-07-09T13:19:14Z 2020-02-15T06:59:52Z +8513 314 2 5856 0.99 2005-07-10T17:57:32Z 2020-02-15T06:59:52Z +8514 314 1 6192 5.99 2005-07-11T11:44:41Z 2020-02-15T06:59:52Z +8515 314 1 6666 2.99 2005-07-12T11:32:15Z 2020-02-15T06:59:52Z +8516 314 1 6763 3.99 2005-07-12T15:26:34Z 2020-02-15T06:59:52Z +8517 314 2 7004 4.99 2005-07-27T01:36:05Z 2020-02-15T06:59:52Z +8518 314 1 7276 2.99 2005-07-27T11:41:57Z 2020-02-15T06:59:52Z +8519 314 2 8022 6.99 2005-07-28T15:48:56Z 2020-02-15T06:59:52Z +8520 314 1 8073 3.99 2005-07-28T17:29:02Z 2020-02-15T06:59:52Z +8521 314 2 8105 0.99 2005-07-28T18:59:46Z 2020-02-15T06:59:52Z +8522 314 2 8328 6.99 2005-07-29T04:06:24Z 2020-02-15T06:59:52Z +8523 314 2 8644 4.99 2005-07-29T14:45:45Z 2020-02-15T06:59:52Z +8524 314 2 9191 3.99 2005-07-30T12:25:51Z 2020-02-15T06:59:52Z +8525 314 2 9318 6.99 2005-07-30T17:14:30Z 2020-02-15T06:59:52Z +8526 314 2 11908 3.99 2005-08-17T15:43:09Z 2020-02-15T06:59:52Z +8527 314 1 12434 0.99 2005-08-18T10:38:08Z 2020-02-15T06:59:52Z +8528 314 2 13120 3.99 2005-08-19T11:47:38Z 2020-02-15T06:59:52Z +8529 314 1 13265 2.99 2005-08-19T17:29:00Z 2020-02-15T06:59:52Z +8530 314 2 13553 3.99 2005-08-20T04:07:21Z 2020-02-15T06:59:52Z +8531 314 2 14145 4.99 2005-08-21T02:11:38Z 2020-02-15T06:59:52Z +8532 314 1 14409 4.99 2005-08-21T10:53:35Z 2020-02-15T06:59:52Z +8533 314 2 14682 4.99 2005-08-21T20:25:57Z 2020-02-15T06:59:52Z +8534 314 2 14815 4.99 2005-08-22T01:12:44Z 2020-02-15T06:59:52Z +8535 314 2 14873 5.99 2005-08-22T03:31:06Z 2020-02-15T06:59:52Z +8536 314 2 16021 3.99 2005-08-23T21:37:59Z 2020-02-15T06:59:52Z +8537 315 1 537 8.99 2005-05-28T06:20:55Z 2020-02-15T06:59:52Z +8538 315 1 551 4.99 2005-05-28T07:44:18Z 2020-02-15T06:59:52Z +8539 315 1 1701 2.99 2005-06-16T13:18:48Z 2020-02-15T06:59:52Z +8540 315 1 4021 2.99 2005-07-07T01:46:44Z 2020-02-15T06:59:52Z +8541 315 1 4992 4.99 2005-07-09T00:49:37Z 2020-02-15T06:59:52Z +8542 315 2 5126 6.99 2005-07-09T07:25:35Z 2020-02-15T06:59:52Z +8543 315 1 6661 4.99 2005-07-12T11:20:39Z 2020-02-15T06:59:52Z +8544 315 1 6894 4.99 2005-07-12T21:20:50Z 2020-02-15T06:59:52Z +8545 315 1 8416 5.99 2005-07-29T06:52:54Z 2020-02-15T06:59:52Z +8546 315 2 8677 6.99 2005-07-29T16:01:13Z 2020-02-15T06:59:52Z +8547 315 2 9735 9.99 2005-07-31T08:57:49Z 2020-02-15T06:59:52Z +8548 315 2 11254 0.99 2005-08-02T13:43:49Z 2020-02-15T06:59:52Z +8549 315 2 12155 2.99 2005-08-18T00:24:30Z 2020-02-15T06:59:52Z +8550 315 1 14106 2.99 2005-08-21T00:46:01Z 2020-02-15T06:59:52Z +8551 315 2 14162 2.99 2005-08-21T02:55:34Z 2020-02-15T06:59:52Z +8552 315 1 15504 6.99 2005-08-23T02:45:21Z 2020-02-15T06:59:52Z +8553 315 2 14426 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8554 316 1 16 4.99 2005-05-25T00:43:11Z 2020-02-15T06:59:52Z +8555 316 1 644 8.99 2005-05-28T18:59:12Z 2020-02-15T06:59:52Z +8556 316 1 1065 1.99 2005-05-31T08:54:56Z 2020-02-15T06:59:52Z +8557 316 1 1317 4.99 2005-06-15T10:30:19Z 2020-02-15T06:59:52Z +8558 316 2 1350 4.99 2005-06-15T12:50:25Z 2020-02-15T06:59:52Z +8559 316 1 2032 4.99 2005-06-17T13:24:07Z 2020-02-15T06:59:52Z +8560 316 2 2338 4.99 2005-06-18T11:24:54Z 2020-02-15T06:59:52Z +8561 316 2 2491 1.99 2005-06-18T22:01:31Z 2020-02-15T06:59:52Z +8562 316 1 2820 4.99 2005-06-19T20:20:33Z 2020-02-15T06:59:52Z +8563 316 2 3373 8.99 2005-06-21T13:35:32Z 2020-02-15T06:59:52Z +8564 316 1 4379 2.99 2005-07-07T20:32:30Z 2020-02-15T06:59:52Z +8565 316 2 5102 3.99 2005-07-09T06:25:48Z 2020-02-15T06:59:52Z +8566 316 2 5544 7.99 2005-07-10T02:48:07Z 2020-02-15T06:59:52Z +8567 316 1 5618 5.99 2005-07-10T05:28:58Z 2020-02-15T06:59:52Z +8568 316 2 6988 4.99 2005-07-27T01:00:08Z 2020-02-15T06:59:52Z +8569 316 2 7339 2.99 2005-07-27T14:17:48Z 2020-02-15T06:59:52Z +8570 316 2 7586 2.99 2005-07-27T23:19:29Z 2020-02-15T06:59:52Z +8571 316 1 7592 4.99 2005-07-27T23:26:04Z 2020-02-15T06:59:52Z +8572 316 1 7945 1.99 2005-07-28T12:53:58Z 2020-02-15T06:59:52Z +8573 316 1 8564 4.99 2005-07-29T11:33:00Z 2020-02-15T06:59:52Z +8574 316 1 9508 4.99 2005-07-31T00:22:39Z 2020-02-15T06:59:52Z +8575 316 2 9903 6.99 2005-07-31T14:31:44Z 2020-02-15T06:59:52Z +8576 316 1 10438 7.99 2005-08-01T08:53:04Z 2020-02-15T06:59:52Z +8577 316 1 12028 0.99 2005-08-17T20:03:47Z 2020-02-15T06:59:52Z +8578 316 2 12191 0.99 2005-08-18T01:57:11Z 2020-02-15T06:59:52Z +8579 316 2 12823 2.99 2005-08-19T01:15:47Z 2020-02-15T06:59:52Z +8580 316 2 13277 5.99 2005-08-19T17:57:35Z 2020-02-15T06:59:52Z +8581 316 1 14226 2.99 2005-08-21T04:55:37Z 2020-02-15T06:59:52Z +8582 316 2 15840 2.99 2005-08-23T15:34:49Z 2020-02-15T06:59:52Z +8583 317 1 107 6.99 2005-05-25T18:28:09Z 2020-02-15T06:59:52Z +8584 317 2 2287 6.99 2005-06-18T07:04:36Z 2020-02-15T06:59:52Z +8585 317 2 3029 2.99 2005-06-20T11:51:30Z 2020-02-15T06:59:52Z +8586 317 1 3251 0.99 2005-06-21T03:20:37Z 2020-02-15T06:59:52Z +8587 317 1 4138 0.99 2005-07-07T08:17:13Z 2020-02-15T06:59:52Z +8588 317 1 4177 8.99 2005-07-07T10:12:36Z 2020-02-15T06:59:52Z +8589 317 2 4700 0.99 2005-07-08T11:37:21Z 2020-02-15T06:59:52Z +8590 317 1 5548 0.99 2005-07-10T02:56:45Z 2020-02-15T06:59:52Z +8591 317 2 5942 7.99 2005-07-10T22:47:17Z 2020-02-15T06:59:52Z +8592 317 1 7309 2.99 2005-07-27T13:00:29Z 2020-02-15T06:59:52Z +8593 317 2 8062 2.99 2005-07-28T17:15:06Z 2020-02-15T06:59:52Z +8594 317 1 8327 2.99 2005-07-29T04:00:52Z 2020-02-15T06:59:52Z +8595 317 1 8458 4.99 2005-07-29T08:05:09Z 2020-02-15T06:59:52Z +8596 317 1 9110 2.99 2005-07-30T09:05:42Z 2020-02-15T06:59:52Z +8597 317 2 9513 4.99 2005-07-31T00:28:30Z 2020-02-15T06:59:52Z +8598 317 1 9770 8.99 2005-07-31T09:52:40Z 2020-02-15T06:59:52Z +8599 317 1 10364 2.99 2005-08-01T06:06:49Z 2020-02-15T06:59:52Z +8600 317 2 12111 2.99 2005-08-17T22:59:55Z 2020-02-15T06:59:52Z +8601 317 2 12138 7.99 2005-08-17T23:55:54Z 2020-02-15T06:59:52Z +8602 317 2 12301 2.99 2005-08-18T05:36:20Z 2020-02-15T06:59:52Z +8603 317 1 13388 4.99 2005-08-19T21:46:49Z 2020-02-15T06:59:52Z +8604 317 1 14032 5.99 2005-08-20T21:26:55Z 2020-02-15T06:59:52Z +8605 317 2 14385 0.99 2005-08-21T10:02:55Z 2020-02-15T06:59:52Z +8606 317 2 14669 2.99 2005-08-21T19:54:06Z 2020-02-15T06:59:52Z +8607 317 1 14791 4.99 2005-08-22T00:35:55Z 2020-02-15T06:59:52Z +8608 317 1 15204 2.99 2005-08-22T16:30:43Z 2020-02-15T06:59:52Z +8609 317 1 15280 4.99 2005-08-22T19:09:52Z 2020-02-15T06:59:52Z +8610 317 1 12574 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8611 318 1 224 9.99 2005-05-26T10:18:27Z 2020-02-15T06:59:52Z +8612 318 1 2634 2.99 2005-06-19T08:55:17Z 2020-02-15T06:59:52Z +8613 318 1 2643 2.99 2005-06-19T09:39:27Z 2020-02-15T06:59:52Z +8614 318 2 3337 0.99 2005-06-21T10:24:35Z 2020-02-15T06:59:52Z +8615 318 2 3376 7.99 2005-06-21T13:43:02Z 2020-02-15T06:59:52Z +8616 318 1 3732 4.99 2005-07-06T11:33:37Z 2020-02-15T06:59:52Z +8617 318 2 3974 2.99 2005-07-06T22:59:16Z 2020-02-15T06:59:52Z +8618 318 1 4356 8.99 2005-07-07T19:21:22Z 2020-02-15T06:59:52Z +8619 318 1 7649 0.99 2005-07-28T01:37:26Z 2020-02-15T06:59:52Z +8620 318 2 7853 0.99 2005-07-28T09:36:38Z 2020-02-15T06:59:52Z +8621 318 2 10023 5.99 2005-07-31T18:25:51Z 2020-02-15T06:59:52Z +8622 318 1 14276 2.99 2005-08-21T06:34:05Z 2020-02-15T06:59:52Z +8623 319 1 15 9.99 2005-05-25T00:39:22Z 2020-02-15T06:59:52Z +8624 319 1 149 3.99 2005-05-26T00:28:05Z 2020-02-15T06:59:52Z +8625 319 1 439 2.99 2005-05-27T17:54:48Z 2020-02-15T06:59:52Z +8626 319 1 1632 2.99 2005-06-16T08:03:42Z 2020-02-15T06:59:52Z +8627 319 1 1892 4.99 2005-06-17T04:17:33Z 2020-02-15T06:59:52Z +8628 319 2 2021 3.99 2005-06-17T12:41:18Z 2020-02-15T06:59:52Z +8629 319 2 2703 4.99 2005-06-19T13:36:06Z 2020-02-15T06:59:52Z +8630 319 2 2884 0.99 2005-06-20T01:31:16Z 2020-02-15T06:59:52Z +8631 319 2 3256 3.99 2005-06-21T03:45:42Z 2020-02-15T06:59:52Z +8632 319 2 4119 3.99 2005-07-07T07:06:03Z 2020-02-15T06:59:52Z +8633 319 2 4295 2.99 2005-07-07T16:08:51Z 2020-02-15T06:59:52Z +8634 319 1 4630 4.99 2005-07-08T08:33:38Z 2020-02-15T06:59:52Z +8635 319 1 5791 8.99 2005-07-10T14:16:22Z 2020-02-15T06:59:52Z +8636 319 1 5882 2.99 2005-07-10T19:20:34Z 2020-02-15T06:59:52Z +8637 319 2 6132 2.99 2005-07-11T08:24:44Z 2020-02-15T06:59:52Z +8638 319 1 6195 4.99 2005-07-11T12:00:32Z 2020-02-15T06:59:52Z +8639 319 1 6255 4.99 2005-07-11T15:11:33Z 2020-02-15T06:59:52Z +8640 319 1 6485 6.99 2005-07-12T02:07:59Z 2020-02-15T06:59:52Z +8641 319 2 7953 2.99 2005-07-28T13:24:32Z 2020-02-15T06:59:52Z +8642 319 2 9017 4.99 2005-07-30T05:26:20Z 2020-02-15T06:59:52Z +8643 319 2 9044 0.99 2005-07-30T06:35:21Z 2020-02-15T06:59:52Z +8644 319 1 11575 0.99 2005-08-17T01:50:26Z 2020-02-15T06:59:52Z +8645 319 2 11598 0.99 2005-08-17T03:03:07Z 2020-02-15T06:59:52Z +8646 319 1 11955 6.99 2005-08-17T17:21:35Z 2020-02-15T06:59:52Z +8647 319 2 11994 2.99 2005-08-17T18:29:35Z 2020-02-15T06:59:52Z +8648 319 1 12018 4.99 2005-08-17T19:44:46Z 2020-02-15T06:59:52Z +8649 319 2 12424 8.99 2005-08-18T10:16:57Z 2020-02-15T06:59:52Z +8650 319 1 13548 3.99 2005-08-20T03:53:20Z 2020-02-15T06:59:52Z +8651 319 2 14828 4.99 2005-08-22T01:34:05Z 2020-02-15T06:59:52Z +8652 319 2 15396 5.99 2005-08-22T23:07:57Z 2020-02-15T06:59:52Z +8653 320 2 1258 4.99 2005-06-15T06:21:30Z 2020-02-15T06:59:52Z +8654 320 2 1484 3.99 2005-06-15T21:22:35Z 2020-02-15T06:59:52Z +8655 320 2 1567 1.99 2005-06-16T03:13:30Z 2020-02-15T06:59:52Z +8656 320 1 2216 4.99 2005-06-18T03:08:17Z 2020-02-15T06:59:52Z +8657 320 2 2883 7.99 2005-06-20T01:29:10Z 2020-02-15T06:59:52Z +8658 320 2 3519 0.99 2005-07-06T00:57:29Z 2020-02-15T06:59:52Z +8659 320 2 3756 4.99 2005-07-06T12:40:38Z 2020-02-15T06:59:52Z +8660 320 2 4173 2.99 2005-07-07T09:57:26Z 2020-02-15T06:59:52Z +8661 320 2 7057 4.99 2005-07-27T03:50:03Z 2020-02-15T06:59:52Z +8662 320 2 7064 3.99 2005-07-27T03:53:29Z 2020-02-15T06:59:52Z +8663 320 2 7930 4.99 2005-07-28T12:21:08Z 2020-02-15T06:59:52Z +8664 320 2 8144 4.99 2005-07-28T20:30:55Z 2020-02-15T06:59:52Z +8665 320 2 8235 4.99 2005-07-29T00:22:56Z 2020-02-15T06:59:52Z +8666 320 1 8238 0.99 2005-07-29T00:30:06Z 2020-02-15T06:59:52Z +8667 320 2 8794 4.99 2005-07-29T20:59:38Z 2020-02-15T06:59:52Z +8668 320 1 9509 0.99 2005-07-31T00:22:42Z 2020-02-15T06:59:52Z +8669 320 1 11208 0.99 2005-08-02T12:02:37Z 2020-02-15T06:59:52Z +8670 320 2 11560 2.99 2005-08-17T01:20:30Z 2020-02-15T06:59:52Z +8671 320 2 14171 0.99 2005-08-21T03:00:42Z 2020-02-15T06:59:52Z +8672 320 1 15302 2.99 2005-08-22T19:44:53Z 2020-02-15T06:59:52Z +8673 321 2 200 4.99 2005-05-26T07:12:21Z 2020-02-15T06:59:52Z +8674 321 1 620 5.99 2005-05-28T15:54:45Z 2020-02-15T06:59:52Z +8675 321 2 818 4.99 2005-05-29T20:47:53Z 2020-02-15T06:59:52Z +8676 321 2 1750 5.99 2005-06-16T16:57:36Z 2020-02-15T06:59:52Z +8677 321 1 3410 0.99 2005-06-21T16:20:47Z 2020-02-15T06:59:52Z +8678 321 2 3901 5.99 2005-07-06T19:24:55Z 2020-02-15T06:59:52Z +8679 321 1 3920 4.99 2005-07-06T20:26:40Z 2020-02-15T06:59:52Z +8680 321 2 4281 4.99 2005-07-07T15:17:50Z 2020-02-15T06:59:52Z +8681 321 1 4318 5.99 2005-07-07T17:47:50Z 2020-02-15T06:59:52Z +8682 321 2 5202 2.99 2005-07-09T10:53:48Z 2020-02-15T06:59:52Z +8683 321 2 5867 8.99 2005-07-10T18:39:01Z 2020-02-15T06:59:52Z +8684 321 2 6190 2.99 2005-07-11T11:36:18Z 2020-02-15T06:59:52Z +8685 321 1 6859 5.99 2005-07-12T19:53:57Z 2020-02-15T06:59:52Z +8686 321 2 8685 6.99 2005-07-29T16:17:05Z 2020-02-15T06:59:52Z +8687 321 1 9981 0.99 2005-07-31T17:08:31Z 2020-02-15T06:59:52Z +8688 321 1 11722 2.99 2005-08-17T07:53:03Z 2020-02-15T06:59:52Z +8689 321 1 12033 6.99 2005-08-17T20:14:34Z 2020-02-15T06:59:52Z +8690 321 2 12034 7.99 2005-08-17T20:15:31Z 2020-02-15T06:59:52Z +8691 321 1 12398 4.99 2005-08-18T09:13:24Z 2020-02-15T06:59:52Z +8692 321 2 13623 6.99 2005-08-20T06:49:46Z 2020-02-15T06:59:52Z +8693 321 1 15673 6.99 2005-08-23T09:12:50Z 2020-02-15T06:59:52Z +8694 321 2 15888 5.99 2005-08-23T16:56:14Z 2020-02-15T06:59:52Z +8695 322 2 166 0.99 2005-05-26T02:49:11Z 2020-02-15T06:59:52Z +8696 322 1 269 4.99 2005-05-26T16:19:46Z 2020-02-15T06:59:52Z +8697 322 1 1386 2.99 2005-06-15T15:38:58Z 2020-02-15T06:59:52Z +8698 322 1 1588 8.99 2005-06-16T04:53:21Z 2020-02-15T06:59:52Z +8699 322 2 2481 4.99 2005-06-18T21:08:30Z 2020-02-15T06:59:52Z +8700 322 1 2554 0.99 2005-06-19T03:05:38Z 2020-02-15T06:59:52Z +8701 322 1 2983 7.99 2005-06-20T08:41:42Z 2020-02-15T06:59:52Z +8702 322 2 3054 5.99 2005-06-20T13:16:41Z 2020-02-15T06:59:52Z +8703 322 2 3413 8.99 2005-06-21T16:57:07Z 2020-02-15T06:59:52Z +8704 322 1 3478 0.99 2005-07-05T23:05:44Z 2020-02-15T06:59:52Z +8705 322 2 3627 1.99 2005-07-06T06:19:25Z 2020-02-15T06:59:52Z +8706 322 1 3646 4.99 2005-07-06T07:28:59Z 2020-02-15T06:59:52Z +8707 322 2 6033 2.99 2005-07-11T02:59:34Z 2020-02-15T06:59:52Z +8708 322 1 6511 3.99 2005-07-12T03:39:29Z 2020-02-15T06:59:52Z +8709 322 2 6673 0.99 2005-07-12T11:50:56Z 2020-02-15T06:59:52Z +8710 322 2 6709 4.99 2005-07-12T13:20:41Z 2020-02-15T06:59:52Z +8711 322 1 7091 4.99 2005-07-27T04:44:10Z 2020-02-15T06:59:52Z +8712 322 2 8142 4.99 2005-07-28T20:21:54Z 2020-02-15T06:59:52Z +8713 322 1 9104 7.99 2005-07-30T08:49:55Z 2020-02-15T06:59:52Z +8714 322 1 9115 4.99 2005-07-30T09:13:55Z 2020-02-15T06:59:52Z +8715 322 1 9252 1.99 2005-07-30T14:19:59Z 2020-02-15T06:59:52Z +8716 322 2 11120 4.99 2005-08-02T08:47:04Z 2020-02-15T06:59:52Z +8717 322 2 11456 0.99 2005-08-02T21:14:04Z 2020-02-15T06:59:52Z +8718 322 2 13180 4.99 2005-08-19T14:00:38Z 2020-02-15T06:59:52Z +8719 322 1 13650 9.99 2005-08-20T07:49:06Z 2020-02-15T06:59:52Z +8720 322 2 14042 4.99 2005-08-20T21:45:51Z 2020-02-15T06:59:52Z +8721 322 1 15450 0.99 2005-08-23T00:56:01Z 2020-02-15T06:59:52Z +8722 322 2 15703 8.99 2005-08-23T10:23:48Z 2020-02-15T06:59:52Z +8723 323 1 58 4.99 2005-05-25T08:53:14Z 2020-02-15T06:59:52Z +8724 323 2 729 2.99 2005-05-29T06:35:13Z 2020-02-15T06:59:52Z +8725 323 1 878 5.99 2005-05-30T05:49:13Z 2020-02-15T06:59:52Z +8726 323 2 1167 0.99 2005-06-14T23:25:58Z 2020-02-15T06:59:52Z +8727 323 2 1786 2.99 2005-06-16T19:30:54Z 2020-02-15T06:59:52Z +8728 323 1 2933 4.99 2005-06-20T04:52:23Z 2020-02-15T06:59:52Z +8729 323 2 3704 6.99 2005-07-06T10:16:45Z 2020-02-15T06:59:52Z +8730 323 2 4572 1.99 2005-07-08T05:36:59Z 2020-02-15T06:59:52Z +8731 323 2 5669 4.99 2005-07-10T08:12:53Z 2020-02-15T06:59:52Z +8732 323 2 5906 1.99 2005-07-10T20:41:41Z 2020-02-15T06:59:52Z +8733 323 1 6840 3.99 2005-07-12T19:03:22Z 2020-02-15T06:59:52Z +8734 323 2 7146 7.99 2005-07-27T07:02:30Z 2020-02-15T06:59:52Z +8735 323 2 7275 2.99 2005-07-27T11:39:08Z 2020-02-15T06:59:52Z +8736 323 2 7695 5.99 2005-07-28T03:41:13Z 2020-02-15T06:59:52Z +8737 323 1 7847 1.99 2005-07-28T09:23:14Z 2020-02-15T06:59:52Z +8738 323 2 7937 4.99 2005-07-28T12:38:22Z 2020-02-15T06:59:52Z +8739 323 2 8474 0.99 2005-07-29T08:36:56Z 2020-02-15T06:59:52Z +8740 323 1 8790 0.99 2005-07-29T20:51:41Z 2020-02-15T06:59:52Z +8741 323 1 9363 2.99 2005-07-30T18:44:23Z 2020-02-15T06:59:52Z +8742 323 2 10002 4.99 2005-07-31T17:48:16Z 2020-02-15T06:59:52Z +8743 323 1 10028 4.99 2005-07-31T18:35:54Z 2020-02-15T06:59:52Z +8744 323 1 10298 0.99 2005-08-01T04:06:03Z 2020-02-15T06:59:52Z +8745 323 1 10994 3.99 2005-08-02T04:46:53Z 2020-02-15T06:59:52Z +8746 323 2 11548 0.99 2005-08-17T00:59:47Z 2020-02-15T06:59:52Z +8747 323 1 12120 4.99 2005-08-17T23:16:46Z 2020-02-15T06:59:52Z +8748 323 1 12169 2.99 2005-08-18T01:05:54Z 2020-02-15T06:59:52Z +8749 323 1 13140 5.99 2005-08-19T12:35:56Z 2020-02-15T06:59:52Z +8750 323 1 14224 2.99 2005-08-21T04:53:08Z 2020-02-15T06:59:52Z +8751 323 1 14957 3.99 2005-08-22T06:29:34Z 2020-02-15T06:59:52Z +8752 323 1 15387 4.99 2005-08-22T22:49:13Z 2020-02-15T06:59:52Z +8753 323 1 15728 0.99 2005-08-23T11:30:32Z 2020-02-15T06:59:52Z +8754 324 2 563 3.99 2005-05-28T09:10:49Z 2020-02-15T06:59:52Z +8755 324 1 1740 0.99 2005-06-16T16:29:00Z 2020-02-15T06:59:52Z +8756 324 2 2590 2.99 2005-06-19T05:31:40Z 2020-02-15T06:59:52Z +8757 324 1 3947 4.99 2005-07-06T21:42:21Z 2020-02-15T06:59:52Z +8758 324 1 4197 0.99 2005-07-07T11:07:52Z 2020-02-15T06:59:52Z +8759 324 2 4368 4.99 2005-07-07T19:55:19Z 2020-02-15T06:59:52Z +8760 324 2 5702 2.99 2005-07-10T10:00:01Z 2020-02-15T06:59:52Z +8761 324 1 5778 0.99 2005-07-10T13:41:37Z 2020-02-15T06:59:52Z +8762 324 1 6034 2.99 2005-07-11T03:00:50Z 2020-02-15T06:59:52Z +8763 324 2 6299 4.99 2005-07-11T17:45:08Z 2020-02-15T06:59:52Z +8764 324 2 7240 3.99 2005-07-27T10:21:15Z 2020-02-15T06:59:52Z +8765 324 1 7263 7.99 2005-07-27T11:17:22Z 2020-02-15T06:59:52Z +8766 324 2 7960 6.99 2005-07-28T13:47:08Z 2020-02-15T06:59:52Z +8767 324 1 8698 3.99 2005-07-29T16:52:17Z 2020-02-15T06:59:52Z +8768 324 1 9651 4.99 2005-07-31T05:48:49Z 2020-02-15T06:59:52Z +8769 324 2 10212 2.99 2005-08-01T01:01:35Z 2020-02-15T06:59:52Z +8770 324 1 11617 2.99 2005-08-17T04:00:40Z 2020-02-15T06:59:52Z +8771 324 1 11771 6.99 2005-08-17T10:17:09Z 2020-02-15T06:59:52Z +8772 324 2 12543 2.99 2005-08-18T14:23:55Z 2020-02-15T06:59:52Z +8773 324 2 13356 0.99 2005-08-19T21:02:21Z 2020-02-15T06:59:52Z +8774 324 1 13386 2.99 2005-08-19T21:43:58Z 2020-02-15T06:59:52Z +8775 324 1 14262 8.99 2005-08-21T06:08:13Z 2020-02-15T06:59:52Z +8776 324 2 14479 7.99 2005-08-21T13:35:54Z 2020-02-15T06:59:52Z +8777 324 1 15263 4.99 2005-08-22T18:27:33Z 2020-02-15T06:59:52Z +8778 324 2 13965 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8779 325 1 131 5.99 2005-05-25T21:42:46Z 2020-02-15T06:59:52Z +8780 325 2 2502 4.99 2005-06-18T23:12:13Z 2020-02-15T06:59:52Z +8781 325 2 2507 4.99 2005-06-18T23:39:22Z 2020-02-15T06:59:52Z +8782 325 2 2808 2.99 2005-06-19T19:34:45Z 2020-02-15T06:59:52Z +8783 325 1 5470 5.99 2005-07-09T23:10:49Z 2020-02-15T06:59:52Z +8784 325 2 5740 2.99 2005-07-10T11:51:58Z 2020-02-15T06:59:52Z +8785 325 1 5775 4.99 2005-07-10T13:34:26Z 2020-02-15T06:59:52Z +8786 325 2 6135 4.99 2005-07-11T08:32:23Z 2020-02-15T06:59:52Z +8787 325 2 6622 0.99 2005-07-12T09:04:11Z 2020-02-15T06:59:52Z +8788 325 2 7223 9.99 2005-07-27T09:42:27Z 2020-02-15T06:59:52Z +8789 325 2 7687 2.99 2005-07-28T03:20:26Z 2020-02-15T06:59:52Z +8790 325 2 8539 0.99 2005-07-29T10:48:24Z 2020-02-15T06:59:52Z +8791 325 2 10030 2.99 2005-07-31T18:39:36Z 2020-02-15T06:59:52Z +8792 325 1 10070 4.99 2005-07-31T19:46:29Z 2020-02-15T06:59:52Z +8793 325 2 10326 4.99 2005-08-01T04:55:34Z 2020-02-15T06:59:52Z +8794 325 1 10412 0.99 2005-08-01T07:57:16Z 2020-02-15T06:59:52Z +8795 325 2 12097 4.99 2005-08-17T22:35:24Z 2020-02-15T06:59:52Z +8796 325 1 12779 3.99 2005-08-18T23:44:00Z 2020-02-15T06:59:52Z +8797 325 2 13054 4.99 2005-08-19T09:34:02Z 2020-02-15T06:59:52Z +8798 325 2 14452 3.99 2005-08-21T12:23:20Z 2020-02-15T06:59:52Z +8799 325 1 14672 5.99 2005-08-21T19:59:33Z 2020-02-15T06:59:52Z +8800 325 2 15009 0.99 2005-08-22T08:27:27Z 2020-02-15T06:59:52Z +8801 326 1 875 6.99 2005-05-30T05:38:24Z 2020-02-15T06:59:52Z +8802 326 2 981 4.99 2005-05-30T21:52:42Z 2020-02-15T06:59:52Z +8803 326 2 1149 3.99 2005-05-31T21:03:17Z 2020-02-15T06:59:52Z +8804 326 1 1311 4.99 2005-06-15T10:11:59Z 2020-02-15T06:59:52Z +8805 326 2 2086 0.99 2005-06-17T17:32:07Z 2020-02-15T06:59:52Z +8806 326 2 2317 4.99 2005-06-18T09:12:18Z 2020-02-15T06:59:52Z +8807 326 1 3441 4.99 2005-06-21T20:00:12Z 2020-02-15T06:59:52Z +8808 326 2 3886 0.99 2005-07-06T18:44:24Z 2020-02-15T06:59:52Z +8809 326 1 4160 7.99 2005-07-07T09:13:17Z 2020-02-15T06:59:52Z +8810 326 1 5147 5.99 2005-07-09T08:17:41Z 2020-02-15T06:59:52Z +8811 326 1 7117 2.99 2005-07-27T05:48:36Z 2020-02-15T06:59:52Z +8812 326 2 7725 2.99 2005-07-28T04:47:14Z 2020-02-15T06:59:52Z +8813 326 2 7931 4.99 2005-07-28T12:23:41Z 2020-02-15T06:59:52Z +8814 326 1 8467 5.99 2005-07-29T08:25:35Z 2020-02-15T06:59:52Z +8815 326 1 8604 4.99 2005-07-29T13:07:13Z 2020-02-15T06:59:52Z +8816 326 2 8739 2.99 2005-07-29T18:34:33Z 2020-02-15T06:59:52Z +8817 326 2 9855 0.99 2005-07-31T13:00:33Z 2020-02-15T06:59:52Z +8818 326 1 10108 0.99 2005-07-31T21:02:14Z 2020-02-15T06:59:52Z +8819 326 2 10173 4.99 2005-07-31T23:36:59Z 2020-02-15T06:59:52Z +8820 326 2 10720 0.99 2005-08-01T19:04:33Z 2020-02-15T06:59:52Z +8821 326 2 10976 4.99 2005-08-02T04:11:48Z 2020-02-15T06:59:52Z +8822 326 2 11010 0.99 2005-08-02T05:06:27Z 2020-02-15T06:59:52Z +8823 326 2 11428 2.99 2005-08-02T20:03:10Z 2020-02-15T06:59:52Z +8824 326 2 11485 4.99 2005-08-02T22:33:25Z 2020-02-15T06:59:52Z +8825 326 2 12829 2.99 2005-08-19T01:38:18Z 2020-02-15T06:59:52Z +8826 327 1 653 6.99 2005-05-28T20:12:20Z 2020-02-15T06:59:52Z +8827 327 1 1294 4.99 2005-06-15T09:09:27Z 2020-02-15T06:59:52Z +8828 327 2 1577 3.99 2005-06-16T04:03:28Z 2020-02-15T06:59:52Z +8829 327 2 1929 6.99 2005-06-17T06:49:30Z 2020-02-15T06:59:52Z +8830 327 1 2273 4.99 2005-06-18T06:30:02Z 2020-02-15T06:59:52Z +8831 327 2 2304 5.99 2005-06-18T08:30:15Z 2020-02-15T06:59:52Z +8832 327 2 2637 3.99 2005-06-19T09:20:56Z 2020-02-15T06:59:52Z +8833 327 1 4445 4.99 2005-07-07T23:08:22Z 2020-02-15T06:59:52Z +8834 327 1 4521 0.99 2005-07-08T02:57:56Z 2020-02-15T06:59:52Z +8835 327 1 6618 2.99 2005-07-12T08:41:42Z 2020-02-15T06:59:52Z +8836 327 2 7458 1.99 2005-07-27T18:36:17Z 2020-02-15T06:59:52Z +8837 327 2 7808 1.99 2005-07-28T07:58:56Z 2020-02-15T06:59:52Z +8838 327 1 10371 0.99 2005-08-01T06:20:29Z 2020-02-15T06:59:52Z +8839 327 1 11372 4.99 2005-08-02T18:10:50Z 2020-02-15T06:59:52Z +8840 327 2 11929 6.99 2005-08-17T16:28:51Z 2020-02-15T06:59:52Z +8841 327 1 12016 0.99 2005-08-17T19:33:24Z 2020-02-15T06:59:52Z +8842 327 2 13158 2.99 2005-08-19T13:18:10Z 2020-02-15T06:59:52Z +8843 327 1 13360 4.99 2005-08-19T21:05:11Z 2020-02-15T06:59:52Z +8844 327 1 13448 0.99 2005-08-20T00:12:43Z 2020-02-15T06:59:52Z +8845 327 1 14847 4.99 2005-08-22T02:13:51Z 2020-02-15T06:59:52Z +8846 327 2 15365 3.99 2005-08-22T21:42:17Z 2020-02-15T06:59:52Z +8847 327 1 15386 2.99 2005-08-22T22:41:14Z 2020-02-15T06:59:52Z +8848 327 1 15828 5.99 2005-08-23T15:16:32Z 2020-02-15T06:59:52Z +8849 327 1 15916 9.99 2005-08-23T17:56:01Z 2020-02-15T06:59:52Z +8850 327 2 15969 7.99 2005-08-23T19:51:30Z 2020-02-15T06:59:52Z +8851 327 1 15297 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:52Z +8852 328 2 862 2.99 2005-05-30T03:09:11Z 2020-02-15T06:59:52Z +8853 328 2 1670 2.99 2005-06-16T10:26:33Z 2020-02-15T06:59:52Z +8854 328 2 1980 6.99 2005-06-17T09:48:05Z 2020-02-15T06:59:52Z +8855 328 2 2243 5.99 2005-06-18T04:33:03Z 2020-02-15T06:59:52Z +8856 328 1 3024 4.99 2005-06-20T11:29:17Z 2020-02-15T06:59:52Z +8857 328 1 3239 0.99 2005-06-21T02:48:40Z 2020-02-15T06:59:52Z +8858 328 1 5450 4.99 2005-07-09T22:13:25Z 2020-02-15T06:59:52Z +8859 328 1 8017 1.99 2005-07-28T15:35:41Z 2020-02-15T06:59:52Z +8860 328 1 8577 6.99 2005-07-29T11:56:30Z 2020-02-15T06:59:52Z +8861 328 2 8780 4.99 2005-07-29T20:19:45Z 2020-02-15T06:59:52Z +8862 328 2 9557 2.99 2005-07-31T02:14:01Z 2020-02-15T06:59:52Z +8863 328 1 9835 2.99 2005-07-31T12:07:35Z 2020-02-15T06:59:52Z +8864 328 1 11174 2.99 2005-08-02T10:32:11Z 2020-02-15T06:59:52Z +8865 328 1 12175 4.99 2005-08-18T01:10:17Z 2020-02-15T06:59:52Z +8866 328 2 12825 0.99 2005-08-19T01:23:58Z 2020-02-15T06:59:52Z +8867 328 1 13609 2.99 2005-08-20T06:11:51Z 2020-02-15T06:59:52Z +8868 328 2 13681 7.99 2005-08-20T08:47:37Z 2020-02-15T06:59:52Z +8869 328 1 13907 3.99 2005-08-20T16:17:27Z 2020-02-15T06:59:52Z +8870 328 2 14307 3.99 2005-08-21T07:34:52Z 2020-02-15T06:59:52Z +8871 328 1 14755 3.99 2005-08-21T23:18:08Z 2020-02-15T06:59:52Z +8872 328 2 14939 2.99 2005-08-22T05:53:52Z 2020-02-15T06:59:52Z +8873 328 1 15179 4.99 2005-08-22T15:36:22Z 2020-02-15T06:59:52Z +8874 328 1 15863 0.99 2005-08-23T16:17:09Z 2020-02-15T06:59:52Z +8875 329 1 1183 2.99 2005-06-15T00:49:19Z 2020-02-15T06:59:52Z +8876 329 1 2010 5.99 2005-06-17T11:54:15Z 2020-02-15T06:59:52Z +8877 329 2 2024 0.99 2005-06-17T13:00:51Z 2020-02-15T06:59:52Z +8878 329 1 2151 0.99 2005-06-17T22:52:37Z 2020-02-15T06:59:52Z +8879 329 1 2303 2.99 2005-06-18T08:27:59Z 2020-02-15T06:59:52Z +8880 329 2 2702 2.99 2005-06-19T13:35:56Z 2020-02-15T06:59:52Z +8881 329 1 3052 5.99 2005-06-20T13:09:19Z 2020-02-15T06:59:52Z +8882 329 2 3053 0.99 2005-06-20T13:10:30Z 2020-02-15T06:59:52Z +8883 329 2 3268 4.99 2005-06-21T04:55:49Z 2020-02-15T06:59:52Z +8884 329 2 3976 2.99 2005-07-06T23:00:20Z 2020-02-15T06:59:52Z +8885 329 2 4076 4.99 2005-07-07T04:52:15Z 2020-02-15T06:59:52Z +8886 329 1 4415 4.99 2005-07-07T22:01:43Z 2020-02-15T06:59:52Z +8887 329 1 4465 1.99 2005-07-08T00:07:45Z 2020-02-15T06:59:52Z +8888 329 2 4674 2.99 2005-07-08T10:19:28Z 2020-02-15T06:59:52Z +8889 329 1 7980 4.99 2005-07-28T14:16:49Z 2020-02-15T06:59:52Z +8890 329 2 8172 7.99 2005-07-28T21:34:36Z 2020-02-15T06:59:52Z +8891 329 1 8460 6.99 2005-07-29T08:08:03Z 2020-02-15T06:59:52Z +8892 329 2 8941 0.99 2005-07-30T02:59:21Z 2020-02-15T06:59:52Z +8893 329 2 9024 4.99 2005-07-30T05:44:42Z 2020-02-15T06:59:52Z +8894 329 2 9219 0.99 2005-07-30T13:15:21Z 2020-02-15T06:59:52Z +8895 329 1 9381 0.99 2005-07-30T19:23:04Z 2020-02-15T06:59:52Z +8896 329 1 9827 6.99 2005-07-31T11:56:55Z 2020-02-15T06:59:52Z +8897 329 1 10473 7.99 2005-08-01T09:56:24Z 2020-02-15T06:59:52Z +8898 329 2 10490 0.99 2005-08-01T10:37:11Z 2020-02-15T06:59:52Z +8899 329 1 11130 2.99 2005-08-02T09:08:59Z 2020-02-15T06:59:52Z +8900 329 2 11169 3.99 2005-08-02T10:19:42Z 2020-02-15T06:59:52Z +8901 329 2 11697 0.99 2005-08-17T07:09:19Z 2020-02-15T06:59:52Z +8902 329 1 12659 6.99 2005-08-18T19:05:49Z 2020-02-15T06:59:52Z +8903 329 1 13627 8.99 2005-08-20T06:59:00Z 2020-02-15T06:59:52Z +8904 329 1 14900 4.99 2005-08-22T04:27:48Z 2020-02-15T06:59:52Z +8905 329 2 15011 4.99 2005-08-22T08:31:07Z 2020-02-15T06:59:52Z +8906 329 1 15308 2.99 2005-08-22T19:54:31Z 2020-02-15T06:59:52Z +8907 330 1 704 3.99 2005-05-29T02:44:43Z 2020-02-15T06:59:52Z +8908 330 2 967 7.99 2005-05-30T19:12:06Z 2020-02-15T06:59:52Z +8909 330 1 1219 6.99 2005-06-15T03:25:59Z 2020-02-15T06:59:52Z +8910 330 2 1511 5.99 2005-06-15T22:45:06Z 2020-02-15T06:59:52Z +8911 330 2 2885 0.99 2005-06-20T01:33:42Z 2020-02-15T06:59:52Z +8912 330 1 2936 4.99 2005-06-20T05:09:27Z 2020-02-15T06:59:52Z +8913 330 2 3061 2.99 2005-06-20T13:48:21Z 2020-02-15T06:59:52Z +8914 330 2 3603 4.99 2005-07-06T05:25:03Z 2020-02-15T06:59:53Z +8915 330 2 3659 2.99 2005-07-06T08:03:14Z 2020-02-15T06:59:53Z +8916 330 2 3760 2.99 2005-07-06T12:49:28Z 2020-02-15T06:59:53Z +8917 330 1 4124 1.99 2005-07-07T07:19:54Z 2020-02-15T06:59:53Z +8918 330 2 5149 2.99 2005-07-09T08:28:23Z 2020-02-15T06:59:53Z +8919 330 1 5750 5.99 2005-07-10T12:20:41Z 2020-02-15T06:59:53Z +8920 330 1 6656 0.99 2005-07-12T11:09:47Z 2020-02-15T06:59:53Z +8921 330 2 6678 2.99 2005-07-12T11:58:36Z 2020-02-15T06:59:53Z +8922 330 1 6719 2.99 2005-07-12T13:40:37Z 2020-02-15T06:59:53Z +8923 330 2 7894 2.99 2005-07-28T10:53:58Z 2020-02-15T06:59:53Z +8924 330 1 8680 4.99 2005-07-29T16:08:03Z 2020-02-15T06:59:53Z +8925 330 2 10100 4.99 2005-07-31T20:47:18Z 2020-02-15T06:59:53Z +8926 330 2 11259 3.99 2005-08-02T13:46:30Z 2020-02-15T06:59:53Z +8927 330 1 12062 2.99 2005-08-17T21:24:47Z 2020-02-15T06:59:53Z +8928 330 1 12394 2.99 2005-08-18T09:05:15Z 2020-02-15T06:59:53Z +8929 330 1 12740 4.99 2005-08-18T22:17:04Z 2020-02-15T06:59:53Z +8930 330 1 12867 0.99 2005-08-19T02:40:11Z 2020-02-15T06:59:53Z +8931 330 2 11709 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +8932 331 2 87 0.99 2005-05-25T13:52:43Z 2020-02-15T06:59:53Z +8933 331 1 996 2.99 2005-05-31T00:06:20Z 2020-02-15T06:59:53Z +8934 331 1 1415 2.99 2005-06-15T17:31:57Z 2020-02-15T06:59:53Z +8935 331 2 2528 6.99 2005-06-19T01:14:12Z 2020-02-15T06:59:53Z +8936 331 1 2587 2.99 2005-06-19T05:06:14Z 2020-02-15T06:59:53Z +8937 331 1 3505 4.99 2005-07-06T00:19:32Z 2020-02-15T06:59:53Z +8938 331 1 3613 4.99 2005-07-06T05:45:53Z 2020-02-15T06:59:53Z +8939 331 2 3871 8.99 2005-07-06T17:58:51Z 2020-02-15T06:59:53Z +8940 331 1 4051 4.99 2005-07-07T03:37:28Z 2020-02-15T06:59:53Z +8941 331 2 4063 5.99 2005-07-07T04:23:57Z 2020-02-15T06:59:53Z +8942 331 1 4326 10.99 2005-07-07T18:01:22Z 2020-02-15T06:59:53Z +8943 331 1 5152 2.99 2005-07-09T08:34:44Z 2020-02-15T06:59:53Z +8944 331 1 5885 1.99 2005-07-10T19:33:50Z 2020-02-15T06:59:53Z +8945 331 1 5947 5.99 2005-07-10T23:07:42Z 2020-02-15T06:59:53Z +8946 331 1 8231 0.99 2005-07-29T00:14:37Z 2020-02-15T06:59:53Z +8947 331 2 8995 4.99 2005-07-30T04:53:11Z 2020-02-15T06:59:53Z +8948 331 1 9401 5.99 2005-07-30T20:18:19Z 2020-02-15T06:59:53Z +8949 331 2 10188 6.99 2005-08-01T00:19:41Z 2020-02-15T06:59:53Z +8950 331 1 11052 5.99 2005-08-02T06:26:19Z 2020-02-15T06:59:53Z +8951 331 1 11362 2.99 2005-08-02T17:47:25Z 2020-02-15T06:59:53Z +8952 331 2 12533 4.99 2005-08-18T14:01:40Z 2020-02-15T06:59:53Z +8953 331 1 13795 0.99 2005-08-20T12:32:09Z 2020-02-15T06:59:53Z +8954 331 1 14256 7.99 2005-08-21T05:52:27Z 2020-02-15T06:59:53Z +8955 331 1 14628 1.99 2005-08-21T18:37:24Z 2020-02-15T06:59:53Z +8956 331 1 15339 2.99 2005-08-22T20:52:12Z 2020-02-15T06:59:53Z +8957 331 2 15447 3.99 2005-08-23T00:53:57Z 2020-02-15T06:59:53Z +8958 331 1 15521 2.99 2005-08-23T03:30:51Z 2020-02-15T06:59:53Z +8959 332 2 600 3.99 2005-05-28T14:08:19Z 2020-02-15T06:59:53Z +8960 332 1 1000 6.99 2005-05-31T00:25:56Z 2020-02-15T06:59:53Z +8961 332 1 4100 6.99 2005-07-07T06:20:52Z 2020-02-15T06:59:53Z +8962 332 1 4302 6.99 2005-07-07T16:47:53Z 2020-02-15T06:59:53Z +8963 332 2 5116 2.99 2005-07-09T07:10:12Z 2020-02-15T06:59:53Z +8964 332 1 5277 1.99 2005-07-09T14:40:42Z 2020-02-15T06:59:53Z +8965 332 2 5381 2.99 2005-07-09T19:11:11Z 2020-02-15T06:59:53Z +8966 332 2 5388 0.99 2005-07-09T19:25:25Z 2020-02-15T06:59:53Z +8967 332 1 5440 0.99 2005-07-09T21:45:17Z 2020-02-15T06:59:53Z +8968 332 2 7049 7.99 2005-07-27T03:32:41Z 2020-02-15T06:59:53Z +8969 332 2 7418 2.99 2005-07-27T16:59:09Z 2020-02-15T06:59:53Z +8970 332 2 7577 8.99 2005-07-27T22:56:07Z 2020-02-15T06:59:53Z +8971 332 2 7578 4.99 2005-07-27T22:58:17Z 2020-02-15T06:59:53Z +8972 332 2 7934 8.99 2005-07-28T12:33:10Z 2020-02-15T06:59:53Z +8973 332 2 8173 6.99 2005-07-28T21:35:44Z 2020-02-15T06:59:53Z +8974 332 1 9324 1.99 2005-07-30T17:28:52Z 2020-02-15T06:59:53Z +8975 332 1 9388 5.99 2005-07-30T19:27:22Z 2020-02-15T06:59:53Z +8976 332 1 9921 0.99 2005-07-31T14:59:21Z 2020-02-15T06:59:53Z +8977 332 1 10026 4.99 2005-07-31T18:31:51Z 2020-02-15T06:59:53Z +8978 332 1 10307 0.99 2005-08-01T04:21:54Z 2020-02-15T06:59:53Z +8979 332 2 10439 0.99 2005-08-01T08:54:26Z 2020-02-15T06:59:53Z +8980 332 1 11229 5.99 2005-08-02T12:56:37Z 2020-02-15T06:59:53Z +8981 332 2 11564 2.99 2005-08-17T01:27:49Z 2020-02-15T06:59:53Z +8982 332 2 12318 4.99 2005-08-18T06:21:56Z 2020-02-15T06:59:53Z +8983 332 2 13673 2.99 2005-08-20T08:27:30Z 2020-02-15T06:59:53Z +8984 332 2 14783 4.99 2005-08-22T00:21:57Z 2020-02-15T06:59:53Z +8985 332 2 15194 0.99 2005-08-22T16:07:34Z 2020-02-15T06:59:53Z +8986 332 1 15210 3.99 2005-08-22T16:37:36Z 2020-02-15T06:59:53Z +8987 333 1 4 4.99 2005-05-24T23:04:41Z 2020-02-15T06:59:53Z +8988 333 1 1667 2.99 2005-06-16T10:18:59Z 2020-02-15T06:59:53Z +8989 333 1 2149 6.99 2005-06-17T22:50:00Z 2020-02-15T06:59:53Z +8990 333 1 2929 1.99 2005-06-20T04:47:39Z 2020-02-15T06:59:53Z +8991 333 1 3110 2.99 2005-06-20T17:40:12Z 2020-02-15T06:59:53Z +8992 333 2 5032 0.99 2005-07-09T02:39:47Z 2020-02-15T06:59:53Z +8993 333 1 5645 1.99 2005-07-10T06:58:21Z 2020-02-15T06:59:53Z +8994 333 2 5892 4.99 2005-07-10T20:02:42Z 2020-02-15T06:59:53Z +8995 333 2 6275 0.99 2005-07-11T16:12:11Z 2020-02-15T06:59:53Z +8996 333 2 6931 4.99 2005-07-26T23:02:57Z 2020-02-15T06:59:53Z +8997 333 2 6958 0.99 2005-07-27T00:02:41Z 2020-02-15T06:59:53Z +8998 333 2 7076 6.99 2005-07-27T04:12:14Z 2020-02-15T06:59:53Z +8999 333 2 7246 0.99 2005-07-27T10:30:41Z 2020-02-15T06:59:53Z +9000 333 1 8719 4.99 2005-07-29T17:45:45Z 2020-02-15T06:59:53Z +9001 333 2 9148 4.99 2005-07-30T10:39:10Z 2020-02-15T06:59:53Z +9002 333 2 9338 10.99 2005-07-30T18:03:13Z 2020-02-15T06:59:53Z +9003 333 2 10035 4.99 2005-07-31T18:46:46Z 2020-02-15T06:59:53Z +9004 333 1 10062 2.99 2005-07-31T19:24:55Z 2020-02-15T06:59:53Z +9005 333 2 10844 4.99 2005-08-01T23:46:58Z 2020-02-15T06:59:53Z +9006 333 1 12427 6.99 2005-08-18T10:24:17Z 2020-02-15T06:59:53Z +9007 333 2 12661 0.99 2005-08-18T19:10:10Z 2020-02-15T06:59:53Z +9008 333 1 13579 3.99 2005-08-20T05:22:06Z 2020-02-15T06:59:53Z +9009 333 2 13710 4.99 2005-08-20T09:35:20Z 2020-02-15T06:59:53Z +9010 333 1 14057 4.99 2005-08-20T22:22:59Z 2020-02-15T06:59:53Z +9011 333 1 14740 2.99 2005-08-21T22:35:33Z 2020-02-15T06:59:53Z +9012 333 2 15253 2.99 2005-08-22T18:05:21Z 2020-02-15T06:59:53Z +9013 333 1 15313 4.99 2005-08-22T19:59:42Z 2020-02-15T06:59:53Z +9014 334 1 13 6.99 2005-05-25T00:22:55Z 2020-02-15T06:59:53Z +9015 334 1 431 8.99 2005-05-27T16:31:05Z 2020-02-15T06:59:53Z +9016 334 2 1187 4.99 2005-06-15T00:58:50Z 2020-02-15T06:59:53Z +9017 334 1 1298 4.99 2005-06-15T09:32:53Z 2020-02-15T06:59:53Z +9018 334 2 2476 0.99 2005-06-18T20:57:12Z 2020-02-15T06:59:53Z +9019 334 1 3662 4.99 2005-07-06T08:11:48Z 2020-02-15T06:59:53Z +9020 334 1 4603 6.99 2005-07-08T06:57:07Z 2020-02-15T06:59:53Z +9021 334 2 5014 4.99 2005-07-09T01:51:49Z 2020-02-15T06:59:53Z +9022 334 2 5434 0.99 2005-07-09T21:25:20Z 2020-02-15T06:59:53Z +9023 334 2 5818 5.99 2005-07-10T15:51:12Z 2020-02-15T06:59:53Z +9024 334 1 5845 4.99 2005-07-10T17:23:14Z 2020-02-15T06:59:53Z +9025 334 2 6641 5.99 2005-07-12T10:33:14Z 2020-02-15T06:59:53Z +9026 334 2 6749 4.99 2005-07-12T14:43:05Z 2020-02-15T06:59:53Z +9027 334 1 6987 2.99 2005-07-27T00:59:50Z 2020-02-15T06:59:53Z +9028 334 1 8977 7.99 2005-07-30T04:14:07Z 2020-02-15T06:59:53Z +9029 334 1 9633 2.99 2005-07-31T05:04:08Z 2020-02-15T06:59:53Z +9030 334 1 10207 3.99 2005-08-01T00:53:01Z 2020-02-15T06:59:53Z +9031 334 1 10408 4.99 2005-08-01T07:42:10Z 2020-02-15T06:59:53Z +9032 334 1 10492 2.99 2005-08-01T10:42:28Z 2020-02-15T06:59:53Z +9033 334 1 10879 1.99 2005-08-02T00:33:20Z 2020-02-15T06:59:53Z +9034 334 2 10997 7.99 2005-08-02T04:49:02Z 2020-02-15T06:59:53Z +9035 334 2 12677 4.99 2005-08-18T19:36:05Z 2020-02-15T06:59:53Z +9036 334 2 13325 4.99 2005-08-19T19:52:02Z 2020-02-15T06:59:53Z +9037 334 1 13876 2.99 2005-08-20T15:15:28Z 2020-02-15T06:59:53Z +9038 334 1 14645 0.99 2005-08-21T19:12:47Z 2020-02-15T06:59:53Z +9039 334 1 14984 7.99 2005-08-22T07:35:31Z 2020-02-15T06:59:53Z +9040 334 2 15548 0.99 2005-08-23T04:26:20Z 2020-02-15T06:59:53Z +9041 334 2 15656 4.99 2005-08-23T08:38:58Z 2020-02-15T06:59:53Z +9042 334 1 15669 3.99 2005-08-23T09:06:17Z 2020-02-15T06:59:53Z +9043 334 1 14219 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9044 335 1 3329 4.99 2005-06-21T09:20:31Z 2020-02-15T06:59:53Z +9045 335 1 3607 0.99 2005-07-06T05:30:09Z 2020-02-15T06:59:53Z +9046 335 2 4016 0.99 2005-07-07T01:05:50Z 2020-02-15T06:59:53Z +9047 335 2 4032 2.99 2005-07-07T02:34:13Z 2020-02-15T06:59:53Z +9048 335 1 4279 4.99 2005-07-07T15:01:53Z 2020-02-15T06:59:53Z +9049 335 1 4387 8.99 2005-07-07T20:56:47Z 2020-02-15T06:59:53Z +9050 335 1 5024 4.99 2005-07-09T02:25:12Z 2020-02-15T06:59:53Z +9051 335 1 5252 0.99 2005-07-09T13:40:44Z 2020-02-15T06:59:53Z +9052 335 2 5728 2.99 2005-07-10T11:26:14Z 2020-02-15T06:59:53Z +9053 335 1 6624 7.99 2005-07-12T09:05:50Z 2020-02-15T06:59:53Z +9054 335 1 6906 0.99 2005-07-12T22:03:02Z 2020-02-15T06:59:53Z +9055 335 2 8634 3.99 2005-07-29T14:19:57Z 2020-02-15T06:59:53Z +9056 335 1 8855 2.99 2005-07-29T23:40:10Z 2020-02-15T06:59:53Z +9057 335 1 9125 5.99 2005-07-30T09:43:39Z 2020-02-15T06:59:53Z +9058 335 2 9361 4.99 2005-07-30T18:43:49Z 2020-02-15T06:59:53Z +9059 335 1 9428 0.99 2005-07-30T21:18:37Z 2020-02-15T06:59:53Z +9060 335 2 10606 4.99 2005-08-01T14:39:15Z 2020-02-15T06:59:53Z +9061 335 2 13267 0.99 2005-08-19T17:31:36Z 2020-02-15T06:59:53Z +9062 335 1 13622 1.99 2005-08-20T06:45:32Z 2020-02-15T06:59:53Z +9063 335 1 14014 2.99 2005-08-20T20:47:09Z 2020-02-15T06:59:53Z +9064 335 2 15005 4.99 2005-08-22T08:15:44Z 2020-02-15T06:59:53Z +9065 335 2 15101 0.99 2005-08-22T11:56:02Z 2020-02-15T06:59:53Z +9066 335 2 11541 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9067 336 1 1478 2.99 2005-06-15T21:12:13Z 2020-02-15T06:59:53Z +9068 336 2 2212 2.99 2005-06-18T02:36:10Z 2020-02-15T06:59:53Z +9069 336 2 2475 2.99 2005-06-18T20:52:46Z 2020-02-15T06:59:53Z +9070 336 1 2575 2.99 2005-06-19T04:32:52Z 2020-02-15T06:59:53Z +9071 336 2 2719 4.99 2005-06-19T14:50:19Z 2020-02-15T06:59:53Z +9072 336 1 2954 2.99 2005-06-20T06:45:00Z 2020-02-15T06:59:53Z +9073 336 2 3204 4.99 2005-06-21T00:37:50Z 2020-02-15T06:59:53Z +9074 336 2 3349 0.99 2005-06-21T11:17:35Z 2020-02-15T06:59:53Z +9075 336 2 4323 5.99 2005-07-07T17:55:53Z 2020-02-15T06:59:53Z +9076 336 1 4595 2.99 2005-07-08T06:40:25Z 2020-02-15T06:59:53Z +9077 336 2 5649 2.99 2005-07-10T07:15:07Z 2020-02-15T06:59:53Z +9078 336 2 5667 0.99 2005-07-10T08:11:03Z 2020-02-15T06:59:53Z +9079 336 2 6263 4.99 2005-07-11T15:33:50Z 2020-02-15T06:59:53Z +9080 336 2 6382 6.99 2005-07-11T21:58:53Z 2020-02-15T06:59:53Z +9081 336 2 8275 4.99 2005-07-29T01:35:47Z 2020-02-15T06:59:53Z +9082 336 1 8407 6.99 2005-07-29T06:37:02Z 2020-02-15T06:59:53Z +9083 336 2 8607 4.99 2005-07-29T13:18:00Z 2020-02-15T06:59:53Z +9084 336 2 8951 8.99 2005-07-30T03:18:24Z 2020-02-15T06:59:53Z +9085 336 2 9306 0.99 2005-07-30T16:47:17Z 2020-02-15T06:59:53Z +9086 336 1 10055 0.99 2005-07-31T19:15:58Z 2020-02-15T06:59:53Z +9087 336 2 11743 2.99 2005-08-17T08:49:05Z 2020-02-15T06:59:53Z +9088 336 1 12323 8.99 2005-08-18T06:36:22Z 2020-02-15T06:59:53Z +9089 336 2 12794 0.99 2005-08-19T00:20:37Z 2020-02-15T06:59:53Z +9090 336 2 12926 3.99 2005-08-19T05:00:16Z 2020-02-15T06:59:53Z +9091 336 2 13066 0.99 2005-08-19T09:50:39Z 2020-02-15T06:59:53Z +9092 336 2 13689 4.99 2005-08-20T09:04:30Z 2020-02-15T06:59:53Z +9093 336 1 14295 2.99 2005-08-21T07:09:27Z 2020-02-15T06:59:53Z +9094 336 1 15073 10.99 2005-08-22T11:01:15Z 2020-02-15T06:59:53Z +9095 336 2 15848 2.99 2005-08-23T15:41:12Z 2020-02-15T06:59:53Z +9096 336 1 13022 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9097 337 1 374 6.99 2005-05-27T08:26:30Z 2020-02-15T06:59:53Z +9098 337 1 572 4.99 2005-05-28T10:30:13Z 2020-02-15T06:59:53Z +9099 337 1 839 8.99 2005-05-30T00:28:12Z 2020-02-15T06:59:53Z +9100 337 2 1969 4.99 2005-06-17T09:22:22Z 2020-02-15T06:59:53Z +9101 337 1 2014 5.99 2005-06-17T12:03:28Z 2020-02-15T06:59:53Z +9102 337 1 3626 5.99 2005-07-06T06:15:35Z 2020-02-15T06:59:53Z +9103 337 1 4091 6.99 2005-07-07T05:53:38Z 2020-02-15T06:59:53Z +9104 337 2 4093 4.99 2005-07-07T05:54:50Z 2020-02-15T06:59:53Z +9105 337 2 4855 4.99 2005-07-08T18:45:50Z 2020-02-15T06:59:53Z +9106 337 1 5050 2.99 2005-07-09T03:54:38Z 2020-02-15T06:59:53Z +9107 337 1 6212 0.99 2005-07-11T12:40:48Z 2020-02-15T06:59:53Z +9108 337 2 6305 7.99 2005-07-11T18:02:25Z 2020-02-15T06:59:53Z +9109 337 1 6620 2.99 2005-07-12T08:51:03Z 2020-02-15T06:59:53Z +9110 337 1 7410 4.99 2005-07-27T16:41:59Z 2020-02-15T06:59:53Z +9111 337 1 8516 4.99 2005-07-29T10:00:03Z 2020-02-15T06:59:53Z +9112 337 2 8919 8.99 2005-07-30T01:57:03Z 2020-02-15T06:59:53Z +9113 337 2 9051 5.99 2005-07-30T07:05:54Z 2020-02-15T06:59:53Z +9114 337 1 10664 0.99 2005-08-01T16:51:15Z 2020-02-15T06:59:53Z +9115 337 2 10765 0.99 2005-08-01T20:34:51Z 2020-02-15T06:59:53Z +9116 337 2 11252 2.99 2005-08-02T13:42:13Z 2020-02-15T06:59:53Z +9117 337 1 11734 3.99 2005-08-17T08:34:22Z 2020-02-15T06:59:53Z +9118 337 1 12369 6.99 2005-08-18T07:57:43Z 2020-02-15T06:59:53Z +9119 337 2 13305 6.99 2005-08-19T18:57:05Z 2020-02-15T06:59:53Z +9120 337 1 13678 4.99 2005-08-20T08:38:24Z 2020-02-15T06:59:53Z +9121 337 2 13892 3.99 2005-08-20T15:50:17Z 2020-02-15T06:59:53Z +9122 337 2 14118 5.99 2005-08-21T01:13:37Z 2020-02-15T06:59:53Z +9123 337 2 15241 4.99 2005-08-22T17:47:40Z 2020-02-15T06:59:53Z +9124 337 1 15292 4.99 2005-08-22T19:28:56Z 2020-02-15T06:59:53Z +9125 337 2 11847 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9126 338 1 675 0.99 2005-05-28T22:22:44Z 2020-02-15T06:59:53Z +9127 338 2 1510 4.99 2005-06-15T22:39:34Z 2020-02-15T06:59:53Z +9128 338 1 1807 5.99 2005-06-16T20:58:59Z 2020-02-15T06:59:53Z +9129 338 2 1952 4.99 2005-06-17T08:33:02Z 2020-02-15T06:59:53Z +9130 338 1 2148 6.99 2005-06-17T22:44:35Z 2020-02-15T06:59:53Z +9131 338 1 2179 0.99 2005-06-18T00:41:36Z 2020-02-15T06:59:53Z +9132 338 1 2495 4.99 2005-06-18T22:15:42Z 2020-02-15T06:59:53Z +9133 338 1 3458 5.99 2005-06-21T21:42:49Z 2020-02-15T06:59:53Z +9134 338 1 3516 0.99 2005-07-06T00:50:30Z 2020-02-15T06:59:53Z +9135 338 2 3772 2.99 2005-07-06T13:22:53Z 2020-02-15T06:59:53Z +9136 338 2 4104 5.99 2005-07-07T06:25:41Z 2020-02-15T06:59:53Z +9137 338 2 4779 4.99 2005-07-08T15:53:41Z 2020-02-15T06:59:53Z +9138 338 1 5309 4.99 2005-07-09T16:00:16Z 2020-02-15T06:59:53Z +9139 338 1 6236 2.99 2005-07-11T14:18:17Z 2020-02-15T06:59:53Z +9140 338 1 6360 4.99 2005-07-11T21:07:40Z 2020-02-15T06:59:53Z +9141 338 2 7584 3.99 2005-07-27T23:15:46Z 2020-02-15T06:59:53Z +9142 338 1 8766 0.99 2005-07-29T19:41:04Z 2020-02-15T06:59:53Z +9143 338 1 9485 7.99 2005-07-30T23:32:40Z 2020-02-15T06:59:53Z +9144 338 2 10791 2.99 2005-08-01T21:41:52Z 2020-02-15T06:59:53Z +9145 338 1 10897 0.99 2005-08-02T01:23:42Z 2020-02-15T06:59:53Z +9146 338 2 11064 4.99 2005-08-02T06:55:17Z 2020-02-15T06:59:53Z +9147 338 2 11671 4.99 2005-08-17T05:50:21Z 2020-02-15T06:59:53Z +9148 338 2 11719 5.99 2005-08-17T07:46:05Z 2020-02-15T06:59:53Z +9149 338 1 12167 2.99 2005-08-18T01:00:02Z 2020-02-15T06:59:53Z +9150 338 1 13284 3.99 2005-08-19T18:12:31Z 2020-02-15T06:59:53Z +9151 338 1 14619 2.99 2005-08-21T18:10:03Z 2020-02-15T06:59:53Z +9152 338 2 15105 0.99 2005-08-22T12:01:33Z 2020-02-15T06:59:53Z +9153 338 2 15173 6.99 2005-08-22T15:26:29Z 2020-02-15T06:59:53Z +9154 339 1 876 5.99 2005-05-30T05:41:22Z 2020-02-15T06:59:53Z +9155 339 2 1432 3.99 2005-06-15T18:27:24Z 2020-02-15T06:59:53Z +9156 339 1 1536 4.99 2005-06-16T00:52:22Z 2020-02-15T06:59:53Z +9157 339 2 1629 4.99 2005-06-16T07:53:47Z 2020-02-15T06:59:53Z +9158 339 1 3146 6.99 2005-06-20T20:21:48Z 2020-02-15T06:59:53Z +9159 339 1 3335 4.99 2005-06-21T10:09:08Z 2020-02-15T06:59:53Z +9160 339 2 3536 2.99 2005-07-06T01:36:11Z 2020-02-15T06:59:53Z +9161 339 1 4243 4.99 2005-07-07T13:39:58Z 2020-02-15T06:59:53Z +9162 339 1 4467 0.99 2005-07-08T00:13:52Z 2020-02-15T06:59:53Z +9163 339 2 4967 3.99 2005-07-08T23:48:03Z 2020-02-15T06:59:53Z +9164 339 1 5720 3.99 2005-07-10T11:09:12Z 2020-02-15T06:59:53Z +9165 339 1 6072 6.99 2005-07-11T04:52:40Z 2020-02-15T06:59:53Z +9166 339 1 6425 0.99 2005-07-11T23:54:52Z 2020-02-15T06:59:53Z +9167 339 2 6682 7.99 2005-07-12T12:12:43Z 2020-02-15T06:59:53Z +9168 339 2 7244 2.99 2005-07-27T10:27:33Z 2020-02-15T06:59:53Z +9169 339 2 7973 4.99 2005-07-28T14:10:06Z 2020-02-15T06:59:53Z +9170 339 1 8968 0.99 2005-07-30T03:57:32Z 2020-02-15T06:59:53Z +9171 339 2 9208 5.99 2005-07-30T12:54:03Z 2020-02-15T06:59:53Z +9172 339 1 9663 4.99 2005-07-31T06:10:48Z 2020-02-15T06:59:53Z +9173 339 2 10338 3.99 2005-08-01T05:03:03Z 2020-02-15T06:59:53Z +9174 339 2 11171 4.99 2005-08-02T10:23:41Z 2020-02-15T06:59:53Z +9175 339 1 11550 2.99 2005-08-17T01:02:06Z 2020-02-15T06:59:53Z +9176 339 2 11582 3.99 2005-08-17T02:03:49Z 2020-02-15T06:59:53Z +9177 339 2 11699 5.99 2005-08-17T07:11:58Z 2020-02-15T06:59:53Z +9178 339 1 12631 0.99 2005-08-18T17:52:51Z 2020-02-15T06:59:53Z +9179 339 1 13199 3.99 2005-08-19T14:53:22Z 2020-02-15T06:59:53Z +9180 339 1 13575 5.99 2005-08-20T05:15:20Z 2020-02-15T06:59:53Z +9181 339 1 13985 0.99 2005-08-20T19:13:06Z 2020-02-15T06:59:53Z +9182 339 1 14636 4.99 2005-08-21T18:59:17Z 2020-02-15T06:59:53Z +9183 339 2 14758 3.99 2005-08-21T23:24:52Z 2020-02-15T06:59:53Z +9184 340 2 1205 4.99 2005-06-15T02:25:56Z 2020-02-15T06:59:53Z +9185 340 1 1697 3.99 2005-06-16T12:55:20Z 2020-02-15T06:59:53Z +9186 340 1 2177 5.99 2005-06-18T00:34:45Z 2020-02-15T06:59:53Z +9187 340 2 2183 4.99 2005-06-18T01:06:01Z 2020-02-15T06:59:53Z +9188 340 2 2607 5.99 2005-06-19T06:55:01Z 2020-02-15T06:59:53Z +9189 340 1 2653 5.99 2005-06-19T10:36:53Z 2020-02-15T06:59:53Z +9190 340 1 3264 0.99 2005-06-21T04:19:03Z 2020-02-15T06:59:53Z +9191 340 1 3455 2.99 2005-06-21T21:17:51Z 2020-02-15T06:59:53Z +9192 340 2 4475 2.99 2005-07-08T00:27:30Z 2020-02-15T06:59:53Z +9193 340 1 4742 0.99 2005-07-08T13:35:23Z 2020-02-15T06:59:53Z +9194 340 2 6381 4.99 2005-07-11T21:58:48Z 2020-02-15T06:59:53Z +9195 340 2 7617 2.99 2005-07-28T00:18:40Z 2020-02-15T06:59:53Z +9196 340 2 8274 4.99 2005-07-29T01:34:32Z 2020-02-15T06:59:53Z +9197 340 1 8541 0.99 2005-07-29T10:55:01Z 2020-02-15T06:59:53Z +9198 340 2 8551 4.99 2005-07-29T11:13:11Z 2020-02-15T06:59:53Z +9199 340 1 8606 4.99 2005-07-29T13:14:24Z 2020-02-15T06:59:53Z +9200 340 1 9834 2.99 2005-07-31T12:05:42Z 2020-02-15T06:59:53Z +9201 340 1 10292 2.99 2005-08-01T03:42:40Z 2020-02-15T06:59:53Z +9202 340 1 10667 8.99 2005-08-01T16:58:22Z 2020-02-15T06:59:53Z +9203 340 2 10674 3.99 2005-08-01T17:11:52Z 2020-02-15T06:59:53Z +9204 340 1 10809 0.99 2005-08-01T22:39:27Z 2020-02-15T06:59:53Z +9205 340 1 10995 0.99 2005-08-02T04:48:00Z 2020-02-15T06:59:53Z +9206 340 2 12598 4.99 2005-08-18T16:34:03Z 2020-02-15T06:59:53Z +9207 340 2 12908 1.99 2005-08-19T04:19:05Z 2020-02-15T06:59:53Z +9208 340 2 12940 2.99 2005-08-19T05:38:29Z 2020-02-15T06:59:53Z +9209 340 1 13425 2.99 2005-08-19T23:11:44Z 2020-02-15T06:59:53Z +9210 340 1 14457 4.99 2005-08-21T12:47:38Z 2020-02-15T06:59:53Z +9211 340 2 14718 0.99 2005-08-21T21:39:25Z 2020-02-15T06:59:53Z +9212 340 1 14895 2.99 2005-08-22T04:19:23Z 2020-02-15T06:59:53Z +9213 340 2 15306 2.99 2005-08-22T19:46:36Z 2020-02-15T06:59:53Z +9214 340 1 15378 9.99 2005-08-22T22:25:17Z 2020-02-15T06:59:53Z +9215 341 1 1318 2.99 2005-06-15T10:34:26Z 2020-02-15T06:59:53Z +9216 341 2 1520 7.99 2005-06-15T23:57:20Z 2020-02-15T06:59:53Z +9217 341 1 1778 1.99 2005-06-16T18:54:48Z 2020-02-15T06:59:53Z +9218 341 1 1849 7.99 2005-06-17T00:13:19Z 2020-02-15T06:59:53Z +9219 341 2 2829 2.99 2005-06-19T21:11:30Z 2020-02-15T06:59:53Z +9220 341 2 3130 7.99 2005-06-20T19:03:22Z 2020-02-15T06:59:53Z +9221 341 1 3382 5.99 2005-06-21T14:05:23Z 2020-02-15T06:59:53Z +9222 341 2 3938 4.99 2005-07-06T21:15:45Z 2020-02-15T06:59:53Z +9223 341 1 4624 2.99 2005-07-08T08:12:17Z 2020-02-15T06:59:53Z +9224 341 2 5487 4.99 2005-07-10T00:01:50Z 2020-02-15T06:59:53Z +9225 341 2 5931 0.99 2005-07-10T22:04:19Z 2020-02-15T06:59:53Z +9226 341 2 7473 2.99 2005-07-27T19:05:40Z 2020-02-15T06:59:53Z +9227 341 1 8661 2.99 2005-07-29T15:28:24Z 2020-02-15T06:59:53Z +9228 341 1 8728 9.99 2005-07-29T18:12:49Z 2020-02-15T06:59:53Z +9229 341 2 10605 0.99 2005-08-01T14:36:26Z 2020-02-15T06:59:53Z +9230 341 1 11305 6.99 2005-08-02T15:44:55Z 2020-02-15T06:59:53Z +9231 341 1 11723 2.99 2005-08-17T07:56:22Z 2020-02-15T06:59:53Z +9232 341 2 13059 0.99 2005-08-19T09:42:01Z 2020-02-15T06:59:53Z +9233 341 2 13074 8.99 2005-08-19T10:06:53Z 2020-02-15T06:59:53Z +9234 341 2 13806 4.99 2005-08-20T12:53:46Z 2020-02-15T06:59:53Z +9235 341 2 14344 4.99 2005-08-21T08:40:56Z 2020-02-15T06:59:53Z +9236 341 2 15030 0.99 2005-08-22T09:10:21Z 2020-02-15T06:59:53Z +9237 341 2 15938 6.99 2005-08-23T18:43:31Z 2020-02-15T06:59:53Z +9238 342 2 2190 5.99 2005-06-18T01:29:51Z 2020-02-15T06:59:53Z +9239 342 1 2914 5.99 2005-06-20T03:43:18Z 2020-02-15T06:59:53Z +9240 342 1 3081 2.99 2005-06-20T15:29:13Z 2020-02-15T06:59:53Z +9241 342 1 5617 0.99 2005-07-10T05:28:50Z 2020-02-15T06:59:53Z +9242 342 2 6060 4.99 2005-07-11T04:06:17Z 2020-02-15T06:59:53Z +9243 342 2 6429 8.99 2005-07-12T00:02:50Z 2020-02-15T06:59:53Z +9244 342 1 6736 2.99 2005-07-12T14:16:50Z 2020-02-15T06:59:53Z +9245 342 2 6787 7.99 2005-07-12T16:33:28Z 2020-02-15T06:59:53Z +9246 342 2 6997 0.99 2005-07-27T01:14:02Z 2020-02-15T06:59:53Z +9247 342 2 7280 2.99 2005-07-27T11:50:52Z 2020-02-15T06:59:53Z +9248 342 1 9164 2.99 2005-07-30T11:24:14Z 2020-02-15T06:59:53Z +9249 342 1 9526 0.99 2005-07-31T01:02:22Z 2020-02-15T06:59:53Z +9250 342 2 9948 5.99 2005-07-31T15:49:41Z 2020-02-15T06:59:53Z +9251 342 1 9955 0.99 2005-07-31T16:01:26Z 2020-02-15T06:59:53Z +9252 342 2 9956 4.99 2005-07-31T16:03:47Z 2020-02-15T06:59:53Z +9253 342 1 10242 4.99 2005-08-01T02:18:12Z 2020-02-15T06:59:53Z +9254 342 2 11178 2.99 2005-08-02T10:48:10Z 2020-02-15T06:59:53Z +9255 342 2 11446 0.99 2005-08-02T20:33:37Z 2020-02-15T06:59:53Z +9256 342 1 11568 0.99 2005-08-17T01:30:01Z 2020-02-15T06:59:53Z +9257 342 1 12139 6.99 2005-08-17T23:57:13Z 2020-02-15T06:59:53Z +9258 342 1 12404 4.99 2005-08-18T09:36:34Z 2020-02-15T06:59:53Z +9259 342 1 12522 2.99 2005-08-18T13:45:40Z 2020-02-15T06:59:53Z +9260 342 2 12816 4.99 2005-08-19T01:04:05Z 2020-02-15T06:59:53Z +9261 342 2 13368 4.99 2005-08-19T21:19:35Z 2020-02-15T06:59:53Z +9262 342 2 13637 4.99 2005-08-20T07:21:15Z 2020-02-15T06:59:53Z +9263 342 1 13755 2.99 2005-08-20T11:18:53Z 2020-02-15T06:59:53Z +9264 342 2 13827 4.99 2005-08-20T13:47:19Z 2020-02-15T06:59:53Z +9265 342 2 14096 2.99 2005-08-21T00:27:46Z 2020-02-15T06:59:53Z +9266 342 2 14299 0.99 2005-08-21T07:18:57Z 2020-02-15T06:59:53Z +9267 342 2 14683 8.99 2005-08-21T20:27:44Z 2020-02-15T06:59:53Z +9268 342 1 15484 4.99 2005-08-23T02:04:49Z 2020-02-15T06:59:53Z +9269 342 1 15895 3.99 2005-08-23T17:09:31Z 2020-02-15T06:59:53Z +9270 343 2 102 3.99 2005-05-25T17:22:10Z 2020-02-15T06:59:53Z +9271 343 1 455 3.99 2005-05-27T19:43:29Z 2020-02-15T06:59:53Z +9272 343 2 1547 4.99 2005-06-16T01:42:24Z 2020-02-15T06:59:53Z +9273 343 1 1564 6.99 2005-06-16T02:47:07Z 2020-02-15T06:59:53Z +9274 343 2 1879 0.99 2005-06-17T02:57:34Z 2020-02-15T06:59:53Z +9275 343 2 1922 0.99 2005-06-17T06:04:25Z 2020-02-15T06:59:53Z +9276 343 2 2461 6.99 2005-06-18T19:58:12Z 2020-02-15T06:59:53Z +9277 343 1 2980 8.99 2005-06-20T08:35:03Z 2020-02-15T06:59:53Z +9278 343 1 3407 0.99 2005-06-21T16:14:02Z 2020-02-15T06:59:53Z +9279 343 1 3978 5.99 2005-07-06T23:04:33Z 2020-02-15T06:59:53Z +9280 343 1 4472 7.99 2005-07-08T00:22:06Z 2020-02-15T06:59:53Z +9281 343 2 5097 4.99 2005-07-09T06:09:51Z 2020-02-15T06:59:53Z +9282 343 1 5337 3.99 2005-07-09T17:03:50Z 2020-02-15T06:59:53Z +9283 343 1 7069 6.99 2005-07-27T03:59:35Z 2020-02-15T06:59:53Z +9284 343 2 8012 5.99 2005-07-28T15:29:00Z 2020-02-15T06:59:53Z +9285 343 2 8088 9.99 2005-07-28T18:23:49Z 2020-02-15T06:59:53Z +9286 343 2 9458 5.99 2005-07-30T22:24:34Z 2020-02-15T06:59:53Z +9287 343 2 9739 2.99 2005-07-31T09:08:03Z 2020-02-15T06:59:53Z +9288 343 1 10822 0.99 2005-08-01T22:54:28Z 2020-02-15T06:59:53Z +9289 343 1 11212 0.99 2005-08-02T12:18:29Z 2020-02-15T06:59:53Z +9290 343 2 11570 2.99 2005-08-17T01:34:32Z 2020-02-15T06:59:53Z +9291 343 2 13279 4.99 2005-08-19T18:02:18Z 2020-02-15T06:59:53Z +9292 343 2 13522 3.99 2005-08-20T02:44:06Z 2020-02-15T06:59:53Z +9293 343 2 13866 0.99 2005-08-20T15:05:29Z 2020-02-15T06:59:53Z +9294 343 2 15973 5.99 2005-08-23T20:04:41Z 2020-02-15T06:59:53Z +9295 344 2 157 2.99 2005-05-26T01:25:21Z 2020-02-15T06:59:53Z +9296 344 2 813 5.99 2005-05-29T20:14:34Z 2020-02-15T06:59:53Z +9297 344 1 1341 3.99 2005-06-15T12:26:18Z 2020-02-15T06:59:53Z +9298 344 2 1475 4.99 2005-06-15T21:08:01Z 2020-02-15T06:59:53Z +9299 344 1 1731 0.99 2005-06-16T15:32:12Z 2020-02-15T06:59:53Z +9300 344 2 4028 5.99 2005-07-07T02:19:14Z 2020-02-15T06:59:53Z +9301 344 2 4347 3.99 2005-07-07T18:58:57Z 2020-02-15T06:59:53Z +9302 344 2 6363 5.99 2005-07-11T21:13:19Z 2020-02-15T06:59:53Z +9303 344 2 7480 4.99 2005-07-27T19:19:53Z 2020-02-15T06:59:53Z +9304 344 2 8561 2.99 2005-07-29T11:29:12Z 2020-02-15T06:59:53Z +9305 344 2 9788 4.99 2005-07-31T10:28:21Z 2020-02-15T06:59:53Z +9306 344 2 11116 5.99 2005-08-02T08:34:40Z 2020-02-15T06:59:53Z +9307 344 2 12183 5.99 2005-08-18T01:34:13Z 2020-02-15T06:59:53Z +9308 344 2 13014 4.99 2005-08-19T07:56:08Z 2020-02-15T06:59:53Z +9309 344 1 13033 3.99 2005-08-19T08:34:39Z 2020-02-15T06:59:53Z +9310 344 1 14621 0.99 2005-08-21T18:17:59Z 2020-02-15T06:59:53Z +9311 344 2 14624 0.99 2005-08-21T18:32:42Z 2020-02-15T06:59:53Z +9312 344 1 15215 2.99 2005-08-22T16:55:26Z 2020-02-15T06:59:53Z +9313 345 1 206 0.99 2005-05-26T08:01:54Z 2020-02-15T06:59:53Z +9314 345 1 363 0.99 2005-05-27T07:14:00Z 2020-02-15T06:59:53Z +9315 345 2 1210 0.99 2005-06-15T02:57:51Z 2020-02-15T06:59:53Z +9316 345 1 1457 4.99 2005-06-15T20:05:49Z 2020-02-15T06:59:53Z +9317 345 2 1550 0.99 2005-06-16T01:58:35Z 2020-02-15T06:59:53Z +9318 345 2 2766 4.99 2005-06-19T17:45:15Z 2020-02-15T06:59:53Z +9319 345 2 4422 2.99 2005-07-07T22:09:45Z 2020-02-15T06:59:53Z +9320 345 1 4425 2.99 2005-07-07T22:22:44Z 2020-02-15T06:59:53Z +9321 345 2 4450 4.99 2005-07-07T23:20:05Z 2020-02-15T06:59:53Z +9322 345 2 5508 3.99 2005-07-10T00:50:01Z 2020-02-15T06:59:53Z +9323 345 1 6307 7.99 2005-07-11T18:04:29Z 2020-02-15T06:59:53Z +9324 345 1 7092 6.99 2005-07-27T04:46:00Z 2020-02-15T06:59:53Z +9325 345 2 8129 2.99 2005-07-28T19:47:02Z 2020-02-15T06:59:53Z +9326 345 2 8694 8.99 2005-07-29T16:44:48Z 2020-02-15T06:59:53Z +9327 345 1 9163 4.99 2005-07-30T11:23:22Z 2020-02-15T06:59:53Z +9328 345 2 9207 2.99 2005-07-30T12:49:57Z 2020-02-15T06:59:53Z +9329 345 2 10215 8.99 2005-08-01T01:04:28Z 2020-02-15T06:59:53Z +9330 345 2 10982 4.99 2005-08-02T04:19:11Z 2020-02-15T06:59:53Z +9331 345 1 11865 2.99 2005-08-17T14:03:46Z 2020-02-15T06:59:53Z +9332 345 1 12485 4.99 2005-08-18T12:41:41Z 2020-02-15T06:59:53Z +9333 345 2 12805 4.99 2005-08-19T00:36:34Z 2020-02-15T06:59:53Z +9334 345 1 14702 10.99 2005-08-21T21:00:03Z 2020-02-15T06:59:53Z +9335 345 1 15551 4.99 2005-08-23T04:28:25Z 2020-02-15T06:59:53Z +9336 346 1 65 4.99 2005-05-25T09:32:03Z 2020-02-15T06:59:53Z +9337 346 1 810 4.99 2005-05-29T19:12:04Z 2020-02-15T06:59:53Z +9338 346 1 1994 5.99 2005-06-17T11:07:06Z 2020-02-15T06:59:53Z +9339 346 2 3372 2.99 2005-06-21T13:34:19Z 2020-02-15T06:59:53Z +9340 346 1 3421 2.99 2005-06-21T17:22:58Z 2020-02-15T06:59:53Z +9341 346 2 4420 4.99 2005-07-07T22:07:31Z 2020-02-15T06:59:53Z +9342 346 1 4958 8.99 2005-07-08T23:19:52Z 2020-02-15T06:59:53Z +9343 346 1 5428 4.99 2005-07-09T21:12:50Z 2020-02-15T06:59:53Z +9344 346 2 5557 4.99 2005-07-10T03:10:21Z 2020-02-15T06:59:53Z +9345 346 2 6136 4.99 2005-07-11T08:34:09Z 2020-02-15T06:59:53Z +9346 346 2 6323 2.99 2005-07-11T19:02:19Z 2020-02-15T06:59:53Z +9347 346 2 6881 8.99 2005-07-12T20:46:35Z 2020-02-15T06:59:53Z +9348 346 2 7943 6.99 2005-07-28T12:50:55Z 2020-02-15T06:59:53Z +9349 346 2 8272 5.99 2005-07-29T01:29:51Z 2020-02-15T06:59:53Z +9350 346 1 8505 6.99 2005-07-29T09:22:52Z 2020-02-15T06:59:53Z +9351 346 2 8543 0.99 2005-07-29T11:01:57Z 2020-02-15T06:59:53Z +9352 346 2 8732 8.99 2005-07-29T18:25:03Z 2020-02-15T06:59:53Z +9353 346 2 9566 4.99 2005-07-31T02:32:10Z 2020-02-15T06:59:53Z +9354 346 1 9848 4.99 2005-07-31T12:44:33Z 2020-02-15T06:59:53Z +9355 346 1 9927 2.99 2005-07-31T15:12:13Z 2020-02-15T06:59:53Z +9356 346 1 10304 5.99 2005-08-01T04:14:12Z 2020-02-15T06:59:53Z +9357 346 2 10389 3.99 2005-08-01T06:46:43Z 2020-02-15T06:59:53Z +9358 346 2 10521 0.99 2005-08-01T11:46:17Z 2020-02-15T06:59:53Z +9359 346 2 11062 4.99 2005-08-02T06:52:54Z 2020-02-15T06:59:53Z +9360 346 1 11375 4.99 2005-08-02T18:14:56Z 2020-02-15T06:59:53Z +9361 346 2 11470 2.99 2005-08-02T21:48:28Z 2020-02-15T06:59:53Z +9362 346 1 14890 5.99 2005-08-22T04:10:49Z 2020-02-15T06:59:53Z +9363 346 2 15459 2.99 2005-08-23T01:09:48Z 2020-02-15T06:59:53Z +9364 346 1 15535 0.99 2005-08-23T03:58:02Z 2020-02-15T06:59:53Z +9365 346 1 15661 8.99 2005-08-23T08:52:03Z 2020-02-15T06:59:53Z +9366 346 2 15825 5.99 2005-08-23T15:10:42Z 2020-02-15T06:59:53Z +9367 346 1 15827 0.99 2005-08-23T15:15:19Z 2020-02-15T06:59:53Z +9368 347 2 1711 8.99 2005-06-16T14:11:52Z 2020-02-15T06:59:53Z +9369 347 2 2274 0.99 2005-06-18T06:31:15Z 2020-02-15T06:59:53Z +9370 347 1 3026 4.99 2005-06-20T11:48:00Z 2020-02-15T06:59:53Z +9371 347 1 3092 8.99 2005-06-20T16:04:42Z 2020-02-15T06:59:53Z +9372 347 1 3326 7.99 2005-06-21T09:04:50Z 2020-02-15T06:59:53Z +9373 347 2 3605 0.99 2005-07-06T05:27:15Z 2020-02-15T06:59:53Z +9374 347 2 3666 4.99 2005-07-06T08:27:43Z 2020-02-15T06:59:53Z +9375 347 1 4232 5.99 2005-07-07T12:49:12Z 2020-02-15T06:59:53Z +9376 347 1 4523 6.99 2005-07-08T03:06:59Z 2020-02-15T06:59:53Z +9377 347 2 5471 0.99 2005-07-09T23:11:52Z 2020-02-15T06:59:53Z +9378 347 1 5819 2.99 2005-07-10T15:56:20Z 2020-02-15T06:59:53Z +9379 347 2 6121 1.99 2005-07-11T07:55:27Z 2020-02-15T06:59:53Z +9380 347 1 7811 0.99 2005-07-28T08:06:01Z 2020-02-15T06:59:53Z +9381 347 2 8148 4.99 2005-07-28T20:39:47Z 2020-02-15T06:59:53Z +9382 347 2 8153 4.99 2005-07-28T20:55:49Z 2020-02-15T06:59:53Z +9383 347 2 8176 4.99 2005-07-28T21:42:08Z 2020-02-15T06:59:53Z +9384 347 2 8378 4.99 2005-07-29T05:28:35Z 2020-02-15T06:59:53Z +9385 347 2 8771 2.99 2005-07-29T19:54:41Z 2020-02-15T06:59:53Z +9386 347 1 9013 4.99 2005-07-30T05:19:20Z 2020-02-15T06:59:53Z +9387 347 1 9582 4.99 2005-07-31T03:05:19Z 2020-02-15T06:59:53Z +9388 347 1 9856 3.99 2005-07-31T13:00:35Z 2020-02-15T06:59:53Z +9389 347 1 9876 2.99 2005-07-31T13:37:51Z 2020-02-15T06:59:53Z +9390 347 2 11738 8.99 2005-08-17T08:45:55Z 2020-02-15T06:59:53Z +9391 347 1 12195 2.99 2005-08-18T02:07:49Z 2020-02-15T06:59:53Z +9392 347 2 12399 10.99 2005-08-18T09:13:42Z 2020-02-15T06:59:53Z +9393 347 2 13314 5.99 2005-08-19T19:12:43Z 2020-02-15T06:59:53Z +9394 347 2 14894 4.99 2005-08-22T04:16:56Z 2020-02-15T06:59:53Z +9395 347 2 14958 2.99 2005-08-22T06:30:10Z 2020-02-15T06:59:53Z +9396 347 2 15426 2.99 2005-08-23T00:07:19Z 2020-02-15T06:59:53Z +9397 347 2 15555 4.99 2005-08-23T04:51:52Z 2020-02-15T06:59:53Z +9398 348 2 153 0.99 2005-05-26T00:47:47Z 2020-02-15T06:59:53Z +9399 348 2 821 0.99 2005-05-29T21:31:12Z 2020-02-15T06:59:53Z +9400 348 1 1654 2.99 2005-06-16T09:42:48Z 2020-02-15T06:59:53Z +9401 348 1 2041 8.99 2005-06-17T14:19:00Z 2020-02-15T06:59:53Z +9402 348 2 2499 0.99 2005-06-18T23:01:36Z 2020-02-15T06:59:53Z +9403 348 2 3494 4.99 2005-07-05T23:47:30Z 2020-02-15T06:59:53Z +9404 348 2 3610 4.99 2005-07-06T05:36:59Z 2020-02-15T06:59:53Z +9405 348 2 4556 9.99 2005-07-08T04:48:41Z 2020-02-15T06:59:53Z +9406 348 2 4633 0.99 2005-07-08T08:39:39Z 2020-02-15T06:59:53Z +9407 348 1 4699 0.99 2005-07-08T11:36:56Z 2020-02-15T06:59:53Z +9408 348 1 4807 8.99 2005-07-08T17:01:48Z 2020-02-15T06:59:53Z +9409 348 1 5345 4.99 2005-07-09T17:28:18Z 2020-02-15T06:59:53Z +9410 348 2 5965 0.99 2005-07-10T23:51:52Z 2020-02-15T06:59:53Z +9411 348 2 6776 2.99 2005-07-12T16:02:09Z 2020-02-15T06:59:53Z +9412 348 2 7380 2.99 2005-07-27T15:37:01Z 2020-02-15T06:59:53Z +9413 348 1 7482 6.99 2005-07-27T19:24:16Z 2020-02-15T06:59:53Z +9414 348 2 7825 4.99 2005-07-28T08:34:57Z 2020-02-15T06:59:53Z +9415 348 1 8500 2.99 2005-07-29T09:12:01Z 2020-02-15T06:59:53Z +9416 348 1 8569 4.99 2005-07-29T11:39:17Z 2020-02-15T06:59:53Z +9417 348 2 8682 4.99 2005-07-29T16:15:26Z 2020-02-15T06:59:53Z +9418 348 2 9482 2.99 2005-07-30T23:29:16Z 2020-02-15T06:59:53Z +9419 348 1 10769 2.99 2005-08-01T20:43:02Z 2020-02-15T06:59:53Z +9420 348 2 10972 2.99 2005-08-02T04:08:25Z 2020-02-15T06:59:53Z +9421 348 1 11262 2.99 2005-08-02T13:58:55Z 2020-02-15T06:59:53Z +9422 348 1 11429 7.99 2005-08-02T20:03:52Z 2020-02-15T06:59:53Z +9423 348 2 12564 2.99 2005-08-18T15:11:35Z 2020-02-15T06:59:53Z +9424 348 2 12884 5.99 2005-08-19T03:34:04Z 2020-02-15T06:59:53Z +9425 348 2 12937 4.99 2005-08-19T05:25:30Z 2020-02-15T06:59:53Z +9426 348 2 13238 2.99 2005-08-19T16:20:56Z 2020-02-15T06:59:53Z +9427 348 2 13602 5.99 2005-08-20T06:02:02Z 2020-02-15T06:59:53Z +9428 348 2 13684 0.99 2005-08-20T08:55:53Z 2020-02-15T06:59:53Z +9429 348 1 13962 1.99 2005-08-20T18:18:06Z 2020-02-15T06:59:53Z +9430 348 2 14079 3.99 2005-08-20T23:29:25Z 2020-02-15T06:59:53Z +9431 348 2 14937 7.99 2005-08-22T05:51:59Z 2020-02-15T06:59:53Z +9432 348 2 15817 0.99 2005-08-23T14:59:51Z 2020-02-15T06:59:53Z +9433 348 1 15944 4.99 2005-08-23T18:50:54Z 2020-02-15T06:59:53Z +9434 349 1 890 4.99 2005-05-30T07:43:04Z 2020-02-15T06:59:53Z +9435 349 1 1197 2.99 2005-06-15T01:42:46Z 2020-02-15T06:59:53Z +9436 349 1 1523 0.99 2005-06-16T00:18:40Z 2020-02-15T06:59:53Z +9437 349 2 2987 6.99 2005-06-20T08:55:50Z 2020-02-15T06:59:53Z +9438 349 1 3067 8.99 2005-06-20T13:59:21Z 2020-02-15T06:59:53Z +9439 349 2 3488 3.99 2005-07-05T23:32:49Z 2020-02-15T06:59:53Z +9440 349 1 4190 2.99 2005-07-07T10:52:39Z 2020-02-15T06:59:53Z +9441 349 2 4494 5.99 2005-07-08T01:42:45Z 2020-02-15T06:59:53Z +9442 349 1 4881 0.99 2005-07-08T19:40:34Z 2020-02-15T06:59:53Z +9443 349 1 5433 4.99 2005-07-09T21:22:00Z 2020-02-15T06:59:53Z +9444 349 1 7002 4.99 2005-07-27T01:26:14Z 2020-02-15T06:59:53Z +9445 349 1 7046 4.99 2005-07-27T03:27:56Z 2020-02-15T06:59:53Z +9446 349 2 7702 2.99 2005-07-28T03:56:05Z 2020-02-15T06:59:53Z +9447 349 2 8297 4.99 2005-07-29T02:45:46Z 2020-02-15T06:59:53Z +9448 349 1 9262 1.99 2005-07-30T14:45:02Z 2020-02-15T06:59:53Z +9449 349 1 9670 5.99 2005-07-31T06:33:33Z 2020-02-15T06:59:53Z +9450 349 1 9731 0.99 2005-07-31T08:54:47Z 2020-02-15T06:59:53Z +9451 349 1 10987 4.99 2005-08-02T04:36:52Z 2020-02-15T06:59:53Z +9452 349 2 11192 4.99 2005-08-02T11:29:41Z 2020-02-15T06:59:53Z +9453 349 2 11492 8.99 2005-08-02T22:46:47Z 2020-02-15T06:59:53Z +9454 349 1 11905 3.99 2005-08-17T15:40:18Z 2020-02-15T06:59:53Z +9455 349 1 13258 4.99 2005-08-19T17:05:37Z 2020-02-15T06:59:53Z +9456 349 2 13636 4.99 2005-08-20T07:20:09Z 2020-02-15T06:59:53Z +9457 349 2 14200 6.99 2005-08-21T03:51:27Z 2020-02-15T06:59:53Z +9458 349 2 14721 6.99 2005-08-21T21:50:51Z 2020-02-15T06:59:53Z +9459 349 2 14908 4.99 2005-08-22T04:44:10Z 2020-02-15T06:59:53Z +9460 349 1 15833 6.99 2005-08-23T15:22:15Z 2020-02-15T06:59:53Z +9461 349 1 15955 5.99 2005-08-23T19:19:06Z 2020-02-15T06:59:53Z +9462 349 1 14915 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9463 350 1 24 4.99 2005-05-25T02:53:02Z 2020-02-15T06:59:53Z +9464 350 1 802 4.99 2005-05-29T17:38:59Z 2020-02-15T06:59:53Z +9465 350 2 2011 3.99 2005-06-17T11:56:09Z 2020-02-15T06:59:53Z +9466 350 1 2619 0.99 2005-06-19T08:03:12Z 2020-02-15T06:59:53Z +9467 350 1 3079 2.99 2005-06-20T15:13:40Z 2020-02-15T06:59:53Z +9468 350 2 3206 0.99 2005-06-21T00:39:39Z 2020-02-15T06:59:53Z +9469 350 1 3529 0.99 2005-07-06T01:15:26Z 2020-02-15T06:59:53Z +9470 350 1 3893 5.99 2005-07-06T18:59:31Z 2020-02-15T06:59:53Z +9471 350 1 4767 2.99 2005-07-08T15:18:53Z 2020-02-15T06:59:53Z +9472 350 1 5240 0.99 2005-07-09T13:14:48Z 2020-02-15T06:59:53Z +9473 350 1 5303 2.99 2005-07-09T15:44:09Z 2020-02-15T06:59:53Z +9474 350 1 5786 1.99 2005-07-10T14:06:44Z 2020-02-15T06:59:53Z +9475 350 2 6408 3.99 2005-07-11T23:03:02Z 2020-02-15T06:59:53Z +9476 350 2 7416 4.99 2005-07-27T16:55:25Z 2020-02-15T06:59:53Z +9477 350 2 11504 0.99 2005-08-16T23:16:46Z 2020-02-15T06:59:53Z +9478 350 2 11595 6.99 2005-08-17T02:53:14Z 2020-02-15T06:59:53Z +9479 350 2 11692 6.99 2005-08-17T06:52:41Z 2020-02-15T06:59:53Z +9480 350 1 11800 0.99 2005-08-17T11:29:52Z 2020-02-15T06:59:53Z +9481 350 2 12252 6.99 2005-08-18T03:59:51Z 2020-02-15T06:59:53Z +9482 350 2 12445 2.99 2005-08-18T10:56:20Z 2020-02-15T06:59:53Z +9483 350 2 13086 0.99 2005-08-19T10:32:28Z 2020-02-15T06:59:53Z +9484 350 2 15789 1.99 2005-08-23T13:56:40Z 2020-02-15T06:59:53Z +9485 350 1 15807 0.99 2005-08-23T14:35:10Z 2020-02-15T06:59:53Z +9486 351 1 1137 1.99 2005-05-31T19:20:14Z 2020-02-15T06:59:53Z +9487 351 2 1792 5.99 2005-06-16T20:04:50Z 2020-02-15T06:59:53Z +9488 351 1 1869 0.99 2005-06-17T02:08:00Z 2020-02-15T06:59:53Z +9489 351 1 2759 2.99 2005-06-19T17:10:24Z 2020-02-15T06:59:53Z +9490 351 1 3836 2.99 2005-07-06T16:26:04Z 2020-02-15T06:59:53Z +9491 351 1 4544 0.99 2005-07-08T04:11:04Z 2020-02-15T06:59:53Z +9492 351 1 4756 1.99 2005-07-08T14:24:00Z 2020-02-15T06:59:53Z +9493 351 2 4761 5.99 2005-07-08T14:51:45Z 2020-02-15T06:59:53Z +9494 351 1 5280 0.99 2005-07-09T14:55:07Z 2020-02-15T06:59:53Z +9495 351 1 5912 3.99 2005-07-10T20:58:22Z 2020-02-15T06:59:53Z +9496 351 2 6180 3.99 2005-07-11T11:06:50Z 2020-02-15T06:59:53Z +9497 351 1 6664 4.99 2005-07-12T11:28:22Z 2020-02-15T06:59:53Z +9498 351 2 6777 5.99 2005-07-12T16:04:40Z 2020-02-15T06:59:53Z +9499 351 2 7630 4.99 2005-07-28T01:01:03Z 2020-02-15T06:59:53Z +9500 351 2 8512 4.99 2005-07-29T09:48:03Z 2020-02-15T06:59:53Z +9501 351 1 9707 7.99 2005-07-31T07:44:18Z 2020-02-15T06:59:53Z +9502 351 2 10119 0.99 2005-07-31T21:20:59Z 2020-02-15T06:59:53Z +9503 351 2 10501 2.99 2005-08-01T11:04:46Z 2020-02-15T06:59:53Z +9504 351 2 11127 0.99 2005-08-02T09:00:59Z 2020-02-15T06:59:53Z +9505 351 1 14368 6.99 2005-08-21T09:31:47Z 2020-02-15T06:59:53Z +9506 351 2 15142 4.99 2005-08-22T13:44:32Z 2020-02-15T06:59:53Z +9507 351 1 15664 4.99 2005-08-23T08:57:11Z 2020-02-15T06:59:53Z +9508 351 2 15712 2.99 2005-08-23T10:43:56Z 2020-02-15T06:59:53Z +9509 351 1 15762 2.99 2005-08-23T13:01:43Z 2020-02-15T06:59:53Z +9510 352 1 784 2.99 2005-05-29T14:44:22Z 2020-02-15T06:59:53Z +9511 352 1 1498 0.99 2005-06-15T21:58:00Z 2020-02-15T06:59:53Z +9512 352 1 1649 4.99 2005-06-16T09:20:33Z 2020-02-15T06:59:53Z +9513 352 1 1678 4.99 2005-06-16T11:08:28Z 2020-02-15T06:59:53Z +9514 352 1 1780 4.99 2005-06-16T19:11:45Z 2020-02-15T06:59:53Z +9515 352 2 3331 4.99 2005-06-21T09:37:53Z 2020-02-15T06:59:53Z +9516 352 2 4116 4.99 2005-07-07T06:56:13Z 2020-02-15T06:59:53Z +9517 352 2 6329 5.99 2005-07-11T19:10:38Z 2020-02-15T06:59:53Z +9518 352 1 7033 2.99 2005-07-27T03:03:25Z 2020-02-15T06:59:53Z +9519 352 1 7419 7.99 2005-07-27T17:04:15Z 2020-02-15T06:59:53Z +9520 352 2 7512 6.99 2005-07-27T20:40:40Z 2020-02-15T06:59:53Z +9521 352 1 7579 4.99 2005-07-27T23:06:41Z 2020-02-15T06:59:53Z +9522 352 1 7845 5.99 2005-07-28T09:18:07Z 2020-02-15T06:59:53Z +9523 352 1 7886 2.99 2005-07-28T10:37:55Z 2020-02-15T06:59:53Z +9524 352 1 9463 0.99 2005-07-30T22:30:57Z 2020-02-15T06:59:53Z +9525 352 1 11793 5.99 2005-08-17T11:05:53Z 2020-02-15T06:59:53Z +9526 352 1 11823 6.99 2005-08-17T12:36:37Z 2020-02-15T06:59:53Z +9527 352 2 11986 0.99 2005-08-17T18:21:58Z 2020-02-15T06:59:53Z +9528 352 2 12234 5.99 2005-08-18T03:17:33Z 2020-02-15T06:59:53Z +9529 352 1 12751 2.99 2005-08-18T22:33:22Z 2020-02-15T06:59:53Z +9530 352 1 14130 4.99 2005-08-21T01:43:11Z 2020-02-15T06:59:53Z +9531 352 2 14852 0.99 2005-08-22T02:25:53Z 2020-02-15T06:59:53Z +9532 352 2 13578 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9533 353 2 1103 6.99 2005-05-31T14:24:18Z 2020-02-15T06:59:53Z +9534 353 2 1359 2.99 2005-06-15T13:30:30Z 2020-02-15T06:59:53Z +9535 353 2 1928 7.99 2005-06-17T06:48:31Z 2020-02-15T06:59:53Z +9536 353 2 3233 6.99 2005-06-21T02:39:31Z 2020-02-15T06:59:53Z +9537 353 2 4380 5.99 2005-07-07T20:35:00Z 2020-02-15T06:59:53Z +9538 353 2 6559 1.99 2005-07-12T05:20:35Z 2020-02-15T06:59:53Z +9539 353 1 6610 3.99 2005-07-12T08:20:02Z 2020-02-15T06:59:53Z +9540 353 2 7993 3.99 2005-07-28T14:56:41Z 2020-02-15T06:59:53Z +9541 353 2 10071 2.99 2005-07-31T19:49:35Z 2020-02-15T06:59:53Z +9542 353 1 11186 0.99 2005-08-02T11:12:08Z 2020-02-15T06:59:53Z +9543 353 2 11414 4.99 2005-08-02T19:43:07Z 2020-02-15T06:59:53Z +9544 353 2 11698 4.99 2005-08-17T07:09:59Z 2020-02-15T06:59:53Z +9545 353 1 12928 5.99 2005-08-19T05:04:09Z 2020-02-15T06:59:53Z +9546 353 2 13604 0.99 2005-08-20T06:03:33Z 2020-02-15T06:59:53Z +9547 353 1 14396 4.99 2005-08-21T10:24:54Z 2020-02-15T06:59:53Z +9548 353 1 15564 1.99 2005-08-23T05:10:42Z 2020-02-15T06:59:53Z +9549 353 2 15650 0.99 2005-08-23T08:29:53Z 2020-02-15T06:59:53Z +9550 353 2 15676 2.99 2005-08-23T09:23:08Z 2020-02-15T06:59:53Z +9551 354 1 140 0.99 2005-05-25T23:34:22Z 2020-02-15T06:59:53Z +9552 354 2 158 1.99 2005-05-26T01:27:11Z 2020-02-15T06:59:53Z +9553 354 2 402 0.99 2005-05-27T13:17:18Z 2020-02-15T06:59:53Z +9554 354 1 1491 0.99 2005-06-15T21:48:18Z 2020-02-15T06:59:53Z +9555 354 1 2275 4.99 2005-06-18T06:31:29Z 2020-02-15T06:59:53Z +9556 354 1 2769 6.99 2005-06-19T17:52:14Z 2020-02-15T06:59:53Z +9557 354 1 3139 2.99 2005-06-20T19:44:45Z 2020-02-15T06:59:53Z +9558 354 2 3821 2.99 2005-07-06T15:36:20Z 2020-02-15T06:59:53Z +9559 354 2 4034 0.99 2005-07-07T02:36:33Z 2020-02-15T06:59:53Z +9560 354 1 4449 5.99 2005-07-07T23:18:58Z 2020-02-15T06:59:53Z +9561 354 2 4745 2.99 2005-07-08T13:45:09Z 2020-02-15T06:59:53Z +9562 354 1 5354 4.99 2005-07-09T18:04:33Z 2020-02-15T06:59:53Z +9563 354 2 5556 4.99 2005-07-10T03:10:17Z 2020-02-15T06:59:53Z +9564 354 1 5873 3.99 2005-07-10T19:02:10Z 2020-02-15T06:59:53Z +9565 354 1 6054 0.99 2005-07-11T03:58:39Z 2020-02-15T06:59:53Z +9566 354 1 6838 4.99 2005-07-12T19:01:30Z 2020-02-15T06:59:53Z +9567 354 1 6926 0.99 2005-07-26T22:52:45Z 2020-02-15T06:59:53Z +9568 354 1 6939 5.99 2005-07-26T23:17:51Z 2020-02-15T06:59:53Z +9569 354 2 7148 0.99 2005-07-27T07:04:09Z 2020-02-15T06:59:53Z +9570 354 2 7235 2.99 2005-07-27T10:09:30Z 2020-02-15T06:59:53Z +9571 354 2 7241 0.99 2005-07-27T10:25:49Z 2020-02-15T06:59:53Z +9572 354 2 8321 4.99 2005-07-29T03:50:54Z 2020-02-15T06:59:53Z +9573 354 2 8477 8.99 2005-07-29T08:40:36Z 2020-02-15T06:59:53Z +9574 354 1 8609 4.99 2005-07-29T13:19:25Z 2020-02-15T06:59:53Z +9575 354 2 8921 0.99 2005-07-30T02:04:02Z 2020-02-15T06:59:53Z +9576 354 1 9130 2.99 2005-07-30T09:55:10Z 2020-02-15T06:59:53Z +9577 354 1 10420 6.99 2005-08-01T08:13:53Z 2020-02-15T06:59:53Z +9578 354 2 12243 6.99 2005-08-18T03:38:54Z 2020-02-15T06:59:53Z +9579 354 1 12544 3.99 2005-08-18T14:25:51Z 2020-02-15T06:59:53Z +9580 354 1 12998 4.99 2005-08-19T07:32:16Z 2020-02-15T06:59:53Z +9581 354 2 14212 2.99 2005-08-21T04:29:26Z 2020-02-15T06:59:53Z +9582 354 2 14245 0.99 2005-08-21T05:30:54Z 2020-02-15T06:59:53Z +9583 354 1 14840 5.99 2005-08-22T01:58:42Z 2020-02-15T06:59:53Z +9584 354 2 15956 0.99 2005-08-23T19:19:21Z 2020-02-15T06:59:53Z +9585 354 1 12759 7.98 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9586 354 1 11782 0 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9587 355 1 1110 3.99 2005-05-31T15:22:51Z 2020-02-15T06:59:53Z +9588 355 2 1488 0.99 2005-06-15T21:39:54Z 2020-02-15T06:59:53Z +9589 355 1 1612 2.99 2005-06-16T06:52:05Z 2020-02-15T06:59:53Z +9590 355 1 3567 5.99 2005-07-06T03:09:36Z 2020-02-15T06:59:53Z +9591 355 1 3730 6.99 2005-07-06T11:31:24Z 2020-02-15T06:59:53Z +9592 355 1 5210 4.99 2005-07-09T11:24:19Z 2020-02-15T06:59:53Z +9593 355 1 5564 5.99 2005-07-10T03:23:05Z 2020-02-15T06:59:53Z +9594 355 1 6127 0.99 2005-07-11T08:06:59Z 2020-02-15T06:59:53Z +9595 355 2 6262 6.99 2005-07-11T15:33:24Z 2020-02-15T06:59:53Z +9596 355 1 6437 2.99 2005-07-12T00:20:29Z 2020-02-15T06:59:53Z +9597 355 2 6669 4.99 2005-07-12T11:39:55Z 2020-02-15T06:59:53Z +9598 355 2 7108 4.99 2005-07-27T05:28:32Z 2020-02-15T06:59:53Z +9599 355 2 7477 5.99 2005-07-27T19:11:03Z 2020-02-15T06:59:53Z +9600 355 2 8418 1.99 2005-07-29T06:54:21Z 2020-02-15T06:59:53Z +9601 355 1 10498 0.99 2005-08-01T10:56:48Z 2020-02-15T06:59:53Z +9602 355 2 11471 0.99 2005-08-02T21:49:03Z 2020-02-15T06:59:53Z +9603 355 2 13821 1.99 2005-08-20T13:33:47Z 2020-02-15T06:59:53Z +9604 355 1 15367 3.99 2005-08-22T21:47:53Z 2020-02-15T06:59:53Z +9605 355 2 15531 2.99 2005-08-23T03:52:36Z 2020-02-15T06:59:53Z +9606 355 1 14760 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9607 356 2 1088 4.99 2005-05-31T11:35:13Z 2020-02-15T06:59:53Z +9608 356 1 1410 0.99 2005-06-15T16:59:46Z 2020-02-15T06:59:53Z +9609 356 1 2405 2.99 2005-06-18T16:36:38Z 2020-02-15T06:59:53Z +9610 356 1 2433 4.99 2005-06-18T18:10:17Z 2020-02-15T06:59:53Z +9611 356 2 3829 6.99 2005-07-06T15:59:40Z 2020-02-15T06:59:53Z +9612 356 2 4599 4.99 2005-07-08T06:48:26Z 2020-02-15T06:59:53Z +9613 356 1 5513 0.99 2005-07-10T01:05:41Z 2020-02-15T06:59:53Z +9614 356 1 6593 4.99 2005-07-12T07:21:17Z 2020-02-15T06:59:53Z +9615 356 1 6648 0.99 2005-07-12T10:46:30Z 2020-02-15T06:59:53Z +9616 356 1 7079 2.99 2005-07-27T04:21:58Z 2020-02-15T06:59:53Z +9617 356 1 7758 1.99 2005-07-28T06:23:41Z 2020-02-15T06:59:53Z +9618 356 1 7902 0.99 2005-07-28T11:14:19Z 2020-02-15T06:59:53Z +9619 356 1 8198 3.99 2005-07-28T23:08:05Z 2020-02-15T06:59:53Z +9620 356 1 8975 5.99 2005-07-30T04:10:18Z 2020-02-15T06:59:53Z +9621 356 2 9037 4.99 2005-07-30T06:23:14Z 2020-02-15T06:59:53Z +9622 356 2 9523 3.99 2005-07-31T00:56:09Z 2020-02-15T06:59:53Z +9623 356 2 9883 6.99 2005-07-31T13:53:37Z 2020-02-15T06:59:53Z +9624 356 1 10427 3.99 2005-08-01T08:30:11Z 2020-02-15T06:59:53Z +9625 356 1 10854 4.99 2005-08-02T00:02:06Z 2020-02-15T06:59:53Z +9626 356 1 11535 3.99 2005-08-17T00:39:54Z 2020-02-15T06:59:53Z +9627 356 2 11579 2.99 2005-08-17T01:57:49Z 2020-02-15T06:59:53Z +9628 356 2 12037 4.99 2005-08-17T20:21:35Z 2020-02-15T06:59:53Z +9629 356 2 12876 2.99 2005-08-19T03:12:19Z 2020-02-15T06:59:53Z +9630 356 1 12913 0.99 2005-08-19T04:25:39Z 2020-02-15T06:59:53Z +9631 356 2 13107 4.99 2005-08-19T11:13:58Z 2020-02-15T06:59:53Z +9632 356 2 13442 5.99 2005-08-19T23:50:45Z 2020-02-15T06:59:53Z +9633 356 2 13703 6.99 2005-08-20T09:29:35Z 2020-02-15T06:59:53Z +9634 356 1 15705 4.99 2005-08-23T10:32:52Z 2020-02-15T06:59:53Z +9635 356 2 15754 5.99 2005-08-23T12:43:42Z 2020-02-15T06:59:53Z +9636 356 1 15757 2.99 2005-08-23T12:47:16Z 2020-02-15T06:59:53Z +9637 357 1 144 2.99 2005-05-25T23:49:56Z 2020-02-15T06:59:53Z +9638 357 1 824 4.99 2005-05-29T21:45:32Z 2020-02-15T06:59:53Z +9639 357 2 945 0.99 2005-05-30T15:33:17Z 2020-02-15T06:59:53Z +9640 357 2 1246 5.99 2005-06-15T05:11:19Z 2020-02-15T06:59:53Z +9641 357 1 1788 1.99 2005-06-16T19:47:18Z 2020-02-15T06:59:53Z +9642 357 2 1971 1.99 2005-06-17T09:23:59Z 2020-02-15T06:59:53Z +9643 357 2 2153 6.99 2005-06-17T22:58:04Z 2020-02-15T06:59:53Z +9644 357 1 3865 3.99 2005-07-06T17:46:57Z 2020-02-15T06:59:53Z +9645 357 1 4478 0.99 2005-07-08T00:39:08Z 2020-02-15T06:59:53Z +9646 357 1 5896 0.99 2005-07-10T20:15:56Z 2020-02-15T06:59:53Z +9647 357 1 6288 8.99 2005-07-11T17:01:52Z 2020-02-15T06:59:53Z +9648 357 2 6367 4.99 2005-07-11T21:18:29Z 2020-02-15T06:59:53Z +9649 357 2 6405 2.99 2005-07-11T22:53:12Z 2020-02-15T06:59:53Z +9650 357 1 6839 0.99 2005-07-12T19:03:19Z 2020-02-15T06:59:53Z +9651 357 1 7353 2.99 2005-07-27T14:38:39Z 2020-02-15T06:59:53Z +9652 357 1 7366 5.99 2005-07-27T15:01:17Z 2020-02-15T06:59:53Z +9653 357 2 8041 2.99 2005-07-28T16:39:56Z 2020-02-15T06:59:53Z +9654 357 1 8124 2.99 2005-07-28T19:28:58Z 2020-02-15T06:59:53Z +9655 357 2 9233 3.99 2005-07-30T13:44:15Z 2020-02-15T06:59:53Z +9656 357 2 10391 2.99 2005-08-01T06:49:05Z 2020-02-15T06:59:53Z +9657 357 1 10502 2.99 2005-08-01T11:06:39Z 2020-02-15T06:59:53Z +9658 357 1 10503 6.99 2005-08-01T11:07:44Z 2020-02-15T06:59:53Z +9659 357 2 10764 0.99 2005-08-01T20:32:42Z 2020-02-15T06:59:53Z +9660 357 2 11065 2.99 2005-08-02T06:57:55Z 2020-02-15T06:59:53Z +9661 357 1 14926 0.99 2005-08-22T05:18:44Z 2020-02-15T06:59:53Z +9662 357 2 15869 2.99 2005-08-23T16:22:20Z 2020-02-15T06:59:53Z +9663 358 2 858 4.99 2005-05-30T02:10:32Z 2020-02-15T06:59:53Z +9664 358 1 1455 2.99 2005-06-15T19:51:06Z 2020-02-15T06:59:53Z +9665 358 2 1908 0.99 2005-06-17T05:10:36Z 2020-02-15T06:59:53Z +9666 358 1 2114 5.99 2005-06-17T20:00:25Z 2020-02-15T06:59:53Z +9667 358 1 2721 2.99 2005-06-19T14:53:24Z 2020-02-15T06:59:53Z +9668 358 1 2749 2.99 2005-06-19T16:27:35Z 2020-02-15T06:59:53Z +9669 358 1 3245 2.99 2005-06-21T03:06:11Z 2020-02-15T06:59:53Z +9670 358 1 3753 2.99 2005-07-06T12:34:06Z 2020-02-15T06:59:53Z +9671 358 1 3809 2.99 2005-07-06T15:16:37Z 2020-02-15T06:59:53Z +9672 358 2 5023 5.99 2005-07-09T02:23:16Z 2020-02-15T06:59:53Z +9673 358 1 6362 2.99 2005-07-11T21:09:31Z 2020-02-15T06:59:53Z +9674 358 1 8621 2.99 2005-07-29T13:52:42Z 2020-02-15T06:59:53Z +9675 358 2 9062 0.99 2005-07-30T07:23:17Z 2020-02-15T06:59:53Z +9676 358 1 9568 0.99 2005-07-31T02:37:44Z 2020-02-15T06:59:53Z +9677 358 1 10193 2.99 2005-08-01T00:33:27Z 2020-02-15T06:59:53Z +9678 358 1 10482 4.99 2005-08-01T10:17:47Z 2020-02-15T06:59:53Z +9679 358 2 11149 5.99 2005-08-02T09:51:43Z 2020-02-15T06:59:53Z +9680 358 2 11653 4.99 2005-08-17T05:06:10Z 2020-02-15T06:59:53Z +9681 358 1 12452 6.99 2005-08-18T11:14:35Z 2020-02-15T06:59:53Z +9682 358 1 13197 2.99 2005-08-19T14:44:03Z 2020-02-15T06:59:53Z +9683 358 1 14004 7.99 2005-08-20T20:16:35Z 2020-02-15T06:59:53Z +9684 359 1 284 8.99 2005-05-26T19:21:44Z 2020-02-15T06:59:53Z +9685 359 2 392 2.99 2005-05-27T11:14:42Z 2020-02-15T06:59:53Z +9686 359 1 528 3.99 2005-05-28T04:30:05Z 2020-02-15T06:59:53Z +9687 359 2 1329 4.99 2005-06-15T11:25:06Z 2020-02-15T06:59:53Z +9688 359 2 1770 1.99 2005-06-16T18:07:55Z 2020-02-15T06:59:53Z +9689 359 1 2401 0.99 2005-06-18T16:22:03Z 2020-02-15T06:59:53Z +9690 359 1 2736 4.99 2005-06-19T15:43:20Z 2020-02-15T06:59:53Z +9691 359 2 4830 7.99 2005-07-08T17:56:23Z 2020-02-15T06:59:53Z +9692 359 2 6424 9.99 2005-07-11T23:49:37Z 2020-02-15T06:59:53Z +9693 359 1 6542 2.99 2005-07-12T04:53:49Z 2020-02-15T06:59:53Z +9694 359 2 6741 0.99 2005-07-12T14:24:16Z 2020-02-15T06:59:53Z +9695 359 2 7098 0.99 2005-07-27T05:01:08Z 2020-02-15T06:59:53Z +9696 359 1 7115 0.99 2005-07-27T05:42:58Z 2020-02-15T06:59:53Z +9697 359 1 8174 4.99 2005-07-28T21:36:52Z 2020-02-15T06:59:53Z +9698 359 1 9898 4.99 2005-07-31T14:12:03Z 2020-02-15T06:59:53Z +9699 359 2 10174 5.99 2005-07-31T23:40:08Z 2020-02-15T06:59:53Z +9700 359 1 11032 4.99 2005-08-02T05:53:35Z 2020-02-15T06:59:53Z +9701 359 1 12611 1.99 2005-08-18T17:09:42Z 2020-02-15T06:59:53Z +9702 359 2 13297 2.99 2005-08-19T18:45:49Z 2020-02-15T06:59:53Z +9703 359 1 14258 1.99 2005-08-21T05:56:36Z 2020-02-15T06:59:53Z +9704 359 2 14598 5.99 2005-08-21T17:40:05Z 2020-02-15T06:59:53Z +9705 359 1 15104 2.99 2005-08-22T12:01:16Z 2020-02-15T06:59:53Z +9706 359 1 15148 4.99 2005-08-22T13:59:19Z 2020-02-15T06:59:53Z +9707 359 1 15453 1.99 2005-08-23T01:01:01Z 2020-02-15T06:59:53Z +9708 359 2 15655 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9709 360 1 633 0.99 2005-05-28T17:37:59Z 2020-02-15T06:59:53Z +9710 360 2 777 4.99 2005-05-29T14:07:58Z 2020-02-15T06:59:53Z +9711 360 2 1492 0.99 2005-06-15T21:48:35Z 2020-02-15T06:59:53Z +9712 360 2 2402 6.99 2005-06-18T16:24:45Z 2020-02-15T06:59:53Z +9713 360 2 2541 3.99 2005-06-19T02:08:10Z 2020-02-15T06:59:53Z +9714 360 2 2780 6.99 2005-06-19T18:19:33Z 2020-02-15T06:59:53Z +9715 360 1 4056 4.99 2005-07-07T03:57:36Z 2020-02-15T06:59:53Z +9716 360 1 4487 7.99 2005-07-08T01:20:22Z 2020-02-15T06:59:53Z +9717 360 2 5456 2.99 2005-07-09T22:31:45Z 2020-02-15T06:59:53Z +9718 360 1 5834 1.99 2005-07-10T16:44:12Z 2020-02-15T06:59:53Z +9719 360 1 5995 3.99 2005-07-11T01:15:39Z 2020-02-15T06:59:53Z +9720 360 1 6442 0.99 2005-07-12T00:29:45Z 2020-02-15T06:59:53Z +9721 360 2 6770 5.99 2005-07-12T15:49:40Z 2020-02-15T06:59:53Z +9722 360 1 7251 2.99 2005-07-27T10:44:55Z 2020-02-15T06:59:53Z +9723 360 2 7588 9.99 2005-07-27T23:23:31Z 2020-02-15T06:59:53Z +9724 360 1 7654 4.99 2005-07-28T02:00:14Z 2020-02-15T06:59:53Z +9725 360 2 7908 3.99 2005-07-28T11:32:57Z 2020-02-15T06:59:53Z +9726 360 1 8220 2.99 2005-07-28T23:46:41Z 2020-02-15T06:59:53Z +9727 360 2 8361 2.99 2005-07-29T05:08:57Z 2020-02-15T06:59:53Z +9728 360 1 9283 4.99 2005-07-30T15:25:19Z 2020-02-15T06:59:53Z +9729 360 2 9352 0.99 2005-07-30T18:29:26Z 2020-02-15T06:59:53Z +9730 360 1 9623 2.99 2005-07-31T04:30:02Z 2020-02-15T06:59:53Z +9731 360 2 9659 3.99 2005-07-31T06:02:14Z 2020-02-15T06:59:53Z +9732 360 2 10857 2.99 2005-08-02T00:07:20Z 2020-02-15T06:59:53Z +9733 360 2 11264 6.99 2005-08-02T14:05:18Z 2020-02-15T06:59:53Z +9734 360 2 11553 4.99 2005-08-17T01:04:31Z 2020-02-15T06:59:53Z +9735 360 2 12088 5.99 2005-08-17T22:20:16Z 2020-02-15T06:59:53Z +9736 360 1 12773 5.99 2005-08-18T23:32:19Z 2020-02-15T06:59:53Z +9737 360 2 12795 0.99 2005-08-19T00:21:52Z 2020-02-15T06:59:53Z +9738 360 1 12839 6.99 2005-08-19T01:53:43Z 2020-02-15T06:59:53Z +9739 360 1 12990 4.99 2005-08-19T07:20:39Z 2020-02-15T06:59:53Z +9740 360 2 13894 7.99 2005-08-20T15:55:20Z 2020-02-15T06:59:53Z +9741 360 1 14700 4.99 2005-08-21T20:53:40Z 2020-02-15T06:59:53Z +9742 360 1 15310 2.99 2005-08-22T19:56:41Z 2020-02-15T06:59:53Z +9743 361 1 368 5.99 2005-05-27T07:42:29Z 2020-02-15T06:59:53Z +9744 361 2 1120 4.99 2005-05-31T16:37:14Z 2020-02-15T06:59:53Z +9745 361 2 2353 4.99 2005-06-18T12:53:25Z 2020-02-15T06:59:53Z +9746 361 2 2558 1.99 2005-06-19T03:09:16Z 2020-02-15T06:59:53Z +9747 361 1 2851 2.99 2005-06-19T23:07:03Z 2020-02-15T06:59:53Z +9748 361 2 3303 2.99 2005-06-21T07:34:14Z 2020-02-15T06:59:53Z +9749 361 2 5154 2.99 2005-07-09T08:46:18Z 2020-02-15T06:59:53Z +9750 361 1 6152 0.99 2005-07-11T09:25:52Z 2020-02-15T06:59:53Z +9751 361 2 6829 4.99 2005-07-12T18:38:59Z 2020-02-15T06:59:53Z +9752 361 2 6911 0.99 2005-07-12T22:14:34Z 2020-02-15T06:59:53Z +9753 361 1 6914 1.99 2005-07-12T22:26:56Z 2020-02-15T06:59:53Z +9754 361 1 7538 2.99 2005-07-27T21:38:04Z 2020-02-15T06:59:53Z +9755 361 2 7712 2.99 2005-07-28T04:29:53Z 2020-02-15T06:59:53Z +9756 361 2 8189 4.99 2005-07-28T22:36:26Z 2020-02-15T06:59:53Z +9757 361 1 10145 1.99 2005-07-31T22:15:13Z 2020-02-15T06:59:53Z +9758 361 1 10151 4.99 2005-07-31T22:22:37Z 2020-02-15T06:59:53Z +9759 361 1 10414 0.99 2005-08-01T08:03:55Z 2020-02-15T06:59:53Z +9760 361 2 10975 0.99 2005-08-02T04:11:25Z 2020-02-15T06:59:53Z +9761 361 2 11031 5.99 2005-08-02T05:52:58Z 2020-02-15T06:59:53Z +9762 361 2 11243 5.99 2005-08-02T13:32:48Z 2020-02-15T06:59:53Z +9763 361 1 11327 2.99 2005-08-02T16:40:47Z 2020-02-15T06:59:53Z +9764 361 1 11991 3.99 2005-08-17T18:27:08Z 2020-02-15T06:59:53Z +9765 361 2 12626 5.99 2005-08-18T17:36:45Z 2020-02-15T06:59:53Z +9766 361 2 12690 2.99 2005-08-18T20:06:57Z 2020-02-15T06:59:53Z +9767 361 1 13135 0.99 2005-08-19T12:22:52Z 2020-02-15T06:59:53Z +9768 361 2 14031 0.99 2005-08-20T21:24:24Z 2020-02-15T06:59:53Z +9769 361 1 14422 0.99 2005-08-21T11:21:46Z 2020-02-15T06:59:53Z +9770 361 1 15759 6.99 2005-08-23T12:47:37Z 2020-02-15T06:59:53Z +9771 361 2 15935 2.99 2005-08-23T18:41:11Z 2020-02-15T06:59:53Z +9772 361 1 13298 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9773 361 1 14769 0 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9774 362 2 1035 4.99 2005-05-31T05:01:09Z 2020-02-15T06:59:53Z +9775 362 1 1429 2.99 2005-06-15T18:24:10Z 2020-02-15T06:59:53Z +9776 362 1 1529 2.99 2005-06-16T00:37:35Z 2020-02-15T06:59:53Z +9777 362 1 1615 2.99 2005-06-16T07:00:28Z 2020-02-15T06:59:53Z +9778 362 2 3197 2.99 2005-06-21T00:07:23Z 2020-02-15T06:59:53Z +9779 362 2 3393 2.99 2005-06-21T15:14:27Z 2020-02-15T06:59:53Z +9780 362 2 4646 8.99 2005-07-08T09:23:26Z 2020-02-15T06:59:53Z +9781 362 1 5227 4.99 2005-07-09T12:16:39Z 2020-02-15T06:59:53Z +9782 362 2 5563 1.99 2005-07-10T03:21:02Z 2020-02-15T06:59:53Z +9783 362 2 5690 5.99 2005-07-10T09:26:49Z 2020-02-15T06:59:53Z +9784 362 1 6204 4.99 2005-07-11T12:29:22Z 2020-02-15T06:59:53Z +9785 362 2 6576 4.99 2005-07-12T06:13:41Z 2020-02-15T06:59:53Z +9786 362 1 6981 4.99 2005-07-27T00:51:38Z 2020-02-15T06:59:53Z +9787 362 1 7172 1.99 2005-07-27T07:59:16Z 2020-02-15T06:59:53Z +9788 362 1 7485 2.99 2005-07-27T19:29:09Z 2020-02-15T06:59:53Z +9789 362 1 8081 2.99 2005-07-28T18:06:46Z 2020-02-15T06:59:53Z +9790 362 2 8325 2.99 2005-07-29T03:57:27Z 2020-02-15T06:59:53Z +9791 362 2 8364 4.99 2005-07-29T05:10:31Z 2020-02-15T06:59:53Z +9792 362 1 8662 0.99 2005-07-29T15:31:33Z 2020-02-15T06:59:53Z +9793 362 1 8714 2.99 2005-07-29T17:31:40Z 2020-02-15T06:59:53Z +9794 362 1 9784 4.99 2005-07-31T10:21:32Z 2020-02-15T06:59:53Z +9795 362 2 10546 3.99 2005-08-01T12:44:17Z 2020-02-15T06:59:53Z +9796 362 2 12244 4.99 2005-08-18T03:39:11Z 2020-02-15T06:59:53Z +9797 362 1 12854 6.99 2005-08-19T02:18:51Z 2020-02-15T06:59:53Z +9798 362 1 13603 6.99 2005-08-20T06:02:48Z 2020-02-15T06:59:53Z +9799 362 2 14051 6.99 2005-08-20T22:09:51Z 2020-02-15T06:59:53Z +9800 362 2 14129 2.99 2005-08-21T01:42:15Z 2020-02-15T06:59:53Z +9801 362 2 14336 4.99 2005-08-21T08:33:42Z 2020-02-15T06:59:53Z +9802 362 1 14752 5.99 2005-08-21T23:11:42Z 2020-02-15T06:59:53Z +9803 362 1 14759 11.99 2005-08-21T23:28:58Z 2020-02-15T06:59:53Z +9804 362 1 14808 4.99 2005-08-22T00:58:35Z 2020-02-15T06:59:53Z +9805 362 1 14950 2.99 2005-08-22T06:17:12Z 2020-02-15T06:59:53Z +9806 363 1 733 3.99 2005-05-29T07:35:21Z 2020-02-15T06:59:53Z +9807 363 2 1426 4.99 2005-06-15T18:16:24Z 2020-02-15T06:59:53Z +9808 363 2 1569 4.99 2005-06-16T03:19:09Z 2020-02-15T06:59:53Z +9809 363 1 1847 4.99 2005-06-17T00:05:22Z 2020-02-15T06:59:53Z +9810 363 1 2540 4.99 2005-06-19T02:04:48Z 2020-02-15T06:59:53Z +9811 363 2 3281 2.99 2005-06-21T06:08:47Z 2020-02-15T06:59:53Z +9812 363 1 3726 3.99 2005-07-06T11:15:49Z 2020-02-15T06:59:53Z +9813 363 2 5687 3.99 2005-07-10T09:07:19Z 2020-02-15T06:59:53Z +9814 363 1 5758 6.99 2005-07-10T12:42:43Z 2020-02-15T06:59:53Z +9815 363 2 6140 4.99 2005-07-11T08:40:47Z 2020-02-15T06:59:53Z +9816 363 2 6705 4.99 2005-07-12T12:53:11Z 2020-02-15T06:59:53Z +9817 363 2 6821 2.99 2005-07-12T18:22:10Z 2020-02-15T06:59:53Z +9818 363 2 6878 4.99 2005-07-12T20:37:13Z 2020-02-15T06:59:53Z +9819 363 1 7256 2.99 2005-07-27T10:58:32Z 2020-02-15T06:59:53Z +9820 363 2 7708 4.99 2005-07-28T04:19:15Z 2020-02-15T06:59:53Z +9821 363 2 8121 2.99 2005-07-28T19:25:45Z 2020-02-15T06:59:53Z +9822 363 2 8522 3.99 2005-07-29T10:16:19Z 2020-02-15T06:59:53Z +9823 363 2 8804 2.99 2005-07-29T21:28:19Z 2020-02-15T06:59:53Z +9824 363 2 8841 4.99 2005-07-29T22:56:07Z 2020-02-15T06:59:53Z +9825 363 1 9968 4.99 2005-07-31T16:32:16Z 2020-02-15T06:59:53Z +9826 363 1 9977 8.99 2005-07-31T16:58:42Z 2020-02-15T06:59:53Z +9827 363 1 10339 6.99 2005-08-01T05:05:50Z 2020-02-15T06:59:53Z +9828 363 2 12189 5.99 2005-08-18T01:51:44Z 2020-02-15T06:59:53Z +9829 363 2 12760 4.99 2005-08-18T23:03:19Z 2020-02-15T06:59:53Z +9830 363 1 13706 9.99 2005-08-20T09:32:56Z 2020-02-15T06:59:53Z +9831 363 1 14694 2.99 2005-08-21T20:46:42Z 2020-02-15T06:59:53Z +9832 363 1 14983 5.99 2005-08-22T07:32:23Z 2020-02-15T06:59:53Z +9833 363 2 15279 4.99 2005-08-22T19:08:49Z 2020-02-15T06:59:53Z +9834 363 1 15335 4.99 2005-08-22T20:44:55Z 2020-02-15T06:59:53Z +9835 364 1 462 5.99 2005-05-27T20:10:36Z 2020-02-15T06:59:53Z +9836 364 1 1722 2.99 2005-06-16T15:12:52Z 2020-02-15T06:59:53Z +9837 364 2 2442 2.99 2005-06-18T18:49:18Z 2020-02-15T06:59:53Z +9838 364 2 2606 4.99 2005-06-19T06:51:32Z 2020-02-15T06:59:53Z +9839 364 2 2857 4.99 2005-06-19T23:15:15Z 2020-02-15T06:59:53Z +9840 364 2 2962 3.99 2005-06-20T07:31:55Z 2020-02-15T06:59:53Z +9841 364 1 3678 4.99 2005-07-06T09:15:15Z 2020-02-15T06:59:53Z +9842 364 2 3961 4.99 2005-07-06T22:11:43Z 2020-02-15T06:59:53Z +9843 364 1 4047 0.99 2005-07-07T03:28:49Z 2020-02-15T06:59:53Z +9844 364 2 4689 4.99 2005-07-08T11:03:47Z 2020-02-15T06:59:53Z +9845 364 1 5872 10.99 2005-07-10T18:54:05Z 2020-02-15T06:59:53Z +9846 364 1 7272 2.99 2005-07-27T11:30:20Z 2020-02-15T06:59:53Z +9847 364 2 9266 4.99 2005-07-30T14:59:01Z 2020-02-15T06:59:53Z +9848 364 1 10092 0.99 2005-07-31T20:28:09Z 2020-02-15T06:59:53Z +9849 364 2 10290 5.99 2005-08-01T03:39:50Z 2020-02-15T06:59:53Z +9850 364 2 11932 4.99 2005-08-17T16:36:12Z 2020-02-15T06:59:53Z +9851 364 1 12557 4.99 2005-08-18T14:51:03Z 2020-02-15T06:59:53Z +9852 364 1 12761 1.99 2005-08-18T23:05:22Z 2020-02-15T06:59:53Z +9853 364 2 12912 3.99 2005-08-19T04:24:35Z 2020-02-15T06:59:53Z +9854 364 1 13698 4.99 2005-08-20T09:24:26Z 2020-02-15T06:59:53Z +9855 364 2 13936 0.99 2005-08-20T17:22:35Z 2020-02-15T06:59:53Z +9856 364 2 14293 4.99 2005-08-21T07:06:47Z 2020-02-15T06:59:53Z +9857 364 1 15242 0.99 2005-08-22T17:48:10Z 2020-02-15T06:59:53Z +9858 365 2 120 5.99 2005-05-25T19:37:47Z 2020-02-15T06:59:53Z +9859 365 1 231 4.99 2005-05-26T11:31:59Z 2020-02-15T06:59:53Z +9860 365 1 1303 1.99 2005-06-15T09:55:57Z 2020-02-15T06:59:53Z +9861 365 1 1578 6.99 2005-06-16T04:08:16Z 2020-02-15T06:59:53Z +9862 365 1 1983 4.99 2005-06-17T10:22:13Z 2020-02-15T06:59:53Z +9863 365 1 2525 2.99 2005-06-19T00:48:22Z 2020-02-15T06:59:53Z +9864 365 2 3156 0.99 2005-06-20T21:03:46Z 2020-02-15T06:59:53Z +9865 365 1 4583 1.99 2005-07-08T06:09:44Z 2020-02-15T06:59:53Z +9866 365 1 6604 4.99 2005-07-12T07:57:45Z 2020-02-15T06:59:53Z +9867 365 1 7488 7.99 2005-07-27T19:36:15Z 2020-02-15T06:59:53Z +9868 365 2 7634 4.99 2005-07-28T01:07:01Z 2020-02-15T06:59:53Z +9869 365 1 8168 4.99 2005-07-28T21:28:32Z 2020-02-15T06:59:53Z +9870 365 2 8782 4.99 2005-07-29T20:29:34Z 2020-02-15T06:59:53Z +9871 365 1 8856 3.99 2005-07-29T23:42:00Z 2020-02-15T06:59:53Z +9872 365 1 9122 2.99 2005-07-30T09:36:52Z 2020-02-15T06:59:53Z +9873 365 2 9184 4.99 2005-07-30T12:10:19Z 2020-02-15T06:59:53Z +9874 365 2 9540 2.99 2005-07-31T01:40:06Z 2020-02-15T06:59:53Z +9875 365 2 10717 2.99 2005-08-01T18:53:53Z 2020-02-15T06:59:53Z +9876 365 2 12322 2.99 2005-08-18T06:35:28Z 2020-02-15T06:59:53Z +9877 365 2 12375 4.99 2005-08-18T08:20:08Z 2020-02-15T06:59:53Z +9878 365 1 12804 8.99 2005-08-19T00:33:15Z 2020-02-15T06:59:53Z +9879 365 1 13619 2.99 2005-08-20T06:39:26Z 2020-02-15T06:59:53Z +9880 365 2 14463 6.99 2005-08-21T12:51:49Z 2020-02-15T06:59:53Z +9881 366 2 911 6.99 2005-05-30T10:50:22Z 2020-02-15T06:59:53Z +9882 366 2 1401 1.99 2005-06-15T16:30:22Z 2020-02-15T06:59:53Z +9883 366 2 2214 0.99 2005-06-18T02:44:37Z 2020-02-15T06:59:53Z +9884 366 2 3632 4.99 2005-07-06T06:38:21Z 2020-02-15T06:59:53Z +9885 366 1 3834 2.99 2005-07-06T16:19:56Z 2020-02-15T06:59:53Z +9886 366 2 4276 2.99 2005-07-07T14:50:59Z 2020-02-15T06:59:53Z +9887 366 1 4569 5.99 2005-07-08T05:30:51Z 2020-02-15T06:59:53Z +9888 366 2 5364 0.99 2005-07-09T18:24:48Z 2020-02-15T06:59:53Z +9889 366 1 6112 6.99 2005-07-11T07:28:05Z 2020-02-15T06:59:53Z +9890 366 1 6366 4.99 2005-07-11T21:18:16Z 2020-02-15T06:59:53Z +9891 366 2 6533 6.99 2005-07-12T04:39:38Z 2020-02-15T06:59:53Z +9892 366 2 6738 5.99 2005-07-12T14:17:55Z 2020-02-15T06:59:53Z +9893 366 1 6842 0.99 2005-07-12T19:07:55Z 2020-02-15T06:59:53Z +9894 366 2 6971 4.99 2005-07-27T00:26:17Z 2020-02-15T06:59:53Z +9895 366 1 7344 1.99 2005-07-27T14:29:28Z 2020-02-15T06:59:53Z +9896 366 1 7562 2.99 2005-07-27T22:25:15Z 2020-02-15T06:59:53Z +9897 366 2 7602 4.99 2005-07-27T23:48:35Z 2020-02-15T06:59:53Z +9898 366 1 7805 6.99 2005-07-28T07:56:41Z 2020-02-15T06:59:53Z +9899 366 2 8169 4.99 2005-07-28T21:29:46Z 2020-02-15T06:59:53Z +9900 366 2 8260 1.99 2005-07-29T01:11:00Z 2020-02-15T06:59:53Z +9901 366 2 8928 2.99 2005-07-30T02:18:19Z 2020-02-15T06:59:53Z +9902 366 1 9316 6.99 2005-07-30T17:11:58Z 2020-02-15T06:59:53Z +9903 366 1 10198 2.99 2005-08-01T00:36:15Z 2020-02-15T06:59:53Z +9904 366 1 10384 4.99 2005-08-01T06:39:14Z 2020-02-15T06:59:53Z +9905 366 2 11337 2.99 2005-08-02T16:59:09Z 2020-02-15T06:59:53Z +9906 366 2 11340 5.99 2005-08-02T17:05:43Z 2020-02-15T06:59:53Z +9907 366 2 12413 2.99 2005-08-18T09:50:34Z 2020-02-15T06:59:53Z +9908 366 1 12608 4.99 2005-08-18T17:05:15Z 2020-02-15T06:59:53Z +9909 366 2 13563 0.99 2005-08-20T04:33:31Z 2020-02-15T06:59:53Z +9910 366 1 13857 2.99 2005-08-20T14:50:06Z 2020-02-15T06:59:53Z +9911 366 1 14147 4.99 2005-08-21T02:14:03Z 2020-02-15T06:59:53Z +9912 366 1 14290 4.99 2005-08-21T07:02:59Z 2020-02-15T06:59:53Z +9913 366 1 14390 2.99 2005-08-21T10:15:38Z 2020-02-15T06:59:53Z +9914 366 1 14717 2.99 2005-08-21T21:30:39Z 2020-02-15T06:59:53Z +9915 366 1 14906 6.99 2005-08-22T04:38:18Z 2020-02-15T06:59:53Z +9916 366 1 15514 2.99 2005-08-23T03:03:40Z 2020-02-15T06:59:53Z +9917 366 1 13421 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +9918 367 1 939 0.99 2005-05-30T14:49:34Z 2020-02-15T06:59:53Z +9919 367 1 1089 2.99 2005-05-31T11:38:29Z 2020-02-15T06:59:53Z +9920 367 1 3078 0.99 2005-06-20T15:09:48Z 2020-02-15T06:59:53Z +9921 367 1 4251 8.99 2005-07-07T14:11:55Z 2020-02-15T06:59:53Z +9922 367 2 5490 4.99 2005-07-10T00:09:11Z 2020-02-15T06:59:53Z +9923 367 2 5538 4.99 2005-07-10T02:39:40Z 2020-02-15T06:59:53Z +9924 367 2 5839 2.99 2005-07-10T17:08:30Z 2020-02-15T06:59:53Z +9925 367 2 6228 2.99 2005-07-11T13:58:36Z 2020-02-15T06:59:53Z +9926 367 1 6716 0.99 2005-07-12T13:34:58Z 2020-02-15T06:59:53Z +9927 367 2 6835 5.99 2005-07-12T18:58:03Z 2020-02-15T06:59:53Z +9928 367 2 8490 0.99 2005-07-29T08:59:25Z 2020-02-15T06:59:53Z +9929 367 1 9030 3.99 2005-07-30T06:05:38Z 2020-02-15T06:59:53Z +9930 367 1 9430 4.99 2005-07-30T21:20:13Z 2020-02-15T06:59:53Z +9931 367 1 9912 4.99 2005-07-31T14:49:04Z 2020-02-15T06:59:53Z +9932 367 2 10344 4.99 2005-08-01T05:18:23Z 2020-02-15T06:59:53Z +9933 367 1 12152 4.99 2005-08-18T00:21:35Z 2020-02-15T06:59:53Z +9934 367 2 12362 0.99 2005-08-18T07:48:05Z 2020-02-15T06:59:53Z +9935 367 2 12373 8.99 2005-08-18T08:07:25Z 2020-02-15T06:59:53Z +9936 367 2 12911 6.99 2005-08-19T04:24:10Z 2020-02-15T06:59:53Z +9937 367 2 13235 4.99 2005-08-19T16:17:53Z 2020-02-15T06:59:53Z +9938 367 1 14413 6.99 2005-08-21T11:06:33Z 2020-02-15T06:59:53Z +9939 367 1 14481 10.99 2005-08-21T13:41:14Z 2020-02-15T06:59:53Z +9940 368 1 64 5.99 2005-05-25T09:21:29Z 2020-02-15T06:59:53Z +9941 368 1 125 5.99 2005-05-25T20:48:50Z 2020-02-15T06:59:53Z +9942 368 1 836 2.99 2005-05-29T23:56:42Z 2020-02-15T06:59:53Z +9943 368 1 949 2.99 2005-05-30T15:50:39Z 2020-02-15T06:59:53Z +9944 368 1 1186 0.99 2005-06-15T00:56:45Z 2020-02-15T06:59:53Z +9945 368 1 1513 9.99 2005-06-15T22:53:30Z 2020-02-15T06:59:53Z +9946 368 1 2531 4.99 2005-06-19T01:20:49Z 2020-02-15T06:59:53Z +9947 368 1 2694 4.99 2005-06-19T13:17:21Z 2020-02-15T06:59:53Z +9948 368 1 2744 4.99 2005-06-19T16:20:40Z 2020-02-15T06:59:53Z +9949 368 2 3275 4.99 2005-06-21T05:33:04Z 2020-02-15T06:59:53Z +9950 368 2 3608 4.99 2005-07-06T05:35:39Z 2020-02-15T06:59:53Z +9951 368 2 4066 0.99 2005-07-07T04:34:09Z 2020-02-15T06:59:53Z +9952 368 1 4584 0.99 2005-07-08T06:11:02Z 2020-02-15T06:59:53Z +9953 368 2 4913 8.99 2005-07-08T21:27:48Z 2020-02-15T06:59:53Z +9954 368 1 6124 4.99 2005-07-11T08:02:32Z 2020-02-15T06:59:53Z +9955 368 1 6154 5.99 2005-07-11T09:32:19Z 2020-02-15T06:59:53Z +9956 368 1 6681 2.99 2005-07-12T12:04:12Z 2020-02-15T06:59:53Z +9957 368 2 7571 4.99 2005-07-27T22:43:42Z 2020-02-15T06:59:53Z +9958 368 1 8045 0.99 2005-07-28T16:49:38Z 2020-02-15T06:59:53Z +9959 368 2 8226 2.99 2005-07-29T00:01:04Z 2020-02-15T06:59:53Z +9960 368 1 9400 5.99 2005-07-30T20:15:58Z 2020-02-15T06:59:53Z +9961 368 1 9833 6.99 2005-07-31T12:05:01Z 2020-02-15T06:59:53Z +9962 368 2 10730 8.99 2005-08-01T19:21:42Z 2020-02-15T06:59:53Z +9963 368 2 10848 1.99 2005-08-01T23:50:22Z 2020-02-15T06:59:53Z +9964 368 1 11844 0.99 2005-08-17T13:16:04Z 2020-02-15T06:59:53Z +9965 368 2 12319 2.99 2005-08-18T06:26:45Z 2020-02-15T06:59:53Z +9966 368 1 12796 4.99 2005-08-19T00:22:24Z 2020-02-15T06:59:53Z +9967 368 2 13189 8.99 2005-08-19T14:27:16Z 2020-02-15T06:59:53Z +9968 368 2 13280 2.99 2005-08-19T18:02:51Z 2020-02-15T06:59:53Z +9969 368 2 13378 0.99 2005-08-19T21:33:35Z 2020-02-15T06:59:53Z +9970 368 2 13781 7.99 2005-08-20T12:06:45Z 2020-02-15T06:59:53Z +9971 368 2 13963 1.99 2005-08-20T18:20:18Z 2020-02-15T06:59:53Z +9972 368 1 14393 7.99 2005-08-21T10:22:51Z 2020-02-15T06:59:53Z +9973 368 1 15353 2.99 2005-08-22T21:18:08Z 2020-02-15T06:59:53Z +9974 368 1 15437 2.99 2005-08-23T00:31:09Z 2020-02-15T06:59:53Z +9975 369 1 31 4.99 2005-05-25T04:05:17Z 2020-02-15T06:59:53Z +9976 369 1 294 4.99 2005-05-26T20:29:57Z 2020-02-15T06:59:53Z +9977 369 2 854 0.99 2005-05-30T01:56:11Z 2020-02-15T06:59:53Z +9978 369 2 913 7.99 2005-05-30T11:04:58Z 2020-02-15T06:59:53Z +9979 369 1 1224 0.99 2005-06-15T03:44:25Z 2020-02-15T06:59:53Z +9980 369 1 3490 6.99 2005-07-05T23:37:13Z 2020-02-15T06:59:53Z +9981 369 2 3903 2.99 2005-07-06T19:27:32Z 2020-02-15T06:59:53Z +9982 369 2 4859 4.99 2005-07-08T18:54:04Z 2020-02-15T06:59:53Z +9983 369 1 5043 1.99 2005-07-09T03:25:18Z 2020-02-15T06:59:53Z +9984 369 2 5496 7.99 2005-07-10T00:20:23Z 2020-02-15T06:59:53Z +9985 369 2 5561 2.99 2005-07-10T03:15:24Z 2020-02-15T06:59:53Z +9986 369 1 8236 2.99 2005-07-29T00:27:04Z 2020-02-15T06:59:53Z +9987 369 2 8826 2.99 2005-07-29T22:30:16Z 2020-02-15T06:59:53Z +9988 369 2 9032 4.99 2005-07-30T06:06:54Z 2020-02-15T06:59:53Z +9989 369 1 9089 0.99 2005-07-30T08:23:39Z 2020-02-15T06:59:53Z +9990 369 2 9543 0.99 2005-07-31T01:43:34Z 2020-02-15T06:59:53Z +9991 369 1 9973 4.99 2005-07-31T16:49:31Z 2020-02-15T06:59:53Z +9992 369 1 10299 0.99 2005-08-01T04:08:04Z 2020-02-15T06:59:53Z +9993 369 2 10359 3.99 2005-08-01T05:52:21Z 2020-02-15T06:59:53Z +9994 369 2 10713 2.99 2005-08-01T18:50:05Z 2020-02-15T06:59:53Z +9995 369 1 11084 4.99 2005-08-02T07:34:19Z 2020-02-15T06:59:53Z +9996 369 2 11388 1.99 2005-08-02T18:35:55Z 2020-02-15T06:59:53Z +9997 369 1 12521 0.99 2005-08-18T13:43:07Z 2020-02-15T06:59:53Z +9998 369 2 14684 5.99 2005-08-21T20:28:26Z 2020-02-15T06:59:53Z +9999 369 1 13898 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10000 370 2 1190 6.99 2005-06-15T01:05:32Z 2020-02-15T06:59:53Z +10001 370 2 4400 7.99 2005-07-07T21:22:26Z 2020-02-15T06:59:53Z +10002 370 2 6714 0.99 2005-07-12T13:29:06Z 2020-02-15T06:59:53Z +10003 370 1 6968 0.99 2005-07-27T00:16:45Z 2020-02-15T06:59:53Z +10004 370 2 7152 7.99 2005-07-27T07:15:01Z 2020-02-15T06:59:53Z +10005 370 1 7226 6.99 2005-07-27T09:47:53Z 2020-02-15T06:59:53Z +10006 370 2 7797 0.99 2005-07-28T07:41:07Z 2020-02-15T06:59:53Z +10007 370 2 8258 0.99 2005-07-29T01:03:42Z 2020-02-15T06:59:53Z +10008 370 2 10095 0.99 2005-07-31T20:38:35Z 2020-02-15T06:59:53Z +10009 370 1 10336 4.99 2005-08-01T04:59:53Z 2020-02-15T06:59:53Z +10010 370 1 11540 1.99 2005-08-17T00:48:03Z 2020-02-15T06:59:53Z +10011 370 2 11925 0.99 2005-08-17T16:23:04Z 2020-02-15T06:59:53Z +10012 370 1 12339 4.99 2005-08-18T07:05:06Z 2020-02-15T06:59:53Z +10013 370 1 13039 0.99 2005-08-19T08:55:19Z 2020-02-15T06:59:53Z +10014 370 1 14602 3.99 2005-08-21T17:48:49Z 2020-02-15T06:59:53Z +10015 370 2 14786 2.99 2005-08-22T00:24:42Z 2020-02-15T06:59:53Z +10016 370 2 15368 3.99 2005-08-22T21:57:15Z 2020-02-15T06:59:53Z +10017 370 1 15626 4.99 2005-08-23T07:25:34Z 2020-02-15T06:59:53Z +10018 370 1 15982 5.99 2005-08-23T20:13:31Z 2020-02-15T06:59:53Z +10019 371 1 26 3.99 2005-05-25T03:36:50Z 2020-02-15T06:59:53Z +10020 371 2 286 6.99 2005-05-26T19:44:51Z 2020-02-15T06:59:53Z +10021 371 2 381 4.99 2005-05-27T09:43:25Z 2020-02-15T06:59:53Z +10022 371 1 384 5.99 2005-05-27T10:18:20Z 2020-02-15T06:59:53Z +10023 371 1 825 0.99 2005-05-29T21:49:41Z 2020-02-15T06:59:53Z +10024 371 1 829 2.99 2005-05-29T22:16:42Z 2020-02-15T06:59:53Z +10025 371 2 1212 2.99 2005-06-15T03:03:33Z 2020-02-15T06:59:53Z +10026 371 1 1218 1.99 2005-06-15T03:24:44Z 2020-02-15T06:59:53Z +10027 371 1 1573 6.99 2005-06-16T03:31:39Z 2020-02-15T06:59:53Z +10028 371 2 1675 5.99 2005-06-16T11:04:47Z 2020-02-15T06:59:53Z +10029 371 2 2837 0.99 2005-06-19T22:03:50Z 2020-02-15T06:59:53Z +10030 371 1 3176 3.99 2005-06-20T22:31:54Z 2020-02-15T06:59:53Z +10031 371 2 3396 0.99 2005-06-21T15:23:08Z 2020-02-15T06:59:53Z +10032 371 2 4115 8.99 2005-07-07T06:52:23Z 2020-02-15T06:59:53Z +10033 371 1 4612 1.99 2005-07-08T07:40:44Z 2020-02-15T06:59:53Z +10034 371 1 5171 4.99 2005-07-09T09:26:55Z 2020-02-15T06:59:53Z +10035 371 2 5614 0.99 2005-07-10T05:16:56Z 2020-02-15T06:59:53Z +10036 371 1 6000 2.99 2005-07-11T01:23:06Z 2020-02-15T06:59:53Z +10037 371 1 6460 1.99 2005-07-12T01:13:44Z 2020-02-15T06:59:53Z +10038 371 1 6922 0.99 2005-07-12T22:39:48Z 2020-02-15T06:59:53Z +10039 371 1 7408 3.99 2005-07-27T16:31:40Z 2020-02-15T06:59:53Z +10040 371 1 8138 4.99 2005-07-28T20:12:17Z 2020-02-15T06:59:53Z +10041 371 1 9008 4.99 2005-07-30T05:10:26Z 2020-02-15T06:59:53Z +10042 371 1 9117 8.99 2005-07-30T09:20:59Z 2020-02-15T06:59:53Z +10043 371 1 9635 0.99 2005-07-31T05:12:27Z 2020-02-15T06:59:53Z +10044 371 1 11086 10.99 2005-08-02T07:38:44Z 2020-02-15T06:59:53Z +10045 371 2 12397 9.99 2005-08-18T09:12:52Z 2020-02-15T06:59:53Z +10046 371 2 12584 7.99 2005-08-18T15:51:36Z 2020-02-15T06:59:53Z +10047 371 1 13028 2.99 2005-08-19T08:27:23Z 2020-02-15T06:59:53Z +10048 371 2 13143 3.99 2005-08-19T12:44:38Z 2020-02-15T06:59:53Z +10049 371 1 13191 4.99 2005-08-19T14:28:48Z 2020-02-15T06:59:53Z +10050 371 2 13953 4.99 2005-08-20T18:00:37Z 2020-02-15T06:59:53Z +10051 371 1 14384 2.99 2005-08-21T10:02:37Z 2020-02-15T06:59:53Z +10052 371 1 15786 0.99 2005-08-23T13:48:34Z 2020-02-15T06:59:53Z +10053 371 1 15824 2.99 2005-08-23T15:09:17Z 2020-02-15T06:59:53Z +10054 372 1 617 2.99 2005-05-28T15:49:14Z 2020-02-15T06:59:53Z +10055 372 1 638 2.99 2005-05-28T18:24:43Z 2020-02-15T06:59:53Z +10056 372 1 2315 2.99 2005-06-18T09:03:39Z 2020-02-15T06:59:53Z +10057 372 1 2959 4.99 2005-06-20T07:07:54Z 2020-02-15T06:59:53Z +10058 372 1 3283 3.99 2005-06-21T06:19:07Z 2020-02-15T06:59:53Z +10059 372 1 5229 4.99 2005-07-09T12:30:18Z 2020-02-15T06:59:53Z +10060 372 1 5314 2.99 2005-07-09T16:05:28Z 2020-02-15T06:59:53Z +10061 372 1 5352 2.99 2005-07-09T17:54:58Z 2020-02-15T06:59:53Z +10062 372 1 5501 6.99 2005-07-10T00:33:48Z 2020-02-15T06:59:53Z +10063 372 2 5914 7.99 2005-07-10T21:01:12Z 2020-02-15T06:59:53Z +10064 372 2 6692 4.99 2005-07-12T12:35:39Z 2020-02-15T06:59:53Z +10065 372 1 7190 4.99 2005-07-27T08:36:01Z 2020-02-15T06:59:53Z +10066 372 2 7234 5.99 2005-07-27T10:08:45Z 2020-02-15T06:59:53Z +10067 372 2 7735 4.99 2005-07-28T05:09:56Z 2020-02-15T06:59:53Z +10068 372 2 8009 7.99 2005-07-28T15:25:58Z 2020-02-15T06:59:53Z +10069 372 1 8059 2.99 2005-07-28T17:09:59Z 2020-02-15T06:59:53Z +10070 372 1 8358 0.99 2005-07-29T05:00:58Z 2020-02-15T06:59:53Z +10071 372 1 8724 0.99 2005-07-29T18:05:21Z 2020-02-15T06:59:53Z +10072 372 1 8755 2.99 2005-07-29T19:18:31Z 2020-02-15T06:59:53Z +10073 372 2 8837 8.99 2005-07-29T22:49:00Z 2020-02-15T06:59:53Z +10074 372 1 9128 5.99 2005-07-30T09:51:14Z 2020-02-15T06:59:53Z +10075 372 2 11134 10.99 2005-08-02T09:19:22Z 2020-02-15T06:59:53Z +10076 372 2 11438 3.99 2005-08-02T20:21:08Z 2020-02-15T06:59:53Z +10077 372 2 11555 4.99 2005-08-17T01:08:59Z 2020-02-15T06:59:53Z +10078 372 1 12224 0.99 2005-08-18T02:59:09Z 2020-02-15T06:59:53Z +10079 372 1 12714 3.99 2005-08-18T21:08:01Z 2020-02-15T06:59:53Z +10080 372 2 13402 4.99 2005-08-19T22:16:53Z 2020-02-15T06:59:53Z +10081 372 2 13871 8.99 2005-08-20T15:10:13Z 2020-02-15T06:59:53Z +10082 372 2 14037 9.99 2005-08-20T21:35:58Z 2020-02-15T06:59:53Z +10083 372 1 14211 4.99 2005-08-21T04:29:11Z 2020-02-15T06:59:53Z +10084 372 1 14331 2.99 2005-08-21T08:29:38Z 2020-02-15T06:59:53Z +10085 372 1 14770 1.99 2005-08-21T23:47:16Z 2020-02-15T06:59:53Z +10086 372 2 15041 0.99 2005-08-22T09:43:18Z 2020-02-15T06:59:53Z +10087 372 1 15563 2.99 2005-08-23T05:08:58Z 2020-02-15T06:59:53Z +10088 373 2 257 4.99 2005-05-26T15:27:05Z 2020-02-15T06:59:53Z +10089 373 1 1472 6.99 2005-06-15T20:54:55Z 2020-02-15T06:59:53Z +10090 373 1 3161 2.99 2005-06-20T21:21:01Z 2020-02-15T06:59:53Z +10091 373 2 3609 2.99 2005-07-06T05:36:22Z 2020-02-15T06:59:53Z +10092 373 2 3667 4.99 2005-07-06T08:36:34Z 2020-02-15T06:59:53Z +10093 373 1 4325 7.99 2005-07-07T17:59:24Z 2020-02-15T06:59:53Z +10094 373 1 5120 5.99 2005-07-09T07:14:23Z 2020-02-15T06:59:53Z +10095 373 1 6202 3.99 2005-07-11T12:24:25Z 2020-02-15T06:59:53Z +10096 373 2 6311 0.99 2005-07-11T18:18:52Z 2020-02-15T06:59:53Z +10097 373 1 6944 4.99 2005-07-26T23:34:02Z 2020-02-15T06:59:53Z +10098 373 1 7094 0.99 2005-07-27T04:47:33Z 2020-02-15T06:59:53Z +10099 373 2 7206 3.99 2005-07-27T09:07:05Z 2020-02-15T06:59:53Z +10100 373 1 7615 0.99 2005-07-28T00:15:24Z 2020-02-15T06:59:53Z +10101 373 1 8611 3.99 2005-07-29T13:26:21Z 2020-02-15T06:59:53Z +10102 373 2 9327 8.99 2005-07-30T17:31:03Z 2020-02-15T06:59:53Z +10103 373 1 9397 4.99 2005-07-30T20:07:29Z 2020-02-15T06:59:53Z +10104 373 2 9480 0.99 2005-07-30T23:26:03Z 2020-02-15T06:59:53Z +10105 373 1 9966 4.99 2005-07-31T16:26:46Z 2020-02-15T06:59:53Z +10106 373 1 10010 6.99 2005-07-31T18:01:36Z 2020-02-15T06:59:53Z +10107 373 1 10221 4.99 2005-08-01T01:16:50Z 2020-02-15T06:59:53Z +10108 373 1 10758 5.99 2005-08-01T20:22:51Z 2020-02-15T06:59:53Z +10109 373 2 11066 7.99 2005-08-02T06:58:32Z 2020-02-15T06:59:53Z +10110 373 2 11512 7.99 2005-08-16T23:51:06Z 2020-02-15T06:59:53Z +10111 373 2 11663 3.99 2005-08-17T05:30:19Z 2020-02-15T06:59:53Z +10112 373 2 11976 3.99 2005-08-17T17:59:19Z 2020-02-15T06:59:53Z +10113 373 1 12142 5.99 2005-08-18T00:04:12Z 2020-02-15T06:59:53Z +10114 373 2 12536 5.99 2005-08-18T14:06:06Z 2020-02-15T06:59:53Z +10115 373 1 12748 7.99 2005-08-18T22:29:05Z 2020-02-15T06:59:53Z +10116 373 2 12780 0.99 2005-08-18T23:48:16Z 2020-02-15T06:59:53Z +10117 373 2 13299 2.99 2005-08-19T18:46:33Z 2020-02-15T06:59:53Z +10118 373 1 13329 3.99 2005-08-19T19:56:55Z 2020-02-15T06:59:53Z +10119 373 2 13467 2.99 2005-08-20T00:56:44Z 2020-02-15T06:59:53Z +10120 373 2 15014 6.99 2005-08-22T08:43:11Z 2020-02-15T06:59:53Z +10121 373 1 15068 3.99 2005-08-22T10:50:13Z 2020-02-15T06:59:53Z +10122 373 1 11739 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10123 374 1 521 0.99 2005-05-28T03:32:22Z 2020-02-15T06:59:53Z +10124 374 2 910 2.99 2005-05-30T10:46:16Z 2020-02-15T06:59:53Z +10125 374 2 919 0.99 2005-05-30T11:35:06Z 2020-02-15T06:59:53Z +10126 374 1 1548 1.99 2005-06-16T01:43:33Z 2020-02-15T06:59:53Z +10127 374 2 2046 1.99 2005-06-17T14:39:50Z 2020-02-15T06:59:53Z +10128 374 2 2487 4.99 2005-06-18T21:32:54Z 2020-02-15T06:59:53Z +10129 374 2 2641 2.99 2005-06-19T09:38:33Z 2020-02-15T06:59:53Z +10130 374 1 3797 1.99 2005-07-06T14:54:52Z 2020-02-15T06:59:53Z +10131 374 1 5463 4.99 2005-07-09T22:57:02Z 2020-02-15T06:59:53Z +10132 374 1 5570 6.99 2005-07-10T03:46:47Z 2020-02-15T06:59:53Z +10133 374 2 5591 3.99 2005-07-10T04:25:03Z 2020-02-15T06:59:53Z +10134 374 2 5945 2.99 2005-07-10T22:52:42Z 2020-02-15T06:59:53Z +10135 374 2 6315 0.99 2005-07-11T18:42:49Z 2020-02-15T06:59:53Z +10136 374 2 7837 0.99 2005-07-28T08:58:32Z 2020-02-15T06:59:53Z +10137 374 2 8586 7.99 2005-07-29T12:16:34Z 2020-02-15T06:59:53Z +10138 374 2 9113 0.99 2005-07-30T09:09:03Z 2020-02-15T06:59:53Z +10139 374 1 9866 6.99 2005-07-31T13:13:50Z 2020-02-15T06:59:53Z +10140 374 1 10695 2.99 2005-08-01T18:16:20Z 2020-02-15T06:59:53Z +10141 374 1 11619 0.99 2005-08-17T04:03:26Z 2020-02-15T06:59:53Z +10142 374 2 12696 2.99 2005-08-18T20:13:08Z 2020-02-15T06:59:53Z +10143 374 1 13337 2.99 2005-08-19T20:06:57Z 2020-02-15T06:59:53Z +10144 374 2 13734 4.99 2005-08-20T10:29:57Z 2020-02-15T06:59:53Z +10145 374 2 14524 8.99 2005-08-21T15:05:27Z 2020-02-15T06:59:53Z +10146 374 2 15053 5.99 2005-08-22T10:13:09Z 2020-02-15T06:59:53Z +10147 374 1 15200 2.99 2005-08-22T16:22:53Z 2020-02-15T06:59:53Z +10148 374 2 15202 4.99 2005-08-22T16:26:53Z 2020-02-15T06:59:53Z +10149 374 2 15366 6.99 2005-08-22T21:45:57Z 2020-02-15T06:59:53Z +10150 374 2 15966 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10151 375 2 307 8.99 2005-05-26T21:48:13Z 2020-02-15T06:59:53Z +10152 375 1 412 4.99 2005-05-27T14:17:23Z 2020-02-15T06:59:53Z +10153 375 2 749 4.99 2005-05-29T09:33:33Z 2020-02-15T06:59:53Z +10154 375 1 873 2.99 2005-05-30T05:15:20Z 2020-02-15T06:59:53Z +10155 375 2 1404 2.99 2005-06-15T16:38:53Z 2020-02-15T06:59:53Z +10156 375 1 1499 5.99 2005-06-15T21:58:07Z 2020-02-15T06:59:53Z +10157 375 1 2236 4.99 2005-06-18T04:12:33Z 2020-02-15T06:59:53Z +10158 375 1 3981 6.99 2005-07-06T23:12:12Z 2020-02-15T06:59:53Z +10159 375 2 4335 4.99 2005-07-07T18:33:57Z 2020-02-15T06:59:53Z +10160 375 2 5474 2.99 2005-07-09T23:23:57Z 2020-02-15T06:59:53Z +10161 375 1 7856 4.99 2005-07-28T09:48:24Z 2020-02-15T06:59:53Z +10162 375 2 8900 2.99 2005-07-30T01:07:03Z 2020-02-15T06:59:53Z +10163 375 1 10274 0.99 2005-08-01T03:16:51Z 2020-02-15T06:59:53Z +10164 375 2 10589 1.99 2005-08-01T14:11:09Z 2020-02-15T06:59:53Z +10165 375 1 10640 0.99 2005-08-01T15:44:51Z 2020-02-15T06:59:53Z +10166 375 1 10672 4.99 2005-08-01T17:10:54Z 2020-02-15T06:59:53Z +10167 375 1 10859 5.99 2005-08-02T00:11:39Z 2020-02-15T06:59:53Z +10168 375 1 10961 6.99 2005-08-02T03:47:55Z 2020-02-15T06:59:53Z +10169 375 2 11008 5.99 2005-08-02T05:06:17Z 2020-02-15T06:59:53Z +10170 375 2 12122 9.99 2005-08-17T23:20:45Z 2020-02-15T06:59:53Z +10171 375 2 12663 0.99 2005-08-18T19:10:52Z 2020-02-15T06:59:53Z +10172 375 1 13836 4.99 2005-08-20T14:18:16Z 2020-02-15T06:59:53Z +10173 375 1 15004 2.99 2005-08-22T08:15:21Z 2020-02-15T06:59:53Z +10174 375 1 15505 4.99 2005-08-23T02:46:13Z 2020-02-15T06:59:53Z +10175 376 1 554 0.99 2005-05-28T08:23:16Z 2020-02-15T06:59:53Z +10176 376 2 1208 0.99 2005-06-15T02:30:03Z 2020-02-15T06:59:53Z +10177 376 1 2779 0.99 2005-06-19T18:19:07Z 2020-02-15T06:59:53Z +10178 376 2 3719 2.99 2005-07-06T11:05:55Z 2020-02-15T06:59:53Z +10179 376 1 4163 0.99 2005-07-07T09:19:28Z 2020-02-15T06:59:53Z +10180 376 2 4166 8.99 2005-07-07T09:33:30Z 2020-02-15T06:59:53Z +10181 376 1 4320 3.99 2005-07-07T17:51:59Z 2020-02-15T06:59:53Z +10182 376 1 4554 5.99 2005-07-08T04:48:03Z 2020-02-15T06:59:53Z +10183 376 1 4869 4.99 2005-07-08T19:14:05Z 2020-02-15T06:59:53Z +10184 376 1 5675 4.99 2005-07-10T08:31:06Z 2020-02-15T06:59:53Z +10185 376 1 6524 6.99 2005-07-12T04:14:35Z 2020-02-15T06:59:53Z +10186 376 1 6545 8.99 2005-07-12T04:56:30Z 2020-02-15T06:59:53Z +10187 376 2 6807 2.99 2005-07-12T17:33:53Z 2020-02-15T06:59:53Z +10188 376 1 8269 2.99 2005-07-29T01:26:54Z 2020-02-15T06:59:53Z +10189 376 1 8420 5.99 2005-07-29T07:00:45Z 2020-02-15T06:59:53Z +10190 376 1 9773 4.99 2005-07-31T09:56:56Z 2020-02-15T06:59:53Z +10191 376 1 9828 2.99 2005-07-31T11:56:57Z 2020-02-15T06:59:53Z +10192 376 1 9872 0.99 2005-07-31T13:27:55Z 2020-02-15T06:59:53Z +10193 376 2 10413 3.99 2005-08-01T07:59:39Z 2020-02-15T06:59:53Z +10194 376 1 10810 3.99 2005-08-01T22:40:39Z 2020-02-15T06:59:53Z +10195 376 1 11144 4.99 2005-08-02T09:39:17Z 2020-02-15T06:59:53Z +10196 376 2 11792 4.99 2005-08-17T11:03:53Z 2020-02-15T06:59:53Z +10197 376 1 11851 4.99 2005-08-17T13:30:27Z 2020-02-15T06:59:53Z +10198 376 1 13009 0.99 2005-08-19T07:50:35Z 2020-02-15T06:59:53Z +10199 376 1 13141 0.99 2005-08-19T12:41:41Z 2020-02-15T06:59:53Z +10200 376 2 13761 4.99 2005-08-20T11:28:50Z 2020-02-15T06:59:53Z +10201 376 1 15107 4.99 2005-08-22T12:05:02Z 2020-02-15T06:59:53Z +10202 376 1 15382 2.99 2005-08-22T22:30:50Z 2020-02-15T06:59:53Z +10203 377 2 2556 3.99 2005-06-19T03:07:32Z 2020-02-15T06:59:53Z +10204 377 1 3080 1.99 2005-06-20T15:22:32Z 2020-02-15T06:59:53Z +10205 377 2 3086 0.99 2005-06-20T15:42:40Z 2020-02-15T06:59:53Z +10206 377 2 3136 2.99 2005-06-20T19:39:08Z 2020-02-15T06:59:53Z +10207 377 2 3443 4.99 2005-06-21T20:19:00Z 2020-02-15T06:59:53Z +10208 377 1 3858 2.99 2005-07-06T17:17:57Z 2020-02-15T06:59:53Z +10209 377 2 4053 0.99 2005-07-07T03:39:22Z 2020-02-15T06:59:53Z +10210 377 1 4077 0.99 2005-07-07T04:53:40Z 2020-02-15T06:59:53Z +10211 377 1 4225 0.99 2005-07-07T12:24:37Z 2020-02-15T06:59:53Z +10212 377 2 6893 7.99 2005-07-12T21:20:11Z 2020-02-15T06:59:53Z +10213 377 1 7697 1.99 2005-07-28T03:43:45Z 2020-02-15T06:59:53Z +10214 377 2 8018 10.99 2005-07-28T15:36:48Z 2020-02-15T06:59:53Z +10215 377 2 8916 4.99 2005-07-30T01:42:21Z 2020-02-15T06:59:53Z +10216 377 2 9461 3.99 2005-07-30T22:29:13Z 2020-02-15T06:59:53Z +10217 377 1 9564 0.99 2005-07-31T02:31:37Z 2020-02-15T06:59:53Z +10218 377 1 10013 4.99 2005-07-31T18:08:21Z 2020-02-15T06:59:53Z +10219 377 1 10183 8.99 2005-08-01T00:08:01Z 2020-02-15T06:59:53Z +10220 377 1 10738 3.99 2005-08-01T19:39:08Z 2020-02-15T06:59:53Z +10221 377 1 10943 2.99 2005-08-02T03:17:29Z 2020-02-15T06:59:53Z +10222 377 1 12390 1.99 2005-08-18T08:51:42Z 2020-02-15T06:59:53Z +10223 377 1 12549 4.99 2005-08-18T14:38:07Z 2020-02-15T06:59:53Z +10224 377 1 13249 2.99 2005-08-19T16:47:41Z 2020-02-15T06:59:53Z +10225 377 1 13275 0.99 2005-08-19T17:53:38Z 2020-02-15T06:59:53Z +10226 377 2 15088 0.99 2005-08-22T11:28:26Z 2020-02-15T06:59:53Z +10227 377 1 15995 0.99 2005-08-23T20:29:56Z 2020-02-15T06:59:53Z +10228 377 1 15999 7.99 2005-08-23T20:44:10Z 2020-02-15T06:59:53Z +10229 378 1 347 0.99 2005-05-27T04:40:33Z 2020-02-15T06:59:53Z +10230 378 2 1623 4.99 2005-06-16T07:48:50Z 2020-02-15T06:59:53Z +10231 378 1 1662 5.99 2005-06-16T10:13:35Z 2020-02-15T06:59:53Z +10232 378 2 2134 7.99 2005-06-17T21:13:44Z 2020-02-15T06:59:53Z +10233 378 2 2713 4.99 2005-06-19T14:23:09Z 2020-02-15T06:59:53Z +10234 378 1 3759 4.99 2005-07-06T12:46:38Z 2020-02-15T06:59:53Z +10235 378 2 4755 0.99 2005-07-08T14:23:41Z 2020-02-15T06:59:53Z +10236 378 1 5578 1.99 2005-07-10T04:00:31Z 2020-02-15T06:59:53Z +10237 378 2 6233 1.99 2005-07-11T14:10:47Z 2020-02-15T06:59:53Z +10238 378 1 7888 0.99 2005-07-28T10:40:24Z 2020-02-15T06:59:53Z +10239 378 2 8740 2.99 2005-07-29T18:41:31Z 2020-02-15T06:59:53Z +10240 378 2 9668 3.99 2005-07-31T06:31:03Z 2020-02-15T06:59:53Z +10241 378 1 9868 2.99 2005-07-31T13:20:08Z 2020-02-15T06:59:53Z +10242 378 1 10917 4.99 2005-08-02T02:06:18Z 2020-02-15T06:59:53Z +10243 378 1 11111 4.99 2005-08-02T08:21:27Z 2020-02-15T06:59:53Z +10244 378 1 12596 2.99 2005-08-18T16:29:35Z 2020-02-15T06:59:53Z +10245 378 1 12828 4.99 2005-08-19T01:37:47Z 2020-02-15T06:59:53Z +10246 378 2 14502 4.99 2005-08-21T14:22:28Z 2020-02-15T06:59:53Z +10247 378 1 14971 2.99 2005-08-22T06:52:49Z 2020-02-15T06:59:53Z +10248 379 2 209 4.99 2005-05-26T08:14:01Z 2020-02-15T06:59:53Z +10249 379 1 863 4.99 2005-05-30T03:14:59Z 2020-02-15T06:59:53Z +10250 379 1 1383 8.99 2005-06-15T15:20:06Z 2020-02-15T06:59:53Z +10251 379 1 2313 5.99 2005-06-18T08:56:45Z 2020-02-15T06:59:53Z +10252 379 1 2926 2.99 2005-06-20T04:37:45Z 2020-02-15T06:59:53Z +10253 379 1 3788 4.99 2005-07-06T14:02:02Z 2020-02-15T06:59:53Z +10254 379 2 4740 2.99 2005-07-08T13:30:35Z 2020-02-15T06:59:53Z +10255 379 1 5402 4.99 2005-07-09T20:01:58Z 2020-02-15T06:59:53Z +10256 379 1 6235 7.99 2005-07-11T14:17:51Z 2020-02-15T06:59:53Z +10257 379 2 7041 4.99 2005-07-27T03:18:32Z 2020-02-15T06:59:53Z +10258 379 1 10041 4.99 2005-07-31T19:01:02Z 2020-02-15T06:59:53Z +10259 379 2 11457 3.99 2005-08-02T21:14:16Z 2020-02-15T06:59:53Z +10260 379 1 12503 4.99 2005-08-18T13:16:46Z 2020-02-15T06:59:53Z +10261 379 1 13334 0.99 2005-08-19T20:02:33Z 2020-02-15T06:59:53Z +10262 379 2 13397 7.99 2005-08-19T22:06:35Z 2020-02-15T06:59:53Z +10263 379 1 13485 0.99 2005-08-20T01:20:14Z 2020-02-15T06:59:53Z +10264 379 1 14011 5.99 2005-08-20T20:32:56Z 2020-02-15T06:59:53Z +10265 379 2 14152 2.99 2005-08-21T02:23:50Z 2020-02-15T06:59:53Z +10266 379 1 14470 0.99 2005-08-21T13:09:41Z 2020-02-15T06:59:53Z +10267 379 1 14886 4.99 2005-08-22T03:59:01Z 2020-02-15T06:59:53Z +10268 379 2 15399 4.99 2005-08-22T23:11:59Z 2020-02-15T06:59:53Z +10269 379 1 15446 4.99 2005-08-23T00:49:24Z 2020-02-15T06:59:53Z +10270 379 2 15930 3.99 2005-08-23T18:26:51Z 2020-02-15T06:59:53Z +10271 380 1 847 3.99 2005-05-30T01:18:15Z 2020-02-15T06:59:53Z +10272 380 1 1868 3.99 2005-06-17T02:03:22Z 2020-02-15T06:59:53Z +10273 380 1 1984 2.99 2005-06-17T10:25:28Z 2020-02-15T06:59:53Z +10274 380 1 2018 3.99 2005-06-17T12:35:58Z 2020-02-15T06:59:53Z +10275 380 1 2440 2.99 2005-06-18T18:41:09Z 2020-02-15T06:59:53Z +10276 380 1 2464 4.99 2005-06-18T20:06:05Z 2020-02-15T06:59:53Z +10277 380 2 2998 1.99 2005-06-20T09:30:22Z 2020-02-15T06:59:53Z +10278 380 2 3099 1.99 2005-06-20T16:44:33Z 2020-02-15T06:59:53Z +10279 380 1 3260 4.99 2005-06-21T03:59:13Z 2020-02-15T06:59:53Z +10280 380 1 3637 2.99 2005-07-06T07:06:31Z 2020-02-15T06:59:53Z +10281 380 1 3688 4.99 2005-07-06T09:41:53Z 2020-02-15T06:59:53Z +10282 380 1 4675 2.99 2005-07-08T10:24:22Z 2020-02-15T06:59:53Z +10283 380 2 4706 4.99 2005-07-08T11:51:41Z 2020-02-15T06:59:53Z +10284 380 2 5339 0.99 2005-07-09T17:09:17Z 2020-02-15T06:59:53Z +10285 380 2 7021 8.99 2005-07-27T02:26:38Z 2020-02-15T06:59:53Z +10286 380 2 7167 2.99 2005-07-27T07:37:26Z 2020-02-15T06:59:53Z +10287 380 2 7435 0.99 2005-07-27T17:38:44Z 2020-02-15T06:59:53Z +10288 380 2 7443 2.99 2005-07-27T17:47:43Z 2020-02-15T06:59:53Z +10289 380 1 7773 2.99 2005-07-28T07:02:17Z 2020-02-15T06:59:53Z +10290 380 1 7974 3.99 2005-07-28T14:11:57Z 2020-02-15T06:59:53Z +10291 380 1 9056 0.99 2005-07-30T07:13:20Z 2020-02-15T06:59:53Z +10292 380 1 9261 6.99 2005-07-30T14:39:35Z 2020-02-15T06:59:53Z +10293 380 1 9710 10.99 2005-07-31T08:05:31Z 2020-02-15T06:59:53Z +10294 380 2 10450 1.99 2005-08-01T09:10:03Z 2020-02-15T06:59:53Z +10295 380 1 10983 3.99 2005-08-02T04:24:23Z 2020-02-15T06:59:53Z +10296 380 1 11936 0.99 2005-08-17T16:45:34Z 2020-02-15T06:59:53Z +10297 380 2 11945 0.99 2005-08-17T17:05:33Z 2020-02-15T06:59:53Z +10298 380 1 12636 3.99 2005-08-18T18:00:29Z 2020-02-15T06:59:53Z +10299 380 1 12996 6.99 2005-08-19T07:31:32Z 2020-02-15T06:59:53Z +10300 380 1 14529 6.99 2005-08-21T15:08:31Z 2020-02-15T06:59:53Z +10301 380 1 14935 1.99 2005-08-22T05:47:31Z 2020-02-15T06:59:53Z +10302 380 2 15175 5.99 2005-08-22T15:29:15Z 2020-02-15T06:59:53Z +10303 380 1 15361 2.99 2005-08-22T21:39:45Z 2020-02-15T06:59:53Z +10304 380 2 15636 2.99 2005-08-23T07:50:46Z 2020-02-15T06:59:53Z +10305 380 1 15697 2.99 2005-08-23T10:04:36Z 2020-02-15T06:59:53Z +10306 380 2 15748 2.99 2005-08-23T12:33:00Z 2020-02-15T06:59:53Z +10307 381 2 169 0.99 2005-05-26T03:09:30Z 2020-02-15T06:59:53Z +10308 381 2 406 2.99 2005-05-27T13:46:46Z 2020-02-15T06:59:53Z +10309 381 1 835 2.99 2005-05-29T23:37:00Z 2020-02-15T06:59:53Z +10310 381 1 1402 3.99 2005-06-15T16:31:08Z 2020-02-15T06:59:53Z +10311 381 1 1878 1.99 2005-06-17T02:55:32Z 2020-02-15T06:59:53Z +10312 381 2 2410 2.99 2005-06-18T16:55:08Z 2020-02-15T06:59:53Z +10313 381 1 2418 4.99 2005-06-18T17:14:42Z 2020-02-15T06:59:53Z +10314 381 2 3425 2.99 2005-06-21T18:07:07Z 2020-02-15T06:59:53Z +10315 381 2 3812 0.99 2005-07-06T15:22:19Z 2020-02-15T06:59:53Z +10316 381 2 3970 2.99 2005-07-06T22:48:17Z 2020-02-15T06:59:53Z +10317 381 1 4735 0.99 2005-07-08T13:12:27Z 2020-02-15T06:59:53Z +10318 381 2 5689 0.99 2005-07-10T09:24:17Z 2020-02-15T06:59:53Z +10319 381 2 6116 2.99 2005-07-11T07:37:38Z 2020-02-15T06:59:53Z +10320 381 2 6451 4.99 2005-07-12T00:52:19Z 2020-02-15T06:59:53Z +10321 381 2 6778 2.99 2005-07-12T16:06:00Z 2020-02-15T06:59:53Z +10322 381 1 7375 2.99 2005-07-27T15:22:33Z 2020-02-15T06:59:53Z +10323 381 1 7645 2.99 2005-07-28T01:27:42Z 2020-02-15T06:59:53Z +10324 381 2 8688 0.99 2005-07-29T16:31:32Z 2020-02-15T06:59:53Z +10325 381 2 9144 0.99 2005-07-30T10:22:15Z 2020-02-15T06:59:53Z +10326 381 2 9173 4.99 2005-07-30T11:40:10Z 2020-02-15T06:59:53Z +10327 381 1 9822 2.99 2005-07-31T11:48:25Z 2020-02-15T06:59:53Z +10328 381 2 10033 4.99 2005-07-31T18:44:29Z 2020-02-15T06:59:53Z +10329 381 1 10608 0.99 2005-08-01T14:48:41Z 2020-02-15T06:59:53Z +10330 381 2 10705 0.99 2005-08-01T18:38:54Z 2020-02-15T06:59:53Z +10331 381 1 11519 2.99 2005-08-17T00:01:27Z 2020-02-15T06:59:53Z +10332 381 2 12135 2.99 2005-08-17T23:50:24Z 2020-02-15T06:59:53Z +10333 381 2 12237 4.99 2005-08-18T03:24:38Z 2020-02-15T06:59:53Z +10334 381 2 12632 2.99 2005-08-18T17:54:21Z 2020-02-15T06:59:53Z +10335 381 2 13202 8.99 2005-08-19T14:58:30Z 2020-02-15T06:59:53Z +10336 381 2 13430 0.99 2005-08-19T23:25:43Z 2020-02-15T06:59:53Z +10337 381 1 13614 0.99 2005-08-20T06:28:37Z 2020-02-15T06:59:53Z +10338 381 2 13995 2.99 2005-08-20T19:34:43Z 2020-02-15T06:59:53Z +10339 381 1 14198 4.99 2005-08-21T03:48:31Z 2020-02-15T06:59:53Z +10340 381 2 15299 4.99 2005-08-22T19:42:57Z 2020-02-15T06:59:53Z +10341 381 1 15747 4.99 2005-08-23T12:29:24Z 2020-02-15T06:59:53Z +10342 382 2 356 2.99 2005-05-27T06:32:30Z 2020-02-15T06:59:53Z +10343 382 1 522 2.99 2005-05-28T03:33:20Z 2020-02-15T06:59:53Z +10344 382 1 2389 0.99 2005-06-18T15:27:47Z 2020-02-15T06:59:53Z +10345 382 1 2468 4.99 2005-06-18T20:23:52Z 2020-02-15T06:59:53Z +10346 382 1 2489 1.99 2005-06-18T22:00:44Z 2020-02-15T06:59:53Z +10347 382 1 2514 2.99 2005-06-18T23:56:44Z 2020-02-15T06:59:53Z +10348 382 2 3125 4.99 2005-06-20T18:31:58Z 2020-02-15T06:59:53Z +10349 382 2 3480 3.99 2005-07-05T23:11:43Z 2020-02-15T06:59:53Z +10350 382 2 4351 4.99 2005-07-07T19:04:24Z 2020-02-15T06:59:53Z +10351 382 1 5004 4.99 2005-07-09T01:20:50Z 2020-02-15T06:59:53Z +10352 382 1 5816 0.99 2005-07-10T15:48:47Z 2020-02-15T06:59:53Z +10353 382 2 7625 0.99 2005-07-28T00:47:56Z 2020-02-15T06:59:53Z +10354 382 2 8777 0.99 2005-07-29T20:10:21Z 2020-02-15T06:59:53Z +10355 382 1 8871 9.99 2005-07-30T00:12:41Z 2020-02-15T06:59:53Z +10356 382 1 8993 4.99 2005-07-30T04:51:25Z 2020-02-15T06:59:53Z +10357 382 1 9067 6.99 2005-07-30T07:31:01Z 2020-02-15T06:59:53Z +10358 382 2 9555 0.99 2005-07-31T02:11:16Z 2020-02-15T06:59:53Z +10359 382 2 10327 3.99 2005-08-01T04:55:35Z 2020-02-15T06:59:53Z +10360 382 2 12229 0.99 2005-08-18T03:08:23Z 2020-02-15T06:59:53Z +10361 382 2 12529 0.99 2005-08-18T13:53:36Z 2020-02-15T06:59:53Z +10362 382 1 14009 4.99 2005-08-20T20:26:53Z 2020-02-15T06:59:53Z +10363 382 2 14300 4.99 2005-08-21T07:19:37Z 2020-02-15T06:59:53Z +10364 382 2 14354 5.99 2005-08-21T09:08:14Z 2020-02-15T06:59:53Z +10365 382 2 15939 7.99 2005-08-23T18:44:21Z 2020-02-15T06:59:53Z +10366 383 2 63 0.99 2005-05-25T09:19:16Z 2020-02-15T06:59:53Z +10367 383 1 766 8.99 2005-05-29T11:47:02Z 2020-02-15T06:59:53Z +10368 383 1 1831 7.99 2005-06-16T22:22:17Z 2020-02-15T06:59:53Z +10369 383 2 2228 2.99 2005-06-18T03:44:50Z 2020-02-15T06:59:53Z +10370 383 1 2252 2.99 2005-06-18T05:05:18Z 2020-02-15T06:59:53Z +10371 383 2 2318 2.99 2005-06-18T09:13:54Z 2020-02-15T06:59:53Z +10372 383 1 2609 7.99 2005-06-19T07:13:12Z 2020-02-15T06:59:53Z +10373 383 1 3091 2.99 2005-06-20T16:02:59Z 2020-02-15T06:59:53Z +10374 383 2 4747 5.99 2005-07-08T13:53:01Z 2020-02-15T06:59:53Z +10375 383 2 6091 4.99 2005-07-11T05:49:18Z 2020-02-15T06:59:53Z +10376 383 2 6244 0.99 2005-07-11T14:53:38Z 2020-02-15T06:59:53Z +10377 383 1 6775 4.99 2005-07-12T16:01:44Z 2020-02-15T06:59:53Z +10378 383 1 7367 3.99 2005-07-27T15:05:45Z 2020-02-15T06:59:53Z +10379 383 2 8367 2.99 2005-07-29T05:11:19Z 2020-02-15T06:59:53Z +10380 383 1 8635 0.99 2005-07-29T14:22:48Z 2020-02-15T06:59:53Z +10381 383 1 9653 0.99 2005-07-31T05:55:38Z 2020-02-15T06:59:53Z +10382 383 1 9678 0.99 2005-07-31T06:40:47Z 2020-02-15T06:59:53Z +10383 383 2 10515 4.99 2005-08-01T11:41:33Z 2020-02-15T06:59:53Z +10384 383 1 10971 4.99 2005-08-02T04:08:17Z 2020-02-15T06:59:53Z +10385 383 2 10993 0.99 2005-08-02T04:45:01Z 2020-02-15T06:59:53Z +10386 383 2 11122 0.99 2005-08-02T08:49:09Z 2020-02-15T06:59:53Z +10387 383 1 11592 2.99 2005-08-17T02:36:04Z 2020-02-15T06:59:53Z +10388 383 1 12735 4.99 2005-08-18T22:04:54Z 2020-02-15T06:59:53Z +10389 383 2 14039 4.99 2005-08-20T21:39:43Z 2020-02-15T06:59:53Z +10390 383 2 14678 4.99 2005-08-21T20:12:43Z 2020-02-15T06:59:53Z +10391 383 1 15416 1.99 2005-08-22T23:51:23Z 2020-02-15T06:59:53Z +10392 383 1 15881 6.99 2005-08-23T16:44:25Z 2020-02-15T06:59:53Z +10393 384 2 103 4.99 2005-05-25T17:30:42Z 2020-02-15T06:59:53Z +10394 384 2 279 2.99 2005-05-26T18:02:50Z 2020-02-15T06:59:53Z +10395 384 1 898 0.99 2005-05-30T09:26:19Z 2020-02-15T06:59:53Z +10396 384 2 1013 2.99 2005-05-31T02:37:00Z 2020-02-15T06:59:53Z +10397 384 1 1961 0.99 2005-06-17T09:02:58Z 2020-02-15T06:59:53Z +10398 384 2 2020 0.99 2005-06-17T12:39:50Z 2020-02-15T06:59:53Z +10399 384 1 2378 7.99 2005-06-18T14:57:49Z 2020-02-15T06:59:53Z +10400 384 2 2510 5.99 2005-06-18T23:44:21Z 2020-02-15T06:59:53Z +10401 384 2 2935 3.99 2005-06-20T05:07:24Z 2020-02-15T06:59:53Z +10402 384 1 3088 9.99 2005-06-20T15:56:05Z 2020-02-15T06:59:53Z +10403 384 2 3101 4.99 2005-06-20T16:48:58Z 2020-02-15T06:59:53Z +10404 384 2 4424 0.99 2005-07-07T22:14:43Z 2020-02-15T06:59:53Z +10405 384 2 5250 0.99 2005-07-09T13:35:32Z 2020-02-15T06:59:53Z +10406 384 1 5608 4.99 2005-07-10T05:08:26Z 2020-02-15T06:59:53Z +10407 384 2 5797 4.99 2005-07-10T14:43:52Z 2020-02-15T06:59:53Z +10408 384 2 5966 2.99 2005-07-10T23:59:27Z 2020-02-15T06:59:53Z +10409 384 2 6387 0.99 2005-07-11T22:15:56Z 2020-02-15T06:59:53Z +10410 384 2 7799 0.99 2005-07-28T07:42:09Z 2020-02-15T06:59:53Z +10411 384 1 8445 1.99 2005-07-29T07:37:48Z 2020-02-15T06:59:53Z +10412 384 2 11773 5.99 2005-08-17T10:19:51Z 2020-02-15T06:59:53Z +10413 384 2 13521 2.99 2005-08-20T02:42:28Z 2020-02-15T06:59:53Z +10414 384 2 14416 2.99 2005-08-21T11:11:46Z 2020-02-15T06:59:53Z +10415 384 1 14841 0.99 2005-08-22T02:03:30Z 2020-02-15T06:59:53Z +10416 384 1 14963 5.99 2005-08-22T06:38:10Z 2020-02-15T06:59:53Z +10417 384 2 15321 4.99 2005-08-22T20:20:04Z 2020-02-15T06:59:53Z +10418 385 1 917 2.99 2005-05-30T11:27:06Z 2020-02-15T06:59:53Z +10419 385 2 1038 4.99 2005-05-31T05:23:47Z 2020-02-15T06:59:53Z +10420 385 1 1746 2.99 2005-06-16T16:41:19Z 2020-02-15T06:59:53Z +10421 385 1 1937 0.99 2005-06-17T07:16:46Z 2020-02-15T06:59:53Z +10422 385 1 3105 0.99 2005-06-20T17:11:46Z 2020-02-15T06:59:53Z +10423 385 2 3878 8.99 2005-07-06T18:27:09Z 2020-02-15T06:59:53Z +10424 385 2 3953 0.99 2005-07-06T21:54:55Z 2020-02-15T06:59:53Z +10425 385 1 4714 6.99 2005-07-08T12:12:48Z 2020-02-15T06:59:53Z +10426 385 1 5783 2.99 2005-07-10T13:55:33Z 2020-02-15T06:59:53Z +10427 385 1 6445 4.99 2005-07-12T00:37:02Z 2020-02-15T06:59:53Z +10428 385 2 6933 4.99 2005-07-26T23:09:23Z 2020-02-15T06:59:53Z +10429 385 2 7776 0.99 2005-07-28T07:04:36Z 2020-02-15T06:59:53Z +10430 385 1 8346 2.99 2005-07-29T04:48:22Z 2020-02-15T06:59:53Z +10431 385 1 8518 2.99 2005-07-29T10:05:27Z 2020-02-15T06:59:53Z +10432 385 1 9570 2.99 2005-07-31T02:40:37Z 2020-02-15T06:59:53Z +10433 385 1 9704 4.99 2005-07-31T07:39:32Z 2020-02-15T06:59:53Z +10434 385 1 10557 0.99 2005-08-01T12:59:24Z 2020-02-15T06:59:53Z +10435 385 1 10636 3.99 2005-08-01T15:40:35Z 2020-02-15T06:59:53Z +10436 385 1 10655 4.99 2005-08-01T16:33:27Z 2020-02-15T06:59:53Z +10437 385 1 11021 2.99 2005-08-02T05:30:11Z 2020-02-15T06:59:53Z +10438 385 1 11559 2.99 2005-08-17T01:20:26Z 2020-02-15T06:59:53Z +10439 385 2 12310 2.99 2005-08-18T06:02:34Z 2020-02-15T06:59:53Z +10440 385 2 12686 8.99 2005-08-18T19:55:09Z 2020-02-15T06:59:53Z +10441 385 2 13062 7.99 2005-08-19T09:44:17Z 2020-02-15T06:59:53Z +10442 385 1 13117 0.99 2005-08-19T11:33:20Z 2020-02-15T06:59:53Z +10443 385 1 15488 6.99 2005-08-23T02:06:01Z 2020-02-15T06:59:53Z +10444 386 1 583 7.99 2005-05-28T11:48:55Z 2020-02-15T06:59:53Z +10445 386 2 1585 3.99 2005-06-16T04:51:13Z 2020-02-15T06:59:53Z +10446 386 1 1608 2.99 2005-06-16T06:28:57Z 2020-02-15T06:59:53Z +10447 386 2 1819 5.99 2005-06-16T21:32:50Z 2020-02-15T06:59:53Z +10448 386 1 2732 0.99 2005-06-19T15:19:39Z 2020-02-15T06:59:53Z +10449 386 1 3351 2.99 2005-06-21T11:21:39Z 2020-02-15T06:59:53Z +10450 386 2 3783 6.99 2005-07-06T13:57:31Z 2020-02-15T06:59:53Z +10451 386 1 4189 8.99 2005-07-07T10:51:07Z 2020-02-15T06:59:53Z +10452 386 1 5524 0.99 2005-07-10T01:49:24Z 2020-02-15T06:59:53Z +10453 386 1 5953 2.99 2005-07-10T23:21:35Z 2020-02-15T06:59:53Z +10454 386 1 6037 4.99 2005-07-11T03:06:54Z 2020-02-15T06:59:53Z +10455 386 1 6222 2.99 2005-07-11T13:25:49Z 2020-02-15T06:59:53Z +10456 386 2 6261 2.99 2005-07-11T15:28:34Z 2020-02-15T06:59:53Z +10457 386 1 6324 3.99 2005-07-11T19:02:34Z 2020-02-15T06:59:53Z +10458 386 2 6715 4.99 2005-07-12T13:32:28Z 2020-02-15T06:59:53Z +10459 386 2 8340 4.99 2005-07-29T04:41:44Z 2020-02-15T06:59:53Z +10460 386 1 8751 2.99 2005-07-29T19:14:39Z 2020-02-15T06:59:53Z +10461 386 2 9602 0.99 2005-07-31T03:42:51Z 2020-02-15T06:59:53Z +10462 386 1 9686 5.99 2005-07-31T06:50:06Z 2020-02-15T06:59:53Z +10463 386 1 10572 4.99 2005-08-01T13:26:53Z 2020-02-15T06:59:53Z +10464 386 2 10618 3.99 2005-08-01T15:06:38Z 2020-02-15T06:59:53Z +10465 386 1 10715 2.99 2005-08-01T18:51:48Z 2020-02-15T06:59:53Z +10466 386 2 11128 2.99 2005-08-02T09:03:25Z 2020-02-15T06:59:53Z +10467 386 2 11695 4.99 2005-08-17T07:01:08Z 2020-02-15T06:59:53Z +10468 386 2 12961 2.99 2005-08-19T06:22:37Z 2020-02-15T06:59:53Z +10469 386 1 13716 3.99 2005-08-20T09:48:32Z 2020-02-15T06:59:53Z +10470 386 1 13764 2.99 2005-08-20T11:38:16Z 2020-02-15T06:59:53Z +10471 386 2 13869 6.99 2005-08-20T15:08:57Z 2020-02-15T06:59:53Z +10472 386 1 15949 0.99 2005-08-23T19:06:04Z 2020-02-15T06:59:53Z +10473 387 2 302 4.99 2005-05-26T21:13:46Z 2020-02-15T06:59:53Z +10474 387 1 697 7.99 2005-05-29T02:04:04Z 2020-02-15T06:59:53Z +10475 387 1 841 4.99 2005-05-30T00:31:17Z 2020-02-15T06:59:53Z +10476 387 1 1127 3.99 2005-05-31T17:45:49Z 2020-02-15T06:59:53Z +10477 387 1 1464 0.99 2005-06-15T20:38:14Z 2020-02-15T06:59:53Z +10478 387 2 1465 0.99 2005-06-15T20:43:08Z 2020-02-15T06:59:53Z +10479 387 1 2068 0.99 2005-06-17T16:11:46Z 2020-02-15T06:59:53Z +10480 387 2 2100 0.99 2005-06-17T18:53:21Z 2020-02-15T06:59:53Z +10481 387 2 2981 5.99 2005-06-20T08:35:17Z 2020-02-15T06:59:53Z +10482 387 2 3378 4.99 2005-06-21T13:51:28Z 2020-02-15T06:59:53Z +10483 387 2 6216 4.99 2005-07-11T12:57:05Z 2020-02-15T06:59:53Z +10484 387 2 6456 6.99 2005-07-12T01:05:11Z 2020-02-15T06:59:53Z +10485 387 1 6517 5.99 2005-07-12T03:52:39Z 2020-02-15T06:59:53Z +10486 387 1 7497 0.99 2005-07-27T20:05:27Z 2020-02-15T06:59:53Z +10487 387 1 8090 2.99 2005-07-28T18:27:29Z 2020-02-15T06:59:53Z +10488 387 1 10564 0.99 2005-08-01T13:07:34Z 2020-02-15T06:59:53Z +10489 387 1 10838 4.99 2005-08-01T23:36:10Z 2020-02-15T06:59:53Z +10490 387 2 11682 2.99 2005-08-17T06:13:40Z 2020-02-15T06:59:53Z +10491 387 2 12153 4.99 2005-08-18T00:22:30Z 2020-02-15T06:59:53Z +10492 387 1 12936 6.99 2005-08-19T05:25:06Z 2020-02-15T06:59:53Z +10493 387 2 13034 2.99 2005-08-19T08:41:29Z 2020-02-15T06:59:53Z +10494 387 1 13082 5.99 2005-08-19T10:19:19Z 2020-02-15T06:59:53Z +10495 387 2 13645 0.99 2005-08-20T07:47:05Z 2020-02-15T06:59:53Z +10496 387 2 13772 4.99 2005-08-20T11:47:52Z 2020-02-15T06:59:53Z +10497 387 2 14279 5.99 2005-08-21T06:39:08Z 2020-02-15T06:59:53Z +10498 387 2 14979 0.99 2005-08-22T07:16:36Z 2020-02-15T06:59:53Z +10499 388 2 21 4.99 2005-05-25T01:59:46Z 2020-02-15T06:59:53Z +10500 388 2 411 4.99 2005-05-27T14:14:14Z 2020-02-15T06:59:53Z +10501 388 2 1276 6.99 2005-06-15T08:00:13Z 2020-02-15T06:59:53Z +10502 388 1 2145 0.99 2005-06-17T22:10:36Z 2020-02-15T06:59:53Z +10503 388 1 2537 5.99 2005-06-19T01:52:21Z 2020-02-15T06:59:53Z +10504 388 1 2692 4.99 2005-06-19T13:08:19Z 2020-02-15T06:59:53Z +10505 388 2 3159 7.99 2005-06-20T21:11:50Z 2020-02-15T06:59:53Z +10506 388 2 4947 5.99 2005-07-08T22:49:37Z 2020-02-15T06:59:53Z +10507 388 2 5899 2.99 2005-07-10T20:21:52Z 2020-02-15T06:59:53Z +10508 388 2 6321 2.99 2005-07-11T18:51:02Z 2020-02-15T06:59:53Z +10509 388 1 6452 2.99 2005-07-12T00:57:31Z 2020-02-15T06:59:53Z +10510 388 2 7985 5.99 2005-07-28T14:29:01Z 2020-02-15T06:59:53Z +10511 388 2 8456 3.99 2005-07-29T07:58:31Z 2020-02-15T06:59:53Z +10512 388 2 9213 0.99 2005-07-30T13:07:11Z 2020-02-15T06:59:53Z +10513 388 2 9368 2.99 2005-07-30T18:50:53Z 2020-02-15T06:59:53Z +10514 388 2 9840 2.99 2005-07-31T12:23:18Z 2020-02-15T06:59:53Z +10515 388 2 9940 0.99 2005-07-31T15:29:06Z 2020-02-15T06:59:53Z +10516 388 2 10044 2.99 2005-07-31T19:02:33Z 2020-02-15T06:59:53Z +10517 388 2 11604 0.99 2005-08-17T03:28:27Z 2020-02-15T06:59:53Z +10518 388 2 12044 0.99 2005-08-17T20:39:37Z 2020-02-15T06:59:53Z +10519 388 1 12068 2.99 2005-08-17T21:37:08Z 2020-02-15T06:59:53Z +10520 388 2 12267 6.99 2005-08-18T04:24:30Z 2020-02-15T06:59:53Z +10521 388 2 12497 4.99 2005-08-18T12:58:40Z 2020-02-15T06:59:53Z +10522 388 2 12646 2.99 2005-08-18T18:25:06Z 2020-02-15T06:59:53Z +10523 388 1 12749 2.99 2005-08-18T22:31:21Z 2020-02-15T06:59:53Z +10524 388 1 12977 4.99 2005-08-19T06:55:33Z 2020-02-15T06:59:53Z +10525 388 1 14273 10.99 2005-08-21T06:26:48Z 2020-02-15T06:59:53Z +10526 388 2 14853 5.99 2005-08-22T02:26:33Z 2020-02-15T06:59:53Z +10527 388 2 15660 5.99 2005-08-23T08:51:21Z 2020-02-15T06:59:53Z +10528 388 1 12891 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:53Z +10529 389 1 998 4.99 2005-05-31T00:16:57Z 2020-02-15T06:59:53Z +10530 389 1 1763 4.99 2005-06-16T17:51:01Z 2020-02-15T06:59:53Z +10531 389 1 1946 4.99 2005-06-17T07:58:39Z 2020-02-15T06:59:53Z +10532 389 1 2552 3.99 2005-06-19T03:01:29Z 2020-02-15T06:59:53Z +10533 389 2 3527 0.99 2005-07-06T01:11:08Z 2020-02-15T06:59:53Z +10534 389 1 4443 6.99 2005-07-07T23:05:53Z 2020-02-15T06:59:53Z +10535 389 1 5249 0.99 2005-07-09T13:33:53Z 2020-02-15T06:59:53Z +10536 389 2 5626 3.99 2005-07-10T05:49:35Z 2020-02-15T06:59:53Z +10537 389 2 6104 2.99 2005-07-11T07:01:35Z 2020-02-15T06:59:53Z +10538 389 1 6600 3.99 2005-07-12T07:41:48Z 2020-02-15T06:59:53Z +10539 389 1 7029 4.99 2005-07-27T02:57:43Z 2020-02-15T06:59:53Z +10540 389 1 7896 8.99 2005-07-28T11:00:58Z 2020-02-15T06:59:53Z +10541 389 2 7977 4.99 2005-07-28T14:15:54Z 2020-02-15T06:59:53Z +10542 389 1 8338 6.99 2005-07-29T04:40:39Z 2020-02-15T06:59:53Z +10543 389 1 8887 4.99 2005-07-30T00:36:54Z 2020-02-15T06:59:53Z +10544 389 1 10217 4.99 2005-08-01T01:07:27Z 2020-02-15T06:59:53Z +10545 389 1 10949 2.99 2005-08-02T03:24:04Z 2020-02-15T06:59:53Z +10546 389 2 11348 4.99 2005-08-02T17:18:38Z 2020-02-15T06:59:53Z +10547 389 2 11441 2.99 2005-08-02T20:25:41Z 2020-02-15T06:59:53Z +10548 389 2 11944 3.99 2005-08-17T17:02:42Z 2020-02-15T06:59:53Z +10549 389 2 12069 4.99 2005-08-17T21:39:40Z 2020-02-15T06:59:53Z +10550 389 2 14493 7.99 2005-08-21T14:01:44Z 2020-02-15T06:59:53Z +10551 389 1 14578 2.99 2005-08-21T16:53:38Z 2020-02-15T06:59:54Z +10552 389 1 14777 2.99 2005-08-21T23:55:50Z 2020-02-15T06:59:54Z +10553 389 1 15462 5.99 2005-08-23T01:14:01Z 2020-02-15T06:59:54Z +10554 389 2 16011 9.99 2005-08-23T21:11:33Z 2020-02-15T06:59:54Z +10555 390 1 254 4.99 2005-05-26T14:43:48Z 2020-02-15T06:59:54Z +10556 390 2 912 4.99 2005-05-30T10:58:33Z 2020-02-15T06:59:54Z +10557 390 2 1539 5.99 2005-06-16T01:11:25Z 2020-02-15T06:59:54Z +10558 390 2 1730 2.99 2005-06-16T15:30:01Z 2020-02-15T06:59:54Z +10559 390 2 1893 2.99 2005-06-17T04:18:37Z 2020-02-15T06:59:54Z +10560 390 1 2330 7.99 2005-06-18T10:41:19Z 2020-02-15T06:59:54Z +10561 390 1 3147 5.99 2005-06-20T20:25:17Z 2020-02-15T06:59:54Z +10562 390 1 3999 2.99 2005-07-06T23:50:54Z 2020-02-15T06:59:54Z +10563 390 1 4022 4.99 2005-07-07T01:50:06Z 2020-02-15T06:59:54Z +10564 390 2 4191 3.99 2005-07-07T10:56:14Z 2020-02-15T06:59:54Z +10565 390 2 4310 2.99 2005-07-07T17:30:56Z 2020-02-15T06:59:54Z +10566 390 1 4968 5.99 2005-07-08T23:49:19Z 2020-02-15T06:59:54Z +10567 390 1 6215 4.99 2005-07-11T12:52:36Z 2020-02-15T06:59:54Z +10568 390 1 6430 0.99 2005-07-12T00:03:34Z 2020-02-15T06:59:54Z +10569 390 2 7515 3.99 2005-07-27T20:52:37Z 2020-02-15T06:59:54Z +10570 390 1 7595 5.99 2005-07-27T23:32:23Z 2020-02-15T06:59:54Z +10571 390 1 8493 0.99 2005-07-29T09:04:31Z 2020-02-15T06:59:54Z +10572 390 1 9251 5.99 2005-07-30T14:19:25Z 2020-02-15T06:59:54Z +10573 390 2 9314 2.99 2005-07-30T17:05:19Z 2020-02-15T06:59:54Z +10574 390 1 9825 4.99 2005-07-31T11:50:51Z 2020-02-15T06:59:54Z +10575 390 1 10061 4.99 2005-07-31T19:23:25Z 2020-02-15T06:59:54Z +10576 390 1 12105 5.99 2005-08-17T22:54:45Z 2020-02-15T06:59:54Z +10577 390 2 12803 2.99 2005-08-19T00:28:21Z 2020-02-15T06:59:54Z +10578 390 1 13413 3.99 2005-08-19T22:46:46Z 2020-02-15T06:59:54Z +10579 390 1 13473 4.99 2005-08-20T01:03:50Z 2020-02-15T06:59:54Z +10580 390 1 13501 0.99 2005-08-20T01:56:20Z 2020-02-15T06:59:54Z +10581 390 2 13546 3.99 2005-08-20T03:50:24Z 2020-02-15T06:59:54Z +10582 390 2 13591 3.99 2005-08-20T05:50:05Z 2020-02-15T06:59:54Z +10583 390 2 13618 7.99 2005-08-20T06:36:46Z 2020-02-15T06:59:54Z +10584 390 2 13893 5.99 2005-08-20T15:52:52Z 2020-02-15T06:59:54Z +10585 390 2 15222 4.99 2005-08-22T17:12:30Z 2020-02-15T06:59:54Z +10586 390 2 15303 8.99 2005-08-22T19:44:59Z 2020-02-15T06:59:54Z +10587 390 2 15376 4.99 2005-08-22T22:21:35Z 2020-02-15T06:59:54Z +10588 391 2 73 4.99 2005-05-25T11:00:07Z 2020-02-15T06:59:54Z +10589 391 1 210 2.99 2005-05-26T08:14:15Z 2020-02-15T06:59:54Z +10590 391 1 317 5.99 2005-05-26T23:23:56Z 2020-02-15T06:59:54Z +10591 391 2 870 2.99 2005-05-30T04:25:47Z 2020-02-15T06:59:54Z +10592 391 1 891 7.99 2005-05-30T07:43:12Z 2020-02-15T06:59:54Z +10593 391 2 1232 0.99 2005-06-15T04:18:10Z 2020-02-15T06:59:54Z +10594 391 2 1931 0.99 2005-06-17T06:51:56Z 2020-02-15T06:59:54Z +10595 391 1 2045 2.99 2005-06-17T14:38:11Z 2020-02-15T06:59:54Z +10596 391 1 2690 2.99 2005-06-19T13:00:02Z 2020-02-15T06:59:54Z +10597 391 2 3163 2.99 2005-06-20T21:22:13Z 2020-02-15T06:59:54Z +10598 391 1 4188 5.99 2005-07-07T10:45:29Z 2020-02-15T06:59:54Z +10599 391 1 4716 0.99 2005-07-08T12:18:51Z 2020-02-15T06:59:54Z +10600 391 2 4753 0.99 2005-07-08T14:18:41Z 2020-02-15T06:59:54Z +10601 391 2 5583 7.99 2005-07-10T04:08:48Z 2020-02-15T06:59:54Z +10602 391 1 5599 4.99 2005-07-10T04:52:04Z 2020-02-15T06:59:54Z +10603 391 1 6302 3.99 2005-07-11T17:55:38Z 2020-02-15T06:59:54Z +10604 391 1 6463 2.99 2005-07-12T01:16:11Z 2020-02-15T06:59:54Z +10605 391 2 8016 0.99 2005-07-28T15:35:41Z 2020-02-15T06:59:54Z +10606 391 1 8908 0.99 2005-07-30T01:26:05Z 2020-02-15T06:59:54Z +10607 391 2 8913 6.99 2005-07-30T01:35:01Z 2020-02-15T06:59:54Z +10608 391 1 9225 0.99 2005-07-30T13:29:47Z 2020-02-15T06:59:54Z +10609 391 1 10210 7.99 2005-08-01T00:58:52Z 2020-02-15T06:59:54Z +10610 391 2 10406 2.99 2005-08-01T07:37:05Z 2020-02-15T06:59:54Z +10611 391 1 11151 4.99 2005-08-02T09:52:44Z 2020-02-15T06:59:54Z +10612 391 2 11434 2.99 2005-08-02T20:13:14Z 2020-02-15T06:59:54Z +10613 391 1 11602 4.99 2005-08-17T03:21:19Z 2020-02-15T06:59:54Z +10614 391 1 12090 0.99 2005-08-17T22:21:43Z 2020-02-15T06:59:54Z +10615 391 1 12100 1.99 2005-08-17T22:41:10Z 2020-02-15T06:59:54Z +10616 391 1 13980 2.99 2005-08-20T19:04:40Z 2020-02-15T06:59:54Z +10617 391 1 14381 0.99 2005-08-21T09:55:47Z 2020-02-15T06:59:54Z +10618 392 2 1530 6.99 2005-06-16T00:38:07Z 2020-02-15T06:59:54Z +10619 392 2 1764 2.99 2005-06-16T17:51:54Z 2020-02-15T06:59:54Z +10620 392 2 2289 2.99 2005-06-18T07:29:43Z 2020-02-15T06:59:54Z +10621 392 2 2890 4.99 2005-06-20T02:00:45Z 2020-02-15T06:59:54Z +10622 392 1 3566 2.99 2005-07-06T03:08:51Z 2020-02-15T06:59:54Z +10623 392 2 6061 0.99 2005-07-11T04:06:25Z 2020-02-15T06:59:54Z +10624 392 2 6406 2.99 2005-07-11T22:55:27Z 2020-02-15T06:59:54Z +10625 392 1 7692 2.99 2005-07-28T03:30:21Z 2020-02-15T06:59:54Z +10626 392 1 7981 1.99 2005-07-28T14:18:25Z 2020-02-15T06:59:54Z +10627 392 1 8254 0.99 2005-07-29T00:59:31Z 2020-02-15T06:59:54Z +10628 392 2 8612 9.99 2005-07-29T13:28:20Z 2020-02-15T06:59:54Z +10629 392 2 10085 0.99 2005-07-31T20:12:02Z 2020-02-15T06:59:54Z +10630 392 1 10435 4.99 2005-08-01T08:50:51Z 2020-02-15T06:59:54Z +10631 392 1 11459 0.99 2005-08-02T21:25:25Z 2020-02-15T06:59:54Z +10632 392 1 11686 2.99 2005-08-17T06:39:30Z 2020-02-15T06:59:54Z +10633 392 2 12102 6.99 2005-08-17T22:45:26Z 2020-02-15T06:59:54Z +10634 392 1 12368 6.99 2005-08-18T07:57:38Z 2020-02-15T06:59:54Z +10635 392 2 12561 0.99 2005-08-18T14:58:51Z 2020-02-15T06:59:54Z +10636 392 1 13629 4.99 2005-08-20T07:04:07Z 2020-02-15T06:59:54Z +10637 392 2 14081 7.99 2005-08-20T23:35:13Z 2020-02-15T06:59:54Z +10638 392 1 14223 5.99 2005-08-21T04:51:51Z 2020-02-15T06:59:54Z +10639 392 2 14369 0.99 2005-08-21T09:33:44Z 2020-02-15T06:59:54Z +10640 392 2 14438 5.99 2005-08-21T11:51:10Z 2020-02-15T06:59:54Z +10641 393 1 599 4.99 2005-05-28T14:05:57Z 2020-02-15T06:59:54Z +10642 393 2 886 0.99 2005-05-30T06:54:51Z 2020-02-15T06:59:54Z +10643 393 1 1611 6.99 2005-06-16T06:41:35Z 2020-02-15T06:59:54Z +10644 393 2 1915 1.99 2005-06-17T05:28:28Z 2020-02-15T06:59:54Z +10645 393 2 2219 2.99 2005-06-18T03:16:54Z 2020-02-15T06:59:54Z +10646 393 1 2319 4.99 2005-06-18T09:24:22Z 2020-02-15T06:59:54Z +10647 393 2 3001 2.99 2005-06-20T09:50:16Z 2020-02-15T06:59:54Z +10648 393 2 4275 2.99 2005-07-07T14:43:51Z 2020-02-15T06:59:54Z +10649 393 2 4546 8.99 2005-07-08T04:18:36Z 2020-02-15T06:59:54Z +10650 393 2 4632 5.99 2005-07-08T08:38:57Z 2020-02-15T06:59:54Z +10651 393 2 4791 7.99 2005-07-08T16:27:24Z 2020-02-15T06:59:54Z +10652 393 1 5099 4.99 2005-07-09T06:14:30Z 2020-02-15T06:59:54Z +10653 393 1 6221 2.99 2005-07-11T13:24:27Z 2020-02-15T06:59:54Z +10654 393 2 6513 0.99 2005-07-12T03:44:43Z 2020-02-15T06:59:54Z +10655 393 1 6930 8.99 2005-07-26T23:00:01Z 2020-02-15T06:59:54Z +10656 393 2 7486 0.99 2005-07-27T19:29:24Z 2020-02-15T06:59:54Z +10657 393 2 8004 4.99 2005-07-28T15:14:07Z 2020-02-15T06:59:54Z +10658 393 2 8448 0.99 2005-07-29T07:41:54Z 2020-02-15T06:59:54Z +10659 393 2 9763 7.99 2005-07-31T09:34:03Z 2020-02-15T06:59:54Z +10660 393 1 10158 1.99 2005-07-31T22:40:31Z 2020-02-15T06:59:54Z +10661 393 2 12059 2.99 2005-08-17T21:09:23Z 2020-02-15T06:59:54Z +10662 393 1 12113 1.99 2005-08-17T23:01:00Z 2020-02-15T06:59:54Z +10663 393 1 12563 4.99 2005-08-18T15:08:29Z 2020-02-15T06:59:54Z +10664 393 1 12676 0.99 2005-08-18T19:34:40Z 2020-02-15T06:59:54Z +10665 393 1 13184 4.99 2005-08-19T14:16:18Z 2020-02-15T06:59:54Z +10666 393 2 13357 4.99 2005-08-19T21:02:59Z 2020-02-15T06:59:54Z +10667 393 2 13788 1.99 2005-08-20T12:15:41Z 2020-02-15T06:59:54Z +10668 393 1 15132 2.99 2005-08-22T13:11:25Z 2020-02-15T06:59:54Z +10669 393 2 15284 3.99 2005-08-22T19:17:08Z 2020-02-15T06:59:54Z +10670 393 2 15527 0.99 2005-08-23T03:44:51Z 2020-02-15T06:59:54Z +10671 393 2 16049 3.99 2005-08-23T22:50:12Z 2020-02-15T06:59:54Z +10672 394 1 213 3.99 2005-05-26T08:44:08Z 2020-02-15T06:59:54Z +10673 394 1 977 2.99 2005-05-30T21:22:26Z 2020-02-15T06:59:54Z +10674 394 2 1324 4.99 2005-06-15T11:02:45Z 2020-02-15T06:59:54Z +10675 394 2 3543 0.99 2005-07-06T02:01:08Z 2020-02-15T06:59:54Z +10676 394 1 3873 6.99 2005-07-06T18:03:16Z 2020-02-15T06:59:54Z +10677 394 2 4009 2.99 2005-07-07T00:28:55Z 2020-02-15T06:59:54Z +10678 394 1 4307 6.99 2005-07-07T17:20:39Z 2020-02-15T06:59:54Z +10679 394 2 5183 4.99 2005-07-09T10:13:45Z 2020-02-15T06:59:54Z +10680 394 1 5535 4.99 2005-07-10T02:27:42Z 2020-02-15T06:59:54Z +10681 394 2 6059 4.99 2005-07-11T04:03:54Z 2020-02-15T06:59:54Z +10682 394 2 7445 3.99 2005-07-27T17:57:15Z 2020-02-15T06:59:54Z +10683 394 1 9147 0.99 2005-07-30T10:38:59Z 2020-02-15T06:59:54Z +10684 394 2 9864 0.99 2005-07-31T13:06:54Z 2020-02-15T06:59:54Z +10685 394 1 10319 4.99 2005-08-01T04:37:19Z 2020-02-15T06:59:54Z +10686 394 1 10603 0.99 2005-08-01T14:30:35Z 2020-02-15T06:59:54Z +10687 394 1 10718 0.99 2005-08-01T18:55:38Z 2020-02-15T06:59:54Z +10688 394 1 12080 4.99 2005-08-17T22:08:04Z 2020-02-15T06:59:54Z +10689 394 1 12389 4.99 2005-08-18T08:48:36Z 2020-02-15T06:59:54Z +10690 394 2 12510 9.99 2005-08-18T13:22:25Z 2020-02-15T06:59:54Z +10691 394 2 13047 0.99 2005-08-19T09:24:49Z 2020-02-15T06:59:54Z +10692 394 1 14605 0.99 2005-08-21T17:56:06Z 2020-02-15T06:59:54Z +10693 394 2 13178 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +10694 395 1 1270 0.99 2005-06-15T07:30:22Z 2020-02-15T06:59:54Z +10695 395 1 1562 0.99 2005-06-16T02:46:27Z 2020-02-15T06:59:54Z +10696 395 2 1603 0.99 2005-06-16T06:14:03Z 2020-02-15T06:59:54Z +10697 395 1 3030 4.99 2005-06-20T11:51:59Z 2020-02-15T06:59:54Z +10698 395 1 3310 0.99 2005-06-21T08:04:51Z 2020-02-15T06:59:54Z +10699 395 1 3389 6.99 2005-06-21T14:37:55Z 2020-02-15T06:59:54Z +10700 395 2 3684 0.99 2005-07-06T09:29:22Z 2020-02-15T06:59:54Z +10701 395 1 4185 5.99 2005-07-07T10:31:05Z 2020-02-15T06:59:54Z +10702 395 1 4393 4.99 2005-07-07T21:12:36Z 2020-02-15T06:59:54Z +10703 395 1 5087 0.99 2005-07-09T05:44:28Z 2020-02-15T06:59:54Z +10704 395 2 5136 0.99 2005-07-09T07:55:01Z 2020-02-15T06:59:54Z +10705 395 1 7740 2.99 2005-07-28T05:23:36Z 2020-02-15T06:59:54Z +10706 395 2 7986 7.99 2005-07-28T14:30:13Z 2020-02-15T06:59:54Z +10707 395 1 11889 0.99 2005-08-17T15:08:27Z 2020-02-15T06:59:54Z +10708 395 1 14471 5.99 2005-08-21T13:10:40Z 2020-02-15T06:59:54Z +10709 395 2 14720 0.99 2005-08-21T21:43:53Z 2020-02-15T06:59:54Z +10710 395 1 15698 2.99 2005-08-23T10:11:40Z 2020-02-15T06:59:54Z +10711 395 1 15856 0.99 2005-08-23T15:59:12Z 2020-02-15T06:59:54Z +10712 395 1 15970 4.99 2005-08-23T19:54:24Z 2020-02-15T06:59:54Z +10713 396 2 641 5.99 2005-05-28T18:45:47Z 2020-02-15T06:59:54Z +10714 396 2 1370 1.99 2005-06-15T14:31:05Z 2020-02-15T06:59:54Z +10715 396 2 1385 4.99 2005-06-15T15:28:23Z 2020-02-15T06:59:54Z +10716 396 2 1408 6.99 2005-06-15T16:57:58Z 2020-02-15T06:59:54Z +10717 396 2 3909 6.99 2005-07-06T19:54:41Z 2020-02-15T06:59:54Z +10718 396 1 5059 1.99 2005-07-09T04:28:01Z 2020-02-15T06:59:54Z +10719 396 2 6335 2.99 2005-07-11T19:25:15Z 2020-02-15T06:59:54Z +10720 396 2 6764 4.99 2005-07-12T15:29:27Z 2020-02-15T06:59:54Z +10721 396 2 6771 2.99 2005-07-12T15:54:40Z 2020-02-15T06:59:54Z +10722 396 2 7142 0.99 2005-07-27T06:55:39Z 2020-02-15T06:59:54Z +10723 396 2 7313 2.99 2005-07-27T13:11:57Z 2020-02-15T06:59:54Z +10724 396 2 8371 2.99 2005-07-29T05:16:35Z 2020-02-15T06:59:54Z +10725 396 2 8807 2.99 2005-07-29T21:36:59Z 2020-02-15T06:59:54Z +10726 396 1 9344 5.99 2005-07-30T18:13:45Z 2020-02-15T06:59:54Z +10727 396 2 10120 2.99 2005-07-31T21:24:24Z 2020-02-15T06:59:54Z +10728 396 2 10124 0.99 2005-07-31T21:31:49Z 2020-02-15T06:59:54Z +10729 396 2 10195 6.99 2005-08-01T00:34:42Z 2020-02-15T06:59:54Z +10730 396 2 10610 0.99 2005-08-01T14:49:41Z 2020-02-15T06:59:54Z +10731 396 2 12393 5.99 2005-08-18T09:02:41Z 2020-02-15T06:59:54Z +10732 396 1 12895 4.99 2005-08-19T03:50:48Z 2020-02-15T06:59:54Z +10733 396 2 13355 4.99 2005-08-19T20:59:19Z 2020-02-15T06:59:54Z +10734 396 1 14078 3.99 2005-08-20T23:26:40Z 2020-02-15T06:59:54Z +10735 396 1 14169 4.99 2005-08-21T03:00:31Z 2020-02-15T06:59:54Z +10736 396 1 14508 2.99 2005-08-21T14:33:58Z 2020-02-15T06:59:54Z +10737 396 2 14778 5.99 2005-08-21T23:56:30Z 2020-02-15T06:59:54Z +10738 396 1 14792 1.99 2005-08-22T00:36:41Z 2020-02-15T06:59:54Z +10739 396 2 15198 7.99 2005-08-22T16:15:33Z 2020-02-15T06:59:54Z +10740 397 2 1002 0.99 2005-05-31T00:47:56Z 2020-02-15T06:59:54Z +10741 397 1 1769 5.99 2005-06-16T18:07:48Z 2020-02-15T06:59:54Z +10742 397 2 3027 1.99 2005-06-20T11:50:30Z 2020-02-15T06:59:54Z +10743 397 1 3489 5.99 2005-07-05T23:33:40Z 2020-02-15T06:59:54Z +10744 397 1 4036 0.99 2005-07-07T02:48:00Z 2020-02-15T06:59:54Z +10745 397 2 5103 4.99 2005-07-09T06:34:40Z 2020-02-15T06:59:54Z +10746 397 2 5598 4.99 2005-07-10T04:48:29Z 2020-02-15T06:59:54Z +10747 397 2 5763 4.99 2005-07-10T12:58:12Z 2020-02-15T06:59:54Z +10748 397 2 6014 2.99 2005-07-11T02:02:55Z 2020-02-15T06:59:54Z +10749 397 2 6266 2.99 2005-07-11T15:45:39Z 2020-02-15T06:59:54Z +10750 397 1 6471 4.99 2005-07-12T01:31:06Z 2020-02-15T06:59:54Z +10751 397 2 7356 2.99 2005-07-27T14:47:35Z 2020-02-15T06:59:54Z +10752 397 2 7892 4.99 2005-07-28T10:46:58Z 2020-02-15T06:59:54Z +10753 397 1 8103 6.99 2005-07-28T18:50:14Z 2020-02-15T06:59:54Z +10754 397 1 9495 0.99 2005-07-30T23:54:26Z 2020-02-15T06:59:54Z +10755 397 2 9608 1.99 2005-07-31T03:51:52Z 2020-02-15T06:59:54Z +10756 397 1 10534 0.99 2005-08-01T12:15:11Z 2020-02-15T06:59:54Z +10757 397 2 10598 4.99 2005-08-01T14:23:36Z 2020-02-15T06:59:54Z +10758 397 1 10785 1.99 2005-08-01T21:24:55Z 2020-02-15T06:59:54Z +10759 397 2 11511 4.99 2005-08-16T23:39:59Z 2020-02-15T06:59:54Z +10760 397 2 12223 2.99 2005-08-18T02:58:40Z 2020-02-15T06:59:54Z +10761 397 1 12276 0.99 2005-08-18T04:43:22Z 2020-02-15T06:59:54Z +10762 397 2 12329 1.99 2005-08-18T06:44:30Z 2020-02-15T06:59:54Z +10763 397 2 12700 0.99 2005-08-18T20:24:46Z 2020-02-15T06:59:54Z +10764 397 2 12726 2.99 2005-08-18T21:44:46Z 2020-02-15T06:59:54Z +10765 397 1 12772 4.99 2005-08-18T23:29:25Z 2020-02-15T06:59:54Z +10766 397 2 14100 3.99 2005-08-21T00:31:07Z 2020-02-15T06:59:54Z +10767 397 1 14790 6.99 2005-08-22T00:34:17Z 2020-02-15T06:59:54Z +10768 397 1 15083 6.99 2005-08-22T11:17:37Z 2020-02-15T06:59:54Z +10769 398 1 486 4.99 2005-05-27T23:51:12Z 2020-02-15T06:59:54Z +10770 398 2 1228 2.99 2005-06-15T03:50:36Z 2020-02-15T06:59:54Z +10771 398 1 2087 6.99 2005-06-17T17:35:10Z 2020-02-15T06:59:54Z +10772 398 2 3141 9.99 2005-06-20T19:55:47Z 2020-02-15T06:59:54Z +10773 398 2 5234 5.99 2005-07-09T12:44:47Z 2020-02-15T06:59:54Z +10774 398 2 8119 3.99 2005-07-28T19:23:15Z 2020-02-15T06:59:54Z +10775 398 2 8204 4.99 2005-07-28T23:18:29Z 2020-02-15T06:59:54Z +10776 398 1 8428 7.99 2005-07-29T07:10:14Z 2020-02-15T06:59:54Z +10777 398 1 9042 2.99 2005-07-30T06:33:55Z 2020-02-15T06:59:54Z +10778 398 2 9281 5.99 2005-07-30T15:15:51Z 2020-02-15T06:59:54Z +10779 398 1 9771 1.99 2005-07-31T09:55:36Z 2020-02-15T06:59:54Z +10780 398 1 10230 2.99 2005-08-01T01:49:36Z 2020-02-15T06:59:54Z +10781 398 2 11132 4.99 2005-08-02T09:14:09Z 2020-02-15T06:59:54Z +10782 398 2 12528 2.99 2005-08-18T13:52:41Z 2020-02-15T06:59:54Z +10783 398 2 13643 4.99 2005-08-20T07:42:24Z 2020-02-15T06:59:54Z +10784 398 1 15189 3.99 2005-08-22T15:56:42Z 2020-02-15T06:59:54Z +10785 399 2 10 5.99 2005-05-25T00:02:21Z 2020-02-15T06:59:54Z +10786 399 2 694 6.99 2005-05-29T01:49:43Z 2020-02-15T06:59:54Z +10787 399 2 883 4.99 2005-05-30T06:21:05Z 2020-02-15T06:59:54Z +10788 399 2 2961 2.99 2005-06-20T07:29:15Z 2020-02-15T06:59:54Z +10789 399 1 3036 5.99 2005-06-20T12:18:31Z 2020-02-15T06:59:54Z +10790 399 2 4957 0.99 2005-07-08T23:18:48Z 2020-02-15T06:59:54Z +10791 399 2 4981 4.99 2005-07-09T00:29:29Z 2020-02-15T06:59:54Z +10792 399 1 5507 0.99 2005-07-10T00:49:04Z 2020-02-15T06:59:54Z +10793 399 2 6006 2.99 2005-07-11T01:38:42Z 2020-02-15T06:59:54Z +10794 399 2 6229 6.99 2005-07-11T13:59:50Z 2020-02-15T06:59:54Z +10795 399 2 6674 4.99 2005-07-12T11:51:54Z 2020-02-15T06:59:54Z +10796 399 2 8461 5.99 2005-07-29T08:11:31Z 2020-02-15T06:59:54Z +10797 399 2 9728 2.99 2005-07-31T08:40:54Z 2020-02-15T06:59:54Z +10798 399 2 10654 2.99 2005-08-01T16:31:35Z 2020-02-15T06:59:54Z +10799 399 2 10960 5.99 2005-08-02T03:46:18Z 2020-02-15T06:59:54Z +10800 399 1 11329 4.99 2005-08-02T16:42:52Z 2020-02-15T06:59:54Z +10801 399 1 11953 3.99 2005-08-17T17:16:42Z 2020-02-15T06:59:54Z +10802 399 1 13253 4.99 2005-08-19T16:53:56Z 2020-02-15T06:59:54Z +10803 399 2 13293 4.99 2005-08-19T18:35:52Z 2020-02-15T06:59:54Z +10804 399 1 15300 0.99 2005-08-22T19:44:00Z 2020-02-15T06:59:54Z +10805 399 1 15468 4.99 2005-08-23T01:25:30Z 2020-02-15T06:59:54Z +10806 400 1 95 3.99 2005-05-25T16:12:52Z 2020-02-15T06:59:54Z +10807 400 2 171 6.99 2005-05-26T03:14:15Z 2020-02-15T06:59:54Z +10808 400 2 516 1.99 2005-05-28T03:11:47Z 2020-02-15T06:59:54Z +10809 400 2 894 5.99 2005-05-30T08:31:31Z 2020-02-15T06:59:54Z +10810 400 2 1364 0.99 2005-06-15T14:05:32Z 2020-02-15T06:59:54Z +10811 400 1 1917 3.99 2005-06-17T05:36:07Z 2020-02-15T06:59:54Z +10812 400 2 1923 6.99 2005-06-17T06:06:10Z 2020-02-15T06:59:54Z +10813 400 1 4573 6.99 2005-07-08T05:38:46Z 2020-02-15T06:59:54Z +10814 400 1 4645 2.99 2005-07-08T09:20:09Z 2020-02-15T06:59:54Z +10815 400 2 5212 6.99 2005-07-09T11:37:47Z 2020-02-15T06:59:54Z +10816 400 2 5222 5.99 2005-07-09T12:05:45Z 2020-02-15T06:59:54Z +10817 400 2 6790 5.99 2005-07-12T16:34:59Z 2020-02-15T06:59:54Z +10818 400 2 6994 2.99 2005-07-27T01:08:26Z 2020-02-15T06:59:54Z +10819 400 2 7296 2.99 2005-07-27T12:39:48Z 2020-02-15T06:59:54Z +10820 400 1 7682 5.99 2005-07-28T03:07:29Z 2020-02-15T06:59:54Z +10821 400 2 9177 5.99 2005-07-30T11:52:40Z 2020-02-15T06:59:54Z +10822 400 2 9756 4.99 2005-07-31T09:25:00Z 2020-02-15T06:59:54Z +10823 400 1 10187 2.99 2005-08-01T00:15:49Z 2020-02-15T06:59:54Z +10824 400 2 10484 2.99 2005-08-01T10:19:53Z 2020-02-15T06:59:54Z +10825 400 1 10711 0.99 2005-08-01T18:45:09Z 2020-02-15T06:59:54Z +10826 400 2 11510 6.99 2005-08-16T23:30:07Z 2020-02-15T06:59:54Z +10827 400 2 11530 2.99 2005-08-17T00:29:00Z 2020-02-15T06:59:54Z +10828 400 1 11600 5.99 2005-08-17T03:12:04Z 2020-02-15T06:59:54Z +10829 400 1 12514 2.99 2005-08-18T13:33:55Z 2020-02-15T06:59:54Z +10830 400 2 13449 2.99 2005-08-20T00:17:01Z 2020-02-15T06:59:54Z +10831 400 1 14775 2.99 2005-08-21T23:53:07Z 2020-02-15T06:59:54Z +10832 400 2 15533 4.99 2005-08-23T03:54:39Z 2020-02-15T06:59:54Z +10833 400 2 15988 4.99 2005-08-23T20:23:08Z 2020-02-15T06:59:54Z +10834 401 2 167 4.99 2005-05-26T02:50:31Z 2020-02-15T06:59:54Z +10835 401 2 446 4.99 2005-05-27T18:48:41Z 2020-02-15T06:59:54Z +10836 401 2 811 1.99 2005-05-29T19:30:42Z 2020-02-15T06:59:54Z +10837 401 1 4059 0.99 2005-07-07T04:04:26Z 2020-02-15T06:59:54Z +10838 401 2 4292 7.99 2005-07-07T15:48:38Z 2020-02-15T06:59:54Z +10839 401 2 5923 0.99 2005-07-10T21:40:06Z 2020-02-15T06:59:54Z +10840 401 1 0.99 2005-07-12T06:26:10Z 2020-02-15T06:59:54Z +10841 401 2 7651 4.99 2005-07-28T01:48:32Z 2020-02-15T06:59:54Z +10842 401 1 8450 2.99 2005-07-29T07:44:05Z 2020-02-15T06:59:54Z +10843 401 2 8669 2.99 2005-07-29T15:44:55Z 2020-02-15T06:59:54Z +10844 401 1 8722 8.99 2005-07-29T17:58:58Z 2020-02-15T06:59:54Z +10845 401 2 9701 4.99 2005-07-31T07:32:21Z 2020-02-15T06:59:54Z +10846 401 2 10171 0.99 2005-07-31T23:29:05Z 2020-02-15T06:59:54Z +10847 401 1 11820 2.99 2005-08-17T12:25:33Z 2020-02-15T06:59:54Z +10848 401 1 12475 4.99 2005-08-18T12:14:21Z 2020-02-15T06:59:54Z +10849 401 2 12479 4.99 2005-08-18T12:26:37Z 2020-02-15T06:59:54Z +10850 401 1 12906 2.99 2005-08-19T04:13:43Z 2020-02-15T06:59:54Z +10851 401 1 13024 4.99 2005-08-19T08:19:21Z 2020-02-15T06:59:54Z +10852 401 1 14359 0.99 2005-08-21T09:16:19Z 2020-02-15T06:59:54Z +10853 401 2 14433 1.99 2005-08-21T11:36:34Z 2020-02-15T06:59:54Z +10854 401 1 15831 0.99 2005-08-23T15:21:19Z 2020-02-15T06:59:54Z +10855 401 1 15927 0.99 2005-08-23T18:23:11Z 2020-02-15T06:59:54Z +10856 402 2 801 1.99 2005-05-29T17:35:50Z 2020-02-15T06:59:54Z +10857 402 2 1194 4.99 2005-06-15T01:25:08Z 2020-02-15T06:59:54Z +10858 402 2 2490 4.99 2005-06-18T22:00:50Z 2020-02-15T06:59:54Z +10859 402 2 2913 2.99 2005-06-20T03:42:27Z 2020-02-15T06:59:54Z +10860 402 2 3564 6.99 2005-07-06T03:02:13Z 2020-02-15T06:59:54Z +10861 402 2 3612 3.99 2005-07-06T05:37:26Z 2020-02-15T06:59:54Z +10862 402 2 3755 5.99 2005-07-06T12:37:16Z 2020-02-15T06:59:54Z +10863 402 1 4399 2.99 2005-07-07T21:20:28Z 2020-02-15T06:59:54Z +10864 402 2 4604 3.99 2005-07-08T06:58:43Z 2020-02-15T06:59:54Z +10865 402 2 5329 4.99 2005-07-09T16:49:46Z 2020-02-15T06:59:54Z +10866 402 2 6183 2.99 2005-07-11T11:14:35Z 2020-02-15T06:59:54Z +10867 402 1 6283 3.99 2005-07-11T16:47:32Z 2020-02-15T06:59:54Z +10868 402 1 7633 0.99 2005-07-28T01:03:41Z 2020-02-15T06:59:54Z +10869 402 2 8521 7.99 2005-07-29T10:12:45Z 2020-02-15T06:59:54Z +10870 402 1 9657 6.99 2005-07-31T06:00:41Z 2020-02-15T06:59:54Z +10871 402 2 9779 0.99 2005-07-31T10:08:33Z 2020-02-15T06:59:54Z +10872 402 2 11045 0.99 2005-08-02T06:07:54Z 2020-02-15T06:59:54Z +10873 402 2 11549 4.99 2005-08-17T01:01:48Z 2020-02-15T06:59:54Z +10874 402 2 11920 0.99 2005-08-17T16:10:19Z 2020-02-15T06:59:54Z +10875 402 1 15428 4.99 2005-08-23T00:11:52Z 2020-02-15T06:59:54Z +10876 403 1 442 2.99 2005-05-27T18:12:13Z 2020-02-15T06:59:54Z +10877 403 1 517 0.99 2005-05-28T03:17:57Z 2020-02-15T06:59:54Z +10878 403 2 1221 4.99 2005-06-15T03:35:16Z 2020-02-15T06:59:54Z +10879 403 1 1249 8.99 2005-06-15T05:38:09Z 2020-02-15T06:59:54Z +10880 403 2 2488 3.99 2005-06-18T21:38:26Z 2020-02-15T06:59:54Z +10881 403 1 2927 4.99 2005-06-20T04:41:41Z 2020-02-15T06:59:54Z +10882 403 2 3049 6.99 2005-06-20T12:51:01Z 2020-02-15T06:59:54Z +10883 403 1 3356 5.99 2005-06-21T11:38:45Z 2020-02-15T06:59:54Z +10884 403 1 3644 6.99 2005-07-06T07:20:11Z 2020-02-15T06:59:54Z +10885 403 2 3737 3.99 2005-07-06T11:45:53Z 2020-02-15T06:59:54Z +10886 403 2 4096 4.99 2005-07-07T06:09:11Z 2020-02-15T06:59:54Z +10887 403 1 5982 4.99 2005-07-11T00:24:44Z 2020-02-15T06:59:54Z +10888 403 2 6322 2.99 2005-07-11T18:58:20Z 2020-02-15T06:59:54Z +10889 403 1 6342 4.99 2005-07-11T19:48:24Z 2020-02-15T06:59:54Z +10890 403 1 7103 4.99 2005-07-27T05:08:59Z 2020-02-15T06:59:54Z +10891 403 2 8013 5.99 2005-07-28T15:30:26Z 2020-02-15T06:59:54Z +10892 403 1 9058 2.99 2005-07-30T07:15:45Z 2020-02-15T06:59:54Z +10893 403 2 9486 7.99 2005-07-30T23:35:42Z 2020-02-15T06:59:54Z +10894 403 2 9794 4.99 2005-07-31T10:47:01Z 2020-02-15T06:59:54Z +10895 403 2 10109 5.99 2005-07-31T21:04:49Z 2020-02-15T06:59:54Z +10896 403 1 10443 2.99 2005-08-01T09:01:04Z 2020-02-15T06:59:54Z +10897 403 1 10547 6.99 2005-08-01T12:44:17Z 2020-02-15T06:59:54Z +10898 403 2 10789 2.99 2005-08-01T21:37:55Z 2020-02-15T06:59:54Z +10899 403 1 11038 7.99 2005-08-02T05:59:42Z 2020-02-15T06:59:54Z +10900 403 2 11391 9.99 2005-08-02T18:40:12Z 2020-02-15T06:59:54Z +10901 403 2 11427 2.99 2005-08-02T20:02:39Z 2020-02-15T06:59:54Z +10902 403 2 11460 0.99 2005-08-02T21:28:03Z 2020-02-15T06:59:54Z +10903 403 2 11558 0.99 2005-08-17T01:19:52Z 2020-02-15T06:59:54Z +10904 403 2 12005 5.99 2005-08-17T18:56:55Z 2020-02-15T06:59:54Z +10905 403 1 12132 2.99 2005-08-17T23:37:03Z 2020-02-15T06:59:54Z +10906 403 1 12793 5.99 2005-08-19T00:20:36Z 2020-02-15T06:59:54Z +10907 403 1 14519 2.99 2005-08-21T14:59:29Z 2020-02-15T06:59:54Z +10908 403 1 14662 0.99 2005-08-21T19:45:27Z 2020-02-15T06:59:54Z +10909 403 2 14725 4.99 2005-08-21T22:02:08Z 2020-02-15T06:59:54Z +10910 403 1 15410 4.99 2005-08-22T23:27:43Z 2020-02-15T06:59:54Z +10911 404 2 1081 5.99 2005-05-31T10:56:32Z 2020-02-15T06:59:54Z +10912 404 2 1506 2.99 2005-06-15T22:19:37Z 2020-02-15T06:59:54Z +10913 404 2 1840 4.99 2005-06-16T23:39:34Z 2020-02-15T06:59:54Z +10914 404 1 2715 4.99 2005-06-19T14:29:35Z 2020-02-15T06:59:54Z +10915 404 1 2951 2.99 2005-06-20T06:23:01Z 2020-02-15T06:59:54Z +10916 404 1 3927 2.99 2005-07-06T20:48:14Z 2020-02-15T06:59:54Z +10917 404 1 4495 2.99 2005-07-08T01:43:46Z 2020-02-15T06:59:54Z +10918 404 2 4615 8.99 2005-07-08T07:46:53Z 2020-02-15T06:59:54Z +10919 404 1 4653 4.99 2005-07-08T09:48:01Z 2020-02-15T06:59:54Z +10920 404 1 4963 4.99 2005-07-08T23:38:40Z 2020-02-15T06:59:54Z +10921 404 1 5632 3.99 2005-07-10T06:17:06Z 2020-02-15T06:59:54Z +10922 404 1 6114 1.99 2005-07-11T07:33:48Z 2020-02-15T06:59:54Z +10923 404 2 6779 0.99 2005-07-12T16:10:50Z 2020-02-15T06:59:54Z +10924 404 1 6964 4.99 2005-07-27T00:15:04Z 2020-02-15T06:59:54Z +10925 404 1 8058 5.99 2005-07-28T17:07:49Z 2020-02-15T06:59:54Z +10926 404 1 8455 3.99 2005-07-29T07:53:06Z 2020-02-15T06:59:54Z +10927 404 1 9206 4.99 2005-07-30T12:46:59Z 2020-02-15T06:59:54Z +10928 404 1 9472 4.99 2005-07-30T23:03:32Z 2020-02-15T06:59:54Z +10929 404 2 9824 2.99 2005-07-31T11:49:55Z 2020-02-15T06:59:54Z +10930 404 1 10651 2.99 2005-08-01T16:20:22Z 2020-02-15T06:59:54Z +10931 404 1 12325 5.99 2005-08-18T06:41:30Z 2020-02-15T06:59:54Z +10932 404 1 12554 8.99 2005-08-18T14:47:28Z 2020-02-15T06:59:54Z +10933 404 2 13412 5.99 2005-08-19T22:46:35Z 2020-02-15T06:59:54Z +10934 404 1 13422 4.99 2005-08-19T23:07:24Z 2020-02-15T06:59:54Z +10935 404 1 14691 0.99 2005-08-21T20:42:29Z 2020-02-15T06:59:54Z +10936 404 2 14835 5.99 2005-08-22T01:49:07Z 2020-02-15T06:59:54Z +10937 404 2 14838 4.99 2005-08-22T01:57:34Z 2020-02-15T06:59:54Z +10938 404 2 14912 4.99 2005-08-22T04:51:42Z 2020-02-15T06:59:54Z +10939 404 2 15087 0.99 2005-08-22T11:24:09Z 2020-02-15T06:59:54Z +10940 404 2 15290 10.99 2005-08-22T19:28:02Z 2020-02-15T06:59:54Z +10941 405 1 121 2.99 2005-05-25T19:41:29Z 2020-02-15T06:59:54Z +10942 405 2 770 4.99 2005-05-29T12:56:50Z 2020-02-15T06:59:54Z +10943 405 2 1315 4.99 2005-06-15T10:23:08Z 2020-02-15T06:59:54Z +10944 405 1 1888 0.99 2005-06-17T03:58:36Z 2020-02-15T06:59:54Z +10945 405 2 1953 5.99 2005-06-17T08:34:57Z 2020-02-15T06:59:54Z +10946 405 2 2654 3.99 2005-06-19T10:37:54Z 2020-02-15T06:59:54Z +10947 405 1 3240 4.99 2005-06-21T02:53:17Z 2020-02-15T06:59:54Z +10948 405 1 3253 5.99 2005-06-21T03:25:37Z 2020-02-15T06:59:54Z +10949 405 2 4223 0.99 2005-07-07T12:23:54Z 2020-02-15T06:59:54Z +10950 405 2 4401 0.99 2005-07-07T21:26:27Z 2020-02-15T06:59:54Z +10951 405 2 5040 7.99 2005-07-09T03:16:34Z 2020-02-15T06:59:54Z +10952 405 1 5231 0.99 2005-07-09T12:35:02Z 2020-02-15T06:59:54Z +10953 405 2 5512 1.99 2005-07-10T01:05:38Z 2020-02-15T06:59:54Z +10954 405 1 6110 2.99 2005-07-11T07:23:47Z 2020-02-15T06:59:54Z +10955 405 1 7455 2.99 2005-07-27T18:34:41Z 2020-02-15T06:59:54Z +10956 405 1 7759 0.99 2005-07-28T06:28:45Z 2020-02-15T06:59:54Z +10957 405 2 8482 2.99 2005-07-29T08:46:33Z 2020-02-15T06:59:54Z +10958 405 1 8955 5.99 2005-07-30T03:28:27Z 2020-02-15T06:59:54Z +10959 405 1 9569 0.99 2005-07-31T02:39:38Z 2020-02-15T06:59:54Z +10960 405 1 10472 4.99 2005-08-01T09:54:41Z 2020-02-15T06:59:54Z +10961 405 2 10823 4.99 2005-08-01T22:59:10Z 2020-02-15T06:59:54Z +10962 405 1 11345 7.99 2005-08-02T17:14:19Z 2020-02-15T06:59:54Z +10963 405 1 12050 0.99 2005-08-17T20:55:25Z 2020-02-15T06:59:54Z +10964 405 2 12425 5.99 2005-08-18T10:18:06Z 2020-02-15T06:59:54Z +10965 405 1 13304 1.99 2005-08-19T18:56:32Z 2020-02-15T06:59:54Z +10966 405 1 13398 0.99 2005-08-19T22:08:48Z 2020-02-15T06:59:54Z +10967 405 1 14274 4.99 2005-08-21T06:29:20Z 2020-02-15T06:59:54Z +10968 405 2 14537 0.99 2005-08-21T15:24:24Z 2020-02-15T06:59:54Z +10969 405 1 15072 1.99 2005-08-22T10:58:45Z 2020-02-15T06:59:54Z +10970 405 2 15383 2.99 2005-08-22T22:31:20Z 2020-02-15T06:59:54Z +10971 405 1 15932 4.99 2005-08-23T18:31:40Z 2020-02-15T06:59:54Z +10972 405 1 12792 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +10973 406 1 855 0.99 2005-05-30T02:00:28Z 2020-02-15T06:59:54Z +10974 406 1 2113 4.99 2005-06-17T19:57:46Z 2020-02-15T06:59:54Z +10975 406 2 2150 3.99 2005-06-17T22:50:36Z 2020-02-15T06:59:54Z +10976 406 1 2241 2.99 2005-06-18T04:31:41Z 2020-02-15T06:59:54Z +10977 406 2 2325 0.99 2005-06-18T10:08:07Z 2020-02-15T06:59:54Z +10978 406 2 2585 0.99 2005-06-19T05:05:03Z 2020-02-15T06:59:54Z +10979 406 1 3186 7.99 2005-06-20T23:04:20Z 2020-02-15T06:59:54Z +10980 406 1 3306 4.99 2005-06-21T07:46:58Z 2020-02-15T06:59:54Z +10981 406 2 4264 4.99 2005-07-07T14:25:28Z 2020-02-15T06:59:54Z +10982 406 2 5098 4.99 2005-07-09T06:13:54Z 2020-02-15T06:59:54Z +10983 406 2 5263 0.99 2005-07-09T14:10:36Z 2020-02-15T06:59:54Z +10984 406 1 5766 0.99 2005-07-10T13:07:31Z 2020-02-15T06:59:54Z +10985 406 2 6439 2.99 2005-07-12T00:23:48Z 2020-02-15T06:59:54Z +10986 406 2 7109 5.99 2005-07-27T05:28:57Z 2020-02-15T06:59:54Z +10987 406 1 7171 4.99 2005-07-27T07:58:35Z 2020-02-15T06:59:54Z +10988 406 1 7259 4.99 2005-07-27T11:06:00Z 2020-02-15T06:59:54Z +10989 406 2 7604 7.99 2005-07-27T23:54:52Z 2020-02-15T06:59:54Z +10990 406 2 8080 4.99 2005-07-28T18:05:06Z 2020-02-15T06:59:54Z +10991 406 2 8295 2.99 2005-07-29T02:42:14Z 2020-02-15T06:59:54Z +10992 406 2 8630 0.99 2005-07-29T14:07:59Z 2020-02-15T06:59:54Z +10993 406 1 8903 0.99 2005-07-30T01:08:06Z 2020-02-15T06:59:54Z +10994 406 2 8962 1.99 2005-07-30T03:43:45Z 2020-02-15T06:59:54Z +10995 406 2 9224 0.99 2005-07-30T13:25:37Z 2020-02-15T06:59:54Z +10996 406 1 9291 4.99 2005-07-30T16:03:39Z 2020-02-15T06:59:54Z +10997 406 2 9487 2.99 2005-07-30T23:40:22Z 2020-02-15T06:59:54Z +10998 406 1 9660 8.99 2005-07-31T06:03:17Z 2020-02-15T06:59:54Z +10999 406 1 10632 1.99 2005-08-01T15:36:56Z 2020-02-15T06:59:54Z +11000 406 1 11603 4.99 2005-08-17T03:22:10Z 2020-02-15T06:59:54Z +11001 406 2 12505 5.99 2005-08-18T13:17:30Z 2020-02-15T06:59:54Z +11002 406 2 14205 6.99 2005-08-21T03:57:15Z 2020-02-15T06:59:54Z +11003 406 2 14421 2.99 2005-08-21T11:20:21Z 2020-02-15T06:59:54Z +11004 406 2 14601 2.99 2005-08-21T17:45:52Z 2020-02-15T06:59:54Z +11005 407 1 619 7.99 2005-05-28T15:52:26Z 2020-02-15T06:59:54Z +11006 407 1 1698 2.99 2005-06-16T13:04:42Z 2020-02-15T06:59:54Z +11007 407 2 2597 0.99 2005-06-19T05:53:46Z 2020-02-15T06:59:54Z +11008 407 1 4296 0.99 2005-07-07T16:16:03Z 2020-02-15T06:59:54Z +11009 407 1 5070 4.99 2005-07-09T04:58:26Z 2020-02-15T06:59:54Z +11010 407 2 5590 9.99 2005-07-10T04:23:11Z 2020-02-15T06:59:54Z +11011 407 1 6727 0.99 2005-07-12T13:54:25Z 2020-02-15T06:59:54Z +11012 407 1 7363 5.99 2005-07-27T14:58:29Z 2020-02-15T06:59:54Z +11013 407 2 7643 4.99 2005-07-28T01:19:44Z 2020-02-15T06:59:54Z +11014 407 1 8078 2.99 2005-07-28T17:54:42Z 2020-02-15T06:59:54Z +11015 407 1 8109 4.99 2005-07-28T19:07:44Z 2020-02-15T06:59:54Z +11016 407 1 8197 9.99 2005-07-28T23:04:10Z 2020-02-15T06:59:54Z +11017 407 2 8571 0.99 2005-07-29T11:48:39Z 2020-02-15T06:59:54Z +11018 407 1 8802 2.99 2005-07-29T21:25:51Z 2020-02-15T06:59:54Z +11019 407 2 10774 4.99 2005-08-01T20:54:33Z 2020-02-15T06:59:54Z +11020 407 1 11214 8.99 2005-08-02T12:19:50Z 2020-02-15T06:59:54Z +11021 407 1 11222 2.99 2005-08-02T12:32:28Z 2020-02-15T06:59:54Z +11022 407 2 11382 5.99 2005-08-02T18:20:52Z 2020-02-15T06:59:54Z +11023 407 2 11518 4.99 2005-08-16T23:59:49Z 2020-02-15T06:59:54Z +11024 407 1 11677 0.99 2005-08-17T06:06:26Z 2020-02-15T06:59:54Z +11025 407 2 12566 0.99 2005-08-18T15:13:04Z 2020-02-15T06:59:54Z +11026 407 2 12931 2.99 2005-08-19T05:11:47Z 2020-02-15T06:59:54Z +11027 407 1 13800 0.99 2005-08-20T12:40:48Z 2020-02-15T06:59:54Z +11028 407 2 13856 6.99 2005-08-20T14:49:32Z 2020-02-15T06:59:54Z +11029 407 2 14401 6.99 2005-08-21T10:36:20Z 2020-02-15T06:59:54Z +11030 407 2 15320 0.99 2005-08-22T20:17:49Z 2020-02-15T06:59:54Z +11031 407 2 15334 1.99 2005-08-22T20:44:35Z 2020-02-15T06:59:54Z +11032 408 2 3 3.99 2005-05-24T23:03:39Z 2020-02-15T06:59:54Z +11033 408 2 59 5.99 2005-05-25T08:56:42Z 2020-02-15T06:59:54Z +11034 408 1 526 2.99 2005-05-28T04:27:37Z 2020-02-15T06:59:54Z +11035 408 2 2479 4.99 2005-06-18T21:03:08Z 2020-02-15T06:59:54Z +11036 408 1 2564 2.99 2005-06-19T03:41:10Z 2020-02-15T06:59:54Z +11037 408 2 2728 2.99 2005-06-19T15:04:04Z 2020-02-15T06:59:54Z +11038 408 2 4330 3.99 2005-07-07T18:09:41Z 2020-02-15T06:59:54Z +11039 408 2 5073 0.99 2005-07-09T05:02:35Z 2020-02-15T06:59:54Z +11040 408 1 6062 0.99 2005-07-11T04:11:58Z 2020-02-15T06:59:54Z +11041 408 2 6203 4.99 2005-07-11T12:28:57Z 2020-02-15T06:59:54Z +11042 408 2 6826 2.99 2005-07-12T18:32:02Z 2020-02-15T06:59:54Z +11043 408 1 7053 4.99 2005-07-27T03:38:54Z 2020-02-15T06:59:54Z +11044 408 2 7996 4.99 2005-07-28T15:00:49Z 2020-02-15T06:59:54Z +11045 408 2 8251 4.99 2005-07-29T00:50:14Z 2020-02-15T06:59:54Z +11046 408 2 8469 3.99 2005-07-29T08:26:27Z 2020-02-15T06:59:54Z +11047 408 2 8902 6.99 2005-07-30T01:08:06Z 2020-02-15T06:59:54Z +11048 408 1 9052 0.99 2005-07-30T07:06:08Z 2020-02-15T06:59:54Z +11049 408 2 9757 4.99 2005-07-31T09:25:14Z 2020-02-15T06:59:54Z +11050 408 2 11115 2.99 2005-08-02T08:31:06Z 2020-02-15T06:59:54Z +11051 408 1 12140 2.99 2005-08-17T23:57:55Z 2020-02-15T06:59:54Z +11052 408 1 12338 4.99 2005-08-18T07:04:24Z 2020-02-15T06:59:54Z +11053 408 1 12498 2.99 2005-08-18T13:01:08Z 2020-02-15T06:59:54Z +11054 408 2 12900 0.99 2005-08-19T04:03:49Z 2020-02-15T06:59:54Z +11055 408 1 13508 7.99 2005-08-20T02:12:54Z 2020-02-15T06:59:54Z +11056 408 2 13744 3.99 2005-08-20T10:51:45Z 2020-02-15T06:59:54Z +11057 408 1 13944 2.99 2005-08-20T17:41:16Z 2020-02-15T06:59:54Z +11058 408 2 14733 4.99 2005-08-21T22:22:33Z 2020-02-15T06:59:54Z +11059 408 1 15628 2.99 2005-08-23T07:28:04Z 2020-02-15T06:59:54Z +11060 408 2 15716 1.99 2005-08-23T11:02:00Z 2020-02-15T06:59:54Z +11061 408 1 15765 6.99 2005-08-23T13:06:19Z 2020-02-15T06:59:54Z +11062 409 1 310 6.99 2005-05-26T22:41:07Z 2020-02-15T06:59:54Z +11063 409 2 1226 5.99 2005-06-15T03:46:10Z 2020-02-15T06:59:54Z +11064 409 2 2310 8.99 2005-06-18T08:45:59Z 2020-02-15T06:59:54Z +11065 409 1 3866 5.99 2005-07-06T17:47:20Z 2020-02-15T06:59:54Z +11066 409 2 4550 4.99 2005-07-08T04:34:00Z 2020-02-15T06:59:54Z +11067 409 1 5175 3.99 2005-07-09T09:34:28Z 2020-02-15T06:59:54Z +11068 409 2 5306 5.99 2005-07-09T15:56:45Z 2020-02-15T06:59:54Z +11069 409 1 5422 0.99 2005-07-09T20:55:47Z 2020-02-15T06:59:54Z +11070 409 1 5848 2.99 2005-07-10T17:28:14Z 2020-02-15T06:59:54Z +11071 409 1 5955 7.99 2005-07-10T23:22:10Z 2020-02-15T06:59:54Z +11072 409 2 6026 4.99 2005-07-11T02:21:43Z 2020-02-15T06:59:54Z +11073 409 1 6596 2.99 2005-07-12T07:32:59Z 2020-02-15T06:59:54Z +11074 409 2 7673 2.99 2005-07-28T02:53:53Z 2020-02-15T06:59:54Z +11075 409 2 7940 0.99 2005-07-28T12:46:47Z 2020-02-15T06:59:54Z +11076 409 1 8037 4.99 2005-07-28T16:31:20Z 2020-02-15T06:59:54Z +11077 409 2 8265 5.99 2005-07-29T01:20:15Z 2020-02-15T06:59:54Z +11078 409 1 8726 1.99 2005-07-29T18:09:22Z 2020-02-15T06:59:54Z +11079 409 2 9267 0.99 2005-07-30T14:59:05Z 2020-02-15T06:59:54Z +11080 409 2 12830 0.99 2005-08-19T01:40:25Z 2020-02-15T06:59:54Z +11081 409 1 13392 8.99 2005-08-19T22:03:22Z 2020-02-15T06:59:54Z +11082 409 2 13632 6.99 2005-08-20T07:10:52Z 2020-02-15T06:59:54Z +11083 409 1 14103 1.99 2005-08-21T00:37:00Z 2020-02-15T06:59:54Z +11084 409 1 14697 4.99 2005-08-21T20:49:21Z 2020-02-15T06:59:54Z +11085 410 1 1514 2.99 2005-06-15T22:57:34Z 2020-02-15T06:59:54Z +11086 410 1 2073 2.99 2005-06-17T16:33:59Z 2020-02-15T06:59:54Z +11087 410 1 2255 4.99 2005-06-18T05:21:12Z 2020-02-15T06:59:54Z +11088 410 2 2400 5.99 2005-06-18T16:10:46Z 2020-02-15T06:59:54Z +11089 410 2 2971 0.99 2005-06-20T07:56:00Z 2020-02-15T06:59:54Z +11090 410 1 3249 4.99 2005-06-21T03:13:19Z 2020-02-15T06:59:54Z +11091 410 2 4062 0.99 2005-07-07T04:22:27Z 2020-02-15T06:59:54Z +11092 410 1 4267 0.99 2005-07-07T14:35:30Z 2020-02-15T06:59:54Z +11093 410 1 5150 3.99 2005-07-09T08:28:40Z 2020-02-15T06:59:54Z +11094 410 1 5192 4.99 2005-07-09T10:27:09Z 2020-02-15T06:59:54Z +11095 410 2 5330 5.99 2005-07-09T16:53:57Z 2020-02-15T06:59:54Z +11096 410 1 5336 2.99 2005-07-09T17:01:08Z 2020-02-15T06:59:54Z +11097 410 1 6148 4.99 2005-07-11T09:14:22Z 2020-02-15T06:59:54Z +11098 410 2 6218 5.99 2005-07-11T13:14:58Z 2020-02-15T06:59:54Z +11099 410 2 7350 4.99 2005-07-27T14:34:14Z 2020-02-15T06:59:54Z +11100 410 2 7407 5.99 2005-07-27T16:29:04Z 2020-02-15T06:59:54Z +11101 410 1 7523 4.99 2005-07-27T21:11:23Z 2020-02-15T06:59:54Z +11102 410 2 8625 3.99 2005-07-29T13:59:13Z 2020-02-15T06:59:54Z +11103 410 1 8882 0.99 2005-07-30T00:24:05Z 2020-02-15T06:59:54Z +11104 410 1 9263 2.99 2005-07-30T14:48:24Z 2020-02-15T06:59:54Z +11105 410 1 10402 4.99 2005-08-01T07:27:19Z 2020-02-15T06:59:54Z +11106 410 1 10837 2.99 2005-08-01T23:30:22Z 2020-02-15T06:59:54Z +11107 410 1 11107 0.99 2005-08-02T08:19:38Z 2020-02-15T06:59:54Z +11108 410 1 11187 10.99 2005-08-02T11:16:19Z 2020-02-15T06:59:54Z +11109 410 1 11472 6.99 2005-08-02T21:49:06Z 2020-02-15T06:59:54Z +11110 410 1 11694 6.99 2005-08-17T06:57:30Z 2020-02-15T06:59:54Z +11111 410 2 12955 8.99 2005-08-19T06:05:58Z 2020-02-15T06:59:54Z +11112 410 1 13460 4.99 2005-08-20T00:48:24Z 2020-02-15T06:59:54Z +11113 410 2 13748 2.99 2005-08-20T10:59:54Z 2020-02-15T06:59:54Z +11114 410 2 13948 6.99 2005-08-20T17:50:48Z 2020-02-15T06:59:54Z +11115 410 1 14237 3.99 2005-08-21T05:15:00Z 2020-02-15T06:59:54Z +11116 410 2 14298 4.99 2005-08-21T07:17:10Z 2020-02-15T06:59:54Z +11117 410 1 14319 4.99 2005-08-21T08:00:55Z 2020-02-15T06:59:54Z +11118 410 2 14819 2.99 2005-08-22T01:17:19Z 2020-02-15T06:59:54Z +11119 410 1 15211 2.99 2005-08-22T16:40:21Z 2020-02-15T06:59:54Z +11120 410 2 15392 3.99 2005-08-22T23:02:15Z 2020-02-15T06:59:54Z +11121 410 1 15518 4.99 2005-08-23T03:19:34Z 2020-02-15T06:59:54Z +11122 410 1 12665 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11123 411 2 686 4.99 2005-05-29T00:27:10Z 2020-02-15T06:59:54Z +11124 411 2 972 1.99 2005-05-30T20:21:07Z 2020-02-15T06:59:54Z +11125 411 1 1985 0.99 2005-06-17T10:31:37Z 2020-02-15T06:59:54Z +11126 411 2 1997 2.99 2005-06-17T11:19:43Z 2020-02-15T06:59:54Z +11127 411 2 2712 0.99 2005-06-19T14:20:13Z 2020-02-15T06:59:54Z +11128 411 1 3928 2.99 2005-07-06T20:52:09Z 2020-02-15T06:59:54Z +11129 411 2 4146 0.99 2005-07-07T08:30:16Z 2020-02-15T06:59:54Z +11130 411 1 4246 2.99 2005-07-07T13:49:03Z 2020-02-15T06:59:54Z +11131 411 2 5357 5.99 2005-07-09T18:08:59Z 2020-02-15T06:59:54Z +11132 411 1 5800 2.99 2005-07-10T14:58:36Z 2020-02-15T06:59:54Z +11133 411 1 7102 1.99 2005-07-27T05:07:21Z 2020-02-15T06:59:54Z +11134 411 2 7395 0.99 2005-07-27T16:03:11Z 2020-02-15T06:59:54Z +11135 411 1 7513 2.99 2005-07-27T20:51:04Z 2020-02-15T06:59:54Z +11136 411 1 7813 2.99 2005-07-28T08:08:27Z 2020-02-15T06:59:54Z +11137 411 1 8023 0.99 2005-07-28T15:53:29Z 2020-02-15T06:59:54Z +11138 411 2 8613 5.99 2005-07-29T13:30:58Z 2020-02-15T06:59:54Z +11139 411 2 9622 0.99 2005-07-31T04:21:45Z 2020-02-15T06:59:54Z +11140 411 2 11294 2.99 2005-08-02T15:08:27Z 2020-02-15T06:59:54Z +11141 411 1 11997 5.99 2005-08-17T18:34:38Z 2020-02-15T06:59:54Z +11142 411 2 13634 0.99 2005-08-20T07:16:45Z 2020-02-15T06:59:54Z +11143 411 2 13656 7.99 2005-08-20T08:01:07Z 2020-02-15T06:59:54Z +11144 411 2 14480 2.99 2005-08-21T13:36:40Z 2020-02-15T06:59:54Z +11145 411 1 14772 5.99 2005-08-21T23:50:39Z 2020-02-15T06:59:54Z +11146 411 2 14996 2.99 2005-08-22T07:52:41Z 2020-02-15T06:59:54Z +11147 411 1 15936 0.99 2005-08-23T18:43:11Z 2020-02-15T06:59:54Z +11148 411 2 13246 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11149 412 2 191 0.99 2005-05-26T06:14:06Z 2020-02-15T06:59:54Z +11150 412 1 333 4.99 2005-05-27T02:52:21Z 2020-02-15T06:59:54Z +11151 412 1 717 0.99 2005-05-29T04:37:44Z 2020-02-15T06:59:54Z +11152 412 2 1043 3.99 2005-05-31T06:11:40Z 2020-02-15T06:59:54Z +11153 412 1 3292 2.99 2005-06-21T06:59:11Z 2020-02-15T06:59:54Z +11154 412 2 3888 0.99 2005-07-06T18:54:20Z 2020-02-15T06:59:54Z +11155 412 2 4074 0.99 2005-07-07T04:49:49Z 2020-02-15T06:59:54Z +11156 412 1 8036 0.99 2005-07-28T16:27:43Z 2020-02-15T06:59:54Z +11157 412 2 8330 8.99 2005-07-29T04:09:07Z 2020-02-15T06:59:54Z +11158 412 1 8411 8.99 2005-07-29T06:44:23Z 2020-02-15T06:59:54Z +11159 412 1 8674 0.99 2005-07-29T15:54:22Z 2020-02-15T06:59:54Z +11160 412 1 9881 4.99 2005-07-31T13:50:38Z 2020-02-15T06:59:54Z +11161 412 2 10381 2.99 2005-08-01T06:36:37Z 2020-02-15T06:59:54Z +11162 412 1 10467 5.99 2005-08-01T09:45:58Z 2020-02-15T06:59:54Z +11163 412 2 11027 4.99 2005-08-02T05:47:10Z 2020-02-15T06:59:54Z +11164 412 1 14068 3.99 2005-08-20T22:50:59Z 2020-02-15T06:59:54Z +11165 412 1 14535 6.99 2005-08-21T15:22:37Z 2020-02-15T06:59:54Z +11166 412 2 15354 4.99 2005-08-22T21:18:59Z 2020-02-15T06:59:54Z +11167 412 2 15732 4.99 2005-08-23T11:35:12Z 2020-02-15T06:59:54Z +11168 412 1 15781 8.99 2005-08-23T13:41:05Z 2020-02-15T06:59:54Z +11169 412 1 15314 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11170 413 1 40 4.99 2005-05-25T05:09:04Z 2020-02-15T06:59:54Z +11171 413 1 999 4.99 2005-05-31T00:25:10Z 2020-02-15T06:59:54Z +11172 413 2 2130 5.99 2005-06-17T21:00:44Z 2020-02-15T06:59:54Z +11173 413 2 2545 4.99 2005-06-19T02:23:36Z 2020-02-15T06:59:54Z +11174 413 1 3762 4.99 2005-07-06T12:52:49Z 2020-02-15T06:59:54Z +11175 413 2 4491 0.99 2005-07-08T01:30:46Z 2020-02-15T06:59:54Z +11176 413 1 5897 7.99 2005-07-10T20:16:14Z 2020-02-15T06:59:54Z +11177 413 2 7100 4.99 2005-07-27T05:05:01Z 2020-02-15T06:59:54Z +11178 413 1 7635 0.99 2005-07-28T01:08:11Z 2020-02-15T06:59:54Z +11179 413 2 7731 0.99 2005-07-28T05:01:18Z 2020-02-15T06:59:54Z +11180 413 1 10909 2.99 2005-08-02T01:53:59Z 2020-02-15T06:59:54Z +11181 413 2 11304 2.99 2005-08-02T15:40:10Z 2020-02-15T06:59:54Z +11182 413 1 11468 0.99 2005-08-02T21:47:26Z 2020-02-15T06:59:54Z +11183 413 1 11532 0.99 2005-08-17T00:34:14Z 2020-02-15T06:59:54Z +11184 413 2 12552 2.99 2005-08-18T14:46:34Z 2020-02-15T06:59:54Z +11185 413 1 13010 3.99 2005-08-19T07:52:21Z 2020-02-15T06:59:54Z +11186 413 1 13318 2.99 2005-08-19T19:33:57Z 2020-02-15T06:59:54Z +11187 413 2 13824 4.99 2005-08-20T13:43:12Z 2020-02-15T06:59:54Z +11188 413 2 13887 4.99 2005-08-20T15:39:00Z 2020-02-15T06:59:54Z +11189 413 1 14773 2.99 2005-08-21T23:50:57Z 2020-02-15T06:59:54Z +11190 413 1 15678 2.99 2005-08-23T09:23:45Z 2020-02-15T06:59:54Z +11191 414 1 85 4.99 2005-05-25T13:05:34Z 2020-02-15T06:59:54Z +11192 414 1 261 3.99 2005-05-26T15:44:23Z 2020-02-15T06:59:54Z +11193 414 1 2246 4.99 2005-06-18T04:54:29Z 2020-02-15T06:59:54Z +11194 414 1 2559 9.99 2005-06-19T03:09:46Z 2020-02-15T06:59:54Z +11195 414 1 3318 5.99 2005-06-21T08:23:05Z 2020-02-15T06:59:54Z +11196 414 1 3957 10.99 2005-07-06T22:05:47Z 2020-02-15T06:59:54Z +11197 414 1 4437 3.99 2005-07-07T22:55:41Z 2020-02-15T06:59:54Z +11198 414 2 6462 7.99 2005-07-12T01:15:24Z 2020-02-15T06:59:54Z +11199 414 2 6728 0.99 2005-07-12T13:56:48Z 2020-02-15T06:59:54Z +11200 414 2 6845 0.99 2005-07-12T19:20:41Z 2020-02-15T06:59:54Z +11201 414 1 7009 0.99 2005-07-27T01:45:44Z 2020-02-15T06:59:54Z +11202 414 1 7779 2.99 2005-07-28T07:11:11Z 2020-02-15T06:59:54Z +11203 414 1 9650 2.99 2005-07-31T05:47:32Z 2020-02-15T06:59:54Z +11204 414 2 9991 2.99 2005-07-31T17:26:27Z 2020-02-15T06:59:54Z +11205 414 2 10107 5.99 2005-07-31T21:01:46Z 2020-02-15T06:59:54Z +11206 414 1 11706 0.99 2005-08-17T07:23:46Z 2020-02-15T06:59:54Z +11207 414 2 12930 4.99 2005-08-19T05:11:32Z 2020-02-15T06:59:54Z +11208 414 1 13042 0.99 2005-08-19T09:06:08Z 2020-02-15T06:59:54Z +11209 414 1 13242 2.99 2005-08-19T16:28:47Z 2020-02-15T06:59:54Z +11210 414 1 13308 7.99 2005-08-19T18:59:42Z 2020-02-15T06:59:54Z +11211 414 1 13404 0.99 2005-08-19T22:18:42Z 2020-02-15T06:59:54Z +11212 414 2 13494 2.99 2005-08-20T01:36:34Z 2020-02-15T06:59:54Z +11213 414 2 13657 4.99 2005-08-20T08:01:39Z 2020-02-15T06:59:54Z +11214 414 1 15140 6.99 2005-08-22T13:39:20Z 2020-02-15T06:59:54Z +11215 414 2 15481 0.99 2005-08-23T01:59:14Z 2020-02-15T06:59:54Z +11216 415 2 665 4.99 2005-05-28T21:38:39Z 2020-02-15T06:59:54Z +11217 415 2 1867 4.99 2005-06-17T02:01:37Z 2020-02-15T06:59:54Z +11218 415 1 3211 2.99 2005-06-21T01:01:29Z 2020-02-15T06:59:54Z +11219 415 2 4926 8.99 2005-07-08T22:01:48Z 2020-02-15T06:59:54Z +11220 415 2 5665 0.99 2005-07-10T08:10:08Z 2020-02-15T06:59:54Z +11221 415 2 5733 0.99 2005-07-10T11:37:24Z 2020-02-15T06:59:54Z +11222 415 2 6491 5.99 2005-07-12T02:28:31Z 2020-02-15T06:59:54Z +11223 415 1 6505 3.99 2005-07-12T03:27:37Z 2020-02-15T06:59:54Z +11224 415 1 7379 4.99 2005-07-27T15:36:43Z 2020-02-15T06:59:54Z +11225 415 2 7624 0.99 2005-07-28T00:37:44Z 2020-02-15T06:59:54Z +11226 415 1 7748 4.99 2005-07-28T05:52:23Z 2020-02-15T06:59:54Z +11227 415 2 8317 2.99 2005-07-29T03:39:07Z 2020-02-15T06:59:54Z +11228 415 2 9586 2.99 2005-07-31T03:07:16Z 2020-02-15T06:59:54Z +11229 415 1 9852 2.99 2005-07-31T12:52:17Z 2020-02-15T06:59:54Z +11230 415 1 10263 5.99 2005-08-01T03:02:48Z 2020-02-15T06:59:54Z +11231 415 1 10553 2.99 2005-08-01T12:54:06Z 2020-02-15T06:59:54Z +11232 415 2 11310 1.99 2005-08-02T15:51:58Z 2020-02-15T06:59:54Z +11233 415 2 12128 5.99 2005-08-17T23:31:09Z 2020-02-15T06:59:54Z +11234 415 2 12588 2.99 2005-08-18T16:04:45Z 2020-02-15T06:59:54Z +11235 415 2 13729 8.99 2005-08-20T10:17:08Z 2020-02-15T06:59:54Z +11236 415 1 14992 4.99 2005-08-22T07:51:47Z 2020-02-15T06:59:54Z +11237 415 2 15121 4.99 2005-08-22T12:46:37Z 2020-02-15T06:59:54Z +11238 415 1 15959 0.99 2005-08-23T19:27:04Z 2020-02-15T06:59:54Z +11239 416 2 253 0.99 2005-05-26T14:43:14Z 2020-02-15T06:59:54Z +11240 416 2 724 3.99 2005-05-29T05:53:23Z 2020-02-15T06:59:54Z +11241 416 2 1031 2.99 2005-05-31T04:23:01Z 2020-02-15T06:59:54Z +11242 416 2 1158 2.99 2005-06-14T22:53:33Z 2020-02-15T06:59:54Z +11243 416 1 1343 4.99 2005-06-15T12:27:19Z 2020-02-15T06:59:54Z +11244 416 2 1553 0.99 2005-06-16T02:02:44Z 2020-02-15T06:59:54Z +11245 416 2 1596 2.99 2005-06-16T05:30:58Z 2020-02-15T06:59:54Z +11246 416 2 1771 0.99 2005-06-16T18:12:17Z 2020-02-15T06:59:54Z +11247 416 1 3833 3.99 2005-07-06T16:18:28Z 2020-02-15T06:59:54Z +11248 416 1 3868 2.99 2005-07-06T17:54:13Z 2020-02-15T06:59:54Z +11249 416 1 6097 2.99 2005-07-11T06:21:43Z 2020-02-15T06:59:54Z +11250 416 1 6879 7.99 2005-07-12T20:37:37Z 2020-02-15T06:59:54Z +11251 416 1 7889 0.99 2005-07-28T10:43:21Z 2020-02-15T06:59:54Z +11252 416 1 7917 2.99 2005-07-28T11:56:57Z 2020-02-15T06:59:54Z +11253 416 2 8349 5.99 2005-07-29T04:50:22Z 2020-02-15T06:59:54Z +11254 416 2 8588 2.99 2005-07-29T12:22:20Z 2020-02-15T06:59:54Z +11255 416 2 8648 2.99 2005-07-29T14:56:21Z 2020-02-15T06:59:54Z +11256 416 2 9383 2.99 2005-07-30T19:24:50Z 2020-02-15T06:59:54Z +11257 416 1 10254 3.99 2005-08-01T02:42:03Z 2020-02-15T06:59:54Z +11258 416 1 10354 2.99 2005-08-01T05:47:10Z 2020-02-15T06:59:54Z +11259 416 1 10742 6.99 2005-08-01T19:53:13Z 2020-02-15T06:59:54Z +11260 416 1 10937 6.99 2005-08-02T03:00:18Z 2020-02-15T06:59:54Z +11261 416 2 11047 5.99 2005-08-02T06:09:20Z 2020-02-15T06:59:54Z +11262 416 1 11557 6.99 2005-08-17T01:19:20Z 2020-02-15T06:59:54Z +11263 416 1 12722 8.99 2005-08-18T21:33:53Z 2020-02-15T06:59:54Z +11264 416 1 12932 4.99 2005-08-19T05:17:30Z 2020-02-15T06:59:54Z +11265 416 1 14239 4.99 2005-08-21T05:18:57Z 2020-02-15T06:59:54Z +11266 416 1 15235 1.99 2005-08-22T17:43:12Z 2020-02-15T06:59:54Z +11267 416 2 15470 4.99 2005-08-23T01:35:12Z 2020-02-15T06:59:54Z +11268 416 1 15727 2.99 2005-08-23T11:28:49Z 2020-02-15T06:59:54Z +11269 416 2 15761 0.99 2005-08-23T12:55:51Z 2020-02-15T06:59:54Z +11270 417 1 267 4.99 2005-05-26T16:16:21Z 2020-02-15T06:59:54Z +11271 417 2 630 8.99 2005-05-28T17:24:51Z 2020-02-15T06:59:54Z +11272 417 2 833 4.99 2005-05-29T23:21:56Z 2020-02-15T06:59:54Z +11273 417 1 1921 3.99 2005-06-17T06:04:16Z 2020-02-15T06:59:54Z +11274 417 1 3952 4.99 2005-07-06T21:51:31Z 2020-02-15T06:59:54Z +11275 417 1 4418 2.99 2005-07-07T22:05:30Z 2020-02-15T06:59:54Z +11276 417 1 4421 9.99 2005-07-07T22:07:55Z 2020-02-15T06:59:54Z +11277 417 2 6258 6.99 2005-07-11T15:24:32Z 2020-02-15T06:59:54Z +11278 417 1 6312 4.99 2005-07-11T18:19:02Z 2020-02-15T06:59:54Z +11279 417 1 8877 2.99 2005-07-30T00:15:22Z 2020-02-15T06:59:54Z +11280 417 2 9049 2.99 2005-07-30T06:57:28Z 2020-02-15T06:59:54Z +11281 417 1 10478 0.99 2005-08-01T10:09:06Z 2020-02-15T06:59:54Z +11282 417 1 11217 7.99 2005-08-02T12:26:31Z 2020-02-15T06:59:54Z +11283 417 1 11291 6.99 2005-08-02T14:57:58Z 2020-02-15T06:59:54Z +11284 417 2 11303 0.99 2005-08-02T15:39:18Z 2020-02-15T06:59:54Z +11285 417 2 12074 0.99 2005-08-17T21:50:57Z 2020-02-15T06:59:54Z +11286 417 2 12281 4.99 2005-08-18T04:50:32Z 2020-02-15T06:59:54Z +11287 417 1 13545 4.99 2005-08-20T03:50:15Z 2020-02-15T06:59:54Z +11288 417 1 13927 1.99 2005-08-20T17:11:58Z 2020-02-15T06:59:54Z +11289 417 2 14121 4.99 2005-08-21T01:26:33Z 2020-02-15T06:59:54Z +11290 417 1 14304 6.99 2005-08-21T07:23:10Z 2020-02-15T06:59:54Z +11291 417 1 14607 2.99 2005-08-21T17:56:50Z 2020-02-15T06:59:54Z +11292 417 2 14882 2.99 2005-08-22T03:52:21Z 2020-02-15T06:59:54Z +11293 417 1 15795 0.99 2005-08-23T14:07:56Z 2020-02-15T06:59:54Z +11294 417 2 13261 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11295 418 1 2825 2.99 2005-06-19T20:32:19Z 2020-02-15T06:59:54Z +11296 418 2 2943 2.99 2005-06-20T05:43:05Z 2020-02-15T06:59:54Z +11297 418 2 2969 2.99 2005-06-20T07:44:27Z 2020-02-15T06:59:54Z +11298 418 1 3805 0.99 2005-07-06T15:08:42Z 2020-02-15T06:59:54Z +11299 418 2 4852 7.99 2005-07-08T18:43:15Z 2020-02-15T06:59:54Z +11300 418 1 4865 2.99 2005-07-08T19:09:04Z 2020-02-15T06:59:54Z +11301 418 1 4938 0.99 2005-07-08T22:32:53Z 2020-02-15T06:59:54Z +11302 418 1 6150 4.99 2005-07-11T09:23:56Z 2020-02-15T06:59:54Z +11303 418 1 6970 4.99 2005-07-27T00:26:14Z 2020-02-15T06:59:54Z +11304 418 2 8546 5.99 2005-07-29T11:08:48Z 2020-02-15T06:59:54Z +11305 418 2 8591 0.99 2005-07-29T12:32:33Z 2020-02-15T06:59:54Z +11306 418 2 8886 10.99 2005-07-30T00:36:31Z 2020-02-15T06:59:54Z +11307 418 1 9558 4.99 2005-07-31T02:14:35Z 2020-02-15T06:59:54Z +11308 418 2 10537 5.99 2005-08-01T12:22:28Z 2020-02-15T06:59:54Z +11309 418 1 10709 0.99 2005-08-01T18:43:57Z 2020-02-15T06:59:54Z +11310 418 2 10915 2.99 2005-08-02T02:05:04Z 2020-02-15T06:59:54Z +11311 418 1 11270 2.99 2005-08-02T14:18:07Z 2020-02-15T06:59:54Z +11312 418 2 11322 3.99 2005-08-02T16:23:17Z 2020-02-15T06:59:54Z +11313 418 2 11409 1.99 2005-08-02T19:26:51Z 2020-02-15T06:59:54Z +11314 418 1 11650 4.99 2005-08-17T05:00:03Z 2020-02-15T06:59:54Z +11315 418 1 11769 2.99 2005-08-17T10:04:49Z 2020-02-15T06:59:54Z +11316 418 1 11910 0.99 2005-08-17T15:44:37Z 2020-02-15T06:59:54Z +11317 418 2 13312 0.99 2005-08-19T19:09:14Z 2020-02-15T06:59:54Z +11318 418 1 13537 2.99 2005-08-20T03:39:15Z 2020-02-15T06:59:54Z +11319 418 1 13970 0.99 2005-08-20T18:43:34Z 2020-02-15T06:59:54Z +11320 418 1 14484 0.99 2005-08-21T13:47:29Z 2020-02-15T06:59:54Z +11321 418 1 14836 4.99 2005-08-22T01:52:26Z 2020-02-15T06:59:54Z +11322 418 2 14860 2.99 2005-08-22T02:47:07Z 2020-02-15T06:59:54Z +11323 418 1 15466 4.99 2005-08-23T01:16:55Z 2020-02-15T06:59:54Z +11324 418 2 15957 5.99 2005-08-23T19:21:22Z 2020-02-15T06:59:54Z +11325 419 1 62 2.99 2005-05-25T09:18:52Z 2020-02-15T06:59:54Z +11326 419 2 2793 2.99 2005-06-19T18:52:37Z 2020-02-15T06:59:54Z +11327 419 1 3596 0.99 2005-07-06T05:03:11Z 2020-02-15T06:59:54Z +11328 419 1 3694 4.99 2005-07-06T10:01:23Z 2020-02-15T06:59:54Z +11329 419 1 4224 0.99 2005-07-07T12:24:21Z 2020-02-15T06:59:54Z +11330 419 2 5333 5.99 2005-07-09T16:59:38Z 2020-02-15T06:59:54Z +11331 419 2 5863 0.99 2005-07-10T18:25:23Z 2020-02-15T06:59:54Z +11332 419 1 5900 3.99 2005-07-10T20:21:54Z 2020-02-15T06:59:54Z +11333 419 2 5933 0.99 2005-07-10T22:06:48Z 2020-02-15T06:59:54Z +11334 419 2 6173 0.99 2005-07-11T10:33:11Z 2020-02-15T06:59:54Z +11335 419 2 6587 3.99 2005-07-12T06:56:26Z 2020-02-15T06:59:54Z +11336 419 1 7362 4.99 2005-07-27T14:58:27Z 2020-02-15T06:59:54Z +11337 419 1 7619 2.99 2005-07-28T00:25:41Z 2020-02-15T06:59:54Z +11338 419 1 7796 4.99 2005-07-28T07:39:39Z 2020-02-15T06:59:54Z +11339 419 1 10150 2.99 2005-07-31T22:22:00Z 2020-02-15T06:59:54Z +11340 419 1 10372 2.99 2005-08-01T06:23:48Z 2020-02-15T06:59:54Z +11341 419 2 11025 4.99 2005-08-02T05:39:12Z 2020-02-15T06:59:54Z +11342 419 1 11313 2.99 2005-08-02T16:02:51Z 2020-02-15T06:59:54Z +11343 419 2 11323 2.99 2005-08-02T16:29:57Z 2020-02-15T06:59:54Z +11344 419 1 11425 2.99 2005-08-02T19:58:48Z 2020-02-15T06:59:54Z +11345 419 2 11689 6.99 2005-08-17T06:42:08Z 2020-02-15T06:59:54Z +11346 419 1 12460 7.99 2005-08-18T11:25:13Z 2020-02-15T06:59:54Z +11347 419 1 12720 5.99 2005-08-18T21:28:42Z 2020-02-15T06:59:54Z +11348 419 2 14308 0.99 2005-08-21T07:43:21Z 2020-02-15T06:59:54Z +11349 419 2 15779 4.99 2005-08-23T13:33:46Z 2020-02-15T06:59:54Z +11350 420 2 744 4.99 2005-05-29T09:13:08Z 2020-02-15T06:59:54Z +11351 420 2 2672 3.99 2005-06-19T11:42:04Z 2020-02-15T06:59:54Z +11352 420 1 2698 0.99 2005-06-19T13:29:11Z 2020-02-15T06:59:54Z +11353 420 1 2726 0.99 2005-06-19T15:02:20Z 2020-02-15T06:59:54Z +11354 420 1 4176 4.99 2005-07-07T10:03:34Z 2020-02-15T06:59:54Z +11355 420 2 5081 4.99 2005-07-09T05:25:20Z 2020-02-15T06:59:54Z +11356 420 1 5168 4.99 2005-07-09T09:20:01Z 2020-02-15T06:59:54Z +11357 420 2 5911 0.99 2005-07-10T20:51:42Z 2020-02-15T06:59:54Z +11358 420 2 6086 3.99 2005-07-11T05:29:03Z 2020-02-15T06:59:54Z +11359 420 2 6096 4.99 2005-07-11T06:18:04Z 2020-02-15T06:59:54Z +11360 420 2 6582 4.99 2005-07-12T06:28:12Z 2020-02-15T06:59:54Z +11361 420 1 6588 4.99 2005-07-12T06:57:40Z 2020-02-15T06:59:54Z +11362 420 2 7081 2.99 2005-07-27T04:25:59Z 2020-02-15T06:59:54Z +11363 420 2 8485 0.99 2005-07-29T08:53:09Z 2020-02-15T06:59:54Z +11364 420 1 9362 0.99 2005-07-30T18:44:16Z 2020-02-15T06:59:54Z +11365 420 2 10291 4.99 2005-08-01T03:39:57Z 2020-02-15T06:59:54Z +11366 420 2 10601 10.99 2005-08-01T14:25:40Z 2020-02-15T06:59:54Z +11367 420 1 10766 4.99 2005-08-01T20:36:29Z 2020-02-15T06:59:54Z +11368 420 2 11236 5.99 2005-08-02T13:17:21Z 2020-02-15T06:59:54Z +11369 420 2 14525 0.99 2005-08-21T15:06:49Z 2020-02-15T06:59:54Z +11370 420 2 15597 0.99 2005-08-23T06:21:20Z 2020-02-15T06:59:54Z +11371 421 1 507 0.99 2005-05-28T02:31:19Z 2020-02-15T06:59:54Z +11372 421 1 931 0.99 2005-05-30T12:53:01Z 2020-02-15T06:59:54Z +11373 421 1 1693 4.99 2005-06-16T12:39:51Z 2020-02-15T06:59:54Z +11374 421 2 2407 2.99 2005-06-18T16:50:41Z 2020-02-15T06:59:54Z +11375 421 1 3170 4.99 2005-06-20T22:02:54Z 2020-02-15T06:59:54Z +11376 421 1 3491 7.99 2005-07-05T23:41:08Z 2020-02-15T06:59:54Z +11377 421 2 3703 5.99 2005-07-06T10:15:26Z 2020-02-15T06:59:54Z +11378 421 1 3988 8.99 2005-07-06T23:30:42Z 2020-02-15T06:59:54Z +11379 421 2 4456 5.99 2005-07-07T23:45:21Z 2020-02-15T06:59:54Z +11380 421 1 6220 0.99 2005-07-11T13:22:06Z 2020-02-15T06:59:54Z +11381 421 2 6960 3.99 2005-07-27T00:08:33Z 2020-02-15T06:59:54Z +11382 421 2 7449 4.99 2005-07-27T18:17:41Z 2020-02-15T06:59:54Z +11383 421 2 8025 2.99 2005-07-28T16:03:27Z 2020-02-15T06:59:54Z +11384 421 1 8268 4.99 2005-07-29T01:23:23Z 2020-02-15T06:59:54Z +11385 421 1 8725 4.99 2005-07-29T18:08:42Z 2020-02-15T06:59:54Z +11386 421 2 9377 4.99 2005-07-30T19:12:18Z 2020-02-15T06:59:54Z +11387 421 2 9875 0.99 2005-07-31T13:37:41Z 2020-02-15T06:59:54Z +11388 421 1 10200 4.99 2005-08-01T00:39:05Z 2020-02-15T06:59:54Z +11389 421 2 11089 2.99 2005-08-02T07:52:20Z 2020-02-15T06:59:54Z +11390 421 1 11263 4.99 2005-08-02T14:02:19Z 2020-02-15T06:59:54Z +11391 421 1 11523 3.99 2005-08-17T00:10:10Z 2020-02-15T06:59:54Z +11392 421 1 12279 4.99 2005-08-18T04:47:30Z 2020-02-15T06:59:54Z +11393 421 2 13461 9.99 2005-08-20T00:49:04Z 2020-02-15T06:59:54Z +11394 421 1 13872 4.99 2005-08-20T15:10:30Z 2020-02-15T06:59:54Z +11395 421 1 14742 4.99 2005-08-21T22:39:01Z 2020-02-15T06:59:54Z +11396 421 1 14887 3.99 2005-08-22T04:04:31Z 2020-02-15T06:59:54Z +11397 421 2 15710 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11398 422 1 398 0.99 2005-05-27T12:44:03Z 2020-02-15T06:59:54Z +11399 422 1 1846 0.99 2005-06-17T00:02:44Z 2020-02-15T06:59:54Z +11400 422 1 1897 4.99 2005-06-17T04:26:23Z 2020-02-15T06:59:54Z +11401 422 2 2747 2.99 2005-06-19T16:22:07Z 2020-02-15T06:59:54Z +11402 422 1 2778 5.99 2005-06-19T18:18:12Z 2020-02-15T06:59:54Z +11403 422 1 3553 4.99 2005-07-06T02:35:41Z 2020-02-15T06:59:54Z +11404 422 2 4463 2.99 2005-07-08T00:04:59Z 2020-02-15T06:59:54Z +11405 422 2 4504 0.99 2005-07-08T02:19:27Z 2020-02-15T06:59:54Z +11406 422 1 5784 1.99 2005-07-10T14:03:28Z 2020-02-15T06:59:54Z +11407 422 2 7827 0.99 2005-07-28T08:37:22Z 2020-02-15T06:59:54Z +11408 422 2 8206 4.99 2005-07-28T23:20:31Z 2020-02-15T06:59:54Z +11409 422 2 9541 4.99 2005-07-31T01:40:14Z 2020-02-15T06:59:54Z +11410 422 2 10833 6.99 2005-08-01T23:25:55Z 2020-02-15T06:59:54Z +11411 422 2 11325 6.99 2005-08-02T16:33:11Z 2020-02-15T06:59:54Z +11412 422 1 11658 2.99 2005-08-17T05:19:17Z 2020-02-15T06:59:54Z +11413 422 1 11842 4.99 2005-08-17T13:13:37Z 2020-02-15T06:59:54Z +11414 422 1 12907 9.99 2005-08-19T04:16:13Z 2020-02-15T06:59:54Z +11415 422 2 13216 1.99 2005-08-19T15:36:05Z 2020-02-15T06:59:54Z +11416 422 2 13625 1.99 2005-08-20T06:52:03Z 2020-02-15T06:59:54Z +11417 422 2 13709 0.99 2005-08-20T09:34:51Z 2020-02-15T06:59:54Z +11418 422 2 13722 4.99 2005-08-20T10:03:45Z 2020-02-15T06:59:54Z +11419 422 1 14861 4.99 2005-08-22T02:48:05Z 2020-02-15T06:59:54Z +11420 422 1 15272 3.99 2005-08-22T18:49:40Z 2020-02-15T06:59:54Z +11421 422 1 15273 2.99 2005-08-22T18:53:28Z 2020-02-15T06:59:54Z +11422 422 2 15316 2.99 2005-08-22T20:07:03Z 2020-02-15T06:59:54Z +11423 422 2 15441 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11424 423 1 1504 3.99 2005-06-15T22:08:06Z 2020-02-15T06:59:54Z +11425 423 2 1827 0.99 2005-06-16T21:54:40Z 2020-02-15T06:59:54Z +11426 423 1 2600 6.99 2005-06-19T06:07:25Z 2020-02-15T06:59:54Z +11427 423 2 2758 6.99 2005-06-19T17:04:35Z 2020-02-15T06:59:54Z +11428 423 1 3072 8.99 2005-06-20T14:21:31Z 2020-02-15T06:59:54Z +11429 423 2 4105 0.99 2005-07-07T06:31:00Z 2020-02-15T06:59:54Z +11430 423 1 4250 0.99 2005-07-07T14:08:11Z 2020-02-15T06:59:54Z +11431 423 1 4679 2.99 2005-07-08T10:33:14Z 2020-02-15T06:59:54Z +11432 423 1 6506 1.99 2005-07-12T03:28:22Z 2020-02-15T06:59:54Z +11433 423 1 7016 5.99 2005-07-27T02:15:16Z 2020-02-15T06:59:54Z +11434 423 2 7141 2.99 2005-07-27T06:55:27Z 2020-02-15T06:59:54Z +11435 423 1 7157 4.99 2005-07-27T07:20:28Z 2020-02-15T06:59:54Z +11436 423 1 7290 0.99 2005-07-27T12:28:45Z 2020-02-15T06:59:54Z +11437 423 2 7539 9.99 2005-07-27T21:39:42Z 2020-02-15T06:59:54Z +11438 423 1 7849 9.99 2005-07-28T09:30:02Z 2020-02-15T06:59:54Z +11439 423 2 8082 3.99 2005-07-28T18:08:02Z 2020-02-15T06:59:54Z +11440 423 2 8595 9.99 2005-07-29T12:47:43Z 2020-02-15T06:59:54Z +11441 423 2 9026 2.99 2005-07-30T05:55:31Z 2020-02-15T06:59:54Z +11442 423 1 10488 2.99 2005-08-01T10:27:27Z 2020-02-15T06:59:54Z +11443 423 1 11091 2.99 2005-08-02T07:56:41Z 2020-02-15T06:59:54Z +11444 423 2 11514 4.99 2005-08-16T23:53:10Z 2020-02-15T06:59:54Z +11445 423 2 12806 4.99 2005-08-19T00:37:26Z 2020-02-15T06:59:54Z +11446 423 2 14191 6.99 2005-08-21T03:35:58Z 2020-02-15T06:59:54Z +11447 423 2 14902 4.99 2005-08-22T04:31:50Z 2020-02-15T06:59:54Z +11448 423 1 15380 0.99 2005-08-22T22:28:15Z 2020-02-15T06:59:54Z +11449 423 1 15755 4.99 2005-08-23T12:46:38Z 2020-02-15T06:59:54Z +11450 424 2 403 0.99 2005-05-27T13:28:52Z 2020-02-15T06:59:54Z +11451 424 2 3044 4.99 2005-06-20T12:38:49Z 2020-02-15T06:59:54Z +11452 424 1 3166 6.99 2005-06-20T21:32:32Z 2020-02-15T06:59:54Z +11453 424 2 3404 0.99 2005-06-21T15:57:52Z 2020-02-15T06:59:54Z +11454 424 2 3746 0.99 2005-07-06T12:10:51Z 2020-02-15T06:59:54Z +11455 424 2 4512 0.99 2005-07-08T02:38:56Z 2020-02-15T06:59:54Z +11456 424 2 4559 0.99 2005-07-08T04:56:49Z 2020-02-15T06:59:54Z +11457 424 2 4696 5.99 2005-07-08T11:12:27Z 2020-02-15T06:59:54Z +11458 424 1 5568 0.99 2005-07-10T03:36:56Z 2020-02-15T06:59:54Z +11459 424 1 5611 3.99 2005-07-10T05:13:43Z 2020-02-15T06:59:54Z +11460 424 1 6589 2.99 2005-07-12T07:06:29Z 2020-02-15T06:59:54Z +11461 424 1 7594 2.99 2005-07-27T23:30:41Z 2020-02-15T06:59:54Z +11462 424 2 8194 2.99 2005-07-28T22:51:44Z 2020-02-15T06:59:54Z +11463 424 1 8918 4.99 2005-07-30T01:56:22Z 2020-02-15T06:59:54Z +11464 424 2 8964 1.99 2005-07-30T03:49:35Z 2020-02-15T06:59:54Z +11465 424 2 8999 2.99 2005-07-30T04:55:46Z 2020-02-15T06:59:54Z +11466 424 1 9471 4.99 2005-07-30T23:02:36Z 2020-02-15T06:59:54Z +11467 424 1 9516 8.99 2005-07-31T00:40:58Z 2020-02-15T06:59:54Z +11468 424 2 9878 4.99 2005-07-31T13:42:02Z 2020-02-15T06:59:54Z +11469 424 1 10017 6.99 2005-07-31T18:13:22Z 2020-02-15T06:59:54Z +11470 424 2 10369 4.99 2005-08-01T06:13:44Z 2020-02-15T06:59:54Z +11471 424 1 10866 2.99 2005-08-02T00:22:49Z 2020-02-15T06:59:54Z +11472 424 2 11374 2.99 2005-08-02T18:14:54Z 2020-02-15T06:59:54Z +11473 424 2 11562 6.99 2005-08-17T01:23:39Z 2020-02-15T06:59:54Z +11474 424 2 11833 2.99 2005-08-17T13:00:33Z 2020-02-15T06:59:54Z +11475 424 2 12729 0.99 2005-08-18T21:52:59Z 2020-02-15T06:59:54Z +11476 424 2 13793 3.99 2005-08-20T12:22:04Z 2020-02-15T06:59:54Z +11477 424 2 15113 0.99 2005-08-22T12:23:59Z 2020-02-15T06:59:54Z +11478 424 2 15941 9.99 2005-08-23T18:46:44Z 2020-02-15T06:59:54Z +11479 424 1 15094 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11480 425 2 1098 5.99 2005-05-31T13:51:48Z 2020-02-15T06:59:54Z +11481 425 1 3276 6.99 2005-06-21T05:35:52Z 2020-02-15T06:59:54Z +11482 425 1 3807 4.99 2005-07-06T15:11:44Z 2020-02-15T06:59:54Z +11483 425 2 4361 2.99 2005-07-07T19:33:23Z 2020-02-15T06:59:54Z +11484 425 2 4362 5.99 2005-07-07T19:35:30Z 2020-02-15T06:59:54Z +11485 425 2 4483 8.99 2005-07-08T01:03:12Z 2020-02-15T06:59:54Z +11486 425 1 4659 2.99 2005-07-08T09:53:28Z 2020-02-15T06:59:54Z +11487 425 1 4884 7.99 2005-07-08T19:49:17Z 2020-02-15T06:59:54Z +11488 425 1 4939 7.99 2005-07-08T22:35:30Z 2020-02-15T06:59:54Z +11489 425 2 5363 2.99 2005-07-09T18:18:49Z 2020-02-15T06:59:54Z +11490 425 1 5371 4.99 2005-07-09T18:47:48Z 2020-02-15T06:59:54Z +11491 425 2 6318 2.99 2005-07-11T18:48:22Z 2020-02-15T06:59:54Z +11492 425 1 6603 2.99 2005-07-12T07:52:55Z 2020-02-15T06:59:54Z +11493 425 1 7249 4.99 2005-07-27T10:39:53Z 2020-02-15T06:59:54Z +11494 425 1 8974 0.99 2005-07-30T04:09:16Z 2020-02-15T06:59:54Z +11495 425 1 9170 0.99 2005-07-30T11:35:24Z 2020-02-15T06:59:54Z +11496 425 2 9682 2.99 2005-07-31T06:47:10Z 2020-02-15T06:59:54Z +11497 425 1 10121 0.99 2005-07-31T21:24:53Z 2020-02-15T06:59:54Z +11498 425 2 10163 0.99 2005-07-31T23:12:34Z 2020-02-15T06:59:54Z +11499 425 1 10545 0.99 2005-08-01T12:37:46Z 2020-02-15T06:59:54Z +11500 425 2 13040 0.99 2005-08-19T09:04:24Z 2020-02-15T06:59:54Z +11501 425 2 14089 5.99 2005-08-20T23:59:02Z 2020-02-15T06:59:54Z +11502 425 2 14881 4.99 2005-08-22T03:47:39Z 2020-02-15T06:59:54Z +11503 425 1 15064 0.99 2005-08-22T10:41:58Z 2020-02-15T06:59:54Z +11504 425 2 15784 6.99 2005-08-23T13:46:00Z 2020-02-15T06:59:54Z +11505 425 2 16036 2.99 2005-08-23T22:12:44Z 2020-02-15T06:59:54Z +11506 426 2 604 0.99 2005-05-28T14:37:07Z 2020-02-15T06:59:54Z +11507 426 1 1709 6.99 2005-06-16T14:10:15Z 2020-02-15T06:59:54Z +11508 426 1 1842 7.99 2005-06-16T23:45:59Z 2020-02-15T06:59:54Z +11509 426 1 2204 2.99 2005-06-18T02:11:38Z 2020-02-15T06:59:54Z +11510 426 1 2804 0.99 2005-06-19T19:24:54Z 2020-02-15T06:59:54Z +11511 426 1 3243 0.99 2005-06-21T03:00:11Z 2020-02-15T06:59:54Z +11512 426 2 4114 2.99 2005-07-07T06:51:12Z 2020-02-15T06:59:54Z +11513 426 2 4398 4.99 2005-07-07T21:18:44Z 2020-02-15T06:59:54Z +11514 426 1 4900 4.99 2005-07-08T20:38:06Z 2020-02-15T06:59:54Z +11515 426 1 5725 3.99 2005-07-10T11:21:21Z 2020-02-15T06:59:54Z +11516 426 1 7495 4.99 2005-07-27T20:01:20Z 2020-02-15T06:59:54Z +11517 426 1 7527 10.99 2005-07-27T21:14:28Z 2020-02-15T06:59:54Z +11518 426 1 7711 4.99 2005-07-28T04:26:42Z 2020-02-15T06:59:54Z +11519 426 1 7789 5.99 2005-07-28T07:22:07Z 2020-02-15T06:59:54Z +11520 426 1 9185 5.99 2005-07-30T12:10:40Z 2020-02-15T06:59:54Z +11521 426 2 9247 4.99 2005-07-30T14:13:56Z 2020-02-15T06:59:54Z +11522 426 2 10172 10.99 2005-07-31T23:29:51Z 2020-02-15T06:59:54Z +11523 426 1 10505 1.99 2005-08-01T11:13:59Z 2020-02-15T06:59:54Z +11524 426 2 11237 0.99 2005-08-02T13:24:01Z 2020-02-15T06:59:54Z +11525 426 2 11876 0.99 2005-08-17T14:18:21Z 2020-02-15T06:59:54Z +11526 426 2 11938 6.99 2005-08-17T16:54:54Z 2020-02-15T06:59:54Z +11527 426 2 12548 5.99 2005-08-18T14:35:26Z 2020-02-15T06:59:54Z +11528 426 2 12707 4.99 2005-08-18T20:52:02Z 2020-02-15T06:59:54Z +11529 426 1 12822 4.99 2005-08-19T01:15:24Z 2020-02-15T06:59:54Z +11530 426 2 13834 2.99 2005-08-20T14:03:08Z 2020-02-15T06:59:54Z +11531 426 2 14151 6.99 2005-08-21T02:23:25Z 2020-02-15T06:59:54Z +11532 426 2 14826 2.99 2005-08-22T01:32:14Z 2020-02-15T06:59:54Z +11533 427 2 82 6.99 2005-05-25T12:17:46Z 2020-02-15T06:59:54Z +11534 427 1 1342 5.99 2005-06-15T12:26:21Z 2020-02-15T06:59:54Z +11535 427 2 1628 3.99 2005-06-16T07:52:55Z 2020-02-15T06:59:54Z +11536 427 1 1648 5.99 2005-06-16T09:17:07Z 2020-02-15T06:59:54Z +11537 427 1 1857 1.99 2005-06-17T01:12:58Z 2020-02-15T06:59:54Z +11538 427 2 2466 0.99 2005-06-18T20:18:42Z 2020-02-15T06:59:54Z +11539 427 1 4793 3.99 2005-07-08T16:30:01Z 2020-02-15T06:59:54Z +11540 427 2 5476 2.99 2005-07-09T23:37:09Z 2020-02-15T06:59:54Z +11541 427 2 5586 5.99 2005-07-10T04:17:06Z 2020-02-15T06:59:54Z +11542 427 1 6423 6.99 2005-07-11T23:47:31Z 2020-02-15T06:59:54Z +11543 427 1 6509 2.99 2005-07-12T03:35:01Z 2020-02-15T06:59:54Z +11544 427 2 6938 7.99 2005-07-26T23:16:04Z 2020-02-15T06:59:54Z +11545 427 2 8182 3.99 2005-07-28T22:19:12Z 2020-02-15T06:59:54Z +11546 427 1 8531 5.99 2005-07-29T10:26:15Z 2020-02-15T06:59:54Z +11547 427 2 8658 5.99 2005-07-29T15:16:37Z 2020-02-15T06:59:54Z +11548 427 2 9978 2.99 2005-07-31T16:59:51Z 2020-02-15T06:59:54Z +11549 427 1 10417 4.99 2005-08-01T08:10:36Z 2020-02-15T06:59:54Z +11550 427 1 10464 5.99 2005-08-01T09:43:14Z 2020-02-15T06:59:54Z +11551 427 2 10560 4.99 2005-08-01T13:04:57Z 2020-02-15T06:59:54Z +11552 427 1 11024 5.99 2005-08-02T05:38:31Z 2020-02-15T06:59:54Z +11553 427 1 13720 1.99 2005-08-20T10:01:39Z 2020-02-15T06:59:54Z +11554 427 2 14201 6.99 2005-08-21T03:51:34Z 2020-02-15T06:59:54Z +11555 427 1 14287 3.99 2005-08-21T06:53:59Z 2020-02-15T06:59:54Z +11556 427 1 15330 3.99 2005-08-22T20:35:30Z 2020-02-15T06:59:54Z +11557 428 2 634 4.99 2005-05-28T17:40:35Z 2020-02-15T06:59:54Z +11558 428 1 1227 3.99 2005-06-15T03:50:03Z 2020-02-15T06:59:54Z +11559 428 2 1471 2.99 2005-06-15T20:53:26Z 2020-02-15T06:59:54Z +11560 428 1 1601 3.99 2005-06-16T06:11:13Z 2020-02-15T06:59:54Z +11561 428 1 2677 2.99 2005-06-19T12:01:59Z 2020-02-15T06:59:54Z +11562 428 2 3377 0.99 2005-06-21T13:51:12Z 2020-02-15T06:59:54Z +11563 428 1 3702 2.99 2005-07-06T10:13:56Z 2020-02-15T06:59:54Z +11564 428 1 3925 5.99 2005-07-06T20:41:44Z 2020-02-15T06:59:54Z +11565 428 1 4151 0.99 2005-07-07T08:49:02Z 2020-02-15T06:59:54Z +11566 428 1 5373 4.99 2005-07-09T18:48:57Z 2020-02-15T06:59:54Z +11567 428 1 6735 5.99 2005-07-12T14:08:20Z 2020-02-15T06:59:54Z +11568 428 1 7823 6.99 2005-07-28T08:32:53Z 2020-02-15T06:59:54Z +11569 428 1 8155 2.99 2005-07-28T20:57:06Z 2020-02-15T06:59:54Z +11570 428 2 8387 4.99 2005-07-29T05:47:27Z 2020-02-15T06:59:54Z +11571 428 2 8528 4.99 2005-07-29T10:24:22Z 2020-02-15T06:59:54Z +11572 428 1 9904 5.99 2005-07-31T14:34:17Z 2020-02-15T06:59:54Z +11573 428 2 9982 2.99 2005-07-31T17:09:02Z 2020-02-15T06:59:54Z +11574 428 2 10577 4.99 2005-08-01T13:46:38Z 2020-02-15T06:59:54Z +11575 428 2 10888 2.99 2005-08-02T00:52:45Z 2020-02-15T06:59:54Z +11576 428 2 11536 0.99 2005-08-17T00:40:03Z 2020-02-15T06:59:54Z +11577 429 2 150 5.99 2005-05-26T00:28:39Z 2020-02-15T06:59:54Z +11578 429 2 290 2.99 2005-05-26T20:08:33Z 2020-02-15T06:59:54Z +11579 429 2 601 7.99 2005-05-28T14:08:22Z 2020-02-15T06:59:54Z +11580 429 2 799 4.99 2005-05-29T17:24:48Z 2020-02-15T06:59:54Z +11581 429 2 844 4.99 2005-05-30T00:58:20Z 2020-02-15T06:59:54Z +11582 429 2 1781 5.99 2005-06-16T19:20:24Z 2020-02-15T06:59:54Z +11583 429 2 1798 2.99 2005-06-16T20:16:15Z 2020-02-15T06:59:54Z +11584 429 2 1916 7.99 2005-06-17T05:29:59Z 2020-02-15T06:59:54Z +11585 429 1 3409 2.99 2005-06-21T16:17:38Z 2020-02-15T06:59:54Z +11586 429 2 5868 4.99 2005-07-10T18:39:16Z 2020-02-15T06:59:54Z +11587 429 2 6196 7.99 2005-07-11T12:05:46Z 2020-02-15T06:59:54Z +11588 429 2 6886 6.99 2005-07-12T20:58:04Z 2020-02-15T06:59:54Z +11589 429 1 6977 6.99 2005-07-27T00:40:50Z 2020-02-15T06:59:54Z +11590 429 2 7352 4.99 2005-07-27T14:38:29Z 2020-02-15T06:59:54Z +11591 429 2 8136 1.99 2005-07-28T20:05:48Z 2020-02-15T06:59:54Z +11592 429 2 8143 2.99 2005-07-28T20:23:11Z 2020-02-15T06:59:54Z +11593 429 2 8175 7.99 2005-07-28T21:38:16Z 2020-02-15T06:59:54Z +11594 429 1 9849 0.99 2005-07-31T12:44:34Z 2020-02-15T06:59:54Z +11595 429 1 12259 2.99 2005-08-18T04:14:35Z 2020-02-15T06:59:54Z +11596 429 1 12953 4.99 2005-08-19T06:04:07Z 2020-02-15T06:59:54Z +11597 429 2 14495 4.99 2005-08-21T14:04:39Z 2020-02-15T06:59:54Z +11598 430 2 30 2.99 2005-05-25T04:01:32Z 2020-02-15T06:59:54Z +11599 430 1 364 4.99 2005-05-27T07:20:12Z 2020-02-15T06:59:54Z +11600 430 2 1207 0.99 2005-06-15T02:27:08Z 2020-02-15T06:59:54Z +11601 430 1 1274 2.99 2005-06-15T07:52:52Z 2020-02-15T06:59:54Z +11602 430 1 1538 2.99 2005-06-16T01:05:50Z 2020-02-15T06:59:54Z +11603 430 1 1759 6.99 2005-06-16T17:46:37Z 2020-02-15T06:59:54Z +11604 430 2 2892 0.99 2005-06-20T02:06:39Z 2020-02-15T06:59:54Z +11605 430 2 3153 0.99 2005-06-20T20:44:15Z 2020-02-15T06:59:54Z +11606 430 1 5002 4.99 2005-07-09T01:17:08Z 2020-02-15T06:59:54Z +11607 430 1 5217 5.99 2005-07-09T11:56:50Z 2020-02-15T06:59:54Z +11608 430 2 5879 6.99 2005-07-10T19:12:47Z 2020-02-15T06:59:54Z +11609 430 1 5958 6.99 2005-07-10T23:31:51Z 2020-02-15T06:59:54Z +11610 430 2 6043 0.99 2005-07-11T03:18:10Z 2020-02-15T06:59:54Z +11611 430 1 8560 4.99 2005-07-29T11:27:27Z 2020-02-15T06:59:54Z +11612 430 2 9450 2.99 2005-07-30T22:04:04Z 2020-02-15T06:59:54Z +11613 430 1 12723 0.99 2005-08-18T21:34:16Z 2020-02-15T06:59:54Z +11614 430 1 12965 4.99 2005-08-19T06:33:00Z 2020-02-15T06:59:54Z +11615 430 1 13007 0.99 2005-08-19T07:47:43Z 2020-02-15T06:59:54Z +11616 430 2 13452 0.99 2005-08-20T00:20:07Z 2020-02-15T06:59:54Z +11617 430 2 13454 2.99 2005-08-20T00:30:52Z 2020-02-15T06:59:54Z +11618 430 1 14058 5.99 2005-08-20T22:24:35Z 2020-02-15T06:59:54Z +11619 430 1 15031 4.99 2005-08-22T09:11:48Z 2020-02-15T06:59:54Z +11620 431 2 1126 2.99 2005-05-31T17:27:45Z 2020-02-15T06:59:54Z +11621 431 2 1561 2.99 2005-06-16T02:41:30Z 2020-02-15T06:59:54Z +11622 431 1 2096 4.99 2005-06-17T18:33:04Z 2020-02-15T06:59:54Z +11623 431 1 2269 3.99 2005-06-18T06:20:54Z 2020-02-15T06:59:54Z +11624 431 2 2281 4.99 2005-06-18T06:47:29Z 2020-02-15T06:59:54Z +11625 431 2 2761 2.99 2005-06-19T17:22:17Z 2020-02-15T06:59:54Z +11626 431 2 3304 6.99 2005-06-21T07:43:40Z 2020-02-15T06:59:54Z +11627 431 2 3369 8.99 2005-06-21T13:20:31Z 2020-02-15T06:59:54Z +11628 431 1 4144 3.99 2005-07-07T08:25:44Z 2020-02-15T06:59:54Z +11629 431 1 4801 2.99 2005-07-08T16:51:36Z 2020-02-15T06:59:54Z +11630 431 1 4863 0.99 2005-07-08T19:03:15Z 2020-02-15T06:59:54Z +11631 431 2 7978 4.99 2005-07-28T14:16:14Z 2020-02-15T06:59:54Z +11632 431 2 8810 4.99 2005-07-29T21:45:19Z 2020-02-15T06:59:54Z +11633 431 2 10508 0.99 2005-08-01T11:23:27Z 2020-02-15T06:59:54Z +11634 431 1 10527 4.99 2005-08-01T11:55:54Z 2020-02-15T06:59:54Z +11635 431 2 10959 6.99 2005-08-02T03:39:39Z 2020-02-15T06:59:54Z +11636 431 2 11538 2.99 2005-08-17T00:44:04Z 2020-02-15T06:59:54Z +11637 431 1 12273 6.99 2005-08-18T04:40:50Z 2020-02-15T06:59:54Z +11638 431 2 13153 1.99 2005-08-19T13:09:47Z 2020-02-15T06:59:54Z +11639 431 1 13784 4.99 2005-08-20T12:11:28Z 2020-02-15T06:59:54Z +11640 431 1 15809 2.99 2005-08-23T14:42:07Z 2020-02-15T06:59:54Z +11641 431 1 15960 2.99 2005-08-23T19:35:42Z 2020-02-15T06:59:54Z +11642 431 2 13587 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11643 432 2 326 7.99 2005-05-27T01:10:11Z 2020-02-15T06:59:54Z +11644 432 1 550 5.99 2005-05-28T07:39:16Z 2020-02-15T06:59:54Z +11645 432 1 897 8.99 2005-05-30T09:10:01Z 2020-02-15T06:59:54Z +11646 432 2 1180 5.99 2005-06-15T00:39:01Z 2020-02-15T06:59:54Z +11647 432 2 1597 2.99 2005-06-16T05:47:03Z 2020-02-15T06:59:54Z +11648 432 2 3194 4.99 2005-06-20T23:59:57Z 2020-02-15T06:59:54Z +11649 432 1 4965 5.99 2005-07-08T23:46:57Z 2020-02-15T06:59:54Z +11650 432 1 4973 4.99 2005-07-08T23:58:18Z 2020-02-15T06:59:54Z +11651 432 1 5204 2.99 2005-07-09T10:54:14Z 2020-02-15T06:59:54Z +11652 432 1 5322 6.99 2005-07-09T16:28:13Z 2020-02-15T06:59:54Z +11653 432 1 5944 4.99 2005-07-10T22:51:44Z 2020-02-15T06:59:54Z +11654 432 1 5990 4.99 2005-07-11T01:03:14Z 2020-02-15T06:59:54Z +11655 432 2 7326 4.99 2005-07-27T13:50:40Z 2020-02-15T06:59:54Z +11656 432 2 7681 0.99 2005-07-28T03:07:09Z 2020-02-15T06:59:54Z +11657 432 2 8079 4.99 2005-07-28T17:58:36Z 2020-02-15T06:59:54Z +11658 432 2 8094 6.99 2005-07-28T18:30:28Z 2020-02-15T06:59:54Z +11659 432 2 9916 4.99 2005-07-31T14:54:52Z 2020-02-15T06:59:54Z +11660 432 2 9984 2.99 2005-07-31T17:12:23Z 2020-02-15T06:59:54Z +11661 432 2 11870 0.99 2005-08-17T14:11:28Z 2020-02-15T06:59:54Z +11662 432 1 12767 6.99 2005-08-18T23:25:49Z 2020-02-15T06:59:54Z +11663 432 1 14027 2.99 2005-08-20T21:21:34Z 2020-02-15T06:59:54Z +11664 432 1 15523 4.99 2005-08-23T03:32:36Z 2020-02-15T06:59:54Z +11665 432 1 15713 6.99 2005-08-23T10:56:15Z 2020-02-15T06:59:54Z +11666 433 2 146 8.99 2005-05-26T00:07:11Z 2020-02-15T06:59:54Z +11667 433 1 691 10.99 2005-05-29T01:01:26Z 2020-02-15T06:59:54Z +11668 433 2 4087 6.99 2005-07-07T05:30:56Z 2020-02-15T06:59:54Z +11669 433 2 4158 0.99 2005-07-07T09:05:42Z 2020-02-15T06:59:54Z +11670 433 2 4988 7.99 2005-07-09T00:46:14Z 2020-02-15T06:59:54Z +11671 433 2 5457 0.99 2005-07-09T22:33:14Z 2020-02-15T06:59:54Z +11672 433 1 5969 8.99 2005-07-11T00:03:22Z 2020-02-15T06:59:54Z +11673 433 1 6765 5.99 2005-07-12T15:30:47Z 2020-02-15T06:59:54Z +11674 433 1 6848 0.99 2005-07-12T19:24:07Z 2020-02-15T06:59:54Z +11675 433 1 6850 4.99 2005-07-12T19:30:42Z 2020-02-15T06:59:54Z +11676 433 1 7821 4.99 2005-07-28T08:31:23Z 2020-02-15T06:59:54Z +11677 433 2 7907 4.99 2005-07-28T11:32:00Z 2020-02-15T06:59:54Z +11678 433 1 8414 5.99 2005-07-29T06:48:35Z 2020-02-15T06:59:54Z +11679 433 1 8713 2.99 2005-07-29T17:31:19Z 2020-02-15T06:59:54Z +11680 433 2 9161 4.99 2005-07-30T11:19:18Z 2020-02-15T06:59:54Z +11681 433 1 9294 3.99 2005-07-30T16:14:37Z 2020-02-15T06:59:54Z +11682 433 1 10663 4.99 2005-08-01T16:51:08Z 2020-02-15T06:59:54Z +11683 433 1 11664 2.99 2005-08-17T05:35:52Z 2020-02-15T06:59:54Z +11684 433 2 12669 6.99 2005-08-18T19:17:47Z 2020-02-15T06:59:54Z +11685 433 2 13273 4.99 2005-08-19T17:49:13Z 2020-02-15T06:59:54Z +11686 433 1 13801 4.99 2005-08-20T12:40:53Z 2020-02-15T06:59:54Z +11687 433 2 14523 4.99 2005-08-21T15:03:45Z 2020-02-15T06:59:54Z +11688 433 1 14559 6.99 2005-08-21T16:11:35Z 2020-02-15T06:59:54Z +11689 433 2 15476 4.99 2005-08-23T01:45:07Z 2020-02-15T06:59:54Z +11690 433 1 15502 5.99 2005-08-23T02:40:04Z 2020-02-15T06:59:54Z +11691 434 2 508 5.99 2005-05-28T02:40:50Z 2020-02-15T06:59:54Z +11692 434 1 1225 0.99 2005-06-15T03:45:35Z 2020-02-15T06:59:54Z +11693 434 2 1584 5.99 2005-06-16T04:50:50Z 2020-02-15T06:59:54Z +11694 434 2 2415 7.99 2005-06-18T17:02:42Z 2020-02-15T06:59:54Z +11695 434 1 2430 3.99 2005-06-18T17:51:46Z 2020-02-15T06:59:54Z +11696 434 1 2494 3.99 2005-06-18T22:15:09Z 2020-02-15T06:59:54Z +11697 434 1 3014 2.99 2005-06-20T10:45:20Z 2020-02-15T06:59:54Z +11698 434 2 3037 2.99 2005-06-20T12:28:03Z 2020-02-15T06:59:54Z +11699 434 1 4414 2.99 2005-07-07T22:00:21Z 2020-02-15T06:59:54Z +11700 434 2 4654 6.99 2005-07-08T09:48:03Z 2020-02-15T06:59:54Z +11701 434 2 4960 10.99 2005-07-08T23:27:16Z 2020-02-15T06:59:54Z +11702 434 2 5464 2.99 2005-07-09T22:58:14Z 2020-02-15T06:59:54Z +11703 434 2 6972 0.99 2005-07-27T00:31:25Z 2020-02-15T06:59:54Z +11704 434 1 7260 6.99 2005-07-27T11:09:28Z 2020-02-15T06:59:54Z +11705 434 2 7479 2.99 2005-07-27T19:18:17Z 2020-02-15T06:59:54Z +11706 434 1 8205 0.99 2005-07-28T23:18:48Z 2020-02-15T06:59:54Z +11707 434 1 9350 4.99 2005-07-30T18:24:30Z 2020-02-15T06:59:54Z +11708 434 1 11242 3.99 2005-08-02T13:32:00Z 2020-02-15T06:59:54Z +11709 434 1 11867 2.99 2005-08-17T14:04:28Z 2020-02-15T06:59:54Z +11710 434 2 12030 2.99 2005-08-17T20:10:48Z 2020-02-15T06:59:54Z +11711 434 2 12146 2.99 2005-08-18T00:10:04Z 2020-02-15T06:59:54Z +11712 434 2 12624 7.99 2005-08-18T17:35:00Z 2020-02-15T06:59:54Z +11713 434 2 13359 9.99 2005-08-19T21:04:49Z 2020-02-15T06:59:54Z +11714 434 1 13383 7.99 2005-08-19T21:38:44Z 2020-02-15T06:59:54Z +11715 434 2 14553 4.99 2005-08-21T15:59:40Z 2020-02-15T06:59:54Z +11716 434 2 15016 3.99 2005-08-22T08:47:35Z 2020-02-15T06:59:54Z +11717 434 2 15385 4.99 2005-08-22T22:37:34Z 2020-02-15T06:59:54Z +11718 435 1 757 7.99 2005-05-29T10:29:47Z 2020-02-15T06:59:54Z +11719 435 1 806 4.99 2005-05-29T18:31:30Z 2020-02-15T06:59:54Z +11720 435 2 1443 0.99 2005-06-15T18:57:51Z 2020-02-15T06:59:54Z +11721 435 1 2984 0.99 2005-06-20T08:43:44Z 2020-02-15T06:59:54Z +11722 435 1 3690 0.99 2005-07-06T09:46:03Z 2020-02-15T06:59:54Z +11723 435 1 3918 8.99 2005-07-06T20:26:15Z 2020-02-15T06:59:54Z +11724 435 2 5220 4.99 2005-07-09T11:59:04Z 2020-02-15T06:59:54Z +11725 435 2 6051 4.99 2005-07-11T03:46:41Z 2020-02-15T06:59:54Z +11726 435 1 6935 2.99 2005-07-26T23:13:10Z 2020-02-15T06:59:54Z +11727 435 1 8386 5.99 2005-07-29T05:45:30Z 2020-02-15T06:59:54Z +11728 435 2 8891 4.99 2005-07-30T00:46:55Z 2020-02-15T06:59:54Z +11729 435 2 9269 0.99 2005-07-30T15:02:33Z 2020-02-15T06:59:54Z +11730 435 1 9655 3.99 2005-07-31T05:57:54Z 2020-02-15T06:59:54Z +11731 435 2 9829 4.99 2005-07-31T11:58:38Z 2020-02-15T06:59:54Z +11732 435 1 10998 6.99 2005-08-02T04:50:55Z 2020-02-15T06:59:54Z +11733 435 1 11041 2.99 2005-08-02T06:03:53Z 2020-02-15T06:59:54Z +11734 435 1 11786 3.99 2005-08-17T10:57:40Z 2020-02-15T06:59:54Z +11735 435 1 11796 0.99 2005-08-17T11:16:47Z 2020-02-15T06:59:54Z +11736 435 2 12046 0.99 2005-08-17T20:47:46Z 2020-02-15T06:59:54Z +11737 435 1 12741 4.99 2005-08-18T22:17:05Z 2020-02-15T06:59:54Z +11738 435 2 13208 0.99 2005-08-19T15:18:55Z 2020-02-15T06:59:54Z +11739 435 1 14696 4.99 2005-08-21T20:48:05Z 2020-02-15T06:59:54Z +11740 435 1 14765 1.99 2005-08-21T23:40:28Z 2020-02-15T06:59:54Z +11741 435 1 14850 0.99 2005-08-22T02:16:55Z 2020-02-15T06:59:54Z +11742 435 1 15136 2.99 2005-08-22T13:19:25Z 2020-02-15T06:59:54Z +11743 436 1 45 7.99 2005-05-25T05:59:39Z 2020-02-15T06:59:54Z +11744 436 1 256 3.99 2005-05-26T15:20:58Z 2020-02-15T06:59:54Z +11745 436 1 848 5.99 2005-05-30T01:19:53Z 2020-02-15T06:59:54Z +11746 436 1 2291 9.99 2005-06-18T07:36:46Z 2020-02-15T06:59:54Z +11747 436 2 3851 1.99 2005-07-06T16:54:12Z 2020-02-15T06:59:54Z +11748 436 2 3944 2.99 2005-07-06T21:34:11Z 2020-02-15T06:59:54Z +11749 436 2 4643 0.99 2005-07-08T09:13:56Z 2020-02-15T06:59:54Z +11750 436 2 4751 2.99 2005-07-08T14:07:52Z 2020-02-15T06:59:54Z +11751 436 1 4782 4.99 2005-07-08T16:08:51Z 2020-02-15T06:59:54Z +11752 436 1 5959 0.99 2005-07-10T23:35:36Z 2020-02-15T06:59:54Z +11753 436 1 7593 4.99 2005-07-27T23:28:47Z 2020-02-15T06:59:54Z +11754 436 2 8027 5.99 2005-07-28T16:09:57Z 2020-02-15T06:59:54Z +11755 436 2 8097 9.99 2005-07-28T18:32:49Z 2020-02-15T06:59:54Z +11756 436 1 9345 9.99 2005-07-30T18:13:51Z 2020-02-15T06:59:54Z +11757 436 1 9539 0.99 2005-07-31T01:36:19Z 2020-02-15T06:59:54Z +11758 436 1 9638 5.99 2005-07-31T05:30:27Z 2020-02-15T06:59:54Z +11759 436 2 10216 3.99 2005-08-01T01:06:27Z 2020-02-15T06:59:54Z +11760 436 2 11160 0.99 2005-08-02T10:05:30Z 2020-02-15T06:59:54Z +11761 436 1 11580 2.99 2005-08-17T01:59:07Z 2020-02-15T06:59:54Z +11762 436 2 11615 4.99 2005-08-17T03:54:35Z 2020-02-15T06:59:54Z +11763 436 2 11896 5.99 2005-08-17T15:19:54Z 2020-02-15T06:59:54Z +11764 436 2 12297 0.99 2005-08-18T05:19:57Z 2020-02-15T06:59:54Z +11765 436 2 12429 6.99 2005-08-18T10:26:46Z 2020-02-15T06:59:54Z +11766 436 2 13099 9.99 2005-08-19T10:55:19Z 2020-02-15T06:59:54Z +11767 436 2 13382 7.99 2005-08-19T21:38:41Z 2020-02-15T06:59:54Z +11768 436 1 13533 3.99 2005-08-20T03:30:00Z 2020-02-15T06:59:54Z +11769 436 1 13760 5.99 2005-08-20T11:26:33Z 2020-02-15T06:59:54Z +11770 436 1 13814 0.99 2005-08-20T13:07:23Z 2020-02-15T06:59:54Z +11771 436 2 13826 2.99 2005-08-20T13:46:38Z 2020-02-15T06:59:54Z +11772 436 2 15766 4.99 2005-08-23T13:10:16Z 2020-02-15T06:59:54Z +11773 437 1 192 2.99 2005-05-26T06:20:37Z 2020-02-15T06:59:54Z +11774 437 2 656 4.99 2005-05-28T20:18:24Z 2020-02-15T06:59:54Z +11775 437 1 666 5.99 2005-05-28T21:48:51Z 2020-02-15T06:59:54Z +11776 437 2 2239 5.99 2005-06-18T04:23:54Z 2020-02-15T06:59:54Z +11777 437 1 2792 2.99 2005-06-19T18:52:25Z 2020-02-15T06:59:54Z +11778 437 2 3265 2.99 2005-06-21T04:23:13Z 2020-02-15T06:59:54Z +11779 437 1 3747 4.99 2005-07-06T12:11:14Z 2020-02-15T06:59:54Z +11780 437 2 4765 4.99 2005-07-08T15:08:45Z 2020-02-15T06:59:54Z +11781 437 2 5085 4.99 2005-07-09T05:36:49Z 2020-02-15T06:59:54Z +11782 437 1 5167 1.99 2005-07-09T09:18:43Z 2020-02-15T06:59:54Z +11783 437 2 5744 2.99 2005-07-10T12:08:33Z 2020-02-15T06:59:54Z +11784 437 2 5864 6.99 2005-07-10T18:29:57Z 2020-02-15T06:59:54Z +11785 437 2 8215 2.99 2005-07-28T23:43:56Z 2020-02-15T06:59:54Z +11786 437 2 9172 2.99 2005-07-30T11:36:38Z 2020-02-15T06:59:54Z +11787 437 2 9333 2.99 2005-07-30T17:53:45Z 2020-02-15T06:59:54Z +11788 437 2 10009 8.99 2005-07-31T18:00:28Z 2020-02-15T06:59:54Z +11789 437 2 10249 0.99 2005-08-01T02:35:39Z 2020-02-15T06:59:54Z +11790 437 2 11417 3.99 2005-08-02T19:44:46Z 2020-02-15T06:59:54Z +11791 437 1 12205 8.99 2005-08-18T02:21:08Z 2020-02-15T06:59:54Z +11792 437 2 13838 7.99 2005-08-20T14:22:46Z 2020-02-15T06:59:54Z +11793 437 1 13839 2.99 2005-08-20T14:23:16Z 2020-02-15T06:59:54Z +11794 437 1 13905 1.99 2005-08-20T16:12:48Z 2020-02-15T06:59:54Z +11795 437 1 14993 1.99 2005-08-22T07:52:18Z 2020-02-15T06:59:54Z +11796 438 2 23 4.99 2005-05-25T02:40:21Z 2020-02-15T06:59:54Z +11797 438 2 1036 0.99 2005-05-31T05:21:10Z 2020-02-15T06:59:54Z +11798 438 1 1138 6.99 2005-05-31T19:30:27Z 2020-02-15T06:59:54Z +11799 438 1 1431 4.99 2005-06-15T18:26:29Z 2020-02-15T06:59:54Z +11800 438 2 1779 0.99 2005-06-16T18:55:11Z 2020-02-15T06:59:54Z +11801 438 2 2206 0.99 2005-06-18T02:14:45Z 2020-02-15T06:59:54Z +11802 438 1 2591 4.99 2005-06-19T05:32:22Z 2020-02-15T06:59:54Z +11803 438 1 3315 4.99 2005-06-21T08:17:04Z 2020-02-15T06:59:54Z +11804 438 2 3368 0.99 2005-06-21T13:18:38Z 2020-02-15T06:59:54Z +11805 438 1 4355 4.99 2005-07-07T19:21:19Z 2020-02-15T06:59:54Z +11806 438 2 4446 2.99 2005-07-07T23:12:16Z 2020-02-15T06:59:54Z +11807 438 2 5316 4.99 2005-07-09T16:09:42Z 2020-02-15T06:59:54Z +11808 438 2 5426 4.99 2005-07-09T21:04:47Z 2020-02-15T06:59:54Z +11809 438 1 5870 2.99 2005-07-10T18:40:25Z 2020-02-15T06:59:54Z +11810 438 2 6138 4.99 2005-07-11T08:36:04Z 2020-02-15T06:59:54Z +11811 438 1 6563 3.99 2005-07-12T05:34:09Z 2020-02-15T06:59:54Z +11812 438 2 6615 4.99 2005-07-12T08:36:22Z 2020-02-15T06:59:54Z +11813 438 2 7357 1.99 2005-07-27T14:48:31Z 2020-02-15T06:59:54Z +11814 438 2 7374 8.99 2005-07-27T15:20:57Z 2020-02-15T06:59:54Z +11815 438 1 7598 0.99 2005-07-27T23:36:01Z 2020-02-15T06:59:54Z +11816 438 2 8547 2.99 2005-07-29T11:10:15Z 2020-02-15T06:59:54Z +11817 438 1 9082 3.99 2005-07-30T08:11:22Z 2020-02-15T06:59:54Z +11818 438 2 9782 0.99 2005-07-31T10:14:26Z 2020-02-15T06:59:54Z +11819 438 1 10512 6.99 2005-08-01T11:36:19Z 2020-02-15T06:59:54Z +11820 438 1 10607 4.99 2005-08-01T14:44:43Z 2020-02-15T06:59:54Z +11821 438 2 11644 4.99 2005-08-17T04:49:46Z 2020-02-15T06:59:54Z +11822 438 2 11933 4.99 2005-08-17T16:38:20Z 2020-02-15T06:59:54Z +11823 438 2 12654 0.99 2005-08-18T18:56:40Z 2020-02-15T06:59:54Z +11824 438 2 13319 7.99 2005-08-19T19:35:13Z 2020-02-15T06:59:54Z +11825 438 1 13414 4.99 2005-08-19T22:47:34Z 2020-02-15T06:59:54Z +11826 438 2 14582 5.99 2005-08-21T17:08:33Z 2020-02-15T06:59:54Z +11827 438 2 15893 5.99 2005-08-23T17:02:00Z 2020-02-15T06:59:54Z +11828 438 2 12524 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11829 439 1 126 2.99 2005-05-25T21:07:59Z 2020-02-15T06:59:54Z +11830 439 2 367 0.99 2005-05-27T07:37:02Z 2020-02-15T06:59:54Z +11831 439 1 786 9.99 2005-05-29T15:17:28Z 2020-02-15T06:59:54Z +11832 439 1 1264 4.99 2005-06-15T06:59:39Z 2020-02-15T06:59:54Z +11833 439 2 1557 0.99 2005-06-16T02:28:35Z 2020-02-15T06:59:54Z +11834 439 2 2097 4.99 2005-06-17T18:40:04Z 2020-02-15T06:59:54Z +11835 439 1 2621 2.99 2005-06-19T08:07:31Z 2020-02-15T06:59:54Z +11836 439 1 2992 2.99 2005-06-20T09:11:51Z 2020-02-15T06:59:54Z +11837 439 1 3294 6.99 2005-06-21T07:03:23Z 2020-02-15T06:59:54Z +11838 439 2 3774 5.99 2005-07-06T13:25:07Z 2020-02-15T06:59:54Z +11839 439 1 4528 2.99 2005-07-08T03:24:54Z 2020-02-15T06:59:54Z +11840 439 1 4813 4.99 2005-07-08T17:09:56Z 2020-02-15T06:59:54Z +11841 439 2 5801 5.99 2005-07-10T14:59:05Z 2020-02-15T06:59:54Z +11842 439 1 5893 2.99 2005-07-10T20:05:30Z 2020-02-15T06:59:54Z +11843 439 1 6577 2.99 2005-07-12T06:15:05Z 2020-02-15T06:59:54Z +11844 439 2 6672 2.99 2005-07-12T11:49:16Z 2020-02-15T06:59:54Z +11845 439 1 8343 2.99 2005-07-29T04:45:16Z 2020-02-15T06:59:54Z +11846 439 1 8624 2.99 2005-07-29T13:55:36Z 2020-02-15T06:59:54Z +11847 439 2 8703 2.99 2005-07-29T17:12:44Z 2020-02-15T06:59:54Z +11848 439 1 9275 0.99 2005-07-30T15:09:15Z 2020-02-15T06:59:54Z +11849 439 1 9322 6.99 2005-07-30T17:21:39Z 2020-02-15T06:59:54Z +11850 439 2 10744 1.99 2005-08-01T19:56:49Z 2020-02-15T06:59:54Z +11851 439 1 10905 2.99 2005-08-02T01:45:59Z 2020-02-15T06:59:54Z +11852 439 2 11042 6.99 2005-08-02T06:04:33Z 2020-02-15T06:59:54Z +11853 439 2 11544 5.99 2005-08-17T00:55:07Z 2020-02-15T06:59:54Z +11854 439 1 11989 2.99 2005-08-17T18:23:58Z 2020-02-15T06:59:54Z +11855 439 1 12621 2.99 2005-08-18T17:31:36Z 2020-02-15T06:59:54Z +11856 439 2 12755 5.99 2005-08-18T22:38:47Z 2020-02-15T06:59:54Z +11857 439 2 12826 3.99 2005-08-19T01:25:11Z 2020-02-15T06:59:54Z +11858 439 2 13358 4.99 2005-08-19T21:04:20Z 2020-02-15T06:59:54Z +11859 439 2 14730 5.99 2005-08-21T22:21:11Z 2020-02-15T06:59:54Z +11860 439 2 15044 9.99 2005-08-22T09:51:54Z 2020-02-15T06:59:54Z +11861 439 2 15162 4.99 2005-08-22T14:41:05Z 2020-02-15T06:59:54Z +11862 439 2 15653 4.99 2005-08-23T08:34:42Z 2020-02-15T06:59:54Z +11863 439 1 15818 1.99 2005-08-23T14:59:58Z 2020-02-15T06:59:54Z +11864 439 1 16018 0.99 2005-08-23T21:27:35Z 2020-02-15T06:59:54Z +11865 440 2 957 4.99 2005-05-30T17:53:29Z 2020-02-15T06:59:54Z +11866 440 1 4301 2.99 2005-07-07T16:37:23Z 2020-02-15T06:59:54Z +11867 440 1 4946 7.99 2005-07-08T22:46:23Z 2020-02-15T06:59:54Z +11868 440 2 5423 2.99 2005-07-09T20:56:48Z 2020-02-15T06:59:54Z +11869 440 2 5594 0.99 2005-07-10T04:33:36Z 2020-02-15T06:59:54Z +11870 440 2 5731 2.99 2005-07-10T11:31:52Z 2020-02-15T06:59:54Z +11871 440 2 5782 0.99 2005-07-10T13:52:56Z 2020-02-15T06:59:54Z +11872 440 2 7585 4.99 2005-07-27T23:18:22Z 2020-02-15T06:59:54Z +11873 440 1 7614 0.99 2005-07-28T00:14:38Z 2020-02-15T06:59:54Z +11874 440 1 7806 9.99 2005-07-28T07:58:17Z 2020-02-15T06:59:54Z +11875 440 1 9001 4.99 2005-07-30T04:59:41Z 2020-02-15T06:59:54Z +11876 440 1 9195 2.99 2005-07-30T12:29:43Z 2020-02-15T06:59:54Z +11877 440 1 9547 4.99 2005-07-31T01:52:34Z 2020-02-15T06:59:54Z +11878 440 2 12403 6.99 2005-08-18T09:31:05Z 2020-02-15T06:59:54Z +11879 440 1 12850 0.99 2005-08-19T02:08:06Z 2020-02-15T06:59:54Z +11880 440 2 13384 4.99 2005-08-19T21:38:51Z 2020-02-15T06:59:54Z +11881 440 2 13779 2.99 2005-08-20T12:03:54Z 2020-02-15T06:59:54Z +11882 440 1 14555 0.99 2005-08-21T16:03:02Z 2020-02-15T06:59:54Z +11883 440 2 14863 7.99 2005-08-22T02:57:04Z 2020-02-15T06:59:54Z +11884 440 2 15264 0.99 2005-08-22T18:27:38Z 2020-02-15T06:59:54Z +11885 440 1 15925 4.99 2005-08-23T18:15:06Z 2020-02-15T06:59:54Z +11886 440 1 13106 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11887 441 1 823 4.99 2005-05-29T21:39:37Z 2020-02-15T06:59:54Z +11888 441 1 1602 4.99 2005-06-16T06:12:40Z 2020-02-15T06:59:54Z +11889 441 2 2328 4.99 2005-06-18T10:17:21Z 2020-02-15T06:59:54Z +11890 441 2 3629 0.99 2005-07-06T06:23:22Z 2020-02-15T06:59:54Z +11891 441 2 3695 2.99 2005-07-06T10:02:08Z 2020-02-15T06:59:54Z +11892 441 1 4084 8.99 2005-07-07T05:16:00Z 2020-02-15T06:59:54Z +11893 441 2 4208 0.99 2005-07-07T11:34:22Z 2020-02-15T06:59:54Z +11894 441 2 5129 2.99 2005-07-09T07:28:33Z 2020-02-15T06:59:54Z +11895 441 1 5811 0.99 2005-07-10T15:27:04Z 2020-02-15T06:59:54Z +11896 441 2 6636 2.99 2005-07-12T09:49:46Z 2020-02-15T06:59:54Z +11897 441 1 6642 4.99 2005-07-12T10:37:52Z 2020-02-15T06:59:54Z +11898 441 1 6941 5.99 2005-07-26T23:18:49Z 2020-02-15T06:59:54Z +11899 441 2 8237 2.99 2005-07-29T00:29:56Z 2020-02-15T06:59:54Z +11900 441 1 8281 0.99 2005-07-29T01:46:00Z 2020-02-15T06:59:54Z +11901 441 1 8427 4.99 2005-07-29T07:08:36Z 2020-02-15T06:59:54Z +11902 441 1 8575 4.99 2005-07-29T11:52:47Z 2020-02-15T06:59:54Z +11903 441 2 8617 4.99 2005-07-29T13:46:14Z 2020-02-15T06:59:54Z +11904 441 2 9644 10.99 2005-07-31T05:40:35Z 2020-02-15T06:59:54Z +11905 441 2 9854 2.99 2005-07-31T12:59:34Z 2020-02-15T06:59:54Z +11906 441 2 10139 1.99 2005-07-31T22:02:20Z 2020-02-15T06:59:54Z +11907 441 1 10846 1.99 2005-08-01T23:47:54Z 2020-02-15T06:59:54Z +11908 441 2 11247 1.99 2005-08-02T13:34:08Z 2020-02-15T06:59:54Z +11909 441 2 13483 2.99 2005-08-20T01:16:38Z 2020-02-15T06:59:54Z +11910 441 2 13739 4.99 2005-08-20T10:45:10Z 2020-02-15T06:59:54Z +11911 441 1 13932 4.99 2005-08-20T17:17:00Z 2020-02-15T06:59:54Z +11912 441 2 14796 4.99 2005-08-22T00:40:49Z 2020-02-15T06:59:54Z +11913 441 2 15070 3.99 2005-08-22T10:55:45Z 2020-02-15T06:59:54Z +11914 441 1 14878 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +11915 442 2 466 0.99 2005-05-27T20:57:07Z 2020-02-15T06:59:54Z +11916 442 2 558 6.99 2005-05-28T08:38:43Z 2020-02-15T06:59:54Z +11917 442 1 632 5.99 2005-05-28T17:37:50Z 2020-02-15T06:59:54Z +11918 442 1 1251 5.99 2005-06-15T05:58:55Z 2020-02-15T06:59:54Z +11919 442 2 1358 0.99 2005-06-15T13:28:48Z 2020-02-15T06:59:54Z +11920 442 2 1576 8.99 2005-06-16T03:54:39Z 2020-02-15T06:59:54Z +11921 442 1 1774 2.99 2005-06-16T18:27:52Z 2020-02-15T06:59:54Z +11922 442 2 3545 4.99 2005-07-06T02:16:17Z 2020-02-15T06:59:54Z +11923 442 1 3661 2.99 2005-07-06T08:10:02Z 2020-02-15T06:59:54Z +11924 442 1 4052 5.99 2005-07-07T03:38:22Z 2020-02-15T06:59:54Z +11925 442 1 4058 2.99 2005-07-07T04:02:50Z 2020-02-15T06:59:54Z +11926 442 2 4365 2.99 2005-07-07T19:47:46Z 2020-02-15T06:59:54Z +11927 442 2 4577 3.99 2005-07-08T05:59:00Z 2020-02-15T06:59:54Z +11928 442 2 6590 4.99 2005-07-12T07:08:21Z 2020-02-15T06:59:54Z +11929 442 2 6632 2.99 2005-07-12T09:33:10Z 2020-02-15T06:59:54Z +11930 442 2 7427 2.99 2005-07-27T17:20:16Z 2020-02-15T06:59:54Z +11931 442 1 7460 0.99 2005-07-27T18:41:35Z 2020-02-15T06:59:54Z +11932 442 1 7671 2.99 2005-07-28T02:48:31Z 2020-02-15T06:59:54Z +11933 442 1 8044 2.99 2005-07-28T16:49:12Z 2020-02-15T06:59:54Z +11934 442 1 8758 4.99 2005-07-29T19:20:49Z 2020-02-15T06:59:54Z +11935 442 1 9180 4.99 2005-07-30T12:03:15Z 2020-02-15T06:59:54Z +11936 442 2 9873 5.99 2005-07-31T13:32:18Z 2020-02-15T06:59:54Z +11937 442 1 10034 2.99 2005-07-31T18:45:30Z 2020-02-15T06:59:54Z +11938 442 2 10365 6.99 2005-08-01T06:08:44Z 2020-02-15T06:59:54Z +11939 442 2 10452 0.99 2005-08-01T09:11:36Z 2020-02-15T06:59:54Z +11940 442 1 12948 0.99 2005-08-19T05:55:14Z 2020-02-15T06:59:54Z +11941 442 2 13004 0.99 2005-08-19T07:40:08Z 2020-02-15T06:59:54Z +11942 442 1 13155 7.99 2005-08-19T13:10:23Z 2020-02-15T06:59:54Z +11943 442 2 14199 0.99 2005-08-21T03:48:43Z 2020-02-15T06:59:54Z +11944 442 1 14418 1.99 2005-08-21T11:14:26Z 2020-02-15T06:59:54Z +11945 442 1 14466 0.99 2005-08-21T13:03:13Z 2020-02-15T06:59:54Z +11946 442 2 15207 2.99 2005-08-22T16:35:25Z 2020-02-15T06:59:54Z +11947 443 2 1068 4.99 2005-05-31T09:32:15Z 2020-02-15T06:59:54Z +11948 443 1 2871 2.99 2005-06-20T00:27:49Z 2020-02-15T06:59:54Z +11949 443 2 3510 5.99 2005-07-06T00:27:41Z 2020-02-15T06:59:54Z +11950 443 2 6625 5.99 2005-07-12T09:06:40Z 2020-02-15T06:59:54Z +11951 443 1 6913 4.99 2005-07-12T22:18:12Z 2020-02-15T06:59:54Z +11952 443 2 6983 2.99 2005-07-27T00:55:03Z 2020-02-15T06:59:54Z +11953 443 1 7317 2.99 2005-07-27T13:19:41Z 2020-02-15T06:59:54Z +11954 443 1 7667 8.99 2005-07-28T02:37:22Z 2020-02-15T06:59:54Z +11955 443 1 7987 9.99 2005-07-28T14:36:52Z 2020-02-15T06:59:54Z +11956 443 2 9740 1.99 2005-07-31T09:08:03Z 2020-02-15T06:59:54Z +11957 443 1 10014 4.99 2005-07-31T18:10:56Z 2020-02-15T06:59:54Z +11958 443 2 10081 5.99 2005-07-31T20:07:44Z 2020-02-15T06:59:54Z +11959 443 2 10360 0.99 2005-08-01T05:52:53Z 2020-02-15T06:59:54Z +11960 443 1 11449 4.99 2005-08-02T20:44:43Z 2020-02-15T06:59:54Z +11961 443 1 12415 4.99 2005-08-18T09:54:01Z 2020-02-15T06:59:54Z +11962 443 2 12857 4.99 2005-08-19T02:20:13Z 2020-02-15T06:59:54Z +11963 443 1 13489 2.99 2005-08-20T01:29:06Z 2020-02-15T06:59:54Z +11964 443 1 14561 2.99 2005-08-21T16:20:43Z 2020-02-15T06:59:54Z +11965 443 2 14611 6.99 2005-08-21T18:01:41Z 2020-02-15T06:59:54Z +11966 443 1 15182 0.99 2005-08-22T15:47:05Z 2020-02-15T06:59:54Z +11967 443 2 15393 4.99 2005-08-22T23:04:09Z 2020-02-15T06:59:54Z +11968 443 1 15519 0.99 2005-08-23T03:23:32Z 2020-02-15T06:59:54Z +11969 444 1 201 8.99 2005-05-26T07:13:45Z 2020-02-15T06:59:54Z +11970 444 1 557 0.99 2005-05-28T08:36:22Z 2020-02-15T06:59:54Z +11971 444 1 1239 0.99 2005-06-15T04:53:01Z 2020-02-15T06:59:54Z +11972 444 2 1397 3.99 2005-06-15T16:25:26Z 2020-02-15T06:59:54Z +11973 444 2 1441 1.99 2005-06-15T18:54:21Z 2020-02-15T06:59:54Z +11974 444 1 2551 4.99 2005-06-19T02:51:04Z 2020-02-15T06:59:54Z +11975 444 2 3301 7.99 2005-06-21T07:32:25Z 2020-02-15T06:59:54Z +11976 444 2 3415 5.99 2005-06-21T16:59:49Z 2020-02-15T06:59:54Z +11977 444 2 3498 4.99 2005-07-06T00:02:08Z 2020-02-15T06:59:54Z +11978 444 1 3539 0.99 2005-07-06T01:39:08Z 2020-02-15T06:59:54Z +11979 444 2 4648 6.99 2005-07-08T09:31:27Z 2020-02-15T06:59:54Z +11980 444 1 5753 2.99 2005-07-10T12:29:43Z 2020-02-15T06:59:54Z +11981 444 2 5825 2.99 2005-07-10T16:20:30Z 2020-02-15T06:59:54Z +11982 444 2 6285 2.99 2005-07-11T16:52:07Z 2020-02-15T06:59:54Z +11983 444 2 7679 3.99 2005-07-28T02:58:39Z 2020-02-15T06:59:54Z +11984 444 2 9634 1.99 2005-07-31T05:06:02Z 2020-02-15T06:59:54Z +11985 444 1 10529 4.99 2005-08-01T12:00:02Z 2020-02-15T06:59:54Z +11986 444 1 10693 4.99 2005-08-01T18:14:14Z 2020-02-15T06:59:54Z +11987 444 2 11353 0.99 2005-08-02T17:34:45Z 2020-02-15T06:59:54Z +11988 444 2 11419 6.99 2005-08-02T19:46:38Z 2020-02-15T06:59:54Z +11989 444 1 11728 4.99 2005-08-17T08:12:26Z 2020-02-15T06:59:54Z +11990 444 1 12161 6.99 2005-08-18T00:41:46Z 2020-02-15T06:59:54Z +11991 444 2 12712 2.99 2005-08-18T21:04:13Z 2020-02-15T06:59:54Z +11992 444 2 12946 2.99 2005-08-19T05:53:34Z 2020-02-15T06:59:54Z +11993 444 1 13488 0.99 2005-08-20T01:28:42Z 2020-02-15T06:59:54Z +11994 444 2 13559 2.99 2005-08-20T04:16:07Z 2020-02-15T06:59:54Z +11995 444 1 13924 0.99 2005-08-20T17:05:18Z 2020-02-15T06:59:54Z +11996 444 1 15249 4.99 2005-08-22T17:58:27Z 2020-02-15T06:59:54Z +11997 444 1 15557 0.99 2005-08-23T04:52:17Z 2020-02-15T06:59:54Z +11998 444 2 15815 4.99 2005-08-23T14:55:47Z 2020-02-15T06:59:54Z +11999 445 1 481 2.99 2005-05-27T22:49:27Z 2020-02-15T06:59:54Z +12000 445 1 960 2.99 2005-05-30T18:13:23Z 2020-02-15T06:59:54Z +12001 445 1 4041 0.99 2005-07-07T03:03:33Z 2020-02-15T06:59:54Z +12002 445 1 4193 0.99 2005-07-07T10:57:21Z 2020-02-15T06:59:54Z +12003 445 2 5225 2.99 2005-07-09T12:10:16Z 2020-02-15T06:59:54Z +12004 445 1 6346 0.99 2005-07-11T20:08:34Z 2020-02-15T06:59:54Z +12005 445 2 7351 2.99 2005-07-27T14:37:36Z 2020-02-15T06:59:54Z +12006 445 2 7971 4.99 2005-07-28T14:00:47Z 2020-02-15T06:59:54Z +12007 445 1 8851 8.99 2005-07-29T23:26:19Z 2020-02-15T06:59:54Z +12008 445 2 8911 0.99 2005-07-30T01:30:57Z 2020-02-15T06:59:54Z +12009 445 2 9625 4.99 2005-07-31T04:30:48Z 2020-02-15T06:59:54Z +12010 445 1 10007 0.99 2005-07-31T17:54:58Z 2020-02-15T06:59:54Z +12011 445 2 10334 1.99 2005-08-01T04:58:42Z 2020-02-15T06:59:54Z +12012 445 2 10341 0.99 2005-08-01T05:10:02Z 2020-02-15T06:59:54Z +12013 445 2 10936 9.99 2005-08-02T02:55:04Z 2020-02-15T06:59:54Z +12014 445 1 11383 7.99 2005-08-02T18:22:05Z 2020-02-15T06:59:54Z +12015 445 1 11868 4.99 2005-08-17T14:05:34Z 2020-02-15T06:59:54Z +12016 445 1 11877 3.99 2005-08-17T14:21:11Z 2020-02-15T06:59:54Z +12017 445 2 13586 0.99 2005-08-20T05:40:33Z 2020-02-15T06:59:54Z +12018 445 1 14612 6.99 2005-08-21T18:03:15Z 2020-02-15T06:59:54Z +12019 445 2 14673 2.99 2005-08-21T20:01:18Z 2020-02-15T06:59:54Z +12020 445 1 14866 6.99 2005-08-22T03:11:35Z 2020-02-15T06:59:54Z +12021 445 1 14955 4.99 2005-08-22T06:25:52Z 2020-02-15T06:59:54Z +12022 445 1 15123 3.99 2005-08-22T12:48:44Z 2020-02-15T06:59:54Z +12023 445 1 15791 6.99 2005-08-23T14:02:13Z 2020-02-15T06:59:54Z +12024 445 2 15906 2.99 2005-08-23T17:36:00Z 2020-02-15T06:59:54Z +12025 446 2 14 0.99 2005-05-25T00:31:15Z 2020-02-15T06:59:54Z +12026 446 1 236 0.99 2005-05-26T11:53:49Z 2020-02-15T06:59:54Z +12027 446 1 355 4.99 2005-05-27T06:15:33Z 2020-02-15T06:59:54Z +12028 446 1 2248 4.99 2005-06-18T04:59:48Z 2020-02-15T06:59:54Z +12029 446 2 2335 3.99 2005-06-18T10:59:36Z 2020-02-15T06:59:54Z +12030 446 2 2520 6.99 2005-06-19T00:29:00Z 2020-02-15T06:59:54Z +12031 446 2 2710 0.99 2005-06-19T14:03:56Z 2020-02-15T06:59:54Z +12032 446 1 3060 2.99 2005-06-20T13:47:20Z 2020-02-15T06:59:54Z +12033 446 2 3168 0.99 2005-06-20T21:46:01Z 2020-02-15T06:59:54Z +12034 446 2 4358 4.99 2005-07-07T19:27:04Z 2020-02-15T06:59:54Z +12035 446 2 5393 4.99 2005-07-09T19:35:12Z 2020-02-15T06:59:54Z +12036 446 2 5409 2.99 2005-07-09T20:17:19Z 2020-02-15T06:59:54Z +12037 446 2 6454 0.99 2005-07-12T01:00:12Z 2020-02-15T06:59:54Z +12038 446 1 6510 4.99 2005-07-12T03:35:39Z 2020-02-15T06:59:54Z +12039 446 1 6535 0.99 2005-07-12T04:43:43Z 2020-02-15T06:59:54Z +12040 446 1 6734 6.99 2005-07-12T14:04:24Z 2020-02-15T06:59:54Z +12041 446 1 7005 5.99 2005-07-27T01:38:36Z 2020-02-15T06:59:54Z +12042 446 2 7089 0.99 2005-07-27T04:43:42Z 2020-02-15T06:59:54Z +12043 446 1 7576 4.99 2005-07-27T22:54:35Z 2020-02-15T06:59:54Z +12044 446 2 8284 6.99 2005-07-29T01:56:40Z 2020-02-15T06:59:54Z +12045 446 1 8309 4.99 2005-07-29T03:22:20Z 2020-02-15T06:59:54Z +12046 446 2 8670 4.99 2005-07-29T15:49:03Z 2020-02-15T06:59:54Z +12047 446 2 8691 0.99 2005-07-29T16:41:23Z 2020-02-15T06:59:54Z +12048 446 2 8922 9.99 2005-07-30T02:08:25Z 2020-02-15T06:59:54Z +12049 446 1 8923 3.99 2005-07-30T02:08:49Z 2020-02-15T06:59:54Z +12050 446 1 9116 0.99 2005-07-30T09:19:41Z 2020-02-15T06:59:54Z +12051 446 1 11051 3.99 2005-08-02T06:23:39Z 2020-02-15T06:59:54Z +12052 446 2 12253 0.99 2005-08-18T04:00:50Z 2020-02-15T06:59:54Z +12053 446 2 12480 8.99 2005-08-18T12:26:43Z 2020-02-15T06:59:54Z +12054 446 1 15808 1.99 2005-08-23T14:38:37Z 2020-02-15T06:59:54Z +12055 446 2 15951 0.99 2005-08-23T19:10:32Z 2020-02-15T06:59:54Z +12056 447 1 461 2.99 2005-05-27T20:08:55Z 2020-02-15T06:59:54Z +12057 447 2 732 0.99 2005-05-29T07:32:51Z 2020-02-15T06:59:54Z +12058 447 2 1230 0.99 2005-06-15T04:04:09Z 2020-02-15T06:59:54Z +12059 447 2 1890 2.99 2005-06-17T04:06:13Z 2020-02-15T06:59:54Z +12060 447 1 2025 4.99 2005-06-17T13:04:00Z 2020-02-15T06:59:54Z +12061 447 2 2285 4.99 2005-06-18T07:00:54Z 2020-02-15T06:59:54Z +12062 447 2 4403 4.99 2005-07-07T21:29:40Z 2020-02-15T06:59:54Z +12063 447 1 4858 6.99 2005-07-08T18:53:24Z 2020-02-15T06:59:54Z +12064 447 1 5331 4.99 2005-07-09T16:54:06Z 2020-02-15T06:59:54Z +12065 447 1 5734 0.99 2005-07-10T11:37:28Z 2020-02-15T06:59:54Z +12066 447 2 5987 2.99 2005-07-11T00:55:31Z 2020-02-15T06:59:54Z +12067 447 1 6651 0.99 2005-07-12T10:57:28Z 2020-02-15T06:59:54Z +12068 447 1 6690 1.99 2005-07-12T12:23:02Z 2020-02-15T06:59:54Z +12069 447 1 8537 8.99 2005-07-29T10:44:54Z 2020-02-15T06:59:54Z +12070 447 2 8945 4.99 2005-07-30T03:11:48Z 2020-02-15T06:59:54Z +12071 447 2 9076 5.99 2005-07-30T07:58:12Z 2020-02-15T06:59:54Z +12072 447 1 9288 6.99 2005-07-30T15:56:39Z 2020-02-15T06:59:54Z +12073 447 1 10425 2.99 2005-08-01T08:23:25Z 2020-02-15T06:59:54Z +12074 447 2 10957 5.99 2005-08-02T03:33:30Z 2020-02-15T06:59:54Z +12075 447 2 11108 0.99 2005-08-02T08:20:01Z 2020-02-15T06:59:54Z +12076 447 1 11465 5.99 2005-08-02T21:43:52Z 2020-02-15T06:59:54Z +12077 447 2 12511 0.99 2005-08-18T13:23:19Z 2020-02-15T06:59:54Z +12078 447 1 13072 2.99 2005-08-19T10:03:30Z 2020-02-15T06:59:54Z +12079 447 2 13110 0.99 2005-08-19T11:24:37Z 2020-02-15T06:59:54Z +12080 447 1 13848 4.99 2005-08-20T14:37:49Z 2020-02-15T06:59:54Z +12081 447 2 14443 5.99 2005-08-21T12:06:32Z 2020-02-15T06:59:54Z +12082 447 1 15108 2.99 2005-08-22T12:10:07Z 2020-02-15T06:59:54Z +12083 447 1 15997 4.99 2005-08-23T20:40:31Z 2020-02-15T06:59:54Z +12084 447 2 16032 4.99 2005-08-23T21:59:57Z 2020-02-15T06:59:54Z +12085 448 1 299 4.99 2005-05-26T20:55:36Z 2020-02-15T06:59:54Z +12086 448 2 1123 2.99 2005-05-31T16:48:43Z 2020-02-15T06:59:54Z +12087 448 1 1313 5.99 2005-06-15T10:18:34Z 2020-02-15T06:59:54Z +12088 448 2 1823 7.99 2005-06-16T21:48:16Z 2020-02-15T06:59:54Z +12089 448 2 2697 0.99 2005-06-19T13:29:08Z 2020-02-15T06:59:54Z +12090 448 2 3225 3.99 2005-06-21T02:16:55Z 2020-02-15T06:59:54Z +12091 448 2 3347 5.99 2005-06-21T11:08:32Z 2020-02-15T06:59:54Z +12092 448 2 3959 5.99 2005-07-06T22:07:58Z 2020-02-15T06:59:54Z +12093 448 2 3992 6.99 2005-07-06T23:36:56Z 2020-02-15T06:59:54Z +12094 448 2 4024 0.99 2005-07-07T02:11:23Z 2020-02-15T06:59:54Z +12095 448 2 4206 2.99 2005-07-07T11:32:16Z 2020-02-15T06:59:54Z +12096 448 1 4406 1.99 2005-07-07T21:35:16Z 2020-02-15T06:59:54Z +12097 448 2 4537 2.99 2005-07-08T03:48:40Z 2020-02-15T06:59:54Z +12098 448 2 4558 2.99 2005-07-08T04:55:26Z 2020-02-15T06:59:54Z +12099 448 2 6341 2.99 2005-07-11T19:48:02Z 2020-02-15T06:59:54Z +12100 448 2 6985 4.99 2005-07-27T00:57:42Z 2020-02-15T06:59:54Z +12101 448 1 9178 10.99 2005-07-30T11:58:50Z 2020-02-15T06:59:54Z +12102 448 2 11608 8.99 2005-08-17T03:36:52Z 2020-02-15T06:59:54Z +12103 448 1 11798 9.99 2005-08-17T11:21:43Z 2020-02-15T06:59:54Z +12104 448 1 12446 2.99 2005-08-18T10:56:29Z 2020-02-15T06:59:54Z +12105 448 1 13220 2.99 2005-08-19T15:42:32Z 2020-02-15T06:59:54Z +12106 448 2 13250 3.99 2005-08-19T16:47:55Z 2020-02-15T06:59:54Z +12107 448 1 13982 3.99 2005-08-20T19:08:25Z 2020-02-15T06:59:54Z +12108 448 1 14580 3.99 2005-08-21T16:56:39Z 2020-02-15T06:59:54Z +12109 448 1 14711 2.99 2005-08-21T21:22:07Z 2020-02-15T06:59:54Z +12110 448 2 15358 9.99 2005-08-22T21:29:14Z 2020-02-15T06:59:54Z +12111 448 1 15427 4.99 2005-08-23T00:07:53Z 2020-02-15T06:59:54Z +12112 448 2 14734 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +12113 448 1 13577 0 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +12114 449 2 263 4.99 2005-05-26T15:47:40Z 2020-02-15T06:59:54Z +12115 449 2 325 5.99 2005-05-27T01:09:55Z 2020-02-15T06:59:54Z +12116 449 1 849 7.99 2005-05-30T01:23:07Z 2020-02-15T06:59:54Z +12117 449 2 1295 4.99 2005-06-15T09:17:20Z 2020-02-15T06:59:54Z +12118 449 1 2348 0.99 2005-06-18T12:15:43Z 2020-02-15T06:59:54Z +12119 449 2 2970 2.99 2005-06-20T07:51:51Z 2020-02-15T06:59:54Z +12120 449 1 3503 0.99 2005-07-06T00:17:24Z 2020-02-15T06:59:54Z +12121 449 1 3977 8.99 2005-07-06T23:00:49Z 2020-02-15T06:59:54Z +12122 449 2 4433 3.99 2005-07-07T22:45:41Z 2020-02-15T06:59:54Z +12123 449 1 5824 2.99 2005-07-10T16:19:53Z 2020-02-15T06:59:54Z +12124 449 2 7755 6.99 2005-07-28T06:22:18Z 2020-02-15T06:59:54Z +12125 449 2 7803 3.99 2005-07-28T07:52:13Z 2020-02-15T06:59:54Z +12126 449 2 8002 2.99 2005-07-28T15:11:00Z 2020-02-15T06:59:54Z +12127 449 2 10083 5.99 2005-07-31T20:10:19Z 2020-02-15T06:59:54Z +12128 449 2 10409 2.99 2005-08-01T07:49:15Z 2020-02-15T06:59:54Z +12129 449 1 10416 4.99 2005-08-01T08:08:39Z 2020-02-15T06:59:54Z +12130 449 1 10516 6.99 2005-08-01T11:41:55Z 2020-02-15T06:59:54Z +12131 449 2 10688 6.99 2005-08-01T17:53:43Z 2020-02-15T06:59:54Z +12132 449 1 12212 4.99 2005-08-18T02:33:29Z 2020-02-15T06:59:54Z +12133 449 2 14962 7.99 2005-08-22T06:37:43Z 2020-02-15T06:59:54Z +12134 450 2 548 3.99 2005-05-28T07:34:56Z 2020-02-15T06:59:54Z +12135 450 2 1639 4.99 2005-06-16T08:33:39Z 2020-02-15T06:59:54Z +12136 450 1 1739 0.99 2005-06-16T16:09:38Z 2020-02-15T06:59:54Z +12137 450 2 1914 2.99 2005-06-17T05:25:54Z 2020-02-15T06:59:54Z +12138 450 2 2278 0.99 2005-06-18T06:37:57Z 2020-02-15T06:59:54Z +12139 450 1 2501 4.99 2005-06-18T23:10:11Z 2020-02-15T06:59:54Z +12140 450 1 2626 2.99 2005-06-19T08:28:44Z 2020-02-15T06:59:54Z +12141 450 1 3155 4.99 2005-06-20T21:02:38Z 2020-02-15T06:59:54Z +12142 450 1 3570 3.99 2005-07-06T03:23:43Z 2020-02-15T06:59:54Z +12143 450 1 5999 7.99 2005-07-11T01:21:22Z 2020-02-15T06:59:54Z +12144 450 1 6028 4.99 2005-07-11T02:31:44Z 2020-02-15T06:59:54Z +12145 450 2 7365 2.99 2005-07-27T15:00:20Z 2020-02-15T06:59:54Z +12146 450 1 7610 0.99 2005-07-28T00:11:35Z 2020-02-15T06:59:54Z +12147 450 1 7626 0.99 2005-07-28T00:49:01Z 2020-02-15T06:59:54Z +12148 450 2 8733 4.99 2005-07-29T18:26:34Z 2020-02-15T06:59:54Z +12149 450 2 10432 2.99 2005-08-01T08:43:21Z 2020-02-15T06:59:54Z +12150 450 1 10984 3.99 2005-08-02T04:30:02Z 2020-02-15T06:59:54Z +12151 450 2 12812 0.99 2005-08-19T00:54:02Z 2020-02-15T06:59:54Z +12152 450 2 13731 4.99 2005-08-20T10:22:08Z 2020-02-15T06:59:54Z +12153 450 1 13810 0.99 2005-08-20T12:59:38Z 2020-02-15T06:59:54Z +12154 450 1 13828 4.99 2005-08-20T13:49:52Z 2020-02-15T06:59:54Z +12155 450 1 14282 4.99 2005-08-21T06:41:29Z 2020-02-15T06:59:54Z +12156 450 2 15019 0.99 2005-08-22T08:52:53Z 2020-02-15T06:59:54Z +12157 450 1 15327 4.99 2005-08-22T20:31:24Z 2020-02-15T06:59:54Z +12158 450 2 15419 4.99 2005-08-22T23:54:36Z 2020-02-15T06:59:54Z +12159 450 1 14172 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:54Z +12160 451 2 77 0.99 2005-05-25T11:31:59Z 2020-02-15T06:59:54Z +12161 451 2 328 2.99 2005-05-27T01:29:31Z 2020-02-15T06:59:54Z +12162 451 2 1113 2.99 2005-05-31T15:58:44Z 2020-02-15T06:59:54Z +12163 451 1 1202 0.99 2005-06-15T02:08:04Z 2020-02-15T06:59:54Z +12164 451 1 1851 0.99 2005-06-17T00:32:26Z 2020-02-15T06:59:54Z +12165 451 1 1940 6.99 2005-06-17T07:42:22Z 2020-02-15T06:59:54Z +12166 451 1 2671 1.99 2005-06-19T11:33:11Z 2020-02-15T06:59:54Z +12167 451 1 2909 3.99 2005-06-20T03:19:10Z 2020-02-15T06:59:54Z +12168 451 2 2917 0.99 2005-06-20T04:08:35Z 2020-02-15T06:59:55Z +12169 451 1 3316 6.99 2005-06-21T08:20:18Z 2020-02-15T06:59:55Z +12170 451 2 3826 4.99 2005-07-06T15:51:58Z 2020-02-15T06:59:55Z +12171 451 1 4538 2.99 2005-07-08T03:56:29Z 2020-02-15T06:59:55Z +12172 451 1 4794 8.99 2005-07-08T16:30:11Z 2020-02-15T06:59:55Z +12173 451 2 4930 4.99 2005-07-08T22:15:48Z 2020-02-15T06:59:55Z +12174 451 1 5005 3.99 2005-07-09T01:21:44Z 2020-02-15T06:59:55Z +12175 451 2 5518 8.99 2005-07-10T01:15:11Z 2020-02-15T06:59:55Z +12176 451 1 7018 2.99 2005-07-27T02:20:22Z 2020-02-15T06:59:55Z +12177 451 2 10337 8.99 2005-08-01T05:01:46Z 2020-02-15T06:59:55Z +12178 451 1 10856 2.99 2005-08-02T00:07:14Z 2020-02-15T06:59:55Z +12179 451 2 10950 2.99 2005-08-02T03:25:08Z 2020-02-15T06:59:55Z +12180 451 2 11167 6.99 2005-08-02T10:15:51Z 2020-02-15T06:59:55Z +12181 451 2 11381 6.99 2005-08-02T18:19:29Z 2020-02-15T06:59:55Z +12182 451 1 11790 2.99 2005-08-17T11:00:08Z 2020-02-15T06:59:55Z +12183 451 2 12371 2.99 2005-08-18T08:02:46Z 2020-02-15T06:59:55Z +12184 451 1 12422 4.99 2005-08-18T10:13:12Z 2020-02-15T06:59:55Z +12185 451 2 13003 1.99 2005-08-19T07:39:29Z 2020-02-15T06:59:55Z +12186 451 2 13100 2.99 2005-08-19T10:55:45Z 2020-02-15T06:59:55Z +12187 451 2 13252 2.99 2005-08-19T16:50:50Z 2020-02-15T06:59:55Z +12188 451 2 13380 0.99 2005-08-19T21:36:58Z 2020-02-15T06:59:55Z +12189 451 1 13666 2.99 2005-08-20T08:20:19Z 2020-02-15T06:59:55Z +12190 451 1 13705 2.99 2005-08-20T09:32:23Z 2020-02-15T06:59:55Z +12191 451 2 14500 0.99 2005-08-21T14:11:30Z 2020-02-15T06:59:55Z +12192 451 1 15651 4.99 2005-08-23T08:31:49Z 2020-02-15T06:59:55Z +12193 452 1 354 2.99 2005-05-27T06:12:26Z 2020-02-15T06:59:55Z +12194 452 2 714 2.99 2005-05-29T04:15:21Z 2020-02-15T06:59:55Z +12195 452 1 726 1.99 2005-05-29T06:05:29Z 2020-02-15T06:59:55Z +12196 452 2 1203 4.99 2005-06-15T02:09:02Z 2020-02-15T06:59:55Z +12197 452 1 1512 5.99 2005-06-15T22:53:03Z 2020-02-15T06:59:55Z +12198 452 1 1794 3.99 2005-06-16T20:08:37Z 2020-02-15T06:59:55Z +12199 452 1 2263 0.99 2005-06-18T05:57:47Z 2020-02-15T06:59:55Z +12200 452 2 2266 4.99 2005-06-18T06:05:02Z 2020-02-15T06:59:55Z +12201 452 1 2504 0.99 2005-06-18T23:19:53Z 2020-02-15T06:59:55Z +12202 452 2 2661 0.99 2005-06-19T10:50:52Z 2020-02-15T06:59:55Z +12203 452 2 3638 3.99 2005-07-06T07:08:17Z 2020-02-15T06:59:55Z +12204 452 1 3791 2.99 2005-07-06T14:24:56Z 2020-02-15T06:59:55Z +12205 452 2 3907 6.99 2005-07-06T19:39:14Z 2020-02-15T06:59:55Z +12206 452 1 4348 0.99 2005-07-07T19:02:05Z 2020-02-15T06:59:55Z +12207 452 2 4353 4.99 2005-07-07T19:19:05Z 2020-02-15T06:59:55Z +12208 452 2 4417 2.99 2005-07-07T22:05:05Z 2020-02-15T06:59:55Z +12209 452 1 4720 0.99 2005-07-08T12:34:34Z 2020-02-15T06:59:55Z +12210 452 1 5177 1.99 2005-07-09T09:43:21Z 2020-02-15T06:59:55Z +12211 452 2 5480 0.99 2005-07-09T23:49:07Z 2020-02-15T06:59:55Z +12212 452 2 6959 2.99 2005-07-27T00:07:51Z 2020-02-15T06:59:55Z +12213 452 2 7899 6.99 2005-07-28T11:10:12Z 2020-02-15T06:59:55Z +12214 452 1 8898 1.99 2005-07-30T01:02:20Z 2020-02-15T06:59:55Z +12215 452 2 9379 6.99 2005-07-30T19:13:01Z 2020-02-15T06:59:55Z +12216 452 2 11715 4.99 2005-08-17T07:40:55Z 2020-02-15T06:59:55Z +12217 452 1 11735 3.99 2005-08-17T08:35:42Z 2020-02-15T06:59:55Z +12218 452 1 12355 0.99 2005-08-18T07:36:23Z 2020-02-15T06:59:55Z +12219 452 1 12630 4.99 2005-08-18T17:49:28Z 2020-02-15T06:59:55Z +12220 452 1 13080 4.99 2005-08-19T10:18:00Z 2020-02-15T06:59:55Z +12221 452 1 13642 3.99 2005-08-20T07:42:17Z 2020-02-15T06:59:55Z +12222 452 1 14660 0.99 2005-08-21T19:43:21Z 2020-02-15T06:59:55Z +12223 452 1 15909 0.99 2005-08-23T17:42:42Z 2020-02-15T06:59:55Z +12224 452 1 14175 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12225 453 2 2852 5.99 2005-06-19T23:08:50Z 2020-02-15T06:59:55Z +12226 453 1 2853 7.99 2005-06-19T23:09:41Z 2020-02-15T06:59:55Z +12227 453 2 2887 4.99 2005-06-20T01:39:43Z 2020-02-15T06:59:55Z +12228 453 2 3929 0.99 2005-07-06T20:52:39Z 2020-02-15T06:59:55Z +12229 453 2 4033 8.99 2005-07-07T02:35:46Z 2020-02-15T06:59:55Z +12230 453 1 4717 4.99 2005-07-08T12:22:43Z 2020-02-15T06:59:55Z +12231 453 2 4805 2.99 2005-07-08T16:59:12Z 2020-02-15T06:59:55Z +12232 453 2 5359 6.99 2005-07-09T18:10:52Z 2020-02-15T06:59:55Z +12233 453 1 6752 4.99 2005-07-12T14:53:15Z 2020-02-15T06:59:55Z +12234 453 1 7563 0.99 2005-07-27T22:25:36Z 2020-02-15T06:59:55Z +12235 453 2 9289 6.99 2005-07-30T15:57:04Z 2020-02-15T06:59:55Z +12236 453 2 9406 6.99 2005-07-30T20:24:00Z 2020-02-15T06:59:55Z +12237 453 2 9900 1.99 2005-07-31T14:15:05Z 2020-02-15T06:59:55Z +12238 453 1 11794 4.99 2005-08-17T11:08:48Z 2020-02-15T06:59:55Z +12239 453 1 12703 2.99 2005-08-18T20:37:13Z 2020-02-15T06:59:55Z +12240 453 1 13711 7.99 2005-08-20T09:35:20Z 2020-02-15T06:59:55Z +12241 453 1 13785 4.99 2005-08-20T12:11:46Z 2020-02-15T06:59:55Z +12242 453 1 14133 2.99 2005-08-21T01:44:14Z 2020-02-15T06:59:55Z +12243 453 2 14306 5.99 2005-08-21T07:32:35Z 2020-02-15T06:59:55Z +12244 453 2 14644 4.99 2005-08-21T19:12:12Z 2020-02-15T06:59:55Z +12245 453 1 14652 4.99 2005-08-21T19:32:05Z 2020-02-15T06:59:55Z +12246 453 1 15252 0.99 2005-08-22T18:04:22Z 2020-02-15T06:59:55Z +12247 453 2 15627 4.99 2005-08-23T07:25:38Z 2020-02-15T06:59:55Z +12248 454 1 735 7.99 2005-05-29T08:08:13Z 2020-02-15T06:59:55Z +12249 454 2 1647 4.99 2005-06-16T09:14:58Z 2020-02-15T06:59:55Z +12250 454 2 1844 7.99 2005-06-16T23:53:53Z 2020-02-15T06:59:55Z +12251 454 1 1861 1.99 2005-06-17T01:17:31Z 2020-02-15T06:59:55Z +12252 454 1 1938 4.99 2005-06-17T07:18:36Z 2020-02-15T06:59:55Z +12253 454 2 2048 5.99 2005-06-17T14:55:29Z 2020-02-15T06:59:55Z +12254 454 2 2182 5.99 2005-06-18T00:56:18Z 2020-02-15T06:59:55Z +12255 454 1 2437 2.99 2005-06-18T18:30:26Z 2020-02-15T06:59:55Z +12256 454 2 2666 9.99 2005-06-19T11:17:12Z 2020-02-15T06:59:55Z +12257 454 1 3221 2.99 2005-06-21T01:49:47Z 2020-02-15T06:59:55Z +12258 454 1 3362 4.99 2005-06-21T12:19:54Z 2020-02-15T06:59:55Z +12259 454 1 3622 7.99 2005-07-06T06:05:04Z 2020-02-15T06:59:55Z +12260 454 2 4562 4.99 2005-07-08T05:08:32Z 2020-02-15T06:59:55Z +12261 454 2 5088 4.99 2005-07-09T05:45:16Z 2020-02-15T06:59:55Z +12262 454 2 5446 2.99 2005-07-09T21:59:55Z 2020-02-15T06:59:55Z +12263 454 2 6260 4.99 2005-07-11T15:26:29Z 2020-02-15T06:59:55Z +12264 454 2 6701 0.99 2005-07-12T12:47:59Z 2020-02-15T06:59:55Z +12265 454 2 8481 2.99 2005-07-29T08:45:57Z 2020-02-15T06:59:55Z +12266 454 1 8806 0.99 2005-07-29T21:36:34Z 2020-02-15T06:59:55Z +12267 454 2 9041 0.99 2005-07-30T06:32:36Z 2020-02-15T06:59:55Z +12268 454 1 9372 9.99 2005-07-30T19:04:30Z 2020-02-15T06:59:55Z +12269 454 1 10005 3.99 2005-07-31T17:53:51Z 2020-02-15T06:59:55Z +12270 454 2 12347 0.99 2005-08-18T07:18:10Z 2020-02-15T06:59:55Z +12271 454 1 12553 0.99 2005-08-18T14:46:54Z 2020-02-15T06:59:55Z +12272 454 2 13496 8.99 2005-08-20T01:42:29Z 2020-02-15T06:59:55Z +12273 454 2 13513 2.99 2005-08-20T02:27:53Z 2020-02-15T06:59:55Z +12274 454 2 13694 8.99 2005-08-20T09:13:23Z 2020-02-15T06:59:55Z +12275 454 1 13805 6.99 2005-08-20T12:53:12Z 2020-02-15T06:59:55Z +12276 454 1 14799 0.99 2005-08-22T00:44:57Z 2020-02-15T06:59:55Z +12277 454 2 14843 2.99 2005-08-22T02:05:25Z 2020-02-15T06:59:55Z +12278 454 2 15012 4.99 2005-08-22T08:42:32Z 2020-02-15T06:59:55Z +12279 454 1 15301 3.99 2005-08-22T19:44:16Z 2020-02-15T06:59:55Z +12280 454 2 15608 1.99 2005-08-23T06:55:26Z 2020-02-15T06:59:55Z +12281 455 2 115 0.99 2005-05-25T19:13:25Z 2020-02-15T06:59:55Z +12282 455 2 343 0.99 2005-05-27T04:13:41Z 2020-02-15T06:59:55Z +12283 455 2 1382 1.99 2005-06-15T15:18:08Z 2020-02-15T06:59:55Z +12284 455 1 1802 1.99 2005-06-16T20:23:30Z 2020-02-15T06:59:55Z +12285 455 1 1906 2.99 2005-06-17T04:53:35Z 2020-02-15T06:59:55Z +12286 455 2 2356 0.99 2005-06-18T12:59:23Z 2020-02-15T06:59:55Z +12287 455 2 4195 2.99 2005-07-07T11:00:02Z 2020-02-15T06:59:55Z +12288 455 1 4861 8.99 2005-07-08T18:57:30Z 2020-02-15T06:59:55Z +12289 455 1 4964 2.99 2005-07-08T23:46:38Z 2020-02-15T06:59:55Z +12290 455 1 5504 6.99 2005-07-10T00:36:38Z 2020-02-15T06:59:55Z +12291 455 2 6729 4.99 2005-07-12T13:58:23Z 2020-02-15T06:59:55Z +12292 455 1 7388 4.99 2005-07-27T15:54:19Z 2020-02-15T06:59:55Z +12293 455 2 7498 4.99 2005-07-27T20:09:31Z 2020-02-15T06:59:55Z +12294 455 2 7905 5.99 2005-07-28T11:26:57Z 2020-02-15T06:59:55Z +12295 455 2 8291 2.99 2005-07-29T02:28:25Z 2020-02-15T06:59:55Z +12296 455 1 10436 0.99 2005-08-01T08:50:59Z 2020-02-15T06:59:55Z +12297 455 1 11605 4.99 2005-08-17T03:30:57Z 2020-02-15T06:59:55Z +12298 455 1 12163 2.99 2005-08-18T00:46:01Z 2020-02-15T06:59:55Z +12299 455 1 12314 4.99 2005-08-18T06:10:02Z 2020-02-15T06:59:55Z +12300 455 2 13083 2.99 2005-08-19T10:26:45Z 2020-02-15T06:59:55Z +12301 455 2 13813 4.99 2005-08-20T13:03:26Z 2020-02-15T06:59:55Z +12302 455 1 14294 2.99 2005-08-21T07:07:26Z 2020-02-15T06:59:55Z +12303 455 2 14583 4.99 2005-08-21T17:11:47Z 2020-02-15T06:59:55Z +12304 455 1 15494 1.99 2005-08-23T02:25:09Z 2020-02-15T06:59:55Z +12305 456 2 19 4.99 2005-05-25T01:17:24Z 2020-02-15T06:59:55Z +12306 456 1 1288 2.99 2005-06-15T08:41:52Z 2020-02-15T06:59:55Z +12307 456 1 1700 0.99 2005-06-16T13:18:23Z 2020-02-15T06:59:55Z +12308 456 2 2103 5.99 2005-06-17T19:13:10Z 2020-02-15T06:59:55Z +12309 456 2 2146 6.99 2005-06-17T22:26:23Z 2020-02-15T06:59:55Z +12310 456 1 2192 4.99 2005-06-18T01:35:47Z 2020-02-15T06:59:55Z +12311 456 1 2404 0.99 2005-06-18T16:33:48Z 2020-02-15T06:59:55Z +12312 456 1 2581 2.99 2005-06-19T04:54:13Z 2020-02-15T06:59:55Z +12313 456 1 3743 7.99 2005-07-06T12:03:54Z 2020-02-15T06:59:55Z +12314 456 2 3881 2.99 2005-07-06T18:35:37Z 2020-02-15T06:59:55Z +12315 456 1 4141 3.99 2005-07-07T08:19:20Z 2020-02-15T06:59:55Z +12316 456 2 5964 0.99 2005-07-10T23:47:18Z 2020-02-15T06:59:55Z +12317 456 2 6023 0.99 2005-07-11T02:15:57Z 2020-02-15T06:59:55Z +12318 456 2 7248 2.99 2005-07-27T10:37:45Z 2020-02-15T06:59:55Z +12319 456 1 8749 4.99 2005-07-29T19:13:15Z 2020-02-15T06:59:55Z +12320 456 2 10519 5.99 2005-08-01T11:44:13Z 2020-02-15T06:59:55Z +12321 456 1 10813 2.99 2005-08-01T22:43:00Z 2020-02-15T06:59:55Z +12322 456 1 12188 4.99 2005-08-18T01:51:43Z 2020-02-15T06:59:55Z +12323 456 1 13144 8.99 2005-08-19T12:45:55Z 2020-02-15T06:59:55Z +12324 456 1 13348 4.99 2005-08-19T20:31:48Z 2020-02-15T06:59:55Z +12325 456 1 13547 4.99 2005-08-20T03:53:16Z 2020-02-15T06:59:55Z +12326 456 2 14253 2.99 2005-08-21T05:47:52Z 2020-02-15T06:59:55Z +12327 456 2 14690 1.99 2005-08-21T20:42:25Z 2020-02-15T06:59:55Z +12328 456 1 15720 3.99 2005-08-23T11:15:20Z 2020-02-15T06:59:55Z +12329 456 1 15910 2.99 2005-08-23T17:43:16Z 2020-02-15T06:59:55Z +12330 457 2 1024 7.99 2005-05-31T03:30:19Z 2020-02-15T06:59:55Z +12331 457 2 1453 4.99 2005-06-15T19:36:39Z 2020-02-15T06:59:55Z +12332 457 2 1727 0.99 2005-06-16T15:21:47Z 2020-02-15T06:59:55Z +12333 457 1 2030 0.99 2005-06-17T13:13:27Z 2020-02-15T06:59:55Z +12334 457 1 2172 7.99 2005-06-18T00:06:16Z 2020-02-15T06:59:55Z +12335 457 1 2670 4.99 2005-06-19T11:30:16Z 2020-02-15T06:59:55Z +12336 457 1 2762 3.99 2005-06-19T17:22:31Z 2020-02-15T06:59:55Z +12337 457 1 2811 0.99 2005-06-19T19:53:30Z 2020-02-15T06:59:55Z +12338 457 2 3115 2.99 2005-06-20T17:59:05Z 2020-02-15T06:59:55Z +12339 457 2 3184 2.99 2005-06-20T22:57:44Z 2020-02-15T06:59:55Z +12340 457 2 4600 5.99 2005-07-08T06:48:37Z 2020-02-15T06:59:55Z +12341 457 1 5500 0.99 2005-07-10T00:28:17Z 2020-02-15T06:59:55Z +12342 457 1 6467 7.99 2005-07-12T01:22:03Z 2020-02-15T06:59:55Z +12343 457 1 7184 1.99 2005-07-27T08:22:26Z 2020-02-15T06:59:55Z +12344 457 2 8373 4.99 2005-07-29T05:19:53Z 2020-02-15T06:59:55Z +12345 457 1 8502 2.99 2005-07-29T09:15:41Z 2020-02-15T06:59:55Z +12346 457 1 10049 2.99 2005-07-31T19:11:11Z 2020-02-15T06:59:55Z +12347 457 2 11956 6.99 2005-08-17T17:22:05Z 2020-02-15T06:59:55Z +12348 457 1 12115 4.99 2005-08-17T23:04:15Z 2020-02-15T06:59:55Z +12349 457 1 12171 4.99 2005-08-18T01:06:13Z 2020-02-15T06:59:55Z +12350 457 1 13088 0.99 2005-08-19T10:36:11Z 2020-02-15T06:59:55Z +12351 457 1 13150 2.99 2005-08-19T13:08:19Z 2020-02-15T06:59:55Z +12352 457 2 13934 0.99 2005-08-20T17:18:48Z 2020-02-15T06:59:55Z +12353 457 2 14327 10.99 2005-08-21T08:18:18Z 2020-02-15T06:59:55Z +12354 457 1 14365 6.99 2005-08-21T09:25:13Z 2020-02-15T06:59:55Z +12355 457 1 15128 3.99 2005-08-22T12:57:26Z 2020-02-15T06:59:55Z +12356 457 1 12645 3.98 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12357 457 2 14516 0 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12358 458 2 2629 5.99 2005-06-19T08:42:12Z 2020-02-15T06:59:55Z +12359 458 2 3322 0.99 2005-06-21T08:42:37Z 2020-02-15T06:59:55Z +12360 458 2 4525 2.99 2005-07-08T03:15:00Z 2020-02-15T06:59:55Z +12361 458 1 5412 2.99 2005-07-09T20:23:52Z 2020-02-15T06:59:55Z +12362 458 1 5572 0.99 2005-07-10T03:49:00Z 2020-02-15T06:59:55Z +12363 458 2 6250 3.99 2005-07-11T15:02:04Z 2020-02-15T06:59:55Z +12364 458 1 6431 5.99 2005-07-12T00:03:57Z 2020-02-15T06:59:55Z +12365 458 2 6595 7.99 2005-07-12T07:25:48Z 2020-02-15T06:59:55Z +12366 458 1 6654 1.99 2005-07-12T11:06:28Z 2020-02-15T06:59:55Z +12367 458 2 7923 3.99 2005-07-28T12:08:29Z 2020-02-15T06:59:55Z +12368 458 1 8158 0.99 2005-07-28T21:08:46Z 2020-02-15T06:59:55Z +12369 458 2 11138 2.99 2005-08-02T09:26:16Z 2020-02-15T06:59:55Z +12370 458 2 11975 2.99 2005-08-17T17:58:39Z 2020-02-15T06:59:55Z +12371 458 2 12768 0.99 2005-08-18T23:26:11Z 2020-02-15T06:59:55Z +12372 458 2 13259 2.99 2005-08-19T17:08:53Z 2020-02-15T06:59:55Z +12373 458 2 13487 2.99 2005-08-20T01:27:05Z 2020-02-15T06:59:55Z +12374 458 2 13571 4.99 2005-08-20T05:05:14Z 2020-02-15T06:59:55Z +12375 458 2 14428 4.99 2005-08-21T11:27:07Z 2020-02-15T06:59:55Z +12376 458 1 15604 4.99 2005-08-23T06:44:19Z 2020-02-15T06:59:55Z +12377 459 2 2 2.99 2005-05-24T22:54:33Z 2020-02-15T06:59:55Z +12378 459 2 1876 0.99 2005-06-17T02:50:51Z 2020-02-15T06:59:55Z +12379 459 2 1977 2.99 2005-06-17T09:38:22Z 2020-02-15T06:59:55Z +12380 459 2 2075 4.99 2005-06-17T16:40:33Z 2020-02-15T06:59:55Z +12381 459 1 2899 0.99 2005-06-20T02:39:21Z 2020-02-15T06:59:55Z +12382 459 2 3041 4.99 2005-06-20T12:35:44Z 2020-02-15T06:59:55Z +12383 459 2 3045 0.99 2005-06-20T12:42:00Z 2020-02-15T06:59:55Z +12384 459 2 3234 9.99 2005-06-21T02:39:44Z 2020-02-15T06:59:55Z +12385 459 1 3506 2.99 2005-07-06T00:22:29Z 2020-02-15T06:59:55Z +12386 459 2 4519 2.99 2005-07-08T02:51:23Z 2020-02-15T06:59:55Z +12387 459 1 5301 3.99 2005-07-09T15:42:10Z 2020-02-15T06:59:55Z +12388 459 1 5695 0.99 2005-07-10T09:43:40Z 2020-02-15T06:59:55Z +12389 459 1 6206 0.99 2005-07-11T12:32:14Z 2020-02-15T06:59:55Z +12390 459 2 6750 3.99 2005-07-12T14:49:39Z 2020-02-15T06:59:55Z +12391 459 1 7623 6.99 2005-07-28T00:37:41Z 2020-02-15T06:59:55Z +12392 459 2 7639 4.99 2005-07-28T01:14:36Z 2020-02-15T06:59:55Z +12393 459 1 7717 4.99 2005-07-28T04:33:54Z 2020-02-15T06:59:55Z +12394 459 1 7820 5.99 2005-07-28T08:28:51Z 2020-02-15T06:59:55Z +12395 459 1 7913 6.99 2005-07-28T11:47:23Z 2020-02-15T06:59:55Z +12396 459 1 8289 9.99 2005-07-29T02:23:24Z 2020-02-15T06:59:55Z +12397 459 2 8557 10.99 2005-07-29T11:19:59Z 2020-02-15T06:59:55Z +12398 459 1 8897 2.99 2005-07-30T01:00:17Z 2020-02-15T06:59:55Z +12399 459 1 9137 6.99 2005-07-30T10:09:24Z 2020-02-15T06:59:55Z +12400 459 2 9639 2.99 2005-07-31T05:32:10Z 2020-02-15T06:59:55Z +12401 459 1 9744 4.99 2005-07-31T09:15:38Z 2020-02-15T06:59:55Z +12402 459 2 10117 4.99 2005-07-31T21:14:31Z 2020-02-15T06:59:55Z +12403 459 1 10233 6.99 2005-08-01T01:54:23Z 2020-02-15T06:59:55Z +12404 459 2 10255 4.99 2005-08-01T02:46:13Z 2020-02-15T06:59:55Z +12405 459 1 10499 7.99 2005-08-01T11:00:20Z 2020-02-15T06:59:55Z +12406 459 1 10531 2.99 2005-08-01T12:06:30Z 2020-02-15T06:59:55Z +12407 459 1 12527 6.99 2005-08-18T13:48:46Z 2020-02-15T06:59:55Z +12408 459 1 12629 7.99 2005-08-18T17:40:33Z 2020-02-15T06:59:55Z +12409 459 2 13960 10.99 2005-08-20T18:16:26Z 2020-02-15T06:59:55Z +12410 459 1 13967 4.99 2005-08-20T18:28:46Z 2020-02-15T06:59:55Z +12411 459 1 14315 3.99 2005-08-21T07:56:39Z 2020-02-15T06:59:55Z +12412 459 1 15126 5.99 2005-08-22T12:53:58Z 2020-02-15T06:59:55Z +12413 459 2 15342 2.99 2005-08-22T20:56:41Z 2020-02-15T06:59:55Z +12414 459 1 15814 0.99 2005-08-23T14:52:50Z 2020-02-15T06:59:55Z +12415 460 1 223 4.99 2005-05-26T10:15:23Z 2020-02-15T06:59:55Z +12416 460 2 298 0.99 2005-05-26T20:52:26Z 2020-02-15T06:59:55Z +12417 460 1 880 0.99 2005-05-30T06:12:33Z 2020-02-15T06:59:55Z +12418 460 2 1064 4.99 2005-05-31T08:50:07Z 2020-02-15T06:59:55Z +12419 460 2 1392 0.99 2005-06-15T16:12:27Z 2020-02-15T06:59:55Z +12420 460 2 3820 4.99 2005-07-06T15:35:26Z 2020-02-15T06:59:55Z +12421 460 1 4452 7.99 2005-07-07T23:31:54Z 2020-02-15T06:59:55Z +12422 460 2 5482 3.99 2005-07-09T23:53:04Z 2020-02-15T06:59:55Z +12423 460 1 6613 4.99 2005-07-12T08:30:07Z 2020-02-15T06:59:55Z +12424 460 1 6788 5.99 2005-07-12T16:33:44Z 2020-02-15T06:59:55Z +12425 460 1 7125 6.99 2005-07-27T06:11:00Z 2020-02-15T06:59:55Z +12426 460 1 7785 3.99 2005-07-28T07:16:11Z 2020-02-15T06:59:55Z +12427 460 2 8656 2.99 2005-07-29T15:05:52Z 2020-02-15T06:59:55Z +12428 460 2 10754 10.99 2005-08-01T20:12:33Z 2020-02-15T06:59:55Z +12429 460 1 10926 1.99 2005-08-02T02:26:37Z 2020-02-15T06:59:55Z +12430 460 2 11554 2.99 2005-08-17T01:05:17Z 2020-02-15T06:59:55Z +12431 460 1 12056 5.99 2005-08-17T21:03:48Z 2020-02-15T06:59:55Z +12432 460 2 12586 4.99 2005-08-18T15:54:39Z 2020-02-15T06:59:55Z +12433 460 1 12865 0.99 2005-08-19T02:38:50Z 2020-02-15T06:59:55Z +12434 460 2 13215 8.99 2005-08-19T15:35:38Z 2020-02-15T06:59:55Z +12435 460 1 13341 3.99 2005-08-19T20:18:53Z 2020-02-15T06:59:55Z +12436 460 2 13920 5.99 2005-08-20T16:51:18Z 2020-02-15T06:59:55Z +12437 460 2 14864 0.99 2005-08-22T02:57:06Z 2020-02-15T06:59:55Z +12438 460 1 14923 3.99 2005-08-22T05:13:33Z 2020-02-15T06:59:55Z +12439 460 2 15954 2.99 2005-08-23T19:14:07Z 2020-02-15T06:59:55Z +12440 461 1 684 6.99 2005-05-29T00:13:15Z 2020-02-15T06:59:55Z +12441 461 2 3127 5.99 2005-06-20T18:39:43Z 2020-02-15T06:59:55Z +12442 461 2 3319 4.99 2005-06-21T08:25:46Z 2020-02-15T06:59:55Z +12443 461 2 3698 0.99 2005-07-06T10:09:20Z 2020-02-15T06:59:55Z +12444 461 2 4586 2.99 2005-07-08T06:12:33Z 2020-02-15T06:59:55Z +12445 461 1 5650 0.99 2005-07-10T07:17:01Z 2020-02-15T06:59:55Z +12446 461 1 5809 2.99 2005-07-10T15:19:30Z 2020-02-15T06:59:55Z +12447 461 2 7334 2.99 2005-07-27T13:59:58Z 2020-02-15T06:59:55Z +12448 461 2 7664 2.99 2005-07-28T02:24:23Z 2020-02-15T06:59:55Z +12449 461 2 8133 0.99 2005-07-28T20:01:06Z 2020-02-15T06:59:55Z +12450 461 2 8164 0.99 2005-07-28T21:17:19Z 2020-02-15T06:59:55Z +12451 461 2 9499 4.99 2005-07-30T23:58:30Z 2020-02-15T06:59:55Z +12452 461 1 9885 0.99 2005-07-31T13:59:32Z 2020-02-15T06:59:55Z +12453 461 2 10113 4.99 2005-07-31T21:10:03Z 2020-02-15T06:59:55Z +12454 461 1 10260 2.99 2005-08-01T02:58:07Z 2020-02-15T06:59:55Z +12455 461 2 11063 0.99 2005-08-02T06:53:48Z 2020-02-15T06:59:55Z +12456 461 2 11219 0.99 2005-08-02T12:30:20Z 2020-02-15T06:59:55Z +12457 461 2 12022 2.99 2005-08-17T19:52:45Z 2020-02-15T06:59:55Z +12458 461 1 13223 2.99 2005-08-19T15:52:04Z 2020-02-15T06:59:55Z +12459 461 1 13269 2.99 2005-08-19T17:34:00Z 2020-02-15T06:59:55Z +12460 461 1 14186 4.99 2005-08-21T03:31:07Z 2020-02-15T06:59:55Z +12461 461 1 14893 4.99 2005-08-22T04:15:48Z 2020-02-15T06:59:55Z +12462 461 1 15067 2.99 2005-08-22T10:49:21Z 2020-02-15T06:59:55Z +12463 461 2 15187 4.99 2005-08-22T15:53:32Z 2020-02-15T06:59:55Z +12464 461 1 15336 6.99 2005-08-22T20:47:48Z 2020-02-15T06:59:55Z +12465 461 2 15411 2.99 2005-08-22T23:35:41Z 2020-02-15T06:59:55Z +12466 461 2 15449 2.99 2005-08-23T00:55:43Z 2020-02-15T06:59:55Z +12467 461 2 15613 7.99 2005-08-23T07:03:19Z 2020-02-15T06:59:55Z +12468 462 2 156 2.99 2005-05-26T01:19:05Z 2020-02-15T06:59:55Z +12469 462 2 590 3.99 2005-05-28T13:06:50Z 2020-02-15T06:59:55Z +12470 462 2 1773 5.99 2005-06-16T18:13:43Z 2020-02-15T06:59:55Z +12471 462 2 1926 9.99 2005-06-17T06:24:30Z 2020-02-15T06:59:55Z +12472 462 1 3279 4.99 2005-06-21T06:05:53Z 2020-02-15T06:59:55Z +12473 462 1 4500 4.99 2005-07-08T02:10:01Z 2020-02-15T06:59:55Z +12474 462 2 4728 3.99 2005-07-08T12:59:01Z 2020-02-15T06:59:55Z +12475 462 1 6583 4.99 2005-07-12T06:42:31Z 2020-02-15T06:59:55Z +12476 462 1 6630 0.99 2005-07-12T09:30:05Z 2020-02-15T06:59:55Z +12477 462 1 6710 7.99 2005-07-12T13:23:09Z 2020-02-15T06:59:55Z +12478 462 1 6721 6.99 2005-07-12T13:42:58Z 2020-02-15T06:59:55Z +12479 462 2 7295 8.99 2005-07-27T12:38:47Z 2020-02-15T06:59:55Z +12480 462 1 7324 6.99 2005-07-27T13:42:39Z 2020-02-15T06:59:55Z +12481 462 1 7762 8.99 2005-07-28T06:34:23Z 2020-02-15T06:59:55Z +12482 462 1 7932 4.99 2005-07-28T12:24:54Z 2020-02-15T06:59:55Z +12483 462 2 7935 2.99 2005-07-28T12:33:17Z 2020-02-15T06:59:55Z +12484 462 1 8066 2.99 2005-07-28T17:20:09Z 2020-02-15T06:59:55Z +12485 462 1 8282 0.99 2005-07-29T01:49:04Z 2020-02-15T06:59:55Z +12486 462 1 8290 3.99 2005-07-29T02:24:08Z 2020-02-15T06:59:55Z +12487 462 2 8757 2.99 2005-07-29T19:19:10Z 2020-02-15T06:59:55Z +12488 462 1 9891 0.99 2005-07-31T14:05:44Z 2020-02-15T06:59:55Z +12489 462 1 10283 2.99 2005-08-01T03:29:45Z 2020-02-15T06:59:55Z +12490 462 2 11639 6.99 2005-08-17T04:43:29Z 2020-02-15T06:59:55Z +12491 462 1 11808 2.99 2005-08-17T11:51:16Z 2020-02-15T06:59:55Z +12492 462 1 12466 4.99 2005-08-18T11:36:55Z 2020-02-15T06:59:55Z +12493 462 2 12582 0.99 2005-08-18T15:51:12Z 2020-02-15T06:59:55Z +12494 462 1 12802 8.99 2005-08-19T00:27:41Z 2020-02-15T06:59:55Z +12495 462 2 13041 8.99 2005-08-19T09:05:38Z 2020-02-15T06:59:55Z +12496 462 1 13328 4.99 2005-08-19T19:56:01Z 2020-02-15T06:59:55Z +12497 462 1 13492 7.99 2005-08-20T01:32:04Z 2020-02-15T06:59:55Z +12498 462 2 15581 2.99 2005-08-23T05:42:13Z 2020-02-15T06:59:55Z +12499 462 1 15943 2.99 2005-08-23T18:49:32Z 2020-02-15T06:59:55Z +12500 462 1 16013 0.99 2005-08-23T21:17:17Z 2020-02-15T06:59:55Z +12501 463 1 560 1.99 2005-05-28T08:53:02Z 2020-02-15T06:59:55Z +12502 463 1 1284 2.99 2005-06-15T08:27:33Z 2020-02-15T06:59:55Z +12503 463 2 2527 4.99 2005-06-19T01:10:31Z 2020-02-15T06:59:55Z +12504 463 1 3217 2.99 2005-06-21T01:28:12Z 2020-02-15T06:59:55Z +12505 463 1 3309 4.99 2005-06-21T08:00:49Z 2020-02-15T06:59:55Z +12506 463 1 5026 2.99 2005-07-09T02:32:34Z 2020-02-15T06:59:55Z +12507 463 1 5157 2.99 2005-07-09T08:52:12Z 2020-02-15T06:59:55Z +12508 463 1 5448 0.99 2005-07-09T22:11:14Z 2020-02-15T06:59:55Z +12509 463 2 6294 0.99 2005-07-11T17:25:55Z 2020-02-15T06:59:55Z +12510 463 1 6932 6.99 2005-07-26T23:08:04Z 2020-02-15T06:59:55Z +12511 463 1 7013 0.99 2005-07-27T02:03:21Z 2020-02-15T06:59:55Z +12512 463 1 7361 0.99 2005-07-27T14:53:55Z 2020-02-15T06:59:55Z +12513 463 1 8762 2.99 2005-07-29T19:30:02Z 2020-02-15T06:59:55Z +12514 463 2 9405 7.99 2005-07-30T20:22:17Z 2020-02-15T06:59:55Z +12515 463 1 9954 2.99 2005-07-31T15:57:07Z 2020-02-15T06:59:55Z +12516 463 1 10275 3.99 2005-08-01T03:20:08Z 2020-02-15T06:59:55Z +12517 463 2 10405 0.99 2005-08-01T07:35:25Z 2020-02-15T06:59:55Z +12518 463 2 10906 2.99 2005-08-02T01:47:04Z 2020-02-15T06:59:55Z +12519 463 2 12096 7.99 2005-08-17T22:32:50Z 2020-02-15T06:59:55Z +12520 463 2 12679 6.99 2005-08-18T19:42:11Z 2020-02-15T06:59:55Z +12521 463 1 12950 2.99 2005-08-19T05:55:58Z 2020-02-15T06:59:55Z +12522 463 2 13938 4.99 2005-08-20T17:24:45Z 2020-02-15T06:59:55Z +12523 463 1 14689 0.99 2005-08-21T20:33:00Z 2020-02-15T06:59:55Z +12524 463 1 14859 2.99 2005-08-22T02:46:35Z 2020-02-15T06:59:55Z +12525 463 2 15151 7.99 2005-08-22T14:23:11Z 2020-02-15T06:59:55Z +12526 464 1 305 3.99 2005-05-26T21:22:07Z 2020-02-15T06:59:55Z +12527 464 2 373 1.99 2005-05-27T08:16:25Z 2020-02-15T06:59:55Z +12528 464 2 1277 4.99 2005-06-15T08:01:29Z 2020-02-15T06:59:55Z +12529 464 1 3167 2.99 2005-06-20T21:42:29Z 2020-02-15T06:59:55Z +12530 464 1 3761 4.99 2005-07-06T12:52:44Z 2020-02-15T06:59:55Z +12531 464 1 4337 5.99 2005-07-07T18:36:37Z 2020-02-15T06:59:55Z +12532 464 2 5455 6.99 2005-07-09T22:28:45Z 2020-02-15T06:59:55Z +12533 464 1 5910 4.99 2005-07-10T20:51:34Z 2020-02-15T06:59:55Z +12534 464 2 6601 3.99 2005-07-12T07:44:49Z 2020-02-15T06:59:55Z +12535 464 1 9600 5.99 2005-07-31T03:35:34Z 2020-02-15T06:59:55Z +12536 464 2 11275 1.99 2005-08-02T14:25:58Z 2020-02-15T06:59:55Z +12537 464 1 13644 8.99 2005-08-20T07:46:30Z 2020-02-15T06:59:55Z +12538 464 2 13943 2.99 2005-08-20T17:31:18Z 2020-02-15T06:59:55Z +12539 464 1 15092 6.99 2005-08-22T11:36:16Z 2020-02-15T06:59:55Z +12540 464 2 15854 0.99 2005-08-23T15:58:05Z 2020-02-15T06:59:55Z +12541 464 1 15983 4.99 2005-08-23T20:13:38Z 2020-02-15T06:59:55Z +12542 465 2 640 0.99 2005-05-28T18:43:26Z 2020-02-15T06:59:55Z +12543 465 1 1337 2.99 2005-06-15T12:12:42Z 2020-02-15T06:59:55Z +12544 465 1 2079 4.99 2005-06-17T16:49:45Z 2020-02-15T06:59:55Z +12545 465 1 2159 8.99 2005-06-17T23:37:29Z 2020-02-15T06:59:55Z +12546 465 2 2524 0.99 2005-06-19T00:48:11Z 2020-02-15T06:59:55Z +12547 465 1 4763 0.99 2005-07-08T14:57:32Z 2020-02-15T06:59:55Z +12548 465 2 6904 3.99 2005-07-12T22:02:09Z 2020-02-15T06:59:55Z +12549 465 2 7508 2.99 2005-07-27T20:33:08Z 2020-02-15T06:59:55Z +12550 465 1 10542 3.99 2005-08-01T12:32:23Z 2020-02-15T06:59:55Z +12551 465 1 11156 2.99 2005-08-02T09:56:06Z 2020-02-15T06:59:55Z +12552 465 1 11586 4.99 2005-08-17T02:20:42Z 2020-02-15T06:59:55Z +12553 465 2 11648 6.99 2005-08-17T04:56:16Z 2020-02-15T06:59:55Z +12554 465 2 12106 4.99 2005-08-17T22:55:32Z 2020-02-15T06:59:55Z +12555 465 1 12814 4.99 2005-08-19T00:58:24Z 2020-02-15T06:59:55Z +12556 465 1 12864 4.99 2005-08-19T02:38:26Z 2020-02-15T06:59:55Z +12557 465 1 15550 3.99 2005-08-23T04:27:54Z 2020-02-15T06:59:55Z +12558 465 2 15859 4.99 2005-08-23T16:08:15Z 2020-02-15T06:59:55Z +12559 466 2 1104 2.99 2005-05-31T14:30:01Z 2020-02-15T06:59:55Z +12560 466 2 1808 7.99 2005-06-16T20:59:35Z 2020-02-15T06:59:55Z +12561 466 2 2446 8.99 2005-06-18T19:04:41Z 2020-02-15T06:59:55Z +12562 466 1 3022 3.99 2005-06-20T11:17:20Z 2020-02-15T06:59:55Z +12563 466 2 3237 4.99 2005-06-21T02:47:56Z 2020-02-15T06:59:55Z +12564 466 2 3343 2.99 2005-06-21T10:56:59Z 2020-02-15T06:59:55Z +12565 466 2 5048 0.99 2005-07-09T03:46:33Z 2020-02-15T06:59:55Z +12566 466 1 5691 4.99 2005-07-10T09:29:49Z 2020-02-15T06:59:55Z +12567 466 1 6073 6.99 2005-07-11T04:54:31Z 2020-02-15T06:59:55Z +12568 466 2 7080 2.99 2005-07-27T04:25:25Z 2020-02-15T06:59:55Z +12569 466 2 8276 0.99 2005-07-29T01:38:43Z 2020-02-15T06:59:55Z +12570 466 1 9202 3.99 2005-07-30T12:43:24Z 2020-02-15T06:59:55Z +12571 466 1 9257 2.99 2005-07-30T14:30:38Z 2020-02-15T06:59:55Z +12572 466 1 10469 4.99 2005-08-01T09:51:11Z 2020-02-15T06:59:55Z +12573 466 2 11343 0.99 2005-08-02T17:12:30Z 2020-02-15T06:59:55Z +12574 466 1 11359 4.99 2005-08-02T17:45:55Z 2020-02-15T06:59:55Z +12575 466 1 12048 7.99 2005-08-17T20:49:24Z 2020-02-15T06:59:55Z +12576 466 1 13478 2.99 2005-08-20T01:07:14Z 2020-02-15T06:59:55Z +12577 466 1 13884 5.99 2005-08-20T15:30:51Z 2020-02-15T06:59:55Z +12578 466 1 13988 4.99 2005-08-20T19:21:28Z 2020-02-15T06:59:55Z +12579 466 2 14546 2.99 2005-08-21T15:50:50Z 2020-02-15T06:59:55Z +12580 466 2 15230 4.99 2005-08-22T17:31:41Z 2020-02-15T06:59:55Z +12581 466 1 16005 7.99 2005-08-23T21:00:22Z 2020-02-15T06:59:55Z +12582 467 2 225 4.99 2005-05-26T10:27:50Z 2020-02-15T06:59:55Z +12583 467 1 1737 8.99 2005-06-16T15:59:44Z 2020-02-15T06:59:55Z +12584 467 2 2121 4.99 2005-06-17T20:38:54Z 2020-02-15T06:59:55Z +12585 467 2 2870 9.99 2005-06-20T00:17:46Z 2020-02-15T06:59:55Z +12586 467 1 3250 6.99 2005-06-21T03:16:36Z 2020-02-15T06:59:55Z +12587 467 1 4216 0.99 2005-07-07T12:01:34Z 2020-02-15T06:59:55Z +12588 467 2 4222 4.99 2005-07-07T12:20:21Z 2020-02-15T06:59:55Z +12589 467 1 4259 4.99 2005-07-07T14:22:18Z 2020-02-15T06:59:55Z +12590 467 2 5160 4.99 2005-07-09T08:57:07Z 2020-02-15T06:59:55Z +12591 467 2 6271 6.99 2005-07-11T16:01:35Z 2020-02-15T06:59:55Z +12592 467 2 7360 2.99 2005-07-27T14:52:06Z 2020-02-15T06:59:55Z +12593 467 2 7573 5.99 2005-07-27T22:46:20Z 2020-02-15T06:59:55Z +12594 467 1 7611 2.99 2005-07-28T00:11:47Z 2020-02-15T06:59:55Z +12595 467 1 8010 7.99 2005-07-28T15:26:20Z 2020-02-15T06:59:55Z +12596 467 2 8061 6.99 2005-07-28T17:12:53Z 2020-02-15T06:59:55Z +12597 467 2 8224 2.99 2005-07-28T23:59:02Z 2020-02-15T06:59:55Z +12598 467 2 8480 8.99 2005-07-29T08:44:46Z 2020-02-15T06:59:55Z +12599 467 1 8767 4.99 2005-07-29T19:42:33Z 2020-02-15T06:59:55Z +12600 467 2 10239 0.99 2005-08-01T02:09:22Z 2020-02-15T06:59:55Z +12601 467 2 11332 2.99 2005-08-02T16:52:57Z 2020-02-15T06:59:55Z +12602 467 1 11874 4.99 2005-08-17T14:16:40Z 2020-02-15T06:59:55Z +12603 467 1 12266 2.99 2005-08-18T04:22:31Z 2020-02-15T06:59:55Z +12604 467 1 12437 9.99 2005-08-18T10:42:43Z 2020-02-15T06:59:55Z +12605 467 1 12641 2.99 2005-08-18T18:18:08Z 2020-02-15T06:59:55Z +12606 467 1 14402 2.99 2005-08-21T10:38:17Z 2020-02-15T06:59:55Z +12607 467 1 14451 0.99 2005-08-21T12:21:44Z 2020-02-15T06:59:55Z +12608 467 1 14842 3.99 2005-08-22T02:04:38Z 2020-02-15T06:59:55Z +12609 467 1 15032 0.99 2005-08-22T09:14:09Z 2020-02-15T06:59:55Z +12610 467 2 15830 2.99 2005-08-23T15:19:15Z 2020-02-15T06:59:55Z +12611 468 2 101 6.99 2005-05-25T17:17:04Z 2020-02-15T06:59:55Z +12612 468 1 186 4.99 2005-05-26T05:32:52Z 2020-02-15T06:59:55Z +12613 468 2 296 6.99 2005-05-26T20:35:19Z 2020-02-15T06:59:55Z +12614 468 2 459 0.99 2005-05-27T20:00:04Z 2020-02-15T06:59:55Z +12615 468 1 673 0.99 2005-05-28T22:07:30Z 2020-02-15T06:59:55Z +12616 468 2 1229 2.99 2005-06-15T03:53:13Z 2020-02-15T06:59:55Z +12617 468 1 1627 8.99 2005-06-16T07:51:09Z 2020-02-15T06:59:55Z +12618 468 1 1821 2.99 2005-06-16T21:42:49Z 2020-02-15T06:59:55Z +12619 468 1 1975 2.99 2005-06-17T09:32:10Z 2020-02-15T06:59:55Z +12620 468 2 2462 4.99 2005-06-18T20:00:15Z 2020-02-15T06:59:55Z +12621 468 1 2831 0.99 2005-06-19T21:17:06Z 2020-02-15T06:59:55Z +12622 468 2 3724 2.99 2005-07-06T11:12:48Z 2020-02-15T06:59:55Z +12623 468 1 3840 5.99 2005-07-06T16:30:59Z 2020-02-15T06:59:55Z +12624 468 2 4184 3.99 2005-07-07T10:30:08Z 2020-02-15T06:59:55Z +12625 468 2 4527 3.99 2005-07-08T03:20:10Z 2020-02-15T06:59:55Z +12626 468 1 5285 2.99 2005-07-09T15:10:44Z 2020-02-15T06:59:55Z +12627 468 1 6392 0.99 2005-07-11T22:25:19Z 2020-02-15T06:59:55Z +12628 468 1 6581 4.99 2005-07-12T06:26:49Z 2020-02-15T06:59:55Z +12629 468 2 6815 5.99 2005-07-12T18:14:10Z 2020-02-15T06:59:55Z +12630 468 2 7292 4.99 2005-07-27T12:34:14Z 2020-02-15T06:59:55Z +12631 468 1 7685 0.99 2005-07-28T03:13:00Z 2020-02-15T06:59:55Z +12632 468 2 8423 5.99 2005-07-29T07:02:57Z 2020-02-15T06:59:55Z +12633 468 2 8768 6.99 2005-07-29T19:43:02Z 2020-02-15T06:59:55Z +12634 468 1 9598 0.99 2005-07-31T03:30:41Z 2020-02-15T06:59:55Z +12635 468 1 9690 6.99 2005-07-31T07:06:29Z 2020-02-15T06:59:55Z +12636 468 2 11257 10.99 2005-08-02T13:45:05Z 2020-02-15T06:59:55Z +12637 468 2 11633 4.99 2005-08-17T04:30:09Z 2020-02-15T06:59:55Z +12638 468 2 12026 6.99 2005-08-17T20:00:10Z 2020-02-15T06:59:55Z +12639 468 2 13221 3.99 2005-08-19T15:45:47Z 2020-02-15T06:59:55Z +12640 468 1 13417 0.99 2005-08-19T22:51:39Z 2020-02-15T06:59:55Z +12641 468 2 14154 4.99 2005-08-21T02:30:00Z 2020-02-15T06:59:55Z +12642 468 2 14210 4.99 2005-08-21T04:28:02Z 2020-02-15T06:59:55Z +12643 468 1 14309 9.99 2005-08-21T07:44:17Z 2020-02-15T06:59:55Z +12644 468 1 14313 2.99 2005-08-21T07:49:53Z 2020-02-15T06:59:55Z +12645 468 1 14614 9.99 2005-08-21T18:03:51Z 2020-02-15T06:59:55Z +12646 468 2 15435 4.99 2005-08-23T00:28:19Z 2020-02-15T06:59:55Z +12647 468 1 15522 1.99 2005-08-23T03:32:31Z 2020-02-15T06:59:55Z +12648 468 1 15836 2.99 2005-08-23T15:29:17Z 2020-02-15T06:59:55Z +12649 468 2 16044 0.99 2005-08-23T22:24:39Z 2020-02-15T06:59:55Z +12650 469 1 168 0.99 2005-05-26T03:07:43Z 2020-02-15T06:59:55Z +12651 469 2 506 7.99 2005-05-28T02:09:19Z 2020-02-15T06:59:55Z +12652 469 2 529 4.99 2005-05-28T04:34:17Z 2020-02-15T06:59:55Z +12653 469 2 936 1.99 2005-05-30T13:52:49Z 2020-02-15T06:59:55Z +12654 469 1 1119 2.99 2005-05-31T16:34:27Z 2020-02-15T06:59:55Z +12655 469 2 1399 0.99 2005-06-15T16:29:51Z 2020-02-15T06:59:55Z +12656 469 1 1680 9.99 2005-06-16T11:17:22Z 2020-02-15T06:59:55Z +12657 469 2 3522 4.99 2005-07-06T01:00:21Z 2020-02-15T06:59:55Z +12658 469 1 3526 10.99 2005-07-06T01:03:29Z 2020-02-15T06:59:55Z +12659 469 2 4067 3.99 2005-07-07T04:34:23Z 2020-02-15T06:59:55Z +12660 469 2 4123 0.99 2005-07-07T07:16:19Z 2020-02-15T06:59:55Z +12661 469 1 5133 0.99 2005-07-09T07:43:22Z 2020-02-15T06:59:55Z +12662 469 1 5299 3.99 2005-07-09T15:38:09Z 2020-02-15T06:59:55Z +12663 469 2 5664 6.99 2005-07-10T08:04:41Z 2020-02-15T06:59:55Z +12664 469 2 6022 0.99 2005-07-11T02:15:53Z 2020-02-15T06:59:55Z +12665 469 2 6099 4.99 2005-07-11T06:24:44Z 2020-02-15T06:59:55Z +12666 469 1 6797 4.99 2005-07-12T16:47:06Z 2020-02-15T06:59:55Z +12667 469 1 6955 3.99 2005-07-26T23:55:48Z 2020-02-15T06:59:55Z +12668 469 2 7062 6.99 2005-07-27T03:52:01Z 2020-02-15T06:59:55Z +12669 469 2 7271 6.99 2005-07-27T11:29:11Z 2020-02-15T06:59:55Z +12670 469 2 7756 4.99 2005-07-28T06:22:52Z 2020-02-15T06:59:55Z +12671 469 1 7914 4.99 2005-07-28T11:48:08Z 2020-02-15T06:59:55Z +12672 469 2 8791 0.99 2005-07-29T20:53:23Z 2020-02-15T06:59:55Z +12673 469 1 9187 2.99 2005-07-30T12:14:03Z 2020-02-15T06:59:55Z +12674 469 2 10075 4.99 2005-07-31T19:58:42Z 2020-02-15T06:59:55Z +12675 469 1 10258 4.99 2005-08-01T02:51:09Z 2020-02-15T06:59:55Z +12676 469 1 10316 4.99 2005-08-01T04:34:57Z 2020-02-15T06:59:55Z +12677 469 1 10658 2.99 2005-08-01T16:39:18Z 2020-02-15T06:59:55Z +12678 469 1 10741 2.99 2005-08-01T19:52:52Z 2020-02-15T06:59:55Z +12679 469 2 11185 0.99 2005-08-02T11:04:35Z 2020-02-15T06:59:55Z +12680 469 2 12035 0.99 2005-08-17T20:18:06Z 2020-02-15T06:59:55Z +12681 469 1 12447 4.99 2005-08-18T10:57:01Z 2020-02-15T06:59:55Z +12682 469 1 12633 6.99 2005-08-18T17:55:38Z 2020-02-15T06:59:55Z +12683 469 1 13654 4.99 2005-08-20T07:58:21Z 2020-02-15T06:59:55Z +12684 469 1 13763 2.99 2005-08-20T11:37:56Z 2020-02-15T06:59:55Z +12685 469 2 14197 7.99 2005-08-21T03:47:25Z 2020-02-15T06:59:55Z +12686 469 2 14661 2.99 2005-08-21T19:44:21Z 2020-02-15T06:59:55Z +12687 469 1 15487 4.99 2005-08-23T02:05:51Z 2020-02-15T06:59:55Z +12688 469 1 15561 9.99 2005-08-23T05:02:31Z 2020-02-15T06:59:55Z +12689 469 1 15851 2.99 2005-08-23T15:46:33Z 2020-02-15T06:59:55Z +12690 470 2 60 2.99 2005-05-25T08:58:25Z 2020-02-15T06:59:55Z +12691 470 2 1256 0.99 2005-06-15T06:13:57Z 2020-02-15T06:59:55Z +12692 470 1 1283 0.99 2005-06-15T08:27:30Z 2020-02-15T06:59:55Z +12693 470 2 1594 7.99 2005-06-16T05:15:12Z 2020-02-15T06:59:55Z +12694 470 1 3764 5.99 2005-07-06T13:01:03Z 2020-02-15T06:59:55Z +12695 470 1 3841 4.99 2005-07-06T16:34:00Z 2020-02-15T06:59:55Z +12696 470 1 3922 4.99 2005-07-06T20:32:27Z 2020-02-15T06:59:55Z +12697 470 1 4373 4.99 2005-07-07T20:10:59Z 2020-02-15T06:59:55Z +12698 470 2 4502 6.99 2005-07-08T02:12:04Z 2020-02-15T06:59:55Z +12699 470 2 5082 4.99 2005-07-09T05:28:38Z 2020-02-15T06:59:55Z +12700 470 1 6009 3.99 2005-07-11T01:51:58Z 2020-02-15T06:59:55Z +12701 470 1 6198 2.99 2005-07-11T12:12:17Z 2020-02-15T06:59:55Z +12702 470 2 6703 4.99 2005-07-12T12:50:19Z 2020-02-15T06:59:55Z +12703 470 1 6927 10.99 2005-07-26T22:56:00Z 2020-02-15T06:59:55Z +12704 470 1 6942 5.99 2005-07-26T23:27:40Z 2020-02-15T06:59:55Z +12705 470 1 7663 4.99 2005-07-28T02:19:48Z 2020-02-15T06:59:55Z +12706 470 2 8476 8.99 2005-07-29T08:39:12Z 2020-02-15T06:59:55Z +12707 470 1 8890 6.99 2005-07-30T00:42:06Z 2020-02-15T06:59:55Z +12708 470 1 9422 5.99 2005-07-30T21:08:41Z 2020-02-15T06:59:55Z +12709 470 1 9687 2.99 2005-07-31T06:52:54Z 2020-02-15T06:59:55Z +12710 470 1 10006 4.99 2005-07-31T17:54:35Z 2020-02-15T06:59:55Z +12711 470 1 10236 0.99 2005-08-01T02:05:34Z 2020-02-15T06:59:55Z +12712 470 2 10944 4.99 2005-08-02T03:20:03Z 2020-02-15T06:59:55Z +12713 470 2 11397 1.99 2005-08-02T18:53:14Z 2020-02-15T06:59:55Z +12714 470 2 11711 2.99 2005-08-17T07:30:55Z 2020-02-15T06:59:55Z +12715 470 1 11742 0.99 2005-08-17T08:48:43Z 2020-02-15T06:59:55Z +12716 470 2 12177 3.99 2005-08-18T01:15:47Z 2020-02-15T06:59:55Z +12717 470 2 12423 8.99 2005-08-18T10:14:52Z 2020-02-15T06:59:55Z +12718 470 1 12753 10.99 2005-08-18T22:37:39Z 2020-02-15T06:59:55Z +12719 470 2 13585 4.99 2005-08-20T05:32:23Z 2020-02-15T06:59:55Z +12720 470 1 13592 4.99 2005-08-20T05:50:35Z 2020-02-15T06:59:55Z +12721 470 2 14405 4.99 2005-08-21T10:45:01Z 2020-02-15T06:59:55Z +12722 471 1 616 2.99 2005-05-28T15:45:39Z 2020-02-15T06:59:55Z +12723 471 1 1447 4.99 2005-06-15T19:13:51Z 2020-02-15T06:59:55Z +12724 471 2 1449 2.99 2005-06-15T19:19:16Z 2020-02-15T06:59:55Z +12725 471 2 2165 2.99 2005-06-17T23:51:10Z 2020-02-15T06:59:55Z +12726 471 2 2350 4.99 2005-06-18T12:25:29Z 2020-02-15T06:59:55Z +12727 471 2 3073 4.99 2005-06-20T14:33:26Z 2020-02-15T06:59:55Z +12728 471 1 3917 0.99 2005-07-06T20:19:29Z 2020-02-15T06:59:55Z +12729 471 1 4020 2.99 2005-07-07T01:42:22Z 2020-02-15T06:59:55Z +12730 471 2 6293 2.99 2005-07-11T17:24:57Z 2020-02-15T06:59:55Z +12731 471 1 6336 8.99 2005-07-11T19:30:13Z 2020-02-15T06:59:55Z +12732 471 1 6912 5.99 2005-07-12T22:17:16Z 2020-02-15T06:59:55Z +12733 471 1 8199 0.99 2005-07-28T23:10:25Z 2020-02-15T06:59:55Z +12734 471 1 9077 2.99 2005-07-30T08:00:19Z 2020-02-15T06:59:55Z +12735 471 1 9502 0.99 2005-07-31T00:02:10Z 2020-02-15T06:59:55Z +12736 471 2 9560 2.99 2005-07-31T02:17:27Z 2020-02-15T06:59:55Z +12737 471 1 10430 2.99 2005-08-01T08:37:06Z 2020-02-15T06:59:55Z +12738 471 2 10828 3.99 2005-08-01T23:16:10Z 2020-02-15T06:59:55Z +12739 471 2 11601 4.99 2005-08-17T03:14:47Z 2020-02-15T06:59:55Z +12740 471 1 12271 4.99 2005-08-18T04:33:11Z 2020-02-15T06:59:55Z +12741 471 1 13661 5.99 2005-08-20T08:05:59Z 2020-02-15T06:59:55Z +12742 471 1 14085 7.99 2005-08-20T23:46:24Z 2020-02-15T06:59:55Z +12743 471 1 14094 4.99 2005-08-21T00:21:35Z 2020-02-15T06:59:55Z +12744 471 1 14317 5.99 2005-08-21T08:00:40Z 2020-02-15T06:59:55Z +12745 471 2 14538 2.99 2005-08-21T15:28:15Z 2020-02-15T06:59:55Z +12746 471 2 14942 7.99 2005-08-22T05:58:27Z 2020-02-15T06:59:55Z +12747 471 2 15184 0.99 2005-08-22T15:51:12Z 2020-02-15T06:59:55Z +12748 471 1 15654 1.99 2005-08-23T08:34:53Z 2020-02-15T06:59:55Z +12749 472 2 142 0.99 2005-05-25T23:43:47Z 2020-02-15T06:59:55Z +12750 472 2 249 2.99 2005-05-26T14:19:09Z 2020-02-15T06:59:55Z +12751 472 2 800 0.99 2005-05-29T17:28:12Z 2020-02-15T06:59:55Z +12752 472 2 994 4.99 2005-05-30T23:55:36Z 2020-02-15T06:59:55Z +12753 472 1 1389 4.99 2005-06-15T15:49:01Z 2020-02-15T06:59:55Z +12754 472 2 1776 6.99 2005-06-16T18:46:58Z 2020-02-15T06:59:55Z +12755 472 1 2538 5.99 2005-06-19T01:56:59Z 2020-02-15T06:59:55Z +12756 472 1 2974 0.99 2005-06-20T08:00:24Z 2020-02-15T06:59:55Z +12757 472 1 2991 4.99 2005-06-20T09:10:43Z 2020-02-15T06:59:55Z +12758 472 1 3254 0.99 2005-06-21T03:27:10Z 2020-02-15T06:59:55Z +12759 472 2 3815 6.99 2005-07-06T15:26:36Z 2020-02-15T06:59:55Z +12760 472 2 5318 2.99 2005-07-09T16:11:33Z 2020-02-15T06:59:55Z +12761 472 1 5612 3.99 2005-07-10T05:15:12Z 2020-02-15T06:59:55Z +12762 472 1 6119 6.99 2005-07-11T07:44:46Z 2020-02-15T06:59:55Z +12763 472 2 6274 5.99 2005-07-11T16:09:42Z 2020-02-15T06:59:55Z +12764 472 1 6308 5.99 2005-07-11T18:08:41Z 2020-02-15T06:59:55Z +12765 472 1 6584 2.99 2005-07-12T06:43:36Z 2020-02-15T06:59:55Z +12766 472 2 8929 5.99 2005-07-30T02:28:22Z 2020-02-15T06:59:55Z +12767 472 2 9926 6.99 2005-07-31T15:11:51Z 2020-02-15T06:59:55Z +12768 472 1 10282 6.99 2005-08-01T03:29:10Z 2020-02-15T06:59:55Z +12769 472 1 10627 0.99 2005-08-01T15:33:03Z 2020-02-15T06:59:55Z +12770 472 1 11911 6.99 2005-08-17T15:51:35Z 2020-02-15T06:59:55Z +12771 472 2 12763 4.99 2005-08-18T23:07:01Z 2020-02-15T06:59:55Z +12772 472 2 13188 8.99 2005-08-19T14:27:03Z 2020-02-15T06:59:55Z +12773 472 1 14209 4.99 2005-08-21T04:17:56Z 2020-02-15T06:59:55Z +12774 472 2 14596 4.99 2005-08-21T17:38:37Z 2020-02-15T06:59:55Z +12775 472 1 14597 4.99 2005-08-21T17:39:41Z 2020-02-15T06:59:55Z +12776 472 2 15185 5.99 2005-08-22T15:52:50Z 2020-02-15T06:59:55Z +12777 472 2 15278 2.99 2005-08-22T19:06:47Z 2020-02-15T06:59:55Z +12778 472 2 14928 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12779 473 1 348 4.99 2005-05-27T04:50:56Z 2020-02-15T06:59:55Z +12780 473 2 942 2.99 2005-05-30T15:05:47Z 2020-02-15T06:59:55Z +12781 473 2 973 3.99 2005-05-30T20:27:45Z 2020-02-15T06:59:55Z +12782 473 2 1748 0.99 2005-06-16T16:54:03Z 2020-02-15T06:59:55Z +12783 473 1 2125 2.99 2005-06-17T20:53:42Z 2020-02-15T06:59:55Z +12784 473 2 2553 4.99 2005-06-19T03:04:59Z 2020-02-15T06:59:55Z +12785 473 2 2748 4.99 2005-06-19T16:22:26Z 2020-02-15T06:59:55Z +12786 473 1 3971 0.99 2005-07-06T22:50:40Z 2020-02-15T06:59:55Z +12787 473 2 4006 4.99 2005-07-07T00:25:29Z 2020-02-15T06:59:55Z +12788 473 2 4625 4.99 2005-07-08T08:14:26Z 2020-02-15T06:59:55Z +12789 473 1 4873 0.99 2005-07-08T19:23:32Z 2020-02-15T06:59:55Z +12790 473 2 5447 5.99 2005-07-09T22:09:28Z 2020-02-15T06:59:55Z +12791 473 1 6446 2.99 2005-07-12T00:44:08Z 2020-02-15T06:59:55Z +12792 473 2 6890 4.99 2005-07-12T21:03:03Z 2020-02-15T06:59:55Z +12793 473 1 7111 4.99 2005-07-27T05:38:16Z 2020-02-15T06:59:55Z +12794 473 1 7215 2.99 2005-07-27T09:24:00Z 2020-02-15T06:59:55Z +12795 473 2 7918 1.99 2005-07-28T11:58:53Z 2020-02-15T06:59:55Z +12796 473 2 7928 7.99 2005-07-28T12:15:51Z 2020-02-15T06:59:55Z +12797 473 1 9025 4.99 2005-07-30T05:50:08Z 2020-02-15T06:59:55Z +12798 473 2 9120 8.99 2005-07-30T09:26:08Z 2020-02-15T06:59:55Z +12799 473 1 10867 2.99 2005-08-02T00:24:15Z 2020-02-15T06:59:55Z +12800 473 2 11006 2.99 2005-08-02T05:05:52Z 2020-02-15T06:59:55Z +12801 473 1 11216 4.99 2005-08-02T12:23:43Z 2020-02-15T06:59:55Z +12802 473 1 11336 0.99 2005-08-02T16:58:56Z 2020-02-15T06:59:55Z +12803 473 2 11421 7.99 2005-08-02T19:51:53Z 2020-02-15T06:59:55Z +12804 473 1 11741 0.99 2005-08-17T08:48:39Z 2020-02-15T06:59:55Z +12805 473 2 13984 4.99 2005-08-20T19:12:30Z 2020-02-15T06:59:55Z +12806 473 2 14202 0.99 2005-08-21T03:51:52Z 2020-02-15T06:59:55Z +12807 473 2 14550 0.99 2005-08-21T15:56:39Z 2020-02-15T06:59:55Z +12808 473 2 14658 4.99 2005-08-21T19:41:50Z 2020-02-15T06:59:55Z +12809 473 2 14757 4.99 2005-08-21T23:23:37Z 2020-02-15T06:59:55Z +12810 473 1 15118 4.99 2005-08-22T12:38:37Z 2020-02-15T06:59:55Z +12811 473 2 15400 2.99 2005-08-22T23:13:03Z 2020-02-15T06:59:55Z +12812 473 2 16024 4.99 2005-08-23T21:46:47Z 2020-02-15T06:59:55Z +12813 474 1 816 7.99 2005-05-29T20:26:39Z 2020-02-15T06:59:55Z +12814 474 1 1758 8.99 2005-06-16T17:39:39Z 2020-02-15T06:59:55Z +12815 474 2 2944 7.99 2005-06-20T05:43:42Z 2020-02-15T06:59:55Z +12816 474 2 3787 4.99 2005-07-06T14:02:01Z 2020-02-15T06:59:55Z +12817 474 2 4048 1.99 2005-07-07T03:30:52Z 2020-02-15T06:59:55Z +12818 474 1 4481 2.99 2005-07-08T00:58:15Z 2020-02-15T06:59:55Z +12819 474 1 4533 0.99 2005-07-08T03:32:01Z 2020-02-15T06:59:55Z +12820 474 2 4785 0.99 2005-07-08T16:10:19Z 2020-02-15T06:59:55Z +12821 474 1 4809 2.99 2005-07-08T17:03:22Z 2020-02-15T06:59:55Z +12822 474 2 4886 4.99 2005-07-08T19:53:22Z 2020-02-15T06:59:55Z +12823 474 1 5251 0.99 2005-07-09T13:36:10Z 2020-02-15T06:59:55Z +12824 474 1 6499 7.99 2005-07-12T03:11:18Z 2020-02-15T06:59:55Z +12825 474 1 8991 2.99 2005-07-30T04:42:54Z 2020-02-15T06:59:55Z +12826 474 2 10376 5.99 2005-08-01T06:27:13Z 2020-02-15T06:59:55Z +12827 474 2 11117 0.99 2005-08-02T08:36:03Z 2020-02-15T06:59:55Z +12828 474 1 11489 2.99 2005-08-02T22:35:28Z 2020-02-15T06:59:55Z +12829 474 2 11537 2.99 2005-08-17T00:41:08Z 2020-02-15T06:59:55Z +12830 474 1 12083 2.99 2005-08-17T22:13:37Z 2020-02-15T06:59:55Z +12831 474 1 12236 4.99 2005-08-18T03:19:29Z 2020-02-15T06:59:55Z +12832 474 1 12440 0.99 2005-08-18T10:47:35Z 2020-02-15T06:59:55Z +12833 474 2 12597 2.99 2005-08-18T16:34:02Z 2020-02-15T06:59:55Z +12834 474 1 12702 4.99 2005-08-18T20:30:33Z 2020-02-15T06:59:55Z +12835 474 1 14728 0.99 2005-08-21T22:15:36Z 2020-02-15T06:59:55Z +12836 474 2 15046 4.99 2005-08-22T09:54:54Z 2020-02-15T06:59:55Z +12837 474 1 15558 6.99 2005-08-23T04:52:22Z 2020-02-15T06:59:55Z +12838 474 1 11909 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12839 475 2 417 4.99 2005-05-27T15:07:27Z 2020-02-15T06:59:55Z +12840 475 1 702 0.99 2005-05-29T02:27:30Z 2020-02-15T06:59:55Z +12841 475 2 3980 5.99 2005-07-06T23:11:11Z 2020-02-15T06:59:55Z +12842 475 1 4013 6.99 2005-07-07T00:58:00Z 2020-02-15T06:59:55Z +12843 475 1 4617 4.99 2005-07-08T07:55:08Z 2020-02-15T06:59:55Z +12844 475 2 5379 0.99 2005-07-09T19:08:03Z 2020-02-15T06:59:55Z +12845 475 1 5407 0.99 2005-07-09T20:16:07Z 2020-02-15T06:59:55Z +12846 475 2 5415 9.99 2005-07-09T20:30:03Z 2020-02-15T06:59:55Z +12847 475 2 5469 2.99 2005-07-09T23:08:07Z 2020-02-15T06:59:55Z +12848 475 1 6224 4.99 2005-07-11T13:42:18Z 2020-02-15T06:59:55Z +12849 475 1 7641 7.99 2005-07-28T01:15:45Z 2020-02-15T06:59:55Z +12850 475 1 7775 1.99 2005-07-28T07:04:36Z 2020-02-15T06:59:55Z +12851 475 2 8207 5.99 2005-07-28T23:26:31Z 2020-02-15T06:59:55Z +12852 475 1 9183 7.99 2005-07-30T12:09:56Z 2020-02-15T06:59:55Z +12853 475 1 9647 2.99 2005-07-31T05:45:15Z 2020-02-15T06:59:55Z +12854 475 1 9737 2.99 2005-07-31T08:59:18Z 2020-02-15T06:59:55Z +12855 475 2 10162 3.99 2005-07-31T23:11:01Z 2020-02-15T06:59:55Z +12856 475 1 10357 0.99 2005-08-01T05:49:49Z 2020-02-15T06:59:55Z +12857 475 1 10633 3.99 2005-08-01T15:37:17Z 2020-02-15T06:59:55Z +12858 475 1 11293 5.99 2005-08-02T15:00:43Z 2020-02-15T06:59:55Z +12859 475 1 11770 4.99 2005-08-17T10:05:05Z 2020-02-15T06:59:55Z +12860 475 2 14303 2.99 2005-08-21T07:22:43Z 2020-02-15T06:59:55Z +12861 475 1 15097 1.99 2005-08-22T11:43:42Z 2020-02-15T06:59:55Z +12862 475 1 15288 4.99 2005-08-22T19:23:58Z 2020-02-15T06:59:55Z +12863 476 1 489 4.99 2005-05-28T00:09:12Z 2020-02-15T06:59:55Z +12864 476 1 771 2.99 2005-05-29T12:59:14Z 2020-02-15T06:59:55Z +12865 476 1 1682 3.99 2005-06-16T11:54:25Z 2020-02-15T06:59:55Z +12866 476 1 2080 0.99 2005-06-17T16:59:40Z 2020-02-15T06:59:55Z +12867 476 2 2508 4.99 2005-06-18T23:43:58Z 2020-02-15T06:59:55Z +12868 476 2 3448 2.99 2005-06-21T20:59:20Z 2020-02-15T06:59:55Z +12869 476 2 3477 7.99 2005-07-05T23:05:17Z 2020-02-15T06:59:55Z +12870 476 1 4010 5.99 2005-07-07T00:47:00Z 2020-02-15T06:59:55Z +12871 476 2 4171 4.99 2005-07-07T09:49:04Z 2020-02-15T06:59:55Z +12872 476 2 5644 4.99 2005-07-10T06:57:44Z 2020-02-15T06:59:55Z +12873 476 1 6151 2.99 2005-07-11T09:25:17Z 2020-02-15T06:59:55Z +12874 476 1 7461 0.99 2005-07-27T18:45:15Z 2020-02-15T06:59:55Z +12875 476 1 8146 0.99 2005-07-28T20:37:36Z 2020-02-15T06:59:55Z +12876 476 2 9325 6.99 2005-07-30T17:29:19Z 2020-02-15T06:59:55Z +12877 476 2 9743 3.99 2005-07-31T09:12:42Z 2020-02-15T06:59:55Z +12878 476 1 10346 4.99 2005-08-01T05:19:23Z 2020-02-15T06:59:55Z +12879 476 1 10617 9.99 2005-08-01T15:05:52Z 2020-02-15T06:59:55Z +12880 476 1 10826 6.99 2005-08-01T23:07:56Z 2020-02-15T06:59:55Z +12881 476 1 12616 4.99 2005-08-18T17:22:41Z 2020-02-15T06:59:55Z +12882 476 2 12709 5.99 2005-08-18T20:59:51Z 2020-02-15T06:59:55Z +12883 476 1 15413 0.99 2005-08-22T23:38:01Z 2020-02-15T06:59:55Z +12884 476 1 13941 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12885 477 1 882 2.99 2005-05-30T06:16:06Z 2020-02-15T06:59:55Z +12886 477 1 1714 6.99 2005-06-16T14:29:59Z 2020-02-15T06:59:55Z +12887 477 1 2187 2.99 2005-06-18T01:17:27Z 2020-02-15T06:59:55Z +12888 477 1 2306 10.99 2005-06-18T08:33:23Z 2020-02-15T06:59:55Z +12889 477 2 2676 4.99 2005-06-19T11:54:57Z 2020-02-15T06:59:55Z +12890 477 2 4237 5.99 2005-07-07T13:16:55Z 2020-02-15T06:59:55Z +12891 477 1 4283 2.99 2005-07-07T15:29:35Z 2020-02-15T06:59:55Z +12892 477 2 4956 7.99 2005-07-08T23:17:10Z 2020-02-15T06:59:55Z +12893 477 2 6265 2.99 2005-07-11T15:43:51Z 2020-02-15T06:59:55Z +12894 477 2 7302 2.99 2005-07-27T12:52:13Z 2020-02-15T06:59:55Z +12895 477 2 7904 10.99 2005-07-28T11:25:39Z 2020-02-15T06:59:55Z +12896 477 1 8515 6.99 2005-07-29T09:55:20Z 2020-02-15T06:59:55Z +12897 477 1 8821 5.99 2005-07-29T22:18:12Z 2020-02-15T06:59:55Z +12898 477 2 8857 2.99 2005-07-29T23:44:22Z 2020-02-15T06:59:55Z +12899 477 2 9446 8.99 2005-07-30T21:53:01Z 2020-02-15T06:59:55Z +12900 477 1 10500 4.99 2005-08-01T11:01:01Z 2020-02-15T06:59:55Z +12901 477 2 10912 0.99 2005-08-02T02:00:03Z 2020-02-15T06:59:55Z +12902 477 2 12420 4.99 2005-08-18T10:01:50Z 2020-02-15T06:59:55Z +12903 477 1 13002 0.99 2005-08-19T07:37:58Z 2020-02-15T06:59:55Z +12904 477 2 14552 3.99 2005-08-21T15:59:27Z 2020-02-15T06:59:55Z +12905 477 2 15091 2.99 2005-08-22T11:34:43Z 2020-02-15T06:59:55Z +12906 477 1 15929 2.99 2005-08-23T18:23:30Z 2020-02-15T06:59:55Z +12907 478 1 1708 0.99 2005-06-16T14:08:44Z 2020-02-15T06:59:55Z +12908 478 2 2358 4.99 2005-06-18T13:00:51Z 2020-02-15T06:59:55Z +12909 478 1 2529 6.99 2005-06-19T01:18:27Z 2020-02-15T06:59:55Z +12910 478 2 2616 8.99 2005-06-19T07:33:00Z 2020-02-15T06:59:55Z +12911 478 2 2765 4.99 2005-06-19T17:34:39Z 2020-02-15T06:59:55Z +12912 478 2 3259 4.99 2005-06-21T03:57:15Z 2020-02-15T06:59:55Z +12913 478 1 3691 4.99 2005-07-06T09:46:12Z 2020-02-15T06:59:55Z +12914 478 1 5837 4.99 2005-07-10T16:57:50Z 2020-02-15T06:59:55Z +12915 478 1 7522 2.99 2005-07-27T21:11:03Z 2020-02-15T06:59:55Z +12916 478 2 8488 4.99 2005-07-29T08:57:38Z 2020-02-15T06:59:55Z +12917 478 1 9665 4.99 2005-07-31T06:17:33Z 2020-02-15T06:59:55Z +12918 478 2 10016 4.99 2005-07-31T18:13:06Z 2020-02-15T06:59:55Z +12919 478 2 10127 0.99 2005-07-31T21:39:48Z 2020-02-15T06:59:55Z +12920 478 1 11906 2.99 2005-08-17T15:40:46Z 2020-02-15T06:59:55Z +12921 478 2 13162 2.99 2005-08-19T13:28:26Z 2020-02-15T06:59:55Z +12922 478 2 13507 4.99 2005-08-20T02:10:27Z 2020-02-15T06:59:55Z +12923 478 1 15027 4.99 2005-08-22T09:03:04Z 2020-02-15T06:59:55Z +12924 478 2 15188 4.99 2005-08-22T15:55:48Z 2020-02-15T06:59:55Z +12925 478 1 15724 4.99 2005-08-23T11:22:09Z 2020-02-15T06:59:55Z +12926 479 2 132 3.99 2005-05-25T21:46:54Z 2020-02-15T06:59:55Z +12927 479 1 709 7.99 2005-05-29T03:48:01Z 2020-02-15T06:59:55Z +12928 479 1 1902 2.99 2005-06-17T04:35:52Z 2020-02-15T06:59:55Z +12929 479 2 1947 3.99 2005-06-17T08:02:20Z 2020-02-15T06:59:55Z +12930 479 2 1987 2.99 2005-06-17T10:40:36Z 2020-02-15T06:59:55Z +12931 479 2 2071 3.99 2005-06-17T16:33:17Z 2020-02-15T06:59:55Z +12932 479 2 2376 2.99 2005-06-18T14:55:30Z 2020-02-15T06:59:55Z +12933 479 2 2764 6.99 2005-06-19T17:27:25Z 2020-02-15T06:59:55Z +12934 479 2 3537 6.99 2005-07-06T01:36:53Z 2020-02-15T06:59:55Z +12935 479 1 3798 0.99 2005-07-06T14:57:53Z 2020-02-15T06:59:55Z +12936 479 2 4183 8.99 2005-07-07T10:28:33Z 2020-02-15T06:59:55Z +12937 479 1 5481 0.99 2005-07-09T23:51:57Z 2020-02-15T06:59:55Z +12938 479 1 5751 4.99 2005-07-10T12:25:11Z 2020-02-15T06:59:55Z +12939 479 2 6084 7.99 2005-07-11T05:16:20Z 2020-02-15T06:59:55Z +12940 479 1 6421 1.99 2005-07-11T23:45:25Z 2020-02-15T06:59:55Z +12941 479 1 6597 0.99 2005-07-12T07:37:02Z 2020-02-15T06:59:55Z +12942 479 2 6849 8.99 2005-07-12T19:29:19Z 2020-02-15T06:59:55Z +12943 479 1 7060 7.99 2005-07-27T03:51:04Z 2020-02-15T06:59:55Z +12944 479 2 7893 2.99 2005-07-28T10:49:27Z 2020-02-15T06:59:55Z +12945 479 1 9347 5.99 2005-07-30T18:16:03Z 2020-02-15T06:59:55Z +12946 479 1 9439 8.99 2005-07-30T21:38:12Z 2020-02-15T06:59:55Z +12947 479 2 9697 2.99 2005-07-31T07:23:11Z 2020-02-15T06:59:55Z +12948 479 2 9754 7.99 2005-07-31T09:23:43Z 2020-02-15T06:59:55Z +12949 479 2 10303 4.99 2005-08-01T04:13:33Z 2020-02-15T06:59:55Z +12950 479 2 11109 4.99 2005-08-02T08:20:29Z 2020-02-15T06:59:55Z +12951 479 2 11584 1.99 2005-08-17T02:13:26Z 2020-02-15T06:59:55Z +12952 479 2 11835 4.99 2005-08-17T13:03:13Z 2020-02-15T06:59:55Z +12953 479 2 12401 0.99 2005-08-18T09:20:51Z 2020-02-15T06:59:55Z +12954 479 2 13078 8.99 2005-08-19T10:16:43Z 2020-02-15T06:59:55Z +12955 479 1 13974 2.99 2005-08-20T18:54:59Z 2020-02-15T06:59:55Z +12956 479 1 12101 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +12957 480 1 518 0.99 2005-05-28T03:18:02Z 2020-02-15T06:59:55Z +12958 480 1 720 6.99 2005-05-29T05:17:30Z 2020-02-15T06:59:55Z +12959 480 2 822 9.99 2005-05-29T21:36:00Z 2020-02-15T06:59:55Z +12960 480 1 1353 0.99 2005-06-15T13:13:36Z 2020-02-15T06:59:55Z +12961 480 1 1733 0.99 2005-06-16T15:37:07Z 2020-02-15T06:59:55Z +12962 480 2 3507 7.99 2005-07-06T00:23:43Z 2020-02-15T06:59:55Z +12963 480 2 5633 2.99 2005-07-10T06:22:24Z 2020-02-15T06:59:55Z +12964 480 1 6191 2.99 2005-07-11T11:37:52Z 2020-02-15T06:59:55Z +12965 480 1 7257 2.99 2005-07-27T11:04:17Z 2020-02-15T06:59:55Z +12966 480 2 7910 9.99 2005-07-28T11:44:56Z 2020-02-15T06:59:55Z +12967 480 2 8847 4.99 2005-07-29T23:13:41Z 2020-02-15T06:59:55Z +12968 480 1 8967 6.99 2005-07-30T03:56:55Z 2020-02-15T06:59:55Z +12969 480 2 9332 4.99 2005-07-30T17:53:39Z 2020-02-15T06:59:55Z +12970 480 2 10808 1.99 2005-08-01T22:37:11Z 2020-02-15T06:59:55Z +12971 480 2 11017 0.99 2005-08-02T05:19:51Z 2020-02-15T06:59:55Z +12972 480 1 11369 5.99 2005-08-02T18:04:41Z 2020-02-15T06:59:55Z +12973 480 2 12905 4.99 2005-08-19T04:13:37Z 2020-02-15T06:59:55Z +12974 480 2 13092 0.99 2005-08-19T10:41:09Z 2020-02-15T06:59:55Z +12975 480 2 13131 9.99 2005-08-19T12:08:13Z 2020-02-15T06:59:55Z +12976 480 1 13831 4.99 2005-08-20T13:59:35Z 2020-02-15T06:59:55Z +12977 480 2 15363 2.99 2005-08-22T21:41:40Z 2020-02-15T06:59:55Z +12978 480 2 15579 4.99 2005-08-23T05:38:41Z 2020-02-15T06:59:55Z +12979 481 2 1109 5.99 2005-05-31T15:12:15Z 2020-02-15T06:59:55Z +12980 481 2 1168 2.99 2005-06-14T23:35:09Z 2020-02-15T06:59:55Z +12981 481 2 2296 4.99 2005-06-18T08:10:42Z 2020-02-15T06:59:55Z +12982 481 2 3285 4.99 2005-06-21T06:30:13Z 2020-02-15T06:59:55Z +12983 481 2 3293 0.99 2005-06-21T06:59:33Z 2020-02-15T06:59:55Z +12984 481 1 3863 0.99 2005-07-06T17:40:18Z 2020-02-15T06:59:55Z +12985 481 1 4473 2.99 2005-07-08T00:22:10Z 2020-02-15T06:59:55Z +12986 481 1 4505 1.99 2005-07-08T02:20:04Z 2020-02-15T06:59:55Z +12987 481 1 4532 0.99 2005-07-08T03:30:39Z 2020-02-15T06:59:55Z +12988 481 1 4668 10.99 2005-07-08T10:11:45Z 2020-02-15T06:59:55Z +12989 481 2 5711 2.99 2005-07-10T10:37:20Z 2020-02-15T06:59:55Z +12990 481 1 6044 0.99 2005-07-11T03:18:39Z 2020-02-15T06:59:55Z +12991 481 1 7228 4.99 2005-07-27T09:55:33Z 2020-02-15T06:59:55Z +12992 481 2 7836 7.99 2005-07-28T08:55:27Z 2020-02-15T06:59:55Z +12993 481 1 8243 6.99 2005-07-29T00:35:33Z 2020-02-15T06:59:55Z +12994 481 2 8271 6.99 2005-07-29T01:27:44Z 2020-02-15T06:59:55Z +12995 481 1 9481 4.99 2005-07-30T23:26:05Z 2020-02-15T06:59:55Z +12996 481 1 10018 3.99 2005-07-31T18:15:14Z 2020-02-15T06:59:55Z +12997 481 2 11207 0.99 2005-08-02T12:01:30Z 2020-02-15T06:59:55Z +12998 481 2 11387 2.99 2005-08-02T18:32:38Z 2020-02-15T06:59:55Z +12999 481 1 11752 4.99 2005-08-17T09:10:55Z 2020-02-15T06:59:55Z +13000 481 1 11885 4.99 2005-08-17T14:53:53Z 2020-02-15T06:59:55Z +13001 481 2 12160 2.99 2005-08-18T00:37:59Z 2020-02-15T06:59:55Z +13002 481 1 12981 4.99 2005-08-19T07:04:00Z 2020-02-15T06:59:55Z +13003 481 2 13497 2.99 2005-08-20T01:46:38Z 2020-02-15T06:59:55Z +13004 481 2 13878 4.99 2005-08-20T15:17:38Z 2020-02-15T06:59:55Z +13005 481 1 13990 1.99 2005-08-20T19:29:23Z 2020-02-15T06:59:55Z +13006 481 2 14280 4.99 2005-08-21T06:39:58Z 2020-02-15T06:59:55Z +13007 481 2 14584 0.99 2005-08-21T17:15:33Z 2020-02-15T06:59:55Z +13008 482 1 259 8.99 2005-05-26T15:32:46Z 2020-02-15T06:59:55Z +13009 482 2 680 2.99 2005-05-28T23:27:26Z 2020-02-15T06:59:55Z +13010 482 2 879 0.99 2005-05-30T05:49:42Z 2020-02-15T06:59:55Z +13011 482 2 3048 2.99 2005-06-20T12:49:55Z 2020-02-15T06:59:55Z +13012 482 2 3255 0.99 2005-06-21T03:39:52Z 2020-02-15T06:59:55Z +13013 482 2 3650 2.99 2005-07-06T07:34:15Z 2020-02-15T06:59:55Z +13014 482 1 4768 4.99 2005-07-08T15:28:20Z 2020-02-15T06:59:55Z +13015 482 1 5334 4.99 2005-07-09T17:00:13Z 2020-02-15T06:59:55Z +13016 482 1 5466 4.99 2005-07-09T23:03:21Z 2020-02-15T06:59:55Z +13017 482 2 5810 8.99 2005-07-10T15:22:04Z 2020-02-15T06:59:55Z +13018 482 2 5880 2.99 2005-07-10T19:14:58Z 2020-02-15T06:59:55Z +13019 482 1 6355 8.99 2005-07-11T20:56:29Z 2020-02-15T06:59:55Z +13020 482 2 6447 7.99 2005-07-12T00:45:17Z 2020-02-15T06:59:55Z +13021 482 2 6844 5.99 2005-07-12T19:14:53Z 2020-02-15T06:59:55Z +13022 482 2 7840 6.99 2005-07-28T09:03:02Z 2020-02-15T06:59:55Z +13023 482 2 8584 2.99 2005-07-29T12:07:53Z 2020-02-15T06:59:55Z +13024 482 2 9874 6.99 2005-07-31T13:32:31Z 2020-02-15T06:59:55Z +13025 482 2 10824 4.99 2005-08-01T23:00:22Z 2020-02-15T06:59:55Z +13026 482 2 10839 2.99 2005-08-01T23:37:39Z 2020-02-15T06:59:55Z +13027 482 2 11498 6.99 2005-08-16T22:52:54Z 2020-02-15T06:59:55Z +13028 482 1 13174 4.99 2005-08-19T13:52:50Z 2020-02-15T06:59:55Z +13029 482 2 14383 4.99 2005-08-21T10:02:05Z 2020-02-15T06:59:55Z +13030 482 2 14732 0.99 2005-08-21T22:22:29Z 2020-02-15T06:59:55Z +13031 482 2 14891 6.99 2005-08-22T04:11:02Z 2020-02-15T06:59:55Z +13032 482 2 14995 4.99 2005-08-22T07:52:31Z 2020-02-15T06:59:55Z +13033 482 1 15391 0.99 2005-08-22T23:01:45Z 2020-02-15T06:59:55Z +13034 482 1 15849 5.99 2005-08-23T15:41:20Z 2020-02-15T06:59:55Z +13035 482 2 15865 2.99 2005-08-23T16:18:25Z 2020-02-15T06:59:55Z +13036 482 1 15879 3.99 2005-08-23T16:42:53Z 2020-02-15T06:59:55Z +13037 483 2 742 6.99 2005-05-29T08:36:30Z 2020-02-15T06:59:55Z +13038 483 1 2855 4.99 2005-06-19T23:11:49Z 2020-02-15T06:59:55Z +13039 483 2 2867 0.99 2005-06-20T00:08:38Z 2020-02-15T06:59:55Z +13040 483 1 3380 8.99 2005-06-21T13:58:46Z 2020-02-15T06:59:55Z +13041 483 2 3559 4.99 2005-07-06T02:49:42Z 2020-02-15T06:59:55Z +13042 483 1 5823 4.99 2005-07-10T16:19:52Z 2020-02-15T06:59:55Z +13043 483 2 6478 4.99 2005-07-12T01:41:44Z 2020-02-15T06:59:55Z +13044 483 2 6899 9.99 2005-07-12T21:44:16Z 2020-02-15T06:59:55Z +13045 483 2 7137 0.99 2005-07-27T06:40:41Z 2020-02-15T06:59:55Z +13046 483 1 7381 4.99 2005-07-27T15:40:26Z 2020-02-15T06:59:55Z +13047 483 1 7669 4.99 2005-07-28T02:44:07Z 2020-02-15T06:59:55Z +13048 483 1 8057 7.99 2005-07-28T17:07:13Z 2020-02-15T06:59:55Z +13049 483 1 8356 4.99 2005-07-29T04:58:56Z 2020-02-15T06:59:55Z +13050 483 2 10677 0.99 2005-08-01T17:24:35Z 2020-02-15T06:59:55Z +13051 483 1 10953 6.99 2005-08-02T03:28:38Z 2020-02-15T06:59:55Z +13052 483 2 12331 3.99 2005-08-18T06:47:19Z 2020-02-15T06:59:55Z +13053 483 2 12695 2.99 2005-08-18T20:11:35Z 2020-02-15T06:59:55Z +13054 483 2 12875 2.99 2005-08-19T03:10:21Z 2020-02-15T06:59:55Z +13055 484 2 35 4.99 2005-05-25T04:24:36Z 2020-02-15T06:59:55Z +13056 484 2 668 2.99 2005-05-28T21:54:45Z 2020-02-15T06:59:55Z +13057 484 2 727 2.99 2005-05-29T06:08:15Z 2020-02-15T06:59:55Z +13058 484 1 1351 3.99 2005-06-15T12:51:03Z 2020-02-15T06:59:55Z +13059 484 2 1643 3.99 2005-06-16T08:55:35Z 2020-02-15T06:59:55Z +13060 484 1 2015 4.99 2005-06-17T12:16:29Z 2020-02-15T06:59:55Z +13061 484 1 2044 5.99 2005-06-17T14:37:57Z 2020-02-15T06:59:55Z +13062 484 1 4214 4.99 2005-07-07T11:54:33Z 2020-02-15T06:59:55Z +13063 484 1 5389 2.99 2005-07-09T19:25:45Z 2020-02-15T06:59:55Z +13064 484 2 5708 6.99 2005-07-10T10:29:19Z 2020-02-15T06:59:55Z +13065 484 1 5852 0.99 2005-07-10T17:43:30Z 2020-02-15T06:59:55Z +13066 484 2 5866 6.99 2005-07-10T18:35:14Z 2020-02-15T06:59:55Z +13067 484 2 5977 5.99 2005-07-11T00:16:38Z 2020-02-15T06:59:55Z +13068 484 2 6296 2.99 2005-07-11T17:34:04Z 2020-02-15T06:59:55Z +13069 484 1 6863 6.99 2005-07-12T19:58:34Z 2020-02-15T06:59:55Z +13070 484 2 7440 4.99 2005-07-27T17:43:27Z 2020-02-15T06:59:55Z +13071 484 2 7548 2.99 2005-07-27T21:53:18Z 2020-02-15T06:59:55Z +13072 484 2 8508 0.99 2005-07-29T09:34:38Z 2020-02-15T06:59:55Z +13073 484 2 9141 5.99 2005-07-30T10:16:04Z 2020-02-15T06:59:55Z +13074 484 2 9414 9.99 2005-07-30T20:46:02Z 2020-02-15T06:59:55Z +13075 484 1 9769 4.99 2005-07-31T09:52:16Z 2020-02-15T06:59:55Z +13076 484 2 10166 8.99 2005-07-31T23:22:20Z 2020-02-15T06:59:55Z +13077 484 2 11871 4.99 2005-08-17T14:11:44Z 2020-02-15T06:59:55Z +13078 484 1 12024 0.99 2005-08-17T19:57:34Z 2020-02-15T06:59:55Z +13079 484 1 12771 4.99 2005-08-18T23:29:23Z 2020-02-15T06:59:55Z +13080 484 1 12993 7.99 2005-08-19T07:24:03Z 2020-02-15T06:59:55Z +13081 484 2 13160 0.99 2005-08-19T13:21:04Z 2020-02-15T06:59:55Z +13082 484 2 13956 3.99 2005-08-20T18:08:19Z 2020-02-15T06:59:55Z +13083 484 1 15607 2.99 2005-08-23T06:54:06Z 2020-02-15T06:59:55Z +13084 484 1 16026 4.99 2005-08-23T21:49:22Z 2020-02-15T06:59:55Z +13085 485 1 1009 2.99 2005-05-31T01:47:35Z 2020-02-15T06:59:55Z +13086 485 2 1684 2.99 2005-06-16T11:57:34Z 2020-02-15T06:59:55Z +13087 485 1 1721 8.99 2005-06-16T15:01:36Z 2020-02-15T06:59:55Z +13088 485 2 3579 0.99 2005-07-06T03:47:47Z 2020-02-15T06:59:55Z +13089 485 1 3899 1.99 2005-07-06T19:12:40Z 2020-02-15T06:59:55Z +13090 485 1 3904 0.99 2005-07-06T19:30:57Z 2020-02-15T06:59:55Z +13091 485 2 4137 3.99 2005-07-07T08:17:06Z 2020-02-15T06:59:55Z +13092 485 2 4667 2.99 2005-07-08T10:06:26Z 2020-02-15T06:59:55Z +13093 485 1 5193 2.99 2005-07-09T10:28:18Z 2020-02-15T06:59:55Z +13094 485 1 5343 3.99 2005-07-09T17:23:43Z 2020-02-15T06:59:55Z +13095 485 1 5367 3.99 2005-07-09T18:39:15Z 2020-02-15T06:59:55Z +13096 485 1 5820 4.99 2005-07-10T16:04:59Z 2020-02-15T06:59:55Z +13097 485 2 6810 4.99 2005-07-12T17:54:19Z 2020-02-15T06:59:55Z +13098 485 2 6902 4.99 2005-07-12T21:57:16Z 2020-02-15T06:59:55Z +13099 485 1 7144 4.99 2005-07-27T07:00:37Z 2020-02-15T06:59:55Z +13100 485 2 8984 6.99 2005-07-30T04:31:50Z 2020-02-15T06:59:55Z +13101 485 2 9039 2.99 2005-07-30T06:24:28Z 2020-02-15T06:59:55Z +13102 485 1 9053 4.99 2005-07-30T07:07:39Z 2020-02-15T06:59:55Z +13103 485 2 9189 2.99 2005-07-30T12:20:59Z 2020-02-15T06:59:55Z +13104 485 1 9535 2.99 2005-07-31T01:18:53Z 2020-02-15T06:59:55Z +13105 485 1 9565 0.99 2005-07-31T02:32:00Z 2020-02-15T06:59:55Z +13106 485 1 10771 4.99 2005-08-01T20:49:35Z 2020-02-15T06:59:55Z +13107 485 2 10772 6.99 2005-08-01T20:51:10Z 2020-02-15T06:59:55Z +13108 485 2 11188 3.99 2005-08-02T11:17:11Z 2020-02-15T06:59:55Z +13109 485 1 11921 4.99 2005-08-17T16:12:27Z 2020-02-15T06:59:55Z +13110 485 1 11974 2.99 2005-08-17T17:56:48Z 2020-02-15T06:59:55Z +13111 485 2 12261 8.99 2005-08-18T04:16:06Z 2020-02-15T06:59:55Z +13112 485 2 12487 0.99 2005-08-18T12:45:24Z 2020-02-15T06:59:55Z +13113 485 2 13055 2.99 2005-08-19T09:36:28Z 2020-02-15T06:59:55Z +13114 486 1 909 8.99 2005-05-30T10:43:38Z 2020-02-15T06:59:55Z +13115 486 2 946 2.99 2005-05-30T15:35:08Z 2020-02-15T06:59:55Z +13116 486 2 1129 0.99 2005-05-31T18:00:48Z 2020-02-15T06:59:55Z +13117 486 1 2036 4.99 2005-06-17T13:46:52Z 2020-02-15T06:59:55Z +13118 486 1 2102 5.99 2005-06-17T19:05:22Z 2020-02-15T06:59:55Z +13119 486 2 2566 2.99 2005-06-19T03:45:39Z 2020-02-15T06:59:55Z +13120 486 2 2797 2.99 2005-06-19T19:04:32Z 2020-02-15T06:59:55Z +13121 486 1 3835 4.99 2005-07-06T16:22:45Z 2020-02-15T06:59:55Z +13122 486 2 4110 4.99 2005-07-07T06:44:27Z 2020-02-15T06:59:55Z +13123 486 1 4205 4.99 2005-07-07T11:25:39Z 2020-02-15T06:59:55Z +13124 486 1 4381 2.99 2005-07-07T20:37:53Z 2020-02-15T06:59:55Z +13125 486 1 4772 7.99 2005-07-08T15:41:11Z 2020-02-15T06:59:55Z +13126 486 2 5006 4.99 2005-07-09T01:24:07Z 2020-02-15T06:59:55Z +13127 486 2 6383 4.99 2005-07-11T22:06:53Z 2020-02-15T06:59:55Z +13128 486 2 7127 4.99 2005-07-27T06:13:48Z 2020-02-15T06:59:55Z +13129 486 2 7446 4.99 2005-07-27T18:00:24Z 2020-02-15T06:59:55Z +13130 486 2 8425 8.99 2005-07-29T07:06:21Z 2020-02-15T06:59:55Z +13131 486 2 9142 0.99 2005-07-30T10:21:03Z 2020-02-15T06:59:55Z +13132 486 1 10079 2.99 2005-07-31T20:05:45Z 2020-02-15T06:59:55Z +13133 486 2 10902 4.99 2005-08-02T01:35:46Z 2020-02-15T06:59:55Z +13134 486 1 12465 0.99 2005-08-18T11:35:02Z 2020-02-15T06:59:55Z +13135 486 2 12609 2.99 2005-08-18T17:06:22Z 2020-02-15T06:59:55Z +13136 486 1 13048 4.99 2005-08-19T09:25:06Z 2020-02-15T06:59:55Z +13137 486 2 13803 0.99 2005-08-20T12:46:17Z 2020-02-15T06:59:55Z +13138 486 2 14251 4.99 2005-08-21T05:42:20Z 2020-02-15T06:59:55Z +13139 486 2 14284 4.99 2005-08-21T06:44:37Z 2020-02-15T06:59:55Z +13140 487 2 3100 3.99 2005-06-20T16:47:57Z 2020-02-15T06:59:55Z +13141 487 2 3994 1.99 2005-07-06T23:39:01Z 2020-02-15T06:59:55Z +13142 487 2 4854 2.99 2005-07-08T18:44:44Z 2020-02-15T06:59:55Z +13143 487 1 5634 3.99 2005-07-10T06:25:48Z 2020-02-15T06:59:55Z +13144 487 1 6928 2.99 2005-07-26T22:56:21Z 2020-02-15T06:59:55Z +13145 487 1 7097 2.99 2005-07-27T04:56:09Z 2020-02-15T06:59:55Z +13146 487 1 7788 0.99 2005-07-28T07:21:55Z 2020-02-15T06:59:55Z +13147 487 2 7949 4.99 2005-07-28T13:07:24Z 2020-02-15T06:59:55Z +13148 487 2 8510 1.99 2005-07-29T09:41:38Z 2020-02-15T06:59:55Z +13149 487 2 8689 2.99 2005-07-29T16:38:58Z 2020-02-15T06:59:55Z +13150 487 1 8814 4.99 2005-07-29T21:49:43Z 2020-02-15T06:59:55Z +13151 487 1 8988 7.99 2005-07-30T04:38:49Z 2020-02-15T06:59:55Z +13152 487 2 9457 2.99 2005-07-30T22:23:05Z 2020-02-15T06:59:55Z +13153 487 1 9490 3.99 2005-07-30T23:45:09Z 2020-02-15T06:59:55Z +13154 487 2 10123 0.99 2005-07-31T21:30:46Z 2020-02-15T06:59:55Z +13155 487 2 10511 2.99 2005-08-01T11:32:16Z 2020-02-15T06:59:55Z +13156 487 2 10555 6.99 2005-08-01T12:56:38Z 2020-02-15T06:59:55Z +13157 487 1 10832 6.99 2005-08-01T23:24:53Z 2020-02-15T06:59:55Z +13158 487 2 10877 5.99 2005-08-02T00:32:04Z 2020-02-15T06:59:55Z +13159 487 1 10978 9.99 2005-08-02T04:12:27Z 2020-02-15T06:59:55Z +13160 487 1 11669 5.99 2005-08-17T05:48:51Z 2020-02-15T06:59:55Z +13161 487 2 11890 5.99 2005-08-17T15:08:43Z 2020-02-15T06:59:55Z +13162 487 1 12493 7.99 2005-08-18T12:53:38Z 2020-02-15T06:59:55Z +13163 487 2 13210 4.99 2005-08-19T15:23:38Z 2020-02-15T06:59:55Z +13164 487 1 13658 7.99 2005-08-20T08:02:22Z 2020-02-15T06:59:55Z +13165 487 2 15665 2.99 2005-08-23T08:59:12Z 2020-02-15T06:59:55Z +13166 488 2 1655 3.99 2005-06-16T09:51:39Z 2020-02-15T06:59:55Z +13167 488 2 1704 5.99 2005-06-16T13:45:56Z 2020-02-15T06:59:55Z +13168 488 2 4133 6.99 2005-07-07T08:12:26Z 2020-02-15T06:59:55Z +13169 488 2 4233 5.99 2005-07-07T13:00:20Z 2020-02-15T06:59:55Z +13170 488 1 5141 8.99 2005-07-09T08:05:14Z 2020-02-15T06:59:55Z +13171 488 2 6548 5.99 2005-07-12T05:00:46Z 2020-02-15T06:59:55Z +13172 488 1 7373 5.99 2005-07-27T15:19:33Z 2020-02-15T06:59:55Z +13173 488 1 8005 2.99 2005-07-28T15:15:11Z 2020-02-15T06:59:55Z +13174 488 2 8050 0.99 2005-07-28T16:55:47Z 2020-02-15T06:59:55Z +13175 488 2 8064 2.99 2005-07-28T17:15:38Z 2020-02-15T06:59:55Z +13176 488 2 9083 5.99 2005-07-30T08:14:27Z 2020-02-15T06:59:55Z +13177 488 1 9532 2.99 2005-07-31T01:16:51Z 2020-02-15T06:59:55Z +13178 488 1 9537 0.99 2005-07-31T01:23:00Z 2020-02-15T06:59:55Z +13179 488 2 10474 5.99 2005-08-01T10:01:42Z 2020-02-15T06:59:55Z +13180 488 1 10767 0.99 2005-08-01T20:37:23Z 2020-02-15T06:59:55Z +13181 488 1 11774 3.99 2005-08-17T10:20:39Z 2020-02-15T06:59:55Z +13182 488 2 12483 5.99 2005-08-18T12:38:37Z 2020-02-15T06:59:55Z +13183 488 2 13446 4.99 2005-08-20T00:06:13Z 2020-02-15T06:59:55Z +13184 488 2 14948 5.99 2005-08-22T06:10:53Z 2020-02-15T06:59:55Z +13185 488 2 15259 0.99 2005-08-22T18:23:23Z 2020-02-15T06:59:55Z +13186 488 1 15350 2.99 2005-08-22T21:15:29Z 2020-02-15T06:59:55Z +13187 488 2 15499 2.99 2005-08-23T02:37:19Z 2020-02-15T06:59:55Z +13188 489 1 219 4.99 2005-05-26T09:41:45Z 2020-02-15T06:59:55Z +13189 489 2 513 2.99 2005-05-28T03:08:10Z 2020-02-15T06:59:55Z +13190 489 2 1614 3.99 2005-06-16T06:58:02Z 2020-02-15T06:59:55Z +13191 489 1 2201 0.99 2005-06-18T02:08:27Z 2020-02-15T06:59:55Z +13192 489 1 2370 7.99 2005-06-18T14:29:54Z 2020-02-15T06:59:55Z +13193 489 1 2802 4.99 2005-06-19T19:18:17Z 2020-02-15T06:59:55Z +13194 489 2 3816 2.99 2005-07-06T15:27:04Z 2020-02-15T06:59:55Z +13195 489 1 4774 3.99 2005-07-08T15:42:28Z 2020-02-15T06:59:55Z +13196 489 1 6963 4.99 2005-07-27T00:13:02Z 2020-02-15T06:59:55Z +13197 489 2 9231 0.99 2005-07-30T13:42:15Z 2020-02-15T06:59:55Z +13198 489 1 9459 4.99 2005-07-30T22:24:46Z 2020-02-15T06:59:55Z +13199 489 2 11119 9.99 2005-08-02T08:44:44Z 2020-02-15T06:59:55Z +13200 489 1 11705 4.99 2005-08-17T07:22:25Z 2020-02-15T06:59:55Z +13201 489 1 12496 6.99 2005-08-18T12:58:25Z 2020-02-15T06:59:55Z +13202 489 2 12701 6.99 2005-08-18T20:26:47Z 2020-02-15T06:59:55Z +13203 489 1 13462 4.99 2005-08-20T00:49:19Z 2020-02-15T06:59:55Z +13204 489 2 14095 5.99 2005-08-21T00:25:45Z 2020-02-15T06:59:55Z +13205 489 2 14328 2.99 2005-08-21T08:18:20Z 2020-02-15T06:59:55Z +13206 489 2 14424 6.99 2005-08-21T11:24:11Z 2020-02-15T06:59:55Z +13207 489 1 15205 0.99 2005-08-22T16:32:23Z 2020-02-15T06:59:55Z +13208 489 1 15981 4.99 2005-08-23T20:12:17Z 2020-02-15T06:59:55Z +13209 490 2 585 6.99 2005-05-28T11:50:45Z 2020-02-15T06:59:55Z +13210 490 2 676 4.99 2005-05-28T22:27:51Z 2020-02-15T06:59:55Z +13211 490 1 1665 3.99 2005-06-16T10:16:02Z 2020-02-15T06:59:55Z +13212 490 1 3476 4.99 2005-07-05T23:02:37Z 2020-02-15T06:59:55Z +13213 490 2 3932 4.99 2005-07-06T21:06:17Z 2020-02-15T06:59:55Z +13214 490 1 4083 2.99 2005-07-07T05:13:15Z 2020-02-15T06:59:55Z +13215 490 1 4906 5.99 2005-07-08T20:59:13Z 2020-02-15T06:59:55Z +13216 490 2 5173 7.99 2005-07-09T09:31:44Z 2020-02-15T06:59:55Z +13217 490 2 5489 0.99 2005-07-10T00:07:03Z 2020-02-15T06:59:55Z +13218 490 1 5654 4.99 2005-07-10T07:24:46Z 2020-02-15T06:59:55Z +13219 490 2 6230 2.99 2005-07-11T14:02:19Z 2020-02-15T06:59:55Z +13220 490 1 6803 4.99 2005-07-12T17:21:49Z 2020-02-15T06:59:55Z +13221 490 2 6888 2.99 2005-07-12T21:01:11Z 2020-02-15T06:59:55Z +13222 490 2 6923 8.99 2005-07-12T22:40:48Z 2020-02-15T06:59:55Z +13223 490 1 8552 5.99 2005-07-29T11:14:02Z 2020-02-15T06:59:55Z +13224 490 2 9108 4.99 2005-07-30T08:56:36Z 2020-02-15T06:59:55Z +13225 490 1 9554 0.99 2005-07-31T02:06:49Z 2020-02-15T06:59:55Z +13226 490 1 10786 7.99 2005-08-01T21:29:34Z 2020-02-15T06:59:55Z +13227 490 1 10955 7.99 2005-08-02T03:32:34Z 2020-02-15T06:59:55Z +13228 490 2 11965 2.99 2005-08-17T17:39:45Z 2020-02-15T06:59:55Z +13229 490 2 14557 4.99 2005-08-21T16:05:11Z 2020-02-15T06:59:55Z +13230 490 2 14761 6.99 2005-08-21T23:30:28Z 2020-02-15T06:59:55Z +13231 490 2 15276 2.99 2005-08-22T18:59:01Z 2020-02-15T06:59:55Z +13232 490 1 15448 2.99 2005-08-23T00:55:24Z 2020-02-15T06:59:55Z +13233 491 1 484 2.99 2005-05-27T23:26:45Z 2020-02-15T06:59:55Z +13234 491 2 1097 0.99 2005-05-31T13:38:42Z 2020-02-15T06:59:55Z +13235 491 2 1198 2.99 2005-06-15T01:48:58Z 2020-02-15T06:59:55Z +13236 491 1 1371 4.99 2005-06-15T14:38:15Z 2020-02-15T06:59:55Z +13237 491 2 2026 4.99 2005-06-17T13:05:38Z 2020-02-15T06:59:55Z +13238 491 1 2259 4.99 2005-06-18T05:37:45Z 2020-02-15T06:59:55Z +13239 491 2 2391 4.99 2005-06-18T15:33:30Z 2020-02-15T06:59:55Z +13240 491 2 3031 4.99 2005-06-20T11:52:49Z 2020-02-15T06:59:55Z +13241 491 1 3440 3.99 2005-06-21T19:58:18Z 2020-02-15T06:59:55Z +13242 491 1 4046 8.99 2005-07-07T03:27:59Z 2020-02-15T06:59:55Z +13243 491 1 4392 2.99 2005-07-07T21:11:02Z 2020-02-15T06:59:55Z +13244 491 2 5134 6.99 2005-07-09T07:53:12Z 2020-02-15T06:59:55Z +13245 491 1 5889 4.99 2005-07-10T19:54:41Z 2020-02-15T06:59:55Z +13246 491 2 6171 2.99 2005-07-11T10:29:35Z 2020-02-15T06:59:55Z +13247 491 2 7019 3.99 2005-07-27T02:20:26Z 2020-02-15T06:59:55Z +13248 491 2 7281 6.99 2005-07-27T11:59:20Z 2020-02-15T06:59:55Z +13249 491 2 7688 7.99 2005-07-28T03:20:47Z 2020-02-15T06:59:55Z +13250 491 1 7871 6.99 2005-07-28T10:16:37Z 2020-02-15T06:59:55Z +13251 491 2 10036 2.99 2005-07-31T18:47:20Z 2020-02-15T06:59:55Z +13252 491 2 10178 4.99 2005-07-31T23:43:04Z 2020-02-15T06:59:55Z +13253 491 2 10974 6.99 2005-08-02T04:10:52Z 2020-02-15T06:59:55Z +13254 491 1 11048 4.99 2005-08-02T06:15:07Z 2020-02-15T06:59:55Z +13255 491 1 11590 0.99 2005-08-17T02:28:33Z 2020-02-15T06:59:55Z +13256 491 1 11840 4.99 2005-08-17T13:09:01Z 2020-02-15T06:59:55Z +13257 491 2 13607 2.99 2005-08-20T06:08:42Z 2020-02-15T06:59:55Z +13258 491 1 14780 0.99 2005-08-22T00:06:33Z 2020-02-15T06:59:55Z +13259 491 2 15685 5.99 2005-08-23T09:41:28Z 2020-02-15T06:59:55Z +13260 492 1 84 2.99 2005-05-25T12:36:30Z 2020-02-15T06:59:55Z +13261 492 2 1691 1.99 2005-06-16T12:24:28Z 2020-02-15T06:59:55Z +13262 492 2 1855 4.99 2005-06-17T00:54:58Z 2020-02-15T06:59:55Z +13263 492 2 1956 4.99 2005-06-17T08:43:32Z 2020-02-15T06:59:55Z +13264 492 1 3298 9.99 2005-06-21T07:09:44Z 2020-02-15T06:59:55Z +13265 492 2 4128 8.99 2005-07-07T07:35:25Z 2020-02-15T06:59:55Z +13266 492 1 4142 2.99 2005-07-07T08:19:45Z 2020-02-15T06:59:55Z +13267 492 2 4258 6.99 2005-07-07T14:20:59Z 2020-02-15T06:59:55Z +13268 492 2 5325 0.99 2005-07-09T16:35:47Z 2020-02-15T06:59:55Z +13269 492 1 5609 0.99 2005-07-10T05:09:46Z 2020-02-15T06:59:55Z +13270 492 1 6257 2.99 2005-07-11T15:23:46Z 2020-02-15T06:59:55Z +13271 492 2 7203 2.99 2005-07-27T09:01:23Z 2020-02-15T06:59:55Z +13272 492 2 12971 4.99 2005-08-19T06:42:43Z 2020-02-15T06:59:55Z +13273 492 1 14255 2.99 2005-08-21T05:51:37Z 2020-02-15T06:59:55Z +13274 492 2 15822 0.99 2005-08-23T15:05:59Z 2020-02-15T06:59:55Z +13275 492 1 15958 4.99 2005-08-23T19:22:36Z 2020-02-15T06:59:55Z +13276 493 1 543 7.99 2005-05-28T06:43:34Z 2020-02-15T06:59:55Z +13277 493 2 2109 3.99 2005-06-17T19:41:42Z 2020-02-15T06:59:55Z +13278 493 1 2365 4.99 2005-06-18T13:45:34Z 2020-02-15T06:59:55Z +13279 493 1 2579 0.99 2005-06-19T04:40:44Z 2020-02-15T06:59:55Z +13280 493 1 2864 2.99 2005-06-20T00:00:52Z 2020-02-15T06:59:55Z +13281 493 2 3586 4.99 2005-07-06T04:24:42Z 2020-02-15T06:59:55Z +13282 493 1 3655 5.99 2005-07-06T07:52:54Z 2020-02-15T06:59:55Z +13283 493 1 6549 7.99 2005-07-12T05:02:01Z 2020-02-15T06:59:55Z +13284 493 1 6552 4.99 2005-07-12T05:05:06Z 2020-02-15T06:59:55Z +13285 493 1 7026 2.99 2005-07-27T02:48:58Z 2020-02-15T06:59:55Z +13286 493 2 7043 7.99 2005-07-27T03:24:23Z 2020-02-15T06:59:55Z +13287 493 1 8298 4.99 2005-07-29T02:47:36Z 2020-02-15T06:59:55Z +13288 493 1 8616 2.99 2005-07-29T13:39:09Z 2020-02-15T06:59:55Z +13289 493 1 10777 6.99 2005-08-01T21:03:50Z 2020-02-15T06:59:55Z +13290 493 2 10885 7.99 2005-08-02T00:51:37Z 2020-02-15T06:59:55Z +13291 493 1 13638 2.99 2005-08-20T07:21:15Z 2020-02-15T06:59:55Z +13292 493 2 13675 6.99 2005-08-20T08:32:51Z 2020-02-15T06:59:55Z +13293 493 1 14117 4.99 2005-08-21T01:11:59Z 2020-02-15T06:59:55Z +13294 493 2 15177 4.99 2005-08-22T15:34:49Z 2020-02-15T06:59:55Z +13295 493 1 15355 0.99 2005-08-22T21:19:24Z 2020-02-15T06:59:55Z +13296 493 1 15490 6.99 2005-08-23T02:08:18Z 2020-02-15T06:59:55Z +13297 493 2 15878 2.99 2005-08-23T16:34:31Z 2020-02-15T06:59:55Z +13298 493 2 14160 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13299 494 1 608 4.99 2005-05-28T15:03:44Z 2020-02-15T06:59:55Z +13300 494 1 1683 2.99 2005-06-16T11:54:55Z 2020-02-15T06:59:55Z +13301 494 1 3511 0.99 2005-07-06T00:42:01Z 2020-02-15T06:59:55Z +13302 494 2 3803 2.99 2005-07-06T15:06:55Z 2020-02-15T06:59:55Z +13303 494 2 3913 0.99 2005-07-06T20:11:00Z 2020-02-15T06:59:55Z +13304 494 1 4086 3.99 2005-07-07T05:26:06Z 2020-02-15T06:59:55Z +13305 494 2 4397 5.99 2005-07-07T21:14:54Z 2020-02-15T06:59:55Z +13306 494 2 4551 7.99 2005-07-08T04:36:21Z 2020-02-15T06:59:55Z +13307 494 2 5083 4.99 2005-07-09T05:30:32Z 2020-02-15T06:59:55Z +13308 494 1 5180 2.99 2005-07-09T10:06:53Z 2020-02-15T06:59:55Z +13309 494 2 7258 3.99 2005-07-27T11:05:54Z 2020-02-15T06:59:55Z +13310 494 2 7546 8.99 2005-07-27T21:50:09Z 2020-02-15T06:59:55Z +13311 494 2 7737 1.99 2005-07-28T05:15:03Z 2020-02-15T06:59:55Z +13312 494 2 8333 2.99 2005-07-29T04:16:40Z 2020-02-15T06:59:55Z +13313 494 2 8895 2.99 2005-07-30T00:49:17Z 2020-02-15T06:59:55Z +13314 494 1 8934 4.99 2005-07-30T02:37:05Z 2020-02-15T06:59:55Z +13315 494 2 9012 4.99 2005-07-30T05:18:57Z 2020-02-15T06:59:55Z +13316 494 2 9510 7.99 2005-07-31T00:24:17Z 2020-02-15T06:59:55Z +13317 494 1 9799 2.99 2005-07-31T10:58:32Z 2020-02-15T06:59:55Z +13318 494 2 9943 7.99 2005-07-31T15:37:29Z 2020-02-15T06:59:55Z +13319 494 1 10403 0.99 2005-08-01T07:30:45Z 2020-02-15T06:59:55Z +13320 494 1 10623 2.99 2005-08-01T15:22:38Z 2020-02-15T06:59:55Z +13321 494 2 11152 3.99 2005-08-02T09:53:36Z 2020-02-15T06:59:55Z +13322 494 1 11987 5.99 2005-08-17T18:21:59Z 2020-02-15T06:59:55Z +13323 494 2 13094 0.99 2005-08-19T10:47:58Z 2020-02-15T06:59:55Z +13324 494 2 13301 3.99 2005-08-19T18:53:15Z 2020-02-15T06:59:55Z +13325 494 2 14634 5.99 2005-08-21T18:51:28Z 2020-02-15T06:59:55Z +13326 494 1 14832 4.99 2005-08-22T01:43:29Z 2020-02-15T06:59:55Z +13327 494 1 15086 6.99 2005-08-22T11:21:08Z 2020-02-15T06:59:55Z +13328 494 2 15156 9.99 2005-08-22T14:29:11Z 2020-02-15T06:59:55Z +13329 494 2 15291 4.99 2005-08-22T19:28:04Z 2020-02-15T06:59:55Z +13330 495 2 623 4.99 2005-05-28T16:01:28Z 2020-02-15T06:59:55Z +13331 495 2 741 4.99 2005-05-29T08:35:49Z 2020-02-15T06:59:55Z +13332 495 2 2074 2.99 2005-06-17T16:40:03Z 2020-02-15T06:59:55Z +13333 495 1 2349 4.99 2005-06-18T12:25:14Z 2020-02-15T06:59:55Z +13334 495 1 2549 7.99 2005-06-19T02:46:39Z 2020-02-15T06:59:55Z +13335 495 1 3129 3.99 2005-06-20T18:57:48Z 2020-02-15T06:59:55Z +13336 495 2 3966 2.99 2005-07-06T22:38:49Z 2020-02-15T06:59:55Z +13337 495 2 5484 7.99 2005-07-09T23:54:37Z 2020-02-15T06:59:55Z +13338 495 2 6426 7.99 2005-07-11T23:56:38Z 2020-02-15T06:59:55Z +13339 495 2 7191 2.99 2005-07-27T08:36:15Z 2020-02-15T06:59:55Z +13340 495 1 8151 0.99 2005-07-28T20:50:52Z 2020-02-15T06:59:55Z +13341 495 1 8383 1.99 2005-07-29T05:36:47Z 2020-02-15T06:59:55Z +13342 495 1 8451 5.99 2005-07-29T07:44:56Z 2020-02-15T06:59:55Z +13343 495 1 8672 5.99 2005-07-29T15:49:48Z 2020-02-15T06:59:55Z +13344 495 1 9387 9.99 2005-07-30T19:27:05Z 2020-02-15T06:59:55Z +13345 495 1 9741 4.99 2005-07-31T09:09:22Z 2020-02-15T06:59:55Z +13346 495 2 10065 4.99 2005-07-31T19:27:34Z 2020-02-15T06:59:55Z +13347 495 2 10643 5.99 2005-08-01T15:48:33Z 2020-02-15T06:59:55Z +13348 495 1 10783 4.99 2005-08-01T21:23:37Z 2020-02-15T06:59:55Z +13349 495 1 12782 5.99 2005-08-18T23:56:23Z 2020-02-15T06:59:55Z +13350 495 2 12837 0.99 2005-08-19T01:51:09Z 2020-02-15T06:59:55Z +13351 495 2 13205 3.99 2005-08-19T15:05:26Z 2020-02-15T06:59:55Z +13352 495 2 13445 2.99 2005-08-20T00:05:33Z 2020-02-15T06:59:55Z +13353 495 2 13818 4.99 2005-08-20T13:20:09Z 2020-02-15T06:59:55Z +13354 495 1 15984 2.99 2005-08-23T20:16:27Z 2020-02-15T06:59:55Z +13355 495 2 13753 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13356 496 2 322 4.99 2005-05-27T00:47:35Z 2020-02-15T06:59:55Z +13357 496 2 966 0.99 2005-05-30T19:00:37Z 2020-02-15T06:59:55Z +13358 496 1 2567 2.99 2005-06-19T04:04:46Z 2020-02-15T06:59:55Z +13359 496 2 3569 3.99 2005-07-06T03:17:23Z 2020-02-15T06:59:55Z +13360 496 1 4070 2.99 2005-07-07T04:37:09Z 2020-02-15T06:59:55Z +13361 496 1 4261 4.99 2005-07-07T14:23:56Z 2020-02-15T06:59:55Z +13362 496 1 4269 0.99 2005-07-07T14:38:33Z 2020-02-15T06:59:55Z +13363 496 1 5559 5.99 2005-07-10T03:13:07Z 2020-02-15T06:59:55Z +13364 496 2 5949 4.99 2005-07-10T23:13:00Z 2020-02-15T06:59:55Z +13365 496 1 7133 2.99 2005-07-27T06:29:23Z 2020-02-15T06:59:55Z +13366 496 2 8221 2.99 2005-07-28T23:47:19Z 2020-02-15T06:59:55Z +13367 496 1 11060 7.99 2005-08-02T06:48:18Z 2020-02-15T06:59:55Z +13368 496 2 11448 4.99 2005-08-02T20:44:33Z 2020-02-15T06:59:55Z +13369 496 1 11893 3.99 2005-08-17T15:13:29Z 2020-02-15T06:59:55Z +13370 496 2 12605 4.99 2005-08-18T16:59:37Z 2020-02-15T06:59:55Z +13371 496 1 13569 5.99 2005-08-20T05:02:59Z 2020-02-15T06:59:55Z +13372 496 2 14013 6.99 2005-08-20T20:42:50Z 2020-02-15T06:59:55Z +13373 496 1 14332 7.99 2005-08-21T08:30:43Z 2020-02-15T06:59:55Z +13374 496 1 14348 0.99 2005-08-21T08:54:26Z 2020-02-15T06:59:55Z +13375 496 2 15750 2.99 2005-08-23T12:36:05Z 2020-02-15T06:59:55Z +13376 496 1 13182 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13377 497 1 1100 7.99 2005-05-31T14:03:21Z 2020-02-15T06:59:55Z +13378 497 2 2180 8.99 2005-06-18T00:47:43Z 2020-02-15T06:59:55Z +13379 497 1 2298 5.99 2005-06-18T08:18:29Z 2020-02-15T06:59:55Z +13380 497 1 2406 2.99 2005-06-18T16:39:37Z 2020-02-15T06:59:55Z +13381 497 2 2818 4.99 2005-06-19T20:05:52Z 2020-02-15T06:59:55Z +13382 497 1 3696 2.99 2005-07-06T10:04:55Z 2020-02-15T06:59:55Z +13383 497 2 4218 7.99 2005-07-07T12:10:24Z 2020-02-15T06:59:55Z +13384 497 1 4516 4.99 2005-07-08T02:43:41Z 2020-02-15T06:59:55Z +13385 497 1 4578 0.99 2005-07-08T06:00:17Z 2020-02-15T06:59:55Z +13386 497 2 4795 0.99 2005-07-08T16:32:54Z 2020-02-15T06:59:55Z +13387 497 1 5030 4.99 2005-07-09T02:35:43Z 2020-02-15T06:59:55Z +13388 497 1 5239 4.99 2005-07-09T13:12:35Z 2020-02-15T06:59:55Z +13389 497 2 7603 2.99 2005-07-27T23:54:44Z 2020-02-15T06:59:55Z +13390 497 2 8011 2.99 2005-07-28T15:26:39Z 2020-02-15T06:59:55Z +13391 497 1 8150 6.99 2005-07-28T20:50:41Z 2020-02-15T06:59:55Z +13392 497 2 8813 6.99 2005-07-29T21:47:55Z 2020-02-15T06:59:55Z +13393 497 2 8867 4.99 2005-07-30T00:02:18Z 2020-02-15T06:59:55Z +13394 497 1 9273 9.99 2005-07-30T15:05:36Z 2020-02-15T06:59:55Z +13395 497 2 9850 4.99 2005-07-31T12:46:52Z 2020-02-15T06:59:55Z +13396 497 2 10760 7.99 2005-08-01T20:25:20Z 2020-02-15T06:59:55Z +13397 497 1 12123 0.99 2005-08-17T23:22:18Z 2020-02-15T06:59:55Z +13398 497 1 13159 4.99 2005-08-19T13:19:59Z 2020-02-15T06:59:55Z +13399 497 1 13289 2.99 2005-08-19T18:31:30Z 2020-02-15T06:59:55Z +13400 497 2 14134 0.99 2005-08-21T01:45:54Z 2020-02-15T06:59:55Z +13401 497 1 15362 5.99 2005-08-22T21:40:20Z 2020-02-15T06:59:55Z +13402 497 2 15633 0.99 2005-08-23T07:31:10Z 2020-02-15T06:59:55Z +13403 497 1 15919 0.99 2005-08-23T18:01:31Z 2020-02-15T06:59:55Z +13404 497 1 12698 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13405 498 2 49 2.99 2005-05-25T06:39:35Z 2020-02-15T06:59:55Z +13406 498 1 429 8.99 2005-05-27T16:21:26Z 2020-02-15T06:59:55Z +13407 498 2 718 2.99 2005-05-29T04:52:23Z 2020-02-15T06:59:55Z +13408 498 1 1253 6.99 2005-06-15T06:06:33Z 2020-02-15T06:59:55Z +13409 498 1 1782 2.99 2005-06-16T19:21:12Z 2020-02-15T06:59:55Z +13410 498 1 2344 2.99 2005-06-18T12:01:47Z 2020-02-15T06:59:55Z +13411 498 1 2449 4.99 2005-06-18T19:18:36Z 2020-02-15T06:59:55Z +13412 498 1 3098 0.99 2005-06-20T16:37:01Z 2020-02-15T06:59:55Z +13413 498 2 3360 0.99 2005-06-21T12:12:41Z 2020-02-15T06:59:55Z +13414 498 2 3828 0.99 2005-07-06T15:57:30Z 2020-02-15T06:59:55Z +13415 498 2 3856 2.99 2005-07-06T17:04:46Z 2020-02-15T06:59:55Z +13416 498 1 4311 4.99 2005-07-07T17:31:14Z 2020-02-15T06:59:55Z +13417 498 2 4972 2.99 2005-07-08T23:56:09Z 2020-02-15T06:59:55Z +13418 498 1 5286 2.99 2005-07-09T15:11:41Z 2020-02-15T06:59:55Z +13419 498 2 5884 0.99 2005-07-10T19:31:38Z 2020-02-15T06:59:55Z +13420 498 1 6058 2.99 2005-07-11T04:03:51Z 2020-02-15T06:59:55Z +13421 498 1 6088 1.99 2005-07-11T05:40:35Z 2020-02-15T06:59:55Z +13422 498 1 7285 4.99 2005-07-27T12:14:06Z 2020-02-15T06:59:55Z +13423 498 1 7286 6.99 2005-07-27T12:23:49Z 2020-02-15T06:59:55Z +13424 498 1 7341 4.99 2005-07-27T14:23:55Z 2020-02-15T06:59:55Z +13425 498 2 8020 4.99 2005-07-28T15:43:32Z 2020-02-15T06:59:55Z +13426 498 1 8229 2.99 2005-07-29T00:09:08Z 2020-02-15T06:59:55Z +13427 498 2 9021 0.99 2005-07-30T05:34:24Z 2020-02-15T06:59:55Z +13428 498 2 9689 4.99 2005-07-31T07:00:08Z 2020-02-15T06:59:55Z +13429 498 1 10225 0.99 2005-08-01T01:38:40Z 2020-02-15T06:59:55Z +13430 498 1 11455 6.99 2005-08-02T21:07:06Z 2020-02-15T06:59:55Z +13431 498 1 12893 2.99 2005-08-19T03:46:43Z 2020-02-15T06:59:55Z +13432 499 2 89 2.99 2005-05-25T14:28:29Z 2020-02-15T06:59:55Z +13433 499 1 1355 2.99 2005-06-15T13:13:59Z 2020-02-15T06:59:55Z +13434 499 2 1526 4.99 2005-06-16T00:27:51Z 2020-02-15T06:59:55Z +13435 499 2 1830 4.99 2005-06-16T22:18:43Z 2020-02-15T06:59:55Z +13436 499 2 3241 1.99 2005-06-21T02:54:32Z 2020-02-15T06:59:55Z +13437 499 1 3794 4.99 2005-07-06T14:35:26Z 2020-02-15T06:59:55Z +13438 499 1 5022 2.99 2005-07-09T02:10:54Z 2020-02-15T06:59:55Z +13439 499 2 5392 2.99 2005-07-09T19:32:30Z 2020-02-15T06:59:55Z +13440 499 2 5427 3.99 2005-07-09T21:12:26Z 2020-02-15T06:59:55Z +13441 499 1 5956 4.99 2005-07-10T23:23:08Z 2020-02-15T06:59:55Z +13442 499 2 6723 4.99 2005-07-12T13:44:57Z 2020-02-15T06:59:55Z +13443 499 1 7800 0.99 2005-07-28T07:50:59Z 2020-02-15T06:59:55Z +13444 499 1 7831 0.99 2005-07-28T08:44:21Z 2020-02-15T06:59:55Z +13445 499 1 7898 6.99 2005-07-28T11:08:22Z 2020-02-15T06:59:55Z +13446 499 2 8130 4.99 2005-07-28T19:48:15Z 2020-02-15T06:59:55Z +13447 499 1 8770 3.99 2005-07-29T19:53:50Z 2020-02-15T06:59:55Z +13448 499 1 9588 0.99 2005-07-31T03:13:13Z 2020-02-15T06:59:55Z +13449 499 2 10333 0.99 2005-08-01T04:58:32Z 2020-02-15T06:59:55Z +13450 499 2 10497 2.99 2005-08-01T10:55:59Z 2020-02-15T06:59:55Z +13451 499 1 11513 7.99 2005-08-16T23:51:33Z 2020-02-15T06:59:55Z +13452 499 2 11606 0.99 2005-08-17T03:32:43Z 2020-02-15T06:59:55Z +13453 499 2 11978 4.99 2005-08-17T18:02:10Z 2020-02-15T06:59:55Z +13454 499 1 12004 8.99 2005-08-17T18:56:53Z 2020-02-15T06:59:55Z +13455 499 1 12354 7.99 2005-08-18T07:34:07Z 2020-02-15T06:59:55Z +13456 499 1 12436 3.99 2005-08-18T10:41:05Z 2020-02-15T06:59:55Z +13457 499 1 12587 1.99 2005-08-18T16:03:13Z 2020-02-15T06:59:55Z +13458 499 2 12947 4.99 2005-08-19T05:54:21Z 2020-02-15T06:59:55Z +13459 499 2 13822 3.99 2005-08-20T13:39:28Z 2020-02-15T06:59:55Z +13460 499 1 14858 3.99 2005-08-22T02:46:18Z 2020-02-15T06:59:55Z +13461 499 1 15587 7.99 2005-08-23T06:00:28Z 2020-02-15T06:59:55Z +13462 500 1 112 8.99 2005-05-25T18:57:24Z 2020-02-15T06:59:55Z +13463 500 1 389 8.99 2005-05-27T10:45:41Z 2020-02-15T06:59:55Z +13464 500 1 610 0.99 2005-05-28T15:15:25Z 2020-02-15T06:59:55Z +13465 500 1 1375 5.99 2005-06-15T14:54:56Z 2020-02-15T06:59:55Z +13466 500 2 1388 5.99 2005-06-15T15:48:41Z 2020-02-15T06:59:55Z +13467 500 2 2189 3.99 2005-06-18T01:20:26Z 2020-02-15T06:59:55Z +13468 500 2 2526 6.99 2005-06-19T01:03:07Z 2020-02-15T06:59:55Z +13469 500 1 2996 2.99 2005-06-20T09:20:29Z 2020-02-15T06:59:55Z +13470 500 2 3926 4.99 2005-07-06T20:42:35Z 2020-02-15T06:59:55Z +13471 500 1 4561 0.99 2005-07-08T05:02:43Z 2020-02-15T06:59:55Z +13472 500 2 4790 4.99 2005-07-08T16:25:27Z 2020-02-15T06:59:55Z +13473 500 2 6018 4.99 2005-07-11T02:06:36Z 2020-02-15T06:59:55Z +13474 500 2 6187 2.99 2005-07-11T11:28:51Z 2020-02-15T06:59:55Z +13475 500 2 6801 3.99 2005-07-12T17:09:08Z 2020-02-15T06:59:55Z +13476 500 1 7857 0.99 2005-07-28T09:49:40Z 2020-02-15T06:59:55Z +13477 500 1 7925 2.99 2005-07-28T12:10:02Z 2020-02-15T06:59:55Z +13478 500 1 8538 6.99 2005-07-29T10:45:17Z 2020-02-15T06:59:55Z +13479 500 1 8925 0.99 2005-07-30T02:09:14Z 2020-02-15T06:59:55Z +13480 500 2 9290 3.99 2005-07-30T15:59:08Z 2020-02-15T06:59:55Z +13481 500 1 10947 6.99 2005-08-02T03:23:17Z 2020-02-15T06:59:55Z +13482 500 2 11218 1.99 2005-08-02T12:29:12Z 2020-02-15T06:59:55Z +13483 500 1 12639 2.99 2005-08-18T18:13:05Z 2020-02-15T06:59:55Z +13484 500 2 12813 2.99 2005-08-19T00:54:22Z 2020-02-15T06:59:55Z +13485 500 2 13628 4.99 2005-08-20T07:03:53Z 2020-02-15T06:59:55Z +13486 500 1 14407 0.99 2005-08-21T10:46:51Z 2020-02-15T06:59:55Z +13487 500 1 14964 4.99 2005-08-22T06:39:24Z 2020-02-15T06:59:55Z +13488 500 1 15584 2.99 2005-08-23T05:49:21Z 2020-02-15T06:59:55Z +13489 500 1 15853 2.99 2005-08-23T15:54:20Z 2020-02-15T06:59:55Z +13490 501 1 493 0.99 2005-05-28T00:34:11Z 2020-02-15T06:59:55Z +13491 501 1 605 1.99 2005-05-28T14:39:10Z 2020-02-15T06:59:55Z +13492 501 2 3222 5.99 2005-06-21T01:50:29Z 2020-02-15T06:59:55Z +13493 501 1 3412 7.99 2005-06-21T16:44:31Z 2020-02-15T06:59:55Z +13494 501 2 3541 6.99 2005-07-06T01:50:11Z 2020-02-15T06:59:55Z +13495 501 2 3723 6.99 2005-07-06T11:12:02Z 2020-02-15T06:59:55Z +13496 501 2 4769 2.99 2005-07-08T15:29:16Z 2020-02-15T06:59:55Z +13497 501 2 5520 1.99 2005-07-10T01:30:41Z 2020-02-15T06:59:55Z +13498 501 2 6095 7.99 2005-07-11T06:06:41Z 2020-02-15T06:59:55Z +13499 501 1 7456 0.99 2005-07-27T18:34:53Z 2020-02-15T06:59:55Z +13500 501 1 8021 2.99 2005-07-28T15:45:24Z 2020-02-15T06:59:55Z +13501 501 2 8529 2.99 2005-07-29T10:24:31Z 2020-02-15T06:59:55Z +13502 501 1 9359 2.99 2005-07-30T18:39:28Z 2020-02-15T06:59:55Z +13503 501 1 10817 4.99 2005-08-01T22:51:08Z 2020-02-15T06:59:55Z +13504 501 2 11393 4.99 2005-08-02T18:44:29Z 2020-02-15T06:59:55Z +13505 501 1 11640 1.99 2005-08-17T04:44:33Z 2020-02-15T06:59:55Z +13506 501 2 11799 6.99 2005-08-17T11:25:25Z 2020-02-15T06:59:55Z +13507 501 1 12914 4.99 2005-08-19T04:25:59Z 2020-02-15T06:59:55Z +13508 501 2 13889 0.99 2005-08-20T15:40:06Z 2020-02-15T06:59:55Z +13509 501 1 15239 4.99 2005-08-22T17:46:17Z 2020-02-15T06:59:55Z +13510 501 1 15699 5.99 2005-08-23T10:20:35Z 2020-02-15T06:59:55Z +13511 502 2 258 2.99 2005-05-26T15:28:14Z 2020-02-15T06:59:55Z +13512 502 1 861 0.99 2005-05-30T02:48:32Z 2020-02-15T06:59:55Z +13513 502 1 893 2.99 2005-05-30T08:06:59Z 2020-02-15T06:59:55Z +13514 502 2 965 0.99 2005-05-30T19:00:14Z 2020-02-15T06:59:55Z +13515 502 2 1696 7.99 2005-06-16T12:50:01Z 2020-02-15T06:59:55Z +13516 502 2 2420 0.99 2005-06-18T17:22:28Z 2020-02-15T06:59:55Z +13517 502 1 2911 0.99 2005-06-20T03:32:37Z 2020-02-15T06:59:55Z +13518 502 2 3614 2.99 2005-07-06T05:46:05Z 2020-02-15T06:59:55Z +13519 502 1 4606 2.99 2005-07-08T07:05:50Z 2020-02-15T06:59:55Z +13520 502 2 5368 5.99 2005-07-09T18:41:59Z 2020-02-15T06:59:55Z +13521 502 2 5662 2.99 2005-07-10T07:59:24Z 2020-02-15T06:59:55Z +13522 502 2 6414 7.99 2005-07-11T23:26:13Z 2020-02-15T06:59:55Z +13523 502 1 6760 8.99 2005-07-12T15:16:00Z 2020-02-15T06:59:55Z +13524 502 2 6828 2.99 2005-07-12T18:38:51Z 2020-02-15T06:59:55Z +13525 502 2 6924 8.99 2005-07-26T22:51:53Z 2020-02-15T06:59:55Z +13526 502 2 7213 3.99 2005-07-27T09:22:29Z 2020-02-15T06:59:55Z +13527 502 1 7255 4.99 2005-07-27T10:49:54Z 2020-02-15T06:59:55Z +13528 502 1 7757 4.99 2005-07-28T06:23:00Z 2020-02-15T06:59:55Z +13529 502 1 7884 4.99 2005-07-28T10:37:24Z 2020-02-15T06:59:55Z +13530 502 2 8034 4.99 2005-07-28T16:20:26Z 2020-02-15T06:59:55Z +13531 502 2 9232 0.99 2005-07-30T13:43:00Z 2020-02-15T06:59:55Z +13532 502 1 9599 4.99 2005-07-31T03:32:06Z 2020-02-15T06:59:55Z +13533 502 2 10390 4.99 2005-08-01T06:46:48Z 2020-02-15T06:59:55Z +13534 502 1 10938 0.99 2005-08-02T03:05:22Z 2020-02-15T06:59:55Z +13535 502 2 11036 4.99 2005-08-02T05:56:29Z 2020-02-15T06:59:55Z +13536 502 1 11301 0.99 2005-08-02T15:37:59Z 2020-02-15T06:59:55Z +13537 502 1 11317 4.99 2005-08-02T16:08:52Z 2020-02-15T06:59:55Z +13538 502 1 11435 0.99 2005-08-02T20:14:23Z 2020-02-15T06:59:55Z +13539 502 1 11620 0.99 2005-08-17T04:06:22Z 2020-02-15T06:59:55Z +13540 502 1 12762 4.99 2005-08-18T23:06:54Z 2020-02-15T06:59:55Z +13541 502 1 13052 9.99 2005-08-19T09:31:42Z 2020-02-15T06:59:55Z +13542 502 1 14411 4.99 2005-08-21T10:54:57Z 2020-02-15T06:59:55Z +13543 502 1 15486 3.99 2005-08-23T02:05:20Z 2020-02-15T06:59:55Z +13544 502 1 16034 3.99 2005-08-23T22:06:34Z 2020-02-15T06:59:55Z +13545 503 2 109 1.99 2005-05-25T18:40:20Z 2020-02-15T06:59:55Z +13546 503 1 353 5.99 2005-05-27T06:03:39Z 2020-02-15T06:59:55Z +13547 503 1 631 2.99 2005-05-28T17:36:32Z 2020-02-15T06:59:55Z +13548 503 1 1074 4.99 2005-05-31T10:04:42Z 2020-02-15T06:59:55Z +13549 503 2 2108 4.99 2005-06-17T19:35:26Z 2020-02-15T06:59:55Z +13550 503 1 2225 2.99 2005-06-18T03:35:40Z 2020-02-15T06:59:55Z +13551 503 2 3430 0.99 2005-06-21T18:46:08Z 2020-02-15T06:59:55Z +13552 503 2 3935 6.99 2005-07-06T21:08:29Z 2020-02-15T06:59:55Z +13553 503 2 4570 2.99 2005-07-08T05:33:59Z 2020-02-15T06:59:55Z +13554 503 2 5465 2.99 2005-07-09T23:01:13Z 2020-02-15T06:59:55Z +13555 503 1 5925 6.99 2005-07-10T21:41:27Z 2020-02-15T06:59:55Z +13556 503 1 6166 4.99 2005-07-11T10:19:05Z 2020-02-15T06:59:55Z +13557 503 1 6529 2.99 2005-07-12T04:31:04Z 2020-02-15T06:59:55Z +13558 503 2 6950 4.99 2005-07-26T23:45:33Z 2020-02-15T06:59:55Z +13559 503 1 8178 2.99 2005-07-28T21:54:31Z 2020-02-15T06:59:55Z +13560 503 2 9725 0.99 2005-07-31T08:35:18Z 2020-02-15T06:59:55Z +13561 503 1 9974 4.99 2005-07-31T16:51:11Z 2020-02-15T06:59:55Z +13562 503 2 11075 2.99 2005-08-02T07:24:23Z 2020-02-15T06:59:55Z +13563 503 1 11161 1.99 2005-08-02T10:05:57Z 2020-02-15T06:59:55Z +13564 503 1 11858 4.99 2005-08-17T13:50:31Z 2020-02-15T06:59:55Z +13565 503 2 12370 2.99 2005-08-18T07:57:47Z 2020-02-15T06:59:55Z +13566 503 2 12783 4.99 2005-08-19T00:01:14Z 2020-02-15T06:59:55Z +13567 503 1 13332 2.99 2005-08-19T20:00:51Z 2020-02-15T06:59:55Z +13568 503 1 13551 2.99 2005-08-20T04:00:30Z 2020-02-15T06:59:55Z +13569 503 1 14823 0.99 2005-08-22T01:24:42Z 2020-02-15T06:59:55Z +13570 503 1 14913 2.99 2005-08-22T04:52:13Z 2020-02-15T06:59:55Z +13571 503 2 15056 4.99 2005-08-22T10:15:54Z 2020-02-15T06:59:55Z +13572 503 2 15077 2.99 2005-08-22T11:09:18Z 2020-02-15T06:59:55Z +13573 503 1 15588 3.99 2005-08-23T06:02:35Z 2020-02-15T06:59:55Z +13574 503 1 15692 4.99 2005-08-23T10:00:02Z 2020-02-15T06:59:55Z +13575 503 1 15726 2.99 2005-08-23T11:28:26Z 2020-02-15T06:59:55Z +13576 503 1 15797 0.99 2005-08-23T14:13:47Z 2020-02-15T06:59:55Z +13577 504 2 136 5.99 2005-05-25T22:02:30Z 2020-02-15T06:59:55Z +13578 504 2 470 4.99 2005-05-27T21:17:08Z 2020-02-15T06:59:55Z +13579 504 1 838 4.99 2005-05-30T00:27:57Z 2020-02-15T06:59:55Z +13580 504 1 2720 1.99 2005-06-19T14:51:55Z 2020-02-15T06:59:55Z +13581 504 1 2938 6.99 2005-06-20T05:17:22Z 2020-02-15T06:59:55Z +13582 504 2 3712 9.99 2005-07-06T10:47:35Z 2020-02-15T06:59:55Z +13583 504 1 3713 6.99 2005-07-06T10:49:30Z 2020-02-15T06:59:55Z +13584 504 1 4329 5.99 2005-07-07T18:04:16Z 2020-02-15T06:59:55Z +13585 504 1 4757 0.99 2005-07-08T14:36:51Z 2020-02-15T06:59:55Z +13586 504 2 5153 6.99 2005-07-09T08:35:05Z 2020-02-15T06:59:55Z +13587 504 2 7342 3.99 2005-07-27T14:25:17Z 2020-02-15T06:59:55Z +13588 504 1 7567 2.99 2005-07-27T22:38:05Z 2020-02-15T06:59:55Z +13589 504 2 7807 2.99 2005-07-28T07:58:27Z 2020-02-15T06:59:55Z +13590 504 2 7875 1.99 2005-07-28T10:23:48Z 2020-02-15T06:59:55Z +13591 504 2 7944 4.99 2005-07-28T12:51:22Z 2020-02-15T06:59:55Z +13592 504 1 8393 9.99 2005-07-29T06:02:11Z 2020-02-15T06:59:55Z +13593 504 2 10397 0.99 2005-08-01T07:11:27Z 2020-02-15T06:59:55Z +13594 504 2 10509 3.99 2005-08-01T11:25:28Z 2020-02-15T06:59:55Z +13595 504 2 11569 2.99 2005-08-17T01:31:04Z 2020-02-15T06:59:55Z +13596 504 1 12769 1.99 2005-08-18T23:26:40Z 2020-02-15T06:59:55Z +13597 504 1 13166 2.99 2005-08-19T13:36:28Z 2020-02-15T06:59:55Z +13598 504 2 13206 2.99 2005-08-19T15:05:34Z 2020-02-15T06:59:55Z +13599 504 2 13387 2.99 2005-08-19T21:46:10Z 2020-02-15T06:59:55Z +13600 504 2 13859 5.99 2005-08-20T14:53:43Z 2020-02-15T06:59:55Z +13601 504 2 15018 4.99 2005-08-22T08:52:38Z 2020-02-15T06:59:55Z +13602 504 1 15166 6.99 2005-08-22T15:05:37Z 2020-02-15T06:59:55Z +13603 504 1 15723 8.99 2005-08-23T11:17:26Z 2020-02-15T06:59:55Z +13604 504 2 16022 4.99 2005-08-23T21:44:27Z 2020-02-15T06:59:55Z +13605 505 1 159 2.99 2005-05-26T01:34:28Z 2020-02-15T06:59:55Z +13606 505 1 645 2.99 2005-05-28T19:14:09Z 2020-02-15T06:59:55Z +13607 505 2 1799 5.99 2005-06-16T20:17:20Z 2020-02-15T06:59:55Z +13608 505 2 1886 4.99 2005-06-17T03:36:02Z 2020-02-15T06:59:55Z +13609 505 1 2773 7.99 2005-06-19T18:04:18Z 2020-02-15T06:59:55Z +13610 505 1 3137 5.99 2005-06-20T19:41:28Z 2020-02-15T06:59:55Z +13611 505 2 4008 5.99 2005-07-07T00:26:43Z 2020-02-15T06:59:55Z +13612 505 1 4507 6.99 2005-07-08T02:22:45Z 2020-02-15T06:59:55Z +13613 505 2 5976 9.99 2005-07-11T00:16:35Z 2020-02-15T06:59:55Z +13614 505 2 6292 4.99 2005-07-11T17:23:33Z 2020-02-15T06:59:55Z +13615 505 1 6441 0.99 2005-07-12T00:27:08Z 2020-02-15T06:59:55Z +13616 505 1 7784 4.99 2005-07-28T07:15:32Z 2020-02-15T06:59:55Z +13617 505 2 10219 5.99 2005-08-01T01:10:33Z 2020-02-15T06:59:55Z +13618 505 1 10896 2.99 2005-08-02T01:19:33Z 2020-02-15T06:59:55Z +13619 505 1 11163 0.99 2005-08-02T10:08:40Z 2020-02-15T06:59:55Z +13620 505 1 11907 2.99 2005-08-17T15:40:47Z 2020-02-15T06:59:55Z +13621 505 2 13612 3.99 2005-08-20T06:22:08Z 2020-02-15T06:59:55Z +13622 505 1 14398 2.99 2005-08-21T10:27:21Z 2020-02-15T06:59:55Z +13623 505 1 14802 2.99 2005-08-22T00:48:23Z 2020-02-15T06:59:55Z +13624 505 1 15436 4.99 2005-08-23T00:30:26Z 2020-02-15T06:59:55Z +13625 505 2 15867 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13626 506 1 114 3.99 2005-05-25T19:12:42Z 2020-02-15T06:59:55Z +13627 506 2 387 2.99 2005-05-27T10:35:27Z 2020-02-15T06:59:55Z +13628 506 2 410 3.99 2005-05-27T14:11:22Z 2020-02-15T06:59:55Z +13629 506 1 547 8.99 2005-05-28T07:24:28Z 2020-02-15T06:59:55Z +13630 506 2 907 0.99 2005-05-30T10:37:27Z 2020-02-15T06:59:55Z +13631 506 1 1042 2.99 2005-05-31T05:53:00Z 2020-02-15T06:59:55Z +13632 506 2 1153 4.99 2005-05-31T21:36:44Z 2020-02-15T06:59:55Z +13633 506 1 1446 6.99 2005-06-15T19:13:45Z 2020-02-15T06:59:55Z +13634 506 1 1467 2.99 2005-06-15T20:47:10Z 2020-02-15T06:59:55Z +13635 506 2 1565 0.99 2005-06-16T03:13:09Z 2020-02-15T06:59:55Z +13636 506 1 2755 9.99 2005-06-19T16:56:31Z 2020-02-15T06:59:55Z +13637 506 2 2824 6.99 2005-06-19T20:31:45Z 2020-02-15T06:59:55Z +13638 506 2 4594 7.99 2005-07-08T06:40:06Z 2020-02-15T06:59:55Z +13639 506 2 4640 6.99 2005-07-08T08:59:34Z 2020-02-15T06:59:55Z +13640 506 2 4806 8.99 2005-07-08T17:01:02Z 2020-02-15T06:59:55Z +13641 506 2 5985 0.99 2005-07-11T00:51:58Z 2020-02-15T06:59:55Z +13642 506 1 6783 2.99 2005-07-12T16:27:56Z 2020-02-15T06:59:55Z +13643 506 1 7020 0.99 2005-07-27T02:24:27Z 2020-02-15T06:59:55Z +13644 506 2 8096 9.99 2005-07-28T18:32:46Z 2020-02-15T06:59:55Z +13645 506 2 8506 0.99 2005-07-29T09:23:52Z 2020-02-15T06:59:55Z +13646 506 2 9654 3.99 2005-07-31T05:57:42Z 2020-02-15T06:59:55Z +13647 506 2 9972 2.99 2005-07-31T16:42:43Z 2020-02-15T06:59:55Z +13648 506 1 10477 2.99 2005-08-01T10:04:17Z 2020-02-15T06:59:55Z +13649 506 1 10873 4.99 2005-08-02T00:30:34Z 2020-02-15T06:59:55Z +13650 506 2 11238 0.99 2005-08-02T13:25:50Z 2020-02-15T06:59:55Z +13651 506 2 11781 4.99 2005-08-17T10:37:00Z 2020-02-15T06:59:55Z +13652 506 1 12994 0.99 2005-08-19T07:26:10Z 2020-02-15T06:59:55Z +13653 506 2 13073 2.99 2005-08-19T10:05:38Z 2020-02-15T06:59:55Z +13654 506 2 13767 0.99 2005-08-20T11:43:36Z 2020-02-15T06:59:55Z +13655 506 1 14074 1.99 2005-08-20T23:16:07Z 2020-02-15T06:59:55Z +13656 506 1 14337 2.99 2005-08-21T08:34:26Z 2020-02-15T06:59:55Z +13657 506 2 14395 6.99 2005-08-21T10:24:00Z 2020-02-15T06:59:55Z +13658 506 2 15022 5.99 2005-08-22T08:55:43Z 2020-02-15T06:59:55Z +13659 506 2 15572 1.99 2005-08-23T05:28:01Z 2020-02-15T06:59:55Z +13660 506 1 15694 9.99 2005-08-23T10:02:46Z 2020-02-15T06:59:55Z +13661 507 1 52 0.99 2005-05-25T06:51:29Z 2020-02-15T06:59:55Z +13662 507 2 713 4.99 2005-05-29T04:10:17Z 2020-02-15T06:59:55Z +13663 507 2 1307 4.99 2005-06-15T10:06:15Z 2020-02-15T06:59:55Z +13664 507 1 2143 4.99 2005-06-17T21:58:13Z 2020-02-15T06:59:55Z +13665 507 2 2283 4.99 2005-06-18T06:56:06Z 2020-02-15T06:59:55Z +13666 507 1 3660 4.99 2005-07-06T08:07:29Z 2020-02-15T06:59:55Z +13667 507 1 3880 2.99 2005-07-06T18:32:49Z 2020-02-15T06:59:55Z +13668 507 2 4440 0.99 2005-07-07T23:00:58Z 2020-02-15T06:59:55Z +13669 507 2 4455 2.99 2005-07-07T23:43:46Z 2020-02-15T06:59:55Z +13670 507 2 4744 0.99 2005-07-08T13:43:57Z 2020-02-15T06:59:55Z +13671 507 2 4901 2.99 2005-07-08T20:44:51Z 2020-02-15T06:59:55Z +13672 507 1 5962 0.99 2005-07-10T23:45:22Z 2020-02-15T06:59:55Z +13673 507 1 6351 6.99 2005-07-11T20:31:44Z 2020-02-15T06:59:55Z +13674 507 1 6396 1.99 2005-07-11T22:31:08Z 2020-02-15T06:59:55Z +13675 507 1 6891 2.99 2005-07-12T21:07:35Z 2020-02-15T06:59:55Z +13676 507 2 7770 5.99 2005-07-28T06:49:35Z 2020-02-15T06:59:55Z +13677 507 1 7970 5.99 2005-07-28T13:58:38Z 2020-02-15T06:59:55Z +13678 507 2 8369 2.99 2005-07-29T05:15:42Z 2020-02-15T06:59:55Z +13679 507 2 8976 2.99 2005-07-30T04:12:32Z 2020-02-15T06:59:55Z +13680 507 1 9003 2.99 2005-07-30T05:02:52Z 2020-02-15T06:59:55Z +13681 507 2 12071 6.99 2005-08-17T21:49:14Z 2020-02-15T06:59:55Z +13682 507 2 12275 4.99 2005-08-18T04:42:02Z 2020-02-15T06:59:55Z +13683 507 1 12343 4.99 2005-08-18T07:15:13Z 2020-02-15T06:59:55Z +13684 507 2 14625 4.99 2005-08-21T18:34:21Z 2020-02-15T06:59:55Z +13685 507 1 15394 2.99 2005-08-22T23:04:21Z 2020-02-15T06:59:55Z +13686 508 1 369 2.99 2005-05-27T07:46:49Z 2020-02-15T06:59:55Z +13687 508 2 921 2.99 2005-05-30T11:53:09Z 2020-02-15T06:59:55Z +13688 508 2 1661 4.99 2005-06-16T10:12:57Z 2020-02-15T06:59:55Z +13689 508 2 5657 9.99 2005-07-10T07:33:43Z 2020-02-15T06:59:55Z +13690 508 2 5978 6.99 2005-07-11T00:16:54Z 2020-02-15T06:59:55Z +13691 508 1 6101 4.99 2005-07-11T06:50:33Z 2020-02-15T06:59:55Z +13692 508 2 6646 0.99 2005-07-12T10:41:34Z 2020-02-15T06:59:55Z +13693 508 2 6929 8.99 2005-07-26T22:59:19Z 2020-02-15T06:59:55Z +13694 508 1 7283 5.99 2005-07-27T12:02:41Z 2020-02-15T06:59:55Z +13695 508 2 7322 3.99 2005-07-27T13:37:26Z 2020-02-15T06:59:55Z +13696 508 2 7327 7.99 2005-07-27T13:53:26Z 2020-02-15T06:59:55Z +13697 508 2 7668 2.99 2005-07-28T02:41:31Z 2020-02-15T06:59:55Z +13698 508 2 7676 4.99 2005-07-28T02:55:27Z 2020-02-15T06:59:55Z +13699 508 2 8191 4.99 2005-07-28T22:47:14Z 2020-02-15T06:59:55Z +13700 508 2 9694 5.99 2005-07-31T07:13:16Z 2020-02-15T06:59:55Z +13701 508 1 9706 2.99 2005-07-31T07:43:19Z 2020-02-15T06:59:55Z +13702 508 2 10128 2.99 2005-07-31T21:40:04Z 2020-02-15T06:59:55Z +13703 508 1 10746 8.99 2005-08-01T19:58:49Z 2020-02-15T06:59:55Z +13704 508 1 11365 2.99 2005-08-02T18:00:09Z 2020-02-15T06:59:55Z +13705 508 2 11447 6.99 2005-08-02T20:36:25Z 2020-02-15T06:59:55Z +13706 508 1 13095 6.99 2005-08-19T10:48:10Z 2020-02-15T06:59:55Z +13707 508 2 13201 2.99 2005-08-19T14:56:05Z 2020-02-15T06:59:55Z +13708 508 1 15010 6.99 2005-08-22T08:30:17Z 2020-02-15T06:59:55Z +13709 508 1 15195 4.99 2005-08-22T16:08:23Z 2020-02-15T06:59:55Z +13710 508 1 14318 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:55Z +13711 509 1 22 4.99 2005-05-25T02:19:23Z 2020-02-15T06:59:55Z +13712 509 1 831 8.99 2005-05-29T22:50:25Z 2020-02-15T06:59:55Z +13713 509 1 1267 2.99 2005-06-15T07:21:21Z 2020-02-15T06:59:55Z +13714 509 2 2919 4.99 2005-06-20T04:10:16Z 2020-02-15T06:59:55Z +13715 509 2 4139 1.99 2005-07-07T08:17:35Z 2020-02-15T06:59:55Z +13716 509 2 4266 4.99 2005-07-07T14:34:50Z 2020-02-15T06:59:55Z +13717 509 2 4832 2.99 2005-07-08T18:07:05Z 2020-02-15T06:59:55Z +13718 509 2 5008 2.99 2005-07-09T01:31:42Z 2020-02-15T06:59:55Z +13719 509 1 6591 5.99 2005-07-12T07:13:46Z 2020-02-15T06:59:55Z +13720 509 1 7848 6.99 2005-07-28T09:24:31Z 2020-02-15T06:59:55Z +13721 509 1 8114 8.99 2005-07-28T19:14:06Z 2020-02-15T06:59:55Z +13722 509 1 8214 5.99 2005-07-28T23:37:57Z 2020-02-15T06:59:55Z +13723 509 2 8240 0.99 2005-07-29T00:33:32Z 2020-02-15T06:59:55Z +13724 509 1 10189 4.99 2005-08-01T00:25:00Z 2020-02-15T06:59:55Z +13725 509 2 10988 5.99 2005-08-02T04:38:17Z 2020-02-15T06:59:55Z +13726 509 1 11814 6.99 2005-08-17T12:09:20Z 2020-02-15T06:59:55Z +13727 509 2 12109 4.99 2005-08-17T22:58:35Z 2020-02-15T06:59:55Z +13728 509 2 14045 4.99 2005-08-20T21:50:11Z 2020-02-15T06:59:55Z +13729 509 2 14994 5.99 2005-08-22T07:52:24Z 2020-02-15T06:59:55Z +13730 509 1 15965 2.99 2005-08-23T19:46:39Z 2020-02-15T06:59:55Z +13731 510 1 75 8.99 2005-05-25T11:13:34Z 2020-02-15T06:59:55Z +13732 510 1 372 5.99 2005-05-27T08:13:58Z 2020-02-15T06:59:55Z +13733 510 2 1118 4.99 2005-05-31T16:23:02Z 2020-02-15T06:59:55Z +13734 510 2 1435 5.99 2005-06-15T18:32:30Z 2020-02-15T06:59:55Z +13735 510 2 1757 0.99 2005-06-16T17:32:24Z 2020-02-15T06:59:55Z +13736 510 2 1925 0.99 2005-06-17T06:16:47Z 2020-02-15T06:59:55Z +13737 510 1 2729 8.99 2005-06-19T15:06:15Z 2020-02-15T06:59:55Z +13738 510 2 2806 0.99 2005-06-19T19:30:48Z 2020-02-15T06:59:55Z +13739 510 2 2817 0.99 2005-06-19T20:05:22Z 2020-02-15T06:59:55Z +13740 510 2 3352 8.99 2005-06-21T11:26:29Z 2020-02-15T06:59:55Z +13741 510 2 3465 5.99 2005-06-21T22:10:01Z 2020-02-15T06:59:55Z +13742 510 2 3744 2.99 2005-07-06T12:10:02Z 2020-02-15T06:59:55Z +13743 510 1 4014 4.99 2005-07-07T00:58:54Z 2020-02-15T06:59:55Z +13744 510 2 5851 4.99 2005-07-10T17:40:47Z 2020-02-15T06:59:55Z +13745 510 1 6531 1.99 2005-07-12T04:35:24Z 2020-02-15T06:59:55Z +13746 510 1 7457 2.99 2005-07-27T18:35:17Z 2020-02-15T06:59:55Z +13747 510 1 7678 8.99 2005-07-28T02:58:16Z 2020-02-15T06:59:55Z +13748 510 2 7794 9.99 2005-07-28T07:28:03Z 2020-02-15T06:59:55Z +13749 510 2 8763 3.99 2005-07-29T19:38:24Z 2020-02-15T06:59:55Z +13750 510 1 8926 4.99 2005-07-30T02:10:31Z 2020-02-15T06:59:55Z +13751 510 1 10131 0.99 2005-07-31T21:45:28Z 2020-02-15T06:59:55Z +13752 510 2 10265 7.99 2005-08-01T03:05:04Z 2020-02-15T06:59:55Z +13753 510 2 11996 4.99 2005-08-17T18:34:37Z 2020-02-15T06:59:55Z +13754 510 1 12317 0.99 2005-08-18T06:17:06Z 2020-02-15T06:59:55Z +13755 510 2 12406 2.99 2005-08-18T09:38:02Z 2020-02-15T06:59:55Z +13756 510 1 15065 4.99 2005-08-22T10:46:44Z 2020-02-15T06:59:55Z +13757 511 1 56 2.99 2005-05-25T08:28:11Z 2020-02-15T06:59:55Z +13758 511 1 819 3.99 2005-05-29T21:00:32Z 2020-02-15T06:59:55Z +13759 511 2 1281 2.99 2005-06-15T08:21:39Z 2020-02-15T06:59:55Z +13760 511 1 1508 2.99 2005-06-15T22:33:24Z 2020-02-15T06:59:55Z +13761 511 2 2966 10.99 2005-06-20T07:39:33Z 2020-02-15T06:59:55Z +13762 511 2 3366 4.99 2005-06-21T13:03:37Z 2020-02-15T06:59:55Z +13763 511 2 3600 4.99 2005-07-06T05:19:42Z 2020-02-15T06:59:55Z +13764 511 1 3852 0.99 2005-07-06T16:57:49Z 2020-02-15T06:59:55Z +13765 511 1 4482 4.99 2005-07-08T01:01:18Z 2020-02-15T06:59:55Z +13766 511 2 5164 3.99 2005-07-09T09:03:14Z 2020-02-15T06:59:55Z +13767 511 1 5601 0.99 2005-07-10T04:56:55Z 2020-02-15T06:59:55Z +13768 511 2 6040 0.99 2005-07-11T03:14:26Z 2020-02-15T06:59:55Z +13769 511 1 6320 0.99 2005-07-11T18:50:55Z 2020-02-15T06:59:55Z +13770 511 1 8026 4.99 2005-07-28T16:05:38Z 2020-02-15T06:59:55Z +13771 511 1 9095 0.99 2005-07-30T08:38:36Z 2020-02-15T06:59:55Z +13772 511 1 9143 6.99 2005-07-30T10:22:11Z 2020-02-15T06:59:55Z +13773 511 1 9760 4.99 2005-07-31T09:29:33Z 2020-02-15T06:59:55Z +13774 511 1 10231 2.99 2005-08-01T01:50:49Z 2020-02-15T06:59:55Z +13775 511 2 10429 2.99 2005-08-01T08:34:18Z 2020-02-15T06:59:55Z +13776 511 2 12110 6.99 2005-08-17T22:59:46Z 2020-02-15T06:59:55Z +13777 511 1 12920 4.99 2005-08-19T04:32:32Z 2020-02-15T06:59:55Z +13778 511 1 14213 4.99 2005-08-21T04:30:47Z 2020-02-15T06:59:56Z +13779 511 1 14302 6.99 2005-08-21T07:19:57Z 2020-02-15T06:59:56Z +13780 511 1 15172 4.99 2005-08-22T15:25:33Z 2020-02-15T06:59:56Z +13781 512 1 1176 6.99 2005-06-15T00:28:37Z 2020-02-15T06:59:56Z +13782 512 2 2029 4.99 2005-06-17T13:10:59Z 2020-02-15T06:59:56Z +13783 512 1 2364 2.99 2005-06-18T13:37:32Z 2020-02-15T06:59:56Z +13784 512 1 4752 5.99 2005-07-08T14:15:20Z 2020-02-15T06:59:56Z +13785 512 1 4799 0.99 2005-07-08T16:49:27Z 2020-02-15T06:59:56Z +13786 512 1 5064 6.99 2005-07-09T04:38:51Z 2020-02-15T06:59:56Z +13787 512 2 5813 3.99 2005-07-10T15:34:37Z 2020-02-15T06:59:56Z +13788 512 1 7219 2.99 2005-07-27T09:35:36Z 2020-02-15T06:59:56Z +13789 512 1 7507 0.99 2005-07-27T20:31:48Z 2020-02-15T06:59:56Z +13790 512 1 7715 6.99 2005-07-28T04:32:38Z 2020-02-15T06:59:56Z +13791 512 2 8868 4.99 2005-07-30T00:02:26Z 2020-02-15T06:59:56Z +13792 512 1 9055 2.99 2005-07-30T07:13:07Z 2020-02-15T06:59:56Z +13793 512 2 10232 4.99 2005-08-01T01:50:55Z 2020-02-15T06:59:56Z +13794 512 2 10670 3.99 2005-08-01T17:07:16Z 2020-02-15T06:59:56Z +13795 512 2 11818 9.99 2005-08-17T12:22:04Z 2020-02-15T06:59:56Z +13796 512 2 12957 8.99 2005-08-19T06:12:44Z 2020-02-15T06:59:56Z +13797 512 2 13156 4.99 2005-08-19T13:10:42Z 2020-02-15T06:59:56Z +13798 512 2 13771 0.99 2005-08-20T11:47:21Z 2020-02-15T06:59:56Z +13799 512 1 14288 4.99 2005-08-21T06:57:34Z 2020-02-15T06:59:56Z +13800 512 1 14870 2.99 2005-08-22T03:23:20Z 2020-02-15T06:59:56Z +13801 512 1 15153 2.99 2005-08-22T14:26:01Z 2020-02-15T06:59:56Z +13802 512 2 15265 3.99 2005-08-22T18:35:59Z 2020-02-15T06:59:56Z +13803 512 1 15317 3.99 2005-08-22T20:14:13Z 2020-02-15T06:59:56Z +13804 512 2 15733 4.99 2005-08-23T11:37:32Z 2020-02-15T06:59:56Z +13805 512 2 15990 4.99 2005-08-23T20:25:11Z 2020-02-15T06:59:56Z +13806 512 1 12786 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +13807 513 2 993 4.99 2005-05-30T23:54:19Z 2020-02-15T06:59:56Z +13808 513 1 1607 2.99 2005-06-16T06:25:35Z 2020-02-15T06:59:56Z +13809 513 2 2290 7.99 2005-06-18T07:34:37Z 2020-02-15T06:59:56Z +13810 513 2 2737 1.99 2005-06-19T15:48:33Z 2020-02-15T06:59:56Z +13811 513 2 3872 0.99 2005-07-06T18:00:19Z 2020-02-15T06:59:56Z +13812 513 2 4055 2.99 2005-07-07T03:49:13Z 2020-02-15T06:59:56Z +13813 513 2 4178 4.99 2005-07-07T10:14:31Z 2020-02-15T06:59:56Z +13814 513 2 4220 4.99 2005-07-07T12:12:36Z 2020-02-15T06:59:56Z +13815 513 1 5741 7.99 2005-07-10T11:55:40Z 2020-02-15T06:59:56Z +13816 513 1 6027 4.99 2005-07-11T02:26:29Z 2020-02-15T06:59:56Z +13817 513 1 7655 0.99 2005-07-28T02:01:11Z 2020-02-15T06:59:56Z +13818 513 2 8320 4.99 2005-07-29T03:49:58Z 2020-02-15T06:59:56Z +13819 513 1 8350 4.99 2005-07-29T04:50:39Z 2020-02-15T06:59:56Z +13820 513 2 8683 9.99 2005-07-29T16:15:43Z 2020-02-15T06:59:56Z +13821 513 1 8798 5.99 2005-07-29T21:15:38Z 2020-02-15T06:59:56Z +13822 513 2 9862 2.99 2005-07-31T13:05:03Z 2020-02-15T06:59:56Z +13823 513 1 10012 3.99 2005-07-31T18:06:06Z 2020-02-15T06:59:56Z +13824 513 2 11081 2.99 2005-08-02T07:30:14Z 2020-02-15T06:59:56Z +13825 513 1 11165 2.99 2005-08-02T10:12:17Z 2020-02-15T06:59:56Z +13826 513 1 11407 3.99 2005-08-02T19:18:43Z 2020-02-15T06:59:56Z +13827 513 1 11755 3.99 2005-08-17T09:15:35Z 2020-02-15T06:59:56Z +13828 513 1 12559 5.99 2005-08-18T14:53:58Z 2020-02-15T06:59:56Z +13829 513 2 12784 2.99 2005-08-19T00:02:46Z 2020-02-15T06:59:56Z +13830 513 2 12807 4.99 2005-08-19T00:38:46Z 2020-02-15T06:59:56Z +13831 513 1 13596 5.99 2005-08-20T05:58:58Z 2020-02-15T06:59:56Z +13832 513 1 13690 4.99 2005-08-20T09:07:27Z 2020-02-15T06:59:56Z +13833 513 2 14844 7.99 2005-08-22T02:09:12Z 2020-02-15T06:59:56Z +13834 513 1 14875 4.99 2005-08-22T03:34:39Z 2020-02-15T06:59:56Z +13835 513 1 15035 4.99 2005-08-22T09:34:32Z 2020-02-15T06:59:56Z +13836 513 2 15289 6.99 2005-08-22T19:27:24Z 2020-02-15T06:59:56Z +13837 513 2 15545 5.99 2005-08-23T04:20:16Z 2020-02-15T06:59:56Z +13838 514 2 536 4.99 2005-05-28T06:17:33Z 2020-02-15T06:59:56Z +13839 514 2 1692 4.99 2005-06-16T12:30:19Z 2020-02-15T06:59:56Z +13840 514 1 2002 3.99 2005-06-17T11:39:58Z 2020-02-15T06:59:56Z +13841 514 2 2362 0.99 2005-06-18T13:31:15Z 2020-02-15T06:59:56Z +13842 514 1 2789 0.99 2005-06-19T18:48:21Z 2020-02-15T06:59:56Z +13843 514 2 3084 2.99 2005-06-20T15:35:24Z 2020-02-15T06:59:56Z +13844 514 1 3385 0.99 2005-06-21T14:16:48Z 2020-02-15T06:59:56Z +13845 514 2 3668 5.99 2005-07-06T08:36:48Z 2020-02-15T06:59:56Z +13846 514 2 3860 2.99 2005-07-06T17:20:24Z 2020-02-15T06:59:56Z +13847 514 1 7791 4.99 2005-07-28T07:22:51Z 2020-02-15T06:59:56Z +13848 514 1 9038 3.99 2005-07-30T06:23:35Z 2020-02-15T06:59:56Z +13849 514 1 11675 1.99 2005-08-17T05:57:54Z 2020-02-15T06:59:56Z +13850 514 2 12067 4.99 2005-08-17T21:36:47Z 2020-02-15T06:59:56Z +13851 514 1 12293 4.99 2005-08-18T05:13:36Z 2020-02-15T06:59:56Z +13852 514 1 12302 4.99 2005-08-18T05:41:39Z 2020-02-15T06:59:56Z +13853 514 2 12578 0.99 2005-08-18T15:47:11Z 2020-02-15T06:59:56Z +13854 514 1 12752 2.99 2005-08-18T22:33:36Z 2020-02-15T06:59:56Z +13855 514 2 13344 3.99 2005-08-19T20:22:44Z 2020-02-15T06:59:56Z +13856 514 1 14052 0.99 2005-08-20T22:11:46Z 2020-02-15T06:59:56Z +13857 514 1 14386 1.99 2005-08-21T10:06:34Z 2020-02-15T06:59:56Z +13858 514 1 15451 2.99 2005-08-23T00:56:27Z 2020-02-15T06:59:56Z +13859 514 1 15776 5.99 2005-08-23T13:26:01Z 2020-02-15T06:59:56Z +13860 515 2 187 8.99 2005-05-26T05:42:37Z 2020-02-15T06:59:56Z +13861 515 2 292 6.99 2005-05-26T20:22:12Z 2020-02-15T06:59:56Z +13862 515 1 1244 4.99 2005-06-15T05:08:40Z 2020-02-15T06:59:56Z +13863 515 2 1531 5.99 2005-06-16T00:40:34Z 2020-02-15T06:59:56Z +13864 515 2 2003 4.99 2005-06-17T11:40:35Z 2020-02-15T06:59:56Z +13865 515 2 2484 4.99 2005-06-18T21:25:23Z 2020-02-15T06:59:56Z +13866 515 2 2513 0.99 2005-06-18T23:53:15Z 2020-02-15T06:59:56Z +13867 515 2 3063 3.99 2005-06-20T13:52:03Z 2020-02-15T06:59:56Z +13868 515 2 3782 0.99 2005-07-06T13:57:03Z 2020-02-15T06:59:56Z +13869 515 2 4111 6.99 2005-07-07T06:47:56Z 2020-02-15T06:59:56Z +13870 515 2 5216 0.99 2005-07-09T11:54:58Z 2020-02-15T06:59:56Z +13871 515 2 5546 2.99 2005-07-10T02:50:37Z 2020-02-15T06:59:56Z +13872 515 2 5697 4.99 2005-07-10T09:44:44Z 2020-02-15T06:59:56Z +13873 515 2 7429 3.99 2005-07-27T17:24:50Z 2020-02-15T06:59:56Z +13874 515 1 8706 4.99 2005-07-29T17:19:15Z 2020-02-15T06:59:56Z +13875 515 1 10159 4.99 2005-07-31T22:54:30Z 2020-02-15T06:59:56Z +13876 515 2 10716 0.99 2005-08-01T18:53:48Z 2020-02-15T06:59:56Z +13877 515 1 11451 3.99 2005-08-02T20:45:56Z 2020-02-15T06:59:56Z +13878 515 2 11572 4.99 2005-08-17T01:37:55Z 2020-02-15T06:59:56Z +13879 515 1 11691 3.99 2005-08-17T06:51:05Z 2020-02-15T06:59:56Z +13880 515 2 11937 6.99 2005-08-17T16:48:36Z 2020-02-15T06:59:56Z +13881 515 2 12416 2.99 2005-08-18T09:56:48Z 2020-02-15T06:59:56Z +13882 515 1 12486 8.99 2005-08-18T12:42:50Z 2020-02-15T06:59:56Z +13883 515 1 12889 5.99 2005-08-19T03:41:31Z 2020-02-15T06:59:56Z +13884 515 2 14072 4.99 2005-08-20T23:07:10Z 2020-02-15T06:59:56Z +13885 515 2 14378 3.99 2005-08-21T09:50:02Z 2020-02-15T06:59:56Z +13886 515 2 14414 0.99 2005-08-21T11:08:17Z 2020-02-15T06:59:56Z +13887 515 2 15274 4.99 2005-08-22T18:55:52Z 2020-02-15T06:59:56Z +13888 516 2 339 3.99 2005-05-27T03:47:18Z 2020-02-15T06:59:56Z +13889 516 1 571 1.99 2005-05-28T10:17:41Z 2020-02-15T06:59:56Z +13890 516 2 1159 4.99 2005-06-14T22:55:13Z 2020-02-15T06:59:56Z +13891 516 1 1200 1.99 2005-06-15T01:59:51Z 2020-02-15T06:59:56Z +13892 516 1 1718 10.99 2005-06-16T14:52:02Z 2020-02-15T06:59:56Z +13893 516 1 2017 0.99 2005-06-17T12:33:30Z 2020-02-15T06:59:56Z +13894 516 2 3068 0.99 2005-06-20T14:02:22Z 2020-02-15T06:59:56Z +13895 516 1 3431 2.99 2005-06-21T18:46:48Z 2020-02-15T06:59:56Z +13896 516 2 5780 3.99 2005-07-10T13:46:23Z 2020-02-15T06:59:56Z +13897 516 2 6677 6.99 2005-07-12T11:58:14Z 2020-02-15T06:59:56Z +13898 516 1 6858 6.99 2005-07-12T19:53:51Z 2020-02-15T06:59:56Z +13899 516 1 7628 4.99 2005-07-28T00:58:04Z 2020-02-15T06:59:56Z +13900 516 1 7882 4.99 2005-07-28T10:33:42Z 2020-02-15T06:59:56Z +13901 516 2 8396 4.99 2005-07-29T06:07:00Z 2020-02-15T06:59:56Z +13902 516 2 8534 5.99 2005-07-29T10:30:13Z 2020-02-15T06:59:56Z +13903 516 2 8585 2.99 2005-07-29T12:14:18Z 2020-02-15T06:59:56Z +13904 516 2 9243 4.99 2005-07-30T14:06:27Z 2020-02-15T06:59:56Z +13905 516 2 11926 0.99 2005-08-17T16:25:02Z 2020-02-15T06:59:56Z +13906 516 2 11939 1.99 2005-08-17T16:55:57Z 2020-02-15T06:59:56Z +13907 516 1 12535 1.99 2005-08-18T14:05:22Z 2020-02-15T06:59:56Z +13908 516 1 13276 8.99 2005-08-19T17:53:42Z 2020-02-15T06:59:56Z +13909 516 1 14932 0.99 2005-08-22T05:40:39Z 2020-02-15T06:59:56Z +13910 516 1 15526 0.99 2005-08-23T03:44:30Z 2020-02-15T06:59:56Z +13911 516 1 15701 0.99 2005-08-23T10:22:21Z 2020-02-15T06:59:56Z +13912 516 1 12130 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +13913 516 1 12915 0 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +13914 517 2 850 4.99 2005-05-30T01:35:12Z 2020-02-15T06:59:56Z +13915 517 2 1653 4.99 2005-06-16T09:34:45Z 2020-02-15T06:59:56Z +13916 517 1 1809 8.99 2005-06-16T21:00:20Z 2020-02-15T06:59:56Z +13917 517 1 1850 4.99 2005-06-17T00:31:35Z 2020-02-15T06:59:56Z +13918 517 2 2534 2.99 2005-06-19T01:38:39Z 2020-02-15T06:59:56Z +13919 517 1 3113 0.99 2005-06-20T17:56:40Z 2020-02-15T06:59:56Z +13920 517 2 4094 2.99 2005-07-07T06:00:21Z 2020-02-15T06:59:56Z +13921 517 1 4109 4.99 2005-07-07T06:39:43Z 2020-02-15T06:59:56Z +13922 517 1 4369 4.99 2005-07-07T20:01:38Z 2020-02-15T06:59:56Z +13923 517 2 4374 4.99 2005-07-07T20:13:58Z 2020-02-15T06:59:56Z +13924 517 2 4934 0.99 2005-07-08T22:18:42Z 2020-02-15T06:59:56Z +13925 517 1 4993 2.99 2005-07-09T00:49:47Z 2020-02-15T06:59:56Z +13926 517 1 5206 7.99 2005-07-09T11:11:01Z 2020-02-15T06:59:56Z +13927 517 2 5974 5.99 2005-07-11T00:10:37Z 2020-02-15T06:59:56Z +13928 517 2 6594 4.99 2005-07-12T07:25:43Z 2020-02-15T06:59:56Z +13929 517 2 6903 0.99 2005-07-12T21:58:15Z 2020-02-15T06:59:56Z +13930 517 2 7988 3.99 2005-07-28T14:37:18Z 2020-02-15T06:59:56Z +13931 517 1 10063 4.99 2005-07-31T19:25:13Z 2020-02-15T06:59:56Z +13932 517 2 10358 4.99 2005-08-01T05:50:07Z 2020-02-15T06:59:56Z +13933 517 2 10433 4.99 2005-08-01T08:45:56Z 2020-02-15T06:59:56Z +13934 517 1 11684 3.99 2005-08-17T06:27:15Z 2020-02-15T06:59:56Z +13935 517 2 12705 0.99 2005-08-18T20:44:14Z 2020-02-15T06:59:56Z +13936 517 1 13396 0.99 2005-08-19T22:06:09Z 2020-02-15T06:59:56Z +13937 517 2 14190 4.99 2005-08-21T03:35:21Z 2020-02-15T06:59:56Z +13938 517 1 15559 5.99 2005-08-23T04:55:05Z 2020-02-15T06:59:56Z +13939 518 1 710 2.99 2005-05-29T03:48:36Z 2020-02-15T06:59:56Z +13940 518 2 1552 5.99 2005-06-16T02:01:37Z 2020-02-15T06:59:56Z +13941 518 2 3311 0.99 2005-06-21T08:05:27Z 2020-02-15T06:59:56Z +13942 518 1 3652 0.99 2005-07-06T07:44:30Z 2020-02-15T06:59:56Z +13943 518 2 4029 7.99 2005-07-07T02:19:44Z 2020-02-15T06:59:56Z +13944 518 2 4661 4.99 2005-07-08T09:55:06Z 2020-02-15T06:59:56Z +13945 518 2 4948 6.99 2005-07-08T22:54:21Z 2020-02-15T06:59:56Z +13946 518 1 6652 2.99 2005-07-12T10:59:38Z 2020-02-15T06:59:56Z +13947 518 1 6957 2.99 2005-07-27T00:00:00Z 2020-02-15T06:59:56Z +13948 518 2 7038 3.99 2005-07-27T03:07:29Z 2020-02-15T06:59:56Z +13949 518 2 7154 4.99 2005-07-27T07:16:17Z 2020-02-15T06:59:56Z +13950 518 2 7382 2.99 2005-07-27T15:43:15Z 2020-02-15T06:59:56Z +13951 518 1 7657 2.99 2005-07-28T02:09:00Z 2020-02-15T06:59:56Z +13952 518 2 7839 6.99 2005-07-28T09:01:13Z 2020-02-15T06:59:56Z +13953 518 1 8107 3.99 2005-07-28T19:03:16Z 2020-02-15T06:59:56Z +13954 518 1 8397 2.99 2005-07-29T06:09:35Z 2020-02-15T06:59:56Z +13955 518 1 10751 5.99 2005-08-01T20:06:10Z 2020-02-15T06:59:56Z +13956 518 2 11433 3.99 2005-08-02T20:13:10Z 2020-02-15T06:59:56Z +13957 518 2 12450 2.99 2005-08-18T11:04:04Z 2020-02-15T06:59:56Z +13958 518 2 12681 2.99 2005-08-18T19:48:06Z 2020-02-15T06:59:56Z +13959 518 1 13065 4.99 2005-08-19T09:48:52Z 2020-02-15T06:59:56Z +13960 518 1 13539 6.99 2005-08-20T03:40:27Z 2020-02-15T06:59:56Z +13961 518 1 14088 6.99 2005-08-20T23:57:24Z 2020-02-15T06:59:56Z +13962 518 1 14149 4.99 2005-08-21T02:22:47Z 2020-02-15T06:59:56Z +13963 518 2 14980 0.99 2005-08-22T07:16:45Z 2020-02-15T06:59:56Z +13964 518 2 15434 4.99 2005-08-23T00:28:16Z 2020-02-15T06:59:56Z +13965 519 1 1056 3.99 2005-05-31T07:48:07Z 2020-02-15T06:59:56Z +13966 519 1 1941 2.99 2005-06-17T07:42:45Z 2020-02-15T06:59:56Z +13967 519 2 2505 8.99 2005-06-18T23:28:27Z 2020-02-15T06:59:56Z +13968 519 2 2997 5.99 2005-06-20T09:23:45Z 2020-02-15T06:59:56Z +13969 519 2 4564 0.99 2005-07-08T05:09:38Z 2020-02-15T06:59:56Z +13970 519 2 4773 2.99 2005-07-08T15:41:39Z 2020-02-15T06:59:56Z +13971 519 2 5236 0.99 2005-07-09T12:56:29Z 2020-02-15T06:59:56Z +13972 519 2 5547 5.99 2005-07-10T02:52:47Z 2020-02-15T06:59:56Z +13973 519 2 6063 0.99 2005-07-11T04:16:51Z 2020-02-15T06:59:56Z +13974 519 1 6599 3.99 2005-07-12T07:41:14Z 2020-02-15T06:59:56Z +13975 519 1 9417 6.99 2005-07-30T20:54:55Z 2020-02-15T06:59:56Z +13976 519 2 9441 4.99 2005-07-30T21:43:28Z 2020-02-15T06:59:56Z +13977 519 2 9534 7.99 2005-07-31T01:18:27Z 2020-02-15T06:59:56Z +13978 519 2 9645 0.99 2005-07-31T05:42:49Z 2020-02-15T06:59:56Z +13979 519 2 9886 7.99 2005-07-31T14:00:13Z 2020-02-15T06:59:56Z +13980 519 1 9905 0.99 2005-07-31T14:37:03Z 2020-02-15T06:59:56Z +13981 519 1 10097 5.99 2005-07-31T20:39:38Z 2020-02-15T06:59:56Z +13982 519 2 10697 4.99 2005-08-01T18:20:23Z 2020-02-15T06:59:56Z +13983 519 2 12648 7.99 2005-08-18T18:30:21Z 2020-02-15T06:59:56Z +13984 519 2 12924 2.99 2005-08-19T04:51:47Z 2020-02-15T06:59:56Z +13985 519 1 13647 7.99 2005-08-20T07:48:07Z 2020-02-15T06:59:56Z +13986 519 1 14182 2.99 2005-08-21T03:17:10Z 2020-02-15T06:59:56Z +13987 519 2 15347 2.99 2005-08-22T21:12:19Z 2020-02-15T06:59:56Z +13988 520 1 962 6.99 2005-05-30T18:45:17Z 2020-02-15T06:59:56Z +13989 520 1 1411 0.99 2005-06-15T17:05:36Z 2020-02-15T06:59:56Z +13990 520 2 2174 6.99 2005-06-18T00:09:01Z 2020-02-15T06:59:56Z +13991 520 1 2772 4.99 2005-06-19T17:59:27Z 2020-02-15T06:59:56Z +13992 520 2 3482 4.99 2005-07-05T23:13:22Z 2020-02-15T06:59:56Z +13993 520 1 3499 7.99 2005-07-06T00:04:20Z 2020-02-15T06:59:56Z +13994 520 2 4346 2.99 2005-07-07T18:58:45Z 2020-02-15T06:59:56Z +13995 520 2 5799 4.99 2005-07-10T14:53:35Z 2020-02-15T06:59:56Z +13996 520 1 5802 10.99 2005-07-10T15:02:17Z 2020-02-15T06:59:56Z +13997 520 1 5853 3.99 2005-07-10T17:45:13Z 2020-02-15T06:59:56Z +13998 520 1 6029 2.99 2005-07-11T02:36:46Z 2020-02-15T06:59:56Z +13999 520 2 7198 5.99 2005-07-27T08:50:07Z 2020-02-15T06:59:56Z +14000 520 1 7720 4.99 2005-07-28T04:41:44Z 2020-02-15T06:59:56Z +14001 520 1 7936 0.99 2005-07-28T12:33:21Z 2020-02-15T06:59:56Z +14002 520 1 8294 2.99 2005-07-29T02:32:41Z 2020-02-15T06:59:56Z +14003 520 2 8435 2.99 2005-07-29T07:20:16Z 2020-02-15T06:59:56Z +14004 520 1 9803 2.99 2005-07-31T11:06:02Z 2020-02-15T06:59:56Z +14005 520 1 10072 0.99 2005-07-31T19:50:37Z 2020-02-15T06:59:56Z +14006 520 2 10530 4.99 2005-08-01T12:01:17Z 2020-02-15T06:59:56Z +14007 520 1 11566 0.99 2005-08-17T01:28:35Z 2020-02-15T06:59:56Z +14008 520 1 12517 4.99 2005-08-18T13:40:20Z 2020-02-15T06:59:56Z +14009 520 1 12628 5.99 2005-08-18T17:40:25Z 2020-02-15T06:59:56Z +14010 520 1 12647 5.99 2005-08-18T18:29:51Z 2020-02-15T06:59:56Z +14011 520 1 13311 0.99 2005-08-19T19:07:09Z 2020-02-15T06:59:56Z +14012 520 2 13438 2.99 2005-08-19T23:38:02Z 2020-02-15T06:59:56Z +14013 520 2 13659 2.99 2005-08-20T08:05:52Z 2020-02-15T06:59:56Z +14014 520 2 13746 5.99 2005-08-20T10:55:28Z 2020-02-15T06:59:56Z +14015 520 1 14372 4.99 2005-08-21T09:39:50Z 2020-02-15T06:59:56Z +14016 520 1 14509 0.99 2005-08-21T14:39:58Z 2020-02-15T06:59:56Z +14017 520 1 15465 0.99 2005-08-23T01:16:33Z 2020-02-15T06:59:56Z +14018 520 2 15492 2.99 2005-08-23T02:13:46Z 2020-02-15T06:59:56Z +14019 520 1 15948 7.99 2005-08-23T18:59:33Z 2020-02-15T06:59:56Z +14020 521 1 1761 0.99 2005-06-16T17:49:57Z 2020-02-15T06:59:56Z +14021 521 2 2053 0.99 2005-06-17T15:19:34Z 2020-02-15T06:59:56Z +14022 521 2 4284 0.99 2005-07-07T15:31:57Z 2020-02-15T06:59:56Z +14023 521 2 4439 2.99 2005-07-07T22:57:30Z 2020-02-15T06:59:56Z +14024 521 1 5276 2.99 2005-07-09T14:35:13Z 2020-02-15T06:59:56Z +14025 521 2 5458 4.99 2005-07-09T22:35:49Z 2020-02-15T06:59:56Z +14026 521 2 5580 6.99 2005-07-10T04:05:49Z 2020-02-15T06:59:56Z +14027 521 2 5686 0.99 2005-07-10T09:06:03Z 2020-02-15T06:59:56Z +14028 521 1 7478 1.99 2005-07-27T19:16:02Z 2020-02-15T06:59:56Z +14029 521 1 9556 7.99 2005-07-31T02:13:30Z 2020-02-15T06:59:56Z +14030 521 2 9937 1.99 2005-07-31T15:28:10Z 2020-02-15T06:59:56Z +14031 521 1 10587 2.99 2005-08-01T14:03:38Z 2020-02-15T06:59:56Z +14032 521 2 11625 2.99 2005-08-17T04:18:52Z 2020-02-15T06:59:56Z +14033 521 1 11967 3.99 2005-08-17T17:45:00Z 2020-02-15T06:59:56Z +14034 521 2 12082 4.99 2005-08-17T22:13:15Z 2020-02-15T06:59:56Z +14035 521 1 12530 4.99 2005-08-18T13:54:48Z 2020-02-15T06:59:56Z +14036 521 1 13527 2.99 2005-08-20T03:00:47Z 2020-02-15T06:59:56Z +14037 521 1 14423 0.99 2005-08-21T11:23:59Z 2020-02-15T06:59:56Z +14038 521 2 14551 3.99 2005-08-21T15:57:25Z 2020-02-15T06:59:56Z +14039 521 2 14738 5.99 2005-08-21T22:29:13Z 2020-02-15T06:59:56Z +14040 521 2 15170 4.99 2005-08-22T15:22:15Z 2020-02-15T06:59:56Z +14041 521 2 15329 2.99 2005-08-22T20:32:39Z 2020-02-15T06:59:56Z +14042 521 2 11672 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14043 522 2 426 5.99 2005-05-27T15:56:57Z 2020-02-15T06:59:56Z +14044 522 1 1289 3.99 2005-06-15T08:44:09Z 2020-02-15T06:59:56Z +14045 522 2 3102 8.99 2005-06-20T16:55:55Z 2020-02-15T06:59:56Z +14046 522 1 3188 2.99 2005-06-20T23:10:27Z 2020-02-15T06:59:56Z +14047 522 2 3191 0.99 2005-06-20T23:46:39Z 2020-02-15T06:59:56Z +14048 522 1 3594 0.99 2005-07-06T04:42:47Z 2020-02-15T06:59:56Z +14049 522 2 4078 4.99 2005-07-07T05:05:05Z 2020-02-15T06:59:56Z +14050 522 2 4563 9.99 2005-07-08T05:08:55Z 2020-02-15T06:59:56Z +14051 522 2 4701 4.99 2005-07-08T11:38:48Z 2020-02-15T06:59:56Z +14052 522 2 5271 6.99 2005-07-09T14:25:01Z 2020-02-15T06:59:56Z +14053 522 2 5514 6.99 2005-07-10T01:09:42Z 2020-02-15T06:59:56Z +14054 522 2 5532 4.99 2005-07-10T02:17:31Z 2020-02-15T06:59:56Z +14055 522 2 5936 0.99 2005-07-10T22:14:30Z 2020-02-15T06:59:56Z +14056 522 2 7262 4.99 2005-07-27T11:15:36Z 2020-02-15T06:59:56Z +14057 522 1 7955 2.99 2005-07-28T13:31:36Z 2020-02-15T06:59:56Z +14058 522 2 8181 4.99 2005-07-28T22:18:38Z 2020-02-15T06:59:56Z +14059 522 1 8642 6.99 2005-07-29T14:38:17Z 2020-02-15T06:59:56Z +14060 522 1 8966 2.99 2005-07-30T03:54:12Z 2020-02-15T06:59:56Z +14061 522 1 9047 7.99 2005-07-30T06:56:33Z 2020-02-15T06:59:56Z +14062 522 2 9227 7.99 2005-07-30T13:36:13Z 2020-02-15T06:59:56Z +14063 522 1 9335 4.99 2005-07-30T18:00:53Z 2020-02-15T06:59:56Z +14064 522 1 9412 5.99 2005-07-30T20:44:10Z 2020-02-15T06:59:56Z +14065 522 2 9533 5.99 2005-07-31T01:18:10Z 2020-02-15T06:59:56Z +14066 522 2 10223 0.99 2005-08-01T01:23:15Z 2020-02-15T06:59:56Z +14067 522 1 10411 3.99 2005-08-01T07:56:32Z 2020-02-15T06:59:56Z +14068 522 1 10675 7.99 2005-08-01T17:11:57Z 2020-02-15T06:59:56Z +14069 522 2 10821 5.99 2005-08-01T22:54:27Z 2020-02-15T06:59:56Z +14070 522 2 11696 2.99 2005-08-17T07:01:09Z 2020-02-15T06:59:56Z +14071 522 2 11830 1.99 2005-08-17T12:53:15Z 2020-02-15T06:59:56Z +14072 522 2 12494 6.99 2005-08-18T12:53:49Z 2020-02-15T06:59:56Z +14073 522 2 13605 6.99 2005-08-20T06:06:17Z 2020-02-15T06:59:56Z +14074 522 2 14467 2.99 2005-08-21T13:03:33Z 2020-02-15T06:59:56Z +14075 522 1 15921 6.99 2005-08-23T18:06:54Z 2020-02-15T06:59:56Z +14076 523 1 42 4.99 2005-05-25T05:24:58Z 2020-02-15T06:59:56Z +14077 523 2 664 0.99 2005-05-28T21:31:08Z 2020-02-15T06:59:56Z +14078 523 2 1729 6.99 2005-06-16T15:29:47Z 2020-02-15T06:59:56Z +14079 523 1 2447 8.99 2005-06-18T19:10:55Z 2020-02-15T06:59:56Z +14080 523 1 2583 7.99 2005-06-19T05:01:40Z 2020-02-15T06:59:56Z +14081 523 2 2669 0.99 2005-06-19T11:28:52Z 2020-02-15T06:59:56Z +14082 523 1 4605 4.99 2005-07-08T07:00:14Z 2020-02-15T06:59:56Z +14083 523 2 5155 2.99 2005-07-09T08:46:54Z 2020-02-15T06:59:56Z +14084 523 1 5287 6.99 2005-07-09T15:11:54Z 2020-02-15T06:59:56Z +14085 523 2 5932 2.99 2005-07-10T22:05:15Z 2020-02-15T06:59:56Z +14086 523 2 6675 4.99 2005-07-12T11:53:06Z 2020-02-15T06:59:56Z +14087 523 2 7642 1.99 2005-07-28T01:16:51Z 2020-02-15T06:59:56Z +14088 523 2 8141 0.99 2005-07-28T20:21:19Z 2020-02-15T06:59:56Z +14089 523 1 8372 5.99 2005-07-29T05:18:08Z 2020-02-15T06:59:56Z +14090 523 1 9071 2.99 2005-07-30T07:40:58Z 2020-02-15T06:59:56Z +14091 523 2 9667 6.99 2005-07-31T06:23:52Z 2020-02-15T06:59:56Z +14092 523 2 10470 1.99 2005-08-01T09:52:26Z 2020-02-15T06:59:56Z +14093 523 1 11827 4.99 2005-08-17T12:44:27Z 2020-02-15T06:59:56Z +14094 523 1 12288 2.99 2005-08-18T05:01:20Z 2020-02-15T06:59:56Z +14095 523 1 13133 2.99 2005-08-19T12:11:03Z 2020-02-15T06:59:56Z +14096 523 1 14766 4.99 2005-08-21T23:42:20Z 2020-02-15T06:59:56Z +14097 523 1 15040 2.99 2005-08-22T09:41:09Z 2020-02-15T06:59:56Z +14098 524 2 118 0.99 2005-05-25T19:31:18Z 2020-02-15T06:59:56Z +14099 524 1 982 4.99 2005-05-30T22:15:24Z 2020-02-15T06:59:56Z +14100 524 1 1306 1.99 2005-06-15T09:59:24Z 2020-02-15T06:59:56Z +14101 524 2 1651 4.99 2005-06-16T09:24:38Z 2020-02-15T06:59:56Z +14102 524 2 3454 2.99 2005-06-21T21:12:13Z 2020-02-15T06:59:56Z +14103 524 1 4366 5.99 2005-07-07T19:48:36Z 2020-02-15T06:59:56Z +14104 524 2 5037 4.99 2005-07-09T02:59:10Z 2020-02-15T06:59:56Z +14105 524 2 6161 4.99 2005-07-11T10:11:54Z 2020-02-15T06:59:56Z +14106 524 1 6240 6.99 2005-07-11T14:32:41Z 2020-02-15T06:59:56Z +14107 524 2 6745 4.99 2005-07-12T14:30:51Z 2020-02-15T06:59:56Z +14108 524 2 7014 8.99 2005-07-27T02:14:40Z 2020-02-15T06:59:56Z +14109 524 1 7040 4.99 2005-07-27T03:17:19Z 2020-02-15T06:59:56Z +14110 524 1 8507 6.99 2005-07-29T09:29:44Z 2020-02-15T06:59:56Z +14111 524 2 13626 2.99 2005-08-20T06:55:24Z 2020-02-15T06:59:56Z +14112 524 2 14046 4.99 2005-08-20T21:53:21Z 2020-02-15T06:59:56Z +14113 524 1 14178 2.99 2005-08-21T03:13:45Z 2020-02-15T06:59:56Z +14114 524 1 14366 2.99 2005-08-21T09:31:39Z 2020-02-15T06:59:56Z +14115 524 2 14680 1.99 2005-08-21T20:19:52Z 2020-02-15T06:59:56Z +14116 524 2 15206 6.99 2005-08-22T16:33:39Z 2020-02-15T06:59:56Z +14117 525 1 437 5.99 2005-05-27T17:47:22Z 2020-02-15T06:59:56Z +14118 525 2 1772 2.99 2005-06-16T18:12:54Z 2020-02-15T06:59:56Z +14119 525 1 3993 6.99 2005-07-06T23:37:06Z 2020-02-15T06:59:56Z +14120 525 1 5841 2.99 2005-07-10T17:11:31Z 2020-02-15T06:59:56Z +14121 525 2 6098 7.99 2005-07-11T06:23:28Z 2020-02-15T06:59:56Z +14122 525 2 6388 6.99 2005-07-11T22:17:16Z 2020-02-15T06:59:56Z +14123 525 1 6689 1.99 2005-07-12T12:22:13Z 2020-02-15T06:59:56Z +14124 525 2 7337 4.99 2005-07-27T14:12:04Z 2020-02-15T06:59:56Z +14125 525 2 7591 4.99 2005-07-27T23:25:54Z 2020-02-15T06:59:56Z +14126 525 1 8007 0.99 2005-07-28T15:22:27Z 2020-02-15T06:59:56Z +14127 525 1 8960 4.99 2005-07-30T03:36:31Z 2020-02-15T06:59:56Z +14128 525 2 9507 5.99 2005-07-31T00:22:29Z 2020-02-15T06:59:56Z +14129 525 1 9702 0.99 2005-07-31T07:34:07Z 2020-02-15T06:59:56Z +14130 525 1 10496 2.99 2005-08-01T10:53:16Z 2020-02-15T06:59:56Z +14131 525 2 11406 2.99 2005-08-02T19:16:10Z 2020-02-15T06:59:56Z +14132 525 1 11660 1.99 2005-08-17T05:22:42Z 2020-02-15T06:59:56Z +14133 525 1 15159 0.99 2005-08-22T14:32:25Z 2020-02-15T06:59:56Z +14134 525 2 15623 3.99 2005-08-23T07:23:29Z 2020-02-15T06:59:56Z +14135 525 1 14954 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14136 526 1 495 4.99 2005-05-28T00:40:48Z 2020-02-15T06:59:56Z +14137 526 2 679 4.99 2005-05-28T23:24:57Z 2020-02-15T06:59:56Z +14138 526 2 1015 2.99 2005-05-31T02:44:57Z 2020-02-15T06:59:56Z +14139 526 1 1255 4.99 2005-06-15T06:13:45Z 2020-02-15T06:59:56Z +14140 526 2 1848 0.99 2005-06-17T00:07:07Z 2020-02-15T06:59:56Z +14141 526 2 1865 7.99 2005-06-17T01:49:36Z 2020-02-15T06:59:56Z +14142 526 2 1972 2.99 2005-06-17T09:25:49Z 2020-02-15T06:59:56Z +14143 526 1 1981 2.99 2005-06-17T10:03:34Z 2020-02-15T06:59:56Z +14144 526 2 2398 4.99 2005-06-18T15:56:53Z 2020-02-15T06:59:56Z +14145 526 1 2828 2.99 2005-06-19T20:51:33Z 2020-02-15T06:59:56Z +14146 526 2 2932 6.99 2005-06-20T04:51:19Z 2020-02-15T06:59:56Z +14147 526 1 3339 6.99 2005-06-21T10:37:11Z 2020-02-15T06:59:56Z +14148 526 1 3619 1.99 2005-07-06T05:59:44Z 2020-02-15T06:59:56Z +14149 526 2 3905 5.99 2005-07-06T19:33:34Z 2020-02-15T06:59:56Z +14150 526 1 4423 6.99 2005-07-07T22:11:28Z 2020-02-15T06:59:56Z +14151 526 2 5056 2.99 2005-07-09T04:13:45Z 2020-02-15T06:59:56Z +14152 526 2 5121 3.99 2005-07-09T07:18:31Z 2020-02-15T06:59:56Z +14153 526 1 6316 7.99 2005-07-11T18:44:52Z 2020-02-15T06:59:56Z +14154 526 1 6404 4.99 2005-07-11T22:49:50Z 2020-02-15T06:59:56Z +14155 526 2 6650 2.99 2005-07-12T10:57:10Z 2020-02-15T06:59:56Z +14156 526 1 6671 3.99 2005-07-12T11:48:48Z 2020-02-15T06:59:56Z +14157 526 2 7270 7.99 2005-07-27T11:29:02Z 2020-02-15T06:59:56Z +14158 526 2 7343 0.99 2005-07-27T14:27:13Z 2020-02-15T06:59:56Z +14159 526 2 7399 1.99 2005-07-27T16:16:02Z 2020-02-15T06:59:56Z +14160 526 2 7543 5.99 2005-07-27T21:44:28Z 2020-02-15T06:59:56Z +14161 526 2 7883 2.99 2005-07-28T10:37:20Z 2020-02-15T06:59:56Z +14162 526 1 8053 4.99 2005-07-28T16:59:41Z 2020-02-15T06:59:56Z +14163 526 1 8232 4.99 2005-07-29T00:14:37Z 2020-02-15T06:59:56Z +14164 526 1 8441 2.99 2005-07-29T07:33:05Z 2020-02-15T06:59:56Z +14165 526 2 9577 6.99 2005-07-31T02:53:33Z 2020-02-15T06:59:56Z +14166 526 2 10020 4.99 2005-07-31T18:21:08Z 2020-02-15T06:59:56Z +14167 526 2 10199 2.99 2005-08-01T00:38:55Z 2020-02-15T06:59:56Z +14168 526 2 11046 4.99 2005-08-02T06:08:34Z 2020-02-15T06:59:56Z +14169 526 1 11503 10.99 2005-08-16T23:10:34Z 2020-02-15T06:59:56Z +14170 526 1 11612 2.99 2005-08-17T03:48:51Z 2020-02-15T06:59:56Z +14171 526 2 11702 4.99 2005-08-17T07:18:56Z 2020-02-15T06:59:56Z +14172 526 1 12607 0.99 2005-08-18T17:03:49Z 2020-02-15T06:59:56Z +14173 526 2 13224 8.99 2005-08-19T15:52:13Z 2020-02-15T06:59:56Z +14174 526 2 13580 0.99 2005-08-20T05:23:34Z 2020-02-15T06:59:56Z +14175 526 1 13617 8.99 2005-08-20T06:35:30Z 2020-02-15T06:59:56Z +14176 526 2 14487 6.99 2005-08-21T13:53:33Z 2020-02-15T06:59:56Z +14177 526 1 14590 7.99 2005-08-21T17:29:10Z 2020-02-15T06:59:56Z +14178 526 1 15168 2.99 2005-08-22T15:14:20Z 2020-02-15T06:59:56Z +14179 526 1 15395 4.99 2005-08-22T23:06:25Z 2020-02-15T06:59:56Z +14180 526 1 16043 9.99 2005-08-23T22:21:03Z 2020-02-15T06:59:56Z +14181 527 1 1398 2.99 2005-06-15T16:28:42Z 2020-02-15T06:59:56Z +14182 527 1 2422 0.99 2005-06-18T17:28:57Z 2020-02-15T06:59:56Z +14183 527 2 2496 0.99 2005-06-18T22:20:11Z 2020-02-15T06:59:56Z +14184 527 1 2539 2.99 2005-06-19T01:58:39Z 2020-02-15T06:59:56Z +14185 527 1 4888 0.99 2005-07-08T20:04:27Z 2020-02-15T06:59:56Z +14186 527 1 5365 0.99 2005-07-09T18:27:00Z 2020-02-15T06:59:56Z +14187 527 2 6003 3.99 2005-07-11T01:28:33Z 2020-02-15T06:59:56Z +14188 527 2 6011 4.99 2005-07-11T01:54:48Z 2020-02-15T06:59:56Z +14189 527 1 6050 2.99 2005-07-11T03:34:29Z 2020-02-15T06:59:56Z +14190 527 2 6975 1.99 2005-07-27T00:39:54Z 2020-02-15T06:59:56Z +14191 527 1 7506 8.99 2005-07-27T20:28:34Z 2020-02-15T06:59:56Z +14192 527 1 8854 0.99 2005-07-29T23:40:07Z 2020-02-15T06:59:56Z +14193 527 2 9750 0.99 2005-07-31T09:19:46Z 2020-02-15T06:59:56Z +14194 527 2 10486 3.99 2005-08-01T10:23:43Z 2020-02-15T06:59:56Z +14195 527 2 10613 0.99 2005-08-01T14:56:14Z 2020-02-15T06:59:56Z +14196 527 1 11013 5.99 2005-08-02T05:10:54Z 2020-02-15T06:59:56Z +14197 527 1 11150 2.99 2005-08-02T09:51:46Z 2020-02-15T06:59:56Z +14198 527 1 11624 0.99 2005-08-17T04:17:42Z 2020-02-15T06:59:56Z +14199 527 1 12136 7.99 2005-08-17T23:51:30Z 2020-02-15T06:59:56Z +14200 527 1 12513 6.99 2005-08-18T13:31:45Z 2020-02-15T06:59:56Z +14201 527 1 14352 6.99 2005-08-21T09:06:29Z 2020-02-15T06:59:56Z +14202 527 1 15144 2.99 2005-08-22T13:49:18Z 2020-02-15T06:59:56Z +14203 527 1 15552 3.99 2005-08-23T04:33:23Z 2020-02-15T06:59:56Z +14204 527 1 14267 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14205 528 1 204 0.99 2005-05-26T07:30:37Z 2020-02-15T06:59:56Z +14206 528 2 472 0.99 2005-05-27T21:36:15Z 2020-02-15T06:59:56Z +14207 528 1 533 5.99 2005-05-28T06:14:46Z 2020-02-15T06:59:56Z +14208 528 2 695 3.99 2005-05-29T01:50:53Z 2020-02-15T06:59:56Z +14209 528 2 793 5.99 2005-05-29T16:44:08Z 2020-02-15T06:59:56Z +14210 528 2 1875 2.99 2005-06-17T02:45:10Z 2020-02-15T06:59:56Z +14211 528 1 2019 4.99 2005-06-17T12:38:44Z 2020-02-15T06:59:56Z +14212 528 2 3654 4.99 2005-07-06T07:45:31Z 2020-02-15T06:59:56Z +14213 528 1 3664 0.99 2005-07-06T08:15:57Z 2020-02-15T06:59:56Z +14214 528 2 4050 9.99 2005-07-07T03:35:33Z 2020-02-15T06:59:56Z +14215 528 1 4593 5.99 2005-07-08T06:38:12Z 2020-02-15T06:59:56Z +14216 528 2 5215 3.99 2005-07-09T11:47:58Z 2020-02-15T06:59:56Z +14217 528 2 6561 0.99 2005-07-12T05:24:02Z 2020-02-15T06:59:56Z +14218 528 1 7569 7.99 2005-07-27T22:38:53Z 2020-02-15T06:59:56Z +14219 528 2 8112 4.99 2005-07-28T19:11:07Z 2020-02-15T06:59:56Z +14220 528 1 8727 3.99 2005-07-29T18:09:57Z 2020-02-15T06:59:56Z +14221 528 2 9488 8.99 2005-07-30T23:42:42Z 2020-02-15T06:59:56Z +14222 528 1 10084 3.99 2005-07-31T20:11:29Z 2020-02-15T06:59:56Z +14223 528 1 10673 0.99 2005-08-01T17:11:51Z 2020-02-15T06:59:56Z +14224 528 1 10880 2.99 2005-08-02T00:34:12Z 2020-02-15T06:59:56Z +14225 528 1 12818 3.99 2005-08-19T01:04:59Z 2020-02-15T06:59:56Z +14226 528 2 13518 2.99 2005-08-20T02:36:17Z 2020-02-15T06:59:56Z +14227 528 1 13600 7.99 2005-08-20T06:00:25Z 2020-02-15T06:59:56Z +14228 528 2 14148 2.99 2005-08-21T02:17:49Z 2020-02-15T06:59:56Z +14229 528 2 15880 6.99 2005-08-23T16:43:54Z 2020-02-15T06:59:56Z +14230 529 1 453 2.99 2005-05-27T19:31:16Z 2020-02-15T06:59:56Z +14231 529 1 1234 1.99 2005-06-15T04:21:52Z 2020-02-15T06:59:56Z +14232 529 2 1686 0.99 2005-06-16T12:08:20Z 2020-02-15T06:59:56Z +14233 529 2 3354 0.99 2005-06-21T11:29:49Z 2020-02-15T06:59:56Z +14234 529 2 4045 0.99 2005-07-07T03:26:14Z 2020-02-15T06:59:56Z +14235 529 2 4254 0.99 2005-07-07T14:13:52Z 2020-02-15T06:59:56Z +14236 529 2 4444 5.99 2005-07-07T23:07:44Z 2020-02-15T06:59:56Z +14237 529 1 4553 0.99 2005-07-08T04:43:41Z 2020-02-15T06:59:56Z +14238 529 1 5993 4.99 2005-07-11T01:06:41Z 2020-02-15T06:59:56Z +14239 529 2 6538 6.99 2005-07-12T04:50:26Z 2020-02-15T06:59:56Z +14240 529 2 6541 5.99 2005-07-12T04:53:41Z 2020-02-15T06:59:56Z +14241 529 1 6908 7.99 2005-07-12T22:08:46Z 2020-02-15T06:59:56Z +14242 529 1 7128 3.99 2005-07-27T06:14:36Z 2020-02-15T06:59:56Z +14243 529 2 8708 2.99 2005-07-29T17:24:13Z 2020-02-15T06:59:56Z +14244 529 1 8979 5.99 2005-07-30T04:20:25Z 2020-02-15T06:59:56Z +14245 529 2 9310 4.99 2005-07-30T16:57:09Z 2020-02-15T06:59:56Z +14246 529 2 9375 0.99 2005-07-30T19:10:17Z 2020-02-15T06:59:56Z +14247 529 2 10361 10.99 2005-08-01T05:53:49Z 2020-02-15T06:59:56Z +14248 529 1 11862 2.99 2005-08-17T13:54:53Z 2020-02-15T06:59:56Z +14249 529 2 12356 2.99 2005-08-18T07:37:05Z 2020-02-15T06:59:56Z +14250 529 1 12622 3.99 2005-08-18T17:34:11Z 2020-02-15T06:59:56Z +14251 529 1 13011 4.99 2005-08-19T07:53:58Z 2020-02-15T06:59:56Z +14252 529 2 13132 3.99 2005-08-19T12:10:57Z 2020-02-15T06:59:56Z +14253 529 1 13797 2.99 2005-08-20T12:33:36Z 2020-02-15T06:59:56Z +14254 529 2 13946 9.99 2005-08-20T17:44:32Z 2020-02-15T06:59:56Z +14255 529 2 14449 4.99 2005-08-21T12:13:18Z 2020-02-15T06:59:56Z +14256 529 2 14764 0.99 2005-08-21T23:37:47Z 2020-02-15T06:59:56Z +14257 529 1 14970 5.99 2005-08-22T06:49:29Z 2020-02-15T06:59:56Z +14258 529 2 15305 2.99 2005-08-22T19:46:05Z 2020-02-15T06:59:56Z +14259 530 1 851 0.99 2005-05-30T01:35:15Z 2020-02-15T06:59:56Z +14260 530 2 1273 1.99 2005-06-15T07:52:35Z 2020-02-15T06:59:56Z +14261 530 1 1516 0.99 2005-06-15T23:11:10Z 2020-02-15T06:59:56Z +14262 530 1 2158 2.99 2005-06-17T23:36:27Z 2020-02-15T06:59:56Z +14263 530 2 3669 2.99 2005-07-06T08:38:29Z 2020-02-15T06:59:56Z +14264 530 2 3887 4.99 2005-07-06T18:46:34Z 2020-02-15T06:59:56Z +14265 530 2 5663 0.99 2005-07-10T08:01:33Z 2020-02-15T06:59:56Z +14266 530 1 7031 3.99 2005-07-27T03:02:07Z 2020-02-15T06:59:56Z +14267 530 2 7075 1.99 2005-07-27T04:11:40Z 2020-02-15T06:59:56Z +14268 530 1 7218 4.99 2005-07-27T09:34:24Z 2020-02-15T06:59:56Z +14269 530 2 8208 4.99 2005-07-28T23:26:35Z 2020-02-15T06:59:56Z +14270 530 1 8736 0.99 2005-07-29T18:31:15Z 2020-02-15T06:59:56Z +14271 530 1 9914 4.99 2005-07-31T14:51:19Z 2020-02-15T06:59:56Z +14272 530 2 10211 3.99 2005-08-01T01:01:16Z 2020-02-15T06:59:56Z +14273 530 2 10504 4.99 2005-08-01T11:10:55Z 2020-02-15T06:59:56Z +14274 530 1 11326 0.99 2005-08-02T16:34:29Z 2020-02-15T06:59:56Z +14275 530 1 12220 4.99 2005-08-18T02:50:02Z 2020-02-15T06:59:56Z +14276 530 1 12387 2.99 2005-08-18T08:46:24Z 2020-02-15T06:59:56Z +14277 530 1 12649 4.99 2005-08-18T18:31:47Z 2020-02-15T06:59:56Z +14278 530 1 13998 5.99 2005-08-20T19:52:38Z 2020-02-15T06:59:56Z +14279 530 2 14707 5.99 2005-08-21T21:06:29Z 2020-02-15T06:59:56Z +14280 530 2 15066 0.99 2005-08-22T10:49:06Z 2020-02-15T06:59:56Z +14281 530 1 13561 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14282 531 1 233 4.99 2005-05-26T11:43:44Z 2020-02-15T06:59:56Z +14283 531 1 681 2.99 2005-05-28T23:39:44Z 2020-02-15T06:59:56Z +14284 531 2 2972 2.99 2005-06-20T07:57:54Z 2020-02-15T06:59:56Z +14285 531 2 3921 5.99 2005-07-06T20:29:48Z 2020-02-15T06:59:56Z +14286 531 1 5587 5.99 2005-07-10T04:17:25Z 2020-02-15T06:59:56Z +14287 531 2 5850 0.99 2005-07-10T17:36:27Z 2020-02-15T06:59:56Z +14288 531 2 5904 4.99 2005-07-10T20:39:44Z 2020-02-15T06:59:56Z +14289 531 1 6756 4.99 2005-07-12T15:08:28Z 2020-02-15T06:59:56Z +14290 531 1 6876 4.99 2005-07-12T20:32:50Z 2020-02-15T06:59:56Z +14291 531 2 7204 2.99 2005-07-27T09:02:31Z 2020-02-15T06:59:56Z +14292 531 1 7391 6.99 2005-07-27T16:00:00Z 2020-02-15T06:59:56Z +14293 531 2 7444 2.99 2005-07-27T17:49:16Z 2020-02-15T06:59:56Z +14294 531 2 7753 6.99 2005-07-28T06:09:19Z 2020-02-15T06:59:56Z +14295 531 2 8359 5.99 2005-07-29T05:02:12Z 2020-02-15T06:59:56Z +14296 531 2 8860 4.99 2005-07-29T23:45:57Z 2020-02-15T06:59:56Z +14297 531 2 8943 0.99 2005-07-30T03:06:48Z 2020-02-15T06:59:56Z +14298 531 2 9107 4.99 2005-07-30T08:52:45Z 2020-02-15T06:59:56Z +14299 531 2 10920 4.99 2005-08-02T02:14:10Z 2020-02-15T06:59:56Z +14300 531 1 10941 5.99 2005-08-02T03:11:33Z 2020-02-15T06:59:56Z +14301 531 2 11026 4.99 2005-08-02T05:46:05Z 2020-02-15T06:59:56Z +14302 531 1 11265 10.99 2005-08-02T14:05:42Z 2020-02-15T06:59:56Z +14303 531 1 11666 2.99 2005-08-17T05:45:10Z 2020-02-15T06:59:56Z +14304 531 1 12923 2.99 2005-08-19T04:50:20Z 2020-02-15T06:59:56Z +14305 531 2 13300 8.99 2005-08-19T18:46:56Z 2020-02-15T06:59:56Z +14306 531 2 15360 0.99 2005-08-22T21:36:51Z 2020-02-15T06:59:56Z +14307 532 1 43 2.99 2005-05-25T05:39:25Z 2020-02-15T06:59:56Z +14308 532 1 1694 4.99 2005-06-16T12:40:23Z 2020-02-15T06:59:56Z +14309 532 2 2821 3.99 2005-06-19T20:26:52Z 2020-02-15T06:59:56Z +14310 532 1 4336 2.99 2005-07-07T18:34:36Z 2020-02-15T06:59:56Z +14311 532 2 4962 4.99 2005-07-08T23:36:13Z 2020-02-15T06:59:56Z +14312 532 2 5190 2.99 2005-07-09T10:25:24Z 2020-02-15T06:59:56Z +14313 532 1 5253 7.99 2005-07-09T13:41:17Z 2020-02-15T06:59:56Z +14314 532 2 5278 4.99 2005-07-09T14:44:23Z 2020-02-15T06:59:56Z +14315 532 2 5805 8.99 2005-07-10T15:08:41Z 2020-02-15T06:59:56Z +14316 532 1 5887 2.99 2005-07-10T19:45:47Z 2020-02-15T06:59:56Z +14317 532 2 6345 7.99 2005-07-11T20:05:18Z 2020-02-15T06:59:56Z +14318 532 2 6598 4.99 2005-07-12T07:38:25Z 2020-02-15T06:59:56Z +14319 532 1 6730 3.99 2005-07-12T13:58:25Z 2020-02-15T06:59:56Z +14320 532 1 7192 4.99 2005-07-27T08:36:55Z 2020-02-15T06:59:56Z +14321 532 2 7572 2.99 2005-07-27T22:44:29Z 2020-02-15T06:59:56Z +14322 532 1 8273 5.99 2005-07-29T01:33:16Z 2020-02-15T06:59:56Z +14323 532 1 9843 2.99 2005-07-31T12:25:28Z 2020-02-15T06:59:56Z +14324 532 2 10286 6.99 2005-08-01T03:35:58Z 2020-02-15T06:59:56Z +14325 532 2 10712 5.99 2005-08-01T18:47:56Z 2020-02-15T06:59:56Z +14326 532 1 10945 5.99 2005-08-02T03:20:23Z 2020-02-15T06:59:56Z +14327 532 2 11251 2.99 2005-08-02T13:40:49Z 2020-02-15T06:59:56Z +14328 532 2 11318 4.99 2005-08-02T16:09:11Z 2020-02-15T06:59:56Z +14329 532 2 12061 3.99 2005-08-17T21:13:35Z 2020-02-15T06:59:56Z +14330 532 2 12295 5.99 2005-08-18T05:15:46Z 2020-02-15T06:59:56Z +14331 532 2 13038 4.99 2005-08-19T08:55:16Z 2020-02-15T06:59:56Z +14332 532 1 13192 8.99 2005-08-19T14:30:06Z 2020-02-15T06:59:56Z +14333 532 1 13254 4.99 2005-08-19T16:54:01Z 2020-02-15T06:59:56Z +14334 532 1 13908 4.99 2005-08-20T16:21:40Z 2020-02-15T06:59:56Z +14335 532 2 15180 0.99 2005-08-22T15:42:57Z 2020-02-15T06:59:56Z +14336 532 2 15414 1.99 2005-08-22T23:43:54Z 2020-02-15T06:59:56Z +14337 532 1 16014 5.99 2005-08-23T21:18:31Z 2020-02-15T06:59:56Z +14338 532 1 14616 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14339 533 1 173 0.99 2005-05-26T03:42:10Z 2020-02-15T06:59:56Z +14340 533 2 190 1.99 2005-05-26T06:11:28Z 2020-02-15T06:59:56Z +14341 533 1 615 5.99 2005-05-28T15:35:52Z 2020-02-15T06:59:56Z +14342 533 1 1421 5.99 2005-06-15T17:57:04Z 2020-02-15T06:59:56Z +14343 533 1 1652 0.99 2005-06-16T09:31:37Z 2020-02-15T06:59:56Z +14344 533 1 1859 0.99 2005-06-17T01:13:38Z 2020-02-15T06:59:56Z +14345 533 1 1954 2.99 2005-06-17T08:37:55Z 2020-02-15T06:59:56Z +14346 533 2 2770 6.99 2005-06-19T17:54:22Z 2020-02-15T06:59:56Z +14347 533 1 2956 0.99 2005-06-20T06:47:23Z 2020-02-15T06:59:56Z +14348 533 1 4112 8.99 2005-07-07T06:49:09Z 2020-02-15T06:59:56Z +14349 533 1 4788 4.99 2005-07-08T16:17:35Z 2020-02-15T06:59:56Z +14350 533 2 6781 2.99 2005-07-12T16:21:47Z 2020-02-15T06:59:56Z +14351 533 2 6834 0.99 2005-07-12T18:53:37Z 2020-02-15T06:59:56Z +14352 533 2 6837 9.99 2005-07-12T18:59:45Z 2020-02-15T06:59:56Z +14353 533 2 7555 4.99 2005-07-27T22:17:05Z 2020-02-15T06:59:56Z +14354 533 1 8093 8.99 2005-07-28T18:29:16Z 2020-02-15T06:59:56Z +14355 533 2 8104 2.99 2005-07-28T18:59:36Z 2020-02-15T06:59:56Z +14356 533 2 8250 2.99 2005-07-29T00:49:15Z 2020-02-15T06:59:56Z +14357 533 1 8471 2.99 2005-07-29T08:32:11Z 2020-02-15T06:59:56Z +14358 533 1 8676 1.99 2005-07-29T15:59:06Z 2020-02-15T06:59:56Z +14359 533 2 8786 1.99 2005-07-29T20:39:49Z 2020-02-15T06:59:56Z +14360 533 2 10090 3.99 2005-07-31T20:22:01Z 2020-02-15T06:59:56Z +14361 533 1 10380 2.99 2005-08-01T06:34:36Z 2020-02-15T06:59:56Z +14362 533 1 10614 6.99 2005-08-01T14:57:00Z 2020-02-15T06:59:56Z +14363 533 2 11524 7.99 2005-08-17T00:10:55Z 2020-02-15T06:59:56Z +14364 533 1 11758 8.99 2005-08-17T09:33:02Z 2020-02-15T06:59:56Z +14365 533 1 11918 2.99 2005-08-17T16:08:42Z 2020-02-15T06:59:56Z +14366 533 1 12602 0.99 2005-08-18T16:49:50Z 2020-02-15T06:59:56Z +14367 533 1 12655 6.99 2005-08-18T18:57:44Z 2020-02-15T06:59:56Z +14368 533 1 14263 7.99 2005-08-21T06:08:15Z 2020-02-15T06:59:56Z +14369 533 1 14800 4.99 2005-08-22T00:46:18Z 2020-02-15T06:59:56Z +14370 533 2 16006 0.99 2005-08-23T21:01:09Z 2020-02-15T06:59:56Z +14371 533 2 14018 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14372 534 2 304 5.99 2005-05-26T21:21:28Z 2020-02-15T06:59:56Z +14373 534 2 940 0.99 2005-05-30T15:01:02Z 2020-02-15T06:59:56Z +14374 534 1 1610 4.99 2005-06-16T06:36:33Z 2020-02-15T06:59:56Z +14375 534 1 1673 2.99 2005-06-16T10:40:17Z 2020-02-15T06:59:56Z +14376 534 1 2436 0.99 2005-06-18T18:13:32Z 2020-02-15T06:59:56Z +14377 534 2 3213 1.99 2005-06-21T01:05:19Z 2020-02-15T06:59:56Z +14378 534 1 3216 4.99 2005-06-21T01:19:37Z 2020-02-15T06:59:56Z +14379 534 1 3735 2.99 2005-07-06T11:42:04Z 2020-02-15T06:59:56Z +14380 534 2 4998 4.99 2005-07-09T01:07:21Z 2020-02-15T06:59:56Z +14381 534 2 7113 2.99 2005-07-27T05:41:20Z 2020-02-15T06:59:56Z +14382 534 1 7662 2.99 2005-07-28T02:16:08Z 2020-02-15T06:59:56Z +14383 534 2 8633 0.99 2005-07-29T14:19:53Z 2020-02-15T06:59:56Z +14384 534 1 9456 5.99 2005-07-30T22:22:16Z 2020-02-15T06:59:56Z +14385 534 2 9464 4.99 2005-07-30T22:31:31Z 2020-02-15T06:59:56Z +14386 534 2 10465 5.99 2005-08-01T09:45:25Z 2020-02-15T06:59:56Z +14387 534 2 10725 6.99 2005-08-01T19:11:04Z 2020-02-15T06:59:56Z +14388 534 1 10796 0.99 2005-08-01T21:56:41Z 2020-02-15T06:59:56Z +14389 534 2 11180 5.99 2005-08-02T10:54:30Z 2020-02-15T06:59:56Z +14390 534 2 12305 2.99 2005-08-18T05:46:29Z 2020-02-15T06:59:56Z +14391 534 1 12691 5.99 2005-08-18T20:07:46Z 2020-02-15T06:59:56Z +14392 534 2 12798 4.99 2005-08-19T00:24:33Z 2020-02-15T06:59:56Z +14393 534 2 13294 0.99 2005-08-19T18:36:35Z 2020-02-15T06:59:56Z +14394 534 2 14816 1.99 2005-08-22T01:15:51Z 2020-02-15T06:59:56Z +14395 534 1 14526 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14396 535 1 37 0.99 2005-05-25T04:44:31Z 2020-02-15T06:59:56Z +14397 535 2 541 2.99 2005-05-28T06:41:58Z 2020-02-15T06:59:56Z +14398 535 1 778 3.99 2005-05-29T14:09:53Z 2020-02-15T06:59:56Z +14399 535 2 959 4.99 2005-05-30T18:07:00Z 2020-02-15T06:59:56Z +14400 535 1 1712 4.99 2005-06-16T14:25:09Z 2020-02-15T06:59:56Z +14401 535 1 3228 4.99 2005-06-21T02:20:24Z 2020-02-15T06:59:56Z +14402 535 1 4331 4.99 2005-07-07T18:22:30Z 2020-02-15T06:59:56Z +14403 535 1 4718 6.99 2005-07-08T12:32:08Z 2020-02-15T06:59:56Z +14404 535 1 4743 2.99 2005-07-08T13:42:36Z 2020-02-15T06:59:56Z +14405 535 2 4914 6.99 2005-07-08T21:30:53Z 2020-02-15T06:59:56Z +14406 535 1 5588 0.99 2005-07-10T04:21:10Z 2020-02-15T06:59:56Z +14407 535 2 5890 8.99 2005-07-10T20:00:25Z 2020-02-15T06:59:56Z +14408 535 1 6504 2.99 2005-07-12T03:19:14Z 2020-02-15T06:59:56Z +14409 535 1 8395 2.99 2005-07-29T06:03:30Z 2020-02-15T06:59:56Z +14410 535 1 8645 4.99 2005-07-29T14:47:45Z 2020-02-15T06:59:56Z +14411 535 2 9440 0.99 2005-07-30T21:40:15Z 2020-02-15T06:59:56Z +14412 535 1 9524 4.99 2005-07-31T01:01:06Z 2020-02-15T06:59:56Z +14413 535 2 10322 5.99 2005-08-01T04:44:13Z 2020-02-15T06:59:56Z +14414 535 2 10353 3.99 2005-08-01T05:46:33Z 2020-02-15T06:59:56Z +14415 535 2 11736 8.99 2005-08-17T08:40:55Z 2020-02-15T06:59:56Z +14416 535 1 11855 7.99 2005-08-17T13:43:07Z 2020-02-15T06:59:56Z +14417 535 2 12168 2.99 2005-08-18T01:03:52Z 2020-02-15T06:59:56Z +14418 535 1 12233 0.99 2005-08-18T03:16:54Z 2020-02-15T06:59:56Z +14419 535 2 12673 4.99 2005-08-18T19:21:56Z 2020-02-15T06:59:56Z +14420 535 1 12732 0.99 2005-08-18T21:57:50Z 2020-02-15T06:59:56Z +14421 535 2 12750 1.99 2005-08-18T22:32:39Z 2020-02-15T06:59:56Z +14422 535 1 13631 4.99 2005-08-20T07:07:37Z 2020-02-15T06:59:56Z +14423 535 1 13852 0.99 2005-08-20T14:45:23Z 2020-02-15T06:59:56Z +14424 535 1 14522 4.99 2005-08-21T15:01:34Z 2020-02-15T06:59:56Z +14425 535 2 15075 5.99 2005-08-22T11:04:52Z 2020-02-15T06:59:56Z +14426 535 1 15287 6.99 2005-08-22T19:19:37Z 2020-02-15T06:59:56Z +14427 535 1 16017 0.99 2005-08-23T21:27:11Z 2020-02-15T06:59:56Z +14428 536 1 237 0.99 2005-05-26T12:15:13Z 2020-02-15T06:59:56Z +14429 536 1 929 6.99 2005-05-30T12:32:39Z 2020-02-15T06:59:56Z +14430 536 1 1582 4.99 2005-06-16T04:31:57Z 2020-02-15T06:59:56Z +14431 536 2 1962 2.99 2005-06-17T09:08:58Z 2020-02-15T06:59:56Z +14432 536 2 2403 2.99 2005-06-18T16:33:22Z 2020-02-15T06:59:56Z +14433 536 1 3483 4.99 2005-07-05T23:13:51Z 2020-02-15T06:59:56Z +14434 536 1 3514 0.99 2005-07-06T00:46:54Z 2020-02-15T06:59:56Z +14435 536 1 4448 2.99 2005-07-07T23:17:12Z 2020-02-15T06:59:56Z +14436 536 2 5196 0.99 2005-07-09T10:43:34Z 2020-02-15T06:59:56Z +14437 536 1 6400 5.99 2005-07-11T22:43:44Z 2020-02-15T06:59:56Z +14438 536 1 7065 4.99 2005-07-27T03:53:43Z 2020-02-15T06:59:56Z +14439 536 2 8535 4.99 2005-07-29T10:32:33Z 2020-02-15T06:59:56Z +14440 536 1 8679 4.99 2005-07-29T16:07:47Z 2020-02-15T06:59:56Z +14441 536 1 8958 2.99 2005-07-30T03:34:26Z 2020-02-15T06:59:56Z +14442 536 1 9411 8.99 2005-07-30T20:38:22Z 2020-02-15T06:59:56Z +14443 536 1 9727 4.99 2005-07-31T08:39:13Z 2020-02-15T06:59:56Z +14444 536 2 10019 3.99 2005-07-31T18:20:56Z 2020-02-15T06:59:56Z +14445 536 1 11473 6.99 2005-08-02T21:52:03Z 2020-02-15T06:59:56Z +14446 536 1 11826 2.99 2005-08-17T12:43:46Z 2020-02-15T06:59:56Z +14447 536 2 11977 4.99 2005-08-17T18:01:15Z 2020-02-15T06:59:56Z +14448 536 2 12052 8.99 2005-08-17T20:57:02Z 2020-02-15T06:59:56Z +14449 536 2 13505 4.99 2005-08-20T02:05:57Z 2020-02-15T06:59:56Z +14450 536 1 15130 7.99 2005-08-22T13:04:32Z 2020-02-15T06:59:56Z +14451 536 1 15978 8.99 2005-08-23T20:08:18Z 2020-02-15T06:59:56Z +14452 536 1 15979 0.99 2005-08-23T20:08:26Z 2020-02-15T06:59:56Z +14453 537 2 603 4.99 2005-05-28T14:27:51Z 2020-02-15T06:59:56Z +14454 537 1 1445 2.99 2005-06-15T19:10:07Z 2020-02-15T06:59:56Z +14455 537 2 2184 2.99 2005-06-18T01:10:36Z 2020-02-15T06:59:56Z +14456 537 1 2586 8.99 2005-06-19T05:05:11Z 2020-02-15T06:59:56Z +14457 537 2 3134 8.99 2005-06-20T19:29:09Z 2020-02-15T06:59:56Z +14458 537 1 3555 0.99 2005-07-06T02:45:35Z 2020-02-15T06:59:56Z +14459 537 2 3853 0.99 2005-07-06T16:59:20Z 2020-02-15T06:59:56Z +14460 537 1 5630 2.99 2005-07-10T06:08:14Z 2020-02-15T06:59:56Z +14461 537 2 5877 5.99 2005-07-10T19:08:51Z 2020-02-15T06:59:56Z +14462 537 2 6310 2.99 2005-07-11T18:14:05Z 2020-02-15T06:59:56Z +14463 537 1 6409 4.99 2005-07-11T23:05:49Z 2020-02-15T06:59:56Z +14464 537 1 6746 0.99 2005-07-12T14:33:01Z 2020-02-15T06:59:56Z +14465 537 1 7179 2.99 2005-07-27T08:10:29Z 2020-02-15T06:59:56Z +14466 537 2 7810 4.99 2005-07-28T08:00:38Z 2020-02-15T06:59:56Z +14467 537 2 8126 4.99 2005-07-28T19:32:41Z 2020-02-15T06:59:56Z +14468 537 2 8256 4.99 2005-07-29T01:02:42Z 2020-02-15T06:59:56Z +14469 537 1 9967 2.99 2005-07-31T16:31:17Z 2020-02-15T06:59:56Z +14470 537 2 12984 4.99 2005-08-19T07:06:51Z 2020-02-15T06:59:56Z +14471 537 2 13885 4.99 2005-08-20T15:32:09Z 2020-02-15T06:59:56Z +14472 537 1 14010 4.99 2005-08-20T20:29:46Z 2020-02-15T06:59:56Z +14473 537 2 14506 0.99 2005-08-21T14:32:27Z 2020-02-15T06:59:56Z +14474 537 1 14670 0.99 2005-08-21T19:54:11Z 2020-02-15T06:59:56Z +14475 537 1 15149 2.99 2005-08-22T14:08:06Z 2020-02-15T06:59:56Z +14476 537 1 15832 8.99 2005-08-23T15:21:35Z 2020-02-15T06:59:56Z +14477 537 1 13419 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14478 538 2 594 2.99 2005-05-28T13:41:56Z 2020-02-15T06:59:56Z +14479 538 2 734 4.99 2005-05-29T07:38:52Z 2020-02-15T06:59:56Z +14480 538 1 1314 5.99 2005-06-15T10:21:45Z 2020-02-15T06:59:56Z +14481 538 1 1912 4.99 2005-06-17T05:18:32Z 2020-02-15T06:59:56Z +14482 538 1 2682 4.99 2005-06-19T12:18:17Z 2020-02-15T06:59:56Z +14483 538 2 3189 2.99 2005-06-20T23:19:33Z 2020-02-15T06:59:56Z +14484 538 2 3554 4.99 2005-07-06T02:37:10Z 2020-02-15T06:59:56Z +14485 538 2 5135 8.99 2005-07-09T07:53:22Z 2020-02-15T06:59:56Z +14486 538 1 5369 4.99 2005-07-09T18:42:16Z 2020-02-15T06:59:56Z +14487 538 1 5486 2.99 2005-07-09T23:57:44Z 2020-02-15T06:59:56Z +14488 538 1 5898 2.99 2005-07-10T20:18:09Z 2020-02-15T06:59:56Z +14489 538 2 6130 2.99 2005-07-11T08:19:56Z 2020-02-15T06:59:56Z +14490 538 1 6332 0.99 2005-07-11T19:19:06Z 2020-02-15T06:59:56Z +14491 538 2 6936 0.99 2005-07-26T23:13:34Z 2020-02-15T06:59:56Z +14492 538 1 7694 0.99 2005-07-28T03:39:25Z 2020-02-15T06:59:56Z +14493 538 1 8765 0.99 2005-07-29T19:40:08Z 2020-02-15T06:59:56Z +14494 538 1 9307 0.99 2005-07-30T16:52:43Z 2020-02-15T06:59:56Z +14495 538 1 9643 4.99 2005-07-31T05:35:48Z 2020-02-15T06:59:56Z +14496 538 2 9897 4.99 2005-07-31T14:11:57Z 2020-02-15T06:59:56Z +14497 538 2 9939 8.99 2005-07-31T15:29:00Z 2020-02-15T06:59:56Z +14498 538 2 10701 3.99 2005-08-01T18:28:17Z 2020-02-15T06:59:56Z +14499 538 1 10732 5.99 2005-08-01T19:25:18Z 2020-02-15T06:59:56Z +14500 538 1 10962 4.99 2005-08-02T03:48:13Z 2020-02-15T06:59:56Z +14501 538 2 12089 5.99 2005-08-17T22:20:29Z 2020-02-15T06:59:56Z +14502 538 1 13544 1.99 2005-08-20T03:44:26Z 2020-02-15T06:59:56Z +14503 538 2 13770 4.99 2005-08-20T11:45:54Z 2020-02-15T06:59:56Z +14504 538 2 14572 2.99 2005-08-21T16:44:31Z 2020-02-15T06:59:56Z +14505 538 1 14591 0.99 2005-08-21T17:30:09Z 2020-02-15T06:59:56Z +14506 538 1 15343 6.99 2005-08-22T21:01:25Z 2020-02-15T06:59:56Z +14507 539 2 250 4.99 2005-05-26T14:30:24Z 2020-02-15T06:59:56Z +14508 539 1 342 0.99 2005-05-27T04:11:04Z 2020-02-15T06:59:56Z +14509 539 2 1282 3.99 2005-06-15T08:25:33Z 2020-02-15T06:59:56Z +14510 539 1 1327 0.99 2005-06-15T11:11:39Z 2020-02-15T06:59:56Z +14511 539 2 1444 4.99 2005-06-15T19:08:16Z 2020-02-15T06:59:56Z +14512 539 1 4035 2.99 2005-07-07T02:45:02Z 2020-02-15T06:59:56Z +14513 539 1 4247 0.99 2005-07-07T13:51:54Z 2020-02-15T06:59:56Z +14514 539 2 5086 4.99 2005-07-09T05:40:04Z 2020-02-15T06:59:56Z +14515 539 2 5139 7.99 2005-07-09T08:01:51Z 2020-02-15T06:59:56Z +14516 539 2 5493 2.99 2005-07-10T00:11:44Z 2020-02-15T06:59:56Z +14517 539 2 6874 5.99 2005-07-12T20:20:53Z 2020-02-15T06:59:56Z +14518 539 1 7781 2.99 2005-07-28T07:13:20Z 2020-02-15T06:59:56Z +14519 539 2 8247 6.99 2005-07-29T00:41:38Z 2020-02-15T06:59:56Z +14520 539 2 8761 5.99 2005-07-29T19:26:47Z 2020-02-15T06:59:56Z +14521 539 2 9250 0.99 2005-07-30T14:18:16Z 2020-02-15T06:59:56Z +14522 539 1 9777 7.99 2005-07-31T10:01:06Z 2020-02-15T06:59:56Z +14523 539 1 9796 4.99 2005-07-31T10:52:43Z 2020-02-15T06:59:56Z +14524 539 2 10922 3.99 2005-08-02T02:14:40Z 2020-02-15T06:59:56Z +14525 539 1 12848 2.99 2005-08-19T02:05:11Z 2020-02-15T06:59:56Z +14526 539 2 13615 2.99 2005-08-20T06:28:53Z 2020-02-15T06:59:56Z +14527 539 2 13778 5.99 2005-08-20T12:03:44Z 2020-02-15T06:59:56Z +14528 539 1 15356 2.99 2005-08-22T21:24:19Z 2020-02-15T06:59:56Z +14529 540 2 1263 2.99 2005-06-15T06:56:39Z 2020-02-15T06:59:56Z +14530 540 2 1290 4.99 2005-06-15T08:52:44Z 2020-02-15T06:59:56Z +14531 540 2 2640 2.99 2005-06-19T09:26:13Z 2020-02-15T06:59:56Z +14532 540 1 2953 3.99 2005-06-20T06:39:11Z 2020-02-15T06:59:56Z +14533 540 1 3340 3.99 2005-06-21T10:37:23Z 2020-02-15T06:59:56Z +14534 540 2 4628 4.99 2005-07-08T08:25:52Z 2020-02-15T06:59:56Z +14535 540 2 4991 4.99 2005-07-09T00:49:03Z 2020-02-15T06:59:56Z +14536 540 1 6103 2.99 2005-07-11T06:59:55Z 2020-02-15T06:59:56Z +14537 540 2 6145 7.99 2005-07-11T09:07:01Z 2020-02-15T06:59:56Z +14538 540 2 6182 2.99 2005-07-11T11:11:38Z 2020-02-15T06:59:56Z +14539 540 1 6748 6.99 2005-07-12T14:39:27Z 2020-02-15T06:59:56Z +14540 540 1 6919 0.99 2005-07-12T22:32:17Z 2020-02-15T06:59:56Z +14541 540 2 9762 4.99 2005-07-31T09:32:54Z 2020-02-15T06:59:56Z +14542 540 2 9815 2.99 2005-07-31T11:30:51Z 2020-02-15T06:59:56Z +14543 540 1 10924 8.99 2005-08-02T02:20:19Z 2020-02-15T06:59:56Z +14544 540 1 11198 3.99 2005-08-02T11:45:15Z 2020-02-15T06:59:56Z +14545 540 2 11324 4.99 2005-08-02T16:31:17Z 2020-02-15T06:59:56Z +14546 540 2 11432 6.99 2005-08-02T20:10:01Z 2020-02-15T06:59:56Z +14547 540 2 12058 8.99 2005-08-17T21:07:41Z 2020-02-15T06:59:56Z +14548 540 2 12201 4.99 2005-08-18T02:14:06Z 2020-02-15T06:59:56Z +14549 540 1 12300 6.99 2005-08-18T05:36:14Z 2020-02-15T06:59:56Z +14550 540 2 14910 0.99 2005-08-22T04:50:52Z 2020-02-15T06:59:56Z +14551 540 2 15079 2.99 2005-08-22T11:09:56Z 2020-02-15T06:59:56Z +14552 540 2 15953 3.99 2005-08-23T19:13:46Z 2020-02-15T06:59:56Z +14553 541 1 1021 7.99 2005-05-31T03:16:15Z 2020-02-15T06:59:56Z +14554 541 1 1066 4.99 2005-05-31T09:07:33Z 2020-02-15T06:59:56Z +14555 541 2 1986 2.99 2005-06-17T10:34:59Z 2020-02-15T06:59:56Z +14556 541 1 2708 6.99 2005-06-19T13:59:05Z 2020-02-15T06:59:56Z +14557 541 1 5018 2.99 2005-07-09T02:01:05Z 2020-02-15T06:59:56Z +14558 541 2 5197 4.99 2005-07-09T10:43:54Z 2020-02-15T06:59:56Z +14559 541 2 6468 7.99 2005-07-12T01:27:09Z 2020-02-15T06:59:56Z +14560 541 2 6718 2.99 2005-07-12T13:38:06Z 2020-02-15T06:59:56Z +14561 541 1 8113 8.99 2005-07-28T19:14:00Z 2020-02-15T06:59:56Z +14562 541 1 8322 4.99 2005-07-29T03:52:49Z 2020-02-15T06:59:56Z +14563 541 2 9603 0.99 2005-07-31T03:43:43Z 2020-02-15T06:59:56Z +14564 541 1 10306 5.99 2005-08-01T04:19:18Z 2020-02-15T06:59:56Z +14565 541 2 11273 0.99 2005-08-02T14:20:55Z 2020-02-15T06:59:56Z +14566 541 1 12306 4.99 2005-08-18T05:47:55Z 2020-02-15T06:59:56Z +14567 541 2 12395 4.99 2005-08-18T09:06:30Z 2020-02-15T06:59:56Z +14568 541 1 12894 7.99 2005-08-19T03:49:28Z 2020-02-15T06:59:56Z +14569 541 2 13239 4.99 2005-08-19T16:22:13Z 2020-02-15T06:59:56Z +14570 541 2 13640 0.99 2005-08-20T07:22:53Z 2020-02-15T06:59:56Z +14571 541 2 14938 6.99 2005-08-22T05:52:39Z 2020-02-15T06:59:56Z +14572 541 1 15071 4.99 2005-08-22T10:58:43Z 2020-02-15T06:59:56Z +14573 541 2 15141 3.99 2005-08-22T13:41:49Z 2020-02-15T06:59:56Z +14574 541 1 15223 1.99 2005-08-22T17:13:39Z 2020-02-15T06:59:56Z +14575 541 1 15421 0.99 2005-08-22T23:56:37Z 2020-02-15T06:59:56Z +14576 541 2 15924 1.99 2005-08-23T18:08:59Z 2020-02-15T06:59:56Z +14577 542 1 220 4.99 2005-05-26T10:06:49Z 2020-02-15T06:59:56Z +14578 542 2 376 4.99 2005-05-27T08:58:15Z 2020-02-15T06:59:56Z +14579 542 1 2610 4.99 2005-06-19T07:16:20Z 2020-02-15T06:59:56Z +14580 542 2 2957 10.99 2005-06-20T06:53:47Z 2020-02-15T06:59:56Z +14581 542 2 5293 0.99 2005-07-09T15:17:23Z 2020-02-15T06:59:56Z +14582 542 1 5477 6.99 2005-07-09T23:43:49Z 2020-02-15T06:59:56Z +14583 542 2 6077 5.99 2005-07-11T05:06:08Z 2020-02-15T06:59:56Z +14584 542 2 6325 5.99 2005-07-11T19:06:01Z 2020-02-15T06:59:56Z +14585 542 1 6887 9.99 2005-07-12T21:00:23Z 2020-02-15T06:59:56Z +14586 542 2 7672 8.99 2005-07-28T02:49:41Z 2020-02-15T06:59:56Z +14587 542 1 8533 4.99 2005-07-29T10:29:16Z 2020-02-15T06:59:56Z +14588 542 2 8544 3.99 2005-07-29T11:02:08Z 2020-02-15T06:59:56Z +14589 542 1 10280 4.99 2005-08-01T03:27:15Z 2020-02-15T06:59:56Z +14590 542 2 11583 0.99 2005-08-17T02:08:13Z 2020-02-15T06:59:56Z +14591 542 2 11903 2.99 2005-08-17T15:37:45Z 2020-02-15T06:59:56Z +14592 542 1 12819 0.99 2005-08-19T01:05:05Z 2020-02-15T06:59:56Z +14593 542 1 13447 0.99 2005-08-20T00:09:36Z 2020-02-15T06:59:56Z +14594 542 2 14982 9.99 2005-08-22T07:20:55Z 2020-02-15T06:59:56Z +14595 543 1 243 6.99 2005-05-26T13:06:05Z 2020-02-15T06:59:56Z +14596 543 2 476 1.99 2005-05-27T22:31:36Z 2020-02-15T06:59:56Z +14597 543 2 1720 4.99 2005-06-16T15:00:14Z 2020-02-15T06:59:56Z +14598 543 1 2426 2.99 2005-06-18T17:40:44Z 2020-02-15T06:59:56Z +14599 543 2 3070 4.99 2005-06-20T14:15:39Z 2020-02-15T06:59:56Z +14600 543 1 3128 2.99 2005-06-20T18:41:47Z 2020-02-15T06:59:56Z +14601 543 2 3467 5.99 2005-06-21T22:19:25Z 2020-02-15T06:59:56Z +14602 543 1 4887 2.99 2005-07-08T19:59:14Z 2020-02-15T06:59:56Z +14603 543 2 5467 4.99 2005-07-09T23:05:47Z 2020-02-15T06:59:56Z +14604 543 2 6013 4.99 2005-07-11T02:02:03Z 2020-02-15T06:59:56Z +14605 543 2 7312 2.99 2005-07-27T13:03:14Z 2020-02-15T06:59:56Z +14606 543 1 8580 2.99 2005-07-29T12:00:27Z 2020-02-15T06:59:56Z +14607 543 2 8845 4.99 2005-07-29T23:06:13Z 2020-02-15T06:59:56Z +14608 543 1 9505 2.99 2005-07-31T00:11:19Z 2020-02-15T06:59:56Z +14609 543 1 9999 0.99 2005-07-31T17:40:53Z 2020-02-15T06:59:56Z +14610 543 2 10257 0.99 2005-08-01T02:49:43Z 2020-02-15T06:59:56Z +14611 543 1 10520 4.99 2005-08-01T11:45:58Z 2020-02-15T06:59:56Z +14612 543 2 11241 9.99 2005-08-02T13:29:24Z 2020-02-15T06:59:56Z +14613 543 1 11681 2.99 2005-08-17T06:13:30Z 2020-02-15T06:59:56Z +14614 543 1 13187 0.99 2005-08-19T14:24:48Z 2020-02-15T06:59:56Z +14615 543 2 15281 1.99 2005-08-22T19:10:26Z 2020-02-15T06:59:56Z +14616 543 1 15785 1.99 2005-08-23T13:46:27Z 2020-02-15T06:59:56Z +14617 544 1 397 2.99 2005-05-27T12:29:02Z 2020-02-15T06:59:56Z +14618 544 1 864 2.99 2005-05-30T03:27:17Z 2020-02-15T06:59:56Z +14619 544 1 1248 1.99 2005-06-15T05:33:52Z 2020-02-15T06:59:56Z +14620 544 2 1434 10.99 2005-06-15T18:30:46Z 2020-02-15T06:59:56Z +14621 544 1 2373 0.99 2005-06-18T14:37:57Z 2020-02-15T06:59:56Z +14622 544 1 2395 2.99 2005-06-18T15:45:15Z 2020-02-15T06:59:56Z +14623 544 1 4395 0.99 2005-07-07T21:13:22Z 2020-02-15T06:59:56Z +14624 544 1 4703 2.99 2005-07-08T11:44:56Z 2020-02-15T06:59:56Z +14625 544 2 4847 6.99 2005-07-08T18:29:13Z 2020-02-15T06:59:56Z +14626 544 2 8566 2.99 2005-07-29T11:35:46Z 2020-02-15T06:59:56Z +14627 544 1 8937 5.99 2005-07-30T02:53:21Z 2020-02-15T06:59:56Z +14628 544 1 8963 9.99 2005-07-30T03:46:26Z 2020-02-15T06:59:56Z +14629 544 1 10735 0.99 2005-08-01T19:29:45Z 2020-02-15T06:59:56Z +14630 544 1 11401 3.99 2005-08-02T19:05:06Z 2020-02-15T06:59:56Z +14631 544 2 11766 2.99 2005-08-17T09:58:40Z 2020-02-15T06:59:56Z +14632 544 2 12640 3.99 2005-08-18T18:14:49Z 2020-02-15T06:59:56Z +14633 544 2 14142 4.99 2005-08-21T02:07:43Z 2020-02-15T06:59:56Z +14634 544 1 14498 4.99 2005-08-21T14:10:44Z 2020-02-15T06:59:56Z +14635 544 2 14651 8.99 2005-08-21T19:31:09Z 2020-02-15T06:59:56Z +14636 544 1 14981 2.99 2005-08-22T07:19:05Z 2020-02-15T06:59:56Z +14637 544 1 15219 6.99 2005-08-22T17:00:31Z 2020-02-15T06:59:56Z +14638 544 1 15605 4.99 2005-08-23T06:48:47Z 2020-02-15T06:59:56Z +14639 545 2 248 0.99 2005-05-26T14:07:58Z 2020-02-15T06:59:56Z +14640 545 2 715 3.99 2005-05-29T04:22:41Z 2020-02-15T06:59:56Z +14641 545 1 2123 2.99 2005-06-17T20:48:30Z 2020-02-15T06:59:56Z +14642 545 2 3693 8.99 2005-07-06T09:56:09Z 2020-02-15T06:59:56Z +14643 545 1 3975 5.99 2005-07-06T23:00:09Z 2020-02-15T06:59:56Z +14644 545 1 4597 5.99 2005-07-08T06:43:42Z 2020-02-15T06:59:56Z +14645 545 1 5264 0.99 2005-07-09T14:11:28Z 2020-02-15T06:59:56Z +14646 545 1 7078 5.99 2005-07-27T04:16:37Z 2020-02-15T06:59:56Z +14647 545 2 8599 3.99 2005-07-29T12:58:52Z 2020-02-15T06:59:56Z +14648 545 2 8848 2.99 2005-07-29T23:20:58Z 2020-02-15T06:59:56Z +14649 545 2 9810 2.99 2005-07-31T11:22:41Z 2020-02-15T06:59:56Z +14650 545 2 9942 4.99 2005-07-31T15:35:43Z 2020-02-15T06:59:56Z +14651 545 2 10931 2.99 2005-08-02T02:44:59Z 2020-02-15T06:59:56Z +14652 545 2 11760 2.99 2005-08-17T09:44:22Z 2020-02-15T06:59:56Z +14653 545 1 12098 4.99 2005-08-17T22:38:31Z 2020-02-15T06:59:56Z +14654 545 1 12349 2.99 2005-08-18T07:23:42Z 2020-02-15T06:59:56Z +14655 545 2 12667 10.99 2005-08-18T19:11:45Z 2020-02-15T06:59:56Z +14656 545 1 12800 2.99 2005-08-19T00:27:11Z 2020-02-15T06:59:56Z +14657 545 1 13595 4.99 2005-08-20T05:54:27Z 2020-02-15T06:59:56Z +14658 545 1 15585 0.99 2005-08-23T05:55:22Z 2020-02-15T06:59:56Z +14659 545 2 15998 4.99 2005-08-23T20:41:09Z 2020-02-15T06:59:56Z +14660 546 1 197 5.99 2005-05-26T06:59:21Z 2020-02-15T06:59:56Z +14661 546 1 482 6.99 2005-05-27T22:53:02Z 2020-02-15T06:59:56Z +14662 546 1 1181 1.99 2005-06-15T00:42:17Z 2020-02-15T06:59:56Z +14663 546 2 1403 0.99 2005-06-15T16:31:59Z 2020-02-15T06:59:56Z +14664 546 1 1787 3.99 2005-06-16T19:30:59Z 2020-02-15T06:59:56Z +14665 546 1 2361 5.99 2005-06-18T13:19:05Z 2020-02-15T06:59:56Z +14666 546 1 3738 4.99 2005-07-06T11:50:57Z 2020-02-15T06:59:56Z +14667 546 2 4664 0.99 2005-07-08T10:01:28Z 2020-02-15T06:59:56Z +14668 546 1 4734 0.99 2005-07-08T13:12:12Z 2020-02-15T06:59:56Z +14669 546 1 5629 0.99 2005-07-10T06:02:25Z 2020-02-15T06:59:56Z +14670 546 2 6758 9.99 2005-07-12T15:13:49Z 2020-02-15T06:59:56Z +14671 546 1 6786 2.99 2005-07-12T16:32:33Z 2020-02-15T06:59:56Z +14672 546 2 6910 6.99 2005-07-12T22:11:21Z 2020-02-15T06:59:56Z +14673 546 1 8532 4.99 2005-07-29T10:26:56Z 2020-02-15T06:59:56Z +14674 546 1 9087 4.99 2005-07-30T08:19:47Z 2020-02-15T06:59:56Z +14675 546 1 3.99 2005-07-30T21:16:20Z 2020-02-15T06:59:56Z +14676 546 2 9626 1.99 2005-07-31T04:37:41Z 2020-02-15T06:59:56Z +14677 546 2 10370 0.99 2005-08-01T06:18:04Z 2020-02-15T06:59:56Z +14678 546 2 11352 5.99 2005-08-02T17:29:39Z 2020-02-15T06:59:56Z +14679 546 1 11797 4.99 2005-08-17T11:17:21Z 2020-02-15T06:59:56Z +14680 546 2 12591 2.99 2005-08-18T16:16:41Z 2020-02-15T06:59:56Z +14681 546 2 13850 5.99 2005-08-20T14:43:03Z 2020-02-15T06:59:56Z +14682 546 1 14797 4.99 2005-08-22T00:41:24Z 2020-02-15T06:59:56Z +14683 546 1 14829 2.99 2005-08-22T01:35:37Z 2020-02-15T06:59:56Z +14684 546 1 14929 3.99 2005-08-22T05:32:38Z 2020-02-15T06:59:56Z +14685 546 2 15565 4.99 2005-08-23T05:13:09Z 2020-02-15T06:59:56Z +14686 547 1 306 0.99 2005-05-26T21:31:57Z 2020-02-15T06:59:56Z +14687 547 2 443 8.99 2005-05-27T18:35:20Z 2020-02-15T06:59:56Z +14688 547 2 1094 1.99 2005-05-31T13:03:49Z 2020-02-15T06:59:56Z +14689 547 2 2022 8.99 2005-06-17T12:44:39Z 2020-02-15T06:59:56Z +14690 547 2 3679 4.99 2005-07-06T09:15:57Z 2020-02-15T06:59:56Z +14691 547 1 3765 4.99 2005-07-06T13:01:47Z 2020-02-15T06:59:56Z +14692 547 2 5327 4.99 2005-07-09T16:39:49Z 2020-02-15T06:59:56Z +14693 547 2 5854 4.99 2005-07-10T17:47:34Z 2020-02-15T06:59:56Z +14694 547 1 6605 0.99 2005-07-12T08:01:07Z 2020-02-15T06:59:56Z +14695 547 2 7420 4.99 2005-07-27T17:09:39Z 2020-02-15T06:59:56Z +14696 547 2 7547 3.99 2005-07-27T21:51:48Z 2020-02-15T06:59:56Z +14697 547 1 7835 4.99 2005-07-28T08:49:39Z 2020-02-15T06:59:56Z +14698 547 1 7859 3.99 2005-07-28T09:57:17Z 2020-02-15T06:59:56Z +14699 547 1 8828 2.99 2005-07-29T22:32:54Z 2020-02-15T06:59:56Z +14700 547 1 10903 2.99 2005-08-02T01:41:59Z 2020-02-15T06:59:56Z +14701 547 1 10980 4.99 2005-08-02T04:17:32Z 2020-02-15T06:59:56Z +14702 547 2 11170 5.99 2005-08-02T10:21:53Z 2020-02-15T06:59:56Z +14703 547 2 11361 0.99 2005-08-02T17:46:34Z 2020-02-15T06:59:56Z +14704 547 1 12579 0.99 2005-08-18T15:47:49Z 2020-02-15T06:59:56Z +14705 547 2 12943 2.99 2005-08-19T05:46:26Z 2020-02-15T06:59:56Z +14706 547 2 13307 2.99 2005-08-19T18:58:44Z 2020-02-15T06:59:56Z +14707 547 1 14510 9.99 2005-08-21T14:44:41Z 2020-02-15T06:59:56Z +14708 547 2 14884 4.99 2005-08-22T03:57:08Z 2020-02-15T06:59:56Z +14709 548 2 177 6.99 2005-05-26T04:14:29Z 2020-02-15T06:59:56Z +14710 548 1 743 4.99 2005-05-29T08:39:02Z 2020-02-15T06:59:56Z +14711 548 2 872 3.99 2005-05-30T05:03:04Z 2020-02-15T06:59:56Z +14712 548 1 1326 1.99 2005-06-15T11:07:39Z 2020-02-15T06:59:56Z +14713 548 1 2280 2.99 2005-06-18T06:46:54Z 2020-02-15T06:59:56Z +14714 548 2 2978 0.99 2005-06-20T08:25:16Z 2020-02-15T06:59:56Z +14715 548 1 3686 2.99 2005-07-06T09:37:50Z 2020-02-15T06:59:56Z +14716 548 2 3777 2.99 2005-07-06T13:36:48Z 2020-02-15T06:59:56Z +14717 548 1 4155 7.99 2005-07-07T09:00:49Z 2020-02-15T06:59:56Z +14718 548 2 5138 4.99 2005-07-09T08:00:46Z 2020-02-15T06:59:56Z +14719 548 2 6490 4.99 2005-07-12T02:28:03Z 2020-02-15T06:59:56Z +14720 548 1 9614 5.99 2005-07-31T03:59:31Z 2020-02-15T06:59:56Z +14721 548 2 10318 0.99 2005-08-01T04:36:53Z 2020-02-15T06:59:56Z +14722 548 1 12860 5.99 2005-08-19T02:24:41Z 2020-02-15T06:59:56Z +14723 548 1 13691 3.99 2005-08-20T09:07:39Z 2020-02-15T06:59:56Z +14724 548 2 13730 7.99 2005-08-20T10:17:09Z 2020-02-15T06:59:56Z +14725 548 2 14188 0.99 2005-08-21T03:32:04Z 2020-02-15T06:59:56Z +14726 548 2 14723 6.99 2005-08-21T21:52:32Z 2020-02-15T06:59:56Z +14727 548 1 13584 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14728 549 1 6 0.99 2005-05-24T23:08:07Z 2020-02-15T06:59:56Z +14729 549 2 852 4.99 2005-05-30T01:36:57Z 2020-02-15T06:59:56Z +14730 549 1 906 3.99 2005-05-30T10:30:38Z 2020-02-15T06:59:56Z +14731 549 2 1086 4.99 2005-05-31T11:17:37Z 2020-02-15T06:59:56Z +14732 549 1 2050 2.99 2005-06-17T15:07:30Z 2020-02-15T06:59:56Z +14733 549 2 3523 2.99 2005-07-06T01:01:38Z 2020-02-15T06:59:56Z +14734 549 2 3892 4.99 2005-07-06T18:58:58Z 2020-02-15T06:59:56Z +14735 549 1 4447 0.99 2005-07-07T23:15:28Z 2020-02-15T06:59:56Z +14736 549 1 7252 7.99 2005-07-27T10:45:28Z 2020-02-15T06:59:56Z +14737 549 2 8239 0.99 2005-07-29T00:31:39Z 2020-02-15T06:59:56Z +14738 549 1 8316 4.99 2005-07-29T03:38:49Z 2020-02-15T06:59:56Z +14739 549 2 9445 7.99 2005-07-30T21:50:42Z 2020-02-15T06:59:56Z +14740 549 2 9511 9.99 2005-07-31T00:25:05Z 2020-02-15T06:59:56Z +14741 549 2 9887 0.99 2005-07-31T14:00:32Z 2020-02-15T06:59:56Z +14742 549 2 10281 0.99 2005-08-01T03:28:33Z 2020-02-15T06:59:56Z +14743 549 2 11737 4.99 2005-08-17T08:42:08Z 2020-02-15T06:59:56Z +14744 549 2 11878 2.99 2005-08-17T14:23:52Z 2020-02-15T06:59:56Z +14745 549 2 12634 2.99 2005-08-18T17:58:14Z 2020-02-15T06:59:56Z +14746 549 2 12747 4.99 2005-08-18T22:28:22Z 2020-02-15T06:59:56Z +14747 549 1 14434 0.99 2005-08-21T11:40:46Z 2020-02-15T06:59:56Z +14748 550 2 922 7.99 2005-05-30T11:55:55Z 2020-02-15T06:59:56Z +14749 550 1 1233 6.99 2005-06-15T04:18:37Z 2020-02-15T06:59:56Z +14750 550 1 1863 3.99 2005-06-17T01:31:46Z 2020-02-15T06:59:56Z +14751 550 2 1883 4.99 2005-06-17T03:18:51Z 2020-02-15T06:59:56Z +14752 550 1 3154 2.99 2005-06-20T20:44:40Z 2020-02-15T06:59:56Z +14753 550 2 3236 9.99 2005-06-21T02:47:43Z 2020-02-15T06:59:56Z +14754 550 1 3272 10.99 2005-06-21T05:18:27Z 2020-02-15T06:59:56Z +14755 550 1 3979 4.99 2005-07-06T23:04:35Z 2020-02-15T06:59:56Z +14756 550 1 5727 4.99 2005-07-10T11:25:28Z 2020-02-15T06:59:56Z +14757 550 1 6695 2.99 2005-07-12T12:39:39Z 2020-02-15T06:59:56Z +14758 550 1 7030 0.99 2005-07-27T03:01:40Z 2020-02-15T06:59:56Z +14759 550 2 7838 2.99 2005-07-28T09:00:21Z 2020-02-15T06:59:56Z +14760 550 1 8628 6.99 2005-07-29T14:06:24Z 2020-02-15T06:59:56Z +14761 550 2 8838 2.99 2005-07-29T22:52:23Z 2020-02-15T06:59:56Z +14762 550 1 8959 8.99 2005-07-30T03:35:49Z 2020-02-15T06:59:56Z +14763 550 1 9616 2.99 2005-07-31T04:05:01Z 2020-02-15T06:59:56Z +14764 550 1 9748 0.99 2005-07-31T09:17:56Z 2020-02-15T06:59:56Z +14765 550 2 10140 4.99 2005-07-31T22:03:20Z 2020-02-15T06:59:56Z +14766 550 1 11246 2.99 2005-08-02T13:33:56Z 2020-02-15T06:59:56Z +14767 550 2 11320 0.99 2005-08-02T16:13:28Z 2020-02-15T06:59:56Z +14768 550 1 11969 4.99 2005-08-17T17:49:37Z 2020-02-15T06:59:56Z +14769 550 1 12063 2.99 2005-08-17T21:24:48Z 2020-02-15T06:59:56Z +14770 550 2 12077 4.99 2005-08-17T21:59:14Z 2020-02-15T06:59:56Z +14771 550 1 13114 10.99 2005-08-19T11:27:32Z 2020-02-15T06:59:56Z +14772 550 2 14071 2.99 2005-08-20T23:01:56Z 2020-02-15T06:59:56Z +14773 550 2 14127 4.99 2005-08-21T01:33:32Z 2020-02-15T06:59:56Z +14774 550 2 14375 6.99 2005-08-21T09:46:35Z 2020-02-15T06:59:56Z +14775 550 1 14687 4.99 2005-08-21T20:32:16Z 2020-02-15T06:59:56Z +14776 550 2 15431 9.99 2005-08-23T00:26:47Z 2020-02-15T06:59:56Z +14777 550 1 15883 0.99 2005-08-23T16:44:56Z 2020-02-15T06:59:56Z +14778 550 2 15977 4.99 2005-08-23T20:07:10Z 2020-02-15T06:59:56Z +14779 550 2 11757 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14780 551 2 155 7.99 2005-05-26T01:15:05Z 2020-02-15T06:59:56Z +14781 551 1 728 2.99 2005-05-29T06:12:38Z 2020-02-15T06:59:56Z +14782 551 1 795 0.99 2005-05-29T16:57:39Z 2020-02-15T06:59:56Z +14783 551 2 969 4.99 2005-05-30T19:23:48Z 2020-02-15T06:59:56Z +14784 551 2 1005 3.99 2005-05-31T00:53:25Z 2020-02-15T06:59:56Z +14785 551 2 2069 4.99 2005-06-17T16:19:39Z 2020-02-15T06:59:56Z +14786 551 1 2776 3.99 2005-06-19T18:16:24Z 2020-02-15T06:59:56Z +14787 551 2 3996 5.99 2005-07-06T23:46:43Z 2020-02-15T06:59:56Z +14788 551 1 5201 1.99 2005-07-09T10:52:53Z 2020-02-15T06:59:56Z +14789 551 2 5528 0.99 2005-07-10T02:09:21Z 2020-02-15T06:59:56Z +14790 551 1 6041 0.99 2005-07-11T03:14:58Z 2020-02-15T06:59:56Z +14791 551 2 7095 9.99 2005-07-27T04:51:15Z 2020-02-15T06:59:56Z +14792 551 1 8986 0.99 2005-07-30T04:37:20Z 2020-02-15T06:59:56Z +14793 551 1 9287 2.99 2005-07-30T15:35:39Z 2020-02-15T06:59:56Z +14794 551 2 9765 4.99 2005-07-31T09:44:40Z 2020-02-15T06:59:56Z +14795 551 2 11380 0.99 2005-08-02T18:17:32Z 2020-02-15T06:59:56Z +14796 551 2 11883 2.99 2005-08-17T14:41:28Z 2020-02-15T06:59:56Z +14797 551 2 12208 4.99 2005-08-18T02:25:25Z 2020-02-15T06:59:56Z +14798 551 2 12868 0.99 2005-08-19T02:47:19Z 2020-02-15T06:59:56Z +14799 551 1 13439 3.99 2005-08-19T23:42:16Z 2020-02-15T06:59:56Z +14800 551 1 14420 0.99 2005-08-21T11:16:15Z 2020-02-15T06:59:56Z +14801 551 2 14609 4.99 2005-08-21T17:57:26Z 2020-02-15T06:59:56Z +14802 551 2 14633 2.99 2005-08-21T18:51:10Z 2020-02-15T06:59:56Z +14803 551 1 14833 2.99 2005-08-22T01:45:18Z 2020-02-15T06:59:56Z +14804 551 1 15377 4.99 2005-08-22T22:22:33Z 2020-02-15T06:59:56Z +14805 551 2 15390 6.99 2005-08-22T22:57:25Z 2020-02-15T06:59:56Z +14806 552 2 174 0.99 2005-05-26T03:44:10Z 2020-02-15T06:59:56Z +14807 552 2 2320 0.99 2005-06-18T09:24:50Z 2020-02-15T06:59:56Z +14808 552 2 3397 4.99 2005-06-21T15:30:11Z 2020-02-15T06:59:56Z +14809 552 1 4477 6.99 2005-07-08T00:38:24Z 2020-02-15T06:59:56Z +14810 552 1 5213 7.99 2005-07-09T11:39:43Z 2020-02-15T06:59:56Z +14811 552 2 6189 4.99 2005-07-11T11:36:03Z 2020-02-15T06:59:56Z +14812 552 1 7772 2.99 2005-07-28T06:59:09Z 2020-02-15T06:59:56Z +14813 552 1 8085 2.99 2005-07-28T18:13:15Z 2020-02-15T06:59:56Z +14814 552 2 8192 2.99 2005-07-28T22:49:11Z 2020-02-15T06:59:56Z +14815 552 2 8614 5.99 2005-07-29T13:32:05Z 2020-02-15T06:59:56Z +14816 552 2 8894 4.99 2005-07-30T00:48:31Z 2020-02-15T06:59:56Z +14817 552 1 9342 8.99 2005-07-30T18:09:56Z 2020-02-15T06:59:56Z +14818 552 1 11146 1.99 2005-08-02T09:45:32Z 2020-02-15T06:59:56Z +14819 552 2 11205 4.99 2005-08-02T11:56:54Z 2020-02-15T06:59:56Z +14820 552 2 11300 7.99 2005-08-02T15:37:42Z 2020-02-15T06:59:56Z +14821 552 2 12433 4.99 2005-08-18T10:37:49Z 2020-02-15T06:59:56Z +14822 552 2 12880 2.99 2005-08-19T03:27:17Z 2020-02-15T06:59:56Z +14823 552 2 13574 2.99 2005-08-20T05:10:39Z 2020-02-15T06:59:56Z +14824 552 1 13693 0.99 2005-08-20T09:11:42Z 2020-02-15T06:59:56Z +14825 552 2 14724 4.99 2005-08-21T21:53:47Z 2020-02-15T06:59:56Z +14826 552 2 15700 2.99 2005-08-23T10:21:21Z 2020-02-15T06:59:56Z +14827 553 2 789 4.99 2005-05-29T16:17:07Z 2020-02-15T06:59:56Z +14828 553 2 1862 3.99 2005-06-17T01:29:30Z 2020-02-15T06:59:56Z +14829 553 1 2460 8.99 2005-06-18T19:54:13Z 2020-02-15T06:59:56Z +14830 553 2 3103 6.99 2005-06-20T16:58:19Z 2020-02-15T06:59:56Z +14831 553 1 3495 6.99 2005-07-05T23:50:04Z 2020-02-15T06:59:56Z +14832 553 2 3793 4.99 2005-07-06T14:32:44Z 2020-02-15T06:59:56Z +14833 553 2 3859 2.99 2005-07-06T17:18:15Z 2020-02-15T06:59:56Z +14834 553 1 3890 4.99 2005-07-06T18:58:15Z 2020-02-15T06:59:56Z +14835 553 2 3891 4.99 2005-07-06T18:58:25Z 2020-02-15T06:59:56Z +14836 553 2 3942 4.99 2005-07-06T21:21:34Z 2020-02-15T06:59:56Z +14837 553 1 4257 4.99 2005-07-07T14:18:41Z 2020-02-15T06:59:56Z +14838 553 2 4662 0.99 2005-07-08T09:58:54Z 2020-02-15T06:59:56Z +14839 553 2 4845 4.99 2005-07-08T18:28:20Z 2020-02-15T06:59:56Z +14840 553 2 4941 3.99 2005-07-08T22:39:10Z 2020-02-15T06:59:56Z +14841 553 1 6069 2.99 2005-07-11T04:44:59Z 2020-02-15T06:59:56Z +14842 553 2 6657 0.99 2005-07-12T11:11:36Z 2020-02-15T06:59:56Z +14843 553 1 6812 6.99 2005-07-12T18:03:25Z 2020-02-15T06:59:56Z +14844 553 1 7890 4.99 2005-07-28T10:43:40Z 2020-02-15T06:59:56Z +14845 553 2 9272 4.99 2005-07-30T15:05:22Z 2020-02-15T06:59:56Z +14846 553 2 9601 2.99 2005-07-31T03:42:17Z 2020-02-15T06:59:56Z +14847 553 2 11710 4.99 2005-08-17T07:29:44Z 2020-02-15T06:59:56Z +14848 553 1 13972 2.99 2005-08-20T18:52:17Z 2020-02-15T06:59:56Z +14849 553 1 15042 4.99 2005-08-22T09:47:37Z 2020-02-15T06:59:56Z +14850 553 1 15506 0.99 2005-08-23T02:48:24Z 2020-02-15T06:59:56Z +14851 554 1 607 2.99 2005-05-28T15:02:41Z 2020-02-15T06:59:56Z +14852 554 1 817 2.99 2005-05-29T20:39:14Z 2020-02-15T06:59:56Z +14853 554 1 1959 4.99 2005-06-17T08:54:10Z 2020-02-15T06:59:56Z +14854 554 1 2279 6.99 2005-06-18T06:38:22Z 2020-02-15T06:59:56Z +14855 554 2 3278 2.99 2005-06-21T05:41:30Z 2020-02-15T06:59:56Z +14856 554 1 3312 6.99 2005-06-21T08:05:32Z 2020-02-15T06:59:56Z +14857 554 2 4902 4.99 2005-07-08T20:49:30Z 2020-02-15T06:59:56Z +14858 554 1 5527 2.99 2005-07-10T02:06:01Z 2020-02-15T06:59:56Z +14859 554 1 5968 5.99 2005-07-11T00:03:11Z 2020-02-15T06:59:56Z +14860 554 1 6144 2.99 2005-07-11T09:02:53Z 2020-02-15T06:59:56Z +14861 554 1 10612 6.99 2005-08-01T14:55:31Z 2020-02-15T06:59:56Z +14862 554 2 10829 7.99 2005-08-01T23:17:06Z 2020-02-15T06:59:56Z +14863 554 2 11589 9.99 2005-08-17T02:28:22Z 2020-02-15T06:59:56Z +14864 554 1 11873 0.99 2005-08-17T14:14:39Z 2020-02-15T06:59:56Z +14865 554 1 12010 8.99 2005-08-17T19:17:54Z 2020-02-15T06:59:56Z +14866 554 1 12014 0.99 2005-08-17T19:29:44Z 2020-02-15T06:59:56Z +14867 554 2 13139 4.99 2005-08-19T12:32:10Z 2020-02-15T06:59:56Z +14868 554 2 14015 2.99 2005-08-20T20:47:43Z 2020-02-15T06:59:56Z +14869 554 1 14098 3.99 2005-08-21T00:30:32Z 2020-02-15T06:59:56Z +14870 554 1 14469 0.99 2005-08-21T13:07:24Z 2020-02-15T06:59:56Z +14871 554 1 14626 2.99 2005-08-21T18:35:44Z 2020-02-15T06:59:56Z +14872 554 2 15690 4.99 2005-08-23T09:53:30Z 2020-02-15T06:59:56Z +14873 555 2 3232 1.99 2005-06-21T02:30:37Z 2020-02-15T06:59:56Z +14874 555 2 4875 2.99 2005-07-08T19:24:17Z 2020-02-15T06:59:56Z +14875 555 1 8161 0.99 2005-07-28T21:11:00Z 2020-02-15T06:59:56Z +14876 555 1 8245 3.99 2005-07-29T00:37:09Z 2020-02-15T06:59:56Z +14877 555 1 9299 5.99 2005-07-30T16:32:51Z 2020-02-15T06:59:56Z +14878 555 2 9990 7.99 2005-07-31T17:24:21Z 2020-02-15T06:59:56Z +14879 555 2 10076 7.99 2005-07-31T20:00:34Z 2020-02-15T06:59:56Z +14880 555 1 10921 3.99 2005-08-02T02:14:33Z 2020-02-15T06:59:56Z +14881 555 1 11168 4.99 2005-08-02T10:19:42Z 2020-02-15T06:59:56Z +14882 555 1 11718 4.99 2005-08-17T07:44:42Z 2020-02-15T06:59:56Z +14883 555 2 11747 2.99 2005-08-17T09:03:31Z 2020-02-15T06:59:56Z +14884 555 2 12091 4.99 2005-08-17T22:22:50Z 2020-02-15T06:59:56Z +14885 555 2 12150 2.99 2005-08-18T00:13:55Z 2020-02-15T06:59:56Z +14886 555 2 12182 2.99 2005-08-18T01:30:19Z 2020-02-15T06:59:56Z +14887 555 1 12388 2.99 2005-08-18T08:48:09Z 2020-02-15T06:59:56Z +14888 555 1 12883 4.99 2005-08-19T03:33:47Z 2020-02-15T06:59:56Z +14889 555 2 15102 6.99 2005-08-22T11:58:58Z 2020-02-15T06:59:56Z +14890 556 1 184 0.99 2005-05-26T05:29:49Z 2020-02-15T06:59:56Z +14891 556 2 772 5.99 2005-05-29T13:08:06Z 2020-02-15T06:59:56Z +14892 556 1 1083 3.99 2005-05-31T11:04:48Z 2020-02-15T06:59:56Z +14893 556 1 2092 6.99 2005-06-17T18:12:16Z 2020-02-15T06:59:56Z +14894 556 2 2593 5.99 2005-06-19T05:40:11Z 2020-02-15T06:59:56Z +14895 556 2 2986 0.99 2005-06-20T08:50:28Z 2020-02-15T06:59:56Z +14896 556 1 3093 4.99 2005-06-20T16:06:14Z 2020-02-15T06:59:56Z +14897 556 2 3438 6.99 2005-06-21T19:31:40Z 2020-02-15T06:59:56Z +14898 556 2 4719 2.99 2005-07-08T12:33:00Z 2020-02-15T06:59:56Z +14899 556 2 4839 3.99 2005-07-08T18:13:10Z 2020-02-15T06:59:56Z +14900 556 1 4846 0.99 2005-07-08T18:29:05Z 2020-02-15T06:59:56Z +14901 556 2 5722 0.99 2005-07-10T11:10:04Z 2020-02-15T06:59:56Z +14902 556 2 6484 2.99 2005-07-12T02:04:10Z 2020-02-15T06:59:56Z +14903 556 1 8909 5.99 2005-07-30T01:28:03Z 2020-02-15T06:59:56Z +14904 556 2 10106 4.99 2005-07-31T21:00:47Z 2020-02-15T06:59:56Z +14905 556 2 10518 6.99 2005-08-01T11:44:08Z 2020-02-15T06:59:56Z +14906 556 1 11466 1.99 2005-08-02T21:46:46Z 2020-02-15T06:59:56Z +14907 556 2 11804 3.99 2005-08-17T11:42:45Z 2020-02-15T06:59:56Z +14908 556 1 12045 4.99 2005-08-17T20:40:46Z 2020-02-15T06:59:56Z +14909 556 1 14176 2.99 2005-08-21T03:09:23Z 2020-02-15T06:59:56Z +14910 556 1 15568 2.99 2005-08-23T05:24:09Z 2020-02-15T06:59:56Z +14911 557 2 467 4.99 2005-05-27T21:10:03Z 2020-02-15T06:59:56Z +14912 557 1 478 4.99 2005-05-27T22:38:20Z 2020-02-15T06:59:56Z +14913 557 1 1666 0.99 2005-06-16T10:17:19Z 2020-02-15T06:59:56Z +14914 557 2 2988 6.99 2005-06-20T08:59:08Z 2020-02-15T06:59:56Z +14915 557 1 3050 3.99 2005-06-20T13:03:03Z 2020-02-15T06:59:56Z +14916 557 1 4651 0.99 2005-07-08T09:39:39Z 2020-02-15T06:59:56Z +14917 557 1 4851 1.99 2005-07-08T18:40:05Z 2020-02-15T06:59:56Z +14918 557 1 6459 0.99 2005-07-12T01:12:03Z 2020-02-15T06:59:56Z +14919 557 2 6713 3.99 2005-07-12T13:27:36Z 2020-02-15T06:59:56Z +14920 557 2 6823 4.99 2005-07-12T18:24:31Z 2020-02-15T06:59:56Z +14921 557 2 6898 0.99 2005-07-12T21:39:04Z 2020-02-15T06:59:56Z +14922 557 1 9336 0.99 2005-07-30T18:01:15Z 2020-02-15T06:59:56Z +14923 557 1 9341 2.99 2005-07-30T18:07:58Z 2020-02-15T06:59:56Z +14924 557 2 9366 1.99 2005-07-30T18:48:57Z 2020-02-15T06:59:56Z +14925 557 2 9367 6.99 2005-07-30T18:49:58Z 2020-02-15T06:59:56Z +14926 557 1 11181 0.99 2005-08-02T10:55:03Z 2020-02-15T06:59:56Z +14927 557 1 12555 1.99 2005-08-18T14:49:22Z 2020-02-15T06:59:56Z +14928 557 1 12789 2.99 2005-08-19T00:16:19Z 2020-02-15T06:59:56Z +14929 557 1 13540 2.99 2005-08-20T03:41:23Z 2020-02-15T06:59:56Z +14930 557 2 13794 2.99 2005-08-20T12:25:32Z 2020-02-15T06:59:56Z +14931 557 2 15236 0.99 2005-08-22T17:44:27Z 2020-02-15T06:59:56Z +14932 557 2 15570 5.99 2005-08-23T05:24:55Z 2020-02-15T06:59:56Z +14933 557 2 15914 0.99 2005-08-23T17:49:26Z 2020-02-15T06:59:56Z +14934 557 1 14278 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +14935 558 2 1967 4.99 2005-06-17T09:19:52Z 2020-02-15T06:59:56Z +14936 558 1 2411 1.99 2005-06-18T16:55:54Z 2020-02-15T06:59:56Z +14937 558 2 2544 4.99 2005-06-19T02:16:17Z 2020-02-15T06:59:56Z +14938 558 2 3016 4.99 2005-06-20T10:55:08Z 2020-02-15T06:59:56Z +14939 558 2 3451 10.99 2005-06-21T21:10:39Z 2020-02-15T06:59:56Z +14940 558 1 3731 9.99 2005-07-06T11:33:36Z 2020-02-15T06:59:56Z +14941 558 1 3954 0.99 2005-07-06T21:57:44Z 2020-02-15T06:59:56Z +14942 558 1 3990 3.99 2005-07-06T23:32:44Z 2020-02-15T06:59:56Z +14943 558 1 4192 5.99 2005-07-07T10:57:06Z 2020-02-15T06:59:56Z +14944 558 1 4932 2.99 2005-07-08T22:17:40Z 2020-02-15T06:59:56Z +14945 558 2 5375 6.99 2005-07-09T18:52:55Z 2020-02-15T06:59:56Z +14946 558 1 5492 3.99 2005-07-10T00:11:09Z 2020-02-15T06:59:56Z +14947 558 2 6278 7.99 2005-07-11T16:20:02Z 2020-02-15T06:59:56Z +14948 558 2 6479 9.99 2005-07-12T01:49:00Z 2020-02-15T06:59:56Z +14949 558 2 6742 4.99 2005-07-12T14:25:31Z 2020-02-15T06:59:56Z +14950 558 1 6757 0.99 2005-07-12T15:09:48Z 2020-02-15T06:59:56Z +14951 558 1 7424 0.99 2005-07-27T17:14:19Z 2020-02-15T06:59:56Z +14952 558 1 8523 2.99 2005-07-29T10:18:27Z 2020-02-15T06:59:56Z +14953 558 1 8858 4.99 2005-07-29T23:44:35Z 2020-02-15T06:59:56Z +14954 558 1 8889 2.99 2005-07-30T00:39:43Z 2020-02-15T06:59:56Z +14955 558 2 10707 0.99 2005-08-01T18:41:34Z 2020-02-15T06:59:56Z +14956 558 1 11268 0.99 2005-08-02T14:10:39Z 2020-02-15T06:59:56Z +14957 558 2 11567 5.99 2005-08-17T01:28:43Z 2020-02-15T06:59:56Z +14958 558 2 12040 6.99 2005-08-17T20:29:56Z 2020-02-15T06:59:56Z +14959 558 1 12194 1.99 2005-08-18T02:04:47Z 2020-02-15T06:59:56Z +14960 558 2 13566 5.99 2005-08-20T04:45:32Z 2020-02-15T06:59:56Z +14961 558 2 14235 7.99 2005-08-21T05:08:42Z 2020-02-15T06:59:56Z +14962 558 1 14286 5.99 2005-08-21T06:53:53Z 2020-02-15T06:59:56Z +14963 559 2 2576 4.99 2005-06-19T04:34:15Z 2020-02-15T06:59:56Z +14964 559 1 2706 0.99 2005-06-19T13:56:51Z 2020-02-15T06:59:56Z +14965 559 2 3046 4.99 2005-06-20T12:42:59Z 2020-02-15T06:59:56Z +14966 559 1 3370 1.99 2005-06-21T13:27:01Z 2020-02-15T06:59:56Z +14967 559 1 3674 5.99 2005-07-06T09:03:13Z 2020-02-15T06:59:56Z +14968 559 1 4120 4.99 2005-07-07T07:07:03Z 2020-02-15T06:59:56Z +14969 559 1 4370 7.99 2005-07-07T20:05:36Z 2020-02-15T06:59:56Z +14970 559 2 5396 1.99 2005-07-09T19:42:52Z 2020-02-15T06:59:56Z +14971 559 1 6201 4.99 2005-07-11T12:18:07Z 2020-02-15T06:59:56Z +14972 559 1 6915 2.99 2005-07-12T22:28:09Z 2020-02-15T06:59:56Z +14973 559 1 7169 1.99 2005-07-27T07:51:39Z 2020-02-15T06:59:56Z +14974 559 1 7680 1.99 2005-07-28T02:59:08Z 2020-02-15T06:59:56Z +14975 559 1 8631 1.99 2005-07-29T14:08:06Z 2020-02-15T06:59:56Z +14976 559 2 9134 0.99 2005-07-30T10:00:21Z 2020-02-15T06:59:56Z +14977 559 1 9877 2.99 2005-07-31T13:41:57Z 2020-02-15T06:59:56Z +14978 559 2 10146 2.99 2005-07-31T22:17:56Z 2020-02-15T06:59:56Z +14979 559 1 10377 3.99 2005-08-01T06:28:28Z 2020-02-15T06:59:56Z +14980 559 1 10669 8.99 2005-08-01T17:03:28Z 2020-02-15T06:59:56Z +14981 559 2 10876 0.99 2005-08-02T00:31:58Z 2020-02-15T06:59:56Z +14982 559 2 11136 1.99 2005-08-02T09:22:57Z 2020-02-15T06:59:56Z +14983 559 1 13234 1.99 2005-08-19T16:17:15Z 2020-02-15T06:59:56Z +14984 559 2 13248 6.99 2005-08-19T16:47:41Z 2020-02-15T06:59:56Z +14985 559 2 13322 4.99 2005-08-19T19:43:08Z 2020-02-15T06:59:56Z +14986 559 1 13845 5.99 2005-08-20T14:31:21Z 2020-02-15T06:59:56Z +14987 559 1 14342 4.99 2005-08-21T08:39:26Z 2020-02-15T06:59:56Z +14988 559 2 14622 4.99 2005-08-21T18:25:59Z 2020-02-15T06:59:56Z +14989 559 2 15440 4.99 2005-08-23T00:37:21Z 2020-02-15T06:59:56Z +14990 559 1 15877 4.99 2005-08-23T16:33:33Z 2020-02-15T06:59:56Z +14991 560 1 137 2.99 2005-05-25T22:25:18Z 2020-02-15T06:59:56Z +14992 560 1 1271 4.99 2005-06-15T07:32:24Z 2020-02-15T06:59:56Z +14993 560 2 1572 1.99 2005-06-16T03:23:22Z 2020-02-15T06:59:56Z +14994 560 1 3941 4.99 2005-07-06T21:20:37Z 2020-02-15T06:59:56Z +14995 560 1 4298 2.99 2005-07-07T16:27:25Z 2020-02-15T06:59:56Z +14996 560 2 4375 9.99 2005-07-07T20:20:29Z 2020-02-15T06:59:56Z +14997 560 1 4453 0.99 2005-07-07T23:32:39Z 2020-02-15T06:59:56Z +14998 560 2 5208 2.99 2005-07-09T11:16:56Z 2020-02-15T06:59:56Z +14999 560 1 6410 4.99 2005-07-11T23:08:06Z 2020-02-15T06:59:56Z +15000 560 1 6945 2.99 2005-07-26T23:35:29Z 2020-02-15T06:59:56Z +15001 560 2 7202 4.99 2005-07-27T09:00:20Z 2020-02-15T06:59:56Z +15002 560 1 7891 3.99 2005-07-28T10:43:56Z 2020-02-15T06:59:56Z +15003 560 1 8753 2.99 2005-07-29T19:15:50Z 2020-02-15T06:59:56Z +15004 560 2 8861 5.99 2005-07-29T23:47:29Z 2020-02-15T06:59:56Z +15005 560 2 8906 4.99 2005-07-30T01:21:39Z 2020-02-15T06:59:56Z +15006 560 1 9265 0.99 2005-07-30T14:55:25Z 2020-02-15T06:59:56Z +15007 560 2 9895 5.99 2005-07-31T14:07:56Z 2020-02-15T06:59:56Z +15008 560 2 10480 4.99 2005-08-01T10:13:41Z 2020-02-15T06:59:56Z +15009 560 1 10702 4.99 2005-08-01T18:34:59Z 2020-02-15T06:59:56Z +15010 560 1 10733 7.99 2005-08-01T19:28:01Z 2020-02-15T06:59:56Z +15011 560 1 11334 7.99 2005-08-02T16:53:20Z 2020-02-15T06:59:56Z +15012 560 1 11788 4.99 2005-08-17T10:59:18Z 2020-02-15T06:59:56Z +15013 560 2 14008 5.99 2005-08-20T20:26:00Z 2020-02-15T06:59:56Z +15014 560 1 14341 1.99 2005-08-21T08:38:24Z 2020-02-15T06:59:56Z +15015 560 2 14363 4.99 2005-08-21T09:20:03Z 2020-02-15T06:59:56Z +15016 560 1 14436 2.99 2005-08-21T11:48:27Z 2020-02-15T06:59:56Z +15017 560 2 14785 2.99 2005-08-22T00:24:37Z 2020-02-15T06:59:56Z +15018 560 1 15352 6.99 2005-08-22T21:16:54Z 2020-02-15T06:59:56Z +15019 560 2 12116 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15020 560 2 14425 0 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15021 561 1 902 4.99 2005-05-30T09:53:36Z 2020-02-15T06:59:56Z +15022 561 2 971 4.99 2005-05-30T20:10:52Z 2020-02-15T06:59:56Z +15023 561 2 1193 2.99 2005-06-15T01:24:20Z 2020-02-15T06:59:56Z +15024 561 2 1505 2.99 2005-06-15T22:12:50Z 2020-02-15T06:59:56Z +15025 561 2 1620 4.99 2005-06-16T07:21:30Z 2020-02-15T06:59:56Z +15026 561 1 2119 4.99 2005-06-17T20:34:42Z 2020-02-15T06:59:56Z +15027 561 1 2357 5.99 2005-06-18T12:59:41Z 2020-02-15T06:59:56Z +15028 561 1 2548 0.99 2005-06-19T02:45:35Z 2020-02-15T06:59:56Z +15029 561 1 2950 4.99 2005-06-20T06:08:36Z 2020-02-15T06:59:56Z +15030 561 1 3160 4.99 2005-06-20T21:20:51Z 2020-02-15T06:59:56Z +15031 561 1 3427 0.99 2005-06-21T18:31:09Z 2020-02-15T06:59:56Z +15032 561 2 6361 2.99 2005-07-11T21:09:14Z 2020-02-15T06:59:56Z +15033 561 1 6435 0.99 2005-07-12T00:16:19Z 2020-02-15T06:59:56Z +15034 561 1 6621 0.99 2005-07-12T08:57:30Z 2020-02-15T06:59:56Z +15035 561 1 6843 4.99 2005-07-12T19:14:05Z 2020-02-15T06:59:56Z +15036 561 1 7698 0.99 2005-07-28T03:44:14Z 2020-02-15T06:59:56Z +15037 561 1 8504 10.99 2005-07-29T09:20:16Z 2020-02-15T06:59:56Z +15038 561 2 9839 7.99 2005-07-31T12:21:16Z 2020-02-15T06:59:56Z +15039 561 2 10317 2.99 2005-08-01T04:35:34Z 2020-02-15T06:59:56Z +15040 561 1 10907 4.99 2005-08-02T01:51:48Z 2020-02-15T06:59:56Z +15041 561 1 11371 2.99 2005-08-02T18:07:36Z 2020-02-15T06:59:56Z +15042 561 2 11402 2.99 2005-08-02T19:07:21Z 2020-02-15T06:59:56Z +15043 561 2 12441 2.99 2005-08-18T10:47:57Z 2020-02-15T06:59:56Z +15044 561 2 14139 0.99 2005-08-21T02:04:33Z 2020-02-15T06:59:56Z +15045 561 1 15573 0.99 2005-08-23T05:28:36Z 2020-02-15T06:59:56Z +15046 561 1 15946 2.99 2005-08-23T18:54:07Z 2020-02-15T06:59:56Z +15047 561 1 14415 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15048 562 2 788 2.99 2005-05-29T16:13:55Z 2020-02-15T06:59:56Z +15049 562 1 941 2.99 2005-05-30T15:02:25Z 2020-02-15T06:59:56Z +15050 562 1 1139 5.99 2005-05-31T19:34:52Z 2020-02-15T06:59:56Z +15051 562 1 1998 3.99 2005-06-17T11:24:57Z 2020-02-15T06:59:56Z +15052 562 1 2705 4.99 2005-06-19T13:54:30Z 2020-02-15T06:59:56Z +15053 562 1 2746 3.99 2005-06-19T16:21:40Z 2020-02-15T06:59:56Z +15054 562 2 3242 4.99 2005-06-21T02:56:24Z 2020-02-15T06:59:56Z +15055 562 2 4732 5.99 2005-07-08T13:09:45Z 2020-02-15T06:59:56Z +15056 562 1 4802 4.99 2005-07-08T16:55:17Z 2020-02-15T06:59:56Z +15057 562 2 5360 0.99 2005-07-09T18:14:03Z 2020-02-15T06:59:56Z +15058 562 2 6065 6.99 2005-07-11T04:25:51Z 2020-02-15T06:59:56Z +15059 562 1 6607 8.99 2005-07-12T08:08:50Z 2020-02-15T06:59:56Z +15060 562 2 7166 3.99 2005-07-27T07:36:56Z 2020-02-15T06:59:56Z +15061 562 1 7430 2.99 2005-07-27T17:26:14Z 2020-02-15T06:59:56Z +15062 562 2 7560 2.99 2005-07-27T22:20:17Z 2020-02-15T06:59:56Z +15063 562 2 8132 0.99 2005-07-28T19:57:31Z 2020-02-15T06:59:56Z +15064 562 2 10868 6.99 2005-08-02T00:25:15Z 2020-02-15T06:59:56Z +15065 562 2 12008 4.99 2005-08-17T19:16:18Z 2020-02-15T06:59:56Z +15066 562 1 12248 5.99 2005-08-18T03:53:18Z 2020-02-15T06:59:56Z +15067 562 2 13225 2.99 2005-08-19T15:54:33Z 2020-02-15T06:59:56Z +15068 562 2 13347 10.99 2005-08-19T20:28:48Z 2020-02-15T06:59:56Z +15069 562 2 13639 0.99 2005-08-20T07:22:07Z 2020-02-15T06:59:56Z +15070 562 1 15212 2.99 2005-08-22T16:44:26Z 2020-02-15T06:59:56Z +15071 562 2 15475 2.99 2005-08-23T01:44:43Z 2020-02-15T06:59:56Z +15072 562 1 15900 1.99 2005-08-23T17:16:30Z 2020-02-15T06:59:56Z +15073 563 1 758 4.99 2005-05-29T10:31:56Z 2020-02-15T06:59:56Z +15074 563 2 773 5.99 2005-05-29T13:18:05Z 2020-02-15T06:59:56Z +15075 563 2 1545 4.99 2005-06-16T01:31:23Z 2020-02-15T06:59:56Z +15076 563 2 2573 0.99 2005-06-19T04:23:18Z 2020-02-15T06:59:56Z +15077 563 1 4106 1.99 2005-07-07T06:33:35Z 2020-02-15T06:59:56Z +15078 563 2 4436 0.99 2005-07-07T22:52:04Z 2020-02-15T06:59:56Z +15079 563 1 4565 3.99 2005-07-08T05:12:28Z 2020-02-15T06:59:56Z +15080 563 2 4629 6.99 2005-07-08T08:31:26Z 2020-02-15T06:59:56Z +15081 563 2 4711 2.99 2005-07-08T12:06:58Z 2020-02-15T06:59:56Z +15082 563 2 4776 5.99 2005-07-08T15:44:20Z 2020-02-15T06:59:56Z +15083 563 2 4808 3.99 2005-07-08T17:02:49Z 2020-02-15T06:59:56Z +15084 563 2 4825 4.99 2005-07-08T17:43:01Z 2020-02-15T06:59:56Z +15085 563 1 4883 0.99 2005-07-08T19:46:58Z 2020-02-15T06:59:56Z +15086 563 1 5406 0.99 2005-07-09T20:13:23Z 2020-02-15T06:59:56Z +15087 563 2 6326 2.99 2005-07-11T19:06:55Z 2020-02-15T06:59:56Z +15088 563 2 7612 0.99 2005-07-28T00:11:55Z 2020-02-15T06:59:56Z +15089 563 1 8262 1.99 2005-07-29T01:11:18Z 2020-02-15T06:59:56Z +15090 563 1 8610 5.99 2005-07-29T13:25:02Z 2020-02-15T06:59:56Z +15091 563 2 8632 6.99 2005-07-29T14:11:25Z 2020-02-15T06:59:56Z +15092 563 2 8812 7.99 2005-07-29T21:47:40Z 2020-02-15T06:59:56Z +15093 563 2 11829 0.99 2005-08-17T12:52:04Z 2020-02-15T06:59:56Z +15094 563 1 12039 1.99 2005-08-17T20:29:08Z 2020-02-15T06:59:56Z +15095 563 1 12202 1.99 2005-08-18T02:14:08Z 2020-02-15T06:59:56Z +15096 563 1 12832 2.99 2005-08-19T01:41:44Z 2020-02-15T06:59:56Z +15097 563 2 13863 9.99 2005-08-20T14:57:50Z 2020-02-15T06:59:56Z +15098 563 2 14592 4.99 2005-08-21T17:30:17Z 2020-02-15T06:59:56Z +15099 563 2 15507 0.99 2005-08-23T02:48:26Z 2020-02-15T06:59:56Z +15100 563 2 15638 3.99 2005-08-23T07:54:54Z 2020-02-15T06:59:56Z +15101 563 1 15850 4.99 2005-08-23T15:45:42Z 2020-02-15T06:59:56Z +15102 564 2 195 5.99 2005-05-26T06:52:36Z 2020-02-15T06:59:56Z +15103 564 1 985 2.99 2005-05-30T22:18:35Z 2020-02-15T06:59:56Z +15104 564 2 1705 2.99 2005-06-16T13:59:42Z 2020-02-15T06:59:56Z +15105 564 1 4196 2.99 2005-07-07T11:06:33Z 2020-02-15T06:59:56Z +15106 564 2 4385 0.99 2005-07-07T20:48:38Z 2020-02-15T06:59:56Z +15107 564 1 6973 2.99 2005-07-27T00:32:04Z 2020-02-15T06:59:56Z +15108 564 2 7470 10.99 2005-07-27T19:01:03Z 2020-02-15T06:59:56Z +15109 564 2 8426 4.99 2005-07-29T07:07:48Z 2020-02-15T06:59:56Z +15110 564 1 8874 0.99 2005-07-30T00:14:45Z 2020-02-15T06:59:56Z +15111 564 2 9063 3.99 2005-07-30T07:24:34Z 2020-02-15T06:59:56Z +15112 564 2 9929 2.99 2005-07-31T15:17:24Z 2020-02-15T06:59:56Z +15113 564 1 10129 6.99 2005-07-31T21:41:35Z 2020-02-15T06:59:56Z +15114 564 2 10352 1.99 2005-08-01T05:44:36Z 2020-02-15T06:59:56Z +15115 564 2 10401 4.99 2005-08-01T07:27:09Z 2020-02-15T06:59:56Z +15116 564 1 10528 2.99 2005-08-01T11:56:22Z 2020-02-15T06:59:56Z +15117 564 2 11768 2.99 2005-08-17T10:02:29Z 2020-02-15T06:59:56Z +15118 564 2 12197 6.99 2005-08-18T02:08:58Z 2020-02-15T06:59:56Z +15119 564 2 12617 2.99 2005-08-18T17:22:48Z 2020-02-15T06:59:56Z +15120 564 2 13324 0.99 2005-08-19T19:51:00Z 2020-02-15T06:59:56Z +15121 564 2 13558 0.99 2005-08-20T04:13:17Z 2020-02-15T06:59:56Z +15122 564 1 13701 0.99 2005-08-20T09:27:05Z 2020-02-15T06:59:56Z +15123 564 2 14439 5.99 2005-08-21T11:52:41Z 2020-02-15T06:59:56Z +15124 564 1 14593 0.99 2005-08-21T17:33:18Z 2020-02-15T06:59:56Z +15125 564 2 15059 8.99 2005-08-22T10:22:00Z 2020-02-15T06:59:56Z +15126 565 1 458 6.99 2005-05-27T19:58:36Z 2020-02-15T06:59:56Z +15127 565 1 1004 0.99 2005-05-31T00:48:36Z 2020-02-15T06:59:56Z +15128 565 2 1460 4.99 2005-06-15T20:27:02Z 2020-02-15T06:59:56Z +15129 565 1 2321 5.99 2005-06-18T09:42:42Z 2020-02-15T06:59:56Z +15130 565 1 3300 5.99 2005-06-21T07:25:01Z 2020-02-15T06:59:56Z +15131 565 2 3470 0.99 2005-07-05T22:49:24Z 2020-02-15T06:59:56Z +15132 565 1 3838 2.99 2005-07-06T16:29:43Z 2020-02-15T06:59:56Z +15133 565 1 4413 2.99 2005-07-07T22:00:04Z 2020-02-15T06:59:56Z +15134 565 2 5020 0.99 2005-07-09T02:07:56Z 2020-02-15T06:59:56Z +15135 565 1 5124 4.99 2005-07-09T07:25:19Z 2020-02-15T06:59:56Z +15136 565 1 6264 2.99 2005-07-11T15:42:35Z 2020-02-15T06:59:56Z +15137 565 1 6627 2.99 2005-07-12T09:16:46Z 2020-02-15T06:59:56Z +15138 565 1 6699 0.99 2005-07-12T12:45:21Z 2020-02-15T06:59:56Z +15139 565 2 7242 5.99 2005-07-27T10:25:51Z 2020-02-15T06:59:56Z +15140 565 1 9628 2.99 2005-07-31T04:51:11Z 2020-02-15T06:59:56Z +15141 565 1 10025 5.99 2005-07-31T18:29:09Z 2020-02-15T06:59:56Z +15142 565 2 10776 10.99 2005-08-01T20:59:58Z 2020-02-15T06:59:56Z +15143 565 2 10913 3.99 2005-08-02T02:04:03Z 2020-02-15T06:59:56Z +15144 565 2 11189 6.99 2005-08-02T11:17:23Z 2020-02-15T06:59:56Z +15145 565 1 11399 3.99 2005-08-02T18:56:28Z 2020-02-15T06:59:56Z +15146 565 2 11506 4.99 2005-08-16T23:25:48Z 2020-02-15T06:59:56Z +15147 565 1 11588 3.99 2005-08-17T02:26:23Z 2020-02-15T06:59:56Z +15148 565 1 11795 2.99 2005-08-17T11:13:38Z 2020-02-15T06:59:56Z +15149 565 2 12743 5.99 2005-08-18T22:22:31Z 2020-02-15T06:59:56Z +15150 565 2 13195 4.99 2005-08-19T14:39:14Z 2020-02-15T06:59:56Z +15151 565 2 13217 4.99 2005-08-19T15:38:39Z 2020-02-15T06:59:56Z +15152 565 1 13362 0.99 2005-08-19T21:07:54Z 2020-02-15T06:59:56Z +15153 565 1 13925 8.99 2005-08-20T17:05:34Z 2020-02-15T06:59:56Z +15154 565 1 15885 2.99 2005-08-23T16:50:43Z 2020-02-15T06:59:56Z +15155 566 2 234 5.99 2005-05-26T11:47:20Z 2020-02-15T06:59:56Z +15156 566 2 768 4.99 2005-05-29T12:30:46Z 2020-02-15T06:59:56Z +15157 566 1 1635 5.99 2005-06-16T08:26:56Z 2020-02-15T06:59:56Z +15158 566 2 1982 4.99 2005-06-17T10:12:15Z 2020-02-15T06:59:56Z +15159 566 1 2367 0.99 2005-06-18T14:00:31Z 2020-02-15T06:59:56Z +15160 566 1 3379 4.99 2005-06-21T13:54:58Z 2020-02-15T06:59:56Z +15161 566 2 3663 4.99 2005-07-06T08:15:47Z 2020-02-15T06:59:56Z +15162 566 1 3943 0.99 2005-07-06T21:22:17Z 2020-02-15T06:59:56Z +15163 566 1 3998 3.99 2005-07-06T23:49:20Z 2020-02-15T06:59:56Z +15164 566 1 5079 9.99 2005-07-09T05:20:40Z 2020-02-15T06:59:56Z +15165 566 2 6365 2.99 2005-07-11T21:17:40Z 2020-02-15T06:59:56Z +15166 566 1 7677 2.99 2005-07-28T02:56:37Z 2020-02-15T06:59:56Z +15167 566 2 7941 0.99 2005-07-28T12:47:20Z 2020-02-15T06:59:56Z +15168 566 2 8118 2.99 2005-07-28T19:22:22Z 2020-02-15T06:59:56Z +15169 566 1 8157 6.99 2005-07-28T21:06:45Z 2020-02-15T06:59:56Z +15170 566 1 8257 2.99 2005-07-29T01:03:20Z 2020-02-15T06:59:56Z +15171 566 2 8305 1.99 2005-07-29T03:08:47Z 2020-02-15T06:59:56Z +15172 566 2 8660 6.99 2005-07-29T15:26:59Z 2020-02-15T06:59:56Z +15173 566 1 8710 0.99 2005-07-29T17:26:03Z 2020-02-15T06:59:56Z +15174 566 1 8797 4.99 2005-07-29T21:10:37Z 2020-02-15T06:59:56Z +15175 566 2 9101 4.99 2005-07-30T08:47:13Z 2020-02-15T06:59:56Z +15176 566 2 9470 4.99 2005-07-30T23:01:31Z 2020-02-15T06:59:56Z +15177 566 1 9688 3.99 2005-07-31T06:56:08Z 2020-02-15T06:59:56Z +15178 566 2 9915 2.99 2005-07-31T14:52:26Z 2020-02-15T06:59:56Z +15179 566 2 10259 2.99 2005-08-01T02:52:05Z 2020-02-15T06:59:56Z +15180 566 2 10289 6.99 2005-08-01T03:39:48Z 2020-02-15T06:59:56Z +15181 566 2 11129 2.99 2005-08-02T09:08:44Z 2020-02-15T06:59:56Z +15182 566 1 11717 0.99 2005-08-17T07:44:09Z 2020-02-15T06:59:56Z +15183 566 1 11941 1.99 2005-08-17T16:56:57Z 2020-02-15T06:59:56Z +15184 566 2 12382 8.99 2005-08-18T08:32:33Z 2020-02-15T06:59:56Z +15185 566 2 12995 4.99 2005-08-19T07:26:30Z 2020-02-15T06:59:56Z +15186 566 2 13762 4.99 2005-08-20T11:29:32Z 2020-02-15T06:59:56Z +15187 566 1 14277 3.99 2005-08-21T06:34:41Z 2020-02-15T06:59:56Z +15188 566 1 14297 2.99 2005-08-21T07:13:46Z 2020-02-15T06:59:56Z +15189 567 2 2689 4.99 2005-06-19T12:58:53Z 2020-02-15T06:59:56Z +15190 567 1 3010 2.99 2005-06-20T10:29:59Z 2020-02-15T06:59:56Z +15191 567 1 3769 5.99 2005-07-06T13:11:33Z 2020-02-15T06:59:56Z +15192 567 2 4457 0.99 2005-07-07T23:45:38Z 2020-02-15T06:59:56Z +15193 567 2 4576 0.99 2005-07-08T05:51:19Z 2020-02-15T06:59:56Z +15194 567 1 4949 4.99 2005-07-08T22:57:10Z 2020-02-15T06:59:56Z +15195 567 2 6358 2.99 2005-07-11T21:03:12Z 2020-02-15T06:59:56Z +15196 567 2 6551 0.99 2005-07-12T05:03:43Z 2020-02-15T06:59:56Z +15197 567 2 7340 2.99 2005-07-27T14:18:10Z 2020-02-15T06:59:56Z +15198 567 1 8201 2.99 2005-07-28T23:10:48Z 2020-02-15T06:59:56Z +15199 567 1 8629 2.99 2005-07-29T14:06:35Z 2020-02-15T06:59:56Z +15200 567 1 9279 7.99 2005-07-30T15:15:21Z 2020-02-15T06:59:56Z +15201 567 1 9475 6.99 2005-07-30T23:06:33Z 2020-02-15T06:59:56Z +15202 567 2 10708 7.99 2005-08-01T18:43:28Z 2020-02-15T06:59:56Z +15203 567 2 11749 2.99 2005-08-17T09:04:03Z 2020-02-15T06:59:56Z +15204 567 1 12119 2.99 2005-08-17T23:16:44Z 2020-02-15T06:59:56Z +15205 567 2 13031 2.99 2005-08-19T08:30:04Z 2020-02-15T06:59:56Z +15206 567 2 14839 2.99 2005-08-22T01:58:15Z 2020-02-15T06:59:56Z +15207 567 2 15074 5.99 2005-08-22T11:02:52Z 2020-02-15T06:59:56Z +15208 567 2 15594 10.99 2005-08-23T06:18:43Z 2020-02-15T06:59:56Z +15209 568 2 1658 4.99 2005-06-16T10:07:10Z 2020-02-15T06:59:56Z +15210 568 2 2382 4.99 2005-06-18T15:03:52Z 2020-02-15T06:59:56Z +15211 568 2 2668 0.99 2005-06-19T11:28:47Z 2020-02-15T06:59:56Z +15212 568 1 3227 4.99 2005-06-21T02:18:25Z 2020-02-15T06:59:56Z +15213 568 2 3462 1.99 2005-06-21T21:52:52Z 2020-02-15T06:59:56Z +15214 568 1 4322 2.99 2005-07-07T17:54:37Z 2020-02-15T06:59:56Z +15215 568 2 5332 2.99 2005-07-09T16:59:23Z 2020-02-15T06:59:56Z +15216 568 1 5622 0.99 2005-07-10T05:39:37Z 2020-02-15T06:59:56Z +15217 568 1 5776 4.99 2005-07-10T13:35:22Z 2020-02-15T06:59:56Z +15218 568 2 7068 2.99 2005-07-27T03:57:50Z 2020-02-15T06:59:56Z +15219 568 2 8185 0.99 2005-07-28T22:23:49Z 2020-02-15T06:59:56Z +15220 568 2 9583 6.99 2005-07-31T03:05:21Z 2020-02-15T06:59:56Z +15221 568 1 9738 0.99 2005-07-31T09:04:14Z 2020-02-15T06:59:56Z +15222 568 1 10340 2.99 2005-08-01T05:07:03Z 2020-02-15T06:59:56Z +15223 568 2 10689 0.99 2005-08-01T18:04:18Z 2020-02-15T06:59:56Z +15224 568 2 10869 0.99 2005-08-02T00:26:54Z 2020-02-15T06:59:56Z +15225 568 1 11331 2.99 2005-08-02T16:49:01Z 2020-02-15T06:59:56Z +15226 568 1 13883 4.99 2005-08-20T15:28:53Z 2020-02-15T06:59:56Z +15227 568 2 15069 5.99 2005-08-22T10:55:42Z 2020-02-15T06:59:56Z +15228 568 1 15203 2.99 2005-08-22T16:28:00Z 2020-02-15T06:59:56Z +15229 568 2 14531 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15230 569 2 53 4.99 2005-05-25T07:19:16Z 2020-02-15T06:59:56Z +15231 569 1 487 4.99 2005-05-28T00:00:30Z 2020-02-15T06:59:56Z +15232 569 1 624 4.99 2005-05-28T16:13:22Z 2020-02-15T06:59:56Z +15233 569 1 647 1.99 2005-05-28T19:22:52Z 2020-02-15T06:59:56Z +15234 569 2 1037 3.99 2005-05-31T05:22:25Z 2020-02-15T06:59:56Z +15235 569 1 1463 6.99 2005-06-15T20:37:51Z 2020-02-15T06:59:56Z +15236 569 2 1668 5.99 2005-06-16T10:19:52Z 2020-02-15T06:59:56Z +15237 569 1 4204 5.99 2005-07-07T11:24:18Z 2020-02-15T06:59:56Z +15238 569 2 5003 0.99 2005-07-09T01:19:03Z 2020-02-15T06:59:56Z +15239 569 2 6046 5.99 2005-07-11T03:21:49Z 2020-02-15T06:59:56Z +15240 569 1 8910 2.99 2005-07-30T01:29:48Z 2020-02-15T06:59:56Z +15241 569 2 9220 1.99 2005-07-30T13:17:27Z 2020-02-15T06:59:56Z +15242 569 1 9399 4.99 2005-07-30T20:14:50Z 2020-02-15T06:59:56Z +15243 569 2 9960 1.99 2005-07-31T16:05:52Z 2020-02-15T06:59:56Z +15244 569 2 10192 2.99 2005-08-01T00:33:00Z 2020-02-15T06:59:56Z +15245 569 2 10884 0.99 2005-08-02T00:47:33Z 2020-02-15T06:59:56Z +15246 569 1 11030 1.99 2005-08-02T05:51:20Z 2020-02-15T06:59:56Z +15247 569 2 11255 4.99 2005-08-02T13:44:30Z 2020-02-15T06:59:56Z +15248 569 1 11354 6.99 2005-08-02T17:35:10Z 2020-02-15T06:59:56Z +15249 569 1 11946 4.99 2005-08-17T17:05:53Z 2020-02-15T06:59:56Z +15250 569 1 12157 2.99 2005-08-18T00:33:45Z 2020-02-15T06:59:56Z +15251 569 2 12308 0.99 2005-08-18T05:48:53Z 2020-02-15T06:59:56Z +15252 569 1 12568 3.99 2005-08-18T15:15:44Z 2020-02-15T06:59:56Z +15253 569 2 12958 2.99 2005-08-19T06:19:21Z 2020-02-15T06:59:56Z +15254 569 1 13287 7.99 2005-08-19T18:28:24Z 2020-02-15T06:59:56Z +15255 569 2 13554 9.99 2005-08-20T04:08:39Z 2020-02-15T06:59:56Z +15256 569 2 14207 4.99 2005-08-21T04:08:19Z 2020-02-15T06:59:56Z +15257 569 2 14400 0.99 2005-08-21T10:33:45Z 2020-02-15T06:59:56Z +15258 569 1 14896 8.99 2005-08-22T04:20:55Z 2020-02-15T06:59:56Z +15259 569 1 14959 2.99 2005-08-22T06:30:28Z 2020-02-15T06:59:56Z +15260 569 2 15617 0.99 2005-08-23T07:07:22Z 2020-02-15T06:59:56Z +15261 569 2 16025 4.99 2005-08-23T21:48:54Z 2020-02-15T06:59:56Z +15262 570 2 1060 7.99 2005-05-31T08:21:43Z 2020-02-15T06:59:56Z +15263 570 1 1259 4.99 2005-06-15T06:37:55Z 2020-02-15T06:59:56Z +15264 570 2 1417 4.99 2005-06-15T17:45:51Z 2020-02-15T06:59:56Z +15265 570 2 1804 2.99 2005-06-16T20:33:15Z 2020-02-15T06:59:56Z +15266 570 2 2008 5.99 2005-06-17T11:48:05Z 2020-02-15T06:59:56Z +15267 570 2 2031 6.99 2005-06-17T13:14:03Z 2020-02-15T06:59:56Z +15268 570 2 2261 3.99 2005-06-18T05:46:15Z 2020-02-15T06:59:56Z +15269 570 2 3138 2.99 2005-06-20T19:43:45Z 2020-02-15T06:59:56Z +15270 570 2 3984 0.99 2005-07-06T23:22:36Z 2020-02-15T06:59:56Z +15271 570 1 4069 0.99 2005-07-07T04:35:06Z 2020-02-15T06:59:56Z +15272 570 1 4698 0.99 2005-07-08T11:19:31Z 2020-02-15T06:59:56Z +15273 570 2 5638 4.99 2005-07-10T06:32:49Z 2020-02-15T06:59:56Z +15274 570 1 6253 4.99 2005-07-11T15:07:19Z 2020-02-15T06:59:56Z +15275 570 1 6556 0.99 2005-07-12T05:10:16Z 2020-02-15T06:59:56Z +15276 570 2 7174 4.99 2005-07-27T08:00:36Z 2020-02-15T06:59:56Z +15277 570 2 8735 4.99 2005-07-29T18:28:54Z 2020-02-15T06:59:56Z +15278 570 1 9385 7.99 2005-07-30T19:25:49Z 2020-02-15T06:59:56Z +15279 570 1 9398 0.99 2005-07-30T20:09:00Z 2020-02-15T06:59:56Z +15280 570 2 9432 2.99 2005-07-30T21:26:18Z 2020-02-15T06:59:56Z +15281 570 1 9766 4.99 2005-07-31T09:46:29Z 2020-02-15T06:59:56Z +15282 570 1 10004 0.99 2005-07-31T17:51:23Z 2020-02-15T06:59:56Z +15283 570 2 10168 2.99 2005-07-31T23:25:24Z 2020-02-15T06:59:56Z +15284 570 1 11098 3.99 2005-08-02T08:06:18Z 2020-02-15T06:59:56Z +15285 570 2 12042 4.99 2005-08-17T20:36:37Z 2020-02-15T06:59:56Z +15286 570 2 14768 3.99 2005-08-21T23:44:53Z 2020-02-15T06:59:56Z +15287 570 1 12716 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:56Z +15288 571 1 228 9.99 2005-05-26T10:54:28Z 2020-02-15T06:59:56Z +15289 571 2 689 3.99 2005-05-29T00:46:53Z 2020-02-15T06:59:56Z +15290 571 1 1254 4.99 2005-06-15T06:11:16Z 2020-02-15T06:59:56Z +15291 571 2 1400 3.99 2005-06-15T16:29:56Z 2020-02-15T06:59:56Z +15292 571 1 1756 4.99 2005-06-16T17:22:33Z 2020-02-15T06:59:56Z +15293 571 2 1990 4.99 2005-06-17T10:48:44Z 2020-02-15T06:59:56Z +15294 571 1 2327 2.99 2005-06-18T10:16:40Z 2020-02-15T06:59:56Z +15295 571 1 2977 10.99 2005-06-20T08:15:27Z 2020-02-15T06:59:56Z +15296 571 2 3616 2.99 2005-07-06T05:52:13Z 2020-02-15T06:59:56Z +15297 571 1 4162 4.99 2005-07-07T09:17:26Z 2020-02-15T06:59:56Z +15298 571 2 5789 4.99 2005-07-10T14:11:26Z 2020-02-15T06:59:56Z +15299 571 2 6676 8.99 2005-07-12T11:53:40Z 2020-02-15T06:59:56Z +15300 571 1 6792 8.99 2005-07-12T16:37:28Z 2020-02-15T06:59:56Z +15301 571 1 8084 5.99 2005-07-28T18:11:58Z 2020-02-15T06:59:56Z +15302 571 1 8638 4.99 2005-07-29T14:30:23Z 2020-02-15T06:59:56Z +15303 571 2 9300 1.99 2005-07-30T16:33:12Z 2020-02-15T06:59:56Z +15304 571 1 9408 4.99 2005-07-30T20:32:09Z 2020-02-15T06:59:56Z +15305 571 1 10227 2.99 2005-08-01T01:42:22Z 2020-02-15T06:59:56Z +15306 571 2 11080 2.99 2005-08-02T07:29:56Z 2020-02-15T06:59:56Z +15307 571 2 11191 7.99 2005-08-02T11:24:07Z 2020-02-15T06:59:56Z +15308 571 1 13228 2.99 2005-08-19T16:08:16Z 2020-02-15T06:59:56Z +15309 571 2 13266 2.99 2005-08-19T17:31:20Z 2020-02-15T06:59:56Z +15310 571 1 14956 0.99 2005-08-22T06:26:16Z 2020-02-15T06:59:56Z +15311 571 1 15841 4.99 2005-08-23T15:35:59Z 2020-02-15T06:59:56Z +15312 572 2 559 7.99 2005-05-28T08:39:02Z 2020-02-15T06:59:56Z +15313 572 2 1889 10.99 2005-06-17T04:05:12Z 2020-02-15T06:59:56Z +15314 572 1 2007 0.99 2005-06-17T11:47:17Z 2020-02-15T06:59:56Z +15315 572 1 2458 0.99 2005-06-18T19:39:05Z 2020-02-15T06:59:56Z +15316 572 1 4601 2.99 2005-07-08T06:49:10Z 2020-02-15T06:59:56Z +15317 572 1 5595 4.99 2005-07-10T04:33:45Z 2020-02-15T06:59:56Z +15318 572 1 5713 6.99 2005-07-10T10:46:15Z 2020-02-15T06:59:56Z +15319 572 2 6108 2.99 2005-07-11T07:19:24Z 2020-02-15T06:59:56Z +15320 572 1 7161 4.99 2005-07-27T07:26:32Z 2020-02-15T06:59:56Z +15321 572 1 7345 4.99 2005-07-27T14:29:53Z 2020-02-15T06:59:56Z +15322 572 2 7713 6.99 2005-07-28T04:32:14Z 2020-02-15T06:59:56Z +15323 572 2 8342 0.99 2005-07-29T04:45:05Z 2020-02-15T06:59:56Z +15324 572 1 8432 0.99 2005-07-29T07:13:33Z 2020-02-15T06:59:56Z +15325 572 1 9081 3.99 2005-07-30T08:09:58Z 2020-02-15T06:59:56Z +15326 572 2 9950 5.99 2005-07-31T15:50:22Z 2020-02-15T06:59:56Z +15327 572 2 10204 4.99 2005-08-01T00:47:39Z 2020-02-15T06:59:56Z +15328 572 1 11114 0.99 2005-08-02T08:26:45Z 2020-02-15T06:59:56Z +15329 572 1 11121 4.99 2005-08-02T08:48:31Z 2020-02-15T06:59:56Z +15330 572 2 11415 2.99 2005-08-02T19:43:38Z 2020-02-15T06:59:56Z +15331 572 1 11426 4.99 2005-08-02T20:00:09Z 2020-02-15T06:59:56Z +15332 572 1 11526 4.99 2005-08-17T00:17:38Z 2020-02-15T06:59:56Z +15333 572 1 12256 1.99 2005-08-18T04:09:39Z 2020-02-15T06:59:56Z +15334 572 2 13377 1.99 2005-08-19T21:32:23Z 2020-02-15T06:59:56Z +15335 572 2 13523 6.99 2005-08-20T02:47:03Z 2020-02-15T06:59:56Z +15336 572 1 13688 5.99 2005-08-20T08:59:38Z 2020-02-15T06:59:56Z +15337 573 2 827 2.99 2005-05-29T21:58:43Z 2020-02-15T06:59:56Z +15338 573 1 1613 4.99 2005-06-16T06:55:10Z 2020-02-15T06:59:56Z +15339 573 2 2622 5.99 2005-06-19T08:10:41Z 2020-02-15T06:59:56Z +15340 573 1 2995 1.99 2005-06-20T09:18:22Z 2020-02-15T06:59:56Z +15341 573 1 3295 7.99 2005-06-21T07:04:17Z 2020-02-15T06:59:56Z +15342 573 2 3768 0.99 2005-07-06T13:07:30Z 2020-02-15T06:59:56Z +15343 573 1 3930 2.99 2005-07-06T20:54:07Z 2020-02-15T06:59:56Z +15344 573 2 4023 4.99 2005-07-07T01:55:25Z 2020-02-15T06:59:56Z +15345 573 1 4085 0.99 2005-07-07T05:25:39Z 2020-02-15T06:59:56Z +15346 573 1 4609 0.99 2005-07-08T07:22:29Z 2020-02-15T06:59:56Z +15347 573 1 4770 2.99 2005-07-08T15:29:46Z 2020-02-15T06:59:56Z +15348 573 1 5036 5.99 2005-07-09T02:58:41Z 2020-02-15T06:59:56Z +15349 573 2 5522 9.99 2005-07-10T01:46:29Z 2020-02-15T06:59:56Z +15350 573 2 5903 2.99 2005-07-10T20:39:04Z 2020-02-15T06:59:56Z +15351 573 1 6693 7.99 2005-07-12T12:37:00Z 2020-02-15T06:59:56Z +15352 573 1 8400 4.99 2005-07-29T06:23:56Z 2020-02-15T06:59:56Z +15353 573 2 9837 10.99 2005-07-31T12:14:19Z 2020-02-15T06:59:56Z +15354 573 2 9846 4.99 2005-07-31T12:30:12Z 2020-02-15T06:59:56Z +15355 573 2 9963 2.99 2005-07-31T16:16:46Z 2020-02-15T06:59:56Z +15356 573 2 9971 5.99 2005-07-31T16:42:16Z 2020-02-15T06:59:56Z +15357 573 1 10296 0.99 2005-08-01T04:04:37Z 2020-02-15T06:59:56Z +15358 573 1 10887 2.99 2005-08-02T00:52:35Z 2020-02-15T06:59:56Z +15359 573 1 11043 0.99 2005-08-02T06:04:44Z 2020-02-15T06:59:56Z +15360 573 2 11912 5.99 2005-08-17T15:51:49Z 2020-02-15T06:59:56Z +15361 573 1 12017 1.99 2005-08-17T19:33:49Z 2020-02-15T06:59:56Z +15362 573 1 12125 1.99 2005-08-17T23:24:25Z 2020-02-15T06:59:56Z +15363 573 1 12269 6.99 2005-08-18T04:27:54Z 2020-02-15T06:59:56Z +15364 573 1 12791 0.99 2005-08-19T00:17:09Z 2020-02-15T06:59:56Z +15365 573 2 13113 2.99 2005-08-19T11:27:20Z 2020-02-15T06:59:56Z +15366 574 2 433 0.99 2005-05-27T16:40:40Z 2020-02-15T06:59:56Z +15367 574 1 1559 0.99 2005-06-16T02:35:03Z 2020-02-15T06:59:56Z +15368 574 2 1636 5.99 2005-06-16T08:28:54Z 2020-02-15T06:59:56Z +15369 574 1 1817 0.99 2005-06-16T21:20:52Z 2020-02-15T06:59:56Z +15370 574 1 2632 0.99 2005-06-19T08:51:47Z 2020-02-15T06:59:56Z +15371 574 1 3220 6.99 2005-06-21T01:46:25Z 2020-02-15T06:59:56Z +15372 574 1 3583 7.99 2005-07-06T04:10:43Z 2020-02-15T06:59:56Z +15373 574 1 4004 4.99 2005-07-07T00:20:51Z 2020-02-15T06:59:56Z +15374 574 1 4212 4.99 2005-07-07T11:53:14Z 2020-02-15T06:59:56Z +15375 574 2 4890 2.99 2005-07-08T20:05:38Z 2020-02-15T06:59:56Z +15376 574 2 5010 4.99 2005-07-09T01:33:23Z 2020-02-15T06:59:56Z +15377 574 1 5076 3.99 2005-07-09T05:13:22Z 2020-02-15T06:59:56Z +15378 574 1 5077 3.99 2005-07-09T05:18:01Z 2020-02-15T06:59:56Z +15379 574 1 5640 2.99 2005-07-10T06:38:00Z 2020-02-15T06:59:56Z +15380 574 1 6523 2.99 2005-07-12T04:14:19Z 2020-02-15T06:59:56Z +15381 574 1 7093 1.99 2005-07-27T04:47:00Z 2020-02-15T06:59:56Z +15382 574 1 7134 2.99 2005-07-27T06:33:06Z 2020-02-15T06:59:56Z +15383 574 1 7964 2.99 2005-07-28T13:49:58Z 2020-02-15T06:59:56Z +15384 574 1 8303 4.99 2005-07-29T03:05:56Z 2020-02-15T06:59:56Z +15385 574 1 9589 7.99 2005-07-31T03:13:29Z 2020-02-15T06:59:56Z +15386 574 1 9759 3.99 2005-07-31T09:25:57Z 2020-02-15T06:59:57Z +15387 574 1 10347 4.99 2005-08-01T05:20:03Z 2020-02-15T06:59:57Z +15388 574 2 11775 3.99 2005-08-17T10:25:53Z 2020-02-15T06:59:57Z +15389 574 1 12462 2.99 2005-08-18T11:28:55Z 2020-02-15T06:59:57Z +15390 574 1 13589 4.99 2005-08-20T05:47:25Z 2020-02-15T06:59:57Z +15391 574 1 14076 4.99 2005-08-20T23:20:10Z 2020-02-15T06:59:57Z +15392 574 2 14941 2.99 2005-08-22T05:58:23Z 2020-02-15T06:59:57Z +15393 574 2 15214 2.99 2005-08-22T16:53:29Z 2020-02-15T06:59:57Z +15394 575 1 17 2.99 2005-05-25T01:06:36Z 2020-02-15T06:59:57Z +15395 575 1 395 0.99 2005-05-27T11:45:49Z 2020-02-15T06:59:57Z +15396 575 2 454 4.99 2005-05-27T19:31:36Z 2020-02-15T06:59:57Z +15397 575 2 769 2.99 2005-05-29T12:51:44Z 2020-02-15T06:59:57Z +15398 575 1 774 4.99 2005-05-29T13:19:43Z 2020-02-15T06:59:57Z +15399 575 2 1494 2.99 2005-06-15T21:54:20Z 2020-02-15T06:59:57Z +15400 575 1 1824 2.99 2005-06-16T21:51:04Z 2020-02-15T06:59:57Z +15401 575 2 1866 4.99 2005-06-17T01:53:19Z 2020-02-15T06:59:57Z +15402 575 1 3558 6.99 2005-07-06T02:49:06Z 2020-02-15T06:59:57Z +15403 575 2 5875 8.99 2005-07-10T19:06:47Z 2020-02-15T06:59:57Z +15404 575 2 6907 2.99 2005-07-12T22:03:49Z 2020-02-15T06:59:57Z +15405 575 1 7083 0.99 2005-07-27T04:28:39Z 2020-02-15T06:59:57Z +15406 575 1 7139 2.99 2005-07-27T06:52:21Z 2020-02-15T06:59:57Z +15407 575 2 8711 2.99 2005-07-29T17:27:15Z 2020-02-15T06:59:57Z +15408 575 2 8904 0.99 2005-07-30T01:08:33Z 2020-02-15T06:59:57Z +15409 575 2 8989 4.99 2005-07-30T04:39:19Z 2020-02-15T06:59:57Z +15410 575 1 9733 4.99 2005-07-31T08:57:35Z 2020-02-15T06:59:57Z +15411 575 1 10331 4.99 2005-08-01T04:57:14Z 2020-02-15T06:59:57Z +15412 575 2 10629 7.99 2005-08-01T15:33:32Z 2020-02-15T06:59:57Z +15413 575 1 11097 3.99 2005-08-02T08:05:46Z 2020-02-15T06:59:57Z +15414 575 1 11458 4.99 2005-08-02T21:24:02Z 2020-02-15T06:59:57Z +15415 575 1 12204 7.99 2005-08-18T02:20:35Z 2020-02-15T06:59:57Z +15416 575 2 12289 8.99 2005-08-18T05:05:28Z 2020-02-15T06:59:57Z +15417 575 2 12770 5.99 2005-08-18T23:29:00Z 2020-02-15T06:59:57Z +15418 575 2 13408 4.99 2005-08-19T22:34:51Z 2020-02-15T06:59:57Z +15419 575 2 13465 2.99 2005-08-20T00:54:14Z 2020-02-15T06:59:57Z +15420 575 2 14952 2.99 2005-08-22T06:20:07Z 2020-02-15T06:59:57Z +15421 575 2 15749 4.99 2005-08-23T12:33:41Z 2020-02-15T06:59:57Z +15422 575 2 15857 0.99 2005-08-23T15:59:51Z 2020-02-15T06:59:57Z +15423 576 2 755 2.99 2005-05-29T10:26:29Z 2020-02-15T06:59:57Z +15424 576 1 968 0.99 2005-05-30T19:20:03Z 2020-02-15T06:59:57Z +15425 576 1 1366 4.99 2005-06-15T14:21:00Z 2020-02-15T06:59:57Z +15426 576 2 1742 2.99 2005-06-16T16:37:48Z 2020-02-15T06:59:57Z +15427 576 1 2309 0.99 2005-06-18T08:43:24Z 2020-02-15T06:59:57Z +15428 576 2 2444 8.99 2005-06-18T18:58:12Z 2020-02-15T06:59:57Z +15429 576 1 2651 3.99 2005-06-19T10:22:56Z 2020-02-15T06:59:57Z +15430 576 2 2799 4.99 2005-06-19T19:15:21Z 2020-02-15T06:59:57Z +15431 576 2 3226 6.99 2005-06-21T02:18:14Z 2020-02-15T06:59:57Z +15432 576 1 3877 4.99 2005-07-06T18:22:10Z 2020-02-15T06:59:57Z +15433 576 2 3889 0.99 2005-07-06T18:56:25Z 2020-02-15T06:59:57Z +15434 576 2 3934 4.99 2005-07-06T21:07:23Z 2020-02-15T06:59:57Z +15435 576 1 4514 4.99 2005-07-08T02:41:25Z 2020-02-15T06:59:57Z +15436 576 2 5597 3.99 2005-07-10T04:47:57Z 2020-02-15T06:59:57Z +15437 576 1 5934 4.99 2005-07-10T22:07:59Z 2020-02-15T06:59:57Z +15438 576 2 7319 1.99 2005-07-27T13:31:25Z 2020-02-15T06:59:57Z +15439 576 1 7605 3.99 2005-07-27T23:57:01Z 2020-02-15T06:59:57Z +15440 576 1 8907 4.99 2005-07-30T01:25:03Z 2020-02-15T06:59:57Z +15441 576 1 9133 5.99 2005-07-30T09:59:00Z 2020-02-15T06:59:57Z +15442 576 2 9548 5.99 2005-07-31T01:54:19Z 2020-02-15T06:59:57Z +15443 576 2 9620 8.99 2005-07-31T04:19:18Z 2020-02-15T06:59:57Z +15444 576 2 9962 0.99 2005-07-31T16:10:36Z 2020-02-15T06:59:57Z +15445 576 1 9979 2.99 2005-07-31T17:00:07Z 2020-02-15T06:59:57Z +15446 576 1 10000 2.99 2005-07-31T17:41:05Z 2020-02-15T06:59:57Z +15447 576 2 10724 3.99 2005-08-01T19:10:59Z 2020-02-15T06:59:57Z +15448 576 2 12112 5.99 2005-08-17T23:00:31Z 2020-02-15T06:59:57Z +15449 576 1 12245 4.99 2005-08-18T03:46:40Z 2020-02-15T06:59:57Z +15450 576 1 13061 4.99 2005-08-19T09:43:39Z 2020-02-15T06:59:57Z +15451 576 1 13326 4.99 2005-08-19T19:52:52Z 2020-02-15T06:59:57Z +15452 576 1 14501 4.99 2005-08-21T14:14:38Z 2020-02-15T06:59:57Z +15453 576 1 14541 0.99 2005-08-21T15:34:32Z 2020-02-15T06:59:57Z +15454 576 1 15634 0.99 2005-08-23T07:34:18Z 2020-02-15T06:59:57Z +15455 576 2 11942 5.98 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15456 576 1 13464 0 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15457 577 2 291 5.99 2005-05-26T20:20:47Z 2020-02-15T06:59:57Z +15458 577 2 0.99 2005-05-27T00:46:39Z 2020-02-15T06:59:57Z +15459 577 2 2399 3.99 2005-06-18T16:06:14Z 2020-02-15T06:59:57Z +15460 577 2 3286 2.99 2005-06-21T06:31:29Z 2020-02-15T06:59:57Z +15461 577 2 3401 6.99 2005-06-21T15:52:43Z 2020-02-15T06:59:57Z +15462 577 2 3599 0.99 2005-07-06T05:16:36Z 2020-02-15T06:59:57Z +15463 577 1 3785 7.99 2005-07-06T14:00:13Z 2020-02-15T06:59:57Z +15464 577 1 4922 2.99 2005-07-08T21:44:00Z 2020-02-15T06:59:57Z +15465 577 1 6500 2.99 2005-07-12T03:11:23Z 2020-02-15T06:59:57Z +15466 577 2 6534 2.99 2005-07-12T04:39:43Z 2020-02-15T06:59:57Z +15467 577 2 7197 0.99 2005-07-27T08:49:32Z 2020-02-15T06:59:57Z +15468 577 1 7371 4.99 2005-07-27T15:18:42Z 2020-02-15T06:59:57Z +15469 577 2 7876 8.99 2005-07-28T10:24:22Z 2020-02-15T06:59:57Z +15470 577 1 8043 5.99 2005-07-28T16:45:44Z 2020-02-15T06:59:57Z +15471 577 1 8060 6.99 2005-07-28T17:10:02Z 2020-02-15T06:59:57Z +15472 577 2 8671 6.99 2005-07-29T15:49:37Z 2020-02-15T06:59:57Z +15473 577 2 10323 4.99 2005-08-01T04:44:58Z 2020-02-15T06:59:57Z +15474 577 1 10487 0.99 2005-08-01T10:26:34Z 2020-02-15T06:59:57Z +15475 577 1 10782 4.99 2005-08-01T21:23:25Z 2020-02-15T06:59:57Z +15476 577 1 11054 7.99 2005-08-02T06:33:07Z 2020-02-15T06:59:57Z +15477 577 2 11464 0.99 2005-08-02T21:42:07Z 2020-02-15T06:59:57Z +15478 577 1 12664 4.99 2005-08-18T19:10:54Z 2020-02-15T06:59:57Z +15479 577 2 12671 0.99 2005-08-18T19:19:59Z 2020-02-15T06:59:57Z +15480 577 2 13200 3.99 2005-08-19T14:55:58Z 2020-02-15T06:59:57Z +15481 577 2 13500 3.99 2005-08-20T01:54:39Z 2020-02-15T06:59:57Z +15482 577 2 15480 2.99 2005-08-23T01:57:20Z 2020-02-15T06:59:57Z +15483 577 2 15873 2.99 2005-08-23T16:27:59Z 2020-02-15T06:59:57Z +15484 577 2 16003 4.99 2005-08-23T20:47:28Z 2020-02-15T06:59:57Z +15485 578 2 660 0.99 2005-05-28T20:53:31Z 2020-02-15T06:59:57Z +15486 578 2 1826 6.99 2005-06-16T21:53:52Z 2020-02-15T06:59:57Z +15487 578 2 2615 4.99 2005-06-19T07:29:13Z 2020-02-15T06:59:57Z +15488 578 1 3305 2.99 2005-06-21T07:46:57Z 2020-02-15T06:59:57Z +15489 578 2 4496 4.99 2005-07-08T01:44:19Z 2020-02-15T06:59:57Z +15490 578 1 5377 4.99 2005-07-09T19:04:30Z 2020-02-15T06:59:57Z +15491 578 1 5445 0.99 2005-07-09T21:59:41Z 2020-02-15T06:59:57Z +15492 578 2 5876 4.99 2005-07-10T19:07:15Z 2020-02-15T06:59:57Z +15493 578 1 6784 4.99 2005-07-12T16:28:49Z 2020-02-15T06:59:57Z +15494 578 1 6830 0.99 2005-07-12T18:42:55Z 2020-02-15T06:59:57Z +15495 578 2 7059 5.99 2005-07-27T03:51:02Z 2020-02-15T06:59:57Z +15496 578 1 8179 2.99 2005-07-28T22:05:13Z 2020-02-15T06:59:57Z +15497 578 1 8218 2.99 2005-07-28T23:45:41Z 2020-02-15T06:59:57Z +15498 578 2 9970 4.99 2005-07-31T16:38:24Z 2020-02-15T06:59:57Z +15499 578 1 10029 6.99 2005-07-31T18:37:47Z 2020-02-15T06:59:57Z +15500 578 2 10182 2.99 2005-08-01T00:08:01Z 2020-02-15T06:59:57Z +15501 578 1 10779 7.99 2005-08-01T21:11:54Z 2020-02-15T06:59:57Z +15502 578 1 11199 7.99 2005-08-02T11:47:40Z 2020-02-15T06:59:57Z +15503 578 2 13071 5.99 2005-08-19T10:01:07Z 2020-02-15T06:59:57Z +15504 578 2 13498 5.99 2005-08-20T01:51:23Z 2020-02-15T06:59:57Z +15505 578 2 13552 2.99 2005-08-20T04:03:51Z 2020-02-15T06:59:57Z +15506 578 1 15652 0.99 2005-08-23T08:34:10Z 2020-02-15T06:59:57Z +15507 579 2 2425 5.99 2005-06-18T17:37:45Z 2020-02-15T06:59:57Z +15508 579 1 2522 3.99 2005-06-19T00:43:42Z 2020-02-15T06:59:57Z +15509 579 1 3111 2.99 2005-06-20T17:46:47Z 2020-02-15T06:59:57Z +15510 579 1 4619 9.99 2005-07-08T08:01:09Z 2020-02-15T06:59:57Z +15511 579 1 4933 2.99 2005-07-08T22:18:29Z 2020-02-15T06:59:57Z +15512 579 1 6304 4.99 2005-07-11T18:02:16Z 2020-02-15T06:59:57Z +15513 579 2 6814 1.99 2005-07-12T18:11:58Z 2020-02-15T06:59:57Z +15514 579 2 6824 6.99 2005-07-12T18:26:46Z 2020-02-15T06:59:57Z +15515 579 2 6969 8.99 2005-07-27T00:23:54Z 2020-02-15T06:59:57Z +15516 579 2 7221 2.99 2005-07-27T09:37:35Z 2020-02-15T06:59:57Z +15517 579 1 8354 0.99 2005-07-29T04:56:26Z 2020-02-15T06:59:57Z +15518 579 1 8876 0.99 2005-07-30T00:15:09Z 2020-02-15T06:59:57Z +15519 579 1 8996 0.99 2005-07-30T04:53:23Z 2020-02-15T06:59:57Z +15520 579 2 9349 9.99 2005-07-30T18:20:08Z 2020-02-15T06:59:57Z +15521 579 2 9553 5.99 2005-07-31T02:06:34Z 2020-02-15T06:59:57Z +15522 579 2 9976 2.99 2005-07-31T16:57:49Z 2020-02-15T06:59:57Z +15523 579 2 9997 4.99 2005-07-31T17:37:30Z 2020-02-15T06:59:57Z +15524 579 1 11494 3.99 2005-08-02T22:51:23Z 2020-02-15T06:59:57Z +15525 579 2 12051 6.99 2005-08-17T20:56:15Z 2020-02-15T06:59:57Z +15526 579 2 12315 5.99 2005-08-18T06:15:06Z 2020-02-15T06:59:57Z +15527 579 2 14047 2.99 2005-08-20T22:00:43Z 2020-02-15T06:59:57Z +15528 579 1 14185 0.99 2005-08-21T03:28:37Z 2020-02-15T06:59:57Z +15529 579 1 14543 1.99 2005-08-21T15:39:01Z 2020-02-15T06:59:57Z +15530 579 2 14560 2.99 2005-08-21T16:13:47Z 2020-02-15T06:59:57Z +15531 579 2 15601 0.99 2005-08-23T06:33:26Z 2020-02-15T06:59:57Z +15532 579 1 15838 4.99 2005-08-23T15:30:48Z 2020-02-15T06:59:57Z +15533 579 2 15794 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15534 580 1 611 0.99 2005-05-28T15:18:18Z 2020-02-15T06:59:57Z +15535 580 1 1469 0.99 2005-06-15T20:52:36Z 2020-02-15T06:59:57Z +15536 580 2 3571 1.99 2005-07-06T03:32:31Z 2020-02-15T06:59:57Z +15537 580 2 3867 1.99 2005-07-06T17:52:19Z 2020-02-15T06:59:57Z +15538 580 2 4169 1.99 2005-07-07T09:39:18Z 2020-02-15T06:59:57Z +15539 580 2 4590 3.99 2005-07-08T06:27:48Z 2020-02-15T06:59:57Z +15540 580 1 5937 6.99 2005-07-10T22:16:08Z 2020-02-15T06:59:57Z +15541 580 1 6089 2.99 2005-07-11T05:45:59Z 2020-02-15T06:59:57Z +15542 580 2 6170 2.99 2005-07-11T10:29:21Z 2020-02-15T06:59:57Z +15543 580 1 7620 0.99 2005-07-28T00:27:17Z 2020-02-15T06:59:57Z +15544 580 2 8784 4.99 2005-07-29T20:35:37Z 2020-02-15T06:59:57Z +15545 580 1 8839 3.99 2005-07-29T22:52:34Z 2020-02-15T06:59:57Z +15546 580 1 9199 0.99 2005-07-30T12:38:00Z 2020-02-15T06:59:57Z +15547 580 1 9239 3.99 2005-07-30T13:50:52Z 2020-02-15T06:59:57Z +15548 580 1 9460 5.99 2005-07-30T22:25:39Z 2020-02-15T06:59:57Z +15549 580 2 9604 4.99 2005-07-31T03:47:12Z 2020-02-15T06:59:57Z +15550 580 2 9865 0.99 2005-07-31T13:10:45Z 2020-02-15T06:59:57Z +15551 580 1 10723 3.99 2005-08-01T19:10:49Z 2020-02-15T06:59:57Z +15552 580 2 10965 3.99 2005-08-02T04:00:19Z 2020-02-15T06:59:57Z +15553 580 1 11164 8.99 2005-08-02T10:10:56Z 2020-02-15T06:59:57Z +15554 580 2 12670 2.99 2005-08-18T19:17:58Z 2020-02-15T06:59:57Z +15555 580 2 13313 2.99 2005-08-19T19:11:41Z 2020-02-15T06:59:57Z +15556 580 2 13742 2.99 2005-08-20T10:49:15Z 2020-02-15T06:59:57Z +15557 580 2 14818 2.99 2005-08-22T01:17:18Z 2020-02-15T06:59:57Z +15558 580 1 15157 6.99 2005-08-22T14:30:09Z 2020-02-15T06:59:57Z +15559 580 1 15630 6.99 2005-08-23T07:29:13Z 2020-02-15T06:59:57Z +15560 580 1 15947 4.99 2005-08-23T18:54:32Z 2020-02-15T06:59:57Z +15561 581 1 976 4.99 2005-05-30T21:11:19Z 2020-02-15T06:59:57Z +15562 581 1 1151 4.99 2005-05-31T21:29:00Z 2020-02-15T06:59:57Z +15563 581 2 1958 3.99 2005-06-17T08:52:01Z 2020-02-15T06:59:57Z +15564 581 2 2101 2.99 2005-06-17T18:57:02Z 2020-02-15T06:59:57Z +15565 581 1 2137 4.99 2005-06-17T21:18:28Z 2020-02-15T06:59:57Z +15566 581 2 4210 2.99 2005-07-07T11:36:20Z 2020-02-15T06:59:57Z +15567 581 2 4244 2.99 2005-07-07T13:41:58Z 2020-02-15T06:59:57Z +15568 581 1 4338 4.99 2005-07-07T18:39:56Z 2020-02-15T06:59:57Z +15569 581 2 4613 0.99 2005-07-08T07:44:49Z 2020-02-15T06:59:57Z +15570 581 1 4669 5.99 2005-07-08T10:13:08Z 2020-02-15T06:59:57Z +15571 581 1 4815 8.99 2005-07-08T17:12:51Z 2020-02-15T06:59:57Z +15572 581 1 4833 1.99 2005-07-08T18:07:35Z 2020-02-15T06:59:57Z +15573 581 1 5516 4.99 2005-07-10T01:13:52Z 2020-02-15T06:59:57Z +15574 581 1 5707 4.99 2005-07-10T10:26:14Z 2020-02-15T06:59:57Z +15575 581 2 5812 2.99 2005-07-10T15:27:56Z 2020-02-15T06:59:57Z +15576 581 2 7048 7.99 2005-07-27T03:31:48Z 2020-02-15T06:59:57Z +15577 581 1 7783 2.99 2005-07-28T07:14:43Z 2020-02-15T06:59:57Z +15578 581 1 9278 2.99 2005-07-30T15:15:19Z 2020-02-15T06:59:57Z +15579 581 1 9449 1.99 2005-07-30T22:02:34Z 2020-02-15T06:59:57Z +15580 581 2 11443 2.99 2005-08-02T20:29:30Z 2020-02-15T06:59:57Z +15581 581 2 11707 2.99 2005-08-17T07:24:59Z 2020-02-15T06:59:57Z +15582 581 2 13621 0.99 2005-08-20T06:43:44Z 2020-02-15T06:59:57Z +15583 581 2 13712 2.99 2005-08-20T09:38:04Z 2020-02-15T06:59:57Z +15584 581 2 14070 8.99 2005-08-20T22:56:34Z 2020-02-15T06:59:57Z +15585 581 1 14976 2.99 2005-08-22T07:10:26Z 2020-02-15T06:59:57Z +15586 581 1 15403 0.99 2005-08-22T23:18:10Z 2020-02-15T06:59:57Z +15587 581 2 15792 4.99 2005-08-23T14:05:37Z 2020-02-15T06:59:57Z +15588 582 1 281 0.99 2005-05-26T18:49:35Z 2020-02-15T06:59:57Z +15589 582 1 1719 2.99 2005-06-16T14:55:53Z 2020-02-15T06:59:57Z +15590 582 1 2337 7.99 2005-06-18T11:15:27Z 2020-02-15T06:59:57Z +15591 582 2 3071 0.99 2005-06-20T14:20:42Z 2020-02-15T06:59:57Z +15592 582 1 3767 0.99 2005-07-06T13:07:27Z 2020-02-15T06:59:57Z +15593 582 2 6629 5.99 2005-07-12T09:18:35Z 2020-02-15T06:59:57Z +15594 582 2 7126 4.99 2005-07-27T06:13:13Z 2020-02-15T06:59:57Z +15595 582 2 7311 6.99 2005-07-27T13:02:54Z 2020-02-15T06:59:57Z +15596 582 2 7412 5.99 2005-07-27T16:44:34Z 2020-02-15T06:59:57Z +15597 582 1 7575 2.99 2005-07-27T22:53:52Z 2020-02-15T06:59:57Z +15598 582 2 8308 5.99 2005-07-29T03:22:15Z 2020-02-15T06:59:57Z +15599 582 1 8554 2.99 2005-07-29T11:16:29Z 2020-02-15T06:59:57Z +15600 582 1 8778 6.99 2005-07-29T20:14:25Z 2020-02-15T06:59:57Z +15601 582 1 9768 9.99 2005-07-31T09:48:41Z 2020-02-15T06:59:57Z +15602 582 2 11290 7.99 2005-08-02T14:57:44Z 2020-02-15T06:59:57Z +15603 582 1 11667 5.99 2005-08-17T05:46:55Z 2020-02-15T06:59:57Z +15604 582 1 11708 2.99 2005-08-17T07:26:47Z 2020-02-15T06:59:57Z +15605 582 2 13815 5.99 2005-08-20T13:08:53Z 2020-02-15T06:59:57Z +15606 582 1 14376 4.99 2005-08-21T09:48:56Z 2020-02-15T06:59:57Z +15607 582 1 14568 0.99 2005-08-21T16:30:48Z 2020-02-15T06:59:57Z +15608 582 1 15090 5.99 2005-08-22T11:34:33Z 2020-02-15T06:59:57Z +15609 582 1 15503 2.99 2005-08-23T02:44:49Z 2020-02-15T06:59:57Z +15610 582 1 15539 0.99 2005-08-23T04:09:03Z 2020-02-15T06:59:57Z +15611 582 2 15911 4.99 2005-08-23T17:44:53Z 2020-02-15T06:59:57Z +15612 582 2 12127 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15613 583 1 1428 3.99 2005-06-15T18:19:30Z 2020-02-15T06:59:57Z +15614 583 1 2429 9.99 2005-06-18T17:48:28Z 2020-02-15T06:59:57Z +15615 583 2 2663 4.99 2005-06-19T10:54:00Z 2020-02-15T06:59:57Z +15616 583 2 2845 5.99 2005-06-19T22:46:37Z 2020-02-15T06:59:57Z +15617 583 2 2879 3.99 2005-06-20T01:24:10Z 2020-02-15T06:59:57Z +15618 583 1 3424 0.99 2005-06-21T17:42:51Z 2020-02-15T06:59:57Z +15619 583 1 3779 2.99 2005-07-06T13:46:36Z 2020-02-15T06:59:57Z +15620 583 1 3842 4.99 2005-07-06T16:34:32Z 2020-02-15T06:59:57Z +15621 583 2 3991 9.99 2005-07-06T23:33:41Z 2020-02-15T06:59:57Z +15622 583 1 4464 4.99 2005-07-08T00:07:18Z 2020-02-15T06:59:57Z +15623 583 1 5462 0.99 2005-07-09T22:56:53Z 2020-02-15T06:59:57Z +15624 583 1 5478 5.99 2005-07-09T23:45:15Z 2020-02-15T06:59:57Z +15625 583 2 5747 7.99 2005-07-10T12:15:33Z 2020-02-15T06:59:57Z +15626 583 2 6684 6.99 2005-07-12T12:14:42Z 2020-02-15T06:59:57Z +15627 583 1 7401 5.99 2005-07-27T16:17:55Z 2020-02-15T06:59:57Z +15628 583 2 8568 7.99 2005-07-29T11:38:22Z 2020-02-15T06:59:57Z +15629 583 1 9550 7.99 2005-07-31T01:57:34Z 2020-02-15T06:59:57Z +15630 583 2 9808 1.99 2005-07-31T11:17:22Z 2020-02-15T06:59:57Z +15631 583 2 10301 4.99 2005-08-01T04:09:37Z 2020-02-15T06:59:57Z +15632 583 2 10586 2.99 2005-08-01T14:00:59Z 2020-02-15T06:59:57Z +15633 583 2 10800 4.99 2005-08-01T22:07:44Z 2020-02-15T06:59:57Z +15634 583 2 11002 4.99 2005-08-02T05:02:56Z 2020-02-15T06:59:57Z +15635 583 1 14259 0.99 2005-08-21T06:00:22Z 2020-02-15T06:59:57Z +15636 584 2 379 4.99 2005-05-27T09:25:32Z 2020-02-15T06:59:57Z +15637 584 1 626 4.99 2005-05-28T16:58:09Z 2020-02-15T06:59:57Z +15638 584 1 920 4.99 2005-05-30T11:44:01Z 2020-02-15T06:59:57Z +15639 584 2 1436 3.99 2005-06-15T18:35:40Z 2020-02-15T06:59:57Z +15640 584 2 3317 6.99 2005-06-21T08:22:32Z 2020-02-15T06:59:57Z +15641 584 2 3741 2.99 2005-07-06T12:00:18Z 2020-02-15T06:59:57Z +15642 584 2 3895 7.99 2005-07-06T19:04:24Z 2020-02-15T06:59:57Z +15643 584 1 4410 0.99 2005-07-07T21:48:16Z 2020-02-15T06:59:57Z +15644 584 1 4977 0.99 2005-07-09T00:15:50Z 2020-02-15T06:59:57Z +15645 584 2 6954 0.99 2005-07-26T23:55:13Z 2020-02-15T06:59:57Z +15646 584 1 7186 2.99 2005-07-27T08:26:12Z 2020-02-15T06:59:57Z +15647 584 1 7372 4.99 2005-07-27T15:18:42Z 2020-02-15T06:59:57Z +15648 584 1 7659 4.99 2005-07-28T02:09:45Z 2020-02-15T06:59:57Z +15649 584 2 8879 4.99 2005-07-30T00:16:02Z 2020-02-15T06:59:57Z +15650 584 2 9451 3.99 2005-07-30T22:10:17Z 2020-02-15T06:59:57Z +15651 584 1 9719 5.99 2005-07-31T08:25:13Z 2020-02-15T06:59:57Z +15652 584 2 10073 2.99 2005-07-31T19:53:15Z 2020-02-15T06:59:57Z +15653 584 1 10914 4.99 2005-08-02T02:04:43Z 2020-02-15T06:59:57Z +15654 584 2 10966 0.99 2005-08-02T04:00:47Z 2020-02-15T06:59:57Z +15655 584 1 11213 4.99 2005-08-02T12:18:35Z 2020-02-15T06:59:57Z +15656 584 2 11500 6.99 2005-08-16T23:01:22Z 2020-02-15T06:59:57Z +15657 584 2 12507 8.99 2005-08-18T13:19:13Z 2020-02-15T06:59:57Z +15658 584 2 12541 2.99 2005-08-18T14:18:30Z 2020-02-15T06:59:57Z +15659 584 2 12693 5.99 2005-08-18T20:10:19Z 2020-02-15T06:59:57Z +15660 584 1 12844 2.99 2005-08-19T01:59:08Z 2020-02-15T06:59:57Z +15661 584 2 14102 5.99 2005-08-21T00:35:21Z 2020-02-15T06:59:57Z +15662 584 2 14230 5.99 2005-08-21T04:57:29Z 2020-02-15T06:59:57Z +15663 584 2 14447 4.99 2005-08-21T12:12:05Z 2020-02-15T06:59:57Z +15664 584 1 14930 1.99 2005-08-22T05:38:32Z 2020-02-15T06:59:57Z +15665 584 1 15615 0.99 2005-08-23T07:06:00Z 2020-02-15T06:59:57Z +15666 585 1 1344 0.99 2005-06-15T12:29:41Z 2020-02-15T06:59:57Z +15667 585 2 1346 7.99 2005-06-15T12:39:52Z 2020-02-15T06:59:57Z +15668 585 1 2674 0.99 2005-06-19T11:47:59Z 2020-02-15T06:59:57Z +15669 585 1 2930 3.99 2005-06-20T04:50:29Z 2020-02-15T06:59:57Z +15670 585 2 4156 4.99 2005-07-07T09:03:51Z 2020-02-15T06:59:57Z +15671 585 2 4579 4.99 2005-07-08T06:01:56Z 2020-02-15T06:59:57Z +15672 585 1 4684 9.99 2005-07-08T10:41:06Z 2020-02-15T06:59:57Z +15673 585 2 5284 2.99 2005-07-09T15:08:21Z 2020-02-15T06:59:57Z +15674 585 2 5950 4.99 2005-07-10T23:13:45Z 2020-02-15T06:59:57Z +15675 585 2 6733 6.99 2005-07-12T14:04:01Z 2020-02-15T06:59:57Z +15676 585 1 7131 2.99 2005-07-27T06:25:06Z 2020-02-15T06:59:57Z +15677 585 1 7384 4.99 2005-07-27T15:49:45Z 2020-02-15T06:59:57Z +15678 585 2 7409 4.99 2005-07-27T16:38:24Z 2020-02-15T06:59:57Z +15679 585 2 8353 2.99 2005-07-29T04:52:10Z 2020-02-15T06:59:57Z +15680 585 2 9407 8.99 2005-07-30T20:25:24Z 2020-02-15T06:59:57Z +15681 585 1 9590 3.99 2005-07-31T03:17:16Z 2020-02-15T06:59:57Z +15682 585 1 9860 6.99 2005-07-31T13:03:24Z 2020-02-15T06:59:57Z +15683 585 2 10573 0.99 2005-08-01T13:27:24Z 2020-02-15T06:59:57Z +15684 585 1 11285 9.99 2005-08-02T14:44:02Z 2020-02-15T06:59:57Z +15685 585 2 13593 3.99 2005-08-20T05:50:52Z 2020-02-15T06:59:57Z +15686 585 2 13939 0.99 2005-08-20T17:28:01Z 2020-02-15T06:59:57Z +15687 585 1 15804 4.99 2005-08-23T14:29:16Z 2020-02-15T06:59:57Z +15688 585 1 15896 6.99 2005-08-23T17:09:56Z 2020-02-15T06:59:57Z +15689 585 2 14604 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15690 586 1 138 4.99 2005-05-25T22:48:22Z 2020-02-15T06:59:57Z +15691 586 1 900 8.99 2005-05-30T09:38:41Z 2020-02-15T06:59:57Z +15692 586 1 1260 2.99 2005-06-15T06:42:25Z 2020-02-15T06:59:57Z +15693 586 2 1540 0.99 2005-06-16T01:14:56Z 2020-02-15T06:59:57Z +15694 586 2 3487 6.99 2005-07-05T23:30:36Z 2020-02-15T06:59:57Z +15695 586 2 3733 4.99 2005-07-06T11:33:55Z 2020-02-15T06:59:57Z +15696 586 2 5382 2.99 2005-07-09T19:12:57Z 2020-02-15T06:59:57Z +15697 586 1 6679 2.99 2005-07-12T12:01:07Z 2020-02-15T06:59:57Z +15698 586 2 9786 2.99 2005-07-31T10:25:21Z 2020-02-15T06:59:57Z +15699 586 2 9896 2.99 2005-07-31T14:09:48Z 2020-02-15T06:59:57Z +15700 586 1 11034 2.99 2005-08-02T05:54:53Z 2020-02-15T06:59:57Z +15701 586 1 11763 0.99 2005-08-17T09:51:39Z 2020-02-15T06:59:57Z +15702 586 1 12013 4.99 2005-08-17T19:23:02Z 2020-02-15T06:59:57Z +15703 586 1 12898 0.99 2005-08-19T03:54:34Z 2020-02-15T06:59:57Z +15704 586 2 14043 2.99 2005-08-20T21:46:43Z 2020-02-15T06:59:57Z +15705 586 1 14392 1.99 2005-08-21T10:19:25Z 2020-02-15T06:59:57Z +15706 586 2 14533 2.99 2005-08-21T15:15:19Z 2020-02-15T06:59:57Z +15707 586 1 15666 3.99 2005-08-23T09:01:10Z 2020-02-15T06:59:57Z +15708 586 2 15684 0.99 2005-08-23T09:40:04Z 2020-02-15T06:59:57Z +15709 587 1 181 4.99 2005-05-26T04:47:06Z 2020-02-15T06:59:57Z +15710 587 1 361 0.99 2005-05-27T07:03:28Z 2020-02-15T06:59:57Z +15711 587 2 1330 2.99 2005-06-15T11:29:17Z 2020-02-15T06:59:57Z +15712 587 2 2034 4.99 2005-06-17T13:27:16Z 2020-02-15T06:59:57Z +15713 587 1 2220 2.99 2005-06-18T03:21:36Z 2020-02-15T06:59:57Z +15714 587 1 2329 4.99 2005-06-18T10:22:52Z 2020-02-15T06:59:57Z +15715 587 2 3562 2.99 2005-07-06T02:54:36Z 2020-02-15T06:59:57Z +15716 587 2 3969 0.99 2005-07-06T22:47:59Z 2020-02-15T06:59:57Z +15717 587 2 5243 3.99 2005-07-09T13:22:08Z 2020-02-15T06:59:57Z +15718 587 1 6639 0.99 2005-07-12T10:00:44Z 2020-02-15T06:59:57Z +15719 587 2 6665 6.99 2005-07-12T11:29:14Z 2020-02-15T06:59:57Z +15720 587 1 7501 8.99 2005-07-27T20:16:59Z 2020-02-15T06:59:57Z +15721 587 2 8776 5.99 2005-07-29T20:07:06Z 2020-02-15T06:59:57Z +15722 587 2 9720 6.99 2005-07-31T08:25:21Z 2020-02-15T06:59:57Z +15723 587 2 9785 4.99 2005-07-31T10:22:15Z 2020-02-15T06:59:57Z +15724 587 2 9909 5.99 2005-07-31T14:43:34Z 2020-02-15T06:59:57Z +15725 587 2 10224 4.99 2005-08-01T01:31:56Z 2020-02-15T06:59:57Z +15726 587 1 10825 2.99 2005-08-01T23:05:33Z 2020-02-15T06:59:57Z +15727 587 1 11078 2.99 2005-08-02T07:26:58Z 2020-02-15T06:59:57Z +15728 587 2 11403 4.99 2005-08-02T19:10:21Z 2020-02-15T06:59:57Z +15729 587 2 12164 4.99 2005-08-18T00:46:38Z 2020-02-15T06:59:57Z +15730 587 2 12330 6.99 2005-08-18T06:46:33Z 2020-02-15T06:59:57Z +15731 587 2 14710 4.99 2005-08-21T21:15:23Z 2020-02-15T06:59:57Z +15732 587 2 15348 2.99 2005-08-22T21:13:46Z 2020-02-15T06:59:57Z +15733 587 2 15349 0.99 2005-08-22T21:13:51Z 2020-02-15T06:59:57Z +15734 587 1 12144 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15735 588 1 576 2.99 2005-05-28T10:56:10Z 2020-02-15T06:59:57Z +15736 588 1 961 4.99 2005-05-30T18:16:44Z 2020-02-15T06:59:57Z +15737 588 2 1885 2.99 2005-06-17T03:35:59Z 2020-02-15T06:59:57Z +15738 588 2 1903 6.99 2005-06-17T04:37:20Z 2020-02-15T06:59:57Z +15739 588 2 2270 7.99 2005-06-18T06:29:01Z 2020-02-15T06:59:57Z +15740 588 1 2453 2.99 2005-06-18T19:30:53Z 2020-02-15T06:59:57Z +15741 588 2 2920 3.99 2005-06-20T04:12:46Z 2020-02-15T06:59:57Z +15742 588 1 3628 4.99 2005-07-06T06:19:43Z 2020-02-15T06:59:57Z +15743 588 1 4101 0.99 2005-07-07T06:25:11Z 2020-02-15T06:59:57Z +15744 588 2 4207 5.99 2005-07-07T11:32:45Z 2020-02-15T06:59:57Z +15745 588 2 5203 2.99 2005-07-09T10:53:59Z 2020-02-15T06:59:57Z +15746 588 1 5335 4.99 2005-07-09T17:00:49Z 2020-02-15T06:59:57Z +15747 588 1 6368 4.99 2005-07-11T21:19:01Z 2020-02-15T06:59:57Z +15748 588 2 7377 2.99 2005-07-27T15:31:28Z 2020-02-15T06:59:57Z +15749 588 2 7903 2.99 2005-07-28T11:20:36Z 2020-02-15T06:59:57Z +15750 588 1 8421 4.99 2005-07-29T07:00:47Z 2020-02-15T06:59:57Z +15751 588 1 8429 2.99 2005-07-29T07:11:49Z 2020-02-15T06:59:57Z +15752 588 2 8519 2.99 2005-07-29T10:09:43Z 2020-02-15T06:59:57Z +15753 588 1 8769 2.99 2005-07-29T19:45:33Z 2020-02-15T06:59:57Z +15754 588 2 9326 2.99 2005-07-30T17:30:03Z 2020-02-15T06:59:57Z +15755 588 2 9370 4.99 2005-07-30T18:57:29Z 2020-02-15T06:59:57Z +15756 588 2 10373 4.99 2005-08-01T06:24:26Z 2020-02-15T06:59:57Z +15757 588 1 12185 2.99 2005-08-18T01:40:14Z 2020-02-15T06:59:57Z +15758 588 2 12815 4.99 2005-08-19T00:59:42Z 2020-02-15T06:59:57Z +15759 588 1 13064 4.99 2005-08-19T09:46:53Z 2020-02-15T06:59:57Z +15760 588 1 13923 1.99 2005-08-20T17:05:02Z 2020-02-15T06:59:57Z +15761 588 1 15109 1.99 2005-08-22T12:12:58Z 2020-02-15T06:59:57Z +15762 588 1 15158 2.99 2005-08-22T14:30:39Z 2020-02-15T06:59:57Z +15763 588 1 15209 4.99 2005-08-22T16:37:32Z 2020-02-15T06:59:57Z +15764 589 1 531 0.99 2005-05-28T05:23:38Z 2020-02-15T06:59:57Z +15765 589 1 596 4.99 2005-05-28T14:00:03Z 2020-02-15T06:59:57Z +15766 589 1 737 4.99 2005-05-29T08:11:31Z 2020-02-15T06:59:57Z +15767 589 1 1439 4.99 2005-06-15T18:45:32Z 2020-02-15T06:59:57Z +15768 589 2 1703 4.99 2005-06-16T13:28:44Z 2020-02-15T06:59:57Z +15769 589 2 2652 8.99 2005-06-19T10:35:26Z 2020-02-15T06:59:57Z +15770 589 1 2707 8.99 2005-06-19T13:57:08Z 2020-02-15T06:59:57Z +15771 589 1 2979 2.99 2005-06-20T08:31:05Z 2020-02-15T06:59:57Z +15772 589 2 4986 2.99 2005-07-09T00:44:33Z 2020-02-15T06:59:57Z +15773 589 1 5951 0.99 2005-07-10T23:14:29Z 2020-02-15T06:59:57Z +15774 589 2 6177 4.99 2005-07-11T10:53:49Z 2020-02-15T06:59:57Z +15775 589 2 6247 3.99 2005-07-11T15:00:05Z 2020-02-15T06:59:57Z +15776 589 2 7250 0.99 2005-07-27T10:44:09Z 2020-02-15T06:59:57Z +15777 589 2 7431 3.99 2005-07-27T17:27:27Z 2020-02-15T06:59:57Z +15778 589 2 7948 9.99 2005-07-28T13:06:16Z 2020-02-15T06:59:57Z +15779 589 2 8056 0.99 2005-07-28T17:04:15Z 2020-02-15T06:59:57Z +15780 589 1 8374 3.99 2005-07-29T05:24:02Z 2020-02-15T06:59:57Z +15781 589 1 9153 4.99 2005-07-30T10:58:16Z 2020-02-15T06:59:57Z +15782 589 2 10544 4.99 2005-08-01T12:36:21Z 2020-02-15T06:59:57Z +15783 589 1 11980 4.99 2005-08-17T18:10:18Z 2020-02-15T06:59:57Z +15784 589 1 12738 7.99 2005-08-18T22:11:47Z 2020-02-15T06:59:57Z +15785 589 2 12933 8.99 2005-08-19T05:18:20Z 2020-02-15T06:59:57Z +15786 589 1 14038 6.99 2005-08-20T21:39:23Z 2020-02-15T06:59:57Z +15787 589 1 14254 6.99 2005-08-21T05:51:28Z 2020-02-15T06:59:57Z +15788 589 1 14544 0.99 2005-08-21T15:41:01Z 2020-02-15T06:59:57Z +15789 589 2 14706 0.99 2005-08-21T21:04:42Z 2020-02-15T06:59:57Z +15790 589 2 15917 5.99 2005-08-23T17:57:28Z 2020-02-15T06:59:57Z +15791 589 2 15992 0.99 2005-08-23T20:28:32Z 2020-02-15T06:59:57Z +15792 590 1 602 3.99 2005-05-28T14:15:54Z 2020-02-15T06:59:57Z +15793 590 2 1456 7.99 2005-06-15T20:00:11Z 2020-02-15T06:59:57Z +15794 590 2 2352 2.99 2005-06-18T12:40:15Z 2020-02-15T06:59:57Z +15795 590 2 2775 2.99 2005-06-19T18:14:20Z 2020-02-15T06:59:57Z +15796 590 1 2916 6.99 2005-06-20T04:01:04Z 2020-02-15T06:59:57Z +15797 590 1 2964 9.99 2005-06-20T07:33:29Z 2020-02-15T06:59:57Z +15798 590 2 4685 4.99 2005-07-08T10:45:13Z 2020-02-15T06:59:57Z +15799 590 1 4710 2.99 2005-07-08T12:04:53Z 2020-02-15T06:59:57Z +15800 590 2 4722 4.99 2005-07-08T12:42:27Z 2020-02-15T06:59:57Z +15801 590 1 5165 0.99 2005-07-09T09:08:53Z 2020-02-15T06:59:57Z +15802 590 1 5529 2.99 2005-07-10T02:11:13Z 2020-02-15T06:59:57Z +15803 590 1 5991 4.99 2005-07-11T01:03:38Z 2020-02-15T06:59:57Z +15804 590 2 6232 4.99 2005-07-11T14:08:27Z 2020-02-15T06:59:57Z +15805 590 2 6492 4.99 2005-07-12T02:28:40Z 2020-02-15T06:59:57Z +15806 590 1 7010 4.99 2005-07-27T01:56:01Z 2020-02-15T06:59:57Z +15807 590 2 7665 2.99 2005-07-28T02:28:30Z 2020-02-15T06:59:57Z +15808 590 1 8195 5.99 2005-07-28T22:52:58Z 2020-02-15T06:59:57Z +15809 590 1 8801 4.99 2005-07-29T21:25:22Z 2020-02-15T06:59:57Z +15810 590 2 9126 0.99 2005-07-30T09:44:15Z 2020-02-15T06:59:57Z +15811 590 1 9884 4.99 2005-07-31T13:56:24Z 2020-02-15T06:59:57Z +15812 590 1 10657 4.99 2005-08-01T16:38:44Z 2020-02-15T06:59:57Z +15813 590 2 11578 5.99 2005-08-17T01:54:13Z 2020-02-15T06:59:57Z +15814 590 2 11713 3.99 2005-08-17T07:34:05Z 2020-02-15T06:59:57Z +15815 590 1 14830 2.99 2005-08-22T01:37:19Z 2020-02-15T06:59:57Z +15816 590 2 15458 2.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15817 591 1 1418 0.99 2005-06-15T17:51:27Z 2020-02-15T06:59:57Z +15818 591 2 3341 2.99 2005-06-21T10:37:25Z 2020-02-15T06:59:57Z +15819 591 2 3435 4.99 2005-06-21T19:14:58Z 2020-02-15T06:59:57Z +15820 591 1 3636 0.99 2005-07-06T07:03:52Z 2020-02-15T06:59:57Z +15821 591 2 4383 11.99 2005-07-07T20:45:51Z 2020-02-15T06:59:57Z +15822 591 1 4581 6.99 2005-07-08T06:05:06Z 2020-02-15T06:59:57Z +15823 591 1 5704 5.99 2005-07-10T10:06:29Z 2020-02-15T06:59:57Z +15824 591 1 5759 6.99 2005-07-10T12:43:22Z 2020-02-15T06:59:57Z +15825 591 1 7118 8.99 2005-07-27T05:53:50Z 2020-02-15T06:59:57Z +15826 591 1 7212 2.99 2005-07-27T09:21:22Z 2020-02-15T06:59:57Z +15827 591 2 7511 4.99 2005-07-27T20:38:40Z 2020-02-15T06:59:57Z +15828 591 1 7549 3.99 2005-07-27T21:53:21Z 2020-02-15T06:59:57Z +15829 591 2 7741 0.99 2005-07-28T05:25:55Z 2020-02-15T06:59:57Z +15830 591 1 7997 4.99 2005-07-28T15:02:25Z 2020-02-15T06:59:57Z +15831 591 1 8149 3.99 2005-07-28T20:48:12Z 2020-02-15T06:59:57Z +15832 591 2 8666 5.99 2005-07-29T15:39:38Z 2020-02-15T06:59:57Z +15833 591 2 8819 4.99 2005-07-29T22:14:26Z 2020-02-15T06:59:57Z +15834 591 1 9684 0.99 2005-07-31T06:48:33Z 2020-02-15T06:59:57Z +15835 591 1 10415 4.99 2005-08-01T08:05:59Z 2020-02-15T06:59:57Z +15836 591 2 12203 5.99 2005-08-18T02:18:52Z 2020-02-15T06:59:57Z +15837 591 2 12227 4.99 2005-08-18T03:04:28Z 2020-02-15T06:59:57Z +15838 591 1 12547 4.99 2005-08-18T14:29:39Z 2020-02-15T06:59:57Z +15839 591 1 12571 5.99 2005-08-18T15:31:18Z 2020-02-15T06:59:57Z +15840 591 1 12934 5.99 2005-08-19T05:18:42Z 2020-02-15T06:59:57Z +15841 591 2 13104 2.99 2005-08-19T11:06:06Z 2020-02-15T06:59:57Z +15842 591 2 13343 3.99 2005-08-19T20:22:08Z 2020-02-15T06:59:57Z +15843 591 1 13867 9.99 2005-08-20T15:05:42Z 2020-02-15T06:59:57Z +15844 592 2 1163 6.99 2005-06-14T23:12:46Z 2020-02-15T06:59:57Z +15845 592 2 1423 5.99 2005-06-15T18:08:12Z 2020-02-15T06:59:57Z +15846 592 1 1479 2.99 2005-06-15T21:13:38Z 2020-02-15T06:59:57Z +15847 592 1 2627 0.99 2005-06-19T08:32:00Z 2020-02-15T06:59:57Z +15848 592 1 3158 7.99 2005-06-20T21:08:19Z 2020-02-15T06:59:57Z +15849 592 2 3560 2.99 2005-07-06T02:51:37Z 2020-02-15T06:59:57Z +15850 592 1 3973 11.99 2005-07-06T22:58:31Z 2020-02-15T06:59:57Z +15851 592 1 4129 1.99 2005-07-07T07:37:03Z 2020-02-15T06:59:57Z +15852 592 1 4145 9.99 2005-07-07T08:26:39Z 2020-02-15T06:59:57Z +15853 592 1 4460 0.99 2005-07-07T23:50:14Z 2020-02-15T06:59:57Z +15854 592 1 4518 2.99 2005-07-08T02:48:36Z 2020-02-15T06:59:57Z +15855 592 1 6937 0.99 2005-07-26T23:15:50Z 2020-02-15T06:59:57Z +15856 592 2 7173 0.99 2005-07-27T07:59:24Z 2020-02-15T06:59:57Z +15857 592 1 7278 3.99 2005-07-27T11:50:34Z 2020-02-15T06:59:57Z +15858 592 2 7364 4.99 2005-07-27T14:58:40Z 2020-02-15T06:59:57Z +15859 592 1 8730 2.99 2005-07-29T18:23:34Z 2020-02-15T06:59:57Z +15860 592 2 8773 0.99 2005-07-29T19:55:34Z 2020-02-15T06:59:57Z +15861 592 1 9268 4.99 2005-07-30T15:02:30Z 2020-02-15T06:59:57Z +15862 592 1 9437 3.99 2005-07-30T21:36:04Z 2020-02-15T06:59:57Z +15863 592 2 9666 6.99 2005-07-31T06:20:58Z 2020-02-15T06:59:57Z +15864 592 2 10383 0.99 2005-08-01T06:37:16Z 2020-02-15T06:59:57Z +15865 592 2 10634 2.99 2005-08-01T15:37:48Z 2020-02-15T06:59:57Z +15866 592 1 11410 8.99 2005-08-02T19:29:01Z 2020-02-15T06:59:57Z +15867 592 2 12043 0.99 2005-08-17T20:38:21Z 2020-02-15T06:59:57Z +15868 592 2 12619 0.99 2005-08-18T17:24:15Z 2020-02-15T06:59:57Z +15869 592 1 12976 1.99 2005-08-19T06:52:58Z 2020-02-15T06:59:57Z +15870 592 1 13157 2.99 2005-08-19T13:12:28Z 2020-02-15T06:59:57Z +15871 592 2 13662 3.99 2005-08-20T08:11:58Z 2020-02-15T06:59:57Z +15872 592 2 14606 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15873 593 1 790 2.99 2005-05-29T16:19:29Z 2020-02-15T06:59:57Z +15874 593 1 991 8.99 2005-05-30T23:29:22Z 2020-02-15T06:59:57Z +15875 593 2 2055 5.99 2005-06-17T15:27:03Z 2020-02-15T06:59:57Z +15876 593 2 2205 4.99 2005-06-18T02:14:34Z 2020-02-15T06:59:57Z +15877 593 1 2441 4.99 2005-06-18T18:45:11Z 2020-02-15T06:59:57Z +15878 593 1 2832 4.99 2005-06-19T21:21:53Z 2020-02-15T06:59:57Z +15879 593 2 3542 2.99 2005-07-06T01:51:42Z 2020-02-15T06:59:57Z +15880 593 2 4075 2.99 2005-07-07T04:51:44Z 2020-02-15T06:59:57Z +15881 593 2 4280 3.99 2005-07-07T15:09:31Z 2020-02-15T06:59:57Z +15882 593 2 4623 0.99 2005-07-08T08:03:22Z 2020-02-15T06:59:57Z +15883 593 2 4781 4.99 2005-07-08T16:06:55Z 2020-02-15T06:59:57Z +15884 593 2 4867 0.99 2005-07-08T19:10:52Z 2020-02-15T06:59:57Z +15885 593 1 6386 2.99 2005-07-11T22:14:57Z 2020-02-15T06:59:57Z +15886 593 1 6731 2.99 2005-07-12T13:58:27Z 2020-02-15T06:59:57Z +15887 593 2 7958 4.99 2005-07-28T13:34:34Z 2020-02-15T06:59:57Z +15888 593 1 8497 2.99 2005-07-29T09:07:03Z 2020-02-15T06:59:57Z +15889 593 2 9329 6.99 2005-07-30T17:42:38Z 2020-02-15T06:59:57Z +15890 593 1 9483 6.99 2005-07-30T23:31:31Z 2020-02-15T06:59:57Z +15891 593 1 10368 3.99 2005-08-01T06:13:38Z 2020-02-15T06:59:57Z +15892 593 2 10533 3.99 2005-08-01T12:14:16Z 2020-02-15T06:59:57Z +15893 593 1 10840 5.99 2005-08-01T23:38:34Z 2020-02-15T06:59:57Z +15894 593 2 10904 4.99 2005-08-02T01:43:02Z 2020-02-15T06:59:57Z +15895 593 2 12744 2.99 2005-08-18T22:22:36Z 2020-02-15T06:59:57Z +15896 593 1 13524 6.99 2005-08-20T02:48:43Z 2020-02-15T06:59:57Z +15897 593 1 14408 5.99 2005-08-21T10:47:24Z 2020-02-15T06:59:57Z +15898 593 1 14653 0.99 2005-08-21T19:35:59Z 2020-02-15T06:59:57Z +15899 594 1 313 4.99 2005-05-26T22:56:19Z 2020-02-15T06:59:57Z +15900 594 1 360 8.99 2005-05-27T06:51:14Z 2020-02-15T06:59:57Z +15901 594 2 1018 0.99 2005-05-31T02:53:42Z 2020-02-15T06:59:57Z +15902 594 1 1045 6.99 2005-05-31T06:29:01Z 2020-02-15T06:59:57Z +15903 594 2 1537 5.99 2005-06-16T00:52:51Z 2020-02-15T06:59:57Z +15904 594 1 1816 4.99 2005-06-16T21:20:41Z 2020-02-15T06:59:57Z +15905 594 1 1950 2.99 2005-06-17T08:26:52Z 2020-02-15T06:59:57Z +15906 594 1 2276 6.99 2005-06-18T06:33:48Z 2020-02-15T06:59:57Z +15907 594 2 2786 0.99 2005-06-19T18:46:43Z 2020-02-15T06:59:57Z +15908 594 2 3302 1.99 2005-06-21T07:33:40Z 2020-02-15T06:59:57Z +15909 594 2 3474 0.99 2005-07-05T22:59:53Z 2020-02-15T06:59:57Z +15910 594 1 3546 4.99 2005-07-06T02:17:54Z 2020-02-15T06:59:57Z +15911 594 2 3960 2.99 2005-07-06T22:08:53Z 2020-02-15T06:59:57Z +15912 594 1 4037 5.99 2005-07-07T02:52:52Z 2020-02-15T06:59:57Z +15913 594 1 4154 3.99 2005-07-07T08:58:23Z 2020-02-15T06:59:57Z +15914 594 2 5386 2.99 2005-07-09T19:19:09Z 2020-02-15T06:59:57Z +15915 594 1 6473 6.99 2005-07-12T01:35:40Z 2020-02-15T06:59:57Z +15916 594 1 7533 8.99 2005-07-27T21:24:33Z 2020-02-15T06:59:57Z +15917 594 1 8567 1.99 2005-07-29T11:37:30Z 2020-02-15T06:59:57Z +15918 594 1 8603 2.99 2005-07-29T13:07:07Z 2020-02-15T06:59:57Z +15919 594 2 8820 5.99 2005-07-29T22:14:56Z 2020-02-15T06:59:57Z +15920 594 1 9545 7.99 2005-07-31T01:46:24Z 2020-02-15T06:59:57Z +15921 594 1 9698 3.99 2005-07-31T07:24:35Z 2020-02-15T06:59:57Z +15922 594 2 9802 4.99 2005-07-31T11:04:20Z 2020-02-15T06:59:57Z +15923 594 2 10704 8.99 2005-08-01T18:38:02Z 2020-02-15T06:59:57Z +15924 594 2 14824 4.99 2005-08-22T01:27:51Z 2020-02-15T06:59:57Z +15925 594 1 14999 4.99 2005-08-22T07:54:47Z 2020-02-15T06:59:57Z +15926 595 1 613 6.99 2005-05-28T15:27:22Z 2020-02-15T06:59:57Z +15927 595 2 1170 2.99 2005-06-14T23:47:35Z 2020-02-15T06:59:57Z +15928 595 2 3371 4.99 2005-06-21T13:27:22Z 2020-02-15T06:59:57Z +15929 595 1 3789 9.99 2005-07-06T14:02:26Z 2020-02-15T06:59:57Z +15930 595 1 4017 4.99 2005-07-07T01:08:18Z 2020-02-15T06:59:57Z +15931 595 1 4241 4.99 2005-07-07T13:39:00Z 2020-02-15T06:59:57Z +15932 595 2 4775 2.99 2005-07-08T15:44:05Z 2020-02-15T06:59:57Z +15933 595 1 5631 1.99 2005-07-10T06:15:45Z 2020-02-15T06:59:57Z +15934 595 1 5952 1.99 2005-07-10T23:18:20Z 2020-02-15T06:59:57Z +15935 595 1 6105 6.99 2005-07-11T07:03:19Z 2020-02-15T06:59:57Z +15936 595 1 6704 6.99 2005-07-12T12:50:24Z 2020-02-15T06:59:57Z +15937 595 1 7086 4.99 2005-07-27T04:39:46Z 2020-02-15T06:59:57Z +15938 595 2 7307 0.99 2005-07-27T12:59:10Z 2020-02-15T06:59:57Z +15939 595 1 7396 4.99 2005-07-27T16:03:53Z 2020-02-15T06:59:57Z +15940 595 2 7490 3.99 2005-07-27T19:48:12Z 2020-02-15T06:59:57Z +15941 595 1 9152 2.99 2005-07-30T10:51:27Z 2020-02-15T06:59:57Z +15942 595 2 9223 2.99 2005-07-30T13:23:20Z 2020-02-15T06:59:57Z +15943 595 1 9354 4.99 2005-07-30T18:32:51Z 2020-02-15T06:59:57Z +15944 595 2 9497 0.99 2005-07-30T23:56:54Z 2020-02-15T06:59:57Z +15945 595 2 9542 4.99 2005-07-31T01:41:48Z 2020-02-15T06:59:57Z +15946 595 1 9631 2.99 2005-07-31T05:02:00Z 2020-02-15T06:59:57Z +15947 595 2 9826 10.99 2005-07-31T11:51:46Z 2020-02-15T06:59:57Z +15948 595 1 10729 2.99 2005-08-01T19:21:11Z 2020-02-15T06:59:57Z +15949 595 1 10932 2.99 2005-08-02T02:46:22Z 2020-02-15T06:59:57Z +15950 595 2 11748 0.99 2005-08-17T09:04:02Z 2020-02-15T06:59:57Z +15951 595 1 12235 0.99 2005-08-18T03:17:50Z 2020-02-15T06:59:57Z +15952 595 1 14334 0.99 2005-08-21T08:32:32Z 2020-02-15T06:59:57Z +15953 595 2 15576 2.99 2005-08-23T05:32:03Z 2020-02-15T06:59:57Z +15954 595 2 15994 0.99 2005-08-23T20:29:10Z 2020-02-15T06:59:57Z +15955 595 2 16016 2.99 2005-08-23T21:26:35Z 2020-02-15T06:59:57Z +15956 596 2 303 4.99 2005-05-26T21:16:52Z 2020-02-15T06:59:57Z +15957 596 2 625 0.99 2005-05-28T16:35:46Z 2020-02-15T06:59:57Z +15958 596 2 667 4.99 2005-05-28T21:49:02Z 2020-02-15T06:59:57Z +15959 596 2 782 1.99 2005-05-29T14:38:57Z 2020-02-15T06:59:57Z +15960 596 1 914 2.99 2005-05-30T11:06:00Z 2020-02-15T06:59:57Z +15961 596 1 974 6.99 2005-05-30T20:28:42Z 2020-02-15T06:59:57Z +15962 596 1 1644 1.99 2005-06-16T08:58:18Z 2020-02-15T06:59:57Z +15963 596 1 2767 1.99 2005-06-19T17:46:35Z 2020-02-15T06:59:57Z +15964 596 2 5742 3.99 2005-07-10T11:56:18Z 2020-02-15T06:59:57Z +15965 596 1 6015 2.99 2005-07-11T02:04:12Z 2020-02-15T06:59:57Z +15966 596 1 6017 0.99 2005-07-11T02:05:32Z 2020-02-15T06:59:57Z +15967 596 1 6197 4.99 2005-07-11T12:09:51Z 2020-02-15T06:59:57Z +15968 596 2 6883 4.99 2005-07-12T20:50:48Z 2020-02-15T06:59:57Z +15969 596 1 10094 3.99 2005-07-31T20:31:18Z 2020-02-15T06:59:57Z +15970 596 2 10692 4.99 2005-08-01T18:12:35Z 2020-02-15T06:59:57Z +15971 596 1 10756 2.99 2005-08-01T20:17:03Z 2020-02-15T06:59:57Z +15972 596 2 10804 0.99 2005-08-01T22:22:11Z 2020-02-15T06:59:57Z +15973 596 2 11009 4.99 2005-08-02T05:06:23Z 2020-02-15T06:59:57Z +15974 596 2 11852 3.99 2005-08-17T13:38:27Z 2020-02-15T06:59:57Z +15975 596 1 11934 0.99 2005-08-17T16:40:00Z 2020-02-15T06:59:57Z +15976 596 2 12560 4.99 2005-08-18T14:54:19Z 2020-02-15T06:59:57Z +15977 596 1 12878 4.99 2005-08-19T03:17:08Z 2020-02-15T06:59:57Z +15978 596 1 13648 4.99 2005-08-20T07:48:10Z 2020-02-15T06:59:57Z +15979 596 1 14050 3.99 2005-08-20T22:09:04Z 2020-02-15T06:59:57Z +15980 596 1 14417 0.99 2005-08-21T11:13:35Z 2020-02-15T06:59:57Z +15981 596 1 15405 0.99 2005-08-22T23:20:41Z 2020-02-15T06:59:57Z +15982 596 1 15899 6.99 2005-08-23T17:16:28Z 2020-02-15T06:59:57Z +15983 596 1 15423 0.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +15984 597 2 34 2.99 2005-05-25T04:19:28Z 2020-02-15T06:59:57Z +15985 597 2 514 8.99 2005-05-28T03:09:28Z 2020-02-15T06:59:57Z +15986 597 1 2379 0.99 2005-06-18T14:59:39Z 2020-02-15T06:59:57Z +15987 597 1 2696 4.99 2005-06-19T13:28:42Z 2020-02-15T06:59:57Z +15988 597 1 3201 1.99 2005-06-21T00:30:26Z 2020-02-15T06:59:57Z +15989 597 1 5093 0.99 2005-07-09T05:59:12Z 2020-02-15T06:59:57Z +15990 597 1 5348 4.99 2005-07-09T17:34:11Z 2020-02-15T06:59:57Z +15991 597 2 5732 2.99 2005-07-10T11:36:32Z 2020-02-15T06:59:57Z +15992 597 1 6508 2.99 2005-07-12T03:34:50Z 2020-02-15T06:59:57Z +15993 597 2 7968 4.99 2005-07-28T13:57:35Z 2020-02-15T06:59:57Z +15994 597 2 8948 4.99 2005-07-30T03:16:18Z 2020-02-15T06:59:57Z +15995 597 2 10021 4.99 2005-07-31T18:24:39Z 2020-02-15T06:59:57Z +15996 597 1 10214 0.99 2005-08-01T01:04:15Z 2020-02-15T06:59:57Z +15997 597 2 10986 5.99 2005-08-02T04:35:24Z 2020-02-15T06:59:57Z +15998 597 2 11147 4.99 2005-08-02T09:45:54Z 2020-02-15T06:59:57Z +15999 597 2 11223 2.99 2005-08-02T12:34:27Z 2020-02-15T06:59:57Z +16000 597 1 11240 2.99 2005-08-02T13:28:30Z 2020-02-15T06:59:57Z +16001 597 1 11880 5.99 2005-08-17T14:28:28Z 2020-02-15T06:59:57Z +16002 597 1 12081 4.99 2005-08-17T22:10:46Z 2020-02-15T06:59:57Z +16003 597 1 12992 0.99 2005-08-19T07:23:06Z 2020-02-15T06:59:57Z +16004 597 2 13019 2.99 2005-08-19T08:07:43Z 2020-02-15T06:59:57Z +16005 597 1 13152 6.99 2005-08-19T13:09:32Z 2020-02-15T06:59:57Z +16006 597 2 15275 2.99 2005-08-22T18:57:39Z 2020-02-15T06:59:57Z +16007 597 1 15469 4.99 2005-08-23T01:29:59Z 2020-02-15T06:59:57Z +16008 597 1 11652 4.99 2006-02-14T15:16:03Z 2020-02-15T06:59:57Z +16009 598 1 3005 2.99 2005-06-20T10:10:29Z 2020-02-15T06:59:57Z +16010 598 1 3648 0.99 2005-07-06T07:30:41Z 2020-02-15T06:59:57Z +16011 598 2 3950 6.99 2005-07-06T21:48:44Z 2020-02-15T06:59:57Z +16012 598 1 3972 4.99 2005-07-06T22:53:57Z 2020-02-15T06:59:57Z +16013 598 1 4181 4.99 2005-07-07T10:27:54Z 2020-02-15T06:59:57Z +16014 598 2 5688 5.99 2005-07-10T09:16:08Z 2020-02-15T06:59:57Z +16015 598 1 6519 4.99 2005-07-12T04:00:36Z 2020-02-15T06:59:57Z +16016 598 2 6528 4.99 2005-07-12T04:29:44Z 2020-02-15T06:59:57Z +16017 598 2 6575 0.99 2005-07-12T06:12:53Z 2020-02-15T06:59:57Z +16018 598 2 6660 3.99 2005-07-12T11:20:12Z 2020-02-15T06:59:57Z +16019 598 2 7201 6.99 2005-07-27T08:57:40Z 2020-02-15T06:59:57Z +16020 598 2 7354 0.99 2005-07-27T14:42:11Z 2020-02-15T06:59:57Z +16021 598 1 7998 0.99 2005-07-28T15:08:48Z 2020-02-15T06:59:57Z +16022 598 2 8436 0.99 2005-07-29T07:21:20Z 2020-02-15T06:59:57Z +16023 598 1 8511 5.99 2005-07-29T09:42:42Z 2020-02-15T06:59:57Z +16024 598 1 8939 4.99 2005-07-30T02:56:53Z 2020-02-15T06:59:57Z +16025 598 1 10054 4.99 2005-07-31T19:15:52Z 2020-02-15T06:59:57Z +16026 598 2 11350 0.99 2005-08-02T17:22:59Z 2020-02-15T06:59:57Z +16027 598 2 12601 2.99 2005-08-18T16:47:52Z 2020-02-15T06:59:57Z +16028 598 2 14345 0.99 2005-08-21T08:41:15Z 2020-02-15T06:59:57Z +16029 598 2 15307 2.99 2005-08-22T19:54:26Z 2020-02-15T06:59:57Z +16030 598 1 15443 7.99 2005-08-23T00:44:15Z 2020-02-15T06:59:57Z +16031 599 2 1008 4.99 2005-05-31T01:18:56Z 2020-02-15T06:59:57Z +16032 599 1 2272 1.99 2005-06-18T06:29:53Z 2020-02-15T06:59:57Z +16033 599 2 3043 6.99 2005-06-20T12:38:35Z 2020-02-15T06:59:57Z +16034 599 2 3398 4.99 2005-06-21T15:34:38Z 2020-02-15T06:59:57Z +16035 599 1 3429 6.99 2005-06-21T18:46:05Z 2020-02-15T06:59:57Z +16036 599 1 5065 0.99 2005-07-09T04:42:00Z 2020-02-15T06:59:57Z +16037 599 1 5843 2.99 2005-07-10T17:14:27Z 2020-02-15T06:59:57Z +16038 599 2 6800 9.99 2005-07-12T17:03:56Z 2020-02-15T06:59:57Z +16039 599 2 6895 2.99 2005-07-12T21:23:59Z 2020-02-15T06:59:57Z +16040 599 1 8965 6.99 2005-07-30T03:52:37Z 2020-02-15T06:59:57Z +16041 599 2 9630 2.99 2005-07-31T04:57:07Z 2020-02-15T06:59:57Z +16042 599 2 9679 2.99 2005-07-31T06:41:19Z 2020-02-15T06:59:57Z +16043 599 2 11522 3.99 2005-08-17T00:05:05Z 2020-02-15T06:59:57Z +16044 599 1 14233 1.99 2005-08-21T05:07:08Z 2020-02-15T06:59:57Z +16045 599 1 14599 4.99 2005-08-21T17:43:42Z 2020-02-15T06:59:57Z +16046 599 1 14719 1.99 2005-08-21T21:41:57Z 2020-02-15T06:59:57Z +16047 599 2 15590 8.99 2005-08-23T06:09:44Z 2020-02-15T06:59:57Z +16048 599 2 15719 2.99 2005-08-23T11:08:46Z 2020-02-15T06:59:57Z +16049 599 2 15725 2.99 2005-08-23T11:25:00Z 2020-02-15T06:59:57Z diff --git a/drivers/csv/testdata/sakila-tsv/rental.tsv b/drivers/csv/testdata/sakila-tsv/rental.tsv new file mode 100644 index 00000000..eb055d8a --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/rental.tsv @@ -0,0 +1,16045 @@ +rental_id rental_date inventory_id customer_id return_date staff_id last_update +1 2005-05-24T22:53:30Z 367 130 2005-05-26T22:04:30Z 1 2020-02-15T06:59:36Z +2 2005-05-24T22:54:33Z 1525 459 2005-05-28T19:40:33Z 1 2020-02-15T06:59:36Z +3 2005-05-24T23:03:39Z 1711 408 2005-06-01T22:12:39Z 1 2020-02-15T06:59:36Z +4 2005-05-24T23:04:41Z 2452 333 2005-06-03T01:43:41Z 2 2020-02-15T06:59:36Z +5 2005-05-24T23:05:21Z 2079 222 2005-06-02T04:33:21Z 1 2020-02-15T06:59:36Z +6 2005-05-24T23:08:07Z 2792 549 2005-05-27T01:32:07Z 1 2020-02-15T06:59:36Z +7 2005-05-24T23:11:53Z 3995 269 2005-05-29T20:34:53Z 2 2020-02-15T06:59:36Z +8 2005-05-24T23:31:46Z 2346 239 2005-05-27T23:33:46Z 2 2020-02-15T06:59:36Z +9 2005-05-25T00:00:40Z 2580 126 2005-05-28T00:22:40Z 1 2020-02-15T06:59:36Z +10 2005-05-25T00:02:21Z 1824 399 2005-05-31T22:44:21Z 2 2020-02-15T06:59:36Z +11 2005-05-25T00:09:02Z 4443 142 2005-06-02T20:56:02Z 2 2020-02-15T06:59:36Z +12 2005-05-25T00:19:27Z 1584 261 2005-05-30T05:44:27Z 2 2020-02-15T06:59:36Z +13 2005-05-25T00:22:55Z 2294 334 2005-05-30T04:28:55Z 1 2020-02-15T06:59:36Z +14 2005-05-25T00:31:15Z 2701 446 2005-05-26T02:56:15Z 1 2020-02-15T06:59:36Z +15 2005-05-25T00:39:22Z 3049 319 2005-06-03T03:30:22Z 1 2020-02-15T06:59:36Z +16 2005-05-25T00:43:11Z 389 316 2005-05-26T04:42:11Z 2 2020-02-15T06:59:36Z +17 2005-05-25T01:06:36Z 830 575 2005-05-27T00:43:36Z 1 2020-02-15T06:59:36Z +18 2005-05-25T01:10:47Z 3376 19 2005-05-31T06:35:47Z 2 2020-02-15T06:59:36Z +19 2005-05-25T01:17:24Z 1941 456 2005-05-31T06:00:24Z 1 2020-02-15T06:59:36Z +20 2005-05-25T01:48:41Z 3517 185 2005-05-27T02:20:41Z 2 2020-02-15T06:59:36Z +21 2005-05-25T01:59:46Z 146 388 2005-05-26T01:01:46Z 2 2020-02-15T06:59:36Z +22 2005-05-25T02:19:23Z 727 509 2005-05-26T04:52:23Z 2 2020-02-15T06:59:36Z +23 2005-05-25T02:40:21Z 4441 438 2005-05-29T06:34:21Z 1 2020-02-15T06:59:36Z +24 2005-05-25T02:53:02Z 3273 350 2005-05-27T01:15:02Z 1 2020-02-15T06:59:36Z +25 2005-05-25T03:21:20Z 3961 37 2005-05-27T21:25:20Z 2 2020-02-15T06:59:36Z +26 2005-05-25T03:36:50Z 4371 371 2005-05-31T00:34:50Z 1 2020-02-15T06:59:36Z +27 2005-05-25T03:41:50Z 1225 301 2005-05-30T01:13:50Z 2 2020-02-15T06:59:36Z +28 2005-05-25T03:42:37Z 4068 232 2005-05-26T09:26:37Z 2 2020-02-15T06:59:36Z +29 2005-05-25T03:47:12Z 611 44 2005-05-30T00:31:12Z 2 2020-02-15T06:59:36Z +30 2005-05-25T04:01:32Z 3744 430 2005-05-30T03:12:32Z 1 2020-02-15T06:59:36Z +31 2005-05-25T04:05:17Z 4482 369 2005-05-30T07:15:17Z 1 2020-02-15T06:59:36Z +32 2005-05-25T04:06:21Z 3832 230 2005-05-25T23:55:21Z 1 2020-02-15T06:59:36Z +33 2005-05-25T04:18:51Z 1681 272 2005-05-27T03:58:51Z 1 2020-02-15T06:59:36Z +34 2005-05-25T04:19:28Z 2613 597 2005-05-29T00:10:28Z 2 2020-02-15T06:59:36Z +35 2005-05-25T04:24:36Z 1286 484 2005-05-27T07:02:36Z 2 2020-02-15T06:59:36Z +36 2005-05-25T04:36:26Z 1308 88 2005-05-29T00:31:26Z 1 2020-02-15T06:59:36Z +37 2005-05-25T04:44:31Z 403 535 2005-05-29T01:03:31Z 1 2020-02-15T06:59:36Z +38 2005-05-25T04:47:44Z 2540 302 2005-06-01T00:58:44Z 1 2020-02-15T06:59:36Z +39 2005-05-25T04:51:46Z 4466 207 2005-05-31T03:14:46Z 2 2020-02-15T06:59:36Z +40 2005-05-25T05:09:04Z 2638 413 2005-05-27T23:12:04Z 1 2020-02-15T06:59:36Z +41 2005-05-25T05:12:29Z 1761 174 2005-06-02T00:28:29Z 1 2020-02-15T06:59:36Z +42 2005-05-25T05:24:58Z 380 523 2005-05-31T02:47:58Z 2 2020-02-15T06:59:36Z +43 2005-05-25T05:39:25Z 2578 532 2005-05-26T06:54:25Z 2 2020-02-15T06:59:36Z +44 2005-05-25T05:53:23Z 3098 207 2005-05-29T10:56:23Z 2 2020-02-15T06:59:36Z +45 2005-05-25T05:59:39Z 1853 436 2005-06-02T09:56:39Z 2 2020-02-15T06:59:36Z +46 2005-05-25T06:04:08Z 3318 7 2005-06-02T08:18:08Z 2 2020-02-15T06:59:36Z +47 2005-05-25T06:05:20Z 2211 35 2005-05-30T03:04:20Z 1 2020-02-15T06:59:36Z +48 2005-05-25T06:20:46Z 1780 282 2005-06-02T05:42:46Z 1 2020-02-15T06:59:36Z +49 2005-05-25T06:39:35Z 2965 498 2005-05-30T10:12:35Z 2 2020-02-15T06:59:36Z +50 2005-05-25T06:44:53Z 1983 18 2005-05-28T11:28:53Z 2 2020-02-15T06:59:36Z +51 2005-05-25T06:49:10Z 1257 256 2005-05-26T06:42:10Z 1 2020-02-15T06:59:36Z +52 2005-05-25T06:51:29Z 4017 507 2005-05-31T01:27:29Z 2 2020-02-15T06:59:36Z +53 2005-05-25T07:19:16Z 1255 569 2005-05-27T05:19:16Z 2 2020-02-15T06:59:36Z +54 2005-05-25T07:23:25Z 2787 291 2005-06-01T05:05:25Z 2 2020-02-15T06:59:36Z +55 2005-05-25T08:26:13Z 1139 131 2005-05-30T10:57:13Z 1 2020-02-15T06:59:36Z +56 2005-05-25T08:28:11Z 1352 511 2005-05-26T14:21:11Z 1 2020-02-15T06:59:36Z +57 2005-05-25T08:43:32Z 3938 6 2005-05-29T06:42:32Z 2 2020-02-15T06:59:36Z +58 2005-05-25T08:53:14Z 3050 323 2005-05-28T14:40:14Z 1 2020-02-15T06:59:36Z +59 2005-05-25T08:56:42Z 2884 408 2005-06-01T09:52:42Z 1 2020-02-15T06:59:36Z +60 2005-05-25T08:58:25Z 330 470 2005-05-30T14:14:25Z 1 2020-02-15T06:59:36Z +61 2005-05-25T09:01:57Z 4210 250 2005-06-02T07:22:57Z 2 2020-02-15T06:59:36Z +62 2005-05-25T09:18:52Z 261 419 2005-05-30T10:55:52Z 1 2020-02-15T06:59:36Z +63 2005-05-25T09:19:16Z 4008 383 2005-05-27T04:24:16Z 1 2020-02-15T06:59:36Z +64 2005-05-25T09:21:29Z 79 368 2005-06-03T11:31:29Z 1 2020-02-15T06:59:36Z +65 2005-05-25T09:32:03Z 3552 346 2005-05-29T14:21:03Z 1 2020-02-15T06:59:36Z +66 2005-05-25T09:35:12Z 1162 86 2005-05-29T04:16:12Z 2 2020-02-15T06:59:36Z +67 2005-05-25T09:41:01Z 239 119 2005-05-27T13:46:01Z 2 2020-02-15T06:59:36Z +68 2005-05-25T09:47:31Z 4029 120 2005-05-31T10:20:31Z 2 2020-02-15T06:59:36Z +69 2005-05-25T10:10:14Z 3207 305 2005-05-27T14:02:14Z 2 2020-02-15T06:59:36Z +70 2005-05-25T10:15:23Z 2168 73 2005-05-27T05:56:23Z 2 2020-02-15T06:59:36Z +71 2005-05-25T10:26:39Z 2408 100 2005-05-28T04:59:39Z 1 2020-02-15T06:59:36Z +72 2005-05-25T10:52:13Z 2260 48 2005-05-28T05:52:13Z 2 2020-02-15T06:59:36Z +73 2005-05-25T11:00:07Z 517 391 2005-06-01T13:56:07Z 2 2020-02-15T06:59:36Z +74 2005-05-25T11:09:48Z 1744 265 2005-05-26T12:23:48Z 2 2020-02-15T06:59:36Z +75 2005-05-25T11:13:34Z 3393 510 2005-06-03T12:58:34Z 1 2020-02-15T06:59:36Z +76 2005-05-25T11:30:37Z 3021 1 2005-06-03T12:00:37Z 2 2020-02-15T06:59:36Z +77 2005-05-25T11:31:59Z 1303 451 2005-05-26T16:53:59Z 2 2020-02-15T06:59:36Z +78 2005-05-25T11:35:18Z 4067 135 2005-05-31T12:48:18Z 2 2020-02-15T06:59:36Z +79 2005-05-25T12:11:07Z 3299 245 2005-06-03T10:54:07Z 2 2020-02-15T06:59:36Z +80 2005-05-25T12:12:07Z 2478 314 2005-05-31T17:46:07Z 2 2020-02-15T06:59:36Z +81 2005-05-25T12:15:19Z 2610 286 2005-06-02T14:08:19Z 2 2020-02-15T06:59:36Z +82 2005-05-25T12:17:46Z 1388 427 2005-06-01T10:48:46Z 1 2020-02-15T06:59:36Z +83 2005-05-25T12:30:15Z 466 131 2005-05-27T15:40:15Z 1 2020-02-15T06:59:36Z +84 2005-05-25T12:36:30Z 1829 492 2005-05-29T18:33:30Z 1 2020-02-15T06:59:36Z +85 2005-05-25T13:05:34Z 470 414 2005-05-29T16:53:34Z 1 2020-02-15T06:59:36Z +86 2005-05-25T13:36:12Z 2275 266 2005-05-30T14:53:12Z 1 2020-02-15T06:59:36Z +87 2005-05-25T13:52:43Z 1586 331 2005-05-29T11:12:43Z 2 2020-02-15T06:59:36Z +88 2005-05-25T14:13:54Z 2221 53 2005-05-29T09:32:54Z 2 2020-02-15T06:59:36Z +89 2005-05-25T14:28:29Z 2181 499 2005-05-29T14:33:29Z 1 2020-02-15T06:59:36Z +90 2005-05-25T14:31:25Z 2984 25 2005-06-01T10:07:25Z 1 2020-02-15T06:59:36Z +91 2005-05-25T14:57:22Z 139 267 2005-06-01T18:32:22Z 1 2020-02-15T06:59:36Z +92 2005-05-25T15:38:46Z 775 302 2005-05-31T13:40:46Z 2 2020-02-15T06:59:36Z +93 2005-05-25T15:54:16Z 4360 288 2005-06-03T20:18:16Z 1 2020-02-15T06:59:36Z +94 2005-05-25T16:03:42Z 1675 197 2005-05-30T14:23:42Z 1 2020-02-15T06:59:36Z +95 2005-05-25T16:12:52Z 178 400 2005-06-02T18:55:52Z 2 2020-02-15T06:59:36Z +96 2005-05-25T16:32:19Z 3418 49 2005-05-30T10:47:19Z 2 2020-02-15T06:59:36Z +97 2005-05-25T16:34:24Z 1283 263 2005-05-28T12:13:24Z 2 2020-02-15T06:59:36Z +98 2005-05-25T16:48:24Z 2970 269 2005-05-27T11:29:24Z 2 2020-02-15T06:59:36Z +99 2005-05-25T16:50:20Z 535 44 2005-05-28T18:52:20Z 1 2020-02-15T06:59:36Z +100 2005-05-25T16:50:28Z 2599 208 2005-06-02T22:11:28Z 1 2020-02-15T06:59:36Z +101 2005-05-25T17:17:04Z 617 468 2005-05-31T19:47:04Z 1 2020-02-15T06:59:36Z +102 2005-05-25T17:22:10Z 373 343 2005-05-31T19:47:10Z 1 2020-02-15T06:59:36Z +103 2005-05-25T17:30:42Z 3343 384 2005-06-03T22:36:42Z 1 2020-02-15T06:59:36Z +104 2005-05-25T17:46:33Z 4281 310 2005-05-27T15:20:33Z 1 2020-02-15T06:59:36Z +105 2005-05-25T17:54:12Z 794 108 2005-05-30T12:03:12Z 2 2020-02-15T06:59:36Z +106 2005-05-25T18:18:19Z 3627 196 2005-06-04T00:01:19Z 2 2020-02-15T06:59:36Z +107 2005-05-25T18:28:09Z 2833 317 2005-06-03T22:46:09Z 2 2020-02-15T06:59:36Z +108 2005-05-25T18:30:05Z 3289 242 2005-05-30T19:40:05Z 1 2020-02-15T06:59:36Z +109 2005-05-25T18:40:20Z 1044 503 2005-05-29T20:39:20Z 2 2020-02-15T06:59:36Z +110 2005-05-25T18:43:49Z 4108 19 2005-06-03T18:13:49Z 2 2020-02-15T06:59:36Z +111 2005-05-25T18:45:19Z 3725 227 2005-05-28T17:18:19Z 1 2020-02-15T06:59:36Z +112 2005-05-25T18:57:24Z 2153 500 2005-06-02T20:44:24Z 1 2020-02-15T06:59:36Z +113 2005-05-25T19:07:40Z 2963 93 2005-05-27T22:16:40Z 2 2020-02-15T06:59:36Z +114 2005-05-25T19:12:42Z 4502 506 2005-06-01T23:10:42Z 1 2020-02-15T06:59:36Z +115 2005-05-25T19:13:25Z 749 455 2005-05-29T20:17:25Z 1 2020-02-15T06:59:36Z +116 2005-05-25T19:27:51Z 4453 18 2005-05-26T16:23:51Z 1 2020-02-15T06:59:36Z +117 2005-05-25T19:30:46Z 4278 7 2005-05-31T23:59:46Z 2 2020-02-15T06:59:36Z +118 2005-05-25T19:31:18Z 872 524 2005-05-31T15:00:18Z 1 2020-02-15T06:59:36Z +119 2005-05-25T19:37:02Z 1359 51 2005-05-29T23:51:02Z 2 2020-02-15T06:59:36Z +120 2005-05-25T19:37:47Z 37 365 2005-06-01T23:29:47Z 2 2020-02-15T06:59:36Z +121 2005-05-25T19:41:29Z 1053 405 2005-05-29T21:31:29Z 1 2020-02-15T06:59:36Z +122 2005-05-25T19:46:21Z 2908 273 2005-06-02T19:07:21Z 1 2020-02-15T06:59:36Z +123 2005-05-25T20:26:42Z 1795 43 2005-05-26T19:41:42Z 1 2020-02-15T06:59:36Z +124 2005-05-25T20:46:11Z 212 246 2005-05-30T00:47:11Z 2 2020-02-15T06:59:36Z +125 2005-05-25T20:48:50Z 952 368 2005-06-02T21:39:50Z 1 2020-02-15T06:59:36Z +126 2005-05-25T21:07:59Z 2047 439 2005-05-28T18:51:59Z 1 2020-02-15T06:59:36Z +127 2005-05-25T21:10:40Z 2026 94 2005-06-02T21:38:40Z 1 2020-02-15T06:59:36Z +128 2005-05-25T21:19:53Z 4322 40 2005-05-29T23:34:53Z 1 2020-02-15T06:59:36Z +129 2005-05-25T21:20:03Z 4154 23 2005-06-04T01:25:03Z 2 2020-02-15T06:59:36Z +130 2005-05-25T21:21:56Z 3990 56 2005-05-30T22:41:56Z 2 2020-02-15T06:59:36Z +131 2005-05-25T21:42:46Z 815 325 2005-05-30T23:25:46Z 2 2020-02-15T06:59:36Z +132 2005-05-25T21:46:54Z 3367 479 2005-05-31T21:02:54Z 1 2020-02-15T06:59:36Z +133 2005-05-25T21:48:30Z 399 237 2005-05-30T00:26:30Z 2 2020-02-15T06:59:36Z +134 2005-05-25T21:48:41Z 2272 222 2005-06-02T18:28:41Z 1 2020-02-15T06:59:36Z +135 2005-05-25T21:58:58Z 103 304 2005-06-03T17:50:58Z 1 2020-02-15T06:59:36Z +136 2005-05-25T22:02:30Z 2296 504 2005-05-31T18:06:30Z 1 2020-02-15T06:59:36Z +137 2005-05-25T22:25:18Z 2591 560 2005-06-01T02:30:18Z 2 2020-02-15T06:59:36Z +138 2005-05-25T22:48:22Z 4134 586 2005-05-29T20:21:22Z 2 2020-02-15T06:59:36Z +139 2005-05-25T23:00:21Z 327 257 2005-05-29T17:12:21Z 1 2020-02-15T06:59:36Z +140 2005-05-25T23:34:22Z 655 354 2005-05-27T01:10:22Z 1 2020-02-15T06:59:36Z +141 2005-05-25T23:34:53Z 811 89 2005-06-02T01:57:53Z 1 2020-02-15T06:59:36Z +142 2005-05-25T23:43:47Z 4407 472 2005-05-29T00:46:47Z 2 2020-02-15T06:59:36Z +143 2005-05-25T23:45:52Z 847 297 2005-05-27T21:41:52Z 2 2020-02-15T06:59:36Z +144 2005-05-25T23:49:56Z 1689 357 2005-06-01T21:41:56Z 2 2020-02-15T06:59:36Z +145 2005-05-25T23:59:03Z 3905 82 2005-05-31T02:56:03Z 1 2020-02-15T06:59:36Z +146 2005-05-26T00:07:11Z 1431 433 2005-06-04T00:20:11Z 2 2020-02-15T06:59:36Z +147 2005-05-26T00:17:50Z 633 274 2005-05-29T23:21:50Z 2 2020-02-15T06:59:36Z +148 2005-05-26T00:25:23Z 4252 142 2005-06-01T19:29:23Z 2 2020-02-15T06:59:36Z +149 2005-05-26T00:28:05Z 1084 319 2005-06-02T21:30:05Z 2 2020-02-15T06:59:36Z +150 2005-05-26T00:28:39Z 909 429 2005-06-01T02:10:39Z 2 2020-02-15T06:59:36Z +151 2005-05-26T00:37:28Z 2942 14 2005-05-30T06:28:28Z 1 2020-02-15T06:59:36Z +152 2005-05-26T00:41:10Z 2622 57 2005-06-03T06:05:10Z 1 2020-02-15T06:59:36Z +153 2005-05-26T00:47:47Z 3888 348 2005-05-27T21:28:47Z 1 2020-02-15T06:59:36Z +154 2005-05-26T00:55:56Z 1354 185 2005-05-29T23:18:56Z 2 2020-02-15T06:59:36Z +155 2005-05-26T01:15:05Z 288 551 2005-06-01T00:03:05Z 1 2020-02-15T06:59:36Z +156 2005-05-26T01:19:05Z 3193 462 2005-05-27T23:43:05Z 1 2020-02-15T06:59:36Z +157 2005-05-26T01:25:21Z 887 344 2005-05-26T21:17:21Z 2 2020-02-15T06:59:36Z +158 2005-05-26T01:27:11Z 2395 354 2005-06-03T00:30:11Z 2 2020-02-15T06:59:36Z +159 2005-05-26T01:34:28Z 3453 505 2005-05-29T04:00:28Z 1 2020-02-15T06:59:36Z +160 2005-05-26T01:46:20Z 1885 290 2005-06-01T05:45:20Z 1 2020-02-15T06:59:36Z +161 2005-05-26T01:51:48Z 2941 182 2005-05-27T05:42:48Z 1 2020-02-15T06:59:36Z +162 2005-05-26T02:02:05Z 1229 296 2005-05-27T03:38:05Z 2 2020-02-15T06:59:36Z +163 2005-05-26T02:26:23Z 2306 104 2005-06-04T06:36:23Z 1 2020-02-15T06:59:36Z +164 2005-05-26T02:26:49Z 1070 151 2005-05-28T00:32:49Z 1 2020-02-15T06:59:36Z +165 2005-05-26T02:28:36Z 2735 33 2005-06-02T03:21:36Z 1 2020-02-15T06:59:36Z +166 2005-05-26T02:49:11Z 3894 322 2005-05-31T01:28:11Z 1 2020-02-15T06:59:36Z +167 2005-05-26T02:50:31Z 865 401 2005-05-27T03:07:31Z 1 2020-02-15T06:59:36Z +168 2005-05-26T03:07:43Z 2714 469 2005-06-02T02:09:43Z 2 2020-02-15T06:59:36Z +169 2005-05-26T03:09:30Z 1758 381 2005-05-27T01:37:30Z 2 2020-02-15T06:59:36Z +170 2005-05-26T03:11:12Z 3688 107 2005-06-02T03:53:12Z 1 2020-02-15T06:59:36Z +171 2005-05-26T03:14:15Z 4483 400 2005-06-03T00:24:15Z 2 2020-02-15T06:59:36Z +172 2005-05-26T03:17:42Z 2873 176 2005-05-29T04:11:42Z 2 2020-02-15T06:59:36Z +173 2005-05-26T03:42:10Z 3596 533 2005-05-28T01:37:10Z 2 2020-02-15T06:59:36Z +174 2005-05-26T03:44:10Z 3954 552 2005-05-28T07:13:10Z 2 2020-02-15T06:59:36Z +175 2005-05-26T03:46:26Z 4346 47 2005-06-03T06:01:26Z 2 2020-02-15T06:59:36Z +176 2005-05-26T03:47:39Z 851 250 2005-06-01T02:36:39Z 2 2020-02-15T06:59:36Z +177 2005-05-26T04:14:29Z 3545 548 2005-06-01T08:16:29Z 2 2020-02-15T06:59:36Z +178 2005-05-26T04:21:46Z 1489 196 2005-06-04T07:09:46Z 2 2020-02-15T06:59:36Z +179 2005-05-26T04:26:06Z 2575 19 2005-06-03T10:06:06Z 1 2020-02-15T06:59:36Z +180 2005-05-26T04:46:23Z 2752 75 2005-06-01T09:58:23Z 1 2020-02-15T06:59:36Z +181 2005-05-26T04:47:06Z 2417 587 2005-05-29T06:34:06Z 2 2020-02-15T06:59:36Z +182 2005-05-26T04:49:17Z 4396 237 2005-06-01T05:43:17Z 2 2020-02-15T06:59:36Z +183 2005-05-26T05:01:18Z 2877 254 2005-06-01T09:04:18Z 1 2020-02-15T06:59:36Z +184 2005-05-26T05:29:49Z 1970 556 2005-05-28T10:10:49Z 1 2020-02-15T06:59:36Z +185 2005-05-26T05:30:03Z 2598 125 2005-06-02T09:48:03Z 2 2020-02-15T06:59:36Z +186 2005-05-26T05:32:52Z 1799 468 2005-06-03T07:19:52Z 2 2020-02-15T06:59:36Z +187 2005-05-26T05:42:37Z 4004 515 2005-06-04T00:38:37Z 1 2020-02-15T06:59:36Z +188 2005-05-26T05:47:12Z 3342 243 2005-05-26T23:48:12Z 1 2020-02-15T06:59:36Z +189 2005-05-26T06:01:41Z 984 247 2005-05-27T06:11:41Z 1 2020-02-15T06:59:36Z +190 2005-05-26T06:11:28Z 3962 533 2005-06-01T09:44:28Z 1 2020-02-15T06:59:36Z +191 2005-05-26T06:14:06Z 4365 412 2005-05-28T05:33:06Z 1 2020-02-15T06:59:36Z +192 2005-05-26T06:20:37Z 1897 437 2005-06-02T10:57:37Z 1 2020-02-15T06:59:36Z +193 2005-05-26T06:41:48Z 3900 270 2005-05-30T06:21:48Z 2 2020-02-15T06:59:36Z +194 2005-05-26T06:52:33Z 1337 29 2005-05-30T04:08:33Z 2 2020-02-15T06:59:36Z +195 2005-05-26T06:52:36Z 506 564 2005-05-31T02:47:36Z 2 2020-02-15T06:59:36Z +196 2005-05-26T06:55:58Z 190 184 2005-05-27T10:54:58Z 1 2020-02-15T06:59:36Z +197 2005-05-26T06:59:21Z 4212 546 2005-06-03T05:04:21Z 2 2020-02-15T06:59:36Z +198 2005-05-26T07:03:49Z 1789 54 2005-06-04T11:45:49Z 1 2020-02-15T06:59:36Z +199 2005-05-26T07:11:58Z 2135 71 2005-05-28T09:06:58Z 1 2020-02-15T06:59:36Z +200 2005-05-26T07:12:21Z 3926 321 2005-05-31T12:07:21Z 1 2020-02-15T06:59:36Z +201 2005-05-26T07:13:45Z 776 444 2005-06-04T02:02:45Z 2 2020-02-15T06:59:36Z +202 2005-05-26T07:27:36Z 674 20 2005-06-02T03:52:36Z 1 2020-02-15T06:59:36Z +203 2005-05-26T07:27:57Z 3374 109 2005-06-03T12:52:57Z 1 2020-02-15T06:59:36Z +204 2005-05-26T07:30:37Z 1842 528 2005-05-30T08:11:37Z 1 2020-02-15T06:59:36Z +205 2005-05-26T07:59:37Z 303 114 2005-05-29T09:43:37Z 2 2020-02-15T06:59:36Z +206 2005-05-26T08:01:54Z 1717 345 2005-05-27T06:26:54Z 1 2020-02-15T06:59:36Z +207 2005-05-26T08:04:38Z 102 47 2005-05-27T09:32:38Z 2 2020-02-15T06:59:36Z +208 2005-05-26T08:10:22Z 3669 274 2005-05-27T03:55:22Z 1 2020-02-15T06:59:36Z +209 2005-05-26T08:14:01Z 729 379 2005-05-27T09:00:01Z 1 2020-02-15T06:59:36Z +210 2005-05-26T08:14:15Z 1801 391 2005-05-27T12:12:15Z 2 2020-02-15T06:59:36Z +211 2005-05-26T08:33:10Z 4005 170 2005-05-28T14:09:10Z 1 2020-02-15T06:59:36Z +212 2005-05-26T08:34:41Z 764 59 2005-05-30T12:46:41Z 2 2020-02-15T06:59:36Z +213 2005-05-26T08:44:08Z 1505 394 2005-05-31T12:33:08Z 2 2020-02-15T06:59:36Z +214 2005-05-26T08:48:49Z 1453 98 2005-05-31T04:06:49Z 2 2020-02-15T06:59:36Z +215 2005-05-26T09:02:47Z 679 197 2005-05-28T09:45:47Z 2 2020-02-15T06:59:36Z +216 2005-05-26T09:17:43Z 1398 91 2005-06-03T08:21:43Z 1 2020-02-15T06:59:36Z +217 2005-05-26T09:24:26Z 4395 121 2005-05-31T03:24:26Z 2 2020-02-15T06:59:36Z +218 2005-05-26T09:27:09Z 2291 309 2005-06-04T11:53:09Z 2 2020-02-15T06:59:36Z +219 2005-05-26T09:41:45Z 3074 489 2005-05-28T04:40:45Z 1 2020-02-15T06:59:36Z +220 2005-05-26T10:06:49Z 1259 542 2005-06-01T07:43:49Z 1 2020-02-15T06:59:36Z +221 2005-05-26T10:14:09Z 3578 143 2005-05-29T05:57:09Z 1 2020-02-15T06:59:36Z +222 2005-05-26T10:14:38Z 2745 83 2005-05-31T08:36:38Z 2 2020-02-15T06:59:36Z +223 2005-05-26T10:15:23Z 3121 460 2005-05-30T11:43:23Z 1 2020-02-15T06:59:36Z +224 2005-05-26T10:18:27Z 4285 318 2005-06-04T06:59:27Z 1 2020-02-15T06:59:36Z +225 2005-05-26T10:27:50Z 651 467 2005-06-01T07:01:50Z 2 2020-02-15T06:59:36Z +226 2005-05-26T10:44:04Z 4181 221 2005-05-31T13:26:04Z 2 2020-02-15T06:59:36Z +227 2005-05-26T10:51:46Z 214 301 2005-05-30T07:24:46Z 1 2020-02-15T06:59:36Z +228 2005-05-26T10:54:28Z 511 571 2005-06-04T09:39:28Z 1 2020-02-15T06:59:36Z +229 2005-05-26T11:19:20Z 1131 312 2005-05-31T11:56:20Z 2 2020-02-15T06:59:36Z +230 2005-05-26T11:31:50Z 1085 58 2005-05-30T15:22:50Z 1 2020-02-15T06:59:36Z +231 2005-05-26T11:31:59Z 4032 365 2005-05-27T07:27:59Z 1 2020-02-15T06:59:36Z +232 2005-05-26T11:38:05Z 2945 256 2005-05-27T08:42:05Z 2 2020-02-15T06:59:36Z +233 2005-05-26T11:43:44Z 715 531 2005-05-28T17:28:44Z 2 2020-02-15T06:59:36Z +234 2005-05-26T11:47:20Z 1321 566 2005-06-03T10:39:20Z 2 2020-02-15T06:59:36Z +235 2005-05-26T11:51:09Z 3537 119 2005-06-04T09:36:09Z 1 2020-02-15T06:59:36Z +236 2005-05-26T11:53:49Z 1265 446 2005-05-28T13:55:49Z 1 2020-02-15T06:59:36Z +237 2005-05-26T12:15:13Z 241 536 2005-05-29T18:10:13Z 1 2020-02-15T06:59:36Z +238 2005-05-26T12:30:22Z 503 211 2005-05-27T06:49:22Z 1 2020-02-15T06:59:36Z +239 2005-05-26T12:30:26Z 131 49 2005-06-01T13:26:26Z 2 2020-02-15T06:59:36Z +240 2005-05-26T12:40:23Z 3420 103 2005-06-04T07:22:23Z 1 2020-02-15T06:59:36Z +241 2005-05-26T12:49:01Z 4438 245 2005-05-28T11:43:01Z 2 2020-02-15T06:59:36Z +242 2005-05-26T13:05:08Z 2095 214 2005-06-02T15:26:08Z 1 2020-02-15T06:59:36Z +243 2005-05-26T13:06:05Z 1721 543 2005-06-03T17:28:05Z 2 2020-02-15T06:59:36Z +244 2005-05-26T13:40:40Z 1041 257 2005-05-31T11:58:40Z 1 2020-02-15T06:59:36Z +245 2005-05-26T13:46:59Z 3045 158 2005-05-27T09:58:59Z 2 2020-02-15T06:59:36Z +246 2005-05-26T13:57:07Z 2829 240 2005-05-29T10:12:07Z 2 2020-02-15T06:59:36Z +247 2005-05-26T14:01:05Z 4095 102 2005-05-28T13:38:05Z 2 2020-02-15T06:59:36Z +248 2005-05-26T14:07:58Z 1913 545 2005-05-31T14:03:58Z 2 2020-02-15T06:59:36Z +249 2005-05-26T14:19:09Z 2428 472 2005-05-28T17:47:09Z 2 2020-02-15T06:59:36Z +250 2005-05-26T14:30:24Z 368 539 2005-05-27T08:50:24Z 1 2020-02-15T06:59:36Z +251 2005-05-26T14:35:40Z 4352 204 2005-05-29T17:17:40Z 1 2020-02-15T06:59:36Z +252 2005-05-26T14:39:53Z 1203 187 2005-06-02T14:48:53Z 1 2020-02-15T06:59:36Z +253 2005-05-26T14:43:14Z 2969 416 2005-05-27T12:21:14Z 1 2020-02-15T06:59:36Z +254 2005-05-26T14:43:48Z 1835 390 2005-05-31T09:19:48Z 2 2020-02-15T06:59:36Z +255 2005-05-26T14:52:15Z 3264 114 2005-05-27T12:45:15Z 1 2020-02-15T06:59:36Z +256 2005-05-26T15:20:58Z 3194 436 2005-05-31T15:58:58Z 1 2020-02-15T06:59:36Z +257 2005-05-26T15:27:05Z 2570 373 2005-05-29T16:25:05Z 2 2020-02-15T06:59:36Z +258 2005-05-26T15:28:14Z 3534 502 2005-05-30T18:38:14Z 2 2020-02-15T06:59:36Z +259 2005-05-26T15:32:46Z 30 482 2005-06-04T15:27:46Z 2 2020-02-15T06:59:36Z +260 2005-05-26T15:42:20Z 435 21 2005-05-31T13:21:20Z 2 2020-02-15T06:59:36Z +261 2005-05-26T15:44:23Z 1369 414 2005-06-02T09:47:23Z 2 2020-02-15T06:59:36Z +262 2005-05-26T15:46:56Z 4261 236 2005-05-28T15:49:56Z 2 2020-02-15T06:59:36Z +263 2005-05-26T15:47:40Z 1160 449 2005-05-30T10:07:40Z 2 2020-02-15T06:59:36Z +264 2005-05-26T16:00:49Z 2069 251 2005-05-27T10:12:49Z 2 2020-02-15T06:59:36Z +265 2005-05-26T16:07:38Z 2276 303 2005-06-01T14:20:38Z 1 2020-02-15T06:59:36Z +266 2005-05-26T16:08:05Z 3303 263 2005-05-27T10:55:05Z 2 2020-02-15T06:59:36Z +267 2005-05-26T16:16:21Z 1206 417 2005-05-30T16:53:21Z 2 2020-02-15T06:59:36Z +268 2005-05-26T16:19:08Z 1714 75 2005-05-27T14:35:08Z 1 2020-02-15T06:59:36Z +269 2005-05-26T16:19:46Z 3501 322 2005-05-27T15:59:46Z 2 2020-02-15T06:59:36Z +270 2005-05-26T16:20:56Z 207 200 2005-06-03T12:40:56Z 2 2020-02-15T06:59:36Z +271 2005-05-26T16:22:01Z 2388 92 2005-06-03T17:30:01Z 2 2020-02-15T06:59:36Z +272 2005-05-26T16:27:11Z 971 71 2005-06-03T13:10:11Z 2 2020-02-15T06:59:36Z +273 2005-05-26T16:29:36Z 1590 193 2005-05-29T18:49:36Z 2 2020-02-15T06:59:36Z +274 2005-05-26T16:48:51Z 656 311 2005-06-03T18:17:51Z 1 2020-02-15T06:59:36Z +275 2005-05-26T17:09:53Z 1718 133 2005-06-04T22:35:53Z 1 2020-02-15T06:59:36Z +276 2005-05-26T17:16:07Z 1221 58 2005-06-03T12:59:07Z 1 2020-02-15T06:59:36Z +277 2005-05-26T17:32:11Z 1409 45 2005-05-28T22:54:11Z 1 2020-02-15T06:59:36Z +278 2005-05-26T17:40:58Z 182 214 2005-06-02T16:43:58Z 2 2020-02-15T06:59:36Z +279 2005-05-26T18:02:50Z 661 384 2005-06-03T18:48:50Z 2 2020-02-15T06:59:36Z +280 2005-05-26T18:36:58Z 1896 167 2005-05-27T23:42:58Z 1 2020-02-15T06:59:36Z +281 2005-05-26T18:49:35Z 1208 582 2005-05-27T18:11:35Z 2 2020-02-15T06:59:36Z +282 2005-05-26T18:56:26Z 4486 282 2005-06-01T16:32:26Z 2 2020-02-15T06:59:36Z +283 2005-05-26T19:05:05Z 3530 242 2005-05-31T19:19:05Z 1 2020-02-15T06:59:36Z +284 2005-05-26T19:21:44Z 350 359 2005-06-04T14:18:44Z 2 2020-02-15T06:59:36Z +285 2005-05-26T19:41:40Z 2486 162 2005-05-31T16:58:40Z 2 2020-02-15T06:59:36Z +286 2005-05-26T19:44:51Z 314 371 2005-06-04T18:00:51Z 2 2020-02-15T06:59:36Z +287 2005-05-26T19:44:54Z 3631 17 2005-06-02T01:10:54Z 1 2020-02-15T06:59:36Z +288 2005-05-26T19:47:49Z 3546 82 2005-06-03T20:53:49Z 2 2020-02-15T06:59:36Z +289 2005-05-26T20:01:09Z 2449 81 2005-05-28T15:09:09Z 1 2020-02-15T06:59:36Z +290 2005-05-26T20:08:33Z 2776 429 2005-05-30T00:32:33Z 1 2020-02-15T06:59:36Z +291 2005-05-26T20:20:47Z 485 577 2005-06-03T02:06:47Z 2 2020-02-15T06:59:36Z +292 2005-05-26T20:22:12Z 4264 515 2005-06-05T00:58:12Z 1 2020-02-15T06:59:36Z +293 2005-05-26T20:27:02Z 1828 158 2005-06-03T16:45:02Z 2 2020-02-15T06:59:36Z +294 2005-05-26T20:29:57Z 2751 369 2005-05-28T17:20:57Z 1 2020-02-15T06:59:36Z +295 2005-05-26T20:33:20Z 4030 65 2005-05-27T18:23:20Z 2 2020-02-15T06:59:36Z +296 2005-05-26T20:35:19Z 3878 468 2005-06-04T02:31:19Z 2 2020-02-15T06:59:36Z +297 2005-05-26T20:48:48Z 1594 48 2005-05-27T19:52:48Z 2 2020-02-15T06:59:36Z +298 2005-05-26T20:52:26Z 1083 460 2005-05-29T22:08:26Z 2 2020-02-15T06:59:36Z +299 2005-05-26T20:55:36Z 4376 448 2005-05-28T00:25:36Z 2 2020-02-15T06:59:36Z +300 2005-05-26T20:57:00Z 249 47 2005-06-05T01:34:00Z 2 2020-02-15T06:59:36Z +301 2005-05-26T21:06:14Z 3448 274 2005-06-01T01:54:14Z 2 2020-02-15T06:59:36Z +302 2005-05-26T21:13:46Z 2921 387 2005-06-03T15:49:46Z 2 2020-02-15T06:59:36Z +303 2005-05-26T21:16:52Z 1111 596 2005-05-27T23:41:52Z 2 2020-02-15T06:59:36Z +304 2005-05-26T21:21:28Z 1701 534 2005-06-02T00:05:28Z 1 2020-02-15T06:59:36Z +305 2005-05-26T21:22:07Z 2665 464 2005-06-02T22:33:07Z 2 2020-02-15T06:59:36Z +306 2005-05-26T21:31:57Z 2781 547 2005-05-28T19:37:57Z 1 2020-02-15T06:59:36Z +307 2005-05-26T21:48:13Z 1097 375 2005-06-04T22:24:13Z 1 2020-02-15T06:59:36Z +308 2005-05-26T22:01:39Z 187 277 2005-06-04T20:24:39Z 2 2020-02-15T06:59:36Z +309 2005-05-26T22:38:10Z 1946 251 2005-06-02T03:10:10Z 2 2020-02-15T06:59:36Z +310 2005-05-26T22:41:07Z 593 409 2005-06-02T04:09:07Z 1 2020-02-15T06:59:36Z +311 2005-05-26T22:51:37Z 2830 201 2005-06-01T00:02:37Z 1 2020-02-15T06:59:36Z +312 2005-05-26T22:52:19Z 2008 143 2005-06-02T18:14:19Z 2 2020-02-15T06:59:36Z +313 2005-05-26T22:56:19Z 4156 594 2005-05-29T01:29:19Z 2 2020-02-15T06:59:36Z +314 2005-05-26T23:09:41Z 2851 203 2005-05-28T22:49:41Z 2 2020-02-15T06:59:36Z +315 2005-05-26T23:12:55Z 2847 238 2005-05-29T23:33:55Z 1 2020-02-15T06:59:36Z +316 2005-05-26T23:22:55Z 3828 249 2005-05-29T23:25:55Z 2 2020-02-15T06:59:36Z +317 2005-05-26T23:23:56Z 26 391 2005-06-01T19:56:56Z 2 2020-02-15T06:59:36Z +318 2005-05-26T23:37:39Z 2559 60 2005-06-03T04:31:39Z 2 2020-02-15T06:59:36Z +319 2005-05-26T23:52:13Z 3024 77 2005-05-30T18:55:13Z 1 2020-02-15T06:59:36Z +320 2005-05-27T00:09:24Z 1090 2 2005-05-28T04:30:24Z 2 2020-02-15T06:59:36Z +322 2005-05-27T00:47:35Z 4556 496 2005-06-02T00:32:35Z 1 2020-02-15T06:59:36Z +323 2005-05-27T00:49:27Z 2362 144 2005-05-30T03:12:27Z 1 2020-02-15T06:59:36Z +324 2005-05-27T01:00:04Z 3364 292 2005-05-30T04:27:04Z 1 2020-02-15T06:59:36Z +325 2005-05-27T01:09:55Z 2510 449 2005-05-31T07:01:55Z 2 2020-02-15T06:59:36Z +326 2005-05-27T01:10:11Z 3979 432 2005-06-04T20:25:11Z 2 2020-02-15T06:59:36Z +327 2005-05-27T01:18:57Z 2678 105 2005-06-04T04:06:57Z 1 2020-02-15T06:59:36Z +328 2005-05-27T01:29:31Z 2524 451 2005-06-01T02:27:31Z 1 2020-02-15T06:59:36Z +329 2005-05-27T01:57:14Z 2659 231 2005-05-31T04:19:14Z 2 2020-02-15T06:59:36Z +330 2005-05-27T02:15:30Z 1536 248 2005-06-04T05:09:30Z 2 2020-02-15T06:59:36Z +331 2005-05-27T02:22:26Z 1872 67 2005-06-05T00:25:26Z 1 2020-02-15T06:59:36Z +332 2005-05-27T02:27:10Z 1529 299 2005-06-03T01:26:10Z 2 2020-02-15T06:59:36Z +333 2005-05-27T02:52:21Z 4001 412 2005-06-01T00:55:21Z 2 2020-02-15T06:59:36Z +334 2005-05-27T03:03:07Z 3973 194 2005-05-29T03:54:07Z 1 2020-02-15T06:59:36Z +335 2005-05-27T03:07:10Z 1411 16 2005-06-05T00:15:10Z 2 2020-02-15T06:59:36Z +336 2005-05-27T03:15:23Z 1811 275 2005-05-29T22:43:23Z 1 2020-02-15T06:59:36Z +337 2005-05-27T03:22:30Z 751 19 2005-06-02T03:27:30Z 1 2020-02-15T06:59:36Z +338 2005-05-27T03:42:52Z 2596 165 2005-06-01T05:23:52Z 2 2020-02-15T06:59:36Z +339 2005-05-27T03:47:18Z 2410 516 2005-06-04T05:46:18Z 2 2020-02-15T06:59:36Z +340 2005-05-27T03:55:25Z 946 209 2005-06-04T07:57:25Z 2 2020-02-15T06:59:36Z +341 2005-05-27T04:01:42Z 4168 56 2005-06-05T08:51:42Z 1 2020-02-15T06:59:36Z +342 2005-05-27T04:11:04Z 4019 539 2005-05-29T01:28:04Z 2 2020-02-15T06:59:36Z +343 2005-05-27T04:13:41Z 3301 455 2005-05-28T08:34:41Z 1 2020-02-15T06:59:36Z +344 2005-05-27T04:30:22Z 2327 236 2005-05-29T10:13:22Z 2 2020-02-15T06:59:36Z +345 2005-05-27T04:32:25Z 1396 144 2005-05-31T09:50:25Z 1 2020-02-15T06:59:36Z +346 2005-05-27T04:34:41Z 4319 14 2005-06-05T04:24:41Z 2 2020-02-15T06:59:36Z +347 2005-05-27T04:40:33Z 1625 378 2005-05-28T09:56:33Z 2 2020-02-15T06:59:36Z +348 2005-05-27T04:50:56Z 1825 473 2005-06-01T04:43:56Z 1 2020-02-15T06:59:36Z +349 2005-05-27T04:53:11Z 2920 36 2005-05-28T06:33:11Z 2 2020-02-15T06:59:36Z +350 2005-05-27T05:01:28Z 2756 9 2005-06-04T05:01:28Z 2 2020-02-15T06:59:36Z +351 2005-05-27T05:39:03Z 3371 118 2005-06-01T11:10:03Z 1 2020-02-15T06:59:36Z +352 2005-05-27T05:48:19Z 4369 157 2005-05-29T09:05:19Z 1 2020-02-15T06:59:36Z +353 2005-05-27T06:03:39Z 3989 503 2005-06-03T04:39:39Z 2 2020-02-15T06:59:36Z +354 2005-05-27T06:12:26Z 2058 452 2005-06-01T06:48:26Z 1 2020-02-15T06:59:36Z +355 2005-05-27T06:15:33Z 141 446 2005-06-01T02:50:33Z 2 2020-02-15T06:59:36Z +356 2005-05-27T06:32:30Z 2868 382 2005-05-30T06:24:30Z 2 2020-02-15T06:59:36Z +357 2005-05-27T06:37:15Z 4417 198 2005-05-30T07:04:15Z 2 2020-02-15T06:59:36Z +358 2005-05-27T06:43:59Z 1925 102 2005-05-29T11:28:59Z 2 2020-02-15T06:59:36Z +359 2005-05-27T06:48:33Z 1156 152 2005-05-29T03:55:33Z 1 2020-02-15T06:59:36Z +360 2005-05-27T06:51:14Z 3489 594 2005-06-03T01:58:14Z 1 2020-02-15T06:59:36Z +361 2005-05-27T07:03:28Z 6 587 2005-05-31T08:01:28Z 1 2020-02-15T06:59:36Z +362 2005-05-27T07:10:25Z 2324 147 2005-06-01T08:34:25Z 1 2020-02-15T06:59:36Z +363 2005-05-27T07:14:00Z 4282 345 2005-05-28T12:22:00Z 2 2020-02-15T06:59:36Z +364 2005-05-27T07:20:12Z 833 430 2005-05-31T10:44:12Z 2 2020-02-15T06:59:36Z +365 2005-05-27T07:31:20Z 2887 167 2005-06-04T04:46:20Z 1 2020-02-15T06:59:36Z +366 2005-05-27T07:33:54Z 360 134 2005-06-04T01:55:54Z 2 2020-02-15T06:59:36Z +367 2005-05-27T07:37:02Z 3437 439 2005-05-30T05:43:02Z 2 2020-02-15T06:59:36Z +368 2005-05-27T07:42:29Z 1247 361 2005-06-04T11:20:29Z 2 2020-02-15T06:59:36Z +369 2005-05-27T07:46:49Z 944 508 2005-06-01T06:20:49Z 2 2020-02-15T06:59:36Z +370 2005-05-27T07:49:43Z 3347 22 2005-06-05T06:39:43Z 2 2020-02-15T06:59:36Z +371 2005-05-27T08:08:18Z 1235 295 2005-06-05T03:05:18Z 2 2020-02-15T06:59:36Z +372 2005-05-27T08:13:58Z 4089 510 2005-06-04T03:50:58Z 2 2020-02-15T06:59:36Z +373 2005-05-27T08:16:25Z 1649 464 2005-06-01T11:41:25Z 1 2020-02-15T06:59:36Z +374 2005-05-27T08:26:30Z 4420 337 2005-06-05T07:13:30Z 1 2020-02-15T06:59:36Z +375 2005-05-27T08:49:21Z 1815 306 2005-06-04T14:11:21Z 1 2020-02-15T06:59:36Z +376 2005-05-27T08:58:15Z 3197 542 2005-06-02T04:48:15Z 1 2020-02-15T06:59:36Z +377 2005-05-27T09:04:05Z 3012 170 2005-06-02T03:36:05Z 2 2020-02-15T06:59:36Z +378 2005-05-27T09:23:22Z 2242 53 2005-05-29T15:20:22Z 1 2020-02-15T06:59:36Z +379 2005-05-27T09:25:32Z 3462 584 2005-06-02T06:19:32Z 1 2020-02-15T06:59:36Z +380 2005-05-27T09:34:39Z 1777 176 2005-06-04T11:45:39Z 1 2020-02-15T06:59:36Z +381 2005-05-27T09:43:25Z 2748 371 2005-05-31T12:00:25Z 1 2020-02-15T06:59:36Z +382 2005-05-27T10:12:00Z 4358 183 2005-05-31T15:03:00Z 1 2020-02-15T06:59:36Z +383 2005-05-27T10:12:20Z 955 298 2005-06-03T10:37:20Z 1 2020-02-15T06:59:36Z +384 2005-05-27T10:18:20Z 910 371 2005-06-02T09:21:20Z 2 2020-02-15T06:59:36Z +385 2005-05-27T10:23:25Z 1565 213 2005-05-30T15:27:25Z 2 2020-02-15T06:59:36Z +386 2005-05-27T10:26:31Z 1288 109 2005-05-30T08:32:31Z 1 2020-02-15T06:59:36Z +387 2005-05-27T10:35:27Z 2684 506 2005-06-01T13:37:27Z 2 2020-02-15T06:59:36Z +388 2005-05-27T10:37:27Z 434 28 2005-05-30T05:45:27Z 1 2020-02-15T06:59:36Z +389 2005-05-27T10:45:41Z 691 500 2005-06-05T06:22:41Z 2 2020-02-15T06:59:36Z +390 2005-05-27T11:02:26Z 3759 48 2005-06-02T16:09:26Z 2 2020-02-15T06:59:36Z +391 2005-05-27T11:03:55Z 2193 197 2005-06-01T11:59:55Z 2 2020-02-15T06:59:36Z +392 2005-05-27T11:14:42Z 263 359 2005-06-01T14:28:42Z 2 2020-02-15T06:59:36Z +393 2005-05-27T11:18:25Z 145 251 2005-05-28T07:10:25Z 2 2020-02-15T06:59:36Z +394 2005-05-27T11:26:11Z 1890 274 2005-06-03T16:44:11Z 2 2020-02-15T06:59:36Z +395 2005-05-27T11:45:49Z 752 575 2005-05-31T13:42:49Z 1 2020-02-15T06:59:36Z +396 2005-05-27T11:47:04Z 1020 112 2005-05-29T10:14:04Z 1 2020-02-15T06:59:36Z +397 2005-05-27T12:29:02Z 4193 544 2005-05-28T17:36:02Z 2 2020-02-15T06:59:36Z +398 2005-05-27T12:44:03Z 1686 422 2005-06-02T08:19:03Z 1 2020-02-15T06:59:36Z +399 2005-05-27T12:48:38Z 553 204 2005-05-29T15:27:38Z 1 2020-02-15T06:59:36Z +400 2005-05-27T12:51:44Z 258 249 2005-05-31T08:34:44Z 2 2020-02-15T06:59:36Z +401 2005-05-27T12:57:55Z 2179 46 2005-05-29T17:55:55Z 2 2020-02-15T06:59:36Z +402 2005-05-27T13:17:18Z 461 354 2005-05-30T08:53:18Z 2 2020-02-15T06:59:36Z +403 2005-05-27T13:28:52Z 3983 424 2005-05-29T11:47:52Z 2 2020-02-15T06:59:36Z +404 2005-05-27T13:31:51Z 1293 168 2005-05-30T16:58:51Z 1 2020-02-15T06:59:36Z +405 2005-05-27T13:32:39Z 4090 272 2005-06-05T18:53:39Z 2 2020-02-15T06:59:36Z +406 2005-05-27T13:46:46Z 2136 381 2005-05-30T12:43:46Z 1 2020-02-15T06:59:36Z +407 2005-05-27T13:57:38Z 1077 44 2005-05-31T18:23:38Z 1 2020-02-15T06:59:36Z +408 2005-05-27T13:57:39Z 1438 84 2005-05-28T11:57:39Z 1 2020-02-15T06:59:36Z +409 2005-05-27T14:10:58Z 3652 220 2005-06-02T10:40:58Z 2 2020-02-15T06:59:36Z +410 2005-05-27T14:11:22Z 4010 506 2005-06-02T20:06:22Z 2 2020-02-15T06:59:36Z +411 2005-05-27T14:14:14Z 1434 388 2005-06-03T17:39:14Z 1 2020-02-15T06:59:36Z +412 2005-05-27T14:17:23Z 1400 375 2005-05-29T15:07:23Z 2 2020-02-15T06:59:36Z +413 2005-05-27T14:45:37Z 3516 307 2005-06-03T11:11:37Z 1 2020-02-15T06:59:36Z +414 2005-05-27T14:48:20Z 1019 219 2005-05-31T14:39:20Z 2 2020-02-15T06:59:36Z +415 2005-05-27T14:51:45Z 3698 304 2005-05-28T19:07:45Z 2 2020-02-15T06:59:36Z +416 2005-05-27T15:02:10Z 2371 222 2005-05-29T10:34:10Z 2 2020-02-15T06:59:36Z +417 2005-05-27T15:07:27Z 2253 475 2005-05-29T20:01:27Z 2 2020-02-15T06:59:36Z +418 2005-05-27T15:13:17Z 3063 151 2005-06-04T12:05:17Z 2 2020-02-15T06:59:36Z +419 2005-05-27T15:15:11Z 2514 77 2005-06-02T11:53:11Z 1 2020-02-15T06:59:36Z +420 2005-05-27T15:19:38Z 619 93 2005-06-03T15:07:38Z 2 2020-02-15T06:59:36Z +421 2005-05-27T15:30:13Z 2985 246 2005-06-04T13:19:13Z 2 2020-02-15T06:59:36Z +422 2005-05-27T15:31:55Z 1152 150 2005-06-01T11:47:55Z 2 2020-02-15T06:59:36Z +423 2005-05-27T15:32:57Z 1783 284 2005-06-02T19:03:57Z 1 2020-02-15T06:59:36Z +424 2005-05-27T15:34:01Z 2815 35 2005-06-05T09:44:01Z 1 2020-02-15T06:59:36Z +425 2005-05-27T15:51:30Z 1518 182 2005-06-03T16:52:30Z 2 2020-02-15T06:59:36Z +426 2005-05-27T15:56:57Z 1103 522 2005-06-05T11:45:57Z 1 2020-02-15T06:59:36Z +427 2005-05-27T16:10:04Z 1677 288 2005-06-05T13:22:04Z 2 2020-02-15T06:59:36Z +428 2005-05-27T16:10:58Z 3349 161 2005-05-31T17:24:58Z 2 2020-02-15T06:59:36Z +429 2005-05-27T16:21:26Z 129 498 2005-06-05T20:23:26Z 2 2020-02-15T06:59:36Z +430 2005-05-27T16:22:10Z 1920 190 2005-06-05T13:10:10Z 1 2020-02-15T06:59:36Z +431 2005-05-27T16:31:05Z 4507 334 2005-06-05T11:29:05Z 1 2020-02-15T06:59:36Z +432 2005-05-27T16:40:29Z 1119 46 2005-05-29T16:20:29Z 1 2020-02-15T06:59:36Z +433 2005-05-27T16:40:40Z 4364 574 2005-05-30T19:55:40Z 2 2020-02-15T06:59:36Z +434 2005-05-27T16:54:27Z 3360 246 2005-06-04T22:26:27Z 1 2020-02-15T06:59:36Z +435 2005-05-27T17:17:09Z 3328 3 2005-06-02T11:20:09Z 2 2020-02-15T06:59:36Z +436 2005-05-27T17:21:04Z 4317 267 2005-05-30T21:26:04Z 2 2020-02-15T06:59:36Z +437 2005-05-27T17:47:22Z 1800 525 2005-06-05T14:22:22Z 2 2020-02-15T06:59:36Z +438 2005-05-27T17:52:34Z 4260 249 2005-06-05T22:23:34Z 2 2020-02-15T06:59:36Z +439 2005-05-27T17:54:48Z 354 319 2005-06-02T23:01:48Z 2 2020-02-15T06:59:36Z +440 2005-05-27T18:00:35Z 4452 314 2005-05-29T16:15:35Z 1 2020-02-15T06:59:36Z +441 2005-05-27T18:11:05Z 1578 54 2005-05-30T22:45:05Z 1 2020-02-15T06:59:36Z +442 2005-05-27T18:12:13Z 1457 403 2005-05-30T12:30:13Z 2 2020-02-15T06:59:36Z +443 2005-05-27T18:35:20Z 2021 547 2005-06-04T18:58:20Z 1 2020-02-15T06:59:36Z +444 2005-05-27T18:39:15Z 723 239 2005-06-01T15:56:15Z 1 2020-02-15T06:59:36Z +445 2005-05-27T18:42:57Z 1757 293 2005-05-30T22:35:57Z 2 2020-02-15T06:59:36Z +446 2005-05-27T18:48:41Z 1955 401 2005-06-03T16:42:41Z 2 2020-02-15T06:59:36Z +447 2005-05-27T18:57:02Z 3890 133 2005-06-05T18:38:02Z 1 2020-02-15T06:59:36Z +448 2005-05-27T19:03:08Z 2671 247 2005-06-03T20:28:08Z 2 2020-02-15T06:59:36Z +449 2005-05-27T19:13:15Z 2469 172 2005-06-04T01:08:15Z 2 2020-02-15T06:59:36Z +450 2005-05-27T19:18:54Z 1343 247 2005-06-05T23:52:54Z 1 2020-02-15T06:59:36Z +451 2005-05-27T19:27:54Z 205 87 2005-05-29T01:07:54Z 2 2020-02-15T06:59:36Z +452 2005-05-27T19:30:33Z 2993 127 2005-05-30T20:53:33Z 2 2020-02-15T06:59:36Z +453 2005-05-27T19:31:16Z 4425 529 2005-05-29T23:06:16Z 1 2020-02-15T06:59:36Z +454 2005-05-27T19:31:36Z 3499 575 2005-05-30T15:46:36Z 1 2020-02-15T06:59:36Z +455 2005-05-27T19:43:29Z 3344 343 2005-06-04T23:40:29Z 2 2020-02-15T06:59:36Z +456 2005-05-27T19:50:06Z 1699 92 2005-06-02T22:14:06Z 1 2020-02-15T06:59:36Z +457 2005-05-27T19:52:29Z 2368 300 2005-06-02T17:17:29Z 2 2020-02-15T06:59:37Z +458 2005-05-27T19:58:36Z 3350 565 2005-06-06T00:51:36Z 1 2020-02-15T06:59:37Z +459 2005-05-27T20:00:04Z 597 468 2005-05-29T22:47:04Z 1 2020-02-15T06:59:37Z +460 2005-05-27T20:02:03Z 4238 240 2005-05-28T16:14:03Z 1 2020-02-15T06:59:37Z +461 2005-05-27T20:08:55Z 2077 447 2005-06-01T14:32:55Z 1 2020-02-15T06:59:37Z +462 2005-05-27T20:10:36Z 2314 364 2005-06-03T21:12:36Z 2 2020-02-15T06:59:37Z +463 2005-05-27T20:11:47Z 826 21 2005-06-04T21:18:47Z 1 2020-02-15T06:59:37Z +464 2005-05-27T20:42:44Z 1313 193 2005-05-30T00:49:44Z 2 2020-02-15T06:59:37Z +465 2005-05-27T20:44:36Z 20 261 2005-06-02T02:43:36Z 1 2020-02-15T06:59:37Z +466 2005-05-27T20:57:07Z 1786 442 2005-05-29T15:52:07Z 1 2020-02-15T06:59:37Z +467 2005-05-27T21:10:03Z 339 557 2005-06-01T16:08:03Z 1 2020-02-15T06:59:37Z +468 2005-05-27T21:13:10Z 2656 101 2005-06-04T15:26:10Z 2 2020-02-15T06:59:37Z +469 2005-05-27T21:14:26Z 4463 154 2005-06-05T21:51:26Z 1 2020-02-15T06:59:37Z +470 2005-05-27T21:17:08Z 1613 504 2005-06-04T17:47:08Z 1 2020-02-15T06:59:37Z +471 2005-05-27T21:32:42Z 2872 209 2005-05-31T00:39:42Z 2 2020-02-15T06:59:37Z +472 2005-05-27T21:36:15Z 1338 528 2005-05-29T21:07:15Z 1 2020-02-15T06:59:37Z +473 2005-05-27T21:36:34Z 802 105 2005-06-05T17:02:34Z 1 2020-02-15T06:59:37Z +474 2005-05-27T22:11:56Z 1474 274 2005-05-31T19:07:56Z 1 2020-02-15T06:59:37Z +475 2005-05-27T22:16:26Z 2520 159 2005-05-28T19:58:26Z 1 2020-02-15T06:59:37Z +476 2005-05-27T22:31:36Z 2451 543 2005-06-03T19:12:36Z 1 2020-02-15T06:59:37Z +477 2005-05-27T22:33:33Z 2437 161 2005-06-02T18:35:33Z 2 2020-02-15T06:59:37Z +478 2005-05-27T22:38:20Z 424 557 2005-05-31T18:39:20Z 2 2020-02-15T06:59:37Z +479 2005-05-27T22:39:10Z 2060 231 2005-06-05T22:46:10Z 2 2020-02-15T06:59:37Z +480 2005-05-27T22:47:39Z 2108 220 2005-06-04T21:17:39Z 2 2020-02-15T06:59:37Z +481 2005-05-27T22:49:27Z 72 445 2005-05-30T17:46:27Z 2 2020-02-15T06:59:37Z +482 2005-05-27T22:53:02Z 4178 546 2005-06-01T22:53:02Z 2 2020-02-15T06:59:37Z +483 2005-05-27T23:00:25Z 1510 32 2005-05-28T21:30:25Z 1 2020-02-15T06:59:37Z +484 2005-05-27T23:26:45Z 3115 491 2005-05-29T21:16:45Z 2 2020-02-15T06:59:37Z +485 2005-05-27T23:40:52Z 2392 105 2005-05-28T22:40:52Z 2 2020-02-15T06:59:37Z +486 2005-05-27T23:51:12Z 1822 398 2005-05-28T20:26:12Z 1 2020-02-15T06:59:37Z +487 2005-05-28T00:00:30Z 3774 569 2005-05-28T19:18:30Z 2 2020-02-15T06:59:37Z +488 2005-05-28T00:07:50Z 393 168 2005-06-03T22:30:50Z 2 2020-02-15T06:59:37Z +489 2005-05-28T00:09:12Z 1940 476 2005-05-31T04:44:12Z 2 2020-02-15T06:59:37Z +490 2005-05-28T00:09:56Z 3524 95 2005-05-30T22:32:56Z 2 2020-02-15T06:59:37Z +491 2005-05-28T00:13:35Z 1326 196 2005-05-29T00:11:35Z 2 2020-02-15T06:59:37Z +492 2005-05-28T00:24:58Z 1999 228 2005-05-28T22:34:58Z 1 2020-02-15T06:59:37Z +493 2005-05-28T00:34:11Z 184 501 2005-05-30T18:40:11Z 1 2020-02-15T06:59:37Z +494 2005-05-28T00:39:31Z 1850 64 2005-06-02T19:35:31Z 1 2020-02-15T06:59:37Z +495 2005-05-28T00:40:48Z 1007 526 2005-05-29T06:07:48Z 1 2020-02-15T06:59:37Z +496 2005-05-28T00:43:41Z 1785 56 2005-06-04T03:56:41Z 1 2020-02-15T06:59:37Z +497 2005-05-28T00:54:39Z 2636 20 2005-06-03T20:47:39Z 2 2020-02-15T06:59:37Z +498 2005-05-28T01:01:21Z 458 287 2005-05-30T21:20:21Z 2 2020-02-15T06:59:37Z +499 2005-05-28T01:05:07Z 2381 199 2005-06-05T19:54:07Z 2 2020-02-15T06:59:37Z +500 2005-05-28T01:05:25Z 4500 145 2005-05-31T20:04:25Z 1 2020-02-15T06:59:37Z +501 2005-05-28T01:09:36Z 601 162 2005-05-30T06:14:36Z 2 2020-02-15T06:59:37Z +502 2005-05-28T01:34:43Z 3131 179 2005-05-31T01:02:43Z 2 2020-02-15T06:59:37Z +503 2005-05-28T01:35:25Z 3005 288 2005-05-28T22:12:25Z 2 2020-02-15T06:59:37Z +504 2005-05-28T02:05:34Z 2086 170 2005-05-30T23:03:34Z 1 2020-02-15T06:59:37Z +505 2005-05-28T02:06:37Z 71 111 2005-05-29T06:57:37Z 1 2020-02-15T06:59:37Z +506 2005-05-28T02:09:19Z 667 469 2005-06-05T20:34:19Z 1 2020-02-15T06:59:37Z +507 2005-05-28T02:31:19Z 3621 421 2005-06-02T05:07:19Z 2 2020-02-15T06:59:37Z +508 2005-05-28T02:40:50Z 4179 434 2005-06-05T03:05:50Z 1 2020-02-15T06:59:37Z +509 2005-05-28T02:51:12Z 3416 147 2005-05-31T06:27:12Z 1 2020-02-15T06:59:37Z +510 2005-05-28T02:52:14Z 4338 113 2005-05-30T21:20:14Z 2 2020-02-15T06:59:37Z +511 2005-05-28T03:04:04Z 3827 296 2005-06-03T04:58:04Z 1 2020-02-15T06:59:37Z +512 2005-05-28T03:07:50Z 2176 231 2005-06-05T02:12:50Z 2 2020-02-15T06:59:37Z +513 2005-05-28T03:08:10Z 225 489 2005-05-29T07:22:10Z 1 2020-02-15T06:59:37Z +514 2005-05-28T03:09:28Z 1697 597 2005-06-05T00:49:28Z 2 2020-02-15T06:59:37Z +515 2005-05-28T03:10:10Z 3369 110 2005-06-04T02:18:10Z 2 2020-02-15T06:59:37Z +516 2005-05-28T03:11:47Z 4357 400 2005-06-04T02:19:47Z 1 2020-02-15T06:59:37Z +517 2005-05-28T03:17:57Z 234 403 2005-05-29T06:33:57Z 1 2020-02-15T06:59:37Z +518 2005-05-28T03:18:02Z 4087 480 2005-05-30T05:32:02Z 1 2020-02-15T06:59:37Z +519 2005-05-28T03:22:33Z 3564 245 2005-06-03T05:06:33Z 1 2020-02-15T06:59:37Z +520 2005-05-28T03:27:37Z 3845 161 2005-06-04T05:47:37Z 1 2020-02-15T06:59:37Z +521 2005-05-28T03:32:22Z 2397 374 2005-05-28T22:37:22Z 1 2020-02-15T06:59:37Z +522 2005-05-28T03:33:20Z 3195 382 2005-05-31T04:23:20Z 1 2020-02-15T06:59:37Z +523 2005-05-28T03:53:26Z 1905 138 2005-05-31T05:58:26Z 2 2020-02-15T06:59:37Z +524 2005-05-28T03:57:28Z 1962 223 2005-05-31T05:20:28Z 1 2020-02-15T06:59:37Z +525 2005-05-28T04:25:33Z 1817 14 2005-06-06T04:18:33Z 1 2020-02-15T06:59:37Z +526 2005-05-28T04:27:37Z 1387 408 2005-05-30T07:52:37Z 1 2020-02-15T06:59:37Z +527 2005-05-28T04:28:38Z 266 169 2005-06-02T08:19:38Z 1 2020-02-15T06:59:37Z +528 2005-05-28T04:30:05Z 1655 359 2005-06-03T10:01:05Z 2 2020-02-15T06:59:37Z +529 2005-05-28T04:34:17Z 2624 469 2005-05-30T00:35:17Z 1 2020-02-15T06:59:37Z +530 2005-05-28T05:13:01Z 3332 312 2005-06-01T10:21:01Z 2 2020-02-15T06:59:37Z +531 2005-05-28T05:23:38Z 1113 589 2005-05-29T08:00:38Z 2 2020-02-15T06:59:37Z +532 2005-05-28T05:36:58Z 2793 120 2005-06-02T01:50:58Z 1 2020-02-15T06:59:37Z +533 2005-05-28T06:14:46Z 4306 528 2005-06-01T06:26:46Z 2 2020-02-15T06:59:37Z +534 2005-05-28T06:15:25Z 992 184 2005-06-06T07:51:25Z 1 2020-02-15T06:59:37Z +535 2005-05-28T06:16:32Z 4209 307 2005-05-31T02:48:32Z 1 2020-02-15T06:59:37Z +536 2005-05-28T06:17:33Z 2962 514 2005-06-03T10:02:33Z 2 2020-02-15T06:59:37Z +537 2005-05-28T06:20:55Z 3095 315 2005-06-05T11:48:55Z 2 2020-02-15T06:59:37Z +538 2005-05-28T06:21:05Z 2262 110 2005-06-02T01:22:05Z 2 2020-02-15T06:59:37Z +539 2005-05-28T06:26:16Z 3427 161 2005-05-30T02:02:16Z 1 2020-02-15T06:59:37Z +540 2005-05-28T06:40:25Z 3321 119 2005-06-06T00:47:25Z 1 2020-02-15T06:59:37Z +541 2005-05-28T06:41:58Z 1662 535 2005-06-02T09:12:58Z 2 2020-02-15T06:59:37Z +542 2005-05-28T06:42:13Z 4444 261 2005-06-03T09:05:13Z 1 2020-02-15T06:59:37Z +543 2005-05-28T06:43:34Z 530 493 2005-06-06T07:16:34Z 2 2020-02-15T06:59:37Z +544 2005-05-28T07:03:00Z 2964 311 2005-06-06T06:23:00Z 1 2020-02-15T06:59:37Z +545 2005-05-28T07:10:20Z 1086 54 2005-06-04T01:47:20Z 2 2020-02-15T06:59:37Z +546 2005-05-28T07:16:25Z 487 20 2005-06-01T08:36:25Z 1 2020-02-15T06:59:37Z +547 2005-05-28T07:24:28Z 2065 506 2005-06-06T01:31:28Z 2 2020-02-15T06:59:37Z +548 2005-05-28T07:34:56Z 3704 450 2005-06-05T03:14:56Z 2 2020-02-15T06:59:37Z +549 2005-05-28T07:35:37Z 1818 159 2005-06-02T09:08:37Z 1 2020-02-15T06:59:37Z +550 2005-05-28T07:39:16Z 3632 432 2005-06-06T12:20:16Z 2 2020-02-15T06:59:37Z +551 2005-05-28T07:44:18Z 3119 315 2005-06-02T12:55:18Z 2 2020-02-15T06:59:37Z +552 2005-05-28T07:53:38Z 23 106 2005-06-04T12:45:38Z 2 2020-02-15T06:59:37Z +553 2005-05-28T08:14:44Z 1349 176 2005-06-02T03:01:44Z 2 2020-02-15T06:59:37Z +554 2005-05-28T08:23:16Z 1951 376 2005-05-31T03:29:16Z 2 2020-02-15T06:59:37Z +555 2005-05-28T08:31:14Z 4397 55 2005-05-30T07:34:14Z 2 2020-02-15T06:59:37Z +556 2005-05-28T08:31:36Z 1814 22 2005-06-06T07:29:36Z 2 2020-02-15T06:59:37Z +557 2005-05-28T08:36:22Z 158 444 2005-06-03T10:42:22Z 2 2020-02-15T06:59:37Z +558 2005-05-28T08:38:43Z 4163 442 2005-06-06T13:52:43Z 1 2020-02-15T06:59:37Z +559 2005-05-28T08:39:02Z 1227 572 2005-06-05T08:38:02Z 2 2020-02-15T06:59:37Z +560 2005-05-28T08:53:02Z 644 463 2005-06-04T12:27:02Z 2 2020-02-15T06:59:37Z +561 2005-05-28T08:54:06Z 928 77 2005-06-05T05:54:06Z 1 2020-02-15T06:59:37Z +562 2005-05-28T09:01:21Z 3390 102 2005-06-02T05:26:21Z 2 2020-02-15T06:59:37Z +563 2005-05-28T09:10:49Z 53 324 2005-06-06T11:32:49Z 1 2020-02-15T06:59:37Z +564 2005-05-28T09:12:09Z 2973 282 2005-05-29T05:07:09Z 1 2020-02-15T06:59:37Z +565 2005-05-28T09:26:31Z 1494 288 2005-06-01T07:28:31Z 1 2020-02-15T06:59:37Z +566 2005-05-28T09:51:39Z 4330 253 2005-06-05T09:35:39Z 1 2020-02-15T06:59:37Z +567 2005-05-28T09:56:20Z 3308 184 2005-06-01T06:41:20Z 2 2020-02-15T06:59:37Z +568 2005-05-28T09:57:36Z 2232 155 2005-05-31T15:44:36Z 1 2020-02-15T06:59:37Z +569 2005-05-28T10:12:41Z 4534 56 2005-06-03T10:08:41Z 2 2020-02-15T06:59:37Z +570 2005-05-28T10:15:04Z 1122 21 2005-05-30T08:32:04Z 1 2020-02-15T06:59:37Z +571 2005-05-28T10:17:41Z 4250 516 2005-06-05T07:56:41Z 1 2020-02-15T06:59:37Z +572 2005-05-28T10:30:13Z 1899 337 2005-06-02T05:04:13Z 2 2020-02-15T06:59:37Z +573 2005-05-28T10:35:23Z 4020 1 2005-06-03T06:32:23Z 1 2020-02-15T06:59:37Z +574 2005-05-28T10:44:28Z 3883 76 2005-06-04T11:42:28Z 1 2020-02-15T06:59:37Z +575 2005-05-28T10:56:09Z 4451 142 2005-06-05T15:39:09Z 1 2020-02-15T06:59:37Z +576 2005-05-28T10:56:10Z 1866 588 2005-06-04T13:15:10Z 2 2020-02-15T06:59:37Z +577 2005-05-28T11:09:14Z 375 6 2005-06-01T13:27:14Z 2 2020-02-15T06:59:37Z +578 2005-05-28T11:15:48Z 2938 173 2005-06-02T09:59:48Z 1 2020-02-15T06:59:37Z +579 2005-05-28T11:19:23Z 3481 181 2005-06-02T13:51:23Z 1 2020-02-15T06:59:37Z +580 2005-05-28T11:19:53Z 3515 17 2005-06-01T10:44:53Z 2 2020-02-15T06:59:37Z +581 2005-05-28T11:20:29Z 1380 186 2005-06-04T12:37:29Z 2 2020-02-15T06:59:37Z +582 2005-05-28T11:33:46Z 4579 198 2005-05-29T08:33:46Z 1 2020-02-15T06:59:37Z +583 2005-05-28T11:48:55Z 2679 386 2005-06-04T07:09:55Z 2 2020-02-15T06:59:37Z +584 2005-05-28T11:49:00Z 1833 69 2005-06-01T11:54:00Z 1 2020-02-15T06:59:37Z +585 2005-05-28T11:50:45Z 3544 490 2005-06-03T15:35:45Z 2 2020-02-15T06:59:37Z +586 2005-05-28T12:03:00Z 898 77 2005-05-29T13:16:00Z 1 2020-02-15T06:59:37Z +587 2005-05-28T12:05:33Z 1413 64 2005-05-30T13:45:33Z 2 2020-02-15T06:59:37Z +588 2005-05-28T12:08:37Z 95 89 2005-05-29T16:25:37Z 2 2020-02-15T06:59:37Z +589 2005-05-28T12:27:50Z 4231 308 2005-06-03T07:15:50Z 2 2020-02-15T06:59:37Z +590 2005-05-28T13:06:50Z 473 462 2005-06-02T09:18:50Z 1 2020-02-15T06:59:37Z +591 2005-05-28T13:11:04Z 377 19 2005-05-29T17:20:04Z 2 2020-02-15T06:59:37Z +592 2005-05-28T13:21:08Z 638 244 2005-05-29T16:55:08Z 1 2020-02-15T06:59:37Z +593 2005-05-28T13:33:23Z 1810 16 2005-05-30T17:10:23Z 2 2020-02-15T06:59:37Z +594 2005-05-28T13:41:56Z 2766 538 2005-05-30T12:00:56Z 1 2020-02-15T06:59:37Z +595 2005-05-28T13:59:54Z 595 294 2005-06-05T15:16:54Z 1 2020-02-15T06:59:37Z +596 2005-05-28T14:00:03Z 821 589 2005-05-29T17:10:03Z 1 2020-02-15T06:59:37Z +597 2005-05-28T14:01:02Z 4469 249 2005-06-06T19:06:02Z 2 2020-02-15T06:59:37Z +598 2005-05-28T14:04:50Z 599 159 2005-06-03T18:00:50Z 2 2020-02-15T06:59:37Z +599 2005-05-28T14:05:57Z 4136 393 2005-06-01T16:41:57Z 2 2020-02-15T06:59:37Z +600 2005-05-28T14:08:19Z 1567 332 2005-06-03T11:57:19Z 2 2020-02-15T06:59:37Z +601 2005-05-28T14:08:22Z 3225 429 2005-06-04T10:50:22Z 1 2020-02-15T06:59:37Z +602 2005-05-28T14:15:54Z 1300 590 2005-06-05T15:16:54Z 2 2020-02-15T06:59:37Z +603 2005-05-28T14:27:51Z 3248 537 2005-05-29T13:13:51Z 1 2020-02-15T06:59:37Z +604 2005-05-28T14:37:07Z 1585 426 2005-06-03T11:03:07Z 2 2020-02-15T06:59:37Z +605 2005-05-28T14:39:10Z 4232 501 2005-06-01T09:28:10Z 2 2020-02-15T06:59:37Z +606 2005-05-28T14:48:39Z 3509 299 2005-06-04T09:44:39Z 2 2020-02-15T06:59:37Z +607 2005-05-28T15:02:41Z 2561 554 2005-05-30T12:54:41Z 2 2020-02-15T06:59:37Z +608 2005-05-28T15:03:44Z 4254 494 2005-06-04T17:14:44Z 2 2020-02-15T06:59:37Z +609 2005-05-28T15:04:02Z 2944 150 2005-06-05T14:47:02Z 2 2020-02-15T06:59:37Z +610 2005-05-28T15:15:25Z 3642 500 2005-06-02T12:30:25Z 2 2020-02-15T06:59:37Z +611 2005-05-28T15:18:18Z 1230 580 2005-05-31T20:15:18Z 2 2020-02-15T06:59:37Z +612 2005-05-28T15:24:54Z 2180 161 2005-05-30T14:22:54Z 2 2020-02-15T06:59:37Z +613 2005-05-28T15:27:22Z 270 595 2005-06-02T20:01:22Z 1 2020-02-15T06:59:37Z +614 2005-05-28T15:33:28Z 280 307 2005-06-04T12:27:28Z 2 2020-02-15T06:59:37Z +615 2005-05-28T15:35:52Z 3397 533 2005-06-03T17:35:52Z 2 2020-02-15T06:59:37Z +616 2005-05-28T15:45:39Z 989 471 2005-06-02T09:55:39Z 1 2020-02-15T06:59:37Z +617 2005-05-28T15:49:14Z 4142 372 2005-05-31T14:29:14Z 2 2020-02-15T06:59:37Z +618 2005-05-28T15:50:07Z 4445 248 2005-06-01T19:45:07Z 1 2020-02-15T06:59:37Z +619 2005-05-28T15:52:26Z 2482 407 2005-06-06T17:55:26Z 2 2020-02-15T06:59:37Z +620 2005-05-28T15:54:45Z 2444 321 2005-06-04T20:26:45Z 1 2020-02-15T06:59:37Z +621 2005-05-28T15:58:12Z 1144 239 2005-05-30T21:54:12Z 1 2020-02-15T06:59:37Z +622 2005-05-28T15:58:22Z 2363 109 2005-06-04T10:13:22Z 1 2020-02-15T06:59:37Z +623 2005-05-28T16:01:28Z 1222 495 2005-05-30T11:19:28Z 1 2020-02-15T06:59:37Z +624 2005-05-28T16:13:22Z 3660 569 2005-06-06T20:35:22Z 1 2020-02-15T06:59:37Z +625 2005-05-28T16:35:46Z 2889 596 2005-06-01T14:19:46Z 1 2020-02-15T06:59:37Z +626 2005-05-28T16:58:09Z 452 584 2005-06-01T14:02:09Z 2 2020-02-15T06:59:37Z +627 2005-05-28T17:04:43Z 425 241 2005-06-04T19:58:43Z 2 2020-02-15T06:59:37Z +628 2005-05-28T17:05:46Z 2513 173 2005-06-06T16:29:46Z 2 2020-02-15T06:59:37Z +629 2005-05-28T17:19:15Z 1527 94 2005-06-02T20:01:15Z 2 2020-02-15T06:59:37Z +630 2005-05-28T17:24:51Z 1254 417 2005-06-05T20:05:51Z 2 2020-02-15T06:59:37Z +631 2005-05-28T17:36:32Z 2465 503 2005-06-03T14:56:32Z 2 2020-02-15T06:59:37Z +632 2005-05-28T17:37:50Z 1287 442 2005-06-03T16:04:50Z 1 2020-02-15T06:59:37Z +633 2005-05-28T17:37:59Z 58 360 2005-06-03T22:49:59Z 2 2020-02-15T06:59:37Z +634 2005-05-28T17:40:35Z 2630 428 2005-06-05T16:18:35Z 2 2020-02-15T06:59:37Z +635 2005-05-28T17:46:57Z 1648 42 2005-06-06T18:24:57Z 1 2020-02-15T06:59:37Z +636 2005-05-28T17:47:58Z 4213 239 2005-06-04T16:32:58Z 1 2020-02-15T06:59:37Z +637 2005-05-28T18:14:29Z 1581 250 2005-05-29T23:48:29Z 2 2020-02-15T06:59:37Z +638 2005-05-28T18:24:43Z 2685 372 2005-06-02T19:03:43Z 2 2020-02-15T06:59:37Z +639 2005-05-28T18:25:02Z 4204 198 2005-05-29T18:22:02Z 1 2020-02-15T06:59:37Z +640 2005-05-28T18:43:26Z 495 465 2005-05-30T13:39:26Z 1 2020-02-15T06:59:37Z +641 2005-05-28T18:45:47Z 3548 396 2005-06-04T15:24:47Z 1 2020-02-15T06:59:37Z +642 2005-05-28T18:49:12Z 140 157 2005-06-01T20:50:12Z 2 2020-02-15T06:59:37Z +643 2005-05-28T18:52:11Z 3105 240 2005-05-31T15:15:11Z 2 2020-02-15T06:59:37Z +644 2005-05-28T18:59:12Z 4304 316 2005-06-04T18:06:12Z 1 2020-02-15T06:59:37Z +645 2005-05-28T19:14:09Z 3128 505 2005-06-05T14:01:09Z 1 2020-02-15T06:59:37Z +646 2005-05-28T19:16:14Z 1922 185 2005-05-31T16:50:14Z 2 2020-02-15T06:59:37Z +647 2005-05-28T19:22:52Z 3435 569 2005-06-01T00:10:52Z 1 2020-02-15T06:59:37Z +648 2005-05-28T19:25:54Z 3476 253 2005-06-03T15:57:54Z 2 2020-02-15T06:59:37Z +649 2005-05-28T19:35:45Z 1781 197 2005-06-05T16:00:45Z 1 2020-02-15T06:59:37Z +650 2005-05-28T19:45:40Z 4384 281 2005-05-29T21:02:40Z 1 2020-02-15T06:59:37Z +651 2005-05-28T19:46:50Z 739 266 2005-05-30T16:29:50Z 1 2020-02-15T06:59:37Z +652 2005-05-28T20:08:47Z 1201 43 2005-05-29T14:57:47Z 2 2020-02-15T06:59:37Z +653 2005-05-28T20:12:20Z 126 327 2005-06-04T14:44:20Z 2 2020-02-15T06:59:37Z +654 2005-05-28T20:15:30Z 2312 23 2005-05-30T22:02:30Z 2 2020-02-15T06:59:37Z +655 2005-05-28T20:16:20Z 331 287 2005-05-31T16:46:20Z 2 2020-02-15T06:59:37Z +656 2005-05-28T20:18:24Z 2846 437 2005-05-30T16:19:24Z 1 2020-02-15T06:59:37Z +657 2005-05-28T20:23:09Z 848 65 2005-06-01T02:11:09Z 1 2020-02-15T06:59:37Z +658 2005-05-28T20:23:23Z 3226 103 2005-06-06T19:31:23Z 2 2020-02-15T06:59:37Z +659 2005-05-28T20:27:53Z 1382 207 2005-05-31T01:36:53Z 2 2020-02-15T06:59:37Z +660 2005-05-28T20:53:31Z 1414 578 2005-05-30T15:26:31Z 1 2020-02-15T06:59:37Z +661 2005-05-28T21:01:25Z 2247 51 2005-06-02T01:22:25Z 2 2020-02-15T06:59:37Z +662 2005-05-28T21:09:31Z 2968 166 2005-06-01T19:00:31Z 2 2020-02-15T06:59:37Z +663 2005-05-28T21:23:02Z 3997 176 2005-06-02T17:39:02Z 2 2020-02-15T06:59:37Z +664 2005-05-28T21:31:08Z 87 523 2005-06-02T20:56:08Z 2 2020-02-15T06:59:37Z +665 2005-05-28T21:38:39Z 1012 415 2005-05-29T21:37:39Z 1 2020-02-15T06:59:37Z +666 2005-05-28T21:48:51Z 3075 437 2005-06-05T16:45:51Z 2 2020-02-15T06:59:37Z +667 2005-05-28T21:49:02Z 797 596 2005-05-31T03:07:02Z 1 2020-02-15T06:59:37Z +668 2005-05-28T21:54:45Z 3528 484 2005-05-29T22:32:45Z 1 2020-02-15T06:59:37Z +669 2005-05-28T22:03:25Z 3677 313 2005-06-03T03:39:25Z 1 2020-02-15T06:59:37Z +670 2005-05-28T22:04:03Z 227 201 2005-06-06T22:43:03Z 2 2020-02-15T06:59:37Z +671 2005-05-28T22:04:30Z 1027 14 2005-06-03T01:21:30Z 2 2020-02-15T06:59:37Z +672 2005-05-28T22:05:29Z 697 306 2005-06-06T02:10:29Z 2 2020-02-15T06:59:37Z +673 2005-05-28T22:07:30Z 1769 468 2005-06-01T23:42:30Z 1 2020-02-15T06:59:37Z +674 2005-05-28T22:11:35Z 1150 87 2005-06-01T23:58:35Z 2 2020-02-15T06:59:37Z +675 2005-05-28T22:22:44Z 1273 338 2005-06-01T02:57:44Z 2 2020-02-15T06:59:37Z +676 2005-05-28T22:27:51Z 2329 490 2005-05-29T20:36:51Z 2 2020-02-15T06:59:37Z +677 2005-05-28T23:00:08Z 4558 194 2005-06-05T19:11:08Z 2 2020-02-15T06:59:37Z +678 2005-05-28T23:15:48Z 3741 269 2005-06-03T04:43:48Z 2 2020-02-15T06:59:37Z +679 2005-05-28T23:24:57Z 907 526 2005-06-06T21:59:57Z 2 2020-02-15T06:59:37Z +680 2005-05-28T23:27:26Z 4147 482 2005-06-02T02:28:26Z 2 2020-02-15T06:59:37Z +681 2005-05-28T23:39:44Z 3346 531 2005-06-01T01:42:44Z 1 2020-02-15T06:59:37Z +682 2005-05-28T23:53:18Z 3160 148 2005-05-29T19:14:18Z 2 2020-02-15T06:59:37Z +683 2005-05-29T00:09:48Z 2038 197 2005-06-02T04:27:48Z 1 2020-02-15T06:59:37Z +684 2005-05-29T00:13:15Z 3242 461 2005-06-04T21:26:15Z 2 2020-02-15T06:59:37Z +685 2005-05-29T00:17:51Z 1385 172 2005-06-05T05:32:51Z 2 2020-02-15T06:59:37Z +686 2005-05-29T00:27:10Z 2441 411 2005-05-30T02:29:10Z 1 2020-02-15T06:59:37Z +687 2005-05-29T00:32:09Z 1731 250 2005-05-31T23:53:09Z 1 2020-02-15T06:59:37Z +688 2005-05-29T00:45:24Z 4135 162 2005-06-02T01:30:24Z 1 2020-02-15T06:59:37Z +689 2005-05-29T00:46:53Z 742 571 2005-06-03T23:48:53Z 2 2020-02-15T06:59:37Z +690 2005-05-29T00:54:53Z 2646 85 2005-06-06T00:45:53Z 1 2020-02-15T06:59:37Z +691 2005-05-29T01:01:26Z 4034 433 2005-06-07T06:21:26Z 1 2020-02-15T06:59:37Z +692 2005-05-29T01:32:10Z 800 18 2005-06-02T03:54:10Z 2 2020-02-15T06:59:37Z +693 2005-05-29T01:42:31Z 635 190 2005-06-03T02:29:31Z 2 2020-02-15T06:59:37Z +694 2005-05-29T01:49:43Z 592 399 2005-06-05T06:52:43Z 1 2020-02-15T06:59:37Z +695 2005-05-29T01:50:53Z 4276 528 2005-06-03T02:28:53Z 1 2020-02-15T06:59:37Z +696 2005-05-29T01:59:10Z 2076 19 2005-06-01T02:45:10Z 1 2020-02-15T06:59:37Z +697 2005-05-29T02:04:04Z 3949 387 2005-06-04T00:47:04Z 2 2020-02-15T06:59:37Z +698 2005-05-29T02:10:52Z 1412 109 2005-06-01T21:52:52Z 1 2020-02-15T06:59:37Z +699 2005-05-29T02:11:44Z 130 246 2005-06-04T20:23:44Z 2 2020-02-15T06:59:37Z +700 2005-05-29T02:18:54Z 500 117 2005-05-30T05:54:54Z 1 2020-02-15T06:59:37Z +701 2005-05-29T02:26:27Z 372 112 2005-06-03T04:59:27Z 1 2020-02-15T06:59:37Z +702 2005-05-29T02:27:30Z 2556 475 2005-05-30T01:52:30Z 2 2020-02-15T06:59:37Z +703 2005-05-29T02:29:36Z 1123 269 2005-06-03T04:54:36Z 2 2020-02-15T06:59:37Z +704 2005-05-29T02:44:43Z 2628 330 2005-06-06T01:51:43Z 2 2020-02-15T06:59:37Z +705 2005-05-29T02:48:52Z 2809 257 2005-05-30T06:21:52Z 1 2020-02-15T06:59:37Z +706 2005-05-29T03:05:49Z 2278 60 2005-06-04T22:48:49Z 1 2020-02-15T06:59:37Z +707 2005-05-29T03:18:19Z 819 252 2005-05-30T02:45:19Z 1 2020-02-15T06:59:37Z +708 2005-05-29T03:23:47Z 3133 127 2005-05-31T21:27:47Z 2 2020-02-15T06:59:37Z +709 2005-05-29T03:48:01Z 2459 479 2005-06-06T05:21:01Z 1 2020-02-15T06:59:37Z +710 2005-05-29T03:48:36Z 194 518 2005-06-03T05:03:36Z 1 2020-02-15T06:59:37Z +711 2005-05-29T03:49:03Z 4581 215 2005-05-31T08:29:03Z 2 2020-02-15T06:59:37Z +712 2005-05-29T04:02:24Z 4191 313 2005-05-30T03:09:24Z 2 2020-02-15T06:59:37Z +713 2005-05-29T04:10:17Z 3664 507 2005-06-07T07:13:17Z 1 2020-02-15T06:59:37Z +714 2005-05-29T04:15:21Z 2010 452 2005-06-01T23:05:21Z 2 2020-02-15T06:59:37Z +715 2005-05-29T04:22:41Z 2030 545 2005-06-05T09:28:41Z 1 2020-02-15T06:59:37Z +716 2005-05-29T04:35:29Z 85 36 2005-06-01T07:42:29Z 2 2020-02-15T06:59:37Z +717 2005-05-29T04:37:44Z 1383 412 2005-05-30T05:48:44Z 2 2020-02-15T06:59:37Z +718 2005-05-29T04:52:23Z 1736 498 2005-06-02T02:27:23Z 1 2020-02-15T06:59:37Z +719 2005-05-29T05:16:05Z 267 245 2005-06-01T07:53:05Z 2 2020-02-15T06:59:37Z +720 2005-05-29T05:17:30Z 3687 480 2005-06-06T02:47:30Z 2 2020-02-15T06:59:37Z +721 2005-05-29T05:28:47Z 1116 44 2005-05-31T11:24:47Z 1 2020-02-15T06:59:37Z +722 2005-05-29T05:30:31Z 4540 259 2005-06-06T04:51:31Z 1 2020-02-15T06:59:37Z +723 2005-05-29T05:34:44Z 3407 309 2005-05-30T05:50:44Z 1 2020-02-15T06:59:37Z +724 2005-05-29T05:53:23Z 3770 416 2005-06-05T04:01:23Z 2 2020-02-15T06:59:37Z +725 2005-05-29T06:03:41Z 4088 245 2005-06-03T08:52:41Z 2 2020-02-15T06:59:37Z +726 2005-05-29T06:05:29Z 933 452 2005-06-05T04:40:29Z 2 2020-02-15T06:59:37Z +727 2005-05-29T06:08:15Z 1629 484 2005-05-30T07:16:15Z 1 2020-02-15T06:59:37Z +728 2005-05-29T06:12:38Z 242 551 2005-06-03T07:41:38Z 1 2020-02-15T06:59:37Z +729 2005-05-29T06:35:13Z 1688 323 2005-06-04T03:23:13Z 2 2020-02-15T06:59:37Z +730 2005-05-29T07:00:59Z 3473 197 2005-06-06T01:17:59Z 1 2020-02-15T06:59:37Z +731 2005-05-29T07:25:16Z 4124 5 2005-05-30T05:21:16Z 1 2020-02-15T06:59:37Z +732 2005-05-29T07:32:51Z 2530 447 2005-05-30T10:08:51Z 2 2020-02-15T06:59:37Z +733 2005-05-29T07:35:21Z 2951 363 2005-06-05T09:14:21Z 1 2020-02-15T06:59:37Z +734 2005-05-29T07:38:52Z 3084 538 2005-06-03T10:17:52Z 2 2020-02-15T06:59:37Z +735 2005-05-29T08:08:13Z 3421 454 2005-06-07T13:35:13Z 1 2020-02-15T06:59:37Z +736 2005-05-29T08:10:07Z 3689 276 2005-06-05T10:21:07Z 2 2020-02-15T06:59:37Z +737 2005-05-29T08:11:31Z 769 589 2005-06-04T11:18:31Z 2 2020-02-15T06:59:37Z +738 2005-05-29T08:20:08Z 2284 256 2005-06-06T08:59:08Z 2 2020-02-15T06:59:37Z +739 2005-05-29T08:28:18Z 1183 84 2005-06-06T09:21:18Z 2 2020-02-15T06:59:37Z +740 2005-05-29T08:30:36Z 600 89 2005-06-04T12:47:36Z 2 2020-02-15T06:59:37Z +741 2005-05-29T08:35:49Z 3189 495 2005-06-04T11:55:49Z 1 2020-02-15T06:59:37Z +742 2005-05-29T08:36:30Z 273 483 2005-06-05T11:30:30Z 1 2020-02-15T06:59:37Z +743 2005-05-29T08:39:02Z 2528 548 2005-06-06T08:42:02Z 2 2020-02-15T06:59:37Z +744 2005-05-29T09:13:08Z 3722 420 2005-06-01T07:05:08Z 2 2020-02-15T06:59:37Z +745 2005-05-29T09:22:57Z 581 152 2005-06-01T09:10:57Z 1 2020-02-15T06:59:37Z +746 2005-05-29T09:25:10Z 4272 130 2005-06-02T04:20:10Z 2 2020-02-15T06:59:37Z +747 2005-05-29T09:26:34Z 1993 291 2005-06-05T07:28:34Z 1 2020-02-15T06:59:37Z +748 2005-05-29T09:27:00Z 2803 7 2005-06-03T04:25:00Z 1 2020-02-15T06:59:37Z +749 2005-05-29T09:33:33Z 1146 375 2005-05-31T11:45:33Z 2 2020-02-15T06:59:37Z +750 2005-05-29T09:41:40Z 730 269 2005-05-30T13:31:40Z 1 2020-02-15T06:59:37Z +751 2005-05-29T09:55:43Z 2711 53 2005-06-02T04:54:43Z 1 2020-02-15T06:59:37Z +752 2005-05-29T10:14:15Z 1720 126 2005-06-04T06:30:15Z 1 2020-02-15T06:59:37Z +753 2005-05-29T10:16:42Z 1021 135 2005-06-05T08:52:42Z 2 2020-02-15T06:59:37Z +754 2005-05-29T10:18:59Z 734 281 2005-06-04T05:03:59Z 2 2020-02-15T06:59:37Z +755 2005-05-29T10:26:29Z 3090 576 2005-06-01T10:25:29Z 2 2020-02-15T06:59:37Z +756 2005-05-29T10:28:45Z 3152 201 2005-06-04T12:50:45Z 1 2020-02-15T06:59:37Z +757 2005-05-29T10:29:47Z 1067 435 2005-06-07T15:27:47Z 1 2020-02-15T06:59:37Z +758 2005-05-29T10:31:56Z 1191 563 2005-06-01T14:53:56Z 2 2020-02-15T06:59:37Z +759 2005-05-29T10:57:57Z 2367 179 2005-06-07T16:23:57Z 2 2020-02-15T06:59:37Z +760 2005-05-29T11:07:25Z 3250 77 2005-06-02T14:16:25Z 1 2020-02-15T06:59:37Z +761 2005-05-29T11:09:01Z 2342 58 2005-06-03T16:18:01Z 2 2020-02-15T06:59:37Z +762 2005-05-29T11:15:51Z 3683 146 2005-06-06T07:48:51Z 1 2020-02-15T06:59:37Z +763 2005-05-29T11:32:15Z 2022 50 2005-05-31T17:31:15Z 1 2020-02-15T06:59:37Z +764 2005-05-29T11:37:35Z 1069 149 2005-05-31T16:47:35Z 1 2020-02-15T06:59:37Z +765 2005-05-29T11:38:34Z 515 69 2005-06-02T17:04:34Z 1 2020-02-15T06:59:37Z +766 2005-05-29T11:47:02Z 2154 383 2005-06-06T07:14:02Z 1 2020-02-15T06:59:37Z +767 2005-05-29T12:20:19Z 687 67 2005-06-02T14:15:19Z 2 2020-02-15T06:59:37Z +768 2005-05-29T12:30:46Z 2895 566 2005-06-07T09:00:46Z 2 2020-02-15T06:59:37Z +769 2005-05-29T12:51:44Z 1523 575 2005-06-01T17:43:44Z 1 2020-02-15T06:59:37Z +770 2005-05-29T12:56:50Z 2491 405 2005-06-07T15:54:50Z 2 2020-02-15T06:59:37Z +771 2005-05-29T12:59:14Z 353 476 2005-06-01T16:05:14Z 2 2020-02-15T06:59:37Z +772 2005-05-29T13:08:06Z 3319 556 2005-06-06T08:19:06Z 1 2020-02-15T06:59:37Z +773 2005-05-29T13:18:05Z 245 563 2005-06-07T17:22:05Z 1 2020-02-15T06:59:37Z +774 2005-05-29T13:19:43Z 1188 575 2005-06-01T18:51:43Z 1 2020-02-15T06:59:37Z +775 2005-05-29T13:23:26Z 1197 124 2005-05-30T07:53:26Z 2 2020-02-15T06:59:37Z +776 2005-05-29T13:35:35Z 4339 113 2005-06-03T17:33:35Z 1 2020-02-15T06:59:37Z +777 2005-05-29T14:07:58Z 451 360 2005-06-03T08:41:58Z 2 2020-02-15T06:59:37Z +778 2005-05-29T14:09:53Z 1816 535 2005-06-05T20:05:53Z 1 2020-02-15T06:59:37Z +779 2005-05-29T14:17:17Z 533 105 2005-06-06T16:46:17Z 1 2020-02-15T06:59:37Z +780 2005-05-29T14:18:32Z 1919 300 2005-06-06T20:14:32Z 1 2020-02-15T06:59:37Z +781 2005-05-29T14:23:58Z 88 313 2005-05-30T17:44:58Z 1 2020-02-15T06:59:37Z +782 2005-05-29T14:38:57Z 2255 596 2005-06-02T13:18:57Z 2 2020-02-15T06:59:37Z +783 2005-05-29T14:41:18Z 3046 53 2005-06-06T10:39:18Z 2 2020-02-15T06:59:37Z +784 2005-05-29T14:44:22Z 2936 352 2005-06-01T17:28:22Z 2 2020-02-15T06:59:37Z +785 2005-05-29T15:08:41Z 39 72 2005-05-30T15:51:41Z 1 2020-02-15T06:59:37Z +786 2005-05-29T15:17:28Z 2637 439 2005-06-07T10:07:28Z 2 2020-02-15T06:59:37Z +787 2005-05-29T16:03:03Z 3919 27 2005-06-07T11:07:03Z 2 2020-02-15T06:59:37Z +788 2005-05-29T16:13:55Z 763 562 2005-05-31T16:40:55Z 1 2020-02-15T06:59:37Z +789 2005-05-29T16:17:07Z 708 553 2005-06-06T18:15:07Z 1 2020-02-15T06:59:37Z +790 2005-05-29T16:19:29Z 2858 593 2005-06-02T17:22:29Z 2 2020-02-15T06:59:37Z +791 2005-05-29T16:30:42Z 1554 284 2005-06-01T19:11:42Z 1 2020-02-15T06:59:37Z +792 2005-05-29T16:32:10Z 2841 261 2005-05-31T18:01:10Z 1 2020-02-15T06:59:37Z +793 2005-05-29T16:44:08Z 379 528 2005-06-06T19:21:08Z 2 2020-02-15T06:59:37Z +794 2005-05-29T16:44:11Z 1995 50 2005-06-05T16:11:11Z 1 2020-02-15T06:59:37Z +795 2005-05-29T16:57:39Z 609 551 2005-06-01T11:33:39Z 2 2020-02-15T06:59:37Z +796 2005-05-29T16:59:44Z 2697 26 2005-06-03T16:22:44Z 2 2020-02-15T06:59:37Z +797 2005-05-29T17:12:17Z 1446 244 2005-06-03T16:06:17Z 1 2020-02-15T06:59:37Z +798 2005-05-29T17:23:43Z 1102 134 2005-06-01T13:06:43Z 2 2020-02-15T06:59:37Z +799 2005-05-29T17:24:48Z 1713 429 2005-06-05T12:25:48Z 1 2020-02-15T06:59:37Z +800 2005-05-29T17:28:12Z 441 472 2005-05-30T14:59:12Z 1 2020-02-15T06:59:37Z +801 2005-05-29T17:35:50Z 1642 402 2005-06-04T17:05:50Z 2 2020-02-15T06:59:37Z +802 2005-05-29T17:38:59Z 785 350 2005-05-31T22:42:59Z 2 2020-02-15T06:59:37Z +803 2005-05-29T17:52:30Z 1602 32 2005-05-30T14:35:30Z 2 2020-02-15T06:59:37Z +804 2005-05-29T18:10:24Z 3909 171 2005-06-06T22:53:24Z 1 2020-02-15T06:59:37Z +805 2005-05-29T18:18:18Z 3132 232 2005-06-07T15:11:18Z 2 2020-02-15T06:59:37Z +806 2005-05-29T18:31:30Z 2386 435 2005-05-31T00:18:30Z 2 2020-02-15T06:59:37Z +807 2005-05-29T18:50:50Z 2195 235 2005-06-03T18:36:50Z 2 2020-02-15T06:59:37Z +808 2005-05-29T19:08:20Z 1928 104 2005-06-06T20:32:20Z 2 2020-02-15T06:59:37Z +809 2005-05-29T19:10:20Z 2114 222 2005-06-05T19:05:20Z 2 2020-02-15T06:59:37Z +810 2005-05-29T19:12:04Z 2533 346 2005-06-04T21:12:04Z 2 2020-02-15T06:59:37Z +811 2005-05-29T19:30:42Z 4419 401 2005-06-02T16:19:42Z 2 2020-02-15T06:59:37Z +812 2005-05-29T20:00:30Z 1099 225 2005-05-30T19:43:30Z 2 2020-02-15T06:59:37Z +813 2005-05-29T20:14:34Z 4554 344 2005-06-05T20:56:34Z 1 2020-02-15T06:59:37Z +814 2005-05-29T20:16:12Z 1572 134 2005-06-07T17:47:12Z 1 2020-02-15T06:59:37Z +815 2005-05-29T20:24:28Z 3757 14 2005-06-03T15:32:28Z 1 2020-02-15T06:59:37Z +816 2005-05-29T20:26:39Z 630 474 2005-06-06T22:31:39Z 2 2020-02-15T06:59:37Z +817 2005-05-29T20:39:14Z 186 554 2005-05-31T18:24:14Z 1 2020-02-15T06:59:37Z +818 2005-05-29T20:47:53Z 4106 321 2005-06-02T23:18:53Z 2 2020-02-15T06:59:37Z +819 2005-05-29T21:00:32Z 623 511 2005-06-02T15:15:32Z 2 2020-02-15T06:59:37Z +820 2005-05-29T21:07:22Z 2584 22 2005-06-07T00:22:22Z 2 2020-02-15T06:59:37Z +821 2005-05-29T21:31:12Z 3380 348 2005-06-04T22:49:12Z 1 2020-02-15T06:59:37Z +822 2005-05-29T21:36:00Z 2634 480 2005-06-07T17:24:00Z 1 2020-02-15T06:59:37Z +823 2005-05-29T21:39:37Z 3249 441 2005-05-30T22:06:37Z 1 2020-02-15T06:59:37Z +824 2005-05-29T21:45:32Z 3518 357 2005-05-31T19:01:32Z 1 2020-02-15T06:59:37Z +825 2005-05-29T21:49:41Z 712 371 2005-06-04T20:27:41Z 2 2020-02-15T06:59:37Z +826 2005-05-29T21:56:15Z 2263 207 2005-06-08T03:18:15Z 1 2020-02-15T06:59:37Z +827 2005-05-29T21:58:43Z 62 573 2005-06-06T00:54:43Z 1 2020-02-15T06:59:37Z +828 2005-05-29T22:14:55Z 2468 217 2005-05-30T17:22:55Z 1 2020-02-15T06:59:37Z +829 2005-05-29T22:16:42Z 1684 371 2005-06-06T01:38:42Z 1 2020-02-15T06:59:37Z +830 2005-05-29T22:43:55Z 3464 3 2005-06-01T17:43:55Z 1 2020-02-15T06:59:37Z +831 2005-05-29T22:50:25Z 3912 509 2005-06-06T02:27:25Z 1 2020-02-15T06:59:37Z +832 2005-05-29T22:51:20Z 1381 159 2005-06-07T17:37:20Z 2 2020-02-15T06:59:37Z +833 2005-05-29T23:21:56Z 2898 417 2005-06-02T18:40:56Z 1 2020-02-15T06:59:37Z +834 2005-05-29T23:24:30Z 3628 84 2005-05-30T22:00:30Z 2 2020-02-15T06:59:37Z +835 2005-05-29T23:37:00Z 299 381 2005-06-02T23:38:00Z 1 2020-02-15T06:59:37Z +836 2005-05-29T23:56:42Z 3140 368 2005-05-31T04:11:42Z 2 2020-02-15T06:59:37Z +837 2005-05-30T00:02:08Z 977 172 2005-06-02T05:31:08Z 2 2020-02-15T06:59:37Z +838 2005-05-30T00:27:57Z 2859 504 2005-06-06T22:19:57Z 2 2020-02-15T06:59:37Z +839 2005-05-30T00:28:12Z 1886 337 2005-06-08T02:43:12Z 1 2020-02-15T06:59:37Z +840 2005-05-30T00:28:41Z 4049 79 2005-05-31T20:39:41Z 2 2020-02-15T06:59:37Z +841 2005-05-30T00:31:17Z 4318 387 2005-06-02T19:14:17Z 1 2020-02-15T06:59:37Z +842 2005-05-30T00:32:04Z 2328 238 2005-06-01T02:21:04Z 1 2020-02-15T06:59:37Z +843 2005-05-30T00:44:24Z 2214 313 2005-05-31T00:58:24Z 2 2020-02-15T06:59:37Z +844 2005-05-30T00:58:20Z 536 429 2005-06-01T00:38:20Z 1 2020-02-15T06:59:37Z +845 2005-05-30T01:17:25Z 2001 72 2005-06-07T02:00:25Z 1 2020-02-15T06:59:37Z +846 2005-05-30T01:17:45Z 938 49 2005-06-01T00:56:45Z 2 2020-02-15T06:59:37Z +847 2005-05-30T01:18:15Z 4387 380 2005-06-06T20:20:15Z 2 2020-02-15T06:59:37Z +848 2005-05-30T01:19:53Z 1363 436 2005-06-05T23:40:53Z 1 2020-02-15T06:59:37Z +849 2005-05-30T01:23:07Z 2424 449 2005-06-07T01:50:07Z 1 2020-02-15T06:59:37Z +850 2005-05-30T01:35:12Z 2390 517 2005-05-31T01:51:12Z 1 2020-02-15T06:59:37Z +851 2005-05-30T01:35:15Z 2780 530 2005-06-06T07:27:15Z 1 2020-02-15T06:59:37Z +852 2005-05-30T01:36:57Z 1622 549 2005-06-01T22:44:57Z 1 2020-02-15T06:59:37Z +853 2005-05-30T01:43:31Z 3693 122 2005-06-01T02:05:31Z 1 2020-02-15T06:59:37Z +854 2005-05-30T01:56:11Z 921 369 2005-06-01T06:34:11Z 2 2020-02-15T06:59:37Z +855 2005-05-30T02:00:28Z 2527 406 2005-06-03T20:16:28Z 2 2020-02-15T06:59:37Z +856 2005-05-30T02:01:21Z 3969 53 2005-06-07T03:25:21Z 1 2020-02-15T06:59:37Z +857 2005-05-30T02:01:23Z 2569 204 2005-06-02T06:07:23Z 2 2020-02-15T06:59:37Z +858 2005-05-30T02:10:32Z 1258 358 2005-06-01T04:42:32Z 1 2020-02-15T06:59:37Z +859 2005-05-30T02:36:20Z 3032 79 2005-06-02T07:49:20Z 2 2020-02-15T06:59:37Z +860 2005-05-30T02:45:16Z 578 276 2005-06-08T07:28:16Z 1 2020-02-15T06:59:37Z +861 2005-05-30T02:48:32Z 3711 502 2005-06-06T05:43:32Z 1 2020-02-15T06:59:37Z +862 2005-05-30T03:09:11Z 1186 328 2005-06-03T21:27:11Z 1 2020-02-15T06:59:37Z +863 2005-05-30T03:14:59Z 3999 379 2005-06-05T04:34:59Z 2 2020-02-15T06:59:37Z +864 2005-05-30T03:27:17Z 2777 544 2005-06-06T08:28:17Z 1 2020-02-15T06:59:37Z +865 2005-05-30T03:39:44Z 3183 154 2005-06-07T08:10:44Z 2 2020-02-15T06:59:37Z +866 2005-05-30T03:43:54Z 2867 8 2005-06-08T04:28:54Z 1 2020-02-15T06:59:37Z +867 2005-05-30T03:54:43Z 3389 99 2005-06-01T22:59:43Z 1 2020-02-15T06:59:37Z +868 2005-05-30T04:19:55Z 3604 28 2005-05-31T02:28:55Z 1 2020-02-15T06:59:37Z +869 2005-05-30T04:22:06Z 3399 296 2005-06-03T09:18:06Z 2 2020-02-15T06:59:37Z +870 2005-05-30T04:25:47Z 2903 391 2005-06-06T04:32:47Z 1 2020-02-15T06:59:37Z +871 2005-05-30T05:01:30Z 4573 303 2005-06-04T06:22:30Z 2 2020-02-15T06:59:37Z +872 2005-05-30T05:03:04Z 3904 548 2005-06-06T10:35:04Z 1 2020-02-15T06:59:37Z +873 2005-05-30T05:15:20Z 4568 375 2005-06-07T00:49:20Z 2 2020-02-15T06:59:37Z +874 2005-05-30T05:36:21Z 363 52 2005-06-01T09:32:21Z 1 2020-02-15T06:59:37Z +875 2005-05-30T05:38:24Z 1428 326 2005-06-06T00:34:24Z 2 2020-02-15T06:59:37Z +876 2005-05-30T05:41:22Z 1471 339 2005-06-07T09:06:22Z 2 2020-02-15T06:59:37Z +877 2005-05-30T05:48:59Z 886 9 2005-06-02T09:30:59Z 1 2020-02-15T06:59:37Z +878 2005-05-30T05:49:13Z 4265 323 2005-06-07T04:35:13Z 1 2020-02-15T06:59:37Z +879 2005-05-30T05:49:42Z 4021 482 2005-06-05T01:45:42Z 2 2020-02-15T06:59:37Z +880 2005-05-30T06:12:33Z 1819 460 2005-06-02T04:35:33Z 2 2020-02-15T06:59:37Z +881 2005-05-30T06:15:36Z 602 242 2005-06-02T10:21:36Z 1 2020-02-15T06:59:37Z +882 2005-05-30T06:16:06Z 3841 477 2005-06-02T11:57:06Z 1 2020-02-15T06:59:37Z +883 2005-05-30T06:21:05Z 2271 399 2005-06-07T04:50:05Z 2 2020-02-15T06:59:37Z +884 2005-05-30T06:41:32Z 4079 17 2005-05-31T07:39:32Z 1 2020-02-15T06:59:37Z +885 2005-05-30T06:54:28Z 646 62 2005-06-03T07:03:28Z 2 2020-02-15T06:59:37Z +886 2005-05-30T06:54:51Z 4356 393 2005-06-01T06:04:51Z 2 2020-02-15T06:59:37Z +887 2005-05-30T07:10:00Z 2727 16 2005-06-01T06:48:00Z 2 2020-02-15T06:59:37Z +888 2005-05-30T07:13:14Z 387 128 2005-06-06T09:50:14Z 1 2020-02-15T06:59:37Z +889 2005-05-30T07:14:53Z 1299 114 2005-05-31T07:56:53Z 2 2020-02-15T06:59:37Z +890 2005-05-30T07:43:04Z 1464 349 2005-06-01T11:26:04Z 1 2020-02-15T06:59:37Z +891 2005-05-30T07:43:12Z 2611 391 2005-06-08T09:21:12Z 1 2020-02-15T06:59:37Z +892 2005-05-30T08:02:56Z 471 274 2005-06-05T12:51:56Z 1 2020-02-15T06:59:37Z +893 2005-05-30T08:06:59Z 3260 502 2005-06-07T08:23:59Z 2 2020-02-15T06:59:37Z +894 2005-05-30T08:31:31Z 1118 400 2005-06-07T12:39:31Z 1 2020-02-15T06:59:37Z +895 2005-05-30T08:50:43Z 2744 192 2005-06-05T10:58:43Z 1 2020-02-15T06:59:37Z +896 2005-05-30T09:03:52Z 2817 207 2005-06-05T07:37:52Z 2 2020-02-15T06:59:37Z +897 2005-05-30T09:10:01Z 1334 432 2005-06-08T03:43:01Z 1 2020-02-15T06:59:37Z +898 2005-05-30T09:26:19Z 3497 384 2005-06-01T10:45:19Z 2 2020-02-15T06:59:37Z +899 2005-05-30T09:29:30Z 1096 156 2005-06-06T12:39:30Z 2 2020-02-15T06:59:37Z +900 2005-05-30T09:38:41Z 3543 586 2005-06-07T11:54:41Z 1 2020-02-15T06:59:37Z +901 2005-05-30T09:40:40Z 760 259 2005-06-02T10:32:40Z 1 2020-02-15T06:59:37Z +902 2005-05-30T09:53:36Z 1514 561 2005-06-07T12:10:36Z 1 2020-02-15T06:59:37Z +903 2005-05-30T10:11:29Z 2423 197 2005-06-03T09:33:29Z 1 2020-02-15T06:59:37Z +904 2005-05-30T10:19:42Z 2466 44 2005-06-05T04:58:42Z 2 2020-02-15T06:59:37Z +905 2005-05-30T10:25:00Z 4372 50 2005-06-06T06:23:00Z 1 2020-02-15T06:59:37Z +906 2005-05-30T10:30:38Z 1862 549 2005-06-07T06:44:38Z 2 2020-02-15T06:59:37Z +907 2005-05-30T10:37:27Z 3320 506 2005-06-02T09:51:27Z 1 2020-02-15T06:59:37Z +908 2005-05-30T10:38:37Z 4427 85 2005-06-03T09:56:37Z 1 2020-02-15T06:59:37Z +909 2005-05-30T10:43:38Z 3775 486 2005-06-08T12:07:38Z 1 2020-02-15T06:59:37Z +910 2005-05-30T10:46:16Z 2601 374 2005-06-04T13:32:16Z 1 2020-02-15T06:59:37Z +911 2005-05-30T10:50:22Z 1404 366 2005-06-07T12:26:22Z 2 2020-02-15T06:59:37Z +912 2005-05-30T10:58:33Z 3200 390 2005-05-31T09:31:33Z 2 2020-02-15T06:59:37Z +913 2005-05-30T11:04:58Z 3213 369 2005-06-07T13:22:58Z 2 2020-02-15T06:59:37Z +914 2005-05-30T11:06:00Z 1393 596 2005-06-04T06:07:00Z 2 2020-02-15T06:59:37Z +915 2005-05-30T11:20:27Z 1859 115 2005-06-02T11:55:27Z 1 2020-02-15T06:59:37Z +916 2005-05-30T11:25:01Z 1290 6 2005-05-31T09:06:01Z 1 2020-02-15T06:59:37Z +917 2005-05-30T11:27:06Z 3629 385 2005-06-02T08:31:06Z 1 2020-02-15T06:59:37Z +918 2005-05-30T11:32:24Z 818 197 2005-05-31T07:55:24Z 2 2020-02-15T06:59:37Z +919 2005-05-30T11:35:06Z 4052 374 2005-06-02T13:16:06Z 2 2020-02-15T06:59:37Z +920 2005-05-30T11:44:01Z 3860 584 2005-06-02T08:19:01Z 2 2020-02-15T06:59:37Z +921 2005-05-30T11:53:09Z 1827 508 2005-06-03T10:00:09Z 2 2020-02-15T06:59:37Z +922 2005-05-30T11:55:55Z 2442 550 2005-06-08T10:12:55Z 2 2020-02-15T06:59:37Z +923 2005-05-30T11:58:50Z 1884 37 2005-06-05T09:57:50Z 1 2020-02-15T06:59:37Z +924 2005-05-30T12:10:59Z 3279 293 2005-06-04T17:28:59Z 1 2020-02-15T06:59:37Z +925 2005-05-30T12:13:52Z 3203 137 2005-06-02T14:41:52Z 2 2020-02-15T06:59:37Z +926 2005-05-30T12:15:54Z 4327 76 2005-06-01T08:53:54Z 2 2020-02-15T06:59:37Z +927 2005-05-30T12:16:40Z 1158 167 2005-05-31T16:20:40Z 2 2020-02-15T06:59:37Z +928 2005-05-30T12:27:14Z 246 79 2005-06-05T13:56:14Z 2 2020-02-15T06:59:37Z +929 2005-05-30T12:32:39Z 4296 536 2005-06-06T12:17:39Z 1 2020-02-15T06:59:37Z +930 2005-05-30T12:44:57Z 2835 141 2005-06-04T10:53:57Z 2 2020-02-15T06:59:37Z +931 2005-05-30T12:53:01Z 3384 421 2005-05-31T14:28:01Z 1 2020-02-15T06:59:37Z +932 2005-05-30T12:55:36Z 719 198 2005-05-31T10:30:36Z 2 2020-02-15T06:59:37Z +933 2005-05-30T13:08:45Z 3672 66 2005-06-01T18:56:45Z 1 2020-02-15T06:59:37Z +934 2005-05-30T13:24:46Z 3595 60 2005-06-08T16:44:46Z 2 2020-02-15T06:59:37Z +935 2005-05-30T13:29:36Z 2421 256 2005-06-02T11:08:36Z 1 2020-02-15T06:59:37Z +936 2005-05-30T13:52:49Z 901 469 2005-06-07T16:56:49Z 1 2020-02-15T06:59:37Z +937 2005-05-30T14:47:31Z 1054 304 2005-06-05T09:53:31Z 2 2020-02-15T06:59:37Z +938 2005-05-30T14:47:31Z 1521 46 2005-06-04T10:10:31Z 2 2020-02-15T06:59:37Z +939 2005-05-30T14:49:34Z 1314 367 2005-06-01T19:00:34Z 1 2020-02-15T06:59:37Z +940 2005-05-30T15:01:02Z 1278 534 2005-06-01T18:26:02Z 1 2020-02-15T06:59:37Z +941 2005-05-30T15:02:25Z 3630 562 2005-06-01T17:19:25Z 1 2020-02-15T06:59:37Z +942 2005-05-30T15:05:47Z 4279 473 2005-06-08T15:59:47Z 2 2020-02-15T06:59:37Z +943 2005-05-30T15:20:19Z 3737 57 2005-06-06T18:53:19Z 1 2020-02-15T06:59:37Z +944 2005-05-30T15:26:24Z 151 131 2005-06-07T18:09:24Z 2 2020-02-15T06:59:37Z +945 2005-05-30T15:33:17Z 1441 357 2005-06-02T15:02:17Z 2 2020-02-15T06:59:37Z +946 2005-05-30T15:35:08Z 1264 486 2005-06-08T11:38:08Z 1 2020-02-15T06:59:37Z +947 2005-05-30T15:36:57Z 4478 62 2005-06-04T18:48:57Z 1 2020-02-15T06:59:37Z +948 2005-05-30T15:44:27Z 585 245 2005-06-08T17:30:27Z 2 2020-02-15T06:59:37Z +949 2005-05-30T15:50:39Z 2202 368 2005-06-03T14:25:39Z 1 2020-02-15T06:59:37Z +950 2005-05-30T16:06:08Z 491 83 2005-06-01T11:43:08Z 1 2020-02-15T06:59:37Z +951 2005-05-30T16:10:35Z 1395 59 2005-05-31T19:01:35Z 2 2020-02-15T06:59:37Z +952 2005-05-30T16:28:07Z 4389 311 2005-06-02T16:12:07Z 2 2020-02-15T06:59:37Z +953 2005-05-30T16:34:02Z 2194 210 2005-05-31T20:34:02Z 1 2020-02-15T06:59:37Z +954 2005-05-30T16:57:29Z 1231 297 2005-06-08T13:30:29Z 2 2020-02-15T06:59:37Z +955 2005-05-30T16:59:03Z 4140 301 2005-05-31T11:58:03Z 2 2020-02-15T06:59:37Z +956 2005-05-30T17:30:28Z 647 296 2005-06-07T13:54:28Z 2 2020-02-15T06:59:37Z +957 2005-05-30T17:53:29Z 4428 440 2005-06-03T15:31:29Z 2 2020-02-15T06:59:37Z +958 2005-05-30T17:58:03Z 548 186 2005-06-01T19:17:03Z 2 2020-02-15T06:59:37Z +959 2005-05-30T18:07:00Z 3108 535 2005-06-02T14:37:00Z 2 2020-02-15T06:59:37Z +960 2005-05-30T18:13:23Z 1966 445 2005-06-04T00:12:23Z 2 2020-02-15T06:59:37Z +961 2005-05-30T18:16:44Z 3293 588 2005-06-04T23:40:44Z 2 2020-02-15T06:59:37Z +962 2005-05-30T18:45:17Z 4535 520 2005-06-05T22:47:17Z 1 2020-02-15T06:59:37Z +963 2005-05-30T18:52:53Z 1921 225 2005-06-07T16:19:53Z 2 2020-02-15T06:59:37Z +964 2005-05-30T18:53:21Z 657 287 2005-06-04T22:32:21Z 2 2020-02-15T06:59:37Z +965 2005-05-30T19:00:14Z 3363 502 2005-05-31T17:10:14Z 2 2020-02-15T06:59:37Z +966 2005-05-30T19:00:37Z 1294 496 2005-05-31T23:51:37Z 1 2020-02-15T06:59:37Z +967 2005-05-30T19:12:06Z 1954 330 2005-06-09T00:02:06Z 2 2020-02-15T06:59:37Z +968 2005-05-30T19:20:03Z 119 576 2005-05-31T18:17:03Z 2 2020-02-15T06:59:37Z +969 2005-05-30T19:23:48Z 443 551 2005-05-31T21:14:48Z 1 2020-02-15T06:59:37Z +970 2005-05-30T19:50:28Z 1520 307 2005-06-09T01:19:28Z 1 2020-02-15T06:59:37Z +971 2005-05-30T20:10:52Z 2911 561 2005-06-06T20:47:52Z 1 2020-02-15T06:59:37Z +972 2005-05-30T20:21:07Z 2 411 2005-06-06T00:36:07Z 1 2020-02-15T06:59:37Z +973 2005-05-30T20:27:45Z 1914 473 2005-06-08T22:47:45Z 2 2020-02-15T06:59:37Z +974 2005-05-30T20:28:42Z 2617 596 2005-06-08T23:45:42Z 2 2020-02-15T06:59:37Z +975 2005-05-30T21:07:15Z 3109 7 2005-06-03T01:48:15Z 2 2020-02-15T06:59:37Z +976 2005-05-30T21:11:19Z 2290 581 2005-06-06T02:16:19Z 2 2020-02-15T06:59:37Z +977 2005-05-30T21:22:26Z 2029 394 2005-06-04T22:32:26Z 2 2020-02-15T06:59:37Z +978 2005-05-30T21:30:52Z 407 154 2005-06-07T16:22:52Z 1 2020-02-15T06:59:37Z +979 2005-05-30T21:37:11Z 3917 279 2005-06-08T00:24:11Z 2 2020-02-15T06:59:37Z +980 2005-05-30T21:45:19Z 4169 273 2005-06-01T20:32:19Z 1 2020-02-15T06:59:37Z +981 2005-05-30T21:52:42Z 2913 326 2005-06-01T03:15:42Z 2 2020-02-15T06:59:37Z +982 2005-05-30T22:15:24Z 3560 524 2005-06-02T16:18:24Z 1 2020-02-15T06:59:37Z +983 2005-05-30T22:15:51Z 63 115 2005-06-02T22:56:51Z 1 2020-02-15T06:59:37Z +984 2005-05-30T22:17:17Z 2305 262 2005-06-01T20:15:17Z 2 2020-02-15T06:59:37Z +985 2005-05-30T22:18:35Z 1573 564 2005-06-04T23:36:35Z 1 2020-02-15T06:59:37Z +986 2005-05-30T22:22:52Z 4045 253 2005-06-01T02:24:52Z 1 2020-02-15T06:59:37Z +987 2005-05-30T22:59:12Z 390 11 2005-06-07T20:56:12Z 1 2020-02-15T06:59:37Z +988 2005-05-30T23:08:03Z 1364 12 2005-06-07T00:22:03Z 1 2020-02-15T06:59:37Z +989 2005-05-30T23:11:51Z 4388 83 2005-06-03T20:36:51Z 2 2020-02-15T06:59:37Z +990 2005-05-30T23:25:14Z 4171 311 2005-06-06T18:41:14Z 2 2020-02-15T06:59:37Z +991 2005-05-30T23:29:22Z 2863 593 2005-06-07T23:16:22Z 1 2020-02-15T06:59:37Z +992 2005-05-30T23:47:56Z 3572 123 2005-06-05T19:01:56Z 1 2020-02-15T06:59:37Z +993 2005-05-30T23:54:19Z 2080 513 2005-06-04T21:27:19Z 1 2020-02-15T06:59:37Z +994 2005-05-30T23:55:36Z 2798 472 2005-06-04T01:00:36Z 2 2020-02-15T06:59:37Z +995 2005-05-31T00:06:02Z 17 150 2005-06-06T02:30:02Z 2 2020-02-15T06:59:37Z +996 2005-05-31T00:06:20Z 2075 331 2005-05-31T21:29:20Z 2 2020-02-15T06:59:37Z +997 2005-05-31T00:08:25Z 4243 216 2005-06-02T00:17:25Z 2 2020-02-15T06:59:37Z +998 2005-05-31T00:16:57Z 3395 389 2005-06-01T22:41:57Z 1 2020-02-15T06:59:37Z +999 2005-05-31T00:25:10Z 4433 413 2005-06-03T06:05:10Z 2 2020-02-15T06:59:37Z +1000 2005-05-31T00:25:56Z 1774 332 2005-06-08T19:42:56Z 2 2020-02-15T06:59:37Z +1001 2005-05-31T00:46:31Z 1498 64 2005-06-06T06:14:31Z 2 2020-02-15T06:59:37Z +1002 2005-05-31T00:47:56Z 709 397 2005-06-06T19:51:56Z 1 2020-02-15T06:59:37Z +1003 2005-05-31T00:48:20Z 133 161 2005-06-02T04:53:20Z 2 2020-02-15T06:59:37Z +1004 2005-05-31T00:48:36Z 1588 565 2005-06-01T20:56:36Z 1 2020-02-15T06:59:37Z +1005 2005-05-31T00:53:25Z 4006 551 2005-06-04T01:21:25Z 2 2020-02-15T06:59:37Z +1006 2005-05-31T00:57:08Z 3461 222 2005-06-02T22:35:08Z 1 2020-02-15T06:59:37Z +1007 2005-05-31T01:02:28Z 3185 24 2005-06-07T01:36:28Z 2 2020-02-15T06:59:37Z +1008 2005-05-31T01:18:56Z 914 599 2005-06-01T01:24:56Z 2 2020-02-15T06:59:37Z +1009 2005-05-31T01:47:35Z 2523 485 2005-06-03T20:26:35Z 1 2020-02-15T06:59:37Z +1010 2005-05-31T01:57:32Z 4038 49 2005-06-01T06:50:32Z 2 2020-02-15T06:59:37Z +1011 2005-05-31T02:05:39Z 118 164 2005-06-04T21:27:39Z 2 2020-02-15T06:59:37Z +1012 2005-05-31T02:18:05Z 688 291 2005-06-03T06:47:05Z 1 2020-02-15T06:59:37Z +1013 2005-05-31T02:37:00Z 4522 384 2005-06-02T06:39:00Z 2 2020-02-15T06:59:37Z +1014 2005-05-31T02:39:16Z 766 280 2005-06-01T06:03:16Z 2 2020-02-15T06:59:37Z +1015 2005-05-31T02:44:57Z 3702 526 2005-06-07T23:01:57Z 2 2020-02-15T06:59:37Z +1016 2005-05-31T02:49:43Z 3423 204 2005-06-04T03:48:43Z 1 2020-02-15T06:59:37Z +1017 2005-05-31T02:53:36Z 1242 16 2005-06-03T05:04:36Z 1 2020-02-15T06:59:37Z +1018 2005-05-31T02:53:42Z 1930 594 2005-06-03T00:47:42Z 2 2020-02-15T06:59:37Z +1019 2005-05-31T03:05:07Z 3975 279 2005-06-03T08:34:07Z 1 2020-02-15T06:59:37Z +1020 2005-05-31T03:06:08Z 3402 138 2005-06-02T08:57:08Z 2 2020-02-15T06:59:37Z +1021 2005-05-31T03:16:15Z 2724 541 2005-06-08T06:43:15Z 2 2020-02-15T06:59:37Z +1022 2005-05-31T03:16:45Z 842 239 2005-06-08T09:04:45Z 1 2020-02-15T06:59:37Z +1023 2005-05-31T03:26:50Z 2483 227 2005-06-05T08:19:50Z 2 2020-02-15T06:59:37Z +1024 2005-05-31T03:30:19Z 2310 457 2005-06-09T05:52:19Z 2 2020-02-15T06:59:37Z +1025 2005-05-31T03:41:37Z 1618 93 2005-06-08T07:05:37Z 2 2020-02-15T06:59:37Z +1026 2005-05-31T03:45:26Z 632 107 2005-06-06T22:30:26Z 2 2020-02-15T06:59:37Z +1027 2005-05-31T03:46:19Z 2718 55 2005-06-09T03:50:19Z 1 2020-02-15T06:59:37Z +1028 2005-05-31T03:48:05Z 4479 51 2005-06-01T03:51:05Z 1 2020-02-15T06:59:37Z +1029 2005-05-31T03:52:02Z 2082 50 2005-06-06T08:10:02Z 1 2020-02-15T06:59:37Z +1030 2005-05-31T04:06:47Z 3948 267 2005-06-02T02:59:47Z 1 2020-02-15T06:59:37Z +1031 2005-05-31T04:23:01Z 917 416 2005-06-06T08:35:01Z 1 2020-02-15T06:59:37Z +1032 2005-05-31T04:28:43Z 2937 236 2005-06-02T02:00:43Z 2 2020-02-15T06:59:37Z +1033 2005-05-31T04:50:07Z 14 25 2005-06-02T01:53:07Z 1 2020-02-15T06:59:37Z +1034 2005-05-31T04:53:40Z 4117 293 2005-06-09T08:25:40Z 2 2020-02-15T06:59:37Z +1035 2005-05-31T05:01:09Z 949 362 2005-06-02T03:59:09Z 1 2020-02-15T06:59:37Z +1036 2005-05-31T05:21:10Z 2164 438 2005-06-04T04:19:10Z 1 2020-02-15T06:59:37Z +1037 2005-05-31T05:22:25Z 810 569 2005-06-09T04:52:25Z 1 2020-02-15T06:59:37Z +1038 2005-05-31T05:23:47Z 1253 385 2005-06-02T03:57:47Z 2 2020-02-15T06:59:37Z +1039 2005-05-31T05:32:29Z 2479 124 2005-06-01T06:04:29Z 2 2020-02-15T06:59:37Z +1040 2005-05-31T05:35:16Z 2546 270 2005-06-09T04:14:16Z 1 2020-02-15T06:59:37Z +1041 2005-05-31T05:46:23Z 4432 272 2005-06-06T09:50:23Z 2 2020-02-15T06:59:37Z +1042 2005-05-31T05:53:00Z 3155 506 2005-06-01T05:24:00Z 1 2020-02-15T06:59:37Z +1043 2005-05-31T06:11:40Z 2322 412 2005-06-08T09:15:40Z 2 2020-02-15T06:59:37Z +1044 2005-05-31T06:24:44Z 2574 70 2005-06-03T04:51:44Z 1 2020-02-15T06:59:37Z +1045 2005-05-31T06:29:01Z 3470 594 2005-06-09T04:31:01Z 1 2020-02-15T06:59:37Z +1046 2005-05-31T06:42:30Z 468 179 2005-06-03T04:33:30Z 2 2020-02-15T06:59:37Z +1047 2005-05-31T06:45:57Z 1366 72 2005-06-04T09:49:57Z 2 2020-02-15T06:59:37Z +1048 2005-05-31T06:49:53Z 2811 55 2005-06-02T11:33:53Z 1 2020-02-15T06:59:37Z +1049 2005-05-31T06:57:04Z 3913 312 2005-06-02T11:32:04Z 2 2020-02-15T06:59:37Z +1050 2005-05-31T07:01:27Z 726 303 2005-06-03T07:50:27Z 2 2020-02-15T06:59:37Z +1051 2005-05-31T07:02:09Z 1025 246 2005-06-03T01:32:09Z 1 2020-02-15T06:59:37Z +1052 2005-05-31T07:07:03Z 2157 156 2005-06-05T09:38:03Z 1 2020-02-15T06:59:37Z +1053 2005-05-31T07:12:44Z 3734 196 2005-06-04T12:33:44Z 1 2020-02-15T06:59:37Z +1054 2005-05-31T07:33:25Z 1575 126 2005-06-02T01:40:25Z 2 2020-02-15T06:59:37Z +1055 2005-05-31T07:47:18Z 1639 108 2005-06-03T01:57:18Z 1 2020-02-15T06:59:37Z +1056 2005-05-31T07:48:07Z 1591 519 2005-06-05T08:51:07Z 2 2020-02-15T06:59:37Z +1057 2005-05-31T07:58:06Z 497 124 2005-06-06T03:21:06Z 1 2020-02-15T06:59:37Z +1058 2005-05-31T08:04:17Z 40 116 2005-06-03T11:12:17Z 2 2020-02-15T06:59:37Z +1059 2005-05-31T08:20:43Z 3041 241 2005-06-04T09:05:43Z 2 2020-02-15T06:59:37Z +1060 2005-05-31T08:21:43Z 2676 570 2005-06-09T04:02:43Z 2 2020-02-15T06:59:37Z +1061 2005-05-31T08:27:58Z 965 109 2005-06-07T02:34:58Z 1 2020-02-15T06:59:37Z +1062 2005-05-31T08:38:20Z 2223 176 2005-06-09T08:23:20Z 2 2020-02-15T06:59:37Z +1063 2005-05-31T08:44:29Z 2484 7 2005-06-09T08:00:29Z 1 2020-02-15T06:59:37Z +1064 2005-05-31T08:50:07Z 2373 460 2005-06-02T14:47:07Z 2 2020-02-15T06:59:37Z +1065 2005-05-31T08:54:56Z 3379 316 2005-06-08T09:21:56Z 1 2020-02-15T06:59:37Z +1066 2005-05-31T09:07:33Z 2383 541 2005-06-09T05:34:33Z 2 2020-02-15T06:59:37Z +1067 2005-05-31T09:12:13Z 2345 32 2005-06-01T06:15:13Z 1 2020-02-15T06:59:37Z +1068 2005-05-31T09:32:15Z 150 443 2005-06-01T11:20:15Z 1 2020-02-15T06:59:37Z +1069 2005-05-31T09:32:31Z 3057 251 2005-06-08T10:19:31Z 2 2020-02-15T06:59:37Z +1070 2005-05-31T09:39:56Z 3170 228 2005-06-05T10:23:56Z 1 2020-02-15T06:59:37Z +1071 2005-05-31T09:48:56Z 469 174 2005-06-02T03:52:56Z 2 2020-02-15T06:59:37Z +1072 2005-05-31T09:52:50Z 2557 272 2005-06-05T05:39:50Z 1 2020-02-15T06:59:37Z +1073 2005-05-31T09:55:04Z 522 146 2005-06-07T03:55:04Z 1 2020-02-15T06:59:37Z +1074 2005-05-31T10:04:42Z 2508 503 2005-06-02T15:27:42Z 2 2020-02-15T06:59:37Z +1075 2005-05-31T10:13:34Z 2279 9 2005-06-09T08:11:34Z 1 2020-02-15T06:59:37Z +1076 2005-05-31T10:14:31Z 2551 214 2005-06-05T10:13:31Z 2 2020-02-15T06:59:37Z +1077 2005-05-31T10:22:54Z 1986 24 2005-06-02T12:21:54Z 1 2020-02-15T06:59:37Z +1078 2005-05-31T10:28:33Z 3682 230 2005-06-03T14:45:33Z 2 2020-02-15T06:59:37Z +1079 2005-05-31T10:48:17Z 268 312 2005-06-08T12:30:17Z 1 2020-02-15T06:59:37Z +1080 2005-05-31T10:55:26Z 3491 215 2005-06-03T13:13:26Z 2 2020-02-15T06:59:37Z +1081 2005-05-31T10:56:32Z 4524 404 2005-06-06T11:31:32Z 1 2020-02-15T06:59:37Z +1082 2005-05-31T11:02:01Z 4510 239 2005-06-05T08:43:01Z 1 2020-02-15T06:59:37Z +1083 2005-05-31T11:04:48Z 2393 556 2005-06-05T13:32:48Z 1 2020-02-15T06:59:37Z +1084 2005-05-31T11:10:17Z 4577 12 2005-06-01T11:15:17Z 1 2020-02-15T06:59:37Z +1085 2005-05-31T11:15:43Z 301 5 2005-06-07T12:02:43Z 1 2020-02-15T06:59:37Z +1086 2005-05-31T11:17:37Z 2909 549 2005-06-06T13:58:37Z 2 2020-02-15T06:59:37Z +1087 2005-05-31T11:18:08Z 431 169 2005-06-04T08:33:08Z 1 2020-02-15T06:59:37Z +1088 2005-05-31T11:35:13Z 3988 356 2005-06-06T16:01:13Z 2 2020-02-15T06:59:37Z +1089 2005-05-31T11:38:29Z 3784 367 2005-06-02T08:06:29Z 1 2020-02-15T06:59:37Z +1090 2005-05-31T12:03:44Z 3329 23 2005-06-02T15:54:44Z 2 2020-02-15T06:59:37Z +1091 2005-05-31T12:11:04Z 3853 251 2005-06-04T11:42:04Z 1 2020-02-15T06:59:37Z +1092 2005-05-31T12:15:57Z 4412 278 2005-06-03T15:39:57Z 2 2020-02-15T06:59:37Z +1093 2005-05-31T12:32:26Z 2189 214 2005-06-03T07:51:26Z 2 2020-02-15T06:59:37Z +1094 2005-05-31T13:03:49Z 3810 547 2005-06-05T14:30:49Z 2 2020-02-15T06:59:37Z +1095 2005-05-31T13:15:41Z 4546 252 2005-06-05T12:10:41Z 1 2020-02-15T06:59:37Z +1096 2005-05-31T13:30:49Z 1066 271 2005-06-09T13:53:49Z 1 2020-02-15T06:59:37Z +1097 2005-05-31T13:38:42Z 2285 491 2005-06-01T13:54:42Z 2 2020-02-15T06:59:37Z +1098 2005-05-31T13:51:48Z 1050 425 2005-06-09T18:42:48Z 2 2020-02-15T06:59:37Z +1099 2005-05-31T13:54:48Z 924 269 2005-06-05T13:04:48Z 2 2020-02-15T06:59:37Z +1100 2005-05-31T14:03:21Z 316 497 2005-06-06T16:08:21Z 1 2020-02-15T06:59:37Z +1101 2005-05-31T14:13:59Z 1174 260 2005-06-07T15:49:59Z 1 2020-02-15T06:59:37Z +1102 2005-05-31T14:20:29Z 2052 115 2005-06-04T17:38:29Z 2 2020-02-15T06:59:37Z +1103 2005-05-31T14:24:18Z 3154 353 2005-06-09T10:27:18Z 1 2020-02-15T06:59:37Z +1104 2005-05-31T14:30:01Z 1619 466 2005-06-05T12:07:01Z 1 2020-02-15T06:59:37Z +1105 2005-05-31T14:33:56Z 1708 26 2005-06-07T11:30:56Z 1 2020-02-15T06:59:37Z +1106 2005-05-31T14:36:52Z 4185 109 2005-06-01T14:33:52Z 2 2020-02-15T06:59:37Z +1107 2005-05-31T15:04:05Z 3449 53 2005-06-07T16:42:05Z 2 2020-02-15T06:59:37Z +1108 2005-05-31T15:05:12Z 2562 254 2005-06-09T19:48:12Z 2 2020-02-15T06:59:37Z +1109 2005-05-31T15:12:15Z 2031 481 2005-06-09T16:21:15Z 1 2020-02-15T06:59:37Z +1110 2005-05-31T15:22:51Z 2085 355 2005-06-07T14:32:51Z 1 2020-02-15T06:59:37Z +1111 2005-05-31T15:24:19Z 1137 300 2005-06-08T21:18:19Z 1 2020-02-15T06:59:37Z +1112 2005-05-31T15:51:39Z 2453 214 2005-06-03T14:04:39Z 1 2020-02-15T06:59:37Z +1113 2005-05-31T15:58:44Z 2078 451 2005-06-05T18:05:44Z 2 2020-02-15T06:59:37Z +1114 2005-05-31T16:00:33Z 2287 117 2005-06-01T19:05:33Z 1 2020-02-15T06:59:37Z +1115 2005-05-31T16:07:09Z 2140 109 2005-06-04T18:51:09Z 1 2020-02-15T06:59:37Z +1116 2005-05-31T16:10:46Z 1356 256 2005-06-01T20:27:46Z 2 2020-02-15T06:59:37Z +1117 2005-05-31T16:15:31Z 4125 189 2005-06-04T17:20:31Z 1 2020-02-15T06:59:37Z +1118 2005-05-31T16:23:02Z 213 510 2005-06-03T20:00:02Z 1 2020-02-15T06:59:37Z +1119 2005-05-31T16:34:27Z 4401 469 2005-06-02T10:54:27Z 1 2020-02-15T06:59:37Z +1120 2005-05-31T16:37:14Z 2897 361 2005-06-04T12:53:14Z 1 2020-02-15T06:59:37Z +1121 2005-05-31T16:37:36Z 1691 74 2005-06-06T21:02:36Z 1 2020-02-15T06:59:37Z +1122 2005-05-31T16:39:33Z 1392 180 2005-06-04T17:25:33Z 1 2020-02-15T06:59:37Z +1123 2005-05-31T16:48:43Z 142 448 2005-06-02T19:17:43Z 2 2020-02-15T06:59:37Z +1124 2005-05-31T16:49:34Z 4560 134 2005-06-04T19:32:34Z 2 2020-02-15T06:59:37Z +1125 2005-05-31T17:23:44Z 1172 234 2005-06-01T15:02:44Z 1 2020-02-15T06:59:37Z +1126 2005-05-31T17:27:45Z 2765 431 2005-06-04T20:06:45Z 2 2020-02-15T06:59:37Z +1127 2005-05-31T17:45:49Z 2412 387 2005-06-08T22:41:49Z 2 2020-02-15T06:59:37Z +1128 2005-05-31T17:49:26Z 1496 311 2005-06-05T19:51:26Z 2 2020-02-15T06:59:37Z +1129 2005-05-31T18:00:48Z 386 486 2005-06-04T23:05:48Z 1 2020-02-15T06:59:37Z +1130 2005-05-31T18:13:57Z 3186 124 2005-06-06T22:50:57Z 2 2020-02-15T06:59:37Z +1131 2005-05-31T18:44:19Z 2654 128 2005-06-01T20:13:19Z 1 2020-02-15T06:59:37Z +1132 2005-05-31T18:44:53Z 1763 198 2005-06-07T22:02:53Z 2 2020-02-15T06:59:37Z +1133 2005-05-31T19:12:21Z 4271 73 2005-06-02T20:12:21Z 1 2020-02-15T06:59:37Z +1134 2005-05-31T19:14:15Z 143 191 2005-06-02T17:13:15Z 2 2020-02-15T06:59:37Z +1135 2005-05-31T19:15:11Z 3118 122 2005-06-01T14:44:11Z 2 2020-02-15T06:59:37Z +1136 2005-05-31T19:19:36Z 3963 50 2005-06-09T16:04:36Z 2 2020-02-15T06:59:37Z +1137 2005-05-31T19:20:14Z 3259 351 2005-06-07T16:10:14Z 1 2020-02-15T06:59:37Z +1138 2005-05-31T19:30:27Z 3944 438 2005-06-05T21:42:27Z 1 2020-02-15T06:59:37Z +1139 2005-05-31T19:34:52Z 666 562 2005-06-06T17:40:52Z 1 2020-02-15T06:59:37Z +1140 2005-05-31T19:36:30Z 3731 10 2005-06-07T18:33:30Z 2 2020-02-15T06:59:37Z +1141 2005-05-31T19:42:02Z 4128 217 2005-06-07T00:59:02Z 2 2020-02-15T06:59:37Z +1142 2005-05-31T19:46:38Z 3998 5 2005-06-05T14:03:38Z 1 2020-02-15T06:59:37Z +1143 2005-05-31T19:53:03Z 2632 209 2005-06-06T20:56:03Z 2 2020-02-15T06:59:37Z +1144 2005-05-31T20:04:10Z 2450 207 2005-06-09T16:34:10Z 1 2020-02-15T06:59:37Z +1145 2005-05-31T20:13:45Z 1133 284 2005-06-08T02:10:45Z 1 2020-02-15T06:59:37Z +1146 2005-05-31T20:34:45Z 3134 250 2005-06-03T18:12:45Z 2 2020-02-15T06:59:37Z +1147 2005-05-31T20:37:52Z 622 259 2005-06-06T19:23:52Z 2 2020-02-15T06:59:37Z +1148 2005-05-31T20:38:40Z 3307 235 2005-06-02T18:35:40Z 2 2020-02-15T06:59:37Z +1149 2005-05-31T21:03:17Z 352 326 2005-06-08T19:58:17Z 2 2020-02-15T06:59:37Z +1150 2005-05-31T21:20:09Z 1632 136 2005-06-03T19:15:09Z 2 2020-02-15T06:59:37Z +1151 2005-05-31T21:29:00Z 1281 581 2005-06-03T23:24:00Z 1 2020-02-15T06:59:37Z +1152 2005-05-31T21:32:17Z 210 191 2005-06-04T21:07:17Z 2 2020-02-15T06:59:37Z +1153 2005-05-31T21:36:44Z 2725 506 2005-06-10T01:26:44Z 2 2020-02-15T06:59:37Z +1154 2005-05-31T21:42:09Z 2732 59 2005-06-08T16:40:09Z 1 2020-02-15T06:59:37Z +1155 2005-05-31T22:17:11Z 2048 251 2005-06-04T20:27:11Z 2 2020-02-15T06:59:37Z +1156 2005-05-31T22:37:34Z 460 106 2005-06-01T23:02:34Z 2 2020-02-15T06:59:37Z +1157 2005-05-31T22:47:45Z 1449 61 2005-06-02T18:01:45Z 1 2020-02-15T06:59:37Z +1158 2005-06-14T22:53:33Z 1632 416 2005-06-18T21:37:33Z 2 2020-02-15T06:59:37Z +1159 2005-06-14T22:55:13Z 4395 516 2005-06-17T02:11:13Z 1 2020-02-15T06:59:37Z +1160 2005-06-14T23:00:34Z 2795 239 2005-06-18T01:58:34Z 2 2020-02-15T06:59:37Z +1161 2005-06-14T23:07:08Z 1690 285 2005-06-21T17:12:08Z 1 2020-02-15T06:59:37Z +1162 2005-06-14T23:09:38Z 987 310 2005-06-23T22:00:38Z 1 2020-02-15T06:59:37Z +1163 2005-06-14T23:12:46Z 4209 592 2005-06-23T21:53:46Z 1 2020-02-15T06:59:37Z +1164 2005-06-14T23:16:26Z 3691 49 2005-06-16T21:00:26Z 1 2020-02-15T06:59:37Z +1165 2005-06-14T23:16:27Z 2855 264 2005-06-20T02:40:27Z 2 2020-02-15T06:59:37Z +1166 2005-06-14T23:17:03Z 2508 46 2005-06-15T20:43:03Z 1 2020-02-15T06:59:37Z +1167 2005-06-14T23:25:58Z 4021 323 2005-06-18T05:18:58Z 2 2020-02-15T06:59:37Z +1168 2005-06-14T23:35:09Z 4368 481 2005-06-19T03:20:09Z 1 2020-02-15T06:59:37Z +1169 2005-06-14T23:42:56Z 1062 139 2005-06-16T04:02:56Z 2 2020-02-15T06:59:37Z +1170 2005-06-14T23:47:35Z 2444 595 2005-06-17T05:28:35Z 2 2020-02-15T06:59:37Z +1171 2005-06-14T23:50:11Z 4082 284 2005-06-17T21:44:11Z 2 2020-02-15T06:59:37Z +1172 2005-06-14T23:54:34Z 2685 306 2005-06-16T02:26:34Z 1 2020-02-15T06:59:37Z +1173 2005-06-14T23:54:46Z 1050 191 2005-06-19T23:26:46Z 2 2020-02-15T06:59:37Z +1174 2005-06-15T00:12:51Z 2653 95 2005-06-21T02:10:51Z 2 2020-02-15T06:59:37Z +1175 2005-06-15T00:15:15Z 3255 197 2005-06-20T19:23:15Z 2 2020-02-15T06:59:37Z +1176 2005-06-15T00:28:37Z 2715 512 2005-06-21T21:42:37Z 1 2020-02-15T06:59:37Z +1177 2005-06-15T00:33:04Z 1897 210 2005-06-16T03:47:04Z 2 2020-02-15T06:59:37Z +1178 2005-06-15T00:36:40Z 2553 279 2005-06-21T00:27:40Z 2 2020-02-15T06:59:37Z +1179 2005-06-15T00:36:50Z 816 119 2005-06-22T22:09:50Z 1 2020-02-15T06:59:37Z +1180 2005-06-15T00:39:01Z 3119 432 2005-06-21T22:44:01Z 2 2020-02-15T06:59:37Z +1181 2005-06-15T00:42:17Z 2973 546 2005-06-19T03:36:17Z 2 2020-02-15T06:59:37Z +1182 2005-06-15T00:45:21Z 1061 196 2005-06-22T03:52:21Z 1 2020-02-15T06:59:37Z +1183 2005-06-15T00:49:19Z 706 329 2005-06-20T04:33:19Z 1 2020-02-15T06:59:37Z +1184 2005-06-15T00:49:36Z 473 295 2005-06-22T23:39:36Z 2 2020-02-15T06:59:37Z +1185 2005-06-15T00:54:12Z 2785 1 2005-06-23T02:42:12Z 2 2020-02-15T06:59:37Z +1186 2005-06-15T00:56:45Z 1556 368 2005-06-16T02:23:45Z 1 2020-02-15T06:59:37Z +1187 2005-06-15T00:58:50Z 1108 334 2005-06-23T02:19:50Z 1 2020-02-15T06:59:37Z +1188 2005-06-15T01:04:07Z 246 173 2005-06-19T03:48:07Z 1 2020-02-15T06:59:37Z +1189 2005-06-15T01:04:22Z 142 244 2005-06-24T06:48:22Z 1 2020-02-15T06:59:37Z +1190 2005-06-15T01:05:32Z 2572 370 2005-06-23T02:34:32Z 2 2020-02-15T06:59:37Z +1191 2005-06-15T01:10:35Z 2221 291 2005-06-17T20:36:35Z 2 2020-02-15T06:59:37Z +1192 2005-06-15T01:18:39Z 4134 186 2005-06-19T22:46:39Z 1 2020-02-15T06:59:37Z +1193 2005-06-15T01:24:20Z 4504 561 2005-06-21T02:29:20Z 2 2020-02-15T06:59:37Z +1194 2005-06-15T01:25:08Z 3774 402 2005-06-21T01:16:08Z 2 2020-02-15T06:59:37Z +1195 2005-06-15T01:37:38Z 2272 84 2005-06-17T21:50:38Z 1 2020-02-15T06:59:37Z +1196 2005-06-15T01:38:31Z 994 52 2005-06-18T06:55:31Z 1 2020-02-15T06:59:37Z +1197 2005-06-15T01:42:46Z 3812 349 2005-06-20T00:22:46Z 1 2020-02-15T06:59:37Z +1198 2005-06-15T01:48:58Z 1138 491 2005-06-20T01:07:58Z 2 2020-02-15T06:59:37Z +1199 2005-06-15T01:58:50Z 253 238 2005-06-16T20:30:50Z 2 2020-02-15T06:59:37Z +1200 2005-06-15T01:59:51Z 3329 516 2005-06-21T21:33:51Z 1 2020-02-15T06:59:37Z +1201 2005-06-15T02:06:28Z 2679 209 2005-06-16T21:38:28Z 2 2020-02-15T06:59:37Z +1202 2005-06-15T02:08:04Z 2821 451 2005-06-16T21:56:04Z 1 2020-02-15T06:59:37Z +1203 2005-06-15T02:09:02Z 2223 452 2005-06-21T00:04:02Z 1 2020-02-15T06:59:37Z +1204 2005-06-15T02:21:46Z 2450 249 2005-06-20T07:14:46Z 2 2020-02-15T06:59:37Z +1205 2005-06-15T02:25:56Z 470 340 2005-06-22T23:19:56Z 1 2020-02-15T06:59:37Z +1206 2005-06-15T02:27:07Z 1097 264 2005-06-18T22:46:07Z 2 2020-02-15T06:59:37Z +1207 2005-06-15T02:27:08Z 2277 430 2005-06-19T08:18:08Z 2 2020-02-15T06:59:37Z +1208 2005-06-15T02:30:03Z 750 376 2005-06-18T00:04:03Z 1 2020-02-15T06:59:37Z +1209 2005-06-15T02:31:12Z 1494 146 2005-06-21T07:39:12Z 1 2020-02-15T06:59:37Z +1210 2005-06-15T02:57:51Z 7 345 2005-06-20T01:41:51Z 2 2020-02-15T06:59:37Z +1211 2005-06-15T03:01:20Z 3360 122 2005-06-18T07:52:20Z 2 2020-02-15T06:59:37Z +1212 2005-06-15T03:03:33Z 3611 371 2005-06-17T06:31:33Z 1 2020-02-15T06:59:37Z +1213 2005-06-15T03:14:05Z 3191 94 2005-06-15T21:41:05Z 2 2020-02-15T06:59:37Z +1214 2005-06-15T03:18:40Z 4482 46 2005-06-20T07:32:40Z 1 2020-02-15T06:59:37Z +1215 2005-06-15T03:21:00Z 242 102 2005-06-19T03:39:00Z 1 2020-02-15T06:59:37Z +1216 2005-06-15T03:23:48Z 3973 100 2005-06-18T03:35:48Z 1 2020-02-15T06:59:37Z +1217 2005-06-15T03:24:14Z 600 203 2005-06-18T22:37:14Z 2 2020-02-15T06:59:37Z +1218 2005-06-15T03:24:44Z 239 371 2005-06-21T22:45:44Z 2 2020-02-15T06:59:37Z +1219 2005-06-15T03:25:59Z 3005 330 2005-06-20T00:37:59Z 1 2020-02-15T06:59:37Z +1220 2005-06-15T03:26:15Z 1621 290 2005-06-23T08:17:15Z 1 2020-02-15T06:59:37Z +1221 2005-06-15T03:35:16Z 2124 403 2005-06-18T03:11:16Z 1 2020-02-15T06:59:37Z +1222 2005-06-15T03:38:49Z 2799 168 2005-06-17T22:30:49Z 1 2020-02-15T06:59:37Z +1223 2005-06-15T03:38:53Z 1299 50 2005-06-20T01:00:53Z 2 2020-02-15T06:59:37Z +1224 2005-06-15T03:44:25Z 1572 369 2005-06-17T03:49:25Z 2 2020-02-15T06:59:37Z +1225 2005-06-15T03:45:35Z 1929 434 2005-06-19T02:03:35Z 1 2020-02-15T06:59:37Z +1226 2005-06-15T03:46:10Z 2290 409 2005-06-23T02:00:10Z 1 2020-02-15T06:59:37Z +1227 2005-06-15T03:50:03Z 654 428 2005-06-21T23:48:03Z 2 2020-02-15T06:59:37Z +1228 2005-06-15T03:50:36Z 4473 398 2005-06-17T22:41:36Z 1 2020-02-15T06:59:37Z +1229 2005-06-15T03:53:13Z 2140 468 2005-06-18T04:09:13Z 1 2020-02-15T06:59:37Z +1230 2005-06-15T04:04:09Z 2324 447 2005-06-16T02:21:09Z 1 2020-02-15T06:59:37Z +1231 2005-06-15T04:04:41Z 3003 302 2005-06-20T23:52:41Z 2 2020-02-15T06:59:37Z +1232 2005-06-15T04:18:10Z 2743 391 2005-06-17T06:02:10Z 2 2020-02-15T06:59:37Z +1233 2005-06-15T04:18:37Z 4214 550 2005-06-22T03:36:37Z 1 2020-02-15T06:59:37Z +1234 2005-06-15T04:21:52Z 709 529 2005-06-22T03:25:52Z 1 2020-02-15T06:59:37Z +1235 2005-06-15T04:31:28Z 1000 255 2005-06-22T10:08:28Z 1 2020-02-15T06:59:37Z +1236 2005-06-15T04:34:27Z 3182 66 2005-06-18T08:15:27Z 1 2020-02-15T06:59:37Z +1237 2005-06-15T04:44:10Z 3249 49 2005-06-23T07:00:10Z 2 2020-02-15T06:59:37Z +1238 2005-06-15T04:49:08Z 3534 205 2005-06-20T00:06:08Z 1 2020-02-15T06:59:37Z +1239 2005-06-15T04:53:01Z 3731 444 2005-06-16T07:03:01Z 1 2020-02-15T06:59:37Z +1240 2005-06-15T04:58:07Z 3841 28 2005-06-17T23:56:07Z 1 2020-02-15T06:59:37Z +1241 2005-06-15T04:59:43Z 4377 62 2005-06-24T03:32:43Z 2 2020-02-15T06:59:37Z +1242 2005-06-15T05:05:07Z 821 141 2005-06-22T04:57:07Z 1 2020-02-15T06:59:37Z +1243 2005-06-15T05:07:32Z 2629 107 2005-06-21T08:17:32Z 2 2020-02-15T06:59:37Z +1244 2005-06-15T05:08:40Z 1026 515 2005-06-20T10:41:40Z 1 2020-02-15T06:59:37Z +1245 2005-06-15T05:09:01Z 1314 234 2005-06-22T06:55:01Z 2 2020-02-15T06:59:37Z +1246 2005-06-15T05:11:19Z 431 357 2005-06-21T02:21:19Z 1 2020-02-15T06:59:37Z +1247 2005-06-15T05:16:40Z 4049 287 2005-06-23T11:01:40Z 1 2020-02-15T06:59:37Z +1248 2005-06-15T05:33:52Z 3878 544 2005-06-19T06:56:52Z 2 2020-02-15T06:59:37Z +1249 2005-06-15T05:38:09Z 2120 403 2005-06-22T10:29:09Z 1 2020-02-15T06:59:37Z +1250 2005-06-15T05:55:40Z 4360 38 2005-06-23T03:11:40Z 2 2020-02-15T06:59:37Z +1251 2005-06-15T05:58:55Z 3307 442 2005-06-23T02:45:55Z 2 2020-02-15T06:59:37Z +1252 2005-06-15T06:05:18Z 1147 89 2005-06-24T07:40:18Z 1 2020-02-15T06:59:37Z +1253 2005-06-15T06:06:33Z 3242 498 2005-06-21T04:13:33Z 2 2020-02-15T06:59:37Z +1254 2005-06-15T06:11:16Z 3986 571 2005-06-21T06:40:16Z 2 2020-02-15T06:59:37Z +1255 2005-06-15T06:13:45Z 1433 526 2005-06-16T03:59:45Z 2 2020-02-15T06:59:37Z +1256 2005-06-15T06:13:57Z 1437 470 2005-06-16T06:54:57Z 2 2020-02-15T06:59:37Z +1257 2005-06-15T06:15:36Z 1938 267 2005-06-21T01:04:36Z 2 2020-02-15T06:59:37Z +1258 2005-06-15T06:21:30Z 4530 320 2005-06-18T05:43:30Z 2 2020-02-15T06:59:37Z +1259 2005-06-15T06:37:55Z 4460 570 2005-06-23T04:02:55Z 2 2020-02-15T06:59:37Z +1260 2005-06-15T06:42:25Z 330 586 2005-06-16T10:44:25Z 2 2020-02-15T06:59:37Z +1261 2005-06-15T06:52:57Z 2447 95 2005-06-21T01:47:57Z 2 2020-02-15T06:59:37Z +1262 2005-06-15T06:54:53Z 4495 236 2005-06-22T08:09:53Z 2 2020-02-15T06:59:37Z +1263 2005-06-15T06:56:39Z 4144 540 2005-06-16T11:08:39Z 1 2020-02-15T06:59:37Z +1264 2005-06-15T06:59:39Z 4176 439 2005-06-18T08:10:39Z 2 2020-02-15T06:59:37Z +1265 2005-06-15T07:00:50Z 982 163 2005-06-19T12:27:50Z 1 2020-02-15T06:59:37Z +1266 2005-06-15T07:11:39Z 2230 96 2005-06-21T02:59:39Z 2 2020-02-15T06:59:37Z +1267 2005-06-15T07:21:21Z 4246 509 2005-06-17T08:12:21Z 2 2020-02-15T06:59:37Z +1268 2005-06-15T07:29:30Z 3641 142 2005-06-23T12:36:30Z 1 2020-02-15T06:59:37Z +1269 2005-06-15T07:29:59Z 108 59 2005-06-16T13:26:59Z 2 2020-02-15T06:59:37Z +1270 2005-06-15T07:30:22Z 62 395 2005-06-18T11:31:22Z 2 2020-02-15T06:59:37Z +1271 2005-06-15T07:32:24Z 379 560 2005-06-21T05:12:24Z 1 2020-02-15T06:59:37Z +1272 2005-06-15T07:42:58Z 3128 135 2005-06-18T12:00:58Z 1 2020-02-15T06:59:37Z +1273 2005-06-15T07:52:35Z 361 530 2005-06-21T04:55:35Z 1 2020-02-15T06:59:37Z +1274 2005-06-15T07:52:52Z 2765 430 2005-06-20T10:01:52Z 1 2020-02-15T06:59:37Z +1275 2005-06-15T07:55:43Z 950 214 2005-06-20T06:30:43Z 1 2020-02-15T06:59:37Z +1276 2005-06-15T08:00:13Z 1508 388 2005-06-24T02:55:13Z 2 2020-02-15T06:59:37Z +1277 2005-06-15T08:01:29Z 76 464 2005-06-22T07:16:29Z 2 2020-02-15T06:59:37Z +1278 2005-06-15T08:09:12Z 4471 191 2005-06-17T04:05:12Z 2 2020-02-15T06:59:37Z +1279 2005-06-15T08:13:57Z 698 183 2005-06-18T09:36:57Z 2 2020-02-15T06:59:37Z +1280 2005-06-15T08:16:06Z 2597 266 2005-06-21T04:10:06Z 2 2020-02-15T06:59:37Z +1281 2005-06-15T08:21:39Z 2963 511 2005-06-17T11:03:39Z 1 2020-02-15T06:59:37Z +1282 2005-06-15T08:25:33Z 186 539 2005-06-21T04:02:33Z 1 2020-02-15T06:59:37Z +1283 2005-06-15T08:27:30Z 3177 470 2005-06-16T09:46:30Z 2 2020-02-15T06:59:37Z +1284 2005-06-15T08:27:33Z 1387 463 2005-06-17T03:58:33Z 1 2020-02-15T06:59:37Z +1285 2005-06-15T08:33:06Z 1054 254 2005-06-19T07:36:06Z 1 2020-02-15T06:59:37Z +1286 2005-06-15T08:41:13Z 774 179 2005-06-23T13:13:13Z 2 2020-02-15T06:59:37Z +1287 2005-06-15T08:41:38Z 4204 104 2005-06-22T14:02:38Z 1 2020-02-15T06:59:37Z +1288 2005-06-15T08:41:52Z 830 456 2005-06-19T05:30:52Z 2 2020-02-15T06:59:37Z +1289 2005-06-15T08:44:09Z 3154 522 2005-06-21T06:04:09Z 1 2020-02-15T06:59:37Z +1290 2005-06-15T08:52:44Z 1921 540 2005-06-24T13:36:44Z 2 2020-02-15T06:59:37Z +1291 2005-06-15T08:55:01Z 3090 176 2005-06-24T04:22:01Z 1 2020-02-15T06:59:37Z +1292 2005-06-15T09:03:52Z 4535 178 2005-06-21T07:53:52Z 1 2020-02-15T06:59:37Z +1293 2005-06-15T09:06:24Z 2882 127 2005-06-18T06:58:24Z 1 2020-02-15T06:59:37Z +1294 2005-06-15T09:09:27Z 339 327 2005-06-19T04:43:27Z 1 2020-02-15T06:59:37Z +1295 2005-06-15T09:17:20Z 2897 449 2005-06-18T10:14:20Z 2 2020-02-15T06:59:37Z +1296 2005-06-15T09:23:59Z 1760 200 2005-06-19T03:44:59Z 2 2020-02-15T06:59:37Z +1297 2005-06-15T09:31:28Z 1075 4 2005-06-19T04:33:28Z 1 2020-02-15T06:59:37Z +1298 2005-06-15T09:32:53Z 4163 334 2005-06-16T12:40:53Z 2 2020-02-15T06:59:37Z +1299 2005-06-15T09:34:50Z 1584 91 2005-06-21T12:07:50Z 1 2020-02-15T06:59:37Z +1300 2005-06-15T09:36:19Z 2524 186 2005-06-17T13:54:19Z 2 2020-02-15T06:59:37Z +1301 2005-06-15T09:46:33Z 1484 33 2005-06-24T08:56:33Z 2 2020-02-15T06:59:37Z +1302 2005-06-15T09:48:37Z 324 285 2005-06-22T06:18:37Z 1 2020-02-15T06:59:37Z +1303 2005-06-15T09:55:57Z 2001 365 2005-06-20T14:26:57Z 2 2020-02-15T06:59:37Z +1304 2005-06-15T09:56:02Z 1304 242 2005-06-24T07:00:02Z 1 2020-02-15T06:59:37Z +1305 2005-06-15T09:59:16Z 187 8 2005-06-19T09:48:16Z 2 2020-02-15T06:59:37Z +1306 2005-06-15T09:59:24Z 2132 524 2005-06-19T09:37:24Z 2 2020-02-15T06:59:37Z +1307 2005-06-15T10:06:15Z 368 507 2005-06-20T04:50:15Z 2 2020-02-15T06:59:37Z +1308 2005-06-15T10:07:48Z 220 236 2005-06-24T15:24:48Z 1 2020-02-15T06:59:37Z +1309 2005-06-15T10:10:49Z 2356 200 2005-06-16T12:44:49Z 1 2020-02-15T06:59:37Z +1310 2005-06-15T10:11:42Z 2045 27 2005-06-16T15:00:42Z 1 2020-02-15T06:59:37Z +1311 2005-06-15T10:11:59Z 3114 326 2005-06-17T08:44:59Z 2 2020-02-15T06:59:37Z +1312 2005-06-15T10:16:27Z 3608 313 2005-06-20T06:53:27Z 1 2020-02-15T06:59:37Z +1313 2005-06-15T10:18:34Z 1657 448 2005-06-23T06:25:34Z 1 2020-02-15T06:59:37Z +1314 2005-06-15T10:21:45Z 1359 538 2005-06-21T14:10:45Z 1 2020-02-15T06:59:37Z +1315 2005-06-15T10:23:08Z 3844 405 2005-06-21T15:06:08Z 1 2020-02-15T06:59:37Z +1316 2005-06-15T10:26:23Z 3891 138 2005-06-21T09:25:23Z 2 2020-02-15T06:59:37Z +1317 2005-06-15T10:30:19Z 3696 316 2005-06-24T08:18:19Z 1 2020-02-15T06:59:37Z +1318 2005-06-15T10:34:26Z 2760 341 2005-06-20T16:20:26Z 1 2020-02-15T06:59:37Z +1319 2005-06-15T10:39:05Z 4296 190 2005-06-18T05:25:05Z 1 2020-02-15T06:59:37Z +1320 2005-06-15T10:42:13Z 4484 84 2005-06-17T13:44:13Z 1 2020-02-15T06:59:37Z +1321 2005-06-15T10:49:17Z 3516 204 2005-06-16T15:30:17Z 1 2020-02-15T06:59:37Z +1322 2005-06-15T10:55:09Z 2076 217 2005-06-18T15:14:09Z 2 2020-02-15T06:59:37Z +1323 2005-06-15T10:55:17Z 3273 187 2005-06-24T09:51:17Z 1 2020-02-15T06:59:37Z +1324 2005-06-15T11:02:45Z 764 394 2005-06-17T07:14:45Z 1 2020-02-15T06:59:37Z +1325 2005-06-15T11:03:24Z 52 193 2005-06-20T10:54:24Z 1 2020-02-15T06:59:37Z +1326 2005-06-15T11:07:39Z 59 548 2005-06-22T05:55:39Z 2 2020-02-15T06:59:37Z +1327 2005-06-15T11:11:39Z 403 539 2005-06-22T10:45:39Z 1 2020-02-15T06:59:37Z +1328 2005-06-15T11:23:27Z 3665 295 2005-06-19T12:42:27Z 2 2020-02-15T06:59:37Z +1329 2005-06-15T11:25:06Z 1154 359 2005-06-17T16:10:06Z 2 2020-02-15T06:59:37Z +1330 2005-06-15T11:29:17Z 1219 587 2005-06-24T13:36:17Z 2 2020-02-15T06:59:37Z +1331 2005-06-15T11:34:33Z 3089 277 2005-06-21T09:46:33Z 1 2020-02-15T06:59:37Z +1332 2005-06-15T11:36:01Z 1412 116 2005-06-17T14:29:01Z 1 2020-02-15T06:59:37Z +1333 2005-06-15T11:37:08Z 448 310 2005-06-16T10:13:08Z 2 2020-02-15T06:59:37Z +1334 2005-06-15T11:43:09Z 1242 269 2005-06-20T15:45:09Z 2 2020-02-15T06:59:37Z +1335 2005-06-15T11:51:30Z 1713 64 2005-06-16T16:42:30Z 2 2020-02-15T06:59:37Z +1336 2005-06-15T12:01:34Z 1696 290 2005-06-23T12:05:34Z 1 2020-02-15T06:59:37Z +1337 2005-06-15T12:12:42Z 4014 465 2005-06-20T12:38:42Z 2 2020-02-15T06:59:37Z +1338 2005-06-15T12:17:34Z 1206 25 2005-06-19T07:40:34Z 2 2020-02-15T06:59:37Z +1339 2005-06-15T12:21:56Z 424 162 2005-06-19T07:46:56Z 1 2020-02-15T06:59:37Z +1340 2005-06-15T12:24:15Z 251 100 2005-06-22T13:02:15Z 1 2020-02-15T06:59:37Z +1341 2005-06-15T12:26:18Z 3363 344 2005-06-21T07:26:18Z 2 2020-02-15T06:59:37Z +1342 2005-06-15T12:26:21Z 4429 427 2005-06-22T11:23:21Z 1 2020-02-15T06:59:37Z +1343 2005-06-15T12:27:19Z 2393 416 2005-06-21T16:57:19Z 1 2020-02-15T06:59:37Z +1344 2005-06-15T12:29:41Z 1625 585 2005-06-22T12:45:41Z 2 2020-02-15T06:59:37Z +1345 2005-06-15T12:32:13Z 1041 270 2005-06-24T14:02:13Z 1 2020-02-15T06:59:37Z +1346 2005-06-15T12:39:52Z 4540 585 2005-06-24T17:43:52Z 1 2020-02-15T06:59:37Z +1347 2005-06-15T12:43:43Z 374 190 2005-06-16T09:55:43Z 1 2020-02-15T06:59:37Z +1348 2005-06-15T12:45:30Z 2078 196 2005-06-17T17:12:30Z 1 2020-02-15T06:59:37Z +1349 2005-06-15T12:49:02Z 1131 267 2005-06-17T15:20:02Z 1 2020-02-15T06:59:37Z +1350 2005-06-15T12:50:25Z 4261 316 2005-06-23T11:35:25Z 1 2020-02-15T06:59:37Z +1351 2005-06-15T12:51:03Z 2364 484 2005-06-22T07:23:03Z 1 2020-02-15T06:59:37Z +1352 2005-06-15T12:58:27Z 4352 276 2005-06-18T10:57:27Z 1 2020-02-15T06:59:37Z +1353 2005-06-15T13:13:36Z 2711 480 2005-06-21T08:46:36Z 2 2020-02-15T06:59:37Z +1354 2005-06-15T13:13:49Z 1294 83 2005-06-23T13:08:49Z 2 2020-02-15T06:59:37Z +1355 2005-06-15T13:13:59Z 4203 499 2005-06-20T12:23:59Z 1 2020-02-15T06:59:37Z +1356 2005-06-15T13:17:01Z 1318 212 2005-06-19T16:22:01Z 1 2020-02-15T06:59:37Z +1357 2005-06-15T13:26:23Z 2285 205 2005-06-23T14:12:23Z 1 2020-02-15T06:59:37Z +1358 2005-06-15T13:28:48Z 2025 442 2005-06-21T13:40:48Z 1 2020-02-15T06:59:37Z +1359 2005-06-15T13:30:30Z 3140 353 2005-06-17T14:55:30Z 1 2020-02-15T06:59:37Z +1360 2005-06-15T13:32:15Z 4107 14 2005-06-18T10:59:15Z 2 2020-02-15T06:59:37Z +1361 2005-06-15T13:37:38Z 4338 115 2005-06-19T17:08:38Z 1 2020-02-15T06:59:37Z +1362 2005-06-15T13:53:32Z 4524 98 2005-06-19T16:05:32Z 1 2020-02-15T06:59:37Z +1363 2005-06-15T14:05:11Z 771 197 2005-06-17T19:53:11Z 2 2020-02-15T06:59:37Z +1364 2005-06-15T14:05:32Z 115 400 2005-06-16T15:31:32Z 1 2020-02-15T06:59:37Z +1365 2005-06-15T14:09:55Z 3813 25 2005-06-19T18:11:55Z 2 2020-02-15T06:59:37Z +1366 2005-06-15T14:21:00Z 4238 576 2005-06-24T17:36:00Z 1 2020-02-15T06:59:37Z +1367 2005-06-15T14:25:17Z 1505 94 2005-06-21T19:15:17Z 1 2020-02-15T06:59:37Z +1368 2005-06-15T14:27:47Z 2020 222 2005-06-23T18:07:47Z 2 2020-02-15T06:59:37Z +1369 2005-06-15T14:29:14Z 679 221 2005-06-16T13:01:14Z 1 2020-02-15T06:59:37Z +1370 2005-06-15T14:31:05Z 644 396 2005-06-22T19:23:05Z 2 2020-02-15T06:59:37Z +1371 2005-06-15T14:38:15Z 760 491 2005-06-23T15:36:15Z 1 2020-02-15T06:59:37Z +1372 2005-06-15T14:45:48Z 3740 108 2005-06-17T18:02:48Z 2 2020-02-15T06:59:37Z +1373 2005-06-15T14:48:04Z 284 51 2005-06-22T09:48:04Z 1 2020-02-15T06:59:37Z +1374 2005-06-15T14:49:54Z 3353 120 2005-06-22T12:30:54Z 1 2020-02-15T06:59:37Z +1375 2005-06-15T14:54:56Z 3555 500 2005-06-21T14:48:56Z 2 2020-02-15T06:59:37Z +1376 2005-06-15T14:59:06Z 4271 215 2005-06-19T17:34:06Z 1 2020-02-15T06:59:37Z +1377 2005-06-15T15:02:03Z 3410 245 2005-06-22T14:54:03Z 2 2020-02-15T06:59:37Z +1378 2005-06-15T15:03:15Z 4372 253 2005-06-19T16:50:15Z 1 2020-02-15T06:59:37Z +1379 2005-06-15T15:05:10Z 810 212 2005-06-18T12:11:10Z 1 2020-02-15T06:59:37Z +1380 2005-06-15T15:13:10Z 3376 158 2005-06-18T12:42:10Z 2 2020-02-15T06:59:37Z +1381 2005-06-15T15:17:21Z 3262 300 2005-06-20T17:07:21Z 2 2020-02-15T06:59:37Z +1382 2005-06-15T15:18:08Z 3133 455 2005-06-22T09:22:08Z 2 2020-02-15T06:59:37Z +1383 2005-06-15T15:20:06Z 1281 379 2005-06-24T18:42:06Z 2 2020-02-15T06:59:37Z +1384 2005-06-15T15:22:03Z 4242 242 2005-06-18T18:11:03Z 1 2020-02-15T06:59:37Z +1385 2005-06-15T15:28:23Z 4073 396 2005-06-18T18:37:23Z 1 2020-02-15T06:59:37Z +1386 2005-06-15T15:38:58Z 1296 322 2005-06-20T16:28:58Z 2 2020-02-15T06:59:37Z +1387 2005-06-15T15:40:56Z 515 278 2005-06-17T10:39:56Z 1 2020-02-15T06:59:37Z +1388 2005-06-15T15:48:41Z 3987 500 2005-06-22T17:51:41Z 1 2020-02-15T06:59:37Z +1389 2005-06-15T15:49:01Z 965 472 2005-06-19T11:08:01Z 2 2020-02-15T06:59:37Z +1390 2005-06-15T16:06:29Z 4502 254 2005-06-19T13:11:29Z 1 2020-02-15T06:59:37Z +1391 2005-06-15T16:11:21Z 4213 273 2005-06-22T21:32:21Z 1 2020-02-15T06:59:37Z +1392 2005-06-15T16:12:27Z 363 460 2005-06-16T17:30:27Z 2 2020-02-15T06:59:37Z +1393 2005-06-15T16:12:50Z 2767 177 2005-06-19T10:40:50Z 2 2020-02-15T06:59:37Z +1394 2005-06-15T16:17:21Z 2802 268 2005-06-21T20:44:21Z 2 2020-02-15T06:59:37Z +1395 2005-06-15T16:21:04Z 753 252 2005-06-23T12:52:04Z 2 2020-02-15T06:59:37Z +1396 2005-06-15T16:22:38Z 1007 103 2005-06-17T15:53:38Z 2 2020-02-15T06:59:37Z +1397 2005-06-15T16:25:26Z 1830 444 2005-06-21T20:45:26Z 1 2020-02-15T06:59:37Z +1398 2005-06-15T16:28:42Z 4402 527 2005-06-16T12:11:42Z 1 2020-02-15T06:59:37Z +1399 2005-06-15T16:29:51Z 1435 469 2005-06-18T14:06:51Z 1 2020-02-15T06:59:37Z +1400 2005-06-15T16:29:56Z 230 571 2005-06-21T14:43:56Z 2 2020-02-15T06:59:37Z +1401 2005-06-15T16:30:22Z 4081 366 2005-06-21T11:07:22Z 2 2020-02-15T06:59:37Z +1402 2005-06-15T16:31:08Z 1951 381 2005-06-24T19:31:08Z 1 2020-02-15T06:59:37Z +1403 2005-06-15T16:31:59Z 3380 546 2005-06-22T14:23:59Z 2 2020-02-15T06:59:37Z +1404 2005-06-15T16:38:53Z 2776 375 2005-06-16T20:37:53Z 1 2020-02-15T06:59:37Z +1405 2005-06-15T16:41:26Z 3184 243 2005-06-21T18:16:26Z 1 2020-02-15T06:59:37Z +1406 2005-06-15T16:44:00Z 3118 199 2005-06-21T11:22:00Z 2 2020-02-15T06:59:37Z +1407 2005-06-15T16:45:07Z 1286 89 2005-06-23T14:01:07Z 1 2020-02-15T06:59:37Z +1408 2005-06-15T16:57:58Z 2655 396 2005-06-22T21:08:58Z 1 2020-02-15T06:59:37Z +1409 2005-06-15T16:58:12Z 1398 297 2005-06-21T11:21:12Z 2 2020-02-15T06:59:37Z +1410 2005-06-15T16:59:46Z 809 356 2005-06-21T16:38:46Z 1 2020-02-15T06:59:37Z +1411 2005-06-15T17:05:36Z 2276 520 2005-06-21T14:05:36Z 1 2020-02-15T06:59:37Z +1412 2005-06-15T17:09:48Z 4236 166 2005-06-18T17:05:48Z 2 2020-02-15T06:59:37Z +1413 2005-06-15T17:25:07Z 3625 96 2005-06-21T17:17:07Z 2 2020-02-15T06:59:37Z +1414 2005-06-15T17:26:32Z 4005 304 2005-06-22T22:30:32Z 1 2020-02-15T06:59:37Z +1415 2005-06-15T17:31:57Z 1885 331 2005-06-16T22:22:57Z 2 2020-02-15T06:59:37Z +1416 2005-06-15T17:44:57Z 3816 167 2005-06-22T20:53:57Z 2 2020-02-15T06:59:37Z +1417 2005-06-15T17:45:51Z 1334 570 2005-06-19T14:00:51Z 2 2020-02-15T06:59:37Z +1418 2005-06-15T17:51:27Z 2974 591 2005-06-18T23:20:27Z 2 2020-02-15T06:59:37Z +1419 2005-06-15T17:54:50Z 1208 312 2005-06-17T19:44:50Z 2 2020-02-15T06:59:37Z +1420 2005-06-15T17:56:14Z 4149 255 2005-06-24T15:45:14Z 2 2020-02-15T06:59:37Z +1421 2005-06-15T17:57:04Z 2439 533 2005-06-21T20:38:04Z 2 2020-02-15T06:59:37Z +1422 2005-06-15T18:02:53Z 1021 1 2005-06-19T15:54:53Z 2 2020-02-15T06:59:37Z +1423 2005-06-15T18:08:12Z 1396 592 2005-06-24T19:13:12Z 1 2020-02-15T06:59:37Z +1424 2005-06-15T18:08:14Z 887 224 2005-06-24T23:16:14Z 2 2020-02-15T06:59:37Z +1425 2005-06-15T18:13:46Z 1308 108 2005-06-18T22:50:46Z 2 2020-02-15T06:59:37Z +1426 2005-06-15T18:16:24Z 4412 363 2005-06-18T22:15:24Z 2 2020-02-15T06:59:37Z +1427 2005-06-15T18:17:28Z 14 100 2005-06-16T15:47:28Z 1 2020-02-15T06:59:37Z +1428 2005-06-15T18:19:30Z 3689 583 2005-06-22T23:05:30Z 2 2020-02-15T06:59:37Z +1429 2005-06-15T18:24:10Z 4116 362 2005-06-18T16:30:10Z 1 2020-02-15T06:59:37Z +1430 2005-06-15T18:24:55Z 3412 194 2005-06-16T12:26:55Z 1 2020-02-15T06:59:37Z +1431 2005-06-15T18:26:29Z 3193 438 2005-06-21T17:33:29Z 1 2020-02-15T06:59:37Z +1432 2005-06-15T18:27:24Z 523 339 2005-06-21T14:03:24Z 2 2020-02-15T06:59:37Z +1433 2005-06-15T18:30:00Z 2310 88 2005-06-16T15:14:00Z 1 2020-02-15T06:59:37Z +1434 2005-06-15T18:30:46Z 4228 544 2005-06-24T17:51:46Z 1 2020-02-15T06:59:37Z +1435 2005-06-15T18:32:30Z 2769 510 2005-06-24T12:44:30Z 2 2020-02-15T06:59:37Z +1436 2005-06-15T18:35:40Z 924 584 2005-06-21T15:04:40Z 1 2020-02-15T06:59:37Z +1437 2005-06-15T18:37:04Z 3263 96 2005-06-20T12:56:04Z 1 2020-02-15T06:59:37Z +1438 2005-06-15T18:38:51Z 1816 82 2005-06-17T23:50:51Z 1 2020-02-15T06:59:37Z +1439 2005-06-15T18:45:32Z 3155 589 2005-06-22T15:57:32Z 2 2020-02-15T06:59:37Z +1440 2005-06-15T18:53:14Z 2921 26 2005-06-24T15:28:14Z 1 2020-02-15T06:59:37Z +1441 2005-06-15T18:54:21Z 2095 444 2005-06-22T22:48:21Z 2 2020-02-15T06:59:37Z +1442 2005-06-15T18:55:34Z 3912 122 2005-06-22T20:41:34Z 2 2020-02-15T06:59:37Z +1443 2005-06-15T18:57:51Z 2485 435 2005-06-18T14:18:51Z 2 2020-02-15T06:59:37Z +1444 2005-06-15T19:08:16Z 1303 539 2005-06-24T15:20:16Z 2 2020-02-15T06:59:37Z +1445 2005-06-15T19:10:07Z 3189 537 2005-06-19T20:27:07Z 2 2020-02-15T06:59:37Z +1446 2005-06-15T19:13:45Z 1989 506 2005-06-23T19:43:45Z 2 2020-02-15T06:59:37Z +1447 2005-06-15T19:13:51Z 984 471 2005-06-21T22:56:51Z 1 2020-02-15T06:59:37Z +1448 2005-06-15T19:17:16Z 2781 246 2005-06-23T21:56:16Z 2 2020-02-15T06:59:37Z +1449 2005-06-15T19:19:16Z 1525 471 2005-06-18T15:24:16Z 2 2020-02-15T06:59:37Z +1450 2005-06-15T19:22:08Z 4132 268 2005-06-16T17:53:08Z 2 2020-02-15T06:59:37Z +1451 2005-06-15T19:30:18Z 3560 18 2005-06-19T19:22:18Z 2 2020-02-15T06:59:37Z +1452 2005-06-15T19:32:52Z 4348 243 2005-06-16T13:45:52Z 1 2020-02-15T06:59:37Z +1453 2005-06-15T19:36:39Z 3274 457 2005-06-19T00:16:39Z 2 2020-02-15T06:59:37Z +1454 2005-06-15T19:49:41Z 102 298 2005-06-17T15:17:41Z 2 2020-02-15T06:59:37Z +1455 2005-06-15T19:51:06Z 2194 358 2005-06-18T21:54:06Z 2 2020-02-15T06:59:37Z +1456 2005-06-15T20:00:11Z 632 590 2005-06-23T18:03:11Z 2 2020-02-15T06:59:37Z +1457 2005-06-15T20:05:49Z 730 345 2005-06-19T15:35:49Z 1 2020-02-15T06:59:37Z +1458 2005-06-15T20:24:05Z 3546 178 2005-06-21T01:22:05Z 1 2020-02-15T06:59:37Z +1459 2005-06-15T20:25:53Z 1862 218 2005-06-22T23:34:53Z 2 2020-02-15T06:59:37Z +1460 2005-06-15T20:27:02Z 1405 565 2005-06-16T16:21:02Z 1 2020-02-15T06:59:37Z +1461 2005-06-15T20:32:08Z 4479 216 2005-06-23T01:08:08Z 1 2020-02-15T06:59:37Z +1462 2005-06-15T20:37:40Z 653 187 2005-06-18T19:36:40Z 2 2020-02-15T06:59:37Z +1463 2005-06-15T20:37:51Z 2984 569 2005-06-21T16:46:51Z 2 2020-02-15T06:59:37Z +1464 2005-06-15T20:38:14Z 4113 387 2005-06-17T14:52:14Z 2 2020-02-15T06:59:37Z +1465 2005-06-15T20:43:08Z 609 387 2005-06-18T23:00:08Z 1 2020-02-15T06:59:37Z +1466 2005-06-15T20:46:04Z 1057 288 2005-06-24T22:46:04Z 1 2020-02-15T06:59:37Z +1467 2005-06-15T20:47:10Z 688 506 2005-06-22T00:30:10Z 1 2020-02-15T06:59:37Z +1468 2005-06-15T20:48:22Z 228 230 2005-06-21T19:48:22Z 1 2020-02-15T06:59:37Z +1469 2005-06-15T20:52:36Z 2451 580 2005-06-21T19:55:36Z 1 2020-02-15T06:59:37Z +1470 2005-06-15T20:53:07Z 4044 11 2005-06-25T02:12:07Z 1 2020-02-15T06:59:37Z +1471 2005-06-15T20:53:26Z 565 428 2005-06-24T18:25:26Z 2 2020-02-15T06:59:37Z +1472 2005-06-15T20:54:55Z 4233 373 2005-06-24T21:52:55Z 2 2020-02-15T06:59:37Z +1473 2005-06-15T20:55:20Z 2377 249 2005-06-21T16:40:20Z 2 2020-02-15T06:59:37Z +1474 2005-06-15T20:55:42Z 164 202 2005-06-19T02:41:42Z 2 2020-02-15T06:59:37Z +1475 2005-06-15T21:08:01Z 1834 344 2005-06-18T22:33:01Z 2 2020-02-15T06:59:37Z +1476 2005-06-15T21:08:46Z 1407 1 2005-06-25T02:26:46Z 1 2020-02-15T06:59:37Z +1477 2005-06-15T21:11:18Z 418 51 2005-06-19T02:05:18Z 1 2020-02-15T06:59:37Z +1478 2005-06-15T21:12:13Z 435 336 2005-06-18T21:43:13Z 2 2020-02-15T06:59:37Z +1479 2005-06-15T21:13:38Z 172 592 2005-06-17T01:26:38Z 2 2020-02-15T06:59:37Z +1480 2005-06-15T21:17:17Z 2598 27 2005-06-23T22:01:17Z 1 2020-02-15T06:59:37Z +1481 2005-06-15T21:17:58Z 3041 125 2005-06-18T17:53:58Z 2 2020-02-15T06:59:37Z +1482 2005-06-15T21:18:16Z 3980 60 2005-06-16T17:07:16Z 1 2020-02-15T06:59:37Z +1483 2005-06-15T21:21:58Z 1926 242 2005-06-24T00:44:58Z 2 2020-02-15T06:59:37Z +1484 2005-06-15T21:22:35Z 1589 320 2005-06-20T02:27:35Z 2 2020-02-15T06:59:37Z +1485 2005-06-15T21:24:10Z 194 281 2005-06-24T23:03:10Z 1 2020-02-15T06:59:37Z +1486 2005-06-15T21:25:30Z 847 62 2005-06-16T16:36:30Z 1 2020-02-15T06:59:37Z +1487 2005-06-15T21:27:42Z 3791 76 2005-06-22T03:09:42Z 2 2020-02-15T06:59:37Z +1488 2005-06-15T21:39:54Z 1081 355 2005-06-16T20:33:54Z 1 2020-02-15T06:59:37Z +1489 2005-06-15T21:41:38Z 699 213 2005-06-22T17:00:38Z 1 2020-02-15T06:59:37Z +1490 2005-06-15T21:42:17Z 3515 123 2005-06-22T02:01:17Z 2 2020-02-15T06:59:37Z +1491 2005-06-15T21:48:18Z 848 354 2005-06-20T16:40:18Z 1 2020-02-15T06:59:37Z +1492 2005-06-15T21:48:35Z 4148 360 2005-06-17T17:18:35Z 1 2020-02-15T06:59:37Z +1493 2005-06-15T21:50:32Z 4581 235 2005-06-17T01:02:32Z 2 2020-02-15T06:59:37Z +1494 2005-06-15T21:54:20Z 244 575 2005-06-19T18:46:20Z 1 2020-02-15T06:59:37Z +1495 2005-06-15T21:54:31Z 1842 175 2005-06-19T00:08:31Z 2 2020-02-15T06:59:37Z +1496 2005-06-15T21:55:58Z 3915 290 2005-06-17T02:28:58Z 2 2020-02-15T06:59:37Z +1497 2005-06-15T21:56:39Z 2958 44 2005-06-20T20:32:39Z 1 2020-02-15T06:59:37Z +1498 2005-06-15T21:58:00Z 3690 352 2005-06-17T21:50:00Z 1 2020-02-15T06:59:37Z +1499 2005-06-15T21:58:07Z 165 375 2005-06-22T19:37:07Z 2 2020-02-15T06:59:37Z +1500 2005-06-15T22:00:45Z 2652 237 2005-06-18T16:19:45Z 2 2020-02-15T06:59:37Z +1501 2005-06-15T22:02:35Z 1780 148 2005-06-23T18:59:35Z 1 2020-02-15T06:59:37Z +1502 2005-06-15T22:03:14Z 3277 5 2005-06-23T18:42:14Z 2 2020-02-15T06:59:37Z +1503 2005-06-15T22:07:09Z 763 197 2005-06-20T23:15:09Z 1 2020-02-15T06:59:37Z +1504 2005-06-15T22:08:06Z 3621 423 2005-06-24T01:16:06Z 2 2020-02-15T06:59:37Z +1505 2005-06-15T22:12:50Z 2961 561 2005-06-17T21:37:50Z 2 2020-02-15T06:59:37Z +1506 2005-06-15T22:19:37Z 4085 404 2005-06-22T18:28:37Z 1 2020-02-15T06:59:37Z +1507 2005-06-15T22:25:26Z 2514 172 2005-06-19T17:00:26Z 1 2020-02-15T06:59:37Z +1508 2005-06-15T22:33:24Z 1141 511 2005-06-18T02:27:24Z 2 2020-02-15T06:59:37Z +1509 2005-06-15T22:35:53Z 655 167 2005-06-23T17:09:53Z 2 2020-02-15T06:59:37Z +1510 2005-06-15T22:39:34Z 989 338 2005-06-24T19:21:34Z 2 2020-02-15T06:59:37Z +1511 2005-06-15T22:45:06Z 1135 330 2005-06-22T22:48:06Z 1 2020-02-15T06:59:37Z +1512 2005-06-15T22:53:03Z 1628 452 2005-06-23T18:56:03Z 1 2020-02-15T06:59:37Z +1513 2005-06-15T22:53:30Z 1173 368 2005-06-23T01:00:30Z 1 2020-02-15T06:59:37Z +1514 2005-06-15T22:57:34Z 2937 410 2005-06-19T20:27:34Z 1 2020-02-15T06:59:37Z +1515 2005-06-15T23:07:50Z 3244 115 2005-06-20T02:33:50Z 2 2020-02-15T06:59:37Z +1516 2005-06-15T23:11:10Z 3702 530 2005-06-17T20:37:10Z 1 2020-02-15T06:59:37Z +1517 2005-06-15T23:20:26Z 3728 148 2005-06-23T23:23:26Z 1 2020-02-15T06:59:37Z +1518 2005-06-15T23:36:37Z 4537 237 2005-06-16T18:24:37Z 2 2020-02-15T06:59:37Z +1519 2005-06-15T23:55:27Z 1553 155 2005-06-21T04:06:27Z 2 2020-02-15T06:59:37Z +1520 2005-06-15T23:57:20Z 3419 341 2005-06-24T23:46:20Z 1 2020-02-15T06:59:37Z +1521 2005-06-15T23:58:53Z 4299 149 2005-06-18T03:10:53Z 1 2020-02-15T06:59:37Z +1522 2005-06-16T00:17:39Z 235 133 2005-06-22T05:38:39Z 1 2020-02-15T06:59:37Z +1523 2005-06-16T00:18:40Z 681 349 2005-06-17T02:50:40Z 2 2020-02-15T06:59:37Z +1524 2005-06-16T00:25:52Z 3439 177 2005-06-19T03:32:52Z 1 2020-02-15T06:59:37Z +1525 2005-06-16T00:26:07Z 1467 304 2005-06-19T22:37:07Z 2 2020-02-15T06:59:37Z +1526 2005-06-16T00:27:51Z 1940 499 2005-06-19T00:19:51Z 1 2020-02-15T06:59:37Z +1527 2005-06-16T00:31:40Z 296 188 2005-06-21T05:20:40Z 1 2020-02-15T06:59:37Z +1528 2005-06-16T00:32:52Z 4297 110 2005-06-25T01:07:52Z 2 2020-02-15T06:59:37Z +1529 2005-06-16T00:37:35Z 1688 362 2005-06-22T18:58:35Z 2 2020-02-15T06:59:37Z +1530 2005-06-16T00:38:07Z 2421 392 2005-06-24T02:45:07Z 2 2020-02-15T06:59:37Z +1531 2005-06-16T00:40:34Z 1388 515 2005-06-22T02:44:34Z 1 2020-02-15T06:59:37Z +1532 2005-06-16T00:41:31Z 3793 290 2005-06-20T21:36:31Z 1 2020-02-15T06:59:37Z +1533 2005-06-16T00:46:02Z 2452 116 2005-06-17T20:11:02Z 1 2020-02-15T06:59:37Z +1534 2005-06-16T00:49:32Z 3124 42 2005-06-18T02:41:32Z 1 2020-02-15T06:59:37Z +1535 2005-06-16T00:52:04Z 1096 202 2005-06-20T22:47:04Z 2 2020-02-15T06:59:37Z +1536 2005-06-16T00:52:22Z 3248 339 2005-06-17T21:43:22Z 1 2020-02-15T06:59:37Z +1537 2005-06-16T00:52:51Z 4577 594 2005-06-20T19:33:51Z 2 2020-02-15T06:59:37Z +1538 2005-06-16T01:05:50Z 708 430 2005-06-18T19:48:50Z 1 2020-02-15T06:59:37Z +1539 2005-06-16T01:11:25Z 267 390 2005-06-23T03:43:25Z 2 2020-02-15T06:59:37Z +1540 2005-06-16T01:14:56Z 2707 586 2005-06-20T23:31:56Z 2 2020-02-15T06:59:37Z +1541 2005-06-16T01:15:59Z 1911 189 2005-06-22T21:26:59Z 2 2020-02-15T06:59:37Z +1542 2005-06-16T01:20:05Z 1714 182 2005-06-22T03:59:05Z 1 2020-02-15T06:59:37Z +1543 2005-06-16T01:24:08Z 1188 28 2005-06-18T06:24:08Z 2 2020-02-15T06:59:37Z +1544 2005-06-16T01:28:22Z 269 43 2005-06-17T06:57:22Z 2 2020-02-15T06:59:37Z +1545 2005-06-16T01:31:23Z 762 563 2005-06-24T05:50:23Z 1 2020-02-15T06:59:37Z +1546 2005-06-16T01:34:05Z 3913 3 2005-06-24T04:27:05Z 1 2020-02-15T06:59:37Z +1547 2005-06-16T01:42:24Z 2909 343 2005-06-19T01:13:24Z 1 2020-02-15T06:59:37Z +1548 2005-06-16T01:43:33Z 2094 374 2005-06-23T22:04:33Z 2 2020-02-15T06:59:37Z +1549 2005-06-16T01:57:15Z 266 69 2005-06-18T23:30:15Z 1 2020-02-15T06:59:37Z +1550 2005-06-16T01:58:35Z 2003 345 2005-06-18T23:56:35Z 1 2020-02-15T06:59:37Z +1551 2005-06-16T02:01:15Z 4088 268 2005-06-22T07:33:15Z 1 2020-02-15T06:59:37Z +1552 2005-06-16T02:01:37Z 819 518 2005-06-21T00:59:37Z 2 2020-02-15T06:59:37Z +1553 2005-06-16T02:02:44Z 4026 416 2005-06-19T07:50:44Z 1 2020-02-15T06:59:37Z +1554 2005-06-16T02:16:47Z 715 155 2005-06-22T05:15:47Z 1 2020-02-15T06:59:37Z +1555 2005-06-16T02:17:07Z 4168 256 2005-06-22T06:28:07Z 1 2020-02-15T06:59:37Z +1556 2005-06-16T02:19:02Z 533 54 2005-06-17T22:36:02Z 2 2020-02-15T06:59:37Z +1557 2005-06-16T02:28:35Z 2617 439 2005-06-16T22:11:35Z 2 2020-02-15T06:59:37Z +1558 2005-06-16T02:33:53Z 4350 20 2005-06-19T20:50:53Z 2 2020-02-15T06:59:37Z +1559 2005-06-16T02:35:03Z 716 574 2005-06-19T21:22:03Z 1 2020-02-15T06:59:37Z +1560 2005-06-16T02:36:43Z 3418 239 2005-06-24T23:10:43Z 2 2020-02-15T06:59:37Z +1561 2005-06-16T02:41:30Z 2263 431 2005-06-22T05:19:30Z 1 2020-02-15T06:59:37Z +1562 2005-06-16T02:46:27Z 595 395 2005-06-23T00:56:27Z 2 2020-02-15T06:59:37Z +1563 2005-06-16T02:46:28Z 1516 262 2005-06-18T02:37:28Z 1 2020-02-15T06:59:37Z +1564 2005-06-16T02:47:07Z 145 343 2005-06-24T03:12:07Z 1 2020-02-15T06:59:37Z +1565 2005-06-16T03:13:09Z 3833 506 2005-06-16T22:42:09Z 2 2020-02-15T06:59:37Z +1566 2005-06-16T03:13:20Z 3215 174 2005-06-24T01:59:20Z 2 2020-02-15T06:59:37Z +1567 2005-06-16T03:13:30Z 3098 320 2005-06-21T23:56:30Z 1 2020-02-15T06:59:37Z +1568 2005-06-16T03:14:01Z 635 178 2005-06-19T21:17:01Z 2 2020-02-15T06:59:37Z +1569 2005-06-16T03:19:09Z 3927 363 2005-06-18T21:55:09Z 2 2020-02-15T06:59:37Z +1570 2005-06-16T03:21:33Z 3711 82 2005-06-22T22:03:33Z 2 2020-02-15T06:59:37Z +1571 2005-06-16T03:22:00Z 1019 54 2005-06-22T23:27:00Z 1 2020-02-15T06:59:37Z +1572 2005-06-16T03:23:22Z 4179 560 2005-06-20T06:03:22Z 2 2020-02-15T06:59:37Z +1573 2005-06-16T03:31:39Z 4536 371 2005-06-25T04:04:39Z 1 2020-02-15T06:59:37Z +1574 2005-06-16T03:39:56Z 161 305 2005-06-22T05:40:56Z 2 2020-02-15T06:59:37Z +1575 2005-06-16T03:41:38Z 3317 6 2005-06-22T03:01:38Z 2 2020-02-15T06:59:37Z +1576 2005-06-16T03:54:39Z 1014 442 2005-06-24T21:55:39Z 2 2020-02-15T06:59:37Z +1577 2005-06-16T04:03:28Z 367 327 2005-06-24T22:40:28Z 2 2020-02-15T06:59:37Z +1578 2005-06-16T04:08:16Z 3397 365 2005-06-23T07:57:16Z 1 2020-02-15T06:59:37Z +1579 2005-06-16T04:09:08Z 158 35 2005-06-21T05:21:08Z 2 2020-02-15T06:59:37Z +1580 2005-06-16T04:12:25Z 2479 87 2005-06-20T06:53:25Z 1 2020-02-15T06:59:37Z +1581 2005-06-16T04:28:45Z 4004 109 2005-06-18T07:07:45Z 1 2020-02-15T06:59:37Z +1582 2005-06-16T04:31:57Z 163 536 2005-06-22T01:25:57Z 1 2020-02-15T06:59:37Z +1583 2005-06-16T04:44:23Z 270 37 2005-06-18T03:44:23Z 1 2020-02-15T06:59:37Z +1584 2005-06-16T04:50:50Z 3545 434 2005-06-21T22:51:50Z 2 2020-02-15T06:59:37Z +1585 2005-06-16T04:51:13Z 1708 386 2005-06-24T00:23:13Z 2 2020-02-15T06:59:37Z +1586 2005-06-16T04:51:18Z 769 140 2005-06-21T06:54:18Z 2 2020-02-15T06:59:37Z +1587 2005-06-16T04:52:28Z 1781 62 2005-06-23T07:36:28Z 1 2020-02-15T06:59:37Z +1588 2005-06-16T04:53:21Z 4472 322 2005-06-25T07:29:21Z 2 2020-02-15T06:59:37Z +1589 2005-06-16T04:58:03Z 4307 293 2005-06-24T08:36:03Z 1 2020-02-15T06:59:37Z +1590 2005-06-16T05:11:41Z 3685 98 2005-06-23T10:11:41Z 1 2020-02-15T06:59:37Z +1591 2005-06-16T05:12:37Z 1648 83 2005-06-25T06:28:37Z 2 2020-02-15T06:59:37Z +1592 2005-06-16T05:14:37Z 3798 187 2005-06-20T10:52:37Z 2 2020-02-15T06:59:37Z +1593 2005-06-16T05:14:52Z 766 111 2005-06-24T08:00:52Z 2 2020-02-15T06:59:37Z +1594 2005-06-16T05:15:12Z 3858 470 2005-06-25T00:38:12Z 1 2020-02-15T06:59:37Z +1595 2005-06-16T05:23:46Z 1481 244 2005-06-20T00:37:46Z 1 2020-02-15T06:59:37Z +1596 2005-06-16T05:30:58Z 2552 416 2005-06-21T04:18:58Z 2 2020-02-15T06:59:37Z +1597 2005-06-16T05:47:03Z 743 432 2005-06-18T04:21:03Z 1 2020-02-15T06:59:37Z +1598 2005-06-16T06:02:39Z 4171 314 2005-06-23T09:09:39Z 1 2020-02-15T06:59:37Z +1599 2005-06-16T06:03:33Z 1476 215 2005-06-21T07:46:33Z 2 2020-02-15T06:59:37Z +1600 2005-06-16T06:04:12Z 2264 196 2005-06-19T09:39:12Z 2 2020-02-15T06:59:37Z +1601 2005-06-16T06:11:13Z 3115 428 2005-06-21T08:57:13Z 2 2020-02-15T06:59:37Z +1602 2005-06-16T06:12:40Z 1777 441 2005-06-19T03:50:40Z 2 2020-02-15T06:59:37Z +1603 2005-06-16T06:14:03Z 3308 395 2005-06-17T06:04:03Z 2 2020-02-15T06:59:37Z +1604 2005-06-16T06:14:25Z 3226 272 2005-06-17T03:53:25Z 2 2020-02-15T06:59:37Z +1605 2005-06-16T06:17:55Z 593 197 2005-06-25T01:25:55Z 1 2020-02-15T06:59:37Z +1606 2005-06-16T06:18:31Z 4290 253 2005-06-25T09:15:31Z 1 2020-02-15T06:59:37Z +1607 2005-06-16T06:25:35Z 3289 513 2005-06-20T02:50:35Z 2 2020-02-15T06:59:37Z +1608 2005-06-16T06:28:57Z 2581 386 2005-06-24T05:20:57Z 2 2020-02-15T06:59:37Z +1609 2005-06-16T06:34:59Z 2279 174 2005-06-17T09:41:59Z 2 2020-02-15T06:59:37Z +1610 2005-06-16T06:36:33Z 3551 534 2005-06-19T07:12:33Z 1 2020-02-15T06:59:37Z +1611 2005-06-16T06:41:35Z 1739 393 2005-06-25T06:13:35Z 2 2020-02-15T06:59:37Z +1612 2005-06-16T06:52:05Z 3025 355 2005-06-19T01:51:05Z 1 2020-02-15T06:59:37Z +1613 2005-06-16T06:55:10Z 4462 573 2005-06-24T12:08:10Z 1 2020-02-15T06:59:37Z +1614 2005-06-16T06:58:02Z 23 489 2005-06-23T11:24:02Z 1 2020-02-15T06:59:37Z +1615 2005-06-16T07:00:28Z 3894 362 2005-06-25T08:53:28Z 1 2020-02-15T06:59:37Z +1616 2005-06-16T07:04:52Z 2296 204 2005-06-24T04:06:52Z 1 2020-02-15T06:59:37Z +1617 2005-06-16T07:06:06Z 1382 83 2005-06-25T03:35:06Z 1 2020-02-15T06:59:37Z +1618 2005-06-16T07:08:38Z 3741 134 2005-06-25T05:26:38Z 2 2020-02-15T06:59:37Z +1619 2005-06-16T07:14:13Z 4258 232 2005-06-19T05:50:13Z 2 2020-02-15T06:59:37Z +1620 2005-06-16T07:21:30Z 389 561 2005-06-17T09:46:30Z 1 2020-02-15T06:59:37Z +1621 2005-06-16T07:24:12Z 3677 177 2005-06-19T02:35:12Z 1 2020-02-15T06:59:37Z +1622 2005-06-16T07:33:18Z 1774 311 2005-06-21T07:23:18Z 1 2020-02-15T06:59:37Z +1623 2005-06-16T07:48:50Z 4485 378 2005-06-17T03:53:50Z 2 2020-02-15T06:59:37Z +1624 2005-06-16T07:48:57Z 1066 314 2005-06-17T05:52:57Z 1 2020-02-15T06:59:37Z +1625 2005-06-16T07:49:08Z 3367 39 2005-06-24T09:08:08Z 2 2020-02-15T06:59:37Z +1626 2005-06-16T07:49:47Z 694 260 2005-06-22T13:32:47Z 2 2020-02-15T06:59:37Z +1627 2005-06-16T07:51:09Z 4135 468 2005-06-24T02:24:09Z 1 2020-02-15T06:59:37Z +1628 2005-06-16T07:52:55Z 868 427 2005-06-25T11:09:55Z 1 2020-02-15T06:59:37Z +1629 2005-06-16T07:53:47Z 4375 339 2005-06-22T13:03:47Z 1 2020-02-15T06:59:37Z +1630 2005-06-16T07:55:01Z 2413 130 2005-06-19T06:38:01Z 1 2020-02-15T06:59:37Z +1631 2005-06-16T08:01:02Z 2466 5 2005-06-19T09:04:02Z 1 2020-02-15T06:59:37Z +1632 2005-06-16T08:03:42Z 1518 319 2005-06-17T03:40:42Z 1 2020-02-15T06:59:37Z +1633 2005-06-16T08:08:40Z 280 4 2005-06-17T11:12:40Z 1 2020-02-15T06:59:37Z +1634 2005-06-16T08:16:05Z 3990 121 2005-06-17T04:49:05Z 1 2020-02-15T06:59:37Z +1635 2005-06-16T08:26:56Z 1187 566 2005-06-25T06:17:56Z 2 2020-02-15T06:59:37Z +1636 2005-06-16T08:28:54Z 2052 574 2005-06-24T09:23:54Z 1 2020-02-15T06:59:37Z +1637 2005-06-16T08:29:58Z 906 212 2005-06-23T04:55:58Z 2 2020-02-15T06:59:37Z +1638 2005-06-16T08:32:36Z 1905 181 2005-06-18T07:11:36Z 2 2020-02-15T06:59:37Z +1639 2005-06-16T08:33:39Z 176 450 2005-06-25T07:51:39Z 1 2020-02-15T06:59:37Z +1640 2005-06-16T08:35:39Z 443 86 2005-06-17T05:37:39Z 2 2020-02-15T06:59:37Z +1641 2005-06-16T08:46:26Z 2925 259 2005-06-24T14:39:26Z 2 2020-02-15T06:59:37Z +1642 2005-06-16T08:54:15Z 3875 287 2005-06-18T12:36:15Z 1 2020-02-15T06:59:37Z +1643 2005-06-16T08:55:35Z 1352 484 2005-06-21T05:36:35Z 2 2020-02-15T06:59:37Z +1644 2005-06-16T08:58:18Z 749 596 2005-06-21T06:47:18Z 1 2020-02-15T06:59:37Z +1645 2005-06-16T09:10:06Z 4434 234 2005-06-23T04:36:06Z 2 2020-02-15T06:59:37Z +1646 2005-06-16T09:12:53Z 4037 131 2005-06-24T08:03:53Z 2 2020-02-15T06:59:37Z +1647 2005-06-16T09:14:58Z 1936 454 2005-06-17T10:46:58Z 1 2020-02-15T06:59:37Z +1648 2005-06-16T09:17:07Z 457 427 2005-06-24T06:31:07Z 2 2020-02-15T06:59:37Z +1649 2005-06-16T09:20:33Z 390 352 2005-06-18T13:42:33Z 1 2020-02-15T06:59:37Z +1650 2005-06-16T09:23:20Z 4125 299 2005-06-23T11:25:20Z 1 2020-02-15T06:59:37Z +1651 2005-06-16T09:24:38Z 4444 524 2005-06-17T09:50:38Z 2 2020-02-15T06:59:37Z +1652 2005-06-16T09:31:37Z 3416 533 2005-06-19T14:02:37Z 2 2020-02-15T06:59:37Z +1653 2005-06-16T09:34:45Z 2294 517 2005-06-18T09:13:45Z 1 2020-02-15T06:59:37Z +1654 2005-06-16T09:42:48Z 1039 348 2005-06-20T14:28:48Z 2 2020-02-15T06:59:37Z +1655 2005-06-16T09:51:39Z 3693 488 2005-06-23T14:53:39Z 2 2020-02-15T06:59:37Z +1656 2005-06-16T10:05:40Z 2253 31 2005-06-22T06:26:40Z 1 2020-02-15T06:59:37Z +1657 2005-06-16T10:06:49Z 953 209 2005-06-22T10:34:49Z 2 2020-02-15T06:59:37Z +1658 2005-06-16T10:07:10Z 272 568 2005-06-21T09:23:10Z 2 2020-02-15T06:59:37Z +1659 2005-06-16T10:11:46Z 1182 296 2005-06-20T13:51:46Z 1 2020-02-15T06:59:37Z +1660 2005-06-16T10:12:55Z 2374 238 2005-06-18T05:56:55Z 2 2020-02-15T06:59:37Z +1661 2005-06-16T10:12:57Z 2403 508 2005-06-24T09:23:57Z 2 2020-02-15T06:59:37Z +1662 2005-06-16T10:13:35Z 3552 378 2005-06-23T13:54:35Z 1 2020-02-15T06:59:37Z +1663 2005-06-16T10:14:15Z 1558 186 2005-06-23T08:34:15Z 2 2020-02-15T06:59:37Z +1664 2005-06-16T10:15:20Z 2464 216 2005-06-18T12:11:20Z 2 2020-02-15T06:59:37Z +1665 2005-06-16T10:16:02Z 2613 490 2005-06-23T09:32:02Z 1 2020-02-15T06:59:37Z +1666 2005-06-16T10:17:19Z 4019 557 2005-06-21T05:50:19Z 1 2020-02-15T06:59:37Z +1667 2005-06-16T10:18:59Z 2362 333 2005-06-22T14:45:59Z 2 2020-02-15T06:59:37Z +1668 2005-06-16T10:19:52Z 2483 569 2005-06-23T12:22:52Z 2 2020-02-15T06:59:37Z +1669 2005-06-16T10:20:20Z 360 73 2005-06-18T04:26:20Z 1 2020-02-15T06:59:37Z +1670 2005-06-16T10:26:33Z 2066 328 2005-06-19T07:15:33Z 1 2020-02-15T06:59:37Z +1671 2005-06-16T10:30:22Z 3805 135 2005-06-22T11:08:22Z 2 2020-02-15T06:59:37Z +1672 2005-06-16T10:37:34Z 4206 216 2005-06-23T05:30:34Z 1 2020-02-15T06:59:37Z +1673 2005-06-16T10:40:17Z 907 534 2005-06-18T16:13:17Z 1 2020-02-15T06:59:37Z +1674 2005-06-16T10:57:00Z 3606 234 2005-06-18T07:31:00Z 2 2020-02-15T06:59:37Z +1675 2005-06-16T11:04:47Z 3048 371 2005-06-24T06:56:47Z 2 2020-02-15T06:59:37Z +1676 2005-06-16T11:06:09Z 931 171 2005-06-21T05:17:09Z 1 2020-02-15T06:59:37Z +1677 2005-06-16T11:07:11Z 240 191 2005-06-23T10:50:11Z 1 2020-02-15T06:59:37Z +1678 2005-06-16T11:08:28Z 1856 352 2005-06-19T15:44:28Z 1 2020-02-15T06:59:37Z +1679 2005-06-16T11:11:01Z 3959 227 2005-06-23T08:11:01Z 1 2020-02-15T06:59:37Z +1680 2005-06-16T11:17:22Z 4441 469 2005-06-25T15:55:22Z 2 2020-02-15T06:59:37Z +1681 2005-06-16T11:38:17Z 530 255 2005-06-19T13:05:17Z 1 2020-02-15T06:59:37Z +1682 2005-06-16T11:54:25Z 2165 476 2005-06-22T11:09:25Z 2 2020-02-15T06:59:37Z +1683 2005-06-16T11:54:55Z 2361 494 2005-06-18T08:51:55Z 2 2020-02-15T06:59:37Z +1684 2005-06-16T11:57:34Z 806 485 2005-06-19T09:12:34Z 1 2020-02-15T06:59:37Z +1685 2005-06-16T12:06:57Z 2754 85 2005-06-21T16:53:57Z 2 2020-02-15T06:59:37Z +1686 2005-06-16T12:08:20Z 3883 529 2005-06-20T10:59:20Z 1 2020-02-15T06:59:37Z +1687 2005-06-16T12:09:20Z 3686 140 2005-06-18T06:18:20Z 2 2020-02-15T06:59:37Z +1688 2005-06-16T12:11:20Z 383 49 2005-06-18T08:39:20Z 2 2020-02-15T06:59:37Z +1689 2005-06-16T12:18:41Z 4036 48 2005-06-24T13:33:41Z 2 2020-02-15T06:59:37Z +1690 2005-06-16T12:24:18Z 1099 286 2005-06-25T15:00:18Z 1 2020-02-15T06:59:37Z +1691 2005-06-16T12:24:28Z 4438 492 2005-06-24T08:24:28Z 1 2020-02-15T06:59:37Z +1692 2005-06-16T12:30:19Z 3544 514 2005-06-17T17:31:19Z 2 2020-02-15T06:59:37Z +1693 2005-06-16T12:39:51Z 2386 421 2005-06-19T16:19:51Z 2 2020-02-15T06:59:37Z +1694 2005-06-16T12:40:23Z 147 532 2005-06-20T09:18:23Z 2 2020-02-15T06:59:37Z +1695 2005-06-16T12:40:28Z 4436 159 2005-06-22T13:41:28Z 1 2020-02-15T06:59:37Z +1696 2005-06-16T12:50:01Z 3928 502 2005-06-24T12:08:01Z 2 2020-02-15T06:59:37Z +1697 2005-06-16T12:55:20Z 1801 340 2005-06-23T17:41:20Z 2 2020-02-15T06:59:37Z +1698 2005-06-16T13:04:42Z 1474 407 2005-06-21T15:54:42Z 1 2020-02-15T06:59:37Z +1699 2005-06-16T13:05:09Z 4507 27 2005-06-17T09:53:09Z 2 2020-02-15T06:59:37Z +1700 2005-06-16T13:18:23Z 4251 456 2005-06-21T16:46:23Z 2 2020-02-15T06:59:37Z +1701 2005-06-16T13:18:48Z 3000 315 2005-06-22T15:00:48Z 1 2020-02-15T06:59:37Z +1702 2005-06-16T13:21:05Z 1822 242 2005-06-19T10:13:05Z 2 2020-02-15T06:59:37Z +1703 2005-06-16T13:28:44Z 2346 589 2005-06-17T11:03:44Z 1 2020-02-15T06:59:37Z +1704 2005-06-16T13:45:56Z 4425 488 2005-06-24T18:12:56Z 1 2020-02-15T06:59:37Z +1705 2005-06-16T13:59:42Z 123 564 2005-06-18T19:54:42Z 2 2020-02-15T06:59:37Z +1706 2005-06-16T14:01:02Z 2935 26 2005-06-25T19:29:02Z 1 2020-02-15T06:59:37Z +1707 2005-06-16T14:01:27Z 185 4 2005-06-18T09:35:27Z 1 2020-02-15T06:59:37Z +1708 2005-06-16T14:08:44Z 2259 478 2005-06-19T08:35:44Z 1 2020-02-15T06:59:37Z +1709 2005-06-16T14:10:15Z 3501 426 2005-06-24T16:38:15Z 2 2020-02-15T06:59:37Z +1710 2005-06-16T14:11:24Z 144 77 2005-06-22T15:26:24Z 1 2020-02-15T06:59:37Z +1711 2005-06-16T14:11:52Z 273 347 2005-06-25T08:49:52Z 1 2020-02-15T06:59:37Z +1712 2005-06-16T14:25:09Z 1363 535 2005-06-17T17:55:09Z 1 2020-02-15T06:59:37Z +1713 2005-06-16T14:28:33Z 2580 164 2005-06-18T09:02:33Z 1 2020-02-15T06:59:37Z +1714 2005-06-16T14:29:59Z 535 477 2005-06-24T17:27:59Z 2 2020-02-15T06:59:37Z +1715 2005-06-16T14:37:12Z 1594 203 2005-06-20T19:36:12Z 1 2020-02-15T06:59:37Z +1716 2005-06-16T14:39:31Z 20 24 2005-06-19T15:37:31Z 1 2020-02-15T06:59:37Z +1717 2005-06-16T14:47:16Z 3007 277 2005-06-19T10:11:16Z 2 2020-02-15T06:59:37Z +1718 2005-06-16T14:52:02Z 288 516 2005-06-25T10:53:02Z 2 2020-02-15T06:59:37Z +1719 2005-06-16T14:55:53Z 2699 582 2005-06-18T14:12:53Z 1 2020-02-15T06:59:37Z +1720 2005-06-16T15:00:14Z 3500 543 2005-06-21T13:57:14Z 2 2020-02-15T06:59:37Z +1721 2005-06-16T15:01:36Z 3521 485 2005-06-23T10:48:36Z 1 2020-02-15T06:59:37Z +1722 2005-06-16T15:12:52Z 2142 364 2005-06-19T13:01:52Z 2 2020-02-15T06:59:37Z +1723 2005-06-16T15:14:18Z 2417 259 2005-06-23T15:45:18Z 2 2020-02-15T06:59:37Z +1724 2005-06-16T15:15:43Z 61 146 2005-06-23T10:14:43Z 2 2020-02-15T06:59:37Z +1725 2005-06-16T15:18:57Z 726 1 2005-06-17T21:05:57Z 1 2020-02-15T06:59:37Z +1726 2005-06-16T15:19:10Z 116 3 2005-06-25T11:39:10Z 2 2020-02-15T06:59:37Z +1727 2005-06-16T15:21:47Z 2951 457 2005-06-17T14:12:47Z 1 2020-02-15T06:59:37Z +1728 2005-06-16T15:29:29Z 1366 59 2005-06-23T12:47:29Z 1 2020-02-15T06:59:37Z +1729 2005-06-16T15:29:47Z 3364 523 2005-06-25T20:55:47Z 2 2020-02-15T06:59:37Z +1730 2005-06-16T15:30:01Z 1372 390 2005-06-19T12:56:01Z 1 2020-02-15T06:59:37Z +1731 2005-06-16T15:32:12Z 3698 344 2005-06-19T18:58:12Z 2 2020-02-15T06:59:37Z +1732 2005-06-16T15:34:41Z 2287 129 2005-06-18T13:05:41Z 1 2020-02-15T06:59:37Z +1733 2005-06-16T15:37:07Z 542 480 2005-06-23T15:53:07Z 2 2020-02-15T06:59:37Z +1734 2005-06-16T15:49:30Z 1113 94 2005-06-22T13:52:30Z 2 2020-02-15T06:59:37Z +1735 2005-06-16T15:51:52Z 97 4 2005-06-20T13:27:52Z 1 2020-02-15T06:59:37Z +1736 2005-06-16T15:52:32Z 3771 139 2005-06-21T14:39:32Z 2 2020-02-15T06:59:37Z +1737 2005-06-16T15:59:44Z 4029 467 2005-06-23T12:22:44Z 1 2020-02-15T06:59:37Z +1738 2005-06-16T16:07:27Z 3260 177 2005-06-20T15:22:27Z 1 2020-02-15T06:59:37Z +1739 2005-06-16T16:09:38Z 2557 450 2005-06-22T18:04:38Z 2 2020-02-15T06:59:37Z +1740 2005-06-16T16:29:00Z 2282 324 2005-06-20T14:07:00Z 2 2020-02-15T06:59:37Z +1741 2005-06-16T16:31:37Z 3722 176 2005-06-25T21:38:37Z 1 2020-02-15T06:59:37Z +1742 2005-06-16T16:37:48Z 2772 576 2005-06-17T19:47:48Z 2 2020-02-15T06:59:37Z +1743 2005-06-16T16:38:10Z 2777 258 2005-06-17T13:13:10Z 1 2020-02-15T06:59:37Z +1744 2005-06-16T16:39:58Z 3075 230 2005-06-18T19:50:58Z 2 2020-02-15T06:59:37Z +1745 2005-06-16T16:41:16Z 2812 178 2005-06-23T21:02:16Z 2 2020-02-15T06:59:37Z +1746 2005-06-16T16:41:19Z 4272 385 2005-06-19T11:28:19Z 2 2020-02-15T06:59:37Z +1747 2005-06-16T16:53:33Z 1661 273 2005-06-25T21:48:33Z 2 2020-02-15T06:59:37Z +1748 2005-06-16T16:54:03Z 2434 473 2005-06-18T20:11:03Z 1 2020-02-15T06:59:37Z +1749 2005-06-16T16:56:00Z 1554 283 2005-06-21T21:02:00Z 2 2020-02-15T06:59:37Z +1750 2005-06-16T16:57:36Z 1103 321 2005-06-25T21:51:36Z 1 2020-02-15T06:59:37Z +1751 2005-06-16T17:00:14Z 138 123 2005-06-17T12:12:14Z 2 2020-02-15T06:59:37Z +1752 2005-06-16T17:02:55Z 3529 12 2005-06-23T19:09:55Z 2 2020-02-15T06:59:37Z +1753 2005-06-16T17:08:17Z 3817 249 2005-06-21T21:47:17Z 2 2020-02-15T06:59:37Z +1754 2005-06-16T17:13:23Z 4106 25 2005-06-22T20:46:23Z 1 2020-02-15T06:59:37Z +1755 2005-06-16T17:18:44Z 1721 117 2005-06-17T16:54:44Z 1 2020-02-15T06:59:37Z +1756 2005-06-16T17:22:33Z 1401 571 2005-06-21T16:52:33Z 1 2020-02-15T06:59:37Z +1757 2005-06-16T17:32:24Z 4491 510 2005-06-18T13:12:24Z 1 2020-02-15T06:59:37Z +1758 2005-06-16T17:39:39Z 2654 474 2005-06-25T13:06:39Z 1 2020-02-15T06:59:37Z +1759 2005-06-16T17:46:37Z 1402 430 2005-06-24T19:40:37Z 2 2020-02-15T06:59:37Z +1760 2005-06-16T17:48:37Z 3929 261 2005-06-18T16:01:37Z 2 2020-02-15T06:59:37Z +1761 2005-06-16T17:49:57Z 1570 521 2005-06-17T21:03:57Z 2 2020-02-15T06:59:37Z +1762 2005-06-16T17:50:19Z 3050 116 2005-06-19T21:35:19Z 2 2020-02-15T06:59:37Z +1763 2005-06-16T17:51:01Z 1941 389 2005-06-20T17:27:01Z 1 2020-02-15T06:59:37Z +1764 2005-06-16T17:51:54Z 705 392 2005-06-21T20:36:54Z 2 2020-02-15T06:59:37Z +1765 2005-06-16T17:56:10Z 822 273 2005-06-19T23:40:10Z 2 2020-02-15T06:59:37Z +1766 2005-06-16T17:59:37Z 2041 118 2005-06-18T16:32:37Z 2 2020-02-15T06:59:37Z +1767 2005-06-16T18:01:36Z 1162 205 2005-06-18T12:39:36Z 2 2020-02-15T06:59:37Z +1768 2005-06-16T18:02:06Z 2131 131 2005-06-23T17:19:06Z 2 2020-02-15T06:59:37Z +1769 2005-06-16T18:07:48Z 1229 397 2005-06-22T12:39:48Z 1 2020-02-15T06:59:37Z +1770 2005-06-16T18:07:55Z 1681 359 2005-06-23T23:49:55Z 2 2020-02-15T06:59:37Z +1771 2005-06-16T18:12:17Z 1769 416 2005-06-18T16:11:17Z 1 2020-02-15T06:59:37Z +1772 2005-06-16T18:12:54Z 1269 525 2005-06-24T19:55:54Z 1 2020-02-15T06:59:37Z +1773 2005-06-16T18:13:43Z 4396 462 2005-06-24T17:43:43Z 2 2020-02-15T06:59:37Z +1774 2005-06-16T18:27:52Z 3058 442 2005-06-21T13:35:52Z 2 2020-02-15T06:59:37Z +1775 2005-06-16T18:28:19Z 1922 123 2005-06-25T13:09:19Z 2 2020-02-15T06:59:37Z +1776 2005-06-16T18:46:58Z 1404 472 2005-06-24T16:01:58Z 1 2020-02-15T06:59:37Z +1777 2005-06-16T18:52:12Z 3325 49 2005-06-25T13:55:12Z 1 2020-02-15T06:59:37Z +1778 2005-06-16T18:54:48Z 2512 341 2005-06-22T16:08:48Z 2 2020-02-15T06:59:37Z +1779 2005-06-16T18:55:11Z 1044 438 2005-06-17T20:11:11Z 1 2020-02-15T06:59:37Z +1780 2005-06-16T19:11:45Z 146 352 2005-06-19T15:34:45Z 2 2020-02-15T06:59:37Z +1781 2005-06-16T19:20:24Z 2841 429 2005-06-25T17:02:24Z 2 2020-02-15T06:59:37Z +1782 2005-06-16T19:21:12Z 1820 498 2005-06-22T16:03:12Z 2 2020-02-15T06:59:37Z +1783 2005-06-16T19:23:23Z 50 18 2005-06-18T00:57:23Z 1 2020-02-15T06:59:37Z +1784 2005-06-16T19:25:32Z 3792 134 2005-06-20T00:00:32Z 2 2020-02-15T06:59:37Z +1785 2005-06-16T19:27:12Z 3413 50 2005-06-24T19:25:12Z 1 2020-02-15T06:59:37Z +1786 2005-06-16T19:30:54Z 263 323 2005-06-19T14:24:54Z 1 2020-02-15T06:59:37Z +1787 2005-06-16T19:30:59Z 3823 546 2005-06-21T18:25:59Z 2 2020-02-15T06:59:37Z +1788 2005-06-16T19:47:18Z 3794 357 2005-06-22T23:10:18Z 1 2020-02-15T06:59:37Z +1789 2005-06-16T19:49:18Z 4264 105 2005-06-23T17:07:18Z 2 2020-02-15T06:59:37Z +1790 2005-06-16T19:58:40Z 1070 158 2005-06-17T19:31:40Z 2 2020-02-15T06:59:37Z +1791 2005-06-16T20:04:28Z 301 76 2005-06-23T22:30:28Z 1 2020-02-15T06:59:37Z +1792 2005-06-16T20:04:50Z 3800 351 2005-06-26T00:57:50Z 1 2020-02-15T06:59:37Z +1793 2005-06-16T20:07:27Z 4356 230 2005-06-19T20:55:27Z 1 2020-02-15T06:59:37Z +1794 2005-06-16T20:08:37Z 497 452 2005-06-22T01:54:37Z 1 2020-02-15T06:59:37Z +1795 2005-06-16T20:09:01Z 536 56 2005-06-24T17:50:01Z 2 2020-02-15T06:59:37Z +1796 2005-06-16T20:10:43Z 3229 283 2005-06-20T19:12:43Z 1 2020-02-15T06:59:37Z +1797 2005-06-16T20:13:03Z 3435 275 2005-06-22T22:56:03Z 1 2020-02-15T06:59:37Z +1798 2005-06-16T20:16:15Z 1654 429 2005-06-20T22:23:15Z 2 2020-02-15T06:59:37Z +1799 2005-06-16T20:17:20Z 2847 505 2005-06-20T23:55:20Z 1 2020-02-15T06:59:37Z +1800 2005-06-16T20:18:46Z 2058 149 2005-06-20T17:12:46Z 1 2020-02-15T06:59:37Z +1801 2005-06-16T20:21:53Z 1015 10 2005-06-18T23:18:53Z 1 2020-02-15T06:59:37Z +1802 2005-06-16T20:23:30Z 4174 455 2005-06-21T20:02:30Z 1 2020-02-15T06:59:37Z +1803 2005-06-16T20:32:47Z 3784 127 2005-06-21T02:03:47Z 1 2020-02-15T06:59:37Z +1804 2005-06-16T20:33:15Z 1152 570 2005-06-18T02:31:15Z 2 2020-02-15T06:59:37Z +1805 2005-06-16T20:36:00Z 3962 208 2005-06-17T16:27:00Z 1 2020-02-15T06:59:37Z +1806 2005-06-16T20:41:57Z 2053 45 2005-06-18T19:25:57Z 2 2020-02-15T06:59:37Z +1807 2005-06-16T20:58:59Z 1174 338 2005-06-20T21:31:59Z 2 2020-02-15T06:59:37Z +1808 2005-06-16T20:59:35Z 2424 466 2005-06-24T15:31:35Z 1 2020-02-15T06:59:37Z +1809 2005-06-16T21:00:20Z 1071 517 2005-06-25T20:25:20Z 1 2020-02-15T06:59:37Z +1810 2005-06-16T21:06:00Z 2368 7 2005-06-21T21:24:00Z 1 2020-02-15T06:59:37Z +1811 2005-06-16T21:06:20Z 3700 235 2005-06-21T21:59:20Z 2 2020-02-15T06:59:37Z +1812 2005-06-16T21:08:46Z 751 37 2005-06-21T15:44:46Z 2 2020-02-15T06:59:37Z +1813 2005-06-16T21:11:00Z 1236 259 2005-06-24T15:30:00Z 1 2020-02-15T06:59:37Z +1814 2005-06-16T21:15:22Z 39 144 2005-06-23T17:00:22Z 1 2020-02-15T06:59:37Z +1815 2005-06-16T21:16:07Z 1551 84 2005-06-17T16:37:07Z 2 2020-02-15T06:59:37Z +1816 2005-06-16T21:20:41Z 2861 594 2005-06-18T02:21:41Z 1 2020-02-15T06:59:37Z +1817 2005-06-16T21:20:52Z 1354 574 2005-06-19T16:24:52Z 2 2020-02-15T06:59:37Z +1818 2005-06-16T21:30:34Z 1218 63 2005-06-20T03:27:34Z 2 2020-02-15T06:59:37Z +1819 2005-06-16T21:32:50Z 1689 386 2005-06-26T01:11:50Z 1 2020-02-15T06:59:37Z +1820 2005-06-16T21:34:50Z 3672 120 2005-06-20T16:50:50Z 1 2020-02-15T06:59:37Z +1821 2005-06-16T21:42:49Z 3207 468 2005-06-20T16:25:49Z 2 2020-02-15T06:59:37Z +1822 2005-06-16T21:43:45Z 674 86 2005-06-17T21:37:45Z 1 2020-02-15T06:59:37Z +1823 2005-06-16T21:48:16Z 3871 448 2005-06-22T03:09:16Z 1 2020-02-15T06:59:37Z +1824 2005-06-16T21:51:04Z 2269 575 2005-06-18T18:12:04Z 1 2020-02-15T06:59:37Z +1825 2005-06-16T21:53:05Z 2908 55 2005-06-20T17:22:05Z 2 2020-02-15T06:59:37Z +1826 2005-06-16T21:53:52Z 421 578 2005-06-25T18:46:52Z 2 2020-02-15T06:59:37Z +1827 2005-06-16T21:54:40Z 3804 423 2005-06-19T21:28:40Z 2 2020-02-15T06:59:37Z +1828 2005-06-16T22:04:34Z 316 68 2005-06-20T21:07:34Z 2 2020-02-15T06:59:37Z +1829 2005-06-16T22:14:21Z 617 293 2005-06-21T16:51:21Z 1 2020-02-15T06:59:37Z +1830 2005-06-16T22:18:43Z 4010 499 2005-06-23T21:14:43Z 2 2020-02-15T06:59:37Z +1831 2005-06-16T22:22:17Z 2610 383 2005-06-25T23:23:17Z 2 2020-02-15T06:59:37Z +1832 2005-06-16T22:35:20Z 500 220 2005-06-19T03:09:20Z 1 2020-02-15T06:59:37Z +1833 2005-06-16T22:45:03Z 1337 121 2005-06-20T22:02:03Z 2 2020-02-15T06:59:37Z +1834 2005-06-16T22:49:08Z 4018 189 2005-06-22T21:08:08Z 1 2020-02-15T06:59:37Z +1835 2005-06-16T23:05:36Z 1482 112 2005-06-19T04:46:36Z 1 2020-02-15T06:59:37Z +1836 2005-06-16T23:13:05Z 2753 176 2005-06-24T01:40:05Z 2 2020-02-15T06:59:37Z +1837 2005-06-16T23:16:15Z 1259 309 2005-06-21T21:54:15Z 1 2020-02-15T06:59:37Z +1838 2005-06-16T23:20:16Z 513 31 2005-06-20T02:34:16Z 1 2020-02-15T06:59:37Z +1839 2005-06-16T23:22:22Z 2750 223 2005-06-23T00:33:22Z 1 2020-02-15T06:59:37Z +1840 2005-06-16T23:39:34Z 340 404 2005-06-21T23:36:34Z 1 2020-02-15T06:59:37Z +1841 2005-06-16T23:44:13Z 2363 6 2005-06-22T04:09:13Z 1 2020-02-15T06:59:37Z +1842 2005-06-16T23:45:59Z 1472 426 2005-06-26T05:31:59Z 1 2020-02-15T06:59:37Z +1843 2005-06-16T23:53:42Z 2714 132 2005-06-22T18:33:42Z 2 2020-02-15T06:59:37Z +1844 2005-06-16T23:53:53Z 2307 454 2005-06-22T02:19:53Z 2 2020-02-15T06:59:37Z +1845 2005-06-16T23:56:11Z 3395 215 2005-06-19T01:41:11Z 2 2020-02-15T06:59:37Z +1846 2005-06-17T00:02:44Z 1725 422 2005-06-18T23:47:44Z 2 2020-02-15T06:59:37Z +1847 2005-06-17T00:05:22Z 1189 363 2005-06-20T21:09:22Z 1 2020-02-15T06:59:37Z +1848 2005-06-17T00:07:07Z 3797 526 2005-06-21T21:41:07Z 2 2020-02-15T06:59:37Z +1849 2005-06-17T00:13:19Z 2507 341 2005-06-23T18:37:19Z 2 2020-02-15T06:59:37Z +1850 2005-06-17T00:31:35Z 761 517 2005-06-25T05:19:35Z 1 2020-02-15T06:59:37Z +1851 2005-06-17T00:32:26Z 1121 451 2005-06-22T19:54:26Z 2 2020-02-15T06:59:37Z +1852 2005-06-17T00:38:20Z 4122 271 2005-06-22T20:04:20Z 2 2020-02-15T06:59:37Z +1853 2005-06-17T00:39:54Z 2949 301 2005-06-19T00:22:54Z 2 2020-02-15T06:59:37Z +1854 2005-06-17T00:43:57Z 119 37 2005-06-23T05:49:57Z 1 2020-02-15T06:59:37Z +1855 2005-06-17T00:54:58Z 4457 492 2005-06-20T19:29:58Z 1 2020-02-15T06:59:37Z +1856 2005-06-17T01:02:00Z 3034 161 2005-06-19T21:29:00Z 2 2020-02-15T06:59:37Z +1857 2005-06-17T01:12:58Z 4257 427 2005-06-21T04:49:58Z 1 2020-02-15T06:59:37Z +1858 2005-06-17T01:13:11Z 3200 99 2005-06-18T21:33:11Z 2 2020-02-15T06:59:37Z +1859 2005-06-17T01:13:38Z 3405 533 2005-06-18T03:13:38Z 1 2020-02-15T06:59:37Z +1860 2005-06-17T01:17:12Z 1853 293 2005-06-21T22:35:12Z 1 2020-02-15T06:59:37Z +1861 2005-06-17T01:17:31Z 135 454 2005-06-25T02:11:31Z 1 2020-02-15T06:59:37Z +1862 2005-06-17T01:29:30Z 3299 553 2005-06-25T20:43:30Z 1 2020-02-15T06:59:37Z +1863 2005-06-17T01:31:46Z 4466 550 2005-06-26T02:09:46Z 2 2020-02-15T06:59:37Z +1864 2005-06-17T01:39:47Z 1815 130 2005-06-24T19:39:47Z 2 2020-02-15T06:59:37Z +1865 2005-06-17T01:49:36Z 2657 526 2005-06-23T21:13:36Z 1 2020-02-15T06:59:37Z +1866 2005-06-17T01:53:19Z 2579 575 2005-06-19T06:14:19Z 2 2020-02-15T06:59:37Z +1867 2005-06-17T02:01:37Z 3537 415 2005-06-25T04:52:37Z 2 2020-02-15T06:59:37Z +1868 2005-06-17T02:03:22Z 2412 380 2005-06-25T04:38:22Z 1 2020-02-15T06:59:37Z +1869 2005-06-17T02:08:00Z 871 351 2005-06-19T21:43:00Z 1 2020-02-15T06:59:37Z +1870 2005-06-17T02:24:36Z 895 191 2005-06-17T23:04:36Z 2 2020-02-15T06:59:37Z +1871 2005-06-17T02:25:12Z 481 204 2005-06-23T03:16:12Z 2 2020-02-15T06:59:37Z +1872 2005-06-17T02:27:03Z 3596 206 2005-06-20T22:41:03Z 2 2020-02-15T06:59:37Z +1873 2005-06-17T02:38:28Z 2933 71 2005-06-23T04:39:28Z 1 2020-02-15T06:59:37Z +1874 2005-06-17T02:39:20Z 3884 30 2005-06-24T04:41:20Z 2 2020-02-15T06:59:37Z +1875 2005-06-17T02:45:10Z 1652 528 2005-06-22T22:54:10Z 2 2020-02-15T06:59:37Z +1876 2005-06-17T02:50:51Z 384 459 2005-06-18T07:21:51Z 1 2020-02-15T06:59:37Z +1877 2005-06-17T02:54:16Z 3404 261 2005-06-25T21:51:16Z 2 2020-02-15T06:59:37Z +1878 2005-06-17T02:55:32Z 3319 381 2005-06-21T03:44:32Z 1 2020-02-15T06:59:37Z +1879 2005-06-17T02:57:34Z 3983 343 2005-06-19T00:00:34Z 1 2020-02-15T06:59:37Z +1880 2005-06-17T03:08:59Z 1133 289 2005-06-19T07:16:59Z 1 2020-02-15T06:59:37Z +1881 2005-06-17T03:09:56Z 159 134 2005-06-18T01:49:56Z 1 2020-02-15T06:59:37Z +1882 2005-06-17T03:17:21Z 1400 47 2005-06-19T22:23:21Z 2 2020-02-15T06:59:37Z +1883 2005-06-17T03:18:51Z 3504 550 2005-06-18T05:46:51Z 1 2020-02-15T06:59:37Z +1884 2005-06-17T03:19:20Z 4567 305 2005-06-21T00:19:20Z 1 2020-02-15T06:59:37Z +1885 2005-06-17T03:35:59Z 740 588 2005-06-21T05:57:59Z 2 2020-02-15T06:59:37Z +1886 2005-06-17T03:36:02Z 2367 505 2005-06-19T08:12:02Z 2 2020-02-15T06:59:37Z +1887 2005-06-17T03:53:18Z 3591 32 2005-06-25T07:37:18Z 2 2020-02-15T06:59:37Z +1888 2005-06-17T03:58:36Z 2872 405 2005-06-22T09:28:36Z 1 2020-02-15T06:59:37Z +1889 2005-06-17T04:05:12Z 3909 572 2005-06-26T04:13:12Z 1 2020-02-15T06:59:37Z +1890 2005-06-17T04:06:13Z 1764 447 2005-06-22T07:46:13Z 2 2020-02-15T06:59:37Z +1891 2005-06-17T04:16:44Z 3576 109 2005-06-24T07:20:44Z 1 2020-02-15T06:59:37Z +1892 2005-06-17T04:17:33Z 139 319 2005-06-20T00:06:33Z 1 2020-02-15T06:59:37Z +1893 2005-06-17T04:18:37Z 3346 390 2005-06-23T23:35:37Z 2 2020-02-15T06:59:37Z +1894 2005-06-17T04:18:48Z 3707 204 2005-06-26T00:07:48Z 1 2020-02-15T06:59:38Z +1895 2005-06-17T04:25:12Z 680 30 2005-06-26T08:44:12Z 1 2020-02-15T06:59:38Z +1896 2005-06-17T04:25:46Z 2077 270 2005-06-26T09:37:46Z 1 2020-02-15T06:59:38Z +1897 2005-06-17T04:26:23Z 4142 422 2005-06-25T09:32:23Z 2 2020-02-15T06:59:38Z +1898 2005-06-17T04:28:11Z 2873 143 2005-06-25T07:04:11Z 2 2020-02-15T06:59:38Z +1899 2005-06-17T04:29:15Z 858 200 2005-06-26T08:39:15Z 1 2020-02-15T06:59:38Z +1900 2005-06-17T04:29:58Z 1425 34 2005-06-21T05:58:58Z 1 2020-02-15T06:59:38Z +1901 2005-06-17T04:35:19Z 2469 292 2005-06-25T06:09:19Z 2 2020-02-15T06:59:38Z +1902 2005-06-17T04:35:52Z 2905 479 2005-06-20T06:52:52Z 2 2020-02-15T06:59:38Z +1903 2005-06-17T04:37:20Z 1939 588 2005-06-26T09:05:20Z 2 2020-02-15T06:59:38Z +1904 2005-06-17T04:45:41Z 2472 87 2005-06-17T23:56:41Z 2 2020-02-15T06:59:38Z +1905 2005-06-17T04:51:43Z 1043 39 2005-06-24T09:35:43Z 1 2020-02-15T06:59:38Z +1906 2005-06-17T04:53:35Z 1049 455 2005-06-21T01:16:35Z 2 2020-02-15T06:59:38Z +1907 2005-06-17T05:08:27Z 988 66 2005-06-23T09:13:27Z 1 2020-02-15T06:59:38Z +1908 2005-06-17T05:10:36Z 399 358 2005-06-19T03:52:36Z 1 2020-02-15T06:59:38Z +1909 2005-06-17T05:11:04Z 2599 269 2005-06-19T04:33:04Z 2 2020-02-15T06:59:38Z +1910 2005-06-17T05:11:27Z 3903 199 2005-06-23T23:16:27Z 1 2020-02-15T06:59:38Z +1911 2005-06-17T05:15:15Z 910 3 2005-06-24T11:05:15Z 2 2020-02-15T06:59:38Z +1912 2005-06-17T05:18:32Z 4136 538 2005-06-20T10:01:32Z 2 2020-02-15T06:59:38Z +1913 2005-06-17T05:19:47Z 1825 116 2005-06-21T03:39:47Z 1 2020-02-15T06:59:38Z +1914 2005-06-17T05:25:54Z 3406 450 2005-06-24T04:25:54Z 2 2020-02-15T06:59:38Z +1915 2005-06-17T05:28:28Z 2620 393 2005-06-21T07:12:28Z 2 2020-02-15T06:59:38Z +1916 2005-06-17T05:29:59Z 4428 429 2005-06-26T05:35:59Z 2 2020-02-15T06:59:38Z +1917 2005-06-17T05:36:07Z 2667 400 2005-06-24T01:44:07Z 1 2020-02-15T06:59:38Z +1918 2005-06-17T05:40:14Z 3749 310 2005-06-21T08:53:14Z 2 2020-02-15T06:59:38Z +1919 2005-06-17T05:40:52Z 3855 197 2005-06-23T05:58:52Z 1 2020-02-15T06:59:38Z +1920 2005-06-17T06:00:23Z 2199 75 2005-06-24T04:49:23Z 1 2020-02-15T06:59:38Z +1921 2005-06-17T06:04:16Z 4369 417 2005-06-23T05:26:16Z 2 2020-02-15T06:59:38Z +1922 2005-06-17T06:04:25Z 2484 343 2005-06-18T09:15:25Z 2 2020-02-15T06:59:38Z +1923 2005-06-17T06:06:10Z 691 400 2005-06-24T04:29:10Z 2 2020-02-15T06:59:38Z +1924 2005-06-17T06:13:34Z 2577 86 2005-06-18T01:51:34Z 1 2020-02-15T06:59:38Z +1925 2005-06-17T06:16:47Z 3995 510 2005-06-21T06:03:47Z 1 2020-02-15T06:59:38Z +1926 2005-06-17T06:24:30Z 3509 462 2005-06-25T03:39:30Z 2 2020-02-15T06:59:38Z +1927 2005-06-17T06:48:19Z 3304 188 2005-06-21T03:23:19Z 1 2020-02-15T06:59:38Z +1928 2005-06-17T06:48:31Z 3454 353 2005-06-26T08:17:31Z 1 2020-02-15T06:59:38Z +1929 2005-06-17T06:49:30Z 573 327 2005-06-22T12:07:30Z 2 2020-02-15T06:59:38Z +1930 2005-06-17T06:50:46Z 79 112 2005-06-19T08:51:46Z 2 2020-02-15T06:59:38Z +1931 2005-06-17T06:51:56Z 1411 391 2005-06-22T08:27:56Z 1 2020-02-15T06:59:38Z +1932 2005-06-17T06:54:41Z 3185 120 2005-06-19T05:12:41Z 2 2020-02-15T06:59:38Z +1933 2005-06-17T06:54:42Z 980 13 2005-06-26T02:00:42Z 1 2020-02-15T06:59:38Z +1934 2005-06-17T07:04:57Z 4000 16 2005-06-25T12:21:57Z 2 2020-02-15T06:59:38Z +1935 2005-06-17T07:14:15Z 1962 295 2005-06-20T05:59:15Z 1 2020-02-15T06:59:38Z +1936 2005-06-17T07:15:41Z 3037 213 2005-06-18T11:37:41Z 2 2020-02-15T06:59:38Z +1937 2005-06-17T07:16:46Z 1266 385 2005-06-21T04:22:46Z 2 2020-02-15T06:59:38Z +1938 2005-06-17T07:18:36Z 570 454 2005-06-19T01:43:36Z 2 2020-02-15T06:59:38Z +1939 2005-06-17T07:26:45Z 605 11 2005-06-25T13:06:45Z 2 2020-02-15T06:59:38Z +1940 2005-06-17T07:42:22Z 105 451 2005-06-22T11:59:22Z 1 2020-02-15T06:59:38Z +1941 2005-06-17T07:42:45Z 1063 519 2005-06-20T07:12:45Z 1 2020-02-15T06:59:38Z +1942 2005-06-17T07:43:39Z 261 143 2005-06-25T02:24:39Z 1 2020-02-15T06:59:38Z +1943 2005-06-17T07:49:17Z 4327 144 2005-06-20T03:47:17Z 1 2020-02-15T06:59:38Z +1944 2005-06-17T07:50:53Z 318 16 2005-06-23T02:52:53Z 2 2020-02-15T06:59:38Z +1945 2005-06-17T07:51:26Z 3366 207 2005-06-23T13:22:26Z 2 2020-02-15T06:59:38Z +1946 2005-06-17T07:58:39Z 2335 389 2005-06-25T06:49:39Z 2 2020-02-15T06:59:38Z +1947 2005-06-17T08:02:20Z 3344 479 2005-06-25T10:25:20Z 1 2020-02-15T06:59:38Z +1948 2005-06-17T08:06:53Z 46 89 2005-06-21T05:00:53Z 1 2020-02-15T06:59:38Z +1949 2005-06-17T08:19:22Z 1478 208 2005-06-25T08:43:22Z 1 2020-02-15T06:59:38Z +1950 2005-06-17T08:26:52Z 723 594 2005-06-22T08:08:52Z 2 2020-02-15T06:59:38Z +1951 2005-06-17T08:30:35Z 955 123 2005-06-20T10:43:35Z 2 2020-02-15T06:59:38Z +1952 2005-06-17T08:33:02Z 1823 338 2005-06-21T14:00:02Z 2 2020-02-15T06:59:38Z +1953 2005-06-17T08:34:57Z 3549 405 2005-06-24T09:38:57Z 2 2020-02-15T06:59:38Z +1954 2005-06-17T08:37:55Z 3203 533 2005-06-20T02:55:55Z 2 2020-02-15T06:59:38Z +1955 2005-06-17T08:40:22Z 811 311 2005-06-19T10:47:22Z 1 2020-02-15T06:59:38Z +1956 2005-06-17T08:43:32Z 1403 492 2005-06-21T11:08:32Z 1 2020-02-15T06:59:38Z +1957 2005-06-17T08:50:58Z 2496 68 2005-06-26T13:39:58Z 2 2020-02-15T06:59:38Z +1958 2005-06-17T08:52:01Z 1843 581 2005-06-23T07:55:01Z 2 2020-02-15T06:59:38Z +1959 2005-06-17T08:54:10Z 1464 554 2005-06-20T05:02:10Z 2 2020-02-15T06:59:38Z +1960 2005-06-17T08:59:57Z 2202 27 2005-06-23T14:38:57Z 2 2020-02-15T06:59:38Z +1961 2005-06-17T09:02:58Z 2851 384 2005-06-20T03:07:58Z 1 2020-02-15T06:59:38Z +1962 2005-06-17T09:08:58Z 4386 536 2005-06-23T14:55:58Z 1 2020-02-15T06:59:38Z +1963 2005-06-17T09:09:31Z 1943 154 2005-06-24T13:16:31Z 2 2020-02-15T06:59:38Z +1964 2005-06-17T09:10:09Z 3390 53 2005-06-21T15:08:09Z 1 2020-02-15T06:59:38Z +1965 2005-06-17T09:17:39Z 480 256 2005-06-18T12:35:39Z 2 2020-02-15T06:59:38Z +1966 2005-06-17T09:19:45Z 2085 6 2005-06-20T11:19:45Z 1 2020-02-15T06:59:38Z +1967 2005-06-17T09:19:52Z 3225 558 2005-06-21T03:35:52Z 1 2020-02-15T06:59:38Z +1968 2005-06-17T09:20:36Z 1139 246 2005-06-18T11:06:36Z 2 2020-02-15T06:59:38Z +1969 2005-06-17T09:22:22Z 4450 337 2005-06-21T05:31:22Z 2 2020-02-15T06:59:38Z +1970 2005-06-17T09:23:16Z 1358 303 2005-06-22T09:40:16Z 2 2020-02-15T06:59:38Z +1971 2005-06-17T09:23:59Z 2870 357 2005-06-25T13:20:59Z 2 2020-02-15T06:59:38Z +1972 2005-06-17T09:25:49Z 2758 526 2005-06-24T09:59:49Z 2 2020-02-15T06:59:38Z +1973 2005-06-17T09:26:15Z 3669 256 2005-06-21T10:18:15Z 1 2020-02-15T06:59:38Z +1974 2005-06-17T09:30:05Z 1979 111 2005-06-21T12:10:05Z 1 2020-02-15T06:59:38Z +1975 2005-06-17T09:32:10Z 2520 468 2005-06-23T03:50:10Z 2 2020-02-15T06:59:38Z +1976 2005-06-17T09:38:08Z 3631 184 2005-06-23T07:23:08Z 2 2020-02-15T06:59:38Z +1977 2005-06-17T09:38:22Z 2468 459 2005-06-23T14:19:22Z 2 2020-02-15T06:59:38Z +1978 2005-06-17T09:42:34Z 1590 278 2005-06-20T09:13:34Z 2 2020-02-15T06:59:38Z +1979 2005-06-17T09:45:30Z 3470 45 2005-06-20T10:52:30Z 1 2020-02-15T06:59:38Z +1980 2005-06-17T09:48:05Z 2985 328 2005-06-23T14:43:05Z 1 2020-02-15T06:59:38Z +1981 2005-06-17T10:03:34Z 3186 526 2005-06-20T13:14:34Z 2 2020-02-15T06:59:38Z +1982 2005-06-17T10:12:15Z 1091 566 2005-06-20T13:56:15Z 1 2020-02-15T06:59:38Z +1983 2005-06-17T10:22:13Z 1955 365 2005-06-24T05:04:13Z 1 2020-02-15T06:59:38Z +1984 2005-06-17T10:25:28Z 3417 380 2005-06-23T08:18:28Z 2 2020-02-15T06:59:38Z +1985 2005-06-17T10:31:37Z 87 411 2005-06-22T11:17:37Z 1 2020-02-15T06:59:38Z +1986 2005-06-17T10:34:59Z 2894 541 2005-06-24T04:57:59Z 2 2020-02-15T06:59:38Z +1987 2005-06-17T10:40:36Z 110 479 2005-06-23T14:23:36Z 1 2020-02-15T06:59:38Z +1988 2005-06-17T10:42:34Z 3054 261 2005-06-25T11:47:34Z 2 2020-02-15T06:59:38Z +1989 2005-06-17T10:47:24Z 634 35 2005-06-19T05:12:24Z 1 2020-02-15T06:59:38Z +1990 2005-06-17T10:48:44Z 1471 571 2005-06-24T08:11:44Z 1 2020-02-15T06:59:38Z +1991 2005-06-17T10:49:23Z 3963 105 2005-06-25T10:48:23Z 1 2020-02-15T06:59:38Z +1992 2005-06-17T10:58:53Z 636 233 2005-06-19T08:42:53Z 2 2020-02-15T06:59:38Z +1993 2005-06-17T10:59:24Z 168 234 2005-06-23T07:30:24Z 2 2020-02-15T06:59:38Z +1994 2005-06-17T11:07:06Z 2203 346 2005-06-25T08:32:06Z 2 2020-02-15T06:59:38Z +1995 2005-06-17T11:11:14Z 1866 10 2005-06-26T16:37:14Z 1 2020-02-15T06:59:38Z +1996 2005-06-17T11:17:45Z 3074 149 2005-06-26T09:42:45Z 1 2020-02-15T06:59:38Z +1997 2005-06-17T11:19:43Z 846 411 2005-06-19T14:18:43Z 1 2020-02-15T06:59:38Z +1998 2005-06-17T11:24:57Z 4365 562 2005-06-26T09:48:57Z 1 2020-02-15T06:59:38Z +1999 2005-06-17T11:30:08Z 3704 111 2005-06-23T08:36:08Z 1 2020-02-15T06:59:38Z +2000 2005-06-17T11:32:30Z 323 163 2005-06-22T13:37:30Z 1 2020-02-15T06:59:38Z +2001 2005-06-17T11:35:09Z 2069 260 2005-06-21T14:52:09Z 2 2020-02-15T06:59:38Z +2002 2005-06-17T11:39:58Z 2406 514 2005-06-24T15:41:58Z 2 2020-02-15T06:59:38Z +2003 2005-06-17T11:40:35Z 1581 515 2005-06-19T08:30:35Z 2 2020-02-15T06:59:38Z +2004 2005-06-17T11:43:38Z 1342 171 2005-06-24T08:05:38Z 2 2020-02-15T06:59:38Z +2005 2005-06-17T11:44:54Z 4177 234 2005-06-19T10:53:54Z 1 2020-02-15T06:59:38Z +2006 2005-06-17T11:47:03Z 992 215 2005-06-19T13:47:03Z 2 2020-02-15T06:59:38Z +2007 2005-06-17T11:47:17Z 1123 572 2005-06-21T07:19:17Z 1 2020-02-15T06:59:38Z +2008 2005-06-17T11:48:05Z 2081 570 2005-06-25T13:16:05Z 1 2020-02-15T06:59:38Z +2009 2005-06-17T11:48:31Z 1902 119 2005-06-18T09:34:31Z 2 2020-02-15T06:59:38Z +2010 2005-06-17T11:54:15Z 2845 329 2005-06-21T05:55:15Z 1 2020-02-15T06:59:38Z +2011 2005-06-17T11:56:09Z 734 350 2005-06-24T06:47:09Z 2 2020-02-15T06:59:38Z +2012 2005-06-17T11:57:15Z 3588 84 2005-06-24T17:18:15Z 1 2020-02-15T06:59:38Z +2013 2005-06-17T12:03:01Z 3256 165 2005-06-24T10:04:01Z 1 2020-02-15T06:59:38Z +2014 2005-06-17T12:03:28Z 2969 337 2005-06-25T16:00:28Z 2 2020-02-15T06:59:38Z +2015 2005-06-17T12:16:29Z 3776 484 2005-06-18T14:40:29Z 2 2020-02-15T06:59:38Z +2016 2005-06-17T12:18:36Z 4265 282 2005-06-20T12:13:36Z 1 2020-02-15T06:59:38Z +2017 2005-06-17T12:33:30Z 1434 516 2005-06-19T10:08:30Z 2 2020-02-15T06:59:38Z +2018 2005-06-17T12:35:58Z 1278 380 2005-06-26T13:16:58Z 2 2020-02-15T06:59:38Z +2019 2005-06-17T12:38:44Z 2314 528 2005-06-23T17:38:44Z 2 2020-02-15T06:59:38Z +2020 2005-06-17T12:39:50Z 1914 384 2005-06-19T14:59:50Z 1 2020-02-15T06:59:38Z +2021 2005-06-17T12:41:18Z 2852 319 2005-06-23T17:17:18Z 2 2020-02-15T06:59:38Z +2022 2005-06-17T12:44:39Z 3053 547 2005-06-25T12:32:39Z 1 2020-02-15T06:59:38Z +2023 2005-06-17T12:52:58Z 787 169 2005-06-23T11:07:58Z 1 2020-02-15T06:59:38Z +2024 2005-06-17T13:00:51Z 2566 329 2005-06-22T07:03:51Z 1 2020-02-15T06:59:38Z +2025 2005-06-17T13:04:00Z 1203 447 2005-06-18T18:45:00Z 2 2020-02-15T06:59:38Z +2026 2005-06-17T13:05:38Z 3681 491 2005-06-21T17:19:38Z 1 2020-02-15T06:59:38Z +2027 2005-06-17T13:06:56Z 4309 265 2005-06-23T13:46:56Z 1 2020-02-15T06:59:38Z +2028 2005-06-17T13:08:08Z 4451 155 2005-06-23T10:54:08Z 1 2020-02-15T06:59:38Z +2029 2005-06-17T13:10:59Z 914 512 2005-06-19T18:15:59Z 1 2020-02-15T06:59:38Z +2030 2005-06-17T13:13:27Z 4024 457 2005-06-19T10:44:27Z 1 2020-02-15T06:59:38Z +2031 2005-06-17T13:14:03Z 4275 570 2005-06-25T10:06:03Z 2 2020-02-15T06:59:38Z +2032 2005-06-17T13:24:07Z 425 316 2005-06-18T18:18:07Z 1 2020-02-15T06:59:38Z +2033 2005-06-17T13:24:43Z 58 90 2005-06-20T12:34:43Z 1 2020-02-15T06:59:38Z +2034 2005-06-17T13:27:16Z 1512 587 2005-06-22T08:53:16Z 2 2020-02-15T06:59:38Z +2035 2005-06-17T13:45:09Z 4371 158 2005-06-26T15:30:09Z 2 2020-02-15T06:59:38Z +2036 2005-06-17T13:46:52Z 100 486 2005-06-18T15:42:52Z 2 2020-02-15T06:59:38Z +2037 2005-06-17T13:54:20Z 2582 308 2005-06-20T14:49:20Z 2 2020-02-15T06:59:38Z +2038 2005-06-17T14:00:51Z 4231 138 2005-06-19T11:54:51Z 2 2020-02-15T06:59:38Z +2039 2005-06-17T14:03:43Z 1514 304 2005-06-24T09:21:43Z 1 2020-02-15T06:59:38Z +2040 2005-06-17T14:18:37Z 227 260 2005-06-22T19:08:37Z 1 2020-02-15T06:59:38Z +2041 2005-06-17T14:19:00Z 782 348 2005-06-26T08:38:00Z 2 2020-02-15T06:59:38Z +2042 2005-06-17T14:31:02Z 3102 84 2005-06-18T14:43:02Z 1 2020-02-15T06:59:38Z +2043 2005-06-17T14:31:12Z 2495 4 2005-06-19T11:04:12Z 2 2020-02-15T06:59:38Z +2044 2005-06-17T14:37:57Z 2418 484 2005-06-22T17:15:57Z 2 2020-02-15T06:59:38Z +2045 2005-06-17T14:38:11Z 561 391 2005-06-26T13:44:11Z 2 2020-02-15T06:59:38Z +2046 2005-06-17T14:39:50Z 872 374 2005-06-24T16:02:50Z 1 2020-02-15T06:59:38Z +2047 2005-06-17T14:40:58Z 2371 201 2005-06-21T08:52:58Z 1 2020-02-15T06:59:38Z +2048 2005-06-17T14:55:29Z 2055 454 2005-06-23T16:29:29Z 2 2020-02-15T06:59:38Z +2049 2005-06-17T14:58:36Z 1053 182 2005-06-22T14:53:36Z 2 2020-02-15T06:59:38Z +2050 2005-06-17T15:07:30Z 1963 549 2005-06-18T14:43:30Z 1 2020-02-15T06:59:38Z +2051 2005-06-17T15:10:16Z 2366 191 2005-06-19T20:45:16Z 1 2020-02-15T06:59:38Z +2052 2005-06-17T15:14:43Z 1686 172 2005-06-21T11:08:43Z 1 2020-02-15T06:59:38Z +2053 2005-06-17T15:19:34Z 4279 521 2005-06-19T10:06:34Z 2 2020-02-15T06:59:38Z +2054 2005-06-17T15:26:37Z 1588 295 2005-06-26T14:22:37Z 1 2020-02-15T06:59:38Z +2055 2005-06-17T15:27:03Z 1399 593 2005-06-25T13:44:03Z 1 2020-02-15T06:59:38Z +2056 2005-06-17T15:27:33Z 229 42 2005-06-20T13:04:33Z 2 2020-02-15T06:59:38Z +2057 2005-06-17T15:31:58Z 2803 190 2005-06-25T09:39:58Z 1 2020-02-15T06:59:38Z +2058 2005-06-17T15:34:41Z 1324 57 2005-06-25T14:50:41Z 1 2020-02-15T06:59:38Z +2059 2005-06-17T15:36:12Z 739 114 2005-06-18T19:01:12Z 2 2020-02-15T06:59:38Z +2060 2005-06-17T15:42:42Z 1523 64 2005-06-22T16:39:42Z 1 2020-02-15T06:59:38Z +2061 2005-06-17T15:47:00Z 4575 108 2005-06-24T16:36:00Z 2 2020-02-15T06:59:38Z +2062 2005-06-17T15:56:43Z 1749 55 2005-06-20T21:37:43Z 2 2020-02-15T06:59:38Z +2063 2005-06-17T15:56:53Z 4323 5 2005-06-21T14:19:53Z 1 2020-02-15T06:59:38Z +2064 2005-06-17T15:57:56Z 1970 67 2005-06-23T21:04:56Z 2 2020-02-15T06:59:38Z +2065 2005-06-17T16:03:46Z 844 266 2005-06-22T16:41:46Z 2 2020-02-15T06:59:38Z +2066 2005-06-17T16:07:08Z 2561 248 2005-06-24T15:20:08Z 2 2020-02-15T06:59:38Z +2067 2005-06-17T16:11:08Z 1711 297 2005-06-22T13:01:08Z 2 2020-02-15T06:59:38Z +2068 2005-06-17T16:11:46Z 4252 387 2005-06-20T11:28:46Z 1 2020-02-15T06:59:38Z +2069 2005-06-17T16:19:39Z 2746 551 2005-06-26T16:48:39Z 1 2020-02-15T06:59:38Z +2070 2005-06-17T16:27:51Z 2609 24 2005-06-20T20:46:51Z 1 2020-02-15T06:59:38Z +2071 2005-06-17T16:33:17Z 2867 479 2005-06-23T21:51:17Z 1 2020-02-15T06:59:38Z +2072 2005-06-17T16:33:32Z 86 261 2005-06-23T13:22:32Z 1 2020-02-15T06:59:38Z +2073 2005-06-17T16:33:59Z 3530 410 2005-06-19T11:57:59Z 1 2020-02-15T06:59:38Z +2074 2005-06-17T16:40:03Z 71 495 2005-06-20T21:34:03Z 1 2020-02-15T06:59:38Z +2075 2005-06-17T16:40:33Z 2415 459 2005-06-19T13:55:33Z 2 2020-02-15T06:59:38Z +2076 2005-06-17T16:43:47Z 2242 217 2005-06-24T11:12:47Z 1 2020-02-15T06:59:38Z +2077 2005-06-17T16:46:11Z 4478 113 2005-06-19T15:10:11Z 1 2020-02-15T06:59:38Z +2078 2005-06-17T16:48:55Z 2021 278 2005-06-19T18:01:55Z 1 2020-02-15T06:59:38Z +2079 2005-06-17T16:49:45Z 3853 465 2005-06-18T18:10:45Z 1 2020-02-15T06:59:38Z +2080 2005-06-17T16:59:40Z 1231 476 2005-06-21T11:28:40Z 2 2020-02-15T06:59:38Z +2081 2005-06-17T17:05:02Z 917 253 2005-06-26T20:26:02Z 1 2020-02-15T06:59:38Z +2082 2005-06-17T17:13:32Z 434 254 2005-06-19T16:16:32Z 1 2020-02-15T06:59:38Z +2083 2005-06-17T17:14:00Z 2423 97 2005-06-18T18:31:00Z 2 2020-02-15T06:59:38Z +2084 2005-06-17T17:17:19Z 428 92 2005-06-22T14:57:19Z 1 2020-02-15T06:59:38Z +2085 2005-06-17T17:30:56Z 2275 214 2005-06-23T12:13:56Z 1 2020-02-15T06:59:38Z +2086 2005-06-17T17:32:07Z 898 326 2005-06-21T20:19:07Z 2 2020-02-15T06:59:38Z +2087 2005-06-17T17:35:10Z 466 398 2005-06-26T13:52:10Z 1 2020-02-15T06:59:38Z +2088 2005-06-17T17:35:30Z 506 310 2005-06-23T20:13:30Z 2 2020-02-15T06:59:38Z +2089 2005-06-17T17:45:09Z 4030 156 2005-06-25T16:41:09Z 1 2020-02-15T06:59:38Z +2090 2005-06-17T18:06:14Z 17 197 2005-06-22T23:52:14Z 1 2020-02-15T06:59:38Z +2091 2005-06-17T18:09:04Z 4033 260 2005-06-26T12:11:04Z 1 2020-02-15T06:59:38Z +2092 2005-06-17T18:12:16Z 4427 556 2005-06-25T15:06:16Z 2 2020-02-15T06:59:38Z +2093 2005-06-17T18:14:08Z 814 26 2005-06-26T18:10:08Z 1 2020-02-15T06:59:38Z +2094 2005-06-17T18:18:56Z 2205 308 2005-06-18T19:36:56Z 1 2020-02-15T06:59:38Z +2095 2005-06-17T18:21:35Z 1907 8 2005-06-23T23:49:35Z 2 2020-02-15T06:59:38Z +2096 2005-06-17T18:33:04Z 1069 431 2005-06-21T17:29:04Z 2 2020-02-15T06:59:38Z +2097 2005-06-17T18:40:04Z 569 439 2005-06-23T13:49:04Z 1 2020-02-15T06:59:38Z +2098 2005-06-17T18:42:09Z 3951 274 2005-06-19T20:40:09Z 1 2020-02-15T06:59:38Z +2099 2005-06-17T18:47:26Z 3660 146 2005-06-24T22:31:26Z 2 2020-02-15T06:59:38Z +2100 2005-06-17T18:53:21Z 2267 387 2005-06-19T21:49:21Z 2 2020-02-15T06:59:38Z +2101 2005-06-17T18:57:02Z 2137 581 2005-06-20T15:38:02Z 2 2020-02-15T06:59:38Z +2102 2005-06-17T19:05:22Z 2316 486 2005-06-23T23:21:22Z 2 2020-02-15T06:59:38Z +2103 2005-06-17T19:13:10Z 1469 456 2005-06-21T21:32:10Z 2 2020-02-15T06:59:38Z +2104 2005-06-17T19:14:30Z 3084 136 2005-06-19T16:26:30Z 1 2020-02-15T06:59:38Z +2105 2005-06-17T19:15:45Z 4090 57 2005-06-20T16:00:45Z 1 2020-02-15T06:59:38Z +2106 2005-06-17T19:29:03Z 643 66 2005-06-23T18:17:03Z 2 2020-02-15T06:59:38Z +2107 2005-06-17T19:31:16Z 1270 104 2005-06-18T23:33:16Z 1 2020-02-15T06:59:38Z +2108 2005-06-17T19:35:26Z 1395 503 2005-06-25T15:45:26Z 1 2020-02-15T06:59:38Z +2109 2005-06-17T19:41:42Z 2292 493 2005-06-25T17:03:42Z 2 2020-02-15T06:59:38Z +2110 2005-06-17T19:45:49Z 3592 163 2005-06-26T18:59:49Z 2 2020-02-15T06:59:38Z +2111 2005-06-17T19:47:21Z 2108 76 2005-06-19T22:46:21Z 2 2020-02-15T06:59:38Z +2112 2005-06-17T19:52:42Z 1629 18 2005-06-25T00:00:42Z 2 2020-02-15T06:59:38Z +2113 2005-06-17T19:57:46Z 1509 406 2005-06-24T00:22:46Z 1 2020-02-15T06:59:38Z +2114 2005-06-17T20:00:25Z 3541 358 2005-06-23T18:51:25Z 1 2020-02-15T06:59:38Z +2115 2005-06-17T20:02:16Z 3448 270 2005-06-25T16:56:16Z 2 2020-02-15T06:59:38Z +2116 2005-06-17T20:16:12Z 2373 24 2005-06-18T17:03:12Z 2 2020-02-15T06:59:38Z +2117 2005-06-17T20:24:00Z 2 170 2005-06-23T17:45:00Z 2 2020-02-15T06:59:38Z +2118 2005-06-17T20:28:29Z 1261 103 2005-06-23T22:47:29Z 1 2020-02-15T06:59:38Z +2119 2005-06-17T20:34:42Z 2104 561 2005-06-22T00:05:42Z 1 2020-02-15T06:59:38Z +2120 2005-06-17T20:36:50Z 1498 182 2005-06-27T01:18:50Z 2 2020-02-15T06:59:38Z +2121 2005-06-17T20:38:54Z 141 467 2005-06-22T23:06:54Z 2 2020-02-15T06:59:38Z +2122 2005-06-17T20:48:27Z 2932 245 2005-06-23T00:58:27Z 2 2020-02-15T06:59:38Z +2123 2005-06-17T20:48:30Z 2497 545 2005-06-18T19:17:30Z 2 2020-02-15T06:59:38Z +2124 2005-06-17T20:49:14Z 1273 178 2005-06-23T17:44:14Z 1 2020-02-15T06:59:38Z +2125 2005-06-17T20:53:42Z 4303 473 2005-06-19T01:53:42Z 2 2020-02-15T06:59:38Z +2126 2005-06-17T20:54:36Z 4276 263 2005-06-27T02:16:36Z 1 2020-02-15T06:59:38Z +2127 2005-06-17T20:54:48Z 3757 187 2005-06-18T16:28:48Z 2 2020-02-15T06:59:38Z +2128 2005-06-17T20:54:58Z 352 2 2005-06-24T00:41:58Z 2 2020-02-15T06:59:38Z +2129 2005-06-17T20:58:32Z 1930 249 2005-06-23T22:22:32Z 1 2020-02-15T06:59:38Z +2130 2005-06-17T21:00:44Z 1369 413 2005-06-26T00:05:44Z 2 2020-02-15T06:59:38Z +2131 2005-06-17T21:02:25Z 4424 85 2005-06-25T18:45:25Z 1 2020-02-15T06:59:38Z +2132 2005-06-17T21:05:06Z 2636 186 2005-06-20T18:10:06Z 1 2020-02-15T06:59:38Z +2133 2005-06-17T21:10:05Z 932 268 2005-06-23T22:41:05Z 1 2020-02-15T06:59:38Z +2134 2005-06-17T21:13:44Z 1699 378 2005-06-26T16:28:44Z 2 2020-02-15T06:59:38Z +2135 2005-06-17T21:14:02Z 4091 39 2005-06-19T00:59:02Z 1 2020-02-15T06:59:38Z +2136 2005-06-17T21:16:41Z 2651 20 2005-06-24T22:42:41Z 2 2020-02-15T06:59:38Z +2137 2005-06-17T21:18:28Z 1158 581 2005-06-20T21:05:28Z 1 2020-02-15T06:59:38Z +2138 2005-06-17T21:28:14Z 512 254 2005-06-22T01:16:14Z 2 2020-02-15T06:59:38Z +2139 2005-06-17T21:29:34Z 807 236 2005-06-26T21:05:34Z 1 2020-02-15T06:59:38Z +2140 2005-06-17T21:40:29Z 2395 56 2005-06-19T00:42:29Z 1 2020-02-15T06:59:38Z +2141 2005-06-17T21:41:34Z 2176 86 2005-06-19T00:15:34Z 1 2020-02-15T06:59:38Z +2142 2005-06-17T21:55:43Z 1787 253 2005-06-26T19:41:43Z 2 2020-02-15T06:59:38Z +2143 2005-06-17T21:58:13Z 1257 507 2005-06-19T23:59:13Z 2 2020-02-15T06:59:38Z +2144 2005-06-17T22:05:40Z 3303 46 2005-06-21T02:53:40Z 1 2020-02-15T06:59:38Z +2145 2005-06-17T22:10:36Z 238 388 2005-06-18T21:07:36Z 2 2020-02-15T06:59:38Z +2146 2005-06-17T22:26:23Z 326 456 2005-06-26T17:10:23Z 1 2020-02-15T06:59:38Z +2147 2005-06-17T22:28:13Z 2752 279 2005-06-22T20:50:13Z 1 2020-02-15T06:59:38Z +2148 2005-06-17T22:44:35Z 315 338 2005-06-26T19:43:35Z 1 2020-02-15T06:59:38Z +2149 2005-06-17T22:50:00Z 3365 333 2005-06-26T18:40:00Z 1 2020-02-15T06:59:38Z +2150 2005-06-17T22:50:36Z 1910 406 2005-06-21T19:33:36Z 1 2020-02-15T06:59:38Z +2151 2005-06-17T22:52:37Z 407 329 2005-06-20T22:00:37Z 1 2020-02-15T06:59:38Z +2152 2005-06-17T22:53:27Z 2665 307 2005-06-23T19:19:27Z 1 2020-02-15T06:59:38Z +2153 2005-06-17T22:58:04Z 2440 357 2005-06-24T19:38:04Z 2 2020-02-15T06:59:38Z +2154 2005-06-17T22:59:42Z 1655 30 2005-06-24T04:11:42Z 1 2020-02-15T06:59:38Z +2155 2005-06-17T23:07:29Z 3640 227 2005-06-25T03:23:29Z 2 2020-02-15T06:59:38Z +2156 2005-06-17T23:08:12Z 623 237 2005-06-22T19:44:12Z 2 2020-02-15T06:59:38Z +2157 2005-06-17T23:30:52Z 1619 201 2005-06-24T01:56:52Z 2 2020-02-15T06:59:38Z +2158 2005-06-17T23:36:27Z 243 530 2005-06-19T19:25:27Z 2 2020-02-15T06:59:38Z +2159 2005-06-17T23:37:29Z 3095 465 2005-06-25T00:18:29Z 2 2020-02-15T06:59:38Z +2160 2005-06-17T23:39:11Z 1644 32 2005-06-22T20:04:11Z 1 2020-02-15T06:59:38Z +2161 2005-06-17T23:39:50Z 3149 75 2005-06-26T23:28:50Z 2 2020-02-15T06:59:38Z +2162 2005-06-17T23:45:47Z 1790 277 2005-06-21T21:03:47Z 1 2020-02-15T06:59:38Z +2163 2005-06-17T23:46:16Z 2600 130 2005-06-22T22:48:16Z 2 2020-02-15T06:59:38Z +2164 2005-06-17T23:46:21Z 3442 227 2005-06-24T19:10:21Z 2 2020-02-15T06:59:38Z +2165 2005-06-17T23:51:10Z 2392 471 2005-06-21T23:54:10Z 1 2020-02-15T06:59:38Z +2166 2005-06-17T23:51:21Z 4343 305 2005-06-27T01:06:21Z 2 2020-02-15T06:59:38Z +2167 2005-06-17T23:51:28Z 3796 307 2005-06-21T00:43:28Z 2 2020-02-15T06:59:38Z +2168 2005-06-17T23:53:24Z 802 308 2005-06-20T01:11:24Z 1 2020-02-15T06:59:38Z +2169 2005-06-17T23:57:23Z 785 120 2005-06-19T20:14:23Z 2 2020-02-15T06:59:38Z +2170 2005-06-17T23:57:34Z 3989 42 2005-06-22T03:37:34Z 2 2020-02-15T06:59:38Z +2171 2005-06-18T00:06:04Z 1768 147 2005-06-24T18:09:04Z 2 2020-02-15T06:59:38Z +2172 2005-06-18T00:06:16Z 2912 457 2005-06-26T00:50:16Z 1 2020-02-15T06:59:38Z +2173 2005-06-18T00:08:20Z 995 65 2005-06-25T05:30:20Z 1 2020-02-15T06:59:38Z +2174 2005-06-18T00:09:01Z 3279 520 2005-06-25T23:14:01Z 1 2020-02-15T06:59:38Z +2175 2005-06-18T00:17:58Z 4038 17 2005-06-22T23:18:58Z 2 2020-02-15T06:59:38Z +2176 2005-06-18T00:29:51Z 4201 282 2005-06-21T01:41:51Z 1 2020-02-15T06:59:38Z +2177 2005-06-18T00:34:45Z 492 340 2005-06-26T18:40:45Z 1 2020-02-15T06:59:38Z +2178 2005-06-18T00:38:35Z 2950 260 2005-06-21T02:56:35Z 1 2020-02-15T06:59:38Z +2179 2005-06-18T00:41:36Z 4334 338 2005-06-19T02:17:36Z 1 2020-02-15T06:59:38Z +2180 2005-06-18T00:47:43Z 3564 497 2005-06-25T04:12:43Z 2 2020-02-15T06:59:38Z +2181 2005-06-18T00:48:31Z 3481 176 2005-06-25T06:43:31Z 2 2020-02-15T06:59:38Z +2182 2005-06-18T00:56:18Z 3494 454 2005-06-26T20:01:18Z 1 2020-02-15T06:59:38Z +2183 2005-06-18T01:06:01Z 1776 340 2005-06-22T01:20:01Z 1 2020-02-15T06:59:38Z +2184 2005-06-18T01:10:36Z 3468 537 2005-06-21T05:59:36Z 2 2020-02-15T06:59:38Z +2185 2005-06-18T01:12:22Z 4326 198 2005-06-20T20:41:22Z 1 2020-02-15T06:59:38Z +2186 2005-06-18T01:15:27Z 2050 204 2005-06-21T06:16:27Z 1 2020-02-15T06:59:38Z +2187 2005-06-18T01:17:27Z 1385 477 2005-06-20T22:18:27Z 1 2020-02-15T06:59:38Z +2188 2005-06-18T01:19:04Z 712 183 2005-06-25T03:59:04Z 2 2020-02-15T06:59:38Z +2189 2005-06-18T01:20:26Z 249 500 2005-06-25T00:30:26Z 1 2020-02-15T06:59:38Z +2190 2005-06-18T01:29:51Z 4398 342 2005-06-26T04:31:51Z 2 2020-02-15T06:59:38Z +2191 2005-06-18T01:33:09Z 3369 58 2005-06-19T20:18:09Z 1 2020-02-15T06:59:38Z +2192 2005-06-18T01:35:47Z 1886 456 2005-06-23T23:38:47Z 2 2020-02-15T06:59:38Z +2193 2005-06-18T01:38:45Z 1013 112 2005-06-22T19:51:45Z 1 2020-02-15T06:59:38Z +2194 2005-06-18T01:41:37Z 1827 149 2005-06-25T04:27:37Z 1 2020-02-15T06:59:38Z +2195 2005-06-18T01:44:46Z 2247 286 2005-06-25T20:50:46Z 1 2020-02-15T06:59:38Z +2196 2005-06-18T01:47:07Z 1925 240 2005-06-26T03:18:07Z 2 2020-02-15T06:59:38Z +2197 2005-06-18T01:50:27Z 3350 103 2005-06-19T01:31:27Z 2 2020-02-15T06:59:38Z +2198 2005-06-18T01:51:22Z 1983 109 2005-06-26T06:57:22Z 2 2020-02-15T06:59:38Z +2199 2005-06-18T01:57:56Z 99 171 2005-06-23T20:34:56Z 2 2020-02-15T06:59:38Z +2200 2005-06-18T01:59:16Z 1085 229 2005-06-26T23:25:16Z 2 2020-02-15T06:59:38Z +2201 2005-06-18T02:08:27Z 1864 489 2005-06-23T01:40:27Z 1 2020-02-15T06:59:38Z +2202 2005-06-18T02:09:24Z 815 297 2005-06-26T07:17:24Z 2 2020-02-15T06:59:38Z +2203 2005-06-18T02:10:42Z 1347 46 2005-06-22T06:25:42Z 2 2020-02-15T06:59:38Z +2204 2005-06-18T02:11:38Z 1137 426 2005-06-24T00:28:38Z 1 2020-02-15T06:59:38Z +2205 2005-06-18T02:14:34Z 1245 593 2005-06-25T05:11:34Z 1 2020-02-15T06:59:38Z +2206 2005-06-18T02:14:45Z 3651 438 2005-06-24T23:20:45Z 2 2020-02-15T06:59:38Z +2207 2005-06-18T02:19:21Z 182 78 2005-06-24T02:25:21Z 2 2020-02-15T06:59:38Z +2208 2005-06-18T02:22:07Z 2345 132 2005-06-23T07:24:07Z 2 2020-02-15T06:59:38Z +2209 2005-06-18T02:24:01Z 2441 13 2005-06-22T04:13:01Z 2 2020-02-15T06:59:38Z +2210 2005-06-18T02:27:01Z 219 108 2005-06-21T00:45:01Z 1 2020-02-15T06:59:38Z +2211 2005-06-18T02:29:10Z 4114 166 2005-06-22T02:02:10Z 1 2020-02-15T06:59:38Z +2212 2005-06-18T02:36:10Z 2458 336 2005-06-19T21:21:10Z 1 2020-02-15T06:59:38Z +2213 2005-06-18T02:36:47Z 949 98 2005-06-23T05:02:47Z 1 2020-02-15T06:59:38Z +2214 2005-06-18T02:44:37Z 2430 366 2005-06-18T23:37:37Z 2 2020-02-15T06:59:38Z +2215 2005-06-18T02:48:21Z 2060 239 2005-06-22T01:03:21Z 2 2020-02-15T06:59:38Z +2216 2005-06-18T03:08:17Z 1428 320 2005-06-19T08:13:17Z 1 2020-02-15T06:59:38Z +2217 2005-06-18T03:12:29Z 2260 118 2005-06-20T06:08:29Z 1 2020-02-15T06:59:38Z +2218 2005-06-18T03:13:13Z 3577 176 2005-06-18T21:16:13Z 1 2020-02-15T06:59:38Z +2219 2005-06-18T03:16:54Z 1881 393 2005-06-22T01:29:54Z 1 2020-02-15T06:59:38Z +2220 2005-06-18T03:21:36Z 320 587 2005-06-21T07:45:36Z 2 2020-02-15T06:59:38Z +2221 2005-06-18T03:24:56Z 3905 156 2005-06-22T08:27:56Z 1 2020-02-15T06:59:38Z +2222 2005-06-18T03:26:23Z 3834 10 2005-06-26T08:50:23Z 2 2020-02-15T06:59:38Z +2223 2005-06-18T03:27:03Z 4068 303 2005-06-27T09:19:03Z 2 2020-02-15T06:59:38Z +2224 2005-06-18T03:33:58Z 1336 153 2005-06-18T22:10:58Z 1 2020-02-15T06:59:38Z +2225 2005-06-18T03:35:40Z 2829 503 2005-06-23T03:05:40Z 1 2020-02-15T06:59:38Z +2226 2005-06-18T03:39:56Z 3487 225 2005-06-24T07:26:56Z 2 2020-02-15T06:59:38Z +2227 2005-06-18T03:43:23Z 3623 200 2005-06-19T05:55:23Z 2 2020-02-15T06:59:38Z +2228 2005-06-18T03:44:50Z 490 383 2005-06-23T00:28:50Z 1 2020-02-15T06:59:38Z +2229 2005-06-18T03:50:18Z 2840 35 2005-06-26T07:16:18Z 2 2020-02-15T06:59:38Z +2230 2005-06-18T03:50:49Z 833 256 2005-06-25T01:12:49Z 2 2020-02-15T06:59:38Z +2231 2005-06-18T03:52:14Z 2280 35 2005-06-23T06:52:14Z 1 2020-02-15T06:59:38Z +2232 2005-06-18T03:54:31Z 2463 52 2005-06-22T07:29:31Z 1 2020-02-15T06:59:38Z +2233 2005-06-18T03:57:36Z 3063 31 2005-06-21T09:42:36Z 2 2020-02-15T06:59:38Z +2234 2005-06-18T04:01:28Z 234 182 2005-06-24T04:55:28Z 2 2020-02-15T06:59:38Z +2235 2005-06-18T04:08:50Z 3463 21 2005-06-27T07:58:50Z 1 2020-02-15T06:59:38Z +2236 2005-06-18T04:12:33Z 4001 375 2005-06-23T04:07:33Z 1 2020-02-15T06:59:38Z +2237 2005-06-18T04:17:44Z 1821 205 2005-06-27T09:08:44Z 1 2020-02-15T06:59:38Z +2238 2005-06-18T04:22:06Z 2859 251 2005-06-27T03:29:06Z 2 2020-02-15T06:59:38Z +2239 2005-06-18T04:23:54Z 4419 437 2005-06-26T00:12:54Z 2 2020-02-15T06:59:38Z +2240 2005-06-18T04:28:27Z 1409 122 2005-06-22T07:48:27Z 2 2020-02-15T06:59:38Z +2241 2005-06-18T04:31:41Z 921 406 2005-06-24T22:34:41Z 2 2020-02-15T06:59:38Z +2242 2005-06-18T04:32:28Z 1995 146 2005-06-24T03:26:28Z 2 2020-02-15T06:59:38Z +2243 2005-06-18T04:33:03Z 1254 328 2005-06-23T04:14:03Z 2 2020-02-15T06:59:38Z +2244 2005-06-18T04:46:33Z 3629 233 2005-06-20T04:28:33Z 1 2020-02-15T06:59:38Z +2245 2005-06-18T04:52:59Z 1496 194 2005-06-24T05:07:59Z 2 2020-02-15T06:59:38Z +2246 2005-06-18T04:54:29Z 4287 414 2005-06-22T09:14:29Z 1 2020-02-15T06:59:38Z +2248 2005-06-18T04:59:48Z 1999 446 2005-06-19T08:51:48Z 2 2020-02-15T06:59:38Z +2249 2005-06-18T05:03:08Z 117 285 2005-06-26T05:43:08Z 2 2020-02-15T06:59:38Z +2250 2005-06-18T05:03:36Z 4042 7 2005-06-22T02:25:36Z 2 2020-02-15T06:59:38Z +2251 2005-06-18T05:05:08Z 1458 143 2005-06-23T08:34:08Z 1 2020-02-15T06:59:38Z +2252 2005-06-18T05:05:18Z 1987 383 2005-06-21T08:19:18Z 1 2020-02-15T06:59:38Z +2253 2005-06-18T05:11:43Z 3719 122 2005-06-25T03:30:43Z 2 2020-02-15T06:59:38Z +2254 2005-06-18T05:15:14Z 1084 281 2005-06-27T04:10:14Z 2 2020-02-15T06:59:38Z +2255 2005-06-18T05:21:12Z 24 410 2005-06-26T09:19:12Z 1 2020-02-15T06:59:38Z +2256 2005-06-18T05:21:56Z 1863 93 2005-06-27T02:06:56Z 2 2020-02-15T06:59:38Z +2257 2005-06-18T05:29:52Z 2846 34 2005-06-22T00:19:52Z 1 2020-02-15T06:59:38Z +2258 2005-06-18T05:30:36Z 4573 292 2005-06-24T09:09:36Z 1 2020-02-15T06:59:38Z +2259 2005-06-18T05:37:45Z 4103 491 2005-06-21T01:51:45Z 1 2020-02-15T06:59:38Z +2260 2005-06-18T05:38:36Z 2773 297 2005-06-20T08:08:36Z 1 2020-02-15T06:59:38Z +2261 2005-06-18T05:46:15Z 1763 570 2005-06-24T05:06:15Z 1 2020-02-15T06:59:38Z +2262 2005-06-18T05:49:46Z 4172 218 2005-06-20T00:25:46Z 2 2020-02-15T06:59:38Z +2263 2005-06-18T05:57:47Z 3259 452 2005-06-20T06:13:47Z 1 2020-02-15T06:59:38Z +2264 2005-06-18T05:58:45Z 150 240 2005-06-19T00:57:45Z 1 2020-02-15T06:59:38Z +2265 2005-06-18T06:03:27Z 3069 267 2005-06-20T01:16:27Z 1 2020-02-15T06:59:38Z +2266 2005-06-18T06:05:02Z 2596 452 2005-06-20T06:54:02Z 1 2020-02-15T06:59:38Z +2267 2005-06-18T06:10:23Z 2086 218 2005-06-20T00:39:23Z 2 2020-02-15T06:59:38Z +2268 2005-06-18T06:13:41Z 4380 21 2005-06-22T08:53:41Z 2 2020-02-15T06:59:38Z +2269 2005-06-18T06:20:54Z 3088 431 2005-06-25T04:51:54Z 2 2020-02-15T06:59:38Z +2270 2005-06-18T06:29:01Z 3447 588 2005-06-26T07:21:01Z 2 2020-02-15T06:59:38Z +2271 2005-06-18T06:29:52Z 2416 145 2005-06-21T09:46:52Z 2 2020-02-15T06:59:38Z +2272 2005-06-18T06:29:53Z 1364 599 2005-06-23T10:58:53Z 1 2020-02-15T06:59:38Z +2273 2005-06-18T06:30:02Z 4456 327 2005-06-20T07:07:02Z 1 2020-02-15T06:59:38Z +2274 2005-06-18T06:31:15Z 3021 347 2005-06-21T01:24:15Z 2 2020-02-15T06:59:38Z +2275 2005-06-18T06:31:29Z 2805 354 2005-06-24T10:04:29Z 2 2020-02-15T06:59:38Z +2276 2005-06-18T06:33:48Z 1145 594 2005-06-25T00:50:48Z 2 2020-02-15T06:59:38Z +2277 2005-06-18T06:35:03Z 3770 224 2005-06-19T01:26:03Z 1 2020-02-15T06:59:38Z +2278 2005-06-18T06:37:57Z 1166 450 2005-06-22T10:57:57Z 1 2020-02-15T06:59:38Z +2279 2005-06-18T06:38:22Z 1953 554 2005-06-27T07:16:22Z 1 2020-02-15T06:59:38Z +2280 2005-06-18T06:46:54Z 4568 548 2005-06-26T09:48:54Z 2 2020-02-15T06:59:38Z +2281 2005-06-18T06:47:29Z 4212 431 2005-06-20T10:27:29Z 2 2020-02-15T06:59:38Z +2282 2005-06-18T06:48:23Z 4388 113 2005-06-24T11:04:23Z 2 2020-02-15T06:59:38Z +2283 2005-06-18T06:56:06Z 2056 507 2005-06-19T05:11:06Z 2 2020-02-15T06:59:38Z +2284 2005-06-18T06:59:51Z 2682 228 2005-06-24T04:58:51Z 2 2020-02-15T06:59:38Z +2285 2005-06-18T07:00:54Z 755 447 2005-06-25T08:58:54Z 2 2020-02-15T06:59:38Z +2286 2005-06-18T07:02:32Z 618 287 2005-06-27T12:33:32Z 1 2020-02-15T06:59:38Z +2287 2005-06-18T07:04:36Z 1473 317 2005-06-27T03:00:36Z 2 2020-02-15T06:59:38Z +2288 2005-06-18T07:23:17Z 877 247 2005-06-26T07:44:17Z 2 2020-02-15T06:59:38Z +2289 2005-06-18T07:29:43Z 2030 392 2005-06-24T11:16:43Z 2 2020-02-15T06:59:38Z +2290 2005-06-18T07:34:37Z 200 513 2005-06-26T11:45:37Z 1 2020-02-15T06:59:38Z +2291 2005-06-18T07:36:46Z 3949 436 2005-06-26T04:57:46Z 2 2020-02-15T06:59:38Z +2292 2005-06-18T07:37:48Z 173 130 2005-06-20T02:45:48Z 2 2020-02-15T06:59:38Z +2293 2005-06-18T07:45:03Z 3209 178 2005-06-24T08:12:03Z 1 2020-02-15T06:59:38Z +2294 2005-06-18T07:46:34Z 2096 72 2005-06-22T12:34:34Z 2 2020-02-15T06:59:38Z +2295 2005-06-18T07:56:18Z 3250 106 2005-06-21T07:10:18Z 1 2020-02-15T06:59:38Z +2296 2005-06-18T08:10:42Z 4558 481 2005-06-20T12:26:42Z 2 2020-02-15T06:59:38Z +2297 2005-06-18T08:17:41Z 2262 111 2005-06-26T05:08:41Z 2 2020-02-15T06:59:38Z +2298 2005-06-18T08:18:29Z 1227 497 2005-06-24T11:51:29Z 1 2020-02-15T06:59:38Z +2299 2005-06-18T08:18:52Z 4339 28 2005-06-26T11:48:52Z 1 2020-02-15T06:59:38Z +2300 2005-06-18T08:22:34Z 1617 291 2005-06-24T04:51:34Z 2 2020-02-15T06:59:38Z +2301 2005-06-18T08:24:03Z 869 273 2005-06-25T10:31:03Z 2 2020-02-15T06:59:38Z +2302 2005-06-18T08:27:33Z 1852 42 2005-06-22T02:46:33Z 2 2020-02-15T06:59:38Z +2303 2005-06-18T08:27:59Z 1524 329 2005-06-22T10:58:59Z 1 2020-02-15T06:59:38Z +2304 2005-06-18T08:30:15Z 3543 327 2005-06-23T06:17:15Z 1 2020-02-15T06:59:38Z +2305 2005-06-18T08:31:18Z 622 149 2005-06-24T06:18:18Z 2 2020-02-15T06:59:38Z +2306 2005-06-18T08:33:23Z 208 477 2005-06-27T10:01:23Z 2 2020-02-15T06:59:38Z +2307 2005-06-18T08:34:59Z 4576 47 2005-06-23T04:42:59Z 1 2020-02-15T06:59:38Z +2308 2005-06-18T08:41:48Z 197 1 2005-06-22T03:36:48Z 2 2020-02-15T06:59:38Z +2309 2005-06-18T08:43:24Z 611 576 2005-06-20T03:56:24Z 1 2020-02-15T06:59:38Z +2310 2005-06-18T08:45:59Z 2590 409 2005-06-26T05:06:59Z 2 2020-02-15T06:59:38Z +2311 2005-06-18T08:51:29Z 4506 236 2005-06-25T07:51:29Z 1 2020-02-15T06:59:38Z +2312 2005-06-18T08:55:46Z 402 184 2005-06-24T04:34:46Z 2 2020-02-15T06:59:38Z +2313 2005-06-18T08:56:45Z 3134 379 2005-06-26T10:30:45Z 2 2020-02-15T06:59:38Z +2314 2005-06-18T09:03:19Z 2157 160 2005-06-19T12:14:19Z 1 2020-02-15T06:59:38Z +2315 2005-06-18T09:03:39Z 2766 372 2005-06-22T11:18:39Z 1 2020-02-15T06:59:38Z +2316 2005-06-18T09:04:59Z 372 289 2005-06-20T09:39:59Z 2 2020-02-15T06:59:38Z +2317 2005-06-18T09:12:18Z 1602 326 2005-06-21T05:50:18Z 2 2020-02-15T06:59:38Z +2318 2005-06-18T09:13:54Z 2328 383 2005-06-23T07:19:54Z 1 2020-02-15T06:59:38Z +2319 2005-06-18T09:24:22Z 1521 393 2005-06-26T14:12:22Z 2 2020-02-15T06:59:38Z +2320 2005-06-18T09:24:50Z 597 552 2005-06-24T07:59:50Z 1 2020-02-15T06:59:38Z +2321 2005-06-18T09:42:42Z 1160 565 2005-06-25T14:28:42Z 1 2020-02-15T06:59:38Z +2322 2005-06-18T09:44:21Z 1893 213 2005-06-25T09:29:21Z 1 2020-02-15T06:59:38Z +2323 2005-06-18T09:55:02Z 207 54 2005-06-23T07:19:02Z 1 2020-02-15T06:59:38Z +2324 2005-06-18T10:00:33Z 2987 268 2005-06-23T14:10:33Z 1 2020-02-15T06:59:38Z +2325 2005-06-18T10:08:07Z 752 406 2005-06-21T15:07:07Z 1 2020-02-15T06:59:38Z +2326 2005-06-18T10:14:22Z 3829 174 2005-06-24T07:01:22Z 2 2020-02-15T06:59:38Z +2327 2005-06-18T10:16:40Z 1351 571 2005-06-20T15:06:40Z 1 2020-02-15T06:59:38Z +2328 2005-06-18T10:17:21Z 2304 441 2005-06-21T04:18:21Z 1 2020-02-15T06:59:38Z +2329 2005-06-18T10:22:52Z 4156 587 2005-06-20T12:03:52Z 2 2020-02-15T06:59:38Z +2330 2005-06-18T10:41:19Z 4285 390 2005-06-25T10:48:19Z 1 2020-02-15T06:59:38Z +2331 2005-06-18T10:50:09Z 1546 221 2005-06-25T14:30:09Z 1 2020-02-15T06:59:38Z +2332 2005-06-18T10:53:51Z 2152 140 2005-06-24T12:06:51Z 2 2020-02-15T06:59:38Z +2333 2005-06-18T10:55:54Z 2323 283 2005-06-25T07:09:54Z 2 2020-02-15T06:59:38Z +2334 2005-06-18T10:56:24Z 3076 223 2005-06-22T10:38:24Z 2 2020-02-15T06:59:38Z +2335 2005-06-18T10:59:36Z 3968 446 2005-06-26T06:42:36Z 2 2020-02-15T06:59:38Z +2336 2005-06-18T11:00:05Z 3888 124 2005-06-25T06:02:05Z 2 2020-02-15T06:59:38Z +2337 2005-06-18T11:15:27Z 4522 582 2005-06-26T06:59:27Z 2 2020-02-15T06:59:38Z +2338 2005-06-18T11:24:54Z 3165 316 2005-06-19T07:34:54Z 1 2020-02-15T06:59:38Z +2339 2005-06-18T11:29:22Z 313 297 2005-06-21T10:29:22Z 1 2020-02-15T06:59:38Z +2340 2005-06-18T11:30:56Z 1913 157 2005-06-23T06:00:56Z 1 2020-02-15T06:59:38Z +2341 2005-06-18T11:35:30Z 638 31 2005-06-27T11:56:30Z 2 2020-02-15T06:59:38Z +2342 2005-06-18T11:42:40Z 2169 146 2005-06-20T14:40:40Z 1 2020-02-15T06:59:38Z +2343 2005-06-18T11:46:26Z 4554 20 2005-06-22T11:37:26Z 2 2020-02-15T06:59:38Z +2344 2005-06-18T12:01:47Z 2015 498 2005-06-19T11:56:47Z 2 2020-02-15T06:59:38Z +2345 2005-06-18T12:03:23Z 1818 6 2005-06-22T14:25:23Z 2 2020-02-15T06:59:38Z +2346 2005-06-18T12:08:16Z 2575 308 2005-06-27T15:02:16Z 1 2020-02-15T06:59:38Z +2347 2005-06-18T12:12:29Z 4516 194 2005-06-23T14:03:29Z 1 2020-02-15T06:59:38Z +2348 2005-06-18T12:15:43Z 3622 449 2005-06-24T14:03:43Z 2 2020-02-15T06:59:38Z +2349 2005-06-18T12:25:14Z 1536 495 2005-06-19T11:24:14Z 2 2020-02-15T06:59:38Z +2350 2005-06-18T12:25:29Z 1179 471 2005-06-23T11:35:29Z 1 2020-02-15T06:59:38Z +2351 2005-06-18T12:27:57Z 2942 216 2005-06-23T16:14:57Z 1 2020-02-15T06:59:38Z +2352 2005-06-18T12:40:15Z 2141 590 2005-06-22T07:07:15Z 2 2020-02-15T06:59:38Z +2353 2005-06-18T12:53:25Z 3223 361 2005-06-19T13:53:25Z 1 2020-02-15T06:59:38Z +2354 2005-06-18T12:54:18Z 2793 77 2005-06-26T07:23:18Z 2 2020-02-15T06:59:38Z +2355 2005-06-18T12:57:06Z 3613 125 2005-06-26T07:32:06Z 1 2020-02-15T06:59:38Z +2356 2005-06-18T12:59:23Z 2207 455 2005-06-21T10:12:23Z 2 2020-02-15T06:59:38Z +2357 2005-06-18T12:59:41Z 1323 561 2005-06-26T16:40:41Z 1 2020-02-15T06:59:38Z +2358 2005-06-18T13:00:51Z 1728 478 2005-06-26T12:58:51Z 1 2020-02-15T06:59:38Z +2359 2005-06-18T13:04:42Z 3087 201 2005-06-25T11:52:42Z 1 2020-02-15T06:59:38Z +2360 2005-06-18T13:11:13Z 37 57 2005-06-23T15:32:13Z 2 2020-02-15T06:59:38Z +2361 2005-06-18T13:19:05Z 3547 546 2005-06-23T07:59:05Z 1 2020-02-15T06:59:38Z +2362 2005-06-18T13:31:15Z 2815 514 2005-06-19T12:35:15Z 1 2020-02-15T06:59:38Z +2363 2005-06-18T13:33:59Z 3497 1 2005-06-19T17:40:59Z 1 2020-02-15T06:59:38Z +2364 2005-06-18T13:37:32Z 2856 512 2005-06-23T14:18:32Z 1 2020-02-15T06:59:38Z +2365 2005-06-18T13:45:34Z 3109 493 2005-06-21T12:12:34Z 2 2020-02-15T06:59:38Z +2366 2005-06-18T13:46:39Z 1413 162 2005-06-23T18:49:39Z 2 2020-02-15T06:59:38Z +2367 2005-06-18T14:00:31Z 4086 566 2005-06-22T14:45:31Z 2 2020-02-15T06:59:38Z +2368 2005-06-18T14:10:27Z 1058 99 2005-06-23T10:49:27Z 1 2020-02-15T06:59:38Z +2369 2005-06-18T14:25:29Z 1515 44 2005-06-23T18:45:29Z 2 2020-02-15T06:59:38Z +2370 2005-06-18T14:29:54Z 2656 489 2005-06-24T10:23:54Z 1 2020-02-15T06:59:38Z +2371 2005-06-18T14:35:29Z 178 248 2005-06-22T09:38:29Z 2 2020-02-15T06:59:38Z +2372 2005-06-18T14:37:37Z 1567 96 2005-06-21T08:40:37Z 2 2020-02-15T06:59:38Z +2373 2005-06-18T14:37:57Z 2780 544 2005-06-23T19:29:57Z 2 2020-02-15T06:59:38Z +2374 2005-06-18T14:44:06Z 2634 71 2005-06-22T17:14:06Z 1 2020-02-15T06:59:38Z +2375 2005-06-18T14:47:29Z 2175 259 2005-06-26T13:52:29Z 2 2020-02-15T06:59:38Z +2376 2005-06-18T14:55:30Z 3664 479 2005-06-25T17:40:30Z 1 2020-02-15T06:59:38Z +2377 2005-06-18T14:56:23Z 3568 193 2005-06-27T12:36:23Z 1 2020-02-15T06:59:38Z +2378 2005-06-18T14:57:49Z 2796 384 2005-06-26T18:23:49Z 2 2020-02-15T06:59:38Z +2379 2005-06-18T14:59:39Z 2708 597 2005-06-24T13:26:39Z 2 2020-02-15T06:59:38Z +2380 2005-06-18T15:00:04Z 4413 256 2005-06-24T13:29:04Z 2 2020-02-15T06:59:38Z +2381 2005-06-18T15:00:30Z 1491 167 2005-06-22T11:38:30Z 1 2020-02-15T06:59:38Z +2382 2005-06-18T15:03:52Z 915 568 2005-06-20T10:16:52Z 2 2020-02-15T06:59:38Z +2383 2005-06-18T15:17:59Z 2459 149 2005-06-26T18:42:59Z 2 2020-02-15T06:59:38Z +2384 2005-06-18T15:18:49Z 3378 132 2005-06-21T18:10:49Z 1 2020-02-15T06:59:38Z +2385 2005-06-18T15:22:40Z 1641 298 2005-06-26T10:02:40Z 1 2020-02-15T06:59:38Z +2386 2005-06-18T15:22:51Z 1361 293 2005-06-22T20:01:51Z 1 2020-02-15T06:59:38Z +2387 2005-06-18T15:24:19Z 692 289 2005-06-25T17:41:19Z 2 2020-02-15T06:59:38Z +2388 2005-06-18T15:26:30Z 2923 53 2005-06-20T20:24:30Z 1 2020-02-15T06:59:38Z +2389 2005-06-18T15:27:47Z 731 382 2005-06-21T12:26:47Z 1 2020-02-15T06:59:38Z +2390 2005-06-18T15:29:26Z 2748 239 2005-06-23T17:50:26Z 1 2020-02-15T06:59:38Z +2391 2005-06-18T15:33:30Z 2850 491 2005-06-25T14:30:30Z 1 2020-02-15T06:59:38Z +2392 2005-06-18T15:34:18Z 2213 261 2005-06-19T16:22:18Z 1 2020-02-15T06:59:38Z +2393 2005-06-18T15:37:55Z 3143 21 2005-06-25T17:11:55Z 1 2020-02-15T06:59:38Z +2394 2005-06-18T15:42:30Z 2669 60 2005-06-26T16:12:30Z 1 2020-02-15T06:59:38Z +2395 2005-06-18T15:45:15Z 899 544 2005-06-27T19:11:15Z 2 2020-02-15T06:59:38Z +2396 2005-06-18T15:49:48Z 1986 31 2005-06-27T20:31:48Z 2 2020-02-15T06:59:38Z +2397 2005-06-18T15:51:25Z 2895 76 2005-06-24T15:52:25Z 1 2020-02-15T06:59:38Z +2398 2005-06-18T15:56:53Z 3001 526 2005-06-27T14:25:53Z 2 2020-02-15T06:59:38Z +2399 2005-06-18T16:06:14Z 2492 577 2005-06-26T16:56:14Z 2 2020-02-15T06:59:38Z +2400 2005-06-18T16:10:46Z 3194 410 2005-06-25T20:34:46Z 1 2020-02-15T06:59:38Z +2401 2005-06-18T16:22:03Z 85 359 2005-06-19T13:49:03Z 2 2020-02-15T06:59:38Z +2402 2005-06-18T16:24:45Z 2833 360 2005-06-27T14:39:45Z 1 2020-02-15T06:59:38Z +2403 2005-06-18T16:33:22Z 2697 536 2005-06-23T19:25:22Z 1 2020-02-15T06:59:38Z +2404 2005-06-18T16:33:48Z 4138 456 2005-06-23T20:39:48Z 2 2020-02-15T06:59:38Z +2405 2005-06-18T16:36:38Z 3604 356 2005-06-21T19:15:38Z 1 2020-02-15T06:59:38Z +2406 2005-06-18T16:39:37Z 1321 497 2005-06-23T12:04:37Z 1 2020-02-15T06:59:38Z +2407 2005-06-18T16:50:41Z 2547 421 2005-06-24T15:29:41Z 2 2020-02-15T06:59:38Z +2408 2005-06-18T16:50:44Z 258 87 2005-06-19T20:11:44Z 1 2020-02-15T06:59:38Z +2409 2005-06-18T16:53:33Z 656 84 2005-06-20T18:23:33Z 1 2020-02-15T06:59:38Z +2410 2005-06-18T16:55:08Z 265 381 2005-06-20T12:40:08Z 2 2020-02-15T06:59:38Z +2411 2005-06-18T16:55:54Z 3302 558 2005-06-25T12:44:54Z 1 2020-02-15T06:59:38Z +2412 2005-06-18T16:58:58Z 1946 127 2005-06-27T22:57:58Z 1 2020-02-15T06:59:38Z +2413 2005-06-18T16:59:34Z 1851 170 2005-06-27T16:10:34Z 2 2020-02-15T06:59:38Z +2414 2005-06-18T17:01:55Z 4500 275 2005-06-20T17:42:55Z 1 2020-02-15T06:59:38Z +2415 2005-06-18T17:02:42Z 3105 434 2005-06-25T13:16:42Z 2 2020-02-15T06:59:38Z +2416 2005-06-18T17:07:34Z 2868 26 2005-06-24T19:16:34Z 1 2020-02-15T06:59:38Z +2417 2005-06-18T17:12:01Z 1956 219 2005-06-26T13:32:01Z 1 2020-02-15T06:59:38Z +2418 2005-06-18T17:14:42Z 2756 381 2005-06-26T16:33:42Z 1 2020-02-15T06:59:38Z +2419 2005-06-18T17:21:24Z 1255 102 2005-06-26T18:25:24Z 1 2020-02-15T06:59:38Z +2420 2005-06-18T17:22:28Z 241 502 2005-06-23T17:45:28Z 1 2020-02-15T06:59:38Z +2421 2005-06-18T17:25:05Z 3524 26 2005-06-23T21:09:05Z 2 2020-02-15T06:59:38Z +2422 2005-06-18T17:28:57Z 3170 527 2005-06-23T15:22:57Z 1 2020-02-15T06:59:38Z +2423 2005-06-18T17:32:08Z 1744 231 2005-06-21T11:58:08Z 1 2020-02-15T06:59:38Z +2424 2005-06-18T17:35:08Z 1884 233 2005-06-23T15:33:08Z 1 2020-02-15T06:59:38Z +2425 2005-06-18T17:37:45Z 2630 579 2005-06-27T18:40:45Z 2 2020-02-15T06:59:38Z +2426 2005-06-18T17:40:44Z 474 543 2005-06-22T14:30:44Z 2 2020-02-15T06:59:38Z +2427 2005-06-18T17:45:00Z 4278 176 2005-06-27T20:07:00Z 2 2020-02-15T06:59:38Z +2428 2005-06-18T17:47:34Z 3892 241 2005-06-19T14:39:34Z 2 2020-02-15T06:59:38Z +2429 2005-06-18T17:48:28Z 3238 583 2005-06-27T15:52:28Z 1 2020-02-15T06:59:38Z +2430 2005-06-18T17:51:46Z 1984 434 2005-06-23T19:17:46Z 1 2020-02-15T06:59:38Z +2431 2005-06-18T17:53:03Z 1383 295 2005-06-25T15:08:03Z 2 2020-02-15T06:59:38Z +2432 2005-06-18T17:59:18Z 4420 250 2005-06-25T15:19:18Z 2 2020-02-15T06:59:38Z +2433 2005-06-18T18:10:17Z 937 356 2005-06-23T14:46:17Z 2 2020-02-15T06:59:38Z +2434 2005-06-18T18:11:51Z 3739 12 2005-06-23T12:52:51Z 2 2020-02-15T06:59:38Z +2435 2005-06-18T18:12:26Z 3548 173 2005-06-22T13:43:26Z 2 2020-02-15T06:59:38Z +2436 2005-06-18T18:13:32Z 3328 534 2005-06-21T13:33:32Z 2 2020-02-15T06:59:38Z +2437 2005-06-18T18:30:26Z 1799 454 2005-06-21T18:36:26Z 1 2020-02-15T06:59:38Z +2438 2005-06-18T18:34:21Z 184 31 2005-06-19T16:50:21Z 1 2020-02-15T06:59:38Z +2439 2005-06-18T18:35:04Z 909 39 2005-06-21T19:47:04Z 2 2020-02-15T06:59:38Z +2440 2005-06-18T18:41:09Z 2866 380 2005-06-22T12:46:09Z 1 2020-02-15T06:59:38Z +2441 2005-06-18T18:45:11Z 3148 593 2005-06-20T00:42:11Z 1 2020-02-15T06:59:38Z +2442 2005-06-18T18:49:18Z 4045 364 2005-06-22T16:18:18Z 1 2020-02-15T06:59:38Z +2443 2005-06-18T18:52:30Z 1622 233 2005-06-24T21:27:30Z 1 2020-02-15T06:59:38Z +2444 2005-06-18T18:58:12Z 2233 576 2005-06-27T20:48:12Z 1 2020-02-15T06:59:38Z +2445 2005-06-18T19:02:11Z 2887 98 2005-06-23T22:25:11Z 1 2020-02-15T06:59:38Z +2446 2005-06-18T19:04:41Z 1283 466 2005-06-27T17:10:41Z 2 2020-02-15T06:59:38Z +2447 2005-06-18T19:10:55Z 2353 523 2005-06-27T16:35:55Z 1 2020-02-15T06:59:38Z +2448 2005-06-18T19:13:45Z 1642 308 2005-06-27T14:43:45Z 1 2020-02-15T06:59:38Z +2449 2005-06-18T19:18:36Z 3630 498 2005-06-27T23:49:36Z 1 2020-02-15T06:59:38Z +2450 2005-06-18T19:25:47Z 863 230 2005-06-27T15:54:47Z 1 2020-02-15T06:59:38Z +2451 2005-06-18T19:28:02Z 835 24 2005-06-23T16:41:02Z 1 2020-02-15T06:59:38Z +2452 2005-06-18T19:29:21Z 4318 77 2005-06-26T22:27:21Z 1 2020-02-15T06:59:38Z +2453 2005-06-18T19:30:53Z 2562 588 2005-06-20T17:22:53Z 1 2020-02-15T06:59:38Z +2454 2005-06-18T19:32:51Z 314 253 2005-06-24T20:03:51Z 2 2020-02-15T06:59:38Z +2455 2005-06-18T19:33:06Z 870 241 2005-06-21T15:21:06Z 1 2020-02-15T06:59:38Z +2456 2005-06-18T19:36:50Z 553 147 2005-06-23T22:48:50Z 1 2020-02-15T06:59:38Z +2457 2005-06-18T19:38:20Z 1277 91 2005-06-26T20:48:20Z 1 2020-02-15T06:59:38Z +2458 2005-06-18T19:39:05Z 599 572 2005-06-21T13:54:05Z 2 2020-02-15T06:59:38Z +2459 2005-06-18T19:44:08Z 1024 185 2005-06-23T19:14:08Z 2 2020-02-15T06:59:38Z +2460 2005-06-18T19:54:13Z 3933 553 2005-06-27T22:36:13Z 2 2020-02-15T06:59:38Z +2461 2005-06-18T19:58:12Z 78 343 2005-06-28T01:35:12Z 2 2020-02-15T06:59:38Z +2462 2005-06-18T20:00:15Z 2151 468 2005-06-21T21:54:15Z 2 2020-02-15T06:59:38Z +2463 2005-06-18T20:01:43Z 1186 194 2005-06-25T15:04:43Z 2 2020-02-15T06:59:38Z +2464 2005-06-18T20:06:05Z 463 380 2005-06-20T19:22:05Z 1 2020-02-15T06:59:38Z +2465 2005-06-18T20:07:02Z 3783 160 2005-06-25T20:55:02Z 1 2020-02-15T06:59:38Z +2466 2005-06-18T20:18:42Z 1356 427 2005-06-20T01:32:42Z 1 2020-02-15T06:59:38Z +2467 2005-06-18T20:20:05Z 4387 177 2005-06-20T17:01:05Z 1 2020-02-15T06:59:38Z +2468 2005-06-18T20:23:52Z 1833 382 2005-06-23T14:34:52Z 1 2020-02-15T06:59:38Z +2469 2005-06-18T20:24:23Z 1993 137 2005-06-27T15:39:23Z 1 2020-02-15T06:59:38Z +2470 2005-06-18T20:28:31Z 4319 40 2005-06-25T18:48:31Z 1 2020-02-15T06:59:38Z +2471 2005-06-18T20:31:00Z 3399 183 2005-06-24T18:01:00Z 2 2020-02-15T06:59:38Z +2472 2005-06-18T20:32:40Z 4556 70 2005-06-20T00:40:40Z 2 2020-02-15T06:59:38Z +2473 2005-06-18T20:42:45Z 3876 221 2005-06-19T20:17:45Z 1 2020-02-15T06:59:38Z +2474 2005-06-18T20:51:34Z 3450 151 2005-06-25T01:39:34Z 1 2020-02-15T06:59:38Z +2475 2005-06-18T20:52:46Z 889 336 2005-06-21T19:40:46Z 2 2020-02-15T06:59:38Z +2476 2005-06-18T20:57:12Z 3998 334 2005-06-20T15:42:12Z 1 2020-02-15T06:59:38Z +2477 2005-06-18T20:58:46Z 2510 206 2005-06-22T21:49:46Z 1 2020-02-15T06:59:38Z +2478 2005-06-18T21:01:21Z 2798 241 2005-06-24T00:20:21Z 1 2020-02-15T06:59:38Z +2479 2005-06-18T21:03:08Z 1624 408 2005-06-22T16:49:08Z 1 2020-02-15T06:59:38Z +2480 2005-06-18T21:04:09Z 4078 310 2005-06-22T16:24:09Z 1 2020-02-15T06:59:38Z +2481 2005-06-18T21:08:30Z 800 322 2005-06-23T02:35:30Z 2 2020-02-15T06:59:38Z +2482 2005-06-18T21:10:44Z 452 122 2005-06-19T20:39:44Z 1 2020-02-15T06:59:38Z +2483 2005-06-18T21:22:23Z 4225 88 2005-06-25T01:14:23Z 1 2020-02-15T06:59:38Z +2484 2005-06-18T21:25:23Z 1511 515 2005-06-24T16:03:23Z 2 2020-02-15T06:59:38Z +2485 2005-06-18T21:26:03Z 1562 56 2005-06-21T22:09:03Z 2 2020-02-15T06:59:38Z +2486 2005-06-18T21:26:56Z 268 15 2005-06-22T23:42:56Z 1 2020-02-15T06:59:38Z +2487 2005-06-18T21:32:54Z 3683 374 2005-06-23T21:11:54Z 2 2020-02-15T06:59:38Z +2488 2005-06-18T21:38:26Z 1338 403 2005-06-24T02:08:26Z 2 2020-02-15T06:59:38Z +2489 2005-06-18T22:00:44Z 4012 382 2005-06-22T02:06:44Z 2 2020-02-15T06:59:38Z +2490 2005-06-18T22:00:50Z 1934 402 2005-06-19T23:45:50Z 2 2020-02-15T06:59:38Z +2491 2005-06-18T22:01:31Z 1779 316 2005-06-26T02:46:31Z 1 2020-02-15T06:59:38Z +2492 2005-06-18T22:04:15Z 2858 237 2005-06-23T21:58:15Z 1 2020-02-15T06:59:38Z +2493 2005-06-18T22:12:09Z 4121 269 2005-06-27T23:44:09Z 1 2020-02-15T06:59:38Z +2494 2005-06-18T22:15:09Z 1313 434 2005-06-25T17:23:09Z 1 2020-02-15T06:59:38Z +2495 2005-06-18T22:15:42Z 3826 338 2005-06-21T23:21:42Z 1 2020-02-15T06:59:38Z +2496 2005-06-18T22:20:11Z 646 527 2005-06-20T03:08:11Z 2 2020-02-15T06:59:38Z +2497 2005-06-18T22:50:40Z 2327 171 2005-06-26T22:39:40Z 1 2020-02-15T06:59:38Z +2498 2005-06-18T22:56:26Z 2291 74 2005-06-22T20:02:26Z 1 2020-02-15T06:59:38Z +2499 2005-06-18T23:01:36Z 3172 348 2005-06-20T21:50:36Z 2 2020-02-15T06:59:38Z +2500 2005-06-18T23:07:12Z 4241 12 2005-06-26T17:27:12Z 1 2020-02-15T06:59:38Z +2501 2005-06-18T23:10:11Z 1185 450 2005-06-24T18:40:11Z 2 2020-02-15T06:59:38Z +2502 2005-06-18T23:12:13Z 2622 325 2005-06-20T04:19:13Z 2 2020-02-15T06:59:38Z +2503 2005-06-18T23:17:19Z 2486 176 2005-06-23T03:57:19Z 2 2020-02-15T06:59:38Z +2504 2005-06-18T23:19:53Z 1684 452 2005-06-21T04:43:53Z 2 2020-02-15T06:59:38Z +2505 2005-06-18T23:28:27Z 1670 519 2005-06-26T01:36:27Z 1 2020-02-15T06:59:38Z +2506 2005-06-18T23:29:53Z 2308 82 2005-06-25T18:11:53Z 2 2020-02-15T06:59:38Z +2507 2005-06-18T23:39:22Z 3121 325 2005-06-21T19:23:22Z 1 2020-02-15T06:59:38Z +2508 2005-06-18T23:43:58Z 4322 476 2005-06-20T19:26:58Z 2 2020-02-15T06:59:38Z +2509 2005-06-18T23:44:08Z 4469 213 2005-06-20T01:36:08Z 2 2020-02-15T06:59:38Z +2510 2005-06-18T23:44:21Z 3827 384 2005-06-24T00:31:21Z 1 2020-02-15T06:59:38Z +2511 2005-06-18T23:45:30Z 1824 234 2005-06-24T01:21:30Z 2 2020-02-15T06:59:38Z +2512 2005-06-18T23:48:47Z 4515 27 2005-06-21T04:58:47Z 2 2020-02-15T06:59:38Z +2513 2005-06-18T23:53:15Z 3379 515 2005-06-24T21:16:15Z 2 2020-02-15T06:59:38Z +2514 2005-06-18T23:56:44Z 2559 382 2005-06-23T21:10:44Z 1 2020-02-15T06:59:38Z +2515 2005-06-18T23:57:31Z 3213 188 2005-06-22T05:31:31Z 2 2020-02-15T06:59:38Z +2516 2005-06-19T00:03:28Z 2678 87 2005-06-21T00:30:28Z 2 2020-02-15T06:59:38Z +2517 2005-06-19T00:11:26Z 53 74 2005-06-25T02:19:26Z 1 2020-02-15T06:59:38Z +2518 2005-06-19T00:16:23Z 3503 86 2005-06-25T19:28:23Z 2 2020-02-15T06:59:38Z +2519 2005-06-19T00:19:21Z 1172 128 2005-06-25T01:46:21Z 1 2020-02-15T06:59:38Z +2520 2005-06-19T00:29:00Z 4181 446 2005-06-28T04:36:00Z 1 2020-02-15T06:59:38Z +2521 2005-06-19T00:41:08Z 132 92 2005-06-22T00:40:08Z 1 2020-02-15T06:59:38Z +2522 2005-06-19T00:43:42Z 550 579 2005-06-28T04:26:42Z 1 2020-02-15T06:59:38Z +2523 2005-06-19T00:45:56Z 460 89 2005-06-21T00:54:56Z 2 2020-02-15T06:59:38Z +2524 2005-06-19T00:48:11Z 441 465 2005-06-25T01:46:11Z 2 2020-02-15T06:59:38Z +2525 2005-06-19T00:48:22Z 1307 365 2005-06-24T19:10:22Z 2 2020-02-15T06:59:38Z +2526 2005-06-19T01:03:07Z 3309 500 2005-06-28T06:57:07Z 1 2020-02-15T06:59:38Z +2527 2005-06-19T01:10:31Z 387 463 2005-06-20T05:37:31Z 2 2020-02-15T06:59:38Z +2528 2005-06-19T01:14:12Z 1836 331 2005-06-26T05:08:12Z 2 2020-02-15T06:59:38Z +2529 2005-06-19T01:18:27Z 2306 478 2005-06-24T00:26:27Z 1 2020-02-15T06:59:38Z +2530 2005-06-19T01:20:00Z 4166 31 2005-06-23T04:10:00Z 1 2020-02-15T06:59:38Z +2531 2005-06-19T01:20:49Z 768 368 2005-06-22T01:50:49Z 2 2020-02-15T06:59:38Z +2532 2005-06-19T01:27:46Z 1870 26 2005-06-20T02:15:46Z 1 2020-02-15T06:59:38Z +2533 2005-06-19T01:34:26Z 4564 187 2005-06-22T20:19:26Z 1 2020-02-15T06:59:38Z +2534 2005-06-19T01:38:39Z 2540 517 2005-06-23T00:16:39Z 1 2020-02-15T06:59:38Z +2535 2005-06-19T01:39:04Z 901 130 2005-06-28T01:33:04Z 2 2020-02-15T06:59:38Z +2536 2005-06-19T01:41:34Z 4232 163 2005-06-27T03:11:34Z 1 2020-02-15T06:59:38Z +2537 2005-06-19T01:52:21Z 3499 388 2005-06-26T02:09:21Z 1 2020-02-15T06:59:38Z +2538 2005-06-19T01:56:59Z 1287 472 2005-06-25T00:54:59Z 2 2020-02-15T06:59:38Z +2539 2005-06-19T01:58:39Z 4474 527 2005-06-19T22:17:39Z 2 2020-02-15T06:59:38Z +2540 2005-06-19T02:04:48Z 4305 363 2005-06-20T22:42:48Z 2 2020-02-15T06:59:38Z +2541 2005-06-19T02:08:10Z 129 360 2005-06-23T23:32:10Z 1 2020-02-15T06:59:38Z +2542 2005-06-19T02:08:39Z 1446 67 2005-06-26T20:25:39Z 1 2020-02-15T06:59:38Z +2543 2005-06-19T02:14:11Z 1729 58 2005-06-21T00:40:11Z 2 2020-02-15T06:59:38Z +2544 2005-06-19T02:16:17Z 1465 558 2005-06-22T21:45:17Z 1 2020-02-15T06:59:38Z +2545 2005-06-19T02:23:36Z 3237 413 2005-06-20T03:17:36Z 2 2020-02-15T06:59:38Z +2546 2005-06-19T02:39:39Z 971 272 2005-06-23T03:56:39Z 2 2020-02-15T06:59:38Z +2547 2005-06-19T02:44:17Z 4560 162 2005-06-24T08:01:17Z 2 2020-02-15T06:59:38Z +2548 2005-06-19T02:45:35Z 4292 561 2005-06-22T06:52:35Z 2 2020-02-15T06:59:38Z +2549 2005-06-19T02:46:39Z 3854 495 2005-06-26T22:30:39Z 2 2020-02-15T06:59:38Z +2550 2005-06-19T02:49:55Z 1370 38 2005-06-24T01:37:55Z 1 2020-02-15T06:59:38Z +2551 2005-06-19T02:51:04Z 2007 444 2005-06-28T05:02:04Z 1 2020-02-15T06:59:38Z +2552 2005-06-19T03:01:29Z 664 389 2005-06-28T04:13:29Z 1 2020-02-15T06:59:38Z +2553 2005-06-19T03:04:59Z 923 473 2005-06-26T02:36:59Z 2 2020-02-15T06:59:38Z +2554 2005-06-19T03:05:38Z 3916 322 2005-06-25T23:03:38Z 1 2020-02-15T06:59:38Z +2555 2005-06-19T03:07:02Z 260 191 2005-06-25T05:25:02Z 2 2020-02-15T06:59:38Z +2556 2005-06-19T03:07:32Z 125 377 2005-06-23T23:09:32Z 1 2020-02-15T06:59:38Z +2557 2005-06-19T03:08:51Z 4546 257 2005-06-20T07:59:51Z 1 2020-02-15T06:59:38Z +2558 2005-06-19T03:09:16Z 2920 361 2005-06-24T05:29:16Z 1 2020-02-15T06:59:38Z +2559 2005-06-19T03:09:46Z 4433 414 2005-06-28T07:49:46Z 1 2020-02-15T06:59:38Z +2560 2005-06-19T03:12:42Z 3340 309 2005-06-28T02:28:42Z 1 2020-02-15T06:59:38Z +2561 2005-06-19T03:14:52Z 4128 256 2005-06-21T02:42:52Z 2 2020-02-15T06:59:38Z +2562 2005-06-19T03:15:05Z 51 265 2005-06-21T08:26:05Z 2 2020-02-15T06:59:38Z +2563 2005-06-19T03:24:17Z 1935 41 2005-06-23T04:08:17Z 2 2020-02-15T06:59:38Z +2564 2005-06-19T03:41:10Z 4008 408 2005-06-24T03:10:10Z 1 2020-02-15T06:59:38Z +2565 2005-06-19T03:44:03Z 2347 128 2005-06-24T01:26:03Z 2 2020-02-15T06:59:38Z +2566 2005-06-19T03:45:39Z 495 486 2005-06-25T08:43:39Z 2 2020-02-15T06:59:38Z +2567 2005-06-19T04:04:46Z 216 496 2005-06-19T23:39:46Z 2 2020-02-15T06:59:38Z +2568 2005-06-19T04:09:03Z 3032 190 2005-06-24T23:24:03Z 1 2020-02-15T06:59:38Z +2569 2005-06-19T04:19:04Z 30 213 2005-06-26T04:31:04Z 1 2020-02-15T06:59:38Z +2570 2005-06-19T04:20:13Z 1105 5 2005-06-25T07:00:13Z 1 2020-02-15T06:59:38Z +2571 2005-06-19T04:20:14Z 1800 66 2005-06-21T07:28:14Z 2 2020-02-15T06:59:38Z +2572 2005-06-19T04:21:26Z 2449 159 2005-06-23T09:22:26Z 2 2020-02-15T06:59:38Z +2573 2005-06-19T04:23:18Z 3354 563 2005-06-23T06:04:18Z 1 2020-02-15T06:59:38Z +2574 2005-06-19T04:23:52Z 3320 143 2005-06-20T05:24:52Z 1 2020-02-15T06:59:38Z +2575 2005-06-19T04:32:52Z 354 336 2005-06-24T09:37:52Z 1 2020-02-15T06:59:38Z +2576 2005-06-19T04:34:15Z 2928 559 2005-06-28T10:02:15Z 2 2020-02-15T06:59:38Z +2577 2005-06-19T04:36:03Z 447 66 2005-06-28T00:38:03Z 2 2020-02-15T06:59:38Z +2578 2005-06-19T04:40:06Z 1695 267 2005-06-26T09:37:06Z 2 2020-02-15T06:59:38Z +2579 2005-06-19T04:40:44Z 3836 493 2005-06-22T09:22:44Z 1 2020-02-15T06:59:38Z +2580 2005-06-19T04:44:30Z 2527 219 2005-06-23T04:15:30Z 1 2020-02-15T06:59:38Z +2581 2005-06-19T04:54:13Z 376 456 2005-06-23T23:28:13Z 2 2020-02-15T06:59:38Z +2582 2005-06-19T04:56:27Z 201 267 2005-06-26T08:56:27Z 2 2020-02-15T06:59:38Z +2583 2005-06-19T05:01:40Z 3999 523 2005-06-28T00:04:40Z 1 2020-02-15T06:59:38Z +2584 2005-06-19T05:02:36Z 3733 90 2005-06-28T04:52:36Z 2 2020-02-15T06:59:38Z +2585 2005-06-19T05:05:03Z 91 406 2005-06-20T09:28:03Z 1 2020-02-15T06:59:38Z +2586 2005-06-19T05:05:11Z 4104 537 2005-06-27T00:23:11Z 1 2020-02-15T06:59:38Z +2587 2005-06-19T05:06:14Z 2188 331 2005-06-24T10:50:14Z 2 2020-02-15T06:59:38Z +2588 2005-06-19T05:20:31Z 3626 143 2005-06-22T04:20:31Z 2 2020-02-15T06:59:38Z +2589 2005-06-19T05:21:27Z 225 164 2005-06-21T09:55:27Z 2 2020-02-15T06:59:38Z +2590 2005-06-19T05:31:40Z 3572 324 2005-06-20T07:58:40Z 2 2020-02-15T06:59:38Z +2591 2005-06-19T05:32:22Z 4481 438 2005-06-25T23:42:22Z 1 2020-02-15T06:59:38Z +2592 2005-06-19T05:36:54Z 282 208 2005-06-21T08:44:54Z 1 2020-02-15T06:59:38Z +2593 2005-06-19T05:40:11Z 2031 556 2005-06-28T08:11:11Z 1 2020-02-15T06:59:38Z +2594 2005-06-19T05:43:43Z 829 123 2005-06-25T03:41:43Z 2 2020-02-15T06:59:38Z +2595 2005-06-19T05:43:55Z 3197 122 2005-06-25T10:20:55Z 1 2020-02-15T06:59:38Z +2596 2005-06-19T05:48:26Z 2229 80 2005-06-24T10:16:26Z 1 2020-02-15T06:59:38Z +2597 2005-06-19T05:53:46Z 2278 407 2005-06-20T05:14:46Z 1 2020-02-15T06:59:38Z +2598 2005-06-19T05:59:57Z 2079 265 2005-06-24T11:44:57Z 2 2020-02-15T06:59:38Z +2599 2005-06-19T06:06:07Z 461 171 2005-06-27T01:10:07Z 1 2020-02-15T06:59:38Z +2600 2005-06-19T06:07:25Z 469 423 2005-06-28T03:37:25Z 2 2020-02-15T06:59:38Z +2601 2005-06-19T06:09:44Z 2898 98 2005-06-20T08:03:44Z 1 2020-02-15T06:59:38Z +2602 2005-06-19T06:10:08Z 4124 173 2005-06-24T00:39:08Z 2 2020-02-15T06:59:38Z +2603 2005-06-19T06:21:25Z 587 222 2005-06-26T03:19:25Z 1 2020-02-15T06:59:38Z +2604 2005-06-19T06:30:10Z 2889 28 2005-06-25T11:16:10Z 2 2020-02-15T06:59:38Z +2605 2005-06-19T06:48:01Z 2342 38 2005-06-25T07:00:01Z 1 2020-02-15T06:59:38Z +2606 2005-06-19T06:51:32Z 4133 364 2005-06-21T03:15:32Z 2 2020-02-15T06:59:38Z +2607 2005-06-19T06:55:01Z 3922 340 2005-06-25T03:21:01Z 2 2020-02-15T06:59:38Z +2608 2005-06-19T07:10:36Z 1618 132 2005-06-24T13:09:36Z 1 2020-02-15T06:59:38Z +2609 2005-06-19T07:13:12Z 2254 383 2005-06-28T12:30:12Z 2 2020-02-15T06:59:38Z +2610 2005-06-19T07:16:20Z 3845 542 2005-06-25T09:39:20Z 2 2020-02-15T06:59:38Z +2611 2005-06-19T07:18:17Z 3682 301 2005-06-21T10:19:17Z 1 2020-02-15T06:59:38Z +2612 2005-06-19T07:19:41Z 1691 287 2005-06-25T11:10:41Z 1 2020-02-15T06:59:38Z +2613 2005-06-19T07:25:50Z 3830 179 2005-06-21T03:04:50Z 1 2020-02-15T06:59:38Z +2614 2005-06-19T07:28:11Z 4147 145 2005-06-22T12:33:11Z 1 2020-02-15T06:59:38Z +2615 2005-06-19T07:29:13Z 3810 578 2005-06-27T12:50:13Z 1 2020-02-15T06:59:38Z +2616 2005-06-19T07:33:00Z 581 478 2005-06-28T03:05:00Z 1 2020-02-15T06:59:38Z +2617 2005-06-19T07:48:31Z 204 313 2005-06-27T11:56:31Z 1 2020-02-15T06:59:38Z +2618 2005-06-19T08:03:01Z 2465 310 2005-06-24T03:23:01Z 2 2020-02-15T06:59:38Z +2619 2005-06-19T08:03:12Z 1848 350 2005-06-21T05:02:12Z 2 2020-02-15T06:59:38Z +2620 2005-06-19T08:06:29Z 3183 94 2005-06-24T11:42:29Z 1 2020-02-15T06:59:38Z +2621 2005-06-19T08:07:31Z 1746 439 2005-06-28T05:36:31Z 1 2020-02-15T06:59:38Z +2622 2005-06-19T08:10:41Z 1393 573 2005-06-28T10:44:41Z 2 2020-02-15T06:59:38Z +2623 2005-06-19T08:11:51Z 4477 12 2005-06-26T12:28:51Z 2 2020-02-15T06:59:38Z +2624 2005-06-19T08:22:09Z 3071 32 2005-06-27T11:13:09Z 1 2020-02-15T06:59:38Z +2625 2005-06-19T08:23:11Z 3946 25 2005-06-26T09:52:11Z 2 2020-02-15T06:59:38Z +2626 2005-06-19T08:28:44Z 2816 450 2005-06-24T03:58:44Z 1 2020-02-15T06:59:38Z +2627 2005-06-19T08:32:00Z 2779 592 2005-06-24T04:31:00Z 2 2020-02-15T06:59:38Z +2628 2005-06-19T08:34:53Z 3917 3 2005-06-28T04:19:53Z 2 2020-02-15T06:59:38Z +2629 2005-06-19T08:42:12Z 1810 458 2005-06-28T03:38:12Z 2 2020-02-15T06:59:38Z +2630 2005-06-19T08:47:21Z 3904 236 2005-06-25T09:31:21Z 1 2020-02-15T06:59:38Z +2631 2005-06-19T08:49:53Z 3471 39 2005-06-26T03:25:53Z 1 2020-02-15T06:59:38Z +2632 2005-06-19T08:51:47Z 2274 574 2005-06-23T07:13:47Z 2 2020-02-15T06:59:38Z +2633 2005-06-19T08:53:10Z 3462 68 2005-06-20T07:56:10Z 1 2020-02-15T06:59:38Z +2634 2005-06-19T08:55:17Z 3687 318 2005-06-20T11:44:17Z 2 2020-02-15T06:59:38Z +2635 2005-06-19T09:08:45Z 3332 105 2005-06-26T09:20:45Z 1 2020-02-15T06:59:38Z +2636 2005-06-19T09:13:06Z 2102 253 2005-06-25T07:47:06Z 2 2020-02-15T06:59:38Z +2637 2005-06-19T09:20:56Z 2736 327 2005-06-27T10:09:56Z 2 2020-02-15T06:59:38Z +2638 2005-06-19T09:23:30Z 2944 295 2005-06-26T14:56:30Z 1 2020-02-15T06:59:38Z +2639 2005-06-19T09:24:02Z 3971 116 2005-06-21T14:16:02Z 2 2020-02-15T06:59:38Z +2640 2005-06-19T09:26:13Z 721 540 2005-06-20T14:38:13Z 1 2020-02-15T06:59:38Z +2641 2005-06-19T09:38:33Z 231 374 2005-06-22T09:55:33Z 1 2020-02-15T06:59:38Z +2642 2005-06-19T09:39:01Z 2065 4 2005-06-25T08:33:01Z 1 2020-02-15T06:59:38Z +2643 2005-06-19T09:39:27Z 1928 318 2005-06-26T10:27:27Z 2 2020-02-15T06:59:38Z +2644 2005-06-19T09:42:30Z 1923 309 2005-06-27T07:23:30Z 2 2020-02-15T06:59:38Z +2645 2005-06-19T09:50:35Z 2284 181 2005-06-28T06:47:35Z 2 2020-02-15T06:59:38Z +2646 2005-06-19T09:56:01Z 3511 275 2005-06-21T04:15:01Z 2 2020-02-15T06:59:38Z +2647 2005-06-19T09:57:56Z 1954 54 2005-06-22T15:55:56Z 1 2020-02-15T06:59:38Z +2648 2005-06-19T10:06:20Z 1620 31 2005-06-21T04:30:20Z 2 2020-02-15T06:59:38Z +2649 2005-06-19T10:20:09Z 98 153 2005-06-21T10:05:09Z 1 2020-02-15T06:59:38Z +2650 2005-06-19T10:21:45Z 4211 209 2005-06-21T08:01:45Z 1 2020-02-15T06:59:38Z +2651 2005-06-19T10:22:56Z 2181 576 2005-06-27T13:37:56Z 1 2020-02-15T06:59:38Z +2652 2005-06-19T10:35:26Z 3108 589 2005-06-28T08:03:26Z 1 2020-02-15T06:59:38Z +2653 2005-06-19T10:36:53Z 3528 340 2005-06-26T15:15:53Z 1 2020-02-15T06:59:38Z +2654 2005-06-19T10:37:54Z 3697 405 2005-06-27T11:44:54Z 2 2020-02-15T06:59:38Z +2655 2005-06-19T10:38:42Z 1649 29 2005-06-23T14:20:42Z 1 2020-02-15T06:59:38Z +2656 2005-06-19T10:42:33Z 559 280 2005-06-24T08:31:33Z 2 2020-02-15T06:59:38Z +2657 2005-06-19T10:42:59Z 3595 19 2005-06-28T12:37:59Z 1 2020-02-15T06:59:38Z +2658 2005-06-19T10:43:42Z 3281 156 2005-06-24T16:23:42Z 1 2020-02-15T06:59:38Z +2659 2005-06-19T10:47:42Z 66 139 2005-06-23T14:03:42Z 1 2020-02-15T06:59:38Z +2660 2005-06-19T10:50:02Z 4341 221 2005-06-28T12:49:02Z 1 2020-02-15T06:59:38Z +2661 2005-06-19T10:50:52Z 3652 452 2005-06-25T08:44:52Z 2 2020-02-15T06:59:38Z +2662 2005-06-19T10:53:42Z 3936 68 2005-06-20T11:41:42Z 1 2020-02-15T06:59:38Z +2663 2005-06-19T10:54:00Z 1012 583 2005-06-20T16:48:00Z 1 2020-02-15T06:59:38Z +2664 2005-06-19T11:11:23Z 3496 299 2005-06-28T08:30:23Z 2 2020-02-15T06:59:38Z +2665 2005-06-19T11:12:35Z 4531 133 2005-06-26T11:55:35Z 2 2020-02-15T06:59:38Z +2666 2005-06-19T11:17:12Z 1872 454 2005-06-28T12:47:12Z 1 2020-02-15T06:59:38Z +2667 2005-06-19T11:28:46Z 1028 200 2005-06-27T11:48:46Z 2 2020-02-15T06:59:38Z +2668 2005-06-19T11:28:47Z 3127 568 2005-06-24T10:12:47Z 2 2020-02-15T06:59:38Z +2669 2005-06-19T11:28:52Z 2734 523 2005-06-20T16:43:52Z 1 2020-02-15T06:59:38Z +2670 2005-06-19T11:30:16Z 3518 457 2005-06-21T17:25:16Z 2 2020-02-15T06:59:38Z +2671 2005-06-19T11:33:11Z 2164 451 2005-06-26T14:30:11Z 2 2020-02-15T06:59:38Z +2672 2005-06-19T11:42:04Z 1164 420 2005-06-25T09:14:04Z 2 2020-02-15T06:59:38Z +2673 2005-06-19T11:42:20Z 2487 29 2005-06-23T07:16:20Z 1 2020-02-15T06:59:38Z +2674 2005-06-19T11:47:59Z 3744 585 2005-06-20T08:09:59Z 1 2020-02-15T06:59:38Z +2675 2005-06-19T11:52:15Z 3078 230 2005-06-23T16:45:15Z 1 2020-02-15T06:59:38Z +2676 2005-06-19T11:54:57Z 3938 477 2005-06-24T15:34:57Z 2 2020-02-15T06:59:38Z +2677 2005-06-19T12:01:59Z 4384 428 2005-06-21T06:15:59Z 2 2020-02-15T06:59:38Z +2678 2005-06-19T12:12:23Z 4230 258 2005-06-21T16:28:23Z 2 2020-02-15T06:59:38Z +2679 2005-06-19T12:12:30Z 1994 109 2005-06-27T08:27:30Z 1 2020-02-15T06:59:38Z +2680 2005-06-19T12:13:37Z 865 114 2005-06-27T15:15:37Z 1 2020-02-15T06:59:38Z +2681 2005-06-19T12:15:27Z 2704 196 2005-06-21T16:48:27Z 2 2020-02-15T06:59:38Z +2682 2005-06-19T12:18:17Z 3609 538 2005-06-28T14:09:17Z 1 2020-02-15T06:59:38Z +2683 2005-06-19T12:27:19Z 2860 241 2005-06-21T16:26:19Z 2 2020-02-15T06:59:38Z +2684 2005-06-19T12:29:08Z 1225 17 2005-06-28T08:50:08Z 2 2020-02-15T06:59:38Z +2685 2005-06-19T12:35:21Z 1170 283 2005-06-22T16:58:21Z 1 2020-02-15T06:59:38Z +2686 2005-06-19T12:44:20Z 2686 68 2005-06-20T16:00:20Z 1 2020-02-15T06:59:38Z +2687 2005-06-19T12:46:52Z 3152 254 2005-06-23T06:58:52Z 2 2020-02-15T06:59:38Z +2688 2005-06-19T12:50:56Z 4281 309 2005-06-28T17:58:56Z 2 2020-02-15T06:59:38Z +2689 2005-06-19T12:58:53Z 2478 567 2005-06-24T17:35:53Z 1 2020-02-15T06:59:38Z +2690 2005-06-19T13:00:02Z 1381 391 2005-06-27T14:29:02Z 1 2020-02-15T06:59:38Z +2691 2005-06-19T13:06:50Z 3469 242 2005-06-26T15:56:50Z 1 2020-02-15T06:59:38Z +2692 2005-06-19T13:08:19Z 3162 388 2005-06-21T16:45:19Z 1 2020-02-15T06:59:38Z +2693 2005-06-19T13:11:47Z 2570 107 2005-06-27T11:17:47Z 1 2020-02-15T06:59:38Z +2694 2005-06-19T13:17:21Z 380 368 2005-06-24T15:09:21Z 1 2020-02-15T06:59:38Z +2695 2005-06-19T13:25:53Z 190 208 2005-06-24T17:12:53Z 2 2020-02-15T06:59:38Z +2696 2005-06-19T13:28:42Z 2110 597 2005-06-28T14:06:42Z 2 2020-02-15T06:59:38Z +2697 2005-06-19T13:29:08Z 2271 448 2005-06-23T13:21:08Z 1 2020-02-15T06:59:38Z +2698 2005-06-19T13:29:11Z 3900 420 2005-06-20T07:31:11Z 2 2020-02-15T06:59:38Z +2699 2005-06-19T13:29:28Z 72 267 2005-06-24T11:15:28Z 2 2020-02-15T06:59:38Z +2700 2005-06-19T13:31:52Z 928 180 2005-06-27T19:30:52Z 1 2020-02-15T06:59:38Z +2701 2005-06-19T13:33:06Z 1623 29 2005-06-28T15:11:06Z 2 2020-02-15T06:59:38Z +2702 2005-06-19T13:35:56Z 1736 329 2005-06-20T14:07:56Z 2 2020-02-15T06:59:38Z +2703 2005-06-19T13:36:06Z 4080 319 2005-06-28T08:26:06Z 2 2020-02-15T06:59:38Z +2704 2005-06-19T13:50:10Z 2026 246 2005-06-26T18:25:10Z 2 2020-02-15T06:59:38Z +2705 2005-06-19T13:54:30Z 1191 562 2005-06-20T12:31:30Z 1 2020-02-15T06:59:38Z +2706 2005-06-19T13:56:51Z 373 559 2005-06-21T17:23:51Z 2 2020-02-15T06:59:38Z +2707 2005-06-19T13:57:08Z 4486 589 2005-06-27T11:09:08Z 2 2020-02-15T06:59:38Z +2708 2005-06-19T13:59:05Z 2659 541 2005-06-24T10:02:05Z 2 2020-02-15T06:59:38Z +2709 2005-06-19T14:00:26Z 2877 7 2005-06-23T14:56:26Z 2 2020-02-15T06:59:38Z +2710 2005-06-19T14:03:56Z 2965 446 2005-06-21T16:15:56Z 1 2020-02-15T06:59:38Z +2711 2005-06-19T14:12:22Z 3944 313 2005-06-21T09:29:22Z 1 2020-02-15T06:59:38Z +2712 2005-06-19T14:20:13Z 3132 411 2005-06-22T19:08:13Z 1 2020-02-15T06:59:38Z +2713 2005-06-19T14:23:09Z 3979 378 2005-06-20T17:55:09Z 1 2020-02-15T06:59:38Z +2714 2005-06-19T14:26:09Z 2853 81 2005-06-23T17:24:09Z 2 2020-02-15T06:59:38Z +2715 2005-06-19T14:29:35Z 2082 404 2005-06-26T08:44:35Z 2 2020-02-15T06:59:38Z +2716 2005-06-19T14:40:17Z 944 252 2005-06-27T17:45:17Z 2 2020-02-15T06:59:38Z +2717 2005-06-19T14:46:10Z 140 200 2005-06-22T20:17:10Z 1 2020-02-15T06:59:38Z +2718 2005-06-19T14:49:42Z 4443 139 2005-06-26T19:37:42Z 1 2020-02-15T06:59:38Z +2719 2005-06-19T14:50:19Z 1200 336 2005-06-20T14:33:19Z 2 2020-02-15T06:59:38Z +2720 2005-06-19T14:51:55Z 3597 504 2005-06-27T13:06:55Z 1 2020-02-15T06:59:38Z +2721 2005-06-19T14:53:24Z 3786 358 2005-06-21T18:22:24Z 2 2020-02-15T06:59:38Z +2722 2005-06-19T14:55:17Z 952 45 2005-06-25T13:11:17Z 2 2020-02-15T06:59:38Z +2723 2005-06-19T14:55:23Z 4317 277 2005-06-20T14:28:23Z 1 2020-02-15T06:59:38Z +2724 2005-06-19T14:57:54Z 3879 103 2005-06-22T16:31:54Z 2 2020-02-15T06:59:38Z +2725 2005-06-19T15:01:23Z 63 246 2005-06-22T09:08:23Z 1 2020-02-15T06:59:38Z +2726 2005-06-19T15:02:20Z 2970 420 2005-06-21T15:38:20Z 1 2020-02-15T06:59:38Z +2727 2005-06-19T15:02:39Z 3261 129 2005-06-28T17:49:39Z 1 2020-02-15T06:59:38Z +2728 2005-06-19T15:04:04Z 775 408 2005-06-22T12:22:04Z 2 2020-02-15T06:59:38Z +2729 2005-06-19T15:06:15Z 4449 510 2005-06-27T17:58:15Z 2 2020-02-15T06:59:38Z +2730 2005-06-19T15:10:09Z 1264 30 2005-06-28T13:05:09Z 1 2020-02-15T06:59:38Z +2731 2005-06-19T15:14:55Z 4218 138 2005-06-27T14:30:55Z 2 2020-02-15T06:59:38Z +2732 2005-06-19T15:19:39Z 610 386 2005-06-25T19:39:39Z 2 2020-02-15T06:59:38Z +2733 2005-06-19T15:21:53Z 1535 188 2005-06-23T11:58:53Z 2 2020-02-15T06:59:38Z +2734 2005-06-19T15:36:27Z 794 204 2005-06-20T13:44:27Z 2 2020-02-15T06:59:38Z +2735 2005-06-19T15:42:07Z 4550 29 2005-06-22T17:28:07Z 1 2020-02-15T06:59:38Z +2736 2005-06-19T15:43:20Z 4510 359 2005-06-21T13:03:20Z 1 2020-02-15T06:59:38Z +2737 2005-06-19T15:48:33Z 3131 513 2005-06-26T18:44:33Z 2 2020-02-15T06:59:38Z +2738 2005-06-19T15:56:30Z 350 75 2005-06-20T16:14:30Z 2 2020-02-15T06:59:38Z +2739 2005-06-19T15:58:38Z 213 212 2005-06-27T15:01:38Z 2 2020-02-15T06:59:38Z +2740 2005-06-19T15:59:04Z 1534 92 2005-06-28T12:18:04Z 2 2020-02-15T06:59:38Z +2741 2005-06-19T16:05:41Z 1662 36 2005-06-20T20:48:41Z 1 2020-02-15T06:59:38Z +2742 2005-06-19T16:05:47Z 4154 187 2005-06-26T21:34:47Z 1 2020-02-15T06:59:38Z +2743 2005-06-19T16:15:56Z 2611 35 2005-06-23T12:30:56Z 1 2020-02-15T06:59:38Z +2744 2005-06-19T16:20:40Z 4511 368 2005-06-22T11:44:40Z 2 2020-02-15T06:59:38Z +2745 2005-06-19T16:21:19Z 1253 26 2005-06-21T22:07:19Z 2 2020-02-15T06:59:38Z +2746 2005-06-19T16:21:40Z 933 562 2005-06-28T11:56:40Z 2 2020-02-15T06:59:38Z +2747 2005-06-19T16:22:07Z 1374 422 2005-06-24T19:28:07Z 1 2020-02-15T06:59:38Z +2748 2005-06-19T16:22:26Z 511 473 2005-06-21T21:55:26Z 1 2020-02-15T06:59:38Z +2749 2005-06-19T16:27:35Z 1540 358 2005-06-25T21:06:35Z 2 2020-02-15T06:59:38Z +2750 2005-06-19T16:37:24Z 3775 197 2005-06-20T13:55:24Z 2 2020-02-15T06:59:38Z +2751 2005-06-19T16:39:23Z 1291 148 2005-06-25T13:57:23Z 1 2020-02-15T06:59:38Z +2752 2005-06-19T16:44:18Z 386 149 2005-06-22T12:40:18Z 2 2020-02-15T06:59:38Z +2753 2005-06-19T16:44:35Z 2408 23 2005-06-24T13:45:35Z 1 2020-02-15T06:59:38Z +2754 2005-06-19T16:55:59Z 1761 267 2005-06-26T18:11:59Z 1 2020-02-15T06:59:38Z +2755 2005-06-19T16:56:31Z 946 506 2005-06-27T12:02:31Z 2 2020-02-15T06:59:38Z +2756 2005-06-19T16:57:42Z 3264 144 2005-06-26T15:30:42Z 2 2020-02-15T06:59:38Z +2757 2005-06-19T17:01:14Z 3814 243 2005-06-28T11:38:14Z 1 2020-02-15T06:59:38Z +2758 2005-06-19T17:04:35Z 3558 423 2005-06-26T14:45:35Z 2 2020-02-15T06:59:38Z +2759 2005-06-19T17:10:24Z 687 351 2005-06-24T21:56:24Z 2 2020-02-15T06:59:38Z +2760 2005-06-19T17:16:33Z 2602 192 2005-06-26T14:58:33Z 1 2020-02-15T06:59:38Z +2761 2005-06-19T17:22:17Z 2134 431 2005-06-20T20:20:17Z 2 2020-02-15T06:59:38Z +2762 2005-06-19T17:22:31Z 3431 457 2005-06-25T22:43:31Z 2 2020-02-15T06:59:38Z +2763 2005-06-19T17:23:34Z 3096 276 2005-06-21T21:37:34Z 2 2020-02-15T06:59:38Z +2764 2005-06-19T17:27:25Z 1718 479 2005-06-28T17:18:25Z 2 2020-02-15T06:59:38Z +2765 2005-06-19T17:34:39Z 1017 478 2005-06-27T23:26:39Z 1 2020-02-15T06:59:38Z +2766 2005-06-19T17:45:15Z 3421 345 2005-06-23T20:11:15Z 2 2020-02-15T06:59:38Z +2767 2005-06-19T17:46:35Z 4052 596 2005-06-24T22:42:35Z 1 2020-02-15T06:59:38Z +2768 2005-06-19T17:46:52Z 3018 129 2005-06-25T21:49:52Z 1 2020-02-15T06:59:38Z +2769 2005-06-19T17:52:14Z 1222 354 2005-06-26T20:30:14Z 2 2020-02-15T06:59:38Z +2770 2005-06-19T17:54:22Z 3042 533 2005-06-26T23:09:22Z 2 2020-02-15T06:59:38Z +2771 2005-06-19T17:54:48Z 40 262 2005-06-27T17:14:48Z 1 2020-02-15T06:59:38Z +2772 2005-06-19T17:59:27Z 1221 520 2005-06-23T17:52:27Z 1 2020-02-15T06:59:38Z +2773 2005-06-19T18:04:18Z 4155 505 2005-06-28T23:52:18Z 1 2020-02-15T06:59:38Z +2774 2005-06-19T18:05:11Z 2809 299 2005-06-21T16:21:11Z 2 2020-02-15T06:59:38Z +2775 2005-06-19T18:14:20Z 672 590 2005-06-26T19:52:20Z 1 2020-02-15T06:59:38Z +2776 2005-06-19T18:16:24Z 1726 551 2005-06-26T14:43:24Z 2 2020-02-15T06:59:38Z +2777 2005-06-19T18:16:26Z 4092 230 2005-06-20T13:43:26Z 2 2020-02-15T06:59:38Z +2778 2005-06-19T18:18:12Z 3357 422 2005-06-28T21:43:12Z 1 2020-02-15T06:59:38Z +2779 2005-06-19T18:19:07Z 1020 376 2005-06-23T18:25:07Z 2 2020-02-15T06:59:38Z +2780 2005-06-19T18:19:33Z 1513 360 2005-06-28T22:29:33Z 1 2020-02-15T06:59:38Z +2781 2005-06-19T18:24:42Z 1230 197 2005-06-27T17:02:42Z 2 2020-02-15T06:59:38Z +2782 2005-06-19T18:25:07Z 3644 156 2005-06-22T14:10:07Z 1 2020-02-15T06:59:38Z +2783 2005-06-19T18:29:10Z 2778 113 2005-06-21T22:09:10Z 1 2020-02-15T06:59:38Z +2784 2005-06-19T18:40:29Z 2305 289 2005-06-28T15:27:29Z 1 2020-02-15T06:59:38Z +2785 2005-06-19T18:43:57Z 826 137 2005-06-24T15:36:57Z 2 2020-02-15T06:59:38Z +2786 2005-06-19T18:46:43Z 2255 594 2005-06-22T16:52:43Z 1 2020-02-15T06:59:38Z +2787 2005-06-19T18:47:00Z 3371 307 2005-06-22T20:22:00Z 2 2020-02-15T06:59:38Z +2788 2005-06-19T18:48:11Z 1457 171 2005-06-21T13:32:11Z 1 2020-02-15T06:59:38Z +2789 2005-06-19T18:48:21Z 2398 514 2005-06-21T21:50:21Z 1 2020-02-15T06:59:38Z +2790 2005-06-19T18:49:45Z 202 97 2005-06-21T00:13:45Z 1 2020-02-15T06:59:38Z +2791 2005-06-19T18:51:27Z 2174 299 2005-06-22T19:35:27Z 2 2020-02-15T06:59:38Z +2792 2005-06-19T18:52:25Z 3057 437 2005-06-23T17:39:25Z 1 2020-02-15T06:59:38Z +2793 2005-06-19T18:52:37Z 732 419 2005-06-25T19:45:37Z 2 2020-02-15T06:59:38Z +2794 2005-06-19T18:53:05Z 1957 85 2005-06-22T13:15:05Z 1 2020-02-15T06:59:38Z +2795 2005-06-19T18:58:53Z 3694 129 2005-06-28T18:56:53Z 1 2020-02-15T06:59:38Z +2796 2005-06-19T19:00:37Z 2337 209 2005-06-25T17:18:37Z 2 2020-02-15T06:59:38Z +2797 2005-06-19T19:04:32Z 3222 486 2005-06-20T22:43:32Z 1 2020-02-15T06:59:38Z +2798 2005-06-19T19:07:48Z 1343 180 2005-06-23T00:09:48Z 2 2020-02-15T06:59:38Z +2799 2005-06-19T19:15:21Z 4579 576 2005-06-21T21:35:21Z 1 2020-02-15T06:59:38Z +2800 2005-06-19T19:15:56Z 183 146 2005-06-23T00:15:56Z 1 2020-02-15T06:59:38Z +2801 2005-06-19T19:18:09Z 4572 29 2005-06-20T20:11:09Z 2 2020-02-15T06:59:38Z +2802 2005-06-19T19:18:17Z 4067 489 2005-06-21T17:58:17Z 2 2020-02-15T06:59:38Z +2803 2005-06-19T19:18:27Z 103 120 2005-06-27T21:48:27Z 1 2020-02-15T06:59:38Z +2804 2005-06-19T19:24:54Z 88 426 2005-06-25T01:19:54Z 2 2020-02-15T06:59:38Z +2805 2005-06-19T19:29:17Z 2153 80 2005-06-27T23:14:17Z 2 2020-02-15T06:59:38Z +2806 2005-06-19T19:30:48Z 2114 510 2005-06-20T19:42:48Z 2 2020-02-15T06:59:38Z +2807 2005-06-19T19:32:53Z 2825 194 2005-06-25T00:30:53Z 2 2020-02-15T06:59:38Z +2808 2005-06-19T19:34:45Z 65 325 2005-06-27T14:49:45Z 1 2020-02-15T06:59:38Z +2809 2005-06-19T19:40:27Z 1786 44 2005-06-27T15:28:27Z 2 2020-02-15T06:59:38Z +2810 2005-06-19T19:44:12Z 2558 67 2005-06-20T19:41:12Z 2 2020-02-15T06:59:38Z +2811 2005-06-19T19:53:30Z 3890 457 2005-06-22T23:21:30Z 2 2020-02-15T06:59:38Z +2812 2005-06-19T19:58:16Z 3016 211 2005-06-26T15:26:16Z 1 2020-02-15T06:59:38Z +2813 2005-06-19T20:01:47Z 3420 284 2005-06-27T01:51:47Z 1 2020-02-15T06:59:38Z +2814 2005-06-19T20:01:59Z 1783 10 2005-06-26T01:28:59Z 2 2020-02-15T06:59:38Z +2815 2005-06-19T20:03:29Z 3046 27 2005-06-25T22:50:29Z 2 2020-02-15T06:59:38Z +2816 2005-06-19T20:04:23Z 2180 94 2005-06-20T21:09:23Z 2 2020-02-15T06:59:38Z +2817 2005-06-19T20:05:22Z 3476 510 2005-06-24T23:29:22Z 1 2020-02-15T06:59:38Z +2818 2005-06-19T20:05:52Z 2376 497 2005-06-22T01:01:52Z 2 2020-02-15T06:59:38Z +2819 2005-06-19T20:13:33Z 4100 82 2005-06-26T16:44:33Z 1 2020-02-15T06:59:38Z +2820 2005-06-19T20:20:33Z 851 316 2005-06-26T20:32:33Z 1 2020-02-15T06:59:38Z +2821 2005-06-19T20:26:52Z 2551 532 2005-06-27T23:48:52Z 1 2020-02-15T06:59:38Z +2822 2005-06-19T20:29:24Z 3599 48 2005-06-23T02:21:24Z 1 2020-02-15T06:59:38Z +2823 2005-06-19T20:30:21Z 3566 260 2005-06-26T17:58:21Z 1 2020-02-15T06:59:38Z +2824 2005-06-19T20:31:45Z 2878 506 2005-06-29T00:40:45Z 2 2020-02-15T06:59:38Z +2825 2005-06-19T20:32:19Z 2601 418 2005-06-22T22:32:19Z 1 2020-02-15T06:59:38Z +2826 2005-06-19T20:41:35Z 2980 125 2005-06-25T17:23:35Z 1 2020-02-15T06:59:38Z +2827 2005-06-19T20:50:01Z 2745 23 2005-06-20T18:54:01Z 2 2020-02-15T06:59:38Z +2828 2005-06-19T20:51:33Z 3230 526 2005-06-25T17:38:33Z 1 2020-02-15T06:59:38Z +2829 2005-06-19T21:11:30Z 2047 341 2005-06-24T18:10:30Z 1 2020-02-15T06:59:38Z +2830 2005-06-19T21:14:33Z 2080 21 2005-06-21T17:46:33Z 1 2020-02-15T06:59:38Z +2831 2005-06-19T21:17:06Z 4089 468 2005-06-22T16:56:06Z 2 2020-02-15T06:59:38Z +2832 2005-06-19T21:21:53Z 828 593 2005-06-28T23:00:53Z 1 2020-02-15T06:59:38Z +2833 2005-06-19T21:34:54Z 1976 232 2005-06-28T16:21:54Z 1 2020-02-15T06:59:38Z +2834 2005-06-19T21:41:46Z 2876 122 2005-06-24T20:47:46Z 1 2020-02-15T06:59:38Z +2835 2005-06-19T21:44:11Z 4411 89 2005-06-26T16:46:11Z 2 2020-02-15T06:59:38Z +2836 2005-06-19T21:58:21Z 1453 306 2005-06-27T00:41:21Z 2 2020-02-15T06:59:38Z +2837 2005-06-19T22:03:50Z 417 371 2005-06-20T21:24:50Z 1 2020-02-15T06:59:38Z +2838 2005-06-19T22:06:06Z 143 292 2005-06-25T22:30:06Z 1 2020-02-15T06:59:38Z +2839 2005-06-19T22:07:24Z 3856 256 2005-06-23T16:37:24Z 2 2020-02-15T06:59:38Z +2840 2005-06-19T22:17:44Z 1102 236 2005-06-26T00:36:44Z 2 2020-02-15T06:59:38Z +2841 2005-06-19T22:21:06Z 614 193 2005-06-28T00:56:06Z 1 2020-02-15T06:59:38Z +2842 2005-06-19T22:34:20Z 4183 217 2005-06-22T03:46:20Z 2 2020-02-15T06:59:38Z +2843 2005-06-19T22:36:39Z 1520 148 2005-06-26T22:33:39Z 2 2020-02-15T06:59:38Z +2844 2005-06-19T22:40:12Z 4452 178 2005-06-24T03:58:12Z 2 2020-02-15T06:59:38Z +2845 2005-06-19T22:46:37Z 3948 583 2005-06-23T03:31:37Z 1 2020-02-15T06:59:38Z +2846 2005-06-19T22:52:14Z 651 193 2005-06-22T17:12:14Z 1 2020-02-15T06:59:38Z +2847 2005-06-19T22:54:01Z 1247 148 2005-06-27T23:05:01Z 2 2020-02-15T06:59:38Z +2848 2005-06-19T22:55:37Z 3449 19 2005-06-25T23:10:37Z 1 2020-02-15T06:59:38Z +2849 2005-06-19T23:06:00Z 3628 283 2005-06-25T18:36:00Z 1 2020-02-15T06:59:38Z +2850 2005-06-19T23:06:28Z 206 262 2005-06-28T03:30:28Z 2 2020-02-15T06:59:38Z +2851 2005-06-19T23:07:03Z 2168 361 2005-06-22T17:26:03Z 1 2020-02-15T06:59:38Z +2852 2005-06-19T23:08:50Z 2695 453 2005-06-26T04:00:50Z 1 2020-02-15T06:59:38Z +2853 2005-06-19T23:09:41Z 2578 453 2005-06-28T00:51:41Z 2 2020-02-15T06:59:38Z +2854 2005-06-19T23:11:48Z 4453 81 2005-06-23T19:37:48Z 2 2020-02-15T06:59:38Z +2855 2005-06-19T23:11:49Z 3495 483 2005-06-26T21:52:49Z 1 2020-02-15T06:59:38Z +2856 2005-06-19T23:13:04Z 1859 210 2005-06-23T22:47:04Z 1 2020-02-15T06:59:38Z +2857 2005-06-19T23:15:15Z 2886 364 2005-06-25T04:24:15Z 2 2020-02-15T06:59:38Z +2858 2005-06-19T23:17:11Z 2628 268 2005-06-21T19:07:11Z 1 2020-02-15T06:59:38Z +2859 2005-06-19T23:18:42Z 126 147 2005-06-20T22:38:42Z 1 2020-02-15T06:59:38Z +2860 2005-06-19T23:20:40Z 3045 107 2005-06-21T04:59:40Z 1 2020-02-15T06:59:38Z +2861 2005-06-19T23:21:34Z 1489 116 2005-06-26T17:32:34Z 1 2020-02-15T06:59:38Z +2862 2005-06-19T23:47:24Z 4260 52 2005-06-23T03:39:24Z 2 2020-02-15T06:59:38Z +2863 2005-06-19T23:58:38Z 2410 228 2005-06-23T23:27:38Z 2 2020-02-15T06:59:38Z +2864 2005-06-20T00:00:52Z 1056 493 2005-06-26T04:21:52Z 2 2020-02-15T06:59:38Z +2865 2005-06-20T00:00:55Z 1569 10 2005-06-21T02:20:55Z 1 2020-02-15T06:59:38Z +2866 2005-06-20T00:01:36Z 2718 44 2005-06-20T21:39:36Z 1 2020-02-15T06:59:38Z +2867 2005-06-20T00:08:38Z 95 483 2005-06-23T19:35:38Z 1 2020-02-15T06:59:38Z +2868 2005-06-20T00:08:58Z 1213 214 2005-06-25T21:23:58Z 2 2020-02-15T06:59:38Z +2869 2005-06-20T00:09:25Z 1331 155 2005-06-24T04:40:25Z 2 2020-02-15T06:59:38Z +2870 2005-06-20T00:17:46Z 214 467 2005-06-28T20:21:46Z 1 2020-02-15T06:59:38Z +2871 2005-06-20T00:27:49Z 1731 443 2005-06-29T01:36:49Z 1 2020-02-15T06:59:38Z +2872 2005-06-20T00:38:21Z 3779 240 2005-06-26T19:56:21Z 1 2020-02-15T06:59:38Z +2873 2005-06-20T00:41:25Z 3321 160 2005-06-25T02:06:25Z 1 2020-02-15T06:59:38Z +2874 2005-06-20T00:42:26Z 331 166 2005-06-28T01:37:26Z 2 2020-02-15T06:59:38Z +2875 2005-06-20T00:47:18Z 3012 186 2005-06-25T18:54:18Z 2 2020-02-15T06:59:38Z +2876 2005-06-20T01:06:34Z 3117 39 2005-06-23T04:55:34Z 1 2020-02-15T06:59:38Z +2877 2005-06-20T01:07:16Z 485 267 2005-06-24T01:05:16Z 1 2020-02-15T06:59:38Z +2878 2005-06-20T01:09:14Z 4120 88 2005-06-21T21:40:14Z 2 2020-02-15T06:59:38Z +2879 2005-06-20T01:24:10Z 1920 583 2005-06-28T20:12:10Z 2 2020-02-15T06:59:38Z +2880 2005-06-20T01:24:54Z 1700 193 2005-06-23T02:42:54Z 2 2020-02-15T06:59:38Z +2881 2005-06-20T01:26:18Z 1391 307 2005-06-26T23:42:18Z 1 2020-02-15T06:59:38Z +2882 2005-06-20T01:26:26Z 205 152 2005-06-21T19:33:26Z 1 2020-02-15T06:59:38Z +2883 2005-06-20T01:29:10Z 585 320 2005-06-28T06:12:10Z 1 2020-02-15T06:59:38Z +2884 2005-06-20T01:31:16Z 3384 319 2005-06-21T04:03:16Z 2 2020-02-15T06:59:38Z +2885 2005-06-20T01:33:42Z 2701 330 2005-06-22T22:23:42Z 1 2020-02-15T06:59:38Z +2886 2005-06-20T01:38:39Z 1755 154 2005-06-23T04:28:39Z 2 2020-02-15T06:59:38Z +2887 2005-06-20T01:39:43Z 1073 453 2005-06-25T05:22:43Z 2 2020-02-15T06:59:38Z +2888 2005-06-20T01:50:56Z 468 7 2005-06-22T05:05:56Z 2 2020-02-15T06:59:38Z +2889 2005-06-20T01:54:08Z 151 213 2005-06-23T06:33:08Z 1 2020-02-15T06:59:38Z +2890 2005-06-20T02:00:45Z 3437 392 2005-06-27T21:12:45Z 1 2020-02-15T06:59:38Z +2891 2005-06-20T02:02:05Z 343 32 2005-06-25T02:45:05Z 1 2020-02-15T06:59:38Z +2892 2005-06-20T02:06:39Z 2993 430 2005-06-21T02:50:39Z 2 2020-02-15T06:59:38Z +2893 2005-06-20T02:22:08Z 397 153 2005-06-26T21:01:08Z 2 2020-02-15T06:59:38Z +2894 2005-06-20T02:22:42Z 4316 76 2005-06-22T00:38:42Z 1 2020-02-15T06:59:38Z +2895 2005-06-20T02:26:31Z 4445 141 2005-06-27T23:42:31Z 2 2020-02-15T06:59:38Z +2896 2005-06-20T02:33:42Z 1086 40 2005-06-26T05:29:42Z 2 2020-02-15T06:59:38Z +2897 2005-06-20T02:34:23Z 3464 107 2005-06-25T05:29:23Z 1 2020-02-15T06:59:38Z +2898 2005-06-20T02:38:06Z 3106 178 2005-06-29T08:18:06Z 2 2020-02-15T06:59:38Z +2899 2005-06-20T02:39:21Z 1919 459 2005-06-23T06:47:21Z 1 2020-02-15T06:59:38Z +2900 2005-06-20T02:40:04Z 3407 294 2005-06-27T20:47:04Z 2 2020-02-15T06:59:38Z +2901 2005-06-20T02:41:28Z 667 25 2005-06-23T04:43:28Z 2 2020-02-15T06:59:38Z +2902 2005-06-20T02:45:35Z 2787 304 2005-06-26T07:51:35Z 1 2020-02-15T06:59:38Z +2903 2005-06-20T02:49:01Z 3580 53 2005-06-25T05:03:01Z 2 2020-02-15T06:59:38Z +2904 2005-06-20T02:54:06Z 2195 55 2005-06-21T06:57:06Z 2 2020-02-15T06:59:38Z +2905 2005-06-20T02:56:16Z 3898 189 2005-06-24T23:51:16Z 2 2020-02-15T06:59:38Z +2906 2005-06-20T03:04:56Z 1087 58 2005-06-23T05:57:56Z 2 2020-02-15T06:59:38Z +2907 2005-06-20T03:15:09Z 2516 208 2005-06-20T21:56:09Z 2 2020-02-15T06:59:38Z +2908 2005-06-20T03:16:52Z 517 91 2005-06-22T08:46:52Z 1 2020-02-15T06:59:38Z +2909 2005-06-20T03:19:10Z 1701 451 2005-06-25T06:06:10Z 2 2020-02-15T06:59:38Z +2910 2005-06-20T03:31:18Z 630 57 2005-06-28T00:35:18Z 1 2020-02-15T06:59:38Z +2911 2005-06-20T03:32:37Z 3645 502 2005-06-22T22:06:37Z 1 2020-02-15T06:59:38Z +2912 2005-06-20T03:32:45Z 1076 196 2005-06-21T23:32:45Z 1 2020-02-15T06:59:38Z +2913 2005-06-20T03:42:27Z 3456 402 2005-06-23T04:47:27Z 1 2020-02-15T06:59:38Z +2914 2005-06-20T03:43:18Z 2419 342 2005-06-25T03:44:18Z 2 2020-02-15T06:59:38Z +2915 2005-06-20T03:57:17Z 1293 262 2005-06-24T05:59:17Z 2 2020-02-15T06:59:38Z +2916 2005-06-20T04:01:04Z 3086 590 2005-06-27T22:40:04Z 2 2020-02-15T06:59:38Z +2917 2005-06-20T04:08:35Z 647 451 2005-06-24T01:17:35Z 1 2020-02-15T06:59:38Z +2918 2005-06-20T04:09:04Z 1985 215 2005-06-21T10:07:04Z 1 2020-02-15T06:59:38Z +2919 2005-06-20T04:10:16Z 2835 509 2005-06-27T06:34:16Z 1 2020-02-15T06:59:38Z +2920 2005-06-20T04:12:46Z 487 588 2005-06-26T23:34:46Z 2 2020-02-15T06:59:38Z +2921 2005-06-20T04:13:04Z 1785 59 2005-06-28T01:28:04Z 1 2020-02-15T06:59:38Z +2922 2005-06-20T04:13:47Z 1671 176 2005-06-22T04:38:47Z 2 2020-02-15T06:59:38Z +2923 2005-06-20T04:16:07Z 109 29 2005-06-21T05:04:07Z 1 2020-02-15T06:59:38Z +2924 2005-06-20T04:20:14Z 580 132 2005-06-21T01:13:14Z 1 2020-02-15T06:59:38Z +2925 2005-06-20T04:23:49Z 804 301 2005-06-22T04:37:49Z 2 2020-02-15T06:59:38Z +2926 2005-06-20T04:37:45Z 1055 379 2005-06-26T02:17:45Z 1 2020-02-15T06:59:38Z +2927 2005-06-20T04:41:41Z 393 403 2005-06-23T01:59:41Z 1 2020-02-15T06:59:38Z +2928 2005-06-20T04:43:45Z 1265 104 2005-06-21T06:58:45Z 2 2020-02-15T06:59:38Z +2929 2005-06-20T04:47:39Z 3389 333 2005-06-25T23:16:39Z 2 2020-02-15T06:59:38Z +2930 2005-06-20T04:50:29Z 3615 585 2005-06-28T06:00:29Z 2 2020-02-15T06:59:38Z +2931 2005-06-20T04:50:45Z 3122 258 2005-06-29T09:18:45Z 1 2020-02-15T06:59:38Z +2932 2005-06-20T04:51:19Z 4418 526 2005-06-29T08:31:19Z 1 2020-02-15T06:59:38Z +2933 2005-06-20T04:52:23Z 4483 323 2005-06-26T07:12:23Z 2 2020-02-15T06:59:38Z +2934 2005-06-20T05:05:53Z 697 228 2005-06-22T02:44:53Z 1 2020-02-15T06:59:38Z +2935 2005-06-20T05:07:24Z 2735 384 2005-06-28T09:17:24Z 2 2020-02-15T06:59:38Z +2936 2005-06-20T05:09:27Z 2675 330 2005-06-26T10:16:27Z 2 2020-02-15T06:59:38Z +2937 2005-06-20T05:15:37Z 1998 15 2005-06-27T02:45:37Z 1 2020-02-15T06:59:38Z +2938 2005-06-20T05:17:22Z 1795 504 2005-06-26T09:38:22Z 1 2020-02-15T06:59:38Z +2939 2005-06-20T05:18:16Z 2638 203 2005-06-26T06:56:16Z 1 2020-02-15T06:59:38Z +2940 2005-06-20T05:20:01Z 2504 73 2005-06-28T06:11:01Z 2 2020-02-15T06:59:38Z +2941 2005-06-20T05:22:18Z 3632 135 2005-06-26T07:40:18Z 2 2020-02-15T06:59:38Z +2942 2005-06-20T05:27:31Z 999 242 2005-06-29T00:35:31Z 1 2020-02-15T06:59:38Z +2943 2005-06-20T05:43:05Z 2591 418 2005-06-25T04:31:05Z 1 2020-02-15T06:59:38Z +2944 2005-06-20T05:43:42Z 1550 474 2005-06-29T09:40:42Z 2 2020-02-15T06:59:38Z +2945 2005-06-20T05:49:27Z 4193 153 2005-06-26T09:48:27Z 1 2020-02-15T06:59:38Z +2946 2005-06-20T05:50:40Z 3737 213 2005-06-21T00:42:40Z 2 2020-02-15T06:59:38Z +2947 2005-06-20T06:00:21Z 4302 151 2005-06-23T10:04:21Z 2 2020-02-15T06:59:38Z +2948 2005-06-20T06:02:35Z 4254 289 2005-06-29T09:12:35Z 2 2020-02-15T06:59:38Z +2949 2005-06-20T06:05:53Z 375 78 2005-06-29T03:19:53Z 2 2020-02-15T06:59:38Z +2950 2005-06-20T06:08:36Z 1438 561 2005-06-27T07:45:36Z 2 2020-02-15T06:59:38Z +2951 2005-06-20T06:23:01Z 2903 404 2005-06-24T00:26:01Z 2 2020-02-15T06:59:38Z +2952 2005-06-20T06:26:57Z 3759 13 2005-06-22T11:51:57Z 1 2020-02-15T06:59:38Z +2953 2005-06-20T06:39:11Z 1829 540 2005-06-26T06:19:11Z 1 2020-02-15T06:59:38Z +2954 2005-06-20T06:45:00Z 377 336 2005-06-23T11:43:00Z 1 2020-02-15T06:59:38Z +2955 2005-06-20T06:46:35Z 2312 244 2005-06-25T05:34:35Z 2 2020-02-15T06:59:38Z +2956 2005-06-20T06:47:23Z 2684 533 2005-06-22T07:24:23Z 2 2020-02-15T06:59:38Z +2957 2005-06-20T06:53:47Z 4034 542 2005-06-29T09:21:47Z 2 2020-02-15T06:59:38Z +2958 2005-06-20T06:56:20Z 1380 260 2005-06-29T02:33:20Z 2 2020-02-15T06:59:38Z +2959 2005-06-20T07:07:54Z 4185 372 2005-06-27T03:31:54Z 1 2020-02-15T06:59:38Z +2960 2005-06-20T07:10:09Z 3970 16 2005-06-26T08:14:09Z 2 2020-02-15T06:59:38Z +2961 2005-06-20T07:29:15Z 4539 399 2005-06-24T08:05:15Z 1 2020-02-15T06:59:38Z +2962 2005-06-20T07:31:55Z 2978 364 2005-06-26T04:43:55Z 1 2020-02-15T06:59:38Z +2963 2005-06-20T07:33:09Z 1444 24 2005-06-28T09:23:09Z 1 2020-02-15T06:59:38Z +2964 2005-06-20T07:33:29Z 1201 590 2005-06-29T12:48:29Z 1 2020-02-15T06:59:38Z +2965 2005-06-20T07:33:38Z 27 46 2005-06-29T11:45:38Z 1 2020-02-15T06:59:38Z +2966 2005-06-20T07:39:33Z 3483 511 2005-06-29T07:48:33Z 1 2020-02-15T06:59:38Z +2967 2005-06-20T07:40:35Z 4243 311 2005-06-29T05:50:35Z 2 2020-02-15T06:59:38Z +2968 2005-06-20T07:41:47Z 4415 252 2005-06-23T04:27:47Z 1 2020-02-15T06:59:38Z +2969 2005-06-20T07:44:27Z 1748 418 2005-06-22T06:12:27Z 2 2020-02-15T06:59:38Z +2970 2005-06-20T07:51:51Z 1167 449 2005-06-28T10:14:51Z 2 2020-02-15T06:59:38Z +2971 2005-06-20T07:56:00Z 1585 410 2005-06-27T11:38:00Z 2 2020-02-15T06:59:38Z +2972 2005-06-20T07:57:54Z 2232 531 2005-06-21T12:48:54Z 1 2020-02-15T06:59:38Z +2973 2005-06-20T07:59:27Z 2626 96 2005-06-24T12:31:27Z 1 2020-02-15T06:59:38Z +2974 2005-06-20T08:00:24Z 2322 472 2005-06-25T05:10:24Z 2 2020-02-15T06:59:38Z +2975 2005-06-20T08:06:18Z 4534 46 2005-06-21T08:01:18Z 1 2020-02-15T06:59:38Z +2976 2005-06-20T08:09:11Z 4210 55 2005-06-21T10:45:11Z 1 2020-02-15T06:59:38Z +2977 2005-06-20T08:15:27Z 2645 571 2005-06-29T04:30:27Z 2 2020-02-15T06:59:38Z +2978 2005-06-20T08:25:16Z 4364 548 2005-06-23T05:42:16Z 1 2020-02-15T06:59:38Z +2979 2005-06-20T08:31:05Z 3961 589 2005-06-27T12:25:05Z 1 2020-02-15T06:59:38Z +2980 2005-06-20T08:35:03Z 310 343 2005-06-29T07:57:03Z 2 2020-02-15T06:59:38Z +2981 2005-06-20T08:35:17Z 522 387 2005-06-28T09:14:17Z 1 2020-02-15T06:59:38Z +2982 2005-06-20T08:38:29Z 2574 130 2005-06-28T13:21:29Z 1 2020-02-15T06:59:38Z +2983 2005-06-20T08:41:42Z 1349 322 2005-06-29T04:02:42Z 2 2020-02-15T06:59:38Z +2984 2005-06-20T08:43:44Z 1819 435 2005-06-22T03:08:44Z 2 2020-02-15T06:59:38Z +2985 2005-06-20T08:45:08Z 122 154 2005-06-22T04:26:08Z 2 2020-02-15T06:59:38Z +2986 2005-06-20T08:50:28Z 478 556 2005-06-26T05:24:28Z 2 2020-02-15T06:59:38Z +2987 2005-06-20T08:55:50Z 1531 349 2005-06-28T13:02:50Z 2 2020-02-15T06:59:38Z +2988 2005-06-20T08:59:08Z 3160 557 2005-06-28T04:31:08Z 2 2020-02-15T06:59:38Z +2989 2005-06-20T08:59:37Z 1586 56 2005-06-22T03:27:37Z 2 2020-02-15T06:59:38Z +2990 2005-06-20T09:02:51Z 4559 18 2005-06-29T13:19:51Z 2 2020-02-15T06:59:38Z +2991 2005-06-20T09:10:43Z 4308 472 2005-06-23T13:04:43Z 1 2020-02-15T06:59:38Z +2992 2005-06-20T09:11:51Z 3347 439 2005-06-24T05:59:51Z 1 2020-02-15T06:59:38Z +2993 2005-06-20T09:12:12Z 1527 40 2005-06-22T13:36:12Z 2 2020-02-15T06:59:38Z +2994 2005-06-20T09:17:05Z 1290 163 2005-06-29T04:41:05Z 1 2020-02-15T06:59:38Z +2995 2005-06-20T09:18:22Z 4544 573 2005-06-26T14:31:22Z 1 2020-02-15T06:59:38Z +2996 2005-06-20T09:20:29Z 4064 500 2005-06-27T09:18:29Z 1 2020-02-15T06:59:38Z +2997 2005-06-20T09:23:45Z 1449 519 2005-06-29T08:15:45Z 1 2020-02-15T06:59:38Z +2998 2005-06-20T09:30:22Z 1288 380 2005-06-24T06:31:22Z 2 2020-02-15T06:59:38Z +2999 2005-06-20T09:30:34Z 735 295 2005-06-26T05:51:34Z 2 2020-02-15T06:59:38Z +3000 2005-06-20T09:32:33Z 549 50 2005-06-22T07:45:33Z 1 2020-02-15T06:59:38Z +3001 2005-06-20T09:50:16Z 2941 393 2005-06-28T05:13:16Z 2 2020-02-15T06:59:38Z +3002 2005-06-20T09:56:12Z 2749 266 2005-06-24T12:15:12Z 2 2020-02-15T06:59:38Z +3003 2005-06-20T10:00:51Z 616 38 2005-06-22T06:28:51Z 2 2020-02-15T06:59:38Z +3004 2005-06-20T10:04:36Z 2836 113 2005-06-23T07:38:36Z 2 2020-02-15T06:59:38Z +3005 2005-06-20T10:10:29Z 286 598 2005-06-28T15:48:29Z 2 2020-02-15T06:59:38Z +3006 2005-06-20T10:10:29Z 1677 133 2005-06-22T07:26:29Z 2 2020-02-15T06:59:38Z +3007 2005-06-20T10:11:53Z 1950 7 2005-06-25T04:51:53Z 2 2020-02-15T06:59:38Z +3008 2005-06-20T10:23:25Z 3383 202 2005-06-26T11:00:25Z 2 2020-02-15T06:59:38Z +3009 2005-06-20T10:24:44Z 2721 280 2005-06-23T13:39:44Z 1 2020-02-15T06:59:38Z +3010 2005-06-20T10:29:59Z 1298 567 2005-06-27T06:52:59Z 1 2020-02-15T06:59:38Z +3011 2005-06-20T10:39:10Z 4376 147 2005-06-28T07:02:10Z 2 2020-02-15T06:59:38Z +3012 2005-06-20T10:43:13Z 1392 206 2005-06-28T10:07:13Z 2 2020-02-15T06:59:38Z +3013 2005-06-20T10:45:09Z 4146 290 2005-06-26T04:55:09Z 1 2020-02-15T06:59:38Z +3014 2005-06-20T10:45:20Z 2179 434 2005-06-23T06:29:20Z 1 2020-02-15T06:59:38Z +3015 2005-06-20T10:48:56Z 1311 23 2005-06-26T11:30:56Z 2 2020-02-15T06:59:38Z +3016 2005-06-20T10:55:08Z 3514 558 2005-06-24T14:05:08Z 1 2020-02-15T06:59:38Z +3017 2005-06-20T11:08:56Z 2513 151 2005-06-28T16:26:56Z 1 2020-02-15T06:59:38Z +3018 2005-06-20T11:10:35Z 4150 112 2005-06-25T07:17:35Z 2 2020-02-15T06:59:38Z +3019 2005-06-20T11:11:52Z 491 144 2005-06-27T08:30:52Z 2 2020-02-15T06:59:38Z +3020 2005-06-20T11:12:04Z 4363 74 2005-06-27T07:31:04Z 2 2020-02-15T06:59:38Z +3021 2005-06-20T11:13:01Z 120 62 2005-06-28T16:15:01Z 2 2020-02-15T06:59:38Z +3022 2005-06-20T11:17:20Z 3745 466 2005-06-26T13:15:20Z 2 2020-02-15T06:59:38Z +3023 2005-06-20T11:18:11Z 4304 106 2005-06-21T12:43:11Z 1 2020-02-15T06:59:38Z +3024 2005-06-20T11:29:17Z 1966 328 2005-06-27T12:51:17Z 2 2020-02-15T06:59:38Z +3025 2005-06-20T11:46:48Z 1309 293 2005-06-22T08:43:48Z 1 2020-02-15T06:59:38Z +3026 2005-06-20T11:48:00Z 4032 347 2005-06-21T12:51:00Z 2 2020-02-15T06:59:38Z +3027 2005-06-20T11:50:30Z 4028 397 2005-06-25T15:58:30Z 2 2020-02-15T06:59:38Z +3028 2005-06-20T11:50:52Z 886 264 2005-06-21T11:05:52Z 2 2020-02-15T06:59:38Z +3029 2005-06-20T11:51:30Z 327 317 2005-06-25T16:42:30Z 1 2020-02-15T06:59:38Z +3030 2005-06-20T11:51:59Z 1543 395 2005-06-24T10:51:59Z 1 2020-02-15T06:59:38Z +3031 2005-06-20T11:52:49Z 1184 491 2005-06-22T07:00:49Z 1 2020-02-15T06:59:38Z +3032 2005-06-20T11:58:30Z 3734 172 2005-06-24T09:49:30Z 1 2020-02-15T06:59:38Z +3033 2005-06-20T12:02:05Z 4422 107 2005-06-26T15:58:05Z 1 2020-02-15T06:59:38Z +3034 2005-06-20T12:15:50Z 2755 296 2005-06-24T06:21:50Z 2 2020-02-15T06:59:38Z +3035 2005-06-20T12:17:03Z 1223 62 2005-06-26T17:42:03Z 2 2020-02-15T06:59:38Z +3036 2005-06-20T12:18:31Z 4463 399 2005-06-29T09:52:31Z 1 2020-02-15T06:59:38Z +3037 2005-06-20T12:28:03Z 2033 434 2005-06-21T08:21:03Z 1 2020-02-15T06:59:38Z +3038 2005-06-20T12:28:59Z 2919 27 2005-06-25T07:48:59Z 1 2020-02-15T06:59:38Z +3039 2005-06-20T12:32:30Z 4098 186 2005-06-21T07:38:30Z 1 2020-02-15T06:59:38Z +3040 2005-06-20T12:34:13Z 2568 162 2005-06-21T12:33:13Z 1 2020-02-15T06:59:38Z +3041 2005-06-20T12:35:44Z 2676 459 2005-06-23T18:28:44Z 2 2020-02-15T06:59:38Z +3042 2005-06-20T12:38:27Z 3103 291 2005-06-26T11:18:27Z 1 2020-02-15T06:59:38Z +3043 2005-06-20T12:38:35Z 633 599 2005-06-29T14:16:35Z 2 2020-02-15T06:59:38Z +3044 2005-06-20T12:38:49Z 3216 424 2005-06-25T07:49:49Z 1 2020-02-15T06:59:38Z +3045 2005-06-20T12:42:00Z 3065 459 2005-06-23T10:49:00Z 2 2020-02-15T06:59:38Z +3046 2005-06-20T12:42:59Z 471 559 2005-06-26T17:40:59Z 2 2020-02-15T06:59:38Z +3047 2005-06-20T12:45:33Z 624 13 2005-06-29T13:09:33Z 2 2020-02-15T06:59:38Z +3048 2005-06-20T12:49:55Z 4389 482 2005-06-26T11:06:55Z 1 2020-02-15T06:59:38Z +3049 2005-06-20T12:51:01Z 518 403 2005-06-29T10:53:01Z 1 2020-02-15T06:59:38Z +3050 2005-06-20T13:03:03Z 2397 557 2005-06-29T07:22:03Z 1 2020-02-15T06:59:38Z +3051 2005-06-20T13:06:52Z 1408 65 2005-06-25T13:03:52Z 2 2020-02-15T06:59:38Z +3052 2005-06-20T13:09:19Z 2359 329 2005-06-29T11:55:19Z 2 2020-02-15T06:59:38Z +3053 2005-06-20T13:10:30Z 818 329 2005-06-25T17:22:30Z 2 2020-02-15T06:59:38Z +3054 2005-06-20T13:16:41Z 2817 322 2005-06-28T13:45:41Z 2 2020-02-15T06:59:38Z +3055 2005-06-20T13:19:58Z 1510 23 2005-06-27T14:54:58Z 1 2020-02-15T06:59:38Z +3056 2005-06-20T13:20:58Z 2010 95 2005-06-26T08:35:58Z 2 2020-02-15T06:59:38Z +3057 2005-06-20T13:22:48Z 1101 307 2005-06-26T17:22:48Z 2 2020-02-15T06:59:38Z +3058 2005-06-20T13:28:35Z 938 137 2005-06-28T13:57:35Z 2 2020-02-15T06:59:38Z +3059 2005-06-20T13:38:41Z 2911 266 2005-06-21T10:13:41Z 2 2020-02-15T06:59:38Z +3060 2005-06-20T13:47:20Z 2075 446 2005-06-25T16:00:20Z 2 2020-02-15T06:59:38Z +3061 2005-06-20T13:48:21Z 4202 330 2005-06-22T17:36:21Z 2 2020-02-15T06:59:38Z +3062 2005-06-20T13:50:00Z 591 75 2005-06-27T08:18:00Z 1 2020-02-15T06:59:38Z +3063 2005-06-20T13:52:03Z 3954 515 2005-06-28T13:36:03Z 2 2020-02-15T06:59:38Z +3064 2005-06-20T13:53:13Z 2624 276 2005-06-25T16:33:13Z 2 2020-02-15T06:59:38Z +3065 2005-06-20T13:53:53Z 1687 227 2005-06-24T11:31:53Z 1 2020-02-15T06:59:38Z +3066 2005-06-20T13:55:41Z 1116 268 2005-06-26T09:38:41Z 2 2020-02-15T06:59:38Z +3067 2005-06-20T13:59:21Z 3094 349 2005-06-28T19:09:21Z 2 2020-02-15T06:59:38Z +3068 2005-06-20T14:02:22Z 1958 516 2005-06-22T12:52:22Z 2 2020-02-15T06:59:38Z +3069 2005-06-20T14:13:00Z 1952 237 2005-06-28T10:57:00Z 1 2020-02-15T06:59:38Z +3070 2005-06-20T14:15:39Z 3860 543 2005-06-25T12:52:39Z 2 2020-02-15T06:59:38Z +3071 2005-06-20T14:20:42Z 1198 582 2005-06-24T19:01:42Z 1 2020-02-15T06:59:38Z +3072 2005-06-20T14:21:31Z 4131 423 2005-06-27T18:46:31Z 2 2020-02-15T06:59:38Z +3073 2005-06-20T14:33:26Z 3164 471 2005-06-26T08:42:26Z 2 2020-02-15T06:59:38Z +3074 2005-06-20T14:41:41Z 1441 299 2005-06-21T15:56:41Z 1 2020-02-15T06:59:38Z +3075 2005-06-20T14:52:19Z 4346 161 2005-06-28T18:48:19Z 2 2020-02-15T06:59:38Z +3076 2005-06-20T15:01:19Z 1344 109 2005-06-28T16:53:19Z 2 2020-02-15T06:59:38Z +3077 2005-06-20T15:05:18Z 1675 303 2005-06-26T20:52:18Z 2 2020-02-15T06:59:38Z +3078 2005-06-20T15:09:48Z 3642 367 2005-06-24T16:54:48Z 1 2020-02-15T06:59:38Z +3079 2005-06-20T15:13:40Z 2135 350 2005-06-21T12:03:40Z 1 2020-02-15T06:59:38Z +3080 2005-06-20T15:22:32Z 118 377 2005-06-24T11:08:32Z 1 2020-02-15T06:59:38Z +3081 2005-06-20T15:29:13Z 2071 342 2005-06-24T21:00:13Z 2 2020-02-15T06:59:38Z +3082 2005-06-20T15:32:11Z 4431 164 2005-06-28T13:08:11Z 1 2020-02-15T06:59:38Z +3083 2005-06-20T15:33:47Z 2896 257 2005-06-26T16:14:47Z 2 2020-02-15T06:59:38Z +3084 2005-06-20T15:35:24Z 3578 514 2005-06-23T19:11:24Z 1 2020-02-15T06:59:38Z +3085 2005-06-20T15:42:33Z 4282 166 2005-06-21T16:51:33Z 2 2020-02-15T06:59:38Z +3086 2005-06-20T15:42:40Z 4437 377 2005-06-25T19:21:40Z 1 2020-02-15T06:59:38Z +3087 2005-06-20T15:53:59Z 1305 111 2005-06-27T10:54:59Z 2 2020-02-15T06:59:38Z +3088 2005-06-20T15:56:05Z 3049 384 2005-06-29T13:02:05Z 1 2020-02-15T06:59:38Z +3089 2005-06-20T15:57:01Z 539 151 2005-06-25T13:15:01Z 2 2020-02-15T06:59:38Z +3090 2005-06-20T16:00:19Z 3301 267 2005-06-23T14:55:19Z 1 2020-02-15T06:59:38Z +3091 2005-06-20T16:02:59Z 854 383 2005-06-22T21:30:59Z 2 2020-02-15T06:59:38Z +3092 2005-06-20T16:04:42Z 4344 347 2005-06-27T19:54:42Z 1 2020-02-15T06:59:38Z +3093 2005-06-20T16:06:14Z 2534 556 2005-06-22T13:22:14Z 2 2020-02-15T06:59:38Z +3094 2005-06-20T16:06:51Z 2048 114 2005-06-24T13:23:51Z 1 2020-02-15T06:59:38Z +3095 2005-06-20T16:16:53Z 3937 298 2005-06-22T10:35:53Z 2 2020-02-15T06:59:38Z +3096 2005-06-20T16:17:56Z 3851 79 2005-06-24T10:17:56Z 2 2020-02-15T06:59:38Z +3097 2005-06-20T16:26:14Z 4337 280 2005-06-23T14:46:14Z 1 2020-02-15T06:59:38Z +3098 2005-06-20T16:37:01Z 3409 498 2005-06-22T22:24:01Z 1 2020-02-15T06:59:38Z +3099 2005-06-20T16:44:33Z 3756 380 2005-06-27T12:17:33Z 2 2020-02-15T06:59:38Z +3100 2005-06-20T16:47:57Z 2428 487 2005-06-26T16:59:57Z 1 2020-02-15T06:59:38Z +3101 2005-06-20T16:48:58Z 1738 384 2005-06-27T18:13:58Z 2 2020-02-15T06:59:38Z +3102 2005-06-20T16:55:55Z 1144 522 2005-06-29T13:49:55Z 1 2020-02-15T06:59:38Z +3103 2005-06-20T16:58:19Z 1877 553 2005-06-25T21:18:19Z 1 2020-02-15T06:59:38Z +3104 2005-06-20T17:06:46Z 1490 196 2005-06-28T13:18:46Z 2 2020-02-15T06:59:38Z +3105 2005-06-20T17:11:46Z 130 385 2005-06-21T11:48:46Z 2 2020-02-15T06:59:38Z +3106 2005-06-20T17:18:06Z 2637 201 2005-06-24T14:50:06Z 2 2020-02-15T06:59:38Z +3107 2005-06-20T17:26:05Z 4527 303 2005-06-25T12:36:05Z 1 2020-02-15T06:59:38Z +3108 2005-06-20T17:28:43Z 2218 189 2005-06-27T21:23:43Z 1 2020-02-15T06:59:38Z +3109 2005-06-20T17:33:55Z 977 93 2005-06-22T23:09:55Z 1 2020-02-15T06:59:38Z +3110 2005-06-20T17:40:12Z 2008 333 2005-06-24T17:09:12Z 1 2020-02-15T06:59:38Z +3111 2005-06-20T17:46:47Z 4494 579 2005-06-29T19:45:47Z 1 2020-02-15T06:59:38Z +3112 2005-06-20T17:53:30Z 3725 35 2005-06-26T16:03:30Z 1 2020-02-15T06:59:38Z +3113 2005-06-20T17:56:40Z 3620 517 2005-06-23T14:45:40Z 1 2020-02-15T06:59:38Z +3114 2005-06-20T17:57:47Z 2388 8 2005-06-21T19:18:47Z 2 2020-02-15T06:59:38Z +3115 2005-06-20T17:59:05Z 2193 457 2005-06-26T13:28:05Z 1 2020-02-15T06:59:38Z +3116 2005-06-20T18:04:55Z 276 108 2005-06-21T12:12:55Z 2 2020-02-15T06:59:38Z +3117 2005-06-20T18:05:15Z 2184 31 2005-06-26T17:28:15Z 1 2020-02-15T06:59:38Z +3118 2005-06-20T18:05:57Z 1258 125 2005-06-23T23:01:57Z 1 2020-02-15T06:59:38Z +3119 2005-06-20T18:11:44Z 683 296 2005-06-27T16:14:44Z 2 2020-02-15T06:59:38Z +3120 2005-06-20T18:19:29Z 2530 107 2005-06-23T23:40:29Z 1 2020-02-15T06:59:38Z +3121 2005-06-20T18:23:30Z 797 132 2005-06-21T20:36:30Z 1 2020-02-15T06:59:38Z +3122 2005-06-20T18:25:57Z 2720 87 2005-06-29T16:08:57Z 1 2020-02-15T06:59:38Z +3123 2005-06-20T18:26:14Z 1656 289 2005-06-29T17:17:14Z 1 2020-02-15T06:59:38Z +3124 2005-06-20T18:28:19Z 3342 113 2005-06-28T21:08:19Z 1 2020-02-15T06:59:38Z +3125 2005-06-20T18:31:58Z 3293 382 2005-06-21T15:03:58Z 1 2020-02-15T06:59:38Z +3126 2005-06-20T18:38:22Z 1183 5 2005-06-26T00:00:22Z 1 2020-02-15T06:59:38Z +3127 2005-06-20T18:39:43Z 1292 461 2005-06-28T17:55:43Z 1 2020-02-15T06:59:38Z +3128 2005-06-20T18:41:47Z 189 543 2005-06-24T20:54:47Z 2 2020-02-15T06:59:38Z +3129 2005-06-20T18:57:48Z 1789 495 2005-06-28T13:45:48Z 1 2020-02-15T06:59:38Z +3130 2005-06-20T19:03:22Z 2569 341 2005-06-29T18:05:22Z 2 2020-02-15T06:59:38Z +3131 2005-06-20T19:08:00Z 3678 146 2005-06-24T20:59:00Z 2 2020-02-15T06:59:38Z +3132 2005-06-20T19:09:46Z 711 90 2005-06-24T19:42:46Z 1 2020-02-15T06:59:38Z +3133 2005-06-20T19:18:32Z 4529 120 2005-06-26T17:54:32Z 2 2020-02-15T06:59:38Z +3134 2005-06-20T19:29:09Z 1389 537 2005-06-29T19:31:09Z 2 2020-02-15T06:59:38Z +3135 2005-06-20T19:33:52Z 1122 12 2005-06-29T18:20:52Z 1 2020-02-15T06:59:38Z +3136 2005-06-20T19:39:08Z 3349 377 2005-06-22T23:35:08Z 2 2020-02-15T06:59:38Z +3137 2005-06-20T19:41:28Z 786 505 2005-06-28T00:32:28Z 1 2020-02-15T06:59:38Z +3138 2005-06-20T19:43:45Z 2265 570 2005-06-26T20:41:45Z 1 2020-02-15T06:59:38Z +3139 2005-06-20T19:44:45Z 3474 354 2005-06-23T16:24:45Z 1 2020-02-15T06:59:38Z +3140 2005-06-20T19:47:12Z 2936 53 2005-06-24T23:24:12Z 1 2020-02-15T06:59:38Z +3141 2005-06-20T19:55:47Z 1806 398 2005-06-30T00:31:47Z 1 2020-02-15T06:59:38Z +3142 2005-06-20T19:59:28Z 3926 9 2005-06-28T19:51:28Z 2 2020-02-15T06:59:38Z +3143 2005-06-20T20:01:52Z 1355 215 2005-06-26T19:26:52Z 2 2020-02-15T06:59:38Z +3144 2005-06-20T20:14:20Z 1300 114 2005-06-30T01:46:20Z 1 2020-02-15T06:59:38Z +3145 2005-06-20T20:21:17Z 2211 144 2005-06-22T14:44:17Z 1 2020-02-15T06:59:38Z +3146 2005-06-20T20:21:48Z 2249 339 2005-06-29T22:57:48Z 2 2020-02-15T06:59:38Z +3147 2005-06-20T20:25:17Z 615 390 2005-06-28T20:22:17Z 2 2020-02-15T06:59:38Z +3148 2005-06-20T20:27:18Z 4490 202 2005-06-24T20:30:18Z 2 2020-02-15T06:59:38Z +3149 2005-06-20T20:34:55Z 3295 55 2005-06-21T18:51:55Z 1 2020-02-15T06:59:38Z +3150 2005-06-20T20:35:28Z 94 34 2005-06-26T01:01:28Z 1 2020-02-15T06:59:38Z +3151 2005-06-20T20:36:53Z 2976 77 2005-06-25T18:56:53Z 1 2020-02-15T06:59:38Z +3152 2005-06-20T20:42:41Z 1022 246 2005-06-28T21:12:41Z 1 2020-02-15T06:59:38Z +3153 2005-06-20T20:44:15Z 659 430 2005-06-23T16:04:15Z 1 2020-02-15T06:59:38Z +3154 2005-06-20T20:44:40Z 3195 550 2005-06-23T19:10:40Z 1 2020-02-15T06:59:38Z +3155 2005-06-20T21:02:38Z 458 450 2005-06-27T19:34:38Z 1 2020-02-15T06:59:38Z +3156 2005-06-20T21:03:46Z 2217 365 2005-06-21T23:32:46Z 2 2020-02-15T06:59:38Z +3157 2005-06-20T21:07:54Z 1899 245 2005-06-23T16:01:54Z 1 2020-02-15T06:59:38Z +3158 2005-06-20T21:08:19Z 3461 592 2005-06-29T18:59:19Z 1 2020-02-15T06:59:38Z +3159 2005-06-20T21:11:50Z 33 388 2005-06-29T19:35:50Z 2 2020-02-15T06:59:38Z +3160 2005-06-20T21:20:51Z 4333 561 2005-06-29T18:06:51Z 2 2020-02-15T06:59:38Z +3161 2005-06-20T21:21:01Z 1326 373 2005-06-21T18:22:01Z 2 2020-02-15T06:59:38Z +3162 2005-06-20T21:21:15Z 3220 113 2005-06-29T18:42:15Z 1 2020-02-15T06:59:38Z +3163 2005-06-20T21:22:13Z 2632 391 2005-06-26T15:22:13Z 2 2020-02-15T06:59:38Z +3164 2005-06-20T21:29:00Z 155 270 2005-06-27T15:50:00Z 1 2020-02-15T06:59:38Z +3165 2005-06-20T21:29:17Z 796 85 2005-06-22T18:03:17Z 1 2020-02-15T06:59:38Z +3166 2005-06-20T21:32:32Z 1850 424 2005-06-27T20:29:32Z 1 2020-02-15T06:59:38Z +3167 2005-06-20T21:42:29Z 353 464 2005-06-22T00:36:29Z 2 2020-02-15T06:59:38Z +3168 2005-06-20T21:46:01Z 2407 446 2005-06-22T20:40:01Z 1 2020-02-15T06:59:38Z +3169 2005-06-20T21:55:54Z 2437 50 2005-06-25T19:45:54Z 1 2020-02-15T06:59:38Z +3170 2005-06-20T22:02:54Z 1306 421 2005-06-29T00:41:54Z 2 2020-02-15T06:59:38Z +3171 2005-06-20T22:15:47Z 2838 140 2005-06-24T18:14:47Z 1 2020-02-15T06:59:38Z +3172 2005-06-20T22:19:25Z 1758 31 2005-06-24T17:18:25Z 2 2020-02-15T06:59:38Z +3173 2005-06-20T22:21:10Z 4306 33 2005-06-27T19:41:10Z 2 2020-02-15T06:59:38Z +3174 2005-06-20T22:24:00Z 3331 107 2005-06-22T21:22:00Z 2 2020-02-15T06:59:38Z +3175 2005-06-20T22:30:23Z 4093 249 2005-06-30T03:28:23Z 2 2020-02-15T06:59:38Z +3176 2005-06-20T22:31:54Z 1982 371 2005-06-25T02:58:54Z 1 2020-02-15T06:59:38Z +3177 2005-06-20T22:32:44Z 2546 300 2005-06-22T23:01:44Z 1 2020-02-15T06:59:38Z +3178 2005-06-20T22:35:12Z 3517 79 2005-06-23T19:39:12Z 1 2020-02-15T06:59:38Z +3179 2005-06-20T22:37:59Z 2214 163 2005-06-26T22:26:59Z 2 2020-02-15T06:59:38Z +3180 2005-06-20T22:48:44Z 3997 162 2005-06-21T21:25:44Z 1 2020-02-15T06:59:38Z +3181 2005-06-20T22:51:02Z 3473 238 2005-06-27T21:21:02Z 1 2020-02-15T06:59:38Z +3182 2005-06-20T22:52:18Z 4017 15 2005-06-21T21:00:18Z 2 2020-02-15T06:59:38Z +3183 2005-06-20T22:55:55Z 4397 129 2005-06-23T17:22:55Z 1 2020-02-15T06:59:38Z +3184 2005-06-20T22:57:44Z 3179 457 2005-06-29T20:57:44Z 1 2020-02-15T06:59:38Z +3185 2005-06-20T22:58:01Z 601 234 2005-06-27T00:26:01Z 1 2020-02-15T06:59:38Z +3186 2005-06-20T23:04:20Z 3198 406 2005-06-29T02:56:20Z 2 2020-02-15T06:59:38Z +3187 2005-06-20T23:06:07Z 4357 150 2005-06-27T01:14:07Z 2 2020-02-15T06:59:38Z +3188 2005-06-20T23:10:27Z 2471 522 2005-06-25T19:37:27Z 2 2020-02-15T06:59:38Z +3189 2005-06-20T23:19:33Z 1502 538 2005-06-24T17:46:33Z 1 2020-02-15T06:59:38Z +3190 2005-06-20T23:27:15Z 351 200 2005-06-28T01:22:15Z 2 2020-02-15T06:59:38Z +3191 2005-06-20T23:46:39Z 4358 522 2005-06-25T03:21:39Z 2 2020-02-15T06:59:38Z +3192 2005-06-20T23:49:12Z 3713 11 2005-06-24T03:00:12Z 1 2020-02-15T06:59:38Z +3193 2005-06-20T23:52:30Z 3176 260 2005-06-22T21:21:30Z 1 2020-02-15T06:59:38Z +3194 2005-06-20T23:59:57Z 1835 432 2005-06-24T19:21:57Z 1 2020-02-15T06:59:38Z +3195 2005-06-21T00:02:10Z 2383 165 2005-06-21T23:11:10Z 2 2020-02-15T06:59:38Z +3196 2005-06-21T00:02:28Z 1575 52 2005-06-22T23:08:28Z 1 2020-02-15T06:59:38Z +3197 2005-06-21T00:07:23Z 1811 362 2005-06-23T00:53:23Z 2 2020-02-15T06:59:38Z +3198 2005-06-21T00:08:54Z 1626 295 2005-06-29T02:11:54Z 2 2020-02-15T06:59:38Z +3199 2005-06-21T00:12:40Z 3824 234 2005-06-27T23:26:40Z 1 2020-02-15T06:59:38Z +3200 2005-06-21T00:22:47Z 4117 221 2005-06-27T05:52:47Z 2 2020-02-15T06:59:38Z +3201 2005-06-21T00:30:26Z 6 597 2005-06-28T03:42:26Z 1 2020-02-15T06:59:38Z +3202 2005-06-21T00:33:47Z 2725 273 2005-06-24T04:05:47Z 2 2020-02-15T06:59:38Z +3203 2005-06-21T00:34:56Z 442 158 2005-06-29T23:30:56Z 1 2020-02-15T06:59:38Z +3204 2005-06-21T00:37:50Z 2848 336 2005-06-22T23:46:50Z 1 2020-02-15T06:59:38Z +3205 2005-06-21T00:38:47Z 2964 31 2005-06-21T22:49:47Z 1 2020-02-15T06:59:38Z +3206 2005-06-21T00:39:39Z 2196 350 2005-06-22T05:12:39Z 1 2020-02-15T06:59:38Z +3207 2005-06-21T00:43:16Z 4020 86 2005-06-24T22:13:16Z 1 2020-02-15T06:59:38Z +3208 2005-06-21T00:50:03Z 3169 229 2005-06-24T06:15:03Z 2 2020-02-15T06:59:38Z +3209 2005-06-21T00:51:06Z 287 307 2005-06-22T21:49:06Z 2 2020-02-15T06:59:38Z +3210 2005-06-21T01:00:25Z 467 75 2005-06-23T06:10:25Z 2 2020-02-15T06:59:38Z +3211 2005-06-21T01:01:29Z 1150 415 2005-06-23T04:05:29Z 1 2020-02-15T06:59:38Z +3212 2005-06-21T01:04:35Z 4178 21 2005-06-30T00:10:35Z 2 2020-02-15T06:59:38Z +3213 2005-06-21T01:05:19Z 3832 534 2005-06-27T21:55:19Z 2 2020-02-15T06:59:38Z +3214 2005-06-21T01:08:26Z 776 142 2005-06-23T03:24:26Z 2 2020-02-15T06:59:38Z +3215 2005-06-21T01:11:32Z 4140 279 2005-06-26T19:42:32Z 1 2020-02-15T06:59:38Z +3216 2005-06-21T01:19:37Z 719 534 2005-06-29T06:45:37Z 2 2020-02-15T06:59:38Z +3217 2005-06-21T01:28:12Z 1027 463 2005-06-25T02:51:12Z 2 2020-02-15T06:59:38Z +3218 2005-06-21T01:38:09Z 1828 117 2005-06-23T02:00:09Z 1 2020-02-15T06:59:38Z +3219 2005-06-21T01:43:26Z 3024 129 2005-06-28T23:50:26Z 2 2020-02-15T06:59:38Z +3220 2005-06-21T01:46:25Z 1880 574 2005-06-26T07:44:25Z 2 2020-02-15T06:59:38Z +3221 2005-06-21T01:49:47Z 245 454 2005-06-25T06:31:47Z 1 2020-02-15T06:59:38Z +3222 2005-06-21T01:50:29Z 4023 501 2005-06-27T00:52:29Z 2 2020-02-15T06:59:38Z +3223 2005-06-21T02:06:45Z 1033 299 2005-06-22T07:16:45Z 2 2020-02-15T06:59:38Z +3224 2005-06-21T02:11:36Z 3318 173 2005-06-23T21:17:36Z 1 2020-02-15T06:59:38Z +3225 2005-06-21T02:16:55Z 1003 448 2005-06-27T05:39:55Z 2 2020-02-15T06:59:38Z +3226 2005-06-21T02:18:14Z 4079 576 2005-06-26T22:32:14Z 2 2020-02-15T06:59:38Z +3227 2005-06-21T02:18:25Z 1156 568 2005-06-27T00:59:25Z 1 2020-02-15T06:59:38Z +3228 2005-06-21T02:20:24Z 2489 535 2005-06-29T00:50:24Z 2 2020-02-15T06:59:38Z +3229 2005-06-21T02:20:41Z 2301 81 2005-06-26T00:39:41Z 1 2020-02-15T06:59:38Z +3230 2005-06-21T02:23:16Z 215 83 2005-06-22T01:37:16Z 2 2020-02-15T06:59:38Z +3231 2005-06-21T02:25:00Z 237 28 2005-06-23T05:46:00Z 2 2020-02-15T06:59:38Z +3232 2005-06-21T02:30:37Z 1972 555 2005-06-29T03:10:37Z 1 2020-02-15T06:59:38Z +3233 2005-06-21T02:39:31Z 3542 353 2005-06-28T05:23:31Z 2 2020-02-15T06:59:38Z +3234 2005-06-21T02:39:44Z 3252 459 2005-06-29T07:27:44Z 1 2020-02-15T06:59:38Z +3235 2005-06-21T02:46:17Z 212 49 2005-06-22T20:58:17Z 1 2020-02-15T06:59:38Z +3236 2005-06-21T02:47:43Z 1492 550 2005-06-29T08:04:43Z 2 2020-02-15T06:59:38Z +3237 2005-06-21T02:47:56Z 4399 466 2005-06-27T03:16:56Z 2 2020-02-15T06:59:38Z +3238 2005-06-21T02:48:21Z 2732 77 2005-06-23T04:43:21Z 1 2020-02-15T06:59:38Z +3239 2005-06-21T02:48:40Z 3402 328 2005-06-22T02:49:40Z 2 2020-02-15T06:59:38Z +3240 2005-06-21T02:53:17Z 2938 405 2005-06-30T03:25:17Z 2 2020-02-15T06:59:38Z +3241 2005-06-21T02:54:32Z 1442 499 2005-06-26T21:56:32Z 2 2020-02-15T06:59:38Z +3242 2005-06-21T02:56:24Z 1421 562 2005-06-29T21:41:24Z 2 2020-02-15T06:59:38Z +3243 2005-06-21T03:00:11Z 2556 426 2005-06-25T21:53:11Z 1 2020-02-15T06:59:38Z +3244 2005-06-21T03:01:10Z 291 53 2005-06-24T06:59:10Z 2 2020-02-15T06:59:38Z +3245 2005-06-21T03:06:11Z 2057 358 2005-06-25T08:06:11Z 2 2020-02-15T06:59:38Z +3246 2005-06-21T03:10:01Z 4432 41 2005-06-28T00:46:01Z 1 2020-02-15T06:59:38Z +3247 2005-06-21T03:12:15Z 1406 277 2005-06-27T00:44:15Z 1 2020-02-15T06:59:38Z +3248 2005-06-21T03:12:21Z 3656 78 2005-06-28T03:54:21Z 2 2020-02-15T06:59:38Z +3249 2005-06-21T03:13:19Z 703 410 2005-06-29T04:04:19Z 2 2020-02-15T06:59:38Z +3250 2005-06-21T03:16:36Z 736 467 2005-06-29T00:53:36Z 2 2020-02-15T06:59:38Z +3251 2005-06-21T03:20:37Z 1414 317 2005-06-23T04:54:37Z 2 2020-02-15T06:59:38Z +3252 2005-06-21T03:25:26Z 2009 213 2005-06-24T00:38:26Z 2 2020-02-15T06:59:38Z +3253 2005-06-21T03:25:37Z 1906 405 2005-06-27T02:46:37Z 2 2020-02-15T06:59:38Z +3254 2005-06-21T03:27:10Z 3893 472 2005-06-22T22:01:10Z 2 2020-02-15T06:59:38Z +3255 2005-06-21T03:39:52Z 2564 482 2005-06-24T04:02:52Z 1 2020-02-15T06:59:38Z +3256 2005-06-21T03:45:42Z 1235 319 2005-06-30T02:51:42Z 2 2020-02-15T06:59:38Z +3257 2005-06-21T03:47:19Z 3975 263 2005-06-28T01:24:19Z 2 2020-02-15T06:59:38Z +3258 2005-06-21T03:53:58Z 4417 241 2005-06-22T22:49:58Z 2 2020-02-15T06:59:38Z +3259 2005-06-21T03:57:15Z 2751 478 2005-06-24T03:32:15Z 1 2020-02-15T06:59:38Z +3260 2005-06-21T03:59:13Z 3627 380 2005-06-23T03:29:13Z 1 2020-02-15T06:59:38Z +3261 2005-06-21T04:07:41Z 2029 169 2005-06-24T06:25:41Z 2 2020-02-15T06:59:38Z +3262 2005-06-21T04:08:43Z 3773 9 2005-06-28T02:55:43Z 1 2020-02-15T06:59:38Z +3263 2005-06-21T04:15:52Z 3491 118 2005-06-24T02:19:52Z 2 2020-02-15T06:59:38Z +3264 2005-06-21T04:19:03Z 1666 340 2005-06-23T01:29:03Z 1 2020-02-15T06:59:38Z +3265 2005-06-21T04:23:13Z 3637 437 2005-06-28T03:37:13Z 1 2020-02-15T06:59:38Z +3266 2005-06-21T04:49:07Z 2533 175 2005-06-26T05:19:07Z 2 2020-02-15T06:59:38Z +3267 2005-06-21T04:55:21Z 1118 134 2005-06-29T23:46:21Z 1 2020-02-15T06:59:38Z +3268 2005-06-21T04:55:49Z 4366 329 2005-06-30T00:23:49Z 2 2020-02-15T06:59:38Z +3269 2005-06-21T05:06:30Z 3828 17 2005-06-27T09:26:30Z 2 2020-02-15T06:59:38Z +3270 2005-06-21T05:07:31Z 1578 86 2005-06-22T07:45:31Z 2 2020-02-15T06:59:38Z +3271 2005-06-21T05:16:10Z 4191 196 2005-06-27T10:46:10Z 1 2020-02-15T06:59:38Z +3272 2005-06-21T05:18:27Z 1090 550 2005-06-30T02:51:27Z 1 2020-02-15T06:59:38Z +3273 2005-06-21T05:24:17Z 3538 104 2005-06-23T01:21:17Z 2 2020-02-15T06:59:38Z +3274 2005-06-21T05:30:36Z 2156 277 2005-06-24T05:12:36Z 1 2020-02-15T06:59:38Z +3275 2005-06-21T05:33:04Z 2320 368 2005-06-30T00:37:04Z 2 2020-02-15T06:59:38Z +3276 2005-06-21T05:35:52Z 1890 425 2005-06-29T03:26:52Z 2 2020-02-15T06:59:38Z +3277 2005-06-21T05:36:37Z 1330 229 2005-06-29T10:54:37Z 1 2020-02-15T06:59:38Z +3278 2005-06-21T05:41:30Z 2832 554 2005-06-22T03:43:30Z 1 2020-02-15T06:59:38Z +3279 2005-06-21T06:05:53Z 1672 462 2005-06-25T09:40:53Z 1 2020-02-15T06:59:38Z +3280 2005-06-21T06:08:12Z 661 229 2005-06-24T09:34:12Z 1 2020-02-15T06:59:38Z +3281 2005-06-21T06:08:47Z 4006 363 2005-06-24T11:22:47Z 1 2020-02-15T06:59:38Z +3282 2005-06-21T06:18:42Z 1676 224 2005-06-28T09:18:42Z 1 2020-02-15T06:59:38Z +3283 2005-06-21T06:19:07Z 3988 372 2005-06-26T10:59:07Z 2 2020-02-15T06:59:38Z +3284 2005-06-21T06:24:45Z 4566 1 2005-06-28T03:28:45Z 1 2020-02-15T06:59:38Z +3285 2005-06-21T06:30:13Z 948 481 2005-06-23T10:31:13Z 2 2020-02-15T06:59:38Z +3286 2005-06-21T06:31:29Z 742 577 2005-06-25T00:46:29Z 2 2020-02-15T06:59:38Z +3287 2005-06-21T06:32:39Z 4406 62 2005-06-24T09:29:39Z 2 2020-02-15T06:59:38Z +3288 2005-06-21T06:36:59Z 1961 299 2005-06-30T06:50:59Z 1 2020-02-15T06:59:38Z +3289 2005-06-21T06:41:48Z 2248 115 2005-06-30T00:54:48Z 1 2020-02-15T06:59:38Z +3290 2005-06-21T06:45:34Z 2727 293 2005-06-28T09:44:34Z 1 2020-02-15T06:59:38Z +3291 2005-06-21T06:55:36Z 3866 274 2005-06-29T03:41:36Z 1 2020-02-15T06:59:38Z +3292 2005-06-21T06:59:11Z 3288 412 2005-06-23T07:11:11Z 1 2020-02-15T06:59:38Z +3293 2005-06-21T06:59:33Z 4407 481 2005-06-25T06:54:33Z 2 2020-02-15T06:59:38Z +3294 2005-06-21T07:03:23Z 2390 439 2005-06-30T02:22:23Z 2 2020-02-15T06:59:38Z +3295 2005-06-21T07:04:17Z 1703 573 2005-06-29T01:52:17Z 1 2020-02-15T06:59:38Z +3296 2005-06-21T07:04:53Z 2453 284 2005-06-25T08:36:53Z 1 2020-02-15T06:59:38Z +3297 2005-06-21T07:08:19Z 3969 193 2005-06-28T11:53:19Z 2 2020-02-15T06:59:38Z +3298 2005-06-21T07:09:44Z 444 492 2005-06-30T11:26:44Z 2 2020-02-15T06:59:38Z +3299 2005-06-21T07:23:34Z 3427 199 2005-06-27T04:02:34Z 1 2020-02-15T06:59:38Z +3300 2005-06-21T07:25:01Z 2505 565 2005-06-25T01:47:01Z 1 2020-02-15T06:59:38Z +3301 2005-06-21T07:32:25Z 503 444 2005-06-28T06:26:25Z 2 2020-02-15T06:59:38Z +3302 2005-06-21T07:33:40Z 562 594 2005-06-29T06:02:40Z 1 2020-02-15T06:59:38Z +3303 2005-06-21T07:34:14Z 1565 361 2005-06-26T13:18:14Z 2 2020-02-15T06:59:38Z +3304 2005-06-21T07:43:40Z 2154 431 2005-06-27T08:06:40Z 2 2020-02-15T06:59:38Z +3305 2005-06-21T07:46:57Z 2811 578 2005-06-27T06:16:57Z 1 2020-02-15T06:59:38Z +3306 2005-06-21T07:46:58Z 1669 406 2005-06-26T11:22:58Z 2 2020-02-15T06:59:38Z +3307 2005-06-21T07:52:30Z 462 85 2005-06-25T02:36:30Z 2 2020-02-15T06:59:38Z +3308 2005-06-21T07:58:36Z 3129 96 2005-06-23T05:23:36Z 2 2020-02-15T06:59:38Z +3309 2005-06-21T08:00:49Z 248 463 2005-06-29T04:11:49Z 2 2020-02-15T06:59:38Z +3310 2005-06-21T08:04:51Z 1717 395 2005-06-22T04:20:51Z 2 2020-02-15T06:59:38Z +3311 2005-06-21T08:05:27Z 3438 518 2005-06-22T06:51:27Z 2 2020-02-15T06:59:38Z +3312 2005-06-21T08:05:32Z 1008 554 2005-06-27T03:34:32Z 2 2020-02-15T06:59:38Z +3313 2005-06-21T08:11:18Z 4267 213 2005-06-23T04:28:18Z 2 2020-02-15T06:59:38Z +3314 2005-06-21T08:17:00Z 4332 185 2005-06-22T06:00:00Z 2 2020-02-15T06:59:38Z +3315 2005-06-21T08:17:04Z 4108 438 2005-06-24T11:04:04Z 1 2020-02-15T06:59:38Z +3316 2005-06-21T08:20:18Z 3271 451 2005-06-28T07:44:18Z 1 2020-02-15T06:59:38Z +3317 2005-06-21T08:22:32Z 4095 584 2005-06-26T14:18:32Z 2 2020-02-15T06:59:39Z +3318 2005-06-21T08:23:05Z 1111 414 2005-06-27T14:07:05Z 2 2020-02-15T06:59:39Z +3319 2005-06-21T08:25:46Z 2482 461 2005-06-27T03:54:46Z 2 2020-02-15T06:59:39Z +3320 2005-06-21T08:29:41Z 860 47 2005-06-29T13:54:41Z 2 2020-02-15T06:59:39Z +3321 2005-06-21T08:33:26Z 1750 144 2005-06-24T10:09:26Z 2 2020-02-15T06:59:39Z +3322 2005-06-21T08:42:37Z 4324 458 2005-06-22T13:17:37Z 1 2020-02-15T06:59:39Z +3323 2005-06-21T08:45:33Z 2252 272 2005-06-28T08:17:33Z 2 2020-02-15T06:59:39Z +3324 2005-06-21T08:49:16Z 2830 29 2005-06-22T12:31:16Z 1 2020-02-15T06:59:39Z +3325 2005-06-21T08:51:44Z 1720 185 2005-06-27T06:16:44Z 1 2020-02-15T06:59:39Z +3326 2005-06-21T09:04:50Z 1025 347 2005-06-30T12:10:50Z 2 2020-02-15T06:59:39Z +3327 2005-06-21T09:04:50Z 3083 62 2005-06-30T05:45:50Z 1 2020-02-15T06:59:39Z +3328 2005-06-21T09:08:44Z 2462 292 2005-06-30T12:28:44Z 1 2020-02-15T06:59:39Z +3329 2005-06-21T09:20:31Z 3506 335 2005-06-22T10:00:31Z 2 2020-02-15T06:59:39Z +3330 2005-06-21T09:22:37Z 299 294 2005-06-23T07:16:37Z 2 2020-02-15T06:59:39Z +3331 2005-06-21T09:37:53Z 2913 352 2005-06-26T04:01:53Z 2 2020-02-15T06:59:39Z +3332 2005-06-21T09:55:12Z 1975 82 2005-06-25T08:32:12Z 2 2020-02-15T06:59:39Z +3333 2005-06-21T10:01:36Z 3688 111 2005-06-25T10:27:36Z 2 2020-02-15T06:59:39Z +3334 2005-06-21T10:04:33Z 2491 66 2005-06-29T06:09:33Z 2 2020-02-15T06:59:39Z +3335 2005-06-21T10:09:08Z 3033 339 2005-06-27T11:33:08Z 1 2020-02-15T06:59:39Z +3336 2005-06-21T10:14:27Z 2122 173 2005-06-22T09:29:27Z 1 2020-02-15T06:59:39Z +3337 2005-06-21T10:24:35Z 1176 318 2005-06-22T13:51:35Z 1 2020-02-15T06:59:39Z +3338 2005-06-21T10:27:31Z 2097 171 2005-06-30T14:15:31Z 2 2020-02-15T06:59:39Z +3339 2005-06-21T10:37:11Z 312 526 2005-06-30T05:04:11Z 2 2020-02-15T06:59:39Z +3340 2005-06-21T10:37:23Z 2962 540 2005-06-26T07:21:23Z 2 2020-02-15T06:59:39Z +3341 2005-06-21T10:37:25Z 2189 591 2005-06-26T15:38:25Z 1 2020-02-15T06:59:39Z +3342 2005-06-21T10:46:36Z 2884 196 2005-06-23T09:46:36Z 2 2020-02-15T06:59:39Z +3343 2005-06-21T10:56:59Z 2038 466 2005-06-25T16:41:59Z 1 2020-02-15T06:59:39Z +3344 2005-06-21T10:57:27Z 4401 277 2005-06-28T10:53:27Z 1 2020-02-15T06:59:39Z +3345 2005-06-21T11:05:07Z 4442 71 2005-06-26T15:14:07Z 2 2020-02-15T06:59:39Z +3346 2005-06-21T11:06:53Z 4393 189 2005-06-22T15:19:53Z 2 2020-02-15T06:59:39Z +3347 2005-06-21T11:08:32Z 4330 448 2005-06-28T09:59:32Z 1 2020-02-15T06:59:39Z +3348 2005-06-21T11:16:42Z 2945 16 2005-06-27T13:50:42Z 2 2020-02-15T06:59:39Z +3349 2005-06-21T11:17:35Z 3885 336 2005-06-22T12:51:35Z 2 2020-02-15T06:59:39Z +3350 2005-06-21T11:21:38Z 3221 20 2005-06-28T15:37:38Z 2 2020-02-15T06:59:39Z +3351 2005-06-21T11:21:39Z 1591 386 2005-06-23T07:23:39Z 2 2020-02-15T06:59:39Z +3352 2005-06-21T11:26:29Z 578 510 2005-06-28T07:26:29Z 1 2020-02-15T06:59:39Z +3353 2005-06-21T11:29:23Z 3984 236 2005-06-27T15:06:23Z 1 2020-02-15T06:59:39Z +3354 2005-06-21T11:29:49Z 1083 529 2005-06-25T07:39:49Z 2 2020-02-15T06:59:39Z +3355 2005-06-21T11:30:47Z 1960 275 2005-06-23T06:04:47Z 1 2020-02-15T06:59:39Z +3356 2005-06-21T11:38:45Z 4532 403 2005-06-26T17:18:45Z 1 2020-02-15T06:59:39Z +3357 2005-06-21T11:55:42Z 2528 57 2005-06-22T07:19:42Z 2 2020-02-15T06:59:39Z +3358 2005-06-21T11:56:40Z 1772 69 2005-06-26T08:28:40Z 2 2020-02-15T06:59:39Z +3359 2005-06-21T12:08:18Z 3825 67 2005-06-25T16:35:18Z 2 2020-02-15T06:59:39Z +3360 2005-06-21T12:12:41Z 2792 498 2005-06-26T06:32:41Z 1 2020-02-15T06:59:39Z +3361 2005-06-21T12:14:23Z 2671 268 2005-06-26T10:01:23Z 2 2020-02-15T06:59:39Z +3362 2005-06-21T12:19:54Z 1284 454 2005-06-23T06:59:54Z 2 2020-02-15T06:59:39Z +3363 2005-06-21T12:25:07Z 538 261 2005-06-27T11:52:07Z 2 2020-02-15T06:59:39Z +3364 2005-06-21T12:37:46Z 2329 201 2005-06-28T07:18:46Z 2 2020-02-15T06:59:39Z +3365 2005-06-21T12:55:48Z 657 133 2005-06-23T13:38:48Z 2 2020-02-15T06:59:39Z +3366 2005-06-21T13:03:37Z 2584 511 2005-06-26T16:29:37Z 1 2020-02-15T06:59:39Z +3367 2005-06-21T13:08:21Z 2442 80 2005-06-26T08:43:21Z 2 2020-02-15T06:59:39Z +3368 2005-06-21T13:18:38Z 548 438 2005-06-23T11:13:38Z 1 2020-02-15T06:59:39Z +3369 2005-06-21T13:20:31Z 303 431 2005-06-30T13:45:31Z 2 2020-02-15T06:59:39Z +3370 2005-06-21T13:27:01Z 1573 559 2005-06-25T09:27:01Z 1 2020-02-15T06:59:39Z +3371 2005-06-21T13:27:22Z 2526 595 2005-06-29T14:04:22Z 2 2020-02-15T06:59:39Z +3372 2005-06-21T13:34:19Z 4169 346 2005-06-27T08:41:19Z 2 2020-02-15T06:59:39Z +3373 2005-06-21T13:35:32Z 2219 316 2005-06-30T12:03:32Z 1 2020-02-15T06:59:39Z +3374 2005-06-21T13:36:30Z 1067 279 2005-06-23T15:10:30Z 2 2020-02-15T06:59:39Z +3375 2005-06-21T13:37:18Z 912 279 2005-06-22T11:26:18Z 2 2020-02-15T06:59:39Z +3376 2005-06-21T13:43:02Z 3055 318 2005-06-28T18:07:02Z 1 2020-02-15T06:59:39Z +3377 2005-06-21T13:51:12Z 1845 428 2005-06-22T18:16:12Z 1 2020-02-15T06:59:39Z +3378 2005-06-21T13:51:28Z 35 387 2005-06-25T09:21:28Z 1 2020-02-15T06:59:39Z +3379 2005-06-21T13:54:58Z 2022 566 2005-06-23T13:43:58Z 2 2020-02-15T06:59:39Z +3380 2005-06-21T13:58:46Z 3212 483 2005-06-30T09:29:46Z 1 2020-02-15T06:59:39Z +3381 2005-06-21T14:02:59Z 1373 183 2005-06-29T18:11:59Z 2 2020-02-15T06:59:39Z +3382 2005-06-21T14:05:23Z 131 341 2005-06-29T19:13:23Z 2 2020-02-15T06:59:39Z +3383 2005-06-21T14:07:19Z 2968 239 2005-06-29T17:00:19Z 2 2020-02-15T06:59:39Z +3384 2005-06-21T14:07:35Z 409 91 2005-06-26T16:34:35Z 1 2020-02-15T06:59:39Z +3385 2005-06-21T14:16:48Z 2810 514 2005-06-24T10:32:48Z 2 2020-02-15T06:59:39Z +3386 2005-06-21T14:21:06Z 1224 190 2005-06-24T08:32:06Z 2 2020-02-15T06:59:39Z +3387 2005-06-21T14:21:49Z 2709 305 2005-06-24T16:46:49Z 2 2020-02-15T06:59:39Z +3388 2005-06-21T14:34:51Z 556 119 2005-06-28T18:19:51Z 1 2020-02-15T06:59:39Z +3389 2005-06-21T14:37:55Z 727 395 2005-06-28T18:13:55Z 1 2020-02-15T06:59:39Z +3390 2005-06-21T15:10:50Z 2034 151 2005-06-26T12:38:50Z 1 2020-02-15T06:59:39Z +3391 2005-06-21T15:11:02Z 26 45 2005-06-25T14:12:02Z 1 2020-02-15T06:59:39Z +3392 2005-06-21T15:12:44Z 3343 38 2005-06-29T18:19:44Z 1 2020-02-15T06:59:39Z +3393 2005-06-21T15:14:27Z 1631 362 2005-06-25T19:54:27Z 2 2020-02-15T06:59:39Z +3394 2005-06-21T15:17:39Z 3393 295 2005-06-30T13:55:39Z 2 2020-02-15T06:59:39Z +3395 2005-06-21T15:19:19Z 3764 66 2005-06-29T14:23:19Z 2 2020-02-15T06:59:39Z +3396 2005-06-21T15:23:08Z 2744 371 2005-06-23T10:25:08Z 1 2020-02-15T06:59:39Z +3397 2005-06-21T15:30:11Z 602 552 2005-06-22T21:12:11Z 1 2020-02-15T06:59:39Z +3398 2005-06-21T15:34:38Z 221 599 2005-06-29T11:23:38Z 1 2020-02-15T06:59:39Z +3399 2005-06-21T15:47:48Z 619 98 2005-06-26T13:46:48Z 1 2020-02-15T06:59:39Z +3400 2005-06-21T15:50:30Z 1697 298 2005-06-25T18:07:30Z 1 2020-02-15T06:59:39Z +3401 2005-06-21T15:52:43Z 3423 577 2005-06-30T21:09:43Z 2 2020-02-15T06:59:39Z +3402 2005-06-21T15:54:37Z 596 187 2005-06-30T13:43:37Z 1 2020-02-15T06:59:39Z +3403 2005-06-21T15:55:06Z 1741 264 2005-06-27T12:34:06Z 1 2020-02-15T06:59:39Z +3404 2005-06-21T15:57:52Z 2005 424 2005-06-24T20:58:52Z 2 2020-02-15T06:59:39Z +3405 2005-06-21T15:58:25Z 2344 155 2005-06-23T10:58:25Z 1 2020-02-15T06:59:39Z +3406 2005-06-21T16:00:18Z 2049 203 2005-06-23T18:25:18Z 1 2020-02-15T06:59:39Z +3407 2005-06-21T16:14:02Z 3919 343 2005-06-24T15:38:02Z 2 2020-02-15T06:59:39Z +3408 2005-06-21T16:15:11Z 3453 282 2005-06-27T14:55:11Z 1 2020-02-15T06:59:39Z +3409 2005-06-21T16:17:38Z 3374 429 2005-06-22T14:16:38Z 1 2020-02-15T06:59:39Z +3410 2005-06-21T16:20:47Z 1197 321 2005-06-24T19:09:47Z 2 2020-02-15T06:59:39Z +3411 2005-06-21T16:31:27Z 4250 12 2005-06-28T12:27:27Z 2 2020-02-15T06:59:39Z +3412 2005-06-21T16:44:31Z 3036 501 2005-06-28T16:15:31Z 2 2020-02-15T06:59:39Z +3413 2005-06-21T16:57:07Z 666 322 2005-06-30T12:03:07Z 2 2020-02-15T06:59:39Z +3414 2005-06-21T16:58:50Z 2929 226 2005-06-24T17:26:50Z 1 2020-02-15T06:59:39Z +3415 2005-06-21T16:59:49Z 3540 444 2005-06-27T17:19:49Z 1 2020-02-15T06:59:39Z +3416 2005-06-21T17:05:29Z 1215 76 2005-06-23T17:58:29Z 2 2020-02-15T06:59:39Z +3417 2005-06-21T17:06:20Z 874 282 2005-06-23T17:00:20Z 2 2020-02-15T06:59:39Z +3418 2005-06-21T17:06:38Z 4115 85 2005-06-25T19:43:38Z 1 2020-02-15T06:59:39Z +3419 2005-06-21T17:18:01Z 4022 22 2005-06-22T15:08:01Z 1 2020-02-15T06:59:39Z +3420 2005-06-21T17:22:36Z 2523 27 2005-06-28T12:34:36Z 1 2020-02-15T06:59:39Z +3421 2005-06-21T17:22:58Z 3930 346 2005-06-24T18:57:58Z 1 2020-02-15T06:59:39Z +3422 2005-06-21T17:24:40Z 2724 251 2005-06-29T13:59:40Z 2 2020-02-15T06:59:39Z +3423 2005-06-21T17:38:02Z 3612 19 2005-06-23T19:47:02Z 1 2020-02-15T06:59:39Z +3424 2005-06-21T17:42:51Z 1279 583 2005-06-24T23:22:51Z 2 2020-02-15T06:59:39Z +3425 2005-06-21T18:07:07Z 4548 381 2005-06-27T22:59:07Z 2 2020-02-15T06:59:39Z +3426 2005-06-21T18:12:10Z 3019 95 2005-06-23T18:22:10Z 1 2020-02-15T06:59:39Z +3427 2005-06-21T18:31:09Z 560 561 2005-06-22T14:18:09Z 2 2020-02-15T06:59:39Z +3428 2005-06-21T18:39:34Z 1959 40 2005-06-22T18:23:34Z 2 2020-02-15T06:59:39Z +3429 2005-06-21T18:46:05Z 456 599 2005-06-30T17:28:05Z 1 2020-02-15T06:59:39Z +3430 2005-06-21T18:46:08Z 1613 503 2005-06-22T13:49:08Z 2 2020-02-15T06:59:39Z +3431 2005-06-21T18:46:48Z 133 516 2005-06-26T23:08:48Z 1 2020-02-15T06:59:39Z +3432 2005-06-21T19:02:03Z 1814 216 2005-06-25T00:57:03Z 2 2020-02-15T06:59:39Z +3433 2005-06-21T19:07:19Z 1077 228 2005-06-29T18:01:19Z 2 2020-02-15T06:59:39Z +3434 2005-06-21T19:08:28Z 2295 141 2005-06-23T14:25:28Z 1 2020-02-15T06:59:39Z +3435 2005-06-21T19:14:58Z 451 591 2005-06-24T19:58:58Z 1 2020-02-15T06:59:39Z +3436 2005-06-21T19:16:09Z 2740 137 2005-06-30T13:58:09Z 2 2020-02-15T06:59:39Z +3437 2005-06-21T19:20:17Z 1798 211 2005-07-01T01:09:17Z 2 2020-02-15T06:59:39Z +3438 2005-06-21T19:31:40Z 1757 556 2005-06-30T19:08:40Z 1 2020-02-15T06:59:39Z +3439 2005-06-21T19:36:15Z 1529 46 2005-06-23T14:54:15Z 2 2020-02-15T06:59:39Z +3440 2005-06-21T19:58:18Z 853 491 2005-06-27T22:08:18Z 1 2020-02-15T06:59:39Z +3441 2005-06-21T20:00:12Z 2863 326 2005-06-24T00:24:12Z 2 2020-02-15T06:59:39Z +3442 2005-06-21T20:06:51Z 1896 255 2005-06-25T17:35:51Z 2 2020-02-15T06:59:39Z +3443 2005-06-21T20:19:00Z 1639 377 2005-06-30T15:39:00Z 1 2020-02-15T06:59:39Z +3444 2005-06-21T20:39:39Z 493 45 2005-06-25T23:44:39Z 2 2020-02-15T06:59:39Z +3445 2005-06-21T20:40:28Z 2381 74 2005-06-29T00:47:28Z 2 2020-02-15T06:59:39Z +3446 2005-06-21T20:45:51Z 1817 174 2005-06-26T17:02:51Z 1 2020-02-15T06:59:39Z +3447 2005-06-21T20:53:31Z 1146 25 2005-06-24T02:20:31Z 2 2020-02-15T06:59:39Z +3448 2005-06-21T20:59:20Z 592 476 2005-06-24T15:40:20Z 1 2020-02-15T06:59:39Z +3449 2005-06-21T21:01:27Z 210 181 2005-06-27T21:20:27Z 1 2020-02-15T06:59:39Z +3450 2005-06-21T21:01:57Z 2268 126 2005-06-25T23:57:57Z 1 2020-02-15T06:59:39Z +3451 2005-06-21T21:10:39Z 3489 558 2005-06-30T19:03:39Z 2 2020-02-15T06:59:39Z +3452 2005-06-21T21:11:27Z 2646 293 2005-06-24T16:31:27Z 1 2020-02-15T06:59:39Z +3453 2005-06-21T21:12:11Z 842 278 2005-06-23T17:39:11Z 2 2020-02-15T06:59:39Z +3454 2005-06-21T21:12:13Z 3009 524 2005-06-25T23:23:13Z 1 2020-02-15T06:59:39Z +3455 2005-06-21T21:17:51Z 4403 340 2005-06-23T17:22:51Z 1 2020-02-15T06:59:39Z +3456 2005-06-21T21:19:47Z 1119 150 2005-06-28T18:18:47Z 2 2020-02-15T06:59:39Z +3457 2005-06-21T21:42:33Z 883 312 2005-06-30T19:54:33Z 2 2020-02-15T06:59:39Z +3458 2005-06-21T21:42:49Z 2136 338 2005-06-29T01:26:49Z 1 2020-02-15T06:59:39Z +3459 2005-06-21T21:45:47Z 3080 97 2005-06-25T00:46:47Z 1 2020-02-15T06:59:39Z +3460 2005-06-21T21:46:56Z 1765 236 2005-06-29T20:08:56Z 1 2020-02-15T06:59:39Z +3461 2005-06-21T21:49:18Z 1715 23 2005-06-26T19:51:18Z 1 2020-02-15T06:59:39Z +3462 2005-06-21T21:52:52Z 547 568 2005-06-28T21:41:52Z 1 2020-02-15T06:59:39Z +3463 2005-06-21T22:00:00Z 3436 96 2005-06-22T19:22:00Z 2 2020-02-15T06:59:39Z +3464 2005-06-21T22:08:58Z 2698 251 2005-06-26T16:23:58Z 2 2020-02-15T06:59:39Z +3465 2005-06-21T22:10:01Z 1488 510 2005-06-30T21:35:01Z 1 2020-02-15T06:59:39Z +3466 2005-06-21T22:13:33Z 371 226 2005-06-25T21:01:33Z 2 2020-02-15T06:59:39Z +3467 2005-06-21T22:19:25Z 729 543 2005-06-27T00:03:25Z 2 2020-02-15T06:59:39Z +3468 2005-06-21T22:43:45Z 2899 100 2005-06-30T01:49:45Z 1 2020-02-15T06:59:39Z +3469 2005-06-21T22:48:59Z 4087 181 2005-06-28T19:32:59Z 1 2020-02-15T06:59:39Z +3470 2005-07-05T22:49:24Z 883 565 2005-07-07T19:36:24Z 1 2020-02-15T06:59:39Z +3471 2005-07-05T22:51:44Z 1724 242 2005-07-13T01:38:44Z 2 2020-02-15T06:59:39Z +3472 2005-07-05T22:56:33Z 841 37 2005-07-13T17:18:33Z 2 2020-02-15T06:59:39Z +3473 2005-07-05T22:57:34Z 2735 60 2005-07-12T23:53:34Z 1 2020-02-15T06:59:39Z +3474 2005-07-05T22:59:53Z 97 594 2005-07-08T20:32:53Z 1 2020-02-15T06:59:39Z +3475 2005-07-05T23:01:21Z 2189 8 2005-07-13T23:07:21Z 2 2020-02-15T06:59:39Z +3476 2005-07-05T23:02:37Z 3011 490 2005-07-10T22:17:37Z 2 2020-02-15T06:59:39Z +3477 2005-07-05T23:05:17Z 4289 476 2005-07-15T02:20:17Z 2 2020-02-15T06:59:39Z +3478 2005-07-05T23:05:44Z 2528 322 2005-07-07T00:14:44Z 2 2020-02-15T06:59:39Z +3479 2005-07-05T23:08:53Z 2277 298 2005-07-11T21:42:53Z 1 2020-02-15T06:59:39Z +3480 2005-07-05T23:11:43Z 1488 382 2005-07-12T02:01:43Z 2 2020-02-15T06:59:39Z +3481 2005-07-05T23:13:07Z 3575 138 2005-07-07T20:36:07Z 2 2020-02-15T06:59:39Z +3482 2005-07-05T23:13:22Z 1291 520 2005-07-12T19:02:22Z 2 2020-02-15T06:59:39Z +3483 2005-07-05T23:13:51Z 79 536 2005-07-13T18:31:51Z 1 2020-02-15T06:59:39Z +3484 2005-07-05T23:23:11Z 1934 114 2005-07-11T00:27:11Z 2 2020-02-15T06:59:39Z +3485 2005-07-05T23:25:54Z 117 111 2005-07-09T17:38:54Z 1 2020-02-15T06:59:39Z +3486 2005-07-05T23:29:55Z 4067 296 2005-07-13T19:54:55Z 1 2020-02-15T06:59:39Z +3487 2005-07-05T23:30:36Z 1575 586 2005-07-11T04:00:36Z 1 2020-02-15T06:59:39Z +3488 2005-07-05T23:32:49Z 898 349 2005-07-15T02:01:49Z 2 2020-02-15T06:59:39Z +3489 2005-07-05T23:33:40Z 2936 397 2005-07-15T02:15:40Z 2 2020-02-15T06:59:39Z +3490 2005-07-05T23:37:13Z 3041 369 2005-07-12T22:07:13Z 1 2020-02-15T06:59:39Z +3491 2005-07-05T23:41:08Z 1835 421 2005-07-13T21:53:08Z 1 2020-02-15T06:59:39Z +3492 2005-07-05T23:44:37Z 980 142 2005-07-14T03:54:37Z 1 2020-02-15T06:59:39Z +3493 2005-07-05T23:46:19Z 473 169 2005-07-15T02:31:19Z 1 2020-02-15T06:59:39Z +3494 2005-07-05T23:47:30Z 3149 348 2005-07-11T18:10:30Z 1 2020-02-15T06:59:39Z +3495 2005-07-05T23:50:04Z 2306 553 2005-07-10T01:06:04Z 1 2020-02-15T06:59:39Z +3496 2005-07-05T23:59:15Z 2430 295 2005-07-09T19:39:15Z 2 2020-02-15T06:59:39Z +3497 2005-07-06T00:00:03Z 1970 299 2005-07-09T01:27:03Z 1 2020-02-15T06:59:39Z +3498 2005-07-06T00:02:08Z 1869 444 2005-07-10T00:19:08Z 1 2020-02-15T06:59:39Z +3499 2005-07-06T00:04:20Z 1850 520 2005-07-14T21:12:20Z 2 2020-02-15T06:59:39Z +3500 2005-07-06T00:11:13Z 2447 32 2005-07-13T19:01:13Z 2 2020-02-15T06:59:39Z +3501 2005-07-06T00:11:28Z 2219 270 2005-07-10T20:32:28Z 2 2020-02-15T06:59:39Z +3502 2005-07-06T00:15:06Z 1026 126 2005-07-13T01:35:06Z 1 2020-02-15T06:59:39Z +3503 2005-07-06T00:17:24Z 2944 449 2005-07-08T03:47:24Z 1 2020-02-15T06:59:39Z +3504 2005-07-06T00:18:29Z 268 209 2005-07-10T00:24:29Z 2 2020-02-15T06:59:39Z +3505 2005-07-06T00:19:32Z 2630 331 2005-07-14T20:14:32Z 2 2020-02-15T06:59:39Z +3506 2005-07-06T00:22:29Z 19 459 2005-07-07T22:15:29Z 1 2020-02-15T06:59:39Z +3507 2005-07-06T00:23:43Z 166 480 2005-07-15T04:19:43Z 1 2020-02-15T06:59:39Z +3508 2005-07-06T00:24:25Z 2381 34 2005-07-10T05:38:25Z 2 2020-02-15T06:59:39Z +3509 2005-07-06T00:24:57Z 4394 182 2005-07-09T18:48:57Z 2 2020-02-15T06:59:39Z +3510 2005-07-06T00:27:41Z 2250 443 2005-07-14T23:20:41Z 2 2020-02-15T06:59:39Z +3511 2005-07-06T00:42:01Z 2128 494 2005-07-09T23:08:01Z 1 2020-02-15T06:59:39Z +3512 2005-07-06T00:43:06Z 371 291 2005-07-12T06:18:06Z 2 2020-02-15T06:59:39Z +3513 2005-07-06T00:45:57Z 4225 223 2005-07-11T19:04:57Z 2 2020-02-15T06:59:39Z +3514 2005-07-06T00:46:54Z 4546 536 2005-07-09T05:47:54Z 1 2020-02-15T06:59:39Z +3515 2005-07-06T00:48:55Z 3220 131 2005-07-09T00:15:55Z 1 2020-02-15T06:59:39Z +3516 2005-07-06T00:50:30Z 385 338 2005-07-09T19:12:30Z 2 2020-02-15T06:59:39Z +3517 2005-07-06T00:52:35Z 2762 314 2005-07-08T20:10:35Z 2 2020-02-15T06:59:39Z +3518 2005-07-06T00:56:03Z 2502 167 2005-07-14T02:27:03Z 1 2020-02-15T06:59:39Z +3519 2005-07-06T00:57:29Z 4314 320 2005-07-10T21:12:29Z 2 2020-02-15T06:59:39Z +3520 2005-07-06T00:58:27Z 2872 102 2005-07-14T05:56:27Z 1 2020-02-15T06:59:39Z +3521 2005-07-06T01:00:11Z 1440 262 2005-07-11T19:15:11Z 2 2020-02-15T06:59:39Z +3522 2005-07-06T01:00:21Z 4522 469 2005-07-11T01:18:21Z 1 2020-02-15T06:59:39Z +3523 2005-07-06T01:01:38Z 2171 549 2005-07-10T20:24:38Z 2 2020-02-15T06:59:39Z +3524 2005-07-06T01:01:51Z 1626 88 2005-07-11T19:52:51Z 2 2020-02-15T06:59:39Z +3525 2005-07-06T01:02:39Z 208 51 2005-07-14T02:27:39Z 1 2020-02-15T06:59:39Z +3526 2005-07-06T01:03:29Z 3871 469 2005-07-15T01:22:29Z 2 2020-02-15T06:59:39Z +3527 2005-07-06T01:11:08Z 4537 389 2005-07-08T01:21:08Z 1 2020-02-15T06:59:39Z +3528 2005-07-06T01:13:27Z 1954 201 2005-07-06T23:45:27Z 2 2020-02-15T06:59:39Z +3529 2005-07-06T01:15:26Z 4316 350 2005-07-07T04:28:26Z 1 2020-02-15T06:59:39Z +3530 2005-07-06T01:22:45Z 4542 168 2005-07-10T03:23:45Z 1 2020-02-15T06:59:39Z +3531 2005-07-06T01:24:08Z 1890 165 2005-07-11T22:00:08Z 2 2020-02-15T06:59:39Z +3532 2005-07-06T01:24:38Z 2635 274 2005-07-11T06:42:38Z 2 2020-02-15T06:59:39Z +3533 2005-07-06T01:26:44Z 2028 206 2005-07-14T21:37:44Z 1 2020-02-15T06:59:39Z +3534 2005-07-06T01:32:27Z 2055 283 2005-07-08T23:14:27Z 1 2020-02-15T06:59:39Z +3535 2005-07-06T01:32:46Z 4214 65 2005-07-11T03:15:46Z 1 2020-02-15T06:59:39Z +3536 2005-07-06T01:36:11Z 2328 339 2005-07-12T20:00:11Z 2 2020-02-15T06:59:39Z +3537 2005-07-06T01:36:53Z 4220 479 2005-07-13T07:01:53Z 2 2020-02-15T06:59:39Z +3538 2005-07-06T01:37:07Z 4361 228 2005-07-11T06:02:07Z 2 2020-02-15T06:59:39Z +3539 2005-07-06T01:39:08Z 4081 444 2005-07-07T05:38:08Z 1 2020-02-15T06:59:39Z +3540 2005-07-06T01:47:20Z 1295 97 2005-07-08T23:48:20Z 2 2020-02-15T06:59:39Z +3541 2005-07-06T01:50:11Z 1204 501 2005-07-12T03:24:11Z 1 2020-02-15T06:59:39Z +3542 2005-07-06T01:51:42Z 4391 593 2005-07-11T03:29:42Z 1 2020-02-15T06:59:39Z +3543 2005-07-06T02:01:08Z 3997 394 2005-07-07T03:14:08Z 1 2020-02-15T06:59:39Z +3544 2005-07-06T02:06:32Z 3098 115 2005-07-09T04:35:32Z 2 2020-02-15T06:59:39Z +3545 2005-07-06T02:16:17Z 3924 442 2005-07-11T00:54:17Z 1 2020-02-15T06:59:39Z +3546 2005-07-06T02:17:54Z 959 594 2005-07-07T00:19:54Z 1 2020-02-15T06:59:39Z +3547 2005-07-06T02:18:06Z 2730 239 2005-07-08T05:24:06Z 1 2020-02-15T06:59:39Z +3548 2005-07-06T02:23:39Z 4498 16 2005-07-08T07:53:39Z 2 2020-02-15T06:59:39Z +3549 2005-07-06T02:24:55Z 3921 19 2005-07-06T21:40:55Z 2 2020-02-15T06:59:39Z +3550 2005-07-06T02:29:21Z 2417 15 2005-07-13T05:26:21Z 2 2020-02-15T06:59:39Z +3551 2005-07-06T02:33:48Z 3602 111 2005-07-13T04:38:48Z 1 2020-02-15T06:59:39Z +3552 2005-07-06T02:34:09Z 1099 239 2005-07-12T05:31:09Z 1 2020-02-15T06:59:39Z +3553 2005-07-06T02:35:41Z 4510 422 2005-07-08T06:38:41Z 2 2020-02-15T06:59:39Z +3554 2005-07-06T02:37:10Z 793 538 2005-07-09T01:58:10Z 1 2020-02-15T06:59:39Z +3555 2005-07-06T02:45:35Z 869 537 2005-07-10T07:17:35Z 1 2020-02-15T06:59:39Z +3556 2005-07-06T02:46:13Z 3142 273 2005-07-06T22:08:13Z 1 2020-02-15T06:59:39Z +3557 2005-07-06T02:48:39Z 3832 292 2005-07-08T22:52:39Z 2 2020-02-15T06:59:39Z +3558 2005-07-06T02:49:06Z 1742 575 2005-07-15T01:38:06Z 2 2020-02-15T06:59:39Z +3559 2005-07-06T02:49:42Z 2211 483 2005-07-12T04:44:42Z 1 2020-02-15T06:59:39Z +3560 2005-07-06T02:51:37Z 888 592 2005-07-10T01:35:37Z 2 2020-02-15T06:59:39Z +3561 2005-07-06T02:54:33Z 213 231 2005-07-14T07:44:33Z 2 2020-02-15T06:59:39Z +3562 2005-07-06T02:54:36Z 1660 587 2005-07-11T05:48:36Z 1 2020-02-15T06:59:39Z +3563 2005-07-06T02:57:01Z 4261 210 2005-07-14T02:25:01Z 2 2020-02-15T06:59:39Z +3564 2005-07-06T03:02:13Z 1096 402 2005-07-13T01:41:13Z 2 2020-02-15T06:59:39Z +3565 2005-07-06T03:02:58Z 599 97 2005-07-13T21:31:58Z 2 2020-02-15T06:59:39Z +3566 2005-07-06T03:08:51Z 2774 392 2005-07-12T05:04:51Z 1 2020-02-15T06:59:39Z +3567 2005-07-06T03:09:36Z 27 355 2005-07-12T02:15:36Z 1 2020-02-15T06:59:39Z +3568 2005-07-06T03:11:57Z 2084 283 2005-07-15T03:14:57Z 1 2020-02-15T06:59:39Z +3569 2005-07-06T03:17:23Z 1929 496 2005-07-14T03:58:23Z 1 2020-02-15T06:59:39Z +3570 2005-07-06T03:23:43Z 1300 450 2005-07-14T07:28:43Z 2 2020-02-15T06:59:39Z +3571 2005-07-06T03:32:31Z 4166 580 2005-07-11T06:15:31Z 1 2020-02-15T06:59:39Z +3572 2005-07-06T03:33:23Z 1915 284 2005-07-08T07:54:23Z 1 2020-02-15T06:59:39Z +3573 2005-07-06T03:33:48Z 146 66 2005-07-07T22:39:48Z 1 2020-02-15T06:59:39Z +3574 2005-07-06T03:36:01Z 2799 225 2005-07-10T01:29:01Z 2 2020-02-15T06:59:39Z +3575 2005-07-06T03:36:19Z 3234 49 2005-07-08T06:21:19Z 1 2020-02-15T06:59:39Z +3576 2005-07-06T03:40:01Z 324 227 2005-07-15T07:22:01Z 1 2020-02-15T06:59:39Z +3577 2005-07-06T03:40:36Z 4390 152 2005-07-10T05:54:36Z 2 2020-02-15T06:59:39Z +3578 2005-07-06T03:47:05Z 2954 263 2005-07-08T02:26:05Z 1 2020-02-15T06:59:39Z +3579 2005-07-06T03:47:47Z 3309 485 2005-07-08T02:16:47Z 2 2020-02-15T06:59:39Z +3580 2005-07-06T03:48:44Z 3837 200 2005-07-13T01:15:44Z 2 2020-02-15T06:59:39Z +3581 2005-07-06T03:57:35Z 4520 235 2005-07-07T08:07:35Z 2 2020-02-15T06:59:39Z +3582 2005-07-06T04:10:35Z 1866 297 2005-07-11T01:29:35Z 2 2020-02-15T06:59:39Z +3583 2005-07-06T04:10:43Z 204 574 2005-07-14T22:17:43Z 2 2020-02-15T06:59:39Z +3584 2005-07-06T04:16:43Z 367 207 2005-07-13T07:08:43Z 1 2020-02-15T06:59:39Z +3585 2005-07-06T04:22:36Z 2726 266 2005-07-09T06:16:36Z 2 2020-02-15T06:59:39Z +3586 2005-07-06T04:24:42Z 616 493 2005-07-09T02:37:42Z 1 2020-02-15T06:59:39Z +3587 2005-07-06T04:27:52Z 462 110 2005-07-13T08:19:52Z 1 2020-02-15T06:59:39Z +3588 2005-07-06T04:29:13Z 3154 289 2005-07-07T23:49:13Z 1 2020-02-15T06:59:39Z +3589 2005-07-06T04:30:18Z 3740 137 2005-07-10T09:18:18Z 1 2020-02-15T06:59:39Z +3590 2005-07-06T04:35:12Z 1510 283 2005-07-10T05:14:12Z 2 2020-02-15T06:59:39Z +3591 2005-07-06T04:37:10Z 1241 53 2005-07-09T23:32:10Z 1 2020-02-15T06:59:39Z +3592 2005-07-06T04:38:50Z 1272 286 2005-07-15T06:36:50Z 2 2020-02-15T06:59:39Z +3593 2005-07-06T04:39:52Z 619 78 2005-07-11T23:20:52Z 2 2020-02-15T06:59:39Z +3594 2005-07-06T04:42:47Z 4566 522 2005-07-10T00:49:47Z 1 2020-02-15T06:59:39Z +3595 2005-07-06T04:59:49Z 1431 92 2005-07-15T06:26:49Z 2 2020-02-15T06:59:39Z +3596 2005-07-06T05:03:11Z 594 419 2005-07-07T05:30:11Z 2 2020-02-15T06:59:39Z +3597 2005-07-06T05:03:59Z 4080 35 2005-07-13T06:49:59Z 2 2020-02-15T06:59:39Z +3598 2005-07-06T05:11:04Z 1317 68 2005-07-09T02:03:04Z 2 2020-02-15T06:59:39Z +3599 2005-07-06T05:16:36Z 3262 577 2005-07-13T07:14:36Z 2 2020-02-15T06:59:39Z +3600 2005-07-06T05:19:42Z 2748 511 2005-07-11T00:34:42Z 2 2020-02-15T06:59:39Z +3601 2005-07-06T05:20:25Z 2806 205 2005-07-15T03:13:25Z 1 2020-02-15T06:59:39Z +3602 2005-07-06T05:23:10Z 2192 100 2005-07-15T03:22:10Z 2 2020-02-15T06:59:39Z +3603 2005-07-06T05:25:03Z 2442 330 2005-07-12T08:14:03Z 1 2020-02-15T06:59:39Z +3604 2005-07-06T05:25:22Z 1380 242 2005-07-07T23:52:22Z 1 2020-02-15T06:59:39Z +3605 2005-07-06T05:27:15Z 384 347 2005-07-10T00:05:15Z 2 2020-02-15T06:59:39Z +3606 2005-07-06T05:28:02Z 1737 166 2005-07-10T04:51:02Z 1 2020-02-15T06:59:39Z +3607 2005-07-06T05:30:09Z 542 335 2005-07-08T01:36:09Z 2 2020-02-15T06:59:39Z +3608 2005-07-06T05:35:39Z 3095 368 2005-07-10T07:46:39Z 2 2020-02-15T06:59:39Z +3609 2005-07-06T05:36:22Z 1064 373 2005-07-10T05:55:22Z 1 2020-02-15T06:59:39Z +3610 2005-07-06T05:36:59Z 1509 348 2005-07-13T07:07:59Z 1 2020-02-15T06:59:39Z +3611 2005-07-06T05:37:18Z 4502 86 2005-07-10T05:14:18Z 1 2020-02-15T06:59:39Z +3612 2005-07-06T05:37:26Z 2465 402 2005-07-14T01:51:26Z 1 2020-02-15T06:59:39Z +3613 2005-07-06T05:45:53Z 3776 331 2005-07-07T10:02:53Z 1 2020-02-15T06:59:39Z +3614 2005-07-06T05:46:05Z 853 502 2005-07-11T01:24:05Z 2 2020-02-15T06:59:39Z +3615 2005-07-06T05:47:47Z 711 49 2005-07-11T05:01:47Z 1 2020-02-15T06:59:39Z +3616 2005-07-06T05:52:13Z 557 571 2005-07-10T10:24:13Z 1 2020-02-15T06:59:39Z +3617 2005-07-06T05:58:06Z 1337 125 2005-07-13T02:10:06Z 1 2020-02-15T06:59:39Z +3618 2005-07-06T05:58:45Z 330 264 2005-07-15T09:13:45Z 2 2020-02-15T06:59:39Z +3619 2005-07-06T05:59:44Z 3350 526 2005-07-11T08:58:44Z 2 2020-02-15T06:59:39Z +3620 2005-07-06T06:01:50Z 1661 88 2005-07-08T05:04:50Z 1 2020-02-15T06:59:39Z +3621 2005-07-06T06:03:55Z 3132 171 2005-07-11T09:25:55Z 2 2020-02-15T06:59:39Z +3622 2005-07-06T06:05:04Z 3489 454 2005-07-12T03:14:04Z 2 2020-02-15T06:59:39Z +3623 2005-07-06T06:05:23Z 430 80 2005-07-07T05:59:23Z 1 2020-02-15T06:59:39Z +3624 2005-07-06T06:06:27Z 1778 115 2005-07-13T08:30:27Z 2 2020-02-15T06:59:39Z +3625 2005-07-06T06:12:52Z 1133 175 2005-07-12T07:37:52Z 1 2020-02-15T06:59:39Z +3626 2005-07-06T06:15:35Z 1599 337 2005-07-10T10:18:35Z 2 2020-02-15T06:59:39Z +3627 2005-07-06T06:19:25Z 1087 322 2005-07-11T05:53:25Z 1 2020-02-15T06:59:39Z +3628 2005-07-06T06:19:43Z 3509 588 2005-07-07T02:23:43Z 1 2020-02-15T06:59:39Z +3629 2005-07-06T06:23:22Z 4019 441 2005-07-08T09:32:22Z 2 2020-02-15T06:59:39Z +3630 2005-07-06T06:27:15Z 2448 102 2005-07-12T10:36:15Z 1 2020-02-15T06:59:39Z +3631 2005-07-06T06:36:53Z 4068 47 2005-07-07T10:32:53Z 1 2020-02-15T06:59:39Z +3632 2005-07-06T06:38:21Z 2583 366 2005-07-11T03:19:21Z 1 2020-02-15T06:59:39Z +3633 2005-07-06T06:43:26Z 2978 95 2005-07-10T04:54:26Z 1 2020-02-15T06:59:39Z +3634 2005-07-06T06:51:14Z 3688 245 2005-07-10T02:30:14Z 1 2020-02-15T06:59:39Z +3635 2005-07-06T06:55:36Z 421 250 2005-07-09T07:57:36Z 2 2020-02-15T06:59:39Z +3636 2005-07-06T07:03:52Z 3379 591 2005-07-08T03:14:52Z 2 2020-02-15T06:59:39Z +3637 2005-07-06T07:06:31Z 3823 380 2005-07-10T02:11:31Z 2 2020-02-15T06:59:39Z +3638 2005-07-06T07:08:17Z 190 452 2005-07-13T12:30:17Z 1 2020-02-15T06:59:39Z +3639 2005-07-06T07:09:17Z 2812 7 2005-07-15T05:12:17Z 2 2020-02-15T06:59:39Z +3640 2005-07-06T07:12:26Z 3432 271 2005-07-10T04:54:26Z 2 2020-02-15T06:59:39Z +3641 2005-07-06T07:17:09Z 3834 79 2005-07-11T07:25:09Z 1 2020-02-15T06:59:39Z +3642 2005-07-06T07:18:20Z 4204 166 2005-07-09T01:37:20Z 1 2020-02-15T06:59:39Z +3643 2005-07-06T07:20:08Z 845 176 2005-07-11T07:01:08Z 1 2020-02-15T06:59:39Z +3644 2005-07-06T07:20:11Z 4309 403 2005-07-11T10:26:11Z 2 2020-02-15T06:59:39Z +3645 2005-07-06T07:22:09Z 3390 236 2005-07-10T11:45:09Z 1 2020-02-15T06:59:39Z +3646 2005-07-06T07:28:59Z 3591 322 2005-07-11T05:19:59Z 1 2020-02-15T06:59:39Z +3647 2005-07-06T07:29:17Z 3762 145 2005-07-13T08:32:17Z 1 2020-02-15T06:59:39Z +3648 2005-07-06T07:30:41Z 2810 598 2005-07-10T06:00:41Z 2 2020-02-15T06:59:39Z +3649 2005-07-06T07:32:42Z 3564 24 2005-07-12T09:37:42Z 1 2020-02-15T06:59:39Z +3650 2005-07-06T07:34:15Z 3606 482 2005-07-08T01:50:15Z 2 2020-02-15T06:59:39Z +3651 2005-07-06T07:40:31Z 3323 170 2005-07-08T03:39:31Z 2 2020-02-15T06:59:39Z +3652 2005-07-06T07:44:30Z 1231 518 2005-07-08T04:41:30Z 1 2020-02-15T06:59:39Z +3653 2005-07-06T07:45:13Z 2513 148 2005-07-10T11:51:13Z 2 2020-02-15T06:59:39Z +3654 2005-07-06T07:45:31Z 1621 528 2005-07-12T09:59:31Z 2 2020-02-15T06:59:39Z +3655 2005-07-06T07:52:54Z 1540 493 2005-07-15T10:49:54Z 2 2020-02-15T06:59:39Z +3656 2005-07-06T07:55:22Z 4544 314 2005-07-13T10:36:22Z 2 2020-02-15T06:59:39Z +3657 2005-07-06T07:55:30Z 4134 113 2005-07-11T07:18:30Z 1 2020-02-15T06:59:39Z +3658 2005-07-06T08:01:08Z 3453 253 2005-07-15T06:36:08Z 1 2020-02-15T06:59:39Z +3659 2005-07-06T08:03:14Z 2271 330 2005-07-12T09:50:14Z 1 2020-02-15T06:59:39Z +3660 2005-07-06T08:07:29Z 1129 507 2005-07-14T08:46:29Z 1 2020-02-15T06:59:39Z +3661 2005-07-06T08:10:02Z 2600 442 2005-07-10T10:17:02Z 1 2020-02-15T06:59:39Z +3662 2005-07-06T08:11:48Z 3827 334 2005-07-09T12:25:48Z 2 2020-02-15T06:59:39Z +3663 2005-07-06T08:15:47Z 2646 566 2005-07-07T08:57:47Z 1 2020-02-15T06:59:39Z +3664 2005-07-06T08:15:57Z 3366 528 2005-07-08T06:11:57Z 1 2020-02-15T06:59:39Z +3665 2005-07-06T08:23:08Z 922 102 2005-07-13T13:38:08Z 2 2020-02-15T06:59:39Z +3666 2005-07-06T08:27:43Z 4212 347 2005-07-09T07:37:43Z 2 2020-02-15T06:59:39Z +3667 2005-07-06T08:36:34Z 447 373 2005-07-15T04:25:34Z 2 2020-02-15T06:59:39Z +3668 2005-07-06T08:36:48Z 269 514 2005-07-10T11:31:48Z 1 2020-02-15T06:59:39Z +3669 2005-07-06T08:38:29Z 1299 530 2005-07-10T05:28:29Z 1 2020-02-15T06:59:39Z +3670 2005-07-06T08:56:43Z 4271 268 2005-07-11T09:11:43Z 1 2020-02-15T06:59:39Z +3671 2005-07-06T09:01:29Z 2821 179 2005-07-15T08:08:29Z 1 2020-02-15T06:59:39Z +3672 2005-07-06T09:01:56Z 3883 283 2005-07-11T14:18:56Z 1 2020-02-15T06:59:39Z +3673 2005-07-06T09:02:09Z 1837 88 2005-07-15T06:45:09Z 2 2020-02-15T06:59:39Z +3674 2005-07-06T09:03:13Z 3686 559 2005-07-13T08:43:13Z 1 2020-02-15T06:59:39Z +3675 2005-07-06T09:09:19Z 3662 282 2005-07-12T08:51:19Z 1 2020-02-15T06:59:39Z +3676 2005-07-06T09:10:37Z 1967 137 2005-07-14T08:24:37Z 1 2020-02-15T06:59:39Z +3677 2005-07-06T09:11:58Z 600 5 2005-07-08T10:50:58Z 2 2020-02-15T06:59:39Z +3678 2005-07-06T09:15:15Z 3861 364 2005-07-10T05:01:15Z 1 2020-02-15T06:59:39Z +3679 2005-07-06T09:15:57Z 2186 547 2005-07-08T03:20:57Z 1 2020-02-15T06:59:39Z +3680 2005-07-06T09:16:10Z 2427 82 2005-07-08T07:52:10Z 2 2020-02-15T06:59:39Z +3681 2005-07-06T09:19:30Z 3325 294 2005-07-11T09:40:30Z 1 2020-02-15T06:59:39Z +3682 2005-07-06T09:22:48Z 2597 98 2005-07-14T11:17:48Z 2 2020-02-15T06:59:39Z +3683 2005-07-06T09:25:56Z 3020 43 2005-07-14T12:10:56Z 1 2020-02-15T06:59:39Z +3684 2005-07-06T09:29:22Z 3261 395 2005-07-12T08:19:22Z 1 2020-02-15T06:59:39Z +3685 2005-07-06T09:30:45Z 2015 58 2005-07-11T15:16:45Z 2 2020-02-15T06:59:39Z +3686 2005-07-06T09:37:50Z 376 548 2005-07-09T10:15:50Z 2 2020-02-15T06:59:39Z +3687 2005-07-06T09:38:33Z 2040 207 2005-07-14T07:50:33Z 1 2020-02-15T06:59:39Z +3688 2005-07-06T09:41:53Z 1102 380 2005-07-14T10:30:53Z 2 2020-02-15T06:59:39Z +3689 2005-07-06T09:43:01Z 3168 129 2005-07-11T09:57:01Z 1 2020-02-15T06:59:39Z +3690 2005-07-06T09:46:03Z 4405 435 2005-07-07T12:12:03Z 1 2020-02-15T06:59:39Z +3691 2005-07-06T09:46:12Z 1937 478 2005-07-07T14:08:12Z 1 2020-02-15T06:59:39Z +3692 2005-07-06T09:54:12Z 1237 286 2005-07-11T09:42:12Z 2 2020-02-15T06:59:39Z +3693 2005-07-06T09:56:09Z 2989 545 2005-07-15T06:50:09Z 2 2020-02-15T06:59:39Z +3694 2005-07-06T10:01:23Z 3848 419 2005-07-08T11:44:23Z 2 2020-02-15T06:59:39Z +3695 2005-07-06T10:02:08Z 2823 441 2005-07-09T15:43:08Z 1 2020-02-15T06:59:39Z +3696 2005-07-06T10:04:55Z 3244 497 2005-07-11T15:58:55Z 2 2020-02-15T06:59:39Z +3697 2005-07-06T10:07:22Z 1223 182 2005-07-13T14:04:22Z 2 2020-02-15T06:59:39Z +3698 2005-07-06T10:09:20Z 1263 461 2005-07-08T15:49:20Z 1 2020-02-15T06:59:39Z +3699 2005-07-06T10:11:25Z 418 262 2005-07-14T05:18:25Z 1 2020-02-15T06:59:39Z +3700 2005-07-06T10:12:19Z 343 72 2005-07-07T14:21:19Z 2 2020-02-15T06:59:39Z +3701 2005-07-06T10:12:45Z 3679 31 2005-07-09T08:52:45Z 1 2020-02-15T06:59:39Z +3702 2005-07-06T10:13:56Z 2204 428 2005-07-10T08:12:56Z 1 2020-02-15T06:59:39Z +3703 2005-07-06T10:15:26Z 4276 421 2005-07-13T13:00:26Z 1 2020-02-15T06:59:39Z +3704 2005-07-06T10:16:45Z 2687 323 2005-07-13T12:44:45Z 2 2020-02-15T06:59:39Z +3705 2005-07-06T10:17:59Z 65 223 2005-07-10T15:31:59Z 1 2020-02-15T06:59:39Z +3706 2005-07-06T10:18:01Z 681 132 2005-07-09T09:07:01Z 2 2020-02-15T06:59:39Z +3707 2005-07-06T10:21:49Z 1080 14 2005-07-12T05:14:49Z 2 2020-02-15T06:59:39Z +3708 2005-07-06T10:23:27Z 2105 201 2005-07-14T09:26:27Z 1 2020-02-15T06:59:39Z +3709 2005-07-06T10:26:56Z 4033 187 2005-07-15T13:51:56Z 2 2020-02-15T06:59:39Z +3710 2005-07-06T10:28:53Z 2596 228 2005-07-15T06:17:53Z 2 2020-02-15T06:59:39Z +3711 2005-07-06T10:46:15Z 1914 75 2005-07-07T09:25:15Z 2 2020-02-15T06:59:39Z +3712 2005-07-06T10:47:35Z 3741 504 2005-07-15T09:39:35Z 1 2020-02-15T06:59:39Z +3713 2005-07-06T10:49:30Z 1823 504 2005-07-13T10:44:30Z 1 2020-02-15T06:59:39Z +3714 2005-07-06T10:51:28Z 1985 276 2005-07-09T13:57:28Z 2 2020-02-15T06:59:39Z +3715 2005-07-06T10:51:48Z 4456 228 2005-07-11T06:08:48Z 1 2020-02-15T06:59:39Z +3716 2005-07-06T10:52:32Z 3271 92 2005-07-14T08:45:32Z 2 2020-02-15T06:59:39Z +3717 2005-07-06T10:53:34Z 1677 173 2005-07-07T13:43:34Z 2 2020-02-15T06:59:39Z +3718 2005-07-06T10:57:56Z 2624 56 2005-07-12T12:54:56Z 1 2020-02-15T06:59:39Z +3719 2005-07-06T11:05:55Z 3573 376 2005-07-11T08:10:55Z 2 2020-02-15T06:59:39Z +3720 2005-07-06T11:06:57Z 2958 96 2005-07-09T14:16:57Z 1 2020-02-15T06:59:39Z +3721 2005-07-06T11:10:09Z 2654 226 2005-07-11T07:45:09Z 2 2020-02-15T06:59:39Z +3722 2005-07-06T11:10:27Z 604 83 2005-07-13T12:56:27Z 2 2020-02-15T06:59:39Z +3723 2005-07-06T11:12:02Z 4554 501 2005-07-14T16:45:02Z 2 2020-02-15T06:59:39Z +3724 2005-07-06T11:12:48Z 3622 468 2005-07-14T14:41:48Z 1 2020-02-15T06:59:39Z +3725 2005-07-06T11:15:04Z 2789 126 2005-07-09T06:39:04Z 1 2020-02-15T06:59:39Z +3726 2005-07-06T11:15:49Z 742 363 2005-07-11T05:54:49Z 2 2020-02-15T06:59:39Z +3727 2005-07-06T11:16:43Z 2886 57 2005-07-07T15:39:43Z 1 2020-02-15T06:59:39Z +3728 2005-07-06T11:29:00Z 1798 298 2005-07-11T06:28:00Z 1 2020-02-15T06:59:39Z +3729 2005-07-06T11:30:29Z 3156 90 2005-07-12T07:18:29Z 1 2020-02-15T06:59:39Z +3730 2005-07-06T11:31:24Z 1665 355 2005-07-15T06:53:24Z 1 2020-02-15T06:59:39Z +3731 2005-07-06T11:33:36Z 4133 558 2005-07-15T12:23:36Z 2 2020-02-15T06:59:39Z +3732 2005-07-06T11:33:37Z 106 318 2005-07-08T08:31:37Z 1 2020-02-15T06:59:39Z +3733 2005-07-06T11:33:55Z 3242 586 2005-07-09T10:08:55Z 2 2020-02-15T06:59:39Z +3734 2005-07-06T11:40:27Z 4569 37 2005-07-14T12:08:27Z 1 2020-02-15T06:59:39Z +3735 2005-07-06T11:42:04Z 2262 534 2005-07-12T14:33:04Z 2 2020-02-15T06:59:39Z +3736 2005-07-06T11:43:44Z 1515 23 2005-07-13T07:55:44Z 2 2020-02-15T06:59:39Z +3737 2005-07-06T11:45:53Z 123 403 2005-07-13T15:27:53Z 1 2020-02-15T06:59:39Z +3738 2005-07-06T11:50:57Z 578 546 2005-07-09T08:07:57Z 1 2020-02-15T06:59:39Z +3739 2005-07-06T11:54:18Z 4333 157 2005-07-09T10:48:18Z 1 2020-02-15T06:59:39Z +3740 2005-07-06T11:55:35Z 1829 277 2005-07-14T09:44:35Z 2 2020-02-15T06:59:39Z +3741 2005-07-06T12:00:18Z 1449 584 2005-07-12T09:02:18Z 2 2020-02-15T06:59:39Z +3742 2005-07-06T12:01:38Z 2873 96 2005-07-15T10:46:38Z 1 2020-02-15T06:59:39Z +3743 2005-07-06T12:03:54Z 1012 456 2005-07-13T10:56:54Z 2 2020-02-15T06:59:39Z +3744 2005-07-06T12:10:02Z 3343 510 2005-07-08T11:49:02Z 2 2020-02-15T06:59:39Z +3745 2005-07-06T12:10:32Z 1518 171 2005-07-12T15:20:32Z 1 2020-02-15T06:59:39Z +3746 2005-07-06T12:10:51Z 3387 424 2005-07-07T11:36:51Z 2 2020-02-15T06:59:39Z +3747 2005-07-06T12:11:14Z 1093 437 2005-07-09T17:14:14Z 2 2020-02-15T06:59:39Z +3748 2005-07-06T12:11:22Z 2920 79 2005-07-12T07:22:22Z 1 2020-02-15T06:59:39Z +3749 2005-07-06T12:18:03Z 1531 170 2005-07-11T07:25:03Z 1 2020-02-15T06:59:39Z +3750 2005-07-06T12:19:28Z 2422 103 2005-07-14T13:16:28Z 2 2020-02-15T06:59:39Z +3751 2005-07-06T12:23:41Z 3652 128 2005-07-10T06:58:41Z 1 2020-02-15T06:59:39Z +3752 2005-07-06T12:30:12Z 4561 235 2005-07-13T12:13:12Z 1 2020-02-15T06:59:39Z +3753 2005-07-06T12:34:06Z 774 358 2005-07-07T14:19:06Z 2 2020-02-15T06:59:39Z +3754 2005-07-06T12:35:44Z 4042 83 2005-07-08T16:28:44Z 1 2020-02-15T06:59:39Z +3755 2005-07-06T12:37:16Z 3147 402 2005-07-13T07:22:16Z 1 2020-02-15T06:59:39Z +3756 2005-07-06T12:40:38Z 30 320 2005-07-11T09:29:38Z 1 2020-02-15T06:59:39Z +3757 2005-07-06T12:42:26Z 2816 66 2005-07-11T10:30:26Z 1 2020-02-15T06:59:39Z +3758 2005-07-06T12:43:11Z 2498 48 2005-07-14T12:52:11Z 2 2020-02-15T06:59:39Z +3759 2005-07-06T12:46:38Z 4165 378 2005-07-10T11:31:38Z 1 2020-02-15T06:59:39Z +3760 2005-07-06T12:49:28Z 1306 330 2005-07-09T16:29:28Z 1 2020-02-15T06:59:39Z +3761 2005-07-06T12:52:44Z 4304 464 2005-07-08T17:22:44Z 1 2020-02-15T06:59:39Z +3762 2005-07-06T12:52:49Z 1941 413 2005-07-12T11:41:49Z 1 2020-02-15T06:59:39Z +3763 2005-07-06T12:56:31Z 1573 189 2005-07-09T14:49:31Z 1 2020-02-15T06:59:39Z +3764 2005-07-06T13:01:03Z 3115 470 2005-07-13T15:26:03Z 1 2020-02-15T06:59:39Z +3765 2005-07-06T13:01:47Z 1805 547 2005-07-09T07:10:47Z 1 2020-02-15T06:59:39Z +3766 2005-07-06T13:04:35Z 4504 312 2005-07-07T15:46:35Z 1 2020-02-15T06:59:39Z +3767 2005-07-06T13:07:27Z 923 582 2005-07-08T18:48:27Z 1 2020-02-15T06:59:39Z +3768 2005-07-06T13:07:30Z 3995 573 2005-07-09T16:26:30Z 2 2020-02-15T06:59:39Z +3769 2005-07-06T13:11:33Z 467 567 2005-07-14T17:54:33Z 2 2020-02-15T06:59:39Z +3770 2005-07-06T13:14:28Z 3836 198 2005-07-13T09:23:28Z 1 2020-02-15T06:59:39Z +3771 2005-07-06T13:19:34Z 1373 56 2005-07-10T10:27:34Z 2 2020-02-15T06:59:39Z +3772 2005-07-06T13:22:53Z 434 338 2005-07-10T11:54:53Z 2 2020-02-15T06:59:39Z +3773 2005-07-06T13:23:34Z 2034 263 2005-07-08T17:23:34Z 2 2020-02-15T06:59:39Z +3774 2005-07-06T13:25:07Z 4044 439 2005-07-15T12:56:07Z 2 2020-02-15T06:59:39Z +3775 2005-07-06T13:27:33Z 3696 300 2005-07-09T10:27:33Z 1 2020-02-15T06:59:39Z +3776 2005-07-06T13:31:37Z 4387 278 2005-07-10T10:53:37Z 2 2020-02-15T06:59:39Z +3777 2005-07-06T13:36:48Z 2470 548 2005-07-11T14:26:48Z 1 2020-02-15T06:59:39Z +3778 2005-07-06T13:44:48Z 2181 122 2005-07-13T09:31:48Z 2 2020-02-15T06:59:39Z +3779 2005-07-06T13:46:36Z 634 583 2005-07-10T15:49:36Z 2 2020-02-15T06:59:39Z +3780 2005-07-06T13:52:02Z 1209 99 2005-07-15T08:41:02Z 2 2020-02-15T06:59:39Z +3781 2005-07-06T13:53:41Z 3894 23 2005-07-15T10:03:41Z 1 2020-02-15T06:59:39Z +3782 2005-07-06T13:57:03Z 3365 515 2005-07-09T11:13:03Z 2 2020-02-15T06:59:39Z +3783 2005-07-06T13:57:31Z 2345 386 2005-07-14T10:44:31Z 2 2020-02-15T06:59:39Z +3784 2005-07-06T13:57:56Z 2287 165 2005-07-14T17:24:56Z 2 2020-02-15T06:59:39Z +3785 2005-07-06T14:00:13Z 3279 577 2005-07-14T10:13:13Z 2 2020-02-15T06:59:39Z +3786 2005-07-06T14:00:41Z 4508 152 2005-07-13T16:49:41Z 1 2020-02-15T06:59:39Z +3787 2005-07-06T14:02:01Z 288 474 2005-07-09T19:09:01Z 2 2020-02-15T06:59:39Z +3788 2005-07-06T14:02:02Z 1363 379 2005-07-10T18:24:02Z 1 2020-02-15T06:59:39Z +3789 2005-07-06T14:02:26Z 3560 595 2005-07-14T18:13:26Z 1 2020-02-15T06:59:39Z +3790 2005-07-06T14:13:45Z 1711 10 2005-07-14T13:35:45Z 1 2020-02-15T06:59:39Z +3791 2005-07-06T14:24:56Z 3426 452 2005-07-14T11:06:56Z 2 2020-02-15T06:59:39Z +3792 2005-07-06T14:26:38Z 2651 312 2005-07-11T16:34:38Z 1 2020-02-15T06:59:39Z +3793 2005-07-06T14:32:44Z 4558 553 2005-07-08T13:55:44Z 1 2020-02-15T06:59:39Z +3794 2005-07-06T14:35:26Z 584 499 2005-07-11T14:40:26Z 2 2020-02-15T06:59:39Z +3795 2005-07-06T14:37:41Z 240 153 2005-07-11T20:27:41Z 2 2020-02-15T06:59:39Z +3796 2005-07-06T14:45:22Z 1649 228 2005-07-07T11:01:22Z 2 2020-02-15T06:59:39Z +3797 2005-07-06T14:54:52Z 1047 374 2005-07-10T09:50:52Z 2 2020-02-15T06:59:39Z +3798 2005-07-06T14:57:53Z 1942 479 2005-07-07T10:48:53Z 2 2020-02-15T06:59:39Z +3799 2005-07-06T15:00:14Z 4532 251 2005-07-10T15:39:14Z 1 2020-02-15T06:59:39Z +3800 2005-07-06T15:01:27Z 4004 100 2005-07-15T11:12:27Z 2 2020-02-15T06:59:39Z +3801 2005-07-06T15:05:50Z 4209 68 2005-07-12T12:56:50Z 1 2020-02-15T06:59:39Z +3802 2005-07-06T15:06:09Z 1017 91 2005-07-08T09:33:09Z 2 2020-02-15T06:59:39Z +3803 2005-07-06T15:06:55Z 2062 494 2005-07-08T18:53:55Z 1 2020-02-15T06:59:39Z +3804 2005-07-06T15:08:08Z 537 126 2005-07-15T14:01:08Z 2 2020-02-15T06:59:39Z +3805 2005-07-06T15:08:42Z 1716 418 2005-07-07T14:34:42Z 1 2020-02-15T06:59:39Z +3806 2005-07-06T15:09:41Z 3555 154 2005-07-14T09:14:41Z 2 2020-02-15T06:59:39Z +3807 2005-07-06T15:11:44Z 39 425 2005-07-10T09:20:44Z 1 2020-02-15T06:59:39Z +3808 2005-07-06T15:15:35Z 4339 314 2005-07-07T16:10:35Z 1 2020-02-15T06:59:39Z +3809 2005-07-06T15:16:37Z 2932 358 2005-07-09T14:45:37Z 1 2020-02-15T06:59:39Z +3810 2005-07-06T15:18:44Z 342 296 2005-07-12T09:52:44Z 2 2020-02-15T06:59:39Z +3811 2005-07-06T15:20:37Z 695 208 2005-07-08T16:26:37Z 2 2020-02-15T06:59:39Z +3812 2005-07-06T15:22:19Z 4490 381 2005-07-08T13:04:19Z 1 2020-02-15T06:59:39Z +3813 2005-07-06T15:23:34Z 4100 189 2005-07-08T19:03:34Z 1 2020-02-15T06:59:39Z +3814 2005-07-06T15:23:56Z 3826 306 2005-07-13T20:51:56Z 2 2020-02-15T06:59:39Z +3815 2005-07-06T15:26:36Z 4038 472 2005-07-11T17:07:36Z 2 2020-02-15T06:59:39Z +3816 2005-07-06T15:27:04Z 2941 489 2005-07-14T13:12:04Z 1 2020-02-15T06:59:39Z +3817 2005-07-06T15:31:45Z 2933 267 2005-07-11T17:11:45Z 1 2020-02-15T06:59:39Z +3818 2005-07-06T15:33:31Z 653 97 2005-07-11T16:35:31Z 1 2020-02-15T06:59:39Z +3819 2005-07-06T15:35:06Z 1814 74 2005-07-14T19:08:06Z 1 2020-02-15T06:59:39Z +3820 2005-07-06T15:35:26Z 4192 460 2005-07-11T12:22:26Z 2 2020-02-15T06:59:39Z +3821 2005-07-06T15:36:20Z 4385 354 2005-07-11T20:04:20Z 1 2020-02-15T06:59:39Z +3822 2005-07-06T15:41:15Z 1314 241 2005-07-07T16:41:15Z 1 2020-02-15T06:59:39Z +3823 2005-07-06T15:41:27Z 124 265 2005-07-09T09:48:27Z 1 2020-02-15T06:59:39Z +3824 2005-07-06T15:43:15Z 3107 107 2005-07-13T16:05:15Z 2 2020-02-15T06:59:39Z +3825 2005-07-06T15:50:03Z 630 132 2005-07-09T19:20:03Z 1 2020-02-15T06:59:39Z +3826 2005-07-06T15:51:58Z 73 451 2005-07-13T12:35:58Z 1 2020-02-15T06:59:39Z +3827 2005-07-06T15:52:03Z 2072 41 2005-07-08T21:43:03Z 2 2020-02-15T06:59:39Z +3828 2005-07-06T15:57:30Z 4493 498 2005-07-10T12:17:30Z 2 2020-02-15T06:59:39Z +3829 2005-07-06T15:59:40Z 4126 356 2005-07-11T10:29:40Z 1 2020-02-15T06:59:39Z +3830 2005-07-06T16:01:16Z 553 310 2005-07-15T19:35:16Z 2 2020-02-15T06:59:39Z +3831 2005-07-06T16:06:35Z 1338 206 2005-07-08T15:14:35Z 2 2020-02-15T06:59:39Z +3832 2005-07-06T16:12:23Z 4499 233 2005-07-12T21:29:23Z 1 2020-02-15T06:59:39Z +3833 2005-07-06T16:18:28Z 3232 416 2005-07-14T20:09:28Z 2 2020-02-15T06:59:39Z +3834 2005-07-06T16:19:56Z 3001 366 2005-07-13T11:38:56Z 2 2020-02-15T06:59:39Z +3835 2005-07-06T16:22:45Z 935 486 2005-07-11T17:04:45Z 2 2020-02-15T06:59:39Z +3836 2005-07-06T16:26:04Z 1148 351 2005-07-10T15:08:04Z 1 2020-02-15T06:59:39Z +3837 2005-07-06T16:27:43Z 3166 309 2005-07-07T18:02:43Z 1 2020-02-15T06:59:39Z +3838 2005-07-06T16:29:43Z 3404 565 2005-07-11T20:50:43Z 1 2020-02-15T06:59:39Z +3839 2005-07-06T16:30:30Z 3230 231 2005-07-11T19:00:30Z 1 2020-02-15T06:59:39Z +3840 2005-07-06T16:30:59Z 4384 468 2005-07-15T22:08:59Z 2 2020-02-15T06:59:39Z +3841 2005-07-06T16:34:00Z 4228 470 2005-07-08T15:12:00Z 2 2020-02-15T06:59:39Z +3842 2005-07-06T16:34:32Z 3119 583 2005-07-08T11:55:32Z 2 2020-02-15T06:59:39Z +3843 2005-07-06T16:35:40Z 3844 62 2005-07-07T18:29:40Z 1 2020-02-15T06:59:39Z +3844 2005-07-06T16:37:58Z 2814 179 2005-07-09T19:54:58Z 2 2020-02-15T06:59:39Z +3845 2005-07-06T16:38:14Z 4495 28 2005-07-09T14:59:14Z 2 2020-02-15T06:59:39Z +3846 2005-07-06T16:43:10Z 2829 88 2005-07-14T11:09:10Z 2 2020-02-15T06:59:39Z +3847 2005-07-06T16:44:41Z 782 206 2005-07-07T21:54:41Z 2 2020-02-15T06:59:39Z +3848 2005-07-06T16:47:32Z 2906 188 2005-07-14T15:00:32Z 1 2020-02-15T06:59:39Z +3849 2005-07-06T16:49:43Z 3660 60 2005-07-12T17:20:43Z 1 2020-02-15T06:59:39Z +3850 2005-07-06T16:51:21Z 1700 103 2005-07-12T13:58:21Z 1 2020-02-15T06:59:39Z +3851 2005-07-06T16:54:12Z 493 436 2005-07-11T22:49:12Z 1 2020-02-15T06:59:39Z +3852 2005-07-06T16:57:49Z 3329 511 2005-07-11T17:11:49Z 1 2020-02-15T06:59:39Z +3853 2005-07-06T16:59:20Z 1411 537 2005-07-07T12:30:20Z 2 2020-02-15T06:59:39Z +3854 2005-07-06T17:02:33Z 2054 243 2005-07-12T17:32:33Z 2 2020-02-15T06:59:39Z +3855 2005-07-06T17:03:48Z 2931 46 2005-07-12T14:32:48Z 1 2020-02-15T06:59:39Z +3856 2005-07-06T17:04:46Z 3083 498 2005-07-14T19:23:46Z 2 2020-02-15T06:59:39Z +3857 2005-07-06T17:07:54Z 1135 236 2005-07-07T13:28:54Z 1 2020-02-15T06:59:39Z +3858 2005-07-06T17:17:57Z 829 377 2005-07-10T23:10:57Z 2 2020-02-15T06:59:39Z +3859 2005-07-06T17:18:15Z 2548 553 2005-07-09T16:48:15Z 1 2020-02-15T06:59:39Z +3860 2005-07-06T17:20:24Z 144 514 2005-07-09T22:33:24Z 1 2020-02-15T06:59:39Z +3861 2005-07-06T17:24:49Z 4506 202 2005-07-15T22:19:49Z 2 2020-02-15T06:59:39Z +3862 2005-07-06T17:35:22Z 471 181 2005-07-15T17:13:22Z 1 2020-02-15T06:59:39Z +3863 2005-07-06T17:40:18Z 363 481 2005-07-07T17:58:18Z 2 2020-02-15T06:59:39Z +3864 2005-07-06T17:41:42Z 2811 68 2005-07-08T14:17:42Z 1 2020-02-15T06:59:39Z +3865 2005-07-06T17:46:57Z 3579 357 2005-07-12T12:20:57Z 1 2020-02-15T06:59:39Z +3866 2005-07-06T17:47:20Z 194 409 2005-07-15T18:12:20Z 1 2020-02-15T06:59:39Z +3867 2005-07-06T17:52:19Z 3620 580 2005-07-13T21:48:19Z 1 2020-02-15T06:59:39Z +3868 2005-07-06T17:54:13Z 1606 416 2005-07-10T14:51:13Z 1 2020-02-15T06:59:39Z +3869 2005-07-06T17:56:46Z 2540 183 2005-07-10T20:44:46Z 1 2020-02-15T06:59:39Z +3870 2005-07-06T17:57:54Z 3357 12 2005-07-13T12:30:54Z 1 2020-02-15T06:59:39Z +3871 2005-07-06T17:58:51Z 3114 331 2005-07-15T22:18:51Z 2 2020-02-15T06:59:39Z +3872 2005-07-06T18:00:19Z 1785 513 2005-07-07T17:26:19Z 1 2020-02-15T06:59:39Z +3873 2005-07-06T18:03:16Z 4148 394 2005-07-15T23:58:16Z 2 2020-02-15T06:59:39Z +3874 2005-07-06T18:06:12Z 1870 137 2005-07-12T16:55:12Z 1 2020-02-15T06:59:39Z +3875 2005-07-06T18:15:39Z 712 108 2005-07-11T17:34:39Z 1 2020-02-15T06:59:39Z +3876 2005-07-06T18:21:13Z 4039 295 2005-07-14T16:57:13Z 2 2020-02-15T06:59:39Z +3877 2005-07-06T18:22:10Z 2796 576 2005-07-07T23:38:10Z 1 2020-02-15T06:59:39Z +3878 2005-07-06T18:27:09Z 4022 385 2005-07-15T20:13:09Z 2 2020-02-15T06:59:39Z +3879 2005-07-06T18:31:20Z 1376 81 2005-07-09T19:03:20Z 2 2020-02-15T06:59:39Z +3880 2005-07-06T18:32:49Z 42 507 2005-07-07T20:46:49Z 2 2020-02-15T06:59:39Z +3881 2005-07-06T18:35:37Z 143 456 2005-07-10T00:06:37Z 2 2020-02-15T06:59:39Z +3882 2005-07-06T18:38:21Z 788 254 2005-07-09T14:55:21Z 1 2020-02-15T06:59:39Z +3883 2005-07-06T18:39:38Z 3238 69 2005-07-14T15:59:38Z 2 2020-02-15T06:59:39Z +3884 2005-07-06T18:41:33Z 1806 210 2005-07-07T22:06:33Z 1 2020-02-15T06:59:39Z +3885 2005-07-06T18:43:43Z 1820 282 2005-07-12T19:48:43Z 2 2020-02-15T06:59:39Z +3886 2005-07-06T18:44:24Z 2368 326 2005-07-08T15:11:24Z 1 2020-02-15T06:59:39Z +3887 2005-07-06T18:46:34Z 1695 530 2005-07-07T13:15:34Z 1 2020-02-15T06:59:39Z +3888 2005-07-06T18:54:20Z 1945 412 2005-07-12T17:13:20Z 2 2020-02-15T06:59:39Z +3889 2005-07-06T18:56:25Z 2005 576 2005-07-08T21:22:25Z 2 2020-02-15T06:59:39Z +3890 2005-07-06T18:58:15Z 2570 553 2005-07-10T18:51:15Z 1 2020-02-15T06:59:39Z +3891 2005-07-06T18:58:25Z 3216 553 2005-07-09T23:20:25Z 2 2020-02-15T06:59:39Z +3892 2005-07-06T18:58:58Z 778 549 2005-07-10T19:29:58Z 1 2020-02-15T06:59:39Z +3893 2005-07-06T18:59:31Z 1281 350 2005-07-12T19:21:31Z 1 2020-02-15T06:59:39Z +3894 2005-07-06T19:01:39Z 2087 149 2005-07-12T21:35:39Z 2 2020-02-15T06:59:39Z +3895 2005-07-06T19:04:24Z 145 584 2005-07-15T17:48:24Z 2 2020-02-15T06:59:39Z +3896 2005-07-06T19:09:15Z 1755 309 2005-07-16T00:52:15Z 2 2020-02-15T06:59:39Z +3897 2005-07-06T19:11:43Z 14 277 2005-07-11T21:50:43Z 2 2020-02-15T06:59:39Z +3898 2005-07-06T19:12:37Z 3858 53 2005-07-11T15:50:37Z 1 2020-02-15T06:59:39Z +3899 2005-07-06T19:12:40Z 4020 485 2005-07-13T23:41:40Z 1 2020-02-15T06:59:39Z +3900 2005-07-06T19:21:28Z 1497 129 2005-07-15T21:06:28Z 2 2020-02-15T06:59:39Z +3901 2005-07-06T19:24:55Z 3367 321 2005-07-14T20:30:55Z 2 2020-02-15T06:59:39Z +3902 2005-07-06T19:25:18Z 2868 192 2005-07-10T17:42:18Z 2 2020-02-15T06:59:39Z +3903 2005-07-06T19:27:32Z 3614 369 2005-07-08T23:27:32Z 1 2020-02-15T06:59:39Z +3904 2005-07-06T19:30:57Z 3600 485 2005-07-11T18:47:57Z 2 2020-02-15T06:59:39Z +3905 2005-07-06T19:33:34Z 3817 526 2005-07-15T17:55:34Z 1 2020-02-15T06:59:39Z +3906 2005-07-06T19:35:55Z 1383 293 2005-07-15T22:35:55Z 1 2020-02-15T06:59:39Z +3907 2005-07-06T19:39:14Z 2507 452 2005-07-11T17:45:14Z 1 2020-02-15T06:59:39Z +3908 2005-07-06T19:47:26Z 3980 116 2005-07-13T19:59:26Z 1 2020-02-15T06:59:39Z +3909 2005-07-06T19:54:41Z 3423 396 2005-07-15T18:11:41Z 2 2020-02-15T06:59:39Z +3910 2005-07-06T20:05:18Z 2085 248 2005-07-10T18:51:18Z 1 2020-02-15T06:59:39Z +3911 2005-07-06T20:09:11Z 4548 34 2005-07-08T23:53:11Z 1 2020-02-15T06:59:39Z +3912 2005-07-06T20:10:03Z 2449 154 2005-07-08T18:39:03Z 2 2020-02-15T06:59:39Z +3913 2005-07-06T20:11:00Z 752 494 2005-07-08T14:42:00Z 1 2020-02-15T06:59:39Z +3914 2005-07-06T20:11:10Z 4092 159 2005-07-14T14:42:10Z 2 2020-02-15T06:59:39Z +3915 2005-07-06T20:16:46Z 125 163 2005-07-10T17:24:46Z 1 2020-02-15T06:59:39Z +3916 2005-07-06T20:18:50Z 3198 46 2005-07-12T21:56:50Z 1 2020-02-15T06:59:39Z +3917 2005-07-06T20:19:29Z 2747 471 2005-07-11T00:49:29Z 1 2020-02-15T06:59:39Z +3918 2005-07-06T20:26:15Z 1111 435 2005-07-15T20:32:15Z 1 2020-02-15T06:59:39Z +3919 2005-07-06T20:26:21Z 2695 147 2005-07-15T00:13:21Z 1 2020-02-15T06:59:39Z +3920 2005-07-06T20:26:40Z 1551 321 2005-07-15T15:00:40Z 2 2020-02-15T06:59:39Z +3921 2005-07-06T20:29:48Z 949 531 2005-07-14T01:44:48Z 1 2020-02-15T06:59:39Z +3922 2005-07-06T20:32:27Z 2878 470 2005-07-14T19:00:27Z 1 2020-02-15T06:59:39Z +3923 2005-07-06T20:34:10Z 2039 63 2005-07-13T19:20:10Z 1 2020-02-15T06:59:39Z +3924 2005-07-06T20:38:02Z 187 114 2005-07-11T23:35:02Z 2 2020-02-15T06:59:39Z +3925 2005-07-06T20:41:44Z 2653 428 2005-07-15T21:05:44Z 2 2020-02-15T06:59:39Z +3926 2005-07-06T20:42:35Z 4241 500 2005-07-09T16:30:35Z 2 2020-02-15T06:59:39Z +3927 2005-07-06T20:48:14Z 2194 404 2005-07-10T15:37:14Z 1 2020-02-15T06:59:39Z +3928 2005-07-06T20:52:09Z 1960 411 2005-07-08T18:51:09Z 1 2020-02-15T06:59:39Z +3929 2005-07-06T20:52:39Z 1235 453 2005-07-12T00:27:39Z 2 2020-02-15T06:59:39Z +3930 2005-07-06T20:54:07Z 165 573 2005-07-10T18:31:07Z 1 2020-02-15T06:59:39Z +3931 2005-07-06T21:03:46Z 182 176 2005-07-16T01:32:46Z 1 2020-02-15T06:59:39Z +3932 2005-07-06T21:06:17Z 4396 490 2005-07-07T19:25:17Z 2 2020-02-15T06:59:39Z +3933 2005-07-06T21:06:37Z 1202 229 2005-07-08T20:23:37Z 1 2020-02-15T06:59:39Z +3934 2005-07-06T21:07:23Z 3187 576 2005-07-10T18:20:23Z 2 2020-02-15T06:59:39Z +3935 2005-07-06T21:08:29Z 3402 503 2005-07-15T23:28:29Z 2 2020-02-15T06:59:39Z +3936 2005-07-06T21:15:03Z 4258 129 2005-07-08T17:45:03Z 2 2020-02-15T06:59:39Z +3937 2005-07-06T21:15:38Z 2091 211 2005-07-15T00:01:38Z 2 2020-02-15T06:59:39Z +3938 2005-07-06T21:15:45Z 1991 341 2005-07-13T20:02:45Z 2 2020-02-15T06:59:39Z +3939 2005-07-06T21:16:32Z 3627 149 2005-07-11T03:12:32Z 2 2020-02-15T06:59:39Z +3940 2005-07-06T21:16:59Z 1502 116 2005-07-07T19:17:59Z 2 2020-02-15T06:59:39Z +3941 2005-07-06T21:20:37Z 382 560 2005-07-09T01:35:37Z 2 2020-02-15T06:59:39Z +3942 2005-07-06T21:21:34Z 677 553 2005-07-15T02:34:34Z 1 2020-02-15T06:59:39Z +3943 2005-07-06T21:22:17Z 1816 566 2005-07-07T21:26:17Z 1 2020-02-15T06:59:39Z +3944 2005-07-06T21:34:11Z 4213 436 2005-07-08T23:46:11Z 2 2020-02-15T06:59:39Z +3945 2005-07-06T21:35:00Z 754 86 2005-07-08T00:31:00Z 2 2020-02-15T06:59:39Z +3946 2005-07-06T21:39:24Z 294 13 2005-07-11T16:10:24Z 1 2020-02-15T06:59:39Z +3947 2005-07-06T21:42:21Z 4188 324 2005-07-08T19:37:21Z 1 2020-02-15T06:59:39Z +3948 2005-07-06T21:45:53Z 2254 161 2005-07-08T19:24:53Z 2 2020-02-15T06:59:39Z +3949 2005-07-06T21:46:36Z 1765 153 2005-07-11T03:18:36Z 1 2020-02-15T06:59:39Z +3950 2005-07-06T21:48:44Z 4153 598 2005-07-14T02:25:44Z 1 2020-02-15T06:59:39Z +3951 2005-07-06T21:50:41Z 2288 250 2005-07-12T02:09:41Z 2 2020-02-15T06:59:39Z +3952 2005-07-06T21:51:31Z 1719 417 2005-07-13T15:54:31Z 1 2020-02-15T06:59:39Z +3953 2005-07-06T21:54:55Z 3879 385 2005-07-09T18:52:55Z 1 2020-02-15T06:59:39Z +3954 2005-07-06T21:57:44Z 4250 558 2005-07-08T02:37:44Z 2 2020-02-15T06:59:39Z +3955 2005-07-06T21:58:08Z 2523 247 2005-07-08T03:43:08Z 1 2020-02-15T06:59:39Z +3956 2005-07-06T22:01:51Z 15 147 2005-07-12T21:35:51Z 2 2020-02-15T06:59:39Z +3957 2005-07-06T22:05:47Z 443 414 2005-07-16T01:08:47Z 1 2020-02-15T06:59:39Z +3958 2005-07-06T22:07:33Z 4117 288 2005-07-10T19:31:33Z 2 2020-02-15T06:59:39Z +3959 2005-07-06T22:07:58Z 40 448 2005-07-13T02:30:58Z 1 2020-02-15T06:59:39Z +3960 2005-07-06T22:08:53Z 2090 594 2005-07-07T23:21:53Z 2 2020-02-15T06:59:39Z +3961 2005-07-06T22:11:43Z 4320 364 2005-07-09T03:14:43Z 1 2020-02-15T06:59:39Z +3962 2005-07-06T22:13:45Z 379 307 2005-07-15T00:22:45Z 2 2020-02-15T06:59:39Z +3963 2005-07-06T22:19:17Z 3912 111 2005-07-15T01:22:17Z 2 2020-02-15T06:59:39Z +3964 2005-07-06T22:23:02Z 1853 30 2005-07-07T22:21:02Z 1 2020-02-15T06:59:39Z +3965 2005-07-06T22:36:20Z 2863 243 2005-07-09T17:45:20Z 1 2020-02-15T06:59:39Z +3966 2005-07-06T22:38:49Z 556 495 2005-07-07T23:33:49Z 1 2020-02-15T06:59:39Z +3967 2005-07-06T22:45:10Z 2510 31 2005-07-09T23:54:10Z 2 2020-02-15T06:59:39Z +3968 2005-07-06T22:47:09Z 558 235 2005-07-12T21:01:09Z 1 2020-02-15T06:59:39Z +3969 2005-07-06T22:47:59Z 383 587 2005-07-08T02:11:59Z 1 2020-02-15T06:59:39Z +3970 2005-07-06T22:48:17Z 701 381 2005-07-15T19:07:17Z 1 2020-02-15T06:59:39Z +3971 2005-07-06T22:50:40Z 4415 473 2005-07-08T01:02:40Z 1 2020-02-15T06:59:39Z +3972 2005-07-06T22:53:57Z 1895 598 2005-07-11T01:32:57Z 1 2020-02-15T06:59:39Z +3973 2005-07-06T22:58:31Z 2625 592 2005-07-16T03:27:31Z 2 2020-02-15T06:59:39Z +3974 2005-07-06T22:59:16Z 4282 318 2005-07-11T22:30:16Z 1 2020-02-15T06:59:39Z +3975 2005-07-06T23:00:09Z 4343 545 2005-07-10T01:39:09Z 2 2020-02-15T06:59:39Z +3976 2005-07-06T23:00:20Z 2424 329 2005-07-07T21:51:20Z 2 2020-02-15T06:59:39Z +3977 2005-07-06T23:00:49Z 1284 449 2005-07-15T00:41:49Z 1 2020-02-15T06:59:39Z +3978 2005-07-06T23:04:33Z 4341 343 2005-07-10T17:45:33Z 2 2020-02-15T06:59:39Z +3979 2005-07-06T23:04:35Z 794 550 2005-07-13T01:38:35Z 2 2020-02-15T06:59:39Z +3980 2005-07-06T23:11:11Z 1845 475 2005-07-14T18:22:11Z 1 2020-02-15T06:59:39Z +3981 2005-07-06T23:12:12Z 842 375 2005-07-13T01:47:12Z 2 2020-02-15T06:59:39Z +3982 2005-07-06T23:14:16Z 4327 64 2005-07-08T21:21:16Z 2 2020-02-15T06:59:39Z +3983 2005-07-06T23:14:21Z 1261 6 2005-07-12T17:55:21Z 2 2020-02-15T06:59:39Z +3984 2005-07-06T23:22:36Z 2205 570 2005-07-08T21:40:36Z 2 2020-02-15T06:59:39Z +3985 2005-07-06T23:24:03Z 2096 307 2005-07-10T00:20:03Z 2 2020-02-15T06:59:39Z +3986 2005-07-06T23:25:13Z 3737 122 2005-07-09T21:26:13Z 2 2020-02-15T06:59:39Z +3987 2005-07-06T23:28:24Z 3104 270 2005-07-15T00:52:24Z 1 2020-02-15T06:59:39Z +3988 2005-07-06T23:30:42Z 2981 421 2005-07-13T03:06:42Z 2 2020-02-15T06:59:39Z +3989 2005-07-06T23:30:54Z 2366 213 2005-07-12T01:28:54Z 1 2020-02-15T06:59:39Z +3990 2005-07-06T23:32:44Z 2009 558 2005-07-14T01:35:44Z 2 2020-02-15T06:59:39Z +3991 2005-07-06T23:33:41Z 587 583 2005-07-16T01:31:41Z 1 2020-02-15T06:59:39Z +3992 2005-07-06T23:36:56Z 3219 448 2005-07-15T03:13:56Z 1 2020-02-15T06:59:39Z +3993 2005-07-06T23:37:06Z 1061 525 2005-07-14T19:31:06Z 1 2020-02-15T06:59:39Z +3994 2005-07-06T23:39:01Z 902 487 2005-07-14T00:33:01Z 1 2020-02-15T06:59:39Z +3995 2005-07-06T23:43:03Z 3990 128 2005-07-13T04:13:03Z 2 2020-02-15T06:59:39Z +3996 2005-07-06T23:46:43Z 2857 551 2005-07-14T22:34:43Z 2 2020-02-15T06:59:39Z +3997 2005-07-06T23:46:52Z 3895 52 2005-07-14T05:39:52Z 2 2020-02-15T06:59:39Z +3998 2005-07-06T23:49:20Z 1245 566 2005-07-12T20:39:20Z 1 2020-02-15T06:59:39Z +3999 2005-07-06T23:50:54Z 707 390 2005-07-09T22:09:54Z 1 2020-02-15T06:59:39Z +4000 2005-07-06T23:58:37Z 2122 95 2005-07-08T21:43:37Z 1 2020-02-15T06:59:39Z +4001 2005-07-07T00:07:00Z 864 120 2005-07-13T21:27:00Z 2 2020-02-15T06:59:39Z +4002 2005-07-07T00:08:18Z 2790 308 2005-07-14T01:29:18Z 2 2020-02-15T06:59:39Z +4003 2005-07-07T00:09:02Z 4054 8 2005-07-08T04:27:02Z 1 2020-02-15T06:59:39Z +4004 2005-07-07T00:20:51Z 667 574 2005-07-11T18:55:51Z 2 2020-02-15T06:59:39Z +4005 2005-07-07T00:22:26Z 3677 190 2005-07-15T04:34:26Z 2 2020-02-15T06:59:39Z +4006 2005-07-07T00:25:29Z 397 473 2005-07-08T05:30:29Z 2 2020-02-15T06:59:39Z +4007 2005-07-07T00:26:05Z 2071 285 2005-07-15T19:53:05Z 1 2020-02-15T06:59:39Z +4008 2005-07-07T00:26:43Z 1107 505 2005-07-16T03:58:43Z 2 2020-02-15T06:59:39Z +4009 2005-07-07T00:28:55Z 3607 394 2005-07-10T00:37:55Z 1 2020-02-15T06:59:39Z +4010 2005-07-07T00:47:00Z 4509 476 2005-07-12T06:23:00Z 2 2020-02-15T06:59:39Z +4011 2005-07-07T00:48:25Z 2052 20 2005-07-13T06:30:25Z 2 2020-02-15T06:59:39Z +4012 2005-07-07T00:56:09Z 1400 104 2005-07-10T21:49:09Z 1 2020-02-15T06:59:39Z +4013 2005-07-07T00:58:00Z 2344 475 2005-07-15T19:42:00Z 2 2020-02-15T06:59:39Z +4014 2005-07-07T00:58:54Z 583 510 2005-07-12T02:40:54Z 1 2020-02-15T06:59:39Z +4015 2005-07-07T00:59:46Z 3032 233 2005-07-14T03:16:46Z 2 2020-02-15T06:59:39Z +4016 2005-07-07T01:05:50Z 3318 335 2005-07-09T05:59:50Z 1 2020-02-15T06:59:39Z +4017 2005-07-07T01:08:18Z 3117 595 2005-07-09T01:47:18Z 2 2020-02-15T06:59:39Z +4018 2005-07-07T01:10:33Z 906 207 2005-07-12T20:54:33Z 2 2020-02-15T06:59:39Z +4019 2005-07-07T01:27:44Z 3200 294 2005-07-10T21:30:44Z 1 2020-02-15T06:59:39Z +4020 2005-07-07T01:42:22Z 3760 471 2005-07-10T00:53:22Z 1 2020-02-15T06:59:39Z +4021 2005-07-07T01:46:44Z 1676 315 2005-07-12T00:16:44Z 2 2020-02-15T06:59:39Z +4022 2005-07-07T01:50:06Z 3914 390 2005-07-09T21:47:06Z 2 2020-02-15T06:59:39Z +4023 2005-07-07T01:55:25Z 274 573 2005-07-08T02:43:25Z 2 2020-02-15T06:59:39Z +4024 2005-07-07T02:11:23Z 3976 448 2005-07-11T02:00:23Z 1 2020-02-15T06:59:39Z +4025 2005-07-07T02:13:24Z 3908 114 2005-07-08T00:47:24Z 1 2020-02-15T06:59:39Z +4026 2005-07-07T02:15:48Z 4142 251 2005-07-14T04:15:48Z 2 2020-02-15T06:59:39Z +4027 2005-07-07T02:19:01Z 56 116 2005-07-10T01:12:01Z 1 2020-02-15T06:59:39Z +4028 2005-07-07T02:19:14Z 1651 344 2005-07-15T08:09:14Z 2 2020-02-15T06:59:39Z +4029 2005-07-07T02:19:44Z 4075 518 2005-07-15T02:30:44Z 2 2020-02-15T06:59:39Z +4030 2005-07-07T02:25:42Z 1734 300 2005-07-08T22:53:42Z 2 2020-02-15T06:59:39Z +4031 2005-07-07T02:32:07Z 3094 143 2005-07-14T06:01:07Z 2 2020-02-15T06:59:39Z +4032 2005-07-07T02:34:13Z 2628 335 2005-07-14T22:43:13Z 1 2020-02-15T06:59:39Z +4033 2005-07-07T02:35:46Z 203 453 2005-07-16T01:12:46Z 1 2020-02-15T06:59:39Z +4034 2005-07-07T02:36:33Z 1666 354 2005-07-09T08:32:33Z 2 2020-02-15T06:59:39Z +4035 2005-07-07T02:45:02Z 3611 539 2005-07-14T01:41:02Z 1 2020-02-15T06:59:39Z +4036 2005-07-07T02:48:00Z 500 397 2005-07-07T22:46:00Z 1 2020-02-15T06:59:39Z +4037 2005-07-07T02:52:52Z 3903 594 2005-07-16T00:09:52Z 1 2020-02-15T06:59:39Z +4038 2005-07-07T02:52:53Z 1264 27 2005-07-11T22:32:53Z 2 2020-02-15T06:59:39Z +4039 2005-07-07T02:57:59Z 4050 290 2005-07-12T03:44:59Z 2 2020-02-15T06:59:39Z +4040 2005-07-07T03:02:40Z 3046 103 2005-07-16T06:05:40Z 2 2020-02-15T06:59:39Z +4041 2005-07-07T03:03:33Z 2217 445 2005-07-09T07:57:33Z 2 2020-02-15T06:59:39Z +4042 2005-07-07T03:06:40Z 50 10 2005-07-10T02:37:40Z 1 2020-02-15T06:59:39Z +4043 2005-07-07T03:09:50Z 3427 204 2005-07-10T07:49:50Z 2 2020-02-15T06:59:39Z +4044 2005-07-07T03:22:23Z 3263 94 2005-07-13T03:23:23Z 1 2020-02-15T06:59:39Z +4045 2005-07-07T03:26:14Z 1422 529 2005-07-11T06:52:14Z 1 2020-02-15T06:59:39Z +4046 2005-07-07T03:27:59Z 3518 491 2005-07-14T01:14:59Z 1 2020-02-15T06:59:39Z +4047 2005-07-07T03:28:49Z 3475 364 2005-07-09T02:42:49Z 2 2020-02-15T06:59:39Z +4048 2005-07-07T03:30:52Z 659 474 2005-07-14T05:05:52Z 2 2020-02-15T06:59:39Z +4049 2005-07-07T03:34:53Z 4172 79 2005-07-15T04:10:53Z 2 2020-02-15T06:59:39Z +4050 2005-07-07T03:35:33Z 104 528 2005-07-15T03:11:33Z 1 2020-02-15T06:59:39Z +4051 2005-07-07T03:37:28Z 2715 331 2005-07-09T01:40:28Z 1 2020-02-15T06:59:39Z +4052 2005-07-07T03:38:22Z 206 442 2005-07-13T02:56:22Z 2 2020-02-15T06:59:39Z +4053 2005-07-07T03:39:22Z 2889 377 2005-07-09T22:32:22Z 1 2020-02-15T06:59:39Z +4054 2005-07-07T03:42:07Z 3885 260 2005-07-10T03:22:07Z 1 2020-02-15T06:59:39Z +4055 2005-07-07T03:49:13Z 2561 513 2005-07-11T03:15:13Z 2 2020-02-15T06:59:39Z +4056 2005-07-07T03:57:36Z 4211 360 2005-07-09T08:53:36Z 2 2020-02-15T06:59:39Z +4057 2005-07-07T04:00:20Z 2838 141 2005-07-12T08:14:20Z 1 2020-02-15T06:59:39Z +4058 2005-07-07T04:02:50Z 3877 442 2005-07-10T04:30:50Z 2 2020-02-15T06:59:39Z +4059 2005-07-07T04:04:26Z 292 401 2005-07-10T22:35:26Z 1 2020-02-15T06:59:39Z +4060 2005-07-07T04:10:13Z 2697 211 2005-07-13T07:44:13Z 1 2020-02-15T06:59:39Z +4061 2005-07-07T04:13:35Z 62 70 2005-07-10T23:58:35Z 2 2020-02-15T06:59:39Z +4062 2005-07-07T04:22:27Z 1323 410 2005-07-09T03:27:27Z 1 2020-02-15T06:59:39Z +4063 2005-07-07T04:23:57Z 1452 331 2005-07-14T23:35:57Z 2 2020-02-15T06:59:39Z +4064 2005-07-07T04:29:20Z 1402 47 2005-07-14T05:48:20Z 2 2020-02-15T06:59:39Z +4065 2005-07-07T04:32:28Z 1339 26 2005-07-12T08:30:28Z 1 2020-02-15T06:59:39Z +4066 2005-07-07T04:34:09Z 1975 368 2005-07-10T23:54:09Z 1 2020-02-15T06:59:39Z +4067 2005-07-07T04:34:23Z 2945 469 2005-07-16T04:04:23Z 1 2020-02-15T06:59:39Z +4068 2005-07-07T04:34:38Z 4152 206 2005-07-11T09:16:38Z 2 2020-02-15T06:59:39Z +4069 2005-07-07T04:35:06Z 3361 570 2005-07-10T23:59:06Z 2 2020-02-15T06:59:39Z +4070 2005-07-07T04:37:09Z 2926 496 2005-07-08T04:19:09Z 2 2020-02-15T06:59:39Z +4071 2005-07-07T04:37:26Z 2883 209 2005-07-13T06:45:26Z 2 2020-02-15T06:59:39Z +4072 2005-07-07T04:48:02Z 3130 310 2005-07-12T10:32:02Z 2 2020-02-15T06:59:39Z +4073 2005-07-07T04:49:13Z 647 290 2005-07-10T03:20:13Z 2 2020-02-15T06:59:39Z +4074 2005-07-07T04:49:49Z 2347 412 2005-07-12T04:51:49Z 2 2020-02-15T06:59:39Z +4075 2005-07-07T04:51:44Z 1989 593 2005-07-09T03:07:44Z 2 2020-02-15T06:59:39Z +4076 2005-07-07T04:52:15Z 3148 329 2005-07-13T23:22:15Z 1 2020-02-15T06:59:39Z +4077 2005-07-07T04:53:40Z 2445 377 2005-07-09T09:56:40Z 2 2020-02-15T06:59:39Z +4078 2005-07-07T05:05:05Z 1671 522 2005-07-10T05:39:05Z 1 2020-02-15T06:59:39Z +4079 2005-07-07T05:06:27Z 2202 84 2005-07-16T08:46:27Z 1 2020-02-15T06:59:39Z +4080 2005-07-07T05:09:54Z 1364 148 2005-07-11T23:58:54Z 1 2020-02-15T06:59:39Z +4081 2005-07-07T05:10:08Z 1138 284 2005-07-12T00:47:08Z 1 2020-02-15T06:59:39Z +4082 2005-07-07T05:11:53Z 2904 108 2005-07-12T00:55:53Z 1 2020-02-15T06:59:39Z +4083 2005-07-07T05:13:15Z 3454 490 2005-07-08T09:11:15Z 1 2020-02-15T06:59:39Z +4084 2005-07-07T05:16:00Z 2588 441 2005-07-15T09:23:00Z 1 2020-02-15T06:59:39Z +4085 2005-07-07T05:25:39Z 1683 573 2005-07-12T04:30:39Z 1 2020-02-15T06:59:39Z +4086 2005-07-07T05:26:06Z 253 494 2005-07-12T00:45:06Z 2 2020-02-15T06:59:39Z +4087 2005-07-07T05:30:56Z 3066 433 2005-07-16T10:20:56Z 1 2020-02-15T06:59:39Z +4088 2005-07-07T05:31:55Z 234 66 2005-07-15T07:35:55Z 1 2020-02-15T06:59:39Z +4089 2005-07-07T05:45:59Z 3431 102 2005-07-16T07:34:59Z 2 2020-02-15T06:59:39Z +4090 2005-07-07T05:47:33Z 3096 67 2005-07-08T04:25:33Z 2 2020-02-15T06:59:39Z +4091 2005-07-07T05:53:38Z 3928 337 2005-07-14T03:12:38Z 2 2020-02-15T06:59:39Z +4092 2005-07-07T05:54:18Z 1721 246 2005-07-16T09:14:18Z 1 2020-02-15T06:59:39Z +4093 2005-07-07T05:54:50Z 1534 337 2005-07-12T00:34:50Z 1 2020-02-15T06:59:39Z +4094 2005-07-07T06:00:21Z 2412 517 2005-07-10T03:24:21Z 2 2020-02-15T06:59:39Z +4095 2005-07-07T06:01:48Z 2900 33 2005-07-15T02:52:48Z 2 2020-02-15T06:59:39Z +4096 2005-07-07T06:09:11Z 3911 403 2005-07-08T09:17:11Z 2 2020-02-15T06:59:39Z +4097 2005-07-07T06:10:55Z 2454 56 2005-07-11T02:45:55Z 1 2020-02-15T06:59:39Z +4098 2005-07-07T06:14:51Z 2865 35 2005-07-14T06:51:51Z 2 2020-02-15T06:59:39Z +4099 2005-07-07T06:20:33Z 1930 76 2005-07-16T08:39:33Z 1 2020-02-15T06:59:39Z +4100 2005-07-07T06:20:52Z 2346 332 2005-07-15T05:58:52Z 2 2020-02-15T06:59:39Z +4101 2005-07-07T06:25:11Z 2891 588 2005-07-12T07:44:11Z 2 2020-02-15T06:59:39Z +4102 2005-07-07T06:25:19Z 3998 135 2005-07-11T00:50:19Z 2 2020-02-15T06:59:39Z +4103 2005-07-07T06:25:28Z 3632 91 2005-07-12T11:18:28Z 1 2020-02-15T06:59:39Z +4104 2005-07-07T06:25:41Z 1066 338 2005-07-13T04:18:41Z 2 2020-02-15T06:59:39Z +4105 2005-07-07T06:31:00Z 439 423 2005-07-09T03:52:00Z 1 2020-02-15T06:59:39Z +4106 2005-07-07T06:33:35Z 4083 563 2005-07-13T04:03:35Z 1 2020-02-15T06:59:39Z +4107 2005-07-07T06:36:32Z 4232 206 2005-07-14T03:36:32Z 1 2020-02-15T06:59:39Z +4108 2005-07-07T06:38:31Z 4535 66 2005-07-08T10:44:31Z 1 2020-02-15T06:59:39Z +4109 2005-07-07T06:39:43Z 532 517 2005-07-10T06:30:43Z 1 2020-02-15T06:59:39Z +4110 2005-07-07T06:44:27Z 226 486 2005-07-12T05:43:27Z 2 2020-02-15T06:59:39Z +4111 2005-07-07T06:47:56Z 1009 515 2005-07-13T02:13:56Z 1 2020-02-15T06:59:39Z +4112 2005-07-07T06:49:09Z 3284 533 2005-07-16T06:53:09Z 2 2020-02-15T06:59:39Z +4113 2005-07-07T06:49:52Z 915 170 2005-07-12T04:00:52Z 1 2020-02-15T06:59:39Z +4114 2005-07-07T06:51:12Z 4109 426 2005-07-15T01:36:12Z 1 2020-02-15T06:59:39Z +4115 2005-07-07T06:52:23Z 102 371 2005-07-14T06:12:23Z 2 2020-02-15T06:59:39Z +4116 2005-07-07T06:56:13Z 666 352 2005-07-11T11:13:13Z 2 2020-02-15T06:59:39Z +4117 2005-07-07T06:58:14Z 780 158 2005-07-16T05:28:14Z 1 2020-02-15T06:59:39Z +4118 2005-07-07T07:03:30Z 355 224 2005-07-08T09:20:30Z 1 2020-02-15T06:59:39Z +4119 2005-07-07T07:06:03Z 2078 319 2005-07-13T01:56:03Z 2 2020-02-15T06:59:39Z +4120 2005-07-07T07:07:03Z 987 559 2005-07-16T04:07:03Z 1 2020-02-15T06:59:39Z +4121 2005-07-07T07:13:50Z 2429 176 2005-07-13T04:32:50Z 2 2020-02-15T06:59:39Z +4122 2005-07-07T07:15:35Z 273 31 2005-07-14T12:10:35Z 1 2020-02-15T06:59:39Z +4123 2005-07-07T07:16:19Z 2707 469 2005-07-10T05:23:19Z 1 2020-02-15T06:59:39Z +4124 2005-07-07T07:19:54Z 2856 330 2005-07-11T05:54:54Z 1 2020-02-15T06:59:39Z +4125 2005-07-07T07:20:29Z 4131 269 2005-07-15T06:41:29Z 2 2020-02-15T06:59:39Z +4126 2005-07-07T07:24:11Z 3018 163 2005-07-15T07:31:11Z 1 2020-02-15T06:59:39Z +4127 2005-07-07T07:26:19Z 1774 15 2005-07-14T07:50:19Z 2 2020-02-15T06:59:39Z +4128 2005-07-07T07:35:25Z 3563 492 2005-07-14T08:13:25Z 1 2020-02-15T06:59:39Z +4129 2005-07-07T07:37:03Z 1413 592 2005-07-14T13:31:03Z 1 2020-02-15T06:59:39Z +4130 2005-07-07T07:51:53Z 4170 256 2005-07-11T12:41:53Z 2 2020-02-15T06:59:39Z +4131 2005-07-07T07:53:18Z 2621 58 2005-07-08T04:48:18Z 1 2020-02-15T06:59:39Z +4132 2005-07-07T08:06:07Z 993 154 2005-07-10T14:04:07Z 1 2020-02-15T06:59:39Z +4133 2005-07-07T08:12:26Z 3672 488 2005-07-16T03:43:26Z 1 2020-02-15T06:59:39Z +4134 2005-07-07T08:14:24Z 2917 183 2005-07-09T10:42:24Z 1 2020-02-15T06:59:39Z +4135 2005-07-07T08:15:03Z 3384 36 2005-07-11T10:56:03Z 1 2020-02-15T06:59:39Z +4136 2005-07-07T08:15:52Z 3461 203 2005-07-10T04:22:52Z 2 2020-02-15T06:59:39Z +4137 2005-07-07T08:17:06Z 2065 485 2005-07-11T10:52:06Z 2 2020-02-15T06:59:39Z +4138 2005-07-07T08:17:13Z 1588 317 2005-07-14T05:18:13Z 2 2020-02-15T06:59:39Z +4139 2005-07-07T08:17:35Z 2094 509 2005-07-14T14:01:35Z 2 2020-02-15T06:59:39Z +4140 2005-07-07T08:19:10Z 1897 190 2005-07-14T07:27:10Z 2 2020-02-15T06:59:39Z +4141 2005-07-07T08:19:20Z 1904 456 2005-07-11T06:54:20Z 1 2020-02-15T06:59:39Z +4142 2005-07-07T08:19:45Z 4045 492 2005-07-08T13:55:45Z 1 2020-02-15T06:59:39Z +4143 2005-07-07T08:22:07Z 597 238 2005-07-13T11:42:07Z 1 2020-02-15T06:59:39Z +4144 2005-07-07T08:25:44Z 550 431 2005-07-16T13:10:44Z 2 2020-02-15T06:59:39Z +4145 2005-07-07T08:26:39Z 3050 592 2005-07-16T12:54:39Z 2 2020-02-15T06:59:39Z +4146 2005-07-07T08:30:16Z 176 411 2005-07-12T07:52:16Z 1 2020-02-15T06:59:39Z +4147 2005-07-07T08:32:12Z 2776 274 2005-07-12T10:10:12Z 2 2020-02-15T06:59:39Z +4148 2005-07-07T08:36:58Z 260 59 2005-07-09T05:51:58Z 1 2020-02-15T06:59:39Z +4149 2005-07-07T08:40:17Z 3028 50 2005-07-10T02:58:17Z 2 2020-02-15T06:59:39Z +4150 2005-07-07T08:43:22Z 4424 188 2005-07-08T05:21:22Z 2 2020-02-15T06:59:39Z +4151 2005-07-07T08:49:02Z 4564 428 2005-07-11T05:19:02Z 1 2020-02-15T06:59:39Z +4152 2005-07-07T08:50:33Z 1761 89 2005-07-14T10:56:33Z 2 2020-02-15T06:59:39Z +4153 2005-07-07T08:53:08Z 2185 299 2005-07-11T05:09:08Z 2 2020-02-15T06:59:39Z +4154 2005-07-07T08:58:23Z 191 594 2005-07-14T03:16:23Z 2 2020-02-15T06:59:39Z +4155 2005-07-07T09:00:49Z 212 548 2005-07-13T10:59:49Z 2 2020-02-15T06:59:39Z +4156 2005-07-07T09:03:51Z 1259 585 2005-07-12T09:46:51Z 2 2020-02-15T06:59:39Z +4157 2005-07-07T09:04:26Z 304 183 2005-07-08T09:55:26Z 1 2020-02-15T06:59:39Z +4158 2005-07-07T09:05:42Z 291 433 2005-07-09T04:28:42Z 1 2020-02-15T06:59:39Z +4159 2005-07-07T09:10:57Z 3625 62 2005-07-09T10:19:57Z 2 2020-02-15T06:59:39Z +4160 2005-07-07T09:13:17Z 1909 326 2005-07-15T11:50:17Z 2 2020-02-15T06:59:39Z +4161 2005-07-07T09:15:11Z 4021 216 2005-07-15T06:59:11Z 1 2020-02-15T06:59:39Z +4162 2005-07-07T09:17:26Z 745 571 2005-07-15T10:15:26Z 2 2020-02-15T06:59:39Z +4163 2005-07-07T09:19:28Z 3176 376 2005-07-10T06:47:28Z 2 2020-02-15T06:59:39Z +4164 2005-07-07T09:20:11Z 3133 295 2005-07-14T09:35:11Z 1 2020-02-15T06:59:39Z +4165 2005-07-07T09:23:27Z 3845 66 2005-07-15T06:00:27Z 1 2020-02-15T06:59:39Z +4166 2005-07-07T09:33:30Z 3267 376 2005-07-16T06:06:30Z 1 2020-02-15T06:59:39Z +4167 2005-07-07T09:37:08Z 3771 175 2005-07-16T06:16:08Z 2 2020-02-15T06:59:39Z +4168 2005-07-07T09:37:24Z 1872 132 2005-07-09T14:32:24Z 2 2020-02-15T06:59:39Z +4169 2005-07-07T09:39:18Z 3360 580 2005-07-11T13:43:18Z 1 2020-02-15T06:59:39Z +4170 2005-07-07T09:44:36Z 2665 99 2005-07-13T14:10:36Z 1 2020-02-15T06:59:39Z +4171 2005-07-07T09:49:04Z 4199 476 2005-07-14T03:58:04Z 2 2020-02-15T06:59:39Z +4172 2005-07-07T09:49:09Z 1158 309 2005-07-11T15:14:09Z 2 2020-02-15T06:59:39Z +4173 2005-07-07T09:57:26Z 4272 320 2005-07-10T04:05:26Z 1 2020-02-15T06:59:39Z +4174 2005-07-07T09:59:49Z 3814 182 2005-07-11T13:34:49Z 1 2020-02-15T06:59:39Z +4175 2005-07-07T10:02:03Z 1979 8 2005-07-10T06:09:03Z 2 2020-02-15T06:59:39Z +4176 2005-07-07T10:03:34Z 2745 420 2005-07-16T08:43:34Z 1 2020-02-15T06:59:39Z +4177 2005-07-07T10:12:36Z 4106 317 2005-07-15T15:48:36Z 2 2020-02-15T06:59:39Z +4178 2005-07-07T10:14:31Z 2898 513 2005-07-12T09:38:31Z 2 2020-02-15T06:59:39Z +4179 2005-07-07T10:17:15Z 559 75 2005-07-10T05:12:15Z 2 2020-02-15T06:59:39Z +4180 2005-07-07T10:23:25Z 1704 3 2005-07-10T13:18:25Z 1 2020-02-15T06:59:39Z +4181 2005-07-07T10:27:54Z 3725 598 2005-07-13T06:09:54Z 1 2020-02-15T06:59:39Z +4182 2005-07-07T10:28:00Z 3080 256 2005-07-08T12:50:00Z 1 2020-02-15T06:59:39Z +4183 2005-07-07T10:28:33Z 3342 479 2005-07-15T12:29:33Z 1 2020-02-15T06:59:39Z +4184 2005-07-07T10:30:08Z 1022 468 2005-07-14T12:56:08Z 1 2020-02-15T06:59:39Z +4185 2005-07-07T10:31:05Z 2425 395 2005-07-13T05:30:05Z 2 2020-02-15T06:59:39Z +4186 2005-07-07T10:32:25Z 3910 185 2005-07-15T06:22:25Z 1 2020-02-15T06:59:39Z +4187 2005-07-07T10:41:31Z 2 161 2005-07-11T06:25:31Z 1 2020-02-15T06:59:39Z +4188 2005-07-07T10:45:29Z 3243 391 2005-07-16T09:39:29Z 1 2020-02-15T06:59:39Z +4189 2005-07-07T10:51:07Z 1492 386 2005-07-14T14:46:07Z 2 2020-02-15T06:59:39Z +4190 2005-07-07T10:52:39Z 826 349 2005-07-11T13:19:39Z 1 2020-02-15T06:59:39Z +4191 2005-07-07T10:56:14Z 2475 390 2005-07-11T09:56:14Z 1 2020-02-15T06:59:39Z +4192 2005-07-07T10:57:06Z 624 558 2005-07-13T16:30:06Z 1 2020-02-15T06:59:39Z +4193 2005-07-07T10:57:21Z 3791 445 2005-07-09T07:33:21Z 2 2020-02-15T06:59:39Z +4194 2005-07-07T10:59:39Z 1753 153 2005-07-15T09:34:39Z 1 2020-02-15T06:59:39Z +4195 2005-07-07T11:00:02Z 450 455 2005-07-14T16:54:02Z 1 2020-02-15T06:59:39Z +4196 2005-07-07T11:06:33Z 3407 564 2005-07-14T13:46:33Z 1 2020-02-15T06:59:39Z +4197 2005-07-07T11:07:52Z 2515 324 2005-07-10T10:19:52Z 1 2020-02-15T06:59:39Z +4198 2005-07-07T11:08:11Z 333 247 2005-07-16T15:29:11Z 1 2020-02-15T06:59:39Z +4199 2005-07-07T11:13:07Z 2120 259 2005-07-11T07:17:07Z 1 2020-02-15T06:59:39Z +4200 2005-07-07T11:15:11Z 1097 292 2005-07-11T11:46:11Z 2 2020-02-15T06:59:39Z +4201 2005-07-07T11:19:51Z 3682 145 2005-07-16T08:48:51Z 1 2020-02-15T06:59:39Z +4202 2005-07-07T11:23:48Z 2274 38 2005-07-16T16:32:48Z 1 2020-02-15T06:59:39Z +4203 2005-07-07T11:24:14Z 2743 189 2005-07-11T16:26:14Z 1 2020-02-15T06:59:39Z +4204 2005-07-07T11:24:18Z 1513 569 2005-07-15T12:42:18Z 1 2020-02-15T06:59:39Z +4205 2005-07-07T11:25:39Z 3922 486 2005-07-11T06:12:39Z 1 2020-02-15T06:59:39Z +4206 2005-07-07T11:32:16Z 1557 448 2005-07-14T13:07:16Z 2 2020-02-15T06:59:39Z +4207 2005-07-07T11:32:45Z 1119 588 2005-07-14T05:49:45Z 2 2020-02-15T06:59:39Z +4208 2005-07-07T11:34:22Z 3617 441 2005-07-09T08:25:22Z 1 2020-02-15T06:59:39Z +4209 2005-07-07T11:35:08Z 2010 100 2005-07-10T10:58:08Z 1 2020-02-15T06:59:39Z +4210 2005-07-07T11:36:20Z 1972 581 2005-07-16T12:38:20Z 1 2020-02-15T06:59:39Z +4211 2005-07-07T11:50:41Z 2001 214 2005-07-09T13:58:41Z 2 2020-02-15T06:59:39Z +4212 2005-07-07T11:53:14Z 1825 574 2005-07-09T07:12:14Z 1 2020-02-15T06:59:39Z +4213 2005-07-07T11:53:49Z 705 103 2005-07-13T07:51:49Z 1 2020-02-15T06:59:39Z +4214 2005-07-07T11:54:33Z 2534 484 2005-07-08T10:49:33Z 2 2020-02-15T06:59:39Z +4215 2005-07-07T12:00:52Z 1239 22 2005-07-11T15:14:52Z 2 2020-02-15T06:59:39Z +4216 2005-07-07T12:01:34Z 1216 467 2005-07-08T09:59:34Z 1 2020-02-15T06:59:39Z +4217 2005-07-07T12:08:59Z 3186 228 2005-07-11T15:07:59Z 2 2020-02-15T06:59:39Z +4218 2005-07-07T12:10:24Z 152 497 2005-07-15T16:09:24Z 1 2020-02-15T06:59:39Z +4219 2005-07-07T12:11:22Z 2800 16 2005-07-11T11:05:22Z 1 2020-02-15T06:59:39Z +4220 2005-07-07T12:12:36Z 821 513 2005-07-10T13:37:36Z 1 2020-02-15T06:59:39Z +4221 2005-07-07T12:18:57Z 4567 143 2005-07-12T09:47:57Z 2 2020-02-15T06:59:39Z +4222 2005-07-07T12:20:21Z 2053 467 2005-07-11T11:09:21Z 2 2020-02-15T06:59:39Z +4223 2005-07-07T12:23:54Z 2407 405 2005-07-10T14:46:54Z 2 2020-02-15T06:59:39Z +4224 2005-07-07T12:24:21Z 3659 419 2005-07-10T11:48:21Z 1 2020-02-15T06:59:39Z +4225 2005-07-07T12:24:37Z 1766 377 2005-07-12T06:47:37Z 2 2020-02-15T06:59:39Z +4226 2005-07-07T12:37:56Z 1692 57 2005-07-09T08:48:56Z 2 2020-02-15T06:59:39Z +4227 2005-07-07T12:41:36Z 4186 78 2005-07-15T12:33:36Z 1 2020-02-15T06:59:39Z +4228 2005-07-07T12:42:02Z 1020 38 2005-07-12T10:52:02Z 1 2020-02-15T06:59:39Z +4229 2005-07-07T12:43:23Z 953 106 2005-07-13T15:00:23Z 2 2020-02-15T06:59:39Z +4230 2005-07-07T12:46:47Z 353 205 2005-07-15T06:52:47Z 1 2020-02-15T06:59:39Z +4231 2005-07-07T12:48:19Z 3522 194 2005-07-13T18:45:19Z 1 2020-02-15T06:59:39Z +4232 2005-07-07T12:49:12Z 3841 347 2005-07-15T16:45:12Z 1 2020-02-15T06:59:39Z +4233 2005-07-07T13:00:20Z 1849 488 2005-07-13T16:37:20Z 1 2020-02-15T06:59:39Z +4234 2005-07-07T13:01:35Z 1179 195 2005-07-15T13:05:35Z 1 2020-02-15T06:59:39Z +4235 2005-07-07T13:05:52Z 3525 86 2005-07-10T12:17:52Z 2 2020-02-15T06:59:39Z +4236 2005-07-07T13:12:07Z 642 213 2005-07-08T15:00:07Z 2 2020-02-15T06:59:39Z +4237 2005-07-07T13:16:55Z 3773 477 2005-07-15T16:33:55Z 1 2020-02-15T06:59:39Z +4238 2005-07-07T13:22:20Z 3024 7 2005-07-10T07:44:20Z 2 2020-02-15T06:59:39Z +4239 2005-07-07T13:23:17Z 3866 122 2005-07-13T17:49:17Z 1 2020-02-15T06:59:39Z +4240 2005-07-07T13:33:12Z 1024 65 2005-07-13T12:28:12Z 1 2020-02-15T06:59:39Z +4241 2005-07-07T13:39:00Z 4154 595 2005-07-12T17:49:00Z 2 2020-02-15T06:59:39Z +4242 2005-07-07T13:39:01Z 3626 286 2005-07-12T18:29:01Z 1 2020-02-15T06:59:39Z +4243 2005-07-07T13:39:58Z 4559 339 2005-07-12T19:27:58Z 1 2020-02-15T06:59:39Z +4244 2005-07-07T13:41:58Z 592 581 2005-07-09T15:32:58Z 2 2020-02-15T06:59:39Z +4245 2005-07-07T13:48:33Z 3743 91 2005-07-10T09:54:33Z 1 2020-02-15T06:59:39Z +4246 2005-07-07T13:49:03Z 1141 411 2005-07-09T13:01:03Z 1 2020-02-15T06:59:39Z +4247 2005-07-07T13:51:54Z 808 539 2005-07-10T09:43:54Z 2 2020-02-15T06:59:39Z +4248 2005-07-07T13:59:20Z 773 161 2005-07-14T15:18:20Z 2 2020-02-15T06:59:39Z +4249 2005-07-07T14:05:17Z 4185 111 2005-07-10T09:21:17Z 2 2020-02-15T06:59:39Z +4250 2005-07-07T14:08:11Z 2556 423 2005-07-13T08:09:11Z 2 2020-02-15T06:59:39Z +4251 2005-07-07T14:11:55Z 3541 367 2005-07-16T14:01:55Z 2 2020-02-15T06:59:39Z +4252 2005-07-07T14:13:05Z 474 154 2005-07-09T14:17:05Z 1 2020-02-15T06:59:39Z +4253 2005-07-07T14:13:13Z 3355 157 2005-07-16T18:55:13Z 2 2020-02-15T06:59:39Z +4254 2005-07-07T14:13:52Z 3957 529 2005-07-12T10:39:52Z 2 2020-02-15T06:59:39Z +4255 2005-07-07T14:14:13Z 749 10 2005-07-12T18:32:13Z 1 2020-02-15T06:59:39Z +4256 2005-07-07T14:14:36Z 1386 129 2005-07-10T09:41:36Z 1 2020-02-15T06:59:39Z +4257 2005-07-07T14:18:41Z 3927 553 2005-07-08T14:58:41Z 1 2020-02-15T06:59:39Z +4258 2005-07-07T14:20:59Z 1562 492 2005-07-16T10:03:59Z 1 2020-02-15T06:59:39Z +4259 2005-07-07T14:22:18Z 4378 467 2005-07-11T19:38:18Z 1 2020-02-15T06:59:39Z +4260 2005-07-07T14:22:45Z 4575 305 2005-07-08T15:10:45Z 2 2020-02-15T06:59:39Z +4261 2005-07-07T14:23:56Z 1405 496 2005-07-13T15:26:56Z 1 2020-02-15T06:59:39Z +4262 2005-07-07T14:24:30Z 3122 29 2005-07-14T13:12:30Z 1 2020-02-15T06:59:39Z +4263 2005-07-07T14:24:44Z 2975 16 2005-07-13T18:22:44Z 1 2020-02-15T06:59:39Z +4264 2005-07-07T14:25:28Z 3499 406 2005-07-08T08:49:28Z 2 2020-02-15T06:59:39Z +4265 2005-07-07T14:27:51Z 1685 69 2005-07-12T19:55:51Z 2 2020-02-15T06:59:39Z +4266 2005-07-07T14:34:50Z 1578 509 2005-07-08T09:23:50Z 2 2020-02-15T06:59:39Z +4267 2005-07-07T14:35:30Z 136 410 2005-07-11T10:41:30Z 1 2020-02-15T06:59:39Z +4268 2005-07-07T14:36:05Z 432 80 2005-07-16T14:36:05Z 1 2020-02-15T06:59:39Z +4269 2005-07-07T14:38:33Z 415 496 2005-07-09T10:27:33Z 1 2020-02-15T06:59:39Z +4270 2005-07-07T14:38:41Z 183 210 2005-07-10T19:07:41Z 2 2020-02-15T06:59:39Z +4271 2005-07-07T14:38:52Z 533 150 2005-07-15T12:05:52Z 1 2020-02-15T06:59:39Z +4272 2005-07-07T14:39:20Z 488 120 2005-07-13T08:57:20Z 2 2020-02-15T06:59:39Z +4273 2005-07-07T14:40:22Z 4163 159 2005-07-13T09:58:22Z 2 2020-02-15T06:59:39Z +4274 2005-07-07T14:42:04Z 787 26 2005-07-13T20:23:04Z 1 2020-02-15T06:59:39Z +4275 2005-07-07T14:43:51Z 1167 393 2005-07-15T18:04:51Z 2 2020-02-15T06:59:39Z +4276 2005-07-07T14:50:59Z 221 366 2005-07-09T15:42:59Z 2 2020-02-15T06:59:39Z +4277 2005-07-07T14:52:12Z 1983 106 2005-07-09T13:10:12Z 1 2020-02-15T06:59:39Z +4278 2005-07-07T14:53:24Z 3693 6 2005-07-13T14:21:24Z 2 2020-02-15T06:59:39Z +4279 2005-07-07T15:01:53Z 581 335 2005-07-08T09:43:53Z 1 2020-02-15T06:59:39Z +4280 2005-07-07T15:09:31Z 1115 593 2005-07-13T14:47:31Z 1 2020-02-15T06:59:39Z +4281 2005-07-07T15:17:50Z 1182 321 2005-07-08T11:42:50Z 2 2020-02-15T06:59:39Z +4282 2005-07-07T15:26:31Z 3134 25 2005-07-11T14:27:31Z 1 2020-02-15T06:59:39Z +4283 2005-07-07T15:29:35Z 2807 477 2005-07-11T17:12:35Z 1 2020-02-15T06:59:39Z +4284 2005-07-07T15:31:57Z 1313 521 2005-07-09T10:20:57Z 2 2020-02-15T06:59:39Z +4285 2005-07-07T15:34:35Z 511 308 2005-07-15T09:43:35Z 2 2020-02-15T06:59:39Z +4286 2005-07-07T15:36:44Z 4496 111 2005-07-11T13:04:44Z 2 2020-02-15T06:59:39Z +4287 2005-07-07T15:37:31Z 3558 94 2005-07-16T19:59:31Z 2 2020-02-15T06:59:39Z +4288 2005-07-07T15:38:25Z 1508 64 2005-07-13T16:23:25Z 2 2020-02-15T06:59:39Z +4289 2005-07-07T15:45:58Z 3172 231 2005-07-09T11:11:58Z 2 2020-02-15T06:59:39Z +4290 2005-07-07T15:47:10Z 4174 277 2005-07-15T15:03:10Z 1 2020-02-15T06:59:39Z +4291 2005-07-07T15:47:47Z 2074 298 2005-07-10T11:45:47Z 1 2020-02-15T06:59:39Z +4292 2005-07-07T15:48:38Z 3084 401 2005-07-15T17:53:38Z 1 2020-02-15T06:59:39Z +4293 2005-07-07T15:53:47Z 984 221 2005-07-10T18:11:47Z 1 2020-02-15T06:59:39Z +4294 2005-07-07T15:56:23Z 2845 41 2005-07-15T14:50:23Z 2 2020-02-15T06:59:39Z +4295 2005-07-07T16:08:51Z 2490 319 2005-07-13T13:06:51Z 2 2020-02-15T06:59:39Z +4296 2005-07-07T16:16:03Z 977 407 2005-07-08T20:16:03Z 2 2020-02-15T06:59:39Z +4297 2005-07-07T16:24:09Z 882 141 2005-07-13T15:08:09Z 2 2020-02-15T06:59:39Z +4298 2005-07-07T16:27:25Z 1055 560 2005-07-12T18:20:25Z 1 2020-02-15T06:59:39Z +4299 2005-07-07T16:33:48Z 870 80 2005-07-16T11:48:48Z 1 2020-02-15T06:59:39Z +4300 2005-07-07T16:36:16Z 1189 38 2005-07-10T13:59:16Z 2 2020-02-15T06:59:39Z +4301 2005-07-07T16:37:23Z 1630 440 2005-07-11T18:05:23Z 2 2020-02-15T06:59:39Z +4302 2005-07-07T16:47:53Z 3669 332 2005-07-16T22:22:53Z 2 2020-02-15T06:59:39Z +4303 2005-07-07T16:57:32Z 818 108 2005-07-14T17:42:32Z 2 2020-02-15T06:59:39Z +4304 2005-07-07T17:01:19Z 3382 165 2005-07-12T22:47:19Z 2 2020-02-15T06:59:39Z +4305 2005-07-07T17:07:11Z 3926 240 2005-07-08T16:15:11Z 2 2020-02-15T06:59:39Z +4306 2005-07-07T17:12:32Z 1219 210 2005-07-16T11:24:32Z 2 2020-02-15T06:59:39Z +4307 2005-07-07T17:20:39Z 2827 394 2005-07-16T14:42:39Z 1 2020-02-15T06:59:39Z +4308 2005-07-07T17:29:16Z 1482 168 2005-07-11T21:47:16Z 1 2020-02-15T06:59:39Z +4309 2005-07-07T17:29:41Z 3549 209 2005-07-14T22:22:41Z 2 2020-02-15T06:59:39Z +4310 2005-07-07T17:30:56Z 3842 390 2005-07-12T13:19:56Z 2 2020-02-15T06:59:39Z +4311 2005-07-07T17:31:14Z 2985 498 2005-07-11T19:21:14Z 2 2020-02-15T06:59:39Z +4312 2005-07-07T17:34:59Z 3870 97 2005-07-09T17:45:59Z 2 2020-02-15T06:59:39Z +4313 2005-07-07T17:36:56Z 91 29 2005-07-13T12:00:56Z 1 2020-02-15T06:59:39Z +4314 2005-07-07T17:38:31Z 539 184 2005-07-09T20:24:31Z 1 2020-02-15T06:59:39Z +4315 2005-07-07T17:40:26Z 1472 195 2005-07-09T22:58:26Z 2 2020-02-15T06:59:39Z +4316 2005-07-07T17:44:22Z 517 301 2005-07-14T15:12:22Z 2 2020-02-15T06:59:39Z +4317 2005-07-07T17:44:49Z 2234 110 2005-07-08T21:48:49Z 2 2020-02-15T06:59:39Z +4318 2005-07-07T17:47:50Z 1607 321 2005-07-14T12:15:50Z 2 2020-02-15T06:59:39Z +4319 2005-07-07T17:50:27Z 3389 25 2005-07-10T13:53:27Z 2 2020-02-15T06:59:39Z +4320 2005-07-07T17:51:59Z 3437 376 2005-07-13T18:39:59Z 1 2020-02-15T06:59:39Z +4321 2005-07-07T17:52:38Z 612 91 2005-07-11T23:37:38Z 1 2020-02-15T06:59:39Z +4322 2005-07-07T17:54:37Z 1522 568 2005-07-14T13:56:37Z 1 2020-02-15T06:59:39Z +4323 2005-07-07T17:55:53Z 1287 336 2005-07-13T16:43:53Z 2 2020-02-15T06:59:39Z +4324 2005-07-07T17:57:56Z 952 226 2005-07-13T22:34:56Z 1 2020-02-15T06:59:39Z +4325 2005-07-07T17:59:24Z 3728 373 2005-07-16T17:10:24Z 2 2020-02-15T06:59:39Z +4326 2005-07-07T18:01:22Z 4037 331 2005-07-16T15:45:22Z 1 2020-02-15T06:59:39Z +4327 2005-07-07T18:01:39Z 860 73 2005-07-12T22:40:39Z 1 2020-02-15T06:59:39Z +4328 2005-07-07T18:03:17Z 2174 264 2005-07-14T16:14:17Z 1 2020-02-15T06:59:39Z +4329 2005-07-07T18:04:16Z 638 504 2005-07-15T17:58:16Z 2 2020-02-15T06:59:39Z +4330 2005-07-07T18:09:41Z 2408 408 2005-07-14T22:05:41Z 1 2020-02-15T06:59:39Z +4331 2005-07-07T18:22:30Z 419 535 2005-07-13T18:20:30Z 1 2020-02-15T06:59:39Z +4332 2005-07-07T18:25:26Z 1714 137 2005-07-16T15:05:26Z 1 2020-02-15T06:59:39Z +4333 2005-07-07T18:31:50Z 76 113 2005-07-08T21:26:50Z 1 2020-02-15T06:59:39Z +4334 2005-07-07T18:32:04Z 3021 210 2005-07-08T16:19:04Z 1 2020-02-15T06:59:39Z +4335 2005-07-07T18:33:57Z 1332 375 2005-07-11T13:23:57Z 1 2020-02-15T06:59:39Z +4336 2005-07-07T18:34:36Z 482 532 2005-07-10T17:58:36Z 2 2020-02-15T06:59:39Z +4337 2005-07-07T18:36:37Z 2313 464 2005-07-14T14:59:37Z 2 2020-02-15T06:59:39Z +4338 2005-07-07T18:39:56Z 3152 581 2005-07-12T21:03:56Z 1 2020-02-15T06:59:39Z +4339 2005-07-07T18:41:42Z 3215 130 2005-07-08T13:00:42Z 1 2020-02-15T06:59:39Z +4340 2005-07-07T18:41:46Z 3919 227 2005-07-16T21:27:46Z 1 2020-02-15T06:59:39Z +4341 2005-07-07T18:44:23Z 4523 124 2005-07-15T18:13:23Z 1 2020-02-15T06:59:39Z +4342 2005-07-07T18:47:03Z 1355 120 2005-07-09T21:59:03Z 2 2020-02-15T06:59:39Z +4343 2005-07-07T18:48:54Z 1926 293 2005-07-12T15:19:54Z 1 2020-02-15T06:59:39Z +4344 2005-07-07T18:50:47Z 1185 99 2005-07-12T16:38:47Z 2 2020-02-15T06:59:39Z +4345 2005-07-07T18:52:57Z 2235 225 2005-07-15T21:24:57Z 2 2020-02-15T06:59:39Z +4346 2005-07-07T18:58:45Z 1906 520 2005-07-10T16:37:45Z 1 2020-02-15T06:59:39Z +4347 2005-07-07T18:58:57Z 1964 344 2005-07-14T16:35:57Z 2 2020-02-15T06:59:39Z +4348 2005-07-07T19:02:05Z 1948 452 2005-07-09T20:51:05Z 2 2020-02-15T06:59:39Z +4349 2005-07-07T19:02:37Z 3430 182 2005-07-09T17:25:37Z 2 2020-02-15T06:59:39Z +4350 2005-07-07T19:02:41Z 2223 299 2005-07-09T15:27:41Z 1 2020-02-15T06:59:39Z +4351 2005-07-07T19:04:24Z 3567 382 2005-07-14T00:03:24Z 2 2020-02-15T06:59:39Z +4352 2005-07-07T19:15:58Z 2636 249 2005-07-16T20:22:58Z 2 2020-02-15T06:59:39Z +4353 2005-07-07T19:19:05Z 368 452 2005-07-13T13:40:05Z 1 2020-02-15T06:59:39Z +4354 2005-07-07T19:21:02Z 4423 208 2005-07-15T17:03:02Z 2 2020-02-15T06:59:39Z +4355 2005-07-07T19:21:19Z 4557 438 2005-07-09T00:55:19Z 2 2020-02-15T06:59:39Z +4356 2005-07-07T19:21:22Z 1907 318 2005-07-16T15:57:22Z 1 2020-02-15T06:59:39Z +4357 2005-07-07T19:24:39Z 3413 103 2005-07-12T00:11:39Z 1 2020-02-15T06:59:39Z +4358 2005-07-07T19:27:04Z 3136 446 2005-07-14T23:46:04Z 1 2020-02-15T06:59:39Z +4359 2005-07-07T19:30:20Z 3222 282 2005-07-09T13:34:20Z 1 2020-02-15T06:59:39Z +4360 2005-07-07T19:31:12Z 1811 92 2005-07-10T23:11:12Z 2 2020-02-15T06:59:39Z +4361 2005-07-07T19:33:23Z 116 425 2005-07-12T22:36:23Z 1 2020-02-15T06:59:39Z +4362 2005-07-07T19:35:30Z 3759 425 2005-07-14T14:59:30Z 1 2020-02-15T06:59:39Z +4363 2005-07-07T19:43:28Z 3202 168 2005-07-13T00:15:28Z 2 2020-02-15T06:59:39Z +4364 2005-07-07T19:46:51Z 10 145 2005-07-08T21:55:51Z 1 2020-02-15T06:59:39Z +4365 2005-07-07T19:47:46Z 3207 442 2005-07-08T23:21:46Z 2 2020-02-15T06:59:39Z +4366 2005-07-07T19:48:36Z 2961 524 2005-07-14T01:14:36Z 1 2020-02-15T06:59:39Z +4367 2005-07-07T19:52:01Z 4529 48 2005-07-13T19:41:01Z 2 2020-02-15T06:59:39Z +4368 2005-07-07T19:55:19Z 736 324 2005-07-09T00:11:19Z 1 2020-02-15T06:59:39Z +4369 2005-07-07T20:01:38Z 3552 517 2005-07-13T01:19:38Z 2 2020-02-15T06:59:39Z +4370 2005-07-07T20:05:36Z 1591 559 2005-07-16T23:58:36Z 1 2020-02-15T06:59:39Z +4371 2005-07-07T20:06:45Z 2533 90 2005-07-08T18:50:45Z 1 2020-02-15T06:59:39Z +4372 2005-07-07T20:09:01Z 2207 252 2005-07-09T18:24:01Z 1 2020-02-15T06:59:39Z +4373 2005-07-07T20:10:59Z 3593 470 2005-07-12T21:30:59Z 2 2020-02-15T06:59:39Z +4374 2005-07-07T20:13:58Z 4377 517 2005-07-11T18:11:58Z 2 2020-02-15T06:59:39Z +4375 2005-07-07T20:20:29Z 3035 560 2005-07-16T19:29:29Z 2 2020-02-15T06:59:39Z +4376 2005-07-07T20:24:33Z 1344 151 2005-07-11T18:32:33Z 1 2020-02-15T06:59:39Z +4377 2005-07-07T20:28:57Z 3294 205 2005-07-16T02:13:57Z 2 2020-02-15T06:59:39Z +4378 2005-07-07T20:29:08Z 1244 24 2005-07-12T19:17:08Z 2 2020-02-15T06:59:39Z +4379 2005-07-07T20:32:30Z 2773 316 2005-07-11T20:40:30Z 2 2020-02-15T06:59:39Z +4380 2005-07-07T20:35:00Z 3164 353 2005-07-14T17:06:00Z 1 2020-02-15T06:59:39Z +4381 2005-07-07T20:37:53Z 3727 486 2005-07-10T16:54:53Z 1 2020-02-15T06:59:39Z +4382 2005-07-07T20:41:03Z 657 26 2005-07-14T15:15:03Z 1 2020-02-15T06:59:39Z +4383 2005-07-07T20:45:51Z 2649 591 2005-07-17T00:52:51Z 2 2020-02-15T06:59:39Z +4384 2005-07-07T20:46:45Z 1178 59 2005-07-16T21:54:45Z 1 2020-02-15T06:59:39Z +4385 2005-07-07T20:48:38Z 849 564 2005-07-11T17:03:38Z 2 2020-02-15T06:59:39Z +4386 2005-07-07T20:55:19Z 499 314 2005-07-10T21:51:19Z 1 2020-02-15T06:59:39Z +4387 2005-07-07T20:56:47Z 591 335 2005-07-16T00:51:47Z 1 2020-02-15T06:59:39Z +4388 2005-07-07T20:58:03Z 3150 210 2005-07-16T20:05:03Z 2 2020-02-15T06:59:39Z +4389 2005-07-07T20:58:58Z 1672 166 2005-07-13T19:57:58Z 2 2020-02-15T06:59:39Z +4390 2005-07-07T20:59:06Z 6 44 2005-07-09T00:04:06Z 2 2020-02-15T06:59:39Z +4391 2005-07-07T21:09:38Z 2135 42 2005-07-09T17:35:38Z 1 2020-02-15T06:59:39Z +4392 2005-07-07T21:11:02Z 4236 491 2005-07-13T21:52:02Z 1 2020-02-15T06:59:39Z +4393 2005-07-07T21:12:36Z 4034 395 2005-07-09T22:41:36Z 2 2020-02-15T06:59:39Z +4394 2005-07-07T21:12:45Z 563 156 2005-07-16T18:24:45Z 2 2020-02-15T06:59:39Z +4395 2005-07-07T21:13:22Z 360 544 2005-07-08T22:59:22Z 2 2020-02-15T06:59:39Z +4396 2005-07-07T21:14:19Z 750 275 2005-07-10T19:22:19Z 1 2020-02-15T06:59:39Z +4397 2005-07-07T21:14:54Z 3085 494 2005-07-13T19:24:54Z 2 2020-02-15T06:59:39Z +4398 2005-07-07T21:18:44Z 3628 426 2005-07-10T22:45:44Z 1 2020-02-15T06:59:39Z +4399 2005-07-07T21:20:28Z 4515 402 2005-07-12T20:57:28Z 2 2020-02-15T06:59:39Z +4400 2005-07-07T21:22:26Z 49 370 2005-07-16T00:59:26Z 2 2020-02-15T06:59:39Z +4401 2005-07-07T21:26:27Z 2725 405 2005-07-12T17:18:27Z 2 2020-02-15T06:59:39Z +4402 2005-07-07T21:28:46Z 1198 26 2005-07-08T17:04:46Z 1 2020-02-15T06:59:39Z +4403 2005-07-07T21:29:40Z 3973 447 2005-07-09T17:58:40Z 1 2020-02-15T06:59:39Z +4404 2005-07-07T21:31:53Z 944 25 2005-07-13T19:00:53Z 1 2020-02-15T06:59:39Z +4405 2005-07-07T21:33:16Z 2102 145 2005-07-15T00:33:16Z 2 2020-02-15T06:59:39Z +4406 2005-07-07T21:35:16Z 438 448 2005-07-15T16:13:16Z 2 2020-02-15T06:59:39Z +4407 2005-07-07T21:39:45Z 267 20 2005-07-11T23:40:45Z 1 2020-02-15T06:59:39Z +4408 2005-07-07T21:41:06Z 2482 258 2005-07-11T00:32:06Z 1 2020-02-15T06:59:39Z +4409 2005-07-07T21:47:29Z 3153 8 2005-07-11T20:14:29Z 2 2020-02-15T06:59:39Z +4410 2005-07-07T21:48:16Z 2754 584 2005-07-09T03:15:16Z 1 2020-02-15T06:59:39Z +4411 2005-07-07T21:54:58Z 320 224 2005-07-14T16:14:58Z 2 2020-02-15T06:59:39Z +4412 2005-07-07T21:56:53Z 1181 282 2005-07-11T19:28:53Z 1 2020-02-15T06:59:39Z +4413 2005-07-07T22:00:04Z 1062 565 2005-07-10T18:20:04Z 2 2020-02-15T06:59:39Z +4414 2005-07-07T22:00:21Z 991 434 2005-07-12T02:51:21Z 1 2020-02-15T06:59:39Z +4415 2005-07-07T22:01:43Z 1403 329 2005-07-13T03:09:43Z 2 2020-02-15T06:59:39Z +4416 2005-07-07T22:04:36Z 1247 290 2005-07-09T02:44:36Z 2 2020-02-15T06:59:39Z +4417 2005-07-07T22:05:05Z 743 452 2005-07-09T16:16:05Z 2 2020-02-15T06:59:39Z +4418 2005-07-07T22:05:30Z 4368 417 2005-07-11T18:42:30Z 1 2020-02-15T06:59:39Z +4419 2005-07-07T22:06:24Z 783 39 2005-07-15T23:59:24Z 1 2020-02-15T06:59:39Z +4420 2005-07-07T22:07:31Z 4427 346 2005-07-12T19:14:31Z 2 2020-02-15T06:59:39Z +4421 2005-07-07T22:07:55Z 4103 417 2005-07-16T20:21:55Z 1 2020-02-15T06:59:39Z +4422 2005-07-07T22:09:45Z 1741 345 2005-07-10T01:43:45Z 1 2020-02-15T06:59:39Z +4423 2005-07-07T22:11:28Z 2721 526 2005-07-14T18:49:28Z 2 2020-02-15T06:59:39Z +4424 2005-07-07T22:14:43Z 662 384 2005-07-11T01:17:43Z 1 2020-02-15T06:59:39Z +4425 2005-07-07T22:22:44Z 877 345 2005-07-08T22:23:44Z 2 2020-02-15T06:59:39Z +4426 2005-07-07T22:28:32Z 364 242 2005-07-16T02:04:32Z 1 2020-02-15T06:59:39Z +4427 2005-07-07T22:28:51Z 1021 69 2005-07-11T21:37:51Z 2 2020-02-15T06:59:39Z +4428 2005-07-07T22:29:40Z 2575 181 2005-07-11T02:46:40Z 2 2020-02-15T06:59:39Z +4429 2005-07-07T22:32:47Z 2949 187 2005-07-15T03:10:47Z 2 2020-02-15T06:59:39Z +4430 2005-07-07T22:35:24Z 3436 278 2005-07-14T23:49:24Z 1 2020-02-15T06:59:39Z +4431 2005-07-07T22:39:02Z 936 26 2005-07-16T19:24:02Z 1 2020-02-15T06:59:39Z +4432 2005-07-07T22:40:02Z 2779 295 2005-07-15T01:46:02Z 1 2020-02-15T06:59:39Z +4433 2005-07-07T22:45:41Z 88 449 2005-07-16T23:30:41Z 2 2020-02-15T06:59:39Z +4434 2005-07-07T22:48:34Z 1801 32 2005-07-09T18:55:34Z 1 2020-02-15T06:59:39Z +4435 2005-07-07T22:51:04Z 3815 157 2005-07-14T23:15:04Z 2 2020-02-15T06:59:39Z +4436 2005-07-07T22:52:04Z 4326 563 2005-07-10T04:51:04Z 1 2020-02-15T06:59:39Z +4437 2005-07-07T22:55:41Z 3578 414 2005-07-13T19:40:41Z 1 2020-02-15T06:59:39Z +4438 2005-07-07T22:56:17Z 4371 104 2005-07-16T17:28:17Z 1 2020-02-15T06:59:39Z +4439 2005-07-07T22:57:30Z 2393 521 2005-07-10T18:28:30Z 1 2020-02-15T06:59:39Z +4440 2005-07-07T23:00:58Z 1236 507 2005-07-08T21:31:58Z 2 2020-02-15T06:59:39Z +4441 2005-07-07T23:04:23Z 3680 211 2005-07-13T19:07:23Z 1 2020-02-15T06:59:39Z +4442 2005-07-07T23:05:30Z 461 123 2005-07-13T22:20:30Z 2 2020-02-15T06:59:39Z +4443 2005-07-07T23:05:53Z 72 389 2005-07-16T01:46:53Z 1 2020-02-15T06:59:39Z +4444 2005-07-07T23:07:44Z 764 529 2005-07-14T02:51:44Z 2 2020-02-15T06:59:39Z +4445 2005-07-07T23:08:22Z 3328 327 2005-07-16T03:49:22Z 1 2020-02-15T06:59:39Z +4446 2005-07-07T23:12:16Z 2629 438 2005-07-13T19:42:16Z 1 2020-02-15T06:59:39Z +4447 2005-07-07T23:15:28Z 404 549 2005-07-14T22:53:28Z 2 2020-02-15T06:59:39Z +4448 2005-07-07T23:17:12Z 2768 536 2005-07-13T18:26:12Z 1 2020-02-15T06:59:39Z +4449 2005-07-07T23:18:58Z 2813 354 2005-07-15T20:40:58Z 2 2020-02-15T06:59:39Z +4450 2005-07-07T23:20:05Z 1252 345 2005-07-13T19:50:05Z 2 2020-02-15T06:59:39Z +4451 2005-07-07T23:29:54Z 179 85 2005-07-10T23:29:54Z 2 2020-02-15T06:59:39Z +4452 2005-07-07T23:31:54Z 2414 460 2005-07-14T04:05:54Z 1 2020-02-15T06:59:39Z +4453 2005-07-07T23:32:39Z 89 560 2005-07-12T01:38:39Z 2 2020-02-15T06:59:39Z +4454 2005-07-07T23:37:00Z 1395 9 2005-07-11T02:30:00Z 1 2020-02-15T06:59:39Z +4455 2005-07-07T23:43:46Z 1396 507 2005-07-08T21:34:46Z 2 2020-02-15T06:59:39Z +4456 2005-07-07T23:45:21Z 3395 421 2005-07-13T23:03:21Z 2 2020-02-15T06:59:39Z +4457 2005-07-07T23:45:38Z 407 567 2005-07-09T20:02:38Z 1 2020-02-15T06:59:39Z +4458 2005-07-07T23:47:47Z 1307 229 2005-07-09T19:17:47Z 2 2020-02-15T06:59:39Z +4459 2005-07-07T23:48:52Z 3987 227 2005-07-13T19:37:52Z 2 2020-02-15T06:59:39Z +4460 2005-07-07T23:50:14Z 4121 592 2005-07-09T21:55:14Z 1 2020-02-15T06:59:39Z +4461 2005-07-07T23:59:43Z 3656 286 2005-07-16T19:44:43Z 2 2020-02-15T06:59:39Z +4462 2005-07-08T00:02:49Z 4120 257 2005-07-15T20:48:49Z 2 2020-02-15T06:59:39Z +4463 2005-07-08T00:04:59Z 4356 422 2005-07-16T01:19:59Z 1 2020-02-15T06:59:39Z +4464 2005-07-08T00:07:18Z 4484 583 2005-07-08T22:14:18Z 2 2020-02-15T06:59:39Z +4465 2005-07-08T00:07:45Z 2877 329 2005-07-13T18:08:45Z 2 2020-02-15T06:59:39Z +4466 2005-07-08T00:12:53Z 3320 304 2005-07-17T03:49:53Z 2 2020-02-15T06:59:39Z +4467 2005-07-08T00:13:52Z 4466 339 2005-07-09T00:52:52Z 1 2020-02-15T06:59:39Z +4468 2005-07-08T00:17:59Z 3302 170 2005-07-12T05:51:59Z 2 2020-02-15T06:59:39Z +4469 2005-07-08T00:18:32Z 2173 192 2005-07-12T21:17:32Z 2 2020-02-15T06:59:39Z +4470 2005-07-08T00:20:57Z 3605 145 2005-07-10T02:31:57Z 1 2020-02-15T06:59:39Z +4471 2005-07-08T00:21:29Z 263 30 2005-07-11T18:48:29Z 2 2020-02-15T06:59:39Z +4472 2005-07-08T00:22:06Z 2089 343 2005-07-16T20:16:06Z 1 2020-02-15T06:59:39Z +4473 2005-07-08T00:22:10Z 1387 481 2005-07-09T21:11:10Z 1 2020-02-15T06:59:39Z +4474 2005-07-08T00:26:56Z 4474 137 2005-07-12T23:07:56Z 1 2020-02-15T06:59:39Z +4475 2005-07-08T00:27:30Z 3466 340 2005-07-09T05:39:30Z 1 2020-02-15T06:59:39Z +4476 2005-07-08T00:34:25Z 395 279 2005-07-08T22:55:25Z 1 2020-02-15T06:59:39Z +4477 2005-07-08T00:38:24Z 1602 552 2005-07-13T05:14:24Z 1 2020-02-15T06:59:39Z +4478 2005-07-08T00:39:08Z 1764 357 2005-07-11T21:57:08Z 2 2020-02-15T06:59:39Z +4479 2005-07-08T00:52:35Z 3516 211 2005-07-09T20:19:35Z 2 2020-02-15T06:59:39Z +4480 2005-07-08T00:56:30Z 4457 296 2005-07-10T20:52:30Z 2 2020-02-15T06:59:39Z +4481 2005-07-08T00:58:15Z 1669 474 2005-07-11T23:22:15Z 2 2020-02-15T06:59:39Z +4482 2005-07-08T01:01:18Z 3500 511 2005-07-11T01:18:18Z 1 2020-02-15T06:59:39Z +4483 2005-07-08T01:03:12Z 1222 425 2005-07-17T00:20:12Z 1 2020-02-15T06:59:39Z +4484 2005-07-08T01:05:57Z 2867 306 2005-07-16T00:41:57Z 2 2020-02-15T06:59:39Z +4485 2005-07-08T01:07:54Z 2614 130 2005-07-16T03:19:54Z 2 2020-02-15T06:59:39Z +4486 2005-07-08T01:09:09Z 837 197 2005-07-16T23:40:09Z 1 2020-02-15T06:59:39Z +4487 2005-07-08T01:20:22Z 2220 360 2005-07-16T21:23:22Z 2 2020-02-15T06:59:39Z +4488 2005-07-08T01:22:23Z 2108 89 2005-07-13T21:17:23Z 1 2020-02-15T06:59:39Z +4489 2005-07-08T01:23:58Z 4306 259 2005-07-09T01:35:58Z 2 2020-02-15T06:59:39Z +4490 2005-07-08T01:26:32Z 2690 161 2005-07-09T01:13:32Z 1 2020-02-15T06:59:39Z +4491 2005-07-08T01:30:46Z 1168 413 2005-07-11T03:12:46Z 1 2020-02-15T06:59:39Z +4492 2005-07-08T01:32:04Z 1152 247 2005-07-10T22:11:04Z 1 2020-02-15T06:59:39Z +4493 2005-07-08T01:40:24Z 1369 167 2005-07-09T02:17:24Z 2 2020-02-15T06:59:39Z +4494 2005-07-08T01:42:45Z 1655 349 2005-07-16T22:29:45Z 2 2020-02-15T06:59:39Z +4495 2005-07-08T01:43:46Z 3515 404 2005-07-10T07:38:46Z 1 2020-02-15T06:59:39Z +4496 2005-07-08T01:44:19Z 150 578 2005-07-08T20:34:19Z 2 2020-02-15T06:59:39Z +4497 2005-07-08T01:51:32Z 1995 142 2005-07-15T22:56:32Z 1 2020-02-15T06:59:39Z +4498 2005-07-08T02:07:50Z 4299 43 2005-07-12T23:54:50Z 2 2020-02-15T06:59:39Z +4499 2005-07-08T02:08:48Z 851 199 2005-07-10T07:06:48Z 2 2020-02-15T06:59:39Z +4500 2005-07-08T02:10:01Z 398 462 2005-07-15T05:49:01Z 2 2020-02-15T06:59:39Z +4501 2005-07-08T02:12:00Z 1412 262 2005-07-10T02:16:00Z 2 2020-02-15T06:59:39Z +4502 2005-07-08T02:12:04Z 225 470 2005-07-15T02:19:04Z 2 2020-02-15T06:59:39Z +4503 2005-07-08T02:17:12Z 1503 8 2005-07-13T08:12:12Z 1 2020-02-15T06:59:39Z +4504 2005-07-08T02:19:27Z 361 422 2005-07-12T21:15:27Z 1 2020-02-15T06:59:39Z +4505 2005-07-08T02:20:04Z 1864 481 2005-07-14T20:28:04Z 2 2020-02-15T06:59:39Z +4506 2005-07-08T02:22:18Z 1484 133 2005-07-13T04:54:18Z 2 2020-02-15T06:59:39Z +4507 2005-07-08T02:22:45Z 819 505 2005-07-14T20:53:45Z 1 2020-02-15T06:59:39Z +4508 2005-07-08T02:28:41Z 3996 97 2005-07-16T23:59:41Z 1 2020-02-15T06:59:39Z +4509 2005-07-08T02:32:38Z 1760 230 2005-07-14T01:05:38Z 2 2020-02-15T06:59:39Z +4510 2005-07-08T02:34:51Z 1085 27 2005-07-17T06:03:51Z 2 2020-02-15T06:59:39Z +4511 2005-07-08T02:36:21Z 4438 75 2005-07-15T06:01:21Z 1 2020-02-15T06:59:39Z +4512 2005-07-08T02:38:56Z 1569 424 2005-07-10T20:46:56Z 1 2020-02-15T06:59:39Z +4513 2005-07-08T02:39:59Z 3704 182 2005-07-14T07:48:59Z 2 2020-02-15T06:59:39Z +4514 2005-07-08T02:41:25Z 1938 576 2005-07-15T06:17:25Z 1 2020-02-15T06:59:39Z +4515 2005-07-08T02:42:03Z 1998 229 2005-07-10T07:22:03Z 2 2020-02-15T06:59:39Z +4516 2005-07-08T02:43:41Z 2314 497 2005-07-14T02:20:41Z 1 2020-02-15T06:59:39Z +4517 2005-07-08T02:45:19Z 453 16 2005-07-12T03:04:19Z 2 2020-02-15T06:59:39Z +4518 2005-07-08T02:48:36Z 697 592 2005-07-13T04:53:36Z 2 2020-02-15T06:59:39Z +4519 2005-07-08T02:51:23Z 4425 459 2005-07-12T06:52:23Z 2 2020-02-15T06:59:39Z +4520 2005-07-08T02:53:46Z 3505 104 2005-07-08T22:27:46Z 2 2020-02-15T06:59:39Z +4521 2005-07-08T02:57:56Z 2652 327 2005-07-11T22:49:56Z 2 2020-02-15T06:59:39Z +4522 2005-07-08T03:03:12Z 4114 307 2005-07-10T04:49:12Z 1 2020-02-15T06:59:39Z +4523 2005-07-08T03:06:59Z 2785 347 2005-07-17T04:44:59Z 1 2020-02-15T06:59:39Z +4524 2005-07-08T03:10:48Z 2218 185 2005-07-09T07:49:48Z 2 2020-02-15T06:59:39Z +4525 2005-07-08T03:15:00Z 3631 458 2005-07-11T04:53:00Z 1 2020-02-15T06:59:39Z +4526 2005-07-08T03:17:05Z 1443 1 2005-07-14T01:19:05Z 2 2020-02-15T06:59:39Z +4527 2005-07-08T03:20:10Z 2263 468 2005-07-15T02:21:10Z 1 2020-02-15T06:59:39Z +4528 2005-07-08T03:24:54Z 3209 439 2005-07-09T03:50:54Z 2 2020-02-15T06:59:39Z +4529 2005-07-08T03:26:20Z 1361 104 2005-07-16T05:04:20Z 1 2020-02-15T06:59:39Z +4530 2005-07-08T03:27:05Z 3775 79 2005-07-11T07:44:05Z 1 2020-02-15T06:59:39Z +4531 2005-07-08T03:27:59Z 3108 142 2005-07-10T22:48:59Z 1 2020-02-15T06:59:39Z +4532 2005-07-08T03:30:39Z 4012 481 2005-07-11T21:49:39Z 1 2020-02-15T06:59:39Z +4533 2005-07-08T03:32:01Z 1105 474 2005-07-10T21:57:01Z 1 2020-02-15T06:59:39Z +4534 2005-07-08T03:36:55Z 2518 132 2005-07-16T00:49:55Z 2 2020-02-15T06:59:39Z +4535 2005-07-08T03:40:46Z 561 29 2005-07-13T06:53:46Z 2 2020-02-15T06:59:39Z +4536 2005-07-08T03:43:22Z 220 26 2005-07-15T08:44:22Z 1 2020-02-15T06:59:39Z +4537 2005-07-08T03:48:40Z 1305 448 2005-07-13T22:54:40Z 2 2020-02-15T06:59:39Z +4538 2005-07-08T03:56:29Z 3638 451 2005-07-15T08:24:29Z 1 2020-02-15T06:59:39Z +4539 2005-07-08T04:01:02Z 2450 264 2005-07-14T22:32:02Z 1 2020-02-15T06:59:39Z +4540 2005-07-08T04:03:28Z 4160 309 2005-07-13T03:31:28Z 2 2020-02-15T06:59:39Z +4541 2005-07-08T04:04:19Z 1976 248 2005-07-13T07:27:19Z 2 2020-02-15T06:59:39Z +4542 2005-07-08T04:06:30Z 4169 293 2005-07-16T06:54:30Z 2 2020-02-15T06:59:39Z +4543 2005-07-08T04:06:55Z 913 41 2005-07-12T23:17:55Z 2 2020-02-15T06:59:39Z +4544 2005-07-08T04:11:04Z 4471 351 2005-07-09T22:48:04Z 1 2020-02-15T06:59:39Z +4545 2005-07-08T04:17:47Z 3658 271 2005-07-13T07:19:47Z 1 2020-02-15T06:59:39Z +4546 2005-07-08T04:18:36Z 4507 393 2005-07-17T08:23:36Z 1 2020-02-15T06:59:39Z +4547 2005-07-08T04:20:19Z 3386 255 2005-07-09T00:28:19Z 2 2020-02-15T06:59:39Z +4548 2005-07-08T04:21:54Z 765 164 2005-07-14T23:16:54Z 2 2020-02-15T06:59:39Z +4549 2005-07-08T04:25:03Z 2797 98 2005-07-10T09:01:03Z 2 2020-02-15T06:59:39Z +4550 2005-07-08T04:34:00Z 615 409 2005-07-14T23:45:00Z 2 2020-02-15T06:59:39Z +4551 2005-07-08T04:36:21Z 1160 494 2005-07-17T10:23:21Z 2 2020-02-15T06:59:39Z +4552 2005-07-08T04:36:35Z 2549 313 2005-07-14T05:48:35Z 2 2020-02-15T06:59:39Z +4553 2005-07-08T04:43:41Z 2114 529 2005-07-09T23:55:41Z 1 2020-02-15T06:59:39Z +4554 2005-07-08T04:48:03Z 3878 376 2005-07-16T04:34:03Z 1 2020-02-15T06:59:39Z +4555 2005-07-08T04:48:36Z 1757 68 2005-07-17T07:57:36Z 1 2020-02-15T06:59:39Z +4556 2005-07-08T04:48:41Z 4099 348 2005-07-16T08:51:41Z 2 2020-02-15T06:59:39Z +4557 2005-07-08T04:49:15Z 1191 132 2005-07-14T00:00:15Z 2 2020-02-15T06:59:39Z +4558 2005-07-08T04:55:26Z 828 448 2005-07-09T10:53:26Z 2 2020-02-15T06:59:39Z +4559 2005-07-08T04:56:49Z 1911 424 2005-07-12T08:56:49Z 2 2020-02-15T06:59:39Z +4560 2005-07-08T04:58:48Z 303 36 2005-07-10T04:27:48Z 1 2020-02-15T06:59:39Z +4561 2005-07-08T05:02:43Z 1643 500 2005-07-11T04:56:43Z 1 2020-02-15T06:59:39Z +4562 2005-07-08T05:08:32Z 963 454 2005-07-12T08:16:32Z 2 2020-02-15T06:59:39Z +4563 2005-07-08T05:08:55Z 287 522 2005-07-16T05:44:55Z 2 2020-02-15T06:59:39Z +4564 2005-07-08T05:09:38Z 2494 519 2005-07-11T05:37:38Z 2 2020-02-15T06:59:39Z +4565 2005-07-08T05:12:28Z 3755 563 2005-07-17T03:38:28Z 2 2020-02-15T06:59:39Z +4566 2005-07-08T05:18:50Z 4302 133 2005-07-15T01:53:50Z 1 2020-02-15T06:59:39Z +4567 2005-07-08T05:20:04Z 4073 202 2005-07-10T01:35:04Z 1 2020-02-15T06:59:39Z +4568 2005-07-08T05:23:59Z 2626 122 2005-07-09T06:07:59Z 1 2020-02-15T06:59:39Z +4569 2005-07-08T05:30:51Z 2925 366 2005-07-14T04:14:51Z 2 2020-02-15T06:59:39Z +4570 2005-07-08T05:33:59Z 2612 503 2005-07-14T09:27:59Z 1 2020-02-15T06:59:39Z +4571 2005-07-08T05:34:41Z 2416 86 2005-07-17T02:15:41Z 1 2020-02-15T06:59:39Z +4572 2005-07-08T05:36:59Z 1324 323 2005-07-12T04:46:59Z 2 2020-02-15T06:59:39Z +4573 2005-07-08T05:38:46Z 2478 400 2005-07-15T07:07:46Z 1 2020-02-15T06:59:39Z +4574 2005-07-08T05:39:42Z 536 257 2005-07-08T23:44:42Z 2 2020-02-15T06:59:39Z +4575 2005-07-08T05:49:14Z 231 41 2005-07-11T04:08:14Z 2 2020-02-15T06:59:39Z +4576 2005-07-08T05:51:19Z 1920 567 2005-07-10T11:36:19Z 1 2020-02-15T06:59:39Z +4577 2005-07-08T05:59:00Z 1688 442 2005-07-16T06:23:00Z 2 2020-02-15T06:59:39Z +4578 2005-07-08T06:00:17Z 1533 497 2005-07-10T06:58:17Z 2 2020-02-15T06:59:39Z +4579 2005-07-08T06:01:56Z 4290 585 2005-07-13T11:24:56Z 1 2020-02-15T06:59:39Z +4580 2005-07-08T06:04:23Z 3512 199 2005-07-15T05:42:23Z 2 2020-02-15T06:59:39Z +4581 2005-07-08T06:05:06Z 887 591 2005-07-16T00:54:06Z 1 2020-02-15T06:59:39Z +4582 2005-07-08T06:09:09Z 688 274 2005-07-14T02:23:09Z 1 2020-02-15T06:59:39Z +4583 2005-07-08T06:09:44Z 4151 365 2005-07-12T03:44:44Z 1 2020-02-15T06:59:39Z +4584 2005-07-08T06:11:02Z 2322 368 2005-07-11T05:14:02Z 1 2020-02-15T06:59:39Z +4585 2005-07-08T06:11:58Z 1622 143 2005-07-17T01:58:58Z 1 2020-02-15T06:59:39Z +4586 2005-07-08T06:12:33Z 1374 461 2005-07-13T11:06:33Z 2 2020-02-15T06:59:39Z +4587 2005-07-08T06:16:26Z 3502 63 2005-07-13T00:59:26Z 1 2020-02-15T06:59:39Z +4588 2005-07-08T06:18:01Z 3629 198 2005-07-10T08:59:01Z 1 2020-02-15T06:59:39Z +4589 2005-07-08T06:26:04Z 1192 99 2005-07-09T10:31:04Z 2 2020-02-15T06:59:39Z +4590 2005-07-08T06:27:48Z 4233 580 2005-07-14T07:46:48Z 1 2020-02-15T06:59:39Z +4591 2005-07-08T06:29:43Z 2276 182 2005-07-17T07:20:43Z 1 2020-02-15T06:59:39Z +4592 2005-07-08T06:31:28Z 2141 235 2005-07-10T06:08:28Z 2 2020-02-15T06:59:39Z +4593 2005-07-08T06:38:12Z 2897 528 2005-07-16T10:48:12Z 2 2020-02-15T06:59:39Z +4594 2005-07-08T06:40:06Z 26 506 2005-07-16T05:51:06Z 2 2020-02-15T06:59:39Z +4595 2005-07-08T06:40:25Z 760 336 2005-07-14T08:54:25Z 1 2020-02-15T06:59:39Z +4596 2005-07-08T06:41:25Z 2280 306 2005-07-14T01:36:25Z 1 2020-02-15T06:59:39Z +4597 2005-07-08T06:43:42Z 3767 545 2005-07-13T01:32:42Z 1 2020-02-15T06:59:39Z +4598 2005-07-08T06:46:26Z 258 82 2005-07-16T01:21:26Z 1 2020-02-15T06:59:39Z +4599 2005-07-08T06:48:26Z 2098 356 2005-07-11T07:06:26Z 1 2020-02-15T06:59:39Z +4600 2005-07-08T06:48:37Z 1526 457 2005-07-15T10:11:37Z 1 2020-02-15T06:59:39Z +4601 2005-07-08T06:49:10Z 3184 572 2005-07-09T07:43:10Z 1 2020-02-15T06:59:39Z +4602 2005-07-08T06:52:40Z 3616 129 2005-07-10T06:30:40Z 1 2020-02-15T06:59:39Z +4603 2005-07-08T06:57:07Z 755 334 2005-07-17T04:32:07Z 1 2020-02-15T06:59:39Z +4604 2005-07-08T06:58:43Z 4230 402 2005-07-14T06:41:43Z 1 2020-02-15T06:59:39Z +4605 2005-07-08T07:00:14Z 1139 523 2005-07-16T08:38:14Z 1 2020-02-15T06:59:39Z +4606 2005-07-08T07:05:50Z 1946 502 2005-07-16T09:11:50Z 2 2020-02-15T06:59:39Z +4607 2005-07-08T07:15:14Z 1193 281 2005-07-11T01:32:14Z 1 2020-02-15T06:59:39Z +4608 2005-07-08T07:19:11Z 758 11 2005-07-11T01:37:11Z 1 2020-02-15T06:59:39Z +4609 2005-07-08T07:22:29Z 3711 573 2005-07-10T08:06:29Z 1 2020-02-15T06:59:39Z +4610 2005-07-08T07:28:05Z 1279 265 2005-07-14T02:10:05Z 1 2020-02-15T06:59:39Z +4611 2005-07-08T07:33:56Z 3486 1 2005-07-12T13:25:56Z 2 2020-02-15T06:59:39Z +4612 2005-07-08T07:40:44Z 82 371 2005-07-12T03:48:44Z 1 2020-02-15T06:59:39Z +4613 2005-07-08T07:44:49Z 476 581 2005-07-09T04:47:49Z 1 2020-02-15T06:59:39Z +4614 2005-07-08T07:45:17Z 2579 71 2005-07-12T02:10:17Z 2 2020-02-15T06:59:39Z +4615 2005-07-08T07:46:53Z 1200 404 2005-07-16T12:43:53Z 2 2020-02-15T06:59:39Z +4616 2005-07-08T07:48:12Z 2580 280 2005-07-10T08:13:12Z 2 2020-02-15T06:59:39Z +4617 2005-07-08T07:55:08Z 3784 475 2005-07-17T02:49:08Z 2 2020-02-15T06:59:39Z +4618 2005-07-08T08:00:20Z 3691 179 2005-07-14T05:59:20Z 1 2020-02-15T06:59:39Z +4619 2005-07-08T08:01:09Z 2127 579 2005-07-16T05:52:09Z 2 2020-02-15T06:59:39Z +4620 2005-07-08T08:01:44Z 3467 210 2005-07-16T07:43:44Z 2 2020-02-15T06:59:39Z +4621 2005-07-08T08:02:18Z 1594 297 2005-07-12T08:53:18Z 2 2020-02-15T06:59:39Z +4622 2005-07-08T08:02:42Z 2710 289 2005-07-10T07:46:42Z 2 2020-02-15T06:59:39Z +4623 2005-07-08T08:03:22Z 4171 593 2005-07-12T09:11:22Z 2 2020-02-15T06:59:39Z +4624 2005-07-08T08:12:17Z 1548 341 2005-07-15T12:24:17Z 2 2020-02-15T06:59:39Z +4625 2005-07-08T08:14:26Z 318 473 2005-07-09T03:45:26Z 1 2020-02-15T06:59:39Z +4626 2005-07-08T08:18:21Z 37 268 2005-07-10T11:36:21Z 1 2020-02-15T06:59:39Z +4627 2005-07-08T08:24:39Z 2383 78 2005-07-13T11:04:39Z 2 2020-02-15T06:59:39Z +4628 2005-07-08T08:25:52Z 1888 540 2005-07-10T11:22:52Z 1 2020-02-15T06:59:39Z +4629 2005-07-08T08:31:26Z 228 563 2005-07-17T12:07:26Z 1 2020-02-15T06:59:39Z +4630 2005-07-08T08:33:38Z 3446 319 2005-07-09T13:09:38Z 2 2020-02-15T06:59:39Z +4631 2005-07-08T08:38:22Z 470 59 2005-07-11T03:33:22Z 2 2020-02-15T06:59:39Z +4632 2005-07-08T08:38:57Z 4330 393 2005-07-15T09:33:57Z 1 2020-02-15T06:59:39Z +4633 2005-07-08T08:39:39Z 3178 348 2005-07-15T10:23:39Z 1 2020-02-15T06:59:39Z +4634 2005-07-08T08:40:02Z 811 275 2005-07-12T04:45:02Z 2 2020-02-15T06:59:39Z +4635 2005-07-08T08:42:40Z 2434 65 2005-07-14T10:31:40Z 1 2020-02-15T06:59:39Z +4636 2005-07-08T08:44:32Z 1858 228 2005-07-10T08:59:32Z 2 2020-02-15T06:59:39Z +4637 2005-07-08T08:49:54Z 1917 263 2005-07-11T13:12:54Z 2 2020-02-15T06:59:39Z +4638 2005-07-08T08:57:20Z 2240 305 2005-07-10T05:08:20Z 2 2020-02-15T06:59:39Z +4639 2005-07-08T08:57:21Z 2459 75 2005-07-14T11:22:21Z 2 2020-02-15T06:59:39Z +4640 2005-07-08T08:59:34Z 1147 506 2005-07-15T03:31:34Z 1 2020-02-15T06:59:39Z +4641 2005-07-08T09:09:46Z 2436 26 2005-07-17T03:54:46Z 2 2020-02-15T06:59:39Z +4642 2005-07-08T09:13:28Z 1962 30 2005-07-10T06:17:28Z 2 2020-02-15T06:59:39Z +4643 2005-07-08T09:13:56Z 239 436 2005-07-10T12:09:56Z 2 2020-02-15T06:59:39Z +4644 2005-07-08T09:14:29Z 3239 38 2005-07-10T07:20:29Z 2 2020-02-15T06:59:39Z +4645 2005-07-08T09:20:09Z 687 400 2005-07-09T06:07:09Z 2 2020-02-15T06:59:39Z +4646 2005-07-08T09:23:26Z 618 362 2005-07-16T04:03:26Z 1 2020-02-15T06:59:39Z +4647 2005-07-08T09:27:36Z 674 312 2005-07-16T14:56:36Z 2 2020-02-15T06:59:39Z +4648 2005-07-08T09:31:27Z 3490 444 2005-07-13T03:55:27Z 2 2020-02-15T06:59:39Z +4649 2005-07-08T09:32:05Z 1116 221 2005-07-15T08:37:05Z 2 2020-02-15T06:59:39Z +4650 2005-07-08T09:32:08Z 2850 108 2005-07-15T15:20:08Z 1 2020-02-15T06:59:39Z +4651 2005-07-08T09:39:39Z 4064 557 2005-07-09T12:14:39Z 2 2020-02-15T06:59:39Z +4652 2005-07-08T09:47:51Z 4198 127 2005-07-16T04:09:51Z 2 2020-02-15T06:59:39Z +4653 2005-07-08T09:48:01Z 2511 404 2005-07-17T05:18:01Z 1 2020-02-15T06:59:39Z +4654 2005-07-08T09:48:03Z 4210 434 2005-07-17T13:17:03Z 1 2020-02-15T06:59:39Z +4655 2005-07-08T09:49:22Z 4078 213 2005-07-15T13:08:22Z 1 2020-02-15T06:59:39Z +4656 2005-07-08T09:50:10Z 839 141 2005-07-13T15:00:10Z 1 2020-02-15T06:59:39Z +4657 2005-07-08T09:51:02Z 1002 54 2005-07-09T09:29:02Z 2 2020-02-15T06:59:39Z +4658 2005-07-08T09:51:11Z 3131 166 2005-07-10T12:30:11Z 2 2020-02-15T06:59:39Z +4659 2005-07-08T09:53:28Z 4389 425 2005-07-14T14:56:28Z 2 2020-02-15T06:59:39Z +4660 2005-07-08T09:54:47Z 1208 139 2005-07-11T15:19:47Z 2 2020-02-15T06:59:39Z +4661 2005-07-08T09:55:06Z 2641 518 2005-07-11T08:26:06Z 1 2020-02-15T06:59:39Z +4662 2005-07-08T09:58:54Z 1370 553 2005-07-10T12:51:54Z 1 2020-02-15T06:59:39Z +4663 2005-07-08T09:59:18Z 2959 139 2005-07-10T11:25:18Z 1 2020-02-15T06:59:39Z +4664 2005-07-08T10:01:28Z 1318 546 2005-07-12T10:37:28Z 2 2020-02-15T06:59:39Z +4665 2005-07-08T10:04:24Z 575 106 2005-07-14T15:13:24Z 1 2020-02-15T06:59:39Z +4666 2005-07-08T10:05:02Z 4576 120 2005-07-16T07:28:02Z 1 2020-02-15T06:59:39Z +4667 2005-07-08T10:06:26Z 3348 485 2005-07-14T04:48:26Z 1 2020-02-15T06:59:39Z +4668 2005-07-08T10:11:45Z 3971 481 2005-07-17T13:01:45Z 2 2020-02-15T06:59:39Z +4669 2005-07-08T10:13:08Z 3494 581 2005-07-16T07:52:08Z 1 2020-02-15T06:59:39Z +4670 2005-07-08T10:14:18Z 3317 153 2005-07-16T15:10:18Z 2 2020-02-15T06:59:39Z +4671 2005-07-08T10:15:32Z 2139 55 2005-07-14T08:19:32Z 2 2020-02-15T06:59:39Z +4672 2005-07-08T10:15:38Z 1922 18 2005-07-16T05:06:38Z 1 2020-02-15T06:59:39Z +4673 2005-07-08T10:16:00Z 2792 91 2005-07-17T10:03:00Z 2 2020-02-15T06:59:39Z +4674 2005-07-08T10:19:28Z 1617 329 2005-07-12T12:54:28Z 2 2020-02-15T06:59:39Z +4675 2005-07-08T10:24:22Z 1309 380 2005-07-14T11:09:22Z 1 2020-02-15T06:59:39Z +4676 2005-07-08T10:26:02Z 2590 302 2005-07-10T13:38:02Z 2 2020-02-15T06:59:39Z +4677 2005-07-08T10:30:36Z 1226 258 2005-07-14T12:40:36Z 1 2020-02-15T06:59:39Z +4678 2005-07-08T10:30:40Z 241 219 2005-07-13T11:08:40Z 1 2020-02-15T06:59:39Z +4679 2005-07-08T10:33:14Z 3610 423 2005-07-15T14:30:14Z 2 2020-02-15T06:59:39Z +4680 2005-07-08T10:35:28Z 4043 227 2005-07-14T08:42:28Z 1 2020-02-15T06:59:39Z +4681 2005-07-08T10:36:03Z 1025 133 2005-07-16T09:21:03Z 2 2020-02-15T06:59:39Z +4682 2005-07-08T10:38:27Z 873 263 2005-07-11T06:29:27Z 2 2020-02-15T06:59:39Z +4683 2005-07-08T10:38:28Z 3464 283 2005-07-09T12:07:28Z 1 2020-02-15T06:59:39Z +4684 2005-07-08T10:41:06Z 503 585 2005-07-17T10:35:06Z 1 2020-02-15T06:59:39Z +4685 2005-07-08T10:45:13Z 602 590 2005-07-12T08:29:13Z 1 2020-02-15T06:59:39Z +4686 2005-07-08T10:53:39Z 1398 234 2005-07-10T05:34:39Z 2 2020-02-15T06:59:39Z +4687 2005-07-08T10:54:19Z 1156 169 2005-07-10T08:00:19Z 2 2020-02-15T06:59:39Z +4688 2005-07-08T11:03:29Z 3574 80 2005-07-17T15:41:29Z 2 2020-02-15T06:59:39Z +4689 2005-07-08T11:03:47Z 2519 364 2005-07-16T06:07:47Z 2 2020-02-15T06:59:39Z +4690 2005-07-08T11:04:02Z 3304 64 2005-07-15T10:27:02Z 2 2020-02-15T06:59:39Z +4691 2005-07-08T11:04:53Z 596 126 2005-07-09T07:48:53Z 1 2020-02-15T06:59:39Z +4692 2005-07-08T11:07:06Z 1490 288 2005-07-09T14:08:06Z 1 2020-02-15T06:59:39Z +4693 2005-07-08T11:07:36Z 1694 221 2005-07-14T08:40:36Z 1 2020-02-15T06:59:39Z +4694 2005-07-08T11:07:37Z 3637 229 2005-07-12T06:53:37Z 2 2020-02-15T06:59:39Z +4695 2005-07-08T11:07:59Z 805 39 2005-07-17T16:35:59Z 1 2020-02-15T06:59:39Z +4696 2005-07-08T11:12:27Z 1358 424 2005-07-14T05:41:27Z 1 2020-02-15T06:59:39Z +4697 2005-07-08T11:19:14Z 4143 224 2005-07-12T07:14:14Z 2 2020-02-15T06:59:39Z +4698 2005-07-08T11:19:31Z 3963 570 2005-07-13T13:45:31Z 2 2020-02-15T06:59:39Z +4699 2005-07-08T11:36:56Z 2462 348 2005-07-14T11:35:56Z 2 2020-02-15T06:59:39Z +4700 2005-07-08T11:37:21Z 3889 317 2005-07-12T15:41:21Z 1 2020-02-15T06:59:39Z +4701 2005-07-08T11:38:48Z 3012 522 2005-07-13T15:59:48Z 2 2020-02-15T06:59:39Z +4702 2005-07-08T11:41:36Z 2593 56 2005-07-10T06:55:36Z 1 2020-02-15T06:59:39Z +4703 2005-07-08T11:44:56Z 2859 544 2005-07-13T09:17:56Z 1 2020-02-15T06:59:39Z +4704 2005-07-08T11:45:35Z 2291 28 2005-07-10T09:46:35Z 1 2020-02-15T06:59:39Z +4705 2005-07-08T11:50:38Z 3709 85 2005-07-12T15:58:38Z 2 2020-02-15T06:59:39Z +4706 2005-07-08T11:51:41Z 2512 380 2005-07-17T12:58:41Z 1 2020-02-15T06:59:39Z +4707 2005-07-08T11:57:28Z 52 286 2005-07-10T17:47:28Z 1 2020-02-15T06:59:39Z +4708 2005-07-08T11:59:19Z 3249 212 2005-07-17T07:11:19Z 2 2020-02-15T06:59:39Z +4709 2005-07-08T12:04:34Z 3964 124 2005-07-15T06:48:34Z 1 2020-02-15T06:59:39Z +4710 2005-07-08T12:04:53Z 248 590 2005-07-13T11:28:53Z 2 2020-02-15T06:59:39Z +4711 2005-07-08T12:06:58Z 2327 563 2005-07-12T08:37:58Z 1 2020-02-15T06:59:39Z +4712 2005-07-08T12:10:50Z 2371 39 2005-07-17T14:54:50Z 2 2020-02-15T06:59:39Z +4713 2005-07-08T12:12:33Z 1399 207 2005-07-16T17:13:33Z 1 2020-02-15T06:59:39Z +4714 2005-07-08T12:12:48Z 1932 385 2005-07-17T08:43:48Z 2 2020-02-15T06:59:39Z +4715 2005-07-08T12:15:37Z 4010 276 2005-07-10T10:37:37Z 2 2020-02-15T06:59:39Z +4716 2005-07-08T12:18:51Z 1923 391 2005-07-11T11:06:51Z 2 2020-02-15T06:59:39Z +4717 2005-07-08T12:22:43Z 1491 453 2005-07-11T10:24:43Z 2 2020-02-15T06:59:39Z +4718 2005-07-08T12:32:08Z 1653 535 2005-07-17T17:34:08Z 2 2020-02-15T06:59:39Z +4719 2005-07-08T12:33:00Z 1315 556 2005-07-15T12:30:00Z 1 2020-02-15T06:59:39Z +4720 2005-07-08T12:34:34Z 2669 452 2005-07-09T10:28:34Z 1 2020-02-15T06:59:39Z +4721 2005-07-08T12:39:31Z 3105 234 2005-07-15T18:07:31Z 1 2020-02-15T06:59:39Z +4722 2005-07-08T12:42:27Z 3738 590 2005-07-09T09:14:27Z 2 2020-02-15T06:59:39Z +4723 2005-07-08T12:44:59Z 965 44 2005-07-17T07:22:59Z 2 2020-02-15T06:59:39Z +4724 2005-07-08T12:46:30Z 3375 18 2005-07-14T12:39:30Z 1 2020-02-15T06:59:39Z +4725 2005-07-08T12:47:11Z 2058 3 2005-07-15T09:08:11Z 2 2020-02-15T06:59:39Z +4726 2005-07-08T12:50:54Z 4369 144 2005-07-17T07:09:54Z 2 2020-02-15T06:59:39Z +4727 2005-07-08T12:54:15Z 1251 39 2005-07-17T14:32:15Z 2 2020-02-15T06:59:39Z +4728 2005-07-08T12:59:01Z 3687 462 2005-07-13T13:00:01Z 1 2020-02-15T06:59:39Z +4729 2005-07-08T12:59:40Z 1429 205 2005-07-10T13:35:40Z 2 2020-02-15T06:59:39Z +4730 2005-07-08T12:59:49Z 1619 126 2005-07-14T16:15:49Z 2 2020-02-15T06:59:39Z +4731 2005-07-08T13:08:18Z 4124 241 2005-07-09T13:16:18Z 2 2020-02-15T06:59:39Z +4732 2005-07-08T13:09:45Z 308 562 2005-07-14T10:10:45Z 1 2020-02-15T06:59:39Z +4733 2005-07-08T13:12:07Z 2230 93 2005-07-13T07:34:07Z 1 2020-02-15T06:59:39Z +4734 2005-07-08T13:12:12Z 1928 546 2005-07-10T09:01:12Z 2 2020-02-15T06:59:39Z +4735 2005-07-08T13:12:27Z 4324 381 2005-07-13T10:06:27Z 2 2020-02-15T06:59:39Z +4736 2005-07-08T13:22:55Z 3009 79 2005-07-17T07:27:55Z 1 2020-02-15T06:59:39Z +4737 2005-07-08T13:23:53Z 4286 116 2005-07-12T18:49:53Z 1 2020-02-15T06:59:39Z +4738 2005-07-08T13:24:58Z 2021 31 2005-07-17T17:44:58Z 2 2020-02-15T06:59:39Z +4739 2005-07-08T13:25:57Z 140 197 2005-07-11T17:36:57Z 1 2020-02-15T06:59:39Z +4740 2005-07-08T13:30:35Z 2559 379 2005-07-14T18:43:35Z 1 2020-02-15T06:59:39Z +4741 2005-07-08T13:31:23Z 516 260 2005-07-17T12:02:23Z 2 2020-02-15T06:59:39Z +4742 2005-07-08T13:35:23Z 3022 340 2005-07-11T10:24:23Z 2 2020-02-15T06:59:39Z +4743 2005-07-08T13:42:36Z 80 535 2005-07-11T18:54:36Z 2 2020-02-15T06:59:39Z +4744 2005-07-08T13:43:57Z 2948 507 2005-07-12T09:21:57Z 2 2020-02-15T06:59:39Z +4745 2005-07-08T13:45:09Z 1351 354 2005-07-12T18:54:09Z 1 2020-02-15T06:59:39Z +4746 2005-07-08T13:47:55Z 173 148 2005-07-11T09:06:55Z 2 2020-02-15T06:59:39Z +4747 2005-07-08T13:53:01Z 3942 383 2005-07-12T17:10:01Z 2 2020-02-15T06:59:39Z +4748 2005-07-08T13:59:38Z 4279 9 2005-07-15T16:51:38Z 1 2020-02-15T06:59:39Z +4749 2005-07-08T14:05:58Z 1190 236 2005-07-10T18:35:58Z 2 2020-02-15T06:59:39Z +4750 2005-07-08T14:07:03Z 3383 198 2005-07-13T18:05:03Z 1 2020-02-15T06:59:40Z +4751 2005-07-08T14:07:52Z 3469 436 2005-07-13T10:37:52Z 2 2020-02-15T06:59:40Z +4752 2005-07-08T14:15:20Z 3250 512 2005-07-12T13:22:20Z 1 2020-02-15T06:59:40Z +4753 2005-07-08T14:18:41Z 1642 391 2005-07-09T10:00:41Z 2 2020-02-15T06:59:40Z +4754 2005-07-08T14:20:01Z 3177 108 2005-07-11T11:50:01Z 1 2020-02-15T06:59:40Z +4755 2005-07-08T14:23:41Z 661 378 2005-07-10T19:35:41Z 1 2020-02-15T06:59:40Z +4756 2005-07-08T14:24:00Z 3068 351 2005-07-12T16:16:00Z 1 2020-02-15T06:59:40Z +4757 2005-07-08T14:36:51Z 1278 504 2005-07-12T15:28:51Z 1 2020-02-15T06:59:40Z +4758 2005-07-08T14:38:02Z 3698 288 2005-07-13T12:09:02Z 2 2020-02-15T06:59:40Z +4759 2005-07-08T14:39:22Z 3999 284 2005-07-17T15:02:22Z 2 2020-02-15T06:59:40Z +4760 2005-07-08T14:48:07Z 3718 177 2005-07-10T12:41:07Z 2 2020-02-15T06:59:40Z +4761 2005-07-08T14:51:45Z 3556 351 2005-07-14T20:28:45Z 1 2020-02-15T06:59:40Z +4762 2005-07-08T14:54:42Z 390 36 2005-07-12T18:08:42Z 1 2020-02-15T06:59:40Z +4763 2005-07-08T14:57:32Z 899 465 2005-07-15T10:00:32Z 2 2020-02-15T06:59:40Z +4764 2005-07-08T15:01:25Z 1188 89 2005-07-17T15:16:25Z 1 2020-02-15T06:59:40Z +4765 2005-07-08T15:08:45Z 469 437 2005-07-13T10:44:45Z 1 2020-02-15T06:59:40Z +4766 2005-07-08T15:16:04Z 1057 149 2005-07-15T11:04:04Z 2 2020-02-15T06:59:40Z +4767 2005-07-08T15:18:53Z 3744 350 2005-07-13T15:48:53Z 1 2020-02-15T06:59:40Z +4768 2005-07-08T15:28:20Z 2787 482 2005-07-09T11:46:20Z 1 2020-02-15T06:59:40Z +4769 2005-07-08T15:29:16Z 3462 501 2005-07-09T18:42:16Z 2 2020-02-15T06:59:40Z +4770 2005-07-08T15:29:46Z 2406 573 2005-07-14T13:31:46Z 1 2020-02-15T06:59:40Z +4771 2005-07-08T15:33:32Z 1060 32 2005-07-10T12:38:32Z 1 2020-02-15T06:59:40Z +4772 2005-07-08T15:41:11Z 2156 486 2005-07-17T15:25:11Z 1 2020-02-15T06:59:40Z +4773 2005-07-08T15:41:39Z 3025 519 2005-07-13T18:16:39Z 1 2020-02-15T06:59:40Z +4774 2005-07-08T15:42:28Z 673 489 2005-07-16T18:29:28Z 2 2020-02-15T06:59:40Z +4775 2005-07-08T15:44:05Z 4277 595 2005-07-11T20:39:05Z 2 2020-02-15T06:59:40Z +4776 2005-07-08T15:44:20Z 2598 563 2005-07-17T10:50:20Z 2 2020-02-15T06:59:40Z +4777 2005-07-08T15:48:34Z 449 102 2005-07-16T15:25:34Z 1 2020-02-15T06:59:40Z +4778 2005-07-08T15:51:51Z 611 78 2005-07-12T16:58:51Z 2 2020-02-15T06:59:40Z +4779 2005-07-08T15:53:41Z 1321 338 2005-07-15T20:30:41Z 1 2020-02-15T06:59:40Z +4780 2005-07-08T16:06:51Z 2740 115 2005-07-13T18:34:51Z 1 2020-02-15T06:59:40Z +4781 2005-07-08T16:06:55Z 1818 593 2005-07-16T11:22:55Z 2 2020-02-15T06:59:40Z +4782 2005-07-08T16:08:51Z 445 436 2005-07-17T17:56:51Z 1 2020-02-15T06:59:40Z +4783 2005-07-08T16:09:24Z 3952 214 2005-07-16T21:53:24Z 2 2020-02-15T06:59:40Z +4784 2005-07-08T16:09:56Z 549 182 2005-07-09T20:35:56Z 1 2020-02-15T06:59:40Z +4785 2005-07-08T16:10:19Z 58 474 2005-07-11T18:52:19Z 1 2020-02-15T06:59:40Z +4786 2005-07-08T16:13:05Z 2724 294 2005-07-16T15:29:05Z 1 2020-02-15T06:59:40Z +4787 2005-07-08T16:16:04Z 3929 7 2005-07-14T18:02:04Z 2 2020-02-15T06:59:40Z +4788 2005-07-08T16:17:35Z 691 533 2005-07-11T11:56:35Z 2 2020-02-15T06:59:40Z +4789 2005-07-08T16:22:01Z 20 73 2005-07-15T18:29:01Z 2 2020-02-15T06:59:40Z +4790 2005-07-08T16:25:27Z 100 500 2005-07-11T11:35:27Z 1 2020-02-15T06:59:40Z +4791 2005-07-08T16:27:24Z 2505 393 2005-07-14T21:50:24Z 2 2020-02-15T06:59:40Z +4792 2005-07-08T16:29:38Z 2132 147 2005-07-10T16:31:38Z 2 2020-02-15T06:59:40Z +4793 2005-07-08T16:30:01Z 3090 427 2005-07-15T17:56:01Z 1 2020-02-15T06:59:40Z +4794 2005-07-08T16:30:11Z 2497 451 2005-07-17T12:41:11Z 2 2020-02-15T06:59:40Z +4795 2005-07-08T16:32:54Z 3409 497 2005-07-09T14:15:54Z 1 2020-02-15T06:59:40Z +4796 2005-07-08T16:35:44Z 2484 9 2005-07-13T11:08:44Z 2 2020-02-15T06:59:40Z +4797 2005-07-08T16:39:05Z 1389 265 2005-07-09T11:41:05Z 1 2020-02-15T06:59:40Z +4798 2005-07-08T16:45:16Z 3874 212 2005-07-16T13:45:16Z 2 2020-02-15T06:59:40Z +4799 2005-07-08T16:49:27Z 4112 512 2005-07-12T19:58:27Z 2 2020-02-15T06:59:40Z +4800 2005-07-08T16:51:08Z 1940 99 2005-07-13T14:16:08Z 2 2020-02-15T06:59:40Z +4801 2005-07-08T16:51:36Z 761 431 2005-07-13T17:23:36Z 1 2020-02-15T06:59:40Z +4802 2005-07-08T16:55:17Z 22 562 2005-07-15T19:34:17Z 1 2020-02-15T06:59:40Z +4803 2005-07-08T16:56:34Z 1786 174 2005-07-14T20:16:34Z 1 2020-02-15T06:59:40Z +4804 2005-07-08T16:57:30Z 3756 269 2005-07-10T18:25:30Z 1 2020-02-15T06:59:40Z +4805 2005-07-08T16:59:12Z 377 453 2005-07-09T15:02:12Z 1 2020-02-15T06:59:40Z +4806 2005-07-08T17:01:02Z 214 506 2005-07-15T21:41:02Z 1 2020-02-15T06:59:40Z +4807 2005-07-08T17:01:48Z 4511 348 2005-07-16T22:33:48Z 2 2020-02-15T06:59:40Z +4808 2005-07-08T17:02:49Z 2544 563 2005-07-12T22:49:49Z 2 2020-02-15T06:59:40Z +4809 2005-07-08T17:03:22Z 4251 474 2005-07-17T22:39:22Z 1 2020-02-15T06:59:40Z +4810 2005-07-08T17:04:06Z 4056 209 2005-07-09T13:41:06Z 1 2020-02-15T06:59:40Z +4811 2005-07-08T17:04:24Z 4032 127 2005-07-12T16:41:24Z 2 2020-02-15T06:59:40Z +4812 2005-07-08T17:07:11Z 3281 304 2005-07-17T21:03:11Z 2 2020-02-15T06:59:40Z +4813 2005-07-08T17:09:56Z 2752 439 2005-07-09T22:29:56Z 1 2020-02-15T06:59:40Z +4814 2005-07-08T17:11:09Z 3497 244 2005-07-17T12:43:09Z 2 2020-02-15T06:59:40Z +4815 2005-07-08T17:12:51Z 840 581 2005-07-17T13:14:51Z 1 2020-02-15T06:59:40Z +4816 2005-07-08T17:14:14Z 2700 207 2005-07-11T15:03:14Z 1 2020-02-15T06:59:40Z +4817 2005-07-08T17:17:31Z 1608 145 2005-07-09T22:32:31Z 2 2020-02-15T06:59:40Z +4818 2005-07-08T17:18:22Z 115 144 2005-07-14T14:40:22Z 1 2020-02-15T06:59:40Z +4819 2005-07-08T17:19:15Z 1342 64 2005-07-16T14:32:15Z 1 2020-02-15T06:59:40Z +4820 2005-07-08T17:25:23Z 2672 172 2005-07-17T20:32:23Z 2 2020-02-15T06:59:40Z +4821 2005-07-08T17:28:08Z 1690 172 2005-07-11T17:44:08Z 1 2020-02-15T06:59:40Z +4822 2005-07-08T17:28:47Z 3970 185 2005-07-14T13:06:47Z 1 2020-02-15T06:59:40Z +4823 2005-07-08T17:28:54Z 155 206 2005-07-11T23:10:54Z 1 2020-02-15T06:59:40Z +4824 2005-07-08T17:37:39Z 1855 225 2005-07-16T18:27:39Z 1 2020-02-15T06:59:40Z +4825 2005-07-08T17:43:01Z 2419 563 2005-07-11T20:58:01Z 1 2020-02-15T06:59:40Z +4826 2005-07-08T17:44:25Z 911 180 2005-07-16T20:14:25Z 2 2020-02-15T06:59:40Z +4827 2005-07-08T17:46:30Z 4455 110 2005-07-11T14:12:30Z 2 2020-02-15T06:59:40Z +4828 2005-07-08T17:52:29Z 1100 92 2005-07-11T14:35:29Z 1 2020-02-15T06:59:40Z +4829 2005-07-08T17:54:18Z 2661 133 2005-07-11T23:41:18Z 1 2020-02-15T06:59:40Z +4830 2005-07-08T17:56:23Z 1150 359 2005-07-17T21:40:23Z 2 2020-02-15T06:59:40Z +4831 2005-07-08T18:00:14Z 2739 243 2005-07-12T15:54:14Z 2 2020-02-15T06:59:40Z +4832 2005-07-08T18:07:05Z 1838 509 2005-07-10T19:37:05Z 2 2020-02-15T06:59:40Z +4833 2005-07-08T18:07:35Z 2921 581 2005-07-13T15:29:35Z 2 2020-02-15T06:59:40Z +4834 2005-07-08T18:07:45Z 1288 301 2005-07-14T15:27:45Z 1 2020-02-15T06:59:40Z +4835 2005-07-08T18:08:13Z 2499 95 2005-07-17T16:51:13Z 2 2020-02-15T06:59:40Z +4836 2005-07-08T18:09:08Z 2756 311 2005-07-15T20:19:08Z 1 2020-02-15T06:59:40Z +4837 2005-07-08T18:09:12Z 1944 149 2005-07-11T16:40:12Z 1 2020-02-15T06:59:40Z +4838 2005-07-08T18:11:00Z 3733 84 2005-07-17T12:57:00Z 2 2020-02-15T06:59:40Z +4839 2005-07-08T18:13:10Z 1810 556 2005-07-15T12:49:10Z 1 2020-02-15T06:59:40Z +4840 2005-07-08T18:18:16Z 1670 119 2005-07-16T14:59:16Z 1 2020-02-15T06:59:40Z +4841 2005-07-08T18:18:23Z 518 248 2005-07-11T16:51:23Z 2 2020-02-15T06:59:40Z +4842 2005-07-08T18:21:30Z 1438 160 2005-07-10T22:25:30Z 2 2020-02-15T06:59:40Z +4843 2005-07-08T18:27:28Z 3640 45 2005-07-15T00:26:28Z 2 2020-02-15T06:59:40Z +4844 2005-07-08T18:28:13Z 4057 237 2005-07-09T21:17:13Z 2 2020-02-15T06:59:40Z +4845 2005-07-08T18:28:20Z 2337 553 2005-07-09T14:38:20Z 2 2020-02-15T06:59:40Z +4846 2005-07-08T18:29:05Z 417 556 2005-07-10T22:33:05Z 2 2020-02-15T06:59:40Z +4847 2005-07-08T18:29:13Z 3397 544 2005-07-15T18:12:13Z 2 2020-02-15T06:59:40Z +4848 2005-07-08T18:30:16Z 2962 251 2005-07-12T19:53:16Z 2 2020-02-15T06:59:40Z +4849 2005-07-08T18:34:34Z 4323 146 2005-07-14T20:27:34Z 2 2020-02-15T06:59:40Z +4850 2005-07-08T18:39:31Z 3039 154 2005-07-13T00:18:31Z 2 2020-02-15T06:59:40Z +4851 2005-07-08T18:40:05Z 134 557 2005-07-12T21:46:05Z 1 2020-02-15T06:59:40Z +4852 2005-07-08T18:43:15Z 3545 418 2005-07-15T18:48:15Z 2 2020-02-15T06:59:40Z +4853 2005-07-08T18:43:18Z 1454 23 2005-07-12T14:28:18Z 2 2020-02-15T06:59:40Z +4854 2005-07-08T18:44:44Z 3644 487 2005-07-13T13:37:44Z 1 2020-02-15T06:59:40Z +4855 2005-07-08T18:45:50Z 1146 337 2005-07-11T18:23:50Z 2 2020-02-15T06:59:40Z +4856 2005-07-08T18:47:38Z 2441 7 2005-07-13T15:02:38Z 2 2020-02-15T06:59:40Z +4857 2005-07-08T18:52:07Z 2069 211 2005-07-11T22:06:07Z 1 2020-02-15T06:59:40Z +4858 2005-07-08T18:53:24Z 3424 447 2005-07-17T20:32:24Z 2 2020-02-15T06:59:40Z +4859 2005-07-08T18:54:04Z 1939 369 2005-07-13T13:04:04Z 1 2020-02-15T06:59:40Z +4860 2005-07-08T18:54:07Z 428 123 2005-07-17T15:09:07Z 2 2020-02-15T06:59:40Z +4861 2005-07-08T18:57:30Z 2984 455 2005-07-16T15:12:30Z 2 2020-02-15T06:59:40Z +4862 2005-07-08T19:02:46Z 293 291 2005-07-17T20:17:46Z 1 2020-02-15T06:59:40Z +4863 2005-07-08T19:03:15Z 1 431 2005-07-11T21:29:15Z 2 2020-02-15T06:59:40Z +4864 2005-07-08T19:05:34Z 2974 281 2005-07-17T15:05:34Z 2 2020-02-15T06:59:40Z +4865 2005-07-08T19:09:04Z 1614 418 2005-07-13T21:25:04Z 2 2020-02-15T06:59:40Z +4866 2005-07-08T19:09:59Z 4036 278 2005-07-15T00:51:59Z 2 2020-02-15T06:59:40Z +4867 2005-07-08T19:10:52Z 4090 593 2005-07-09T21:43:52Z 2 2020-02-15T06:59:40Z +4868 2005-07-08T19:13:50Z 1157 307 2005-07-14T20:59:50Z 2 2020-02-15T06:59:40Z +4869 2005-07-08T19:14:05Z 2860 376 2005-07-15T22:27:05Z 1 2020-02-15T06:59:40Z +4870 2005-07-08T19:14:45Z 3089 260 2005-07-12T18:58:45Z 2 2020-02-15T06:59:40Z +4871 2005-07-08T19:19:52Z 2509 210 2005-07-13T20:27:52Z 2 2020-02-15T06:59:40Z +4872 2005-07-08T19:23:16Z 1836 103 2005-07-10T14:17:16Z 2 2020-02-15T06:59:40Z +4873 2005-07-08T19:23:32Z 4500 473 2005-07-11T15:24:32Z 1 2020-02-15T06:59:40Z +4874 2005-07-08T19:23:38Z 2386 223 2005-07-13T14:39:38Z 2 2020-02-15T06:59:40Z +4875 2005-07-08T19:24:17Z 843 555 2005-07-11T19:15:17Z 2 2020-02-15T06:59:40Z +4876 2005-07-08T19:27:50Z 1959 283 2005-07-14T15:42:50Z 1 2020-02-15T06:59:40Z +4877 2005-07-08T19:31:02Z 1846 287 2005-07-15T19:05:02Z 1 2020-02-15T06:59:40Z +4878 2005-07-08T19:33:49Z 4009 172 2005-07-17T17:47:49Z 1 2020-02-15T06:59:40Z +4879 2005-07-08T19:34:55Z 1406 196 2005-07-09T15:53:55Z 1 2020-02-15T06:59:40Z +4880 2005-07-08T19:36:17Z 4178 269 2005-07-13T00:01:17Z 1 2020-02-15T06:59:40Z +4881 2005-07-08T19:40:34Z 4346 349 2005-07-09T17:08:34Z 2 2020-02-15T06:59:40Z +4882 2005-07-08T19:42:03Z 4540 184 2005-07-16T22:24:03Z 1 2020-02-15T06:59:40Z +4883 2005-07-08T19:46:58Z 1366 563 2005-07-10T15:48:58Z 1 2020-02-15T06:59:40Z +4884 2005-07-08T19:49:17Z 3543 425 2005-07-15T23:14:17Z 2 2020-02-15T06:59:40Z +4885 2005-07-08T19:51:17Z 442 233 2005-07-12T16:02:17Z 2 2020-02-15T06:59:40Z +4886 2005-07-08T19:53:22Z 3393 474 2005-07-09T17:05:22Z 1 2020-02-15T06:59:40Z +4887 2005-07-08T19:59:14Z 3613 543 2005-07-15T22:53:14Z 1 2020-02-15T06:59:40Z +4888 2005-07-08T20:04:27Z 1220 527 2005-07-10T14:53:27Z 2 2020-02-15T06:59:40Z +4889 2005-07-08T20:04:43Z 4463 5 2005-07-13T17:57:43Z 2 2020-02-15T06:59:40Z +4890 2005-07-08T20:05:38Z 3576 574 2005-07-14T14:55:38Z 2 2020-02-15T06:59:40Z +4891 2005-07-08T20:06:19Z 1787 59 2005-07-16T18:52:19Z 1 2020-02-15T06:59:40Z +4892 2005-07-08T20:06:25Z 3566 193 2005-07-14T20:04:25Z 1 2020-02-15T06:59:40Z +4893 2005-07-08T20:19:55Z 2060 210 2005-07-15T21:28:55Z 2 2020-02-15T06:59:40Z +4894 2005-07-08T20:21:31Z 1028 286 2005-07-11T01:59:31Z 1 2020-02-15T06:59:40Z +4895 2005-07-08T20:22:05Z 2620 242 2005-07-12T20:49:05Z 1 2020-02-15T06:59:40Z +4896 2005-07-08T20:23:15Z 3006 129 2005-07-10T15:38:15Z 1 2020-02-15T06:59:40Z +4897 2005-07-08T20:25:11Z 2950 258 2005-07-09T17:16:11Z 1 2020-02-15T06:59:40Z +4898 2005-07-08T20:31:43Z 3212 218 2005-07-15T15:58:43Z 2 2020-02-15T06:59:40Z +4899 2005-07-08T20:37:11Z 414 32 2005-07-10T21:53:11Z 1 2020-02-15T06:59:40Z +4900 2005-07-08T20:38:06Z 3487 426 2005-07-09T22:45:06Z 2 2020-02-15T06:59:40Z +4901 2005-07-08T20:44:51Z 2187 507 2005-07-10T01:04:51Z 1 2020-02-15T06:59:40Z +4902 2005-07-08T20:49:30Z 2238 554 2005-07-13T16:54:30Z 2 2020-02-15T06:59:40Z +4903 2005-07-08T20:50:05Z 1769 132 2005-07-13T15:27:05Z 1 2020-02-15T06:59:40Z +4904 2005-07-08T20:53:27Z 2051 173 2005-07-18T01:16:27Z 1 2020-02-15T06:59:40Z +4905 2005-07-08T20:56:00Z 4101 246 2005-07-12T00:19:00Z 2 2020-02-15T06:59:40Z +4906 2005-07-08T20:59:13Z 1527 490 2005-07-15T01:12:13Z 2 2020-02-15T06:59:40Z +4907 2005-07-08T21:01:41Z 1206 209 2005-07-13T02:23:41Z 2 2020-02-15T06:59:40Z +4908 2005-07-08T21:05:44Z 1963 160 2005-07-17T21:33:44Z 2 2020-02-15T06:59:40Z +4909 2005-07-08T21:07:24Z 1451 228 2005-07-10T22:34:24Z 1 2020-02-15T06:59:40Z +4910 2005-07-08T21:13:56Z 3675 219 2005-07-18T02:39:56Z 2 2020-02-15T06:59:40Z +4911 2005-07-08T21:20:26Z 4479 66 2005-07-15T03:11:26Z 1 2020-02-15T06:59:40Z +4912 2005-07-08T21:26:11Z 2012 275 2005-07-18T02:19:11Z 1 2020-02-15T06:59:40Z +4913 2005-07-08T21:27:48Z 982 368 2005-07-18T02:51:48Z 1 2020-02-15T06:59:40Z +4914 2005-07-08T21:30:53Z 298 535 2005-07-17T01:29:53Z 1 2020-02-15T06:59:40Z +4915 2005-07-08T21:31:22Z 2772 178 2005-07-13T16:45:22Z 2 2020-02-15T06:59:40Z +4916 2005-07-08T21:32:17Z 2680 212 2005-07-14T20:55:17Z 2 2020-02-15T06:59:40Z +4917 2005-07-08T21:32:30Z 3231 104 2005-07-09T15:34:30Z 1 2020-02-15T06:59:40Z +4918 2005-07-08T21:37:31Z 3819 220 2005-07-11T20:16:31Z 2 2020-02-15T06:59:40Z +4919 2005-07-08T21:41:54Z 2106 157 2005-07-11T23:14:54Z 1 2020-02-15T06:59:40Z +4920 2005-07-08T21:42:10Z 4285 239 2005-07-15T03:08:10Z 1 2020-02-15T06:59:40Z +4921 2005-07-08T21:43:21Z 425 109 2005-07-10T16:06:21Z 2 2020-02-15T06:59:40Z +4922 2005-07-08T21:44:00Z 2928 577 2005-07-10T02:58:00Z 2 2020-02-15T06:59:40Z +4923 2005-07-08T21:44:39Z 932 18 2005-07-17T15:50:39Z 2 2020-02-15T06:59:40Z +4924 2005-07-08T21:55:25Z 4344 180 2005-07-16T16:52:25Z 1 2020-02-15T06:59:40Z +4925 2005-07-08T21:56:00Z 2169 68 2005-07-14T17:17:00Z 2 2020-02-15T06:59:40Z +4926 2005-07-08T22:01:48Z 4155 415 2005-07-18T03:27:48Z 1 2020-02-15T06:59:40Z +4927 2005-07-08T22:05:35Z 2566 136 2005-07-14T23:22:35Z 2 2020-02-15T06:59:40Z +4928 2005-07-08T22:05:41Z 4363 77 2005-07-09T23:09:41Z 2 2020-02-15T06:59:40Z +4929 2005-07-08T22:06:18Z 734 297 2005-07-17T18:17:18Z 2 2020-02-15T06:59:40Z +4930 2005-07-08T22:15:48Z 2057 451 2005-07-15T21:02:48Z 2 2020-02-15T06:59:40Z +4931 2005-07-08T22:16:18Z 2750 284 2005-07-17T03:42:18Z 1 2020-02-15T06:59:40Z +4932 2005-07-08T22:17:40Z 4237 558 2005-07-15T22:13:40Z 2 2020-02-15T06:59:40Z +4933 2005-07-08T22:18:29Z 322 579 2005-07-13T03:47:29Z 2 2020-02-15T06:59:40Z +4934 2005-07-08T22:18:42Z 1744 517 2005-07-10T20:44:42Z 2 2020-02-15T06:59:40Z +4935 2005-07-08T22:20:56Z 2708 230 2005-07-12T01:01:56Z 2 2020-02-15T06:59:40Z +4936 2005-07-08T22:24:50Z 2033 298 2005-07-15T03:14:50Z 2 2020-02-15T06:59:40Z +4937 2005-07-08T22:29:59Z 33 273 2005-07-15T21:51:59Z 2 2020-02-15T06:59:40Z +4938 2005-07-08T22:32:53Z 2164 418 2005-07-14T16:48:53Z 2 2020-02-15T06:59:40Z +4939 2005-07-08T22:35:30Z 3201 425 2005-07-17T22:05:30Z 1 2020-02-15T06:59:40Z +4940 2005-07-08T22:36:06Z 971 215 2005-07-15T04:28:06Z 1 2020-02-15T06:59:40Z +4941 2005-07-08T22:39:10Z 3816 553 2005-07-15T17:49:10Z 2 2020-02-15T06:59:40Z +4942 2005-07-08T22:42:47Z 4467 120 2005-07-15T04:36:47Z 2 2020-02-15T06:59:40Z +4943 2005-07-08T22:43:05Z 2732 11 2005-07-15T18:17:05Z 2 2020-02-15T06:59:40Z +4944 2005-07-08T22:44:28Z 3648 293 2005-07-17T21:51:28Z 2 2020-02-15T06:59:40Z +4945 2005-07-08T22:45:02Z 2079 165 2005-07-11T23:59:02Z 2 2020-02-15T06:59:40Z +4946 2005-07-08T22:46:23Z 272 440 2005-07-16T17:19:23Z 1 2020-02-15T06:59:40Z +4947 2005-07-08T22:49:37Z 3905 388 2005-07-17T21:03:37Z 1 2020-02-15T06:59:40Z +4948 2005-07-08T22:54:21Z 2972 518 2005-07-17T03:52:21Z 2 2020-02-15T06:59:40Z +4949 2005-07-08T22:57:10Z 1184 567 2005-07-11T01:26:10Z 2 2020-02-15T06:59:40Z +4950 2005-07-08T22:58:07Z 3291 148 2005-07-09T20:41:07Z 2 2020-02-15T06:59:40Z +4951 2005-07-08T22:58:21Z 2766 28 2005-07-16T18:58:21Z 1 2020-02-15T06:59:40Z +4952 2005-07-08T23:00:07Z 459 14 2005-07-09T21:47:07Z 1 2020-02-15T06:59:40Z +4953 2005-07-08T23:09:48Z 2460 168 2005-07-11T02:08:48Z 2 2020-02-15T06:59:40Z +4954 2005-07-08T23:14:16Z 627 99 2005-07-14T23:23:16Z 2 2020-02-15T06:59:40Z +4955 2005-07-08T23:16:21Z 1103 225 2005-07-14T02:09:21Z 2 2020-02-15T06:59:40Z +4956 2005-07-08T23:17:10Z 1512 477 2005-07-18T00:14:10Z 1 2020-02-15T06:59:40Z +4957 2005-07-08T23:18:48Z 4082 399 2005-07-09T23:13:48Z 1 2020-02-15T06:59:40Z +4958 2005-07-08T23:19:52Z 2354 346 2005-07-17T20:31:52Z 1 2020-02-15T06:59:40Z +4959 2005-07-08T23:22:23Z 3898 236 2005-07-10T03:17:23Z 2 2020-02-15T06:59:40Z +4960 2005-07-08T23:27:16Z 2176 434 2005-07-18T02:01:16Z 1 2020-02-15T06:59:40Z +4961 2005-07-08T23:35:53Z 3668 96 2005-07-14T22:46:53Z 2 2020-02-15T06:59:40Z +4962 2005-07-08T23:36:13Z 4399 532 2005-07-15T03:39:13Z 1 2020-02-15T06:59:40Z +4963 2005-07-08T23:38:40Z 737 404 2005-07-12T05:33:40Z 2 2020-02-15T06:59:40Z +4964 2005-07-08T23:46:38Z 1033 455 2005-07-09T22:19:38Z 2 2020-02-15T06:59:40Z +4965 2005-07-08T23:46:57Z 535 432 2005-07-15T18:47:57Z 1 2020-02-15T06:59:40Z +4966 2005-07-08T23:47:25Z 4360 118 2005-07-14T03:35:25Z 1 2020-02-15T06:59:40Z +4967 2005-07-08T23:48:03Z 108 339 2005-07-15T23:51:03Z 2 2020-02-15T06:59:40Z +4968 2005-07-08T23:49:19Z 3204 390 2005-07-14T02:46:19Z 1 2020-02-15T06:59:40Z +4969 2005-07-08T23:51:26Z 4563 231 2005-07-12T03:21:26Z 2 2020-02-15T06:59:40Z +4970 2005-07-08T23:54:29Z 2983 100 2005-07-16T22:47:29Z 1 2020-02-15T06:59:40Z +4971 2005-07-08T23:54:49Z 460 64 2005-07-16T00:15:49Z 1 2020-02-15T06:59:40Z +4972 2005-07-08T23:56:09Z 2451 498 2005-07-16T19:15:09Z 1 2020-02-15T06:59:40Z +4973 2005-07-08T23:58:18Z 391 432 2005-07-14T21:42:18Z 1 2020-02-15T06:59:40Z +4974 2005-07-09T00:00:36Z 1071 152 2005-07-13T21:03:36Z 1 2020-02-15T06:59:40Z +4975 2005-07-09T00:02:46Z 3730 101 2005-07-14T18:05:46Z 2 2020-02-15T06:59:40Z +4976 2005-07-09T00:03:30Z 617 199 2005-07-10T19:05:30Z 1 2020-02-15T06:59:40Z +4977 2005-07-09T00:15:50Z 3310 584 2005-07-10T00:34:50Z 2 2020-02-15T06:59:40Z +4978 2005-07-09T00:22:02Z 2578 279 2005-07-18T04:37:02Z 1 2020-02-15T06:59:40Z +4979 2005-07-09T00:24:34Z 3447 204 2005-07-12T20:04:34Z 1 2020-02-15T06:59:40Z +4980 2005-07-09T00:26:59Z 2638 100 2005-07-14T19:42:59Z 1 2020-02-15T06:59:40Z +4981 2005-07-09T00:29:29Z 3363 399 2005-07-16T19:06:29Z 2 2020-02-15T06:59:40Z +4982 2005-07-09T00:30:52Z 249 162 2005-07-15T23:50:52Z 1 2020-02-15T06:59:40Z +4983 2005-07-09T00:34:16Z 1469 81 2005-07-17T03:21:16Z 2 2020-02-15T06:59:40Z +4984 2005-07-09T00:35:31Z 1303 214 2005-07-17T03:44:31Z 1 2020-02-15T06:59:40Z +4985 2005-07-09T00:36:02Z 2146 208 2005-07-14T04:06:02Z 2 2020-02-15T06:59:40Z +4986 2005-07-09T00:44:33Z 3517 589 2005-07-09T19:45:33Z 2 2020-02-15T06:59:40Z +4987 2005-07-09T00:45:41Z 996 277 2005-07-14T03:32:41Z 2 2020-02-15T06:59:40Z +4988 2005-07-09T00:46:14Z 2718 433 2005-07-16T01:45:14Z 2 2020-02-15T06:59:40Z +4989 2005-07-09T00:46:56Z 3326 210 2005-07-17T06:24:56Z 1 2020-02-15T06:59:40Z +4990 2005-07-09T00:48:49Z 3305 35 2005-07-10T06:36:49Z 2 2020-02-15T06:59:40Z +4991 2005-07-09T00:49:03Z 1856 540 2005-07-13T05:02:03Z 1 2020-02-15T06:59:40Z +4992 2005-07-09T00:49:37Z 2081 315 2005-07-16T02:05:37Z 1 2020-02-15T06:59:40Z +4993 2005-07-09T00:49:47Z 1740 517 2005-07-11T21:19:47Z 1 2020-02-15T06:59:40Z +4994 2005-07-09T00:54:13Z 2546 246 2005-07-09T21:02:13Z 1 2020-02-15T06:59:40Z +4995 2005-07-09T00:57:46Z 2063 247 2005-07-13T03:32:46Z 1 2020-02-15T06:59:40Z +4996 2005-07-09T00:59:46Z 4440 129 2005-07-16T01:30:46Z 2 2020-02-15T06:59:40Z +4997 2005-07-09T01:06:03Z 186 102 2005-07-18T04:21:03Z 2 2020-02-15T06:59:40Z +4998 2005-07-09T01:07:21Z 202 534 2005-07-10T05:48:21Z 2 2020-02-15T06:59:40Z +4999 2005-07-09T01:12:57Z 1797 196 2005-07-17T00:12:57Z 1 2020-02-15T06:59:40Z +5000 2005-07-09T01:16:13Z 668 146 2005-07-14T21:55:13Z 1 2020-02-15T06:59:40Z +5001 2005-07-09T01:17:04Z 2025 40 2005-07-16T03:25:04Z 2 2020-02-15T06:59:40Z +5002 2005-07-09T01:17:08Z 2388 430 2005-07-15T21:53:08Z 1 2020-02-15T06:59:40Z +5003 2005-07-09T01:19:03Z 3438 569 2005-07-10T04:28:03Z 2 2020-02-15T06:59:40Z +5004 2005-07-09T01:20:50Z 2637 382 2005-07-09T19:56:50Z 1 2020-02-15T06:59:40Z +5005 2005-07-09T01:21:44Z 3034 451 2005-07-14T20:27:44Z 1 2020-02-15T06:59:40Z +5006 2005-07-09T01:24:07Z 1277 486 2005-07-18T03:56:07Z 1 2020-02-15T06:59:40Z +5007 2005-07-09T01:26:22Z 3079 207 2005-07-12T20:48:22Z 1 2020-02-15T06:59:40Z +5008 2005-07-09T01:31:42Z 824 509 2005-07-11T22:34:42Z 2 2020-02-15T06:59:40Z +5009 2005-07-09T01:32:17Z 1539 102 2005-07-18T03:39:17Z 2 2020-02-15T06:59:40Z +5010 2005-07-09T01:33:23Z 1999 574 2005-07-14T04:00:23Z 2 2020-02-15T06:59:40Z +5011 2005-07-09T01:44:40Z 463 249 2005-07-11T00:58:40Z 2 2020-02-15T06:59:40Z +5012 2005-07-09T01:45:04Z 1456 251 2005-07-12T02:13:04Z 1 2020-02-15T06:59:40Z +5013 2005-07-09T01:46:45Z 3000 35 2005-07-16T06:57:45Z 1 2020-02-15T06:59:40Z +5014 2005-07-09T01:51:49Z 4095 334 2005-07-10T04:48:49Z 1 2020-02-15T06:59:40Z +5015 2005-07-09T01:54:24Z 1564 178 2005-07-12T20:07:24Z 1 2020-02-15T06:59:40Z +5016 2005-07-09T01:57:57Z 1871 5 2005-07-09T22:07:57Z 1 2020-02-15T06:59:40Z +5017 2005-07-09T02:00:16Z 3745 241 2005-07-14T06:28:16Z 1 2020-02-15T06:59:40Z +5018 2005-07-09T02:01:05Z 2317 541 2005-07-10T04:09:05Z 1 2020-02-15T06:59:40Z +5019 2005-07-09T02:04:32Z 3534 295 2005-07-15T07:01:32Z 2 2020-02-15T06:59:40Z +5020 2005-07-09T02:07:56Z 4113 565 2005-07-09T23:59:56Z 1 2020-02-15T06:59:40Z +5021 2005-07-09T02:09:41Z 3445 73 2005-07-13T05:47:41Z 1 2020-02-15T06:59:40Z +5022 2005-07-09T02:10:54Z 928 499 2005-07-17T08:07:54Z 2 2020-02-15T06:59:40Z +5023 2005-07-09T02:23:16Z 3206 358 2005-07-15T20:37:16Z 1 2020-02-15T06:59:40Z +5024 2005-07-09T02:25:12Z 2987 335 2005-07-12T03:15:12Z 1 2020-02-15T06:59:40Z +5025 2005-07-09T02:28:24Z 153 91 2005-07-12T04:43:24Z 2 2020-02-15T06:59:40Z +5026 2005-07-09T02:32:34Z 989 463 2005-07-13T04:39:34Z 2 2020-02-15T06:59:40Z +5027 2005-07-09T02:32:37Z 2179 109 2005-07-16T23:13:37Z 1 2020-02-15T06:59:40Z +5028 2005-07-09T02:34:45Z 4531 30 2005-07-14T20:45:45Z 2 2020-02-15T06:59:40Z +5029 2005-07-09T02:35:32Z 3938 265 2005-07-17T22:46:32Z 1 2020-02-15T06:59:40Z +5030 2005-07-09T02:35:43Z 25 497 2005-07-17T02:05:43Z 1 2020-02-15T06:59:40Z +5031 2005-07-09T02:36:37Z 4224 312 2005-07-14T03:09:37Z 2 2020-02-15T06:59:40Z +5032 2005-07-09T02:39:47Z 2257 333 2005-07-10T07:45:47Z 1 2020-02-15T06:59:40Z +5033 2005-07-09T02:42:01Z 2841 299 2005-07-14T00:29:01Z 1 2020-02-15T06:59:40Z +5034 2005-07-09T02:48:15Z 340 148 2005-07-11T23:13:15Z 2 2020-02-15T06:59:40Z +5035 2005-07-09T02:51:34Z 3699 99 2005-07-16T21:38:34Z 1 2020-02-15T06:59:40Z +5036 2005-07-09T02:58:41Z 75 573 2005-07-17T04:09:41Z 1 2020-02-15T06:59:40Z +5037 2005-07-09T02:59:10Z 435 524 2005-07-15T07:54:10Z 2 2020-02-15T06:59:40Z +5038 2005-07-09T03:12:52Z 3086 10 2005-07-17T22:27:52Z 2 2020-02-15T06:59:40Z +5039 2005-07-09T03:14:45Z 2020 268 2005-07-16T06:57:45Z 2 2020-02-15T06:59:40Z +5040 2005-07-09T03:16:34Z 2479 405 2005-07-17T01:13:34Z 2 2020-02-15T06:59:40Z +5041 2005-07-09T03:18:51Z 2711 305 2005-07-13T03:08:51Z 1 2020-02-15T06:59:40Z +5042 2005-07-09T03:20:30Z 3609 254 2005-07-15T07:22:30Z 1 2020-02-15T06:59:40Z +5043 2005-07-09T03:25:18Z 2979 369 2005-07-13T00:57:18Z 2 2020-02-15T06:59:40Z +5044 2005-07-09T03:30:25Z 1625 147 2005-07-11T02:32:25Z 2 2020-02-15T06:59:40Z +5045 2005-07-09T03:33:32Z 1041 230 2005-07-18T06:15:32Z 1 2020-02-15T06:59:40Z +5046 2005-07-09T03:34:57Z 1639 227 2005-07-17T22:36:57Z 2 2020-02-15T06:59:40Z +5047 2005-07-09T03:44:15Z 230 272 2005-07-15T09:07:15Z 2 2020-02-15T06:59:40Z +5048 2005-07-09T03:46:33Z 1271 466 2005-07-15T01:14:33Z 1 2020-02-15T06:59:40Z +5049 2005-07-09T03:54:12Z 3336 144 2005-07-11T22:39:12Z 2 2020-02-15T06:59:40Z +5050 2005-07-09T03:54:38Z 3876 337 2005-07-10T02:23:38Z 2 2020-02-15T06:59:40Z +5051 2005-07-09T03:57:53Z 4091 85 2005-07-16T08:22:53Z 2 2020-02-15T06:59:40Z +5052 2005-07-09T03:59:43Z 1884 305 2005-07-12T05:48:43Z 1 2020-02-15T06:59:40Z +5053 2005-07-09T03:59:46Z 570 295 2005-07-09T23:53:46Z 2 2020-02-15T06:59:40Z +5054 2005-07-09T04:01:02Z 4001 135 2005-07-18T05:16:02Z 2 2020-02-15T06:59:40Z +5055 2005-07-09T04:05:28Z 751 54 2005-07-14T04:26:28Z 2 2020-02-15T06:59:40Z +5056 2005-07-09T04:13:45Z 2599 526 2005-07-10T06:17:45Z 2 2020-02-15T06:59:40Z +5057 2005-07-09T04:20:29Z 1076 178 2005-07-14T23:59:29Z 1 2020-02-15T06:59:40Z +5058 2005-07-09T04:20:35Z 917 221 2005-07-18T08:09:35Z 2 2020-02-15T06:59:40Z +5059 2005-07-09T04:28:01Z 3951 396 2005-07-15T22:57:01Z 1 2020-02-15T06:59:40Z +5060 2005-07-09T04:28:03Z 4317 57 2005-07-12T07:41:03Z 2 2020-02-15T06:59:40Z +5061 2005-07-09T04:30:50Z 3893 230 2005-07-12T03:24:50Z 1 2020-02-15T06:59:40Z +5062 2005-07-09T04:36:49Z 2190 141 2005-07-10T06:26:49Z 1 2020-02-15T06:59:40Z +5063 2005-07-09T04:37:31Z 1027 133 2005-07-13T09:56:31Z 2 2020-02-15T06:59:40Z +5064 2005-07-09T04:38:51Z 373 512 2005-07-18T00:33:51Z 2 2020-02-15T06:59:40Z +5065 2005-07-09T04:42:00Z 1788 599 2005-07-12T08:55:00Z 1 2020-02-15T06:59:40Z +5066 2005-07-09T04:48:50Z 1702 169 2005-07-12T22:54:50Z 2 2020-02-15T06:59:40Z +5067 2005-07-09T04:52:35Z 1480 225 2005-07-11T23:33:35Z 2 2020-02-15T06:59:40Z +5068 2005-07-09T04:53:18Z 2937 10 2005-07-13T09:21:18Z 1 2020-02-15T06:59:40Z +5069 2005-07-09T04:56:30Z 4417 183 2005-07-13T23:53:30Z 2 2020-02-15T06:59:40Z +5070 2005-07-09T04:58:26Z 2305 407 2005-07-09T23:00:26Z 2 2020-02-15T06:59:40Z +5071 2005-07-09T05:00:39Z 4358 12 2005-07-09T23:08:39Z 1 2020-02-15T06:59:40Z +5072 2005-07-09T05:01:58Z 94 254 2005-07-18T08:17:58Z 2 2020-02-15T06:59:40Z +5073 2005-07-09T05:02:35Z 546 408 2005-07-15T01:22:35Z 2 2020-02-15T06:59:40Z +5074 2005-07-09T05:06:24Z 1379 12 2005-07-12T04:37:24Z 1 2020-02-15T06:59:40Z +5075 2005-07-09T05:12:07Z 903 170 2005-07-12T08:29:07Z 1 2020-02-15T06:59:40Z +5076 2005-07-09T05:13:22Z 4388 574 2005-07-16T09:11:22Z 1 2020-02-15T06:59:40Z +5077 2005-07-09T05:18:01Z 686 574 2005-07-17T10:39:01Z 2 2020-02-15T06:59:40Z +5078 2005-07-09T05:20:24Z 1994 78 2005-07-13T06:41:24Z 2 2020-02-15T06:59:40Z +5079 2005-07-09T05:20:40Z 3948 566 2005-07-17T00:06:40Z 1 2020-02-15T06:59:40Z +5080 2005-07-09T05:23:55Z 635 254 2005-07-11T05:56:55Z 2 2020-02-15T06:59:40Z +5081 2005-07-09T05:25:20Z 1953 420 2005-07-13T23:45:20Z 1 2020-02-15T06:59:40Z +5082 2005-07-09T05:28:38Z 1584 470 2005-07-10T02:46:38Z 2 2020-02-15T06:59:40Z +5083 2005-07-09T05:30:32Z 148 494 2005-07-11T02:20:32Z 1 2020-02-15T06:59:40Z +5084 2005-07-09T05:33:27Z 3113 87 2005-07-17T08:54:27Z 2 2020-02-15T06:59:40Z +5085 2005-07-09T05:36:49Z 4164 437 2005-07-13T09:26:49Z 1 2020-02-15T06:59:40Z +5086 2005-07-09T05:40:04Z 3072 539 2005-07-16T07:51:04Z 1 2020-02-15T06:59:40Z +5087 2005-07-09T05:44:28Z 3716 395 2005-07-10T02:25:28Z 2 2020-02-15T06:59:40Z +5088 2005-07-09T05:45:16Z 3324 454 2005-07-15T00:41:16Z 2 2020-02-15T06:59:40Z +5089 2005-07-09T05:45:40Z 451 289 2005-07-15T05:31:40Z 1 2020-02-15T06:59:40Z +5090 2005-07-09T05:48:22Z 1728 296 2005-07-11T06:50:22Z 2 2020-02-15T06:59:40Z +5091 2005-07-09T05:52:54Z 4572 149 2005-07-10T02:49:54Z 1 2020-02-15T06:59:40Z +5092 2005-07-09T05:57:39Z 3256 139 2005-07-12T00:45:39Z 2 2020-02-15T06:59:40Z +5093 2005-07-09T05:59:12Z 2734 597 2005-07-10T11:45:12Z 2 2020-02-15T06:59:40Z +5094 2005-07-09T05:59:47Z 4451 178 2005-07-18T05:34:47Z 2 2020-02-15T06:59:40Z +5095 2005-07-09T06:08:22Z 2788 292 2005-07-11T10:52:22Z 1 2020-02-15T06:59:40Z +5096 2005-07-09T06:08:23Z 490 231 2005-07-14T11:36:23Z 1 2020-02-15T06:59:40Z +5097 2005-07-09T06:09:51Z 3252 343 2005-07-10T03:55:51Z 2 2020-02-15T06:59:40Z +5098 2005-07-09T06:13:54Z 1772 406 2005-07-10T04:27:54Z 1 2020-02-15T06:59:40Z +5099 2005-07-09T06:14:30Z 768 393 2005-07-12T08:23:30Z 2 2020-02-15T06:59:40Z +5100 2005-07-09T06:16:03Z 3193 101 2005-07-10T10:21:03Z 1 2020-02-15T06:59:40Z +5101 2005-07-09T06:21:29Z 2737 154 2005-07-11T02:58:29Z 1 2020-02-15T06:59:40Z +5102 2005-07-09T06:25:48Z 242 316 2005-07-16T11:32:48Z 2 2020-02-15T06:59:40Z +5103 2005-07-09T06:34:40Z 2390 397 2005-07-10T03:44:40Z 2 2020-02-15T06:59:40Z +5104 2005-07-09T06:37:07Z 2109 14 2005-07-14T12:32:07Z 1 2020-02-15T06:59:40Z +5105 2005-07-09T06:38:59Z 2555 290 2005-07-17T03:06:59Z 2 2020-02-15T06:59:40Z +5106 2005-07-09T06:40:24Z 110 137 2005-07-13T10:28:24Z 1 2020-02-15T06:59:40Z +5107 2005-07-09T06:42:32Z 1697 21 2005-07-10T08:21:32Z 2 2020-02-15T06:59:40Z +5108 2005-07-09T06:44:30Z 4229 30 2005-07-17T04:24:30Z 1 2020-02-15T06:59:40Z +5109 2005-07-09T06:48:49Z 2373 102 2005-07-14T01:17:49Z 1 2020-02-15T06:59:40Z +5110 2005-07-09T06:57:25Z 195 200 2005-07-12T05:39:25Z 2 2020-02-15T06:59:40Z +5111 2005-07-09T07:02:19Z 2875 12 2005-07-10T06:27:19Z 2 2020-02-15T06:59:40Z +5112 2005-07-09T07:04:04Z 3529 285 2005-07-13T08:42:04Z 1 2020-02-15T06:59:40Z +5113 2005-07-09T07:06:18Z 3618 282 2005-07-13T07:10:18Z 2 2020-02-15T06:59:40Z +5114 2005-07-09T07:07:05Z 3734 64 2005-07-15T03:06:05Z 1 2020-02-15T06:59:40Z +5115 2005-07-09T07:07:18Z 2296 212 2005-07-16T03:28:18Z 2 2020-02-15T06:59:40Z +5116 2005-07-09T07:10:12Z 2491 332 2005-07-14T09:16:12Z 2 2020-02-15T06:59:40Z +5117 2005-07-09T07:11:22Z 2284 208 2005-07-15T08:44:22Z 1 2020-02-15T06:59:40Z +5118 2005-07-09T07:13:52Z 957 5 2005-07-18T05:18:52Z 2 2020-02-15T06:59:40Z +5119 2005-07-09T07:14:18Z 2996 301 2005-07-18T04:07:18Z 1 2020-02-15T06:59:40Z +5120 2005-07-09T07:14:23Z 4431 373 2005-07-14T04:00:23Z 2 2020-02-15T06:59:40Z +5121 2005-07-09T07:18:31Z 3321 526 2005-07-15T01:48:31Z 1 2020-02-15T06:59:40Z +5122 2005-07-09T07:19:35Z 1423 261 2005-07-16T03:04:35Z 2 2020-02-15T06:59:40Z +5123 2005-07-09T07:20:30Z 4278 219 2005-07-14T05:24:30Z 1 2020-02-15T06:59:40Z +5124 2005-07-09T07:25:19Z 1857 565 2005-07-15T01:51:19Z 1 2020-02-15T06:59:40Z +5125 2005-07-09T07:25:28Z 990 263 2005-07-12T12:34:28Z 1 2020-02-15T06:59:40Z +5126 2005-07-09T07:25:35Z 3312 315 2005-07-18T05:05:35Z 1 2020-02-15T06:59:40Z +5127 2005-07-09T07:25:47Z 3649 129 2005-07-13T11:44:47Z 2 2020-02-15T06:59:40Z +5128 2005-07-09T07:25:54Z 3757 155 2005-07-16T04:04:54Z 2 2020-02-15T06:59:40Z +5129 2005-07-09T07:28:33Z 4516 441 2005-07-14T05:12:33Z 2 2020-02-15T06:59:40Z +5130 2005-07-09T07:29:45Z 3264 93 2005-07-13T05:56:45Z 1 2020-02-15T06:59:40Z +5131 2005-07-09T07:35:03Z 3179 167 2005-07-10T06:05:03Z 1 2020-02-15T06:59:40Z +5132 2005-07-09T07:40:32Z 4158 101 2005-07-16T02:16:32Z 2 2020-02-15T06:59:40Z +5133 2005-07-09T07:43:22Z 3403 469 2005-07-12T04:52:22Z 1 2020-02-15T06:59:40Z +5134 2005-07-09T07:53:12Z 149 491 2005-07-16T05:30:12Z 1 2020-02-15T06:59:40Z +5135 2005-07-09T07:53:22Z 3005 538 2005-07-16T04:50:22Z 2 2020-02-15T06:59:40Z +5136 2005-07-09T07:55:01Z 3498 395 2005-07-11T05:26:01Z 2 2020-02-15T06:59:40Z +5137 2005-07-09T08:00:34Z 409 126 2005-07-12T05:34:34Z 1 2020-02-15T06:59:40Z +5138 2005-07-09T08:00:46Z 1283 548 2005-07-12T09:31:46Z 2 2020-02-15T06:59:40Z +5139 2005-07-09T08:01:51Z 51 539 2005-07-18T09:16:51Z 2 2020-02-15T06:59:40Z +5140 2005-07-09T08:04:59Z 947 303 2005-07-11T08:28:59Z 2 2020-02-15T06:59:40Z +5141 2005-07-09T08:05:14Z 590 488 2005-07-18T04:36:14Z 1 2020-02-15T06:59:40Z +5142 2005-07-09T08:05:23Z 369 56 2005-07-13T12:37:23Z 2 2020-02-15T06:59:40Z +5143 2005-07-09T08:07:07Z 3803 196 2005-07-18T10:17:07Z 1 2020-02-15T06:59:40Z +5144 2005-07-09T08:09:53Z 3530 89 2005-07-18T07:11:53Z 2 2020-02-15T06:59:40Z +5145 2005-07-09T08:13:25Z 2397 204 2005-07-10T03:56:25Z 2 2020-02-15T06:59:40Z +5146 2005-07-09T08:14:58Z 776 194 2005-07-11T07:04:58Z 1 2020-02-15T06:59:40Z +5147 2005-07-09T08:17:41Z 2270 326 2005-07-18T09:45:41Z 2 2020-02-15T06:59:40Z +5148 2005-07-09T08:22:46Z 456 48 2005-07-18T04:36:46Z 1 2020-02-15T06:59:40Z +5149 2005-07-09T08:28:23Z 1500 330 2005-07-16T06:19:23Z 2 2020-02-15T06:59:40Z +5150 2005-07-09T08:28:40Z 1961 410 2005-07-16T04:47:40Z 1 2020-02-15T06:59:40Z +5151 2005-07-09T08:31:03Z 224 228 2005-07-10T08:18:03Z 2 2020-02-15T06:59:40Z +5152 2005-07-09T08:34:44Z 4005 331 2005-07-10T05:26:44Z 1 2020-02-15T06:59:40Z +5153 2005-07-09T08:35:05Z 2826 504 2005-07-18T14:21:05Z 1 2020-02-15T06:59:40Z +5154 2005-07-09T08:46:18Z 3785 361 2005-07-14T03:19:18Z 1 2020-02-15T06:59:40Z +5155 2005-07-09T08:46:54Z 988 523 2005-07-14T04:13:54Z 1 2020-02-15T06:59:40Z +5156 2005-07-09T08:51:42Z 416 5 2005-07-15T03:59:42Z 2 2020-02-15T06:59:40Z +5157 2005-07-09T08:52:12Z 637 463 2005-07-12T04:32:12Z 2 2020-02-15T06:59:40Z +5158 2005-07-09T08:53:09Z 2825 272 2005-07-10T11:05:09Z 1 2020-02-15T06:59:40Z +5159 2005-07-09T08:55:52Z 3479 213 2005-07-10T04:32:52Z 1 2020-02-15T06:59:40Z +5160 2005-07-09T08:57:07Z 1925 467 2005-07-18T06:01:07Z 1 2020-02-15T06:59:40Z +5161 2005-07-09T08:57:56Z 2617 284 2005-07-18T07:41:56Z 2 2020-02-15T06:59:40Z +5162 2005-07-09T09:00:11Z 2765 43 2005-07-17T07:26:11Z 1 2020-02-15T06:59:40Z +5163 2005-07-09T09:00:28Z 1486 103 2005-07-17T08:07:28Z 2 2020-02-15T06:59:40Z +5164 2005-07-09T09:03:14Z 1170 511 2005-07-14T04:20:14Z 1 2020-02-15T06:59:40Z +5165 2005-07-09T09:08:53Z 280 590 2005-07-14T06:01:53Z 1 2020-02-15T06:59:40Z +5166 2005-07-09T09:15:48Z 2771 298 2005-07-16T06:04:48Z 1 2020-02-15T06:59:40Z +5167 2005-07-09T09:18:43Z 2485 437 2005-07-14T12:59:43Z 2 2020-02-15T06:59:40Z +5168 2005-07-09T09:20:01Z 4096 420 2005-07-11T14:42:01Z 1 2020-02-15T06:59:40Z +5169 2005-07-09T09:22:25Z 2608 116 2005-07-10T03:48:25Z 1 2020-02-15T06:59:40Z +5170 2005-07-09T09:24:19Z 66 209 2005-07-18T04:02:19Z 1 2020-02-15T06:59:40Z +5171 2005-07-09T09:26:55Z 2099 371 2005-07-10T10:34:55Z 1 2020-02-15T06:59:40Z +5172 2005-07-09T09:31:27Z 4046 214 2005-07-13T04:03:27Z 1 2020-02-15T06:59:40Z +5173 2005-07-09T09:31:44Z 2848 490 2005-07-15T04:20:44Z 2 2020-02-15T06:59:40Z +5174 2005-07-09T09:31:59Z 3621 47 2005-07-15T03:49:59Z 1 2020-02-15T06:59:40Z +5175 2005-07-09T09:34:28Z 1003 409 2005-07-15T15:19:28Z 2 2020-02-15T06:59:40Z +5176 2005-07-09T09:39:31Z 328 119 2005-07-17T11:56:31Z 2 2020-02-15T06:59:40Z +5177 2005-07-09T09:43:21Z 1675 452 2005-07-13T07:29:21Z 1 2020-02-15T06:59:40Z +5178 2005-07-09T09:59:52Z 1750 167 2005-07-18T13:01:52Z 2 2020-02-15T06:59:40Z +5179 2005-07-09T10:00:44Z 2995 256 2005-07-11T06:52:44Z 1 2020-02-15T06:59:40Z +5180 2005-07-09T10:06:53Z 3684 494 2005-07-12T15:25:53Z 1 2020-02-15T06:59:40Z +5181 2005-07-09T10:07:27Z 2569 45 2005-07-17T10:18:27Z 2 2020-02-15T06:59:40Z +5182 2005-07-09T10:08:10Z 725 197 2005-07-16T14:36:10Z 2 2020-02-15T06:59:40Z +5183 2005-07-09T10:13:45Z 2866 394 2005-07-16T15:55:45Z 2 2020-02-15T06:59:40Z +5184 2005-07-09T10:14:34Z 1101 166 2005-07-14T16:05:34Z 2 2020-02-15T06:59:40Z +5185 2005-07-09T10:14:39Z 357 53 2005-07-10T13:31:39Z 1 2020-02-15T06:59:40Z +5186 2005-07-09T10:18:40Z 2415 276 2005-07-13T05:05:40Z 2 2020-02-15T06:59:40Z +5187 2005-07-09T10:19:51Z 2631 91 2005-07-14T10:35:51Z 1 2020-02-15T06:59:40Z +5188 2005-07-09T10:22:31Z 3265 34 2005-07-13T04:41:31Z 1 2020-02-15T06:59:40Z +5189 2005-07-09T10:23:21Z 2539 113 2005-07-14T08:06:21Z 1 2020-02-15T06:59:40Z +5190 2005-07-09T10:25:24Z 2213 532 2005-07-18T04:33:24Z 1 2020-02-15T06:59:40Z +5191 2005-07-09T10:26:48Z 2131 167 2005-07-10T15:52:48Z 2 2020-02-15T06:59:40Z +5192 2005-07-09T10:27:09Z 1225 410 2005-07-10T12:04:09Z 1 2020-02-15T06:59:40Z +5193 2005-07-09T10:28:18Z 2166 485 2005-07-12T12:18:18Z 1 2020-02-15T06:59:40Z +5194 2005-07-09T10:31:34Z 3809 202 2005-07-15T08:50:34Z 2 2020-02-15T06:59:40Z +5195 2005-07-09T10:39:31Z 3399 59 2005-07-18T13:54:31Z 1 2020-02-15T06:59:40Z +5196 2005-07-09T10:43:34Z 2278 536 2005-07-13T12:10:34Z 2 2020-02-15T06:59:40Z +5197 2005-07-09T10:43:54Z 1571 541 2005-07-16T10:19:54Z 1 2020-02-15T06:59:40Z +5198 2005-07-09T10:49:10Z 218 101 2005-07-13T04:52:10Z 1 2020-02-15T06:59:40Z +5199 2005-07-09T10:50:56Z 349 42 2005-07-10T06:43:56Z 1 2020-02-15T06:59:40Z +5200 2005-07-09T10:52:09Z 4528 125 2005-07-13T15:12:09Z 1 2020-02-15T06:59:40Z +5201 2005-07-09T10:52:53Z 2453 551 2005-07-16T12:41:53Z 2 2020-02-15T06:59:40Z +5202 2005-07-09T10:53:48Z 3417 321 2005-07-15T13:31:48Z 1 2020-02-15T06:59:40Z +5203 2005-07-09T10:53:59Z 3661 588 2005-07-15T09:45:59Z 2 2020-02-15T06:59:40Z +5204 2005-07-09T10:54:14Z 1791 432 2005-07-12T14:29:14Z 2 2020-02-15T06:59:40Z +5205 2005-07-09T10:56:37Z 161 79 2005-07-13T05:45:37Z 1 2020-02-15T06:59:40Z +5206 2005-07-09T11:11:01Z 692 517 2005-07-17T07:23:01Z 2 2020-02-15T06:59:40Z +5207 2005-07-09T11:15:44Z 3496 59 2005-07-17T06:00:44Z 1 2020-02-15T06:59:40Z +5208 2005-07-09T11:16:56Z 1881 560 2005-07-10T07:21:56Z 2 2020-02-15T06:59:40Z +5209 2005-07-09T11:22:39Z 4441 222 2005-07-17T09:31:39Z 1 2020-02-15T06:59:40Z +5210 2005-07-09T11:24:19Z 4514 355 2005-07-11T06:27:19Z 1 2020-02-15T06:59:40Z +5211 2005-07-09T11:26:50Z 2216 241 2005-07-16T15:30:50Z 1 2020-02-15T06:59:40Z +5212 2005-07-09T11:37:47Z 3240 400 2005-07-15T14:42:47Z 1 2020-02-15T06:59:40Z +5213 2005-07-09T11:39:43Z 3708 552 2005-07-18T16:20:43Z 2 2020-02-15T06:59:40Z +5214 2005-07-09T11:43:08Z 1657 290 2005-07-17T08:58:08Z 2 2020-02-15T06:59:40Z +5215 2005-07-09T11:47:58Z 3888 528 2005-07-18T09:58:58Z 1 2020-02-15T06:59:40Z +5216 2005-07-09T11:54:58Z 1644 515 2005-07-12T09:46:58Z 2 2020-02-15T06:59:40Z +5217 2005-07-09T11:56:50Z 4150 430 2005-07-17T07:10:50Z 1 2020-02-15T06:59:40Z +5218 2005-07-09T11:57:12Z 1121 83 2005-07-13T06:34:12Z 2 2020-02-15T06:59:40Z +5219 2005-07-09T11:57:55Z 3933 209 2005-07-15T09:43:55Z 2 2020-02-15T06:59:40Z +5220 2005-07-09T11:59:04Z 2577 435 2005-07-15T06:20:04Z 1 2020-02-15T06:59:40Z +5221 2005-07-09T12:02:23Z 2339 84 2005-07-16T15:43:23Z 1 2020-02-15T06:59:40Z +5222 2005-07-09T12:05:45Z 2508 400 2005-07-13T12:11:45Z 1 2020-02-15T06:59:40Z +5223 2005-07-09T12:06:03Z 2335 72 2005-07-17T15:50:03Z 1 2020-02-15T06:59:40Z +5224 2005-07-09T12:07:27Z 279 311 2005-07-17T08:59:27Z 1 2020-02-15T06:59:40Z +5225 2005-07-09T12:10:16Z 703 445 2005-07-12T09:55:16Z 2 2020-02-15T06:59:40Z +5226 2005-07-09T12:10:44Z 3128 218 2005-07-11T17:32:44Z 2 2020-02-15T06:59:40Z +5227 2005-07-09T12:16:39Z 1862 362 2005-07-18T15:38:39Z 2 2020-02-15T06:59:40Z +5228 2005-07-09T12:26:01Z 622 195 2005-07-14T13:31:01Z 2 2020-02-15T06:59:40Z +5229 2005-07-09T12:30:18Z 4472 372 2005-07-14T15:31:18Z 2 2020-02-15T06:59:40Z +5230 2005-07-09T12:30:23Z 3707 51 2005-07-13T08:41:23Z 1 2020-02-15T06:59:40Z +5231 2005-07-09T12:35:02Z 1275 405 2005-07-10T09:22:02Z 1 2020-02-15T06:59:40Z +5232 2005-07-09T12:35:08Z 3353 175 2005-07-14T14:55:08Z 1 2020-02-15T06:59:40Z +5233 2005-07-09T12:44:26Z 1401 131 2005-07-15T12:31:26Z 1 2020-02-15T06:59:40Z +5234 2005-07-09T12:44:47Z 4182 398 2005-07-17T10:02:47Z 1 2020-02-15T06:59:40Z +5235 2005-07-09T12:54:25Z 1044 122 2005-07-18T16:28:25Z 1 2020-02-15T06:59:40Z +5236 2005-07-09T12:56:29Z 1215 519 2005-07-13T08:26:29Z 1 2020-02-15T06:59:40Z +5237 2005-07-09T12:56:58Z 2341 84 2005-07-11T15:41:58Z 1 2020-02-15T06:59:40Z +5238 2005-07-09T13:11:14Z 3297 100 2005-07-10T07:27:14Z 2 2020-02-15T06:59:40Z +5239 2005-07-09T13:12:35Z 380 497 2005-07-10T13:37:35Z 1 2020-02-15T06:59:40Z +5240 2005-07-09T13:14:48Z 1378 350 2005-07-10T18:47:48Z 2 2020-02-15T06:59:40Z +5241 2005-07-09T13:19:14Z 4079 314 2005-07-11T14:32:14Z 1 2020-02-15T06:59:40Z +5242 2005-07-09T13:20:25Z 848 12 2005-07-18T07:38:25Z 1 2020-02-15T06:59:40Z +5243 2005-07-09T13:22:08Z 122 587 2005-07-16T09:25:08Z 1 2020-02-15T06:59:40Z +5244 2005-07-09T13:24:07Z 3726 1 2005-07-14T14:01:07Z 2 2020-02-15T06:59:40Z +5245 2005-07-09T13:24:14Z 3547 115 2005-07-12T11:16:14Z 1 2020-02-15T06:59:40Z +5246 2005-07-09T13:25:18Z 3548 276 2005-07-13T18:38:18Z 1 2020-02-15T06:59:40Z +5247 2005-07-09T13:26:28Z 1186 298 2005-07-12T14:00:28Z 2 2020-02-15T06:59:40Z +5248 2005-07-09T13:29:44Z 246 279 2005-07-12T18:12:44Z 1 2020-02-15T06:59:40Z +5249 2005-07-09T13:33:53Z 1950 389 2005-07-11T12:55:53Z 2 2020-02-15T06:59:40Z +5250 2005-07-09T13:35:32Z 2162 384 2005-07-13T12:19:32Z 1 2020-02-15T06:59:40Z +5251 2005-07-09T13:36:10Z 478 474 2005-07-15T11:40:10Z 1 2020-02-15T06:59:40Z +5252 2005-07-09T13:40:44Z 2581 335 2005-07-14T09:41:44Z 1 2020-02-15T06:59:40Z +5253 2005-07-09T13:41:17Z 2241 532 2005-07-17T17:09:17Z 1 2020-02-15T06:59:40Z +5254 2005-07-09T13:50:11Z 654 263 2005-07-13T09:07:11Z 1 2020-02-15T06:59:40Z +5255 2005-07-09T13:51:08Z 4418 313 2005-07-17T13:58:08Z 2 2020-02-15T06:59:40Z +5256 2005-07-09T13:55:45Z 4226 273 2005-07-15T17:02:45Z 1 2020-02-15T06:59:40Z +5257 2005-07-09T13:56:43Z 286 292 2005-07-10T14:26:43Z 2 2020-02-15T06:59:40Z +5258 2005-07-09T13:56:56Z 3125 207 2005-07-11T16:01:56Z 2 2020-02-15T06:59:40Z +5259 2005-07-09T14:02:50Z 1310 207 2005-07-11T19:13:50Z 2 2020-02-15T06:59:40Z +5260 2005-07-09T14:05:45Z 3143 75 2005-07-14T08:41:45Z 2 2020-02-15T06:59:40Z +5261 2005-07-09T14:06:56Z 2899 105 2005-07-11T14:21:56Z 2 2020-02-15T06:59:40Z +5262 2005-07-09T14:08:01Z 1092 240 2005-07-12T16:48:01Z 1 2020-02-15T06:59:40Z +5263 2005-07-09T14:10:36Z 119 406 2005-07-12T15:07:36Z 1 2020-02-15T06:59:40Z +5264 2005-07-09T14:11:28Z 3307 545 2005-07-12T18:24:28Z 2 2020-02-15T06:59:40Z +5265 2005-07-09T14:15:01Z 4482 139 2005-07-18T14:43:01Z 2 2020-02-15T06:59:40Z +5266 2005-07-09T14:17:40Z 2409 222 2005-07-16T10:42:40Z 1 2020-02-15T06:59:40Z +5267 2005-07-09T14:21:10Z 2242 233 2005-07-15T12:02:10Z 1 2020-02-15T06:59:40Z +5268 2005-07-09T14:22:43Z 1083 119 2005-07-12T08:27:43Z 1 2020-02-15T06:59:40Z +5269 2005-07-09T14:23:05Z 3886 230 2005-07-17T14:03:05Z 1 2020-02-15T06:59:40Z +5270 2005-07-09T14:23:46Z 1523 128 2005-07-13T15:04:46Z 1 2020-02-15T06:59:40Z +5271 2005-07-09T14:25:01Z 2691 522 2005-07-16T17:28:01Z 1 2020-02-15T06:59:40Z +5272 2005-07-09T14:26:01Z 1547 90 2005-07-12T20:20:01Z 1 2020-02-15T06:59:40Z +5273 2005-07-09T14:31:24Z 4570 38 2005-07-14T13:27:24Z 2 2020-02-15T06:59:40Z +5274 2005-07-09T14:34:09Z 4579 108 2005-07-14T13:02:09Z 1 2020-02-15T06:59:40Z +5275 2005-07-09T14:34:18Z 729 249 2005-07-13T12:56:18Z 2 2020-02-15T06:59:40Z +5276 2005-07-09T14:35:13Z 2524 521 2005-07-12T14:24:13Z 2 2020-02-15T06:59:40Z +5277 2005-07-09T14:40:42Z 2026 332 2005-07-16T14:18:42Z 2 2020-02-15T06:59:40Z +5278 2005-07-09T14:44:23Z 2573 532 2005-07-15T10:48:23Z 1 2020-02-15T06:59:40Z +5279 2005-07-09T14:46:36Z 709 64 2005-07-17T10:04:36Z 2 2020-02-15T06:59:40Z +5280 2005-07-09T14:55:07Z 1177 351 2005-07-12T10:05:07Z 2 2020-02-15T06:59:40Z +5281 2005-07-09T14:55:07Z 1966 71 2005-07-13T15:24:07Z 2 2020-02-15T06:59:40Z +5282 2005-07-09T15:01:23Z 4386 226 2005-07-13T11:06:23Z 2 2020-02-15T06:59:40Z +5283 2005-07-09T15:07:17Z 644 295 2005-07-17T09:52:17Z 2 2020-02-15T06:59:40Z +5284 2005-07-09T15:08:21Z 1036 585 2005-07-16T09:53:21Z 2 2020-02-15T06:59:40Z +5285 2005-07-09T15:10:44Z 676 468 2005-07-16T13:02:44Z 2 2020-02-15T06:59:40Z +5286 2005-07-09T15:11:41Z 483 498 2005-07-10T19:19:41Z 2 2020-02-15T06:59:40Z +5287 2005-07-09T15:11:54Z 3110 523 2005-07-16T16:05:54Z 2 2020-02-15T06:59:40Z +5288 2005-07-09T15:13:07Z 850 120 2005-07-16T12:39:07Z 1 2020-02-15T06:59:40Z +5289 2005-07-09T15:14:08Z 4336 30 2005-07-12T12:51:08Z 2 2020-02-15T06:59:40Z +5290 2005-07-09T15:14:47Z 277 50 2005-07-11T20:30:47Z 2 2020-02-15T06:59:40Z +5291 2005-07-09T15:15:02Z 1367 194 2005-07-15T10:22:02Z 2 2020-02-15T06:59:40Z +5292 2005-07-09T15:16:54Z 3195 62 2005-07-11T15:21:54Z 1 2020-02-15T06:59:40Z +5293 2005-07-09T15:17:23Z 2880 542 2005-07-11T11:23:23Z 2 2020-02-15T06:59:40Z +5294 2005-07-09T15:23:42Z 3237 22 2005-07-15T15:28:42Z 2 2020-02-15T06:59:40Z +5295 2005-07-09T15:25:06Z 4460 86 2005-07-10T12:40:06Z 1 2020-02-15T06:59:40Z +5296 2005-07-09T15:26:27Z 495 109 2005-07-15T10:03:27Z 2 2020-02-15T06:59:40Z +5297 2005-07-09T15:32:29Z 3434 202 2005-07-14T14:58:29Z 1 2020-02-15T06:59:40Z +5298 2005-07-09T15:36:17Z 3491 149 2005-07-18T19:07:17Z 2 2020-02-15T06:59:40Z +5299 2005-07-09T15:38:09Z 4416 469 2005-07-15T16:39:09Z 2 2020-02-15T06:59:40Z +5300 2005-07-09T15:40:46Z 2520 8 2005-07-15T13:46:46Z 1 2020-02-15T06:59:40Z +5301 2005-07-09T15:42:10Z 245 459 2005-07-16T21:27:10Z 2 2020-02-15T06:59:40Z +5302 2005-07-09T15:42:36Z 4270 72 2005-07-10T21:04:36Z 2 2020-02-15T06:59:40Z +5303 2005-07-09T15:44:09Z 3572 350 2005-07-15T18:09:09Z 2 2020-02-15T06:59:40Z +5304 2005-07-09T15:48:06Z 4411 51 2005-07-14T19:29:06Z 1 2020-02-15T06:59:40Z +5305 2005-07-09T15:55:36Z 625 309 2005-07-18T15:59:36Z 1 2020-02-15T06:59:40Z +5306 2005-07-09T15:56:45Z 2221 409 2005-07-15T19:02:45Z 2 2020-02-15T06:59:40Z +5307 2005-07-09T15:57:15Z 2847 32 2005-07-17T13:42:15Z 2 2020-02-15T06:59:40Z +5308 2005-07-09T15:58:38Z 1684 52 2005-07-15T13:55:38Z 2 2020-02-15T06:59:40Z +5309 2005-07-09T16:00:16Z 4026 338 2005-07-17T17:56:16Z 1 2020-02-15T06:59:40Z +5310 2005-07-09T16:00:34Z 1565 24 2005-07-12T12:45:34Z 2 2020-02-15T06:59:40Z +5311 2005-07-09T16:02:54Z 986 107 2005-07-18T10:44:54Z 1 2020-02-15T06:59:40Z +5312 2005-07-09T16:03:09Z 2123 258 2005-07-13T16:41:09Z 2 2020-02-15T06:59:40Z +5313 2005-07-09T16:04:45Z 1885 52 2005-07-17T18:53:45Z 2 2020-02-15T06:59:40Z +5314 2005-07-09T16:05:28Z 3770 372 2005-07-10T18:18:28Z 1 2020-02-15T06:59:40Z +5315 2005-07-09T16:09:19Z 585 134 2005-07-14T21:10:19Z 1 2020-02-15T06:59:40Z +5316 2005-07-09T16:09:42Z 3856 438 2005-07-11T15:20:42Z 1 2020-02-15T06:59:40Z +5317 2005-07-09T16:10:25Z 2693 14 2005-07-18T17:10:25Z 2 2020-02-15T06:59:40Z +5318 2005-07-09T16:11:33Z 1738 472 2005-07-14T12:49:33Z 2 2020-02-15T06:59:40Z +5319 2005-07-09T16:17:44Z 1899 282 2005-07-18T16:35:44Z 1 2020-02-15T06:59:40Z +5320 2005-07-09T16:23:32Z 3140 228 2005-07-18T18:16:32Z 1 2020-02-15T06:59:40Z +5321 2005-07-09T16:26:33Z 3347 245 2005-07-15T15:05:33Z 2 2020-02-15T06:59:40Z +5322 2005-07-09T16:28:13Z 4420 432 2005-07-18T14:53:13Z 1 2020-02-15T06:59:40Z +5323 2005-07-09T16:34:07Z 1302 35 2005-07-13T21:37:07Z 1 2020-02-15T06:59:40Z +5324 2005-07-09T16:34:18Z 4024 113 2005-07-15T12:35:18Z 2 2020-02-15T06:59:40Z +5325 2005-07-09T16:35:47Z 2703 492 2005-07-10T11:52:47Z 1 2020-02-15T06:59:40Z +5326 2005-07-09T16:38:01Z 797 1 2005-07-13T18:02:01Z 1 2020-02-15T06:59:40Z +5327 2005-07-09T16:39:49Z 3657 547 2005-07-12T18:47:49Z 2 2020-02-15T06:59:40Z +5328 2005-07-09T16:48:29Z 2444 247 2005-07-17T20:20:29Z 2 2020-02-15T06:59:40Z +5329 2005-07-09T16:49:46Z 1628 402 2005-07-16T19:05:46Z 1 2020-02-15T06:59:40Z +5330 2005-07-09T16:53:57Z 3812 410 2005-07-18T19:54:57Z 1 2020-02-15T06:59:40Z +5331 2005-07-09T16:54:06Z 4181 447 2005-07-10T19:04:06Z 1 2020-02-15T06:59:40Z +5332 2005-07-09T16:59:23Z 3269 568 2005-07-10T16:01:23Z 2 2020-02-15T06:59:40Z +5333 2005-07-09T16:59:38Z 2142 419 2005-07-16T17:23:38Z 2 2020-02-15T06:59:40Z +5334 2005-07-09T17:00:13Z 3852 482 2005-07-11T15:50:13Z 1 2020-02-15T06:59:40Z +5335 2005-07-09T17:00:49Z 2353 588 2005-07-12T12:21:49Z 2 2020-02-15T06:59:40Z +5336 2005-07-09T17:01:08Z 4144 410 2005-07-11T19:22:08Z 2 2020-02-15T06:59:40Z +5337 2005-07-09T17:03:50Z 4168 343 2005-07-16T22:25:50Z 2 2020-02-15T06:59:40Z +5338 2005-07-09T17:07:07Z 3449 191 2005-07-14T11:15:07Z 1 2020-02-15T06:59:40Z +5339 2005-07-09T17:09:17Z 698 380 2005-07-10T21:07:17Z 2 2020-02-15T06:59:40Z +5340 2005-07-09T17:11:35Z 650 267 2005-07-17T17:59:35Z 2 2020-02-15T06:59:40Z +5341 2005-07-09T17:13:23Z 2522 8 2005-07-14T18:11:23Z 2 2020-02-15T06:59:40Z +5342 2005-07-09T17:20:03Z 3828 289 2005-07-18T12:44:03Z 2 2020-02-15T06:59:40Z +5343 2005-07-09T17:23:43Z 92 485 2005-07-18T22:14:43Z 1 2020-02-15T06:59:40Z +5344 2005-07-09T17:27:05Z 159 197 2005-07-10T15:51:05Z 2 2020-02-15T06:59:40Z +5345 2005-07-09T17:28:18Z 3055 348 2005-07-11T14:30:18Z 2 2020-02-15T06:59:40Z +5346 2005-07-09T17:29:01Z 2488 287 2005-07-14T12:47:01Z 2 2020-02-15T06:59:40Z +5347 2005-07-09T17:31:32Z 1293 246 2005-07-10T21:06:32Z 2 2020-02-15T06:59:40Z +5348 2005-07-09T17:34:11Z 3495 597 2005-07-15T18:32:11Z 2 2020-02-15T06:59:40Z +5349 2005-07-09T17:35:35Z 3139 161 2005-07-18T14:05:35Z 1 2020-02-15T06:59:40Z +5350 2005-07-09T17:39:30Z 724 129 2005-07-11T16:43:30Z 2 2020-02-15T06:59:40Z +5351 2005-07-09T17:40:52Z 3722 112 2005-07-14T16:55:52Z 2 2020-02-15T06:59:40Z +5352 2005-07-09T17:54:58Z 908 372 2005-07-15T16:20:58Z 1 2020-02-15T06:59:40Z +5353 2005-07-09T18:04:29Z 2994 196 2005-07-15T17:46:29Z 2 2020-02-15T06:59:40Z +5354 2005-07-09T18:04:33Z 951 354 2005-07-15T18:19:33Z 1 2020-02-15T06:59:40Z +5355 2005-07-09T18:07:17Z 2458 100 2005-07-16T20:33:17Z 2 2020-02-15T06:59:40Z +5356 2005-07-09T18:08:28Z 2905 188 2005-07-14T14:11:28Z 2 2020-02-15T06:59:40Z +5357 2005-07-09T18:08:59Z 1988 411 2005-07-16T17:28:59Z 2 2020-02-15T06:59:40Z +5358 2005-07-09T18:09:21Z 3764 71 2005-07-14T23:59:21Z 2 2020-02-15T06:59:40Z +5359 2005-07-09T18:10:52Z 4392 453 2005-07-18T13:34:52Z 2 2020-02-15T06:59:40Z +5360 2005-07-09T18:14:03Z 679 562 2005-07-10T15:17:03Z 2 2020-02-15T06:59:40Z +5361 2005-07-09T18:15:32Z 2045 279 2005-07-17T23:32:32Z 2 2020-02-15T06:59:40Z +5362 2005-07-09T18:16:08Z 24 266 2005-07-18T18:27:08Z 1 2020-02-15T06:59:40Z +5363 2005-07-09T18:18:49Z 2180 425 2005-07-14T22:16:49Z 1 2020-02-15T06:59:40Z +5364 2005-07-09T18:24:48Z 2746 366 2005-07-10T12:30:48Z 1 2020-02-15T06:59:40Z +5365 2005-07-09T18:27:00Z 4469 527 2005-07-11T14:18:00Z 1 2020-02-15T06:59:40Z +5366 2005-07-09T18:28:37Z 886 187 2005-07-13T20:45:37Z 1 2020-02-15T06:59:40Z +5367 2005-07-09T18:39:15Z 1446 485 2005-07-16T14:19:15Z 2 2020-02-15T06:59:40Z +5368 2005-07-09T18:41:59Z 4429 502 2005-07-16T00:32:59Z 2 2020-02-15T06:59:40Z +5369 2005-07-09T18:42:16Z 1550 538 2005-07-12T18:16:16Z 2 2020-02-15T06:59:40Z +5370 2005-07-09T18:43:19Z 2193 248 2005-07-15T19:59:19Z 1 2020-02-15T06:59:40Z +5371 2005-07-09T18:47:48Z 789 425 2005-07-14T14:39:48Z 2 2020-02-15T06:59:40Z +5372 2005-07-09T18:48:39Z 3551 148 2005-07-11T17:40:39Z 1 2020-02-15T06:59:40Z +5373 2005-07-09T18:48:57Z 950 428 2005-07-10T16:34:57Z 1 2020-02-15T06:59:40Z +5374 2005-07-09T18:52:08Z 946 144 2005-07-16T16:34:08Z 1 2020-02-15T06:59:40Z +5375 2005-07-09T18:52:55Z 1407 558 2005-07-16T15:32:55Z 2 2020-02-15T06:59:40Z +5376 2005-07-09T18:54:08Z 1730 104 2005-07-17T22:01:08Z 1 2020-02-15T06:59:40Z +5377 2005-07-09T19:04:30Z 3118 578 2005-07-11T14:42:30Z 1 2020-02-15T06:59:40Z +5378 2005-07-09T19:05:56Z 1570 138 2005-07-10T18:03:56Z 2 2020-02-15T06:59:40Z +5379 2005-07-09T19:08:03Z 2110 475 2005-07-10T17:58:03Z 1 2020-02-15T06:59:40Z +5380 2005-07-09T19:08:44Z 3047 166 2005-07-11T20:09:44Z 1 2020-02-15T06:59:40Z +5381 2005-07-09T19:11:11Z 3033 332 2005-07-13T17:10:11Z 2 2020-02-15T06:59:40Z +5382 2005-07-09T19:12:57Z 78 586 2005-07-14T15:44:57Z 1 2020-02-15T06:59:40Z +5383 2005-07-09T19:14:32Z 573 14 2005-07-11T19:57:32Z 1 2020-02-15T06:59:40Z +5384 2005-07-09T19:17:46Z 1729 180 2005-07-12T13:50:46Z 1 2020-02-15T06:59:40Z +5385 2005-07-09T19:18:11Z 4291 112 2005-07-16T18:50:11Z 2 2020-02-15T06:59:40Z +5386 2005-07-09T19:19:09Z 721 594 2005-07-13T00:13:09Z 2 2020-02-15T06:59:40Z +5387 2005-07-09T19:25:14Z 4452 244 2005-07-11T21:00:14Z 1 2020-02-15T06:59:40Z +5388 2005-07-09T19:25:25Z 1546 332 2005-07-14T19:51:25Z 2 2020-02-15T06:59:40Z +5389 2005-07-09T19:25:45Z 3882 484 2005-07-17T13:31:45Z 1 2020-02-15T06:59:40Z +5390 2005-07-09T19:26:22Z 715 139 2005-07-14T22:46:22Z 1 2020-02-15T06:59:40Z +5391 2005-07-09T19:28:34Z 402 132 2005-07-18T01:07:34Z 1 2020-02-15T06:59:40Z +5392 2005-07-09T19:32:30Z 2552 499 2005-07-16T15:01:30Z 1 2020-02-15T06:59:40Z +5393 2005-07-09T19:35:12Z 1417 446 2005-07-11T14:00:12Z 1 2020-02-15T06:59:40Z +5394 2005-07-09T19:36:15Z 1828 83 2005-07-18T18:10:15Z 2 2020-02-15T06:59:40Z +5395 2005-07-09T19:42:37Z 4428 131 2005-07-10T15:39:37Z 1 2020-02-15T06:59:40Z +5396 2005-07-09T19:42:52Z 3795 559 2005-07-15T21:45:52Z 1 2020-02-15T06:59:40Z +5397 2005-07-09T19:43:51Z 4376 191 2005-07-17T00:11:51Z 1 2020-02-15T06:59:40Z +5398 2005-07-09T19:44:58Z 4352 199 2005-07-17T00:56:58Z 1 2020-02-15T06:59:40Z +5399 2005-07-09T19:52:44Z 261 67 2005-07-10T18:31:44Z 2 2020-02-15T06:59:40Z +5400 2005-07-09T19:56:40Z 3435 192 2005-07-14T20:43:40Z 2 2020-02-15T06:59:40Z +5401 2005-07-09T19:59:10Z 431 43 2005-07-11T23:21:10Z 2 2020-02-15T06:59:40Z +5402 2005-07-09T20:01:58Z 4450 379 2005-07-10T14:07:58Z 1 2020-02-15T06:59:40Z +5403 2005-07-09T20:07:09Z 3991 36 2005-07-12T18:33:09Z 1 2020-02-15T06:59:40Z +5404 2005-07-09T20:10:43Z 3685 236 2005-07-13T15:16:43Z 1 2020-02-15T06:59:40Z +5405 2005-07-09T20:11:49Z 799 45 2005-07-18T18:37:49Z 2 2020-02-15T06:59:40Z +5406 2005-07-09T20:13:23Z 1322 563 2005-07-11T22:05:23Z 2 2020-02-15T06:59:40Z +5407 2005-07-09T20:16:07Z 3641 475 2005-07-14T21:41:07Z 2 2020-02-15T06:59:40Z +5408 2005-07-09T20:16:51Z 3162 144 2005-07-18T22:19:51Z 1 2020-02-15T06:59:40Z +5409 2005-07-09T20:17:19Z 3538 446 2005-07-13T23:30:19Z 1 2020-02-15T06:59:40Z +5410 2005-07-09T20:21:10Z 2261 281 2005-07-18T21:43:10Z 2 2020-02-15T06:59:40Z +5411 2005-07-09T20:23:38Z 4292 304 2005-07-16T01:17:38Z 2 2020-02-15T06:59:40Z +5412 2005-07-09T20:23:52Z 3174 458 2005-07-18T18:40:52Z 1 2020-02-15T06:59:40Z +5413 2005-07-09T20:28:42Z 2056 167 2005-07-10T19:23:42Z 2 2020-02-15T06:59:40Z +5414 2005-07-09T20:29:36Z 1201 174 2005-07-13T01:55:36Z 2 2020-02-15T06:59:40Z +5415 2005-07-09T20:30:03Z 4413 475 2005-07-18T00:20:03Z 1 2020-02-15T06:59:40Z +5416 2005-07-09T20:33:50Z 568 219 2005-07-14T01:50:50Z 2 2020-02-15T06:59:40Z +5417 2005-07-09T20:34:09Z 3569 265 2005-07-14T00:36:09Z 2 2020-02-15T06:59:40Z +5418 2005-07-09T20:41:35Z 55 114 2005-07-14T00:15:35Z 1 2020-02-15T06:59:40Z +5419 2005-07-09T20:47:36Z 1516 226 2005-07-12T01:36:36Z 1 2020-02-15T06:59:40Z +5420 2005-07-09T20:48:42Z 1739 80 2005-07-15T21:35:42Z 2 2020-02-15T06:59:40Z +5421 2005-07-09T20:49:12Z 2437 33 2005-07-10T16:30:12Z 1 2020-02-15T06:59:40Z +5422 2005-07-09T20:55:47Z 436 409 2005-07-15T15:15:47Z 2 2020-02-15T06:59:40Z +5423 2005-07-09T20:56:48Z 1952 440 2005-07-17T14:58:48Z 2 2020-02-15T06:59:40Z +5424 2005-07-09T20:59:09Z 3694 72 2005-07-12T00:05:09Z 2 2020-02-15T06:59:40Z +5425 2005-07-09T21:02:26Z 531 37 2005-07-16T23:38:26Z 2 2020-02-15T06:59:40Z +5426 2005-07-09T21:04:47Z 251 438 2005-07-17T00:55:47Z 1 2020-02-15T06:59:40Z +5427 2005-07-09T21:12:26Z 3197 499 2005-07-14T01:02:26Z 1 2020-02-15T06:59:40Z +5428 2005-07-09T21:12:50Z 3109 346 2005-07-14T16:25:50Z 2 2020-02-15T06:59:40Z +5429 2005-07-09T21:14:03Z 2467 105 2005-07-18T01:33:03Z 1 2020-02-15T06:59:40Z +5430 2005-07-09T21:19:54Z 1441 173 2005-07-15T22:53:54Z 1 2020-02-15T06:59:40Z +5431 2005-07-09T21:21:11Z 2780 213 2005-07-10T21:16:11Z 1 2020-02-15T06:59:40Z +5432 2005-07-09T21:21:25Z 1958 64 2005-07-14T21:34:25Z 2 2020-02-15T06:59:40Z +5433 2005-07-09T21:22:00Z 2679 349 2005-07-10T21:18:00Z 2 2020-02-15T06:59:40Z +5434 2005-07-09T21:25:20Z 3790 334 2005-07-15T03:12:20Z 2 2020-02-15T06:59:40Z +5435 2005-07-09T21:28:07Z 2884 273 2005-07-18T21:16:07Z 2 2020-02-15T06:59:40Z +5436 2005-07-09T21:31:11Z 2364 89 2005-07-13T16:59:11Z 2 2020-02-15T06:59:40Z +5437 2005-07-09T21:32:29Z 3532 26 2005-07-15T00:27:29Z 2 2020-02-15T06:59:40Z +5438 2005-07-09T21:34:32Z 487 241 2005-07-16T02:21:32Z 2 2020-02-15T06:59:40Z +5439 2005-07-09T21:39:35Z 1993 58 2005-07-13T17:45:35Z 2 2020-02-15T06:59:40Z +5440 2005-07-09T21:45:17Z 138 332 2005-07-11T22:43:17Z 2 2020-02-15T06:59:40Z +5441 2005-07-09T21:52:05Z 3913 7 2005-07-17T02:54:05Z 1 2020-02-15T06:59:40Z +5442 2005-07-09T21:55:19Z 3093 29 2005-07-19T01:18:19Z 2 2020-02-15T06:59:40Z +5443 2005-07-09T21:56:09Z 2951 137 2005-07-16T00:33:09Z 2 2020-02-15T06:59:40Z +5444 2005-07-09T21:58:57Z 2968 10 2005-07-11T03:09:57Z 2 2020-02-15T06:59:40Z +5445 2005-07-09T21:59:41Z 565 578 2005-07-15T00:40:41Z 1 2020-02-15T06:59:40Z +5446 2005-07-09T21:59:55Z 2769 454 2005-07-11T01:45:55Z 2 2020-02-15T06:59:40Z +5447 2005-07-09T22:09:28Z 2530 473 2005-07-18T20:03:28Z 2 2020-02-15T06:59:40Z +5448 2005-07-09T22:11:14Z 646 463 2005-07-15T21:08:14Z 2 2020-02-15T06:59:40Z +5449 2005-07-09T22:12:01Z 921 261 2005-07-18T01:18:01Z 2 2020-02-15T06:59:40Z +5450 2005-07-09T22:13:25Z 2356 328 2005-07-13T23:28:25Z 1 2020-02-15T06:59:40Z +5451 2005-07-09T22:22:10Z 3484 39 2005-07-11T02:43:10Z 1 2020-02-15T06:59:40Z +5452 2005-07-09T22:23:21Z 2036 80 2005-07-17T00:20:21Z 1 2020-02-15T06:59:40Z +5453 2005-07-09T22:24:11Z 1780 106 2005-07-19T04:08:11Z 1 2020-02-15T06:59:40Z +5454 2005-07-09T22:24:25Z 3049 97 2005-07-11T01:52:25Z 1 2020-02-15T06:59:40Z +5455 2005-07-09T22:28:45Z 1955 464 2005-07-18T02:50:45Z 2 2020-02-15T06:59:40Z +5456 2005-07-09T22:31:45Z 3003 360 2005-07-12T03:53:45Z 1 2020-02-15T06:59:40Z +5457 2005-07-09T22:33:14Z 4179 433 2005-07-12T02:30:14Z 1 2020-02-15T06:59:40Z +5458 2005-07-09T22:35:49Z 2203 521 2005-07-16T22:55:49Z 1 2020-02-15T06:59:40Z +5459 2005-07-09T22:43:56Z 1847 168 2005-07-12T18:05:56Z 1 2020-02-15T06:59:40Z +5460 2005-07-09T22:46:14Z 2410 38 2005-07-12T21:26:14Z 2 2020-02-15T06:59:40Z +5461 2005-07-09T22:48:04Z 53 244 2005-07-10T17:56:04Z 2 2020-02-15T06:59:40Z +5462 2005-07-09T22:56:53Z 871 583 2005-07-11T21:50:53Z 2 2020-02-15T06:59:40Z +5463 2005-07-09T22:57:02Z 601 374 2005-07-11T03:10:02Z 1 2020-02-15T06:59:40Z +5464 2005-07-09T22:58:14Z 3692 434 2005-07-15T02:48:14Z 1 2020-02-15T06:59:40Z +5465 2005-07-09T23:01:13Z 723 503 2005-07-13T01:03:13Z 1 2020-02-15T06:59:40Z +5466 2005-07-09T23:03:21Z 2302 482 2005-07-10T20:11:21Z 2 2020-02-15T06:59:40Z +5467 2005-07-09T23:05:47Z 374 543 2005-07-16T17:06:47Z 2 2020-02-15T06:59:40Z +5468 2005-07-09T23:06:09Z 2196 81 2005-07-13T00:48:09Z 1 2020-02-15T06:59:40Z +5469 2005-07-09T23:08:07Z 2201 475 2005-07-13T19:13:07Z 1 2020-02-15T06:59:40Z +5470 2005-07-09T23:10:49Z 3254 325 2005-07-18T04:30:49Z 1 2020-02-15T06:59:40Z +5471 2005-07-09T23:11:52Z 4086 347 2005-07-13T02:08:52Z 2 2020-02-15T06:59:40Z +5472 2005-07-09T23:16:40Z 865 165 2005-07-10T18:43:40Z 2 2020-02-15T06:59:40Z +5473 2005-07-09T23:19:11Z 4283 51 2005-07-19T02:30:11Z 2 2020-02-15T06:59:40Z +5474 2005-07-09T23:23:57Z 3608 375 2005-07-15T03:11:57Z 1 2020-02-15T06:59:40Z +5475 2005-07-09T23:31:38Z 726 219 2005-07-12T03:51:38Z 1 2020-02-15T06:59:40Z +5476 2005-07-09T23:37:09Z 1199 427 2005-07-15T23:57:09Z 1 2020-02-15T06:59:40Z +5477 2005-07-09T23:43:49Z 994 542 2005-07-15T05:03:49Z 2 2020-02-15T06:59:40Z +5478 2005-07-09T23:45:15Z 3213 583 2005-07-15T22:48:15Z 1 2020-02-15T06:59:40Z +5479 2005-07-09T23:47:33Z 216 250 2005-07-13T01:09:33Z 1 2020-02-15T06:59:40Z +5480 2005-07-09T23:49:07Z 847 452 2005-07-12T00:15:07Z 1 2020-02-15T06:59:40Z +5481 2005-07-09T23:51:57Z 562 479 2005-07-11T05:28:57Z 2 2020-02-15T06:59:40Z +5482 2005-07-09T23:53:04Z 2136 460 2005-07-15T04:59:04Z 1 2020-02-15T06:59:40Z +5483 2005-07-09T23:54:09Z 4362 89 2005-07-17T23:36:09Z 1 2020-02-15T06:59:40Z +5484 2005-07-09T23:54:37Z 3248 495 2005-07-15T02:05:37Z 1 2020-02-15T06:59:40Z +5485 2005-07-09T23:55:25Z 3930 173 2005-07-14T04:08:25Z 1 2020-02-15T06:59:40Z +5486 2005-07-09T23:57:44Z 2864 538 2005-07-14T00:23:44Z 1 2020-02-15T06:59:40Z +5487 2005-07-10T00:01:50Z 1144 341 2005-07-10T20:43:50Z 1 2020-02-15T06:59:40Z +5488 2005-07-10T00:02:06Z 4262 173 2005-07-15T01:45:06Z 2 2020-02-15T06:59:40Z +5489 2005-07-10T00:07:03Z 2319 490 2005-07-15T19:52:03Z 1 2020-02-15T06:59:40Z +5490 2005-07-10T00:09:11Z 3044 367 2005-07-14T21:23:11Z 1 2020-02-15T06:59:40Z +5491 2005-07-10T00:09:45Z 2007 49 2005-07-11T02:25:45Z 1 2020-02-15T06:59:40Z +5492 2005-07-10T00:11:09Z 4524 558 2005-07-14T01:27:09Z 1 2020-02-15T06:59:40Z +5493 2005-07-10T00:11:44Z 2037 539 2005-07-15T19:24:44Z 2 2020-02-15T06:59:40Z +5494 2005-07-10T00:15:00Z 3087 139 2005-07-17T01:12:00Z 2 2020-02-15T06:59:40Z +5495 2005-07-10T00:16:54Z 2199 257 2005-07-19T01:22:54Z 2 2020-02-15T06:59:40Z +5496 2005-07-10T00:20:23Z 3182 369 2005-07-18T21:10:23Z 2 2020-02-15T06:59:40Z +5497 2005-07-10T00:23:23Z 4473 92 2005-07-16T03:54:23Z 1 2020-02-15T06:59:40Z +5498 2005-07-10T00:27:21Z 63 302 2005-07-13T20:11:21Z 2 2020-02-15T06:59:40Z +5499 2005-07-10T00:27:45Z 1525 127 2005-07-17T06:11:45Z 1 2020-02-15T06:59:40Z +5500 2005-07-10T00:28:17Z 3380 457 2005-07-15T19:09:17Z 1 2020-02-15T06:59:40Z +5501 2005-07-10T00:33:48Z 3979 372 2005-07-17T02:58:48Z 1 2020-02-15T06:59:40Z +5502 2005-07-10T00:34:15Z 3712 243 2005-07-11T21:44:15Z 1 2020-02-15T06:59:40Z +5503 2005-07-10T00:35:37Z 3892 262 2005-07-12T20:29:37Z 1 2020-02-15T06:59:40Z +5504 2005-07-10T00:36:38Z 3053 455 2005-07-16T19:36:38Z 1 2020-02-15T06:59:40Z +5505 2005-07-10T00:38:48Z 896 253 2005-07-12T03:12:48Z 2 2020-02-15T06:59:40Z +5506 2005-07-10T00:45:48Z 2432 117 2005-07-18T20:35:48Z 2 2020-02-15T06:59:40Z +5507 2005-07-10T00:49:04Z 716 399 2005-07-15T22:06:04Z 2 2020-02-15T06:59:40Z +5508 2005-07-10T00:50:01Z 2977 345 2005-07-16T19:07:01Z 1 2020-02-15T06:59:40Z +5509 2005-07-10T00:54:46Z 1142 102 2005-07-16T05:10:46Z 1 2020-02-15T06:59:40Z +5510 2005-07-10T00:58:37Z 1298 67 2005-07-17T22:02:37Z 2 2020-02-15T06:59:40Z +5511 2005-07-10T01:00:00Z 3678 301 2005-07-12T20:44:00Z 1 2020-02-15T06:59:40Z +5512 2005-07-10T01:05:38Z 4470 405 2005-07-17T20:47:38Z 1 2020-02-15T06:59:40Z +5513 2005-07-10T01:05:41Z 2558 356 2005-07-11T02:05:41Z 2 2020-02-15T06:59:40Z +5514 2005-07-10T01:09:42Z 1824 522 2005-07-17T05:47:42Z 1 2020-02-15T06:59:40Z +5515 2005-07-10T01:12:44Z 3772 39 2005-07-13T00:39:44Z 1 2020-02-15T06:59:40Z +5516 2005-07-10T01:13:52Z 1902 581 2005-07-15T22:56:52Z 1 2020-02-15T06:59:40Z +5517 2005-07-10T01:15:00Z 3689 42 2005-07-19T01:59:00Z 1 2020-02-15T06:59:40Z +5518 2005-07-10T01:15:11Z 3340 451 2005-07-18T19:28:11Z 2 2020-02-15T06:59:40Z +5519 2005-07-10T01:18:32Z 1312 85 2005-07-11T20:39:32Z 1 2020-02-15T06:59:40Z +5520 2005-07-10T01:30:41Z 2527 501 2005-07-15T21:37:41Z 2 2020-02-15T06:59:40Z +5521 2005-07-10T01:31:22Z 1956 182 2005-07-17T05:42:22Z 2 2020-02-15T06:59:40Z +5522 2005-07-10T01:46:29Z 2622 573 2005-07-18T00:41:29Z 2 2020-02-15T06:59:40Z +5523 2005-07-10T01:47:55Z 2233 125 2005-07-18T22:25:55Z 1 2020-02-15T06:59:40Z +5524 2005-07-10T01:49:24Z 3596 386 2005-07-14T22:55:24Z 1 2020-02-15T06:59:40Z +5525 2005-07-10T02:03:08Z 3141 241 2005-07-18T07:32:08Z 1 2020-02-15T06:59:40Z +5526 2005-07-10T02:04:03Z 3909 144 2005-07-16T22:15:03Z 2 2020-02-15T06:59:40Z +5527 2005-07-10T02:06:01Z 4462 554 2005-07-15T00:55:01Z 2 2020-02-15T06:59:40Z +5528 2005-07-10T02:09:21Z 680 551 2005-07-17T06:22:21Z 2 2020-02-15T06:59:40Z +5529 2005-07-10T02:11:13Z 1652 590 2005-07-15T06:56:13Z 2 2020-02-15T06:59:40Z +5530 2005-07-10T02:13:49Z 2701 74 2005-07-18T08:01:49Z 2 2020-02-15T06:59:40Z +5531 2005-07-10T02:13:59Z 2992 173 2005-07-15T00:01:59Z 2 2020-02-15T06:59:40Z +5532 2005-07-10T02:17:31Z 983 522 2005-07-16T02:57:31Z 2 2020-02-15T06:59:40Z +5533 2005-07-10T02:19:28Z 2567 270 2005-07-11T01:37:28Z 1 2020-02-15T06:59:40Z +5534 2005-07-10T02:26:49Z 3251 156 2005-07-11T07:13:49Z 1 2020-02-15T06:59:40Z +5535 2005-07-10T02:27:42Z 1623 394 2005-07-12T21:13:42Z 1 2020-02-15T06:59:40Z +5536 2005-07-10T02:29:42Z 1919 195 2005-07-13T04:06:42Z 2 2020-02-15T06:59:40Z +5537 2005-07-10T02:35:41Z 1781 254 2005-07-13T07:11:41Z 2 2020-02-15T06:59:40Z +5538 2005-07-10T02:39:40Z 2119 367 2005-07-12T01:39:40Z 2 2020-02-15T06:59:40Z +5539 2005-07-10T02:42:58Z 3217 90 2005-07-16T02:27:58Z 2 2020-02-15T06:59:40Z +5540 2005-07-10T02:44:21Z 132 250 2005-07-11T07:13:21Z 1 2020-02-15T06:59:40Z +5541 2005-07-10T02:44:27Z 1211 135 2005-07-13T04:13:27Z 2 2020-02-15T06:59:40Z +5542 2005-07-10T02:45:53Z 1713 105 2005-07-15T23:23:53Z 2 2020-02-15T06:59:40Z +5543 2005-07-10T02:48:03Z 1496 71 2005-07-17T05:49:03Z 2 2020-02-15T06:59:40Z +5544 2005-07-10T02:48:07Z 1014 316 2005-07-17T01:08:07Z 1 2020-02-15T06:59:40Z +5545 2005-07-10T02:50:29Z 118 236 2005-07-16T02:11:29Z 1 2020-02-15T06:59:40Z +5546 2005-07-10T02:50:37Z 2918 515 2005-07-16T08:22:37Z 1 2020-02-15T06:59:40Z +5547 2005-07-10T02:52:47Z 1432 519 2005-07-16T02:10:47Z 1 2020-02-15T06:59:40Z +5548 2005-07-10T02:56:45Z 2973 317 2005-07-13T01:33:45Z 2 2020-02-15T06:59:40Z +5549 2005-07-10T02:58:29Z 2685 163 2005-07-17T05:24:29Z 2 2020-02-15T06:59:40Z +5550 2005-07-10T02:58:35Z 1905 254 2005-07-16T02:38:35Z 2 2020-02-15T06:59:40Z +5551 2005-07-10T03:01:09Z 4238 44 2005-07-18T02:04:09Z 2 2020-02-15T06:59:40Z +5552 2005-07-10T03:01:19Z 2879 27 2005-07-13T06:53:19Z 2 2020-02-15T06:59:40Z +5553 2005-07-10T03:03:35Z 1686 6 2005-07-14T07:49:35Z 2 2020-02-15T06:59:40Z +5554 2005-07-10T03:03:38Z 4084 252 2005-07-17T00:00:38Z 2 2020-02-15T06:59:40Z +5555 2005-07-10T03:08:55Z 2551 79 2005-07-11T01:36:55Z 2 2020-02-15T06:59:40Z +5556 2005-07-10T03:10:17Z 4483 354 2005-07-14T02:47:17Z 1 2020-02-15T06:59:40Z +5557 2005-07-10T03:10:21Z 1433 346 2005-07-11T21:34:21Z 1 2020-02-15T06:59:40Z +5558 2005-07-10T03:12:08Z 1123 96 2005-07-14T03:09:08Z 2 2020-02-15T06:59:40Z +5559 2005-07-10T03:13:07Z 4122 496 2005-07-18T08:33:07Z 1 2020-02-15T06:59:40Z +5560 2005-07-10T03:13:24Z 720 231 2005-07-19T06:03:24Z 2 2020-02-15T06:59:40Z +5561 2005-07-10T03:15:24Z 1048 369 2005-07-15T06:46:24Z 1 2020-02-15T06:59:40Z +5562 2005-07-10T03:17:42Z 3604 300 2005-07-12T03:26:42Z 1 2020-02-15T06:59:40Z +5563 2005-07-10T03:21:02Z 2258 362 2005-07-14T07:40:02Z 1 2020-02-15T06:59:40Z +5564 2005-07-10T03:23:05Z 196 355 2005-07-16T07:46:05Z 2 2020-02-15T06:59:40Z +5565 2005-07-10T03:29:48Z 3368 14 2005-07-17T04:43:48Z 1 2020-02-15T06:59:40Z +5566 2005-07-10T03:30:17Z 1343 124 2005-07-13T06:32:17Z 1 2020-02-15T06:59:40Z +5567 2005-07-10T03:36:46Z 1616 147 2005-07-15T23:22:46Z 2 2020-02-15T06:59:40Z +5568 2005-07-10T03:36:56Z 1130 424 2005-07-11T08:35:56Z 2 2020-02-15T06:59:40Z +5569 2005-07-10T03:38:32Z 2835 69 2005-07-16T00:02:32Z 2 2020-02-15T06:59:40Z +5570 2005-07-10T03:46:47Z 2013 374 2005-07-17T09:28:47Z 1 2020-02-15T06:59:40Z +5571 2005-07-10T03:48:20Z 1084 76 2005-07-11T02:09:20Z 2 2020-02-15T06:59:40Z +5572 2005-07-10T03:49:00Z 2709 458 2005-07-14T01:25:00Z 1 2020-02-15T06:59:40Z +5573 2005-07-10T03:50:47Z 2957 170 2005-07-17T06:40:47Z 2 2020-02-15T06:59:40Z +5574 2005-07-10T03:54:38Z 2307 163 2005-07-19T07:20:38Z 2 2020-02-15T06:59:40Z +5575 2005-07-10T03:55:50Z 2316 107 2005-07-12T08:40:50Z 1 2020-02-15T06:59:40Z +5576 2005-07-10T03:57:05Z 1453 217 2005-07-13T02:16:05Z 2 2020-02-15T06:59:40Z +5577 2005-07-10T03:58:40Z 3779 266 2005-07-14T03:36:40Z 1 2020-02-15T06:59:40Z +5578 2005-07-10T04:00:31Z 4543 378 2005-07-16T08:06:31Z 2 2020-02-15T06:59:40Z +5579 2005-07-10T04:04:29Z 945 203 2005-07-14T04:31:29Z 1 2020-02-15T06:59:40Z +5580 2005-07-10T04:05:49Z 2753 521 2005-07-18T22:36:49Z 2 2020-02-15T06:59:40Z +5581 2005-07-10T04:06:06Z 3450 306 2005-07-15T08:31:06Z 2 2020-02-15T06:59:40Z +5582 2005-07-10T04:08:25Z 3341 305 2005-07-13T06:04:25Z 1 2020-02-15T06:59:40Z +5583 2005-07-10T04:08:48Z 1242 391 2005-07-19T07:59:48Z 1 2020-02-15T06:59:40Z +5584 2005-07-10T04:15:25Z 2606 289 2005-07-16T22:54:25Z 2 2020-02-15T06:59:40Z +5585 2005-07-10T04:15:43Z 3524 63 2005-07-15T08:24:43Z 1 2020-02-15T06:59:40Z +5586 2005-07-10T04:17:06Z 2965 427 2005-07-18T07:11:06Z 1 2020-02-15T06:59:40Z +5587 2005-07-10T04:17:25Z 4485 531 2005-07-15T01:41:25Z 1 2020-02-15T06:59:40Z +5588 2005-07-10T04:21:10Z 1166 535 2005-07-16T02:58:10Z 2 2020-02-15T06:59:40Z +5589 2005-07-10T04:22:58Z 3673 296 2005-07-10T23:13:58Z 1 2020-02-15T06:59:40Z +5590 2005-07-10T04:23:11Z 4442 407 2005-07-19T09:03:11Z 1 2020-02-15T06:59:40Z +5591 2005-07-10T04:25:03Z 378 374 2005-07-16T04:21:03Z 1 2020-02-15T06:59:40Z +5592 2005-07-10T04:26:13Z 2471 222 2005-07-19T02:32:13Z 2 2020-02-15T06:59:40Z +5593 2005-07-10T04:33:13Z 702 287 2005-07-17T08:44:13Z 2 2020-02-15T06:59:40Z +5594 2005-07-10T04:33:36Z 61 440 2005-07-12T08:13:36Z 2 2020-02-15T06:59:40Z +5595 2005-07-10T04:33:45Z 264 572 2005-07-16T04:04:45Z 1 2020-02-15T06:59:40Z +5596 2005-07-10T04:43:14Z 1662 240 2005-07-11T22:58:14Z 2 2020-02-15T06:59:40Z +5597 2005-07-10T04:47:57Z 4264 576 2005-07-17T01:54:57Z 2 2020-02-15T06:59:40Z +5598 2005-07-10T04:48:29Z 3412 397 2005-07-18T10:33:29Z 2 2020-02-15T06:59:40Z +5599 2005-07-10T04:52:04Z 3054 391 2005-07-13T05:19:04Z 1 2020-02-15T06:59:40Z +5600 2005-07-10T04:55:45Z 3713 138 2005-07-18T03:10:45Z 2 2020-02-15T06:59:40Z +5601 2005-07-10T04:56:55Z 3062 511 2005-07-11T00:14:55Z 1 2020-02-15T06:59:40Z +5602 2005-07-10T05:02:22Z 3544 253 2005-07-14T23:40:22Z 2 2020-02-15T06:59:40Z +5603 2005-07-10T05:04:54Z 1308 74 2005-07-12T01:54:54Z 2 2020-02-15T06:59:40Z +5604 2005-07-10T05:05:00Z 3702 78 2005-07-12T08:04:00Z 1 2020-02-15T06:59:40Z +5605 2005-07-10T05:06:45Z 2964 273 2005-07-15T02:51:45Z 2 2020-02-15T06:59:40Z +5606 2005-07-10T05:07:55Z 2896 51 2005-07-15T00:14:55Z 2 2020-02-15T06:59:40Z +5607 2005-07-10T05:08:10Z 4257 52 2005-07-15T00:40:10Z 2 2020-02-15T06:59:40Z +5608 2005-07-10T05:08:26Z 3854 384 2005-07-10T23:24:26Z 1 2020-02-15T06:59:40Z +5609 2005-07-10T05:09:46Z 1553 492 2005-07-12T10:38:46Z 1 2020-02-15T06:59:40Z +5610 2005-07-10T05:09:52Z 481 131 2005-07-13T07:08:52Z 2 2020-02-15T06:59:40Z +5611 2005-07-10T05:13:43Z 2832 424 2005-07-16T05:56:43Z 1 2020-02-15T06:59:40Z +5612 2005-07-10T05:15:12Z 2363 472 2005-07-17T09:50:12Z 2 2020-02-15T06:59:40Z +5613 2005-07-10T05:15:43Z 4517 220 2005-07-13T05:17:43Z 2 2020-02-15T06:59:40Z +5614 2005-07-10T05:16:56Z 133 371 2005-07-13T02:03:56Z 1 2020-02-15T06:59:40Z +5615 2005-07-10T05:18:51Z 1521 173 2005-07-17T11:05:51Z 2 2020-02-15T06:59:40Z +5616 2005-07-10T05:21:11Z 4014 238 2005-07-18T08:42:11Z 2 2020-02-15T06:59:40Z +5617 2005-07-10T05:28:50Z 2324 342 2005-07-12T00:02:50Z 2 2020-02-15T06:59:40Z +5618 2005-07-10T05:28:58Z 757 316 2005-07-18T01:38:58Z 1 2020-02-15T06:59:40Z +5619 2005-07-10T05:29:33Z 113 204 2005-07-15T00:40:33Z 1 2020-02-15T06:59:40Z +5620 2005-07-10T05:30:52Z 2980 92 2005-07-16T04:13:52Z 1 2020-02-15T06:59:40Z +5621 2005-07-10T05:34:10Z 552 310 2005-07-14T02:49:10Z 1 2020-02-15T06:59:40Z +5622 2005-07-10T05:39:37Z 1783 568 2005-07-15T00:48:37Z 2 2020-02-15T06:59:40Z +5623 2005-07-10T05:41:38Z 4464 229 2005-07-14T01:01:38Z 2 2020-02-15T06:59:40Z +5624 2005-07-10T05:43:16Z 1015 114 2005-07-12T05:33:16Z 1 2020-02-15T06:59:40Z +5625 2005-07-10T05:44:02Z 1751 114 2005-07-12T00:03:02Z 2 2020-02-15T06:59:40Z +5626 2005-07-10T05:49:35Z 3029 389 2005-07-15T08:05:35Z 1 2020-02-15T06:59:40Z +5627 2005-07-10T05:51:12Z 244 136 2005-07-17T09:56:12Z 2 2020-02-15T06:59:40Z +5628 2005-07-10T05:56:40Z 4040 87 2005-07-17T11:13:40Z 1 2020-02-15T06:59:40Z +5629 2005-07-10T06:02:25Z 400 546 2005-07-16T07:33:25Z 1 2020-02-15T06:59:40Z +5630 2005-07-10T06:08:14Z 1151 537 2005-07-14T03:37:14Z 2 2020-02-15T06:59:40Z +5631 2005-07-10T06:15:45Z 2095 595 2005-07-17T09:53:45Z 2 2020-02-15T06:59:40Z +5632 2005-07-10T06:17:06Z 2632 404 2005-07-17T02:32:06Z 2 2020-02-15T06:59:40Z +5633 2005-07-10T06:22:24Z 1056 480 2005-07-11T05:59:24Z 2 2020-02-15T06:59:40Z +5634 2005-07-10T06:25:48Z 323 487 2005-07-17T09:07:48Z 2 2020-02-15T06:59:40Z +5635 2005-07-10T06:28:39Z 1457 222 2005-07-17T08:35:39Z 2 2020-02-15T06:59:40Z +5636 2005-07-10T06:31:24Z 4116 2 2005-07-13T02:36:24Z 1 2020-02-15T06:59:40Z +5637 2005-07-10T06:31:37Z 4436 45 2005-07-17T01:16:37Z 1 2020-02-15T06:59:40Z +5638 2005-07-10T06:32:49Z 1528 570 2005-07-13T04:32:49Z 2 2020-02-15T06:59:40Z +5639 2005-07-10T06:33:39Z 2452 249 2005-07-19T07:47:39Z 1 2020-02-15T06:59:40Z +5640 2005-07-10T06:38:00Z 2706 574 2005-07-18T08:56:00Z 2 2020-02-15T06:59:40Z +5641 2005-07-10T06:43:43Z 3568 50 2005-07-15T06:33:43Z 1 2020-02-15T06:59:40Z +5642 2005-07-10T06:46:08Z 3630 299 2005-07-13T10:03:08Z 1 2020-02-15T06:59:40Z +5643 2005-07-10T06:49:00Z 796 34 2005-07-14T01:53:00Z 1 2020-02-15T06:59:40Z +5644 2005-07-10T06:57:44Z 4069 476 2005-07-15T03:52:44Z 2 2020-02-15T06:59:40Z +5645 2005-07-10T06:58:21Z 1586 333 2005-07-18T04:19:21Z 2 2020-02-15T06:59:40Z +5646 2005-07-10T07:08:09Z 1471 166 2005-07-14T03:48:09Z 2 2020-02-15T06:59:40Z +5647 2005-07-10T07:08:40Z 1466 128 2005-07-13T05:19:40Z 2 2020-02-15T06:59:40Z +5648 2005-07-10T07:09:21Z 4359 24 2005-07-16T07:23:21Z 2 2020-02-15T06:59:40Z +5649 2005-07-10T07:15:07Z 1349 336 2005-07-12T11:57:07Z 2 2020-02-15T06:59:40Z +5650 2005-07-10T07:17:01Z 2793 461 2005-07-15T11:59:01Z 1 2020-02-15T06:59:40Z +5651 2005-07-10T07:17:13Z 301 239 2005-07-15T12:13:13Z 2 2020-02-15T06:59:40Z +5652 2005-07-10T07:18:58Z 927 42 2005-07-19T07:52:58Z 1 2020-02-15T06:59:40Z +5653 2005-07-10T07:21:27Z 919 28 2005-07-16T01:58:27Z 1 2020-02-15T06:59:40Z +5654 2005-07-10T07:24:46Z 3419 490 2005-07-14T07:39:46Z 2 2020-02-15T06:59:40Z +5655 2005-07-10T07:31:06Z 3470 113 2005-07-17T08:22:06Z 1 2020-02-15T06:59:40Z +5656 2005-07-10T07:31:07Z 4138 159 2005-07-15T04:44:07Z 1 2020-02-15T06:59:40Z +5657 2005-07-10T07:33:43Z 4342 508 2005-07-18T01:55:43Z 2 2020-02-15T06:59:40Z +5658 2005-07-10T07:34:08Z 4402 165 2005-07-19T04:21:08Z 2 2020-02-15T06:59:40Z +5659 2005-07-10T07:45:40Z 4265 9 2005-07-15T05:20:40Z 1 2020-02-15T06:59:40Z +5660 2005-07-10T07:46:12Z 1404 171 2005-07-17T07:48:12Z 1 2020-02-15T06:59:40Z +5661 2005-07-10T07:53:51Z 1878 108 2005-07-14T12:57:51Z 2 2020-02-15T06:59:40Z +5662 2005-07-10T07:59:24Z 219 502 2005-07-14T13:06:24Z 1 2020-02-15T06:59:40Z +5663 2005-07-10T08:01:33Z 3078 530 2005-07-15T03:36:33Z 2 2020-02-15T06:59:40Z +5664 2005-07-10T08:04:41Z 2375 469 2005-07-17T10:29:41Z 1 2020-02-15T06:59:40Z +5665 2005-07-10T08:10:08Z 1175 415 2005-07-11T05:22:08Z 2 2020-02-15T06:59:40Z +5666 2005-07-10T08:10:29Z 2225 242 2005-07-17T04:54:29Z 2 2020-02-15T06:59:40Z +5667 2005-07-10T08:11:03Z 683 336 2005-07-15T08:23:03Z 2 2020-02-15T06:59:40Z +5668 2005-07-10T08:11:05Z 309 211 2005-07-16T13:15:05Z 1 2020-02-15T06:59:40Z +5669 2005-07-10T08:12:53Z 1173 323 2005-07-11T05:48:53Z 2 2020-02-15T06:59:40Z +5670 2005-07-10T08:14:52Z 610 121 2005-07-14T04:13:52Z 2 2020-02-15T06:59:40Z +5671 2005-07-10T08:18:22Z 1304 268 2005-07-11T07:03:22Z 2 2020-02-15T06:59:40Z +5672 2005-07-10T08:19:38Z 2326 158 2005-07-16T06:28:38Z 2 2020-02-15T06:59:40Z +5673 2005-07-10T08:21:54Z 4018 117 2005-07-11T05:54:54Z 2 2020-02-15T06:59:40Z +5674 2005-07-10T08:26:26Z 548 258 2005-07-16T02:43:26Z 1 2020-02-15T06:59:40Z +5675 2005-07-10T08:31:06Z 2134 376 2005-07-17T11:48:06Z 1 2020-02-15T06:59:40Z +5676 2005-07-10T08:38:32Z 3595 153 2005-07-13T10:11:32Z 1 2020-02-15T06:59:40Z +5677 2005-07-10T08:41:28Z 2647 105 2005-07-12T09:05:28Z 2 2020-02-15T06:59:40Z +5678 2005-07-10T08:42:42Z 4366 96 2005-07-19T03:48:42Z 1 2020-02-15T06:59:40Z +5679 2005-07-10T08:44:02Z 389 138 2005-07-14T05:30:02Z 1 2020-02-15T06:59:40Z +5680 2005-07-10T08:47:36Z 3503 199 2005-07-17T06:10:36Z 1 2020-02-15T06:59:40Z +5681 2005-07-10T08:48:39Z 4176 50 2005-07-18T07:17:39Z 1 2020-02-15T06:59:40Z +5682 2005-07-10T08:51:39Z 17 302 2005-07-12T14:44:39Z 2 2020-02-15T06:59:40Z +5683 2005-07-10T08:52:13Z 4433 285 2005-07-19T10:25:13Z 1 2020-02-15T06:59:40Z +5684 2005-07-10T08:59:03Z 99 132 2005-07-15T07:21:03Z 1 2020-02-15T06:59:40Z +5685 2005-07-10T09:01:38Z 1462 170 2005-07-17T10:58:38Z 1 2020-02-15T06:59:40Z +5686 2005-07-10T09:06:03Z 717 521 2005-07-11T10:59:03Z 2 2020-02-15T06:59:40Z +5687 2005-07-10T09:07:19Z 2170 363 2005-07-16T11:17:19Z 2 2020-02-15T06:59:40Z +5688 2005-07-10T09:16:08Z 3036 598 2005-07-15T09:44:08Z 1 2020-02-15T06:59:40Z +5689 2005-07-10T09:24:17Z 1731 381 2005-07-15T05:36:17Z 1 2020-02-15T06:59:40Z +5690 2005-07-10T09:26:49Z 1326 362 2005-07-19T07:17:49Z 2 2020-02-15T06:59:40Z +5691 2005-07-10T09:29:49Z 3526 466 2005-07-16T13:37:49Z 1 2020-02-15T06:59:40Z +5692 2005-07-10T09:32:22Z 59 244 2005-07-15T15:20:22Z 2 2020-02-15T06:59:40Z +5693 2005-07-10T09:35:43Z 2167 208 2005-07-12T08:05:43Z 2 2020-02-15T06:59:40Z +5694 2005-07-10T09:40:38Z 3476 57 2005-07-14T09:16:38Z 1 2020-02-15T06:59:40Z +5695 2005-07-10T09:43:40Z 440 459 2005-07-13T15:04:40Z 2 2020-02-15T06:59:40Z +5696 2005-07-10T09:44:32Z 128 96 2005-07-12T13:38:32Z 2 2020-02-15T06:59:40Z +5697 2005-07-10T09:44:44Z 934 515 2005-07-12T12:13:44Z 2 2020-02-15T06:59:40Z +5698 2005-07-10T09:47:00Z 639 46 2005-07-16T06:26:00Z 1 2020-02-15T06:59:40Z +5699 2005-07-10T09:48:04Z 958 211 2005-07-17T09:07:04Z 1 2020-02-15T06:59:40Z +5700 2005-07-10T09:49:42Z 3961 87 2005-07-19T04:20:42Z 1 2020-02-15T06:59:40Z +5701 2005-07-10T09:56:24Z 2395 91 2005-07-16T15:11:24Z 2 2020-02-15T06:59:40Z +5702 2005-07-10T10:00:01Z 3349 324 2005-07-11T15:29:01Z 1 2020-02-15T06:59:40Z +5703 2005-07-10T10:04:15Z 1585 132 2005-07-16T07:43:15Z 1 2020-02-15T06:59:40Z +5704 2005-07-10T10:06:29Z 2104 591 2005-07-17T10:48:29Z 1 2020-02-15T06:59:40Z +5705 2005-07-10T10:09:17Z 4030 300 2005-07-19T07:24:17Z 2 2020-02-15T06:59:40Z +5706 2005-07-10T10:21:46Z 3701 255 2005-07-16T04:37:46Z 2 2020-02-15T06:59:40Z +5707 2005-07-10T10:26:14Z 708 581 2005-07-18T06:19:14Z 1 2020-02-15T06:59:40Z +5708 2005-07-10T10:29:19Z 571 484 2005-07-18T06:50:19Z 1 2020-02-15T06:59:40Z +5709 2005-07-10T10:31:52Z 732 302 2005-07-12T10:47:52Z 1 2020-02-15T06:59:40Z +5710 2005-07-10T10:32:52Z 2843 265 2005-07-18T06:28:52Z 1 2020-02-15T06:59:40Z +5711 2005-07-10T10:37:20Z 3988 481 2005-07-13T11:20:20Z 1 2020-02-15T06:59:40Z +5712 2005-07-10T10:40:32Z 3480 304 2005-07-12T11:45:32Z 1 2020-02-15T06:59:40Z +5713 2005-07-10T10:46:15Z 1213 572 2005-07-19T14:34:15Z 1 2020-02-15T06:59:40Z +5714 2005-07-10T10:46:57Z 3706 17 2005-07-18T14:07:57Z 1 2020-02-15T06:59:40Z +5715 2005-07-10T10:48:03Z 1638 132 2005-07-18T11:27:03Z 1 2020-02-15T06:59:40Z +5716 2005-07-10T10:59:23Z 3416 102 2005-07-16T12:25:23Z 2 2020-02-15T06:59:40Z +5717 2005-07-10T11:02:03Z 529 15 2005-07-13T13:00:03Z 1 2020-02-15T06:59:40Z +5718 2005-07-10T11:03:20Z 3719 20 2005-07-19T15:38:20Z 2 2020-02-15T06:59:40Z +5719 2005-07-10T11:07:40Z 2100 94 2005-07-15T14:14:40Z 2 2020-02-15T06:59:40Z +5720 2005-07-10T11:09:12Z 576 339 2005-07-16T07:31:12Z 1 2020-02-15T06:59:40Z +5721 2005-07-10T11:09:35Z 2348 5 2005-07-17T16:41:35Z 2 2020-02-15T06:59:40Z +5722 2005-07-10T11:10:04Z 2890 556 2005-07-12T16:31:04Z 2 2020-02-15T06:59:40Z +5723 2005-07-10T11:14:48Z 605 33 2005-07-11T15:46:48Z 2 2020-02-15T06:59:40Z +5724 2005-07-10T11:18:12Z 3597 289 2005-07-16T14:53:12Z 2 2020-02-15T06:59:40Z +5725 2005-07-10T11:21:21Z 4293 426 2005-07-14T05:34:21Z 2 2020-02-15T06:59:40Z +5726 2005-07-10T11:22:08Z 3582 131 2005-07-13T05:55:08Z 1 2020-02-15T06:59:40Z +5727 2005-07-10T11:25:28Z 3338 550 2005-07-11T11:03:28Z 2 2020-02-15T06:59:40Z +5728 2005-07-10T11:26:14Z 636 335 2005-07-15T12:55:14Z 1 2020-02-15T06:59:40Z +5729 2005-07-10T11:27:25Z 4137 188 2005-07-15T06:13:25Z 2 2020-02-15T06:59:40Z +5730 2005-07-10T11:28:32Z 1903 301 2005-07-11T11:45:32Z 2 2020-02-15T06:59:40Z +5731 2005-07-10T11:31:52Z 2960 440 2005-07-14T11:44:52Z 1 2020-02-15T06:59:40Z +5732 2005-07-10T11:36:32Z 2833 597 2005-07-12T13:09:32Z 2 2020-02-15T06:59:40Z +5733 2005-07-10T11:37:24Z 3806 415 2005-07-11T12:34:24Z 2 2020-02-15T06:59:40Z +5734 2005-07-10T11:37:28Z 399 447 2005-07-16T11:10:28Z 1 2020-02-15T06:59:40Z +5735 2005-07-10T11:39:15Z 3259 65 2005-07-19T09:52:15Z 1 2020-02-15T06:59:40Z +5736 2005-07-10T11:45:48Z 1172 27 2005-07-13T16:40:48Z 1 2020-02-15T06:59:40Z +5737 2005-07-10T11:50:04Z 1118 218 2005-07-13T10:37:04Z 1 2020-02-15T06:59:40Z +5738 2005-07-10T11:50:51Z 200 187 2005-07-19T17:46:51Z 1 2020-02-15T06:59:40Z +5739 2005-07-10T11:51:50Z 163 219 2005-07-19T17:40:50Z 1 2020-02-15T06:59:40Z +5740 2005-07-10T11:51:58Z 2147 325 2005-07-12T07:53:58Z 2 2020-02-15T06:59:40Z +5741 2005-07-10T11:55:40Z 2041 513 2005-07-16T15:02:40Z 2 2020-02-15T06:59:40Z +5742 2005-07-10T11:56:18Z 3975 596 2005-07-19T06:59:18Z 2 2020-02-15T06:59:40Z +5743 2005-07-10T11:57:38Z 593 297 2005-07-19T15:38:38Z 2 2020-02-15T06:59:40Z +5744 2005-07-10T12:08:33Z 1372 437 2005-07-14T12:34:33Z 2 2020-02-15T06:59:40Z +5745 2005-07-10T12:10:11Z 41 305 2005-07-19T06:56:11Z 1 2020-02-15T06:59:40Z +5746 2005-07-10T12:15:12Z 3071 82 2005-07-16T07:02:12Z 1 2020-02-15T06:59:40Z +5747 2005-07-10T12:15:33Z 4562 583 2005-07-18T10:11:33Z 1 2020-02-15T06:59:40Z +5748 2005-07-10T12:19:59Z 1618 99 2005-07-12T12:59:59Z 1 2020-02-15T06:59:40Z +5749 2005-07-10T12:20:36Z 1768 304 2005-07-19T10:39:36Z 1 2020-02-15T06:59:40Z +5750 2005-07-10T12:20:41Z 3855 330 2005-07-17T08:25:41Z 2 2020-02-15T06:59:40Z +5751 2005-07-10T12:25:11Z 387 479 2005-07-11T15:23:11Z 1 2020-02-15T06:59:40Z +5752 2005-07-10T12:27:38Z 4444 86 2005-07-18T09:22:38Z 2 2020-02-15T06:59:40Z +5753 2005-07-10T12:29:43Z 3639 444 2005-07-17T12:50:43Z 2 2020-02-15T06:59:40Z +5754 2005-07-10T12:32:43Z 162 291 2005-07-12T13:11:43Z 2 2020-02-15T06:59:40Z +5755 2005-07-10T12:38:56Z 2760 2 2005-07-19T17:02:56Z 1 2020-02-15T06:59:40Z +5756 2005-07-10T12:39:28Z 130 183 2005-07-11T14:08:28Z 2 2020-02-15T06:59:40Z +5757 2005-07-10T12:40:17Z 1827 101 2005-07-12T14:02:17Z 1 2020-02-15T06:59:40Z +5758 2005-07-10T12:42:43Z 502 363 2005-07-16T10:18:43Z 2 2020-02-15T06:59:40Z +5759 2005-07-10T12:43:22Z 816 591 2005-07-16T16:42:22Z 1 2020-02-15T06:59:40Z +5760 2005-07-10T12:44:48Z 1050 154 2005-07-14T12:25:48Z 1 2020-02-15T06:59:40Z +5761 2005-07-10T12:45:36Z 1763 287 2005-07-13T10:05:36Z 2 2020-02-15T06:59:40Z +5762 2005-07-10T12:48:01Z 1815 217 2005-07-18T16:43:01Z 1 2020-02-15T06:59:40Z +5763 2005-07-10T12:58:12Z 753 397 2005-07-14T08:52:12Z 1 2020-02-15T06:59:40Z +5764 2005-07-10T12:58:16Z 1556 245 2005-07-19T07:28:16Z 1 2020-02-15T06:59:40Z +5765 2005-07-10T13:03:02Z 2619 293 2005-07-16T09:31:02Z 1 2020-02-15T06:59:40Z +5766 2005-07-10T13:07:31Z 7 406 2005-07-16T13:03:31Z 1 2020-02-15T06:59:40Z +5767 2005-07-10T13:13:18Z 2871 32 2005-07-17T14:41:18Z 2 2020-02-15T06:59:40Z +5768 2005-07-10T13:15:26Z 345 196 2005-07-15T09:42:26Z 1 2020-02-15T06:59:40Z +5769 2005-07-10T13:17:58Z 4052 141 2005-07-11T11:32:58Z 1 2020-02-15T06:59:40Z +5770 2005-07-10T13:21:28Z 914 71 2005-07-11T08:59:28Z 2 2020-02-15T06:59:40Z +5771 2005-07-10T13:26:45Z 3275 153 2005-07-14T15:43:45Z 1 2020-02-15T06:59:40Z +5772 2005-07-10T13:27:40Z 3635 21 2005-07-17T08:24:40Z 1 2020-02-15T06:59:40Z +5773 2005-07-10T13:31:09Z 3277 180 2005-07-15T08:21:09Z 2 2020-02-15T06:59:40Z +5774 2005-07-10T13:31:56Z 326 113 2005-07-18T07:32:56Z 1 2020-02-15T06:59:40Z +5775 2005-07-10T13:34:26Z 2175 325 2005-07-15T10:01:26Z 1 2020-02-15T06:59:40Z +5776 2005-07-10T13:35:22Z 3592 568 2005-07-12T17:58:22Z 1 2020-02-15T06:59:40Z +5777 2005-07-10T13:38:41Z 3959 40 2005-07-17T15:48:41Z 2 2020-02-15T06:59:40Z +5778 2005-07-10T13:41:37Z 4435 324 2005-07-14T16:26:37Z 1 2020-02-15T06:59:40Z +5779 2005-07-10T13:45:54Z 3266 244 2005-07-15T18:13:54Z 1 2020-02-15T06:59:40Z +5780 2005-07-10T13:46:23Z 168 516 2005-07-14T17:19:23Z 2 2020-02-15T06:59:40Z +5781 2005-07-10T13:49:30Z 3191 167 2005-07-11T12:11:30Z 2 2020-02-15T06:59:40Z +5782 2005-07-10T13:52:56Z 2514 440 2005-07-15T09:32:56Z 2 2020-02-15T06:59:40Z +5783 2005-07-10T13:55:33Z 3331 385 2005-07-16T12:13:33Z 1 2020-02-15T06:59:40Z +5784 2005-07-10T14:03:28Z 2323 422 2005-07-16T16:22:28Z 1 2020-02-15T06:59:40Z +5785 2005-07-10T14:06:03Z 142 211 2005-07-17T17:59:03Z 2 2020-02-15T06:59:40Z +5786 2005-07-10T14:06:44Z 2290 350 2005-07-14T19:55:44Z 2 2020-02-15T06:59:40Z +5787 2005-07-10T14:08:49Z 1075 44 2005-07-19T18:29:49Z 1 2020-02-15T06:59:40Z +5788 2005-07-10T14:10:22Z 1707 63 2005-07-14T19:46:22Z 2 2020-02-15T06:59:40Z +5789 2005-07-10T14:11:26Z 2601 571 2005-07-18T16:19:26Z 1 2020-02-15T06:59:40Z +5790 2005-07-10T14:15:21Z 1696 235 2005-07-14T08:53:21Z 2 2020-02-15T06:59:40Z +5791 2005-07-10T14:16:22Z 2795 319 2005-07-19T13:38:22Z 2 2020-02-15T06:59:40Z +5792 2005-07-10T14:22:19Z 4234 92 2005-07-19T09:08:19Z 1 2020-02-15T06:59:40Z +5793 2005-07-10T14:33:00Z 2927 268 2005-07-13T19:27:00Z 1 2020-02-15T06:59:40Z +5794 2005-07-10T14:34:53Z 1164 198 2005-07-17T11:50:53Z 2 2020-02-15T06:59:40Z +5795 2005-07-10T14:36:29Z 3958 304 2005-07-14T13:26:29Z 1 2020-02-15T06:59:40Z +5796 2005-07-10T14:42:54Z 1631 286 2005-07-17T08:47:54Z 2 2020-02-15T06:59:40Z +5797 2005-07-10T14:43:52Z 1880 384 2005-07-13T16:12:52Z 2 2020-02-15T06:59:40Z +5798 2005-07-10T14:45:09Z 331 107 2005-07-16T13:43:09Z 1 2020-02-15T06:59:40Z +5799 2005-07-10T14:53:35Z 3045 520 2005-07-14T16:18:35Z 2 2020-02-15T06:59:40Z +5800 2005-07-10T14:58:36Z 2466 411 2005-07-11T19:50:36Z 2 2020-02-15T06:59:40Z +5801 2005-07-10T14:59:05Z 3511 439 2005-07-14T17:55:05Z 2 2020-02-15T06:59:40Z +5802 2005-07-10T15:02:17Z 2295 520 2005-07-19T15:43:17Z 2 2020-02-15T06:59:40Z +5803 2005-07-10T15:05:42Z 1982 244 2005-07-15T10:19:42Z 1 2020-02-15T06:59:40Z +5804 2005-07-10T15:06:31Z 2168 137 2005-07-14T11:00:31Z 1 2020-02-15T06:59:40Z +5805 2005-07-10T15:08:41Z 3553 532 2005-07-19T16:35:41Z 2 2020-02-15T06:59:40Z +5806 2005-07-10T15:11:54Z 29 108 2005-07-15T11:51:54Z 2 2020-02-15T06:59:40Z +5807 2005-07-10T15:16:30Z 2092 301 2005-07-11T14:02:30Z 2 2020-02-15T06:59:40Z +5808 2005-07-10T15:17:33Z 2310 170 2005-07-14T12:14:33Z 2 2020-02-15T06:59:40Z +5809 2005-07-10T15:19:30Z 1748 461 2005-07-13T12:31:30Z 2 2020-02-15T06:59:40Z +5810 2005-07-10T15:22:04Z 1426 482 2005-07-18T21:05:04Z 2 2020-02-15T06:59:40Z +5811 2005-07-10T15:27:04Z 4007 441 2005-07-12T17:20:04Z 1 2020-02-15T06:59:40Z +5812 2005-07-10T15:27:56Z 1681 581 2005-07-18T15:37:56Z 2 2020-02-15T06:59:40Z +5813 2005-07-10T15:34:37Z 942 512 2005-07-17T16:14:37Z 2 2020-02-15T06:59:40Z +5814 2005-07-10T15:46:50Z 2537 71 2005-07-13T15:28:50Z 2 2020-02-15T06:59:40Z +5815 2005-07-10T15:48:19Z 2934 22 2005-07-13T12:09:19Z 1 2020-02-15T06:59:40Z +5816 2005-07-10T15:48:47Z 1746 382 2005-07-13T11:51:47Z 2 2020-02-15T06:59:40Z +5817 2005-07-10T15:49:12Z 2993 28 2005-07-18T19:30:12Z 2 2020-02-15T06:59:40Z +5818 2005-07-10T15:51:12Z 3940 334 2005-07-14T14:10:12Z 2 2020-02-15T06:59:40Z +5819 2005-07-10T15:56:20Z 3439 347 2005-07-12T19:59:20Z 2 2020-02-15T06:59:40Z +5820 2005-07-10T16:04:59Z 1511 485 2005-07-16T12:10:59Z 1 2020-02-15T06:59:40Z +5821 2005-07-10T16:07:16Z 147 302 2005-07-14T19:48:16Z 1 2020-02-15T06:59:40Z +5822 2005-07-10T16:10:39Z 1385 38 2005-07-13T19:05:39Z 2 2020-02-15T06:59:40Z +5823 2005-07-10T16:19:52Z 1879 483 2005-07-11T12:33:52Z 2 2020-02-15T06:59:40Z +5824 2005-07-10T16:19:53Z 1980 449 2005-07-12T11:17:53Z 2 2020-02-15T06:59:40Z +5825 2005-07-10T16:20:30Z 3843 444 2005-07-11T18:58:30Z 1 2020-02-15T06:59:40Z +5826 2005-07-10T16:21:02Z 4104 254 2005-07-17T21:08:02Z 1 2020-02-15T06:59:40Z +5827 2005-07-10T16:22:20Z 1296 290 2005-07-15T21:13:20Z 2 2020-02-15T06:59:40Z +5828 2005-07-10T16:27:25Z 2999 156 2005-07-11T18:42:25Z 1 2020-02-15T06:59:40Z +5829 2005-07-10T16:29:41Z 3405 118 2005-07-14T22:03:41Z 1 2020-02-15T06:59:40Z +5830 2005-07-10T16:34:00Z 2358 59 2005-07-18T16:42:00Z 1 2020-02-15T06:59:40Z +5831 2005-07-10T16:34:02Z 830 43 2005-07-11T14:27:02Z 2 2020-02-15T06:59:40Z +5832 2005-07-10T16:34:48Z 2387 63 2005-07-17T17:25:48Z 1 2020-02-15T06:59:40Z +5833 2005-07-10T16:39:24Z 3829 187 2005-07-17T12:52:24Z 1 2020-02-15T06:59:40Z +5834 2005-07-10T16:44:12Z 85 360 2005-07-14T11:34:12Z 2 2020-02-15T06:59:40Z +5835 2005-07-10T16:44:58Z 800 11 2005-07-17T16:03:58Z 2 2020-02-15T06:59:40Z +5836 2005-07-10T16:49:02Z 1842 310 2005-07-11T22:35:02Z 2 2020-02-15T06:59:40Z +5837 2005-07-10T16:57:50Z 1648 478 2005-07-18T14:07:50Z 2 2020-02-15T06:59:40Z +5838 2005-07-10T17:04:56Z 1627 202 2005-07-11T15:15:56Z 1 2020-02-15T06:59:40Z +5839 2005-07-10T17:08:30Z 252 367 2005-07-13T21:21:30Z 2 2020-02-15T06:59:40Z +5840 2005-07-10T17:09:09Z 1073 72 2005-07-15T22:52:09Z 1 2020-02-15T06:59:40Z +5841 2005-07-10T17:11:31Z 1230 525 2005-07-18T15:50:31Z 2 2020-02-15T06:59:40Z +5842 2005-07-10T17:11:37Z 139 247 2005-07-14T21:43:37Z 1 2020-02-15T06:59:40Z +5843 2005-07-10T17:14:27Z 1615 599 2005-07-15T21:18:27Z 2 2020-02-15T06:59:40Z +5844 2005-07-10T17:14:43Z 609 147 2005-07-12T19:27:43Z 1 2020-02-15T06:59:40Z +5845 2005-07-10T17:23:14Z 2882 334 2005-07-12T16:29:14Z 2 2020-02-15T06:59:40Z +5846 2005-07-10T17:25:24Z 938 233 2005-07-12T13:41:24Z 2 2020-02-15T06:59:40Z +5847 2005-07-10T17:27:42Z 4403 220 2005-07-12T14:51:42Z 2 2020-02-15T06:59:40Z +5848 2005-07-10T17:28:14Z 4549 409 2005-07-14T11:54:14Z 1 2020-02-15T06:59:40Z +5849 2005-07-10T17:32:33Z 1632 44 2005-07-19T22:39:33Z 1 2020-02-15T06:59:40Z +5850 2005-07-10T17:36:27Z 4015 531 2005-07-15T16:44:27Z 2 2020-02-15T06:59:40Z +5851 2005-07-10T17:40:47Z 3944 510 2005-07-11T19:24:47Z 2 2020-02-15T06:59:40Z +5852 2005-07-10T17:43:30Z 3890 484 2005-07-15T15:05:30Z 2 2020-02-15T06:59:40Z +5853 2005-07-10T17:45:13Z 3026 520 2005-07-17T21:37:13Z 1 2020-02-15T06:59:40Z +5854 2005-07-10T17:47:34Z 997 547 2005-07-13T20:14:34Z 2 2020-02-15T06:59:40Z +5855 2005-07-10T17:54:06Z 2457 166 2005-07-18T15:41:06Z 2 2020-02-15T06:59:40Z +5856 2005-07-10T17:57:32Z 497 314 2005-07-11T13:57:32Z 1 2020-02-15T06:59:40Z +5857 2005-07-10T17:59:29Z 1265 29 2005-07-18T18:13:29Z 1 2020-02-15T06:59:40Z +5858 2005-07-10T18:00:07Z 2913 257 2005-07-11T20:01:07Z 2 2020-02-15T06:59:40Z +5859 2005-07-10T18:02:02Z 131 220 2005-07-11T23:24:02Z 1 2020-02-15T06:59:40Z +5860 2005-07-10T18:08:49Z 3897 180 2005-07-16T16:43:49Z 2 2020-02-15T06:59:40Z +5861 2005-07-10T18:14:22Z 3881 277 2005-07-14T15:32:22Z 1 2020-02-15T06:59:40Z +5862 2005-07-10T18:20:48Z 2075 157 2005-07-17T00:09:48Z 1 2020-02-15T06:59:40Z +5863 2005-07-10T18:25:23Z 2557 419 2005-07-15T23:49:23Z 1 2020-02-15T06:59:40Z +5864 2005-07-10T18:29:57Z 4380 437 2005-07-19T14:27:57Z 2 2020-02-15T06:59:40Z +5865 2005-07-10T18:31:05Z 1382 126 2005-07-12T18:29:05Z 2 2020-02-15T06:59:40Z +5866 2005-07-10T18:35:14Z 457 484 2005-07-19T19:41:14Z 2 2020-02-15T06:59:40Z +5867 2005-07-10T18:39:01Z 730 321 2005-07-19T21:56:01Z 2 2020-02-15T06:59:40Z +5868 2005-07-10T18:39:16Z 452 429 2005-07-15T21:19:16Z 1 2020-02-15T06:59:40Z +5869 2005-07-10T18:40:09Z 2157 40 2005-07-17T18:42:09Z 1 2020-02-15T06:59:40Z +5870 2005-07-10T18:40:25Z 1524 438 2005-07-12T15:39:25Z 2 2020-02-15T06:59:40Z +5871 2005-07-10T18:46:08Z 3288 307 2005-07-16T17:32:08Z 1 2020-02-15T06:59:40Z +5872 2005-07-10T18:54:05Z 270 364 2005-07-19T15:41:05Z 1 2020-02-15T06:59:40Z +5873 2005-07-10T19:02:10Z 3151 354 2005-07-14T19:13:10Z 2 2020-02-15T06:59:40Z +5874 2005-07-10T19:02:51Z 2255 131 2005-07-16T13:14:51Z 1 2020-02-15T06:59:40Z +5875 2005-07-10T19:06:47Z 964 575 2005-07-18T17:33:47Z 2 2020-02-15T06:59:40Z +5876 2005-07-10T19:07:15Z 4445 578 2005-07-14T17:29:15Z 2 2020-02-15T06:59:40Z +5877 2005-07-10T19:08:51Z 1520 537 2005-07-19T19:48:51Z 1 2020-02-15T06:59:40Z +5878 2005-07-10T19:09:57Z 3805 271 2005-07-16T17:22:57Z 1 2020-02-15T06:59:40Z +5879 2005-07-10T19:12:47Z 3851 430 2005-07-16T16:32:47Z 1 2020-02-15T06:59:40Z +5880 2005-07-10T19:14:58Z 359 482 2005-07-17T01:13:58Z 1 2020-02-15T06:59:40Z +5881 2005-07-10T19:19:43Z 236 25 2005-07-12T20:11:43Z 1 2020-02-15T06:59:40Z +5882 2005-07-10T19:20:34Z 2830 319 2005-07-11T18:39:34Z 2 2020-02-15T06:59:40Z +5883 2005-07-10T19:25:21Z 2820 17 2005-07-16T20:50:21Z 2 2020-02-15T06:59:40Z +5884 2005-07-10T19:31:38Z 916 498 2005-07-11T20:30:38Z 1 2020-02-15T06:59:40Z +5885 2005-07-10T19:33:50Z 3129 331 2005-07-17T00:26:50Z 2 2020-02-15T06:59:40Z +5886 2005-07-10T19:36:25Z 907 215 2005-07-11T22:24:25Z 2 2020-02-15T06:59:40Z +5887 2005-07-10T19:45:47Z 2602 532 2005-07-15T22:15:47Z 1 2020-02-15T06:59:40Z +5888 2005-07-10T19:52:17Z 1620 268 2005-07-18T20:32:17Z 2 2020-02-15T06:59:40Z +5889 2005-07-10T19:54:41Z 1706 491 2005-07-12T20:08:41Z 2 2020-02-15T06:59:40Z +5890 2005-07-10T20:00:25Z 1463 535 2005-07-18T17:57:25Z 2 2020-02-15T06:59:40Z +5891 2005-07-10T20:01:17Z 4355 184 2005-07-12T00:15:17Z 1 2020-02-15T06:59:40Z +5892 2005-07-10T20:02:42Z 4322 333 2005-07-11T20:02:42Z 1 2020-02-15T06:59:40Z +5893 2005-07-10T20:05:30Z 1689 439 2005-07-14T23:05:30Z 1 2020-02-15T06:59:40Z +5894 2005-07-10T20:09:34Z 2264 194 2005-07-17T15:39:34Z 1 2020-02-15T06:59:40Z +5895 2005-07-10T20:13:19Z 2272 164 2005-07-17T17:51:19Z 1 2020-02-15T06:59:40Z +5896 2005-07-10T20:15:56Z 731 357 2005-07-12T00:39:56Z 1 2020-02-15T06:59:40Z +5897 2005-07-10T20:16:14Z 740 413 2005-07-19T15:49:14Z 2 2020-02-15T06:59:40Z +5898 2005-07-10T20:18:09Z 3257 538 2005-07-16T14:44:09Z 1 2020-02-15T06:59:40Z +5899 2005-07-10T20:21:52Z 1391 388 2005-07-13T00:46:52Z 1 2020-02-15T06:59:40Z +5900 2005-07-10T20:21:54Z 1081 419 2005-07-17T00:26:54Z 1 2020-02-15T06:59:40Z +5901 2005-07-10T20:22:12Z 86 165 2005-07-19T16:43:12Z 2 2020-02-15T06:59:40Z +5902 2005-07-10T20:31:24Z 2727 228 2005-07-11T20:50:24Z 1 2020-02-15T06:59:40Z +5903 2005-07-10T20:39:04Z 1388 573 2005-07-11T17:41:04Z 1 2020-02-15T06:59:40Z +5904 2005-07-10T20:39:44Z 350 531 2005-07-13T17:57:44Z 2 2020-02-15T06:59:40Z +5905 2005-07-10T20:41:09Z 3891 10 2005-07-19T14:49:09Z 1 2020-02-15T06:59:40Z +5906 2005-07-10T20:41:41Z 514 323 2005-07-14T00:12:41Z 2 2020-02-15T06:59:40Z +5907 2005-07-10T20:41:41Z 4432 168 2005-07-15T21:18:41Z 2 2020-02-15T06:59:40Z +5908 2005-07-10T20:44:14Z 810 156 2005-07-13T15:05:14Z 2 2020-02-15T06:59:40Z +5909 2005-07-10T20:46:13Z 2333 44 2005-07-14T18:01:13Z 2 2020-02-15T06:59:40Z +5910 2005-07-10T20:51:34Z 1039 464 2005-07-19T14:54:34Z 1 2020-02-15T06:59:40Z +5911 2005-07-10T20:51:42Z 4140 420 2005-07-14T21:58:42Z 2 2020-02-15T06:59:40Z +5912 2005-07-10T20:58:22Z 1187 351 2005-07-17T01:15:22Z 2 2020-02-15T06:59:40Z +5913 2005-07-10T20:58:55Z 2767 277 2005-07-13T15:18:55Z 1 2020-02-15T06:59:40Z +5914 2005-07-10T21:01:12Z 2639 372 2005-07-16T18:27:12Z 2 2020-02-15T06:59:40Z +5915 2005-07-10T21:12:16Z 2464 66 2005-07-15T16:59:16Z 2 2020-02-15T06:59:40Z +5916 2005-07-10T21:26:31Z 2267 35 2005-07-19T20:23:31Z 1 2020-02-15T06:59:40Z +5917 2005-07-10T21:30:22Z 2910 74 2005-07-12T18:54:22Z 2 2020-02-15T06:59:40Z +5918 2005-07-10T21:32:06Z 120 34 2005-07-19T21:35:06Z 1 2020-02-15T06:59:40Z +5919 2005-07-10T21:32:14Z 164 92 2005-07-12T16:47:14Z 1 2020-02-15T06:59:40Z +5920 2005-07-10T21:33:58Z 1893 221 2005-07-17T19:41:58Z 2 2020-02-15T06:59:40Z +5921 2005-07-10T21:35:12Z 3920 7 2005-07-18T19:59:12Z 1 2020-02-15T06:59:40Z +5922 2005-07-10T21:36:53Z 1392 271 2005-07-16T02:51:53Z 1 2020-02-15T06:59:40Z +5923 2005-07-10T21:40:06Z 1817 401 2005-07-13T00:01:06Z 1 2020-02-15T06:59:40Z +5924 2005-07-10T21:41:23Z 629 191 2005-07-16T21:33:23Z 1 2020-02-15T06:59:40Z +5925 2005-07-10T21:41:27Z 3724 503 2005-07-18T18:35:27Z 2 2020-02-15T06:59:40Z +5926 2005-07-10T21:53:42Z 2840 282 2005-07-20T01:04:42Z 1 2020-02-15T06:59:40Z +5927 2005-07-10T21:57:14Z 807 70 2005-07-16T19:32:14Z 1 2020-02-15T06:59:40Z +5928 2005-07-10T21:58:30Z 4132 50 2005-07-15T19:41:30Z 1 2020-02-15T06:59:40Z +5929 2005-07-10T21:59:29Z 4303 54 2005-07-14T20:20:29Z 2 2020-02-15T06:59:40Z +5930 2005-07-10T21:59:32Z 2338 254 2005-07-11T18:40:32Z 2 2020-02-15T06:59:40Z +5931 2005-07-10T22:04:19Z 2259 341 2005-07-13T00:45:19Z 2 2020-02-15T06:59:40Z +5932 2005-07-10T22:05:15Z 2269 523 2005-07-12T17:04:15Z 2 2020-02-15T06:59:40Z +5933 2005-07-10T22:06:48Z 4372 419 2005-07-12T23:58:48Z 2 2020-02-15T06:59:40Z +5934 2005-07-10T22:07:59Z 3825 576 2005-07-15T21:07:59Z 2 2020-02-15T06:59:40Z +5935 2005-07-10T22:11:04Z 3371 258 2005-07-19T18:12:04Z 2 2020-02-15T06:59:40Z +5936 2005-07-10T22:14:30Z 1951 522 2005-07-15T01:32:30Z 1 2020-02-15T06:59:40Z +5937 2005-07-10T22:16:08Z 1579 580 2005-07-16T03:08:08Z 2 2020-02-15T06:59:40Z +5938 2005-07-10T22:17:42Z 2834 236 2005-07-16T22:38:42Z 2 2020-02-15T06:59:40Z +5939 2005-07-10T22:30:05Z 4491 207 2005-07-14T00:02:05Z 2 2020-02-15T06:59:40Z +5940 2005-07-10T22:31:01Z 3295 292 2005-07-14T00:52:01Z 1 2020-02-15T06:59:40Z +5941 2005-07-10T22:40:47Z 492 43 2005-07-17T00:19:47Z 2 2020-02-15T06:59:40Z +5942 2005-07-10T22:47:17Z 2861 317 2005-07-17T01:54:17Z 2 2020-02-15T06:59:40Z +5943 2005-07-10T22:48:13Z 3019 255 2005-07-16T01:33:13Z 1 2020-02-15T06:59:40Z +5944 2005-07-10T22:51:44Z 3904 432 2005-07-18T17:54:44Z 2 2020-02-15T06:59:40Z +5945 2005-07-10T22:52:42Z 427 374 2005-07-11T21:52:42Z 1 2020-02-15T06:59:40Z +5946 2005-07-10T22:57:29Z 1629 308 2005-07-12T00:08:29Z 1 2020-02-15T06:59:40Z +5947 2005-07-10T23:07:42Z 327 331 2005-07-18T23:13:42Z 1 2020-02-15T06:59:40Z +5948 2005-07-10T23:12:08Z 3260 57 2005-07-18T19:06:08Z 2 2020-02-15T06:59:40Z +5949 2005-07-10T23:13:00Z 4397 496 2005-07-14T01:10:00Z 2 2020-02-15T06:59:40Z +5950 2005-07-10T23:13:45Z 4319 585 2005-07-13T02:35:45Z 1 2020-02-15T06:59:40Z +5951 2005-07-10T23:14:29Z 2501 589 2005-07-13T01:01:29Z 1 2020-02-15T06:59:40Z +5952 2005-07-10T23:18:20Z 3406 595 2005-07-16T17:42:20Z 1 2020-02-15T06:59:40Z +5953 2005-07-10T23:21:35Z 992 386 2005-07-14T20:48:35Z 2 2020-02-15T06:59:40Z +5954 2005-07-10T23:22:01Z 2627 32 2005-07-14T04:42:01Z 2 2020-02-15T06:59:40Z +5955 2005-07-10T23:22:10Z 834 409 2005-07-17T17:55:10Z 2 2020-02-15T06:59:40Z +5956 2005-07-10T23:23:08Z 2536 499 2005-07-13T17:36:08Z 1 2020-02-15T06:59:40Z +5957 2005-07-10T23:24:02Z 2517 210 2005-07-12T20:28:02Z 1 2020-02-15T06:59:40Z +5958 2005-07-10T23:31:51Z 3468 430 2005-07-19T00:36:51Z 2 2020-02-15T06:59:40Z +5959 2005-07-10T23:35:36Z 3169 436 2005-07-13T02:19:36Z 1 2020-02-15T06:59:40Z +5960 2005-07-10T23:38:34Z 3884 239 2005-07-11T19:21:34Z 1 2020-02-15T06:59:40Z +5961 2005-07-10T23:43:23Z 3537 21 2005-07-15T05:21:23Z 2 2020-02-15T06:59:40Z +5962 2005-07-10T23:45:22Z 1292 507 2005-07-13T03:49:22Z 2 2020-02-15T06:59:40Z +5963 2005-07-10T23:47:08Z 4434 35 2005-07-12T04:27:08Z 1 2020-02-15T06:59:40Z +5964 2005-07-10T23:47:18Z 3981 456 2005-07-12T03:55:18Z 2 2020-02-15T06:59:40Z +5965 2005-07-10T23:51:52Z 4476 348 2005-07-11T23:29:52Z 1 2020-02-15T06:59:40Z +5966 2005-07-10T23:59:27Z 2076 384 2005-07-14T23:38:27Z 2 2020-02-15T06:59:40Z +5967 2005-07-11T00:02:19Z 2125 215 2005-07-18T23:08:19Z 1 2020-02-15T06:59:40Z +5968 2005-07-11T00:03:11Z 3273 554 2005-07-19T18:46:11Z 1 2020-02-15T06:59:40Z +5969 2005-07-11T00:03:22Z 4177 433 2005-07-18T01:28:22Z 2 2020-02-15T06:59:40Z +5970 2005-07-11T00:04:50Z 1514 94 2005-07-19T03:36:50Z 1 2020-02-15T06:59:40Z +5971 2005-07-11T00:05:58Z 2191 84 2005-07-19T04:50:58Z 2 2020-02-15T06:59:40Z +5972 2005-07-11T00:08:54Z 4577 30 2005-07-17T21:01:54Z 1 2020-02-15T06:59:40Z +5973 2005-07-11T00:09:17Z 1194 165 2005-07-14T19:18:17Z 1 2020-02-15T06:59:40Z +5974 2005-07-11T00:10:37Z 3984 517 2005-07-18T18:48:37Z 2 2020-02-15T06:59:40Z +5975 2005-07-11T00:14:19Z 2997 15 2005-07-16T04:21:19Z 1 2020-02-15T06:59:40Z +5976 2005-07-11T00:16:35Z 1693 505 2005-07-20T01:30:35Z 2 2020-02-15T06:59:40Z +5977 2005-07-11T00:16:38Z 4011 484 2005-07-19T21:00:38Z 1 2020-02-15T06:59:40Z +5978 2005-07-11T00:16:54Z 1720 508 2005-07-19T18:55:54Z 1 2020-02-15T06:59:40Z +5979 2005-07-11T00:17:09Z 1736 251 2005-07-14T00:38:09Z 1 2020-02-15T06:59:40Z +5980 2005-07-11T00:18:21Z 1777 309 2005-07-14T21:26:21Z 1 2020-02-15T06:59:40Z +5981 2005-07-11T00:19:04Z 2151 241 2005-07-13T19:10:04Z 1 2020-02-15T06:59:40Z +5982 2005-07-11T00:24:44Z 2329 403 2005-07-14T04:42:44Z 2 2020-02-15T06:59:40Z +5983 2005-07-11T00:34:11Z 351 127 2005-07-15T05:37:11Z 1 2020-02-15T06:59:40Z +5984 2005-07-11T00:44:36Z 2801 178 2005-07-15T00:04:36Z 1 2020-02-15T06:59:40Z +5985 2005-07-11T00:51:58Z 1108 506 2005-07-14T22:02:58Z 2 2020-02-15T06:59:40Z +5986 2005-07-11T00:54:56Z 1624 171 2005-07-13T22:52:56Z 2 2020-02-15T06:59:40Z +5987 2005-07-11T00:55:31Z 1000 447 2005-07-16T06:28:31Z 2 2020-02-15T06:59:40Z +5988 2005-07-11T00:55:38Z 151 158 2005-07-13T21:36:38Z 2 2020-02-15T06:59:40Z +5989 2005-07-11T00:57:53Z 696 283 2005-07-15T02:24:53Z 1 2020-02-15T06:59:40Z +5990 2005-07-11T01:03:14Z 1561 432 2005-07-15T19:32:14Z 1 2020-02-15T06:59:40Z +5991 2005-07-11T01:03:38Z 3623 590 2005-07-12T22:32:38Z 2 2020-02-15T06:59:40Z +5992 2005-07-11T01:06:21Z 4216 54 2005-07-13T19:15:21Z 2 2020-02-15T06:59:40Z +5993 2005-07-11T01:06:41Z 3588 529 2005-07-14T19:19:41Z 1 2020-02-15T06:59:40Z +5994 2005-07-11T01:14:10Z 4287 295 2005-07-12T00:42:10Z 2 2020-02-15T06:59:40Z +5995 2005-07-11T01:15:39Z 4357 360 2005-07-20T05:01:39Z 2 2020-02-15T06:59:40Z +5996 2005-07-11T01:18:33Z 4263 223 2005-07-17T04:18:33Z 1 2020-02-15T06:59:40Z +5997 2005-07-11T01:19:50Z 3542 128 2005-07-16T06:29:50Z 1 2020-02-15T06:59:40Z +5998 2005-07-11T01:20:46Z 1458 250 2005-07-15T21:41:46Z 1 2020-02-15T06:59:40Z +5999 2005-07-11T01:21:22Z 211 450 2005-07-19T01:35:22Z 1 2020-02-15T06:59:40Z +6000 2005-07-11T01:23:06Z 1986 371 2005-07-12T04:39:06Z 2 2020-02-15T06:59:40Z +6001 2005-07-11T01:24:44Z 1779 45 2005-07-11T22:55:44Z 1 2020-02-15T06:59:40Z +6002 2005-07-11T01:27:49Z 4422 45 2005-07-12T06:02:49Z 1 2020-02-15T06:59:40Z +6003 2005-07-11T01:28:33Z 296 527 2005-07-17T21:24:33Z 1 2020-02-15T06:59:40Z +6004 2005-07-11T01:34:25Z 1756 204 2005-07-18T00:48:25Z 2 2020-02-15T06:59:40Z +6005 2005-07-11T01:36:42Z 809 78 2005-07-14T04:47:42Z 2 2020-02-15T06:59:40Z +6006 2005-07-11T01:38:42Z 4201 399 2005-07-17T05:18:42Z 2 2020-02-15T06:59:40Z +6007 2005-07-11T01:43:06Z 4393 289 2005-07-17T04:46:06Z 1 2020-02-15T06:59:40Z +6008 2005-07-11T01:51:29Z 1227 216 2005-07-18T01:39:29Z 1 2020-02-15T06:59:40Z +6009 2005-07-11T01:51:58Z 494 470 2005-07-18T07:12:58Z 2 2020-02-15T06:59:40Z +6010 2005-07-11T01:52:28Z 771 285 2005-07-13T03:13:28Z 1 2020-02-15T06:59:40Z +6011 2005-07-11T01:54:48Z 3899 527 2005-07-18T07:17:48Z 2 2020-02-15T06:59:40Z +6012 2005-07-11T02:00:12Z 2609 258 2005-07-17T02:49:12Z 2 2020-02-15T06:59:40Z +6013 2005-07-11T02:02:03Z 3774 543 2005-07-14T02:07:03Z 1 2020-02-15T06:59:40Z +6014 2005-07-11T02:02:55Z 3748 397 2005-07-12T23:49:55Z 1 2020-02-15T06:59:40Z +6015 2005-07-11T02:04:12Z 295 596 2005-07-13T02:43:12Z 2 2020-02-15T06:59:40Z +6016 2005-07-11T02:04:45Z 651 296 2005-07-17T22:22:45Z 1 2020-02-15T06:59:40Z +6017 2005-07-11T02:05:32Z 4088 596 2005-07-14T22:50:32Z 1 2020-02-15T06:59:40Z +6018 2005-07-11T02:06:36Z 4555 500 2005-07-12T02:16:36Z 2 2020-02-15T06:59:40Z +6019 2005-07-11T02:08:29Z 3483 9 2005-07-13T02:19:29Z 2 2020-02-15T06:59:40Z +6020 2005-07-11T02:08:55Z 1974 71 2005-07-16T22:07:55Z 1 2020-02-15T06:59:40Z +6021 2005-07-11T02:10:18Z 3949 173 2005-07-13T05:19:18Z 1 2020-02-15T06:59:40Z +6022 2005-07-11T02:15:53Z 2435 469 2005-07-13T03:40:53Z 2 2020-02-15T06:59:40Z +6023 2005-07-11T02:15:57Z 3794 456 2005-07-15T21:30:57Z 2 2020-02-15T06:59:40Z +6024 2005-07-11T02:16:47Z 2923 271 2005-07-12T05:54:47Z 1 2020-02-15T06:59:40Z +6025 2005-07-11T02:18:13Z 3306 113 2005-07-11T23:30:13Z 1 2020-02-15T06:59:40Z +6026 2005-07-11T02:21:43Z 3936 409 2005-07-13T03:49:43Z 1 2020-02-15T06:59:40Z +6027 2005-07-11T02:26:29Z 4536 513 2005-07-18T23:05:29Z 1 2020-02-15T06:59:40Z +6028 2005-07-11T02:31:44Z 784 450 2005-07-14T03:18:44Z 1 2020-02-15T06:59:40Z +6029 2005-07-11T02:36:46Z 2030 520 2005-07-14T20:51:46Z 2 2020-02-15T06:59:40Z +6030 2005-07-11T02:37:51Z 95 36 2005-07-16T22:34:51Z 2 2020-02-15T06:59:40Z +6031 2005-07-11T02:42:14Z 1530 224 2005-07-14T03:24:14Z 2 2020-02-15T06:59:40Z +6032 2005-07-11T02:49:01Z 3792 28 2005-07-18T05:05:01Z 2 2020-02-15T06:59:40Z +6033 2005-07-11T02:59:34Z 2819 322 2005-07-16T03:48:34Z 2 2020-02-15T06:59:40Z +6034 2005-07-11T03:00:50Z 1735 324 2005-07-16T06:19:50Z 1 2020-02-15T06:59:40Z +6035 2005-07-11T03:01:45Z 3474 176 2005-07-14T01:04:45Z 2 2020-02-15T06:59:40Z +6036 2005-07-11T03:02:28Z 2553 297 2005-07-15T22:12:28Z 2 2020-02-15T06:59:40Z +6037 2005-07-11T03:06:54Z 1886 386 2005-07-12T22:46:54Z 2 2020-02-15T06:59:40Z +6038 2005-07-11T03:10:37Z 1555 243 2005-07-19T05:14:37Z 2 2020-02-15T06:59:40Z +6039 2005-07-11T03:12:19Z 1776 137 2005-07-19T05:46:19Z 1 2020-02-15T06:59:40Z +6040 2005-07-11T03:14:26Z 2161 511 2005-07-14T01:12:26Z 2 2020-02-15T06:59:40Z +6041 2005-07-11T03:14:58Z 2815 551 2005-07-13T00:48:58Z 2 2020-02-15T06:59:40Z +6042 2005-07-11T03:17:04Z 2153 5 2005-07-19T07:08:04Z 1 2020-02-15T06:59:40Z +6043 2005-07-11T03:18:10Z 3303 430 2005-07-12T05:50:10Z 1 2020-02-15T06:59:40Z +6044 2005-07-11T03:18:39Z 1270 481 2005-07-13T06:58:39Z 2 2020-02-15T06:59:40Z +6045 2005-07-11T03:21:05Z 2003 39 2005-07-17T23:10:05Z 1 2020-02-15T06:59:40Z +6046 2005-07-11T03:21:49Z 1935 569 2005-07-19T23:58:49Z 1 2020-02-15T06:59:40Z +6047 2005-07-11T03:27:01Z 4147 235 2005-07-16T06:42:01Z 2 2020-02-15T06:59:40Z +6048 2005-07-11T03:32:23Z 975 154 2005-07-14T07:39:23Z 1 2020-02-15T06:59:40Z +6049 2005-07-11T03:32:32Z 2582 236 2005-07-15T06:57:32Z 2 2020-02-15T06:59:40Z +6050 2005-07-11T03:34:29Z 825 527 2005-07-15T02:55:29Z 1 2020-02-15T06:59:40Z +6051 2005-07-11T03:46:41Z 2675 435 2005-07-11T22:36:41Z 2 2020-02-15T06:59:40Z +6052 2005-07-11T03:51:27Z 881 75 2005-07-16T02:55:27Z 2 2020-02-15T06:59:40Z +6053 2005-07-11T03:51:59Z 2836 237 2005-07-19T09:13:59Z 2 2020-02-15T06:59:40Z +6054 2005-07-11T03:58:39Z 1176 354 2005-07-13T23:08:39Z 1 2020-02-15T06:59:40Z +6055 2005-07-11T03:59:08Z 595 125 2005-07-18T05:35:08Z 2 2020-02-15T06:59:40Z +6056 2005-07-11T04:01:27Z 3069 145 2005-07-12T04:14:27Z 1 2020-02-15T06:59:40Z +6057 2005-07-11T04:03:40Z 1340 187 2005-07-17T01:34:40Z 2 2020-02-15T06:59:40Z +6058 2005-07-11T04:03:51Z 3761 498 2005-07-14T03:52:51Z 1 2020-02-15T06:59:40Z +6059 2005-07-11T04:03:54Z 1437 394 2005-07-18T01:35:54Z 1 2020-02-15T06:59:40Z +6060 2005-07-11T04:06:17Z 3146 342 2005-07-12T03:05:17Z 1 2020-02-15T06:59:40Z +6061 2005-07-11T04:06:25Z 1859 392 2005-07-11T23:11:25Z 1 2020-02-15T06:59:40Z +6062 2005-07-11T04:11:58Z 3301 408 2005-07-15T05:00:58Z 1 2020-02-15T06:59:40Z +6063 2005-07-11T04:16:51Z 1715 519 2005-07-13T08:35:51Z 2 2020-02-15T06:59:40Z +6064 2005-07-11T04:23:18Z 265 297 2005-07-19T02:21:18Z 1 2020-02-15T06:59:40Z +6065 2005-07-11T04:25:51Z 1007 562 2005-07-17T08:19:51Z 1 2020-02-15T06:59:40Z +6066 2005-07-11T04:32:42Z 1877 155 2005-07-15T03:56:42Z 2 2020-02-15T06:59:40Z +6067 2005-07-11T04:34:49Z 2097 186 2005-07-16T09:33:49Z 1 2020-02-15T06:59:40Z +6068 2005-07-11T04:41:09Z 2331 265 2005-07-14T04:45:09Z 1 2020-02-15T06:59:40Z +6069 2005-07-11T04:44:59Z 256 553 2005-07-13T01:00:59Z 1 2020-02-15T06:59:40Z +6070 2005-07-11T04:47:42Z 1679 267 2005-07-13T01:49:42Z 2 2020-02-15T06:59:40Z +6071 2005-07-11T04:50:03Z 889 179 2005-07-19T23:52:03Z 1 2020-02-15T06:59:40Z +6072 2005-07-11T04:52:40Z 1790 339 2005-07-18T01:02:40Z 1 2020-02-15T06:59:40Z +6073 2005-07-11T04:54:31Z 4243 466 2005-07-20T07:23:31Z 1 2020-02-15T06:59:40Z +6074 2005-07-11T04:59:56Z 2876 259 2005-07-13T23:31:56Z 1 2020-02-15T06:59:40Z +6075 2005-07-11T05:03:03Z 2160 283 2005-07-12T01:28:03Z 1 2020-02-15T06:59:40Z +6076 2005-07-11T05:05:30Z 1792 143 2005-07-18T04:22:30Z 1 2020-02-15T06:59:40Z +6077 2005-07-11T05:06:08Z 2154 542 2005-07-16T10:29:08Z 1 2020-02-15T06:59:40Z +6078 2005-07-11T05:06:52Z 3985 91 2005-07-17T06:13:52Z 2 2020-02-15T06:59:40Z +6079 2005-07-11T05:07:14Z 1494 119 2005-07-17T08:45:14Z 1 2020-02-15T06:59:40Z +6080 2005-07-11T05:08:11Z 2682 115 2005-07-16T09:54:11Z 2 2020-02-15T06:59:40Z +6081 2005-07-11T05:11:09Z 2286 72 2005-07-13T05:33:09Z 2 2020-02-15T06:59:40Z +6082 2005-07-11T05:12:41Z 1091 82 2005-07-16T03:40:41Z 2 2020-02-15T06:59:40Z +6083 2005-07-11T05:12:49Z 3183 285 2005-07-15T00:46:49Z 2 2020-02-15T06:59:40Z +6084 2005-07-11T05:16:20Z 1334 479 2005-07-19T01:38:20Z 2 2020-02-15T06:59:40Z +6085 2005-07-11T05:24:36Z 312 155 2005-07-16T03:49:36Z 2 2020-02-15T06:59:40Z +6086 2005-07-11T05:29:03Z 1505 420 2005-07-16T01:17:03Z 1 2020-02-15T06:59:40Z +6087 2005-07-11T05:29:22Z 198 155 2005-07-12T23:33:22Z 2 2020-02-15T06:59:40Z +6088 2005-07-11T05:40:35Z 3796 498 2005-07-17T07:14:35Z 2 2020-02-15T06:59:40Z +6089 2005-07-11T05:45:59Z 3298 580 2005-07-17T11:04:59Z 2 2020-02-15T06:59:40Z +6090 2005-07-11T05:47:08Z 71 241 2005-07-20T07:52:08Z 2 2020-02-15T06:59:40Z +6091 2005-07-11T05:49:18Z 580 383 2005-07-15T07:26:18Z 1 2020-02-15T06:59:40Z +6092 2005-07-11T05:51:31Z 2129 75 2005-07-17T03:42:31Z 1 2020-02-15T06:59:40Z +6093 2005-07-11T05:52:50Z 1868 117 2005-07-20T11:45:50Z 1 2020-02-15T06:59:40Z +6094 2005-07-11T05:54:42Z 2684 285 2005-07-18T08:19:42Z 2 2020-02-15T06:59:40Z +6095 2005-07-11T06:06:41Z 727 501 2005-07-19T06:14:41Z 1 2020-02-15T06:59:40Z +6096 2005-07-11T06:18:04Z 2720 420 2005-07-14T01:15:04Z 1 2020-02-15T06:59:40Z +6097 2005-07-11T06:21:43Z 297 416 2005-07-16T10:04:43Z 1 2020-02-15T06:59:40Z +6098 2005-07-11T06:23:28Z 3016 525 2005-07-17T04:05:28Z 1 2020-02-15T06:59:40Z +6099 2005-07-11T06:24:44Z 3865 469 2005-07-15T08:03:44Z 2 2020-02-15T06:59:40Z +6100 2005-07-11T06:40:31Z 3485 16 2005-07-14T10:59:31Z 2 2020-02-15T06:59:40Z +6101 2005-07-11T06:50:33Z 2618 508 2005-07-18T01:52:33Z 2 2020-02-15T06:59:40Z +6102 2005-07-11T06:53:09Z 4305 146 2005-07-17T07:05:09Z 1 2020-02-15T06:59:40Z +6103 2005-07-11T06:59:55Z 262 540 2005-07-16T09:30:55Z 1 2020-02-15T06:59:40Z +6104 2005-07-11T07:01:35Z 3531 389 2005-07-17T02:29:35Z 1 2020-02-15T06:59:40Z +6105 2005-07-11T07:03:19Z 3501 595 2005-07-19T06:46:19Z 1 2020-02-15T06:59:40Z +6106 2005-07-11T07:05:06Z 2714 185 2005-07-20T09:27:06Z 1 2020-02-15T06:59:40Z +6107 2005-07-11T07:07:09Z 3798 304 2005-07-14T07:32:09Z 2 2020-02-15T06:59:40Z +6108 2005-07-11T07:19:24Z 4296 572 2005-07-13T12:38:24Z 2 2020-02-15T06:59:40Z +6109 2005-07-11T07:20:57Z 3603 163 2005-07-13T07:29:57Z 2 2020-02-15T06:59:40Z +6110 2005-07-11T07:23:47Z 541 405 2005-07-20T03:17:47Z 2 2020-02-15T06:59:40Z +6111 2005-07-11T07:26:57Z 3504 300 2005-07-13T10:43:57Z 2 2020-02-15T06:59:40Z +6112 2005-07-11T07:28:05Z 1311 366 2005-07-18T07:29:05Z 1 2020-02-15T06:59:40Z +6113 2005-07-11T07:31:08Z 4437 115 2005-07-20T11:01:08Z 2 2020-02-15T06:59:40Z +6114 2005-07-11T07:33:48Z 479 404 2005-07-18T06:13:48Z 2 2020-02-15T06:59:40Z +6115 2005-07-11T07:36:50Z 3415 27 2005-07-13T11:30:50Z 1 2020-02-15T06:59:40Z +6116 2005-07-11T07:37:38Z 247 381 2005-07-14T11:53:38Z 2 2020-02-15T06:59:40Z +6117 2005-07-11T07:39:38Z 2613 135 2005-07-18T12:07:38Z 2 2020-02-15T06:59:40Z +6118 2005-07-11T07:43:08Z 3013 13 2005-07-20T03:17:08Z 1 2020-02-15T06:59:40Z +6119 2005-07-11T07:44:46Z 4281 472 2005-07-20T04:41:46Z 2 2020-02-15T06:59:40Z +6120 2005-07-11T07:49:53Z 3299 268 2005-07-19T04:56:53Z 2 2020-02-15T06:59:40Z +6121 2005-07-11T07:55:27Z 1613 347 2005-07-16T03:43:27Z 2 2020-02-15T06:59:40Z +6122 2005-07-11T07:58:07Z 2212 32 2005-07-16T09:52:07Z 1 2020-02-15T06:59:40Z +6123 2005-07-11T08:02:27Z 1354 200 2005-07-15T08:58:27Z 2 2020-02-15T06:59:40Z +6124 2005-07-11T08:02:32Z 2022 368 2005-07-12T05:58:32Z 2 2020-02-15T06:59:40Z +6125 2005-07-11T08:03:35Z 2439 307 2005-07-18T12:46:35Z 1 2020-02-15T06:59:40Z +6126 2005-07-11T08:06:56Z 1069 230 2005-07-16T11:42:56Z 1 2020-02-15T06:59:40Z +6127 2005-07-11T08:06:59Z 285 355 2005-07-12T09:01:59Z 1 2020-02-15T06:59:40Z +6128 2005-07-11T08:15:08Z 2050 18 2005-07-13T03:36:08Z 1 2020-02-15T06:59:40Z +6129 2005-07-11T08:15:09Z 3875 222 2005-07-18T13:00:09Z 1 2020-02-15T06:59:40Z +6130 2005-07-11T08:19:56Z 2547 538 2005-07-16T12:02:56Z 2 2020-02-15T06:59:40Z +6131 2005-07-11T08:22:05Z 3313 107 2005-07-14T07:40:05Z 1 2020-02-15T06:59:40Z +6132 2005-07-11T08:24:44Z 3229 319 2005-07-13T06:41:44Z 1 2020-02-15T06:59:40Z +6133 2005-07-11T08:25:22Z 1992 107 2005-07-13T13:17:22Z 1 2020-02-15T06:59:40Z +6134 2005-07-11T08:28:19Z 3225 305 2005-07-18T09:20:19Z 2 2020-02-15T06:59:40Z +6135 2005-07-11T08:32:23Z 833 325 2005-07-17T08:43:23Z 1 2020-02-15T06:59:40Z +6136 2005-07-11T08:34:09Z 205 346 2005-07-14T06:11:09Z 1 2020-02-15T06:59:40Z +6137 2005-07-11T08:34:20Z 2029 67 2005-07-13T03:31:20Z 2 2020-02-15T06:59:40Z +6138 2005-07-11T08:36:04Z 1808 438 2005-07-13T10:30:04Z 2 2020-02-15T06:59:40Z +6139 2005-07-11T08:39:33Z 3065 206 2005-07-17T08:00:33Z 2 2020-02-15T06:59:40Z +6140 2005-07-11T08:40:47Z 2749 363 2005-07-14T07:26:47Z 1 2020-02-15T06:59:40Z +6141 2005-07-11T08:52:16Z 2279 228 2005-07-17T03:00:16Z 1 2020-02-15T06:59:40Z +6142 2005-07-11T08:54:09Z 1722 136 2005-07-18T05:23:09Z 2 2020-02-15T06:59:40Z +6143 2005-07-11T09:02:37Z 1030 169 2005-07-19T05:57:37Z 2 2020-02-15T06:59:40Z +6144 2005-07-11T09:02:53Z 1077 554 2005-07-15T10:58:53Z 2 2020-02-15T06:59:40Z +6145 2005-07-11T09:07:01Z 1359 540 2005-07-19T08:21:01Z 1 2020-02-15T06:59:40Z +6146 2005-07-11T09:09:59Z 3374 11 2005-07-20T11:42:59Z 2 2020-02-15T06:59:40Z +6147 2005-07-11T09:13:08Z 910 35 2005-07-17T03:48:08Z 1 2020-02-15T06:59:40Z +6148 2005-07-11T09:14:22Z 4318 410 2005-07-12T08:01:22Z 1 2020-02-15T06:59:40Z +6149 2005-07-11T09:19:31Z 4337 26 2005-07-17T14:45:31Z 2 2020-02-15T06:59:40Z +6150 2005-07-11T09:23:56Z 1110 418 2005-07-15T10:56:56Z 2 2020-02-15T06:59:40Z +6151 2005-07-11T09:25:17Z 352 476 2005-07-12T05:11:17Z 1 2020-02-15T06:59:40Z +6152 2005-07-11T09:25:52Z 560 361 2005-07-17T07:40:52Z 2 2020-02-15T06:59:40Z +6153 2005-07-11T09:31:04Z 105 47 2005-07-19T03:41:04Z 1 2020-02-15T06:59:40Z +6154 2005-07-11T09:32:19Z 2717 368 2005-07-16T15:10:19Z 1 2020-02-15T06:59:40Z +6155 2005-07-11T09:45:31Z 785 229 2005-07-18T08:09:31Z 1 2020-02-15T06:59:40Z +6156 2005-07-11T09:45:48Z 302 297 2005-07-15T04:51:48Z 1 2020-02-15T06:59:40Z +6157 2005-07-11T09:48:16Z 4481 133 2005-07-16T05:00:16Z 2 2020-02-15T06:59:40Z +6158 2005-07-11T09:50:24Z 3954 92 2005-07-13T04:49:24Z 2 2020-02-15T06:59:40Z +6159 2005-07-11T09:55:34Z 126 225 2005-07-13T10:01:34Z 2 2020-02-15T06:59:40Z +6160 2005-07-11T10:08:13Z 2716 110 2005-07-14T08:18:13Z 1 2020-02-15T06:59:40Z +6161 2005-07-11T10:11:54Z 3681 524 2005-07-15T12:12:54Z 2 2020-02-15T06:59:40Z +6162 2005-07-11T10:12:30Z 786 79 2005-07-19T06:02:30Z 2 2020-02-15T06:59:40Z +6163 2005-07-11T10:13:46Z 1330 1 2005-07-19T13:15:46Z 2 2020-02-15T06:59:40Z +6164 2005-07-11T10:16:23Z 2755 47 2005-07-14T11:21:23Z 1 2020-02-15T06:59:40Z +6165 2005-07-11T10:17:29Z 3540 9 2005-07-17T07:27:29Z 1 2020-02-15T06:59:40Z +6166 2005-07-11T10:19:05Z 967 503 2005-07-12T14:30:05Z 1 2020-02-15T06:59:40Z +6167 2005-07-11T10:21:21Z 3255 200 2005-07-14T15:38:21Z 1 2020-02-15T06:59:40Z +6168 2005-07-11T10:21:38Z 284 77 2005-07-14T09:55:38Z 2 2020-02-15T06:59:41Z +6169 2005-07-11T10:25:56Z 2781 148 2005-07-19T07:18:56Z 2 2020-02-15T06:59:41Z +6170 2005-07-11T10:29:21Z 278 580 2005-07-16T05:13:21Z 2 2020-02-15T06:59:41Z +6171 2005-07-11T10:29:35Z 448 491 2005-07-16T12:01:35Z 1 2020-02-15T06:59:41Z +6172 2005-07-11T10:32:09Z 3514 219 2005-07-14T16:23:09Z 1 2020-02-15T06:59:41Z +6173 2005-07-11T10:33:11Z 4252 419 2005-07-15T10:57:11Z 1 2020-02-15T06:59:41Z +6174 2005-07-11T10:36:28Z 3123 7 2005-07-18T16:19:28Z 2 2020-02-15T06:59:41Z +6175 2005-07-11T10:44:37Z 3037 195 2005-07-15T08:13:37Z 1 2020-02-15T06:59:41Z +6176 2005-07-11T10:48:21Z 2969 279 2005-07-12T15:54:21Z 2 2020-02-15T06:59:41Z +6177 2005-07-11T10:53:49Z 313 589 2005-07-17T14:54:49Z 1 2020-02-15T06:59:41Z +6178 2005-07-11T10:59:09Z 2777 91 2005-07-16T11:19:09Z 2 2020-02-15T06:59:41Z +6179 2005-07-11T10:59:59Z 3665 42 2005-07-17T06:02:59Z 1 2020-02-15T06:59:41Z +6180 2005-07-11T11:06:50Z 4401 351 2005-07-19T09:03:50Z 2 2020-02-15T06:59:41Z +6181 2005-07-11T11:10:11Z 4398 200 2005-07-15T09:33:11Z 1 2020-02-15T06:59:41Z +6182 2005-07-11T11:11:38Z 2562 540 2005-07-17T08:33:38Z 2 2020-02-15T06:59:41Z +6183 2005-07-11T11:14:35Z 856 402 2005-07-16T15:35:35Z 1 2020-02-15T06:59:41Z +6184 2005-07-11T11:19:21Z 1131 146 2005-07-19T07:35:21Z 1 2020-02-15T06:59:41Z +6185 2005-07-11T11:25:09Z 4331 294 2005-07-18T12:09:09Z 2 2020-02-15T06:59:41Z +6186 2005-07-11T11:26:41Z 2086 128 2005-07-17T12:02:41Z 2 2020-02-15T06:59:41Z +6187 2005-07-11T11:28:51Z 3344 500 2005-07-12T15:44:51Z 1 2020-02-15T06:59:41Z +6188 2005-07-11T11:31:47Z 189 114 2005-07-15T09:28:47Z 1 2020-02-15T06:59:41Z +6189 2005-07-11T11:36:03Z 3800 552 2005-07-20T15:33:03Z 2 2020-02-15T06:59:41Z +6190 2005-07-11T11:36:18Z 2564 321 2005-07-19T17:05:18Z 2 2020-02-15T06:59:41Z +6191 2005-07-11T11:37:52Z 3448 480 2005-07-17T12:45:52Z 1 2020-02-15T06:59:41Z +6192 2005-07-11T11:44:41Z 4573 314 2005-07-19T10:12:41Z 1 2020-02-15T06:59:41Z +6193 2005-07-11T11:46:57Z 465 189 2005-07-19T14:11:57Z 2 2020-02-15T06:59:41Z +6194 2005-07-11T11:51:00Z 1049 83 2005-07-15T12:34:00Z 2 2020-02-15T06:59:41Z +6195 2005-07-11T12:00:32Z 4193 319 2005-07-16T15:00:32Z 2 2020-02-15T06:59:41Z +6196 2005-07-11T12:05:46Z 995 429 2005-07-18T08:27:46Z 2 2020-02-15T06:59:41Z +6197 2005-07-11T12:09:51Z 4156 596 2005-07-12T06:15:51Z 1 2020-02-15T06:59:41Z +6198 2005-07-11T12:12:17Z 3345 470 2005-07-18T07:40:17Z 2 2020-02-15T06:59:41Z +6199 2005-07-11T12:16:03Z 4329 80 2005-07-18T15:33:03Z 2 2020-02-15T06:59:41Z +6200 2005-07-11T12:16:42Z 3258 137 2005-07-17T09:27:42Z 2 2020-02-15T06:59:41Z +6201 2005-07-11T12:18:07Z 4530 559 2005-07-12T12:11:07Z 2 2020-02-15T06:59:41Z +6202 2005-07-11T12:24:25Z 1424 373 2005-07-18T08:13:25Z 1 2020-02-15T06:59:41Z +6203 2005-07-11T12:28:57Z 1001 408 2005-07-15T14:10:57Z 1 2020-02-15T06:59:41Z +6204 2005-07-11T12:29:22Z 2572 362 2005-07-13T10:41:22Z 2 2020-02-15T06:59:41Z +6205 2005-07-11T12:31:24Z 3442 303 2005-07-13T11:31:24Z 2 2020-02-15T06:59:41Z +6206 2005-07-11T12:32:14Z 1368 459 2005-07-15T15:01:14Z 2 2020-02-15T06:59:41Z +6207 2005-07-11T12:34:24Z 3226 143 2005-07-14T10:15:24Z 2 2020-02-15T06:59:41Z +6208 2005-07-11T12:34:56Z 672 31 2005-07-19T15:17:56Z 1 2020-02-15T06:59:41Z +6209 2005-07-11T12:36:05Z 3091 219 2005-07-17T14:48:05Z 2 2020-02-15T06:59:41Z +6210 2005-07-11T12:36:43Z 931 209 2005-07-17T17:45:43Z 2 2020-02-15T06:59:41Z +6211 2005-07-11T12:39:01Z 2699 6 2005-07-20T15:59:01Z 2 2020-02-15T06:59:41Z +6212 2005-07-11T12:40:48Z 3962 337 2005-07-15T17:49:48Z 2 2020-02-15T06:59:41Z +6213 2005-07-11T12:43:07Z 485 23 2005-07-16T07:23:07Z 2 2020-02-15T06:59:41Z +6214 2005-07-11T12:49:48Z 1258 49 2005-07-18T07:41:48Z 2 2020-02-15T06:59:41Z +6215 2005-07-11T12:52:36Z 316 390 2005-07-12T08:33:36Z 1 2020-02-15T06:59:41Z +6216 2005-07-11T12:57:05Z 3571 387 2005-07-13T12:31:05Z 1 2020-02-15T06:59:41Z +6217 2005-07-11T13:13:45Z 1090 177 2005-07-19T16:37:45Z 2 2020-02-15T06:59:41Z +6218 2005-07-11T13:14:58Z 815 410 2005-07-16T08:13:58Z 2 2020-02-15T06:59:41Z +6219 2005-07-11T13:18:37Z 38 303 2005-07-13T13:18:37Z 2 2020-02-15T06:59:41Z +6220 2005-07-11T13:22:06Z 1717 421 2005-07-12T17:46:06Z 2 2020-02-15T06:59:41Z +6221 2005-07-11T13:24:27Z 1699 393 2005-07-15T17:51:27Z 1 2020-02-15T06:59:41Z +6222 2005-07-11T13:25:49Z 2066 386 2005-07-13T14:32:49Z 1 2020-02-15T06:59:41Z +6223 2005-07-11T13:27:09Z 3754 192 2005-07-12T14:02:09Z 1 2020-02-15T06:59:41Z +6224 2005-07-11T13:42:18Z 3274 475 2005-07-16T09:28:18Z 1 2020-02-15T06:59:41Z +6225 2005-07-11T13:45:14Z 2483 204 2005-07-14T10:23:14Z 1 2020-02-15T06:59:41Z +6226 2005-07-11T13:48:11Z 2758 134 2005-07-15T17:18:11Z 2 2020-02-15T06:59:41Z +6227 2005-07-11T13:56:46Z 1654 210 2005-07-18T12:53:46Z 1 2020-02-15T06:59:41Z +6228 2005-07-11T13:58:36Z 2281 367 2005-07-17T19:03:36Z 2 2020-02-15T06:59:41Z +6229 2005-07-11T13:59:50Z 3137 399 2005-07-20T09:26:50Z 1 2020-02-15T06:59:41Z +6230 2005-07-11T14:02:19Z 2260 490 2005-07-17T08:11:19Z 2 2020-02-15T06:59:41Z +6231 2005-07-11T14:02:36Z 2526 122 2005-07-13T19:04:36Z 2 2020-02-15T06:59:41Z +6232 2005-07-11T14:08:27Z 2492 590 2005-07-20T19:34:27Z 2 2020-02-15T06:59:41Z +6233 2005-07-11T14:10:47Z 3731 378 2005-07-15T15:13:47Z 2 2020-02-15T06:59:41Z +6234 2005-07-11T14:16:10Z 2911 232 2005-07-19T19:55:10Z 1 2020-02-15T06:59:41Z +6235 2005-07-11T14:17:51Z 2659 379 2005-07-17T11:14:51Z 2 2020-02-15T06:59:41Z +6236 2005-07-11T14:18:17Z 3813 338 2005-07-14T08:47:17Z 2 2020-02-15T06:59:41Z +6237 2005-07-11T14:19:12Z 2215 166 2005-07-15T15:05:12Z 1 2020-02-15T06:59:41Z +6238 2005-07-11T14:20:18Z 3749 23 2005-07-14T18:34:18Z 1 2020-02-15T06:59:41Z +6239 2005-07-11T14:20:48Z 4107 132 2005-07-17T13:41:48Z 2 2020-02-15T06:59:41Z +6240 2005-07-11T14:32:41Z 640 524 2005-07-20T18:38:41Z 1 2020-02-15T06:59:41Z +6241 2005-07-11T14:40:48Z 4449 74 2005-07-18T09:51:48Z 1 2020-02-15T06:59:41Z +6242 2005-07-11T14:45:04Z 670 245 2005-07-12T18:34:04Z 2 2020-02-15T06:59:41Z +6243 2005-07-11T14:53:25Z 3456 26 2005-07-15T09:26:25Z 2 2020-02-15T06:59:41Z +6244 2005-07-11T14:53:38Z 1558 383 2005-07-12T16:42:38Z 1 2020-02-15T06:59:41Z +6245 2005-07-11T14:56:57Z 512 241 2005-07-16T14:35:57Z 1 2020-02-15T06:59:41Z +6246 2005-07-11T14:57:51Z 2376 172 2005-07-19T19:10:51Z 2 2020-02-15T06:59:41Z +6247 2005-07-11T15:00:05Z 2504 589 2005-07-18T13:47:05Z 1 2020-02-15T06:59:41Z +6248 2005-07-11T15:01:54Z 2686 6 2005-07-19T16:58:54Z 1 2020-02-15T06:59:41Z +6249 2005-07-11T15:02:02Z 4334 30 2005-07-14T11:37:02Z 2 2020-02-15T06:59:41Z +6250 2005-07-11T15:02:04Z 4087 458 2005-07-17T10:54:04Z 1 2020-02-15T06:59:41Z +6251 2005-07-11T15:06:20Z 3956 230 2005-07-18T20:11:20Z 2 2020-02-15T06:59:41Z +6252 2005-07-11T15:06:29Z 1294 295 2005-07-16T14:07:29Z 1 2020-02-15T06:59:41Z +6253 2005-07-11T15:07:19Z 1425 570 2005-07-13T11:00:19Z 1 2020-02-15T06:59:41Z +6254 2005-07-11T15:10:18Z 2038 20 2005-07-17T14:20:18Z 2 2020-02-15T06:59:41Z +6255 2005-07-11T15:11:33Z 1459 319 2005-07-15T19:55:33Z 2 2020-02-15T06:59:41Z +6256 2005-07-11T15:19:22Z 480 307 2005-07-13T12:43:22Z 1 2020-02-15T06:59:41Z +6257 2005-07-11T15:23:46Z 3253 492 2005-07-14T17:26:46Z 2 2020-02-15T06:59:41Z +6258 2005-07-11T15:24:32Z 632 417 2005-07-18T18:29:32Z 1 2020-02-15T06:59:41Z +6259 2005-07-11T15:25:52Z 3007 84 2005-07-13T11:54:52Z 2 2020-02-15T06:59:41Z +6260 2005-07-11T15:26:29Z 4308 454 2005-07-13T17:37:29Z 2 2020-02-15T06:59:41Z +6261 2005-07-11T15:28:34Z 694 386 2005-07-14T17:54:34Z 1 2020-02-15T06:59:41Z +6262 2005-07-11T15:33:24Z 4136 355 2005-07-17T12:40:24Z 1 2020-02-15T06:59:41Z +6263 2005-07-11T15:33:50Z 2391 336 2005-07-17T12:49:50Z 2 2020-02-15T06:59:41Z +6264 2005-07-11T15:42:35Z 4246 565 2005-07-12T11:29:35Z 2 2020-02-15T06:59:41Z +6265 2005-07-11T15:43:51Z 3931 477 2005-07-12T12:51:51Z 2 2020-02-15T06:59:41Z +6266 2005-07-11T15:45:39Z 941 397 2005-07-15T18:29:39Z 1 2020-02-15T06:59:41Z +6267 2005-07-11T15:53:00Z 2152 20 2005-07-17T18:09:00Z 2 2020-02-15T06:59:41Z +6268 2005-07-11T15:55:34Z 1154 125 2005-07-19T17:25:34Z 1 2020-02-15T06:59:41Z +6269 2005-07-11T15:58:43Z 3915 167 2005-07-13T13:25:43Z 1 2020-02-15T06:59:41Z +6270 2005-07-11T15:59:10Z 2308 292 2005-07-18T10:29:10Z 2 2020-02-15T06:59:41Z +6271 2005-07-11T16:01:35Z 1246 467 2005-07-20T12:07:35Z 2 2020-02-15T06:59:41Z +6272 2005-07-11T16:03:49Z 3103 240 2005-07-15T19:54:49Z 1 2020-02-15T06:59:41Z +6273 2005-07-11T16:08:41Z 2403 152 2005-07-14T16:41:41Z 2 2020-02-15T06:59:41Z +6274 2005-07-11T16:09:42Z 2998 472 2005-07-19T20:46:42Z 1 2020-02-15T06:59:41Z +6275 2005-07-11T16:12:11Z 3599 333 2005-07-17T20:19:11Z 2 2020-02-15T06:59:41Z +6276 2005-07-11T16:15:50Z 1826 284 2005-07-19T20:50:50Z 2 2020-02-15T06:59:41Z +6277 2005-07-11T16:19:01Z 4023 92 2005-07-18T21:00:01Z 2 2020-02-15T06:59:41Z +6278 2005-07-11T16:20:02Z 2232 558 2005-07-19T19:29:02Z 2 2020-02-15T06:59:41Z +6279 2005-07-11T16:26:07Z 1254 49 2005-07-17T21:05:07Z 2 2020-02-15T06:59:41Z +6280 2005-07-11T16:36:17Z 4055 33 2005-07-13T14:04:17Z 2 2020-02-15T06:59:41Z +6281 2005-07-11T16:38:16Z 835 236 2005-07-13T10:57:16Z 2 2020-02-15T06:59:41Z +6282 2005-07-11T16:46:22Z 4453 60 2005-07-15T13:19:22Z 1 2020-02-15T06:59:41Z +6283 2005-07-11T16:47:32Z 3319 402 2005-07-17T21:46:32Z 1 2020-02-15T06:59:41Z +6284 2005-07-11T16:51:39Z 2938 177 2005-07-15T19:59:39Z 1 2020-02-15T06:59:41Z +6285 2005-07-11T16:52:07Z 2140 444 2005-07-13T21:33:07Z 2 2020-02-15T06:59:41Z +6286 2005-07-11T16:55:35Z 1070 140 2005-07-13T22:51:35Z 1 2020-02-15T06:59:41Z +6287 2005-07-11T17:00:04Z 35 93 2005-07-12T13:16:04Z 1 2020-02-15T06:59:41Z +6288 2005-07-11T17:01:52Z 3235 357 2005-07-19T15:11:52Z 1 2020-02-15T06:59:41Z +6289 2005-07-11T17:06:39Z 3185 99 2005-07-12T15:54:39Z 2 2020-02-15T06:59:41Z +6290 2005-07-11T17:12:42Z 2634 66 2005-07-19T21:53:42Z 2 2020-02-15T06:59:41Z +6291 2005-07-11T17:16:40Z 3126 262 2005-07-13T18:24:40Z 2 2020-02-15T06:59:41Z +6292 2005-07-11T17:23:33Z 4375 505 2005-07-12T16:27:33Z 2 2020-02-15T06:59:41Z +6293 2005-07-11T17:24:57Z 4260 471 2005-07-13T18:45:57Z 2 2020-02-15T06:59:41Z +6294 2005-07-11T17:25:55Z 1732 463 2005-07-15T17:48:55Z 1 2020-02-15T06:59:41Z +6295 2005-07-11T17:30:58Z 1393 7 2005-07-15T15:50:58Z 1 2020-02-15T06:59:41Z +6296 2005-07-11T17:34:04Z 4202 484 2005-07-17T21:12:04Z 1 2020-02-15T06:59:41Z +6297 2005-07-11T17:37:22Z 2738 69 2005-07-19T13:54:22Z 2 2020-02-15T06:59:41Z +6298 2005-07-11T17:42:33Z 3906 256 2005-07-13T18:14:33Z 2 2020-02-15T06:59:41Z +6299 2005-07-11T17:45:08Z 4125 324 2005-07-13T16:36:08Z 2 2020-02-15T06:59:41Z +6300 2005-07-11T17:50:09Z 1269 283 2005-07-18T13:11:09Z 1 2020-02-15T06:59:41Z +6301 2005-07-11T17:54:09Z 3528 275 2005-07-18T20:42:09Z 2 2020-02-15T06:59:41Z +6302 2005-07-11T17:55:38Z 3221 391 2005-07-17T22:11:38Z 1 2020-02-15T06:59:41Z +6303 2005-07-11T17:55:43Z 846 236 2005-07-13T12:50:43Z 1 2020-02-15T06:59:41Z +6304 2005-07-11T18:02:16Z 4183 579 2005-07-14T14:01:16Z 1 2020-02-15T06:59:41Z +6305 2005-07-11T18:02:25Z 1544 337 2005-07-20T13:29:25Z 1 2020-02-15T06:59:41Z +6306 2005-07-11T18:04:26Z 486 208 2005-07-20T14:22:26Z 2 2020-02-15T06:59:41Z +6307 2005-07-11T18:04:29Z 4029 345 2005-07-17T23:40:29Z 2 2020-02-15T06:59:41Z +6308 2005-07-11T18:08:41Z 3155 472 2005-07-19T15:48:41Z 2 2020-02-15T06:59:41Z +6309 2005-07-11T18:13:24Z 1054 232 2005-07-13T23:11:24Z 1 2020-02-15T06:59:41Z +6310 2005-07-11T18:14:05Z 3064 537 2005-07-16T15:39:05Z 2 2020-02-15T06:59:41Z +6311 2005-07-11T18:18:52Z 1789 373 2005-07-16T17:52:52Z 2 2020-02-15T06:59:41Z +6312 2005-07-11T18:19:02Z 2188 417 2005-07-18T00:00:02Z 1 2020-02-15T06:59:41Z +6313 2005-07-11T18:29:52Z 2976 283 2005-07-14T21:34:52Z 1 2020-02-15T06:59:41Z +6314 2005-07-11T18:32:44Z 4128 55 2005-07-17T23:58:44Z 1 2020-02-15T06:59:41Z +6315 2005-07-11T18:42:49Z 608 374 2005-07-12T23:19:49Z 2 2020-02-15T06:59:41Z +6316 2005-07-11T18:44:52Z 1910 526 2005-07-19T23:35:52Z 2 2020-02-15T06:59:41Z +6317 2005-07-11T18:47:41Z 4206 225 2005-07-14T18:18:41Z 1 2020-02-15T06:59:41Z +6318 2005-07-11T18:48:22Z 2048 425 2005-07-12T13:39:22Z 1 2020-02-15T06:59:41Z +6319 2005-07-11T18:50:45Z 3739 233 2005-07-12T15:26:45Z 1 2020-02-15T06:59:41Z +6320 2005-07-11T18:50:55Z 441 511 2005-07-13T22:46:55Z 2 2020-02-15T06:59:41Z +6321 2005-07-11T18:51:02Z 2655 388 2005-07-14T20:57:02Z 2 2020-02-15T06:59:41Z +6322 2005-07-11T18:58:20Z 4115 403 2005-07-14T16:41:20Z 2 2020-02-15T06:59:41Z +6323 2005-07-11T19:02:19Z 1352 346 2005-07-14T15:54:19Z 1 2020-02-15T06:59:41Z +6324 2005-07-11T19:02:34Z 655 386 2005-07-17T15:57:34Z 1 2020-02-15T06:59:41Z +6325 2005-07-11T19:06:01Z 4556 542 2005-07-18T18:25:01Z 2 2020-02-15T06:59:41Z +6326 2005-07-11T19:06:55Z 2137 563 2005-07-12T20:41:55Z 1 2020-02-15T06:59:41Z +6327 2005-07-11T19:07:29Z 909 146 2005-07-15T16:09:29Z 1 2020-02-15T06:59:41Z +6328 2005-07-11T19:09:33Z 999 260 2005-07-12T20:16:33Z 2 2020-02-15T06:59:41Z +6329 2005-07-11T19:10:38Z 2763 352 2005-07-19T14:46:38Z 2 2020-02-15T06:59:41Z +6330 2005-07-11T19:15:42Z 3917 119 2005-07-17T19:10:42Z 1 2020-02-15T06:59:41Z +6331 2005-07-11T19:17:21Z 1356 295 2005-07-18T18:35:21Z 2 2020-02-15T06:59:41Z +6332 2005-07-11T19:19:06Z 1733 538 2005-07-13T13:51:06Z 2 2020-02-15T06:59:41Z +6333 2005-07-11T19:20:16Z 2610 285 2005-07-17T15:33:16Z 1 2020-02-15T06:59:41Z +6334 2005-07-11T19:20:44Z 948 168 2005-07-19T18:49:44Z 2 2020-02-15T06:59:41Z +6335 2005-07-11T19:25:15Z 2757 396 2005-07-16T17:02:15Z 1 2020-02-15T06:59:41Z +6336 2005-07-11T19:30:13Z 1229 471 2005-07-20T21:27:13Z 2 2020-02-15T06:59:41Z +6337 2005-07-11T19:30:47Z 3967 47 2005-07-19T20:27:47Z 2 2020-02-15T06:59:41Z +6338 2005-07-11T19:39:41Z 1691 54 2005-07-18T01:13:41Z 2 2020-02-15T06:59:41Z +6339 2005-07-11T19:45:32Z 2401 145 2005-07-18T22:34:32Z 2 2020-02-15T06:59:41Z +6340 2005-07-11T19:46:05Z 2374 264 2005-07-20T16:51:05Z 2 2020-02-15T06:59:41Z +6341 2005-07-11T19:48:02Z 3580 448 2005-07-15T01:31:02Z 1 2020-02-15T06:59:41Z +6342 2005-07-11T19:48:24Z 1851 403 2005-07-13T14:09:24Z 2 2020-02-15T06:59:41Z +6343 2005-07-11T19:51:35Z 513 147 2005-07-12T19:13:35Z 1 2020-02-15T06:59:41Z +6344 2005-07-11T20:04:43Z 3074 78 2005-07-18T14:35:43Z 2 2020-02-15T06:59:41Z +6345 2005-07-11T20:05:18Z 4332 532 2005-07-20T17:28:18Z 1 2020-02-15T06:59:41Z +6346 2005-07-11T20:08:34Z 4066 445 2005-07-16T16:35:34Z 2 2020-02-15T06:59:41Z +6347 2005-07-11T20:18:53Z 3160 178 2005-07-16T20:45:53Z 1 2020-02-15T06:59:41Z +6348 2005-07-11T20:21:18Z 21 66 2005-07-19T15:56:18Z 2 2020-02-15T06:59:41Z +6349 2005-07-11T20:25:05Z 1581 216 2005-07-21T00:35:05Z 2 2020-02-15T06:59:41Z +6350 2005-07-11T20:30:15Z 2853 225 2005-07-16T21:30:15Z 1 2020-02-15T06:59:41Z +6351 2005-07-11T20:31:44Z 1852 507 2005-07-18T17:16:44Z 2 2020-02-15T06:59:41Z +6352 2005-07-11T20:34:13Z 1143 235 2005-07-13T19:49:13Z 1 2020-02-15T06:59:41Z +6353 2005-07-11T20:48:56Z 699 130 2005-07-21T00:11:56Z 1 2020-02-15T06:59:41Z +6354 2005-07-11T20:54:27Z 3203 176 2005-07-18T23:46:27Z 2 2020-02-15T06:59:41Z +6355 2005-07-11T20:56:29Z 2472 482 2005-07-20T01:50:29Z 2 2020-02-15T06:59:41Z +6356 2005-07-11T20:57:48Z 2645 149 2005-07-12T22:40:48Z 2 2020-02-15T06:59:41Z +6357 2005-07-11T20:58:51Z 658 252 2005-07-12T15:06:51Z 1 2020-02-15T06:59:41Z +6358 2005-07-11T21:03:12Z 4527 567 2005-07-15T20:06:12Z 2 2020-02-15T06:59:41Z +6359 2005-07-11T21:06:17Z 1656 30 2005-07-16T02:51:17Z 2 2020-02-15T06:59:41Z +6360 2005-07-11T21:07:40Z 3075 338 2005-07-16T15:11:40Z 1 2020-02-15T06:59:41Z +6361 2005-07-11T21:09:14Z 2903 561 2005-07-14T18:26:14Z 2 2020-02-15T06:59:41Z +6362 2005-07-11T21:09:31Z 4259 358 2005-07-13T23:08:31Z 1 2020-02-15T06:59:41Z +6363 2005-07-11T21:13:19Z 4167 344 2005-07-20T15:44:19Z 1 2020-02-15T06:59:41Z +6364 2005-07-11T21:14:48Z 4146 160 2005-07-20T23:20:48Z 2 2020-02-15T06:59:41Z +6365 2005-07-11T21:17:40Z 4550 566 2005-07-14T20:53:40Z 1 2020-02-15T06:59:41Z +6366 2005-07-11T21:18:16Z 3989 366 2005-07-17T00:21:16Z 1 2020-02-15T06:59:41Z +6367 2005-07-11T21:18:29Z 1465 357 2005-07-15T01:05:29Z 1 2020-02-15T06:59:41Z +6368 2005-07-11T21:19:01Z 3666 588 2005-07-13T17:56:01Z 2 2020-02-15T06:59:41Z +6369 2005-07-11T21:23:36Z 1086 252 2005-07-13T22:23:36Z 2 2020-02-15T06:59:41Z +6370 2005-07-11T21:28:32Z 1410 99 2005-07-20T02:51:32Z 2 2020-02-15T06:59:41Z +6371 2005-07-11T21:31:51Z 4297 265 2005-07-16T23:10:51Z 1 2020-02-15T06:59:41Z +6372 2005-07-11T21:35:06Z 741 64 2005-07-15T02:30:06Z 2 2020-02-15T06:59:41Z +6373 2005-07-11T21:35:20Z 1042 115 2005-07-13T23:22:20Z 2 2020-02-15T06:59:41Z +6374 2005-07-11T21:36:10Z 266 244 2005-07-17T15:50:10Z 2 2020-02-15T06:59:41Z +6375 2005-07-11T21:39:46Z 1936 8 2005-07-18T02:12:46Z 2 2020-02-15T06:59:41Z +6376 2005-07-11T21:40:23Z 1834 263 2005-07-13T23:16:23Z 1 2020-02-15T06:59:41Z +6377 2005-07-11T21:41:16Z 4017 118 2005-07-15T20:05:16Z 1 2020-02-15T06:59:41Z +6378 2005-07-11T21:45:23Z 3170 145 2005-07-14T16:56:23Z 1 2020-02-15T06:59:41Z +6379 2005-07-11T21:51:25Z 522 287 2005-07-17T03:38:25Z 2 2020-02-15T06:59:41Z +6380 2005-07-11T21:55:40Z 3378 172 2005-07-17T20:42:40Z 1 2020-02-15T06:59:41Z +6381 2005-07-11T21:58:48Z 2584 340 2005-07-16T16:18:48Z 1 2020-02-15T06:59:41Z +6382 2005-07-11T21:58:53Z 3223 336 2005-07-17T21:18:53Z 2 2020-02-15T06:59:41Z +6383 2005-07-11T22:06:53Z 4275 486 2005-07-17T16:09:53Z 1 2020-02-15T06:59:41Z +6384 2005-07-11T22:07:26Z 491 313 2005-07-16T22:39:26Z 1 2020-02-15T06:59:41Z +6385 2005-07-11T22:07:32Z 1830 69 2005-07-20T16:57:32Z 1 2020-02-15T06:59:41Z +6386 2005-07-11T22:14:57Z 633 593 2005-07-15T16:41:57Z 2 2020-02-15T06:59:41Z +6387 2005-07-11T22:15:56Z 1726 384 2005-07-14T20:20:56Z 2 2020-02-15T06:59:41Z +6388 2005-07-11T22:17:16Z 3506 525 2005-07-19T23:50:16Z 2 2020-02-15T06:59:41Z +6389 2005-07-11T22:18:20Z 2268 274 2005-07-16T16:57:20Z 2 2020-02-15T06:59:41Z +6390 2005-07-11T22:19:23Z 3057 77 2005-07-15T20:10:23Z 2 2020-02-15T06:59:41Z +6391 2005-07-11T22:23:09Z 1745 264 2005-07-15T23:02:09Z 1 2020-02-15T06:59:41Z +6392 2005-07-11T22:25:19Z 4406 468 2005-07-16T04:24:19Z 1 2020-02-15T06:59:41Z +6393 2005-07-11T22:28:12Z 3802 164 2005-07-14T18:03:12Z 1 2020-02-15T06:59:41Z +6394 2005-07-11T22:29:15Z 2574 52 2005-07-20T02:19:15Z 2 2020-02-15T06:59:41Z +6395 2005-07-11T22:29:29Z 3058 264 2005-07-18T00:50:29Z 1 2020-02-15T06:59:41Z +6396 2005-07-11T22:31:08Z 2394 507 2005-07-19T17:19:08Z 2 2020-02-15T06:59:41Z +6397 2005-07-11T22:34:02Z 2423 287 2005-07-13T23:01:02Z 1 2020-02-15T06:59:41Z +6398 2005-07-11T22:34:49Z 1409 296 2005-07-17T17:58:49Z 2 2020-02-15T06:59:41Z +6399 2005-07-11T22:39:05Z 2031 288 2005-07-16T01:12:05Z 1 2020-02-15T06:59:41Z +6400 2005-07-11T22:43:44Z 3289 536 2005-07-19T03:58:44Z 2 2020-02-15T06:59:41Z +6401 2005-07-11T22:44:34Z 1427 35 2005-07-12T22:18:34Z 2 2020-02-15T06:59:41Z +6402 2005-07-11T22:46:10Z 2576 66 2005-07-16T04:02:10Z 1 2020-02-15T06:59:41Z +6403 2005-07-11T22:46:25Z 1019 238 2005-07-13T22:15:25Z 1 2020-02-15T06:59:41Z +6404 2005-07-11T22:49:50Z 1183 526 2005-07-14T18:29:50Z 2 2020-02-15T06:59:41Z +6405 2005-07-11T22:53:12Z 3983 357 2005-07-18T23:02:12Z 2 2020-02-15T06:59:41Z +6406 2005-07-11T22:55:27Z 4439 392 2005-07-20T04:50:27Z 2 2020-02-15T06:59:41Z +6407 2005-07-11T23:02:19Z 775 140 2005-07-21T00:30:19Z 1 2020-02-15T06:59:41Z +6408 2005-07-11T23:03:02Z 2008 350 2005-07-19T23:09:02Z 2 2020-02-15T06:59:41Z +6409 2005-07-11T23:05:49Z 3859 537 2005-07-13T00:13:49Z 2 2020-02-15T06:59:41Z +6410 2005-07-11T23:08:06Z 1127 560 2005-07-19T19:57:06Z 2 2020-02-15T06:59:41Z +6411 2005-07-11T23:10:50Z 4347 124 2005-07-19T17:15:50Z 1 2020-02-15T06:59:41Z +6412 2005-07-11T23:19:21Z 3797 220 2005-07-16T19:48:21Z 1 2020-02-15T06:59:41Z +6413 2005-07-11T23:26:11Z 4446 251 2005-07-17T21:58:11Z 2 2020-02-15T06:59:41Z +6414 2005-07-11T23:26:13Z 814 502 2005-07-18T17:29:13Z 1 2020-02-15T06:59:41Z +6415 2005-07-11T23:27:52Z 4175 84 2005-07-19T22:29:52Z 2 2020-02-15T06:59:41Z +6416 2005-07-11T23:29:14Z 1063 158 2005-07-13T20:20:14Z 1 2020-02-15T06:59:41Z +6417 2005-07-11T23:35:11Z 3042 80 2005-07-18T20:00:11Z 2 2020-02-15T06:59:41Z +6418 2005-07-11T23:36:27Z 3101 185 2005-07-16T18:42:27Z 1 2020-02-15T06:59:41Z +6419 2005-07-11T23:36:38Z 3683 311 2005-07-13T03:23:38Z 1 2020-02-15T06:59:41Z +6420 2005-07-11T23:38:49Z 4443 206 2005-07-17T17:46:49Z 2 2020-02-15T06:59:41Z +6421 2005-07-11T23:45:25Z 4477 479 2005-07-15T20:45:25Z 2 2020-02-15T06:59:41Z +6422 2005-07-11T23:46:19Z 762 257 2005-07-20T22:12:19Z 1 2020-02-15T06:59:41Z +6423 2005-07-11T23:47:31Z 892 427 2005-07-19T18:16:31Z 1 2020-02-15T06:59:41Z +6424 2005-07-11T23:49:37Z 3040 359 2005-07-21T00:53:37Z 1 2020-02-15T06:59:41Z +6425 2005-07-11T23:54:52Z 2487 339 2005-07-13T18:37:52Z 1 2020-02-15T06:59:41Z +6426 2005-07-11T23:56:38Z 498 495 2005-07-21T05:22:38Z 1 2020-02-15T06:59:41Z +6427 2005-07-11T23:57:34Z 1043 122 2005-07-14T18:05:34Z 2 2020-02-15T06:59:41Z +6428 2005-07-12T00:01:51Z 4365 187 2005-07-20T22:02:51Z 2 2020-02-15T06:59:41Z +6429 2005-07-12T00:02:50Z 141 342 2005-07-21T02:08:50Z 1 2020-02-15T06:59:41Z +6430 2005-07-12T00:03:34Z 178 390 2005-07-15T03:11:34Z 1 2020-02-15T06:59:41Z +6431 2005-07-12T00:03:57Z 3471 458 2005-07-20T03:47:57Z 1 2020-02-15T06:59:41Z +6432 2005-07-12T00:09:41Z 970 293 2005-07-20T20:06:41Z 1 2020-02-15T06:59:41Z +6433 2005-07-12T00:12:02Z 1357 101 2005-07-21T04:25:02Z 2 2020-02-15T06:59:41Z +6434 2005-07-12T00:14:25Z 1478 102 2005-07-20T19:54:25Z 2 2020-02-15T06:59:41Z +6435 2005-07-12T00:16:19Z 1957 561 2005-07-17T19:15:19Z 1 2020-02-15T06:59:41Z +6436 2005-07-12T00:18:42Z 3758 122 2005-07-13T03:57:42Z 2 2020-02-15T06:59:41Z +6437 2005-07-12T00:20:29Z 4539 355 2005-07-12T22:26:29Z 1 2020-02-15T06:59:41Z +6438 2005-07-12T00:23:01Z 412 211 2005-07-17T22:45:01Z 1 2020-02-15T06:59:41Z +6439 2005-07-12T00:23:48Z 3463 406 2005-07-13T00:54:48Z 2 2020-02-15T06:59:41Z +6440 2005-07-12T00:25:04Z 2148 269 2005-07-13T04:52:04Z 2 2020-02-15T06:59:41Z +6441 2005-07-12T00:27:08Z 2489 505 2005-07-14T03:12:08Z 1 2020-02-15T06:59:41Z +6442 2005-07-12T00:29:45Z 1273 360 2005-07-15T19:37:45Z 2 2020-02-15T06:59:41Z +6443 2005-07-12T00:35:51Z 895 155 2005-07-16T04:50:51Z 1 2020-02-15T06:59:41Z +6444 2005-07-12T00:36:02Z 2214 168 2005-07-18T05:53:02Z 1 2020-02-15T06:59:41Z +6445 2005-07-12T00:37:02Z 582 385 2005-07-17T22:05:02Z 2 2020-02-15T06:59:41Z +6446 2005-07-12T00:44:08Z 3634 473 2005-07-14T20:39:08Z 2 2020-02-15T06:59:41Z +6447 2005-07-12T00:45:17Z 3945 482 2005-07-18T05:56:17Z 2 2020-02-15T06:59:41Z +6448 2005-07-12T00:45:59Z 2663 160 2005-07-17T00:34:59Z 1 2020-02-15T06:59:41Z +6449 2005-07-12T00:48:58Z 4395 117 2005-07-21T02:57:58Z 1 2020-02-15T06:59:41Z +6450 2005-07-12T00:49:05Z 2413 32 2005-07-13T01:54:05Z 2 2020-02-15T06:59:41Z +6451 2005-07-12T00:52:19Z 1008 381 2005-07-16T21:30:19Z 2 2020-02-15T06:59:41Z +6452 2005-07-12T00:57:31Z 109 388 2005-07-14T20:41:31Z 1 2020-02-15T06:59:41Z +6453 2005-07-12T00:59:53Z 2506 169 2005-07-14T19:17:53Z 2 2020-02-15T06:59:41Z +6454 2005-07-12T01:00:12Z 4028 446 2005-07-16T22:12:12Z 1 2020-02-15T06:59:41Z +6455 2005-07-12T01:01:58Z 4267 277 2005-07-16T02:42:58Z 2 2020-02-15T06:59:41Z +6456 2005-07-12T01:05:11Z 259 387 2005-07-20T23:26:11Z 2 2020-02-15T06:59:41Z +6457 2005-07-12T01:06:35Z 2970 64 2005-07-14T03:27:35Z 1 2020-02-15T06:59:41Z +6458 2005-07-12T01:08:52Z 2809 138 2005-07-16T20:22:52Z 1 2020-02-15T06:59:41Z +6459 2005-07-12T01:12:03Z 4025 557 2005-07-15T23:48:03Z 1 2020-02-15T06:59:41Z +6460 2005-07-12T01:13:44Z 2402 371 2005-07-17T04:51:44Z 2 2020-02-15T06:59:41Z +6461 2005-07-12T01:14:03Z 1799 135 2005-07-19T21:12:03Z 1 2020-02-15T06:59:41Z +6462 2005-07-12T01:15:24Z 4534 414 2005-07-19T05:11:24Z 2 2020-02-15T06:59:41Z +6463 2005-07-12T01:16:11Z 2930 391 2005-07-13T01:37:11Z 1 2020-02-15T06:59:41Z +6464 2005-07-12T01:16:40Z 3100 303 2005-07-20T00:53:40Z 1 2020-02-15T06:59:41Z +6465 2005-07-12T01:17:11Z 2047 207 2005-07-20T00:29:11Z 2 2020-02-15T06:59:41Z +6466 2005-07-12T01:21:03Z 3369 235 2005-07-14T04:05:03Z 1 2020-02-15T06:59:41Z +6467 2005-07-12T01:22:03Z 2067 457 2005-07-20T04:37:03Z 2 2020-02-15T06:59:41Z +6468 2005-07-12T01:27:09Z 4560 541 2005-07-20T00:37:09Z 2 2020-02-15T06:59:41Z +6469 2005-07-12T01:29:27Z 3830 147 2005-07-16T20:22:27Z 2 2020-02-15T06:59:41Z +6470 2005-07-12T01:29:41Z 1680 240 2005-07-15T21:33:41Z 2 2020-02-15T06:59:41Z +6471 2005-07-12T01:31:06Z 2253 397 2005-07-13T05:26:06Z 1 2020-02-15T06:59:41Z +6472 2005-07-12T01:33:25Z 3780 183 2005-07-15T20:26:25Z 1 2020-02-15T06:59:41Z +6473 2005-07-12T01:35:40Z 527 594 2005-07-20T20:11:40Z 1 2020-02-15T06:59:41Z +6474 2005-07-12T01:36:46Z 310 43 2005-07-16T07:24:46Z 2 2020-02-15T06:59:41Z +6475 2005-07-12T01:36:57Z 2035 74 2005-07-17T21:22:57Z 1 2020-02-15T06:59:41Z +6476 2005-07-12T01:37:48Z 978 28 2005-07-12T20:21:48Z 2 2020-02-15T06:59:41Z +6477 2005-07-12T01:38:42Z 804 181 2005-07-17T05:19:42Z 2 2020-02-15T06:59:41Z +6478 2005-07-12T01:41:44Z 2589 483 2005-07-15T20:48:44Z 1 2020-02-15T06:59:41Z +6479 2005-07-12T01:49:00Z 2587 558 2005-07-21T04:26:00Z 1 2020-02-15T06:59:41Z +6480 2005-07-12T01:49:29Z 3076 309 2005-07-17T01:00:29Z 1 2020-02-15T06:59:41Z +6481 2005-07-12T01:50:15Z 2392 128 2005-07-20T03:03:15Z 1 2020-02-15T06:59:41Z +6482 2005-07-12T01:50:21Z 4135 57 2005-07-14T06:49:21Z 2 2020-02-15T06:59:41Z +6483 2005-07-12T01:59:20Z 1053 263 2005-07-12T22:22:20Z 2 2020-02-15T06:59:41Z +6484 2005-07-12T02:04:10Z 4093 556 2005-07-17T23:18:10Z 2 2020-02-15T06:59:41Z +6485 2005-07-12T02:07:59Z 1224 319 2005-07-19T22:56:59Z 1 2020-02-15T06:59:41Z +6486 2005-07-12T02:09:36Z 4008 75 2005-07-14T03:04:36Z 2 2020-02-15T06:59:41Z +6487 2005-07-12T02:17:00Z 4000 277 2005-07-19T00:57:00Z 2 2020-02-15T06:59:41Z +6488 2005-07-12T02:20:09Z 3974 169 2005-07-20T00:53:09Z 2 2020-02-15T06:59:41Z +6489 2005-07-12T02:22:46Z 1821 268 2005-07-17T06:16:46Z 2 2020-02-15T06:59:41Z +6490 2005-07-12T02:28:03Z 2249 548 2005-07-19T03:06:03Z 2 2020-02-15T06:59:41Z +6491 2005-07-12T02:28:31Z 2803 415 2005-07-21T00:38:31Z 1 2020-02-15T06:59:41Z +6492 2005-07-12T02:28:40Z 466 590 2005-07-17T05:58:40Z 2 2020-02-15T06:59:41Z +6493 2005-07-12T02:40:41Z 16 184 2005-07-16T04:56:41Z 1 2020-02-15T06:59:41Z +6494 2005-07-12T02:42:51Z 1124 57 2005-07-20T06:57:51Z 1 2020-02-15T06:59:41Z +6495 2005-07-12T02:57:02Z 2440 19 2005-07-14T08:35:02Z 1 2020-02-15T06:59:41Z +6496 2005-07-12T02:57:39Z 3550 139 2005-07-20T01:43:39Z 1 2020-02-15T06:59:41Z +6497 2005-07-12T03:04:29Z 933 222 2005-07-17T21:36:29Z 2 2020-02-15T06:59:41Z +6498 2005-07-12T03:05:38Z 243 48 2005-07-19T07:12:38Z 1 2020-02-15T06:59:41Z +6499 2005-07-12T03:11:18Z 3165 474 2005-07-21T07:50:18Z 2 2020-02-15T06:59:41Z +6500 2005-07-12T03:11:23Z 4521 577 2005-07-13T00:51:23Z 2 2020-02-15T06:59:41Z +6501 2005-07-12T03:11:55Z 2851 219 2005-07-16T02:08:55Z 2 2020-02-15T06:59:41Z +6502 2005-07-12T03:15:45Z 1641 40 2005-07-17T08:47:45Z 2 2020-02-15T06:59:41Z +6503 2005-07-12T03:18:07Z 1319 120 2005-07-15T00:05:07Z 1 2020-02-15T06:59:41Z +6504 2005-07-12T03:19:14Z 3786 535 2005-07-17T01:13:14Z 2 2020-02-15T06:59:41Z +6505 2005-07-12T03:27:37Z 3986 415 2005-07-17T22:42:37Z 2 2020-02-15T06:59:41Z +6506 2005-07-12T03:28:22Z 386 423 2005-07-17T22:43:22Z 1 2020-02-15T06:59:41Z +6507 2005-07-12T03:33:12Z 2463 118 2005-07-20T03:56:12Z 1 2020-02-15T06:59:41Z +6508 2005-07-12T03:34:50Z 1474 597 2005-07-17T02:57:50Z 2 2020-02-15T06:59:41Z +6509 2005-07-12T03:35:01Z 2468 427 2005-07-13T06:50:01Z 2 2020-02-15T06:59:41Z +6510 2005-07-12T03:35:39Z 905 446 2005-07-21T01:41:39Z 1 2020-02-15T06:59:41Z +6511 2005-07-12T03:39:29Z 1350 322 2005-07-17T01:01:29Z 2 2020-02-15T06:59:41Z +6512 2005-07-12T03:42:49Z 1703 68 2005-07-13T05:01:49Z 2 2020-02-15T06:59:41Z +6513 2005-07-12T03:44:43Z 2671 393 2005-07-13T05:54:43Z 1 2020-02-15T06:59:41Z +6514 2005-07-12T03:47:44Z 3562 73 2005-07-20T00:11:44Z 1 2020-02-15T06:59:41Z +6515 2005-07-12T03:50:32Z 706 261 2005-07-15T03:54:32Z 2 2020-02-15T06:59:41Z +6516 2005-07-12T03:51:54Z 863 291 2005-07-14T03:41:54Z 2 2020-02-15T06:59:41Z +6517 2005-07-12T03:52:39Z 185 387 2005-07-20T08:00:39Z 1 2020-02-15T06:59:41Z +6518 2005-07-12T03:59:42Z 2698 288 2005-07-19T22:21:42Z 2 2020-02-15T06:59:41Z +6519 2005-07-12T04:00:36Z 4149 598 2005-07-19T01:15:36Z 1 2020-02-15T06:59:41Z +6520 2005-07-12T04:05:16Z 1535 270 2005-07-15T08:26:16Z 1 2020-02-15T06:59:41Z +6521 2005-07-12T04:06:11Z 3293 49 2005-07-21T05:50:11Z 1 2020-02-15T06:59:41Z +6522 2005-07-12T04:11:58Z 3916 142 2005-07-15T08:32:58Z 1 2020-02-15T06:59:41Z +6523 2005-07-12T04:14:19Z 1848 574 2005-07-17T00:38:19Z 1 2020-02-15T06:59:41Z +6524 2005-07-12T04:14:35Z 1467 376 2005-07-17T03:59:35Z 2 2020-02-15T06:59:41Z +6525 2005-07-12T04:17:15Z 1408 103 2005-07-18T23:11:15Z 1 2020-02-15T06:59:41Z +6526 2005-07-12T04:21:20Z 1718 225 2005-07-18T23:45:20Z 2 2020-02-15T06:59:41Z +6527 2005-07-12T04:23:06Z 538 65 2005-07-17T00:20:06Z 1 2020-02-15T06:59:41Z +6528 2005-07-12T04:29:44Z 3824 598 2005-07-18T02:39:44Z 2 2020-02-15T06:59:41Z +6529 2005-07-12T04:31:04Z 1058 503 2005-07-17T07:09:04Z 2 2020-02-15T06:59:41Z +6530 2005-07-12T04:33:19Z 3410 75 2005-07-15T08:26:19Z 1 2020-02-15T06:59:41Z +6531 2005-07-12T04:35:24Z 4231 510 2005-07-16T05:37:24Z 2 2020-02-15T06:59:41Z +6532 2005-07-12T04:38:32Z 2361 225 2005-07-13T03:54:32Z 1 2020-02-15T06:59:41Z +6533 2005-07-12T04:39:38Z 3853 366 2005-07-18T05:29:38Z 1 2020-02-15T06:59:41Z +6534 2005-07-12T04:39:43Z 2359 577 2005-07-16T06:33:43Z 1 2020-02-15T06:59:41Z +6535 2005-07-12T04:43:43Z 1921 446 2005-07-17T04:52:43Z 1 2020-02-15T06:59:41Z +6536 2005-07-12T04:44:25Z 3521 289 2005-07-18T01:52:25Z 2 2020-02-15T06:59:41Z +6537 2005-07-12T04:46:30Z 3381 207 2005-07-19T03:04:30Z 2 2020-02-15T06:59:41Z +6538 2005-07-12T04:50:26Z 1987 529 2005-07-20T23:44:26Z 2 2020-02-15T06:59:41Z +6539 2005-07-12T04:50:49Z 2275 259 2005-07-19T03:23:49Z 1 2020-02-15T06:59:41Z +6540 2005-07-12T04:51:13Z 937 156 2005-07-21T03:38:13Z 1 2020-02-15T06:59:41Z +6541 2005-07-12T04:53:41Z 1795 529 2005-07-17T23:17:41Z 2 2020-02-15T06:59:41Z +6542 2005-07-12T04:53:49Z 2421 359 2005-07-13T01:48:49Z 1 2020-02-15T06:59:41Z +6543 2005-07-12T04:54:32Z 2568 264 2005-07-15T09:50:32Z 2 2020-02-15T06:59:41Z +6544 2005-07-12T04:56:15Z 1218 97 2005-07-17T08:28:15Z 1 2020-02-15T06:59:41Z +6545 2005-07-12T04:56:30Z 4447 376 2005-07-20T05:41:30Z 1 2020-02-15T06:59:41Z +6546 2005-07-12T04:57:17Z 393 105 2005-07-17T09:29:17Z 2 2020-02-15T06:59:41Z +6547 2005-07-12T04:57:46Z 2656 262 2005-07-18T08:36:46Z 2 2020-02-15T06:59:41Z +6548 2005-07-12T05:00:46Z 2480 488 2005-07-19T04:40:46Z 2 2020-02-15T06:59:41Z +6549 2005-07-12T05:02:01Z 2688 493 2005-07-20T06:19:01Z 2 2020-02-15T06:59:41Z +6550 2005-07-12T05:03:14Z 2184 112 2005-07-19T04:06:14Z 1 2020-02-15T06:59:41Z +6551 2005-07-12T05:03:43Z 282 567 2005-07-13T10:44:43Z 1 2020-02-15T06:59:41Z +6552 2005-07-12T05:05:06Z 766 493 2005-07-13T05:12:06Z 2 2020-02-15T06:59:41Z +6553 2005-07-12T05:06:39Z 1137 265 2005-07-21T10:37:39Z 1 2020-02-15T06:59:41Z +6554 2005-07-12T05:07:26Z 2741 178 2005-07-21T06:06:26Z 2 2020-02-15T06:59:41Z +6555 2005-07-12T05:08:16Z 1282 188 2005-07-14T04:09:16Z 1 2020-02-15T06:59:41Z +6556 2005-07-12T05:10:16Z 3901 570 2005-07-13T04:16:16Z 2 2020-02-15T06:59:41Z +6557 2005-07-12T05:12:03Z 1442 116 2005-07-20T06:49:03Z 1 2020-02-15T06:59:41Z +6558 2005-07-12T05:16:07Z 2195 164 2005-07-13T05:32:07Z 2 2020-02-15T06:59:41Z +6559 2005-07-12T05:20:35Z 458 353 2005-07-16T08:44:35Z 2 2020-02-15T06:59:41Z +6560 2005-07-12T05:22:06Z 433 54 2005-07-15T00:04:06Z 2 2020-02-15T06:59:41Z +6561 2005-07-12T05:24:02Z 4568 528 2005-07-16T03:43:02Z 2 2020-02-15T06:59:41Z +6562 2005-07-12T05:26:26Z 3969 27 2005-07-16T05:10:26Z 2 2020-02-15T06:59:41Z +6563 2005-07-12T05:34:09Z 87 438 2005-07-21T07:37:09Z 1 2020-02-15T06:59:41Z +6564 2005-07-12T05:34:44Z 2320 210 2005-07-18T06:12:44Z 2 2020-02-15T06:59:41Z +6565 2005-07-12T05:39:50Z 2751 35 2005-07-13T01:07:50Z 2 2020-02-15T06:59:41Z +6566 2005-07-12T05:42:53Z 1822 178 2005-07-19T01:23:53Z 2 2020-02-15T06:59:41Z +6567 2005-07-12T05:43:09Z 1336 198 2005-07-19T08:18:09Z 2 2020-02-15T06:59:41Z +6568 2005-07-12T05:45:47Z 4203 13 2005-07-15T05:18:47Z 2 2020-02-15T06:59:41Z +6569 2005-07-12T05:47:40Z 759 183 2005-07-20T06:23:40Z 2 2020-02-15T06:59:41Z +6570 2005-07-12T05:50:31Z 2082 217 2005-07-13T09:58:31Z 1 2020-02-15T06:59:41Z +6571 2005-07-12T05:51:47Z 3700 140 2005-07-15T11:31:47Z 1 2020-02-15T06:59:41Z +6572 2005-07-12T05:56:38Z 3121 35 2005-07-16T10:41:38Z 1 2020-02-15T06:59:41Z +6573 2005-07-12T06:03:40Z 3308 239 2005-07-13T11:49:40Z 2 2020-02-15T06:59:41Z +6574 2005-07-12T06:04:22Z 621 115 2005-07-18T03:19:22Z 2 2020-02-15T06:59:41Z +6575 2005-07-12T06:12:53Z 1414 598 2005-07-18T07:55:53Z 2 2020-02-15T06:59:41Z +6576 2005-07-12T06:13:41Z 339 362 2005-07-16T03:22:41Z 1 2020-02-15T06:59:41Z +6577 2005-07-12T06:15:05Z 4191 439 2005-07-15T06:23:05Z 1 2020-02-15T06:59:41Z +6578 2005-07-12T06:15:41Z 2304 229 2005-07-15T10:43:41Z 1 2020-02-15T06:59:41Z +6580 2005-07-12T06:26:10Z 1543 31 2005-07-13T06:44:10Z 1 2020-02-15T06:59:41Z +6581 2005-07-12T06:26:49Z 2121 468 2005-07-14T05:07:49Z 2 2020-02-15T06:59:41Z +6582 2005-07-12T06:28:12Z 2077 420 2005-07-19T06:19:12Z 1 2020-02-15T06:59:41Z +6583 2005-07-12T06:42:31Z 2343 462 2005-07-15T07:51:31Z 1 2020-02-15T06:59:41Z +6584 2005-07-12T06:43:36Z 1800 472 2005-07-16T12:18:36Z 2 2020-02-15T06:59:41Z +6585 2005-07-12T06:50:52Z 2064 136 2005-07-21T06:51:52Z 1 2020-02-15T06:59:41Z +6586 2005-07-12T06:56:24Z 3860 93 2005-07-17T09:36:24Z 1 2020-02-15T06:59:41Z +6587 2005-07-12T06:56:26Z 238 419 2005-07-20T05:53:26Z 2 2020-02-15T06:59:41Z +6588 2005-07-12T06:57:40Z 1257 420 2005-07-16T04:27:40Z 1 2020-02-15T06:59:41Z +6589 2005-07-12T07:06:29Z 1595 424 2005-07-14T12:06:29Z 2 2020-02-15T06:59:41Z +6590 2005-07-12T07:08:21Z 1067 442 2005-07-18T06:16:21Z 2 2020-02-15T06:59:41Z +6591 2005-07-12T07:13:46Z 2846 509 2005-07-16T05:15:46Z 2 2020-02-15T06:59:41Z +6592 2005-07-12T07:19:35Z 3481 273 2005-07-19T07:15:35Z 1 2020-02-15T06:59:41Z +6593 2005-07-12T07:21:17Z 3441 356 2005-07-14T02:35:17Z 2 2020-02-15T06:59:41Z +6594 2005-07-12T07:25:43Z 4458 517 2005-07-13T07:59:43Z 1 2020-02-15T06:59:41Z +6595 2005-07-12T07:25:48Z 1286 458 2005-07-20T02:24:48Z 2 2020-02-15T06:59:41Z +6596 2005-07-12T07:32:59Z 890 409 2005-07-13T02:47:59Z 1 2020-02-15T06:59:41Z +6597 2005-07-12T07:37:02Z 979 479 2005-07-16T10:24:02Z 2 2020-02-15T06:59:41Z +6598 2005-07-12T07:38:25Z 2049 532 2005-07-19T07:58:25Z 1 2020-02-15T06:59:41Z +6599 2005-07-12T07:41:14Z 4348 519 2005-07-21T02:45:14Z 2 2020-02-15T06:59:41Z +6600 2005-07-12T07:41:48Z 3315 389 2005-07-18T12:36:48Z 2 2020-02-15T06:59:41Z +6601 2005-07-12T07:44:49Z 1640 464 2005-07-20T03:22:49Z 2 2020-02-15T06:59:41Z +6602 2005-07-12T07:50:24Z 2382 214 2005-07-20T03:25:24Z 2 2020-02-15T06:59:41Z +6603 2005-07-12T07:52:55Z 3583 425 2005-07-16T13:19:55Z 2 2020-02-15T06:59:41Z +6604 2005-07-12T07:57:45Z 822 365 2005-07-16T05:41:45Z 2 2020-02-15T06:59:41Z +6605 2005-07-12T08:01:07Z 2892 547 2005-07-19T03:12:07Z 1 2020-02-15T06:59:41Z +6606 2005-07-12T08:03:40Z 2805 178 2005-07-13T09:05:40Z 1 2020-02-15T06:59:41Z +6607 2005-07-12T08:08:50Z 337 562 2005-07-20T09:17:50Z 1 2020-02-15T06:59:41Z +6608 2005-07-12T08:16:50Z 3577 244 2005-07-18T07:08:50Z 2 2020-02-15T06:59:41Z +6609 2005-07-12T08:19:41Z 3332 133 2005-07-19T08:19:41Z 2 2020-02-15T06:59:41Z +6610 2005-07-12T08:20:02Z 645 353 2005-07-21T09:16:02Z 2 2020-02-15T06:59:41Z +6611 2005-07-12T08:20:23Z 1604 286 2005-07-16T07:19:23Z 1 2020-02-15T06:59:41Z +6612 2005-07-12T08:28:33Z 235 152 2005-07-17T06:25:33Z 1 2020-02-15T06:59:41Z +6613 2005-07-12T08:30:07Z 3421 460 2005-07-14T10:25:07Z 2 2020-02-15T06:59:41Z +6614 2005-07-12T08:33:49Z 3004 144 2005-07-18T07:28:49Z 2 2020-02-15T06:59:41Z +6615 2005-07-12T08:36:22Z 23 438 2005-07-20T09:03:22Z 1 2020-02-15T06:59:41Z +6616 2005-07-12T08:37:30Z 1833 179 2005-07-20T10:33:30Z 1 2020-02-15T06:59:41Z +6617 2005-07-12T08:39:56Z 2292 248 2005-07-14T09:32:56Z 2 2020-02-15T06:59:41Z +6618 2005-07-12T08:41:42Z 4266 327 2005-07-14T05:34:42Z 1 2020-02-15T06:59:41Z +6619 2005-07-12T08:50:48Z 4062 305 2005-07-14T11:54:48Z 1 2020-02-15T06:59:41Z +6620 2005-07-12T08:51:03Z 2362 337 2005-07-16T03:59:03Z 2 2020-02-15T06:59:41Z +6621 2005-07-12T08:57:30Z 2229 561 2005-07-14T09:47:30Z 1 2020-02-15T06:59:41Z +6622 2005-07-12T09:04:11Z 4350 325 2005-07-13T04:27:11Z 1 2020-02-15T06:59:41Z +6623 2005-07-12T09:05:34Z 4412 302 2005-07-19T13:54:34Z 2 2020-02-15T06:59:41Z +6624 2005-07-12T09:05:50Z 3946 335 2005-07-18T13:59:50Z 2 2020-02-15T06:59:41Z +6625 2005-07-12T09:06:40Z 735 443 2005-07-21T04:57:40Z 2 2020-02-15T06:59:41Z +6626 2005-07-12T09:16:24Z 2418 269 2005-07-17T04:06:24Z 2 2020-02-15T06:59:41Z +6627 2005-07-12T09:16:46Z 626 565 2005-07-17T10:58:46Z 1 2020-02-15T06:59:41Z +6628 2005-07-12T09:18:08Z 2894 211 2005-07-21T04:27:08Z 2 2020-02-15T06:59:41Z +6629 2005-07-12T09:18:35Z 2855 582 2005-07-20T11:34:35Z 2 2020-02-15T06:59:41Z +6630 2005-07-12T09:30:05Z 1843 462 2005-07-14T08:29:05Z 2 2020-02-15T06:59:41Z +6631 2005-07-12T09:31:43Z 2340 204 2005-07-15T05:00:43Z 2 2020-02-15T06:59:41Z +6632 2005-07-12T09:33:10Z 2929 442 2005-07-15T11:36:10Z 1 2020-02-15T06:59:41Z +6633 2005-07-12T09:35:42Z 2908 150 2005-07-13T12:56:42Z 2 2020-02-15T06:59:41Z +6634 2005-07-12T09:37:18Z 2943 50 2005-07-13T09:28:18Z 1 2020-02-15T06:59:41Z +6635 2005-07-12T09:47:58Z 515 273 2005-07-16T15:43:58Z 1 2020-02-15T06:59:41Z +6636 2005-07-12T09:49:46Z 3270 441 2005-07-14T12:15:46Z 1 2020-02-15T06:59:41Z +6637 2005-07-12T09:57:39Z 2852 164 2005-07-19T08:40:39Z 1 2020-02-15T06:59:41Z +6638 2005-07-12T09:58:02Z 207 87 2005-07-13T09:40:02Z 1 2020-02-15T06:59:41Z +6639 2005-07-12T10:00:44Z 3385 587 2005-07-19T04:56:44Z 1 2020-02-15T06:59:41Z +6640 2005-07-12T10:27:19Z 2794 148 2005-07-21T06:28:19Z 2 2020-02-15T06:59:41Z +6641 2005-07-12T10:33:14Z 2165 334 2005-07-20T08:24:14Z 2 2020-02-15T06:59:41Z +6642 2005-07-12T10:37:52Z 201 441 2005-07-13T15:13:52Z 1 2020-02-15T06:59:41Z +6643 2005-07-12T10:39:22Z 174 88 2005-07-18T13:52:22Z 1 2020-02-15T06:59:41Z +6644 2005-07-12T10:39:39Z 2667 285 2005-07-14T11:50:39Z 1 2020-02-15T06:59:41Z +6645 2005-07-12T10:39:55Z 2858 73 2005-07-17T07:41:55Z 1 2020-02-15T06:59:41Z +6646 2005-07-12T10:41:34Z 4061 508 2005-07-15T05:31:34Z 1 2020-02-15T06:59:41Z +6647 2005-07-12T10:43:53Z 1841 8 2005-07-14T05:37:53Z 1 2020-02-15T06:59:41Z +6648 2005-07-12T10:46:30Z 718 356 2005-07-14T16:15:30Z 1 2020-02-15T06:59:41Z +6649 2005-07-12T10:51:09Z 70 57 2005-07-14T16:05:09Z 2 2020-02-15T06:59:41Z +6650 2005-07-12T10:57:10Z 1589 526 2005-07-14T07:24:10Z 1 2020-02-15T06:59:41Z +6651 2005-07-12T10:57:28Z 98 447 2005-07-15T06:06:28Z 2 2020-02-15T06:59:41Z +6652 2005-07-12T10:59:38Z 2200 518 2005-07-13T13:52:38Z 1 2020-02-15T06:59:41Z +6653 2005-07-12T11:06:17Z 614 25 2005-07-19T16:52:17Z 2 2020-02-15T06:59:41Z +6654 2005-07-12T11:06:28Z 2870 458 2005-07-20T10:27:28Z 1 2020-02-15T06:59:41Z +6655 2005-07-12T11:08:32Z 3937 100 2005-07-15T15:17:32Z 1 2020-02-15T06:59:41Z +6656 2005-07-12T11:09:47Z 2282 330 2005-07-14T05:50:47Z 1 2020-02-15T06:59:41Z +6657 2005-07-12T11:11:36Z 3697 553 2005-07-16T15:56:36Z 1 2020-02-15T06:59:41Z +6658 2005-07-12T11:13:21Z 172 27 2005-07-17T09:10:21Z 2 2020-02-15T06:59:41Z +6659 2005-07-12T11:18:05Z 2285 134 2005-07-16T16:45:05Z 2 2020-02-15T06:59:41Z +6660 2005-07-12T11:20:12Z 446 598 2005-07-20T12:58:12Z 2 2020-02-15T06:59:41Z +6661 2005-07-12T11:20:39Z 2367 315 2005-07-16T08:17:39Z 2 2020-02-15T06:59:41Z +6662 2005-07-12T11:21:06Z 1464 99 2005-07-13T13:00:06Z 1 2020-02-15T06:59:41Z +6663 2005-07-12T11:27:35Z 4364 5 2005-07-21T16:35:35Z 1 2020-02-15T06:59:41Z +6664 2005-07-12T11:28:22Z 4578 351 2005-07-15T09:30:22Z 1 2020-02-15T06:59:41Z +6665 2005-07-12T11:29:14Z 2912 587 2005-07-19T11:26:14Z 2 2020-02-15T06:59:41Z +6666 2005-07-12T11:32:15Z 3194 314 2005-07-14T16:09:15Z 2 2020-02-15T06:59:41Z +6667 2005-07-12T11:36:22Z 215 50 2005-07-19T12:53:22Z 1 2020-02-15T06:59:41Z +6668 2005-07-12T11:37:45Z 1498 199 2005-07-14T13:28:45Z 2 2020-02-15T06:59:41Z +6669 2005-07-12T11:39:55Z 1420 355 2005-07-20T05:56:55Z 1 2020-02-15T06:59:41Z +6670 2005-07-12T11:44:33Z 3106 249 2005-07-19T07:54:33Z 2 2020-02-15T06:59:41Z +6671 2005-07-12T11:48:48Z 955 526 2005-07-19T16:55:48Z 2 2020-02-15T06:59:41Z +6672 2005-07-12T11:49:16Z 375 439 2005-07-13T07:03:16Z 2 2020-02-15T06:59:41Z +6673 2005-07-12T11:50:56Z 1997 322 2005-07-13T14:27:56Z 1 2020-02-15T06:59:41Z +6674 2005-07-12T11:51:54Z 2385 399 2005-07-13T16:57:54Z 1 2020-02-15T06:59:41Z +6675 2005-07-12T11:53:06Z 2124 523 2005-07-13T06:09:06Z 1 2020-02-15T06:59:41Z +6676 2005-07-12T11:53:40Z 2294 571 2005-07-19T09:15:40Z 1 2020-02-15T06:59:41Z +6677 2005-07-12T11:58:14Z 2389 516 2005-07-21T06:05:14Z 2 2020-02-15T06:59:41Z +6678 2005-07-12T11:58:36Z 3473 330 2005-07-15T17:50:36Z 2 2020-02-15T06:59:41Z +6679 2005-07-12T12:01:07Z 3664 586 2005-07-14T11:36:07Z 1 2020-02-15T06:59:41Z +6680 2005-07-12T12:01:56Z 2887 43 2005-07-16T17:32:56Z 1 2020-02-15T06:59:41Z +6681 2005-07-12T12:04:12Z 854 368 2005-07-19T11:01:12Z 2 2020-02-15T06:59:41Z +6682 2005-07-12T12:12:43Z 1984 339 2005-07-21T10:49:43Z 2 2020-02-15T06:59:41Z +6683 2005-07-12T12:14:05Z 3433 244 2005-07-17T14:02:05Z 2 2020-02-15T06:59:41Z +6684 2005-07-12T12:14:42Z 2817 583 2005-07-21T11:07:42Z 2 2020-02-15T06:59:41Z +6685 2005-07-12T12:16:28Z 1434 5 2005-07-19T17:03:28Z 1 2020-02-15T06:59:41Z +6686 2005-07-12T12:18:38Z 3804 6 2005-07-13T17:56:38Z 2 2020-02-15T06:59:41Z +6687 2005-07-12T12:19:23Z 2736 128 2005-07-19T17:12:23Z 1 2020-02-15T06:59:41Z +6688 2005-07-12T12:22:12Z 2377 246 2005-07-14T14:05:12Z 1 2020-02-15T06:59:41Z +6689 2005-07-12T12:22:13Z 1568 525 2005-07-16T07:44:13Z 1 2020-02-15T06:59:41Z +6690 2005-07-12T12:23:02Z 4254 447 2005-07-16T15:39:02Z 2 2020-02-15T06:59:41Z +6691 2005-07-12T12:26:38Z 403 192 2005-07-18T13:26:38Z 2 2020-02-15T06:59:41Z +6692 2005-07-12T12:35:39Z 2837 372 2005-07-20T11:20:39Z 2 2020-02-15T06:59:41Z +6693 2005-07-12T12:37:00Z 2014 573 2005-07-20T09:36:00Z 1 2020-02-15T06:59:41Z +6694 2005-07-12T12:39:23Z 586 204 2005-07-19T14:47:23Z 1 2020-02-15T06:59:41Z +6695 2005-07-12T12:39:39Z 3088 550 2005-07-17T13:36:39Z 2 2020-02-15T06:59:41Z +6696 2005-07-12T12:44:04Z 299 273 2005-07-16T14:17:04Z 1 2020-02-15T06:59:41Z +6697 2005-07-12T12:44:57Z 210 103 2005-07-19T13:02:57Z 1 2020-02-15T06:59:41Z +6698 2005-07-12T12:45:00Z 4419 64 2005-07-16T11:16:00Z 2 2020-02-15T06:59:41Z +6699 2005-07-12T12:45:21Z 3411 565 2005-07-15T12:59:21Z 1 2020-02-15T06:59:41Z +6700 2005-07-12T12:47:22Z 3063 184 2005-07-21T16:04:22Z 1 2020-02-15T06:59:41Z +6701 2005-07-12T12:47:59Z 3428 454 2005-07-13T10:28:59Z 1 2020-02-15T06:59:41Z +6702 2005-07-12T12:48:03Z 233 164 2005-07-13T11:55:03Z 1 2020-02-15T06:59:41Z +6703 2005-07-12T12:50:19Z 46 470 2005-07-16T13:41:19Z 1 2020-02-15T06:59:41Z +6704 2005-07-12T12:50:24Z 1590 595 2005-07-20T16:41:24Z 2 2020-02-15T06:59:41Z +6705 2005-07-12T12:53:11Z 4268 363 2005-07-13T07:17:11Z 1 2020-02-15T06:59:41Z +6706 2005-07-12T12:59:16Z 4552 267 2005-07-19T10:37:16Z 1 2020-02-15T06:59:41Z +6707 2005-07-12T13:07:55Z 406 80 2005-07-16T16:26:55Z 2 2020-02-15T06:59:41Z +6708 2005-07-12T13:10:55Z 372 82 2005-07-21T07:36:55Z 1 2020-02-15T06:59:41Z +6709 2005-07-12T13:20:41Z 4049 322 2005-07-16T10:37:41Z 2 2020-02-15T06:59:41Z +6710 2005-07-12T13:23:09Z 806 462 2005-07-20T10:10:09Z 2 2020-02-15T06:59:41Z +6711 2005-07-12T13:23:40Z 2247 257 2005-07-20T11:45:40Z 2 2020-02-15T06:59:41Z +6712 2005-07-12T13:24:47Z 4581 226 2005-07-20T09:35:47Z 2 2020-02-15T06:59:41Z +6713 2005-07-12T13:27:36Z 4218 557 2005-07-16T11:14:36Z 1 2020-02-15T06:59:41Z +6714 2005-07-12T13:29:06Z 1947 370 2005-07-18T16:02:06Z 2 2020-02-15T06:59:41Z +6715 2005-07-12T13:32:28Z 643 386 2005-07-15T17:01:28Z 2 2020-02-15T06:59:41Z +6716 2005-07-12T13:34:58Z 2783 367 2005-07-19T15:09:58Z 1 2020-02-15T06:59:41Z +6717 2005-07-12T13:35:02Z 523 273 2005-07-20T15:03:02Z 1 2020-02-15T06:59:41Z +6718 2005-07-12T13:38:06Z 2283 541 2005-07-18T09:05:06Z 1 2020-02-15T06:59:41Z +6719 2005-07-12T13:40:37Z 739 330 2005-07-15T15:23:37Z 2 2020-02-15T06:59:41Z +6720 2005-07-12T13:41:16Z 2704 151 2005-07-13T14:41:16Z 2 2020-02-15T06:59:41Z +6721 2005-07-12T13:42:58Z 2798 462 2005-07-19T16:39:58Z 2 2020-02-15T06:59:41Z +6722 2005-07-12T13:44:03Z 3124 211 2005-07-19T12:43:03Z 2 2020-02-15T06:59:41Z +6723 2005-07-12T13:44:57Z 2678 499 2005-07-14T15:57:57Z 2 2020-02-15T06:59:41Z +6724 2005-07-12T13:45:15Z 2486 262 2005-07-19T19:18:15Z 1 2020-02-15T06:59:41Z +6725 2005-07-12T13:47:17Z 831 213 2005-07-17T13:31:17Z 1 2020-02-15T06:59:41Z +6726 2005-07-12T13:48:14Z 4494 97 2005-07-16T11:11:14Z 1 2020-02-15T06:59:41Z +6727 2005-07-12T13:54:25Z 3793 407 2005-07-14T17:29:25Z 1 2020-02-15T06:59:41Z +6728 2005-07-12T13:56:48Z 2113 414 2005-07-15T18:49:48Z 1 2020-02-15T06:59:41Z +6729 2005-07-12T13:58:23Z 2495 455 2005-07-19T09:34:23Z 2 2020-02-15T06:59:41Z +6730 2005-07-12T13:58:25Z 1552 532 2005-07-20T13:01:25Z 1 2020-02-15T06:59:41Z +6731 2005-07-12T13:58:27Z 844 593 2005-07-15T10:04:27Z 2 2020-02-15T06:59:41Z +6732 2005-07-12T13:58:51Z 1913 299 2005-07-17T17:42:51Z 1 2020-02-15T06:59:41Z +6733 2005-07-12T14:04:01Z 1476 585 2005-07-21T18:57:01Z 2 2020-02-15T06:59:41Z +6734 2005-07-12T14:04:24Z 2248 446 2005-07-21T19:47:24Z 1 2020-02-15T06:59:41Z +6735 2005-07-12T14:08:20Z 276 428 2005-07-18T09:41:20Z 2 2020-02-15T06:59:41Z +6736 2005-07-12T14:16:50Z 530 342 2005-07-15T16:26:50Z 1 2020-02-15T06:59:41Z +6737 2005-07-12T14:16:52Z 315 304 2005-07-18T19:48:52Z 1 2020-02-15T06:59:41Z +6738 2005-07-12T14:17:55Z 1197 366 2005-07-21T10:11:55Z 2 2020-02-15T06:59:41Z +6739 2005-07-12T14:22:08Z 1221 71 2005-07-18T16:57:08Z 2 2020-02-15T06:59:41Z +6740 2005-07-12T14:22:08Z 2431 139 2005-07-14T14:35:08Z 1 2020-02-15T06:59:41Z +6741 2005-07-12T14:24:16Z 237 359 2005-07-15T08:31:16Z 1 2020-02-15T06:59:41Z +6742 2005-07-12T14:25:31Z 4242 558 2005-07-17T08:50:31Z 2 2020-02-15T06:59:41Z +6743 2005-07-12T14:29:25Z 158 261 2005-07-13T13:13:25Z 1 2020-02-15T06:59:41Z +6744 2005-07-12T14:30:28Z 2565 64 2005-07-14T16:20:28Z 1 2020-02-15T06:59:41Z +6745 2005-07-12T14:30:51Z 1331 524 2005-07-13T13:42:51Z 2 2020-02-15T06:59:41Z +6746 2005-07-12T14:33:01Z 3127 537 2005-07-17T19:52:01Z 2 2020-02-15T06:59:41Z +6747 2005-07-12T14:33:21Z 3651 126 2005-07-13T09:59:21Z 2 2020-02-15T06:59:41Z +6748 2005-07-12T14:39:27Z 3655 540 2005-07-18T13:40:27Z 2 2020-02-15T06:59:41Z +6749 2005-07-12T14:43:05Z 2895 334 2005-07-21T15:13:05Z 2 2020-02-15T06:59:41Z +6750 2005-07-12T14:49:39Z 3838 459 2005-07-18T18:43:39Z 2 2020-02-15T06:59:41Z +6751 2005-07-12T14:50:34Z 1749 312 2005-07-15T19:39:34Z 2 2020-02-15T06:59:41Z +6752 2005-07-12T14:53:15Z 3392 453 2005-07-20T09:23:15Z 1 2020-02-15T06:59:41Z +6753 2005-07-12T14:55:42Z 2591 147 2005-07-18T19:16:42Z 1 2020-02-15T06:59:41Z +6754 2005-07-12T14:59:24Z 1460 114 2005-07-14T11:04:24Z 2 2020-02-15T06:59:41Z +6755 2005-07-12T15:07:49Z 2542 126 2005-07-21T18:43:49Z 2 2020-02-15T06:59:41Z +6756 2005-07-12T15:08:28Z 1174 531 2005-07-13T14:25:28Z 2 2020-02-15T06:59:41Z +6757 2005-07-12T15:09:48Z 547 558 2005-07-17T15:04:48Z 2 2020-02-15T06:59:41Z +6758 2005-07-12T15:13:49Z 4098 546 2005-07-20T09:31:49Z 2 2020-02-15T06:59:41Z +6759 2005-07-12T15:14:48Z 3624 49 2005-07-15T11:29:48Z 1 2020-02-15T06:59:41Z +6760 2005-07-12T15:16:00Z 501 502 2005-07-20T13:20:00Z 2 2020-02-15T06:59:41Z +6761 2005-07-12T15:17:42Z 3645 7 2005-07-18T17:59:42Z 2 2020-02-15T06:59:41Z +6762 2005-07-12T15:25:33Z 3857 262 2005-07-21T18:57:33Z 1 2020-02-15T06:59:41Z +6763 2005-07-12T15:26:34Z 3364 314 2005-07-18T16:38:34Z 2 2020-02-15T06:59:41Z +6764 2005-07-12T15:29:27Z 4407 396 2005-07-21T20:00:27Z 2 2020-02-15T06:59:41Z +6765 2005-07-12T15:30:47Z 2571 433 2005-07-19T14:19:47Z 2 2020-02-15T06:59:41Z +6766 2005-07-12T15:32:01Z 3615 171 2005-07-18T14:03:01Z 2 2020-02-15T06:59:41Z +6767 2005-07-12T15:46:55Z 1819 208 2005-07-17T17:36:55Z 2 2020-02-15T06:59:41Z +6768 2005-07-12T15:47:51Z 3418 151 2005-07-19T21:17:51Z 2 2020-02-15T06:59:41Z +6769 2005-07-12T15:48:54Z 1687 63 2005-07-21T14:39:54Z 2 2020-02-15T06:59:41Z +6770 2005-07-12T15:49:40Z 2080 360 2005-07-20T10:14:40Z 2 2020-02-15T06:59:41Z +6771 2005-07-12T15:54:40Z 1113 396 2005-07-17T15:56:40Z 2 2020-02-15T06:59:41Z +6772 2005-07-12T15:55:35Z 3810 89 2005-07-18T10:47:35Z 1 2020-02-15T06:59:41Z +6773 2005-07-12T15:55:39Z 3346 12 2005-07-18T17:52:39Z 2 2020-02-15T06:59:41Z +6774 2005-07-12T15:56:08Z 868 171 2005-07-13T18:42:08Z 1 2020-02-15T06:59:41Z +6775 2005-07-12T16:01:44Z 2909 383 2005-07-19T14:11:44Z 1 2020-02-15T06:59:41Z +6776 2005-07-12T16:02:09Z 2398 348 2005-07-20T16:31:09Z 1 2020-02-15T06:59:41Z +6777 2005-07-12T16:04:40Z 4089 351 2005-07-20T15:05:40Z 2 2020-02-15T06:59:41Z +6778 2005-07-12T16:06:00Z 4503 381 2005-07-14T21:57:00Z 2 2020-02-15T06:59:41Z +6779 2005-07-12T16:10:50Z 4468 404 2005-07-17T14:51:50Z 2 2020-02-15T06:59:41Z +6780 2005-07-12T16:18:12Z 1255 121 2005-07-13T17:56:12Z 2 2020-02-15T06:59:41Z +6781 2005-07-12T16:21:47Z 3783 533 2005-07-15T19:52:47Z 1 2020-02-15T06:59:41Z +6782 2005-07-12T16:23:25Z 2742 199 2005-07-20T18:46:25Z 2 2020-02-15T06:59:41Z +6783 2005-07-12T16:27:56Z 3633 506 2005-07-13T12:11:56Z 2 2020-02-15T06:59:41Z +6784 2005-07-12T16:28:49Z 197 578 2005-07-15T17:27:49Z 1 2020-02-15T06:59:41Z +6785 2005-07-12T16:30:57Z 4448 69 2005-07-18T20:46:57Z 1 2020-02-15T06:59:41Z +6786 2005-07-12T16:32:33Z 2011 546 2005-07-16T12:42:33Z 2 2020-02-15T06:59:41Z +6787 2005-07-12T16:33:28Z 1481 342 2005-07-18T21:48:28Z 2 2020-02-15T06:59:41Z +6788 2005-07-12T16:33:44Z 1162 460 2005-07-20T15:38:44Z 2 2020-02-15T06:59:41Z +6789 2005-07-12T16:34:40Z 1973 76 2005-07-14T17:02:40Z 2 2020-02-15T06:59:41Z +6790 2005-07-12T16:34:59Z 4486 400 2005-07-17T21:43:59Z 2 2020-02-15T06:59:41Z +6791 2005-07-12T16:35:07Z 1495 144 2005-07-20T15:32:07Z 2 2020-02-15T06:59:41Z +6792 2005-07-12T16:37:28Z 510 571 2005-07-20T11:20:28Z 2 2020-02-15T06:59:41Z +6793 2005-07-12T16:37:55Z 103 148 2005-07-21T16:04:55Z 2 2020-02-15T06:59:41Z +6794 2005-07-12T16:38:23Z 813 233 2005-07-20T17:36:23Z 2 2020-02-15T06:59:41Z +6795 2005-07-12T16:41:00Z 1489 245 2005-07-21T20:52:00Z 1 2020-02-15T06:59:41Z +6796 2005-07-12T16:44:16Z 227 291 2005-07-16T14:48:16Z 2 2020-02-15T06:59:41Z +6797 2005-07-12T16:47:06Z 1536 469 2005-07-14T14:38:06Z 2 2020-02-15T06:59:41Z +6798 2005-07-12T16:49:11Z 275 115 2005-07-19T12:11:11Z 2 2020-02-15T06:59:41Z +6799 2005-07-12T16:52:13Z 2778 42 2005-07-14T15:11:13Z 2 2020-02-15T06:59:41Z +6800 2005-07-12T17:03:56Z 3742 599 2005-07-21T20:32:56Z 2 2020-02-15T06:59:41Z +6801 2005-07-12T17:09:08Z 872 500 2005-07-21T22:25:08Z 1 2020-02-15T06:59:41Z +6802 2005-07-12T17:14:17Z 2942 298 2005-07-17T11:54:17Z 2 2020-02-15T06:59:41Z +6803 2005-07-12T17:21:49Z 2676 490 2005-07-14T18:01:49Z 2 2020-02-15T06:59:41Z +6804 2005-07-12T17:22:06Z 1554 269 2005-07-21T11:37:06Z 1 2020-02-15T06:59:41Z +6805 2005-07-12T17:23:01Z 1758 262 2005-07-21T19:38:01Z 2 2020-02-15T06:59:41Z +6806 2005-07-12T17:31:43Z 656 179 2005-07-17T14:36:43Z 1 2020-02-15T06:59:41Z +6807 2005-07-12T17:33:53Z 669 376 2005-07-18T16:28:53Z 2 2020-02-15T06:59:41Z +6808 2005-07-12T17:36:42Z 362 263 2005-07-18T23:33:42Z 2 2020-02-15T06:59:41Z +6809 2005-07-12T17:51:54Z 3455 168 2005-07-17T15:10:54Z 1 2020-02-15T06:59:41Z +6810 2005-07-12T17:54:19Z 2802 485 2005-07-20T16:58:19Z 2 2020-02-15T06:59:41Z +6811 2005-07-12T17:54:33Z 1572 107 2005-07-20T17:39:33Z 1 2020-02-15T06:59:41Z +6812 2005-07-12T18:03:25Z 2227 553 2005-07-20T18:33:25Z 2 2020-02-15T06:59:41Z +6813 2005-07-12T18:03:50Z 135 54 2005-07-16T16:30:50Z 1 2020-02-15T06:59:41Z +6814 2005-07-12T18:11:58Z 1863 579 2005-07-18T20:37:58Z 2 2020-02-15T06:59:41Z +6815 2005-07-12T18:14:10Z 3236 468 2005-07-17T14:16:10Z 1 2020-02-15T06:59:41Z +6816 2005-07-12T18:18:50Z 2963 290 2005-07-18T21:09:50Z 2 2020-02-15T06:59:41Z +6817 2005-07-12T18:19:57Z 184 135 2005-07-19T22:53:57Z 1 2020-02-15T06:59:41Z +6818 2005-07-12T18:20:54Z 1013 153 2005-07-21T00:03:54Z 2 2020-02-15T06:59:41Z +6819 2005-07-12T18:21:01Z 1253 198 2005-07-13T21:14:01Z 1 2020-02-15T06:59:41Z +6820 2005-07-12T18:21:30Z 223 243 2005-07-14T15:14:30Z 1 2020-02-15T06:59:41Z +6821 2005-07-12T18:22:10Z 623 363 2005-07-14T13:25:10Z 2 2020-02-15T06:59:41Z +6822 2005-07-12T18:23:39Z 1592 300 2005-07-19T21:06:39Z 1 2020-02-15T06:59:41Z +6823 2005-07-12T18:24:31Z 795 557 2005-07-17T23:13:31Z 1 2020-02-15T06:59:41Z +6824 2005-07-12T18:26:46Z 858 579 2005-07-21T15:23:46Z 1 2020-02-15T06:59:41Z +6825 2005-07-12T18:28:12Z 2342 281 2005-07-15T19:24:12Z 1 2020-02-15T06:59:41Z +6826 2005-07-12T18:32:02Z 1708 408 2005-07-16T23:21:02Z 1 2020-02-15T06:59:41Z +6827 2005-07-12T18:33:45Z 1529 283 2005-07-13T19:09:45Z 1 2020-02-15T06:59:41Z +6828 2005-07-12T18:38:51Z 874 502 2005-07-14T20:10:51Z 1 2020-02-15T06:59:41Z +6829 2005-07-12T18:38:59Z 4184 361 2005-07-16T23:25:59Z 1 2020-02-15T06:59:41Z +6830 2005-07-12T18:42:55Z 1943 578 2005-07-17T17:58:55Z 1 2020-02-15T06:59:41Z +6831 2005-07-12T18:44:04Z 924 163 2005-07-16T21:39:04Z 2 2020-02-15T06:59:41Z +6832 2005-07-12T18:51:41Z 444 220 2005-07-20T13:29:41Z 2 2020-02-15T06:59:41Z +6833 2005-07-12T18:53:34Z 912 301 2005-07-19T22:21:34Z 2 2020-02-15T06:59:41Z +6834 2005-07-12T18:53:37Z 897 533 2005-07-19T13:42:37Z 1 2020-02-15T06:59:41Z +6835 2005-07-12T18:58:03Z 1444 367 2005-07-18T00:41:03Z 1 2020-02-15T06:59:41Z +6836 2005-07-12T18:58:05Z 2744 113 2005-07-15T17:45:05Z 1 2020-02-15T06:59:41Z +6837 2005-07-12T18:59:45Z 1203 533 2005-07-21T22:47:45Z 2 2020-02-15T06:59:41Z +6838 2005-07-12T19:01:30Z 3492 354 2005-07-17T23:42:30Z 1 2020-02-15T06:59:41Z +6839 2005-07-12T19:03:19Z 3900 357 2005-07-15T23:48:19Z 1 2020-02-15T06:59:41Z +6840 2005-07-12T19:03:22Z 1381 323 2005-07-21T18:34:22Z 2 2020-02-15T06:59:41Z +6841 2005-07-12T19:04:24Z 2265 108 2005-07-14T23:58:24Z 1 2020-02-15T06:59:41Z +6842 2005-07-12T19:07:55Z 3376 366 2005-07-19T22:47:55Z 1 2020-02-15T06:59:41Z +6843 2005-07-12T19:14:05Z 746 561 2005-07-20T23:15:05Z 1 2020-02-15T06:59:41Z +6844 2005-07-12T19:14:53Z 3211 482 2005-07-18T16:07:53Z 2 2020-02-15T06:59:41Z +6845 2005-07-12T19:20:41Z 3833 414 2005-07-14T15:27:41Z 1 2020-02-15T06:59:41Z +6846 2005-07-12T19:20:45Z 1214 18 2005-07-17T00:06:45Z 1 2020-02-15T06:59:41Z +6847 2005-07-12T19:22:37Z 346 63 2005-07-21T18:53:37Z 2 2020-02-15T06:59:41Z +6848 2005-07-12T19:24:07Z 1782 433 2005-07-14T17:03:07Z 1 2020-02-15T06:59:41Z +6849 2005-07-12T19:29:19Z 4307 479 2005-07-19T22:03:19Z 1 2020-02-15T06:59:41Z +6850 2005-07-12T19:30:42Z 1145 433 2005-07-17T21:26:42Z 2 2020-02-15T06:59:41Z +6851 2005-07-12T19:32:14Z 664 280 2005-07-17T21:03:14Z 1 2020-02-15T06:59:41Z +6852 2005-07-12T19:33:49Z 2182 75 2005-07-13T20:01:49Z 2 2020-02-15T06:59:41Z +6853 2005-07-12T19:38:11Z 4006 299 2005-07-20T00:14:11Z 1 2020-02-15T06:59:41Z +6854 2005-07-12T19:38:57Z 3173 151 2005-07-16T16:28:57Z 1 2020-02-15T06:59:41Z +6855 2005-07-12T19:46:29Z 2657 24 2005-07-15T16:56:29Z 2 2020-02-15T06:59:41Z +6856 2005-07-12T19:50:16Z 4338 275 2005-07-14T22:25:16Z 1 2020-02-15T06:59:41Z +6857 2005-07-12T19:53:30Z 424 196 2005-07-13T15:22:30Z 1 2020-02-15T06:59:41Z +6858 2005-07-12T19:53:51Z 1095 516 2005-07-19T14:12:51Z 1 2020-02-15T06:59:41Z +6859 2005-07-12T19:53:57Z 4108 321 2005-07-17T19:48:57Z 2 2020-02-15T06:59:41Z +6860 2005-07-12T19:54:17Z 2907 91 2005-07-18T13:59:17Z 1 2020-02-15T06:59:41Z +6861 2005-07-12T19:56:52Z 354 83 2005-07-13T16:02:52Z 1 2020-02-15T06:59:41Z +6862 2005-07-12T19:58:09Z 3477 231 2005-07-18T15:48:09Z 2 2020-02-15T06:59:41Z +6863 2005-07-12T19:58:34Z 229 484 2005-07-21T16:57:34Z 1 2020-02-15T06:59:41Z +6864 2005-07-12T19:59:25Z 2252 38 2005-07-19T15:52:25Z 2 2020-02-15T06:59:41Z +6865 2005-07-12T20:02:40Z 1428 175 2005-07-20T00:39:40Z 2 2020-02-15T06:59:41Z +6866 2005-07-12T20:03:44Z 2481 312 2005-07-15T01:55:44Z 1 2020-02-15T06:59:41Z +6867 2005-07-12T20:06:47Z 3354 190 2005-07-19T16:59:47Z 1 2020-02-15T06:59:41Z +6868 2005-07-12T20:10:17Z 719 306 2005-07-15T22:34:17Z 2 2020-02-15T06:59:41Z +6869 2005-07-12T20:12:06Z 3546 278 2005-07-13T18:37:06Z 1 2020-02-15T06:59:41Z +6870 2005-07-12T20:13:45Z 3102 13 2005-07-16T22:09:45Z 2 2020-02-15T06:59:41Z +6871 2005-07-12T20:13:49Z 3612 204 2005-07-14T20:11:49Z 2 2020-02-15T06:59:41Z +6872 2005-07-12T20:15:04Z 3246 86 2005-07-18T18:19:04Z 1 2020-02-15T06:59:41Z +6873 2005-07-12T20:20:50Z 802 161 2005-07-17T01:51:50Z 1 2020-02-15T06:59:41Z +6874 2005-07-12T20:20:53Z 4478 539 2005-07-19T19:41:53Z 1 2020-02-15T06:59:41Z +6875 2005-07-12T20:23:05Z 3420 172 2005-07-19T00:09:05Z 2 2020-02-15T06:59:41Z +6876 2005-07-12T20:32:50Z 34 531 2005-07-16T21:12:50Z 1 2020-02-15T06:59:41Z +6877 2005-07-12T20:32:58Z 3968 231 2005-07-18T18:01:58Z 1 2020-02-15T06:59:41Z +6878 2005-07-12T20:37:13Z 2428 363 2005-07-19T20:13:13Z 2 2020-02-15T06:59:41Z +6879 2005-07-12T20:37:37Z 1901 416 2005-07-20T15:40:37Z 2 2020-02-15T06:59:41Z +6880 2005-07-12T20:41:35Z 1473 229 2005-07-17T02:22:35Z 1 2020-02-15T06:59:41Z +6881 2005-07-12T20:46:35Z 2496 346 2005-07-21T00:26:35Z 2 2020-02-15T06:59:41Z +6882 2005-07-12T20:50:39Z 2469 166 2005-07-14T21:01:39Z 1 2020-02-15T06:59:41Z +6883 2005-07-12T20:50:48Z 468 596 2005-07-19T16:00:48Z 2 2020-02-15T06:59:41Z +6884 2005-07-12T20:52:41Z 3642 17 2005-07-20T23:13:41Z 1 2020-02-15T06:59:41Z +6885 2005-07-12T20:56:04Z 3972 159 2005-07-15T19:21:04Z 2 2020-02-15T06:59:41Z +6886 2005-07-12T20:58:04Z 4533 429 2005-07-18T16:56:04Z 2 2020-02-15T06:59:41Z +6887 2005-07-12T21:00:23Z 4487 542 2005-07-21T17:46:23Z 1 2020-02-15T06:59:41Z +6888 2005-07-12T21:01:11Z 1896 490 2005-07-17T21:49:11Z 2 2020-02-15T06:59:41Z +6889 2005-07-12T21:01:22Z 2919 198 2005-07-20T20:16:22Z 2 2020-02-15T06:59:41Z +6890 2005-07-12T21:03:03Z 2538 473 2005-07-14T00:47:03Z 1 2020-02-15T06:59:41Z +6891 2005-07-12T21:07:35Z 3189 507 2005-07-14T16:59:35Z 2 2020-02-15T06:59:41Z +6892 2005-07-12T21:10:04Z 1567 138 2005-07-13T23:03:04Z 2 2020-02-15T06:59:41Z +6893 2005-07-12T21:20:11Z 2611 377 2005-07-21T18:55:11Z 2 2020-02-15T06:59:41Z +6894 2005-07-12T21:20:50Z 1347 315 2005-07-20T23:42:50Z 2 2020-02-15T06:59:41Z +6895 2005-07-12T21:23:59Z 2935 599 2005-07-19T20:47:59Z 2 2020-02-15T06:59:41Z +6896 2005-07-12T21:25:37Z 1266 111 2005-07-20T23:51:37Z 1 2020-02-15T06:59:41Z +6897 2005-07-12T21:30:41Z 170 13 2005-07-15T03:19:41Z 1 2020-02-15T06:59:41Z +6898 2005-07-12T21:39:04Z 1725 557 2005-07-15T20:30:04Z 1 2020-02-15T06:59:41Z +6899 2005-07-12T21:44:16Z 3565 483 2005-07-21T22:21:16Z 2 2020-02-15T06:59:41Z +6900 2005-07-12T21:45:25Z 129 292 2005-07-19T21:19:25Z 1 2020-02-15T06:59:41Z +6901 2005-07-12T21:46:33Z 4574 158 2005-07-16T21:36:33Z 1 2020-02-15T06:59:41Z +6902 2005-07-12T21:57:16Z 314 485 2005-07-14T20:56:16Z 1 2020-02-15T06:59:41Z +6903 2005-07-12T21:58:15Z 3690 517 2005-07-14T01:38:15Z 2 2020-02-15T06:59:41Z +6904 2005-07-12T22:02:09Z 2312 465 2005-07-17T16:42:09Z 1 2020-02-15T06:59:41Z +6905 2005-07-12T22:02:18Z 763 25 2005-07-18T23:30:18Z 1 2020-02-15T06:59:41Z +6906 2005-07-12T22:03:02Z 1435 335 2005-07-15T00:35:02Z 1 2020-02-15T06:59:41Z +6907 2005-07-12T22:03:49Z 2516 575 2005-07-18T19:18:49Z 1 2020-02-15T06:59:41Z +6908 2005-07-12T22:08:46Z 3161 529 2005-07-21T00:21:46Z 2 2020-02-15T06:59:41Z +6909 2005-07-12T22:09:30Z 769 174 2005-07-17T02:05:30Z 2 2020-02-15T06:59:41Z +6910 2005-07-12T22:11:21Z 1290 546 2005-07-21T02:35:21Z 1 2020-02-15T06:59:41Z +6911 2005-07-12T22:14:34Z 901 361 2005-07-18T20:17:34Z 1 2020-02-15T06:59:41Z +6912 2005-07-12T22:17:16Z 1701 471 2005-07-19T18:18:16Z 1 2020-02-15T06:59:41Z +6913 2005-07-12T22:18:12Z 569 443 2005-07-14T23:03:12Z 2 2020-02-15T06:59:41Z +6914 2005-07-12T22:26:56Z 496 361 2005-07-17T20:03:56Z 1 2020-02-15T06:59:41Z +6915 2005-07-12T22:28:09Z 1243 559 2005-07-14T00:53:09Z 1 2020-02-15T06:59:41Z +6916 2005-07-12T22:29:18Z 3311 88 2005-07-19T16:46:18Z 1 2020-02-15T06:59:41Z +6917 2005-07-12T22:30:15Z 3048 23 2005-07-20T03:20:15Z 1 2020-02-15T06:59:41Z +6918 2005-07-12T22:30:29Z 4085 140 2005-07-19T22:51:29Z 1 2020-02-15T06:59:41Z +6919 2005-07-12T22:32:17Z 1122 540 2005-07-18T20:09:17Z 1 2020-02-15T06:59:41Z +6920 2005-07-12T22:32:58Z 2301 109 2005-07-19T20:29:58Z 2 2020-02-15T06:59:41Z +6921 2005-07-12T22:39:03Z 3322 265 2005-07-21T18:54:03Z 2 2020-02-15T06:59:41Z +6922 2005-07-12T22:39:48Z 1114 371 2005-07-14T18:35:48Z 1 2020-02-15T06:59:41Z +6923 2005-07-12T22:40:48Z 2642 490 2005-07-19T23:07:48Z 2 2020-02-15T06:59:41Z +6924 2005-07-26T22:51:53Z 1257 502 2005-08-03T19:04:53Z 2 2020-02-15T06:59:41Z +6925 2005-07-26T22:52:32Z 2919 42 2005-07-29T21:22:32Z 1 2020-02-15T06:59:41Z +6926 2005-07-26T22:52:45Z 1276 354 2005-07-28T18:32:45Z 1 2020-02-15T06:59:41Z +6927 2005-07-26T22:56:00Z 4511 470 2005-08-05T03:16:00Z 2 2020-02-15T06:59:41Z +6928 2005-07-26T22:56:21Z 3605 487 2005-07-30T04:46:21Z 1 2020-02-15T06:59:41Z +6929 2005-07-26T22:59:19Z 3339 508 2005-08-03T22:40:19Z 1 2020-02-15T06:59:41Z +6930 2005-07-26T23:00:01Z 2989 393 2005-08-04T01:57:01Z 2 2020-02-15T06:59:41Z +6931 2005-07-26T23:02:57Z 2794 333 2005-07-28T04:48:57Z 2 2020-02-15T06:59:41Z +6932 2005-07-26T23:08:04Z 4517 463 2005-08-05T01:35:04Z 1 2020-02-15T06:59:41Z +6933 2005-07-26T23:09:23Z 1334 385 2005-07-31T20:50:23Z 1 2020-02-15T06:59:41Z +6934 2005-07-26T23:11:03Z 455 107 2005-08-04T19:18:03Z 1 2020-02-15T06:59:41Z +6935 2005-07-26T23:13:10Z 2771 435 2005-07-27T18:09:10Z 1 2020-02-15T06:59:41Z +6936 2005-07-26T23:13:34Z 60 538 2005-07-30T19:14:34Z 1 2020-02-15T06:59:41Z +6937 2005-07-26T23:15:50Z 1768 592 2005-07-27T19:14:50Z 1 2020-02-15T06:59:41Z +6938 2005-07-26T23:16:04Z 2058 427 2005-08-05T00:59:04Z 2 2020-02-15T06:59:41Z +6939 2005-07-26T23:17:51Z 278 354 2005-08-03T21:12:51Z 2 2020-02-15T06:59:41Z +6940 2005-07-26T23:18:35Z 3876 149 2005-08-05T01:44:35Z 2 2020-02-15T06:59:41Z +6941 2005-07-26T23:18:49Z 1575 441 2005-07-31T00:23:49Z 2 2020-02-15T06:59:41Z +6942 2005-07-26T23:27:40Z 1203 470 2005-07-31T03:17:40Z 2 2020-02-15T06:59:41Z +6943 2005-07-26T23:28:13Z 2436 21 2005-07-30T02:22:13Z 2 2020-02-15T06:59:41Z +6944 2005-07-26T23:34:02Z 1168 373 2005-08-05T01:27:02Z 1 2020-02-15T06:59:41Z +6945 2005-07-26T23:35:29Z 1627 560 2005-07-28T00:12:29Z 1 2020-02-15T06:59:41Z +6946 2005-07-26T23:40:07Z 1854 181 2005-08-04T01:18:07Z 2 2020-02-15T06:59:41Z +6947 2005-07-26T23:42:03Z 760 200 2005-08-02T05:06:03Z 2 2020-02-15T06:59:41Z +6948 2005-07-26T23:43:49Z 3088 228 2005-07-27T21:24:49Z 2 2020-02-15T06:59:41Z +6949 2005-07-26T23:44:12Z 1594 103 2005-07-30T05:39:12Z 2 2020-02-15T06:59:41Z +6950 2005-07-26T23:45:33Z 197 503 2005-07-31T04:40:33Z 2 2020-02-15T06:59:41Z +6951 2005-07-26T23:47:31Z 3348 98 2005-07-31T22:17:31Z 1 2020-02-15T06:59:41Z +6952 2005-07-26T23:51:27Z 4288 290 2005-07-30T02:45:27Z 2 2020-02-15T06:59:41Z +6953 2005-07-26T23:52:47Z 2910 306 2005-07-30T23:07:47Z 1 2020-02-15T06:59:41Z +6954 2005-07-26T23:55:13Z 1112 584 2005-07-28T19:01:13Z 2 2020-02-15T06:59:41Z +6955 2005-07-26T23:55:48Z 1104 469 2005-08-02T03:25:48Z 2 2020-02-15T06:59:41Z +6956 2005-07-26T23:55:57Z 2499 240 2005-08-03T21:41:57Z 1 2020-02-15T06:59:41Z +6957 2005-07-27T00:00:00Z 2231 518 2005-07-29T19:32:00Z 2 2020-02-15T06:59:41Z +6958 2005-07-27T00:02:41Z 657 333 2005-07-28T00:53:41Z 2 2020-02-15T06:59:41Z +6959 2005-07-27T00:07:51Z 1618 452 2005-07-27T20:45:51Z 2 2020-02-15T06:59:41Z +6960 2005-07-27T00:08:33Z 192 421 2005-08-03T20:58:33Z 2 2020-02-15T06:59:41Z +6961 2005-07-27T00:10:49Z 2205 38 2005-07-30T00:26:49Z 2 2020-02-15T06:59:41Z +6962 2005-07-27T00:10:58Z 4500 245 2005-07-30T02:11:58Z 2 2020-02-15T06:59:41Z +6963 2005-07-27T00:13:02Z 4284 489 2005-08-03T18:13:02Z 1 2020-02-15T06:59:41Z +6964 2005-07-27T00:15:04Z 1537 404 2005-07-31T00:04:04Z 2 2020-02-15T06:59:41Z +6965 2005-07-27T00:15:18Z 74 185 2005-07-28T04:30:18Z 2 2020-02-15T06:59:41Z +6966 2005-07-27T00:15:35Z 1577 45 2005-08-05T03:04:35Z 2 2020-02-15T06:59:41Z +6967 2005-07-27T00:16:31Z 1145 296 2005-08-03T22:19:31Z 1 2020-02-15T06:59:41Z +6968 2005-07-27T00:16:45Z 1662 370 2005-07-30T23:16:45Z 2 2020-02-15T06:59:41Z +6969 2005-07-27T00:23:54Z 2650 579 2005-08-03T04:34:54Z 1 2020-02-15T06:59:41Z +6970 2005-07-27T00:26:14Z 17 418 2005-08-03T20:00:14Z 2 2020-02-15T06:59:41Z +6971 2005-07-27T00:26:17Z 3493 366 2005-08-01T03:59:17Z 2 2020-02-15T06:59:41Z +6972 2005-07-27T00:31:25Z 1716 434 2005-07-28T22:15:25Z 2 2020-02-15T06:59:41Z +6973 2005-07-27T00:32:04Z 4572 564 2005-07-29T01:05:04Z 2 2020-02-15T06:59:41Z +6974 2005-07-27T00:39:16Z 2924 122 2005-08-04T01:59:16Z 2 2020-02-15T06:59:41Z +6975 2005-07-27T00:39:54Z 3328 527 2005-08-02T19:49:54Z 1 2020-02-15T06:59:41Z +6976 2005-07-27T00:40:01Z 3096 41 2005-07-31T22:30:01Z 2 2020-02-15T06:59:41Z +6977 2005-07-27T00:40:50Z 3545 429 2005-08-02T19:08:50Z 2 2020-02-15T06:59:41Z +6978 2005-07-27T00:47:40Z 3645 132 2005-07-31T04:32:40Z 2 2020-02-15T06:59:41Z +6979 2005-07-27T00:49:53Z 1001 141 2005-07-31T03:59:53Z 2 2020-02-15T06:59:41Z +6980 2005-07-27T00:50:30Z 1127 164 2005-08-03T23:35:30Z 1 2020-02-15T06:59:41Z +6981 2005-07-27T00:51:38Z 154 362 2005-07-28T01:06:38Z 2 2020-02-15T06:59:41Z +6982 2005-07-27T00:53:41Z 3843 284 2005-07-31T06:19:41Z 2 2020-02-15T06:59:41Z +6983 2005-07-27T00:55:03Z 1758 443 2005-08-01T21:19:03Z 2 2020-02-15T06:59:41Z +6984 2005-07-27T00:56:30Z 2407 297 2005-08-02T01:14:30Z 2 2020-02-15T06:59:41Z +6985 2005-07-27T00:57:42Z 1834 448 2005-07-31T00:53:42Z 1 2020-02-15T06:59:41Z +6986 2005-07-27T00:59:05Z 2104 262 2005-07-29T00:31:05Z 1 2020-02-15T06:59:41Z +6987 2005-07-27T00:59:50Z 3134 334 2005-07-28T01:47:50Z 1 2020-02-15T06:59:41Z +6988 2005-07-27T01:00:08Z 756 316 2005-07-31T04:35:08Z 2 2020-02-15T06:59:41Z +6989 2005-07-27T01:00:34Z 4036 120 2005-07-30T23:53:34Z 1 2020-02-15T06:59:41Z +6990 2005-07-27T01:02:46Z 4065 146 2005-07-31T00:22:46Z 1 2020-02-15T06:59:41Z +6991 2005-07-27T01:03:06Z 319 307 2005-08-05T04:18:06Z 2 2020-02-15T06:59:41Z +6992 2005-07-27T01:04:45Z 3411 106 2005-07-28T02:34:45Z 2 2020-02-15T06:59:41Z +6993 2005-07-27T01:05:24Z 3114 154 2005-07-30T06:23:24Z 2 2020-02-15T06:59:41Z +6994 2005-07-27T01:08:26Z 4316 400 2005-08-04T22:58:26Z 2 2020-02-15T06:59:41Z +6995 2005-07-27T01:12:13Z 1630 66 2005-07-29T21:26:13Z 1 2020-02-15T06:59:41Z +6996 2005-07-27T01:13:45Z 3237 236 2005-07-28T20:43:45Z 1 2020-02-15T06:59:41Z +6997 2005-07-27T01:14:02Z 2130 342 2005-07-29T01:12:02Z 2 2020-02-15T06:59:41Z +6998 2005-07-27T01:16:29Z 788 300 2005-07-30T05:50:29Z 2 2020-02-15T06:59:41Z +6999 2005-07-27T01:21:19Z 12 224 2005-07-29T20:33:19Z 2 2020-02-15T06:59:41Z +7000 2005-07-27T01:23:24Z 2024 31 2005-08-03T02:10:24Z 2 2020-02-15T06:59:41Z +7001 2005-07-27T01:25:34Z 1460 240 2005-07-31T23:30:34Z 2 2020-02-15T06:59:41Z +7002 2005-07-27T01:26:14Z 4157 349 2005-08-01T20:10:14Z 1 2020-02-15T06:59:41Z +7003 2005-07-27T01:32:06Z 636 161 2005-07-30T21:33:06Z 2 2020-02-15T06:59:41Z +7004 2005-07-27T01:36:05Z 4416 314 2005-08-03T23:46:05Z 1 2020-02-15T06:59:41Z +7005 2005-07-27T01:38:36Z 2438 446 2005-08-02T05:56:36Z 2 2020-02-15T06:59:41Z +7006 2005-07-27T01:42:20Z 3522 264 2005-08-03T03:19:20Z 1 2020-02-15T06:59:41Z +7007 2005-07-27T01:43:39Z 4186 257 2005-07-31T21:04:39Z 1 2020-02-15T06:59:41Z +7008 2005-07-27T01:44:03Z 3659 12 2005-07-28T21:19:03Z 2 2020-02-15T06:59:41Z +7009 2005-07-27T01:45:44Z 1585 414 2005-07-28T05:50:44Z 1 2020-02-15T06:59:41Z +7010 2005-07-27T01:56:01Z 3016 590 2005-07-30T04:40:01Z 1 2020-02-15T06:59:41Z +7011 2005-07-27T01:58:34Z 4082 254 2005-07-28T06:11:34Z 1 2020-02-15T06:59:41Z +7012 2005-07-27T02:01:03Z 779 239 2005-08-05T07:34:03Z 2 2020-02-15T06:59:41Z +7013 2005-07-27T02:03:21Z 3919 463 2005-07-31T22:12:21Z 1 2020-02-15T06:59:41Z +7014 2005-07-27T02:14:40Z 714 524 2005-08-03T00:32:40Z 2 2020-02-15T06:59:41Z +7015 2005-07-27T02:15:01Z 376 34 2005-07-28T07:46:01Z 2 2020-02-15T06:59:41Z +7016 2005-07-27T02:15:16Z 1425 423 2005-08-01T23:08:16Z 2 2020-02-15T06:59:41Z +7017 2005-07-27T02:16:03Z 753 176 2005-07-31T07:49:03Z 1 2020-02-15T06:59:41Z +7018 2005-07-27T02:20:22Z 1078 451 2005-08-02T05:04:22Z 2 2020-02-15T06:59:41Z +7019 2005-07-27T02:20:26Z 3837 491 2005-08-02T22:48:26Z 1 2020-02-15T06:59:41Z +7020 2005-07-27T02:24:27Z 3965 506 2005-07-29T01:27:27Z 2 2020-02-15T06:59:41Z +7021 2005-07-27T02:26:38Z 2690 380 2005-08-05T01:18:38Z 1 2020-02-15T06:59:41Z +7022 2005-07-27T02:31:15Z 1711 243 2005-07-29T02:52:15Z 1 2020-02-15T06:59:41Z +7023 2005-07-27T02:32:44Z 4196 303 2005-08-03T04:06:44Z 1 2020-02-15T06:59:41Z +7024 2005-07-27T02:36:40Z 3113 252 2005-07-28T06:58:40Z 1 2020-02-15T06:59:41Z +7025 2005-07-27T02:40:29Z 3530 176 2005-07-29T23:02:29Z 2 2020-02-15T06:59:41Z +7026 2005-07-27T02:48:58Z 3456 493 2005-07-29T03:41:58Z 2 2020-02-15T06:59:41Z +7027 2005-07-27T02:50:15Z 3280 61 2005-08-04T02:58:15Z 1 2020-02-15T06:59:41Z +7028 2005-07-27T02:54:25Z 834 179 2005-08-02T06:16:25Z 2 2020-02-15T06:59:41Z +7029 2005-07-27T02:57:43Z 2862 389 2005-07-30T08:24:43Z 1 2020-02-15T06:59:41Z +7030 2005-07-27T03:01:40Z 1277 550 2005-07-31T07:01:40Z 1 2020-02-15T06:59:41Z +7031 2005-07-27T03:02:07Z 1435 530 2005-08-02T07:14:07Z 1 2020-02-15T06:59:41Z +7032 2005-07-27T03:03:09Z 3397 269 2005-07-28T22:57:09Z 1 2020-02-15T06:59:41Z +7033 2005-07-27T03:03:25Z 2803 352 2005-07-28T01:57:25Z 2 2020-02-15T06:59:41Z +7034 2005-07-27T03:03:37Z 1712 281 2005-07-28T23:18:37Z 1 2020-02-15T06:59:41Z +7035 2005-07-27T03:06:09Z 2439 90 2005-08-02T21:59:09Z 2 2020-02-15T06:59:41Z +7036 2005-07-27T03:06:12Z 2569 70 2005-07-28T23:26:12Z 2 2020-02-15T06:59:41Z +7037 2005-07-27T03:06:44Z 3155 171 2005-08-02T04:51:44Z 2 2020-02-15T06:59:41Z +7038 2005-07-27T03:07:29Z 1909 518 2005-07-31T04:55:29Z 2 2020-02-15T06:59:41Z +7039 2005-07-27T03:11:48Z 1906 99 2005-08-01T23:55:48Z 1 2020-02-15T06:59:41Z +7040 2005-07-27T03:17:19Z 470 524 2005-07-29T07:03:19Z 2 2020-02-15T06:59:41Z +7041 2005-07-27T03:18:32Z 4212 379 2005-07-30T06:40:32Z 2 2020-02-15T06:59:41Z +7042 2005-07-27T03:20:18Z 399 188 2005-08-01T02:23:18Z 1 2020-02-15T06:59:41Z +7043 2005-07-27T03:24:23Z 3422 493 2005-08-05T02:55:23Z 2 2020-02-15T06:59:41Z +7044 2005-07-27T03:27:29Z 88 147 2005-08-01T07:00:29Z 2 2020-02-15T06:59:41Z +7045 2005-07-27T03:27:35Z 1788 64 2005-08-01T06:31:35Z 2 2020-02-15T06:59:41Z +7046 2005-07-27T03:27:56Z 3740 349 2005-07-30T00:54:56Z 2 2020-02-15T06:59:41Z +7047 2005-07-27T03:31:11Z 2866 236 2005-08-03T23:40:11Z 1 2020-02-15T06:59:41Z +7048 2005-07-27T03:31:48Z 3707 581 2005-08-05T07:30:48Z 2 2020-02-15T06:59:41Z +7049 2005-07-27T03:32:41Z 3043 332 2005-08-04T08:32:41Z 2 2020-02-15T06:59:41Z +7050 2005-07-27T03:33:17Z 1135 55 2005-08-02T03:12:17Z 1 2020-02-15T06:59:41Z +7051 2005-07-27T03:34:37Z 1310 184 2005-07-31T03:48:37Z 2 2020-02-15T06:59:41Z +7052 2005-07-27T03:36:38Z 3798 75 2005-08-03T21:51:38Z 1 2020-02-15T06:59:41Z +7053 2005-07-27T03:38:54Z 149 408 2005-07-31T01:13:54Z 1 2020-02-15T06:59:41Z +7054 2005-07-27T03:43:28Z 2661 179 2005-08-04T09:15:28Z 1 2020-02-15T06:59:41Z +7055 2005-07-27T03:45:42Z 4305 154 2005-07-30T05:11:42Z 1 2020-02-15T06:59:41Z +7056 2005-07-27T03:46:27Z 805 233 2005-08-05T07:46:27Z 1 2020-02-15T06:59:41Z +7057 2005-07-27T03:50:03Z 1196 320 2005-08-04T04:36:03Z 1 2020-02-15T06:59:41Z +7058 2005-07-27T03:50:46Z 716 90 2005-08-04T07:40:46Z 2 2020-02-15T06:59:41Z +7059 2005-07-27T03:51:02Z 129 578 2005-08-02T22:04:02Z 1 2020-02-15T06:59:41Z +7060 2005-07-27T03:51:04Z 3912 479 2005-08-03T07:53:04Z 1 2020-02-15T06:59:41Z +7061 2005-07-27T03:51:10Z 880 145 2005-07-31T05:36:10Z 1 2020-02-15T06:59:41Z +7062 2005-07-27T03:52:01Z 226 469 2005-08-03T08:26:01Z 1 2020-02-15T06:59:41Z +7063 2005-07-27T03:52:27Z 2125 58 2005-08-04T07:53:27Z 1 2020-02-15T06:59:41Z +7064 2005-07-27T03:53:29Z 4204 320 2005-08-03T06:32:29Z 1 2020-02-15T06:59:41Z +7065 2005-07-27T03:53:43Z 3570 536 2005-07-30T23:41:43Z 2 2020-02-15T06:59:41Z +7066 2005-07-27T03:53:52Z 1862 185 2005-08-05T03:32:52Z 1 2020-02-15T06:59:41Z +7067 2005-07-27T03:55:10Z 870 60 2005-08-01T02:56:10Z 1 2020-02-15T06:59:41Z +7068 2005-07-27T03:57:50Z 4465 568 2005-07-30T04:27:50Z 1 2020-02-15T06:59:41Z +7069 2005-07-27T03:59:35Z 2073 343 2005-08-05T03:33:35Z 1 2020-02-15T06:59:41Z +7070 2005-07-27T04:01:08Z 4182 280 2005-07-30T08:10:08Z 2 2020-02-15T06:59:41Z +7071 2005-07-27T04:01:15Z 4361 61 2005-08-03T05:18:15Z 2 2020-02-15T06:59:41Z +7072 2005-07-27T04:02:33Z 3899 260 2005-07-28T09:26:33Z 2 2020-02-15T06:59:41Z +7073 2005-07-27T04:03:26Z 3859 92 2005-08-03T05:50:26Z 1 2020-02-15T06:59:41Z +7074 2005-07-27T04:06:24Z 1390 165 2005-07-28T02:04:24Z 1 2020-02-15T06:59:41Z +7075 2005-07-27T04:11:40Z 4414 530 2005-08-03T08:16:40Z 2 2020-02-15T06:59:41Z +7076 2005-07-27T04:12:14Z 2821 333 2005-08-05T00:44:14Z 1 2020-02-15T06:59:41Z +7077 2005-07-27T04:13:02Z 3186 155 2005-07-31T23:15:02Z 1 2020-02-15T06:59:41Z +7078 2005-07-27T04:16:37Z 4518 545 2005-08-05T02:34:37Z 1 2020-02-15T06:59:41Z +7079 2005-07-27T04:21:58Z 4356 356 2005-08-04T08:08:58Z 1 2020-02-15T06:59:41Z +7080 2005-07-27T04:25:25Z 710 466 2005-08-04T04:22:25Z 2 2020-02-15T06:59:41Z +7081 2005-07-27T04:25:59Z 462 420 2005-08-01T00:14:59Z 1 2020-02-15T06:59:41Z +7082 2005-07-27T04:27:32Z 2032 64 2005-07-30T06:06:32Z 2 2020-02-15T06:59:41Z +7083 2005-07-27T04:28:39Z 2663 575 2005-07-30T04:35:39Z 2 2020-02-15T06:59:41Z +7084 2005-07-27T04:34:07Z 785 32 2005-08-05T00:21:07Z 2 2020-02-15T06:59:41Z +7085 2005-07-27T04:35:44Z 2603 223 2005-08-05T07:10:44Z 2 2020-02-15T06:59:41Z +7086 2005-07-27T04:39:46Z 2938 595 2005-08-05T00:32:46Z 2 2020-02-15T06:59:41Z +7087 2005-07-27T04:42:08Z 1159 22 2005-08-02T00:53:08Z 1 2020-02-15T06:59:41Z +7088 2005-07-27T04:42:28Z 373 88 2005-08-04T07:09:28Z 2 2020-02-15T06:59:41Z +7089 2005-07-27T04:43:42Z 1380 446 2005-07-30T10:04:42Z 1 2020-02-15T06:59:41Z +7090 2005-07-27T04:43:53Z 3495 218 2005-07-29T07:33:53Z 2 2020-02-15T06:59:41Z +7091 2005-07-27T04:44:10Z 2593 322 2005-07-31T07:14:10Z 1 2020-02-15T06:59:41Z +7092 2005-07-27T04:46:00Z 1433 345 2005-08-03T07:22:00Z 2 2020-02-15T06:59:41Z +7093 2005-07-27T04:47:00Z 3065 574 2005-07-31T10:15:00Z 1 2020-02-15T06:59:41Z +7094 2005-07-27T04:47:33Z 867 373 2005-07-31T04:07:33Z 2 2020-02-15T06:59:41Z +7095 2005-07-27T04:51:15Z 1008 551 2005-08-05T10:25:15Z 2 2020-02-15T06:59:41Z +7096 2005-07-27T04:54:42Z 2575 3 2005-08-03T01:42:42Z 2 2020-02-15T06:59:41Z +7097 2005-07-27T04:56:09Z 258 487 2005-07-31T05:47:09Z 1 2020-02-15T06:59:41Z +7098 2005-07-27T05:01:08Z 2555 359 2005-08-02T07:49:08Z 2 2020-02-15T06:59:41Z +7099 2005-07-27T05:03:44Z 3136 6 2005-07-29T00:12:44Z 2 2020-02-15T06:59:41Z +7100 2005-07-27T05:05:01Z 4224 413 2005-07-28T23:12:01Z 2 2020-02-15T06:59:41Z +7101 2005-07-27T05:06:34Z 2006 221 2005-07-29T06:12:34Z 1 2020-02-15T06:59:41Z +7102 2005-07-27T05:07:21Z 1081 411 2005-08-01T09:41:21Z 2 2020-02-15T06:59:41Z +7103 2005-07-27T05:08:59Z 1697 403 2005-07-29T03:42:59Z 2 2020-02-15T06:59:41Z +7104 2005-07-27T05:15:25Z 118 217 2005-08-01T05:36:25Z 2 2020-02-15T06:59:41Z +7105 2005-07-27T05:15:37Z 864 15 2005-07-28T05:49:37Z 2 2020-02-15T06:59:41Z +7106 2005-07-27T05:21:24Z 1415 201 2005-08-02T01:58:24Z 2 2020-02-15T06:59:41Z +7107 2005-07-27T05:22:04Z 1883 104 2005-08-02T06:38:04Z 1 2020-02-15T06:59:41Z +7108 2005-07-27T05:28:32Z 2720 355 2005-07-31T07:52:32Z 1 2020-02-15T06:59:41Z +7109 2005-07-27T05:28:57Z 1658 406 2005-08-04T10:41:57Z 2 2020-02-15T06:59:41Z +7110 2005-07-27T05:30:48Z 3289 157 2005-07-28T01:43:48Z 1 2020-02-15T06:59:41Z +7111 2005-07-27T05:38:16Z 1252 473 2005-07-29T04:28:16Z 2 2020-02-15T06:59:41Z +7112 2005-07-27T05:38:42Z 4056 101 2005-08-03T05:35:42Z 1 2020-02-15T06:59:41Z +7113 2005-07-27T05:41:20Z 1963 534 2005-07-30T04:50:20Z 1 2020-02-15T06:59:41Z +7114 2005-07-27T05:42:13Z 3892 121 2005-07-29T01:59:13Z 1 2020-02-15T06:59:41Z +7115 2005-07-27T05:42:58Z 3620 359 2005-08-02T05:35:58Z 2 2020-02-15T06:59:41Z +7116 2005-07-27T05:46:43Z 1755 209 2005-08-05T05:54:43Z 1 2020-02-15T06:59:41Z +7117 2005-07-27T05:48:36Z 2772 326 2005-08-01T00:33:36Z 1 2020-02-15T06:59:41Z +7118 2005-07-27T05:53:50Z 582 591 2005-08-05T04:19:50Z 2 2020-02-15T06:59:41Z +7119 2005-07-27T05:55:32Z 1732 102 2005-07-29T03:19:32Z 1 2020-02-15T06:59:41Z +7120 2005-07-27T05:56:39Z 416 98 2005-08-04T10:57:39Z 1 2020-02-15T06:59:41Z +7121 2005-07-27T05:58:32Z 1264 252 2005-07-29T06:14:32Z 1 2020-02-15T06:59:41Z +7122 2005-07-27T06:03:18Z 1699 172 2005-08-04T10:43:18Z 2 2020-02-15T06:59:41Z +7123 2005-07-27T06:08:48Z 134 232 2005-08-04T05:26:48Z 1 2020-02-15T06:59:41Z +7124 2005-07-27T06:09:30Z 3449 34 2005-08-02T09:31:30Z 1 2020-02-15T06:59:41Z +7125 2005-07-27T06:11:00Z 801 460 2005-08-04T09:41:00Z 2 2020-02-15T06:59:41Z +7126 2005-07-27T06:13:13Z 3240 582 2005-07-28T08:22:13Z 2 2020-02-15T06:59:41Z +7127 2005-07-27T06:13:48Z 273 486 2005-08-01T02:50:48Z 2 2020-02-15T06:59:41Z +7128 2005-07-27T06:14:36Z 143 529 2005-08-02T05:18:36Z 1 2020-02-15T06:59:41Z +7129 2005-07-27T06:18:01Z 1930 221 2005-07-28T02:38:01Z 1 2020-02-15T06:59:41Z +7130 2005-07-27T06:23:36Z 420 81 2005-07-28T10:23:36Z 1 2020-02-15T06:59:41Z +7131 2005-07-27T06:25:06Z 2832 585 2005-07-31T09:07:06Z 1 2020-02-15T06:59:41Z +7132 2005-07-27T06:28:34Z 3201 227 2005-08-05T06:02:34Z 2 2020-02-15T06:59:41Z +7133 2005-07-27T06:29:23Z 2995 496 2005-07-29T03:20:23Z 2 2020-02-15T06:59:41Z +7134 2005-07-27T06:33:06Z 1058 574 2005-07-28T06:15:06Z 1 2020-02-15T06:59:41Z +7135 2005-07-27T06:34:32Z 2959 172 2005-07-28T03:01:32Z 1 2020-02-15T06:59:41Z +7136 2005-07-27T06:38:25Z 1929 6 2005-08-03T05:13:25Z 1 2020-02-15T06:59:41Z +7137 2005-07-27T06:40:41Z 3957 483 2005-07-29T09:05:41Z 2 2020-02-15T06:59:41Z +7138 2005-07-27T06:47:13Z 1418 31 2005-08-03T01:12:13Z 2 2020-02-15T06:59:41Z +7139 2005-07-27T06:52:21Z 846 575 2005-07-30T01:45:21Z 1 2020-02-15T06:59:41Z +7140 2005-07-27T06:54:12Z 2028 35 2005-08-03T10:36:12Z 2 2020-02-15T06:59:41Z +7141 2005-07-27T06:55:27Z 3579 423 2005-08-01T11:10:27Z 1 2020-02-15T06:59:41Z +7142 2005-07-27T06:55:39Z 1743 396 2005-07-28T01:41:39Z 2 2020-02-15T06:59:41Z +7143 2005-07-27T06:56:31Z 2877 91 2005-07-31T04:38:31Z 2 2020-02-15T06:59:41Z +7144 2005-07-27T07:00:37Z 4506 485 2005-08-01T06:57:37Z 1 2020-02-15T06:59:41Z +7145 2005-07-27T07:01:00Z 3653 109 2005-07-31T02:31:00Z 1 2020-02-15T06:59:41Z +7146 2005-07-27T07:02:30Z 2245 323 2005-08-05T10:29:30Z 1 2020-02-15T06:59:41Z +7147 2005-07-27T07:02:34Z 990 192 2005-08-01T02:16:34Z 1 2020-02-15T06:59:41Z +7148 2005-07-27T07:04:09Z 1783 354 2005-08-03T10:20:09Z 2 2020-02-15T06:59:41Z +7149 2005-07-27T07:10:40Z 3902 242 2005-08-03T07:37:40Z 2 2020-02-15T06:59:41Z +7150 2005-07-27T07:11:14Z 457 191 2005-08-05T06:55:14Z 2 2020-02-15T06:59:41Z +7151 2005-07-27T07:14:31Z 1259 289 2005-08-01T01:35:31Z 2 2020-02-15T06:59:41Z +7152 2005-07-27T07:15:01Z 2338 370 2005-08-05T04:50:01Z 1 2020-02-15T06:59:41Z +7153 2005-07-27T07:15:38Z 2657 41 2005-07-28T09:56:38Z 1 2020-02-15T06:59:41Z +7154 2005-07-27T07:16:17Z 2019 518 2005-07-28T04:04:17Z 2 2020-02-15T06:59:41Z +7155 2005-07-27T07:18:46Z 171 23 2005-08-04T10:28:46Z 1 2020-02-15T06:59:41Z +7156 2005-07-27T07:19:34Z 34 154 2005-07-31T04:31:34Z 1 2020-02-15T06:59:41Z +7157 2005-07-27T07:20:28Z 1353 423 2005-08-02T07:19:28Z 1 2020-02-15T06:59:41Z +7158 2005-07-27T07:23:58Z 2432 38 2005-08-03T06:00:58Z 2 2020-02-15T06:59:41Z +7159 2005-07-27T07:24:00Z 1220 158 2005-08-05T11:13:00Z 1 2020-02-15T06:59:41Z +7160 2005-07-27T07:26:06Z 3905 71 2005-07-31T04:54:06Z 2 2020-02-15T06:59:41Z +7161 2005-07-27T07:26:32Z 378 572 2005-08-03T01:26:32Z 2 2020-02-15T06:59:41Z +7162 2005-07-27T07:32:45Z 2251 289 2005-07-30T03:48:45Z 1 2020-02-15T06:59:41Z +7163 2005-07-27T07:36:11Z 3666 38 2005-08-04T06:03:11Z 2 2020-02-15T06:59:41Z +7164 2005-07-27T07:36:34Z 527 284 2005-08-04T05:05:34Z 2 2020-02-15T06:59:41Z +7165 2005-07-27T07:36:46Z 497 243 2005-07-30T09:22:46Z 2 2020-02-15T06:59:41Z +7166 2005-07-27T07:36:56Z 1375 562 2005-08-02T03:46:56Z 1 2020-02-15T06:59:41Z +7167 2005-07-27T07:37:26Z 238 380 2005-08-03T06:39:26Z 1 2020-02-15T06:59:41Z +7168 2005-07-27T07:51:11Z 6 252 2005-08-01T04:08:11Z 2 2020-02-15T06:59:41Z +7169 2005-07-27T07:51:39Z 735 559 2005-08-01T06:42:39Z 1 2020-02-15T06:59:41Z +7170 2005-07-27T07:58:26Z 370 140 2005-07-28T02:30:26Z 1 2020-02-15T06:59:41Z +7171 2005-07-27T07:58:35Z 4381 406 2005-08-03T07:45:35Z 1 2020-02-15T06:59:41Z +7172 2005-07-27T07:59:16Z 2405 362 2005-08-01T04:46:16Z 1 2020-02-15T06:59:41Z +7173 2005-07-27T07:59:24Z 177 592 2005-07-28T02:23:24Z 2 2020-02-15T06:59:41Z +7174 2005-07-27T08:00:36Z 46 570 2005-08-01T03:11:36Z 1 2020-02-15T06:59:41Z +7175 2005-07-27T08:03:22Z 568 190 2005-08-01T02:47:22Z 2 2020-02-15T06:59:41Z +7176 2005-07-27T08:04:28Z 227 257 2005-07-29T14:00:28Z 2 2020-02-15T06:59:41Z +7177 2005-07-27T08:07:39Z 3818 133 2005-07-30T03:17:39Z 2 2020-02-15T06:59:41Z +7178 2005-07-27T08:09:25Z 1899 31 2005-07-29T13:00:25Z 2 2020-02-15T06:59:41Z +7179 2005-07-27T08:10:29Z 2365 537 2005-07-28T12:24:29Z 2 2020-02-15T06:59:41Z +7180 2005-07-27T08:14:34Z 460 215 2005-07-31T05:24:34Z 1 2020-02-15T06:59:41Z +7181 2005-07-27T08:14:34Z 2788 130 2005-07-28T03:09:34Z 1 2020-02-15T06:59:41Z +7182 2005-07-27T08:15:38Z 3209 97 2005-08-03T12:48:38Z 2 2020-02-15T06:59:41Z +7183 2005-07-27T08:18:38Z 3384 302 2005-08-01T03:24:38Z 1 2020-02-15T06:59:41Z +7184 2005-07-27T08:22:26Z 2324 457 2005-08-02T09:34:26Z 2 2020-02-15T06:59:41Z +7185 2005-07-27T08:23:54Z 2340 121 2005-07-30T09:50:54Z 1 2020-02-15T06:59:41Z +7186 2005-07-27T08:26:12Z 4005 584 2005-07-28T12:21:12Z 1 2020-02-15T06:59:41Z +7187 2005-07-27T08:27:58Z 2733 169 2005-08-05T09:05:58Z 1 2020-02-15T06:59:41Z +7188 2005-07-27T08:32:08Z 2199 259 2005-07-28T08:02:08Z 1 2020-02-15T06:59:41Z +7189 2005-07-27T08:35:02Z 4419 151 2005-07-30T14:00:02Z 2 2020-02-15T06:59:41Z +7190 2005-07-27T08:36:01Z 1330 372 2005-07-30T08:32:01Z 2 2020-02-15T06:59:41Z +7191 2005-07-27T08:36:15Z 4292 495 2005-08-03T08:54:15Z 1 2020-02-15T06:59:41Z +7192 2005-07-27T08:36:55Z 4329 532 2005-07-30T11:58:55Z 2 2020-02-15T06:59:41Z +7193 2005-07-27T08:37:00Z 1801 237 2005-07-30T12:51:00Z 2 2020-02-15T06:59:41Z +7194 2005-07-27T08:39:58Z 254 172 2005-08-01T03:12:58Z 1 2020-02-15T06:59:41Z +7195 2005-07-27T08:47:01Z 721 157 2005-07-30T08:40:01Z 2 2020-02-15T06:59:41Z +7196 2005-07-27T08:49:08Z 2998 118 2005-07-29T03:54:08Z 1 2020-02-15T06:59:41Z +7197 2005-07-27T08:49:32Z 2109 577 2005-07-31T13:50:32Z 1 2020-02-15T06:59:41Z +7198 2005-07-27T08:50:07Z 4283 520 2005-08-04T09:46:07Z 2 2020-02-15T06:59:41Z +7199 2005-07-27T08:53:23Z 3685 292 2005-08-03T10:01:23Z 1 2020-02-15T06:59:41Z +7200 2005-07-27T08:57:38Z 4406 78 2005-08-02T12:29:38Z 2 2020-02-15T06:59:41Z +7201 2005-07-27T08:57:40Z 482 598 2005-08-04T09:55:40Z 2 2020-02-15T06:59:41Z +7202 2005-07-27T09:00:20Z 109 560 2005-08-04T03:09:20Z 1 2020-02-15T06:59:41Z +7203 2005-07-27T09:01:23Z 1685 492 2005-08-04T14:14:23Z 1 2020-02-15T06:59:41Z +7204 2005-07-27T09:02:31Z 2512 531 2005-08-03T08:56:31Z 2 2020-02-15T06:59:41Z +7205 2005-07-27T09:06:13Z 2828 36 2005-08-05T07:11:13Z 1 2020-02-15T06:59:41Z +7206 2005-07-27T09:07:05Z 3752 373 2005-07-31T03:13:05Z 2 2020-02-15T06:59:41Z +7207 2005-07-27T09:13:26Z 336 51 2005-08-01T10:24:26Z 1 2020-02-15T06:59:41Z +7208 2005-07-27T09:16:28Z 1523 138 2005-07-28T09:40:28Z 1 2020-02-15T06:59:41Z +7209 2005-07-27T09:16:53Z 3766 49 2005-07-30T08:09:53Z 2 2020-02-15T06:59:41Z +7210 2005-07-27T09:19:05Z 1984 176 2005-07-28T04:35:05Z 1 2020-02-15T06:59:41Z +7211 2005-07-27T09:20:00Z 4445 285 2005-08-02T14:53:00Z 1 2020-02-15T06:59:41Z +7212 2005-07-27T09:21:22Z 2905 591 2005-08-01T04:47:22Z 2 2020-02-15T06:59:41Z +7213 2005-07-27T09:22:29Z 2836 502 2005-08-03T13:53:29Z 2 2020-02-15T06:59:41Z +7214 2005-07-27T09:23:33Z 802 309 2005-08-03T13:14:33Z 2 2020-02-15T06:59:41Z +7215 2005-07-27T09:24:00Z 2713 473 2005-08-05T07:37:00Z 2 2020-02-15T06:59:41Z +7216 2005-07-27T09:27:45Z 1812 292 2005-08-03T13:08:45Z 1 2020-02-15T06:59:41Z +7217 2005-07-27T09:31:44Z 2646 20 2005-07-29T10:48:44Z 1 2020-02-15T06:59:41Z +7218 2005-07-27T09:34:24Z 2458 530 2005-08-01T07:00:24Z 1 2020-02-15T06:59:41Z +7219 2005-07-27T09:35:36Z 4046 512 2005-07-29T04:44:36Z 1 2020-02-15T06:59:41Z +7220 2005-07-27T09:35:54Z 3867 79 2005-08-04T06:00:54Z 2 2020-02-15T06:59:41Z +7221 2005-07-27T09:37:35Z 3820 579 2005-07-28T11:25:35Z 1 2020-02-15T06:59:41Z +7222 2005-07-27T09:38:43Z 2330 206 2005-07-28T06:25:43Z 1 2020-02-15T06:59:41Z +7223 2005-07-27T09:42:27Z 2623 325 2005-08-04T04:02:27Z 1 2020-02-15T06:59:41Z +7224 2005-07-27T09:44:26Z 2701 106 2005-08-05T12:46:26Z 2 2020-02-15T06:59:41Z +7225 2005-07-27T09:47:12Z 632 306 2005-08-03T13:19:12Z 2 2020-02-15T06:59:41Z +7226 2005-07-27T09:47:53Z 3507 370 2005-08-01T08:24:53Z 1 2020-02-15T06:59:41Z +7227 2005-07-27T09:53:43Z 791 164 2005-08-05T09:36:43Z 2 2020-02-15T06:59:41Z +7228 2005-07-27T09:55:33Z 1693 481 2005-07-29T04:33:33Z 2 2020-02-15T06:59:41Z +7229 2005-07-27T10:00:54Z 978 182 2005-07-28T13:58:54Z 2 2020-02-15T06:59:41Z +7230 2005-07-27T10:01:41Z 1152 245 2005-08-02T11:00:41Z 1 2020-02-15T06:59:41Z +7231 2005-07-27T10:01:51Z 1638 86 2005-08-05T13:38:51Z 2 2020-02-15T06:59:41Z +7232 2005-07-27T10:04:19Z 1147 306 2005-07-28T09:43:19Z 2 2020-02-15T06:59:41Z +7233 2005-07-27T10:08:36Z 213 245 2005-07-31T16:00:36Z 1 2020-02-15T06:59:41Z +7234 2005-07-27T10:08:45Z 3873 372 2005-07-31T13:58:45Z 1 2020-02-15T06:59:41Z +7235 2005-07-27T10:09:30Z 1261 354 2005-08-05T11:44:30Z 2 2020-02-15T06:59:41Z +7236 2005-07-27T10:09:39Z 3004 218 2005-08-03T16:05:39Z 1 2020-02-15T06:59:41Z +7237 2005-07-27T10:12:36Z 1904 29 2005-07-31T08:40:36Z 2 2020-02-15T06:59:41Z +7238 2005-07-27T10:13:41Z 1197 116 2005-07-29T11:07:41Z 1 2020-02-15T06:59:41Z +7239 2005-07-27T10:20:27Z 1786 278 2005-07-29T10:15:27Z 1 2020-02-15T06:59:41Z +7240 2005-07-27T10:21:15Z 4565 324 2005-08-03T05:04:15Z 1 2020-02-15T06:59:41Z +7241 2005-07-27T10:25:49Z 2433 354 2005-07-28T05:30:49Z 2 2020-02-15T06:59:41Z +7242 2005-07-27T10:25:51Z 1966 565 2005-08-04T16:02:51Z 2 2020-02-15T06:59:41Z +7243 2005-07-27T10:26:11Z 1287 238 2005-07-29T11:43:11Z 2 2020-02-15T06:59:41Z +7244 2005-07-27T10:27:33Z 1329 339 2005-07-30T13:09:33Z 1 2020-02-15T06:59:41Z +7245 2005-07-27T10:29:06Z 260 95 2005-08-05T12:09:06Z 2 2020-02-15T06:59:41Z +7246 2005-07-27T10:30:41Z 2003 333 2005-07-30T05:44:41Z 1 2020-02-15T06:59:41Z +7247 2005-07-27T10:32:58Z 1445 102 2005-07-29T05:00:58Z 2 2020-02-15T06:59:41Z +7248 2005-07-27T10:37:45Z 4256 456 2005-08-01T13:13:45Z 1 2020-02-15T06:59:41Z +7249 2005-07-27T10:39:53Z 2441 425 2005-07-28T14:48:53Z 2 2020-02-15T06:59:41Z +7250 2005-07-27T10:44:09Z 3410 589 2005-07-28T11:47:09Z 1 2020-02-15T06:59:41Z +7251 2005-07-27T10:44:55Z 1737 360 2005-08-01T16:12:55Z 1 2020-02-15T06:59:41Z +7252 2005-07-27T10:45:28Z 3107 549 2005-08-04T06:24:28Z 2 2020-02-15T06:59:41Z +7253 2005-07-27T10:46:37Z 1950 236 2005-07-28T11:18:37Z 1 2020-02-15T06:59:41Z +7254 2005-07-27T10:48:50Z 2697 286 2005-07-28T10:34:50Z 1 2020-02-15T06:59:41Z +7255 2005-07-27T10:49:54Z 2101 502 2005-07-31T10:40:54Z 2 2020-02-15T06:59:41Z +7256 2005-07-27T10:58:32Z 4275 363 2005-07-29T08:58:32Z 2 2020-02-15T06:59:41Z +7257 2005-07-27T11:04:17Z 3302 480 2005-08-04T12:32:17Z 2 2020-02-15T06:59:41Z +7258 2005-07-27T11:05:54Z 2079 494 2005-08-02T11:36:54Z 1 2020-02-15T06:59:41Z +7259 2005-07-27T11:06:00Z 2345 406 2005-08-02T06:44:00Z 2 2020-02-15T06:59:41Z +7260 2005-07-27T11:09:28Z 3827 434 2005-08-03T09:41:28Z 1 2020-02-15T06:59:41Z +7261 2005-07-27T11:15:01Z 942 172 2005-07-28T09:42:01Z 2 2020-02-15T06:59:41Z +7262 2005-07-27T11:15:36Z 4097 522 2005-07-30T10:49:36Z 2 2020-02-15T06:59:41Z +7263 2005-07-27T11:17:22Z 725 324 2005-08-04T10:59:22Z 1 2020-02-15T06:59:41Z +7264 2005-07-27T11:18:58Z 2391 299 2005-08-03T07:43:58Z 2 2020-02-15T06:59:41Z +7265 2005-07-27T11:19:01Z 3465 290 2005-08-01T09:29:01Z 1 2020-02-15T06:59:41Z +7266 2005-07-27T11:22:17Z 3379 24 2005-08-04T05:45:17Z 1 2020-02-15T06:59:41Z +7267 2005-07-27T11:22:55Z 3661 122 2005-08-01T08:13:55Z 1 2020-02-15T06:59:41Z +7268 2005-07-27T11:23:09Z 2740 260 2005-08-01T12:42:09Z 2 2020-02-15T06:59:41Z +7269 2005-07-27T11:23:47Z 2089 209 2005-07-31T13:10:47Z 1 2020-02-15T06:59:41Z +7270 2005-07-27T11:29:02Z 1888 526 2005-08-05T08:04:02Z 1 2020-02-15T06:59:41Z +7271 2005-07-27T11:29:11Z 858 469 2005-08-05T15:33:11Z 1 2020-02-15T06:59:41Z +7272 2005-07-27T11:30:20Z 250 364 2005-07-29T17:16:20Z 2 2020-02-15T06:59:41Z +7273 2005-07-27T11:31:22Z 2465 1 2005-07-31T06:50:22Z 1 2020-02-15T06:59:41Z +7274 2005-07-27T11:35:34Z 4087 180 2005-08-01T07:10:34Z 1 2020-02-15T06:59:41Z +7275 2005-07-27T11:39:08Z 775 323 2005-07-30T13:37:08Z 2 2020-02-15T06:59:41Z +7276 2005-07-27T11:41:57Z 1665 314 2005-08-01T10:39:57Z 1 2020-02-15T06:59:41Z +7277 2005-07-27T11:48:37Z 1544 67 2005-08-03T07:20:37Z 1 2020-02-15T06:59:41Z +7278 2005-07-27T11:50:34Z 531 592 2005-08-01T10:22:34Z 1 2020-02-15T06:59:41Z +7279 2005-07-27T11:50:47Z 1424 12 2005-07-30T11:19:47Z 2 2020-02-15T06:59:41Z +7280 2005-07-27T11:50:52Z 236 342 2005-07-30T15:53:52Z 2 2020-02-15T06:59:41Z +7281 2005-07-27T11:59:20Z 1350 491 2005-08-04T12:48:20Z 1 2020-02-15T06:59:41Z +7282 2005-07-27T12:00:19Z 4418 276 2005-08-04T14:48:19Z 2 2020-02-15T06:59:41Z +7283 2005-07-27T12:02:41Z 3101 508 2005-08-05T07:25:41Z 1 2020-02-15T06:59:41Z +7284 2005-07-27T12:12:04Z 2336 52 2005-07-31T11:17:04Z 2 2020-02-15T06:59:41Z +7285 2005-07-27T12:14:06Z 2855 498 2005-08-03T14:57:06Z 2 2020-02-15T06:59:41Z +7286 2005-07-27T12:23:49Z 3452 498 2005-08-04T07:57:49Z 1 2020-02-15T06:59:41Z +7287 2005-07-27T12:24:12Z 926 198 2005-07-31T15:34:12Z 1 2020-02-15T06:59:41Z +7288 2005-07-27T12:24:59Z 45 226 2005-08-02T15:52:59Z 2 2020-02-15T06:59:41Z +7289 2005-07-27T12:26:51Z 2157 187 2005-08-02T18:20:51Z 2 2020-02-15T06:59:41Z +7290 2005-07-27T12:28:45Z 3652 423 2005-08-01T16:18:45Z 1 2020-02-15T06:59:41Z +7291 2005-07-27T12:30:47Z 310 263 2005-08-01T12:45:47Z 1 2020-02-15T06:59:41Z +7292 2005-07-27T12:34:14Z 795 468 2005-08-01T18:16:14Z 2 2020-02-15T06:59:41Z +7293 2005-07-27T12:37:28Z 3333 5 2005-07-30T15:12:28Z 2 2020-02-15T06:59:41Z +7294 2005-07-27T12:38:14Z 487 313 2005-07-30T13:01:14Z 1 2020-02-15T06:59:41Z +7295 2005-07-27T12:38:47Z 3396 462 2005-08-05T10:12:47Z 1 2020-02-15T06:59:41Z +7296 2005-07-27T12:39:48Z 1681 400 2005-08-04T18:24:48Z 2 2020-02-15T06:59:41Z +7297 2005-07-27T12:39:48Z 1855 135 2005-07-29T17:50:48Z 2 2020-02-15T06:59:41Z +7298 2005-07-27T12:45:14Z 1653 121 2005-07-30T07:02:14Z 1 2020-02-15T06:59:41Z +7299 2005-07-27T12:49:56Z 3002 286 2005-08-03T12:25:56Z 1 2020-02-15T06:59:41Z +7300 2005-07-27T12:50:17Z 4561 272 2005-08-04T18:43:17Z 1 2020-02-15T06:59:41Z +7301 2005-07-27T12:50:23Z 3367 93 2005-08-01T09:43:23Z 2 2020-02-15T06:59:41Z +7302 2005-07-27T12:52:13Z 4539 477 2005-07-29T15:13:13Z 2 2020-02-15T06:59:41Z +7303 2005-07-27T12:54:39Z 1398 163 2005-07-31T09:26:39Z 2 2020-02-15T06:59:41Z +7304 2005-07-27T12:56:56Z 1162 74 2005-08-05T09:19:56Z 2 2020-02-15T06:59:41Z +7305 2005-07-27T12:57:06Z 2464 229 2005-07-30T13:13:06Z 2 2020-02-15T06:59:41Z +7306 2005-07-27T12:57:26Z 2269 207 2005-08-03T09:35:26Z 2 2020-02-15T06:59:41Z +7307 2005-07-27T12:59:10Z 3882 595 2005-07-29T11:35:10Z 1 2020-02-15T06:59:41Z +7308 2005-07-27T13:00:25Z 1452 229 2005-08-03T16:04:25Z 1 2020-02-15T06:59:41Z +7309 2005-07-27T13:00:29Z 633 317 2005-07-29T12:15:29Z 2 2020-02-15T06:59:41Z +7310 2005-07-27T13:00:55Z 3711 103 2005-07-28T17:54:55Z 1 2020-02-15T06:59:41Z +7311 2005-07-27T13:02:54Z 2807 582 2005-08-04T09:52:54Z 1 2020-02-15T06:59:41Z +7312 2005-07-27T13:03:14Z 228 543 2005-07-31T07:56:14Z 2 2020-02-15T06:59:41Z +7313 2005-07-27T13:11:57Z 1884 396 2005-08-02T07:31:57Z 1 2020-02-15T06:59:41Z +7314 2005-07-27T13:13:32Z 1376 11 2005-08-03T09:24:32Z 2 2020-02-15T06:59:41Z +7315 2005-07-27T13:14:56Z 974 208 2005-08-03T08:44:56Z 2 2020-02-15T06:59:41Z +7316 2005-07-27T13:19:03Z 3344 114 2005-07-28T07:43:03Z 2 2020-02-15T06:59:41Z +7317 2005-07-27T13:19:41Z 1518 443 2005-07-29T16:16:41Z 2 2020-02-15T06:59:41Z +7318 2005-07-27T13:25:31Z 1954 301 2005-07-31T11:44:31Z 2 2020-02-15T06:59:41Z +7319 2005-07-27T13:31:25Z 2370 576 2005-08-04T07:31:25Z 1 2020-02-15T06:59:41Z +7320 2005-07-27T13:33:35Z 4348 241 2005-07-31T13:22:35Z 2 2020-02-15T06:59:41Z +7321 2005-07-27T13:33:38Z 3525 38 2005-08-03T07:35:38Z 2 2020-02-15T06:59:41Z +7322 2005-07-27T13:37:26Z 1810 508 2005-08-03T18:00:26Z 2 2020-02-15T06:59:41Z +7323 2005-07-27T13:39:40Z 3830 125 2005-07-29T08:45:40Z 2 2020-02-15T06:59:41Z +7324 2005-07-27T13:42:39Z 2572 462 2005-08-04T10:33:39Z 2 2020-02-15T06:59:41Z +7325 2005-07-27T13:46:55Z 1727 289 2005-07-28T14:21:55Z 1 2020-02-15T06:59:41Z +7326 2005-07-27T13:50:40Z 2844 432 2005-07-30T08:16:40Z 1 2020-02-15T06:59:41Z +7327 2005-07-27T13:53:26Z 4074 508 2005-08-04T17:58:26Z 2 2020-02-15T06:59:41Z +7328 2005-07-27T13:55:18Z 663 26 2005-08-01T19:52:18Z 1 2020-02-15T06:59:41Z +7329 2005-07-27T13:55:34Z 906 226 2005-08-04T15:15:34Z 1 2020-02-15T06:59:41Z +7330 2005-07-27T13:56:46Z 3705 237 2005-08-04T07:56:46Z 1 2020-02-15T06:59:41Z +7331 2005-07-27T13:57:50Z 2090 60 2005-07-31T08:59:50Z 1 2020-02-15T06:59:41Z +7332 2005-07-27T13:58:57Z 1761 151 2005-08-02T12:40:57Z 1 2020-02-15T06:59:41Z +7333 2005-07-27T13:59:11Z 1331 230 2005-07-30T16:04:11Z 1 2020-02-15T06:59:41Z +7334 2005-07-27T13:59:58Z 3006 461 2005-07-29T11:33:58Z 1 2020-02-15T06:59:41Z +7335 2005-07-27T14:06:50Z 1219 219 2005-08-05T18:27:50Z 2 2020-02-15T06:59:41Z +7336 2005-07-27T14:11:45Z 2706 46 2005-07-28T11:00:45Z 2 2020-02-15T06:59:41Z +7337 2005-07-27T14:12:04Z 3314 525 2005-08-03T14:57:04Z 2 2020-02-15T06:59:41Z +7338 2005-07-27T14:13:34Z 107 251 2005-08-03T18:36:34Z 2 2020-02-15T06:59:41Z +7339 2005-07-27T14:17:48Z 3343 316 2005-07-31T12:47:48Z 2 2020-02-15T06:59:41Z +7340 2005-07-27T14:18:10Z 1344 567 2005-07-30T09:57:10Z 1 2020-02-15T06:59:41Z +7341 2005-07-27T14:23:55Z 3567 498 2005-07-28T14:11:55Z 2 2020-02-15T06:59:41Z +7342 2005-07-27T14:25:17Z 4083 504 2005-08-04T10:02:17Z 2 2020-02-15T06:59:41Z +7343 2005-07-27T14:27:13Z 1177 526 2005-07-30T09:27:13Z 2 2020-02-15T06:59:41Z +7344 2005-07-27T14:29:28Z 1714 366 2005-07-31T15:36:28Z 1 2020-02-15T06:59:41Z +7345 2005-07-27T14:29:53Z 2434 572 2005-08-03T18:38:53Z 2 2020-02-15T06:59:41Z +7346 2005-07-27T14:30:42Z 741 2 2005-08-02T16:48:42Z 1 2020-02-15T06:59:41Z +7347 2005-07-27T14:31:24Z 3779 225 2005-07-31T16:19:24Z 1 2020-02-15T06:59:41Z +7348 2005-07-27T14:32:32Z 3238 43 2005-07-28T17:05:32Z 1 2020-02-15T06:59:41Z +7349 2005-07-27T14:33:00Z 861 195 2005-08-01T15:01:00Z 2 2020-02-15T06:59:41Z +7350 2005-07-27T14:34:14Z 737 410 2005-08-02T19:19:14Z 2 2020-02-15T06:59:41Z +7351 2005-07-27T14:37:36Z 2147 445 2005-07-30T09:58:36Z 2 2020-02-15T06:59:41Z +7352 2005-07-27T14:38:29Z 35 429 2005-07-28T14:24:29Z 1 2020-02-15T06:59:41Z +7353 2005-07-27T14:38:39Z 1308 357 2005-07-31T19:50:39Z 1 2020-02-15T06:59:41Z +7354 2005-07-27T14:42:11Z 2395 598 2005-08-03T18:19:11Z 2 2020-02-15T06:59:41Z +7355 2005-07-27T14:45:59Z 3803 115 2005-08-02T17:23:59Z 2 2020-02-15T06:59:41Z +7356 2005-07-27T14:47:35Z 309 397 2005-07-28T18:10:35Z 2 2020-02-15T06:59:41Z +7357 2005-07-27T14:48:31Z 1917 438 2005-08-02T18:07:31Z 2 2020-02-15T06:59:41Z +7358 2005-07-27T14:49:44Z 175 245 2005-07-28T20:00:44Z 1 2020-02-15T06:59:41Z +7359 2005-07-27T14:51:04Z 174 183 2005-07-31T16:03:04Z 2 2020-02-15T06:59:41Z +7360 2005-07-27T14:52:06Z 1312 467 2005-08-02T12:24:06Z 2 2020-02-15T06:59:41Z +7361 2005-07-27T14:53:55Z 4567 463 2005-07-31T19:48:55Z 2 2020-02-15T06:59:41Z +7362 2005-07-27T14:58:27Z 1902 419 2005-08-01T11:51:27Z 1 2020-02-15T06:59:41Z +7363 2005-07-27T14:58:29Z 1649 407 2005-08-05T09:02:29Z 1 2020-02-15T06:59:41Z +7364 2005-07-27T14:58:40Z 3046 592 2005-08-03T09:01:40Z 2 2020-02-15T06:59:41Z +7365 2005-07-27T15:00:20Z 3283 450 2005-07-30T12:58:20Z 1 2020-02-15T06:59:41Z +7366 2005-07-27T15:01:17Z 461 357 2005-08-04T20:28:17Z 1 2020-02-15T06:59:41Z +7367 2005-07-27T15:05:45Z 1738 383 2005-08-02T13:46:45Z 1 2020-02-15T06:59:41Z +7368 2005-07-27T15:06:05Z 2265 286 2005-07-31T14:10:05Z 2 2020-02-15T06:59:41Z +7369 2005-07-27T15:07:58Z 3889 139 2005-07-30T09:16:58Z 2 2020-02-15T06:59:41Z +7370 2005-07-27T15:15:53Z 2022 89 2005-08-03T19:53:53Z 2 2020-02-15T06:59:41Z +7371 2005-07-27T15:18:42Z 1807 577 2005-08-01T09:58:42Z 1 2020-02-15T06:59:41Z +7372 2005-07-27T15:18:42Z 3202 584 2005-08-01T15:18:42Z 2 2020-02-15T06:59:41Z +7373 2005-07-27T15:19:33Z 3074 488 2005-08-04T10:45:33Z 1 2020-02-15T06:59:41Z +7374 2005-07-27T15:20:57Z 3184 438 2005-08-05T13:09:57Z 2 2020-02-15T06:59:41Z +7375 2005-07-27T15:22:33Z 2970 381 2005-08-01T20:06:33Z 1 2020-02-15T06:59:41Z +7376 2005-07-27T15:23:02Z 488 2 2005-08-04T10:35:02Z 2 2020-02-15T06:59:41Z +7377 2005-07-27T15:31:28Z 1369 588 2005-08-02T19:59:28Z 2 2020-02-15T06:59:41Z +7378 2005-07-27T15:31:33Z 3297 144 2005-08-03T17:15:33Z 2 2020-02-15T06:59:41Z +7379 2005-07-27T15:36:43Z 424 415 2005-07-30T16:37:43Z 2 2020-02-15T06:59:41Z +7380 2005-07-27T15:37:01Z 988 348 2005-08-03T19:24:01Z 1 2020-02-15T06:59:41Z +7381 2005-07-27T15:40:26Z 1595 483 2005-08-02T17:26:26Z 2 2020-02-15T06:59:41Z +7382 2005-07-27T15:43:15Z 356 518 2005-07-28T11:18:15Z 2 2020-02-15T06:59:41Z +7383 2005-07-27T15:46:53Z 3860 50 2005-08-03T11:10:53Z 1 2020-02-15T06:59:41Z +7384 2005-07-27T15:49:45Z 3573 585 2005-08-04T15:17:45Z 1 2020-02-15T06:59:41Z +7385 2005-07-27T15:49:46Z 2996 56 2005-07-28T13:50:46Z 2 2020-02-15T06:59:41Z +7386 2005-07-27T15:52:10Z 3569 190 2005-08-04T15:13:10Z 1 2020-02-15T06:59:41Z +7387 2005-07-27T15:54:19Z 3274 233 2005-08-03T14:46:19Z 1 2020-02-15T06:59:41Z +7388 2005-07-27T15:54:19Z 4559 455 2005-08-01T17:02:19Z 2 2020-02-15T06:59:41Z +7389 2005-07-27T15:56:15Z 3822 156 2005-07-30T21:28:15Z 2 2020-02-15T06:59:41Z +7390 2005-07-27T15:59:19Z 1723 230 2005-08-04T10:09:19Z 2 2020-02-15T06:59:41Z +7391 2005-07-27T16:00:00Z 1153 531 2005-08-04T18:07:00Z 2 2020-02-15T06:59:41Z +7392 2005-07-27T16:01:05Z 3159 204 2005-08-01T17:23:05Z 2 2020-02-15T06:59:41Z +7393 2005-07-27T16:02:52Z 2369 181 2005-08-02T13:24:52Z 1 2020-02-15T06:59:41Z +7394 2005-07-27T16:03:08Z 2399 30 2005-08-04T11:27:08Z 2 2020-02-15T06:59:41Z +7395 2005-07-27T16:03:11Z 2888 411 2005-07-31T20:26:11Z 2 2020-02-15T06:59:41Z +7396 2005-07-27T16:03:53Z 3346 595 2005-08-05T10:36:53Z 2 2020-02-15T06:59:41Z +7397 2005-07-27T16:05:00Z 4474 245 2005-08-01T20:29:00Z 1 2020-02-15T06:59:41Z +7398 2005-07-27T16:07:22Z 1572 51 2005-08-05T16:16:22Z 1 2020-02-15T06:59:41Z +7399 2005-07-27T16:16:02Z 1682 526 2005-08-03T18:02:02Z 2 2020-02-15T06:59:41Z +7400 2005-07-27T16:16:37Z 2874 133 2005-07-31T12:34:37Z 2 2020-02-15T06:59:41Z +7401 2005-07-27T16:17:55Z 2759 583 2005-08-04T15:48:55Z 1 2020-02-15T06:59:41Z +7402 2005-07-27T16:19:40Z 2707 287 2005-08-05T14:48:40Z 2 2020-02-15T06:59:41Z +7403 2005-07-27T16:22:09Z 2551 163 2005-08-01T15:32:09Z 1 2020-02-15T06:59:41Z +7404 2005-07-27T16:24:43Z 2359 190 2005-07-29T11:40:43Z 2 2020-02-15T06:59:41Z +7405 2005-07-27T16:25:11Z 2312 42 2005-08-01T12:33:11Z 2 2020-02-15T06:59:41Z +7406 2005-07-27T16:25:45Z 1412 77 2005-08-05T20:39:45Z 1 2020-02-15T06:59:41Z +7407 2005-07-27T16:29:04Z 3093 410 2005-08-01T17:47:04Z 2 2020-02-15T06:59:41Z +7408 2005-07-27T16:31:40Z 625 371 2005-07-31T11:56:40Z 2 2020-02-15T06:59:41Z +7409 2005-07-27T16:38:24Z 2352 585 2005-07-30T18:06:24Z 1 2020-02-15T06:59:41Z +7410 2005-07-27T16:41:59Z 1559 337 2005-07-29T22:11:59Z 1 2020-02-15T06:59:41Z +7411 2005-07-27T16:42:30Z 515 302 2005-08-05T17:38:30Z 1 2020-02-15T06:59:41Z +7412 2005-07-27T16:44:34Z 950 582 2005-08-04T15:06:34Z 2 2020-02-15T06:59:41Z +7413 2005-07-27T16:45:40Z 2909 254 2005-07-31T12:02:40Z 1 2020-02-15T06:59:41Z +7414 2005-07-27T16:46:07Z 3276 265 2005-08-02T20:04:07Z 1 2020-02-15T06:59:41Z +7415 2005-07-27T16:50:59Z 4410 294 2005-08-02T11:21:59Z 1 2020-02-15T06:59:41Z +7416 2005-07-27T16:55:25Z 653 350 2005-07-29T11:27:25Z 1 2020-02-15T06:59:41Z +7417 2005-07-27T16:58:33Z 2952 214 2005-07-30T22:17:33Z 1 2020-02-15T06:59:41Z +7418 2005-07-27T16:59:09Z 3029 332 2005-07-29T15:08:09Z 2 2020-02-15T06:59:41Z +7419 2005-07-27T17:04:15Z 3454 352 2005-08-05T21:54:15Z 2 2020-02-15T06:59:41Z +7420 2005-07-27T17:09:39Z 3505 547 2005-07-30T12:30:39Z 2 2020-02-15T06:59:41Z +7421 2005-07-27T17:10:05Z 3548 70 2005-08-05T17:55:05Z 1 2020-02-15T06:59:41Z +7422 2005-07-27T17:10:42Z 3954 286 2005-08-03T19:32:42Z 1 2020-02-15T06:59:41Z +7423 2005-07-27T17:11:47Z 666 277 2005-07-29T12:29:47Z 2 2020-02-15T06:59:41Z +7424 2005-07-27T17:14:19Z 660 558 2005-08-01T19:21:19Z 2 2020-02-15T06:59:41Z +7425 2005-07-27T17:18:35Z 435 263 2005-08-02T11:18:35Z 1 2020-02-15T06:59:41Z +7426 2005-07-27T17:19:46Z 4420 239 2005-07-29T21:41:46Z 1 2020-02-15T06:59:41Z +7427 2005-07-27T17:20:16Z 2548 442 2005-08-03T20:38:16Z 2 2020-02-15T06:59:41Z +7428 2005-07-27T17:21:52Z 243 90 2005-08-05T17:13:52Z 2 2020-02-15T06:59:41Z +7429 2005-07-27T17:24:50Z 2160 515 2005-08-05T23:02:50Z 1 2020-02-15T06:59:41Z +7430 2005-07-27T17:26:14Z 4205 562 2005-08-01T13:02:14Z 2 2020-02-15T06:59:41Z +7431 2005-07-27T17:27:27Z 3931 589 2005-07-31T18:40:27Z 1 2020-02-15T06:59:41Z +7432 2005-07-27T17:31:40Z 3169 132 2005-07-28T17:44:40Z 2 2020-02-15T06:59:41Z +7433 2005-07-27T17:32:20Z 1748 282 2005-08-01T18:49:20Z 1 2020-02-15T06:59:41Z +7434 2005-07-27T17:34:40Z 2927 241 2005-07-29T15:01:40Z 1 2020-02-15T06:59:41Z +7435 2005-07-27T17:38:44Z 1574 380 2005-07-30T16:57:44Z 1 2020-02-15T06:59:41Z +7436 2005-07-27T17:39:12Z 299 45 2005-08-01T12:40:12Z 2 2020-02-15T06:59:41Z +7437 2005-07-27T17:39:18Z 2617 135 2005-07-28T18:33:18Z 2 2020-02-15T06:59:41Z +7438 2005-07-27T17:40:40Z 1364 52 2005-08-05T15:25:40Z 1 2020-02-15T06:59:41Z +7439 2005-07-27T17:42:31Z 4091 102 2005-08-05T16:34:31Z 1 2020-02-15T06:59:41Z +7440 2005-07-27T17:43:27Z 1476 484 2005-08-03T22:12:27Z 1 2020-02-15T06:59:41Z +7441 2005-07-27T17:46:53Z 4039 198 2005-07-31T23:05:53Z 1 2020-02-15T06:59:41Z +7442 2005-07-27T17:47:00Z 2471 105 2005-07-28T21:37:00Z 1 2020-02-15T06:59:41Z +7443 2005-07-27T17:47:43Z 703 380 2005-07-29T13:15:43Z 1 2020-02-15T06:59:41Z +7444 2005-07-27T17:49:16Z 120 531 2005-07-28T15:05:16Z 1 2020-02-15T06:59:41Z +7445 2005-07-27T17:57:15Z 4115 394 2005-07-31T20:24:15Z 1 2020-02-15T06:59:41Z +7446 2005-07-27T18:00:24Z 2337 486 2005-07-29T13:40:24Z 1 2020-02-15T06:59:41Z +7447 2005-07-27T18:02:08Z 1795 107 2005-07-29T21:15:08Z 1 2020-02-15T06:59:41Z +7448 2005-07-27T18:06:30Z 3584 175 2005-07-29T15:43:30Z 1 2020-02-15T06:59:41Z +7449 2005-07-27T18:17:41Z 2084 421 2005-08-01T18:52:41Z 1 2020-02-15T06:59:41Z +7450 2005-07-27T18:18:35Z 3496 191 2005-08-04T15:18:35Z 1 2020-02-15T06:59:41Z +7451 2005-07-27T18:18:41Z 2382 29 2005-08-03T13:55:41Z 2 2020-02-15T06:59:41Z +7452 2005-07-27T18:26:39Z 3482 285 2005-08-04T17:35:39Z 2 2020-02-15T06:59:41Z +7453 2005-07-27T18:27:13Z 2992 29 2005-07-29T23:52:13Z 1 2020-02-15T06:59:41Z +7454 2005-07-27T18:27:26Z 3248 75 2005-07-30T23:50:26Z 1 2020-02-15T06:59:41Z +7455 2005-07-27T18:34:41Z 3815 405 2005-07-31T17:32:41Z 1 2020-02-15T06:59:41Z +7456 2005-07-27T18:34:53Z 1959 501 2005-07-29T17:46:53Z 2 2020-02-15T06:59:41Z +7457 2005-07-27T18:35:17Z 3635 510 2005-07-30T12:41:17Z 2 2020-02-15T06:59:41Z +7458 2005-07-27T18:36:17Z 2964 327 2005-07-31T22:43:17Z 1 2020-02-15T06:59:41Z +7459 2005-07-27T18:40:20Z 2053 2 2005-08-02T21:07:20Z 2 2020-02-15T06:59:41Z +7460 2005-07-27T18:41:35Z 919 442 2005-07-29T15:16:35Z 2 2020-02-15T06:59:41Z +7461 2005-07-27T18:45:15Z 1236 476 2005-07-29T17:19:15Z 1 2020-02-15T06:59:41Z +7462 2005-07-27T18:47:47Z 878 114 2005-07-29T20:46:47Z 2 2020-02-15T06:59:41Z +7463 2005-07-27T18:48:32Z 3676 284 2005-07-29T23:54:32Z 2 2020-02-15T06:59:41Z +7464 2005-07-27T18:49:42Z 845 31 2005-07-28T20:45:42Z 2 2020-02-15T06:59:41Z +7465 2005-07-27T18:50:30Z 2357 115 2005-07-30T20:55:30Z 1 2020-02-15T06:59:41Z +7466 2005-07-27T18:51:17Z 2791 53 2005-07-31T16:58:17Z 1 2020-02-15T06:59:41Z +7467 2005-07-27T18:51:54Z 3869 240 2005-08-03T23:27:54Z 2 2020-02-15T06:59:41Z +7468 2005-07-27T18:52:27Z 3166 113 2005-08-03T19:29:27Z 2 2020-02-15T06:59:41Z +7469 2005-07-27T18:57:40Z 3723 189 2005-07-31T00:17:40Z 1 2020-02-15T06:59:41Z +7470 2005-07-27T19:01:03Z 289 564 2005-08-05T19:16:03Z 2 2020-02-15T06:59:41Z +7471 2005-07-27T19:02:19Z 1776 95 2005-07-30T15:12:19Z 1 2020-02-15T06:59:41Z +7472 2005-07-27T19:04:19Z 1535 103 2005-08-03T00:08:19Z 2 2020-02-15T06:59:41Z +7473 2005-07-27T19:05:40Z 401 341 2005-08-05T14:47:40Z 1 2020-02-15T06:59:41Z +7474 2005-07-27T19:07:17Z 2971 110 2005-07-30T00:37:17Z 1 2020-02-15T06:59:41Z +7475 2005-07-27T19:07:43Z 1670 255 2005-08-04T22:12:43Z 2 2020-02-15T06:59:41Z +7476 2005-07-27T19:08:56Z 2288 64 2005-07-31T16:36:56Z 2 2020-02-15T06:59:41Z +7477 2005-07-27T19:11:03Z 2692 355 2005-08-02T19:25:03Z 1 2020-02-15T06:59:41Z +7478 2005-07-27T19:16:02Z 3791 521 2005-08-04T22:30:02Z 2 2020-02-15T06:59:41Z +7479 2005-07-27T19:18:17Z 218 434 2005-07-30T18:55:17Z 1 2020-02-15T06:59:41Z +7480 2005-07-27T19:19:53Z 452 344 2005-08-02T01:01:53Z 1 2020-02-15T06:59:41Z +7481 2005-07-27T19:20:25Z 1804 240 2005-07-29T19:07:25Z 2 2020-02-15T06:59:41Z +7482 2005-07-27T19:24:16Z 485 348 2005-08-05T18:49:16Z 2 2020-02-15T06:59:41Z +7483 2005-07-27T19:25:00Z 3678 106 2005-07-29T21:19:00Z 2 2020-02-15T06:59:41Z +7484 2005-07-27T19:28:17Z 2746 211 2005-07-31T20:05:17Z 2 2020-02-15T06:59:41Z +7485 2005-07-27T19:29:09Z 631 362 2005-07-30T16:28:09Z 1 2020-02-15T06:59:41Z +7486 2005-07-27T19:29:24Z 4362 393 2005-08-02T20:46:24Z 2 2020-02-15T06:59:41Z +7487 2005-07-27T19:32:45Z 4451 58 2005-07-28T15:11:45Z 1 2020-02-15T06:59:41Z +7488 2005-07-27T19:36:15Z 554 365 2005-08-05T14:14:15Z 1 2020-02-15T06:59:41Z +7489 2005-07-27T19:39:38Z 3732 16 2005-07-30T23:10:38Z 2 2020-02-15T06:59:41Z +7490 2005-07-27T19:48:12Z 4503 595 2005-08-04T17:15:12Z 1 2020-02-15T06:59:41Z +7491 2005-07-27T19:53:23Z 4261 239 2005-07-28T23:25:23Z 2 2020-02-15T06:59:41Z +7492 2005-07-27T19:54:18Z 908 155 2005-07-31T15:36:18Z 2 2020-02-15T06:59:41Z +7493 2005-07-27T19:55:46Z 2868 177 2005-08-02T19:46:46Z 2 2020-02-15T06:59:41Z +7494 2005-07-27T19:56:31Z 2259 60 2005-07-30T14:28:31Z 1 2020-02-15T06:59:41Z +7495 2005-07-27T20:01:20Z 3446 426 2005-07-30T16:40:20Z 1 2020-02-15T06:59:41Z +7496 2005-07-27T20:04:05Z 2449 257 2005-08-02T20:12:05Z 1 2020-02-15T06:59:41Z +7497 2005-07-27T20:05:27Z 286 387 2005-07-30T22:47:27Z 1 2020-02-15T06:59:41Z +7498 2005-07-27T20:09:31Z 1144 455 2005-07-29T23:38:31Z 1 2020-02-15T06:59:41Z +7499 2005-07-27T20:10:28Z 3503 157 2005-07-30T16:24:28Z 1 2020-02-15T06:59:41Z +7500 2005-07-27T20:16:03Z 609 160 2005-07-29T18:50:03Z 1 2020-02-15T06:59:41Z +7501 2005-07-27T20:16:59Z 1464 587 2005-08-04T00:11:59Z 2 2020-02-15T06:59:41Z +7502 2005-07-27T20:19:08Z 3229 303 2005-07-28T18:32:08Z 2 2020-02-15T06:59:41Z +7503 2005-07-27T20:23:12Z 579 3 2005-08-05T18:46:12Z 2 2020-02-15T06:59:41Z +7504 2005-07-27T20:24:31Z 3354 283 2005-07-30T21:25:31Z 2 2020-02-15T06:59:41Z +7505 2005-07-27T20:28:03Z 1342 209 2005-08-03T17:04:03Z 1 2020-02-15T06:59:41Z +7506 2005-07-27T20:28:34Z 2091 527 2005-08-05T18:14:34Z 1 2020-02-15T06:59:41Z +7507 2005-07-27T20:31:48Z 3618 512 2005-08-02T17:27:48Z 1 2020-02-15T06:59:41Z +7508 2005-07-27T20:33:08Z 3401 465 2005-08-01T01:29:08Z 1 2020-02-15T06:59:41Z +7509 2005-07-27T20:37:19Z 4134 228 2005-08-04T19:35:19Z 2 2020-02-15T06:59:41Z +7510 2005-07-27T20:37:57Z 1617 257 2005-08-01T17:14:57Z 2 2020-02-15T06:59:41Z +7511 2005-07-27T20:38:40Z 4044 591 2005-08-04T22:36:40Z 2 2020-02-15T06:59:41Z +7512 2005-07-27T20:40:40Z 1343 352 2005-08-05T01:44:40Z 1 2020-02-15T06:59:41Z +7513 2005-07-27T20:51:04Z 939 411 2005-08-03T20:15:04Z 2 2020-02-15T06:59:41Z +7514 2005-07-27T20:51:49Z 400 44 2005-07-29T18:21:49Z 2 2020-02-15T06:59:41Z +7515 2005-07-27T20:52:37Z 1211 390 2005-08-02T20:17:37Z 2 2020-02-15T06:59:41Z +7516 2005-07-27T20:55:28Z 2178 134 2005-07-30T00:50:28Z 1 2020-02-15T06:59:41Z +7517 2005-07-27T20:57:07Z 3177 41 2005-08-04T15:08:07Z 1 2020-02-15T06:59:41Z +7518 2005-07-27T21:01:16Z 2676 257 2005-08-03T15:26:16Z 1 2020-02-15T06:59:41Z +7519 2005-07-27T21:01:41Z 4009 124 2005-08-05T19:15:41Z 1 2020-02-15T06:59:41Z +7520 2005-07-27T21:02:02Z 3875 191 2005-07-28T18:18:02Z 1 2020-02-15T06:59:41Z +7521 2005-07-27T21:04:42Z 3144 176 2005-08-03T16:06:42Z 1 2020-02-15T06:59:41Z +7522 2005-07-27T21:11:03Z 2038 478 2005-08-02T16:40:03Z 1 2020-02-15T06:59:41Z +7523 2005-07-27T21:11:23Z 4153 410 2005-07-28T16:37:23Z 1 2020-02-15T06:59:41Z +7524 2005-07-27T21:11:44Z 4295 225 2005-08-03T02:17:44Z 1 2020-02-15T06:59:41Z +7525 2005-07-27T21:13:28Z 4084 281 2005-08-04T19:44:28Z 2 2020-02-15T06:59:41Z +7526 2005-07-27T21:13:47Z 696 44 2005-08-05T15:23:47Z 2 2020-02-15T06:59:41Z +7527 2005-07-27T21:14:28Z 2124 426 2005-08-05T21:08:28Z 1 2020-02-15T06:59:41Z +7528 2005-07-27T21:15:25Z 1218 213 2005-08-03T19:12:25Z 1 2020-02-15T06:59:41Z +7529 2005-07-27T21:18:08Z 3644 145 2005-08-06T00:59:08Z 1 2020-02-15T06:59:41Z +7530 2005-07-27T21:18:58Z 3810 98 2005-07-31T01:51:58Z 2 2020-02-15T06:59:41Z +7531 2005-07-27T21:19:34Z 2393 221 2005-08-06T01:07:34Z 2 2020-02-15T06:59:41Z +7532 2005-07-27T21:20:52Z 677 34 2005-07-30T21:38:52Z 1 2020-02-15T06:59:41Z +7533 2005-07-27T21:24:33Z 1791 594 2005-08-05T16:33:33Z 2 2020-02-15T06:59:41Z +7534 2005-07-27T21:26:17Z 2276 282 2005-08-05T00:23:17Z 2 2020-02-15T06:59:41Z +7535 2005-07-27T21:32:39Z 772 123 2005-08-05T23:42:39Z 1 2020-02-15T06:59:41Z +7536 2005-07-27T21:34:09Z 3417 307 2005-08-02T03:26:09Z 1 2020-02-15T06:59:41Z +7537 2005-07-27T21:36:09Z 4456 269 2005-08-01T01:51:09Z 1 2020-02-15T06:59:41Z +7538 2005-07-27T21:38:04Z 2486 361 2005-08-02T03:14:04Z 1 2020-02-15T06:59:41Z +7539 2005-07-27T21:39:42Z 1849 423 2005-08-06T00:12:42Z 1 2020-02-15T06:59:41Z +7540 2005-07-27T21:39:55Z 2198 207 2005-08-04T18:10:55Z 2 2020-02-15T06:59:41Z +7541 2005-07-27T21:40:05Z 4100 206 2005-07-29T16:13:05Z 1 2020-02-15T06:59:41Z +7542 2005-07-27T21:43:04Z 1912 110 2005-07-30T00:02:04Z 1 2020-02-15T06:59:41Z +7543 2005-07-27T21:44:28Z 1289 526 2005-08-04T21:42:28Z 2 2020-02-15T06:59:41Z +7544 2005-07-27T21:47:37Z 766 249 2005-08-05T02:29:37Z 2 2020-02-15T06:59:41Z +7545 2005-07-27T21:48:03Z 2541 292 2005-08-01T22:23:03Z 2 2020-02-15T06:59:41Z +7546 2005-07-27T21:50:09Z 3683 494 2005-08-05T03:07:09Z 2 2020-02-15T06:59:41Z +7547 2005-07-27T21:51:48Z 1733 547 2005-08-06T01:05:48Z 2 2020-02-15T06:59:41Z +7548 2005-07-27T21:53:18Z 2194 484 2005-08-02T17:50:18Z 1 2020-02-15T06:59:41Z +7549 2005-07-27T21:53:21Z 1765 591 2005-08-05T18:53:21Z 1 2020-02-15T06:59:41Z +7550 2005-07-27T21:55:07Z 4488 71 2005-07-28T23:34:07Z 2 2020-02-15T06:59:41Z +7551 2005-07-27T21:59:15Z 2635 304 2005-07-31T19:54:15Z 2 2020-02-15T06:59:41Z +7552 2005-07-27T22:03:41Z 2166 16 2005-07-28T22:24:41Z 1 2020-02-15T06:59:41Z +7553 2005-07-27T22:11:36Z 1643 275 2005-08-03T17:52:36Z 1 2020-02-15T06:59:41Z +7554 2005-07-27T22:12:41Z 1805 135 2005-08-04T01:34:41Z 2 2020-02-15T06:59:41Z +7555 2005-07-27T22:17:05Z 3421 533 2005-08-02T02:50:05Z 2 2020-02-15T06:59:41Z +7556 2005-07-27T22:17:17Z 794 188 2005-07-28T19:17:17Z 2 2020-02-15T06:59:41Z +7557 2005-07-27T22:18:19Z 3152 131 2005-07-29T00:24:19Z 1 2020-02-15T06:59:41Z +7558 2005-07-27T22:19:08Z 550 80 2005-07-30T21:31:08Z 1 2020-02-15T06:59:41Z +7559 2005-07-27T22:20:03Z 661 149 2005-08-06T00:26:03Z 2 2020-02-15T06:59:41Z +7560 2005-07-27T22:20:17Z 3574 562 2005-08-02T23:00:17Z 2 2020-02-15T06:59:41Z +7561 2005-07-27T22:21:05Z 3433 291 2005-08-04T01:02:05Z 1 2020-02-15T06:59:41Z +7562 2005-07-27T22:25:15Z 4417 366 2005-08-01T01:21:15Z 2 2020-02-15T06:59:41Z +7563 2005-07-27T22:25:36Z 2709 453 2005-08-01T03:59:36Z 2 2020-02-15T06:59:41Z +7564 2005-07-27T22:31:17Z 2887 291 2005-08-01T01:05:17Z 2 2020-02-15T06:59:41Z +7565 2005-07-27T22:33:59Z 1028 114 2005-07-30T03:03:59Z 2 2020-02-15T06:59:41Z +7566 2005-07-27T22:34:45Z 1802 144 2005-08-01T22:20:45Z 1 2020-02-15T06:59:41Z +7567 2005-07-27T22:38:05Z 1066 504 2005-07-30T17:20:05Z 1 2020-02-15T06:59:41Z +7568 2005-07-27T22:38:53Z 1578 296 2005-07-29T00:51:53Z 1 2020-02-15T06:59:41Z +7569 2005-07-27T22:38:53Z 2315 528 2005-08-05T19:03:53Z 2 2020-02-15T06:59:41Z +7570 2005-07-27T22:40:06Z 3189 110 2005-07-28T23:14:06Z 1 2020-02-15T06:59:41Z +7571 2005-07-27T22:43:42Z 3850 368 2005-07-30T22:17:42Z 1 2020-02-15T06:59:41Z +7572 2005-07-27T22:44:29Z 3068 532 2005-08-01T03:04:29Z 1 2020-02-15T06:59:41Z +7573 2005-07-27T22:46:20Z 314 467 2005-08-04T01:55:20Z 1 2020-02-15T06:59:41Z +7574 2005-07-27T22:53:00Z 298 200 2005-07-29T18:39:00Z 2 2020-02-15T06:59:41Z +7575 2005-07-27T22:53:52Z 702 582 2005-07-29T02:02:52Z 1 2020-02-15T06:59:41Z +7576 2005-07-27T22:54:35Z 3374 446 2005-08-03T03:53:35Z 2 2020-02-15T06:59:41Z +7577 2005-07-27T22:56:07Z 2723 332 2005-08-05T21:23:07Z 2 2020-02-15T06:59:41Z +7578 2005-07-27T22:58:17Z 4210 332 2005-07-29T23:14:17Z 1 2020-02-15T06:59:41Z +7579 2005-07-27T23:06:41Z 501 352 2005-07-31T20:08:41Z 2 2020-02-15T06:59:41Z +7580 2005-07-27T23:07:40Z 338 28 2005-08-05T02:17:40Z 1 2020-02-15T06:59:41Z +7581 2005-07-27T23:14:35Z 2051 166 2005-07-29T21:30:35Z 1 2020-02-15T06:59:41Z +7582 2005-07-27T23:15:14Z 3941 128 2005-07-29T03:18:14Z 2 2020-02-15T06:59:41Z +7583 2005-07-27T23:15:22Z 2890 198 2005-08-04T04:39:22Z 2 2020-02-15T06:59:41Z +7584 2005-07-27T23:15:46Z 4390 338 2005-08-03T02:18:46Z 2 2020-02-15T06:59:41Z +7585 2005-07-27T23:18:22Z 467 440 2005-07-30T23:08:22Z 1 2020-02-15T06:59:41Z +7586 2005-07-27T23:19:29Z 15 316 2005-07-29T23:04:29Z 1 2020-02-15T06:59:41Z +7587 2005-07-27T23:23:03Z 655 113 2005-08-01T17:34:03Z 1 2020-02-15T06:59:41Z +7588 2005-07-27T23:23:31Z 4033 360 2005-08-04T02:54:31Z 1 2020-02-15T06:59:41Z +7589 2005-07-27T23:23:36Z 1569 32 2005-08-04T00:16:36Z 1 2020-02-15T06:59:41Z +7590 2005-07-27T23:24:24Z 2152 73 2005-07-28T19:53:24Z 2 2020-02-15T06:59:41Z +7591 2005-07-27T23:25:54Z 651 525 2005-08-02T22:54:54Z 1 2020-02-15T06:59:41Z +7592 2005-07-27T23:26:04Z 4105 316 2005-07-29T23:48:04Z 2 2020-02-15T06:59:41Z +7593 2005-07-27T23:28:47Z 1158 436 2005-08-02T19:51:47Z 1 2020-02-15T06:59:41Z +7594 2005-07-27T23:30:41Z 3230 424 2005-08-02T04:29:41Z 1 2020-02-15T06:59:41Z +7595 2005-07-27T23:32:23Z 4313 390 2005-08-03T05:28:23Z 1 2020-02-15T06:59:41Z +7596 2005-07-27T23:33:57Z 2097 275 2005-08-01T20:46:57Z 2 2020-02-15T06:59:41Z +7597 2005-07-27T23:35:49Z 2856 169 2005-07-30T21:38:49Z 1 2020-02-15T06:59:41Z +7598 2005-07-27T23:36:01Z 4545 438 2005-07-29T23:35:01Z 2 2020-02-15T06:59:41Z +7599 2005-07-27T23:38:46Z 3272 87 2005-07-28T22:52:46Z 1 2020-02-15T06:59:41Z +7600 2005-07-27T23:41:18Z 3492 107 2005-08-06T04:40:18Z 1 2020-02-15T06:59:41Z +7601 2005-07-27T23:48:15Z 903 228 2005-07-29T02:45:15Z 1 2020-02-15T06:59:41Z +7602 2005-07-27T23:48:35Z 2516 366 2005-08-04T17:58:35Z 1 2020-02-15T06:59:41Z +7603 2005-07-27T23:54:44Z 124 497 2005-07-29T01:24:44Z 1 2020-02-15T06:59:41Z +7604 2005-07-27T23:54:52Z 3720 406 2005-08-05T03:04:52Z 2 2020-02-15T06:59:41Z +7605 2005-07-27T23:57:01Z 1391 576 2005-08-03T04:11:01Z 1 2020-02-15T06:59:41Z +7606 2005-07-28T00:02:15Z 637 201 2005-07-29T03:14:15Z 2 2020-02-15T06:59:41Z +7607 2005-07-28T00:05:53Z 3914 293 2005-07-31T04:13:53Z 1 2020-02-15T06:59:41Z +7608 2005-07-28T00:08:36Z 1256 167 2005-07-28T18:13:36Z 1 2020-02-15T06:59:41Z +7609 2005-07-28T00:11:00Z 3655 179 2005-07-31T03:04:00Z 1 2020-02-15T06:59:41Z +7610 2005-07-28T00:11:35Z 1279 450 2005-07-31T00:33:35Z 1 2020-02-15T06:59:41Z +7611 2005-07-28T00:11:47Z 3347 467 2005-07-28T18:35:47Z 1 2020-02-15T06:59:41Z +7612 2005-07-28T00:11:55Z 1411 563 2005-07-30T00:47:55Z 1 2020-02-15T06:59:41Z +7613 2005-07-28T00:13:58Z 4253 202 2005-08-06T05:36:58Z 2 2020-02-15T06:59:41Z +7614 2005-07-28T00:14:38Z 3475 440 2005-07-29T18:18:38Z 1 2020-02-15T06:59:41Z +7615 2005-07-28T00:15:24Z 3884 373 2005-07-31T02:00:24Z 1 2020-02-15T06:59:41Z +7616 2005-07-28T00:15:26Z 3790 9 2005-07-30T21:52:26Z 1 2020-02-15T06:59:41Z +7617 2005-07-28T00:18:40Z 2904 340 2005-08-01T01:17:40Z 1 2020-02-15T06:59:41Z +7618 2005-07-28T00:24:14Z 774 271 2005-08-01T04:35:14Z 1 2020-02-15T06:59:41Z +7619 2005-07-28T00:25:41Z 1057 419 2005-07-30T04:35:41Z 2 2020-02-15T06:59:41Z +7620 2005-07-28T00:27:17Z 931 580 2005-07-31T02:04:17Z 1 2020-02-15T06:59:41Z +7621 2005-07-28T00:34:06Z 1833 88 2005-08-06T00:13:06Z 1 2020-02-15T06:59:41Z +7622 2005-07-28T00:37:34Z 4014 198 2005-07-31T23:27:34Z 2 2020-02-15T06:59:41Z +7623 2005-07-28T00:37:41Z 1146 459 2005-08-04T19:38:41Z 2 2020-02-15T06:59:41Z +7624 2005-07-28T00:37:44Z 2756 415 2005-07-30T21:26:44Z 1 2020-02-15T06:59:41Z +7625 2005-07-28T00:47:56Z 3129 382 2005-08-02T23:34:56Z 1 2020-02-15T06:59:41Z +7626 2005-07-28T00:49:01Z 4200 450 2005-07-31T00:43:01Z 1 2020-02-15T06:59:41Z +7627 2005-07-28T00:56:47Z 782 52 2005-08-02T04:16:47Z 1 2020-02-15T06:59:41Z +7628 2005-07-28T00:58:04Z 1240 516 2005-08-03T19:16:04Z 1 2020-02-15T06:59:41Z +7629 2005-07-28T01:00:09Z 2453 229 2005-07-30T06:49:09Z 1 2020-02-15T06:59:41Z +7630 2005-07-28T01:01:03Z 2798 351 2005-07-31T01:08:03Z 2 2020-02-15T06:59:41Z +7631 2005-07-28T01:01:15Z 2437 132 2005-08-01T06:16:15Z 2 2020-02-15T06:59:41Z +7632 2005-07-28T01:02:40Z 3233 181 2005-07-30T05:31:40Z 2 2020-02-15T06:59:41Z +7633 2005-07-28T01:03:41Z 4171 402 2005-08-01T23:54:41Z 2 2020-02-15T06:59:41Z +7634 2005-07-28T01:07:01Z 4487 365 2005-07-31T05:00:01Z 1 2020-02-15T06:59:41Z +7635 2005-07-28T01:08:11Z 55 413 2005-08-01T03:32:11Z 2 2020-02-15T06:59:41Z +7636 2005-07-28T01:08:36Z 202 51 2005-08-03T21:36:36Z 1 2020-02-15T06:59:41Z +7637 2005-07-28T01:12:25Z 87 91 2005-08-02T03:48:25Z 1 2020-02-15T06:59:41Z +7638 2005-07-28T01:13:26Z 1890 172 2005-07-28T20:34:26Z 1 2020-02-15T06:59:41Z +7639 2005-07-28T01:14:36Z 767 459 2005-07-29T00:19:36Z 1 2020-02-15T06:59:41Z +7640 2005-07-28T01:14:49Z 3014 229 2005-08-03T21:50:49Z 1 2020-02-15T06:59:41Z +7641 2005-07-28T01:15:45Z 1868 475 2005-08-04T23:50:45Z 1 2020-02-15T06:59:41Z +7642 2005-07-28T01:16:51Z 3995 523 2005-08-02T00:45:51Z 2 2020-02-15T06:59:41Z +7643 2005-07-28T01:19:44Z 4369 407 2005-08-04T21:16:44Z 1 2020-02-15T06:59:41Z +7644 2005-07-28T01:27:33Z 882 173 2005-07-31T22:58:33Z 2 2020-02-15T06:59:41Z +7645 2005-07-28T01:27:42Z 830 381 2005-08-03T07:16:42Z 2 2020-02-15T06:59:41Z +7646 2005-07-28T01:31:45Z 1615 255 2005-07-31T07:16:45Z 1 2020-02-15T06:59:41Z +7647 2005-07-28T01:35:17Z 3079 36 2005-08-01T00:14:17Z 1 2020-02-15T06:59:41Z +7648 2005-07-28T01:35:33Z 797 310 2005-08-04T06:21:33Z 2 2020-02-15T06:59:41Z +7649 2005-07-28T01:37:26Z 2704 318 2005-07-28T21:18:26Z 1 2020-02-15T06:59:41Z +7650 2005-07-28T01:47:20Z 701 290 2005-08-05T06:00:20Z 2 2020-02-15T06:59:41Z +7651 2005-07-28T01:48:32Z 2753 401 2005-08-03T03:10:32Z 2 2020-02-15T06:59:41Z +7652 2005-07-28T01:50:29Z 92 5 2005-07-30T22:23:29Z 2 2020-02-15T06:59:41Z +7653 2005-07-28T01:58:30Z 814 232 2005-07-28T23:32:30Z 2 2020-02-15T06:59:41Z +7654 2005-07-28T02:00:14Z 1009 360 2005-07-31T20:50:14Z 2 2020-02-15T06:59:41Z +7655 2005-07-28T02:01:11Z 2665 513 2005-07-30T23:12:11Z 2 2020-02-15T06:59:41Z +7656 2005-07-28T02:07:19Z 178 148 2005-07-31T04:05:19Z 1 2020-02-15T06:59:41Z +7657 2005-07-28T02:09:00Z 2319 518 2005-08-04T21:44:00Z 1 2020-02-15T06:59:41Z +7658 2005-07-28T02:09:12Z 1798 272 2005-07-30T00:54:12Z 2 2020-02-15T06:59:41Z +7659 2005-07-28T02:09:45Z 1622 584 2005-08-02T05:34:45Z 2 2020-02-15T06:59:41Z +7660 2005-07-28T02:10:10Z 4385 4 2005-07-30T04:29:10Z 2 2020-02-15T06:59:41Z +7661 2005-07-28T02:10:27Z 3060 256 2005-08-05T03:45:27Z 2 2020-02-15T06:59:41Z +7662 2005-07-28T02:16:08Z 1017 534 2005-08-03T21:51:08Z 1 2020-02-15T06:59:41Z +7663 2005-07-28T02:19:48Z 832 470 2005-07-30T21:43:48Z 2 2020-02-15T06:59:41Z +7664 2005-07-28T02:24:23Z 1989 461 2005-07-29T23:01:23Z 1 2020-02-15T06:59:41Z +7665 2005-07-28T02:28:30Z 1455 590 2005-07-31T20:42:30Z 1 2020-02-15T06:59:41Z +7666 2005-07-28T02:35:12Z 688 196 2005-08-05T05:43:12Z 2 2020-02-15T06:59:41Z +7667 2005-07-28T02:37:22Z 2415 443 2005-08-05T21:37:22Z 1 2020-02-15T06:59:41Z +7668 2005-07-28T02:41:31Z 3880 508 2005-08-02T06:08:31Z 1 2020-02-15T06:59:41Z +7669 2005-07-28T02:44:07Z 2624 483 2005-07-29T00:54:07Z 1 2020-02-15T06:59:41Z +7670 2005-07-28T02:44:25Z 1356 252 2005-07-29T21:55:25Z 2 2020-02-15T06:59:41Z +7671 2005-07-28T02:48:31Z 3464 442 2005-07-30T23:04:31Z 1 2020-02-15T06:59:41Z +7672 2005-07-28T02:49:41Z 573 542 2005-08-04T02:38:41Z 1 2020-02-15T06:59:41Z +7673 2005-07-28T02:53:53Z 2368 409 2005-08-06T00:07:53Z 1 2020-02-15T06:59:42Z +7674 2005-07-28T02:54:30Z 682 177 2005-08-05T23:09:30Z 1 2020-02-15T06:59:42Z +7675 2005-07-28T02:55:20Z 153 189 2005-07-31T05:27:20Z 1 2020-02-15T06:59:42Z +7676 2005-07-28T02:55:27Z 1110 508 2005-08-01T03:50:27Z 2 2020-02-15T06:59:42Z +7677 2005-07-28T02:56:37Z 4464 566 2005-07-31T02:21:37Z 1 2020-02-15T06:59:42Z +7678 2005-07-28T02:58:16Z 3398 510 2005-08-06T04:22:16Z 1 2020-02-15T06:59:42Z +7679 2005-07-28T02:58:39Z 1063 444 2005-08-02T04:58:39Z 1 2020-02-15T06:59:42Z +7680 2005-07-28T02:59:08Z 1784 559 2005-08-03T03:37:08Z 2 2020-02-15T06:59:42Z +7681 2005-07-28T03:07:09Z 1176 432 2005-07-29T08:30:09Z 2 2020-02-15T06:59:42Z +7682 2005-07-28T03:07:29Z 3296 400 2005-08-04T08:48:29Z 2 2020-02-15T06:59:42Z +7683 2005-07-28T03:11:29Z 1760 73 2005-08-04T00:14:29Z 1 2020-02-15T06:59:42Z +7684 2005-07-28T03:11:54Z 3365 40 2005-07-31T04:40:54Z 2 2020-02-15T06:59:42Z +7685 2005-07-28T03:13:00Z 2213 468 2005-08-01T00:29:00Z 2 2020-02-15T06:59:42Z +7686 2005-07-28T03:19:23Z 2144 184 2005-08-04T05:17:23Z 2 2020-02-15T06:59:42Z +7687 2005-07-28T03:20:26Z 689 325 2005-08-02T05:48:26Z 2 2020-02-15T06:59:42Z +7688 2005-07-28T03:20:47Z 1179 491 2005-08-06T06:07:47Z 2 2020-02-15T06:59:42Z +7689 2005-07-28T03:21:24Z 1803 253 2005-07-31T08:01:24Z 2 2020-02-15T06:59:42Z +7690 2005-07-28T03:26:21Z 1076 150 2005-07-29T00:08:21Z 1 2020-02-15T06:59:42Z +7691 2005-07-28T03:30:09Z 1579 112 2005-07-29T21:31:09Z 1 2020-02-15T06:59:42Z +7692 2005-07-28T03:30:21Z 267 392 2005-07-30T22:25:21Z 1 2020-02-15T06:59:42Z +7693 2005-07-28T03:31:22Z 2479 148 2005-07-31T06:42:22Z 2 2020-02-15T06:59:42Z +7694 2005-07-28T03:39:25Z 2892 538 2005-07-31T05:47:25Z 1 2020-02-15T06:59:42Z +7695 2005-07-28T03:41:13Z 2742 323 2005-08-06T05:06:13Z 2 2020-02-15T06:59:42Z +7696 2005-07-28T03:41:35Z 3463 56 2005-08-06T05:48:35Z 2 2020-02-15T06:59:42Z +7697 2005-07-28T03:43:45Z 3966 377 2005-08-03T07:55:45Z 2 2020-02-15T06:59:42Z +7698 2005-07-28T03:44:14Z 3650 561 2005-08-04T03:44:14Z 2 2020-02-15T06:59:42Z +7699 2005-07-28T03:52:21Z 4332 53 2005-08-01T05:00:21Z 2 2020-02-15T06:59:42Z +7700 2005-07-28T03:54:14Z 3546 124 2005-08-05T06:20:14Z 2 2020-02-15T06:59:42Z +7701 2005-07-28T03:54:28Z 1604 306 2005-08-01T08:39:28Z 2 2020-02-15T06:59:42Z +7702 2005-07-28T03:56:05Z 253 349 2005-07-31T03:29:05Z 1 2020-02-15T06:59:42Z +7703 2005-07-28T03:59:21Z 2150 3 2005-08-05T08:52:21Z 1 2020-02-15T06:59:42Z +7704 2005-07-28T04:02:13Z 2342 265 2005-08-04T00:51:13Z 1 2020-02-15T06:59:42Z +7705 2005-07-28T04:02:58Z 1072 22 2005-08-05T01:19:58Z 2 2020-02-15T06:59:42Z +7706 2005-07-28T04:03:17Z 994 263 2005-07-29T22:16:17Z 2 2020-02-15T06:59:42Z +7707 2005-07-28T04:07:47Z 2563 232 2005-07-29T02:02:47Z 1 2020-02-15T06:59:42Z +7708 2005-07-28T04:19:15Z 398 363 2005-08-04T04:41:15Z 1 2020-02-15T06:59:42Z +7709 2005-07-28T04:22:14Z 3800 81 2005-07-31T09:18:14Z 2 2020-02-15T06:59:42Z +7710 2005-07-28T04:24:07Z 3716 77 2005-08-03T22:49:07Z 2 2020-02-15T06:59:42Z +7711 2005-07-28T04:26:42Z 2695 426 2005-07-29T07:30:42Z 2 2020-02-15T06:59:42Z +7712 2005-07-28T04:29:53Z 3256 361 2005-08-02T00:57:53Z 2 2020-02-15T06:59:42Z +7713 2005-07-28T04:32:14Z 2018 572 2005-08-03T04:30:14Z 2 2020-02-15T06:59:42Z +7714 2005-07-28T04:32:30Z 940 70 2005-08-02T07:10:30Z 2 2020-02-15T06:59:42Z +7715 2005-07-28T04:32:38Z 3210 512 2005-08-05T00:37:38Z 2 2020-02-15T06:59:42Z +7716 2005-07-28T04:33:15Z 1493 284 2005-08-04T00:08:15Z 2 2020-02-15T06:59:42Z +7717 2005-07-28T04:33:54Z 730 459 2005-07-30T02:46:54Z 2 2020-02-15T06:59:42Z +7718 2005-07-28T04:37:59Z 3587 4 2005-07-29T09:20:59Z 2 2020-02-15T06:59:42Z +7719 2005-07-28T04:39:09Z 2481 286 2005-08-05T03:15:09Z 1 2020-02-15T06:59:42Z +7720 2005-07-28T04:41:44Z 185 520 2005-08-04T06:51:44Z 2 2020-02-15T06:59:42Z +7721 2005-07-28T04:42:58Z 2228 83 2005-07-31T07:52:58Z 1 2020-02-15T06:59:42Z +7722 2005-07-28T04:44:58Z 3828 309 2005-07-30T01:29:58Z 1 2020-02-15T06:59:42Z +7723 2005-07-28T04:45:37Z 3263 147 2005-07-30T09:03:37Z 2 2020-02-15T06:59:42Z +7724 2005-07-28T04:46:30Z 346 3 2005-08-04T08:41:30Z 1 2020-02-15T06:59:42Z +7725 2005-07-28T04:47:14Z 1922 326 2005-08-04T09:03:14Z 1 2020-02-15T06:59:42Z +7726 2005-07-28T04:52:19Z 2578 219 2005-08-04T09:05:19Z 1 2020-02-15T06:59:42Z +7727 2005-07-28T04:52:43Z 2274 123 2005-08-03T01:12:43Z 2 2020-02-15T06:59:42Z +7728 2005-07-28T04:56:33Z 492 130 2005-07-31T07:54:33Z 1 2020-02-15T06:59:42Z +7729 2005-07-28T04:57:57Z 1491 89 2005-07-30T09:38:57Z 1 2020-02-15T06:59:42Z +7730 2005-07-28T04:59:48Z 3118 155 2005-08-04T04:35:48Z 2 2020-02-15T06:59:42Z +7731 2005-07-28T05:01:18Z 1533 413 2005-07-29T02:22:18Z 1 2020-02-15T06:59:42Z +7732 2005-07-28T05:03:32Z 3597 158 2005-07-29T10:20:32Z 1 2020-02-15T06:59:42Z +7733 2005-07-28T05:04:47Z 10 82 2005-08-05T05:12:47Z 2 2020-02-15T06:59:42Z +7734 2005-07-28T05:08:44Z 2726 135 2005-07-30T09:42:44Z 2 2020-02-15T06:59:42Z +7735 2005-07-28T05:09:56Z 3949 372 2005-07-31T23:34:56Z 2 2020-02-15T06:59:42Z +7736 2005-07-28T05:12:04Z 4466 205 2005-08-05T02:28:04Z 2 2020-02-15T06:59:42Z +7737 2005-07-28T05:15:03Z 1235 494 2005-08-04T01:24:03Z 1 2020-02-15T06:59:42Z +7738 2005-07-28T05:21:42Z 80 10 2005-08-03T09:46:42Z 2 2020-02-15T06:59:42Z +7739 2005-07-28T05:21:51Z 1554 186 2005-07-30T02:06:51Z 2 2020-02-15T06:59:42Z +7740 2005-07-28T05:23:36Z 3613 395 2005-08-01T02:20:36Z 2 2020-02-15T06:59:42Z +7741 2005-07-28T05:25:55Z 3917 591 2005-08-02T02:40:55Z 1 2020-02-15T06:59:42Z +7742 2005-07-28T05:33:16Z 1808 49 2005-08-06T01:04:16Z 2 2020-02-15T06:59:42Z +7743 2005-07-28T05:36:13Z 2883 210 2005-08-03T11:28:13Z 2 2020-02-15T06:59:42Z +7744 2005-07-28T05:38:20Z 1863 288 2005-07-31T11:00:20Z 1 2020-02-15T06:59:42Z +7745 2005-07-28T05:46:28Z 1014 285 2005-08-06T07:44:28Z 2 2020-02-15T06:59:42Z +7746 2005-07-28T05:48:56Z 176 299 2005-08-04T07:33:56Z 1 2020-02-15T06:59:42Z +7747 2005-07-28T05:50:11Z 1775 78 2005-08-03T09:51:11Z 1 2020-02-15T06:59:42Z +7748 2005-07-28T05:52:23Z 3523 415 2005-07-31T01:35:23Z 2 2020-02-15T06:59:42Z +7749 2005-07-28T05:53:36Z 3585 232 2005-08-01T03:49:36Z 1 2020-02-15T06:59:42Z +7750 2005-07-28T05:55:30Z 820 220 2005-08-06T04:32:30Z 2 2020-02-15T06:59:42Z +7751 2005-07-28T05:56:13Z 4425 176 2005-08-05T08:08:13Z 1 2020-02-15T06:59:42Z +7752 2005-07-28T06:01:00Z 2218 209 2005-08-03T06:09:00Z 1 2020-02-15T06:59:42Z +7753 2005-07-28T06:09:19Z 3071 531 2005-08-06T06:17:19Z 1 2020-02-15T06:59:42Z +7754 2005-07-28T06:10:55Z 1981 138 2005-07-29T02:46:55Z 1 2020-02-15T06:59:42Z +7755 2005-07-28T06:22:18Z 1247 449 2005-08-06T11:38:18Z 2 2020-02-15T06:59:42Z +7756 2005-07-28T06:22:52Z 1611 469 2005-08-05T11:55:52Z 2 2020-02-15T06:59:42Z +7757 2005-07-28T06:23:00Z 3445 502 2005-07-30T12:02:00Z 1 2020-02-15T06:59:42Z +7758 2005-07-28T06:23:41Z 4333 356 2005-08-03T06:06:41Z 2 2020-02-15T06:59:42Z +7759 2005-07-28T06:28:45Z 3381 405 2005-08-03T11:38:45Z 1 2020-02-15T06:59:42Z +7760 2005-07-28T06:29:45Z 409 307 2005-08-03T01:36:45Z 1 2020-02-15T06:59:42Z +7761 2005-07-28T06:31:45Z 3568 112 2005-07-30T01:36:45Z 2 2020-02-15T06:59:42Z +7762 2005-07-28T06:34:23Z 3234 462 2005-08-05T09:55:23Z 2 2020-02-15T06:59:42Z +7763 2005-07-28T06:35:16Z 2461 116 2005-08-03T02:46:16Z 2 2020-02-15T06:59:42Z +7764 2005-07-28T06:40:05Z 3537 142 2005-07-30T02:51:05Z 2 2020-02-15T06:59:42Z +7765 2005-07-28T06:40:33Z 4098 294 2005-07-31T01:25:33Z 1 2020-02-15T06:59:42Z +7766 2005-07-28T06:41:57Z 2774 292 2005-08-06T11:21:57Z 2 2020-02-15T06:59:42Z +7767 2005-07-28T06:42:02Z 329 139 2005-08-05T11:19:02Z 2 2020-02-15T06:59:42Z +7768 2005-07-28T06:44:03Z 2450 123 2005-07-29T09:46:03Z 1 2020-02-15T06:59:42Z +7769 2005-07-28T06:45:23Z 3250 30 2005-07-30T12:18:23Z 1 2020-02-15T06:59:42Z +7770 2005-07-28T06:49:35Z 1486 507 2005-08-06T08:16:35Z 1 2020-02-15T06:59:42Z +7771 2005-07-28T06:52:12Z 1003 175 2005-07-30T12:48:12Z 1 2020-02-15T06:59:42Z +7772 2005-07-28T06:59:09Z 986 552 2005-08-01T10:49:09Z 1 2020-02-15T06:59:42Z +7773 2005-07-28T07:02:17Z 4143 380 2005-07-30T04:16:17Z 2 2020-02-15T06:59:42Z +7774 2005-07-28T07:03:25Z 3483 259 2005-08-03T02:05:25Z 1 2020-02-15T06:59:42Z +7775 2005-07-28T07:04:36Z 3795 475 2005-08-03T06:36:36Z 2 2020-02-15T06:59:42Z +7776 2005-07-28T07:04:36Z 4170 385 2005-08-01T09:32:36Z 1 2020-02-15T06:59:42Z +7777 2005-07-28T07:04:42Z 4422 287 2005-07-29T01:57:42Z 1 2020-02-15T06:59:42Z +7778 2005-07-28T07:10:11Z 1044 248 2005-08-05T05:09:11Z 1 2020-02-15T06:59:42Z +7779 2005-07-28T07:11:11Z 3663 414 2005-07-30T11:12:11Z 1 2020-02-15T06:59:42Z +7780 2005-07-28T07:11:55Z 3069 236 2005-08-06T05:41:55Z 1 2020-02-15T06:59:42Z +7781 2005-07-28T07:13:20Z 541 539 2005-08-06T05:43:20Z 2 2020-02-15T06:59:42Z +7782 2005-07-28T07:13:40Z 3770 199 2005-08-05T06:50:40Z 1 2020-02-15T06:59:42Z +7783 2005-07-28T07:14:43Z 3817 581 2005-08-01T05:03:43Z 2 2020-02-15T06:59:42Z +7784 2005-07-28T07:15:32Z 3611 505 2005-08-06T05:00:32Z 1 2020-02-15T06:59:42Z +7785 2005-07-28T07:16:11Z 4277 460 2005-08-02T03:43:11Z 1 2020-02-15T06:59:42Z +7786 2005-07-28T07:18:26Z 2285 222 2005-07-29T03:00:26Z 1 2020-02-15T06:59:42Z +7787 2005-07-28T07:19:02Z 2191 203 2005-08-06T02:38:02Z 2 2020-02-15T06:59:42Z +7788 2005-07-28T07:21:55Z 95 487 2005-08-03T06:33:55Z 1 2020-02-15T06:59:42Z +7789 2005-07-28T07:22:07Z 2837 426 2005-08-06T10:47:07Z 1 2020-02-15T06:59:42Z +7790 2005-07-28T07:22:35Z 2327 189 2005-07-30T02:59:35Z 1 2020-02-15T06:59:42Z +7791 2005-07-28T07:22:51Z 822 514 2005-07-30T03:09:51Z 1 2020-02-15T06:59:42Z +7792 2005-07-28T07:24:02Z 3736 236 2005-08-04T11:13:02Z 1 2020-02-15T06:59:42Z +7793 2005-07-28T07:26:14Z 24 32 2005-08-03T07:45:14Z 1 2020-02-15T06:59:42Z +7794 2005-07-28T07:28:03Z 4509 510 2005-08-06T12:32:03Z 2 2020-02-15T06:59:42Z +7795 2005-07-28T07:28:16Z 1278 38 2005-07-31T12:03:16Z 1 2020-02-15T06:59:42Z +7796 2005-07-28T07:39:39Z 622 419 2005-08-02T05:34:39Z 2 2020-02-15T06:59:42Z +7797 2005-07-28T07:41:07Z 4180 370 2005-07-31T04:13:07Z 1 2020-02-15T06:59:42Z +7798 2005-07-28T07:41:59Z 3281 236 2005-07-31T12:36:59Z 1 2020-02-15T06:59:42Z +7799 2005-07-28T07:42:09Z 2163 384 2005-08-02T10:02:09Z 2 2020-02-15T06:59:42Z +7800 2005-07-28T07:50:59Z 3386 499 2005-07-29T07:31:59Z 2 2020-02-15T06:59:42Z +7801 2005-07-28T07:51:56Z 2052 9 2005-07-30T12:18:56Z 1 2020-02-15T06:59:42Z +7802 2005-07-28T07:51:57Z 1108 298 2005-07-29T09:32:57Z 1 2020-02-15T06:59:42Z +7803 2005-07-28T07:52:13Z 3438 449 2005-08-03T13:35:13Z 1 2020-02-15T06:59:42Z +7804 2005-07-28T07:56:00Z 592 249 2005-07-30T10:33:00Z 2 2020-02-15T06:59:42Z +7805 2005-07-28T07:56:41Z 3204 366 2005-08-04T06:53:41Z 1 2020-02-15T06:59:42Z +7806 2005-07-28T07:58:17Z 4317 440 2005-08-06T10:15:17Z 1 2020-02-15T06:59:42Z +7807 2005-07-28T07:58:27Z 2204 504 2005-08-01T02:48:27Z 2 2020-02-15T06:59:42Z +7808 2005-07-28T07:58:56Z 4052 327 2005-08-02T10:49:56Z 1 2020-02-15T06:59:42Z +7809 2005-07-28T07:59:46Z 4150 94 2005-08-02T02:56:46Z 1 2020-02-15T06:59:42Z +7810 2005-07-28T08:00:38Z 30 537 2005-08-02T06:14:38Z 2 2020-02-15T06:59:42Z +7811 2005-07-28T08:06:01Z 3891 347 2005-07-30T10:08:01Z 2 2020-02-15T06:59:42Z +7812 2005-07-28T08:06:52Z 4556 237 2005-07-31T09:57:52Z 2 2020-02-15T06:59:42Z +7813 2005-07-28T08:08:27Z 4216 411 2005-07-30T03:08:27Z 2 2020-02-15T06:59:42Z +7814 2005-07-28T08:09:48Z 2662 258 2005-08-01T13:14:48Z 2 2020-02-15T06:59:42Z +7815 2005-07-28T08:14:11Z 3551 300 2005-07-30T02:34:11Z 2 2020-02-15T06:59:42Z +7816 2005-07-28T08:14:12Z 1422 283 2005-07-30T08:00:12Z 2 2020-02-15T06:59:42Z +7817 2005-07-28T08:20:55Z 600 259 2005-07-30T11:55:55Z 1 2020-02-15T06:59:42Z +7818 2005-07-28T08:25:00Z 1672 301 2005-07-29T14:07:00Z 1 2020-02-15T06:59:42Z +7819 2005-07-28T08:27:14Z 3182 100 2005-08-02T12:34:14Z 2 2020-02-15T06:59:42Z +7820 2005-07-28T08:28:51Z 4475 459 2005-08-05T10:00:51Z 1 2020-02-15T06:59:42Z +7821 2005-07-28T08:31:23Z 1184 433 2005-08-03T05:08:23Z 2 2020-02-15T06:59:42Z +7822 2005-07-28T08:31:45Z 1428 156 2005-07-31T11:06:45Z 1 2020-02-15T06:59:42Z +7823 2005-07-28T08:32:53Z 84 428 2005-08-06T11:59:53Z 1 2020-02-15T06:59:42Z +7824 2005-07-28T08:34:47Z 2241 153 2005-08-05T09:43:47Z 2 2020-02-15T06:59:42Z +7825 2005-07-28T08:34:57Z 4340 348 2005-08-06T02:45:57Z 1 2020-02-15T06:59:42Z +7826 2005-07-28T08:35:51Z 1473 214 2005-08-05T07:57:51Z 2 2020-02-15T06:59:42Z +7827 2005-07-28T08:37:22Z 659 422 2005-07-31T04:27:22Z 1 2020-02-15T06:59:42Z +7828 2005-07-28T08:40:46Z 1710 212 2005-07-30T14:22:46Z 1 2020-02-15T06:59:42Z +7829 2005-07-28T08:43:39Z 111 5 2005-08-04T14:33:39Z 1 2020-02-15T06:59:42Z +7830 2005-07-28T08:43:49Z 4492 144 2005-08-04T09:30:49Z 2 2020-02-15T06:59:42Z +7831 2005-07-28T08:44:21Z 4436 499 2005-07-30T03:25:21Z 2 2020-02-15T06:59:42Z +7832 2005-07-28T08:46:11Z 284 92 2005-08-04T06:55:11Z 1 2020-02-15T06:59:42Z +7833 2005-07-28T08:46:14Z 1166 263 2005-08-04T06:13:14Z 1 2020-02-15T06:59:42Z +7834 2005-07-28T08:46:43Z 4124 278 2005-07-31T07:09:43Z 2 2020-02-15T06:59:42Z +7835 2005-07-28T08:49:39Z 43 547 2005-08-02T07:16:39Z 2 2020-02-15T06:59:42Z +7836 2005-07-28T08:55:27Z 1770 481 2005-08-05T09:35:27Z 1 2020-02-15T06:59:42Z +7837 2005-07-28T08:58:32Z 115 374 2005-07-29T14:11:32Z 1 2020-02-15T06:59:42Z +7838 2005-07-28T09:00:21Z 2222 550 2005-07-29T05:52:21Z 1 2020-02-15T06:59:42Z +7839 2005-07-28T09:01:13Z 914 518 2005-08-04T11:46:13Z 1 2020-02-15T06:59:42Z +7840 2005-07-28T09:03:02Z 2899 482 2005-08-06T06:15:02Z 1 2020-02-15T06:59:42Z +7841 2005-07-28T09:04:45Z 1092 1 2005-07-30T12:37:45Z 2 2020-02-15T06:59:42Z +7842 2005-07-28T09:10:06Z 2447 276 2005-08-04T06:52:06Z 2 2020-02-15T06:59:42Z +7843 2005-07-28T09:10:22Z 3962 75 2005-08-01T11:27:22Z 2 2020-02-15T06:59:42Z +7844 2005-07-28T09:16:19Z 4220 187 2005-08-05T14:06:19Z 2 2020-02-15T06:59:42Z +7845 2005-07-28T09:18:07Z 38 352 2005-08-04T10:23:07Z 2 2020-02-15T06:59:42Z +7846 2005-07-28T09:21:18Z 4201 309 2005-08-06T07:10:18Z 2 2020-02-15T06:59:42Z +7847 2005-07-28T09:23:14Z 3602 323 2005-08-02T11:02:14Z 2 2020-02-15T06:59:42Z +7848 2005-07-28T09:24:31Z 162 509 2005-08-05T05:11:31Z 2 2020-02-15T06:59:42Z +7849 2005-07-28T09:30:02Z 996 423 2005-08-06T12:41:02Z 2 2020-02-15T06:59:42Z +7850 2005-07-28T09:31:13Z 2913 118 2005-08-02T14:06:13Z 2 2020-02-15T06:59:42Z +7851 2005-07-28T09:31:58Z 3596 253 2005-08-04T09:58:58Z 2 2020-02-15T06:59:42Z +7852 2005-07-28T09:34:29Z 3462 123 2005-07-30T05:48:29Z 1 2020-02-15T06:59:42Z +7853 2005-07-28T09:36:38Z 4053 318 2005-07-29T15:01:38Z 1 2020-02-15T06:59:42Z +7854 2005-07-28T09:42:31Z 3531 84 2005-08-02T09:25:31Z 1 2020-02-15T06:59:42Z +7855 2005-07-28T09:43:02Z 2474 288 2005-07-30T12:57:02Z 2 2020-02-15T06:59:42Z +7856 2005-07-28T09:48:24Z 2376 375 2005-07-29T09:49:24Z 2 2020-02-15T06:59:42Z +7857 2005-07-28T09:49:40Z 4027 500 2005-08-01T05:34:40Z 2 2020-02-15T06:59:42Z +7858 2005-07-28T09:50:18Z 992 144 2005-08-05T14:33:18Z 1 2020-02-15T06:59:42Z +7859 2005-07-28T09:57:17Z 3392 547 2005-08-04T06:04:17Z 1 2020-02-15T06:59:42Z +7860 2005-07-28T09:58:02Z 2400 241 2005-08-05T06:04:02Z 1 2020-02-15T06:59:42Z +7861 2005-07-28T10:02:01Z 1781 208 2005-08-06T13:17:01Z 1 2020-02-15T06:59:42Z +7862 2005-07-28T10:02:25Z 2507 299 2005-08-05T13:10:25Z 1 2020-02-15T06:59:42Z +7863 2005-07-28T10:05:46Z 1212 182 2005-07-29T14:42:46Z 1 2020-02-15T06:59:42Z +7864 2005-07-28T10:06:10Z 1238 20 2005-08-04T08:38:10Z 1 2020-02-15T06:59:42Z +7865 2005-07-28T10:07:04Z 2334 148 2005-08-06T08:16:04Z 2 2020-02-15T06:59:42Z +7866 2005-07-28T10:08:01Z 1602 101 2005-08-04T09:29:01Z 2 2020-02-15T06:59:42Z +7867 2005-07-28T10:08:54Z 713 297 2005-07-30T10:26:54Z 2 2020-02-15T06:59:42Z +7868 2005-07-28T10:08:55Z 3589 43 2005-07-30T11:52:55Z 1 2020-02-15T06:59:42Z +7869 2005-07-28T10:13:15Z 3005 298 2005-08-03T12:58:15Z 1 2020-02-15T06:59:42Z +7870 2005-07-28T10:16:03Z 970 240 2005-07-31T16:06:03Z 1 2020-02-15T06:59:42Z +7871 2005-07-28T10:16:37Z 3990 491 2005-08-05T11:24:37Z 2 2020-02-15T06:59:42Z +7872 2005-07-28T10:18:16Z 826 66 2005-07-31T10:57:16Z 1 2020-02-15T06:59:42Z +7873 2005-07-28T10:19:46Z 2947 82 2005-07-31T04:43:46Z 2 2020-02-15T06:59:42Z +7874 2005-07-28T10:21:52Z 2981 86 2005-08-06T16:19:52Z 1 2020-02-15T06:59:42Z +7875 2005-07-28T10:23:48Z 3693 504 2005-08-02T12:09:48Z 1 2020-02-15T06:59:42Z +7876 2005-07-28T10:24:22Z 3563 577 2005-08-04T07:15:22Z 1 2020-02-15T06:59:42Z +7877 2005-07-28T10:25:36Z 2576 65 2005-08-05T12:46:36Z 1 2020-02-15T06:59:42Z +7878 2005-07-28T10:27:10Z 1564 141 2005-07-29T11:22:10Z 1 2020-02-15T06:59:42Z +7879 2005-07-28T10:27:46Z 1969 125 2005-07-31T07:48:46Z 1 2020-02-15T06:59:42Z +7880 2005-07-28T10:30:37Z 3670 182 2005-08-03T08:05:37Z 2 2020-02-15T06:59:42Z +7881 2005-07-28T10:33:22Z 533 249 2005-08-02T12:10:22Z 1 2020-02-15T06:59:42Z +7882 2005-07-28T10:33:42Z 3922 516 2005-07-29T13:49:42Z 1 2020-02-15T06:59:42Z +7883 2005-07-28T10:37:20Z 447 526 2005-08-02T05:08:20Z 1 2020-02-15T06:59:42Z +7884 2005-07-28T10:37:24Z 3871 502 2005-07-31T10:31:24Z 1 2020-02-15T06:59:42Z +7885 2005-07-28T10:37:41Z 4294 260 2005-08-05T07:56:41Z 1 2020-02-15T06:59:42Z +7886 2005-07-28T10:37:55Z 237 352 2005-08-04T13:22:55Z 2 2020-02-15T06:59:42Z +7887 2005-07-28T10:40:12Z 2820 253 2005-08-02T06:09:12Z 1 2020-02-15T06:59:42Z +7888 2005-07-28T10:40:24Z 545 378 2005-08-01T16:18:24Z 1 2020-02-15T06:59:42Z +7889 2005-07-28T10:43:21Z 3123 416 2005-07-30T09:11:21Z 1 2020-02-15T06:59:42Z +7890 2005-07-28T10:43:40Z 3443 553 2005-07-31T06:07:40Z 1 2020-02-15T06:59:42Z +7891 2005-07-28T10:43:56Z 3637 560 2005-08-05T14:04:56Z 2 2020-02-15T06:59:42Z +7892 2005-07-28T10:46:58Z 2717 397 2005-07-30T16:03:58Z 1 2020-02-15T06:59:42Z +7893 2005-07-28T10:49:27Z 3058 479 2005-08-02T06:46:27Z 1 2020-02-15T06:59:42Z +7894 2005-07-28T10:53:58Z 3532 330 2005-08-02T13:42:58Z 2 2020-02-15T06:59:42Z +7895 2005-07-28T10:57:15Z 900 67 2005-08-02T15:10:15Z 2 2020-02-15T06:59:42Z +7896 2005-07-28T11:00:58Z 3561 389 2005-08-04T14:30:58Z 2 2020-02-15T06:59:42Z +7897 2005-07-28T11:01:51Z 1396 75 2005-07-31T13:13:51Z 1 2020-02-15T06:59:42Z +7898 2005-07-28T11:08:22Z 2680 499 2005-08-03T12:28:22Z 1 2020-02-15T06:59:42Z +7899 2005-07-28T11:10:12Z 4130 452 2005-08-02T13:20:12Z 2 2020-02-15T06:59:42Z +7900 2005-07-28T11:11:33Z 2781 154 2005-08-05T06:29:33Z 2 2020-02-15T06:59:42Z +7901 2005-07-28T11:12:12Z 4435 280 2005-08-01T08:13:12Z 1 2020-02-15T06:59:42Z +7902 2005-07-28T11:14:19Z 3066 356 2005-07-30T09:01:19Z 2 2020-02-15T06:59:42Z +7903 2005-07-28T11:20:36Z 2767 588 2005-07-31T09:16:36Z 1 2020-02-15T06:59:42Z +7904 2005-07-28T11:25:39Z 316 477 2005-08-06T08:22:39Z 2 2020-02-15T06:59:42Z +7905 2005-07-28T11:26:57Z 4287 455 2005-08-02T06:14:57Z 1 2020-02-15T06:59:42Z +7906 2005-07-28T11:31:42Z 1216 85 2005-08-01T11:56:42Z 2 2020-02-15T06:59:42Z +7907 2005-07-28T11:32:00Z 3252 433 2005-07-30T15:27:00Z 1 2020-02-15T06:59:42Z +7908 2005-07-28T11:32:57Z 3646 360 2005-08-03T13:30:57Z 2 2020-02-15T06:59:42Z +7909 2005-07-28T11:38:08Z 3355 210 2005-07-29T13:54:08Z 1 2020-02-15T06:59:42Z +7910 2005-07-28T11:44:56Z 2044 480 2005-08-05T14:37:56Z 2 2020-02-15T06:59:42Z +7911 2005-07-28T11:46:45Z 390 3 2005-07-29T07:19:45Z 1 2020-02-15T06:59:42Z +7912 2005-07-28T11:46:58Z 745 127 2005-08-05T12:50:58Z 1 2020-02-15T06:59:42Z +7913 2005-07-28T11:47:23Z 4001 459 2005-08-05T06:36:23Z 1 2020-02-15T06:59:42Z +7914 2005-07-28T11:48:08Z 2796 469 2005-07-30T14:14:08Z 1 2020-02-15T06:59:42Z +7915 2005-07-28T11:49:46Z 2088 186 2005-08-04T12:21:46Z 2 2020-02-15T06:59:42Z +7916 2005-07-28T11:49:53Z 3877 13 2005-07-29T15:01:53Z 1 2020-02-15T06:59:42Z +7917 2005-07-28T11:56:57Z 2071 416 2005-07-29T14:06:57Z 1 2020-02-15T06:59:42Z +7918 2005-07-28T11:58:53Z 63 473 2005-08-04T12:08:53Z 2 2020-02-15T06:59:42Z +7919 2005-07-28T11:59:45Z 2138 36 2005-08-06T11:19:45Z 1 2020-02-15T06:59:42Z +7920 2005-07-28T12:01:19Z 66 48 2005-08-05T07:08:19Z 1 2020-02-15T06:59:42Z +7921 2005-07-28T12:02:46Z 116 100 2005-08-01T12:08:46Z 2 2020-02-15T06:59:42Z +7922 2005-07-28T12:05:25Z 817 125 2005-08-02T12:13:25Z 2 2020-02-15T06:59:42Z +7923 2005-07-28T12:08:29Z 2273 458 2005-08-04T12:30:29Z 1 2020-02-15T06:59:42Z +7924 2005-07-28T12:08:53Z 656 97 2005-07-30T06:45:53Z 2 2020-02-15T06:59:42Z +7925 2005-07-28T12:10:02Z 1763 500 2005-08-02T15:50:02Z 1 2020-02-15T06:59:42Z +7926 2005-07-28T12:13:02Z 180 78 2005-08-05T08:54:02Z 1 2020-02-15T06:59:42Z +7927 2005-07-28T12:13:42Z 1263 27 2005-08-05T12:02:42Z 1 2020-02-15T06:59:42Z +7928 2005-07-28T12:15:51Z 912 473 2005-08-05T06:34:51Z 1 2020-02-15T06:59:42Z +7929 2005-07-28T12:16:40Z 2652 307 2005-07-31T13:09:40Z 2 2020-02-15T06:59:42Z +7930 2005-07-28T12:21:08Z 4181 320 2005-07-30T11:56:08Z 1 2020-02-15T06:59:42Z +7931 2005-07-28T12:23:41Z 1923 326 2005-08-06T09:49:41Z 2 2020-02-15T06:59:42Z +7932 2005-07-28T12:24:54Z 3738 462 2005-07-30T11:33:54Z 1 2020-02-15T06:59:42Z +7933 2005-07-28T12:27:27Z 3175 297 2005-07-29T10:34:27Z 2 2020-02-15T06:59:42Z +7934 2005-07-28T12:33:10Z 2642 332 2005-08-04T07:40:10Z 2 2020-02-15T06:59:42Z +7935 2005-07-28T12:33:17Z 3664 462 2005-08-04T14:40:17Z 2 2020-02-15T06:59:42Z +7936 2005-07-28T12:33:21Z 563 520 2005-07-30T13:31:21Z 2 2020-02-15T06:59:42Z +7937 2005-07-28T12:38:22Z 3944 323 2005-07-29T09:19:22Z 1 2020-02-15T06:59:42Z +7938 2005-07-28T12:39:11Z 2579 114 2005-08-04T16:56:11Z 1 2020-02-15T06:59:42Z +7939 2005-07-28T12:45:47Z 2004 37 2005-07-30T18:32:47Z 2 2020-02-15T06:59:42Z +7940 2005-07-28T12:46:47Z 901 409 2005-07-29T06:46:47Z 2 2020-02-15T06:59:42Z +7941 2005-07-28T12:47:20Z 439 566 2005-08-01T08:46:20Z 1 2020-02-15T06:59:42Z +7942 2005-07-28T12:49:44Z 1636 56 2005-07-31T18:07:44Z 2 2020-02-15T06:59:42Z +7943 2005-07-28T12:50:55Z 2914 346 2005-08-04T11:29:55Z 2 2020-02-15T06:59:42Z +7944 2005-07-28T12:51:22Z 3148 504 2005-07-30T12:19:22Z 1 2020-02-15T06:59:42Z +7945 2005-07-28T12:53:58Z 3326 316 2005-08-03T14:04:58Z 1 2020-02-15T06:59:42Z +7946 2005-07-28T13:01:22Z 99 90 2005-08-03T15:27:22Z 2 2020-02-15T06:59:42Z +7947 2005-07-28T13:05:50Z 2504 279 2005-08-02T11:16:50Z 2 2020-02-15T06:59:42Z +7948 2005-07-28T13:06:16Z 215 589 2005-08-05T08:38:16Z 1 2020-02-15T06:59:42Z +7949 2005-07-28T13:07:24Z 2145 487 2005-08-02T09:41:24Z 1 2020-02-15T06:59:42Z +7950 2005-07-28T13:21:00Z 2286 122 2005-08-05T18:47:00Z 2 2020-02-15T06:59:42Z +7951 2005-07-28T13:21:16Z 3979 237 2005-08-06T08:21:16Z 1 2020-02-15T06:59:42Z +7952 2005-07-28T13:23:49Z 3313 158 2005-08-01T08:50:49Z 1 2020-02-15T06:59:42Z +7953 2005-07-28T13:24:32Z 4471 319 2005-08-05T16:09:32Z 2 2020-02-15T06:59:42Z +7954 2005-07-28T13:25:05Z 3735 145 2005-07-29T18:50:05Z 2 2020-02-15T06:59:42Z +7955 2005-07-28T13:31:36Z 1519 522 2005-07-30T10:03:36Z 1 2020-02-15T06:59:42Z +7956 2005-07-28T13:32:17Z 4335 118 2005-08-06T14:51:17Z 2 2020-02-15T06:59:42Z +7957 2005-07-28T13:34:08Z 1623 78 2005-08-05T07:58:08Z 1 2020-02-15T06:59:42Z +7958 2005-07-28T13:34:34Z 421 593 2005-07-29T16:03:34Z 1 2020-02-15T06:59:42Z +7959 2005-07-28T13:43:20Z 1549 178 2005-08-02T12:13:20Z 2 2020-02-15T06:59:42Z +7960 2005-07-28T13:47:08Z 2718 324 2005-08-03T15:17:08Z 1 2020-02-15T06:59:42Z +7961 2005-07-28T13:47:21Z 3284 45 2005-08-01T09:33:21Z 1 2020-02-15T06:59:42Z +7962 2005-07-28T13:48:09Z 1746 126 2005-08-03T19:21:09Z 1 2020-02-15T06:59:42Z +7963 2005-07-28T13:48:38Z 921 247 2005-08-06T19:37:38Z 2 2020-02-15T06:59:42Z +7964 2005-07-28T13:49:58Z 2528 574 2005-08-03T10:03:58Z 2 2020-02-15T06:59:42Z +7965 2005-07-28T13:52:57Z 3671 134 2005-07-29T14:54:57Z 1 2020-02-15T06:59:42Z +7966 2005-07-28T13:53:54Z 2514 91 2005-08-06T15:32:54Z 1 2020-02-15T06:59:42Z +7967 2005-07-28T13:56:51Z 2040 187 2005-08-03T19:38:51Z 1 2020-02-15T06:59:42Z +7968 2005-07-28T13:57:35Z 3865 597 2005-08-04T13:40:35Z 1 2020-02-15T06:59:42Z +7969 2005-07-28T13:57:37Z 2224 123 2005-08-04T19:31:37Z 1 2020-02-15T06:59:42Z +7970 2005-07-28T13:58:38Z 998 507 2005-08-02T12:27:38Z 1 2020-02-15T06:59:42Z +7971 2005-07-28T14:00:47Z 1910 445 2005-08-02T10:01:47Z 1 2020-02-15T06:59:42Z +7972 2005-07-28T14:07:46Z 2930 269 2005-08-01T11:28:46Z 2 2020-02-15T06:59:42Z +7973 2005-07-28T14:10:06Z 3936 339 2005-07-29T11:26:06Z 2 2020-02-15T06:59:42Z +7974 2005-07-28T14:11:57Z 2442 380 2005-08-02T19:25:57Z 2 2020-02-15T06:59:42Z +7975 2005-07-28T14:12:47Z 2565 211 2005-08-05T09:18:47Z 1 2020-02-15T06:59:42Z +7976 2005-07-28T14:13:24Z 2296 205 2005-08-05T09:01:24Z 1 2020-02-15T06:59:42Z +7977 2005-07-28T14:15:54Z 3162 389 2005-08-01T18:58:54Z 2 2020-02-15T06:59:42Z +7978 2005-07-28T14:16:14Z 508 431 2005-08-01T12:53:14Z 2 2020-02-15T06:59:42Z +7979 2005-07-28T14:16:30Z 3303 94 2005-08-03T09:39:30Z 2 2020-02-15T06:59:42Z +7980 2005-07-28T14:16:49Z 1019 329 2005-08-05T09:20:49Z 1 2020-02-15T06:59:42Z +7981 2005-07-28T14:18:25Z 90 392 2005-08-04T15:21:25Z 2 2020-02-15T06:59:42Z +7982 2005-07-28T14:19:59Z 668 71 2005-07-29T14:09:59Z 2 2020-02-15T06:59:42Z +7983 2005-07-28T14:23:01Z 1836 115 2005-07-29T11:51:01Z 1 2020-02-15T06:59:42Z +7984 2005-07-28T14:27:51Z 2893 208 2005-08-04T17:34:51Z 1 2020-02-15T06:59:42Z +7985 2005-07-28T14:29:01Z 4022 388 2005-08-03T17:20:01Z 2 2020-02-15T06:59:42Z +7986 2005-07-28T14:30:13Z 1283 395 2005-08-05T09:35:13Z 1 2020-02-15T06:59:42Z +7987 2005-07-28T14:36:52Z 288 443 2005-08-05T16:49:52Z 2 2020-02-15T06:59:42Z +7988 2005-07-28T14:37:18Z 2906 517 2005-08-05T10:53:18Z 1 2020-02-15T06:59:42Z +7989 2005-07-28T14:39:05Z 3196 149 2005-08-05T13:58:05Z 2 2020-02-15T06:59:42Z +7990 2005-07-28T14:43:08Z 188 232 2005-08-01T10:51:08Z 2 2020-02-15T06:59:42Z +7991 2005-07-28T14:45:45Z 1133 59 2005-07-29T15:05:45Z 2 2020-02-15T06:59:42Z +7992 2005-07-28T14:53:06Z 1851 33 2005-07-29T18:17:06Z 1 2020-02-15T06:59:42Z +7993 2005-07-28T14:56:41Z 2926 353 2005-08-01T17:01:41Z 2 2020-02-15T06:59:42Z +7994 2005-07-28T14:56:54Z 2431 21 2005-07-30T09:56:54Z 2 2020-02-15T06:59:42Z +7995 2005-07-28T15:00:09Z 536 89 2005-08-01T12:33:09Z 2 2020-02-15T06:59:42Z +7996 2005-07-28T15:00:49Z 2171 408 2005-08-04T20:58:49Z 2 2020-02-15T06:59:42Z +7997 2005-07-28T15:02:25Z 1845 591 2005-08-04T14:35:25Z 1 2020-02-15T06:59:42Z +7998 2005-07-28T15:08:48Z 1397 598 2005-07-31T16:14:48Z 2 2020-02-15T06:59:42Z +7999 2005-07-28T15:10:14Z 2750 170 2005-08-06T17:08:14Z 2 2020-02-15T06:59:42Z +8000 2005-07-28T15:10:25Z 1644 212 2005-08-06T19:15:25Z 1 2020-02-15T06:59:42Z +8001 2005-07-28T15:10:55Z 2570 10 2005-08-05T18:23:55Z 1 2020-02-15T06:59:42Z +8002 2005-07-28T15:11:00Z 22 449 2005-07-31T15:46:00Z 2 2020-02-15T06:59:42Z +8003 2005-07-28T15:11:27Z 2775 89 2005-08-04T18:35:27Z 1 2020-02-15T06:59:42Z +8004 2005-07-28T15:14:07Z 4428 393 2005-07-30T19:32:07Z 2 2020-02-15T06:59:42Z +8005 2005-07-28T15:15:11Z 670 488 2005-07-29T14:54:11Z 1 2020-02-15T06:59:42Z +8006 2005-07-28T15:15:41Z 3959 109 2005-08-05T19:29:41Z 2 2020-02-15T06:59:42Z +8007 2005-07-28T15:22:27Z 1942 525 2005-07-30T13:06:27Z 2 2020-02-15T06:59:42Z +8008 2005-07-28T15:25:55Z 2093 41 2005-08-04T13:16:55Z 1 2020-02-15T06:59:42Z +8009 2005-07-28T15:25:58Z 337 372 2005-08-04T10:16:58Z 2 2020-02-15T06:59:42Z +8010 2005-07-28T15:26:20Z 68 467 2005-08-04T18:39:20Z 2 2020-02-15T06:59:42Z +8011 2005-07-28T15:26:39Z 4274 497 2005-07-30T13:59:39Z 1 2020-02-15T06:59:42Z +8012 2005-07-28T15:29:00Z 1513 343 2005-08-05T12:28:00Z 2 2020-02-15T06:59:42Z +8013 2005-07-28T15:30:26Z 2074 403 2005-08-05T16:29:26Z 1 2020-02-15T06:59:42Z +8014 2005-07-28T15:32:07Z 2339 11 2005-07-31T20:52:07Z 1 2020-02-15T06:59:42Z +8015 2005-07-28T15:33:03Z 1814 23 2005-07-30T15:32:03Z 2 2020-02-15T06:59:42Z +8016 2005-07-28T15:35:41Z 516 391 2005-07-30T20:06:41Z 2 2020-02-15T06:59:42Z +8017 2005-07-28T15:35:41Z 1764 328 2005-08-01T19:12:41Z 1 2020-02-15T06:59:42Z +8018 2005-07-28T15:36:48Z 4129 377 2005-08-06T20:04:48Z 1 2020-02-15T06:59:42Z +8019 2005-07-28T15:37:43Z 1844 84 2005-08-04T15:40:43Z 2 2020-02-15T06:59:42Z +8020 2005-07-28T15:43:32Z 4459 498 2005-08-05T12:19:32Z 1 2020-02-15T06:59:42Z +8021 2005-07-28T15:45:24Z 1920 501 2005-08-04T10:49:24Z 1 2020-02-15T06:59:42Z +8022 2005-07-28T15:48:56Z 294 314 2005-08-06T13:40:56Z 1 2020-02-15T06:59:42Z +8023 2005-07-28T15:53:29Z 2133 411 2005-07-31T12:26:29Z 1 2020-02-15T06:59:42Z +8024 2005-07-28T15:55:40Z 1735 90 2005-08-02T09:56:40Z 1 2020-02-15T06:59:42Z +8025 2005-07-28T16:03:27Z 2932 421 2005-08-03T21:58:27Z 2 2020-02-15T06:59:42Z +8026 2005-07-28T16:05:38Z 4225 511 2005-07-29T21:28:38Z 2 2020-02-15T06:59:42Z +8027 2005-07-28T16:09:57Z 1335 436 2005-08-05T18:17:57Z 1 2020-02-15T06:59:42Z +8028 2005-07-28T16:11:15Z 2715 137 2005-08-05T15:11:15Z 1 2020-02-15T06:59:42Z +8029 2005-07-28T16:11:21Z 4273 61 2005-08-05T13:52:21Z 1 2020-02-15T06:59:42Z +8030 2005-07-28T16:12:53Z 2633 30 2005-07-31T17:15:53Z 1 2020-02-15T06:59:42Z +8031 2005-07-28T16:15:49Z 2196 40 2005-08-02T18:27:49Z 2 2020-02-15T06:59:42Z +8032 2005-07-28T16:17:00Z 431 230 2005-07-29T13:32:00Z 1 2020-02-15T06:59:42Z +8033 2005-07-28T16:18:23Z 4268 1 2005-07-30T17:56:23Z 1 2020-02-15T06:59:42Z +8034 2005-07-28T16:20:26Z 1997 502 2005-08-04T19:11:26Z 2 2020-02-15T06:59:42Z +8035 2005-07-28T16:23:01Z 1503 14 2005-08-05T10:52:01Z 1 2020-02-15T06:59:42Z +8036 2005-07-28T16:27:43Z 2741 412 2005-08-01T13:41:43Z 2 2020-02-15T06:59:42Z +8037 2005-07-28T16:31:20Z 3973 409 2005-07-31T12:18:20Z 2 2020-02-15T06:59:42Z +8038 2005-07-28T16:32:55Z 1225 30 2005-07-30T21:08:55Z 1 2020-02-15T06:59:42Z +8039 2005-07-28T16:35:16Z 1996 203 2005-07-30T14:49:16Z 1 2020-02-15T06:59:42Z +8040 2005-07-28T16:39:43Z 4543 163 2005-08-02T20:00:43Z 2 2020-02-15T06:59:42Z +8041 2005-07-28T16:39:56Z 763 357 2005-07-30T18:44:56Z 1 2020-02-15T06:59:42Z +8042 2005-07-28T16:45:11Z 4325 14 2005-08-04T17:16:11Z 2 2020-02-15T06:59:42Z +8043 2005-07-28T16:45:44Z 208 577 2005-08-01T12:26:44Z 1 2020-02-15T06:59:42Z +8044 2005-07-28T16:49:12Z 879 442 2005-08-02T22:41:12Z 1 2020-02-15T06:59:42Z +8045 2005-07-28T16:49:38Z 3427 368 2005-08-03T15:42:38Z 1 2020-02-15T06:59:42Z +8046 2005-07-28T16:49:41Z 2873 120 2005-07-31T21:33:41Z 1 2020-02-15T06:59:42Z +8047 2005-07-28T16:49:43Z 2936 292 2005-08-03T14:48:43Z 2 2020-02-15T06:59:42Z +8048 2005-07-28T16:50:26Z 2721 182 2005-08-06T19:20:26Z 1 2020-02-15T06:59:42Z +8049 2005-07-28T16:51:58Z 673 42 2005-07-31T22:18:58Z 1 2020-02-15T06:59:42Z +8050 2005-07-28T16:55:47Z 1864 488 2005-08-02T13:20:47Z 1 2020-02-15T06:59:42Z +8051 2005-07-28T16:56:16Z 4405 192 2005-07-29T22:48:16Z 1 2020-02-15T06:59:42Z +8052 2005-07-28T16:57:31Z 2460 166 2005-08-03T18:03:31Z 2 2020-02-15T06:59:42Z +8053 2005-07-28T16:59:41Z 1511 526 2005-08-03T22:28:41Z 2 2020-02-15T06:59:42Z +8054 2005-07-28T17:02:18Z 1062 225 2005-08-06T11:55:18Z 1 2020-02-15T06:59:42Z +8055 2005-07-28T17:02:32Z 4162 304 2005-07-31T22:05:32Z 2 2020-02-15T06:59:42Z +8056 2005-07-28T17:04:15Z 4018 589 2005-08-03T19:11:15Z 2 2020-02-15T06:59:42Z +8057 2005-07-28T17:07:13Z 4177 483 2005-08-03T16:25:13Z 1 2020-02-15T06:59:42Z +8058 2005-07-28T17:07:49Z 2148 404 2005-08-03T22:57:49Z 1 2020-02-15T06:59:42Z +8059 2005-07-28T17:09:59Z 2611 372 2005-07-31T15:42:59Z 2 2020-02-15T06:59:42Z +8060 2005-07-28T17:10:02Z 3765 577 2005-08-05T17:11:02Z 1 2020-02-15T06:59:42Z +8061 2005-07-28T17:12:53Z 650 467 2005-08-05T13:56:53Z 2 2020-02-15T06:59:42Z +8062 2005-07-28T17:15:06Z 1384 317 2005-07-30T16:56:06Z 2 2020-02-15T06:59:42Z +8063 2005-07-28T17:15:11Z 935 163 2005-08-04T16:45:11Z 1 2020-02-15T06:59:42Z +8064 2005-07-28T17:15:38Z 3788 488 2005-08-04T18:04:38Z 2 2020-02-15T06:59:42Z +8065 2005-07-28T17:15:48Z 413 220 2005-08-04T15:49:48Z 2 2020-02-15T06:59:42Z +8066 2005-07-28T17:20:09Z 3208 462 2005-07-31T18:36:09Z 2 2020-02-15T06:59:42Z +8067 2005-07-28T17:20:17Z 3923 209 2005-07-29T21:55:17Z 1 2020-02-15T06:59:42Z +8068 2005-07-28T17:22:28Z 209 216 2005-07-29T12:24:28Z 2 2020-02-15T06:59:42Z +8069 2005-07-28T17:23:46Z 2822 178 2005-07-30T16:19:46Z 1 2020-02-15T06:59:42Z +8070 2005-07-28T17:26:56Z 1606 89 2005-08-01T17:33:56Z 1 2020-02-15T06:59:42Z +8071 2005-07-28T17:27:48Z 2582 131 2005-08-03T11:48:48Z 2 2020-02-15T06:59:42Z +8072 2005-07-28T17:27:59Z 2347 99 2005-07-30T19:08:59Z 1 2020-02-15T06:59:42Z +8073 2005-07-28T17:29:02Z 630 314 2005-08-01T22:17:02Z 2 2020-02-15T06:59:42Z +8074 2005-07-28T17:33:39Z 1558 1 2005-07-29T20:17:39Z 1 2020-02-15T06:59:42Z +8075 2005-07-28T17:37:28Z 2175 61 2005-07-29T11:56:28Z 2 2020-02-15T06:59:42Z +8076 2005-07-28T17:45:58Z 214 17 2005-08-04T18:07:58Z 2 2020-02-15T06:59:42Z +8077 2005-07-28T17:54:35Z 3253 122 2005-07-29T19:28:35Z 2 2020-02-15T06:59:42Z +8078 2005-07-28T17:54:42Z 3839 407 2005-07-30T18:18:42Z 2 2020-02-15T06:59:42Z +8079 2005-07-28T17:58:36Z 3564 432 2005-07-29T14:48:36Z 2 2020-02-15T06:59:42Z +8080 2005-07-28T18:05:06Z 3035 406 2005-07-29T22:44:06Z 2 2020-02-15T06:59:42Z +8081 2005-07-28T18:06:46Z 4404 362 2005-08-04T18:54:46Z 1 2020-02-15T06:59:42Z +8082 2005-07-28T18:08:02Z 3089 423 2005-08-04T14:33:02Z 2 2020-02-15T06:59:42Z +8083 2005-07-28T18:09:48Z 2187 30 2005-08-04T21:47:48Z 2 2020-02-15T06:59:42Z +8084 2005-07-28T18:11:58Z 911 571 2005-08-03T23:41:58Z 2 2020-02-15T06:59:42Z +8085 2005-07-28T18:13:15Z 3059 552 2005-08-04T13:45:15Z 2 2020-02-15T06:59:42Z +8086 2005-07-28T18:17:14Z 1182 3 2005-07-30T18:22:14Z 2 2020-02-15T06:59:42Z +8087 2005-07-28T18:21:16Z 1913 295 2005-08-03T12:38:16Z 2 2020-02-15T06:59:42Z +8088 2005-07-28T18:23:49Z 2590 343 2005-08-06T23:25:49Z 2 2020-02-15T06:59:42Z +8089 2005-07-28T18:26:47Z 1414 50 2005-08-03T21:28:47Z 1 2020-02-15T06:59:42Z +8090 2005-07-28T18:27:29Z 1336 387 2005-08-02T14:08:29Z 2 2020-02-15T06:59:42Z +8091 2005-07-28T18:27:29Z 3025 126 2005-08-01T19:45:29Z 2 2020-02-15T06:59:42Z +8092 2005-07-28T18:28:07Z 2034 167 2005-07-30T19:17:07Z 2 2020-02-15T06:59:42Z +8093 2005-07-28T18:29:16Z 1427 533 2005-08-05T21:49:16Z 1 2020-02-15T06:59:42Z +8094 2005-07-28T18:30:28Z 4276 432 2005-08-05T17:37:28Z 2 2020-02-15T06:59:42Z +8095 2005-07-28T18:32:40Z 2685 42 2005-08-06T23:45:40Z 1 2020-02-15T06:59:42Z +8096 2005-07-28T18:32:46Z 502 506 2005-08-06T15:00:46Z 1 2020-02-15T06:59:42Z +8097 2005-07-28T18:32:49Z 2719 436 2005-08-06T16:09:49Z 1 2020-02-15T06:59:42Z +8098 2005-07-28T18:34:20Z 1757 41 2005-07-31T19:07:20Z 2 2020-02-15T06:59:42Z +8099 2005-07-28T18:35:12Z 3694 36 2005-07-30T15:44:12Z 2 2020-02-15T06:59:42Z +8100 2005-07-28T18:43:11Z 2859 11 2005-08-02T15:56:11Z 2 2020-02-15T06:59:42Z +8101 2005-07-28T18:47:23Z 731 6 2005-07-31T16:23:23Z 1 2020-02-15T06:59:42Z +8102 2005-07-28T18:49:43Z 4505 237 2005-08-03T23:04:43Z 2 2020-02-15T06:59:42Z +8103 2005-07-28T18:50:14Z 4472 397 2005-08-04T16:53:14Z 1 2020-02-15T06:59:42Z +8104 2005-07-28T18:59:36Z 1080 533 2005-08-03T22:05:36Z 2 2020-02-15T06:59:42Z +8105 2005-07-28T18:59:46Z 1316 314 2005-07-29T22:51:46Z 1 2020-02-15T06:59:42Z +8106 2005-07-28T19:02:46Z 963 137 2005-07-30T20:48:46Z 2 2020-02-15T06:59:42Z +8107 2005-07-28T19:03:16Z 1318 518 2005-08-05T17:18:16Z 2 2020-02-15T06:59:42Z +8108 2005-07-28T19:07:38Z 1600 295 2005-08-03T15:13:38Z 2 2020-02-15T06:59:42Z +8109 2005-07-28T19:07:44Z 652 407 2005-07-31T14:59:44Z 1 2020-02-15T06:59:42Z +8110 2005-07-28T19:07:45Z 1244 225 2005-08-04T22:12:45Z 1 2020-02-15T06:59:42Z +8111 2005-07-28T19:10:03Z 3226 148 2005-07-29T22:25:03Z 1 2020-02-15T06:59:42Z +8112 2005-07-28T19:11:07Z 2444 528 2005-08-03T18:41:07Z 1 2020-02-15T06:59:42Z +8113 2005-07-28T19:14:00Z 4269 541 2005-08-06T00:05:00Z 2 2020-02-15T06:59:42Z +8114 2005-07-28T19:14:06Z 815 509 2005-08-05T13:16:06Z 1 2020-02-15T06:59:42Z +8115 2005-07-28T19:14:17Z 2080 106 2005-08-03T14:58:17Z 2 2020-02-15T06:59:42Z +8116 2005-07-28T19:20:07Z 4497 1 2005-07-29T22:54:07Z 1 2020-02-15T06:59:42Z +8117 2005-07-28T19:20:16Z 1502 300 2005-08-05T23:55:16Z 1 2020-02-15T06:59:42Z +8118 2005-07-28T19:22:22Z 331 566 2005-08-01T22:13:22Z 1 2020-02-15T06:59:42Z +8119 2005-07-28T19:23:15Z 1542 398 2005-08-04T15:53:15Z 2 2020-02-15T06:59:42Z +8120 2005-07-28T19:24:24Z 3993 235 2005-07-31T14:31:24Z 2 2020-02-15T06:59:42Z +8121 2005-07-28T19:25:45Z 2229 363 2005-08-02T13:30:45Z 2 2020-02-15T06:59:42Z +8122 2005-07-28T19:27:37Z 2141 18 2005-07-29T19:48:37Z 2 2020-02-15T06:59:42Z +8123 2005-07-28T19:28:23Z 2256 138 2005-08-04T19:41:23Z 1 2020-02-15T06:59:42Z +8124 2005-07-28T19:28:58Z 1187 357 2005-07-31T00:45:58Z 1 2020-02-15T06:59:42Z +8125 2005-07-28T19:31:48Z 4330 96 2005-07-30T01:09:48Z 1 2020-02-15T06:59:42Z +8126 2005-07-28T19:32:41Z 719 537 2005-08-05T00:33:41Z 2 2020-02-15T06:59:42Z +8127 2005-07-28T19:45:19Z 4265 20 2005-07-31T22:07:19Z 2 2020-02-15T06:59:42Z +8128 2005-07-28T19:46:06Z 2872 71 2005-08-06T16:10:06Z 2 2020-02-15T06:59:42Z +8129 2005-07-28T19:47:02Z 2546 345 2005-07-31T21:33:02Z 2 2020-02-15T06:59:42Z +8130 2005-07-28T19:48:15Z 4055 499 2005-08-05T14:18:15Z 2 2020-02-15T06:59:42Z +8131 2005-07-28T19:55:21Z 437 281 2005-08-02T21:52:21Z 2 2020-02-15T06:59:42Z +8132 2005-07-28T19:57:31Z 1303 562 2005-08-02T22:16:31Z 2 2020-02-15T06:59:42Z +8133 2005-07-28T20:01:06Z 849 461 2005-08-01T20:01:06Z 1 2020-02-15T06:59:42Z +8134 2005-07-28T20:01:23Z 1695 41 2005-08-03T01:00:23Z 2 2020-02-15T06:59:42Z +8135 2005-07-28T20:03:25Z 1339 164 2005-08-03T01:28:25Z 2 2020-02-15T06:59:42Z +8136 2005-07-28T20:05:48Z 3434 429 2005-08-01T20:31:48Z 2 2020-02-15T06:59:42Z +8137 2005-07-28T20:07:18Z 3188 312 2005-08-03T17:41:18Z 1 2020-02-15T06:59:42Z +8138 2005-07-28T20:12:17Z 1258 371 2005-08-01T15:21:17Z 2 2020-02-15T06:59:42Z +8139 2005-07-28T20:16:30Z 3651 177 2005-08-03T18:00:30Z 2 2020-02-15T06:59:42Z +8140 2005-07-28T20:17:50Z 4270 119 2005-07-30T18:07:50Z 1 2020-02-15T06:59:42Z +8141 2005-07-28T20:21:19Z 361 523 2005-07-30T19:16:19Z 2 2020-02-15T06:59:42Z +8142 2005-07-28T20:21:54Z 1075 322 2005-07-31T18:39:54Z 2 2020-02-15T06:59:42Z +8143 2005-07-28T20:23:11Z 3629 429 2005-08-01T18:17:11Z 1 2020-02-15T06:59:42Z +8144 2005-07-28T20:30:55Z 3556 320 2005-07-31T18:10:55Z 2 2020-02-15T06:59:42Z +8145 2005-07-28T20:34:41Z 937 198 2005-08-05T15:28:41Z 2 2020-02-15T06:59:42Z +8146 2005-07-28T20:37:36Z 2430 476 2005-07-31T16:03:36Z 2 2020-02-15T06:59:42Z +8147 2005-07-28T20:37:56Z 628 228 2005-07-30T18:26:56Z 1 2020-02-15T06:59:42Z +8148 2005-07-28T20:39:47Z 537 347 2005-08-02T16:29:47Z 1 2020-02-15T06:59:42Z +8149 2005-07-28T20:48:12Z 1790 591 2005-08-01T20:07:12Z 2 2020-02-15T06:59:42Z +8150 2005-07-28T20:50:41Z 3489 497 2005-08-02T00:43:41Z 1 2020-02-15T06:59:42Z +8151 2005-07-28T20:50:52Z 4370 495 2005-07-31T14:50:52Z 1 2020-02-15T06:59:42Z +8152 2005-07-28T20:53:05Z 2557 46 2005-08-06T20:03:05Z 2 2020-02-15T06:59:42Z +8153 2005-07-28T20:55:49Z 2173 347 2005-08-01T15:56:49Z 2 2020-02-15T06:59:42Z +8154 2005-07-28T20:56:18Z 1180 285 2005-08-01T21:56:18Z 2 2020-02-15T06:59:42Z +8155 2005-07-28T20:57:06Z 3023 428 2005-08-02T18:40:06Z 2 2020-02-15T06:59:42Z +8156 2005-07-28T20:59:04Z 1977 257 2005-08-01T01:52:04Z 1 2020-02-15T06:59:42Z +8157 2005-07-28T21:06:45Z 915 566 2005-08-04T16:06:45Z 1 2020-02-15T06:59:42Z +8158 2005-07-28T21:08:46Z 4327 458 2005-08-01T21:50:46Z 2 2020-02-15T06:59:42Z +8159 2005-07-28T21:09:28Z 1118 47 2005-08-04T15:34:28Z 1 2020-02-15T06:59:42Z +8160 2005-07-28T21:10:30Z 2446 138 2005-08-05T16:52:30Z 2 2020-02-15T06:59:42Z +8161 2005-07-28T21:11:00Z 848 555 2005-08-03T23:32:00Z 1 2020-02-15T06:59:42Z +8162 2005-07-28T21:11:46Z 4393 107 2005-08-04T18:26:46Z 1 2020-02-15T06:59:42Z +8163 2005-07-28T21:11:48Z 1919 157 2005-07-31T18:30:48Z 1 2020-02-15T06:59:42Z +8164 2005-07-28T21:17:19Z 1674 461 2005-07-30T21:12:19Z 2 2020-02-15T06:59:42Z +8165 2005-07-28T21:23:06Z 3460 197 2005-08-01T21:32:06Z 1 2020-02-15T06:59:42Z +8166 2005-07-28T21:23:33Z 3906 42 2005-08-03T21:07:33Z 2 2020-02-15T06:59:42Z +8167 2005-07-28T21:25:45Z 3181 311 2005-08-04T18:04:45Z 1 2020-02-15T06:59:42Z +8168 2005-07-28T21:28:32Z 1120 365 2005-07-30T02:10:32Z 1 2020-02-15T06:59:42Z +8169 2005-07-28T21:29:46Z 4086 366 2005-08-06T22:29:46Z 1 2020-02-15T06:59:42Z +8170 2005-07-28T21:32:29Z 2495 40 2005-08-03T22:02:29Z 1 2020-02-15T06:59:42Z +8171 2005-07-28T21:32:57Z 3380 296 2005-07-30T21:19:57Z 1 2020-02-15T06:59:42Z +8172 2005-07-28T21:34:36Z 1237 329 2005-08-06T23:53:36Z 1 2020-02-15T06:59:42Z +8173 2005-07-28T21:35:44Z 4377 332 2005-08-06T19:15:44Z 2 2020-02-15T06:59:42Z +8174 2005-07-28T21:36:52Z 465 359 2005-08-04T00:32:52Z 1 2020-02-15T06:59:42Z +8175 2005-07-28T21:38:16Z 641 429 2005-08-07T01:34:16Z 2 2020-02-15T06:59:42Z +8176 2005-07-28T21:42:08Z 3527 347 2005-08-03T22:59:08Z 2 2020-02-15T06:59:42Z +8177 2005-07-28T21:43:54Z 3696 122 2005-08-02T22:38:54Z 2 2020-02-15T06:59:42Z +8178 2005-07-28T21:54:31Z 2825 503 2005-08-02T23:56:31Z 2 2020-02-15T06:59:42Z +8179 2005-07-28T22:05:13Z 2902 578 2005-07-30T21:57:13Z 2 2020-02-15T06:59:42Z +8180 2005-07-28T22:05:24Z 3236 281 2005-08-01T19:09:24Z 1 2020-02-15T06:59:42Z +8181 2005-07-28T22:18:38Z 357 522 2005-08-06T02:43:38Z 2 2020-02-15T06:59:42Z +8182 2005-07-28T22:19:12Z 4120 427 2005-08-01T22:40:12Z 2 2020-02-15T06:59:42Z +8183 2005-07-28T22:21:07Z 1545 119 2005-08-04T19:20:07Z 2 2020-02-15T06:59:42Z +8184 2005-07-28T22:22:35Z 1249 160 2005-07-31T19:30:35Z 1 2020-02-15T06:59:42Z +8185 2005-07-28T22:23:49Z 2452 568 2005-07-31T00:07:49Z 1 2020-02-15T06:59:42Z +8186 2005-07-28T22:30:27Z 4255 102 2005-07-31T21:08:27Z 1 2020-02-15T06:59:42Z +8187 2005-07-28T22:33:53Z 945 87 2005-08-03T03:54:53Z 1 2020-02-15T06:59:42Z +8188 2005-07-28T22:34:12Z 3826 10 2005-08-01T02:32:12Z 2 2020-02-15T06:59:42Z +8189 2005-07-28T22:36:26Z 3515 361 2005-08-04T00:12:26Z 2 2020-02-15T06:59:42Z +8190 2005-07-28T22:47:06Z 2290 267 2005-08-04T21:51:06Z 1 2020-02-15T06:59:42Z +8191 2005-07-28T22:47:14Z 1777 508 2005-07-31T23:13:14Z 2 2020-02-15T06:59:42Z +8192 2005-07-28T22:49:11Z 255 552 2005-07-30T04:13:11Z 1 2020-02-15T06:59:42Z +8193 2005-07-28T22:50:50Z 2402 15 2005-08-01T04:14:50Z 2 2020-02-15T06:59:42Z +8194 2005-07-28T22:51:44Z 1148 424 2005-07-29T17:13:44Z 1 2020-02-15T06:59:42Z +8195 2005-07-28T22:52:58Z 3989 590 2005-08-04T02:12:58Z 1 2020-02-15T06:59:42Z +8196 2005-07-28T22:56:11Z 3435 21 2005-08-06T04:53:11Z 1 2020-02-15T06:59:42Z +8197 2005-07-28T23:04:10Z 4126 407 2005-08-05T00:06:10Z 2 2020-02-15T06:59:42Z +8198 2005-07-28T23:08:05Z 1767 356 2005-08-06T00:43:05Z 2 2020-02-15T06:59:42Z +8199 2005-07-28T23:10:25Z 404 471 2005-08-04T23:30:25Z 1 2020-02-15T06:59:42Z +8200 2005-07-28T23:10:46Z 353 185 2005-07-29T18:35:46Z 1 2020-02-15T06:59:42Z +8201 2005-07-28T23:10:48Z 220 567 2005-08-01T00:50:48Z 2 2020-02-15T06:59:42Z +8202 2005-07-28T23:11:45Z 3802 75 2005-08-03T21:57:45Z 2 2020-02-15T06:59:42Z +8203 2005-07-28T23:14:56Z 3878 100 2005-07-31T04:19:56Z 2 2020-02-15T06:59:42Z +8204 2005-07-28T23:18:29Z 2472 398 2005-08-02T04:49:29Z 1 2020-02-15T06:59:42Z +8205 2005-07-28T23:18:48Z 2944 434 2005-07-30T00:37:48Z 2 2020-02-15T06:59:42Z +8206 2005-07-28T23:20:31Z 2979 422 2005-08-04T21:36:31Z 1 2020-02-15T06:59:42Z +8207 2005-07-28T23:26:31Z 1195 475 2005-08-06T03:26:31Z 1 2020-02-15T06:59:42Z +8208 2005-07-28T23:26:35Z 1362 530 2005-08-01T23:00:35Z 2 2020-02-15T06:59:42Z +8209 2005-07-28T23:29:28Z 2484 127 2005-08-07T04:22:28Z 2 2020-02-15T06:59:42Z +8210 2005-07-28T23:31:05Z 3424 300 2005-08-06T17:36:05Z 1 2020-02-15T06:59:42Z +8211 2005-07-28T23:34:22Z 1859 193 2005-08-04T21:18:22Z 1 2020-02-15T06:59:42Z +8212 2005-07-28T23:37:23Z 1305 159 2005-08-04T04:33:23Z 2 2020-02-15T06:59:42Z +8213 2005-07-28T23:37:33Z 3816 17 2005-07-31T00:32:33Z 2 2020-02-15T06:59:42Z +8214 2005-07-28T23:37:57Z 352 509 2005-08-07T00:29:57Z 2 2020-02-15T06:59:42Z +8215 2005-07-28T23:43:56Z 2921 437 2005-08-03T19:30:56Z 2 2020-02-15T06:59:42Z +8216 2005-07-28T23:43:59Z 2211 254 2005-08-06T05:05:59Z 1 2020-02-15T06:59:42Z +8217 2005-07-28T23:44:13Z 3747 206 2005-08-03T21:27:13Z 2 2020-02-15T06:59:42Z +8218 2005-07-28T23:45:41Z 2769 578 2005-08-02T00:14:41Z 1 2020-02-15T06:59:42Z +8219 2005-07-28T23:46:31Z 3609 227 2005-08-03T00:11:31Z 2 2020-02-15T06:59:42Z +8220 2005-07-28T23:46:41Z 1061 360 2005-07-31T22:14:41Z 2 2020-02-15T06:59:42Z +8221 2005-07-28T23:47:19Z 3138 496 2005-08-02T20:42:19Z 1 2020-02-15T06:59:42Z +8222 2005-07-28T23:51:53Z 2999 278 2005-08-05T22:48:53Z 1 2020-02-15T06:59:42Z +8223 2005-07-28T23:56:01Z 4508 282 2005-08-03T22:27:01Z 1 2020-02-15T06:59:42Z +8224 2005-07-28T23:59:02Z 1995 467 2005-08-02T04:54:02Z 1 2020-02-15T06:59:42Z +8225 2005-07-28T23:59:29Z 3631 41 2005-07-30T03:27:29Z 2 2020-02-15T06:59:42Z +8226 2005-07-29T00:01:04Z 3541 368 2005-08-01T19:08:04Z 2 2020-02-15T06:59:42Z +8227 2005-07-29T00:02:22Z 269 167 2005-07-31T04:05:22Z 1 2020-02-15T06:59:42Z +8228 2005-07-29T00:08:58Z 1955 72 2005-08-03T00:12:58Z 2 2020-02-15T06:59:42Z +8229 2005-07-29T00:09:08Z 4272 498 2005-07-31T19:29:08Z 2 2020-02-15T06:59:42Z +8230 2005-07-29T00:12:59Z 1937 2 2005-08-06T19:52:59Z 2 2020-02-15T06:59:42Z +8231 2005-07-29T00:14:37Z 1083 331 2005-07-31T19:12:37Z 1 2020-02-15T06:59:42Z +8232 2005-07-29T00:14:37Z 3255 526 2005-08-06T00:57:37Z 1 2020-02-15T06:59:42Z +8233 2005-07-29T00:16:23Z 1640 93 2005-08-03T05:17:23Z 2 2020-02-15T06:59:42Z +8234 2005-07-29T00:19:20Z 644 227 2005-08-03T19:16:20Z 2 2020-02-15T06:59:42Z +8235 2005-07-29T00:22:56Z 1581 320 2005-08-03T04:03:56Z 2 2020-02-15T06:59:42Z +8236 2005-07-29T00:27:04Z 1901 369 2005-07-31T05:02:04Z 2 2020-02-15T06:59:42Z +8237 2005-07-29T00:29:56Z 608 441 2005-08-06T03:10:56Z 1 2020-02-15T06:59:42Z +8238 2005-07-29T00:30:06Z 2941 320 2005-08-02T22:52:06Z 2 2020-02-15T06:59:42Z +8239 2005-07-29T00:31:39Z 3951 549 2005-07-29T19:33:39Z 1 2020-02-15T06:59:42Z +8240 2005-07-29T00:33:32Z 1975 509 2005-08-05T21:25:32Z 2 2020-02-15T06:59:42Z +8241 2005-07-29T00:33:36Z 4297 26 2005-08-03T01:31:36Z 1 2020-02-15T06:59:42Z +8242 2005-07-29T00:34:27Z 509 99 2005-08-05T23:13:27Z 2 2020-02-15T06:59:42Z +8243 2005-07-29T00:35:33Z 1873 481 2005-08-04T06:02:33Z 2 2020-02-15T06:59:42Z +8244 2005-07-29T00:35:34Z 1552 175 2005-08-05T04:18:34Z 2 2020-02-15T06:59:42Z +8245 2005-07-29T00:37:09Z 3330 555 2005-08-05T05:48:09Z 2 2020-02-15T06:59:42Z +8246 2005-07-29T00:38:41Z 1724 146 2005-08-05T06:28:41Z 2 2020-02-15T06:59:42Z +8247 2005-07-29T00:41:38Z 2607 539 2005-08-06T20:29:38Z 2 2020-02-15T06:59:42Z +8248 2005-07-29T00:41:56Z 2017 272 2005-08-05T18:53:56Z 2 2020-02-15T06:59:42Z +8249 2005-07-29T00:48:44Z 3331 57 2005-08-07T04:25:44Z 2 2020-02-15T06:59:42Z +8250 2005-07-29T00:49:15Z 4519 533 2005-08-04T02:53:15Z 1 2020-02-15T06:59:42Z +8251 2005-07-29T00:50:14Z 2317 408 2005-08-03T23:52:14Z 2 2020-02-15T06:59:42Z +8252 2005-07-29T00:54:17Z 3312 257 2005-07-31T20:34:17Z 1 2020-02-15T06:59:42Z +8253 2005-07-29T00:57:06Z 2388 76 2005-08-07T01:46:06Z 1 2020-02-15T06:59:42Z +8254 2005-07-29T00:59:31Z 1787 392 2005-08-03T23:43:31Z 2 2020-02-15T06:59:42Z +8255 2005-07-29T01:02:30Z 3715 224 2005-08-01T22:39:30Z 1 2020-02-15T06:59:42Z +8256 2005-07-29T01:02:42Z 1483 537 2005-07-31T22:29:42Z 2 2020-02-15T06:59:42Z +8257 2005-07-29T01:03:20Z 3024 566 2005-08-04T21:54:20Z 1 2020-02-15T06:59:42Z +8258 2005-07-29T01:03:42Z 1379 370 2005-08-04T22:08:42Z 2 2020-02-15T06:59:42Z +8259 2005-07-29T01:05:16Z 343 274 2005-08-01T23:27:16Z 2 2020-02-15T06:59:42Z +8260 2005-07-29T01:11:00Z 4249 366 2005-08-06T00:36:00Z 1 2020-02-15T06:59:42Z +8261 2005-07-29T01:11:05Z 1915 50 2005-08-04T03:13:05Z 2 2020-02-15T06:59:42Z +8262 2005-07-29T01:11:18Z 1341 563 2005-08-02T05:17:18Z 2 2020-02-15T06:59:42Z +8263 2005-07-29T01:11:23Z 28 5 2005-07-31T01:53:23Z 2 2020-02-15T06:59:42Z +8264 2005-07-29T01:18:50Z 2987 175 2005-08-03T05:31:50Z 2 2020-02-15T06:59:42Z +8265 2005-07-29T01:20:15Z 2389 409 2005-08-06T19:32:15Z 2 2020-02-15T06:59:42Z +8266 2005-07-29T01:20:16Z 1972 196 2005-07-30T04:31:16Z 1 2020-02-15T06:59:42Z +8267 2005-07-29T01:21:02Z 4107 131 2005-08-04T19:34:02Z 2 2020-02-15T06:59:42Z +8268 2005-07-29T01:23:23Z 4239 421 2005-08-05T01:36:23Z 1 2020-02-15T06:59:42Z +8269 2005-07-29T01:26:54Z 2778 376 2005-08-04T22:42:54Z 1 2020-02-15T06:59:42Z +8270 2005-07-29T01:27:22Z 3565 282 2005-07-29T20:55:22Z 1 2020-02-15T06:59:42Z +8271 2005-07-29T01:27:44Z 83 481 2005-08-07T05:01:44Z 2 2020-02-15T06:59:42Z +8272 2005-07-29T01:29:51Z 70 346 2005-08-03T21:56:51Z 2 2020-02-15T06:59:42Z +8273 2005-07-29T01:33:16Z 4244 532 2005-08-06T04:26:16Z 2 2020-02-15T06:59:42Z +8274 2005-07-29T01:34:32Z 2634 340 2005-08-01T20:15:32Z 2 2020-02-15T06:59:42Z +8275 2005-07-29T01:35:47Z 4432 336 2005-07-30T02:16:47Z 1 2020-02-15T06:59:42Z +8276 2005-07-29T01:38:43Z 2451 466 2005-08-03T23:00:43Z 1 2020-02-15T06:59:42Z +8277 2005-07-29T01:38:53Z 1296 13 2005-08-04T07:09:53Z 2 2020-02-15T06:59:42Z +8278 2005-07-29T01:42:55Z 768 265 2005-08-05T01:55:55Z 2 2020-02-15T06:59:42Z +8279 2005-07-29T01:43:37Z 3838 176 2005-08-03T02:36:37Z 1 2020-02-15T06:59:42Z +8280 2005-07-29T01:45:51Z 1208 195 2005-08-05T22:51:51Z 2 2020-02-15T06:59:42Z +8281 2005-07-29T01:46:00Z 899 441 2005-08-04T23:09:00Z 1 2020-02-15T06:59:42Z +8282 2005-07-29T01:49:04Z 980 462 2005-08-05T01:51:04Z 2 2020-02-15T06:59:42Z +8283 2005-07-29T01:52:22Z 2002 300 2005-08-05T03:22:22Z 2 2020-02-15T06:59:42Z +8284 2005-07-29T01:56:40Z 4371 446 2005-08-07T07:15:40Z 2 2020-02-15T06:59:42Z +8285 2005-07-29T02:00:18Z 678 56 2005-08-03T20:43:18Z 2 2020-02-15T06:59:42Z +8286 2005-07-29T02:02:46Z 4092 87 2005-08-06T06:00:46Z 1 2020-02-15T06:59:42Z +8287 2005-07-29T02:03:58Z 812 178 2005-08-07T02:11:58Z 1 2020-02-15T06:59:42Z +8288 2005-07-29T02:04:22Z 1822 55 2005-08-05T04:21:22Z 2 2020-02-15T06:59:42Z +8289 2005-07-29T02:23:24Z 4579 459 2005-08-06T03:23:24Z 2 2020-02-15T06:59:42Z +8290 2005-07-29T02:24:08Z 3823 462 2005-08-03T01:02:08Z 2 2020-02-15T06:59:42Z +8291 2005-07-29T02:28:25Z 2817 455 2005-08-03T20:57:25Z 2 2020-02-15T06:59:42Z +8292 2005-07-29T02:29:36Z 4003 192 2005-08-07T08:06:36Z 1 2020-02-15T06:59:42Z +8293 2005-07-29T02:30:50Z 831 71 2005-08-04T03:09:50Z 2 2020-02-15T06:59:42Z +8294 2005-07-29T02:32:41Z 1811 520 2005-08-02T06:28:41Z 1 2020-02-15T06:59:42Z +8295 2005-07-29T02:42:14Z 2065 406 2005-07-30T22:22:14Z 1 2020-02-15T06:59:42Z +8296 2005-07-29T02:43:25Z 2543 88 2005-08-01T00:23:25Z 1 2020-02-15T06:59:42Z +8297 2005-07-29T02:45:46Z 3774 349 2005-07-31T20:49:46Z 1 2020-02-15T06:59:42Z +8298 2005-07-29T02:47:36Z 952 493 2005-08-05T07:58:36Z 2 2020-02-15T06:59:42Z +8299 2005-07-29T02:56:00Z 1797 173 2005-07-30T22:35:00Z 2 2020-02-15T06:59:42Z +8300 2005-07-29T02:57:59Z 4364 222 2005-08-05T01:12:59Z 2 2020-02-15T06:59:42Z +8301 2005-07-29T03:00:08Z 562 101 2005-08-01T04:26:08Z 2 2020-02-15T06:59:42Z +8302 2005-07-29T03:01:24Z 1314 103 2005-07-30T01:08:24Z 2 2020-02-15T06:59:42Z +8303 2005-07-29T03:05:56Z 1620 574 2005-08-04T06:13:56Z 1 2020-02-15T06:59:42Z +8304 2005-07-29T03:08:30Z 4431 119 2005-08-02T03:04:30Z 2 2020-02-15T06:59:42Z +8305 2005-07-29T03:08:47Z 3916 566 2005-08-06T07:49:47Z 2 2020-02-15T06:59:42Z +8306 2005-07-29T03:12:26Z 1708 232 2005-08-01T23:26:26Z 1 2020-02-15T06:59:42Z +8307 2005-07-29T03:18:34Z 3197 39 2005-08-06T05:51:34Z 2 2020-02-15T06:59:42Z +8308 2005-07-29T03:22:15Z 601 582 2005-08-04T21:38:15Z 2 2020-02-15T06:59:42Z +8309 2005-07-29T03:22:20Z 2250 446 2005-08-01T06:30:20Z 1 2020-02-15T06:59:42Z +8310 2005-07-29T03:25:56Z 2637 238 2005-08-06T23:18:56Z 2 2020-02-15T06:59:42Z +8311 2005-07-29T03:26:07Z 3623 63 2005-08-02T01:46:07Z 1 2020-02-15T06:59:42Z +8312 2005-07-29T03:32:38Z 3996 143 2005-07-31T02:12:38Z 1 2020-02-15T06:59:42Z +8313 2005-07-29T03:34:21Z 2736 91 2005-08-02T01:32:21Z 1 2020-02-15T06:59:42Z +8314 2005-07-29T03:35:04Z 2182 118 2005-08-06T08:43:04Z 2 2020-02-15T06:59:42Z +8315 2005-07-29T03:37:07Z 1420 135 2005-07-29T23:22:07Z 2 2020-02-15T06:59:42Z +8316 2005-07-29T03:38:49Z 4118 549 2005-08-03T07:41:49Z 1 2020-02-15T06:59:42Z +8317 2005-07-29T03:39:07Z 3898 415 2005-08-03T00:14:07Z 1 2020-02-15T06:59:42Z +8318 2005-07-29T03:44:30Z 4524 167 2005-07-30T05:03:30Z 2 2020-02-15T06:59:42Z +8319 2005-07-29T03:44:52Z 747 280 2005-08-01T00:35:52Z 2 2020-02-15T06:59:42Z +8320 2005-07-29T03:49:58Z 1285 513 2005-08-03T01:00:58Z 1 2020-02-15T06:59:42Z +8321 2005-07-29T03:50:54Z 1875 354 2005-08-01T02:08:54Z 1 2020-02-15T06:59:42Z +8322 2005-07-29T03:52:49Z 301 541 2005-08-02T22:53:49Z 1 2020-02-15T06:59:42Z +8323 2005-07-29T03:52:59Z 2766 87 2005-08-06T01:49:59Z 2 2020-02-15T06:59:42Z +8324 2005-07-29T03:56:05Z 1467 98 2005-08-02T01:41:05Z 1 2020-02-15T06:59:42Z +8325 2005-07-29T03:57:27Z 932 362 2005-08-06T22:30:27Z 1 2020-02-15T06:59:42Z +8326 2005-07-29T03:58:49Z 108 1 2005-08-01T05:16:49Z 2 2020-02-15T06:59:42Z +8327 2005-07-29T04:00:52Z 2928 317 2005-07-31T08:27:52Z 1 2020-02-15T06:59:42Z +8328 2005-07-29T04:06:24Z 4454 314 2005-08-03T22:24:24Z 1 2020-02-15T06:59:42Z +8329 2005-07-29T04:06:33Z 3468 108 2005-08-06T01:46:33Z 1 2020-02-15T06:59:42Z +8330 2005-07-29T04:09:07Z 2294 412 2005-08-05T05:00:07Z 2 2020-02-15T06:59:42Z +8331 2005-07-29T04:13:29Z 18 148 2005-08-04T07:09:29Z 1 2020-02-15T06:59:42Z +8332 2005-07-29T04:16:00Z 1142 217 2005-08-03T03:34:00Z 1 2020-02-15T06:59:42Z +8333 2005-07-29T04:16:40Z 823 494 2005-08-02T10:10:40Z 2 2020-02-15T06:59:42Z +8334 2005-07-29T04:18:25Z 982 154 2005-08-07T07:18:25Z 2 2020-02-15T06:59:42Z +8335 2005-07-29T04:18:25Z 1719 143 2005-07-31T08:12:25Z 2 2020-02-15T06:59:42Z +8336 2005-07-29T04:20:42Z 2120 210 2005-08-05T10:17:42Z 1 2020-02-15T06:59:42Z +8337 2005-07-29T04:31:55Z 752 157 2005-08-02T02:38:55Z 2 2020-02-15T06:59:42Z +8338 2005-07-29T04:40:39Z 2257 389 2005-08-07T04:40:39Z 2 2020-02-15T06:59:42Z +8339 2005-07-29T04:41:13Z 1870 129 2005-07-30T09:01:13Z 2 2020-02-15T06:59:42Z +8340 2005-07-29T04:41:44Z 1553 386 2005-08-07T10:33:44Z 1 2020-02-15T06:59:42Z +8341 2005-07-29T04:42:01Z 4208 309 2005-08-04T00:58:01Z 1 2020-02-15T06:59:42Z +8342 2005-07-29T04:45:05Z 3301 572 2005-08-01T07:20:05Z 1 2020-02-15T06:59:42Z +8343 2005-07-29T04:45:16Z 4267 439 2005-08-02T03:37:16Z 1 2020-02-15T06:59:42Z +8344 2005-07-29T04:45:25Z 221 257 2005-08-06T01:53:25Z 1 2020-02-15T06:59:42Z +8345 2005-07-29T04:47:37Z 1034 129 2005-08-02T07:25:37Z 1 2020-02-15T06:59:42Z +8346 2005-07-29T04:48:22Z 2475 385 2005-08-01T04:22:22Z 1 2020-02-15T06:59:42Z +8347 2005-07-29T04:49:25Z 4407 157 2005-07-31T00:57:25Z 2 2020-02-15T06:59:42Z +8348 2005-07-29T04:49:26Z 4533 174 2005-08-05T03:26:26Z 2 2020-02-15T06:59:42Z +8349 2005-07-29T04:50:22Z 534 416 2005-08-05T08:50:22Z 1 2020-02-15T06:59:42Z +8350 2005-07-29T04:50:39Z 3726 513 2005-07-31T05:36:39Z 2 2020-02-15T06:59:42Z +8351 2005-07-29T04:50:53Z 2963 202 2005-07-30T07:28:53Z 2 2020-02-15T06:59:42Z +8352 2005-07-29T04:52:01Z 2710 168 2005-08-06T07:39:01Z 2 2020-02-15T06:59:42Z +8353 2005-07-29T04:52:10Z 26 585 2005-07-30T04:01:10Z 1 2020-02-15T06:59:42Z +8354 2005-07-29T04:56:26Z 4476 579 2005-08-01T08:04:26Z 2 2020-02-15T06:59:42Z +8355 2005-07-29T04:57:43Z 4569 270 2005-08-03T06:25:43Z 1 2020-02-15T06:59:42Z +8356 2005-07-29T04:58:56Z 2951 483 2005-08-06T03:07:56Z 1 2020-02-15T06:59:42Z +8357 2005-07-29T04:59:44Z 892 76 2005-08-01T04:26:44Z 1 2020-02-15T06:59:42Z +8358 2005-07-29T05:00:58Z 1449 372 2005-08-01T02:49:58Z 2 2020-02-15T06:59:42Z +8359 2005-07-29T05:02:12Z 140 531 2005-08-04T08:52:12Z 1 2020-02-15T06:59:42Z +8360 2005-07-29T05:08:00Z 4135 62 2005-08-02T00:40:00Z 1 2020-02-15T06:59:42Z +8361 2005-07-29T05:08:57Z 3404 360 2005-08-03T02:49:57Z 1 2020-02-15T06:59:42Z +8362 2005-07-29T05:09:11Z 2287 223 2005-08-04T00:08:11Z 2 2020-02-15T06:59:42Z +8363 2005-07-29T05:10:08Z 1607 302 2005-08-06T00:11:08Z 1 2020-02-15T06:59:42Z +8364 2005-07-29T05:10:31Z 1361 362 2005-07-30T04:02:31Z 2 2020-02-15T06:59:42Z +8365 2005-07-29T05:11:00Z 53 280 2005-07-30T05:30:00Z 2 2020-02-15T06:59:42Z +8366 2005-07-29T05:11:14Z 479 39 2005-08-05T01:48:14Z 1 2020-02-15T06:59:42Z +8367 2005-07-29T05:11:19Z 4551 383 2005-08-02T00:35:19Z 1 2020-02-15T06:59:42Z +8368 2005-07-29T05:15:41Z 1410 200 2005-08-07T01:35:41Z 1 2020-02-15T06:59:42Z +8369 2005-07-29T05:15:42Z 1456 507 2005-08-01T03:36:42Z 2 2020-02-15T06:59:42Z +8370 2005-07-29T05:16:21Z 1206 121 2005-08-06T23:16:21Z 1 2020-02-15T06:59:42Z +8371 2005-07-29T05:16:35Z 2466 396 2005-07-31T01:49:35Z 1 2020-02-15T06:59:42Z +8372 2005-07-29T05:18:08Z 754 523 2005-08-06T09:39:08Z 1 2020-02-15T06:59:42Z +8373 2005-07-29T05:19:53Z 2070 457 2005-08-04T04:39:53Z 1 2020-02-15T06:59:42Z +8374 2005-07-29T05:24:02Z 1084 589 2005-08-05T03:55:02Z 1 2020-02-15T06:59:42Z +8375 2005-07-29T05:25:30Z 3634 125 2005-08-04T01:43:30Z 2 2020-02-15T06:59:42Z +8376 2005-07-29T05:25:32Z 3588 43 2005-08-01T07:42:32Z 2 2020-02-15T06:59:42Z +8377 2005-07-29T05:27:40Z 270 73 2005-07-30T02:52:40Z 2 2020-02-15T06:59:42Z +8378 2005-07-29T05:28:35Z 3500 347 2005-08-02T05:55:35Z 1 2020-02-15T06:59:42Z +8379 2005-07-29T05:29:40Z 3907 193 2005-08-06T05:56:40Z 2 2020-02-15T06:59:42Z +8380 2005-07-29T05:31:29Z 2279 145 2005-08-02T01:27:29Z 1 2020-02-15T06:59:42Z +8381 2005-07-29T05:31:44Z 865 313 2005-07-31T09:20:44Z 1 2020-02-15T06:59:42Z +8382 2005-07-29T05:33:21Z 317 238 2005-08-03T03:38:21Z 1 2020-02-15T06:59:42Z +8383 2005-07-29T05:36:47Z 3809 495 2005-08-03T05:53:47Z 2 2020-02-15T06:59:42Z +8384 2005-07-29T05:38:43Z 3807 227 2005-08-01T07:31:43Z 2 2020-02-15T06:59:42Z +8385 2005-07-29T05:39:16Z 4108 233 2005-08-03T00:30:16Z 1 2020-02-15T06:59:42Z +8386 2005-07-29T05:45:30Z 388 435 2005-08-05T03:56:30Z 2 2020-02-15T06:59:42Z +8387 2005-07-29T05:47:27Z 910 428 2005-07-31T06:26:27Z 1 2020-02-15T06:59:42Z +8388 2005-07-29T05:48:15Z 770 178 2005-08-05T06:24:15Z 2 2020-02-15T06:59:42Z +8389 2005-07-29T05:50:09Z 1241 133 2005-08-06T05:15:09Z 2 2020-02-15T06:59:42Z +8390 2005-07-29T05:52:26Z 581 32 2005-08-04T08:12:26Z 2 2020-02-15T06:59:42Z +8391 2005-07-29T05:52:50Z 2134 36 2005-08-03T04:45:50Z 2 2020-02-15T06:59:42Z +8392 2005-07-29T06:00:27Z 1323 65 2005-08-02T00:30:27Z 2 2020-02-15T06:59:42Z +8393 2005-07-29T06:02:11Z 3369 504 2005-08-07T03:23:11Z 1 2020-02-15T06:59:42Z +8394 2005-07-29T06:02:14Z 3933 148 2005-08-03T08:15:14Z 1 2020-02-15T06:59:42Z +8395 2005-07-29T06:03:30Z 1471 535 2005-07-31T09:08:30Z 2 2020-02-15T06:59:42Z +8396 2005-07-29T06:07:00Z 3911 516 2005-07-30T05:32:00Z 2 2020-02-15T06:59:42Z +8397 2005-07-29T06:09:35Z 3542 518 2005-08-01T02:08:35Z 1 2020-02-15T06:59:42Z +8398 2005-07-29T06:12:40Z 348 220 2005-08-02T05:01:40Z 2 2020-02-15T06:59:42Z +8399 2005-07-29T06:20:18Z 233 286 2005-08-04T01:26:18Z 1 2020-02-15T06:59:42Z +8400 2005-07-29T06:23:56Z 3680 573 2005-07-31T02:41:56Z 2 2020-02-15T06:59:42Z +8401 2005-07-29T06:25:08Z 3121 232 2005-08-01T06:49:08Z 1 2020-02-15T06:59:42Z +8402 2005-07-29T06:25:45Z 186 47 2005-08-07T10:48:45Z 1 2020-02-15T06:59:42Z +8403 2005-07-29T06:26:39Z 1360 163 2005-08-02T05:37:39Z 1 2020-02-15T06:59:42Z +8404 2005-07-29T06:27:01Z 2086 65 2005-08-07T04:33:01Z 1 2020-02-15T06:59:42Z +8405 2005-07-29T06:28:19Z 2164 76 2005-08-07T08:14:19Z 2 2020-02-15T06:59:42Z +8406 2005-07-29T06:34:45Z 2047 274 2005-08-06T02:28:45Z 1 2020-02-15T06:59:42Z +8407 2005-07-29T06:37:02Z 2985 336 2005-08-04T03:13:02Z 1 2020-02-15T06:59:42Z +8408 2005-07-29T06:40:40Z 1841 90 2005-07-30T10:02:40Z 2 2020-02-15T06:59:42Z +8409 2005-07-29T06:41:22Z 4314 303 2005-07-31T11:21:22Z 1 2020-02-15T06:59:42Z +8410 2005-07-29T06:41:36Z 3448 277 2005-08-02T08:38:36Z 1 2020-02-15T06:59:42Z +8411 2005-07-29T06:44:23Z 3085 412 2005-08-07T03:56:23Z 1 2020-02-15T06:59:42Z +8412 2005-07-29T06:44:50Z 743 312 2005-08-06T05:04:50Z 1 2020-02-15T06:59:42Z +8413 2005-07-29T06:47:39Z 2762 104 2005-08-02T09:15:39Z 2 2020-02-15T06:59:42Z +8414 2005-07-29T06:48:35Z 1337 433 2005-08-06T10:54:35Z 2 2020-02-15T06:59:42Z +8415 2005-07-29T06:52:27Z 2903 128 2005-08-02T10:40:27Z 1 2020-02-15T06:59:42Z +8416 2005-07-29T06:52:54Z 1999 315 2005-08-05T09:50:54Z 2 2020-02-15T06:59:42Z +8417 2005-07-29T06:53:36Z 750 227 2005-08-06T09:31:36Z 2 2020-02-15T06:59:42Z +8418 2005-07-29T06:54:21Z 3081 355 2005-08-05T06:50:21Z 2 2020-02-15T06:59:42Z +8419 2005-07-29T06:54:48Z 4574 37 2005-08-06T05:02:48Z 1 2020-02-15T06:59:42Z +8420 2005-07-29T07:00:45Z 4184 376 2005-08-06T02:20:45Z 1 2020-02-15T06:59:42Z +8421 2005-07-29T07:00:47Z 3399 588 2005-08-02T08:03:47Z 2 2020-02-15T06:59:42Z +8422 2005-07-29T07:02:55Z 3104 7 2005-08-03T12:35:55Z 1 2020-02-15T06:59:42Z +8423 2005-07-29T07:02:57Z 187 468 2005-08-06T04:59:57Z 1 2020-02-15T06:59:42Z +8424 2005-07-29T07:06:03Z 366 138 2005-08-06T12:00:03Z 2 2020-02-15T06:59:42Z +8425 2005-07-29T07:06:21Z 3491 486 2005-08-05T07:57:21Z 2 2020-02-15T06:59:42Z +8426 2005-07-29T07:07:48Z 1840 564 2005-08-07T08:56:48Z 2 2020-02-15T06:59:42Z +8427 2005-07-29T07:08:36Z 1624 441 2005-07-30T11:54:36Z 2 2020-02-15T06:59:42Z +8428 2005-07-29T07:10:14Z 2545 398 2005-08-06T02:29:14Z 2 2020-02-15T06:59:42Z +8429 2005-07-29T07:11:49Z 2456 588 2005-07-31T02:45:49Z 1 2020-02-15T06:59:42Z +8430 2005-07-29T07:12:17Z 3377 219 2005-08-03T09:53:17Z 2 2020-02-15T06:59:42Z +8431 2005-07-29T07:12:48Z 1583 193 2005-08-01T10:03:48Z 1 2020-02-15T06:59:42Z +8432 2005-07-29T07:13:33Z 3896 572 2005-07-30T03:14:33Z 1 2020-02-15T06:59:42Z +8433 2005-07-29T07:19:16Z 1957 125 2005-08-05T03:29:16Z 1 2020-02-15T06:59:42Z +8434 2005-07-29T07:20:14Z 40 141 2005-07-30T08:50:14Z 2 2020-02-15T06:59:42Z +8435 2005-07-29T07:20:16Z 4462 520 2005-08-02T09:54:16Z 2 2020-02-15T06:59:42Z +8436 2005-07-29T07:21:20Z 2702 598 2005-07-31T12:56:20Z 2 2020-02-15T06:59:42Z +8437 2005-07-29T07:23:43Z 2118 96 2005-08-04T10:52:43Z 1 2020-02-15T06:59:42Z +8438 2005-07-29T07:25:42Z 720 97 2005-08-04T07:39:42Z 1 2020-02-15T06:59:42Z +8439 2005-07-29T07:28:43Z 182 224 2005-08-04T11:22:43Z 1 2020-02-15T06:59:42Z +8440 2005-07-29T07:31:26Z 489 175 2005-08-04T07:04:26Z 1 2020-02-15T06:59:42Z +8441 2005-07-29T07:33:05Z 1000 526 2005-08-04T04:00:05Z 2 2020-02-15T06:59:42Z +8442 2005-07-29T07:33:07Z 4345 185 2005-08-03T03:09:07Z 2 2020-02-15T06:59:42Z +8443 2005-07-29T07:33:12Z 1059 251 2005-08-02T01:36:12Z 2 2020-02-15T06:59:42Z +8444 2005-07-29T07:36:13Z 3329 213 2005-08-05T04:55:13Z 1 2020-02-15T06:59:42Z +8445 2005-07-29T07:37:48Z 2792 384 2005-08-04T10:43:48Z 1 2020-02-15T06:59:42Z +8446 2005-07-29T07:38:10Z 1593 235 2005-08-06T04:39:10Z 2 2020-02-15T06:59:42Z +8447 2005-07-29T07:38:14Z 930 11 2005-08-05T02:27:14Z 2 2020-02-15T06:59:42Z +8448 2005-07-29T07:41:54Z 4349 393 2005-08-02T13:12:54Z 1 2020-02-15T06:59:42Z +8449 2005-07-29T07:42:25Z 2610 273 2005-07-30T06:07:25Z 2 2020-02-15T06:59:42Z +8450 2005-07-29T07:44:05Z 484 401 2005-08-01T12:23:05Z 1 2020-02-15T06:59:42Z +8451 2005-07-29T07:44:56Z 3309 495 2005-08-06T02:29:56Z 1 2020-02-15T06:59:42Z +8452 2005-07-29T07:45:00Z 4312 16 2005-08-05T09:46:00Z 2 2020-02-15T06:59:42Z +8453 2005-07-29T07:46:29Z 2907 32 2005-07-30T07:07:29Z 1 2020-02-15T06:59:42Z +8454 2005-07-29T07:49:04Z 159 244 2005-08-03T04:43:04Z 2 2020-02-15T06:59:42Z +8455 2005-07-29T07:53:06Z 4043 404 2005-08-05T05:29:06Z 1 2020-02-15T06:59:42Z +8456 2005-07-29T07:58:31Z 671 388 2005-08-05T07:17:31Z 2 2020-02-15T06:59:42Z +8457 2005-07-29T07:59:03Z 3371 239 2005-08-04T08:42:03Z 1 2020-02-15T06:59:42Z +8458 2005-07-29T08:05:09Z 3857 317 2005-08-02T03:42:09Z 1 2020-02-15T06:59:42Z +8459 2005-07-29T08:05:40Z 3441 144 2005-08-04T03:24:40Z 1 2020-02-15T06:59:42Z +8460 2005-07-29T08:08:03Z 2826 329 2005-08-07T06:53:03Z 2 2020-02-15T06:59:42Z +8461 2005-07-29T08:11:31Z 3373 399 2005-08-06T09:23:31Z 1 2020-02-15T06:59:42Z +8462 2005-07-29T08:15:42Z 3633 200 2005-08-04T03:57:42Z 1 2020-02-15T06:59:42Z +8463 2005-07-29T08:17:51Z 466 203 2005-08-03T13:41:51Z 1 2020-02-15T06:59:42Z +8464 2005-07-29T08:18:20Z 2343 28 2005-08-03T04:50:20Z 2 2020-02-15T06:59:42Z +8465 2005-07-29T08:20:49Z 4109 238 2005-07-31T04:02:49Z 2 2020-02-15T06:59:42Z +8466 2005-07-29T08:24:47Z 4010 285 2005-07-31T03:43:47Z 1 2020-02-15T06:59:42Z +8467 2005-07-29T08:25:35Z 263 326 2005-08-07T03:28:35Z 2 2020-02-15T06:59:42Z +8468 2005-07-29T08:26:04Z 1338 282 2005-08-02T07:18:04Z 1 2020-02-15T06:59:42Z +8469 2005-07-29T08:26:27Z 2754 408 2005-08-05T04:26:27Z 2 2020-02-15T06:59:42Z +8470 2005-07-29T08:28:50Z 3717 159 2005-07-30T13:40:50Z 2 2020-02-15T06:59:42Z +8471 2005-07-29T08:32:11Z 1520 533 2005-08-01T13:55:11Z 1 2020-02-15T06:59:42Z +8472 2005-07-29T08:36:22Z 2975 196 2005-08-02T07:55:22Z 1 2020-02-15T06:59:42Z +8473 2005-07-29T08:36:53Z 4141 311 2005-07-31T12:14:53Z 1 2020-02-15T06:59:42Z +8474 2005-07-29T08:36:56Z 4346 323 2005-08-01T03:07:56Z 1 2020-02-15T06:59:42Z +8475 2005-07-29T08:37:41Z 3695 260 2005-08-04T10:03:41Z 2 2020-02-15T06:59:42Z +8476 2005-07-29T08:39:12Z 3741 470 2005-08-06T03:03:12Z 1 2020-02-15T06:59:42Z +8477 2005-07-29T08:40:36Z 3571 354 2005-08-06T08:28:36Z 2 2020-02-15T06:59:42Z +8478 2005-07-29T08:40:36Z 3742 162 2005-08-01T10:23:36Z 1 2020-02-15T06:59:42Z +8479 2005-07-29T08:42:04Z 1990 195 2005-08-01T03:10:04Z 1 2020-02-15T06:59:42Z +8480 2005-07-29T08:44:46Z 3512 467 2005-08-05T13:22:46Z 1 2020-02-15T06:59:42Z +8481 2005-07-29T08:45:57Z 1739 454 2005-08-01T12:50:57Z 2 2020-02-15T06:59:42Z +8482 2005-07-29T08:46:33Z 2686 405 2005-07-31T11:07:33Z 2 2020-02-15T06:59:42Z +8483 2005-07-29T08:50:18Z 2786 186 2005-08-03T06:46:18Z 1 2020-02-15T06:59:42Z +8484 2005-07-29T08:51:59Z 742 260 2005-07-30T09:07:59Z 1 2020-02-15T06:59:42Z +8485 2005-07-29T08:53:09Z 3172 420 2005-07-30T11:25:09Z 1 2020-02-15T06:59:42Z +8486 2005-07-29T08:53:38Z 1759 221 2005-08-01T14:12:38Z 2 2020-02-15T06:59:42Z +8487 2005-07-29T08:53:49Z 1893 82 2005-07-31T09:10:49Z 2 2020-02-15T06:59:42Z +8488 2005-07-29T08:57:38Z 2176 478 2005-08-02T04:16:38Z 1 2020-02-15T06:59:42Z +8489 2005-07-29T08:58:03Z 375 265 2005-08-02T07:50:03Z 2 2020-02-15T06:59:42Z +8490 2005-07-29T08:59:25Z 1943 367 2005-08-05T14:02:25Z 2 2020-02-15T06:59:42Z +8491 2005-07-29T09:02:13Z 1806 242 2005-08-03T04:32:13Z 1 2020-02-15T06:59:42Z +8492 2005-07-29T09:04:17Z 4553 266 2005-08-02T08:48:17Z 2 2020-02-15T06:59:42Z +8493 2005-07-29T09:04:31Z 664 390 2005-08-04T05:17:31Z 2 2020-02-15T06:59:42Z +8494 2005-07-29T09:04:32Z 3524 92 2005-07-31T10:30:32Z 1 2020-02-15T06:59:42Z +8495 2005-07-29T09:05:06Z 344 51 2005-08-06T05:48:06Z 2 2020-02-15T06:59:42Z +8496 2005-07-29T09:05:33Z 765 114 2005-08-02T06:32:33Z 1 2020-02-15T06:59:42Z +8497 2005-07-29T09:07:03Z 1837 593 2005-08-02T09:18:03Z 2 2020-02-15T06:59:42Z +8498 2005-07-29T09:07:38Z 4468 190 2005-08-04T07:01:38Z 1 2020-02-15T06:59:42Z +8499 2005-07-29T09:10:41Z 219 42 2005-08-05T10:01:41Z 1 2020-02-15T06:59:42Z +8500 2005-07-29T09:12:01Z 4516 348 2005-07-31T10:15:01Z 1 2020-02-15T06:59:42Z +8501 2005-07-29T09:12:51Z 1052 309 2005-07-30T11:19:51Z 2 2020-02-15T06:59:42Z +8502 2005-07-29T09:15:41Z 2149 457 2005-07-30T10:41:41Z 1 2020-02-15T06:59:42Z +8503 2005-07-29T09:16:50Z 1164 240 2005-08-04T11:34:50Z 2 2020-02-15T06:59:42Z +8504 2005-07-29T09:20:16Z 2295 561 2005-08-07T04:27:16Z 2 2020-02-15T06:59:42Z +8505 2005-07-29T09:22:52Z 1454 346 2005-08-06T05:23:52Z 1 2020-02-15T06:59:42Z +8506 2005-07-29T09:23:52Z 3714 506 2005-07-31T04:42:52Z 1 2020-02-15T06:59:42Z +8507 2005-07-29T09:29:44Z 3273 524 2005-08-07T05:48:44Z 2 2020-02-15T06:59:42Z +8508 2005-07-29T09:34:38Z 4173 484 2005-08-01T14:52:38Z 2 2020-02-15T06:59:42Z +8509 2005-07-29T09:38:19Z 1332 80 2005-08-04T11:45:19Z 1 2020-02-15T06:59:42Z +8510 2005-07-29T09:41:38Z 7 487 2005-08-05T05:30:38Z 2 2020-02-15T06:59:42Z +8511 2005-07-29T09:42:42Z 3667 598 2005-08-06T14:22:42Z 2 2020-02-15T06:59:42Z +8512 2005-07-29T09:48:03Z 4132 351 2005-07-31T13:40:03Z 1 2020-02-15T06:59:42Z +8513 2005-07-29T09:52:59Z 3156 142 2005-07-31T12:05:59Z 1 2020-02-15T06:59:42Z +8514 2005-07-29T09:53:33Z 3755 99 2005-07-30T06:34:33Z 2 2020-02-15T06:59:42Z +8515 2005-07-29T09:55:20Z 1071 477 2005-08-05T07:08:20Z 2 2020-02-15T06:59:42Z +8516 2005-07-29T10:00:03Z 981 337 2005-08-02T09:34:03Z 1 2020-02-15T06:59:42Z +8517 2005-07-29T10:00:48Z 2064 274 2005-08-06T14:37:48Z 2 2020-02-15T06:59:42Z +8518 2005-07-29T10:05:27Z 2311 385 2005-08-02T05:39:27Z 1 2020-02-15T06:59:42Z +8519 2005-07-29T10:09:43Z 1163 588 2005-08-03T08:14:43Z 2 2020-02-15T06:59:42Z +8520 2005-07-29T10:10:02Z 2440 103 2005-08-02T05:25:02Z 2 2020-02-15T06:59:42Z +8521 2005-07-29T10:12:45Z 2608 402 2005-08-07T04:37:45Z 2 2020-02-15T06:59:42Z +8522 2005-07-29T10:16:19Z 3636 363 2005-08-06T14:58:19Z 1 2020-02-15T06:59:42Z +8523 2005-07-29T10:18:27Z 3614 558 2005-08-04T09:31:27Z 1 2020-02-15T06:59:42Z +8524 2005-07-29T10:20:07Z 2110 124 2005-08-03T04:30:07Z 1 2020-02-15T06:59:42Z +8525 2005-07-29T10:20:19Z 1322 111 2005-07-30T05:49:19Z 2 2020-02-15T06:59:42Z +8526 2005-07-29T10:20:48Z 575 88 2005-08-03T14:15:48Z 1 2020-02-15T06:59:42Z +8527 2005-07-29T10:21:00Z 709 168 2005-08-05T16:05:00Z 2 2020-02-15T06:59:42Z +8528 2005-07-29T10:24:22Z 2107 428 2005-08-07T10:34:22Z 1 2020-02-15T06:59:42Z +8529 2005-07-29T10:24:31Z 1055 501 2005-08-01T16:06:31Z 1 2020-02-15T06:59:42Z +8530 2005-07-29T10:26:14Z 4528 233 2005-07-31T10:24:14Z 1 2020-02-15T06:59:42Z +8531 2005-07-29T10:26:15Z 1631 427 2005-08-06T09:28:15Z 1 2020-02-15T06:59:42Z +8532 2005-07-29T10:26:56Z 3045 546 2005-08-02T13:23:56Z 2 2020-02-15T06:59:42Z +8533 2005-07-29T10:29:16Z 551 542 2005-08-01T06:52:16Z 1 2020-02-15T06:59:42Z +8534 2005-07-29T10:30:13Z 4029 516 2005-08-02T04:47:13Z 1 2020-02-15T06:59:42Z +8535 2005-07-29T10:32:33Z 4489 536 2005-07-31T05:46:33Z 1 2020-02-15T06:59:42Z +8536 2005-07-29T10:37:23Z 4510 219 2005-07-31T07:21:23Z 2 2020-02-15T06:59:42Z +8537 2005-07-29T10:44:54Z 1012 447 2005-08-06T14:55:54Z 2 2020-02-15T06:59:42Z +8538 2005-07-29T10:45:17Z 3768 500 2005-08-04T15:12:17Z 1 2020-02-15T06:59:42Z +8539 2005-07-29T10:48:24Z 599 325 2005-07-30T06:29:24Z 2 2020-02-15T06:59:42Z +8540 2005-07-29T10:52:51Z 539 180 2005-08-07T11:44:51Z 2 2020-02-15T06:59:42Z +8541 2005-07-29T10:55:01Z 976 340 2005-07-31T10:53:01Z 1 2020-02-15T06:59:42Z +8542 2005-07-29T11:01:50Z 792 213 2005-07-30T08:19:50Z 1 2020-02-15T06:59:42Z +8543 2005-07-29T11:01:57Z 403 346 2005-08-03T06:03:57Z 1 2020-02-15T06:59:42Z +8544 2005-07-29T11:02:08Z 412 542 2005-08-06T15:06:08Z 2 2020-02-15T06:59:42Z +8545 2005-07-29T11:07:04Z 3261 3 2005-08-06T13:30:04Z 2 2020-02-15T06:59:42Z +8546 2005-07-29T11:08:48Z 3224 418 2005-08-03T16:50:48Z 2 2020-02-15T06:59:42Z +8547 2005-07-29T11:10:15Z 875 438 2005-08-03T12:50:15Z 1 2020-02-15T06:59:42Z +8548 2005-07-29T11:11:33Z 3366 14 2005-08-04T11:52:33Z 2 2020-02-15T06:59:42Z +8549 2005-07-29T11:12:13Z 1866 206 2005-08-06T06:04:13Z 2 2020-02-15T06:59:42Z +8550 2005-07-29T11:12:37Z 1340 70 2005-07-30T15:05:37Z 2 2020-02-15T06:59:42Z +8551 2005-07-29T11:13:11Z 2083 340 2005-08-05T05:17:11Z 2 2020-02-15T06:59:42Z +8552 2005-07-29T11:14:02Z 1987 490 2005-08-05T14:13:02Z 2 2020-02-15T06:59:42Z +8553 2005-07-29T11:15:36Z 2645 49 2005-08-07T16:37:36Z 1 2020-02-15T06:59:42Z +8554 2005-07-29T11:16:29Z 1563 582 2005-07-31T06:38:29Z 2 2020-02-15T06:59:42Z +8555 2005-07-29T11:18:01Z 2784 18 2005-07-30T10:47:01Z 2 2020-02-15T06:59:42Z +8556 2005-07-29T11:18:27Z 2793 231 2005-07-30T05:21:27Z 2 2020-02-15T06:59:42Z +8557 2005-07-29T11:19:59Z 1481 459 2005-08-07T12:50:59Z 1 2020-02-15T06:59:42Z +8558 2005-07-29T11:24:49Z 1160 169 2005-07-31T15:03:49Z 1 2020-02-15T06:59:42Z +8559 2005-07-29T11:25:54Z 2078 279 2005-08-04T10:16:54Z 2 2020-02-15T06:59:42Z +8560 2005-07-29T11:27:27Z 3499 430 2005-08-01T12:05:27Z 2 2020-02-15T06:59:42Z +8561 2005-07-29T11:29:12Z 2207 344 2005-08-05T09:17:12Z 1 2020-02-15T06:59:42Z +8562 2005-07-29T11:32:13Z 3595 255 2005-07-30T08:23:13Z 2 2020-02-15T06:59:42Z +8563 2005-07-29T11:32:58Z 61 67 2005-08-05T07:21:58Z 2 2020-02-15T06:59:42Z +8564 2005-07-29T11:33:00Z 2830 316 2005-08-05T15:35:00Z 1 2020-02-15T06:59:42Z +8565 2005-07-29T11:35:23Z 3211 280 2005-08-06T08:28:23Z 1 2020-02-15T06:59:42Z +8566 2005-07-29T11:35:46Z 2011 544 2005-07-30T13:50:46Z 1 2020-02-15T06:59:42Z +8567 2005-07-29T11:37:30Z 1612 594 2005-08-03T05:58:30Z 2 2020-02-15T06:59:42Z +8568 2005-07-29T11:38:22Z 1599 583 2005-08-04T13:22:22Z 2 2020-02-15T06:59:42Z +8569 2005-07-29T11:39:17Z 276 348 2005-07-31T07:50:17Z 2 2020-02-15T06:59:42Z +8570 2005-07-29T11:40:08Z 3094 131 2005-08-06T10:23:08Z 1 2020-02-15T06:59:42Z +8571 2005-07-29T11:48:39Z 1778 407 2005-08-03T06:35:39Z 2 2020-02-15T06:59:42Z +8572 2005-07-29T11:51:24Z 2815 267 2005-08-02T11:44:24Z 1 2020-02-15T06:59:42Z +8573 2005-07-29T11:51:25Z 1637 179 2005-08-07T08:53:25Z 1 2020-02-15T06:59:42Z +8574 2005-07-29T11:51:53Z 2949 71 2005-08-03T05:59:53Z 2 2020-02-15T06:59:42Z +8575 2005-07-29T11:52:47Z 1668 441 2005-08-03T08:14:47Z 2 2020-02-15T06:59:42Z +8576 2005-07-29T11:55:01Z 3552 157 2005-08-03T08:41:01Z 2 2020-02-15T06:59:42Z +8577 2005-07-29T11:56:30Z 520 328 2005-08-07T15:41:30Z 1 2020-02-15T06:59:42Z +8578 2005-07-29T11:58:14Z 3737 148 2005-08-03T06:25:14Z 1 2020-02-15T06:59:42Z +8579 2005-07-29T11:59:22Z 4045 250 2005-07-30T11:41:22Z 2 2020-02-15T06:59:42Z +8580 2005-07-29T12:00:27Z 4040 543 2005-08-04T16:39:27Z 1 2020-02-15T06:59:42Z +8581 2005-07-29T12:02:06Z 2102 254 2005-08-02T10:32:06Z 2 2020-02-15T06:59:42Z +8582 2005-07-29T12:03:27Z 841 162 2005-08-03T07:02:27Z 1 2020-02-15T06:59:42Z +8583 2005-07-29T12:04:50Z 3130 191 2005-08-04T17:21:50Z 1 2020-02-15T06:59:42Z +8584 2005-07-29T12:07:53Z 1656 482 2005-07-31T09:27:53Z 1 2020-02-15T06:59:42Z +8585 2005-07-29T12:14:18Z 512 516 2005-08-03T08:31:18Z 2 2020-02-15T06:59:42Z +8586 2005-07-29T12:16:34Z 2752 374 2005-08-07T06:48:34Z 1 2020-02-15T06:59:42Z +8587 2005-07-29T12:18:40Z 1941 108 2005-08-03T14:01:40Z 1 2020-02-15T06:59:42Z +8588 2005-07-29T12:22:20Z 2858 416 2005-07-31T10:49:20Z 1 2020-02-15T06:59:42Z +8589 2005-07-29T12:28:17Z 1628 293 2005-08-05T11:40:17Z 1 2020-02-15T06:59:42Z +8590 2005-07-29T12:32:20Z 2505 114 2005-08-07T08:00:20Z 1 2020-02-15T06:59:42Z +8591 2005-07-29T12:32:33Z 2568 418 2005-08-01T16:19:33Z 2 2020-02-15T06:59:42Z +8592 2005-07-29T12:33:58Z 1952 271 2005-08-04T07:14:58Z 2 2020-02-15T06:59:42Z +8593 2005-07-29T12:38:14Z 2601 181 2005-08-07T07:04:14Z 1 2020-02-15T06:59:42Z +8594 2005-07-29T12:42:13Z 4155 115 2005-08-02T07:38:13Z 1 2020-02-15T06:59:42Z +8595 2005-07-29T12:47:43Z 3225 423 2005-08-07T13:51:43Z 2 2020-02-15T06:59:42Z +8596 2005-07-29T12:48:54Z 59 233 2005-08-04T07:19:54Z 2 2020-02-15T06:59:42Z +8597 2005-07-29T12:55:55Z 4218 222 2005-08-05T18:54:55Z 1 2020-02-15T06:59:42Z +8598 2005-07-29T12:56:59Z 626 2 2005-08-01T08:39:59Z 2 2020-02-15T06:59:42Z +8599 2005-07-29T12:58:52Z 1169 545 2005-08-03T08:19:52Z 1 2020-02-15T06:59:42Z +8600 2005-07-29T13:01:19Z 1488 226 2005-07-31T15:40:19Z 2 2020-02-15T06:59:42Z +8601 2005-07-29T13:03:31Z 3247 181 2005-08-06T16:32:31Z 1 2020-02-15T06:59:42Z +8602 2005-07-29T13:04:27Z 4002 64 2005-08-03T12:21:27Z 2 2020-02-15T06:59:42Z +8603 2005-07-29T13:07:07Z 3007 594 2005-08-04T18:32:07Z 2 2020-02-15T06:59:42Z +8604 2005-07-29T13:07:13Z 3909 326 2005-07-31T18:00:13Z 2 2020-02-15T06:59:42Z +8605 2005-07-29T13:13:34Z 3805 224 2005-08-07T08:29:34Z 1 2020-02-15T06:59:42Z +8606 2005-07-29T13:14:24Z 4051 340 2005-07-30T14:52:24Z 1 2020-02-15T06:59:42Z +8607 2005-07-29T13:18:00Z 4290 336 2005-07-30T18:51:00Z 2 2020-02-15T06:59:42Z +8608 2005-07-29T13:18:52Z 2976 165 2005-07-30T19:01:52Z 2 2020-02-15T06:59:42Z +8609 2005-07-29T13:19:25Z 3997 354 2005-08-06T08:33:25Z 2 2020-02-15T06:59:42Z +8610 2005-07-29T13:25:02Z 4222 563 2005-08-03T08:10:02Z 2 2020-02-15T06:59:42Z +8611 2005-07-29T13:26:21Z 610 373 2005-08-07T18:20:21Z 2 2020-02-15T06:59:42Z +8612 2005-07-29T13:28:20Z 3518 392 2005-08-06T14:39:20Z 2 2020-02-15T06:59:42Z +8613 2005-07-29T13:30:58Z 394 411 2005-08-05T16:21:58Z 2 2020-02-15T06:59:42Z +8614 2005-07-29T13:32:05Z 604 552 2005-08-04T15:26:05Z 1 2020-02-15T06:59:42Z +8615 2005-07-29T13:36:01Z 4453 15 2005-08-03T13:15:01Z 1 2020-02-15T06:59:42Z +8616 2005-07-29T13:39:09Z 2583 493 2005-08-01T16:49:09Z 1 2020-02-15T06:59:42Z +8617 2005-07-29T13:46:14Z 385 441 2005-08-06T13:26:14Z 2 2020-02-15T06:59:42Z +8618 2005-07-29T13:48:20Z 985 270 2005-08-06T14:12:20Z 2 2020-02-15T06:59:42Z +8619 2005-07-29T13:50:08Z 2169 50 2005-08-06T13:15:08Z 1 2020-02-15T06:59:42Z +8620 2005-07-29T13:51:20Z 3718 306 2005-08-02T13:05:20Z 1 2020-02-15T06:59:42Z +8621 2005-07-29T13:52:42Z 2473 358 2005-07-30T11:42:42Z 2 2020-02-15T06:59:42Z +8622 2005-07-29T13:53:28Z 4076 98 2005-07-31T16:12:28Z 2 2020-02-15T06:59:42Z +8623 2005-07-29T13:55:11Z 458 142 2005-08-05T11:16:11Z 1 2020-02-15T06:59:42Z +8624 2005-07-29T13:55:36Z 4402 439 2005-08-02T12:23:36Z 2 2020-02-15T06:59:42Z +8625 2005-07-29T13:59:13Z 884 410 2005-08-07T17:56:13Z 2 2020-02-15T06:59:42Z +8626 2005-07-29T14:03:20Z 3092 148 2005-08-02T09:05:20Z 1 2020-02-15T06:59:42Z +8627 2005-07-29T14:05:12Z 4235 226 2005-08-05T16:53:12Z 2 2020-02-15T06:59:42Z +8628 2005-07-29T14:06:24Z 4484 550 2005-08-06T10:42:24Z 2 2020-02-15T06:59:42Z +8629 2005-07-29T14:06:35Z 853 567 2005-08-03T16:59:35Z 2 2020-02-15T06:59:42Z +8630 2005-07-29T14:07:59Z 1378 406 2005-08-03T13:18:59Z 2 2020-02-15T06:59:42Z +8631 2005-07-29T14:08:06Z 98 559 2005-08-05T14:57:06Z 1 2020-02-15T06:59:42Z +8632 2005-07-29T14:11:25Z 1666 563 2005-08-07T15:32:25Z 1 2020-02-15T06:59:42Z +8633 2005-07-29T14:19:53Z 3436 534 2005-08-01T11:31:53Z 2 2020-02-15T06:59:42Z +8634 2005-07-29T14:19:57Z 2023 335 2005-08-07T13:44:57Z 1 2020-02-15T06:59:42Z +8635 2005-07-29T14:22:48Z 2894 383 2005-08-01T11:59:48Z 2 2020-02-15T06:59:42Z +8636 2005-07-29T14:24:13Z 4308 252 2005-08-02T14:39:13Z 1 2020-02-15T06:59:42Z +8637 2005-07-29T14:30:11Z 1069 310 2005-08-04T14:00:11Z 1 2020-02-15T06:59:42Z +8638 2005-07-29T14:30:23Z 4060 571 2005-08-01T10:32:23Z 1 2020-02-15T06:59:42Z +8639 2005-07-29T14:30:31Z 3504 290 2005-08-02T16:04:31Z 1 2020-02-15T06:59:42Z +8640 2005-07-29T14:34:17Z 1874 257 2005-08-01T13:09:17Z 2 2020-02-15T06:59:42Z +8641 2005-07-29T14:37:30Z 3199 30 2005-08-02T19:32:30Z 2 2020-02-15T06:59:42Z +8642 2005-07-29T14:38:17Z 3947 522 2005-08-03T14:41:17Z 1 2020-02-15T06:59:42Z +8643 2005-07-29T14:45:23Z 381 59 2005-08-04T18:42:23Z 1 2020-02-15T06:59:42Z +8644 2005-07-29T14:45:45Z 4507 314 2005-08-03T20:10:45Z 2 2020-02-15T06:59:42Z +8645 2005-07-29T14:47:45Z 2532 535 2005-07-30T14:56:45Z 2 2020-02-15T06:59:42Z +8646 2005-07-29T14:48:48Z 89 302 2005-08-03T18:11:48Z 2 2020-02-15T06:59:42Z +8647 2005-07-29T14:52:59Z 556 307 2005-08-06T11:09:59Z 2 2020-02-15T06:59:42Z +8648 2005-07-29T14:56:21Z 160 416 2005-07-31T16:56:21Z 2 2020-02-15T06:59:42Z +8649 2005-07-29T14:57:33Z 789 69 2005-08-07T09:43:33Z 2 2020-02-15T06:59:42Z +8650 2005-07-29T14:59:04Z 1272 134 2005-08-04T13:13:04Z 2 2020-02-15T06:59:42Z +8651 2005-07-29T15:02:18Z 2095 61 2005-08-07T09:34:18Z 2 2020-02-15T06:59:42Z +8652 2005-07-29T15:02:54Z 2729 219 2005-08-07T17:21:54Z 2 2020-02-15T06:59:42Z +8653 2005-07-29T15:04:23Z 4440 230 2005-08-02T09:39:23Z 2 2020-02-15T06:59:42Z +8654 2005-07-29T15:04:27Z 3925 84 2005-08-07T18:37:27Z 1 2020-02-15T06:59:42Z +8655 2005-07-29T15:04:42Z 3986 232 2005-08-04T11:26:42Z 1 2020-02-15T06:59:42Z +8656 2005-07-29T15:05:52Z 1385 460 2005-07-31T20:57:52Z 2 2020-02-15T06:59:42Z +8657 2005-07-29T15:09:25Z 3194 236 2005-07-31T19:10:25Z 1 2020-02-15T06:59:42Z +8658 2005-07-29T15:16:37Z 2033 427 2005-08-07T20:45:37Z 2 2020-02-15T06:59:42Z +8659 2005-07-29T15:26:31Z 558 168 2005-08-06T19:05:31Z 2 2020-02-15T06:59:42Z +8660 2005-07-29T15:26:59Z 3122 566 2005-08-05T21:04:59Z 2 2020-02-15T06:59:42Z +8661 2005-07-29T15:28:24Z 3409 341 2005-08-05T20:04:24Z 2 2020-02-15T06:59:42Z +8662 2005-07-29T15:31:33Z 3758 362 2005-07-30T09:39:33Z 2 2020-02-15T06:59:42Z +8663 2005-07-29T15:33:18Z 1281 214 2005-07-30T18:03:18Z 1 2020-02-15T06:59:42Z +8664 2005-07-29T15:36:27Z 198 102 2005-08-04T20:11:27Z 1 2020-02-15T06:59:42Z +8665 2005-07-29T15:39:29Z 1113 265 2005-08-01T10:33:29Z 2 2020-02-15T06:59:42Z +8666 2005-07-29T15:39:38Z 3669 591 2005-08-06T17:12:38Z 1 2020-02-15T06:59:42Z +8667 2005-07-29T15:40:57Z 3439 25 2005-07-31T20:59:57Z 1 2020-02-15T06:59:42Z +8668 2005-07-29T15:41:31Z 4531 71 2005-08-01T16:20:31Z 2 2020-02-15T06:59:42Z +8669 2005-07-29T15:44:55Z 1667 401 2005-08-01T14:09:55Z 2 2020-02-15T06:59:42Z +8670 2005-07-29T15:49:03Z 2354 446 2005-08-01T20:19:03Z 2 2020-02-15T06:59:42Z +8671 2005-07-29T15:49:37Z 1431 577 2005-08-05T18:20:37Z 1 2020-02-15T06:59:42Z +8672 2005-07-29T15:49:48Z 405 495 2005-08-06T17:59:48Z 2 2020-02-15T06:59:42Z +8673 2005-07-29T15:50:14Z 2167 29 2005-08-03T18:30:14Z 1 2020-02-15T06:59:42Z +8674 2005-07-29T15:54:22Z 1744 412 2005-07-31T12:15:22Z 1 2020-02-15T06:59:42Z +8675 2005-07-29T15:56:18Z 1026 258 2005-07-30T18:50:18Z 1 2020-02-15T06:59:42Z +8676 2005-07-29T15:59:06Z 283 533 2005-08-05T19:12:06Z 2 2020-02-15T06:59:42Z +8677 2005-07-29T16:01:13Z 513 315 2005-08-07T19:21:13Z 2 2020-02-15T06:59:42Z +8678 2005-07-29T16:04:00Z 3991 210 2005-08-05T12:37:00Z 1 2020-02-15T06:59:42Z +8679 2005-07-29T16:07:47Z 3549 536 2005-08-02T18:37:47Z 1 2020-02-15T06:59:42Z +8680 2005-07-29T16:08:03Z 1227 330 2005-07-31T17:26:03Z 1 2020-02-15T06:59:42Z +8681 2005-07-29T16:12:01Z 4004 309 2005-08-01T18:14:01Z 2 2020-02-15T06:59:42Z +8682 2005-07-29T16:15:26Z 4328 348 2005-08-03T20:15:26Z 2 2020-02-15T06:59:42Z +8683 2005-07-29T16:15:43Z 3915 513 2005-08-07T19:19:43Z 1 2020-02-15T06:59:42Z +8684 2005-07-29T16:16:33Z 2457 185 2005-08-07T12:27:33Z 2 2020-02-15T06:59:42Z +8685 2005-07-29T16:17:05Z 1827 321 2005-08-07T17:44:05Z 1 2020-02-15T06:59:42Z +8686 2005-07-29T16:17:49Z 4160 52 2005-08-01T12:50:49Z 2 2020-02-15T06:59:42Z +8687 2005-07-29T16:19:17Z 222 117 2005-08-01T15:28:17Z 1 2020-02-15T06:59:42Z +8688 2005-07-29T16:31:32Z 2263 381 2005-07-30T12:39:32Z 1 2020-02-15T06:59:42Z +8689 2005-07-29T16:38:58Z 824 487 2005-08-01T17:09:58Z 2 2020-02-15T06:59:42Z +8690 2005-07-29T16:39:28Z 1292 291 2005-08-01T14:03:28Z 2 2020-02-15T06:59:42Z +8691 2005-07-29T16:41:23Z 672 446 2005-08-02T12:32:23Z 2 2020-02-15T06:59:42Z +8692 2005-07-29T16:43:39Z 3192 88 2005-08-01T15:54:39Z 2 2020-02-15T06:59:42Z +8693 2005-07-29T16:44:13Z 917 51 2005-08-01T15:56:13Z 1 2020-02-15T06:59:42Z +8694 2005-07-29T16:44:48Z 503 345 2005-08-06T16:28:48Z 1 2020-02-15T06:59:42Z +8695 2005-07-29T16:44:55Z 694 280 2005-08-07T12:47:55Z 1 2020-02-15T06:59:42Z +8696 2005-07-29T16:45:18Z 2553 178 2005-08-07T18:51:18Z 1 2020-02-15T06:59:42Z +8697 2005-07-29T16:46:07Z 443 291 2005-08-02T19:27:07Z 2 2020-02-15T06:59:42Z +8698 2005-07-29T16:52:17Z 2973 324 2005-08-04T13:20:17Z 2 2020-02-15T06:59:42Z +8699 2005-07-29T16:53:00Z 4080 123 2005-08-07T20:31:00Z 1 2020-02-15T06:59:42Z +8700 2005-07-29T16:56:01Z 3710 196 2005-07-31T16:19:01Z 2 2020-02-15T06:59:42Z +8701 2005-07-29T17:02:35Z 3158 245 2005-08-07T19:55:35Z 2 2020-02-15T06:59:42Z +8702 2005-07-29T17:04:37Z 2215 306 2005-08-05T15:30:37Z 2 2020-02-15T06:59:42Z +8703 2005-07-29T17:12:44Z 1065 439 2005-07-30T19:38:44Z 1 2020-02-15T06:59:42Z +8704 2005-07-29T17:13:45Z 2117 107 2005-08-03T20:03:45Z 2 2020-02-15T06:59:42Z +8705 2005-07-29T17:14:29Z 4038 2 2005-08-02T16:01:29Z 1 2020-02-15T06:59:42Z +8706 2005-07-29T17:19:15Z 2886 515 2005-08-03T22:52:15Z 1 2020-02-15T06:59:42Z +8707 2005-07-29T17:21:58Z 2525 157 2005-08-02T14:47:58Z 2 2020-02-15T06:59:42Z +8708 2005-07-29T17:24:13Z 4054 529 2005-08-04T13:57:13Z 1 2020-02-15T06:59:42Z +8709 2005-07-29T17:25:54Z 902 199 2005-08-02T22:35:54Z 1 2020-02-15T06:59:42Z +8710 2005-07-29T17:26:03Z 3391 566 2005-07-30T19:51:03Z 1 2020-02-15T06:59:42Z +8711 2005-07-29T17:27:15Z 3471 575 2005-07-31T12:57:15Z 1 2020-02-15T06:59:42Z +8712 2005-07-29T17:30:06Z 2800 41 2005-08-03T22:55:06Z 2 2020-02-15T06:59:42Z +8713 2005-07-29T17:31:19Z 473 433 2005-08-02T16:37:19Z 2 2020-02-15T06:59:42Z +8714 2005-07-29T17:31:40Z 4547 362 2005-08-04T16:12:40Z 2 2020-02-15T06:59:42Z +8715 2005-07-29T17:33:45Z 860 11 2005-08-01T17:30:45Z 1 2020-02-15T06:59:42Z +8716 2005-07-29T17:39:09Z 2123 48 2005-08-03T20:26:09Z 2 2020-02-15T06:59:42Z +8717 2005-07-29T17:40:45Z 1821 260 2005-08-01T22:38:45Z 2 2020-02-15T06:59:42Z +8718 2005-07-29T17:41:14Z 137 23 2005-08-01T18:22:14Z 2 2020-02-15T06:59:42Z +8719 2005-07-29T17:45:45Z 995 333 2005-08-01T13:53:45Z 1 2020-02-15T06:59:42Z +8720 2005-07-29T17:48:32Z 152 180 2005-08-04T14:30:32Z 2 2020-02-15T06:59:42Z +8721 2005-07-29T17:56:21Z 2416 312 2005-08-02T21:30:21Z 2 2020-02-15T06:59:42Z +8722 2005-07-29T17:58:58Z 1389 401 2005-08-07T23:40:58Z 1 2020-02-15T06:59:42Z +8723 2005-07-29T18:03:47Z 224 39 2005-08-06T18:53:47Z 1 2020-02-15T06:59:42Z +8724 2005-07-29T18:05:21Z 898 372 2005-08-01T15:41:21Z 1 2020-02-15T06:59:42Z +8725 2005-07-29T18:08:42Z 2385 421 2005-08-04T16:01:42Z 2 2020-02-15T06:59:42Z +8726 2005-07-29T18:09:22Z 897 409 2005-08-06T16:24:22Z 1 2020-02-15T06:59:42Z +8727 2005-07-29T18:09:57Z 3031 528 2005-08-03T13:41:57Z 2 2020-02-15T06:59:42Z +8728 2005-07-29T18:12:49Z 973 341 2005-08-06T22:45:49Z 1 2020-02-15T06:59:42Z +8729 2005-07-29T18:23:02Z 3342 83 2005-07-31T16:09:02Z 2 2020-02-15T06:59:42Z +8730 2005-07-29T18:23:34Z 4191 592 2005-08-01T19:56:34Z 1 2020-02-15T06:59:42Z +8731 2005-07-29T18:23:57Z 2638 179 2005-08-05T19:38:57Z 1 2020-02-15T06:59:42Z +8732 2005-07-29T18:25:03Z 1143 346 2005-08-07T18:56:03Z 2 2020-02-15T06:59:42Z +8733 2005-07-29T18:26:34Z 3187 450 2005-08-03T15:06:34Z 1 2020-02-15T06:59:42Z +8734 2005-07-29T18:28:15Z 2374 303 2005-08-05T23:38:15Z 1 2020-02-15T06:59:42Z +8735 2005-07-29T18:28:54Z 2881 570 2005-08-03T12:43:54Z 2 2020-02-15T06:59:42Z +8736 2005-07-29T18:31:15Z 1726 530 2005-07-30T16:24:15Z 2 2020-02-15T06:59:42Z +8737 2005-07-29T18:32:13Z 4154 298 2005-08-05T21:07:13Z 2 2020-02-15T06:59:42Z +8738 2005-07-29T18:32:47Z 3893 210 2005-08-02T13:05:47Z 2 2020-02-15T06:59:42Z +8739 2005-07-29T18:34:33Z 4310 326 2005-08-02T16:05:33Z 1 2020-02-15T06:59:42Z +8740 2005-07-29T18:41:31Z 3781 378 2005-08-01T18:38:31Z 1 2020-02-15T06:59:42Z +8741 2005-07-29T18:44:57Z 165 4 2005-08-03T18:25:57Z 2 2020-02-15T06:59:42Z +8742 2005-07-29T18:56:12Z 918 208 2005-08-03T16:42:12Z 1 2020-02-15T06:59:42Z +8743 2005-07-29T18:57:01Z 2664 282 2005-07-31T22:09:01Z 2 2020-02-15T06:59:42Z +8744 2005-07-29T18:58:24Z 1086 280 2005-08-05T17:56:24Z 1 2020-02-15T06:59:42Z +8745 2005-07-29T19:03:05Z 1766 293 2005-08-06T14:06:05Z 2 2020-02-15T06:59:42Z +8746 2005-07-29T19:03:15Z 2179 275 2005-07-30T17:06:15Z 1 2020-02-15T06:59:42Z +8747 2005-07-29T19:07:57Z 2584 70 2005-07-30T16:01:57Z 1 2020-02-15T06:59:42Z +8748 2005-07-29T19:08:37Z 2184 237 2005-08-01T16:24:37Z 1 2020-02-15T06:59:42Z +8749 2005-07-29T19:13:15Z 2252 456 2005-08-01T15:02:15Z 1 2020-02-15T06:59:42Z +8750 2005-07-29T19:14:21Z 3157 158 2005-07-31T17:22:21Z 2 2020-02-15T06:59:42Z +8751 2005-07-29T19:14:39Z 3467 386 2005-07-31T23:11:39Z 1 2020-02-15T06:59:42Z +8752 2005-07-29T19:15:07Z 4202 253 2005-07-31T13:27:07Z 1 2020-02-15T06:59:42Z +8753 2005-07-29T19:15:50Z 1345 560 2005-07-31T19:13:50Z 2 2020-02-15T06:59:42Z +8754 2005-07-29T19:18:30Z 1678 174 2005-08-05T18:39:30Z 2 2020-02-15T06:59:42Z +8755 2005-07-29T19:18:31Z 1498 372 2005-07-31T19:20:31Z 2 2020-02-15T06:59:42Z +8756 2005-07-29T19:18:57Z 4146 120 2005-08-02T20:07:57Z 2 2020-02-15T06:59:42Z +8757 2005-07-29T19:19:10Z 3473 462 2005-08-02T13:47:10Z 2 2020-02-15T06:59:42Z +8758 2005-07-29T19:20:49Z 2816 442 2005-08-05T21:57:49Z 2 2020-02-15T06:59:42Z +8759 2005-07-29T19:22:37Z 844 209 2005-08-07T15:36:37Z 2 2020-02-15T06:59:42Z +8760 2005-07-29T19:22:40Z 3566 118 2005-08-05T01:09:40Z 2 2020-02-15T06:59:42Z +8761 2005-07-29T19:26:47Z 1317 539 2005-08-08T00:09:47Z 1 2020-02-15T06:59:42Z +8762 2005-07-29T19:30:02Z 2765 463 2005-08-04T18:38:02Z 1 2020-02-15T06:59:42Z +8763 2005-07-29T19:38:24Z 374 510 2005-08-04T16:51:24Z 1 2020-02-15T06:59:42Z +8764 2005-07-29T19:39:04Z 2348 303 2005-08-01T13:52:04Z 1 2020-02-15T06:59:42Z +8765 2005-07-29T19:40:08Z 2631 538 2005-07-31T14:24:08Z 2 2020-02-15T06:59:42Z +8766 2005-07-29T19:41:04Z 3888 338 2005-08-02T00:41:04Z 2 2020-02-15T06:59:42Z +8767 2005-07-29T19:42:33Z 962 467 2005-08-01T20:52:33Z 2 2020-02-15T06:59:42Z +8768 2005-07-29T19:43:02Z 1601 468 2005-08-03T23:36:02Z 1 2020-02-15T06:59:42Z +8769 2005-07-29T19:45:33Z 2180 588 2005-08-05T22:09:33Z 2 2020-02-15T06:59:42Z +8770 2005-07-29T19:53:50Z 4025 499 2005-08-05T14:22:50Z 1 2020-02-15T06:59:42Z +8771 2005-07-29T19:54:41Z 3533 347 2005-08-03T20:38:41Z 1 2020-02-15T06:59:42Z +8772 2005-07-29T19:55:25Z 3526 122 2005-08-05T18:48:25Z 1 2020-02-15T06:59:42Z +8773 2005-07-29T19:55:34Z 131 592 2005-07-30T14:11:34Z 1 2020-02-15T06:59:42Z +8774 2005-07-29T20:05:04Z 315 161 2005-07-31T14:32:04Z 1 2020-02-15T06:59:42Z +8775 2005-07-29T20:05:38Z 1358 44 2005-07-30T21:13:38Z 1 2020-02-15T06:59:42Z +8776 2005-07-29T20:07:06Z 1565 587 2005-08-06T20:42:06Z 2 2020-02-15T06:59:42Z +8777 2005-07-29T20:10:21Z 2462 382 2005-07-30T20:32:21Z 2 2020-02-15T06:59:42Z +8778 2005-07-29T20:14:25Z 3654 582 2005-08-04T00:50:25Z 1 2020-02-15T06:59:42Z +8779 2005-07-29T20:15:00Z 3245 202 2005-08-03T21:17:00Z 1 2020-02-15T06:59:42Z +8780 2005-07-29T20:19:45Z 1095 328 2005-08-03T22:22:45Z 2 2020-02-15T06:59:42Z +8781 2005-07-29T20:20:16Z 3746 235 2005-07-30T16:19:16Z 2 2020-02-15T06:59:42Z +8782 2005-07-29T20:29:34Z 4379 365 2005-08-04T02:19:34Z 1 2020-02-15T06:59:42Z +8783 2005-07-29T20:31:28Z 2316 71 2005-08-02T19:33:28Z 2 2020-02-15T06:59:42Z +8784 2005-07-29T20:35:37Z 2308 580 2005-07-30T17:22:37Z 1 2020-02-15T06:59:42Z +8785 2005-07-29T20:36:26Z 216 42 2005-07-30T15:06:26Z 1 2020-02-15T06:59:42Z +8786 2005-07-29T20:39:49Z 2404 533 2005-08-03T18:08:49Z 1 2020-02-15T06:59:42Z +8787 2005-07-29T20:43:49Z 2366 222 2005-07-31T15:15:49Z 1 2020-02-15T06:59:42Z +8788 2005-07-29T20:46:44Z 3412 121 2005-08-03T02:25:44Z 2 2020-02-15T06:59:42Z +8789 2005-07-29T20:47:27Z 3062 71 2005-08-05T18:36:27Z 1 2020-02-15T06:59:42Z +8790 2005-07-29T20:51:41Z 751 323 2005-07-30T17:30:41Z 2 2020-02-15T06:59:42Z +8791 2005-07-29T20:53:23Z 1677 469 2005-07-31T18:14:23Z 1 2020-02-15T06:59:42Z +8792 2005-07-29T20:56:14Z 3764 203 2005-08-07T16:44:14Z 2 2020-02-15T06:59:42Z +8793 2005-07-29T20:57:22Z 1819 167 2005-08-02T01:40:22Z 2 2020-02-15T06:59:42Z +8794 2005-07-29T20:59:38Z 3509 320 2005-07-31T00:15:38Z 2 2020-02-15T06:59:42Z +8795 2005-07-29T21:04:14Z 1896 302 2005-07-31T02:58:14Z 2 2020-02-15T06:59:42Z +8796 2005-07-29T21:09:11Z 2234 74 2005-08-04T22:55:11Z 1 2020-02-15T06:59:42Z +8797 2005-07-29T21:10:37Z 2929 566 2005-08-07T21:43:37Z 1 2020-02-15T06:59:42Z +8798 2005-07-29T21:15:38Z 800 513 2005-08-05T02:46:38Z 2 2020-02-15T06:59:42Z +8799 2005-07-29T21:16:47Z 326 237 2005-08-07T22:09:47Z 2 2020-02-15T06:59:42Z +8800 2005-07-29T21:18:59Z 2082 207 2005-08-06T19:59:59Z 2 2020-02-15T06:59:42Z +8801 2005-07-29T21:25:22Z 1111 590 2005-08-01T00:02:22Z 1 2020-02-15T06:59:42Z +8802 2005-07-29T21:25:51Z 296 407 2005-07-30T18:15:51Z 2 2020-02-15T06:59:42Z +8803 2005-07-29T21:26:24Z 2814 86 2005-08-06T18:05:24Z 2 2020-02-15T06:59:42Z +8804 2005-07-29T21:28:19Z 4461 363 2005-08-01T20:15:19Z 2 2020-02-15T06:59:42Z +8805 2005-07-29T21:29:58Z 4041 39 2005-08-04T23:12:58Z 1 2020-02-15T06:59:42Z +8806 2005-07-29T21:36:34Z 4085 454 2005-08-02T00:58:34Z 1 2020-02-15T06:59:42Z +8807 2005-07-29T21:36:59Z 2612 396 2005-08-01T17:40:59Z 1 2020-02-15T06:59:42Z +8808 2005-07-29T21:39:07Z 593 173 2005-08-03T02:09:07Z 2 2020-02-15T06:59:42Z +8809 2005-07-29T21:42:49Z 3278 8 2005-08-04T01:13:49Z 1 2020-02-15T06:59:42Z +8810 2005-07-29T21:45:19Z 1233 431 2005-08-08T01:45:19Z 2 2020-02-15T06:59:42Z +8811 2005-07-29T21:46:21Z 2041 245 2005-08-07T16:51:21Z 2 2020-02-15T06:59:42Z +8812 2005-07-29T21:47:40Z 1172 563 2005-08-04T01:18:40Z 2 2020-02-15T06:59:42Z +8813 2005-07-29T21:47:55Z 3442 497 2005-08-05T01:16:55Z 1 2020-02-15T06:59:42Z +8814 2005-07-29T21:49:43Z 1492 487 2005-08-01T19:56:43Z 1 2020-02-15T06:59:42Z +8815 2005-07-29T21:51:26Z 3469 230 2005-08-03T22:37:26Z 1 2020-02-15T06:59:42Z +8816 2005-07-29T21:53:00Z 3984 209 2005-08-01T21:20:00Z 1 2020-02-15T06:59:42Z +8817 2005-07-29T22:09:08Z 2716 175 2005-08-01T19:07:08Z 1 2020-02-15T06:59:42Z +8818 2005-07-29T22:14:04Z 3090 98 2005-08-07T17:26:04Z 1 2020-02-15T06:59:42Z +8819 2005-07-29T22:14:26Z 3100 591 2005-08-06T23:02:26Z 2 2020-02-15T06:59:42Z +8820 2005-07-29T22:14:56Z 481 594 2005-08-05T23:36:56Z 2 2020-02-15T06:59:42Z +8821 2005-07-29T22:18:12Z 52 477 2005-08-05T22:00:12Z 1 2020-02-15T06:59:42Z +8822 2005-07-29T22:20:21Z 744 35 2005-08-06T03:00:21Z 2 2020-02-15T06:59:42Z +8823 2005-07-29T22:22:12Z 951 75 2005-08-07T21:03:12Z 1 2020-02-15T06:59:42Z +8824 2005-07-29T22:22:58Z 3506 164 2005-07-31T21:02:58Z 2 2020-02-15T06:59:42Z +8825 2005-07-29T22:24:16Z 881 101 2005-08-05T00:27:16Z 2 2020-02-15T06:59:42Z +8826 2005-07-29T22:30:16Z 1800 369 2005-07-30T19:43:16Z 1 2020-02-15T06:59:42Z +8827 2005-07-29T22:31:24Z 1517 157 2005-08-06T21:05:24Z 2 2020-02-15T06:59:42Z +8828 2005-07-29T22:32:54Z 1608 547 2005-07-30T20:41:54Z 1 2020-02-15T06:59:42Z +8829 2005-07-29T22:33:34Z 1466 173 2005-08-05T20:23:34Z 2 2020-02-15T06:59:42Z +8830 2005-07-29T22:34:35Z 1751 202 2005-08-05T20:12:35Z 2 2020-02-15T06:59:42Z +8831 2005-07-29T22:37:41Z 3520 13 2005-08-08T04:28:41Z 1 2020-02-15T06:59:42Z +8832 2005-07-29T22:37:49Z 380 125 2005-08-04T23:32:49Z 1 2020-02-15T06:59:42Z +8833 2005-07-29T22:39:36Z 1741 101 2005-08-05T21:19:36Z 1 2020-02-15T06:59:42Z +8834 2005-07-29T22:41:48Z 4477 243 2005-08-05T03:21:48Z 2 2020-02-15T06:59:42Z +8835 2005-07-29T22:44:35Z 2653 237 2005-08-05T23:28:35Z 1 2020-02-15T06:59:42Z +8836 2005-07-29T22:46:08Z 3265 14 2005-08-02T19:53:08Z 2 2020-02-15T06:59:42Z +8837 2005-07-29T22:49:00Z 42 372 2005-08-07T21:56:00Z 2 2020-02-15T06:59:42Z +8838 2005-07-29T22:52:23Z 133 550 2005-08-03T22:49:23Z 1 2020-02-15T06:59:42Z +8839 2005-07-29T22:52:34Z 3440 580 2005-08-05T03:24:34Z 2 2020-02-15T06:59:42Z +8840 2005-07-29T22:55:38Z 1484 295 2005-08-06T02:11:38Z 1 2020-02-15T06:59:42Z +8841 2005-07-29T22:56:07Z 3935 363 2005-08-01T21:21:07Z 2 2020-02-15T06:59:42Z +8842 2005-07-29T23:03:40Z 4203 292 2005-08-06T23:23:40Z 2 2020-02-15T06:59:42Z +8843 2005-07-29T23:04:25Z 406 294 2005-08-05T22:12:25Z 1 2020-02-15T06:59:42Z +8844 2005-07-29T23:05:08Z 327 244 2005-08-06T00:24:08Z 2 2020-02-15T06:59:42Z +8845 2005-07-29T23:06:13Z 3036 543 2005-08-02T20:16:13Z 1 2020-02-15T06:59:42Z +8846 2005-07-29T23:10:28Z 2912 108 2005-08-03T22:07:28Z 2 2020-02-15T06:59:42Z +8847 2005-07-29T23:13:41Z 4133 480 2005-07-31T23:55:41Z 1 2020-02-15T06:59:42Z +8848 2005-07-29T23:20:58Z 2972 545 2005-08-03T17:28:58Z 2 2020-02-15T06:59:42Z +8849 2005-07-29T23:21:01Z 4300 79 2005-08-03T20:01:01Z 1 2020-02-15T06:59:42Z +8850 2005-07-29T23:24:20Z 355 86 2005-07-31T00:43:20Z 2 2020-02-15T06:59:42Z +8851 2005-07-29T23:26:19Z 212 445 2005-08-05T03:59:19Z 2 2020-02-15T06:59:42Z +8852 2005-07-29T23:30:03Z 1138 42 2005-08-05T05:22:03Z 2 2020-02-15T06:59:42Z +8853 2005-07-29T23:34:21Z 2323 58 2005-07-31T21:20:21Z 2 2020-02-15T06:59:42Z +8854 2005-07-29T23:40:07Z 1365 527 2005-08-01T00:35:07Z 2 2020-02-15T06:59:42Z +8855 2005-07-29T23:40:10Z 4388 335 2005-08-02T18:07:10Z 2 2020-02-15T06:59:42Z +8856 2005-07-29T23:42:00Z 2942 365 2005-08-07T03:00:00Z 1 2020-02-15T06:59:42Z +8857 2005-07-29T23:44:22Z 1348 477 2005-07-31T21:32:22Z 2 2020-02-15T06:59:42Z +8858 2005-07-29T23:44:35Z 2378 558 2005-08-01T05:25:35Z 2 2020-02-15T06:59:42Z +8859 2005-07-29T23:44:43Z 603 216 2005-08-07T18:14:43Z 2 2020-02-15T06:59:42Z +8860 2005-07-29T23:45:57Z 2841 531 2005-08-06T02:14:57Z 2 2020-02-15T06:59:42Z +8861 2005-07-29T23:47:29Z 759 560 2005-08-07T01:27:29Z 1 2020-02-15T06:59:42Z +8862 2005-07-29T23:49:23Z 916 21 2005-08-04T20:11:23Z 1 2020-02-15T06:59:42Z +8863 2005-07-29T23:52:01Z 75 47 2005-08-04T20:28:01Z 1 2020-02-15T06:59:42Z +8864 2005-07-29T23:52:12Z 2321 167 2005-07-30T22:12:12Z 1 2020-02-15T06:59:42Z +8865 2005-07-29T23:54:54Z 1835 305 2005-07-31T05:10:54Z 2 2020-02-15T06:59:42Z +8866 2005-07-29T23:58:19Z 1530 44 2005-08-01T05:19:19Z 2 2020-02-15T06:59:42Z +8867 2005-07-30T00:02:18Z 1388 497 2005-08-04T00:44:18Z 2 2020-02-15T06:59:42Z +8868 2005-07-30T00:02:26Z 1229 512 2005-08-01T22:28:26Z 2 2020-02-15T06:59:42Z +8869 2005-07-30T00:06:32Z 4353 308 2005-07-31T20:49:32Z 2 2020-02-15T06:59:42Z +8870 2005-07-30T00:08:08Z 4104 90 2005-08-08T00:15:08Z 2 2020-02-15T06:59:42Z +8871 2005-07-30T00:12:41Z 4535 382 2005-08-08T03:53:41Z 1 2020-02-15T06:59:42Z +8872 2005-07-30T00:13:54Z 2669 186 2005-08-01T18:34:54Z 1 2020-02-15T06:59:42Z +8873 2005-07-30T00:14:32Z 3498 91 2005-08-04T20:42:32Z 2 2020-02-15T06:59:42Z +8874 2005-07-30T00:14:45Z 459 564 2005-08-02T22:34:45Z 2 2020-02-15T06:59:42Z +8875 2005-07-30T00:15:09Z 1294 121 2005-08-04T02:54:09Z 2 2020-02-15T06:59:42Z +8876 2005-07-30T00:15:09Z 2394 579 2005-08-02T23:56:09Z 1 2020-02-15T06:59:42Z +8877 2005-07-30T00:15:22Z 1140 417 2005-07-31T00:53:22Z 1 2020-02-15T06:59:42Z +8878 2005-07-30T00:15:57Z 440 25 2005-08-01T00:22:57Z 2 2020-02-15T06:59:42Z +8879 2005-07-30T00:16:02Z 2956 584 2005-08-06T20:10:02Z 2 2020-02-15T06:59:42Z +8880 2005-07-30T00:16:55Z 2920 51 2005-08-01T01:05:55Z 1 2020-02-15T06:59:42Z +8881 2005-07-30T00:22:31Z 2012 118 2005-08-04T19:10:31Z 1 2020-02-15T06:59:42Z +8882 2005-07-30T00:24:05Z 441 410 2005-08-03T19:48:05Z 2 2020-02-15T06:59:42Z +8883 2005-07-30T00:24:48Z 1421 168 2005-08-04T00:24:48Z 2 2020-02-15T06:59:42Z +8884 2005-07-30T00:26:22Z 3050 80 2005-08-05T03:24:22Z 1 2020-02-15T06:59:42Z +8885 2005-07-30T00:36:26Z 2984 135 2005-08-06T03:05:26Z 1 2020-02-15T06:59:42Z +8886 2005-07-30T00:36:31Z 1469 418 2005-08-08T06:18:31Z 1 2020-02-15T06:59:42Z +8887 2005-07-30T00:36:54Z 4119 389 2005-08-04T19:07:54Z 1 2020-02-15T06:59:42Z +8888 2005-07-30T00:39:36Z 2824 284 2005-08-01T02:28:36Z 2 2020-02-15T06:59:42Z +8889 2005-07-30T00:39:43Z 3457 558 2005-08-02T23:22:43Z 1 2020-02-15T06:59:42Z +8890 2005-07-30T00:42:06Z 3656 470 2005-08-05T21:04:06Z 1 2020-02-15T06:59:42Z +8891 2005-07-30T00:46:55Z 4093 435 2005-08-06T23:32:55Z 2 2020-02-15T06:59:42Z +8892 2005-07-30T00:47:03Z 1584 184 2005-08-06T03:23:03Z 2 2020-02-15T06:59:42Z +8893 2005-07-30T00:48:19Z 1048 147 2005-08-01T03:25:19Z 1 2020-02-15T06:59:42Z +8894 2005-07-30T00:48:31Z 2055 552 2005-07-31T05:49:31Z 1 2020-02-15T06:59:42Z +8895 2005-07-30T00:49:17Z 3217 494 2005-07-31T01:56:17Z 1 2020-02-15T06:59:42Z +8896 2005-07-30T00:51:21Z 3560 205 2005-07-31T22:33:21Z 1 2020-02-15T06:59:42Z +8897 2005-07-30T01:00:17Z 1964 459 2005-08-01T03:41:17Z 1 2020-02-15T06:59:42Z +8898 2005-07-30T01:02:20Z 3961 452 2005-08-05T22:02:20Z 2 2020-02-15T06:59:42Z +8899 2005-07-30T01:05:30Z 4148 252 2005-08-01T23:32:30Z 1 2020-02-15T06:59:42Z +8900 2005-07-30T01:07:03Z 3057 375 2005-08-06T04:07:03Z 1 2020-02-15T06:59:42Z +8901 2005-07-30T01:07:12Z 4392 28 2005-08-02T06:34:12Z 1 2020-02-15T06:59:42Z +8902 2005-07-30T01:08:06Z 2983 408 2005-08-05T00:00:06Z 2 2020-02-15T06:59:42Z +8903 2005-07-30T01:08:06Z 4546 406 2005-07-30T21:47:06Z 2 2020-02-15T06:59:42Z +8904 2005-07-30T01:08:33Z 3622 575 2005-08-04T02:33:33Z 1 2020-02-15T06:59:42Z +8905 2005-07-30T01:11:11Z 2154 240 2005-08-04T22:39:11Z 1 2020-02-15T06:59:42Z +8906 2005-07-30T01:21:39Z 2667 560 2005-08-07T02:14:39Z 2 2020-02-15T06:59:42Z +8907 2005-07-30T01:25:03Z 3239 576 2005-08-03T05:41:03Z 1 2020-02-15T06:59:42Z +8908 2005-07-30T01:26:05Z 4498 391 2005-07-31T20:39:05Z 1 2020-02-15T06:59:42Z +8909 2005-07-30T01:28:03Z 2606 556 2005-08-06T04:40:03Z 2 2020-02-15T06:59:42Z +8910 2005-07-30T01:29:48Z 1039 569 2005-07-31T21:33:48Z 2 2020-02-15T06:59:42Z +8911 2005-07-30T01:30:57Z 2159 445 2005-08-02T20:01:57Z 1 2020-02-15T06:59:42Z +8912 2005-07-30T01:31:25Z 1686 280 2005-08-02T07:14:25Z 2 2020-02-15T06:59:42Z +8913 2005-07-30T01:35:01Z 429 391 2005-08-06T06:13:01Z 1 2020-02-15T06:59:42Z +8914 2005-07-30T01:42:03Z 1347 32 2005-08-04T03:53:03Z 1 2020-02-15T06:59:42Z +8915 2005-07-30T01:42:09Z 3030 42 2005-08-04T23:29:09Z 2 2020-02-15T06:59:42Z +8916 2005-07-30T01:42:21Z 3852 377 2005-08-03T05:28:21Z 1 2020-02-15T06:59:42Z +8917 2005-07-30T01:47:02Z 4460 309 2005-08-05T21:10:02Z 2 2020-02-15T06:59:42Z +8918 2005-07-30T01:56:22Z 2544 424 2005-08-04T01:58:22Z 2 2020-02-15T06:59:42Z +8919 2005-07-30T01:57:03Z 4006 337 2005-08-08T05:14:03Z 1 2020-02-15T06:59:42Z +8920 2005-07-30T01:59:24Z 4079 78 2005-08-02T22:37:24Z 2 2020-02-15T06:59:42Z +8921 2005-07-30T02:04:02Z 1016 354 2005-07-31T06:18:02Z 1 2020-02-15T06:59:42Z +8922 2005-07-30T02:08:25Z 1696 446 2005-08-08T07:19:25Z 2 2020-02-15T06:59:42Z +8923 2005-07-30T02:08:49Z 2425 446 2005-08-03T23:45:49Z 2 2020-02-15T06:59:42Z +8924 2005-07-30T02:08:58Z 2291 38 2005-08-05T02:13:58Z 2 2020-02-15T06:59:42Z +8925 2005-07-30T02:09:14Z 3753 500 2005-07-30T21:39:14Z 1 2020-02-15T06:59:42Z +8926 2005-07-30T02:10:31Z 3677 510 2005-08-03T23:56:31Z 1 2020-02-15T06:59:42Z +8927 2005-07-30T02:13:31Z 272 15 2005-08-01T01:34:31Z 1 2020-02-15T06:59:42Z +8928 2005-07-30T02:18:19Z 706 366 2005-08-05T00:49:19Z 2 2020-02-15T06:59:42Z +8929 2005-07-30T02:28:22Z 3501 472 2005-08-06T06:13:22Z 1 2020-02-15T06:59:42Z +8930 2005-07-30T02:28:38Z 1107 202 2005-08-02T01:43:38Z 2 2020-02-15T06:59:42Z +8931 2005-07-30T02:30:07Z 16 268 2005-08-02T08:24:07Z 2 2020-02-15T06:59:42Z +8932 2005-07-30T02:31:26Z 4537 295 2005-08-04T02:17:26Z 2 2020-02-15T06:59:42Z +8933 2005-07-30T02:36:06Z 1664 260 2005-08-02T23:37:06Z 2 2020-02-15T06:59:42Z +8934 2005-07-30T02:37:05Z 3223 494 2005-08-01T20:42:05Z 1 2020-02-15T06:59:42Z +8935 2005-07-30T02:38:45Z 285 76 2005-08-02T07:11:45Z 2 2020-02-15T06:59:42Z +8936 2005-07-30T02:47:13Z 1408 227 2005-08-01T02:25:13Z 2 2020-02-15T06:59:42Z +8937 2005-07-30T02:53:21Z 2406 544 2005-08-08T03:33:21Z 2 2020-02-15T06:59:42Z +8938 2005-07-30T02:56:08Z 4031 92 2005-07-31T23:08:08Z 2 2020-02-15T06:59:42Z +8939 2005-07-30T02:56:53Z 4175 598 2005-08-01T21:19:53Z 1 2020-02-15T06:59:42Z +8940 2005-07-30T02:57:26Z 1566 212 2005-08-05T22:05:26Z 1 2020-02-15T06:59:42Z +8941 2005-07-30T02:59:21Z 4147 329 2005-08-02T05:18:21Z 2 2020-02-15T06:59:42Z +8942 2005-07-30T03:01:07Z 4375 77 2005-08-06T22:50:07Z 2 2020-02-15T06:59:42Z +8943 2005-07-30T03:06:48Z 3698 531 2005-08-02T00:59:48Z 2 2020-02-15T06:59:42Z +8944 2005-07-30T03:11:44Z 3513 172 2005-08-06T23:15:44Z 2 2020-02-15T06:59:42Z +8945 2005-07-30T03:11:48Z 1441 447 2005-08-07T07:53:48Z 2 2020-02-15T06:59:42Z +8946 2005-07-30T03:14:53Z 3510 257 2005-08-04T00:50:53Z 1 2020-02-15T06:59:42Z +8947 2005-07-30T03:15:37Z 341 24 2005-08-04T07:10:37Z 2 2020-02-15T06:59:42Z +8948 2005-07-30T03:16:18Z 948 597 2005-08-04T03:16:18Z 1 2020-02-15T06:59:42Z +8949 2005-07-30T03:17:02Z 2876 231 2005-08-08T07:38:02Z 1 2020-02-15T06:59:42Z +8950 2005-07-30T03:17:13Z 3015 11 2005-08-07T00:20:13Z 1 2020-02-15T06:59:42Z +8951 2005-07-30T03:18:24Z 127 336 2005-08-08T08:50:24Z 2 2020-02-15T06:59:42Z +8952 2005-07-30T03:20:38Z 4397 36 2005-08-02T02:54:38Z 1 2020-02-15T06:59:42Z +8953 2005-07-30T03:21:05Z 535 278 2005-08-02T05:24:05Z 2 2020-02-15T06:59:42Z +8954 2005-07-30T03:25:51Z 991 137 2005-08-06T05:10:51Z 2 2020-02-15T06:59:42Z +8955 2005-07-30T03:28:27Z 4532 405 2005-08-04T04:56:27Z 2 2020-02-15T06:59:42Z +8956 2005-07-30T03:32:29Z 2129 71 2005-08-01T03:08:29Z 2 2020-02-15T06:59:42Z +8957 2005-07-30T03:34:10Z 811 158 2005-08-06T07:05:10Z 1 2020-02-15T06:59:42Z +8958 2005-07-30T03:34:26Z 1556 536 2005-08-06T08:14:26Z 1 2020-02-15T06:59:42Z +8959 2005-07-30T03:35:49Z 3508 550 2005-08-06T02:02:49Z 2 2020-02-15T06:59:42Z +8960 2005-07-30T03:36:31Z 391 525 2005-08-01T23:46:31Z 2 2020-02-15T06:59:42Z +8961 2005-07-30T03:43:35Z 3679 211 2005-08-06T07:42:35Z 1 2020-02-15T06:59:42Z +8962 2005-07-30T03:43:45Z 4439 406 2005-08-07T00:33:45Z 1 2020-02-15T06:59:42Z +8963 2005-07-30T03:46:26Z 100 544 2005-08-08T06:12:26Z 1 2020-02-15T06:59:42Z +8964 2005-07-30T03:49:35Z 280 424 2005-08-06T23:28:35Z 2 2020-02-15T06:59:42Z +8965 2005-07-30T03:52:37Z 2419 599 2005-08-05T01:28:37Z 2 2020-02-15T06:59:42Z +8966 2005-07-30T03:54:12Z 1903 522 2005-07-31T04:51:12Z 1 2020-02-15T06:59:42Z +8967 2005-07-30T03:56:55Z 1536 480 2005-08-06T05:25:55Z 2 2020-02-15T06:59:42Z +8968 2005-07-30T03:57:32Z 2280 339 2005-07-31T00:09:32Z 1 2020-02-15T06:59:42Z +8969 2005-07-30T04:00:19Z 2043 121 2005-08-06T04:39:19Z 1 2020-02-15T06:59:42Z +8970 2005-07-30T04:02:05Z 2940 313 2005-08-07T03:40:05Z 2 2020-02-15T06:59:42Z +8971 2005-07-30T04:03:58Z 3572 35 2005-08-08T04:16:58Z 2 2020-02-15T06:59:42Z +8972 2005-07-30T04:06:25Z 1974 89 2005-08-04T22:49:25Z 1 2020-02-15T06:59:42Z +8973 2005-07-30T04:09:13Z 886 282 2005-08-07T22:30:13Z 2 2020-02-15T06:59:42Z +8974 2005-07-30T04:09:16Z 3376 425 2005-08-04T06:55:16Z 1 2020-02-15T06:59:42Z +8975 2005-07-30T04:10:18Z 3288 356 2005-08-07T01:06:18Z 2 2020-02-15T06:59:42Z +8976 2005-07-30T04:12:32Z 2135 507 2005-08-04T23:08:32Z 1 2020-02-15T06:59:42Z +8977 2005-07-30T04:14:07Z 4099 334 2005-08-05T23:45:07Z 2 2020-02-15T06:59:42Z +8978 2005-07-30T04:14:28Z 711 5 2005-08-06T09:08:28Z 1 2020-02-15T06:59:42Z +8979 2005-07-30T04:20:25Z 1394 529 2005-08-08T03:39:25Z 2 2020-02-15T06:59:42Z +8980 2005-07-30T04:22:15Z 3061 105 2005-08-04T08:16:15Z 1 2020-02-15T06:59:42Z +8981 2005-07-30T04:25:30Z 4413 310 2005-08-06T02:37:30Z 1 2020-02-15T06:59:42Z +8982 2005-07-30T04:31:02Z 1128 251 2005-07-31T04:22:02Z 1 2020-02-15T06:59:42Z +8983 2005-07-30T04:31:08Z 1861 144 2005-07-31T09:28:08Z 1 2020-02-15T06:59:42Z +8984 2005-07-30T04:31:50Z 2126 485 2005-08-04T03:24:50Z 1 2020-02-15T06:59:42Z +8985 2005-07-30T04:34:51Z 3179 12 2005-08-06T00:45:51Z 2 2020-02-15T06:59:42Z +8986 2005-07-30T04:37:20Z 3992 551 2005-07-31T23:54:20Z 1 2020-02-15T06:59:42Z +8987 2005-07-30T04:37:36Z 1434 135 2005-08-08T10:14:36Z 2 2020-02-15T06:59:42Z +8988 2005-07-30T04:38:49Z 777 487 2005-08-07T07:00:49Z 2 2020-02-15T06:59:42Z +8989 2005-07-30T04:39:19Z 954 575 2005-08-06T02:11:19Z 1 2020-02-15T06:59:42Z +8990 2005-07-30T04:41:42Z 1869 292 2005-08-07T22:50:42Z 2 2020-02-15T06:59:42Z +8991 2005-07-30T04:42:54Z 4540 474 2005-08-01T23:51:54Z 1 2020-02-15T06:59:42Z +8992 2005-07-30T04:44:18Z 4478 54 2005-08-01T00:29:18Z 1 2020-02-15T06:59:42Z +8993 2005-07-30T04:51:25Z 1891 382 2005-08-01T01:04:25Z 1 2020-02-15T06:59:42Z +8994 2005-07-30T04:51:32Z 1527 287 2005-08-07T09:41:32Z 1 2020-02-15T06:59:42Z +8995 2005-07-30T04:53:11Z 3575 331 2005-08-07T00:24:11Z 1 2020-02-15T06:59:42Z +8996 2005-07-30T04:53:23Z 1970 579 2005-07-31T06:01:23Z 1 2020-02-15T06:59:42Z +8997 2005-07-30T04:53:56Z 850 31 2005-08-03T07:10:56Z 1 2020-02-15T06:59:42Z +8998 2005-07-30T04:54:14Z 1573 120 2005-08-08T08:18:14Z 2 2020-02-15T06:59:42Z +8999 2005-07-30T04:55:46Z 3458 424 2005-08-01T00:16:46Z 2 2020-02-15T06:59:42Z +9000 2005-07-30T04:58:55Z 3763 290 2005-08-08T04:01:55Z 2 2020-02-15T06:59:42Z +9001 2005-07-30T04:59:41Z 3682 440 2005-07-31T08:56:41Z 2 2020-02-15T06:59:42Z +9002 2005-07-30T05:02:21Z 1936 137 2005-07-31T04:58:21Z 1 2020-02-15T06:59:42Z +9003 2005-07-30T05:02:52Z 1605 507 2005-07-31T10:33:52Z 1 2020-02-15T06:59:42Z +9004 2005-07-30T05:04:27Z 3775 178 2005-07-31T00:49:27Z 1 2020-02-15T06:59:42Z +9005 2005-07-30T05:04:58Z 157 204 2005-08-03T07:41:58Z 2 2020-02-15T06:59:42Z +9006 2005-07-30T05:06:32Z 3315 49 2005-07-31T08:24:32Z 1 2020-02-15T06:59:42Z +9007 2005-07-30T05:09:32Z 2813 63 2005-08-02T06:12:32Z 2 2020-02-15T06:59:42Z +9008 2005-07-30T05:10:26Z 3592 371 2005-07-31T08:13:26Z 1 2020-02-15T06:59:42Z +9009 2005-07-30T05:12:01Z 4136 166 2005-08-07T10:58:01Z 1 2020-02-15T06:59:42Z +9010 2005-07-30T05:12:04Z 1698 152 2005-08-06T02:54:04Z 2 2020-02-15T06:59:42Z +9011 2005-07-30T05:16:29Z 2799 236 2005-08-05T06:57:29Z 1 2020-02-15T06:59:42Z +9012 2005-07-30T05:18:57Z 3604 494 2005-08-06T06:21:57Z 1 2020-02-15T06:59:42Z +9013 2005-07-30T05:19:20Z 2367 347 2005-08-04T01:35:20Z 1 2020-02-15T06:59:42Z +9014 2005-07-30T05:19:27Z 311 297 2005-08-01T01:10:27Z 2 2020-02-15T06:59:42Z +9015 2005-07-30T05:21:32Z 4128 203 2005-08-08T07:03:32Z 2 2020-02-15T06:59:42Z +9016 2005-07-30T05:26:13Z 4309 312 2005-08-04T00:25:13Z 2 2020-02-15T06:59:42Z +9017 2005-07-30T05:26:20Z 3325 319 2005-08-04T10:00:20Z 2 2020-02-15T06:59:42Z +9018 2005-07-30T05:28:40Z 1982 218 2005-08-07T01:34:40Z 1 2020-02-15T06:59:42Z +9019 2005-07-30T05:28:53Z 946 235 2005-08-03T02:16:53Z 2 2020-02-15T06:59:42Z +9020 2005-07-30T05:31:27Z 1700 142 2005-08-08T06:44:27Z 2 2020-02-15T06:59:42Z +9021 2005-07-30T05:34:24Z 674 498 2005-08-03T04:13:24Z 1 2020-02-15T06:59:42Z +9022 2005-07-30T05:34:45Z 4473 159 2005-08-03T23:57:45Z 2 2020-02-15T06:59:42Z +9023 2005-07-30T05:36:40Z 2911 148 2005-08-07T06:20:40Z 1 2020-02-15T06:59:42Z +9024 2005-07-30T05:44:42Z 164 329 2005-08-05T03:15:42Z 2 2020-02-15T06:59:42Z +9025 2005-07-30T05:50:08Z 2244 473 2005-07-31T09:58:08Z 1 2020-02-15T06:59:42Z +9026 2005-07-30T05:55:31Z 1524 423 2005-08-01T03:19:31Z 1 2020-02-15T06:59:42Z +9027 2005-07-30T05:58:27Z 449 72 2005-08-03T03:02:27Z 1 2020-02-15T06:59:42Z +9028 2005-07-30T06:00:35Z 2687 119 2005-08-02T01:35:35Z 1 2020-02-15T06:59:42Z +9029 2005-07-30T06:03:11Z 2220 52 2005-08-04T01:42:11Z 1 2020-02-15T06:59:42Z +9030 2005-07-30T06:05:38Z 2237 367 2005-08-03T00:19:38Z 1 2020-02-15T06:59:42Z +9031 2005-07-30T06:06:10Z 2377 2 2005-08-04T10:45:10Z 2 2020-02-15T06:59:42Z +9032 2005-07-30T06:06:54Z 4448 369 2005-08-01T05:27:54Z 1 2020-02-15T06:59:42Z +9033 2005-07-30T06:07:42Z 3416 35 2005-08-05T01:18:42Z 1 2020-02-15T06:59:42Z +9034 2005-07-30T06:10:58Z 3847 144 2005-08-08T05:00:58Z 2 2020-02-15T06:59:42Z +9035 2005-07-30T06:16:07Z 3785 243 2005-08-06T09:22:07Z 1 2020-02-15T06:59:42Z +9036 2005-07-30T06:18:38Z 790 18 2005-07-31T01:22:38Z 1 2020-02-15T06:59:42Z +9037 2005-07-30T06:23:14Z 3833 356 2005-08-08T06:25:14Z 1 2020-02-15T06:59:42Z +9038 2005-07-30T06:23:35Z 217 514 2005-08-06T11:10:35Z 1 2020-02-15T06:59:42Z +9039 2005-07-30T06:24:28Z 4493 485 2005-08-08T00:28:28Z 1 2020-02-15T06:59:42Z +9040 2005-07-30T06:31:45Z 392 33 2005-08-03T12:20:45Z 1 2020-02-15T06:59:42Z +9041 2005-07-30T06:32:36Z 1103 454 2005-08-01T10:28:36Z 2 2020-02-15T06:59:42Z +9042 2005-07-30T06:33:55Z 2770 398 2005-08-04T09:31:55Z 2 2020-02-15T06:59:42Z +9043 2005-07-30T06:34:07Z 4127 9 2005-08-02T01:16:07Z 1 2020-02-15T06:59:42Z +9044 2005-07-30T06:35:21Z 3796 319 2005-07-31T10:27:21Z 1 2020-02-15T06:59:42Z +9045 2005-07-30T06:36:57Z 4521 46 2005-08-08T01:51:57Z 1 2020-02-15T06:59:42Z +9046 2005-07-30T06:46:55Z 1736 215 2005-08-01T02:21:55Z 2 2020-02-15T06:59:42Z +9047 2005-07-30T06:56:33Z 256 522 2005-08-08T06:40:33Z 2 2020-02-15T06:59:42Z +9048 2005-07-30T06:57:07Z 3929 100 2005-08-05T00:57:07Z 1 2020-02-15T06:59:42Z +9049 2005-07-30T06:57:28Z 2620 417 2005-08-04T09:02:28Z 1 2020-02-15T06:59:42Z +9050 2005-07-30T06:59:55Z 106 40 2005-08-06T06:37:55Z 1 2020-02-15T06:59:42Z +9051 2005-07-30T07:05:54Z 1847 337 2005-08-07T09:12:54Z 2 2020-02-15T06:59:42Z +9052 2005-07-30T07:06:08Z 3351 408 2005-08-03T10:30:08Z 1 2020-02-15T06:59:42Z +9053 2005-07-30T07:07:39Z 2535 485 2005-08-01T09:22:39Z 2 2020-02-15T06:59:42Z +9054 2005-07-30T07:11:44Z 2860 209 2005-08-08T01:55:44Z 2 2020-02-15T06:59:42Z +9055 2005-07-30T07:13:07Z 634 512 2005-08-01T12:18:07Z 1 2020-02-15T06:59:42Z +9056 2005-07-30T07:13:20Z 4363 380 2005-08-03T07:36:20Z 1 2020-02-15T06:59:42Z +9057 2005-07-30T07:14:18Z 3141 202 2005-08-01T05:10:18Z 2 2020-02-15T06:59:42Z +9058 2005-07-30T07:15:45Z 4214 403 2005-07-31T02:57:45Z 2 2020-02-15T06:59:42Z +9059 2005-07-30T07:18:44Z 480 267 2005-08-08T08:39:44Z 1 2020-02-15T06:59:42Z +9060 2005-07-30T07:20:36Z 4360 87 2005-08-03T10:51:36Z 1 2020-02-15T06:59:42Z +9061 2005-07-30T07:21:52Z 1933 255 2005-08-08T10:52:52Z 1 2020-02-15T06:59:42Z +9062 2005-07-30T07:23:17Z 2780 358 2005-08-02T12:07:17Z 1 2020-02-15T06:59:42Z +9063 2005-07-30T07:24:34Z 2851 564 2005-08-05T01:28:34Z 2 2020-02-15T06:59:42Z +9064 2005-07-30T07:24:55Z 1417 194 2005-08-07T08:44:55Z 2 2020-02-15T06:59:42Z +9065 2005-07-30T07:25:09Z 349 238 2005-07-31T05:18:09Z 2 2020-02-15T06:59:42Z +9066 2005-07-30T07:28:54Z 196 171 2005-08-02T05:23:54Z 1 2020-02-15T06:59:42Z +9067 2005-07-30T07:31:01Z 3628 382 2005-08-04T11:44:01Z 2 2020-02-15T06:59:42Z +9068 2005-07-30T07:31:45Z 2264 78 2005-08-08T06:40:45Z 1 2020-02-15T06:59:42Z +9069 2005-07-30T07:39:59Z 1852 258 2005-08-02T04:10:59Z 1 2020-02-15T06:59:42Z +9070 2005-07-30T07:40:39Z 3690 276 2005-08-01T04:19:39Z 2 2020-02-15T06:59:42Z +9071 2005-07-30T07:40:58Z 3151 523 2005-08-01T06:59:58Z 2 2020-02-15T06:59:42Z +9072 2005-07-30T07:45:49Z 4536 106 2005-08-04T10:00:49Z 1 2020-02-15T06:59:42Z +9073 2005-07-30T07:49:56Z 2185 141 2005-08-05T06:25:56Z 2 2020-02-15T06:59:42Z +9074 2005-07-30T07:50:10Z 3244 84 2005-08-01T11:21:10Z 2 2020-02-15T06:59:42Z +9075 2005-07-30T07:55:14Z 1931 20 2005-08-02T13:49:14Z 1 2020-02-15T06:59:42Z +9076 2005-07-30T07:58:12Z 496 447 2005-08-08T06:04:12Z 1 2020-02-15T06:59:42Z +9077 2005-07-30T08:00:19Z 4324 471 2005-08-08T11:21:19Z 1 2020-02-15T06:59:42Z +9078 2005-07-30T08:01:00Z 955 300 2005-07-31T10:39:00Z 1 2020-02-15T06:59:42Z +9079 2005-07-30T08:02:00Z 2143 193 2005-07-31T04:02:00Z 2 2020-02-15T06:59:42Z +9080 2005-07-30T08:02:39Z 94 276 2005-08-06T12:02:39Z 1 2020-02-15T06:59:42Z +9081 2005-07-30T08:09:58Z 3040 572 2005-08-03T13:27:58Z 1 2020-02-15T06:59:42Z +9082 2005-07-30T08:11:22Z 4042 438 2005-08-06T09:26:22Z 2 2020-02-15T06:59:42Z +9083 2005-07-30T08:14:27Z 456 488 2005-08-07T14:02:27Z 1 2020-02-15T06:59:42Z +9084 2005-07-30T08:14:29Z 3950 171 2005-08-03T11:12:29Z 2 2020-02-15T06:59:42Z +9085 2005-07-30T08:17:24Z 3400 33 2005-08-03T09:35:24Z 2 2020-02-15T06:59:42Z +9086 2005-07-30T08:18:46Z 2779 57 2005-08-06T06:10:46Z 2 2020-02-15T06:59:42Z +9087 2005-07-30T08:19:47Z 4048 546 2005-08-02T07:15:47Z 1 2020-02-15T06:59:42Z +9088 2005-07-30T08:21:02Z 3407 245 2005-08-01T09:55:02Z 1 2020-02-15T06:59:42Z +9089 2005-07-30T08:23:39Z 490 369 2005-07-31T06:00:39Z 1 2020-02-15T06:59:42Z +9090 2005-07-30T08:24:42Z 3426 104 2005-08-08T06:17:42Z 2 2020-02-15T06:59:42Z +9091 2005-07-30T08:30:45Z 2249 66 2005-08-07T13:28:45Z 1 2020-02-15T06:59:42Z +9092 2005-07-30T08:30:56Z 1877 17 2005-08-06T08:09:56Z 2 2020-02-15T06:59:42Z +9093 2005-07-30T08:33:24Z 2208 96 2005-08-04T11:07:24Z 1 2020-02-15T06:59:42Z +9094 2005-07-30T08:35:10Z 2699 140 2005-08-07T08:18:10Z 2 2020-02-15T06:59:42Z +9095 2005-07-30T08:38:36Z 3019 511 2005-07-31T06:14:36Z 1 2020-02-15T06:59:42Z +9096 2005-07-30T08:39:23Z 540 216 2005-08-01T03:33:23Z 1 2020-02-15T06:59:42Z +9097 2005-07-30T08:40:35Z 570 173 2005-08-04T11:19:35Z 2 2020-02-15T06:59:42Z +9098 2005-07-30T08:44:21Z 1267 144 2005-08-08T12:31:21Z 1 2020-02-15T06:59:42Z +9099 2005-07-30T08:45:48Z 594 250 2005-08-01T03:18:48Z 2 2020-02-15T06:59:42Z +9100 2005-07-30T08:46:09Z 4117 4 2005-08-05T10:34:09Z 1 2020-02-15T06:59:42Z +9101 2005-07-30T08:47:13Z 3165 566 2005-08-02T12:52:13Z 1 2020-02-15T06:59:42Z +9102 2005-07-30T08:48:20Z 1154 276 2005-08-04T10:19:20Z 1 2020-02-15T06:59:42Z +9103 2005-07-30T08:49:26Z 3806 280 2005-07-31T14:15:26Z 1 2020-02-15T06:59:42Z +9104 2005-07-30T08:49:55Z 3372 322 2005-08-06T12:23:55Z 1 2020-02-15T06:59:42Z +9105 2005-07-30T08:50:25Z 4443 262 2005-08-05T06:08:25Z 1 2020-02-15T06:59:42Z +9106 2005-07-30T08:52:34Z 2935 148 2005-08-02T07:38:34Z 2 2020-02-15T06:59:42Z +9107 2005-07-30T08:52:45Z 1068 531 2005-08-05T08:39:45Z 2 2020-02-15T06:59:42Z +9108 2005-07-30T08:56:36Z 3977 490 2005-08-04T11:07:36Z 1 2020-02-15T06:59:42Z +9109 2005-07-30T08:58:24Z 787 266 2005-08-07T06:56:24Z 1 2020-02-15T06:59:42Z +9110 2005-07-30T09:05:42Z 1474 317 2005-08-03T05:15:42Z 1 2020-02-15T06:59:42Z +9111 2005-07-30T09:05:44Z 166 211 2005-08-04T14:27:44Z 2 2020-02-15T06:59:42Z +9112 2005-07-30T09:06:31Z 395 74 2005-08-04T05:12:31Z 2 2020-02-15T06:59:42Z +9113 2005-07-30T09:09:03Z 3903 374 2005-07-31T03:13:03Z 1 2020-02-15T06:59:42Z +9114 2005-07-30T09:13:21Z 893 18 2005-08-05T06:00:21Z 2 2020-02-15T06:59:42Z +9115 2005-07-30T09:13:55Z 3750 322 2005-08-04T04:02:55Z 2 2020-02-15T06:59:42Z +9116 2005-07-30T09:19:41Z 2917 446 2005-08-03T08:01:41Z 2 2020-02-15T06:59:42Z +9117 2005-07-30T09:20:59Z 3055 371 2005-08-07T08:47:59Z 1 2020-02-15T06:59:42Z +9118 2005-07-30T09:24:18Z 4538 172 2005-08-02T14:46:18Z 2 2020-02-15T06:59:42Z +9119 2005-07-30T09:25:56Z 275 305 2005-08-03T03:36:56Z 1 2020-02-15T06:59:42Z +9120 2005-07-30T09:26:08Z 139 473 2005-08-08T09:52:08Z 1 2020-02-15T06:59:42Z +9121 2005-07-30T09:36:26Z 3098 150 2005-08-05T15:17:26Z 2 2020-02-15T06:59:42Z +9122 2005-07-30T09:36:52Z 627 365 2005-08-05T13:20:52Z 1 2020-02-15T06:59:42Z +9123 2005-07-30T09:39:15Z 3748 293 2005-08-02T08:12:15Z 2 2020-02-15T06:59:42Z +9124 2005-07-30T09:43:12Z 4552 105 2005-08-06T06:17:12Z 1 2020-02-15T06:59:42Z +9125 2005-07-30T09:43:39Z 333 335 2005-08-07T14:02:39Z 1 2020-02-15T06:59:42Z +9126 2005-07-30T09:44:15Z 4495 590 2005-08-02T11:02:15Z 2 2020-02-15T06:59:42Z +9127 2005-07-30T09:46:36Z 4114 300 2005-07-31T07:43:36Z 1 2020-02-15T06:59:42Z +9128 2005-07-30T09:51:14Z 3647 372 2005-08-07T06:23:14Z 1 2020-02-15T06:59:42Z +9129 2005-07-30T09:51:21Z 2658 125 2005-08-07T08:50:21Z 2 2020-02-15T06:59:42Z +9130 2005-07-30T09:55:10Z 1715 354 2005-08-04T08:57:10Z 1 2020-02-15T06:59:42Z +9131 2005-07-30T09:55:57Z 623 142 2005-08-01T14:21:57Z 1 2020-02-15T06:59:42Z +9132 2005-07-30T09:56:00Z 402 159 2005-08-02T09:22:00Z 1 2020-02-15T06:59:42Z +9133 2005-07-30T09:59:00Z 408 576 2005-08-07T04:24:00Z 1 2020-02-15T06:59:42Z +9134 2005-07-30T10:00:21Z 3797 559 2005-08-01T05:01:21Z 1 2020-02-15T06:59:42Z +9135 2005-07-30T10:06:53Z 821 161 2005-08-03T13:57:53Z 2 2020-02-15T06:59:42Z +9136 2005-07-30T10:07:20Z 1734 57 2005-07-31T08:20:20Z 2 2020-02-15T06:59:42Z +9137 2005-07-30T10:09:24Z 840 459 2005-08-06T04:30:24Z 2 2020-02-15T06:59:42Z +9138 2005-07-30T10:11:52Z 2550 17 2005-07-31T07:05:52Z 2 2020-02-15T06:59:42Z +9139 2005-07-30T10:11:52Z 2809 133 2005-08-03T12:44:52Z 1 2020-02-15T06:59:42Z +9140 2005-07-30T10:12:01Z 4095 25 2005-08-06T09:16:01Z 2 2020-02-15T06:59:42Z +9141 2005-07-30T10:16:04Z 3087 484 2005-08-05T08:01:04Z 1 2020-02-15T06:59:42Z +9142 2005-07-30T10:21:03Z 4467 486 2005-08-04T15:14:03Z 1 2020-02-15T06:59:42Z +9143 2005-07-30T10:22:11Z 2962 511 2005-08-07T06:13:11Z 2 2020-02-15T06:59:42Z +9144 2005-07-30T10:22:15Z 718 381 2005-08-05T08:14:15Z 1 2020-02-15T06:59:42Z +9145 2005-07-30T10:27:55Z 559 176 2005-08-07T14:41:55Z 2 2020-02-15T06:59:42Z +9146 2005-07-30T10:32:08Z 483 302 2005-08-08T14:30:08Z 1 2020-02-15T06:59:42Z +9147 2005-07-30T10:38:59Z 4167 394 2005-08-02T11:45:59Z 2 2020-02-15T06:59:42Z +9148 2005-07-30T10:39:10Z 1407 333 2005-08-04T07:17:10Z 2 2020-02-15T06:59:42Z +9149 2005-07-30T10:45:12Z 2632 21 2005-08-01T09:40:12Z 1 2020-02-15T06:59:42Z +9150 2005-07-30T10:49:32Z 2834 213 2005-08-08T15:43:32Z 1 2020-02-15T06:59:42Z +9151 2005-07-30T10:50:53Z 3956 102 2005-08-07T08:19:53Z 1 2020-02-15T06:59:42Z +9152 2005-07-30T10:51:27Z 3607 595 2005-07-31T06:38:27Z 2 2020-02-15T06:59:42Z +9153 2005-07-30T10:58:16Z 3743 589 2005-08-03T06:16:16Z 2 2020-02-15T06:59:42Z +9154 2005-07-30T10:59:54Z 576 312 2005-08-05T16:47:54Z 1 2020-02-15T06:59:42Z +9155 2005-07-30T11:00:00Z 3787 107 2005-08-02T05:24:00Z 2 2020-02-15T06:59:42Z +9156 2005-07-30T11:04:55Z 1747 145 2005-07-31T14:10:55Z 2 2020-02-15T06:59:42Z +9157 2005-07-30T11:06:23Z 146 19 2005-08-05T05:29:23Z 2 2020-02-15T06:59:42Z +9158 2005-07-30T11:12:03Z 4017 16 2005-08-02T05:55:03Z 2 2020-02-15T06:59:42Z +9159 2005-07-30T11:16:37Z 1234 217 2005-08-03T10:32:37Z 1 2020-02-15T06:59:42Z +9160 2005-07-30T11:17:33Z 183 34 2005-08-06T15:16:33Z 2 2020-02-15T06:59:42Z +9161 2005-07-30T11:19:18Z 969 433 2005-08-02T05:32:18Z 1 2020-02-15T06:59:42Z +9162 2005-07-30T11:21:56Z 4198 184 2005-08-02T15:32:56Z 1 2020-02-15T06:59:42Z +9163 2005-07-30T11:23:22Z 4562 345 2005-07-31T07:34:22Z 2 2020-02-15T06:59:42Z +9164 2005-07-30T11:24:14Z 4434 342 2005-08-08T16:24:14Z 1 2020-02-15T06:59:42Z +9165 2005-07-30T11:24:28Z 4034 291 2005-08-03T09:38:28Z 1 2020-02-15T06:59:42Z +9166 2005-07-30T11:26:28Z 308 12 2005-08-04T12:32:28Z 1 2020-02-15T06:59:42Z +9167 2005-07-30T11:30:37Z 1785 162 2005-08-08T17:13:37Z 1 2020-02-15T06:59:42Z +9168 2005-07-30T11:31:17Z 2035 75 2005-08-08T16:56:17Z 2 2020-02-15T06:59:42Z +9169 2005-07-30T11:35:00Z 1567 245 2005-08-06T16:16:00Z 2 2020-02-15T06:59:42Z +9170 2005-07-30T11:35:24Z 4279 425 2005-08-05T05:36:24Z 1 2020-02-15T06:59:42Z +9171 2005-07-30T11:36:24Z 1832 189 2005-08-07T06:04:24Z 2 2020-02-15T06:59:42Z +9172 2005-07-30T11:36:38Z 695 437 2005-08-04T09:39:38Z 1 2020-02-15T06:59:42Z +9173 2005-07-30T11:40:10Z 2103 381 2005-08-04T05:40:10Z 2 2020-02-15T06:59:42Z +9174 2005-07-30T11:42:10Z 2636 144 2005-07-31T09:52:10Z 1 2020-02-15T06:59:42Z +9175 2005-07-30T11:47:48Z 358 133 2005-08-02T08:13:48Z 1 2020-02-15T06:59:42Z +9176 2005-07-30T11:50:54Z 2659 260 2005-08-02T14:25:54Z 2 2020-02-15T06:59:42Z +9177 2005-07-30T11:52:40Z 1088 400 2005-08-08T09:35:40Z 1 2020-02-15T06:59:42Z +9178 2005-07-30T11:58:50Z 2046 448 2005-08-08T15:24:50Z 2 2020-02-15T06:59:42Z +9179 2005-07-30T12:02:41Z 62 50 2005-08-05T15:23:41Z 2 2020-02-15T06:59:42Z +9180 2005-07-30T12:03:15Z 3479 442 2005-08-01T14:25:15Z 1 2020-02-15T06:59:42Z +9181 2005-07-30T12:05:58Z 3953 224 2005-08-02T06:22:58Z 1 2020-02-15T06:59:42Z +9182 2005-07-30T12:06:58Z 2533 165 2005-08-08T11:33:58Z 2 2020-02-15T06:59:42Z +9183 2005-07-30T12:09:56Z 4320 475 2005-08-06T11:50:56Z 2 2020-02-15T06:59:42Z +9184 2005-07-30T12:10:19Z 51 365 2005-08-01T07:35:19Z 2 2020-02-15T06:59:42Z +9185 2005-07-30T12:10:40Z 2268 426 2005-08-06T07:01:40Z 1 2020-02-15T06:59:42Z +9186 2005-07-30T12:13:48Z 4513 273 2005-07-31T11:59:48Z 1 2020-02-15T06:59:42Z +9187 2005-07-30T12:14:03Z 4008 469 2005-08-04T13:10:03Z 2 2020-02-15T06:59:42Z +9188 2005-07-30T12:19:54Z 727 195 2005-08-06T09:12:54Z 2 2020-02-15T06:59:42Z +9189 2005-07-30T12:20:59Z 4529 485 2005-08-06T16:15:59Z 1 2020-02-15T06:59:42Z +9190 2005-07-30T12:24:17Z 4421 177 2005-08-03T07:41:17Z 2 2020-02-15T06:59:42Z +9191 2005-07-30T12:25:51Z 500 314 2005-08-05T16:13:51Z 1 2020-02-15T06:59:42Z +9192 2005-07-30T12:26:26Z 2372 102 2005-08-04T07:54:26Z 2 2020-02-15T06:59:42Z +9193 2005-07-30T12:28:42Z 3470 69 2005-08-02T12:17:42Z 2 2020-02-15T06:59:42Z +9194 2005-07-30T12:28:45Z 2467 294 2005-08-06T14:38:45Z 1 2020-02-15T06:59:42Z +9195 2005-07-30T12:29:43Z 944 440 2005-08-04T12:35:43Z 1 2020-02-15T06:59:42Z +9196 2005-07-30T12:30:19Z 4298 251 2005-07-31T18:01:19Z 2 2020-02-15T06:59:42Z +9197 2005-07-30T12:31:36Z 3214 168 2005-08-03T09:05:36Z 1 2020-02-15T06:59:42Z +9198 2005-07-30T12:37:08Z 2371 105 2005-08-07T16:37:08Z 2 2020-02-15T06:59:42Z +9199 2005-07-30T12:38:00Z 4336 580 2005-08-01T07:09:00Z 1 2020-02-15T06:59:42Z +9200 2005-07-30T12:39:52Z 3277 137 2005-08-08T09:43:52Z 2 2020-02-15T06:59:42Z +9201 2005-07-30T12:42:21Z 4387 291 2005-08-08T06:50:21Z 1 2020-02-15T06:59:42Z +9202 2005-07-30T12:43:24Z 4525 466 2005-08-07T10:39:24Z 2 2020-02-15T06:59:42Z +9203 2005-07-30T12:43:40Z 2112 169 2005-08-01T09:31:40Z 2 2020-02-15T06:59:42Z +9204 2005-07-30T12:43:58Z 4378 43 2005-08-03T16:26:58Z 2 2020-02-15T06:59:42Z +9205 2005-07-30T12:46:40Z 4165 259 2005-08-08T14:58:40Z 1 2020-02-15T06:59:42Z +9206 2005-07-30T12:46:59Z 2021 404 2005-08-03T14:58:59Z 1 2020-02-15T06:59:42Z +9207 2005-07-30T12:49:57Z 1346 345 2005-07-31T14:32:57Z 2 2020-02-15T06:59:42Z +9208 2005-07-30T12:54:03Z 2751 339 2005-08-06T17:22:03Z 2 2020-02-15T06:59:42Z +9209 2005-07-30T12:55:36Z 3940 23 2005-08-03T11:31:36Z 2 2020-02-15T06:59:42Z +9210 2005-07-30T12:56:44Z 101 105 2005-08-08T09:41:44Z 2 2020-02-15T06:59:42Z +9211 2005-07-30T12:59:45Z 595 57 2005-08-07T18:17:45Z 2 2020-02-15T06:59:42Z +9212 2005-07-30T13:03:13Z 2111 73 2005-08-06T09:48:13Z 1 2020-02-15T06:59:42Z +9213 2005-07-30T13:07:11Z 184 388 2005-08-01T15:30:11Z 1 2020-02-15T06:59:43Z +9214 2005-07-30T13:10:14Z 2823 181 2005-08-06T14:22:14Z 2 2020-02-15T06:59:43Z +9215 2005-07-30T13:11:11Z 3591 128 2005-08-06T13:06:11Z 1 2020-02-15T06:59:43Z +9216 2005-07-30T13:11:19Z 2783 38 2005-07-31T11:27:19Z 2 2020-02-15T06:59:43Z +9217 2005-07-30T13:13:55Z 1561 112 2005-08-05T17:27:55Z 1 2020-02-15T06:59:43Z +9218 2005-07-30T13:14:35Z 119 172 2005-08-07T18:03:35Z 1 2020-02-15T06:59:43Z +9219 2005-07-30T13:15:21Z 771 329 2005-08-01T11:39:21Z 1 2020-02-15T06:59:43Z +9220 2005-07-30T13:17:27Z 2463 569 2005-08-07T11:34:27Z 2 2020-02-15T06:59:43Z +9221 2005-07-30T13:20:06Z 2496 113 2005-08-06T13:58:06Z 2 2020-02-15T06:59:43Z +9222 2005-07-30T13:21:08Z 3648 95 2005-08-08T10:42:08Z 2 2020-02-15T06:59:43Z +9223 2005-07-30T13:23:20Z 3231 595 2005-08-04T11:24:20Z 1 2020-02-15T06:59:43Z +9224 2005-07-30T13:25:37Z 2260 406 2005-08-01T15:13:37Z 2 2020-02-15T06:59:43Z +9225 2005-07-30T13:29:47Z 1992 391 2005-08-02T17:08:47Z 2 2020-02-15T06:59:43Z +9226 2005-07-30T13:31:20Z 4315 3 2005-08-06T16:42:20Z 1 2020-02-15T06:59:43Z +9227 2005-07-30T13:36:13Z 2353 522 2005-08-07T17:39:13Z 1 2020-02-15T06:59:43Z +9228 2005-07-30T13:36:57Z 2325 91 2005-08-05T10:43:57Z 1 2020-02-15T06:59:43Z +9229 2005-07-30T13:38:17Z 3780 276 2005-08-08T18:17:17Z 2 2020-02-15T06:59:43Z +9230 2005-07-30T13:39:42Z 1199 109 2005-07-31T19:20:42Z 1 2020-02-15T06:59:43Z +9231 2005-07-30T13:42:15Z 1587 489 2005-08-02T19:27:15Z 1 2020-02-15T06:59:43Z +9232 2005-07-30T13:43:00Z 1991 502 2005-08-02T11:39:00Z 2 2020-02-15T06:59:43Z +9233 2005-07-30T13:44:15Z 2320 357 2005-08-07T13:02:15Z 2 2020-02-15T06:59:43Z +9234 2005-07-30T13:45:54Z 1660 128 2005-08-02T15:33:54Z 1 2020-02-15T06:59:43Z +9235 2005-07-30T13:47:17Z 984 181 2005-08-06T17:15:17Z 2 2020-02-15T06:59:43Z +9236 2005-07-30T13:47:43Z 4030 2 2005-08-08T18:52:43Z 1 2020-02-15T06:59:43Z +9237 2005-07-30T13:48:17Z 2777 157 2005-07-31T13:57:17Z 2 2020-02-15T06:59:43Z +9238 2005-07-30T13:49:43Z 3356 12 2005-08-08T08:25:43Z 2 2020-02-15T06:59:43Z +9239 2005-07-30T13:50:52Z 1728 580 2005-08-06T16:28:52Z 1 2020-02-15T06:59:43Z +9240 2005-07-30T13:57:54Z 587 92 2005-08-03T12:23:54Z 2 2020-02-15T06:59:43Z +9241 2005-07-30T13:58:41Z 4145 187 2005-08-04T09:44:41Z 2 2020-02-15T06:59:43Z +9242 2005-07-30T14:03:58Z 755 306 2005-08-02T18:09:58Z 2 2020-02-15T06:59:43Z +9243 2005-07-30T14:06:27Z 876 516 2005-08-06T09:26:27Z 2 2020-02-15T06:59:43Z +9244 2005-07-30T14:06:53Z 3640 27 2005-08-03T19:46:53Z 1 2020-02-15T06:59:43Z +9245 2005-07-30T14:07:50Z 2586 116 2005-08-06T17:59:50Z 2 2020-02-15T06:59:43Z +9246 2005-07-30T14:12:31Z 3390 185 2005-08-02T14:25:31Z 2 2020-02-15T06:59:43Z +9247 2005-07-30T14:13:56Z 4106 426 2005-08-02T16:34:56Z 2 2020-02-15T06:59:43Z +9248 2005-07-30T14:14:11Z 1382 2 2005-08-05T11:19:11Z 1 2020-02-15T06:59:43Z +9249 2005-07-30T14:15:02Z 2015 296 2005-08-05T13:02:02Z 1 2020-02-15T06:59:43Z +9250 2005-07-30T14:18:16Z 4544 539 2005-08-04T12:31:16Z 1 2020-02-15T06:59:43Z +9251 2005-07-30T14:19:25Z 2948 390 2005-08-08T11:22:25Z 2 2020-02-15T06:59:43Z +9252 2005-07-30T14:19:59Z 2350 322 2005-08-07T15:17:59Z 1 2020-02-15T06:59:43Z +9253 2005-07-30T14:20:12Z 4183 151 2005-07-31T11:31:12Z 2 2020-02-15T06:59:43Z +9254 2005-07-30T14:26:11Z 495 33 2005-08-04T16:12:11Z 1 2020-02-15T06:59:43Z +9255 2005-07-30T14:26:46Z 1596 23 2005-08-07T18:16:46Z 1 2020-02-15T06:59:43Z +9256 2005-07-30T14:29:29Z 4021 19 2005-08-05T16:59:29Z 1 2020-02-15T06:59:43Z +9257 2005-07-30T14:30:38Z 2615 466 2005-08-04T17:57:38Z 1 2020-02-15T06:59:43Z +9258 2005-07-30T14:31:31Z 2007 275 2005-08-05T16:29:31Z 2 2020-02-15T06:59:43Z +9259 2005-07-30T14:37:44Z 97 138 2005-08-06T18:05:44Z 2 2020-02-15T06:59:43Z +9260 2005-07-30T14:38:22Z 3969 13 2005-08-07T18:47:22Z 2 2020-02-15T06:59:43Z +9261 2005-07-30T14:39:35Z 372 380 2005-08-08T11:26:35Z 1 2020-02-15T06:59:43Z +9262 2005-07-30T14:45:02Z 2322 349 2005-08-05T15:18:02Z 2 2020-02-15T06:59:43Z +9263 2005-07-30T14:48:24Z 73 410 2005-08-04T19:06:24Z 2 2020-02-15T06:59:43Z +9264 2005-07-30T14:51:36Z 4071 157 2005-08-02T10:06:36Z 1 2020-02-15T06:59:43Z +9265 2005-07-30T14:55:25Z 3700 560 2005-08-02T11:34:25Z 1 2020-02-15T06:59:43Z +9266 2005-07-30T14:59:01Z 1705 364 2005-07-31T17:01:01Z 2 2020-02-15T06:59:43Z +9267 2005-07-30T14:59:05Z 645 409 2005-08-04T10:17:05Z 1 2020-02-15T06:59:43Z +9268 2005-07-30T15:02:30Z 3593 592 2005-08-05T12:50:30Z 1 2020-02-15T06:59:43Z +9269 2005-07-30T15:02:33Z 548 435 2005-08-02T16:32:33Z 1 2020-02-15T06:59:43Z +9270 2005-07-30T15:03:16Z 700 232 2005-07-31T16:09:16Z 2 2020-02-15T06:59:43Z +9271 2005-07-30T15:04:31Z 2660 100 2005-07-31T20:33:31Z 1 2020-02-15T06:59:43Z +9272 2005-07-30T15:05:22Z 1352 553 2005-08-05T10:02:22Z 2 2020-02-15T06:59:43Z +9273 2005-07-30T15:05:36Z 1867 497 2005-08-08T09:07:36Z 1 2020-02-15T06:59:43Z +9274 2005-07-30T15:07:04Z 4424 47 2005-08-06T11:17:04Z 2 2020-02-15T06:59:43Z +9275 2005-07-30T15:09:15Z 1916 439 2005-07-31T10:23:15Z 2 2020-02-15T06:59:43Z +9276 2005-07-30T15:09:28Z 1528 237 2005-08-06T19:39:28Z 1 2020-02-15T06:59:43Z +9277 2005-07-30T15:13:45Z 3734 82 2005-08-05T10:25:45Z 2 2020-02-15T06:59:43Z +9278 2005-07-30T15:15:19Z 3782 581 2005-08-03T20:21:19Z 1 2020-02-15T06:59:43Z +9279 2005-07-30T15:15:21Z 1070 567 2005-08-07T18:46:21Z 1 2020-02-15T06:59:43Z +9280 2005-07-30T15:15:38Z 4103 286 2005-08-05T19:20:38Z 2 2020-02-15T06:59:43Z +9281 2005-07-30T15:15:51Z 3086 398 2005-08-05T12:58:51Z 1 2020-02-15T06:59:43Z +9282 2005-07-30T15:17:31Z 736 259 2005-08-07T20:46:31Z 1 2020-02-15T06:59:43Z +9283 2005-07-30T15:25:19Z 1858 360 2005-08-01T15:35:19Z 2 2020-02-15T06:59:43Z +9284 2005-07-30T15:25:19Z 3976 38 2005-08-01T17:45:19Z 2 2020-02-15T06:59:43Z +9285 2005-07-30T15:26:08Z 3686 273 2005-08-06T15:59:08Z 2 2020-02-15T06:59:43Z +9286 2005-07-30T15:32:28Z 2477 154 2005-07-31T20:42:28Z 2 2020-02-15T06:59:43Z +9287 2005-07-30T15:35:39Z 2048 551 2005-08-02T10:15:39Z 1 2020-02-15T06:59:43Z +9288 2005-07-30T15:56:39Z 2640 447 2005-08-04T13:25:39Z 2 2020-02-15T06:59:43Z +9289 2005-07-30T15:57:04Z 389 453 2005-08-07T18:46:04Z 1 2020-02-15T06:59:43Z +9290 2005-07-30T15:59:08Z 2275 500 2005-08-06T21:49:08Z 2 2020-02-15T06:59:43Z +9291 2005-07-30T16:03:39Z 2884 406 2005-08-05T11:11:39Z 2 2020-02-15T06:59:43Z +9292 2005-07-30T16:08:21Z 1702 11 2005-08-07T10:38:21Z 2 2020-02-15T06:59:43Z +9293 2005-07-30T16:12:28Z 1676 65 2005-08-05T18:34:28Z 2 2020-02-15T06:59:43Z +9294 2005-07-30T16:14:37Z 2468 433 2005-08-07T18:49:37Z 1 2020-02-15T06:59:43Z +9295 2005-07-30T16:18:39Z 494 102 2005-08-03T12:46:39Z 1 2020-02-15T06:59:43Z +9296 2005-07-30T16:21:13Z 4088 2 2005-08-08T11:57:13Z 1 2020-02-15T06:59:43Z +9297 2005-07-30T16:26:29Z 3502 191 2005-08-03T13:51:29Z 1 2020-02-15T06:59:43Z +9298 2005-07-30T16:27:53Z 2106 208 2005-08-07T12:32:53Z 2 2020-02-15T06:59:43Z +9299 2005-07-30T16:32:51Z 1515 555 2005-08-08T15:28:51Z 2 2020-02-15T06:59:43Z +9300 2005-07-30T16:33:12Z 1639 571 2005-08-05T15:56:12Z 1 2020-02-15T06:59:43Z +9301 2005-07-30T16:34:29Z 1073 174 2005-07-31T18:41:29Z 2 2020-02-15T06:59:43Z +9302 2005-07-30T16:34:57Z 2326 55 2005-07-31T11:08:57Z 2 2020-02-15T06:59:43Z +9303 2005-07-30T16:35:59Z 4299 186 2005-08-03T18:31:59Z 1 2020-02-15T06:59:43Z +9304 2005-07-30T16:41:34Z 2937 296 2005-08-02T13:55:34Z 2 2020-02-15T06:59:43Z +9305 2005-07-30T16:45:56Z 1224 82 2005-08-08T21:15:56Z 2 2020-02-15T06:59:43Z +9306 2005-07-30T16:47:17Z 3983 336 2005-08-02T22:15:17Z 1 2020-02-15T06:59:43Z +9307 2005-07-30T16:52:43Z 3831 538 2005-08-01T11:58:43Z 1 2020-02-15T06:59:43Z +9308 2005-07-30T16:53:21Z 2202 267 2005-08-08T15:33:21Z 2 2020-02-15T06:59:43Z +9309 2005-07-30T16:55:53Z 3616 30 2005-08-07T11:23:53Z 1 2020-02-15T06:59:43Z +9310 2005-07-30T16:57:09Z 2957 529 2005-08-03T18:14:09Z 1 2020-02-15T06:59:43Z +9311 2005-07-30T16:58:31Z 1432 178 2005-08-07T15:23:31Z 1 2020-02-15T06:59:43Z +9312 2005-07-30T16:59:17Z 2483 76 2005-08-03T17:24:17Z 2 2020-02-15T06:59:43Z +9313 2005-07-30T16:59:43Z 4070 41 2005-08-05T14:06:43Z 2 2020-02-15T06:59:43Z +9314 2005-07-30T17:05:19Z 2358 390 2005-07-31T12:19:19Z 1 2020-02-15T06:59:43Z +9315 2005-07-30T17:05:29Z 444 96 2005-08-01T12:47:29Z 1 2020-02-15T06:59:43Z +9316 2005-07-30T17:11:58Z 4409 366 2005-08-05T14:36:58Z 1 2020-02-15T06:59:43Z +9317 2005-07-30T17:13:37Z 4138 217 2005-08-08T11:33:37Z 1 2020-02-15T06:59:43Z +9318 2005-07-30T17:14:30Z 2426 314 2005-08-06T16:53:30Z 1 2020-02-15T06:59:43Z +9319 2005-07-30T17:15:27Z 4066 136 2005-08-03T14:03:27Z 1 2020-02-15T06:59:43Z +9320 2005-07-30T17:16:39Z 909 221 2005-08-06T18:43:39Z 2 2020-02-15T06:59:43Z +9321 2005-07-30T17:19:44Z 3558 112 2005-08-06T22:42:44Z 2 2020-02-15T06:59:43Z +9322 2005-07-30T17:21:39Z 223 439 2005-08-06T16:58:39Z 2 2020-02-15T06:59:43Z +9323 2005-07-30T17:21:44Z 3749 131 2005-08-03T16:28:44Z 1 2020-02-15T06:59:43Z +9324 2005-07-30T17:28:52Z 1231 332 2005-08-06T19:02:52Z 1 2020-02-15T06:59:43Z +9325 2005-07-30T17:29:19Z 1938 476 2005-08-08T12:55:19Z 2 2020-02-15T06:59:43Z +9326 2005-07-30T17:30:03Z 3772 588 2005-08-01T13:41:03Z 2 2020-02-15T06:59:43Z +9327 2005-07-30T17:31:03Z 345 373 2005-08-08T19:16:03Z 1 2020-02-15T06:59:43Z +9328 2005-07-30T17:32:11Z 1087 89 2005-08-05T13:36:11Z 1 2020-02-15T06:59:43Z +9329 2005-07-30T17:42:38Z 1293 593 2005-08-08T23:17:38Z 1 2020-02-15T06:59:43Z +9330 2005-07-30T17:44:24Z 4227 232 2005-08-08T17:39:24Z 1 2020-02-15T06:59:43Z +9331 2005-07-30T17:46:50Z 2248 274 2005-08-01T19:03:50Z 1 2020-02-15T06:59:43Z +9332 2005-07-30T17:53:39Z 1156 480 2005-08-02T12:25:39Z 1 2020-02-15T06:59:43Z +9333 2005-07-30T17:53:45Z 1377 437 2005-07-31T22:35:45Z 2 2020-02-15T06:59:43Z +9334 2005-07-30T17:56:38Z 1499 25 2005-08-03T21:27:38Z 1 2020-02-15T06:59:43Z +9335 2005-07-30T18:00:53Z 1006 522 2005-08-01T16:05:53Z 1 2020-02-15T06:59:43Z +9336 2005-07-30T18:01:15Z 1911 557 2005-08-05T23:10:15Z 1 2020-02-15T06:59:43Z +9337 2005-07-30T18:02:25Z 2363 90 2005-07-31T12:30:25Z 2 2020-02-15T06:59:43Z +9338 2005-07-30T18:03:13Z 1482 333 2005-08-08T23:57:13Z 2 2020-02-15T06:59:43Z +9339 2005-07-30T18:03:28Z 3171 68 2005-08-08T19:45:28Z 2 2020-02-15T06:59:43Z +9340 2005-07-30T18:07:16Z 3228 213 2005-08-04T14:33:16Z 2 2020-02-15T06:59:43Z +9341 2005-07-30T18:07:58Z 894 557 2005-08-01T17:43:58Z 1 2020-02-15T06:59:43Z +9342 2005-07-30T18:09:56Z 2318 552 2005-08-08T13:54:56Z 2 2020-02-15T06:59:43Z +9343 2005-07-30T18:13:13Z 3521 53 2005-08-02T13:48:13Z 1 2020-02-15T06:59:43Z +9344 2005-07-30T18:13:45Z 1005 396 2005-08-07T15:23:45Z 2 2020-02-15T06:59:43Z +9345 2005-07-30T18:13:51Z 2042 436 2005-08-07T13:45:51Z 2 2020-02-15T06:59:43Z +9346 2005-07-30T18:13:52Z 2845 196 2005-08-03T17:58:52Z 1 2020-02-15T06:59:43Z +9347 2005-07-30T18:16:03Z 3557 479 2005-08-05T18:35:03Z 1 2020-02-15T06:59:43Z +9348 2005-07-30T18:17:09Z 3128 87 2005-08-07T15:25:09Z 1 2020-02-15T06:59:43Z +9349 2005-07-30T18:20:08Z 3739 579 2005-08-08T22:06:08Z 1 2020-02-15T06:59:43Z +9350 2005-07-30T18:24:30Z 798 434 2005-08-02T15:34:30Z 2 2020-02-15T06:59:43Z +9351 2005-07-30T18:28:30Z 2063 107 2005-08-02T17:26:30Z 1 2020-02-15T06:59:43Z +9352 2005-07-30T18:29:26Z 2619 360 2005-07-31T19:43:26Z 1 2020-02-15T06:59:43Z +9353 2005-07-30T18:30:37Z 3581 283 2005-08-06T22:32:37Z 2 2020-02-15T06:59:43Z +9354 2005-07-30T18:32:51Z 510 595 2005-08-02T21:28:51Z 2 2020-02-15T06:59:43Z +9355 2005-07-30T18:35:25Z 1122 201 2005-08-03T20:33:25Z 2 2020-02-15T06:59:43Z +9356 2005-07-30T18:36:24Z 4188 60 2005-08-03T14:10:24Z 1 2020-02-15T06:59:43Z +9357 2005-07-30T18:37:00Z 3927 181 2005-08-08T19:57:00Z 2 2020-02-15T06:59:43Z +9358 2005-07-30T18:37:24Z 712 302 2005-08-07T23:34:24Z 2 2020-02-15T06:59:43Z +9359 2005-07-30T18:39:28Z 21 501 2005-07-31T15:39:28Z 1 2020-02-15T06:59:43Z +9360 2005-07-30T18:39:43Z 2119 186 2005-08-04T22:41:43Z 2 2020-02-15T06:59:43Z +9361 2005-07-30T18:43:49Z 4163 335 2005-08-06T21:24:49Z 1 2020-02-15T06:59:43Z +9362 2005-07-30T18:44:16Z 3357 420 2005-08-01T20:14:16Z 1 2020-02-15T06:59:43Z +9363 2005-07-30T18:44:23Z 873 323 2005-08-04T15:03:23Z 1 2020-02-15T06:59:43Z +9364 2005-07-30T18:44:44Z 306 87 2005-08-08T23:55:44Z 2 2020-02-15T06:59:43Z +9365 2005-07-30T18:46:02Z 1539 232 2005-08-03T20:15:02Z 1 2020-02-15T06:59:43Z +9366 2005-07-30T18:48:57Z 4013 557 2005-08-03T15:17:57Z 2 2020-02-15T06:59:43Z +9367 2005-07-30T18:49:58Z 793 557 2005-08-08T22:04:58Z 1 2020-02-15T06:59:43Z +9368 2005-07-30T18:50:53Z 3026 388 2005-08-05T17:56:53Z 2 2020-02-15T06:59:43Z +9369 2005-07-30T18:52:19Z 3538 36 2005-08-01T12:53:19Z 1 2020-02-15T06:59:43Z +9370 2005-07-30T18:57:29Z 4433 588 2005-08-01T21:35:29Z 2 2020-02-15T06:59:43Z +9371 2005-07-30T18:58:00Z 2980 4 2005-08-03T15:14:00Z 1 2020-02-15T06:59:43Z +9372 2005-07-30T19:04:30Z 4075 454 2005-08-09T00:18:30Z 2 2020-02-15T06:59:43Z +9373 2005-07-30T19:05:36Z 3478 180 2005-08-05T16:16:36Z 2 2020-02-15T06:59:43Z +9374 2005-07-30T19:10:03Z 103 302 2005-08-06T21:54:03Z 2 2020-02-15T06:59:43Z +9375 2005-07-30T19:10:17Z 3063 529 2005-08-02T23:00:17Z 1 2020-02-15T06:59:43Z +9376 2005-07-30T19:11:49Z 451 86 2005-08-04T18:14:49Z 1 2020-02-15T06:59:43Z +9377 2005-07-30T19:12:18Z 4164 421 2005-08-05T19:38:18Z 1 2020-02-15T06:59:43Z +9378 2005-07-30T19:12:54Z 2209 197 2005-08-05T18:16:54Z 1 2020-02-15T06:59:43Z +9379 2005-07-30T19:13:01Z 3855 452 2005-08-07T19:18:01Z 2 2020-02-15T06:59:43Z +9380 2005-07-30T19:17:31Z 4403 264 2005-08-01T20:46:31Z 1 2020-02-15T06:59:43Z +9381 2005-07-30T19:23:04Z 4064 329 2005-07-31T23:37:04Z 2 2020-02-15T06:59:43Z +9382 2005-07-30T19:23:44Z 2127 17 2005-08-06T16:20:44Z 2 2020-02-15T06:59:43Z +9383 2005-07-30T19:24:50Z 2806 416 2005-08-01T21:41:50Z 2 2020-02-15T06:59:43Z +9384 2005-07-30T19:25:35Z 2313 220 2005-08-08T21:50:35Z 1 2020-02-15T06:59:43Z +9385 2005-07-30T19:25:49Z 3453 570 2005-08-08T17:08:49Z 2 2020-02-15T06:59:43Z +9386 2005-07-30T19:26:21Z 1123 189 2005-08-05T21:00:21Z 2 2020-02-15T06:59:43Z +9387 2005-07-30T19:27:05Z 577 495 2005-08-07T21:19:05Z 2 2020-02-15T06:59:43Z +9388 2005-07-30T19:27:22Z 2116 332 2005-08-08T15:31:22Z 2 2020-02-15T06:59:43Z +9389 2005-07-30T19:27:59Z 3124 198 2005-08-04T18:25:59Z 2 2020-02-15T06:59:43Z +9390 2005-07-30T19:42:07Z 1794 103 2005-08-01T23:17:07Z 1 2020-02-15T06:59:43Z +9391 2005-07-30T19:48:41Z 665 273 2005-08-04T15:27:41Z 1 2020-02-15T06:59:43Z +9392 2005-07-30T19:50:13Z 2797 29 2005-08-03T22:38:13Z 2 2020-02-15T06:59:43Z +9393 2005-07-30T20:04:48Z 843 158 2005-08-02T15:52:48Z 2 2020-02-15T06:59:43Z +9394 2005-07-30T20:06:24Z 161 204 2005-08-06T22:36:24Z 1 2020-02-15T06:59:43Z +9395 2005-07-30T20:07:06Z 1298 306 2005-08-08T21:21:06Z 1 2020-02-15T06:59:43Z +9396 2005-07-30T20:07:24Z 1250 91 2005-08-03T21:20:24Z 2 2020-02-15T06:59:43Z +9397 2005-07-30T20:07:29Z 1550 373 2005-08-05T00:36:29Z 1 2020-02-15T06:59:43Z +9398 2005-07-30T20:09:00Z 1175 570 2005-08-01T23:35:00Z 2 2020-02-15T06:59:43Z +9399 2005-07-30T20:14:50Z 3668 569 2005-08-03T17:30:50Z 1 2020-02-15T06:59:43Z +9400 2005-07-30T20:15:58Z 3910 368 2005-08-03T21:21:58Z 1 2020-02-15T06:59:43Z +9401 2005-07-30T20:18:19Z 2057 331 2005-08-07T15:46:19Z 1 2020-02-15T06:59:43Z +9402 2005-07-30T20:18:27Z 2424 48 2005-08-07T21:29:27Z 2 2020-02-15T06:59:43Z +9403 2005-07-30T20:18:53Z 3466 267 2005-08-06T19:54:53Z 1 2020-02-15T06:59:43Z +9404 2005-07-30T20:21:35Z 3832 140 2005-08-02T15:52:35Z 1 2020-02-15T06:59:43Z +9405 2005-07-30T20:22:17Z 1983 463 2005-08-08T16:55:17Z 1 2020-02-15T06:59:43Z +9406 2005-07-30T20:24:00Z 3419 453 2005-08-07T19:50:00Z 1 2020-02-15T06:59:43Z +9407 2005-07-30T20:25:24Z 2594 585 2005-08-08T22:51:24Z 2 2020-02-15T06:59:43Z +9408 2005-07-30T20:32:09Z 4383 571 2005-08-04T20:14:09Z 2 2020-02-15T06:59:43Z +9409 2005-07-30T20:33:53Z 3053 156 2005-08-05T18:32:53Z 2 2020-02-15T06:59:43Z +9410 2005-07-30T20:38:05Z 1789 22 2005-07-31T19:57:05Z 2 2020-02-15T06:59:43Z +9411 2005-07-30T20:38:22Z 3484 536 2005-08-06T01:23:22Z 2 2020-02-15T06:59:43Z +9412 2005-07-30T20:44:10Z 2482 522 2005-08-06T21:13:10Z 2 2020-02-15T06:59:43Z +9413 2005-07-30T20:44:39Z 2618 290 2005-08-01T01:56:39Z 2 2020-02-15T06:59:43Z +9414 2005-07-30T20:46:02Z 578 484 2005-08-07T21:23:02Z 2 2020-02-15T06:59:43Z +9415 2005-07-30T20:48:31Z 3336 139 2005-08-05T19:45:31Z 2 2020-02-15T06:59:43Z +9416 2005-07-30T20:52:45Z 1470 265 2005-08-02T17:38:45Z 2 2020-02-15T06:59:43Z +9417 2005-07-30T20:54:55Z 2509 519 2005-08-04T00:54:55Z 2 2020-02-15T06:59:43Z +9418 2005-07-30T21:00:52Z 241 168 2005-08-08T15:56:52Z 2 2020-02-15T06:59:43Z +9419 2005-07-30T21:04:59Z 4427 142 2005-08-06T15:47:59Z 2 2020-02-15T06:59:43Z +9420 2005-07-30T21:05:18Z 147 72 2005-08-05T23:52:18Z 2 2020-02-15T06:59:43Z +9421 2005-07-30T21:08:32Z 2206 161 2005-08-02T00:43:32Z 1 2020-02-15T06:59:43Z +9422 2005-07-30T21:08:41Z 1843 470 2005-08-07T15:55:41Z 1 2020-02-15T06:59:43Z +9423 2005-07-30T21:10:14Z 3145 242 2005-08-07T16:34:14Z 2 2020-02-15T06:59:43Z +9424 2005-07-30T21:10:56Z 4499 256 2005-08-05T00:01:56Z 1 2020-02-15T06:59:43Z +9425 2005-07-30T21:11:21Z 271 295 2005-08-05T19:00:21Z 1 2020-02-15T06:59:43Z +9427 2005-07-30T21:16:33Z 1494 85 2005-08-05T17:23:33Z 2 2020-02-15T06:59:43Z +9428 2005-07-30T21:18:37Z 1948 335 2005-08-05T16:09:37Z 1 2020-02-15T06:59:43Z +9429 2005-07-30T21:19:26Z 1769 288 2005-08-07T18:39:26Z 1 2020-02-15T06:59:43Z +9430 2005-07-30T21:20:13Z 1529 367 2005-08-04T21:45:13Z 2 2020-02-15T06:59:43Z +9431 2005-07-30T21:24:22Z 3364 39 2005-08-03T01:22:22Z 2 2020-02-15T06:59:43Z +9432 2005-07-30T21:26:18Z 2489 570 2005-08-05T00:23:18Z 1 2020-02-15T06:59:43Z +9433 2005-07-30T21:28:17Z 1082 128 2005-08-08T18:20:17Z 2 2020-02-15T06:59:43Z +9434 2005-07-30T21:29:41Z 3792 13 2005-08-01T16:30:41Z 2 2020-02-15T06:59:43Z +9435 2005-07-30T21:31:02Z 3116 301 2005-08-05T22:34:02Z 1 2020-02-15T06:59:43Z +9436 2005-07-30T21:33:01Z 2329 268 2005-08-06T17:38:01Z 1 2020-02-15T06:59:43Z +9437 2005-07-30T21:36:04Z 1230 592 2005-08-08T01:26:04Z 1 2020-02-15T06:59:43Z +9438 2005-07-30T21:36:15Z 121 14 2005-08-07T16:54:15Z 2 2020-02-15T06:59:43Z +9439 2005-07-30T21:38:12Z 290 479 2005-08-06T00:03:12Z 1 2020-02-15T06:59:43Z +9440 2005-07-30T21:40:15Z 414 535 2005-08-04T15:45:15Z 2 2020-02-15T06:59:43Z +9441 2005-07-30T21:43:28Z 3982 519 2005-08-08T16:57:28Z 1 2020-02-15T06:59:43Z +9442 2005-07-30T21:44:31Z 44 75 2005-08-04T01:29:31Z 1 2020-02-15T06:59:43Z +9443 2005-07-30T21:45:46Z 1675 3 2005-08-05T21:22:46Z 1 2020-02-15T06:59:43Z +9444 2005-07-30T21:48:44Z 1134 259 2005-08-08T22:36:44Z 2 2020-02-15T06:59:43Z +9445 2005-07-30T21:50:42Z 1480 549 2005-08-05T18:34:42Z 2 2020-02-15T06:59:43Z +9446 2005-07-30T21:53:01Z 1880 477 2005-08-06T19:00:01Z 2 2020-02-15T06:59:43Z +9447 2005-07-30T21:54:22Z 1053 82 2005-08-09T01:07:22Z 2 2020-02-15T06:59:43Z +9448 2005-07-30T21:56:13Z 1213 278 2005-08-04T18:03:13Z 1 2020-02-15T06:59:43Z +9449 2005-07-30T22:02:34Z 2 581 2005-08-06T02:09:34Z 1 2020-02-15T06:59:43Z +9450 2005-07-30T22:04:04Z 1371 430 2005-08-05T18:39:04Z 2 2020-02-15T06:59:43Z +9451 2005-07-30T22:10:17Z 685 584 2005-08-07T02:53:17Z 2 2020-02-15T06:59:43Z +9452 2005-07-30T22:19:16Z 3178 130 2005-08-04T19:26:16Z 1 2020-02-15T06:59:43Z +9453 2005-07-30T22:20:04Z 1988 221 2005-08-08T02:27:04Z 1 2020-02-15T06:59:43Z +9454 2005-07-30T22:20:09Z 3028 81 2005-08-04T01:33:09Z 2 2020-02-15T06:59:43Z +9455 2005-07-30T22:20:29Z 2647 220 2005-08-08T20:08:29Z 1 2020-02-15T06:59:43Z +9456 2005-07-30T22:22:16Z 2068 534 2005-08-05T18:56:16Z 2 2020-02-15T06:59:43Z +9457 2005-07-30T22:23:05Z 2172 487 2005-07-31T23:07:05Z 2 2020-02-15T06:59:43Z +9458 2005-07-30T22:24:34Z 3105 343 2005-08-04T21:26:34Z 2 2020-02-15T06:59:43Z +9459 2005-07-30T22:24:46Z 1132 489 2005-08-02T00:44:46Z 2 2020-02-15T06:59:43Z +9460 2005-07-30T22:25:39Z 4463 580 2005-08-08T20:56:39Z 2 2020-02-15T06:59:43Z +9461 2005-07-30T22:29:13Z 1679 377 2005-08-05T20:55:13Z 2 2020-02-15T06:59:43Z +9462 2005-07-30T22:30:44Z 4090 192 2005-08-09T03:54:44Z 2 2020-02-15T06:59:43Z +9463 2005-07-30T22:30:57Z 883 352 2005-08-03T22:53:57Z 1 2020-02-15T06:59:43Z +9464 2005-07-30T22:31:31Z 3904 534 2005-08-07T01:10:31Z 2 2020-02-15T06:59:43Z +9465 2005-07-30T22:39:53Z 3084 2 2005-08-06T16:43:53Z 2 2020-02-15T06:59:43Z +9466 2005-07-30T22:44:36Z 2595 137 2005-08-07T02:35:36Z 2 2020-02-15T06:59:43Z +9467 2005-07-30T22:45:34Z 1905 202 2005-08-08T00:58:34Z 2 2020-02-15T06:59:43Z +9468 2005-07-30T22:53:52Z 4366 20 2005-08-07T00:22:52Z 2 2020-02-15T06:59:43Z +9469 2005-07-30T22:56:34Z 967 59 2005-08-07T03:16:34Z 2 2020-02-15T06:59:43Z +9470 2005-07-30T23:01:31Z 3908 566 2005-08-07T01:35:31Z 2 2020-02-15T06:59:43Z +9471 2005-07-30T23:02:36Z 2390 424 2005-08-04T17:49:36Z 1 2020-02-15T06:59:43Z +9472 2005-07-30T23:03:32Z 4178 404 2005-08-01T18:02:32Z 1 2020-02-15T06:59:43Z +9473 2005-07-30T23:04:13Z 1717 185 2005-08-04T21:48:13Z 2 2020-02-15T06:59:43Z +9474 2005-07-30T23:05:44Z 3771 206 2005-08-05T23:46:44Z 1 2020-02-15T06:59:43Z +9475 2005-07-30T23:06:33Z 2186 567 2005-08-04T23:23:33Z 1 2020-02-15T06:59:43Z +9476 2005-07-30T23:06:40Z 3599 197 2005-08-04T22:52:40Z 2 2020-02-15T06:59:43Z +9477 2005-07-30T23:07:22Z 1932 213 2005-08-04T20:54:22Z 1 2020-02-15T06:59:43Z +9478 2005-07-30T23:12:53Z 1139 283 2005-08-04T02:41:53Z 1 2020-02-15T06:59:43Z +9479 2005-07-30T23:22:09Z 3461 308 2005-07-31T22:26:09Z 2 2020-02-15T06:59:43Z +9480 2005-07-30T23:26:03Z 597 373 2005-08-04T21:18:03Z 2 2020-02-15T06:59:43Z +9481 2005-07-30T23:26:05Z 613 481 2005-08-04T17:46:05Z 1 2020-02-15T06:59:43Z +9482 2005-07-30T23:29:16Z 2421 348 2005-08-02T20:37:16Z 2 2020-02-15T06:59:43Z +9483 2005-07-30T23:31:31Z 1136 593 2005-08-09T04:29:31Z 2 2020-02-15T06:59:43Z +9484 2005-07-30T23:31:40Z 3389 26 2005-08-02T18:25:40Z 1 2020-02-15T06:59:43Z +9485 2005-07-30T23:32:40Z 3722 338 2005-08-08T17:44:40Z 1 2020-02-15T06:59:43Z +9486 2005-07-30T23:35:42Z 2787 403 2005-08-09T02:08:42Z 2 2020-02-15T06:59:43Z +9487 2005-07-30T23:40:22Z 2165 406 2005-08-01T22:29:22Z 1 2020-02-15T06:59:43Z +9488 2005-07-30T23:42:42Z 4221 528 2005-08-08T22:15:42Z 1 2020-02-15T06:59:43Z +9489 2005-07-30T23:43:32Z 4011 17 2005-07-31T20:45:32Z 2 2020-02-15T06:59:43Z +9490 2005-07-30T23:45:09Z 1302 487 2005-08-07T18:50:09Z 1 2020-02-15T06:59:43Z +9491 2005-07-30T23:45:23Z 3624 179 2005-08-01T00:33:23Z 2 2020-02-15T06:59:43Z +9492 2005-07-30T23:52:21Z 639 126 2005-08-08T20:50:21Z 2 2020-02-15T06:59:43Z +9493 2005-07-30T23:52:30Z 1522 5 2005-08-08T05:22:30Z 1 2020-02-15T06:59:43Z +9494 2005-07-30T23:52:46Z 3799 254 2005-08-05T23:13:46Z 2 2020-02-15T06:59:43Z +9495 2005-07-30T23:54:26Z 2128 397 2005-08-01T22:02:26Z 2 2020-02-15T06:59:43Z +9496 2005-07-30T23:55:20Z 453 125 2005-08-02T02:47:20Z 2 2020-02-15T06:59:43Z +9497 2005-07-30T23:56:54Z 933 595 2005-08-04T19:52:54Z 1 2020-02-15T06:59:43Z +9498 2005-07-30T23:56:55Z 1035 289 2005-08-03T18:34:55Z 2 2020-02-15T06:59:43Z +9499 2005-07-30T23:58:30Z 602 461 2005-08-01T00:55:30Z 2 2020-02-15T06:59:43Z +9500 2005-07-30T23:58:36Z 2808 241 2005-08-07T21:08:36Z 2 2020-02-15T06:59:43Z +9501 2005-07-30T23:59:21Z 4398 75 2005-08-05T19:50:21Z 2 2020-02-15T06:59:43Z +9502 2005-07-31T00:02:10Z 2700 471 2005-08-01T19:47:10Z 1 2020-02-15T06:59:43Z +9503 2005-07-31T00:02:38Z 1013 311 2005-08-06T06:01:38Z 1 2020-02-15T06:59:43Z +9504 2005-07-31T00:09:07Z 91 125 2005-08-02T05:44:07Z 1 2020-02-15T06:59:43Z +9505 2005-07-31T00:11:19Z 4047 543 2005-08-05T18:24:19Z 2 2020-02-15T06:59:43Z +9506 2005-07-31T00:19:01Z 3872 189 2005-08-02T00:20:01Z 1 2020-02-15T06:59:43Z +9507 2005-07-31T00:22:29Z 387 525 2005-08-07T05:59:29Z 2 2020-02-15T06:59:43Z +9508 2005-07-31T00:22:39Z 1204 316 2005-08-04T05:40:39Z 1 2020-02-15T06:59:43Z +9509 2005-07-31T00:22:42Z 818 320 2005-08-03T23:24:42Z 1 2020-02-15T06:59:43Z +9510 2005-07-31T00:24:17Z 2301 494 2005-08-08T18:47:17Z 2 2020-02-15T06:59:43Z +9511 2005-07-31T00:25:05Z 964 549 2005-08-09T02:46:05Z 1 2020-02-15T06:59:43Z +9512 2005-07-31T00:26:30Z 3786 173 2005-08-04T23:43:30Z 2 2020-02-15T06:59:43Z +9513 2005-07-31T00:28:30Z 396 317 2005-08-01T00:22:30Z 2 2020-02-15T06:59:43Z +9514 2005-07-31T00:29:44Z 1892 243 2005-08-02T23:49:44Z 1 2020-02-15T06:59:43Z +9515 2005-07-31T00:35:05Z 3099 264 2005-08-02T23:35:05Z 2 2020-02-15T06:59:43Z +9516 2005-07-31T00:40:58Z 3519 424 2005-08-07T02:13:58Z 2 2020-02-15T06:59:43Z +9517 2005-07-31T00:41:23Z 3299 170 2005-08-02T23:08:23Z 1 2020-02-15T06:59:43Z +9518 2005-07-31T00:43:26Z 2714 215 2005-08-04T19:12:26Z 2 2020-02-15T06:59:43Z +9519 2005-07-31T00:45:57Z 3767 235 2005-08-06T00:59:57Z 2 2020-02-15T06:59:43Z +9520 2005-07-31T00:50:54Z 1306 299 2005-08-04T20:05:54Z 1 2020-02-15T06:59:43Z +9521 2005-07-31T00:52:24Z 1423 227 2005-08-06T03:33:24Z 2 2020-02-15T06:59:43Z +9522 2005-07-31T00:55:11Z 4266 294 2005-08-03T06:41:11Z 2 2020-02-15T06:59:43Z +9523 2005-07-31T00:56:09Z 891 356 2005-08-05T05:44:09Z 2 2020-02-15T06:59:43Z +9524 2005-07-31T01:01:06Z 1796 535 2005-08-04T04:06:06Z 2 2020-02-15T06:59:43Z +9525 2005-07-31T01:02:18Z 2990 246 2005-08-06T21:31:18Z 1 2020-02-15T06:59:43Z +9526 2005-07-31T01:02:22Z 417 342 2005-08-04T03:00:22Z 1 2020-02-15T06:59:43Z +9527 2005-07-31T01:02:24Z 2539 200 2005-08-09T02:08:24Z 2 2020-02-15T06:59:43Z +9528 2005-07-31T01:05:04Z 193 241 2005-08-07T01:16:04Z 1 2020-02-15T06:59:43Z +9529 2005-07-31T01:05:26Z 816 123 2005-08-02T22:30:26Z 2 2020-02-15T06:59:43Z +9530 2005-07-31T01:09:06Z 1718 148 2005-08-04T23:47:06Z 2 2020-02-15T06:59:43Z +9531 2005-07-31T01:11:53Z 4550 268 2005-08-07T02:49:53Z 1 2020-02-15T06:59:43Z +9532 2005-07-31T01:16:51Z 1309 488 2005-08-01T20:23:51Z 1 2020-02-15T06:59:43Z +9533 2005-07-31T01:18:10Z 4156 522 2005-08-07T19:58:10Z 1 2020-02-15T06:59:43Z +9534 2005-07-31T01:18:27Z 4457 519 2005-08-06T00:28:27Z 1 2020-02-15T06:59:43Z +9535 2005-07-31T01:18:53Z 2413 485 2005-08-04T03:04:53Z 2 2020-02-15T06:59:43Z +9536 2005-07-31T01:19:02Z 2547 310 2005-08-02T19:38:02Z 1 2020-02-15T06:59:43Z +9537 2005-07-31T01:23:00Z 546 488 2005-08-01T01:16:00Z 2 2020-02-15T06:59:43Z +9538 2005-07-31T01:25:22Z 3402 68 2005-08-06T00:10:22Z 2 2020-02-15T06:59:43Z +9539 2005-07-31T01:36:19Z 3793 436 2005-08-04T23:47:19Z 1 2020-02-15T06:59:43Z +9540 2005-07-31T01:40:06Z 2200 365 2005-08-01T01:09:06Z 1 2020-02-15T06:59:43Z +9541 2005-07-31T01:40:14Z 1774 422 2005-08-05T06:34:14Z 2 2020-02-15T06:59:43Z +9542 2005-07-31T01:41:48Z 2243 595 2005-08-01T00:49:48Z 2 2020-02-15T06:59:43Z +9543 2005-07-31T01:43:34Z 956 369 2005-08-01T06:49:34Z 1 2020-02-15T06:59:43Z +9544 2005-07-31T01:44:51Z 2383 28 2005-08-05T05:25:51Z 2 2020-02-15T06:59:43Z +9545 2005-07-31T01:46:24Z 3451 594 2005-08-09T06:11:24Z 1 2020-02-15T06:59:43Z +9546 2005-07-31T01:47:40Z 211 63 2005-08-02T07:25:40Z 2 2020-02-15T06:59:43Z +9547 2005-07-31T01:52:34Z 2414 440 2005-08-03T23:12:34Z 2 2020-02-15T06:59:43Z +9548 2005-07-31T01:54:19Z 3038 576 2005-08-05T00:50:19Z 2 2020-02-15T06:59:43Z +9549 2005-07-31T01:57:04Z 2409 63 2005-08-07T21:00:04Z 2 2020-02-15T06:59:43Z +9550 2005-07-31T01:57:34Z 2233 583 2005-08-08T23:33:34Z 1 2020-02-15T06:59:43Z +9551 2005-07-31T02:04:58Z 1260 30 2005-08-06T04:07:58Z 2 2020-02-15T06:59:43Z +9552 2005-07-31T02:05:32Z 3544 261 2005-08-01T06:59:32Z 1 2020-02-15T06:59:43Z +9553 2005-07-31T02:06:34Z 4187 579 2005-08-08T02:20:34Z 1 2020-02-15T06:59:43Z +9554 2005-07-31T02:06:49Z 2581 490 2005-08-01T22:27:49Z 1 2020-02-15T06:59:43Z +9555 2005-07-31T02:11:16Z 2108 382 2005-08-03T06:58:16Z 2 2020-02-15T06:59:43Z +9556 2005-07-31T02:13:30Z 3269 521 2005-08-08T06:46:30Z 1 2020-02-15T06:59:43Z +9557 2005-07-31T02:14:01Z 708 328 2005-08-05T23:55:01Z 1 2020-02-15T06:59:43Z +9558 2005-07-31T02:14:35Z 1161 418 2005-08-06T03:00:35Z 1 2020-02-15T06:59:43Z +9559 2005-07-31T02:15:53Z 2882 159 2005-08-08T02:38:53Z 1 2020-02-15T06:59:43Z +9560 2005-07-31T02:17:27Z 4236 471 2005-08-07T03:33:27Z 1 2020-02-15T06:59:43Z +9561 2005-07-31T02:22:13Z 1079 58 2005-08-03T07:00:13Z 2 2020-02-15T06:59:43Z +9562 2005-07-31T02:23:20Z 1571 116 2005-08-06T21:01:20Z 2 2020-02-15T06:59:43Z +9563 2005-07-31T02:28:39Z 3858 167 2005-08-05T22:10:39Z 1 2020-02-15T06:59:43Z +9564 2005-07-31T02:31:37Z 383 377 2005-08-03T22:57:37Z 2 2020-02-15T06:59:43Z +9565 2005-07-31T02:32:00Z 3621 485 2005-08-04T05:45:00Z 1 2020-02-15T06:59:43Z +9566 2005-07-31T02:32:10Z 643 346 2005-08-02T23:54:10Z 2 2020-02-15T06:59:43Z +9567 2005-07-31T02:36:11Z 3688 37 2005-08-07T01:19:11Z 2 2020-02-15T06:59:43Z +9568 2005-07-31T02:37:44Z 1248 358 2005-08-02T07:07:44Z 2 2020-02-15T06:59:43Z +9569 2005-07-31T02:39:38Z 813 405 2005-08-02T05:09:38Z 2 2020-02-15T06:59:43Z +9570 2005-07-31T02:40:37Z 591 385 2005-08-01T01:59:37Z 1 2020-02-15T06:59:43Z +9571 2005-07-31T02:42:18Z 2219 1 2005-08-02T23:26:18Z 2 2020-02-15T06:59:43Z +9572 2005-07-31T02:44:10Z 1453 283 2005-08-01T03:30:10Z 2 2020-02-15T06:59:43Z +9573 2005-07-31T02:45:38Z 3745 59 2005-08-09T04:31:38Z 2 2020-02-15T06:59:43Z +9574 2005-07-31T02:49:20Z 2782 233 2005-08-05T02:36:20Z 2 2020-02-15T06:59:43Z +9575 2005-07-31T02:51:53Z 3971 193 2005-08-03T20:54:53Z 2 2020-02-15T06:59:43Z +9576 2005-07-31T02:52:59Z 3327 145 2005-08-05T23:35:59Z 2 2020-02-15T06:59:43Z +9577 2005-07-31T02:53:33Z 2423 526 2005-08-07T05:56:33Z 1 2020-02-15T06:59:43Z +9578 2005-07-31T02:54:31Z 2965 115 2005-08-02T02:48:31Z 1 2020-02-15T06:59:43Z +9579 2005-07-31T02:59:20Z 3547 35 2005-08-06T03:52:20Z 2 2020-02-15T06:59:43Z +9580 2005-07-31T03:01:11Z 532 22 2005-08-05T06:01:11Z 1 2020-02-15T06:59:43Z +9581 2005-07-31T03:03:07Z 2588 302 2005-08-05T23:01:07Z 1 2020-02-15T06:59:43Z +9582 2005-07-31T03:05:19Z 3913 347 2005-08-04T07:26:19Z 1 2020-02-15T06:59:43Z +9583 2005-07-31T03:05:21Z 3543 568 2005-08-06T00:14:21Z 2 2020-02-15T06:59:43Z +9584 2005-07-31T03:05:48Z 419 141 2005-08-01T05:50:48Z 2 2020-02-15T06:59:43Z +9585 2005-07-31T03:05:55Z 3249 197 2005-08-02T23:54:55Z 2 2020-02-15T06:59:43Z +9586 2005-07-31T03:07:16Z 3987 415 2005-08-04T00:39:16Z 1 2020-02-15T06:59:43Z +9587 2005-07-31T03:10:30Z 2966 235 2005-08-06T06:54:30Z 2 2020-02-15T06:59:43Z +9588 2005-07-31T03:13:13Z 1368 499 2005-08-02T04:06:13Z 1 2020-02-15T06:59:43Z +9589 2005-07-31T03:13:29Z 2604 574 2005-08-09T01:51:29Z 2 2020-02-15T06:59:43Z +9590 2005-07-31T03:17:16Z 2293 585 2005-08-08T04:24:16Z 1 2020-02-15T06:59:43Z +9591 2005-07-31T03:19:28Z 504 97 2005-08-01T07:30:28Z 1 2020-02-15T06:59:43Z +9592 2005-07-31T03:21:16Z 1828 14 2005-08-05T08:32:16Z 1 2020-02-15T06:59:43Z +9593 2005-07-31T03:22:30Z 1223 28 2005-08-05T08:23:30Z 1 2020-02-15T06:59:43Z +9594 2005-07-31T03:23:52Z 4382 148 2005-08-04T23:06:52Z 1 2020-02-15T06:59:43Z +9595 2005-07-31T03:27:58Z 2829 3 2005-08-03T05:58:58Z 1 2020-02-15T06:59:43Z +9596 2005-07-31T03:28:47Z 2847 55 2005-08-04T03:43:47Z 2 2020-02-15T06:59:43Z +9597 2005-07-31T03:29:07Z 3317 61 2005-08-09T03:33:07Z 2 2020-02-15T06:59:43Z +9598 2005-07-31T03:30:41Z 1105 468 2005-08-04T03:54:41Z 1 2020-02-15T06:59:43Z +9599 2005-07-31T03:32:06Z 3164 502 2005-08-04T07:47:06Z 2 2020-02-15T06:59:43Z +9600 2005-07-31T03:35:34Z 3731 464 2005-08-08T22:50:34Z 1 2020-02-15T06:59:43Z +9601 2005-07-31T03:42:17Z 1592 553 2005-08-04T02:02:17Z 2 2020-02-15T06:59:43Z +9602 2005-07-31T03:42:51Z 3173 386 2005-08-01T08:39:51Z 1 2020-02-15T06:59:43Z +9603 2005-07-31T03:43:43Z 2266 541 2005-08-02T00:11:43Z 2 2020-02-15T06:59:43Z +9604 2005-07-31T03:47:12Z 4342 580 2005-08-03T06:48:12Z 1 2020-02-15T06:59:43Z +9605 2005-07-31T03:50:07Z 1477 94 2005-08-07T09:15:07Z 2 2020-02-15T06:59:43Z +9606 2005-07-31T03:50:46Z 1357 253 2005-08-01T05:29:46Z 2 2020-02-15T06:59:43Z +9607 2005-07-31T03:51:06Z 3414 294 2005-08-02T00:18:06Z 2 2020-02-15T06:59:43Z +9608 2005-07-31T03:51:52Z 363 397 2005-08-06T05:38:52Z 2 2020-02-15T06:59:43Z +9609 2005-07-31T03:53:24Z 693 112 2005-08-05T08:32:24Z 2 2020-02-15T06:59:43Z +9610 2005-07-31T03:54:05Z 3110 16 2005-08-06T23:11:05Z 1 2020-02-15T06:59:43Z +9611 2005-07-31T03:54:43Z 1976 215 2005-08-05T03:54:43Z 2 2020-02-15T06:59:43Z +9612 2005-07-31T03:58:31Z 2142 69 2005-08-04T07:34:31Z 2 2020-02-15T06:59:43Z +9613 2005-07-31T03:58:53Z 3251 188 2005-08-02T00:10:53Z 1 2020-02-15T06:59:43Z +9614 2005-07-31T03:59:31Z 2955 548 2005-08-08T04:19:31Z 1 2020-02-15T06:59:43Z +9615 2005-07-31T03:59:56Z 3370 50 2005-08-02T00:46:56Z 2 2020-02-15T06:59:43Z +9616 2005-07-31T04:05:01Z 1210 550 2005-08-05T00:10:01Z 1 2020-02-15T06:59:43Z +9617 2005-07-31T04:15:38Z 529 102 2005-08-02T04:24:38Z 1 2020-02-15T06:59:43Z +9618 2005-07-31T04:16:14Z 2688 253 2005-08-07T02:43:14Z 2 2020-02-15T06:59:43Z +9619 2005-07-31T04:17:02Z 1730 138 2005-08-05T06:36:02Z 2 2020-02-15T06:59:43Z +9620 2005-07-31T04:19:18Z 2177 576 2005-08-08T09:20:18Z 1 2020-02-15T06:59:43Z +9621 2005-07-31T04:21:08Z 325 38 2005-08-08T03:50:08Z 2 2020-02-15T06:59:43Z +9622 2005-07-31T04:21:45Z 2255 411 2005-08-02T09:20:45Z 1 2020-02-15T06:59:43Z +9623 2005-07-31T04:30:02Z 113 360 2005-08-06T23:34:02Z 1 2020-02-15T06:59:43Z +9624 2005-07-31T04:30:03Z 3480 7 2005-08-06T09:13:03Z 1 2020-02-15T06:59:43Z +9625 2005-07-31T04:30:48Z 1703 445 2005-08-03T01:12:48Z 1 2020-02-15T06:59:43Z +9626 2005-07-31T04:37:41Z 2216 546 2005-08-08T04:00:41Z 1 2020-02-15T06:59:43Z +9627 2005-07-31T04:42:46Z 471 12 2005-08-08T00:42:46Z 2 2020-02-15T06:59:43Z +9628 2005-07-31T04:51:11Z 1387 565 2005-07-31T23:11:11Z 2 2020-02-15T06:59:43Z +9629 2005-07-31T04:54:43Z 2773 8 2005-08-02T08:36:43Z 1 2020-02-15T06:59:43Z +9630 2005-07-31T04:57:07Z 2008 599 2005-08-07T10:55:07Z 2 2020-02-15T06:59:43Z +9631 2005-07-31T05:02:00Z 321 595 2005-08-02T02:04:00Z 2 2020-02-15T06:59:43Z +9632 2005-07-31T05:02:23Z 3368 217 2005-08-06T04:49:23Z 2 2020-02-15T06:59:43Z +9633 2005-07-31T05:04:08Z 1141 334 2005-08-06T00:52:08Z 2 2020-02-15T06:59:43Z +9634 2005-07-31T05:06:02Z 924 444 2005-08-04T06:53:02Z 1 2020-02-15T06:59:43Z +9635 2005-07-31T05:12:27Z 1687 371 2005-08-02T00:24:27Z 2 2020-02-15T06:59:43Z +9636 2005-07-31T05:12:59Z 1725 27 2005-08-09T07:31:59Z 2 2020-02-15T06:59:43Z +9637 2005-07-31T05:18:54Z 3013 130 2005-08-03T01:23:54Z 2 2020-02-15T06:59:43Z +9638 2005-07-31T05:30:27Z 1616 436 2005-08-09T02:04:27Z 1 2020-02-15T06:59:43Z +9639 2005-07-31T05:32:10Z 1373 459 2005-08-03T07:04:10Z 2 2020-02-15T06:59:43Z +9640 2005-07-31T05:33:25Z 1067 67 2005-08-09T09:41:25Z 1 2020-02-15T06:59:43Z +9641 2005-07-31T05:33:48Z 1085 30 2005-08-04T07:43:48Z 1 2020-02-15T06:59:43Z +9642 2005-07-31T05:33:57Z 3550 68 2005-08-05T04:54:57Z 1 2020-02-15T06:59:43Z +9643 2005-07-31T05:35:48Z 3576 538 2005-08-08T04:28:48Z 2 2020-02-15T06:59:43Z +9644 2005-07-31T05:40:35Z 4577 441 2005-08-09T08:18:35Z 1 2020-02-15T06:59:43Z +9645 2005-07-31T05:42:49Z 3413 519 2005-08-04T00:08:49Z 1 2020-02-15T06:59:43Z +9646 2005-07-31T05:43:28Z 3756 89 2005-08-08T04:00:28Z 1 2020-02-15T06:59:43Z +9647 2005-07-31T05:45:15Z 3415 475 2005-08-06T08:54:15Z 1 2020-02-15T06:59:43Z +9648 2005-07-31T05:46:03Z 4063 72 2005-08-09T04:36:03Z 2 2020-02-15T06:59:43Z +9649 2005-07-31T05:46:54Z 1588 51 2005-08-04T08:42:54Z 2 2020-02-15T06:59:43Z +9650 2005-07-31T05:47:32Z 2997 414 2005-08-04T00:50:32Z 2 2020-02-15T06:59:43Z +9651 2005-07-31T05:48:49Z 4059 324 2005-08-04T06:53:49Z 1 2020-02-15T06:59:43Z +9652 2005-07-31T05:49:53Z 448 207 2005-08-06T07:38:53Z 2 2020-02-15T06:59:43Z +9653 2005-07-31T05:55:38Z 1451 383 2005-08-03T09:35:38Z 2 2020-02-15T06:59:43Z +9654 2005-07-31T05:57:42Z 3286 506 2005-08-06T04:19:42Z 1 2020-02-15T06:59:43Z +9655 2005-07-31T05:57:54Z 3403 435 2005-08-06T02:00:54Z 1 2020-02-15T06:59:43Z +9656 2005-07-31T06:00:21Z 4215 39 2005-08-05T04:36:21Z 1 2020-02-15T06:59:43Z +9657 2005-07-31T06:00:41Z 2681 402 2005-08-06T06:51:41Z 2 2020-02-15T06:59:43Z +9658 2005-07-31T06:00:52Z 2332 282 2005-08-09T04:47:52Z 2 2020-02-15T06:59:43Z +9659 2005-07-31T06:02:14Z 4262 360 2005-08-07T00:54:14Z 2 2020-02-15T06:59:43Z +9660 2005-07-31T06:03:17Z 1090 406 2005-08-07T06:59:17Z 2 2020-02-15T06:59:43Z +9661 2005-07-31T06:06:37Z 2693 237 2005-08-04T07:37:37Z 1 2020-02-15T06:59:43Z +9662 2005-07-31T06:09:53Z 2757 96 2005-08-08T00:50:53Z 2 2020-02-15T06:59:43Z +9663 2005-07-31T06:10:48Z 2099 339 2005-08-01T11:40:48Z 2 2020-02-15T06:59:43Z +9664 2005-07-31T06:12:08Z 360 13 2005-08-04T02:19:08Z 2 2020-02-15T06:59:43Z +9665 2005-07-31T06:17:33Z 2863 478 2005-08-04T08:53:33Z 1 2020-02-15T06:59:43Z +9666 2005-07-31T06:20:58Z 4318 592 2005-08-06T06:09:58Z 2 2020-02-15T06:59:43Z +9667 2005-07-31T06:23:52Z 4289 523 2005-08-09T09:12:52Z 1 2020-02-15T06:59:43Z +9668 2005-07-31T06:31:03Z 1647 378 2005-08-07T06:19:03Z 2 2020-02-15T06:59:43Z +9669 2005-07-31T06:31:36Z 4496 277 2005-08-08T03:05:36Z 2 2020-02-15T06:59:43Z +9670 2005-07-31T06:33:33Z 3709 349 2005-08-07T04:51:33Z 1 2020-02-15T06:59:43Z +9671 2005-07-31T06:33:41Z 920 133 2005-08-02T07:50:41Z 1 2020-02-15T06:59:43Z +9672 2005-07-31T06:34:06Z 4394 183 2005-08-08T10:29:06Z 2 2020-02-15T06:59:43Z +9673 2005-07-31T06:34:55Z 339 27 2005-08-09T09:15:55Z 2 2020-02-15T06:59:43Z +9674 2005-07-31T06:36:53Z 3213 297 2005-08-06T02:50:53Z 2 2020-02-15T06:59:43Z +9675 2005-07-31T06:37:07Z 2523 243 2005-08-03T07:03:07Z 1 2020-02-15T06:59:43Z +9676 2005-07-31T06:39:13Z 681 239 2005-08-05T09:31:13Z 2 2020-02-15T06:59:43Z +9677 2005-07-31T06:39:45Z 3200 274 2005-08-01T02:37:45Z 2 2020-02-15T06:59:43Z +9678 2005-07-31T06:40:47Z 3430 383 2005-08-02T00:57:47Z 2 2020-02-15T06:59:43Z +9679 2005-07-31T06:41:19Z 3819 599 2005-08-02T07:23:19Z 1 2020-02-15T06:59:43Z +9680 2005-07-31T06:41:46Z 3010 84 2005-08-01T11:02:46Z 2 2020-02-15T06:59:43Z +9681 2005-07-31T06:42:09Z 64 160 2005-08-06T08:21:09Z 1 2020-02-15T06:59:43Z +9682 2005-07-31T06:47:10Z 2427 425 2005-08-04T09:07:10Z 1 2020-02-15T06:59:43Z +9683 2005-07-31T06:47:13Z 856 141 2005-08-04T05:52:13Z 2 2020-02-15T06:59:43Z +9684 2005-07-31T06:48:33Z 362 591 2005-08-01T07:07:33Z 2 2020-02-15T06:59:43Z +9685 2005-07-31T06:49:18Z 3097 165 2005-08-04T03:19:18Z 1 2020-02-15T06:59:43Z +9686 2005-07-31T06:50:06Z 3825 386 2005-08-06T08:41:06Z 1 2020-02-15T06:59:43Z +9687 2005-07-31T06:52:54Z 3540 470 2005-08-01T03:40:54Z 2 2020-02-15T06:59:43Z +9688 2005-07-31T06:56:08Z 1304 566 2005-08-08T03:31:08Z 2 2020-02-15T06:59:43Z +9689 2005-07-31T07:00:08Z 819 498 2005-08-04T03:33:08Z 2 2020-02-15T06:59:43Z +9690 2005-07-31T07:06:29Z 4449 468 2005-08-06T09:45:29Z 2 2020-02-15T06:59:43Z +9691 2005-07-31T07:09:55Z 2626 50 2005-08-09T02:29:55Z 1 2020-02-15T06:59:43Z +9692 2005-07-31T07:11:04Z 3481 295 2005-08-07T06:34:04Z 2 2020-02-15T06:59:43Z +9693 2005-07-31T07:11:50Z 1031 273 2005-08-08T09:55:50Z 1 2020-02-15T06:59:43Z +9694 2005-07-31T07:13:16Z 3447 508 2005-08-06T09:12:16Z 2 2020-02-15T06:59:43Z +9695 2005-07-31T07:13:30Z 726 95 2005-08-07T05:38:30Z 2 2020-02-15T06:59:43Z +9696 2005-07-31T07:13:46Z 2703 156 2005-08-03T10:49:46Z 2 2020-02-15T06:59:43Z +9697 2005-07-31T07:23:11Z 762 479 2005-08-05T08:04:11Z 2 2020-02-15T06:59:43Z +9698 2005-07-31T07:24:35Z 3477 594 2005-08-09T04:52:35Z 2 2020-02-15T06:59:43Z +9699 2005-07-31T07:29:25Z 199 21 2005-08-06T01:35:25Z 1 2020-02-15T06:59:43Z +9700 2005-07-31T07:29:59Z 2678 40 2005-08-02T09:53:59Z 1 2020-02-15T06:59:43Z +9701 2005-07-31T07:32:21Z 4581 401 2005-08-01T05:07:21Z 2 2020-02-15T06:59:43Z +9702 2005-07-31T07:34:07Z 3353 525 2005-08-02T06:13:07Z 2 2020-02-15T06:59:43Z +9703 2005-07-31T07:34:52Z 2708 57 2005-08-03T13:33:52Z 2 2020-02-15T06:59:43Z +9704 2005-07-31T07:39:32Z 1402 385 2005-08-06T01:50:32Z 2 2020-02-15T06:59:43Z +9705 2005-07-31T07:40:33Z 4158 28 2005-08-01T03:50:33Z 2 2020-02-15T06:59:43Z +9706 2005-07-31T07:43:19Z 142 508 2005-08-05T11:11:19Z 1 2020-02-15T06:59:43Z +9707 2005-07-31T07:44:18Z 203 351 2005-08-08T12:45:18Z 1 2020-02-15T06:59:43Z +9708 2005-07-31T07:45:33Z 3264 12 2005-08-08T08:56:33Z 1 2020-02-15T06:59:43Z +9709 2005-07-31T08:04:55Z 2096 137 2005-08-07T08:58:55Z 1 2020-02-15T06:59:43Z +9710 2005-07-31T08:05:31Z 3486 380 2005-08-09T03:29:31Z 2 2020-02-15T06:59:43Z +9711 2005-07-31T08:06:41Z 1525 231 2005-08-02T10:30:41Z 2 2020-02-15T06:59:43Z +9712 2005-07-31T08:13:11Z 2487 219 2005-08-08T12:40:11Z 2 2020-02-15T06:59:43Z +9713 2005-07-31T08:13:28Z 929 158 2005-08-07T10:11:28Z 1 2020-02-15T06:59:43Z +9714 2005-07-31T08:15:32Z 1532 144 2005-08-03T08:33:32Z 2 2020-02-15T06:59:43Z +9715 2005-07-31T08:16:58Z 3319 237 2005-08-04T11:13:58Z 1 2020-02-15T06:59:43Z +9716 2005-07-31T08:23:53Z 3385 287 2005-08-08T12:03:53Z 2 2020-02-15T06:59:43Z +9717 2005-07-31T08:24:41Z 4207 114 2005-08-04T02:51:41Z 1 2020-02-15T06:59:43Z +9718 2005-07-31T08:25:03Z 2747 23 2005-08-08T04:16:03Z 2 2020-02-15T06:59:43Z +9719 2005-07-31T08:25:13Z 335 584 2005-08-05T08:22:13Z 1 2020-02-15T06:59:43Z +9720 2005-07-31T08:25:21Z 1282 587 2005-08-07T11:30:21Z 2 2020-02-15T06:59:43Z +9721 2005-07-31T08:28:46Z 3942 196 2005-08-05T14:03:46Z 1 2020-02-15T06:59:43Z +9722 2005-07-31T08:29:48Z 4260 125 2005-08-07T07:52:48Z 2 2020-02-15T06:59:43Z +9723 2005-07-31T08:31:18Z 3968 24 2005-08-03T10:25:18Z 1 2020-02-15T06:59:43Z +9724 2005-07-31T08:33:08Z 518 130 2005-08-08T04:50:08Z 1 2020-02-15T06:59:43Z +9725 2005-07-31T08:35:18Z 3960 503 2005-08-03T03:46:18Z 2 2020-02-15T06:59:43Z +9726 2005-07-31T08:37:07Z 1701 162 2005-08-09T06:09:07Z 1 2020-02-15T06:59:43Z +9727 2005-07-31T08:39:13Z 3076 536 2005-08-03T07:54:13Z 1 2020-02-15T06:59:43Z +9728 2005-07-31T08:40:54Z 3630 399 2005-08-03T04:14:54Z 2 2020-02-15T06:59:43Z +9729 2005-07-31T08:43:43Z 4199 273 2005-08-01T13:25:43Z 2 2020-02-15T06:59:43Z +9730 2005-07-31T08:50:08Z 2605 242 2005-08-08T12:21:08Z 2 2020-02-15T06:59:43Z +9731 2005-07-31T08:54:47Z 3713 349 2005-08-05T03:47:47Z 1 2020-02-15T06:59:43Z +9732 2005-07-31T08:56:08Z 3262 288 2005-08-07T11:05:08Z 2 2020-02-15T06:59:43Z +9733 2005-07-31T08:57:35Z 1255 575 2005-08-04T04:47:35Z 1 2020-02-15T06:59:43Z +9734 2005-07-31T08:57:45Z 3320 125 2005-08-05T11:57:45Z 1 2020-02-15T06:59:43Z +9735 2005-07-31T08:57:49Z 4228 315 2005-08-08T13:51:49Z 2 2020-02-15T06:59:43Z +9736 2005-07-31T08:58:40Z 2072 13 2005-08-09T08:34:40Z 2 2020-02-15T06:59:43Z +9737 2005-07-31T08:59:18Z 1720 475 2005-08-03T12:19:18Z 2 2020-02-15T06:59:43Z +9738 2005-07-31T09:04:14Z 2278 568 2005-08-05T14:40:14Z 2 2020-02-15T06:59:43Z +9739 2005-07-31T09:08:03Z 1328 343 2005-08-04T13:57:03Z 1 2020-02-15T06:59:43Z +9740 2005-07-31T09:08:03Z 3497 443 2005-08-06T04:48:03Z 2 2020-02-15T06:59:43Z +9741 2005-07-31T09:09:22Z 1971 495 2005-08-07T10:01:22Z 1 2020-02-15T06:59:43Z +9742 2005-07-31T09:10:20Z 4058 48 2005-08-08T10:07:20Z 1 2020-02-15T06:59:43Z +9743 2005-07-31T09:12:42Z 1740 476 2005-08-06T11:57:42Z 2 2020-02-15T06:59:43Z +9744 2005-07-31T09:15:38Z 839 459 2005-08-03T10:31:38Z 2 2020-02-15T06:59:43Z +9745 2005-07-31T09:16:14Z 3610 217 2005-08-07T12:11:14Z 1 2020-02-15T06:59:43Z +9746 2005-07-31T09:16:48Z 1459 308 2005-08-07T06:36:48Z 2 2020-02-15T06:59:43Z +9747 2005-07-31T09:16:57Z 2455 106 2005-08-08T06:47:57Z 2 2020-02-15T06:59:43Z +9748 2005-07-31T09:17:56Z 3308 550 2005-08-02T14:54:56Z 1 2020-02-15T06:59:43Z +9749 2005-07-31T09:18:33Z 658 52 2005-08-06T07:41:33Z 1 2020-02-15T06:59:43Z +9750 2005-07-31T09:19:46Z 3174 527 2005-08-06T08:07:46Z 1 2020-02-15T06:59:43Z +9751 2005-07-31T09:20:50Z 36 202 2005-08-01T05:34:50Z 2 2020-02-15T06:59:43Z +9752 2005-07-31T09:22:02Z 249 199 2005-08-02T14:34:02Z 1 2020-02-15T06:59:43Z +9753 2005-07-31T09:22:38Z 3529 98 2005-08-01T08:45:38Z 1 2020-02-15T06:59:43Z +9754 2005-07-31T09:23:43Z 3751 479 2005-08-08T06:04:43Z 1 2020-02-15T06:59:43Z +9755 2005-07-31T09:24:55Z 86 108 2005-08-07T06:00:55Z 2 2020-02-15T06:59:43Z +9756 2005-07-31T09:25:00Z 207 400 2005-08-02T05:11:00Z 1 2020-02-15T06:59:43Z +9757 2005-07-31T09:25:14Z 2596 408 2005-08-01T14:43:14Z 2 2020-02-15T06:59:43Z +9758 2005-07-31T09:25:38Z 1307 160 2005-08-03T14:16:38Z 1 2020-02-15T06:59:43Z +9759 2005-07-31T09:25:57Z 2950 574 2005-08-07T12:56:57Z 2 2020-02-15T06:59:43Z +9760 2005-07-31T09:29:33Z 426 511 2005-08-09T07:32:33Z 2 2020-02-15T06:59:43Z +9761 2005-07-31T09:31:54Z 3778 60 2005-08-03T11:02:54Z 2 2020-02-15T06:59:43Z +9762 2005-07-31T09:32:54Z 155 540 2005-08-05T04:55:54Z 1 2020-02-15T06:59:43Z +9763 2005-07-31T09:34:03Z 126 393 2005-08-08T05:30:03Z 1 2020-02-15T06:59:43Z +9764 2005-07-31T09:42:58Z 3761 136 2005-08-07T07:22:58Z 2 2020-02-15T06:59:43Z +9765 2005-07-31T09:44:40Z 472 551 2005-08-05T10:57:40Z 1 2020-02-15T06:59:43Z +9766 2005-07-31T09:46:29Z 4049 570 2005-08-01T05:08:29Z 1 2020-02-15T06:59:43Z +9767 2005-07-31T09:46:49Z 3432 89 2005-08-03T11:20:49Z 1 2020-02-15T06:59:43Z +9768 2005-07-31T09:48:41Z 2656 582 2005-08-08T11:40:41Z 2 2020-02-15T06:59:43Z +9769 2005-07-31T09:52:16Z 2958 484 2005-08-06T09:26:16Z 1 2020-02-15T06:59:43Z +9770 2005-07-31T09:52:40Z 1226 317 2005-08-09T06:44:40Z 1 2020-02-15T06:59:43Z +9771 2005-07-31T09:55:36Z 4123 398 2005-08-04T10:11:36Z 2 2020-02-15T06:59:43Z +9772 2005-07-31T09:56:07Z 3639 147 2005-08-01T13:50:07Z 2 2020-02-15T06:59:43Z +9773 2005-07-31T09:56:56Z 4555 376 2005-08-04T09:38:56Z 1 2020-02-15T06:59:43Z +9774 2005-07-31T09:57:51Z 4174 306 2005-08-02T09:08:51Z 2 2020-02-15T06:59:43Z +9775 2005-07-31T10:00:00Z 2818 162 2005-08-01T08:57:00Z 2 2020-02-15T06:59:43Z +9776 2005-07-31T10:01:03Z 2524 73 2005-08-03T07:20:03Z 2 2020-02-15T06:59:43Z +9777 2005-07-31T10:01:06Z 225 539 2005-08-08T04:44:06Z 2 2020-02-15T06:59:43Z +9778 2005-07-31T10:02:04Z 304 230 2005-08-04T07:44:04Z 2 2020-02-15T06:59:43Z +9779 2005-07-31T10:08:33Z 1280 402 2005-08-03T14:56:33Z 1 2020-02-15T06:59:43Z +9780 2005-07-31T10:10:22Z 3241 102 2005-08-02T11:43:22Z 1 2020-02-15T06:59:43Z +9781 2005-07-31T10:13:02Z 2310 155 2005-08-09T14:46:02Z 1 2020-02-15T06:59:43Z +9782 2005-07-31T10:14:26Z 2397 438 2005-08-06T16:11:26Z 1 2020-02-15T06:59:43Z +9783 2005-07-31T10:15:46Z 836 75 2005-08-09T13:22:46Z 2 2020-02-15T06:59:43Z +9784 2005-07-31T10:21:32Z 2761 362 2005-08-07T09:20:32Z 2 2020-02-15T06:59:43Z +9785 2005-07-31T10:22:15Z 4101 587 2005-08-02T10:02:15Z 1 2020-02-15T06:59:43Z +9786 2005-07-31T10:25:21Z 2560 586 2005-08-03T04:28:21Z 1 2020-02-15T06:59:43Z +9787 2005-07-31T10:26:19Z 3559 272 2005-08-09T09:02:19Z 1 2020-02-15T06:59:43Z +9788 2005-07-31T10:28:21Z 4367 344 2005-08-09T13:45:21Z 1 2020-02-15T06:59:43Z +9789 2005-07-31T10:30:25Z 619 137 2005-08-03T14:58:25Z 1 2020-02-15T06:59:43Z +9790 2005-07-31T10:34:08Z 3643 284 2005-08-04T11:19:08Z 2 2020-02-15T06:59:43Z +9791 2005-07-31T10:35:22Z 3642 300 2005-08-03T05:34:22Z 1 2020-02-15T06:59:43Z +9792 2005-07-31T10:43:41Z 3163 292 2005-08-07T10:18:41Z 1 2020-02-15T06:59:43Z +9793 2005-07-31T10:45:11Z 4576 295 2005-08-03T14:29:11Z 1 2020-02-15T06:59:43Z +9794 2005-07-31T10:47:01Z 1771 403 2005-08-02T06:52:01Z 2 2020-02-15T06:59:43Z +9795 2005-07-31T10:47:19Z 2005 63 2005-08-04T09:32:19Z 2 2020-02-15T06:59:43Z +9796 2005-07-31T10:52:43Z 1038 539 2005-08-09T06:08:43Z 1 2020-02-15T06:59:43Z +9797 2005-07-31T10:53:44Z 687 52 2005-08-09T05:51:44Z 1 2020-02-15T06:59:43Z +9798 2005-07-31T10:55:18Z 3759 55 2005-08-01T07:37:18Z 2 2020-02-15T06:59:43Z +9799 2005-07-31T10:58:32Z 3008 494 2005-08-01T12:08:32Z 1 2020-02-15T06:59:43Z +9800 2005-07-31T11:00:58Z 2153 257 2005-08-02T10:13:58Z 2 2020-02-15T06:59:43Z +9801 2005-07-31T11:03:13Z 3033 158 2005-08-04T10:55:13Z 2 2020-02-15T06:59:43Z +9802 2005-07-31T11:04:20Z 2156 594 2005-08-03T05:28:20Z 1 2020-02-15T06:59:43Z +9803 2005-07-31T11:06:02Z 3783 520 2005-08-01T06:25:02Z 1 2020-02-15T06:59:43Z +9804 2005-07-31T11:07:39Z 2490 196 2005-08-09T11:57:39Z 1 2020-02-15T06:59:43Z +9805 2005-07-31T11:11:10Z 4179 36 2005-08-03T07:36:10Z 2 2020-02-15T06:59:43Z +9806 2005-07-31T11:13:49Z 245 46 2005-08-04T06:18:49Z 1 2020-02-15T06:59:43Z +9807 2005-07-31T11:13:52Z 2137 267 2005-08-02T07:34:52Z 1 2020-02-15T06:59:43Z +9808 2005-07-31T11:17:22Z 3259 583 2005-08-07T15:54:22Z 1 2020-02-15T06:59:43Z +9809 2005-07-31T11:19:21Z 359 286 2005-08-08T12:43:21Z 2 2020-02-15T06:59:43Z +9810 2005-07-31T11:22:41Z 2066 545 2005-08-01T09:40:41Z 2 2020-02-15T06:59:43Z +9811 2005-07-31T11:23:45Z 3305 77 2005-08-06T15:51:45Z 1 2020-02-15T06:59:43Z +9812 2005-07-31T11:28:07Z 1540 57 2005-08-01T12:35:07Z 2 2020-02-15T06:59:43Z +9813 2005-07-31T11:29:23Z 1706 245 2005-08-07T08:01:23Z 2 2020-02-15T06:59:43Z +9814 2005-07-31T11:29:46Z 136 79 2005-08-08T15:49:46Z 1 2020-02-15T06:59:43Z +9815 2005-07-31T11:30:51Z 2728 540 2005-08-08T12:52:51Z 1 2020-02-15T06:59:43Z +9816 2005-07-31T11:32:58Z 4560 3 2005-08-04T17:12:58Z 2 2020-02-15T06:59:43Z +9817 2005-07-31T11:33:31Z 4019 170 2005-08-08T14:49:31Z 2 2020-02-15T06:59:43Z +9818 2005-07-31T11:34:32Z 1254 183 2005-08-04T08:20:32Z 1 2020-02-15T06:59:43Z +9819 2005-07-31T11:39:13Z 1927 292 2005-08-06T09:11:13Z 2 2020-02-15T06:59:43Z +9820 2005-07-31T11:46:57Z 499 279 2005-08-08T13:35:57Z 1 2020-02-15T06:59:43Z +9821 2005-07-31T11:47:54Z 386 271 2005-08-08T06:21:54Z 2 2020-02-15T06:59:43Z +9822 2005-07-31T11:48:25Z 2469 381 2005-08-05T15:52:25Z 2 2020-02-15T06:59:43Z +9823 2005-07-31T11:49:00Z 4423 129 2005-08-07T09:06:00Z 2 2020-02-15T06:59:43Z +9824 2005-07-31T11:49:55Z 4368 404 2005-08-07T16:54:55Z 2 2020-02-15T06:59:43Z +9825 2005-07-31T11:50:51Z 4322 390 2005-08-02T07:18:51Z 1 2020-02-15T06:59:43Z +9826 2005-07-31T11:51:46Z 2649 595 2005-08-09T17:18:46Z 1 2020-02-15T06:59:43Z +9827 2005-07-31T11:56:55Z 3840 329 2005-08-09T16:29:55Z 1 2020-02-15T06:59:43Z +9828 2005-07-31T11:56:57Z 3845 376 2005-08-02T17:05:57Z 1 2020-02-15T06:59:43Z +9829 2005-07-31T11:58:38Z 231 435 2005-08-07T08:11:38Z 2 2020-02-15T06:59:43Z +9830 2005-07-31T11:59:05Z 170 112 2005-08-06T10:38:05Z 1 2020-02-15T06:59:43Z +9831 2005-07-31T11:59:32Z 1961 192 2005-08-04T07:14:32Z 1 2020-02-15T06:59:43Z +9832 2005-07-31T12:01:49Z 3126 64 2005-08-08T09:21:49Z 1 2020-02-15T06:59:43Z +9833 2005-07-31T12:05:01Z 4243 368 2005-08-09T09:25:01Z 2 2020-02-15T06:59:43Z +9834 2005-07-31T12:05:42Z 2292 340 2005-08-07T15:26:42Z 1 2020-02-15T06:59:43Z +9835 2005-07-31T12:07:35Z 1051 328 2005-08-04T07:32:35Z 2 2020-02-15T06:59:43Z +9836 2005-07-31T12:12:00Z 2870 313 2005-08-09T06:53:00Z 1 2020-02-15T06:59:43Z +9837 2005-07-31T12:14:19Z 3488 573 2005-08-09T17:08:19Z 1 2020-02-15T06:59:43Z +9838 2005-07-31T12:18:49Z 3866 208 2005-08-03T16:49:49Z 2 2020-02-15T06:59:43Z +9839 2005-07-31T12:21:16Z 1591 561 2005-08-09T13:41:16Z 2 2020-02-15T06:59:43Z +9840 2005-07-31T12:23:18Z 364 388 2005-08-06T15:59:18Z 1 2020-02-15T06:59:43Z +9841 2005-07-31T12:24:19Z 4554 238 2005-08-09T15:31:19Z 1 2020-02-15T06:59:43Z +9842 2005-07-31T12:24:58Z 2896 261 2005-08-02T11:01:58Z 2 2020-02-15T06:59:43Z +9843 2005-07-31T12:25:28Z 2923 532 2005-08-01T09:51:28Z 2 2020-02-15T06:59:43Z +9844 2005-07-31T12:26:31Z 3930 181 2005-08-05T13:58:31Z 1 2020-02-15T06:59:43Z +9845 2005-07-31T12:28:05Z 2417 79 2005-08-06T06:47:05Z 1 2020-02-15T06:59:43Z +9846 2005-07-31T12:30:12Z 4240 573 2005-08-05T08:24:12Z 2 2020-02-15T06:59:43Z +9847 2005-07-31T12:33:43Z 1137 174 2005-08-04T14:15:43Z 2 2020-02-15T06:59:43Z +9848 2005-07-31T12:44:33Z 3290 346 2005-08-07T13:49:33Z 2 2020-02-15T06:59:43Z +9849 2005-07-31T12:44:34Z 2230 429 2005-08-02T16:49:34Z 1 2020-02-15T06:59:43Z +9850 2005-07-31T12:46:52Z 1461 497 2005-08-04T10:52:52Z 2 2020-02-15T06:59:43Z +9851 2005-07-31T12:50:24Z 25 49 2005-08-08T08:30:24Z 2 2020-02-15T06:59:43Z +9852 2005-07-31T12:52:17Z 4257 415 2005-08-05T07:59:17Z 2 2020-02-15T06:59:43Z +9853 2005-07-31T12:58:20Z 1782 221 2005-08-04T10:47:20Z 1 2020-02-15T06:59:43Z +9854 2005-07-31T12:59:34Z 1049 441 2005-08-03T07:20:34Z 2 2020-02-15T06:59:43Z +9855 2005-07-31T13:00:33Z 1246 326 2005-08-03T16:18:33Z 2 2020-02-15T06:59:43Z +9856 2005-07-31T13:00:35Z 723 347 2005-08-07T18:07:35Z 1 2020-02-15T06:59:43Z +9857 2005-07-31T13:00:53Z 3316 168 2005-08-09T15:56:53Z 1 2020-02-15T06:59:43Z +9858 2005-07-31T13:02:07Z 252 128 2005-08-03T15:14:07Z 2 2020-02-15T06:59:43Z +9859 2005-07-31T13:02:55Z 4094 127 2005-08-05T11:04:55Z 1 2020-02-15T06:59:43Z +9860 2005-07-31T13:03:24Z 3266 585 2005-08-07T07:28:24Z 2 2020-02-15T06:59:43Z +9861 2005-07-31T13:04:14Z 1050 264 2005-08-09T15:22:14Z 1 2020-02-15T06:59:43Z +9862 2005-07-31T13:05:03Z 474 513 2005-08-01T09:05:03Z 2 2020-02-15T06:59:43Z +9863 2005-07-31T13:05:29Z 19 239 2005-08-08T12:33:29Z 1 2020-02-15T06:59:43Z +9864 2005-07-31T13:06:54Z 3619 394 2005-08-02T11:47:54Z 2 2020-02-15T06:59:43Z +9865 2005-07-31T13:10:45Z 1355 580 2005-08-02T09:19:45Z 2 2020-02-15T06:59:43Z +9866 2005-07-31T13:13:50Z 3555 374 2005-08-07T15:11:50Z 1 2020-02-15T06:59:43Z +9867 2005-07-31T13:17:04Z 2485 83 2005-08-05T07:17:04Z 2 2020-02-15T06:59:43Z +9868 2005-07-31T13:20:08Z 266 378 2005-08-01T18:17:08Z 2 2020-02-15T06:59:43Z +9869 2005-07-31T13:21:54Z 783 261 2005-08-07T09:09:54Z 1 2020-02-15T06:59:43Z +9870 2005-07-31T13:22:51Z 442 195 2005-08-05T16:04:51Z 1 2020-02-15T06:59:43Z +9871 2005-07-31T13:25:46Z 194 109 2005-08-01T13:12:46Z 2 2020-02-15T06:59:43Z +9872 2005-07-31T13:27:55Z 1021 376 2005-08-04T14:33:55Z 1 2020-02-15T06:59:43Z +9873 2005-07-31T13:32:18Z 667 442 2005-08-06T11:15:18Z 2 2020-02-15T06:59:43Z +9874 2005-07-31T13:32:31Z 2476 482 2005-08-07T09:50:31Z 2 2020-02-15T06:59:43Z +9875 2005-07-31T13:37:41Z 2878 421 2005-08-03T15:17:41Z 2 2020-02-15T06:59:43Z +9876 2005-07-31T13:37:51Z 828 347 2005-08-07T18:05:51Z 2 2020-02-15T06:59:43Z +9877 2005-07-31T13:41:57Z 1299 559 2005-08-06T15:27:57Z 2 2020-02-15T06:59:43Z +9878 2005-07-31T13:42:02Z 1753 424 2005-08-05T10:15:02Z 2 2020-02-15T06:59:43Z +9879 2005-07-31T13:45:32Z 1935 178 2005-08-07T17:12:32Z 1 2020-02-15T06:59:43Z +9880 2005-07-31T13:49:02Z 3590 64 2005-08-08T10:31:02Z 2 2020-02-15T06:59:43Z +9881 2005-07-31T13:50:38Z 4209 412 2005-08-06T08:58:38Z 1 2020-02-15T06:59:43Z +9882 2005-07-31T13:53:33Z 1429 311 2005-08-09T15:55:33Z 1 2020-02-15T06:59:43Z +9883 2005-07-31T13:53:37Z 4286 356 2005-08-06T15:45:37Z 1 2020-02-15T06:59:43Z +9884 2005-07-31T13:56:24Z 511 590 2005-08-01T16:59:24Z 1 2020-02-15T06:59:43Z +9885 2005-07-31T13:59:32Z 3600 461 2005-08-07T12:30:32Z 2 2020-02-15T06:59:43Z +9886 2005-07-31T14:00:13Z 1386 519 2005-08-08T19:30:13Z 1 2020-02-15T06:59:43Z +9887 2005-07-31T14:00:32Z 436 549 2005-08-05T19:16:32Z 1 2020-02-15T06:59:43Z +9888 2005-07-31T14:00:53Z 4400 5 2005-08-08T18:51:53Z 2 2020-02-15T06:59:43Z +9889 2005-07-31T14:02:50Z 2842 143 2005-08-05T12:09:50Z 2 2020-02-15T06:59:43Z +9890 2005-07-31T14:04:44Z 1024 151 2005-08-01T11:24:44Z 1 2020-02-15T06:59:43Z +9891 2005-07-31T14:05:44Z 3359 462 2005-08-02T16:21:44Z 2 2020-02-15T06:59:43Z +9892 2005-07-31T14:06:25Z 1045 251 2005-08-03T18:11:25Z 2 2020-02-15T06:59:43Z +9893 2005-07-31T14:07:21Z 2445 179 2005-08-01T09:20:21Z 2 2020-02-15T06:59:43Z +9894 2005-07-31T14:07:44Z 3724 199 2005-08-05T18:01:44Z 2 2020-02-15T06:59:43Z +9895 2005-07-31T14:07:56Z 835 560 2005-08-05T14:56:56Z 1 2020-02-15T06:59:43Z +9896 2005-07-31T14:09:48Z 2591 586 2005-08-01T20:02:48Z 1 2020-02-15T06:59:43Z +9897 2005-07-31T14:11:57Z 3945 538 2005-08-02T12:20:57Z 1 2020-02-15T06:59:43Z +9898 2005-07-31T14:12:03Z 2151 359 2005-08-01T12:27:03Z 1 2020-02-15T06:59:43Z +9899 2005-07-31T14:12:36Z 3352 168 2005-08-08T08:59:36Z 1 2020-02-15T06:59:43Z +9900 2005-07-31T14:15:05Z 3132 453 2005-08-07T11:58:05Z 2 2020-02-15T06:59:43Z +9901 2005-07-31T14:20:59Z 3332 277 2005-08-03T09:30:59Z 1 2020-02-15T06:59:43Z +9902 2005-07-31T14:24:33Z 486 218 2005-08-09T11:11:33Z 2 2020-02-15T06:59:43Z +9903 2005-07-31T14:31:44Z 1621 316 2005-08-08T20:03:44Z 1 2020-02-15T06:59:43Z +9904 2005-07-31T14:34:17Z 4089 428 2005-08-08T17:19:17Z 1 2020-02-15T06:59:43Z +9905 2005-07-31T14:37:03Z 2839 519 2005-08-01T15:55:03Z 2 2020-02-15T06:59:43Z +9906 2005-07-31T14:38:12Z 4241 204 2005-08-01T13:56:12Z 1 2020-02-15T06:59:43Z +9907 2005-07-31T14:39:50Z 4282 120 2005-08-09T09:39:50Z 1 2020-02-15T06:59:43Z +9908 2005-07-31T14:39:52Z 4408 27 2005-08-09T09:46:52Z 2 2020-02-15T06:59:43Z +9909 2005-07-31T14:43:34Z 2600 587 2005-08-09T15:31:34Z 1 2020-02-15T06:59:43Z +9910 2005-07-31T14:47:57Z 368 122 2005-08-05T18:20:57Z 1 2020-02-15T06:59:43Z +9911 2005-07-31T14:48:01Z 3879 112 2005-08-06T11:55:01Z 1 2020-02-15T06:59:43Z +9912 2005-07-31T14:49:04Z 3119 367 2005-08-03T15:40:04Z 1 2020-02-15T06:59:43Z +9913 2005-07-31T14:51:04Z 3744 229 2005-08-06T12:12:04Z 1 2020-02-15T06:59:43Z +9914 2005-07-31T14:51:19Z 3147 530 2005-08-05T09:51:19Z 1 2020-02-15T06:59:43Z +9915 2005-07-31T14:52:26Z 2933 566 2005-08-03T11:53:26Z 1 2020-02-15T06:59:43Z +9916 2005-07-31T14:54:52Z 949 432 2005-08-07T13:18:52Z 1 2020-02-15T06:59:43Z +9917 2005-07-31T14:55:11Z 3829 159 2005-08-02T13:58:11Z 2 2020-02-15T06:59:43Z +9918 2005-07-31T14:55:22Z 2519 283 2005-08-04T09:02:22Z 2 2020-02-15T06:59:43Z +9919 2005-07-31T14:55:46Z 3205 291 2005-08-08T11:43:46Z 2 2020-02-15T06:59:43Z +9920 2005-07-31T14:57:13Z 3108 139 2005-08-03T18:58:13Z 2 2020-02-15T06:59:43Z +9921 2005-07-31T14:59:21Z 1004 332 2005-08-01T12:40:21Z 2 2020-02-15T06:59:43Z +9922 2005-07-31T14:59:37Z 3615 25 2005-08-06T14:05:37Z 1 2020-02-15T06:59:43Z +9923 2005-07-31T15:00:15Z 1635 209 2005-08-05T11:09:15Z 2 2020-02-15T06:59:43Z +9924 2005-07-31T15:04:57Z 1986 64 2005-08-05T20:07:57Z 2 2020-02-15T06:59:43Z +9925 2005-07-31T15:08:47Z 2351 24 2005-08-02T20:27:47Z 1 2020-02-15T06:59:43Z +9926 2005-07-31T15:11:51Z 3733 472 2005-08-09T18:26:51Z 1 2020-02-15T06:59:43Z +9927 2005-07-31T15:12:13Z 999 346 2005-08-01T11:37:13Z 1 2020-02-15T06:59:43Z +9928 2005-07-31T15:13:57Z 3627 53 2005-08-06T20:39:57Z 1 2020-02-15T06:59:43Z +9929 2005-07-31T15:17:24Z 2521 564 2005-08-03T17:27:24Z 1 2020-02-15T06:59:43Z +9930 2005-07-31T15:18:03Z 4491 304 2005-08-01T12:36:03Z 2 2020-02-15T06:59:43Z +9931 2005-07-31T15:18:19Z 3455 183 2005-08-04T14:23:19Z 2 2020-02-15T06:59:43Z +9932 2005-07-31T15:19:48Z 1691 264 2005-08-05T21:09:48Z 1 2020-02-15T06:59:43Z +9933 2005-07-31T15:24:46Z 2349 111 2005-08-01T10:00:46Z 1 2020-02-15T06:59:43Z +9934 2005-07-31T15:25:26Z 2492 236 2005-08-05T17:13:26Z 1 2020-02-15T06:59:43Z +9935 2005-07-31T15:27:07Z 2247 10 2005-08-05T11:23:07Z 1 2020-02-15T06:59:43Z +9936 2005-07-31T15:27:41Z 979 153 2005-08-06T16:25:41Z 1 2020-02-15T06:59:43Z +9937 2005-07-31T15:28:10Z 3697 521 2005-08-06T21:20:10Z 2 2020-02-15T06:59:43Z +9938 2005-07-31T15:28:47Z 2871 63 2005-08-09T21:24:47Z 2 2020-02-15T06:59:43Z +9939 2005-07-31T15:29:00Z 3049 538 2005-08-08T11:09:00Z 1 2020-02-15T06:59:43Z +9940 2005-07-31T15:29:06Z 3975 388 2005-08-06T14:26:06Z 2 2020-02-15T06:59:43Z +9941 2005-07-31T15:31:25Z 1756 175 2005-08-05T17:23:25Z 1 2020-02-15T06:59:43Z +9942 2005-07-31T15:35:43Z 4573 545 2005-08-07T17:37:43Z 2 2020-02-15T06:59:43Z +9943 2005-07-31T15:37:29Z 887 494 2005-08-09T18:25:29Z 1 2020-02-15T06:59:43Z +9944 2005-07-31T15:44:43Z 2540 241 2005-08-08T10:30:43Z 1 2020-02-15T06:59:43Z +9945 2005-07-31T15:47:51Z 2075 309 2005-08-02T19:06:51Z 1 2020-02-15T06:59:43Z +9946 2005-07-31T15:48:54Z 2100 29 2005-08-03T12:42:54Z 2 2020-02-15T06:59:43Z +9947 2005-07-31T15:49:40Z 1173 138 2005-08-08T11:11:40Z 1 2020-02-15T06:59:43Z +9948 2005-07-31T15:49:41Z 806 342 2005-08-06T12:36:41Z 1 2020-02-15T06:59:43Z +9949 2005-07-31T15:50:10Z 3258 309 2005-08-01T17:53:10Z 2 2020-02-15T06:59:43Z +9950 2005-07-31T15:50:22Z 1657 572 2005-08-08T19:10:22Z 2 2020-02-15T06:59:43Z +9951 2005-07-31T15:51:16Z 4412 95 2005-08-03T14:54:16Z 1 2020-02-15T06:59:43Z +9952 2005-07-31T15:52:37Z 1634 128 2005-08-06T10:50:37Z 2 2020-02-15T06:59:43Z +9953 2005-07-31T15:56:35Z 1646 211 2005-08-02T12:01:35Z 2 2020-02-15T06:59:43Z +9954 2005-07-31T15:57:07Z 1830 463 2005-08-05T12:04:07Z 2 2020-02-15T06:59:43Z +9955 2005-07-31T16:01:26Z 1745 342 2005-08-04T11:15:26Z 2 2020-02-15T06:59:43Z +9956 2005-07-31T16:03:47Z 4485 342 2005-08-01T16:40:47Z 2 2020-02-15T06:59:43Z +9957 2005-07-31T16:03:55Z 1857 85 2005-08-04T15:16:55Z 2 2020-02-15T06:59:43Z +9958 2005-07-31T16:03:56Z 4142 157 2005-08-04T15:21:56Z 2 2020-02-15T06:59:43Z +9959 2005-07-31T16:04:22Z 340 199 2005-08-03T21:51:22Z 2 2020-02-15T06:59:43Z +9960 2005-07-31T16:05:52Z 1022 569 2005-08-05T14:15:52Z 2 2020-02-15T06:59:43Z +9961 2005-07-31T16:07:50Z 1856 40 2005-08-07T18:37:50Z 2 2020-02-15T06:59:43Z +9962 2005-07-31T16:10:36Z 1951 576 2005-08-02T17:09:36Z 1 2020-02-15T06:59:43Z +9963 2005-07-31T16:16:46Z 1609 573 2005-08-02T22:00:46Z 1 2020-02-15T06:59:43Z +9964 2005-07-31T16:17:39Z 3149 191 2005-08-03T15:03:39Z 1 2020-02-15T06:59:43Z +9965 2005-07-31T16:19:32Z 3946 101 2005-08-05T20:18:32Z 2 2020-02-15T06:59:43Z +9966 2005-07-31T16:26:46Z 4137 373 2005-08-03T14:29:46Z 1 2020-02-15T06:59:43Z +9967 2005-07-31T16:31:17Z 958 537 2005-08-06T13:52:17Z 1 2020-02-15T06:59:43Z +9968 2005-07-31T16:32:16Z 2666 363 2005-08-08T12:23:16Z 1 2020-02-15T06:59:43Z +9969 2005-07-31T16:38:12Z 938 151 2005-08-05T11:45:12Z 2 2020-02-15T06:59:43Z +9970 2005-07-31T16:38:24Z 2846 578 2005-08-02T12:59:24Z 2 2020-02-15T06:59:43Z +9971 2005-07-31T16:42:16Z 2674 573 2005-08-09T18:08:16Z 2 2020-02-15T06:59:43Z +9972 2005-07-31T16:42:43Z 190 506 2005-08-02T11:05:43Z 2 2020-02-15T06:59:43Z +9973 2005-07-31T16:49:31Z 1850 369 2005-08-03T22:03:31Z 2 2020-02-15T06:59:43Z +9974 2005-07-31T16:51:11Z 430 503 2005-08-05T16:04:11Z 1 2020-02-15T06:59:43Z +9975 2005-07-31T16:53:43Z 2564 40 2005-08-07T20:13:43Z 2 2020-02-15T06:59:43Z +9976 2005-07-31T16:57:49Z 4219 579 2005-08-03T16:33:49Z 2 2020-02-15T06:59:43Z +9977 2005-07-31T16:58:42Z 2300 363 2005-08-09T13:34:42Z 1 2020-02-15T06:59:43Z +9978 2005-07-31T16:59:51Z 2812 427 2005-08-06T16:48:51Z 2 2020-02-15T06:59:43Z +9979 2005-07-31T17:00:07Z 646 576 2005-08-08T20:40:07Z 1 2020-02-15T06:59:43Z +9980 2005-07-31T17:02:00Z 122 225 2005-08-08T11:11:00Z 2 2020-02-15T06:59:43Z +9981 2005-07-31T17:08:31Z 1354 321 2005-08-01T22:46:31Z 2 2020-02-15T06:59:43Z +9982 2005-07-31T17:09:02Z 2698 428 2005-08-02T13:02:02Z 2 2020-02-15T06:59:43Z +9983 2005-07-31T17:09:36Z 350 129 2005-08-08T20:26:36Z 1 2020-02-15T06:59:43Z +9984 2005-07-31T17:12:23Z 433 432 2005-08-01T21:04:23Z 2 2020-02-15T06:59:43Z +9985 2005-07-31T17:14:47Z 1831 85 2005-08-01T12:11:47Z 2 2020-02-15T06:59:43Z +9986 2005-07-31T17:16:50Z 1242 124 2005-08-05T18:34:50Z 2 2020-02-15T06:59:43Z +9987 2005-07-31T17:22:35Z 1619 15 2005-08-01T21:19:35Z 2 2020-02-15T06:59:43Z +9988 2005-07-31T17:22:36Z 3844 243 2005-08-07T18:35:36Z 2 2020-02-15T06:59:43Z +9989 2005-07-31T17:22:39Z 1713 79 2005-08-01T18:55:39Z 1 2020-02-15T06:59:43Z +9990 2005-07-31T17:24:21Z 4481 555 2005-08-09T17:14:21Z 2 2020-02-15T06:59:43Z +9991 2005-07-31T17:26:27Z 3662 414 2005-08-03T17:36:27Z 1 2020-02-15T06:59:43Z +9992 2005-07-31T17:29:48Z 4242 304 2005-08-09T13:02:48Z 2 2020-02-15T06:59:43Z +9993 2005-07-31T17:30:20Z 2503 225 2005-08-01T20:53:20Z 2 2020-02-15T06:59:43Z +9994 2005-07-31T17:30:31Z 2155 195 2005-08-01T11:35:31Z 1 2020-02-15T06:59:43Z +9995 2005-07-31T17:30:47Z 1978 180 2005-08-04T12:20:47Z 2 2020-02-15T06:59:43Z +9996 2005-07-31T17:32:03Z 3271 104 2005-08-06T16:17:03Z 2 2020-02-15T06:59:43Z +9997 2005-07-31T17:37:30Z 640 579 2005-08-02T14:49:30Z 1 2020-02-15T06:59:43Z +9998 2005-07-31T17:40:35Z 2549 30 2005-08-04T18:15:35Z 1 2020-02-15T06:59:43Z +9999 2005-07-31T17:40:53Z 1438 543 2005-08-01T14:25:53Z 1 2020-02-15T06:59:43Z +10000 2005-07-31T17:41:05Z 3221 576 2005-08-02T20:51:05Z 1 2020-02-15T06:59:43Z +10001 2005-07-31T17:46:18Z 2188 244 2005-08-07T20:38:18Z 1 2020-02-15T06:59:43Z +10002 2005-07-31T17:48:16Z 1002 323 2005-08-06T16:15:16Z 1 2020-02-15T06:59:43Z +10003 2005-07-31T17:48:51Z 1603 13 2005-08-02T14:23:51Z 1 2020-02-15T06:59:43Z +10004 2005-07-31T17:51:23Z 2396 570 2005-08-03T19:12:23Z 1 2020-02-15T06:59:43Z +10005 2005-07-31T17:53:51Z 928 454 2005-08-09T21:39:51Z 1 2020-02-15T06:59:43Z +10006 2005-07-31T17:54:35Z 2538 470 2005-08-02T20:40:35Z 2 2020-02-15T06:59:43Z +10007 2005-07-31T17:54:58Z 293 445 2005-08-05T17:24:58Z 2 2020-02-15T06:59:43Z +10008 2005-07-31T17:59:36Z 2589 91 2005-08-03T22:43:36Z 2 2020-02-15T06:59:43Z +10009 2005-07-31T18:00:28Z 4441 437 2005-08-08T22:24:28Z 2 2020-02-15T06:59:43Z +10010 2005-07-31T18:01:36Z 2655 373 2005-08-07T20:27:36Z 2 2020-02-15T06:59:43Z +10011 2005-07-31T18:02:41Z 606 128 2005-08-08T17:04:41Z 1 2020-02-15T06:59:43Z +10012 2005-07-31T18:06:06Z 2554 513 2005-08-09T16:47:06Z 2 2020-02-15T06:59:43Z +10013 2005-07-31T18:08:21Z 2364 377 2005-08-08T13:22:21Z 2 2020-02-15T06:59:43Z +10014 2005-07-31T18:10:56Z 2344 443 2005-08-02T23:36:56Z 1 2020-02-15T06:59:43Z +10015 2005-07-31T18:11:17Z 67 153 2005-08-03T15:48:17Z 2 2020-02-15T06:59:43Z +10016 2005-07-31T18:13:06Z 2183 478 2005-08-09T22:11:06Z 1 2020-02-15T06:59:43Z +10017 2005-07-31T18:13:22Z 1495 424 2005-08-05T16:03:22Z 1 2020-02-15T06:59:43Z +10018 2005-07-31T18:15:14Z 3708 481 2005-08-05T14:44:14Z 2 2020-02-15T06:59:43Z +10019 2005-07-31T18:20:56Z 2114 536 2005-08-07T14:25:56Z 1 2020-02-15T06:59:43Z +10020 2005-07-31T18:21:08Z 302 526 2005-08-02T14:03:08Z 2 2020-02-15T06:59:43Z +10021 2005-07-31T18:24:39Z 3235 597 2005-08-01T19:16:39Z 1 2020-02-15T06:59:43Z +10022 2005-07-31T18:25:30Z 1900 115 2005-08-04T13:35:30Z 1 2020-02-15T06:59:43Z +10023 2005-07-31T18:25:51Z 384 318 2005-08-09T18:00:51Z 1 2020-02-15T06:59:43Z +10024 2005-07-31T18:26:36Z 265 129 2005-08-09T16:16:36Z 1 2020-02-15T06:59:43Z +10025 2005-07-31T18:29:09Z 475 565 2005-08-07T14:20:09Z 2 2020-02-15T06:59:43Z +10026 2005-07-31T18:31:51Z 39 332 2005-08-03T21:14:51Z 2 2020-02-15T06:59:43Z +10027 2005-07-31T18:33:51Z 525 287 2005-08-09T18:40:51Z 1 2020-02-15T06:59:43Z +10028 2005-07-31T18:35:54Z 2305 323 2005-08-01T13:01:54Z 2 2020-02-15T06:59:43Z +10029 2005-07-31T18:37:47Z 505 578 2005-08-06T14:58:47Z 2 2020-02-15T06:59:43Z +10030 2005-07-31T18:39:36Z 1392 325 2005-08-03T15:29:36Z 2 2020-02-15T06:59:43Z +10031 2005-07-31T18:40:15Z 3048 96 2005-08-03T14:38:15Z 1 2020-02-15T06:59:43Z +10032 2005-07-31T18:41:55Z 2331 126 2005-08-04T22:45:55Z 1 2020-02-15T06:59:43Z +10033 2005-07-31T18:44:29Z 4480 381 2005-08-04T19:52:29Z 1 2020-02-15T06:59:43Z +10034 2005-07-31T18:45:30Z 354 442 2005-08-04T21:13:30Z 2 2020-02-15T06:59:43Z +10035 2005-07-31T18:46:46Z 2694 333 2005-08-04T20:33:46Z 1 2020-02-15T06:59:43Z +10036 2005-07-31T18:47:20Z 41 491 2005-08-03T22:53:20Z 1 2020-02-15T06:59:43Z +10037 2005-07-31T18:48:08Z 438 58 2005-08-09T19:11:08Z 2 2020-02-15T06:59:43Z +10038 2005-07-31T18:49:12Z 3727 112 2005-08-01T18:02:12Z 1 2020-02-15T06:59:43Z +10039 2005-07-31T18:50:40Z 4391 111 2005-08-01T18:49:40Z 2 2020-02-15T06:59:43Z +10040 2005-07-31T18:54:15Z 2281 268 2005-08-05T17:33:15Z 2 2020-02-15T06:59:43Z +10041 2005-07-31T19:01:02Z 2994 379 2005-08-07T21:32:02Z 1 2020-02-15T06:59:43Z +10042 2005-07-31T19:01:25Z 123 204 2005-08-06T14:21:25Z 1 2020-02-15T06:59:43Z +10043 2005-07-31T19:02:07Z 2558 222 2005-08-07T17:58:07Z 1 2020-02-15T06:59:43Z +10044 2005-07-31T19:02:33Z 3349 388 2005-08-05T13:24:33Z 2 2020-02-15T06:59:43Z +10045 2005-07-31T19:04:35Z 58 118 2005-08-07T16:53:35Z 1 2020-02-15T06:59:43Z +10046 2005-07-31T19:07:11Z 4302 50 2005-08-03T13:25:11Z 1 2020-02-15T06:59:43Z +10047 2005-07-31T19:07:43Z 4195 244 2005-08-07T00:20:43Z 2 2020-02-15T06:59:43Z +10048 2005-07-31T19:08:56Z 3821 267 2005-08-05T20:15:56Z 2 2020-02-15T06:59:43Z +10049 2005-07-31T19:11:11Z 854 457 2005-08-03T22:15:11Z 1 2020-02-15T06:59:43Z +10050 2005-07-31T19:13:29Z 295 230 2005-08-06T15:44:29Z 1 2020-02-15T06:59:43Z +10051 2005-07-31T19:14:20Z 163 74 2005-08-05T19:45:20Z 1 2020-02-15T06:59:43Z +10052 2005-07-31T19:15:13Z 3307 39 2005-08-07T22:47:13Z 2 2020-02-15T06:59:43Z +10053 2005-07-31T19:15:39Z 4102 223 2005-08-07T22:32:39Z 1 2020-02-15T06:59:43Z +10054 2005-07-31T19:15:52Z 2303 598 2005-08-04T19:54:52Z 1 2020-02-15T06:59:43Z +10055 2005-07-31T19:15:58Z 2725 336 2005-08-05T20:23:58Z 1 2020-02-15T06:59:43Z +10056 2005-07-31T19:19:13Z 281 237 2005-08-01T16:09:13Z 2 2020-02-15T06:59:43Z +10057 2005-07-31T19:20:18Z 3485 230 2005-08-08T17:59:18Z 2 2020-02-15T06:59:43Z +10058 2005-07-31T19:20:21Z 758 237 2005-08-04T00:41:21Z 2 2020-02-15T06:59:43Z +10059 2005-07-31T19:20:49Z 2020 274 2005-08-03T14:39:49Z 1 2020-02-15T06:59:43Z +10060 2005-07-31T19:23:00Z 1979 42 2005-08-08T19:07:00Z 1 2020-02-15T06:59:43Z +10061 2005-07-31T19:23:25Z 1401 390 2005-08-04T19:38:25Z 1 2020-02-15T06:59:43Z +10062 2005-07-31T19:24:55Z 1815 333 2005-08-03T22:51:55Z 2 2020-02-15T06:59:43Z +10063 2005-07-31T19:25:13Z 3003 517 2005-08-09T15:55:13Z 1 2020-02-15T06:59:43Z +10064 2005-07-31T19:27:02Z 3140 41 2005-08-06T21:15:02Z 1 2020-02-15T06:59:43Z +10065 2005-07-31T19:27:34Z 1426 495 2005-08-01T13:45:34Z 2 2020-02-15T06:59:43Z +10066 2005-07-31T19:30:01Z 4285 123 2005-08-01T14:45:01Z 2 2020-02-15T06:59:43Z +10067 2005-07-31T19:37:58Z 1940 148 2005-08-04T17:32:58Z 2 2020-02-15T06:59:43Z +10068 2005-07-31T19:39:38Z 4000 58 2005-08-05T22:49:38Z 1 2020-02-15T06:59:43Z +10069 2005-07-31T19:43:18Z 2168 270 2005-08-06T19:40:18Z 2 2020-02-15T06:59:43Z +10070 2005-07-31T19:46:29Z 1010 325 2005-08-03T22:21:29Z 1 2020-02-15T06:59:43Z +10071 2005-07-31T19:49:35Z 2360 353 2005-08-03T00:00:35Z 2 2020-02-15T06:59:43Z +10072 2005-07-31T19:50:37Z 3963 520 2005-08-03T00:25:37Z 2 2020-02-15T06:59:43Z +10073 2005-07-31T19:53:15Z 4246 584 2005-08-05T23:12:15Z 2 2020-02-15T06:59:43Z +10074 2005-07-31T19:57:16Z 1268 69 2005-08-04T00:54:16Z 1 2020-02-15T06:59:43Z +10075 2005-07-31T19:58:42Z 2037 469 2005-08-08T19:49:42Z 1 2020-02-15T06:59:43Z +10076 2005-07-31T20:00:34Z 1117 555 2005-08-10T00:37:34Z 2 2020-02-15T06:59:43Z +10077 2005-07-31T20:01:06Z 2333 19 2005-08-09T16:07:06Z 1 2020-02-15T06:59:43Z +10078 2005-07-31T20:02:02Z 3198 151 2005-08-04T00:45:02Z 1 2020-02-15T06:59:43Z +10079 2005-07-31T20:05:45Z 4541 486 2005-08-04T16:25:45Z 2 2020-02-15T06:59:43Z +10080 2005-07-31T20:07:10Z 4355 62 2005-08-04T23:07:10Z 2 2020-02-15T06:59:43Z +10081 2005-07-31T20:07:44Z 3183 443 2005-08-06T20:04:44Z 1 2020-02-15T06:59:43Z +10082 2005-07-31T20:09:32Z 1275 76 2005-08-01T15:41:32Z 2 2020-02-15T06:59:43Z +10083 2005-07-31T20:10:19Z 2585 449 2005-08-06T23:18:19Z 1 2020-02-15T06:59:43Z +10084 2005-07-31T20:11:29Z 524 528 2005-08-06T22:28:29Z 2 2020-02-15T06:59:43Z +10085 2005-07-31T20:12:02Z 2556 392 2005-08-03T00:03:02Z 2 2020-02-15T06:59:43Z +10086 2005-07-31T20:14:08Z 2853 205 2005-08-07T01:33:08Z 2 2020-02-15T06:59:43Z +10087 2005-07-31T20:15:22Z 1393 245 2005-08-07T01:33:22Z 1 2020-02-15T06:59:43Z +10088 2005-07-31T20:16:21Z 4293 46 2005-08-01T22:47:21Z 2 2020-02-15T06:59:43Z +10089 2005-07-31T20:17:09Z 248 160 2005-08-01T19:14:09Z 2 2020-02-15T06:59:43Z +10090 2005-07-31T20:22:01Z 4023 533 2005-08-04T17:30:01Z 1 2020-02-15T06:59:43Z +10091 2005-07-31T20:23:13Z 1878 135 2005-08-02T21:58:13Z 2 2020-02-15T06:59:43Z +10092 2005-07-31T20:28:09Z 4151 364 2005-08-01T21:37:09Z 1 2020-02-15T06:59:43Z +10093 2005-07-31T20:30:32Z 3943 162 2005-08-04T00:04:32Z 2 2020-02-15T06:59:43Z +10094 2005-07-31T20:31:18Z 2865 596 2005-08-06T18:31:18Z 2 2020-02-15T06:59:43Z +10095 2005-07-31T20:38:35Z 4062 370 2005-08-02T02:33:35Z 1 2020-02-15T06:59:43Z +10096 2005-07-31T20:38:58Z 3606 290 2005-08-06T02:34:58Z 1 2020-02-15T06:59:43Z +10097 2005-07-31T20:39:38Z 784 519 2005-08-08T22:22:38Z 1 2020-02-15T06:59:43Z +10098 2005-07-31T20:41:17Z 1324 155 2005-08-02T00:06:17Z 2 2020-02-15T06:59:43Z +10099 2005-07-31T20:47:14Z 1960 220 2005-08-02T17:25:14Z 1 2020-02-15T06:59:43Z +10100 2005-07-31T20:47:18Z 4050 330 2005-08-03T16:58:18Z 2 2020-02-15T06:59:43Z +10101 2005-07-31T20:47:29Z 2513 119 2005-08-04T21:28:29Z 1 2020-02-15T06:59:43Z +10102 2005-07-31T20:49:10Z 4078 170 2005-08-08T20:15:10Z 1 2020-02-15T06:59:43Z +10103 2005-07-31T20:49:13Z 77 25 2005-08-05T15:55:13Z 2 2020-02-15T06:59:43Z +10104 2005-07-31T20:49:14Z 3358 186 2005-08-05T01:11:14Z 2 2020-02-15T06:59:43Z +10105 2005-07-31T20:54:20Z 112 286 2005-08-09T17:45:20Z 1 2020-02-15T06:59:43Z +10106 2005-07-31T21:00:47Z 3444 556 2005-08-02T20:11:47Z 2 2020-02-15T06:59:43Z +10107 2005-07-31T21:01:46Z 1326 414 2005-08-09T01:33:46Z 2 2020-02-15T06:59:43Z +10108 2005-07-31T21:02:14Z 3703 326 2005-08-01T18:28:14Z 1 2020-02-15T06:59:43Z +10109 2005-07-31T21:04:49Z 2852 403 2005-08-08T19:25:49Z 1 2020-02-15T06:59:43Z +10110 2005-07-31T21:06:12Z 4081 138 2005-08-03T02:03:12Z 2 2020-02-15T06:59:43Z +10111 2005-07-31T21:08:33Z 3474 38 2005-08-06T02:58:33Z 2 2020-02-15T06:59:43Z +10112 2005-07-31T21:08:56Z 2643 198 2005-08-01T23:35:56Z 2 2020-02-15T06:59:43Z +10113 2005-07-31T21:10:03Z 3974 461 2005-08-02T21:13:03Z 2 2020-02-15T06:59:43Z +10114 2005-07-31T21:12:58Z 3881 218 2005-08-02T19:45:58Z 2 2020-02-15T06:59:43Z +10115 2005-07-31T21:13:47Z 2731 68 2005-08-10T00:44:47Z 1 2020-02-15T06:59:43Z +10116 2005-07-31T21:14:02Z 738 28 2005-08-03T01:48:02Z 2 2020-02-15T06:59:43Z +10117 2005-07-31T21:14:31Z 1894 459 2005-08-01T15:59:31Z 2 2020-02-15T06:59:43Z +10118 2005-07-31T21:16:31Z 1209 143 2005-08-03T02:32:31Z 1 2020-02-15T06:59:43Z +10119 2005-07-31T21:20:59Z 54 351 2005-08-02T23:14:59Z 2 2020-02-15T06:59:43Z +10120 2005-07-31T21:24:24Z 1709 396 2005-08-03T17:44:24Z 2 2020-02-15T06:59:43Z +10121 2005-07-31T21:24:53Z 2969 425 2005-08-03T22:24:53Z 1 2020-02-15T06:59:43Z +10122 2005-07-31T21:29:28Z 4229 196 2005-08-09T00:04:28Z 1 2020-02-15T06:59:43Z +10123 2005-07-31T21:30:46Z 4564 487 2005-08-06T16:28:46Z 1 2020-02-15T06:59:43Z +10124 2005-07-31T21:31:49Z 1956 396 2005-08-04T00:06:49Z 1 2020-02-15T06:59:43Z +10125 2005-07-31T21:33:03Z 493 178 2005-08-01T19:10:03Z 1 2020-02-15T06:59:43Z +10126 2005-07-31T21:36:07Z 3 39 2005-08-03T23:59:07Z 1 2020-02-15T06:59:43Z +10127 2005-07-31T21:39:48Z 717 478 2005-08-06T00:10:48Z 1 2020-02-15T06:59:43Z +10128 2005-07-31T21:40:04Z 2559 508 2005-08-02T02:21:04Z 1 2020-02-15T06:59:43Z +10129 2005-07-31T21:41:35Z 2848 564 2005-08-05T17:05:35Z 1 2020-02-15T06:59:43Z +10130 2005-07-31T21:44:30Z 3964 95 2005-08-04T17:06:30Z 1 2020-02-15T06:59:43Z +10131 2005-07-31T21:45:28Z 4169 510 2005-08-04T00:19:28Z 2 2020-02-15T06:59:43Z +10132 2005-07-31T21:50:24Z 3934 23 2005-08-07T23:37:24Z 2 2020-02-15T06:59:43Z +10133 2005-07-31T21:55:07Z 614 234 2005-08-08T23:04:07Z 1 2020-02-15T06:59:43Z +10134 2005-07-31T21:56:10Z 4483 311 2005-08-06T21:20:10Z 1 2020-02-15T06:59:43Z +10135 2005-07-31T21:57:32Z 4193 307 2005-08-05T22:23:32Z 1 2020-02-15T06:59:43Z +10136 2005-07-31T21:58:56Z 3142 2 2005-08-03T19:44:56Z 1 2020-02-15T06:59:43Z +10137 2005-07-31T22:01:41Z 612 236 2005-08-07T22:24:41Z 1 2020-02-15T06:59:43Z +10138 2005-07-31T22:02:09Z 179 225 2005-08-07T20:46:09Z 2 2020-02-15T06:59:43Z +10139 2005-07-31T22:02:20Z 407 441 2005-08-04T02:09:20Z 1 2020-02-15T06:59:43Z +10140 2005-07-31T22:03:20Z 2494 550 2005-08-07T23:15:20Z 2 2020-02-15T06:59:43Z +10141 2005-07-31T22:08:29Z 8 8 2005-08-06T16:59:29Z 1 2020-02-15T06:59:43Z +10142 2005-07-31T22:10:54Z 1839 257 2005-08-09T19:04:54Z 2 2020-02-15T06:59:43Z +10143 2005-07-31T22:11:43Z 2139 271 2005-08-09T17:48:43Z 2 2020-02-15T06:59:43Z +10144 2005-07-31T22:13:52Z 3011 49 2005-08-05T19:27:52Z 1 2020-02-15T06:59:43Z +10145 2005-07-31T22:15:13Z 2511 361 2005-08-06T23:26:13Z 1 2020-02-15T06:59:43Z +10146 2005-07-31T22:17:56Z 1721 559 2005-08-02T21:27:56Z 1 2020-02-15T06:59:43Z +10147 2005-07-31T22:18:43Z 1351 198 2005-08-02T23:08:43Z 2 2020-02-15T06:59:43Z +10148 2005-07-31T22:19:16Z 1381 63 2005-08-05T00:15:16Z 2 2020-02-15T06:59:43Z +10149 2005-07-31T22:20:46Z 890 276 2005-08-07T23:12:46Z 2 2020-02-15T06:59:43Z +10150 2005-07-31T22:22:00Z 2328 419 2005-08-05T01:17:00Z 2 2020-02-15T06:59:43Z +10151 2005-07-31T22:22:37Z 4442 361 2005-08-01T22:20:37Z 1 2020-02-15T06:59:43Z +10152 2005-07-31T22:28:05Z 1114 244 2005-08-08T22:39:05Z 2 2020-02-15T06:59:43Z +10153 2005-07-31T22:30:10Z 2945 297 2005-08-06T02:32:10Z 2 2020-02-15T06:59:43Z +10154 2005-07-31T22:30:49Z 2745 149 2005-08-07T03:05:49Z 2 2020-02-15T06:59:43Z +10155 2005-07-31T22:31:43Z 3176 235 2005-08-07T02:43:43Z 1 2020-02-15T06:59:43Z +10156 2005-07-31T22:36:00Z 141 179 2005-08-02T00:03:00Z 2 2020-02-15T06:59:43Z +10157 2005-07-31T22:38:48Z 2960 232 2005-08-01T21:38:48Z 1 2020-02-15T06:59:43Z +10158 2005-07-31T22:40:31Z 1626 393 2005-08-08T18:25:31Z 2 2020-02-15T06:59:43Z +10159 2005-07-31T22:54:30Z 1174 515 2005-08-03T00:43:30Z 2 2020-02-15T06:59:43Z +10160 2005-07-31T23:07:40Z 863 295 2005-08-05T23:34:40Z 1 2020-02-15T06:59:43Z +10161 2005-07-31T23:09:41Z 2651 120 2005-08-02T20:46:41Z 2 2020-02-15T06:59:43Z +10162 2005-07-31T23:11:01Z 1327 475 2005-08-07T01:52:01Z 2 2020-02-15T06:59:43Z +10163 2005-07-31T23:12:34Z 2811 425 2005-08-01T22:47:34Z 2 2020-02-15T06:59:43Z +10164 2005-07-31T23:17:57Z 1405 89 2005-08-05T19:43:57Z 1 2020-02-15T06:59:43Z +10165 2005-07-31T23:21:23Z 3476 50 2005-08-06T18:06:23Z 1 2020-02-15T06:59:43Z +10166 2005-07-31T23:22:20Z 4304 484 2005-08-07T18:06:20Z 2 2020-02-15T06:59:43Z +10167 2005-07-31T23:24:31Z 1222 129 2005-08-06T17:42:31Z 2 2020-02-15T06:59:43Z +10168 2005-07-31T23:25:24Z 4548 570 2005-08-02T19:03:24Z 1 2020-02-15T06:59:43Z +10169 2005-07-31T23:27:13Z 2675 57 2005-08-05T20:32:13Z 2 2020-02-15T06:59:43Z +10170 2005-07-31T23:27:31Z 804 41 2005-08-08T04:53:31Z 2 2020-02-15T06:59:43Z +10171 2005-07-31T23:29:05Z 1367 401 2005-08-03T19:39:05Z 1 2020-02-15T06:59:43Z +10172 2005-07-31T23:29:51Z 2506 426 2005-08-09T01:57:51Z 1 2020-02-15T06:59:43Z +10173 2005-07-31T23:36:59Z 2527 326 2005-08-08T20:20:59Z 2 2020-02-15T06:59:43Z +10174 2005-07-31T23:40:08Z 2459 359 2005-08-06T21:08:08Z 2 2020-02-15T06:59:43Z +10175 2005-07-31T23:40:11Z 3672 137 2005-08-09T02:22:11Z 1 2020-02-15T06:59:43Z +10176 2005-07-31T23:40:35Z 1181 19 2005-08-09T00:46:35Z 2 2020-02-15T06:59:43Z +10177 2005-07-31T23:42:33Z 2242 279 2005-08-03T01:30:33Z 2 2020-02-15T06:59:43Z +10178 2005-07-31T23:43:04Z 1582 491 2005-08-03T00:43:04Z 1 2020-02-15T06:59:43Z +10179 2005-07-31T23:49:54Z 2136 131 2005-08-01T20:46:54Z 2 2020-02-15T06:59:43Z +10180 2005-07-31T23:57:43Z 757 50 2005-08-09T04:04:43Z 2 2020-02-15T06:59:43Z +10181 2005-08-01T00:00:44Z 3111 113 2005-08-04T19:33:44Z 1 2020-02-15T06:59:43Z +10182 2005-08-01T00:08:01Z 4112 578 2005-08-09T18:14:01Z 2 2020-02-15T06:59:43Z +10183 2005-08-01T00:08:01Z 4319 377 2005-08-09T20:41:01Z 1 2020-02-15T06:59:43Z +10184 2005-08-01T00:09:33Z 2785 77 2005-08-05T04:12:33Z 2 2020-02-15T06:59:43Z +10185 2005-08-01T00:12:11Z 1266 64 2005-08-03T03:03:11Z 1 2020-02-15T06:59:43Z +10186 2005-08-01T00:12:36Z 4563 294 2005-08-07T05:08:36Z 1 2020-02-15T06:59:43Z +10187 2005-08-01T00:15:49Z 1629 400 2005-08-05T01:00:49Z 2 2020-02-15T06:59:43Z +10188 2005-08-01T00:19:41Z 1221 331 2005-08-08T00:19:41Z 2 2020-02-15T06:59:43Z +10189 2005-08-01T00:25:00Z 616 509 2005-08-03T06:01:00Z 2 2020-02-15T06:59:43Z +10190 2005-08-01T00:27:53Z 4411 138 2005-08-01T20:32:53Z 2 2020-02-15T06:59:43Z +10191 2005-08-01T00:28:38Z 1131 196 2005-08-06T02:23:38Z 1 2020-02-15T06:59:43Z +10192 2005-08-01T00:33:00Z 1632 569 2005-08-05T03:37:00Z 2 2020-02-15T06:59:43Z +10193 2005-08-01T00:33:27Z 2036 358 2005-08-07T20:15:27Z 1 2020-02-15T06:59:43Z +10194 2005-08-01T00:33:52Z 1447 290 2005-08-06T04:50:52Z 2 2020-02-15T06:59:43Z +10195 2005-08-01T00:34:42Z 2691 396 2005-08-08T05:04:42Z 2 2020-02-15T06:59:43Z +10196 2005-08-01T00:34:51Z 3070 199 2005-08-05T03:43:51Z 1 2020-02-15T06:59:43Z +10197 2005-08-01T00:35:25Z 1186 127 2005-08-07T06:04:25Z 2 2020-02-15T06:59:43Z +10198 2005-08-01T00:36:15Z 1297 366 2005-08-07T06:18:15Z 2 2020-02-15T06:59:43Z +10199 2005-08-01T00:38:55Z 3665 526 2005-08-05T03:41:55Z 1 2020-02-15T06:59:43Z +10200 2005-08-01T00:39:05Z 580 421 2005-08-05T01:07:05Z 1 2020-02-15T06:59:43Z +10201 2005-08-01T00:42:18Z 3649 299 2005-08-08T20:49:18Z 2 2020-02-15T06:59:43Z +10202 2005-08-01T00:43:18Z 1099 306 2005-08-08T23:26:18Z 1 2020-02-15T06:59:43Z +10203 2005-08-01T00:45:27Z 1096 157 2005-08-04T22:45:27Z 2 2020-02-15T06:59:43Z +10204 2005-08-01T00:47:39Z 764 572 2005-08-05T01:11:39Z 1 2020-02-15T06:59:43Z +10205 2005-08-01T00:48:24Z 33 87 2005-08-06T23:53:24Z 1 2020-02-15T06:59:43Z +10206 2005-08-01T00:52:40Z 4479 90 2005-08-10T02:36:40Z 2 2020-02-15T06:59:43Z +10207 2005-08-01T00:53:01Z 2925 334 2005-08-05T05:51:01Z 2 2020-02-15T06:59:43Z +10208 2005-08-01T00:54:51Z 3324 246 2005-08-04T22:39:51Z 2 2020-02-15T06:59:43Z +10209 2005-08-01T00:56:47Z 2429 303 2005-08-03T19:58:47Z 2 2020-02-15T06:59:43Z +10210 2005-08-01T00:58:52Z 49 391 2005-08-10T01:16:52Z 1 2020-02-15T06:59:43Z +10211 2005-08-01T01:01:16Z 810 530 2005-08-10T01:31:16Z 1 2020-02-15T06:59:43Z +10212 2005-08-01T01:01:35Z 3728 324 2005-08-02T23:02:35Z 1 2020-02-15T06:59:43Z +10213 2005-08-01T01:03:18Z 1462 106 2005-08-09T20:07:18Z 1 2020-02-15T06:59:43Z +10214 2005-08-01T01:04:15Z 648 597 2005-08-01T19:31:15Z 2 2020-02-15T06:59:43Z +10215 2005-08-01T01:04:28Z 838 345 2005-08-09T21:43:28Z 2 2020-02-15T06:59:43Z +10216 2005-08-01T01:06:27Z 3603 436 2005-08-08T22:41:27Z 2 2020-02-15T06:59:43Z +10217 2005-08-01T01:07:27Z 1193 389 2005-08-09T00:42:27Z 1 2020-02-15T06:59:43Z +10218 2005-08-01T01:09:44Z 3886 101 2005-08-05T20:08:44Z 1 2020-02-15T06:59:43Z +10219 2005-08-01T01:10:33Z 2262 505 2005-08-10T02:45:33Z 2 2020-02-15T06:59:43Z +10220 2005-08-01T01:13:22Z 3920 294 2005-08-04T22:57:22Z 2 2020-02-15T06:59:43Z +10221 2005-08-01T01:16:50Z 3051 373 2005-08-03T05:35:50Z 2 2020-02-15T06:59:43Z +10222 2005-08-01T01:17:42Z 1214 295 2005-08-08T02:45:42Z 1 2020-02-15T06:59:43Z +10223 2005-08-01T01:23:15Z 1370 522 2005-08-02T19:39:15Z 1 2020-02-15T06:59:43Z +10224 2005-08-01T01:31:56Z 1443 587 2005-08-05T21:21:56Z 2 2020-02-15T06:59:43Z +10225 2005-08-01T01:38:40Z 3131 498 2005-08-06T20:00:40Z 1 2020-02-15T06:59:43Z +10226 2005-08-01T01:40:04Z 3067 107 2005-08-08T01:02:04Z 1 2020-02-15T06:59:43Z +10227 2005-08-01T01:42:22Z 872 571 2005-08-09T23:45:22Z 2 2020-02-15T06:59:43Z +10228 2005-08-01T01:43:18Z 1742 106 2005-08-06T22:10:18Z 2 2020-02-15T06:59:43Z +10229 2005-08-01T01:45:26Z 3459 175 2005-08-10T06:21:26Z 1 2020-02-15T06:59:43Z +10230 2005-08-01T01:49:36Z 76 398 2005-08-05T01:29:36Z 2 2020-02-15T06:59:43Z +10231 2005-08-01T01:50:49Z 1056 511 2005-08-06T03:12:49Z 1 2020-02-15T06:59:43Z +10232 2005-08-01T01:50:55Z 586 512 2005-08-03T04:12:55Z 1 2020-02-15T06:59:43Z +10233 2005-08-01T01:54:23Z 4571 459 2005-08-10T00:23:23Z 2 2020-02-15T06:59:43Z +10234 2005-08-01T01:56:20Z 1641 207 2005-08-09T01:51:20Z 2 2020-02-15T06:59:43Z +10235 2005-08-01T01:57:48Z 2850 30 2005-08-10T07:38:48Z 2 2020-02-15T06:59:43Z +10236 2005-08-01T02:05:34Z 3754 470 2005-08-01T23:40:34Z 1 2020-02-15T06:59:43Z +10237 2005-08-01T02:07:32Z 432 313 2005-08-07T03:54:32Z 1 2020-02-15T06:59:43Z +10238 2005-08-01T02:08:05Z 561 192 2005-08-02T01:52:05Z 1 2020-02-15T06:59:43Z +10239 2005-08-01T02:09:22Z 1232 467 2005-08-04T01:35:22Z 2 2020-02-15T06:59:43Z +10240 2005-08-01T02:09:33Z 4494 109 2005-08-07T02:22:33Z 2 2020-02-15T06:59:43Z +10241 2005-08-01T02:12:25Z 1526 161 2005-08-08T00:37:25Z 1 2020-02-15T06:59:43Z +10242 2005-08-01T02:18:12Z 1825 342 2005-08-02T22:32:12Z 2 2020-02-15T06:59:43Z +10243 2005-08-01T02:18:46Z 2236 132 2005-08-06T21:45:46Z 1 2020-02-15T06:59:43Z +10244 2005-08-01T02:20:01Z 567 51 2005-08-06T23:06:01Z 2 2020-02-15T06:59:43Z +10245 2005-08-01T02:24:09Z 2880 163 2005-08-02T02:31:09Z 1 2020-02-15T06:59:43Z +10246 2005-08-01T02:29:50Z 3598 261 2005-08-09T01:17:50Z 2 2020-02-15T06:59:43Z +10247 2005-08-01T02:34:06Z 4035 189 2005-08-09T02:33:06Z 1 2020-02-15T06:59:43Z +10248 2005-08-01T02:35:28Z 2146 298 2005-08-08T02:24:28Z 2 2020-02-15T06:59:43Z +10249 2005-08-01T02:35:39Z 135 437 2005-08-06T06:50:39Z 1 2020-02-15T06:59:43Z +10250 2005-08-01T02:38:42Z 3706 116 2005-08-07T03:59:42Z 2 2020-02-15T06:59:43Z +10251 2005-08-01T02:39:12Z 2986 39 2005-08-06T03:51:12Z 1 2020-02-15T06:59:43Z +10252 2005-08-01T02:39:39Z 2380 86 2005-08-10T00:40:39Z 2 2020-02-15T06:59:43Z +10253 2005-08-01T02:39:49Z 1406 101 2005-08-08T04:28:49Z 2 2020-02-15T06:59:43Z +10254 2005-08-01T02:42:03Z 2238 416 2005-08-05T23:31:03Z 1 2020-02-15T06:59:43Z +10255 2005-08-01T02:46:13Z 4558 459 2005-08-03T05:54:13Z 1 2020-02-15T06:59:43Z +10256 2005-08-01T02:47:11Z 780 58 2005-08-05T05:21:11Z 2 2020-02-15T06:59:43Z +10257 2005-08-01T02:49:43Z 2403 543 2005-08-04T04:45:43Z 2 2020-02-15T06:59:43Z +10258 2005-08-01T02:51:09Z 2062 469 2005-08-08T23:57:09Z 2 2020-02-15T06:59:43Z +10259 2005-08-01T02:52:05Z 1881 566 2005-08-03T20:54:05Z 1 2020-02-15T06:59:43Z +10260 2005-08-01T02:58:07Z 2864 461 2005-08-05T02:06:07Z 2 2020-02-15T06:59:43Z +10261 2005-08-01T02:58:27Z 2346 50 2005-08-01T21:55:27Z 2 2020-02-15T06:59:43Z +10262 2005-08-01T03:01:26Z 3842 181 2005-08-08T08:03:26Z 2 2020-02-15T06:59:43Z +10263 2005-08-01T03:02:48Z 2420 415 2005-08-08T02:16:48Z 2 2020-02-15T06:59:43Z +10264 2005-08-01T03:03:12Z 1374 297 2005-08-08T00:34:12Z 2 2020-02-15T06:59:43Z +10265 2005-08-01T03:05:04Z 3338 510 2005-08-08T08:09:04Z 1 2020-02-15T06:59:43Z +10266 2005-08-01T03:05:59Z 476 49 2005-08-06T06:23:59Z 1 2020-02-15T06:59:43Z +10267 2005-08-01T03:07:26Z 3883 72 2005-08-07T22:49:26Z 1 2020-02-15T06:59:43Z +10268 2005-08-01T03:08:56Z 2755 138 2005-08-08T02:41:56Z 1 2020-02-15T06:59:43Z +10269 2005-08-01T03:09:26Z 2537 39 2005-08-02T00:01:26Z 1 2020-02-15T06:59:43Z +10270 2005-08-01T03:10:24Z 2025 168 2005-08-07T03:04:24Z 2 2020-02-15T06:59:43Z +10271 2005-08-01T03:13:39Z 3692 6 2005-08-07T23:40:39Z 1 2020-02-15T06:59:43Z +10272 2005-08-01T03:14:34Z 128 273 2005-08-10T05:56:34Z 2 2020-02-15T06:59:43Z +10273 2005-08-01T03:14:47Z 1458 212 2005-08-07T03:59:47Z 1 2020-02-15T06:59:43Z +10274 2005-08-01T03:16:51Z 2916 375 2005-08-04T22:22:51Z 2 2020-02-15T06:59:43Z +10275 2005-08-01T03:20:08Z 669 463 2005-08-08T06:48:08Z 1 2020-02-15T06:59:43Z +10276 2005-08-01T03:22:23Z 2201 48 2005-08-03T07:59:23Z 1 2020-02-15T06:59:43Z +10277 2005-08-01T03:22:41Z 1472 176 2005-08-05T05:07:41Z 1 2020-02-15T06:59:43Z +10278 2005-08-01T03:25:27Z 2497 154 2005-08-08T07:52:27Z 1 2020-02-15T06:59:43Z +10279 2005-08-01T03:26:44Z 3794 247 2005-08-07T22:35:44Z 2 2020-02-15T06:59:43Z +10280 2005-08-01T03:27:15Z 1457 542 2005-08-07T23:01:15Z 2 2020-02-15T06:59:43Z +10281 2005-08-01T03:28:33Z 1047 549 2005-08-02T05:06:33Z 1 2020-02-15T06:59:43Z +10282 2005-08-01T03:29:10Z 617 472 2005-08-07T06:16:10Z 1 2020-02-15T06:59:43Z +10283 2005-08-01T03:29:45Z 4237 462 2005-08-07T04:19:45Z 1 2020-02-15T06:59:43Z +10284 2005-08-01T03:33:19Z 2879 20 2005-08-09T07:58:19Z 1 2020-02-15T06:59:43Z +10285 2005-08-01T03:35:11Z 4523 167 2005-08-05T03:55:11Z 2 2020-02-15T06:59:43Z +10286 2005-08-01T03:35:58Z 498 532 2005-08-10T05:17:58Z 2 2020-02-15T06:59:43Z +10287 2005-08-01T03:37:01Z 125 141 2005-08-05T23:03:01Z 2 2020-02-15T06:59:43Z +10288 2005-08-01T03:38:42Z 572 63 2005-08-06T04:34:42Z 1 2020-02-15T06:59:43Z +10289 2005-08-01T03:39:48Z 3153 566 2005-08-08T02:56:48Z 1 2020-02-15T06:59:43Z +10290 2005-08-01T03:39:50Z 4542 364 2005-08-08T22:29:50Z 2 2020-02-15T06:59:43Z +10291 2005-08-01T03:39:57Z 2056 420 2005-08-05T02:05:57Z 2 2020-02-15T06:59:43Z +10292 2005-08-01T03:42:40Z 2562 340 2005-08-01T23:36:40Z 2 2020-02-15T06:59:43Z +10293 2005-08-01T03:44:26Z 1570 258 2005-08-05T04:16:26Z 2 2020-02-15T06:59:43Z +10294 2005-08-01T03:48:12Z 528 28 2005-08-09T01:19:12Z 2 2020-02-15T06:59:43Z +10295 2005-08-01T03:53:49Z 2355 123 2005-08-10T03:56:49Z 1 2020-02-15T06:59:43Z +10296 2005-08-01T04:04:37Z 1958 573 2005-08-01T23:59:37Z 1 2020-02-15T06:59:43Z +10297 2005-08-01T04:05:04Z 2795 289 2005-08-09T06:08:04Z 1 2020-02-15T06:59:43Z +10298 2005-08-01T04:06:03Z 1383 323 2005-08-05T05:59:03Z 2 2020-02-15T06:59:43Z +10299 2005-08-01T04:08:04Z 1125 369 2005-08-04T08:11:04Z 1 2020-02-15T06:59:43Z +10300 2005-08-01T04:08:11Z 4334 207 2005-08-04T00:24:11Z 1 2020-02-15T06:59:43Z +10301 2005-08-01T04:09:37Z 3072 583 2005-08-04T23:14:37Z 2 2020-02-15T06:59:43Z +10302 2005-08-01T04:12:08Z 1043 144 2005-08-01T22:12:08Z 2 2020-02-15T06:59:43Z +10303 2005-08-01T04:13:33Z 936 479 2005-08-06T02:16:33Z 2 2020-02-15T06:59:43Z +10304 2005-08-01T04:14:12Z 1538 346 2005-08-07T22:38:12Z 1 2020-02-15T06:59:43Z +10305 2005-08-01T04:16:16Z 2946 160 2005-08-07T23:47:16Z 1 2020-02-15T06:59:43Z +10306 2005-08-01T04:19:18Z 2819 541 2005-08-09T02:16:18Z 1 2020-02-15T06:59:43Z +10307 2005-08-01T04:21:54Z 975 332 2005-08-04T09:24:54Z 2 2020-02-15T06:59:43Z +10308 2005-08-01T04:22:49Z 588 240 2005-08-09T04:39:49Z 2 2020-02-15T06:59:43Z +10309 2005-08-01T04:24:18Z 1505 156 2005-08-09T08:32:18Z 2 2020-02-15T06:59:43Z +10310 2005-08-01T04:24:47Z 9 271 2005-08-04T05:36:47Z 2 2020-02-15T06:59:43Z +10311 2005-08-01T04:27:59Z 4211 151 2005-08-02T08:51:59Z 1 2020-02-15T06:59:43Z +10312 2005-08-01T04:29:06Z 4389 172 2005-08-08T04:52:06Z 2 2020-02-15T06:59:43Z +10313 2005-08-01T04:29:29Z 1194 80 2005-08-04T08:12:29Z 2 2020-02-15T06:59:43Z +10314 2005-08-01T04:31:18Z 1548 252 2005-08-06T01:49:18Z 2 2020-02-15T06:59:43Z +10315 2005-08-01T04:34:45Z 895 258 2005-08-07T05:27:45Z 1 2020-02-15T06:59:43Z +10316 2005-08-01T04:34:57Z 1907 469 2005-08-06T02:34:57Z 2 2020-02-15T06:59:43Z +10317 2005-08-01T04:35:34Z 110 561 2005-08-06T02:27:34Z 2 2020-02-15T06:59:43Z +10318 2005-08-01T04:36:53Z 885 548 2005-08-04T00:54:53Z 1 2020-02-15T06:59:43Z +10319 2005-08-01T04:37:19Z 3120 394 2005-08-05T03:18:19Z 2 2020-02-15T06:59:43Z +10320 2005-08-01T04:39:26Z 2298 152 2005-08-08T06:01:26Z 1 2020-02-15T06:59:43Z +10321 2005-08-01T04:40:02Z 4512 177 2005-08-03T04:18:02Z 1 2020-02-15T06:59:43Z +10322 2005-08-01T04:44:13Z 1543 535 2005-08-08T00:20:13Z 2 2020-02-15T06:59:43Z +10323 2005-08-01T04:44:58Z 3539 577 2005-08-06T07:56:58Z 1 2020-02-15T06:59:43Z +10324 2005-08-01T04:49:06Z 523 25 2005-08-09T08:04:06Z 2 2020-02-15T06:59:43Z +10325 2005-08-01T04:52:12Z 2749 258 2005-08-08T09:31:12Z 1 2020-02-15T06:59:43Z +10326 2005-08-01T04:55:34Z 3856 325 2005-08-02T05:18:34Z 1 2020-02-15T06:59:43Z +10327 2005-08-01T04:55:35Z 328 382 2005-08-07T08:17:35Z 2 2020-02-15T06:59:43Z +10328 2005-08-01T04:56:10Z 1191 85 2005-08-01T23:22:10Z 2 2020-02-15T06:59:43Z +10329 2005-08-01T04:56:13Z 2289 302 2005-08-03T03:54:13Z 1 2020-02-15T06:59:43Z +10330 2005-08-01T04:57:04Z 1580 7 2005-08-07T23:00:04Z 2 2020-02-15T06:59:43Z +10331 2005-08-01T04:57:14Z 4152 575 2005-08-07T06:46:14Z 1 2020-02-15T06:59:43Z +10332 2005-08-01T04:57:32Z 642 258 2005-08-10T02:42:32Z 2 2020-02-15T06:59:43Z +10333 2005-08-01T04:58:32Z 3955 499 2005-08-04T00:51:32Z 2 2020-02-15T06:59:43Z +10334 2005-08-01T04:58:42Z 3387 445 2005-08-09T02:00:42Z 1 2020-02-15T06:59:43Z +10335 2005-08-01T04:59:30Z 323 33 2005-08-05T02:26:30Z 1 2020-02-15T06:59:43Z +10336 2005-08-01T04:59:53Z 1091 370 2005-08-03T08:05:53Z 2 2020-02-15T06:59:43Z +10337 2005-08-01T05:01:46Z 307 451 2005-08-10T02:41:46Z 1 2020-02-15T06:59:43Z +10338 2005-08-01T05:03:03Z 1295 339 2005-08-09T05:13:03Z 2 2020-02-15T06:59:43Z +10339 2005-08-01T05:05:50Z 615 363 2005-08-10T07:15:50Z 2 2020-02-15T06:59:43Z +10340 2005-08-01T05:07:03Z 3608 568 2005-08-06T01:03:03Z 1 2020-02-15T06:59:43Z +10341 2005-08-01T05:10:02Z 3304 445 2005-08-07T11:01:02Z 1 2020-02-15T06:59:43Z +10342 2005-08-01T05:11:11Z 332 140 2005-08-10T00:27:11Z 1 2020-02-15T06:59:43Z +10343 2005-08-01T05:15:47Z 2627 267 2005-08-02T04:48:47Z 2 2020-02-15T06:59:43Z +10344 2005-08-01T05:18:23Z 3673 367 2005-08-06T05:20:23Z 1 2020-02-15T06:59:43Z +10345 2005-08-01T05:18:56Z 3985 42 2005-08-04T01:34:56Z 2 2020-02-15T06:59:43Z +10346 2005-08-01T05:19:23Z 4192 476 2005-08-06T01:00:23Z 1 2020-02-15T06:59:43Z +10347 2005-08-01T05:20:03Z 953 574 2005-08-04T10:03:03Z 1 2020-02-15T06:59:43Z +10348 2005-08-01T05:23:00Z 2076 14 2005-08-04T01:12:00Z 2 2020-02-15T06:59:43Z +10349 2005-08-01T05:27:13Z 114 295 2005-08-08T10:15:13Z 1 2020-02-15T06:59:43Z +10350 2005-08-01T05:30:05Z 2067 78 2005-08-05T09:59:05Z 1 2020-02-15T06:59:43Z +10351 2005-08-01T05:32:13Z 3725 173 2005-08-08T09:48:13Z 1 2020-02-15T06:59:43Z +10352 2005-08-01T05:44:36Z 1288 564 2005-08-05T07:15:36Z 2 2020-02-15T06:59:43Z +10353 2005-08-01T05:46:33Z 1446 535 2005-08-08T09:14:33Z 1 2020-02-15T06:59:43Z +10354 2005-08-01T05:47:10Z 1680 416 2005-08-06T09:04:10Z 1 2020-02-15T06:59:43Z +10355 2005-08-01T05:47:37Z 2158 161 2005-08-02T09:28:37Z 2 2020-02-15T06:59:43Z +10356 2005-08-01T05:49:17Z 313 56 2005-08-10T05:57:17Z 1 2020-02-15T06:59:43Z +10357 2005-08-01T05:49:49Z 3102 475 2005-08-04T02:34:49Z 2 2020-02-15T06:59:43Z +10358 2005-08-01T05:50:07Z 3039 517 2005-08-03T08:18:07Z 1 2020-02-15T06:59:43Z +10359 2005-08-01T05:52:21Z 259 369 2005-08-06T05:52:21Z 2 2020-02-15T06:59:43Z +10360 2005-08-01T05:52:53Z 1129 443 2005-08-05T10:55:53Z 1 2020-02-15T06:59:43Z +10361 2005-08-01T05:53:49Z 318 529 2005-08-10T00:42:49Z 2 2020-02-15T06:59:43Z +10362 2005-08-01T05:55:13Z 72 181 2005-08-10T10:23:13Z 2 2020-02-15T06:59:43Z +10363 2005-08-01T06:01:52Z 320 174 2005-08-05T03:56:52Z 1 2020-02-15T06:59:43Z +10364 2005-08-01T06:06:49Z 1842 317 2005-08-09T06:05:49Z 2 2020-02-15T06:59:43Z +10365 2005-08-01T06:08:44Z 4032 442 2005-08-06T02:07:44Z 1 2020-02-15T06:59:43Z +10366 2005-08-01T06:09:37Z 2654 119 2005-08-05T03:19:37Z 1 2020-02-15T06:59:43Z +10367 2005-08-01T06:12:19Z 3408 242 2005-08-04T12:11:19Z 2 2020-02-15T06:59:43Z +10368 2005-08-01T06:13:38Z 3535 593 2005-08-08T04:40:38Z 2 2020-02-15T06:59:43Z +10369 2005-08-01T06:13:44Z 2534 424 2005-08-07T09:46:44Z 1 2020-02-15T06:59:43Z +10370 2005-08-01T06:18:04Z 4358 546 2005-08-05T01:41:04Z 2 2020-02-15T06:59:43Z +10371 2005-08-01T06:20:29Z 923 327 2005-08-04T00:31:29Z 2 2020-02-15T06:59:43Z +10372 2005-08-01T06:23:48Z 635 419 2005-08-06T03:47:48Z 1 2020-02-15T06:59:43Z +10373 2005-08-01T06:24:26Z 1754 588 2005-08-02T12:07:26Z 1 2020-02-15T06:59:43Z +10374 2005-08-01T06:25:27Z 4351 307 2005-08-07T05:44:27Z 2 2020-02-15T06:59:43Z +10375 2005-08-01T06:26:22Z 857 202 2005-08-06T02:51:22Z 2 2020-02-15T06:59:43Z +10376 2005-08-01T06:27:13Z 4194 474 2005-08-07T06:11:13Z 2 2020-02-15T06:59:43Z +10377 2005-08-01T06:28:28Z 2401 559 2005-08-10T05:45:28Z 2 2020-02-15T06:59:43Z +10378 2005-08-01T06:30:04Z 4110 113 2005-08-06T09:10:04Z 1 2020-02-15T06:59:43Z +10379 2005-08-01T06:34:29Z 3103 141 2005-08-06T07:49:29Z 1 2020-02-15T06:59:43Z +10380 2005-08-01T06:34:36Z 2225 533 2005-08-02T09:08:36Z 1 2020-02-15T06:59:43Z +10381 2005-08-01T06:36:37Z 522 412 2005-08-05T11:17:37Z 1 2020-02-15T06:59:43Z +10382 2005-08-01T06:36:45Z 4455 242 2005-08-02T06:06:45Z 1 2020-02-15T06:59:43Z +10383 2005-08-01T06:37:16Z 4166 592 2005-08-03T07:36:16Z 2 2020-02-15T06:59:43Z +10384 2005-08-01T06:39:14Z 2622 366 2005-08-02T03:06:14Z 1 2020-02-15T06:59:43Z +10385 2005-08-01T06:39:55Z 778 179 2005-08-06T02:16:55Z 1 2020-02-15T06:59:43Z +10386 2005-08-01T06:42:20Z 1568 26 2005-08-07T06:12:20Z 2 2020-02-15T06:59:43Z +10387 2005-08-01T06:42:31Z 1651 87 2005-08-08T07:44:31Z 1 2020-02-15T06:59:43Z +10388 2005-08-01T06:42:44Z 3180 99 2005-08-09T11:43:44Z 2 2020-02-15T06:59:43Z +10389 2005-08-01T06:46:43Z 3534 346 2005-08-08T07:07:43Z 2 2020-02-15T06:59:43Z +10390 2005-08-01T06:46:48Z 1489 502 2005-08-09T02:55:48Z 2 2020-02-15T06:59:43Z +10391 2005-08-01T06:49:05Z 2203 357 2005-08-04T01:51:05Z 2 2020-02-15T06:59:43Z +10392 2005-08-01T06:50:26Z 3017 12 2005-08-10T10:52:26Z 1 2020-02-15T06:59:43Z +10393 2005-08-01T06:52:50Z 808 258 2005-08-05T08:45:50Z 1 2020-02-15T06:59:43Z +10394 2005-08-01T06:58:17Z 1655 128 2005-08-05T02:09:17Z 1 2020-02-15T06:59:43Z +10395 2005-08-01T07:08:22Z 279 129 2005-08-05T08:00:22Z 2 2020-02-15T06:59:43Z +10396 2005-08-01T07:08:46Z 2982 284 2005-08-08T03:47:46Z 1 2020-02-15T06:59:43Z +10397 2005-08-01T07:11:27Z 4168 504 2005-08-03T07:51:27Z 1 2020-02-15T06:59:43Z +10398 2005-08-01T07:11:49Z 4306 174 2005-08-04T05:54:49Z 1 2020-02-15T06:59:43Z +10399 2005-08-01T07:13:39Z 2515 204 2005-08-10T06:56:39Z 1 2020-02-15T06:59:43Z +10400 2005-08-01T07:18:24Z 3897 132 2005-08-10T08:38:24Z 1 2020-02-15T06:59:43Z +10401 2005-08-01T07:27:09Z 1560 564 2005-08-02T01:38:09Z 1 2020-02-15T06:59:43Z +10402 2005-08-01T07:27:19Z 274 410 2005-08-04T12:30:19Z 1 2020-02-15T06:59:43Z +10403 2005-08-01T07:30:45Z 1968 494 2005-08-03T03:03:45Z 2 2020-02-15T06:59:43Z +10404 2005-08-01T07:31:25Z 2580 253 2005-08-07T09:23:25Z 1 2020-02-15T06:59:43Z +10405 2005-08-01T07:35:25Z 3641 463 2005-08-05T05:38:25Z 2 2020-02-15T06:59:43Z +10406 2005-08-01T07:37:05Z 2614 391 2005-08-02T06:11:05Z 1 2020-02-15T06:59:43Z +10407 2005-08-01T07:38:07Z 543 101 2005-08-02T05:38:07Z 2 2020-02-15T06:59:43Z +10408 2005-08-01T07:42:10Z 4144 334 2005-08-09T02:29:10Z 2 2020-02-15T06:59:43Z +10409 2005-08-01T07:49:15Z 2804 449 2005-08-02T13:42:15Z 2 2020-02-15T06:59:43Z +10410 2005-08-01T07:53:29Z 3901 247 2005-08-10T08:56:29Z 1 2020-02-15T06:59:43Z +10411 2005-08-01T07:56:32Z 1946 522 2005-08-10T04:58:32Z 2 2020-02-15T06:59:43Z +10412 2005-08-01T07:57:16Z 1555 325 2005-08-04T11:44:16Z 2 2020-02-15T06:59:43Z +10413 2005-08-01T07:59:39Z 1018 376 2005-08-08T03:55:39Z 1 2020-02-15T06:59:43Z +10414 2005-08-01T08:03:55Z 1271 361 2005-08-04T08:44:55Z 2 2020-02-15T06:59:43Z +10415 2005-08-01T08:05:59Z 2597 591 2005-08-04T13:46:59Z 1 2020-02-15T06:59:43Z +10416 2005-08-01T08:08:39Z 2629 449 2005-08-10T09:26:39Z 2 2020-02-15T06:59:43Z +10417 2005-08-01T08:10:36Z 3675 427 2005-08-02T03:42:36Z 2 2020-02-15T06:59:43Z +10418 2005-08-01T08:11:07Z 1692 248 2005-08-04T11:12:07Z 2 2020-02-15T06:59:43Z +10419 2005-08-01T08:13:22Z 415 66 2005-08-06T04:45:22Z 2 2020-02-15T06:59:43Z +10420 2005-08-01T08:13:53Z 3490 354 2005-08-06T08:05:53Z 2 2020-02-15T06:59:43Z +10421 2005-08-01T08:14:10Z 925 262 2005-08-03T05:56:10Z 2 2020-02-15T06:59:43Z +10422 2005-08-01T08:17:11Z 37 166 2005-08-10T10:08:11Z 2 2020-02-15T06:59:43Z +10423 2005-08-01T08:19:53Z 739 7 2005-08-08T10:25:53Z 1 2020-02-15T06:59:43Z +10424 2005-08-01T08:22:54Z 1921 88 2005-08-06T13:44:54Z 1 2020-02-15T06:59:43Z +10425 2005-08-01T08:23:25Z 322 447 2005-08-05T04:29:25Z 1 2020-02-15T06:59:43Z +10426 2005-08-01T08:26:08Z 1325 305 2005-08-09T04:09:08Z 1 2020-02-15T06:59:43Z +10427 2005-08-01T08:30:11Z 2978 356 2005-08-07T06:18:11Z 2 2020-02-15T06:59:43Z +10428 2005-08-01T08:30:11Z 4245 46 2005-08-02T09:30:11Z 2 2020-02-15T06:59:43Z +10429 2005-08-01T08:34:18Z 3894 511 2005-08-10T12:38:18Z 1 2020-02-15T06:59:43Z +10430 2005-08-01T08:37:06Z 1150 471 2005-08-03T07:25:06Z 1 2020-02-15T06:59:43Z +10431 2005-08-01T08:41:54Z 1074 138 2005-08-07T09:44:54Z 2 2020-02-15T06:59:43Z +10432 2005-08-01T08:43:21Z 4238 450 2005-08-08T13:09:21Z 2 2020-02-15T06:59:43Z +10433 2005-08-01T08:45:56Z 1508 517 2005-08-05T09:46:56Z 2 2020-02-15T06:59:43Z +10434 2005-08-01T08:47:00Z 4073 73 2005-08-06T08:34:00Z 1 2020-02-15T06:59:43Z +10435 2005-08-01T08:50:51Z 1934 392 2005-08-08T12:23:51Z 1 2020-02-15T06:59:43Z +10436 2005-08-01T08:50:59Z 4026 455 2005-08-04T05:23:59Z 1 2020-02-15T06:59:43Z +10437 2005-08-01T08:51:04Z 14 1 2005-08-10T12:12:04Z 1 2020-02-15T06:59:43Z +10438 2005-08-01T08:53:04Z 4217 316 2005-08-09T06:39:04Z 2 2020-02-15T06:59:43Z +10439 2005-08-01T08:54:26Z 2711 332 2005-08-08T14:04:26Z 1 2020-02-15T06:59:43Z +10440 2005-08-01T08:54:32Z 842 299 2005-08-02T10:59:32Z 2 2020-02-15T06:59:43Z +10441 2005-08-01T08:55:56Z 4122 176 2005-08-03T10:26:56Z 2 2020-02-15T06:59:43Z +10442 2005-08-01T08:58:08Z 4570 40 2005-08-05T09:07:08Z 2 2020-02-15T06:59:43Z +10443 2005-08-01T09:01:04Z 1965 403 2005-08-04T09:07:04Z 2 2020-02-15T06:59:43Z +10444 2005-08-01T09:01:40Z 3242 106 2005-08-09T11:31:40Z 1 2020-02-15T06:59:43Z +10445 2005-08-01T09:02:15Z 3582 211 2005-08-08T10:26:15Z 2 2020-02-15T06:59:43Z +10446 2005-08-01T09:02:17Z 2671 95 2005-08-04T10:00:17Z 2 2020-02-15T06:59:43Z +10447 2005-08-01T09:04:58Z 1198 241 2005-08-08T06:24:58Z 1 2020-02-15T06:59:43Z +10448 2005-08-01T09:09:31Z 2254 311 2005-08-02T09:55:31Z 2 2020-02-15T06:59:43Z +10449 2005-08-01T09:09:59Z 1395 213 2005-08-05T11:25:59Z 1 2020-02-15T06:59:43Z +10450 2005-08-01T09:10:03Z 234 380 2005-08-08T12:34:03Z 1 2020-02-15T06:59:43Z +10451 2005-08-01T09:11:25Z 2435 9 2005-08-03T12:37:25Z 2 2020-02-15T06:59:43Z +10452 2005-08-01T09:11:36Z 1973 442 2005-08-04T13:28:36Z 2 2020-02-15T06:59:43Z +10453 2005-08-01T09:13:27Z 1531 188 2005-08-08T11:34:27Z 2 2020-02-15T06:59:43Z +10454 2005-08-01T09:14:00Z 397 9 2005-08-04T04:52:00Z 2 2020-02-15T06:59:43Z +10455 2005-08-01T09:15:00Z 4197 99 2005-08-05T13:35:00Z 1 2020-02-15T06:59:43Z +10456 2005-08-01T09:17:21Z 4339 81 2005-08-06T10:30:21Z 1 2020-02-15T06:59:43Z +10457 2005-08-01T09:17:34Z 3052 121 2005-08-06T07:28:34Z 2 2020-02-15T06:59:43Z +10458 2005-08-01T09:19:48Z 1500 309 2005-08-02T10:16:48Z 1 2020-02-15T06:59:43Z +10459 2005-08-01T09:20:09Z 201 131 2005-08-03T11:36:09Z 1 2020-02-15T06:59:43Z +10460 2005-08-01T09:31:00Z 4504 197 2005-08-09T09:28:00Z 1 2020-02-15T06:59:43Z +10461 2005-08-01T09:32:53Z 3212 270 2005-08-09T10:19:53Z 1 2020-02-15T06:59:43Z +10462 2005-08-01T09:38:28Z 4526 193 2005-08-02T09:52:28Z 2 2020-02-15T06:59:43Z +10463 2005-08-01T09:39:43Z 1301 291 2005-08-10T03:42:43Z 1 2020-02-15T06:59:43Z +10464 2005-08-01T09:43:14Z 464 427 2005-08-06T09:01:14Z 1 2020-02-15T06:59:43Z +10465 2005-08-01T09:45:25Z 4384 534 2005-08-10T09:08:25Z 2 2020-02-15T06:59:43Z +10466 2005-08-01T09:45:26Z 138 2 2005-08-06T06:28:26Z 1 2020-02-15T06:59:43Z +10467 2005-08-01T09:45:58Z 3773 412 2005-08-09T10:17:58Z 2 2020-02-15T06:59:43Z +10468 2005-08-01T09:48:29Z 2115 129 2005-08-05T09:58:29Z 2 2020-02-15T06:59:43Z +10469 2005-08-01T09:51:11Z 3054 466 2005-08-05T06:53:11Z 2 2020-02-15T06:59:43Z +10470 2005-08-01T09:52:26Z 82 523 2005-08-05T06:52:26Z 1 2020-02-15T06:59:43Z +10471 2005-08-01T09:52:37Z 1684 135 2005-08-07T09:40:37Z 2 2020-02-15T06:59:43Z +10472 2005-08-01T09:54:41Z 506 405 2005-08-04T13:31:41Z 1 2020-02-15T06:59:43Z +10473 2005-08-01T09:56:24Z 3034 329 2005-08-10T12:36:24Z 2 2020-02-15T06:59:43Z +10474 2005-08-01T10:01:42Z 4482 488 2005-08-08T12:32:42Z 1 2020-02-15T06:59:43Z +10475 2005-08-01T10:03:17Z 2931 115 2005-08-10T15:50:17Z 2 2020-02-15T06:59:43Z +10476 2005-08-01T10:03:20Z 1993 263 2005-08-10T06:52:20Z 1 2020-02-15T06:59:43Z +10477 2005-08-01T10:04:17Z 235 506 2005-08-06T11:32:17Z 2 2020-02-15T06:59:43Z +10478 2005-08-01T10:09:06Z 3885 417 2005-08-06T05:05:06Z 1 2020-02-15T06:59:43Z +10479 2005-08-01T10:11:25Z 4580 275 2005-08-06T04:52:25Z 1 2020-02-15T06:59:43Z +10480 2005-08-01T10:13:41Z 553 560 2005-08-03T10:27:41Z 1 2020-02-15T06:59:43Z +10481 2005-08-01T10:17:26Z 229 170 2005-08-09T08:50:26Z 1 2020-02-15T06:59:43Z +10482 2005-08-01T10:17:47Z 48 358 2005-08-02T15:04:47Z 2 2020-02-15T06:59:43Z +10483 2005-08-01T10:19:45Z 1521 129 2005-08-04T09:29:45Z 1 2020-02-15T06:59:43Z +10484 2005-08-01T10:19:53Z 1908 400 2005-08-03T05:36:53Z 1 2020-02-15T06:59:43Z +10485 2005-08-01T10:20:34Z 29 50 2005-08-09T09:20:34Z 1 2020-02-15T06:59:43Z +10486 2005-08-01T10:23:43Z 2454 527 2005-08-05T07:11:43Z 2 2020-02-15T06:59:43Z +10487 2005-08-01T10:26:34Z 1121 577 2005-08-07T16:11:34Z 1 2020-02-15T06:59:43Z +10488 2005-08-01T10:27:27Z 297 423 2005-08-02T11:05:27Z 2 2020-02-15T06:59:43Z +10489 2005-08-01T10:27:42Z 4067 54 2005-08-07T12:56:42Z 1 2020-02-15T06:59:43Z +10490 2005-08-01T10:37:11Z 4365 329 2005-08-03T10:01:11Z 2 2020-02-15T06:59:43Z +10491 2005-08-01T10:38:27Z 3091 24 2005-08-04T04:55:27Z 2 2020-02-15T06:59:43Z +10492 2005-08-01T10:42:28Z 1669 334 2005-08-02T07:05:28Z 1 2020-02-15T06:59:43Z +10493 2005-08-01T10:43:12Z 2375 285 2005-08-07T08:13:12Z 2 2020-02-15T06:59:43Z +10494 2005-08-01T10:45:21Z 847 188 2005-08-02T12:34:21Z 1 2020-02-15T06:59:43Z +10495 2005-08-01T10:45:51Z 2232 41 2005-08-06T08:11:51Z 1 2020-02-15T06:59:43Z +10496 2005-08-01T10:53:16Z 411 525 2005-08-08T10:34:16Z 2 2020-02-15T06:59:43Z +10497 2005-08-01T10:55:59Z 1060 499 2005-08-07T11:15:59Z 1 2020-02-15T06:59:43Z +10498 2005-08-01T10:56:48Z 2672 355 2005-08-03T15:46:48Z 2 2020-02-15T06:59:43Z +10499 2005-08-01T11:00:20Z 3293 459 2005-08-10T11:52:20Z 2 2020-02-15T06:59:43Z +10500 2005-08-01T11:01:01Z 469 477 2005-08-06T08:59:01Z 2 2020-02-15T06:59:43Z +10501 2005-08-01T11:04:46Z 1792 351 2005-08-02T12:10:46Z 2 2020-02-15T06:59:43Z +10502 2005-08-01T11:06:39Z 3193 357 2005-08-05T07:11:39Z 1 2020-02-15T06:59:43Z +10503 2005-08-01T11:07:44Z 1823 357 2005-08-08T08:22:44Z 1 2020-02-15T06:59:43Z +10504 2005-08-01T11:10:55Z 3345 530 2005-08-10T10:16:55Z 1 2020-02-15T06:59:43Z +10505 2005-08-01T11:13:59Z 2977 426 2005-08-05T07:20:59Z 2 2020-02-15T06:59:43Z +10506 2005-08-01T11:16:05Z 1171 216 2005-08-03T05:37:05Z 2 2020-02-15T06:59:43Z +10507 2005-08-01T11:22:20Z 367 45 2005-08-04T13:18:20Z 2 2020-02-15T06:59:43Z +10508 2005-08-01T11:23:27Z 3890 431 2005-08-02T10:17:27Z 1 2020-02-15T06:59:43Z +10509 2005-08-01T11:25:28Z 96 504 2005-08-10T09:19:28Z 2 2020-02-15T06:59:43Z +10510 2005-08-01T11:28:30Z 410 259 2005-08-07T11:37:30Z 1 2020-02-15T06:59:43Z +10511 2005-08-01T11:32:16Z 3874 487 2005-08-04T09:38:16Z 1 2020-02-15T06:59:43Z +10512 2005-08-01T11:36:19Z 3294 438 2005-08-09T06:52:19Z 2 2020-02-15T06:59:43Z +10513 2005-08-01T11:37:34Z 4057 105 2005-08-02T17:15:34Z 2 2020-02-15T06:59:43Z +10514 2005-08-01T11:39:26Z 1512 7 2005-08-03T07:53:26Z 2 2020-02-15T06:59:43Z +10515 2005-08-01T11:41:33Z 874 383 2005-08-08T06:23:33Z 2 2020-02-15T06:59:43Z +10516 2005-08-01T11:41:55Z 3924 449 2005-08-08T17:16:55Z 1 2020-02-15T06:59:43Z +10517 2005-08-01T11:41:57Z 2299 199 2005-08-05T06:14:57Z 1 2020-02-15T06:59:43Z +10518 2005-08-01T11:44:08Z 4444 556 2005-08-07T07:58:08Z 2 2020-02-15T06:59:43Z +10519 2005-08-01T11:44:13Z 1967 456 2005-08-09T16:57:13Z 1 2020-02-15T06:59:43Z +10520 2005-08-01T11:45:58Z 4396 543 2005-08-06T17:28:58Z 2 2020-02-15T06:59:43Z +10521 2005-08-01T11:46:17Z 662 346 2005-08-05T11:06:17Z 2 2020-02-15T06:59:43Z +10522 2005-08-01T11:48:51Z 4159 254 2005-08-05T12:40:51Z 1 2020-02-15T06:59:43Z +10523 2005-08-01T11:52:32Z 2408 34 2005-08-02T10:47:32Z 1 2020-02-15T06:59:43Z +10524 2005-08-01T11:53:12Z 4116 38 2005-08-08T10:40:12Z 2 2020-02-15T06:59:43Z +10525 2005-08-01T11:53:17Z 3811 36 2005-08-07T07:24:17Z 1 2020-02-15T06:59:43Z +10526 2005-08-01T11:55:33Z 27 14 2005-08-08T16:42:33Z 1 2020-02-15T06:59:43Z +10527 2005-08-01T11:55:54Z 4530 431 2005-08-05T15:56:54Z 2 2020-02-15T06:59:43Z +10528 2005-08-01T11:56:22Z 4401 564 2005-08-07T07:13:22Z 1 2020-02-15T06:59:43Z +10529 2005-08-01T12:00:02Z 851 444 2005-08-08T16:18:02Z 1 2020-02-15T06:59:43Z +10530 2005-08-01T12:01:17Z 3216 520 2005-08-06T09:55:17Z 2 2020-02-15T06:59:43Z +10531 2005-08-01T12:06:30Z 3846 459 2005-08-04T10:23:30Z 2 2020-02-15T06:59:43Z +10532 2005-08-01T12:06:35Z 746 191 2005-08-07T16:04:35Z 2 2020-02-15T06:59:43Z +10533 2005-08-01T12:14:16Z 1924 593 2005-08-09T17:13:16Z 2 2020-02-15T06:59:43Z +10534 2005-08-01T12:15:11Z 4354 397 2005-08-04T17:06:11Z 1 2020-02-15T06:59:43Z +10535 2005-08-01T12:21:13Z 1838 284 2005-08-09T08:58:13Z 1 2020-02-15T06:59:43Z +10536 2005-08-01T12:21:53Z 1251 86 2005-08-04T13:08:53Z 2 2020-02-15T06:59:43Z +10537 2005-08-01T12:22:28Z 2140 418 2005-08-08T07:27:28Z 1 2020-02-15T06:59:43Z +10538 2005-08-01T12:22:41Z 686 37 2005-08-02T10:31:41Z 2 2020-02-15T06:59:43Z +10539 2005-08-01T12:23:00Z 3341 232 2005-08-07T10:25:00Z 2 2020-02-15T06:59:43Z +10540 2005-08-01T12:24:42Z 4121 84 2005-08-03T08:39:42Z 2 2020-02-15T06:59:43Z +10541 2005-08-01T12:24:54Z 1413 234 2005-08-03T16:18:54Z 1 2020-02-15T06:59:43Z +10542 2005-08-01T12:32:23Z 1102 465 2005-08-08T16:26:23Z 1 2020-02-15T06:59:43Z +10543 2005-08-01T12:36:09Z 624 29 2005-08-07T07:42:09Z 1 2020-02-15T06:59:43Z +10544 2005-08-01T12:36:21Z 3195 589 2005-08-07T12:25:21Z 2 2020-02-15T06:59:43Z +10545 2005-08-01T12:37:46Z 4230 425 2005-08-04T16:02:46Z 2 2020-02-15T06:59:43Z +10546 2005-08-01T12:44:17Z 1589 362 2005-08-06T16:26:17Z 2 2020-02-15T06:59:43Z +10547 2005-08-01T12:44:17Z 1707 403 2005-08-08T06:53:17Z 1 2020-02-15T06:59:43Z +10548 2005-08-01T12:44:32Z 1914 85 2005-08-07T09:17:32Z 1 2020-02-15T06:59:43Z +10549 2005-08-01T12:46:39Z 3719 61 2005-08-06T17:17:39Z 1 2020-02-15T06:59:43Z +10550 2005-08-01T12:46:52Z 1980 129 2005-08-05T16:48:52Z 2 2020-02-15T06:59:43Z +10551 2005-08-01T12:48:55Z 2974 294 2005-08-10T16:11:55Z 1 2020-02-15T06:59:43Z +10552 2005-08-01T12:49:44Z 4263 119 2005-08-04T16:20:44Z 2 2020-02-15T06:59:43Z +10553 2005-08-01T12:54:06Z 2768 415 2005-08-06T15:27:06Z 1 2020-02-15T06:59:43Z +10554 2005-08-01T12:56:19Z 3220 209 2005-08-03T09:44:19Z 2 2020-02-15T06:59:43Z +10555 2005-08-01T12:56:38Z 377 487 2005-08-10T18:19:38Z 1 2020-02-15T06:59:43Z +10556 2005-08-01T12:58:42Z 144 117 2005-08-03T07:18:42Z 2 2020-02-15T06:59:43Z +10557 2005-08-01T12:59:24Z 240 385 2005-08-04T17:08:24Z 2 2020-02-15T06:59:43Z +10558 2005-08-01T13:00:20Z 4399 117 2005-08-05T16:31:20Z 1 2020-02-15T06:59:43Z +10559 2005-08-01T13:02:58Z 2861 174 2005-08-09T10:03:58Z 2 2020-02-15T06:59:43Z +10560 2005-08-01T13:04:57Z 1534 427 2005-08-05T18:25:57Z 2 2020-02-15T06:59:43Z +10561 2005-08-01T13:05:35Z 2195 8 2005-08-04T08:34:35Z 2 2020-02-15T06:59:43Z +10562 2005-08-01T13:05:52Z 1947 178 2005-08-02T17:05:52Z 1 2020-02-15T06:59:43Z +10563 2005-08-01T13:06:03Z 1885 214 2005-08-09T08:39:03Z 2 2020-02-15T06:59:43Z +10564 2005-08-01T13:07:34Z 4469 387 2005-08-06T15:14:34Z 2 2020-02-15T06:59:43Z +10565 2005-08-01T13:08:27Z 347 165 2005-08-02T10:30:27Z 1 2020-02-15T06:59:43Z +10566 2005-08-01T13:12:11Z 3988 269 2005-08-05T11:16:11Z 2 2020-02-15T06:59:43Z +10567 2005-08-01T13:16:01Z 2744 212 2005-08-05T14:59:01Z 1 2020-02-15T06:59:43Z +10568 2005-08-01T13:17:28Z 3009 130 2005-08-08T17:04:28Z 1 2020-02-15T06:59:43Z +10569 2005-08-01T13:18:23Z 611 179 2005-08-10T13:33:23Z 1 2020-02-15T06:59:43Z +10570 2005-08-01T13:23:06Z 369 21 2005-08-05T15:30:06Z 2 2020-02-15T06:59:43Z +10571 2005-08-01T13:25:30Z 3660 308 2005-08-02T16:43:30Z 2 2020-02-15T06:59:43Z +10572 2005-08-01T13:26:53Z 1239 386 2005-08-07T18:47:53Z 2 2020-02-15T06:59:43Z +10573 2005-08-01T13:27:24Z 4252 585 2005-08-04T15:09:24Z 2 2020-02-15T06:59:43Z +10574 2005-08-01T13:36:51Z 679 287 2005-08-10T13:25:51Z 2 2020-02-15T06:59:43Z +10575 2005-08-01T13:41:41Z 4447 251 2005-08-08T11:30:41Z 1 2020-02-15T06:59:43Z +10576 2005-08-01T13:46:02Z 1876 180 2005-08-05T10:19:02Z 1 2020-02-15T06:59:43Z +10577 2005-08-01T13:46:38Z 2240 428 2005-08-06T11:35:38Z 2 2020-02-15T06:59:43Z +10578 2005-08-01T13:48:02Z 3704 113 2005-08-07T13:40:02Z 1 2020-02-15T06:59:43Z +10579 2005-08-01T13:48:22Z 4068 270 2005-08-07T11:51:22Z 1 2020-02-15T06:59:43Z +10580 2005-08-01T13:51:14Z 590 234 2005-08-08T11:49:14Z 2 2020-02-15T06:59:43Z +10581 2005-08-01T13:52:30Z 2801 217 2005-08-10T19:11:30Z 1 2020-02-15T06:59:43Z +10582 2005-08-01T13:54:22Z 2536 233 2005-08-05T16:46:22Z 2 2020-02-15T06:59:43Z +10583 2005-08-01T13:54:35Z 704 125 2005-08-03T18:21:35Z 1 2020-02-15T06:59:43Z +10584 2005-08-01T13:58:47Z 715 86 2005-08-06T13:38:47Z 2 2020-02-15T06:59:43Z +10585 2005-08-01T14:00:42Z 2670 228 2005-08-09T11:42:42Z 2 2020-02-15T06:59:43Z +10586 2005-08-01T14:00:59Z 3306 583 2005-08-06T10:00:59Z 2 2020-02-15T06:59:43Z +10587 2005-08-01T14:03:38Z 3000 521 2005-08-08T19:59:38Z 2 2020-02-15T06:59:43Z +10588 2005-08-01T14:10:21Z 2384 49 2005-08-03T13:47:21Z 2 2020-02-15T06:59:43Z +10589 2005-08-01T14:11:09Z 4280 375 2005-08-09T09:28:09Z 2 2020-02-15T06:59:43Z +10590 2005-08-01T14:11:53Z 740 78 2005-08-04T20:04:53Z 1 2020-02-15T06:59:43Z +10591 2005-08-01T14:12:29Z 3360 52 2005-08-04T08:46:29Z 2 2020-02-15T06:59:43Z +10592 2005-08-01T14:13:00Z 829 265 2005-08-09T13:03:00Z 2 2020-02-15T06:59:43Z +10593 2005-08-01T14:13:19Z 1886 144 2005-08-06T08:48:19Z 2 2020-02-15T06:59:43Z +10594 2005-08-01T14:14:59Z 1826 53 2005-08-07T10:48:59Z 2 2020-02-15T06:59:43Z +10595 2005-08-01T14:16:28Z 966 137 2005-08-03T10:37:28Z 1 2020-02-15T06:59:43Z +10596 2005-08-01T14:18:57Z 803 112 2005-08-07T14:59:57Z 2 2020-02-15T06:59:43Z +10597 2005-08-01T14:19:48Z 3292 3 2005-08-08T20:01:48Z 1 2020-02-15T06:59:43Z +10598 2005-08-01T14:23:36Z 2341 397 2005-08-10T14:07:36Z 2 2020-02-15T06:59:43Z +10599 2005-08-01T14:23:58Z 2422 271 2005-08-06T10:45:58Z 2 2020-02-15T06:59:43Z +10600 2005-08-01T14:25:21Z 3900 294 2005-08-06T18:00:21Z 1 2020-02-15T06:59:43Z +10601 2005-08-01T14:25:40Z 2843 420 2005-08-10T09:07:40Z 1 2020-02-15T06:59:43Z +10602 2005-08-01T14:30:23Z 1506 111 2005-08-07T15:20:23Z 1 2020-02-15T06:59:43Z +10603 2005-08-01T14:30:35Z 4024 394 2005-08-05T11:13:35Z 2 2020-02-15T06:59:43Z +10604 2005-08-01T14:35:08Z 2833 250 2005-08-08T10:19:08Z 2 2020-02-15T06:59:43Z +10605 2005-08-01T14:36:26Z 680 341 2005-08-06T12:04:26Z 2 2020-02-15T06:59:43Z +10606 2005-08-01T14:39:15Z 81 335 2005-08-08T11:31:15Z 1 2020-02-15T06:59:43Z +10607 2005-08-01T14:44:43Z 3999 438 2005-08-02T16:39:43Z 2 2020-02-15T06:59:43Z +10608 2005-08-01T14:48:41Z 3835 381 2005-08-04T17:32:41Z 2 2020-02-15T06:59:43Z +10609 2005-08-01T14:48:45Z 2587 5 2005-08-04T13:41:45Z 2 2020-02-15T06:59:43Z +10610 2005-08-01T14:49:41Z 1865 396 2005-08-03T13:07:41Z 1 2020-02-15T06:59:43Z +10611 2005-08-01T14:53:52Z 957 135 2005-08-07T09:15:52Z 2 2020-02-15T06:59:43Z +10612 2005-08-01T14:55:31Z 287 554 2005-08-06T19:01:31Z 1 2020-02-15T06:59:43Z +10613 2005-08-01T14:56:14Z 4357 527 2005-08-07T09:33:14Z 1 2020-02-15T06:59:43Z +10614 2005-08-01T14:57:00Z 232 533 2005-08-10T09:31:00Z 2 2020-02-15T06:59:43Z +10615 2005-08-01T14:58:14Z 2639 34 2005-08-02T13:38:14Z 1 2020-02-15T06:59:43Z +10616 2005-08-01T14:59:50Z 1094 20 2005-08-07T11:38:50Z 2 2020-02-15T06:59:43Z +10617 2005-08-01T15:05:52Z 4344 476 2005-08-09T18:54:52Z 1 2020-02-15T06:59:43Z +10618 2005-08-01T15:06:38Z 3729 386 2005-08-06T15:52:38Z 2 2020-02-15T06:59:43Z +10619 2005-08-01T15:07:04Z 2189 132 2005-08-07T11:42:04Z 2 2020-02-15T06:59:43Z +10620 2005-08-01T15:09:17Z 3064 183 2005-08-09T13:58:17Z 1 2020-02-15T06:59:43Z +10621 2005-08-01T15:10:26Z 1650 172 2005-08-04T10:58:26Z 1 2020-02-15T06:59:43Z +10622 2005-08-01T15:12:00Z 3044 171 2005-08-08T14:09:00Z 1 2020-02-15T06:59:43Z +10623 2005-08-01T15:22:38Z 4426 494 2005-08-03T11:03:38Z 2 2020-02-15T06:59:43Z +10624 2005-08-01T15:27:05Z 3801 74 2005-08-05T19:50:05Z 1 2020-02-15T06:59:43Z +10625 2005-08-01T15:27:10Z 3022 5 2005-08-02T13:16:10Z 1 2020-02-15T06:59:43Z +10626 2005-08-01T15:32:41Z 1042 122 2005-08-05T18:08:41Z 1 2020-02-15T06:59:43Z +10627 2005-08-01T15:33:03Z 2026 472 2005-08-02T21:26:03Z 1 2020-02-15T06:59:43Z +10628 2005-08-01T15:33:19Z 427 285 2005-08-05T17:27:19Z 1 2020-02-15T06:59:43Z +10629 2005-08-01T15:33:32Z 997 575 2005-08-08T12:40:32Z 2 2020-02-15T06:59:43Z +10630 2005-08-01T15:34:46Z 2335 39 2005-08-03T10:50:46Z 1 2020-02-15T06:59:43Z +10631 2005-08-01T15:35:14Z 2712 304 2005-08-03T10:48:14Z 1 2020-02-15T06:59:43Z +10632 2005-08-01T15:36:56Z 1290 406 2005-08-05T17:32:56Z 1 2020-02-15T06:59:43Z +10633 2005-08-01T15:37:17Z 3125 475 2005-08-10T14:30:17Z 2 2020-02-15T06:59:43Z +10634 2005-08-01T15:37:48Z 445 592 2005-08-02T12:11:48Z 2 2020-02-15T06:59:43Z +10635 2005-08-01T15:37:58Z 547 52 2005-08-07T11:15:58Z 2 2020-02-15T06:59:43Z +10636 2005-08-01T15:40:35Z 621 385 2005-08-05T18:46:35Z 1 2020-02-15T06:59:43Z +10637 2005-08-01T15:44:09Z 1243 161 2005-08-04T14:42:09Z 1 2020-02-15T06:59:43Z +10638 2005-08-01T15:44:20Z 2239 132 2005-08-08T16:05:20Z 2 2020-02-15T06:59:43Z +10639 2005-08-01T15:44:43Z 1015 39 2005-08-10T13:51:43Z 1 2020-02-15T06:59:43Z +10640 2005-08-01T15:44:51Z 3020 375 2005-08-06T15:52:51Z 1 2020-02-15T06:59:43Z +10641 2005-08-01T15:44:57Z 972 285 2005-08-04T18:15:57Z 2 2020-02-15T06:59:43Z +10642 2005-08-01T15:45:11Z 2573 294 2005-08-02T20:13:11Z 1 2020-02-15T06:59:43Z +10643 2005-08-01T15:48:33Z 3853 495 2005-08-06T20:24:33Z 2 2020-02-15T06:59:43Z +10644 2005-08-01T15:52:00Z 4374 7 2005-08-08T16:08:00Z 1 2020-02-15T06:59:43Z +10645 2005-08-01T15:52:01Z 3864 130 2005-08-09T18:58:01Z 1 2020-02-15T06:59:43Z +10646 2005-08-01T15:57:55Z 1752 209 2005-08-02T19:08:55Z 1 2020-02-15T06:59:43Z +10647 2005-08-01T16:08:46Z 3137 115 2005-08-06T20:37:46Z 2 2020-02-15T06:59:43Z +10648 2005-08-01T16:08:52Z 691 270 2005-08-05T20:17:52Z 1 2020-02-15T06:59:43Z +10649 2005-08-01T16:11:40Z 1032 278 2005-08-06T14:09:40Z 2 2020-02-15T06:59:43Z +10650 2005-08-01T16:18:45Z 2306 242 2005-08-09T16:29:45Z 1 2020-02-15T06:59:43Z +10651 2005-08-01T16:20:22Z 1541 404 2005-08-03T15:53:22Z 1 2020-02-15T06:59:43Z +10652 2005-08-01T16:24:08Z 1633 241 2005-08-03T16:00:08Z 2 2020-02-15T06:59:43Z +10653 2005-08-01T16:28:07Z 1190 75 2005-08-07T21:22:07Z 2 2020-02-15T06:59:43Z +10654 2005-08-01T16:31:35Z 2522 399 2005-08-05T12:04:35Z 2 2020-02-15T06:59:43Z +10655 2005-08-01T16:33:27Z 1399 385 2005-08-08T17:17:27Z 2 2020-02-15T06:59:43Z +10656 2005-08-01T16:38:04Z 2571 80 2005-08-09T19:37:04Z 2 2020-02-15T06:59:43Z +10657 2005-08-01T16:38:44Z 3075 590 2005-08-06T16:05:44Z 2 2020-02-15T06:59:43Z +10658 2005-08-01T16:39:18Z 2943 469 2005-08-09T18:17:18Z 2 2020-02-15T06:59:43Z +10659 2005-08-01T16:40:34Z 786 238 2005-08-09T21:00:34Z 2 2020-02-15T06:59:43Z +10660 2005-08-01T16:48:01Z 2518 253 2005-08-07T14:42:01Z 2 2020-02-15T06:59:43Z +10661 2005-08-01T16:48:31Z 3311 177 2005-08-02T21:02:31Z 1 2020-02-15T06:59:43Z +10662 2005-08-01T16:50:57Z 2857 151 2005-08-03T17:19:57Z 1 2020-02-15T06:59:43Z +10663 2005-08-01T16:51:08Z 4258 433 2005-08-08T21:17:08Z 2 2020-02-15T06:59:43Z +10664 2005-08-01T16:51:15Z 3167 337 2005-08-04T19:14:15Z 2 2020-02-15T06:59:43Z +10665 2005-08-01T16:56:17Z 3594 133 2005-08-03T18:58:17Z 1 2020-02-15T06:59:43Z +10666 2005-08-01T16:56:36Z 1945 197 2005-08-07T22:23:36Z 2 2020-02-15T06:59:43Z +10667 2005-08-01T16:58:22Z 3937 340 2005-08-10T15:41:22Z 1 2020-02-15T06:59:43Z +10668 2005-08-01T17:00:27Z 2085 58 2005-08-02T14:49:27Z 2 2020-02-15T06:59:43Z +10669 2005-08-01T17:03:28Z 2121 559 2005-08-08T21:34:28Z 2 2020-02-15T06:59:43Z +10670 2005-08-01T17:07:16Z 156 512 2005-08-10T11:46:16Z 2 2020-02-15T06:59:43Z +10671 2005-08-01T17:09:59Z 4430 10 2005-08-09T21:36:59Z 1 2020-02-15T06:59:43Z +10672 2005-08-01T17:10:54Z 3674 375 2005-08-07T12:19:54Z 2 2020-02-15T06:59:43Z +10673 2005-08-01T17:11:51Z 2735 528 2005-08-03T13:32:51Z 1 2020-02-15T06:59:43Z +10674 2005-08-01T17:11:52Z 1962 340 2005-08-08T19:34:52Z 1 2020-02-15T06:59:43Z +10675 2005-08-01T17:11:57Z 649 522 2005-08-10T17:18:57Z 1 2020-02-15T06:59:43Z +10676 2005-08-01T17:14:15Z 629 79 2005-08-04T12:34:15Z 1 2020-02-15T06:59:43Z +10677 2005-08-01T17:24:35Z 4350 483 2005-08-04T20:03:35Z 1 2020-02-15T06:59:43Z +10678 2005-08-01T17:26:24Z 4438 56 2005-08-05T22:55:24Z 1 2020-02-15T06:59:43Z +10679 2005-08-01T17:27:58Z 4437 198 2005-08-08T16:06:58Z 1 2020-02-15T06:59:43Z +10680 2005-08-01T17:28:05Z 2498 60 2005-08-04T19:34:05Z 1 2020-02-15T06:59:43Z +10681 2005-08-01T17:30:35Z 1468 119 2005-08-02T14:48:35Z 2 2020-02-15T06:59:43Z +10682 2005-08-01T17:32:53Z 4557 18 2005-08-06T15:49:53Z 2 2020-02-15T06:59:43Z +10683 2005-08-01T17:33:03Z 244 246 2005-08-04T23:12:03Z 1 2020-02-15T06:59:43Z +10684 2005-08-01T17:47:00Z 1985 244 2005-08-09T15:00:00Z 2 2020-02-15T06:59:43Z +10685 2005-08-01T17:49:38Z 2029 200 2005-08-07T21:04:38Z 2 2020-02-15T06:59:43Z +10686 2005-08-01T17:51:21Z 2542 150 2005-08-03T19:01:21Z 1 2020-02-15T06:59:43Z +10687 2005-08-01T17:53:02Z 3191 16 2005-08-05T19:16:02Z 2 2020-02-15T06:59:43Z +10688 2005-08-01T17:53:43Z 3161 449 2005-08-09T21:50:43Z 1 2020-02-15T06:59:43Z +10689 2005-08-01T18:04:18Z 1442 568 2005-08-05T21:17:18Z 2 2020-02-15T06:59:43Z +10690 2005-08-01T18:05:54Z 807 80 2005-08-10T21:43:54Z 2 2020-02-15T06:59:43Z +10691 2005-08-01T18:09:53Z 4281 276 2005-08-03T16:32:53Z 1 2020-02-15T06:59:43Z +10692 2005-08-01T18:12:35Z 371 596 2005-08-07T13:06:35Z 1 2020-02-15T06:59:44Z +10693 2005-08-01T18:14:14Z 2387 444 2005-08-03T22:00:14Z 2 2020-02-15T06:59:44Z +10694 2005-08-01T18:15:07Z 3429 98 2005-08-10T15:38:07Z 1 2020-02-15T06:59:44Z +10695 2005-08-01T18:16:20Z 3612 374 2005-08-03T12:21:20Z 2 2020-02-15T06:59:44Z +10696 2005-08-01T18:18:13Z 47 120 2005-08-04T14:09:13Z 1 2020-02-15T06:59:44Z +10697 2005-08-01T18:20:23Z 3115 519 2005-08-07T21:18:23Z 1 2020-02-15T06:59:44Z +10698 2005-08-01T18:24:41Z 2738 135 2005-08-08T18:59:41Z 2 2020-02-15T06:59:44Z +10699 2005-08-01T18:24:51Z 1029 125 2005-08-06T20:18:51Z 1 2020-02-15T06:59:44Z +10700 2005-08-01T18:26:31Z 4259 203 2005-08-07T19:51:31Z 2 2020-02-15T06:59:44Z +10701 2005-08-01T18:28:17Z 3958 538 2005-08-09T21:51:17Z 1 2020-02-15T06:59:44Z +10702 2005-08-01T18:34:59Z 2802 560 2005-08-09T23:44:59Z 2 2020-02-15T06:59:44Z +10703 2005-08-01T18:37:39Z 1818 181 2005-08-07T23:50:39Z 2 2020-02-15T06:59:44Z +10704 2005-08-01T18:38:02Z 960 594 2005-08-08T20:19:02Z 1 2020-02-15T06:59:44Z +10705 2005-08-01T18:38:54Z 4338 381 2005-08-04T18:00:54Z 1 2020-02-15T06:59:44Z +10706 2005-08-01T18:41:28Z 1183 147 2005-08-10T14:30:28Z 1 2020-02-15T06:59:44Z +10707 2005-08-01T18:41:34Z 1165 558 2005-08-06T12:41:34Z 1 2020-02-15T06:59:44Z +10708 2005-08-01T18:43:28Z 3978 567 2005-08-09T15:24:28Z 1 2020-02-15T06:59:44Z +10709 2005-08-01T18:43:57Z 282 418 2005-08-06T13:17:57Z 2 2020-02-15T06:59:44Z +10710 2005-08-01T18:44:36Z 3082 177 2005-08-03T13:17:36Z 1 2020-02-15T06:59:44Z +10711 2005-08-01T18:45:09Z 4278 400 2005-08-02T19:47:09Z 2 2020-02-15T06:59:44Z +10712 2005-08-01T18:47:56Z 1188 532 2005-08-07T19:26:56Z 2 2020-02-15T06:59:44Z +10713 2005-08-01T18:50:05Z 2030 369 2005-08-05T00:43:05Z 2 2020-02-15T06:59:44Z +10714 2005-08-01T18:51:29Z 1465 64 2005-08-04T18:49:29Z 2 2020-02-15T06:59:44Z +10715 2005-08-01T18:51:48Z 1054 386 2005-08-06T14:44:48Z 1 2020-02-15T06:59:44Z +10716 2005-08-01T18:53:48Z 3405 515 2005-08-04T13:49:48Z 1 2020-02-15T06:59:44Z +10717 2005-08-01T18:53:53Z 2934 365 2005-08-05T21:28:53Z 1 2020-02-15T06:59:44Z +10718 2005-08-01T18:55:38Z 2763 394 2005-08-04T14:45:38Z 1 2020-02-15T06:59:44Z +10719 2005-08-01T19:00:28Z 3861 188 2005-08-07T17:04:28Z 1 2020-02-15T06:59:44Z +10720 2005-08-01T19:04:33Z 3712 326 2005-08-06T23:12:33Z 2 2020-02-15T06:59:44Z +10721 2005-08-01T19:05:18Z 904 18 2005-08-09T20:45:18Z 2 2020-02-15T06:59:44Z +10722 2005-08-01T19:07:08Z 2849 90 2005-08-04T14:09:08Z 2 2020-02-15T06:59:44Z +10723 2005-08-01T19:10:49Z 2526 580 2005-08-08T19:21:49Z 2 2020-02-15T06:59:44Z +10724 2005-08-01T19:10:59Z 3425 576 2005-08-07T18:44:59Z 1 2020-02-15T06:59:44Z +10725 2005-08-01T19:11:04Z 4486 534 2005-08-07T18:16:04Z 2 2020-02-15T06:59:44Z +10726 2005-08-01T19:14:53Z 749 75 2005-08-08T23:56:53Z 2 2020-02-15T06:59:44Z +10727 2005-08-01T19:15:08Z 2049 16 2005-08-03T13:52:08Z 1 2020-02-15T06:59:44Z +10728 2005-08-01T19:15:09Z 3133 309 2005-08-04T19:35:09Z 1 2020-02-15T06:59:44Z +10729 2005-08-01T19:21:11Z 2918 595 2005-08-07T21:20:11Z 2 2020-02-15T06:59:44Z +10730 2005-08-01T19:21:42Z 1793 368 2005-08-10T21:18:42Z 1 2020-02-15T06:59:44Z +10731 2005-08-01T19:21:48Z 4248 278 2005-08-08T22:01:48Z 2 2020-02-15T06:59:44Z +10732 2005-08-01T19:25:18Z 2810 538 2005-08-10T22:26:18Z 1 2020-02-15T06:59:44Z +10733 2005-08-01T19:28:01Z 3980 560 2005-08-09T18:41:01Z 1 2020-02-15T06:59:44Z +10734 2005-08-01T19:28:47Z 1130 21 2005-08-03T00:41:47Z 2 2020-02-15T06:59:44Z +10735 2005-08-01T19:29:45Z 4061 544 2005-08-02T19:50:45Z 2 2020-02-15T06:59:44Z +10736 2005-08-01T19:30:21Z 2227 272 2005-08-02T22:37:21Z 1 2020-02-15T06:59:44Z +10737 2005-08-01T19:31:24Z 1773 149 2005-08-10T19:17:24Z 1 2020-02-15T06:59:44Z +10738 2005-08-01T19:39:08Z 544 377 2005-08-10T20:37:08Z 1 2020-02-15T06:59:44Z +10739 2005-08-01T19:46:11Z 3160 197 2005-08-06T21:08:11Z 2 2020-02-15T06:59:44Z +10740 2005-08-01T19:50:32Z 3215 144 2005-08-07T23:25:32Z 1 2020-02-15T06:59:44Z +10741 2005-08-01T19:52:52Z 3300 469 2005-08-04T19:58:52Z 1 2020-02-15T06:59:44Z +10742 2005-08-01T19:53:13Z 3658 416 2005-08-10T15:05:13Z 1 2020-02-15T06:59:44Z +10743 2005-08-01T19:55:09Z 4206 197 2005-08-03T19:29:09Z 1 2020-02-15T06:59:44Z +10744 2005-08-01T19:56:49Z 565 439 2005-08-09T16:33:49Z 2 2020-02-15T06:59:44Z +10745 2005-08-01T19:57:06Z 446 307 2005-08-07T18:04:06Z 1 2020-02-15T06:59:44Z +10746 2005-08-01T19:58:49Z 305 508 2005-08-10T19:00:49Z 2 2020-02-15T06:59:44Z +10747 2005-08-01T19:59:41Z 4527 266 2005-08-10T00:00:41Z 2 2020-02-15T06:59:44Z +10748 2005-08-01T20:01:24Z 3769 181 2005-08-05T19:55:24Z 1 2020-02-15T06:59:44Z +10749 2005-08-01T20:02:01Z 2953 214 2005-08-03T14:20:01Z 1 2020-02-15T06:59:44Z +10750 2005-08-01T20:06:00Z 3206 201 2005-08-07T15:48:00Z 1 2020-02-15T06:59:44Z +10751 2005-08-01T20:06:10Z 3257 518 2005-08-10T22:36:10Z 2 2020-02-15T06:59:44Z +10752 2005-08-01T20:08:49Z 3203 147 2005-08-10T15:41:49Z 2 2020-02-15T06:59:44Z +10753 2005-08-01T20:09:24Z 1557 273 2005-08-09T19:31:24Z 1 2020-02-15T06:59:44Z +10754 2005-08-01T20:12:33Z 2122 460 2005-08-10T01:07:33Z 2 2020-02-15T06:59:44Z +10755 2005-08-01T20:14:14Z 1217 239 2005-08-07T01:04:14Z 1 2020-02-15T06:59:44Z +10756 2005-08-01T20:17:03Z 4247 596 2005-08-08T18:31:03Z 2 2020-02-15T06:59:44Z +10757 2005-08-01T20:22:44Z 102 188 2005-08-04T19:48:44Z 2 2020-02-15T06:59:44Z +10758 2005-08-01T20:22:51Z 191 373 2005-08-10T16:11:51Z 1 2020-02-15T06:59:44Z +10759 2005-08-01T20:22:51Z 3528 256 2005-08-07T22:07:51Z 1 2020-02-15T06:59:44Z +10760 2005-08-01T20:25:20Z 1311 497 2005-08-09T16:57:20Z 1 2020-02-15T06:59:44Z +10761 2005-08-01T20:25:35Z 3967 36 2005-08-08T15:20:35Z 2 2020-02-15T06:59:44Z +10762 2005-08-01T20:28:39Z 1363 208 2005-08-05T17:36:39Z 1 2020-02-15T06:59:44Z +10763 2005-08-01T20:32:27Z 987 276 2005-08-05T01:24:27Z 2 2020-02-15T06:59:44Z +10764 2005-08-01T20:32:42Z 3808 357 2005-08-03T22:14:42Z 2 2020-02-15T06:59:44Z +10765 2005-08-01T20:34:51Z 566 337 2005-08-04T00:02:51Z 1 2020-02-15T06:59:44Z +10766 2005-08-01T20:36:29Z 947 420 2005-08-04T00:30:29Z 1 2020-02-15T06:59:44Z +10767 2005-08-01T20:37:23Z 2875 488 2005-08-04T23:15:23Z 2 2020-02-15T06:59:44Z +10768 2005-08-01T20:39:32Z 454 273 2005-08-10T19:41:32Z 1 2020-02-15T06:59:44Z +10769 2005-08-01T20:43:02Z 3222 348 2005-08-05T02:32:02Z 1 2020-02-15T06:59:44Z +10770 2005-08-01T20:45:39Z 2567 262 2005-08-04T19:21:39Z 1 2020-02-15T06:59:44Z +10771 2005-08-01T20:49:35Z 1274 485 2005-08-10T16:58:35Z 1 2020-02-15T06:59:44Z +10772 2005-08-01T20:51:10Z 132 485 2005-08-10T15:50:10Z 1 2020-02-15T06:59:44Z +10773 2005-08-01T20:53:45Z 3854 181 2005-08-07T00:16:45Z 1 2020-02-15T06:59:44Z +10774 2005-08-01T20:54:33Z 4231 407 2005-08-08T20:59:33Z 2 2020-02-15T06:59:44Z +10775 2005-08-01T20:59:52Z 4190 263 2005-08-04T19:31:52Z 2 2020-02-15T06:59:44Z +10776 2005-08-01T20:59:58Z 1598 565 2005-08-10T20:33:58Z 2 2020-02-15T06:59:44Z +10777 2005-08-01T21:03:50Z 3487 493 2005-08-06T19:29:50Z 1 2020-02-15T06:59:44Z +10778 2005-08-01T21:11:39Z 1939 220 2005-08-02T22:59:39Z 2 2020-02-15T06:59:44Z +10779 2005-08-01T21:11:54Z 2092 578 2005-08-09T21:00:54Z 2 2020-02-15T06:59:44Z +10780 2005-08-01T21:14:24Z 1450 51 2005-08-07T16:32:24Z 2 2020-02-15T06:59:44Z +10781 2005-08-01T21:22:41Z 1321 259 2005-08-06T01:02:41Z 1 2020-02-15T06:59:44Z +10782 2005-08-01T21:23:25Z 1507 577 2005-08-03T20:15:25Z 2 2020-02-15T06:59:44Z +10783 2005-08-01T21:23:37Z 1192 495 2005-08-09T20:18:37Z 1 2020-02-15T06:59:44Z +10784 2005-08-01T21:24:28Z 3494 208 2005-08-09T19:23:28Z 1 2020-02-15T06:59:44Z +10785 2005-08-01T21:24:55Z 2282 397 2005-08-06T17:47:55Z 1 2020-02-15T06:59:44Z +10786 2005-08-01T21:29:34Z 50 490 2005-08-10T17:27:34Z 1 2020-02-15T06:59:44Z +10787 2005-08-01T21:35:01Z 3246 127 2005-08-10T23:30:01Z 1 2020-02-15T06:59:44Z +10788 2005-08-01T21:37:10Z 3350 160 2005-08-03T01:33:10Z 1 2020-02-15T06:59:44Z +10789 2005-08-01T21:37:55Z 3298 403 2005-08-07T17:01:55Z 2 2020-02-15T06:59:44Z +10790 2005-08-01T21:38:37Z 3080 274 2005-08-08T17:20:37Z 2 2020-02-15T06:59:44Z +10791 2005-08-01T21:41:52Z 2061 338 2005-08-04T03:28:52Z 2 2020-02-15T06:59:44Z +10792 2005-08-01T21:44:24Z 1037 264 2005-08-02T19:48:24Z 2 2020-02-15T06:59:44Z +10793 2005-08-01T21:48:03Z 3018 225 2005-08-10T19:16:03Z 1 2020-02-15T06:59:44Z +10794 2005-08-01T21:51:15Z 889 27 2005-08-10T18:51:15Z 2 2020-02-15T06:59:44Z +10795 2005-08-01T21:56:37Z 2748 76 2005-08-03T01:36:37Z 1 2020-02-15T06:59:44Z +10796 2005-08-01T21:56:41Z 2113 534 2005-08-05T01:09:41Z 1 2020-02-15T06:59:44Z +10797 2005-08-01T22:02:51Z 1731 308 2005-08-03T23:07:51Z 1 2020-02-15T06:59:44Z +10798 2005-08-01T22:03:10Z 382 141 2005-08-08T01:34:10Z 1 2020-02-15T06:59:44Z +10799 2005-08-01T22:03:31Z 3282 145 2005-08-06T20:19:31Z 2 2020-02-15T06:59:44Z +10800 2005-08-01T22:07:44Z 507 583 2005-08-05T22:45:44Z 1 2020-02-15T06:59:44Z +10801 2005-08-01T22:09:35Z 3757 116 2005-08-08T22:23:35Z 1 2020-02-15T06:59:44Z +10802 2005-08-01T22:18:32Z 3998 178 2005-08-10T18:41:32Z 2 2020-02-15T06:59:44Z +10803 2005-08-01T22:22:07Z 3318 46 2005-08-08T02:37:07Z 2 2020-02-15T06:59:44Z +10804 2005-08-01T22:22:11Z 2915 596 2005-08-03T03:42:11Z 2 2020-02-15T06:59:44Z +10805 2005-08-01T22:23:37Z 557 203 2005-08-05T01:22:37Z 2 2020-02-15T06:59:44Z +10806 2005-08-01T22:25:29Z 3553 89 2005-08-04T18:46:29Z 2 2020-02-15T06:59:44Z +10807 2005-08-01T22:26:10Z 1673 287 2005-08-05T21:55:10Z 1 2020-02-15T06:59:44Z +10808 2005-08-01T22:37:11Z 596 480 2005-08-09T02:37:11Z 1 2020-02-15T06:59:44Z +10809 2005-08-01T22:39:27Z 1167 340 2005-08-03T03:44:27Z 2 2020-02-15T06:59:44Z +10810 2005-08-01T22:40:39Z 2314 376 2005-08-06T19:47:39Z 1 2020-02-15T06:59:44Z +10811 2005-08-01T22:41:15Z 4012 209 2005-08-10T00:10:15Z 1 2020-02-15T06:59:44Z +10812 2005-08-01T22:41:16Z 3762 11 2005-08-07T00:50:16Z 1 2020-02-15T06:59:44Z +10813 2005-08-01T22:43:00Z 3580 456 2005-08-03T21:43:00Z 1 2020-02-15T06:59:44Z +10814 2005-08-01T22:43:12Z 2758 49 2005-08-05T02:35:12Z 2 2020-02-15T06:59:44Z +10815 2005-08-01T22:46:21Z 877 62 2005-08-03T02:43:21Z 2 2020-02-15T06:59:44Z +10816 2005-08-01T22:48:57Z 905 129 2005-08-10T04:39:57Z 2 2020-02-15T06:59:44Z +10817 2005-08-01T22:51:08Z 3056 501 2005-08-10T16:55:08Z 2 2020-02-15T06:59:44Z +10818 2005-08-01T22:52:45Z 4549 309 2005-08-06T04:07:45Z 1 2020-02-15T06:59:44Z +10819 2005-08-01T22:52:57Z 983 308 2005-08-06T00:08:57Z 1 2020-02-15T06:59:44Z +10820 2005-08-01T22:53:40Z 1487 97 2005-08-02T17:59:40Z 2 2020-02-15T06:59:44Z +10821 2005-08-01T22:54:27Z 2016 522 2005-08-07T02:15:27Z 2 2020-02-15T06:59:44Z +10822 2005-08-01T22:54:28Z 3895 343 2005-08-02T17:19:28Z 1 2020-02-15T06:59:44Z +10823 2005-08-01T22:59:10Z 3322 405 2005-08-08T23:44:10Z 1 2020-02-15T06:59:44Z +10824 2005-08-01T23:00:22Z 3948 482 2005-08-04T04:14:22Z 2 2020-02-15T06:59:44Z +10825 2005-08-01T23:05:33Z 4386 587 2005-08-04T04:33:33Z 1 2020-02-15T06:59:44Z +10826 2005-08-01T23:07:56Z 1228 476 2005-08-08T04:10:56Z 2 2020-02-15T06:59:44Z +10827 2005-08-01T23:13:00Z 1590 46 2005-08-08T02:51:00Z 1 2020-02-15T06:59:44Z +10828 2005-08-01T23:16:10Z 2448 471 2005-08-09T21:17:10Z 1 2020-02-15T06:59:44Z +10829 2005-08-01T23:17:06Z 168 554 2005-08-09T17:22:06Z 2 2020-02-15T06:59:44Z +10830 2005-08-01T23:18:06Z 4176 148 2005-08-06T23:15:06Z 2 2020-02-15T06:59:44Z +10831 2005-08-01T23:22:45Z 1496 78 2005-08-07T01:05:45Z 2 2020-02-15T06:59:44Z +10832 2005-08-01T23:24:53Z 4096 487 2005-08-06T23:18:53Z 1 2020-02-15T06:59:44Z +10833 2005-08-01T23:25:55Z 4380 422 2005-08-10T18:01:55Z 1 2020-02-15T06:59:44Z +10834 2005-08-01T23:28:00Z 2270 252 2005-08-07T01:21:00Z 1 2020-02-15T06:59:44Z +10835 2005-08-01T23:28:49Z 351 90 2005-08-10T21:28:49Z 2 2020-02-15T06:59:44Z +10836 2005-08-01T23:29:58Z 4534 217 2005-08-07T23:03:58Z 2 2020-02-15T06:59:44Z +10837 2005-08-01T23:30:22Z 1816 410 2005-08-07T23:02:22Z 1 2020-02-15T06:59:44Z +10838 2005-08-01T23:36:10Z 69 387 2005-08-05T04:55:10Z 2 2020-02-15T06:59:44Z +10839 2005-08-01T23:37:39Z 2867 482 2005-08-02T20:18:39Z 1 2020-02-15T06:59:44Z +10840 2005-08-01T23:38:34Z 583 593 2005-08-07T02:36:34Z 2 2020-02-15T06:59:44Z +10841 2005-08-01T23:39:21Z 4337 102 2005-08-07T20:47:21Z 1 2020-02-15T06:59:44Z +10842 2005-08-01T23:41:24Z 1300 137 2005-08-11T03:48:24Z 1 2020-02-15T06:59:44Z +10843 2005-08-01T23:43:03Z 1286 192 2005-08-09T23:49:03Z 2 2020-02-15T06:59:44Z +10844 2005-08-01T23:46:58Z 1516 333 2005-08-09T19:42:58Z 2 2020-02-15T06:59:44Z +10845 2005-08-01T23:47:03Z 2737 42 2005-08-08T01:57:03Z 1 2020-02-15T06:59:44Z +10846 2005-08-01T23:47:54Z 2277 441 2005-08-08T01:10:54Z 1 2020-02-15T06:59:44Z +10847 2005-08-01T23:49:33Z 1200 280 2005-08-10T05:37:33Z 2 2020-02-15T06:59:44Z +10848 2005-08-01T23:50:22Z 2630 368 2005-08-06T00:52:22Z 1 2020-02-15T06:59:44Z +10849 2005-08-01T23:51:00Z 1683 278 2005-08-10T19:59:00Z 2 2020-02-15T06:59:44Z +10850 2005-08-01T23:53:45Z 1853 199 2005-08-10T21:11:45Z 1 2020-02-15T06:59:44Z +10851 2005-08-01T23:58:45Z 1359 154 2005-08-04T00:59:45Z 1 2020-02-15T06:59:44Z +10852 2005-08-02T00:00:33Z 3862 27 2005-08-03T23:09:33Z 1 2020-02-15T06:59:44Z +10853 2005-08-02T00:00:54Z 2682 41 2005-08-10T05:37:54Z 2 2020-02-15T06:59:44Z +10854 2005-08-02T00:02:06Z 3295 356 2005-08-02T21:55:06Z 2 2020-02-15T06:59:44Z +10855 2005-08-02T00:06:37Z 1366 274 2005-08-03T00:39:37Z 1 2020-02-15T06:59:44Z +10856 2005-08-02T00:07:14Z 2010 451 2005-08-04T02:48:14Z 2 2020-02-15T06:59:44Z +10857 2005-08-02T00:07:20Z 2961 360 2005-08-04T02:35:20Z 1 2020-02-15T06:59:44Z +10858 2005-08-02T00:08:39Z 852 312 2005-08-05T00:58:39Z 2 2020-02-15T06:59:44Z +10859 2005-08-02T00:11:39Z 277 375 2005-08-08T19:52:39Z 1 2020-02-15T06:59:44Z +10860 2005-08-02T00:12:32Z 2827 25 2005-08-04T03:50:32Z 1 2020-02-15T06:59:44Z +10861 2005-08-02T00:12:46Z 2162 131 2005-08-09T04:09:46Z 2 2020-02-15T06:59:44Z +10862 2005-08-02T00:17:34Z 1077 176 2005-08-08T00:31:34Z 2 2020-02-15T06:59:44Z +10863 2005-08-02T00:18:07Z 1170 161 2005-08-10T06:16:07Z 2 2020-02-15T06:59:44Z +10864 2005-08-02T00:18:59Z 1694 134 2005-08-08T22:20:59Z 1 2020-02-15T06:59:44Z +10865 2005-08-02T00:22:46Z 1485 201 2005-08-09T05:08:46Z 2 2020-02-15T06:59:44Z +10866 2005-08-02T00:22:49Z 117 424 2005-08-07T04:38:49Z 1 2020-02-15T06:59:44Z +10867 2005-08-02T00:24:15Z 2577 473 2005-08-05T21:09:15Z 1 2020-02-15T06:59:44Z +10868 2005-08-02T00:25:15Z 2443 562 2005-08-10T02:31:15Z 2 2020-02-15T06:59:44Z +10869 2005-08-02T00:26:54Z 2967 568 2005-08-04T03:40:54Z 2 2020-02-15T06:59:44Z +10870 2005-08-02T00:27:12Z 1509 33 2005-08-02T20:00:12Z 2 2020-02-15T06:59:44Z +10871 2005-08-02T00:27:24Z 104 75 2005-08-05T06:25:24Z 1 2020-02-15T06:59:44Z +10872 2005-08-02T00:27:50Z 2470 84 2005-08-06T20:34:50Z 2 2020-02-15T06:59:44Z +10873 2005-08-02T00:30:34Z 169 506 2005-08-07T00:16:34Z 2 2020-02-15T06:59:44Z +10874 2005-08-02T00:31:00Z 2552 230 2005-08-07T05:04:00Z 1 2020-02-15T06:59:44Z +10875 2005-08-02T00:31:44Z 862 175 2005-08-05T22:24:44Z 2 2020-02-15T06:59:44Z +10876 2005-08-02T00:31:58Z 2161 559 2005-08-05T21:45:58Z 1 2020-02-15T06:59:44Z +10877 2005-08-02T00:32:04Z 3337 487 2005-08-07T19:44:04Z 2 2020-02-15T06:59:44Z +10878 2005-08-02T00:33:12Z 3511 45 2005-08-07T06:02:12Z 1 2020-02-15T06:59:44Z +10879 2005-08-02T00:33:20Z 4415 334 2005-08-09T04:13:20Z 2 2020-02-15T06:59:44Z +10880 2005-08-02T00:34:12Z 450 528 2005-08-06T21:15:12Z 2 2020-02-15T06:59:44Z +10881 2005-08-02T00:38:14Z 781 253 2005-08-09T22:02:14Z 2 2020-02-15T06:59:44Z +10882 2005-08-02T00:47:16Z 1349 54 2005-08-09T22:11:16Z 1 2020-02-15T06:59:44Z +10883 2005-08-02T00:47:19Z 4 301 2005-08-03T00:02:19Z 1 2020-02-15T06:59:44Z +10884 2005-08-02T00:47:33Z 3702 569 2005-08-03T04:38:33Z 1 2020-02-15T06:59:44Z +10885 2005-08-02T00:51:37Z 4223 493 2005-08-09T20:49:37Z 2 2020-02-15T06:59:44Z +10886 2005-08-02T00:52:34Z 943 77 2005-08-08T00:30:34Z 1 2020-02-15T06:59:44Z +10887 2005-08-02T00:52:35Z 3450 573 2005-08-03T05:37:35Z 1 2020-02-15T06:59:44Z +10888 2005-08-02T00:52:45Z 2412 428 2005-08-03T03:07:45Z 1 2020-02-15T06:59:44Z +10889 2005-08-02T00:54:33Z 2098 64 2005-08-07T19:42:33Z 1 2020-02-15T06:59:44Z +10890 2005-08-02T00:58:46Z 78 210 2005-08-10T02:13:46Z 1 2020-02-15T06:59:44Z +10891 2005-08-02T01:09:55Z 1269 201 2005-08-05T05:03:55Z 2 2020-02-15T06:59:44Z +10892 2005-08-02T01:12:06Z 3243 109 2005-08-09T23:53:06Z 1 2020-02-15T06:59:44Z +10893 2005-08-02T01:12:13Z 2529 306 2005-08-11T05:53:13Z 2 2020-02-15T06:59:44Z +10894 2005-08-02T01:12:35Z 598 51 2005-08-09T22:55:35Z 1 2020-02-15T06:59:44Z +10895 2005-08-02T01:16:59Z 93 77 2005-08-03T02:41:59Z 2 2020-02-15T06:59:44Z +10896 2005-08-02T01:19:33Z 2283 505 2005-08-08T06:54:33Z 1 2020-02-15T06:59:44Z +10897 2005-08-02T01:23:42Z 291 338 2005-08-03T23:27:42Z 1 2020-02-15T06:59:44Z +10898 2005-08-02T01:29:57Z 3814 23 2005-08-06T00:07:57Z 2 2020-02-15T06:59:44Z +10899 2005-08-02T01:30:21Z 859 29 2005-08-06T05:01:21Z 2 2020-02-15T06:59:44Z +10900 2005-08-02T01:34:26Z 1749 139 2005-08-07T00:52:26Z 2 2020-02-15T06:59:44Z +10901 2005-08-02T01:35:44Z 3813 290 2005-08-04T21:20:44Z 2 2020-02-15T06:59:44Z +10902 2005-08-02T01:35:46Z 3863 486 2005-08-09T01:59:46Z 1 2020-02-15T06:59:44Z +10903 2005-08-02T01:41:59Z 2696 547 2005-08-06T23:03:59Z 1 2020-02-15T06:59:44Z +10904 2005-08-02T01:43:02Z 3681 593 2005-08-04T04:34:02Z 1 2020-02-15T06:59:44Z +10905 2005-08-02T01:45:59Z 2835 439 2005-08-04T22:28:59Z 1 2020-02-15T06:59:44Z +10906 2005-08-02T01:47:04Z 3139 463 2005-08-07T20:41:04Z 2 2020-02-15T06:59:44Z +10907 2005-08-02T01:51:48Z 1430 561 2005-08-02T19:53:48Z 1 2020-02-15T06:59:44Z +10908 2005-08-02T01:53:06Z 1284 269 2005-08-04T02:46:06Z 2 2020-02-15T06:59:44Z +10909 2005-08-02T01:53:59Z 3516 413 2005-08-03T04:36:59Z 2 2020-02-15T06:59:44Z +10910 2005-08-02T01:54:34Z 2428 266 2005-08-10T04:04:34Z 2 2020-02-15T06:59:44Z +10911 2005-08-02T01:58:36Z 769 195 2005-08-08T07:37:36Z 2 2020-02-15T06:59:44Z +10912 2005-08-02T02:00:03Z 732 477 2005-08-06T05:55:03Z 1 2020-02-15T06:59:44Z +10913 2005-08-02T02:04:03Z 3388 565 2005-08-09T03:21:03Z 1 2020-02-15T06:59:44Z +10914 2005-08-02T02:04:43Z 585 584 2005-08-06T03:00:43Z 1 2020-02-15T06:59:44Z +10915 2005-08-02T02:05:04Z 4568 418 2005-08-10T21:58:04Z 2 2020-02-15T06:59:44Z +10916 2005-08-02T02:05:59Z 3841 25 2005-08-06T03:46:59Z 2 2020-02-15T06:59:44Z +10917 2005-08-02T02:06:18Z 3146 378 2005-08-03T22:42:18Z 1 2020-02-15T06:59:44Z +10918 2005-08-02T02:10:56Z 3418 2 2005-08-02T21:23:56Z 1 2020-02-15T06:59:44Z +10919 2005-08-02T02:11:03Z 868 115 2005-08-04T01:49:03Z 1 2020-02-15T06:59:44Z +10920 2005-08-02T02:14:10Z 3106 531 2005-08-06T23:36:10Z 1 2020-02-15T06:59:44Z +10921 2005-08-02T02:14:33Z 1820 555 2005-08-09T20:58:33Z 2 2020-02-15T06:59:44Z +10922 2005-08-02T02:14:40Z 4522 539 2005-08-06T06:04:40Z 1 2020-02-15T06:59:44Z +10923 2005-08-02T02:15:01Z 2602 239 2005-08-03T04:18:01Z 1 2020-02-15T06:59:44Z +10924 2005-08-02T02:20:19Z 589 540 2005-08-11T05:50:19Z 2 2020-02-15T06:59:44Z +10925 2005-08-02T02:24:38Z 1475 98 2005-08-03T05:06:38Z 1 2020-02-15T06:59:44Z +10926 2005-08-02T02:26:37Z 4016 460 2005-08-09T20:55:37Z 1 2020-02-15T06:59:44Z +10927 2005-08-02T02:31:15Z 4125 288 2005-08-10T20:41:15Z 1 2020-02-15T06:59:44Z +10928 2005-08-02T02:34:12Z 2885 211 2005-08-07T21:13:12Z 1 2020-02-15T06:59:44Z +10929 2005-08-02T02:35:44Z 913 305 2005-08-05T03:52:44Z 1 2020-02-15T06:59:44Z +10930 2005-08-02T02:38:07Z 2027 206 2005-08-08T05:15:07Z 2 2020-02-15T06:59:44Z +10931 2005-08-02T02:44:59Z 3268 545 2005-08-04T02:02:59Z 1 2020-02-15T06:59:44Z +10932 2005-08-02T02:46:22Z 1688 595 2005-08-06T01:49:22Z 2 2020-02-15T06:59:44Z +10933 2005-08-02T02:50:49Z 3970 313 2005-08-08T04:39:49Z 1 2020-02-15T06:59:44Z +10934 2005-08-02T02:52:18Z 4458 142 2005-08-06T01:23:18Z 2 2020-02-15T06:59:44Z +10935 2005-08-02T02:54:53Z 4373 42 2005-08-10T00:07:53Z 2 2020-02-15T06:59:44Z +10936 2005-08-02T02:55:04Z 463 445 2005-08-11T07:56:04Z 1 2020-02-15T06:59:44Z +10937 2005-08-02T03:00:18Z 1320 416 2005-08-11T03:44:18Z 2 2020-02-15T06:59:44Z +10938 2005-08-02T03:05:22Z 3918 502 2005-08-05T08:31:22Z 1 2020-02-15T06:59:44Z +10939 2005-08-02T03:06:20Z 2131 161 2005-08-04T01:22:20Z 2 2020-02-15T06:59:44Z +10940 2005-08-02T03:08:29Z 3760 120 2005-08-07T21:28:29Z 2 2020-02-15T06:59:44Z +10941 2005-08-02T03:11:33Z 2132 531 2005-08-10T07:31:33Z 1 2020-02-15T06:59:44Z +10942 2005-08-02T03:16:31Z 2304 78 2005-08-11T02:46:31Z 2 2020-02-15T06:59:44Z +10943 2005-08-02T03:17:29Z 1036 377 2005-08-03T00:50:29Z 2 2020-02-15T06:59:44Z +10944 2005-08-02T03:20:03Z 2373 470 2005-08-04T04:13:03Z 2 2020-02-15T06:59:44Z +10945 2005-08-02T03:20:23Z 3684 532 2005-08-09T03:23:23Z 1 2020-02-15T06:59:44Z +10946 2005-08-02T03:20:39Z 4271 56 2005-08-05T02:59:39Z 1 2020-02-15T06:59:44Z +10947 2005-08-02T03:23:17Z 2510 500 2005-08-07T05:25:17Z 1 2020-02-15T06:59:44Z +10948 2005-08-02T03:23:23Z 4429 220 2005-08-05T23:18:23Z 1 2020-02-15T06:59:44Z +10949 2005-08-02T03:24:04Z 2309 389 2005-08-06T08:36:04Z 2 2020-02-15T06:59:44Z +10950 2005-08-02T03:25:08Z 707 451 2005-08-07T23:11:08Z 2 2020-02-15T06:59:44Z +10951 2005-08-02T03:26:35Z 173 144 2005-08-07T22:03:35Z 1 2020-02-15T06:59:44Z +10952 2005-08-02T03:28:21Z 3218 111 2005-08-09T01:41:21Z 1 2020-02-15T06:59:44Z +10953 2005-08-02T03:28:38Z 1510 483 2005-08-11T03:53:38Z 1 2020-02-15T06:59:44Z +10954 2005-08-02T03:30:24Z 3406 20 2005-08-08T05:52:24Z 2 2020-02-15T06:59:44Z +10955 2005-08-02T03:32:34Z 618 490 2005-08-09T21:53:34Z 2 2020-02-15T06:59:44Z +10956 2005-08-02T03:33:14Z 4372 54 2005-08-09T09:20:14Z 2 2020-02-15T06:59:44Z +10957 2005-08-02T03:33:30Z 1652 447 2005-08-10T06:19:30Z 2 2020-02-15T06:59:44Z +10958 2005-08-02T03:37:13Z 2174 160 2005-08-04T23:28:13Z 2 2020-02-15T06:59:44Z +10959 2005-08-02T03:39:39Z 4233 431 2005-08-11T07:20:39Z 1 2020-02-15T06:59:44Z +10960 2005-08-02T03:46:18Z 3536 399 2005-08-11T01:29:18Z 1 2020-02-15T06:59:44Z +10961 2005-08-02T03:47:55Z 1416 375 2005-08-09T02:03:55Z 1 2020-02-15T06:59:44Z +10962 2005-08-02T03:48:13Z 1953 538 2005-08-07T00:04:13Z 1 2020-02-15T06:59:44Z +10963 2005-08-02T03:48:17Z 4501 36 2005-08-02T22:15:17Z 1 2020-02-15T06:59:44Z +10964 2005-08-02T03:56:23Z 2356 36 2005-08-09T23:11:23Z 2 2020-02-15T06:59:44Z +10965 2005-08-02T04:00:19Z 2192 580 2005-08-09T03:27:19Z 1 2020-02-15T06:59:44Z +10966 2005-08-02T04:00:47Z 478 584 2005-08-08T01:58:47Z 2 2020-02-15T06:59:44Z +10967 2005-08-02T04:02:16Z 683 149 2005-08-09T07:57:16Z 1 2020-02-15T06:59:44Z +10968 2005-08-02T04:03:13Z 888 234 2005-08-11T08:36:13Z 1 2020-02-15T06:59:44Z +10969 2005-08-02T04:04:32Z 1898 244 2005-08-09T23:18:32Z 1 2020-02-15T06:59:44Z +10970 2005-08-02T04:06:46Z 1202 260 2005-08-10T04:27:46Z 1 2020-02-15T06:59:44Z +10971 2005-08-02T04:08:17Z 2789 383 2005-08-09T00:02:17Z 1 2020-02-15T06:59:44Z +10972 2005-08-02T04:08:25Z 1928 348 2005-08-09T23:25:25Z 1 2020-02-15T06:59:44Z +10973 2005-08-02T04:09:42Z 3562 127 2005-08-08T05:24:42Z 2 2020-02-15T06:59:44Z +10974 2005-08-02T04:10:52Z 690 491 2005-08-09T08:26:52Z 1 2020-02-15T06:59:44Z +10975 2005-08-02T04:11:25Z 2616 361 2005-08-04T04:39:25Z 2 2020-02-15T06:59:44Z +10976 2005-08-02T04:11:48Z 2418 326 2005-08-06T06:30:48Z 2 2020-02-15T06:59:44Z +10977 2005-08-02T04:12:17Z 2302 300 2005-08-06T06:52:17Z 2 2020-02-15T06:59:44Z +10978 2005-08-02T04:12:27Z 1597 487 2005-08-10T08:19:27Z 2 2020-02-15T06:59:44Z +10979 2005-08-02T04:16:37Z 2625 160 2005-08-06T00:01:37Z 2 2020-02-15T06:59:44Z +10980 2005-08-02T04:17:32Z 150 547 2005-08-04T05:12:32Z 1 2020-02-15T06:59:44Z +10981 2005-08-02T04:17:53Z 3699 305 2005-08-09T03:45:53Z 2 2020-02-15T06:59:44Z +10982 2005-08-02T04:19:11Z 2508 345 2005-08-04T00:20:11Z 2 2020-02-15T06:59:44Z +10983 2005-08-02T04:24:23Z 4502 380 2005-08-09T08:05:23Z 2 2020-02-15T06:59:44Z +10984 2005-08-02T04:30:02Z 1813 450 2005-08-10T02:51:02Z 1 2020-02-15T06:59:44Z +10985 2005-08-02T04:30:19Z 2734 186 2005-08-03T05:18:19Z 1 2020-02-15T06:59:44Z +10986 2005-08-02T04:35:24Z 555 597 2005-08-09T07:34:24Z 2 2020-02-15T06:59:44Z +10987 2005-08-02T04:36:52Z 968 349 2005-08-04T00:03:52Z 1 2020-02-15T06:59:44Z +10988 2005-08-02T04:38:17Z 1157 509 2005-08-09T00:09:17Z 1 2020-02-15T06:59:44Z +10989 2005-08-02T04:40:54Z 2272 7 2005-08-09T03:39:54Z 2 2020-02-15T06:59:44Z +10990 2005-08-02T04:41:06Z 262 111 2005-08-10T05:02:06Z 2 2020-02-15T06:59:44Z +10991 2005-08-02T04:41:12Z 2854 77 2005-08-05T05:36:12Z 2 2020-02-15T06:59:44Z +10992 2005-08-02T04:41:17Z 11 180 2005-08-09T02:13:17Z 1 2020-02-15T06:59:44Z +10993 2005-08-02T04:45:01Z 292 383 2005-08-04T03:32:01Z 1 2020-02-15T06:59:44Z +10994 2005-08-02T04:46:53Z 647 323 2005-08-11T10:30:53Z 1 2020-02-15T06:59:44Z +10995 2005-08-02T04:48:00Z 2891 340 2005-08-07T05:00:00Z 1 2020-02-15T06:59:44Z +10996 2005-08-02T04:48:11Z 2235 26 2005-08-06T08:00:11Z 1 2020-02-15T06:59:44Z +10997 2005-08-02T04:49:02Z 300 334 2005-08-10T08:13:02Z 2 2020-02-15T06:59:44Z +10998 2005-08-02T04:50:55Z 1479 435 2005-08-11T03:43:55Z 1 2020-02-15T06:59:44Z +10999 2005-08-02T04:53:13Z 2013 227 2005-08-06T04:36:13Z 2 2020-02-15T06:59:44Z +11000 2005-08-02T04:56:14Z 264 265 2005-08-07T01:39:14Z 2 2020-02-15T06:59:44Z +11001 2005-08-02T04:56:45Z 3701 5 2005-08-11T08:04:45Z 1 2020-02-15T06:59:44Z +11002 2005-08-02T05:02:56Z 3073 583 2005-08-05T07:04:56Z 2 2020-02-15T06:59:44Z +11003 2005-08-02T05:03:05Z 4301 272 2005-08-05T10:48:05Z 2 2020-02-15T06:59:44Z +11004 2005-08-02T05:04:18Z 200 45 2005-08-11T00:03:18Z 2 2020-02-15T06:59:44Z +11005 2005-08-02T05:05:23Z 1547 216 2005-08-07T23:28:23Z 2 2020-02-15T06:59:44Z +11006 2005-08-02T05:05:52Z 2776 473 2005-08-05T03:33:52Z 1 2020-02-15T06:59:44Z +11007 2005-08-02T05:05:53Z 4172 98 2005-08-05T01:56:53Z 2 2020-02-15T06:59:44Z +11008 2005-08-02T05:06:17Z 2831 375 2005-08-10T01:22:17Z 2 2020-02-15T06:59:44Z +11009 2005-08-02T05:06:23Z 2574 596 2005-08-08T03:02:23Z 1 2020-02-15T06:59:44Z +11010 2005-08-02T05:06:27Z 869 326 2005-08-03T23:47:27Z 2 2020-02-15T06:59:44Z +11011 2005-08-02T05:07:07Z 3981 256 2005-08-09T07:16:07Z 1 2020-02-15T06:59:44Z +11012 2005-08-02T05:09:42Z 542 162 2005-08-05T07:22:42Z 2 2020-02-15T06:59:44Z +11013 2005-08-02T05:10:54Z 2993 527 2005-08-10T08:59:54Z 1 2020-02-15T06:59:44Z +11014 2005-08-02T05:12:22Z 393 269 2005-08-07T09:33:22Z 1 2020-02-15T06:59:44Z +11015 2005-08-02T05:13:00Z 4331 138 2005-08-08T04:18:00Z 2 2020-02-15T06:59:44Z +11016 2005-08-02T05:19:13Z 4446 116 2005-08-05T05:31:13Z 1 2020-02-15T06:59:44Z +11017 2005-08-02T05:19:51Z 4140 480 2005-08-09T00:36:51Z 2 2020-02-15T06:59:44Z +11018 2005-08-02T05:27:53Z 2988 197 2005-08-07T10:48:53Z 1 2020-02-15T06:59:44Z +11019 2005-08-02T05:29:31Z 3227 112 2005-08-04T00:42:31Z 1 2020-02-15T06:59:44Z +11020 2005-08-02T05:29:48Z 1645 242 2005-08-06T05:36:48Z 2 2020-02-15T06:59:44Z +11021 2005-08-02T05:30:11Z 2069 385 2005-08-05T05:50:11Z 2 2020-02-15T06:59:44Z +11022 2005-08-02T05:35:03Z 827 206 2005-08-09T10:20:03Z 2 2020-02-15T06:59:44Z +11023 2005-08-02T05:36:38Z 3617 6 2005-08-10T05:39:38Z 1 2020-02-15T06:59:44Z +11024 2005-08-02T05:38:31Z 2284 427 2005-08-11T04:47:31Z 1 2020-02-15T06:59:44Z +11025 2005-08-02T05:39:12Z 2253 419 2005-08-08T00:09:12Z 2 2020-02-15T06:59:44Z +11026 2005-08-02T05:46:05Z 3554 531 2005-08-07T06:27:05Z 2 2020-02-15T06:59:44Z +11027 2005-08-02T05:47:10Z 571 412 2005-08-05T23:51:10Z 1 2020-02-15T06:59:44Z +11028 2005-08-02T05:48:20Z 2764 66 2005-08-10T11:21:20Z 1 2020-02-15T06:59:44Z +11029 2005-08-02T05:51:10Z 1023 45 2005-08-05T04:15:10Z 1 2020-02-15T06:59:44Z +11030 2005-08-02T05:51:20Z 1437 569 2005-08-06T04:20:20Z 1 2020-02-15T06:59:44Z +11031 2005-08-02T05:52:58Z 1205 361 2005-08-07T07:14:58Z 2 2020-02-15T06:59:44Z +11032 2005-08-02T05:53:35Z 1119 359 2005-08-05T02:58:35Z 2 2020-02-15T06:59:44Z +11033 2005-08-02T05:54:17Z 3323 155 2005-08-09T10:50:17Z 2 2020-02-15T06:59:44Z +11034 2005-08-02T05:54:53Z 2939 586 2005-08-09T04:14:53Z 1 2020-02-15T06:59:44Z +11035 2005-08-02T05:55:39Z 3776 305 2005-08-08T06:46:39Z 2 2020-02-15T06:59:44Z +11036 2005-08-02T05:56:29Z 2054 502 2005-08-05T05:00:29Z 2 2020-02-15T06:59:44Z +11037 2005-08-02T05:58:12Z 4291 220 2005-08-07T11:26:12Z 1 2020-02-15T06:59:44Z +11038 2005-08-02T05:59:42Z 4452 403 2005-08-08T04:37:42Z 2 2020-02-15T06:59:44Z +11039 2005-08-02T06:00:53Z 549 170 2005-08-05T06:19:53Z 2 2020-02-15T06:59:44Z +11040 2005-08-02T06:03:22Z 2297 223 2005-08-03T07:58:22Z 1 2020-02-15T06:59:44Z +11041 2005-08-02T06:03:53Z 1897 435 2005-08-03T11:57:53Z 1 2020-02-15T06:59:44Z +11042 2005-08-02T06:04:33Z 4149 439 2005-08-11T01:30:33Z 1 2020-02-15T06:59:44Z +11043 2005-08-02T06:04:44Z 65 573 2005-08-06T11:37:44Z 1 2020-02-15T06:59:44Z +11044 2005-08-02T06:05:27Z 2922 122 2005-08-06T05:15:27Z 1 2020-02-15T06:59:44Z +11045 2005-08-02T06:07:54Z 2214 402 2005-08-08T00:37:54Z 1 2020-02-15T06:59:44Z +11046 2005-08-02T06:08:34Z 2105 526 2005-08-06T08:45:34Z 2 2020-02-15T06:59:44Z +11047 2005-08-02T06:09:20Z 2267 416 2005-08-11T08:36:20Z 1 2020-02-15T06:59:44Z +11048 2005-08-02T06:15:07Z 206 491 2005-08-04T02:47:07Z 2 2020-02-15T06:59:44Z +11049 2005-08-02T06:15:40Z 4352 38 2005-08-11T10:09:40Z 2 2020-02-15T06:59:44Z +11050 2005-08-02T06:17:16Z 2077 234 2005-08-09T05:58:16Z 1 2020-02-15T06:59:44Z +11051 2005-08-02T06:23:39Z 4189 446 2005-08-06T06:46:39Z 2 2020-02-15T06:59:44Z +11052 2005-08-02T06:26:19Z 1089 331 2005-08-06T04:20:19Z 2 2020-02-15T06:59:44Z +11053 2005-08-02T06:27:13Z 2599 50 2005-08-09T11:24:13Z 2 2020-02-15T06:59:44Z +11054 2005-08-02T06:33:07Z 728 577 2005-08-10T02:52:07Z 2 2020-02-15T06:59:44Z +11055 2005-08-02T06:36:05Z 3851 182 2005-08-06T00:36:05Z 1 2020-02-15T06:59:44Z +11056 2005-08-02T06:36:27Z 1404 88 2005-08-10T06:02:27Z 1 2020-02-15T06:59:44Z +11057 2005-08-02T06:38:19Z 3143 137 2005-08-11T03:43:19Z 1 2020-02-15T06:59:44Z +11058 2005-08-02T06:38:44Z 3270 274 2005-08-06T06:45:44Z 1 2020-02-15T06:59:44Z +11059 2005-08-02T06:41:38Z 428 189 2005-08-09T04:34:38Z 1 2020-02-15T06:59:44Z +11060 2005-08-02T06:48:18Z 3395 496 2005-08-10T11:49:18Z 1 2020-02-15T06:59:44Z +11061 2005-08-02T06:50:18Z 809 245 2005-08-07T07:41:18Z 2 2020-02-15T06:59:44Z +11062 2005-08-02T06:52:54Z 2014 346 2005-08-07T10:59:54Z 1 2020-02-15T06:59:44Z +11063 2005-08-02T06:53:48Z 2261 461 2005-08-05T03:38:48Z 2 2020-02-15T06:59:44Z +11064 2005-08-02T06:55:17Z 3012 338 2005-08-06T03:29:17Z 1 2020-02-15T06:59:44Z +11065 2005-08-02T06:57:55Z 2226 357 2005-08-06T01:31:55Z 2 2020-02-15T06:59:44Z +11066 2005-08-02T06:58:32Z 4213 373 2005-08-10T01:27:32Z 2 2020-02-15T06:59:44Z +11067 2005-08-02T07:03:24Z 965 85 2005-08-10T08:59:24Z 2 2020-02-15T06:59:44Z +11068 2005-08-02T07:08:07Z 1262 52 2005-08-09T11:15:07Z 2 2020-02-15T06:59:44Z +11069 2005-08-02T07:09:34Z 57 4 2005-08-08T08:39:34Z 1 2020-02-15T06:59:44Z +11070 2005-08-02T07:10:39Z 4020 298 2005-08-03T07:43:39Z 1 2020-02-15T06:59:44Z +11071 2005-08-02T07:10:53Z 4264 294 2005-08-07T09:58:53Z 1 2020-02-15T06:59:44Z +11072 2005-08-02T07:10:57Z 3078 21 2005-08-04T07:42:57Z 1 2020-02-15T06:59:44Z +11073 2005-08-02T07:13:03Z 4232 234 2005-08-03T05:46:03Z 1 2020-02-15T06:59:44Z +11074 2005-08-02T07:21:43Z 1439 277 2005-08-08T05:18:43Z 1 2020-02-15T06:59:44Z +11075 2005-08-02T07:24:23Z 3027 503 2005-08-08T04:55:23Z 1 2020-02-15T06:59:44Z +11076 2005-08-02T07:24:47Z 837 211 2005-08-10T09:16:47Z 1 2020-02-15T06:59:44Z +11077 2005-08-02T07:26:43Z 4254 158 2005-08-09T10:34:43Z 2 2020-02-15T06:59:44Z +11078 2005-08-02T07:26:58Z 2362 587 2005-08-07T01:59:58Z 2 2020-02-15T06:59:44Z +11079 2005-08-02T07:29:10Z 3185 29 2005-08-07T01:59:10Z 2 2020-02-15T06:59:44Z +11080 2005-08-02T07:29:56Z 4303 571 2005-08-08T05:58:56Z 1 2020-02-15T06:59:44Z +11081 2005-08-02T07:30:14Z 3804 513 2005-08-09T08:50:14Z 1 2020-02-15T06:59:44Z +11082 2005-08-02T07:30:19Z 3037 190 2005-08-07T05:20:19Z 2 2020-02-15T06:59:44Z +11083 2005-08-02T07:32:01Z 4395 295 2005-08-08T02:23:01Z 1 2020-02-15T06:59:44Z +11084 2005-08-02T07:34:19Z 32 369 2005-08-07T09:30:19Z 1 2020-02-15T06:59:44Z +11085 2005-08-02T07:36:44Z 3207 276 2005-08-04T03:32:44Z 1 2020-02-15T06:59:44Z +11086 2005-08-02T07:38:44Z 552 371 2005-08-11T06:30:44Z 1 2020-02-15T06:59:44Z +11087 2005-08-02T07:41:41Z 654 2 2005-08-10T10:37:41Z 2 2020-02-15T06:59:44Z +11088 2005-08-02T07:48:31Z 2739 138 2005-08-05T08:09:31Z 2 2020-02-15T06:59:44Z +11089 2005-08-02T07:52:20Z 825 421 2005-08-07T07:24:20Z 1 2020-02-15T06:59:44Z +11090 2005-08-02T07:56:40Z 2743 89 2005-08-10T07:58:40Z 1 2020-02-15T06:59:44Z +11091 2005-08-02T07:56:41Z 1659 423 2005-08-07T05:35:41Z 2 2020-02-15T06:59:44Z +11092 2005-08-02T07:58:50Z 569 60 2005-08-04T03:23:50Z 2 2020-02-15T06:59:44Z +11093 2005-08-02T07:59:49Z 239 82 2005-08-11T06:01:49Z 1 2020-02-15T06:59:44Z +11094 2005-08-02T08:03:02Z 3095 18 2005-08-03T11:34:02Z 1 2020-02-15T06:59:44Z +11095 2005-08-02T08:03:20Z 3517 278 2005-08-10T05:20:20Z 1 2020-02-15T06:59:44Z +11096 2005-08-02T08:05:19Z 1436 34 2005-08-04T07:28:19Z 2 2020-02-15T06:59:44Z +11097 2005-08-02T08:05:46Z 2493 575 2005-08-10T12:00:46Z 2 2020-02-15T06:59:44Z +11098 2005-08-02T08:06:18Z 158 570 2005-08-11T04:50:18Z 2 2020-02-15T06:59:44Z +11099 2005-08-02T08:07:12Z 1444 102 2005-08-07T12:11:12Z 2 2020-02-15T06:59:44Z +11100 2005-08-02T08:08:00Z 3047 65 2005-08-10T07:19:00Z 1 2020-02-15T06:59:44Z +11101 2005-08-02T08:08:24Z 2621 80 2005-08-06T05:55:24Z 1 2020-02-15T06:59:44Z +11102 2005-08-02T08:08:30Z 3112 73 2005-08-04T09:16:30Z 1 2020-02-15T06:59:44Z +11103 2005-08-02T08:09:54Z 1879 158 2005-08-07T12:05:54Z 1 2020-02-15T06:59:44Z +11104 2005-08-02T08:09:58Z 3042 196 2005-08-05T11:55:58Z 1 2020-02-15T06:59:44Z +11105 2005-08-02T08:13:31Z 3170 245 2005-08-03T11:08:31Z 1 2020-02-15T06:59:44Z +11106 2005-08-02T08:17:38Z 2307 287 2005-08-03T07:54:38Z 1 2020-02-15T06:59:44Z +11107 2005-08-02T08:19:38Z 2217 410 2005-08-07T08:46:38Z 2 2020-02-15T06:59:44Z +11108 2005-08-02T08:20:01Z 560 447 2005-08-03T13:22:01Z 2 2020-02-15T06:59:44Z +11109 2005-08-02T08:20:29Z 2683 479 2005-08-09T11:35:29Z 2 2020-02-15T06:59:44Z +11110 2005-08-02T08:20:31Z 4311 4 2005-08-04T05:06:31Z 2 2020-02-15T06:59:44Z +11111 2005-08-02T08:21:27Z 334 378 2005-08-06T07:48:27Z 2 2020-02-15T06:59:44Z +11112 2005-08-02T08:25:14Z 526 207 2005-08-03T08:41:14Z 1 2020-02-15T06:59:44Z +11113 2005-08-02T08:26:24Z 1654 231 2005-08-07T09:24:24Z 2 2020-02-15T06:59:44Z +11114 2005-08-02T08:26:45Z 1273 572 2005-08-03T08:41:45Z 2 2020-02-15T06:59:44Z +11115 2005-08-02T08:31:06Z 3812 408 2005-08-04T02:36:06Z 2 2020-02-15T06:59:44Z +11116 2005-08-02T08:34:40Z 434 344 2005-08-09T04:56:40Z 1 2020-02-15T06:59:44Z +11117 2005-08-02T08:36:03Z 1613 474 2005-08-05T06:56:03Z 2 2020-02-15T06:59:44Z +11118 2005-08-02T08:44:18Z 2411 15 2005-08-05T08:08:18Z 2 2020-02-15T06:59:44Z +11119 2005-08-02T08:44:44Z 4307 489 2005-08-10T11:32:44Z 2 2020-02-15T06:59:44Z +11120 2005-08-02T08:47:04Z 4185 322 2005-08-05T05:33:04Z 1 2020-02-15T06:59:44Z +11121 2005-08-02T08:48:31Z 1025 572 2005-08-04T05:08:31Z 2 2020-02-15T06:59:44Z +11122 2005-08-02T08:49:09Z 3021 383 2005-08-08T04:33:09Z 1 2020-02-15T06:59:44Z +11123 2005-08-02T08:54:17Z 1926 150 2005-08-09T11:11:17Z 2 2020-02-15T06:59:44Z +11124 2005-08-02T08:55:25Z 698 249 2005-08-10T10:59:25Z 1 2020-02-15T06:59:44Z +11125 2005-08-02T08:55:35Z 2081 237 2005-08-03T09:12:35Z 1 2020-02-15T06:59:44Z +11126 2005-08-02T08:59:04Z 3310 47 2005-08-04T11:00:04Z 1 2020-02-15T06:59:44Z +11127 2005-08-02T09:00:59Z 1106 351 2005-08-05T11:54:59Z 2 2020-02-15T06:59:44Z +11128 2005-08-02T09:03:25Z 3472 386 2005-08-09T04:36:25Z 1 2020-02-15T06:59:44Z +11129 2005-08-02T09:08:44Z 23 566 2005-08-04T04:00:44Z 1 2020-02-15T06:59:44Z +11130 2005-08-02T09:08:59Z 684 329 2005-08-09T07:50:59Z 2 2020-02-15T06:59:44Z +11131 2005-08-02T09:10:04Z 1860 293 2005-08-08T09:59:04Z 2 2020-02-15T06:59:44Z +11132 2005-08-02T09:14:09Z 2212 398 2005-08-08T06:39:09Z 1 2020-02-15T06:59:44Z +11133 2005-08-02T09:15:45Z 675 120 2005-08-04T10:39:45Z 1 2020-02-15T06:59:44Z +11134 2005-08-02T09:19:22Z 2641 372 2005-08-11T03:56:22Z 1 2020-02-15T06:59:44Z +11135 2005-08-02T09:22:25Z 799 32 2005-08-04T14:30:25Z 2 2020-02-15T06:59:44Z +11136 2005-08-02T09:22:57Z 1315 559 2005-08-08T14:12:57Z 2 2020-02-15T06:59:44Z +11137 2005-08-02T09:25:31Z 2500 310 2005-08-08T08:10:31Z 1 2020-02-15T06:59:44Z +11138 2005-08-02T09:26:16Z 4250 458 2005-08-11T07:50:16Z 2 2020-02-15T06:59:44Z +11139 2005-08-02T09:27:36Z 1011 236 2005-08-08T14:07:36Z 2 2020-02-15T06:59:44Z +11140 2005-08-02T09:27:45Z 3836 132 2005-08-05T04:10:45Z 1 2020-02-15T06:59:44Z +11141 2005-08-02T09:29:11Z 1614 15 2005-08-04T07:50:11Z 1 2020-02-15T06:59:44Z +11142 2005-08-02T09:30:11Z 2954 306 2005-08-05T06:52:11Z 1 2020-02-15T06:59:44Z +11143 2005-08-02T09:32:54Z 3382 100 2005-08-05T12:04:54Z 2 2020-02-15T06:59:44Z +11144 2005-08-02T09:39:17Z 2724 376 2005-08-03T11:53:17Z 2 2020-02-15T06:59:44Z +11145 2005-08-02T09:43:24Z 1270 291 2005-08-05T15:29:24Z 1 2020-02-15T06:59:44Z +11146 2005-08-02T09:45:32Z 2488 552 2005-08-07T07:33:32Z 1 2020-02-15T06:59:44Z +11147 2005-08-02T09:45:54Z 1562 597 2005-08-07T07:28:54Z 1 2020-02-15T06:59:44Z +11148 2005-08-02T09:47:08Z 2991 230 2005-08-08T10:57:08Z 1 2020-02-15T06:59:44Z +11149 2005-08-02T09:51:43Z 3254 358 2005-08-11T09:40:43Z 2 2020-02-15T06:59:44Z +11150 2005-08-02T09:51:46Z 2193 527 2005-08-05T09:03:46Z 2 2020-02-15T06:59:44Z +11151 2005-08-02T09:52:44Z 3939 391 2005-08-05T06:29:44Z 2 2020-02-15T06:59:44Z +11152 2005-08-02T09:53:36Z 3887 494 2005-08-11T14:58:36Z 1 2020-02-15T06:59:44Z +11153 2005-08-02T09:54:19Z 1546 220 2005-08-10T14:57:19Z 1 2020-02-15T06:59:44Z +11154 2005-08-02T09:54:50Z 697 160 2005-08-06T14:48:50Z 2 2020-02-15T06:59:44Z +11155 2005-08-02T09:55:28Z 2001 73 2005-08-03T06:00:28Z 2 2020-02-15T06:59:44Z +11156 2005-08-02T09:56:06Z 907 465 2005-08-04T13:36:06Z 2 2020-02-15T06:59:44Z +11157 2005-08-02T09:58:15Z 1313 244 2005-08-06T04:23:15Z 2 2020-02-15T06:59:44Z +11158 2005-08-02T09:58:28Z 530 190 2005-08-10T13:54:28Z 2 2020-02-15T06:59:44Z +11159 2005-08-02T10:00:55Z 4575 249 2005-08-05T10:38:55Z 1 2020-02-15T06:59:44Z +11160 2005-08-02T10:05:30Z 3260 436 2005-08-07T08:30:30Z 1 2020-02-15T06:59:44Z +11161 2005-08-02T10:05:57Z 3321 503 2005-08-06T05:05:57Z 2 2020-02-15T06:59:44Z +11162 2005-08-02T10:07:54Z 1809 277 2005-08-05T11:35:54Z 2 2020-02-15T06:59:44Z +11163 2005-08-02T10:08:40Z 1925 505 2005-08-05T14:59:40Z 1 2020-02-15T06:59:44Z +11164 2005-08-02T10:10:56Z 4450 580 2005-08-10T11:20:56Z 2 2020-02-15T06:59:44Z +11165 2005-08-02T10:12:17Z 2059 513 2005-08-04T11:09:17Z 1 2020-02-15T06:59:44Z +11166 2005-08-02T10:14:58Z 638 11 2005-08-11T11:43:58Z 1 2020-02-15T06:59:44Z +11167 2005-08-02T10:15:51Z 148 451 2005-08-09T09:18:51Z 1 2020-02-15T06:59:44Z +11168 2005-08-02T10:19:42Z 468 555 2005-08-04T08:42:42Z 1 2020-02-15T06:59:44Z +11169 2005-08-02T10:19:42Z 2392 329 2005-08-07T05:45:42Z 1 2020-02-15T06:59:44Z +11170 2005-08-02T10:21:53Z 1333 547 2005-08-08T11:08:53Z 1 2020-02-15T06:59:44Z +11171 2005-08-02T10:23:41Z 3117 339 2005-08-04T14:22:41Z 2 2020-02-15T06:59:44Z +11172 2005-08-02T10:27:52Z 1207 76 2005-08-11T12:47:52Z 1 2020-02-15T06:59:44Z +11173 2005-08-02T10:28:00Z 4296 146 2005-08-10T14:53:00Z 1 2020-02-15T06:59:44Z +11174 2005-08-02T10:32:11Z 1551 328 2005-08-09T12:30:11Z 1 2020-02-15T06:59:44Z +11175 2005-08-02T10:38:47Z 85 164 2005-08-07T07:11:47Z 2 2020-02-15T06:59:44Z +11176 2005-08-02T10:39:43Z 1448 37 2005-08-09T14:42:43Z 2 2020-02-15T06:59:44Z +11177 2005-08-02T10:43:48Z 1149 2 2005-08-10T10:55:48Z 2 2020-02-15T06:59:44Z +11178 2005-08-02T10:48:10Z 2613 342 2005-08-06T06:07:10Z 1 2020-02-15T06:59:44Z +11179 2005-08-02T10:50:06Z 4376 5 2005-08-04T05:24:06Z 1 2020-02-15T06:59:44Z +11180 2005-08-02T10:54:30Z 3632 534 2005-08-11T15:55:30Z 1 2020-02-15T06:59:44Z +11181 2005-08-02T10:55:03Z 3127 557 2005-08-07T10:43:03Z 1 2020-02-15T06:59:44Z +11182 2005-08-02T10:55:14Z 605 54 2005-08-06T05:58:14Z 1 2020-02-15T06:59:44Z +11183 2005-08-02T11:00:32Z 833 102 2005-08-04T08:59:32Z 2 2020-02-15T06:59:44Z +11184 2005-08-02T11:01:26Z 871 259 2005-08-11T06:29:26Z 1 2020-02-15T06:59:44Z +11185 2005-08-02T11:04:35Z 1215 469 2005-08-05T13:48:35Z 2 2020-02-15T06:59:44Z +11186 2005-08-02T11:12:08Z 733 353 2005-08-03T10:46:08Z 1 2020-02-15T06:59:44Z +11187 2005-08-02T11:16:19Z 3626 410 2005-08-11T06:11:19Z 1 2020-02-15T06:59:44Z +11188 2005-08-02T11:17:11Z 1372 485 2005-08-08T16:46:11Z 2 2020-02-15T06:59:44Z +11189 2005-08-02T11:17:23Z 729 565 2005-08-09T16:30:23Z 2 2020-02-15T06:59:44Z +11190 2005-08-02T11:21:34Z 922 254 2005-08-05T05:23:34Z 1 2020-02-15T06:59:44Z +11191 2005-08-02T11:24:07Z 1097 571 2005-08-10T10:39:07Z 1 2020-02-15T06:59:44Z +11192 2005-08-02T11:29:41Z 1998 349 2005-08-07T06:01:41Z 2 2020-02-15T06:59:44Z +11193 2005-08-02T11:31:33Z 2246 292 2005-08-04T14:00:33Z 1 2020-02-15T06:59:44Z +11194 2005-08-02T11:35:53Z 2732 135 2005-08-10T11:28:53Z 1 2020-02-15T06:59:44Z +11195 2005-08-02T11:42:23Z 4359 177 2005-08-03T08:29:23Z 1 2020-02-15T06:59:44Z +11196 2005-08-02T11:42:40Z 2648 126 2005-08-10T11:58:40Z 2 2020-02-15T06:59:44Z +11197 2005-08-02T11:45:07Z 3041 122 2005-08-03T09:07:07Z 1 2020-02-15T06:59:44Z +11198 2005-08-02T11:45:15Z 2908 540 2005-08-10T11:42:15Z 2 2020-02-15T06:59:44Z +11199 2005-08-02T11:47:40Z 3926 578 2005-08-10T06:52:40Z 2 2020-02-15T06:59:44Z +11200 2005-08-02T11:48:36Z 2730 98 2005-08-07T08:35:36Z 2 2020-02-15T06:59:44Z +11201 2005-08-02T11:49:16Z 1501 195 2005-08-11T08:39:16Z 1 2020-02-15T06:59:44Z +11202 2005-08-02T11:51:57Z 3625 231 2005-08-08T09:41:57Z 1 2020-02-15T06:59:44Z +11203 2005-08-02T11:52:41Z 4520 92 2005-08-10T15:52:41Z 2 2020-02-15T06:59:44Z +11204 2005-08-02T11:56:31Z 3578 247 2005-08-06T14:16:31Z 2 2020-02-15T06:59:44Z +11205 2005-08-02T11:56:54Z 4321 552 2005-08-05T08:24:54Z 1 2020-02-15T06:59:44Z +11206 2005-08-02T11:58:03Z 4131 72 2005-08-07T12:36:03Z 2 2020-02-15T06:59:44Z +11207 2005-08-02T12:01:30Z 4470 481 2005-08-05T07:56:30Z 1 2020-02-15T06:59:44Z +11208 2005-08-02T12:02:37Z 4566 320 2005-08-05T10:56:37Z 1 2020-02-15T06:59:44Z +11209 2005-08-02T12:09:45Z 3219 24 2005-08-07T08:52:45Z 1 2020-02-15T06:59:44Z +11210 2005-08-02T12:15:54Z 422 202 2005-08-04T16:18:54Z 2 2020-02-15T06:59:44Z +11211 2005-08-02T12:16:48Z 1722 245 2005-08-03T10:40:48Z 1 2020-02-15T06:59:44Z +11212 2005-08-02T12:18:29Z 4007 343 2005-08-05T16:05:29Z 2 2020-02-15T06:59:44Z +11213 2005-08-02T12:18:35Z 1007 584 2005-08-05T08:44:35Z 2 2020-02-15T06:59:44Z +11214 2005-08-02T12:19:50Z 2722 407 2005-08-11T06:38:50Z 1 2020-02-15T06:59:44Z +11215 2005-08-02T12:20:42Z 379 197 2005-08-06T14:01:42Z 1 2020-02-15T06:59:44Z +11216 2005-08-02T12:23:43Z 1109 473 2005-08-03T13:19:43Z 1 2020-02-15T06:59:44Z +11217 2005-08-02T12:26:31Z 1201 417 2005-08-09T09:53:31Z 2 2020-02-15T06:59:44Z +11218 2005-08-02T12:29:12Z 1126 500 2005-08-10T16:13:12Z 2 2020-02-15T06:59:44Z +11219 2005-08-02T12:30:20Z 2889 461 2005-08-08T13:42:20Z 2 2020-02-15T06:59:44Z +11220 2005-08-02T12:31:41Z 3777 84 2005-08-05T08:23:41Z 2 2020-02-15T06:59:44Z +11221 2005-08-02T12:32:12Z 1689 146 2005-08-03T17:13:12Z 1 2020-02-15T06:59:44Z +11222 2005-08-02T12:32:28Z 1780 407 2005-08-11T18:15:28Z 2 2020-02-15T06:59:44Z +11223 2005-08-02T12:34:27Z 1994 597 2005-08-07T14:21:27Z 1 2020-02-15T06:59:44Z +11224 2005-08-02T12:40:38Z 3938 181 2005-08-04T10:02:38Z 2 2020-02-15T06:59:44Z +11225 2005-08-02T12:43:27Z 3721 159 2005-08-04T18:41:27Z 2 2020-02-15T06:59:44Z +11226 2005-08-02T12:47:30Z 79 282 2005-08-06T11:24:30Z 1 2020-02-15T06:59:44Z +11227 2005-08-02T12:48:05Z 1101 65 2005-08-11T14:08:05Z 1 2020-02-15T06:59:44Z +11228 2005-08-02T12:55:23Z 2561 144 2005-08-08T12:31:23Z 1 2020-02-15T06:59:44Z +11229 2005-08-02T12:56:37Z 941 332 2005-08-11T11:13:37Z 2 2020-02-15T06:59:44Z +11230 2005-08-02T12:59:08Z 1463 257 2005-08-04T13:42:08Z 1 2020-02-15T06:59:44Z +11231 2005-08-02T13:02:11Z 1100 90 2005-08-07T10:05:11Z 2 2020-02-15T06:59:44Z +11232 2005-08-02T13:04:12Z 971 8 2005-08-10T15:39:12Z 1 2020-02-15T06:59:44Z +11233 2005-08-02T13:06:11Z 2221 266 2005-08-08T15:02:11Z 1 2020-02-15T06:59:44Z +11234 2005-08-02T13:12:17Z 1020 27 2005-08-05T17:37:17Z 1 2020-02-15T06:59:44Z +11235 2005-08-02T13:13:21Z 2501 127 2005-08-03T07:17:21Z 1 2020-02-15T06:59:44Z +11236 2005-08-02T13:17:21Z 145 420 2005-08-09T09:53:21Z 2 2020-02-15T06:59:44Z +11237 2005-08-02T13:24:01Z 2668 426 2005-08-05T11:41:01Z 2 2020-02-15T06:59:44Z +11238 2005-08-02T13:25:50Z 2705 506 2005-08-08T19:12:50Z 2 2020-02-15T06:59:44Z +11239 2005-08-02T13:27:11Z 189 111 2005-08-03T14:36:11Z 1 2020-02-15T06:59:44Z +11240 2005-08-02T13:28:30Z 2170 597 2005-08-05T11:40:30Z 1 2020-02-15T06:59:44Z +11241 2005-08-02T13:29:24Z 3657 543 2005-08-11T11:36:24Z 2 2020-02-15T06:59:44Z +11242 2005-08-02T13:32:00Z 1041 434 2005-08-10T19:24:00Z 2 2020-02-15T06:59:44Z +11243 2005-08-02T13:32:48Z 2517 361 2005-08-11T18:55:48Z 1 2020-02-15T06:59:44Z +11244 2005-08-02T13:33:24Z 3423 142 2005-08-10T10:18:24Z 2 2020-02-15T06:59:44Z +11245 2005-08-02T13:33:50Z 2609 92 2005-08-04T10:20:50Z 2 2020-02-15T06:59:44Z +11246 2005-08-02T13:33:56Z 3577 550 2005-08-03T08:52:56Z 2 2020-02-15T06:59:44Z +11247 2005-08-02T13:34:08Z 1661 441 2005-08-06T16:23:08Z 2 2020-02-15T06:59:44Z +11248 2005-08-02T13:35:34Z 4139 312 2005-08-03T10:37:34Z 1 2020-02-15T06:59:44Z +11249 2005-08-02T13:35:40Z 3394 157 2005-08-07T11:22:40Z 1 2020-02-15T06:59:44Z +11250 2005-08-02T13:35:42Z 2223 279 2005-08-10T12:32:42Z 2 2020-02-15T06:59:44Z +11251 2005-08-02T13:40:49Z 2181 532 2005-08-09T14:16:49Z 2 2020-02-15T06:59:44Z +11252 2005-08-02T13:42:13Z 2410 337 2005-08-06T19:04:13Z 2 2020-02-15T06:59:44Z +11253 2005-08-02T13:42:44Z 2898 303 2005-08-09T17:06:44Z 2 2020-02-15T06:59:44Z +11254 2005-08-02T13:43:49Z 56 315 2005-08-08T13:16:49Z 1 2020-02-15T06:59:44Z +11255 2005-08-02T13:44:30Z 3393 569 2005-08-03T12:00:30Z 1 2020-02-15T06:59:44Z +11256 2005-08-02T13:44:53Z 2060 2 2005-08-04T16:39:53Z 1 2020-02-15T06:59:44Z +11257 2005-08-02T13:45:05Z 105 468 2005-08-11T16:37:05Z 1 2020-02-15T06:59:44Z +11258 2005-08-02T13:45:39Z 1576 242 2005-08-06T07:57:39Z 1 2020-02-15T06:59:44Z +11259 2005-08-02T13:46:30Z 896 330 2005-08-07T14:03:30Z 1 2020-02-15T06:59:44Z +11260 2005-08-02T13:52:19Z 4015 207 2005-08-06T08:13:19Z 2 2020-02-15T06:59:44Z +11261 2005-08-02T13:54:26Z 31 204 2005-08-10T19:04:26Z 2 2020-02-15T06:59:44Z +11262 2005-08-02T13:58:55Z 71 348 2005-08-05T18:09:55Z 2 2020-02-15T06:59:44Z +11263 2005-08-02T14:02:19Z 1189 421 2005-08-07T14:03:19Z 2 2020-02-15T06:59:44Z +11264 2005-08-02T14:05:18Z 3420 360 2005-08-10T08:46:18Z 2 2020-02-15T06:59:44Z +11265 2005-08-02T14:05:42Z 3870 531 2005-08-11T15:27:42Z 2 2020-02-15T06:59:44Z +11266 2005-08-02T14:07:35Z 3972 99 2005-08-04T13:31:35Z 1 2020-02-15T06:59:44Z +11267 2005-08-02T14:09:08Z 2045 244 2005-08-10T12:33:08Z 1 2020-02-15T06:59:44Z +11268 2005-08-02T14:10:39Z 3275 558 2005-08-04T14:35:39Z 1 2020-02-15T06:59:44Z +11269 2005-08-02T14:11:41Z 2398 297 2005-08-08T18:53:41Z 1 2020-02-15T06:59:44Z +11270 2005-08-02T14:18:07Z 1882 418 2005-08-03T08:20:07Z 1 2020-02-15T06:59:44Z +11271 2005-08-02T14:18:22Z 4323 93 2005-08-07T09:35:22Z 2 2020-02-15T06:59:44Z +11272 2005-08-02T14:20:27Z 4111 158 2005-08-07T12:24:27Z 2 2020-02-15T06:59:44Z +11273 2005-08-02T14:20:55Z 3383 541 2005-08-07T12:57:55Z 1 2020-02-15T06:59:44Z +11274 2005-08-02T14:24:08Z 1253 70 2005-08-11T14:56:08Z 1 2020-02-15T06:59:44Z +11275 2005-08-02T14:25:58Z 2838 464 2005-08-07T11:20:58Z 1 2020-02-15T06:59:44Z +11276 2005-08-02T14:28:46Z 4226 190 2005-08-04T14:00:46Z 1 2020-02-15T06:59:44Z +11277 2005-08-02T14:28:50Z 2050 68 2005-08-04T13:50:50Z 1 2020-02-15T06:59:44Z +11278 2005-08-02T14:29:43Z 961 143 2005-08-07T10:13:43Z 1 2020-02-15T06:59:44Z +11279 2005-08-02T14:30:03Z 151 125 2005-08-10T09:49:03Z 2 2020-02-15T06:59:44Z +11280 2005-08-02T14:34:33Z 1846 134 2005-08-08T15:40:33Z 2 2020-02-15T06:59:44Z +11281 2005-08-02T14:35:01Z 2210 137 2005-08-07T17:28:01Z 1 2020-02-15T06:59:44Z +11282 2005-08-02T14:35:03Z 1824 273 2005-08-03T16:02:03Z 2 2020-02-15T06:59:44Z +11283 2005-08-02T14:39:46Z 312 134 2005-08-05T10:19:46Z 2 2020-02-15T06:59:44Z +11284 2005-08-02T14:42:45Z 172 8 2005-08-04T11:55:45Z 2 2020-02-15T06:59:44Z +11285 2005-08-02T14:44:02Z 3849 585 2005-08-11T16:45:02Z 2 2020-02-15T06:59:44Z +11286 2005-08-02T14:44:22Z 1319 207 2005-08-10T09:01:22Z 2 2020-02-15T06:59:44Z +11287 2005-08-02T14:49:51Z 927 55 2005-08-09T09:19:51Z 2 2020-02-15T06:59:44Z +11288 2005-08-02T14:54:08Z 1478 298 2005-08-11T12:22:08Z 1 2020-02-15T06:59:44Z +11289 2005-08-02T14:55:00Z 2869 10 2005-08-11T13:57:00Z 1 2020-02-15T06:59:44Z +11290 2005-08-02T14:57:44Z 425 582 2005-08-09T19:36:44Z 2 2020-02-15T06:59:44Z +11291 2005-08-02T14:57:58Z 491 417 2005-08-11T09:04:58Z 2 2020-02-15T06:59:44Z +11292 2005-08-02T14:58:41Z 210 13 2005-08-06T14:38:41Z 2 2020-02-15T06:59:44Z +11293 2005-08-02T15:00:43Z 1514 475 2005-08-11T17:49:43Z 1 2020-02-15T06:59:44Z +11294 2005-08-02T15:08:27Z 855 411 2005-08-03T18:28:27Z 1 2020-02-15T06:59:44Z +11295 2005-08-02T15:10:06Z 423 67 2005-08-10T09:52:06Z 1 2020-02-15T06:59:44Z +11296 2005-08-02T15:15:27Z 247 154 2005-08-11T16:12:27Z 1 2020-02-15T06:59:44Z +11297 2005-08-02T15:22:47Z 2531 62 2005-08-11T18:45:47Z 1 2020-02-15T06:59:44Z +11298 2005-08-02T15:32:32Z 1663 35 2005-08-06T20:22:32Z 1 2020-02-15T06:59:44Z +11299 2005-08-02T15:36:52Z 3232 1 2005-08-10T16:40:52Z 2 2020-02-15T06:59:44Z +11300 2005-08-02T15:37:42Z 3032 552 2005-08-11T14:25:42Z 1 2020-02-15T06:59:44Z +11301 2005-08-02T15:37:59Z 676 502 2005-08-04T10:57:59Z 2 2020-02-15T06:59:44Z +11302 2005-08-02T15:38:03Z 1918 51 2005-08-09T10:33:03Z 2 2020-02-15T06:59:44Z +11303 2005-08-02T15:39:18Z 1817 417 2005-08-05T10:59:18Z 1 2020-02-15T06:59:44Z +11304 2005-08-02T15:40:10Z 2592 413 2005-08-06T16:12:10Z 2 2020-02-15T06:59:44Z +11305 2005-08-02T15:44:55Z 1690 341 2005-08-08T16:42:55Z 2 2020-02-15T06:59:44Z +11306 2005-08-02T15:45:10Z 13 247 2005-08-03T21:14:10Z 2 2020-02-15T06:59:44Z +11307 2005-08-02T15:48:08Z 1490 15 2005-08-06T20:33:08Z 2 2020-02-15T06:59:44Z +11308 2005-08-02T15:50:44Z 699 16 2005-08-05T11:38:44Z 2 2020-02-15T06:59:44Z +11309 2005-08-02T15:50:55Z 607 275 2005-08-09T18:28:55Z 1 2020-02-15T06:59:44Z +11310 2005-08-02T15:51:58Z 3601 415 2005-08-07T12:34:58Z 1 2020-02-15T06:59:44Z +11311 2005-08-02T15:53:48Z 204 197 2005-08-03T16:32:48Z 1 2020-02-15T06:59:44Z +11312 2005-08-02T15:56:51Z 1093 190 2005-08-07T20:56:51Z 2 2020-02-15T06:59:44Z +11313 2005-08-02T16:02:51Z 2689 419 2005-08-03T14:54:51Z 1 2020-02-15T06:59:44Z +11314 2005-08-02T16:04:08Z 2790 26 2005-08-04T18:47:08Z 1 2020-02-15T06:59:44Z +11315 2005-08-02T16:05:17Z 1116 13 2005-08-05T16:33:17Z 1 2020-02-15T06:59:44Z +11316 2005-08-02T16:07:49Z 521 108 2005-08-10T13:22:49Z 1 2020-02-15T06:59:44Z +11317 2005-08-02T16:08:52Z 1889 502 2005-08-08T21:12:52Z 1 2020-02-15T06:59:44Z +11318 2005-08-02T16:09:11Z 2386 532 2005-08-07T11:28:11Z 2 2020-02-15T06:59:44Z +11319 2005-08-02T16:10:09Z 4069 178 2005-08-09T11:21:09Z 2 2020-02-15T06:59:44Z +11320 2005-08-02T16:13:28Z 3362 550 2005-08-05T21:23:28Z 1 2020-02-15T06:59:44Z +11321 2005-08-02T16:15:07Z 205 266 2005-08-04T20:35:07Z 2 2020-02-15T06:59:44Z +11322 2005-08-02T16:23:17Z 761 418 2005-08-09T19:55:17Z 2 2020-02-15T06:59:44Z +11323 2005-08-02T16:29:57Z 3784 419 2005-08-06T16:01:57Z 1 2020-02-15T06:59:44Z +11324 2005-08-02T16:31:17Z 2900 540 2005-08-08T15:38:17Z 2 2020-02-15T06:59:44Z +11325 2005-08-02T16:33:11Z 4514 422 2005-08-08T13:42:11Z 1 2020-02-15T06:59:44Z +11326 2005-08-02T16:34:29Z 1762 530 2005-08-03T17:40:29Z 2 2020-02-15T06:59:44Z +11327 2005-08-02T16:40:47Z 773 361 2005-08-03T22:13:47Z 1 2020-02-15T06:59:44Z +11328 2005-08-02T16:42:38Z 2031 219 2005-08-04T21:02:38Z 1 2020-02-15T06:59:44Z +11329 2005-08-02T16:42:52Z 2677 399 2005-08-08T16:45:52Z 1 2020-02-15T06:59:44Z +11330 2005-08-02T16:45:33Z 4326 75 2005-08-04T15:15:33Z 2 2020-02-15T06:59:44Z +11331 2005-08-02T16:49:01Z 3789 568 2005-08-09T19:15:01Z 1 2020-02-15T06:59:44Z +11332 2005-08-02T16:52:57Z 2381 467 2005-08-04T14:13:57Z 1 2020-02-15T06:59:44Z +11333 2005-08-02T16:53:00Z 3335 225 2005-08-07T20:49:00Z 2 2020-02-15T06:59:44Z +11334 2005-08-02T16:53:20Z 1504 560 2005-08-11T20:47:20Z 1 2020-02-15T06:59:44Z +11335 2005-08-02T16:57:37Z 2968 157 2005-08-09T19:43:37Z 1 2020-02-15T06:59:44Z +11336 2005-08-02T16:58:56Z 1949 473 2005-08-06T16:56:56Z 1 2020-02-15T06:59:44Z +11337 2005-08-02T16:59:09Z 3428 366 2005-08-10T20:41:09Z 2 2020-02-15T06:59:44Z +11338 2005-08-02T17:00:12Z 3689 26 2005-08-03T18:54:12Z 1 2020-02-15T06:59:44Z +11339 2005-08-02T17:02:06Z 705 263 2005-08-08T21:12:06Z 1 2020-02-15T06:59:44Z +11340 2005-08-02T17:05:43Z 1403 366 2005-08-09T13:25:43Z 1 2020-02-15T06:59:44Z +11341 2005-08-02T17:09:24Z 3586 15 2005-08-09T19:48:24Z 2 2020-02-15T06:59:44Z +11342 2005-08-02T17:11:35Z 4251 179 2005-08-07T15:04:35Z 1 2020-02-15T06:59:44Z +11343 2005-08-02T17:12:30Z 564 466 2005-08-09T12:08:30Z 1 2020-02-15T06:59:44Z +11344 2005-08-02T17:13:26Z 365 38 2005-08-07T16:44:26Z 1 2020-02-15T06:59:44Z +11345 2005-08-02T17:14:19Z 1895 405 2005-08-11T14:02:19Z 2 2020-02-15T06:59:44Z +11346 2005-08-02T17:15:38Z 584 100 2005-08-04T13:31:38Z 2 2020-02-15T06:59:44Z +11347 2005-08-02T17:18:07Z 195 217 2005-08-05T12:30:07Z 1 2020-02-15T06:59:44Z +11348 2005-08-02T17:18:38Z 1704 389 2005-08-06T16:11:38Z 2 2020-02-15T06:59:44Z +11349 2005-08-02T17:21:49Z 1871 73 2005-08-06T18:40:49Z 1 2020-02-15T06:59:44Z +11350 2005-08-02T17:22:59Z 1265 598 2005-08-09T19:56:59Z 2 2020-02-15T06:59:44Z +11351 2005-08-02T17:28:07Z 242 198 2005-08-09T21:55:07Z 1 2020-02-15T06:59:44Z +11352 2005-08-02T17:29:39Z 2760 546 2005-08-10T15:31:39Z 1 2020-02-15T06:59:44Z +11353 2005-08-02T17:34:45Z 1729 444 2005-08-09T16:01:45Z 1 2020-02-15T06:59:44Z +11354 2005-08-02T17:35:10Z 1887 569 2005-08-09T12:07:10Z 2 2020-02-15T06:59:44Z +11355 2005-08-02T17:37:43Z 2673 185 2005-08-05T19:59:43Z 1 2020-02-15T06:59:44Z +11356 2005-08-02T17:42:40Z 303 200 2005-08-11T23:29:40Z 1 2020-02-15T06:59:44Z +11357 2005-08-02T17:42:49Z 2644 148 2005-08-11T18:14:49Z 1 2020-02-15T06:59:44Z +11358 2005-08-02T17:45:02Z 2361 56 2005-08-11T18:16:02Z 1 2020-02-15T06:59:44Z +11359 2005-08-02T17:45:55Z 1648 466 2005-08-10T20:53:55Z 2 2020-02-15T06:59:44Z +11360 2005-08-02T17:46:04Z 1750 66 2005-08-04T21:02:04Z 2 2020-02-15T06:59:44Z +11361 2005-08-02T17:46:34Z 1124 547 2005-08-03T15:21:34Z 1 2020-02-15T06:59:44Z +11362 2005-08-02T17:47:25Z 2628 331 2005-08-07T20:14:25Z 1 2020-02-15T06:59:44Z +11363 2005-08-02T17:48:39Z 3190 274 2005-08-05T17:20:39Z 1 2020-02-15T06:59:44Z +11364 2005-08-02T17:53:36Z 4515 44 2005-08-03T14:16:36Z 1 2020-02-15T06:59:44Z +11365 2005-08-02T18:00:09Z 1151 508 2005-08-04T13:40:09Z 2 2020-02-15T06:59:44Z +11366 2005-08-02T18:01:25Z 3583 280 2005-08-11T15:02:25Z 1 2020-02-15T06:59:44Z +11367 2005-08-02T18:01:38Z 1440 1 2005-08-04T13:19:38Z 1 2020-02-15T06:59:44Z +11368 2005-08-02T18:03:05Z 866 153 2005-08-07T20:40:05Z 1 2020-02-15T06:59:44Z +11369 2005-08-02T18:04:41Z 2480 480 2005-08-09T18:41:41Z 1 2020-02-15T06:59:44Z +11370 2005-08-02T18:06:01Z 3077 146 2005-08-04T15:10:01Z 1 2020-02-15T06:59:44Z +11371 2005-08-02T18:07:36Z 324 561 2005-08-06T17:52:36Z 1 2020-02-15T06:59:44Z +11372 2005-08-02T18:10:50Z 796 327 2005-08-07T17:58:50Z 1 2020-02-15T06:59:44Z +11373 2005-08-02T18:14:12Z 181 267 2005-08-06T23:37:12Z 1 2020-02-15T06:59:44Z +11374 2005-08-02T18:14:54Z 2805 424 2005-08-04T18:22:54Z 1 2020-02-15T06:59:44Z +11375 2005-08-02T18:14:56Z 1064 346 2005-08-08T23:29:56Z 1 2020-02-15T06:59:44Z +11376 2005-08-02T18:16:00Z 2530 177 2005-08-11T23:38:00Z 2 2020-02-15T06:59:44Z +11377 2005-08-02T18:16:47Z 3334 119 2005-08-08T13:46:47Z 1 2020-02-15T06:59:44Z +11378 2005-08-02T18:16:52Z 3824 188 2005-08-03T14:25:52Z 1 2020-02-15T06:59:44Z +11379 2005-08-02T18:16:55Z 251 61 2005-08-07T18:12:55Z 1 2020-02-15T06:59:44Z +11380 2005-08-02T18:17:32Z 1046 551 2005-08-03T19:26:32Z 2 2020-02-15T06:59:44Z +11381 2005-08-02T18:19:29Z 993 451 2005-08-08T20:39:29Z 2 2020-02-15T06:59:44Z +11382 2005-08-02T18:20:52Z 3848 407 2005-08-07T17:06:52Z 1 2020-02-15T06:59:44Z +11383 2005-08-02T18:22:05Z 257 445 2005-08-11T17:18:05Z 1 2020-02-15T06:59:44Z +11384 2005-08-02T18:23:01Z 2840 225 2005-08-05T17:59:01Z 1 2020-02-15T06:59:44Z +11385 2005-08-02T18:23:11Z 2478 192 2005-08-06T12:37:11Z 1 2020-02-15T06:59:44Z +11386 2005-08-02T18:24:03Z 519 183 2005-08-06T21:22:03Z 1 2020-02-15T06:59:44Z +11387 2005-08-02T18:32:38Z 2491 481 2005-08-07T19:08:38Z 2 2020-02-15T06:59:44Z +11388 2005-08-02T18:35:55Z 477 369 2005-08-09T21:56:55Z 1 2020-02-15T06:59:44Z +11389 2005-08-02T18:39:12Z 3267 270 2005-08-03T23:23:12Z 2 2020-02-15T06:59:44Z +11390 2005-08-02T18:39:16Z 3135 294 2005-08-04T21:43:16Z 1 2020-02-15T06:59:44Z +11391 2005-08-02T18:40:12Z 2039 403 2005-08-10T15:55:12Z 1 2020-02-15T06:59:44Z +11392 2005-08-02T18:41:11Z 261 146 2005-08-11T21:41:11Z 1 2020-02-15T06:59:44Z +11393 2005-08-02T18:44:29Z 1033 501 2005-08-11T23:58:29Z 1 2020-02-15T06:59:44Z +11394 2005-08-02T18:44:45Z 2087 257 2005-08-06T22:51:45Z 2 2020-02-15T06:59:44Z +11395 2005-08-02T18:47:44Z 4234 225 2005-08-10T17:07:44Z 2 2020-02-15T06:59:44Z +11396 2005-08-02T18:48:29Z 1155 59 2005-08-04T16:05:29Z 2 2020-02-15T06:59:44Z +11397 2005-08-02T18:53:14Z 2566 470 2005-08-09T18:09:14Z 1 2020-02-15T06:59:44Z +11398 2005-08-02T18:55:15Z 3952 6 2005-08-10T19:50:15Z 2 2020-02-15T06:59:44Z +11399 2005-08-02T18:56:28Z 2094 565 2005-08-11T23:19:28Z 1 2020-02-15T06:59:44Z +11400 2005-08-02T19:00:52Z 3150 9 2005-08-09T19:45:52Z 2 2020-02-15T06:59:44Z +11401 2005-08-02T19:05:06Z 1799 544 2005-08-09T22:34:06Z 1 2020-02-15T06:59:44Z +11402 2005-08-02T19:07:21Z 3291 561 2005-08-07T20:59:21Z 1 2020-02-15T06:59:44Z +11403 2005-08-02T19:10:21Z 4072 587 2005-08-04T00:44:21Z 2 2020-02-15T06:59:44Z +11404 2005-08-02T19:12:40Z 3285 60 2005-08-11T22:38:40Z 2 2020-02-15T06:59:44Z +11405 2005-08-02T19:13:39Z 418 10 2005-08-07T19:19:39Z 2 2020-02-15T06:59:44Z +11406 2005-08-02T19:16:10Z 2502 525 2005-08-04T20:51:10Z 2 2020-02-15T06:59:44Z +11407 2005-08-02T19:18:43Z 3437 513 2005-08-08T16:15:43Z 2 2020-02-15T06:59:44Z +11408 2005-08-02T19:25:13Z 1779 83 2005-08-06T17:12:13Z 1 2020-02-15T06:59:44Z +11409 2005-08-02T19:26:51Z 3691 418 2005-08-07T19:55:51Z 1 2020-02-15T06:59:44Z +11410 2005-08-02T19:29:01Z 692 592 2005-08-11T16:50:01Z 1 2020-02-15T06:59:44Z +11411 2005-08-02T19:29:47Z 1497 141 2005-08-09T16:27:47Z 2 2020-02-15T06:59:44Z +11412 2005-08-02T19:32:51Z 2271 141 2005-08-11T22:16:51Z 1 2020-02-15T06:59:44Z +11413 2005-08-02T19:35:19Z 1115 297 2005-08-05T21:33:19Z 2 2020-02-15T06:59:44Z +11414 2005-08-02T19:43:07Z 1772 353 2005-08-07T15:22:07Z 2 2020-02-15T06:59:44Z +11415 2005-08-02T19:43:38Z 2197 572 2005-08-10T15:13:38Z 1 2020-02-15T06:59:44Z +11416 2005-08-02T19:44:04Z 1848 58 2005-08-11T15:30:04Z 1 2020-02-15T06:59:44Z +11417 2005-08-02T19:44:46Z 3083 437 2005-08-11T21:43:46Z 2 2020-02-15T06:59:44Z +11418 2005-08-02T19:45:33Z 4490 91 2005-08-06T17:40:33Z 1 2020-02-15T06:59:44Z +11419 2005-08-02T19:46:38Z 514 444 2005-08-11T14:49:38Z 1 2020-02-15T06:59:44Z +11420 2005-08-02T19:47:56Z 3928 158 2005-08-05T21:48:56Z 2 2020-02-15T06:59:44Z +11421 2005-08-02T19:51:53Z 3361 473 2005-08-12T00:50:53Z 2 2020-02-15T06:59:44Z +11422 2005-08-02T19:52:08Z 342 72 2005-08-11T18:40:08Z 2 2020-02-15T06:59:44Z +11423 2005-08-02T19:57:13Z 3431 241 2005-08-06T00:54:13Z 2 2020-02-15T06:59:44Z +11424 2005-08-02T19:57:42Z 1030 84 2005-08-10T16:57:42Z 2 2020-02-15T06:59:44Z +11425 2005-08-02T19:58:48Z 989 419 2005-08-03T19:30:48Z 2 2020-02-15T06:59:44Z +11426 2005-08-02T20:00:09Z 130 572 2005-08-09T01:30:09Z 2 2020-02-15T06:59:44Z +11427 2005-08-02T20:02:39Z 3287 403 2005-08-04T22:26:39Z 2 2020-02-15T06:59:44Z +11428 2005-08-02T20:03:10Z 722 326 2005-08-04T01:55:10Z 1 2020-02-15T06:59:44Z +11429 2005-08-02T20:03:52Z 1098 348 2005-08-10T16:38:52Z 2 2020-02-15T06:59:44Z +11430 2005-08-02T20:04:36Z 2258 140 2005-08-08T19:43:36Z 1 2020-02-15T06:59:44Z +11431 2005-08-02T20:05:16Z 1409 271 2005-08-04T00:05:16Z 2 2020-02-15T06:59:44Z +11432 2005-08-02T20:10:01Z 959 540 2005-08-07T01:28:01Z 1 2020-02-15T06:59:44Z +11433 2005-08-02T20:13:10Z 1 518 2005-08-11T21:35:10Z 1 2020-02-15T06:59:44Z +11434 2005-08-02T20:13:14Z 3154 391 2005-08-05T15:01:14Z 1 2020-02-15T06:59:44Z +11435 2005-08-02T20:14:23Z 1625 502 2005-08-05T20:40:23Z 1 2020-02-15T06:59:44Z +11436 2005-08-02T20:16:06Z 3834 106 2005-08-05T20:40:06Z 2 2020-02-15T06:59:44Z +11437 2005-08-02T20:20:06Z 2679 225 2005-08-05T22:17:06Z 2 2020-02-15T06:59:44Z +11438 2005-08-02T20:21:08Z 1040 372 2005-08-10T22:12:08Z 1 2020-02-15T06:59:44Z +11439 2005-08-02T20:22:45Z 2897 18 2005-08-04T18:30:45Z 1 2020-02-15T06:59:44Z +11440 2005-08-02T20:24:02Z 2727 306 2005-08-07T16:42:02Z 2 2020-02-15T06:59:44Z +11441 2005-08-02T20:25:41Z 1027 389 2005-08-05T00:05:41Z 2 2020-02-15T06:59:44Z +11442 2005-08-02T20:26:19Z 2598 208 2005-08-07T00:33:19Z 2 2020-02-15T06:59:44Z +11443 2005-08-02T20:29:30Z 1291 581 2005-08-07T01:08:30Z 2 2020-02-15T06:59:44Z +11444 2005-08-02T20:32:55Z 1419 28 2005-08-08T23:21:55Z 2 2020-02-15T06:59:44Z +11445 2005-08-02T20:33:35Z 3340 108 2005-08-08T16:02:35Z 2 2020-02-15T06:59:44Z +11446 2005-08-02T20:33:37Z 748 342 2005-08-03T18:22:37Z 1 2020-02-15T06:59:44Z +11447 2005-08-02T20:36:25Z 3868 508 2005-08-07T18:52:25Z 1 2020-02-15T06:59:44Z +11448 2005-08-02T20:44:33Z 1185 496 2005-08-05T22:58:33Z 2 2020-02-15T06:59:44Z +11449 2005-08-02T20:44:43Z 3279 443 2005-08-07T23:47:43Z 2 2020-02-15T06:59:44Z +11450 2005-08-02T20:45:54Z 2009 214 2005-08-08T17:17:54Z 2 2020-02-15T06:59:44Z +11451 2005-08-02T20:45:56Z 776 515 2005-08-06T21:42:56Z 2 2020-02-15T06:59:44Z +11452 2005-08-02T20:59:52Z 1245 35 2005-08-12T01:16:52Z 1 2020-02-15T06:59:44Z +11453 2005-08-02T21:00:05Z 4578 84 2005-08-08T22:03:05Z 2 2020-02-15T06:59:44Z +11454 2005-08-02T21:04:39Z 2901 199 2005-08-05T19:03:39Z 1 2020-02-15T06:59:44Z +11455 2005-08-02T21:07:06Z 2000 498 2005-08-12T01:21:06Z 1 2020-02-15T06:59:44Z +11456 2005-08-02T21:14:04Z 3638 322 2005-08-07T19:49:04Z 2 2020-02-15T06:59:44Z +11457 2005-08-02T21:14:16Z 1642 379 2005-08-10T02:39:16Z 2 2020-02-15T06:59:44Z +11458 2005-08-02T21:24:02Z 3514 575 2005-08-04T01:32:02Z 2 2020-02-15T06:59:44Z +11459 2005-08-02T21:25:25Z 3730 392 2005-08-04T19:57:25Z 2 2020-02-15T06:59:44Z +11460 2005-08-02T21:28:03Z 4113 403 2005-08-08T18:24:03Z 1 2020-02-15T06:59:44Z +11461 2005-08-02T21:35:00Z 4343 65 2005-08-05T01:34:00Z 1 2020-02-15T06:59:44Z +11462 2005-08-02T21:36:46Z 167 268 2005-08-10T01:48:46Z 1 2020-02-15T06:59:44Z +11463 2005-08-02T21:37:36Z 1944 138 2005-08-08T03:11:36Z 2 2020-02-15T06:59:44Z +11464 2005-08-02T21:42:07Z 538 577 2005-08-03T21:44:07Z 2 2020-02-15T06:59:44Z +11465 2005-08-02T21:43:52Z 2190 447 2005-08-10T22:24:52Z 1 2020-02-15T06:59:44Z +11466 2005-08-02T21:46:46Z 3363 556 2005-08-06T01:42:46Z 1 2020-02-15T06:59:44Z +11467 2005-08-02T21:47:07Z 246 117 2005-08-09T00:50:07Z 1 2020-02-15T06:59:44Z +11468 2005-08-02T21:47:26Z 3168 413 2005-08-05T02:30:26Z 2 2020-02-15T06:59:44Z +11469 2005-08-02T21:48:09Z 230 77 2005-08-06T18:37:09Z 1 2020-02-15T06:59:44Z +11470 2005-08-02T21:48:28Z 2379 346 2005-08-05T23:58:28Z 2 2020-02-15T06:59:44Z +11471 2005-08-02T21:49:03Z 3378 355 2005-08-08T00:17:03Z 1 2020-02-15T06:59:44Z +11472 2005-08-02T21:49:06Z 1829 410 2005-08-11T20:17:06Z 1 2020-02-15T06:59:44Z +11473 2005-08-02T21:52:03Z 620 536 2005-08-09T02:01:03Z 1 2020-02-15T06:59:44Z +11474 2005-08-02T21:53:08Z 574 214 2005-08-05T22:36:08Z 1 2020-02-15T06:59:44Z +11475 2005-08-02T21:55:09Z 3687 194 2005-08-09T20:28:09Z 2 2020-02-15T06:59:44Z +11476 2005-08-02T22:03:47Z 724 144 2005-08-09T02:19:47Z 1 2020-02-15T06:59:44Z +11477 2005-08-02T22:09:01Z 1671 47 2005-08-07T03:46:01Z 2 2020-02-15T06:59:44Z +11478 2005-08-02T22:09:05Z 3932 197 2005-08-04T18:02:05Z 1 2020-02-15T06:59:44Z +11479 2005-08-02T22:18:13Z 4077 237 2005-08-12T00:43:13Z 1 2020-02-15T06:59:44Z +11480 2005-08-02T22:18:24Z 4161 14 2005-08-04T21:22:24Z 2 2020-02-15T06:59:44Z +11481 2005-08-02T22:18:41Z 4028 234 2005-08-09T23:43:41Z 2 2020-02-15T06:59:44Z +11482 2005-08-02T22:24:31Z 1400 134 2005-08-04T01:48:31Z 1 2020-02-15T06:59:44Z +11483 2005-08-02T22:28:22Z 1586 45 2005-08-11T18:06:22Z 1 2020-02-15T06:59:44Z +11484 2005-08-02T22:28:23Z 330 165 2005-08-04T20:51:23Z 2 2020-02-15T06:59:44Z +11485 2005-08-02T22:33:25Z 1872 326 2005-08-04T23:26:25Z 2 2020-02-15T06:59:44Z +11486 2005-08-02T22:34:06Z 1610 236 2005-08-09T00:46:06Z 2 2020-02-15T06:59:44Z +11487 2005-08-02T22:35:05Z 734 239 2005-08-08T00:54:05Z 2 2020-02-15T06:59:44Z +11488 2005-08-02T22:35:15Z 2520 45 2005-08-09T00:28:15Z 2 2020-02-15T06:59:44Z +11489 2005-08-02T22:35:28Z 3001 474 2005-08-04T00:29:28Z 2 2020-02-15T06:59:44Z +11490 2005-08-02T22:36:00Z 1178 156 2005-08-09T16:36:00Z 1 2020-02-15T06:59:44Z +11491 2005-08-02T22:44:50Z 268 307 2005-08-11T01:55:50Z 2 2020-02-15T06:59:44Z +11492 2005-08-02T22:46:47Z 4037 349 2005-08-09T19:54:47Z 2 2020-02-15T06:59:44Z +11493 2005-08-02T22:47:00Z 3375 124 2005-08-10T20:53:00Z 2 2020-02-15T06:59:44Z +11494 2005-08-02T22:51:23Z 3994 579 2005-08-09T01:52:23Z 1 2020-02-15T06:59:44Z +11495 2005-08-16T22:51:20Z 1265 247 2005-08-23T00:44:20Z 1 2020-02-15T06:59:44Z +11496 2006-02-14T15:16:03Z 2047 155 1 2020-02-15T06:59:44Z +11497 2005-08-16T22:52:30Z 436 12 2005-08-21T19:52:30Z 1 2020-02-15T06:59:44Z +11498 2005-08-16T22:52:54Z 487 482 2005-08-25T03:27:54Z 2 2020-02-15T06:59:44Z +11499 2005-08-16T22:54:12Z 3857 172 2005-08-24T03:37:12Z 2 2020-02-15T06:59:44Z +11500 2005-08-16T23:01:22Z 4003 584 2005-08-24T22:54:22Z 1 2020-02-15T06:59:44Z +11501 2005-08-16T23:04:53Z 2147 23 2005-08-19T20:57:53Z 2 2020-02-15T06:59:44Z +11502 2005-08-16T23:06:30Z 4470 11 2005-08-19T03:49:30Z 1 2020-02-15T06:59:44Z +11503 2005-08-16T23:10:34Z 1496 526 2005-08-25T03:55:34Z 1 2020-02-15T06:59:44Z +11504 2005-08-16T23:16:46Z 2132 350 2005-08-18T20:49:46Z 2 2020-02-15T06:59:44Z +11505 2005-08-16T23:18:47Z 3344 34 2005-08-23T19:52:47Z 2 2020-02-15T06:59:44Z +11506 2005-08-16T23:25:48Z 1529 565 2005-08-22T18:17:48Z 1 2020-02-15T06:59:44Z +11507 2005-08-16T23:26:43Z 4197 236 2005-08-24T22:48:43Z 2 2020-02-15T06:59:44Z +11508 2005-08-16T23:27:36Z 2688 19 2005-08-25T01:34:36Z 2 2020-02-15T06:59:44Z +11509 2005-08-16T23:29:53Z 2750 273 2005-08-19T02:09:53Z 1 2020-02-15T06:59:44Z +11510 2005-08-16T23:30:07Z 2997 400 2005-08-25T17:35:07Z 1 2020-02-15T06:59:44Z +11511 2005-08-16T23:39:59Z 2127 397 2005-08-18T18:04:59Z 1 2020-02-15T06:59:44Z +11512 2005-08-16T23:51:06Z 1248 373 2005-08-26T02:06:06Z 2 2020-02-15T06:59:44Z +11513 2005-08-16T23:51:33Z 4473 499 2005-08-24T01:37:33Z 2 2020-02-15T06:59:44Z +11514 2005-08-16T23:53:10Z 4240 423 2005-08-23T22:04:10Z 1 2020-02-15T06:59:44Z +11515 2005-08-16T23:54:34Z 1053 279 2005-08-21T19:00:34Z 1 2020-02-15T06:59:44Z +11516 2005-08-16T23:54:47Z 1860 90 2005-08-17T20:05:47Z 1 2020-02-15T06:59:44Z +11517 2005-08-16T23:56:28Z 4266 280 2005-08-21T22:40:28Z 1 2020-02-15T06:59:44Z +11518 2005-08-16T23:59:49Z 3297 407 2005-08-17T22:51:49Z 2 2020-02-15T06:59:44Z +11519 2005-08-17T00:01:27Z 1034 381 2005-08-19T04:54:27Z 2 2020-02-15T06:59:44Z +11520 2005-08-17T00:04:28Z 3536 119 2005-08-26T02:03:28Z 1 2020-02-15T06:59:44Z +11521 2005-08-17T00:04:54Z 463 229 2005-08-21T00:57:54Z 1 2020-02-15T06:59:44Z +11522 2005-08-17T00:05:05Z 2033 599 2005-08-24T04:56:05Z 1 2020-02-15T06:59:44Z +11523 2005-08-17T00:10:10Z 1329 421 2005-08-24T22:39:10Z 1 2020-02-15T06:59:44Z +11524 2005-08-17T00:10:55Z 317 533 2005-08-23T05:30:55Z 1 2020-02-15T06:59:44Z +11525 2005-08-17T00:15:31Z 1107 174 2005-08-20T21:14:31Z 1 2020-02-15T06:59:44Z +11526 2005-08-17T00:17:38Z 2419 572 2005-08-18T03:59:38Z 2 2020-02-15T06:59:44Z +11527 2005-08-17T00:25:06Z 162 264 2005-08-22T21:13:06Z 1 2020-02-15T06:59:44Z +11528 2005-08-17T00:27:23Z 893 14 2005-08-22T06:12:23Z 2 2020-02-15T06:59:44Z +11529 2005-08-17T00:28:01Z 3071 4 2005-08-19T04:47:01Z 2 2020-02-15T06:59:44Z +11530 2005-08-17T00:29:00Z 365 400 2005-08-22T03:22:00Z 1 2020-02-15T06:59:44Z +11531 2005-08-17T00:30:04Z 1817 278 2005-08-20T01:12:04Z 2 2020-02-15T06:59:44Z +11532 2005-08-17T00:34:14Z 1947 413 2005-08-22T19:37:14Z 2 2020-02-15T06:59:44Z +11533 2005-08-17T00:34:53Z 4252 264 2005-08-22T06:10:53Z 1 2020-02-15T06:59:44Z +11534 2005-08-17T00:35:27Z 2414 144 2005-08-24T01:36:27Z 1 2020-02-15T06:59:44Z +11535 2005-08-17T00:39:54Z 1649 356 2005-08-24T20:46:54Z 2 2020-02-15T06:59:44Z +11536 2005-08-17T00:40:03Z 2735 428 2005-08-21T19:11:03Z 1 2020-02-15T06:59:44Z +11537 2005-08-17T00:41:08Z 190 474 2005-08-19T00:25:08Z 2 2020-02-15T06:59:44Z +11538 2005-08-17T00:44:04Z 554 431 2005-08-18T03:43:04Z 2 2020-02-15T06:59:44Z +11539 2005-08-17T00:45:41Z 2064 264 2005-08-19T06:03:41Z 1 2020-02-15T06:59:44Z +11540 2005-08-17T00:48:03Z 3385 370 2005-08-25T03:46:03Z 1 2020-02-15T06:59:44Z +11541 2006-02-14T15:16:03Z 2026 335 1 2020-02-15T06:59:44Z +11542 2005-08-17T00:51:32Z 2155 7 2005-08-24T20:29:32Z 2 2020-02-15T06:59:44Z +11543 2005-08-17T00:54:28Z 2860 238 2005-08-25T04:31:28Z 2 2020-02-15T06:59:44Z +11544 2005-08-17T00:55:07Z 836 439 2005-08-22T19:25:07Z 1 2020-02-15T06:59:44Z +11545 2005-08-17T00:56:06Z 3198 257 2005-08-25T22:47:06Z 1 2020-02-15T06:59:44Z +11546 2005-08-17T00:57:36Z 2522 24 2005-08-18T23:16:36Z 1 2020-02-15T06:59:44Z +11547 2005-08-17T00:59:24Z 737 114 2005-08-20T04:03:24Z 2 2020-02-15T06:59:44Z +11548 2005-08-17T00:59:47Z 480 323 2005-08-22T05:09:47Z 1 2020-02-15T06:59:44Z +11549 2005-08-17T01:01:48Z 945 402 2005-08-19T21:24:48Z 2 2020-02-15T06:59:44Z +11550 2005-08-17T01:02:06Z 2972 339 2005-08-22T21:44:06Z 1 2020-02-15T06:59:44Z +11551 2005-08-17T01:03:49Z 3356 168 2005-08-18T22:31:49Z 1 2020-02-15T06:59:44Z +11552 2005-08-17T01:04:29Z 1143 230 2005-08-23T23:07:29Z 1 2020-02-15T06:59:44Z +11553 2005-08-17T01:04:31Z 3317 360 2005-08-24T00:44:31Z 1 2020-02-15T06:59:44Z +11554 2005-08-17T01:05:17Z 2212 460 2005-08-20T06:20:17Z 2 2020-02-15T06:59:44Z +11555 2005-08-17T01:08:59Z 2569 372 2005-08-18T06:09:59Z 2 2020-02-15T06:59:44Z +11556 2005-08-17T01:11:53Z 373 9 2005-08-18T23:41:53Z 1 2020-02-15T06:59:44Z +11557 2005-08-17T01:19:20Z 2376 416 2005-08-24T02:25:20Z 1 2020-02-15T06:59:44Z +11558 2005-08-17T01:19:52Z 1681 403 2005-08-19T00:47:52Z 2 2020-02-15T06:59:44Z +11559 2005-08-17T01:20:26Z 1812 385 2005-08-24T03:11:26Z 1 2020-02-15T06:59:44Z +11560 2005-08-17T01:20:30Z 2316 320 2005-08-18T04:29:30Z 2 2020-02-15T06:59:44Z +11561 2005-08-17T01:23:09Z 189 149 2005-08-23T21:02:09Z 2 2020-02-15T06:59:44Z +11562 2005-08-17T01:23:39Z 2992 424 2005-08-26T06:16:39Z 1 2020-02-15T06:59:44Z +11563 2006-02-14T15:16:03Z 1545 83 1 2020-02-15T06:59:44Z +11564 2005-08-17T01:27:49Z 2237 332 2005-08-19T22:07:49Z 1 2020-02-15T06:59:44Z +11565 2005-08-17T01:28:05Z 173 83 2005-08-23T23:33:05Z 2 2020-02-15T06:59:44Z +11566 2005-08-17T01:28:35Z 4020 520 2005-08-20T22:42:35Z 1 2020-02-15T06:59:44Z +11567 2005-08-17T01:28:43Z 567 558 2005-08-24T20:20:43Z 2 2020-02-15T06:59:44Z +11568 2005-08-17T01:30:01Z 183 342 2005-08-18T22:21:01Z 2 2020-02-15T06:59:44Z +11569 2005-08-17T01:31:04Z 2592 504 2005-08-24T03:36:04Z 2 2020-02-15T06:59:44Z +11570 2005-08-17T01:34:32Z 2466 343 2005-08-24T05:47:32Z 1 2020-02-15T06:59:44Z +11571 2005-08-17T01:37:51Z 203 296 2005-08-17T20:30:51Z 1 2020-02-15T06:59:44Z +11572 2005-08-17T01:37:55Z 3512 515 2005-08-19T06:22:55Z 2 2020-02-15T06:59:44Z +11573 2005-08-17T01:38:18Z 639 146 2005-08-19T05:06:18Z 2 2020-02-15T06:59:44Z +11574 2005-08-17T01:38:19Z 3596 277 2005-08-18T20:30:19Z 2 2020-02-15T06:59:44Z +11575 2005-08-17T01:50:26Z 1725 319 2005-08-18T00:43:26Z 1 2020-02-15T06:59:44Z +11576 2005-08-17T01:53:20Z 327 293 2005-08-19T00:15:20Z 1 2020-02-15T06:59:44Z +11577 2006-02-14T15:16:03Z 4106 219 2 2020-02-15T06:59:44Z +11578 2005-08-17T01:54:13Z 192 590 2005-08-26T02:00:13Z 2 2020-02-15T06:59:44Z +11579 2005-08-17T01:57:49Z 4256 356 2005-08-22T02:42:49Z 1 2020-02-15T06:59:44Z +11580 2005-08-17T01:59:07Z 1346 436 2005-08-21T06:18:07Z 2 2020-02-15T06:59:44Z +11581 2005-08-17T02:03:02Z 1249 231 2005-08-24T03:53:02Z 2 2020-02-15T06:59:44Z +11582 2005-08-17T02:03:49Z 2115 339 2005-08-24T03:29:49Z 1 2020-02-15T06:59:44Z +11583 2005-08-17T02:08:13Z 133 542 2005-08-20T23:13:13Z 2 2020-02-15T06:59:44Z +11584 2005-08-17T02:13:26Z 3906 479 2005-08-22T01:24:26Z 2 2020-02-15T06:59:44Z +11585 2005-08-17T02:14:36Z 753 297 2005-08-20T07:37:36Z 2 2020-02-15T06:59:44Z +11586 2005-08-17T02:20:42Z 3140 465 2005-08-26T05:01:42Z 1 2020-02-15T06:59:44Z +11587 2005-08-17T02:21:03Z 1319 156 2005-08-25T21:02:03Z 2 2020-02-15T06:59:44Z +11588 2005-08-17T02:26:23Z 2480 565 2005-08-22T02:32:23Z 1 2020-02-15T06:59:44Z +11589 2005-08-17T02:28:22Z 3480 554 2005-08-25T00:08:22Z 1 2020-02-15T06:59:44Z +11590 2005-08-17T02:28:33Z 3600 491 2005-08-20T03:13:33Z 1 2020-02-15T06:59:44Z +11591 2005-08-17T02:29:41Z 1670 6 2005-08-23T20:47:41Z 1 2020-02-15T06:59:44Z +11592 2005-08-17T02:36:04Z 720 383 2005-08-19T00:31:04Z 1 2020-02-15T06:59:44Z +11593 2006-02-14T15:16:03Z 817 99 1 2020-02-15T06:59:44Z +11594 2005-08-17T02:47:02Z 319 198 2005-08-22T05:14:02Z 2 2020-02-15T06:59:44Z +11595 2005-08-17T02:53:14Z 466 350 2005-08-26T02:05:14Z 1 2020-02-15T06:59:44Z +11596 2005-08-17T02:53:55Z 1674 290 2005-08-26T02:19:55Z 1 2020-02-15T06:59:44Z +11597 2005-08-17T03:02:56Z 4073 272 2005-08-26T04:47:56Z 1 2020-02-15T06:59:44Z +11598 2005-08-17T03:03:07Z 1949 319 2005-08-22T21:05:07Z 2 2020-02-15T06:59:44Z +11599 2005-08-17T03:08:10Z 3749 112 2005-08-25T05:01:10Z 2 2020-02-15T06:59:44Z +11600 2005-08-17T03:12:04Z 1978 400 2005-08-23T07:10:04Z 1 2020-02-15T06:59:44Z +11601 2005-08-17T03:14:47Z 1098 471 2005-08-20T00:21:47Z 2 2020-02-15T06:59:44Z +11602 2005-08-17T03:21:19Z 2082 391 2005-08-19T05:23:19Z 1 2020-02-15T06:59:44Z +11603 2005-08-17T03:22:10Z 3910 406 2005-08-18T06:48:10Z 1 2020-02-15T06:59:44Z +11604 2005-08-17T03:28:27Z 1820 388 2005-08-19T05:38:27Z 2 2020-02-15T06:59:44Z +11605 2005-08-17T03:30:57Z 1292 455 2005-08-24T07:02:57Z 2 2020-02-15T06:59:44Z +11606 2005-08-17T03:32:43Z 4138 499 2005-08-18T04:30:43Z 1 2020-02-15T06:59:44Z +11607 2005-08-17T03:36:06Z 4345 242 2005-08-20T01:06:06Z 1 2020-02-15T06:59:44Z +11608 2005-08-17T03:36:52Z 1673 448 2005-08-25T07:17:52Z 2 2020-02-15T06:59:44Z +11609 2005-08-17T03:41:11Z 351 73 2005-08-25T01:30:11Z 2 2020-02-15T06:59:44Z +11610 2005-08-17T03:43:37Z 3048 275 2005-08-20T22:14:37Z 1 2020-02-15T06:59:44Z +11611 2006-02-14T15:16:03Z 1857 192 2 2020-02-15T06:59:44Z +11612 2005-08-17T03:48:51Z 375 526 2005-08-20T03:03:51Z 1 2020-02-15T06:59:44Z +11613 2005-08-17T03:50:33Z 2486 126 2005-08-25T00:37:33Z 2 2020-02-15T06:59:44Z +11614 2005-08-17T03:52:18Z 805 2 2005-08-20T07:04:18Z 1 2020-02-15T06:59:44Z +11615 2005-08-17T03:54:35Z 4331 436 2005-08-23T06:54:35Z 2 2020-02-15T06:59:44Z +11616 2005-08-17T04:00:01Z 2588 36 2005-08-20T23:03:01Z 2 2020-02-15T06:59:44Z +11617 2005-08-17T04:00:40Z 1898 324 2005-08-18T00:36:40Z 1 2020-02-15T06:59:44Z +11618 2005-08-17T04:01:36Z 954 175 2005-08-23T01:02:36Z 1 2020-02-15T06:59:44Z +11619 2005-08-17T04:03:26Z 3652 374 2005-08-22T03:07:26Z 1 2020-02-15T06:59:44Z +11620 2005-08-17T04:06:22Z 3801 502 2005-08-17T23:53:22Z 1 2020-02-15T06:59:44Z +11621 2005-08-17T04:13:45Z 3708 216 2005-08-26T01:00:45Z 1 2020-02-15T06:59:44Z +11622 2005-08-17T04:15:46Z 499 220 2005-08-24T04:48:46Z 1 2020-02-15T06:59:44Z +11623 2005-08-17T04:15:47Z 759 163 2005-08-19T04:11:47Z 2 2020-02-15T06:59:44Z +11624 2005-08-17T04:17:42Z 606 527 2005-08-18T02:46:42Z 1 2020-02-15T06:59:44Z +11625 2005-08-17T04:18:52Z 712 521 2005-08-25T03:05:52Z 2 2020-02-15T06:59:44Z +11626 2005-08-17T04:25:42Z 4279 266 2005-08-23T05:46:42Z 1 2020-02-15T06:59:44Z +11627 2005-08-17T04:25:47Z 3945 168 2005-08-26T02:54:47Z 2 2020-02-15T06:59:44Z +11628 2005-08-17T04:27:18Z 3656 256 2005-08-25T01:12:18Z 2 2020-02-15T06:59:44Z +11629 2005-08-17T04:27:24Z 786 299 2005-08-26T10:25:24Z 2 2020-02-15T06:59:44Z +11630 2005-08-17T04:27:46Z 688 72 2005-08-19T09:58:46Z 2 2020-02-15T06:59:44Z +11631 2005-08-17T04:28:56Z 59 168 2005-08-24T00:42:56Z 2 2020-02-15T06:59:44Z +11632 2005-08-17T04:29:32Z 2551 238 2005-08-22T03:44:32Z 1 2020-02-15T06:59:44Z +11633 2005-08-17T04:30:09Z 1706 468 2005-08-20T06:56:09Z 1 2020-02-15T06:59:44Z +11634 2005-08-17T04:31:49Z 2576 206 2005-08-21T02:51:49Z 1 2020-02-15T06:59:44Z +11635 2005-08-17T04:33:17Z 2642 98 2005-08-21T07:50:17Z 2 2020-02-15T06:59:44Z +11636 2005-08-17T04:36:31Z 791 276 2005-08-24T00:03:31Z 2 2020-02-15T06:59:44Z +11637 2005-08-17T04:36:39Z 479 283 2005-08-18T02:17:39Z 1 2020-02-15T06:59:44Z +11638 2005-08-17T04:39:09Z 3421 152 2005-08-25T06:42:09Z 2 2020-02-15T06:59:44Z +11639 2005-08-17T04:43:29Z 3985 462 2005-08-25T01:04:29Z 2 2020-02-15T06:59:44Z +11640 2005-08-17T04:44:33Z 1718 501 2005-08-21T09:29:33Z 2 2020-02-15T06:59:44Z +11641 2005-08-17T04:45:39Z 2717 79 2005-08-20T10:38:39Z 1 2020-02-15T06:59:44Z +11642 2005-08-17T04:48:05Z 3790 25 2005-08-18T01:53:05Z 2 2020-02-15T06:59:44Z +11643 2005-08-17T04:49:35Z 1378 197 2005-08-24T07:05:35Z 1 2020-02-15T06:59:44Z +11644 2005-08-17T04:49:46Z 1760 438 2005-08-24T08:49:46Z 1 2020-02-15T06:59:44Z +11645 2005-08-17T04:50:56Z 4261 35 2005-08-25T23:03:56Z 1 2020-02-15T06:59:44Z +11646 2006-02-14T15:16:03Z 478 11 2 2020-02-15T06:59:44Z +11647 2005-08-17T04:54:14Z 3016 110 2005-08-23T04:16:14Z 2 2020-02-15T06:59:44Z +11648 2005-08-17T04:56:16Z 3362 465 2005-08-26T00:53:16Z 2 2020-02-15T06:59:44Z +11649 2005-08-17T04:59:26Z 3222 217 2005-08-20T04:02:26Z 2 2020-02-15T06:59:44Z +11650 2005-08-17T05:00:03Z 3979 418 2005-08-22T01:45:03Z 2 2020-02-15T06:59:44Z +11651 2005-08-17T05:02:25Z 3681 143 2005-08-24T08:15:25Z 2 2020-02-15T06:59:44Z +11652 2006-02-14T15:16:03Z 1622 597 2 2020-02-15T06:59:44Z +11653 2005-08-17T05:06:10Z 4475 358 2005-08-24T03:09:10Z 2 2020-02-15T06:59:44Z +11654 2005-08-17T05:06:19Z 1048 218 2005-08-18T04:32:19Z 2 2020-02-15T06:59:44Z +11655 2005-08-17T05:11:07Z 1699 113 2005-08-26T10:18:07Z 1 2020-02-15T06:59:44Z +11656 2005-08-17T05:11:09Z 1451 56 2005-08-25T07:51:09Z 1 2020-02-15T06:59:44Z +11657 2006-02-14T15:16:03Z 3043 53 2 2020-02-15T06:59:44Z +11658 2005-08-17T05:19:17Z 2008 422 2005-08-24T07:03:17Z 2 2020-02-15T06:59:44Z +11659 2005-08-17T05:20:45Z 2881 112 2005-08-22T10:18:45Z 1 2020-02-15T06:59:44Z +11660 2005-08-17T05:22:42Z 4081 525 2005-08-23T01:03:42Z 1 2020-02-15T06:59:44Z +11661 2005-08-17T05:25:57Z 1008 27 2005-08-25T04:37:57Z 1 2020-02-15T06:59:44Z +11662 2005-08-17T05:27:37Z 2730 177 2005-08-26T09:56:37Z 2 2020-02-15T06:59:44Z +11663 2005-08-17T05:30:19Z 3798 373 2005-08-25T08:14:19Z 1 2020-02-15T06:59:44Z +11664 2005-08-17T05:35:52Z 1343 433 2005-08-18T02:40:52Z 1 2020-02-15T06:59:44Z +11665 2005-08-17T05:36:57Z 334 254 2005-08-23T01:38:57Z 1 2020-02-15T06:59:44Z +11666 2005-08-17T05:45:10Z 250 531 2005-08-19T06:47:10Z 2 2020-02-15T06:59:44Z +11667 2005-08-17T05:46:55Z 1516 582 2005-08-26T08:19:55Z 1 2020-02-15T06:59:44Z +11668 2005-08-17T05:47:32Z 2162 249 2005-08-20T03:11:32Z 1 2020-02-15T06:59:44Z +11669 2005-08-17T05:48:51Z 3224 487 2005-08-22T01:22:51Z 1 2020-02-15T06:59:44Z +11670 2005-08-17T05:48:59Z 4437 286 2005-08-19T08:51:59Z 1 2020-02-15T06:59:44Z +11671 2005-08-17T05:50:21Z 3569 338 2005-08-20T03:43:21Z 1 2020-02-15T06:59:44Z +11672 2006-02-14T15:16:03Z 3947 521 2 2020-02-15T06:59:44Z +11673 2005-08-17T05:54:15Z 823 303 2005-08-21T08:12:15Z 2 2020-02-15T06:59:44Z +11674 2005-08-17T05:56:27Z 582 306 2005-08-24T08:50:27Z 2 2020-02-15T06:59:44Z +11675 2005-08-17T05:57:54Z 1322 514 2005-08-21T23:57:54Z 1 2020-02-15T06:59:44Z +11676 2006-02-14T15:16:03Z 4496 216 2 2020-02-15T06:59:44Z +11677 2005-08-17T06:06:26Z 2206 407 2005-08-20T04:35:26Z 2 2020-02-15T06:59:44Z +11678 2005-08-17T06:07:39Z 3511 176 2005-08-21T10:51:39Z 2 2020-02-15T06:59:44Z +11679 2005-08-17T06:08:54Z 3337 72 2005-08-21T07:50:54Z 1 2020-02-15T06:59:44Z +11680 2005-08-17T06:12:27Z 4538 221 2005-08-23T08:54:27Z 1 2020-02-15T06:59:44Z +11681 2005-08-17T06:13:30Z 1260 543 2005-08-26T01:29:30Z 2 2020-02-15T06:59:44Z +11682 2005-08-17T06:13:40Z 2544 387 2005-08-18T06:11:40Z 1 2020-02-15T06:59:44Z +11683 2005-08-17T06:15:17Z 2603 66 2005-08-26T05:33:17Z 1 2020-02-15T06:59:44Z +11684 2005-08-17T06:27:15Z 4277 517 2005-08-22T02:11:15Z 2 2020-02-15T06:59:44Z +11685 2005-08-17T06:39:16Z 3552 51 2005-08-22T04:20:16Z 2 2020-02-15T06:59:44Z +11686 2005-08-17T06:39:30Z 1393 392 2005-08-21T10:19:30Z 2 2020-02-15T06:59:44Z +11687 2005-08-17T06:39:59Z 1977 169 2005-08-23T04:53:59Z 1 2020-02-15T06:59:44Z +11688 2005-08-17T06:41:58Z 2229 82 2005-08-25T04:38:58Z 1 2020-02-15T06:59:44Z +11689 2005-08-17T06:42:08Z 2390 419 2005-08-26T06:09:08Z 1 2020-02-15T06:59:44Z +11690 2005-08-17T06:44:22Z 3934 267 2005-08-24T03:49:22Z 1 2020-02-15T06:59:44Z +11691 2005-08-17T06:51:05Z 2529 515 2005-08-24T09:53:05Z 1 2020-02-15T06:59:44Z +11692 2005-08-17T06:52:41Z 1222 350 2005-08-24T12:17:41Z 2 2020-02-15T06:59:44Z +11693 2005-08-17T06:56:56Z 793 221 2005-08-24T06:20:56Z 2 2020-02-15T06:59:44Z +11694 2005-08-17T06:57:30Z 3540 410 2005-08-24T07:52:30Z 1 2020-02-15T06:59:44Z +11695 2005-08-17T07:01:08Z 1110 386 2005-08-21T09:21:08Z 1 2020-02-15T06:59:44Z +11696 2005-08-17T07:01:09Z 3816 522 2005-08-21T09:12:09Z 2 2020-02-15T06:59:44Z +11697 2005-08-17T07:09:19Z 383 329 2005-08-19T02:02:19Z 1 2020-02-15T06:59:44Z +11698 2005-08-17T07:09:59Z 3946 353 2005-08-19T04:31:59Z 1 2020-02-15T06:59:44Z +11699 2005-08-17T07:11:58Z 3997 339 2005-08-26T12:08:58Z 1 2020-02-15T06:59:44Z +11700 2005-08-17T07:12:31Z 2365 104 2005-08-18T04:21:31Z 2 2020-02-15T06:59:44Z +11701 2005-08-17T07:15:47Z 993 34 2005-08-19T01:44:47Z 2 2020-02-15T06:59:44Z +11702 2005-08-17T07:18:56Z 3286 526 2005-08-24T06:33:56Z 1 2020-02-15T06:59:44Z +11703 2005-08-17T07:19:29Z 1692 279 2005-08-20T09:35:29Z 2 2020-02-15T06:59:44Z +11704 2005-08-17T07:21:22Z 1099 135 2005-08-25T06:06:22Z 1 2020-02-15T06:59:44Z +11705 2005-08-17T07:22:25Z 4242 489 2005-08-18T06:42:25Z 1 2020-02-15T06:59:44Z +11706 2005-08-17T07:23:46Z 4234 414 2005-08-18T10:13:46Z 2 2020-02-15T06:59:44Z +11707 2005-08-17T07:24:59Z 1030 581 2005-08-24T10:40:59Z 1 2020-02-15T06:59:44Z +11708 2005-08-17T07:26:47Z 76 582 2005-08-22T04:11:47Z 1 2020-02-15T06:59:44Z +11709 2006-02-14T15:16:03Z 1720 330 1 2020-02-15T06:59:44Z +11710 2005-08-17T07:29:44Z 613 553 2005-08-19T02:06:44Z 2 2020-02-15T06:59:44Z +11711 2005-08-17T07:30:55Z 1503 470 2005-08-18T09:21:55Z 1 2020-02-15T06:59:44Z +11712 2005-08-17T07:32:51Z 3607 203 2005-08-21T09:18:51Z 2 2020-02-15T06:59:44Z +11713 2005-08-17T07:34:05Z 1919 590 2005-08-25T07:49:05Z 1 2020-02-15T06:59:44Z +11714 2005-08-17T07:34:55Z 17 151 2005-08-18T04:07:55Z 1 2020-02-15T06:59:44Z +11715 2005-08-17T07:40:55Z 1615 452 2005-08-25T11:19:55Z 1 2020-02-15T06:59:44Z +11716 2005-08-17T07:40:55Z 3054 287 2005-08-21T05:56:55Z 1 2020-02-15T06:59:44Z +11717 2005-08-17T07:44:09Z 1371 566 2005-08-20T09:39:09Z 2 2020-02-15T06:59:44Z +11718 2005-08-17T07:44:42Z 3673 555 2005-08-23T03:02:42Z 2 2020-02-15T06:59:44Z +11719 2005-08-17T07:46:05Z 2054 338 2005-08-23T08:52:05Z 1 2020-02-15T06:59:44Z +11720 2005-08-17T07:46:54Z 1707 121 2005-08-26T04:19:54Z 2 2020-02-15T06:59:44Z +11721 2005-08-17T07:49:17Z 1923 46 2005-08-18T04:08:17Z 1 2020-02-15T06:59:44Z +11722 2005-08-17T07:53:03Z 2430 321 2005-08-22T06:56:03Z 2 2020-02-15T06:59:44Z +11723 2005-08-17T07:56:22Z 1665 341 2005-08-22T03:49:22Z 1 2020-02-15T06:59:44Z +11724 2005-08-17T08:04:44Z 4484 207 2005-08-25T03:25:44Z 2 2020-02-15T06:59:44Z +11725 2005-08-17T08:09:00Z 519 45 2005-08-18T09:50:00Z 1 2020-02-15T06:59:44Z +11726 2005-08-17T08:11:10Z 4438 266 2005-08-22T05:45:10Z 1 2020-02-15T06:59:44Z +11727 2005-08-17T08:12:20Z 98 6 2005-08-19T12:45:20Z 1 2020-02-15T06:59:44Z +11728 2005-08-17T08:12:26Z 726 444 2005-08-18T03:26:26Z 1 2020-02-15T06:59:44Z +11729 2005-08-17T08:14:41Z 2819 215 2005-08-22T02:54:41Z 1 2020-02-15T06:59:44Z +11730 2005-08-17T08:22:00Z 3817 98 2005-08-22T05:43:00Z 2 2020-02-15T06:59:44Z +11731 2005-08-17T08:24:35Z 917 52 2005-08-24T02:54:35Z 2 2020-02-15T06:59:44Z +11732 2005-08-17T08:29:46Z 460 137 2005-08-23T14:21:46Z 2 2020-02-15T06:59:44Z +11733 2005-08-17T08:31:03Z 439 251 2005-08-21T05:44:03Z 2 2020-02-15T06:59:44Z +11734 2005-08-17T08:34:22Z 4063 337 2005-08-25T11:56:22Z 2 2020-02-15T06:59:44Z +11735 2005-08-17T08:35:42Z 2555 452 2005-08-26T11:04:42Z 1 2020-02-15T06:59:44Z +11736 2005-08-17T08:40:55Z 4217 535 2005-08-26T09:03:55Z 1 2020-02-15T06:59:44Z +11737 2005-08-17T08:42:08Z 4128 549 2005-08-19T08:14:08Z 1 2020-02-15T06:59:44Z +11738 2005-08-17T08:45:55Z 3042 347 2005-08-26T07:09:55Z 1 2020-02-15T06:59:44Z +11739 2006-02-14T15:16:03Z 4568 373 2 2020-02-15T06:59:44Z +11740 2005-08-17T08:48:31Z 2441 27 2005-08-24T07:47:31Z 2 2020-02-15T06:59:44Z +11741 2005-08-17T08:48:39Z 1819 473 2005-08-20T07:37:39Z 1 2020-02-15T06:59:44Z +11742 2005-08-17T08:48:43Z 596 470 2005-08-23T07:18:43Z 2 2020-02-15T06:59:44Z +11743 2005-08-17T08:49:05Z 294 336 2005-08-22T08:53:05Z 2 2020-02-15T06:59:44Z +11744 2005-08-17T08:54:30Z 297 26 2005-08-25T03:28:30Z 1 2020-02-15T06:59:44Z +11745 2005-08-17T09:00:01Z 4018 240 2005-08-26T14:29:01Z 2 2020-02-15T06:59:44Z +11746 2005-08-17T09:03:24Z 4571 299 2005-08-25T06:08:24Z 2 2020-02-15T06:59:44Z +11747 2005-08-17T09:03:31Z 1041 555 2005-08-19T08:23:31Z 2 2020-02-15T06:59:44Z +11748 2005-08-17T09:04:02Z 1175 595 2005-08-21T12:22:02Z 2 2020-02-15T06:59:44Z +11749 2005-08-17T09:04:03Z 4141 567 2005-08-19T09:32:03Z 2 2020-02-15T06:59:44Z +11750 2005-08-17T09:07:00Z 665 190 2005-08-23T08:16:00Z 2 2020-02-15T06:59:44Z +11751 2005-08-17T09:07:56Z 3309 51 2005-08-26T13:16:56Z 1 2020-02-15T06:59:44Z +11752 2005-08-17T09:10:55Z 1833 481 2005-08-18T06:22:55Z 1 2020-02-15T06:59:44Z +11753 2005-08-17T09:11:52Z 2599 43 2005-08-25T05:03:52Z 2 2020-02-15T06:59:44Z +11754 2006-02-14T15:16:03Z 3747 163 2 2020-02-15T06:59:44Z +11755 2005-08-17T09:15:35Z 3457 513 2005-08-23T06:28:35Z 2 2020-02-15T06:59:44Z +11756 2005-08-17T09:29:22Z 1798 198 2005-08-21T12:17:22Z 1 2020-02-15T06:59:44Z +11757 2006-02-14T15:16:03Z 1295 550 2 2020-02-15T06:59:44Z +11758 2005-08-17T09:33:02Z 11 533 2005-08-24T05:03:02Z 2 2020-02-15T06:59:44Z +11759 2005-08-17T09:41:23Z 2655 108 2005-08-19T11:58:23Z 2 2020-02-15T06:59:44Z +11760 2005-08-17T09:44:22Z 626 545 2005-08-24T14:39:22Z 2 2020-02-15T06:59:44Z +11761 2005-08-17T09:44:59Z 2230 13 2005-08-25T07:46:59Z 1 2020-02-15T06:59:44Z +11762 2005-08-17T09:48:06Z 1204 244 2005-08-26T13:12:06Z 2 2020-02-15T06:59:44Z +11763 2005-08-17T09:51:39Z 872 586 2005-08-21T10:15:39Z 2 2020-02-15T06:59:44Z +11764 2005-08-17T09:51:54Z 4502 252 2005-08-20T07:11:54Z 1 2020-02-15T06:59:44Z +11765 2005-08-17T09:55:28Z 4311 308 2005-08-19T15:53:28Z 2 2020-02-15T06:59:44Z +11766 2005-08-17T09:58:40Z 2999 544 2005-08-21T04:59:40Z 1 2020-02-15T06:59:44Z +11767 2005-08-17T10:00:40Z 2374 77 2005-08-25T04:14:40Z 2 2020-02-15T06:59:44Z +11768 2005-08-17T10:02:29Z 1307 564 2005-08-23T10:26:29Z 1 2020-02-15T06:59:44Z +11769 2005-08-17T10:04:49Z 1406 418 2005-08-20T09:22:49Z 1 2020-02-15T06:59:44Z +11770 2005-08-17T10:05:05Z 2862 475 2005-08-20T15:59:05Z 1 2020-02-15T06:59:44Z +11771 2005-08-17T10:17:09Z 2575 324 2005-08-25T10:58:09Z 1 2020-02-15T06:59:44Z +11772 2005-08-17T10:18:57Z 1021 237 2005-08-26T12:48:57Z 2 2020-02-15T06:59:44Z +11773 2005-08-17T10:19:51Z 1886 384 2005-08-23T04:30:51Z 1 2020-02-15T06:59:44Z +11774 2005-08-17T10:20:39Z 1679 488 2005-08-23T13:37:39Z 1 2020-02-15T06:59:44Z +11775 2005-08-17T10:25:53Z 256 574 2005-08-22T08:37:53Z 2 2020-02-15T06:59:44Z +11776 2005-08-17T10:27:19Z 2400 306 2005-08-20T14:02:19Z 2 2020-02-15T06:59:44Z +11777 2005-08-17T10:27:19Z 4065 83 2005-08-26T13:10:19Z 1 2020-02-15T06:59:44Z +11778 2005-08-17T10:31:40Z 1306 213 2005-08-25T13:53:40Z 2 2020-02-15T06:59:44Z +11779 2005-08-17T10:31:58Z 181 126 2005-08-24T15:28:58Z 2 2020-02-15T06:59:44Z +11780 2005-08-17T10:34:24Z 2268 297 2005-08-21T04:55:24Z 1 2020-02-15T06:59:44Z +11781 2005-08-17T10:37:00Z 1853 506 2005-08-21T12:03:00Z 2 2020-02-15T06:59:44Z +11782 2006-02-14T15:16:03Z 4098 354 1 2020-02-15T06:59:44Z +11783 2005-08-17T10:39:24Z 979 152 2005-08-21T12:43:24Z 2 2020-02-15T06:59:44Z +11784 2005-08-17T10:48:05Z 3101 297 2005-08-19T06:47:05Z 1 2020-02-15T06:59:44Z +11785 2005-08-17T10:54:46Z 2760 182 2005-08-23T14:15:46Z 2 2020-02-15T06:59:44Z +11786 2005-08-17T10:57:40Z 1487 435 2005-08-24T06:48:40Z 2 2020-02-15T06:59:44Z +11787 2005-08-17T10:59:00Z 1980 195 2005-08-19T05:56:00Z 1 2020-02-15T06:59:44Z +11788 2005-08-17T10:59:18Z 1310 560 2005-08-22T11:12:18Z 1 2020-02-15T06:59:44Z +11789 2005-08-17T10:59:24Z 851 150 2005-08-26T16:17:24Z 1 2020-02-15T06:59:44Z +11790 2005-08-17T11:00:08Z 2384 451 2005-08-20T05:15:08Z 2 2020-02-15T06:59:44Z +11791 2005-08-17T11:01:11Z 3640 219 2005-08-22T06:31:11Z 2 2020-02-15T06:59:44Z +11792 2005-08-17T11:03:53Z 3703 376 2005-08-26T06:34:53Z 1 2020-02-15T06:59:44Z +11793 2005-08-17T11:05:53Z 1955 352 2005-08-25T12:25:53Z 1 2020-02-15T06:59:44Z +11794 2005-08-17T11:08:48Z 3486 453 2005-08-20T13:36:48Z 2 2020-02-15T06:59:44Z +11795 2005-08-17T11:13:38Z 2220 565 2005-08-19T14:20:38Z 2 2020-02-15T06:59:44Z +11796 2005-08-17T11:16:47Z 3983 435 2005-08-18T16:55:47Z 2 2020-02-15T06:59:44Z +11797 2005-08-17T11:17:21Z 1142 546 2005-08-18T09:14:21Z 2 2020-02-15T06:59:44Z +11798 2005-08-17T11:21:43Z 3974 448 2005-08-25T07:43:43Z 2 2020-02-15T06:59:44Z +11799 2005-08-17T11:25:25Z 40 501 2005-08-25T13:03:25Z 2 2020-02-15T06:59:44Z +11800 2005-08-17T11:29:52Z 2284 350 2005-08-21T08:37:52Z 1 2020-02-15T06:59:44Z +11801 2005-08-17T11:30:11Z 659 126 2005-08-23T09:54:11Z 1 2020-02-15T06:59:44Z +11802 2005-08-17T11:32:51Z 2815 221 2005-08-22T10:56:51Z 1 2020-02-15T06:59:44Z +11803 2005-08-17T11:42:08Z 3648 160 2005-08-22T07:45:08Z 2 2020-02-15T06:59:44Z +11804 2005-08-17T11:42:45Z 1040 556 2005-08-25T07:11:45Z 1 2020-02-15T06:59:44Z +11805 2005-08-17T11:48:47Z 1208 208 2005-08-26T11:06:47Z 2 2020-02-15T06:59:44Z +11806 2005-08-17T11:49:28Z 3203 125 2005-08-22T15:42:28Z 1 2020-02-15T06:59:44Z +11807 2005-08-17T11:51:15Z 4052 201 2005-08-21T11:47:15Z 2 2020-02-15T06:59:44Z +11808 2005-08-17T11:51:16Z 4042 462 2005-08-18T14:01:16Z 2 2020-02-15T06:59:44Z +11809 2005-08-17T11:51:39Z 1136 305 2005-08-24T17:14:39Z 1 2020-02-15T06:59:44Z +11810 2005-08-17T11:56:48Z 1548 270 2005-08-20T17:39:48Z 1 2020-02-15T06:59:44Z +11811 2005-08-17T11:59:18Z 195 130 2005-08-18T09:13:18Z 2 2020-02-15T06:59:44Z +11812 2005-08-17T12:00:54Z 119 132 2005-08-18T16:08:54Z 1 2020-02-15T06:59:44Z +11813 2005-08-17T12:06:54Z 1074 36 2005-08-21T17:52:54Z 2 2020-02-15T06:59:44Z +11814 2005-08-17T12:09:20Z 3462 509 2005-08-25T16:56:20Z 2 2020-02-15T06:59:44Z +11815 2005-08-17T12:13:26Z 272 192 2005-08-22T17:15:26Z 2 2020-02-15T06:59:44Z +11816 2005-08-17T12:14:16Z 3897 224 2005-08-19T06:15:16Z 2 2020-02-15T06:59:44Z +11817 2005-08-17T12:20:01Z 2297 38 2005-08-19T18:06:01Z 1 2020-02-15T06:59:44Z +11818 2005-08-17T12:22:04Z 213 512 2005-08-25T15:59:04Z 2 2020-02-15T06:59:44Z +11819 2005-08-17T12:25:17Z 656 208 2005-08-19T16:12:17Z 1 2020-02-15T06:59:44Z +11820 2005-08-17T12:25:33Z 2801 401 2005-08-19T07:04:33Z 2 2020-02-15T06:59:44Z +11821 2005-08-17T12:27:55Z 2711 20 2005-08-18T07:07:55Z 1 2020-02-15T06:59:44Z +11822 2005-08-17T12:32:39Z 1317 263 2005-08-18T12:30:39Z 2 2020-02-15T06:59:44Z +11823 2005-08-17T12:36:37Z 2626 352 2005-08-22T11:10:37Z 2 2020-02-15T06:59:44Z +11824 2005-08-17T12:37:54Z 2639 1 2005-08-19T10:11:54Z 2 2020-02-15T06:59:44Z +11825 2005-08-17T12:43:30Z 2656 296 2005-08-20T15:25:30Z 1 2020-02-15T06:59:44Z +11826 2005-08-17T12:43:46Z 1837 536 2005-08-19T16:59:46Z 2 2020-02-15T06:59:44Z +11827 2005-08-17T12:44:27Z 3064 523 2005-08-24T13:31:27Z 1 2020-02-15T06:59:44Z +11828 2005-08-17T12:48:28Z 2593 268 2005-08-24T09:24:28Z 2 2020-02-15T06:59:44Z +11829 2005-08-17T12:52:04Z 2207 563 2005-08-19T10:50:04Z 2 2020-02-15T06:59:44Z +11830 2005-08-17T12:53:15Z 3713 522 2005-08-25T08:08:15Z 1 2020-02-15T06:59:44Z +11831 2005-08-17T12:54:47Z 4562 32 2005-08-21T11:21:47Z 1 2020-02-15T06:59:44Z +11832 2005-08-17T12:55:31Z 2331 125 2005-08-19T08:31:31Z 1 2020-02-15T06:59:44Z +11833 2005-08-17T13:00:33Z 3728 424 2005-08-18T13:45:33Z 2 2020-02-15T06:59:44Z +11834 2005-08-17T13:00:40Z 2407 261 2005-08-22T12:50:40Z 1 2020-02-15T06:59:44Z +11835 2005-08-17T13:03:13Z 2796 479 2005-08-19T10:50:13Z 1 2020-02-15T06:59:44Z +11836 2005-08-17T13:03:36Z 2253 198 2005-08-19T17:15:36Z 1 2020-02-15T06:59:44Z +11837 2005-08-17T13:04:41Z 1085 81 2005-08-26T14:19:41Z 1 2020-02-15T06:59:44Z +11838 2005-08-17T13:06:00Z 3576 161 2005-08-20T11:44:00Z 1 2020-02-15T06:59:44Z +11839 2005-08-17T13:08:45Z 2282 80 2005-08-18T15:05:45Z 2 2020-02-15T06:59:44Z +11840 2005-08-17T13:09:01Z 1824 491 2005-08-19T17:42:01Z 1 2020-02-15T06:59:44Z +11841 2005-08-17T13:12:20Z 1524 270 2005-08-21T11:16:20Z 2 2020-02-15T06:59:44Z +11842 2005-08-17T13:13:37Z 2680 422 2005-08-20T08:32:37Z 1 2020-02-15T06:59:44Z +11843 2005-08-17T13:14:50Z 3091 187 2005-08-22T11:31:50Z 2 2020-02-15T06:59:44Z +11844 2005-08-17T13:16:04Z 3791 368 2005-08-18T10:16:04Z 1 2020-02-15T06:59:44Z +11845 2005-08-17T13:16:38Z 14 65 2005-08-18T11:21:38Z 1 2020-02-15T06:59:44Z +11846 2005-08-17T13:18:29Z 3306 283 2005-08-22T18:05:29Z 2 2020-02-15T06:59:44Z +11847 2006-02-14T15:16:03Z 1784 337 1 2020-02-15T06:59:44Z +11848 2006-02-14T15:16:03Z 3680 152 1 2020-02-15T06:59:44Z +11849 2005-08-17T13:24:55Z 1191 92 2005-08-22T12:50:55Z 2 2020-02-15T06:59:44Z +11850 2005-08-17T13:30:15Z 1437 80 2005-08-21T17:24:15Z 1 2020-02-15T06:59:44Z +11851 2005-08-17T13:30:27Z 3225 376 2005-08-20T15:34:27Z 2 2020-02-15T06:59:44Z +11852 2005-08-17T13:38:27Z 2358 596 2005-08-24T08:50:27Z 1 2020-02-15T06:59:44Z +11853 2005-08-17T13:39:32Z 3888 6 2005-08-23T18:44:32Z 2 2020-02-15T06:59:44Z +11854 2005-08-17T13:42:52Z 137 313 2005-08-26T14:04:52Z 1 2020-02-15T06:59:44Z +11855 2005-08-17T13:43:07Z 1062 535 2005-08-26T08:07:07Z 1 2020-02-15T06:59:44Z +11856 2005-08-17T13:44:49Z 305 28 2005-08-21T17:20:49Z 1 2020-02-15T06:59:44Z +11857 2005-08-17T13:48:30Z 101 146 2005-08-18T15:55:30Z 1 2020-02-15T06:59:44Z +11858 2005-08-17T13:50:31Z 3483 503 2005-08-19T08:45:31Z 2 2020-02-15T06:59:44Z +11859 2005-08-17T13:51:20Z 423 144 2005-08-21T13:47:20Z 2 2020-02-15T06:59:44Z +11860 2005-08-17T13:52:26Z 4354 257 2005-08-24T14:47:26Z 1 2020-02-15T06:59:44Z +11861 2005-08-17T13:53:47Z 2674 232 2005-08-21T16:07:47Z 1 2020-02-15T06:59:44Z +11862 2005-08-17T13:54:53Z 2604 529 2005-08-19T10:48:53Z 1 2020-02-15T06:59:44Z +11863 2005-08-17T13:56:01Z 1003 112 2005-08-23T18:38:01Z 1 2020-02-15T06:59:44Z +11864 2005-08-17T14:02:01Z 2985 96 2005-08-21T19:54:01Z 1 2020-02-15T06:59:44Z +11865 2005-08-17T14:03:46Z 2577 345 2005-08-19T08:39:46Z 1 2020-02-15T06:59:44Z +11866 2006-02-14T15:16:03Z 2758 200 2 2020-02-15T06:59:44Z +11867 2005-08-17T14:04:28Z 938 434 2005-08-21T10:08:28Z 1 2020-02-15T06:59:44Z +11868 2005-08-17T14:05:34Z 2909 445 2005-08-19T15:47:34Z 1 2020-02-15T06:59:44Z +11869 2005-08-17T14:10:22Z 3453 19 2005-08-24T18:39:22Z 1 2020-02-15T06:59:44Z +11870 2005-08-17T14:11:28Z 4251 432 2005-08-24T16:43:28Z 1 2020-02-15T06:59:44Z +11871 2005-08-17T14:11:44Z 3013 484 2005-08-18T17:50:44Z 1 2020-02-15T06:59:44Z +11872 2005-08-17T14:11:45Z 4306 113 2005-08-21T17:02:45Z 2 2020-02-15T06:59:44Z +11873 2005-08-17T14:14:39Z 4021 554 2005-08-18T17:20:39Z 2 2020-02-15T06:59:44Z +11874 2005-08-17T14:16:40Z 2637 467 2005-08-18T15:51:40Z 2 2020-02-15T06:59:44Z +11875 2005-08-17T14:16:48Z 1787 294 2005-08-26T14:20:48Z 1 2020-02-15T06:59:44Z +11876 2005-08-17T14:18:21Z 3982 426 2005-08-20T19:48:21Z 1 2020-02-15T06:59:44Z +11877 2005-08-17T14:21:11Z 4528 445 2005-08-25T19:46:11Z 1 2020-02-15T06:59:44Z +11878 2005-08-17T14:23:52Z 255 549 2005-08-21T14:23:52Z 1 2020-02-15T06:59:44Z +11879 2005-08-17T14:25:09Z 2500 312 2005-08-26T09:19:09Z 1 2020-02-15T06:59:44Z +11880 2005-08-17T14:28:28Z 1539 597 2005-08-26T12:32:28Z 2 2020-02-15T06:59:44Z +11881 2005-08-17T14:31:56Z 3124 272 2005-08-21T11:05:56Z 1 2020-02-15T06:59:44Z +11882 2005-08-17T14:33:41Z 2401 234 2005-08-26T17:25:41Z 2 2020-02-15T06:59:44Z +11883 2005-08-17T14:41:28Z 221 551 2005-08-19T09:54:28Z 1 2020-02-15T06:59:44Z +11884 2005-08-17T14:43:23Z 797 178 2005-08-25T15:38:23Z 1 2020-02-15T06:59:44Z +11885 2005-08-17T14:53:53Z 3931 481 2005-08-22T10:59:53Z 1 2020-02-15T06:59:44Z +11886 2005-08-17T14:58:51Z 608 204 2005-08-19T16:07:51Z 2 2020-02-15T06:59:44Z +11887 2005-08-17T15:03:13Z 3290 54 2005-08-19T09:49:13Z 1 2020-02-15T06:59:44Z +11888 2005-08-17T15:04:05Z 1100 160 2005-08-25T18:52:05Z 2 2020-02-15T06:59:44Z +11889 2005-08-17T15:08:27Z 293 395 2005-08-18T17:10:27Z 1 2020-02-15T06:59:44Z +11890 2005-08-17T15:08:43Z 3023 487 2005-08-26T14:56:43Z 2 2020-02-15T06:59:44Z +11891 2005-08-17T15:11:55Z 2619 115 2005-08-22T11:11:55Z 2 2020-02-15T06:59:44Z +11892 2005-08-17T15:13:21Z 746 227 2005-08-21T09:19:21Z 2 2020-02-15T06:59:44Z +11893 2005-08-17T15:13:29Z 2321 496 2005-08-25T11:09:29Z 1 2020-02-15T06:59:44Z +11894 2005-08-17T15:15:01Z 1223 67 2005-08-26T13:49:01Z 1 2020-02-15T06:59:44Z +11895 2005-08-17T15:15:07Z 2156 236 2005-08-18T11:00:07Z 2 2020-02-15T06:59:44Z +11896 2005-08-17T15:19:54Z 259 436 2005-08-24T18:22:54Z 2 2020-02-15T06:59:44Z +11897 2005-08-17T15:24:06Z 3904 238 2005-08-23T11:50:06Z 2 2020-02-15T06:59:44Z +11898 2005-08-17T15:24:12Z 3163 169 2005-08-24T13:36:12Z 2 2020-02-15T06:59:44Z +11899 2005-08-17T15:29:12Z 3179 84 2005-08-24T17:41:12Z 1 2020-02-15T06:59:44Z +11900 2005-08-17T15:30:44Z 1931 239 2005-08-19T16:12:44Z 1 2020-02-15T06:59:44Z +11901 2005-08-17T15:35:47Z 4274 70 2005-08-20T10:33:47Z 2 2020-02-15T06:59:44Z +11902 2005-08-17T15:37:34Z 1387 63 2005-08-22T17:28:34Z 2 2020-02-15T06:59:44Z +11903 2005-08-17T15:37:45Z 1196 542 2005-08-23T18:31:45Z 2 2020-02-15T06:59:44Z +11904 2005-08-17T15:39:26Z 2846 145 2005-08-21T18:24:26Z 2 2020-02-15T06:59:44Z +11905 2005-08-17T15:40:18Z 2725 349 2005-08-26T15:14:18Z 2 2020-02-15T06:59:44Z +11906 2005-08-17T15:40:46Z 325 478 2005-08-20T15:20:46Z 2 2020-02-15T06:59:44Z +11907 2005-08-17T15:40:47Z 3928 505 2005-08-20T19:55:47Z 2 2020-02-15T06:59:44Z +11908 2005-08-17T15:43:09Z 3390 314 2005-08-24T14:32:09Z 2 2020-02-15T06:59:44Z +11909 2006-02-14T15:16:03Z 871 474 1 2020-02-15T06:59:44Z +11910 2005-08-17T15:44:37Z 4254 418 2005-08-19T10:58:37Z 2 2020-02-15T06:59:44Z +11911 2005-08-17T15:51:35Z 3578 472 2005-08-26T20:26:35Z 2 2020-02-15T06:59:44Z +11912 2005-08-17T15:51:49Z 744 573 2005-08-24T18:48:49Z 1 2020-02-15T06:59:44Z +11913 2005-08-17T15:53:17Z 741 295 2005-08-24T18:50:17Z 2 2020-02-15T06:59:44Z +11914 2005-08-17T16:04:42Z 1634 230 2005-08-22T19:29:42Z 1 2020-02-15T06:59:44Z +11915 2005-08-17T16:05:28Z 1557 269 2005-08-25T19:53:28Z 2 2020-02-15T06:59:44Z +11916 2005-08-17T16:05:51Z 2631 86 2005-08-20T10:23:51Z 1 2020-02-15T06:59:44Z +11917 2005-08-17T16:08:17Z 1608 270 2005-08-20T20:01:17Z 1 2020-02-15T06:59:44Z +11918 2005-08-17T16:08:42Z 2169 533 2005-08-20T20:12:42Z 1 2020-02-15T06:59:44Z +11919 2005-08-17T16:08:49Z 4497 40 2005-08-20T16:59:49Z 2 2020-02-15T06:59:44Z +11920 2005-08-17T16:10:19Z 4253 402 2005-08-20T13:54:19Z 2 2020-02-15T06:59:44Z +11921 2005-08-17T16:12:27Z 494 485 2005-08-25T22:07:27Z 1 2020-02-15T06:59:44Z +11922 2005-08-17T16:20:37Z 3707 15 2005-08-26T16:53:37Z 2 2020-02-15T06:59:44Z +11923 2005-08-17T16:21:47Z 1907 72 2005-08-18T14:26:47Z 2 2020-02-15T06:59:44Z +11924 2005-08-17T16:22:05Z 1711 202 2005-08-26T12:34:05Z 1 2020-02-15T06:59:44Z +11925 2005-08-17T16:23:04Z 1441 370 2005-08-21T11:38:04Z 1 2020-02-15T06:59:44Z +11926 2005-08-17T16:25:02Z 2111 516 2005-08-22T11:36:02Z 1 2020-02-15T06:59:44Z +11927 2005-08-17T16:25:03Z 3134 178 2005-08-23T16:41:03Z 1 2020-02-15T06:59:44Z +11928 2005-08-17T16:28:24Z 79 261 2005-08-23T17:50:24Z 2 2020-02-15T06:59:44Z +11929 2005-08-17T16:28:51Z 3765 327 2005-08-25T19:36:51Z 1 2020-02-15T06:59:44Z +11930 2005-08-17T16:28:53Z 1299 5 2005-08-25T10:31:53Z 1 2020-02-15T06:59:44Z +11931 2005-08-17T16:35:14Z 2022 242 2005-08-19T19:16:14Z 1 2020-02-15T06:59:44Z +11932 2005-08-17T16:36:12Z 151 364 2005-08-18T19:34:12Z 2 2020-02-15T06:59:44Z +11933 2005-08-17T16:38:20Z 2574 438 2005-08-22T14:31:20Z 1 2020-02-15T06:59:44Z +11934 2005-08-17T16:40:00Z 1230 596 2005-08-20T20:13:00Z 2 2020-02-15T06:59:44Z +11935 2005-08-17T16:42:13Z 1640 66 2005-08-22T20:38:13Z 2 2020-02-15T06:59:44Z +11936 2005-08-17T16:45:34Z 1127 380 2005-08-21T13:33:34Z 2 2020-02-15T06:59:44Z +11937 2005-08-17T16:48:36Z 2926 515 2005-08-24T19:01:36Z 1 2020-02-15T06:59:44Z +11938 2005-08-17T16:54:54Z 3927 426 2005-08-24T19:18:54Z 1 2020-02-15T06:59:44Z +11939 2005-08-17T16:55:57Z 3305 516 2005-08-24T21:36:57Z 1 2020-02-15T06:59:44Z +11940 2005-08-17T16:56:28Z 1188 163 2005-08-18T15:09:28Z 1 2020-02-15T06:59:44Z +11941 2005-08-17T16:56:57Z 159 566 2005-08-24T16:29:57Z 1 2020-02-15T06:59:44Z +11942 2006-02-14T15:16:03Z 4094 576 2 2020-02-15T06:59:44Z +11943 2005-08-17T17:00:42Z 4466 69 2005-08-26T22:07:42Z 1 2020-02-15T06:59:44Z +11944 2005-08-17T17:02:42Z 27 389 2005-08-21T16:40:42Z 2 2020-02-15T06:59:44Z +11945 2005-08-17T17:05:33Z 1108 380 2005-08-20T18:37:33Z 2 2020-02-15T06:59:44Z +11946 2005-08-17T17:05:53Z 2953 569 2005-08-19T13:56:53Z 1 2020-02-15T06:59:44Z +11947 2005-08-17T17:08:13Z 2928 220 2005-08-23T21:53:13Z 1 2020-02-15T06:59:44Z +11948 2005-08-17T17:11:05Z 3329 40 2005-08-25T21:16:05Z 2 2020-02-15T06:59:44Z +11949 2005-08-17T17:12:26Z 854 198 2005-08-23T20:48:26Z 1 2020-02-15T06:59:44Z +11950 2005-08-17T17:13:16Z 4412 190 2005-08-26T21:25:16Z 1 2020-02-15T06:59:44Z +11951 2005-08-17T17:14:02Z 1394 155 2005-08-26T12:04:02Z 2 2020-02-15T06:59:44Z +11952 2005-08-17T17:14:57Z 2411 288 2005-08-19T19:15:57Z 1 2020-02-15T06:59:44Z +11953 2005-08-17T17:16:42Z 2993 399 2005-08-23T18:28:42Z 1 2020-02-15T06:59:44Z +11954 2005-08-17T17:18:36Z 220 145 2005-08-18T19:49:36Z 1 2020-02-15T06:59:44Z +11955 2005-08-17T17:21:35Z 1221 319 2005-08-24T22:06:35Z 1 2020-02-15T06:59:44Z +11956 2005-08-17T17:22:05Z 2533 457 2005-08-25T22:19:05Z 2 2020-02-15T06:59:44Z +11957 2005-08-17T17:22:29Z 1924 198 2005-08-23T21:47:29Z 2 2020-02-15T06:59:44Z +11958 2005-08-17T17:23:20Z 2061 217 2005-08-24T14:47:20Z 2 2020-02-15T06:59:44Z +11959 2005-08-17T17:23:35Z 2694 101 2005-08-20T20:57:35Z 1 2020-02-15T06:59:44Z +11960 2005-08-17T17:24:30Z 3924 84 2005-08-18T14:28:30Z 1 2020-02-15T06:59:44Z +11961 2005-08-17T17:28:01Z 2015 276 2005-08-21T20:43:01Z 1 2020-02-15T06:59:44Z +11962 2005-08-17T17:34:38Z 4384 29 2005-08-21T12:59:38Z 2 2020-02-15T06:59:44Z +11963 2005-08-17T17:35:47Z 232 211 2005-08-23T16:19:47Z 2 2020-02-15T06:59:44Z +11964 2005-08-17T17:37:03Z 2225 309 2005-08-25T11:55:03Z 2 2020-02-15T06:59:44Z +11965 2005-08-17T17:39:45Z 194 490 2005-08-19T12:05:45Z 1 2020-02-15T06:59:44Z +11966 2005-08-17T17:40:04Z 3702 283 2005-08-20T15:45:04Z 1 2020-02-15T06:59:44Z +11967 2005-08-17T17:45:00Z 1151 521 2005-08-22T13:03:00Z 1 2020-02-15T06:59:44Z +11968 2005-08-17T17:47:34Z 698 239 2005-08-18T19:40:34Z 1 2020-02-15T06:59:44Z +11969 2005-08-17T17:49:37Z 668 550 2005-08-19T19:45:37Z 2 2020-02-15T06:59:44Z +11970 2005-08-17T17:53:09Z 1779 21 2005-08-24T14:41:09Z 1 2020-02-15T06:59:44Z +11971 2005-08-17T17:53:42Z 2756 131 2005-08-18T12:11:42Z 2 2020-02-15T06:59:44Z +11972 2005-08-17T17:55:46Z 1282 308 2005-08-22T15:31:46Z 2 2020-02-15T06:59:44Z +11973 2005-08-17T17:55:58Z 1472 131 2005-08-21T19:55:58Z 2 2020-02-15T06:59:44Z +11974 2005-08-17T17:56:48Z 1609 485 2005-08-21T19:14:48Z 2 2020-02-15T06:59:44Z +11975 2005-08-17T17:58:39Z 3843 458 2005-08-20T19:11:39Z 2 2020-02-15T06:59:44Z +11976 2005-08-17T17:59:19Z 498 373 2005-08-23T14:51:19Z 2 2020-02-15T06:59:44Z +11977 2005-08-17T18:01:15Z 1528 536 2005-08-23T23:03:15Z 1 2020-02-15T06:59:44Z +11978 2005-08-17T18:02:10Z 4380 499 2005-08-18T20:40:10Z 2 2020-02-15T06:59:44Z +11979 2005-08-17T18:07:13Z 568 255 2005-08-19T23:12:13Z 1 2020-02-15T06:59:44Z +11980 2005-08-17T18:10:18Z 4165 589 2005-08-20T13:28:18Z 1 2020-02-15T06:59:44Z +11981 2005-08-17T18:10:40Z 3228 294 2005-08-20T16:56:40Z 1 2020-02-15T06:59:44Z +11982 2005-08-17T18:13:07Z 118 186 2005-08-18T19:06:07Z 1 2020-02-15T06:59:44Z +11983 2005-08-17T18:13:55Z 2580 304 2005-08-23T18:27:55Z 2 2020-02-15T06:59:44Z +11984 2005-08-17T18:16:30Z 3577 96 2005-08-24T21:09:30Z 2 2020-02-15T06:59:44Z +11985 2005-08-17T18:19:44Z 2208 198 2005-08-18T19:14:44Z 2 2020-02-15T06:59:44Z +11986 2005-08-17T18:21:58Z 1610 352 2005-08-18T13:05:58Z 1 2020-02-15T06:59:44Z +11987 2005-08-17T18:21:59Z 1478 494 2005-08-25T19:20:59Z 1 2020-02-15T06:59:44Z +11988 2005-08-17T18:23:50Z 3429 62 2005-08-18T22:30:50Z 2 2020-02-15T06:59:44Z +11989 2005-08-17T18:23:58Z 3686 439 2005-08-20T20:31:58Z 2 2020-02-15T06:59:44Z +11990 2005-08-17T18:26:22Z 3012 17 2005-08-19T14:34:22Z 2 2020-02-15T06:59:44Z +11991 2005-08-17T18:27:08Z 940 361 2005-08-25T14:07:08Z 1 2020-02-15T06:59:44Z +11992 2005-08-17T18:27:22Z 4132 136 2005-08-26T22:38:22Z 2 2020-02-15T06:59:44Z +11993 2005-08-17T18:27:49Z 295 303 2005-08-21T00:04:49Z 1 2020-02-15T06:59:44Z +11994 2005-08-17T18:29:35Z 3428 319 2005-08-25T23:39:35Z 1 2020-02-15T06:59:44Z +11995 2006-02-14T15:16:03Z 3953 69 1 2020-02-15T06:59:44Z +11996 2005-08-17T18:34:37Z 2720 510 2005-08-20T22:25:37Z 2 2020-02-15T06:59:44Z +11997 2005-08-17T18:34:38Z 2193 411 2005-08-26T00:12:38Z 2 2020-02-15T06:59:44Z +11998 2005-08-17T18:46:21Z 4258 299 2005-08-18T20:29:21Z 1 2020-02-15T06:59:44Z +11999 2005-08-17T18:47:07Z 4333 125 2005-08-20T23:26:07Z 2 2020-02-15T06:59:44Z +12000 2005-08-17T18:49:44Z 2256 149 2005-08-24T16:34:44Z 2 2020-02-15T06:59:44Z +12001 2006-02-14T15:16:03Z 4158 52 2 2020-02-15T06:59:44Z +12002 2005-08-17T18:56:02Z 1386 75 2005-08-20T17:36:02Z 1 2020-02-15T06:59:44Z +12003 2005-08-17T18:56:05Z 3868 70 2005-08-18T23:52:05Z 1 2020-02-15T06:59:44Z +12004 2005-08-17T18:56:53Z 2690 499 2005-08-26T14:56:53Z 1 2020-02-15T06:59:44Z +12005 2005-08-17T18:56:55Z 2062 403 2005-08-25T20:23:55Z 2 2020-02-15T06:59:44Z +12006 2005-08-17T19:09:12Z 4072 272 2005-08-24T13:50:12Z 1 2020-02-15T06:59:44Z +12007 2005-08-17T19:10:34Z 3007 268 2005-08-24T14:09:34Z 1 2020-02-15T06:59:44Z +12008 2005-08-17T19:16:18Z 865 562 2005-08-18T14:24:18Z 2 2020-02-15T06:59:44Z +12009 2006-02-14T15:16:03Z 2134 296 2 2020-02-15T06:59:44Z +12010 2005-08-17T19:17:54Z 1076 554 2005-08-26T00:41:54Z 1 2020-02-15T06:59:44Z +12011 2005-08-17T19:19:44Z 495 313 2005-08-23T00:56:44Z 2 2020-02-15T06:59:44Z +12012 2005-08-17T19:20:48Z 2698 69 2005-08-22T16:50:48Z 1 2020-02-15T06:59:44Z +12013 2005-08-17T19:23:02Z 3530 586 2005-08-23T00:31:02Z 2 2020-02-15T06:59:44Z +12014 2005-08-17T19:29:44Z 1778 554 2005-08-23T20:40:44Z 1 2020-02-15T06:59:44Z +12015 2005-08-17T19:32:44Z 593 11 2005-08-23T13:36:44Z 2 2020-02-15T06:59:44Z +12016 2005-08-17T19:33:24Z 2109 327 2005-08-21T19:59:24Z 2 2020-02-15T06:59:44Z +12017 2005-08-17T19:33:49Z 344 573 2005-08-22T01:16:49Z 2 2020-02-15T06:59:44Z +12018 2005-08-17T19:44:46Z 1921 319 2005-08-26T20:24:46Z 1 2020-02-15T06:59:44Z +12019 2005-08-17T19:48:55Z 2566 90 2005-08-21T18:20:55Z 1 2020-02-15T06:59:44Z +12020 2005-08-17T19:50:33Z 3258 72 2005-08-25T17:54:33Z 1 2020-02-15T06:59:44Z +12021 2005-08-17T19:52:43Z 3977 27 2005-08-23T21:49:43Z 1 2020-02-15T06:59:44Z +12022 2005-08-17T19:52:45Z 2067 461 2005-08-18T18:26:45Z 2 2020-02-15T06:59:44Z +12023 2005-08-17T19:54:54Z 247 22 2005-08-26T23:03:54Z 1 2020-02-15T06:59:44Z +12024 2005-08-17T19:57:34Z 2398 484 2005-08-21T23:00:34Z 2 2020-02-15T06:59:44Z +12025 2005-08-17T19:59:06Z 4019 209 2005-08-23T14:39:06Z 2 2020-02-15T06:59:44Z +12026 2005-08-17T20:00:10Z 1568 468 2005-08-26T01:54:10Z 1 2020-02-15T06:59:44Z +12027 2005-08-17T20:01:12Z 45 285 2005-08-26T21:08:12Z 2 2020-02-15T06:59:44Z +12028 2005-08-17T20:03:47Z 607 316 2005-08-23T17:09:47Z 2 2020-02-15T06:59:44Z +12029 2005-08-17T20:07:01Z 3516 148 2005-08-19T19:36:01Z 2 2020-02-15T06:59:44Z +12030 2005-08-17T20:10:48Z 449 434 2005-08-19T00:32:48Z 1 2020-02-15T06:59:44Z +12031 2005-08-17T20:11:35Z 2793 10 2005-08-24T23:48:35Z 2 2020-02-15T06:59:44Z +12032 2005-08-17T20:14:26Z 1106 141 2005-08-26T16:01:26Z 1 2020-02-15T06:59:44Z +12033 2005-08-17T20:14:34Z 2731 321 2005-08-26T00:22:34Z 2 2020-02-15T06:59:44Z +12034 2005-08-17T20:15:31Z 834 321 2005-08-24T15:46:31Z 2 2020-02-15T06:59:44Z +12035 2005-08-17T20:18:06Z 2335 469 2005-08-21T16:41:06Z 2 2020-02-15T06:59:44Z +12036 2005-08-17T20:19:06Z 3620 85 2005-08-18T19:57:06Z 2 2020-02-15T06:59:44Z +12037 2005-08-17T20:21:35Z 766 356 2005-08-22T17:16:35Z 2 2020-02-15T06:59:44Z +12038 2005-08-17T20:28:26Z 3794 148 2005-08-20T23:09:26Z 2 2020-02-15T06:59:44Z +12039 2005-08-17T20:29:08Z 4404 563 2005-08-23T21:20:08Z 2 2020-02-15T06:59:44Z +12040 2005-08-17T20:29:56Z 1288 558 2005-08-26T22:17:56Z 1 2020-02-15T06:59:44Z +12041 2005-08-17T20:34:33Z 2389 295 2005-08-19T00:47:33Z 1 2020-02-15T06:59:44Z +12042 2005-08-17T20:36:37Z 1772 570 2005-08-21T15:03:37Z 1 2020-02-15T06:59:44Z +12043 2005-08-17T20:38:21Z 3706 592 2005-08-22T16:52:21Z 2 2020-02-15T06:59:44Z +12044 2005-08-17T20:39:37Z 3377 388 2005-08-19T18:34:37Z 1 2020-02-15T06:59:44Z +12045 2005-08-17T20:40:46Z 469 556 2005-08-20T18:18:46Z 2 2020-02-15T06:59:44Z +12046 2005-08-17T20:47:46Z 3895 435 2005-08-19T16:09:46Z 2 2020-02-15T06:59:44Z +12047 2005-08-17T20:48:32Z 3886 251 2005-08-26T00:07:32Z 1 2020-02-15T06:59:44Z +12048 2005-08-17T20:49:24Z 3773 466 2005-08-27T02:01:24Z 2 2020-02-15T06:59:44Z +12049 2005-08-17T20:53:27Z 2433 178 2005-08-26T19:45:27Z 2 2020-02-15T06:59:44Z +12050 2005-08-17T20:55:25Z 2348 405 2005-08-22T20:31:25Z 2 2020-02-15T06:59:44Z +12051 2005-08-17T20:56:15Z 4001 579 2005-08-25T19:08:15Z 1 2020-02-15T06:59:44Z +12052 2005-08-17T20:57:02Z 99 536 2005-08-25T19:04:02Z 1 2020-02-15T06:59:44Z +12053 2005-08-17T20:57:27Z 4448 280 2005-08-20T19:51:27Z 1 2020-02-15T06:59:44Z +12054 2005-08-17T20:59:56Z 3780 53 2005-08-23T19:57:56Z 1 2020-02-15T06:59:44Z +12055 2005-08-17T21:02:19Z 1481 35 2005-08-18T15:24:19Z 1 2020-02-15T06:59:44Z +12056 2005-08-17T21:03:48Z 1091 460 2005-08-21T22:42:48Z 2 2020-02-15T06:59:44Z +12057 2005-08-17T21:04:35Z 1878 263 2005-08-25T00:17:35Z 1 2020-02-15T06:59:44Z +12058 2005-08-17T21:07:41Z 2438 540 2005-08-26T16:07:41Z 1 2020-02-15T06:59:44Z +12059 2005-08-17T21:09:23Z 4111 393 2005-08-25T23:09:23Z 1 2020-02-15T06:59:44Z +12060 2005-08-17T21:11:57Z 2373 127 2005-08-21T01:42:57Z 1 2020-02-15T06:59:44Z +12061 2005-08-17T21:13:35Z 144 532 2005-08-22T19:18:35Z 1 2020-02-15T06:59:44Z +12062 2005-08-17T21:24:47Z 1791 330 2005-08-20T20:35:47Z 2 2020-02-15T06:59:44Z +12063 2005-08-17T21:24:48Z 1141 550 2005-08-23T22:10:48Z 2 2020-02-15T06:59:44Z +12064 2006-02-14T15:16:03Z 298 284 1 2020-02-15T06:59:44Z +12065 2005-08-17T21:31:46Z 3644 77 2005-08-26T02:26:46Z 2 2020-02-15T06:59:44Z +12066 2006-02-14T15:16:03Z 2474 267 2 2020-02-15T06:59:44Z +12067 2005-08-17T21:36:47Z 2013 514 2005-08-22T01:10:47Z 2 2020-02-15T06:59:44Z +12068 2005-08-17T21:37:08Z 4327 388 2005-08-26T00:10:08Z 1 2020-02-15T06:59:44Z +12069 2005-08-17T21:39:40Z 631 389 2005-08-22T01:12:40Z 2 2020-02-15T06:59:44Z +12070 2005-08-17T21:46:47Z 1357 158 2005-08-22T22:59:47Z 1 2020-02-15T06:59:44Z +12071 2005-08-17T21:49:14Z 1874 507 2005-08-22T18:20:14Z 1 2020-02-15T06:59:44Z +12072 2005-08-17T21:50:25Z 209 61 2005-08-25T22:36:25Z 2 2020-02-15T06:59:44Z +12073 2005-08-17T21:50:39Z 2939 173 2005-08-21T02:59:39Z 1 2020-02-15T06:59:44Z +12074 2005-08-17T21:50:57Z 711 417 2005-08-20T00:58:57Z 2 2020-02-15T06:59:44Z +12075 2005-08-17T21:54:55Z 3147 125 2005-08-23T23:04:55Z 1 2020-02-15T06:59:44Z +12076 2005-08-17T21:58:19Z 4278 298 2005-08-20T22:10:19Z 1 2020-02-15T06:59:44Z +12077 2005-08-17T21:59:14Z 3589 550 2005-08-22T03:23:14Z 1 2020-02-15T06:59:44Z +12078 2005-08-17T22:00:22Z 684 137 2005-08-24T02:54:22Z 2 2020-02-15T06:59:44Z +12079 2005-08-17T22:04:17Z 646 230 2005-08-24T20:22:17Z 2 2020-02-15T06:59:44Z +12080 2005-08-17T22:08:04Z 1491 394 2005-08-19T22:55:04Z 2 2020-02-15T06:59:44Z +12081 2005-08-17T22:10:46Z 620 597 2005-08-22T22:37:46Z 1 2020-02-15T06:59:44Z +12082 2005-08-17T22:13:15Z 3435 521 2005-08-24T18:30:15Z 1 2020-02-15T06:59:44Z +12083 2005-08-17T22:13:37Z 1985 474 2005-08-19T19:01:37Z 2 2020-02-15T06:59:44Z +12084 2005-08-17T22:16:49Z 2706 60 2005-08-24T17:42:49Z 2 2020-02-15T06:59:44Z +12085 2005-08-17T22:17:09Z 600 31 2005-08-21T01:45:09Z 1 2020-02-15T06:59:44Z +12086 2005-08-17T22:20:01Z 3963 140 2005-08-26T02:14:01Z 1 2020-02-15T06:59:44Z +12087 2005-08-17T22:20:12Z 324 144 2005-08-20T02:11:12Z 2 2020-02-15T06:59:44Z +12088 2005-08-17T22:20:16Z 1754 360 2005-08-25T23:30:16Z 2 2020-02-15T06:59:44Z +12089 2005-08-17T22:20:29Z 651 538 2005-08-24T02:12:29Z 1 2020-02-15T06:59:44Z +12090 2005-08-17T22:21:43Z 3392 391 2005-08-20T23:53:43Z 2 2020-02-15T06:59:44Z +12091 2005-08-17T22:22:50Z 2161 555 2005-08-27T03:55:50Z 1 2020-02-15T06:59:44Z +12092 2005-08-17T22:28:15Z 3964 38 2005-08-18T16:46:15Z 2 2020-02-15T06:59:44Z +12093 2005-08-17T22:28:40Z 216 141 2005-08-22T02:05:40Z 1 2020-02-15T06:59:44Z +12094 2005-08-17T22:31:04Z 1050 130 2005-08-23T22:45:04Z 1 2020-02-15T06:59:44Z +12095 2005-08-17T22:32:37Z 1089 46 2005-08-20T04:00:37Z 1 2020-02-15T06:59:44Z +12096 2005-08-17T22:32:50Z 44 463 2005-08-25T03:33:50Z 1 2020-02-15T06:59:44Z +12097 2005-08-17T22:35:24Z 4135 325 2005-08-18T20:31:24Z 2 2020-02-15T06:59:44Z +12098 2005-08-17T22:38:31Z 534 545 2005-08-20T01:56:31Z 1 2020-02-15T06:59:44Z +12099 2005-08-17T22:38:54Z 1743 195 2005-08-18T21:29:54Z 2 2020-02-15T06:59:44Z +12100 2005-08-17T22:41:10Z 4365 391 2005-08-24T21:31:10Z 2 2020-02-15T06:59:44Z +12101 2006-02-14T15:16:03Z 1556 479 1 2020-02-15T06:59:44Z +12102 2005-08-17T22:45:26Z 4268 392 2005-08-24T01:47:26Z 2 2020-02-15T06:59:44Z +12103 2005-08-17T22:49:09Z 4363 153 2005-08-24T21:53:09Z 1 2020-02-15T06:59:44Z +12104 2005-08-17T22:53:00Z 4551 16 2005-08-23T19:49:00Z 1 2020-02-15T06:59:44Z +12105 2005-08-17T22:54:45Z 2848 390 2005-08-21T00:33:45Z 2 2020-02-15T06:59:44Z +12106 2005-08-17T22:55:32Z 3234 465 2005-08-19T23:55:32Z 2 2020-02-15T06:59:44Z +12107 2005-08-17T22:56:24Z 1060 141 2005-08-24T19:36:24Z 1 2020-02-15T06:59:44Z +12108 2005-08-17T22:56:39Z 1675 207 2005-08-26T19:37:39Z 1 2020-02-15T06:59:44Z +12109 2005-08-17T22:58:35Z 1423 509 2005-08-25T19:44:35Z 2 2020-02-15T06:59:44Z +12110 2005-08-17T22:59:46Z 2984 511 2005-08-23T17:51:46Z 1 2020-02-15T06:59:44Z +12111 2005-08-17T22:59:55Z 2905 317 2005-08-22T19:33:55Z 2 2020-02-15T06:59:44Z +12112 2005-08-17T23:00:31Z 4290 576 2005-08-25T02:05:31Z 1 2020-02-15T06:59:44Z +12113 2005-08-17T23:01:00Z 2707 393 2005-08-25T03:57:00Z 2 2020-02-15T06:59:44Z +12114 2005-08-17T23:02:00Z 1405 65 2005-08-26T18:02:00Z 1 2020-02-15T06:59:44Z +12115 2005-08-17T23:04:15Z 1228 457 2005-08-20T22:25:15Z 2 2020-02-15T06:59:44Z +12116 2006-02-14T15:16:03Z 3082 560 2 2020-02-15T06:59:44Z +12117 2005-08-17T23:11:12Z 4140 303 2005-08-22T23:56:12Z 1 2020-02-15T06:59:44Z +12118 2005-08-17T23:14:25Z 158 89 2005-08-26T22:26:25Z 1 2020-02-15T06:59:44Z +12119 2005-08-17T23:16:44Z 4298 567 2005-08-20T02:13:44Z 2 2020-02-15T06:59:44Z +12120 2005-08-17T23:16:46Z 2912 323 2005-08-19T00:11:46Z 2 2020-02-15T06:59:44Z +12121 2005-08-17T23:20:40Z 3423 69 2005-08-22T21:30:40Z 2 2020-02-15T06:59:44Z +12122 2005-08-17T23:20:45Z 4030 375 2005-08-25T04:23:45Z 2 2020-02-15T06:59:44Z +12123 2005-08-17T23:22:18Z 361 497 2005-08-19T23:36:18Z 2 2020-02-15T06:59:44Z +12124 2005-08-17T23:22:46Z 2036 22 2005-08-21T01:40:46Z 1 2020-02-15T06:59:44Z +12125 2005-08-17T23:24:25Z 136 573 2005-08-25T03:08:25Z 2 2020-02-15T06:59:44Z +12126 2005-08-17T23:25:21Z 2304 302 2005-08-23T21:51:21Z 1 2020-02-15T06:59:44Z +12127 2006-02-14T15:16:03Z 4218 582 2 2020-02-15T06:59:44Z +12128 2005-08-17T23:31:09Z 2252 415 2005-08-24T05:07:09Z 2 2020-02-15T06:59:44Z +12129 2005-08-17T23:31:25Z 891 146 2005-08-26T19:10:25Z 2 2020-02-15T06:59:44Z +12130 2006-02-14T15:16:03Z 1358 516 2 2020-02-15T06:59:44Z +12131 2005-08-17T23:34:16Z 3380 21 2005-08-26T01:18:16Z 1 2020-02-15T06:59:44Z +12132 2005-08-17T23:37:03Z 2600 403 2005-08-22T04:53:03Z 2 2020-02-15T06:59:44Z +12133 2005-08-17T23:47:16Z 1958 132 2005-08-19T03:46:16Z 2 2020-02-15T06:59:44Z +12134 2005-08-17T23:49:43Z 2682 288 2005-08-21T21:00:43Z 1 2020-02-15T06:59:44Z +12135 2005-08-17T23:50:24Z 1019 381 2005-08-23T18:01:24Z 2 2020-02-15T06:59:44Z +12136 2005-08-17T23:51:30Z 3944 527 2005-08-23T01:35:30Z 1 2020-02-15T06:59:44Z +12137 2005-08-17T23:52:26Z 3632 109 2005-08-27T00:19:26Z 1 2020-02-15T06:59:44Z +12138 2005-08-17T23:55:54Z 388 317 2005-08-26T23:32:54Z 1 2020-02-15T06:59:44Z +12139 2005-08-17T23:57:13Z 1537 342 2005-08-24T19:13:13Z 1 2020-02-15T06:59:44Z +12140 2005-08-17T23:57:55Z 322 408 2005-08-21T20:09:55Z 2 2020-02-15T06:59:44Z +12141 2006-02-14T15:16:03Z 731 101 1 2020-02-15T06:59:44Z +12142 2005-08-18T00:04:12Z 3748 373 2005-08-24T01:24:12Z 2 2020-02-15T06:59:44Z +12143 2005-08-18T00:06:26Z 2876 117 2005-08-24T02:45:26Z 2 2020-02-15T06:59:44Z +12144 2006-02-14T15:16:03Z 512 587 1 2020-02-15T06:59:44Z +12145 2005-08-18T00:10:04Z 3482 5 2005-08-26T00:51:04Z 1 2020-02-15T06:59:44Z +12146 2005-08-18T00:10:04Z 3833 434 2005-08-25T19:18:04Z 2 2020-02-15T06:59:44Z +12147 2005-08-18T00:10:20Z 705 41 2005-08-23T20:36:20Z 2 2020-02-15T06:59:44Z +12148 2005-08-18T00:13:15Z 2409 254 2005-08-20T01:27:15Z 2 2020-02-15T06:59:44Z +12149 2005-08-18T00:13:51Z 3696 277 2005-08-26T19:47:51Z 1 2020-02-15T06:59:44Z +12150 2005-08-18T00:13:55Z 3781 555 2005-08-20T23:35:55Z 2 2020-02-15T06:59:44Z +12151 2005-08-18T00:14:03Z 1976 4 2005-08-18T23:52:03Z 2 2020-02-15T06:59:44Z +12152 2005-08-18T00:21:35Z 2797 367 2005-08-22T02:51:35Z 1 2020-02-15T06:59:44Z +12153 2005-08-18T00:22:30Z 3929 387 2005-08-23T04:13:30Z 2 2020-02-15T06:59:44Z +12154 2005-08-18T00:23:56Z 2491 163 2005-08-21T00:31:56Z 2 2020-02-15T06:59:44Z +12155 2005-08-18T00:24:30Z 2065 315 2005-08-18T19:12:30Z 2 2020-02-15T06:59:44Z +12156 2005-08-18T00:27:33Z 3270 212 2005-08-26T01:43:33Z 1 2020-02-15T06:59:44Z +12157 2005-08-18T00:33:45Z 2311 569 2005-08-22T19:33:45Z 1 2020-02-15T06:59:44Z +12158 2005-08-18T00:34:20Z 4121 289 2005-08-22T20:10:20Z 2 2020-02-15T06:59:44Z +12159 2005-08-18T00:36:09Z 2243 106 2005-08-27T06:31:09Z 1 2020-02-15T06:59:44Z +12160 2005-08-18T00:37:59Z 1328 481 2005-08-19T20:51:59Z 1 2020-02-15T06:59:44Z +12161 2005-08-18T00:41:46Z 2420 444 2005-08-26T22:59:46Z 2 2020-02-15T06:59:44Z +12162 2005-08-18T00:44:30Z 2697 284 2005-08-25T03:34:30Z 1 2020-02-15T06:59:44Z +12163 2005-08-18T00:46:01Z 1349 455 2005-08-22T06:16:01Z 1 2020-02-15T06:59:44Z +12164 2005-08-18T00:46:38Z 3849 587 2005-08-19T04:38:38Z 2 2020-02-15T06:59:44Z +12165 2005-08-18T00:53:37Z 4215 24 2005-08-27T00:09:37Z 2 2020-02-15T06:59:44Z +12166 2005-08-18T00:57:06Z 3627 184 2005-08-26T03:13:06Z 2 2020-02-15T06:59:44Z +12167 2005-08-18T01:00:02Z 3085 338 2005-08-21T00:04:02Z 2 2020-02-15T06:59:44Z +12168 2005-08-18T01:03:52Z 2859 535 2005-08-18T20:19:52Z 1 2020-02-15T06:59:44Z +12169 2005-08-18T01:05:54Z 2281 323 2005-08-24T02:16:54Z 2 2020-02-15T06:59:44Z +12170 2005-08-18T01:06:10Z 1125 289 2005-08-25T02:40:10Z 2 2020-02-15T06:59:44Z +12171 2005-08-18T01:06:13Z 454 457 2005-08-22T19:39:13Z 2 2020-02-15T06:59:44Z +12172 2005-08-18T01:07:00Z 1162 226 2005-08-22T21:01:00Z 2 2020-02-15T06:59:44Z +12173 2005-08-18T01:08:34Z 2830 41 2005-08-24T20:52:34Z 1 2020-02-15T06:59:44Z +12174 2005-08-18T01:08:53Z 1458 101 2005-08-20T03:28:53Z 1 2020-02-15T06:59:44Z +12175 2005-08-18T01:10:17Z 4558 328 2005-08-19T05:25:17Z 2 2020-02-15T06:59:44Z +12176 2005-08-18T01:10:33Z 3873 255 2005-08-24T02:45:33Z 2 2020-02-15T06:59:44Z +12177 2005-08-18T01:15:47Z 522 470 2005-08-24T23:23:47Z 2 2020-02-15T06:59:44Z +12178 2005-08-18T01:17:32Z 1152 276 2005-08-25T19:32:32Z 1 2020-02-15T06:59:44Z +12179 2005-08-18T01:21:21Z 1499 222 2005-08-19T00:59:21Z 1 2020-02-15T06:59:44Z +12180 2005-08-18T01:28:15Z 2276 20 2005-08-20T20:52:15Z 2 2020-02-15T06:59:44Z +12181 2005-08-18T01:28:18Z 532 81 2005-08-23T21:17:18Z 2 2020-02-15T06:59:44Z +12182 2005-08-18T01:30:19Z 296 555 2005-08-21T05:52:19Z 1 2020-02-15T06:59:44Z +12183 2005-08-18T01:34:13Z 3153 344 2005-08-24T04:38:13Z 1 2020-02-15T06:59:44Z +12184 2005-08-18T01:36:00Z 1723 51 2005-08-21T01:59:00Z 1 2020-02-15T06:59:44Z +12185 2005-08-18T01:40:14Z 1558 588 2005-08-25T05:04:14Z 1 2020-02-15T06:59:44Z +12186 2005-08-18T01:43:36Z 1342 312 2005-08-23T07:13:36Z 1 2020-02-15T06:59:44Z +12187 2005-08-18T01:45:50Z 3360 38 2005-08-22T20:12:50Z 1 2020-02-15T06:59:44Z +12188 2005-08-18T01:51:43Z 2989 456 2005-08-18T22:23:43Z 1 2020-02-15T06:59:44Z +12189 2005-08-18T01:51:44Z 1764 363 2005-08-26T01:01:44Z 1 2020-02-15T06:59:44Z +12190 2005-08-18T01:54:44Z 2464 28 2005-08-27T04:32:44Z 1 2020-02-15T06:59:44Z +12191 2005-08-18T01:57:11Z 2667 316 2005-08-22T22:53:11Z 2 2020-02-15T06:59:44Z +12192 2005-08-18T02:01:40Z 3450 270 2005-08-21T05:45:40Z 1 2020-02-15T06:59:44Z +12193 2005-08-18T02:03:59Z 1086 290 2005-08-25T05:32:59Z 2 2020-02-15T06:59:44Z +12194 2005-08-18T02:04:47Z 292 558 2005-08-25T20:45:47Z 2 2020-02-15T06:59:44Z +12195 2005-08-18T02:07:49Z 943 347 2005-08-19T23:54:49Z 2 2020-02-15T06:59:44Z +12196 2005-08-18T02:08:48Z 4302 111 2005-08-26T00:39:48Z 1 2020-02-15T06:59:44Z +12197 2005-08-18T02:08:58Z 3687 564 2005-08-26T21:54:58Z 2 2020-02-15T06:59:44Z +12198 2005-08-18T02:09:20Z 1628 86 2005-08-21T21:28:20Z 2 2020-02-15T06:59:44Z +12199 2005-08-18T02:09:23Z 424 96 2005-08-22T20:33:23Z 1 2020-02-15T06:59:44Z +12200 2005-08-18T02:12:33Z 840 52 2005-08-18T20:47:33Z 2 2020-02-15T06:59:44Z +12201 2005-08-18T02:14:06Z 3676 540 2005-08-23T04:44:06Z 1 2020-02-15T06:59:44Z +12202 2005-08-18T02:14:08Z 672 563 2005-08-24T04:35:08Z 1 2020-02-15T06:59:44Z +12203 2005-08-18T02:18:52Z 4228 591 2005-08-22T21:01:52Z 1 2020-02-15T06:59:44Z +12204 2005-08-18T02:20:35Z 304 575 2005-08-26T01:27:35Z 2 2020-02-15T06:59:44Z +12205 2005-08-18T02:21:08Z 774 437 2005-08-27T00:08:08Z 2 2020-02-15T06:59:44Z +12206 2005-08-18T02:22:20Z 3275 254 2005-08-23T05:36:20Z 1 2020-02-15T06:59:44Z +12207 2005-08-18T02:24:07Z 3745 265 2005-08-22T07:53:07Z 1 2020-02-15T06:59:44Z +12208 2005-08-18T02:25:25Z 2039 551 2005-08-20T04:53:25Z 2 2020-02-15T06:59:44Z +12209 2005-08-18T02:27:20Z 279 243 2005-08-21T00:41:20Z 2 2020-02-15T06:59:44Z +12210 2005-08-18T02:27:29Z 3035 217 2005-08-20T23:32:29Z 2 2020-02-15T06:59:44Z +12211 2005-08-18T02:31:18Z 1484 19 2005-08-26T02:36:18Z 1 2020-02-15T06:59:44Z +12212 2005-08-18T02:33:29Z 3898 449 2005-08-25T07:10:29Z 2 2020-02-15T06:59:44Z +12213 2005-08-18T02:33:55Z 4058 157 2005-08-24T03:14:55Z 1 2020-02-15T06:59:44Z +12214 2005-08-18T02:34:22Z 2094 231 2005-08-21T07:48:22Z 2 2020-02-15T06:59:44Z +12215 2005-08-18T02:35:39Z 4095 47 2005-08-24T00:36:39Z 1 2020-02-15T06:59:44Z +12216 2005-08-18T02:37:07Z 4139 131 2005-08-19T02:09:07Z 2 2020-02-15T06:59:44Z +12217 2005-08-18T02:44:44Z 2556 105 2005-08-24T03:27:44Z 1 2020-02-15T06:59:44Z +12218 2005-08-18T02:48:14Z 1933 70 2005-08-21T01:52:14Z 2 2020-02-15T06:59:44Z +12219 2005-08-18T02:49:54Z 2249 271 2005-08-23T07:52:54Z 1 2020-02-15T06:59:44Z +12220 2005-08-18T02:50:02Z 982 530 2005-08-22T00:20:02Z 1 2020-02-15T06:59:44Z +12221 2005-08-18T02:50:51Z 2488 98 2005-08-27T06:22:51Z 2 2020-02-15T06:59:44Z +12222 2006-02-14T15:16:03Z 3949 22 1 2020-02-15T06:59:44Z +12223 2005-08-18T02:58:40Z 4142 397 2005-08-23T23:30:40Z 2 2020-02-15T06:59:44Z +12224 2005-08-18T02:59:09Z 1781 372 2005-08-19T06:22:09Z 1 2020-02-15T06:59:44Z +12225 2005-08-18T03:00:11Z 1876 306 2005-08-24T05:01:11Z 1 2020-02-15T06:59:44Z +12226 2005-08-18T03:00:48Z 682 234 2005-08-25T00:43:48Z 2 2020-02-15T06:59:44Z +12227 2005-08-18T03:04:28Z 3671 591 2005-08-21T08:52:28Z 2 2020-02-15T06:59:44Z +12228 2005-08-18T03:08:10Z 2772 9 2005-08-20T02:48:10Z 1 2020-02-15T06:59:44Z +12229 2005-08-18T03:08:23Z 1123 382 2005-08-22T03:42:23Z 1 2020-02-15T06:59:44Z +12230 2005-08-18T03:11:04Z 1910 231 2005-08-27T04:06:04Z 1 2020-02-15T06:59:44Z +12231 2005-08-18T03:11:44Z 1115 231 2005-08-24T03:26:44Z 1 2020-02-15T06:59:44Z +12232 2005-08-18T03:14:14Z 2399 87 2005-08-19T05:44:14Z 2 2020-02-15T06:59:44Z +12233 2005-08-18T03:16:54Z 174 535 2005-08-22T04:48:54Z 2 2020-02-15T06:59:44Z +12234 2005-08-18T03:17:33Z 3823 352 2005-08-25T04:44:33Z 2 2020-02-15T06:59:44Z +12235 2005-08-18T03:17:50Z 957 595 2005-08-20T02:49:50Z 1 2020-02-15T06:59:44Z +12236 2005-08-18T03:19:29Z 1190 474 2005-08-23T07:39:29Z 2 2020-02-15T06:59:44Z +12237 2005-08-18T03:24:38Z 4422 381 2005-08-25T09:05:38Z 1 2020-02-15T06:59:44Z +12238 2005-08-18T03:25:08Z 4043 46 2005-08-20T02:41:08Z 2 2020-02-15T06:59:44Z +12239 2005-08-18T03:26:42Z 1948 75 2005-08-24T23:48:42Z 1 2020-02-15T06:59:44Z +12240 2005-08-18T03:27:11Z 1168 30 2005-08-26T04:34:11Z 2 2020-02-15T06:59:44Z +12241 2005-08-18T03:33:17Z 1261 248 2005-08-21T03:13:17Z 2 2020-02-15T06:59:44Z +12242 2005-08-18T03:37:31Z 2095 121 2005-08-25T06:50:31Z 1 2020-02-15T06:59:44Z +12243 2005-08-18T03:38:54Z 1829 354 2005-08-27T06:56:54Z 2 2020-02-15T06:59:44Z +12244 2005-08-18T03:39:11Z 4441 362 2005-08-21T02:57:11Z 2 2020-02-15T06:59:44Z +12245 2005-08-18T03:46:40Z 2960 576 2005-08-24T22:27:40Z 2 2020-02-15T06:59:44Z +12246 2005-08-18T03:48:41Z 3199 258 2005-08-25T05:12:41Z 1 2020-02-15T06:59:44Z +12247 2005-08-18T03:51:51Z 2264 254 2005-08-24T05:36:51Z 2 2020-02-15T06:59:44Z +12248 2005-08-18T03:53:18Z 2120 562 2005-08-22T04:53:18Z 1 2020-02-15T06:59:44Z +12249 2005-08-18T03:53:34Z 3586 135 2005-08-21T01:14:34Z 1 2020-02-15T06:59:44Z +12250 2005-08-18T03:57:29Z 921 1 2005-08-22T23:05:29Z 1 2020-02-15T06:59:44Z +12251 2005-08-18T03:59:02Z 3044 276 2005-08-19T02:38:02Z 1 2020-02-15T06:59:44Z +12252 2005-08-18T03:59:51Z 127 350 2005-08-25T08:54:51Z 2 2020-02-15T06:59:44Z +12253 2005-08-18T04:00:50Z 566 446 2005-08-19T04:43:50Z 1 2020-02-15T06:59:44Z +12254 2005-08-18T04:05:29Z 2858 6 2005-08-23T04:17:29Z 1 2020-02-15T06:59:44Z +12255 2005-08-18T04:07:20Z 2100 266 2005-08-21T22:19:20Z 1 2020-02-15T06:59:44Z +12256 2005-08-18T04:09:39Z 2975 572 2005-08-22T01:53:39Z 2 2020-02-15T06:59:45Z +12257 2005-08-18T04:11:03Z 269 87 2005-08-25T01:20:03Z 2 2020-02-15T06:59:45Z +12258 2005-08-18T04:11:13Z 2861 83 2005-08-21T23:40:13Z 2 2020-02-15T06:59:45Z +12259 2005-08-18T04:14:35Z 2904 429 2005-08-18T22:30:35Z 2 2020-02-15T06:59:45Z +12260 2005-08-18T04:15:43Z 1352 150 2005-08-26T23:31:43Z 1 2020-02-15T06:59:45Z +12261 2005-08-18T04:16:06Z 4076 485 2005-08-27T08:04:06Z 1 2020-02-15T06:59:45Z +12262 2005-08-18T04:16:15Z 591 125 2005-08-20T09:16:15Z 1 2020-02-15T06:59:45Z +12263 2005-08-18T04:16:18Z 4053 131 2005-08-21T07:22:18Z 1 2020-02-15T06:59:45Z +12264 2005-08-18T04:17:33Z 3073 87 2005-08-26T08:07:33Z 1 2020-02-15T06:59:45Z +12265 2005-08-18T04:22:01Z 537 247 2005-08-20T03:22:01Z 1 2020-02-15T06:59:45Z +12266 2005-08-18T04:22:31Z 2192 467 2005-08-19T04:25:31Z 2 2020-02-15T06:59:45Z +12267 2005-08-18T04:24:30Z 652 388 2005-08-26T03:01:30Z 2 2020-02-15T06:59:45Z +12268 2005-08-18T04:26:54Z 93 39 2005-08-23T06:40:54Z 2 2020-02-15T06:59:45Z +12269 2005-08-18T04:27:54Z 724 573 2005-08-25T07:03:54Z 1 2020-02-15T06:59:45Z +12270 2005-08-18T04:32:05Z 2456 190 2005-08-21T01:37:05Z 2 2020-02-15T06:59:45Z +12271 2005-08-18T04:33:11Z 3866 471 2005-08-20T23:10:11Z 1 2020-02-15T06:59:45Z +12272 2005-08-18T04:39:10Z 1964 15 2005-08-24T09:41:10Z 1 2020-02-15T06:59:45Z +12273 2005-08-18T04:40:50Z 3539 431 2005-08-25T01:44:50Z 2 2020-02-15T06:59:45Z +12274 2005-08-18T04:41:47Z 265 47 2005-08-27T07:00:47Z 1 2020-02-15T06:59:45Z +12275 2005-08-18T04:42:02Z 1474 507 2005-08-25T00:50:02Z 1 2020-02-15T06:59:45Z +12276 2005-08-18T04:43:22Z 4491 397 2005-08-22T01:49:22Z 2 2020-02-15T06:59:45Z +12277 2006-02-14T15:16:03Z 407 33 2 2020-02-15T06:59:45Z +12278 2005-08-18T04:46:45Z 3205 294 2005-08-24T08:59:45Z 2 2020-02-15T06:59:45Z +12279 2005-08-18T04:47:30Z 4159 421 2005-08-19T09:47:30Z 2 2020-02-15T06:59:45Z +12280 2005-08-18T04:49:27Z 4032 46 2005-08-21T03:39:27Z 2 2020-02-15T06:59:45Z +12281 2005-08-18T04:50:32Z 4576 417 2005-08-21T00:14:32Z 2 2020-02-15T06:59:45Z +12282 2005-08-18T04:54:20Z 3623 173 2005-08-23T05:28:20Z 2 2020-02-15T06:59:45Z +12283 2005-08-18T04:54:25Z 574 240 2005-08-23T04:02:25Z 1 2020-02-15T06:59:45Z +12284 2005-08-18T04:55:49Z 3162 147 2005-08-22T08:45:49Z 2 2020-02-15T06:59:45Z +12285 2005-08-18T04:56:43Z 3531 215 2005-08-19T23:32:43Z 2 2020-02-15T06:59:45Z +12286 2005-08-18T04:57:59Z 3729 34 2005-08-18T23:20:59Z 2 2020-02-15T06:59:45Z +12287 2005-08-18T04:58:06Z 2238 136 2005-08-24T00:06:06Z 1 2020-02-15T06:59:45Z +12288 2005-08-18T05:01:20Z 4401 523 2005-08-25T09:51:20Z 2 2020-02-15T06:59:45Z +12289 2005-08-18T05:05:28Z 443 575 2005-08-26T09:02:28Z 1 2020-02-15T06:59:45Z +12290 2005-08-18T05:08:03Z 4100 283 2005-08-23T08:10:03Z 2 2020-02-15T06:59:45Z +12291 2005-08-18T05:08:37Z 4270 73 2005-08-23T09:01:37Z 1 2020-02-15T06:59:45Z +12292 2005-08-18T05:08:54Z 1417 58 2005-08-27T02:51:54Z 1 2020-02-15T06:59:45Z +12293 2005-08-18T05:13:36Z 614 514 2005-08-25T04:00:36Z 2 2020-02-15T06:59:45Z +12294 2005-08-18T05:14:44Z 2479 4 2005-08-27T01:32:44Z 2 2020-02-15T06:59:45Z +12295 2005-08-18T05:15:46Z 1651 532 2005-08-26T02:23:46Z 2 2020-02-15T06:59:45Z +12296 2005-08-18T05:16:28Z 2091 258 2005-08-22T10:32:28Z 1 2020-02-15T06:59:45Z +12297 2005-08-18T05:19:57Z 903 436 2005-08-21T00:53:57Z 1 2020-02-15T06:59:45Z +12298 2005-08-18T05:30:31Z 904 46 2005-08-27T07:33:31Z 1 2020-02-15T06:59:45Z +12299 2005-08-18T05:32:32Z 892 176 2005-08-22T08:14:32Z 2 2020-02-15T06:59:45Z +12300 2005-08-18T05:36:14Z 3213 540 2005-08-25T00:20:14Z 2 2020-02-15T06:59:45Z +12301 2005-08-18T05:36:20Z 2293 317 2005-08-23T03:15:20Z 1 2020-02-15T06:59:45Z +12302 2005-08-18T05:41:39Z 765 514 2005-08-22T06:02:39Z 1 2020-02-15T06:59:45Z +12303 2005-08-18T05:43:22Z 1604 245 2005-08-27T08:54:22Z 2 2020-02-15T06:59:45Z +12304 2005-08-18T05:44:29Z 1381 228 2005-08-24T04:31:29Z 1 2020-02-15T06:59:45Z +12305 2005-08-18T05:46:29Z 4463 534 2005-08-22T11:14:29Z 2 2020-02-15T06:59:45Z +12306 2005-08-18T05:47:55Z 3853 541 2005-08-21T01:56:55Z 1 2020-02-15T06:59:45Z +12307 2005-08-18T05:48:23Z 2679 187 2005-08-26T02:32:23Z 1 2020-02-15T06:59:45Z +12308 2005-08-18T05:48:53Z 2877 569 2005-08-22T09:03:53Z 1 2020-02-15T06:59:45Z +12309 2005-08-18T05:58:40Z 762 9 2005-08-20T02:20:40Z 2 2020-02-15T06:59:45Z +12310 2005-08-18T06:02:34Z 3814 385 2005-08-24T01:08:34Z 2 2020-02-15T06:59:45Z +12311 2005-08-18T06:07:00Z 1650 211 2005-08-21T07:54:00Z 2 2020-02-15T06:59:45Z +12312 2005-08-18T06:07:26Z 80 185 2005-08-21T02:07:26Z 2 2020-02-15T06:59:45Z +12313 2005-08-18T06:07:31Z 2053 180 2005-08-27T00:20:31Z 1 2020-02-15T06:59:45Z +12314 2005-08-18T06:10:02Z 2204 455 2005-08-25T02:48:02Z 1 2020-02-15T06:59:45Z +12315 2005-08-18T06:15:06Z 2012 579 2005-08-24T07:45:06Z 2 2020-02-15T06:59:45Z +12316 2005-08-18T06:16:09Z 4325 94 2005-08-27T05:54:09Z 2 2020-02-15T06:59:45Z +12317 2005-08-18T06:17:06Z 90 510 2005-08-22T08:56:06Z 1 2020-02-15T06:59:45Z +12318 2005-08-18T06:21:56Z 3694 332 2005-08-27T06:07:56Z 1 2020-02-15T06:59:45Z +12319 2005-08-18T06:26:45Z 999 368 2005-08-23T01:35:45Z 1 2020-02-15T06:59:45Z +12320 2005-08-18T06:26:51Z 3248 267 2005-08-20T04:00:51Z 1 2020-02-15T06:59:45Z +12321 2005-08-18T06:27:05Z 516 274 2005-08-24T02:26:05Z 1 2020-02-15T06:59:45Z +12322 2005-08-18T06:35:28Z 4235 365 2005-08-23T07:34:28Z 1 2020-02-15T06:59:45Z +12323 2005-08-18T06:36:22Z 4107 336 2005-08-26T11:36:22Z 1 2020-02-15T06:59:45Z +12324 2005-08-18T06:38:20Z 2436 221 2005-08-20T02:28:20Z 2 2020-02-15T06:59:45Z +12325 2005-08-18T06:41:30Z 1844 404 2005-08-26T02:49:30Z 1 2020-02-15T06:59:45Z +12326 2005-08-18T06:41:59Z 1865 114 2005-08-19T10:16:59Z 2 2020-02-15T06:59:45Z +12327 2005-08-18T06:43:22Z 2425 261 2005-08-25T10:50:22Z 2 2020-02-15T06:59:45Z +12328 2005-08-18T06:43:56Z 1355 77 2005-08-23T10:19:56Z 2 2020-02-15T06:59:45Z +12329 2005-08-18T06:44:30Z 3127 397 2005-08-25T04:05:30Z 1 2020-02-15T06:59:45Z +12330 2005-08-18T06:46:33Z 889 587 2005-08-26T11:35:33Z 2 2020-02-15T06:59:45Z +12331 2005-08-18T06:47:19Z 4565 483 2005-08-25T05:51:19Z 2 2020-02-15T06:59:45Z +12332 2005-08-18T06:51:05Z 627 235 2005-08-20T04:28:05Z 2 2020-02-15T06:59:45Z +12333 2005-08-18T06:51:39Z 4370 18 2005-08-21T01:44:39Z 2 2020-02-15T06:59:45Z +12334 2005-08-18T06:52:36Z 2629 160 2005-08-25T12:06:36Z 1 2020-02-15T06:59:45Z +12335 2005-08-18T06:59:15Z 2776 150 2005-08-20T06:47:15Z 1 2020-02-15T06:59:45Z +12336 2005-08-18T06:59:41Z 2484 75 2005-08-23T01:36:41Z 1 2020-02-15T06:59:45Z +12337 2005-08-18T07:02:24Z 4221 117 2005-08-20T10:11:24Z 1 2020-02-15T06:59:45Z +12338 2005-08-18T07:04:24Z 274 408 2005-08-19T08:36:24Z 2 2020-02-15T06:59:45Z +12339 2005-08-18T07:05:06Z 1600 370 2005-08-19T02:27:06Z 2 2020-02-15T06:59:45Z +12340 2005-08-18T07:07:01Z 3561 239 2005-08-20T05:06:01Z 1 2020-02-15T06:59:45Z +12341 2005-08-18T07:09:27Z 130 154 2005-08-21T03:44:27Z 1 2020-02-15T06:59:45Z +12342 2005-08-18T07:12:46Z 1408 63 2005-08-21T07:44:46Z 1 2020-02-15T06:59:45Z +12343 2005-08-18T07:15:13Z 448 507 2005-08-27T11:07:13Z 1 2020-02-15T06:59:45Z +12344 2005-08-18T07:15:19Z 3675 269 2005-08-24T04:58:19Z 2 2020-02-15T06:59:45Z +12345 2005-08-18T07:16:58Z 2359 44 2005-08-25T05:50:58Z 1 2020-02-15T06:59:45Z +12346 2005-08-18T07:17:55Z 1200 265 2005-08-21T11:35:55Z 2 2020-02-15T06:59:45Z +12347 2005-08-18T07:18:10Z 1788 454 2005-08-19T05:49:10Z 1 2020-02-15T06:59:45Z +12348 2005-08-18T07:21:47Z 434 186 2005-08-25T04:41:47Z 2 2020-02-15T06:59:45Z +12349 2005-08-18T07:23:42Z 4191 545 2005-08-19T04:25:42Z 1 2020-02-15T06:59:45Z +12350 2005-08-18T07:29:46Z 1333 172 2005-08-21T12:50:46Z 1 2020-02-15T06:59:45Z +12351 2005-08-18T07:32:12Z 2299 95 2005-08-24T04:29:12Z 2 2020-02-15T06:59:45Z +12352 2006-02-14T15:16:03Z 643 155 1 2020-02-15T06:59:45Z +12353 2005-08-18T07:33:08Z 1594 141 2005-08-21T03:42:08Z 2 2020-02-15T06:59:45Z +12354 2005-08-18T07:34:07Z 2913 499 2005-08-26T05:56:07Z 1 2020-02-15T06:59:45Z +12355 2005-08-18T07:36:23Z 4112 452 2005-08-20T08:59:23Z 1 2020-02-15T06:59:45Z +12356 2005-08-18T07:37:05Z 493 529 2005-08-24T10:49:05Z 1 2020-02-15T06:59:45Z +12357 2005-08-18T07:40:52Z 166 19 2005-08-22T02:51:52Z 1 2020-02-15T06:59:45Z +12358 2005-08-18T07:41:43Z 504 16 2005-08-20T03:46:43Z 1 2020-02-15T06:59:45Z +12359 2005-08-18T07:44:05Z 4172 28 2005-08-19T02:26:05Z 1 2020-02-15T06:59:45Z +12360 2005-08-18T07:46:35Z 929 123 2005-08-26T12:01:35Z 1 2020-02-15T06:59:45Z +12361 2005-08-18T07:47:31Z 1418 250 2005-08-22T12:08:31Z 2 2020-02-15T06:59:45Z +12362 2005-08-18T07:48:05Z 3131 367 2005-08-20T05:16:05Z 2 2020-02-15T06:59:45Z +12363 2005-08-18T07:52:49Z 3447 181 2005-08-26T03:20:49Z 2 2020-02-15T06:59:45Z +12364 2005-08-18T07:55:09Z 3398 84 2005-08-19T05:29:09Z 2 2020-02-15T06:59:45Z +12365 2005-08-18T07:55:09Z 4350 303 2005-08-24T05:42:09Z 1 2020-02-15T06:59:45Z +12366 2005-08-18T07:55:14Z 3799 115 2005-08-22T06:12:14Z 1 2020-02-15T06:59:45Z +12367 2005-08-18T07:57:14Z 1822 7 2005-08-27T07:07:14Z 2 2020-02-15T06:59:45Z +12368 2005-08-18T07:57:38Z 3777 392 2005-08-25T05:49:38Z 2 2020-02-15T06:59:45Z +12369 2005-08-18T07:57:43Z 484 337 2005-08-26T09:36:43Z 1 2020-02-15T06:59:45Z +12370 2005-08-18T07:57:47Z 3343 503 2005-08-22T11:32:47Z 1 2020-02-15T06:59:45Z +12371 2005-08-18T08:02:46Z 622 451 2005-08-19T02:50:46Z 2 2020-02-15T06:59:45Z +12372 2005-08-18T08:04:35Z 2982 131 2005-08-27T08:13:35Z 2 2020-02-15T06:59:45Z +12373 2005-08-18T08:07:25Z 777 367 2005-08-27T03:41:25Z 1 2020-02-15T06:59:45Z +12374 2005-08-18T08:07:45Z 939 74 2005-08-26T10:42:45Z 2 2020-02-15T06:59:45Z +12375 2005-08-18T08:20:08Z 3508 365 2005-08-21T08:50:08Z 2 2020-02-15T06:59:45Z +12376 2005-08-18T08:20:29Z 852 116 2005-08-20T13:20:29Z 1 2020-02-15T06:59:45Z +12377 2005-08-18T08:26:05Z 4564 31 2005-08-23T02:51:05Z 2 2020-02-15T06:59:45Z +12378 2005-08-18T08:26:13Z 4418 266 2005-08-19T07:21:13Z 1 2020-02-15T06:59:45Z +12379 2005-08-18T08:26:48Z 2879 99 2005-08-19T10:08:48Z 2 2020-02-15T06:59:45Z +12380 2005-08-18T08:27:28Z 55 215 2005-08-25T02:58:28Z 2 2020-02-15T06:59:45Z +12381 2005-08-18T08:31:43Z 3651 190 2005-08-23T12:24:43Z 2 2020-02-15T06:59:45Z +12382 2005-08-18T08:32:33Z 3049 566 2005-08-26T03:45:33Z 2 2020-02-15T06:59:45Z +12383 2005-08-18T08:36:03Z 1641 295 2005-08-23T03:30:03Z 2 2020-02-15T06:59:45Z +12384 2005-08-18T08:36:58Z 2557 193 2005-08-23T05:08:58Z 1 2020-02-15T06:59:45Z +12385 2005-08-18T08:39:33Z 3143 146 2005-08-21T14:22:33Z 1 2020-02-15T06:59:45Z +12386 2005-08-18T08:45:57Z 3303 199 2005-08-24T04:50:57Z 2 2020-02-15T06:59:45Z +12387 2005-08-18T08:46:24Z 3604 530 2005-08-21T02:56:24Z 2 2020-02-15T06:59:45Z +12388 2005-08-18T08:48:09Z 4016 555 2005-08-26T09:05:09Z 2 2020-02-15T06:59:45Z +12389 2005-08-18T08:48:36Z 1891 394 2005-08-22T08:59:36Z 2 2020-02-15T06:59:45Z +12390 2005-08-18T08:51:42Z 3603 377 2005-08-23T13:06:42Z 1 2020-02-15T06:59:45Z +12391 2005-08-18T08:52:53Z 1507 307 2005-08-22T12:15:53Z 2 2020-02-15T06:59:45Z +12392 2005-08-18T08:57:58Z 2695 113 2005-08-25T05:20:58Z 2 2020-02-15T06:59:45Z +12393 2005-08-18T09:02:41Z 2435 396 2005-08-26T12:47:41Z 1 2020-02-15T06:59:45Z +12394 2005-08-18T09:05:15Z 3605 330 2005-08-23T11:10:15Z 1 2020-02-15T06:59:45Z +12395 2005-08-18T09:06:30Z 2020 541 2005-08-21T12:09:30Z 2 2020-02-15T06:59:45Z +12396 2005-08-18T09:11:23Z 3624 40 2005-08-26T05:35:23Z 2 2020-02-15T06:59:45Z +12397 2005-08-18T09:12:52Z 1872 371 2005-08-27T10:44:52Z 2 2020-02-15T06:59:45Z +12398 2005-08-18T09:13:24Z 4247 321 2005-08-27T14:58:24Z 1 2020-02-15T06:59:45Z +12399 2005-08-18T09:13:42Z 3950 347 2005-08-27T11:44:42Z 1 2020-02-15T06:59:45Z +12400 2005-08-18T09:19:12Z 1767 10 2005-08-26T06:52:12Z 1 2020-02-15T06:59:45Z +12401 2005-08-18T09:20:51Z 4314 479 2005-08-21T05:50:51Z 2 2020-02-15T06:59:45Z +12402 2005-08-18T09:27:34Z 385 123 2005-08-25T13:10:34Z 2 2020-02-15T06:59:45Z +12403 2005-08-18T09:31:05Z 2124 440 2005-08-23T09:54:05Z 2 2020-02-15T06:59:45Z +12404 2005-08-18T09:36:34Z 1097 342 2005-08-23T10:12:34Z 2 2020-02-15T06:59:45Z +12405 2005-08-18T09:37:30Z 228 266 2005-08-27T13:11:30Z 2 2020-02-15T06:59:45Z +12406 2005-08-18T09:38:02Z 4368 510 2005-08-22T12:56:02Z 1 2020-02-15T06:59:45Z +12407 2005-08-18T09:39:26Z 391 220 2005-08-24T05:19:26Z 2 2020-02-15T06:59:45Z +12408 2005-08-18T09:40:38Z 2360 143 2005-08-19T04:45:38Z 1 2020-02-15T06:59:45Z +12409 2005-08-18T09:43:58Z 2568 64 2005-08-19T15:02:58Z 2 2020-02-15T06:59:45Z +12410 2005-08-18T09:45:33Z 1904 210 2005-08-27T08:50:33Z 1 2020-02-15T06:59:45Z +12411 2005-08-18T09:47:57Z 1234 181 2005-08-21T05:54:57Z 2 2020-02-15T06:59:45Z +12412 2005-08-18T09:49:52Z 1578 75 2005-08-23T12:32:52Z 2 2020-02-15T06:59:45Z +12413 2005-08-18T09:50:34Z 3466 366 2005-08-23T05:57:34Z 2 2020-02-15T06:59:45Z +12414 2005-08-18T09:50:40Z 4454 32 2005-08-26T06:45:40Z 2 2020-02-15T06:59:45Z +12415 2005-08-18T09:54:01Z 392 443 2005-08-24T15:41:01Z 1 2020-02-15T06:59:45Z +12416 2005-08-18T09:56:48Z 3784 515 2005-08-22T12:34:48Z 1 2020-02-15T06:59:45Z +12417 2005-08-18T09:57:00Z 3500 71 2005-08-19T08:56:00Z 1 2020-02-15T06:59:45Z +12418 2005-08-18T09:59:36Z 4186 241 2005-08-19T11:35:36Z 2 2020-02-15T06:59:45Z +12419 2005-08-18T10:01:48Z 3111 133 2005-08-19T13:40:48Z 1 2020-02-15T06:59:45Z +12420 2005-08-18T10:01:50Z 452 477 2005-08-22T08:14:50Z 1 2020-02-15T06:59:45Z +12421 2005-08-18T10:04:06Z 4067 158 2005-08-24T08:45:06Z 2 2020-02-15T06:59:45Z +12422 2005-08-18T10:13:12Z 1855 451 2005-08-20T14:36:12Z 2 2020-02-15T06:59:45Z +12423 2005-08-18T10:14:52Z 1014 470 2005-08-26T13:16:52Z 2 2020-02-15T06:59:45Z +12424 2005-08-18T10:16:57Z 2055 319 2005-08-27T04:41:57Z 1 2020-02-15T06:59:45Z +12425 2005-08-18T10:18:06Z 2000 405 2005-08-27T08:16:06Z 2 2020-02-15T06:59:45Z +12426 2005-08-18T10:24:11Z 799 75 2005-08-22T15:34:11Z 2 2020-02-15T06:59:45Z +12427 2005-08-18T10:24:17Z 1759 333 2005-08-27T14:22:17Z 1 2020-02-15T06:59:45Z +12428 2005-08-18T10:24:21Z 3735 121 2005-08-24T05:12:21Z 1 2020-02-15T06:59:45Z +12429 2005-08-18T10:26:46Z 2994 436 2005-08-27T13:23:46Z 1 2020-02-15T06:59:45Z +12430 2005-08-18T10:32:41Z 2840 196 2005-08-22T16:16:41Z 1 2020-02-15T06:59:45Z +12431 2005-08-18T10:34:59Z 4461 89 2005-08-22T14:42:59Z 1 2020-02-15T06:59:45Z +12432 2005-08-18T10:35:13Z 2543 263 2005-08-26T08:20:13Z 2 2020-02-15T06:59:45Z +12433 2005-08-18T10:37:49Z 1776 552 2005-08-19T08:00:49Z 1 2020-02-15T06:59:45Z +12434 2005-08-18T10:38:08Z 3078 314 2005-08-22T16:14:08Z 2 2020-02-15T06:59:45Z +12435 2005-08-18T10:38:31Z 3211 160 2005-08-26T15:18:31Z 1 2020-02-15T06:59:45Z +12436 2005-08-18T10:41:05Z 3761 499 2005-08-23T07:36:05Z 2 2020-02-15T06:59:45Z +12437 2005-08-18T10:42:43Z 4036 467 2005-08-26T11:58:43Z 2 2020-02-15T06:59:45Z +12438 2005-08-18T10:42:52Z 2043 186 2005-08-25T11:42:52Z 1 2020-02-15T06:59:45Z +12439 2005-08-18T10:44:57Z 3204 153 2005-08-22T06:51:57Z 1 2020-02-15T06:59:45Z +12440 2005-08-18T10:47:35Z 2779 474 2005-08-21T11:10:35Z 2 2020-02-15T06:59:45Z +12441 2005-08-18T10:47:57Z 2163 561 2005-08-26T07:11:57Z 2 2020-02-15T06:59:45Z +12442 2005-08-18T10:50:07Z 78 270 2005-08-21T08:06:07Z 1 2020-02-15T06:59:45Z +12443 2005-08-18T10:50:59Z 2048 233 2005-08-26T07:48:59Z 2 2020-02-15T06:59:45Z +12444 2005-08-18T10:53:12Z 1639 285 2005-08-19T13:54:12Z 2 2020-02-15T06:59:45Z +12445 2005-08-18T10:56:20Z 3347 350 2005-08-21T16:46:20Z 1 2020-02-15T06:59:45Z +12446 2005-08-18T10:56:29Z 2138 448 2005-08-23T05:30:29Z 1 2020-02-15T06:59:45Z +12447 2005-08-18T10:57:01Z 4084 469 2005-08-27T06:05:01Z 1 2020-02-15T06:59:45Z +12448 2005-08-18T10:59:04Z 3889 72 2005-08-21T06:45:04Z 2 2020-02-15T06:59:45Z +12449 2005-08-18T11:03:04Z 663 285 2005-08-19T07:34:04Z 1 2020-02-15T06:59:45Z +12450 2005-08-18T11:04:04Z 3439 518 2005-08-22T07:24:04Z 1 2020-02-15T06:59:45Z +12451 2005-08-18T11:04:42Z 2780 183 2005-08-20T08:20:42Z 1 2020-02-15T06:59:45Z +12452 2005-08-18T11:14:35Z 4260 358 2005-08-27T09:09:35Z 1 2020-02-15T06:59:45Z +12453 2005-08-18T11:17:07Z 2487 104 2005-08-25T12:34:07Z 1 2020-02-15T06:59:45Z +12454 2005-08-18T11:19:02Z 4219 184 2005-08-19T12:00:02Z 2 2020-02-15T06:59:45Z +12455 2005-08-18T11:19:47Z 4478 46 2005-08-22T16:08:47Z 2 2020-02-15T06:59:45Z +12456 2005-08-18T11:21:51Z 4578 85 2005-08-21T13:28:51Z 1 2020-02-15T06:59:45Z +12457 2006-02-14T15:16:03Z 2145 80 2 2020-02-15T06:59:45Z +12458 2005-08-18T11:22:53Z 4579 277 2005-08-22T14:30:53Z 2 2020-02-15T06:59:45Z +12459 2005-08-18T11:25:11Z 421 39 2005-08-22T06:13:11Z 1 2020-02-15T06:59:45Z +12460 2005-08-18T11:25:13Z 3550 419 2005-08-27T06:27:13Z 2 2020-02-15T06:59:45Z +12461 2005-08-18T11:28:14Z 1569 27 2005-08-21T09:47:14Z 1 2020-02-15T06:59:45Z +12462 2005-08-18T11:28:55Z 890 574 2005-08-20T12:06:55Z 2 2020-02-15T06:59:45Z +12463 2005-08-18T11:31:34Z 30 214 2005-08-23T12:04:34Z 1 2020-02-15T06:59:45Z +12464 2005-08-18T11:33:34Z 1954 157 2005-08-27T14:33:34Z 1 2020-02-15T06:59:45Z +12465 2005-08-18T11:35:02Z 1733 486 2005-08-21T11:52:02Z 2 2020-02-15T06:59:45Z +12466 2005-08-18T11:36:55Z 2686 462 2005-08-23T13:46:55Z 1 2020-02-15T06:59:45Z +12467 2005-08-18T11:40:09Z 1414 212 2005-08-19T13:33:09Z 2 2020-02-15T06:59:45Z +12468 2005-08-18T11:41:47Z 1689 80 2005-08-24T16:43:47Z 2 2020-02-15T06:59:45Z +12469 2005-08-18T11:53:07Z 2395 237 2005-08-24T16:00:07Z 1 2020-02-15T06:59:45Z +12470 2005-08-18T11:55:42Z 1290 82 2005-08-24T08:27:42Z 2 2020-02-15T06:59:45Z +12471 2005-08-18T11:57:00Z 242 101 2005-08-26T13:17:00Z 2 2020-02-15T06:59:45Z +12472 2005-08-18T11:58:48Z 4458 297 2005-08-27T16:37:48Z 2 2020-02-15T06:59:45Z +12473 2005-08-18T11:59:44Z 1237 303 2005-08-21T13:38:44Z 1 2020-02-15T06:59:45Z +12474 2005-08-18T12:10:03Z 2240 78 2005-08-27T17:05:03Z 1 2020-02-15T06:59:45Z +12475 2005-08-18T12:14:21Z 3118 401 2005-08-24T14:43:21Z 2 2020-02-15T06:59:45Z +12476 2005-08-18T12:22:40Z 2784 122 2005-08-20T17:29:40Z 2 2020-02-15T06:59:45Z +12477 2005-08-18T12:25:01Z 4516 74 2005-08-25T17:25:01Z 2 2020-02-15T06:59:45Z +12478 2005-08-18T12:25:16Z 4512 42 2005-08-22T06:27:16Z 2 2020-02-15T06:59:45Z +12479 2005-08-18T12:26:37Z 1119 401 2005-08-21T18:08:37Z 2 2020-02-15T06:59:45Z +12480 2005-08-18T12:26:43Z 3339 446 2005-08-26T13:23:43Z 1 2020-02-15T06:59:45Z +12481 2005-08-18T12:31:34Z 2424 218 2005-08-21T16:08:34Z 2 2020-02-15T06:59:45Z +12482 2005-08-18T12:37:36Z 3778 247 2005-08-26T09:53:36Z 1 2020-02-15T06:59:45Z +12483 2005-08-18T12:38:37Z 1805 488 2005-08-24T13:26:37Z 1 2020-02-15T06:59:45Z +12484 2005-08-18T12:39:37Z 3690 300 2005-08-24T08:47:37Z 2 2020-02-15T06:59:45Z +12485 2005-08-18T12:41:41Z 422 345 2005-08-22T16:38:41Z 2 2020-02-15T06:59:45Z +12486 2005-08-18T12:42:50Z 2991 515 2005-08-27T13:41:50Z 2 2020-02-15T06:59:45Z +12487 2005-08-18T12:45:24Z 2554 485 2005-08-22T12:39:24Z 1 2020-02-15T06:59:45Z +12488 2005-08-18T12:48:22Z 3323 29 2005-08-19T16:19:22Z 1 2020-02-15T06:59:45Z +12489 2006-02-14T15:16:03Z 387 60 2 2020-02-15T06:59:45Z +12490 2005-08-18T12:48:45Z 1577 187 2005-08-27T15:53:45Z 1 2020-02-15T06:59:45Z +12491 2005-08-18T12:48:45Z 2354 247 2005-08-22T12:40:45Z 2 2020-02-15T06:59:45Z +12492 2005-08-18T12:49:04Z 2839 224 2005-08-26T17:55:04Z 1 2020-02-15T06:59:45Z +12493 2005-08-18T12:53:38Z 3029 487 2005-08-27T13:15:38Z 2 2020-02-15T06:59:45Z +12494 2005-08-18T12:53:49Z 3845 522 2005-08-26T15:52:49Z 1 2020-02-15T06:59:45Z +12495 2005-08-18T12:56:37Z 1225 102 2005-08-22T06:58:37Z 1 2020-02-15T06:59:45Z +12496 2005-08-18T12:58:25Z 456 489 2005-08-27T18:43:25Z 2 2020-02-15T06:59:45Z +12497 2005-08-18T12:58:40Z 824 388 2005-08-24T08:24:40Z 1 2020-02-15T06:59:45Z +12498 2005-08-18T13:01:08Z 1063 408 2005-08-21T13:12:08Z 1 2020-02-15T06:59:45Z +12499 2005-08-18T13:05:37Z 2611 42 2005-08-19T07:41:37Z 1 2020-02-15T06:59:45Z +12500 2005-08-18T13:05:51Z 36 310 2005-08-19T14:54:51Z 2 2020-02-15T06:59:45Z +12501 2005-08-18T13:13:13Z 728 173 2005-08-23T07:24:13Z 2 2020-02-15T06:59:45Z +12502 2005-08-18T13:16:31Z 2153 235 2005-08-19T17:47:31Z 1 2020-02-15T06:59:45Z +12503 2005-08-18T13:16:46Z 3548 379 2005-08-19T10:24:46Z 2 2020-02-15T06:59:45Z +12504 2005-08-18T13:17:07Z 4429 44 2005-08-24T09:13:07Z 2 2020-02-15T06:59:45Z +12505 2005-08-18T13:17:30Z 3741 406 2005-08-23T18:03:30Z 1 2020-02-15T06:59:45Z +12506 2006-02-14T15:16:03Z 1132 114 2 2020-02-15T06:59:45Z +12507 2005-08-18T13:19:13Z 199 584 2005-08-27T11:48:13Z 2 2020-02-15T06:59:45Z +12508 2005-08-18T13:20:13Z 1059 29 2005-08-22T12:55:13Z 1 2020-02-15T06:59:45Z +12509 2005-08-18T13:21:52Z 2462 175 2005-08-20T12:14:52Z 2 2020-02-15T06:59:45Z +12510 2005-08-18T13:22:25Z 3051 394 2005-08-27T17:38:25Z 2 2020-02-15T06:59:45Z +12511 2005-08-18T13:23:19Z 919 447 2005-08-22T11:43:19Z 2 2020-02-15T06:59:45Z +12512 2005-08-18T13:28:27Z 3959 148 2005-08-26T19:08:27Z 2 2020-02-15T06:59:45Z +12513 2005-08-18T13:31:45Z 29 527 2005-08-25T08:26:45Z 1 2020-02-15T06:59:45Z +12514 2005-08-18T13:33:55Z 3310 400 2005-08-23T12:50:55Z 2 2020-02-15T06:59:45Z +12515 2005-08-18T13:39:26Z 2703 63 2005-08-22T09:05:26Z 1 2020-02-15T06:59:45Z +12516 2005-08-18T13:39:53Z 1332 302 2005-08-20T08:33:53Z 1 2020-02-15T06:59:45Z +12517 2005-08-18T13:40:20Z 2908 520 2005-08-27T14:04:20Z 1 2020-02-15T06:59:45Z +12518 2005-08-18T13:41:32Z 3860 264 2005-08-23T13:01:32Z 1 2020-02-15T06:59:45Z +12519 2005-08-18T13:42:14Z 2394 203 2005-08-24T16:44:14Z 1 2020-02-15T06:59:45Z +12520 2005-08-18T13:42:45Z 681 52 2005-08-23T12:54:45Z 2 2020-02-15T06:59:45Z +12521 2005-08-18T13:43:07Z 1022 369 2005-08-21T07:53:07Z 1 2020-02-15T06:59:45Z +12522 2005-08-18T13:45:40Z 4435 342 2005-08-27T17:05:40Z 1 2020-02-15T06:59:45Z +12523 2005-08-18T13:45:41Z 888 230 2005-08-27T10:46:41Z 1 2020-02-15T06:59:45Z +12524 2006-02-14T15:16:03Z 857 438 1 2020-02-15T06:59:45Z +12525 2005-08-18T13:48:31Z 2357 96 2005-08-23T13:04:31Z 2 2020-02-15T06:59:45Z +12526 2005-08-18T13:48:43Z 3541 54 2005-08-19T10:05:43Z 1 2020-02-15T06:59:45Z +12527 2005-08-18T13:48:46Z 2536 459 2005-08-26T13:31:46Z 2 2020-02-15T06:59:45Z +12528 2005-08-18T13:52:41Z 3381 398 2005-08-27T09:09:41Z 2 2020-02-15T06:59:45Z +12529 2005-08-18T13:53:36Z 1956 382 2005-08-19T18:20:36Z 2 2020-02-15T06:59:45Z +12530 2005-08-18T13:54:48Z 1054 521 2005-08-26T08:58:48Z 2 2020-02-15T06:59:45Z +12531 2005-08-18T13:57:50Z 2771 27 2005-08-22T09:46:50Z 2 2020-02-15T06:59:45Z +12532 2005-08-18T13:57:58Z 114 184 2005-08-24T14:58:58Z 2 2020-02-15T06:59:45Z +12533 2005-08-18T14:01:40Z 795 331 2005-08-20T15:32:40Z 1 2020-02-15T06:59:45Z +12534 2005-08-18T14:04:41Z 995 187 2005-08-25T16:57:41Z 1 2020-02-15T06:59:45Z +12535 2005-08-18T14:05:22Z 2944 516 2005-08-25T16:35:22Z 1 2020-02-15T06:59:45Z +12536 2005-08-18T14:06:06Z 2343 373 2005-08-25T14:21:06Z 1 2020-02-15T06:59:45Z +12537 2005-08-18T14:06:39Z 57 56 2005-08-25T09:36:39Z 2 2020-02-15T06:59:45Z +12538 2005-08-18T14:09:09Z 1373 118 2005-08-23T19:12:09Z 1 2020-02-15T06:59:45Z +12539 2005-08-18T14:10:09Z 3259 136 2005-08-19T19:44:09Z 2 2020-02-15T06:59:45Z +12540 2005-08-18T14:17:30Z 2826 304 2005-08-26T15:33:30Z 2 2020-02-15T06:59:45Z +12541 2005-08-18T14:18:30Z 4357 584 2005-08-26T10:24:30Z 1 2020-02-15T06:59:45Z +12542 2005-08-18T14:21:11Z 1920 230 2005-08-20T16:06:11Z 2 2020-02-15T06:59:45Z +12543 2005-08-18T14:23:55Z 330 324 2005-08-20T12:42:55Z 1 2020-02-15T06:59:45Z +12544 2005-08-18T14:25:51Z 3783 354 2005-08-26T18:42:51Z 1 2020-02-15T06:59:45Z +12545 2005-08-18T14:28:00Z 1988 168 2005-08-26T14:10:00Z 1 2020-02-15T06:59:45Z +12546 2005-08-18T14:29:37Z 610 30 2005-08-26T09:47:37Z 1 2020-02-15T06:59:45Z +12547 2005-08-18T14:29:39Z 3046 591 2005-08-22T16:52:39Z 2 2020-02-15T06:59:45Z +12548 2005-08-18T14:35:26Z 750 426 2005-08-27T18:58:26Z 1 2020-02-15T06:59:45Z +12549 2005-08-18T14:38:07Z 1010 377 2005-08-21T08:45:07Z 1 2020-02-15T06:59:45Z +12550 2005-08-18T14:40:38Z 4267 138 2005-08-19T13:33:38Z 2 2020-02-15T06:59:45Z +12551 2005-08-18T14:46:26Z 2195 15 2005-08-19T16:59:26Z 2 2020-02-15T06:59:45Z +12552 2005-08-18T14:46:34Z 4303 413 2005-08-20T11:02:34Z 2 2020-02-15T06:59:45Z +12553 2005-08-18T14:46:54Z 2893 454 2005-08-22T13:41:54Z 1 2020-02-15T06:59:45Z +12554 2005-08-18T14:47:28Z 715 404 2005-08-25T14:34:28Z 2 2020-02-15T06:59:45Z +12555 2005-08-18T14:49:22Z 4434 557 2005-08-26T14:11:22Z 2 2020-02-15T06:59:45Z +12556 2005-08-18T14:49:55Z 1984 3 2005-08-24T15:20:55Z 2 2020-02-15T06:59:45Z +12557 2005-08-18T14:51:03Z 313 364 2005-08-19T13:30:03Z 2 2020-02-15T06:59:45Z +12558 2005-08-18T14:52:35Z 167 289 2005-08-26T09:45:35Z 2 2020-02-15T06:59:45Z +12559 2005-08-18T14:53:58Z 39 513 2005-08-25T20:22:58Z 1 2020-02-15T06:59:45Z +12560 2005-08-18T14:54:19Z 829 596 2005-08-27T13:39:19Z 1 2020-02-15T06:59:45Z +12561 2005-08-18T14:58:51Z 812 392 2005-08-20T10:53:51Z 1 2020-02-15T06:59:45Z +12562 2005-08-18T15:00:03Z 529 212 2005-08-23T12:55:03Z 2 2020-02-15T06:59:45Z +12563 2005-08-18T15:08:29Z 2552 393 2005-08-27T15:15:29Z 1 2020-02-15T06:59:45Z +12564 2005-08-18T15:11:35Z 263 348 2005-08-22T11:45:35Z 2 2020-02-15T06:59:45Z +12565 2005-08-18T15:12:17Z 1284 211 2005-08-19T12:26:17Z 2 2020-02-15T06:59:45Z +12566 2005-08-18T15:13:04Z 1684 407 2005-08-21T19:29:04Z 2 2020-02-15T06:59:45Z +12567 2005-08-18T15:14:36Z 2931 308 2005-08-26T18:56:36Z 1 2020-02-15T06:59:45Z +12568 2005-08-18T15:15:44Z 2654 569 2005-08-22T19:32:44Z 2 2020-02-15T06:59:45Z +12569 2005-08-18T15:20:46Z 1009 29 2005-08-24T12:38:46Z 2 2020-02-15T06:59:45Z +12570 2005-08-18T15:23:31Z 3973 211 2005-08-22T09:59:31Z 2 2020-02-15T06:59:45Z +12571 2005-08-18T15:31:18Z 1013 591 2005-08-23T15:20:18Z 2 2020-02-15T06:59:45Z +12572 2005-08-18T15:32:54Z 1366 253 2005-08-21T10:30:54Z 1 2020-02-15T06:59:45Z +12573 2005-08-18T15:32:57Z 1416 182 2005-08-21T18:29:57Z 2 2020-02-15T06:59:45Z +12574 2006-02-14T15:16:03Z 177 317 2 2020-02-15T06:59:45Z +12575 2005-08-18T15:37:42Z 3441 117 2005-08-25T19:17:42Z 1 2020-02-15T06:59:45Z +12576 2005-08-18T15:38:31Z 329 119 2005-08-22T21:29:31Z 2 2020-02-15T06:59:45Z +12577 2005-08-18T15:39:46Z 4134 16 2005-08-25T18:05:46Z 2 2020-02-15T06:59:45Z +12578 2005-08-18T15:47:11Z 930 514 2005-08-21T10:55:11Z 1 2020-02-15T06:59:45Z +12579 2005-08-18T15:47:49Z 3021 547 2005-08-20T18:12:49Z 2 2020-02-15T06:59:45Z +12580 2005-08-18T15:49:08Z 1197 53 2005-08-24T11:03:08Z 2 2020-02-15T06:59:45Z +12581 2005-08-18T15:49:15Z 4309 70 2005-08-23T20:18:15Z 1 2020-02-15T06:59:45Z +12582 2005-08-18T15:51:12Z 4467 462 2005-08-20T12:05:12Z 1 2020-02-15T06:59:45Z +12583 2005-08-18T15:51:36Z 3090 108 2005-08-20T18:47:36Z 2 2020-02-15T06:59:45Z +12584 2005-08-18T15:51:36Z 4487 371 2005-08-25T19:21:36Z 1 2020-02-15T06:59:45Z +12585 2005-08-18T15:52:12Z 773 110 2005-08-22T21:00:12Z 1 2020-02-15T06:59:45Z +12586 2005-08-18T15:54:39Z 4245 460 2005-08-21T19:29:39Z 1 2020-02-15T06:59:45Z +12587 2005-08-18T16:03:13Z 3081 499 2005-08-25T19:30:13Z 1 2020-02-15T06:59:45Z +12588 2005-08-18T16:04:45Z 694 415 2005-08-23T20:30:45Z 1 2020-02-15T06:59:45Z +12589 2005-08-18T16:06:31Z 956 275 2005-08-27T17:20:31Z 1 2020-02-15T06:59:45Z +12590 2005-08-18T16:11:35Z 2624 308 2005-08-23T10:35:35Z 1 2020-02-15T06:59:45Z +12591 2005-08-18T16:16:41Z 723 546 2005-08-24T10:29:41Z 2 2020-02-15T06:59:45Z +12592 2005-08-18T16:17:50Z 1618 305 2005-08-25T20:20:50Z 1 2020-02-15T06:59:45Z +12593 2005-08-18T16:17:54Z 4092 72 2005-08-21T18:02:54Z 2 2020-02-15T06:59:45Z +12594 2005-08-18T16:24:24Z 4421 198 2005-08-25T15:45:24Z 1 2020-02-15T06:59:45Z +12595 2005-08-18T16:27:08Z 1662 286 2005-08-19T14:53:08Z 1 2020-02-15T06:59:45Z +12596 2005-08-18T16:29:35Z 3662 378 2005-08-24T16:48:35Z 1 2020-02-15T06:59:45Z +12597 2005-08-18T16:34:02Z 3804 474 2005-08-25T17:30:02Z 2 2020-02-15T06:59:45Z +12598 2005-08-18T16:34:03Z 3159 340 2005-08-22T16:44:03Z 1 2020-02-15T06:59:45Z +12599 2005-08-18T16:42:45Z 2032 34 2005-08-23T18:27:45Z 2 2020-02-15T06:59:45Z +12600 2005-08-18T16:44:24Z 1475 171 2005-08-25T17:28:24Z 1 2020-02-15T06:59:45Z +12601 2005-08-18T16:47:52Z 3099 598 2005-08-24T11:05:52Z 1 2020-02-15T06:59:45Z +12602 2005-08-18T16:49:50Z 2001 533 2005-08-21T11:13:50Z 2 2020-02-15T06:59:45Z +12603 2005-08-18T16:56:20Z 2769 119 2005-08-25T11:50:20Z 2 2020-02-15T06:59:45Z +12604 2005-08-18T16:58:48Z 4127 12 2005-08-19T19:36:48Z 1 2020-02-15T06:59:45Z +12605 2005-08-18T16:59:37Z 1359 496 2005-08-20T18:09:37Z 1 2020-02-15T06:59:45Z +12606 2005-08-18T17:02:21Z 359 275 2005-08-24T22:38:21Z 1 2020-02-15T06:59:45Z +12607 2005-08-18T17:03:49Z 2130 526 2005-08-19T18:29:49Z 1 2020-02-15T06:59:45Z +12608 2005-08-18T17:05:15Z 624 366 2005-08-23T17:00:15Z 2 2020-02-15T06:59:45Z +12609 2005-08-18T17:06:22Z 2327 486 2005-08-20T21:30:22Z 1 2020-02-15T06:59:45Z +12610 2006-02-14T15:16:03Z 3181 269 1 2020-02-15T06:59:45Z +12611 2005-08-18T17:09:42Z 1925 359 2005-08-24T11:57:42Z 2 2020-02-15T06:59:45Z +12612 2005-08-18T17:10:05Z 1035 129 2005-08-26T15:55:05Z 2 2020-02-15T06:59:45Z +12613 2005-08-18T17:16:01Z 3877 8 2005-08-23T18:40:01Z 2 2020-02-15T06:59:45Z +12614 2005-08-18T17:16:03Z 2233 60 2005-08-26T16:56:03Z 2 2020-02-15T06:59:45Z +12615 2005-08-18T17:16:07Z 2191 29 2005-08-27T12:57:07Z 1 2020-02-15T06:59:45Z +12616 2005-08-18T17:22:41Z 2952 476 2005-08-25T18:52:41Z 2 2020-02-15T06:59:45Z +12617 2005-08-18T17:22:48Z 3573 564 2005-08-24T17:40:48Z 2 2020-02-15T06:59:45Z +12618 2005-08-18T17:24:02Z 302 117 2005-08-19T15:22:02Z 1 2020-02-15T06:59:45Z +12619 2005-08-18T17:24:15Z 980 592 2005-08-21T15:56:15Z 1 2020-02-15T06:59:45Z +12620 2005-08-18T17:26:38Z 2663 221 2005-08-25T13:24:38Z 1 2020-02-15T06:59:45Z +12621 2005-08-18T17:31:36Z 4566 439 2005-08-24T16:43:36Z 2 2020-02-15T06:59:45Z +12622 2005-08-18T17:34:11Z 278 529 2005-08-24T16:10:11Z 1 2020-02-15T06:59:45Z +12623 2005-08-18T17:34:19Z 3670 177 2005-08-20T21:30:19Z 1 2020-02-15T06:59:45Z +12624 2005-08-18T17:35:00Z 1135 434 2005-08-27T12:18:00Z 2 2020-02-15T06:59:45Z +12625 2005-08-18T17:36:19Z 2645 108 2005-08-23T11:42:19Z 1 2020-02-15T06:59:45Z +12626 2005-08-18T17:36:45Z 4230 361 2005-08-26T17:12:45Z 1 2020-02-15T06:59:45Z +12627 2005-08-18T17:37:11Z 3760 150 2005-08-19T14:59:11Z 2 2020-02-15T06:59:45Z +12628 2005-08-18T17:40:25Z 3210 520 2005-08-25T13:39:25Z 1 2020-02-15T06:59:45Z +12629 2005-08-18T17:40:33Z 1705 459 2005-08-26T21:09:33Z 1 2020-02-15T06:59:45Z +12630 2005-08-18T17:49:28Z 1457 452 2005-08-24T12:23:28Z 1 2020-02-15T06:59:45Z +12631 2005-08-18T17:52:51Z 2782 339 2005-08-25T14:40:51Z 2 2020-02-15T06:59:45Z +12632 2005-08-18T17:54:21Z 827 381 2005-08-22T18:58:21Z 1 2020-02-15T06:59:45Z +12633 2005-08-18T17:55:38Z 4341 469 2005-08-23T17:19:38Z 2 2020-02-15T06:59:45Z +12634 2005-08-18T17:58:14Z 1037 549 2005-08-19T21:08:14Z 2 2020-02-15T06:59:45Z +12635 2005-08-18T18:00:23Z 331 15 2005-08-23T16:40:23Z 2 2020-02-15T06:59:45Z +12636 2005-08-18T18:00:29Z 1645 380 2005-08-26T20:08:29Z 2 2020-02-15T06:59:45Z +12637 2005-08-18T18:06:53Z 4005 145 2005-08-19T17:36:53Z 1 2020-02-15T06:59:45Z +12638 2005-08-18T18:11:39Z 2849 172 2005-08-25T21:54:39Z 2 2020-02-15T06:59:45Z +12639 2005-08-18T18:13:05Z 562 500 2005-08-27T16:00:05Z 2 2020-02-15T06:59:45Z +12640 2005-08-18T18:14:49Z 1715 544 2005-08-24T21:25:49Z 1 2020-02-15T06:59:45Z +12641 2005-08-18T18:18:08Z 776 467 2005-08-19T23:17:08Z 1 2020-02-15T06:59:45Z +12642 2005-08-18T18:19:16Z 2080 167 2005-08-20T17:30:16Z 2 2020-02-15T06:59:45Z +12643 2005-08-18T18:21:06Z 2245 165 2005-08-24T14:26:06Z 1 2020-02-15T06:59:45Z +12644 2005-08-18T18:22:27Z 1511 300 2005-08-26T00:01:27Z 1 2020-02-15T06:59:45Z +12645 2006-02-14T15:16:03Z 1658 457 1 2020-02-15T06:59:45Z +12646 2005-08-18T18:25:06Z 3103 388 2005-08-24T18:45:06Z 1 2020-02-15T06:59:45Z +12647 2005-08-18T18:29:51Z 323 520 2005-08-27T22:51:51Z 1 2020-02-15T06:59:45Z +12648 2005-08-18T18:30:21Z 3545 519 2005-08-25T19:17:21Z 1 2020-02-15T06:59:45Z +12649 2005-08-18T18:31:47Z 3201 530 2005-08-22T21:07:47Z 2 2020-02-15T06:59:45Z +12650 2005-08-18T18:33:20Z 3237 276 2005-08-21T17:45:20Z 2 2020-02-15T06:59:45Z +12651 2005-08-18T18:36:16Z 8 34 2005-08-22T22:01:16Z 1 2020-02-15T06:59:45Z +12652 2005-08-18T18:48:58Z 2118 9 2005-08-21T14:15:58Z 1 2020-02-15T06:59:45Z +12653 2005-08-18T18:53:17Z 3353 78 2005-08-26T14:08:17Z 1 2020-02-15T06:59:45Z +12654 2005-08-18T18:56:40Z 2217 438 2005-08-20T17:51:40Z 2 2020-02-15T06:59:45Z +12655 2005-08-18T18:57:44Z 859 533 2005-08-27T22:40:44Z 2 2020-02-15T06:59:45Z +12656 2005-08-18T18:58:35Z 3981 286 2005-08-21T00:41:35Z 1 2020-02-15T06:59:45Z +12657 2005-08-18T19:02:16Z 3621 100 2005-08-21T14:59:16Z 1 2020-02-15T06:59:45Z +12658 2005-08-18T19:05:42Z 4320 193 2005-08-19T19:08:42Z 1 2020-02-15T06:59:45Z +12659 2005-08-18T19:05:49Z 336 329 2005-08-24T22:12:49Z 2 2020-02-15T06:59:45Z +12660 2005-08-18T19:07:23Z 414 21 2005-08-27T17:20:23Z 2 2020-02-15T06:59:45Z +12661 2005-08-18T19:10:10Z 1547 333 2005-08-22T20:30:10Z 1 2020-02-15T06:59:45Z +12662 2005-08-18T19:10:41Z 1412 75 2005-08-23T16:59:41Z 1 2020-02-15T06:59:45Z +12663 2005-08-18T19:10:52Z 1163 375 2005-08-19T15:46:52Z 1 2020-02-15T06:59:45Z +12664 2005-08-18T19:10:54Z 2732 577 2005-08-25T19:19:54Z 1 2020-02-15T06:59:45Z +12665 2006-02-14T15:16:03Z 1701 410 2 2020-02-15T06:59:45Z +12666 2005-08-18T19:11:41Z 4156 251 2005-08-21T18:04:41Z 2 2020-02-15T06:59:45Z +12667 2005-08-18T19:11:45Z 104 545 2005-08-27T13:34:45Z 2 2020-02-15T06:59:45Z +12668 2005-08-18T19:16:47Z 1986 14 2005-08-19T16:31:47Z 1 2020-02-15T06:59:45Z +12669 2005-08-18T19:17:47Z 4530 433 2005-08-24T14:55:47Z 1 2020-02-15T06:59:45Z +12670 2005-08-18T19:17:58Z 1716 580 2005-08-23T20:54:58Z 2 2020-02-15T06:59:45Z +12671 2005-08-18T19:19:59Z 1734 577 2005-08-23T17:53:59Z 2 2020-02-15T06:59:45Z +12672 2006-02-14T15:16:03Z 1722 228 1 2020-02-15T06:59:45Z +12673 2005-08-18T19:21:56Z 4204 535 2005-08-26T22:44:56Z 2 2020-02-15T06:59:45Z +12674 2005-08-18T19:24:56Z 636 185 2005-08-26T22:16:56Z 2 2020-02-15T06:59:45Z +12675 2005-08-18T19:34:02Z 569 140 2005-08-23T13:36:02Z 2 2020-02-15T06:59:45Z +12676 2005-08-18T19:34:40Z 2581 393 2005-08-20T18:03:40Z 2 2020-02-15T06:59:45Z +12677 2005-08-18T19:36:05Z 1311 334 2005-08-22T21:23:05Z 2 2020-02-15T06:59:45Z +12678 2005-08-18T19:41:27Z 2504 181 2005-08-23T15:14:27Z 2 2020-02-15T06:59:45Z +12679 2005-08-18T19:42:11Z 1535 463 2005-08-25T01:01:11Z 1 2020-02-15T06:59:45Z +12680 2005-08-18T19:43:46Z 833 259 2005-08-27T00:08:46Z 2 2020-02-15T06:59:45Z +12681 2005-08-18T19:48:06Z 1570 518 2005-08-23T15:05:06Z 2 2020-02-15T06:59:45Z +12682 2006-02-14T15:16:03Z 1148 245 2 2020-02-15T06:59:45Z +12683 2005-08-18T19:50:43Z 1802 166 2005-08-26T00:47:43Z 1 2020-02-15T06:59:45Z +12684 2005-08-18T19:51:27Z 978 196 2005-08-19T15:56:27Z 1 2020-02-15T06:59:45Z +12685 2005-08-18T19:51:29Z 4283 114 2005-08-27T14:58:29Z 2 2020-02-15T06:59:45Z +12686 2005-08-18T19:55:09Z 501 385 2005-08-26T14:17:09Z 1 2020-02-15T06:59:45Z +12687 2005-08-18T19:57:39Z 3092 285 2005-08-27T01:36:39Z 2 2020-02-15T06:59:45Z +12688 2005-08-18T19:59:54Z 2315 65 2005-08-26T18:52:54Z 2 2020-02-15T06:59:45Z +12689 2005-08-18T20:06:34Z 1066 296 2005-08-22T20:11:34Z 2 2020-02-15T06:59:45Z +12690 2005-08-18T20:06:57Z 3574 361 2005-08-24T20:54:57Z 2 2020-02-15T06:59:45Z +12691 2005-08-18T20:07:46Z 3744 534 2005-08-26T18:49:46Z 2 2020-02-15T06:59:45Z +12692 2005-08-18T20:09:19Z 2781 273 2005-08-21T00:14:19Z 1 2020-02-15T06:59:45Z +12693 2005-08-18T20:10:19Z 1543 584 2005-08-25T21:11:19Z 1 2020-02-15T06:59:45Z +12694 2005-08-18T20:10:39Z 1741 268 2005-08-25T20:47:39Z 1 2020-02-15T06:59:45Z +12695 2005-08-18T20:11:35Z 446 483 2005-08-25T18:29:35Z 1 2020-02-15T06:59:45Z +12696 2005-08-18T20:13:08Z 3989 374 2005-08-19T18:02:08Z 2 2020-02-15T06:59:45Z +12697 2005-08-18T20:14:56Z 2774 152 2005-08-23T21:54:56Z 1 2020-02-15T06:59:45Z +12698 2006-02-14T15:16:03Z 3657 497 1 2020-02-15T06:59:45Z +12699 2005-08-18T20:20:59Z 3695 66 2005-08-22T17:00:59Z 1 2020-02-15T06:59:45Z +12700 2005-08-18T20:24:46Z 540 397 2005-08-23T21:50:46Z 1 2020-02-15T06:59:45Z +12701 2005-08-18T20:26:47Z 2337 489 2005-08-26T23:36:47Z 2 2020-02-15T06:59:45Z +12702 2005-08-18T20:30:33Z 1884 474 2005-08-27T01:22:33Z 2 2020-02-15T06:59:45Z +12703 2005-08-18T20:37:13Z 1278 453 2005-08-26T16:13:13Z 1 2020-02-15T06:59:45Z +12704 2005-08-18T20:43:00Z 51 93 2005-08-21T22:28:00Z 2 2020-02-15T06:59:45Z +12705 2005-08-18T20:44:14Z 2342 517 2005-08-23T20:46:14Z 1 2020-02-15T06:59:45Z +12706 2005-08-18T20:44:34Z 1079 170 2005-08-26T21:47:34Z 1 2020-02-15T06:59:45Z +12707 2005-08-18T20:52:02Z 1565 426 2005-08-25T19:03:02Z 2 2020-02-15T06:59:45Z +12708 2005-08-18T20:59:17Z 3448 28 2005-08-24T22:40:17Z 1 2020-02-15T06:59:45Z +12709 2005-08-18T20:59:51Z 3878 476 2005-08-26T01:21:51Z 2 2020-02-15T06:59:45Z +12710 2005-08-18T21:02:50Z 3011 310 2005-08-26T15:07:50Z 2 2020-02-15T06:59:45Z +12711 2005-08-18T21:03:32Z 2530 122 2005-08-26T17:31:32Z 1 2020-02-15T06:59:45Z +12712 2005-08-18T21:04:13Z 2628 444 2005-08-25T18:15:13Z 2 2020-02-15T06:59:45Z +12713 2005-08-18T21:07:28Z 1505 56 2005-08-24T17:46:28Z 1 2020-02-15T06:59:45Z +12714 2005-08-18T21:08:01Z 868 372 2005-08-27T17:09:01Z 2 2020-02-15T06:59:45Z +12715 2005-08-18T21:09:38Z 3768 266 2005-08-21T20:25:38Z 1 2020-02-15T06:59:45Z +12716 2006-02-14T15:16:03Z 858 570 2 2020-02-15T06:59:45Z +12717 2005-08-18T21:15:40Z 3551 167 2005-08-20T00:59:40Z 2 2020-02-15T06:59:45Z +12718 2005-08-18T21:21:44Z 3221 176 2005-08-20T01:01:44Z 1 2020-02-15T06:59:45Z +12719 2006-02-14T15:16:03Z 1094 87 2 2020-02-15T06:59:45Z +12720 2005-08-18T21:28:42Z 2676 419 2005-08-25T18:02:42Z 1 2020-02-15T06:59:45Z +12721 2005-08-18T21:30:12Z 1045 239 2005-08-22T22:45:12Z 1 2020-02-15T06:59:45Z +12722 2005-08-18T21:33:53Z 913 416 2005-08-27T23:47:53Z 2 2020-02-15T06:59:45Z +12723 2005-08-18T21:34:16Z 4167 430 2005-08-22T22:37:16Z 1 2020-02-15T06:59:45Z +12724 2005-08-18T21:37:20Z 2224 242 2005-08-27T21:56:20Z 2 2020-02-15T06:59:45Z +12725 2005-08-18T21:43:09Z 4071 51 2005-08-23T18:50:09Z 1 2020-02-15T06:59:45Z +12726 2005-08-18T21:44:46Z 20 397 2005-08-19T21:58:46Z 2 2020-02-15T06:59:45Z +12727 2005-08-18T21:45:15Z 15 178 2005-08-24T15:52:15Z 1 2020-02-15T06:59:45Z +12728 2005-08-18T21:47:48Z 3156 129 2005-08-25T16:13:48Z 1 2020-02-15T06:59:45Z +12729 2005-08-18T21:52:59Z 3711 424 2005-08-21T00:02:59Z 1 2020-02-15T06:59:45Z +12730 2005-08-18T21:55:01Z 75 7 2005-08-22T01:23:01Z 1 2020-02-15T06:59:45Z +12731 2005-08-18T21:55:38Z 1719 128 2005-08-23T20:30:38Z 1 2020-02-15T06:59:45Z +12732 2005-08-18T21:57:50Z 3307 535 2005-08-19T18:28:50Z 2 2020-02-15T06:59:45Z +12733 2005-08-18T21:59:00Z 3243 144 2005-08-24T02:25:00Z 1 2020-02-15T06:59:45Z +12734 2005-08-18T22:04:52Z 3619 121 2005-08-25T00:34:52Z 1 2020-02-15T06:59:45Z +12735 2005-08-18T22:04:54Z 3679 383 2005-08-23T21:19:54Z 2 2020-02-15T06:59:45Z +12736 2006-02-14T15:16:03Z 3591 244 2 2020-02-15T06:59:45Z +12737 2005-08-18T22:11:37Z 736 204 2005-08-26T04:08:37Z 1 2020-02-15T06:59:45Z +12738 2005-08-18T22:11:47Z 4313 589 2005-08-27T17:55:47Z 2 2020-02-15T06:59:45Z +12739 2005-08-18T22:15:18Z 4129 292 2005-08-27T00:37:18Z 2 2020-02-15T06:59:45Z +12740 2005-08-18T22:17:04Z 1157 330 2005-08-23T23:42:04Z 1 2020-02-15T06:59:45Z +12741 2005-08-18T22:17:05Z 2084 435 2005-08-25T20:07:05Z 2 2020-02-15T06:59:45Z +12742 2005-08-18T22:22:03Z 1742 68 2005-08-22T04:01:03Z 1 2020-02-15T06:59:45Z +12743 2005-08-18T22:22:31Z 2630 565 2005-08-27T00:31:31Z 1 2020-02-15T06:59:45Z +12744 2005-08-18T22:22:36Z 3815 593 2005-08-24T00:26:36Z 1 2020-02-15T06:59:45Z +12745 2005-08-18T22:22:45Z 262 24 2005-08-20T01:44:45Z 2 2020-02-15T06:59:45Z +12746 2006-02-14T15:16:03Z 1012 211 1 2020-02-15T06:59:45Z +12747 2005-08-18T22:28:22Z 4075 549 2005-08-22T22:25:22Z 2 2020-02-15T06:59:45Z +12748 2005-08-18T22:29:05Z 3249 373 2005-08-24T18:25:05Z 2 2020-02-15T06:59:45Z +12749 2005-08-18T22:31:21Z 828 388 2005-08-20T22:53:21Z 1 2020-02-15T06:59:45Z +12750 2005-08-18T22:32:39Z 3717 535 2005-08-26T01:54:39Z 1 2020-02-15T06:59:45Z +12751 2005-08-18T22:33:22Z 2791 352 2005-08-20T20:28:22Z 2 2020-02-15T06:59:45Z +12752 2005-08-18T22:33:36Z 3595 514 2005-08-27T23:55:36Z 1 2020-02-15T06:59:45Z +12753 2005-08-18T22:37:39Z 1494 470 2005-08-27T00:21:39Z 2 2020-02-15T06:59:45Z +12754 2005-08-18T22:37:41Z 4154 134 2005-08-27T20:17:41Z 2 2020-02-15T06:59:45Z +12755 2005-08-18T22:38:47Z 105 439 2005-08-22T23:58:47Z 1 2020-02-15T06:59:45Z +12756 2005-08-18T22:52:13Z 1840 89 2005-08-21T17:22:13Z 1 2020-02-15T06:59:45Z +12757 2005-08-18T22:57:45Z 1095 147 2005-08-21T22:43:45Z 1 2020-02-15T06:59:45Z +12758 2005-08-18T22:58:34Z 2279 30 2005-08-22T23:33:34Z 1 2020-02-15T06:59:45Z +12759 2006-02-14T15:16:03Z 4193 354 2 2020-02-15T06:59:45Z +12760 2005-08-18T23:03:19Z 4188 363 2005-08-24T17:53:19Z 1 2020-02-15T06:59:45Z +12761 2005-08-18T23:05:22Z 2684 364 2005-08-22T01:08:22Z 2 2020-02-15T06:59:45Z +12762 2005-08-18T23:06:54Z 3909 502 2005-08-21T18:30:54Z 1 2020-02-15T06:59:45Z +12763 2005-08-18T23:07:01Z 393 472 2005-08-21T18:45:01Z 1 2020-02-15T06:59:45Z +12764 2005-08-18T23:14:15Z 26 183 2005-08-22T20:23:15Z 1 2020-02-15T06:59:45Z +12765 2005-08-18T23:21:50Z 2244 298 2005-08-28T04:42:50Z 2 2020-02-15T06:59:45Z +12766 2005-08-18T23:25:20Z 3737 50 2005-08-27T04:43:20Z 1 2020-02-15T06:59:45Z +12767 2005-08-18T23:25:49Z 3351 432 2005-08-28T02:40:49Z 2 2020-02-15T06:59:45Z +12768 2005-08-18T23:26:11Z 1993 458 2005-08-19T20:31:11Z 2 2020-02-15T06:59:45Z +12769 2005-08-18T23:26:40Z 926 504 2005-08-25T03:03:40Z 1 2020-02-15T06:59:45Z +12770 2005-08-18T23:29:00Z 1654 575 2005-08-26T20:57:00Z 2 2020-02-15T06:59:45Z +12771 2005-08-18T23:29:23Z 3076 484 2005-08-22T17:31:23Z 2 2020-02-15T06:59:45Z +12772 2005-08-18T23:29:25Z 1179 397 2005-08-23T20:32:25Z 1 2020-02-15T06:59:45Z +12773 2005-08-18T23:32:19Z 4390 360 2005-08-27T04:40:19Z 1 2020-02-15T06:59:45Z +12774 2005-08-18T23:34:22Z 3601 21 2005-08-28T05:00:22Z 2 2020-02-15T06:59:45Z +12775 2005-08-18T23:35:56Z 4374 54 2005-08-26T18:37:56Z 1 2020-02-15T06:59:45Z +12776 2005-08-18T23:37:33Z 2345 55 2005-08-23T03:07:33Z 1 2020-02-15T06:59:45Z +12777 2005-08-18T23:39:22Z 3467 130 2005-08-27T20:28:22Z 1 2020-02-15T06:59:45Z +12778 2005-08-18T23:40:23Z 3626 290 2005-08-19T18:14:23Z 2 2020-02-15T06:59:45Z +12779 2005-08-18T23:44:00Z 1814 325 2005-08-26T05:27:00Z 2 2020-02-15T06:59:45Z +12780 2005-08-18T23:48:16Z 54 373 2005-08-20T18:13:16Z 2 2020-02-15T06:59:45Z +12781 2005-08-18T23:50:24Z 1187 168 2005-08-21T02:31:24Z 1 2020-02-15T06:59:45Z +12782 2005-08-18T23:56:23Z 1454 495 2005-08-25T18:47:23Z 1 2020-02-15T06:59:45Z +12783 2005-08-19T00:01:14Z 1109 503 2005-08-21T22:02:14Z 2 2020-02-15T06:59:45Z +12784 2005-08-19T00:02:46Z 447 513 2005-08-20T04:39:46Z 1 2020-02-15T06:59:45Z +12785 2005-08-19T00:05:49Z 4190 145 2005-08-21T04:39:49Z 2 2020-02-15T06:59:45Z +12786 2006-02-14T15:16:03Z 97 512 1 2020-02-15T06:59:45Z +12787 2005-08-19T00:07:58Z 2023 278 2005-08-24T00:42:58Z 2 2020-02-15T06:59:45Z +12788 2005-08-19T00:15:09Z 644 90 2005-08-27T21:54:09Z 1 2020-02-15T06:59:45Z +12789 2005-08-19T00:16:19Z 2412 557 2005-08-25T00:18:19Z 2 2020-02-15T06:59:45Z +12790 2005-08-19T00:16:54Z 1281 44 2005-08-26T02:00:54Z 1 2020-02-15T06:59:45Z +12791 2005-08-19T00:17:09Z 3594 573 2005-08-22T23:46:09Z 1 2020-02-15T06:59:45Z +12792 2006-02-14T15:16:03Z 1435 405 2 2020-02-15T06:59:45Z +12793 2005-08-19T00:20:36Z 1195 403 2005-08-28T02:43:36Z 1 2020-02-15T06:59:45Z +12794 2005-08-19T00:20:37Z 1586 336 2005-08-26T01:48:37Z 1 2020-02-15T06:59:45Z +12795 2005-08-19T00:21:52Z 2745 360 2005-08-22T22:13:52Z 2 2020-02-15T06:59:45Z +12796 2005-08-19T00:22:24Z 1285 368 2005-08-19T22:53:24Z 2 2020-02-15T06:59:45Z +12797 2005-08-19T00:24:08Z 1595 5 2005-08-21T22:53:08Z 2 2020-02-15T06:59:45Z +12798 2005-08-19T00:24:33Z 4244 534 2005-08-21T23:01:33Z 2 2020-02-15T06:59:45Z +12799 2005-08-19T00:27:01Z 3885 197 2005-08-22T03:30:01Z 2 2020-02-15T06:59:45Z +12800 2005-08-19T00:27:11Z 257 545 2005-08-22T01:08:11Z 1 2020-02-15T06:59:45Z +12801 2005-08-19T00:27:19Z 960 202 2005-08-26T03:10:19Z 1 2020-02-15T06:59:45Z +12802 2005-08-19T00:27:41Z 2461 462 2005-08-28T03:24:41Z 1 2020-02-15T06:59:45Z +12803 2005-08-19T00:28:21Z 1058 390 2005-08-23T02:02:21Z 1 2020-02-15T06:59:45Z +12804 2005-08-19T00:33:15Z 147 365 2005-08-28T02:16:15Z 2 2020-02-15T06:59:45Z +12805 2005-08-19T00:36:34Z 2964 345 2005-08-26T20:38:34Z 1 2020-02-15T06:59:45Z +12806 2005-08-19T00:37:26Z 4488 423 2005-08-23T18:49:26Z 2 2020-02-15T06:59:45Z +12807 2005-08-19T00:38:46Z 2323 513 2005-08-28T03:37:46Z 2 2020-02-15T06:59:45Z +12808 2005-08-19T00:40:41Z 3920 55 2005-08-21T06:39:41Z 2 2020-02-15T06:59:45Z +12809 2005-08-19T00:42:24Z 2005 22 2005-08-23T06:06:24Z 1 2020-02-15T06:59:45Z +12810 2005-08-19T00:44:10Z 1340 250 2005-08-22T22:30:10Z 2 2020-02-15T06:59:45Z +12811 2005-08-19T00:51:28Z 641 54 2005-08-24T01:57:28Z 2 2020-02-15T06:59:45Z +12812 2005-08-19T00:54:02Z 4024 450 2005-08-22T20:35:02Z 2 2020-02-15T06:59:45Z +12813 2005-08-19T00:54:22Z 3285 500 2005-08-19T21:17:22Z 2 2020-02-15T06:59:45Z +12814 2005-08-19T00:58:24Z 204 465 2005-08-21T05:46:24Z 1 2020-02-15T06:59:45Z +12815 2005-08-19T00:59:42Z 435 588 2005-08-25T21:43:42Z 2 2020-02-15T06:59:45Z +12816 2005-08-19T01:04:05Z 4051 342 2005-08-24T01:25:05Z 1 2020-02-15T06:59:45Z +12817 2005-08-19T01:04:35Z 1246 113 2005-08-25T21:14:35Z 1 2020-02-15T06:59:45Z +12818 2005-08-19T01:04:59Z 3069 528 2005-08-26T21:39:59Z 2 2020-02-15T06:59:45Z +12819 2005-08-19T01:05:05Z 1117 542 2005-08-22T05:50:05Z 1 2020-02-15T06:59:45Z +12820 2005-08-19T01:05:08Z 2936 127 2005-08-21T05:37:08Z 2 2020-02-15T06:59:45Z +12821 2005-08-19T01:07:02Z 3418 41 2005-08-23T01:22:02Z 2 2020-02-15T06:59:45Z +12822 2005-08-19T01:15:24Z 419 426 2005-08-20T06:38:24Z 1 2020-02-15T06:59:45Z +12823 2005-08-19T01:15:47Z 426 316 2005-08-22T05:32:47Z 2 2020-02-15T06:59:45Z +12824 2005-08-19T01:18:00Z 1875 247 2005-08-22T01:12:00Z 2 2020-02-15T06:59:45Z +12825 2005-08-19T01:23:58Z 4495 328 2005-08-20T00:19:58Z 2 2020-02-15T06:59:45Z +12826 2005-08-19T01:25:11Z 1277 439 2005-08-27T01:22:11Z 1 2020-02-15T06:59:45Z +12827 2005-08-19T01:27:23Z 880 253 2005-08-27T02:22:23Z 2 2020-02-15T06:59:45Z +12828 2005-08-19T01:37:47Z 4208 378 2005-08-24T22:31:47Z 2 2020-02-15T06:59:45Z +12829 2005-08-19T01:38:18Z 1129 326 2005-08-25T22:23:18Z 2 2020-02-15T06:59:45Z +12830 2005-08-19T01:40:25Z 4080 409 2005-08-20T23:49:25Z 2 2020-02-15T06:59:45Z +12831 2005-08-19T01:40:43Z 1916 183 2005-08-28T05:22:43Z 1 2020-02-15T06:59:45Z +12832 2005-08-19T01:41:44Z 2820 563 2005-08-24T23:15:44Z 2 2020-02-15T06:59:45Z +12833 2005-08-19T01:42:28Z 3723 59 2005-08-26T20:13:28Z 1 2020-02-15T06:59:45Z +12834 2005-08-19T01:47:30Z 757 133 2005-08-24T20:08:30Z 1 2020-02-15T06:59:45Z +12835 2005-08-19T01:47:45Z 1477 124 2005-08-26T00:58:45Z 2 2020-02-15T06:59:45Z +12836 2005-08-19T01:48:33Z 1380 196 2005-08-23T04:46:33Z 1 2020-02-15T06:59:45Z +12837 2005-08-19T01:51:09Z 2288 495 2005-08-22T07:14:09Z 2 2020-02-15T06:59:45Z +12838 2005-08-19T01:51:50Z 1207 308 2005-08-27T23:12:50Z 1 2020-02-15T06:59:45Z +12839 2005-08-19T01:53:43Z 1970 360 2005-08-28T02:27:43Z 2 2020-02-15T06:59:45Z +12840 2005-08-19T01:54:11Z 2098 182 2005-08-28T01:11:11Z 2 2020-02-15T06:59:45Z +12841 2005-08-19T01:55:55Z 4233 257 2005-08-24T02:56:55Z 1 2020-02-15T06:59:45Z +12842 2005-08-19T01:57:21Z 2540 119 2005-08-28T01:10:21Z 1 2020-02-15T06:59:45Z +12843 2005-08-19T01:58:54Z 3279 128 2005-08-20T00:20:54Z 2 2020-02-15T06:59:45Z +12844 2005-08-19T01:59:08Z 4146 584 2005-08-24T22:21:08Z 1 2020-02-15T06:59:45Z +12845 2005-08-19T02:02:37Z 1698 106 2005-08-22T01:08:37Z 1 2020-02-15T06:59:45Z +12846 2005-08-19T02:03:26Z 286 305 2005-08-25T07:39:26Z 2 2020-02-15T06:59:45Z +12847 2005-08-19T02:04:07Z 384 91 2005-08-23T20:13:07Z 2 2020-02-15T06:59:45Z +12848 2005-08-19T02:05:11Z 2833 539 2005-08-24T05:27:11Z 2 2020-02-15T06:59:45Z +12849 2005-08-19T02:05:37Z 3489 280 2005-08-23T07:00:37Z 1 2020-02-15T06:59:45Z +12850 2005-08-19T02:08:06Z 1816 440 2005-08-20T21:06:06Z 2 2020-02-15T06:59:45Z +12851 2005-08-19T02:12:12Z 3311 194 2005-08-25T23:51:12Z 1 2020-02-15T06:59:45Z +12852 2005-08-19T02:12:40Z 2446 260 2005-08-19T23:42:40Z 1 2020-02-15T06:59:45Z +12853 2005-08-19T02:15:32Z 3753 232 2005-08-27T21:26:32Z 2 2020-02-15T06:59:45Z +12854 2005-08-19T02:18:51Z 4577 362 2005-08-24T04:16:51Z 2 2020-02-15T06:59:45Z +12855 2005-08-19T02:18:58Z 2900 242 2005-08-19T20:50:58Z 1 2020-02-15T06:59:45Z +12856 2005-08-19T02:19:13Z 132 4 2005-08-23T07:49:13Z 2 2020-02-15T06:59:45Z +12857 2005-08-19T02:20:13Z 4307 443 2005-08-20T20:20:13Z 1 2020-02-15T06:59:45Z +12858 2005-08-19T02:22:16Z 3024 144 2005-08-26T07:25:16Z 2 2020-02-15T06:59:45Z +12859 2005-08-19T02:23:23Z 2289 139 2005-08-28T04:55:23Z 2 2020-02-15T06:59:45Z +12860 2005-08-19T02:24:41Z 778 548 2005-08-25T07:43:41Z 1 2020-02-15T06:59:45Z +12861 2005-08-19T02:30:24Z 3115 287 2005-08-22T08:23:24Z 1 2020-02-15T06:59:45Z +12862 2005-08-19T02:31:59Z 473 198 2005-08-26T08:16:59Z 2 2020-02-15T06:59:45Z +12863 2005-08-19T02:35:59Z 780 234 2005-08-21T21:13:59Z 1 2020-02-15T06:59:45Z +12864 2005-08-19T02:38:26Z 4481 465 2005-08-22T21:42:26Z 2 2020-02-15T06:59:45Z +12865 2005-08-19T02:38:50Z 3437 460 2005-08-21T02:33:50Z 1 2020-02-15T06:59:45Z +12866 2005-08-19T02:39:47Z 1766 229 2005-08-27T02:14:47Z 1 2020-02-15T06:59:45Z +12867 2005-08-19T02:40:11Z 4499 330 2005-08-20T04:01:11Z 1 2020-02-15T06:59:45Z +12868 2005-08-19T02:47:19Z 4054 551 2005-08-20T00:30:19Z 2 2020-02-15T06:59:45Z +12869 2005-08-19T02:50:36Z 3939 99 2005-08-26T21:38:36Z 2 2020-02-15T06:59:45Z +12870 2005-08-19T02:54:38Z 991 86 2005-08-27T00:45:38Z 1 2020-02-15T06:59:45Z +12871 2005-08-19T02:55:36Z 2625 217 2005-08-22T01:00:36Z 2 2020-02-15T06:59:45Z +12872 2005-08-19T02:57:37Z 1975 54 2005-08-22T23:23:37Z 1 2020-02-15T06:59:45Z +12873 2005-08-19T03:05:41Z 2140 138 2005-08-22T06:57:41Z 2 2020-02-15T06:59:45Z +12874 2005-08-19T03:07:57Z 848 254 2005-08-22T22:42:57Z 2 2020-02-15T06:59:45Z +12875 2005-08-19T03:10:21Z 1708 483 2005-08-26T01:00:21Z 2 2020-02-15T06:59:45Z +12876 2005-08-19T03:12:19Z 803 356 2005-08-20T02:24:19Z 2 2020-02-15T06:59:45Z +12877 2005-08-19T03:16:58Z 1016 40 2005-08-25T02:10:58Z 2 2020-02-15T06:59:45Z +12878 2005-08-19T03:17:08Z 1182 596 2005-08-23T03:44:08Z 1 2020-02-15T06:59:45Z +12879 2005-08-19T03:22:55Z 3556 210 2005-08-24T22:00:55Z 1 2020-02-15T06:59:45Z +12880 2005-08-19T03:27:17Z 3386 552 2005-08-28T06:16:17Z 2 2020-02-15T06:59:45Z +12881 2005-08-19T03:28:13Z 1432 121 2005-08-25T05:25:13Z 1 2020-02-15T06:59:45Z +12882 2005-08-19T03:33:46Z 911 153 2005-08-21T22:49:46Z 1 2020-02-15T06:59:45Z +12883 2005-08-19T03:33:47Z 964 555 2005-08-23T21:55:47Z 1 2020-02-15T06:59:45Z +12884 2005-08-19T03:34:04Z 2768 348 2005-08-28T01:00:04Z 2 2020-02-15T06:59:45Z +12885 2005-08-19T03:37:25Z 883 185 2005-08-20T22:10:25Z 1 2020-02-15T06:59:45Z +12886 2005-08-19T03:38:32Z 2157 174 2005-08-26T02:17:32Z 1 2020-02-15T06:59:45Z +12887 2005-08-19T03:38:54Z 1214 150 2005-08-27T08:45:54Z 1 2020-02-15T06:59:45Z +12888 2005-08-19T03:41:09Z 4398 146 2005-08-24T07:09:09Z 2 2020-02-15T06:59:45Z +12889 2005-08-19T03:41:31Z 4376 515 2005-08-27T00:46:31Z 2 2020-02-15T06:59:45Z +12890 2005-08-19T03:42:08Z 3831 150 2005-08-19T23:08:08Z 1 2020-02-15T06:59:45Z +12891 2006-02-14T15:16:03Z 2764 388 2 2020-02-15T06:59:45Z +12892 2005-08-19T03:46:34Z 1044 121 2005-08-21T05:11:34Z 2 2020-02-15T06:59:45Z +12893 2005-08-19T03:46:43Z 168 498 2005-08-20T08:38:43Z 2 2020-02-15T06:59:45Z +12894 2005-08-19T03:49:28Z 4581 541 2005-08-25T01:51:28Z 2 2020-02-15T06:59:45Z +12895 2005-08-19T03:50:48Z 4372 396 2005-08-26T09:13:48Z 1 2020-02-15T06:59:45Z +12896 2005-08-19T03:52:44Z 148 220 2005-08-24T22:27:44Z 1 2020-02-15T06:59:45Z +12897 2006-02-14T15:16:03Z 1512 178 2 2020-02-15T06:59:45Z +12898 2005-08-19T03:54:34Z 1555 586 2005-08-23T08:14:34Z 2 2020-02-15T06:59:45Z +12899 2005-08-19T04:03:34Z 830 105 2005-08-20T08:34:34Z 2 2020-02-15T06:59:45Z +12900 2005-08-19T04:03:49Z 849 408 2005-08-24T22:11:49Z 2 2020-02-15T06:59:45Z +12901 2006-02-14T15:16:03Z 2799 180 2 2020-02-15T06:59:45Z +12902 2006-02-14T15:16:03Z 464 91 2 2020-02-15T06:59:45Z +12903 2005-08-19T04:09:38Z 2340 302 2005-08-26T03:24:38Z 2 2020-02-15T06:59:45Z +12904 2005-08-19T04:10:50Z 459 257 2005-08-27T23:24:50Z 1 2020-02-15T06:59:45Z +12905 2005-08-19T04:13:37Z 1043 480 2005-08-26T23:52:37Z 1 2020-02-15T06:59:45Z +12906 2005-08-19T04:13:43Z 2060 401 2005-08-20T04:24:43Z 1 2020-02-15T06:59:45Z +12907 2005-08-19T04:16:13Z 2844 422 2005-08-27T02:43:13Z 1 2020-02-15T06:59:45Z +12908 2005-08-19T04:19:05Z 175 340 2005-08-25T09:50:05Z 1 2020-02-15T06:59:45Z +12909 2005-08-19T04:20:25Z 4300 210 2005-08-24T06:40:25Z 2 2020-02-15T06:59:45Z +12910 2005-08-19T04:23:13Z 3968 128 2005-08-20T22:27:13Z 1 2020-02-15T06:59:45Z +12911 2005-08-19T04:24:10Z 1770 367 2005-08-26T00:35:10Z 2 2020-02-15T06:59:45Z +12912 2005-08-19T04:24:35Z 1747 364 2005-08-27T07:13:35Z 2 2020-02-15T06:59:45Z +12913 2005-08-19T04:25:39Z 3719 356 2005-08-25T07:23:39Z 1 2020-02-15T06:59:45Z +12914 2005-08-19T04:25:59Z 4396 501 2005-08-23T08:04:59Z 2 2020-02-15T06:59:45Z +12915 2006-02-14T15:16:03Z 2651 516 1 2020-02-15T06:59:45Z +12916 2005-08-19T04:27:05Z 2277 157 2005-08-21T02:33:05Z 2 2020-02-15T06:59:45Z +12917 2005-08-19T04:27:11Z 107 152 2005-08-20T03:04:11Z 2 2020-02-15T06:59:45Z +12918 2005-08-19T04:31:36Z 972 13 2005-08-25T05:50:36Z 1 2020-02-15T06:59:45Z +12919 2005-08-19T04:32:15Z 2121 263 2005-08-24T05:56:15Z 2 2020-02-15T06:59:45Z +12920 2005-08-19T04:32:32Z 2516 511 2005-08-27T00:44:32Z 2 2020-02-15T06:59:45Z +12921 2005-08-19T04:47:48Z 781 234 2005-08-25T00:07:48Z 2 2020-02-15T06:59:45Z +12922 2005-08-19T04:48:48Z 342 25 2005-08-23T23:32:48Z 1 2020-02-15T06:59:45Z +12923 2005-08-19T04:50:20Z 1390 531 2005-08-22T10:42:20Z 1 2020-02-15T06:59:45Z +12924 2005-08-19T04:51:47Z 3807 519 2005-08-26T07:50:47Z 1 2020-02-15T06:59:45Z +12925 2005-08-19T04:59:01Z 3361 57 2005-08-27T02:03:01Z 2 2020-02-15T06:59:45Z +12926 2005-08-19T05:00:16Z 23 336 2005-08-26T06:12:16Z 2 2020-02-15T06:59:45Z +12927 2005-08-19T05:02:46Z 1171 223 2005-08-23T01:08:46Z 1 2020-02-15T06:59:45Z +12928 2005-08-19T05:04:09Z 4531 353 2005-08-24T09:09:09Z 2 2020-02-15T06:59:45Z +12929 2005-08-19T05:05:23Z 1531 310 2005-08-25T04:37:23Z 1 2020-02-15T06:59:45Z +12930 2005-08-19T05:11:32Z 4410 414 2005-08-22T02:20:32Z 2 2020-02-15T06:59:45Z +12931 2005-08-19T05:11:47Z 3070 407 2005-08-21T00:59:47Z 1 2020-02-15T06:59:45Z +12932 2005-08-19T05:17:30Z 2295 416 2005-08-21T09:24:30Z 1 2020-02-15T06:59:45Z +12933 2005-08-19T05:18:20Z 4103 589 2005-08-27T00:13:20Z 1 2020-02-15T06:59:45Z +12934 2005-08-19T05:18:42Z 3242 591 2005-08-24T10:42:42Z 1 2020-02-15T06:59:45Z +12935 2005-08-19T05:20:25Z 193 279 2005-08-21T03:10:25Z 2 2020-02-15T06:59:45Z +12936 2005-08-19T05:25:06Z 654 387 2005-08-28T08:21:06Z 1 2020-02-15T06:59:45Z +12937 2005-08-19T05:25:30Z 3826 348 2005-08-22T10:40:30Z 2 2020-02-15T06:59:45Z +12938 2006-02-14T15:16:03Z 3987 28 1 2020-02-15T06:59:45Z +12939 2005-08-19T05:38:25Z 3375 181 2005-08-23T23:52:25Z 1 2020-02-15T06:59:45Z +12940 2005-08-19T05:38:29Z 2222 340 2005-08-20T08:15:29Z 1 2020-02-15T06:59:45Z +12941 2005-08-19T05:39:26Z 2951 195 2005-08-22T09:50:26Z 2 2020-02-15T06:59:45Z +12942 2005-08-19T05:40:36Z 3938 103 2005-08-27T02:04:36Z 1 2020-02-15T06:59:45Z +12943 2005-08-19T05:46:26Z 3930 547 2005-08-22T03:26:26Z 2 2020-02-15T06:59:45Z +12944 2005-08-19T05:48:12Z 2956 148 2005-08-28T10:10:12Z 1 2020-02-15T06:59:45Z +12945 2005-08-19T05:51:46Z 3638 312 2005-08-23T11:22:46Z 2 2020-02-15T06:59:45Z +12946 2005-08-19T05:53:34Z 2066 444 2005-08-20T07:30:34Z 1 2020-02-15T06:59:45Z +12947 2005-08-19T05:54:21Z 935 499 2005-08-22T09:17:21Z 1 2020-02-15T06:59:45Z +12948 2005-08-19T05:55:14Z 4173 442 2005-08-22T01:05:14Z 2 2020-02-15T06:59:45Z +12949 2005-08-19T05:55:52Z 4209 279 2005-08-23T00:01:52Z 1 2020-02-15T06:59:45Z +12950 2005-08-19T05:55:58Z 1064 463 2005-08-23T08:05:58Z 1 2020-02-15T06:59:45Z +12951 2005-08-19T05:56:44Z 2143 70 2005-08-24T11:28:44Z 2 2020-02-15T06:59:45Z +12952 2005-08-19T06:00:52Z 2460 228 2005-08-20T02:17:52Z 1 2020-02-15T06:59:45Z +12953 2005-08-19T06:04:07Z 3954 429 2005-08-28T11:05:07Z 1 2020-02-15T06:59:45Z +12954 2005-08-19T06:04:34Z 3592 63 2005-08-28T02:12:34Z 2 2020-02-15T06:59:45Z +12955 2005-08-19T06:05:58Z 2040 410 2005-08-26T04:24:58Z 2 2020-02-15T06:59:45Z +12956 2005-08-19T06:06:26Z 3613 241 2005-08-28T08:37:26Z 2 2020-02-15T06:59:45Z +12957 2005-08-19T06:12:44Z 2219 512 2005-08-28T10:49:44Z 2 2020-02-15T06:59:45Z +12958 2005-08-19T06:19:21Z 4214 569 2005-08-20T02:21:21Z 1 2020-02-15T06:59:45Z +12959 2006-02-14T15:16:03Z 1540 284 2 2020-02-15T06:59:45Z +12960 2005-08-19T06:21:52Z 3498 152 2005-08-25T04:16:52Z 1 2020-02-15T06:59:45Z +12961 2005-08-19T06:22:37Z 4529 386 2005-08-23T00:49:37Z 1 2020-02-15T06:59:45Z +12962 2005-08-19T06:22:48Z 575 171 2005-08-27T07:47:48Z 1 2020-02-15T06:59:45Z +12963 2005-08-19T06:26:04Z 1521 2 2005-08-23T11:37:04Z 2 2020-02-15T06:59:45Z +12964 2005-08-19T06:29:13Z 2854 142 2005-08-22T12:23:13Z 2 2020-02-15T06:59:45Z +12965 2005-08-19T06:33:00Z 4308 430 2005-08-22T02:02:00Z 1 2020-02-15T06:59:45Z +12966 2005-08-19T06:37:48Z 3196 69 2005-08-26T03:59:48Z 2 2020-02-15T06:59:45Z +12967 2005-08-19T06:37:51Z 3404 170 2005-08-25T06:58:51Z 2 2020-02-15T06:59:45Z +12968 2005-08-19T06:38:18Z 3108 166 2005-08-20T08:29:18Z 1 2020-02-15T06:59:45Z +12969 2005-08-19T06:38:59Z 191 224 2005-08-25T09:09:59Z 2 2020-02-15T06:59:45Z +12970 2006-02-14T15:16:03Z 3999 216 1 2020-02-15T06:59:45Z +12971 2005-08-19T06:42:43Z 3504 492 2005-08-23T10:49:43Z 2 2020-02-15T06:59:45Z +12972 2005-08-19T06:43:28Z 1218 55 2005-08-27T11:30:28Z 1 2020-02-15T06:59:45Z +12973 2005-08-19T06:48:11Z 128 163 2005-08-22T07:18:11Z 2 2020-02-15T06:59:45Z +12974 2005-08-19T06:51:02Z 3599 218 2005-08-25T11:48:02Z 2 2020-02-15T06:59:45Z +12975 2005-08-19T06:51:19Z 3300 236 2005-08-25T04:22:19Z 1 2020-02-15T06:59:45Z +12976 2005-08-19T06:52:58Z 66 592 2005-08-26T11:23:58Z 2 2020-02-15T06:59:45Z +12977 2005-08-19T06:55:33Z 2004 388 2005-08-27T07:38:33Z 2 2020-02-15T06:59:45Z +12978 2005-08-19T06:57:27Z 3252 167 2005-08-20T09:10:27Z 2 2020-02-15T06:59:45Z +12979 2005-08-19T07:00:35Z 1227 267 2005-08-21T06:12:35Z 2 2020-02-15T06:59:45Z +12980 2005-08-19T07:03:14Z 1854 144 2005-08-26T05:07:14Z 1 2020-02-15T06:59:45Z +12981 2005-08-19T07:04:00Z 3925 481 2005-08-21T09:17:00Z 1 2020-02-15T06:59:45Z +12982 2005-08-19T07:06:34Z 1258 44 2005-08-21T06:53:34Z 1 2020-02-15T06:59:45Z +12983 2005-08-19T07:06:51Z 406 148 2005-08-28T10:35:51Z 2 2020-02-15T06:59:45Z +12984 2005-08-19T07:06:51Z 4211 537 2005-08-22T04:04:51Z 1 2020-02-15T06:59:45Z +12985 2005-08-19T07:08:05Z 4133 83 2005-08-24T02:25:05Z 1 2020-02-15T06:59:45Z +12986 2005-08-19T07:09:36Z 1145 210 2005-08-22T05:01:36Z 1 2020-02-15T06:59:45Z +12987 2005-08-19T07:11:44Z 3665 134 2005-08-20T04:17:44Z 1 2020-02-15T06:59:45Z +12988 2006-02-14T15:16:03Z 81 236 2 2020-02-15T06:59:45Z +12989 2005-08-19T07:19:04Z 2929 306 2005-08-21T10:58:04Z 1 2020-02-15T06:59:45Z +12990 2005-08-19T07:20:39Z 1825 360 2005-08-21T12:31:39Z 2 2020-02-15T06:59:45Z +12991 2005-08-19T07:21:24Z 2227 126 2005-08-21T04:31:24Z 2 2020-02-15T06:59:45Z +12992 2005-08-19T07:23:06Z 3022 597 2005-08-23T06:11:06Z 2 2020-02-15T06:59:45Z +12993 2005-08-19T07:24:03Z 4225 484 2005-08-26T07:15:03Z 2 2020-02-15T06:59:45Z +12994 2005-08-19T07:26:10Z 3809 506 2005-08-20T07:02:10Z 2 2020-02-15T06:59:45Z +12995 2005-08-19T07:26:30Z 2069 566 2005-08-25T12:47:30Z 2 2020-02-15T06:59:45Z +12996 2005-08-19T07:31:32Z 4445 380 2005-08-25T11:59:32Z 1 2020-02-15T06:59:45Z +12997 2005-08-19T07:31:46Z 1661 311 2005-08-24T09:20:46Z 2 2020-02-15T06:59:45Z +12998 2005-08-19T07:32:16Z 2301 354 2005-08-24T01:56:16Z 2 2020-02-15T06:59:45Z +12999 2005-08-19T07:34:53Z 661 24 2005-08-26T03:57:53Z 1 2020-02-15T06:59:45Z +13000 2005-08-19T07:36:42Z 2341 141 2005-08-22T08:50:42Z 1 2020-02-15T06:59:45Z +13001 2005-08-19T07:36:44Z 2505 254 2005-08-22T13:06:44Z 1 2020-02-15T06:59:45Z +13002 2005-08-19T07:37:58Z 3892 477 2005-08-26T11:32:58Z 2 2020-02-15T06:59:45Z +13003 2005-08-19T07:39:29Z 3431 451 2005-08-23T05:48:29Z 2 2020-02-15T06:59:45Z +13004 2005-08-19T07:40:08Z 771 442 2005-08-20T11:49:08Z 1 2020-02-15T06:59:45Z +13005 2005-08-19T07:45:42Z 3417 104 2005-08-20T12:45:42Z 2 2020-02-15T06:59:45Z +13006 2005-08-19T07:47:16Z 3157 134 2005-08-21T06:17:16Z 1 2020-02-15T06:59:45Z +13007 2005-08-19T07:47:43Z 4280 430 2005-08-26T02:48:43Z 2 2020-02-15T06:59:45Z +13008 2006-02-14T15:16:03Z 1838 181 1 2020-02-15T06:59:45Z +13009 2005-08-19T07:50:35Z 677 376 2005-08-21T06:04:35Z 1 2020-02-15T06:59:45Z +13010 2005-08-19T07:52:21Z 825 413 2005-08-27T12:51:21Z 1 2020-02-15T06:59:45Z +13011 2005-08-19T07:53:58Z 1998 529 2005-08-24T12:00:58Z 1 2020-02-15T06:59:45Z +13012 2005-08-19T07:54:59Z 1690 145 2005-08-26T09:50:59Z 2 2020-02-15T06:59:45Z +13013 2005-08-19T07:55:51Z 841 293 2005-08-26T05:14:51Z 1 2020-02-15T06:59:45Z +13014 2005-08-19T07:56:08Z 3400 344 2005-08-21T10:20:08Z 2 2020-02-15T06:59:45Z +13015 2005-08-19T07:56:51Z 3461 126 2005-08-28T07:05:51Z 2 2020-02-15T06:59:45Z +13016 2005-08-19T07:57:14Z 3095 175 2005-08-23T03:29:14Z 1 2020-02-15T06:59:45Z +13017 2005-08-19T08:02:24Z 2160 104 2005-08-26T07:32:24Z 1 2020-02-15T06:59:45Z +13018 2005-08-19T08:04:50Z 2122 168 2005-08-26T11:46:50Z 1 2020-02-15T06:59:45Z +13019 2005-08-19T08:07:43Z 2827 597 2005-08-20T12:09:43Z 2 2020-02-15T06:59:45Z +13020 2005-08-19T08:07:50Z 4501 92 2005-08-28T11:42:50Z 1 2020-02-15T06:59:45Z +13021 2005-08-19T08:08:04Z 1242 309 2005-08-26T12:04:04Z 2 2020-02-15T06:59:45Z +13022 2006-02-14T15:16:03Z 2266 336 2 2020-02-15T06:59:45Z +13023 2005-08-19T08:13:54Z 1566 69 2005-08-27T13:18:54Z 1 2020-02-15T06:59:45Z +13024 2005-08-19T08:19:21Z 2917 401 2005-08-27T05:18:21Z 1 2020-02-15T06:59:45Z +13025 2006-02-14T15:16:03Z 4066 269 1 2020-02-15T06:59:45Z +13026 2005-08-19T08:22:45Z 3026 79 2005-08-21T09:31:45Z 1 2020-02-15T06:59:45Z +13027 2005-08-19T08:25:16Z 3756 128 2005-08-25T13:42:16Z 1 2020-02-15T06:59:45Z +13028 2005-08-19T08:27:23Z 2165 371 2005-08-24T03:46:23Z 1 2020-02-15T06:59:45Z +13029 2005-08-19T08:28:04Z 3283 293 2005-08-22T12:25:04Z 2 2020-02-15T06:59:45Z +13030 2005-08-19T08:28:11Z 2614 240 2005-08-24T07:20:11Z 1 2020-02-15T06:59:45Z +13031 2005-08-19T08:30:04Z 1525 567 2005-08-23T09:35:04Z 2 2020-02-15T06:59:45Z +13032 2005-08-19T08:31:50Z 3699 82 2005-08-23T04:00:50Z 2 2020-02-15T06:59:45Z +13033 2005-08-19T08:34:39Z 1682 344 2005-08-28T10:13:39Z 1 2020-02-15T06:59:45Z +13034 2005-08-19T08:41:29Z 990 387 2005-08-20T07:36:29Z 2 2020-02-15T06:59:45Z +13035 2005-08-19T08:46:45Z 4082 135 2005-08-22T11:42:45Z 1 2020-02-15T06:59:45Z +13036 2005-08-19T08:48:37Z 1469 20 2005-08-22T04:13:37Z 2 2020-02-15T06:59:45Z +13037 2005-08-19T08:53:57Z 65 275 2005-08-28T08:56:57Z 2 2020-02-15T06:59:45Z +13038 2005-08-19T08:55:16Z 2226 532 2005-08-25T12:23:16Z 2 2020-02-15T06:59:45Z +13039 2005-08-19T08:55:19Z 1952 370 2005-08-20T07:39:19Z 2 2020-02-15T06:59:45Z +13040 2005-08-19T09:04:24Z 4113 425 2005-08-23T12:36:24Z 2 2020-02-15T06:59:45Z +13041 2005-08-19T09:05:38Z 1576 462 2005-08-27T06:34:38Z 1 2020-02-15T06:59:45Z +13042 2005-08-19T09:06:08Z 1047 414 2005-08-22T13:46:08Z 2 2020-02-15T06:59:45Z +13043 2005-08-19T09:07:13Z 24 127 2005-08-27T07:49:13Z 1 2020-02-15T06:59:45Z +13044 2005-08-19T09:14:31Z 809 142 2005-08-20T11:16:31Z 1 2020-02-15T06:59:45Z +13045 2005-08-19T09:17:35Z 389 254 2005-08-23T12:04:35Z 1 2020-02-15T06:59:45Z +13046 2005-08-19T09:21:10Z 965 37 2005-08-26T13:00:10Z 2 2020-02-15T06:59:45Z +13047 2005-08-19T09:24:49Z 2704 394 2005-08-24T11:06:49Z 2 2020-02-15T06:59:45Z +13048 2005-08-19T09:25:06Z 1029 486 2005-08-28T11:18:06Z 2 2020-02-15T06:59:45Z +13049 2005-08-19T09:25:40Z 4122 53 2005-08-27T10:19:40Z 2 2020-02-15T06:59:45Z +13050 2005-08-19T09:31:23Z 3682 131 2005-08-26T06:56:23Z 2 2020-02-15T06:59:45Z +13051 2005-08-19T09:31:33Z 4064 90 2005-08-28T06:15:33Z 1 2020-02-15T06:59:45Z +13052 2005-08-19T09:31:42Z 3036 502 2005-08-28T15:11:42Z 2 2020-02-15T06:59:45Z +13053 2005-08-19T09:31:48Z 2044 140 2005-08-28T07:51:48Z 2 2020-02-15T06:59:45Z +13054 2005-08-19T09:34:02Z 2983 325 2005-08-23T05:25:02Z 2 2020-02-15T06:59:45Z +13055 2005-08-19T09:36:28Z 3580 485 2005-08-24T05:53:28Z 2 2020-02-15T06:59:45Z +13056 2006-02-14T15:16:03Z 3751 115 2 2020-02-15T06:59:45Z +13057 2005-08-19T09:40:05Z 876 105 2005-08-28T13:22:05Z 2 2020-02-15T06:59:45Z +13058 2005-08-19T09:40:53Z 2437 24 2005-08-26T05:48:53Z 2 2020-02-15T06:59:45Z +13059 2005-08-19T09:42:01Z 3810 341 2005-08-21T12:07:01Z 1 2020-02-15T06:59:45Z +13060 2005-08-19T09:43:25Z 507 22 2005-08-28T15:22:25Z 1 2020-02-15T06:59:45Z +13061 2005-08-19T09:43:39Z 730 576 2005-08-24T10:03:39Z 1 2020-02-15T06:59:45Z +13062 2005-08-19T09:44:17Z 1790 385 2005-08-27T11:42:17Z 1 2020-02-15T06:59:45Z +13063 2005-08-19T09:45:41Z 1192 5 2005-08-24T09:11:41Z 2 2020-02-15T06:59:45Z +13064 2005-08-19T09:46:53Z 4131 588 2005-08-21T08:29:53Z 1 2020-02-15T06:59:45Z +13065 2005-08-19T09:48:52Z 1887 518 2005-08-22T07:12:52Z 1 2020-02-15T06:59:45Z +13066 2005-08-19T09:50:39Z 3730 336 2005-08-22T14:01:39Z 1 2020-02-15T06:59:45Z +13067 2005-08-19T09:51:17Z 3825 172 2005-08-25T09:58:17Z 2 2020-02-15T06:59:45Z +13068 2005-08-19T09:55:16Z 3019 1 2005-08-20T14:44:16Z 2 2020-02-15T06:59:45Z +13069 2005-08-19T09:55:20Z 368 299 2005-08-24T04:10:20Z 2 2020-02-15T06:59:45Z +13070 2005-08-19T09:56:23Z 2214 235 2005-08-24T09:08:23Z 2 2020-02-15T06:59:45Z +13071 2005-08-19T10:01:07Z 527 578 2005-08-26T14:26:07Z 1 2020-02-15T06:59:45Z +13072 2005-08-19T10:03:30Z 2313 447 2005-08-22T14:27:30Z 2 2020-02-15T06:59:45Z +13073 2005-08-19T10:05:38Z 855 506 2005-08-26T07:37:38Z 2 2020-02-15T06:59:45Z +13074 2005-08-19T10:06:53Z 3266 341 2005-08-28T09:56:53Z 2 2020-02-15T06:59:45Z +13075 2005-08-19T10:10:10Z 4125 224 2005-08-21T08:44:10Z 2 2020-02-15T06:59:45Z +13076 2005-08-19T10:10:26Z 1226 201 2005-08-22T05:41:26Z 1 2020-02-15T06:59:45Z +13077 2005-08-19T10:15:19Z 433 241 2005-08-21T06:51:19Z 2 2020-02-15T06:59:45Z +13078 2005-08-19T10:16:43Z 4104 479 2005-08-27T11:35:43Z 2 2020-02-15T06:59:45Z +13079 2006-02-14T15:16:03Z 733 107 1 2020-02-15T06:59:45Z +13080 2005-08-19T10:18:00Z 4222 452 2005-08-22T06:37:00Z 2 2020-02-15T06:59:45Z +13081 2005-08-19T10:19:06Z 3077 170 2005-08-20T05:49:06Z 1 2020-02-15T06:59:45Z +13082 2005-08-19T10:19:19Z 2117 387 2005-08-28T05:02:19Z 1 2020-02-15T06:59:45Z +13083 2005-08-19T10:26:45Z 3469 455 2005-08-23T05:31:45Z 2 2020-02-15T06:59:45Z +13084 2005-08-19T10:27:25Z 3792 204 2005-08-26T07:32:25Z 2 2020-02-15T06:59:45Z +13085 2005-08-19T10:28:22Z 360 215 2005-08-22T07:37:22Z 2 2020-02-15T06:59:45Z +13086 2005-08-19T10:32:28Z 3712 350 2005-08-26T07:57:28Z 2 2020-02-15T06:59:45Z +13087 2005-08-19T10:33:52Z 2693 171 2005-08-27T09:15:52Z 2 2020-02-15T06:59:45Z +13088 2005-08-19T10:36:11Z 4281 457 2005-08-21T09:12:11Z 1 2020-02-15T06:59:45Z +13089 2005-08-19T10:38:56Z 1783 63 2005-08-24T12:41:56Z 1 2020-02-15T06:59:45Z +13090 2005-08-19T10:39:54Z 1447 52 2005-08-28T10:31:54Z 1 2020-02-15T06:59:45Z +13091 2005-08-19T10:40:10Z 1815 127 2005-08-23T09:03:10Z 1 2020-02-15T06:59:45Z +13092 2005-08-19T10:41:09Z 4359 480 2005-08-25T05:11:09Z 2 2020-02-15T06:59:45Z +13093 2005-08-19T10:46:16Z 1667 160 2005-08-26T08:05:16Z 1 2020-02-15T06:59:45Z +13094 2005-08-19T10:47:58Z 3178 494 2005-08-21T06:20:58Z 1 2020-02-15T06:59:45Z +13095 2005-08-19T10:48:10Z 520 508 2005-08-28T06:15:10Z 1 2020-02-15T06:59:45Z +13096 2005-08-19T10:49:03Z 420 13 2005-08-21T05:33:03Z 1 2020-02-15T06:59:45Z +13097 2005-08-19T10:50:43Z 4194 157 2005-08-24T11:10:43Z 2 2020-02-15T06:59:45Z +13098 2005-08-19T10:51:59Z 3770 51 2005-08-24T11:27:59Z 1 2020-02-15T06:59:45Z +13099 2005-08-19T10:55:19Z 969 436 2005-08-27T10:54:19Z 1 2020-02-15T06:59:45Z +13100 2005-08-19T10:55:45Z 916 451 2005-08-25T12:28:45Z 1 2020-02-15T06:59:45Z +13101 2005-08-19T11:01:54Z 1804 39 2005-08-27T16:06:54Z 2 2020-02-15T06:59:45Z +13102 2005-08-19T11:02:03Z 2885 285 2005-08-28T13:05:03Z 2 2020-02-15T06:59:45Z +13103 2005-08-19T11:05:51Z 1751 274 2005-08-26T09:16:51Z 2 2020-02-15T06:59:45Z +13104 2005-08-19T11:06:06Z 310 591 2005-08-21T13:50:06Z 2 2020-02-15T06:59:45Z +13105 2005-08-19T11:06:16Z 729 279 2005-08-27T15:21:16Z 1 2020-02-15T06:59:45Z +13106 2006-02-14T15:16:03Z 3212 440 1 2020-02-15T06:59:45Z +13107 2005-08-19T11:13:58Z 3870 356 2005-08-20T15:03:58Z 2 2020-02-15T06:59:45Z +13108 2006-02-14T15:16:03Z 3630 73 1 2020-02-15T06:59:45Z +13109 2005-08-19T11:23:20Z 46 259 2005-08-25T17:05:20Z 1 2020-02-15T06:59:45Z +13110 2005-08-19T11:24:37Z 62 447 2005-08-21T05:48:37Z 1 2020-02-15T06:59:45Z +13111 2005-08-19T11:25:10Z 580 26 2005-08-21T05:52:10Z 2 2020-02-15T06:59:45Z +13112 2005-08-19T11:27:10Z 2074 259 2005-08-22T05:32:10Z 1 2020-02-15T06:59:45Z +13113 2005-08-19T11:27:20Z 2393 573 2005-08-23T12:40:20Z 1 2020-02-15T06:59:45Z +13114 2005-08-19T11:27:32Z 4342 550 2005-08-28T11:21:32Z 2 2020-02-15T06:59:45Z +13115 2005-08-19T11:27:43Z 1961 84 2005-08-20T10:58:43Z 1 2020-02-15T06:59:45Z +13116 2005-08-19T11:31:41Z 1544 150 2005-08-27T16:05:41Z 1 2020-02-15T06:59:45Z +13117 2005-08-19T11:33:20Z 3430 385 2005-08-20T11:55:20Z 2 2020-02-15T06:59:45Z +13118 2005-08-19T11:39:58Z 470 181 2005-08-25T14:44:58Z 1 2020-02-15T06:59:45Z +13119 2005-08-19T11:44:59Z 1401 240 2005-08-20T12:30:59Z 2 2020-02-15T06:59:45Z +13120 2005-08-19T11:47:38Z 2273 314 2005-08-26T08:20:38Z 2 2020-02-15T06:59:45Z +13121 2005-08-19T11:51:39Z 3517 251 2005-08-22T11:50:39Z 2 2020-02-15T06:59:45Z +13122 2005-08-19T11:53:49Z 3319 277 2005-08-26T16:01:49Z 2 2020-02-15T06:59:45Z +13123 2005-08-19T11:55:13Z 2804 220 2005-08-21T05:55:13Z 2 2020-02-15T06:59:45Z +13124 2005-08-19T11:55:59Z 2105 78 2005-08-26T06:01:59Z 2 2020-02-15T06:59:45Z +13125 2005-08-19T11:57:49Z 3722 192 2005-08-26T07:53:49Z 1 2020-02-15T06:59:45Z +13126 2005-08-19T12:00:28Z 1392 253 2005-08-28T17:27:28Z 1 2020-02-15T06:59:45Z +13127 2005-08-19T12:04:03Z 2582 178 2005-08-27T13:56:03Z 1 2020-02-15T06:59:45Z +13128 2005-08-19T12:04:16Z 485 206 2005-08-26T16:06:16Z 2 2020-02-15T06:59:45Z +13129 2005-08-19T12:05:04Z 4455 274 2005-08-26T10:24:04Z 1 2020-02-15T06:59:45Z +13130 2005-08-19T12:06:42Z 2006 254 2005-08-23T12:08:42Z 1 2020-02-15T06:59:45Z +13131 2005-08-19T12:08:13Z 1466 480 2005-08-27T13:43:13Z 2 2020-02-15T06:59:45Z +13132 2005-08-19T12:10:57Z 1748 529 2005-08-27T12:22:57Z 2 2020-02-15T06:59:45Z +13133 2005-08-19T12:11:03Z 1635 523 2005-08-28T12:36:03Z 2 2020-02-15T06:59:45Z +13134 2005-08-19T12:14:14Z 1354 184 2005-08-20T11:52:14Z 1 2020-02-15T06:59:45Z +13135 2005-08-19T12:22:52Z 1585 361 2005-08-21T14:04:52Z 2 2020-02-15T06:59:45Z +13136 2005-08-19T12:24:23Z 2532 50 2005-08-28T08:37:23Z 2 2020-02-15T06:59:45Z +13137 2005-08-19T12:26:32Z 4431 20 2005-08-22T13:26:32Z 1 2020-02-15T06:59:45Z +13138 2005-08-19T12:30:01Z 3138 214 2005-08-21T06:35:01Z 2 2020-02-15T06:59:45Z +13139 2005-08-19T12:32:10Z 2099 554 2005-08-24T12:12:10Z 1 2020-02-15T06:59:45Z +13140 2005-08-19T12:35:56Z 4210 323 2005-08-27T18:24:56Z 2 2020-02-15T06:59:45Z +13141 2005-08-19T12:41:41Z 4545 376 2005-08-21T08:17:41Z 2 2020-02-15T06:59:45Z +13142 2005-08-19T12:42:28Z 1404 269 2005-08-26T14:52:28Z 1 2020-02-15T06:59:45Z +13143 2005-08-19T12:44:38Z 1655 371 2005-08-25T10:59:38Z 2 2020-02-15T06:59:45Z +13144 2005-08-19T12:45:55Z 3766 456 2005-08-27T10:37:55Z 2 2020-02-15T06:59:45Z +13145 2005-08-19T12:53:53Z 1383 72 2005-08-23T08:06:53Z 1 2020-02-15T06:59:45Z +13146 2005-08-19T12:54:42Z 1463 116 2005-08-26T07:31:42Z 1 2020-02-15T06:59:45Z +13147 2005-08-19T12:55:09Z 3490 37 2005-08-22T18:10:09Z 1 2020-02-15T06:59:45Z +13148 2005-08-19T12:55:30Z 1762 137 2005-08-21T11:01:30Z 1 2020-02-15T06:59:45Z +13149 2005-08-19T13:07:12Z 1436 40 2005-08-28T18:12:12Z 1 2020-02-15T06:59:45Z +13150 2005-08-19T13:08:19Z 1514 457 2005-08-25T18:00:19Z 1 2020-02-15T06:59:45Z +13151 2005-08-19T13:08:23Z 3045 16 2005-08-20T12:38:23Z 2 2020-02-15T06:59:45Z +13152 2005-08-19T13:09:32Z 3571 597 2005-08-25T14:47:32Z 1 2020-02-15T06:59:45Z +13153 2005-08-19T13:09:47Z 3896 431 2005-08-23T17:35:47Z 2 2020-02-15T06:59:45Z +13154 2005-08-19T13:09:54Z 2465 255 2005-08-26T16:40:54Z 1 2020-02-15T06:59:45Z +13155 2005-08-19T13:10:23Z 290 442 2005-08-25T19:07:23Z 2 2020-02-15T06:59:45Z +13156 2005-08-19T13:10:42Z 770 512 2005-08-25T15:08:42Z 2 2020-02-15T06:59:45Z +13157 2005-08-19T13:12:28Z 4391 592 2005-08-20T10:41:28Z 1 2020-02-15T06:59:45Z +13158 2005-08-19T13:18:10Z 944 327 2005-08-25T09:27:10Z 1 2020-02-15T06:59:45Z +13159 2005-08-19T13:19:59Z 2300 497 2005-08-21T09:22:59Z 2 2020-02-15T06:59:45Z +13160 2005-08-19T13:21:04Z 410 484 2005-08-22T18:49:04Z 1 2020-02-15T06:59:45Z +13161 2006-02-14T15:16:03Z 986 175 1 2020-02-15T06:59:45Z +13162 2005-08-19T13:28:26Z 1845 478 2005-08-24T17:37:26Z 1 2020-02-15T06:59:45Z +13163 2005-08-19T13:29:46Z 3068 57 2005-08-22T07:48:46Z 2 2020-02-15T06:59:45Z +13164 2005-08-19T13:30:55Z 1104 145 2005-08-26T10:12:55Z 2 2020-02-15T06:59:45Z +13165 2005-08-19T13:34:10Z 138 289 2005-08-21T18:33:10Z 2 2020-02-15T06:59:45Z +13166 2005-08-19T13:36:28Z 4386 504 2005-08-22T07:57:28Z 1 2020-02-15T06:59:45Z +13167 2005-08-19T13:36:41Z 557 120 2005-08-23T15:29:41Z 2 2020-02-15T06:59:45Z +13168 2005-08-19T13:37:28Z 2210 186 2005-08-27T17:54:28Z 2 2020-02-15T06:59:45Z +13169 2005-08-19T13:43:35Z 1709 141 2005-08-26T09:31:35Z 1 2020-02-15T06:59:45Z +13170 2005-08-19T13:45:48Z 1072 176 2005-08-27T11:00:48Z 2 2020-02-15T06:59:45Z +13171 2005-08-19T13:48:54Z 1765 122 2005-08-27T18:57:54Z 1 2020-02-15T06:59:45Z +13172 2005-08-19T13:49:07Z 1301 298 2005-08-20T19:39:07Z 2 2020-02-15T06:59:45Z +13173 2005-08-19T13:50:36Z 1304 29 2005-08-26T12:34:36Z 2 2020-02-15T06:59:45Z +13174 2005-08-19T13:52:50Z 2303 482 2005-08-22T14:43:50Z 2 2020-02-15T06:59:45Z +13175 2005-08-19T13:54:53Z 3187 239 2005-08-20T16:25:53Z 2 2020-02-15T06:59:45Z +13176 2005-08-19T13:56:54Z 2269 1 2005-08-23T08:50:54Z 2 2020-02-15T06:59:45Z +13177 2005-08-19T13:56:58Z 3172 126 2005-08-23T13:13:58Z 2 2020-02-15T06:59:45Z +13178 2006-02-14T15:16:03Z 693 394 1 2020-02-15T06:59:45Z +13179 2005-08-19T13:59:53Z 1624 104 2005-08-25T12:10:53Z 1 2020-02-15T06:59:45Z +13180 2005-08-19T14:00:38Z 3443 322 2005-08-20T09:56:38Z 1 2020-02-15T06:59:45Z +13181 2005-08-19T14:00:56Z 1256 128 2005-08-24T13:52:56Z 2 2020-02-15T06:59:45Z +13182 2006-02-14T15:16:03Z 364 496 2 2020-02-15T06:59:45Z +13183 2005-08-19T14:09:26Z 2404 301 2005-08-28T08:44:26Z 2 2020-02-15T06:59:45Z +13184 2005-08-19T14:16:18Z 4395 393 2005-08-20T08:44:18Z 1 2020-02-15T06:59:45Z +13185 2005-08-19T14:22:30Z 241 174 2005-08-20T10:13:30Z 2 2020-02-15T06:59:45Z +13186 2005-08-19T14:23:19Z 2802 176 2005-08-28T11:26:19Z 1 2020-02-15T06:59:45Z +13187 2005-08-19T14:24:48Z 1944 543 2005-08-20T19:37:48Z 1 2020-02-15T06:59:45Z +13188 2005-08-19T14:27:03Z 583 472 2005-08-28T09:15:03Z 2 2020-02-15T06:59:45Z +13189 2005-08-19T14:27:16Z 3444 368 2005-08-28T10:34:16Z 1 2020-02-15T06:59:45Z +13190 2005-08-19T14:27:59Z 4316 290 2005-08-26T13:45:59Z 1 2020-02-15T06:59:45Z +13191 2005-08-19T14:28:48Z 2753 371 2005-08-23T12:53:48Z 2 2020-02-15T06:59:45Z +13192 2005-08-19T14:30:06Z 966 532 2005-08-27T15:20:06Z 1 2020-02-15T06:59:45Z +13193 2005-08-19T14:33:45Z 523 118 2005-08-28T08:46:45Z 2 2020-02-15T06:59:45Z +13194 2005-08-19T14:34:12Z 2473 58 2005-08-26T10:18:12Z 2 2020-02-15T06:59:45Z +13195 2005-08-19T14:39:14Z 2537 565 2005-08-24T10:30:14Z 2 2020-02-15T06:59:45Z +13196 2005-08-19T14:40:32Z 458 202 2005-08-26T18:15:32Z 2 2020-02-15T06:59:45Z +13197 2005-08-19T14:44:03Z 3190 358 2005-08-22T10:11:03Z 1 2020-02-15T06:59:45Z +13198 2005-08-19T14:47:18Z 4273 169 2005-08-21T18:09:18Z 2 2020-02-15T06:59:45Z +13199 2005-08-19T14:53:22Z 4291 339 2005-08-27T19:03:22Z 2 2020-02-15T06:59:45Z +13200 2005-08-19T14:55:58Z 2746 577 2005-08-27T11:35:58Z 2 2020-02-15T06:59:45Z +13201 2005-08-19T14:56:05Z 111 508 2005-08-25T14:37:05Z 1 2020-02-15T06:59:45Z +13202 2005-08-19T14:58:30Z 3546 381 2005-08-27T17:10:30Z 1 2020-02-15T06:59:45Z +13203 2005-08-19T15:00:58Z 804 257 2005-08-27T15:38:58Z 2 2020-02-15T06:59:45Z +13204 2005-08-19T15:02:48Z 4524 152 2005-08-24T18:07:48Z 1 2020-02-15T06:59:45Z +13205 2005-08-19T15:05:26Z 2616 495 2005-08-25T10:41:26Z 2 2020-02-15T06:59:45Z +13206 2005-08-19T15:05:34Z 2477 504 2005-08-21T20:37:34Z 2 2020-02-15T06:59:45Z +13207 2005-08-19T15:14:38Z 674 58 2005-08-27T16:09:38Z 1 2020-02-15T06:59:45Z +13208 2005-08-19T15:18:55Z 609 435 2005-08-24T11:59:55Z 1 2020-02-15T06:59:45Z +13209 2006-02-14T15:16:03Z 1574 5 2 2020-02-15T06:59:45Z +13210 2005-08-19T15:23:38Z 2789 487 2005-08-21T11:57:38Z 1 2020-02-15T06:59:45Z +13211 2005-08-19T15:23:41Z 1968 289 2005-08-22T16:58:41Z 1 2020-02-15T06:59:45Z +13212 2005-08-19T15:24:07Z 3691 158 2005-08-24T21:03:07Z 1 2020-02-15T06:59:45Z +13213 2005-08-19T15:25:48Z 1546 13 2005-08-22T09:32:48Z 1 2020-02-15T06:59:45Z +13214 2005-08-19T15:31:06Z 2675 157 2005-08-20T19:58:06Z 2 2020-02-15T06:59:45Z +13215 2005-08-19T15:35:38Z 3740 460 2005-08-27T12:16:38Z 1 2020-02-15T06:59:45Z +13216 2005-08-19T15:36:05Z 4335 422 2005-08-25T19:03:05Z 2 2020-02-15T06:59:45Z +13217 2005-08-19T15:38:39Z 616 565 2005-08-21T14:33:39Z 1 2020-02-15T06:59:45Z +13218 2005-08-19T15:39:39Z 4148 257 2005-08-22T17:28:39Z 1 2020-02-15T06:59:45Z +13219 2005-08-19T15:40:28Z 2075 288 2005-08-22T21:20:28Z 2 2020-02-15T06:59:45Z +13220 2005-08-19T15:42:32Z 1017 448 2005-08-25T13:37:32Z 1 2020-02-15T06:59:45Z +13221 2005-08-19T15:45:47Z 120 468 2005-08-26T21:10:47Z 1 2020-02-15T06:59:45Z +13222 2005-08-19T15:47:58Z 1656 91 2005-08-26T12:43:58Z 1 2020-02-15T06:59:45Z +13223 2005-08-19T15:52:04Z 332 461 2005-08-22T16:27:04Z 1 2020-02-15T06:59:45Z +13224 2005-08-19T15:52:13Z 3086 526 2005-08-28T20:53:13Z 2 2020-02-15T06:59:45Z +13225 2005-08-19T15:54:33Z 1420 562 2005-08-25T16:40:33Z 1 2020-02-15T06:59:45Z +13226 2005-08-19T16:05:36Z 2850 46 2005-08-21T10:07:36Z 2 2020-02-15T06:59:45Z +13227 2005-08-19T16:05:38Z 2759 288 2005-08-20T21:39:38Z 1 2020-02-15T06:59:45Z +13228 2005-08-19T16:08:16Z 2497 571 2005-08-20T18:55:16Z 1 2020-02-15T06:59:45Z +13229 2005-08-19T16:08:33Z 634 283 2005-08-22T19:54:33Z 2 2020-02-15T06:59:45Z +13230 2005-08-19T16:12:07Z 3645 151 2005-08-21T12:19:07Z 1 2020-02-15T06:59:45Z +13231 2005-08-19T16:12:49Z 2126 280 2005-08-27T17:14:49Z 2 2020-02-15T06:59:45Z +13232 2005-08-19T16:13:32Z 2370 206 2005-08-28T14:42:32Z 2 2020-02-15T06:59:45Z +13233 2005-08-19T16:14:41Z 1057 279 2005-08-24T21:13:41Z 1 2020-02-15T06:59:45Z +13234 2005-08-19T16:17:15Z 976 559 2005-08-27T12:36:15Z 1 2020-02-15T06:59:45Z +13235 2005-08-19T16:17:53Z 3902 367 2005-08-27T14:57:53Z 1 2020-02-15T06:59:45Z +13236 2005-08-19T16:18:24Z 4574 267 2005-08-27T17:48:24Z 2 2020-02-15T06:59:45Z +13237 2005-08-19T16:18:36Z 1272 169 2005-08-25T15:22:36Z 2 2020-02-15T06:59:45Z +13238 2005-08-19T16:20:56Z 985 348 2005-08-23T15:51:56Z 2 2020-02-15T06:59:45Z +13239 2005-08-19T16:22:13Z 3296 541 2005-08-23T19:26:13Z 1 2020-02-15T06:59:45Z +13240 2005-08-19T16:22:14Z 1411 179 2005-08-20T13:24:14Z 1 2020-02-15T06:59:45Z +13241 2005-08-19T16:25:00Z 3106 33 2005-08-26T12:27:00Z 2 2020-02-15T06:59:45Z +13242 2005-08-19T16:28:47Z 230 414 2005-08-24T22:13:47Z 2 2020-02-15T06:59:45Z +13243 2005-08-19T16:33:16Z 355 251 2005-08-25T13:19:16Z 2 2020-02-15T06:59:45Z +13244 2005-08-19T16:43:04Z 3246 298 2005-08-22T15:21:04Z 2 2020-02-15T06:59:45Z +13245 2005-08-19T16:43:41Z 1001 261 2005-08-20T21:17:41Z 1 2020-02-15T06:59:45Z +13246 2006-02-14T15:16:03Z 1849 411 2 2020-02-15T06:59:45Z +13247 2005-08-19T16:45:59Z 1271 24 2005-08-25T15:25:59Z 1 2020-02-15T06:59:45Z +13248 2005-08-19T16:47:41Z 2864 559 2005-08-28T18:11:41Z 2 2020-02-15T06:59:45Z +13249 2005-08-19T16:47:41Z 3084 377 2005-08-20T13:30:41Z 1 2020-02-15T06:59:45Z +13250 2005-08-19T16:47:55Z 2524 448 2005-08-26T16:54:55Z 2 2020-02-15T06:59:45Z +13251 2005-08-19T16:48:37Z 4216 111 2005-08-20T16:33:37Z 1 2020-02-15T06:59:45Z +13252 2005-08-19T16:50:50Z 775 451 2005-08-22T22:09:50Z 2 2020-02-15T06:59:45Z +13253 2005-08-19T16:53:56Z 472 399 2005-08-20T11:38:56Z 2 2020-02-15T06:59:45Z +13254 2005-08-19T16:54:01Z 3412 532 2005-08-27T19:50:01Z 2 2020-02-15T06:59:45Z +13255 2005-08-19T16:54:12Z 1101 150 2005-08-28T17:00:12Z 1 2020-02-15T06:59:45Z +13256 2005-08-19T16:54:12Z 2719 289 2005-08-28T16:54:12Z 1 2020-02-15T06:59:45Z +13257 2005-08-19T17:01:20Z 164 300 2005-08-24T17:26:20Z 1 2020-02-15T06:59:45Z +13258 2005-08-19T17:05:37Z 2246 349 2005-08-24T17:36:37Z 2 2020-02-15T06:59:45Z +13259 2005-08-19T17:08:53Z 2518 458 2005-08-23T14:14:53Z 1 2020-02-15T06:59:45Z +13260 2005-08-19T17:09:22Z 578 251 2005-08-24T21:31:22Z 2 2020-02-15T06:59:45Z +13261 2006-02-14T15:16:03Z 3538 417 1 2020-02-15T06:59:45Z +13262 2005-08-19T17:20:15Z 4483 184 2005-08-26T18:28:15Z 2 2020-02-15T06:59:45Z +13263 2005-08-19T17:26:55Z 214 206 2005-08-28T20:07:55Z 2 2020-02-15T06:59:45Z +13264 2005-08-19T17:27:10Z 1881 109 2005-08-27T16:00:10Z 1 2020-02-15T06:59:45Z +13265 2005-08-19T17:29:00Z 3933 314 2005-08-20T12:59:00Z 2 2020-02-15T06:59:45Z +13266 2005-08-19T17:31:20Z 1326 571 2005-08-21T11:41:20Z 2 2020-02-15T06:59:45Z +13267 2005-08-19T17:31:36Z 550 335 2005-08-21T13:47:36Z 1 2020-02-15T06:59:45Z +13268 2005-08-19T17:33:50Z 1166 255 2005-08-25T17:15:50Z 2 2020-02-15T06:59:45Z +13269 2005-08-19T17:34:00Z 2382 461 2005-08-20T15:17:00Z 2 2020-02-15T06:59:45Z +13270 2005-08-19T17:41:16Z 405 159 2005-08-23T20:22:16Z 2 2020-02-15T06:59:45Z +13271 2005-08-19T17:42:06Z 3872 242 2005-08-27T18:39:06Z 2 2020-02-15T06:59:45Z +13272 2005-08-19T17:49:13Z 2531 145 2005-08-23T15:49:13Z 2 2020-02-15T06:59:45Z +13273 2005-08-19T17:49:13Z 4181 433 2005-08-21T14:15:13Z 1 2020-02-15T06:59:45Z +13274 2005-08-19T17:50:03Z 704 272 2005-08-20T14:39:03Z 2 2020-02-15T06:59:45Z +13275 2005-08-19T17:53:38Z 710 377 2005-08-23T16:29:38Z 2 2020-02-15T06:59:45Z +13276 2005-08-19T17:53:42Z 625 516 2005-08-28T20:49:42Z 2 2020-02-15T06:59:45Z +13277 2005-08-19T17:57:35Z 3820 316 2005-08-25T15:45:35Z 2 2020-02-15T06:59:45Z +13278 2005-08-19T17:57:53Z 2691 282 2005-08-22T23:16:53Z 1 2020-02-15T06:59:45Z +13279 2005-08-19T18:02:18Z 2472 343 2005-08-24T22:15:18Z 2 2020-02-15T06:59:45Z +13280 2005-08-19T18:02:51Z 218 368 2005-08-21T23:17:51Z 2 2020-02-15T06:59:45Z +13281 2005-08-19T18:07:47Z 113 220 2005-08-20T21:51:47Z 2 2020-02-15T06:59:45Z +13282 2005-08-19T18:08:18Z 4373 59 2005-08-24T14:08:18Z 1 2020-02-15T06:59:45Z +13283 2005-08-19T18:10:19Z 2602 180 2005-08-23T16:09:19Z 2 2020-02-15T06:59:45Z +13284 2005-08-19T18:12:31Z 2128 338 2005-08-25T21:26:31Z 2 2020-02-15T06:59:45Z +13285 2005-08-19T18:18:44Z 2139 182 2005-08-20T12:33:44Z 1 2020-02-15T06:59:45Z +13286 2005-08-19T18:28:07Z 2685 245 2005-08-22T17:23:07Z 2 2020-02-15T06:59:45Z +13287 2005-08-19T18:28:24Z 2716 569 2005-08-26T20:13:24Z 2 2020-02-15T06:59:45Z +13288 2005-08-19T18:30:10Z 3558 162 2005-08-20T19:20:10Z 2 2020-02-15T06:59:45Z +13289 2005-08-19T18:31:30Z 3527 497 2005-08-20T13:43:30Z 1 2020-02-15T06:59:45Z +13290 2005-08-19T18:31:50Z 4174 23 2005-08-25T15:49:50Z 2 2020-02-15T06:59:45Z +13291 2005-08-19T18:32:11Z 1631 243 2005-08-20T18:22:11Z 2 2020-02-15T06:59:45Z +13292 2005-08-19T18:35:32Z 1336 171 2005-08-22T00:27:32Z 1 2020-02-15T06:59:45Z +13293 2005-08-19T18:35:52Z 380 399 2005-08-23T17:18:52Z 2 2020-02-15T06:59:45Z +13294 2005-08-19T18:36:35Z 156 534 2005-08-20T13:57:35Z 1 2020-02-15T06:59:45Z +13295 2006-02-14T15:16:03Z 2408 229 1 2020-02-15T06:59:45Z +13296 2005-08-19T18:43:53Z 1728 300 2005-08-21T23:30:53Z 2 2020-02-15T06:59:45Z +13297 2005-08-19T18:45:49Z 3818 359 2005-08-22T14:58:49Z 2 2020-02-15T06:59:45Z +13298 2006-02-14T15:16:03Z 2133 361 2 2020-02-15T06:59:45Z +13299 2005-08-19T18:46:33Z 4385 373 2005-08-22T20:45:33Z 1 2020-02-15T06:59:45Z +13300 2005-08-19T18:46:56Z 842 531 2005-08-28T20:23:56Z 2 2020-02-15T06:59:45Z +13301 2005-08-19T18:53:15Z 2261 494 2005-08-26T21:37:15Z 1 2020-02-15T06:59:45Z +13302 2005-08-19T18:54:26Z 4041 51 2005-08-21T23:01:26Z 1 2020-02-15T06:59:45Z +13303 2005-08-19T18:55:21Z 34 184 2005-08-23T18:49:21Z 2 2020-02-15T06:59:45Z +13304 2005-08-19T18:56:32Z 2979 405 2005-08-23T20:04:32Z 2 2020-02-15T06:59:45Z +13305 2005-08-19T18:57:05Z 2386 337 2005-08-28T22:28:05Z 1 2020-02-15T06:59:45Z +13306 2005-08-19T18:57:29Z 2742 229 2005-08-20T20:09:29Z 2 2020-02-15T06:59:45Z +13307 2005-08-19T18:58:44Z 2242 547 2005-08-22T00:15:44Z 1 2020-02-15T06:59:45Z +13308 2005-08-19T18:59:42Z 3189 414 2005-08-28T13:21:42Z 2 2020-02-15T06:59:45Z +13309 2005-08-19T19:04:00Z 2108 91 2005-08-28T23:08:00Z 2 2020-02-15T06:59:45Z +13310 2005-08-19T19:05:16Z 2563 311 2005-08-23T22:47:16Z 1 2020-02-15T06:59:45Z +13311 2005-08-19T19:07:09Z 3890 520 2005-08-20T23:07:09Z 1 2020-02-15T06:59:45Z +13312 2005-08-19T19:09:14Z 2891 418 2005-08-23T00:50:14Z 2 2020-02-15T06:59:45Z +13313 2005-08-19T19:11:41Z 3709 580 2005-08-21T23:53:41Z 2 2020-02-15T06:59:45Z +13314 2005-08-19T19:12:43Z 2899 347 2005-08-27T00:20:43Z 2 2020-02-15T06:59:45Z +13315 2005-08-19T19:16:18Z 3151 54 2005-08-21T20:58:18Z 1 2020-02-15T06:59:45Z +13316 2005-08-19T19:23:30Z 4450 10 2005-08-22T23:37:30Z 1 2020-02-15T06:59:45Z +13317 2005-08-19T19:25:42Z 3349 20 2005-08-20T20:57:42Z 2 2020-02-15T06:59:45Z +13318 2005-08-19T19:33:57Z 1389 413 2005-08-21T17:52:57Z 2 2020-02-15T06:59:45Z +13319 2005-08-19T19:35:13Z 2496 438 2005-08-27T17:59:13Z 1 2020-02-15T06:59:45Z +13320 2005-08-19T19:35:33Z 4522 172 2005-08-24T20:09:33Z 2 2020-02-15T06:59:45Z +13321 2005-08-19T19:40:37Z 4183 280 2005-08-21T19:09:37Z 2 2020-02-15T06:59:45Z +13322 2005-08-19T19:43:08Z 2149 559 2005-08-24T16:30:08Z 2 2020-02-15T06:59:45Z +13323 2005-08-19T19:48:07Z 1055 133 2005-08-23T15:28:07Z 1 2020-02-15T06:59:45Z +13324 2005-08-19T19:51:00Z 4349 564 2005-08-20T20:26:00Z 1 2020-02-15T06:59:45Z +13325 2005-08-19T19:52:02Z 2388 334 2005-08-22T21:14:02Z 1 2020-02-15T06:59:45Z +13326 2005-08-19T19:52:52Z 429 576 2005-08-20T18:56:52Z 1 2020-02-15T06:59:45Z +13327 2005-08-19T19:55:45Z 1808 72 2005-08-22T15:05:45Z 2 2020-02-15T06:59:45Z +13328 2005-08-19T19:56:01Z 605 462 2005-08-20T22:16:01Z 2 2020-02-15T06:59:45Z +13329 2005-08-19T19:56:55Z 3136 373 2005-08-25T01:19:55Z 2 2020-02-15T06:59:45Z +13330 2005-08-19T19:59:21Z 4276 297 2005-08-20T15:34:21Z 2 2020-02-15T06:59:45Z +13331 2005-08-19T20:00:25Z 3867 23 2005-08-21T17:03:25Z 1 2020-02-15T06:59:45Z +13332 2005-08-19T20:00:51Z 3144 503 2005-08-25T14:30:51Z 1 2020-02-15T06:59:45Z +13333 2006-02-14T15:16:03Z 1092 64 2 2020-02-15T06:59:45Z +13334 2005-08-19T20:02:33Z 461 379 2005-08-22T00:45:33Z 1 2020-02-15T06:59:45Z +13335 2005-08-19T20:03:18Z 1861 74 2005-08-24T20:09:18Z 2 2020-02-15T06:59:45Z +13336 2005-08-19T20:03:22Z 1011 289 2005-08-24T23:42:22Z 1 2020-02-15T06:59:45Z +13337 2005-08-19T20:06:57Z 3584 374 2005-08-20T16:31:57Z 1 2020-02-15T06:59:45Z +13338 2005-08-19T20:09:59Z 3739 86 2005-08-23T22:59:59Z 2 2020-02-15T06:59:45Z +13339 2005-08-19T20:18:36Z 1428 15 2005-08-28T21:34:36Z 1 2020-02-15T06:59:45Z +13340 2005-08-19T20:18:39Z 4358 45 2005-08-28T21:06:39Z 2 2020-02-15T06:59:45Z +13341 2005-08-19T20:18:53Z 1749 460 2005-08-27T14:36:53Z 1 2020-02-15T06:59:45Z +13342 2005-08-19T20:21:36Z 3476 172 2005-08-21T16:26:36Z 1 2020-02-15T06:59:45Z +13343 2005-08-19T20:22:08Z 1032 591 2005-08-27T17:21:08Z 1 2020-02-15T06:59:45Z +13344 2005-08-19T20:22:44Z 4392 514 2005-08-25T18:39:44Z 1 2020-02-15T06:59:45Z +13345 2005-08-19T20:25:24Z 47 55 2005-08-27T20:38:24Z 1 2020-02-15T06:59:45Z +13346 2005-08-19T20:28:21Z 4541 131 2005-08-28T00:28:21Z 2 2020-02-15T06:59:45Z +13347 2005-08-19T20:28:48Z 4038 562 2005-08-28T19:33:48Z 2 2020-02-15T06:59:45Z +13348 2005-08-19T20:31:48Z 275 456 2005-08-21T21:01:48Z 1 2020-02-15T06:59:45Z +13349 2005-08-19T20:43:16Z 4262 234 2005-08-20T16:21:16Z 1 2020-02-15T06:59:45Z +13350 2005-08-19T20:44:00Z 3523 214 2005-08-27T01:23:00Z 2 2020-02-15T06:59:45Z +13351 2006-02-14T15:16:03Z 4130 42 2 2020-02-15T06:59:45Z +13352 2005-08-19T20:51:40Z 2689 80 2005-08-24T01:22:40Z 1 2020-02-15T06:59:45Z +13353 2005-08-19T20:53:43Z 2790 131 2005-08-25T01:25:43Z 1 2020-02-15T06:59:45Z +13354 2005-08-19T20:55:23Z 1356 213 2005-08-27T20:09:23Z 2 2020-02-15T06:59:45Z +13355 2005-08-19T20:59:19Z 585 396 2005-08-23T21:44:19Z 1 2020-02-15T06:59:45Z +13356 2005-08-19T21:02:21Z 2713 324 2005-08-24T00:31:21Z 1 2020-02-15T06:59:45Z +13357 2005-08-19T21:02:59Z 3295 393 2005-08-25T23:46:59Z 2 2020-02-15T06:59:45Z +13358 2005-08-19T21:04:20Z 1510 439 2005-08-24T20:49:20Z 2 2020-02-15T06:59:45Z +13359 2005-08-19T21:04:49Z 4175 434 2005-08-27T01:46:49Z 1 2020-02-15T06:59:45Z +13360 2005-08-19T21:05:11Z 3396 327 2005-08-24T16:05:11Z 2 2020-02-15T06:59:45Z +13361 2005-08-19T21:07:22Z 4289 107 2005-08-21T21:26:22Z 2 2020-02-15T06:59:45Z +13362 2005-08-19T21:07:54Z 869 565 2005-08-20T17:29:54Z 2 2020-02-15T06:59:45Z +13363 2005-08-19T21:07:59Z 588 288 2005-08-21T17:08:59Z 1 2020-02-15T06:59:45Z +13364 2005-08-19T21:09:30Z 2773 236 2005-08-25T18:37:30Z 1 2020-02-15T06:59:45Z +13365 2005-08-19T21:12:37Z 4136 307 2005-08-25T19:56:37Z 2 2020-02-15T06:59:45Z +13366 2005-08-19T21:14:45Z 602 259 2005-08-21T03:06:45Z 1 2020-02-15T06:59:45Z +13367 2005-08-19T21:19:27Z 4569 290 2005-08-24T15:22:27Z 2 2020-02-15T06:59:45Z +13368 2005-08-19T21:19:35Z 1073 342 2005-08-21T16:12:35Z 2 2020-02-15T06:59:45Z +13369 2005-08-19T21:19:47Z 2728 116 2005-08-24T23:25:47Z 1 2020-02-15T06:59:45Z +13370 2005-08-19T21:20:11Z 239 101 2005-08-25T22:51:11Z 1 2020-02-15T06:59:45Z +13371 2005-08-19T21:21:47Z 3401 34 2005-08-26T16:17:47Z 2 2020-02-15T06:59:45Z +13372 2005-08-19T21:23:19Z 3366 150 2005-08-24T22:12:19Z 1 2020-02-15T06:59:45Z +13373 2005-08-19T21:23:31Z 4045 7 2005-08-25T22:38:31Z 1 2020-02-15T06:59:45Z +13374 2006-02-14T15:16:03Z 2721 227 1 2020-02-15T06:59:45Z +13375 2005-08-19T21:31:31Z 949 120 2005-08-29T00:17:31Z 1 2020-02-15T06:59:45Z +13376 2005-08-19T21:31:45Z 898 40 2005-08-22T01:14:45Z 2 2020-02-15T06:59:45Z +13377 2005-08-19T21:32:23Z 1316 572 2005-08-25T22:24:23Z 1 2020-02-15T06:59:45Z +13378 2005-08-19T21:33:35Z 2708 368 2005-08-20T22:47:35Z 1 2020-02-15T06:59:45Z +13379 2005-08-19T21:33:39Z 1623 227 2005-08-22T21:00:39Z 1 2020-02-15T06:59:45Z +13380 2005-08-19T21:36:58Z 4250 451 2005-08-22T23:55:58Z 1 2020-02-15T06:59:45Z +13381 2005-08-19T21:37:57Z 2823 21 2005-08-21T18:07:57Z 2 2020-02-15T06:59:45Z +13382 2005-08-19T21:38:41Z 3720 436 2005-08-28T15:49:41Z 1 2020-02-15T06:59:45Z +13383 2005-08-19T21:38:44Z 3193 434 2005-08-28T23:22:44Z 2 2020-02-15T06:59:45Z +13384 2005-08-19T21:38:51Z 1462 440 2005-08-23T17:55:51Z 1 2020-02-15T06:59:45Z +13385 2005-08-19T21:39:35Z 4323 252 2005-08-22T22:38:35Z 2 2020-02-15T06:59:45Z +13386 2005-08-19T21:43:58Z 4476 324 2005-08-24T20:29:58Z 2 2020-02-15T06:59:45Z +13387 2005-08-19T21:46:10Z 123 504 2005-08-24T01:16:10Z 1 2020-02-15T06:59:45Z +13388 2005-08-19T21:46:49Z 942 317 2005-08-27T16:18:49Z 1 2020-02-15T06:59:45Z +13389 2005-08-19T21:52:51Z 3352 257 2005-08-25T02:38:51Z 1 2020-02-15T06:59:45Z +13390 2006-02-14T15:16:03Z 2855 135 1 2020-02-15T06:59:45Z +13391 2005-08-19T22:01:42Z 4220 16 2005-08-24T22:20:42Z 2 2020-02-15T06:59:45Z +13392 2005-08-19T22:03:22Z 692 409 2005-08-28T19:27:22Z 1 2020-02-15T06:59:45Z +13393 2005-08-19T22:03:46Z 958 15 2005-08-28T19:19:46Z 2 2020-02-15T06:59:45Z +13394 2005-08-19T22:05:19Z 2597 45 2005-08-21T23:53:19Z 1 2020-02-15T06:59:45Z +13395 2005-08-19T22:05:40Z 53 80 2005-08-22T01:31:40Z 2 2020-02-15T06:59:45Z +13396 2005-08-19T22:06:09Z 4169 517 2005-08-23T23:26:09Z 2 2020-02-15T06:59:45Z +13397 2005-08-19T22:06:35Z 3863 379 2005-08-29T01:11:35Z 2 2020-02-15T06:59:45Z +13398 2005-08-19T22:08:48Z 3376 405 2005-08-23T03:24:48Z 1 2020-02-15T06:59:45Z +13399 2005-08-19T22:09:28Z 2309 21 2005-08-25T20:25:28Z 2 2020-02-15T06:59:45Z +13400 2005-08-19T22:11:44Z 2173 179 2005-08-20T23:27:44Z 2 2020-02-15T06:59:45Z +13401 2005-08-19T22:16:16Z 488 139 2005-08-25T19:01:16Z 2 2020-02-15T06:59:45Z +13402 2005-08-19T22:16:53Z 3264 372 2005-08-22T22:28:53Z 1 2020-02-15T06:59:45Z +13403 2005-08-19T22:18:07Z 3241 3 2005-08-27T19:23:07Z 1 2020-02-15T06:59:45Z +13404 2005-08-19T22:18:42Z 416 414 2005-08-23T16:29:42Z 2 2020-02-15T06:59:45Z +13405 2005-08-19T22:20:49Z 1554 181 2005-08-28T21:21:49Z 1 2020-02-15T06:59:45Z +13406 2005-08-19T22:22:01Z 3031 113 2005-08-22T18:16:01Z 1 2020-02-15T06:59:45Z +13407 2005-08-19T22:26:26Z 2512 131 2005-08-22T16:34:26Z 1 2020-02-15T06:59:45Z +13408 2005-08-19T22:34:51Z 2795 575 2005-08-21T03:30:51Z 1 2020-02-15T06:59:45Z +13409 2005-08-19T22:36:26Z 873 214 2005-08-22T01:52:26Z 2 2020-02-15T06:59:45Z +13410 2005-08-19T22:41:44Z 1421 104 2005-08-26T18:05:44Z 2 2020-02-15T06:59:45Z +13411 2005-08-19T22:43:38Z 4425 21 2005-08-26T18:29:38Z 2 2020-02-15T06:59:45Z +13412 2005-08-19T22:46:35Z 2806 404 2005-08-26T18:06:35Z 1 2020-02-15T06:59:45Z +13413 2005-08-19T22:46:46Z 1501 390 2005-08-24T22:52:46Z 1 2020-02-15T06:59:45Z +13414 2005-08-19T22:47:34Z 4126 438 2005-08-21T02:50:34Z 1 2020-02-15T06:59:45Z +13415 2005-08-19T22:48:09Z 1105 181 2005-08-25T02:09:09Z 1 2020-02-15T06:59:45Z +13416 2005-08-19T22:48:48Z 1075 204 2005-08-21T22:09:48Z 2 2020-02-15T06:59:45Z +13417 2005-08-19T22:51:39Z 92 468 2005-08-23T03:34:39Z 1 2020-02-15T06:59:45Z +13418 2005-08-19T22:53:56Z 2113 246 2005-08-28T02:05:56Z 2 2020-02-15T06:59:45Z +13419 2006-02-14T15:16:03Z 3507 537 1 2020-02-15T06:59:45Z +13420 2005-08-19T22:57:25Z 1796 102 2005-08-28T22:46:25Z 1 2020-02-15T06:59:45Z +13421 2006-02-14T15:16:03Z 9 366 1 2020-02-15T06:59:45Z +13422 2005-08-19T23:07:24Z 3835 404 2005-08-28T04:12:24Z 2 2020-02-15T06:59:45Z +13423 2005-08-19T23:07:42Z 546 311 2005-08-26T20:45:42Z 1 2020-02-15T06:59:45Z +13424 2005-08-19T23:10:09Z 4340 216 2005-08-23T02:25:09Z 1 2020-02-15T06:59:45Z +13425 2005-08-19T23:11:44Z 2274 340 2005-08-25T21:19:44Z 2 2020-02-15T06:59:45Z +13426 2005-08-19T23:15:00Z 3409 213 2005-08-21T01:53:00Z 2 2020-02-15T06:59:45Z +13427 2005-08-19T23:19:02Z 3120 239 2005-08-21T18:30:02Z 1 2020-02-15T06:59:45Z +13428 2006-02-14T15:16:03Z 106 44 2 2020-02-15T06:59:45Z +13429 2005-08-19T23:25:37Z 3677 23 2005-08-28T01:04:37Z 2 2020-02-15T06:59:45Z +13430 2005-08-19T23:25:43Z 2852 381 2005-08-22T18:41:43Z 1 2020-02-15T06:59:45Z +13431 2005-08-19T23:28:15Z 1700 229 2005-08-25T04:44:15Z 1 2020-02-15T06:59:45Z +13432 2005-08-19T23:29:06Z 2216 78 2005-08-23T00:57:06Z 1 2020-02-15T06:59:45Z +13433 2005-08-19T23:30:53Z 1647 171 2005-08-22T05:18:53Z 2 2020-02-15T06:59:45Z +13434 2005-08-19T23:34:26Z 2073 221 2005-08-23T18:33:26Z 1 2020-02-15T06:59:45Z +13435 2005-08-19T23:35:44Z 3919 30 2005-08-24T18:14:44Z 2 2020-02-15T06:59:45Z +13436 2005-08-19T23:36:25Z 2499 29 2005-08-23T18:38:25Z 1 2020-02-15T06:59:45Z +13437 2005-08-19T23:37:52Z 2292 67 2005-08-28T22:17:52Z 1 2020-02-15T06:59:45Z +13438 2005-08-19T23:38:02Z 1750 520 2005-08-26T21:36:02Z 1 2020-02-15T06:59:45Z +13439 2005-08-19T23:42:16Z 3535 551 2005-08-26T21:24:16Z 2 2020-02-15T06:59:45Z +13440 2005-08-19T23:42:52Z 2842 260 2005-08-25T19:19:52Z 1 2020-02-15T06:59:45Z +13441 2005-08-19T23:48:23Z 3188 125 2005-08-28T23:47:23Z 1 2020-02-15T06:59:45Z +13442 2005-08-19T23:50:45Z 2432 356 2005-08-27T22:01:45Z 2 2020-02-15T06:59:45Z +13443 2005-08-19T23:53:42Z 3161 236 2005-08-28T05:37:42Z 1 2020-02-15T06:59:45Z +13444 2005-08-20T00:00:24Z 2564 37 2005-08-21T05:59:24Z 2 2020-02-15T06:59:45Z +13445 2005-08-20T00:05:33Z 1630 495 2005-08-21T21:20:33Z 1 2020-02-15T06:59:45Z +13446 2005-08-20T00:06:13Z 3226 488 2005-08-22T19:56:13Z 1 2020-02-15T06:59:45Z +13447 2005-08-20T00:09:36Z 285 542 2005-08-25T01:22:36Z 1 2020-02-15T06:59:45Z +13448 2005-08-20T00:12:43Z 2870 327 2005-08-25T02:33:43Z 1 2020-02-15T06:59:45Z +13449 2005-08-20T00:17:01Z 1297 400 2005-08-23T20:42:01Z 2 2020-02-15T06:59:45Z +13450 2005-08-20T00:18:15Z 135 61 2005-08-24T19:36:15Z 1 2020-02-15T06:59:45Z +13451 2005-08-20T00:18:25Z 3837 6 2005-08-29T01:08:25Z 1 2020-02-15T06:59:45Z +13452 2005-08-20T00:20:07Z 2449 430 2005-08-25T05:43:07Z 1 2020-02-15T06:59:45Z +13453 2005-08-20T00:30:51Z 2203 164 2005-08-28T18:43:51Z 2 2020-02-15T06:59:45Z +13454 2005-08-20T00:30:52Z 1553 430 2005-08-27T19:45:52Z 2 2020-02-15T06:59:45Z +13455 2005-08-20T00:32:17Z 1315 133 2005-08-26T19:33:17Z 1 2020-02-15T06:59:45Z +13456 2005-08-20T00:33:19Z 1644 13 2005-08-22T01:47:19Z 1 2020-02-15T06:59:45Z +13457 2005-08-20T00:33:22Z 1220 256 2005-08-26T21:37:22Z 2 2020-02-15T06:59:45Z +13458 2005-08-20T00:35:30Z 4223 228 2005-08-21T20:51:30Z 1 2020-02-15T06:59:45Z +13459 2005-08-20T00:45:40Z 3666 114 2005-08-29T02:53:40Z 2 2020-02-15T06:59:45Z +13460 2005-08-20T00:48:24Z 244 410 2005-08-28T04:13:24Z 2 2020-02-15T06:59:45Z +13461 2005-08-20T00:49:04Z 2621 421 2005-08-28T02:49:04Z 2 2020-02-15T06:59:45Z +13462 2005-08-20T00:49:19Z 3865 489 2005-08-26T06:21:19Z 2 2020-02-15T06:59:45Z +13463 2005-08-20T00:50:54Z 510 21 2005-08-28T23:00:54Z 1 2020-02-15T06:59:45Z +13464 2006-02-14T15:16:03Z 4292 576 1 2020-02-15T06:59:45Z +13465 2005-08-20T00:54:14Z 1305 575 2005-08-21T20:55:14Z 2 2020-02-15T06:59:45Z +13466 2005-08-20T00:55:16Z 3088 262 2005-08-22T22:48:16Z 1 2020-02-15T06:59:45Z +13467 2005-08-20T00:56:44Z 696 373 2005-08-20T20:16:44Z 1 2020-02-15T06:59:45Z +13468 2005-08-20T00:56:44Z 1851 266 2005-08-29T06:26:44Z 1 2020-02-15T06:59:45Z +13469 2005-08-20T00:59:36Z 1410 235 2005-08-24T22:41:36Z 1 2020-02-15T06:59:45Z +13470 2005-08-20T01:01:16Z 3097 141 2005-08-21T03:19:16Z 1 2020-02-15T06:59:45Z +13471 2005-08-20T01:02:26Z 1391 296 2005-08-25T06:37:26Z 2 2020-02-15T06:59:45Z +13472 2005-08-20T01:03:31Z 3074 137 2005-08-28T02:54:31Z 1 2020-02-15T06:59:45Z +13473 2005-08-20T01:03:50Z 381 390 2005-08-22T02:33:50Z 2 2020-02-15T06:59:45Z +13474 2005-08-20T01:04:32Z 1209 116 2005-08-21T20:26:32Z 2 2020-02-15T06:59:45Z +13475 2005-08-20T01:05:05Z 3214 68 2005-08-20T20:22:05Z 2 2020-02-15T06:59:45Z +13476 2005-08-20T01:06:04Z 2866 7 2005-08-24T23:56:04Z 1 2020-02-15T06:59:45Z +13477 2005-08-20T01:07:00Z 1442 222 2005-08-26T02:47:00Z 1 2020-02-15T06:59:45Z +13478 2005-08-20T01:07:14Z 2190 466 2005-08-22T03:41:14Z 1 2020-02-15T06:59:45Z +13479 2005-08-20T01:09:11Z 1262 87 2005-08-26T05:35:11Z 2 2020-02-15T06:59:45Z +13480 2005-08-20T01:10:27Z 206 16 2005-08-27T22:18:27Z 2 2020-02-15T06:59:45Z +13481 2005-08-20T01:11:12Z 2678 157 2005-08-26T23:07:12Z 2 2020-02-15T06:59:45Z +13482 2005-08-20T01:14:30Z 1627 183 2005-08-24T04:57:30Z 1 2020-02-15T06:59:45Z +13483 2005-08-20T01:16:38Z 2550 441 2005-08-21T20:43:38Z 2 2020-02-15T06:59:45Z +13484 2005-08-20T01:16:52Z 1533 152 2005-08-22T23:47:52Z 2 2020-02-15T06:59:45Z +13485 2005-08-20T01:20:14Z 3802 379 2005-08-22T01:28:14Z 2 2020-02-15T06:59:45Z +13486 2006-02-14T15:16:03Z 4460 274 1 2020-02-15T06:59:45Z +13487 2005-08-20T01:27:05Z 2609 458 2005-08-24T00:41:05Z 2 2020-02-15T06:59:45Z +13488 2005-08-20T01:28:42Z 867 444 2005-08-25T06:17:42Z 2 2020-02-15T06:59:45Z +13489 2005-08-20T01:29:06Z 2934 443 2005-08-27T21:11:06Z 1 2020-02-15T06:59:45Z +13490 2005-08-20T01:29:29Z 238 18 2005-08-21T22:36:29Z 2 2020-02-15T06:59:45Z +13491 2005-08-20T01:30:56Z 2503 258 2005-08-28T23:26:56Z 2 2020-02-15T06:59:45Z +13492 2005-08-20T01:32:04Z 1155 462 2005-08-29T02:14:04Z 2 2020-02-15T06:59:45Z +13493 2005-08-20T01:33:36Z 2927 37 2005-08-24T06:32:36Z 1 2020-02-15T06:59:45Z +13494 2005-08-20T01:36:34Z 1632 414 2005-08-21T06:52:34Z 1 2020-02-15T06:59:45Z +13495 2005-08-20T01:40:25Z 3881 92 2005-08-23T06:32:25Z 2 2020-02-15T06:59:45Z +13496 2005-08-20T01:42:29Z 3040 454 2005-08-29T06:47:29Z 2 2020-02-15T06:59:45Z +13497 2005-08-20T01:46:38Z 1296 481 2005-08-26T05:37:38Z 2 2020-02-15T06:59:45Z +13498 2005-08-20T01:51:23Z 1603 578 2005-08-24T05:32:23Z 1 2020-02-15T06:59:45Z +13499 2005-08-20T01:52:30Z 1893 300 2005-08-28T04:57:30Z 1 2020-02-15T06:59:45Z +13500 2005-08-20T01:54:39Z 1353 577 2005-08-25T21:23:39Z 1 2020-02-15T06:59:45Z +13501 2005-08-20T01:56:20Z 4369 390 2005-08-22T23:07:20Z 2 2020-02-15T06:59:45Z +13502 2005-08-20T01:58:15Z 1324 309 2005-08-21T20:21:15Z 1 2020-02-15T06:59:45Z +13503 2005-08-20T02:00:33Z 453 15 2005-08-28T21:03:33Z 1 2020-02-15T06:59:45Z +13504 2005-08-20T02:01:48Z 4322 293 2005-08-25T21:52:48Z 2 2020-02-15T06:59:45Z +13505 2005-08-20T02:05:57Z 914 536 2005-08-23T05:52:57Z 1 2020-02-15T06:59:45Z +13506 2005-08-20T02:07:06Z 1334 261 2005-08-26T08:06:06Z 1 2020-02-15T06:59:45Z +13507 2005-08-20T02:10:27Z 3324 478 2005-08-23T04:03:27Z 2 2020-02-15T06:59:45Z +13508 2005-08-20T02:12:54Z 4120 408 2005-08-28T21:47:54Z 2 2020-02-15T06:59:45Z +13509 2005-08-20T02:14:16Z 3698 128 2005-08-22T06:36:16Z 2 2020-02-15T06:59:45Z +13510 2005-08-20T02:18:30Z 691 107 2005-08-27T01:33:30Z 1 2020-02-15T06:59:45Z +13511 2005-08-20T02:21:40Z 2973 23 2005-08-21T03:26:40Z 1 2020-02-15T06:59:45Z +13512 2005-08-20T02:27:13Z 4508 62 2005-08-28T04:40:13Z 2 2020-02-15T06:59:45Z +13513 2005-08-20T02:27:53Z 1653 454 2005-08-22T06:10:53Z 1 2020-02-15T06:59:45Z +13514 2005-08-20T02:28:09Z 3407 96 2005-08-25T00:41:09Z 1 2020-02-15T06:59:45Z +13515 2005-08-20T02:29:47Z 3438 194 2005-08-23T08:12:47Z 2 2020-02-15T06:59:45Z +13516 2005-08-20T02:32:45Z 4286 95 2005-08-27T04:38:45Z 1 2020-02-15T06:59:45Z +13517 2005-08-20T02:33:17Z 533 186 2005-08-23T22:40:17Z 2 2020-02-15T06:59:45Z +13518 2005-08-20T02:36:17Z 352 528 2005-08-24T08:06:17Z 1 2020-02-15T06:59:45Z +13519 2005-08-20T02:37:07Z 182 12 2005-08-23T01:26:07Z 2 2020-02-15T06:59:45Z +13520 2005-08-20T02:41:46Z 3326 74 2005-08-22T01:53:46Z 1 2020-02-15T06:59:45Z +13521 2005-08-20T02:42:28Z 2586 384 2005-08-22T06:12:28Z 1 2020-02-15T06:59:45Z +13522 2005-08-20T02:44:06Z 2940 343 2005-08-28T05:30:06Z 1 2020-02-15T06:59:45Z +13523 2005-08-20T02:47:03Z 163 572 2005-08-28T07:43:03Z 1 2020-02-15T06:59:45Z +13524 2005-08-20T02:48:43Z 4557 593 2005-08-27T03:14:43Z 2 2020-02-15T06:59:45Z +13525 2005-08-20T02:50:44Z 3514 111 2005-08-26T22:58:44Z 2 2020-02-15T06:59:45Z +13526 2005-08-20T02:58:42Z 1966 277 2005-08-27T22:36:42Z 2 2020-02-15T06:59:45Z +13527 2005-08-20T03:00:47Z 4424 521 2005-08-25T01:03:47Z 1 2020-02-15T06:59:45Z +13528 2005-08-20T03:03:31Z 1847 202 2005-08-26T03:09:31Z 1 2020-02-15T06:59:45Z +13529 2005-08-20T03:07:47Z 1979 193 2005-08-21T21:50:47Z 1 2020-02-15T06:59:45Z +13530 2005-08-20T03:12:43Z 597 156 2005-08-23T09:01:43Z 2 2020-02-15T06:59:45Z +13531 2005-08-20T03:26:10Z 2778 156 2005-08-25T03:41:10Z 1 2020-02-15T06:59:45Z +13532 2005-08-20T03:29:28Z 1433 168 2005-08-23T22:53:28Z 2 2020-02-15T06:59:45Z +13533 2005-08-20T03:30:00Z 1801 436 2005-08-27T05:53:00Z 1 2020-02-15T06:59:45Z +13534 2006-02-14T15:16:03Z 2476 75 1 2020-02-15T06:59:45Z +13535 2005-08-20T03:30:25Z 1563 86 2005-08-28T04:35:25Z 1 2020-02-15T06:59:45Z +13536 2005-08-20T03:35:16Z 667 183 2005-08-25T04:06:16Z 2 2020-02-15T06:59:45Z +13537 2005-08-20T03:39:15Z 2521 418 2005-08-23T22:03:15Z 2 2020-02-15T06:59:45Z +13538 2006-02-14T15:16:03Z 581 279 1 2020-02-15T06:59:45Z +13539 2005-08-20T03:40:27Z 3110 518 2005-08-27T07:15:27Z 1 2020-02-15T06:59:45Z +13540 2005-08-20T03:41:23Z 3785 557 2005-08-27T09:09:23Z 2 2020-02-15T06:59:45Z +13541 2005-08-20T03:41:41Z 1363 15 2005-08-24T23:14:41Z 1 2020-02-15T06:59:45Z +13542 2005-08-20T03:41:57Z 4543 147 2005-08-29T03:21:57Z 2 2020-02-15T06:59:45Z +13543 2005-08-20T03:43:13Z 2142 163 2005-08-29T07:14:13Z 2 2020-02-15T06:59:45Z +13544 2005-08-20T03:44:26Z 58 538 2005-08-27T22:11:26Z 1 2020-02-15T06:59:45Z +13545 2005-08-20T03:50:15Z 615 417 2005-08-27T22:24:15Z 1 2020-02-15T06:59:45Z +13546 2005-08-20T03:50:24Z 2492 390 2005-08-28T03:04:24Z 2 2020-02-15T06:59:45Z +13547 2005-08-20T03:53:16Z 3122 456 2005-08-25T04:02:16Z 1 2020-02-15T06:59:45Z +13548 2005-08-20T03:53:20Z 4389 319 2005-08-27T21:54:20Z 1 2020-02-15T06:59:45Z +13549 2005-08-20T03:58:41Z 508 274 2005-08-28T22:49:41Z 1 2020-02-15T06:59:45Z +13550 2005-08-20T03:58:51Z 208 206 2005-08-28T00:45:51Z 2 2020-02-15T06:59:45Z +13551 2005-08-20T04:00:30Z 1049 503 2005-08-21T06:26:30Z 2 2020-02-15T06:59:45Z +13552 2005-08-20T04:03:51Z 758 578 2005-08-23T02:48:51Z 2 2020-02-15T06:59:45Z +13553 2005-08-20T04:07:21Z 4407 314 2005-08-28T09:55:21Z 1 2020-02-15T06:59:45Z +13554 2005-08-20T04:08:39Z 2648 569 2005-08-28T07:11:39Z 2 2020-02-15T06:59:45Z +13555 2005-08-20T04:09:50Z 3176 93 2005-08-29T05:20:50Z 1 2020-02-15T06:59:45Z +13556 2005-08-20T04:10:26Z 3914 266 2005-08-26T06:45:26Z 2 2020-02-15T06:59:45Z +13557 2005-08-20T04:12:41Z 2290 23 2005-08-21T02:33:41Z 2 2020-02-15T06:59:45Z +13558 2005-08-20T04:13:17Z 1551 564 2005-08-24T06:38:17Z 1 2020-02-15T06:59:45Z +13559 2005-08-20T04:16:07Z 2413 444 2005-08-24T23:23:07Z 1 2020-02-15T06:59:45Z +13560 2005-08-20T04:17:16Z 820 56 2005-08-28T08:38:16Z 1 2020-02-15T06:59:45Z +13561 2006-02-14T15:16:03Z 3202 530 1 2020-02-15T06:59:45Z +13562 2005-08-20T04:31:45Z 4547 36 2005-08-25T09:59:45Z 1 2020-02-15T06:59:45Z +13563 2005-08-20T04:33:31Z 599 366 2005-08-24T07:08:31Z 2 2020-02-15T06:59:45Z +13564 2005-08-20T04:34:46Z 678 36 2005-08-28T23:18:46Z 2 2020-02-15T06:59:45Z +13565 2005-08-20T04:38:52Z 3378 214 2005-08-27T07:17:52Z 1 2020-02-15T06:59:45Z +13566 2005-08-20T04:45:32Z 4397 558 2005-08-28T02:12:32Z 2 2020-02-15T06:59:45Z +13567 2005-08-20T04:49:21Z 543 242 2005-08-26T10:27:21Z 1 2020-02-15T06:59:45Z +13568 2005-08-20T05:02:46Z 1243 151 2005-08-27T03:12:46Z 2 2020-02-15T06:59:45Z +13569 2005-08-20T05:02:59Z 1934 496 2005-08-28T00:51:59Z 1 2020-02-15T06:59:45Z +13570 2005-08-20T05:04:57Z 2808 188 2005-08-24T06:19:57Z 2 2020-02-15T06:59:45Z +13571 2005-08-20T05:05:14Z 1251 458 2005-08-25T03:59:14Z 2 2020-02-15T06:59:45Z +13572 2005-08-20T05:07:27Z 660 11 2005-08-23T23:33:27Z 1 2020-02-15T06:59:45Z +13573 2005-08-20T05:10:14Z 3032 59 2005-08-22T00:59:14Z 1 2020-02-15T06:59:45Z +13574 2005-08-20T05:10:39Z 2383 552 2005-08-21T02:21:39Z 2 2020-02-15T06:59:45Z +13575 2005-08-20T05:15:20Z 2729 339 2005-08-28T07:36:20Z 2 2020-02-15T06:59:45Z +13576 2005-08-20T05:19:56Z 2669 223 2005-08-22T09:08:56Z 2 2020-02-15T06:59:45Z +13577 2006-02-14T15:16:03Z 3844 448 2 2020-02-15T06:59:45Z +13578 2006-02-14T15:16:03Z 4301 352 2 2020-02-15T06:59:45Z +13579 2005-08-20T05:22:06Z 4237 333 2005-08-28T02:33:06Z 2 2020-02-15T06:59:45Z +13580 2005-08-20T05:23:34Z 4419 526 2005-08-23T02:45:34Z 1 2020-02-15T06:59:45Z +13581 2005-08-20T05:26:15Z 1753 119 2005-08-21T11:07:15Z 2 2020-02-15T06:59:45Z +13582 2005-08-20T05:28:11Z 211 166 2005-08-23T02:06:11Z 2 2020-02-15T06:59:45Z +13583 2005-08-20T05:29:45Z 176 74 2005-08-26T06:49:45Z 1 2020-02-15T06:59:45Z +13584 2006-02-14T15:16:03Z 3966 548 2 2020-02-15T06:59:45Z +13585 2005-08-20T05:32:23Z 3314 470 2005-08-27T23:36:23Z 1 2020-02-15T06:59:45Z +13586 2005-08-20T05:40:33Z 4544 445 2005-08-25T01:32:33Z 2 2020-02-15T06:59:45Z +13587 2006-02-14T15:16:03Z 2455 431 2 2020-02-15T06:59:45Z +13588 2005-08-20T05:47:11Z 702 279 2005-08-28T02:45:11Z 2 2020-02-15T06:59:45Z +13589 2005-08-20T05:47:25Z 3216 574 2005-08-23T01:29:25Z 2 2020-02-15T06:59:45Z +13590 2005-08-20T05:48:59Z 4417 264 2005-08-25T00:44:59Z 2 2020-02-15T06:59:45Z +13591 2005-08-20T05:50:05Z 3089 390 2005-08-27T08:43:05Z 2 2020-02-15T06:59:45Z +13592 2005-08-20T05:50:35Z 1509 470 2005-08-23T04:52:35Z 1 2020-02-15T06:59:45Z +13593 2005-08-20T05:50:52Z 261 585 2005-08-27T05:28:52Z 2 2020-02-15T06:59:45Z +13594 2005-08-20T05:53:31Z 3424 7 2005-08-23T09:01:31Z 1 2020-02-15T06:59:45Z +13595 2005-08-20T05:54:27Z 673 545 2005-08-29T01:25:27Z 1 2020-02-15T06:59:45Z +13596 2005-08-20T05:58:58Z 482 513 2005-08-27T08:35:58Z 1 2020-02-15T06:59:45Z +13597 2005-08-20T05:59:05Z 3697 72 2005-08-24T05:38:05Z 2 2020-02-15T06:59:45Z +13598 2005-08-20T05:59:17Z 2803 259 2005-08-29T01:02:17Z 1 2020-02-15T06:59:45Z +13599 2005-08-20T06:00:03Z 3333 150 2005-08-29T07:56:03Z 1 2020-02-15T06:59:45Z +13600 2005-08-20T06:00:25Z 431 528 2005-08-28T02:39:25Z 1 2020-02-15T06:59:45Z +13601 2005-08-20T06:01:15Z 2166 189 2005-08-29T06:14:15Z 2 2020-02-15T06:59:45Z +13602 2005-08-20T06:02:02Z 2805 348 2005-08-27T04:51:02Z 1 2020-02-15T06:59:45Z +13603 2005-08-20T06:02:48Z 937 362 2005-08-29T09:39:48Z 1 2020-02-15T06:59:45Z +13604 2005-08-20T06:03:33Z 4352 353 2005-08-21T07:06:33Z 1 2020-02-15T06:59:45Z +13605 2005-08-20T06:06:17Z 4446 522 2005-08-26T00:53:17Z 2 2020-02-15T06:59:45Z +13606 2005-08-20T06:07:01Z 83 146 2005-08-27T04:59:01Z 2 2020-02-15T06:59:45Z +13607 2005-08-20T06:08:42Z 2692 491 2005-08-21T01:59:42Z 2 2020-02-15T06:59:45Z +13608 2005-08-20T06:10:44Z 4110 193 2005-08-24T07:08:44Z 1 2020-02-15T06:59:45Z +13609 2005-08-20T06:11:51Z 299 328 2005-08-23T04:13:51Z 2 2020-02-15T06:59:45Z +13610 2005-08-20T06:14:12Z 2526 3 2005-08-26T00:44:12Z 2 2020-02-15T06:59:45Z +13611 2005-08-20T06:20:42Z 1460 112 2005-08-28T10:07:42Z 1 2020-02-15T06:59:45Z +13612 2005-08-20T06:22:08Z 675 505 2005-08-28T02:22:08Z 1 2020-02-15T06:59:45Z +13613 2005-08-20T06:23:53Z 2415 201 2005-08-29T11:40:53Z 2 2020-02-15T06:59:45Z +13614 2005-08-20T06:28:37Z 3736 381 2005-08-22T07:54:37Z 2 2020-02-15T06:59:45Z +13615 2005-08-20T06:28:53Z 1864 539 2005-08-27T11:40:53Z 2 2020-02-15T06:59:45Z +13616 2005-08-20T06:30:33Z 1694 194 2005-08-27T09:29:33Z 2 2020-02-15T06:59:45Z +13617 2005-08-20T06:35:30Z 4059 526 2005-08-29T09:03:30Z 1 2020-02-15T06:59:45Z +13618 2005-08-20T06:36:46Z 390 390 2005-08-29T05:17:46Z 2 2020-02-15T06:59:45Z +13619 2005-08-20T06:39:26Z 1068 365 2005-08-23T05:22:26Z 2 2020-02-15T06:59:45Z +13620 2005-08-20T06:41:27Z 2361 92 2005-08-24T11:02:27Z 1 2020-02-15T06:59:45Z +13621 2005-08-20T06:43:44Z 3754 581 2005-08-23T06:25:44Z 2 2020-02-15T06:59:45Z +13622 2005-08-20T06:45:32Z 3355 335 2005-08-25T02:40:32Z 1 2020-02-15T06:59:45Z +13623 2005-08-20T06:49:46Z 3948 321 2005-08-25T05:19:46Z 2 2020-02-15T06:59:45Z +13624 2005-08-20T06:51:02Z 430 63 2005-08-29T02:39:02Z 1 2020-02-15T06:59:45Z +13625 2005-08-20T06:52:03Z 60 422 2005-08-27T07:43:03Z 1 2020-02-15T06:59:45Z +13626 2005-08-20T06:55:24Z 594 524 2005-08-29T12:32:24Z 1 2020-02-15T06:59:45Z +13627 2005-08-20T06:59:00Z 603 329 2005-08-29T11:43:00Z 2 2020-02-15T06:59:45Z +13628 2005-08-20T07:03:53Z 1006 500 2005-08-22T11:27:53Z 2 2020-02-15T06:59:45Z +13629 2005-08-20T07:04:07Z 1834 392 2005-08-25T12:36:07Z 1 2020-02-15T06:59:45Z +13630 2005-08-20T07:05:56Z 3346 244 2005-08-29T04:15:56Z 1 2020-02-15T06:59:45Z +13631 2005-08-20T07:07:37Z 1015 535 2005-08-22T04:01:37Z 1 2020-02-15T06:59:45Z +13632 2005-08-20T07:10:52Z 4008 409 2005-08-29T10:19:52Z 2 2020-02-15T06:59:45Z +13633 2005-08-20T07:13:47Z 3227 301 2005-08-24T11:25:47Z 1 2020-02-15T06:59:45Z +13634 2005-08-20T07:16:45Z 850 411 2005-08-22T03:38:45Z 1 2020-02-15T06:59:45Z +13635 2005-08-20T07:17:35Z 669 286 2005-08-29T06:27:35Z 1 2020-02-15T06:59:45Z +13636 2005-08-20T07:20:09Z 1467 349 2005-08-23T09:58:09Z 1 2020-02-15T06:59:45Z +13637 2005-08-20T07:21:15Z 2298 342 2005-08-24T10:13:15Z 2 2020-02-15T06:59:45Z +13638 2005-08-20T07:21:15Z 3255 493 2005-08-23T11:09:15Z 2 2020-02-15T06:59:45Z +13639 2005-08-20T07:22:07Z 2489 562 2005-08-23T11:24:07Z 2 2020-02-15T06:59:45Z +13640 2005-08-20T07:22:53Z 3427 541 2005-08-21T11:54:53Z 2 2020-02-15T06:59:45Z +13641 2005-08-20T07:34:42Z 367 281 2005-08-26T05:18:42Z 1 2020-02-15T06:59:45Z +13642 2005-08-20T07:42:17Z 4415 452 2005-08-29T10:49:17Z 1 2020-02-15T06:59:45Z +13643 2005-08-20T07:42:24Z 2443 398 2005-08-26T09:13:24Z 2 2020-02-15T06:59:45Z +13644 2005-08-20T07:46:30Z 970 464 2005-08-27T01:54:30Z 1 2020-02-15T06:59:45Z +13645 2005-08-20T07:47:05Z 157 387 2005-08-23T02:58:05Z 1 2020-02-15T06:59:45Z +13646 2005-08-20T07:47:08Z 1347 242 2005-08-29T08:33:08Z 1 2020-02-15T06:59:45Z +13647 2005-08-20T07:48:07Z 3269 519 2005-08-28T07:56:07Z 2 2020-02-15T06:59:45Z +13648 2005-08-20T07:48:10Z 3921 596 2005-08-22T12:15:10Z 2 2020-02-15T06:59:45Z +13649 2005-08-20T07:48:38Z 1495 259 2005-08-23T07:43:38Z 2 2020-02-15T06:59:45Z +13650 2005-08-20T07:49:06Z 2644 322 2005-08-28T10:11:06Z 1 2020-02-15T06:59:45Z +13651 2005-08-20T07:50:08Z 1082 256 2005-08-21T07:11:08Z 1 2020-02-15T06:59:45Z +13652 2005-08-20T07:52:34Z 2548 67 2005-08-23T08:58:34Z 2 2020-02-15T06:59:45Z +13653 2005-08-20T07:54:54Z 4029 129 2005-08-29T06:43:54Z 1 2020-02-15T06:59:45Z +13654 2005-08-20T07:58:21Z 1582 469 2005-08-21T09:40:21Z 2 2020-02-15T06:59:45Z +13655 2005-08-20T07:59:13Z 4294 207 2005-08-22T12:04:13Z 1 2020-02-15T06:59:45Z +13656 2005-08-20T08:01:07Z 3180 411 2005-08-28T13:16:07Z 2 2020-02-15T06:59:45Z +13657 2005-08-20T08:01:39Z 1752 414 2005-08-23T07:31:39Z 1 2020-02-15T06:59:45Z +13658 2005-08-20T08:02:22Z 3827 487 2005-08-28T06:00:22Z 1 2020-02-15T06:59:45Z +13659 2005-08-20T08:05:52Z 3610 520 2005-08-24T12:38:52Z 1 2020-02-15T06:59:45Z +13660 2005-08-20T08:05:56Z 3972 72 2005-08-22T13:22:56Z 1 2020-02-15T06:59:45Z +13661 2005-08-20T08:05:59Z 3996 471 2005-08-29T12:15:59Z 1 2020-02-15T06:59:45Z +13662 2005-08-20T08:11:58Z 3880 592 2005-08-26T13:34:58Z 1 2020-02-15T06:59:45Z +13663 2005-08-20T08:12:33Z 3969 240 2005-08-27T03:23:33Z 2 2020-02-15T06:59:45Z +13664 2005-08-20T08:18:36Z 3750 264 2005-08-26T11:04:36Z 1 2020-02-15T06:59:45Z +13665 2005-08-20T08:19:20Z 117 291 2005-08-28T06:26:20Z 1 2020-02-15T06:59:45Z +13666 2005-08-20T08:20:19Z 2007 451 2005-08-22T03:22:19Z 1 2020-02-15T06:59:45Z +13667 2005-08-20T08:25:34Z 3856 280 2005-08-24T07:04:34Z 2 2020-02-15T06:59:45Z +13668 2005-08-20T08:26:06Z 3659 123 2005-08-25T05:52:06Z 2 2020-02-15T06:59:45Z +13669 2005-08-20T08:26:32Z 4504 261 2005-08-27T08:10:32Z 2 2020-02-15T06:59:45Z +13670 2005-08-20T08:27:01Z 1951 147 2005-08-29T05:59:01Z 2 2020-02-15T06:59:45Z +13671 2005-08-20T08:27:03Z 1473 201 2005-08-26T03:56:03Z 1 2020-02-15T06:59:45Z +13672 2005-08-20T08:27:27Z 2068 201 2005-08-22T06:15:27Z 2 2020-02-15T06:59:45Z +13673 2005-08-20T08:27:30Z 343 332 2005-08-26T05:14:30Z 1 2020-02-15T06:59:45Z +13674 2005-08-20T08:30:54Z 3397 36 2005-08-22T02:59:54Z 1 2020-02-15T06:59:45Z +13675 2005-08-20T08:32:51Z 350 493 2005-08-27T03:52:51Z 2 2020-02-15T06:59:45Z +13676 2005-08-20T08:33:21Z 3170 103 2005-08-25T02:51:21Z 1 2020-02-15T06:59:45Z +13677 2005-08-20T08:34:41Z 4013 15 2005-08-26T11:51:41Z 2 2020-02-15T06:59:45Z +13678 2005-08-20T08:38:24Z 1118 337 2005-08-27T13:54:24Z 2 2020-02-15T06:59:45Z +13679 2005-08-20T08:39:34Z 2878 229 2005-08-29T10:06:34Z 2 2020-02-15T06:59:45Z +13680 2005-08-20T08:44:06Z 2822 70 2005-08-27T09:58:06Z 2 2020-02-15T06:59:45Z +13681 2005-08-20T08:47:37Z 3039 328 2005-08-27T09:47:37Z 1 2020-02-15T06:59:45Z +13682 2005-08-20T08:50:39Z 287 30 2005-08-21T09:05:39Z 2 2020-02-15T06:59:45Z +13683 2005-08-20T08:54:55Z 1729 255 2005-08-24T14:10:55Z 2 2020-02-15T06:59:45Z +13684 2005-08-20T08:55:53Z 2213 348 2005-08-25T08:11:53Z 1 2020-02-15T06:59:45Z +13685 2005-08-20T08:57:11Z 3336 260 2005-08-27T07:26:11Z 1 2020-02-15T06:59:45Z +13686 2005-08-20T08:57:28Z 666 306 2005-08-24T07:21:28Z 2 2020-02-15T06:59:45Z +13687 2005-08-20T08:57:51Z 3629 290 2005-08-22T07:02:51Z 2 2020-02-15T06:59:45Z +13688 2005-08-20T08:59:38Z 1116 572 2005-08-28T04:54:38Z 2 2020-02-15T06:59:45Z +13689 2005-08-20T09:04:30Z 819 336 2005-08-22T05:38:30Z 2 2020-02-15T06:59:45Z +13690 2005-08-20T09:07:27Z 3721 513 2005-08-23T08:03:27Z 2 2020-02-15T06:59:45Z +13691 2005-08-20T09:07:39Z 676 548 2005-08-28T15:03:39Z 1 2020-02-15T06:59:45Z +13692 2005-08-20T09:07:52Z 1928 65 2005-08-21T05:17:52Z 1 2020-02-15T06:59:45Z +13693 2005-08-20T09:11:42Z 933 552 2005-08-24T15:00:42Z 2 2020-02-15T06:59:45Z +13694 2005-08-20T09:13:23Z 3654 454 2005-08-28T06:10:23Z 1 2020-02-15T06:59:45Z +13695 2005-08-20T09:13:25Z 3114 258 2005-08-27T11:51:25Z 2 2020-02-15T06:59:45Z +13696 2005-08-20T09:16:15Z 1279 206 2005-08-21T03:33:15Z 1 2020-02-15T06:59:45Z +13697 2005-08-20T09:21:08Z 291 76 2005-08-29T12:33:08Z 1 2020-02-15T06:59:45Z +13698 2005-08-20T09:24:26Z 3829 364 2005-08-22T05:04:26Z 2 2020-02-15T06:59:45Z +13699 2005-08-20T09:26:14Z 3913 21 2005-08-29T08:16:14Z 2 2020-02-15T06:59:45Z +13700 2005-08-20T09:26:17Z 4229 265 2005-08-27T05:49:17Z 2 2020-02-15T06:59:45Z +13701 2005-08-20T09:27:05Z 1643 564 2005-08-21T14:54:05Z 1 2020-02-15T06:59:45Z +13702 2005-08-20T09:27:20Z 700 296 2005-08-29T15:04:20Z 2 2020-02-15T06:59:45Z +13703 2005-08-20T09:29:35Z 2296 356 2005-08-27T08:03:35Z 2 2020-02-15T06:59:45Z +13704 2005-08-20T09:32:04Z 3373 4 2005-08-23T14:29:04Z 2 2020-02-15T06:59:45Z +13705 2005-08-20T09:32:23Z 3663 451 2005-08-21T13:51:23Z 1 2020-02-15T06:59:45Z +13706 2005-08-20T09:32:56Z 3005 363 2005-08-28T05:22:56Z 2 2020-02-15T06:59:45Z +13707 2005-08-20T09:33:58Z 826 232 2005-08-23T07:44:58Z 2 2020-02-15T06:59:45Z +13708 2005-08-20T09:34:07Z 2236 218 2005-08-26T10:17:07Z 1 2020-02-15T06:59:45Z +13709 2005-08-20T09:34:51Z 4089 422 2005-08-23T04:13:51Z 1 2020-02-15T06:59:45Z +13710 2005-08-20T09:35:20Z 756 333 2005-08-21T05:29:20Z 2 2020-02-15T06:59:45Z +13711 2005-08-20T09:35:20Z 2318 453 2005-08-28T09:06:20Z 2 2020-02-15T06:59:45Z +13712 2005-08-20T09:38:04Z 1039 581 2005-08-21T06:10:04Z 1 2020-02-15T06:59:45Z +13713 2006-02-14T15:16:03Z 3075 267 1 2020-02-15T06:59:45Z +13714 2005-08-20T09:41:09Z 2659 277 2005-08-22T06:28:09Z 1 2020-02-15T06:59:45Z +13715 2005-08-20T09:43:06Z 1028 292 2005-08-27T10:22:06Z 1 2020-02-15T06:59:45Z +13716 2005-08-20T09:48:32Z 86 386 2005-08-26T07:20:32Z 2 2020-02-15T06:59:45Z +13717 2005-08-20T09:50:52Z 1629 300 2005-08-28T11:32:52Z 2 2020-02-15T06:59:45Z +13718 2005-08-20T09:53:44Z 205 19 2005-08-29T13:46:44Z 2 2020-02-15T06:59:45Z +13719 2006-02-14T15:16:03Z 3547 208 1 2020-02-15T06:59:45Z +13720 2005-08-20T10:01:39Z 813 427 2005-08-27T08:26:39Z 1 2020-02-15T06:59:45Z +13721 2005-08-20T10:02:59Z 1444 297 2005-08-24T07:02:59Z 2 2020-02-15T06:59:45Z +13722 2005-08-20T10:03:45Z 1581 422 2005-08-25T04:26:45Z 1 2020-02-15T06:59:45Z +13723 2005-08-20T10:05:30Z 411 110 2005-08-27T07:43:30Z 2 2020-02-15T06:59:45Z +13724 2005-08-20T10:07:28Z 200 80 2005-08-24T07:47:28Z 2 2020-02-15T06:59:45Z +13725 2005-08-20T10:08:27Z 3861 306 2005-08-28T06:52:27Z 2 2020-02-15T06:59:45Z +13726 2005-08-20T10:08:40Z 2258 214 2005-08-23T14:58:40Z 1 2020-02-15T06:59:45Z +13727 2005-08-20T10:08:53Z 4201 85 2005-08-27T09:30:53Z 1 2020-02-15T06:59:45Z +13728 2005-08-20T10:11:07Z 1962 157 2005-08-23T10:32:07Z 1 2020-02-15T06:59:45Z +13729 2005-08-20T10:17:08Z 4108 415 2005-08-28T15:35:08Z 1 2020-02-15T06:59:45Z +13730 2005-08-20T10:17:09Z 1330 548 2005-08-28T10:45:09Z 1 2020-02-15T06:59:45Z +13731 2005-08-20T10:22:08Z 1133 450 2005-08-21T12:04:08Z 2 2020-02-15T06:59:45Z +13732 2005-08-20T10:24:41Z 1138 17 2005-08-22T04:44:41Z 1 2020-02-15T06:59:45Z +13733 2005-08-20T10:25:12Z 3994 85 2005-08-21T10:49:12Z 2 2020-02-15T06:59:45Z +13734 2005-08-20T10:29:57Z 4561 374 2005-08-25T14:41:57Z 2 2020-02-15T06:59:45Z +13735 2005-08-20T10:31:01Z 1813 35 2005-08-26T05:00:01Z 1 2020-02-15T06:59:45Z +13736 2005-08-20T10:31:23Z 3369 32 2005-08-28T06:51:23Z 1 2020-02-15T06:59:45Z +13737 2005-08-20T10:41:50Z 4319 200 2005-08-25T14:33:50Z 2 2020-02-15T06:59:45Z +13738 2005-08-20T10:42:42Z 2748 273 2005-08-25T09:32:42Z 1 2020-02-15T06:59:45Z +13739 2005-08-20T10:45:10Z 3027 441 2005-08-28T08:46:10Z 2 2020-02-15T06:59:45Z +13740 2005-08-20T10:48:43Z 4366 21 2005-08-29T15:30:43Z 1 2020-02-15T06:59:45Z +13741 2005-08-20T10:48:47Z 3887 195 2005-08-21T11:19:47Z 1 2020-02-15T06:59:45Z +13742 2005-08-20T10:49:15Z 1377 580 2005-08-21T11:05:15Z 2 2020-02-15T06:59:45Z +13743 2005-08-20T10:51:27Z 3693 57 2005-08-24T15:54:27Z 1 2020-02-15T06:59:45Z +13744 2005-08-20T10:51:45Z 2962 408 2005-08-25T06:42:45Z 2 2020-02-15T06:59:45Z +13745 2005-08-20T10:53:49Z 1264 142 2005-08-25T13:25:49Z 1 2020-02-15T06:59:45Z +13746 2005-08-20T10:55:28Z 3742 520 2005-08-25T07:48:28Z 2 2020-02-15T06:59:45Z +13747 2005-08-20T10:56:06Z 3332 74 2005-08-29T10:29:06Z 1 2020-02-15T06:59:45Z +13748 2005-08-20T10:59:54Z 2198 410 2005-08-23T12:33:54Z 1 2020-02-15T06:59:45Z +13749 2005-08-20T11:00:37Z 2811 282 2005-08-26T12:04:37Z 1 2020-02-15T06:59:45Z +13750 2005-08-20T11:11:42Z 3363 246 2005-08-29T16:16:42Z 2 2020-02-15T06:59:45Z +13751 2005-08-20T11:17:03Z 185 105 2005-08-22T14:12:03Z 2 2020-02-15T06:59:45Z +13752 2005-08-20T11:17:45Z 1794 77 2005-08-29T13:25:45Z 2 2020-02-15T06:59:45Z +13753 2006-02-14T15:16:03Z 3746 495 1 2020-02-15T06:59:45Z +13754 2005-08-20T11:18:08Z 1740 108 2005-08-22T11:55:08Z 1 2020-02-15T06:59:45Z +13755 2005-08-20T11:18:53Z 1927 342 2005-08-27T06:51:53Z 2 2020-02-15T06:59:45Z +13756 2006-02-14T15:16:03Z 1146 252 2 2020-02-15T06:59:45Z +13757 2005-08-20T11:20:12Z 1147 14 2005-08-23T10:14:12Z 2 2020-02-15T06:59:45Z +13758 2005-08-20T11:21:26Z 864 255 2005-08-29T14:37:26Z 2 2020-02-15T06:59:45Z +13759 2005-08-20T11:24:48Z 595 269 2005-08-29T10:29:48Z 1 2020-02-15T06:59:45Z +13760 2005-08-20T11:26:33Z 3459 436 2005-08-27T11:12:33Z 2 2020-02-15T06:59:45Z +13761 2005-08-20T11:28:50Z 3149 376 2005-08-21T12:05:50Z 2 2020-02-15T06:59:45Z +13762 2005-08-20T11:29:32Z 451 566 2005-08-23T17:25:32Z 1 2020-02-15T06:59:45Z +13763 2005-08-20T11:37:56Z 4171 469 2005-08-26T13:12:56Z 1 2020-02-15T06:59:45Z +13764 2005-08-20T11:38:16Z 989 386 2005-08-27T08:01:16Z 1 2020-02-15T06:59:45Z +13765 2005-08-20T11:39:00Z 2104 219 2005-08-21T06:05:00Z 1 2020-02-15T06:59:46Z +13766 2005-08-20T11:42:01Z 1313 189 2005-08-27T13:44:01Z 2 2020-02-15T06:59:46Z +13767 2005-08-20T11:43:36Z 2739 506 2005-08-22T17:10:36Z 1 2020-02-15T06:59:46Z +13768 2005-08-20T11:43:43Z 3847 198 2005-08-27T07:56:43Z 2 2020-02-15T06:59:46Z +13769 2005-08-20T11:43:52Z 2868 56 2005-08-28T13:19:52Z 1 2020-02-15T06:59:46Z +13770 2005-08-20T11:45:54Z 998 538 2005-08-22T17:08:54Z 1 2020-02-15T06:59:46Z +13771 2005-08-20T11:47:21Z 2278 512 2005-08-22T17:09:21Z 1 2020-02-15T06:59:46Z +13772 2005-08-20T11:47:52Z 2038 387 2005-08-28T05:50:52Z 2 2020-02-15T06:59:46Z +13773 2005-08-20T11:50:14Z 3389 64 2005-08-26T12:35:14Z 1 2020-02-15T06:59:46Z +13774 2005-08-20T11:54:01Z 735 244 2005-08-22T13:25:01Z 2 2020-02-15T06:59:46Z +13775 2005-08-20T11:56:30Z 1858 116 2005-08-28T12:48:30Z 2 2020-02-15T06:59:46Z +13776 2005-08-20T11:57:06Z 2439 137 2005-08-26T10:55:06Z 1 2020-02-15T06:59:46Z +13777 2005-08-20T12:03:35Z 3587 29 2005-08-27T10:13:35Z 1 2020-02-15T06:59:46Z +13778 2005-08-20T12:03:44Z 2385 539 2005-08-28T12:09:44Z 1 2020-02-15T06:59:46Z +13779 2005-08-20T12:03:54Z 63 440 2005-08-28T15:24:54Z 2 2020-02-15T06:59:46Z +13780 2006-02-14T15:16:03Z 1775 14 2 2020-02-15T06:59:46Z +13781 2005-08-20T12:06:45Z 971 368 2005-08-26T06:50:45Z 2 2020-02-15T06:59:46Z +13782 2005-08-20T12:09:26Z 577 305 2005-08-23T08:31:26Z 2 2020-02-15T06:59:46Z +13783 2005-08-20T12:11:03Z 2643 28 2005-08-21T15:53:03Z 2 2020-02-15T06:59:46Z +13784 2005-08-20T12:11:28Z 3087 431 2005-08-25T08:11:28Z 1 2020-02-15T06:59:46Z +13785 2005-08-20T12:11:46Z 379 453 2005-08-21T06:39:46Z 1 2020-02-15T06:59:46Z +13786 2005-08-20T12:13:24Z 515 94 2005-08-28T07:24:24Z 2 2020-02-15T06:59:46Z +13787 2005-08-20T12:15:23Z 253 188 2005-08-27T06:24:23Z 2 2020-02-15T06:59:46Z +13788 2005-08-20T12:15:41Z 3177 393 2005-08-28T16:28:41Z 2 2020-02-15T06:59:46Z +13789 2005-08-20T12:16:38Z 2523 53 2005-08-25T07:29:38Z 1 2020-02-15T06:59:46Z +13790 2005-08-20T12:17:27Z 1385 11 2005-08-25T12:20:27Z 1 2020-02-15T06:59:46Z +13791 2005-08-20T12:21:05Z 1890 67 2005-08-22T17:58:05Z 1 2020-02-15T06:59:46Z +13792 2005-08-20T12:21:37Z 4157 78 2005-08-27T14:28:37Z 1 2020-02-15T06:59:46Z +13793 2005-08-20T12:22:04Z 2598 424 2005-08-27T09:51:04Z 2 2020-02-15T06:59:46Z +13794 2005-08-20T12:25:32Z 2148 557 2005-08-23T06:38:32Z 2 2020-02-15T06:59:46Z +13795 2005-08-20T12:32:09Z 2837 331 2005-08-21T17:28:09Z 1 2020-02-15T06:59:46Z +13796 2005-08-20T12:32:32Z 28 209 2005-08-29T10:48:32Z 2 2020-02-15T06:59:46Z +13797 2005-08-20T12:33:36Z 2857 529 2005-08-25T18:03:36Z 1 2020-02-15T06:59:46Z +13798 2006-02-14T15:16:03Z 526 15 2 2020-02-15T06:59:46Z +13799 2005-08-20T12:36:42Z 4413 196 2005-08-28T08:47:42Z 1 2020-02-15T06:59:46Z +13800 2005-08-20T12:40:48Z 1552 407 2005-08-22T15:06:48Z 1 2020-02-15T06:59:46Z +13801 2005-08-20T12:40:53Z 1464 433 2005-08-21T16:29:53Z 1 2020-02-15T06:59:46Z +13802 2005-08-20T12:44:53Z 2079 156 2005-08-22T09:18:53Z 2 2020-02-15T06:59:46Z +13803 2005-08-20T12:46:17Z 1084 486 2005-08-24T15:44:17Z 2 2020-02-15T06:59:46Z +13804 2005-08-20T12:46:32Z 2232 19 2005-08-29T14:04:32Z 2 2020-02-15T06:59:46Z +13805 2005-08-20T12:53:12Z 349 454 2005-08-27T15:21:12Z 1 2020-02-15T06:59:46Z +13806 2005-08-20T12:53:46Z 444 341 2005-08-21T10:36:46Z 1 2020-02-15T06:59:46Z +13807 2005-08-20T12:55:40Z 3822 4 2005-08-28T09:06:40Z 2 2020-02-15T06:59:46Z +13808 2005-08-20T12:55:43Z 3689 262 2005-08-29T11:01:43Z 2 2020-02-15T06:59:46Z +13809 2005-08-20T12:56:03Z 1597 207 2005-08-27T11:58:03Z 1 2020-02-15T06:59:46Z +13810 2005-08-20T12:59:38Z 2228 450 2005-08-21T17:40:38Z 1 2020-02-15T06:59:46Z +13811 2005-08-20T13:00:30Z 1235 168 2005-08-24T10:18:30Z 1 2020-02-15T06:59:46Z +13812 2005-08-20T13:01:43Z 2788 122 2005-08-22T16:32:43Z 2 2020-02-15T06:59:46Z +13813 2005-08-20T13:03:26Z 601 455 2005-08-25T08:42:26Z 1 2020-02-15T06:59:46Z +13814 2005-08-20T13:07:23Z 2129 436 2005-08-22T16:23:23Z 2 2020-02-15T06:59:46Z +13815 2005-08-20T13:08:53Z 3388 582 2005-08-29T13:11:53Z 2 2020-02-15T06:59:46Z +13816 2005-08-20T13:13:56Z 273 27 2005-08-25T09:46:56Z 1 2020-02-15T06:59:46Z +13817 2005-08-20T13:15:30Z 1935 293 2005-08-22T18:48:30Z 2 2020-02-15T06:59:46Z +13818 2005-08-20T13:20:09Z 1283 495 2005-08-21T18:41:09Z 1 2020-02-15T06:59:46Z +13819 2005-08-20T13:23:15Z 1459 296 2005-08-22T16:02:15Z 2 2020-02-15T06:59:46Z +13820 2005-08-20T13:26:37Z 3191 81 2005-08-27T14:05:37Z 1 2020-02-15T06:59:46Z +13821 2005-08-20T13:33:47Z 2402 355 2005-08-25T18:09:47Z 1 2020-02-15T06:59:46Z +13822 2005-08-20T13:39:28Z 807 499 2005-08-24T07:40:28Z 1 2020-02-15T06:59:46Z +13823 2005-08-20T13:42:10Z 3875 89 2005-08-22T18:45:10Z 1 2020-02-15T06:59:46Z +13824 2005-08-20T13:43:12Z 2845 413 2005-08-22T17:26:12Z 1 2020-02-15T06:59:46Z +13825 2005-08-20T13:43:22Z 2135 167 2005-08-29T19:13:22Z 1 2020-02-15T06:59:46Z +13826 2005-08-20T13:46:38Z 401 436 2005-08-29T13:07:38Z 1 2020-02-15T06:59:46Z +13827 2005-08-20T13:47:19Z 1103 342 2005-08-28T09:13:19Z 1 2020-02-15T06:59:46Z +13828 2005-08-20T13:49:52Z 2391 450 2005-08-25T07:49:52Z 2 2020-02-15T06:59:46Z +13829 2005-08-20T13:50:17Z 3980 146 2005-08-24T11:30:17Z 2 2020-02-15T06:59:46Z +13830 2005-08-20T13:57:59Z 2874 61 2005-08-25T11:29:59Z 1 2020-02-15T06:59:46Z +13831 2005-08-20T13:59:35Z 570 480 2005-08-24T12:50:35Z 1 2020-02-15T06:59:46Z +13832 2005-08-20T14:00:25Z 3299 29 2005-08-28T10:11:25Z 1 2020-02-15T06:59:46Z +13833 2005-08-20T14:00:29Z 792 175 2005-08-29T12:01:29Z 2 2020-02-15T06:59:46Z +13834 2005-08-20T14:03:08Z 875 426 2005-08-22T10:12:08Z 1 2020-02-15T06:59:46Z +13835 2005-08-20T14:06:33Z 3738 143 2005-08-26T12:15:33Z 2 2020-02-15T06:59:46Z +13836 2005-08-20T14:18:16Z 4271 375 2005-08-21T18:13:16Z 2 2020-02-15T06:59:46Z +13837 2005-08-20T14:19:03Z 3220 67 2005-08-22T16:25:03Z 2 2020-02-15T06:59:46Z +13838 2005-08-20T14:22:46Z 1134 437 2005-08-29T12:28:46Z 2 2020-02-15T06:59:46Z +13839 2005-08-20T14:23:16Z 1056 437 2005-08-26T19:11:16Z 2 2020-02-15T06:59:46Z +13840 2005-08-20T14:23:20Z 1211 40 2005-08-28T11:53:20Z 1 2020-02-15T06:59:46Z +13841 2005-08-20T14:25:18Z 3277 203 2005-08-29T15:49:18Z 1 2020-02-15T06:59:46Z +13842 2005-08-20T14:29:37Z 4337 180 2005-08-29T18:19:37Z 1 2020-02-15T06:59:46Z +13843 2005-08-20T14:30:01Z 3058 308 2005-08-27T10:06:01Z 2 2020-02-15T06:59:46Z +13844 2005-08-20T14:30:26Z 983 179 2005-08-29T17:08:26Z 1 2020-02-15T06:59:46Z +13845 2005-08-20T14:31:21Z 3993 559 2005-08-29T18:29:21Z 1 2020-02-15T06:59:46Z +13846 2005-08-20T14:32:31Z 3289 257 2005-08-28T16:58:31Z 1 2020-02-15T06:59:46Z +13847 2005-08-20T14:33:59Z 2647 82 2005-08-25T08:49:59Z 1 2020-02-15T06:59:46Z +13848 2005-08-20T14:37:49Z 802 447 2005-08-25T13:15:49Z 1 2020-02-15T06:59:46Z +13849 2005-08-20T14:42:34Z 3774 261 2005-08-24T13:09:34Z 2 2020-02-15T06:59:46Z +13850 2005-08-20T14:43:03Z 3030 546 2005-08-27T11:41:03Z 2 2020-02-15T06:59:46Z +13851 2005-08-20T14:44:22Z 3278 80 2005-08-22T18:10:22Z 1 2020-02-15T06:59:46Z +13852 2005-08-20T14:45:23Z 85 535 2005-08-22T16:47:23Z 2 2020-02-15T06:59:46Z +13853 2005-08-20T14:47:02Z 1680 186 2005-08-26T20:32:02Z 1 2020-02-15T06:59:46Z +13854 2005-08-20T14:48:42Z 4192 158 2005-08-21T14:55:42Z 2 2020-02-15T06:59:46Z +13855 2005-08-20T14:48:55Z 1617 96 2005-08-28T14:45:55Z 1 2020-02-15T06:59:46Z +13856 2005-08-20T14:49:32Z 4196 407 2005-08-29T12:37:32Z 2 2020-02-15T06:59:46Z +13857 2005-08-20T14:50:06Z 2542 366 2005-08-24T10:38:06Z 2 2020-02-15T06:59:46Z +13858 2005-08-20T14:50:57Z 2167 33 2005-08-23T12:10:57Z 2 2020-02-15T06:59:46Z +13859 2005-08-20T14:53:43Z 4381 504 2005-08-28T09:50:43Z 1 2020-02-15T06:59:46Z +13860 2005-08-20T14:55:09Z 558 275 2005-08-22T20:42:09Z 1 2020-02-15T06:59:46Z +13861 2005-08-20T14:56:53Z 303 154 2005-08-22T18:13:53Z 2 2020-02-15T06:59:46Z +13862 2005-08-20T14:57:01Z 3271 170 2005-08-27T10:48:01Z 2 2020-02-15T06:59:46Z +13863 2005-08-20T14:57:50Z 2417 563 2005-08-29T15:36:50Z 2 2020-02-15T06:59:46Z +13864 2005-08-20T14:59:55Z 3935 214 2005-08-22T09:30:55Z 2 2020-02-15T06:59:46Z +13865 2005-08-20T15:04:09Z 3647 275 2005-08-24T10:06:09Z 2 2020-02-15T06:59:46Z +13866 2005-08-20T15:05:29Z 3432 343 2005-08-23T11:27:29Z 2 2020-02-15T06:59:46Z +13867 2005-08-20T15:05:42Z 4514 591 2005-08-29T10:48:42Z 2 2020-02-15T06:59:46Z +13868 2005-08-20T15:06:26Z 3173 51 2005-08-22T19:08:26Z 2 2020-02-15T06:59:46Z +13869 2005-08-20T15:08:57Z 1990 386 2005-08-29T13:13:57Z 2 2020-02-15T06:59:46Z +13870 2005-08-20T15:09:16Z 563 167 2005-08-28T10:00:16Z 2 2020-02-15T06:59:46Z +13871 2005-08-20T15:10:13Z 3206 372 2005-08-29T19:43:13Z 2 2020-02-15T06:59:46Z +13872 2005-08-20T15:10:30Z 2416 421 2005-08-24T10:14:30Z 2 2020-02-15T06:59:46Z +13873 2005-08-20T15:11:11Z 1683 306 2005-08-22T20:13:11Z 2 2020-02-15T06:59:46Z +13874 2005-08-20T15:11:48Z 72 86 2005-08-21T18:26:48Z 2 2020-02-15T06:59:46Z +13875 2005-08-20T15:13:11Z 348 83 2005-08-21T13:11:11Z 1 2020-02-15T06:59:46Z +13876 2005-08-20T15:15:28Z 3137 334 2005-08-23T12:42:28Z 2 2020-02-15T06:59:46Z +13877 2005-08-20T15:16:18Z 3387 5 2005-08-22T18:20:18Z 1 2020-02-15T06:59:46Z +13878 2005-08-20T15:17:38Z 49 481 2005-08-21T21:11:38Z 2 2020-02-15T06:59:46Z +13879 2005-08-20T15:18:10Z 4022 112 2005-08-22T19:23:10Z 2 2020-02-15T06:59:46Z +13880 2005-08-20T15:18:20Z 3911 268 2005-08-24T18:03:20Z 2 2020-02-15T06:59:46Z +13881 2005-08-20T15:18:55Z 2831 144 2005-08-25T11:25:55Z 1 2020-02-15T06:59:46Z +13882 2005-08-20T15:23:26Z 3245 51 2005-08-22T13:03:26Z 1 2020-02-15T06:59:46Z +13883 2005-08-20T15:28:53Z 584 568 2005-08-21T13:11:53Z 1 2020-02-15T06:59:46Z +13884 2005-08-20T15:30:51Z 3182 466 2005-08-26T13:34:51Z 1 2020-02-15T06:59:46Z +13885 2005-08-20T15:32:09Z 3195 537 2005-08-26T15:54:09Z 1 2020-02-15T06:59:46Z +13886 2005-08-20T15:34:43Z 2248 73 2005-08-26T11:48:43Z 2 2020-02-15T06:59:46Z +13887 2005-08-20T15:39:00Z 4002 413 2005-08-24T16:17:00Z 2 2020-02-15T06:59:46Z +13888 2005-08-20T15:39:42Z 1943 297 2005-08-28T13:41:42Z 1 2020-02-15T06:59:46Z +13889 2005-08-20T15:40:06Z 4406 501 2005-08-22T14:09:06Z 2 2020-02-15T06:59:46Z +13890 2005-08-20T15:41:00Z 2965 54 2005-08-22T16:00:00Z 1 2020-02-15T06:59:46Z +13891 2005-08-20T15:42:05Z 2042 289 2005-08-25T13:26:05Z 1 2020-02-15T06:59:46Z +13892 2005-08-20T15:50:17Z 1236 337 2005-08-29T13:33:17Z 2 2020-02-15T06:59:46Z +13893 2005-08-20T15:52:52Z 3503 390 2005-08-27T16:21:52Z 2 2020-02-15T06:59:46Z +13894 2005-08-20T15:55:20Z 2649 360 2005-08-26T17:26:20Z 2 2020-02-15T06:59:46Z +13895 2005-08-20T15:58:28Z 3060 12 2005-08-26T15:07:28Z 2 2020-02-15T06:59:46Z +13896 2005-08-20T15:59:56Z 1338 278 2005-08-21T20:14:56Z 2 2020-02-15T06:59:46Z +13897 2005-08-20T16:02:28Z 628 258 2005-08-23T14:29:28Z 1 2020-02-15T06:59:46Z +13898 2006-02-14T15:16:03Z 4007 369 2 2020-02-15T06:59:46Z +13899 2005-08-20T16:05:11Z 427 204 2005-08-23T15:14:11Z 2 2020-02-15T06:59:46Z +13900 2005-08-20T16:05:41Z 1140 66 2005-08-22T15:13:41Z 1 2020-02-15T06:59:46Z +13901 2005-08-20T16:06:53Z 3281 166 2005-08-28T11:30:53Z 1 2020-02-15T06:59:46Z +13902 2005-08-20T16:07:08Z 1165 275 2005-08-24T16:43:08Z 2 2020-02-15T06:59:46Z +13903 2005-08-20T16:07:55Z 1676 272 2005-08-25T18:26:55Z 1 2020-02-15T06:59:46Z +13904 2005-08-20T16:11:34Z 721 93 2005-08-26T12:46:34Z 1 2020-02-15T06:59:46Z +13905 2005-08-20T16:12:48Z 2714 437 2005-08-28T16:05:48Z 1 2020-02-15T06:59:46Z +13906 2005-08-20T16:16:03Z 3960 87 2005-08-21T13:29:03Z 2 2020-02-15T06:59:46Z +13907 2005-08-20T16:17:27Z 806 328 2005-08-24T20:14:27Z 2 2020-02-15T06:59:46Z +13908 2005-08-20T16:21:40Z 3661 532 2005-08-29T21:16:40Z 1 2020-02-15T06:59:46Z +13909 2005-08-20T16:26:36Z 1508 309 2005-08-21T20:59:36Z 2 2020-02-15T06:59:46Z +13910 2005-08-20T16:30:49Z 252 133 2005-08-24T13:30:49Z 2 2020-02-15T06:59:46Z +13911 2005-08-20T16:31:33Z 4400 304 2005-08-28T19:26:33Z 2 2020-02-15T06:59:46Z +13912 2005-08-20T16:32:10Z 968 207 2005-08-29T17:37:10Z 2 2020-02-15T06:59:46Z +13913 2005-08-20T16:37:35Z 4259 197 2005-08-26T13:12:35Z 2 2020-02-15T06:59:46Z +13914 2005-08-20T16:38:57Z 3037 237 2005-08-26T14:53:57Z 2 2020-02-15T06:59:46Z +13915 2005-08-20T16:42:53Z 1180 129 2005-08-23T20:30:53Z 2 2020-02-15T06:59:46Z +13916 2005-08-20T16:43:02Z 2971 302 2005-08-25T19:21:02Z 1 2020-02-15T06:59:46Z +13917 2005-08-20T16:43:28Z 4326 10 2005-08-29T16:44:28Z 2 2020-02-15T06:59:46Z +13918 2005-08-20T16:47:32Z 3301 248 2005-08-21T12:00:32Z 2 2020-02-15T06:59:46Z +13919 2005-08-20T16:47:34Z 909 129 2005-08-23T21:27:34Z 2 2020-02-15T06:59:46Z +13920 2005-08-20T16:51:18Z 3200 460 2005-08-27T16:05:18Z 2 2020-02-15T06:59:46Z +13921 2005-08-20T16:57:11Z 3943 59 2005-08-22T19:25:11Z 2 2020-02-15T06:59:46Z +13922 2005-08-20T17:02:37Z 1398 237 2005-08-29T19:28:37Z 1 2020-02-15T06:59:46Z +13923 2005-08-20T17:05:02Z 3129 588 2005-08-27T11:22:02Z 2 2020-02-15T06:59:46Z +13924 2005-08-20T17:05:18Z 3066 444 2005-08-23T16:54:18Z 2 2020-02-15T06:59:46Z +13925 2005-08-20T17:05:34Z 4034 565 2005-08-27T15:32:34Z 2 2020-02-15T06:59:46Z +13926 2005-08-20T17:09:27Z 932 158 2005-08-28T13:42:27Z 2 2020-02-15T06:59:46Z +13927 2005-08-20T17:11:58Z 4284 417 2005-08-24T12:44:58Z 1 2020-02-15T06:59:46Z +13928 2005-08-20T17:12:28Z 1121 244 2005-08-21T13:33:28Z 1 2020-02-15T06:59:46Z +13929 2005-08-20T17:13:48Z 946 57 2005-08-28T15:19:48Z 1 2020-02-15T06:59:46Z +13930 2005-08-20T17:15:06Z 3585 58 2005-08-21T14:29:06Z 1 2020-02-15T06:59:46Z +13931 2005-08-20T17:16:10Z 3884 32 2005-08-27T12:03:10Z 2 2020-02-15T06:59:46Z +13932 2005-08-20T17:17:00Z 471 441 2005-08-24T14:06:00Z 1 2020-02-15T06:59:46Z +13933 2005-08-20T17:17:07Z 647 159 2005-08-22T18:10:07Z 2 2020-02-15T06:59:46Z +13934 2005-08-20T17:18:48Z 4567 457 2005-08-26T15:31:48Z 1 2020-02-15T06:59:46Z +13935 2005-08-20T17:20:49Z 4426 205 2005-08-24T16:52:49Z 2 2020-02-15T06:59:46Z +13936 2005-08-20T17:22:35Z 1731 364 2005-08-23T20:07:35Z 2 2020-02-15T06:59:46Z +13937 2005-08-20T17:22:51Z 1755 172 2005-08-27T15:51:51Z 1 2020-02-15T06:59:46Z +13938 2005-08-20T17:24:45Z 3743 463 2005-08-21T18:39:45Z 1 2020-02-15T06:59:46Z +13939 2005-08-20T17:28:01Z 2700 585 2005-08-23T14:40:01Z 2 2020-02-15T06:59:46Z +13940 2005-08-20T17:28:57Z 2638 187 2005-08-27T22:07:57Z 1 2020-02-15T06:59:46Z +13941 2006-02-14T15:16:03Z 2727 476 2 2020-02-15T06:59:46Z +13942 2005-08-20T17:30:52Z 4403 211 2005-08-25T13:46:52Z 2 2020-02-15T06:59:46Z +13943 2005-08-20T17:31:18Z 22 464 2005-08-24T11:33:18Z 1 2020-02-15T06:59:46Z +13944 2005-08-20T17:41:16Z 3685 408 2005-08-23T12:02:16Z 1 2020-02-15T06:59:46Z +13945 2005-08-20T17:43:56Z 3328 270 2005-08-26T19:19:56Z 1 2020-02-15T06:59:46Z +13946 2005-08-20T17:44:32Z 3564 529 2005-08-28T19:19:32Z 1 2020-02-15T06:59:46Z +13947 2005-08-20T17:46:06Z 2562 218 2005-08-29T23:44:06Z 2 2020-02-15T06:59:46Z +13948 2005-08-20T17:50:48Z 4033 410 2005-08-25T20:56:48Z 2 2020-02-15T06:59:46Z +13949 2005-08-20T17:55:13Z 1518 34 2005-08-22T20:49:13Z 1 2020-02-15T06:59:46Z +13950 2005-08-20T17:58:00Z 3978 93 2005-08-29T23:23:00Z 1 2020-02-15T06:59:46Z +13951 2005-08-20T17:58:11Z 2034 40 2005-08-26T14:50:11Z 2 2020-02-15T06:59:46Z +13952 2006-02-14T15:16:03Z 224 199 2 2020-02-15T06:59:46Z +13953 2005-08-20T18:00:37Z 1818 371 2005-08-28T14:52:37Z 1 2020-02-15T06:59:46Z +13954 2005-08-20T18:02:41Z 3812 207 2005-08-27T21:52:41Z 2 2020-02-15T06:59:46Z +13955 2005-08-20T18:05:12Z 2613 273 2005-08-29T18:25:12Z 1 2020-02-15T06:59:46Z +13956 2005-08-20T18:08:19Z 3757 484 2005-08-29T17:03:19Z 1 2020-02-15T06:59:46Z +13957 2005-08-20T18:09:04Z 2889 179 2005-08-23T16:52:04Z 1 2020-02-15T06:59:46Z +13958 2005-08-20T18:11:44Z 2380 33 2005-08-28T14:59:44Z 1 2020-02-15T06:59:46Z +13959 2005-08-20T18:16:21Z 2283 142 2005-08-22T13:56:21Z 2 2020-02-15T06:59:46Z +13960 2005-08-20T18:16:26Z 4177 459 2005-08-29T14:06:26Z 1 2020-02-15T06:59:46Z +13961 2005-08-20T18:16:34Z 2271 129 2005-08-21T16:14:34Z 1 2020-02-15T06:59:46Z +13962 2005-08-20T18:18:06Z 1434 348 2005-08-24T22:16:06Z 2 2020-02-15T06:59:46Z +13963 2005-08-20T18:20:18Z 4145 368 2005-08-24T21:26:18Z 1 2020-02-15T06:59:46Z +13964 2005-08-20T18:24:26Z 108 128 2005-08-21T21:19:26Z 2 2020-02-15T06:59:46Z +13965 2006-02-14T15:16:03Z 670 324 2 2020-02-15T06:59:46Z +13966 2005-08-20T18:28:28Z 4520 260 2005-08-22T16:49:28Z 2 2020-02-15T06:59:46Z +13967 2005-08-20T18:28:46Z 2751 459 2005-08-26T17:37:46Z 2 2020-02-15T06:59:46Z +13968 2006-02-14T15:16:03Z 3715 15 2 2020-02-15T06:59:46Z +13969 2005-08-20T18:42:40Z 1836 237 2005-08-27T17:33:40Z 2 2020-02-15T06:59:46Z +13970 2005-08-20T18:43:34Z 1942 418 2005-08-22T15:17:34Z 2 2020-02-15T06:59:46Z +13971 2005-08-20T18:44:53Z 1678 64 2005-08-22T16:25:53Z 2 2020-02-15T06:59:46Z +13972 2005-08-20T18:52:17Z 1687 553 2005-08-28T15:19:17Z 1 2020-02-15T06:59:46Z +13973 2005-08-20T18:52:43Z 1181 58 2005-08-21T19:11:43Z 1 2020-02-15T06:59:46Z +13974 2005-08-20T18:54:59Z 1912 479 2005-08-28T13:02:59Z 1 2020-02-15T06:59:46Z +13975 2005-08-20T18:58:23Z 3821 286 2005-08-25T20:58:23Z 1 2020-02-15T06:59:46Z +13976 2005-08-20T19:02:16Z 1785 278 2005-08-25T17:58:16Z 2 2020-02-15T06:59:46Z +13977 2005-08-20T19:02:34Z 1126 115 2005-08-24T14:14:34Z 1 2020-02-15T06:59:46Z +13978 2005-08-20T19:03:25Z 1263 260 2005-08-27T18:02:25Z 2 2020-02-15T06:59:46Z +13979 2005-08-20T19:03:49Z 2998 211 2005-08-24T21:23:49Z 1 2020-02-15T06:59:46Z +13980 2005-08-20T19:04:40Z 1067 391 2005-08-21T18:36:40Z 2 2020-02-15T06:59:46Z +13981 2005-08-20T19:07:20Z 3342 249 2005-08-23T15:13:20Z 1 2020-02-15T06:59:46Z +13982 2005-08-20T19:08:25Z 2901 448 2005-08-28T15:59:25Z 2 2020-02-15T06:59:46Z +13983 2005-08-20T19:08:32Z 457 231 2005-08-29T23:45:32Z 1 2020-02-15T06:59:46Z +13984 2005-08-20T19:12:30Z 2183 473 2005-08-29T22:04:30Z 1 2020-02-15T06:59:46Z +13985 2005-08-20T19:13:06Z 1081 339 2005-08-24T21:24:06Z 2 2020-02-15T06:59:46Z +13986 2005-08-20T19:13:23Z 3701 152 2005-08-22T20:59:23Z 2 2020-02-15T06:59:46Z +13987 2005-08-20T19:19:30Z 1443 246 2005-08-23T15:37:30Z 2 2020-02-15T06:59:46Z +13988 2005-08-20T19:21:28Z 3567 466 2005-08-21T22:20:28Z 2 2020-02-15T06:59:46Z +13989 2005-08-20T19:27:50Z 1470 252 2005-08-28T15:17:50Z 2 2020-02-15T06:59:46Z +13990 2005-08-20T19:29:23Z 2272 481 2005-08-25T18:50:23Z 2 2020-02-15T06:59:46Z +13991 2005-08-20T19:29:44Z 1971 296 2005-08-24T21:10:44Z 1 2020-02-15T06:59:46Z +13992 2005-08-20T19:30:35Z 2798 136 2005-08-24T19:09:35Z 2 2020-02-15T06:59:46Z +13993 2005-08-20T19:32:29Z 1158 93 2005-08-26T16:59:29Z 2 2020-02-15T06:59:46Z +13994 2005-08-20T19:33:21Z 142 180 2005-08-24T20:55:21Z 1 2020-02-15T06:59:46Z +13995 2005-08-20T19:34:43Z 3789 381 2005-08-25T22:25:43Z 2 2020-02-15T06:59:46Z +13996 2005-08-20T19:45:43Z 3341 306 2005-08-22T16:47:43Z 2 2020-02-15T06:59:46Z +13997 2005-08-20T19:51:28Z 2330 175 2005-08-26T01:29:28Z 2 2020-02-15T06:59:46Z +13998 2005-08-20T19:52:38Z 3936 530 2005-08-26T14:57:38Z 1 2020-02-15T06:59:46Z +13999 2005-08-20T19:53:32Z 4149 239 2005-08-26T19:01:32Z 1 2020-02-15T06:59:46Z +14000 2005-08-20T20:06:05Z 3907 276 2005-08-28T17:02:05Z 1 2020-02-15T06:59:46Z +14001 2005-08-20T20:07:15Z 1318 120 2005-08-27T00:50:15Z 2 2020-02-15T06:59:46Z +14002 2005-08-20T20:12:19Z 87 33 2005-08-23T00:23:19Z 1 2020-02-15T06:59:46Z +14003 2005-08-20T20:16:06Z 3165 256 2005-08-28T14:36:06Z 1 2020-02-15T06:59:46Z +14004 2005-08-20T20:16:35Z 3445 358 2005-08-28T17:23:35Z 2 2020-02-15T06:59:46Z +14005 2005-08-20T20:19:05Z 1415 135 2005-08-26T01:42:05Z 2 2020-02-15T06:59:46Z +14006 2005-08-20T20:21:36Z 2189 186 2005-08-21T15:26:36Z 1 2020-02-15T06:59:46Z +14007 2005-08-20T20:22:47Z 374 284 2005-08-28T20:40:47Z 2 2020-02-15T06:59:46Z +14008 2005-08-20T20:26:00Z 2427 560 2005-08-28T17:23:00Z 2 2020-02-15T06:59:46Z +14009 2005-08-20T20:26:53Z 3004 382 2005-08-21T23:32:53Z 2 2020-02-15T06:59:46Z +14010 2005-08-20T20:29:46Z 934 537 2005-08-26T17:37:46Z 2 2020-02-15T06:59:46Z +14011 2005-08-20T20:32:56Z 1212 379 2005-08-28T21:44:56Z 1 2020-02-15T06:59:46Z +14012 2005-08-20T20:42:12Z 1866 274 2005-08-23T23:10:12Z 2 2020-02-15T06:59:46Z +14013 2005-08-20T20:42:50Z 3941 496 2005-08-25T21:37:50Z 2 2020-02-15T06:59:46Z +14014 2005-08-20T20:47:09Z 2188 335 2005-08-21T22:08:09Z 2 2020-02-15T06:59:46Z +14015 2005-08-20T20:47:43Z 3145 554 2005-08-26T19:37:43Z 1 2020-02-15T06:59:46Z +14016 2005-08-20T20:52:03Z 509 220 2005-08-23T18:04:03Z 2 2020-02-15T06:59:46Z +14017 2005-08-20T20:55:32Z 920 230 2005-08-23T16:12:32Z 1 2020-02-15T06:59:46Z +14018 2006-02-14T15:16:03Z 2136 533 2 2020-02-15T06:59:46Z +14019 2005-08-20T20:59:15Z 1929 202 2005-08-28T17:29:15Z 2 2020-02-15T06:59:46Z +14020 2005-08-20T20:59:43Z 2257 72 2005-08-23T17:11:43Z 2 2020-02-15T06:59:46Z +14021 2005-08-20T21:02:12Z 4394 147 2005-08-27T22:15:12Z 1 2020-02-15T06:59:46Z +14022 2005-08-20T21:08:49Z 4068 170 2005-08-29T21:57:49Z 1 2020-02-15T06:59:46Z +14023 2005-08-20T21:10:32Z 2668 304 2005-08-23T20:57:32Z 1 2020-02-15T06:59:46Z +14024 2005-08-20T21:13:58Z 1492 87 2005-08-29T23:02:58Z 1 2020-02-15T06:59:46Z +14025 2005-08-20T21:19:36Z 4521 37 2005-08-29T23:39:36Z 1 2020-02-15T06:59:46Z +14026 2005-08-20T21:21:08Z 115 231 2005-08-22T23:19:08Z 2 2020-02-15T06:59:46Z +14027 2005-08-20T21:21:34Z 284 432 2005-08-28T17:46:34Z 1 2020-02-15T06:59:46Z +14028 2005-08-20T21:23:03Z 4061 158 2005-08-25T17:29:03Z 2 2020-02-15T06:59:46Z +14029 2005-08-20T21:23:11Z 2653 219 2005-08-22T18:01:11Z 2 2020-02-15T06:59:46Z +14030 2005-08-20T21:23:54Z 1027 127 2005-08-27T01:19:54Z 1 2020-02-15T06:59:46Z +14031 2005-08-20T21:24:24Z 440 361 2005-08-23T21:47:24Z 2 2020-02-15T06:59:46Z +14032 2005-08-20T21:26:55Z 3542 317 2005-08-26T19:19:55Z 1 2020-02-15T06:59:46Z +14033 2005-08-20T21:30:53Z 525 243 2005-08-23T01:45:53Z 2 2020-02-15T06:59:46Z +14034 2005-08-20T21:31:52Z 3484 200 2005-08-29T00:13:52Z 1 2020-02-15T06:59:46Z +14035 2005-08-20T21:31:58Z 2035 260 2005-08-22T16:28:58Z 1 2020-02-15T06:59:46Z +14036 2005-08-20T21:35:27Z 202 256 2005-08-23T03:29:27Z 1 2020-02-15T06:59:46Z +14037 2005-08-20T21:35:58Z 3655 372 2005-08-29T23:06:58Z 2 2020-02-15T06:59:46Z +14038 2005-08-20T21:39:23Z 1069 589 2005-08-27T23:57:23Z 2 2020-02-15T06:59:46Z +14039 2005-08-20T21:39:43Z 4187 383 2005-08-24T19:03:43Z 1 2020-02-15T06:59:46Z +14040 2005-08-20T21:43:44Z 905 17 2005-08-25T16:30:44Z 1 2020-02-15T06:59:46Z +14041 2005-08-20T21:45:23Z 52 247 2005-08-26T01:42:23Z 1 2020-02-15T06:59:46Z +14042 2005-08-20T21:45:51Z 505 322 2005-08-23T19:57:51Z 2 2020-02-15T06:59:46Z +14043 2005-08-20T21:46:43Z 1485 586 2005-08-21T18:27:43Z 2 2020-02-15T06:59:46Z +14044 2005-08-20T21:48:38Z 1422 145 2005-08-29T02:56:38Z 1 2020-02-15T06:59:46Z +14045 2005-08-20T21:50:11Z 3010 509 2005-08-25T19:03:11Z 2 2020-02-15T06:59:46Z +14046 2005-08-20T21:53:21Z 2352 524 2005-08-23T17:51:21Z 2 2020-02-15T06:59:46Z +14047 2005-08-20T22:00:43Z 186 579 2005-08-24T03:17:43Z 2 2020-02-15T06:59:46Z +14048 2005-08-20T22:03:18Z 3475 105 2005-08-25T02:57:18Z 2 2020-02-15T06:59:46Z +14049 2005-08-20T22:08:55Z 1335 112 2005-08-28T20:24:55Z 1 2020-02-15T06:59:46Z +14050 2005-08-20T22:09:04Z 1737 596 2005-08-26T01:39:04Z 2 2020-02-15T06:59:46Z +14051 2005-08-20T22:09:51Z 4012 362 2005-08-29T04:04:51Z 2 2020-02-15T06:59:46Z +14052 2005-08-20T22:11:46Z 3893 514 2005-08-22T20:26:46Z 2 2020-02-15T06:59:46Z +14053 2005-08-20T22:13:59Z 2177 5 2005-08-26T20:50:59Z 2 2020-02-15T06:59:46Z +14054 2005-08-20T22:17:01Z 338 50 2005-08-21T21:34:01Z 1 2020-02-15T06:59:46Z +14055 2005-08-20T22:18:00Z 1571 148 2005-08-22T02:09:00Z 2 2020-02-15T06:59:46Z +14056 2005-08-20T22:18:53Z 1300 22 2005-08-27T01:05:53Z 2 2020-02-15T06:59:46Z +14057 2005-08-20T22:22:59Z 1526 333 2005-08-25T16:58:59Z 2 2020-02-15T06:59:46Z +14058 2005-08-20T22:24:35Z 178 430 2005-08-30T02:26:35Z 1 2020-02-15T06:59:46Z +14059 2005-08-20T22:24:44Z 2045 141 2005-08-26T21:25:44Z 2 2020-02-15T06:59:46Z +14060 2006-02-14T15:16:03Z 3100 175 2 2020-02-15T06:59:46Z +14061 2005-08-20T22:32:11Z 73 53 2005-08-22T19:28:11Z 1 2020-02-15T06:59:46Z +14062 2005-08-20T22:34:34Z 2841 239 2005-08-25T17:11:34Z 2 2020-02-15T06:59:46Z +14063 2005-08-20T22:36:40Z 1215 275 2005-08-25T00:18:40Z 2 2020-02-15T06:59:46Z +14064 2005-08-20T22:39:16Z 2938 103 2005-08-22T00:45:16Z 2 2020-02-15T06:59:46Z +14065 2005-08-20T22:40:47Z 3758 190 2005-08-24T01:47:47Z 1 2020-02-15T06:59:46Z +14066 2005-08-20T22:45:58Z 2444 274 2005-08-29T00:23:58Z 2 2020-02-15T06:59:46Z +14067 2005-08-20T22:49:23Z 1376 259 2005-08-29T22:28:23Z 2 2020-02-15T06:59:46Z +14068 2005-08-20T22:50:59Z 818 412 2005-08-29T00:45:59Z 1 2020-02-15T06:59:46Z +14069 2005-08-20T22:51:25Z 2239 197 2005-08-30T00:30:25Z 2 2020-02-15T06:59:46Z +14070 2005-08-20T22:56:34Z 846 581 2005-08-29T22:02:34Z 1 2020-02-15T06:59:46Z +14071 2005-08-20T23:01:56Z 2471 550 2005-08-22T02:14:56Z 1 2020-02-15T06:59:46Z +14072 2005-08-20T23:07:10Z 2387 515 2005-08-23T03:38:10Z 2 2020-02-15T06:59:46Z +14073 2005-08-20T23:12:57Z 2996 230 2005-08-28T18:47:57Z 2 2020-02-15T06:59:46Z +14074 2005-08-20T23:16:07Z 1303 506 2005-08-26T04:45:07Z 1 2020-02-15T06:59:46Z +14075 2005-08-20T23:18:54Z 3793 32 2005-08-26T21:59:54Z 2 2020-02-15T06:59:46Z +14076 2005-08-20T23:20:10Z 1070 574 2005-08-24T04:00:10Z 1 2020-02-15T06:59:46Z +14077 2005-08-20T23:24:07Z 3184 21 2005-08-29T02:53:07Z 1 2020-02-15T06:59:46Z +14078 2005-08-20T23:26:40Z 1642 396 2005-08-28T02:30:40Z 1 2020-02-15T06:59:46Z +14079 2005-08-20T23:29:25Z 3528 348 2005-08-25T04:16:25Z 2 2020-02-15T06:59:46Z +14080 2005-08-20T23:29:50Z 3962 266 2005-08-26T00:33:50Z 1 2020-02-15T06:59:46Z +14081 2005-08-20T23:35:13Z 589 392 2005-08-28T01:41:13Z 2 2020-02-15T06:59:46Z +14082 2005-08-20T23:42:00Z 3767 179 2005-08-27T00:59:00Z 1 2020-02-15T06:59:46Z +14083 2005-08-20T23:42:31Z 1823 176 2005-08-28T21:44:31Z 1 2020-02-15T06:59:46Z +14084 2005-08-20T23:42:46Z 900 37 2005-08-24T20:06:46Z 1 2020-02-15T06:59:46Z +14085 2005-08-20T23:46:24Z 3506 471 2005-08-29T02:31:24Z 2 2020-02-15T06:59:46Z +14086 2005-08-20T23:47:54Z 3244 253 2005-08-27T22:49:54Z 1 2020-02-15T06:59:46Z +14087 2005-08-20T23:53:40Z 2368 289 2005-08-26T20:22:40Z 1 2020-02-15T06:59:46Z +14088 2005-08-20T23:57:24Z 1184 518 2005-08-28T21:49:24Z 1 2020-02-15T06:59:46Z +14089 2005-08-20T23:59:02Z 1400 425 2005-08-27T00:19:02Z 1 2020-02-15T06:59:46Z +14090 2005-08-21T00:11:16Z 3254 168 2005-08-23T19:48:16Z 2 2020-02-15T06:59:46Z +14091 2005-08-21T00:11:17Z 3304 53 2005-08-27T18:38:17Z 1 2020-02-15T06:59:46Z +14092 2005-08-21T00:14:32Z 1596 273 2005-08-24T22:22:32Z 2 2020-02-15T06:59:46Z +14093 2005-08-21T00:21:29Z 1176 177 2005-08-22T04:01:29Z 1 2020-02-15T06:59:46Z +14094 2005-08-21T00:21:35Z 3674 471 2005-08-23T05:27:35Z 2 2020-02-15T06:59:46Z +14095 2005-08-21T00:25:45Z 1550 489 2005-08-28T23:00:45Z 1 2020-02-15T06:59:46Z +14096 2005-08-21T00:27:46Z 2089 342 2005-08-22T22:53:46Z 1 2020-02-15T06:59:46Z +14097 2005-08-21T00:28:48Z 4351 88 2005-08-29T22:15:48Z 1 2020-02-15T06:59:46Z +14098 2005-08-21T00:30:32Z 6 554 2 2020-02-15T06:59:46Z +14099 2005-08-21T00:31:03Z 2452 224 2005-08-27T03:18:03Z 2 2020-02-15T06:59:46Z +14100 2005-08-21T00:31:07Z 4295 397 2005-08-25T05:31:07Z 2 2020-02-15T06:59:46Z +14101 2005-08-21T00:33:03Z 1892 19 2005-08-24T01:59:03Z 1 2020-02-15T06:59:46Z +14102 2005-08-21T00:35:21Z 3772 584 2005-08-30T04:51:21Z 2 2020-02-15T06:59:46Z +14103 2005-08-21T00:37:00Z 1438 409 2005-08-25T22:09:00Z 2 2020-02-15T06:59:46Z +14104 2005-08-21T00:37:44Z 912 178 2005-08-21T22:55:44Z 2 2020-02-15T06:59:46Z +14105 2005-08-21T00:44:34Z 1111 71 2005-08-29T19:00:34Z 1 2020-02-15T06:59:46Z +14106 2005-08-21T00:46:01Z 2673 315 2005-08-27T23:44:01Z 1 2020-02-15T06:59:46Z +14107 2006-02-14T15:16:03Z 3998 251 1 2020-02-15T06:59:46Z +14108 2005-08-21T00:52:45Z 4339 243 2005-08-21T19:35:45Z 2 2020-02-15T06:59:46Z +14109 2005-08-21T00:52:58Z 1046 180 2005-08-22T00:09:58Z 2 2020-02-15T06:59:46Z +14110 2005-08-21T00:53:09Z 2709 35 2005-08-24T05:33:09Z 2 2020-02-15T06:59:46Z +14111 2005-08-21T00:59:01Z 1294 130 2005-08-22T20:43:01Z 2 2020-02-15T06:59:46Z +14112 2005-08-21T01:00:46Z 734 141 2005-08-27T03:46:46Z 1 2020-02-15T06:59:46Z +14113 2005-08-21T01:03:30Z 931 288 2005-08-23T06:46:30Z 2 2020-02-15T06:59:46Z +14114 2005-08-21T01:07:11Z 2270 8 2005-08-24T20:33:11Z 1 2020-02-15T06:59:46Z +14115 2005-08-21T01:10:29Z 1945 257 2005-08-24T01:21:29Z 1 2020-02-15T06:59:46Z +14116 2005-08-21T01:11:17Z 2356 142 2005-08-24T23:45:17Z 2 2020-02-15T06:59:46Z +14117 2005-08-21T01:11:59Z 573 493 2005-08-22T06:56:59Z 1 2020-02-15T06:59:46Z +14118 2005-08-21T01:13:37Z 2605 337 2005-08-28T02:35:37Z 2 2020-02-15T06:59:46Z +14119 2005-08-21T01:15:59Z 129 53 2005-08-27T23:36:59Z 2 2020-02-15T06:59:46Z +14120 2005-08-21T01:25:00Z 4069 302 2005-08-24T23:21:00Z 2 2020-02-15T06:59:46Z +14121 2005-08-21T01:26:33Z 4207 417 2005-08-28T22:47:33Z 2 2020-02-15T06:59:46Z +14122 2005-08-21T01:29:01Z 3955 86 2005-08-27T05:31:01Z 1 2020-02-15T06:59:46Z +14123 2005-08-21T01:31:25Z 143 66 2005-08-23T02:32:25Z 1 2020-02-15T06:59:46Z +14124 2005-08-21T01:31:51Z 311 35 2005-08-24T22:20:51Z 2 2020-02-15T06:59:46Z +14125 2005-08-21T01:32:16Z 2174 265 2005-08-26T00:09:16Z 1 2020-02-15T06:59:46Z +14126 2005-08-21T01:32:17Z 2738 215 2005-08-23T01:02:17Z 1 2020-02-15T06:59:46Z +14127 2005-08-21T01:33:32Z 4532 550 2005-08-22T02:47:32Z 2 2020-02-15T06:59:46Z +14128 2005-08-21T01:35:58Z 2594 81 2005-08-21T21:23:58Z 2 2020-02-15T06:59:46Z +14129 2005-08-21T01:42:15Z 3572 362 2005-08-23T20:04:15Z 2 2020-02-15T06:59:46Z +14130 2005-08-21T01:43:11Z 3859 352 2005-08-27T21:16:11Z 2 2020-02-15T06:59:46Z +14131 2005-08-21T01:43:40Z 4382 267 2005-08-29T02:00:40Z 2 2020-02-15T06:59:46Z +14132 2005-08-21T01:43:58Z 3806 91 2005-08-26T20:16:58Z 2 2020-02-15T06:59:46Z +14133 2005-08-21T01:44:14Z 2463 453 2005-08-30T02:19:14Z 2 2020-02-15T06:59:46Z +14134 2005-08-21T01:45:54Z 2159 497 2005-08-24T01:36:54Z 1 2020-02-15T06:59:46Z +14135 2005-08-21T01:53:54Z 347 59 2005-08-27T05:57:54Z 1 2020-02-15T06:59:46Z +14136 2005-08-21T01:57:26Z 268 135 2005-08-28T01:11:26Z 1 2020-02-15T06:59:46Z +14137 2006-02-14T15:16:03Z 2346 53 2 2020-02-15T06:59:46Z +14138 2005-08-21T01:59:37Z 1238 121 2005-08-30T01:17:37Z 2 2020-02-15T06:59:46Z +14139 2005-08-21T02:04:33Z 2280 561 2005-08-22T04:16:33Z 2 2020-02-15T06:59:46Z +14140 2005-08-21T02:04:57Z 2070 65 2005-08-29T06:41:57Z 2 2020-02-15T06:59:46Z +14141 2005-08-21T02:07:22Z 4527 190 2005-08-30T07:32:22Z 1 2020-02-15T06:59:46Z +14142 2005-08-21T02:07:43Z 1479 544 2005-08-23T02:37:43Z 2 2020-02-15T06:59:46Z +14143 2005-08-21T02:10:32Z 2549 146 2005-08-23T23:50:32Z 1 2020-02-15T06:59:46Z +14144 2005-08-21T02:10:57Z 2366 46 2005-08-28T01:02:57Z 1 2020-02-15T06:59:46Z +14145 2005-08-21T02:11:38Z 150 314 2005-08-22T22:19:38Z 2 2020-02-15T06:59:46Z +14146 2005-08-21T02:13:31Z 2151 192 2005-08-24T22:47:31Z 2 2020-02-15T06:59:46Z +14147 2005-08-21T02:14:03Z 1476 366 2005-08-27T22:38:03Z 1 2020-02-15T06:59:46Z +14148 2005-08-21T02:17:49Z 1605 528 2005-08-22T00:12:49Z 1 2020-02-15T06:59:46Z +14149 2005-08-21T02:22:47Z 3371 518 2005-08-24T02:36:47Z 1 2020-02-15T06:59:46Z +14150 2005-08-21T02:23:03Z 2324 161 2005-08-25T22:50:03Z 2 2020-02-15T06:59:46Z +14151 2005-08-21T02:23:25Z 2785 426 2005-08-30T07:08:25Z 1 2020-02-15T06:59:46Z +14152 2005-08-21T02:23:50Z 2561 379 2005-08-25T06:05:50Z 1 2020-02-15T06:59:46Z +14153 2005-08-21T02:24:33Z 1502 120 2005-08-27T05:28:33Z 2 2020-02-15T06:59:46Z +14154 2005-08-21T02:30:00Z 951 468 2005-08-28T01:41:00Z 2 2020-02-15T06:59:46Z +14155 2005-08-21T02:31:35Z 769 148 2005-08-27T06:00:35Z 2 2020-02-15T06:59:46Z +14156 2005-08-21T02:35:16Z 437 147 2005-08-27T01:32:16Z 2 2020-02-15T06:59:46Z +14157 2005-08-21T02:43:15Z 4471 128 2005-08-24T02:47:15Z 1 2020-02-15T06:59:46Z +14158 2005-08-21T02:43:20Z 474 114 2005-08-28T02:19:20Z 1 2020-02-15T06:59:46Z +14159 2005-08-21T02:45:58Z 3231 144 2005-08-27T04:53:58Z 1 2020-02-15T06:59:46Z +14160 2006-02-14T15:16:03Z 2428 493 2 2020-02-15T06:59:46Z +14161 2005-08-21T02:51:59Z 2744 21 2005-08-28T21:38:59Z 2 2020-02-15T06:59:46Z +14162 2005-08-21T02:55:34Z 3788 315 2005-08-27T00:13:34Z 1 2020-02-15T06:59:46Z +14163 2005-08-21T02:56:52Z 1007 204 2005-08-21T21:03:52Z 2 2020-02-15T06:59:46Z +14164 2005-08-21T02:58:02Z 2381 274 2005-08-29T23:17:02Z 2 2020-02-15T06:59:46Z +14165 2005-08-21T02:59:17Z 4151 150 2005-08-24T23:09:17Z 2 2020-02-15T06:59:46Z +14166 2005-08-21T02:59:31Z 2457 190 2005-08-24T23:19:31Z 2 2020-02-15T06:59:46Z +14167 2005-08-21T02:59:48Z 1005 64 2005-08-29T22:17:48Z 1 2020-02-15T06:59:46Z +14168 2005-08-21T03:00:03Z 1321 49 2005-08-29T06:04:03Z 2 2020-02-15T06:59:46Z +14169 2005-08-21T03:00:31Z 3800 396 2005-08-30T01:16:31Z 1 2020-02-15T06:59:46Z +14170 2005-08-21T03:00:39Z 894 259 2005-08-27T23:07:39Z 1 2020-02-15T06:59:46Z +14171 2005-08-21T03:00:42Z 4179 320 2005-08-24T00:54:42Z 1 2020-02-15T06:59:46Z +14172 2006-02-14T15:16:03Z 2158 450 2 2020-02-15T06:59:46Z +14173 2005-08-21T03:01:01Z 3175 152 2005-08-22T02:40:01Z 1 2020-02-15T06:59:46Z +14174 2005-08-21T03:01:45Z 1862 29 2005-08-22T07:19:45Z 2 2020-02-15T06:59:46Z +14175 2006-02-14T15:16:03Z 2021 452 1 2020-02-15T06:59:46Z +14176 2005-08-21T03:09:23Z 4420 556 2005-08-26T21:26:23Z 1 2020-02-15T06:59:46Z +14177 2005-08-21T03:11:33Z 409 121 2005-08-28T21:41:33Z 2 2020-02-15T06:59:46Z +14178 2005-08-21T03:13:45Z 2178 524 2005-08-22T01:50:45Z 1 2020-02-15T06:59:46Z +14179 2005-08-21T03:14:27Z 3956 79 2005-08-26T00:46:27Z 2 2020-02-15T06:59:46Z +14180 2005-08-21T03:16:15Z 796 262 2005-08-24T22:31:15Z 2 2020-02-15T06:59:46Z +14181 2005-08-21T03:16:30Z 197 210 2005-08-29T06:25:30Z 2 2020-02-15T06:59:46Z +14182 2005-08-21T03:17:10Z 2422 519 2005-08-24T21:46:10Z 1 2020-02-15T06:59:46Z +14183 2005-08-21T03:24:29Z 1888 26 2005-08-22T07:25:29Z 2 2020-02-15T06:59:46Z +14184 2005-08-21T03:24:50Z 3759 148 2005-08-29T01:46:50Z 2 2020-02-15T06:59:46Z +14185 2005-08-21T03:28:37Z 3957 579 2005-08-26T01:15:37Z 1 2020-02-15T06:59:46Z +14186 2005-08-21T03:31:07Z 3158 461 2005-08-28T07:29:07Z 2 2020-02-15T06:59:46Z +14187 2005-08-21T03:32:03Z 4031 275 2005-08-25T03:29:03Z 2 2020-02-15T06:59:46Z +14188 2005-08-21T03:32:04Z 4492 548 2005-08-22T07:26:04Z 1 2020-02-15T06:59:46Z +14189 2005-08-21T03:32:17Z 2209 127 2005-08-22T04:46:17Z 2 2020-02-15T06:59:46Z +14190 2005-08-21T03:35:21Z 4203 517 2005-08-29T07:35:21Z 2 2020-02-15T06:59:46Z +14191 2005-08-21T03:35:58Z 301 423 2005-08-28T00:28:58Z 1 2020-02-15T06:59:46Z +14192 2005-08-21T03:37:42Z 3563 26 2005-08-28T05:31:42Z 2 2020-02-15T06:59:46Z +14193 2005-08-21T03:38:27Z 513 25 2005-08-28T09:16:27Z 1 2020-02-15T06:59:46Z +14194 2005-08-21T03:40:11Z 2003 138 2005-08-26T07:38:11Z 1 2020-02-15T06:59:46Z +14195 2005-08-21T03:40:35Z 3732 93 2005-08-23T01:22:35Z 1 2020-02-15T06:59:46Z +14196 2005-08-21T03:40:40Z 4477 281 2005-08-25T05:55:40Z 1 2020-02-15T06:59:46Z +14197 2005-08-21T03:47:25Z 340 469 2005-08-30T09:15:25Z 2 2020-02-15T06:59:46Z +14198 2005-08-21T03:48:31Z 465 381 2005-08-24T07:10:31Z 2 2020-02-15T06:59:46Z +14199 2005-08-21T03:48:43Z 658 442 2005-08-23T04:01:43Z 1 2020-02-15T06:59:46Z +14200 2005-08-21T03:51:27Z 2339 349 2005-08-29T22:00:27Z 1 2020-02-15T06:59:46Z +14201 2005-08-21T03:51:34Z 314 427 2005-08-30T03:42:34Z 2 2020-02-15T06:59:46Z +14202 2005-08-21T03:51:52Z 1995 473 2005-08-22T09:35:52Z 1 2020-02-15T06:59:46Z +14203 2005-08-21T03:51:52Z 3668 95 2005-08-24T06:13:52Z 2 2020-02-15T06:59:46Z +14204 2006-02-14T15:16:03Z 4334 287 1 2020-02-15T06:59:46Z +14205 2005-08-21T03:57:15Z 315 406 2005-08-30T08:46:15Z 2 2020-02-15T06:59:46Z +14206 2005-08-21T03:59:26Z 860 279 2005-08-26T03:52:26Z 1 2020-02-15T06:59:46Z +14207 2005-08-21T04:08:19Z 1327 569 2005-08-29T07:59:19Z 2 2020-02-15T06:59:46Z +14208 2005-08-21T04:09:18Z 4180 299 2005-08-22T03:29:18Z 1 2020-02-15T06:59:46Z +14209 2005-08-21T04:17:56Z 896 472 2005-08-27T06:57:56Z 1 2020-02-15T06:59:46Z +14210 2005-08-21T04:28:02Z 1867 468 2005-08-24T02:14:02Z 2 2020-02-15T06:59:46Z +14211 2005-08-21T04:29:11Z 300 372 2005-08-24T02:50:11Z 2 2020-02-15T06:59:46Z +14212 2005-08-21T04:29:26Z 4540 354 2005-08-24T00:46:26Z 2 2020-02-15T06:59:46Z +14213 2005-08-21T04:30:47Z 382 511 2005-08-24T23:01:47Z 1 2020-02-15T06:59:46Z +14214 2005-08-21T04:30:49Z 4510 198 2005-08-26T04:42:49Z 1 2020-02-15T06:59:46Z +14215 2005-08-21T04:34:11Z 35 54 2005-08-27T10:30:11Z 2 2020-02-15T06:59:46Z +14216 2006-02-14T15:16:03Z 3763 186 1 2020-02-15T06:59:46Z +14217 2005-08-21T04:37:56Z 2847 66 2005-08-26T03:55:56Z 2 2020-02-15T06:59:46Z +14218 2005-08-21T04:43:59Z 4087 104 2005-08-27T10:29:59Z 1 2020-02-15T06:59:46Z +14219 2006-02-14T15:16:03Z 3718 334 2 2020-02-15T06:59:46Z +14220 2006-02-14T15:16:03Z 2618 162 1 2020-02-15T06:59:46Z +14221 2005-08-21T04:49:41Z 3824 51 2005-08-29T23:52:41Z 1 2020-02-15T06:59:46Z +14222 2005-08-21T04:49:48Z 714 7 2005-08-25T05:34:48Z 2 2020-02-15T06:59:46Z +14223 2005-08-21T04:51:51Z 514 392 2005-08-29T00:37:51Z 1 2020-02-15T06:59:46Z +14224 2005-08-21T04:53:08Z 3634 323 2005-08-27T04:12:08Z 2 2020-02-15T06:59:46Z +14225 2005-08-21T04:53:37Z 984 4 2005-08-25T23:39:37Z 2 2020-02-15T06:59:46Z +14226 2005-08-21T04:55:37Z 1793 316 2005-08-24T04:32:37Z 1 2020-02-15T06:59:46Z +14227 2005-08-21T04:56:31Z 4102 277 2005-08-22T05:04:31Z 2 2020-02-15T06:59:46Z +14228 2005-08-21T04:57:08Z 2016 71 2005-08-25T00:06:08Z 2 2020-02-15T06:59:46Z +14229 2005-08-21T04:57:15Z 4479 186 2005-08-26T10:00:15Z 1 2020-02-15T06:59:46Z +14230 2005-08-21T04:57:29Z 844 584 2005-08-27T08:14:29Z 2 2020-02-15T06:59:46Z +14231 2005-08-21T05:04:34Z 1244 307 2005-08-23T04:58:34Z 1 2020-02-15T06:59:46Z +14232 2005-08-21T05:07:02Z 2710 176 2005-08-29T06:57:02Z 1 2020-02-15T06:59:46Z +14233 2005-08-21T05:07:08Z 2943 599 2005-08-28T03:20:08Z 1 2020-02-15T06:59:46Z +14234 2005-08-21T05:07:12Z 1439 271 2005-08-23T06:44:12Z 2 2020-02-15T06:59:46Z +14235 2005-08-21T05:08:42Z 125 558 2005-08-29T23:36:42Z 1 2020-02-15T06:59:46Z +14236 2005-08-21T05:13:16Z 172 25 2005-08-26T04:03:16Z 2 2020-02-15T06:59:46Z +14237 2005-08-21T05:15:00Z 3284 410 2005-08-25T10:06:00Z 1 2020-02-15T06:59:46Z +14238 2005-08-21T05:16:40Z 3148 192 2005-08-30T02:13:40Z 2 2020-02-15T06:59:46Z +14239 2005-08-21T05:18:57Z 1559 416 2005-08-22T00:12:57Z 2 2020-02-15T06:59:46Z +14240 2005-08-21T05:19:39Z 3294 12 2005-08-22T23:25:39Z 2 2020-02-15T06:59:46Z +14241 2005-08-21T05:24:55Z 2547 291 2005-08-30T03:33:55Z 1 2020-02-15T06:59:46Z +14242 2005-08-21T05:25:59Z 1588 68 2005-08-27T07:22:59Z 1 2020-02-15T06:59:46Z +14243 2006-02-14T15:16:03Z 1489 264 1 2020-02-15T06:59:46Z +14244 2005-08-21T05:29:55Z 1150 43 2005-08-24T01:06:55Z 1 2020-02-15T06:59:46Z +14245 2005-08-21T05:30:54Z 975 354 2005-08-26T07:02:54Z 1 2020-02-15T06:59:46Z +14246 2005-08-21T05:34:09Z 3499 120 2005-08-26T06:12:09Z 1 2020-02-15T06:59:46Z +14247 2005-08-21T05:35:17Z 267 302 2005-08-26T03:22:17Z 1 2020-02-15T06:59:46Z +14248 2005-08-21T05:35:57Z 725 293 2005-08-28T05:53:57Z 2 2020-02-15T06:59:46Z +14249 2005-08-21T05:38:05Z 695 268 2005-08-28T09:07:05Z 2 2020-02-15T06:59:46Z +14250 2005-08-21T05:39:35Z 3008 313 2005-08-28T10:06:35Z 2 2020-02-15T06:59:46Z +14251 2005-08-21T05:42:20Z 139 486 2005-08-26T06:20:20Z 2 2020-02-15T06:59:46Z +14252 2005-08-21T05:44:07Z 2660 13 2005-08-29T08:53:07Z 1 2020-02-15T06:59:46Z +14253 2005-08-21T05:47:52Z 4246 456 2005-08-25T04:28:52Z 1 2020-02-15T06:59:46Z +14254 2005-08-21T05:51:28Z 1549 589 2005-08-29T06:05:28Z 2 2020-02-15T06:59:46Z +14255 2005-08-21T05:51:37Z 3125 492 2005-08-29T10:00:37Z 1 2020-02-15T06:59:46Z +14256 2005-08-21T05:52:27Z 2922 331 2005-08-29T02:10:27Z 2 2020-02-15T06:59:46Z +14257 2005-08-21T05:52:57Z 3830 178 2005-08-29T03:18:57Z 2 2020-02-15T06:59:46Z +14258 2005-08-21T05:56:36Z 752 359 2005-08-26T06:14:36Z 1 2020-02-15T06:59:46Z +14259 2005-08-21T06:00:22Z 3705 583 2005-08-22T05:38:22Z 2 2020-02-15T06:59:46Z +14260 2005-08-21T06:01:08Z 2961 40 2005-08-29T09:01:08Z 2 2020-02-15T06:59:46Z +14261 2005-08-21T06:07:24Z 1426 166 2005-08-26T09:57:24Z 1 2020-02-15T06:59:46Z +14262 2005-08-21T06:08:13Z 1430 324 2005-08-30T10:55:13Z 1 2020-02-15T06:59:46Z +14263 2005-08-21T06:08:15Z 2595 533 2005-08-29T09:22:15Z 2 2020-02-15T06:59:46Z +14264 2005-08-21T06:18:22Z 3426 295 2005-08-25T08:08:22Z 1 2020-02-15T06:59:46Z +14265 2005-08-21T06:20:14Z 3116 134 2005-08-23T09:05:14Z 1 2020-02-15T06:59:46Z +14266 2005-08-21T06:20:51Z 3543 269 2005-08-23T00:44:51Z 1 2020-02-15T06:59:46Z +14267 2006-02-14T15:16:03Z 2199 527 2 2020-02-15T06:59:46Z +14268 2005-08-21T06:21:24Z 2442 278 2005-08-23T05:39:24Z 2 2020-02-15T06:59:46Z +14269 2005-08-21T06:22:07Z 531 241 2005-08-30T00:41:07Z 2 2020-02-15T06:59:46Z +14270 2005-08-21T06:22:18Z 4083 171 2005-08-27T08:04:18Z 1 2020-02-15T06:59:46Z +14271 2005-08-21T06:23:29Z 4506 224 2005-08-27T04:49:29Z 1 2020-02-15T06:59:46Z +14272 2005-08-21T06:24:55Z 3908 243 2005-08-28T02:25:55Z 1 2020-02-15T06:59:46Z +14273 2005-08-21T06:26:48Z 2640 388 2005-08-30T10:34:48Z 1 2020-02-15T06:59:46Z +14274 2005-08-21T06:29:20Z 3183 405 2005-08-26T06:25:20Z 2 2020-02-15T06:59:46Z +14275 2005-08-21T06:30:30Z 3238 163 2005-08-25T12:28:30Z 1 2020-02-15T06:59:46Z +14276 2005-08-21T06:34:05Z 3637 318 2005-08-28T10:13:05Z 2 2020-02-15T06:59:46Z +14277 2005-08-21T06:34:41Z 2652 566 2005-08-28T10:53:41Z 2 2020-02-15T06:59:46Z +14278 2006-02-14T15:16:03Z 2334 557 2 2020-02-15T06:59:46Z +14279 2005-08-21T06:39:08Z 3325 387 2005-08-29T11:01:08Z 2 2020-02-15T06:59:46Z +14280 2005-08-21T06:39:58Z 1561 481 2005-08-23T04:50:58Z 1 2020-02-15T06:59:46Z +14281 2005-08-21T06:40:48Z 1848 166 2005-08-26T11:42:48Z 2 2020-02-15T06:59:46Z +14282 2005-08-21T06:41:29Z 3107 450 2005-08-22T12:37:29Z 1 2020-02-15T06:59:46Z +14283 2005-08-21T06:44:14Z 3052 253 2005-08-24T01:01:14Z 1 2020-02-15T06:59:46Z +14284 2005-08-21T06:44:37Z 633 486 2005-08-28T05:03:37Z 1 2020-02-15T06:59:46Z +14285 2005-08-21T06:50:48Z 402 249 2005-08-28T11:35:48Z 1 2020-02-15T06:59:46Z +14286 2005-08-21T06:53:53Z 2377 558 2005-08-27T11:37:53Z 2 2020-02-15T06:59:46Z +14287 2005-08-21T06:53:59Z 2426 427 2005-08-25T03:10:59Z 2 2020-02-15T06:59:46Z +14288 2005-08-21T06:57:34Z 587 512 2005-08-26T11:32:34Z 1 2020-02-15T06:59:46Z +14289 2005-08-21T06:58:49Z 1185 103 2005-08-25T11:29:49Z 2 2020-02-15T06:59:46Z +14290 2005-08-21T07:02:59Z 790 366 2005-08-28T02:57:59Z 1 2020-02-15T06:59:46Z +14291 2005-08-21T07:03:05Z 3988 56 2005-08-26T12:56:05Z 2 2020-02-15T06:59:46Z +14292 2005-08-21T07:06:20Z 1959 251 2005-08-22T01:39:20Z 2 2020-02-15T06:59:46Z +14293 2005-08-21T07:06:47Z 3555 364 2005-08-22T05:07:47Z 2 2020-02-15T06:59:46Z +14294 2005-08-21T07:07:26Z 354 455 2005-08-22T02:20:26Z 2 2020-02-15T06:59:46Z +14295 2005-08-21T07:09:27Z 2187 336 2005-08-22T01:27:27Z 2 2020-02-15T06:59:46Z +14296 2005-08-21T07:13:23Z 3813 275 2005-08-26T11:14:23Z 1 2020-02-15T06:59:46Z +14297 2005-08-21T07:13:46Z 1712 566 2005-08-25T09:07:46Z 1 2020-02-15T06:59:46Z +14298 2005-08-21T07:17:10Z 4317 410 2005-08-25T10:10:10Z 1 2020-02-15T06:59:46Z +14299 2005-08-21T07:18:57Z 4028 342 2005-08-24T01:28:57Z 1 2020-02-15T06:59:46Z +14300 2005-08-21T07:19:37Z 690 382 2005-08-25T12:06:37Z 2 2020-02-15T06:59:46Z +14301 2005-08-21T07:19:48Z 283 162 2005-08-28T02:06:48Z 1 2020-02-15T06:59:46Z +14302 2005-08-21T07:19:57Z 1287 511 2005-08-28T02:59:57Z 1 2020-02-15T06:59:46Z +14303 2005-08-21T07:22:43Z 992 475 2005-08-24T11:52:43Z 1 2020-02-15T06:59:46Z +14304 2005-08-21T07:23:10Z 2650 417 2005-08-26T11:21:10Z 2 2020-02-15T06:59:46Z +14305 2005-08-21T07:29:05Z 2056 58 2005-08-27T08:18:05Z 1 2020-02-15T06:59:46Z +14306 2005-08-21T07:32:35Z 4027 453 2005-08-30T05:53:35Z 1 2020-02-15T06:59:46Z +14307 2005-08-21T07:34:52Z 2894 328 2005-08-29T09:45:52Z 1 2020-02-15T06:59:46Z +14308 2005-08-21T07:43:21Z 3478 419 2005-08-25T02:39:21Z 2 2020-02-15T06:59:46Z +14309 2005-08-21T07:44:17Z 4447 468 2005-08-30T07:23:17Z 2 2020-02-15T06:59:46Z +14310 2005-08-21T07:44:32Z 95 177 2005-08-22T09:02:32Z 1 2020-02-15T06:59:46Z +14311 2005-08-21T07:45:47Z 1761 69 2005-08-27T02:23:47Z 2 2020-02-15T06:59:46Z +14312 2005-08-21T07:48:34Z 1090 238 2005-08-23T04:45:34Z 1 2020-02-15T06:59:46Z +14313 2005-08-21T07:49:53Z 3384 468 2005-08-30T05:52:53Z 2 2020-02-15T06:59:46Z +14314 2005-08-21T07:50:14Z 4115 178 2005-08-24T10:47:14Z 2 2020-02-15T06:59:46Z +14315 2005-08-21T07:56:39Z 1164 459 2005-08-27T04:52:39Z 1 2020-02-15T06:59:46Z +14316 2005-08-21T07:59:47Z 386 64 2005-08-23T02:20:47Z 2 2020-02-15T06:59:46Z +14317 2005-08-21T08:00:40Z 2090 471 2005-08-27T06:52:40Z 1 2020-02-15T06:59:46Z +14318 2006-02-14T15:16:03Z 1042 508 2 2020-02-15T06:59:46Z +14319 2005-08-21T08:00:55Z 4480 410 2005-08-26T05:04:55Z 1 2020-02-15T06:59:46Z +14320 2005-08-21T08:04:40Z 3121 199 2005-08-22T02:09:40Z 1 2020-02-15T06:59:46Z +14321 2005-08-21T08:05:12Z 967 236 2005-08-23T02:17:12Z 1 2020-02-15T06:59:46Z +14322 2005-08-21T08:06:30Z 2818 221 2005-08-29T10:12:30Z 2 2020-02-15T06:59:46Z +14323 2005-08-21T08:08:43Z 1257 97 2005-08-25T10:44:43Z 1 2020-02-15T06:59:46Z +14324 2005-08-21T08:10:56Z 1361 155 2005-08-30T12:09:56Z 1 2020-02-15T06:59:46Z +14325 2005-08-21T08:15:38Z 4432 313 2005-08-23T08:08:38Z 2 2020-02-15T06:59:46Z +14326 2005-08-21T08:15:41Z 1052 17 2005-08-27T05:22:41Z 1 2020-02-15T06:59:46Z +14327 2005-08-21T08:18:18Z 553 457 2005-08-30T02:21:18Z 2 2020-02-15T06:59:46Z +14328 2005-08-21T08:18:20Z 3194 489 2005-08-25T03:05:20Z 2 2020-02-15T06:59:46Z +14329 2005-08-21T08:22:56Z 3544 6 2005-08-28T02:22:56Z 2 2020-02-15T06:59:46Z +14330 2005-08-21T08:29:20Z 763 84 2005-08-30T03:59:20Z 2 2020-02-15T06:59:46Z +14331 2005-08-21T08:29:38Z 3128 372 2005-08-29T13:18:38Z 2 2020-02-15T06:59:46Z +14332 2005-08-21T08:30:43Z 1388 496 2005-08-29T10:51:43Z 1 2020-02-15T06:59:46Z +14333 2005-08-21T08:31:03Z 2976 93 2005-08-28T03:39:03Z 2 2020-02-15T06:59:46Z +14334 2005-08-21T08:32:32Z 1448 595 2005-08-25T02:53:32Z 2 2020-02-15T06:59:46Z +14335 2005-08-21T08:33:07Z 2610 263 2005-08-26T14:16:07Z 1 2020-02-15T06:59:46Z +14336 2005-08-21T08:33:42Z 3166 362 2005-08-23T03:27:42Z 1 2020-02-15T06:59:46Z +14337 2005-08-21T08:34:26Z 3529 506 2005-08-24T11:31:26Z 1 2020-02-15T06:59:46Z +14338 2005-08-21T08:36:03Z 1789 205 2005-08-24T12:31:03Z 2 2020-02-15T06:59:46Z +14339 2005-08-21T08:37:15Z 1744 30 2005-08-26T03:37:15Z 2 2020-02-15T06:59:46Z +14340 2005-08-21T08:38:21Z 2181 230 2005-08-25T09:25:21Z 1 2020-02-15T06:59:46Z +14341 2005-08-21T08:38:24Z 4498 560 2005-08-26T12:36:24Z 1 2020-02-15T06:59:46Z +14342 2005-08-21T08:39:26Z 2749 559 2005-08-23T11:40:26Z 2 2020-02-15T06:59:46Z +14343 2005-08-21T08:40:21Z 3769 238 2005-08-29T03:06:21Z 1 2020-02-15T06:59:46Z +14344 2005-08-21T08:40:56Z 1562 341 2005-08-27T12:40:56Z 1 2020-02-15T06:59:46Z +14345 2005-08-21T08:41:15Z 1726 598 2005-08-24T11:59:15Z 1 2020-02-15T06:59:46Z +14346 2005-08-21T08:42:26Z 109 17 2005-08-23T09:18:26Z 2 2020-02-15T06:59:46Z +14347 2005-08-21T08:42:31Z 3862 214 2005-08-25T07:11:31Z 2 2020-02-15T06:59:46Z +14348 2005-08-21T08:54:26Z 885 496 2005-08-24T02:55:26Z 2 2020-02-15T06:59:46Z +14349 2005-08-21T08:54:53Z 96 119 2005-08-30T14:27:53Z 1 2020-02-15T06:59:46Z +14350 2005-08-21T08:58:38Z 3174 222 2005-08-30T03:29:38Z 2 2020-02-15T06:59:46Z +14351 2005-08-21T09:04:20Z 2037 66 2005-08-25T05:27:20Z 1 2020-02-15T06:59:46Z +14352 2005-08-21T09:06:29Z 1224 527 2005-08-28T13:36:29Z 1 2020-02-15T06:59:46Z +14353 2005-08-21T09:07:50Z 1612 129 2005-08-22T10:31:50Z 2 2020-02-15T06:59:46Z +14354 2005-08-21T09:08:14Z 1137 382 2005-08-30T05:27:14Z 1 2020-02-15T06:59:46Z +14355 2005-08-21T09:08:29Z 649 271 2005-08-27T10:08:29Z 2 2020-02-15T06:59:46Z +14356 2005-08-21T09:08:51Z 3169 65 2005-08-24T04:36:51Z 2 2020-02-15T06:59:46Z +14357 2005-08-21T09:13:09Z 2906 233 2005-08-22T05:41:09Z 2 2020-02-15T06:59:46Z +14358 2005-08-21T09:14:28Z 861 112 2005-08-24T05:05:28Z 1 2020-02-15T06:59:46Z +14359 2005-08-21T09:16:19Z 1841 401 2005-08-22T09:28:19Z 1 2020-02-15T06:59:46Z +14360 2005-08-21T09:16:40Z 2677 246 2005-08-29T11:43:40Z 2 2020-02-15T06:59:46Z +14361 2006-02-14T15:16:03Z 1231 191 2 2020-02-15T06:59:46Z +14362 2005-08-21T09:19:49Z 1992 312 2005-08-26T11:06:49Z 1 2020-02-15T06:59:46Z +14363 2005-08-21T09:20:03Z 2579 560 2005-08-23T14:26:03Z 1 2020-02-15T06:59:46Z +14364 2005-08-21T09:25:11Z 3513 236 2005-08-29T09:04:11Z 1 2020-02-15T06:59:46Z +14365 2005-08-21T09:25:13Z 618 457 2005-08-27T11:48:13Z 1 2020-02-15T06:59:46Z +14366 2005-08-21T09:31:39Z 4011 524 2005-08-26T11:55:39Z 2 2020-02-15T06:59:46Z +14367 2005-08-21T09:31:44Z 870 244 2005-08-26T03:54:44Z 2 2020-02-15T06:59:46Z +14368 2005-08-21T09:31:47Z 2063 351 2005-08-30T04:17:47Z 1 2020-02-15T06:59:46Z +14369 2005-08-21T09:33:44Z 1636 392 2005-08-25T08:56:44Z 1 2020-02-15T06:59:46Z +14370 2005-08-21T09:35:14Z 3520 161 2005-08-27T05:21:14Z 2 2020-02-15T06:59:46Z +14371 2005-08-21T09:37:16Z 2197 221 2005-08-27T13:50:16Z 2 2020-02-15T06:59:46Z +14372 2005-08-21T09:39:50Z 1953 520 2005-08-28T13:36:50Z 1 2020-02-15T06:59:46Z +14373 2005-08-21T09:44:53Z 4433 268 2005-08-25T15:37:53Z 1 2020-02-15T06:59:46Z +14374 2006-02-14T15:16:03Z 236 213 2 2020-02-15T06:59:46Z +14375 2005-08-21T09:46:35Z 2507 550 2005-08-26T10:24:35Z 2 2020-02-15T06:59:46Z +14376 2005-08-21T09:48:56Z 1936 582 2005-08-22T12:15:56Z 2 2020-02-15T06:59:46Z +14377 2005-08-21T09:49:28Z 1325 6 2005-08-29T13:34:28Z 1 2020-02-15T06:59:46Z +14378 2005-08-21T09:50:02Z 810 515 2005-08-30T09:07:02Z 1 2020-02-15T06:59:46Z +14379 2005-08-21T09:53:03Z 3062 136 2005-08-24T14:32:03Z 1 2020-02-15T06:59:46Z +14380 2005-08-21T09:53:52Z 1523 198 2005-08-25T05:03:52Z 2 2020-02-15T06:59:46Z +14381 2005-08-21T09:55:47Z 811 391 2005-08-25T08:23:47Z 1 2020-02-15T06:59:46Z +14382 2005-08-21T10:01:03Z 4119 119 2005-08-22T13:21:03Z 2 2020-02-15T06:59:46Z +14383 2005-08-21T10:02:05Z 1941 482 2005-08-24T12:21:05Z 2 2020-02-15T06:59:46Z +14384 2005-08-21T10:02:37Z 2429 371 2005-08-26T08:20:37Z 1 2020-02-15T06:59:46Z +14385 2005-08-21T10:02:55Z 4356 317 2005-08-25T07:19:55Z 2 2020-02-15T06:59:46Z +14386 2005-08-21T10:06:34Z 3402 514 2005-08-25T14:19:34Z 1 2020-02-15T06:59:46Z +14387 2005-08-21T10:10:01Z 1286 295 2005-08-28T14:16:01Z 2 2020-02-15T06:59:46Z +14388 2005-08-21T10:15:13Z 1078 274 2005-08-30T13:41:13Z 2 2020-02-15T06:59:46Z +14389 2005-08-21T10:15:20Z 2718 145 2005-08-27T05:39:20Z 1 2020-02-15T06:59:46Z +14390 2005-08-21T10:15:38Z 3951 366 2005-08-28T05:50:38Z 2 2020-02-15T06:59:46Z +14391 2005-08-21T10:16:27Z 3117 205 2005-08-23T07:00:27Z 2 2020-02-15T06:59:46Z +14392 2005-08-21T10:19:25Z 847 586 2005-08-28T15:57:25Z 2 2020-02-15T06:59:46Z +14393 2005-08-21T10:22:51Z 3937 368 2005-08-29T08:28:51Z 1 2020-02-15T06:59:46Z +14394 2005-08-21T10:23:10Z 4555 118 2005-08-28T09:33:10Z 1 2020-02-15T06:59:46Z +14395 2005-08-21T10:24:00Z 632 506 2005-08-28T12:23:00Z 2 2020-02-15T06:59:46Z +14396 2005-08-21T10:24:54Z 3855 353 2005-08-22T04:49:54Z 2 2020-02-15T06:59:46Z +14397 2005-08-21T10:25:56Z 3883 47 2005-08-24T07:48:56Z 1 2020-02-15T06:59:46Z +14398 2005-08-21T10:27:21Z 357 505 2005-08-23T10:46:21Z 2 2020-02-15T06:59:46Z +14399 2005-08-21T10:33:23Z 3582 188 2005-08-27T08:00:23Z 1 2020-02-15T06:59:46Z +14400 2005-08-21T10:33:45Z 3891 569 2005-08-26T12:05:45Z 1 2020-02-15T06:59:46Z +14401 2005-08-21T10:36:20Z 3468 407 2005-08-30T06:45:20Z 1 2020-02-15T06:59:46Z +14402 2005-08-21T10:38:17Z 749 467 2005-08-27T08:36:17Z 2 2020-02-15T06:59:46Z +14403 2005-08-21T10:40:34Z 3581 297 2005-08-29T11:29:34Z 1 2020-02-15T06:59:46Z +14404 2005-08-21T10:43:04Z 3660 192 2005-08-30T10:00:04Z 1 2020-02-15T06:59:46Z +14405 2005-08-21T10:45:01Z 2777 470 2005-08-30T04:48:01Z 2 2020-02-15T06:59:46Z +14406 2005-08-21T10:46:35Z 2741 181 2005-08-28T15:55:35Z 1 2020-02-15T06:59:46Z +14407 2005-08-21T10:46:51Z 2403 500 2005-08-25T09:28:51Z 2 2020-02-15T06:59:46Z +14408 2005-08-21T10:47:24Z 222 593 2005-08-27T08:18:24Z 1 2020-02-15T06:59:46Z +14409 2005-08-21T10:53:35Z 1161 314 2005-08-25T10:40:35Z 2 2020-02-15T06:59:46Z +14410 2005-08-21T10:54:49Z 839 196 2005-08-26T08:28:49Z 2 2020-02-15T06:59:46Z +14411 2005-08-21T10:54:57Z 2125 502 2005-08-22T13:17:57Z 2 2020-02-15T06:59:46Z +14412 2005-08-21T11:02:09Z 212 121 2005-08-29T06:44:09Z 1 2020-02-15T06:59:46Z +14413 2005-08-21T11:06:33Z 50 367 2005-08-29T16:10:33Z 1 2020-02-15T06:59:46Z +14414 2005-08-21T11:08:17Z 1757 515 2005-08-23T08:37:17Z 2 2020-02-15T06:59:46Z +14415 2006-02-14T15:16:03Z 2670 561 2 2020-02-15T06:59:46Z +14416 2005-08-21T11:11:46Z 3002 384 2005-08-25T12:33:46Z 1 2020-02-15T06:59:46Z +14417 2005-08-21T11:13:35Z 1768 596 2005-08-25T11:27:35Z 1 2020-02-15T06:59:46Z +14418 2005-08-21T11:14:26Z 89 442 2005-08-28T08:34:26Z 2 2020-02-15T06:59:46Z +14419 2005-08-21T11:15:46Z 3146 221 2005-08-30T16:37:46Z 1 2020-02-15T06:59:46Z +14420 2005-08-21T11:16:15Z 2495 551 2005-08-24T06:06:15Z 2 2020-02-15T06:59:46Z +14421 2005-08-21T11:20:21Z 4402 406 2005-08-24T06:26:21Z 1 2020-02-15T06:59:46Z +14422 2005-08-21T11:21:46Z 1382 361 2005-08-25T13:15:46Z 1 2020-02-15T06:59:46Z +14423 2005-08-21T11:23:59Z 2873 521 2005-08-26T11:52:59Z 2 2020-02-15T06:59:46Z +14424 2005-08-21T11:24:11Z 2535 489 2005-08-29T13:13:11Z 2 2020-02-15T06:59:46Z +14425 2006-02-14T15:16:03Z 2752 560 2 2020-02-15T06:59:46Z +14426 2006-02-14T15:16:03Z 2902 315 1 2020-02-15T06:59:46Z +14427 2005-08-21T11:26:06Z 2353 163 2005-08-27T10:39:06Z 1 2020-02-15T06:59:46Z +14428 2005-08-21T11:27:07Z 1614 458 2005-08-29T09:50:07Z 1 2020-02-15T06:59:46Z +14429 2005-08-21T11:29:43Z 2513 66 2005-08-24T12:05:43Z 1 2020-02-15T06:59:46Z +14430 2005-08-21T11:31:11Z 2623 5 2005-08-26T06:29:11Z 1 2020-02-15T06:59:46Z +14431 2005-08-21T11:31:15Z 1572 106 2005-08-26T11:22:15Z 2 2020-02-15T06:59:46Z +14432 2005-08-21T11:36:15Z 2294 138 2005-08-24T08:02:15Z 2 2020-02-15T06:59:46Z +14433 2005-08-21T11:36:34Z 732 401 2005-08-26T08:51:34Z 1 2020-02-15T06:59:46Z +14434 2005-08-21T11:40:46Z 2085 549 2005-08-24T05:50:46Z 1 2020-02-15T06:59:46Z +14435 2005-08-21T11:44:37Z 2919 169 2005-08-24T08:04:37Z 1 2020-02-15T06:59:46Z +14436 2005-08-21T11:48:27Z 3473 560 2005-08-25T15:49:27Z 2 2020-02-15T06:59:46Z +14437 2005-08-21T11:48:32Z 1504 136 2005-08-25T11:06:32Z 2 2020-02-15T06:59:46Z +14438 2005-08-21T11:51:10Z 1621 392 2005-08-28T17:10:10Z 1 2020-02-15T06:59:46Z +14439 2005-08-21T11:52:41Z 3903 564 2005-08-30T10:36:41Z 1 2020-02-15T06:59:46Z +14440 2005-08-21T11:59:04Z 3495 194 2005-08-23T10:10:04Z 1 2020-02-15T06:59:46Z +14441 2005-08-21T11:59:38Z 1210 260 2005-08-26T11:17:38Z 2 2020-02-15T06:59:46Z +14442 2005-08-21T12:00:21Z 122 205 2005-08-23T17:00:21Z 2 2020-02-15T06:59:46Z +14443 2005-08-21T12:06:32Z 376 447 2005-08-29T13:44:32Z 2 2020-02-15T06:59:46Z +14444 2005-08-21T12:07:25Z 2211 225 2005-08-28T08:36:25Z 2 2020-02-15T06:59:46Z +14445 2005-08-21T12:07:42Z 3186 256 2005-08-22T17:51:42Z 2 2020-02-15T06:59:46Z +14446 2005-08-21T12:10:41Z 4367 21 2005-08-26T14:42:41Z 1 2020-02-15T06:59:46Z +14447 2005-08-21T12:12:05Z 1889 584 2005-08-27T14:47:05Z 2 2020-02-15T06:59:46Z +14448 2005-08-21T12:13:10Z 1937 263 2005-08-30T08:46:10Z 1 2020-02-15T06:59:46Z +14449 2005-08-21T12:13:18Z 653 529 2005-08-27T15:41:18Z 2 2020-02-15T06:59:46Z +14450 2005-08-21T12:21:25Z 1194 48 2005-08-26T14:35:25Z 2 2020-02-15T06:59:46Z +14451 2005-08-21T12:21:44Z 3967 467 2005-08-22T15:07:44Z 2 2020-02-15T06:59:46Z +14452 2005-08-21T12:23:20Z 4231 325 2005-08-27T06:26:20Z 1 2020-02-15T06:59:46Z +14453 2005-08-21T12:33:34Z 3312 237 2005-08-27T11:10:34Z 1 2020-02-15T06:59:46Z +14454 2005-08-21T12:35:49Z 2475 150 2005-08-22T16:28:49Z 2 2020-02-15T06:59:46Z +14455 2005-08-21T12:36:11Z 3442 68 2005-08-27T08:12:11Z 2 2020-02-15T06:59:46Z +14456 2005-08-21T12:38:09Z 2520 125 2005-08-26T08:29:09Z 1 2020-02-15T06:59:46Z +14457 2005-08-21T12:47:38Z 4288 340 2005-08-25T13:07:38Z 1 2020-02-15T06:59:46Z +14458 2005-08-21T12:47:53Z 1769 256 2005-08-30T17:09:53Z 2 2020-02-15T06:59:46Z +14459 2005-08-21T12:48:08Z 1532 98 2005-08-27T10:50:08Z 2 2020-02-15T06:59:46Z +14460 2005-08-21T12:48:48Z 4137 120 2005-08-30T16:34:48Z 2 2020-02-15T06:59:46Z +14461 2005-08-21T12:50:33Z 371 42 2005-08-30T13:35:33Z 1 2020-02-15T06:59:46Z +14462 2005-08-21T12:50:57Z 2201 96 2005-08-27T10:42:57Z 2 2020-02-15T06:59:46Z +14463 2005-08-21T12:51:49Z 1403 365 2005-08-29T12:17:49Z 1 2020-02-15T06:59:46Z +14464 2005-08-21T12:52:54Z 2310 121 2005-08-25T16:42:54Z 1 2020-02-15T06:59:46Z +14465 2005-08-21T12:54:22Z 4206 262 2005-08-28T10:46:22Z 2 2020-02-15T06:59:46Z +14466 2005-08-21T13:03:13Z 923 442 2005-08-22T15:19:13Z 2 2020-02-15T06:59:46Z +14467 2005-08-21T13:03:33Z 1498 522 2005-08-28T15:28:33Z 1 2020-02-15T06:59:46Z +14468 2005-08-21T13:07:10Z 4168 224 2005-08-30T19:05:10Z 2 2020-02-15T06:59:46Z +14469 2005-08-21T13:07:24Z 1957 554 2005-08-24T10:37:24Z 1 2020-02-15T06:59:46Z +14470 2005-08-21T13:09:41Z 3899 379 2005-08-23T10:20:41Z 2 2020-02-15T06:59:46Z +14471 2005-08-21T13:10:40Z 1254 395 2005-08-26T16:49:40Z 1 2020-02-15T06:59:46Z +14472 2005-08-21T13:13:57Z 4097 184 2005-08-23T14:04:57Z 2 2020-02-15T06:59:46Z +14473 2005-08-21T13:19:03Z 2747 298 2005-08-23T15:12:03Z 1 2020-02-15T06:59:46Z +14474 2005-08-21T13:22:48Z 2632 294 2005-08-27T14:13:48Z 2 2020-02-15T06:59:46Z +14475 2005-08-21T13:24:32Z 3164 2 2005-08-27T08:59:32Z 2 2020-02-15T06:59:46Z +14476 2005-08-21T13:31:07Z 2821 101 2005-08-23T17:06:07Z 1 2020-02-15T06:59:46Z +14477 2005-08-21T13:32:38Z 1564 126 2005-08-25T18:02:38Z 2 2020-02-15T06:59:46Z +14478 2005-08-21T13:33:28Z 2990 231 2005-08-25T13:33:28Z 2 2020-02-15T06:59:46Z +14479 2005-08-21T13:35:54Z 2235 324 2005-08-29T12:12:54Z 2 2020-02-15T06:59:46Z +14480 2005-08-21T13:36:40Z 229 411 2005-08-26T08:39:40Z 1 2020-02-15T06:59:46Z +14481 2005-08-21T13:41:14Z 4099 367 2005-08-30T07:53:14Z 2 2020-02-15T06:59:46Z +14482 2005-08-21T13:42:45Z 2765 23 2005-08-27T11:55:45Z 1 2020-02-15T06:59:46Z +14483 2005-08-21T13:43:59Z 37 275 2005-08-28T16:38:59Z 2 2020-02-15T06:59:46Z +14484 2005-08-21T13:47:29Z 3714 418 2005-08-23T18:25:29Z 1 2020-02-15T06:59:46Z +14485 2005-08-21T13:52:07Z 1637 241 2005-08-30T13:06:07Z 2 2020-02-15T06:59:46Z +14486 2005-08-21T13:52:54Z 3119 138 2005-08-23T07:58:54Z 1 2020-02-15T06:59:46Z +14487 2005-08-21T13:53:33Z 2578 526 2005-08-29T19:32:33Z 1 2020-02-15T06:59:46Z +14488 2006-02-14T15:16:03Z 4202 75 2 2020-02-15T06:59:46Z +14489 2005-08-21T13:53:59Z 2312 9 2005-08-30T15:45:59Z 2 2020-02-15T06:59:46Z +14490 2005-08-21T13:54:15Z 1771 205 2005-08-28T19:08:15Z 2 2020-02-15T06:59:46Z +14491 2005-08-21T13:55:39Z 2072 226 2005-08-29T17:51:39Z 1 2020-02-15T06:59:46Z +14492 2005-08-21T13:59:08Z 1591 266 2005-08-23T11:09:08Z 1 2020-02-15T06:59:46Z +14493 2005-08-21T14:01:44Z 2590 389 2005-08-28T17:20:44Z 1 2020-02-15T06:59:46Z +14494 2005-08-21T14:02:50Z 169 5 2005-08-22T16:45:50Z 2 2020-02-15T06:59:46Z +14495 2005-08-21T14:04:39Z 3215 429 2005-08-22T16:53:39Z 2 2020-02-15T06:59:46Z +14496 2005-08-21T14:07:35Z 2185 223 2005-08-24T12:31:35Z 1 2020-02-15T06:59:46Z +14497 2005-08-21T14:09:47Z 3240 254 2005-08-22T11:10:47Z 2 2020-02-15T06:59:46Z +14498 2005-08-21T14:10:44Z 3971 544 2005-08-23T08:29:44Z 1 2020-02-15T06:59:46Z +14499 2005-08-21T14:11:19Z 4109 292 2005-08-23T16:10:19Z 2 2020-02-15T06:59:46Z +14500 2005-08-21T14:11:30Z 2024 451 2005-08-27T12:19:30Z 1 2020-02-15T06:59:46Z +14501 2005-08-21T14:14:38Z 3588 576 2005-08-25T17:58:38Z 1 2020-02-15T06:59:46Z +14502 2005-08-21T14:22:28Z 2986 378 2005-08-23T10:40:28Z 1 2020-02-15T06:59:46Z +14503 2006-02-14T15:16:03Z 2144 188 1 2020-02-15T06:59:46Z +14504 2005-08-21T14:23:01Z 4536 312 2005-08-27T13:56:01Z 1 2020-02-15T06:59:46Z +14505 2005-08-21T14:26:28Z 2172 203 2005-08-29T17:34:28Z 1 2020-02-15T06:59:46Z +14506 2005-08-21T14:32:27Z 4493 537 2005-08-24T19:02:27Z 2 2020-02-15T06:59:46Z +14507 2005-08-21T14:32:45Z 1969 175 2005-08-28T09:50:45Z 2 2020-02-15T06:59:46Z +14508 2005-08-21T14:33:58Z 703 396 2005-08-27T10:45:58Z 2 2020-02-15T06:59:46Z +14509 2005-08-21T14:39:58Z 541 520 2005-08-26T13:19:58Z 1 2020-02-15T06:59:46Z +14510 2005-08-21T14:44:41Z 1868 547 2005-08-30T20:19:41Z 1 2020-02-15T06:59:46Z +14511 2005-08-21T14:45:34Z 4452 16 2005-08-28T10:36:34Z 2 2020-02-15T06:59:46Z +14512 2005-08-21T14:47:09Z 579 51 2005-08-24T18:10:09Z 2 2020-02-15T06:59:46Z +14513 2005-08-21T14:51:35Z 4265 185 2005-08-24T13:24:35Z 2 2020-02-15T06:59:46Z +14514 2005-08-21T14:51:52Z 1259 295 2005-08-30T10:40:52Z 2 2020-02-15T06:59:46Z +14515 2005-08-21T14:52:14Z 2215 242 2005-08-27T10:27:14Z 1 2020-02-15T06:59:46Z +14516 2006-02-14T15:16:03Z 713 457 2 2020-02-15T06:59:46Z +14517 2005-08-21T14:57:03Z 3568 311 2005-08-24T13:52:03Z 2 2020-02-15T06:59:46Z +14518 2005-08-21T14:58:58Z 2734 82 2005-08-24T13:19:58Z 2 2020-02-15T06:59:46Z +14519 2005-08-21T14:59:29Z 1541 403 2005-08-22T11:48:29Z 2 2020-02-15T06:59:46Z +14520 2005-08-21T15:00:49Z 4533 150 2005-08-30T19:04:49Z 1 2020-02-15T06:59:46Z +14521 2005-08-21T15:01:32Z 1538 200 2005-08-28T19:12:32Z 1 2020-02-15T06:59:46Z +14522 2005-08-21T15:01:34Z 2101 535 2005-08-25T16:37:34Z 1 2020-02-15T06:59:46Z +14523 2005-08-21T15:03:45Z 345 433 2005-08-22T18:06:45Z 2 2020-02-15T06:59:46Z +14524 2005-08-21T15:05:27Z 4409 374 2005-08-29T12:07:27Z 2 2020-02-15T06:59:46Z +14525 2005-08-21T15:06:49Z 3020 420 2005-08-22T16:30:49Z 1 2020-02-15T06:59:46Z +14526 2006-02-14T15:16:03Z 1799 534 1 2020-02-15T06:59:46Z +14527 2005-08-21T15:07:42Z 3496 232 2005-08-23T12:31:42Z 1 2020-02-15T06:59:46Z +14528 2005-08-21T15:08:05Z 4305 46 2005-08-26T15:58:05Z 2 2020-02-15T06:59:46Z +14529 2005-08-21T15:08:31Z 1774 380 2005-08-29T17:15:31Z 1 2020-02-15T06:59:46Z +14530 2005-08-21T15:10:50Z 1905 77 2005-08-26T09:20:50Z 2 2020-02-15T06:59:46Z +14531 2006-02-14T15:16:03Z 4296 568 2 2020-02-15T06:59:46Z +14532 2005-08-21T15:15:03Z 2057 37 2005-08-25T17:41:03Z 2 2020-02-15T06:59:46Z +14533 2005-08-21T15:15:19Z 2202 586 2005-08-26T12:47:19Z 1 2020-02-15T06:59:46Z +14534 2005-08-21T15:16:29Z 2514 56 2005-08-26T16:18:29Z 1 2020-02-15T06:59:46Z +14535 2005-08-21T15:22:37Z 530 412 2005-08-29T19:23:37Z 2 2020-02-15T06:59:46Z +14536 2005-08-21T15:22:50Z 2615 48 2005-08-27T17:03:50Z 1 2020-02-15T06:59:46Z +14537 2005-08-21T15:24:24Z 3755 405 2005-08-23T17:14:24Z 2 2020-02-15T06:59:46Z +14538 2005-08-21T15:28:15Z 3348 471 2005-08-22T19:55:15Z 2 2020-02-15T06:59:46Z +14539 2005-08-21T15:29:47Z 3340 41 2005-08-28T19:01:47Z 1 2020-02-15T06:59:46Z +14540 2005-08-21T15:34:23Z 2362 28 2005-08-27T11:51:23Z 2 2020-02-15T06:59:46Z +14541 2005-08-21T15:34:32Z 1275 576 2005-08-25T13:18:32Z 1 2020-02-15T06:59:46Z +14542 2005-08-21T15:36:34Z 1247 101 2005-08-27T20:24:34Z 2 2020-02-15T06:59:46Z +14543 2005-08-21T15:39:01Z 709 579 2005-08-28T09:47:01Z 1 2020-02-15T06:59:46Z +14544 2005-08-21T15:41:01Z 2445 589 2005-08-24T15:20:01Z 1 2020-02-15T06:59:46Z +14545 2005-08-21T15:44:23Z 2459 13 2005-08-29T20:09:23Z 2 2020-02-15T06:59:46Z +14546 2005-08-21T15:50:50Z 1515 466 2005-08-23T11:37:50Z 2 2020-02-15T06:59:46Z +14547 2005-08-21T15:51:38Z 1172 265 2005-08-26T15:35:38Z 1 2020-02-15T06:59:46Z +14548 2005-08-21T15:53:52Z 226 299 2005-08-25T15:39:52Z 2 2020-02-15T06:59:46Z +14549 2005-08-21T15:54:21Z 4117 155 2005-08-22T17:22:21Z 1 2020-02-15T06:59:46Z +14550 2005-08-21T15:56:39Z 2814 473 2005-08-23T21:40:39Z 1 2020-02-15T06:59:46Z +14551 2005-08-21T15:57:25Z 496 521 2005-08-28T11:10:25Z 2 2020-02-15T06:59:46Z +14552 2005-08-21T15:59:27Z 1991 477 2005-08-27T11:46:27Z 1 2020-02-15T06:59:46Z +14553 2005-08-21T15:59:40Z 3160 434 2005-08-23T11:54:40Z 2 2020-02-15T06:59:46Z +14554 2005-08-21T16:03:01Z 31 38 2005-08-26T13:09:01Z 2 2020-02-15T06:59:46Z +14555 2005-08-21T16:03:02Z 1926 440 2005-08-23T14:18:02Z 1 2020-02-15T06:59:46Z +14556 2005-08-21T16:03:27Z 475 265 2005-08-29T15:49:27Z 1 2020-02-15T06:59:46Z +14557 2005-08-21T16:05:11Z 483 490 2005-08-27T16:37:11Z 1 2020-02-15T06:59:46Z +14558 2005-08-21T16:10:50Z 3958 273 2005-08-28T16:36:50Z 2 2020-02-15T06:59:46Z +14559 2005-08-21T16:11:35Z 3842 433 2005-08-30T15:26:35Z 1 2020-02-15T06:59:46Z +14560 2005-08-21T16:13:47Z 1616 579 2005-08-26T15:19:47Z 1 2020-02-15T06:59:46Z +14561 2005-08-21T16:20:43Z 2498 443 2005-08-27T16:48:43Z 1 2020-02-15T06:59:46Z +14562 2005-08-21T16:22:59Z 3501 107 2005-08-22T21:15:59Z 1 2020-02-15T06:59:46Z +14563 2005-08-21T16:23:53Z 3984 212 2005-08-25T11:30:53Z 2 2020-02-15T06:59:46Z +14564 2005-08-21T16:24:43Z 3250 22 2005-08-26T16:58:43Z 1 2020-02-15T06:59:46Z +14565 2005-08-21T16:24:45Z 4160 250 2005-08-25T14:42:45Z 1 2020-02-15T06:59:46Z +14566 2005-08-21T16:25:05Z 84 87 2005-08-26T10:31:05Z 1 2020-02-15T06:59:46Z +14567 2005-08-21T16:27:25Z 3805 214 2005-08-26T10:47:25Z 1 2020-02-15T06:59:46Z +14568 2005-08-21T16:30:48Z 3331 582 2005-08-22T13:49:48Z 1 2020-02-15T06:59:46Z +14569 2005-08-21T16:31:22Z 884 15 2005-08-25T21:27:22Z 2 2020-02-15T06:59:46Z +14570 2005-08-21T16:32:32Z 955 32 2005-08-30T12:03:32Z 2 2020-02-15T06:59:46Z +14571 2005-08-21T16:40:26Z 2218 296 2005-08-29T17:10:26Z 1 2020-02-15T06:59:46Z +14572 2005-08-21T16:44:31Z 1397 538 2005-08-26T16:35:31Z 2 2020-02-15T06:59:46Z +14573 2005-08-21T16:44:32Z 2423 240 2005-08-23T14:01:32Z 2 2020-02-15T06:59:46Z +14574 2005-08-21T16:50:34Z 1611 62 2005-08-26T14:24:34Z 2 2020-02-15T06:59:46Z +14575 2005-08-21T16:51:34Z 3752 159 2005-08-30T20:13:34Z 2 2020-02-15T06:59:46Z +14576 2005-08-21T16:52:03Z 1189 45 2005-08-28T19:43:03Z 2 2020-02-15T06:59:46Z +14577 2005-08-21T16:52:29Z 1965 126 2005-08-26T12:30:29Z 1 2020-02-15T06:59:46Z +14578 2005-08-21T16:53:38Z 3141 389 2005-08-28T20:36:38Z 2 2020-02-15T06:59:46Z +14579 2005-08-21T16:54:47Z 1205 260 2005-08-28T12:35:47Z 1 2020-02-15T06:59:46Z +14580 2005-08-21T16:56:39Z 1440 448 2005-08-28T15:25:39Z 1 2020-02-15T06:59:46Z +14581 2005-08-21T17:07:08Z 751 243 2005-08-26T16:02:08Z 1 2020-02-15T06:59:46Z +14582 2005-08-21T17:08:33Z 1004 438 2005-08-29T18:04:33Z 2 2020-02-15T06:59:46Z +14583 2005-08-21T17:11:47Z 1203 455 2005-08-24T16:16:47Z 2 2020-02-15T06:59:46Z +14584 2005-08-21T17:15:33Z 2617 481 2005-08-24T20:24:33Z 2 2020-02-15T06:59:46Z +14585 2005-08-21T17:18:33Z 82 30 2005-08-26T11:36:33Z 1 2020-02-15T06:59:46Z +14586 2005-08-21T17:19:09Z 3094 182 2005-08-26T17:00:09Z 1 2020-02-15T06:59:46Z +14587 2005-08-21T17:20:55Z 2329 250 2005-08-26T17:17:55Z 1 2020-02-15T06:59:46Z +14588 2005-08-21T17:25:53Z 1350 219 2005-08-28T21:47:53Z 2 2020-02-15T06:59:46Z +14589 2005-08-21T17:28:55Z 2810 179 2005-08-22T23:06:55Z 1 2020-02-15T06:59:46Z +14590 2005-08-21T17:29:10Z 2633 526 2005-08-28T20:15:10Z 1 2020-02-15T06:59:46Z +14591 2005-08-21T17:30:09Z 3410 538 2005-08-24T12:27:09Z 1 2020-02-15T06:59:46Z +14592 2005-08-21T17:30:17Z 2681 563 2005-08-22T20:06:17Z 2 2020-02-15T06:59:46Z +14593 2005-08-21T17:33:18Z 1399 564 2005-08-24T22:11:18Z 1 2020-02-15T06:59:46Z +14594 2005-08-21T17:34:24Z 2978 62 2005-08-26T22:04:24Z 2 2020-02-15T06:59:46Z +14595 2005-08-21T17:35:17Z 1879 118 2005-08-27T12:11:17Z 1 2020-02-15T06:59:46Z +14596 2005-08-21T17:38:37Z 2010 472 2005-08-30T20:28:37Z 1 2020-02-15T06:59:46Z +14597 2005-08-21T17:39:41Z 1160 472 2005-08-25T14:07:41Z 1 2020-02-15T06:59:46Z +14598 2005-08-21T17:40:05Z 1113 359 2005-08-29T18:16:05Z 2 2020-02-15T06:59:46Z +14599 2005-08-21T17:43:42Z 4575 599 2005-08-22T18:53:42Z 1 2020-02-15T06:59:46Z +14600 2005-08-21T17:45:21Z 3532 255 2005-08-28T19:03:21Z 1 2020-02-15T06:59:46Z +14601 2005-08-21T17:45:52Z 548 406 2005-08-29T15:10:52Z 1 2020-02-15T06:59:46Z +14602 2005-08-21T17:48:49Z 3771 370 2005-08-28T21:38:49Z 1 2020-02-15T06:59:46Z +14603 2005-08-21T17:51:06Z 94 26 2005-08-28T15:36:06Z 1 2020-02-15T06:59:46Z +14604 2006-02-14T15:16:03Z 1024 585 2 2020-02-15T06:59:46Z +14605 2005-08-21T17:56:06Z 476 394 2005-08-24T18:35:06Z 1 2020-02-15T06:59:46Z +14606 2006-02-14T15:16:03Z 2291 592 2 2020-02-15T06:59:46Z +14607 2005-08-21T17:56:50Z 4518 417 2005-08-22T17:44:50Z 2 2020-02-15T06:59:46Z +14608 2005-08-21T17:57:22Z 3321 90 2005-08-25T13:20:22Z 1 2020-02-15T06:59:46Z +14609 2005-08-21T17:57:26Z 1206 551 2005-08-25T14:04:26Z 2 2020-02-15T06:59:46Z +14610 2005-08-21T17:59:09Z 1894 260 2005-08-29T21:36:09Z 2 2020-02-15T06:59:46Z +14611 2005-08-21T18:01:41Z 4078 443 2005-08-26T12:34:41Z 1 2020-02-15T06:59:46Z +14612 2005-08-21T18:03:15Z 4105 445 2005-08-27T13:39:15Z 1 2020-02-15T06:59:46Z +14613 2005-08-21T18:03:20Z 3841 20 2005-08-26T19:46:20Z 1 2020-02-15T06:59:46Z +14614 2005-08-21T18:03:51Z 3053 468 2005-08-30T13:37:51Z 1 2020-02-15T06:59:46Z +14615 2005-08-21T18:06:32Z 2332 171 2005-08-30T13:19:32Z 2 2020-02-15T06:59:46Z +14616 2006-02-14T15:16:03Z 4537 532 1 2020-02-15T06:59:46Z +14617 2005-08-21T18:07:40Z 3562 51 2005-08-24T23:48:40Z 2 2020-02-15T06:59:46Z +14618 2005-08-21T18:09:51Z 4490 270 2005-08-28T22:47:51Z 1 2020-02-15T06:59:46Z +14619 2005-08-21T18:10:03Z 1589 338 2005-08-23T13:40:03Z 2 2020-02-15T06:59:46Z +14620 2005-08-21T18:10:43Z 3272 78 2005-08-22T15:19:43Z 2 2020-02-15T06:59:46Z +14621 2005-08-21T18:17:59Z 3622 344 2005-08-23T14:16:59Z 1 2020-02-15T06:59:46Z +14622 2005-08-21T18:25:59Z 2702 559 2005-08-31T00:11:59Z 2 2020-02-15T06:59:46Z +14623 2005-08-21T18:29:13Z 901 33 2005-08-26T20:48:13Z 2 2020-02-15T06:59:46Z +14624 2005-08-21T18:32:42Z 4 344 2005-08-23T21:09:42Z 1 2020-02-15T06:59:46Z +14625 2005-08-21T18:34:21Z 2661 507 2005-08-29T21:41:21Z 1 2020-02-15T06:59:46Z +14626 2005-08-21T18:35:44Z 1038 554 2005-08-25T23:54:44Z 2 2020-02-15T06:59:46Z +14627 2005-08-21T18:35:54Z 2470 49 2005-08-30T21:17:54Z 1 2020-02-15T06:59:46Z +14628 2005-08-21T18:37:24Z 3636 331 2005-08-27T20:25:24Z 2 2020-02-15T06:59:46Z +14629 2005-08-21T18:39:52Z 761 148 2005-08-25T19:14:52Z 2 2020-02-15T06:59:46Z +14630 2005-08-21T18:43:44Z 4049 294 2005-08-29T17:08:44Z 2 2020-02-15T06:59:46Z +14631 2005-08-21T18:47:49Z 782 209 2005-08-28T16:54:49Z 1 2020-02-15T06:59:46Z +14632 2005-08-21T18:48:06Z 2807 38 2005-08-25T00:33:06Z 2 2020-02-15T06:59:46Z +14633 2005-08-21T18:51:10Z 2137 551 2005-08-25T13:07:10Z 1 2020-02-15T06:59:46Z +14634 2005-08-21T18:51:28Z 486 494 2005-08-29T19:30:28Z 2 2020-02-15T06:59:46Z +14635 2005-08-21T18:51:43Z 2171 108 2005-08-27T16:30:43Z 2 2020-02-15T06:59:46Z +14636 2005-08-21T18:59:17Z 1671 339 2005-08-23T13:19:17Z 2 2020-02-15T06:59:46Z +14637 2005-08-21T19:01:00Z 1846 76 2005-08-26T23:03:00Z 2 2020-02-15T06:59:46Z +14638 2005-08-21T19:01:36Z 3583 216 2005-08-22T15:09:36Z 2 2020-02-15T06:59:46Z +14639 2005-08-21T19:01:39Z 3510 210 2005-08-26T14:08:39Z 1 2020-02-15T06:59:46Z +14640 2005-08-21T19:03:19Z 1880 253 2005-08-27T00:37:19Z 2 2020-02-15T06:59:46Z +14641 2005-08-21T19:05:23Z 2205 147 2005-08-22T22:30:23Z 2 2020-02-15T06:59:46Z +14642 2005-08-21T19:09:40Z 1280 81 2005-08-30T13:25:40Z 2 2020-02-15T06:59:46Z +14643 2005-08-21T19:11:58Z 798 119 2005-08-29T19:52:58Z 1 2020-02-15T06:59:46Z +14644 2005-08-21T19:12:12Z 3905 453 2005-08-29T17:08:12Z 1 2020-02-15T06:59:46Z +14645 2005-08-21T19:12:47Z 2369 334 2005-08-25T21:42:47Z 1 2020-02-15T06:59:46Z +14646 2005-08-21T19:14:48Z 948 186 2005-08-23T17:15:48Z 1 2020-02-15T06:59:46Z +14647 2005-08-21T19:15:33Z 3854 36 2005-08-30T18:58:33Z 2 2020-02-15T06:59:46Z +14648 2005-08-21T19:18:01Z 2250 284 2005-08-25T14:59:01Z 2 2020-02-15T06:59:46Z +14649 2005-08-21T19:19:21Z 4074 43 2005-08-22T17:23:21Z 1 2020-02-15T06:59:46Z +14650 2005-08-21T19:24:51Z 1274 190 2005-08-25T13:58:51Z 2 2020-02-15T06:59:46Z +14651 2005-08-21T19:31:09Z 4037 544 2005-08-28T14:26:09Z 2 2020-02-15T06:59:46Z +14652 2005-08-21T19:32:05Z 4163 453 2005-08-23T23:33:05Z 2 2020-02-15T06:59:46Z +14653 2005-08-21T19:35:59Z 491 593 2005-08-24T15:31:59Z 1 2020-02-15T06:59:46Z +14654 2005-08-21T19:36:59Z 687 173 2005-08-23T22:03:59Z 2 2020-02-15T06:59:46Z +14655 2005-08-21T19:37:10Z 785 253 2005-08-22T15:43:10Z 1 2020-02-15T06:59:46Z +14656 2005-08-21T19:39:28Z 4205 201 2005-08-24T01:36:28Z 2 2020-02-15T06:59:46Z +14657 2005-08-21T19:39:43Z 477 244 2005-08-26T22:39:43Z 2 2020-02-15T06:59:46Z +14658 2005-08-21T19:41:50Z 1465 473 2005-08-25T16:11:50Z 1 2020-02-15T06:59:46Z +14659 2005-08-21T19:42:36Z 928 119 2005-08-26T14:06:36Z 1 2020-02-15T06:59:46Z +14660 2005-08-21T19:43:21Z 3433 452 2005-08-22T20:42:21Z 1 2020-02-15T06:59:46Z +14661 2005-08-21T19:44:21Z 745 469 2005-08-27T14:35:21Z 1 2020-02-15T06:59:46Z +14662 2005-08-21T19:45:27Z 2969 403 2005-08-23T14:44:27Z 2 2020-02-15T06:59:46Z +14663 2005-08-21T19:47:55Z 2351 150 2005-08-27T17:36:55Z 2 2020-02-15T06:59:46Z +14664 2005-08-21T19:48:47Z 4377 153 2005-08-27T16:47:47Z 1 2020-02-15T06:59:46Z +14665 2005-08-21T19:49:46Z 2896 58 2005-08-30T18:00:46Z 1 2020-02-15T06:59:46Z +14666 2005-08-21T19:51:09Z 2560 122 2005-08-30T22:42:09Z 2 2020-02-15T06:59:46Z +14667 2005-08-21T19:51:11Z 2608 55 2005-08-23T17:37:11Z 1 2020-02-15T06:59:46Z +14668 2005-08-21T19:51:30Z 1450 152 2005-08-29T19:38:30Z 2 2020-02-15T06:59:46Z +14669 2005-08-21T19:54:06Z 3154 317 2005-08-25T23:12:06Z 1 2020-02-15T06:59:46Z +14670 2005-08-21T19:54:11Z 4324 537 2005-08-27T21:42:11Z 2 2020-02-15T06:59:46Z +14671 2005-08-21T19:59:30Z 2622 53 2005-08-22T19:39:30Z 1 2020-02-15T06:59:46Z +14672 2005-08-21T19:59:33Z 4144 325 2005-08-30T19:40:33Z 1 2020-02-15T06:59:46Z +14673 2005-08-21T20:01:18Z 1827 445 2005-08-25T18:55:18Z 1 2020-02-15T06:59:46Z +14674 2005-08-21T20:01:34Z 572 300 2005-08-27T18:33:34Z 1 2020-02-15T06:59:46Z +14675 2005-08-21T20:01:51Z 328 170 2005-08-26T14:30:51Z 2 2020-02-15T06:59:46Z +14676 2005-08-21T20:02:18Z 877 49 2005-08-26T21:55:18Z 1 2020-02-15T06:59:46Z +14677 2005-08-21T20:12:30Z 4411 26 2005-08-28T15:11:30Z 1 2020-02-15T06:59:46Z +14678 2005-08-21T20:12:43Z 1911 383 2005-08-31T02:11:43Z 2 2020-02-15T06:59:46Z +14679 2005-08-21T20:14:58Z 1520 193 2005-08-23T23:39:58Z 1 2020-02-15T06:59:46Z +14680 2005-08-21T20:19:52Z 4469 524 2005-08-28T17:10:52Z 1 2020-02-15T06:59:46Z +14681 2005-08-21T20:25:13Z 1083 212 2005-08-30T19:48:13Z 1 2020-02-15T06:59:46Z +14682 2005-08-21T20:25:57Z 2974 314 2005-08-28T00:42:57Z 2 2020-02-15T06:59:46Z +14683 2005-08-21T20:27:44Z 3850 342 2005-08-29T16:54:44Z 1 2020-02-15T06:59:46Z +14684 2005-08-21T20:28:26Z 3593 369 2005-08-28T19:01:26Z 2 2020-02-15T06:59:46Z +14685 2005-08-21T20:31:25Z 1320 69 2005-08-22T21:02:25Z 1 2020-02-15T06:59:46Z +14686 2005-08-21T20:32:08Z 814 34 2005-08-26T18:07:08Z 1 2020-02-15T06:59:46Z +14687 2005-08-21T20:32:16Z 306 550 2005-08-26T16:17:16Z 2 2020-02-15T06:59:46Z +14688 2005-08-21T20:32:37Z 2573 219 2005-08-27T00:06:37Z 2 2020-02-15T06:59:46Z +14689 2005-08-21T20:33:00Z 1124 463 2005-08-22T18:10:00Z 1 2020-02-15T06:59:46Z +14690 2005-08-21T20:42:25Z 3649 456 2005-08-29T18:42:25Z 2 2020-02-15T06:59:46Z +14691 2005-08-21T20:42:29Z 2131 404 2005-08-24T01:22:29Z 1 2020-02-15T06:59:46Z +14692 2005-08-21T20:43:21Z 1908 192 2005-08-28T19:02:21Z 1 2020-02-15T06:59:46Z +14693 2005-08-21T20:44:19Z 3454 269 2005-08-29T00:37:19Z 2 2020-02-15T06:59:46Z +14694 2005-08-21T20:46:42Z 2767 363 2005-08-23T16:18:42Z 1 2020-02-15T06:59:46Z +14695 2005-08-21T20:46:47Z 412 206 2005-08-22T22:25:47Z 2 2020-02-15T06:59:46Z +14696 2005-08-21T20:48:05Z 3776 435 2005-08-25T14:55:05Z 1 2020-02-15T06:59:46Z +14697 2005-08-21T20:49:21Z 48 409 2005-08-26T01:39:21Z 2 2020-02-15T06:59:46Z +14698 2005-08-21T20:49:58Z 4255 196 2005-08-29T20:13:58Z 2 2020-02-15T06:59:46Z +14699 2005-08-21T20:50:48Z 1427 3 2005-08-29T18:08:48Z 2 2020-02-15T06:59:46Z +14700 2005-08-21T20:53:40Z 3446 360 2005-08-23T22:01:40Z 1 2020-02-15T06:59:46Z +14701 2005-08-21T20:54:32Z 3034 34 2005-08-30T16:46:32Z 1 2020-02-15T06:59:46Z +14702 2005-08-21T21:00:03Z 4096 345 2005-08-30T16:59:03Z 1 2020-02-15T06:59:46Z +14703 2005-08-21T21:01:19Z 4329 29 2005-08-22T15:13:19Z 2 2020-02-15T06:59:46Z +14704 2005-08-21T21:02:22Z 4062 248 2005-08-27T23:10:22Z 2 2020-02-15T06:59:46Z +14705 2005-08-21T21:02:55Z 2493 243 2005-08-25T20:20:55Z 2 2020-02-15T06:59:46Z +14706 2005-08-21T21:04:42Z 4494 589 2005-08-22T19:55:42Z 2 2020-02-15T06:59:46Z +14707 2005-08-21T21:06:29Z 2916 530 2005-08-30T23:37:29Z 1 2020-02-15T06:59:46Z +14708 2005-08-21T21:07:23Z 2828 226 2005-08-28T15:47:23Z 1 2020-02-15T06:59:46Z +14709 2005-08-21T21:07:59Z 1856 300 2005-08-31T02:19:59Z 1 2020-02-15T06:59:46Z +14710 2005-08-21T21:15:23Z 1922 587 2005-08-30T19:45:23Z 1 2020-02-15T06:59:46Z +14711 2005-08-21T21:22:07Z 1973 448 2005-08-30T16:24:07Z 2 2020-02-15T06:59:46Z +14712 2005-08-21T21:22:56Z 1198 226 2005-08-25T01:53:56Z 1 2020-02-15T06:59:46Z +14713 2005-08-21T21:27:24Z 3350 148 2005-08-23T20:26:24Z 1 2020-02-15T06:59:46Z +14714 2005-08-21T21:27:43Z 1 279 2005-08-30T22:26:43Z 1 2020-02-15T06:59:46Z +14715 2005-08-21T21:28:18Z 4453 287 2005-08-26T22:13:18Z 2 2020-02-15T06:59:46Z +14716 2005-08-21T21:29:55Z 2285 78 2005-08-23T18:34:55Z 2 2020-02-15T06:59:46Z +14717 2005-08-21T21:30:39Z 3839 366 2005-08-26T16:58:39Z 2 2020-02-15T06:59:46Z +14718 2005-08-21T21:39:25Z 3618 340 2005-08-26T22:07:25Z 2 2020-02-15T06:59:46Z +14719 2005-08-21T21:41:57Z 4091 599 2005-08-25T20:37:57Z 1 2020-02-15T06:59:46Z +14720 2005-08-21T21:43:53Z 3617 395 2005-08-25T18:21:53Z 1 2020-02-15T06:59:46Z +14721 2005-08-21T21:50:51Z 4257 349 2005-08-30T19:21:51Z 1 2020-02-15T06:59:46Z +14722 2005-08-21T21:50:53Z 2930 236 2005-08-30T03:13:53Z 1 2020-02-15T06:59:46Z +14723 2005-08-21T21:52:32Z 2755 548 2005-08-31T00:03:32Z 2 2020-02-15T06:59:46Z +14724 2005-08-21T21:53:47Z 3559 552 2005-08-23T20:14:47Z 2 2020-02-15T06:59:46Z +14725 2005-08-21T22:02:08Z 4427 403 2005-08-23T03:59:08Z 2 2020-02-15T06:59:46Z +14726 2005-08-21T22:08:52Z 4556 216 2005-08-22T18:28:52Z 1 2020-02-15T06:59:46Z +14727 2005-08-21T22:12:45Z 650 275 2005-08-25T00:46:45Z 1 2020-02-15T06:59:46Z +14728 2005-08-21T22:15:36Z 2671 474 2005-08-25T17:14:36Z 2 2020-02-15T06:59:46Z +14729 2005-08-21T22:16:57Z 2483 289 2005-08-27T21:32:57Z 1 2020-02-15T06:59:46Z +14730 2005-08-21T22:21:11Z 2949 439 2005-08-30T03:02:11Z 1 2020-02-15T06:59:46Z +14731 2005-08-21T22:21:49Z 1351 154 2005-08-24T16:27:49Z 1 2020-02-15T06:59:46Z +14732 2005-08-21T22:22:29Z 1915 482 2005-08-23T18:34:29Z 1 2020-02-15T06:59:46Z +14733 2005-08-21T22:22:33Z 398 408 2005-08-26T21:01:33Z 1 2020-02-15T06:59:46Z +14734 2006-02-14T15:16:03Z 1369 448 2 2020-02-15T06:59:46Z +14735 2005-08-21T22:25:09Z 950 35 2005-08-23T21:16:09Z 1 2020-02-15T06:59:46Z +14736 2005-08-21T22:25:53Z 207 139 2005-08-25T19:01:53Z 2 2020-02-15T06:59:46Z +14737 2005-08-21T22:27:11Z 1842 124 2005-08-25T18:51:11Z 2 2020-02-15T06:59:46Z +14738 2005-08-21T22:29:13Z 3315 521 2005-08-29T21:19:13Z 1 2020-02-15T06:59:46Z +14739 2005-08-21T22:33:22Z 4026 226 2005-08-22T19:45:22Z 1 2020-02-15T06:59:46Z +14740 2005-08-21T22:35:33Z 1717 333 2005-08-26T17:49:33Z 1 2020-02-15T06:59:46Z +14741 2006-02-14T15:16:03Z 612 60 2 2020-02-15T06:59:46Z +14742 2005-08-21T22:39:01Z 2988 421 2005-08-26T00:17:01Z 1 2020-02-15T06:59:46Z +14743 2005-08-21T22:41:56Z 4570 2 2005-08-29T00:18:56Z 1 2020-02-15T06:59:46Z +14744 2005-08-21T22:45:21Z 800 213 2005-08-29T23:57:21Z 1 2020-02-15T06:59:46Z +14745 2005-08-21T22:53:01Z 4399 277 2005-08-23T23:22:01Z 1 2020-02-15T06:59:46Z +14746 2005-08-21T22:54:02Z 3197 284 2005-08-27T17:04:02Z 2 2020-02-15T06:59:46Z +14747 2005-08-21T23:00:02Z 201 153 2005-08-26T18:58:02Z 2 2020-02-15T06:59:46Z +14748 2005-08-21T23:02:02Z 1697 81 2005-08-28T05:01:02Z 2 2020-02-15T06:59:46Z +14749 2005-08-21T23:08:33Z 831 235 2005-08-29T20:46:33Z 2 2020-02-15T06:59:46Z +14750 2005-08-21T23:09:32Z 918 303 2005-08-30T00:46:32Z 2 2020-02-15T06:59:46Z +14751 2005-08-21T23:11:23Z 1156 195 2005-08-30T20:01:23Z 2 2020-02-15T06:59:46Z +14752 2005-08-21T23:11:42Z 1252 362 2005-08-28T22:12:42Z 1 2020-02-15T06:59:46Z +14753 2005-08-21T23:11:43Z 1803 155 2005-08-22T22:25:43Z 2 2020-02-15T06:59:46Z +14754 2005-08-21T23:17:26Z 2355 137 2005-08-29T18:55:26Z 2 2020-02-15T06:59:46Z +14755 2005-08-21T23:18:08Z 862 328 2005-08-27T01:06:08Z 2 2020-02-15T06:59:46Z +14756 2005-08-21T23:21:23Z 564 288 2005-08-24T01:44:23Z 1 2020-02-15T06:59:46Z +14757 2005-08-21T23:23:37Z 1154 473 2005-08-26T23:24:37Z 2 2020-02-15T06:59:46Z +14758 2005-08-21T23:24:52Z 2372 339 2005-08-27T04:25:52Z 2 2020-02-15T06:59:46Z +14759 2005-08-21T23:28:58Z 3871 362 2005-08-31T00:35:58Z 2 2020-02-15T06:59:46Z +14760 2006-02-14T15:16:03Z 1367 355 1 2020-02-15T06:59:46Z +14761 2005-08-21T23:30:28Z 2657 490 2005-08-26T03:26:28Z 1 2020-02-15T06:59:46Z +14762 2005-08-21T23:33:57Z 4249 1 2005-08-23T01:30:57Z 1 2020-02-15T06:59:46Z +14763 2005-08-21T23:34:00Z 1480 116 2005-08-31T03:58:00Z 2 2020-02-15T06:59:46Z +14764 2005-08-21T23:37:47Z 1270 529 2005-08-24T00:23:47Z 2 2020-02-15T06:59:46Z +14765 2005-08-21T23:40:28Z 2817 435 2005-08-25T04:55:28Z 2 2020-02-15T06:59:46Z +14766 2005-08-21T23:42:20Z 768 523 2005-08-26T03:46:20Z 1 2020-02-15T06:59:46Z +14767 2005-08-21T23:43:00Z 1232 69 2005-08-29T05:26:00Z 1 2020-02-15T06:59:46Z +14768 2005-08-21T23:44:53Z 3465 570 2005-08-27T20:33:53Z 1 2020-02-15T06:59:46Z +14769 2006-02-14T15:16:03Z 1800 361 1 2020-02-15T06:59:46Z +14770 2005-08-21T23:47:16Z 2977 372 2005-08-25T04:48:16Z 1 2020-02-15T06:59:46Z +14771 2005-08-21T23:50:15Z 2665 149 2005-08-28T22:55:15Z 2 2020-02-15T06:59:46Z +14772 2005-08-21T23:50:39Z 4047 411 2005-08-30T20:44:39Z 2 2020-02-15T06:59:46Z +14773 2005-08-21T23:50:57Z 2541 413 2005-08-26T04:45:57Z 2 2020-02-15T06:59:46Z +14774 2005-08-21T23:52:32Z 3185 252 2005-08-26T23:42:32Z 2 2020-02-15T06:59:46Z +14775 2005-08-21T23:53:07Z 4044 400 2005-08-22T18:07:07Z 2 2020-02-15T06:59:46Z +14776 2005-08-21T23:53:35Z 3488 15 2005-08-24T02:00:35Z 2 2020-02-15T06:59:46Z +14777 2005-08-21T23:55:50Z 237 389 2005-08-28T04:31:50Z 1 2020-02-15T06:59:46Z +14778 2005-08-21T23:56:30Z 2152 396 2005-08-26T00:07:30Z 2 2020-02-15T06:59:46Z +14779 2005-08-22T00:00:56Z 1087 279 2005-08-31T00:01:56Z 2 2020-02-15T06:59:46Z +14780 2005-08-22T00:06:33Z 3171 491 2005-08-22T22:02:33Z 2 2020-02-15T06:59:46Z +14781 2005-08-22T00:15:12Z 3458 71 2005-08-29T21:02:12Z 1 2020-02-15T06:59:46Z +14782 2005-08-22T00:17:20Z 1727 211 2005-08-23T01:24:20Z 1 2020-02-15T06:59:46Z +14783 2005-08-22T00:21:57Z 3419 332 2005-08-28T01:27:57Z 2 2020-02-15T06:59:46Z +14784 2005-08-22T00:23:13Z 441 117 2005-08-28T03:42:13Z 1 2020-02-15T06:59:46Z +14785 2005-08-22T00:24:37Z 1981 560 2005-08-25T04:15:37Z 1 2020-02-15T06:59:46Z +14786 2005-08-22T00:24:42Z 2959 370 2005-08-25T19:36:42Z 1 2020-02-15T06:59:46Z +14787 2005-08-22T00:25:59Z 2634 38 2005-08-28T22:30:59Z 2 2020-02-15T06:59:46Z +14788 2005-08-22T00:27:59Z 1917 139 2005-08-29T23:54:59Z 2 2020-02-15T06:59:46Z +14789 2005-08-22T00:29:39Z 2344 279 2005-08-25T02:25:39Z 1 2020-02-15T06:59:46Z +14790 2005-08-22T00:34:17Z 1002 397 2005-08-31T02:27:17Z 1 2020-02-15T06:59:46Z +14791 2005-08-22T00:35:55Z 1490 317 2005-08-30T20:23:55Z 1 2020-02-15T06:59:46Z +14792 2005-08-22T00:36:41Z 4436 396 2005-08-30T18:58:41Z 1 2020-02-15T06:59:46Z +14793 2005-08-22T00:37:57Z 4285 154 2005-08-29T05:44:57Z 2 2020-02-15T06:59:46Z +14794 2005-08-22T00:39:31Z 413 156 2005-08-28T20:08:31Z 2 2020-02-15T06:59:46Z +14795 2005-08-22T00:40:22Z 1695 303 2005-08-26T01:37:22Z 1 2020-02-15T06:59:46Z +14796 2005-08-22T00:40:49Z 941 441 2005-08-30T03:59:49Z 1 2020-02-15T06:59:46Z +14797 2005-08-22T00:41:24Z 1131 546 2005-08-23T18:51:24Z 1 2020-02-15T06:59:46Z +14798 2005-08-22T00:44:08Z 7 92 2005-08-27T02:18:08Z 2 2020-02-15T06:59:46Z +14799 2005-08-22T00:44:57Z 1276 454 2005-08-24T20:08:57Z 2 2020-02-15T06:59:46Z +14800 2005-08-22T00:46:18Z 3554 533 2005-08-26T01:44:18Z 2 2020-02-15T06:59:46Z +14801 2005-08-22T00:46:54Z 1677 184 2005-08-30T19:03:54Z 1 2020-02-15T06:59:46Z +14802 2005-08-22T00:48:23Z 707 505 2005-08-28T01:02:23Z 1 2020-02-15T06:59:46Z +14803 2005-08-22T00:49:10Z 2525 278 2005-08-22T23:44:10Z 2 2020-02-15T06:59:46Z +14804 2005-08-22T00:51:25Z 372 94 2005-08-26T21:15:25Z 1 2020-02-15T06:59:46Z +14805 2005-08-22T00:52:01Z 783 169 2005-08-23T03:28:01Z 2 2020-02-15T06:59:46Z +14806 2005-08-22T00:53:08Z 2049 231 2005-08-23T06:26:08Z 2 2020-02-15T06:59:46Z +14807 2005-08-22T00:57:43Z 335 90 2005-08-26T23:40:43Z 1 2020-02-15T06:59:46Z +14808 2005-08-22T00:58:35Z 1657 362 2005-08-29T20:16:35Z 2 2020-02-15T06:59:46Z +14809 2005-08-22T01:00:42Z 1077 188 2005-08-29T19:55:42Z 1 2020-02-15T06:59:46Z +14810 2005-08-22T01:08:34Z 1982 78 2005-08-25T07:00:34Z 2 2020-02-15T06:59:46Z +14811 2005-08-22T01:09:04Z 1613 53 2005-08-26T19:30:04Z 1 2020-02-15T06:59:46Z +14812 2005-08-22T01:10:32Z 4282 211 2005-08-26T05:21:32Z 1 2020-02-15T06:59:46Z +14813 2005-08-22T01:11:37Z 3364 142 2005-08-24T05:57:37Z 2 2020-02-15T06:59:46Z +14814 2005-08-22T01:12:14Z 3109 250 2005-08-27T23:24:14Z 2 2020-02-15T06:59:46Z +14815 2005-08-22T01:12:44Z 1183 314 2005-08-24T01:42:44Z 2 2020-02-15T06:59:46Z +14816 2005-08-22T01:15:51Z 4086 534 2005-08-28T04:11:51Z 1 2020-02-15T06:59:46Z +14817 2005-08-22T01:17:16Z 910 215 2005-08-27T02:43:16Z 1 2020-02-15T06:59:46Z +14818 2005-08-22T01:17:18Z 1619 580 2005-08-26T05:40:18Z 1 2020-02-15T06:59:46Z +14819 2005-08-22T01:17:19Z 2890 410 2005-08-30T05:54:19Z 1 2020-02-15T06:59:46Z +14820 2005-08-22T01:18:37Z 1409 52 2005-08-23T19:44:37Z 1 2020-02-15T06:59:46Z +14821 2005-08-22T01:20:19Z 3155 62 2005-08-29T03:06:19Z 2 2020-02-15T06:59:46Z +14822 2005-08-22T01:21:14Z 2835 52 2005-08-30T03:59:14Z 1 2020-02-15T06:59:46Z +14823 2005-08-22T01:24:42Z 680 503 2005-08-22T19:45:42Z 2 2020-02-15T06:59:46Z +14824 2005-08-22T01:27:51Z 4162 594 2005-08-23T03:24:51Z 2 2020-02-15T06:59:46Z +14825 2005-08-22T01:27:57Z 1449 1 2005-08-27T07:01:57Z 2 2020-02-15T06:59:46Z +14826 2005-08-22T01:32:14Z 4023 426 2005-08-23T03:52:14Z 2 2020-02-15T06:59:46Z +14827 2005-08-22T01:32:32Z 2267 88 2005-08-31T06:21:32Z 2 2020-02-15T06:59:46Z +14828 2005-08-22T01:34:05Z 4114 319 2005-08-27T06:27:05Z 2 2020-02-15T06:59:46Z +14829 2005-08-22T01:35:37Z 3606 546 2005-08-23T19:55:37Z 2 2020-02-15T06:59:46Z +14830 2005-08-22T01:37:19Z 637 590 2005-08-27T20:10:19Z 1 2020-02-15T06:59:46Z +14831 2005-08-22T01:40:49Z 3370 156 2005-08-23T02:47:49Z 1 2020-02-15T06:59:46Z +14832 2005-08-22T01:43:29Z 1828 494 2005-08-29T07:19:29Z 2 2020-02-15T06:59:46Z +14833 2005-08-22T01:45:18Z 1960 551 2005-08-28T21:24:18Z 1 2020-02-15T06:59:46Z +14834 2005-08-22T01:45:58Z 3105 262 2005-08-28T20:52:58Z 1 2020-02-15T06:59:46Z +14835 2005-08-22T01:49:07Z 755 404 2005-08-30T04:28:07Z 1 2020-02-15T06:59:46Z +14836 2005-08-22T01:52:26Z 4287 418 2005-08-22T23:39:26Z 1 2020-02-15T06:59:46Z +14837 2005-08-22T01:54:52Z 2251 43 2005-08-29T02:24:52Z 1 2020-02-15T06:59:46Z +14838 2005-08-22T01:57:34Z 506 404 2005-08-25T06:34:34Z 1 2020-02-15T06:59:46Z +14839 2005-08-22T01:58:15Z 3440 567 2005-08-24T05:24:15Z 2 2020-02-15T06:59:46Z +14840 2005-08-22T01:58:42Z 1240 354 2005-08-29T22:32:42Z 2 2020-02-15T06:59:46Z +14841 2005-08-22T02:03:30Z 4017 384 2005-08-28T02:08:30Z 2 2020-02-15T06:59:46Z +14842 2005-08-22T02:04:38Z 2511 467 2005-08-30T06:46:38Z 2 2020-02-15T06:59:46Z +14843 2005-08-22T02:05:25Z 3000 454 2005-08-28T22:11:25Z 1 2020-02-15T06:59:46Z +14844 2005-08-22T02:09:12Z 145 513 2005-08-31T05:43:12Z 1 2020-02-15T06:59:46Z +14845 2005-08-22T02:12:44Z 69 292 2005-08-24T02:36:44Z 2 2020-02-15T06:59:46Z +14846 2005-08-22T02:13:48Z 3840 309 2005-08-30T05:39:48Z 1 2020-02-15T06:59:46Z +14847 2005-08-22T02:13:51Z 2995 327 2005-08-29T03:42:51Z 2 2020-02-15T06:59:46Z +14848 2005-08-22T02:14:19Z 395 218 2005-08-26T02:54:19Z 2 2020-02-15T06:59:46Z +14849 2005-08-22T02:15:26Z 3354 177 2005-08-28T00:56:26Z 2 2020-02-15T06:59:46Z +14850 2005-08-22T02:16:55Z 2405 435 2005-08-26T21:08:55Z 1 2020-02-15T06:59:46Z +14851 2005-08-22T02:20:44Z 1139 180 2005-08-26T08:02:44Z 2 2020-02-15T06:59:46Z +14852 2005-08-22T02:25:53Z 2262 352 2005-08-25T04:27:53Z 1 2020-02-15T06:59:46Z +14853 2005-08-22T02:26:33Z 3575 388 2005-08-31T02:49:33Z 2 2020-02-15T06:59:46Z +14854 2005-08-22T02:26:47Z 1989 117 2005-08-23T05:53:47Z 1 2020-02-15T06:59:46Z +14855 2005-08-22T02:27:32Z 1668 187 2005-08-31T03:35:32Z 1 2020-02-15T06:59:46Z +14856 2005-08-22T02:31:51Z 3292 151 2005-08-26T23:41:51Z 2 2020-02-15T06:59:46Z +14857 2005-08-22T02:42:39Z 4150 232 2005-08-24T21:26:39Z 2 2020-02-15T06:59:46Z +14858 2005-08-22T02:46:18Z 366 499 2005-08-30T08:22:18Z 1 2020-02-15T06:59:46Z +14859 2005-08-22T02:46:35Z 2150 463 2005-08-24T22:37:35Z 2 2020-02-15T06:59:46Z +14860 2005-08-22T02:47:07Z 1368 418 2005-08-28T00:00:07Z 1 2020-02-15T06:59:46Z +14861 2005-08-22T02:48:05Z 1806 422 2005-08-27T00:50:05Z 1 2020-02-15T06:59:46Z +14862 2005-08-22T02:51:41Z 3479 78 2005-08-28T06:30:41Z 2 2020-02-15T06:59:46Z +14863 2005-08-22T02:57:04Z 779 440 2005-08-30T03:24:04Z 2 2020-02-15T06:59:46Z +14864 2005-08-22T02:57:06Z 2872 460 2005-08-22T22:19:06Z 1 2020-02-15T06:59:46Z +14865 2005-08-22T03:06:38Z 3775 94 2005-08-23T04:26:38Z 1 2020-02-15T06:59:46Z +14866 2005-08-22T03:11:35Z 2607 445 2005-08-30T00:10:35Z 1 2020-02-15T06:59:46Z +14867 2005-08-22T03:14:46Z 271 114 2005-08-25T03:53:46Z 2 2020-02-15T06:59:46Z +14868 2005-08-22T03:15:01Z 4383 160 2005-08-25T01:24:01Z 1 2020-02-15T06:59:46Z +14869 2005-08-22T03:20:26Z 455 21 2005-08-23T05:25:26Z 2 2020-02-15T06:59:46Z +14870 2005-08-22T03:23:20Z 2170 512 2005-08-23T06:50:20Z 2 2020-02-15T06:59:46Z +14871 2005-08-22T03:23:24Z 3411 204 2005-08-23T22:23:24Z 2 2020-02-15T06:59:46Z +14872 2005-08-22T03:23:41Z 962 15 2005-08-29T23:25:41Z 1 2020-02-15T06:59:46Z +14873 2005-08-22T03:31:06Z 3533 314 2005-08-31T05:34:06Z 1 2020-02-15T06:59:46Z +14874 2005-08-22T03:32:05Z 1782 268 2005-08-24T07:02:05Z 2 2020-02-15T06:59:46Z +14875 2005-08-22T03:34:39Z 3912 513 2005-08-26T03:40:39Z 1 2020-02-15T06:59:46Z +14876 2005-08-22T03:39:29Z 3669 210 2005-08-23T06:53:29Z 1 2020-02-15T06:59:46Z +14877 2005-08-22T03:39:56Z 974 266 2005-08-24T03:41:56Z 2 2020-02-15T06:59:46Z +14878 2006-02-14T15:16:03Z 1202 441 2 2020-02-15T06:59:46Z +14879 2005-08-22T03:42:12Z 2154 148 2005-08-27T06:14:12Z 1 2020-02-15T06:59:46Z +14880 2005-08-22T03:44:36Z 3615 224 2005-08-24T05:45:36Z 2 2020-02-15T06:59:46Z +14881 2005-08-22T03:47:39Z 210 425 2005-08-26T05:58:39Z 2 2020-02-15T06:59:46Z +14882 2005-08-22T03:52:21Z 12 417 2005-08-25T04:50:21Z 2 2020-02-15T06:59:46Z +14883 2005-08-22T03:55:02Z 1946 177 2005-08-28T02:51:02Z 1 2020-02-15T06:59:46Z +14884 2005-08-22T03:57:08Z 2957 547 2005-08-23T07:11:08Z 1 2020-02-15T06:59:46Z +14885 2005-08-22T03:58:29Z 2097 248 2005-08-30T05:26:29Z 1 2020-02-15T06:59:46Z +14886 2005-08-22T03:59:01Z 4330 379 2005-08-23T01:22:01Z 1 2020-02-15T06:59:46Z +14887 2005-08-22T04:04:31Z 56 421 2005-08-31T02:30:31Z 1 2020-02-15T06:59:46Z +14888 2005-08-22T04:09:18Z 3345 91 2005-08-23T07:34:18Z 2 2020-02-15T06:59:46Z +14889 2005-08-22T04:10:10Z 1579 299 2005-08-24T06:23:10Z 2 2020-02-15T06:59:46Z +14890 2005-08-22T04:10:49Z 517 346 2005-08-30T23:23:49Z 1 2020-02-15T06:59:46Z +14891 2005-08-22T04:11:02Z 288 482 2005-08-27T03:22:02Z 1 2020-02-15T06:59:46Z +14892 2005-08-22T04:15:05Z 3061 82 2005-08-31T06:07:05Z 1 2020-02-15T06:59:46Z +14893 2005-08-22T04:15:48Z 2336 461 2005-08-30T08:05:48Z 1 2020-02-15T06:59:46Z +14894 2005-08-22T04:16:56Z 3494 347 2005-08-24T00:30:56Z 2 2020-02-15T06:59:46Z +14895 2005-08-22T04:19:23Z 4462 340 2005-08-27T04:02:23Z 1 2020-02-15T06:59:46Z +14896 2005-08-22T04:20:55Z 2508 569 2005-08-29T05:11:55Z 2 2020-02-15T06:59:46Z +14897 2005-08-22T04:22:31Z 1607 175 2005-08-26T00:09:31Z 1 2020-02-15T06:59:46Z +14898 2005-08-22T04:26:34Z 1736 299 2005-08-31T10:04:34Z 1 2020-02-15T06:59:46Z +14899 2005-08-22T04:26:38Z 3700 304 2005-08-31T08:36:38Z 2 2020-02-15T06:59:46Z +14900 2005-08-22T04:27:48Z 3420 329 2005-08-25T03:50:48Z 2 2020-02-15T06:59:46Z +14901 2005-08-22T04:31:37Z 4297 258 2005-08-29T08:24:37Z 1 2020-02-15T06:59:46Z +14902 2005-08-22T04:31:50Z 866 423 2005-08-23T23:47:50Z 2 2020-02-15T06:59:46Z +14903 2005-08-22T04:31:50Z 1795 51 2005-08-25T22:53:50Z 2 2020-02-15T06:59:46Z +14904 2005-08-22T04:32:01Z 722 71 2005-08-29T05:21:01Z 1 2020-02-15T06:59:46Z +14905 2005-08-22T04:34:22Z 4166 286 2005-08-26T04:00:22Z 2 2020-02-15T06:59:46Z +14906 2005-08-22T04:38:18Z 153 366 2005-08-29T23:03:18Z 1 2020-02-15T06:59:46Z +14907 2005-08-22T04:44:09Z 2469 116 2005-08-25T09:53:09Z 1 2020-02-15T06:59:46Z +14908 2005-08-22T04:44:10Z 102 349 2005-08-25T05:09:10Z 2 2020-02-15T06:59:46Z +14909 2005-08-22T04:48:44Z 1997 155 2005-08-25T04:59:44Z 1 2020-02-15T06:59:46Z +14910 2005-08-22T04:50:52Z 1266 540 2005-08-25T04:14:52Z 1 2020-02-15T06:59:46Z +14911 2005-08-22T04:51:42Z 353 273 2005-08-28T05:37:42Z 1 2020-02-15T06:59:46Z +14912 2005-08-22T04:51:42Z 2658 404 2005-08-23T23:50:42Z 1 2020-02-15T06:59:46Z +14913 2005-08-22T04:52:13Z 3609 503 2005-08-23T06:49:13Z 2 2020-02-15T06:59:46Z +14914 2005-08-22T04:53:35Z 4348 156 2005-08-26T10:35:35Z 1 2020-02-15T06:59:46Z +14915 2006-02-14T15:16:03Z 112 349 1 2020-02-15T06:59:46Z +14916 2005-08-22T04:56:57Z 2110 80 2005-08-24T06:36:57Z 2 2020-02-15T06:59:46Z +14917 2005-08-22T05:03:59Z 377 289 2005-08-29T04:00:59Z 2 2020-02-15T06:59:46Z +14918 2005-08-22T05:06:38Z 4056 154 2005-08-30T01:44:38Z 2 2020-02-15T06:59:46Z +14919 2005-08-22T05:07:17Z 1587 244 2005-08-30T06:41:17Z 2 2020-02-15T06:59:46Z +14920 2005-08-22T05:08:58Z 3357 106 2005-08-23T02:51:58Z 1 2020-02-15T06:59:46Z +14921 2005-08-22T05:12:24Z 3724 284 2005-08-26T08:20:24Z 2 2020-02-15T06:59:46Z +14922 2005-08-22T05:13:05Z 2322 151 2005-08-30T04:59:05Z 1 2020-02-15T06:59:46Z +14923 2005-08-22T05:13:33Z 3434 460 2005-08-28T01:39:33Z 2 2020-02-15T06:59:46Z +14924 2005-08-22T05:15:17Z 4189 118 2005-08-23T10:11:17Z 1 2020-02-15T06:59:46Z +14925 2005-08-22T05:16:16Z 442 128 2005-08-30T02:47:16Z 2 2020-02-15T06:59:46Z +14926 2005-08-22T05:18:44Z 2448 357 2005-08-26T02:18:44Z 1 2020-02-15T06:59:46Z +14927 2005-08-22T05:31:53Z 952 193 2005-08-27T07:04:53Z 1 2020-02-15T06:59:46Z +14928 2006-02-14T15:16:03Z 4375 472 1 2020-02-15T06:59:46Z +14929 2005-08-22T05:32:38Z 4195 546 2005-08-28T00:02:38Z 1 2020-02-15T06:59:46Z +14930 2005-08-22T05:38:32Z 2875 584 2005-08-30T07:21:32Z 1 2020-02-15T06:59:46Z +14931 2005-08-22T05:38:55Z 657 63 2005-08-28T04:15:55Z 2 2020-02-15T06:59:46Z +14932 2005-08-22T05:40:39Z 2259 516 2005-08-23T11:02:39Z 2 2020-02-15T06:59:46Z +14933 2006-02-14T15:16:03Z 1186 21 2 2020-02-15T06:59:46Z +14934 2005-08-22T05:47:15Z 815 226 2005-08-26T11:32:15Z 1 2020-02-15T06:59:46Z +14935 2005-08-22T05:47:31Z 2025 380 2005-08-29T00:33:31Z 2 2020-02-15T06:59:46Z +14936 2005-08-22T05:51:26Z 3710 241 2005-08-29T10:21:26Z 2 2020-02-15T06:59:46Z +14937 2005-08-22T05:51:59Z 1241 348 2005-08-31T01:45:59Z 2 2020-02-15T06:59:46Z +14938 2005-08-22T05:52:39Z 408 541 2005-08-31T11:43:39Z 1 2020-02-15T06:59:46Z +14939 2005-08-22T05:53:52Z 719 328 2005-08-27T06:20:52Z 1 2020-02-15T06:59:46Z +14940 2005-08-22T05:54:03Z 2635 46 2005-08-24T05:52:03Z 2 2020-02-15T06:59:46Z +14941 2005-08-22T05:58:23Z 2328 574 2005-08-28T10:58:23Z 1 2020-02-15T06:59:46Z +14942 2005-08-22T05:58:27Z 32 471 2005-08-31T10:08:27Z 1 2020-02-15T06:59:46Z +14943 2005-08-22T05:59:59Z 3515 265 2005-08-26T10:31:59Z 2 2020-02-15T06:59:46Z +14944 2005-08-22T06:01:26Z 535 153 2005-08-24T10:33:26Z 2 2020-02-15T06:59:46Z +14945 2005-08-22T06:05:38Z 1567 304 2005-08-29T12:01:38Z 1 2020-02-15T06:59:46Z +14946 2005-08-22T06:07:10Z 1395 308 2005-08-28T05:25:10Z 1 2020-02-15T06:59:46Z +14947 2005-08-22T06:07:52Z 3497 68 2005-08-28T01:12:52Z 2 2020-02-15T06:59:46Z +14948 2005-08-22T06:10:53Z 2914 488 2005-08-28T11:24:53Z 2 2020-02-15T06:59:46Z +14949 2005-08-22T06:12:16Z 2434 111 2005-08-25T08:25:16Z 2 2020-02-15T06:59:46Z +14950 2005-08-22T06:17:12Z 635 362 2005-08-27T08:48:12Z 2 2020-02-15T06:59:46Z +14951 2005-08-22T06:19:37Z 2800 197 2005-08-30T05:51:37Z 2 2020-02-15T06:59:46Z +14952 2005-08-22T06:20:07Z 2950 575 2005-08-28T01:18:07Z 1 2020-02-15T06:59:46Z +14953 2005-08-22T06:23:54Z 816 182 2005-08-28T03:19:54Z 1 2020-02-15T06:59:46Z +14954 2006-02-14T15:16:03Z 3608 525 1 2020-02-15T06:59:46Z +14955 2005-08-22T06:25:52Z 1534 445 2005-08-25T12:13:52Z 2 2020-02-15T06:59:46Z +14956 2005-08-22T06:26:16Z 3650 571 2005-08-25T11:06:16Z 2 2020-02-15T06:59:46Z +14957 2005-08-22T06:29:34Z 1384 323 2005-08-26T04:52:34Z 2 2020-02-15T06:59:46Z +14958 2005-08-22T06:30:10Z 1710 347 2005-08-28T09:43:10Z 2 2020-02-15T06:59:46Z +14959 2005-08-22T06:30:28Z 2009 569 2005-08-25T09:48:28Z 1 2020-02-15T06:59:46Z +14960 2005-08-22T06:31:36Z 3316 147 2005-08-29T07:10:36Z 2 2020-02-15T06:59:46Z +14961 2005-08-22T06:35:50Z 3274 52 2005-08-31T04:07:50Z 2 2020-02-15T06:59:46Z +14962 2005-08-22T06:37:43Z 3104 449 2005-08-29T03:44:43Z 2 2020-02-15T06:59:46Z +14963 2005-08-22T06:38:10Z 2672 384 2005-08-31T05:35:10Z 2 2020-02-15T06:59:46Z +14964 2005-08-22T06:39:24Z 2302 500 2005-08-26T06:05:24Z 1 2020-02-15T06:59:46Z +14965 2005-08-22T06:45:53Z 1036 148 2005-08-27T10:05:53Z 1 2020-02-15T06:59:46Z +14966 2005-08-22T06:45:57Z 679 259 2005-08-31T10:02:57Z 1 2020-02-15T06:59:46Z +14967 2005-08-22T06:46:03Z 289 67 2005-08-23T01:02:03Z 2 2020-02-15T06:59:46Z +14968 2005-08-22T06:46:59Z 3302 129 2005-08-29T07:36:59Z 1 2020-02-15T06:59:46Z +14969 2005-08-22T06:49:15Z 4060 120 2005-08-29T05:52:15Z 1 2020-02-15T06:59:46Z +14970 2005-08-22T06:49:29Z 536 529 2005-08-29T08:47:29Z 1 2020-02-15T06:59:46Z +14971 2005-08-22T06:52:49Z 1883 378 2005-08-28T06:27:49Z 2 2020-02-15T06:59:46Z +14972 2005-08-22T06:53:21Z 3422 310 2005-08-29T02:25:21Z 1 2020-02-15T06:59:46Z +14973 2005-08-22T06:59:28Z 2888 201 2005-08-30T02:28:28Z 1 2020-02-15T06:59:46Z +14974 2005-08-22T07:04:25Z 2596 157 2005-08-27T12:39:25Z 1 2020-02-15T06:59:46Z +14975 2005-08-22T07:07:50Z 924 244 2005-08-28T07:23:50Z 2 2020-02-15T06:59:46Z +14976 2005-08-22T07:10:26Z 77 581 2005-08-28T07:22:26Z 1 2020-02-15T06:59:46Z +14977 2005-08-22T07:12:53Z 4093 59 2005-08-30T08:11:53Z 2 2020-02-15T06:59:46Z +14978 2005-08-22T07:13:15Z 699 94 2005-08-25T12:26:15Z 1 2020-02-15T06:59:46Z +14979 2005-08-22T07:16:36Z 2320 387 2005-08-24T02:29:36Z 2 2020-02-15T06:59:46Z +14980 2005-08-22T07:16:45Z 2701 518 2005-08-26T06:04:45Z 2 2020-02-15T06:59:46Z +14981 2005-08-22T07:19:05Z 1239 544 2005-08-26T03:08:05Z 2 2020-02-15T06:59:46Z +14982 2005-08-22T07:20:55Z 2333 542 2005-08-31T04:35:55Z 2 2020-02-15T06:59:46Z +14983 2005-08-22T07:32:23Z 3579 363 2005-08-30T11:39:23Z 2 2020-02-15T06:59:46Z +14984 2005-08-22T07:35:31Z 1704 334 2005-08-30T02:32:31Z 1 2020-02-15T06:59:46Z +14985 2005-08-22T07:35:56Z 2017 29 2005-08-29T13:17:56Z 1 2020-02-15T06:59:46Z +14986 2005-08-22T07:37:24Z 1493 278 2005-08-23T04:22:24Z 2 2020-02-15T06:59:46Z +14987 2005-08-22T07:41:08Z 1513 138 2005-08-24T03:15:08Z 2 2020-02-15T06:59:46Z +14988 2005-08-22T07:46:05Z 2114 186 2005-08-29T06:43:05Z 1 2020-02-15T06:59:46Z +14989 2005-08-22T07:47:07Z 1431 58 2005-08-26T04:42:07Z 2 2020-02-15T06:59:46Z +14990 2005-08-22T07:48:01Z 4057 198 2005-08-24T06:41:01Z 2 2020-02-15T06:59:46Z +14991 2005-08-22T07:50:44Z 708 172 2005-08-30T06:32:44Z 2 2020-02-15T06:59:46Z +14992 2005-08-22T07:51:47Z 4430 415 2005-08-25T08:17:47Z 2 2020-02-15T06:59:46Z +14993 2005-08-22T07:52:18Z 3416 437 2005-08-27T02:13:18Z 1 2020-02-15T06:59:46Z +14994 2005-08-22T07:52:24Z 1601 509 2005-08-26T09:57:24Z 1 2020-02-15T06:59:46Z +14995 2005-08-22T07:52:31Z 4178 482 2005-08-24T05:16:31Z 1 2020-02-15T06:59:46Z +14996 2005-08-22T07:52:41Z 1178 411 2005-08-29T02:35:41Z 1 2020-02-15T06:59:46Z +14997 2005-08-22T07:53:00Z 2724 29 2005-08-28T03:47:00Z 2 2020-02-15T06:59:46Z +14998 2005-08-22T07:53:14Z 3852 92 2005-08-24T03:46:14Z 2 2020-02-15T06:59:46Z +14999 2005-08-22T07:54:47Z 3399 594 2005-08-23T08:39:47Z 1 2020-02-15T06:59:46Z +15000 2005-08-22T07:54:58Z 3080 161 2005-08-24T12:46:58Z 2 2020-02-15T06:59:46Z +15001 2005-08-22T08:00:49Z 2869 186 2005-08-27T05:53:49Z 2 2020-02-15T06:59:46Z +15002 2005-08-22T08:06:00Z 4198 242 2005-08-24T10:48:00Z 1 2020-02-15T06:59:46Z +15003 2005-08-22T08:11:24Z 4009 167 2005-08-28T08:49:24Z 1 2020-02-15T06:59:46Z +15004 2005-08-22T08:15:21Z 4464 375 2005-08-28T10:35:21Z 1 2020-02-15T06:59:46Z +15005 2005-08-22T08:15:44Z 2897 335 2005-08-24T09:52:44Z 2 2020-02-15T06:59:46Z +15006 2005-08-22T08:20:15Z 2967 97 2005-08-23T11:57:15Z 1 2020-02-15T06:59:46Z +15007 2005-08-22T08:21:21Z 3692 165 2005-08-27T04:44:21Z 2 2020-02-15T06:59:46Z +15008 2005-08-22T08:24:32Z 961 277 2005-08-31T13:48:32Z 2 2020-02-15T06:59:46Z +15009 2005-08-22T08:27:27Z 4025 325 2005-08-26T05:57:27Z 2 2020-02-15T06:59:46Z +15010 2005-08-22T08:30:17Z 171 508 2005-08-29T13:24:17Z 2 2020-02-15T06:59:46Z +15011 2005-08-22T08:31:07Z 2722 329 2005-08-24T04:47:07Z 1 2020-02-15T06:59:46Z +15012 2005-08-22T08:42:32Z 1584 454 2005-08-28T05:04:32Z 1 2020-02-15T06:59:46Z +15013 2005-08-22T08:42:45Z 141 141 2005-08-24T05:20:45Z 2 2020-02-15T06:59:46Z +15014 2005-08-22T08:43:11Z 3678 373 2005-08-31T02:55:11Z 1 2020-02-15T06:59:46Z +15015 2005-08-22T08:43:50Z 3067 14 2005-08-31T06:53:50Z 2 2020-02-15T06:59:46Z +15016 2005-08-22T08:47:35Z 879 434 2005-08-28T14:23:35Z 2 2020-02-15T06:59:46Z +15017 2005-08-22T08:47:44Z 3975 144 2005-08-29T08:16:44Z 1 2020-02-15T06:59:46Z +15018 2005-08-22T08:52:38Z 394 504 2005-08-25T08:08:38Z 1 2020-02-15T06:59:46Z +15019 2005-08-22T08:52:53Z 3425 450 2005-08-25T13:07:53Z 2 2020-02-15T06:59:46Z +15020 2005-08-22T08:54:12Z 3460 267 2005-08-27T04:54:12Z 1 2020-02-15T06:59:46Z +15021 2006-02-14T15:16:03Z 418 100 2 2020-02-15T06:59:46Z +15022 2005-08-22T08:55:43Z 249 506 2005-08-31T05:35:43Z 2 2020-02-15T06:59:46Z +15023 2005-08-22T08:56:48Z 358 296 2005-08-29T08:13:48Z 1 2020-02-15T06:59:46Z +15024 2005-08-22T08:57:10Z 1831 139 2005-08-24T10:39:10Z 1 2020-02-15T06:59:46Z +15025 2005-08-22T08:57:24Z 2107 257 2005-08-24T06:09:24Z 2 2020-02-15T06:59:46Z +15026 2005-08-22T09:01:52Z 4328 66 2005-08-28T09:21:52Z 1 2020-02-15T06:59:46Z +15027 2005-08-22T09:03:04Z 326 478 2005-08-29T04:03:04Z 2 2020-02-15T06:59:46Z +15028 2005-08-22T09:03:44Z 4248 37 2005-08-30T11:28:44Z 1 2020-02-15T06:59:46Z +15029 2005-08-22T09:04:53Z 2234 139 2005-08-25T09:03:53Z 1 2020-02-15T06:59:46Z +15030 2005-08-22T09:10:21Z 3168 341 2005-08-24T06:00:21Z 2 2020-02-15T06:59:46Z +15031 2005-08-22T09:11:48Z 3926 430 2005-08-27T06:11:48Z 1 2020-02-15T06:59:46Z +15032 2005-08-22T09:14:09Z 3414 467 2005-08-25T09:50:09Z 2 2020-02-15T06:59:46Z +15033 2005-08-22T09:25:24Z 2431 168 2005-08-28T09:56:24Z 2 2020-02-15T06:59:46Z +15034 2005-08-22T09:33:08Z 1331 235 2005-08-29T13:04:08Z 1 2020-02-15T06:59:46Z +15035 2005-08-22T09:34:32Z 339 513 2005-08-28T10:23:32Z 1 2020-02-15T06:59:46Z +15036 2005-08-22T09:36:00Z 874 280 2005-08-23T08:12:00Z 2 2020-02-15T06:59:46Z +15037 2005-08-22T09:36:33Z 4517 234 2005-08-31T11:20:33Z 2 2020-02-15T06:59:46Z +15038 2005-08-22T09:37:27Z 1685 3 2005-08-23T14:39:27Z 1 2020-02-15T06:59:46Z +15039 2005-08-22T09:37:54Z 895 180 2005-08-28T12:23:54Z 1 2020-02-15T06:59:46Z +15040 2005-08-22T09:41:09Z 3207 523 2005-08-23T12:49:09Z 2 2020-02-15T06:59:46Z +15041 2005-08-22T09:43:18Z 1913 372 2005-08-23T11:04:18Z 2 2020-02-15T06:59:46Z +15042 2005-08-22T09:47:37Z 3796 553 2005-08-31T04:42:37Z 1 2020-02-15T06:59:46Z +15043 2005-08-22T09:49:32Z 3797 182 2005-08-28T13:50:32Z 1 2020-02-15T06:59:46Z +15044 2005-08-22T09:51:54Z 4513 439 2005-08-31T12:45:54Z 1 2020-02-15T06:59:46Z +15045 2005-08-22T09:53:23Z 3485 161 2005-08-26T10:09:23Z 2 2020-02-15T06:59:46Z +15046 2005-08-22T09:54:54Z 1536 474 2005-08-26T07:34:54Z 1 2020-02-15T06:59:46Z +15047 2005-08-22T09:57:16Z 1309 19 2005-08-23T11:39:16Z 1 2020-02-15T06:59:46Z +15048 2005-08-22T10:00:04Z 2895 27 2005-08-26T08:26:04Z 1 2020-02-15T06:59:46Z +15049 2005-08-22T10:06:28Z 1573 102 2005-08-26T15:12:28Z 1 2020-02-15T06:59:46Z +15050 2005-08-22T10:07:52Z 3961 167 2005-08-23T04:45:52Z 1 2020-02-15T06:59:46Z +15051 2005-08-22T10:08:50Z 1419 300 2005-08-28T10:23:50Z 1 2020-02-15T06:59:46Z +15052 2005-08-22T10:09:19Z 2349 147 2005-08-31T09:27:19Z 2 2020-02-15T06:59:46Z +15053 2005-08-22T10:13:09Z 1065 374 2005-08-28T12:42:09Z 2 2020-02-15T06:59:46Z +15054 2005-08-22T10:14:33Z 2314 44 2005-08-25T15:07:33Z 1 2020-02-15T06:59:46Z +15055 2005-08-22T10:14:39Z 623 125 2005-08-25T07:25:39Z 2 2020-02-15T06:59:46Z +15056 2005-08-22T10:15:54Z 1871 503 2005-08-25T07:21:54Z 1 2020-02-15T06:59:46Z +15057 2005-08-22T10:19:58Z 4534 20 2005-08-28T05:12:58Z 1 2020-02-15T06:59:46Z +15058 2005-08-22T10:20:55Z 3537 288 2005-08-26T12:37:55Z 1 2020-02-15T06:59:46Z +15059 2005-08-22T10:22:00Z 4079 564 2005-08-29T07:01:00Z 2 2020-02-15T06:59:46Z +15060 2005-08-22T10:24:32Z 2740 63 2005-08-31T11:17:32Z 2 2020-02-15T06:59:46Z +15061 2005-08-22T10:29:44Z 3436 90 2005-08-24T14:40:44Z 1 2020-02-15T06:59:46Z +15062 2005-08-22T10:34:39Z 4393 139 2005-08-26T13:09:39Z 2 2020-02-15T06:59:46Z +15063 2005-08-22T10:39:51Z 1159 30 2005-08-25T16:03:51Z 2 2020-02-15T06:59:46Z +15064 2005-08-22T10:41:58Z 1233 425 2005-08-28T13:34:58Z 2 2020-02-15T06:59:46Z +15065 2005-08-22T10:46:44Z 468 510 2005-08-27T09:40:44Z 2 2020-02-15T06:59:46Z +15066 2005-08-22T10:49:06Z 2712 530 2005-08-23T10:25:06Z 1 2020-02-15T06:59:46Z +15067 2005-08-22T10:49:21Z 3684 461 2005-08-24T09:01:21Z 1 2020-02-15T06:59:46Z +15068 2005-08-22T10:50:13Z 3268 373 2005-08-26T05:04:13Z 2 2020-02-15T06:59:46Z +15069 2005-08-22T10:55:42Z 592 568 2005-08-28T06:59:42Z 2 2020-02-15T06:59:46Z +15070 2005-08-22T10:55:45Z 2687 441 2005-08-26T09:23:45Z 1 2020-02-15T06:59:46Z +15071 2005-08-22T10:58:43Z 417 541 2005-08-31T14:53:43Z 1 2020-02-15T06:59:46Z +15072 2005-08-22T10:58:45Z 2871 405 2005-08-30T16:18:45Z 1 2020-02-15T06:59:46Z +15073 2005-08-22T11:01:15Z 3970 336 2005-08-31T09:23:15Z 1 2020-02-15T06:59:46Z +15074 2005-08-22T11:02:52Z 3112 567 2005-08-28T07:59:52Z 2 2020-02-15T06:59:46Z +15075 2005-08-22T11:04:52Z 1938 535 2005-08-30T05:06:52Z 1 2020-02-15T06:59:46Z +15076 2005-08-22T11:05:34Z 4170 287 2005-08-27T14:40:34Z 1 2020-02-15T06:59:46Z +15077 2005-08-22T11:09:18Z 3142 503 2005-08-29T08:41:18Z 1 2020-02-15T06:59:46Z +15078 2005-08-22T11:09:31Z 3001 197 2005-08-25T12:16:31Z 1 2020-02-15T06:59:46Z +15079 2005-08-22T11:09:56Z 4552 540 2005-08-24T15:40:56Z 2 2020-02-15T06:59:46Z +15080 2005-08-22T11:11:51Z 927 133 2005-08-23T13:09:51Z 1 2020-02-15T06:59:46Z +15081 2005-08-22T11:14:31Z 2501 313 2005-08-28T14:23:31Z 2 2020-02-15T06:59:46Z +15082 2005-08-22T11:17:06Z 2046 137 2005-08-28T06:40:06Z 1 2020-02-15T06:59:46Z +15083 2005-08-22T11:17:37Z 1691 397 2005-08-28T06:27:37Z 2 2020-02-15T06:59:46Z +15084 2005-08-22T11:17:59Z 821 287 2005-08-23T09:23:59Z 1 2020-02-15T06:59:46Z +15085 2005-08-22T11:19:22Z 1669 67 2005-08-25T09:04:22Z 2 2020-02-15T06:59:46Z +15086 2005-08-22T11:21:08Z 264 494 2005-08-30T08:18:08Z 2 2020-02-15T06:59:46Z +15087 2005-08-22T11:24:09Z 233 404 2005-08-27T16:42:09Z 2 2020-02-15T06:59:46Z +15088 2005-08-22T11:28:26Z 4199 377 2005-08-24T15:46:26Z 2 2020-02-15T06:59:46Z +15089 2005-08-22T11:34:06Z 3288 61 2005-08-31T12:45:06Z 1 2020-02-15T06:59:46Z +15090 2005-08-22T11:34:33Z 2918 582 2005-08-31T06:09:33Z 2 2020-02-15T06:59:46Z +15091 2005-08-22T11:34:43Z 2092 477 2005-08-23T16:52:43Z 2 2020-02-15T06:59:46Z +15092 2005-08-22T11:36:16Z 2418 464 2005-08-28T09:49:16Z 2 2020-02-15T06:59:46Z +15093 2005-08-22T11:39:03Z 3534 60 2005-08-23T06:16:03Z 2 2020-02-15T06:59:46Z +15094 2006-02-14T15:16:03Z 922 424 1 2020-02-15T06:59:46Z +15095 2005-08-22T11:41:35Z 489 202 2005-08-25T16:44:35Z 2 2020-02-15T06:59:46Z +15096 2005-08-22T11:43:04Z 1983 33 2005-08-29T12:16:04Z 2 2020-02-15T06:59:46Z +15097 2005-08-22T11:43:42Z 2838 475 2005-08-27T10:25:42Z 1 2020-02-15T06:59:46Z +15098 2005-08-22T11:48:19Z 4414 88 2005-08-31T11:07:19Z 2 2020-02-15T06:59:46Z +15099 2005-08-22T11:49:16Z 1940 86 2005-08-26T06:38:16Z 2 2020-02-15T06:59:46Z +15100 2005-08-22T11:55:03Z 4489 312 2005-08-25T14:55:03Z 1 2020-02-15T06:59:46Z +15101 2005-08-22T11:56:02Z 683 335 2005-08-28T13:08:02Z 2 2020-02-15T06:59:46Z +15102 2005-08-22T11:58:58Z 2317 555 2005-08-29T08:37:58Z 1 2020-02-15T06:59:46Z +15103 2005-08-22T12:01:06Z 853 101 2005-08-25T14:40:06Z 2 2020-02-15T06:59:46Z +15104 2005-08-22T12:01:16Z 4550 359 2005-08-27T17:48:16Z 1 2020-02-15T06:59:46Z +15105 2005-08-22T12:01:33Z 3965 338 2005-08-26T14:29:33Z 2 2020-02-15T06:59:46Z +15106 2005-08-22T12:01:48Z 399 155 2005-08-27T16:12:48Z 1 2020-02-15T06:59:46Z +15107 2005-08-22T12:05:02Z 2378 376 2005-08-23T11:09:02Z 1 2020-02-15T06:59:46Z +15108 2005-08-22T12:10:07Z 3463 447 2005-08-26T14:46:07Z 2 2020-02-15T06:59:46Z +15109 2005-08-22T12:12:58Z 565 588 2005-08-30T07:20:58Z 1 2020-02-15T06:59:46Z +15110 2005-08-22T12:16:46Z 1379 72 2005-08-26T13:36:46Z 1 2020-02-15T06:59:46Z +15111 2005-08-22T12:21:43Z 4101 119 2005-08-24T09:31:43Z 1 2020-02-15T06:59:46Z +15112 2005-08-22T12:21:49Z 2832 160 2005-08-27T11:03:49Z 1 2020-02-15T06:59:46Z +15113 2005-08-22T12:23:59Z 4338 424 2005-08-27T09:59:59Z 1 2020-02-15T06:59:46Z +15114 2005-08-22T12:24:55Z 2481 121 2005-08-31T17:06:55Z 1 2020-02-15T06:59:46Z +15115 2005-08-22T12:28:01Z 1739 33 2005-08-26T16:12:01Z 1 2020-02-15T06:59:46Z +15116 2005-08-22T12:35:40Z 518 217 2005-08-23T17:58:40Z 1 2020-02-15T06:59:46Z +15117 2005-08-22T12:38:20Z 2502 292 2005-08-27T07:36:20Z 2 2020-02-15T06:59:46Z +15118 2005-08-22T12:38:37Z 2081 473 2005-08-29T14:01:37Z 2 2020-02-15T06:59:46Z +15119 2005-08-22T12:41:33Z 4526 288 2005-08-23T14:44:33Z 2 2020-02-15T06:59:46Z +15120 2005-08-22T12:42:47Z 3083 11 2005-08-23T14:21:47Z 1 2020-02-15T06:59:46Z +15121 2005-08-22T12:46:37Z 2981 415 2005-08-25T17:42:37Z 1 2020-02-15T06:59:46Z +15122 2005-08-22T12:47:45Z 1686 91 2005-08-29T13:18:45Z 2 2020-02-15T06:59:46Z +15123 2005-08-22T12:48:44Z 1455 445 2005-08-27T11:07:44Z 1 2020-02-15T06:59:46Z +15124 2005-08-22T12:51:38Z 1598 39 2005-08-26T09:05:38Z 1 2020-02-15T06:59:46Z +15125 2005-08-22T12:53:22Z 3942 221 2005-08-29T18:44:22Z 1 2020-02-15T06:59:46Z +15126 2005-08-22T12:53:58Z 1902 459 2005-08-28T07:39:58Z 1 2020-02-15T06:59:46Z +15127 2005-08-22T12:56:29Z 2397 287 2005-08-26T10:58:29Z 1 2020-02-15T06:59:46Z +15128 2005-08-22T12:57:26Z 3229 457 2005-08-30T11:35:26Z 2 2020-02-15T06:59:46Z +15129 2005-08-22T13:03:52Z 3782 234 2005-08-29T10:56:52Z 2 2020-02-15T06:59:46Z +15130 2005-08-22T13:04:32Z 2375 536 2005-08-30T17:24:32Z 1 2020-02-15T06:59:46Z +15131 2005-08-22T13:06:26Z 1930 119 2005-08-30T16:43:26Z 1 2020-02-15T06:59:46Z +15132 2005-08-22T13:11:25Z 3474 393 2005-08-27T17:04:25Z 2 2020-02-15T06:59:46Z +15133 2005-08-22T13:17:43Z 3408 137 2005-08-26T08:40:43Z 1 2020-02-15T06:59:46Z +15134 2005-08-22T13:18:25Z 4442 22 2005-08-29T18:03:25Z 1 2020-02-15T06:59:46Z +15135 2005-08-22T13:19:19Z 555 284 2005-08-27T17:09:19Z 2 2020-02-15T06:59:46Z +15136 2005-08-22T13:19:25Z 2606 435 2005-08-24T07:28:25Z 2 2020-02-15T06:59:46Z +15137 2005-08-22T13:20:28Z 856 241 2005-08-26T09:35:28Z 1 2020-02-15T06:59:46Z +15138 2005-08-22T13:36:30Z 2467 50 2005-08-27T15:35:30Z 1 2020-02-15T06:59:46Z +15139 2005-08-22T13:38:11Z 2018 237 2005-08-30T09:00:11Z 1 2020-02-15T06:59:46Z +15140 2005-08-22T13:39:20Z 1402 414 2005-08-30T18:19:20Z 2 2020-02-15T06:59:46Z +15141 2005-08-22T13:41:49Z 227 541 2005-08-28T15:25:49Z 2 2020-02-15T06:59:46Z +15142 2005-08-22T13:44:32Z 1337 351 2005-08-29T14:19:32Z 1 2020-02-15T06:59:46Z +15143 2005-08-22T13:46:24Z 1519 274 2005-08-25T09:47:24Z 2 2020-02-15T06:59:46Z +15144 2005-08-22T13:49:18Z 559 527 2005-08-26T11:11:18Z 2 2020-02-15T06:59:46Z +15145 2005-08-22T13:53:04Z 2179 2 2005-08-31T15:51:04Z 1 2020-02-15T06:59:46Z +15146 2005-08-22T13:57:55Z 3102 72 2005-08-28T12:57:55Z 2 2020-02-15T06:59:46Z +15147 2005-08-22T13:58:23Z 2553 4 2005-08-28T14:33:23Z 2 2020-02-15T06:59:46Z +15148 2005-08-22T13:59:19Z 3704 359 2005-08-31T13:59:19Z 2 2020-02-15T06:59:46Z +15149 2005-08-22T14:08:06Z 3059 537 2005-08-25T08:25:06Z 1 2020-02-15T06:59:46Z +15150 2005-08-22T14:12:05Z 1797 161 2005-08-27T12:47:05Z 1 2020-02-15T06:59:46Z +15151 2005-08-22T14:23:11Z 4070 463 2005-08-30T14:01:11Z 1 2020-02-15T06:59:46Z +15152 2005-08-22T14:25:21Z 739 123 2005-08-31T14:28:21Z 1 2020-02-15T06:59:46Z +15153 2005-08-22T14:26:01Z 1051 512 2005-08-27T14:17:01Z 2 2020-02-15T06:59:46Z +15154 2005-08-22T14:27:37Z 3395 106 2005-08-29T20:04:37Z 2 2020-02-15T06:59:46Z +15155 2005-08-22T14:27:46Z 2641 43 2005-08-23T17:46:46Z 2 2020-02-15T06:59:46Z +15156 2005-08-22T14:29:11Z 1174 494 2005-08-30T17:48:11Z 2 2020-02-15T06:59:46Z +15157 2005-08-22T14:30:09Z 1909 580 2005-08-29T18:28:09Z 1 2020-02-15T06:59:46Z +15158 2005-08-22T14:30:39Z 3614 588 2005-08-27T15:55:39Z 1 2020-02-15T06:59:46Z +15159 2005-08-22T14:32:25Z 4355 525 2005-08-24T11:19:25Z 2 2020-02-15T06:59:46Z +15160 2005-08-22T14:33:50Z 4321 249 2005-08-28T11:26:50Z 1 2020-02-15T06:59:46Z +15161 2005-08-22T14:37:22Z 1445 20 2005-08-27T17:40:22Z 1 2020-02-15T06:59:46Z +15162 2005-08-22T14:41:05Z 1756 439 2005-08-27T20:23:05Z 2 2020-02-15T06:59:46Z +15163 2005-08-22T14:43:13Z 3597 100 2005-08-26T14:26:13Z 1 2020-02-15T06:59:46Z +15164 2005-08-22T14:47:53Z 997 193 2005-08-25T16:05:53Z 1 2020-02-15T06:59:46Z +15165 2005-08-22T14:59:30Z 3664 168 2005-08-29T15:46:30Z 2 2020-02-15T06:59:46Z +15166 2005-08-22T15:05:37Z 1530 504 2005-08-30T12:22:37Z 2 2020-02-15T06:59:46Z +15167 2006-02-14T15:16:03Z 973 190 2 2020-02-15T06:59:46Z +15168 2005-08-22T15:14:20Z 3218 526 2005-08-25T20:12:20Z 2 2020-02-15T06:59:46Z +15169 2005-08-22T15:21:56Z 794 76 2005-08-28T09:40:56Z 1 2020-02-15T06:59:46Z +15170 2005-08-22T15:22:15Z 2123 521 2005-08-23T20:32:15Z 1 2020-02-15T06:59:46Z +15171 2005-08-22T15:23:59Z 1201 119 2005-08-28T12:05:59Z 2 2020-02-15T06:59:46Z +15172 2005-08-22T15:25:33Z 2367 511 2005-08-23T17:29:33Z 1 2020-02-15T06:59:46Z +15173 2005-08-22T15:26:29Z 2585 338 2005-08-29T14:03:29Z 1 2020-02-15T06:59:46Z +15174 2005-08-22T15:26:36Z 19 111 2005-08-31T10:47:36Z 2 2020-02-15T06:59:46Z +15175 2005-08-22T15:29:15Z 4318 380 2005-08-27T15:11:15Z 2 2020-02-15T06:59:46Z +15176 2005-08-22T15:30:25Z 3063 115 2005-08-31T20:00:25Z 1 2020-02-15T06:59:46Z +15177 2005-08-22T15:34:49Z 838 493 2005-08-26T12:54:49Z 1 2020-02-15T06:59:46Z +15178 2005-08-22T15:36:04Z 1745 15 2005-08-26T21:00:04Z 2 2020-02-15T06:59:46Z +15179 2005-08-22T15:36:22Z 450 328 2005-08-31T19:57:22Z 1 2020-02-15T06:59:46Z +15180 2005-08-22T15:42:57Z 234 532 2005-08-24T12:49:57Z 2 2020-02-15T06:59:46Z +15181 2005-08-22T15:46:20Z 3900 266 2005-08-27T09:56:20Z 1 2020-02-15T06:59:46Z +15182 2005-08-22T15:47:05Z 645 443 2005-08-25T11:55:05Z 1 2020-02-15T06:59:46Z +15183 2005-08-22T15:49:54Z 2696 268 2005-08-25T12:29:54Z 1 2020-02-15T06:59:46Z +15184 2005-08-22T15:51:12Z 1193 471 2005-08-24T19:23:12Z 2 2020-02-15T06:59:46Z +15185 2005-08-22T15:52:50Z 2948 472 2005-08-31T20:38:50Z 1 2020-02-15T06:59:46Z +15186 2005-08-22T15:52:57Z 1323 104 2005-08-24T21:12:57Z 1 2020-02-15T06:59:46Z +15187 2005-08-22T15:53:32Z 2338 461 2005-08-27T14:21:32Z 1 2020-02-15T06:59:46Z +15188 2005-08-22T15:55:48Z 131 478 2005-08-29T19:10:48Z 1 2020-02-15T06:59:46Z +15189 2005-08-22T15:56:42Z 2559 398 2005-08-29T12:20:42Z 1 2020-02-15T06:59:46Z +15190 2005-08-22T15:57:38Z 2096 84 2005-08-24T13:46:38Z 1 2020-02-15T06:59:46Z +15191 2006-02-14T15:16:03Z 3688 75 1 2020-02-15T06:59:46Z +15192 2005-08-22T16:06:23Z 4213 216 2005-08-27T13:12:23Z 1 2020-02-15T06:59:46Z +15193 2005-08-22T16:06:49Z 1033 40 2005-08-25T17:23:49Z 1 2020-02-15T06:59:46Z +15194 2005-08-22T16:07:34Z 1217 332 2005-08-26T19:16:34Z 1 2020-02-15T06:59:46Z +15195 2005-08-22T16:08:23Z 1080 508 2005-08-30T17:56:23Z 2 2020-02-15T06:59:46Z +15196 2005-08-22T16:11:32Z 1413 181 2005-08-30T22:06:32Z 1 2020-02-15T06:59:46Z +15197 2005-08-22T16:14:25Z 2915 159 2005-08-26T16:22:25Z 2 2020-02-15T06:59:46Z +15198 2005-08-22T16:15:33Z 1253 396 2005-08-29T20:49:33Z 1 2020-02-15T06:59:46Z +15199 2005-08-22T16:17:49Z 18 216 2005-08-25T20:12:49Z 1 2020-02-15T06:59:46Z +15200 2005-08-22T16:22:53Z 1000 374 2005-08-24T10:25:53Z 2 2020-02-15T06:59:46Z +15201 2005-08-22T16:24:42Z 4456 301 2005-08-31T17:54:42Z 1 2020-02-15T06:59:46Z +15202 2005-08-22T16:26:53Z 2119 374 2005-08-23T13:49:53Z 2 2020-02-15T06:59:46Z +15203 2005-08-22T16:28:00Z 743 568 2005-08-26T16:55:00Z 2 2020-02-15T06:59:46Z +15204 2005-08-22T16:30:43Z 1471 317 2005-08-26T20:37:43Z 2 2020-02-15T06:59:46Z +15205 2005-08-22T16:32:23Z 3276 489 2005-08-27T16:08:23Z 1 2020-02-15T06:59:46Z +15206 2005-08-22T16:33:39Z 3901 524 2005-08-31T11:41:39Z 1 2020-02-15T06:59:46Z +15207 2005-08-22T16:35:25Z 1149 442 2005-08-23T14:06:25Z 1 2020-02-15T06:59:46Z +15208 2005-08-22T16:35:47Z 4346 267 2005-08-30T15:16:47Z 1 2020-02-15T06:59:46Z +15209 2005-08-22T16:37:32Z 1620 588 2005-08-25T19:04:32Z 1 2020-02-15T06:59:46Z +15210 2005-08-22T16:37:36Z 3811 332 2005-08-29T11:54:36Z 1 2020-02-15T06:59:46Z +15211 2005-08-22T16:40:21Z 3025 410 2005-08-28T13:33:21Z 2 2020-02-15T06:59:46Z +15212 2005-08-22T16:44:26Z 2182 562 2005-08-27T20:26:26Z 1 2020-02-15T06:59:46Z +15213 2005-08-22T16:49:02Z 2002 166 2005-08-31T20:22:02Z 1 2020-02-15T06:59:46Z +15214 2005-08-22T16:53:29Z 1500 574 2005-08-24T14:17:29Z 1 2020-02-15T06:59:46Z +15215 2005-08-22T16:55:26Z 1906 344 2005-08-25T20:19:26Z 1 2020-02-15T06:59:46Z +15216 2005-08-22T16:57:02Z 1633 166 2005-08-24T16:11:02Z 2 2020-02-15T06:59:46Z +15217 2005-08-22T16:58:31Z 91 90 2005-08-23T22:33:31Z 1 2020-02-15T06:59:46Z +15218 2005-08-22T16:59:05Z 10 139 2005-08-30T17:01:05Z 1 2020-02-15T06:59:46Z +15219 2005-08-22T17:00:31Z 3313 544 2005-08-31T20:16:31Z 1 2020-02-15T06:59:46Z +15220 2005-08-22T17:02:23Z 187 128 2005-08-28T21:02:23Z 1 2020-02-15T06:59:46Z +15221 2005-08-22T17:12:29Z 110 253 2005-08-24T20:46:29Z 2 2020-02-15T06:59:46Z +15222 2005-08-22T17:12:30Z 1360 390 2005-08-27T15:10:30Z 2 2020-02-15T06:59:46Z +15223 2005-08-22T17:13:39Z 2263 541 2005-08-27T11:17:39Z 2 2020-02-15T06:59:46Z +15224 2005-08-22T17:18:05Z 33 81 2005-08-29T14:35:05Z 2 2020-02-15T06:59:46Z +15225 2005-08-22T17:18:32Z 1646 224 2005-08-24T17:25:32Z 1 2020-02-15T06:59:46Z +15226 2005-08-22T17:20:17Z 318 54 2005-08-31T15:36:17Z 1 2020-02-15T06:59:46Z +15227 2005-08-22T17:22:41Z 2987 151 2005-08-23T20:59:41Z 1 2020-02-15T06:59:46Z +15228 2005-08-22T17:27:23Z 2485 48 2005-08-29T11:38:23Z 2 2020-02-15T06:59:46Z +15229 2005-08-22T17:30:25Z 320 63 2005-08-23T14:13:25Z 1 2020-02-15T06:59:46Z +15230 2005-08-22T17:31:41Z 2572 466 2005-08-25T21:57:41Z 2 2020-02-15T06:59:46Z +15231 2005-08-22T17:32:57Z 2980 187 2005-08-25T13:06:57Z 1 2020-02-15T06:59:46Z +15232 2005-08-22T17:37:02Z 61 5 2005-08-25T18:45:02Z 1 2020-02-15T06:59:46Z +15233 2005-08-22T17:41:53Z 4405 197 2005-08-24T12:59:53Z 2 2020-02-15T06:59:46Z +15234 2006-02-14T15:16:03Z 908 228 2 2020-02-15T06:59:46Z +15235 2005-08-22T17:43:12Z 2726 416 2005-08-29T23:03:12Z 2 2020-02-15T06:59:46Z +15236 2005-08-22T17:44:27Z 4124 557 2005-08-24T23:25:27Z 1 2020-02-15T06:59:46Z +15237 2005-08-22T17:44:30Z 4485 148 2005-08-24T12:51:30Z 1 2020-02-15T06:59:46Z +15238 2005-08-22T17:46:12Z 403 70 2005-08-29T16:41:12Z 1 2020-02-15T06:59:46Z +15239 2005-08-22T17:46:17Z 1809 501 2005-08-26T19:03:17Z 1 2020-02-15T06:59:46Z +15240 2005-08-22T17:46:41Z 2014 11 2005-08-23T15:08:41Z 2 2020-02-15T06:59:46Z +15241 2005-08-22T17:47:40Z 832 337 2005-08-29T15:28:40Z 2 2020-02-15T06:59:46Z +15242 2005-08-22T17:48:10Z 2106 364 2005-08-27T23:32:10Z 1 2020-02-15T06:59:46Z +15243 2005-08-22T17:48:28Z 4408 308 2005-08-31T13:22:28Z 1 2020-02-15T06:59:46Z +15244 2005-08-22T17:48:42Z 1486 271 2005-08-28T13:17:42Z 2 2020-02-15T06:59:46Z +15245 2005-08-22T17:49:35Z 2545 298 2005-08-26T18:25:35Z 2 2020-02-15T06:59:46Z +15246 2005-08-22T17:50:49Z 3786 100 2005-08-30T22:21:49Z 1 2020-02-15T06:59:46Z +15247 2005-08-22T17:52:05Z 4572 250 2005-08-31T21:37:05Z 1 2020-02-15T06:59:46Z +15248 2005-08-22T17:53:06Z 977 20 2005-08-25T18:43:06Z 2 2020-02-15T06:59:46Z +15249 2005-08-22T17:58:27Z 121 444 2005-08-30T14:55:27Z 1 2020-02-15T06:59:46Z +15250 2005-08-22T18:03:11Z 2176 143 2005-08-27T12:19:11Z 2 2020-02-15T06:59:46Z +15251 2005-08-22T18:03:57Z 1994 285 2005-08-23T20:56:57Z 2 2020-02-15T06:59:46Z +15252 2005-08-22T18:04:22Z 1821 453 2005-08-25T17:14:22Z 2 2020-02-15T06:59:46Z +15253 2005-08-22T18:05:21Z 4143 333 2005-08-23T18:06:21Z 2 2020-02-15T06:59:46Z +15254 2005-08-22T18:13:07Z 3762 209 2005-08-24T21:55:07Z 1 2020-02-15T06:59:46Z +15255 2005-08-22T18:16:50Z 3415 84 2005-08-28T14:14:50Z 2 2020-02-15T06:59:46Z +15256 2005-08-22T18:20:07Z 1873 198 2005-08-28T12:57:07Z 1 2020-02-15T06:59:46Z +15257 2005-08-22T18:21:04Z 915 223 2005-08-30T20:13:04Z 1 2020-02-15T06:59:46Z +15258 2005-08-22T18:22:44Z 788 293 2005-08-25T16:54:44Z 1 2020-02-15T06:59:46Z +15259 2005-08-22T18:23:23Z 3261 488 2005-08-27T13:06:23Z 1 2020-02-15T06:59:46Z +15260 2005-08-22T18:24:16Z 3135 274 2005-08-24T21:26:16Z 1 2020-02-15T06:59:46Z +15261 2005-08-22T18:24:34Z 2200 140 2005-08-27T19:53:34Z 1 2020-02-15T06:59:46Z +15262 2005-08-22T18:25:21Z 2534 298 2005-08-28T22:19:21Z 1 2020-02-15T06:59:46Z +15263 2005-08-22T18:27:33Z 184 324 2005-08-30T14:05:33Z 1 2020-02-15T06:59:46Z +15264 2005-08-22T18:27:38Z 4459 440 2005-08-24T12:39:38Z 1 2020-02-15T06:59:46Z +15265 2005-08-22T18:35:59Z 1763 512 2005-08-28T21:18:59Z 2 2020-02-15T06:59:46Z +15266 2005-08-22T18:37:24Z 1870 124 2005-08-23T17:34:24Z 2 2020-02-15T06:59:46Z +15267 2005-08-22T18:37:48Z 2966 153 2005-08-24T00:22:48Z 1 2020-02-15T06:59:46Z +15268 2005-08-22T18:39:11Z 1245 301 2005-08-26T21:46:11Z 1 2020-02-15T06:59:46Z +15269 2005-08-22T18:39:44Z 524 275 2005-08-24T17:29:44Z 1 2020-02-15T06:59:46Z +15270 2005-08-22T18:48:42Z 4123 262 2005-08-28T15:38:42Z 2 2020-02-15T06:59:47Z +15271 2005-08-22T18:48:48Z 4232 59 2005-08-30T00:45:48Z 2 2020-02-15T06:59:47Z +15272 2005-08-22T18:49:40Z 1664 422 2005-08-28T21:22:40Z 1 2020-02-15T06:59:47Z +15273 2005-08-22T18:53:28Z 2558 422 2005-08-30T18:58:28Z 2 2020-02-15T06:59:47Z +15274 2005-08-22T18:55:52Z 3519 515 2005-08-23T20:02:52Z 1 2020-02-15T06:59:47Z +15275 2005-08-22T18:57:39Z 1522 597 2005-08-23T19:00:39Z 2 2020-02-15T06:59:47Z +15276 2005-08-22T18:59:01Z 4523 490 2005-08-23T19:49:01Z 2 2020-02-15T06:59:47Z +15277 2005-08-22T19:02:48Z 1780 217 2005-08-31T18:53:48Z 2 2020-02-15T06:59:47Z +15278 2005-08-22T19:06:47Z 2454 472 2005-08-25T01:00:47Z 2 2020-02-15T06:59:47Z +15279 2005-08-22T19:08:49Z 1088 363 2005-08-30T00:38:49Z 2 2020-02-15T06:59:47Z +15280 2005-08-22T19:09:52Z 3464 317 2005-08-28T00:39:52Z 1 2020-02-15T06:59:47Z +15281 2005-08-22T19:10:26Z 3992 543 2005-08-27T21:55:26Z 2 2020-02-15T06:59:47Z +15282 2006-02-14T15:16:03Z 1932 163 1 2020-02-15T06:59:47Z +15283 2005-08-22T19:16:04Z 1688 219 2005-08-31T21:05:04Z 1 2020-02-15T06:59:47Z +15284 2005-08-22T19:17:08Z 2265 393 2005-08-29T13:28:08Z 2 2020-02-15T06:59:47Z +15285 2005-08-22T19:17:24Z 481 233 2005-08-25T00:25:24Z 1 2020-02-15T06:59:47Z +15286 2005-08-22T19:17:56Z 3731 74 2005-08-29T16:08:56Z 2 2020-02-15T06:59:47Z +15287 2005-08-22T19:19:37Z 308 535 2005-08-29T16:05:37Z 1 2020-02-15T06:59:47Z +15288 2005-08-22T19:23:58Z 1999 475 2005-08-26T23:28:58Z 1 2020-02-15T06:59:47Z +15289 2005-08-22T19:27:24Z 1026 513 2005-08-30T22:21:24Z 1 2020-02-15T06:59:47Z +15290 2005-08-22T19:28:02Z 270 404 2005-08-31T20:04:02Z 2 2020-02-15T06:59:47Z +15291 2005-08-22T19:28:04Z 1461 494 2005-08-26T15:07:04Z 1 2020-02-15T06:59:47Z +15292 2005-08-22T19:28:56Z 3072 337 2005-08-28T22:39:56Z 2 2020-02-15T06:59:47Z +15293 2006-02-14T15:16:03Z 1219 263 2 2020-02-15T06:59:47Z +15294 2006-02-14T15:16:03Z 70 108 1 2020-02-15T06:59:47Z +15295 2005-08-22T19:36:21Z 2164 186 2005-08-31T00:07:21Z 2 2020-02-15T06:59:47Z +15296 2005-08-22T19:37:20Z 2715 55 2005-08-24T15:16:20Z 1 2020-02-15T06:59:47Z +15297 2006-02-14T15:16:03Z 3192 327 2 2020-02-15T06:59:47Z +15298 2005-08-22T19:41:37Z 1446 1 2005-08-28T22:49:37Z 1 2020-02-15T06:59:47Z +15299 2005-08-22T19:42:57Z 767 381 2005-08-23T15:29:57Z 2 2020-02-15T06:59:47Z +15300 2005-08-22T19:44:00Z 2319 399 2005-08-25T22:49:00Z 2 2020-02-15T06:59:47Z +15301 2005-08-22T19:44:16Z 619 454 2005-08-26T22:57:16Z 2 2020-02-15T06:59:47Z +15302 2005-08-22T19:44:53Z 188 320 2005-08-24T18:13:53Z 2 2020-02-15T06:59:47Z +15303 2005-08-22T19:44:59Z 1672 390 2005-08-30T21:59:59Z 1 2020-02-15T06:59:47Z +15304 2005-08-22T19:45:57Z 4332 112 2005-08-28T00:21:57Z 2 2020-02-15T06:59:47Z +15305 2005-08-22T19:46:05Z 671 529 2005-08-27T19:11:05Z 2 2020-02-15T06:59:47Z +15306 2005-08-22T19:46:36Z 521 340 2005-08-27T14:09:36Z 1 2020-02-15T06:59:47Z +15307 2005-08-22T19:54:26Z 4525 598 2005-08-29T01:38:26Z 2 2020-02-15T06:59:47Z +15308 2005-08-22T19:54:31Z 987 329 2005-08-26T23:09:31Z 1 2020-02-15T06:59:47Z +15309 2005-08-22T19:54:52Z 2743 141 2005-08-24T23:00:52Z 2 2020-02-15T06:59:47Z +15310 2005-08-22T19:56:41Z 2546 360 2005-08-24T16:32:41Z 2 2020-02-15T06:59:47Z +15311 2005-08-22T19:56:52Z 3612 176 2005-08-31T20:15:52Z 2 2020-02-15T06:59:47Z +15312 2005-08-22T19:58:15Z 2509 280 2005-08-25T19:21:15Z 2 2020-02-15T06:59:47Z +15313 2005-08-22T19:59:42Z 2587 333 2005-08-24T15:03:42Z 2 2020-02-15T06:59:47Z +15314 2006-02-14T15:16:03Z 2754 412 1 2020-02-15T06:59:47Z +15315 2005-08-22T20:03:46Z 312 1 2005-08-30T01:51:46Z 2 2020-02-15T06:59:47Z +15316 2005-08-22T20:07:03Z 1830 422 2005-08-27T18:45:03Z 1 2020-02-15T06:59:47Z +15317 2005-08-22T20:14:13Z 2325 512 2005-08-29T18:32:13Z 1 2020-02-15T06:59:47Z +15318 2005-08-22T20:15:16Z 1738 60 2005-08-25T14:17:16Z 1 2020-02-15T06:59:47Z +15319 2005-08-22T20:17:17Z 3041 188 2005-08-25T01:06:17Z 2 2020-02-15T06:59:47Z +15320 2005-08-22T20:17:49Z 648 407 2005-08-28T17:31:49Z 1 2020-02-15T06:59:47Z +15321 2005-08-22T20:20:04Z 4152 384 2005-08-24T23:26:04Z 2 2020-02-15T06:59:47Z +15322 2005-08-22T20:20:30Z 3553 263 2005-08-25T01:26:30Z 2 2020-02-15T06:59:47Z +15323 2005-08-22T20:22:40Z 1153 178 2005-08-26T00:35:40Z 1 2020-02-15T06:59:47Z +15324 2005-08-22T20:23:13Z 161 93 2005-08-29T18:23:13Z 1 2020-02-15T06:59:47Z +15325 2005-08-22T20:27:38Z 3549 74 2005-08-23T15:24:38Z 1 2020-02-15T06:59:47Z +15326 2006-02-14T15:16:03Z 3320 58 1 2020-02-15T06:59:47Z +15327 2005-08-22T20:31:24Z 1018 450 2005-08-30T23:52:24Z 1 2020-02-15T06:59:47Z +15328 2005-08-22T20:31:38Z 4546 274 2005-08-29T20:17:38Z 1 2020-02-15T06:59:47Z +15329 2005-08-22T20:32:39Z 1900 521 2005-08-23T17:15:39Z 1 2020-02-15T06:59:47Z +15330 2005-08-22T20:35:30Z 689 427 2005-08-30T21:54:30Z 1 2020-02-15T06:59:47Z +15331 2005-08-22T20:37:57Z 146 147 2005-08-25T21:56:57Z 1 2020-02-15T06:59:47Z +15332 2005-08-22T20:41:53Z 3368 162 2005-08-24T01:45:53Z 1 2020-02-15T06:59:47Z +15333 2005-08-22T20:44:06Z 1839 142 2005-08-29T22:34:06Z 2 2020-02-15T06:59:47Z +15334 2005-08-22T20:44:35Z 3882 407 2005-08-29T23:03:35Z 2 2020-02-15T06:59:47Z +15335 2005-08-22T20:44:55Z 1593 363 2005-08-28T21:43:55Z 1 2020-02-15T06:59:47Z +15336 2005-08-22T20:47:48Z 490 461 2005-08-31T18:17:48Z 2 2020-02-15T06:59:47Z +15337 2005-08-22T20:49:51Z 280 237 2005-08-26T23:27:51Z 1 2020-02-15T06:59:47Z +15338 2005-08-22T20:51:24Z 502 13 2005-08-24T23:41:24Z 2 2020-02-15T06:59:47Z +15339 2005-08-22T20:52:12Z 1660 331 2005-08-26T00:36:12Z 2 2020-02-15T06:59:47Z +15340 2005-08-22T20:55:56Z 3653 313 2005-08-27T18:52:56Z 1 2020-02-15T06:59:47Z +15341 2005-08-22T20:56:31Z 3359 91 2005-08-30T17:25:31Z 1 2020-02-15T06:59:47Z +15342 2005-08-22T20:56:41Z 3287 459 2005-08-26T22:51:41Z 2 2020-02-15T06:59:47Z +15343 2005-08-22T21:01:25Z 2589 538 2005-08-28T16:15:25Z 1 2020-02-15T06:59:47Z +15344 2005-08-22T21:01:48Z 3560 193 2005-08-27T15:47:48Z 1 2020-02-15T06:59:47Z +15345 2005-08-22T21:05:50Z 3481 277 2005-08-26T20:30:50Z 1 2020-02-15T06:59:47Z +15346 2005-08-22T21:06:00Z 3525 266 2005-08-28T22:08:00Z 1 2020-02-15T06:59:47Z +15347 2005-08-22T21:12:19Z 3764 519 2005-08-24T20:12:19Z 1 2020-02-15T06:59:47Z +15348 2005-08-22T21:13:46Z 3846 587 2005-08-24T17:06:46Z 1 2020-02-15T06:59:47Z +15349 2005-08-22T21:13:51Z 4055 587 2005-08-23T20:55:51Z 1 2020-02-15T06:59:47Z +15350 2005-08-22T21:15:29Z 1170 488 2005-08-24T02:56:29Z 1 2020-02-15T06:59:47Z +15351 2005-08-22T21:15:46Z 3260 154 2005-08-23T17:38:46Z 1 2020-02-15T06:59:47Z +15352 2005-08-22T21:16:54Z 16 560 2005-08-31T00:38:54Z 2 2020-02-15T06:59:47Z +15353 2005-08-22T21:18:08Z 3470 368 2005-08-25T20:29:08Z 2 2020-02-15T06:59:47Z +15354 2005-08-22T21:18:59Z 4212 412 2005-08-27T20:12:59Z 2 2020-02-15T06:59:47Z +15355 2005-08-22T21:19:24Z 3477 493 2005-08-28T20:36:24Z 2 2020-02-15T06:59:47Z +15356 2005-08-22T21:24:19Z 4507 539 2005-08-25T22:32:19Z 2 2020-02-15T06:59:47Z +15357 2005-08-22T21:28:59Z 727 24 2005-08-25T17:15:59Z 1 2020-02-15T06:59:47Z +15358 2005-08-22T21:29:14Z 822 448 2005-08-31T00:10:14Z 2 2020-02-15T06:59:47Z +15359 2005-08-22T21:34:00Z 4505 77 2005-08-29T18:59:00Z 1 2020-02-15T06:59:47Z +15360 2005-08-22T21:36:51Z 1950 531 2005-08-24T16:46:51Z 1 2020-02-15T06:59:47Z +15361 2005-08-22T21:39:45Z 1407 380 2005-08-23T17:32:45Z 2 2020-02-15T06:59:47Z +15362 2005-08-22T21:40:20Z 1023 497 2005-08-29T15:55:20Z 1 2020-02-15T06:59:47Z +15363 2005-08-22T21:41:40Z 2326 480 2005-08-23T21:40:40Z 1 2020-02-15T06:59:47Z +15364 2005-08-22T21:41:41Z 4184 204 2005-08-28T00:49:41Z 1 2020-02-15T06:59:47Z +15365 2005-08-22T21:42:17Z 3382 327 2005-09-01T03:14:17Z 2 2020-02-15T06:59:47Z +15366 2005-08-22T21:45:57Z 1453 374 2005-08-30T16:35:57Z 1 2020-02-15T06:59:47Z +15367 2005-08-22T21:47:53Z 160 355 2005-08-27T17:54:53Z 2 2020-02-15T06:59:47Z +15368 2005-08-22T21:57:15Z 1130 370 2005-08-29T16:28:15Z 1 2020-02-15T06:59:47Z +15369 2005-08-22T21:58:06Z 881 121 2005-08-26T00:27:06Z 2 2020-02-15T06:59:47Z +15370 2005-08-22T21:59:29Z 67 10 2005-08-27T16:32:29Z 1 2020-02-15T06:59:47Z +15371 2006-02-14T15:16:03Z 3672 94 2 2020-02-15T06:59:47Z +15372 2005-08-22T21:59:51Z 3876 273 2005-08-23T17:01:51Z 1 2020-02-15T06:59:47Z +15373 2005-08-22T22:08:11Z 4439 14 2005-08-24T01:05:11Z 2 2020-02-15T06:59:47Z +15374 2005-08-22T22:09:09Z 4275 8 2005-08-31T01:10:09Z 1 2020-02-15T06:59:47Z +15375 2005-08-22T22:12:02Z 3864 191 2005-08-24T00:50:02Z 2 2020-02-15T06:59:47Z +15376 2005-08-22T22:21:35Z 2963 390 2005-08-28T20:56:35Z 1 2020-02-15T06:59:47Z +15377 2005-08-22T22:22:33Z 3405 551 2005-08-29T18:41:33Z 1 2020-02-15T06:59:47Z +15378 2005-08-22T22:25:17Z 1483 340 2005-08-30T17:04:17Z 1 2020-02-15T06:59:47Z +15379 2005-08-22T22:26:13Z 1899 148 2005-08-31T18:19:13Z 1 2020-02-15T06:59:47Z +15380 2005-08-22T22:28:15Z 3642 423 2005-08-28T23:21:15Z 1 2020-02-15T06:59:47Z +15381 2005-08-22T22:28:36Z 845 110 2005-08-24T19:26:36Z 2 2020-02-15T06:59:47Z +15382 2005-08-22T22:30:50Z 333 376 2005-08-24T04:07:50Z 2 2020-02-15T06:59:47Z +15383 2005-08-22T22:31:20Z 686 405 2005-08-28T17:43:20Z 1 2020-02-15T06:59:47Z +15384 2005-08-22T22:34:44Z 3208 26 2005-08-23T23:25:44Z 2 2020-02-15T06:59:47Z +15385 2005-08-22T22:37:34Z 140 434 2005-08-26T00:36:34Z 2 2020-02-15T06:59:47Z +15386 2005-08-22T22:41:14Z 3056 327 2005-08-29T22:29:14Z 1 2020-02-15T06:59:47Z +15387 2005-08-22T22:49:13Z 3879 323 2005-08-29T01:49:13Z 2 2020-02-15T06:59:47Z +15388 2005-08-22T22:49:23Z 3995 50 2005-09-01T03:50:23Z 2 2020-02-15T06:59:47Z +15389 2005-08-22T22:51:13Z 2077 231 2005-08-28T23:46:13Z 1 2020-02-15T06:59:47Z +15390 2005-08-22T22:57:25Z 462 551 2005-08-31T18:06:25Z 1 2020-02-15T06:59:47Z +15391 2005-08-22T23:01:45Z 3918 482 2005-08-29T02:59:45Z 2 2020-02-15T06:59:47Z +15392 2005-08-22T23:02:15Z 538 410 2005-09-01T01:14:15Z 2 2020-02-15T06:59:47Z +15393 2005-08-22T23:04:09Z 2924 443 2005-08-27T02:23:09Z 2 2020-02-15T06:59:47Z +15394 2005-08-22T23:04:21Z 3455 507 2005-08-25T20:53:21Z 2 2020-02-15T06:59:47Z +15395 2005-08-22T23:06:25Z 2880 526 2005-08-30T19:18:25Z 1 2020-02-15T06:59:47Z +15396 2005-08-22T23:07:57Z 4050 319 2005-08-28T19:39:57Z 2 2020-02-15T06:59:47Z +15397 2005-08-22T23:08:46Z 1482 261 2005-08-25T20:58:46Z 1 2020-02-15T06:59:47Z +15398 2005-08-22T23:10:49Z 4451 109 2005-08-28T00:49:49Z 2 2020-02-15T06:59:47Z +15399 2005-08-22T23:11:59Z 3858 379 2005-08-26T22:16:59Z 2 2020-02-15T06:59:47Z +15400 2005-08-22T23:13:03Z 2664 473 2005-08-28T18:34:03Z 1 2020-02-15T06:59:47Z +15401 2005-08-22T23:13:10Z 1721 103 2005-09-01T03:44:10Z 1 2020-02-15T06:59:47Z +15402 2005-08-22T23:17:41Z 1575 293 2005-08-30T20:07:41Z 2 2020-02-15T06:59:47Z +15403 2005-08-22T23:18:10Z 4315 581 2005-08-23T18:08:10Z 2 2020-02-15T06:59:47Z +15404 2005-08-22T23:19:44Z 3557 211 2005-08-30T19:58:44Z 2 2020-02-15T06:59:47Z +15405 2005-08-22T23:20:41Z 3263 596 2005-08-25T23:53:41Z 1 2020-02-15T06:59:47Z +15406 2005-08-22T23:21:22Z 400 227 2005-08-28T22:21:22Z 1 2020-02-15T06:59:47Z +15407 2006-02-14T15:16:03Z 3330 42 2 2020-02-15T06:59:47Z +15408 2005-08-22T23:26:32Z 165 156 2005-08-30T20:22:32Z 1 2020-02-15T06:59:47Z +15409 2005-08-22T23:26:32Z 560 188 2005-08-24T22:44:32Z 1 2020-02-15T06:59:47Z +15410 2005-08-22T23:27:43Z 2052 403 2005-08-29T05:12:43Z 2 2020-02-15T06:59:47Z +15411 2005-08-22T23:35:41Z 4423 461 2005-08-26T00:51:41Z 1 2020-02-15T06:59:47Z +15412 2005-08-22T23:37:11Z 1267 199 2005-08-28T23:26:11Z 2 2020-02-15T06:59:47Z +15413 2005-08-22T23:38:01Z 2494 476 2005-08-23T19:27:01Z 2 2020-02-15T06:59:47Z +15414 2005-08-22T23:43:54Z 718 532 2005-08-30T18:26:54Z 1 2020-02-15T06:59:47Z +15415 2005-08-22T23:48:56Z 4176 204 2005-09-01T02:05:56Z 1 2020-02-15T06:59:47Z +15416 2005-08-22T23:51:23Z 1167 383 2005-08-29T20:03:23Z 1 2020-02-15T06:59:47Z +15417 2005-08-22T23:54:04Z 1826 305 2005-08-26T22:25:04Z 1 2020-02-15T06:59:47Z +15418 2005-08-22T23:54:14Z 808 205 2005-08-28T04:23:14Z 2 2020-02-15T06:59:47Z +15419 2005-08-22T23:54:36Z 1120 450 2005-08-25T00:52:36Z 1 2020-02-15T06:59:47Z +15420 2005-08-22T23:55:51Z 1396 161 2005-08-31T20:09:51Z 2 2020-02-15T06:59:47Z +15421 2005-08-22T23:56:37Z 3 541 2005-08-25T18:58:37Z 2 2020-02-15T06:59:47Z +15422 2005-08-22T23:58:09Z 2601 309 2005-08-30T19:03:09Z 2 2020-02-15T06:59:47Z +15423 2006-02-14T15:16:03Z 1786 596 1 2020-02-15T06:59:47Z +15424 2005-08-23T00:03:01Z 3452 138 2005-08-27T23:27:01Z 2 2020-02-15T06:59:47Z +15425 2005-08-23T00:05:57Z 551 259 2005-09-01T05:08:57Z 1 2020-02-15T06:59:47Z +15426 2005-08-23T00:07:19Z 3280 347 2005-08-26T23:19:19Z 1 2020-02-15T06:59:47Z +15427 2005-08-23T00:07:53Z 2775 448 2005-09-01T02:55:53Z 2 2020-02-15T06:59:47Z +15428 2005-08-23T00:11:52Z 4379 402 2005-08-24T02:35:52Z 1 2020-02-15T06:59:47Z +15429 2005-08-23T00:20:31Z 740 241 2005-08-23T20:22:31Z 1 2020-02-15T06:59:47Z +15430 2006-02-14T15:16:03Z 4353 282 1 2020-02-15T06:59:47Z +15431 2005-08-23T00:26:47Z 3251 550 2005-08-31T23:26:47Z 2 2020-02-15T06:59:47Z +15432 2005-08-23T00:26:52Z 1896 117 2005-08-27T06:11:52Z 1 2020-02-15T06:59:47Z +15433 2005-08-23T00:27:18Z 155 198 2005-08-26T21:36:18Z 1 2020-02-15T06:59:47Z +15434 2005-08-23T00:28:16Z 4378 518 2005-08-26T04:27:16Z 2 2020-02-15T06:59:47Z +15435 2005-08-23T00:28:19Z 2103 468 2005-08-26T00:44:19Z 2 2020-02-15T06:59:47Z +15436 2005-08-23T00:30:26Z 1527 505 2005-08-28T06:29:26Z 1 2020-02-15T06:59:47Z +15437 2005-08-23T00:31:09Z 4236 368 2005-08-30T06:17:09Z 2 2020-02-15T06:59:47Z +15438 2005-08-23T00:31:57Z 2030 46 2005-08-26T20:02:57Z 1 2020-02-15T06:59:47Z +15439 2005-08-23T00:34:28Z 3848 136 2005-08-27T01:07:28Z 1 2020-02-15T06:59:47Z +15440 2005-08-23T00:37:21Z 2254 559 2005-08-24T23:24:21Z 1 2020-02-15T06:59:47Z +15441 2006-02-14T15:16:03Z 258 422 2 2020-02-15T06:59:47Z +15442 2005-08-23T00:42:49Z 1452 42 2005-08-27T00:35:49Z 1 2020-02-15T06:59:47Z +15443 2005-08-23T00:44:15Z 742 598 2005-09-01T05:33:15Z 2 2020-02-15T06:59:47Z +15444 2005-08-23T00:46:52Z 959 153 2005-08-29T20:37:52Z 2 2020-02-15T06:59:47Z +15445 2005-08-23T00:48:29Z 196 28 2005-08-28T00:33:29Z 1 2020-02-15T06:59:47Z +15446 2005-08-23T00:49:24Z 503 379 2005-08-26T02:09:24Z 2 2020-02-15T06:59:47Z +15447 2005-08-23T00:53:57Z 4090 331 2005-08-29T06:19:57Z 2 2020-02-15T06:59:47Z +15448 2005-08-23T00:55:24Z 2903 490 2005-08-25T02:20:24Z 1 2020-02-15T06:59:47Z +15449 2005-08-23T00:55:43Z 2856 461 2005-08-28T03:41:43Z 1 2020-02-15T06:59:47Z +15450 2005-08-23T00:56:01Z 1102 322 2005-08-24T01:00:01Z 2 2020-02-15T06:59:47Z +15451 2005-08-23T00:56:27Z 231 514 2005-08-24T00:15:27Z 2 2020-02-15T06:59:47Z +15452 2005-08-23T00:57:12Z 717 115 2005-08-28T00:19:12Z 1 2020-02-15T06:59:47Z +15453 2005-08-23T01:01:01Z 2 359 2005-08-30T20:08:01Z 1 2020-02-15T06:59:47Z +15454 2006-02-14T15:16:03Z 2946 142 2 2020-02-15T06:59:47Z +15455 2005-08-23T01:05:00Z 3991 238 2005-08-26T22:56:00Z 1 2020-02-15T06:59:47Z +15456 2005-08-23T01:07:01Z 2451 262 2005-08-24T23:28:01Z 2 2020-02-15T06:59:47Z +15457 2005-08-23T01:07:37Z 4539 306 2005-08-26T19:46:37Z 1 2020-02-15T06:59:47Z +15458 2006-02-14T15:16:03Z 25 590 2 2020-02-15T06:59:47Z +15459 2005-08-23T01:09:48Z 2058 346 2005-08-24T04:52:48Z 1 2020-02-15T06:59:47Z +15460 2005-08-23T01:10:42Z 2907 20 2005-08-28T20:49:42Z 2 2020-02-15T06:59:47Z +15461 2005-08-23T01:13:52Z 4542 103 2005-08-30T00:44:52Z 1 2020-02-15T06:59:47Z +15462 2005-08-23T01:14:01Z 3267 389 2005-08-29T19:52:01Z 1 2020-02-15T06:59:47Z +15463 2005-08-23T01:15:07Z 863 127 2005-08-29T06:50:07Z 1 2020-02-15T06:59:47Z +15464 2005-08-23T01:15:18Z 3235 62 2005-08-29T02:58:18Z 2 2020-02-15T06:59:47Z +15465 2005-08-23T01:16:33Z 362 520 2005-08-28T20:08:33Z 2 2020-02-15T06:59:47Z +15466 2005-08-23T01:16:55Z 571 418 2005-08-29T22:57:55Z 1 2020-02-15T06:59:47Z +15467 2005-08-23T01:22:12Z 3658 103 2005-08-29T23:42:12Z 2 2020-02-15T06:59:47Z +15468 2005-08-23T01:25:30Z 2440 399 2005-08-28T01:40:30Z 2 2020-02-15T06:59:47Z +15469 2005-08-23T01:29:59Z 1939 597 2005-08-27T04:02:59Z 1 2020-02-15T06:59:47Z +15470 2005-08-23T01:35:12Z 3009 416 2005-09-01T05:33:12Z 1 2020-02-15T06:59:47Z +15471 2005-08-23T01:38:48Z 2591 139 2005-08-31T19:47:48Z 1 2020-02-15T06:59:47Z +15472 2005-08-23T01:39:05Z 4293 226 2005-08-25T04:43:05Z 1 2020-02-15T06:59:47Z +15473 2005-08-23T01:39:10Z 356 259 2005-08-25T03:48:10Z 1 2020-02-15T06:59:47Z +15474 2005-08-23T01:39:10Z 3015 188 2005-08-23T21:46:10Z 2 2020-02-15T06:59:47Z +15475 2005-08-23T01:44:43Z 4503 562 2005-08-23T23:53:43Z 2 2020-02-15T06:59:47Z +15476 2005-08-23T01:45:07Z 2478 433 2005-08-26T21:07:07Z 2 2020-02-15T06:59:47Z +15477 2005-08-23T01:46:35Z 2406 142 2005-08-28T22:12:35Z 1 2020-02-15T06:59:47Z +15478 2005-08-23T01:50:31Z 4563 167 2005-08-27T21:40:31Z 2 2020-02-15T06:59:47Z +15479 2005-08-23T01:50:53Z 4182 149 2005-08-29T00:53:53Z 1 2020-02-15T06:59:47Z +15480 2005-08-23T01:57:20Z 3298 577 2005-08-26T04:43:20Z 2 2020-02-15T06:59:47Z +15481 2005-08-23T01:59:14Z 3262 414 2005-08-27T04:38:14Z 1 2020-02-15T06:59:47Z +15482 2005-08-23T02:01:20Z 3923 181 2005-08-24T03:25:20Z 2 2020-02-15T06:59:47Z +15483 2005-08-23T02:02:53Z 2970 173 2005-08-26T04:13:53Z 1 2020-02-15T06:59:47Z +15484 2005-08-23T02:04:49Z 642 342 2005-08-24T05:46:49Z 1 2020-02-15T06:59:47Z +15485 2005-08-23T02:04:57Z 281 114 2005-08-28T07:05:57Z 2 2020-02-15T06:59:47Z +15486 2005-08-23T02:05:20Z 1666 502 2005-08-29T07:52:20Z 2 2020-02-15T06:59:47Z +15487 2005-08-23T02:05:51Z 2636 469 2005-08-25T04:45:51Z 1 2020-02-15T06:59:47Z +15488 2005-08-23T02:06:01Z 4535 385 2005-08-29T21:35:01Z 2 2020-02-15T06:59:47Z +15489 2005-08-23T02:06:41Z 764 285 2005-08-25T06:50:41Z 1 2020-02-15T06:59:47Z +15490 2005-08-23T02:08:18Z 3922 493 2005-08-30T06:15:18Z 1 2020-02-15T06:59:47Z +15491 2005-08-23T02:08:40Z 2059 28 2005-08-23T20:23:40Z 2 2020-02-15T06:59:47Z +15492 2005-08-23T02:13:46Z 1298 520 2005-08-26T21:53:46Z 2 2020-02-15T06:59:47Z +15493 2005-08-23T02:20:53Z 3521 308 2005-08-25T23:02:53Z 1 2020-02-15T06:59:47Z +15494 2005-08-23T02:25:09Z 2968 455 2005-08-27T00:18:09Z 1 2020-02-15T06:59:47Z +15495 2005-08-23T02:26:10Z 4310 193 2005-08-30T01:07:10Z 2 2020-02-15T06:59:47Z +15496 2005-08-23T02:30:23Z 1863 275 2005-08-31T03:31:23Z 2 2020-02-15T06:59:47Z +15497 2006-02-14T15:16:03Z 363 107 1 2020-02-15T06:59:47Z +15498 2005-08-23T02:33:27Z 1583 83 2005-08-23T22:30:27Z 1 2020-02-15T06:59:47Z +15499 2005-08-23T02:37:19Z 630 488 2005-08-23T20:57:19Z 1 2020-02-15T06:59:47Z +15500 2005-08-23T02:39:37Z 886 74 2005-08-27T06:42:37Z 1 2020-02-15T06:59:47Z +15501 2005-08-23T02:39:56Z 4468 138 2005-08-25T04:39:56Z 1 2020-02-15T06:59:47Z +15502 2005-08-23T02:40:04Z 3219 433 2005-08-31T00:36:04Z 2 2020-02-15T06:59:47Z +15503 2005-08-23T02:44:49Z 4519 582 2005-08-27T06:33:49Z 2 2020-02-15T06:59:47Z +15504 2005-08-23T02:45:21Z 1967 315 2005-09-01T03:24:21Z 2 2020-02-15T06:59:47Z +15505 2005-08-23T02:46:13Z 1144 375 2005-08-26T23:34:13Z 2 2020-02-15T06:59:47Z +15506 2005-08-23T02:48:24Z 1914 553 2005-08-28T04:10:24Z 1 2020-02-15T06:59:47Z +15507 2005-08-23T02:48:26Z 3130 563 2005-08-27T01:32:26Z 1 2020-02-15T06:59:47Z +15508 2005-08-23T02:49:04Z 4035 293 2005-08-29T00:58:04Z 1 2020-02-15T06:59:47Z +15509 2005-08-23T02:51:24Z 1291 6 2005-08-31T06:21:24Z 2 2020-02-15T06:59:47Z +15510 2005-08-23T02:51:27Z 3239 209 2005-09-01T02:44:27Z 2 2020-02-15T06:59:47Z +15511 2005-08-23T02:55:42Z 3327 303 2005-08-31T03:14:42Z 2 2020-02-15T06:59:47Z +15512 2005-08-23T02:57:30Z 4336 25 2005-08-25T01:47:30Z 2 2020-02-15T06:59:47Z +15513 2005-08-23T03:01:56Z 3779 147 2005-08-24T23:46:56Z 2 2020-02-15T06:59:47Z +15514 2005-08-23T03:03:40Z 2824 366 2005-08-24T01:06:40Z 1 2020-02-15T06:59:47Z +15515 2005-08-23T03:03:53Z 3940 307 2005-08-25T08:27:53Z 2 2020-02-15T06:59:47Z +15516 2005-08-23T03:12:54Z 219 82 2005-08-30T04:02:54Z 1 2020-02-15T06:59:47Z +15517 2005-08-23T03:13:01Z 2221 187 2005-08-25T21:14:01Z 2 2020-02-15T06:59:47Z +15518 2005-08-23T03:19:34Z 3522 410 2005-08-24T02:55:34Z 1 2020-02-15T06:59:47Z +15519 2005-08-23T03:23:32Z 542 443 2005-08-25T03:48:32Z 1 2020-02-15T06:59:47Z +15520 2005-08-23T03:30:45Z 1792 163 2005-09-01T00:20:45Z 1 2020-02-15T06:59:47Z +15521 2005-08-23T03:30:51Z 134 331 2005-08-28T22:09:51Z 1 2020-02-15T06:59:47Z +15522 2005-08-23T03:32:31Z 2396 468 2005-08-30T02:17:31Z 2 2020-02-15T06:59:47Z +15523 2005-08-23T03:32:36Z 2570 432 2005-08-26T22:08:36Z 2 2020-02-15T06:59:47Z +15524 2005-08-23T03:36:26Z 2886 68 2005-08-26T06:28:26Z 2 2020-02-15T06:59:47Z +15525 2005-08-23T03:43:32Z 3509 123 2005-08-25T07:31:32Z 2 2020-02-15T06:59:47Z +15526 2005-08-23T03:44:30Z 2892 516 2005-08-30T08:19:30Z 1 2020-02-15T06:59:47Z +15527 2005-08-23T03:44:51Z 88 393 2005-08-25T03:09:51Z 1 2020-02-15T06:59:47Z +15528 2005-08-23T03:45:40Z 3033 114 2005-08-25T01:16:40Z 1 2020-02-15T06:59:47Z +15529 2005-08-23T03:46:47Z 4015 19 2005-08-24T00:59:47Z 1 2020-02-15T06:59:47Z +15530 2005-08-23T03:50:48Z 154 167 2005-08-28T22:17:48Z 2 2020-02-15T06:59:47Z +15531 2005-08-23T03:52:36Z 2410 355 2005-08-25T23:21:36Z 1 2020-02-15T06:59:47Z +15532 2006-02-14T15:16:03Z 1061 23 1 2020-02-15T06:59:47Z +15533 2005-08-23T03:54:39Z 1895 400 2005-08-26T08:27:39Z 2 2020-02-15T06:59:47Z +15534 2005-08-23T03:55:54Z 544 169 2005-08-24T03:54:54Z 1 2020-02-15T06:59:47Z +15535 2005-08-23T03:58:02Z 2371 346 2005-08-25T05:06:02Z 2 2020-02-15T06:59:47Z +15536 2005-08-23T03:58:28Z 4004 98 2005-08-31T03:28:28Z 2 2020-02-15T06:59:47Z +15537 2005-08-23T04:00:30Z 2958 137 2005-08-24T01:45:30Z 2 2020-02-15T06:59:47Z +15538 2005-08-23T04:07:37Z 4226 211 2005-08-28T07:37:37Z 1 2020-02-15T06:59:47Z +15539 2005-08-23T04:09:03Z 2853 582 2005-08-26T04:01:03Z 1 2020-02-15T06:59:47Z +15540 2005-08-23T04:12:52Z 1696 197 2005-08-31T04:25:52Z 1 2020-02-15T06:59:47Z +15541 2005-08-23T04:13:53Z 2762 148 2005-08-29T05:51:53Z 1 2020-02-15T06:59:47Z +15542 2006-02-14T15:16:03Z 21 111 1 2020-02-15T06:59:47Z +15543 2005-08-23T04:15:41Z 3836 282 2005-09-01T05:09:41Z 2 2020-02-15T06:59:47Z +15544 2005-08-23T04:17:56Z 1918 30 2005-09-01T00:43:56Z 2 2020-02-15T06:59:47Z +15545 2005-08-23T04:20:16Z 843 513 2005-08-29T08:22:16Z 1 2020-02-15T06:59:47Z +15546 2005-08-23T04:20:38Z 2087 223 2005-09-01T09:57:38Z 2 2020-02-15T06:59:47Z +15547 2005-08-23T04:25:50Z 1488 69 2005-08-26T00:57:50Z 1 2020-02-15T06:59:47Z +15548 2005-08-23T04:26:20Z 2350 334 2005-08-28T01:27:20Z 1 2020-02-15T06:59:47Z +15549 2005-08-23T04:27:06Z 369 170 2005-09-01T06:07:06Z 1 2020-02-15T06:59:47Z +15550 2005-08-23T04:27:54Z 1375 465 2005-08-29T01:29:54Z 1 2020-02-15T06:59:47Z +15551 2005-08-23T04:28:25Z 3570 345 2005-08-26T07:19:25Z 1 2020-02-15T06:59:47Z +15552 2005-08-23T04:33:23Z 4347 527 2005-09-01T10:25:23Z 2 2020-02-15T06:59:47Z +15553 2005-08-23T04:33:39Z 1659 232 2005-08-25T07:53:39Z 2 2020-02-15T06:59:47Z +15554 2005-08-23T04:48:12Z 198 280 2005-08-29T05:11:12Z 1 2020-02-15T06:59:47Z +15555 2005-08-23T04:51:52Z 1869 347 2005-08-24T01:01:52Z 1 2020-02-15T06:59:47Z +15556 2005-08-23T04:52:16Z 3683 108 2005-09-01T02:05:16Z 2 2020-02-15T06:59:47Z +15557 2005-08-23T04:52:17Z 3641 444 2005-08-30T02:15:17Z 2 2020-02-15T06:59:47Z +15558 2005-08-23T04:52:22Z 638 474 2005-09-01T02:26:22Z 1 2020-02-15T06:59:47Z +15559 2005-08-23T04:55:05Z 1773 517 2005-08-30T09:01:05Z 2 2020-02-15T06:59:47Z +15560 2005-08-23T05:01:13Z 3616 107 2005-09-01T05:02:13Z 1 2020-02-15T06:59:47Z +15561 2005-08-23T05:02:31Z 68 469 2005-09-01T02:51:31Z 1 2020-02-15T06:59:47Z +15562 2005-08-23T05:04:33Z 4238 149 2005-08-27T09:58:33Z 1 2020-02-15T06:59:47Z +15563 2005-08-23T05:08:58Z 170 372 2005-08-24T04:24:58Z 1 2020-02-15T06:59:47Z +15564 2005-08-23T05:10:42Z 1268 353 2005-08-30T03:17:42Z 1 2020-02-15T06:59:47Z +15565 2005-08-23T05:13:09Z 71 546 2005-08-30T08:58:09Z 2 2020-02-15T06:59:47Z +15566 2005-08-23T05:17:23Z 4344 76 2005-09-01T08:09:23Z 2 2020-02-15T06:59:47Z +15567 2005-08-23T05:20:36Z 2506 54 2005-08-24T10:09:36Z 2 2020-02-15T06:59:47Z +15568 2005-08-23T05:24:09Z 988 556 2005-08-27T08:57:09Z 2 2020-02-15T06:59:47Z +15569 2005-08-23T05:24:29Z 1071 313 2005-08-30T08:23:29Z 2 2020-02-15T06:59:47Z +15570 2005-08-23T05:24:55Z 4014 557 2005-08-31T07:06:55Z 2 2020-02-15T06:59:47Z +15571 2005-08-23T05:26:30Z 716 57 2005-08-29T00:54:30Z 2 2020-02-15T06:59:47Z +15572 2005-08-23T05:28:01Z 2816 506 2005-08-27T00:14:01Z 2 2020-02-15T06:59:47Z +15573 2005-08-23T05:28:36Z 3133 561 2005-08-27T05:37:36Z 2 2020-02-15T06:59:47Z +15574 2005-08-23T05:29:32Z 3253 130 2005-09-01T01:25:32Z 2 2020-02-15T06:59:47Z +15575 2005-08-23T05:30:19Z 3916 218 2005-08-27T05:19:19Z 2 2020-02-15T06:59:47Z +15576 2005-08-23T05:32:03Z 3257 595 2005-08-26T02:31:03Z 1 2020-02-15T06:59:47Z +15577 2006-02-14T15:16:03Z 539 29 2 2020-02-15T06:59:47Z +15578 2005-08-23T05:37:13Z 2829 302 2005-08-27T01:11:13Z 1 2020-02-15T06:59:47Z +15579 2005-08-23T05:38:41Z 3986 480 2005-08-29T09:18:41Z 1 2020-02-15T06:59:47Z +15580 2005-08-23T05:39:06Z 754 279 2005-09-01T01:14:06Z 2 2020-02-15T06:59:47Z +15581 2005-08-23T05:42:13Z 4010 462 2005-08-28T00:03:13Z 1 2020-02-15T06:59:47Z +15582 2005-08-23T05:45:44Z 4264 297 2005-08-25T07:54:44Z 2 2020-02-15T06:59:47Z +15583 2005-08-23T05:47:55Z 4299 215 2005-08-26T01:46:55Z 1 2020-02-15T06:59:47Z +15584 2005-08-23T05:49:21Z 3526 500 2005-08-27T04:49:21Z 1 2020-02-15T06:59:47Z +15585 2005-08-23T05:55:22Z 1177 545 2005-08-24T11:45:22Z 2 2020-02-15T06:59:47Z +15586 2005-08-23T05:57:04Z 3232 148 2005-08-31T01:59:04Z 1 2020-02-15T06:59:47Z +15587 2005-08-23T06:00:28Z 2510 499 2005-08-29T10:15:28Z 1 2020-02-15T06:59:47Z +15588 2005-08-23T06:02:35Z 1810 503 2005-08-30T04:01:35Z 2 2020-02-15T06:59:47Z +15589 2005-08-23T06:03:31Z 2379 22 2005-08-30T07:44:31Z 2 2020-02-15T06:59:47Z +15590 2005-08-23T06:09:44Z 4048 599 2005-09-01T06:53:44Z 2 2020-02-15T06:59:47Z +15591 2005-08-23T06:11:52Z 64 62 2005-08-25T05:34:52Z 1 2020-02-15T06:59:47Z +15593 2005-08-23T06:15:09Z 3734 153 2005-08-27T07:47:09Z 2 2020-02-15T06:59:47Z +15594 2005-08-23T06:18:43Z 4227 567 2005-09-01T09:09:43Z 2 2020-02-15T06:59:47Z +15595 2005-08-23T06:19:12Z 4046 264 2005-08-31T04:52:12Z 1 2020-02-15T06:59:47Z +15596 2005-08-23T06:19:51Z 3834 186 2005-08-25T03:32:51Z 1 2020-02-15T06:59:47Z +15597 2005-08-23T06:21:20Z 3795 420 2005-08-28T02:47:20Z 2 2020-02-15T06:59:47Z +15598 2005-08-23T06:23:26Z 2794 66 2005-09-01T05:43:26Z 1 2020-02-15T06:59:47Z +15599 2005-08-23T06:25:07Z 4560 103 2005-08-29T00:48:07Z 1 2020-02-15T06:59:47Z +15600 2005-08-23T06:31:24Z 2260 113 2005-08-28T06:53:24Z 1 2020-02-15T06:59:47Z +15601 2005-08-23T06:33:26Z 3643 579 2005-08-24T04:10:26Z 1 2020-02-15T06:59:47Z +15602 2005-08-23T06:41:07Z 1429 81 2005-08-24T07:16:07Z 1 2020-02-15T06:59:47Z +15603 2005-08-23T06:41:32Z 2565 6 2005-08-28T08:51:32Z 1 2020-02-15T06:59:47Z +15604 2005-08-23T06:44:19Z 4000 458 2005-08-29T07:17:19Z 1 2020-02-15T06:59:47Z +15605 2005-08-23T06:48:47Z 3152 544 2005-08-28T06:09:47Z 1 2020-02-15T06:59:47Z +15606 2005-08-23T06:50:27Z 1811 279 2005-08-28T04:23:27Z 2 2020-02-15T06:59:47Z +15607 2005-08-23T06:54:06Z 4118 484 2005-08-26T05:03:06Z 2 2020-02-15T06:59:47Z +15608 2005-08-23T06:55:26Z 2921 454 2005-08-28T10:24:26Z 1 2020-02-15T06:59:47Z +15609 2005-08-23T06:56:04Z 1730 256 2005-09-01T03:25:04Z 1 2020-02-15T06:59:47Z +15610 2005-08-23T06:56:15Z 2076 215 2005-08-24T07:37:15Z 2 2020-02-15T06:59:47Z +15611 2005-08-23T06:56:18Z 1713 184 2005-08-25T06:10:18Z 1 2020-02-15T06:59:47Z +15612 2005-08-23T06:59:07Z 3367 305 2005-09-01T11:26:07Z 2 2020-02-15T06:59:47Z +15613 2005-08-23T07:03:19Z 307 461 2005-08-31T07:50:19Z 2 2020-02-15T06:59:47Z +15614 2005-08-23T07:05:15Z 1216 287 2005-09-01T11:41:15Z 1 2020-02-15T06:59:47Z +15615 2005-08-23T07:06:00Z 899 584 2005-08-30T11:21:00Z 2 2020-02-15T06:59:47Z +15616 2005-08-23T07:06:38Z 2947 70 2005-08-30T04:16:38Z 1 2020-02-15T06:59:47Z +15617 2005-08-23T07:07:22Z 4085 569 2005-08-27T01:24:22Z 2 2020-02-15T06:59:47Z +15618 2005-08-23T07:07:58Z 1903 60 2005-08-29T03:48:58Z 1 2020-02-15T06:59:47Z +15619 2005-08-23T07:10:14Z 2468 3 2005-08-26T07:21:14Z 2 2020-02-15T06:59:47Z +15620 2005-08-23T07:10:22Z 1173 270 2005-08-28T06:51:22Z 2 2020-02-15T06:59:47Z +15621 2005-08-23T07:13:43Z 3832 123 2005-08-29T08:19:43Z 1 2020-02-15T06:59:47Z +15622 2005-08-23T07:22:02Z 3335 302 2005-09-01T06:08:02Z 2 2020-02-15T06:59:47Z +15623 2005-08-23T07:23:29Z 3003 525 2005-08-31T01:47:29Z 1 2020-02-15T06:59:47Z +15624 2005-08-23T07:24:27Z 396 105 2005-08-29T12:36:27Z 2 2020-02-15T06:59:47Z +15625 2005-08-23T07:25:29Z 4200 207 2005-08-27T13:17:29Z 2 2020-02-15T06:59:47Z +15626 2005-08-23T07:25:34Z 640 370 2005-08-28T11:01:34Z 1 2020-02-15T06:59:47Z +15627 2005-08-23T07:25:38Z 1364 453 2005-08-31T02:53:38Z 2 2020-02-15T06:59:47Z +15628 2005-08-23T07:28:04Z 1348 408 2005-08-26T04:23:04Z 1 2020-02-15T06:59:47Z +15629 2005-08-23T07:28:22Z 3725 286 2005-08-29T06:29:22Z 2 2020-02-15T06:59:47Z +15630 2005-08-23T07:29:13Z 3590 580 2005-08-31T04:33:13Z 2 2020-02-15T06:59:47Z +15631 2005-08-23T07:30:23Z 2458 93 2005-08-24T07:23:23Z 1 2020-02-15T06:59:47Z +15632 2005-08-23T07:30:26Z 2941 60 2005-08-24T07:53:26Z 2 2020-02-15T06:59:47Z +15633 2005-08-23T07:31:10Z 882 497 2005-08-26T04:35:10Z 2 2020-02-15T06:59:47Z +15634 2005-08-23T07:34:18Z 2517 576 2005-08-24T12:00:18Z 2 2020-02-15T06:59:47Z +15635 2005-08-23T07:43:00Z 3308 4 2005-08-27T10:47:00Z 1 2020-02-15T06:59:47Z +15636 2005-08-23T07:50:46Z 1169 380 2005-08-26T07:59:46Z 2 2020-02-15T06:59:47Z +15637 2005-08-23T07:53:38Z 445 172 2005-08-29T03:16:38Z 2 2020-02-15T06:59:47Z +15638 2005-08-23T07:54:54Z 3358 563 2005-08-30T13:33:54Z 2 2020-02-15T06:59:47Z +15639 2005-08-23T08:03:25Z 42 214 2005-08-24T10:21:25Z 2 2020-02-15T06:59:47Z +15640 2005-08-23T08:04:40Z 3505 262 2005-08-24T06:38:40Z 1 2020-02-15T06:59:47Z +15641 2005-08-23T08:06:49Z 3126 240 2005-08-24T13:17:49Z 1 2020-02-15T06:59:47Z +15642 2005-08-23T08:09:11Z 2627 160 2005-08-28T05:57:11Z 1 2020-02-15T06:59:47Z +15643 2005-08-23T08:13:26Z 103 298 2005-08-25T05:18:26Z 2 2020-02-15T06:59:47Z +15644 2006-02-14T15:16:03Z 3139 43 2 2020-02-15T06:59:47Z +15645 2006-02-14T15:16:03Z 3838 214 2 2020-02-15T06:59:47Z +15646 2005-08-23T08:19:55Z 3217 114 2005-08-29T02:32:55Z 1 2020-02-15T06:59:47Z +15647 2005-08-23T08:23:56Z 2051 251 2005-08-26T11:00:56Z 1 2020-02-15T06:59:47Z +15648 2005-08-23T08:27:57Z 4039 80 2005-08-30T08:53:57Z 2 2020-02-15T06:59:47Z +15649 2005-08-23T08:28:03Z 415 60 2005-08-30T05:11:03Z 1 2020-02-15T06:59:47Z +15650 2005-08-23T08:29:53Z 2447 353 2005-08-25T07:23:53Z 2 2020-02-15T06:59:47Z +15651 2005-08-23T08:31:49Z 3393 451 2005-08-26T02:57:49Z 1 2020-02-15T06:59:47Z +15652 2005-08-23T08:34:10Z 4440 578 2005-08-30T12:31:10Z 1 2020-02-15T06:59:47Z +15653 2005-08-23T08:34:42Z 2736 439 2005-09-01T03:07:42Z 1 2020-02-15T06:59:47Z +15654 2005-08-23T08:34:53Z 4360 471 2005-08-30T04:18:53Z 2 2020-02-15T06:59:47Z +15655 2006-02-14T15:16:03Z 604 359 1 2020-02-15T06:59:47Z +15656 2005-08-23T08:38:58Z 4239 334 2005-08-24T04:08:58Z 2 2020-02-15T06:59:47Z +15657 2005-08-23T08:42:40Z 1897 36 2005-09-01T13:08:40Z 1 2020-02-15T06:59:47Z +15658 2005-08-23T08:48:43Z 3565 22 2005-08-25T05:38:43Z 1 2020-02-15T06:59:47Z +15659 2005-08-23T08:48:43Z 4573 131 2005-08-27T14:19:43Z 2 2020-02-15T06:59:47Z +15660 2005-08-23T08:51:21Z 3223 388 2005-08-28T06:26:21Z 2 2020-02-15T06:59:47Z +15661 2005-08-23T08:52:03Z 1599 346 2005-08-30T08:17:03Z 2 2020-02-15T06:59:47Z +15662 2005-08-23T08:52:50Z 3028 223 2005-08-24T08:08:50Z 1 2020-02-15T06:59:47Z +15663 2005-08-23T08:54:26Z 3291 291 2005-08-29T02:56:26Z 1 2020-02-15T06:59:47Z +15664 2005-08-23T08:57:11Z 2029 351 2005-08-31T14:19:11Z 2 2020-02-15T06:59:47Z +15665 2005-08-23T08:59:12Z 3471 487 2005-08-24T12:50:12Z 2 2020-02-15T06:59:47Z +15666 2005-08-23T09:01:10Z 3406 586 2005-08-31T12:32:10Z 2 2020-02-15T06:59:47Z +15667 2005-08-23T09:02:03Z 1302 73 2005-08-24T05:47:03Z 1 2020-02-15T06:59:47Z +15668 2005-08-23T09:02:04Z 1963 38 2005-08-29T03:17:04Z 2 2020-02-15T06:59:47Z +15669 2005-08-23T09:06:17Z 1542 334 2005-08-30T08:10:17Z 2 2020-02-15T06:59:47Z +15670 2005-08-23T09:07:11Z 2834 211 2005-08-31T04:32:11Z 2 2020-02-15T06:59:47Z +15671 2005-08-23T09:08:16Z 3716 112 2005-08-29T14:01:16Z 1 2020-02-15T06:59:47Z +15672 2005-08-23T09:09:18Z 701 210 2005-08-27T06:19:18Z 1 2020-02-15T06:59:47Z +15673 2005-08-23T09:12:50Z 3096 321 2005-08-29T12:45:50Z 2 2020-02-15T06:59:47Z +15674 2005-08-23T09:16:39Z 4482 90 2005-09-01T11:57:39Z 1 2020-02-15T06:59:47Z +15675 2005-08-23T09:18:52Z 4153 293 2005-08-30T14:59:52Z 2 2020-02-15T06:59:47Z +15676 2005-08-23T09:23:08Z 3874 353 2005-08-30T06:19:08Z 2 2020-02-15T06:59:47Z +15677 2005-08-23T09:23:36Z 2050 109 2005-08-27T05:01:36Z 1 2020-02-15T06:59:47Z +15678 2005-08-23T09:23:45Z 1345 413 2005-08-27T11:38:45Z 2 2020-02-15T06:59:47Z +15679 2005-08-23T09:27:29Z 2945 103 2005-08-28T09:14:29Z 1 2020-02-15T06:59:47Z +15680 2005-08-23T09:33:22Z 1370 169 2005-08-31T13:29:22Z 2 2020-02-15T06:59:47Z +15681 2005-08-23T09:35:34Z 2813 61 2005-08-27T08:33:34Z 1 2020-02-15T06:59:47Z +15682 2005-08-23T09:37:34Z 3293 31 2005-08-31T06:01:34Z 1 2020-02-15T06:59:47Z +15683 2005-08-23T09:38:17Z 3787 168 2005-08-30T12:31:17Z 2 2020-02-15T06:59:47Z +15684 2005-08-23T09:40:04Z 3976 586 2005-08-28T15:28:04Z 1 2020-02-15T06:59:47Z +15685 2005-08-23T09:41:28Z 370 491 2005-08-30T10:11:28Z 1 2020-02-15T06:59:47Z +15686 2005-08-23T09:42:21Z 2041 206 2005-08-29T12:22:21Z 1 2020-02-15T06:59:47Z +15687 2005-08-23T09:46:33Z 276 112 2005-09-01T06:07:33Z 1 2020-02-15T06:59:47Z +15688 2005-08-23T09:48:45Z 2851 105 2005-08-30T10:28:45Z 2 2020-02-15T06:59:47Z +15689 2005-08-23T09:52:55Z 248 259 2005-08-29T11:15:55Z 1 2020-02-15T06:59:47Z +15690 2005-08-23T09:53:30Z 2102 554 2005-08-29T10:27:30Z 1 2020-02-15T06:59:47Z +15691 2005-08-23T09:53:54Z 784 200 2005-08-27T10:14:54Z 1 2020-02-15T06:59:47Z +15692 2005-08-23T10:00:02Z 1852 503 2005-08-24T05:25:02Z 1 2020-02-15T06:59:47Z +15693 2005-08-23T10:00:24Z 748 94 2005-08-25T08:23:24Z 1 2020-02-15T06:59:47Z +15694 2005-08-23T10:02:46Z 3017 506 2005-08-31T05:46:46Z 2 2020-02-15T06:59:47Z +15695 2006-02-14T15:16:03Z 2954 300 1 2020-02-15T06:59:47Z +15696 2005-08-23T10:04:17Z 2836 93 2005-08-25T08:47:17Z 2 2020-02-15T06:59:47Z +15697 2005-08-23T10:04:36Z 1987 380 2005-08-24T05:00:36Z 2 2020-02-15T06:59:47Z +15698 2005-08-23T10:11:40Z 4465 395 2005-08-28T08:50:40Z 2 2020-02-15T06:59:47Z +15699 2005-08-23T10:20:35Z 4155 501 2005-08-30T13:56:35Z 1 2020-02-15T06:59:47Z +15700 2005-08-23T10:21:21Z 2935 552 2005-08-24T15:37:21Z 1 2020-02-15T06:59:47Z +15701 2005-08-23T10:22:21Z 2942 516 2005-08-24T10:52:21Z 1 2020-02-15T06:59:47Z +15702 2005-08-23T10:23:28Z 1602 56 2005-08-29T11:08:28Z 2 2020-02-15T06:59:47Z +15703 2005-08-23T10:23:48Z 2883 322 2005-09-01T06:54:48Z 2 2020-02-15T06:59:47Z +15704 2005-08-23T10:25:45Z 738 71 2005-08-29T16:06:45Z 2 2020-02-15T06:59:47Z +15705 2005-08-23T10:32:52Z 936 356 2005-08-29T13:18:52Z 2 2020-02-15T06:59:47Z +15706 2005-08-23T10:32:52Z 4486 220 2005-08-24T07:03:52Z 2 2020-02-15T06:59:47Z +15707 2005-08-23T10:35:45Z 3646 91 2005-08-27T10:57:45Z 1 2020-02-15T06:59:47Z +15708 2005-08-23T10:35:51Z 1974 46 2005-08-27T16:02:51Z 1 2020-02-15T06:59:47Z +15709 2005-08-23T10:36:00Z 346 206 2005-08-28T06:18:00Z 2 2020-02-15T06:59:47Z +15710 2006-02-14T15:16:03Z 1020 421 1 2020-02-15T06:59:47Z +15711 2005-08-23T10:43:00Z 789 297 2005-08-29T16:29:00Z 1 2020-02-15T06:59:47Z +15712 2005-08-23T10:43:56Z 1882 351 2005-08-29T15:35:56Z 2 2020-02-15T06:59:47Z +15713 2005-08-23T10:56:15Z 337 432 2005-08-29T09:14:15Z 2 2020-02-15T06:59:47Z +15714 2006-02-14T15:16:03Z 2083 56 1 2020-02-15T06:59:47Z +15715 2005-08-23T10:57:40Z 3808 86 2005-08-28T12:40:40Z 1 2020-02-15T06:59:47Z +15716 2005-08-23T11:02:00Z 2812 408 2005-08-28T14:46:00Z 1 2020-02-15T06:59:47Z +15717 2006-02-14T15:16:03Z 902 208 2 2020-02-15T06:59:47Z +15718 2005-08-23T11:05:17Z 2180 276 2005-08-28T12:50:17Z 1 2020-02-15T06:59:47Z +15719 2005-08-23T11:08:46Z 3990 599 2005-08-25T07:25:46Z 1 2020-02-15T06:59:47Z +15720 2005-08-23T11:15:20Z 2490 456 2005-08-31T09:49:20Z 1 2020-02-15T06:59:47Z +15721 2005-08-23T11:16:16Z 685 154 2005-08-28T10:21:16Z 1 2020-02-15T06:59:47Z +15722 2005-08-23T11:16:29Z 2809 26 2005-09-01T13:24:29Z 2 2020-02-15T06:59:47Z +15723 2005-08-23T11:17:26Z 3915 504 2005-08-31T13:58:26Z 2 2020-02-15T06:59:47Z +15724 2005-08-23T11:22:09Z 1025 478 2005-08-28T12:56:09Z 2 2020-02-15T06:59:47Z +15725 2005-08-23T11:25:00Z 378 599 2005-08-26T11:46:00Z 1 2020-02-15T06:59:47Z +15726 2005-08-23T11:28:26Z 906 503 2005-08-28T11:23:26Z 2 2020-02-15T06:59:47Z +15727 2005-08-23T11:28:49Z 2184 416 2005-08-24T06:24:49Z 2 2020-02-15T06:59:47Z +15728 2005-08-23T11:30:32Z 2567 323 2005-08-28T09:52:32Z 2 2020-02-15T06:59:47Z +15729 2006-02-14T15:16:03Z 2699 193 2 2020-02-15T06:59:47Z +15730 2005-08-23T11:32:35Z 947 147 2005-08-30T13:46:35Z 2 2020-02-15T06:59:47Z +15731 2005-08-23T11:33:25Z 3403 118 2005-08-24T07:19:25Z 2 2020-02-15T06:59:47Z +15732 2005-08-23T11:35:12Z 3247 412 2005-08-26T12:50:12Z 2 2020-02-15T06:59:47Z +15733 2005-08-23T11:37:32Z 4185 512 2005-08-28T16:27:32Z 1 2020-02-15T06:59:47Z +15734 2005-08-23T11:40:08Z 3952 302 2005-08-27T08:16:08Z 1 2020-02-15T06:59:47Z +15735 2006-02-14T15:16:03Z 3167 295 1 2020-02-15T06:59:47Z +15736 2005-08-23T11:40:30Z 4272 127 2005-08-30T12:40:30Z 1 2020-02-15T06:59:47Z +15737 2005-08-23T11:52:18Z 996 83 2005-08-28T15:28:18Z 1 2020-02-15T06:59:47Z +15738 2005-08-23T11:55:50Z 556 38 2005-08-30T15:07:50Z 1 2020-02-15T06:59:47Z +15739 2005-08-23T11:56:22Z 266 74 2005-08-29T16:10:22Z 2 2020-02-15T06:59:47Z +15740 2005-08-23T12:07:51Z 100 229 2005-08-24T13:23:51Z 2 2020-02-15T06:59:47Z +15741 2005-08-23T12:10:54Z 4243 126 2005-08-24T10:08:54Z 2 2020-02-15T06:59:47Z +15742 2005-08-23T12:11:37Z 1339 200 2005-08-31T07:28:37Z 2 2020-02-15T06:59:47Z +15743 2005-08-23T12:12:05Z 1625 139 2005-08-26T11:35:05Z 1 2020-02-15T06:59:47Z +15744 2005-08-23T12:15:51Z 2364 59 2005-08-31T17:19:51Z 1 2020-02-15T06:59:47Z +15745 2006-02-14T15:16:03Z 2737 43 1 2020-02-15T06:59:47Z +15746 2005-08-23T12:26:19Z 2241 246 2005-08-26T09:51:19Z 2 2020-02-15T06:59:47Z +15747 2005-08-23T12:29:24Z 1517 381 2005-08-31T08:27:24Z 2 2020-02-15T06:59:47Z +15748 2005-08-23T12:33:00Z 2757 380 2005-08-25T15:15:00Z 2 2020-02-15T06:59:47Z +15749 2005-08-23T12:33:41Z 4224 575 2005-08-24T10:52:41Z 1 2020-02-15T06:59:47Z +15750 2005-08-23T12:36:05Z 4474 496 2005-08-24T17:40:05Z 2 2020-02-15T06:59:47Z +15751 2005-08-23T12:41:07Z 697 199 2005-08-29T07:03:07Z 2 2020-02-15T06:59:47Z +15752 2005-08-23T12:41:38Z 2112 17 2005-09-01T14:06:38Z 1 2020-02-15T06:59:47Z +15753 2005-08-23T12:43:30Z 3451 144 2005-09-01T09:07:30Z 2 2020-02-15T06:59:47Z +15754 2005-08-23T12:43:42Z 2306 356 2005-08-27T17:45:42Z 2 2020-02-15T06:59:47Z +15755 2005-08-23T12:46:38Z 511 423 2005-08-25T12:59:38Z 1 2020-02-15T06:59:47Z +15756 2005-08-23T12:47:05Z 878 112 2005-08-28T08:34:05Z 2 2020-02-15T06:59:47Z +15757 2005-08-23T12:47:16Z 1308 356 2005-08-29T17:19:16Z 1 2020-02-15T06:59:47Z +15758 2005-08-23T12:47:26Z 152 46 2005-08-29T11:05:26Z 2 2020-02-15T06:59:47Z +15759 2005-08-23T12:47:37Z 1341 361 2005-09-01T11:28:37Z 2 2020-02-15T06:59:47Z +15760 2005-08-23T12:50:00Z 3050 273 2005-08-29T15:41:00Z 2 2020-02-15T06:59:47Z +15761 2005-08-23T12:55:51Z 4362 416 2005-08-26T16:51:51Z 1 2020-02-15T06:59:47Z +15762 2005-08-23T13:01:43Z 887 351 2005-08-26T16:35:43Z 1 2020-02-15T06:59:47Z +15763 2005-08-23T13:02:59Z 124 158 2005-08-24T17:45:59Z 2 2020-02-15T06:59:47Z +15764 2005-08-23T13:05:10Z 2937 8 2005-08-25T16:15:10Z 1 2020-02-15T06:59:47Z +15765 2005-08-23T13:06:19Z 1250 408 2005-08-31T12:18:19Z 1 2020-02-15T06:59:47Z +15766 2005-08-23T13:10:16Z 1996 436 2005-08-30T09:27:16Z 1 2020-02-15T06:59:47Z +15767 2005-08-23T13:14:15Z 3492 241 2005-08-27T14:43:15Z 2 2020-02-15T06:59:47Z +15768 2005-08-23T13:14:47Z 662 267 2005-08-29T14:17:47Z 2 2020-02-15T06:59:47Z +15769 2005-08-23T13:16:15Z 2392 276 2005-08-28T18:31:15Z 1 2020-02-15T06:59:47Z +15770 2005-08-23T13:18:16Z 1424 113 2005-08-29T11:31:16Z 1 2020-02-15T06:59:47Z +15771 2005-08-23T13:18:46Z 3667 262 2005-08-26T07:29:46Z 1 2020-02-15T06:59:47Z +15772 2005-08-23T13:22:56Z 4343 202 2005-08-26T10:35:56Z 2 2020-02-15T06:59:47Z +15773 2005-08-23T13:24:57Z 1626 189 2005-08-31T14:16:57Z 2 2020-02-15T06:59:47Z +15774 2005-08-23T13:25:08Z 1273 254 2005-08-28T10:08:08Z 2 2020-02-15T06:59:47Z +15775 2005-08-23T13:25:44Z 2146 173 2005-09-01T16:56:44Z 1 2020-02-15T06:59:47Z +15776 2005-08-23T13:26:01Z 43 514 2005-08-29T18:17:01Z 1 2020-02-15T06:59:47Z +15777 2005-08-23T13:29:08Z 4241 130 2005-08-27T18:50:08Z 2 2020-02-15T06:59:47Z +15778 2006-02-14T15:16:03Z 1269 234 1 2020-02-15T06:59:47Z +15779 2005-08-23T13:33:46Z 1560 419 2005-08-28T08:40:46Z 2 2020-02-15T06:59:47Z +15780 2006-02-14T15:16:03Z 2911 120 2 2020-02-15T06:59:47Z +15781 2005-08-23T13:41:05Z 4449 412 2005-08-31T13:11:05Z 1 2020-02-15T06:59:47Z +15782 2005-08-23T13:43:26Z 3282 245 2005-08-30T14:03:26Z 1 2020-02-15T06:59:47Z +15783 2005-08-23T13:45:44Z 397 247 2005-08-26T09:18:44Z 2 2020-02-15T06:59:47Z +15784 2005-08-23T13:46:00Z 126 425 2005-08-30T11:49:00Z 2 2020-02-15T06:59:47Z +15785 2005-08-23T13:46:27Z 1758 543 2005-08-27T10:16:27Z 2 2020-02-15T06:59:47Z +15786 2005-08-23T13:48:34Z 3132 371 2005-08-27T15:59:34Z 1 2020-02-15T06:59:47Z +15787 2005-08-23T13:51:57Z 2932 123 2005-08-27T17:06:57Z 1 2020-02-15T06:59:47Z +15788 2005-08-23T13:54:39Z 13 269 2005-08-26T10:17:39Z 1 2020-02-15T06:59:47Z +15789 2005-08-23T13:56:40Z 1213 350 2005-08-27T15:25:40Z 1 2020-02-15T06:59:47Z +15790 2005-08-23T14:01:07Z 2887 233 2005-08-30T10:32:07Z 2 2020-02-15T06:59:47Z +15791 2005-08-23T14:02:13Z 4147 445 2005-09-01T09:03:13Z 2 2020-02-15T06:59:47Z +15792 2005-08-23T14:05:37Z 2175 581 2005-08-28T10:54:37Z 1 2020-02-15T06:59:47Z +15793 2005-08-23T14:06:19Z 2863 22 2005-08-24T19:59:19Z 2 2020-02-15T06:59:47Z +15794 2006-02-14T15:16:03Z 3917 579 2 2020-02-15T06:59:47Z +15795 2005-08-23T14:07:56Z 4371 417 2005-08-25T12:10:56Z 2 2020-02-15T06:59:47Z +15796 2005-08-23T14:12:22Z 1425 158 2005-08-28T17:03:22Z 2 2020-02-15T06:59:47Z +15797 2005-08-23T14:13:47Z 497 503 2005-08-25T09:16:47Z 2 2020-02-15T06:59:47Z +15798 2005-08-23T14:23:03Z 3803 203 2005-08-30T17:39:03Z 2 2020-02-15T06:59:47Z +15799 2005-08-23T14:23:23Z 2519 215 2005-08-24T17:15:23Z 2 2020-02-15T06:59:47Z +15800 2005-08-23T14:23:44Z 963 43 2005-08-29T17:04:44Z 2 2020-02-15T06:59:47Z +15801 2005-08-23T14:26:04Z 1590 165 2005-08-28T15:04:04Z 1 2020-02-15T06:59:47Z +15802 2005-08-23T14:26:51Z 41 158 2005-08-29T16:28:51Z 2 2020-02-15T06:59:47Z +15803 2005-08-23T14:27:07Z 500 105 2005-08-28T12:01:07Z 2 2020-02-15T06:59:47Z +15804 2005-08-23T14:29:16Z 3338 585 2005-08-26T08:41:16Z 1 2020-02-15T06:59:47Z +15805 2005-08-23T14:31:19Z 4511 8 2005-08-25T19:01:19Z 2 2020-02-15T06:59:47Z +15806 2005-08-23T14:31:50Z 2683 166 2005-08-27T16:08:50Z 2 2020-02-15T06:59:47Z +15807 2005-08-23T14:35:10Z 2705 350 2005-08-29T19:06:10Z 2 2020-02-15T06:59:47Z +15808 2005-08-23T14:38:37Z 1663 446 2005-08-27T14:45:37Z 2 2020-02-15T06:59:47Z +15809 2005-08-23T14:42:07Z 1885 431 2005-08-27T15:00:07Z 2 2020-02-15T06:59:47Z +15810 2005-08-23T14:43:15Z 2196 171 2005-08-25T17:41:15Z 1 2020-02-15T06:59:47Z +15811 2005-08-23T14:43:46Z 3487 300 2005-08-27T16:43:46Z 1 2020-02-15T06:59:47Z +15812 2005-08-23T14:47:26Z 4457 45 2005-09-01T10:51:26Z 2 2020-02-15T06:59:47Z +15813 2006-02-14T15:16:03Z 981 9 1 2020-02-15T06:59:47Z +15814 2005-08-23T14:52:50Z 4361 459 2005-08-27T16:12:50Z 2 2020-02-15T06:59:47Z +15815 2005-08-23T14:55:47Z 316 444 2005-08-24T12:37:47Z 1 2020-02-15T06:59:47Z +15816 2005-08-23T14:58:06Z 3628 31 2005-08-28T13:30:06Z 1 2020-02-15T06:59:47Z +15817 2005-08-23T14:59:51Z 598 348 2005-08-25T15:27:51Z 1 2020-02-15T06:59:47Z +15818 2005-08-23T14:59:58Z 2620 439 2005-08-27T13:13:58Z 2 2020-02-15T06:59:47Z +15819 2005-08-23T15:01:54Z 3639 274 2005-08-31T20:01:54Z 2 2020-02-15T06:59:47Z +15820 2005-08-23T15:03:13Z 4553 308 2005-08-25T20:12:13Z 1 2020-02-15T06:59:47Z +15821 2005-08-23T15:03:58Z 1714 233 2005-08-24T17:46:58Z 2 2020-02-15T06:59:47Z +15822 2005-08-23T15:05:59Z 3602 492 2005-08-24T11:13:59Z 1 2020-02-15T06:59:47Z +15823 2005-08-23T15:08:00Z 3047 81 2005-08-24T17:52:00Z 2 2020-02-15T06:59:47Z +15824 2005-08-23T15:09:17Z 2933 371 2005-08-28T15:14:17Z 2 2020-02-15T06:59:47Z +15825 2005-08-23T15:10:42Z 149 346 2005-08-29T09:28:42Z 2 2020-02-15T06:59:47Z +15826 2005-08-23T15:15:02Z 215 311 2005-08-31T20:39:02Z 2 2020-02-15T06:59:47Z +15827 2005-08-23T15:15:19Z 1732 346 2005-08-24T10:50:19Z 2 2020-02-15T06:59:47Z +15828 2005-08-23T15:16:32Z 428 327 2005-08-29T12:20:32Z 1 2020-02-15T06:59:47Z +15829 2005-08-23T15:17:14Z 4387 30 2005-08-27T13:04:14Z 1 2020-02-15T06:59:47Z +15830 2005-08-23T15:19:15Z 309 467 2005-08-25T18:42:15Z 2 2020-02-15T06:59:47Z +15831 2005-08-23T15:21:19Z 3123 401 2005-08-24T15:47:19Z 2 2020-02-15T06:59:47Z +15832 2005-08-23T15:21:35Z 1468 537 2005-08-30T15:01:35Z 2 2020-02-15T06:59:47Z +15833 2005-08-23T15:22:15Z 801 349 2005-08-31T14:54:15Z 1 2020-02-15T06:59:47Z +15834 2005-08-23T15:23:50Z 217 165 2005-09-01T19:31:50Z 1 2020-02-15T06:59:47Z +15835 2005-08-23T15:25:27Z 1362 128 2005-09-01T16:14:27Z 2 2020-02-15T06:59:47Z +15836 2005-08-23T15:29:17Z 260 468 2005-08-26T11:44:17Z 2 2020-02-15T06:59:47Z +15837 2005-08-23T15:29:41Z 4388 283 2005-08-27T18:17:41Z 1 2020-02-15T06:59:47Z +15838 2005-08-23T15:30:48Z 2194 579 2005-08-31T11:20:48Z 2 2020-02-15T06:59:47Z +15839 2005-08-23T15:34:46Z 3726 294 2005-08-30T21:00:46Z 2 2020-02-15T06:59:47Z +15840 2005-08-23T15:34:49Z 1901 316 2005-08-24T16:54:49Z 1 2020-02-15T06:59:47Z +15841 2005-08-23T15:35:59Z 2865 571 2005-08-30T19:30:59Z 2 2020-02-15T06:59:47Z +15842 2005-08-23T15:36:05Z 1850 146 2005-08-30T14:05:05Z 2 2020-02-15T06:59:47Z +15843 2005-08-23T15:37:31Z 611 215 2005-08-28T18:41:31Z 2 2020-02-15T06:59:47Z +15844 2005-08-23T15:38:12Z 2027 119 2005-08-26T15:18:12Z 1 2020-02-15T06:59:47Z +15845 2005-08-23T15:38:34Z 4312 89 2005-08-25T10:06:34Z 1 2020-02-15T06:59:47Z +15846 2005-08-23T15:39:18Z 3635 47 2005-08-27T14:28:18Z 2 2020-02-15T06:59:47Z +15847 2005-08-23T15:39:38Z 2287 163 2005-08-24T11:46:38Z 1 2020-02-15T06:59:47Z +15848 2005-08-23T15:41:12Z 2141 336 2005-08-26T10:29:12Z 2 2020-02-15T06:59:47Z +15849 2005-08-23T15:41:20Z 4077 482 2005-08-27T15:47:20Z 2 2020-02-15T06:59:47Z +15850 2005-08-23T15:45:42Z 586 563 2005-08-27T19:24:42Z 1 2020-02-15T06:59:47Z +15851 2005-08-23T15:46:33Z 2286 469 2005-08-29T15:52:33Z 1 2020-02-15T06:59:47Z +15852 2005-08-23T15:47:02Z 1506 140 2005-08-25T19:37:02Z 1 2020-02-15T06:59:47Z +15853 2005-08-23T15:54:20Z 225 500 2005-08-24T18:53:20Z 2 2020-02-15T06:59:47Z +15854 2005-08-23T15:58:05Z 1648 464 2005-08-26T19:23:05Z 1 2020-02-15T06:59:47Z +15855 2005-08-23T15:59:01Z 2528 192 2005-08-29T20:26:01Z 1 2020-02-15T06:59:47Z +15856 2005-08-23T15:59:12Z 3379 395 2005-08-25T15:36:12Z 1 2020-02-15T06:59:47Z +15857 2005-08-23T15:59:51Z 2733 575 2005-08-26T12:01:51Z 2 2020-02-15T06:59:47Z +15858 2005-08-23T16:07:15Z 4515 81 2005-08-25T19:36:15Z 2 2020-02-15T06:59:47Z +15859 2005-08-23T16:08:15Z 4269 465 2005-08-28T11:08:15Z 1 2020-02-15T06:59:47Z +15860 2005-08-23T16:08:40Z 2583 41 2005-08-28T15:35:40Z 1 2020-02-15T06:59:47Z +15861 2005-08-23T16:15:45Z 1859 256 2005-09-01T11:37:45Z 2 2020-02-15T06:59:47Z +15862 2006-02-14T15:16:03Z 925 215 1 2020-02-15T06:59:47Z +15863 2005-08-23T16:17:09Z 2783 328 2005-08-28T16:10:09Z 2 2020-02-15T06:59:47Z +15864 2005-08-23T16:18:12Z 3014 256 2005-08-29T17:10:12Z 2 2020-02-15T06:59:47Z +15865 2005-08-23T16:18:25Z 2031 482 2005-08-26T10:57:25Z 2 2020-02-15T06:59:47Z +15866 2005-08-23T16:19:02Z 3828 296 2005-08-31T12:29:02Z 2 2020-02-15T06:59:47Z +15867 2006-02-14T15:16:03Z 837 505 2 2020-02-15T06:59:47Z +15868 2005-08-23T16:19:14Z 2186 306 2005-08-29T16:14:14Z 2 2020-02-15T06:59:47Z +15869 2005-08-23T16:22:20Z 1344 357 2005-08-27T11:52:20Z 1 2020-02-15T06:59:47Z +15870 2005-08-23T16:23:08Z 590 251 2005-08-28T20:30:08Z 2 2020-02-15T06:59:47Z +15871 2005-08-23T16:24:24Z 425 57 2005-09-01T13:48:24Z 2 2020-02-15T06:59:47Z +15872 2005-08-23T16:27:24Z 3391 212 2005-08-31T11:57:24Z 1 2020-02-15T06:59:47Z +15873 2005-08-23T16:27:59Z 4548 577 2005-08-26T11:11:59Z 2 2020-02-15T06:59:47Z +15874 2005-08-23T16:30:55Z 621 132 2005-08-28T20:57:55Z 1 2020-02-15T06:59:47Z +15875 2006-02-14T15:16:03Z 3611 41 1 2020-02-15T06:59:47Z +15876 2005-08-23T16:32:10Z 1735 87 2005-08-24T18:16:10Z 1 2020-02-15T06:59:47Z +15877 2005-08-23T16:33:33Z 2307 559 2005-08-26T10:36:33Z 2 2020-02-15T06:59:47Z +15878 2005-08-23T16:34:31Z 1592 493 2005-08-27T21:51:31Z 2 2020-02-15T06:59:47Z +15879 2005-08-23T16:42:53Z 235 482 2005-08-29T16:21:53Z 2 2020-02-15T06:59:47Z +15880 2005-08-23T16:43:54Z 2538 528 2005-08-31T14:40:54Z 2 2020-02-15T06:59:47Z +15881 2005-08-23T16:44:25Z 617 383 2005-08-29T13:58:25Z 1 2020-02-15T06:59:47Z +15882 2005-08-23T16:44:31Z 2028 312 2005-09-01T15:44:31Z 2 2020-02-15T06:59:47Z +15883 2005-08-23T16:44:56Z 2792 550 2005-08-24T22:42:56Z 1 2020-02-15T06:59:47Z +15884 2005-08-23T16:45:28Z 2255 81 2005-08-27T20:18:28Z 1 2020-02-15T06:59:47Z +15885 2005-08-23T16:50:43Z 2116 565 2005-08-29T20:19:43Z 1 2020-02-15T06:59:47Z +15886 2005-08-23T16:50:53Z 3038 91 2005-08-26T15:38:53Z 2 2020-02-15T06:59:47Z +15887 2005-08-23T16:54:09Z 4263 201 2005-08-26T13:20:09Z 2 2020-02-15T06:59:47Z +15888 2005-08-23T16:56:14Z 2955 321 2005-08-31T14:32:14Z 1 2020-02-15T06:59:47Z +15889 2005-08-23T16:57:43Z 787 137 2005-08-27T22:14:43Z 1 2020-02-15T06:59:47Z +15890 2005-08-23T16:58:12Z 3625 87 2005-08-24T12:23:12Z 1 2020-02-15T06:59:47Z +15891 2005-08-23T17:00:12Z 2168 52 2005-08-31T21:12:12Z 1 2020-02-15T06:59:47Z +15892 2005-08-23T17:01:00Z 1365 174 2005-08-28T12:50:00Z 1 2020-02-15T06:59:47Z +15893 2005-08-23T17:02:00Z 2571 438 2005-08-30T12:45:00Z 2 2020-02-15T06:59:47Z +15894 2006-02-14T15:16:03Z 4416 168 1 2020-02-15T06:59:47Z +15895 2005-08-23T17:09:31Z 2275 342 2005-08-30T17:15:31Z 1 2020-02-15T06:59:47Z +15896 2005-08-23T17:09:56Z 528 585 2005-08-31T14:51:56Z 2 2020-02-15T06:59:47Z +15897 2005-08-23T17:12:31Z 1652 15 2005-08-30T17:22:31Z 1 2020-02-15T06:59:47Z +15898 2005-08-23T17:13:01Z 3502 88 2005-08-29T11:22:01Z 2 2020-02-15T06:59:47Z +15899 2005-08-23T17:16:28Z 3851 596 2005-08-29T21:46:28Z 2 2020-02-15T06:59:47Z +15900 2005-08-23T17:16:30Z 1112 562 2005-08-27T18:02:30Z 1 2020-02-15T06:59:47Z +15901 2005-08-23T17:19:17Z 2761 226 2005-08-30T14:24:17Z 2 2020-02-15T06:59:47Z +15902 2005-08-23T17:28:03Z 4500 172 2005-08-30T18:36:03Z 1 2020-02-15T06:59:47Z +15903 2005-08-23T17:30:40Z 1289 267 2005-08-29T14:12:40Z 1 2020-02-15T06:59:47Z +15904 2005-08-23T17:32:19Z 179 37 2005-08-24T21:05:19Z 2 2020-02-15T06:59:47Z +15905 2005-08-23T17:33:04Z 3631 59 2005-08-26T17:38:04Z 2 2020-02-15T06:59:47Z +15906 2005-08-23T17:36:00Z 3230 445 2005-08-28T15:32:00Z 2 2020-02-15T06:59:47Z +15907 2005-08-23T17:39:35Z 2898 2 2005-08-25T23:23:35Z 1 2020-02-15T06:59:47Z +15908 2005-08-23T17:42:00Z 2453 135 2005-08-31T22:32:00Z 1 2020-02-15T06:59:47Z +15909 2005-08-23T17:42:42Z 404 452 2005-08-26T20:25:42Z 1 2020-02-15T06:59:47Z +15910 2005-08-23T17:43:16Z 254 456 2005-08-24T21:55:16Z 2 2020-02-15T06:59:47Z +15911 2005-08-23T17:44:53Z 3006 582 2005-09-01T19:14:53Z 1 2020-02-15T06:59:47Z +15912 2005-08-23T17:47:40Z 3079 229 2005-08-31T14:43:40Z 2 2020-02-15T06:59:47Z +15913 2005-08-23T17:48:30Z 3894 93 2005-08-31T21:17:30Z 2 2020-02-15T06:59:47Z +15914 2005-08-23T17:49:26Z 747 557 2005-08-24T12:20:26Z 1 2020-02-15T06:59:47Z +15915 2005-08-23T17:52:01Z 3566 167 2005-08-24T20:40:01Z 2 2020-02-15T06:59:47Z +15916 2005-08-23T17:56:01Z 4580 327 2005-08-31T21:49:01Z 2 2020-02-15T06:59:47Z +15917 2005-08-23T17:57:28Z 2093 589 2005-08-29T20:03:28Z 1 2020-02-15T06:59:47Z +15918 2005-08-23T17:57:35Z 1456 262 2005-08-28T14:16:35Z 2 2020-02-15T06:59:47Z +15919 2005-08-23T18:01:31Z 1746 497 2005-08-24T16:27:31Z 1 2020-02-15T06:59:47Z +15920 2005-08-23T18:05:10Z 243 212 2005-08-26T18:09:10Z 1 2020-02-15T06:59:47Z +15921 2005-08-23T18:06:54Z 223 522 2005-08-30T20:19:54Z 2 2020-02-15T06:59:47Z +15922 2005-08-23T18:07:31Z 1702 263 2005-09-01T22:27:31Z 1 2020-02-15T06:59:47Z +15923 2005-08-23T18:08:19Z 1693 276 2005-08-26T18:06:19Z 2 2020-02-15T06:59:47Z +15924 2005-08-23T18:08:59Z 1114 541 2005-08-27T12:20:59Z 2 2020-02-15T06:59:47Z +15925 2005-08-23T18:15:06Z 3394 440 2005-08-26T18:09:06Z 2 2020-02-15T06:59:47Z +15926 2005-08-23T18:20:56Z 2231 151 2005-08-24T18:20:56Z 2 2020-02-15T06:59:47Z +15927 2005-08-23T18:23:11Z 2450 401 2005-08-24T15:09:11Z 1 2020-02-15T06:59:47Z +15928 2005-08-23T18:23:24Z 2086 75 2005-09-01T23:43:24Z 2 2020-02-15T06:59:47Z +15929 2005-08-23T18:23:30Z 1832 477 2005-08-27T17:04:30Z 1 2020-02-15T06:59:47Z +15930 2005-08-23T18:26:51Z 180 379 2005-08-31T16:12:51Z 1 2020-02-15T06:59:47Z +15931 2005-08-23T18:28:09Z 1128 237 2005-08-28T23:08:09Z 1 2020-02-15T06:59:47Z +15932 2005-08-23T18:31:40Z 4554 405 2005-08-24T16:30:40Z 2 2020-02-15T06:59:47Z +15933 2005-08-23T18:36:44Z 3493 176 2005-08-26T12:41:44Z 2 2020-02-15T06:59:47Z +15934 2005-08-23T18:40:41Z 994 216 2005-08-25T00:18:41Z 2 2020-02-15T06:59:47Z +15935 2005-08-23T18:41:11Z 907 361 2005-08-25T20:59:11Z 1 2020-02-15T06:59:47Z +15936 2005-08-23T18:43:11Z 1293 411 2005-08-26T00:19:11Z 1 2020-02-15T06:59:47Z +15937 2005-08-23T18:43:22Z 2882 194 2005-08-24T22:53:22Z 1 2020-02-15T06:59:47Z +15938 2005-08-23T18:43:31Z 2884 341 2005-08-31T00:26:31Z 2 2020-02-15T06:59:47Z +15939 2005-08-23T18:44:21Z 3209 382 2005-09-01T17:25:21Z 2 2020-02-15T06:59:47Z +15940 2005-08-23T18:45:06Z 1606 86 2005-08-30T13:00:06Z 2 2020-02-15T06:59:47Z +15941 2005-08-23T18:46:44Z 4304 424 2005-08-31T17:31:44Z 1 2020-02-15T06:59:47Z +15942 2005-08-23T18:48:40Z 1096 210 2005-09-01T18:39:40Z 2 2020-02-15T06:59:47Z +15943 2005-08-23T18:49:32Z 706 462 2005-08-27T19:20:32Z 1 2020-02-15T06:59:47Z +15944 2005-08-23T18:50:54Z 4559 348 2005-08-25T18:04:54Z 2 2020-02-15T06:59:47Z +15945 2005-08-23T18:51:41Z 3633 43 2005-08-28T18:42:41Z 1 2020-02-15T06:59:47Z +15946 2005-08-23T18:54:07Z 4549 561 2005-08-28T21:21:07Z 1 2020-02-15T06:59:47Z +15947 2005-08-23T18:54:32Z 1877 580 2005-08-24T22:39:32Z 2 2020-02-15T06:59:47Z +15948 2005-08-23T18:59:33Z 432 520 2005-08-31T13:02:33Z 2 2020-02-15T06:59:47Z +15949 2005-08-23T19:06:04Z 1199 386 2005-08-26T18:39:04Z 2 2020-02-15T06:59:47Z +15950 2005-08-23T19:09:39Z 1374 280 2005-08-31T17:03:39Z 2 2020-02-15T06:59:47Z +15951 2005-08-23T19:10:32Z 3018 446 2005-08-29T14:17:32Z 1 2020-02-15T06:59:47Z +15952 2005-08-23T19:11:29Z 1314 224 2005-08-28T14:41:29Z 1 2020-02-15T06:59:47Z +15953 2005-08-23T19:13:46Z 3727 540 2005-08-28T23:05:46Z 1 2020-02-15T06:59:47Z +15954 2005-08-23T19:14:07Z 576 460 2005-08-24T20:21:07Z 1 2020-02-15T06:59:47Z +15955 2005-08-23T19:19:06Z 2247 349 2005-08-31T23:34:06Z 1 2020-02-15T06:59:47Z +15956 2005-08-23T19:19:21Z 2763 354 2005-08-25T22:15:21Z 2 2020-02-15T06:59:47Z +15957 2005-08-23T19:21:22Z 74 418 2005-08-31T16:42:22Z 1 2020-02-15T06:59:47Z +15958 2005-08-23T19:22:36Z 4164 492 2005-08-30T01:03:36Z 1 2020-02-15T06:59:47Z +15959 2005-08-23T19:27:04Z 547 415 2005-08-24T15:24:04Z 1 2020-02-15T06:59:47Z +15960 2005-08-23T19:35:42Z 1497 431 2005-08-26T17:36:42Z 2 2020-02-15T06:59:47Z +15961 2005-08-23T19:35:42Z 4006 200 2005-08-30T22:52:42Z 1 2020-02-15T06:59:47Z +15962 2005-08-23T19:42:04Z 3491 160 2005-08-25T23:53:04Z 1 2020-02-15T06:59:47Z +15963 2005-08-23T19:42:46Z 3819 134 2005-08-25T22:12:46Z 1 2020-02-15T06:59:47Z +15964 2005-08-23T19:45:25Z 251 141 2005-08-26T22:43:25Z 2 2020-02-15T06:59:47Z +15965 2005-08-23T19:46:39Z 3449 509 2005-08-24T20:08:39Z 2 2020-02-15T06:59:47Z +15966 2006-02-14T15:16:03Z 4472 374 1 2020-02-15T06:59:47Z +15967 2005-08-23T19:50:06Z 321 257 2005-08-29T14:51:06Z 1 2020-02-15T06:59:47Z +15968 2005-08-23T19:51:29Z 3598 257 2005-08-24T15:07:29Z 1 2020-02-15T06:59:47Z +15969 2005-08-23T19:51:30Z 1807 327 2005-08-31T23:50:30Z 1 2020-02-15T06:59:47Z +15970 2005-08-23T19:54:24Z 4509 395 2005-08-24T18:07:24Z 1 2020-02-15T06:59:47Z +15971 2005-08-23T19:59:33Z 3456 187 2005-09-02T01:28:33Z 1 2020-02-15T06:59:47Z +15972 2005-08-23T20:00:30Z 4428 25 2005-08-30T00:25:30Z 1 2020-02-15T06:59:47Z +15973 2005-08-23T20:04:41Z 2766 343 2005-09-01T20:08:41Z 2 2020-02-15T06:59:47Z +15974 2005-08-23T20:06:04Z 3518 201 2005-08-27T17:33:04Z 2 2020-02-15T06:59:47Z +15975 2005-08-23T20:06:23Z 2723 174 2005-08-27T19:52:23Z 1 2020-02-15T06:59:47Z +15976 2005-08-23T20:07:08Z 835 227 2005-08-25T01:47:08Z 2 2020-02-15T06:59:47Z +15977 2005-08-23T20:07:10Z 1031 550 2005-09-01T22:12:10Z 2 2020-02-15T06:59:47Z +15978 2005-08-23T20:08:18Z 4444 536 2005-08-31T17:35:18Z 2 2020-02-15T06:59:47Z +15979 2005-08-23T20:08:26Z 3733 536 2005-08-26T19:19:26Z 1 2020-02-15T06:59:47Z +15980 2005-08-23T20:10:13Z 3365 196 2005-08-24T17:44:13Z 2 2020-02-15T06:59:47Z +15981 2005-08-23T20:12:17Z 2867 489 2005-08-30T20:43:17Z 1 2020-02-15T06:59:47Z +15982 2005-08-23T20:13:31Z 2920 370 2005-09-01T21:51:31Z 2 2020-02-15T06:59:47Z +15983 2005-08-23T20:13:38Z 3318 464 2005-08-30T18:42:38Z 1 2020-02-15T06:59:47Z +15984 2005-08-23T20:16:27Z 2011 495 2005-08-27T01:43:27Z 1 2020-02-15T06:59:47Z +15985 2005-08-23T20:20:23Z 2646 179 2005-08-26T20:55:23Z 1 2020-02-15T06:59:47Z +15986 2005-08-23T20:20:37Z 3472 226 2005-08-29T20:49:37Z 1 2020-02-15T06:59:47Z +15987 2005-08-23T20:22:17Z 3150 302 2005-08-31T21:46:17Z 2 2020-02-15T06:59:47Z +15988 2005-08-23T20:23:08Z 3932 400 2005-08-28T20:50:08Z 1 2020-02-15T06:59:47Z +15989 2005-08-23T20:24:36Z 38 96 2005-08-26T20:35:36Z 1 2020-02-15T06:59:47Z +15990 2005-08-23T20:25:11Z 3233 512 2005-08-25T15:01:11Z 2 2020-02-15T06:59:47Z +15991 2005-08-23T20:27:34Z 2078 203 2005-08-28T16:48:34Z 2 2020-02-15T06:59:47Z +15992 2005-08-23T20:28:32Z 3334 589 2005-08-24T21:35:32Z 1 2020-02-15T06:59:47Z +15993 2005-08-23T20:28:44Z 1638 12 2005-08-27T16:23:44Z 2 2020-02-15T06:59:47Z +15994 2005-08-23T20:29:10Z 438 595 2005-08-28T01:41:10Z 2 2020-02-15T06:59:47Z +15995 2005-08-23T20:29:56Z 1122 377 2005-08-30T18:09:56Z 1 2020-02-15T06:59:47Z +15996 2005-08-23T20:31:38Z 3098 151 2005-08-29T20:58:38Z 1 2020-02-15T06:59:47Z +15997 2005-08-23T20:40:31Z 2843 447 2005-08-26T19:47:31Z 1 2020-02-15T06:59:47Z +15998 2005-08-23T20:41:09Z 1229 545 2005-08-27T00:20:09Z 1 2020-02-15T06:59:47Z +15999 2005-08-23T20:44:10Z 2584 377 2005-08-31T02:38:10Z 2 2020-02-15T06:59:47Z +16000 2005-08-23T20:44:36Z 282 71 2005-08-25T02:29:36Z 1 2020-02-15T06:59:47Z +16001 2005-08-23T20:45:53Z 245 108 2005-08-27T15:52:53Z 1 2020-02-15T06:59:47Z +16002 2005-08-23T20:47:12Z 2770 73 2005-08-27T23:07:12Z 1 2020-02-15T06:59:47Z +16003 2005-08-23T20:47:28Z 3413 577 2005-08-31T23:22:28Z 1 2020-02-15T06:59:47Z +16004 2005-08-23T20:53:20Z 2223 147 2005-08-31T15:15:20Z 2 2020-02-15T06:59:47Z +16005 2005-08-23T21:00:22Z 3265 466 2005-09-02T02:35:22Z 1 2020-02-15T06:59:47Z +16006 2005-08-23T21:01:09Z 240 533 2005-08-25T19:33:09Z 1 2020-02-15T06:59:47Z +16007 2005-08-23T21:02:43Z 3236 126 2005-08-30T23:37:43Z 2 2020-02-15T06:59:47Z +16008 2005-08-23T21:04:51Z 3273 189 2005-08-31T22:09:51Z 1 2020-02-15T06:59:47Z +16009 2005-08-23T21:07:59Z 3055 133 2005-08-29T16:54:59Z 2 2020-02-15T06:59:47Z +16010 2005-08-23T21:10:24Z 2539 173 2005-08-25T17:58:24Z 1 2020-02-15T06:59:47Z +16011 2005-08-23T21:11:33Z 1093 389 2005-08-31T17:51:33Z 1 2020-02-15T06:59:47Z +16012 2005-08-23T21:13:39Z 2421 80 2005-08-30T23:52:39Z 2 2020-02-15T06:59:47Z +16013 2005-08-23T21:17:17Z 561 462 2005-08-26T21:15:17Z 1 2020-02-15T06:59:47Z +16014 2005-08-23T21:18:31Z 3322 532 2005-08-31T17:28:31Z 2 2020-02-15T06:59:47Z +16015 2005-08-23T21:25:03Z 3113 50 2005-08-24T20:05:03Z 2 2020-02-15T06:59:47Z +16016 2005-08-23T21:26:35Z 3374 595 2005-08-28T16:06:35Z 2 2020-02-15T06:59:47Z +16017 2005-08-23T21:27:11Z 664 535 2005-08-24T23:22:11Z 1 2020-02-15T06:59:47Z +16018 2005-08-23T21:27:35Z 897 439 2005-08-30T00:36:35Z 1 2020-02-15T06:59:47Z +16019 2005-08-23T21:30:45Z 3093 278 2005-08-27T23:45:45Z 2 2020-02-15T06:59:47Z +16020 2005-08-23T21:34:33Z 277 311 2005-09-01T18:17:33Z 1 2020-02-15T06:59:47Z +16021 2005-08-23T21:37:59Z 3057 314 2005-08-31T01:52:59Z 1 2020-02-15T06:59:47Z +16022 2005-08-23T21:44:27Z 2925 504 2005-08-28T01:52:27Z 1 2020-02-15T06:59:47Z +16023 2005-08-23T21:45:02Z 2347 124 2005-08-24T21:28:02Z 1 2020-02-15T06:59:47Z +16024 2005-08-23T21:46:47Z 2910 473 2005-08-27T02:06:47Z 1 2020-02-15T06:59:47Z +16025 2005-08-23T21:48:54Z 1777 569 2005-08-24T22:05:54Z 2 2020-02-15T06:59:47Z +16026 2005-08-23T21:49:22Z 467 484 2005-08-27T00:47:22Z 1 2020-02-15T06:59:47Z +16027 2005-08-23T21:49:33Z 1724 160 2005-08-30T16:19:33Z 2 2020-02-15T06:59:47Z +16028 2005-08-23T21:52:56Z 2515 119 2005-08-30T18:16:56Z 2 2020-02-15T06:59:47Z +16029 2005-08-23T21:54:02Z 953 143 2005-08-29T23:55:02Z 1 2020-02-15T06:59:47Z +16030 2005-08-23T21:56:04Z 4161 137 2005-08-31T01:24:04Z 2 2020-02-15T06:59:47Z +16031 2005-08-23T21:59:26Z 1843 102 2005-08-29T20:15:26Z 1 2020-02-15T06:59:47Z +16032 2005-08-23T21:59:57Z 2527 447 2005-08-31T22:46:57Z 2 2020-02-15T06:59:47Z +16033 2005-08-23T22:06:15Z 760 226 2005-09-01T02:36:15Z 2 2020-02-15T06:59:47Z +16034 2005-08-23T22:06:34Z 655 502 2005-08-29T18:44:34Z 1 2020-02-15T06:59:47Z +16035 2005-08-23T22:08:04Z 549 37 2005-08-28T03:46:04Z 1 2020-02-15T06:59:47Z +16036 2005-08-23T22:12:44Z 1372 425 2005-08-25T17:48:44Z 2 2020-02-15T06:59:47Z +16037 2005-08-23T22:13:04Z 341 45 2005-09-01T02:48:04Z 2 2020-02-15T06:59:47Z +16038 2005-08-23T22:14:31Z 2612 172 2005-08-30T03:28:31Z 1 2020-02-15T06:59:47Z +16039 2005-08-23T22:18:51Z 545 78 2005-08-31T19:55:51Z 2 2020-02-15T06:59:47Z +16040 2005-08-23T22:19:33Z 3524 195 2005-09-02T02:19:33Z 2 2020-02-15T06:59:47Z +16041 2005-08-23T22:20:26Z 4116 121 2005-08-25T20:14:26Z 2 2020-02-15T06:59:47Z +16042 2005-08-23T22:20:40Z 629 131 2005-08-24T17:54:40Z 1 2020-02-15T06:59:47Z +16043 2005-08-23T22:21:03Z 3869 526 2005-08-31T03:09:03Z 2 2020-02-15T06:59:47Z +16044 2005-08-23T22:24:39Z 1312 468 2005-08-25T04:08:39Z 1 2020-02-15T06:59:47Z +16045 2005-08-23T22:25:26Z 772 14 2005-08-25T23:54:26Z 1 2020-02-15T06:59:47Z +16046 2005-08-23T22:26:47Z 4364 74 2005-08-27T18:02:47Z 2 2020-02-15T06:59:47Z +16047 2005-08-23T22:42:48Z 2088 114 2005-08-25T02:48:48Z 2 2020-02-15T06:59:47Z +16048 2005-08-23T22:43:07Z 2019 103 2005-08-31T21:33:07Z 1 2020-02-15T06:59:47Z +16049 2005-08-23T22:50:12Z 2666 393 2005-08-30T01:01:12Z 2 2020-02-15T06:59:47Z diff --git a/drivers/csv/testdata/sakila-tsv/staff.tsv b/drivers/csv/testdata/sakila-tsv/staff.tsv new file mode 100644 index 00000000..5a089f63 --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/staff.tsv @@ -0,0 +1,3 @@ +staff_id first_name last_name address_id picture email store_id active username password last_update +1 Mike Hillyer 3 Mike.Hillyer@sakilastaff.com 1 1 Mike 8cb2237d0679ca88db6464eac60da96345513964 2020-02-15T06:59:28Z +2 Jon Stephens 4 Jon.Stephens@sakilastaff.com 2 1 Jon 8cb2237d0679ca88db6464eac60da96345513964 2020-02-15T06:59:28Z diff --git a/drivers/csv/testdata/sakila-tsv/store.tsv b/drivers/csv/testdata/sakila-tsv/store.tsv new file mode 100644 index 00000000..3646bd9e --- /dev/null +++ b/drivers/csv/testdata/sakila-tsv/store.tsv @@ -0,0 +1,3 @@ +store_id manager_staff_id address_id last_update +1 1 1 2020-02-15T06:59:28Z +2 2 2 2020-02-15T06:59:28Z diff --git a/drivers/doc.go b/drivers/doc.go new file mode 100644 index 00000000..81e23776 --- /dev/null +++ b/drivers/doc.go @@ -0,0 +1,3 @@ +// Package drivers is the parent package of the +// concrete sq driver implementations. +package drivers diff --git a/drivers/html/doc.go b/drivers/html/doc.go new file mode 100644 index 00000000..c86a0c85 --- /dev/null +++ b/drivers/html/doc.go @@ -0,0 +1,11 @@ +// Package html is the future home of the HTML table import driver. +// +// BRAINDUMP: +// A particular use case is this: +// In your browser, select a table, and copy that HTML. +// Then (on macOS): +// +// > pbpaste | sq .data --json +// +// Should output that HTML table as JSON, etc. +package html diff --git a/drivers/json/doc.go b/drivers/json/doc.go new file mode 100644 index 00000000..7ef67a8c --- /dev/null +++ b/drivers/json/doc.go @@ -0,0 +1,2 @@ +// Package json is the future home of the sq JSON drivers. +package json diff --git a/drivers/mysql/database.go b/drivers/mysql/database.go new file mode 100644 index 00000000..ddd08ba7 --- /dev/null +++ b/drivers/mysql/database.go @@ -0,0 +1,49 @@ +package mysql + +import ( + "context" + "database/sql" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// database implements driver.Database. +type database struct { + log lg.Log + db *sql.DB + src *source.Source + drvr *Driver +} + +func (d *database) DB() *sql.DB { + return d.db +} + +func (d *database) SQLDriver() driver.SQLDriver { + return d.drvr +} + +func (d *database) Source() *source.Source { + return d.src +} + +func (d *database) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + srcMeta, err := d.SourceMetadata(ctx) + if err != nil { + return nil, err + } + return source.TableFromSourceMetadata(srcMeta, tblName) +} + +func (d *database) SourceMetadata(ctx context.Context) (*source.Metadata, error) { + return getSourceMetadata(ctx, d.log, d.src, d.db) +} + +func (d *database) Close() error { + d.log.Debugf("Close database: %s", d.src) + return errz.Err(d.db.Close()) +} diff --git a/drivers/mysql/db_type_test.go b/drivers/mysql/db_type_test.go new file mode 100644 index 00000000..f3a53b63 --- /dev/null +++ b/drivers/mysql/db_type_test.go @@ -0,0 +1,439 @@ +package mysql_test + +import ( + "fmt" + "io/ioutil" + "strings" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/sakila" +) + +// typeTestTableDDLPath is the location of the SQL CREATE statement +// for the "type_test" table that is used to verify handling of the +// the driver's various data types. +const typeTestTableDDLPath = "testdata/type_test.ddl" + +// typeTestVals is the set of vals inserted to the type_test table (and +// is expected when querying that table). +// +// - Row 0 contains zero values (0, empty string, etc). +// - Row 1 contains non-zero values. +// - Row 2 contains non-zero values and nil values for cols that permit +// nil values (those cols ending with _n such as col_text_n). +var typeTestVals = [][]interface{}{ + { + 1, // col_id + fixt.IntZ, // col_bigint + fixt.IntZ, // col_bigint_n + fixt.BitStringZ, // col_binary + fixt.BitStringZ, // col_binary_n + fixt.IntZ, // col_bit + fixt.IntZ, // col_bit_n + fixt.BytesZ, // col_blob + fixt.BytesZ, // col_blob_n + fixt.BoolZ, // col_bool + fixt.BoolZ, // col_bool_n + fixt.TextZ, // col_char + fixt.TextZ, // col_char_n + fixt.DateZ, // col_date + fixt.DateZ, // col_date_n + fixt.DatetimeZ, // col_datetime + fixt.DatetimeZ, // col_datetime_n + fixt.DecimalZ, // col_decimal + fixt.DecimalZ, // col_decimal_n + fixt.FloatZ, // col_double + fixt.FloatZ, // col_double_n + fixt.EnumAlfa, // col_enum + fixt.EnumAlfa, // col_enum_n + fixt.FloatZ, // col_float + fixt.FloatZ, // col_float_n + fixt.IntZ, // col_int + fixt.IntZ, // col_int_n + fixt.IntZ, // col_int24 + fixt.IntZ, // col_int24_n + fixt.BytesZ, // col_longblob + fixt.BytesZ, // col_longblob_n + fixt.TextZ, // col_longtext + fixt.TextZ, // col_longtext_n + fixt.BytesZ, // col_mediumblob + fixt.BytesZ, // col_mediumblob_n + fixt.IntZ, // col_mediumint + fixt.IntZ, // col_mediumint_n + fixt.TextZ, // col_mediumtext + fixt.TextZ, // col_mediumtext_n + fixt.EnumAlfa, // col_set + fixt.EnumAlfa, // col_set_n + fixt.IntZ, // col_smallint + fixt.IntZ, // col_smallint_n + fixt.TextZ, // col_text + fixt.TextZ, // col_text_n + fixt.TimeOfDayZ, // col_time + fixt.TimeOfDayZ, // col_time_n + fixt.DatetimeZ, // col_timestamp + fixt.DatetimeZ, // col_timestamp_n + fixt.IntZ, // col_tinyint + fixt.IntZ, // col_tinyint_n + fixt.BytesZ, // col_tinyblob + fixt.BytesZ, // col_tinyblob_n + fixt.TextZ, // col_tinytext + fixt.TextZ, // col_tinytext_n + fixt.BitStringZ, // col_varbinary + fixt.BitStringZ, // col_varbinary_n + fixt.TextZ, // col_varchar + fixt.TextZ, // col_varchar_n + fixt.IntZ, // col_year + fixt.IntZ, // col_year_n + }, + { // non-zero values + 2, // col_id + fixt.Int, // col_bigint + fixt.Int, // col_bigint_n + fixt.BitString, // col_binary + fixt.BitString, // col_binary_n + fixt.Int, // col_bit + fixt.Int, // col_bit_n + fixt.Bytes, // col_blob + fixt.Bytes, // col_blob_n + fixt.Bool, // col_bool + fixt.Bool, // col_bool_n + fixt.Text, // col_char + fixt.Text, // col_char_n + fixt.Date, // col_date + fixt.Date, // col_date_n + fixt.Datetime, // col_datetime + fixt.Datetime, // col_datetime_n + fixt.Decimal, // col_decimal + fixt.Decimal, // col_decimal_n + fixt.Float, // col_double + fixt.Float, // col_double_n + fixt.EnumBravo, // col_enum + fixt.EnumBravo, // col_enum_n + fixt.Float, // col_float + fixt.Float, // col_float_n + fixt.Int, // col_int + fixt.Int, // col_int_n + fixt.Int, // col_int24 + fixt.Int, // col_int24_n + fixt.Bytes, // col_longblob + fixt.Bytes, // col_longblob_n + fixt.Text, // col_longtext + fixt.Text, // col_longtext_n + fixt.Bytes, // col_mediumblob + fixt.Bytes, // col_mediumblob_n + fixt.Int, // col_mediumint + fixt.Int, // col_mediumint_n + fixt.Text, // col_mediumtext + fixt.Text, // col_mediumtext_n + fixt.EnumBravo, // col_set + fixt.EnumBravo, // col_set_n + fixt.Int, // col_smallint + fixt.Int, // col_smallint_n + fixt.Text, // col_text + fixt.Text, // col_text_n + fixt.TimeOfDay, // col_time + fixt.TimeOfDay, // col_time_n + fixt.Datetime, // col_timestamp + fixt.Datetime, // col_timestamp_n + fixt.Int, // col_tinyint + fixt.Int, // col_tinyint_n + fixt.Bytes, // col_tinyblob + fixt.Bytes, // col_tinyblob_n + fixt.Text, // col_tinytext + fixt.Text, // col_tinytext_n + fixt.BitString, // col_varbinary + fixt.BitString, // col_varbinary_n + fixt.Text, // col_varchar + fixt.Text, // col_varchar_n + fixt.Int, // col_year + fixt.Int, // col_year_n + }, + { + 3, // col_id + fixt.Int, // col_bigint + nil, // col_bigint_n + fixt.BitString, // col_binary + nil, // col_binary_n + fixt.Int, // col_bit + nil, // col_bit_n + fixt.Bytes, // col_blob + nil, // col_blob_n + fixt.Bool, // col_bool + nil, // col_bool_n + fixt.Text, // col_char + nil, // col_char_n + fixt.Date, // col_date + nil, // col_date_n + fixt.Datetime, // col_datetime + nil, // col_datetime_n + fixt.Decimal, // col_decimal + nil, // col_decimal_n + fixt.Float, // col_double + nil, // col_double_n + fixt.EnumBravo, // col_enum + nil, // col_enum_n + fixt.Float, // col_float + nil, // col_float_n + fixt.Int, // col_int + nil, // col_int_n + fixt.Int, // col_int24 + nil, // col_int24_n + fixt.Bytes, // col_longblob + nil, // col_longblob_n + fixt.Text, // col_longtext + nil, // col_longtext_n + fixt.Bytes, // col_mediumblob + nil, // col_mediumblob_n + fixt.Int, // col_mediumint + nil, // col_mediumint_n + fixt.Text, // col_mediumtext + nil, // col_mediumtext_n + fixt.EnumBravo, // col_set + nil, // col_set_n + fixt.Int, // col_smallint + nil, // col_smallint_n + fixt.Text, // col_text + nil, // col_text_n + fixt.TimeOfDay, // col_time + nil, // col_time_n + fixt.Datetime, // col_timestamp + nil, // col_timestamp_n + fixt.Int, // col_tinyint + nil, // col_tinyint_n + fixt.Bytes, // col_tinyblob + nil, // col_tinyblob_n + fixt.Text, // col_tinytext + nil, // col_tinytext_n + fixt.BitString, // col_varbinary + nil, // col_varbinary_n + fixt.Text, // col_varchar + nil, // col_varchar_n + fixt.Int, // col_year + nil, // col_year_n + }, +} + +// typeTestColNames holds type_test table column names. +// TODO: add spatial types +var typeTestColNames = []string{ + "col_id", + "col_bigint", + "col_bigint_n", + "col_binary", + "col_binary_n", + "col_bit", + "col_bit_n", + "col_blob", + "col_blob_n", + "col_bool", + "col_bool_n", + "col_char", + "col_char_n", + "col_date", + "col_date_n", + "col_datetime", + "col_datetime_n", + "col_decimal", + "col_decimal_n", + "col_double", + "col_double_n", + "col_enum", + "col_enum_n", + "col_float", + "col_float_n", + "col_int", + "col_int_n", + "col_int24", + "col_int24_n", + "col_longblob", + "col_longblob_n", + "col_longtext", + "col_longtext_n", + "col_mediumblob", + "col_mediumblob_n", + "col_mediumint", + "col_mediumint_n", + "col_mediumtext", + "col_mediumtext_n", + "col_set", + "col_set_n", + "col_smallint", + "col_smallint_n", + "col_text", + "col_text_n", + "col_time", + "col_time_n", + "col_timestamp", + "col_timestamp_n", + "col_tinyint", + "col_tinyint_n", + "col_tinyblob", + "col_tinyblob_n", + "col_tinytext", + "col_tinytext_n", + "col_varbinary", + "col_varbinary_n", + "col_varchar", + "col_varchar_n", + "col_year", + "col_year_n", +} + +// createTypeTestTbl creates the type_test table, returning the actual table +// named used. If withData is true, the test data is also loaded. +// It is the caller's responsibility to drop the created table. +func createTypeTestTable(th *testh.Helper, src *source.Source, withData bool) (name string) { + const ( + canonicalTblName = "type_test" + insertTpl = "INSERT INTO %s (%s) VALUES (%s)" + ) + + t, db := th.T, th.Open(src).DB() + tblDDL, err := ioutil.ReadFile(typeTestTableDDLPath) + require.NoError(t, err) + + // Replace the canonical table name + actualTblName := stringz.UniqTableName(canonicalTblName) + createStmt := strings.Replace(string(tblDDL), canonicalTblName, actualTblName, 1) + + // Create the table + _, err = db.ExecContext(th.Context, createStmt) + require.NoError(t, err) + + if !withData { + return actualTblName + } + + // Insert values + placeholders := th.SQLDriverFor(src).Dialect().Placeholders(len(typeTestColNames)) + insertStmt := fmt.Sprintf(insertTpl, actualTblName, strings.Join(typeTestColNames, ", "), placeholders) + for i, insertRowVals := range typeTestVals { + th.T.Logf("row[%d]: vals: %s", i, insertRowVals) + _, err := db.Exec(insertStmt, insertRowVals...) + require.NoError(t, err) + } + + return actualTblName +} + +// TestDatabaseTypes checks that our driver is dealing with database +// types correctly. The test constructs a "type_test" table with cols +// for various database types, inserts known data, and checks that +// the returned data matches the inserted data, including verifying +// that NULL is handled correctly. +func TestDatabaseTypes(t *testing.T) { + const wantRowCount = 3 + + t.Parallel() + + testCases := sakila.MyAll + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + t.Logf("using source %s: %s", src.Handle, src.Location) + + actualTblName := createTypeTestTable(th, src, true) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + err := libsq.QuerySQL(th.Context, th.Log, th.Open(src), recw, fmt.Sprintf("SELECT * FROM %s", actualTblName)) + require.NoError(t, err) + written, err := recw.Wait() + require.NoError(t, err) + + require.Equal(t, int64(wantRowCount), written) + require.Equal(t, wantRowCount, len(sink.Recs)) + }) + } +} + +// TestDatabaseTypeJSON explicitly tests the JSON type +// introduced in MySQL v5.7.8. +func TestDatabaseTypeJSON(t *testing.T) { + // t.Parallel() + + const ( + canonicalTblName = "type_test_json" + createStmtTpl = `create table type_test_json +( + col_id int auto_increment primary key, + col_json json not null, + col_json_n json null +)` + ) + + testVals := [][]interface{}{ + { + int64(1), // col_id + fixt.JSON, // col_json + fixt.JSON, // col_json_n + }, + { + int64(2), // col_id + fixt.JSONZ, // col_json + fixt.JSONZ, // col_json_n + }, + { + int64(3), // col_id + fixt.JSON, // col_json + nil, // col_json_n + }, + } + + // MySQL 5.6 doesn't support JSON type + testCases := []string{sakila.My57, sakila.My8} + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, src, dbase, _ := testh.NewWith(t, handle) + + // replace the canonical table name + actualTblName := stringz.UniqTableName(canonicalTblName) + createStmt := strings.Replace(createStmtTpl, canonicalTblName, actualTblName, 1) + // Create the table + _, err := dbase.DB().ExecContext(th.Context, createStmt) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + // Insert data + insertStmt := fmt.Sprintf("INSERT INTO %s (col_id, col_json, col_json_n) VALUES (?,?,?)", actualTblName) + for _, insertRowVals := range testVals { + _, err = dbase.DB().Exec(insertStmt, insertRowVals...) + require.NoError(t, err) + } + + // Query the inserted data + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + err = libsq.QuerySQL(th.Context, th.Log, th.Open(src), recw, fmt.Sprintf("SELECT * FROM %s", actualTblName)) + require.NoError(t, err) + written, err := recw.Wait() + require.NoError(t, err) + + require.Equal(t, int64(len(testVals)), written) + require.Equal(t, len(testVals), len(sink.Recs)) + for i := range testVals { + for j := range testVals[i] { + require.Equal(t, testVals[i][j], testh.Val(sink.Recs[i][j])) + } + } + }) + } +} diff --git a/drivers/mysql/internal_test.go b/drivers/mysql/internal_test.go new file mode 100644 index 00000000..cc924307 --- /dev/null +++ b/drivers/mysql/internal_test.go @@ -0,0 +1,3 @@ +package mysql + +var KindFromDBTypeName = kindFromDBTypeName diff --git a/drivers/mysql/metadata.go b/drivers/mysql/metadata.go new file mode 100644 index 00000000..81111de4 --- /dev/null +++ b/drivers/mysql/metadata.go @@ -0,0 +1,345 @@ +package mysql + +import ( + "context" + "database/sql" + "fmt" + "reflect" + "strings" + "time" + + "github.com/go-sql-driver/mysql" + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// kindFromDBTypeName determines the sqlz.Kind from the database +// type name. For example, "VARCHAR(64)" -> sqlz.KindText. +func kindFromDBTypeName(log lg.Log, colName, dbTypeName string) sqlz.Kind { + var kind sqlz.Kind + dbTypeName = strings.ToUpper(dbTypeName) + + // Given variations such as VARCHAR(255), we first trim the parens + // parts. Thus VARCHAR(255) becomes VARCHAR. + i := strings.IndexRune(dbTypeName, '(') + if i > 0 { + dbTypeName = dbTypeName[0:i] + } + + switch dbTypeName { + default: + log.Warnf("Unknown MySQL database type %s for column %s: instead using %s", dbTypeName, colName, sqlz.KindUnknown) + kind = sqlz.KindUnknown + case "": + kind = sqlz.KindUnknown + case "INTEGER", "INT", "TINYINT", "SMALLINT", "MEDIUMINT", "BIGINT", "YEAR", "BIT": + kind = sqlz.KindInt + case "DECIMAL", "NUMERIC": + kind = sqlz.KindDecimal + case "CHAR", "VARCHAR", "TEXT", "TINYTEXT", "MEDIUMTEXT", "LONGTEXT": + kind = sqlz.KindText + case "ENUM", "SET": + kind = sqlz.KindText + case "JSON": + kind = sqlz.KindText + case "VARBINARY", "BINARY", "BLOB", "MEDIUMBLOB", "LONGBLOB", "TINYBLOB": + kind = sqlz.KindBytes + case "DATETIME", "TIMESTAMP": + kind = sqlz.KindDatetime + case "DATE": + kind = sqlz.KindDate + case "TIME": + kind = sqlz.KindTime + case "FLOAT", "DOUBLE", "DOUBLE PRECISION", "REAL": + kind = sqlz.KindFloat + case "BOOL", "BOOLEAN": + // In practice these are not returned by the mysql driver. + kind = sqlz.KindBool + } + + return kind +} + +func recordMetaFromColumnTypes(log lg.Log, colTypes []*sql.ColumnType) sqlz.RecordMeta { + recMeta := make(sqlz.RecordMeta, len(colTypes)) + + for i, colType := range colTypes { + kind := kindFromDBTypeName(log, colType.Name(), colType.DatabaseTypeName()) + colTypeData := sqlz.NewColumnTypeData(colType, kind) + recMeta[i] = sqlz.NewFieldMeta(colTypeData) + } + + return recMeta +} + +// getNewRecordFunc returns a NewRecordFunc that, after interacting +// with the standard driver.NewRecordFromScanRow, munges any skipped fields. +// In particular mysql.NullTime is unboxed to *time.Time, and TIME fields +// are munged from RawBytes to string. +func getNewRecordFunc(rowMeta sqlz.RecordMeta) driver.NewRecordFunc { + return func(row []interface{}) (sqlz.Record, error) { + rec, skipped := driver.NewRecordFromScanRow(rowMeta, row, nil) + // We iterate over each element of val, checking for certain + // conditions. A more efficient approach might be to (in + // the outside func) iterate over the column metadata, and + // build a list of val elements to visit. + for _, i := range skipped { + if nullTime, ok := rec[i].(*mysql.NullTime); ok { + if nullTime.Valid { + // Make a copy of the value + t := nullTime.Time + rec[i] = &t + continue + } + + // Else + rec[i] = nil + continue + } + + if rowMeta[i].DatabaseTypeName() == "TIME" && rec[i] != nil { + // MySQL may return TIME as RawBytes... convert to a string. + // https://github.com/go-sql-driver/mysql#timetime-support + if rb, ok := rec[i].(*sql.RawBytes); ok { + if len(*rb) == 0 { + // shouldn't happen + zero := "00:00" + rec[i] = &zero + continue + } + + // Else + text := string(*rb) + rec[i] = &text + } + + continue + } + + // else, we don't know what to do with this col + return nil, errz.Errorf("column %d %s: unknown type db(%T) with kind(%s), val(%v)", i, rowMeta[i].Name(), rec[i], rowMeta[i].Kind(), rec[i]) + } + return rec, nil + } +} + +func getSourceMetadata(ctx context.Context, log lg.Log, src *source.Source, db *sql.DB) (*source.Metadata, error) { + srcMeta := &source.Metadata{SourceType: Type, DBDriverType: Type} + srcMeta.Handle = src.Handle + srcMeta.Location = src.Location + + const versionQ = `SELECT @@GLOBAL.version, @@GLOBAL.version_comment, @@GLOBAL.version_compile_os, @@GLOBAL.version_compile_machine` + var version, versionComment, versionOS, versionArch string + err := db.QueryRowContext(ctx, versionQ).Scan(&version, &versionComment, &versionOS, &versionArch) + if err != nil { + return nil, errz.Err(err) + } + + srcMeta.DBVersion = version + srcMeta.DBProduct = fmt.Sprintf("%s %s / %s (%s)", versionComment, version, versionOS, versionArch) + + varRows, err := db.QueryContext(ctx, "SHOW VARIABLES") + if err != nil { + return nil, errz.Err(err) + } + defer log.WarnIfCloseError(varRows) + for varRows.Next() { + var dbVar source.DBVar + err = varRows.Scan(&dbVar.Name, &dbVar.Value) + if err != nil { + return nil, errz.Err(err) + } + srcMeta.DBVars = append(srcMeta.DBVars, dbVar) + } + err = varRows.Err() + if err != nil { + return nil, errz.Err(err) + } + + // get the schema name and total table size + const schemaSummaryQ = `SELECT table_schema, SUM( data_length + index_length ) AS table_size + FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE()` + err = db.QueryRowContext(ctx, schemaSummaryQ).Scan(&srcMeta.Name, &srcMeta.Size) + if err != nil { + return nil, errz.Err(err) + } + srcMeta.FQName = srcMeta.Name + + const tblSummaryQ = `SELECT TABLE_NAME, TABLE_TYPE, TABLE_COMMENT, (DATA_LENGTH + INDEX_LENGTH) AS TABLE_SIZE + FROM information_schema.TABLES + WHERE TABLE_SCHEMA = DATABASE() ORDER BY TABLE_SCHEMA, TABLE_NAME ASC` + tblSchemaRows, err := db.QueryContext(ctx, tblSummaryQ) + if err != nil { + return nil, errz.Err(err) + } + defer log.WarnIfCloseError(tblSchemaRows) + + var tblSize sql.NullInt64 + for tblSchemaRows.Next() { + tblMeta := &source.TableMetadata{} + + err = tblSchemaRows.Scan(&tblMeta.Name, &tblMeta.TableType, &tblMeta.Comment, &tblSize) + if err != nil { + return nil, errz.Err(err) + } + + if tblSize.Valid { + // for a view (as opposed to table), tblSize can be NULL + tblMeta.Size = tblSize.Int64 + } else { + tblMeta.Size = -1 + } + + err = populateTblMetadata(log, db, srcMeta.Name, tblMeta) + if err != nil { + if hasErrCode(err, errNumTableNotExist) { + // If the table is dropped while we're collecting metadata, + // for example, we log a warning and continue. + log.Warnf("table metadata collection: table %q appears not to exist (continuing regardless): %v", tblMeta.Name, err) + continue + } + + return nil, err + } + + srcMeta.Tables = append(srcMeta.Tables, tblMeta) + } + + err = tblSchemaRows.Err() + if err != nil { + return nil, errz.Err(err) + } + + return srcMeta, nil +} + +func populateTblMetadata(log lg.Log, db *sql.DB, dbName string, tbl *source.TableMetadata) error { + const tpl = "SELECT column_name, data_type, column_type, ordinal_position, column_default, is_nullable, column_key," + + " column_comment, extra, (SELECT COUNT(*) FROM `%s`) AS row_count FROM information_schema.columns cols" + + " WHERE cols.TABLE_SCHEMA = '%s' AND cols.TABLE_NAME = '%s'" + + " ORDER BY cols.ordinal_position ASC" + + query := fmt.Sprintf(tpl, tbl.Name, dbName, tbl.Name) + + rows, err := db.Query(query) + if err != nil { + return errz.Err(err) + } + defer log.WarnIfCloseError(rows) + + for rows.Next() { + col := &source.ColMetadata{} + var isNullable, colKey, extra string + + defVal := &sql.NullString{} + err = rows.Scan(&col.Name, &col.BaseType, &col.ColumnType, &col.Position, defVal, &isNullable, &colKey, &col.Comment, &extra, &tbl.RowCount) + if err != nil { + return errz.Err(err) + } + + if strings.EqualFold("YES", isNullable) { + col.Nullable = true + } + + if strings.Contains(colKey, "PRI") { + col.PrimaryKey = true + } + + col.DefaultValue = defVal.String + col.Kind = kindFromDBTypeName(log, col.Name, col.BaseType) + + tbl.Columns = append(tbl.Columns, col) + } + + return errz.Err(rows.Err()) +} + +// newInsertMungeFunc is lifted from driver.DefaultInsertMungeFunc. +func newInsertMungeFunc(destTbl string, destMeta sqlz.RecordMeta) driver.InsertMungeFunc { + return func(rec sqlz.Record) error { + if len(rec) != len(destMeta) { + return errz.Errorf("insert record has %d vals but dest table %s has %d cols (%s)", + len(rec), destTbl, len(destMeta), strings.Join(destMeta.Names(), ",")) + } + + for i := range rec { + nullable, _ := destMeta[i].Nullable() + if rec[i] == nil && !nullable { + mungeSetZeroValue(i, rec, destMeta) + continue + } + + if destMeta[i].Kind() == sqlz.KindText { + // text doesn't need our help + continue + } + + // The dest col kind is something other than text, let's inspect + // the actual value and check its type. + switch val := rec[i].(type) { + default: + continue + case string: + if val == "" { + if nullable { + rec[i] = nil + } else { + mungeSetZeroValue(i, rec, destMeta) + } + } + // else we let the DB figure it out + + case *string: + if *val == "" { + if nullable { + rec[i] = nil + } else { + mungeSetZeroValue(i, rec, destMeta) + } + } + + // string is non-empty + if destMeta[i].Kind() == sqlz.KindDatetime { + // special handling for datetime + mungeSetDatetimeFromString(*val, i, rec) + } + + // else we let the DB figure it out + } + } + return nil + } +} + +// datetimeLayouts are layouts attempted with time.Parse to +// try to give mysql a time.Time instead of string. +var datetimeLayouts = []string{time.RFC3339Nano, time.RFC3339} + +// mungeSetDatetimeFromString attempts to parse s into time.Time and +// sets rec[i] to that value. If unable to parse, rec is unchanged, +// and it's up to mysql to deal with the text. +func mungeSetDatetimeFromString(s string, i int, rec []interface{}) { + var t time.Time + var err error + + for _, layout := range datetimeLayouts { + t, err = time.Parse(layout, s) + if err == nil { + rec[i] = t + return + } + } +} + +// mungeSetZeroValue is invoked when rec[i] is nil, but +// destMeta[i] is not nullable. +func mungeSetZeroValue(i int, rec []interface{}, destMeta sqlz.RecordMeta) { + // REVISIT: do we need to do special handling for kind.Datetime + // and kind.Time (e.g. "00:00" for time)? + z := reflect.Zero(destMeta[i].ScanType()).Interface() + rec[i] = z +} diff --git a/drivers/mysql/metadata_test.go b/drivers/mysql/metadata_test.go new file mode 100644 index 00000000..8a68128a --- /dev/null +++ b/drivers/mysql/metadata_test.go @@ -0,0 +1,79 @@ +package mysql_test + +import ( + "testing" + + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/mysql" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestKindFromDBTypeName(t *testing.T) { + t.Parallel() + + testCases := map[string]sqlz.Kind{ + "": sqlz.KindUnknown, + "INTEGER": sqlz.KindInt, + "INT": sqlz.KindInt, + "SMALLINT": sqlz.KindInt, + "TINYINT": sqlz.KindInt, + "MEDIUMINT": sqlz.KindInt, + "BIGINT": sqlz.KindInt, + "BIT": sqlz.KindInt, + "DECIMAL": sqlz.KindDecimal, + "DECIMAL(5,2)": sqlz.KindDecimal, + "NUMERIC": sqlz.KindDecimal, + "FLOAT": sqlz.KindFloat, + "FLOAT(8)": sqlz.KindFloat, + "FLOAT(7,4)": sqlz.KindFloat, + "REAL": sqlz.KindFloat, + "DOUBLE": sqlz.KindFloat, + "DOUBLE PRECISION": sqlz.KindFloat, + "DATE": sqlz.KindDate, + "DATETIME": sqlz.KindDatetime, + "TIMESTAMP": sqlz.KindDatetime, + "TIME": sqlz.KindTime, + "YEAR": sqlz.KindInt, + "CHAR": sqlz.KindText, + "VARCHAR": sqlz.KindText, + "VARCHAR(64)": sqlz.KindText, + "TINYTEXT": sqlz.KindText, + "TEXT": sqlz.KindText, + "MEDIUMTEXT": sqlz.KindText, + "LONGTEXT": sqlz.KindText, + "BINARY": sqlz.KindBytes, + "BINARY(4)": sqlz.KindBytes, + "VARBINARY": sqlz.KindBytes, + "BLOB": sqlz.KindBytes, + "MEDIUMBLOB": sqlz.KindBytes, + "LONGBLOB": sqlz.KindBytes, + "ENUM": sqlz.KindText, + "SET": sqlz.KindText, + "BOOL": sqlz.KindBool, + "BOOLEAN": sqlz.KindBool, + } + + log := testlg.New(t) + for dbTypeName, wantKind := range testCases { + gotKind := mysql.KindFromDBTypeName(log, "col", dbTypeName) + require.Equal(t, wantKind, gotKind, "%q should produce %s but got %s", dbTypeName, wantKind, gotKind) + } +} + +func TestDatabase_SourceMetadata(t *testing.T) { + testCases := sakila.MyAll + for _, handle := range testCases { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, _, dbase, _ := testh.NewWith(t, handle) + _, err := dbase.SourceMetadata(th.Context) + require.NoError(t, err) + }) + } +} diff --git a/drivers/mysql/mysql.go b/drivers/mysql/mysql.go new file mode 100644 index 00000000..1624238c --- /dev/null +++ b/drivers/mysql/mysql.go @@ -0,0 +1,353 @@ +package mysql + +import ( + "context" + "database/sql" + "fmt" + "strings" + + "github.com/go-sql-driver/mysql" + "github.com/neilotoole/lg" + "github.com/xo/dburl" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlbuilder" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +const ( + // Type is the MySQL source driver type. + Type = source.Type("mysql") + + // dbDrvr is the backing MySQL SQL driver impl name. + dbDrvr = "mysql" +) + +// Provider is the MySQL implementation of driver.Provider. +type Provider struct { + Log lg.Log +} + +// DriverFor implements driver.Provider. +func (p *Provider) DriverFor(typ source.Type) (driver.Driver, error) { + if typ != Type { + return nil, errz.Errorf("unsupported driver type %q", typ) + } + + return &Driver{log: p.Log}, nil +} + +// Driver is the MySQL implementation of driver.Driver. +type Driver struct { + log lg.Log +} + +// DriverMetadata implements driver.Driver. +func (d *Driver) DriverMetadata() driver.Metadata { + return driver.Metadata{ + Type: Type, + Description: "MySQL", + Doc: "https://github.com/go-sql-driver/mysql", + IsSQL: true, + } +} + +// Dialect implements driver.Driver. +func (d *Driver) Dialect() driver.Dialect { + return driver.Dialect{ + Type: Type, + Placeholders: placeholders, + Quote: '`', + IntBool: true, + } +} + +func placeholders(n int) string { + return stringz.RepeatJoin("?", n, driver.Comma) +} + +// SQLBuilder implements driver.SQLDriver. +func (d *Driver) SQLBuilder() (sqlbuilder.FragmentBuilder, sqlbuilder.QueryBuilder) { + return newFragmentBuilder(d.log), &sqlbuilder.BaseQueryBuilder{} +} + +// RecordMeta implements driver.SQLDriver. +func (d *Driver) RecordMeta(colTypes []*sql.ColumnType) (sqlz.RecordMeta, driver.NewRecordFunc, error) { + recMeta := recordMetaFromColumnTypes(d.log, colTypes) + mungeFn := getNewRecordFunc(recMeta) + return recMeta, mungeFn, nil +} + +// CreateTable implements driver.SQLDriver. +func (d *Driver) CreateTable(ctx context.Context, db sqlz.DB, tblDef *sqlmodel.TableDef) error { + createStmt, err := buildCreateTableStmt(tblDef) + if err != nil { + return err + } + + _, err = db.ExecContext(ctx, createStmt) + return errz.Err(err) +} + +// PrepareInsertStmt implements driver.SQLDriver. +func (d *Driver) PrepareInsertStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string) (*driver.StmtExecer, error) { + destColsMeta, err := d.getTableRecordMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + stmt, err := driver.PrepareInsertStmt(ctx, d, db, destTbl, destColsMeta.Names()) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + newInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt), + destColsMeta) + + return execer, nil +} + +// PrepareUpdateStmt implements driver.SQLDriver. +func (d *Driver) PrepareUpdateStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string, where string) (*driver.StmtExecer, error) { + destColsMeta, err := d.getTableRecordMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + query, err := buildUpdateStmt(destTbl, destColNames, where) + if err != nil { + return nil, err + } + + stmt, err := db.PrepareContext(ctx, query) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + newInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt), + destColsMeta) + + return execer, nil +} + +func newStmtExecFunc(stmt *sql.Stmt) driver.StmtExecFunc { + return func(ctx context.Context, args ...interface{}) (int64, error) { + res, err := stmt.ExecContext(ctx, args...) + if err != nil { + return 0, errz.Err(err) + } + affected, err := res.RowsAffected() + return affected, errz.Err(err) + } +} + +// CopyTable implements driver.SQLDriver. +func (d *Driver) CopyTable(ctx context.Context, db sqlz.DB, fromTable, toTable string, copyData bool) (int64, error) { + stmt := fmt.Sprintf("CREATE TABLE IF NOT EXISTS `%s` SELECT * FROM `%s`", toTable, fromTable) + + if !copyData { + stmt += " WHERE 0" + } + + affected, err := sqlz.ExecResult(ctx, db, stmt) + if err != nil { + return 0, errz.Err(err) + } + + return affected, nil +} + +// DropTable implements driver.SQLDriver. +func (d *Driver) DropTable(ctx context.Context, db sqlz.DB, tbl string, ifExists bool) error { + var stmt string + + if ifExists { + stmt = fmt.Sprintf("DROP TABLE IF EXISTS `%s` RESTRICT", tbl) + } else { + stmt = fmt.Sprintf("DROP TABLE `%s` RESTRICT", tbl) + } + + _, err := db.ExecContext(ctx, stmt) + return errz.Err(err) +} + +// TableColumnTypes implements driver.SQLDriver. +func (d *Driver) TableColumnTypes(ctx context.Context, db sqlz.DB, tblName string, colNames []string) ([]*sql.ColumnType, error) { + const queryTpl = "SELECT %s FROM %s LIMIT 0" + + dialect := d.Dialect() + quote := string(dialect.Quote) + tblNameQuoted := stringz.Surround(tblName, quote) + + var colsClause = "*" + if len(colNames) > 0 { + colNamesQuoted := stringz.SurroundSlice(colNames, quote) + colsClause = strings.Join(colNamesQuoted, driver.Comma) + } + + query := fmt.Sprintf(queryTpl, colsClause, tblNameQuoted) + rows, err := db.QueryContext(ctx, query) + if err != nil { + return nil, errz.Err(err) + } + + colTypes, err := rows.ColumnTypes() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Err() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Close() + if err != nil { + return nil, errz.Err(err) + } + + return colTypes, nil +} + +func (d *Driver) getTableRecordMeta(ctx context.Context, db sqlz.DB, tblName string, colNames []string) (sqlz.RecordMeta, error) { + colTypes, err := d.TableColumnTypes(ctx, db, tblName, colNames) + if err != nil { + return nil, err + } + + destCols, _, err := d.RecordMeta(colTypes) + if err != nil { + return nil, err + } + + return destCols, nil +} + +// SourceDSN extracts the mysql driver DSN from src.Location. +func SourceDSN(src *source.Source) (string, error) { + if !strings.HasPrefix(src.Location, "mysql://") || len(src.Location) < 10 { + return "", errz.Errorf("invalid source location %s", src.RedactedLocation()) + } + + u, err := dburl.Parse(src.Location) + if err != nil { + return "", errz.Wrapf(err, "invalid source location %s", src.RedactedLocation()) + } + + // Convert the location to the desired driver DSN. + // Location: mysql://sakila:p_ssW0rd@localhost:3306/sqtest + // Driver DSN: sakila:p_ssW0rd@tcp(localhost:3306)/sqtest + driverDSN := fmt.Sprintf("%s@tcp(%s)%s", u.User.String(), u.Host, u.Path) + + // REVISIT: extra check for safety, can prob delete later + _, err = mysql.ParseDSN(driverDSN) + if err != nil { + return "", errz.Wrapf(err, "invalid source location: %q", driverDSN) + } + + return driverDSN, nil +} + +// Open implements driver.Driver. +func (d *Driver) Open(ctx context.Context, src *source.Source) (driver.Database, error) { + dsn, err := SourceDSN(src) + if err != nil { + return nil, err + } + + db, err := sql.Open(dbDrvr, dsn) + if err != nil { + return nil, errz.Err(err) + } + + return &database{log: d.log, db: db, src: src, drvr: d}, nil +} + +// ValidateSource implements driver.Driver. +func (d *Driver) ValidateSource(src *source.Source) (*source.Source, error) { + if src.Type != Type { + return nil, errz.Errorf("expected source type %q but got %q", Type, src.Type) + } + return src, nil +} + +// Ping implements driver.Driver. +func (d *Driver) Ping(ctx context.Context, src *source.Source) error { + dbase, err := d.Open(context.TODO(), src) + if err != nil { + return err + } + defer d.log.WarnIfCloseError(dbase.DB()) + + return dbase.DB().Ping() +} + +// Truncate implements driver.SQLDriver. Arg reset is +// always ignored: the identity value is always reset by +// the TRUNCATE statement. +func (d *Driver) Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (affected int64, err error) { + // https://dev.mysql.com/doc/refman/8.0/en/truncate-table.html + dsn, err := SourceDSN(src) + if err != nil { + return 0, err + } + + db, err := sql.Open(dbDrvr, dsn) + if err != nil { + return 0, errz.Err(err) + } + defer d.log.WarnIfFuncError(db.Close) + + // Not sure about the Tx requirements? + tx, err := db.BeginTx(ctx, &sql.TxOptions{Isolation: sql.LevelSerializable}) + if err != nil { + return 0, errz.Err(err) + } + + // For whatever reason, the "affected" count from TRUNCATE + // always returns zero. So, we're going to synthesize it. + var beforeCount int64 + err = tx.QueryRowContext(ctx, fmt.Sprintf("SELECT COUNT(*) FROM `%s`", tbl)).Scan(&beforeCount) + if err != nil { + return 0, errz.Append(err, errz.Err(tx.Rollback())) + } + + affected, err = sqlz.ExecResult(ctx, tx, fmt.Sprintf("TRUNCATE TABLE `%s`", tbl)) + if err != nil { + return affected, errz.Append(err, errz.Err(tx.Rollback())) + } + + if affected != 0 { + // Note: At the time of writing, this doesn't happen: + // zero is always returned (which we don't like). + // If this changes (driver changes?) then we'll revisit. + d.log.Warnf("Unexpectedly got non-zero (%d) rows affected from TRUNCATE", affected) + return affected, errz.Err(tx.Commit()) + } + + // TRUNCATE succeeded, therefore tbl is empty, therefore + // the count of truncated rows must be beforeCount? + return beforeCount, errz.Err(tx.Commit()) +} + +// hasErrCode returns true if err (or its cause error) +// is of type *mysql.MySQLError and err.Number equals code. +func hasErrCode(err error, code uint16) bool { + err = errz.Cause(err) + if err2, ok := err.(*mysql.MySQLError); ok { + return err2.Number == code + } + return false +} + +const errNumTableNotExist = uint16(1146) diff --git a/drivers/mysql/mysql_test.go b/drivers/mysql/mysql_test.go new file mode 100644 index 00000000..54fa3132 --- /dev/null +++ b/drivers/mysql/mysql_test.go @@ -0,0 +1,76 @@ +package mysql_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestSmoke(t *testing.T) { + t.Parallel() + + for _, handle := range sakila.MyAll { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, src, _, _ := testh.NewWith(t, handle) + sink, err := th.QuerySQL(src, "SELECT * FROM actor") + require.NoError(t, err) + require.Equal(t, len(sakila.TblActorCols), len(sink.RecMeta)) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } +} + +func TestDriver_CreateTable_NotNullDefault(t *testing.T) { + t.Parallel() + + testCases := sakila.MyAll + for _, handle := range testCases { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, src, dbase, drvr := testh.NewWith(t, handle) + + tblName := stringz.UniqTableName(t.Name()) + colNames, colKinds := fixt.ColNamePerKind(drvr.Dialect().IntBool, false, false) + + tblDef := sqlmodel.NewTableDef(tblName, colNames, colKinds) + for _, colDef := range tblDef.Cols { + colDef.NotNull = true + colDef.HasDefault = true + } + + err := drvr.CreateTable(th.Context, dbase.DB(), tblDef) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, tblName) }) + + // MySQL doesn't support default values for TEXT or BLOB + // See: https://bugs.mysql.com/bug.php?id=21532 + // So, instead of "INSERT INTO tblName () VALUES ()" we + // need to provide explicit values for col_text and col_bytes. + insertDefaultStmt := "INSERT INTO " + tblName + " (col_text, col_bytes) VALUES (?, ?)" + affected := th.ExecSQL(src, insertDefaultStmt, "", []byte{}) + require.Equal(t, int64(1), affected) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+tblName) + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) + require.Equal(t, len(colNames), len(sink.RecMeta)) + for i := range colNames { + require.NotNil(t, sink.Recs[0][i]) + nullable, ok := sink.RecMeta[i].Nullable() + require.True(t, ok) + require.False(t, nullable) + } + }) + } +} diff --git a/drivers/mysql/sqlbuilder.go b/drivers/mysql/sqlbuilder.go new file mode 100644 index 00000000..9ddcc78a --- /dev/null +++ b/drivers/mysql/sqlbuilder.go @@ -0,0 +1,225 @@ +package mysql + +import ( + "bytes" + "fmt" + "strings" + + "github.com/neilotoole/sq/libsq/sqlbuilder" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" +) + +func newFragmentBuilder(log lg.Log) *sqlbuilder.BaseFragmentBuilder { + r := &sqlbuilder.BaseFragmentBuilder{} + r.Log = log + r.Quote = "`" + r.ColQuote = "`" + r.Ops = sqlbuilder.BaseOps() + return r +} + +func dbTypeNameFromKind(kind sqlz.Kind) string { + switch kind { + case sqlz.KindText: + return "TEXT" + case sqlz.KindInt: + return "INT" + case sqlz.KindFloat: + return "DOUBLE" + case sqlz.KindDecimal: + return "DECIMAL" + case sqlz.KindBool: + return "TINYINT(1)" + case sqlz.KindDatetime: + return "DATETIME" + case sqlz.KindTime: + return "TIME" + case sqlz.KindDate: + return "DATE" + case sqlz.KindBytes: + return "BLOB" + default: + panic(fmt.Sprintf("unsupported datatype %q", kind)) + } +} + +// createTblKindDefaults is a map of Kind to the value +// to use for a column's DEFAULT clause in a CREATE TABLE statement. +// +// Note that MySQL (at least of v5.6) doesn't support DEFAULT values +// for TEXT or BLOB columns. +// https://bugs.mysql.com/bug.php?id=21532 +var createTblKindDefaults = map[sqlz.Kind]string{ + sqlz.KindText: ``, + sqlz.KindInt: `DEFAULT 0`, + sqlz.KindFloat: `DEFAULT 0`, + sqlz.KindDecimal: `DEFAULT 0`, + sqlz.KindBool: `DEFAULT 0`, + sqlz.KindDatetime: `DEFAULT '1970-01-01 00:00:00'`, + sqlz.KindDate: `DEFAULT '1970-01-01'`, + sqlz.KindTime: `DEFAULT '00:00:00'`, + sqlz.KindBytes: ``, + sqlz.KindUnknown: ``, +} + +func buildCreateTableStmt(tblDef *sqlmodel.TableDef) (string, error) { + buf := &bytes.Buffer{} + + cols := make([]string, len(tblDef.Cols)) + for i, col := range tblDef.Cols { + buf.WriteRune('`') + buf.WriteString(col.Name) + buf.WriteString("` ") + buf.WriteString(dbTypeNameFromKind(col.Kind)) + + if col.HasDefault { + buf.WriteRune(' ') + buf.WriteString(createTblKindDefaults[col.Kind]) + } + + if col.NotNull { + buf.WriteString(" NOT NULL") + } + + if col.Name == tblDef.PKColName && tblDef.AutoIncrement { + buf.WriteString(" AUTO_INCREMENT") + } + cols[i] = buf.String() + buf.Reset() + } + + pk := "" + if tblDef.PKColName != "" { + buf.WriteString("PRIMARY KEY (`") + buf.WriteString(tblDef.PKColName) + buf.WriteString("`),\n") + buf.WriteString("UNIQUE KEY `") + buf.WriteString(tblDef.Name) + buf.WriteRune('_') + buf.WriteString(tblDef.PKColName) + buf.WriteString("_uindex` (`") + buf.WriteString(tblDef.PKColName) + buf.WriteString("`)") + pk = buf.String() + } + + uniq := "" + buf.Reset() + for _, col := range tblDef.Cols { + if col.Name == tblDef.PKColName { + // if the table has a PK, then we've already added a unique constraint for it above + continue + } + + if col.Unique { + if buf.Len() > 0 { + buf.WriteString(",\n") + } + buf.WriteString("UNIQUE KEY `") + buf.WriteString(tblDef.Name) + buf.WriteRune('_') + buf.WriteString(col.Name) + buf.WriteString("_uindex` (`") + buf.WriteString(col.Name) + buf.WriteString("`)") + } + } + uniq = buf.String() + + fk := "" + buf.Reset() + for _, col := range tblDef.Cols { + if col.ForeignKey != nil { + if buf.Len() > 0 { + buf.WriteString(",\n") + } + buf.WriteString("KEY `") + buf.WriteString(tblDef.Name) + buf.WriteRune('_') + buf.WriteString(col.Name) + buf.WriteRune('_') + buf.WriteString(col.ForeignKey.RefTable) + buf.WriteRune('_') + buf.WriteString(col.ForeignKey.RefCol) + buf.WriteString("_key` (`") + buf.WriteString(col.Name) + buf.WriteString("`),\nCONSTRAINT `") + buf.WriteString(tblDef.Name) + buf.WriteRune('_') + buf.WriteString(col.Name) + buf.WriteRune('_') + buf.WriteString(col.ForeignKey.RefTable) + buf.WriteRune('_') + buf.WriteString(col.ForeignKey.RefCol) + buf.WriteString("_fk` FOREIGN KEY (`") + buf.WriteString(col.Name) + buf.WriteString("`) REFERENCES `") + buf.WriteString(col.ForeignKey.RefTable) + buf.WriteString("` (`") + buf.WriteString(col.ForeignKey.RefCol) + buf.WriteString("`) ON DELETE ") + if col.ForeignKey.OnDelete == "" { + buf.WriteString("CASCADE") + } else { + buf.WriteString(col.ForeignKey.OnDelete) + } + buf.WriteString(" ON UPDATE ") + if col.ForeignKey.OnUpdate == "" { + buf.WriteString("CASCADE") + } else { + buf.WriteString(col.ForeignKey.OnUpdate) + } + } + } + fk = buf.String() + + buf.Reset() + buf.WriteString("CREATE TABLE `") + buf.WriteString(tblDef.Name) + buf.WriteString("` (\n") + + for x := 0; x < len(cols)-1; x++ { + buf.WriteString(cols[x]) + buf.WriteString(",\n") + } + buf.WriteString(cols[len(cols)-1]) + + if pk != "" { + buf.WriteString(",\n") + buf.WriteString(pk) + } + if uniq != "" { + buf.WriteString(",\n") + buf.WriteString(uniq) + } + if fk != "" { + buf.WriteString(",\n") + buf.WriteString(fk) + } + buf.WriteString("\n)") + return buf.String(), nil +} + +func buildUpdateStmt(tbl string, cols []string, where string) (string, error) { + if len(cols) == 0 { + return "", errz.Errorf("no columns provided") + } + + buf := strings.Builder{} + buf.WriteString("UPDATE `") + buf.WriteString(tbl) + buf.WriteString("` SET `") + buf.WriteString(strings.Join(cols, "` = ?, `")) + buf.WriteString("` = ?") + if where != "" { + buf.WriteString(" WHERE ") + buf.WriteString(where) + } + + return buf.String(), nil +} diff --git a/drivers/mysql/testdata/type_test.ddl b/drivers/mysql/testdata/type_test.ddl new file mode 100644 index 00000000..7bf0374a --- /dev/null +++ b/drivers/mysql/testdata/type_test.ddl @@ -0,0 +1,64 @@ +create table type_test +( + col_id int auto_increment primary key, + col_bigint bigint not null, + col_bigint_n bigint null, + col_binary binary(64) not null, + col_binary_n binary(64) null, + col_bit bit(64) not null, + col_bit_n bit(64) null, + col_blob blob not null, + col_blob_n blob null, + col_bool tinyint(1) not null, + col_bool_n tinyint(1) null, + col_char char(255) not null, + col_char_n char(255) null, + col_date date not null, + col_date_n date null, + col_datetime datetime not null, + col_datetime_n datetime null, + col_decimal decimal not null, + col_decimal_n decimal null, + col_double double not null, + col_double_n double null, + col_enum enum ('alfa', 'bravo', 'charlie') not null, + col_enum_n enum ('alfa', 'bravo', 'charlie') null, + col_float float not null, + col_float_n float null, + col_int int not null, + col_int_n int null, + col_int24 int(24) not null, + col_int24_n int(24) null, + col_longblob longblob not null, + col_longblob_n longblob null, + col_longtext longtext not null, + col_longtext_n longtext null, + col_mediumblob mediumblob not null, + col_mediumblob_n mediumblob null, + col_mediumint mediumint not null, + col_mediumint_n mediumint null, + col_mediumtext mediumtext not null, + col_mediumtext_n mediumtext null, + col_set set ('alfa', 'bravo', 'charlie') not null, + col_set_n set ('alfa', 'bravo', 'charlie') null, + col_smallint smallint not null, + col_smallint_n smallint null, + col_text text not null, + col_text_n text null, + col_time time not null, + col_time_n time null, + col_timestamp timestamp not null, + col_timestamp_n timestamp null, + col_tinyint tinyint not null, + col_tinyint_n tinyint null, + col_tinyblob tinyblob not null, + col_tinyblob_n tinyblob null, + col_tinytext tinytext not null, + col_tinytext_n tinytext null, + col_varbinary varbinary(64) not null, + col_varbinary_n varbinary(64) null, + col_varchar varchar(255) not null, + col_varchar_n varchar(255) null, + col_year year not null, + col_year_n year null +) \ No newline at end of file diff --git a/drivers/postgres/db_type_test.go b/drivers/postgres/db_type_test.go new file mode 100644 index 00000000..612c8729 --- /dev/null +++ b/drivers/postgres/db_type_test.go @@ -0,0 +1,460 @@ +package postgres_test + +import ( + "fmt" + "io/ioutil" + "strings" + "testing" + + "github.com/neilotoole/sq/testh/fixt" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +// typeTestTableDDLPath is the location of the SQL CREATE statement +// for the "type_test" table that is used to verify handling of the +// the driver's various data types. +const typeTestTableDDLPath = "testdata/type_test.ddl" + +// typeTestVals is the set of vals inserted to the type_test table (and +// is expected when querying that table). +// +// - Row 0 contains zero values (0, empty string, etc). +// - Row 1 contains non-zero values. +// - Row 2 contains non-zero values and nil values for cols that permit +// nil values (those cols ending with _n such as col_text_n). +var typeTestVals = [][]interface{}{ + { + 1, // col_id + fixt.IntZ, // col_bigint + fixt.IntZ, // col_bigint_n + 1, // col_bigserial + fixtBitZ, // col_bit + fixtBitZ, // col_bit_n + fixt.BitStringZ, // col_bitvarying + fixt.BitStringZ, // col_bitvarying_n + fixt.BoolZ, // col_boolean + fixt.BoolZ, // col_boolean_n + fixtBoxZ, // col_box + fixtBoxZ, // col_box_n + fixt.BytesZ, // col_bytea + fixt.BytesZ, // col_bytea_n + fixt.TextZ, // col_character + fixt.TextZ, // col_character_n + fixt.TextZ, // col_character_varying + fixt.TextZ, // col_character_varying_n + fixtCIDRZ, // col_cidr + fixtCIDRZ, // col_cidr_n + fixtCircleZ, // col_circle + fixtCircleZ, // col_circle_n + fixt.DateZ, // col_date + fixt.DateZ, // col_date_n + fixt.FloatZ, // col_double_precision + fixt.FloatZ, // col_double_precision_n + fixtInetZ, // col_inet + fixtInetZ, // col_inet_n + fixt.IntZ, // col_integer + fixt.IntZ, // col_integer_n + fixtIntervalZ, // col_interval + fixtIntervalZ, // col_interval_n + fixt.JSONZ, // col_json + fixt.JSONZ, // col_json_n + fixt.JSONZ, // col_jsonb + fixt.JSONZ, // col_jsonb_n + fixtLineZ, // col_line + fixtLineZ, // col_line_n + fixtLineSegmentZ, // col_lseg + fixtLineSegmentZ, // col_lseg_n + fixtMACAddrZ, // col_macaddr + fixtMACAddrZ, // col_macaddr_n + fixt.MoneyZ, // col_money + fixt.MoneyZ, // col_money_n + fixt.DecimalZ, // col_numeric + fixt.DecimalZ, // col_numeric_n + fixtPathZ, // col_path + fixtPathZ, // col_path_n + fixtPgLSNZ, // col_pg_lsn + fixtPgLSNZ, // col_pg_lsn_n + fixtPointZ, // col_point + fixtPointZ, // col_point_n + fixtPolygonZ, // col_polygon + fixtPolygonZ, // col_polygon_n + fixt.FloatZ, // col_real + fixt.FloatZ, // col_real_n + fixt.IntZ, // col_smallint + fixt.IntZ, // col_smallint_n + 1, // col_smallserial + 1, // col_serial + fixt.TextZ, // col_text + fixt.TextZ, // col_text_n + fixt.TimeOfDayZ, // col_time + fixt.TimeOfDayZ, // col_time_n + fixt.TimeOfDayZ, // col_timetz + fixt.TimeOfDayZ, // col_timetz_n + fixt.DatetimeZ, // col_timestamp + fixt.DatetimeZ, // col_timestamp_n + fixt.DatetimeZ, // col_timestamptz + fixt.DatetimeZ, // col_timestamptz_n + fixtTSQueryZ, // col_tsquery + fixtTSQueryZ, // col_tsquery_n + fixtTSVectorZ, // col_tsvector + fixtTSVectorZ, // col_tsvector_n + fixtUUIDZ, // col_uuid + fixtUUIDZ, // col_uuid_n + fixtXMLZ, // col_xml + fixtXMLZ, // col_xml_n + }, + { + 2, // col_id + fixt.Int, // col_bigint + fixt.Int, // col_bigint_n + 2, // col_bigserial + fixtBit, // col_bit + fixtBit, // col_bit_n + fixt.BitString, // col_bitvarying + fixt.BitString, // col_bitvarying_n + fixt.Bool, // col_boolean + fixt.Bool, // col_boolean_n + fixtBox, // col_box + fixtBox, // col_box_n + fixt.Bytes, // col_bytea + fixt.Bytes, // col_bytea_n + fixt.Text, // col_character + fixt.Text, // col_character_n + fixt.Text, // col_character_varying + fixt.Text, // col_character_varying_n + fixtCIDR, // col_cidr + fixtCIDR, // col_cidr_n + fixtCircle, // col_circle + fixtCircle, // col_circle_n + fixt.Date, // col_date + fixt.Date, // col_date_n + fixt.Float, // col_double_precision + fixt.Float, // col_double_precision_n + fixtInet, // col_inet + fixtInet, // col_inet_n + fixt.Int, // col_integer + fixt.Int, // col_integer_n + fixtInterval, // col_interval + fixtInterval, // col_interval_n + fixt.JSON, // col_json + fixt.JSON, // col_json_n + fixt.JSON, // col_jsonb + fixt.JSON, // col_jsonb_n + fixtLine, // col_line + fixtLine, // col_line_n + fixtLineSegment, // col_lseg + fixtLineSegment, // col_lseg_n + fixtMACAddr, // col_macaddr + fixtMACAddr, // col_macaddr_n + fixt.Money, // col_money + fixt.Money, // col_money_n + fixt.Decimal, // col_numeric + fixt.Decimal, // col_numeric_n + fixtPath, // col_path + fixtPath, // col_path_n + fixtPgLSN, // col_pg_lsn + fixtPgLSN, // col_pg_lsn_n + fixtPoint, // col_point + fixtPoint, // col_point_n + fixtPolygon, // col_polygon + fixtPolygon, // col_polygon_n + fixt.Float, // col_real + fixt.Float, // col_real_n + fixt.Int, // col_smallint + fixt.Int, // col_smallint_n + 2, // col_smallserial + 2, // col_serial + fixt.Text, // col_text + fixt.Text, // col_text_n + fixt.TimeOfDay, // col_time + fixt.TimeOfDay, // col_time_n + fixt.TimeOfDay, // col_timet + fixt.TimeOfDay, // col_timet_n + fixt.Datetime, // col_timestamp + fixt.Datetime, // col_timestamp_n + fixt.Datetime, // col_timestampt + fixt.Datetime, // col_timestampt_n + fixtTSQuery, // col_tsquery + fixtTSQuery, // col_tsquery_n + fixtTSVector, // col_tsvector + fixtTSVector, // col_tsvector_n + fixtUUID, // col_uuid + fixtUUID, // col_uuid_n + fixtXML, // col_xml + fixtXML, // col_xml_n + }, + { + 3, // col_id + fixt.Int, // col_bigint + nil, // col_bigint_n + 3, // col_bigserial + fixtBit, // col_bit + nil, // col_bit_n + fixt.BitString, // col_bitvarying + nil, // col_bitvarying_n + fixt.Bool, // col_boolean + nil, // col_boolean_n + fixtBox, // col_box + nil, // col_box_n + fixt.Bytes, // col_bytea + nil, // col_bytea_n + fixt.Text, // col_character + nil, // col_character_n + fixt.Text, // col_character_varying + nil, // col_character_varying_n + fixtCIDR, // col_cidr + nil, // col_cidr_n + fixtCircle, // col_circle + nil, // col_circle_n + fixt.Date, // col_date + nil, // col_date_n + fixt.Float, // col_double_precision + nil, // col_double_precision_n + fixtInet, // col_inet + nil, // col_inet_n + fixt.Int, // col_integer + nil, // col_integer_n + fixtInterval, // col_interval + nil, // col_interval_n + fixt.JSON, // col_json + nil, // col_json_n + fixt.JSON, // col_jsonb + nil, // col_jsonb_n + fixtLine, // col_line + nil, // col_line_n + fixtLineSegment, // col_lseg + nil, // col_lseg_n + fixtMACAddr, // col_macaddr + nil, // col_macaddr_n + fixt.Money, // col_money + nil, // col_money_n + fixt.Decimal, // col_numeric + nil, // col_numeric_n + fixtPath, // col_path + nil, // col_path_n + fixtPgLSN, // col_pg_lsn + nil, // col_pg_lsn_n + fixtPoint, // col_point + nil, // col_point_n + fixtPolygon, // col_polygon + nil, // col_polygon_n + fixt.Float, // col_real + nil, // col_real_n + fixt.Int, // col_smallint + nil, // col_smallint_n + 3, // col_smallserial + 3, // col_serial + fixt.Text, // col_text + nil, // col_text_n + fixt.TimeOfDay, // col_time + nil, // col_time_n + fixt.TimeOfDay, // col_timet + nil, // col_timet_n + fixt.Datetime, // col_timestamp + nil, // col_timestamp_n + fixt.Datetime, // col_timestampt + nil, // col_timestampt_n + fixtTSQuery, // col_tsquery + nil, // col_tsquery_n + fixtTSVector, // col_tsvector + nil, // col_tsvector_n + fixtUUID, // col_uuid + nil, // col_uuid_n + fixtXML, // col_xml + nil, // col_xml_n + }, +} + +// typeTestColNames holds type_test table column names. +var typeTestColNames = []string{ + "col_id", + "col_bigint", + "col_bigint_n", + "col_bigserial", // no col_bigserial_n, because serial cannot be NULL + "col_bit", + "col_bit_n", + "col_bitvarying", + "col_bitvarying_n", + "col_boolean", + "col_boolean_n", + "col_box", + "col_box_n", + "col_bytea", + "col_bytea_n", + "col_character", + "col_character_n", + "col_character_varying", + "col_character_varying_n", + "col_cidr", + "col_cidr_n", + "col_circle", + "col_circle_n", + "col_date", + "col_date_n", + "col_double_precision", + "col_double_precision_n", + "col_inet", + "col_inet_n", + "col_integer", + "col_integer_n", + "col_interval", + "col_interval_n", + "col_json", + "col_json_n", + "col_jsonb", + "col_jsonb_n", + "col_line", + "col_line_n", + "col_lseg", + "col_lseg_n", + "col_macaddr", + "col_macaddr_n", + "col_money", + "col_money_n", + "col_numeric", + "col_numeric_n", + "col_path", + "col_path_n", + "col_pg_lsn", + "col_pg_lsn_n", + "col_point", + "col_point_n", + "col_polygon", + "col_polygon_n", + "col_real", + "col_real_n", + "col_smallint", + "col_smallint_n", + "col_smallserial", // no col_smallserial_n, because serial cannot be NULL + "col_serial", // no col_serial_n, because serial cannot be NULL + "col_text", + "col_text_n", + "col_time", + "col_time_n", + "col_timetz", + "col_timetz_n", + "col_timestamp", + "col_timestamp_n", + "col_timestamptz", + "col_timestamptz_n", + "col_tsquery", + "col_tsquery_n", + "col_tsvector", + "col_tsvector_n", + "col_uuid", + "col_uuid_n", + "col_xml", + "col_xml_n", +} + +const ( + fixtBit = "1" + fixtBitZ = "0" + fixtBitVar = "1001" + fixtBitVarZ = "0" + fixtBox = "(0,0), (7,7)" + fixtBoxZ = "(0,0), (0,0)" + fixtCIDR = "192.168.0.1" + fixtCIDRZ = "0.0.0.0" + fixtInet = "192.168.0.1" + fixtInetZ = "0.0.0.0" + fixtCircle = "((0,0), 7)" + fixtCircleZ = "((0,0), 0)" + fixtInterval = "7 seconds" + fixtIntervalZ = "0 seconds" + fixtLine = `[(0,0),(7,0)]` + fixtLineZ = `[(0,0),(1,0)]` // line must have two distinct points + fixtLineSegment = `[(0,0),(7,0)]` + fixtLineSegmentZ = `[(0,0),(0,0)]` + fixtMACAddr = "07:07:07:07:07:07" + fixtMACAddrZ = "00:00:00:00:00:00" + fixtPath = "[(0,0),(7,0)]" + fixtPathZ = "[(0,0),(0,0)]" + fixtPgLSN = "7/7" + fixtPgLSNZ = "0/0" + fixtPoint = "(7,7)" + fixtPointZ = "(0,0)" + fixtPolygon = "((0,0),(0,7),(7,0))" + fixtPolygonZ = "((0,0))" + fixtTSQuery = "alfa | bravo" + fixtTSQueryZ = "" + fixtTSVector = "alfa bravo charlie delta" + fixtTSVectorZ = "" + fixtUUID = "77777777-7777-7777-7777-777777777777" + fixtUUIDZ = "00000000-0000-0000-0000-000000000000" + fixtXML = "7" + fixtXMLZ = "" +) + +// createTypeTestTbl creates the type_test table, returning the actual table +// named used. If withData is true, the test data is also loaded. +// It is the caller's responsibility to drop the created table. +func createTypeTestTable(th *testh.Helper, src *source.Source, withData bool) (rowCount int64, actualTblName string) { + const canonicalTblName = "type_test" + t, db := th.T, th.Open(src).DB() + tblDDL, err := ioutil.ReadFile(typeTestTableDDLPath) + require.NoError(t, err) + + // replace the canonical table name + actualTblName = stringz.UniqTableName(canonicalTblName) + createStmt := strings.Replace(string(tblDDL), canonicalTblName, actualTblName, 1) + + _, err = db.ExecContext(th.Context, createStmt) + require.NoError(t, err) + + if !withData { + return 0, actualTblName + } + + placeholders := th.SQLDriverFor(src).Dialect().Placeholders(len(typeTestColNames)) + const insertTpl = "INSERT INTO %s (%s) VALUES (%s)" + insertStmt := fmt.Sprintf(insertTpl, actualTblName, strings.Join(typeTestColNames, ", "), placeholders) + + for _, insertRowVals := range typeTestVals { + res, err := db.Exec(insertStmt, insertRowVals...) + require.NoError(t, err) + affected, err := res.RowsAffected() + require.NoError(t, err) + require.Equal(t, int64(1), affected) + rowCount += affected + } + + return rowCount, actualTblName +} + +// TestDatabaseTypes checks that our driver is dealing with database +// types correctly. The test constructs a "type_test" table with cols +// for various database types, inserts known data, and checks that +// the returned data matches the inserted data, including verifying +// that NULL is handled correctly. +func TestDatabaseTypes(t *testing.T) { + testCases := sakila.PgAll + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + insertCount, actualTblName := createTypeTestTable(th, src, true) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + err := libsq.QuerySQL(th.Context, th.Log, th.Open(src), recw, fmt.Sprintf("SELECT * FROM %s", actualTblName)) + require.NoError(t, err) + written, err := recw.Wait() + require.NoError(t, err) + require.Equal(t, insertCount, written) + }) + } +} diff --git a/drivers/postgres/internal_test.go b/drivers/postgres/internal_test.go new file mode 100644 index 00000000..170ac0a6 --- /dev/null +++ b/drivers/postgres/internal_test.go @@ -0,0 +1,43 @@ +package postgres + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/driver" +) + +var GetTableColumnNames = getTableColumnNames + +func TestPlaceholders(t *testing.T) { + testCases := map[int]string{ + 0: "", + 1: "$1", + 2: "$1" + driver.Comma + "$2", + 3: "$1" + driver.Comma + "$2" + driver.Comma + "$3", + } + + for n, want := range testCases { + got := placeholders(n) + require.Equal(t, want, got) + } +} + +func TestReplacePlaceholders(t *testing.T) { + testCases := map[string]string{ + "": "", + "hello": "hello", + "?": "$1", + "??": "$1$2", + " ? ": " $1 ", + "(?, ?)": "($1, $2)", + "(?, ?, ?)": "($1, $2, $3)", + " (? , ? , ?) ": " ($1 , $2 , $3) ", + } + + for input, want := range testCases { + got := replacePlaceholders(input) + require.Equal(t, want, got) + } +} diff --git a/drivers/postgres/metadata.go b/drivers/postgres/metadata.go new file mode 100644 index 00000000..0e831df6 --- /dev/null +++ b/drivers/postgres/metadata.go @@ -0,0 +1,620 @@ +package postgres + +import ( + "context" + "database/sql" + "fmt" + "reflect" + "strings" + + "github.com/jackc/pgconn" + "github.com/neilotoole/errgroup" + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// kindFromDBTypeName determines the sqlz.Kind from the database +// type name. For example, "VARCHAR" -> sqlz.KindText. +// See https://www.postgresql.org/docs/9.5/datatype.html +func kindFromDBTypeName(log lg.Log, colName, dbTypeName string) sqlz.Kind { + var kind sqlz.Kind + dbTypeName = strings.ToUpper(dbTypeName) + + switch dbTypeName { + default: + log.Warnf("Unknown Postgres database type '%s' for column '%s': using %s", dbTypeName, colName, sqlz.KindUnknown) + kind = sqlz.KindUnknown + case "": + kind = sqlz.KindUnknown + case "INT", "INTEGER", "INT2", "INT4", "INT8", "SMALLINT", "BIGINT": + kind = sqlz.KindInt + case "CHAR", "CHARACTER", "VARCHAR", "TEXT", "BPCHAR", "CHARACTER VARYING": + kind = sqlz.KindText + case "BYTEA": + kind = sqlz.KindBytes + case "BOOL", "BOOLEAN": + kind = sqlz.KindBool + case "TIMESTAMP", "TIMESTAMPTZ", "TIMESTAMP WITHOUT TIME ZONE": + kind = sqlz.KindDatetime + case "TIME", "TIMETZ", "TIME WITHOUT TIME ZONE": + kind = sqlz.KindTime + case "DATE": + kind = sqlz.KindDate + case "INTERVAL": // interval meaning time duration + kind = sqlz.KindText + case "FLOAT", "FLOAT4", "FLOAT8", "DOUBLE", "DOUBLE PRECISION": + kind = sqlz.KindFloat + case "UUID": + kind = sqlz.KindText + case "DECIMAL", "NUMERIC", "MONEY": + kind = sqlz.KindDecimal + case "JSON", "JSONB": + kind = sqlz.KindText + case "BIT", "VARBIT": + kind = sqlz.KindText + case "XML": + kind = sqlz.KindText + case "BOX", "CIRCLE", "LINE", "LSEG", "PATH", "POINT", "POLYGON": + kind = sqlz.KindText + case "CIDR", "INET", "MACADDR": + kind = sqlz.KindText + case "USER-DEFINED": + // REVISIT: How to handle USER-DEFINED type? + kind = sqlz.KindText + case "TSVECTOR": + // REVISIT: how to handle TSVECTOR type? + kind = sqlz.KindText + case "ARRAY": + // REVISIT: how to handle ARRAY type? + kind = sqlz.KindText + } + + return kind +} + +// setScanType ensures that ctd's scan type field is set appropriately. +func setScanType(log lg.Log, ctd *sqlz.ColumnTypeData, kind sqlz.Kind) { + if kind == sqlz.KindDecimal { + // Force the use of string for decimal, as the driver will + // sometimes prefer float. + ctd.ScanType = sqlz.RTypeNullString + return + } + + // Need to switch to the nullable scan types because the + // backing driver doesn't report nullable info accurately. + ctd.ScanType = toNullableScanType(log, ctd.Name, ctd.DatabaseTypeName, kind, ctd.ScanType) +} + +// toNullableScanType returns the nullable equivalent of the scan type +// reported by the postgres driver's ColumnType.ScanType. This is necessary +// because the pgx driver does not support the stdlib sql +// driver.RowsColumnTypeNullable interface. +func toNullableScanType(log lg.Log, colName, dbTypeName string, kind sqlz.Kind, pgScanType reflect.Type) reflect.Type { + var nullableScanType reflect.Type + + switch pgScanType { + default: + // If we don't recognize the scan type (likely it's interface{}), + // we explicitly switch through the db type names that we know. + // At this time, we will use NullString for all unrecognized + // scan types, but nonetheless we switch through the known db type + // names so that we see the log warning for truly unknown types. + switch dbTypeName { + default: + log.Warnf("Unknown postgres scan type: col(%s) --> scan(%s) --> db(%s) --> kind(%s): using %s", + colName, pgScanType, dbTypeName, kind, sqlz.RTypeNullString) + nullableScanType = sqlz.RTypeNullString + case "": + // NOTE: the pgx driver currently reports an empty dbTypeName for certain + // cols such as XML or MONEY. + nullableScanType = sqlz.RTypeNullString + case "TIME": + nullableScanType = sqlz.RTypeNullString + case "BIT", "VARBIT": + nullableScanType = sqlz.RTypeNullString + case "BPCHAR": + nullableScanType = sqlz.RTypeNullString + case "BOX", "CIRCLE", "LINE", "LSEG", "PATH", "POINT", "POLYGON": + nullableScanType = sqlz.RTypeNullString + case "CIDR", "INET", "MACADDR": + nullableScanType = sqlz.RTypeNullString + case "INTERVAL": + nullableScanType = sqlz.RTypeNullString + case "JSON", "JSONB": + nullableScanType = sqlz.RTypeNullString + case "XML": + nullableScanType = sqlz.RTypeNullString + case "UUID": + nullableScanType = sqlz.RTypeNullString + } + + case sqlz.RTypeInt64, sqlz.RTypeInt, sqlz.RTypeInt8, sqlz.RTypeInt16, sqlz.RTypeInt32, sqlz.RTypeNullInt64: + nullableScanType = sqlz.RTypeNullInt64 + + case sqlz.RTypeFloat32, sqlz.RTypeFloat64, sqlz.RTypeNullFloat64: + nullableScanType = sqlz.RTypeNullFloat64 + + case sqlz.RTypeString, sqlz.RTypeNullString: + nullableScanType = sqlz.RTypeNullString + + case sqlz.RTypeBool, sqlz.RTypeNullBool: + nullableScanType = sqlz.RTypeNullBool + + case sqlz.RTypeTime, sqlz.RTypeNullTime: + nullableScanType = sqlz.RTypeNullTime + + case sqlz.RTypeBytes: + nullableScanType = sqlz.RTypeBytes + } + + return nullableScanType +} + +func getSourceMetadata(ctx context.Context, log lg.Log, src *source.Source, db sqlz.DB) (*source.Metadata, error) { + md := &source.Metadata{ + Handle: src.Handle, + Location: src.Location, + SourceType: src.Type, + DBDriverType: src.Type, + } + + var schema string + const summaryQuery = `SELECT current_catalog, current_schema(), pg_database_size(current_catalog), +current_setting('server_version'), version(), "current_user"()` + + err := db.QueryRowContext(ctx, summaryQuery). + Scan(&md.Name, &schema, &md.Size, &md.DBVersion, &md.DBProduct, &md.User) + if err != nil { + return nil, errz.Err(err) + } + + md.FQName = md.Name + "." + schema + + md.DBVars, err = getPgSettings(ctx, log, db) + if err != nil { + return nil, err + } + + tblNames, err := getAllTableNames(ctx, log, db) + if err != nil { + return nil, err + } + + g, gctx := errgroup.WithContextN(ctx, driver.ErrgroupNumG, driver.ErrgroupQSize) + tblMetas := make([]*source.TableMetadata, len(tblNames)) + + for i := range tblNames { + select { + case <-gctx.Done(): + return nil, errz.Err(gctx.Err()) + default: + } + + i := i + g.Go(func() error { + tblMeta, err := getTableMetadata(gctx, log, db, tblNames[i]) + if err != nil { + if hasErrCode(err, errCodeRelationNotExist) { + // If the table is dropped while we're collecting metadata, + // for example, we log a warning and suppress the error. + log.Warnf("table metadata collection: table %q appears not to exist (continuing regardless): %v", + tblNames[i], err) + return nil + } + return err + } + tblMetas[i] = tblMeta + return nil + }) + } + + err = g.Wait() + if err != nil { + return nil, errz.Err(err) + } + + // If a table wasn't found (possibly dropped while querying), then + // its entry could be nil. We copy the non-nil elements to the + // final slice. + md.Tables = make([]*source.TableMetadata, 0, len(tblMetas)) + for i := range tblMetas { + if tblMetas[i] != nil { + md.Tables = append(md.Tables, tblMetas[i]) + } + } + return md, nil +} + +// hasErrCode returns true if err (or its cause error) +// is of type *pgconn.PgError and err.Number equals code. +func hasErrCode(err error, code string) bool { + err = errz.Cause(err) + if err2, ok := err.(*pgconn.PgError); ok { + return err2.Code == code + } + return false +} + +const errCodeRelationNotExist = "42P01" + +func getPgSettings(ctx context.Context, log lg.Log, db sqlz.DB) ([]source.DBVar, error) { + rows, err := db.QueryContext(ctx, "SELECT name, setting FROM pg_settings ORDER BY name") + if err != nil { + return nil, errz.Err(err) + } + + defer log.WarnIfCloseError(rows) + var dbVars []source.DBVar + + for rows.Next() { + v := source.DBVar{} + err = rows.Scan(&v.Name, &v.Value) + if err != nil { + return nil, errz.Err(err) + } + dbVars = append(dbVars, v) + } + + err = closeRows(rows) + if err != nil { + return nil, err + } + + return dbVars, nil +} + +// getAllTable names returns all table (or view) names in the current +// catalog & schema. +func getAllTableNames(ctx context.Context, log lg.Log, db sqlz.DB) ([]string, error) { + const tblNamesQuery = `SELECT table_name FROM information_schema.tables +WHERE table_catalog = current_catalog AND table_schema = current_schema() +ORDER BY table_name` + + rows, err := db.QueryContext(ctx, tblNamesQuery) + if err != nil { + return nil, errz.Err(err) + } + defer log.WarnIfCloseError(rows) + + var tblNames []string + for rows.Next() { + var s string + err = rows.Scan(&s) + if err != nil { + return nil, errz.Err(err) + } + tblNames = append(tblNames, s) + } + + err = closeRows(rows) + if err != nil { + return nil, err + } + + return tblNames, nil +} + +func getTableMetadata(ctx context.Context, log lg.Log, db sqlz.DB, tblName string) (*source.TableMetadata, error) { + const tblsQueryTpl = `SELECT table_catalog, table_schema, table_name, table_type, is_insertable_into, + (SELECT COUNT(*) FROM "%s") AS table_row_count, + pg_total_relation_size('%q') AS table_size, + (SELECT '%q'::regclass::oid AS table_oid), + obj_description('%q'::REGCLASS, 'pg_class') AS table_comment +FROM information_schema.tables +WHERE table_catalog = current_database() +AND table_schema = current_schema() +AND table_name = $1` + tablesQuery := fmt.Sprintf(tblsQueryTpl, tblName, tblName, tblName, tblName) + + pgTbl := &pgTable{} + err := db.QueryRowContext(ctx, tablesQuery, tblName). + Scan(&pgTbl.tableCatalog, &pgTbl.tableSchema, &pgTbl.tableName, &pgTbl.tableType, &pgTbl.isInsertable, &pgTbl.rowCount, &pgTbl.size, &pgTbl.oid, &pgTbl.comment) + if err != nil { + return nil, errz.Err(err) + } + + tblMeta := tblMetaFromPgTable(pgTbl) + if tblMeta.Name != tblName { + // Shouldn't happen, but we'll error if it does + return nil, errz.Errorf("table %q not found in %s.%s", tblName, pgTbl.tableCatalog, pgTbl.tableSchema) + } + + pgCols, err := getPgColumns(ctx, log, db, tblName) + if err != nil { + return nil, err + } + + for _, pgCol := range pgCols { + colMeta := colMetaFromPgColumn(log, pgCol) + tblMeta.Columns = append(tblMeta.Columns, colMeta) + } + + // We need to fetch the constraints to set the PK etc. + pgConstraints, err := getPgConstraints(ctx, log, db, tblName) + if err != nil { + return nil, err + } + + setTblMetaConstraints(log, tblMeta, pgConstraints) + + return tblMeta, nil +} + +// pgTable holds query results for table metadata. +type pgTable struct { + tableCatalog string + tableSchema string + tableName string + tableType string + isInsertable sqlz.NullBool // Use driver.NullBool because "YES", "NO" values + rowCount int64 + size sql.NullInt64 + oid string + comment sql.NullString +} + +func tblMetaFromPgTable(pgt *pgTable) *source.TableMetadata { + return &source.TableMetadata{ + Name: pgt.tableName, + FQName: fmt.Sprintf("%s.%s.%s", pgt.tableCatalog, pgt.tableSchema, pgt.tableName), + TableType: pgt.tableType, + RowCount: pgt.rowCount, + Size: pgt.size.Int64, + Comment: pgt.comment.String, + Columns: nil, // Note: columns are set independently later + } +} + +// pgColumn holds query results for column metadata. +// See https://www.postgresql.org/docs/8.0/infoschema-columns.html +type pgColumn struct { + tableCatalog string + tableSchema string + tableName string + columnName string + ordinalPosition int64 + columnDefault sql.NullString + isNullable sqlz.NullBool + dataType string + characterMaximumLength sql.NullInt64 + characterOctetLength sql.NullInt64 + numericPrecision sql.NullInt64 + numericPrecisionRadix sql.NullInt64 + numericScale sql.NullInt64 + datetimePrecision sql.NullInt64 + domainCatalog sql.NullString + domainSchema sql.NullString + domainName sql.NullString + udtCatalog string + udtSchema string + udtName string + isIdentity sqlz.NullBool + isGenerated sql.NullString + isUpdatable sqlz.NullBool + + // comment holds any column comment. Note that this field is + // not part of the standard postgres infoschema, but is + // separately fetched. + comment sql.NullString +} + +// getPgColumns queries the column metadata for tblName. +func getPgColumns(ctx context.Context, log lg.Log, db sqlz.DB, tblName string) ([]*pgColumn, error) { + // colsQuery gets column information from information_schema.columns. + // + // It also has a subquery to get column comments. See: + // - https://stackoverflow.com/a/22547588 + // - https://dba.stackexchange.com/a/160668 + const colsQuery = `SELECT table_catalog, + table_schema, + table_name, + column_name, + ordinal_position, + column_default, + is_nullable, + data_type, + character_maximum_length, + character_octet_length, + numeric_precision, + numeric_precision_radix, + numeric_scale, + datetime_precision, + domain_catalog, + domain_schema, + domain_name, + udt_catalog, + udt_schema, + udt_name, + is_identity, + is_generated, + is_updatable, + ( + SELECT + pg_catalog.col_description(c.oid, cols.ordinal_position::int) + FROM + pg_catalog.pg_class c + WHERE + c.oid = (SELECT ('"' || cols.table_name || '"')::regclass::oid) + AND c.relname = cols.table_name + ) AS column_comment +FROM information_schema.columns cols +WHERE cols.table_catalog = current_catalog AND cols.table_schema = current_schema() AND cols.table_name = $1 +ORDER BY cols.table_catalog, cols.table_schema, cols.table_name, cols.ordinal_position` + + rows, err := db.QueryContext(ctx, colsQuery, tblName) + if err != nil { + return nil, errz.Err(err) + } + + defer log.WarnIfCloseError(rows) + + var cols []*pgColumn + for rows.Next() { + col := &pgColumn{} + err = scanPgColumn(rows, col) + if err != nil { + return nil, err + } + + cols = append(cols, col) + } + err = closeRows(rows) + if err != nil { + return nil, err + } + + return cols, nil +} + +func scanPgColumn(rows *sql.Rows, c *pgColumn) error { + err := rows.Scan(&c.tableCatalog, &c.tableSchema, &c.tableName, &c.columnName, &c.ordinalPosition, + &c.columnDefault, &c.isNullable, &c.dataType, &c.characterMaximumLength, &c.characterOctetLength, + &c.numericPrecision, &c.numericPrecisionRadix, &c.numericScale, + &c.datetimePrecision, &c.domainCatalog, &c.domainSchema, &c.domainName, + &c.udtCatalog, &c.udtSchema, &c.udtName, + &c.isIdentity, &c.isGenerated, &c.isUpdatable, &c.comment) + return errz.Err(err) +} + +func colMetaFromPgColumn(log lg.Log, pgCol *pgColumn) *source.ColMetadata { + colMeta := &source.ColMetadata{ + Name: pgCol.columnName, + Position: pgCol.ordinalPosition, + PrimaryKey: false, // Note that PrimaryKey is set separately from pgConstraint. + BaseType: pgCol.udtName, + ColumnType: pgCol.dataType, + Kind: kindFromDBTypeName(log, pgCol.columnName, pgCol.udtName), + Nullable: pgCol.isNullable.Bool, + DefaultValue: pgCol.columnDefault.String, + Comment: pgCol.comment.String, + } + return colMeta +} + +// getPgConstraints returns a slice of pgConstraint. If tblName is +// empty, constraints for all tables in the current catalog & schema +// are returned. If tblName is specified, constraints just for that +// table are returned. +func getPgConstraints(ctx context.Context, log lg.Log, db sqlz.DB, tblName string) ([]*pgConstraint, error) { + var args []interface{} + query := `SELECT kcu.table_catalog,kcu.table_schema,kcu.table_name,kcu.column_name, + kcu.ordinal_position,tc.constraint_name,tc.constraint_type, + ( + SELECT pg_catalog.pg_get_constraintdef(pgc.oid, true) + FROM pg_catalog.pg_constraint pgc + WHERE pgc.conrelid = (SELECT ('"' || kcu.table_name || '"')::regclass::oid) + AND pgc.conname = tc.constraint_name + LIMIT 1 + ) AS constraint_def, + ( + SELECT pgc.confrelid::regclass + FROM pg_catalog.pg_constraint pgc + WHERE pgc.conrelid = (SELECT ('"' || kcu.table_name || '"')::regclass::oid) + AND pgc.conname = tc.constraint_name + AND pgc.confrelid > 0 + LIMIT 1 + ) AS constraint_fkey_table_name +FROM information_schema.key_column_usage AS kcu + LEFT JOIN information_schema.table_constraints AS tc + ON tc.constraint_name = kcu.constraint_name +WHERE kcu.table_catalog = current_catalog AND kcu.table_schema = current_schema() +` + + if tblName != "" { + query += ` AND kcu.table_name = $1 ` + args = append(args, tblName) + } + + query += ` ORDER BY kcu.table_catalog, kcu.table_schema, kcu.table_name, tc.constraint_type DESC, kcu.ordinal_position` + + rows, err := db.QueryContext(ctx, query, args...) + if err != nil { + return nil, errz.Err(err) + } + defer log.WarnIfCloseError(rows) + + var constraints []*pgConstraint + + for rows.Next() { + pgc := &pgConstraint{} + err = rows.Scan(&pgc.tableCatalog, &pgc.tableSchema, &pgc.tableName, &pgc.columnName, &pgc.ordinalPosition, + &pgc.constraintName, &pgc.constraintType, &pgc.constraintDef, &pgc.constraintFKeyTableName) + if err != nil { + return nil, errz.Err(err) + } + + constraints = append(constraints, pgc) + } + err = closeRows(rows) + if err != nil { + return nil, err + } + + return constraints, nil +} + +// pgConstraint holds query results for constraint metadata. +// This type is column-focused: that is, an instance is produced +// for each constraint/column pair. Thus, if a table has a +// composite primary key (col_a, col_b), two pgConstraint instances +// are produced. +type pgConstraint struct { + tableCatalog string + tableSchema string + tableName string + columnName string + ordinalPosition int64 + constraintName string + constraintType string + constraintDef string + + // constraintFKeyTableName holds the name of the table to which + // a foreign-key constraint points to. This is null if this + // constraint is not a foreign key. + constraintFKeyTableName sql.NullString +} + +// setTblMetaConstraints updates tblMeta with constraints found +// in pgConstraints. +func setTblMetaConstraints(log lg.Log, tblMeta *source.TableMetadata, pgConstraints []*pgConstraint) { + for _, pgc := range pgConstraints { + fqTblName := pgc.tableCatalog + "." + pgc.tableSchema + "." + pgc.tableName + if fqTblName != tblMeta.FQName { + continue + } + + if pgc.constraintType == constraintTypePK { + colMeta := tblMeta.Column(pgc.columnName) + if colMeta == nil { + // Shouldn't happen + log.Warnf("No column %s.%s found matching constraint %q", tblMeta.Name, pgc.columnName, pgc.constraintName) + continue + } + colMeta.PrimaryKey = true + } + } +} + +const ( + constraintTypePK = "PRIMARY KEY" + constraintTypeFK = "FOREIGN KEY" +) + +// closeRows invokes rows.Err and rows.Close, returning +// an error if either of those methods returned an error. +func closeRows(rows *sql.Rows) error { + if rows == nil { + return nil + } + err1 := rows.Err() + err2 := rows.Close() + if err1 != nil { + return errz.Err(err1) + } + return errz.Err(err2) +} diff --git a/drivers/postgres/postgres.go b/drivers/postgres/postgres.go new file mode 100644 index 00000000..51e61e7c --- /dev/null +++ b/drivers/postgres/postgres.go @@ -0,0 +1,444 @@ +// Package postgres implements the sq driver for postgres. +package postgres + +import ( + "context" + "database/sql" + "fmt" + "strconv" + "strings" + + // Import jackc/pgx, which is our postgres driver. + _ "github.com/jackc/pgx/v4/stdlib" + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlbuilder" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +const ( + // Type is the postgres source driver type. + Type = source.Type("postgres") + + // dbDrvr is the backing postgres SQL driver impl name. + dbDrvr = "pgx" +) + +// Provider is the postgres implementation of driver.Provider. +type Provider struct { + Log lg.Log +} + +// DriverFor implements driver.Provider. +func (p *Provider) DriverFor(typ source.Type) (driver.Driver, error) { + if typ != Type { + return nil, errz.Errorf("unsupported driver type %q", typ) + } + + return &Driver{log: p.Log}, nil +} + +// Driver is the postgres implementation of driver.Driver. +type Driver struct { + log lg.Log +} + +// DriverMetadata implements driver.Driver. +func (d *Driver) DriverMetadata() driver.Metadata { + return driver.Metadata{ + Type: Type, + Description: "PostgreSQL", + Doc: "https://github.com/jackc/pgx", + IsSQL: true, + } +} + +// Dialect implements driver.SQLDriver. +func (d *Driver) Dialect() driver.Dialect { + return driver.Dialect{ + Type: Type, + Placeholders: placeholders, + Quote: '"', + } +} + +func placeholders(n int) string { + if n == 0 { + return "" + } + if n == 1 { + return "$1" + } + + var sb strings.Builder + for i := 1; i <= n; i++ { + sb.WriteRune('$') + sb.WriteString(strconv.Itoa(i)) + if i < n { + sb.WriteString(", ") + } + } + return sb.String() +} + +// SQLBuilder implements driver.SQLDriver. +func (d *Driver) SQLBuilder() (sqlbuilder.FragmentBuilder, sqlbuilder.QueryBuilder) { + return newFragmentBuilder(d.log), &sqlbuilder.BaseQueryBuilder{} +} + +// Open implements driver.Driver. +func (d *Driver) Open(ctx context.Context, src *source.Source) (driver.Database, error) { + db, err := sql.Open(dbDrvr, src.Location) + if err != nil { + return nil, errz.Err(err) + } + + return &database{log: d.log, db: db, src: src, drvr: d}, nil +} + +// ValidateSource implements driver.Driver. +func (d *Driver) ValidateSource(src *source.Source) (*source.Source, error) { + if src.Type != Type { + return nil, errz.Errorf("expected source type %q but got %q", Type, src.Type) + } + return src, nil +} + +// Ping implements driver.Driver. +func (d *Driver) Ping(ctx context.Context, src *source.Source) error { + dbase, err := d.Open(context.TODO(), src) + if err != nil { + return err + } + + defer d.log.WarnIfCloseError(dbase.DB()) + + return dbase.DB().Ping() +} + +// Truncate implements driver.Driver. +func (d *Driver) Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (affected int64, err error) { + // https://www.postgresql.org/docs/9.1/sql-truncate.html + + // RESTART IDENTITY and CASCADE/RESTRICT are from pg 8.2 onwards + // TODO: should first check the pg version for < pg8.2 support + + db, err := sql.Open(dbDrvr, src.Location) + if err != nil { + return affected, errz.Err(err) + } + + query := fmt.Sprintf("TRUNCATE TABLE %q", tbl) + if reset { + // if reset & src.DBVersion >= 8.2 + query += " RESTART IDENTITY" // default is CONTINUE IDENTITY + } + // We could add RESTRICT here; alternative is CASCADE + + affected, err = sqlz.ExecResult(ctx, db, query) + return affected, err +} + +// CreateTable implements driver.SQLDriver. +func (d *Driver) CreateTable(ctx context.Context, db sqlz.DB, tblDef *sqlmodel.TableDef) error { + stmt := buildCreateTableStmt(tblDef) + + _, err := db.ExecContext(ctx, stmt) + return errz.Err(err) +} + +// PrepareInsertStmt implements driver.SQLDriver. +func (d *Driver) PrepareInsertStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string) (*driver.StmtExecer, error) { + // Note that the pgx driver doesn't support res.LastInsertId. + // https://github.com/jackc/pgx/issues/411 + + destColsMeta, err := d.getTableRecordMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + stmt, err := driver.PrepareInsertStmt(ctx, d, db, destTbl, destColsMeta.Names()) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + driver.DefaultInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt), + destColsMeta) + + return execer, nil +} + +// PrepareUpdateStmt implements driver.SQLDriver. +func (d *Driver) PrepareUpdateStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string, where string) (*driver.StmtExecer, error) { + destColsMeta, err := d.getTableRecordMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + query, err := buildUpdateStmt(destTbl, destColNames, where) + if err != nil { + return nil, err + } + + stmt, err := db.PrepareContext(ctx, query) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + driver.DefaultInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt), + destColsMeta) + + return execer, nil +} + +func newStmtExecFunc(stmt *sql.Stmt) driver.StmtExecFunc { + return func(ctx context.Context, args ...interface{}) (int64, error) { + res, err := stmt.ExecContext(ctx, args...) + if err != nil { + return 0, errz.Err(err) + } + affected, err := res.RowsAffected() + return affected, errz.Err(err) + } +} + +// CopyTable implements driver.SQLDriver. +func (d *Driver) CopyTable(ctx context.Context, db sqlz.DB, fromTable, toTable string, copyData bool) (int64, error) { + stmt := fmt.Sprintf("CREATE TABLE %q AS TABLE %q", toTable, fromTable) + + if !copyData { + stmt += " WITH NO DATA" + } + + affected, err := sqlz.ExecResult(ctx, db, stmt) + if err != nil { + return 0, errz.Err(err) + } + + return affected, nil +} + +// DropTable implements driver.SQLDriver. +func (d *Driver) DropTable(ctx context.Context, db sqlz.DB, tbl string, ifExists bool) error { + var stmt string + + if ifExists { + stmt = fmt.Sprintf("DROP TABLE IF EXISTS %q RESTRICT", tbl) + } else { + stmt = fmt.Sprintf("DROP TABLE %q RESTRICT", tbl) + } + + _, err := db.ExecContext(ctx, stmt) + return errz.Err(err) +} + +// TableColumnTypes implements driver.SQLDriver. +func (d *Driver) TableColumnTypes(ctx context.Context, db sqlz.DB, tblName string, colNames []string) ([]*sql.ColumnType, error) { + // We have to do some funky stuff to get the column types + // from when the table has no rows. + // https://stackoverflow.com/questions/8098795/return-a-value-if-no-record-is-found + + // If tblName is "person" and we want cols "username" + // and "email", the query will look like: + // + // SELECT + // (SELECT username FROM person LIMIT 1) AS username, + // (SELECT email FROM person LIMIT 1) AS email + // LIMIT 1; + quote := string(d.Dialect().Quote) + tblNameQuoted := stringz.Surround(tblName, quote) + + var query string + + if len(colNames) == 0 { + // When the table is empty, and colNames are not provided, + // then we need to fetch the table col names independently. + var err error + colNames, err = getTableColumnNames(ctx, d.log, db, tblName) + if err != nil { + return nil, err + } + } + + var sb strings.Builder + sb.WriteString("SELECT\n") + for i, colName := range colNames { + colNameQuoted := stringz.Surround(colName, quote) + sb.WriteString(fmt.Sprintf(" (SELECT %s FROM %s LIMIT 1) AS %s", colNameQuoted, tblNameQuoted, colNameQuoted)) + if i < len(colNames)-1 { + sb.WriteRune(',') + } + sb.WriteString("\n") + } + sb.WriteString("LIMIT 1") + query = sb.String() + + rows, err := db.QueryContext(ctx, query) + if err != nil { + return nil, errz.Err(err) + } + + colTypes, err := rows.ColumnTypes() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Err() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Close() + if err != nil { + return nil, errz.Err(err) + } + + return colTypes, nil +} + +func (d *Driver) getTableRecordMeta(ctx context.Context, db sqlz.DB, tblName string, colNames []string) (sqlz.RecordMeta, error) { + colTypes, err := d.TableColumnTypes(ctx, db, tblName, colNames) + if err != nil { + return nil, err + } + + destCols, _, err := d.RecordMeta(colTypes) + if err != nil { + return nil, err + } + + return destCols, nil +} + +// getTableColumnNames consults postgres's information_schema.columns table, +// returning the names of the table's columns in oridinal order. +func getTableColumnNames(ctx context.Context, log lg.Log, db sqlz.DB, tblName string) ([]string, error) { + const query = `SELECT column_name FROM information_schema.columns + WHERE table_schema = current_schema() + AND table_name = $1 + ORDER BY ordinal_position` + + rows, err := db.QueryContext(ctx, query, tblName) + if err != nil { + return nil, errz.Err(err) + } + + var colNames []string + var colName string + + for rows.Next() { + err = rows.Scan(&colName) + if err != nil { + log.WarnIfCloseError(rows) + return nil, errz.Err(err) + } + + colNames = append(colNames, colName) + } + + if rows.Err() != nil { + log.WarnIfCloseError(rows) + return nil, errz.Err(err) + } + + err = rows.Close() + if err != nil { + return nil, errz.Err(err) + } + + return colNames, nil +} + +// RecordMeta implements driver.SQLDriver. +func (d *Driver) RecordMeta(colTypes []*sql.ColumnType) (sqlz.RecordMeta, driver.NewRecordFunc, error) { + // The jackc/pgx driver doesn't report nullability (sql.ColumnType) + // Apparently this is due to what postgres sends over the wire. + // See https://github.com/jackc/pgx/issues/276#issuecomment-526831493 + // So, we'll set the scan type for each column to the nullable + // version below. + + recMeta := make(sqlz.RecordMeta, len(colTypes)) + for i, colType := range colTypes { + kind := kindFromDBTypeName(d.log, colType.Name(), colType.DatabaseTypeName()) + colTypeData := sqlz.NewColumnTypeData(colType, kind) + setScanType(d.log, colTypeData, kind) + recMeta[i] = sqlz.NewFieldMeta(colTypeData) + } + + mungeFn := func(vals []interface{}) (sqlz.Record, error) { + // postgres doesn't need to do any special munging, so we + // just use the default munging. + rec, skipped := driver.NewRecordFromScanRow(recMeta, vals, nil) + if len(skipped) > 0 { + var skippedDetails []string + + for _, skip := range skipped { + meta := recMeta[skip] + skippedDetails = append(skippedDetails, + fmt.Sprintf("[%d] %s: db(%s) --> kind(%s) --> scan(%s)", + skip, meta.Name(), meta.DatabaseTypeName(), meta.Kind(), meta.ScanType())) + } + + return nil, errz.Errorf("expected zero skipped cols but have %d:\n %s", + skipped, strings.Join(skippedDetails, "\n ")) + } + return rec, nil + } + + return recMeta, mungeFn, nil +} + +// database is the postgres implementation of driver.Database. +type database struct { + log lg.Log + drvr *Driver + db *sql.DB + src *source.Source +} + +// DB implements driver.Database. +func (d *database) DB() *sql.DB { + return d.db +} + +// SQLDriver implements driver.Database. +func (d *database) SQLDriver() driver.SQLDriver { + return d.drvr +} + +// Source implements driver.Database. +func (d *database) Source() *source.Source { + return d.src +} + +// TableMetadata implements driver.Database. +func (d *database) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + return getTableMetadata(ctx, d.log, d.DB(), tblName) +} + +// Metadata implements driver.Database. +func (d *database) SourceMetadata(ctx context.Context) (*source.Metadata, error) { + return getSourceMetadata(ctx, d.log, d.src, d.DB()) +} + +// Close implements driver.Database. +func (d *database) Close() error { + d.log.Debugf("Close database: %s", d.src) + + err := d.db.Close() + if err != nil { + return errz.Err(err) + } + return nil +} diff --git a/drivers/postgres/postgres_test.go b/drivers/postgres/postgres_test.go new file mode 100644 index 00000000..571901cc --- /dev/null +++ b/drivers/postgres/postgres_test.go @@ -0,0 +1,197 @@ +package postgres_test + +import ( + "reflect" + "strings" + "testing" + + _ "github.com/jackc/pgx/v4/stdlib" + "github.com/neilotoole/lg" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/postgres" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestSmoke(t *testing.T) { + t.Parallel() + + for _, handle := range sakila.PgAll { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, src, _, _ := testh.NewWith(t, handle) + sink, err := th.QuerySQL(src, "SELECT * FROM actor") + require.NoError(t, err) + require.Equal(t, len(sakila.TblActorCols), len(sink.RecMeta)) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } +} + +func TestDriverBehavior(t *testing.T) { + // This test was created to help understand the behavior of the driver impl. + // It can be deleted eventually. + testCases := sakila.PgAll + + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + th := testh.New(t) + src := th.Source(handle) + db := th.Open(src).DB() + + query := `SELECT + (SELECT actor_id FROM actor LIMIT 1) AS actor_id, + (SELECT first_name FROM actor LIMIT 1) AS first_name, + (SELECT last_name FROM actor LIMIT 1) AS last_name +LIMIT 1` + + rows, err := db.QueryContext(th.Context, query) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, rows.Close()) }) + + colTypes, err := rows.ColumnTypes() + require.NoError(t, err) + + for i, colType := range colTypes { + nullable, ok := colType.Nullable() + t.Logf("%d: %s %s %s nullable,ok={%v,%v}", i, colType.Name(), colType.DatabaseTypeName(), colType.ScanType().Name(), nullable, ok) + + if !nullable { + scanType := colType.ScanType() + z := reflect.Zero(scanType) + t.Logf("zero: %T %v", z, z) + } + } + }) + } +} + +func Test_VerifyDriverDoesNotReportNullability(t *testing.T) { + // This test demonstrates that the backing pgx driver + // does not report column nullability (as one might hope). + // + // When/if the driver is modified to behave as hoped (if + // at all possible) then we can simplify the + // postgres driver wrapper. + testCases := sakila.PgAll + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + db := th.Open(src).DB() + + _, actualTblName := createTypeTestTable(th, src, true) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + rows, err := db.Query("SELECT * FROM " + actualTblName) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, rows.Close()) }) + + colTypes, err := rows.ColumnTypes() + require.NoError(t, err) + + for _, colType := range colTypes { + colName := colType.Name() + + // The _n suffix indicates a nullable col + if !strings.HasSuffix(colName, "_n") { + continue + } + + // The col is indicated as nullable via its name/suffix + nullable, hasNullable := colType.Nullable() + require.False(t, hasNullable, "ColumnType.hasNullable is unfortunately expected to be false for %q", colName) + require.False(t, nullable, "ColumnType.nullable is unfortunately expected to be false for %q", colName) + } + + for rows.Next() { + require.NoError(t, rows.Err()) + } + }) + } +} + +func TestGetTableColumnNames(t *testing.T) { + testCases := sakila.PgAll + + for _, handle := range testCases { + handle := handle + t.Run(handle, func(t *testing.T) { + th := testh.New(t) + src := th.Source(handle) + + colNames, err := postgres.GetTableColumnNames(th.Context, th.Log, th.Open(src).DB(), sakila.TblActor) + require.NoError(t, err) + require.Equal(t, sakila.TblActorCols, colNames) + }) + } +} + +func TestDriver_CreateTable_NotNullDefault(t *testing.T) { + t.Parallel() + + testCases := sakila.PgAll + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, src, dbase, drvr := testh.NewWith(t, handle) + + tblName := stringz.UniqTableName(t.Name()) + colNames, colKinds := fixt.ColNamePerKind(drvr.Dialect().IntBool, false, false) + + tblDef := sqlmodel.NewTableDef(tblName, colNames, colKinds) + for _, colDef := range tblDef.Cols { + colDef.NotNull = true + colDef.HasDefault = true + } + + err := drvr.CreateTable(th.Context, dbase.DB(), tblDef) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, tblName) }) + + th.InsertDefaultRow(src, tblName) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+tblName) + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) + require.Equal(t, len(colNames), len(sink.RecMeta)) + for i := range colNames { + require.NotNil(t, sink.Recs[0][i]) + _, ok := sink.RecMeta[i].Nullable() + require.False(t, ok, "postgres driver doesn't report nullability") + } + }) + } +} + +func BenchmarkDatabase_SourceMetadata(b *testing.B) { + for _, handle := range sakila.PgAll { + handle := handle + b.Run(handle, func(b *testing.B) { + th := testh.New(b) + th.Log = lg.Discard() + dbase := th.Open(th.Source(handle)) + b.ResetTimer() + + md, err := dbase.SourceMetadata(th.Context) + require.NoError(b, err) + require.Equal(b, "sakila", md.Name) + }) + } +} diff --git a/drivers/postgres/sqlbuilder.go b/drivers/postgres/sqlbuilder.go new file mode 100644 index 00000000..eae18591 --- /dev/null +++ b/drivers/postgres/sqlbuilder.go @@ -0,0 +1,147 @@ +package postgres + +import ( + "fmt" + "strconv" + "strings" + + "github.com/neilotoole/sq/libsq/sqlbuilder" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" +) + +func newFragmentBuilder(log lg.Log) *sqlbuilder.BaseFragmentBuilder { + fb := &sqlbuilder.BaseFragmentBuilder{} + fb.Log = log + fb.Quote = `"` + fb.ColQuote = `"` + fb.Ops = sqlbuilder.BaseOps() + return fb +} + +func dbTypeNameFromKind(kind sqlz.Kind) string { + switch kind { + default: + panic(fmt.Sprintf("unsupported datatype %q", kind)) + case sqlz.KindUnknown: + return "TEXT" + case sqlz.KindText: + return "TEXT" + case sqlz.KindInt: + return "BIGINT" + case sqlz.KindFloat: + return "DOUBLE PRECISION" + case sqlz.KindDecimal: + return "DECIMAL" + case sqlz.KindBool: + return "BOOLEAN" + case sqlz.KindDatetime: + return "TIMESTAMP" + case sqlz.KindTime: + return "TIME" + case sqlz.KindDate: + return "DATE" + case sqlz.KindBytes: + return "BYTEA" + } +} + +// createTblKindDefaults is a map of Kind to the value +// to use for a column's DEFAULT clause in a CREATE TABLE statement. +var createTblKindDefaults = map[sqlz.Kind]string{ + sqlz.KindText: `DEFAULT ''`, + sqlz.KindInt: `DEFAULT 0`, + sqlz.KindFloat: `DEFAULT 0`, + sqlz.KindDecimal: `DEFAULT 0`, + sqlz.KindBool: `DEFAULT false`, + sqlz.KindDatetime: "DEFAULT 'epoch'::timestamp", + sqlz.KindDate: "DEFAULT 'epoch'::date", + sqlz.KindTime: "DEFAULT '00:00:00'::time", + sqlz.KindBytes: "DEFAULT ''::bytea", + sqlz.KindUnknown: `DEFAULT ''`, +} + +// buildCreateTableStmt builds a CREATE TABLE statement from tblDef. +// The implementation is minimal: it does not honor PK, FK, etc. +func buildCreateTableStmt(tblDef *sqlmodel.TableDef) string { + sb := strings.Builder{} + sb.WriteString(`CREATE TABLE "`) + sb.WriteString(tblDef.Name) + sb.WriteString("\" (") + + for i, colDef := range tblDef.Cols { + sb.WriteString("\n\"") + sb.WriteString(colDef.Name) + sb.WriteString("\" ") + sb.WriteString(dbTypeNameFromKind(colDef.Kind)) + + if colDef.NotNull { + sb.WriteRune(' ') + sb.WriteString(createTblKindDefaults[colDef.Kind]) + sb.WriteString(" NOT NULL") + } + + if i < len(tblDef.Cols)-1 { + sb.WriteRune(',') + } + } + sb.WriteString("\n)") + + return sb.String() +} + +// buildUpdateStmt builds an UPDATE statement string. +func buildUpdateStmt(tbl string, cols []string, where string) (string, error) { + if len(cols) == 0 { + return "", errz.Errorf("no columns provided") + } + + sb := strings.Builder{} + sb.WriteString(`UPDATE "`) + sb.WriteString(tbl) + sb.WriteString(`" SET "`) + sb.WriteString(strings.Join(cols, `" = ?, "`)) + sb.WriteString(`" = ?`) + if where != "" { + sb.WriteString(" WHERE ") + sb.WriteString(where) + } + + s := replacePlaceholders(sb.String()) + return s, nil +} + +// replacePlaceholders replaces all instances of the question mark +// rune in input with $1, $2, $3 placeholders. +func replacePlaceholders(input string) string { + if input == "" { + return input + } + + var sb strings.Builder + pCount := 1 + var i int + for { + i = strings.IndexRune(input, '?') + if i == -1 { + sb.WriteString(input) + break + } else { + // Found a ? + sb.WriteString(input[0:i]) + sb.WriteRune('$') + sb.WriteString(strconv.Itoa(pCount)) + pCount++ + if i == len(input)-1 { + break + } + input = input[i+1:] + } + } + + return sb.String() +} diff --git a/drivers/postgres/testdata/type_test.ddl b/drivers/postgres/testdata/type_test.ddl new file mode 100644 index 00000000..9e285510 --- /dev/null +++ b/drivers/postgres/testdata/type_test.ddl @@ -0,0 +1,81 @@ +create table type_test +( + col_id serial primary key not null, + col_bigint bigint default 0 not null, + col_bigint_n bigint, + col_bigserial bigserial, + col_bit bit default '0'::bit not null, + col_bit_n bit, + col_bitvarying bit varying(255) default '0'::bit not null, + col_bitvarying_n bit varying(255), + col_boolean boolean default false not null, + col_boolean_n boolean, + col_box box default '(0,0), (0,0)'::box not null, + col_box_n box, + col_bytea bytea default ''::bytea not null, + col_bytea_n bytea, + col_character character(255) default '' not null, + col_character_n character(255), + col_character_varying character varying(255) default '' not null, + col_character_varying_n character varying(255), + col_cidr cidr default '0/0'::cidr not null, + col_cidr_n cidr, + col_circle circle default '((0,0), 0)'::circle not null, + col_circle_n circle, + col_date date default '1970-01-01'::date not null, + col_date_n date, + col_double_precision double precision default 0 not null, + col_double_precision_n double precision, + col_inet inet default '0/0'::inet not null, + col_inet_n inet, + col_integer integer default 0 not null, + col_integer_n integer, + col_interval interval default '0s'::interval not null, + col_interval_n interval, + col_json json default '{}'::json not null, + col_json_n json, + col_jsonb jsonb default '{}'::jsonb not null, + col_jsonb_n jsonb, + col_line line default '[(0,0),(1,0)]'::line not null, + col_line_n line, + col_lseg lseg default '[(0,0),(0,0)]'::lseg not null, + col_lseg_n lseg, + col_macaddr macaddr default '00:00:00:00:00:00' not null, + col_macaddr_n macaddr, + col_money money default '0.0'::money not null, + col_money_n money, + col_numeric numeric default 0.0 not null, + col_numeric_n numeric, + col_path path default '[(0,0)]'::path not null, + col_path_n path, + col_pg_lsn pg_lsn default '0/0'::pg_lsn not null, + col_pg_lsn_n pg_lsn, + col_point point default '(0,0)'::point not null, + col_point_n point, + col_polygon polygon default '((0,0))'::polygon not null, + col_polygon_n polygon, + col_real real default 0 not null, + col_real_n real, + col_smallint smallint default 0 not null, + col_smallint_n smallint, + col_smallserial smallserial, -- no col_smallserial_n, because serial cannot be NULL + col_serial serial, -- no col_serial_n, because serial cannot be NULL + col_text text default '' not null, + col_text_n text, + col_time time default '00:00:00'::time without time zone not null, + col_time_n time, + col_timetz time with time zone default '00:00:00+00'::time with time zone not null, + col_timetz_n time with time zone, + col_timestamp timestamp default '1970-01-01 00:00:00'::timestamp without time zone not null, + col_timestamp_n timestamp, + col_timestamptz timestamp with time zone default '1970-01-01 00:00:00+00'::timestamp with time zone not null, + col_timestamptz_n timestamp with time zone, + col_tsquery tsquery default '' not null, + col_tsquery_n tsquery, + col_tsvector tsvector default '' not null, + col_tsvector_n tsvector, + col_uuid uuid default '00000000-0000-0000-0000-000000000000'::uuid not null, + col_uuid_n uuid, + col_xml xml default ''::xml not null, + col_xml_n xml +); diff --git a/drivers/sqlite3/database.go b/drivers/sqlite3/database.go new file mode 100644 index 00000000..13b90a3c --- /dev/null +++ b/drivers/sqlite3/database.go @@ -0,0 +1,88 @@ +package sqlite3 + +import ( + "context" + "database/sql" + "os" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// database implements driver.Database. +type database struct { + log lg.Log + db *sql.DB + src *source.Source + drvr *Driver +} + +// DB implements driver.Database. +func (d *database) DB() *sql.DB { + return d.db +} + +// SQLDriver implements driver.Database. +func (d *database) SQLDriver() driver.SQLDriver { + return d.drvr +} + +// Source implements driver.Database. +func (d *database) Source() *source.Source { + return d.src +} + +// TableMetadata implements driver.Database. +func (d *database) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + return tableMetadata(ctx, d.log, d.DB(), tblName) +} + +// SourceMetadata implements driver.Database. +func (d *database) SourceMetadata(ctx context.Context) (*source.Metadata, error) { + // https://stackoverflow.com/questions/9646353/how-to-find-sqlite-database-file-version + + meta := &source.Metadata{Handle: d.src.Handle, SourceType: Type, DBDriverType: dbDrvr} + + dsn, err := PathFromSourceLocation(d.src) + if err != nil { + return nil, err + } + + err = d.DB().QueryRowContext(ctx, "SELECT sqlite_version()").Scan(&meta.DBVersion) + if err != nil { + return nil, errz.Err(err) + } + meta.DBProduct = "SQLite3 v" + meta.DBVersion + + var schemaName string // typically "main" + err = d.DB().QueryRowContext(ctx, "SELECT name FROM pragma_database_list ORDER BY seq LIMIT 1").Scan(&schemaName) + if err != nil { + return nil, errz.Err(err) + } + + fi, err := os.Stat(dsn) + if err != nil { + return nil, errz.Err(err) + } + + meta.Size = fi.Size() + meta.Name = fi.Name() + meta.FQName = fi.Name() + "/" + schemaName + meta.Location = d.src.Location + + meta.Tables, err = getAllTblMeta(ctx, d.log, d.db) + if err != nil { + return nil, err + } + return meta, nil +} + +// Close implements driver.Database. +func (d *database) Close() error { + d.log.Debugf("Close database: %s", d.src) + + return errz.Err(d.db.Close()) +} diff --git a/drivers/sqlite3/db_type_test.go b/drivers/sqlite3/db_type_test.go new file mode 100644 index 00000000..356baee5 --- /dev/null +++ b/drivers/sqlite3/db_type_test.go @@ -0,0 +1,201 @@ +package sqlite3_test + +import ( + "fmt" + "io/ioutil" + "strings" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/sakila" +) + +// typeTestTableDDLPath is the location of the SQL CREATE statement +// for the "type_test" table that is used to verify handling of the +// the driver's various data types. +const typeTestTableDDLPath = "testdata/type_test.ddl" + +var typeTestColNames = []string{ + "col_id", + "col_int", + "col_int_n", + "col_double", + "col_double_n", + "col_boolean", + "col_boolean_n", + "col_text", + "col_text_n", + "col_blob", + "col_blob_n", + "col_datetime", + "col_datetime_n", + "col_date", + "col_date_n", + "col_time", + "col_time_n", + "col_decimal", + "col_decimal_n", +} + +// typeTestVals is the set of vals inserted to the type_test table (and +// is expected when querying that table). +// +// - Row 0 contains zero values (0, empty string, etc). +// - Row 1 contains non-zero values. +// - Row 2 contains non-zero values and nil values for cols that permit +// nil values (those cols ending with _n such as col_int_n). +var typeTestVals = [][]interface{}{ + { + int64(1), // col_id + fixt.IntZ, // col_int + fixt.IntZ, // col_int_n + fixt.FloatZ, // col_double + fixt.FloatZ, // col_double_n + fixt.BoolZ, // col_boolean + fixt.BoolZ, // col_boolean_n + fixt.TextZ, // col_text + fixt.TextZ, // col_text_n + fixt.BytesZ, // col_blob + fixt.BytesZ, // col_blob_n + fixt.DatetimeZ, // col_datetime + fixt.DatetimeZ, // col_datetime_n + fixt.DateZ, // col_date + fixt.DateZ, // col_date_n + fixt.TimeOfDayZ, // col_time + fixt.TimeOfDayZ, // col_time_n + fixt.DecimalZ, // col_decimal + fixt.DecimalZ, // col_decimal_n + }, + { + int64(2), // col_id + fixt.Int, // col_int + fixt.Int, // col_int_n + fixt.Float, // col_double + fixt.Float, // col_double_n + fixt.Bool, // col_boolean + fixt.Bool, // col_boolean_n + fixt.Text, // col_text + fixt.Text, // col_text_n + fixt.Bytes, // col_blob + fixt.Bytes, // col_blob_n + fixt.Datetime, // col_datetime + fixt.Datetime, // col_datetime_n + fixt.Date, // col_date + fixt.Date, // col_date_n + fixt.TimeOfDay, // col_time + fixt.TimeOfDay, // col_time_n + fixt.Decimal, // col_decimal + fixt.Decimal, // col_decimal_n + }, + { + int64(3), // col_id + fixt.Int, // col_int + nil, // col_int_n + fixt.Float, // col_double + nil, // col_double_n + fixt.Bool, // col_boolean + nil, // col_boolean_n + fixt.Text, // col_text + nil, // col_text_n + fixt.Bytes, // col_blob + nil, // col_blob_n + fixt.Datetime, // col_datetime + nil, // col_datetime_n + fixt.Date, // col_date + nil, // col_date_n + fixt.TimeOfDay, // col_time + nil, // col_time_n + fixt.Decimal, // col_decimal + nil, // col_decimal_n + }, +} + +// createTypeTestTbl creates the type_test table, returning the actual table +// named used. If withData is true, the test data is also loaded. +// It is the caller's responsibility to drop the created table. +func createTypeTestTable(th *testh.Helper, src *source.Source, withData bool) (name string) { + const canonicalTblName = "type_test" + t := th.T + db := th.Open(src).DB() + + tblDDL, err := ioutil.ReadFile(typeTestTableDDLPath) + require.NoError(t, err) + + // replace the canonical table name + actualTblName := stringz.UniqTableName(canonicalTblName) + createStmt := strings.Replace(string(tblDDL), canonicalTblName, actualTblName, 1) + + _, err = db.ExecContext(th.Context, createStmt) + require.NoError(t, err) + + // sanity check: verify that we have the expected cols + rows, err := db.QueryContext(th.Context, "SELECT * FROM "+actualTblName+" LIMIT 1") + require.NoError(t, err) + gotColNames, err := rows.Columns() + require.NoError(t, err) + require.Equal(t, typeTestColNames, gotColNames) + + t.Logf("created type_test table %q", actualTblName) + + if !withData { + return actualTblName + } + + placeholders := th.SQLDriverFor(src).Dialect().Placeholders(len(typeTestColNames)) + const insertTpl = "INSERT INTO %s (%s) VALUES (%s)" + insertStmt := fmt.Sprintf(insertTpl, actualTblName, strings.Join(typeTestColNames, ", "), placeholders) + t.Log(insertStmt) + + for _, insertVals := range typeTestVals { + res, err := db.Exec(insertStmt, insertVals...) + require.NoError(t, err) + affected, err := res.RowsAffected() + require.NoError(t, err) + require.Equal(t, int64(1), affected) + } + + return actualTblName +} + +// TestDatabaseTypes checks that our driver is dealing with database +// types correctly. The test constructs a "type_test" table with cols +// for various database types, inserts known data, and checks that +// the returned data matches the inserted data, including verifying +// that NULL is handled correctly. +func TestDatabaseTypes(t *testing.T) { + th := testh.New(t) + src := th.Source(sakila.SL3) + actualTblName := createTypeTestTable(th, src, true) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + err := libsq.QuerySQL(th.Context, th.Log, th.Open(src), recw, fmt.Sprintf("SELECT * FROM %s", actualTblName)) + require.NoError(t, err) + _, err = recw.Wait() + require.NoError(t, err) + + require.Equal(t, len(typeTestVals), len(sink.Recs)) + for i, rec := range sink.Recs { + for j := range rec { + wantVal := typeTestVals[i][j] + gotVal := sink.Recs[i][j] + + if gotVal == nil { + require.Equal(t, wantVal, gotVal) + continue + } + + require.Equal(t, wantVal, testh.Val(gotVal), + "%s[%d][%d] (%s) expected %T(%v) but got %T(%v)", + actualTblName, i, j, typeTestColNames[j], wantVal, wantVal, gotVal, gotVal) + } + } +} diff --git a/drivers/sqlite3/internal_test.go b/drivers/sqlite3/internal_test.go new file mode 100644 index 00000000..fdf4364f --- /dev/null +++ b/drivers/sqlite3/internal_test.go @@ -0,0 +1,3 @@ +package sqlite3 + +var KindFromDBTypeName = kindFromDBTypeName diff --git a/drivers/sqlite3/metadata.go b/drivers/sqlite3/metadata.go new file mode 100644 index 00000000..1bf90ab8 --- /dev/null +++ b/drivers/sqlite3/metadata.go @@ -0,0 +1,366 @@ +package sqlite3 + +import "C" +import ( + "context" + "database/sql" + "fmt" + "reflect" + "strings" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// tableMetadata returns metadata for tblName in db. +func tableMetadata(ctx context.Context, log lg.Log, db sqlz.DB, tblName string) (*source.TableMetadata, error) { + tblMeta := &source.TableMetadata{Name: tblName} + tblMeta.Size = -1 // No easy way of getting size of table, so set to -1 + + // But we can get the row count + query := fmt.Sprintf("SELECT COUNT(*) FROM '%s'", tblMeta.Name) + row := db.QueryRowContext(ctx, query) + err := row.Scan(&tblMeta.RowCount) + if err != nil { + return nil, errz.Err(err) + } + + // cid name type notnull dflt_value pk + // 0 actor_id INT 1 1 + // 1 film_id INT 1 2 + // 2 last_update TIMESTAMP 1 0 + query = fmt.Sprintf("PRAGMA TABLE_INFO('%s')", tblMeta.Name) + rows, err := db.QueryContext(ctx, query) + if err != nil { + return nil, errz.Err(err) + } + defer log.WarnIfCloseError(rows) + + for rows.Next() { + col := &source.ColMetadata{} + var notnull int64 + defaultValue := &sql.NullString{} + pkValue := &sql.NullInt64{} + err = rows.Scan(&col.Position, &col.Name, &col.BaseType, ¬null, defaultValue, pkValue) + if err != nil { + return nil, errz.Err(err) + } + + col.PrimaryKey = pkValue.Int64 > 0 // pkVal can be 0,1,2 etc + col.ColumnType = col.BaseType + col.Nullable = notnull == 0 + col.DefaultValue = defaultValue.String + col.Kind = kindFromDBTypeName(log, col.Name, col.BaseType, nil) + + tblMeta.Columns = append(tblMeta.Columns, col) + } + + err = rows.Err() + if err != nil { + return nil, errz.Err(err) + } + + return tblMeta, nil +} + +// recordMetaFromColumnTypes returns recordMetaFromColumnTypes for rows. +func recordMetaFromColumnTypes(log lg.Log, colTypes []*sql.ColumnType) (sqlz.RecordMeta, error) { + recMeta := make([]*sqlz.FieldMeta, len(colTypes)) + for i, colType := range colTypes { + // sqlite is very forgiving at times, e.g. execute + // a query with a non-existent column name. + // This can manifest as an empty db type name. This also + // happens for functions such as COUNT(*). + dbTypeName := colType.DatabaseTypeName() + + kind := kindFromDBTypeName(log, colType.Name(), dbTypeName, colType.ScanType()) + colTypeData := sqlz.NewColumnTypeData(colType, kind) + + // It's necessary to explicitly set the scan type because + // the backing driver doesn't set it for whatever reason. + setScanType(log, colTypeData) + recMeta[i] = sqlz.NewFieldMeta(colTypeData) + } + + return recMeta, nil +} + +// setScanType ensures colTypeData.ScanType is set appropriately. +// If the scan type is nil, a scan type will be set based upon +// the col kind. The scan type can be nil in the case where rows.ColumnTypes +// was invoked before rows.Next (this is necessary for an empty table). +// +// If the scan type is NOT a sql.NullTYPE, the corresponding sql.NullTYPE will +// be set. +func setScanType(log lg.Log, colType *sqlz.ColumnTypeData) { + scanType, kind := colType.ScanType, colType.Kind + + if scanType != nil { + // If the scan type is already set, ensure it's sql.NullTYPE. + switch scanType { + default: + // It's already a sql.NullTYPE. + case sqlz.RTypeInt64: + colType.ScanType = sqlz.RTypeNullInt64 + case sqlz.RTypeFloat64: + colType.ScanType = sqlz.RTypeNullFloat64 + case sqlz.RTypeString: + colType.ScanType = sqlz.RTypeNullString + case sqlz.RTypeBool: + colType.ScanType = sqlz.RTypeNullBool + case sqlz.RTypeTime: + colType.ScanType = sqlz.RTypeNullTime + case sqlz.RTypeBytes: + // no need to change if it's []byte + } + } + + switch kind { + default: + // Shouldn't happen? + log.Warnf("Unknown kind for col '%s' with database type '%s'", colType.Name, colType.DatabaseTypeName) + scanType = sqlz.RTypeBytes + + case sqlz.KindText, sqlz.KindDecimal: + scanType = sqlz.RTypeNullString + + case sqlz.KindInt: + scanType = sqlz.RTypeNullInt64 + + case sqlz.KindBool: + scanType = sqlz.RTypeNullBool + + case sqlz.KindFloat: + scanType = sqlz.RTypeNullFloat64 + + case sqlz.KindBytes: + scanType = sqlz.RTypeBytes + + case sqlz.KindDatetime: + scanType = sqlz.RTypeNullTime + + case sqlz.KindDate: + scanType = sqlz.RTypeNullTime + + case sqlz.KindTime: + scanType = sqlz.RTypeNullString + } + + colType.ScanType = scanType +} + +// kindFromDBTypeName determines the sqlz.Kind from the database +// type name. For example, "VARCHAR(64)" -> sqlz.KindText. +// See https://www.sqlite.org/datatype3.html#determination_of_column_affinity +// The scanType arg may be nil (it may not be available to the caller): when +// non-nil it may be used to determine ambiguous cases. For example, +// dbTypeName is empty string for "COUNT(*)" +func kindFromDBTypeName(log lg.Log, colName, dbTypeName string, scanType reflect.Type) sqlz.Kind { + if dbTypeName == "" { + // dbTypeName can be empty for functions such as COUNT() etc. + // But we can infer the type from scanType (if non-nil). + if scanType == nil { + // According to the SQLite3 docs: + // 3. If the declared type for a column contains the + // string "BLOB" or **if no type is specified** then the + // column has affinity BLOB. + return sqlz.KindBytes + } + + switch scanType { + default: + // Default to KindBytes as mentioned above. + return sqlz.KindBytes + case sqlz.RTypeInt64: + return sqlz.KindInt + case sqlz.RTypeFloat64: + return sqlz.KindFloat + case sqlz.RTypeString: + return sqlz.KindText + } + } + + var kind sqlz.Kind + dbTypeName = strings.ToUpper(dbTypeName) + + // See the examples of type names in the sqlite docs linked above. + // Given variations such as VARCHAR(255), we first trim the parens + // parts. Thus VARCHAR(255) becomes VARCHAR. + i := strings.IndexRune(dbTypeName, '(') + if i > 0 { + dbTypeName = dbTypeName[0:i] + } + + // Try direct matches against common type names + switch dbTypeName { + case "INT", "INTEGER", "TINYINT", "SMALLINT", "MEDIUMINT", "BIGINT", "UNSIGNED BIG INT", "INT2", "INT8": + kind = sqlz.KindInt + case "REAL", "DOUBLE", "DOUBLE PRECISION", "FLOAT": + kind = sqlz.KindFloat + case "DECIMAL": + kind = sqlz.KindDecimal + case "TEXT", "CHARACTER", "VARCHAR", "VARYING CHARACTER", "NCHAR", "NATIVE CHARACTER", "NVARCHAR", "CLOB": + kind = sqlz.KindText + case "BLOB": + kind = sqlz.KindBytes + case "DATETIME", "TIMESTAMP": + kind = sqlz.KindDatetime + case "DATE": + kind = sqlz.KindDate + case "TIME": + kind = sqlz.KindTime + case "BOOLEAN": + kind = sqlz.KindBool + case "NUMERIC": + // NUMERIC is problematic. It could be an int, float, big decimal, etc. + // KindDecimal is safest as it can accept any numeric value. + kind = sqlz.KindDecimal + } + + // If we have a match, return now. + if kind != sqlz.KindUnknown { + return kind + } + + // We didn't find an exact match, we'll use the Affinity rules + // per the SQLite link provided earlier, noting that we default + // to KindText (the docs specify default affinity NUMERIC, which + // sq handles as KindText). + switch { + default: + log.Warnf("Unknown SQLite database type name %q for %q: using %q", dbTypeName, colName, sqlz.KindUnknown) + kind = sqlz.KindUnknown + case strings.Contains(dbTypeName, "INT"): + kind = sqlz.KindInt + case strings.Contains(dbTypeName, "TEXT"), + strings.Contains(dbTypeName, "CHAR"), + strings.Contains(dbTypeName, "CLOB"): + kind = sqlz.KindText + case strings.Contains(dbTypeName, "BLOB"): + kind = sqlz.KindBytes + case strings.Contains(dbTypeName, "REAL"), + strings.Contains(dbTypeName, "FLOA"), + strings.Contains(dbTypeName, "DOUB"): + kind = sqlz.KindFloat + } + + return kind +} + +// DBTypeForKind returns the database type for kind. +// For example: KindInt --> INTEGER +func DBTypeForKind(kind sqlz.Kind) string { + switch kind { + default: + panic(fmt.Sprintf("unknown kind %q", kind)) + case sqlz.KindText, sqlz.KindNull, sqlz.KindUnknown: + return "TEXT" + case sqlz.KindInt: + return "INTEGER" + case sqlz.KindFloat: + return "REAL" + case sqlz.KindBytes: + return "BLOB" + case sqlz.KindDecimal: + return "NUMERIC" + case sqlz.KindBool: + return "BOOLEAN" + case sqlz.KindDatetime: + return "DATETIME" + case sqlz.KindDate: + return "DATE" + case sqlz.KindTime: + return "TIME" + } +} + +// getAllTblMeta gets metadata for each of the +// non-system tables in db. +func getAllTblMeta(ctx context.Context, log lg.Log, db sqlz.DB) ([]*source.TableMetadata, error) { + // This query returns a row for each column of each table, + // order by table name then col id (ordinal). + // Results will look like: + // + // table_name type cid name type "notnull" dflt_value pk + // actor table 0 actor_id numeric 1 1 + // actor table 1 first_name VARCHAR(45) 1 0 + // actor table 2 last_name VARCHAR(45) 1 0 + // actor table 3 last_update TIMESTAMP 1 0 + // address table 0 address_id int 1 1 + // address table 1 address VARCHAR(50) 1 0 + // address table 2 address2 VARCHAR(50) 0 NULL 0 + // address table 3 district VARCHAR(20) 1 0 + // + // Note: dflt_value of col "address2" is the string "NULL", rather + // that NULL value itself. + const query = ` +SELECT m.name as table_name, m.type, p.cid, p.name, p.type, p.'notnull' as 'notnull', p.dflt_value, p.pk +FROM sqlite_master AS m JOIN pragma_table_info(m.name) AS p +ORDER BY m.name, p.cid +` + + var tblMetas []*source.TableMetadata + var curTblName string + var curTblType string // either "table" or "view" + var curTblMeta *source.TableMetadata + + rows, err := db.QueryContext(ctx, query) + if err != nil { + return nil, errz.Err(err) + } + defer log.WarnIfCloseError(rows) + + for rows.Next() { + col := &source.ColMetadata{} + var notnull int64 + defaultValue := &sql.NullString{} + pkValue := &sql.NullInt64{} + err = rows.Scan(&curTblName, &curTblType, &col.Position, &col.Name, &col.BaseType, ¬null, defaultValue, pkValue) + if err != nil { + return nil, errz.Err(err) + } + + if strings.HasPrefix(curTblName, "sqlite_") { + // Skip system table "sqlite_sequence" etc. + continue + } + + if curTblType != "table" { + // REVISIT: Skipping "view" for now; there's prob a good case for + // adding support for view metadata though. + continue + } + if curTblMeta == nil || curTblMeta.Name != curTblName { + curTblMeta = &source.TableMetadata{ + Name: curTblName, + Size: -1, // No easy way of getting the storage size of a table + } + + countRow := db.QueryRowContext(ctx, fmt.Sprintf("SELECT COUNT(*) FROM %q", curTblName)) + err = countRow.Scan(&curTblMeta.RowCount) + if err != nil { + return nil, errz.Err(err) + } + + tblMetas = append(tblMetas, curTblMeta) + } + + col.PrimaryKey = pkValue.Int64 > 0 // pkVal can be 0,1,2 etc + col.ColumnType = col.BaseType + col.Nullable = notnull == 0 + col.DefaultValue = defaultValue.String + col.Kind = kindFromDBTypeName(log, col.Name, col.BaseType, nil) + + curTblMeta.Columns = append(curTblMeta.Columns, col) + } + + err = rows.Err() + if err != nil { + return nil, errz.Err(err) + } + + return tblMetas, nil +} diff --git a/drivers/sqlite3/metadata_test.go b/drivers/sqlite3/metadata_test.go new file mode 100644 index 00000000..5530f698 --- /dev/null +++ b/drivers/sqlite3/metadata_test.go @@ -0,0 +1,213 @@ +package sqlite3_test + +import ( + "fmt" + "reflect" + "strings" + "testing" + + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestKindFromDBTypeName(t *testing.T) { + t.Parallel() + + testCases := map[string]sqlz.Kind{ + "": sqlz.KindBytes, + "NUMERIC": sqlz.KindDecimal, + "INT": sqlz.KindInt, + "INTEGER": sqlz.KindInt, + "TINYINT": sqlz.KindInt, + "SMALLINT": sqlz.KindInt, + "MEDIUMINT": sqlz.KindInt, + "BIGINT": sqlz.KindInt, + "UNSIGNED BIG INT": sqlz.KindInt, + "INT2": sqlz.KindInt, + "INT8": sqlz.KindInt, + "CHARACTER(20)": sqlz.KindText, + "VARCHAR(255)": sqlz.KindText, + "VARYING CHARACTER(255)": sqlz.KindText, + "NCHAR(55)": sqlz.KindText, + "NATIVE CHARACTER(70)": sqlz.KindText, + "NVARCHAR(100)": sqlz.KindText, + "TEXT": sqlz.KindText, + "CLOB": sqlz.KindText, + "REAL": sqlz.KindFloat, + "DOUBLE": sqlz.KindFloat, + "DOUBLE PRECISION": sqlz.KindFloat, + "FLOAT": sqlz.KindFloat, + "DECIMAL(10,5)": sqlz.KindDecimal, + "BOOLEAN": sqlz.KindBool, + "DATETIME": sqlz.KindDatetime, + "TIMESTAMP": sqlz.KindDatetime, + "DATE": sqlz.KindDate, + "TIME": sqlz.KindTime, + } + + log := testlg.New(t) + for dbTypeName, wantKind := range testCases { + gotKind := sqlite3.KindFromDBTypeName(log, "col", dbTypeName, nil) + require.Equal(t, wantKind, gotKind, "%s should produce %s but got %s", dbTypeName) + } +} + +func TestRecordMetadata(t *testing.T) { + t.Parallel() + + testCases := []struct { + tbl string + rowCount int64 + colNames []string + colKinds []sqlz.Kind + scanTypes []reflect.Type + colsMeta []*source.ColMetadata + }{ + { + tbl: sakila.TblActor, + rowCount: sakila.TblActorCount, + colNames: sakila.TblActorCols, + colKinds: []sqlz.Kind{sqlz.KindInt, sqlz.KindText, sqlz.KindText, sqlz.KindDatetime}, + scanTypes: []reflect.Type{sqlz.RTypeNullInt64, sqlz.RTypeNullString, sqlz.RTypeNullString, sqlz.RTypeNullTime}, + colsMeta: []*source.ColMetadata{ + {Name: "actor_id", Position: 0, PrimaryKey: true, BaseType: "INTEGER", ColumnType: "INTEGER", Kind: sqlz.KindInt, Nullable: false}, + {Name: "first_name", Position: 1, BaseType: "VARCHAR(45)", ColumnType: "VARCHAR(45)", Kind: sqlz.KindText, Nullable: false}, + {Name: "last_name", Position: 2, BaseType: "VARCHAR(45)", ColumnType: "VARCHAR(45)", Kind: sqlz.KindText, Nullable: false}, + {Name: "last_update", Position: 3, BaseType: "TIMESTAMP", ColumnType: "TIMESTAMP", Kind: sqlz.KindDatetime, Nullable: false, DefaultValue: "CURRENT_TIMESTAMP"}, + }, + }, + { + tbl: sakila.TblFilmActor, + rowCount: sakila.TblFilmActorCount, + colNames: sakila.TblFilmActorCols, + colKinds: []sqlz.Kind{sqlz.KindInt, sqlz.KindInt, sqlz.KindDatetime}, + scanTypes: []reflect.Type{sqlz.RTypeNullInt64, sqlz.RTypeNullInt64, sqlz.RTypeNullTime}, + colsMeta: []*source.ColMetadata{ + {Name: "actor_id", Position: 0, PrimaryKey: true, BaseType: "INT", ColumnType: "INT", Kind: sqlz.KindInt, Nullable: false}, + {Name: "film_id", Position: 1, PrimaryKey: true, BaseType: "INT", ColumnType: "INT", Kind: sqlz.KindInt, Nullable: false}, + {Name: "last_update", Position: 2, BaseType: "TIMESTAMP", ColumnType: "TIMESTAMP", Kind: sqlz.KindDatetime, Nullable: false}, + }, + }, + { + tbl: sakila.TblPayment, + rowCount: sakila.TblPaymentCount, + colNames: sakila.TblPaymentCols, + colKinds: []sqlz.Kind{sqlz.KindInt, sqlz.KindInt, sqlz.KindInt, sqlz.KindInt, sqlz.KindDecimal, sqlz.KindDatetime, sqlz.KindDatetime}, + scanTypes: []reflect.Type{sqlz.RTypeNullInt64, sqlz.RTypeNullInt64, sqlz.RTypeNullInt64, sqlz.RTypeNullInt64, sqlz.RTypeNullString, sqlz.RTypeNullTime, sqlz.RTypeNullTime}, + colsMeta: []*source.ColMetadata{ + {Name: "payment_id", Position: 0, PrimaryKey: true, BaseType: "INT", ColumnType: "INT", Kind: sqlz.KindInt, Nullable: false}, + {Name: "customer_id", Position: 1, BaseType: "INT", ColumnType: "INT", Kind: sqlz.KindInt, Nullable: false}, + {Name: "staff_id", Position: 2, BaseType: "SMALLINT", ColumnType: "SMALLINT", Kind: sqlz.KindInt, Nullable: false}, + {Name: "rental_id", Position: 3, BaseType: "INT", ColumnType: "INT", Kind: sqlz.KindInt, Nullable: true, DefaultValue: "NULL"}, + {Name: "amount", Position: 4, BaseType: "DECIMAL(5,2)", ColumnType: "DECIMAL(5,2)", Kind: sqlz.KindDecimal, Nullable: false}, + {Name: "payment_date", Position: 5, BaseType: "TIMESTAMP", ColumnType: "TIMESTAMP", Kind: sqlz.KindDatetime, Nullable: false}, + {Name: "last_update", Position: 6, BaseType: "TIMESTAMP", ColumnType: "TIMESTAMP", Kind: sqlz.KindDatetime, Nullable: false}, + }, + }, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.tbl, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(sakila.SL3) + dbase := th.Open(src) + + query := fmt.Sprintf("SELECT %s FROM %s", strings.Join(tc.colNames, ", "), tc.tbl) + rows, err := dbase.DB().QueryContext(th.Context, query) // nolint:rowserrcheck + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, rows.Close()) }) + + hasNext := rows.Next() // invoke rows.Next before invoking RecordMeta + colTypes, err := rows.ColumnTypes() + require.NoError(t, err) + + recMeta, _, err := th.SQLDriverFor(src).RecordMeta(colTypes) + require.NoError(t, err) + require.Equal(t, len(tc.colNames), len(recMeta)) + + scanDests := recMeta.NewScanRow() + for hasNext { + // Scan rows to verify scan dests are ok + require.NoError(t, rows.Scan(scanDests...)) + hasNext = rows.Next() + } + + require.NoError(t, rows.Err()) + + gotScanTypes := recMeta.ScanTypes() + require.Equal(t, len(tc.scanTypes), len(gotScanTypes)) + for i := range tc.scanTypes { + require.Equal(t, tc.scanTypes[i], gotScanTypes[i]) + } + + // Now check our table metadata + gotTblMeta, err := dbase.TableMetadata(th.Context, tc.tbl) + require.NoError(t, err) + require.Equal(t, tc.tbl, gotTblMeta.Name) + require.Equal(t, tc.rowCount, gotTblMeta.RowCount) + require.Equal(t, len(tc.colsMeta), len(gotTblMeta.Columns)) + + for i := range tc.colsMeta { + require.Equal(t, *tc.colsMeta[i], *gotTblMeta.Columns[i]) + } + }) + } +} + +func TestPayments(t *testing.T) { + t.Parallel() + th := testh.New(t) + src := th.Source(sakila.SL3) + + sink, err := th.QuerySQL(src, "SELECT * FROM payment") + require.NoError(t, err) + require.Equal(t, sakila.TblPaymentCount, len(sink.Recs)) +} + +// TestAggregateFuncsQuery performs a smoke test of executing +// a query with aggregate funcs to verify that +// column type info is being correctly determined. +func TestAggregateFuncsQuery(t *testing.T) { + t.Parallel() + + const query = `SELECT COUNT(*), SUM(rental_rate), TOTAL(rental_rate), + AVG(rental_rate), MAX(rental_rate), MIN(rental_rate), + MAX(title), MAX(last_update), GROUP_CONCAT(rating,',') + FROM film` + + th := testh.New(t) + src := th.Source(sakila.SL3) + sink, err := th.QuerySQL(src, query) + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) +} + +// TestScalarFuncsQuery performs a smoke test of executing +// a query with some scalar funcs to verify that +// column type info is being correctly determined. +func TestScalarFuncsQuery(t *testing.T) { + t.Parallel() + + const query = `SELECT NULL, ABS(film_id), LOWER(rating), LAST_INSERT_ROWID(), + MAX(rental_rate, replacement_cost) + FROM film` + wantKinds := []sqlz.Kind{sqlz.KindBytes, sqlz.KindInt, sqlz.KindText, sqlz.KindInt, sqlz.KindFloat} + + th := testh.New(t) + src := th.Source(sakila.SL3) + sink, err := th.QuerySQL(src, query) + require.NoError(t, err) + require.Equal(t, sakila.TblFilmCount, len(sink.Recs)) + require.Equal(t, wantKinds, sink.RecMeta.Kinds()) +} diff --git a/drivers/sqlite3/sqlbuilder.go b/drivers/sqlite3/sqlbuilder.go new file mode 100644 index 00000000..2d7b789d --- /dev/null +++ b/drivers/sqlite3/sqlbuilder.go @@ -0,0 +1,146 @@ +package sqlite3 + +import ( + "bytes" + + "github.com/neilotoole/sq/libsq/sqlbuilder" + + "strings" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" +) + +func newFragmentBuilder(log lg.Log) *sqlbuilder.BaseFragmentBuilder { + return &sqlbuilder.BaseFragmentBuilder{Log: log, Quote: `"`, ColQuote: `"`, Ops: sqlbuilder.BaseOps()} +} + +// createTblKindDefaults is a mapping of Kind to the value +// to use for a column's DEFAULT clause in a CREATE TABLE statement. +var createTblKindDefaults = map[sqlz.Kind]string{ + sqlz.KindText: `DEFAULT ''`, + sqlz.KindInt: `DEFAULT 0`, + sqlz.KindFloat: `DEFAULT 0`, + sqlz.KindDecimal: `DEFAULT 0`, + sqlz.KindBool: `DEFAULT 0`, + sqlz.KindDatetime: "DEFAULT '1970-01-01T00:00:00'", + sqlz.KindDate: "DEFAULT '1970-01-01'", + sqlz.KindTime: "DEFAULT '00:00'", + sqlz.KindBytes: "DEFAULT ''", + sqlz.KindUnknown: `DEFAULT ''`, +} + +func buildCreateTableStmt(tblDef *sqlmodel.TableDef) (string, error) { + var buf *bytes.Buffer + + cols := make([]string, len(tblDef.Cols)) + for i, col := range tblDef.Cols { + buf = &bytes.Buffer{} + buf.WriteRune('"') + buf.WriteString(col.Name) + buf.WriteString(`" `) + buf.WriteString(DBTypeForKind(col.Kind)) + + if col.Name == tblDef.PKColName { + buf.WriteString(" PRIMARY KEY") + if tblDef.AutoIncrement { + buf.WriteString(" AUTOINCREMENT") + } + } + + if col.HasDefault { + buf.WriteRune(' ') + buf.WriteString(createTblKindDefaults[col.Kind]) + } + + if col.NotNull { + buf.WriteString(" NOT NULL") + } + + if col.Unique { + buf.WriteString(" UNIQUE") + } + + cols[i] = buf.String() + } + + fk := "" + buf = &bytes.Buffer{} + for _, col := range tblDef.Cols { + if col.ForeignKey == nil { + continue + } + + if buf.Len() > 0 { + buf.WriteString(",\n") + } + + buf.WriteString(`CONSTRAINT "`) + buf.WriteString(tblDef.Name) + buf.WriteRune('_') + buf.WriteString(col.Name) + buf.WriteRune('_') + buf.WriteString(col.ForeignKey.RefTable) + buf.WriteRune('_') + buf.WriteString(col.ForeignKey.RefCol) + buf.WriteString(`_fk" FOREIGN KEY ("`) + buf.WriteString(col.Name) + buf.WriteString(`") REFERENCES "`) + buf.WriteString(col.ForeignKey.RefTable) + buf.WriteString(`" ("`) + buf.WriteString(col.ForeignKey.RefCol) + buf.WriteString(`") ON DELETE `) + if col.ForeignKey.OnDelete == "" { + buf.WriteString("CASCADE") + } else { + buf.WriteString(col.ForeignKey.OnDelete) + } + buf.WriteString(" ON UPDATE ") + if col.ForeignKey.OnUpdate == "" { + buf.WriteString("CASCADE") + } else { + buf.WriteString(col.ForeignKey.OnUpdate) + } + } + fk = buf.String() + + buf = &bytes.Buffer{} + buf.WriteString(`CREATE TABLE "`) + buf.WriteString(tblDef.Name) + buf.WriteString("\" (\n") + + for x := 0; x < len(cols)-1; x++ { + buf.WriteString(cols[x]) + buf.WriteString(",\n") + } + buf.WriteString(cols[len(cols)-1]) + + if fk != "" { + buf.WriteString(",\n") + buf.WriteString(fk) + } + buf.WriteString("\n)") + return buf.String(), nil +} + +func buildUpdateStmt(tbl string, cols []string, where string) (string, error) { + if len(cols) == 0 { + return "", errz.Errorf("no columns provided") + } + + buf := strings.Builder{} + buf.WriteString(`UPDATE "`) + buf.WriteString(tbl) + buf.WriteString(`" SET "`) + buf.WriteString(strings.Join(cols, `" = ?, "`)) + buf.WriteString(`" = ?`) + if where != "" { + buf.WriteString(" WHERE ") + buf.WriteString(where) + } + + return buf.String(), nil +} diff --git a/drivers/sqlite3/sqlite3.go b/drivers/sqlite3/sqlite3.go new file mode 100644 index 00000000..1da515a0 --- /dev/null +++ b/drivers/sqlite3/sqlite3.go @@ -0,0 +1,405 @@ +// Package sqlite3 implements the sq driver for SQLite. +// The backing SQL driver is mattn/sqlite3. +package sqlite3 + +import "C" +import ( + "context" + "database/sql" + "fmt" + "path/filepath" + "strings" + + _ "github.com/mattn/go-sqlite3" + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlbuilder" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +const ( + // Type is the sqlite3 source driver type. + Type source.Type = "sqlite3" + + // dbDrvr is the backing sqlite3 SQL driver impl name. + dbDrvr = "sqlite3" +) + +// Provider is the SQLite3 implementation of driver.Provider. +type Provider struct { + Log lg.Log +} + +// DriverFor implements driver.Provider. +func (d *Provider) DriverFor(typ source.Type) (driver.Driver, error) { + if typ != Type { + return nil, errz.Errorf("unsupported driver type %q", typ) + } + + return &Driver{log: d.Log}, nil +} + +// Driver is the SQLite3 implementation of driver.Driver. +type Driver struct { + log lg.Log +} + +// DriverMetadata implements driver.Driver. +func (d *Driver) DriverMetadata() driver.Metadata { + return driver.Metadata{ + Type: Type, + Description: "SQLite", + Doc: "https://github.com/mattn/go-sqlite3", + IsSQL: true, + } +} + +// Open implements driver.Driver. +func (d *Driver) Open(ctx context.Context, src *source.Source) (driver.Database, error) { + d.log.Debug("Opening data source: ", src) + + dsn, err := PathFromSourceLocation(src) + if err != nil { + return nil, err + } + db, err := sql.Open(dbDrvr, dsn) + if err != nil { + return nil, errz.Wrapf(err, "failed to open sqlite3 source with DSN %q", dsn) + } + + return &database{log: d.log, db: db, src: src, drvr: d}, nil +} + +// Truncate implements driver.Driver. +func (d *Driver) Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (affected int64, err error) { + dsn, err := PathFromSourceLocation(src) + if err != nil { + return 0, err + } + + db, err := sql.Open(dbDrvr, dsn) + if err != nil { + return 0, errz.Err(err) + } + defer d.log.WarnIfFuncError(db.Close) + + tx, err := db.BeginTx(ctx, nil) + if err != nil { + return 0, errz.Err(err) + } + + affected, err = sqlz.ExecResult(ctx, tx, fmt.Sprintf("DELETE FROM %q", tbl)) + if err != nil { + return affected, errz.Append(err, errz.Err(tx.Rollback())) + } + + if reset { + _, err = sqlz.ExecResult(ctx, tx, "UPDATE sqlite_sequence SET seq = 0 WHERE name = ?", tbl) + if err != nil { + return 0, errz.Append(err, errz.Err(tx.Rollback())) + } + } + + return affected, errz.Err(tx.Commit()) +} + +// ValidateSource implements driver.Driver. +func (d *Driver) ValidateSource(src *source.Source) (*source.Source, error) { + if src.Type != Type { + return nil, errz.Errorf("expected driver type %q but got %q", Type, src.Type) + } + return src, nil +} + +// Ping implements driver.Driver. +func (d *Driver) Ping(ctx context.Context, src *source.Source) error { + dbase, err := d.Open(context.TODO(), src) + if err != nil { + return err + } + defer d.log.WarnIfFuncError(dbase.DB().Close) + + return dbase.DB().Ping() +} + +// Dialect implements driver.SQLDriver. +func (d *Driver) Dialect() driver.Dialect { + return driver.Dialect{ + Type: Type, + Placeholders: placeholders, + Quote: '"', + } +} + +func placeholders(n int) string { + return stringz.RepeatJoin("?", n, driver.Comma) +} + +// SQLBuilder implements driver.SQLDriver. +func (d *Driver) SQLBuilder() (sqlbuilder.FragmentBuilder, sqlbuilder.QueryBuilder) { + return newFragmentBuilder(d.log), &sqlbuilder.BaseQueryBuilder{} +} + +// CopyTable implements driver.SQLDriver. +func (d *Driver) CopyTable(ctx context.Context, db sqlz.DB, fromTable, toTable string, copyData bool) (int64, error) { + // Per https://stackoverflow.com/questions/12730390/copy-table-structure-to-new-table-in-sqlite3 + // It is possible to copy the table structure with a simple statement: + // CREATE TABLE copied AS SELECT * FROM mytable WHERE 0 + // However, this does not keep the type information as desired. Thus + // we need to do something more complicated. + + var originTblCreateStmt string + err := db.QueryRowContext(ctx, fmt.Sprintf("SELECT sql FROM sqlite_master WHERE type='table' AND name='%s'", fromTable)).Scan(&originTblCreateStmt) + if err != nil { + return 0, errz.Err(err) + } + + // A simple replace of the table name should work to mutate the + // above CREATE stmt use toTable instead of fromTable. + destTblCreateStmt := strings.Replace(originTblCreateStmt, fromTable, toTable, 1) + + _, err = db.ExecContext(ctx, destTblCreateStmt) + if err != nil { + return 0, errz.Err(err) + } + + if !copyData { + return 0, nil + } + + stmt := fmt.Sprintf("INSERT INTO %q SELECT * FROM %q", toTable, fromTable) + affected, err := sqlz.ExecResult(ctx, db, stmt) + if err != nil { + return 0, errz.Err(err) + } + + return affected, nil +} + +// RecordMeta implements driver.SQLDriver. +func (d *Driver) RecordMeta(colTypes []*sql.ColumnType) (sqlz.RecordMeta, driver.NewRecordFunc, error) { + recMeta, err := recordMetaFromColumnTypes(d.log, colTypes) + if err != nil { + return nil, nil, errz.Err(err) + } + + mungeFn := func(vals []interface{}) (sqlz.Record, error) { + // sqlite3 doesn't need to do any special munging, so we + // just use the default munging. + rec, skipped := driver.NewRecordFromScanRow(recMeta, vals, nil) + if len(skipped) > 0 { + return nil, errz.Errorf("expected zero skipped cols but have %v", skipped) + } + return rec, nil + } + + return recMeta, mungeFn, nil +} + +func (d *Driver) DropTable(ctx context.Context, db sqlz.DB, tbl string, ifExists bool) error { + var stmt string + + if ifExists { + stmt = fmt.Sprintf("DROP TABLE IF EXISTS %q", tbl) + } else { + stmt = fmt.Sprintf("DROP TABLE %q", tbl) + } + + _, err := db.ExecContext(ctx, stmt) + return errz.Err(err) +} + +// CreateTable implements driver.SQLDriver. +func (d *Driver) CreateTable(ctx context.Context, db sqlz.DB, tblDef *sqlmodel.TableDef) error { + query, err := buildCreateTableStmt(tblDef) + if err != nil { + return err + } + + stmt, err := db.PrepareContext(ctx, query) + if err != nil { + return errz.Err(err) + } + + _, err = stmt.ExecContext(ctx) + if err != nil { + d.log.WarnIfCloseError(stmt) + return errz.Err(err) + } + + return errz.Err(stmt.Close()) +} + +// PrepareInsertStmt implements driver.SQLDriver. +func (d *Driver) PrepareInsertStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string) (*driver.StmtExecer, error) { + destColsMeta, err := d.getTableRecordMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + stmt, err := driver.PrepareInsertStmt(ctx, d, db, destTbl, destColsMeta.Names()) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + driver.DefaultInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt), + destColsMeta) + + return execer, nil +} + +// PrepareUpdateStmt implements driver.SQLDriver. +func (d *Driver) PrepareUpdateStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string, where string) (*driver.StmtExecer, error) { + destColsMeta, err := d.getTableRecordMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + query, err := buildUpdateStmt(destTbl, destColNames, where) + if err != nil { + return nil, err + } + + stmt, err := db.PrepareContext(ctx, query) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + driver.DefaultInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt), + destColsMeta) + + return execer, nil +} + +func newStmtExecFunc(stmt *sql.Stmt) driver.StmtExecFunc { + return func(ctx context.Context, args ...interface{}) (int64, error) { + res, err := stmt.ExecContext(ctx, args...) + if err != nil { + return 0, errz.Err(err) + } + affected, err := res.RowsAffected() + return affected, errz.Err(err) + } +} + +// TableColumnTypes implements driver.SQLDriver. +func (d *Driver) TableColumnTypes(ctx context.Context, db sqlz.DB, tblName string, colNames []string) ([]*sql.ColumnType, error) { + // Given the dynamic behavior of sqlite's rows.ColumnTypes, + // this query selects a single row, as that'll give us more + // accurate column type info than no rows. For other db + // impls, LIMIT can be 0. + const queryTpl = "SELECT %s FROM %s LIMIT 1" + + dialect := d.Dialect() + quote := string(dialect.Quote) + tblNameQuoted := stringz.Surround(tblName, quote) + + var colsClause = "*" + if len(colNames) > 0 { + colNamesQuoted := stringz.SurroundSlice(colNames, quote) + colsClause = strings.Join(colNamesQuoted, driver.Comma) + } + + query := fmt.Sprintf(queryTpl, colsClause, tblNameQuoted) + rows, err := db.QueryContext(ctx, query) + if err != nil { + return nil, errz.Err(err) + } + + // We invoke rows.ColumnTypes twice. + // The first time is to cover the scenario where the table + // is empty (no rows), so that we at least get some + // column type info. + colTypes, err := rows.ColumnTypes() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + // If the table does have rows, we invoke rows.ColumnTypes again, + // as on this invocation the column type info will be more + // accurate (col nullability will be reported etc). + if rows.Next() { + colTypes, err = rows.ColumnTypes() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + } + + err = rows.Err() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Close() + if err != nil { + return nil, errz.Err(err) + } + + return colTypes, nil +} + +func (d *Driver) getTableRecordMeta(ctx context.Context, db sqlz.DB, tblName string, colNames []string) (sqlz.RecordMeta, error) { + colTypes, err := d.TableColumnTypes(ctx, db, tblName, colNames) + if err != nil { + return nil, err + } + + destCols, _, err := d.RecordMeta(colTypes) + if err != nil { + return nil, err + } + + return destCols, nil +} + +// NewScratchSource returns a new scratch src. Currently this +// defaults to a sqlite-backed source. +func NewScratchSource(log lg.Log, name string) (src *source.Source, clnup func() error, err error) { + name = stringz.SanitizeAlphaNumeric(name, '_') + _, f, cleanFn, err := source.TempDirFile(name + ".sqlite") + if err != nil { + return nil, cleanFn, err + } + + log.Debugf("created sqlite3 scratch data source file: %s", f.Name()) + + src = &source.Source{ + Type: Type, + Handle: source.ScratchHandle, + Location: dbDrvr + "://" + f.Name(), + } + + return src, cleanFn, nil +} + +// PathFromSourceLocation returns absolute file path +// from the source location, which typically has the "sqlite3:" prefix. +func PathFromSourceLocation(src *source.Source) (string, error) { + if src.Type != Type { + return "", errz.Errorf("driver %q does not support %q", Type, src.Type) + } + + if !strings.HasPrefix(src.Location, dbDrvr+":") { + return "", errz.Errorf("sqlite3 source location must begin with %q but was: %s", Type, src.RedactedLocation()) + } + + loc := strings.TrimPrefix(src.Location, dbDrvr+":") + if len(loc) < 2 { + return "", errz.Errorf("sqlite3 source location is too short: %s", src.RedactedLocation()) + } + + loc = filepath.Clean(loc) + return loc, nil +} diff --git a/drivers/sqlite3/sqlite3_test.go b/drivers/sqlite3/sqlite3_test.go new file mode 100644 index 00000000..f27962ad --- /dev/null +++ b/drivers/sqlite3/sqlite3_test.go @@ -0,0 +1,162 @@ +package sqlite3_test + +import ( + "testing" + + _ "github.com/mattn/go-sqlite3" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestSmoke(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(sakila.SL3) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+sakila.TblFilm) + require.NoError(t, err) + require.Equal(t, sakila.TblFilmCount, len(sink.Recs)) +} + +func TestQueryEmptyTable(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(sakila.SL3) + + // Get an empty table by copying an existing one + tblName := th.CopyTable(false, src, sakila.TblFilm, "", false) + require.Equal(t, int64(0), th.RowCount(src, tblName)) + t.Cleanup(func() { th.DropTable(src, tblName) }) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+tblName) + require.NoError(t, err) + require.Equal(t, 0, len(sink.Recs)) +} + +// TestExhibitDriverColumnTypesBehavior shows the unusual +// behavior of SQLite wrt column types. The following is observed: +// +// 1. If rows.ColumnTypes is invoked prior to rows.Next being +// invoked, the column ScanType will be nil. +// 2. The values returned by rows.ColumnTypes can change after +// each call to rows.Next. This is because of SQLite's dynamic +// typing: any value can be stored in any column. +// +// The second fact is potentially problematic for sq, as sq expects +// that the values of a column are all of the same type. Thus, sq +// will likely encounter problems dealing with SQLite tables +// that have mixed data types in columns. +func TestExhibitDriverColumnTypesBehavior(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(sakila.SL3) + db := th.Open(src).DB() + t.Log("using source: " + src.Location) + + tblName := stringz.UniqTableName("scan_test") + createStmt := "CREATE TABLE " + tblName + " (col1 REAL)" + insertStmt := "INSERT INTO " + tblName + " VALUES(?)" + query := "SELECT * FROM " + tblName + + // Create the table + th.ExecSQL(src, createStmt) + t.Cleanup(func() { th.DropTable(src, tblName) }) + + // 1. Demonstrate that ColumnType.ScanType returns nil + // before rows.Next is invoked + rows1, err := db.Query(query) + require.NoError(t, err) + defer rows1.Close() + + colTypes, err := rows1.ColumnTypes() + require.NoError(t, err) + require.Equal(t, colTypes[0].Name(), "col1") + require.Nil(t, colTypes[0].ScanType(), "scan type is nil because rows.Next was not invoked") + + require.False(t, rows1.Next()) // no rows yet since table is empty + colTypes, err = rows1.ColumnTypes() + require.Error(t, err, "ColumnTypes returns an error because the Next call closed rows") + require.Nil(t, colTypes) + + // 2. Demonstrate that a column's scan type can be different for + // each row (due to sqlite's dynamic typing) + + // Insert values of various types + _, err = db.Exec(insertStmt, nil) + require.NoError(t, err) + _, err = db.Exec(insertStmt, fixt.Float) + require.NoError(t, err) + _, err = db.Exec(insertStmt, fixt.Text) + require.NoError(t, err) + + rows2, err := db.Query(query) + require.NoError(t, err) + defer rows2.Close() + colTypes, err = rows2.ColumnTypes() + require.NoError(t, err) + require.Nil(t, colTypes[0].ScanType(), "scan type should be nil because rows.Next was not invoked") + + // 1st data row + require.True(t, rows2.Next()) + colTypes, err = rows2.ColumnTypes() + require.NoError(t, err) + scanType := colTypes[0].ScanType() + require.Nil(t, scanType, "scan type be nil because the value is nil") + + // 2nd data row + require.True(t, rows2.Next()) + colTypes, err = rows2.ColumnTypes() + require.NoError(t, err) + scanType = colTypes[0].ScanType() + require.NotNil(t, scanType, "scan type should be non-nil because the value is not nil") + require.Equal(t, sqlz.RTypeFloat64.String(), scanType.String()) + + // 3nd data row + require.True(t, rows2.Next()) + colTypes, err = rows2.ColumnTypes() + require.NoError(t, err) + scanType = colTypes[0].ScanType() + require.NotNil(t, scanType, "scan type should be non-nil because the value is not nil") + require.Equal(t, sqlz.RTypeString.String(), scanType.String()) + + require.False(t, rows2.Next(), "should be end of rows") + require.Nil(t, rows2.Err()) +} + +func TestDriver_CreateTable_NotNullDefault(t *testing.T) { + t.Parallel() + + th, src, dbase, drvr := testh.NewWith(t, sakila.SL3) + + tblName := stringz.UniqTableName(t.Name()) + colNames, colKinds := fixt.ColNamePerKind(drvr.Dialect().IntBool, false, false) + + tblDef := sqlmodel.NewTableDef(tblName, colNames, colKinds) + for _, colDef := range tblDef.Cols { + colDef.NotNull = true + colDef.HasDefault = true + } + + err := drvr.CreateTable(th.Context, dbase.DB(), tblDef) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, tblName) }) + + th.InsertDefaultRow(src, tblName) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+tblName) + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) + require.Equal(t, len(colNames), len(sink.RecMeta)) + for i := range sink.Recs[0] { + require.NotNil(t, sink.Recs[0][i]) + } +} diff --git a/drivers/sqlite3/testdata/misc.db b/drivers/sqlite3/testdata/misc.db new file mode 100644 index 00000000..59405b66 Binary files /dev/null and b/drivers/sqlite3/testdata/misc.db differ diff --git a/drivers/sqlite3/testdata/recreate_sakila_sqlite.sh b/drivers/sqlite3/testdata/recreate_sakila_sqlite.sh new file mode 100755 index 00000000..f3bb1b0c --- /dev/null +++ b/drivers/sqlite3/testdata/recreate_sakila_sqlite.sh @@ -0,0 +1,6 @@ +#!/bin/bash +set -v + +rm sakila.db +sqlite3 sakila.db < ./sqlite-sakila-schema.sql +sqlite3 sakila.db < ./sqlite-sakila-insert-data.sql diff --git a/drivers/sqlite3/testdata/sakila.db b/drivers/sqlite3/testdata/sakila.db new file mode 100644 index 00000000..d8c0d954 Binary files /dev/null and b/drivers/sqlite3/testdata/sakila.db differ diff --git a/drivers/sqlite3/testdata/sakila_db b/drivers/sqlite3/testdata/sakila_db new file mode 100644 index 00000000..8a749437 Binary files /dev/null and b/drivers/sqlite3/testdata/sakila_db differ diff --git a/drivers/sqlite3/testdata/sqlite-sakila-delete-data.sql b/drivers/sqlite3/testdata/sqlite-sakila-delete-data.sql new file mode 100644 index 00000000..55a69495 --- /dev/null +++ b/drivers/sqlite3/testdata/sqlite-sakila-delete-data.sql @@ -0,0 +1,45 @@ +/* + +Sakila for SQLite is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team. +This project is designed to help database administrators to decide which database to use for development of new products +The user can run the same SQL against different kind of databases and compare the performance + +License: BSD +Copyright DB Software Laboratory +http://www.etl-tools.com + +*/ + +-- Delete data +DELETE FROM payment +; +DELETE FROM rental +; +DELETE FROM customer +; +DELETE FROM film_category +; +DELETE FROM film_text +; +DELETE FROM film_actor +; +DELETE FROM inventory +; +DELETE FROM film +; +DELETE FROM category +; +DELETE FROM staff +; +DELETE FROM store +; +DELETE FROM actor +; +DELETE FROM address +; +DELETE FROM city +; +DELETE FROM country +; +DELETE FROM language +; \ No newline at end of file diff --git a/drivers/sqlite3/testdata/sqlite-sakila-drop-objects.sql b/drivers/sqlite3/testdata/sqlite-sakila-drop-objects.sql new file mode 100644 index 00000000..23349ed8 --- /dev/null +++ b/drivers/sqlite3/testdata/sqlite-sakila-drop-objects.sql @@ -0,0 +1,70 @@ +/* + +Sakila for SQLite is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team. +This project is designed to help database administrators to decide which database to use for development of new products +The user can run the same SQL against different kind of databases and compare the performance + +License: BSD +Copyright DB Software Laboratory +http://www.etl-tools.com + +*/ + +-- Drop Views + +DROP VIEW customer_list +; +DROP VIEW film_list +; +--DROP VIEW nicer_but_slower_film_list; +DROP VIEW sales_by_film_category +; +DROP VIEW sales_by_store +; +DROP VIEW staff_list +; + +-- Drop Tables + +DROP TABLE payment +; +DROP TABLE rental +; +DROP TABLE inventory +; +DROP TABLE film_text +; +DROP TABLE film_category +; +DROP TABLE film_actor +; +DROP TABLE film +; +DROP TABLE language +; +DROP TABLE customer +; +DROP TABLE actor +; +DROP TABLE category +; +DROP TABLE store +; +DROP TABLE address +; +DROP TABLE staff +; +DROP TABLE city +; +DROP TABLE country +; + +-- Procedures and views +--drop procedure film_in_stock; +--drop procedure film_not_in_stock; +--drop function get_customer_balance; +--drop function inventory_held_by_customer; +--drop function inventory_in_stock; +--drop procedure rewards_report; + + diff --git a/drivers/sqlite3/testdata/sqlite-sakila-insert-data.sql b/drivers/sqlite3/testdata/sqlite-sakila-insert-data.sql new file mode 100644 index 00000000..db77e25e --- /dev/null +++ b/drivers/sqlite3/testdata/sqlite-sakila-insert-data.sql @@ -0,0 +1,231504 @@ +/* + +Sakila for SQLite is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team. +This project is designed to help database administrators to decide which database to use for development of new products +The user can run the same SQL against different kind of databases and compare the performance + +License: BSD +Copyright DB Software Laboratory +http://www.etl-tools.com + +*/ + +BEGIN TRANSACTION; + +-- Delete data +DELETE FROM payment +; +DELETE FROM rental +; +DELETE FROM customer +; +DELETE FROM film_category +; +DELETE FROM film_text +; +DELETE FROM film_actor +; +DELETE FROM inventory +; +DELETE FROM film +; +DELETE FROM category +; +DELETE FROM staff +; +DELETE FROM store +; +DELETE FROM actor +; +DELETE FROM address +; +DELETE FROM city +; +DELETE FROM country +; +DELETE FROM language +; +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table language +-- Start of script +Insert into language + (language_id,name,last_update) +Values +('1','English','2006-02-15 05:02:19.000') +; +Insert into language + (language_id,name,last_update) +Values +('2','Italian','2006-02-15 05:02:19.000') +; +Insert into language + (language_id,name,last_update) +Values +('3','Japanese','2006-02-15 05:02:19.000') +; +Insert into language + (language_id,name,last_update) +Values +('4','Mandarin','2006-02-15 05:02:19.000') +; +Insert into language + (language_id,name,last_update) +Values +('5','French','2006-02-15 05:02:19.000') +; +Insert into language + (language_id,name,last_update) +Values +('6','German','2006-02-15 05:02:19.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table country +-- Start of script +Insert into country + (country_id,country,last_update) +Values +('1','Afghanistan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('2','Algeria','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('3','American Samoa','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('4','Angola','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('5','Anguilla','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('6','Argentina','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('7','Armenia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('8','Australia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('9','Austria','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('10','Azerbaijan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('11','Bahrain','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('12','Bangladesh','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('13','Belarus','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('14','Bolivia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('15','Brazil','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('16','Brunei','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('17','Bulgaria','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('18','Cambodia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('19','Cameroon','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('20','Canada','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('21','Chad','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('22','Chile','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('23','China','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('24','Colombia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('25','Congo, The Democratic Republic of the','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('26','Czech Republic','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('27','Dominican Republic','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('28','Ecuador','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('29','Egypt','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('30','Estonia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('31','Ethiopia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('32','Faroe Islands','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('33','Finland','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('34','France','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('35','French Guiana','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('36','French Polynesia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('37','Gambia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('38','Germany','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('39','Greece','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('40','Greenland','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('41','Holy See (Vatican City State)','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('42','Hong Kong','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('43','Hungary','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('44','India','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('45','Indonesia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('46','Iran','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('47','Iraq','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('48','Israel','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('49','Italy','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('50','Japan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('51','Kazakstan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('52','Kenya','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('53','Kuwait','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('54','Latvia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('55','Liechtenstein','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('56','Lithuania','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('57','Madagascar','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('58','Malawi','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('59','Malaysia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('60','Mexico','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('61','Moldova','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('62','Morocco','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('63','Mozambique','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('64','Myanmar','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('65','Nauru','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('66','Nepal','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('67','Netherlands','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('68','New Zealand','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('69','Nigeria','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('70','North Korea','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('71','Oman','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('72','Pakistan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('73','Paraguay','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('74','Peru','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('75','Philippines','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('76','Poland','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('77','Puerto Rico','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('78','Romania','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('79','Runion','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('80','Russian Federation','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('81','Saint Vincent and the Grenadines','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('82','Saudi Arabia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('83','Senegal','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('84','Slovakia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('85','South Africa','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('86','South Korea','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('87','Spain','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('88','Sri Lanka','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('89','Sudan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('90','Sweden','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('91','Switzerland','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('92','Taiwan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('93','Tanzania','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('94','Thailand','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('95','Tonga','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('96','Tunisia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('97','Turkey','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('98','Turkmenistan','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('99','Tuvalu','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('100','Ukraine','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('101','United Arab Emirates','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('102','United Kingdom','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('103','United States','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('104','Venezuela','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('105','Vietnam','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('106','Virgin Islands, U.S.','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('107','Yemen','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('108','Yugoslavia','2006-02-15 04:44:00.000') +; +Insert into country + (country_id,country,last_update) +Values +('109','Zambia','2006-02-15 04:44:00.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table city +-- Start of script +Insert into city + (city_id,city,country_id,last_update) +Values +('1','A Corua (La Corua)','87','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('2','Abha','82','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('3','Abu Dhabi','101','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('4','Acua','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('5','Adana','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('6','Addis Abeba','31','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('7','Aden','107','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('8','Adoni','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('9','Ahmadnagar','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('10','Akishima','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('11','Akron','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('12','al-Ayn','101','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('13','al-Hawiya','82','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('14','al-Manama','11','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('15','al-Qadarif','89','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('16','al-Qatif','82','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('17','Alessandria','49','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('18','Allappuzha (Alleppey)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('19','Allende','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('20','Almirante Brown','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('21','Alvorada','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('22','Ambattur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('23','Amersfoort','67','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('24','Amroha','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('25','Angra dos Reis','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('26','Anpolis','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('27','Antofagasta','22','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('28','Aparecida de Goinia','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('29','Apeldoorn','67','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('30','Araatuba','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('31','Arak','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('32','Arecibo','77','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('33','Arlington','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('34','Ashdod','48','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('35','Ashgabat','98','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('36','Ashqelon','48','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('37','Asuncin','73','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('38','Athenai','39','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('39','Atinsk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('40','Atlixco','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('41','Augusta-Richmond County','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('42','Aurora','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('43','Avellaneda','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('44','Bag','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('45','Baha Blanca','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('46','Baicheng','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('47','Baiyin','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('48','Baku','10','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('49','Balaiha','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('50','Balikesir','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('51','Balurghat','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('52','Bamenda','19','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('53','Bandar Seri Begawan','16','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('54','Banjul','37','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('55','Barcelona','104','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('56','Basel','91','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('57','Bat Yam','48','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('58','Batman','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('59','Batna','2','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('60','Battambang','18','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('61','Baybay','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('62','Bayugan','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('63','Bchar','2','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('64','Beira','63','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('65','Bellevue','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('66','Belm','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('67','Benguela','4','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('68','Beni-Mellal','62','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('69','Benin City','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('70','Bergamo','49','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('71','Berhampore (Baharampur)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('72','Bern','91','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('73','Bhavnagar','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('74','Bhilwara','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('75','Bhimavaram','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('76','Bhopal','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('77','Bhusawal','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('78','Bijapur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('79','Bilbays','29','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('80','Binzhou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('81','Birgunj','66','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('82','Bislig','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('83','Blumenau','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('84','Boa Vista','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('85','Boksburg','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('86','Botosani','78','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('87','Botshabelo','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('88','Bradford','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('89','Braslia','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('90','Bratislava','84','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('91','Brescia','49','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('92','Brest','34','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('93','Brindisi','49','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('94','Brockton','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('95','Bucuresti','78','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('96','Buenaventura','24','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('97','Bydgoszcz','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('98','Cabuyao','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('99','Callao','74','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('100','Cam Ranh','105','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('101','Cape Coral','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('102','Caracas','104','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('103','Carmen','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('104','Cavite','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('105','Cayenne','35','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('106','Celaya','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('107','Chandrapur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('108','Changhwa','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('109','Changzhou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('110','Chapra','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('111','Charlotte Amalie','106','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('112','Chatsworth','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('113','Cheju','86','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('114','Chiayi','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('115','Chisinau','61','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('116','Chungho','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('117','Cianjur','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('118','Ciomas','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('119','Ciparay','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('120','Citrus Heights','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('121','Citt del Vaticano','41','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('122','Ciudad del Este','73','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('123','Clarksville','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('124','Coacalco de Berriozbal','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('125','Coatzacoalcos','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('126','Compton','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('127','Coquimbo','22','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('128','Crdoba','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('129','Cuauhtmoc','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('130','Cuautla','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('131','Cuernavaca','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('132','Cuman','104','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('133','Czestochowa','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('134','Dadu','72','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('135','Dallas','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('136','Datong','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('137','Daugavpils','54','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('138','Davao','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('139','Daxian','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('140','Dayton','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('141','Deba Habe','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('142','Denizli','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('143','Dhaka','12','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('144','Dhule (Dhulia)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('145','Dongying','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('146','Donostia-San Sebastin','87','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('147','Dos Quebradas','24','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('148','Duisburg','38','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('149','Dundee','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('150','Dzerzinsk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('151','Ede','67','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('152','Effon-Alaiye','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('153','El Alto','14','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('154','El Fuerte','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('155','El Monte','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('156','Elista','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('157','Emeishan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('158','Emmen','67','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('159','Enshi','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('160','Erlangen','38','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('161','Escobar','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('162','Esfahan','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('163','Eskisehir','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('164','Etawah','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('165','Ezeiza','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('166','Ezhou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('167','Faaa','36','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('168','Fengshan','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('169','Firozabad','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('170','Florencia','24','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('171','Fontana','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('172','Fukuyama','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('173','Funafuti','99','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('174','Fuyu','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('175','Fuzhou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('176','Gandhinagar','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('177','Garden Grove','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('178','Garland','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('179','Gatineau','20','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('180','Gaziantep','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('181','Gijn','87','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('182','Gingoog','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('183','Goinia','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('184','Gorontalo','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('185','Grand Prairie','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('186','Graz','9','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('187','Greensboro','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('188','Guadalajara','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('189','Guaruj','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('190','guas Lindas de Gois','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('191','Gulbarga','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('192','Hagonoy','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('193','Haining','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('194','Haiphong','105','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('195','Haldia','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('196','Halifax','20','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('197','Halisahar','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('198','Halle/Saale','38','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('199','Hami','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('200','Hamilton','68','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('201','Hanoi','105','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('202','Hidalgo','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('203','Higashiosaka','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('204','Hino','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('205','Hiroshima','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('206','Hodeida','107','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('207','Hohhot','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('208','Hoshiarpur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('209','Hsichuh','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('210','Huaian','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('211','Hubli-Dharwad','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('212','Huejutla de Reyes','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('213','Huixquilucan','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('214','Hunuco','74','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('215','Ibirit','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('216','Idfu','29','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('217','Ife','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('218','Ikerre','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('219','Iligan','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('220','Ilorin','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('221','Imus','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('222','Inegl','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('223','Ipoh','59','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('224','Isesaki','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('225','Ivanovo','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('226','Iwaki','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('227','Iwakuni','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('228','Iwatsuki','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('229','Izumisano','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('230','Jaffna','88','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('231','Jaipur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('232','Jakarta','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('233','Jalib al-Shuyukh','53','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('234','Jamalpur','12','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('235','Jaroslavl','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('236','Jastrzebie-Zdrj','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('237','Jedda','82','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('238','Jelets','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('239','Jhansi','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('240','Jinchang','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('241','Jining','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('242','Jinzhou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('243','Jodhpur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('244','Johannesburg','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('245','Joliet','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('246','Jos Azueta','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('247','Juazeiro do Norte','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('248','Juiz de Fora','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('249','Junan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('250','Jurez','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('251','Kabul','1','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('252','Kaduna','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('253','Kakamigahara','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('254','Kaliningrad','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('255','Kalisz','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('256','Kamakura','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('257','Kamarhati','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('258','Kamjanets-Podilskyi','100','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('259','Kamyin','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('260','Kanazawa','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('261','Kanchrapara','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('262','Kansas City','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('263','Karnal','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('264','Katihar','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('265','Kermanshah','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('266','Kilis','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('267','Kimberley','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('268','Kimchon','86','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('269','Kingstown','81','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('270','Kirovo-Tepetsk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('271','Kisumu','52','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('272','Kitwe','109','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('273','Klerksdorp','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('274','Kolpino','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('275','Konotop','100','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('276','Koriyama','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('277','Korla','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('278','Korolev','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('279','Kowloon and New Kowloon','42','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('280','Kragujevac','108','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('281','Ktahya','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('282','Kuching','59','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('283','Kumbakonam','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('284','Kurashiki','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('285','Kurgan','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('286','Kursk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('287','Kuwana','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('288','La Paz','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('289','La Plata','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('290','La Romana','27','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('291','Laiwu','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('292','Lancaster','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('293','Laohekou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('294','Lapu-Lapu','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('295','Laredo','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('296','Lausanne','91','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('297','Le Mans','34','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('298','Lengshuijiang','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('299','Leshan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('300','Lethbridge','20','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('301','Lhokseumawe','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('302','Liaocheng','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('303','Liepaja','54','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('304','Lilongwe','58','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('305','Lima','74','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('306','Lincoln','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('307','Linz','9','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('308','Lipetsk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('309','Livorno','49','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('310','Ljubertsy','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('311','Loja','28','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('312','London','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('313','London','20','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('314','Lublin','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('315','Lubumbashi','25','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('316','Lungtan','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('317','Luzinia','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('318','Madiun','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('319','Mahajanga','57','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('320','Maikop','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('321','Malm','90','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('322','Manchester','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('323','Mandaluyong','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('324','Mandi Bahauddin','72','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('325','Mannheim','38','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('326','Maracabo','104','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('327','Mardan','72','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('328','Maring','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('329','Masqat','71','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('330','Matamoros','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('331','Matsue','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('332','Meixian','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('333','Memphis','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('334','Merlo','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('335','Mexicali','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('336','Miraj','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('337','Mit Ghamr','29','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('338','Miyakonojo','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('339','Mogiljov','13','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('340','Molodetno','13','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('341','Monclova','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('342','Monywa','64','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('343','Moscow','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('344','Mosul','47','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('345','Mukateve','100','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('346','Munger (Monghyr)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('347','Mwanza','93','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('348','Mwene-Ditu','25','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('349','Myingyan','64','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('350','Mysore','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('351','Naala-Porto','63','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('352','Nabereznyje Telny','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('353','Nador','62','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('354','Nagaon','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('355','Nagareyama','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('356','Najafabad','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('357','Naju','86','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('358','Nakhon Sawan','94','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('359','Nam Dinh','105','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('360','Namibe','4','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('361','Nantou','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('362','Nanyang','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('363','NDjamna','21','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('364','Newcastle','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('365','Nezahualcyotl','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('366','Nha Trang','105','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('367','Niznekamsk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('368','Novi Sad','108','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('369','Novoterkassk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('370','Nukualofa','95','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('371','Nuuk','40','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('372','Nyeri','52','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('373','Ocumare del Tuy','104','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('374','Ogbomosho','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('375','Okara','72','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('376','Okayama','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('377','Okinawa','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('378','Olomouc','26','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('379','Omdurman','89','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('380','Omiya','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('381','Ondo','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('382','Onomichi','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('383','Oshawa','20','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('384','Osmaniye','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('385','ostka','100','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('386','Otsu','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('387','Oulu','33','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('388','Ourense (Orense)','87','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('389','Owo','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('390','Oyo','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('391','Ozamis','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('392','Paarl','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('393','Pachuca de Soto','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('394','Pak Kret','94','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('395','Palghat (Palakkad)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('396','Pangkal Pinang','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('397','Papeete','36','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('398','Parbhani','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('399','Pathankot','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('400','Patiala','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('401','Patras','39','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('402','Pavlodar','51','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('403','Pemalang','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('404','Peoria','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('405','Pereira','24','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('406','Phnom Penh','18','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('407','Pingxiang','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('408','Pjatigorsk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('409','Plock','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('410','Po','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('411','Ponce','77','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('412','Pontianak','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('413','Poos de Caldas','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('414','Portoviejo','28','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('415','Probolinggo','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('416','Pudukkottai','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('417','Pune','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('418','Purnea (Purnia)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('419','Purwakarta','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('420','Pyongyang','70','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('421','Qalyub','29','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('422','Qinhuangdao','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('423','Qomsheh','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('424','Quilmes','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('425','Rae Bareli','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('426','Rajkot','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('427','Rampur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('428','Rancagua','22','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('429','Ranchi','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('430','Richmond Hill','20','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('431','Rio Claro','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('432','Rizhao','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('433','Roanoke','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('434','Robamba','28','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('435','Rockford','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('436','Ruse','17','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('437','Rustenburg','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('438','s-Hertogenbosch','67','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('439','Saarbrcken','38','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('440','Sagamihara','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('441','Saint Louis','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('442','Saint-Denis','79','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('443','Sal','62','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('444','Salala','71','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('445','Salamanca','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('446','Salinas','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('447','Salzburg','9','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('448','Sambhal','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('449','San Bernardino','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('450','San Felipe de Puerto Plata','27','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('451','San Felipe del Progreso','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('452','San Juan Bautista Tuxtepec','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('453','San Lorenzo','73','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('454','San Miguel de Tucumn','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('455','Sanaa','107','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('456','Santa Brbara dOeste','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('457','Santa F','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('458','Santa Rosa','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('459','Santiago de Compostela','87','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('460','Santiago de los Caballeros','27','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('461','Santo Andr','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('462','Sanya','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('463','Sasebo','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('464','Satna','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('465','Sawhaj','29','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('466','Serpuhov','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('467','Shahr-e Kord','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('468','Shanwei','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('469','Shaoguan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('470','Sharja','101','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('471','Shenzhen','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('472','Shikarpur','72','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('473','Shimoga','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('474','Shimonoseki','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('475','Shivapuri','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('476','Shubra al-Khayma','29','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('477','Siegen','38','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('478','Siliguri (Shiliguri)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('479','Simferopol','100','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('480','Sincelejo','24','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('481','Sirjan','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('482','Sivas','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('483','Skikda','2','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('484','Smolensk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('485','So Bernardo do Campo','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('486','So Leopoldo','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('487','Sogamoso','24','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('488','Sokoto','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('489','Songkhla','94','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('490','Sorocaba','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('491','Soshanguve','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('492','Sousse','96','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('493','South Hill','5','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('494','Southampton','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('495','Southend-on-Sea','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('496','Southport','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('497','Springs','85','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('498','Stara Zagora','17','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('499','Sterling Heights','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('500','Stockport','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('501','Sucre','14','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('502','Suihua','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('503','Sullana','74','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('504','Sultanbeyli','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('505','Sumqayit','10','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('506','Sumy','100','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('507','Sungai Petani','59','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('508','Sunnyvale','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('509','Surakarta','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('510','Syktyvkar','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('511','Syrakusa','49','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('512','Szkesfehrvr','43','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('513','Tabora','93','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('514','Tabriz','46','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('515','Tabuk','82','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('516','Tafuna','3','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('517','Taguig','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('518','Taizz','107','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('519','Talavera','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('520','Tallahassee','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('521','Tama','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('522','Tambaram','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('523','Tanauan','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('524','Tandil','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('525','Tangail','12','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('526','Tanshui','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('527','Tanza','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('528','Tarlac','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('529','Tarsus','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('530','Tartu','30','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('531','Teboksary','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('532','Tegal','45','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('533','Tel Aviv-Jaffa','48','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('534','Tete','63','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('535','Tianjin','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('536','Tiefa','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('537','Tieli','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('538','Tokat','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('539','Tonghae','86','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('540','Tongliao','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('541','Torren','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('542','Touliu','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('543','Toulon','34','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('544','Toulouse','34','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('545','Trshavn','32','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('546','Tsaotun','92','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('547','Tsuyama','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('548','Tuguegarao','75','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('549','Tychy','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('550','Udaipur','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('551','Udine','49','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('552','Ueda','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('553','Uijongbu','86','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('554','Uluberia','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('555','Urawa','50','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('556','Uruapan','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('557','Usak','97','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('558','Usolje-Sibirskoje','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('559','Uttarpara-Kotrung','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('560','Vaduz','55','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('561','Valencia','104','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('562','Valle de la Pascua','104','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('563','Valle de Santiago','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('564','Valparai','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('565','Vancouver','20','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('566','Varanasi (Benares)','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('567','Vicente Lpez','6','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('568','Vijayawada','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('569','Vila Velha','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('570','Vilnius','56','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('571','Vinh','105','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('572','Vitria de Santo Anto','15','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('573','Warren','103','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('574','Weifang','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('575','Witten','38','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('576','Woodridge','8','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('577','Wroclaw','76','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('578','Xiangfan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('579','Xiangtan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('580','Xintai','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('581','Xinxiang','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('582','Yamuna Nagar','44','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('583','Yangor','65','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('584','Yantai','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('585','Yaound','19','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('586','Yerevan','7','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('587','Yinchuan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('588','Yingkou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('589','York','102','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('590','Yuncheng','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('591','Yuzhou','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('592','Zalantun','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('593','Zanzibar','93','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('594','Zaoyang','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('595','Zapopan','60','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('596','Zaria','69','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('597','Zeleznogorsk','80','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('598','Zhezqazghan','51','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('599','Zhoushan','23','2006-02-15 04:45:25.000') +; +Insert into city + (city_id,city,country_id,last_update) +Values +('600','Ziguinchor','83','2006-02-15 04:45:25.000') +; +-- End of Script +-- +-- +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('1','47 MySakila Drive',NULL,' ','300',NULL,' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('2','28 MySQL Boulevard',NULL,' ','576',NULL,' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('3','23 Workhaven Lane',NULL,' ','300',NULL,' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('4','1411 Lillydale Drive',NULL,' ','576',NULL,' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('5','1913 Hanoi Way',NULL,' ','463','35200',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('6','1121 Loja Avenue',NULL,' ','449','17886',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('7','692 Joliet Street',NULL,' ','38','83579',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('8','1566 Inegl Manor',NULL,' ','349','53561',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('9','53 Idfu Parkway',NULL,' ','361','42399',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('10','1795 Santiago de Compostela Way',NULL,' ','295','18743',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('11','900 Santiago de Compostela Parkway',NULL,' ','280','93896',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('12','478 Joliet Way',NULL,' ','200','77948',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('13','613 Korolev Drive',NULL,' ','329','45844',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('14','1531 Sal Drive',NULL,' ','162','53628',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('15','1542 Tarlac Parkway',NULL,' ','440','1027',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('16','808 Bhopal Manor',NULL,' ','582','10672',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('17','270 Amroha Parkway',NULL,' ','384','29610',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('18','770 Bydgoszcz Avenue',NULL,' ','120','16266',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('19','419 Iligan Lane',NULL,' ','76','72878',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('20','360 Toulouse Parkway',NULL,' ','495','54308',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('21','270 Toulon Boulevard',NULL,' ','156','81766',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('22','320 Brest Avenue',NULL,' ','252','43331',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('23','1417 Lancaster Avenue',NULL,' ','267','72192',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('24','1688 Okara Way',NULL,' ','327','21954',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('25','262 A Corua (La Corua) Parkway',NULL,' ','525','34418',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('26','28 Charlotte Amalie Street',NULL,' ','443','37551',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('27','1780 Hino Boulevard',NULL,' ','303','7716',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('28','96 Tafuna Way',NULL,' ','128','99865',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('29','934 San Felipe de Puerto Plata Street',NULL,' ','472','99780',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('30','18 Duisburg Boulevard',NULL,' ','121','58327',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('31','217 Botshabelo Place',NULL,' ','138','49521',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('32','1425 Shikarpur Manor',NULL,' ','346','65599',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('33','786 Aurora Avenue',NULL,' ','474','65750',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('34','1668 Anpolis Street',NULL,' ','316','50199',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('35','33 Gorontalo Way',NULL,' ','257','30348',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('36','176 Mandaluyong Place',NULL,' ','239','65213',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('37','127 Purnea (Purnia) Manor',NULL,' ','17','79388',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('38','61 Tama Street',NULL,' ','284','94065',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('39','391 Callao Drive',NULL,' ','544','34021',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('40','334 Munger (Monghyr) Lane',NULL,' ','31','38145',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('41','1440 Fukuyama Loop',NULL,' ','362','47929',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('42','269 Cam Ranh Parkway',NULL,' ','115','34689',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('43','306 Antofagasta Place',NULL,' ','569','3989',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('44','671 Graz Street',NULL,' ','353','94399',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('45','42 Brindisi Place',NULL,' ','586','16744',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('46','1632 Bislig Avenue',NULL,' ','394','61117',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('47','1447 Imus Way',NULL,' ','167','48942',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('48','1998 Halifax Drive',NULL,' ','308','76022',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('49','1718 Valencia Street',NULL,' ','27','37359',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('50','46 Pjatigorsk Lane',NULL,' ','343','23616',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('51','686 Garland Manor',NULL,' ','247','52535',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('52','909 Garland Manor',NULL,' ','367','69367',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('53','725 Isesaki Place',NULL,' ','237','74428',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('54','115 Hidalgo Parkway',NULL,' ','379','80168',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('55','1135 Izumisano Parkway',NULL,' ','171','48150',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('56','939 Probolinggo Loop',NULL,' ','1','4166',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('57','17 Kabul Boulevard',NULL,' ','355','38594',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('58','1964 Allappuzha (Alleppey) Street',NULL,' ','227','48980',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('59','1697 Kowloon and New Kowloon Loop',NULL,' ','49','57807',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('60','1668 Saint Louis Place',NULL,' ','397','39072',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('61','943 Tokat Street',NULL,' ','560','45428',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('62','1114 Liepaja Street',NULL,' ','282','69226',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('63','1213 Ranchi Parkway',NULL,' ','350','94352',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('64','81 Hodeida Way',NULL,' ','231','55561',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('65','915 Ponce Place',NULL,' ','56','83980',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('66','1717 Guadalajara Lane',NULL,' ','441','85505',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('67','1214 Hanoi Way',NULL,' ','306','67055',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('68','1966 Amroha Avenue',NULL,' ','139','70385',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('69','698 Otsu Street',NULL,' ','105','71110',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('70','1150 Kimchon Manor',NULL,' ','321','96109',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('71','1586 Guaruj Place',NULL,' ','579','5135',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('72','57 Arlington Manor',NULL,' ','475','48960',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('73','1031 Daugavpils Parkway',NULL,' ','63','59025',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('74','1124 Buenaventura Drive',NULL,' ','13','6856',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('75','492 Cam Ranh Street',NULL,' ','61','50805',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('76','89 Allappuzha (Alleppey) Manor',NULL,' ','517','75444',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('77','1947 Poos de Caldas Boulevard',NULL,' ','114','60951',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('78','1206 Dos Quebradas Place',NULL,' ','431','20207',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('79','1551 Rampur Lane',NULL,' ','108','72394',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('80','602 Paarl Street',NULL,' ','402','98889',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('81','1692 Ede Loop',NULL,' ','30','9223',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('82','936 Salzburg Lane',NULL,' ','425','96709',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('83','586 Tete Way',NULL,' ','256','1079',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('84','1888 Kabul Drive',NULL,' ','217','20936',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('85','320 Baiyin Parkway',NULL,' ','319','37307',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('86','927 Baha Blanca Parkway',NULL,' ','479','9495',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('87','929 Tallahassee Loop',NULL,' ','497','74671',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('88','125 Citt del Vaticano Boulevard',NULL,' ','40','67912',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('89','1557 Ktahya Boulevard',NULL,' ','88','88002',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('90','870 Ashqelon Loop',NULL,' ','489','84931',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('91','1740 Portoviejo Avenue',NULL,' ','480','29932',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('92','1942 Ciparay Parkway',NULL,' ','113','82624',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('93','1926 El Alto Avenue',NULL,' ','289','75543',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('94','1952 Chatsworth Drive',NULL,' ','332','25958',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('95','1370 Le Mans Avenue',NULL,' ','53','52163',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('96','984 Effon-Alaiye Avenue',NULL,' ','183','17119',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('97','832 Nakhon Sawan Manor',NULL,' ','592','49021',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('98','152 Kitwe Parkway',NULL,' ','82','53182',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('99','1697 Tanauan Lane',NULL,' ','399','22870',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('100','1308 Arecibo Way',NULL,' ','41','30695',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('101','1599 Plock Drive',NULL,' ','534','71986',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('102','669 Firozabad Loop',NULL,' ','12','92265',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('103','588 Vila Velha Manor',NULL,' ','268','51540',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('104','1913 Kamakura Place',NULL,' ','238','97287',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('105','733 Mandaluyong Place',NULL,' ','2','77459',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('106','659 Vaduz Drive',NULL,' ','34','49708',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('107','1177 Jelets Way',NULL,' ','220','3305',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('108','1386 Yangor Avenue',NULL,' ','543','80720',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('109','454 Nakhon Sawan Boulevard',NULL,' ','173','76383',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('110','1867 San Juan Bautista Tuxtepec Avenue',NULL,' ','225','78311',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('111','1532 Dzerzinsk Way',NULL,' ','334','9599',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('112','1002 Ahmadnagar Manor',NULL,' ','213','93026',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('113','682 Junan Way',NULL,' ','273','30418',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('114','804 Elista Drive',NULL,' ','159','61069',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('115','1378 Alvorada Avenue',NULL,' ','102','75834',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('116','793 Cam Ranh Avenue',NULL,' ','292','87057',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('117','1079 Tel Aviv-Jaffa Boulevard',NULL,' ','132','10885',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('118','442 Rae Bareli Place',NULL,' ','148','24321',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('119','1107 Nakhon Sawan Avenue',NULL,' ','365','75149',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('120','544 Malm Parkway',NULL,' ','403','63502',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('121','1967 Sincelejo Place',NULL,' ','176','73644',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('122','333 Goinia Way',NULL,' ','185','78625',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('123','1987 Coacalco de Berriozbal Loop',NULL,' ','476','96065',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('124','241 Mosul Lane',NULL,' ','147','76157',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('125','211 Chiayi Drive',NULL,' ','164','58186',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('126','1175 Tanauan Way',NULL,' ','305','64615',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('127','117 Boa Vista Way',NULL,' ','566','6804',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('128','848 Tafuna Manor',NULL,' ','281','45142',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('129','569 Baicheng Lane',NULL,' ','85','60304',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('130','1666 Qomsheh Drive',NULL,' ','410','66255',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('131','801 Hagonoy Drive',NULL,' ','484','8439',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('132','1050 Garden Grove Avenue',NULL,' ','236','4999',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('133','1854 Tieli Street',NULL,' ','302','15819',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('134','758 Junan Lane',NULL,' ','190','82639',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('135','1752 So Leopoldo Parkway',NULL,' ','345','14014',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('136','898 Belm Manor',NULL,' ','87','49757',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('137','261 Saint Louis Way',NULL,' ','541','83401',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('138','765 Southampton Drive',NULL,' ','421','4285',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('139','943 Johannesburg Avenue',NULL,' ','417','5892',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('140','788 Atinsk Street',NULL,' ','211','81691',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('141','1749 Daxian Place',NULL,' ','29','11044',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('142','1587 Sullana Lane',NULL,' ','207','85769',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('143','1029 Dzerzinsk Manor',NULL,' ','542','57519',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('144','1666 Beni-Mellal Place',NULL,' ','123','13377',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('145','928 Jaffna Loop',NULL,' ','172','93762',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('146','483 Ljubertsy Parkway',NULL,' ','149','60562',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('147','374 Bat Yam Boulevard',NULL,' ','266','97700',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('148','1027 Songkhla Manor',NULL,' ','340','30861',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('149','999 Sanaa Loop',NULL,' ','491','3439',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('150','879 Newcastle Way',NULL,' ','499','90732',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('151','1337 Lincoln Parkway',NULL,' ','555','99457',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('152','1952 Pune Lane',NULL,' ','442','92150',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('153','782 Mosul Street',NULL,' ','94','25545',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('154','781 Shimonoseki Drive',NULL,' ','202','95444',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('155','1560 Jelets Boulevard',NULL,' ','291','77777',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('156','1963 Moscow Place',NULL,' ','354','64863',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('157','456 Escobar Way',NULL,' ','232','36061',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('158','798 Cianjur Avenue',NULL,' ','590','76990',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('159','185 Novi Sad Place',NULL,' ','72','41778',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('160','1367 Yantai Manor',NULL,' ','381','21294',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('161','1386 Nakhon Sawan Boulevard',NULL,' ','420','53502',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('162','369 Papeete Way',NULL,' ','187','66639',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('163','1440 Compton Place',NULL,' ','307','81037',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('164','1623 Baha Blanca Manor',NULL,' ','310','81511',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('165','97 Shimoga Avenue',NULL,' ','533','44660',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('166','1740 Le Mans Loop',NULL,' ','297','22853',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('167','1287 Xiangfan Boulevard',NULL,' ','253','57844',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('168','842 Salzburg Lane',NULL,' ','529','3313',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('169','154 Tallahassee Loop',NULL,' ','199','62250',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('170','710 San Felipe del Progreso Avenue',NULL,' ','304','76901',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('171','1540 Wroclaw Drive',NULL,' ','107','62686',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('172','475 Atinsk Way',NULL,' ','240','59571',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('173','1294 Firozabad Drive',NULL,' ','407','70618',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('174','1877 Ezhou Lane',NULL,' ','550','63337',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('175','316 Uruapan Street',NULL,' ','223','58194',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('176','29 Pyongyang Loop',NULL,' ','58','47753',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('177','1010 Klerksdorp Way',NULL,' ','186','6802',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('178','1848 Salala Boulevard',NULL,' ','373','25220',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('179','431 Xiangtan Avenue',NULL,' ','18','4854',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('180','757 Rustenburg Avenue',NULL,' ','483','89668',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('181','146 Johannesburg Way',NULL,' ','330','54132',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('182','1891 Rizhao Boulevard',NULL,' ','456','47288',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('183','1089 Iwatsuki Avenue',NULL,' ','270','35109',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('184','1410 Benin City Parkway',NULL,' ','405','29747',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('185','682 Garden Grove Place',NULL,' ','333','67497',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('186','533 al-Ayn Boulevard',NULL,' ','126','8862',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('187','1839 Szkesfehrvr Parkway',NULL,' ','317','55709',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('188','741 Ambattur Manor',NULL,' ','438','43310',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('189','927 Barcelona Street',NULL,' ','467','65121',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('190','435 0 Way',NULL,' ','195','74750',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('191','140 Chiayi Parkway',NULL,' ','506','38982',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('192','1166 Changhwa Street',NULL,' ','62','58852',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('193','891 Novi Sad Manor',NULL,' ','383','5379',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('194','605 Rio Claro Parkway',NULL,' ','513','49348',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('195','1077 San Felipe de Puerto Plata Place',NULL,' ','369','65387',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('196','9 San Miguel de Tucumn Manor',NULL,' ','169','90845',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('197','447 Surakarta Loop',NULL,' ','271','10428',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('198','345 Oshawa Boulevard',NULL,' ','204','32114',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('199','1792 Valle de la Pascua Place',NULL,' ','477','15540',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('200','1074 Binzhou Manor',NULL,' ','325','36490',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('201','817 Bradford Loop',NULL,' ','109','89459',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('202','955 Bamenda Way',NULL,' ','218','1545',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('203','1149 A Corua (La Corua) Boulevard',NULL,' ','194','95824',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('204','387 Mwene-Ditu Drive',NULL,' ','35','8073',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('205','68 Molodetno Manor',NULL,' ','575','4662',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('206','642 Nador Drive',NULL,' ','77','3924',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('207','1688 Nador Lane',NULL,' ','184','61613',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('208','1215 Pyongyang Parkway',NULL,' ','557','25238',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('209','1679 Antofagasta Street',NULL,' ','122','86599',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('210','1304 s-Hertogenbosch Way',NULL,' ','83','10925',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('211','850 Salala Loop',NULL,' ','371','10800',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('212','624 Oshawa Boulevard',NULL,' ','51','89959',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('213','43 Dadu Avenue',NULL,' ','74','4855',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('214','751 Lima Loop',NULL,' ','7','99405',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('215','1333 Haldia Street',NULL,' ','174','82161',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('216','660 Jedda Boulevard',NULL,' ','65','25053',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('217','1001 Miyakonojo Lane',NULL,' ','518','67924',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('218','226 Brest Manor',NULL,' ','508','2299',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('219','1229 Valencia Parkway',NULL,' ','498','99124',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('220','1201 Qomsheh Manor',NULL,' ','28','21464',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('221','866 Shivapuri Manor',NULL,' ','448','22474',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('222','1168 Najafabad Parkway',NULL,' ','251','40301',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('223','1244 Allappuzha (Alleppey) Place',NULL,' ','567','20657',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('224','1842 Luzinia Boulevard',NULL,' ','593','94420',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('225','1926 Gingoog Street',NULL,' ','511','22824',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('226','810 Palghat (Palakkad) Boulevard',NULL,' ','235','73431',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('227','1820 Maring Parkway',NULL,' ','324','88307',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('228','60 Poos de Caldas Street',NULL,' ','243','82338',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('229','1014 Loja Manor',NULL,' ','22','66851',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('230','201 Effon-Alaiye Way',NULL,' ','37','64344',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('231','430 Alessandria Loop',NULL,' ','439','47446',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('232','754 Valencia Place',NULL,' ','406','87911',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('233','356 Olomouc Manor',NULL,' ','26','93323',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('234','1256 Bislig Boulevard',NULL,' ','86','50598',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('235','954 Kimchon Place',NULL,' ','559','42420',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('236','885 Yingkou Manor',NULL,' ','596','31390',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('237','1736 Cavite Place',NULL,' ','216','98775',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('238','346 Skikda Parkway',NULL,' ','233','90628',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('239','98 Stara Zagora Boulevard',NULL,' ','96','76448',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('240','1479 Rustenburg Boulevard',NULL,' ','527','18727',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('241','647 A Corua (La Corua) Street',NULL,' ','357','36971',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('242','1964 Gijn Manor',NULL,' ','473','14408',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('243','47 Syktyvkar Lane',NULL,' ','118','22236',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('244','1148 Saarbrcken Parkway',NULL,' ','226','1921',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('245','1103 Bilbays Parkway',NULL,' ','578','87660',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('246','1246 Boksburg Parkway',NULL,' ','422','28349',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('247','1483 Pathankot Street',NULL,' ','454','37288',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('248','582 Papeete Loop',NULL,' ','294','27722',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('249','300 Junan Street',NULL,' ','553','81314',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('250','829 Grand Prairie Way',NULL,' ','328','6461',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('251','1473 Changhwa Parkway',NULL,' ','124','75933',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('252','1309 Weifang Street',NULL,' ','520','57338',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('253','1760 Oshawa Manor',NULL,' ','535','38140',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('254','786 Stara Zagora Way',NULL,' ','390','98332',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('255','1966 Tonghae Street',NULL,' ','198','36481',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('256','1497 Yuzhou Drive',NULL,' ','312','3433',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('258','752 Ondo Loop',NULL,' ','338','32474',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('259','1338 Zalantun Lane',NULL,' ','413','45403',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('260','127 Iwakuni Boulevard',NULL,' ','192','20777',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('261','51 Laredo Avenue',NULL,' ','342','68146',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('262','771 Yaound Manor',NULL,' ','64','86768',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('263','532 Toulon Street',NULL,' ','460','69517',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('264','1027 Banjul Place',NULL,' ','197','50390',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('265','1158 Mandi Bahauddin Parkway',NULL,' ','136','98484',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('266','862 Xintai Lane',NULL,' ','548','30065',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('267','816 Cayenne Parkway',NULL,' ','414','93629',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('268','1831 Nam Dinh Loop',NULL,' ','323','51990',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('269','446 Kirovo-Tepetsk Lane',NULL,' ','203','19428',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('270','682 Halisahar Place',NULL,' ','378','20536',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('271','1587 Loja Manor',NULL,' ','447','5410',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('272','1762 Paarl Parkway',NULL,' ','298','53928',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('273','1519 Ilorin Place',NULL,' ','395','49298',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('274','920 Kumbakonam Loop',NULL,' ','446','75090',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('275','906 Goinia Way',NULL,' ','255','83565',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('276','1675 Xiangfan Manor',NULL,' ','283','11763',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('277','85 San Felipe de Puerto Plata Drive',NULL,' ','584','46063',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('278','144 South Hill Loop',NULL,' ','445','2012',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('279','1884 Shikarpur Avenue',NULL,' ','263','85548',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('280','1980 Kamjanets-Podilskyi Street',NULL,' ','404','89502',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('281','1944 Bamenda Way',NULL,' ','573','24645',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('282','556 Baybay Manor',NULL,' ','374','55802',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('283','457 Tongliao Loop',NULL,' ','222','56254',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('284','600 Bradford Street',NULL,' ','514','96204',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('285','1006 Santa Brbara dOeste Manor',NULL,' ','389','36229',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('286','1308 Sumy Loop',NULL,' ','175','30657',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('287','1405 Chisinau Place',NULL,' ','411','8160',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('288','226 Halifax Street',NULL,' ','277','58492',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('289','1279 Udine Parkway',NULL,' ','69','75860',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('290','1336 Benin City Drive',NULL,' ','386','46044',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('291','1155 Liaocheng Place',NULL,' ','152','22650',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('292','1993 Tabuk Lane',NULL,' ','522','64221',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('293','86 Higashiosaka Lane',NULL,' ','563','33768',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('294','1912 Allende Manor',NULL,' ','279','58124',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('295','544 Tarsus Boulevard',NULL,' ','562','53145',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('296','1936 Cuman Avenue',NULL,' ','433','61195',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('297','1192 Tongliao Street',NULL,' ','470','19065',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('298','44 Najafabad Way',NULL,' ','146','61391',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('299','32 Pudukkottai Lane',NULL,' ','140','38834',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('300','661 Chisinau Lane',NULL,' ','274','8856',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('301','951 Stara Zagora Manor',NULL,' ','400','98573',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('302','922 Vila Velha Loop',NULL,' ','9','4085',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('303','898 Jining Lane',NULL,' ','387','40070',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('304','1635 Kuwana Boulevard',NULL,' ','205','52137',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('305','41 El Alto Parkway',NULL,' ','398','56883',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('306','1883 Maikop Lane',NULL,' ','254','68469',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('307','1908 Gaziantep Place',NULL,' ','536','58979',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('308','687 Alessandria Parkway',NULL,' ','455','57587',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('309','827 Yuncheng Drive',NULL,' ','99','79047',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('310','913 Coacalco de Berriozbal Loop',NULL,' ','33','42141',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('311','715 So Bernardo do Campo Lane',NULL,' ','507','84804',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('312','1354 Siegen Street',NULL,' ','25','80184',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('313','1191 Sungai Petani Boulevard',NULL,' ','262','9668',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('314','1224 Huejutla de Reyes Boulevard',NULL,' ','91','70923',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('315','543 Bergamo Avenue',NULL,' ','215','59686',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('316','746 Joliet Lane',NULL,' ','286','94878',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('317','780 Kimberley Way',NULL,' ','515','17032',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('318','1774 Yaound Place',NULL,' ','166','91400',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('319','1957 Yantai Lane',NULL,' ','490','59255',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('320','1542 Lubumbashi Boulevard',NULL,' ','57','62472',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('321','651 Pathankot Loop',NULL,' ','336','59811',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('322','1359 Zhoushan Parkway',NULL,' ','545','29763',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('323','1769 Iwaki Lane',NULL,' ','97','25787',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('324','1145 Vilnius Manor',NULL,' ','451','73170',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('325','1892 Nabereznyje Telny Lane',NULL,' ','516','28396',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('326','470 Boksburg Street',NULL,' ','81','97960',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('327','1427 A Corua (La Corua) Place',NULL,' ','45','85799',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('328','479 San Felipe del Progreso Avenue',NULL,' ','130','54949',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('329','867 Benin City Avenue',NULL,' ','591','78543',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('330','981 Kumbakonam Place',NULL,' ','89','87611',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('331','1016 Iwakuni Street',NULL,' ','269','49833',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('332','663 Baha Blanca Parkway',NULL,' ','5','33463',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('333','1860 Taguig Loop',NULL,' ','119','59550',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('334','1816 Bydgoszcz Loop',NULL,' ','234','64308',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('335','587 Benguela Manor',NULL,' ','42','91590',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('336','430 Kumbakonam Drive',NULL,' ','457','28814',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('337','1838 Tabriz Lane',NULL,' ','143','1195',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('338','431 Szkesfehrvr Avenue',NULL,' ','48','57828',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('339','503 Sogamoso Loop',NULL,' ','505','49812',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('340','507 Smolensk Loop',NULL,' ','492','22971',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('341','1920 Weifang Avenue',NULL,' ','427','15643',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('342','124 al-Manama Way',NULL,' ','382','52368',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('343','1443 Mardan Street',NULL,' ','392','31483',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('344','1909 Benguela Lane',NULL,' ','581','19913',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('345','68 Ponce Parkway',NULL,' ','201','85926',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('346','1217 Konotop Avenue',NULL,' ','151','504',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('347','1293 Nam Dinh Way',NULL,' ','84','71583',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('348','785 Vaduz Street',NULL,' ','335','36170',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('349','1516 Escobar Drive',NULL,' ','370','46069',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('350','1628 Nagareyama Lane',NULL,' ','453','60079',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('351','1157 Nyeri Loop',NULL,' ','320','56380',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('352','1673 Tangail Drive',NULL,' ','137','26857',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('353','381 Kabul Way',NULL,' ','209','87272',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('354','953 Hodeida Street',NULL,' ','221','18841',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('355','469 Nakhon Sawan Street',NULL,' ','531','58866',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('356','1378 Beira Loop',NULL,' ','597','40792',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('357','1641 Changhwa Place',NULL,' ','52','37636',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('358','1698 Southport Loop',NULL,' ','393','49009',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('359','519 Nyeri Manor',NULL,' ','461','37650',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('360','619 Hunuco Avenue',NULL,' ','331','81508',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('361','45 Aparecida de Goinia Place',NULL,' ','464','7431',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('362','482 Kowloon and New Kowloon Manor',NULL,' ','90','97056',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('363','604 Bern Place',NULL,' ','429','5373',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('364','1623 Kingstown Drive',NULL,' ','20','91299',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('365','1009 Zanzibar Lane',NULL,' ','32','64875',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('366','114 Jalib al-Shuyukh Manor',NULL,' ','585','60440',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('367','1163 London Parkway',NULL,' ','66','6066',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('368','1658 Jastrzebie-Zdrj Loop',NULL,' ','372','96584',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('369','817 Laredo Avenue',NULL,' ','188','77449',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('370','1565 Tangail Manor',NULL,' ','377','45750',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('371','1912 Emeishan Drive',NULL,' ','50','33050',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('372','230 Urawa Drive',NULL,' ','8','2738',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('373','1922 Miraj Way',NULL,' ','356','13203',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('374','433 Florencia Street',NULL,' ','250','91330',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('375','1049 Matamoros Parkway',NULL,' ','191','69640',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('376','1061 Ede Avenue',NULL,' ','98','57810',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('377','154 Oshawa Manor',NULL,' ','415','72771',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('378','1191 Tandil Drive',NULL,' ','523','6362',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('379','1133 Rizhao Avenue',NULL,' ','572','2800',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('380','1519 Santiago de los Caballeros Loop',NULL,' ','348','22025',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('381','1618 Olomouc Manor',NULL,' ','285','26385',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('382','220 Hidalgo Drive',NULL,' ','265','45298',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('383','686 Donostia-San Sebastin Lane',NULL,' ','471','97390',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('384','97 Mogiljov Lane',NULL,' ','73','89294',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('385','1642 Charlotte Amalie Drive',NULL,' ','549','75442',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('386','1368 Maracabo Boulevard',NULL,' ','493','32716',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('387','401 Sucre Boulevard',NULL,' ','322','25007',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('388','368 Hunuco Boulevard',NULL,' ','360','17165',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('389','500 Lincoln Parkway',NULL,' ','210','95509',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('390','102 Chapra Drive',NULL,' ','521','14073',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('391','1793 Meixian Place',NULL,' ','258','33535',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('392','514 Ife Way',NULL,' ','315','69973',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('393','717 Changzhou Lane',NULL,' ','104','21615',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('394','753 Ilorin Avenue',NULL,' ','157','3656',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('395','1337 Mit Ghamr Avenue',NULL,' ','358','29810',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('396','767 Pyongyang Drive',NULL,' ','229','83536',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('397','614 Pak Kret Street',NULL,' ','6','27796',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('398','954 Lapu-Lapu Way',NULL,' ','278','8816',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('399','331 Bydgoszcz Parkway',NULL,' ','181','966',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('400','1152 Citrus Heights Manor',NULL,' ','15','5239',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('401','168 Cianjur Manor',NULL,' ','228','73824',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('402','616 Hagonoy Avenue',NULL,' ','39','46043',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('403','1190 0 Place',NULL,' ','44','10417',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('404','734 Bchar Place',NULL,' ','375','30586',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('405','530 Lausanne Lane',NULL,' ','135','11067',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('406','454 Patiala Lane',NULL,' ','276','13496',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('407','1346 Mysore Drive',NULL,' ','92','61507',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('408','990 Etawah Loop',NULL,' ','564','79940',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('409','1266 Laredo Parkway',NULL,' ','380','7664',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('410','88 Nagaon Manor',NULL,' ','524','86868',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('411','264 Bhimavaram Manor',NULL,' ','111','54749',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('412','1639 Saarbrcken Drive',NULL,' ','437','9827',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('413','692 Amroha Drive',NULL,' ','230','35575',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('414','1936 Lapu-Lapu Parkway',NULL,' ','141','7122',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('415','432 Garden Grove Street',NULL,' ','430','65630',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('416','1445 Carmen Parkway',NULL,' ','117','70809',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('417','791 Salinas Street',NULL,' ','208','40509',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('418','126 Acua Parkway',NULL,' ','71','58888',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('419','397 Sunnyvale Avenue',NULL,' ','19','55566',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('420','992 Klerksdorp Loop',NULL,' ','23','33711',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('421','966 Arecibo Loop',NULL,' ','134','94018',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('422','289 Santo Andr Manor',NULL,' ','16','72410',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('423','437 Chungho Drive',NULL,' ','450','59489',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('424','1948 Bayugan Parkway',NULL,' ','264','60622',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('425','1866 al-Qatif Avenue',NULL,' ','155','89420',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('426','1661 Abha Drive',NULL,' ','416','14400',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('427','1557 Cape Coral Parkway',NULL,' ','293','46875',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('428','1727 Matamoros Place',NULL,' ','465','78813',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('429','1269 Botosani Manor',NULL,' ','468','47394',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('430','355 Vitria de Santo Anto Way',NULL,' ','452','81758',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('431','1596 Acua Parkway',NULL,' ','418','70425',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('432','259 Ipoh Drive',NULL,' ','189','64964',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('433','1823 Hoshiarpur Lane',NULL,' ','510','33191',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('434','1404 Taguig Drive',NULL,' ','547','87212',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('435','740 Udaipur Lane',NULL,' ','150','33505',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('436','287 Cuautla Boulevard',NULL,' ','501','72736',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('437','1766 Almirante Brown Street',NULL,' ','364','63104',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('438','596 Huixquilucan Place',NULL,' ','351','65892',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('439','1351 Aparecida de Goinia Parkway',NULL,' ','391','41775',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('440','722 Bradford Lane',NULL,' ','249','90920',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('441','983 Santa F Way',NULL,' ','565','47472',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('442','1245 Ibirit Way',NULL,' ','290','40926',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('443','1836 Korla Parkway',NULL,' ','272','55405',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('444','231 Kaliningrad Place',NULL,' ','70','57833',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('445','495 Bhimavaram Lane',NULL,' ','144','3',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('446','1924 Shimonoseki Drive',NULL,' ','59','52625',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('447','105 Dzerzinsk Manor',NULL,' ','540','48570',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('448','614 Denizli Parkway',NULL,' ','486','29444',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('449','1289 Belm Boulevard',NULL,' ','530','88306',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('450','203 Tambaram Street',NULL,' ','161','73942',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('451','1704 Tambaram Manor',NULL,' ','554','2834',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('452','207 Cuernavaca Loop',NULL,' ','352','52671',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('453','319 Springs Loop',NULL,' ','160','99552',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('454','956 Nam Dinh Manor',NULL,' ','481','21872',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('455','1947 Paarl Way',NULL,' ','509','23636',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('456','814 Simferopol Loop',NULL,' ','154','48745',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('457','535 Ahmadnagar Manor',NULL,' ','3','41136',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('458','138 Caracas Boulevard',NULL,' ','326','16790',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('459','251 Florencia Drive',NULL,' ','556','16119',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('460','659 Gatineau Boulevard',NULL,' ','153','28587',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('461','1889 Valparai Way',NULL,' ','600','75559',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('462','1485 Bratislava Place',NULL,' ','435','83183',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('463','935 Aden Boulevard',NULL,' ','532','64709',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('464','76 Kermanshah Manor',NULL,' ','423','23343',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('465','734 Tanshui Avenue',NULL,' ','170','70664',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('466','118 Jaffna Loop',NULL,' ','182','10447',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('467','1621 Tongliao Avenue',NULL,' ','558','22173',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('468','1844 Usak Avenue',NULL,' ','196','84461',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('469','1872 Toulon Loop',NULL,' ','428','7939',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('470','1088 Ibirit Place',NULL,' ','595','88502',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('471','1322 Mosul Parkway',NULL,' ','145','95400',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('472','1447 Chatsworth Place',NULL,' ','129','41545',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('473','1257 Guadalajara Street',NULL,' ','78','33599',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('474','1469 Plock Lane',NULL,' ','388','95835',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('475','434 Ourense (Orense) Manor',NULL,' ','206','14122',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('476','270 Tambaram Parkway',NULL,' ','244','9668',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('477','1786 Salinas Place',NULL,' ','359','66546',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('478','1078 Stara Zagora Drive',NULL,' ','301','69221',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('479','1854 Okara Boulevard',NULL,' ','158','42123',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('480','421 Yaound Street',NULL,' ','385','11363',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('481','1153 Allende Way',NULL,' ','179','20336',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('482','808 Naala-Porto Parkway',NULL,' ','500','41060',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('483','632 Usolje-Sibirskoje Parkway',NULL,' ','36','73085',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('484','98 Pyongyang Boulevard',NULL,' ','11','88749',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('485','984 Novoterkassk Loop',NULL,' ','180','28165',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('486','64 Korla Street',NULL,' ','347','25145',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('487','1785 So Bernardo do Campo Street',NULL,' ','125','71182',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('488','698 Jelets Boulevard',NULL,' ','142','2596',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('489','1297 Alvorada Parkway',NULL,' ','587','11839',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('490','1909 Dayton Avenue',NULL,' ','469','88513',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('491','1789 Saint-Denis Parkway',NULL,' ','4','8268',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('492','185 Mannheim Lane',NULL,' ','408','23661',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('493','184 Mandaluyong Street',NULL,' ','288','94239',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('494','591 Sungai Petani Drive',NULL,' ','376','46400',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('495','656 Matamoros Drive',NULL,' ','487','19489',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('496','775 ostka Drive',NULL,' ','337','22358',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('497','1013 Tabuk Boulevard',NULL,' ','261','96203',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('498','319 Plock Parkway',NULL,' ','504','26101',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('499','1954 Kowloon and New Kowloon Way',NULL,' ','434','63667',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('500','362 Rajkot Lane',NULL,' ','47','98030',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('501','1060 Tandil Lane',NULL,' ','432','72349',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('502','1515 Korla Way',NULL,' ','589','57197',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('503','1416 San Juan Bautista Tuxtepec Avenue',NULL,' ','444','50592',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('504','1 Valle de Santiago Avenue',NULL,' ','93','86208',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('505','519 Brescia Parkway',NULL,' ','318','69504',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('506','414 Mandaluyong Street',NULL,' ','314','16370',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('507','1197 Sokoto Boulevard',NULL,' ','478','87687',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('508','496 Celaya Drive',NULL,' ','552','90797',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('509','786 Matsue Way',NULL,' ','245','37469',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('510','48 Maracabo Place',NULL,' ','519','1570',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('511','1152 al-Qatif Lane',NULL,' ','412','44816',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('512','1269 Ipoh Avenue',NULL,' ','163','54674',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('513','758 Korolev Parkway',NULL,' ','568','75474',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('514','1747 Rustenburg Place',NULL,' ','110','51369',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('515','886 Tonghae Place',NULL,' ','259','19450',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('516','1574 Goinia Boulevard',NULL,' ','502','39529',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('517','548 Uruapan Street',NULL,' ','312','35653',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('519','962 Tama Loop',NULL,' ','583','65952',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('520','1778 Gijn Manor',NULL,' ','594','35156',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('521','568 Dhule (Dhulia) Loop',NULL,' ','127','92568',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('522','1768 Udine Loop',NULL,' ','60','32347',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('523','608 Birgunj Parkway',NULL,' ','116','400',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('524','680 A Corua (La Corua) Manor',NULL,' ','482','49806',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('525','1949 Sanya Street',NULL,' ','224','61244',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('526','617 Klerksdorp Place',NULL,' ','366','94707',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('527','1993 0 Loop',NULL,' ','588','41214',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('528','1176 Southend-on-Sea Manor',NULL,' ','458','81651',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('529','600 Purnea (Purnia) Avenue',NULL,' ','571','18043',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('530','1003 Qinhuangdao Street',NULL,' ','419','25972',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('531','1986 Sivas Place',NULL,' ','551','95775',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('532','1427 Tabuk Place',NULL,' ','101','31342',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('533','556 Asuncin Way',NULL,' ','339','35364',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('534','486 Ondo Parkway',NULL,' ','67','35202',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('535','635 Brest Manor',NULL,' ','75','40899',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('536','166 Jinchang Street',NULL,' ','165','86760',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('537','958 Sagamihara Lane',NULL,' ','287','88408',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('538','1817 Livorno Way',NULL,' ','100','79401',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('539','1332 Gaziantep Lane',NULL,' ','80','22813',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('540','949 Allende Lane',NULL,' ','24','67521',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('541','195 Ilorin Street',NULL,' ','363','49250',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('542','193 Bhusawal Place',NULL,' ','539','9750',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('543','43 Vilnius Manor',NULL,' ','42','79814',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('544','183 Haiphong Street',NULL,' ','46','69953',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('545','163 Augusta-Richmond County Loop',NULL,' ','561','33030',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('546','191 Jos Azueta Parkway',NULL,' ','436','13629',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('547','379 Lublin Parkway',NULL,' ','309','74568',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('548','1658 Cuman Loop',NULL,' ','396','51309',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('549','454 Qinhuangdao Drive',NULL,' ','68','25866',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('550','1715 Okayama Street',NULL,' ','485','55676',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('551','182 Nukualofa Drive',NULL,' ','275','15414',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('552','390 Wroclaw Way',NULL,' ','462','5753',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('553','1421 Quilmes Lane',NULL,' ','260','19151',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('554','947 Trshavn Place',NULL,' ','528','841',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('555','1764 Jalib al-Shuyukh Parkway',NULL,' ','459','77642',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('556','346 Cam Ranh Avenue',NULL,' ','599','39976',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('557','1407 Pachuca de Soto Place',NULL,' ','21','26284',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('558','904 Clarksville Drive',NULL,' ','193','52234',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('559','1917 Kumbakonam Parkway',NULL,' ','368','11892',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('560','1447 Imus Place',NULL,' ','426','12905',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('561','1497 Fengshan Drive',NULL,' ','112','63022',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('562','869 Shikarpur Way',NULL,' ','496','57380',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('563','1059 Yuncheng Avenue',NULL,' ','570','47498',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('564','505 Madiun Boulevard',NULL,' ','577','97271',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('565','1741 Hoshiarpur Boulevard',NULL,' ','79','22372',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('566','1229 Varanasi (Benares) Manor',NULL,' ','43','40195',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('567','1894 Boa Vista Way',NULL,' ','178','77464',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('568','1342 Sharja Way',NULL,' ','488','93655',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('569','1342 Abha Boulevard',NULL,' ','95','10714',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('570','415 Pune Avenue',NULL,' ','580','44274',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('571','1746 Faaa Way',NULL,' ','214','32515',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('572','539 Hami Way',NULL,' ','538','52196',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('573','1407 Surakarta Manor',NULL,' ','466','33224',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('574','502 Mandi Bahauddin Parkway',NULL,' ','55','15992',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('575','1052 Pathankot Avenue',NULL,' ','299','77397',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('576','1351 Sousse Lane',NULL,' ','341','37815',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('577','1501 Pangkal Pinang Avenue',NULL,' ','409','943',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('578','1405 Hagonoy Avenue',NULL,' ','133','86587',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('579','521 San Juan Bautista Tuxtepec Place',NULL,' ','598','95093',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('580','923 Tangail Boulevard',NULL,' ','10','33384',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('581','186 Skikda Lane',NULL,' ','131','89422',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('582','1568 Celaya Parkway',NULL,' ','168','34750',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('583','1489 Kakamigahara Lane',NULL,' ','526','98883',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('584','1819 Alessandria Loop',NULL,' ','103','53829',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('585','1208 Tama Loop',NULL,' ','344','73605',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('586','951 Springs Lane',NULL,' ','219','96115',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('587','760 Miyakonojo Drive',NULL,' ','246','64682',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('588','966 Asuncin Way',NULL,' ','212','62703',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('589','1584 Ljubertsy Lane',NULL,' ','494','22954',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('590','247 Jining Parkway',NULL,' ','54','53446',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('591','773 Dallas Manor',NULL,' ','424','12664',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('592','1923 Stara Zagora Lane',NULL,' ','546','95179',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('593','1402 Zanzibar Boulevard',NULL,' ','106','71102',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('594','1464 Kursk Parkway',NULL,' ','574','17381',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('595','1074 Sanaa Parkway',NULL,' ','311','22474',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('596','1759 Niznekamsk Avenue',NULL,' ','14','39414',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('597','32 Liaocheng Way',NULL,' ','248','1944',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('598','42 Fontana Avenue',NULL,' ','512','14684',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('599','1895 Zhezqazghan Drive',NULL,' ','177','36693',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('600','1837 Kaduna Parkway',NULL,' ','241','82580',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('601','844 Bucuresti Place',NULL,' ','242','36603',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('602','1101 Bucuresti Boulevard',NULL,' ','401','97661',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('603','1103 Quilmes Boulevard',NULL,' ','503','52137',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('604','1331 Usak Boulevard',NULL,' ','296','61960',' ','2006-02-15 04:45:30.000') +; +Insert into address + (address_id,address,address2,district,city_id,postal_code,phone,last_update) +Values + ('605','1325 Fukuyama Street',NULL,' ','537','27107',' ','2006-02-15 04:45:30.000') +; +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table actor +-- Start of script +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('1','PENELOPE','GUINESS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('2','NICK','WAHLBERG','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('3','ED','CHASE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('4','JENNIFER','DAVIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('5','JOHNNY','LOLLOBRIGIDA','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('6','BETTE','NICHOLSON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('7','GRACE','MOSTEL','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('8','MATTHEW','JOHANSSON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('9','JOE','SWANK','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('10','CHRISTIAN','GABLE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('11','ZERO','CAGE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('12','KARL','BERRY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('13','UMA','WOOD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('14','VIVIEN','BERGEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('15','CUBA','OLIVIER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('16','FRED','COSTNER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('17','HELEN','VOIGHT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('18','DAN','TORN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('19','BOB','FAWCETT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('20','LUCILLE','TRACY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('21','KIRSTEN','PALTROW','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('22','ELVIS','MARX','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('23','SANDRA','KILMER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('24','CAMERON','STREEP','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('25','KEVIN','BLOOM','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('26','RIP','CRAWFORD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('27','JULIA','MCQUEEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('28','WOODY','HOFFMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('29','ALEC','WAYNE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('30','SANDRA','PECK','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('31','SISSY','SOBIESKI','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('32','TIM','HACKMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('33','MILLA','PECK','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('34','AUDREY','OLIVIER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('35','JUDY','DEAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('36','BURT','DUKAKIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('37','VAL','BOLGER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('38','TOM','MCKELLEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('39','GOLDIE','BRODY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('40','JOHNNY','CAGE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('41','JODIE','DEGENERES','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('42','TOM','MIRANDA','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('43','KIRK','JOVOVICH','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('44','NICK','STALLONE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('45','REESE','KILMER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('46','PARKER','GOLDBERG','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('47','JULIA','BARRYMORE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('48','FRANCES','DAY-LEWIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('49','ANNE','CRONYN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('50','NATALIE','HOPKINS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('51','GARY','PHOENIX','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('52','CARMEN','HUNT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('53','MENA','TEMPLE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('54','PENELOPE','PINKETT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('55','FAY','KILMER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('56','DAN','HARRIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('57','JUDE','CRUISE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('58','CHRISTIAN','AKROYD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('59','DUSTIN','TAUTOU','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('60','HENRY','BERRY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('61','CHRISTIAN','NEESON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('62','JAYNE','NEESON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('63','CAMERON','WRAY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('64','RAY','JOHANSSON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('65','ANGELA','HUDSON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('66','MARY','TANDY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('67','JESSICA','BAILEY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('68','RIP','WINSLET','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('69','KENNETH','PALTROW','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('70','MICHELLE','MCCONAUGHEY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('71','ADAM','GRANT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('72','SEAN','WILLIAMS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('73','GARY','PENN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('74','MILLA','KEITEL','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('75','BURT','POSEY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('76','ANGELINA','ASTAIRE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('77','CARY','MCCONAUGHEY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('78','GROUCHO','SINATRA','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('79','MAE','HOFFMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('80','RALPH','CRUZ','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('81','SCARLETT','DAMON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('82','WOODY','JOLIE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('83','BEN','WILLIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('84','JAMES','PITT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('85','MINNIE','ZELLWEGER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('86','GREG','CHAPLIN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('87','SPENCER','PECK','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('88','KENNETH','PESCI','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('89','CHARLIZE','DENCH','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('90','SEAN','GUINESS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('91','CHRISTOPHER','BERRY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('92','KIRSTEN','AKROYD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('93','ELLEN','PRESLEY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('94','KENNETH','TORN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('95','DARYL','WAHLBERG','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('96','GENE','WILLIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('97','MEG','HAWKE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('98','CHRIS','BRIDGES','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('99','JIM','MOSTEL','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('100','SPENCER','DEPP','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('101','SUSAN','DAVIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('102','WALTER','TORN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('103','MATTHEW','LEIGH','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('104','PENELOPE','CRONYN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('105','SIDNEY','CROWE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('106','GROUCHO','DUNST','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('107','GINA','DEGENERES','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('108','WARREN','NOLTE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('109','SYLVESTER','DERN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('110','SUSAN','DAVIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('111','CAMERON','ZELLWEGER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('112','RUSSELL','BACALL','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('113','MORGAN','HOPKINS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('114','MORGAN','MCDORMAND','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('115','HARRISON','BALE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('116','DAN','STREEP','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('117','RENEE','TRACY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('118','CUBA','ALLEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('119','WARREN','JACKMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('120','PENELOPE','MONROE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('121','LIZA','BERGMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('122','SALMA','NOLTE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('123','JULIANNE','DENCH','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('124','SCARLETT','BENING','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('125','ALBERT','NOLTE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('126','FRANCES','TOMEI','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('127','KEVIN','GARLAND','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('128','CATE','MCQUEEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('129','DARYL','CRAWFORD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('130','GRETA','KEITEL','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('131','JANE','JACKMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('132','ADAM','HOPPER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('133','RICHARD','PENN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('134','GENE','HOPKINS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('135','RITA','REYNOLDS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('136','ED','MANSFIELD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('137','MORGAN','WILLIAMS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('138','LUCILLE','DEE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('139','EWAN','GOODING','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('140','WHOOPI','HURT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('141','CATE','HARRIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('142','JADA','RYDER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('143','RIVER','DEAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('144','ANGELA','WITHERSPOON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('145','KIM','ALLEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('146','ALBERT','JOHANSSON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('147','FAY','WINSLET','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('148','EMILY','DEE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('149','RUSSELL','TEMPLE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('150','JAYNE','NOLTE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('151','GEOFFREY','HESTON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('152','BEN','HARRIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('153','MINNIE','KILMER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('154','MERYL','GIBSON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('155','IAN','TANDY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('156','FAY','WOOD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('157','GRETA','MALDEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('158','VIVIEN','BASINGER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('159','LAURA','BRODY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('160','CHRIS','DEPP','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('161','HARVEY','HOPE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('162','OPRAH','KILMER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('163','CHRISTOPHER','WEST','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('164','HUMPHREY','WILLIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('165','AL','GARLAND','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('166','NICK','DEGENERES','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('167','LAURENCE','BULLOCK','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('168','WILL','WILSON','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('169','KENNETH','HOFFMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('170','MENA','HOPPER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('171','OLYMPIA','PFEIFFER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('172','GROUCHO','WILLIAMS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('173','ALAN','DREYFUSS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('174','MICHAEL','BENING','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('175','WILLIAM','HACKMAN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('176','JON','CHASE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('177','GENE','MCKELLEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('178','LISA','MONROE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('179','ED','GUINESS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('180','JEFF','SILVERSTONE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('181','MATTHEW','CARREY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('182','DEBBIE','AKROYD','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('183','RUSSELL','CLOSE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('184','HUMPHREY','GARLAND','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('185','MICHAEL','BOLGER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('186','JULIA','ZELLWEGER','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('187','RENEE','BALL','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('188','ROCK','DUKAKIS','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('189','CUBA','BIRCH','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('190','AUDREY','BAILEY','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('191','GREGORY','GOODING','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('192','JOHN','SUVARI','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('193','BURT','TEMPLE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('194','MERYL','ALLEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('195','JAYNE','SILVERSTONE','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('196','BELA','WALKEN','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('197','REESE','WEST','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('198','MARY','KEITEL','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('199','JULIA','FAWCETT','2006-02-15 04:34:33.000') +; +Insert into actor + (actor_id,first_name,last_name,last_update) +Values +('200','THORA','TEMPLE','2006-02-15 04:34:33.000') +; +-- End of Script +-- +-- +Insert into staff + (staff_id,first_name,last_name,address_id,picture,email,store_id,active,username,password,last_update) +Values + ('1','Mike','Hillyer','3',NULL,'Mike.Hillyer@sakilastaff.com','1','1','Mike','8cb2237d0679ca88db6464eac60da96345513964','2006-02-15 04:57:16.000') +; +Insert into staff + (staff_id,first_name,last_name,address_id,picture,email,store_id,active,username,password,last_update) +Values + ('2','Jon','Stephens','4',NULL,'Jon.Stephens@sakilastaff.com','2','1','Jon','8cb2237d0679ca88db6464eac60da96345513964','2006-02-15 04:57:16.000') +; +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table store +-- Start of script +Insert into store + (store_id,manager_staff_id,address_id,last_update) +Values +('1','1','1','2006-02-15 04:57:12.000') +; +Insert into store + (store_id,manager_staff_id,address_id,last_update) +Values +('2','2','2','2006-02-15 04:57:12.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table category +-- Start of script +Insert into category + (category_id,name,last_update) +Values +('1','Action','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('2','Animation','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('3','Children','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('4','Classics','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('5','Comedy','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('6','Documentary','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('7','Drama','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('8','Family','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('9','Foreign','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('10','Games','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('11','Horror','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('12','Music','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('13','New','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('14','Sci-Fi','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('15','Sports','2006-02-15 04:46:27.000') +; +Insert into category + (category_id,name,last_update) +Values +('16','Travel','2006-02-15 04:46:27.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table film +-- Start of script +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('1','ACADEMY DINOSAUR','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('2','ACE GOLDFINGER','A Astounding Epistle of a Database Administrator And a Explorer who must Find a Car in Ancient China','2006','1',NULL,'3','4.99','48','12.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('3','ADAPTATION HOLES','A Astounding Reflection of a Lumberjack And a Car who must Sink a Lumberjack in A Baloon Factory','2006','1',NULL,'7','2.99','50','18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('4','AFFAIR PREJUDICE','A Fanciful Documentary of a Frisbee And a Lumberjack who must Chase a Monkey in A Shark Tank','2006','1',NULL,'5','2.99','117','26.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('5','AFRICAN EGG','A Fast-Paced Documentary of a Pastry Chef And a Dentist who must Pursue a Forensic Psychologist in The Gulf of Mexico','2006','1',NULL,'6','2.99','130','22.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('6','AGENT TRUMAN','A Intrepid Panorama of a Robot And a Boy who must Escape a Sumo Wrestler in Ancient China','2006','1',NULL,'3','2.99','169','17.99','PG','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('7','AIRPLANE SIERRA','A Touching Saga of a Hunter And a Butler who must Discover a Butler in A Jet Boat','2006','1',NULL,'6','4.99','62','28.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('8','AIRPORT POLLOCK','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('9','ALABAMA DEVIL','A Thoughtful Panorama of a Database Administrator And a Mad Scientist who must Outgun a Mad Scientist in A Jet Boat','2006','1',NULL,'3','2.99','114','21.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('10','ALADDIN CALENDAR','A Action-Packed Tale of a Man And a Lumberjack who must Reach a Feminist in Ancient China','2006','1',NULL,'6','4.99','63','24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('11','ALAMO VIDEOTAPE','A Boring Epistle of a Butler And a Cat who must Fight a Pastry Chef in A MySQL Convention','2006','1',NULL,'6','0.99','126','16.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('13','ALI FOREVER','A Action-Packed Drama of a Dentist And a Crocodile who must Battle a Feminist in The Canadian Rockies','2006','1',NULL,'4','4.99','150','21.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('14','ALICE FANTASIA','A Emotional Drama of a A Shark And a Database Administrator who must Vanquish a Pioneer in Soviet Georgia','2006','1',NULL,'6','0.99','94','23.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('15','ALIEN CENTER','A Brilliant Drama of a Cat And a Mad Scientist who must Battle a Feminist in A MySQL Convention','2006','1',NULL,'5','2.99','46','10.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('16','ALLEY EVOLUTION','A Fast-Paced Drama of a Robot And a Composer who must Battle a Astronaut in New Orleans','2006','1',NULL,'6','2.99','180','23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('17','ALONE TRIP','A Fast-Paced Character Study of a Composer And a Dog who must Outgun a Boat in An Abandoned Fun House','2006','1',NULL,'3','0.99','82','14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('18','ALTER VICTORY','A Thoughtful Drama of a Composer And a Feminist who must Meet a Secret Agent in The Canadian Rockies','2006','1',NULL,'6','0.99','57','27.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('19','AMADEUS HOLY','A Emotional Display of a Pioneer And a Technical Writer who must Battle a Man in A Baloon','2006','1',NULL,'6','0.99','113','20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('21','AMERICAN CIRCUS','A Insightful Drama of a Girl And a Astronaut who must Face a Database Administrator in A Shark Tank','2006','1',NULL,'3','4.99','129','17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('22','AMISTAD MIDSUMMER','A Emotional Character Study of a Dentist And a Crocodile who must Meet a Sumo Wrestler in California','2006','1',NULL,'6','2.99','85','10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('24','ANALYZE HOOSIERS','A Thoughtful Display of a Explorer And a Pastry Chef who must Overcome a Feminist in The Sahara Desert','2006','1',NULL,'6','2.99','181','19.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('26','ANNIE IDENTITY','A Amazing Panorama of a Pastry Chef And a Boat who must Escape a Woman in An Abandoned Amusement Park','2006','1',NULL,'3','0.99','86','15.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('27','ANONYMOUS HUMAN','A Amazing Reflection of a Database Administrator And a Astronaut who must Outrace a Database Administrator in A Shark Tank','2006','1',NULL,'7','0.99','179','12.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('28','ANTHEM LUKE','A Touching Panorama of a Waitress And a Woman who must Outrace a Dog in An Abandoned Amusement Park','2006','1',NULL,'5','4.99','91','16.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('29','ANTITRUST TOMATOES','A Fateful Yarn of a Womanizer And a Feminist who must Succumb a Database Administrator in Ancient India','2006','1',NULL,'5','2.99','168','11.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('30','ANYTHING SAVANNAH','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('31','APACHE DIVINE','A Awe-Inspiring Reflection of a Pastry Chef And a Teacher who must Overcome a Sumo Wrestler in A U-Boat','2006','1',NULL,'5','4.99','92','16.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('32','APOCALYPSE FLAMINGOS','A Astounding Story of a Dog And a Squirrel who must Defeat a Woman in An Abandoned Amusement Park','2006','1',NULL,'6','4.99','119','11.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('33','APOLLO TEEN','A Action-Packed Reflection of a Crocodile And a Explorer who must Find a Sumo Wrestler in An Abandoned Mine Shaft','2006','1',NULL,'5','2.99','153','15.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('35','ARACHNOPHOBIA ROLLERCOASTER','A Action-Packed Reflection of a Pastry Chef And a Composer who must Discover a Mad Scientist in The First Manned Space Station','2006','1',NULL,'4','2.99','147','24.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('36','ARGONAUTS TOWN','A Emotional Epistle of a Forensic Psychologist And a Butler who must Challenge a Waitress in An Abandoned Mine Shaft','2006','1',NULL,'7','0.99','127','12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('37','ARIZONA BANG','A Brilliant Panorama of a Mad Scientist And a Mad Cow who must Meet a Pioneer in A Monastery','2006','1',NULL,'3','2.99','121','28.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('38','ARK RIDGEMONT','A Beautiful Yarn of a Pioneer And a Monkey who must Pursue a Explorer in The Sahara Desert','2006','1',NULL,'6','0.99','68','25.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('39','ARMAGEDDON LOST','A Fast-Paced Tale of a Boat And a Teacher who must Succumb a Composer in An Abandoned Mine Shaft','2006','1',NULL,'5','0.99','99','10.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('43','ATLANTIS CAUSE','A Thrilling Yarn of a Feminist And a Hunter who must Fight a Technical Writer in A Shark Tank','2006','1',NULL,'6','2.99','170','15.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('44','ATTACKS HATE','A Fast-Paced Panorama of a Technical Writer And a Mad Scientist who must Find a Feminist in An Abandoned Mine Shaft','2006','1',NULL,'5','4.99','113','21.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('46','AUTUMN CROW','A Beautiful Tale of a Dentist And a Mad Cow who must Battle a Moose in The Sahara Desert','2006','1',NULL,'3','4.99','108','13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('47','BABY HALL','A Boring Character Study of a A Shark And a Girl who must Outrace a Feminist in An Abandoned Mine Shaft','2006','1',NULL,'5','4.99','153','23.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('48','BACKLASH UNDEFEATED','A Stunning Character Study of a Mad Scientist And a Mad Cow who must Kill a Car in A Monastery','2006','1',NULL,'3','4.99','118','24.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('49','BADMAN DAWN','A Emotional Panorama of a Pioneer And a Composer who must Escape a Mad Scientist in A Jet Boat','2006','1',NULL,'6','2.99','162','22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('50','BAKED CLEOPATRA','A Stunning Drama of a Forensic Psychologist And a Husband who must Overcome a Waitress in A Monastery','2006','1',NULL,'3','2.99','182','20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('51','BALLOON HOMEWARD','A Insightful Panorama of a Forensic Psychologist And a Mad Cow who must Build a Mad Scientist in The First Manned Space Station','2006','1',NULL,'5','2.99','75','10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('53','BANG KWAI','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('54','BANGER PINOCCHIO','A Awe-Inspiring Drama of a Car And a Pastry Chef who must Chase a Crocodile in The First Manned Space Station','2006','1',NULL,'5','0.99','113','15.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('55','BARBARELLA STREETCAR','A Awe-Inspiring Story of a Feminist And a Cat who must Conquer a Dog in A Monastery','2006','1',NULL,'6','2.99','65','27.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('56','BAREFOOT MANCHURIAN','A Intrepid Story of a Cat And a Student who must Vanquish a Girl in An Abandoned Amusement Park','2006','1',NULL,'6','2.99','129','15.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('57','BASIC EASY','A Stunning Epistle of a Man And a Husband who must Reach a Mad Scientist in A Jet Boat','2006','1',NULL,'4','2.99','90','18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('58','BEACH HEARTBREAKERS','A Fateful Display of a Womanizer And a Mad Scientist who must Outgun a A Shark in Soviet Georgia','2006','1',NULL,'6','2.99','122','16.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('59','BEAR GRACELAND','A Astounding Saga of a Dog And a Boy who must Kill a Teacher in The First Manned Space Station','2006','1',NULL,'4','2.99','160','20.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('60','BEAST HUNCHBACK','A Awe-Inspiring Epistle of a Student And a Squirrel who must Defeat a Boy in Ancient China','2006','1',NULL,'3','4.99','89','22.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('61','BEAUTY GREASE','A Fast-Paced Display of a Composer And a Moose who must Sink a Robot in An Abandoned Mine Shaft','2006','1',NULL,'5','4.99','175','28.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('62','BED HIGHBALL','A Astounding Panorama of a Lumberjack And a Dog who must Redeem a Woman in An Abandoned Fun House','2006','1',NULL,'5','2.99','106','23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('63','BEDAZZLED MARRIED','A Astounding Character Study of a Madman And a Robot who must Meet a Mad Scientist in An Abandoned Fun House','2006','1',NULL,'6','0.99','73','21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('64','BEETHOVEN EXORCIST','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('66','BENEATH RUSH','A Astounding Panorama of a Man And a Monkey who must Discover a Man in The First Manned Space Station','2006','1',NULL,'6','0.99','53','27.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('67','BERETS AGENT','A Taut Saga of a Crocodile And a Boy who must Overcome a Technical Writer in Ancient China','2006','1',NULL,'5','2.99','77','24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('68','BETRAYED REAR','A Emotional Character Study of a Boat And a Pioneer who must Find a Explorer in A Shark Tank','2006','1',NULL,'5','4.99','122','26.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('69','BEVERLY OUTLAW','A Fanciful Documentary of a Womanizer And a Boat who must Defeat a Madman in The First Manned Space Station','2006','1',NULL,'3','2.99','85','21.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('70','BIKINI BORROWERS','A Astounding Drama of a Astronaut And a Cat who must Discover a Woman in The First Manned Space Station','2006','1',NULL,'7','4.99','142','26.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('71','BILKO ANONYMOUS','A Emotional Reflection of a Teacher And a Man who must Meet a Cat in The First Manned Space Station','2006','1',NULL,'3','4.99','100','25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('72','BILL OTHERS','A Stunning Saga of a Mad Scientist And a Forensic Psychologist who must Challenge a Squirrel in A MySQL Convention','2006','1',NULL,'6','2.99','93','12.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('75','BIRD INDEPENDENCE','A Thrilling Documentary of a Car And a Student who must Sink a Hunter in The Canadian Rockies','2006','1',NULL,'6','4.99','163','14.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('76','BIRDCAGE CASPER','A Fast-Paced Saga of a Frisbee And a Astronaut who must Overcome a Feminist in Ancient India','2006','1',NULL,'4','0.99','103','23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('78','BLACKOUT PRIVATE','A Intrepid Yarn of a Pastry Chef And a Mad Scientist who must Challenge a Secret Agent in Ancient Japan','2006','1',NULL,'7','2.99','85','12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('79','BLADE POLISH','A Thoughtful Character Study of a Frisbee And a Pastry Chef who must Fight a Dentist in The First Manned Space Station','2006','1',NULL,'5','0.99','114','10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('81','BLINDNESS GUN','A Touching Drama of a Robot And a Dentist who must Meet a Hunter in A Jet Boat','2006','1',NULL,'6','4.99','103','29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('82','BLOOD ARGONAUTS','A Boring Drama of a Explorer And a Man who must Kill a Lumberjack in A Manhattan Penthouse','2006','1',NULL,'3','0.99','71','13.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('83','BLUES INSTINCT','A Insightful Documentary of a Boat And a Composer who must Meet a Forensic Psychologist in An Abandoned Fun House','2006','1',NULL,'5','2.99','50','18.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('84','BOILED DARES','A Awe-Inspiring Story of a Waitress And a Dog who must Discover a Dentist in Ancient Japan','2006','1',NULL,'7','4.99','102','13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('85','BONNIE HOLOCAUST','A Fast-Paced Story of a Crocodile And a Robot who must Find a Moose in Ancient Japan','2006','1',NULL,'4','0.99','63','29.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('86','BOOGIE AMELIE','A Lacklusture Character Study of a Husband And a Sumo Wrestler who must Succumb a Technical Writer in The Gulf of Mexico','2006','1',NULL,'6','4.99','121','11.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('87','BOONDOCK BALLROOM','A Fateful Panorama of a Crocodile And a Boy who must Defeat a Monkey in The Gulf of Mexico','2006','1',NULL,'7','0.99','76','14.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('89','BORROWERS BEDAZZLED','A Brilliant Epistle of a Teacher And a Sumo Wrestler who must Defeat a Man in An Abandoned Fun House','2006','1',NULL,'7','0.99','63','22.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('91','BOUND CHEAPER','A Thrilling Panorama of a Database Administrator And a Astronaut who must Challenge a Lumberjack in A Baloon','2006','1',NULL,'5','0.99','98','17.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('96','BREAKING HOME','A Beautiful Display of a Secret Agent And a Monkey who must Battle a Sumo Wrestler in An Abandoned Mine Shaft','2006','1',NULL,'4','2.99','169','21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('97','BRIDE INTRIGUE','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('98','BRIGHT ENCOUNTERS','A Fateful Yarn of a Lumberjack And a Feminist who must Conquer a Student in A Jet Boat','2006','1',NULL,'4','4.99','73','12.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('99','BRINGING HYSTERICAL','A Fateful Saga of a A Shark And a Technical Writer who must Find a Woman in A Jet Boat','2006','1',NULL,'7','2.99','136','14.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('100','BROOKLYN DESERT','A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station','2006','1',NULL,'7','4.99','161','21.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('101','BROTHERHOOD BLANKET','A Fateful Character Study of a Butler And a Technical Writer who must Sink a Astronaut in Ancient Japan','2006','1',NULL,'3','0.99','73','26.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('102','BUBBLE GROSSE','A Awe-Inspiring Panorama of a Crocodile And a Moose who must Confront a Girl in A Baloon','2006','1',NULL,'4','4.99','60','20.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('103','BUCKET BROTHERHOOD','A Amazing Display of a Girl And a Womanizer who must Succumb a Lumberjack in A Baloon Factory','2006','1',NULL,'7','4.99','133','27.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('104','BUGSY SONG','A Awe-Inspiring Character Study of a Secret Agent And a Boat who must Find a Squirrel in The First Manned Space Station','2006','1',NULL,'4','2.99','119','17.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('105','BULL SHAWSHANK','A Fanciful Drama of a Moose And a Squirrel who must Conquer a Pioneer in The Canadian Rockies','2006','1',NULL,'6','0.99','125','21.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('106','BULWORTH COMMANDMENTS','A Amazing Display of a Mad Cow And a Pioneer who must Redeem a Sumo Wrestler in The Outback','2006','1',NULL,'4','2.99','61','14.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('107','BUNCH MINDS','A Emotional Story of a Feminist And a Feminist who must Escape a Pastry Chef in A MySQL Convention','2006','1',NULL,'4','2.99','63','13.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('108','BUTCH PANTHER','A Lacklusture Yarn of a Feminist And a Database Administrator who must Face a Hunter in New Orleans','2006','1',NULL,'6','0.99','67','19.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('109','BUTTERFLY CHOCOLAT','A Fateful Story of a Girl And a Composer who must Conquer a Husband in A Shark Tank','2006','1',NULL,'3','0.99','89','17.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('110','CABIN FLASH','A Stunning Epistle of a Boat And a Man who must Challenge a A Shark in A Baloon Factory','2006','1',NULL,'4','0.99','53','25.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('111','CADDYSHACK JEDI','A Awe-Inspiring Epistle of a Woman And a Madman who must Fight a Robot in Soviet Georgia','2006','1',NULL,'3','0.99','52','17.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('113','CALIFORNIA BIRDS','A Thrilling Yarn of a Database Administrator And a Robot who must Battle a Database Administrator in Ancient India','2006','1',NULL,'4','4.99','75','19.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('114','CAMELOT VACATION','A Touching Character Study of a Woman And a Waitress who must Battle a Pastry Chef in A MySQL Convention','2006','1',NULL,'3','0.99','61','26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('115','CAMPUS REMEMBER','A Astounding Drama of a Crocodile And a Mad Cow who must Build a Robot in A Jet Boat','2006','1',NULL,'5','2.99','167','27.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('116','CANDIDATE PERDITION','A Brilliant Epistle of a Composer And a Database Administrator who must Vanquish a Mad Scientist in The First Manned Space Station','2006','1',NULL,'4','2.99','70','10.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('117','CANDLES GRAPES','A Fanciful Character Study of a Monkey And a Explorer who must Build a Astronaut in An Abandoned Fun House','2006','1',NULL,'6','4.99','135','15.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('118','CANYON STOCK','A Thoughtful Reflection of a Waitress And a Feminist who must Escape a Squirrel in A Manhattan Penthouse','2006','1',NULL,'7','0.99','85','26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('119','CAPER MOTIONS','A Fateful Saga of a Moose And a Car who must Pursue a Woman in A MySQL Convention','2006','1',NULL,'6','0.99','176','22.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('120','CARIBBEAN LIBERTY','A Fanciful Tale of a Pioneer And a Technical Writer who must Outgun a Pioneer in A Shark Tank','2006','1',NULL,'3','4.99','92','16.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('121','CAROL TEXAS','A Astounding Character Study of a Composer And a Student who must Overcome a Composer in A Monastery','2006','1',NULL,'4','2.99','151','15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('122','CARRIE BUNCH','A Amazing Epistle of a Student And a Astronaut who must Discover a Frisbee in The Canadian Rockies','2006','1',NULL,'7','0.99','114','11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('123','CASABLANCA SUPER','A Amazing Panorama of a Crocodile And a Forensic Psychologist who must Pursue a Secret Agent in The First Manned Space Station','2006','1',NULL,'6','4.99','85','22.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('124','CASPER DRAGONFLY','A Intrepid Documentary of a Boat And a Crocodile who must Chase a Robot in The Sahara Desert','2006','1',NULL,'3','4.99','163','16.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('125','CASSIDY WYOMING','A Intrepid Drama of a Frisbee And a Hunter who must Kill a Secret Agent in New Orleans','2006','1',NULL,'5','2.99','61','19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('126','CASUALTIES ENCINO','A Insightful Yarn of a A Shark And a Pastry Chef who must Face a Boy in A Monastery','2006','1',NULL,'3','4.99','179','16.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('127','CAT CONEHEADS','A Fast-Paced Panorama of a Girl And a A Shark who must Confront a Boy in Ancient India','2006','1',NULL,'5','4.99','112','14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('129','CAUSE DATE','A Taut Tale of a Explorer And a Pastry Chef who must Conquer a Hunter in A MySQL Convention','2006','1',NULL,'3','2.99','179','16.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('130','CELEBRITY HORN','A Amazing Documentary of a Secret Agent And a Astronaut who must Vanquish a Hunter in A Shark Tank','2006','1',NULL,'7','0.99','110','24.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('131','CENTER DINOSAUR','A Beautiful Character Study of a Sumo Wrestler And a Dentist who must Find a Dog in California','2006','1',NULL,'5','4.99','152','12.99','PG','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('134','CHAMPION FLATLINERS','A Amazing Story of a Mad Cow And a Dog who must Kill a Husband in A Monastery','2006','1',NULL,'4','4.99','51','21.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('135','CHANCE RESURRECTION','A Astounding Story of a Forensic Psychologist And a Forensic Psychologist who must Overcome a Moose in Ancient China','2006','1',NULL,'3','2.99','70','22.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('136','CHAPLIN LICENSE','A Boring Drama of a Dog And a Forensic Psychologist who must Outrace a Explorer in Ancient India','2006','1',NULL,'7','2.99','146','26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('137','CHARADE DUFFEL','A Action-Packed Display of a Man And a Waitress who must Build a Dog in A MySQL Convention','2006','1',NULL,'3','2.99','66','21.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('138','CHARIOTS CONSPIRACY','A Unbelieveable Epistle of a Robot And a Husband who must Chase a Robot in The First Manned Space Station','2006','1',NULL,'5','2.99','71','29.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('139','CHASING FIGHT','A Astounding Saga of a Technical Writer And a Butler who must Battle a Butler in A Shark Tank','2006','1',NULL,'7','4.99','114','21.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('140','CHEAPER CLYDE','A Emotional Character Study of a Pioneer And a Girl who must Discover a Dog in Ancient Japan','2006','1',NULL,'6','0.99','87','23.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('143','CHILL LUCK','A Lacklusture Epistle of a Boat And a Technical Writer who must Fight a A Shark in The Canadian Rockies','2006','1',NULL,'6','0.99','142','17.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('144','CHINATOWN GLADIATOR','A Brilliant Panorama of a Technical Writer And a Lumberjack who must Escape a Butler in Ancient India','2006','1',NULL,'7','4.99','61','24.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('145','CHISUM BEHAVIOR','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('146','CHITTY LOCK','A Boring Epistle of a Boat And a Database Administrator who must Kill a Sumo Wrestler in The First Manned Space Station','2006','1',NULL,'6','2.99','107','24.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('147','CHOCOLAT HARRY','A Action-Packed Epistle of a Dentist And a Moose who must Meet a Mad Cow in Ancient Japan','2006','1',NULL,'5','0.99','101','16.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('148','CHOCOLATE DUCK','A Unbelieveable Story of a Mad Scientist And a Technical Writer who must Discover a Composer in Ancient China','2006','1',NULL,'3','2.99','132','13.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('149','CHRISTMAS MOONSHINE','A Action-Packed Epistle of a Feminist And a Astronaut who must Conquer a Boat in A Manhattan Penthouse','2006','1',NULL,'7','0.99','150','21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('150','CIDER DESIRE','A Stunning Character Study of a Composer And a Mad Cow who must Succumb a Cat in Soviet Georgia','2006','1',NULL,'7','2.99','101','9.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('152','CIRCUS YOUTH','A Thoughtful Drama of a Pastry Chef And a Dentist who must Pursue a Girl in A Baloon','2006','1',NULL,'5','2.99','90','13.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('153','CITIZEN SHREK','A Fanciful Character Study of a Technical Writer And a Husband who must Redeem a Robot in The Outback','2006','1',NULL,'7','0.99','165','18.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('155','CLEOPATRA DEVIL','A Fanciful Documentary of a Crocodile And a Technical Writer who must Fight a A Shark in A Baloon','2006','1',NULL,'6','0.99','150','26.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('156','CLERKS ANGELS','A Thrilling Display of a Sumo Wrestler And a Girl who must Confront a Man in A Baloon','2006','1',NULL,'3','4.99','164','15.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('157','CLOCKWORK PARADISE','A Insightful Documentary of a Technical Writer And a Feminist who must Challenge a Cat in A Baloon','2006','1',NULL,'7','0.99','143','29.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('160','CLUB GRAFFITI','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('161','CLUE GRAIL','A Taut Tale of a Butler And a Mad Scientist who must Build a Crocodile in Ancient China','2006','1',NULL,'6','4.99','70','27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('162','CLUELESS BUCKET','A Taut Tale of a Car And a Pioneer who must Conquer a Sumo Wrestler in An Abandoned Fun House','2006','1',NULL,'4','2.99','95','13.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('163','CLYDE THEORY','A Beautiful Yarn of a Astronaut And a Frisbee who must Overcome a Explorer in A Jet Boat','2006','1',NULL,'4','0.99','139','29.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('164','COAST RAINBOW','A Astounding Documentary of a Mad Cow And a Pioneer who must Challenge a Butler in The Sahara Desert','2006','1',NULL,'4','0.99','55','20.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('165','COLDBLOODED DARLING','A Brilliant Panorama of a Dentist And a Moose who must Find a Student in The Gulf of Mexico','2006','1',NULL,'7','4.99','70','27.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('166','COLOR PHILADELPHIA','A Thoughtful Panorama of a Car And a Crocodile who must Sink a Monkey in The Sahara Desert','2006','1',NULL,'6','2.99','149','19.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('167','COMA HEAD','A Awe-Inspiring Drama of a Boy And a Frisbee who must Escape a Pastry Chef in California','2006','1',NULL,'6','4.99','109','10.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('168','COMANCHEROS ENEMY','A Boring Saga of a Lumberjack And a Monkey who must Find a Monkey in The Gulf of Mexico','2006','1',NULL,'5','0.99','67','23.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('169','COMFORTS RUSH','A Unbelieveable Panorama of a Pioneer And a Husband who must Meet a Mad Cow in An Abandoned Mine Shaft','2006','1',NULL,'3','2.99','76','19.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('170','COMMAND DARLING','A Awe-Inspiring Tale of a Forensic Psychologist And a Woman who must Challenge a Database Administrator in Ancient Japan','2006','1',NULL,'5','4.99','120','28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('171','COMMANDMENTS EXPRESS','A Fanciful Saga of a Student And a Mad Scientist who must Battle a Hunter in An Abandoned Mine Shaft','2006','1',NULL,'6','4.99','59','13.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('173','CONFESSIONS MAGUIRE','A Insightful Story of a Car And a Boy who must Battle a Technical Writer in A Baloon','2006','1',NULL,'7','4.99','65','25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('175','CONFUSED CANDLES','A Stunning Epistle of a Cat And a Forensic Psychologist who must Confront a Pioneer in A Baloon','2006','1',NULL,'3','2.99','122','27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('176','CONGENIALITY QUEST','A Touching Documentary of a Cat And a Pastry Chef who must Find a Lumberjack in A Baloon','2006','1',NULL,'6','0.99','87','21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('177','CONNECTICUT TRAMP','A Unbelieveable Drama of a Crocodile And a Mad Cow who must Reach a Dentist in A Shark Tank','2006','1',NULL,'4','4.99','172','20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('178','CONNECTION MICROCOSMOS','A Fateful Documentary of a Crocodile And a Husband who must Face a Husband in The First Manned Space Station','2006','1',NULL,'6','0.99','115','25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('179','CONQUERER NUTS','A Taut Drama of a Mad Scientist And a Man who must Escape a Pioneer in An Abandoned Mine Shaft','2006','1',NULL,'4','4.99','173','14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('180','CONSPIRACY SPIRIT','A Awe-Inspiring Story of a Student And a Frisbee who must Conquer a Crocodile in An Abandoned Mine Shaft','2006','1',NULL,'4','2.99','184','27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('181','CONTACT ANONYMOUS','A Insightful Display of a A Shark And a Monkey who must Face a Database Administrator in Ancient India','2006','1',NULL,'7','2.99','166','10.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('183','CONVERSATION DOWNHILL','A Taut Character Study of a Husband And a Waitress who must Sink a Squirrel in A MySQL Convention','2006','1',NULL,'4','4.99','112','14.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('184','CORE SUIT','A Unbelieveable Tale of a Car And a Explorer who must Confront a Boat in A Manhattan Penthouse','2006','1',NULL,'3','2.99','92','24.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('186','CRAFT OUTFIELD','A Lacklusture Display of a Explorer And a Hunter who must Succumb a Database Administrator in A Baloon Factory','2006','1',NULL,'6','0.99','64','17.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('187','CRANES RESERVOIR','A Fanciful Documentary of a Teacher And a Dog who must Outgun a Forensic Psychologist in A Baloon Factory','2006','1',NULL,'5','2.99','57','12.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('188','CRAZY HOME','A Fanciful Panorama of a Boy And a Woman who must Vanquish a Database Administrator in The Outback','2006','1',NULL,'7','2.99','136','24.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('190','CREEPERS KANE','A Awe-Inspiring Reflection of a Squirrel And a Boat who must Outrace a Car in A Jet Boat','2006','1',NULL,'5','4.99','172','23.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('191','CROOKED FROGMEN','A Unbelieveable Drama of a Hunter And a Database Administrator who must Battle a Crocodile in An Abandoned Amusement Park','2006','1',NULL,'6','0.99','143','27.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('193','CROSSROADS CASUALTIES','A Intrepid Documentary of a Sumo Wrestler And a Astronaut who must Battle a Composer in The Outback','2006','1',NULL,'5','2.99','153','20.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('194','CROW GREASE','A Awe-Inspiring Documentary of a Woman And a Husband who must Sink a Database Administrator in The First Manned Space Station','2006','1',NULL,'6','0.99','104','22.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('195','CROWDS TELEMARK','A Intrepid Documentary of a Astronaut And a Forensic Psychologist who must Find a Frisbee in An Abandoned Fun House','2006','1',NULL,'3','4.99','112','16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('197','CRUSADE HONEY','A Fast-Paced Reflection of a Explorer And a Butler who must Battle a Madman in An Abandoned Amusement Park','2006','1',NULL,'4','2.99','112','27.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('198','CRYSTAL BREAKING','A Fast-Paced Character Study of a Feminist And a Explorer who must Face a Pastry Chef in Ancient Japan','2006','1',NULL,'6','2.99','184','22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('199','CUPBOARD SINNERS','A Emotional Reflection of a Frisbee And a Boat who must Reach a Pastry Chef in An Abandoned Amusement Park','2006','1',NULL,'4','2.99','56','29.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('200','CURTAIN VIDEOTAPE','A Boring Reflection of a Dentist And a Mad Cow who must Chase a Secret Agent in A Shark Tank','2006','1',NULL,'7','0.99','133','27.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('201','CYCLONE FAMILY','A Lacklusture Drama of a Student And a Monkey who must Sink a Womanizer in A MySQL Convention','2006','1',NULL,'7','2.99','176','18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('202','DADDY PITTSBURGH','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('203','DAISY MENAGERIE','A Fast-Paced Saga of a Pastry Chef And a Monkey who must Sink a Composer in Ancient India','2006','1',NULL,'5','4.99','84','9.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('204','DALMATIONS SWEDEN','A Emotional Epistle of a Moose And a Hunter who must Overcome a Robot in A Manhattan Penthouse','2006','1',NULL,'4','0.99','106','25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('205','DANCES NONE','A Insightful Reflection of a A Shark And a Dog who must Kill a Butler in An Abandoned Amusement Park','2006','1',NULL,'3','0.99','58','22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('206','DANCING FEVER','A Stunning Story of a Explorer And a Forensic Psychologist who must Face a Crocodile in A Shark Tank','2006','1',NULL,'6','0.99','144','25.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('209','DARKNESS WAR','A Touching Documentary of a Husband And a Hunter who must Escape a Boy in The Sahara Desert','2006','1',NULL,'6','2.99','99','24.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('211','DARLING BREAKING','A Brilliant Documentary of a Astronaut And a Squirrel who must Succumb a Student in The Gulf of Mexico','2006','1',NULL,'7','4.99','165','20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('212','DARN FORRESTER','A Fateful Story of a A Shark And a Explorer who must Succumb a Technical Writer in A Jet Boat','2006','1',NULL,'7','4.99','185','14.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('213','DATE SPEED','A Touching Saga of a Composer And a Moose who must Discover a Dentist in A MySQL Convention','2006','1',NULL,'4','0.99','104','19.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('214','DAUGHTER MADIGAN','A Beautiful Tale of a Hunter And a Mad Scientist who must Confront a Squirrel in The First Manned Space Station','2006','1',NULL,'3','4.99','59','13.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('216','DAY UNFAITHFUL','A Stunning Documentary of a Composer And a Mad Scientist who must Find a Technical Writer in A U-Boat','2006','1',NULL,'3','4.99','113','16.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('217','DAZED PUNK','A Action-Packed Story of a Pioneer And a Technical Writer who must Discover a Forensic Psychologist in An Abandoned Amusement Park','2006','1',NULL,'6','4.99','120','20.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('220','DEER VIRGINIAN','A Thoughtful Story of a Mad Cow And a Womanizer who must Overcome a Mad Scientist in Soviet Georgia','2006','1',NULL,'7','2.99','106','13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('221','DELIVERANCE MULHOLLAND','A Astounding Saga of a Monkey And a Moose who must Conquer a Butler in A Shark Tank','2006','1',NULL,'4','0.99','100','9.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('223','DESIRE ALIEN','A Fast-Paced Tale of a Dog And a Forensic Psychologist who must Meet a Astronaut in The First Manned Space Station','2006','1',NULL,'7','2.99','76','24.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('224','DESPERATE TRAINSPOTTING','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('225','DESTINATION JERK','A Beautiful Yarn of a Teacher And a Cat who must Build a Car in A U-Boat','2006','1',NULL,'3','0.99','76','19.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('227','DETAILS PACKER','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('229','DEVIL DESIRE','A Beautiful Reflection of a Monkey And a Dentist who must Face a Database Administrator in Ancient Japan','2006','1',NULL,'6','4.99','87','12.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('230','DIARY PANIC','A Thoughtful Character Study of a Frisbee And a Mad Cow who must Outgun a Man in Ancient India','2006','1',NULL,'7','2.99','107','20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('231','DINOSAUR SECRETARY','A Action-Packed Drama of a Feminist And a Girl who must Reach a Robot in The Canadian Rockies','2006','1',NULL,'7','2.99','63','27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('232','DIRTY ACE','A Action-Packed Character Study of a Forensic Psychologist And a Girl who must Build a Dentist in The Outback','2006','1',NULL,'7','2.99','147','29.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('233','DISCIPLE MOTHER','A Touching Reflection of a Mad Scientist And a Boat who must Face a Moose in A Shark Tank','2006','1',NULL,'3','0.99','141','17.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('234','DISTURBING SCARFACE','A Lacklusture Display of a Crocodile And a Butler who must Overcome a Monkey in A U-Boat','2006','1',NULL,'6','2.99','94','27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('235','DIVIDE MONSTER','A Intrepid Saga of a Man And a Forensic Psychologist who must Reach a Squirrel in A Monastery','2006','1',NULL,'6','2.99','68','13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('236','DIVINE RESURRECTION','A Boring Character Study of a Man And a Womanizer who must Succumb a Teacher in An Abandoned Amusement Park','2006','1',NULL,'4','2.99','100','19.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('238','DOCTOR GRAIL','A Insightful Drama of a Womanizer And a Waitress who must Reach a Forensic Psychologist in The Outback','2006','1',NULL,'4','2.99','57','29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('239','DOGMA FAMILY','A Brilliant Character Study of a Database Administrator And a Monkey who must Succumb a Astronaut in New Orleans','2006','1',NULL,'5','4.99','122','16.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('241','DONNIE ALLEY','A Awe-Inspiring Tale of a Butler And a Frisbee who must Vanquish a Teacher in Ancient Japan','2006','1',NULL,'4','0.99','125','20.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('242','DOOM DANCING','A Astounding Panorama of a Car And a Mad Scientist who must Battle a Lumberjack in A MySQL Convention','2006','1',NULL,'4','0.99','68','13.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('243','DOORS PRESIDENT','A Awe-Inspiring Display of a Squirrel And a Woman who must Overcome a Boy in The Gulf of Mexico','2006','1',NULL,'3','4.99','49','22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('244','DORADO NOTTING','A Action-Packed Tale of a Sumo Wrestler And a A Shark who must Meet a Frisbee in California','2006','1',NULL,'5','4.99','139','26.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('245','DOUBLE WRATH','A Thoughtful Yarn of a Womanizer And a Dog who must Challenge a Madman in The Gulf of Mexico','2006','1',NULL,'4','0.99','177','28.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('246','DOUBTFIRE LABYRINTH','A Intrepid Panorama of a Butler And a Composer who must Meet a Mad Cow in The Sahara Desert','2006','1',NULL,'5','4.99','154','16.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('247','DOWNHILL ENOUGH','A Emotional Tale of a Pastry Chef And a Forensic Psychologist who must Succumb a Monkey in The Sahara Desert','2006','1',NULL,'3','0.99','47','19.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('248','DOZEN LION','A Taut Drama of a Cat And a Girl who must Defeat a Frisbee in The Canadian Rockies','2006','1',NULL,'6','4.99','177','20.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('249','DRACULA CRYSTAL','A Thrilling Reflection of a Feminist And a Cat who must Find a Frisbee in An Abandoned Fun House','2006','1',NULL,'7','0.99','176','26.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('252','DREAM PICKUP','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('253','DRIFTER COMMANDMENTS','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('254','DRIVER ANNIE','A Lacklusture Character Study of a Butler And a Car who must Redeem a Boat in An Abandoned Fun House','2006','1',NULL,'4','2.99','159','11.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('255','DRIVING POLISH','A Action-Packed Yarn of a Feminist And a Technical Writer who must Sink a Boat in An Abandoned Mine Shaft','2006','1',NULL,'6','4.99','175','21.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('257','DRUMLINE CYCLONE','A Insightful Panorama of a Monkey And a Sumo Wrestler who must Outrace a Mad Scientist in The Canadian Rockies','2006','1',NULL,'3','0.99','110','14.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('258','DRUMS DYNAMITE','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('259','DUCK RACER','A Lacklusture Yarn of a Teacher And a Squirrel who must Overcome a Dog in A Shark Tank','2006','1',NULL,'4','2.99','116','15.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('260','DUDE BLINDNESS','A Stunning Reflection of a Husband And a Lumberjack who must Face a Frisbee in An Abandoned Fun House','2006','1',NULL,'3','4.99','132','9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('261','DUFFEL APOCALYPSE','A Emotional Display of a Boat And a Explorer who must Challenge a Madman in A MySQL Convention','2006','1',NULL,'5','0.99','171','13.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('262','DUMBO LUST','A Touching Display of a Feminist And a Dentist who must Conquer a Husband in The Gulf of Mexico','2006','1',NULL,'5','0.99','119','17.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('263','DURHAM PANKY','A Brilliant Panorama of a Girl And a Boy who must Face a Mad Scientist in An Abandoned Mine Shaft','2006','1',NULL,'6','4.99','154','14.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('266','DYNAMITE TARZAN','A Intrepid Documentary of a Forensic Psychologist And a Mad Scientist who must Face a Explorer in A U-Boat','2006','1',NULL,'4','0.99','141','27.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('267','EAGLES PANKY','A Thoughtful Story of a Car And a Boy who must Find a A Shark in The Sahara Desert','2006','1',NULL,'4','4.99','140','14.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('268','EARLY HOME','A Amazing Panorama of a Mad Scientist And a Husband who must Meet a Woman in The Outback','2006','1',NULL,'6','4.99','96','27.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('269','EARRING INSTINCT','A Stunning Character Study of a Dentist And a Mad Cow who must Find a Teacher in Nigeria','2006','1',NULL,'3','0.99','98','22.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('271','EASY GLADIATOR','A Fateful Story of a Monkey And a Girl who must Overcome a Pastry Chef in Ancient India','2006','1',NULL,'5','4.99','148','12.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('272','EDGE KISSING','A Beautiful Yarn of a Composer And a Mad Cow who must Redeem a Mad Scientist in A Jet Boat','2006','1',NULL,'5','4.99','153','9.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('273','EFFECT GLADIATOR','A Beautiful Display of a Pastry Chef And a Pastry Chef who must Outgun a Forensic Psychologist in A Manhattan Penthouse','2006','1',NULL,'6','0.99','107','14.99','PG','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('274','EGG IGBY','A Beautiful Documentary of a Boat And a Sumo Wrestler who must Succumb a Database Administrator in The First Manned Space Station','2006','1',NULL,'4','2.99','67','20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('275','EGYPT TENENBAUMS','A Intrepid Story of a Madman And a Secret Agent who must Outrace a Astronaut in An Abandoned Amusement Park','2006','1',NULL,'3','0.99','85','11.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('276','ELEMENT FREDDY','A Awe-Inspiring Reflection of a Waitress And a Squirrel who must Kill a Mad Cow in A Jet Boat','2006','1',NULL,'6','4.99','115','28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('277','ELEPHANT TROJAN','A Beautiful Panorama of a Lumberjack And a Forensic Psychologist who must Overcome a Frisbee in A Baloon','2006','1',NULL,'4','4.99','126','24.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('278','ELF MURDER','A Action-Packed Story of a Frisbee And a Woman who must Reach a Girl in An Abandoned Mine Shaft','2006','1',NULL,'4','4.99','155','19.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('279','ELIZABETH SHANE','A Lacklusture Display of a Womanizer And a Dog who must Face a Sumo Wrestler in Ancient Japan','2006','1',NULL,'7','4.99','152','11.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('280','EMPIRE MALKOVICH','A Amazing Story of a Feminist And a Cat who must Face a Car in An Abandoned Fun House','2006','1',NULL,'7','0.99','177','26.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('282','ENCOUNTERS CURTAIN','A Insightful Epistle of a Pastry Chef And a Womanizer who must Build a Boat in New Orleans','2006','1',NULL,'5','0.99','92','20.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('284','ENEMY ODDS','A Fanciful Panorama of a Mad Scientist And a Woman who must Pursue a Astronaut in Ancient India','2006','1',NULL,'5','4.99','77','23.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('285','ENGLISH BULWORTH','A Intrepid Epistle of a Pastry Chef And a Pastry Chef who must Pursue a Crocodile in Ancient China','2006','1',NULL,'3','0.99','51','18.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('286','ENOUGH RAGING','A Astounding Character Study of a Boat And a Secret Agent who must Find a Mad Cow in The Sahara Desert','2006','1',NULL,'7','2.99','158','16.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('287','ENTRAPMENT SATISFACTION','A Thoughtful Panorama of a Hunter And a Teacher who must Reach a Mad Cow in A U-Boat','2006','1',NULL,'5','0.99','176','19.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('288','ESCAPE METROPOLIS','A Taut Yarn of a Astronaut And a Technical Writer who must Outgun a Boat in New Orleans','2006','1',NULL,'7','2.99','167','20.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('289','EVE RESURRECTION','A Awe-Inspiring Yarn of a Pastry Chef And a Database Administrator who must Challenge a Teacher in A Baloon','2006','1',NULL,'5','4.99','66','25.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('291','EVOLUTION ALTER','A Fanciful Character Study of a Feminist And a Madman who must Find a Explorer in A Baloon Factory','2006','1',NULL,'5','0.99','174','10.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('292','EXCITEMENT EVE','A Brilliant Documentary of a Monkey And a Car who must Conquer a Crocodile in A Shark Tank','2006','1',NULL,'3','0.99','51','20.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('293','EXORCIST STING','A Touching Drama of a Dog And a Sumo Wrestler who must Conquer a Mad Scientist in Berlin','2006','1',NULL,'6','2.99','167','17.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('294','EXPECATIONS NATURAL','A Amazing Drama of a Butler And a Husband who must Reach a A Shark in A U-Boat','2006','1',NULL,'5','4.99','138','26.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('295','EXPENDABLE STALLION','A Amazing Character Study of a Mad Cow And a Squirrel who must Discover a Hunter in A U-Boat','2006','1',NULL,'3','0.99','97','14.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('299','FACTORY DRAGON','A Action-Packed Saga of a Teacher And a Frisbee who must Escape a Lumberjack in The Sahara Desert','2006','1',NULL,'4','0.99','144','9.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('300','FALCON VOLUME','A Fateful Saga of a Sumo Wrestler And a Hunter who must Redeem a A Shark in New Orleans','2006','1',NULL,'5','4.99','102','21.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('301','FAMILY SWEET','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('302','FANTASIA PARK','A Thoughtful Documentary of a Mad Scientist And a A Shark who must Outrace a Feminist in Australia','2006','1',NULL,'5','2.99','131','29.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('303','FANTASY TROOPERS','A Touching Saga of a Teacher And a Monkey who must Overcome a Secret Agent in A MySQL Convention','2006','1',NULL,'6','0.99','58','27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('304','FARGO GANDHI','A Thrilling Reflection of a Pastry Chef And a Crocodile who must Reach a Teacher in The Outback','2006','1',NULL,'3','2.99','130','28.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('305','FATAL HAUNTED','A Beautiful Drama of a Student And a Secret Agent who must Confront a Dentist in Ancient Japan','2006','1',NULL,'6','2.99','91','24.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('308','FERRIS MOTHER','A Touching Display of a Frisbee And a Frisbee who must Kill a Girl in The Gulf of Mexico','2006','1',NULL,'3','2.99','142','13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('309','FEUD FROGMEN','A Brilliant Reflection of a Database Administrator And a Mad Cow who must Chase a Woman in The Canadian Rockies','2006','1',NULL,'6','0.99','98','29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('310','FEVER EMPIRE','A Insightful Panorama of a Cat And a Boat who must Defeat a Boat in The Gulf of Mexico','2006','1',NULL,'5','4.99','158','20.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('311','FICTION CHRISTMAS','A Emotional Yarn of a A Shark And a Student who must Battle a Robot in An Abandoned Mine Shaft','2006','1',NULL,'4','0.99','72','14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('312','FIDDLER LOST','A Boring Tale of a Squirrel And a Dog who must Challenge a Madman in The Gulf of Mexico','2006','1',NULL,'4','4.99','75','20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('313','FIDELITY DEVIL','A Awe-Inspiring Drama of a Technical Writer And a Composer who must Reach a Pastry Chef in A U-Boat','2006','1',NULL,'5','4.99','118','11.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('314','FIGHT JAWBREAKER','A Intrepid Panorama of a Womanizer And a Girl who must Escape a Girl in A Manhattan Penthouse','2006','1',NULL,'3','0.99','91','13.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('315','FINDING ANACONDA','A Fateful Tale of a Database Administrator And a Girl who must Battle a Squirrel in New Orleans','2006','1',NULL,'4','0.99','156','10.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('317','FIREBALL PHILADELPHIA','A Amazing Yarn of a Dentist And a A Shark who must Vanquish a Madman in An Abandoned Mine Shaft','2006','1',NULL,'4','0.99','148','25.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('318','FIREHOUSE VIETNAM','A Awe-Inspiring Character Study of a Boat And a Boy who must Kill a Pastry Chef in The Sahara Desert','2006','1',NULL,'7','0.99','103','14.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('320','FLAMINGOS CONNECTICUT','A Fast-Paced Reflection of a Composer And a Composer who must Meet a Cat in The Sahara Desert','2006','1',NULL,'4','4.99','80','28.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('321','FLASH WARS','A Astounding Saga of a Moose And a Pastry Chef who must Chase a Student in The Gulf of Mexico','2006','1',NULL,'3','4.99','123','21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('322','FLATLINERS KILLER','A Taut Display of a Secret Agent And a Waitress who must Sink a Robot in An Abandoned Mine Shaft','2006','1',NULL,'5','2.99','100','29.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('323','FLIGHT LIES','A Stunning Character Study of a Crocodile And a Pioneer who must Pursue a Teacher in New Orleans','2006','1',NULL,'7','4.99','179','22.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('325','FLOATS GARDEN','A Action-Packed Epistle of a Robot And a Car who must Chase a Boat in Ancient Japan','2006','1',NULL,'6','2.99','145','29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('327','FOOL MOCKINGBIRD','A Lacklusture Tale of a Crocodile And a Composer who must Defeat a Madman in A U-Boat','2006','1',NULL,'3','4.99','158','24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('328','FOREVER CANDIDATE','A Unbelieveable Panorama of a Technical Writer And a Man who must Pursue a Frisbee in A U-Boat','2006','1',NULL,'7','2.99','131','28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('329','FORREST SONS','A Thrilling Documentary of a Forensic Psychologist And a Butler who must Defeat a Explorer in A Jet Boat','2006','1',NULL,'4','2.99','63','15.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('331','FORWARD TEMPLE','A Astounding Display of a Forensic Psychologist And a Mad Scientist who must Challenge a Girl in New Orleans','2006','1',NULL,'6','2.99','90','25.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('332','FRANKENSTEIN STRANGER','A Insightful Character Study of a Feminist And a Pioneer who must Pursue a Pastry Chef in Nigeria','2006','1',NULL,'7','0.99','159','16.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('333','FREAKY POCUS','A Fast-Paced Documentary of a Pastry Chef And a Crocodile who must Chase a Squirrel in The Gulf of Mexico','2006','1',NULL,'7','2.99','126','16.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('335','FREEDOM CLEOPATRA','A Emotional Reflection of a Dentist And a Mad Cow who must Face a Squirrel in A Baloon','2006','1',NULL,'5','0.99','133','23.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('337','FRIDA SLIPPER','A Fateful Story of a Lumberjack And a Car who must Escape a Boat in An Abandoned Mine Shaft','2006','1',NULL,'6','2.99','73','11.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('338','FRISCO FORREST','A Beautiful Documentary of a Woman And a Pioneer who must Pursue a Mad Scientist in A Shark Tank','2006','1',NULL,'6','4.99','51','23.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('340','FRONTIER CABIN','A Emotional Story of a Madman And a Waitress who must Battle a Teacher in An Abandoned Fun House','2006','1',NULL,'6','4.99','183','14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('341','FROST HEAD','A Amazing Reflection of a Lumberjack And a Cat who must Discover a Husband in A MySQL Convention','2006','1',NULL,'5','0.99','82','13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('343','FULL FLATLINERS','A Beautiful Documentary of a Astronaut And a Moose who must Pursue a Monkey in A Shark Tank','2006','1',NULL,'6','2.99','94','14.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('344','FURY MURDER','A Lacklusture Reflection of a Boat And a Forensic Psychologist who must Fight a Waitress in A Monastery','2006','1',NULL,'3','0.99','178','28.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('345','GABLES METROPOLIS','A Fateful Display of a Cat And a Pioneer who must Challenge a Pastry Chef in A Baloon Factory','2006','1',NULL,'3','0.99','161','17.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('348','GANDHI KWAI','A Thoughtful Display of a Mad Scientist And a Secret Agent who must Chase a Boat in Berlin','2006','1',NULL,'7','0.99','86','9.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('349','GANGS PRIDE','A Taut Character Study of a Woman And a A Shark who must Confront a Frisbee in Berlin','2006','1',NULL,'4','2.99','185','27.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('350','GARDEN ISLAND','A Unbelieveable Character Study of a Womanizer And a Madman who must Reach a Man in The Outback','2006','1',NULL,'3','4.99','80','21.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('351','GASLIGHT CRUSADE','A Amazing Epistle of a Boy And a Astronaut who must Redeem a Man in The Gulf of Mexico','2006','1',NULL,'4','2.99','106','10.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('352','GATHERING CALENDAR','A Intrepid Tale of a Pioneer And a Moose who must Conquer a Frisbee in A MySQL Convention','2006','1',NULL,'4','0.99','176','22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('353','GENTLEMEN STAGE','A Awe-Inspiring Reflection of a Monkey And a Student who must Overcome a Dentist in The First Manned Space Station','2006','1',NULL,'6','2.99','125','22.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('356','GIANT TROOPERS','A Fateful Display of a Feminist And a Monkey who must Vanquish a Monkey in The Canadian Rockies','2006','1',NULL,'5','2.99','102','10.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('357','GILBERT PELICAN','A Fateful Tale of a Man And a Feminist who must Conquer a Crocodile in A Manhattan Penthouse','2006','1',NULL,'7','0.99','114','13.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('358','GILMORE BOILED','A Unbelieveable Documentary of a Boat And a Husband who must Succumb a Student in A U-Boat','2006','1',NULL,'5','0.99','163','29.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('359','GLADIATOR WESTWARD','A Astounding Reflection of a Squirrel And a Sumo Wrestler who must Sink a Dentist in Ancient Japan','2006','1',NULL,'6','4.99','173','20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('361','GLEAMING JAWBREAKER','A Amazing Display of a Composer And a Forensic Psychologist who must Discover a Car in The Canadian Rockies','2006','1',NULL,'5','2.99','89','25.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('362','GLORY TRACY','A Amazing Saga of a Woman And a Womanizer who must Discover a Cat in The First Manned Space Station','2006','1',NULL,'7','2.99','115','13.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('363','GO PURPLE','A Fast-Paced Display of a Car And a Database Administrator who must Battle a Woman in A Baloon','2006','1',NULL,'3','0.99','54','12.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('365','GOLD RIVER','A Taut Documentary of a Database Administrator And a Waitress who must Reach a Mad Scientist in A Baloon Factory','2006','1',NULL,'4','4.99','154','21.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('366','GOLDFINGER SENSIBILITY','A Insightful Drama of a Mad Scientist And a Hunter who must Defeat a Pastry Chef in New Orleans','2006','1',NULL,'3','0.99','93','29.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('368','GONE TROUBLE','A Insightful Character Study of a Mad Cow And a Forensic Psychologist who must Conquer a A Shark in A Manhattan Penthouse','2006','1',NULL,'7','2.99','84','20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('369','GOODFELLAS SALUTE','A Unbelieveable Tale of a Dog And a Explorer who must Sink a Mad Cow in A Baloon Factory','2006','1',NULL,'4','4.99','56','22.99','PG','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('370','GORGEOUS BINGO','A Action-Packed Display of a Sumo Wrestler And a Car who must Overcome a Waitress in A Baloon Factory','2006','1',NULL,'4','2.99','108','26.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('371','GOSFORD DONNIE','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('372','GRACELAND DYNAMITE','A Taut Display of a Cat And a Girl who must Overcome a Database Administrator in New Orleans','2006','1',NULL,'5','4.99','140','26.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('373','GRADUATE LORD','A Lacklusture Epistle of a Girl And a A Shark who must Meet a Mad Scientist in Ancient China','2006','1',NULL,'7','2.99','156','14.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('375','GRAIL FRANKENSTEIN','A Unbelieveable Saga of a Teacher And a Monkey who must Fight a Girl in An Abandoned Mine Shaft','2006','1',NULL,'4','2.99','85','17.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('376','GRAPES FURY','A Boring Yarn of a Mad Cow And a Sumo Wrestler who must Meet a Robot in Australia','2006','1',NULL,'4','0.99','155','20.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('377','GREASE YOUTH','A Emotional Panorama of a Secret Agent And a Waitress who must Escape a Composer in Soviet Georgia','2006','1',NULL,'7','0.99','135','20.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('378','GREATEST NORTH','A Astounding Character Study of a Secret Agent And a Robot who must Build a A Shark in Berlin','2006','1',NULL,'5','2.99','93','24.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('379','GREEDY ROOTS','A Amazing Reflection of a A Shark And a Butler who must Chase a Hunter in The Canadian Rockies','2006','1',NULL,'7','0.99','166','14.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('380','GREEK EVERYONE','A Stunning Display of a Butler And a Teacher who must Confront a A Shark in The First Manned Space Station','2006','1',NULL,'7','2.99','176','11.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('381','GRINCH MASSAGE','A Intrepid Display of a Madman And a Feminist who must Pursue a Pioneer in The First Manned Space Station','2006','1',NULL,'7','4.99','150','25.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('382','GRIT CLOCKWORK','A Thoughtful Display of a Dentist And a Squirrel who must Confront a Lumberjack in A Shark Tank','2006','1',NULL,'3','0.99','137','21.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('383','GROOVE FICTION','A Unbelieveable Reflection of a Moose And a A Shark who must Defeat a Lumberjack in An Abandoned Mine Shaft','2006','1',NULL,'6','0.99','111','13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('384','GROSSE WONDERFUL','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('385','GROUNDHOG UNCUT','A Brilliant Panorama of a Astronaut And a Technical Writer who must Discover a Butler in A Manhattan Penthouse','2006','1',NULL,'6','4.99','139','26.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('386','GUMP DATE','A Intrepid Yarn of a Explorer And a Student who must Kill a Husband in An Abandoned Mine Shaft','2006','1',NULL,'3','4.99','53','12.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('387','GUN BONNIE','A Boring Display of a Sumo Wrestler And a Husband who must Build a Waitress in The Gulf of Mexico','2006','1',NULL,'7','0.99','100','27.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('388','GUNFIGHT MOON','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('390','GUYS FALCON','A Boring Story of a Woman And a Feminist who must Redeem a Squirrel in A U-Boat','2006','1',NULL,'4','4.99','84','20.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('391','HALF OUTFIELD','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('392','HALL CASSIDY','A Beautiful Panorama of a Pastry Chef And a A Shark who must Battle a Pioneer in Soviet Georgia','2006','1',NULL,'5','4.99','51','13.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('393','HALLOWEEN NUTS','A Amazing Panorama of a Forensic Psychologist And a Technical Writer who must Fight a Dentist in A U-Boat','2006','1',NULL,'6','2.99','47','19.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('395','HANDICAP BOONDOCK','A Beautiful Display of a Pioneer And a Squirrel who must Vanquish a Sumo Wrestler in Soviet Georgia','2006','1',NULL,'4','0.99','108','28.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('397','HANKY OCTOBER','A Boring Epistle of a Database Administrator And a Explorer who must Pursue a Madman in Soviet Georgia','2006','1',NULL,'5','2.99','107','26.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('398','HANOVER GALAXY','A Stunning Reflection of a Girl And a Secret Agent who must Succumb a Boy in A MySQL Convention','2006','1',NULL,'5','4.99','47','21.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('399','HAPPINESS UNITED','A Action-Packed Panorama of a Husband And a Feminist who must Meet a Forensic Psychologist in Ancient Japan','2006','1',NULL,'6','2.99','100','23.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('401','HAROLD FRENCH','A Stunning Saga of a Sumo Wrestler And a Student who must Outrace a Moose in The Sahara Desert','2006','1',NULL,'6','0.99','168','10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('402','HARPER DYING','A Awe-Inspiring Reflection of a Woman And a Cat who must Confront a Feminist in The Sahara Desert','2006','1',NULL,'3','0.99','52','15.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('404','HATE HANDICAP','A Intrepid Reflection of a Mad Scientist And a Pioneer who must Overcome a Hunter in The First Manned Space Station','2006','1',NULL,'4','0.99','107','26.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('405','HAUNTED ANTITRUST','A Amazing Saga of a Man And a Dentist who must Reach a Technical Writer in Ancient India','2006','1',NULL,'6','4.99','76','13.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('406','HAUNTING PIANIST','A Fast-Paced Story of a Database Administrator And a Composer who must Defeat a Squirrel in An Abandoned Amusement Park','2006','1',NULL,'5','0.99','181','22.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('407','HAWK CHILL','A Action-Packed Drama of a Mad Scientist And a Composer who must Outgun a Car in Australia','2006','1',NULL,'5','0.99','47','12.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('408','HEAD STRANGER','A Thoughtful Saga of a Hunter And a Crocodile who must Confront a Dog in The Gulf of Mexico','2006','1',NULL,'4','4.99','69','28.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('409','HEARTBREAKERS BRIGHT','A Awe-Inspiring Documentary of a A Shark And a Dentist who must Outrace a Pastry Chef in The Canadian Rockies','2006','1',NULL,'3','4.99','59','9.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('411','HEAVENLY GUN','A Beautiful Yarn of a Forensic Psychologist And a Frisbee who must Battle a Moose in A Jet Boat','2006','1',NULL,'5','4.99','49','13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('412','HEAVYWEIGHTS BEAST','A Unbelieveable Story of a Composer And a Dog who must Overcome a Womanizer in An Abandoned Amusement Park','2006','1',NULL,'6','4.99','102','25.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('413','HEDWIG ALTER','A Action-Packed Yarn of a Womanizer And a Lumberjack who must Chase a Sumo Wrestler in A Monastery','2006','1',NULL,'7','2.99','169','16.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('414','HELLFIGHTERS SIERRA','A Taut Reflection of a A Shark And a Dentist who must Battle a Boat in Soviet Georgia','2006','1',NULL,'3','2.99','75','23.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('416','HIGHBALL POTTER','A Action-Packed Saga of a Husband And a Dog who must Redeem a Database Administrator in The Sahara Desert','2006','1',NULL,'6','0.99','110','10.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('417','HILLS NEIGHBORS','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('418','HOBBIT ALIEN','A Emotional Drama of a Husband And a Girl who must Outgun a Composer in The First Manned Space Station','2006','1',NULL,'5','0.99','157','27.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('419','HOCUS FRIDA','A Awe-Inspiring Tale of a Girl And a Madman who must Outgun a Student in A Shark Tank','2006','1',NULL,'4','2.99','141','19.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('420','HOLES BRANNIGAN','A Fast-Paced Reflection of a Technical Writer And a Student who must Fight a Boy in The Canadian Rockies','2006','1',NULL,'7','4.99','128','27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('422','HOLLOW JEOPARDY','A Beautiful Character Study of a Robot And a Astronaut who must Overcome a Boat in A Monastery','2006','1',NULL,'7','4.99','136','25.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('423','HOLLYWOOD ANONYMOUS','A Fast-Paced Epistle of a Boy And a Explorer who must Escape a Dog in A U-Boat','2006','1',NULL,'7','0.99','69','29.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('424','HOLOCAUST HIGHBALL','A Awe-Inspiring Yarn of a Composer And a Man who must Find a Robot in Soviet Georgia','2006','1',NULL,'6','0.99','149','12.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('425','HOLY TADPOLE','A Action-Packed Display of a Feminist And a Pioneer who must Pursue a Dog in A Baloon Factory','2006','1',NULL,'6','0.99','88','20.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('426','HOME PITY','A Touching Panorama of a Man And a Secret Agent who must Challenge a Teacher in A MySQL Convention','2006','1',NULL,'7','4.99','185','15.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('427','HOMEWARD CIDER','A Taut Reflection of a Astronaut And a Squirrel who must Fight a Squirrel in A Manhattan Penthouse','2006','1',NULL,'5','0.99','103','19.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('428','HOMICIDE PEACH','A Astounding Documentary of a Hunter And a Boy who must Confront a Boy in A MySQL Convention','2006','1',NULL,'6','2.99','141','21.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('429','HONEY TIES','A Taut Story of a Waitress And a Crocodile who must Outrace a Lumberjack in A Shark Tank','2006','1',NULL,'3','0.99','84','29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('431','HOOSIERS BIRDCAGE','A Astounding Display of a Explorer And a Boat who must Vanquish a Car in The First Manned Space Station','2006','1',NULL,'3','2.99','176','12.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('432','HOPE TOOTSIE','A Amazing Documentary of a Student And a Sumo Wrestler who must Outgun a A Shark in A Shark Tank','2006','1',NULL,'4','2.99','139','22.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('433','HORN WORKING','A Stunning Display of a Mad Scientist And a Technical Writer who must Succumb a Monkey in A Shark Tank','2006','1',NULL,'4','2.99','95','23.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('435','HOTEL HAPPINESS','A Thrilling Yarn of a Pastry Chef And a A Shark who must Challenge a Mad Scientist in The Outback','2006','1',NULL,'6','4.99','181','28.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('436','HOURS RAGE','A Fateful Story of a Explorer And a Feminist who must Meet a Technical Writer in Soviet Georgia','2006','1',NULL,'4','0.99','122','14.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('438','HUMAN GRAFFITI','A Beautiful Reflection of a Womanizer And a Sumo Wrestler who must Chase a Database Administrator in The Gulf of Mexico','2006','1',NULL,'3','2.99','68','22.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('440','HUNGER ROOF','A Unbelieveable Yarn of a Student And a Database Administrator who must Outgun a Husband in An Abandoned Mine Shaft','2006','1',NULL,'6','0.99','105','21.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('441','HUNTER ALTER','A Emotional Drama of a Mad Cow And a Boat who must Redeem a Secret Agent in A Shark Tank','2006','1',NULL,'5','2.99','125','21.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('442','HUNTING MUSKETEERS','A Thrilling Reflection of a Pioneer And a Dentist who must Outrace a Womanizer in An Abandoned Mine Shaft','2006','1',NULL,'6','2.99','65','24.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('443','HURRICANE AFFAIR','A Lacklusture Epistle of a Database Administrator And a Woman who must Meet a Hunter in An Abandoned Mine Shaft','2006','1',NULL,'6','2.99','49','11.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('444','HUSTLER PARTY','A Emotional Reflection of a Sumo Wrestler And a Monkey who must Conquer a Robot in The Sahara Desert','2006','1',NULL,'3','4.99','83','22.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('445','HYDE DOCTOR','A Fanciful Documentary of a Boy And a Woman who must Redeem a Womanizer in A Jet Boat','2006','1',NULL,'5','2.99','100','11.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('446','HYSTERICAL GRAIL','A Amazing Saga of a Madman And a Dentist who must Build a Car in A Manhattan Penthouse','2006','1',NULL,'5','4.99','150','19.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('447','ICE CROSSING','A Fast-Paced Tale of a Butler And a Moose who must Overcome a Pioneer in A Manhattan Penthouse','2006','1',NULL,'5','2.99','131','28.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('448','IDAHO LOVE','A Fast-Paced Drama of a Student And a Crocodile who must Meet a Database Administrator in The Outback','2006','1',NULL,'3','2.99','172','25.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('449','IDENTITY LOVER','A Boring Tale of a Composer And a Mad Cow who must Defeat a Car in The Outback','2006','1',NULL,'4','2.99','119','12.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('451','IGBY MAKER','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('452','ILLUSION AMELIE','A Emotional Epistle of a Boat And a Mad Scientist who must Outrace a Robot in An Abandoned Mine Shaft','2006','1',NULL,'4','0.99','122','15.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('453','IMAGE PRINCESS','A Lacklusture Panorama of a Secret Agent And a Crocodile who must Discover a Madman in The Canadian Rockies','2006','1',NULL,'3','2.99','178','17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('454','IMPACT ALADDIN','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('455','IMPOSSIBLE PREJUDICE','A Awe-Inspiring Yarn of a Monkey And a Hunter who must Chase a Teacher in Ancient China','2006','1',NULL,'7','4.99','103','11.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('457','INDEPENDENCE HOTEL','A Thrilling Tale of a Technical Writer And a Boy who must Face a Pioneer in A Monastery','2006','1',NULL,'5','0.99','157','21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('458','INDIAN LOVE','A Insightful Saga of a Mad Scientist And a Mad Scientist who must Kill a Astronaut in An Abandoned Fun House','2006','1',NULL,'4','0.99','135','26.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('459','INFORMER DOUBLE','A Action-Packed Display of a Woman And a Dentist who must Redeem a Forensic Psychologist in The Canadian Rockies','2006','1',NULL,'4','4.99','74','23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('461','INSECTS STONE','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('462','INSIDER ARIZONA','A Astounding Saga of a Mad Scientist And a Hunter who must Pursue a Robot in A Baloon Factory','2006','1',NULL,'5','2.99','78','17.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('463','INSTINCT AIRPORT','A Touching Documentary of a Mad Cow And a Explorer who must Confront a Butler in A Manhattan Penthouse','2006','1',NULL,'4','2.99','116','21.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('464','INTENTIONS EMPIRE','A Astounding Epistle of a Cat And a Cat who must Conquer a Mad Cow in A U-Boat','2006','1',NULL,'3','2.99','107','13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('465','INTERVIEW LIAISONS','A Action-Packed Reflection of a Student And a Butler who must Discover a Database Administrator in A Manhattan Penthouse','2006','1',NULL,'4','4.99','59','17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('466','INTOLERABLE INTENTIONS','A Awe-Inspiring Story of a Monkey And a Pastry Chef who must Succumb a Womanizer in A MySQL Convention','2006','1',NULL,'6','4.99','63','20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('467','INTRIGUE WORST','A Fanciful Character Study of a Explorer And a Mad Scientist who must Vanquish a Squirrel in A Jet Boat','2006','1',NULL,'6','0.99','181','10.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('468','INVASION CYCLONE','A Lacklusture Character Study of a Mad Scientist And a Womanizer who must Outrace a Explorer in A Monastery','2006','1',NULL,'5','2.99','97','12.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('469','IRON MOON','A Fast-Paced Documentary of a Mad Cow And a Boy who must Pursue a Dentist in A Baloon','2006','1',NULL,'7','4.99','46','27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('470','ISHTAR ROCKETEER','A Astounding Saga of a Dog And a Squirrel who must Conquer a Dog in An Abandoned Fun House','2006','1',NULL,'4','4.99','79','24.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('471','ISLAND EXORCIST','A Fanciful Panorama of a Technical Writer And a Boy who must Find a Dentist in An Abandoned Fun House','2006','1',NULL,'7','2.99','84','23.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('472','ITALIAN AFRICAN','A Astounding Character Study of a Monkey And a Moose who must Outgun a Cat in A U-Boat','2006','1',NULL,'3','4.99','174','24.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('473','JACKET FRISCO','A Insightful Reflection of a Womanizer And a Husband who must Conquer a Pastry Chef in A Baloon','2006','1',NULL,'5','2.99','181','16.99','PG-13','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('474','JADE BUNCH','A Insightful Panorama of a Squirrel And a Mad Cow who must Confront a Student in The First Manned Space Station','2006','1',NULL,'6','2.99','174','21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('475','JAPANESE RUN','A Awe-Inspiring Epistle of a Feminist And a Girl who must Sink a Girl in The Outback','2006','1',NULL,'6','0.99','135','29.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('476','JASON TRAP','A Thoughtful Tale of a Woman And a A Shark who must Conquer a Dog in A Monastery','2006','1',NULL,'5','2.99','130','9.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('477','JAWBREAKER BROOKLYN','A Stunning Reflection of a Boat And a Pastry Chef who must Succumb a A Shark in A Jet Boat','2006','1',NULL,'5','0.99','118','15.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('478','JAWS HARRY','A Thrilling Display of a Database Administrator And a Monkey who must Overcome a Dog in An Abandoned Fun House','2006','1',NULL,'4','2.99','112','10.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('480','JEEPERS WEDDING','A Astounding Display of a Composer And a Dog who must Kill a Pastry Chef in Soviet Georgia','2006','1',NULL,'3','2.99','84','29.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('481','JEKYLL FROGMEN','A Fanciful Epistle of a Student And a Astronaut who must Kill a Waitress in A Shark Tank','2006','1',NULL,'4','2.99','58','22.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('482','JEOPARDY ENCINO','A Boring Panorama of a Man And a Mad Cow who must Face a Explorer in Ancient India','2006','1',NULL,'3','0.99','102','12.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('483','JERICHO MULAN','A Amazing Yarn of a Hunter And a Butler who must Defeat a Boy in A Jet Boat','2006','1',NULL,'3','2.99','171','29.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('484','JERK PAYCHECK','A Touching Character Study of a Pastry Chef And a Database Administrator who must Reach a A Shark in Ancient Japan','2006','1',NULL,'3','2.99','172','13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('485','JERSEY SASSY','A Lacklusture Documentary of a Madman And a Mad Cow who must Find a Feminist in Ancient Japan','2006','1',NULL,'6','4.99','60','16.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('486','JET NEIGHBORS','A Amazing Display of a Lumberjack And a Teacher who must Outrace a Woman in A U-Boat','2006','1',NULL,'7','4.99','59','14.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('487','JINGLE SAGEBRUSH','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('488','JOON NORTHWEST','A Thrilling Panorama of a Technical Writer And a Car who must Discover a Forensic Psychologist in A Shark Tank','2006','1',NULL,'3','0.99','105','23.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('489','JUGGLER HARDLY','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('490','JUMANJI BLADE','A Intrepid Yarn of a Husband And a Womanizer who must Pursue a Mad Scientist in New Orleans','2006','1',NULL,'4','2.99','121','13.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('493','KANE EXORCIST','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('494','KARATE MOON','A Astounding Yarn of a Womanizer And a Dog who must Reach a Waitress in A MySQL Convention','2006','1',NULL,'4','0.99','120','21.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('495','KENTUCKIAN GIANT','A Stunning Yarn of a Woman And a Frisbee who must Escape a Waitress in A U-Boat','2006','1',NULL,'5','2.99','169','10.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('497','KILL BROTHERHOOD','A Touching Display of a Hunter And a Secret Agent who must Redeem a Husband in The Outback','2006','1',NULL,'4','0.99','54','15.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('498','KILLER INNOCENT','A Fanciful Character Study of a Student And a Explorer who must Succumb a Composer in An Abandoned Mine Shaft','2006','1',NULL,'7','2.99','161','11.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('499','KING EVOLUTION','A Action-Packed Tale of a Boy And a Lumberjack who must Chase a Madman in A Baloon','2006','1',NULL,'3','4.99','184','24.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('500','KISS GLORY','A Lacklusture Reflection of a Girl And a Husband who must Find a Robot in The Canadian Rockies','2006','1',NULL,'5','4.99','163','11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('501','KISSING DOLLS','A Insightful Reflection of a Pioneer And a Teacher who must Build a Composer in The First Manned Space Station','2006','1',NULL,'3','4.99','141','9.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('503','KRAMER CHOCOLATE','A Amazing Yarn of a Robot And a Pastry Chef who must Redeem a Mad Scientist in The Outback','2006','1',NULL,'3','2.99','171','24.99','R','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('505','LABYRINTH LEAGUE','A Awe-Inspiring Saga of a Composer And a Frisbee who must Succumb a Pioneer in The Sahara Desert','2006','1',NULL,'6','2.99','46','24.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('506','LADY STAGE','A Beautiful Character Study of a Woman And a Man who must Pursue a Explorer in A U-Boat','2006','1',NULL,'4','4.99','67','14.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('507','LADYBUGS ARMAGEDDON','A Fateful Reflection of a Dog And a Mad Scientist who must Meet a Mad Scientist in New Orleans','2006','1',NULL,'4','0.99','113','13.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('509','LANGUAGE COWBOY','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('510','LAWLESS VISION','A Insightful Yarn of a Boy And a Sumo Wrestler who must Outgun a Car in The Outback','2006','1',NULL,'6','4.99','181','29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('511','LAWRENCE LOVE','A Fanciful Yarn of a Database Administrator And a Mad Cow who must Pursue a Womanizer in Berlin','2006','1',NULL,'7','0.99','175','23.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('512','LEAGUE HELLFIGHTERS','A Thoughtful Saga of a A Shark And a Monkey who must Outgun a Student in Ancient China','2006','1',NULL,'5','4.99','110','25.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('513','LEATHERNECKS DWARFS','A Fateful Reflection of a Dog And a Mad Cow who must Outrace a Teacher in An Abandoned Mine Shaft','2006','1',NULL,'6','2.99','153','21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('514','LEBOWSKI SOLDIERS','A Beautiful Epistle of a Secret Agent And a Pioneer who must Chase a Astronaut in Ancient China','2006','1',NULL,'6','2.99','69','17.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('515','LEGALLY SECRETARY','A Astounding Tale of a A Shark And a Moose who must Meet a Womanizer in The Sahara Desert','2006','1',NULL,'7','4.99','113','14.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('516','LEGEND JEDI','A Awe-Inspiring Epistle of a Pioneer And a Student who must Outgun a Crocodile in The Outback','2006','1',NULL,'7','0.99','59','18.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('517','LESSON CLEOPATRA','A Emotional Display of a Man And a Explorer who must Build a Boy in A Manhattan Penthouse','2006','1',NULL,'3','0.99','167','28.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('518','LIAISONS SWEET','A Boring Drama of a A Shark And a Explorer who must Redeem a Waitress in The Canadian Rockies','2006','1',NULL,'5','4.99','140','15.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('519','LIBERTY MAGNIFICENT','A Boring Drama of a Student And a Cat who must Sink a Technical Writer in A Baloon','2006','1',NULL,'3','2.99','138','27.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('521','LIES TREATMENT','A Fast-Paced Character Study of a Dentist And a Moose who must Defeat a Composer in The First Manned Space Station','2006','1',NULL,'7','4.99','147','28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('522','LIFE TWISTED','A Thrilling Reflection of a Teacher And a Composer who must Find a Man in The First Manned Space Station','2006','1',NULL,'4','2.99','137','9.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('523','LIGHTS DEER','A Unbelieveable Epistle of a Dog And a Woman who must Confront a Moose in The Gulf of Mexico','2006','1',NULL,'7','0.99','174','21.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('524','LION UNCUT','A Intrepid Display of a Pastry Chef And a Cat who must Kill a A Shark in Ancient China','2006','1',NULL,'6','0.99','50','13.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('525','LOATHING LEGALLY','A Boring Epistle of a Pioneer And a Mad Scientist who must Escape a Frisbee in The Gulf of Mexico','2006','1',NULL,'4','0.99','140','29.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('526','LOCK REAR','A Thoughtful Character Study of a Squirrel And a Technical Writer who must Outrace a Student in Ancient Japan','2006','1',NULL,'7','2.99','120','10.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('527','LOLA AGENT','A Astounding Tale of a Mad Scientist And a Husband who must Redeem a Database Administrator in Ancient Japan','2006','1',NULL,'4','4.99','85','24.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('528','LOLITA WORLD','A Thrilling Drama of a Girl And a Robot who must Redeem a Waitress in An Abandoned Mine Shaft','2006','1',NULL,'4','2.99','155','25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('530','LORD ARIZONA','A Action-Packed Display of a Frisbee And a Pastry Chef who must Pursue a Crocodile in A Jet Boat','2006','1',NULL,'5','2.99','108','27.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('531','LOSE INCH','A Stunning Reflection of a Student And a Technical Writer who must Battle a Butler in The First Manned Space Station','2006','1',NULL,'3','0.99','137','18.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('533','LOST BIRD','A Emotional Character Study of a Robot And a A Shark who must Defeat a Technical Writer in A Manhattan Penthouse','2006','1',NULL,'4','2.99','98','21.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('534','LOUISIANA HARRY','A Lacklusture Drama of a Girl And a Technical Writer who must Redeem a Monkey in A Shark Tank','2006','1',NULL,'5','0.99','70','18.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('535','LOVE SUICIDES','A Brilliant Panorama of a Hunter And a Explorer who must Pursue a Dentist in An Abandoned Fun House','2006','1',NULL,'6','0.99','181','21.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('536','LOVELY JINGLE','A Fanciful Yarn of a Crocodile And a Forensic Psychologist who must Discover a Crocodile in The Outback','2006','1',NULL,'3','2.99','65','18.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('537','LOVER TRUMAN','A Emotional Yarn of a Robot And a Boy who must Outgun a Technical Writer in A U-Boat','2006','1',NULL,'3','2.99','75','29.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('539','LUCK OPUS','A Boring Display of a Moose And a Squirrel who must Outrace a Teacher in A Shark Tank','2006','1',NULL,'7','2.99','152','21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('540','LUCKY FLYING','A Lacklusture Character Study of a A Shark And a Man who must Find a Forensic Psychologist in A U-Boat','2006','1',NULL,'7','2.99','97','10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('541','LUKE MUMMY','A Taut Character Study of a Boy And a Robot who must Redeem a Mad Scientist in Ancient India','2006','1',NULL,'5','2.99','74','21.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('542','LUST LOCK','A Fanciful Panorama of a Hunter And a Dentist who must Meet a Secret Agent in The Sahara Desert','2006','1',NULL,'3','2.99','52','28.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('543','MADIGAN DORADO','A Astounding Character Study of a A Shark And a A Shark who must Discover a Crocodile in The Outback','2006','1',NULL,'5','4.99','116','20.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('544','MADISON TRAP','A Awe-Inspiring Reflection of a Monkey And a Dentist who must Overcome a Pioneer in A U-Boat','2006','1',NULL,'4','2.99','147','11.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('545','MADNESS ATTACKS','A Fanciful Tale of a Squirrel And a Boat who must Defeat a Crocodile in The Gulf of Mexico','2006','1',NULL,'4','0.99','178','14.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('546','MADRE GABLES','A Intrepid Panorama of a Sumo Wrestler And a Forensic Psychologist who must Discover a Moose in The First Manned Space Station','2006','1',NULL,'7','2.99','98','27.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('547','MAGIC MALLRATS','A Touching Documentary of a Pastry Chef And a Pastry Chef who must Build a Mad Scientist in California','2006','1',NULL,'3','0.99','117','19.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('550','MAGUIRE APACHE','A Fast-Paced Reflection of a Waitress And a Hunter who must Defeat a Forensic Psychologist in A Baloon','2006','1',NULL,'6','2.99','74','22.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('551','MAIDEN HOME','A Lacklusture Saga of a Moose And a Teacher who must Kill a Forensic Psychologist in A MySQL Convention','2006','1',NULL,'3','4.99','138','9.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('552','MAJESTIC FLOATS','A Thrilling Character Study of a Moose And a Student who must Escape a Butler in The First Manned Space Station','2006','1',NULL,'5','0.99','130','15.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('553','MAKER GABLES','A Stunning Display of a Moose And a Database Administrator who must Pursue a Composer in A Jet Boat','2006','1',NULL,'4','0.99','136','12.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('554','MALKOVICH PET','A Intrepid Reflection of a Waitress And a A Shark who must Kill a Squirrel in The Outback','2006','1',NULL,'6','2.99','159','22.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('556','MALTESE HOPE','A Fast-Paced Documentary of a Crocodile And a Sumo Wrestler who must Conquer a Explorer in California','2006','1',NULL,'6','4.99','127','26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('558','MANNEQUIN WORST','A Astounding Saga of a Mad Cow And a Pastry Chef who must Discover a Husband in Ancient India','2006','1',NULL,'3','2.99','71','18.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('559','MARRIED GO','A Fanciful Story of a Womanizer And a Dog who must Face a Forensic Psychologist in The Sahara Desert','2006','1',NULL,'7','2.99','114','22.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('562','MASKED BUBBLE','A Fanciful Documentary of a Pioneer And a Boat who must Pursue a Pioneer in An Abandoned Mine Shaft','2006','1',NULL,'6','0.99','151','12.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('564','MASSAGE IMAGE','A Fateful Drama of a Frisbee And a Crocodile who must Vanquish a Dog in The First Manned Space Station','2006','1',NULL,'4','2.99','161','11.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('567','MEET CHOCOLATE','A Boring Documentary of a Dentist And a Butler who must Confront a Monkey in A MySQL Convention','2006','1',NULL,'3','2.99','80','26.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('568','MEMENTO ZOOLANDER','A Touching Epistle of a Squirrel And a Explorer who must Redeem a Pastry Chef in The Sahara Desert','2006','1',NULL,'4','4.99','77','11.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('569','MENAGERIE RUSHMORE','A Unbelieveable Panorama of a Composer And a Butler who must Overcome a Database Administrator in The First Manned Space Station','2006','1',NULL,'7','2.99','147','18.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('571','METAL ARMAGEDDON','A Thrilling Display of a Lumberjack And a Crocodile who must Meet a Monkey in A Baloon Factory','2006','1',NULL,'6','2.99','161','26.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('572','METROPOLIS COMA','A Emotional Saga of a Database Administrator And a Pastry Chef who must Confront a Teacher in A Baloon Factory','2006','1',NULL,'4','2.99','64','9.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('573','MICROCOSMOS PARADISE','A Touching Character Study of a Boat And a Student who must Sink a A Shark in Nigeria','2006','1',NULL,'6','2.99','105','22.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('574','MIDNIGHT WESTWARD','A Taut Reflection of a Husband And a A Shark who must Redeem a Pastry Chef in A Monastery','2006','1',NULL,'3','0.99','86','19.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('576','MIGHTY LUCK','A Astounding Epistle of a Mad Scientist And a Pioneer who must Escape a Database Administrator in A MySQL Convention','2006','1',NULL,'7','2.99','122','13.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('577','MILE MULAN','A Lacklusture Epistle of a Cat And a Husband who must Confront a Boy in A MySQL Convention','2006','1',NULL,'4','0.99','64','10.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('578','MILLION ACE','A Brilliant Documentary of a Womanizer And a Squirrel who must Find a Technical Writer in The Sahara Desert','2006','1',NULL,'4','4.99','142','16.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('579','MINDS TRUMAN','A Taut Yarn of a Mad Scientist And a Crocodile who must Outgun a Database Administrator in A Monastery','2006','1',NULL,'3','4.99','149','22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('581','MINORITY KISS','A Insightful Display of a Lumberjack And a Sumo Wrestler who must Meet a Man in The Outback','2006','1',NULL,'4','0.99','59','16.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('582','MIRACLE VIRTUAL','A Touching Epistle of a Butler And a Boy who must Find a Mad Scientist in The Sahara Desert','2006','1',NULL,'3','2.99','162','19.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('583','MISSION ZOOLANDER','A Intrepid Story of a Sumo Wrestler And a Teacher who must Meet a A Shark in An Abandoned Fun House','2006','1',NULL,'3','4.99','164','26.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('585','MOB DUFFEL','A Unbelieveable Documentary of a Frisbee And a Boat who must Meet a Boy in The Canadian Rockies','2006','1',NULL,'4','0.99','105','25.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('587','MOD SECRETARY','A Boring Documentary of a Mad Cow And a Cat who must Build a Lumberjack in New Orleans','2006','1',NULL,'6','4.99','77','20.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('589','MODERN DORADO','A Awe-Inspiring Story of a Butler And a Sumo Wrestler who must Redeem a Boy in New Orleans','2006','1',NULL,'3','0.99','74','20.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('591','MONSOON CAUSE','A Astounding Tale of a Crocodile And a Car who must Outrace a Squirrel in A U-Boat','2006','1',NULL,'6','4.99','182','20.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('593','MONTEREY LABYRINTH','A Awe-Inspiring Drama of a Monkey And a Composer who must Escape a Feminist in A U-Boat','2006','1',NULL,'6','0.99','158','13.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('594','MONTEZUMA COMMAND','A Thrilling Reflection of a Waitress And a Butler who must Battle a Butler in A Jet Boat','2006','1',NULL,'6','0.99','126','22.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('595','MOON BUNCH','A Beautiful Tale of a Astronaut And a Mad Cow who must Challenge a Cat in A Baloon Factory','2006','1',NULL,'7','0.99','83','20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('596','MOONSHINE CABIN','A Thoughtful Display of a Astronaut And a Feminist who must Chase a Frisbee in A Jet Boat','2006','1',NULL,'4','4.99','171','25.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('597','MOONWALKER FOOL','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('598','MOSQUITO ARMAGEDDON','A Thoughtful Character Study of a Waitress And a Feminist who must Build a Teacher in Ancient Japan','2006','1',NULL,'6','0.99','57','22.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('600','MOTIONS DETAILS','A Awe-Inspiring Reflection of a Dog And a Student who must Kill a Car in An Abandoned Fun House','2006','1',NULL,'5','0.99','166','16.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('601','MOULIN WAKE','A Astounding Story of a Forensic Psychologist And a Cat who must Battle a Teacher in An Abandoned Mine Shaft','2006','1',NULL,'4','0.99','79','20.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('605','MULHOLLAND BEAST','A Awe-Inspiring Display of a Husband And a Squirrel who must Battle a Sumo Wrestler in A Jet Boat','2006','1',NULL,'7','2.99','157','13.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('607','MUPPET MILE','A Lacklusture Story of a Madman And a Teacher who must Kill a Frisbee in The Gulf of Mexico','2006','1',NULL,'5','4.99','50','18.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('608','MURDER ANTITRUST','A Brilliant Yarn of a Car And a Database Administrator who must Escape a Boy in A MySQL Convention','2006','1',NULL,'6','2.99','166','11.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('609','MUSCLE BRIGHT','A Stunning Panorama of a Sumo Wrestler And a Husband who must Redeem a Madman in Ancient India','2006','1',NULL,'7','2.99','185','23.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('610','MUSIC BOONDOCK','A Thrilling Tale of a Butler And a Astronaut who must Battle a Explorer in The First Manned Space Station','2006','1',NULL,'7','0.99','129','17.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('613','MYSTIC TRUMAN','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('614','NAME DETECTIVE','A Touching Saga of a Sumo Wrestler And a Cat who must Pursue a Mad Scientist in Nigeria','2006','1',NULL,'5','4.99','178','11.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('615','NASH CHOCOLAT','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('617','NATURAL STOCK','A Fast-Paced Story of a Sumo Wrestler And a Girl who must Defeat a Car in A Baloon Factory','2006','1',NULL,'4','0.99','50','24.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('618','NECKLACE OUTBREAK','A Astounding Epistle of a Database Administrator And a Mad Scientist who must Pursue a Cat in California','2006','1',NULL,'3','0.99','132','21.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('619','NEIGHBORS CHARADE','A Fanciful Reflection of a Crocodile And a Astronaut who must Outrace a Feminist in An Abandoned Amusement Park','2006','1',NULL,'3','0.99','161','20.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('620','NEMO CAMPUS','A Lacklusture Reflection of a Monkey And a Squirrel who must Outrace a Womanizer in A Manhattan Penthouse','2006','1',NULL,'5','2.99','131','23.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('622','NEWSIES STORY','A Action-Packed Character Study of a Dog And a Lumberjack who must Outrace a Moose in The Gulf of Mexico','2006','1',NULL,'4','0.99','159','25.99','G','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('623','NEWTON LABYRINTH','A Intrepid Character Study of a Moose And a Waitress who must Find a A Shark in Ancient India','2006','1',NULL,'4','0.99','75','9.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('624','NIGHTMARE CHILL','A Brilliant Display of a Robot And a Butler who must Fight a Waitress in An Abandoned Mine Shaft','2006','1',NULL,'3','4.99','149','25.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('625','NONE SPIKING','A Boring Reflection of a Secret Agent And a Astronaut who must Face a Composer in A Manhattan Penthouse','2006','1',NULL,'3','0.99','83','18.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('626','NOON PAPI','A Unbelieveable Character Study of a Mad Scientist And a Astronaut who must Find a Pioneer in A Manhattan Penthouse','2006','1',NULL,'5','2.99','57','12.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('627','NORTH TEQUILA','A Beautiful Character Study of a Mad Cow And a Robot who must Reach a Womanizer in New Orleans','2006','1',NULL,'4','4.99','67','9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('628','NORTHWEST POLISH','A Boring Character Study of a Boy And a A Shark who must Outrace a Womanizer in The Outback','2006','1',NULL,'5','2.99','172','24.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('630','NOTTING SPEAKEASY','A Thoughtful Display of a Butler And a Womanizer who must Find a Waitress in The Canadian Rockies','2006','1',NULL,'7','0.99','48','19.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('633','OCTOBER SUBMARINE','A Taut Epistle of a Monkey And a Boy who must Confront a Husband in A Jet Boat','2006','1',NULL,'6','4.99','54','10.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('635','OKLAHOMA JUMANJI','A Thoughtful Drama of a Dentist And a Womanizer who must Meet a Husband in The Sahara Desert','2006','1',NULL,'7','0.99','58','15.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('636','OLEANDER CLUE','A Boring Story of a Teacher And a Monkey who must Succumb a Forensic Psychologist in A Jet Boat','2006','1',NULL,'5','0.99','161','12.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('637','OPEN AFRICAN','A Lacklusture Drama of a Secret Agent And a Explorer who must Discover a Car in A U-Boat','2006','1',NULL,'7','4.99','131','16.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('638','OPERATION OPERATION','A Intrepid Character Study of a Man And a Frisbee who must Overcome a Madman in Ancient China','2006','1',NULL,'7','2.99','156','23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('640','OPUS ICE','A Fast-Paced Drama of a Hunter And a Boy who must Discover a Feminist in The Sahara Desert','2006','1',NULL,'5','4.99','102','21.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('641','ORANGE GRAPES','A Astounding Documentary of a Butler And a Womanizer who must Face a Dog in A U-Boat','2006','1',NULL,'4','0.99','76','21.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('642','ORDER BETRAYED','A Amazing Saga of a Dog And a A Shark who must Challenge a Cat in The Sahara Desert','2006','1',NULL,'7','2.99','120','13.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('643','ORIENT CLOSER','A Astounding Epistle of a Technical Writer And a Teacher who must Fight a Squirrel in The Sahara Desert','2006','1',NULL,'3','2.99','118','22.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('644','OSCAR GOLD','A Insightful Tale of a Database Administrator And a Dog who must Face a Madman in Soviet Georgia','2006','1',NULL,'7','2.99','115','29.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('645','OTHERS SOUP','A Lacklusture Documentary of a Mad Cow And a Madman who must Sink a Moose in The Gulf of Mexico','2006','1',NULL,'7','2.99','118','18.99','PG','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('646','OUTBREAK DIVINE','A Unbelieveable Yarn of a Database Administrator And a Woman who must Succumb a A Shark in A U-Boat','2006','1',NULL,'6','0.99','169','12.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('647','OUTFIELD MASSACRE','A Thoughtful Drama of a Husband And a Secret Agent who must Pursue a Database Administrator in Ancient India','2006','1',NULL,'4','0.99','129','18.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('648','OUTLAW HANKY','A Thoughtful Story of a Astronaut And a Composer who must Conquer a Dog in The Sahara Desert','2006','1',NULL,'7','4.99','148','17.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('649','OZ LIAISONS','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('650','PACIFIC AMISTAD','A Thrilling Yarn of a Dog And a Moose who must Kill a Pastry Chef in A Manhattan Penthouse','2006','1',NULL,'3','0.99','144','27.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('651','PACKER MADIGAN','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('652','PAJAMA JAWBREAKER','A Emotional Drama of a Boy And a Technical Writer who must Redeem a Sumo Wrestler in California','2006','1',NULL,'3','0.99','126','14.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('654','PANKY SUBMARINE','A Touching Documentary of a Dentist And a Sumo Wrestler who must Overcome a Boy in The Gulf of Mexico','2006','1',NULL,'4','4.99','93','19.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('655','PANTHER REDS','A Brilliant Panorama of a Moose And a Man who must Reach a Teacher in The Gulf of Mexico','2006','1',NULL,'5','4.99','109','22.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('657','PARADISE SABRINA','A Intrepid Yarn of a Car And a Moose who must Outrace a Crocodile in A Manhattan Penthouse','2006','1',NULL,'5','2.99','48','12.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('659','PARK CITIZEN','A Taut Epistle of a Sumo Wrestler And a Girl who must Face a Husband in Ancient Japan','2006','1',NULL,'3','4.99','109','14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('660','PARTY KNOCK','A Fateful Display of a Technical Writer And a Butler who must Battle a Sumo Wrestler in An Abandoned Mine Shaft','2006','1',NULL,'7','2.99','107','11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('666','PAYCHECK WAIT','A Awe-Inspiring Reflection of a Boy And a Man who must Discover a Moose in The Sahara Desert','2006','1',NULL,'4','4.99','145','27.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('668','PEAK FOREVER','A Insightful Reflection of a Boat And a Secret Agent who must Vanquish a Astronaut in An Abandoned Mine Shaft','2006','1',NULL,'7','4.99','80','25.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('669','PEARL DESTINY','A Lacklusture Yarn of a Astronaut And a Pastry Chef who must Sink a Dog in A U-Boat','2006','1',NULL,'3','2.99','74','10.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('670','PELICAN COMFORTS','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('673','PERSONAL LADYBUGS','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('676','PHILADELPHIA WIFE','A Taut Yarn of a Hunter And a Astronaut who must Conquer a Database Administrator in The Sahara Desert','2006','1',NULL,'7','4.99','137','16.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('677','PIANIST OUTFIELD','A Intrepid Story of a Boy And a Technical Writer who must Pursue a Lumberjack in A Monastery','2006','1',NULL,'6','0.99','136','25.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('678','PICKUP DRIVING','A Touching Documentary of a Husband And a Boat who must Meet a Pastry Chef in A Baloon Factory','2006','1',NULL,'3','2.99','77','23.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('679','PILOT HOOSIERS','A Awe-Inspiring Reflection of a Crocodile And a Sumo Wrestler who must Meet a Forensic Psychologist in An Abandoned Mine Shaft','2006','1',NULL,'6','2.99','50','17.99','PG','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('680','PINOCCHIO SIMON','A Action-Packed Reflection of a Mad Scientist And a A Shark who must Find a Feminist in California','2006','1',NULL,'4','4.99','103','21.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('681','PIRATES ROXANNE','A Stunning Drama of a Woman And a Lumberjack who must Overcome a A Shark in The Canadian Rockies','2006','1',NULL,'4','0.99','100','20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('684','PIZZA JUMANJI','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('686','PLUTO OLEANDER','A Action-Packed Reflection of a Car And a Moose who must Outgun a Car in A Shark Tank','2006','1',NULL,'5','4.99','84','9.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('687','POCUS PULP','A Intrepid Yarn of a Frisbee And a Dog who must Build a Astronaut in A Baloon Factory','2006','1',NULL,'6','0.99','138','15.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('688','POLISH BROOKLYN','A Boring Character Study of a Database Administrator And a Lumberjack who must Reach a Madman in The Outback','2006','1',NULL,'6','0.99','61','12.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('689','POLLOCK DELIVERANCE','A Intrepid Story of a Madman And a Frisbee who must Outgun a Boat in The Sahara Desert','2006','1',NULL,'5','2.99','137','14.99','PG','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('692','POTLUCK MIXED','A Beautiful Story of a Dog And a Technical Writer who must Outgun a Student in A Baloon','2006','1',NULL,'3','2.99','179','10.99','G','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('694','PREJUDICE OLEANDER','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('695','PRESIDENT BANG','A Fateful Panorama of a Technical Writer And a Moose who must Battle a Robot in Soviet Georgia','2006','1',NULL,'6','4.99','144','12.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('696','PRIDE ALAMO','A Thoughtful Drama of a A Shark And a Forensic Psychologist who must Vanquish a Student in Ancient India','2006','1',NULL,'6','0.99','114','20.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('697','PRIMARY GLASS','A Fateful Documentary of a Pastry Chef And a Butler who must Build a Dog in The Canadian Rockies','2006','1',NULL,'7','0.99','53','16.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('698','PRINCESS GIANT','A Thrilling Yarn of a Pastry Chef And a Monkey who must Battle a Monkey in A Shark Tank','2006','1',NULL,'3','2.99','71','29.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('699','PRIVATE DROP','A Stunning Story of a Technical Writer And a Hunter who must Succumb a Secret Agent in A Baloon','2006','1',NULL,'7','4.99','106','26.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('700','PRIX UNDEFEATED','A Stunning Saga of a Mad Scientist And a Boat who must Overcome a Dentist in Ancient China','2006','1',NULL,'4','2.99','115','13.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('703','PUNK DIVORCE','A Fast-Paced Tale of a Pastry Chef And a Boat who must Face a Frisbee in The Canadian Rockies','2006','1',NULL,'6','4.99','100','18.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('704','PURE RUNNER','A Thoughtful Documentary of a Student And a Madman who must Challenge a Squirrel in A Manhattan Penthouse','2006','1',NULL,'3','2.99','121','25.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('705','PURPLE MOVIE','A Boring Display of a Pastry Chef And a Sumo Wrestler who must Discover a Frisbee in An Abandoned Amusement Park','2006','1',NULL,'4','2.99','88','9.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('707','QUEST MUSSOLINI','A Fateful Drama of a Husband And a Sumo Wrestler who must Battle a Pastry Chef in A Baloon Factory','2006','1',NULL,'5','2.99','177','29.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('710','RAGE GAMES','A Fast-Paced Saga of a Astronaut And a Secret Agent who must Escape a Hunter in An Abandoned Amusement Park','2006','1',NULL,'4','4.99','120','18.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('711','RAGING AIRPLANE','A Astounding Display of a Secret Agent And a Technical Writer who must Escape a Mad Scientist in A Jet Boat','2006','1',NULL,'4','4.99','154','18.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('712','RAIDERS ANTITRUST','A Amazing Drama of a Teacher And a Feminist who must Meet a Woman in The First Manned Space Station','2006','1',NULL,'4','0.99','82','11.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('713','RAINBOW SHOCK','A Action-Packed Story of a Hunter And a Boy who must Discover a Lumberjack in Ancient India','2006','1',NULL,'3','4.99','74','14.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('714','RANDOM GO','A Fateful Drama of a Frisbee And a Student who must Confront a Cat in A Shark Tank','2006','1',NULL,'6','2.99','73','29.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('716','REAP UNFAITHFUL','A Thrilling Epistle of a Composer And a Sumo Wrestler who must Challenge a Mad Cow in A MySQL Convention','2006','1',NULL,'6','2.99','136','26.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('717','REAR TRADING','A Awe-Inspiring Reflection of a Forensic Psychologist And a Secret Agent who must Succumb a Pastry Chef in Soviet Georgia','2006','1',NULL,'6','0.99','97','23.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('718','REBEL AIRPORT','A Intrepid Yarn of a Database Administrator And a Boat who must Outrace a Husband in Ancient India','2006','1',NULL,'7','0.99','73','24.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('719','RECORDS ZORRO','A Amazing Drama of a Mad Scientist And a Composer who must Build a Husband in The Outback','2006','1',NULL,'7','4.99','182','11.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('720','REDEMPTION COMFORTS','A Emotional Documentary of a Dentist And a Woman who must Battle a Mad Scientist in Ancient China','2006','1',NULL,'3','2.99','179','20.99','NC-17','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('721','REDS POCUS','A Lacklusture Yarn of a Sumo Wrestler And a Squirrel who must Redeem a Monkey in Soviet Georgia','2006','1',NULL,'7','4.99','182','23.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('722','REEF SALUTE','A Action-Packed Saga of a Teacher And a Lumberjack who must Battle a Dentist in A Baloon','2006','1',NULL,'5','0.99','123','26.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('723','REIGN GENTLEMEN','A Emotional Yarn of a Composer And a Man who must Escape a Butler in The Gulf of Mexico','2006','1',NULL,'3','2.99','82','29.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('724','REMEMBER DIARY','A Insightful Tale of a Technical Writer And a Waitress who must Conquer a Monkey in Ancient India','2006','1',NULL,'5','2.99','110','15.99','R','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('725','REQUIEM TYCOON','A Unbelieveable Character Study of a Cat And a Database Administrator who must Pursue a Teacher in A Monastery','2006','1',NULL,'6','4.99','167','25.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('727','RESURRECTION SILVERADO','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('728','REUNION WITCHES','A Unbelieveable Documentary of a Database Administrator And a Frisbee who must Redeem a Mad Scientist in A Baloon Factory','2006','1',NULL,'3','0.99','63','26.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('730','RIDGEMONT SUBMARINE','A Unbelieveable Drama of a Waitress And a Composer who must Sink a Mad Cow in Ancient Japan','2006','1',NULL,'3','0.99','46','28.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('731','RIGHT CRANES','A Fateful Character Study of a Boat And a Cat who must Find a Database Administrator in A Jet Boat','2006','1',NULL,'7','4.99','153','29.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('732','RINGS HEARTBREAKERS','A Amazing Yarn of a Sumo Wrestler And a Boat who must Conquer a Waitress in New Orleans','2006','1',NULL,'5','0.99','58','17.99','G','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('733','RIVER OUTLAW','A Thrilling Character Study of a Squirrel And a Lumberjack who must Face a Hunter in A MySQL Convention','2006','1',NULL,'4','0.99','149','29.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('734','ROAD ROXANNE','A Boring Character Study of a Waitress And a Astronaut who must Fight a Crocodile in Ancient Japan','2006','1',NULL,'4','4.99','158','12.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('735','ROBBERS JOON','A Thoughtful Story of a Mad Scientist And a Waitress who must Confront a Forensic Psychologist in Soviet Georgia','2006','1',NULL,'7','2.99','102','26.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('737','ROCK INSTINCT','A Astounding Character Study of a Robot And a Moose who must Overcome a Astronaut in Ancient India','2006','1',NULL,'4','0.99','102','28.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('738','ROCKETEER MOTHER','A Awe-Inspiring Character Study of a Robot And a Sumo Wrestler who must Discover a Womanizer in A Shark Tank','2006','1',NULL,'3','0.99','178','27.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('739','ROCKY WAR','A Fast-Paced Display of a Squirrel And a Explorer who must Outgun a Mad Scientist in Nigeria','2006','1',NULL,'4','4.99','145','17.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('740','ROLLERCOASTER BRINGING','A Beautiful Drama of a Robot And a Lumberjack who must Discover a Technical Writer in A Shark Tank','2006','1',NULL,'5','2.99','153','13.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('741','ROMAN PUNK','A Thoughtful Panorama of a Mad Cow And a Student who must Battle a Forensic Psychologist in Berlin','2006','1',NULL,'7','0.99','81','28.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('743','ROOM ROMAN','A Awe-Inspiring Panorama of a Composer And a Secret Agent who must Sink a Composer in A Shark Tank','2006','1',NULL,'7','0.99','60','27.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('745','ROSES TREASURE','A Astounding Panorama of a Monkey And a Secret Agent who must Defeat a Woman in The First Manned Space Station','2006','1',NULL,'5','4.99','162','23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('746','ROUGE SQUAD','A Awe-Inspiring Drama of a Astronaut And a Frisbee who must Conquer a Mad Scientist in Australia','2006','1',NULL,'3','0.99','118','10.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('747','ROXANNE REBEL','A Astounding Story of a Pastry Chef And a Database Administrator who must Fight a Man in The Outback','2006','1',NULL,'5','0.99','171','9.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('749','RULES HUMAN','A Beautiful Epistle of a Astronaut And a Student who must Confront a Monkey in An Abandoned Fun House','2006','1',NULL,'6','4.99','153','19.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('750','RUN PACIFIC','A Touching Tale of a Cat And a Pastry Chef who must Conquer a Pastry Chef in A MySQL Convention','2006','1',NULL,'3','0.99','145','25.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('751','RUNAWAY TENENBAUMS','A Thoughtful Documentary of a Boat And a Man who must Meet a Boat in An Abandoned Fun House','2006','1',NULL,'6','0.99','181','17.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('754','RUSHMORE MERMAID','A Boring Story of a Woman And a Moose who must Reach a Husband in A Shark Tank','2006','1',NULL,'6','2.99','150','17.99','PG-13','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('755','SABRINA MIDNIGHT','A Emotional Story of a Squirrel And a Crocodile who must Succumb a Husband in The Sahara Desert','2006','1',NULL,'5','4.99','99','11.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('756','SADDLE ANTITRUST','A Stunning Epistle of a Feminist And a A Shark who must Battle a Woman in An Abandoned Fun House','2006','1',NULL,'7','2.99','80','10.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('758','SAINTS BRIDE','A Fateful Tale of a Technical Writer And a Composer who must Pursue a Explorer in The Gulf of Mexico','2006','1',NULL,'5','2.99','125','11.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('759','SALUTE APOLLO','A Awe-Inspiring Character Study of a Boy And a Feminist who must Sink a Crocodile in Ancient China','2006','1',NULL,'4','2.99','73','29.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('760','SAMURAI LION','A Fast-Paced Story of a Pioneer And a Astronaut who must Reach a Boat in A Baloon','2006','1',NULL,'5','2.99','110','21.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('761','SANTA PARIS','A Emotional Documentary of a Moose And a Car who must Redeem a Mad Cow in A Baloon Factory','2006','1',NULL,'7','2.99','154','23.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('762','SASSY PACKER','A Fast-Paced Documentary of a Dog And a Teacher who must Find a Moose in A Manhattan Penthouse','2006','1',NULL,'6','0.99','154','29.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('763','SATISFACTION CONFIDENTIAL','A Lacklusture Yarn of a Dentist And a Butler who must Meet a Secret Agent in Ancient China','2006','1',NULL,'3','4.99','75','26.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('764','SATURDAY LAMBS','A Thoughtful Reflection of a Mad Scientist And a Moose who must Kill a Husband in A Baloon','2006','1',NULL,'3','4.99','150','28.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('766','SAVANNAH TOWN','A Awe-Inspiring Tale of a Astronaut And a Database Administrator who must Chase a Secret Agent in The Gulf of Mexico','2006','1',NULL,'5','0.99','84','25.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('768','SCARFACE BANG','A Emotional Yarn of a Teacher And a Girl who must Find a Teacher in A Baloon Factory','2006','1',NULL,'3','4.99','102','11.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('769','SCHOOL JACKET','A Intrepid Yarn of a Monkey And a Boy who must Fight a Composer in A Manhattan Penthouse','2006','1',NULL,'5','4.99','151','21.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('770','SCISSORHANDS SLUMS','A Awe-Inspiring Drama of a Girl And a Technical Writer who must Meet a Feminist in The Canadian Rockies','2006','1',NULL,'5','2.99','147','13.99','G','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('771','SCORPION APOLLO','A Awe-Inspiring Documentary of a Technical Writer And a Husband who must Meet a Monkey in An Abandoned Fun House','2006','1',NULL,'3','4.99','137','23.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('772','SEA VIRGIN','A Fast-Paced Documentary of a Technical Writer And a Pastry Chef who must Escape a Moose in A U-Boat','2006','1',NULL,'4','2.99','80','24.99','PG','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('773','SEABISCUIT PUNK','A Insightful Saga of a Man And a Forensic Psychologist who must Discover a Mad Cow in A MySQL Convention','2006','1',NULL,'6','2.99','112','28.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('774','SEARCHERS WAIT','A Fast-Paced Tale of a Car And a Mad Scientist who must Kill a Womanizer in Ancient Japan','2006','1',NULL,'3','2.99','182','22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('775','SEATTLE EXPECATIONS','A Insightful Reflection of a Crocodile And a Sumo Wrestler who must Meet a Technical Writer in The Sahara Desert','2006','1',NULL,'4','4.99','110','18.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('776','SECRET GROUNDHOG','A Astounding Story of a Cat And a Database Administrator who must Build a Technical Writer in New Orleans','2006','1',NULL,'6','4.99','90','11.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('777','SECRETARY ROUGE','A Action-Packed Panorama of a Mad Cow And a Composer who must Discover a Robot in A Baloon Factory','2006','1',NULL,'5','4.99','158','10.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('778','SECRETS PARADISE','A Fateful Saga of a Cat And a Frisbee who must Kill a Girl in A Manhattan Penthouse','2006','1',NULL,'3','4.99','109','24.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('779','SENSE GREEK','A Taut Saga of a Lumberjack And a Pastry Chef who must Escape a Sumo Wrestler in An Abandoned Fun House','2006','1',NULL,'4','4.99','54','23.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('780','SENSIBILITY REAR','A Emotional Tale of a Robot And a Sumo Wrestler who must Redeem a Pastry Chef in A Baloon Factory','2006','1',NULL,'7','4.99','98','15.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('781','SEVEN SWARM','A Unbelieveable Character Study of a Dog And a Mad Cow who must Kill a Monkey in Berlin','2006','1',NULL,'4','4.99','127','15.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('782','SHAKESPEARE SADDLE','A Fast-Paced Panorama of a Lumberjack And a Database Administrator who must Defeat a Madman in A MySQL Convention','2006','1',NULL,'6','2.99','60','26.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('784','SHANGHAI TYCOON','A Fast-Paced Character Study of a Crocodile And a Lumberjack who must Build a Husband in An Abandoned Fun House','2006','1',NULL,'7','2.99','47','20.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('785','SHAWSHANK BUBBLE','A Lacklusture Story of a Moose And a Monkey who must Confront a Butler in An Abandoned Amusement Park','2006','1',NULL,'6','4.99','80','20.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('787','SHINING ROSES','A Awe-Inspiring Character Study of a Astronaut And a Forensic Psychologist who must Challenge a Madman in Ancient India','2006','1',NULL,'4','0.99','125','12.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('789','SHOCK CABIN','A Fateful Tale of a Mad Cow And a Crocodile who must Meet a Husband in New Orleans','2006','1',NULL,'7','2.99','79','15.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('790','SHOOTIST SUPERFLY','A Fast-Paced Story of a Crocodile And a A Shark who must Sink a Pioneer in Berlin','2006','1',NULL,'6','0.99','67','22.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('792','SHREK LICENSE','A Fateful Yarn of a Secret Agent And a Feminist who must Find a Feminist in A Jet Boat','2006','1',NULL,'7','2.99','154','15.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('793','SHRUNK DIVINE','A Fateful Character Study of a Waitress And a Technical Writer who must Battle a Hunter in A Baloon','2006','1',NULL,'6','2.99','139','14.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('794','SIDE ARK','A Stunning Panorama of a Crocodile And a Womanizer who must Meet a Feminist in The Canadian Rockies','2006','1',NULL,'5','0.99','52','28.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('795','SIEGE MADRE','A Boring Tale of a Frisbee And a Crocodile who must Vanquish a Moose in An Abandoned Mine Shaft','2006','1',NULL,'7','0.99','111','23.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('796','SIERRA DIVIDE','A Emotional Character Study of a Frisbee And a Mad Scientist who must Build a Madman in California','2006','1',NULL,'3','0.99','135','12.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('797','SILENCE KANE','A Emotional Drama of a Sumo Wrestler And a Dentist who must Confront a Sumo Wrestler in A Baloon','2006','1',NULL,'7','0.99','67','23.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('798','SILVERADO GOLDFINGER','A Stunning Epistle of a Sumo Wrestler And a Man who must Challenge a Waitress in Ancient India','2006','1',NULL,'4','4.99','74','11.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('799','SIMON NORTH','A Thrilling Documentary of a Technical Writer And a A Shark who must Face a Pioneer in A Shark Tank','2006','1',NULL,'3','0.99','51','26.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('800','SINNERS ATLANTIS','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('802','SKY MIRACLE','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('803','SLACKER LIAISONS','A Fast-Paced Tale of a A Shark And a Student who must Meet a Crocodile in Ancient China','2006','1',NULL,'7','4.99','179','29.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('804','SLEEPING SUSPECTS','A Stunning Reflection of a Sumo Wrestler And a Explorer who must Sink a Frisbee in A MySQL Convention','2006','1',NULL,'7','4.99','129','13.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('806','SLEEPY JAPANESE','A Emotional Epistle of a Moose And a Composer who must Fight a Technical Writer in The Outback','2006','1',NULL,'4','2.99','137','25.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('807','SLEUTH ORIENT','A Fateful Character Study of a Husband And a Dog who must Find a Feminist in Ancient India','2006','1',NULL,'4','0.99','87','25.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('808','SLING LUKE','A Intrepid Character Study of a Robot And a Monkey who must Reach a Secret Agent in An Abandoned Amusement Park','2006','1',NULL,'5','0.99','84','10.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('809','SLIPPER FIDELITY','A Taut Reflection of a Secret Agent And a Man who must Redeem a Explorer in A MySQL Convention','2006','1',NULL,'5','0.99','156','14.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('810','SLUMS DUCK','A Amazing Character Study of a Teacher And a Database Administrator who must Defeat a Waitress in A Jet Boat','2006','1',NULL,'5','0.99','147','21.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('812','SMOKING BARBARELLA','A Lacklusture Saga of a Mad Cow And a Mad Scientist who must Sink a Cat in A MySQL Convention','2006','1',NULL,'7','0.99','50','13.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('813','SMOOCHY CONTROL','A Thrilling Documentary of a Husband And a Feminist who must Face a Mad Scientist in Ancient China','2006','1',NULL,'7','0.99','184','18.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('815','SNATCHERS MONTEZUMA','A Boring Epistle of a Sumo Wrestler And a Woman who must Escape a Man in The Canadian Rockies','2006','1',NULL,'4','2.99','74','14.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('816','SNOWMAN ROLLERCOASTER','A Fateful Display of a Lumberjack And a Girl who must Succumb a Mad Cow in A Manhattan Penthouse','2006','1',NULL,'3','0.99','62','27.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('817','SOLDIERS EVOLUTION','A Lacklusture Panorama of a A Shark And a Pioneer who must Confront a Student in The First Manned Space Station','2006','1',NULL,'7','4.99','185','27.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('818','SOMETHING DUCK','A Boring Character Study of a Car And a Husband who must Outgun a Frisbee in The First Manned Space Station','2006','1',NULL,'4','4.99','180','17.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('819','SONG HEDWIG','A Amazing Documentary of a Man And a Husband who must Confront a Squirrel in A MySQL Convention','2006','1',NULL,'3','0.99','165','29.99','PG-13','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('820','SONS INTERVIEW','A Taut Character Study of a Explorer And a Mad Cow who must Battle a Hunter in Ancient China','2006','1',NULL,'3','2.99','184','11.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('821','SORORITY QUEEN','A Fast-Paced Display of a Squirrel And a Composer who must Fight a Forensic Psychologist in A Jet Boat','2006','1',NULL,'6','0.99','184','17.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('822','SOUP WISDOM','A Fast-Paced Display of a Robot And a Butler who must Defeat a Butler in A MySQL Convention','2006','1',NULL,'6','0.99','169','12.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('823','SOUTH WAIT','A Amazing Documentary of a Car And a Robot who must Escape a Lumberjack in An Abandoned Amusement Park','2006','1',NULL,'4','2.99','143','21.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('824','SPARTACUS CHEAPER','A Thrilling Panorama of a Pastry Chef And a Secret Agent who must Overcome a Student in A Manhattan Penthouse','2006','1',NULL,'4','4.99','52','19.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('825','SPEAKEASY DATE','A Lacklusture Drama of a Forensic Psychologist And a Car who must Redeem a Man in A Manhattan Penthouse','2006','1',NULL,'6','2.99','165','22.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('826','SPEED SUIT','A Brilliant Display of a Frisbee And a Mad Scientist who must Succumb a Robot in Ancient China','2006','1',NULL,'7','4.99','124','19.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('827','SPICE SORORITY','A Fateful Display of a Pioneer And a Hunter who must Defeat a Husband in An Abandoned Mine Shaft','2006','1',NULL,'5','4.99','141','22.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('828','SPIKING ELEMENT','A Lacklusture Epistle of a Dentist And a Technical Writer who must Find a Dog in A Monastery','2006','1',NULL,'7','2.99','79','12.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('831','SPIRITED CASUALTIES','A Taut Story of a Waitress And a Man who must Face a Car in A Baloon Factory','2006','1',NULL,'5','0.99','138','20.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('832','SPLASH GUMP','A Taut Saga of a Crocodile And a Boat who must Conquer a Hunter in A Shark Tank','2006','1',NULL,'5','0.99','175','16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('834','SPOILERS HELLFIGHTERS','A Fanciful Story of a Technical Writer And a Squirrel who must Defeat a Dog in The Gulf of Mexico','2006','1',NULL,'4','0.99','151','26.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('836','SQUAD FISH','A Fast-Paced Display of a Pastry Chef And a Dog who must Kill a Teacher in Berlin','2006','1',NULL,'3','2.99','136','14.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('837','STAGE WORLD','A Lacklusture Panorama of a Woman And a Frisbee who must Chase a Crocodile in A Jet Boat','2006','1',NULL,'4','2.99','85','19.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('839','STALLION SUNDANCE','A Fast-Paced Tale of a Car And a Dog who must Outgun a A Shark in Australia','2006','1',NULL,'5','0.99','130','23.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('840','STAMPEDE DISTURBING','A Unbelieveable Tale of a Woman And a Lumberjack who must Fight a Frisbee in A U-Boat','2006','1',NULL,'5','0.99','75','26.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('841','STAR OPERATION','A Insightful Character Study of a Girl And a Car who must Pursue a Mad Cow in A Shark Tank','2006','1',NULL,'5','2.99','181','9.99','PG','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('842','STATE WASTELAND','A Beautiful Display of a Cat And a Pastry Chef who must Outrace a Mad Cow in A Jet Boat','2006','1',NULL,'4','2.99','113','13.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('844','STEERS ARMAGEDDON','A Stunning Character Study of a Car And a Girl who must Succumb a Car in A MySQL Convention','2006','1',NULL,'6','4.99','140','16.99','PG','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('845','STEPMOM DREAM','A Touching Epistle of a Crocodile And a Teacher who must Build a Forensic Psychologist in A MySQL Convention','2006','1',NULL,'7','4.99','48','9.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('846','STING PERSONAL','A Fanciful Drama of a Frisbee And a Dog who must Fight a Madman in A Jet Boat','2006','1',NULL,'3','4.99','93','9.99','NC-17','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('849','STORM HAPPINESS','A Insightful Drama of a Feminist And a A Shark who must Vanquish a Boat in A Shark Tank','2006','1',NULL,'6','0.99','57','28.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('850','STORY SIDE','A Lacklusture Saga of a Boy And a Cat who must Sink a Dentist in An Abandoned Mine Shaft','2006','1',NULL,'7','0.99','163','27.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('851','STRAIGHT HOURS','A Boring Panorama of a Secret Agent And a Girl who must Sink a Waitress in The Outback','2006','1',NULL,'3','0.99','151','19.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('852','STRANGELOVE DESIRE','A Awe-Inspiring Panorama of a Lumberjack And a Waitress who must Defeat a Crocodile in An Abandoned Amusement Park','2006','1',NULL,'4','0.99','103','27.99','NC-17','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('853','STRANGER STRANGERS','A Awe-Inspiring Yarn of a Womanizer And a Explorer who must Fight a Woman in The First Manned Space Station','2006','1',NULL,'3','4.99','139','12.99','G','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('854','STRANGERS GRAFFITI','A Brilliant Character Study of a Secret Agent And a Man who must Find a Cat in The Gulf of Mexico','2006','1',NULL,'4','4.99','119','22.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('855','STREAK RIDGEMONT','A Astounding Character Study of a Hunter And a Waitress who must Sink a Man in New Orleans','2006','1',NULL,'7','0.99','132','28.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('856','STREETCAR INTENTIONS','A Insightful Character Study of a Waitress And a Crocodile who must Sink a Waitress in The Gulf of Mexico','2006','1',NULL,'5','4.99','73','11.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('857','STRICTLY SCARFACE','A Touching Reflection of a Crocodile And a Dog who must Chase a Hunter in An Abandoned Fun House','2006','1',NULL,'3','2.99','144','24.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('859','SUGAR WONKA','A Touching Story of a Dentist And a Database Administrator who must Conquer a Astronaut in An Abandoned Amusement Park','2006','1',NULL,'3','4.99','114','20.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('860','SUICIDES SILENCE','A Emotional Character Study of a Car And a Girl who must Face a Composer in A U-Boat','2006','1',NULL,'4','4.99','93','13.99','G','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('862','SUMMER SCARFACE','A Emotional Panorama of a Lumberjack And a Hunter who must Meet a Girl in A Shark Tank','2006','1',NULL,'5','0.99','53','25.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('863','SUN CONFESSIONS','A Beautiful Display of a Mad Cow And a Dog who must Redeem a Waitress in An Abandoned Amusement Park','2006','1',NULL,'5','0.99','141','9.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('864','SUNDANCE INVASION','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('865','SUNRISE LEAGUE','A Beautiful Epistle of a Madman And a Butler who must Face a Crocodile in A Manhattan Penthouse','2006','1',NULL,'3','4.99','135','19.99','PG-13','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('866','SUNSET RACER','A Awe-Inspiring Reflection of a Astronaut And a A Shark who must Defeat a Forensic Psychologist in California','2006','1',NULL,'6','0.99','48','28.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('867','SUPER WYOMING','A Action-Packed Saga of a Pastry Chef And a Explorer who must Discover a A Shark in The Outback','2006','1',NULL,'5','4.99','58','10.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('868','SUPERFLY TRIP','A Beautiful Saga of a Lumberjack And a Teacher who must Build a Technical Writer in An Abandoned Fun House','2006','1',NULL,'5','0.99','114','27.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('869','SUSPECTS QUILLS','A Emotional Epistle of a Pioneer And a Crocodile who must Battle a Man in A Manhattan Penthouse','2006','1',NULL,'4','2.99','47','22.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('870','SWARM GOLD','A Insightful Panorama of a Crocodile And a Boat who must Conquer a Sumo Wrestler in A MySQL Convention','2006','1',NULL,'4','0.99','123','12.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('871','SWEDEN SHINING','A Taut Documentary of a Car And a Robot who must Conquer a Boy in The Canadian Rockies','2006','1',NULL,'6','4.99','176','19.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('872','SWEET BROTHERHOOD','A Unbelieveable Epistle of a Sumo Wrestler And a Hunter who must Chase a Forensic Psychologist in A Baloon','2006','1',NULL,'3','2.99','185','27.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('873','SWEETHEARTS SUSPECTS','A Brilliant Character Study of a Frisbee And a Sumo Wrestler who must Confront a Woman in The Gulf of Mexico','2006','1',NULL,'3','0.99','108','13.99','G','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('874','TADPOLE PARK','A Beautiful Tale of a Frisbee And a Moose who must Vanquish a Dog in An Abandoned Amusement Park','2006','1',NULL,'6','2.99','155','13.99','PG','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('875','TALENTED HOMICIDE','A Lacklusture Panorama of a Dentist And a Forensic Psychologist who must Outrace a Pioneer in A U-Boat','2006','1',NULL,'6','0.99','173','9.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('876','TARZAN VIDEOTAPE','A Fast-Paced Display of a Lumberjack And a Mad Scientist who must Succumb a Sumo Wrestler in The Sahara Desert','2006','1',NULL,'3','2.99','91','11.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('878','TEEN APOLLO','A Awe-Inspiring Drama of a Dog And a Man who must Escape a Robot in A Shark Tank','2006','1',NULL,'3','4.99','74','25.99','G','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('879','TELEGRAPH VOYAGE','A Fateful Yarn of a Husband And a Dog who must Battle a Waitress in A Jet Boat','2006','1',NULL,'3','4.99','148','20.99','PG','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('880','TELEMARK HEARTBREAKERS','A Action-Packed Panorama of a Technical Writer And a Man who must Build a Forensic Psychologist in A Manhattan Penthouse','2006','1',NULL,'6','2.99','152','9.99','PG-13','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('881','TEMPLE ATTRACTION','A Action-Packed Saga of a Forensic Psychologist And a Woman who must Battle a Womanizer in Soviet Georgia','2006','1',NULL,'5','4.99','71','13.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('882','TENENBAUMS COMMAND','A Taut Display of a Pioneer And a Man who must Reach a Girl in The Gulf of Mexico','2006','1',NULL,'4','0.99','99','24.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('883','TEQUILA PAST','A Action-Packed Panorama of a Mad Scientist And a Robot who must Challenge a Student in Nigeria','2006','1',NULL,'6','4.99','53','17.99','PG','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('884','TERMINATOR CLUB','A Touching Story of a Crocodile And a Girl who must Sink a Man in The Gulf of Mexico','2006','1',NULL,'5','4.99','88','11.99','R','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('885','TEXAS WATCH','A Awe-Inspiring Yarn of a Student And a Teacher who must Fight a Teacher in An Abandoned Amusement Park','2006','1',NULL,'7','0.99','179','22.99','NC-17','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('886','THEORY MERMAID','A Fateful Yarn of a Composer And a Monkey who must Vanquish a Womanizer in The First Manned Space Station','2006','1',NULL,'5','0.99','184','9.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('887','THIEF PELICAN','A Touching Documentary of a Madman And a Mad Scientist who must Outrace a Feminist in An Abandoned Mine Shaft','2006','1',NULL,'5','4.99','135','28.99','PG-13','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('889','TIES HUNGER','A Insightful Saga of a Astronaut And a Explorer who must Pursue a Mad Scientist in A U-Boat','2006','1',NULL,'3','4.99','111','28.99','R','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('890','TIGHTS DAWN','A Thrilling Epistle of a Boat And a Secret Agent who must Face a Boy in A Baloon','2006','1',NULL,'5','0.99','172','14.99','R','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('891','TIMBERLAND SKY','A Boring Display of a Man And a Dog who must Redeem a Girl in A U-Boat','2006','1',NULL,'3','0.99','69','13.99','G','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('892','TITANIC BOONDOCK','A Brilliant Reflection of a Feminist And a Dog who must Fight a Boy in A Baloon Factory','2006','1',NULL,'3','4.99','104','18.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('893','TITANS JERK','A Unbelieveable Panorama of a Feminist And a Sumo Wrestler who must Challenge a Technical Writer in Ancient China','2006','1',NULL,'4','4.99','91','11.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('894','TOMATOES HELLFIGHTERS','A Thoughtful Epistle of a Madman And a Astronaut who must Overcome a Monkey in A Shark Tank','2006','1',NULL,'6','0.99','68','23.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('895','TOMORROW HUSTLER','A Thoughtful Story of a Moose And a Husband who must Face a Secret Agent in The Sahara Desert','2006','1',NULL,'3','2.99','142','21.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('896','TOOTSIE PILOT','A Awe-Inspiring Documentary of a Womanizer And a Pastry Chef who must Kill a Lumberjack in Berlin','2006','1',NULL,'3','0.99','157','10.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('899','TOWERS HURRICANE','A Fateful Display of a Monkey And a Car who must Sink a Husband in A MySQL Convention','2006','1',NULL,'7','0.99','144','14.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('900','TOWN ARK','A Awe-Inspiring Documentary of a Moose And a Madman who must Meet a Dog in An Abandoned Mine Shaft','2006','1',NULL,'6','2.99','136','17.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('902','TRADING PINOCCHIO','A Emotional Character Study of a Student And a Explorer who must Discover a Frisbee in The First Manned Space Station','2006','1',NULL,'6','4.99','170','22.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('903','TRAFFIC HOBBIT','A Amazing Epistle of a Squirrel And a Lumberjack who must Succumb a Database Administrator in A U-Boat','2006','1',NULL,'5','4.99','139','13.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('904','TRAIN BUNCH','A Thrilling Character Study of a Robot And a Squirrel who must Face a Dog in Ancient India','2006','1',NULL,'3','4.99','71','26.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('905','TRAINSPOTTING STRANGERS','A Fast-Paced Drama of a Pioneer And a Mad Cow who must Challenge a Madman in Ancient Japan','2006','1',NULL,'7','4.99','132','10.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('906','TRAMP OTHERS','A Brilliant Display of a Composer And a Cat who must Succumb a A Shark in Ancient India','2006','1',NULL,'4','0.99','171','27.99','PG','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('907','TRANSLATION SUMMER','A Touching Reflection of a Man And a Monkey who must Pursue a Womanizer in A MySQL Convention','2006','1',NULL,'4','0.99','168','10.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('908','TRAP GUYS','A Unbelieveable Story of a Boy And a Mad Cow who must Challenge a Database Administrator in The Sahara Desert','2006','1',NULL,'3','4.99','110','11.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('910','TREATMENT JEKYLL','A Boring Story of a Teacher And a Student who must Outgun a Cat in An Abandoned Mine Shaft','2006','1',NULL,'3','0.99','87','19.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('911','TRIP NEWTON','A Fanciful Character Study of a Lumberjack And a Car who must Discover a Cat in An Abandoned Amusement Park','2006','1',NULL,'7','4.99','64','14.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('912','TROJAN TOMORROW','A Astounding Panorama of a Husband And a Sumo Wrestler who must Pursue a Boat in Ancient India','2006','1',NULL,'3','2.99','52','9.99','PG','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('914','TROUBLE DATE','A Lacklusture Panorama of a Forensic Psychologist And a Woman who must Kill a Explorer in Ancient Japan','2006','1',NULL,'6','2.99','61','13.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('915','TRUMAN CRAZY','A Thrilling Epistle of a Moose And a Boy who must Meet a Database Administrator in A Monastery','2006','1',NULL,'7','4.99','92','9.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('917','TUXEDO MILE','A Boring Drama of a Man And a Forensic Psychologist who must Face a Frisbee in Ancient India','2006','1',NULL,'3','2.99','152','24.99','R','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('918','TWISTED PIRATES','A Touching Display of a Frisbee And a Boat who must Kill a Girl in A MySQL Convention','2006','1',NULL,'4','4.99','152','23.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('919','TYCOON GATHERING','A Emotional Display of a Husband And a A Shark who must Succumb a Madman in A Manhattan Penthouse','2006','1',NULL,'3','4.99','82','17.99','G','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('921','UNCUT SUICIDES','A Intrepid Yarn of a Explorer And a Pastry Chef who must Pursue a Mad Cow in A U-Boat','2006','1',NULL,'7','2.99','172','29.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('922','UNDEFEATED DALMATIONS','A Unbelieveable Display of a Crocodile And a Feminist who must Overcome a Moose in An Abandoned Amusement Park','2006','1',NULL,'7','4.99','107','22.99','PG-13','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('923','UNFAITHFUL KILL','A Taut Documentary of a Waitress And a Mad Scientist who must Battle a Technical Writer in New Orleans','2006','1',NULL,'7','2.99','78','12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('924','UNFORGIVEN ZOOLANDER','A Taut Epistle of a Monkey And a Sumo Wrestler who must Vanquish a A Shark in A Baloon Factory','2006','1',NULL,'7','0.99','129','15.99','PG','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('925','UNITED PILOT','A Fast-Paced Reflection of a Cat And a Mad Cow who must Fight a Car in The Sahara Desert','2006','1',NULL,'3','0.99','164','27.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('926','UNTOUCHABLES SUNRISE','A Amazing Documentary of a Woman And a Astronaut who must Outrace a Teacher in An Abandoned Fun House','2006','1',NULL,'5','2.99','120','11.99','NC-17','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('928','UPTOWN YOUNG','A Fateful Documentary of a Dog And a Hunter who must Pursue a Teacher in An Abandoned Amusement Park','2006','1',NULL,'5','2.99','84','16.99','PG','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('929','USUAL UNTOUCHABLES','A Touching Display of a Explorer And a Lumberjack who must Fight a Forensic Psychologist in A Shark Tank','2006','1',NULL,'5','4.99','128','21.99','PG-13','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('930','VACATION BOONDOCK','A Fanciful Character Study of a Secret Agent And a Mad Scientist who must Reach a Teacher in Australia','2006','1',NULL,'4','2.99','145','23.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('933','VAMPIRE WHALE','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('934','VANILLA DAY','A Fast-Paced Saga of a Girl And a Forensic Psychologist who must Redeem a Girl in Nigeria','2006','1',NULL,'7','4.99','122','20.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('935','VANISHED GARDEN','A Intrepid Character Study of a Squirrel And a A Shark who must Kill a Lumberjack in California','2006','1',NULL,'5','0.99','142','17.99','R','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('936','VANISHING ROCKY','A Brilliant Reflection of a Man And a Woman who must Conquer a Pioneer in A MySQL Convention','2006','1',NULL,'3','2.99','123','21.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('937','VARSITY TRIP','A Action-Packed Character Study of a Astronaut And a Explorer who must Reach a Monkey in A MySQL Convention','2006','1',NULL,'7','2.99','85','14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('938','VELVET TERMINATOR','A Lacklusture Tale of a Pastry Chef And a Technical Writer who must Confront a Crocodile in An Abandoned Amusement Park','2006','1',NULL,'3','4.99','173','14.99','R','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('939','VERTIGO NORTHWEST','A Unbelieveable Display of a Mad Scientist And a Mad Scientist who must Outgun a Mad Cow in Ancient Japan','2006','1',NULL,'4','2.99','90','17.99','R','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('940','VICTORY ACADEMY','A Insightful Epistle of a Mad Scientist And a Explorer who must Challenge a Cat in The Sahara Desert','2006','1',NULL,'6','0.99','64','19.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('943','VILLAIN DESPERATE','A Boring Yarn of a Pioneer And a Feminist who must Redeem a Cat in An Abandoned Amusement Park','2006','1',NULL,'4','4.99','76','27.99','PG-13','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('944','VIRGIN DAISY','A Awe-Inspiring Documentary of a Robot And a Mad Scientist who must Reach a Database Administrator in A Shark Tank','2006','1',NULL,'6','4.99','179','29.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('946','VIRTUAL SPOILERS','A Fateful Tale of a Database Administrator And a Squirrel who must Discover a Student in Soviet Georgia','2006','1',NULL,'3','4.99','144','14.99','NC-17','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('947','VISION TORQUE','A Thoughtful Documentary of a Dog And a Man who must Sink a Man in A Shark Tank','2006','1',NULL,'5','0.99','59','16.99','PG-13','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('948','VOICE PEACH','A Amazing Panorama of a Pioneer And a Student who must Overcome a Mad Scientist in A Manhattan Penthouse','2006','1',NULL,'6','0.99','139','22.99','PG-13','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('949','VOLCANO TEXAS','A Awe-Inspiring Yarn of a Hunter And a Feminist who must Challenge a Dentist in The Outback','2006','1',NULL,'6','0.99','157','27.99','NC-17','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('951','VOYAGE LEGALLY','An 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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('952','WAGON JAWS','A Intrepid Drama of a Moose And a Boat who must Kill a Explorer in A Manhattan Penthouse','2006','1',NULL,'7','2.99','152','17.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('953','WAIT CIDER','A Intrepid Epistle of a Woman And a Forensic Psychologist who must Succumb a Astronaut in A Manhattan Penthouse','2006','1',NULL,'3','0.99','112','9.99','PG-13','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('955','WALLS ARTIST','A Insightful Panorama of a Teacher And a Teacher who must Overcome a Mad Cow in An Abandoned Fun House','2006','1',NULL,'7','4.99','135','19.99','PG','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('956','WANDA CHAMBER','A Insightful Drama of a A Shark And a Pioneer who must Find a Womanizer in The Outback','2006','1',NULL,'7','4.99','107','23.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('957','WAR NOTTING','A Boring Drama of a Teacher And a Sumo Wrestler who must Challenge a Secret Agent in The Canadian Rockies','2006','1',NULL,'7','4.99','80','26.99','G','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('958','WARDROBE PHANTOM','A Action-Packed Display of a Mad Cow And a Astronaut who must Kill a Car in Ancient India','2006','1',NULL,'6','2.99','178','19.99','G','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('959','WARLOCK WEREWOLF','A Astounding Yarn of a Pioneer And a Crocodile who must Defeat a A Shark in The Outback','2006','1',NULL,'6','2.99','83','10.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('960','WARS PLUTO','A Taut Reflection of a Teacher And a Database Administrator who must Chase a Madman in The Sahara Desert','2006','1',NULL,'5','2.99','128','15.99','G','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('961','WASH HEAVENLY','A Awe-Inspiring Reflection of a Cat And a Pioneer who must Escape a Hunter in Ancient China','2006','1',NULL,'7','4.99','161','22.99','R','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('962','WASTELAND DIVINE','A Fanciful Story of a Database Administrator And a Womanizer who must Fight a Database Administrator in Ancient China','2006','1',NULL,'7','2.99','85','18.99','PG','Trailers,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('966','WEDDING APOLLO','A Action-Packed Tale of a Student And a Waitress who must Conquer a Lumberjack in An Abandoned Mine Shaft','2006','1',NULL,'3','0.99','70','14.99','PG','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('967','WEEKEND PERSONAL','A Fast-Paced Documentary of a Car And a Butler who must Find a Frisbee in A Jet Boat','2006','1',NULL,'5','2.99','134','26.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('968','WEREWOLF LOLA','A Fanciful Story of a Man And a Sumo Wrestler who must Outrace a Student in A Monastery','2006','1',NULL,'6','4.99','79','19.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('969','WEST LION','A Intrepid Drama of a Butler And a Lumberjack who must Challenge a Database Administrator in A Manhattan Penthouse','2006','1',NULL,'4','4.99','159','29.99','G','Trailers','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('971','WHALE BIKINI','A Intrepid Story of a Pastry Chef And a Database Administrator who must Kill a Feminist in A MySQL Convention','2006','1',NULL,'4','4.99','109','11.99','PG-13','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('973','WIFE TURN','A Awe-Inspiring Epistle of a Teacher And a Feminist who must Confront a Pioneer in Ancient Japan','2006','1',NULL,'3','4.99','183','27.99','NC-17','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('974','WILD APOLLO','A Beautiful Story of a Monkey And a Sumo Wrestler who must Conquer a A Shark in A MySQL Convention','2006','1',NULL,'4','0.99','181','24.99','R','Trailers,Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('975','WILLOW TRACY','A Brilliant Panorama of a Boat And a Astronaut who must Challenge a Teacher in A Manhattan Penthouse','2006','1',NULL,'6','2.99','137','22.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('976','WIND PHANTOM','A Touching Saga of a Madman And a Forensic Psychologist who must Build a Sumo Wrestler in An Abandoned Mine Shaft','2006','1',NULL,'6','0.99','111','12.99','R','Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('977','WINDOW SIDE','A Astounding Character Study of a Womanizer And a Hunter who must Escape a Robot in A Monastery','2006','1',NULL,'3','2.99','85','25.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('978','WISDOM WORKER','A Unbelieveable Saga of a Forensic Psychologist And a Student who must Face a Squirrel in The First Manned Space Station','2006','1',NULL,'3','0.99','98','12.99','R','Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('979','WITCHES PANIC','A Awe-Inspiring Drama of a Secret Agent And a Hunter who must Fight a Moose in Nigeria','2006','1',NULL,'6','4.99','100','10.99','NC-17','Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('980','WIZARD COLDBLOODED','A Lacklusture Display of a Robot And a Girl who must Defeat a Sumo Wrestler in A MySQL Convention','2006','1',NULL,'4','4.99','75','12.99','PG','Commentaries,Deleted Scenes,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('981','WOLVES DESIRE','A Fast-Paced Drama of a Squirrel And a Robot who must Succumb a Technical Writer in A Manhattan Penthouse','2006','1',NULL,'7','0.99','55','13.99','NC-17','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('983','WON DARES','A Unbelieveable Documentary of a Teacher And a Monkey who must Defeat a Explorer in A U-Boat','2006','1',NULL,'7','2.99','105','18.99','PG','Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('984','WONDERFUL DROP','A Boring Panorama of a Woman And a Madman who must Overcome a Butler in A U-Boat','2006','1',NULL,'3','2.99','126','20.99','NC-17','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('985','WONDERLAND CHRISTMAS','A Awe-Inspiring Character Study of a Waitress And a Car who must Pursue a Mad Scientist in The First Manned Space Station','2006','1',NULL,'4','4.99','111','19.99','PG','Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('986','WONKA SEA','A Brilliant Saga of a Boat And a Mad Scientist who must Meet a Moose in Ancient India','2006','1',NULL,'6','2.99','85','24.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('987','WORDS HUNTER','A Action-Packed Reflection of a Composer And a Mad Scientist who must Face a Pioneer in A MySQL Convention','2006','1',NULL,'3','2.99','116','13.99','PG','Trailers,Commentaries,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('988','WORKER TARZAN','A Action-Packed Yarn of a Secret Agent And a Technical Writer who must Battle a Sumo Wrestler in The First Manned Space Station','2006','1',NULL,'7','2.99','139','26.99','R','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('990','WORLD LEATHERNECKS','A Unbelieveable Tale of a Pioneer And a Astronaut who must Overcome a Robot in An Abandoned Amusement Park','2006','1',NULL,'3','0.99','171','13.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('992','WRATH MILE','A Intrepid Reflection of a Technical Writer And a Hunter who must Defeat a Sumo Wrestler in A Monastery','2006','1',NULL,'5','0.99','176','17.99','NC-17','Trailers,Commentaries','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('993','WRONG BEHAVIOR','A Emotional Saga of a Crocodile And a Sumo Wrestler who must Discover a Mad Cow in New Orleans','2006','1',NULL,'6','2.99','178','10.99','PG-13','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('994','WYOMING STORM','A Awe-Inspiring Panorama of a Robot And a Boat who must Overcome a Feminist in A U-Boat','2006','1',NULL,'6','4.99','100','29.99','PG-13','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('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.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('996','YOUNG LANGUAGE','A Unbelieveable Yarn of a Boat And a Database Administrator who must Meet a Boy in The First Manned Space Station','2006','1',NULL,'6','0.99','183','9.99','G','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('997','YOUTH KICK','A Touching Drama of a Teacher And a Cat who must Challenge a Technical Writer in A U-Boat','2006','1',NULL,'4','0.99','179','14.99','NC-17','Trailers,Behind the Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('998','ZHIVAGO CORE','A Fateful Yarn of a Composer And a Man who must Face a Boy in The Canadian Rockies','2006','1',NULL,'6','0.99','105','10.99','NC-17','Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('999','ZOOLANDER FICTION','A Fateful Reflection of a Waitress And a Boat who must Discover a Sumo Wrestler in Ancient China','2006','1',NULL,'5','2.99','101','28.99','R','Trailers,Deleted Scenes','2006-02-15 05:03:42.000') +; +Insert into film + (film_id,title,description,release_year,language_id,original_language_id,rental_duration,rental_rate,length,replacement_cost,rating,special_features,last_update) +Values +('1000','ZORRO ARK','A Intrepid Panorama of a Mad Scientist And a Boy who must Redeem a Boy in A Monastery','2006','1',NULL,'3','4.99','50','18.99','NC-17','Trailers,Commentaries,Behind the Scenes','2006-02-15 05:03:42.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table inventory +-- Start of script +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1','1','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2','1','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3','1','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4','1','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('5','1','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('6','1','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('7','1','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('8','1','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('9','2','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('10','2','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('11','2','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('12','3','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('13','3','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('14','3','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('15','3','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('16','4','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('17','4','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('18','4','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('19','4','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('20','4','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('21','4','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('22','4','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('23','5','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('24','5','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('25','5','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('26','6','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('27','6','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('28','6','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('29','6','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('30','6','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('31','6','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('32','7','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('33','7','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('34','7','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('35','7','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('36','7','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('37','8','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('38','8','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('39','8','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('40','8','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('41','9','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('42','9','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('43','9','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('44','9','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('45','9','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('46','10','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('47','10','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('48','10','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('49','10','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('50','10','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('51','10','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('52','10','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('53','11','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('54','11','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('55','11','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('56','11','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('57','11','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('58','11','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('59','11','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('60','12','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('61','12','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('62','12','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('63','12','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('64','12','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('65','12','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('66','12','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('67','13','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('68','13','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('69','13','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('70','13','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('71','15','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('72','15','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('73','15','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('74','15','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('75','15','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('76','15','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('77','16','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('78','16','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('79','16','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('80','16','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('81','17','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('82','17','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('83','17','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('84','17','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('85','17','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('86','17','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('87','18','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('88','18','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('89','18','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('90','18','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('91','18','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('92','18','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('93','19','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('94','19','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('95','19','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('96','19','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('97','19','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('98','19','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('99','20','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('100','20','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('101','20','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('102','21','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('103','21','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('104','21','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('105','21','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('106','21','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('107','21','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('108','22','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('109','22','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('110','22','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('111','22','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('112','22','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('113','22','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('114','22','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('115','23','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('116','23','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('117','23','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('118','23','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('119','23','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('120','24','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('121','24','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('122','24','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('123','24','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('124','25','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('125','25','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('126','25','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('127','25','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('128','25','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('129','25','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('130','26','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('131','26','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('132','26','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('133','26','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('134','26','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('135','27','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('136','27','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('137','27','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('138','27','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('139','28','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('140','28','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('141','28','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('142','29','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('143','29','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('144','30','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('145','30','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('146','31','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('147','31','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('148','31','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('149','31','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('150','31','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('151','31','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('152','31','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('153','31','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('154','32','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('155','32','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('156','34','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('157','34','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('158','34','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('159','34','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('160','35','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('161','35','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('162','35','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('163','35','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('164','35','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('165','35','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('166','35','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('167','37','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('168','37','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('169','37','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('170','37','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('171','37','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('172','37','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('173','37','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('174','39','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('175','39','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('176','39','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('177','39','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('178','39','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('179','39','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('180','39','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('181','40','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('182','40','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('183','40','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('184','40','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('185','42','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('186','42','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('187','42','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('188','42','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('189','43','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('190','43','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('191','43','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('192','43','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('193','43','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('194','43','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('195','43','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('196','44','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('197','44','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('198','44','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('199','44','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('200','44','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('201','45','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('202','45','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('203','45','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('204','45','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('205','45','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('206','45','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('207','46','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('208','46','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('209','46','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('210','47','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('211','47','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('212','48','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('213','48','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('214','48','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('215','48','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('216','49','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('217','49','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('218','49','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('219','49','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('220','49','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('221','49','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('222','50','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('223','50','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('224','50','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('225','50','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('226','50','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('227','51','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('228','51','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('229','51','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('230','51','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('231','51','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('232','51','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('233','52','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('234','52','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('235','53','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('236','53','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('237','54','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('238','54','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('239','54','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('240','54','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('241','54','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('242','55','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('243','55','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('244','55','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('245','55','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('246','55','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('247','55','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('248','56','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('249','56','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('250','56','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('251','56','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('252','56','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('253','57','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('254','57','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('255','57','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('256','57','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('257','57','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('258','57','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('259','57','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('260','58','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('261','58','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('262','58','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('263','58','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('264','59','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('265','59','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('266','59','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('267','59','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('268','59','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('269','60','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('270','60','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('271','60','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('272','61','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('273','61','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('274','61','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('275','61','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('276','61','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('277','61','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('278','62','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('279','62','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('280','63','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('281','63','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('282','63','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('283','63','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('284','64','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('285','64','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('286','64','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('287','65','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('288','65','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('289','65','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('290','65','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('291','66','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('292','66','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('293','66','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('294','67','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('295','67','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('296','67','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('297','67','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('298','67','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('299','67','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('300','68','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('301','68','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('302','68','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('303','68','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('304','69','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('305','69','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('306','69','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('307','69','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('308','69','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('309','69','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('310','69','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('311','69','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('312','70','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('313','70','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('314','70','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('315','70','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('316','71','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('317','71','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('318','71','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('319','71','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('320','72','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('321','72','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('322','72','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('323','72','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('324','72','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('325','72','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('326','73','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('327','73','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('328','73','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('329','73','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('330','73','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('331','73','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('332','73','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('333','73','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('334','74','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('335','74','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('336','74','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('337','74','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('338','74','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('339','75','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('340','75','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('341','75','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('342','76','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('343','76','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('344','76','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('345','77','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('346','77','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('347','77','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('348','77','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('349','77','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('350','77','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('351','78','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('352','78','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('353','78','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('354','78','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('355','78','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('356','78','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('357','78','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('358','79','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('359','79','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('360','79','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('361','79','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('362','79','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('363','79','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('364','80','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('365','80','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('366','80','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('367','80','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('368','81','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('369','81','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('370','81','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('371','81','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('372','82','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('373','82','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('374','83','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('375','83','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('376','83','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('377','83','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('378','83','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('379','84','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('380','84','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('381','84','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('382','84','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('383','85','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('384','85','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('385','85','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('386','85','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('387','86','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('388','86','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('389','86','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('390','86','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('391','86','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('392','86','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('393','86','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('394','86','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('395','88','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('396','88','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('397','88','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('398','88','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('399','89','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('400','89','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('401','89','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('402','89','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('403','89','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('404','89','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('405','90','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('406','90','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('407','90','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('408','90','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('409','90','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('410','90','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('411','91','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('412','91','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('413','91','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('414','91','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('415','91','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('416','91','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('417','91','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('418','91','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('419','92','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('420','92','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('421','92','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('422','92','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('423','93','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('424','93','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('425','93','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('426','94','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('427','94','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('428','95','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('429','95','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('430','95','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('431','95','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('432','95','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('433','96','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('434','96','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('435','96','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('436','97','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('437','97','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('438','97','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('439','97','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('440','97','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('441','97','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('442','98','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('443','98','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('444','98','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('445','99','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('446','99','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('447','99','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('448','99','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('449','99','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('450','99','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('451','100','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('452','100','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('453','100','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('454','100','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('455','100','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('456','100','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('457','101','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('458','101','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('459','101','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('460','101','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('461','101','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('462','101','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('463','102','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('464','102','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('465','103','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('466','103','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('467','103','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('468','103','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('469','103','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('470','103','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('471','103','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('472','103','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('473','104','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('474','104','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('475','104','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('476','105','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('477','105','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('478','105','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('479','105','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('480','105','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('481','106','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('482','106','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('483','107','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('484','107','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('485','109','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('486','109','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('487','109','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('488','109','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('489','109','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('490','109','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('491','109','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('492','109','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('493','110','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('494','110','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('495','110','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('496','110','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('497','111','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('498','111','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('499','111','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('500','111','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('501','112','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('502','112','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('503','112','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('504','112','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('505','112','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('506','112','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('507','112','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('508','113','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('509','113','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('510','113','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('511','113','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('512','114','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('513','114','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('514','114','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('515','114','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('516','114','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('517','114','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('518','114','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('519','115','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('520','115','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('521','115','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('522','115','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('523','115','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('524','115','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('525','115','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('526','116','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('527','116','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('528','116','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('529','116','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('530','116','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('531','116','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('532','117','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('533','117','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('534','117','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('535','117','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('536','117','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('537','117','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('538','118','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('539','118','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('540','118','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('541','118','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('542','118','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('543','118','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('544','119','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('545','119','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('546','119','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('547','119','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('548','119','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('549','119','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('550','119','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('551','120','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('552','120','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('553','120','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('554','121','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('555','121','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('556','121','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('557','121','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('558','121','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('559','121','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('560','122','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('561','122','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('562','122','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('563','122','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('564','122','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('565','122','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('566','122','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('567','123','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('568','123','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('569','123','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('570','123','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('571','123','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('572','124','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('573','124','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('574','124','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('575','125','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('576','125','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('577','126','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('578','126','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('579','126','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('580','127','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('581','127','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('582','127','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('583','127','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('584','127','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('585','127','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('586','127','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('587','127','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('588','129','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('589','129','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('590','129','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('591','129','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('592','129','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('593','129','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('594','130','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('595','130','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('596','130','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('597','130','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('598','130','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('599','130','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('600','131','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('601','131','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('602','131','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('603','131','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('604','131','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('605','131','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('606','132','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('607','132','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('608','132','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('609','132','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('610','132','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('611','132','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('612','133','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('613','133','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('614','133','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('615','133','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('616','134','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('617','134','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('618','134','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('619','135','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('620','135','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('621','135','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('622','135','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('623','135','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('624','135','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('625','135','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('626','136','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('627','136','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('628','136','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('629','137','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('630','137','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('631','137','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('632','137','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('633','138','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('634','138','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('635','138','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('636','138','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('637','138','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('638','139','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('639','139','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('640','139','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('641','139','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('642','139','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('643','139','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('644','140','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('645','140','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('646','140','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('647','140','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('648','140','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('649','141','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('650','141','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('651','141','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('652','141','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('653','141','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('654','142','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('655','142','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('656','142','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('657','142','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('658','142','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('659','143','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('660','143','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('661','143','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('662','143','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('663','143','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('664','143','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('665','143','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('666','145','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('667','145','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('668','145','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('669','146','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('670','146','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('671','146','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('672','147','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('673','147','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('674','147','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('675','147','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('676','147','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('677','147','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('678','149','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('679','149','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('680','149','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('681','149','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('682','149','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('683','149','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('684','150','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('685','150','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('686','150','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('687','150','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('688','150','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('689','150','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('690','151','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('691','151','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('692','151','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('693','151','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('694','152','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('695','152','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('696','152','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('697','152','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('698','153','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('699','153','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('700','153','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('701','153','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('702','154','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('703','154','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('704','154','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('705','154','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('706','154','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('707','154','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('708','154','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('709','155','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('710','155','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('711','155','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('712','155','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('713','155','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('714','156','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('715','156','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('716','157','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('717','157','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('718','157','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('719','158','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('720','158','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('721','158','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('722','158','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('723','158','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('724','159','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('725','159','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('726','159','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('727','159','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('728','159','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('729','159','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('730','159','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('731','160','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('732','160','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('733','160','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('734','160','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('735','160','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('736','161','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('737','161','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('738','162','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('739','162','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('740','162','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('741','162','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('742','162','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('743','162','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('744','162','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('745','163','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('746','163','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('747','163','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('748','164','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('749','164','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('750','164','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('751','164','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('752','164','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('753','165','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('754','165','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('755','165','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('756','165','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('757','165','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('758','166','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('759','166','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('760','166','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('761','166','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('762','166','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('763','166','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('764','167','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('765','167','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('766','167','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('767','167','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('768','167','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('769','167','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('770','167','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('771','168','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('772','168','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('773','169','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('774','169','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('775','169','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('776','169','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('777','170','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('778','170','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('779','170','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('780','170','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('781','170','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('782','170','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('783','172','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('784','172','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('785','172','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('786','172','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('787','172','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('788','172','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('789','172','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('790','173','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('791','173','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('792','173','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('793','173','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('794','173','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('795','174','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('796','174','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('797','174','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('798','174','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('799','174','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('800','174','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('801','174','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('802','174','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('803','175','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('804','175','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('805','175','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('806','175','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('807','175','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('808','176','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('809','176','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('810','176','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('811','176','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('812','176','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('813','176','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('814','177','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('815','177','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('816','177','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('817','178','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('818','178','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('819','179','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('820','179','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('821','179','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('822','179','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('823','180','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('824','180','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('825','181','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('826','181','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('827','181','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('828','181','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('829','181','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('830','181','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('831','181','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('832','182','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('833','182','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('834','183','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('835','183','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('836','183','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('837','183','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('838','183','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('839','183','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('840','184','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('841','184','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('842','184','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('843','184','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('844','184','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('845','185','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('846','185','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('847','186','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('848','186','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('849','186','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('850','186','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('851','187','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('852','187','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('853','187','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('854','188','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('855','188','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('856','188','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('857','189','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('858','189','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('859','189','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('860','189','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('861','189','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('862','189','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('863','190','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('864','190','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('865','190','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('866','190','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('867','191','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('868','191','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('869','191','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('870','191','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('871','191','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('872','191','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('873','193','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('874','193','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('875','193','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('876','193','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('877','193','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('878','193','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('879','193','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('880','193','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('881','194','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('882','194','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('883','194','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('884','194','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('885','196','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('886','196','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('887','197','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('888','197','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('889','199','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('890','199','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('891','199','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('892','199','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('893','199','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('894','199','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('895','199','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('896','199','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('897','200','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('898','200','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('899','200','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('900','200','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('901','200','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('902','200','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('903','200','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('904','200','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('905','201','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('906','201','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('907','201','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('908','201','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('909','202','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('910','202','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('911','202','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('912','203','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('913','203','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('914','203','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('915','203','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('916','204','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('917','204','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('918','204','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('919','204','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('920','204','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('921','204','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('922','205','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('923','205','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('924','205','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('925','205','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('926','206','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('927','206','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('928','206','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('929','206','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('930','206','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('931','206','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('932','206','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('933','206','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('934','207','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('935','207','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('936','207','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('937','207','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('938','208','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('939','208','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('940','208','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('941','209','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('942','209','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('943','209','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('944','209','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('945','210','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('946','210','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('947','210','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('948','211','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('949','211','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('950','212','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('951','212','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('952','212','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('953','212','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('954','212','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('955','213','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('956','213','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('957','213','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('958','213','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('959','214','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('960','214','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('961','214','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('962','214','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('963','215','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('964','215','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('965','215','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('966','215','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('967','215','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('968','215','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('969','216','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('970','216','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('971','216','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('972','216','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('973','216','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('974','218','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('975','218','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('976','218','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('977','218','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('978','218','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('979','218','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('980','218','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('981','219','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('982','219','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('983','219','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('984','219','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('985','220','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('986','220','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('987','220','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('988','220','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('989','220','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('990','220','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('991','220','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('992','220','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('993','222','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('994','222','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('995','222','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('996','222','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('997','222','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('998','222','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('999','223','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1000','223','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1001','224','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1002','224','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1003','225','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1004','225','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1005','225','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1006','226','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1007','226','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1008','226','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1009','226','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1010','226','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1011','227','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1012','227','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1013','227','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1014','227','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1015','227','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1016','228','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1017','228','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1018','228','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1019','228','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1020','228','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1021','228','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1022','228','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1023','229','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1024','229','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1025','229','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1026','229','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1027','230','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1028','230','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1029','231','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1030','231','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1031','231','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1032','231','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1033','231','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1034','231','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1035','231','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1036','231','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1037','232','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1038','232','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1039','232','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1040','232','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1041','232','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1042','233','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1043','233','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1044','233','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1045','233','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1046','233','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1047','233','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1048','234','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1049','234','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1050','234','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1051','234','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1052','234','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1053','234','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1054','234','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1055','235','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1056','235','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1057','235','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1058','235','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1059','235','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1060','235','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1061','236','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1062','236','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1063','236','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1064','236','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1065','237','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1066','237','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1067','238','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1068','238','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1069','239','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1070','239','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1071','239','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1072','239','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1073','239','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1074','239','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1075','239','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1076','239','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1077','240','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1078','240','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1079','240','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1080','241','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1081','241','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1082','241','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1083','241','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1084','242','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1085','242','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1086','242','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1087','242','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1088','242','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1089','243','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1090','243','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1091','243','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1092','243','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1093','243','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1094','243','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1095','244','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1096','244','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1097','244','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1098','244','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1099','244','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1100','244','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1101','244','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1102','245','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1103','245','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1104','245','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1105','245','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1106','245','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1107','245','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1108','245','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1109','246','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1110','246','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1111','246','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1112','247','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1113','247','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1114','247','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1115','247','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1116','247','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1117','247','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1118','247','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1119','248','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1120','248','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1121','249','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1122','249','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1123','249','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1124','249','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1125','249','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1126','249','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1127','250','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1128','250','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1129','250','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1130','250','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1131','251','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1132','251','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1133','251','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1134','251','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1135','251','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1136','252','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1137','252','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1138','252','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1139','252','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1140','252','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1141','252','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1142','253','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1143','253','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1144','253','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1145','253','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1146','253','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1147','253','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1148','254','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1149','254','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1150','254','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1151','254','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1152','254','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1153','255','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1154','255','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1155','255','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1156','255','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1157','255','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1158','255','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1159','256','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1160','256','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1161','256','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1162','257','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1163','257','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1164','257','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1165','258','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1166','258','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1167','258','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1168','258','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1169','259','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1170','259','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1171','260','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1172','260','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1173','260','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1174','260','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1175','261','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1176','261','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1177','262','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1178','262','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1179','263','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1180','263','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1181','263','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1182','263','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1183','263','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1184','263','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1185','263','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1186','264','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1187','264','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1188','265','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1189','265','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1190','265','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1191','265','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1192','266','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1193','266','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1194','266','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1195','266','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1196','266','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1197','266','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1198','266','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1199','266','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1200','267','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1201','267','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1202','267','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1203','267','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1204','267','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1205','267','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1206','268','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1207','268','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1208','269','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1209','269','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1210','269','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1211','269','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1212','269','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1213','269','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1214','270','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1215','270','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1216','270','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1217','270','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1218','270','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1219','270','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1220','270','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1221','271','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1222','271','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1223','271','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1224','271','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1225','271','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1226','272','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1227','272','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1228','272','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1229','272','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1230','273','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1231','273','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1232','273','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1233','273','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1234','273','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1235','273','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1236','273','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1237','274','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1238','274','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1239','274','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1240','274','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1241','274','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1242','274','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1243','274','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1244','275','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1245','275','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1246','275','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1247','275','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1248','275','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1249','276','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1250','276','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1251','276','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1252','276','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1253','277','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1254','277','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1255','277','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1256','278','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1257','278','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1258','279','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1259','279','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1260','280','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1261','280','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1262','280','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1263','280','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1264','280','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1265','280','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1266','281','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1267','281','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1268','281','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1269','281','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1270','281','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1271','281','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1272','282','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1273','282','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1274','282','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1275','282','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1276','282','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1277','282','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1278','283','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1279','283','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1280','283','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1281','284','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1282','284','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1283','284','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1284','284','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1285','284','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1286','284','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1287','284','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1288','285','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1289','285','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1290','285','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1291','285','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1292','285','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1293','285','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1294','285','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1295','286','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1296','286','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1297','286','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1298','286','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1299','286','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1300','287','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1301','287','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1302','287','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1303','287','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1304','288','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1305','288','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1306','288','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1307','288','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1308','288','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1309','288','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1310','289','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1311','289','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1312','290','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1313','290','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1314','290','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1315','291','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1316','291','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1317','291','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1318','291','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1319','292','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1320','292','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1321','292','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1322','292','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1323','292','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1324','292','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1325','293','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1326','293','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1327','293','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1328','293','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1329','293','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1330','294','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1331','294','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1332','294','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1333','294','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1334','294','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1335','295','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1336','295','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1337','295','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1338','295','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1339','295','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1340','295','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1341','295','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1342','295','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1343','296','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1344','296','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1345','296','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1346','296','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1347','297','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1348','297','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1349','298','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1350','298','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1351','298','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1352','298','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1353','298','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1354','299','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1355','299','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1356','299','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1357','299','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1358','300','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1359','300','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1360','300','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1361','300','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1362','300','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1363','300','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1364','301','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1365','301','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1366','301','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1367','301','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1368','301','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1369','301','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1370','301','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1371','301','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1372','302','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1373','302','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1374','302','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1375','302','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1376','302','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1377','302','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1378','303','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1379','303','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1380','303','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1381','303','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1382','303','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1383','303','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1384','304','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1385','304','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1386','304','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1387','304','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1388','304','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1389','304','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1390','305','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1391','305','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1392','305','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1393','305','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1394','305','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1395','305','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1396','305','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1397','306','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1398','306','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1399','306','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1400','307','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1401','307','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1402','307','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1403','307','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1404','307','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1405','307','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1406','308','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1407','308','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1408','308','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1409','308','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1410','309','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1411','309','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1412','309','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1413','309','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1414','309','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1415','309','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1416','310','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1417','310','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1418','311','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1419','311','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1420','311','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1421','311','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1422','311','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1423','311','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1424','311','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1425','312','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1426','312','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1427','312','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1428','313','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1429','313','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1430','313','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1431','313','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1432','313','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1433','313','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1434','314','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1435','314','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1436','314','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1437','314','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1438','314','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1439','314','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1440','315','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1441','315','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1442','315','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1443','316','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1444','316','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1445','317','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1446','317','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1447','317','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1448','317','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1449','317','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1450','317','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1451','317','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1452','319','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1453','319','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1454','319','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1455','319','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1456','319','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1457','319','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1458','319','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1459','320','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1460','320','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1461','320','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1462','320','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1463','320','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1464','320','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1465','320','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1466','321','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1467','321','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1468','321','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1469','321','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1470','322','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1471','322','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1472','322','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1473','322','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1474','322','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1475','322','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1476','323','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1477','323','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1478','323','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1479','323','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1480','324','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1481','324','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1482','324','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1483','324','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1484','324','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1485','326','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1486','326','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1487','326','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1488','326','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1489','326','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1490','326','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1491','327','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1492','327','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1493','327','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1494','327','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1495','327','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1496','327','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1497','328','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1498','328','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1499','328','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1500','328','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1501','329','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1502','329','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1503','329','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1504','329','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1505','329','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1506','329','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1507','330','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1508','330','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1509','330','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1510','330','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1511','330','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1512','330','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1513','330','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1514','331','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1515','331','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1516','331','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1517','331','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1518','331','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1519','331','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1520','331','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1521','331','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1522','333','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1523','333','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1524','333','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1525','333','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1526','334','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1527','334','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1528','334','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1529','334','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1530','334','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1531','334','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1532','335','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1533','335','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1534','336','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1535','336','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1536','336','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1537','336','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1538','336','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1539','337','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1540','337','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1541','337','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1542','337','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1543','338','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1544','338','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1545','338','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1546','339','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1547','339','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1548','339','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1549','340','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1550','340','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1551','341','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1552','341','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1553','341','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1554','341','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1555','341','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1556','341','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1557','341','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1558','341','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1559','342','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1560','342','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1561','342','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1562','342','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1563','343','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1564','343','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1565','344','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1566','344','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1567','344','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1568','344','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1569','344','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1570','345','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1571','345','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1572','345','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1573','345','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1574','345','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1575','346','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1576','346','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1577','346','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1578','346','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1579','346','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1580','346','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1581','347','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1582','347','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1583','347','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1584','347','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1585','348','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1586','348','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1587','348','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1588','348','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1589','349','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1590','349','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1591','349','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1592','349','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1593','349','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1594','349','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1595','349','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1596','350','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1597','350','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1598','350','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1599','350','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1600','350','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1601','350','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1602','350','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1603','350','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1604','351','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1605','351','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1606','351','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1607','351','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1608','351','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1609','351','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1610','352','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1611','352','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1612','352','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1613','352','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1614','353','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1615','353','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1616','353','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1617','353','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1618','353','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1619','353','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1620','354','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1621','354','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1622','354','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1623','354','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1624','354','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1625','355','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1626','355','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1627','356','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1628','356','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1629','356','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1630','356','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1631','356','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1632','356','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1633','356','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1634','356','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1635','357','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1636','357','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1637','357','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1638','357','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1639','358','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1640','358','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1641','358','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1642','358','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1643','358','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1644','358','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1645','358','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1646','358','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1647','360','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1648','360','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1649','360','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1650','360','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1651','361','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1652','361','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1653','361','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1654','361','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1655','361','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1656','361','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1657','361','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1658','361','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1659','362','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1660','362','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1661','363','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1662','363','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1663','363','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1664','363','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1665','363','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1666','363','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1667','364','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1668','364','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1669','364','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1670','365','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1671','365','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1672','365','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1673','365','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1674','366','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1675','366','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1676','366','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1677','366','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1678','366','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1679','366','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1680','366','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1681','367','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1682','367','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1683','367','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1684','367','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1685','367','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1686','367','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1687','367','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1688','368','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1689','368','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1690','369','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1691','369','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1692','369','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1693','369','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1694','369','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1695','369','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1696','369','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1697','369','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1698','370','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1699','370','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1700','370','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1701','370','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1702','370','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1703','371','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1704','371','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1705','371','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1706','372','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1707','372','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1708','373','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1709','373','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1710','373','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1711','373','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1712','373','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1713','374','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1714','374','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1715','374','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1716','374','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1717','374','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1718','374','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1719','374','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1720','375','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1721','375','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1722','376','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1723','376','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1724','376','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1725','376','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1726','376','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1727','376','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1728','376','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1729','377','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1730','377','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1731','377','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1732','377','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1733','377','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1734','377','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1735','378','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1736','378','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1737','378','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1738','378','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1739','378','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1740','378','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1741','378','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1742','378','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1743','379','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1744','379','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1745','379','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1746','379','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1747','380','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1748','380','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1749','380','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1750','380','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1751','380','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1752','381','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1753','381','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1754','381','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1755','381','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1756','381','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1757','382','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1758','382','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1759','382','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1760','382','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1761','382','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1762','382','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1763','382','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1764','382','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1765','383','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1766','383','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1767','383','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1768','383','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1769','383','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1770','384','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1771','384','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1772','384','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1773','385','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1774','385','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1775','385','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1776','385','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1777','385','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1778','387','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1779','387','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1780','387','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1781','387','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1782','387','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1783','387','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1784','388','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1785','388','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1786','388','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1787','388','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1788','388','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1789','388','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1790','389','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1791','389','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1792','389','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1793','389','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1794','390','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1795','390','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1796','390','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1797','391','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1798','391','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1799','391','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1800','391','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1801','391','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1802','391','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1803','391','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1804','392','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1805','392','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1806','392','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1807','392','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1808','392','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1809','392','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1810','393','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1811','393','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1812','394','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1813','394','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1814','394','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1815','394','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1816','395','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1817','395','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1818','395','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1819','395','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1820','395','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1821','395','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1822','396','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1823','396','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1824','396','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1825','396','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1826','397','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1827','397','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1828','397','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1829','397','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1830','397','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1831','397','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1832','397','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1833','398','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1834','398','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1835','398','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1836','398','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1837','399','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1838','399','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1839','400','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1840','400','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1841','401','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1842','401','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1843','402','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1844','402','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1845','402','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1846','402','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1847','402','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1848','402','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1849','403','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1850','403','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1851','403','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1852','403','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1853','403','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1854','403','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1855','403','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1856','403','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1857','405','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1858','405','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1859','406','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1860','406','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1861','406','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1862','406','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1863','406','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1864','406','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1865','407','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1866','407','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1867','408','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1868','408','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1869','408','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1870','408','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1871','408','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1872','408','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1873','408','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1874','409','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1875','409','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1876','409','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1877','409','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1878','409','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1879','409','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1880','409','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1881','410','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1882','410','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1883','410','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1884','410','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1885','410','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1886','411','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1887','411','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1888','412','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1889','412','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1890','412','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1891','412','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1892','412','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1893','412','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1894','412','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1895','412','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1896','413','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1897','413','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1898','413','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1899','414','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1900','414','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1901','414','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1902','414','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1903','414','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1904','414','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1905','415','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1906','415','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1907','415','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1908','415','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1909','415','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1910','415','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1911','416','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1912','416','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1913','416','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1914','416','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1915','416','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1916','416','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1917','417','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1918','417','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1919','417','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1920','417','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1921','417','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1922','417','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1923','418','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1924','418','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1925','418','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1926','418','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1927','418','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1928','418','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1929','418','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1930','418','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1931','420','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1932','420','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1933','420','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1934','420','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1935','420','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1936','421','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1937','421','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1938','421','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1939','421','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1940','422','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1941','422','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1942','423','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1943','423','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1944','423','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1945','423','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1946','424','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1947','424','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1948','424','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1949','424','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1950','424','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1951','425','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1952','425','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1953','426','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1954','426','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1955','426','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1956','427','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1957','427','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1958','427','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1959','427','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1960','428','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1961','428','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1962','428','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1963','428','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1964','428','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1965','428','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1966','429','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1967','429','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1968','429','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1969','429','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1970','429','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1971','429','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1972','430','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1973','430','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1974','430','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1975','430','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1976','431','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1977','431','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1978','431','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1979','432','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1980','432','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1981','432','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1982','432','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1983','432','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1984','433','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1985','433','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1986','433','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1987','433','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1988','433','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1989','433','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1990','434','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1991','434','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1992','434','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1993','434','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1994','434','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1995','434','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1996','434','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1997','434','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1998','435','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('1999','435','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2000','436','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2001','436','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2002','436','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2003','436','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2004','436','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2005','436','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2006','437','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2007','437','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2008','437','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2009','437','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2010','437','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2011','437','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2012','438','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2013','438','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2014','438','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2015','438','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2016','438','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2017','439','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2018','439','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2019','439','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2020','439','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2021','439','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2022','439','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2023','440','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2024','440','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2025','440','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2026','440','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2027','441','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2028','441','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2029','442','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2030','442','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2031','442','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2032','443','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2033','443','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2034','443','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2035','443','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2036','443','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2037','443','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2038','443','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2039','444','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2040','444','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2041','444','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2042','444','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2043','444','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2044','444','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2045','444','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2046','444','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2047','445','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2048','445','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2049','445','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2050','445','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2051','445','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2052','445','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2053','446','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2054','446','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2055','446','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2056','446','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2057','447','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2058','447','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2059','447','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2060','447','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2061','447','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2062','447','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2063','447','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2064','448','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2065','448','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2066','448','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2067','448','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2068','448','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2069','449','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2070','449','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2071','449','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2072','449','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2073','450','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2074','450','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2075','450','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2076','450','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2077','450','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2078','450','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2079','450','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2080','451','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2081','451','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2082','451','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2083','451','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2084','451','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2085','452','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2086','452','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2087','452','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2088','452','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2089','453','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2090','453','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2091','453','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2092','453','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2093','453','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2094','454','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2095','454','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2096','455','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2097','455','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2098','455','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2099','455','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2100','456','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2101','456','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2102','456','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2103','456','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2104','456','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2105','456','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2106','457','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2107','457','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2108','457','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2109','457','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2110','457','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2111','457','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2112','458','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2113','458','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2114','458','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2115','458','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2116','458','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2117','458','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2118','459','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2119','459','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2120','460','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2121','460','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2122','460','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2123','460','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2124','460','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2125','460','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2126','460','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2127','460','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2128','461','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2129','461','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2130','461','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2131','461','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2132','461','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2133','461','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2134','462','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2135','462','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2136','462','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2137','462','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2138','462','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2139','463','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2140','463','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2141','463','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2142','463','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2143','463','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2144','464','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2145','464','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2146','464','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2147','464','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2148','464','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2149','464','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2150','464','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2151','465','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2152','465','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2153','465','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2154','465','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2155','465','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2156','466','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2157','466','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2158','467','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2159','467','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2160','467','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2161','467','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2162','467','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2163','467','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2164','467','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2165','468','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2166','468','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2167','468','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2168','468','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2169','468','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2170','468','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2171','468','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2172','468','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2173','469','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2174','469','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2175','469','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2176','470','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2177','470','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2178','471','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2179','471','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2180','471','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2181','471','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2182','471','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2183','471','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2184','471','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2185','472','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2186','472','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2187','473','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2188','473','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2189','473','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2190','473','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2191','473','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2192','474','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2193','474','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2194','474','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2195','474','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2196','475','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2197','475','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2198','476','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2199','476','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2200','476','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2201','476','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2202','476','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2203','476','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2204','476','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2205','477','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2206','477','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2207','477','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2208','478','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2209','478','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2210','478','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2211','478','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2212','478','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2213','479','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2214','479','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2215','479','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2216','479','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2217','479','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2218','480','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2219','480','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2220','480','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2221','480','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2222','481','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2223','481','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2224','481','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2225','481','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2226','481','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2227','481','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2228','482','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2229','482','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2230','482','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2231','483','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2232','483','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2233','483','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2234','483','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2235','483','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2236','484','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2237','484','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2238','484','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2239','484','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2240','484','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2241','484','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2242','484','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2243','485','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2244','485','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2245','485','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2246','486','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2247','486','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2248','486','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2249','486','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2250','486','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2251','486','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2252','487','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2253','487','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2254','487','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2255','488','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2256','488','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2257','488','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2258','488','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2259','488','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2260','489','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2261','489','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2262','489','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2263','489','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2264','489','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2265','489','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2266','489','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2267','489','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2268','490','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2269','490','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2270','491','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2271','491','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2272','491','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2273','491','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2274','491','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2275','491','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2276','492','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2277','492','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2278','493','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2279','493','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2280','493','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2281','494','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2282','494','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2283','494','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2284','494','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2285','494','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2286','494','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2287','496','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2288','496','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2289','496','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2290','496','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2291','496','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2292','498','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2293','498','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2294','499','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2295','499','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2296','500','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2297','500','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2298','500','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2299','500','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2300','500','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2301','500','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2302','500','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2303','500','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2304','501','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2305','501','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2306','501','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2307','501','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2308','501','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2309','502','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2310','502','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2311','502','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2312','502','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2313','502','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2314','502','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2315','502','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2316','503','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2317','503','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2318','503','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2319','504','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2320','504','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2321','504','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2322','504','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2323','504','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2324','504','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2325','505','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2326','505','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2327','505','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2328','505','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2329','506','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2330','506','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2331','506','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2332','506','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2333','506','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2334','506','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2335','507','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2336','507','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2337','508','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2338','508','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2339','508','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2340','509','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2341','509','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2342','509','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2343','510','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2344','510','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2345','510','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2346','510','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2347','511','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2348','511','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2349','511','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2350','511','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2351','511','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2352','512','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2353','512','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2354','512','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2355','512','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2356','512','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2357','512','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2358','513','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2359','513','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2360','514','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2361','514','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2362','514','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2363','514','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2364','514','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2365','514','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2366','515','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2367','515','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2368','516','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2369','516','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2370','516','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2371','517','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2372','517','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2373','518','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2374','518','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2375','518','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2376','518','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2377','518','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2378','518','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2379','519','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2380','519','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2381','519','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2382','519','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2383','520','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2384','520','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2385','521','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2386','521','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2387','521','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2388','521','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2389','521','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2390','521','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2391','521','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2392','522','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2393','522','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2394','523','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2395','523','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2396','524','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2397','524','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2398','524','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2399','524','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2400','524','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2401','524','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2402','525','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2403','525','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2404','525','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2405','525','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2406','525','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2407','525','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2408','525','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2409','525','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2410','526','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2411','526','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2412','526','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2413','526','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2414','527','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2415','527','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2416','527','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2417','527','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2418','527','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2419','527','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2420','528','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2421','528','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2422','528','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2423','529','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2424','529','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2425','529','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2426','529','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2427','530','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2428','530','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2429','530','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2430','531','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2431','531','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2432','531','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2433','531','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2434','531','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2435','531','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2436','531','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2437','531','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2438','532','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2439','532','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2440','532','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2441','532','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2442','533','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2443','533','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2444','533','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2445','534','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2446','534','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2447','534','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2448','534','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2449','534','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2450','535','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2451','535','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2452','535','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2453','535','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2454','536','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2455','536','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2456','536','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2457','536','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2458','536','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2459','537','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2460','537','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2461','537','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2462','538','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2463','538','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2464','538','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2465','539','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2466','539','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2467','540','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2468','540','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2469','540','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2470','541','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2471','541','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2472','542','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2473','542','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2474','542','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2475','542','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2476','542','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2477','542','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2478','543','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2479','543','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2480','544','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2481','544','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2482','544','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2483','544','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2484','545','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2485','545','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2486','545','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2487','545','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2488','545','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2489','545','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2490','546','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2491','546','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2492','546','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2493','546','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2494','547','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2495','547','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2496','548','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2497','548','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2498','549','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2499','549','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2500','549','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2501','549','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2502','550','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2503','550','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2504','550','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2505','551','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2506','551','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2507','551','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2508','551','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2509','551','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2510','551','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2511','552','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2512','552','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2513','552','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2514','552','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2515','553','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2516','553','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2517','553','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2518','554','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2519','554','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2520','554','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2521','554','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2522','554','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2523','554','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2524','554','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2525','555','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2526','555','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2527','555','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2528','555','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2529','555','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2530','555','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2531','555','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2532','556','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2533','556','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2534','556','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2535','556','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2536','556','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2537','556','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2538','556','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2539','557','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2540','557','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2541','557','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2542','557','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2543','557','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2544','558','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2545','558','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2546','559','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2547','559','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2548','559','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2549','559','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2550','559','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2551','559','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2552','559','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2553','559','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2554','560','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2555','560','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2556','560','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2557','560','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2558','560','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2559','561','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2560','561','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2561','561','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2562','561','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2563','562','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2564','562','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2565','562','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2566','562','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2567','562','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2568','562','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2569','563','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2570','563','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2571','563','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2572','563','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2573','563','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2574','563','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2575','563','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2576','564','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2577','564','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2578','564','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2579','565','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2580','565','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2581','566','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2582','566','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2583','567','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2584','567','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2585','567','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2586','567','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2587','568','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2588','568','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2589','568','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2590','568','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2591','569','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2592','569','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2593','570','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2594','570','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2595','570','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2596','570','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2597','570','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2598','571','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2599','571','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2600','571','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2601','571','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2602','571','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2603','571','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2604','572','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2605','572','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2606','572','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2607','572','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2608','572','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2609','572','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2610','572','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2611','572','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2612','573','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2613','573','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2614','573','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2615','573','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2616','574','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2617','574','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2618','574','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2619','574','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2620','574','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2621','575','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2622','575','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2623','575','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2624','575','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2625','575','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2626','575','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2627','576','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2628','576','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2629','576','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2630','577','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2631','577','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2632','577','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2633','578','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2634','578','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2635','578','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2636','578','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2637','578','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2638','579','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2639','579','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2640','579','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2641','579','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2642','579','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2643','579','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2644','579','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2645','580','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2646','580','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2647','580','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2648','580','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2649','580','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2650','580','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2651','581','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2652','581','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2653','581','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2654','582','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2655','582','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2656','583','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2657','583','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2658','583','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2659','583','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2660','583','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2661','584','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2662','584','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2663','585','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2664','585','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2665','585','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2666','585','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2667','586','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2668','586','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2669','586','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2670','586','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2671','586','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2672','586','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2673','586','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2674','586','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2675','587','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2676','587','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2677','587','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2678','588','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2679','588','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2680','588','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2681','588','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2682','589','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2683','589','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2684','589','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2685','589','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2686','590','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2687','590','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2688','590','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2689','590','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2690','590','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2691','590','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2692','590','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2693','591','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2694','591','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2695','591','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2696','592','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2697','592','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2698','592','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2699','592','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2700','593','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2701','593','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2702','593','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2703','593','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2704','594','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2705','594','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2706','594','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2707','595','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2708','595','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2709','595','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2710','595','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2711','595','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2712','595','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2713','595','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2714','595','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2715','596','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2716','596','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2717','596','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2718','596','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2719','596','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2720','596','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2721','597','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2722','597','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2723','597','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2724','597','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2725','598','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2726','598','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2727','598','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2728','598','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2729','599','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2730','599','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2731','599','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2732','599','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2733','599','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2734','600','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2735','600','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2736','600','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2737','600','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2738','601','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2739','601','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2740','601','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2741','601','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2742','601','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2743','602','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2744','602','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2745','602','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2746','602','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2747','602','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2748','603','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2749','603','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2750','603','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2751','603','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2752','603','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2753','603','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2754','604','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2755','604','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2756','604','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2757','605','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2758','605','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2759','606','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2760','606','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2761','606','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2762','606','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2763','606','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2764','606','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2765','608','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2766','608','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2767','608','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2768','608','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2769','608','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2770','608','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2771','609','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2772','609','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2773','609','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2774','609','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2775','609','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2776','609','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2777','609','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2778','609','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2779','610','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2780','610','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2781','610','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2782','610','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2783','610','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2784','611','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2785','611','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2786','611','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2787','611','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2788','611','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2789','611','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2790','612','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2791','612','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2792','613','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2793','613','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2794','614','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2795','614','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2796','614','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2797','614','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2798','614','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2799','614','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2800','615','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2801','615','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2802','615','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2803','615','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2804','616','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2805','616','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2806','616','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2807','616','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2808','616','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2809','616','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2810','617','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2811','617','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2812','617','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2813','618','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2814','618','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2815','618','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2816','618','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2817','619','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2818','619','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2819','619','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2820','619','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2821','619','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2822','619','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2823','620','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2824','620','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2825','620','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2826','620','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2827','620','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2828','621','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2829','621','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2830','621','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2831','621','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2832','621','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2833','621','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2834','621','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2835','621','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2836','622','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2837','622','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2838','623','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2839','623','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2840','623','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2841','623','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2842','623','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2843','624','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2844','624','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2845','624','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2846','624','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2847','624','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2848','624','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2849','624','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2850','625','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2851','625','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2852','625','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2853','625','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2854','625','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2855','625','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2856','625','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2857','626','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2858','626','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2859','626','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2860','626','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2861','627','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2862','627','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2863','627','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2864','628','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2865','628','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2866','628','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2867','628','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2868','628','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2869','629','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2870','629','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2871','629','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2872','629','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2873','630','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2874','630','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2875','630','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2876','631','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2877','631','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2878','631','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2879','631','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2880','631','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2881','632','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2882','632','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2883','632','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2884','633','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2885','633','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2886','633','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2887','634','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2888','634','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2889','634','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2890','634','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2891','635','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2892','635','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2893','636','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2894','636','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2895','636','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2896','637','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2897','637','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2898','637','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2899','637','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2900','637','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2901','638','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2902','638','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2903','638','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2904','638','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2905','638','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2906','638','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2907','638','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2908','638','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2909','639','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2910','639','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2911','639','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2912','640','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2913','640','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2914','640','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2915','641','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2916','641','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2917','641','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2918','641','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2919','641','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2920','641','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2921','641','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2922','643','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2923','643','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2924','643','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2925','643','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2926','643','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2927','643','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2928','644','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2929','644','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2930','644','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2931','644','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2932','644','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2933','644','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2934','644','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2935','645','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2936','645','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2937','645','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2938','645','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2939','645','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2940','645','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2941','646','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2942','646','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2943','646','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2944','646','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2945','646','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2946','647','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2947','647','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2948','647','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2949','647','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2950','647','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2951','647','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2952','648','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2953','648','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2954','648','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2955','648','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2956','648','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2957','648','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2958','649','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2959','649','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2960','649','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2961','649','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2962','649','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2963','649','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2964','650','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2965','650','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2966','650','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2967','650','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2968','650','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2969','650','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2970','651','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2971','651','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2972','651','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2973','651','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2974','651','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2975','651','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2976','652','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2977','652','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2978','652','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2979','652','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2980','653','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2981','653','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2982','654','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2983','654','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2984','654','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2985','654','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2986','655','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2987','655','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2988','655','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2989','655','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2990','655','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2991','655','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2992','656','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2993','656','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2994','657','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2995','657','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2996','657','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2997','657','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2998','657','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('2999','657','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3000','658','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3001','658','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3002','658','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3003','658','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3004','659','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3005','659','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3006','660','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3007','660','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3008','660','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3009','660','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3010','661','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3011','661','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3012','661','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3013','661','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3014','662','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3015','662','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3016','662','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3017','662','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3018','663','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3019','663','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3020','663','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3021','663','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3022','663','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3023','664','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3024','664','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3025','664','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3026','664','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3027','664','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3028','665','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3029','665','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3030','665','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3031','665','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3032','665','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3033','665','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3034','665','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3035','666','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3036','666','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3037','666','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3038','666','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3039','666','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3040','667','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3041','667','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3042','667','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3043','667','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3044','668','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3045','668','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3046','668','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3047','668','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3048','668','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3049','670','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3050','670','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3051','670','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3052','670','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3053','670','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3054','670','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3055','670','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3056','672','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3057','672','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3058','672','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3059','672','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3060','672','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3061','672','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3062','673','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3063','673','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3064','673','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3065','673','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3066','674','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3067','674','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3068','674','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3069','675','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3070','675','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3071','676','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3072','676','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3073','676','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3074','676','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3075','676','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3076','676','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3077','677','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3078','677','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3079','677','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3080','677','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3081','677','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3082','677','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3083','677','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3084','678','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3085','678','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3086','678','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3087','678','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3088','679','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3089','679','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3090','679','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3091','679','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3092','680','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3093','680','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3094','680','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3095','680','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3096','680','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3097','680','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3098','681','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3099','681','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3100','681','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3101','681','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3102','681','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3103','681','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3104','682','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3105','682','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3106','682','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3107','683','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3108','683','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3109','683','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3110','683','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3111','683','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3112','683','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3113','683','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3114','683','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3115','684','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3116','684','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3117','685','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3118','685','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3119','686','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3120','686','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3121','686','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3122','686','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3123','687','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3124','687','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3125','687','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3126','687','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3127','687','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3128','687','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3129','687','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3130','688','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3131','688','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3132','688','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3133','688','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3134','689','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3135','689','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3136','689','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3137','689','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3138','689','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3139','689','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3140','690','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3141','690','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3142','690','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3143','690','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3144','690','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3145','690','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3146','691','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3147','691','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3148','691','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3149','691','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3150','691','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3151','692','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3152','692','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3153','692','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3154','693','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3155','693','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3156','693','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3157','693','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3158','693','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3159','694','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3160','694','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3161','694','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3162','694','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3163','694','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3164','694','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3165','695','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3166','695','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3167','696','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3168','696','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3169','696','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3170','696','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3171','696','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3172','697','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3173','697','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3174','697','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3175','697','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3176','697','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3177','697','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3178','697','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3179','697','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3180','698','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3181','698','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3182','698','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3183','698','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3184','698','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3185','698','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3186','698','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3187','699','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3188','699','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3189','700','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3190','700','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3191','700','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3192','702','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3193','702','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3194','702','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3195','702','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3196','702','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3197','702','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3198','702','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3199','702','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3200','703','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3201','703','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3202','704','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3203','704','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3204','704','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3205','704','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3206','704','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3207','705','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3208','705','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3209','705','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3210','705','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3211','706','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3212','706','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3213','706','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3214','706','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3215','706','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3216','706','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3217','707','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3218','707','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3219','707','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3220','707','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3221','707','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3222','707','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3223','708','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3224','708','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3225','708','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3226','708','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3227','709','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3228','709','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3229','709','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3230','709','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3231','709','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3232','709','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3233','710','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3234','710','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3235','710','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3236','710','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3237','710','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3238','710','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3239','711','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3240','711','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3241','711','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3242','711','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3243','714','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3244','714','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3245','714','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3246','715','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3247','715','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3248','715','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3249','715','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3250','715','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3251','715','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3252','715','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3253','716','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3254','716','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3255','716','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3256','716','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3257','716','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3258','717','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3259','717','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3260','717','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3261','717','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3262','718','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3263','718','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3264','719','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3265','719','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3266','720','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3267','720','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3268','720','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3269','720','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3270','720','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3271','720','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3272','720','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3273','721','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3274','721','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3275','722','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3276','722','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3277','722','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3278','722','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3279','723','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3280','723','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3281','723','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3282','723','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3283','723','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3284','723','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3285','723','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3286','724','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3287','724','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3288','724','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3289','724','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3290','724','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3291','724','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3292','725','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3293','725','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3294','725','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3295','725','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3296','725','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3297','725','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3298','726','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3299','726','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3300','726','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3301','727','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3302','727','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3303','727','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3304','727','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3305','727','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3306','728','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3307','728','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3308','728','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3309','728','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3310','728','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3311','729','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3312','729','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3313','729','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3314','729','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3315','730','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3316','730','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3317','730','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3318','730','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3319','730','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3320','730','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3321','730','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3322','730','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3323','731','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3324','731','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3325','731','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3326','732','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3327','732','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3328','732','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3329','732','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3330','733','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3331','733','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3332','733','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3333','733','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3334','733','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3335','733','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3336','733','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3337','734','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3338','734','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3339','734','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3340','734','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3341','734','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3342','734','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3343','735','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3344','735','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3345','735','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3346','735','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3347','735','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3348','735','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3349','735','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3350','736','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3351','736','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3352','736','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3353','736','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3354','737','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3355','737','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3356','737','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3357','737','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3358','737','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3359','737','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3360','738','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3361','738','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3362','738','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3363','738','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3364','738','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3365','738','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3366','738','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3367','738','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3368','739','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3369','739','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3370','739','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3371','739','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3372','739','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3373','740','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3374','740','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3375','740','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3376','741','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3377','741','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3378','741','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3379','741','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3380','741','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3381','741','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3382','743','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3383','743','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3384','743','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3385','743','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3386','743','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3387','743','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3388','744','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3389','744','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3390','744','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3391','744','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3392','744','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3393','745','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3394','745','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3395','745','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3396','745','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3397','745','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3398','745','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3399','745','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3400','745','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3401','746','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3402','746','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3403','746','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3404','746','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3405','746','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3406','747','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3407','747','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3408','747','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3409','747','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3410','747','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3411','748','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3412','748','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3413','748','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3414','748','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3415','748','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3416','748','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3417','748','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3418','748','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3419','749','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3420','749','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3421','749','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3422','749','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3423','750','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3424','750','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3425','750','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3426','751','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3427','751','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3428','752','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3429','752','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3430','752','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3431','753','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3432','753','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3433','753','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3434','753','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3435','753','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3436','753','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3437','753','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3438','753','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3439','754','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3440','754','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3441','755','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3442','755','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3443','755','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3444','755','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3445','755','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3446','755','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3447','755','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3448','756','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3449','756','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3450','756','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3451','757','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3452','757','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3453','757','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3454','757','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3455','757','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3456','758','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3457','758','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3458','758','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3459','759','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3460','759','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3461','759','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3462','759','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3463','759','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3464','759','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3465','760','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3466','760','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3467','760','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3468','760','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3469','760','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3470','760','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3471','760','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3472','761','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3473','761','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3474','761','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3475','762','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3476','762','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3477','762','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3478','762','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3479','763','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3480','763','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3481','763','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3482','763','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3483','763','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3484','764','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3485','764','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3486','764','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3487','764','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3488','764','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3489','764','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3490','764','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3491','764','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3492','765','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3493','765','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3494','765','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3495','765','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3496','766','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3497','766','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3498','766','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3499','767','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3500','767','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3501','767','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3502','767','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3503','767','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3504','767','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3505','767','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3506','767','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3507','768','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3508','768','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3509','768','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3510','768','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3511','768','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3512','768','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3513','769','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3514','769','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3515','770','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3516','770','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3517','770','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3518','771','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3519','771','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3520','771','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3521','771','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3522','771','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3523','771','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3524','771','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3525','772','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3526','772','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3527','772','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3528','772','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3529','772','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3530','772','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3531','773','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3532','773','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3533','773','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3534','773','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3535','773','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3536','773','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3537','773','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3538','773','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3539','774','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3540','774','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3541','774','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3542','774','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3543','775','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3544','775','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3545','775','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3546','775','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3547','775','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3548','776','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3549','776','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3550','776','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3551','776','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3552','776','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3553','777','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3554','777','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3555','777','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3556','777','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3557','777','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3558','777','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3559','778','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3560','778','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3561','778','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3562','778','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3563','778','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3564','778','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3565','779','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3566','779','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3567','780','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3568','780','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3569','780','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3570','781','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3571','781','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3572','782','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3573','782','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3574','782','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3575','782','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3576','782','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3577','782','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3578','783','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3579','783','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3580','783','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3581','783','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3582','784','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3583','784','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3584','784','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3585','784','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3586','784','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3587','784','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3588','785','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3589','785','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3590','785','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3591','785','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3592','785','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3593','785','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3594','786','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3595','786','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3596','786','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3597','786','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3598','786','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3599','786','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3600','786','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3601','787','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3602','787','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3603','787','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3604','788','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3605','788','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3606','788','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3607','788','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3608','789','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3609','789','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3610','789','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3611','789','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3612','789','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3613','789','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3614','789','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3615','789','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3616','790','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3617','790','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3618','790','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3619','790','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3620','790','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3621','790','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3622','790','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3623','791','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3624','791','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3625','791','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3626','791','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3627','791','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3628','791','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3629','792','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3630','792','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3631','792','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3632','793','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3633','793','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3634','793','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3635','793','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3636','794','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3637','794','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3638','794','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3639','794','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3640','795','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3641','795','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3642','795','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3643','795','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3644','796','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3645','796','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3646','796','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3647','796','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3648','796','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3649','797','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3650','797','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3651','797','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3652','797','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3653','797','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3654','798','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3655','798','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3656','798','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3657','798','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3658','799','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3659','799','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3660','800','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3661','800','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3662','800','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3663','800','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3664','800','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3665','800','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3666','803','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3667','803','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3668','803','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3669','803','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3670','803','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3671','803','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3672','804','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3673','804','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3674','804','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3675','804','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3676','804','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3677','804','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3678','804','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3679','805','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3680','805','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3681','805','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3682','805','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3683','805','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3684','806','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3685','806','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3686','806','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3687','806','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3688','806','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3689','807','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3690','807','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3691','807','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3692','807','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3693','807','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3694','808','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3695','808','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3696','809','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3697','809','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3698','809','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3699','809','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3700','810','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3701','810','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3702','810','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3703','810','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3704','810','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3705','810','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3706','810','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3707','811','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3708','811','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3709','811','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3710','812','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3711','812','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3712','812','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3713','812','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3714','812','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3715','812','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3716','813','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3717','813','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3718','813','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3719','813','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3720','814','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3721','814','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3722','814','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3723','814','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3724','814','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3725','814','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3726','814','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3727','815','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3728','815','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3729','815','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3730','816','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3731','816','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3732','816','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3733','816','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3734','816','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3735','816','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3736','816','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3737','817','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3738','817','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3739','818','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3740','818','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3741','818','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3742','818','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3743','818','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3744','819','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3745','819','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3746','819','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3747','820','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3748','820','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3749','820','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3750','820','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3751','820','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3752','820','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3753','821','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3754','821','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3755','821','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3756','821','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3757','822','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3758','822','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3759','823','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3760','823','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3761','823','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3762','823','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3763','823','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3764','823','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3765','823','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3766','824','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3767','824','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3768','824','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3769','824','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3770','825','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3771','825','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3772','825','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3773','826','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3774','826','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3775','827','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3776','827','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3777','827','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3778','827','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3779','827','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3780','827','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3781','828','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3782','828','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3783','828','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3784','828','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3785','829','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3786','829','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3787','829','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3788','829','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3789','829','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3790','830','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3791','830','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3792','830','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3793','830','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3794','831','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3795','831','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3796','831','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3797','832','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3798','832','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3799','832','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3800','832','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3801','833','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3802','833','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3803','833','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3804','833','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3805','833','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3806','833','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3807','833','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3808','834','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3809','834','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3810','834','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3811','835','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3812','835','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3813','835','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3814','835','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3815','835','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3816','835','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3817','835','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3818','835','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3819','836','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3820','836','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3821','836','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3822','837','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3823','837','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3824','837','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3825','838','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3826','838','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3827','838','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3828','838','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3829','838','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3830','838','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3831','839','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3832','839','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3833','840','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3834','840','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3835','840','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3836','840','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3837','841','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3838','841','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3839','841','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3840','841','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3841','841','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3842','841','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3843','841','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3844','842','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3845','842','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3846','842','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3847','842','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3848','843','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3849','843','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3850','843','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3851','843','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3852','843','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3853','843','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3854','843','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3855','844','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3856','844','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3857','844','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3858','844','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3859','845','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3860','845','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3861','845','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3862','845','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3863','845','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3864','845','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3865','845','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3866','846','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3867','846','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3868','846','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3869','846','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3870','846','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3871','846','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3872','846','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3873','846','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3874','847','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3875','847','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3876','847','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3877','847','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3878','848','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3879','848','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3880','848','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3881','849','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3882','849','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3883','849','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3884','849','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3885','849','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3886','849','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3887','849','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3888','849','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3889','850','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3890','850','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3891','850','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3892','850','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3893','850','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3894','850','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3895','850','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3896','851','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3897','851','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3898','851','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3899','851','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3900','851','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3901','851','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3902','852','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3903','852','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3904','852','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3905','852','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3906','852','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3907','852','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3908','852','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3909','853','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3910','853','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3911','853','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3912','854','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3913','854','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3914','854','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3915','854','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3916','855','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3917','855','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3918','855','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3919','855','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3920','856','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3921','856','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3922','856','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3923','856','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3924','856','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3925','856','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3926','856','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3927','856','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3928','857','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3929','857','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3930','857','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3931','857','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3932','857','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3933','857','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3934','857','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3935','858','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3936','858','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3937','858','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3938','858','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3939','859','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3940','859','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3941','859','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3942','859','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3943','859','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3944','859','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3945','861','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3946','861','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3947','861','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3948','861','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3949','861','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3950','861','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3951','862','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3952','862','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3953','862','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3954','862','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3955','862','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3956','863','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3957','863','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3958','863','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3959','863','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3960','863','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3961','863','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3962','863','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3963','864','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3964','864','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3965','864','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3966','864','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3967','864','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3968','864','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3969','865','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3970','865','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3971','865','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3972','865','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3973','865','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3974','865','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3975','866','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3976','866','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3977','867','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3978','867','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3979','867','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3980','867','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3981','868','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3982','868','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3983','868','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3984','869','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3985','869','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3986','869','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3987','869','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3988','869','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3989','869','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3990','869','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3991','870','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3992','870','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3993','870','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3994','870','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3995','870','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3996','870','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3997','870','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3998','870','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('3999','871','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4000','871','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4001','871','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4002','871','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4003','871','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4004','872','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4005','872','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4006','872','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4007','873','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4008','873','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4009','873','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4010','873','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4011','873','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4012','873','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4013','873','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4014','873','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4015','875','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4016','875','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4017','875','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4018','875','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4019','875','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4020','875','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4021','875','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4022','876','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4023','876','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4024','877','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4025','877','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4026','877','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4027','877','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4028','877','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4029','878','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4030','878','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4031','878','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4032','878','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4033','879','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4034','879','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4035','879','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4036','879','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4037','879','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4038','879','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4039','879','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4040','880','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4041','880','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4042','880','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4043','880','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4044','880','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4045','880','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4046','880','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4047','880','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4048','881','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4049','881','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4050','881','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4051','881','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4052','882','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4053','882','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4054','882','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4055','882','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4056','883','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4057','883','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4058','884','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4059','884','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4060','884','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4061','885','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4062','885','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4063','886','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4064','886','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4065','886','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4066','886','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4067','887','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4068','887','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4069','887','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4070','887','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4071','887','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4072','887','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4073','888','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4074','888','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4075','888','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4076','888','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4077','889','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4078','889','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4079','889','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4080','890','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4081','890','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4082','890','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4083','890','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4084','890','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4085','890','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4086','890','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4087','891','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4088','891','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4089','891','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4090','891','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4091','891','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4092','891','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4093','891','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4094','892','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4095','892','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4096','892','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4097','892','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4098','892','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4099','892','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4100','892','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4101','893','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4102','893','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4103','893','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4104','893','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4105','893','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4106','893','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4107','893','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4108','893','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4109','894','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4110','894','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4111','894','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4112','894','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4113','894','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4114','895','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4115','895','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4116','895','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4117','895','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4118','895','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4119','895','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4120','895','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4121','896','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4122','896','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4123','896','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4124','896','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4125','897','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4126','897','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4127','897','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4128','897','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4129','897','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4130','897','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4131','897','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4132','897','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4133','898','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4134','898','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4135','898','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4136','898','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4137','898','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4138','899','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4139','899','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4140','899','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4141','900','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4142','900','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4143','900','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4144','900','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4145','901','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4146','901','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4147','901','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4148','901','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4149','901','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4150','901','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4151','901','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4152','902','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4153','902','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4154','902','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4155','902','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4156','902','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4157','902','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4158','902','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4159','903','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4160','903','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4161','904','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4162','904','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4163','905','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4164','905','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4165','905','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4166','906','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4167','906','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4168','906','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4169','906','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4170','906','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4171','907','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4172','907','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4173','907','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4174','907','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4175','908','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4176','908','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4177','908','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4178','908','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4179','910','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4180','910','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4181','911','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4182','911','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4183','911','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4184','911','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4185','911','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4186','911','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4187','911','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4188','911','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4189','912','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4190','912','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4191','912','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4192','912','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4193','912','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4194','912','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4195','913','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4196','913','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4197','913','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4198','913','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4199','913','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4200','913','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4201','914','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4202','914','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4203','914','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4204','914','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4205','914','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4206','914','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4207','915','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4208','915','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4209','915','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4210','915','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4211','915','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4212','915','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4213','916','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4214','916','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4215','916','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4216','916','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4217','917','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4218','917','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4219','917','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4220','917','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4221','917','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4222','918','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4223','918','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4224','918','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4225','918','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4226','919','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4227','919','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4228','919','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4229','919','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4230','920','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4231','920','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4232','920','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4233','920','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4234','920','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4235','921','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4236','921','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4237','921','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4238','921','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4239','922','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4240','922','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4241','922','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4242','922','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4243','922','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4244','922','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4245','922','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4246','923','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4247','923','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4248','923','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4249','924','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4250','924','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4251','924','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4252','924','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4253','924','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4254','925','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4255','925','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4256','925','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4257','925','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4258','925','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4259','926','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4260','926','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4261','927','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4262','927','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4263','927','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4264','927','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4265','928','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4266','928','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4267','928','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4268','929','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4269','929','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4270','929','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4271','929','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4272','930','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4273','930','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4274','930','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4275','930','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4276','930','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4277','930','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4278','931','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4279','931','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4280','931','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4281','932','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4282','932','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4283','932','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4284','932','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4285','933','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4286','933','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4287','933','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4288','934','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4289','934','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4290','934','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4291','935','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4292','935','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4293','936','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4294','936','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4295','936','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4296','936','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4297','936','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4298','936','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4299','937','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4300','937','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4301','937','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4302','937','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4303','937','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4304','938','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4305','938','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4306','938','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4307','938','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4308','938','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4309','938','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4310','939','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4311','939','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4312','939','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4313','939','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4314','940','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4315','940','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4316','940','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4317','941','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4318','941','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4319','941','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4320','941','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4321','941','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4322','941','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4323','941','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4324','942','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4325','942','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4326','942','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4327','942','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4328','944','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4329','944','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4330','944','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4331','944','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4332','944','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4333','945','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4334','945','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4335','945','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4336','945','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4337','945','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4338','945','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4339','945','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4340','945','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4341','946','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4342','946','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4343','946','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4344','946','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4345','947','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4346','947','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4347','948','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4348','948','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4349','948','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4350','948','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4351','948','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4352','948','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4353','949','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4354','949','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4355','949','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4356','949','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4357','949','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4358','949','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4359','951','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4360','951','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4361','951','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4362','951','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4363','951','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4364','951','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4365','951','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4366','952','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4367','952','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4368','952','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4369','953','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4370','953','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4371','953','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4372','953','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4373','953','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4374','953','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4375','956','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4376','956','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4377','956','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4378','956','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4379','957','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4380','957','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4381','957','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4382','957','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4383','957','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4384','958','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4385','958','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4386','958','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4387','958','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4388','958','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4389','958','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4390','959','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4391','959','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4392','960','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4393','960','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4394','960','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4395','961','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4396','961','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4397','961','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4398','961','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4399','961','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4400','962','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4401','962','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4402','962','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4403','962','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4404','963','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4405','963','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4406','963','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4407','963','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4408','963','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4409','964','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4410','964','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4411','964','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4412','964','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4413','964','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4414','965','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4415','965','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4416','966','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4417','966','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4418','966','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4419','966','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4420','966','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4421','966','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4422','967','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4423','967','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4424','967','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4425','967','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4426','967','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4427','968','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4428','968','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4429','968','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4430','969','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4431','969','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4432','969','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4433','969','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4434','970','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4435','970','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4436','970','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4437','970','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4438','970','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4439','970','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4440','970','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4441','971','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4442','971','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4443','971','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4444','971','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4445','972','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4446','972','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4447','972','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4448','972','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4449','972','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4450','972','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4451','973','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4452','973','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4453','973','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4454','973','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4455','973','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4456','973','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4457','973','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4458','973','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4459','974','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4460','974','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4461','975','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4462','975','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4463','975','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4464','975','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4465','975','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4466','976','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4467','976','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4468','976','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4469','976','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4470','976','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4471','976','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4472','977','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4473','977','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4474','977','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4475','978','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4476','978','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4477','978','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4478','979','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4479','979','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4480','979','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4481','979','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4482','979','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4483','979','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4484','979','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4485','980','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4486','980','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4487','980','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4488','980','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4489','980','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4490','981','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4491','981','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4492','981','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4493','981','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4494','981','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4495','981','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4496','982','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4497','982','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4498','982','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4499','982','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4500','982','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4501','982','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4502','982','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4503','983','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4504','983','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4505','983','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4506','984','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4507','984','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4508','985','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4509','985','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4510','985','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4511','985','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4512','985','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4513','985','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4514','985','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4515','986','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4516','986','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4517','986','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4518','986','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4519','986','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4520','986','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4521','987','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4522','987','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4523','987','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4524','987','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4525','988','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4526','988','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4527','988','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4528','988','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4529','988','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4530','989','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4531','989','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4532','989','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4533','989','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4534','989','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4535','989','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4536','990','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4537','990','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4538','991','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4539','991','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4540','991','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4541','991','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4542','991','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4543','992','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4544','992','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4545','992','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4546','992','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4547','993','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4548','993','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4549','993','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4550','993','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4551','993','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4552','993','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4553','993','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4554','994','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4555','994','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4556','994','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4557','995','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4558','995','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4559','995','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4560','995','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4561','995','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4562','995','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4563','996','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4564','996','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4565','997','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4566','997','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4567','998','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4568','998','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4569','999','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4570','999','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4571','999','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4572','999','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4573','999','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4574','1000','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4575','1000','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4576','1000','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4577','1000','1','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4578','1000','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4579','1000','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4580','1000','2','2006-02-15 05:09:17.000') +; +Insert into inventory + (inventory_id,film_id,store_id,last_update) +Values +('4581','1000','2','2006-02-15 05:09:17.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table film_actor +-- Start of script +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','23','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','106','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','140','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','166','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','277','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','438','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','499','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','509','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','605','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','749','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','939','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','970','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('1','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','3','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','31','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','132','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','145','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','226','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','314','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','321','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','357','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','399','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','481','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','518','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','550','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','555','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','742','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','754','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('2','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','40','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','42','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','111','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','185','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','289','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','329','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','336','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','341','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','393','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','441','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','480','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','539','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','685','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','971','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('3','996','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','23','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','62','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','79','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','355','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','398','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','490','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','616','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','691','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','712','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','721','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','798','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','909','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('4','924','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','19','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','54','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','171','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','202','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','203','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','288','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','316','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','340','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','375','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','383','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','392','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','411','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','535','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','687','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','730','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','841','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('5','865','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','29','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','53','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','60','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','70','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','165','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','451','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','509','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','519','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','605','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','692','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','826','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','902','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('6','994','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','96','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','173','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','217','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','218','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','225','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','351','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','554','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','633','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','691','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','766','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','770','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','805','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','806','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','846','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','900','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','901','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','910','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('7','959','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','115','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','158','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','179','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','195','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','205','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','255','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','321','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','396','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','523','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','532','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','554','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','859','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','895','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('8','936','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','30','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','74','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','147','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','148','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','191','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','200','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','204','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','434','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','510','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','514','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','552','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','671','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','697','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','722','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','865','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','873','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','889','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','903','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','926','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','964','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('9','974','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','191','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','236','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','251','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','366','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','477','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','480','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','530','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','587','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','703','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','716','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','782','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','929','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','930','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','964','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('10','983','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','118','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','205','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','281','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','283','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','364','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','395','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','429','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','532','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','567','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','587','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','597','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','709','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','850','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','854','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','888','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','896','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','928','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('11','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','16','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','37','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','91','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','92','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','155','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','177','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','213','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','216','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','344','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','400','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','416','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','513','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','593','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','631','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','672','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','716','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','728','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','812','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','838','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','871','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('12','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','29','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','45','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','110','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','154','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','203','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','337','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','346','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','381','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','385','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','427','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','456','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','513','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','515','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','524','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','528','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','597','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','718','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','816','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','843','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','897','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('13','998','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','154','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','187','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','232','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','241','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','253','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','255','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','258','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','284','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','370','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','415','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','417','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','454','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','472','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','495','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','536','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','537','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','612','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','759','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','847','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','856','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','890','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','908','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','919','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','948','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('14','970','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','31','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','89','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','91','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','108','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','125','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','236','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','275','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','445','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','500','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','502','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','594','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','626','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','745','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','783','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','795','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','886','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','924','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','949','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','968','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('15','985','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','80','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','101','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','121','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','155','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','177','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','218','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','221','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','267','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','269','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','271','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','287','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','438','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','455','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','456','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','548','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','582','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','583','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','779','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','886','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('16','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','96','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','119','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','124','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','127','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','154','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','201','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','236','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','310','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','313','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','378','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','478','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','500','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','515','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','521','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','573','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','770','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','794','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','800','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','873','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','948','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('17','959','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','44','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','268','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','279','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','321','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','386','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','460','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','536','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','612','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','808','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','842','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','863','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','883','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','917','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('18','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','2','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','3','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','152','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','182','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','217','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','266','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','404','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','490','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','510','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','513','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','644','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','670','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','711','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','750','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','756','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('19','877','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','54','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','63','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','140','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','165','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','231','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','269','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','274','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','366','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','445','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','478','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','492','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','499','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','527','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','531','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','589','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','643','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','652','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','663','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','757','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','863','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','962','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('20','977','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','6','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','142','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','159','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','179','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','253','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','281','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','321','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','398','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','426','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','429','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','497','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','507','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','530','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','686','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','700','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','702','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','733','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','798','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','804','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','887','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','893','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('21','983','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','23','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','89','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','111','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','291','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','294','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','349','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','430','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','483','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','495','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','536','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','634','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','648','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','731','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','742','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','775','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('22','964','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','6','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','42','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','78','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','116','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','117','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','125','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','226','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','235','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','367','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','370','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','419','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','435','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','449','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','536','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','549','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','691','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','766','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','782','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','804','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','820','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','826','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','842','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','855','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','856','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','935','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','981','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('23','997','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','3','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','83','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','126','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','148','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','178','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','277','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','335','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','405','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','515','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','585','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','653','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','704','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','781','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('24','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','21','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','86','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','179','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','204','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','213','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','226','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','404','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','411','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','583','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','697','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','755','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','871','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('25','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','21','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','93','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','103','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','147','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','186','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','201','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','225','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','241','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','327','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','329','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','340','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','390','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','392','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','544','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','644','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','682','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','715','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','795','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','821','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','885','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','904','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('26','906','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','19','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','150','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','273','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','334','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','359','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','398','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','415','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','477','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','500','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','586','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','593','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','679','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','682','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','695','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','805','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','854','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','873','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','889','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','904','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','986','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('27','996','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','14','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','58','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','74','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','96','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','259','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','287','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','358','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','502','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','532','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','597','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','619','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','625','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','652','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','679','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','743','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','790','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','793','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','816','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','879','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','908','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','973','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('28','994','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','79','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','110','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','131','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','133','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','226','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','273','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','282','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','335','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','436','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','444','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','449','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','482','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','488','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','519','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','547','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','590','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','646','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','723','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','812','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','928','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('29','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','53','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','64','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','69','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','77','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','260','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','318','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','321','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','357','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','565','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','797','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','838','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('30','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','163','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','299','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','308','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','368','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','380','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','585','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','700','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','739','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','793','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('31','978','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','65','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','103','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','136','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','219','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','309','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','401','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','427','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','523','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','567','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','585','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','651','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','667','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','669','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','928','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('32','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','135','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','154','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','214','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','252','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','305','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','667','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','712','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','735','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','754','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','775','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','878','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','881','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','965','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','972','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('33','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','119','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','125','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','182','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','244','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','336','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','389','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','393','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','438','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','493','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','502','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','525','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','668','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','720','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','779','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','794','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','836','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','846','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','929','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','950','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('34','971','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','52','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','201','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','389','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','589','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','612','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','615','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','707','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','738','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','748','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('35','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','15','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','81','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','171','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','231','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','283','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','380','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','381','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','387','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','390','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','426','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','427','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','466','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','493','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','499','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','569','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','590','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','715','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','716','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','731','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','875','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','915','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','931','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('36','956','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','12','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','19','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','118','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','119','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','122','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','204','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','253','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','260','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','277','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','317','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','467','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','477','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','555','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','572','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','662','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','663','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','697','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','839','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','840','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','900','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','925','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','963','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','989','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('37','997','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','24','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','111','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','160','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','176','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','223','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','241','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','274','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','335','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','448','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','501','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','516','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','547','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','583','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','619','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','793','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','839','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('38','876','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','71','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','73','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','168','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','203','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','222','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','290','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','293','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','415','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','425','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','456','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','476','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','559','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','587','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','598','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','648','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','683','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','689','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','696','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','700','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','703','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','736','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','831','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('39','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','11','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','128','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','163','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','177','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','223','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','233','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','374','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','394','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','396','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','466','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','521','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','723','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','747','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','754','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','799','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','868','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','887','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','933','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('40','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','4','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','60','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','69','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','86','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','100','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','150','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','159','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','203','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','230','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','252','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','305','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','336','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','383','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','544','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','596','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','657','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','674','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','678','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','721','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','724','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','779','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','799','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('41','942','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','24','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','139','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','309','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','333','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','500','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','502','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','505','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','527','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','535','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','546','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','568','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','648','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','687','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','713','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','738','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','798','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','861','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','865','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','867','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','876','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','890','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','907','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','922','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('42','932','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','19','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','42','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','89','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','147','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','161','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','180','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','239','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','276','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','330','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','344','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','359','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','377','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','533','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','598','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','605','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','621','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','753','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','917','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('43','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','58','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','94','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','109','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','176','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','273','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','434','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','490','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','591','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','598','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','604','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','699','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','751','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','825','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','854','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','875','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','878','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','883','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','896','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','902','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','937','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','952','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','982','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('44','998','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','18','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','65','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','66','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','115','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','117','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','187','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','198','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','219','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','330','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','407','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','416','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','467','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','502','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','537','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','767','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','778','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','797','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','810','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','895','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','900','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','901','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','925','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','975','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('45','978','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','38','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','51','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','174','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','319','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','407','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','448','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','456','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','478','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','567','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','731','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','766','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','768','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','820','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','836','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','889','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('46','991','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','36','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','53','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','233','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','273','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','351','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','385','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','670','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','770','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','777','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','787','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','790','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','913','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','924','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('47','973','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','99','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','101','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','134','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','150','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','211','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','267','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','287','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','295','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','315','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','349','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','545','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','559','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','570','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','599','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','645','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','757','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','792','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','922','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('48','926','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','31','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','151','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','195','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','282','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','391','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','400','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','407','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','423','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','542','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','558','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','579','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','595','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','662','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','709','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','716','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','927','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','977','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('49','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','111','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','178','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','248','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','274','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','288','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','327','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','372','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','401','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','417','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','476','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','504','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','552','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','591','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','621','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','632','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','645','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','672','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','795','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','840','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','897','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','918','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','924','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('50','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','5','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','63','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','103','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','121','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','395','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','408','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','461','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','490','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','525','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','627','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','678','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','733','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','750','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','847','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','891','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','895','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','940','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','974','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('51','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','20','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','92','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','96','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','108','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','203','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','341','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','376','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','388','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','407','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','424','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','515','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','584','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','596','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','664','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','675','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','689','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','812','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','878','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','879','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','915','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','951','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('52','999','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','51','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','58','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','109','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','122','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','126','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','181','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','268','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','285','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','307','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','358','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','386','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','447','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','465','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','490','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','492','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','518','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','573','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','577','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','697','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','727','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','937','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','947','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','961','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('53','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','129','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','150','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','184','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','285','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','510','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','524','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','546','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','658','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','754','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','842','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','861','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','913','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','970','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('54','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','8','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','75','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','307','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','340','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','403','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','486','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','612','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','620','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','709','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','776','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','790','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','930','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('55','963','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','63','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','226','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','236','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','298','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','307','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','354','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','383','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','417','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','421','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','521','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','593','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','728','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','750','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','781','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','795','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','844','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','851','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','868','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','893','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','936','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('56','965','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','16','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','101','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','114','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','122','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','134','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','192','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','213','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','258','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','267','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','317','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','340','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','393','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','447','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','502','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','592','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','605','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','685','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','707','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','767','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','891','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('57','918','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','48','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','68','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','119','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','128','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','135','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','175','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','235','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','316','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','417','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','426','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','460','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','477','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','549','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','578','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','602','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','632','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','638','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','698','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','755','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','800','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','856','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('58','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','5','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','46','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','54','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','72','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','121','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','129','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','130','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','183','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','210','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','241','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','295','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','572','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','644','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','689','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','702','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','713','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','749','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','943','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','946','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('59','984','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','31','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','133','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','142','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','177','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','179','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','186','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','222','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','235','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','239','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','253','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','297','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','299','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','334','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','376','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','423','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','436','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','493','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','534','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','658','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','679','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','754','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','783','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','805','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','928','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','952','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','971','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('60','986','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','235','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','237','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','307','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','362','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','372','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','374','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','423','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','518','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','519','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','535','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','537','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','585','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','639','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','648','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','703','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','766','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','767','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','780','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','831','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('61','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','6','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','42','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','54','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','100','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','101','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','129','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','198','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','211','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','231','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','272','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','295','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','337','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','375','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','385','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','393','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','398','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','406','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','413','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','445','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','465','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','707','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','951','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','981','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('62','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','73','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','134','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','167','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','225','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','248','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','278','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','392','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','633','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','763','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','781','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','809','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','893','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','932','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('63','981','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','3','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','37','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','124','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','291','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','307','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','335','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','448','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','471','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','543','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','557','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','569','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','572','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','597','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','616','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','646','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','860','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','921','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','925','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('64','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','39','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','46','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','97','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','106','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','117','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','125','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','158','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','276','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','305','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','371','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','398','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','471','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','476','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','496','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','516','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','556','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','577','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','615','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','658','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','683','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','735','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','951','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('65','965','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','55','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','143','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','226','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','229','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','230','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','283','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','300','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','350','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','376','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','424','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','434','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','676','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','697','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','706','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','793','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','871','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','909','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','915','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','928','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','951','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','960','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('66','999','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','24','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','57','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','244','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','408','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','477','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','496','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','512','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','601','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','731','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','766','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','861','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','870','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','915','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','972','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('67','981','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','45','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','133','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','161','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','205','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','213','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','215','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','255','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','315','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','325','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','331','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','357','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','378','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','380','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','386','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','396','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','435','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','497','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','671','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','706','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','747','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','834','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','839','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','840','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('68','971','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','15','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','111','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','202','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','236','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','300','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','374','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','396','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','452','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','466','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','612','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','720','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','722','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','761','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','791','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','864','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','877','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('69','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','50','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','53','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','92','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','202','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','227','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','290','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','304','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','343','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','466','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','504','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','584','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','823','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','834','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','856','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('70','964','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','26','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','52','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','233','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','317','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','359','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','362','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','385','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','399','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','532','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','560','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','638','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','773','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','918','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('71','956','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','237','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','325','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','331','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','405','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','550','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','609','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','623','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','640','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','718','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','743','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','757','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','773','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','854','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','865','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','956','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','964','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('72','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','36','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','45','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','51','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','77','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','148','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','275','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','374','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','467','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','548','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','562','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','565','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','627','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','666','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','667','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','707','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','748','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','823','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','936','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','946','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','950','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('73','998','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','28','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','44','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','117','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','185','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','192','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','203','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','321','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','415','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','537','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','543','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','617','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','626','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','663','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','704','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','720','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','747','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','780','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','804','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','834','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','836','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','848','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','872','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','902','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('74','956','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','12','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','143','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','222','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','372','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','436','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','445','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','492','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','498','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','547','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','579','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','645','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','667','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','780','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','870','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('75','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','60','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','66','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','68','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','95','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','122','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','187','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','223','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','234','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','251','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','444','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','464','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','498','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','568','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','604','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','642','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','648','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','709','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','760','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','765','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','781','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','850','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','866','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','870','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','935','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('76','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','13','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','22','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','40','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','73','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','78','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','224','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','240','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','261','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','343','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','442','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','566','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','612','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','749','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','943','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','963','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('77','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','86','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','239','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','260','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','261','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','265','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','387','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','393','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','505','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','530','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','549','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','552','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','599','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','670','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','674','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','689','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','762','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','767','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','963','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('78','968','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','32','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','40','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','205','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','230','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','267','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','269','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','299','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','367','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','430','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','634','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','646','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','727','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','750','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','753','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','776','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','840','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('79','916','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','69','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','118','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','124','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','175','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','260','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','341','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','343','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','362','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','436','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','619','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','687','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','709','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','807','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','888','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','941','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('80','979','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','4','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','11','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','59','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','89','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','178','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','186','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','215','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','219','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','232','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','260','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','267','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','268','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','304','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','332','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','389','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','398','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','465','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','505','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','527','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','545','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','578','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','579','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','613','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','619','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','643','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','692','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','710','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','761','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('81','910','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','104','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','143','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','247','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','290','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','316','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','344','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','468','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','480','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','497','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','527','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','750','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','787','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','838','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','839','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','870','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','877','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','893','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','911','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','954','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','978','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('82','985','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','52','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','58','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','110','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','121','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','135','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','165','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','217','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','247','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','268','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','279','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','281','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','339','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','340','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','412','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','519','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','615','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','631','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','655','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','672','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','686','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','777','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','873','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('83','932','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','19','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','39','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','46','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','175','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','238','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','281','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','290','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','317','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','413','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','460','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','479','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','566','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','589','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','616','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','646','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','703','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','782','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','809','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','843','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','887','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','975','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('84','996','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','2','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','14','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','72','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','92','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','148','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','216','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','290','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','297','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','337','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','383','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','421','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','461','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','478','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','543','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','558','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','591','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','630','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','678','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','711','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','761','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','812','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','875','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','895','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('85','960','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','137','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','163','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','196','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','216','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','331','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','364','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','391','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','432','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','482','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','486','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','519','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','548','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','623','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','631','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','760','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','808','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','857','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','878','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','893','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','905','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('86','929','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','48','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','157','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','161','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','253','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','421','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','570','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','599','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','679','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','706','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','718','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','721','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','870','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','952','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('87','961','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','4','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','76','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','128','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','234','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','304','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','602','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','620','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','668','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','819','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','839','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','881','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','908','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','929','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','940','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('88','968','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','103','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','117','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','182','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','187','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','266','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','406','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','488','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','542','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','697','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','864','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','970','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('89','976','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','2','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','11','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','100','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','330','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','363','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','374','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','384','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','385','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','391','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','406','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','442','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','451','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','542','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','586','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','633','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','663','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','676','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','838','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','855','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','868','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','901','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('90','925','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','13','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','48','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','176','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','181','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','190','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','335','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','416','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','447','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','480','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','493','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','509','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','511','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','807','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','859','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','941','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('91','982','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','94','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','103','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','104','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','123','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','137','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','229','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','381','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','436','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','443','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','470','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','505','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','512','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','543','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','545','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','547','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','568','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','662','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','686','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','699','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','712','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','728','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','825','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','838','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','889','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','929','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('92','991','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','71','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','124','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','325','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','339','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','427','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','445','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','573','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','621','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','644','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','678','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','699','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','768','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','777','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','856','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','909','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','916','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('93','982','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','13','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','60','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','76','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','122','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','206','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','228','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','270','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','275','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','337','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','354','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','402','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','512','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','521','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','533','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','548','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','712','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','713','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','724','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','775','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','950','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('94','989','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','22','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','52','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','65','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','74','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','126','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','294','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','329','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','375','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','424','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','498','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','546','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','619','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','627','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','690','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','748','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','813','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','828','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','855','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','903','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('95','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','8','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','36','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','40','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','54','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','58','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','66','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','134','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','209','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','244','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','430','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','452','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','486','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','572','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','590','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','661','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','778','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','846','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','968','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('96','987','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','143','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','177','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','358','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','370','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','466','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','518','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','641','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','656','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','728','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','755','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','757','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','826','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','930','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','933','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','947','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('97','951','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','66','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','72','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','81','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','183','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','297','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','634','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','686','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','710','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','721','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','738','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','765','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','782','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','824','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','955','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','985','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('98','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','7','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','325','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','381','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','490','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','512','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','572','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','620','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','672','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','741','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','796','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','978','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('99','982','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','118','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','411','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','513','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','563','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','642','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','718','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','759','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','779','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','846','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','850','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','872','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','877','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','909','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','919','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','979','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','991','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('100','992','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','60','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','66','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','189','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','255','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','275','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','289','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','511','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','568','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','617','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','655','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','662','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','700','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','702','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','774','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','787','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','828','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','841','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','928','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','932','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','936','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','941','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','978','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','984','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('101','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','20','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','53','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','123','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','124','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','200','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','205','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','268','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','329','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','334','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','351','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','521','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','526','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','544','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','605','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','624','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','631','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','712','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','728','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','796','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','810','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','828','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','837','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','845','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','979','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('102','980','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','5','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','118','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','130','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','206','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','215','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','221','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','271','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','285','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','315','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','318','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','333','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','356','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','360','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','378','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','585','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','609','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','639','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','643','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','692','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','735','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','822','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','895','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','903','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','942','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('103','956','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','19','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','39','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','40','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','59','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','70','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','136','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','156','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','184','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','198','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','233','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','259','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','287','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','309','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','313','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','394','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','401','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','516','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','583','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','657','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','677','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','739','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','904','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','926','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','984','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('104','999','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','12','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','15','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','21','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','29','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','42','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','116','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','158','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','239','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','283','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','315','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','333','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','372','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','377','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','530','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','558','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','686','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','750','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','795','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','831','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','864','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','893','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','906','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','910','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','915','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','954','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('105','994','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','44','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','83','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','108','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','126','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','136','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','166','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','189','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','204','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','229','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','241','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','365','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','399','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','439','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','500','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','505','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','559','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','566','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','585','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','639','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','659','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','675','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','687','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','763','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','780','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','866','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','881','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('106','934','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','62','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','133','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','136','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','138','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','165','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','209','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','220','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','239','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','277','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','388','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','392','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','409','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','430','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','445','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','454','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','467','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','534','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','548','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','774','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','781','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','796','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','831','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','859','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','879','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','905','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','973','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('107','977','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','6','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','137','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','219','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','278','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','302','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','350','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','378','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','495','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','507','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','567','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','648','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','652','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','655','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','693','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','696','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','702','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','721','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','733','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','741','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','887','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('108','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','12','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','48','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','77','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','157','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','174','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','190','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','281','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','393','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','657','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','700','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','753','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','786','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','863','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','885','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','955','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('109','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','8','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','62','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','126','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','156','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','343','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','360','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','435','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','513','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','525','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','539','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','545','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','625','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','801','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','961','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('110','987','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','61','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','78','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','98','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','179','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','325','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','359','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','382','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','403','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','407','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','555','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','643','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','669','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','679','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','699','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','731','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','777','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','847','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','919','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','962','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('111','973','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','37','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','151','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','173','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','231','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','443','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','565','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','666','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','700','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','728','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','796','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','856','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','865','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('112','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','116','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','181','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','218','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','258','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','292','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','403','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','525','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','642','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','656','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','674','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','700','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','723','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','748','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','838','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','890','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','921','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('113','981','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','13','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','68','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','210','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','237','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','305','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','339','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','425','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','452','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','619','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','757','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','807','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','841','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','861','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','866','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','913','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','961','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('114','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','52','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','246','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','277','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','302','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','383','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','391','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','531','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','615','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','661','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','671','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','686','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','703','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','740','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','754','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','846','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','887','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','952','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','955','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','985','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('115','994','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','36','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','48','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','128','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','336','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','384','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','412','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','451','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','481','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','492','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','584','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','647','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','653','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','742','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','844','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','939','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('116','956','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','15','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','42','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','167','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','178','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','190','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','224','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','246','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','273','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','298','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','316','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','337','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','395','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','423','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','432','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','459','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','468','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','550','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','578','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','707','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','710','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','738','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','739','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','778','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','783','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','797','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','812','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','831','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','864','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','887','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('117','926','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','39','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','41','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','55','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','136','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','151','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','384','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','399','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','499','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','558','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','572','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','641','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','656','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','695','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','735','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('118','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','21','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','64','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','143','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','171','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','173','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','381','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','394','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','412','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','454','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','509','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','521','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','567','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','570','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','592','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','614','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','693','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','738','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','751','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','782','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','786','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','868','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','900','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('119','939','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','57','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','63','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','149','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','231','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','238','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','255','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','424','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','513','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','590','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','641','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','642','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','659','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','682','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','691','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','715','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','722','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','746','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','898','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','911','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('120','994','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','154','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','161','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','186','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','198','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','220','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','222','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','284','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','297','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','449','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','479','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','633','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','658','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','666','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','780','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','847','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','884','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','885','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('121','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','22','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','29','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','76','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','83','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','157','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','158','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','166','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','227','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','238','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','300','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','307','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','363','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','470','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','542','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','620','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','718','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','795','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','961','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('122','998','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','3','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','148','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','151','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','185','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','223','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','234','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','245','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','246','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','266','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','429','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','442','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','479','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','480','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','503','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','530','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','577','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','589','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','593','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','730','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','786','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','860','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','926','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('123','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','22','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','64','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','106','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','113','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','190','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','246','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','260','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','289','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','343','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','449','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','468','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','539','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','601','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','742','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','775','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','814','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','882','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','987','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('124','997','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','62','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','98','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','100','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','114','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','175','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','204','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','238','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','324','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','367','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','395','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','428','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','429','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','497','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','557','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','568','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','584','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','602','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','623','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','664','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','683','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','710','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','877','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','908','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','949','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('125','965','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','21','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','58','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','96','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','288','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','317','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','370','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','419','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','468','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','545','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','685','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','836','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('126','860','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','36','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','48','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','79','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','119','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','157','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','202','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','333','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','354','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','366','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','382','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','388','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','411','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','459','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','573','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','613','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','617','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','641','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','710','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','727','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','749','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','763','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','791','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','819','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','839','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','846','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','911','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('127','970','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','26','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','82','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','119','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','168','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','238','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','299','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','336','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','407','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','516','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','614','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','671','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','693','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','696','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','759','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','774','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','814','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','899','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','949','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('128','965','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','89','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','101','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','166','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','202','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','230','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','247','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','348','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','367','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','391','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','452','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','471','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','597','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','602','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','640','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','669','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','684','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','805','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','826','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','834','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','857','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','910','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('129','962','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','26','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','37','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','57','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','375','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','416','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','452','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','478','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','507','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','525','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','549','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','592','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','702','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','725','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','809','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','930','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('130','981','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','48','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','66','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','94','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','147','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','206','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','383','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','432','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','436','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','479','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','515','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','539','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','590','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','647','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','693','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','713','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','770','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','798','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','809','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','875','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','881','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('131','921','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','81','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','82','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','133','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','156','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','377','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','562','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','586','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','626','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','698','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','756','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','806','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','897','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','899','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','904','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','930','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('132','987','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','7','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','51','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','133','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','172','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','210','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','270','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','280','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','351','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','368','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','385','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','390','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','397','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','452','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','514','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','594','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','652','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','727','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','806','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','868','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','882','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','933','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('133','952','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','132','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','145','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','161','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','219','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','278','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','341','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','386','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','413','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','558','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','624','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','655','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','683','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','690','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','861','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','896','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','897','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','915','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','927','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('134','936','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','41','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','65','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','269','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','357','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','364','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','455','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','616','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','814','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('135','905','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','20','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','61','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','214','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','229','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','256','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','271','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','288','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','300','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','364','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','401','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','542','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','552','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','620','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','686','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','781','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','806','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','808','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','818','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','842','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','933','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('136','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','6','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','14','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','96','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','160','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','224','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','268','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','304','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','390','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','530','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','610','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','703','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','745','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','841','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('137','917','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','8','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','52','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','61','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','125','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','157','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','214','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','258','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','376','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','403','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','453','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','553','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','583','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','627','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','639','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','695','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','747','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','879','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','885','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','970','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('138','989','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','20','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','57','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','74','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','155','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','181','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','200','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','229','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','233','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','261','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','266','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','282','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','284','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','373','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','447','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','570','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','602','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','605','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','691','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','706','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','746','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('139','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','77','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','112','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','135','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','185','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','258','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','370','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','373','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','498','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','509','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','587','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','599','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','647','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','670','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','693','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','702','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','730','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','731','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','736','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','742','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','778','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','820','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','857','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','934','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('140','999','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','191','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','223','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','341','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','358','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','380','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','395','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','467','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','589','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','740','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','768','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','787','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','821','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','829','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','840','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','863','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','909','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('141','992','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','18','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','139','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','186','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','199','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','248','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','328','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','350','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','371','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','470','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','481','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','501','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','504','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','554','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','575','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','710','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','712','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','735','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','759','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','794','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','842','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','859','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','863','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','875','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','906','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('142','999','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','79','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','175','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','232','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','239','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','316','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','339','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','386','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','404','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','497','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','560','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','603','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','613','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','659','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','660','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','687','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','690','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','706','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','792','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','821','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','872','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','878','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','906','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('143','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','18','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','79','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','99','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','123','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','125','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','127','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','130','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','135','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','184','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','216','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','228','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','260','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','272','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','291','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','293','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','393','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','396','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','504','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','540','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','599','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','668','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','702','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','753','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','762','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','776','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','845','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('144','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','39','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','109','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','154','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','155','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','293','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','402','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','409','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','457','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','487','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','527','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','592','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','625','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','629','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','641','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','661','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','664','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','692','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','713','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','748','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','822','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','893','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('145','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','12','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','16','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','117','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','177','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','191','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','207','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','218','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','278','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','314','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','372','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','384','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','402','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','427','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','429','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','512','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','514','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','591','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','720','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','731','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','871','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','909','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','922','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','955','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('146','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','4','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','131','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','139','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','145','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','178','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','251','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','254','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','295','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','298','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','305','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','310','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','318','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','333','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','341','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','351','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','394','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','402','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','405','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','443','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','554','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','563','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','708','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','864','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('147','987','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','57','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','133','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','149','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','226','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','368','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','422','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','468','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','633','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','718','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','768','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('148','792','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','53','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','72','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','95','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','118','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','139','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','159','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','169','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','178','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','339','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','354','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','362','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','365','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','631','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','670','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','685','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','761','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','782','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','810','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','899','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','905','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','913','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','921','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','947','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','949','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('149','992','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','23','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','63','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','75','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','94','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','105','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','168','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','190','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','206','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','233','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','270','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','285','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','386','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','446','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','447','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','468','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','542','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','629','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','647','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','672','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','697','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','728','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','777','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','854','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','873','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','887','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','889','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('150','962','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','131','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','167','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','217','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','232','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','367','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','370','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','382','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','451','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','482','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','501','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','527','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','539','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','570','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','634','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','658','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','703','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','895','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('151','989','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','59','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','217','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','248','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','318','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','332','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','476','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','578','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','611','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','615','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','674','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','768','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','821','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','846','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','891','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','898','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','927','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','964','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('152','968','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','64','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','136','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','180','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','203','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','231','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','444','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','476','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','480','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','486','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','536','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','627','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','756','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','766','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','847','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','919','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('153','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','111','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','158','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','169','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','170','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','274','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','276','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','282','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','299','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','314','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','396','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','399','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','421','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','440','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','467','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','602','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','698','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','842','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','954','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('154','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','20','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','128','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','153','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','220','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','312','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','359','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','383','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','387','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','407','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','427','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','459','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','513','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','584','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','590','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','630','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','757','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','768','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','885','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','890','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','941','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','987','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','997','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('155','1000','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','53','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','155','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','198','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','244','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','263','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','285','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','297','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','349','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','448','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','467','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','504','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','518','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','593','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','646','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','754','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','775','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('156','844','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','24','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','122','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','159','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','183','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','210','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','217','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','291','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','321','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','400','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','406','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','496','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','535','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','573','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','604','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','616','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','642','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','661','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','696','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','713','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','835','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','913','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('157','973','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','32','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','47','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','64','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','66','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','102','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','121','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','177','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','178','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','215','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','241','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','293','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','483','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','532','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','555','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','581','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','601','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','616','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','626','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','799','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','812','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','824','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','840','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','879','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','896','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','968','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('158','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','20','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','82','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','127','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','187','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','206','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','223','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','248','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','343','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','344','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','364','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','549','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','600','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','674','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','789','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','800','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','818','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','876','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','907','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('159','978','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','2','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','242','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','267','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','275','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','368','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','455','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','579','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','660','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','755','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','767','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','794','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','826','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','883','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','950','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('160','954','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','58','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','89','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','90','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','247','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','269','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','281','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','340','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','401','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','414','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','425','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','526','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','644','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','653','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','655','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','669','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','684','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','749','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','807','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','825','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','850','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','921','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','924','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('161','927','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','4','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','7','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','18','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','28','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','32','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','41','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','121','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','274','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','279','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','409','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','415','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','500','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','612','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','659','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','786','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','844','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','909','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('162','968','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','30','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','45','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','166','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','180','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','239','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','283','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','304','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','307','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','394','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','409','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','434','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','444','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','881','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','891','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','947','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('163','996','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','15','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','23','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','148','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','169','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','252','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','324','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','367','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','431','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','448','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','469','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','545','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','610','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','613','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','681','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','698','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','801','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','820','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','834','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','851','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','884','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','908','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','957','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('164','984','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','72','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','95','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','204','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','253','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','360','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','375','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','395','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','421','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','607','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','644','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','659','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','693','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','779','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','798','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','807','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','809','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','832','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','947','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','948','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('165','962','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','38','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','55','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','61','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','68','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','86','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','255','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','297','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','306','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','366','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','426','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','580','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','674','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','867','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','944','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('166','1000','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','63','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','72','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','107','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','120','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','191','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','294','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','319','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','339','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','341','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','496','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','554','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','626','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','672','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','692','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','717','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','794','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','800','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','856','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','864','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','882','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('167','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','32','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','56','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','92','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','115','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','196','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','237','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','241','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','255','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','305','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','336','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','387','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','438','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','519','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','602','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','619','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','626','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','652','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','678','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','685','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','804','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','807','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','826','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','841','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','886','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','889','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','927','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('168','959','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','6','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','78','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','93','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','246','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','248','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','289','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','326','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','349','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','372','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','398','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','434','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','505','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','634','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','642','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','727','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','778','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','847','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','894','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','897','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','954','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','992','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('169','998','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','7','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','15','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','102','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','139','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','180','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','184','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','212','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','299','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','358','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','416','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','537','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','868','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','877','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','886','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','925','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('170','996','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','166','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','181','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','219','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','273','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','318','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','342','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','397','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','447','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','466','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','549','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','560','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','566','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','608','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','625','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','645','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','701','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','761','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','779','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','872','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','898','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','903','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('171','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','57','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','100','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','148','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','215','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','302','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','345','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','368','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','385','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','423','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','487','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','493','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','567','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','609','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','639','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','661','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','667','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','710','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','771','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('172','959','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','55','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','74','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','80','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','106','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','154','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','235','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','313','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','405','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','491','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','496','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','550','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','564','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','592','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','688','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','753','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','757','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','857','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','921','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','928','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('173','933','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','11','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','61','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','168','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','298','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','352','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','442','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','451','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','496','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','610','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','659','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','677','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','722','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','780','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','797','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','809','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','879','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('174','982','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','29','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','129','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','155','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','190','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','191','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','362','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','405','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','424','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','439','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','442','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','483','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','591','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','596','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','616','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','778','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','828','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','842','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','890','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','908','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','977','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','978','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('175','998','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','13','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','73','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','89','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','150','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','162','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','238','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','252','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','320','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','401','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','417','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','441','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','461','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','521','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','543','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','573','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','699','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','740','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','746','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','839','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','859','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','872','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('176','946','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','12','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','39','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','52','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','55','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','86','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','175','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','188','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','235','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','237','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','289','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','363','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','401','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','433','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','458','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','543','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','563','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','683','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','684','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','726','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','751','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','763','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','764','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','910','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('177','956','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','30','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','34','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','109','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','160','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','194','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','197','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','273','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','397','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','483','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','537','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','587','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','708','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','733','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','762','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','930','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','974','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','983','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('178','1000','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','24','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','27','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','65','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','85','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','109','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','131','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','159','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','193','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','250','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','291','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','353','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','415','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','463','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','468','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','489','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','566','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','698','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','737','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','852','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','924','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','931','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','960','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('179','976','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','12','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','195','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','258','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','441','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','609','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','657','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','724','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','732','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','777','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','809','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','811','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','820','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','824','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','847','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','955','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('180','963','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','5','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','40','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','74','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','78','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','83','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','152','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','195','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','233','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','381','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','387','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','403','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','409','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','456','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','507','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','539','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','542','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','546','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','579','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','596','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','604','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','609','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','625','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','744','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','816','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','836','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','868','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','870','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','907','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','911','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','921','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('181','991','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','33','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','160','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','301','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','324','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','346','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','362','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','391','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','413','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','421','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','590','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','639','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','668','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','677','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','679','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','695','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','720','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','819','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','828','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','845','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','864','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','940','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('182','990','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','32','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','40','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','71','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','113','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','313','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','388','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','389','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','390','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','495','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','636','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','715','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','850','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','862','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','941','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','949','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('183','983','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','35','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','169','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','221','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','336','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','371','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','452','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','486','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','492','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','500','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','574','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','580','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','597','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','615','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','640','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','642','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','650','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','661','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','684','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','745','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','772','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','787','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','867','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','959','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','966','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('184','985','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','7','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','95','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','138','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','265','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','286','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','360','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','411','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','427','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','437','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','448','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','510','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','518','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','554','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','560','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','571','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','584','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','631','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','665','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','694','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','730','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','761','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','818','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','845','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','880','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','882','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','919','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','920','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','965','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('185','973','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','95','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','187','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','208','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','228','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','237','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','422','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','482','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','508','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','552','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','579','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','637','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','648','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','654','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','729','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','983','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('186','994','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','17','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','25','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','29','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','51','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','73','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','76','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','98','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','110','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','127','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','168','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','222','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','224','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','297','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','354','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','417','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','435','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','441','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','499','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','548','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','561','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','617','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','625','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','664','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','671','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','768','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','779','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','906','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','923','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('187','976','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','10','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','14','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','51','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','102','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','111','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','146','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','206','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','223','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','289','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','322','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','338','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','396','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','412','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','506','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','517','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','529','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','566','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','593','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','662','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','770','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','773','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','774','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','925','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','988','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('188','989','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','43','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','82','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','171','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','266','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','272','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','315','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','378','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','492','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','509','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','512','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','519','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','533','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','548','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','560','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','734','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','748','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','788','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','820','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','853','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','882','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','896','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','899','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('189','940','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','38','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','54','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','62','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','87','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','173','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','234','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','253','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','278','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','310','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','374','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','411','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','426','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','472','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','549','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','562','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','606','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','623','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','679','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','682','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','693','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','695','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','705','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','708','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','802','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','806','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','874','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('190','959','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','16','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','39','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','185','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','219','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','293','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','296','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','378','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','410','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','420','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','461','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','544','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','551','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','596','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','638','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','668','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','692','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','775','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','801','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','819','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','827','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','830','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','834','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','849','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','914','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','969','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','971','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('191','993','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','16','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','69','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','117','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','155','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','166','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','179','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','214','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','367','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','426','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','465','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','470','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','475','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','485','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','578','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','592','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','614','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','618','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','622','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','674','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','677','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','680','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','682','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','708','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','711','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','747','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','763','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('192','819','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','44','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','80','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','103','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','109','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','119','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','291','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','352','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','358','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','376','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','412','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','689','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','709','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','745','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','807','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','828','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','834','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','851','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','937','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('193','960','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','9','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','42','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','86','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','88','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','98','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','135','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','161','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','163','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','215','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','232','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','352','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','415','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','486','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','498','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','531','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','719','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','738','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','786','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','872','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','938','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('194','940','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','129','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','130','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','141','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','144','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','298','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','359','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','361','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','392','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','403','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','494','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','520','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','534','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','560','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','592','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','649','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','658','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','673','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','677','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','706','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','738','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','781','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','794','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','813','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','869','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','885','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('195','962','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','64','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','122','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','156','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','169','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','276','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','284','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','324','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','423','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','473','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','484','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','515','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','524','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','560','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','575','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','576','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','587','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','615','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','635','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','684','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','795','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','833','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','837','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','906','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','908','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','919','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','939','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('196','972','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','6','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','29','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','63','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','123','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','129','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','147','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','164','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','189','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','243','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','249','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','258','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','364','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','369','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','370','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','418','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','522','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','531','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','554','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','598','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','691','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','724','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','746','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','752','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','769','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','815','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','916','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','950','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','967','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','974','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','979','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('197','995','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','1','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','109','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','125','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','186','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','262','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','264','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','303','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','309','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','311','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','329','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','347','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','379','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','395','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','406','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','450','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','464','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','482','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','499','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','536','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','545','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','555','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','568','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','570','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','588','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','597','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','628','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','745','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','758','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','796','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','806','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','817','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','843','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','858','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','871','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','886','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','892','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','924','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','952','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('198','997','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','67','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','84','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','145','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','159','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','216','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','432','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','541','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','604','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','640','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','689','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','730','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','784','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','785','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','886','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('199','953','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','5','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','49','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','80','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','116','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','121','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','149','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','346','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','419','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','462','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','465','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','474','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','537','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','538','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','544','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','714','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','879','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','912','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','945','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','958','2006-02-15 05:05:03.000') +; +Insert into film_actor + (actor_id,film_id,last_update) +Values +('200','993','2006-02-15 05:05:03.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table film_category +-- Start of script +Insert into film_category + (film_id,category_id,last_update) +Values +('1','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('2','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('3','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('4','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('5','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('6','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('7','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('8','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('9','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('10','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('11','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('12','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('13','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('14','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('15','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('16','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('17','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('18','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('19','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('20','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('21','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('22','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('23','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('24','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('25','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('26','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('27','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('28','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('29','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('30','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('31','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('32','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('33','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('34','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('35','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('36','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('37','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('38','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('39','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('40','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('41','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('42','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('43','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('44','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('45','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('46','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('47','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('48','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('49','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('50','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('51','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('52','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('53','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('54','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('55','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('56','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('57','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('58','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('59','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('60','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('61','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('62','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('63','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('64','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('65','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('66','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('67','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('68','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('69','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('70','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('71','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('72','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('73','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('74','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('75','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('76','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('77','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('78','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('79','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('80','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('81','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('82','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('83','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('84','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('85','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('86','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('87','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('88','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('89','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('90','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('91','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('92','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('93','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('94','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('95','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('96','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('97','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('98','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('99','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('100','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('101','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('102','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('103','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('104','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('105','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('106','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('107','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('108','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('109','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('110','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('111','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('112','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('113','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('114','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('115','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('116','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('117','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('118','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('119','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('120','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('121','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('122','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('123','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('124','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('125','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('126','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('127','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('128','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('129','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('130','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('131','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('132','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('133','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('134','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('135','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('136','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('137','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('138','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('139','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('140','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('141','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('142','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('143','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('144','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('145','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('146','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('147','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('148','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('149','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('150','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('151','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('152','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('153','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('154','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('155','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('156','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('157','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('158','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('159','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('160','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('161','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('162','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('163','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('164','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('165','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('166','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('167','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('168','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('169','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('170','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('171','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('172','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('173','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('174','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('175','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('176','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('177','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('178','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('179','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('180','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('181','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('182','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('183','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('184','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('185','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('186','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('187','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('188','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('189','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('190','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('191','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('192','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('193','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('194','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('195','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('196','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('197','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('198','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('199','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('200','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('201','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('202','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('203','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('204','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('205','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('206','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('207','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('208','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('209','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('210','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('211','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('212','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('213','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('214','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('215','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('216','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('217','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('218','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('219','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('220','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('221','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('222','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('223','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('224','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('225','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('226','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('227','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('228','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('229','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('230','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('231','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('232','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('233','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('234','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('235','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('236','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('237','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('238','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('239','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('240','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('241','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('242','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('243','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('244','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('245','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('246','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('247','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('248','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('249','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('250','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('251','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('252','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('253','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('254','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('255','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('256','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('257','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('258','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('259','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('260','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('261','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('262','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('263','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('264','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('265','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('266','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('267','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('268','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('269','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('270','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('271','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('272','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('273','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('274','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('275','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('276','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('277','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('278','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('279','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('280','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('281','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('282','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('283','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('284','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('285','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('286','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('287','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('288','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('289','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('290','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('291','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('292','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('293','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('294','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('295','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('296','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('297','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('298','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('299','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('300','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('301','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('302','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('303','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('304','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('305','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('306','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('307','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('308','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('309','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('310','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('311','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('312','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('313','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('314','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('315','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('316','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('317','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('318','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('319','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('320','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('321','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('322','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('323','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('324','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('325','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('326','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('327','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('328','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('329','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('330','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('331','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('332','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('333','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('334','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('335','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('336','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('337','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('338','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('339','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('340','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('341','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('342','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('343','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('344','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('345','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('346','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('347','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('348','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('349','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('350','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('351','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('352','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('353','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('354','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('355','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('356','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('357','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('358','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('359','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('360','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('361','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('362','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('363','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('364','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('365','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('366','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('367','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('368','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('369','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('370','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('371','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('372','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('373','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('374','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('375','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('376','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('377','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('378','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('379','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('380','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('381','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('382','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('383','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('384','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('385','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('386','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('387','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('388','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('389','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('390','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('391','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('392','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('393','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('394','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('395','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('396','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('397','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('398','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('399','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('400','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('401','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('402','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('403','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('404','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('405','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('406','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('407','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('408','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('409','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('410','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('411','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('412','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('413','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('414','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('415','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('416','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('417','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('418','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('419','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('420','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('421','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('422','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('423','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('424','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('425','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('426','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('427','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('428','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('429','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('430','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('431','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('432','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('433','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('434','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('435','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('436','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('437','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('438','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('439','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('440','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('441','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('442','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('443','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('444','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('445','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('446','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('447','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('448','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('449','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('450','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('451','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('452','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('453','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('454','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('455','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('456','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('457','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('458','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('459','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('460','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('461','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('462','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('463','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('464','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('465','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('466','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('467','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('468','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('469','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('470','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('471','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('472','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('473','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('474','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('475','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('476','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('477','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('478','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('479','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('480','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('481','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('482','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('483','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('484','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('485','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('486','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('487','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('488','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('489','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('490','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('491','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('492','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('493','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('494','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('495','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('496','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('497','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('498','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('499','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('500','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('501','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('502','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('503','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('504','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('505','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('506','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('507','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('508','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('509','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('510','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('511','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('512','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('513','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('514','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('515','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('516','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('517','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('518','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('519','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('520','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('521','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('522','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('523','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('524','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('525','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('526','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('527','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('528','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('529','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('530','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('531','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('532','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('533','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('534','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('535','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('536','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('537','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('538','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('539','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('540','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('541','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('542','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('543','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('544','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('545','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('546','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('547','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('548','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('549','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('550','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('551','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('552','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('553','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('554','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('555','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('556','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('557','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('558','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('559','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('560','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('561','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('562','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('563','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('564','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('565','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('566','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('567','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('568','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('569','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('570','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('571','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('572','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('573','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('574','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('575','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('576','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('577','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('578','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('579','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('580','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('581','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('582','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('583','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('584','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('585','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('586','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('587','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('588','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('589','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('590','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('591','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('592','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('593','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('594','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('595','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('596','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('597','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('598','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('599','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('600','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('601','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('602','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('603','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('604','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('605','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('606','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('607','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('608','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('609','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('610','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('611','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('612','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('613','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('614','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('615','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('616','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('617','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('618','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('619','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('620','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('621','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('622','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('623','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('624','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('625','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('626','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('627','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('628','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('629','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('630','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('631','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('632','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('633','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('634','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('635','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('636','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('637','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('638','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('639','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('640','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('641','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('642','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('643','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('644','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('645','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('646','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('647','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('648','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('649','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('650','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('651','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('652','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('653','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('654','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('655','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('656','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('657','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('658','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('659','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('660','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('661','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('662','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('663','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('664','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('665','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('666','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('667','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('668','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('669','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('670','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('671','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('672','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('673','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('674','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('675','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('676','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('677','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('678','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('679','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('680','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('681','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('682','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('683','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('684','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('685','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('686','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('687','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('688','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('689','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('690','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('691','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('692','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('693','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('694','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('695','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('696','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('697','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('698','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('699','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('700','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('701','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('702','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('703','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('704','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('705','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('706','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('707','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('708','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('709','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('710','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('711','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('712','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('713','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('714','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('715','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('716','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('717','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('718','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('719','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('720','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('721','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('722','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('723','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('724','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('725','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('726','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('727','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('728','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('729','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('730','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('731','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('732','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('733','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('734','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('735','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('736','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('737','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('738','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('739','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('740','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('741','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('742','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('743','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('744','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('745','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('746','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('747','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('748','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('749','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('750','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('751','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('752','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('753','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('754','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('755','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('756','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('757','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('758','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('759','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('760','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('761','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('762','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('763','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('764','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('765','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('766','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('767','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('768','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('769','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('770','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('771','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('772','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('773','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('774','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('775','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('776','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('777','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('778','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('779','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('780','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('781','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('782','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('783','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('784','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('785','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('786','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('787','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('788','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('789','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('790','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('791','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('792','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('793','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('794','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('795','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('796','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('797','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('798','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('799','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('800','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('801','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('802','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('803','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('804','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('805','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('806','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('807','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('808','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('809','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('810','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('811','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('812','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('813','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('814','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('815','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('816','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('817','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('818','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('819','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('820','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('821','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('822','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('823','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('824','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('825','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('826','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('827','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('828','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('829','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('830','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('831','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('832','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('833','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('834','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('835','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('836','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('837','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('838','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('839','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('840','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('841','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('842','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('843','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('844','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('845','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('846','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('847','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('848','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('849','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('850','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('851','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('852','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('853','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('854','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('855','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('856','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('857','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('858','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('859','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('860','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('861','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('862','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('863','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('864','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('865','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('866','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('867','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('868','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('869','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('870','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('871','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('872','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('873','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('874','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('875','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('876','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('877','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('878','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('879','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('880','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('881','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('882','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('883','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('884','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('885','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('886','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('887','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('888','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('889','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('890','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('891','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('892','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('893','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('894','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('895','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('896','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('897','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('898','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('899','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('900','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('901','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('902','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('903','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('904','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('905','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('906','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('907','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('908','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('909','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('910','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('911','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('912','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('913','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('914','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('915','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('916','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('917','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('918','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('919','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('920','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('921','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('922','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('923','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('924','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('925','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('926','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('927','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('928','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('929','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('930','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('931','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('932','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('933','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('934','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('935','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('936','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('937','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('938','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('939','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('940','15','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('941','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('942','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('943','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('944','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('945','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('946','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('947','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('948','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('949','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('950','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('951','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('952','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('953','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('954','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('955','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('956','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('957','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('958','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('959','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('960','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('961','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('962','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('963','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('964','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('965','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('966','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('967','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('968','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('969','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('970','4','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('971','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('972','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('973','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('974','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('975','8','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('976','10','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('977','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('978','5','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('979','7','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('980','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('981','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('982','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('983','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('984','9','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('985','14','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('986','2','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('987','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('988','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('989','16','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('990','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('991','1','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('992','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('993','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('994','13','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('995','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('996','6','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('997','12','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('998','11','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('999','3','2006-02-15 05:07:09.000') +; +Insert into film_category + (film_id,category_id,last_update) +Values +('1000','5','2006-02-15 05:07:09.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table customer +-- Start of script +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('1','1','MARY','SMITH','MARY.SMITH@sakilacustomer.org','5','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('2','1','PATRICIA','JOHNSON','PATRICIA.JOHNSON@sakilacustomer.org','6','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('3','1','LINDA','WILLIAMS','LINDA.WILLIAMS@sakilacustomer.org','7','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('4','2','BARBARA','JONES','BARBARA.JONES@sakilacustomer.org','8','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('5','1','ELIZABETH','BROWN','ELIZABETH.BROWN@sakilacustomer.org','9','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('6','2','JENNIFER','DAVIS','JENNIFER.DAVIS@sakilacustomer.org','10','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('7','1','MARIA','MILLER','MARIA.MILLER@sakilacustomer.org','11','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('8','2','SUSAN','WILSON','SUSAN.WILSON@sakilacustomer.org','12','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('9','2','MARGARET','MOORE','MARGARET.MOORE@sakilacustomer.org','13','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('10','1','DOROTHY','TAYLOR','DOROTHY.TAYLOR@sakilacustomer.org','14','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('11','2','LISA','ANDERSON','LISA.ANDERSON@sakilacustomer.org','15','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('12','1','NANCY','THOMAS','NANCY.THOMAS@sakilacustomer.org','16','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('13','2','KAREN','JACKSON','KAREN.JACKSON@sakilacustomer.org','17','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('14','2','BETTY','WHITE','BETTY.WHITE@sakilacustomer.org','18','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('15','1','HELEN','HARRIS','HELEN.HARRIS@sakilacustomer.org','19','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('16','2','SANDRA','MARTIN','SANDRA.MARTIN@sakilacustomer.org','20','0','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('17','1','DONNA','THOMPSON','DONNA.THOMPSON@sakilacustomer.org','21','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('18','2','CAROL','GARCIA','CAROL.GARCIA@sakilacustomer.org','22','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('19','1','RUTH','MARTINEZ','RUTH.MARTINEZ@sakilacustomer.org','23','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('20','2','SHARON','ROBINSON','SHARON.ROBINSON@sakilacustomer.org','24','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('21','1','MICHELLE','CLARK','MICHELLE.CLARK@sakilacustomer.org','25','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('22','1','LAURA','RODRIGUEZ','LAURA.RODRIGUEZ@sakilacustomer.org','26','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('23','2','SARAH','LEWIS','SARAH.LEWIS@sakilacustomer.org','27','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('24','2','KIMBERLY','LEE','KIMBERLY.LEE@sakilacustomer.org','28','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('25','1','DEBORAH','WALKER','DEBORAH.WALKER@sakilacustomer.org','29','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('26','2','JESSICA','HALL','JESSICA.HALL@sakilacustomer.org','30','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('27','2','SHIRLEY','ALLEN','SHIRLEY.ALLEN@sakilacustomer.org','31','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('28','1','CYNTHIA','YOUNG','CYNTHIA.YOUNG@sakilacustomer.org','32','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('29','2','ANGELA','HERNANDEZ','ANGELA.HERNANDEZ@sakilacustomer.org','33','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('30','1','MELISSA','KING','MELISSA.KING@sakilacustomer.org','34','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('31','2','BRENDA','WRIGHT','BRENDA.WRIGHT@sakilacustomer.org','35','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('32','1','AMY','LOPEZ','AMY.LOPEZ@sakilacustomer.org','36','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('33','2','ANNA','HILL','ANNA.HILL@sakilacustomer.org','37','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('34','2','REBECCA','SCOTT','REBECCA.SCOTT@sakilacustomer.org','38','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('35','2','VIRGINIA','GREEN','VIRGINIA.GREEN@sakilacustomer.org','39','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('36','2','KATHLEEN','ADAMS','KATHLEEN.ADAMS@sakilacustomer.org','40','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('37','1','PAMELA','BAKER','PAMELA.BAKER@sakilacustomer.org','41','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('38','1','MARTHA','GONZALEZ','MARTHA.GONZALEZ@sakilacustomer.org','42','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('39','1','DEBRA','NELSON','DEBRA.NELSON@sakilacustomer.org','43','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('40','2','AMANDA','CARTER','AMANDA.CARTER@sakilacustomer.org','44','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('41','1','STEPHANIE','MITCHELL','STEPHANIE.MITCHELL@sakilacustomer.org','45','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('42','2','CAROLYN','PEREZ','CAROLYN.PEREZ@sakilacustomer.org','46','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('43','2','CHRISTINE','ROBERTS','CHRISTINE.ROBERTS@sakilacustomer.org','47','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('44','1','MARIE','TURNER','MARIE.TURNER@sakilacustomer.org','48','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('45','1','JANET','PHILLIPS','JANET.PHILLIPS@sakilacustomer.org','49','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('46','2','CATHERINE','CAMPBELL','CATHERINE.CAMPBELL@sakilacustomer.org','50','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('47','1','FRANCES','PARKER','FRANCES.PARKER@sakilacustomer.org','51','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('48','1','ANN','EVANS','ANN.EVANS@sakilacustomer.org','52','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('49','2','JOYCE','EDWARDS','JOYCE.EDWARDS@sakilacustomer.org','53','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('50','1','DIANE','COLLINS','DIANE.COLLINS@sakilacustomer.org','54','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('51','1','ALICE','STEWART','ALICE.STEWART@sakilacustomer.org','55','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('52','1','JULIE','SANCHEZ','JULIE.SANCHEZ@sakilacustomer.org','56','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('53','1','HEATHER','MORRIS','HEATHER.MORRIS@sakilacustomer.org','57','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('54','1','TERESA','ROGERS','TERESA.ROGERS@sakilacustomer.org','58','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('55','2','DORIS','REED','DORIS.REED@sakilacustomer.org','59','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('56','1','GLORIA','COOK','GLORIA.COOK@sakilacustomer.org','60','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('57','2','EVELYN','MORGAN','EVELYN.MORGAN@sakilacustomer.org','61','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('58','1','JEAN','BELL','JEAN.BELL@sakilacustomer.org','62','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('59','1','CHERYL','MURPHY','CHERYL.MURPHY@sakilacustomer.org','63','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('60','1','MILDRED','BAILEY','MILDRED.BAILEY@sakilacustomer.org','64','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('61','2','KATHERINE','RIVERA','KATHERINE.RIVERA@sakilacustomer.org','65','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('62','1','JOAN','COOPER','JOAN.COOPER@sakilacustomer.org','66','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('63','1','ASHLEY','RICHARDSON','ASHLEY.RICHARDSON@sakilacustomer.org','67','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('64','2','JUDITH','COX','JUDITH.COX@sakilacustomer.org','68','0','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('65','2','ROSE','HOWARD','ROSE.HOWARD@sakilacustomer.org','69','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('66','2','JANICE','WARD','JANICE.WARD@sakilacustomer.org','70','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('67','1','KELLY','TORRES','KELLY.TORRES@sakilacustomer.org','71','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('68','1','NICOLE','PETERSON','NICOLE.PETERSON@sakilacustomer.org','72','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('69','2','JUDY','GRAY','JUDY.GRAY@sakilacustomer.org','73','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('70','2','CHRISTINA','RAMIREZ','CHRISTINA.RAMIREZ@sakilacustomer.org','74','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('71','1','KATHY','JAMES','KATHY.JAMES@sakilacustomer.org','75','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('72','2','THERESA','WATSON','THERESA.WATSON@sakilacustomer.org','76','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('73','2','BEVERLY','BROOKS','BEVERLY.BROOKS@sakilacustomer.org','77','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('74','1','DENISE','KELLY','DENISE.KELLY@sakilacustomer.org','78','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('75','2','TAMMY','SANDERS','TAMMY.SANDERS@sakilacustomer.org','79','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('76','2','IRENE','PRICE','IRENE.PRICE@sakilacustomer.org','80','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('77','2','JANE','BENNETT','JANE.BENNETT@sakilacustomer.org','81','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('78','1','LORI','WOOD','LORI.WOOD@sakilacustomer.org','82','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('79','1','RACHEL','BARNES','RACHEL.BARNES@sakilacustomer.org','83','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('80','1','MARILYN','ROSS','MARILYN.ROSS@sakilacustomer.org','84','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('81','1','ANDREA','HENDERSON','ANDREA.HENDERSON@sakilacustomer.org','85','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('82','1','KATHRYN','COLEMAN','KATHRYN.COLEMAN@sakilacustomer.org','86','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('83','1','LOUISE','JENKINS','LOUISE.JENKINS@sakilacustomer.org','87','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('84','2','SARA','PERRY','SARA.PERRY@sakilacustomer.org','88','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('85','2','ANNE','POWELL','ANNE.POWELL@sakilacustomer.org','89','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('86','2','JACQUELINE','LONG','JACQUELINE.LONG@sakilacustomer.org','90','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('87','1','WANDA','PATTERSON','WANDA.PATTERSON@sakilacustomer.org','91','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('88','2','BONNIE','HUGHES','BONNIE.HUGHES@sakilacustomer.org','92','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('89','1','JULIA','FLORES','JULIA.FLORES@sakilacustomer.org','93','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('90','2','RUBY','WASHINGTON','RUBY.WASHINGTON@sakilacustomer.org','94','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('91','2','LOIS','BUTLER','LOIS.BUTLER@sakilacustomer.org','95','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('92','2','TINA','SIMMONS','TINA.SIMMONS@sakilacustomer.org','96','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('93','1','PHYLLIS','FOSTER','PHYLLIS.FOSTER@sakilacustomer.org','97','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('94','1','NORMA','GONZALES','NORMA.GONZALES@sakilacustomer.org','98','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('95','2','PAULA','BRYANT','PAULA.BRYANT@sakilacustomer.org','99','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('96','1','DIANA','ALEXANDER','DIANA.ALEXANDER@sakilacustomer.org','100','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('97','2','ANNIE','RUSSELL','ANNIE.RUSSELL@sakilacustomer.org','101','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('98','1','LILLIAN','GRIFFIN','LILLIAN.GRIFFIN@sakilacustomer.org','102','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('99','2','EMILY','DIAZ','EMILY.DIAZ@sakilacustomer.org','103','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('100','1','ROBIN','HAYES','ROBIN.HAYES@sakilacustomer.org','104','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('101','1','PEGGY','MYERS','PEGGY.MYERS@sakilacustomer.org','105','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('102','1','CRYSTAL','FORD','CRYSTAL.FORD@sakilacustomer.org','106','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('103','1','GLADYS','HAMILTON','GLADYS.HAMILTON@sakilacustomer.org','107','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('104','1','RITA','GRAHAM','RITA.GRAHAM@sakilacustomer.org','108','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('105','1','DAWN','SULLIVAN','DAWN.SULLIVAN@sakilacustomer.org','109','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('106','1','CONNIE','WALLACE','CONNIE.WALLACE@sakilacustomer.org','110','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('107','1','FLORENCE','WOODS','FLORENCE.WOODS@sakilacustomer.org','111','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('108','1','TRACY','COLE','TRACY.COLE@sakilacustomer.org','112','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('109','2','EDNA','WEST','EDNA.WEST@sakilacustomer.org','113','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('110','2','TIFFANY','JORDAN','TIFFANY.JORDAN@sakilacustomer.org','114','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('111','1','CARMEN','OWENS','CARMEN.OWENS@sakilacustomer.org','115','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('112','2','ROSA','REYNOLDS','ROSA.REYNOLDS@sakilacustomer.org','116','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('113','2','CINDY','FISHER','CINDY.FISHER@sakilacustomer.org','117','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('114','2','GRACE','ELLIS','GRACE.ELLIS@sakilacustomer.org','118','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('115','1','WENDY','HARRISON','WENDY.HARRISON@sakilacustomer.org','119','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('116','1','VICTORIA','GIBSON','VICTORIA.GIBSON@sakilacustomer.org','120','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('117','1','EDITH','MCDONALD','EDITH.MCDONALD@sakilacustomer.org','121','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('118','1','KIM','CRUZ','KIM.CRUZ@sakilacustomer.org','122','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('119','1','SHERRY','MARSHALL','SHERRY.MARSHALL@sakilacustomer.org','123','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('120','2','SYLVIA','ORTIZ','SYLVIA.ORTIZ@sakilacustomer.org','124','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('121','1','JOSEPHINE','GOMEZ','JOSEPHINE.GOMEZ@sakilacustomer.org','125','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('122','1','THELMA','MURRAY','THELMA.MURRAY@sakilacustomer.org','126','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('123','2','SHANNON','FREEMAN','SHANNON.FREEMAN@sakilacustomer.org','127','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('124','1','SHEILA','WELLS','SHEILA.WELLS@sakilacustomer.org','128','0','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('125','1','ETHEL','WEBB','ETHEL.WEBB@sakilacustomer.org','129','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('126','1','ELLEN','SIMPSON','ELLEN.SIMPSON@sakilacustomer.org','130','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('127','2','ELAINE','STEVENS','ELAINE.STEVENS@sakilacustomer.org','131','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('128','1','MARJORIE','TUCKER','MARJORIE.TUCKER@sakilacustomer.org','132','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('129','1','CARRIE','PORTER','CARRIE.PORTER@sakilacustomer.org','133','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('130','1','CHARLOTTE','HUNTER','CHARLOTTE.HUNTER@sakilacustomer.org','134','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('131','2','MONICA','HICKS','MONICA.HICKS@sakilacustomer.org','135','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('132','2','ESTHER','CRAWFORD','ESTHER.CRAWFORD@sakilacustomer.org','136','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('133','1','PAULINE','HENRY','PAULINE.HENRY@sakilacustomer.org','137','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('134','1','EMMA','BOYD','EMMA.BOYD@sakilacustomer.org','138','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('135','2','JUANITA','MASON','JUANITA.MASON@sakilacustomer.org','139','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('136','2','ANITA','MORALES','ANITA.MORALES@sakilacustomer.org','140','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('137','2','RHONDA','KENNEDY','RHONDA.KENNEDY@sakilacustomer.org','141','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('138','1','HAZEL','WARREN','HAZEL.WARREN@sakilacustomer.org','142','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('139','1','AMBER','DIXON','AMBER.DIXON@sakilacustomer.org','143','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('140','1','EVA','RAMOS','EVA.RAMOS@sakilacustomer.org','144','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('141','1','DEBBIE','REYES','DEBBIE.REYES@sakilacustomer.org','145','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('142','1','APRIL','BURNS','APRIL.BURNS@sakilacustomer.org','146','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('143','1','LESLIE','GORDON','LESLIE.GORDON@sakilacustomer.org','147','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('144','1','CLARA','SHAW','CLARA.SHAW@sakilacustomer.org','148','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('145','1','LUCILLE','HOLMES','LUCILLE.HOLMES@sakilacustomer.org','149','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('146','1','JAMIE','RICE','JAMIE.RICE@sakilacustomer.org','150','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('147','2','JOANNE','ROBERTSON','JOANNE.ROBERTSON@sakilacustomer.org','151','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('148','1','ELEANOR','HUNT','ELEANOR.HUNT@sakilacustomer.org','152','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('149','1','VALERIE','BLACK','VALERIE.BLACK@sakilacustomer.org','153','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('150','2','DANIELLE','DANIELS','DANIELLE.DANIELS@sakilacustomer.org','154','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('151','2','MEGAN','PALMER','MEGAN.PALMER@sakilacustomer.org','155','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('152','1','ALICIA','MILLS','ALICIA.MILLS@sakilacustomer.org','156','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('153','2','SUZANNE','NICHOLS','SUZANNE.NICHOLS@sakilacustomer.org','157','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('154','2','MICHELE','GRANT','MICHELE.GRANT@sakilacustomer.org','158','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('155','1','GAIL','KNIGHT','GAIL.KNIGHT@sakilacustomer.org','159','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('156','1','BERTHA','FERGUSON','BERTHA.FERGUSON@sakilacustomer.org','160','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('157','2','DARLENE','ROSE','DARLENE.ROSE@sakilacustomer.org','161','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('158','1','VERONICA','STONE','VERONICA.STONE@sakilacustomer.org','162','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('159','1','JILL','HAWKINS','JILL.HAWKINS@sakilacustomer.org','163','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('160','2','ERIN','DUNN','ERIN.DUNN@sakilacustomer.org','164','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('161','1','GERALDINE','PERKINS','GERALDINE.PERKINS@sakilacustomer.org','165','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('162','2','LAUREN','HUDSON','LAUREN.HUDSON@sakilacustomer.org','166','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('163','1','CATHY','SPENCER','CATHY.SPENCER@sakilacustomer.org','167','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('164','2','JOANN','GARDNER','JOANN.GARDNER@sakilacustomer.org','168','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('165','2','LORRAINE','STEPHENS','LORRAINE.STEPHENS@sakilacustomer.org','169','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('166','1','LYNN','PAYNE','LYNN.PAYNE@sakilacustomer.org','170','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('167','2','SALLY','PIERCE','SALLY.PIERCE@sakilacustomer.org','171','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('168','1','REGINA','BERRY','REGINA.BERRY@sakilacustomer.org','172','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('169','2','ERICA','MATTHEWS','ERICA.MATTHEWS@sakilacustomer.org','173','0','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('170','1','BEATRICE','ARNOLD','BEATRICE.ARNOLD@sakilacustomer.org','174','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('171','2','DOLORES','WAGNER','DOLORES.WAGNER@sakilacustomer.org','175','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('172','1','BERNICE','WILLIS','BERNICE.WILLIS@sakilacustomer.org','176','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('173','1','AUDREY','RAY','AUDREY.RAY@sakilacustomer.org','177','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('174','2','YVONNE','WATKINS','YVONNE.WATKINS@sakilacustomer.org','178','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('175','1','ANNETTE','OLSON','ANNETTE.OLSON@sakilacustomer.org','179','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('176','1','JUNE','CARROLL','JUNE.CARROLL@sakilacustomer.org','180','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('177','2','SAMANTHA','DUNCAN','SAMANTHA.DUNCAN@sakilacustomer.org','181','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('178','2','MARION','SNYDER','MARION.SNYDER@sakilacustomer.org','182','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('179','1','DANA','HART','DANA.HART@sakilacustomer.org','183','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('180','2','STACY','CUNNINGHAM','STACY.CUNNINGHAM@sakilacustomer.org','184','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('181','2','ANA','BRADLEY','ANA.BRADLEY@sakilacustomer.org','185','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('182','1','RENEE','LANE','RENEE.LANE@sakilacustomer.org','186','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('183','2','IDA','ANDREWS','IDA.ANDREWS@sakilacustomer.org','187','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('184','1','VIVIAN','RUIZ','VIVIAN.RUIZ@sakilacustomer.org','188','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('185','1','ROBERTA','HARPER','ROBERTA.HARPER@sakilacustomer.org','189','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('186','2','HOLLY','FOX','HOLLY.FOX@sakilacustomer.org','190','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('187','2','BRITTANY','RILEY','BRITTANY.RILEY@sakilacustomer.org','191','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('188','1','MELANIE','ARMSTRONG','MELANIE.ARMSTRONG@sakilacustomer.org','192','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('189','1','LORETTA','CARPENTER','LORETTA.CARPENTER@sakilacustomer.org','193','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('190','2','YOLANDA','WEAVER','YOLANDA.WEAVER@sakilacustomer.org','194','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('191','1','JEANETTE','GREENE','JEANETTE.GREENE@sakilacustomer.org','195','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('192','1','LAURIE','LAWRENCE','LAURIE.LAWRENCE@sakilacustomer.org','196','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('193','2','KATIE','ELLIOTT','KATIE.ELLIOTT@sakilacustomer.org','197','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('194','2','KRISTEN','CHAVEZ','KRISTEN.CHAVEZ@sakilacustomer.org','198','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('195','1','VANESSA','SIMS','VANESSA.SIMS@sakilacustomer.org','199','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('196','1','ALMA','AUSTIN','ALMA.AUSTIN@sakilacustomer.org','200','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('197','2','SUE','PETERS','SUE.PETERS@sakilacustomer.org','201','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('198','2','ELSIE','KELLEY','ELSIE.KELLEY@sakilacustomer.org','202','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('199','2','BETH','FRANKLIN','BETH.FRANKLIN@sakilacustomer.org','203','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('200','2','JEANNE','LAWSON','JEANNE.LAWSON@sakilacustomer.org','204','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('201','1','VICKI','FIELDS','VICKI.FIELDS@sakilacustomer.org','205','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('202','2','CARLA','GUTIERREZ','CARLA.GUTIERREZ@sakilacustomer.org','206','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('203','1','TARA','RYAN','TARA.RYAN@sakilacustomer.org','207','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('204','1','ROSEMARY','SCHMIDT','ROSEMARY.SCHMIDT@sakilacustomer.org','208','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('205','2','EILEEN','CARR','EILEEN.CARR@sakilacustomer.org','209','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('206','1','TERRI','VASQUEZ','TERRI.VASQUEZ@sakilacustomer.org','210','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('207','1','GERTRUDE','CASTILLO','GERTRUDE.CASTILLO@sakilacustomer.org','211','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('208','1','LUCY','WHEELER','LUCY.WHEELER@sakilacustomer.org','212','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('209','2','TONYA','CHAPMAN','TONYA.CHAPMAN@sakilacustomer.org','213','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('210','2','ELLA','OLIVER','ELLA.OLIVER@sakilacustomer.org','214','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('211','1','STACEY','MONTGOMERY','STACEY.MONTGOMERY@sakilacustomer.org','215','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('212','2','WILMA','RICHARDS','WILMA.RICHARDS@sakilacustomer.org','216','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('213','1','GINA','WILLIAMSON','GINA.WILLIAMSON@sakilacustomer.org','217','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('214','1','KRISTIN','JOHNSTON','KRISTIN.JOHNSTON@sakilacustomer.org','218','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('215','2','JESSIE','BANKS','JESSIE.BANKS@sakilacustomer.org','219','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('216','1','NATALIE','MEYER','NATALIE.MEYER@sakilacustomer.org','220','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('217','2','AGNES','BISHOP','AGNES.BISHOP@sakilacustomer.org','221','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('218','1','VERA','MCCOY','VERA.MCCOY@sakilacustomer.org','222','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('219','2','WILLIE','HOWELL','WILLIE.HOWELL@sakilacustomer.org','223','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('220','2','CHARLENE','ALVAREZ','CHARLENE.ALVAREZ@sakilacustomer.org','224','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('221','1','BESSIE','MORRISON','BESSIE.MORRISON@sakilacustomer.org','225','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('222','2','DELORES','HANSEN','DELORES.HANSEN@sakilacustomer.org','226','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('223','1','MELINDA','FERNANDEZ','MELINDA.FERNANDEZ@sakilacustomer.org','227','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('224','2','PEARL','GARZA','PEARL.GARZA@sakilacustomer.org','228','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('225','1','ARLENE','HARVEY','ARLENE.HARVEY@sakilacustomer.org','229','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('226','2','MAUREEN','LITTLE','MAUREEN.LITTLE@sakilacustomer.org','230','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('227','1','COLLEEN','BURTON','COLLEEN.BURTON@sakilacustomer.org','231','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('228','2','ALLISON','STANLEY','ALLISON.STANLEY@sakilacustomer.org','232','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('229','1','TAMARA','NGUYEN','TAMARA.NGUYEN@sakilacustomer.org','233','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('230','2','JOY','GEORGE','JOY.GEORGE@sakilacustomer.org','234','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('231','1','GEORGIA','JACOBS','GEORGIA.JACOBS@sakilacustomer.org','235','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('232','2','CONSTANCE','REID','CONSTANCE.REID@sakilacustomer.org','236','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('233','2','LILLIE','KIM','LILLIE.KIM@sakilacustomer.org','237','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('234','1','CLAUDIA','FULLER','CLAUDIA.FULLER@sakilacustomer.org','238','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('235','1','JACKIE','LYNCH','JACKIE.LYNCH@sakilacustomer.org','239','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('236','1','MARCIA','DEAN','MARCIA.DEAN@sakilacustomer.org','240','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('237','1','TANYA','GILBERT','TANYA.GILBERT@sakilacustomer.org','241','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('238','1','NELLIE','GARRETT','NELLIE.GARRETT@sakilacustomer.org','242','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('239','2','MINNIE','ROMERO','MINNIE.ROMERO@sakilacustomer.org','243','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('240','1','MARLENE','WELCH','MARLENE.WELCH@sakilacustomer.org','244','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('241','2','HEIDI','LARSON','HEIDI.LARSON@sakilacustomer.org','245','0','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('242','1','GLENDA','FRAZIER','GLENDA.FRAZIER@sakilacustomer.org','246','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('243','1','LYDIA','BURKE','LYDIA.BURKE@sakilacustomer.org','247','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('244','2','VIOLA','HANSON','VIOLA.HANSON@sakilacustomer.org','248','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('245','1','COURTNEY','DAY','COURTNEY.DAY@sakilacustomer.org','249','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('246','1','MARIAN','MENDOZA','MARIAN.MENDOZA@sakilacustomer.org','250','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('247','1','STELLA','MORENO','STELLA.MORENO@sakilacustomer.org','251','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('248','1','CAROLINE','BOWMAN','CAROLINE.BOWMAN@sakilacustomer.org','252','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('249','2','DORA','MEDINA','DORA.MEDINA@sakilacustomer.org','253','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('250','2','JO','FOWLER','JO.FOWLER@sakilacustomer.org','254','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('251','2','VICKIE','BREWER','VICKIE.BREWER@sakilacustomer.org','255','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('252','2','MATTIE','HOFFMAN','MATTIE.HOFFMAN@sakilacustomer.org','256','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('253','1','TERRY','CARLSON','TERRY.CARLSON@sakilacustomer.org','258','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('254','2','MAXINE','SILVA','MAXINE.SILVA@sakilacustomer.org','259','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('255','2','IRMA','PEARSON','IRMA.PEARSON@sakilacustomer.org','260','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('256','2','MABEL','HOLLAND','MABEL.HOLLAND@sakilacustomer.org','261','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('257','2','MARSHA','DOUGLAS','MARSHA.DOUGLAS@sakilacustomer.org','262','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('258','1','MYRTLE','FLEMING','MYRTLE.FLEMING@sakilacustomer.org','263','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('259','2','LENA','JENSEN','LENA.JENSEN@sakilacustomer.org','264','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('260','1','CHRISTY','VARGAS','CHRISTY.VARGAS@sakilacustomer.org','265','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('261','1','DEANNA','BYRD','DEANNA.BYRD@sakilacustomer.org','266','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('262','2','PATSY','DAVIDSON','PATSY.DAVIDSON@sakilacustomer.org','267','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('263','1','HILDA','HOPKINS','HILDA.HOPKINS@sakilacustomer.org','268','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('264','1','GWENDOLYN','MAY','GWENDOLYN.MAY@sakilacustomer.org','269','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('265','2','JENNIE','TERRY','JENNIE.TERRY@sakilacustomer.org','270','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('266','2','NORA','HERRERA','NORA.HERRERA@sakilacustomer.org','271','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('267','1','MARGIE','WADE','MARGIE.WADE@sakilacustomer.org','272','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('268','1','NINA','SOTO','NINA.SOTO@sakilacustomer.org','273','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('269','1','CASSANDRA','WALTERS','CASSANDRA.WALTERS@sakilacustomer.org','274','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('270','1','LEAH','CURTIS','LEAH.CURTIS@sakilacustomer.org','275','1','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('271','1','PENNY','NEAL','PENNY.NEAL@sakilacustomer.org','276','0','2006-02-14 22:04:36.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('272','1','KAY','CALDWELL','KAY.CALDWELL@sakilacustomer.org','277','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('273','2','PRISCILLA','LOWE','PRISCILLA.LOWE@sakilacustomer.org','278','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('274','1','NAOMI','JENNINGS','NAOMI.JENNINGS@sakilacustomer.org','279','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('275','2','CAROLE','BARNETT','CAROLE.BARNETT@sakilacustomer.org','280','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('276','1','BRANDY','GRAVES','BRANDY.GRAVES@sakilacustomer.org','281','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('277','2','OLGA','JIMENEZ','OLGA.JIMENEZ@sakilacustomer.org','282','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('278','2','BILLIE','HORTON','BILLIE.HORTON@sakilacustomer.org','283','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('279','2','DIANNE','SHELTON','DIANNE.SHELTON@sakilacustomer.org','284','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('280','2','TRACEY','BARRETT','TRACEY.BARRETT@sakilacustomer.org','285','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('281','2','LEONA','OBRIEN','LEONA.OBRIEN@sakilacustomer.org','286','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('282','2','JENNY','CASTRO','JENNY.CASTRO@sakilacustomer.org','287','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('283','1','FELICIA','SUTTON','FELICIA.SUTTON@sakilacustomer.org','288','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('284','1','SONIA','GREGORY','SONIA.GREGORY@sakilacustomer.org','289','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('285','1','MIRIAM','MCKINNEY','MIRIAM.MCKINNEY@sakilacustomer.org','290','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('286','1','VELMA','LUCAS','VELMA.LUCAS@sakilacustomer.org','291','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('287','2','BECKY','MILES','BECKY.MILES@sakilacustomer.org','292','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('288','1','BOBBIE','CRAIG','BOBBIE.CRAIG@sakilacustomer.org','293','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('289','1','VIOLET','RODRIQUEZ','VIOLET.RODRIQUEZ@sakilacustomer.org','294','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('290','1','KRISTINA','CHAMBERS','KRISTINA.CHAMBERS@sakilacustomer.org','295','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('291','1','TONI','HOLT','TONI.HOLT@sakilacustomer.org','296','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('292','2','MISTY','LAMBERT','MISTY.LAMBERT@sakilacustomer.org','297','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('293','2','MAE','FLETCHER','MAE.FLETCHER@sakilacustomer.org','298','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('294','2','SHELLY','WATTS','SHELLY.WATTS@sakilacustomer.org','299','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('295','1','DAISY','BATES','DAISY.BATES@sakilacustomer.org','300','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('296','2','RAMONA','HALE','RAMONA.HALE@sakilacustomer.org','301','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('297','1','SHERRI','RHODES','SHERRI.RHODES@sakilacustomer.org','302','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('298','1','ERIKA','PENA','ERIKA.PENA@sakilacustomer.org','303','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('299','2','JAMES','GANNON','JAMES.GANNON@sakilacustomer.org','304','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('300','1','JOHN','FARNSWORTH','JOHN.FARNSWORTH@sakilacustomer.org','305','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('301','2','ROBERT','BAUGHMAN','ROBERT.BAUGHMAN@sakilacustomer.org','306','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('302','1','MICHAEL','SILVERMAN','MICHAEL.SILVERMAN@sakilacustomer.org','307','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('303','2','WILLIAM','SATTERFIELD','WILLIAM.SATTERFIELD@sakilacustomer.org','308','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('304','2','DAVID','ROYAL','DAVID.ROYAL@sakilacustomer.org','309','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('305','1','RICHARD','MCCRARY','RICHARD.MCCRARY@sakilacustomer.org','310','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('306','1','CHARLES','KOWALSKI','CHARLES.KOWALSKI@sakilacustomer.org','311','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('307','2','JOSEPH','JOY','JOSEPH.JOY@sakilacustomer.org','312','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('308','1','THOMAS','GRIGSBY','THOMAS.GRIGSBY@sakilacustomer.org','313','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('309','1','CHRISTOPHER','GRECO','CHRISTOPHER.GRECO@sakilacustomer.org','314','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('310','2','DANIEL','CABRAL','DANIEL.CABRAL@sakilacustomer.org','315','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('311','2','PAUL','TROUT','PAUL.TROUT@sakilacustomer.org','316','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('312','2','MARK','RINEHART','MARK.RINEHART@sakilacustomer.org','317','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('313','2','DONALD','MAHON','DONALD.MAHON@sakilacustomer.org','318','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('314','1','GEORGE','LINTON','GEORGE.LINTON@sakilacustomer.org','319','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('315','2','KENNETH','GOODEN','KENNETH.GOODEN@sakilacustomer.org','320','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('316','1','STEVEN','CURLEY','STEVEN.CURLEY@sakilacustomer.org','321','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('317','2','EDWARD','BAUGH','EDWARD.BAUGH@sakilacustomer.org','322','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('318','1','BRIAN','WYMAN','BRIAN.WYMAN@sakilacustomer.org','323','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('319','2','RONALD','WEINER','RONALD.WEINER@sakilacustomer.org','324','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('320','2','ANTHONY','SCHWAB','ANTHONY.SCHWAB@sakilacustomer.org','325','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('321','1','KEVIN','SCHULER','KEVIN.SCHULER@sakilacustomer.org','326','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('322','1','JASON','MORRISSEY','JASON.MORRISSEY@sakilacustomer.org','327','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('323','2','MATTHEW','MAHAN','MATTHEW.MAHAN@sakilacustomer.org','328','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('324','2','GARY','COY','GARY.COY@sakilacustomer.org','329','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('325','1','TIMOTHY','BUNN','TIMOTHY.BUNN@sakilacustomer.org','330','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('326','1','JOSE','ANDREW','JOSE.ANDREW@sakilacustomer.org','331','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('327','2','LARRY','THRASHER','LARRY.THRASHER@sakilacustomer.org','332','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('328','2','JEFFREY','SPEAR','JEFFREY.SPEAR@sakilacustomer.org','333','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('329','2','FRANK','WAGGONER','FRANK.WAGGONER@sakilacustomer.org','334','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('330','1','SCOTT','SHELLEY','SCOTT.SHELLEY@sakilacustomer.org','335','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('331','1','ERIC','ROBERT','ERIC.ROBERT@sakilacustomer.org','336','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('332','1','STEPHEN','QUALLS','STEPHEN.QUALLS@sakilacustomer.org','337','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('333','2','ANDREW','PURDY','ANDREW.PURDY@sakilacustomer.org','338','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('334','2','RAYMOND','MCWHORTER','RAYMOND.MCWHORTER@sakilacustomer.org','339','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('335','1','GREGORY','MAULDIN','GREGORY.MAULDIN@sakilacustomer.org','340','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('336','1','JOSHUA','MARK','JOSHUA.MARK@sakilacustomer.org','341','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('337','1','JERRY','JORDON','JERRY.JORDON@sakilacustomer.org','342','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('338','1','DENNIS','GILMAN','DENNIS.GILMAN@sakilacustomer.org','343','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('339','2','WALTER','PERRYMAN','WALTER.PERRYMAN@sakilacustomer.org','344','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('340','1','PATRICK','NEWSOM','PATRICK.NEWSOM@sakilacustomer.org','345','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('341','1','PETER','MENARD','PETER.MENARD@sakilacustomer.org','346','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('342','1','HAROLD','MARTINO','HAROLD.MARTINO@sakilacustomer.org','347','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('343','1','DOUGLAS','GRAF','DOUGLAS.GRAF@sakilacustomer.org','348','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('344','1','HENRY','BILLINGSLEY','HENRY.BILLINGSLEY@sakilacustomer.org','349','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('345','1','CARL','ARTIS','CARL.ARTIS@sakilacustomer.org','350','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('346','1','ARTHUR','SIMPKINS','ARTHUR.SIMPKINS@sakilacustomer.org','351','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('347','2','RYAN','SALISBURY','RYAN.SALISBURY@sakilacustomer.org','352','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('348','2','ROGER','QUINTANILLA','ROGER.QUINTANILLA@sakilacustomer.org','353','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('349','2','JOE','GILLILAND','JOE.GILLILAND@sakilacustomer.org','354','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('350','1','JUAN','FRALEY','JUAN.FRALEY@sakilacustomer.org','355','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('351','1','JACK','FOUST','JACK.FOUST@sakilacustomer.org','356','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('352','1','ALBERT','CROUSE','ALBERT.CROUSE@sakilacustomer.org','357','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('353','1','JONATHAN','SCARBOROUGH','JONATHAN.SCARBOROUGH@sakilacustomer.org','358','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('354','2','JUSTIN','NGO','JUSTIN.NGO@sakilacustomer.org','359','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('355','2','TERRY','GRISSOM','TERRY.GRISSOM@sakilacustomer.org','360','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('356','2','GERALD','FULTZ','GERALD.FULTZ@sakilacustomer.org','361','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('357','1','KEITH','RICO','KEITH.RICO@sakilacustomer.org','362','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('358','2','SAMUEL','MARLOW','SAMUEL.MARLOW@sakilacustomer.org','363','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('359','2','WILLIE','MARKHAM','WILLIE.MARKHAM@sakilacustomer.org','364','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('360','2','RALPH','MADRIGAL','RALPH.MADRIGAL@sakilacustomer.org','365','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('361','2','LAWRENCE','LAWTON','LAWRENCE.LAWTON@sakilacustomer.org','366','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('362','1','NICHOLAS','BARFIELD','NICHOLAS.BARFIELD@sakilacustomer.org','367','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('363','2','ROY','WHITING','ROY.WHITING@sakilacustomer.org','368','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('364','1','BENJAMIN','VARNEY','BENJAMIN.VARNEY@sakilacustomer.org','369','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('365','2','BRUCE','SCHWARZ','BRUCE.SCHWARZ@sakilacustomer.org','370','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('366','1','BRANDON','HUEY','BRANDON.HUEY@sakilacustomer.org','371','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('367','1','ADAM','GOOCH','ADAM.GOOCH@sakilacustomer.org','372','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('368','1','HARRY','ARCE','HARRY.ARCE@sakilacustomer.org','373','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('369','2','FRED','WHEAT','FRED.WHEAT@sakilacustomer.org','374','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('370','2','WAYNE','TRUONG','WAYNE.TRUONG@sakilacustomer.org','375','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('371','1','BILLY','POULIN','BILLY.POULIN@sakilacustomer.org','376','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('372','2','STEVE','MACKENZIE','STEVE.MACKENZIE@sakilacustomer.org','377','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('373','1','LOUIS','LEONE','LOUIS.LEONE@sakilacustomer.org','378','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('374','2','JEREMY','HURTADO','JEREMY.HURTADO@sakilacustomer.org','379','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('375','2','AARON','SELBY','AARON.SELBY@sakilacustomer.org','380','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('376','1','RANDY','GAITHER','RANDY.GAITHER@sakilacustomer.org','381','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('377','1','HOWARD','FORTNER','HOWARD.FORTNER@sakilacustomer.org','382','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('378','1','EUGENE','CULPEPPER','EUGENE.CULPEPPER@sakilacustomer.org','383','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('379','1','CARLOS','COUGHLIN','CARLOS.COUGHLIN@sakilacustomer.org','384','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('380','1','RUSSELL','BRINSON','RUSSELL.BRINSON@sakilacustomer.org','385','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('381','2','BOBBY','BOUDREAU','BOBBY.BOUDREAU@sakilacustomer.org','386','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('382','2','VICTOR','BARKLEY','VICTOR.BARKLEY@sakilacustomer.org','387','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('383','1','MARTIN','BALES','MARTIN.BALES@sakilacustomer.org','388','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('384','2','ERNEST','STEPP','ERNEST.STEPP@sakilacustomer.org','389','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('385','1','PHILLIP','HOLM','PHILLIP.HOLM@sakilacustomer.org','390','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('386','1','TODD','TAN','TODD.TAN@sakilacustomer.org','391','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('387','2','JESSE','SCHILLING','JESSE.SCHILLING@sakilacustomer.org','392','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('388','2','CRAIG','MORRELL','CRAIG.MORRELL@sakilacustomer.org','393','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('389','1','ALAN','KAHN','ALAN.KAHN@sakilacustomer.org','394','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('390','1','SHAWN','HEATON','SHAWN.HEATON@sakilacustomer.org','395','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('391','1','CLARENCE','GAMEZ','CLARENCE.GAMEZ@sakilacustomer.org','396','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('392','2','SEAN','DOUGLASS','SEAN.DOUGLASS@sakilacustomer.org','397','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('393','1','PHILIP','CAUSEY','PHILIP.CAUSEY@sakilacustomer.org','398','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('394','2','CHRIS','BROTHERS','CHRIS.BROTHERS@sakilacustomer.org','399','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('395','2','JOHNNY','TURPIN','JOHNNY.TURPIN@sakilacustomer.org','400','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('396','1','EARL','SHANKS','EARL.SHANKS@sakilacustomer.org','401','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('397','1','JIMMY','SCHRADER','JIMMY.SCHRADER@sakilacustomer.org','402','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('398','1','ANTONIO','MEEK','ANTONIO.MEEK@sakilacustomer.org','403','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('399','1','DANNY','ISOM','DANNY.ISOM@sakilacustomer.org','404','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('400','2','BRYAN','HARDISON','BRYAN.HARDISON@sakilacustomer.org','405','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('401','2','TONY','CARRANZA','TONY.CARRANZA@sakilacustomer.org','406','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('402','1','LUIS','YANEZ','LUIS.YANEZ@sakilacustomer.org','407','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('403','1','MIKE','WAY','MIKE.WAY@sakilacustomer.org','408','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('404','2','STANLEY','SCROGGINS','STANLEY.SCROGGINS@sakilacustomer.org','409','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('405','1','LEONARD','SCHOFIELD','LEONARD.SCHOFIELD@sakilacustomer.org','410','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('406','1','NATHAN','RUNYON','NATHAN.RUNYON@sakilacustomer.org','411','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('407','1','DALE','RATCLIFF','DALE.RATCLIFF@sakilacustomer.org','412','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('408','1','MANUEL','MURRELL','MANUEL.MURRELL@sakilacustomer.org','413','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('409','2','RODNEY','MOELLER','RODNEY.MOELLER@sakilacustomer.org','414','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('410','2','CURTIS','IRBY','CURTIS.IRBY@sakilacustomer.org','415','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('411','1','NORMAN','CURRIER','NORMAN.CURRIER@sakilacustomer.org','416','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('412','2','ALLEN','BUTTERFIELD','ALLEN.BUTTERFIELD@sakilacustomer.org','417','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('413','2','MARVIN','YEE','MARVIN.YEE@sakilacustomer.org','418','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('414','1','VINCENT','RALSTON','VINCENT.RALSTON@sakilacustomer.org','419','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('415','1','GLENN','PULLEN','GLENN.PULLEN@sakilacustomer.org','420','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('416','2','JEFFERY','PINSON','JEFFERY.PINSON@sakilacustomer.org','421','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('417','1','TRAVIS','ESTEP','TRAVIS.ESTEP@sakilacustomer.org','422','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('418','2','JEFF','EAST','JEFF.EAST@sakilacustomer.org','423','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('419','1','CHAD','CARBONE','CHAD.CARBONE@sakilacustomer.org','424','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('420','1','JACOB','LANCE','JACOB.LANCE@sakilacustomer.org','425','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('421','1','LEE','HAWKS','LEE.HAWKS@sakilacustomer.org','426','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('422','1','MELVIN','ELLINGTON','MELVIN.ELLINGTON@sakilacustomer.org','427','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('423','2','ALFRED','CASILLAS','ALFRED.CASILLAS@sakilacustomer.org','428','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('424','2','KYLE','SPURLOCK','KYLE.SPURLOCK@sakilacustomer.org','429','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('425','2','FRANCIS','SIKES','FRANCIS.SIKES@sakilacustomer.org','430','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('426','1','BRADLEY','MOTLEY','BRADLEY.MOTLEY@sakilacustomer.org','431','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('427','2','JESUS','MCCARTNEY','JESUS.MCCARTNEY@sakilacustomer.org','432','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('428','2','HERBERT','KRUGER','HERBERT.KRUGER@sakilacustomer.org','433','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('429','2','FREDERICK','ISBELL','FREDERICK.ISBELL@sakilacustomer.org','434','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('430','1','RAY','HOULE','RAY.HOULE@sakilacustomer.org','435','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('431','2','JOEL','FRANCISCO','JOEL.FRANCISCO@sakilacustomer.org','436','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('432','1','EDWIN','BURK','EDWIN.BURK@sakilacustomer.org','437','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('433','1','DON','BONE','DON.BONE@sakilacustomer.org','438','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('434','1','EDDIE','TOMLIN','EDDIE.TOMLIN@sakilacustomer.org','439','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('435','2','RICKY','SHELBY','RICKY.SHELBY@sakilacustomer.org','440','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('436','1','TROY','QUIGLEY','TROY.QUIGLEY@sakilacustomer.org','441','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('437','2','RANDALL','NEUMANN','RANDALL.NEUMANN@sakilacustomer.org','442','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('438','1','BARRY','LOVELACE','BARRY.LOVELACE@sakilacustomer.org','443','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('439','2','ALEXANDER','FENNELL','ALEXANDER.FENNELL@sakilacustomer.org','444','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('440','1','BERNARD','COLBY','BERNARD.COLBY@sakilacustomer.org','445','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('441','1','MARIO','CHEATHAM','MARIO.CHEATHAM@sakilacustomer.org','446','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('442','1','LEROY','BUSTAMANTE','LEROY.BUSTAMANTE@sakilacustomer.org','447','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('443','2','FRANCISCO','SKIDMORE','FRANCISCO.SKIDMORE@sakilacustomer.org','448','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('444','2','MARCUS','HIDALGO','MARCUS.HIDALGO@sakilacustomer.org','449','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('445','1','MICHEAL','FORMAN','MICHEAL.FORMAN@sakilacustomer.org','450','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('446','2','THEODORE','CULP','THEODORE.CULP@sakilacustomer.org','451','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('447','1','CLIFFORD','BOWENS','CLIFFORD.BOWENS@sakilacustomer.org','452','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('448','1','MIGUEL','BETANCOURT','MIGUEL.BETANCOURT@sakilacustomer.org','453','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('449','2','OSCAR','AQUINO','OSCAR.AQUINO@sakilacustomer.org','454','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('450','1','JAY','ROBB','JAY.ROBB@sakilacustomer.org','455','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('451','1','JIM','REA','JIM.REA@sakilacustomer.org','456','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('452','1','TOM','MILNER','TOM.MILNER@sakilacustomer.org','457','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('453','1','CALVIN','MARTEL','CALVIN.MARTEL@sakilacustomer.org','458','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('454','2','ALEX','GRESHAM','ALEX.GRESHAM@sakilacustomer.org','459','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('455','2','JON','WILES','JON.WILES@sakilacustomer.org','460','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('456','2','RONNIE','RICKETTS','RONNIE.RICKETTS@sakilacustomer.org','461','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('457','2','BILL','GAVIN','BILL.GAVIN@sakilacustomer.org','462','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('458','1','LLOYD','DOWD','LLOYD.DOWD@sakilacustomer.org','463','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('459','1','TOMMY','COLLAZO','TOMMY.COLLAZO@sakilacustomer.org','464','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('460','1','LEON','BOSTIC','LEON.BOSTIC@sakilacustomer.org','465','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('461','1','DEREK','BLAKELY','DEREK.BLAKELY@sakilacustomer.org','466','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('462','2','WARREN','SHERROD','WARREN.SHERROD@sakilacustomer.org','467','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('463','2','DARRELL','POWER','DARRELL.POWER@sakilacustomer.org','468','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('464','1','JEROME','KENYON','JEROME.KENYON@sakilacustomer.org','469','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('465','1','FLOYD','GANDY','FLOYD.GANDY@sakilacustomer.org','470','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('466','1','LEO','EBERT','LEO.EBERT@sakilacustomer.org','471','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('467','2','ALVIN','DELOACH','ALVIN.DELOACH@sakilacustomer.org','472','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('468','1','TIM','CARY','TIM.CARY@sakilacustomer.org','473','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('469','2','WESLEY','BULL','WESLEY.BULL@sakilacustomer.org','474','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('470','1','GORDON','ALLARD','GORDON.ALLARD@sakilacustomer.org','475','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('471','1','DEAN','SAUER','DEAN.SAUER@sakilacustomer.org','476','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('472','1','GREG','ROBINS','GREG.ROBINS@sakilacustomer.org','477','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('473','2','JORGE','OLIVARES','JORGE.OLIVARES@sakilacustomer.org','478','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('474','2','DUSTIN','GILLETTE','DUSTIN.GILLETTE@sakilacustomer.org','479','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('475','2','PEDRO','CHESTNUT','PEDRO.CHESTNUT@sakilacustomer.org','480','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('476','1','DERRICK','BOURQUE','DERRICK.BOURQUE@sakilacustomer.org','481','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('477','1','DAN','PAINE','DAN.PAINE@sakilacustomer.org','482','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('478','1','LEWIS','LYMAN','LEWIS.LYMAN@sakilacustomer.org','483','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('479','1','ZACHARY','HITE','ZACHARY.HITE@sakilacustomer.org','484','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('480','1','COREY','HAUSER','COREY.HAUSER@sakilacustomer.org','485','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('481','1','HERMAN','DEVORE','HERMAN.DEVORE@sakilacustomer.org','486','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('482','1','MAURICE','CRAWLEY','MAURICE.CRAWLEY@sakilacustomer.org','487','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('483','2','VERNON','CHAPA','VERNON.CHAPA@sakilacustomer.org','488','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('484','1','ROBERTO','VU','ROBERTO.VU@sakilacustomer.org','489','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('485','1','CLYDE','TOBIAS','CLYDE.TOBIAS@sakilacustomer.org','490','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('486','1','GLEN','TALBERT','GLEN.TALBERT@sakilacustomer.org','491','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('487','2','HECTOR','POINDEXTER','HECTOR.POINDEXTER@sakilacustomer.org','492','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('488','2','SHANE','MILLARD','SHANE.MILLARD@sakilacustomer.org','493','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('489','1','RICARDO','MEADOR','RICARDO.MEADOR@sakilacustomer.org','494','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('490','1','SAM','MCDUFFIE','SAM.MCDUFFIE@sakilacustomer.org','495','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('491','2','RICK','MATTOX','RICK.MATTOX@sakilacustomer.org','496','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('492','2','LESTER','KRAUS','LESTER.KRAUS@sakilacustomer.org','497','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('493','1','BRENT','HARKINS','BRENT.HARKINS@sakilacustomer.org','498','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('494','2','RAMON','CHOATE','RAMON.CHOATE@sakilacustomer.org','499','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('495','2','CHARLIE','BESS','CHARLIE.BESS@sakilacustomer.org','500','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('496','2','TYLER','WREN','TYLER.WREN@sakilacustomer.org','501','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('497','2','GILBERT','SLEDGE','GILBERT.SLEDGE@sakilacustomer.org','502','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('498','1','GENE','SANBORN','GENE.SANBORN@sakilacustomer.org','503','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('499','2','MARC','OUTLAW','MARC.OUTLAW@sakilacustomer.org','504','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('500','1','REGINALD','KINDER','REGINALD.KINDER@sakilacustomer.org','505','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('501','1','RUBEN','GEARY','RUBEN.GEARY@sakilacustomer.org','506','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('502','1','BRETT','CORNWELL','BRETT.CORNWELL@sakilacustomer.org','507','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('503','1','ANGEL','BARCLAY','ANGEL.BARCLAY@sakilacustomer.org','508','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('504','1','NATHANIEL','ADAM','NATHANIEL.ADAM@sakilacustomer.org','509','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('505','1','RAFAEL','ABNEY','RAFAEL.ABNEY@sakilacustomer.org','510','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('506','2','LESLIE','SEWARD','LESLIE.SEWARD@sakilacustomer.org','511','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('507','2','EDGAR','RHOADS','EDGAR.RHOADS@sakilacustomer.org','512','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('508','2','MILTON','HOWLAND','MILTON.HOWLAND@sakilacustomer.org','513','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('509','1','RAUL','FORTIER','RAUL.FORTIER@sakilacustomer.org','514','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('510','2','BEN','EASTER','BEN.EASTER@sakilacustomer.org','515','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('511','1','CHESTER','BENNER','CHESTER.BENNER@sakilacustomer.org','516','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('512','1','CECIL','VINES','CECIL.VINES@sakilacustomer.org','517','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('513','2','DUANE','TUBBS','DUANE.TUBBS@sakilacustomer.org','519','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('514','2','FRANKLIN','TROUTMAN','FRANKLIN.TROUTMAN@sakilacustomer.org','520','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('515','1','ANDRE','RAPP','ANDRE.RAPP@sakilacustomer.org','521','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('516','2','ELMER','NOE','ELMER.NOE@sakilacustomer.org','522','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('517','2','BRAD','MCCURDY','BRAD.MCCURDY@sakilacustomer.org','523','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('518','1','GABRIEL','HARDER','GABRIEL.HARDER@sakilacustomer.org','524','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('519','2','RON','DELUCA','RON.DELUCA@sakilacustomer.org','525','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('520','2','MITCHELL','WESTMORELAND','MITCHELL.WESTMORELAND@sakilacustomer.org','526','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('521','2','ROLAND','SOUTH','ROLAND.SOUTH@sakilacustomer.org','527','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('522','2','ARNOLD','HAVENS','ARNOLD.HAVENS@sakilacustomer.org','528','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('523','1','HARVEY','GUAJARDO','HARVEY.GUAJARDO@sakilacustomer.org','529','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('524','1','JARED','ELY','JARED.ELY@sakilacustomer.org','530','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('525','2','ADRIAN','CLARY','ADRIAN.CLARY@sakilacustomer.org','531','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('526','2','KARL','SEAL','KARL.SEAL@sakilacustomer.org','532','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('527','1','CORY','MEEHAN','CORY.MEEHAN@sakilacustomer.org','533','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('528','1','CLAUDE','HERZOG','CLAUDE.HERZOG@sakilacustomer.org','534','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('529','2','ERIK','GUILLEN','ERIK.GUILLEN@sakilacustomer.org','535','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('530','2','DARRYL','ASHCRAFT','DARRYL.ASHCRAFT@sakilacustomer.org','536','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('531','2','JAMIE','WAUGH','JAMIE.WAUGH@sakilacustomer.org','537','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('532','2','NEIL','RENNER','NEIL.RENNER@sakilacustomer.org','538','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('533','1','JESSIE','MILAM','JESSIE.MILAM@sakilacustomer.org','539','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('534','1','CHRISTIAN','JUNG','CHRISTIAN.JUNG@sakilacustomer.org','540','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('535','1','JAVIER','ELROD','JAVIER.ELROD@sakilacustomer.org','541','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('536','2','FERNANDO','CHURCHILL','FERNANDO.CHURCHILL@sakilacustomer.org','542','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('537','2','CLINTON','BUFORD','CLINTON.BUFORD@sakilacustomer.org','543','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('538','2','TED','BREAUX','TED.BREAUX@sakilacustomer.org','544','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('539','1','MATHEW','BOLIN','MATHEW.BOLIN@sakilacustomer.org','545','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('540','1','TYRONE','ASHER','TYRONE.ASHER@sakilacustomer.org','546','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('541','2','DARREN','WINDHAM','DARREN.WINDHAM@sakilacustomer.org','547','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('542','2','LONNIE','TIRADO','LONNIE.TIRADO@sakilacustomer.org','548','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('543','1','LANCE','PEMBERTON','LANCE.PEMBERTON@sakilacustomer.org','549','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('544','2','CODY','NOLEN','CODY.NOLEN@sakilacustomer.org','550','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('545','2','JULIO','NOLAND','JULIO.NOLAND@sakilacustomer.org','551','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('546','1','KELLY','KNOTT','KELLY.KNOTT@sakilacustomer.org','552','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('547','1','KURT','EMMONS','KURT.EMMONS@sakilacustomer.org','553','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('548','1','ALLAN','CORNISH','ALLAN.CORNISH@sakilacustomer.org','554','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('549','1','NELSON','CHRISTENSON','NELSON.CHRISTENSON@sakilacustomer.org','555','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('550','2','GUY','BROWNLEE','GUY.BROWNLEE@sakilacustomer.org','556','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('551','2','CLAYTON','BARBEE','CLAYTON.BARBEE@sakilacustomer.org','557','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('552','2','HUGH','WALDROP','HUGH.WALDROP@sakilacustomer.org','558','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('553','1','MAX','PITT','MAX.PITT@sakilacustomer.org','559','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('554','1','DWAYNE','OLVERA','DWAYNE.OLVERA@sakilacustomer.org','560','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('555','1','DWIGHT','LOMBARDI','DWIGHT.LOMBARDI@sakilacustomer.org','561','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('556','2','ARMANDO','GRUBER','ARMANDO.GRUBER@sakilacustomer.org','562','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('557','1','FELIX','GAFFNEY','FELIX.GAFFNEY@sakilacustomer.org','563','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('558','1','JIMMIE','EGGLESTON','JIMMIE.EGGLESTON@sakilacustomer.org','564','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('559','2','EVERETT','BANDA','EVERETT.BANDA@sakilacustomer.org','565','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('560','1','JORDAN','ARCHULETA','JORDAN.ARCHULETA@sakilacustomer.org','566','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('561','2','IAN','STILL','IAN.STILL@sakilacustomer.org','567','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('562','1','WALLACE','SLONE','WALLACE.SLONE@sakilacustomer.org','568','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('563','2','KEN','PREWITT','KEN.PREWITT@sakilacustomer.org','569','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('564','2','BOB','PFEIFFER','BOB.PFEIFFER@sakilacustomer.org','570','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('565','2','JAIME','NETTLES','JAIME.NETTLES@sakilacustomer.org','571','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('566','1','CASEY','MENA','CASEY.MENA@sakilacustomer.org','572','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('567','2','ALFREDO','MCADAMS','ALFREDO.MCADAMS@sakilacustomer.org','573','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('568','2','ALBERTO','HENNING','ALBERTO.HENNING@sakilacustomer.org','574','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('569','2','DAVE','GARDINER','DAVE.GARDINER@sakilacustomer.org','575','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('570','2','IVAN','CROMWELL','IVAN.CROMWELL@sakilacustomer.org','576','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('571','2','JOHNNIE','CHISHOLM','JOHNNIE.CHISHOLM@sakilacustomer.org','577','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('572','1','SIDNEY','BURLESON','SIDNEY.BURLESON@sakilacustomer.org','578','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('573','1','BYRON','BOX','BYRON.BOX@sakilacustomer.org','579','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('574','2','JULIAN','VEST','JULIAN.VEST@sakilacustomer.org','580','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('575','2','ISAAC','OGLESBY','ISAAC.OGLESBY@sakilacustomer.org','581','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('576','2','MORRIS','MCCARTER','MORRIS.MCCARTER@sakilacustomer.org','582','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('577','2','CLIFTON','MALCOLM','CLIFTON.MALCOLM@sakilacustomer.org','583','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('578','2','WILLARD','LUMPKIN','WILLARD.LUMPKIN@sakilacustomer.org','584','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('579','2','DARYL','LARUE','DARYL.LARUE@sakilacustomer.org','585','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('580','1','ROSS','GREY','ROSS.GREY@sakilacustomer.org','586','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('581','1','VIRGIL','WOFFORD','VIRGIL.WOFFORD@sakilacustomer.org','587','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('582','2','ANDY','VANHORN','ANDY.VANHORN@sakilacustomer.org','588','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('583','1','MARSHALL','THORN','MARSHALL.THORN@sakilacustomer.org','589','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('584','2','SALVADOR','TEEL','SALVADOR.TEEL@sakilacustomer.org','590','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('585','1','PERRY','SWAFFORD','PERRY.SWAFFORD@sakilacustomer.org','591','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('586','1','KIRK','STCLAIR','KIRK.STCLAIR@sakilacustomer.org','592','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('587','1','SERGIO','STANFIELD','SERGIO.STANFIELD@sakilacustomer.org','593','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('588','1','MARION','OCAMPO','MARION.OCAMPO@sakilacustomer.org','594','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('589','1','TRACY','HERRMANN','TRACY.HERRMANN@sakilacustomer.org','595','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('590','2','SETH','HANNON','SETH.HANNON@sakilacustomer.org','596','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('591','1','KENT','ARSENAULT','KENT.ARSENAULT@sakilacustomer.org','597','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('592','1','TERRANCE','ROUSH','TERRANCE.ROUSH@sakilacustomer.org','598','0','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('593','2','RENE','MCALISTER','RENE.MCALISTER@sakilacustomer.org','599','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('594','1','EDUARDO','HIATT','EDUARDO.HIATT@sakilacustomer.org','600','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('595','1','TERRENCE','GUNDERSON','TERRENCE.GUNDERSON@sakilacustomer.org','601','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('596','1','ENRIQUE','FORSYTHE','ENRIQUE.FORSYTHE@sakilacustomer.org','602','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('597','1','FREDDIE','DUGGAN','FREDDIE.DUGGAN@sakilacustomer.org','603','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('598','1','WADE','DELVALLE','WADE.DELVALLE@sakilacustomer.org','604','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +Insert into customer + (customer_id,store_id,first_name,last_name,email,address_id,active,create_date,last_update) +Values +('599','2','AUSTIN','CINTRON','AUSTIN.CINTRON@sakilacustomer.org','605','1','2006-02-14 22:04:37.000','2006-02-15 04:57:20.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table rental +-- Start of script +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1','2005-05-24 22:53:30.000','367','130','2005-05-26 22:04:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2','2005-05-24 22:54:33.000','1525','459','2005-05-28 19:40:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3','2005-05-24 23:03:39.000','1711','408','2005-06-01 22:12:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4','2005-05-24 23:04:41.000','2452','333','2005-06-03 01:43:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5','2005-05-24 23:05:21.000','2079','222','2005-06-02 04:33:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6','2005-05-24 23:08:07.000','2792','549','2005-05-27 01:32:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7','2005-05-24 23:11:53.000','3995','269','2005-05-29 20:34:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8','2005-05-24 23:31:46.000','2346','239','2005-05-27 23:33:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9','2005-05-25 00:00:40.000','2580','126','2005-05-28 00:22:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10','2005-05-25 00:02:21.000','1824','399','2005-05-31 22:44:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11','2005-05-25 00:09:02.000','4443','142','2005-06-02 20:56:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12','2005-05-25 00:19:27.000','1584','261','2005-05-30 05:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13','2005-05-25 00:22:55.000','2294','334','2005-05-30 04:28:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14','2005-05-25 00:31:15.000','2701','446','2005-05-26 02:56:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15','2005-05-25 00:39:22.000','3049','319','2005-06-03 03:30:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16','2005-05-25 00:43:11.000','389','316','2005-05-26 04:42:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('17','2005-05-25 01:06:36.000','830','575','2005-05-27 00:43:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('18','2005-05-25 01:10:47.000','3376','19','2005-05-31 06:35:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('19','2005-05-25 01:17:24.000','1941','456','2005-05-31 06:00:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('20','2005-05-25 01:48:41.000','3517','185','2005-05-27 02:20:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('21','2005-05-25 01:59:46.000','146','388','2005-05-26 01:01:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('22','2005-05-25 02:19:23.000','727','509','2005-05-26 04:52:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('23','2005-05-25 02:40:21.000','4441','438','2005-05-29 06:34:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('24','2005-05-25 02:53:02.000','3273','350','2005-05-27 01:15:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('25','2005-05-25 03:21:20.000','3961','37','2005-05-27 21:25:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('26','2005-05-25 03:36:50.000','4371','371','2005-05-31 00:34:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('27','2005-05-25 03:41:50.000','1225','301','2005-05-30 01:13:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('28','2005-05-25 03:42:37.000','4068','232','2005-05-26 09:26:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('29','2005-05-25 03:47:12.000','611','44','2005-05-30 00:31:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('30','2005-05-25 04:01:32.000','3744','430','2005-05-30 03:12:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('31','2005-05-25 04:05:17.000','4482','369','2005-05-30 07:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('32','2005-05-25 04:06:21.000','3832','230','2005-05-25 23:55:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('33','2005-05-25 04:18:51.000','1681','272','2005-05-27 03:58:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('34','2005-05-25 04:19:28.000','2613','597','2005-05-29 00:10:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('35','2005-05-25 04:24:36.000','1286','484','2005-05-27 07:02:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('36','2005-05-25 04:36:26.000','1308','88','2005-05-29 00:31:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('37','2005-05-25 04:44:31.000','403','535','2005-05-29 01:03:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('38','2005-05-25 04:47:44.000','2540','302','2005-06-01 00:58:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('39','2005-05-25 04:51:46.000','4466','207','2005-05-31 03:14:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('40','2005-05-25 05:09:04.000','2638','413','2005-05-27 23:12:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('41','2005-05-25 05:12:29.000','1761','174','2005-06-02 00:28:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('42','2005-05-25 05:24:58.000','380','523','2005-05-31 02:47:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('43','2005-05-25 05:39:25.000','2578','532','2005-05-26 06:54:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('44','2005-05-25 05:53:23.000','3098','207','2005-05-29 10:56:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('45','2005-05-25 05:59:39.000','1853','436','2005-06-02 09:56:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('46','2005-05-25 06:04:08.000','3318','7','2005-06-02 08:18:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('47','2005-05-25 06:05:20.000','2211','35','2005-05-30 03:04:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('48','2005-05-25 06:20:46.000','1780','282','2005-06-02 05:42:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('49','2005-05-25 06:39:35.000','2965','498','2005-05-30 10:12:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('50','2005-05-25 06:44:53.000','1983','18','2005-05-28 11:28:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('51','2005-05-25 06:49:10.000','1257','256','2005-05-26 06:42:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('52','2005-05-25 06:51:29.000','4017','507','2005-05-31 01:27:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('53','2005-05-25 07:19:16.000','1255','569','2005-05-27 05:19:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('54','2005-05-25 07:23:25.000','2787','291','2005-06-01 05:05:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('55','2005-05-25 08:26:13.000','1139','131','2005-05-30 10:57:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('56','2005-05-25 08:28:11.000','1352','511','2005-05-26 14:21:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('57','2005-05-25 08:43:32.000','3938','6','2005-05-29 06:42:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('58','2005-05-25 08:53:14.000','3050','323','2005-05-28 14:40:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('59','2005-05-25 08:56:42.000','2884','408','2005-06-01 09:52:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('60','2005-05-25 08:58:25.000','330','470','2005-05-30 14:14:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('61','2005-05-25 09:01:57.000','4210','250','2005-06-02 07:22:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('62','2005-05-25 09:18:52.000','261','419','2005-05-30 10:55:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('63','2005-05-25 09:19:16.000','4008','383','2005-05-27 04:24:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('64','2005-05-25 09:21:29.000','79','368','2005-06-03 11:31:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('65','2005-05-25 09:32:03.000','3552','346','2005-05-29 14:21:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('66','2005-05-25 09:35:12.000','1162','86','2005-05-29 04:16:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('67','2005-05-25 09:41:01.000','239','119','2005-05-27 13:46:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('68','2005-05-25 09:47:31.000','4029','120','2005-05-31 10:20:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('69','2005-05-25 10:10:14.000','3207','305','2005-05-27 14:02:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('70','2005-05-25 10:15:23.000','2168','73','2005-05-27 05:56:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('71','2005-05-25 10:26:39.000','2408','100','2005-05-28 04:59:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('72','2005-05-25 10:52:13.000','2260','48','2005-05-28 05:52:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('73','2005-05-25 11:00:07.000','517','391','2005-06-01 13:56:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('74','2005-05-25 11:09:48.000','1744','265','2005-05-26 12:23:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('75','2005-05-25 11:13:34.000','3393','510','2005-06-03 12:58:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('76','2005-05-25 11:30:37.000','3021','1','2005-06-03 12:00:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('77','2005-05-25 11:31:59.000','1303','451','2005-05-26 16:53:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('78','2005-05-25 11:35:18.000','4067','135','2005-05-31 12:48:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('79','2005-05-25 12:11:07.000','3299','245','2005-06-03 10:54:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('80','2005-05-25 12:12:07.000','2478','314','2005-05-31 17:46:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('81','2005-05-25 12:15:19.000','2610','286','2005-06-02 14:08:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('82','2005-05-25 12:17:46.000','1388','427','2005-06-01 10:48:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('83','2005-05-25 12:30:15.000','466','131','2005-05-27 15:40:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('84','2005-05-25 12:36:30.000','1829','492','2005-05-29 18:33:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('85','2005-05-25 13:05:34.000','470','414','2005-05-29 16:53:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('86','2005-05-25 13:36:12.000','2275','266','2005-05-30 14:53:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('87','2005-05-25 13:52:43.000','1586','331','2005-05-29 11:12:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('88','2005-05-25 14:13:54.000','2221','53','2005-05-29 09:32:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('89','2005-05-25 14:28:29.000','2181','499','2005-05-29 14:33:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('90','2005-05-25 14:31:25.000','2984','25','2005-06-01 10:07:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('91','2005-05-25 14:57:22.000','139','267','2005-06-01 18:32:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('92','2005-05-25 15:38:46.000','775','302','2005-05-31 13:40:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('93','2005-05-25 15:54:16.000','4360','288','2005-06-03 20:18:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('94','2005-05-25 16:03:42.000','1675','197','2005-05-30 14:23:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('95','2005-05-25 16:12:52.000','178','400','2005-06-02 18:55:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('96','2005-05-25 16:32:19.000','3418','49','2005-05-30 10:47:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('97','2005-05-25 16:34:24.000','1283','263','2005-05-28 12:13:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('98','2005-05-25 16:48:24.000','2970','269','2005-05-27 11:29:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('99','2005-05-25 16:50:20.000','535','44','2005-05-28 18:52:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('100','2005-05-25 16:50:28.000','2599','208','2005-06-02 22:11:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('101','2005-05-25 17:17:04.000','617','468','2005-05-31 19:47:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('102','2005-05-25 17:22:10.000','373','343','2005-05-31 19:47:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('103','2005-05-25 17:30:42.000','3343','384','2005-06-03 22:36:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('104','2005-05-25 17:46:33.000','4281','310','2005-05-27 15:20:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('105','2005-05-25 17:54:12.000','794','108','2005-05-30 12:03:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('106','2005-05-25 18:18:19.000','3627','196','2005-06-04 00:01:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('107','2005-05-25 18:28:09.000','2833','317','2005-06-03 22:46:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('108','2005-05-25 18:30:05.000','3289','242','2005-05-30 19:40:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('109','2005-05-25 18:40:20.000','1044','503','2005-05-29 20:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('110','2005-05-25 18:43:49.000','4108','19','2005-06-03 18:13:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('111','2005-05-25 18:45:19.000','3725','227','2005-05-28 17:18:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('112','2005-05-25 18:57:24.000','2153','500','2005-06-02 20:44:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('113','2005-05-25 19:07:40.000','2963','93','2005-05-27 22:16:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('114','2005-05-25 19:12:42.000','4502','506','2005-06-01 23:10:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('115','2005-05-25 19:13:25.000','749','455','2005-05-29 20:17:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('116','2005-05-25 19:27:51.000','4453','18','2005-05-26 16:23:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('117','2005-05-25 19:30:46.000','4278','7','2005-05-31 23:59:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('118','2005-05-25 19:31:18.000','872','524','2005-05-31 15:00:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('119','2005-05-25 19:37:02.000','1359','51','2005-05-29 23:51:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('120','2005-05-25 19:37:47.000','37','365','2005-06-01 23:29:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('121','2005-05-25 19:41:29.000','1053','405','2005-05-29 21:31:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('122','2005-05-25 19:46:21.000','2908','273','2005-06-02 19:07:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('123','2005-05-25 20:26:42.000','1795','43','2005-05-26 19:41:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('124','2005-05-25 20:46:11.000','212','246','2005-05-30 00:47:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('125','2005-05-25 20:48:50.000','952','368','2005-06-02 21:39:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('126','2005-05-25 21:07:59.000','2047','439','2005-05-28 18:51:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('127','2005-05-25 21:10:40.000','2026','94','2005-06-02 21:38:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('128','2005-05-25 21:19:53.000','4322','40','2005-05-29 23:34:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('129','2005-05-25 21:20:03.000','4154','23','2005-06-04 01:25:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('130','2005-05-25 21:21:56.000','3990','56','2005-05-30 22:41:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('131','2005-05-25 21:42:46.000','815','325','2005-05-30 23:25:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('132','2005-05-25 21:46:54.000','3367','479','2005-05-31 21:02:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('133','2005-05-25 21:48:30.000','399','237','2005-05-30 00:26:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('134','2005-05-25 21:48:41.000','2272','222','2005-06-02 18:28:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('135','2005-05-25 21:58:58.000','103','304','2005-06-03 17:50:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('136','2005-05-25 22:02:30.000','2296','504','2005-05-31 18:06:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('137','2005-05-25 22:25:18.000','2591','560','2005-06-01 02:30:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('138','2005-05-25 22:48:22.000','4134','586','2005-05-29 20:21:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('139','2005-05-25 23:00:21.000','327','257','2005-05-29 17:12:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('140','2005-05-25 23:34:22.000','655','354','2005-05-27 01:10:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('141','2005-05-25 23:34:53.000','811','89','2005-06-02 01:57:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('142','2005-05-25 23:43:47.000','4407','472','2005-05-29 00:46:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('143','2005-05-25 23:45:52.000','847','297','2005-05-27 21:41:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('144','2005-05-25 23:49:56.000','1689','357','2005-06-01 21:41:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('145','2005-05-25 23:59:03.000','3905','82','2005-05-31 02:56:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('146','2005-05-26 00:07:11.000','1431','433','2005-06-04 00:20:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('147','2005-05-26 00:17:50.000','633','274','2005-05-29 23:21:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('148','2005-05-26 00:25:23.000','4252','142','2005-06-01 19:29:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('149','2005-05-26 00:28:05.000','1084','319','2005-06-02 21:30:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('150','2005-05-26 00:28:39.000','909','429','2005-06-01 02:10:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('151','2005-05-26 00:37:28.000','2942','14','2005-05-30 06:28:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('152','2005-05-26 00:41:10.000','2622','57','2005-06-03 06:05:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('153','2005-05-26 00:47:47.000','3888','348','2005-05-27 21:28:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('154','2005-05-26 00:55:56.000','1354','185','2005-05-29 23:18:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('155','2005-05-26 01:15:05.000','288','551','2005-06-01 00:03:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('156','2005-05-26 01:19:05.000','3193','462','2005-05-27 23:43:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('157','2005-05-26 01:25:21.000','887','344','2005-05-26 21:17:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('158','2005-05-26 01:27:11.000','2395','354','2005-06-03 00:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('159','2005-05-26 01:34:28.000','3453','505','2005-05-29 04:00:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('160','2005-05-26 01:46:20.000','1885','290','2005-06-01 05:45:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('161','2005-05-26 01:51:48.000','2941','182','2005-05-27 05:42:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('162','2005-05-26 02:02:05.000','1229','296','2005-05-27 03:38:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('163','2005-05-26 02:26:23.000','2306','104','2005-06-04 06:36:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('164','2005-05-26 02:26:49.000','1070','151','2005-05-28 00:32:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('165','2005-05-26 02:28:36.000','2735','33','2005-06-02 03:21:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('166','2005-05-26 02:49:11.000','3894','322','2005-05-31 01:28:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('167','2005-05-26 02:50:31.000','865','401','2005-05-27 03:07:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('168','2005-05-26 03:07:43.000','2714','469','2005-06-02 02:09:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('169','2005-05-26 03:09:30.000','1758','381','2005-05-27 01:37:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('170','2005-05-26 03:11:12.000','3688','107','2005-06-02 03:53:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('171','2005-05-26 03:14:15.000','4483','400','2005-06-03 00:24:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('172','2005-05-26 03:17:42.000','2873','176','2005-05-29 04:11:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('173','2005-05-26 03:42:10.000','3596','533','2005-05-28 01:37:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('174','2005-05-26 03:44:10.000','3954','552','2005-05-28 07:13:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('175','2005-05-26 03:46:26.000','4346','47','2005-06-03 06:01:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('176','2005-05-26 03:47:39.000','851','250','2005-06-01 02:36:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('177','2005-05-26 04:14:29.000','3545','548','2005-06-01 08:16:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('178','2005-05-26 04:21:46.000','1489','196','2005-06-04 07:09:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('179','2005-05-26 04:26:06.000','2575','19','2005-06-03 10:06:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('180','2005-05-26 04:46:23.000','2752','75','2005-06-01 09:58:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('181','2005-05-26 04:47:06.000','2417','587','2005-05-29 06:34:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('182','2005-05-26 04:49:17.000','4396','237','2005-06-01 05:43:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('183','2005-05-26 05:01:18.000','2877','254','2005-06-01 09:04:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('184','2005-05-26 05:29:49.000','1970','556','2005-05-28 10:10:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('185','2005-05-26 05:30:03.000','2598','125','2005-06-02 09:48:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('186','2005-05-26 05:32:52.000','1799','468','2005-06-03 07:19:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('187','2005-05-26 05:42:37.000','4004','515','2005-06-04 00:38:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('188','2005-05-26 05:47:12.000','3342','243','2005-05-26 23:48:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('189','2005-05-26 06:01:41.000','984','247','2005-05-27 06:11:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('190','2005-05-26 06:11:28.000','3962','533','2005-06-01 09:44:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('191','2005-05-26 06:14:06.000','4365','412','2005-05-28 05:33:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('192','2005-05-26 06:20:37.000','1897','437','2005-06-02 10:57:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('193','2005-05-26 06:41:48.000','3900','270','2005-05-30 06:21:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('194','2005-05-26 06:52:33.000','1337','29','2005-05-30 04:08:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('195','2005-05-26 06:52:36.000','506','564','2005-05-31 02:47:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('196','2005-05-26 06:55:58.000','190','184','2005-05-27 10:54:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('197','2005-05-26 06:59:21.000','4212','546','2005-06-03 05:04:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('198','2005-05-26 07:03:49.000','1789','54','2005-06-04 11:45:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('199','2005-05-26 07:11:58.000','2135','71','2005-05-28 09:06:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('200','2005-05-26 07:12:21.000','3926','321','2005-05-31 12:07:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('201','2005-05-26 07:13:45.000','776','444','2005-06-04 02:02:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('202','2005-05-26 07:27:36.000','674','20','2005-06-02 03:52:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('203','2005-05-26 07:27:57.000','3374','109','2005-06-03 12:52:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('204','2005-05-26 07:30:37.000','1842','528','2005-05-30 08:11:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('205','2005-05-26 07:59:37.000','303','114','2005-05-29 09:43:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('206','2005-05-26 08:01:54.000','1717','345','2005-05-27 06:26:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('207','2005-05-26 08:04:38.000','102','47','2005-05-27 09:32:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('208','2005-05-26 08:10:22.000','3669','274','2005-05-27 03:55:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('209','2005-05-26 08:14:01.000','729','379','2005-05-27 09:00:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('210','2005-05-26 08:14:15.000','1801','391','2005-05-27 12:12:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('211','2005-05-26 08:33:10.000','4005','170','2005-05-28 14:09:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('212','2005-05-26 08:34:41.000','764','59','2005-05-30 12:46:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('213','2005-05-26 08:44:08.000','1505','394','2005-05-31 12:33:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('214','2005-05-26 08:48:49.000','1453','98','2005-05-31 04:06:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('215','2005-05-26 09:02:47.000','679','197','2005-05-28 09:45:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('216','2005-05-26 09:17:43.000','1398','91','2005-06-03 08:21:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('217','2005-05-26 09:24:26.000','4395','121','2005-05-31 03:24:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('218','2005-05-26 09:27:09.000','2291','309','2005-06-04 11:53:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('219','2005-05-26 09:41:45.000','3074','489','2005-05-28 04:40:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('220','2005-05-26 10:06:49.000','1259','542','2005-06-01 07:43:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('221','2005-05-26 10:14:09.000','3578','143','2005-05-29 05:57:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('222','2005-05-26 10:14:38.000','2745','83','2005-05-31 08:36:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('223','2005-05-26 10:15:23.000','3121','460','2005-05-30 11:43:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('224','2005-05-26 10:18:27.000','4285','318','2005-06-04 06:59:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('225','2005-05-26 10:27:50.000','651','467','2005-06-01 07:01:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('226','2005-05-26 10:44:04.000','4181','221','2005-05-31 13:26:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('227','2005-05-26 10:51:46.000','214','301','2005-05-30 07:24:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('228','2005-05-26 10:54:28.000','511','571','2005-06-04 09:39:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('229','2005-05-26 11:19:20.000','1131','312','2005-05-31 11:56:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('230','2005-05-26 11:31:50.000','1085','58','2005-05-30 15:22:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('231','2005-05-26 11:31:59.000','4032','365','2005-05-27 07:27:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('232','2005-05-26 11:38:05.000','2945','256','2005-05-27 08:42:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('233','2005-05-26 11:43:44.000','715','531','2005-05-28 17:28:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('234','2005-05-26 11:47:20.000','1321','566','2005-06-03 10:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('235','2005-05-26 11:51:09.000','3537','119','2005-06-04 09:36:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('236','2005-05-26 11:53:49.000','1265','446','2005-05-28 13:55:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('237','2005-05-26 12:15:13.000','241','536','2005-05-29 18:10:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('238','2005-05-26 12:30:22.000','503','211','2005-05-27 06:49:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('239','2005-05-26 12:30:26.000','131','49','2005-06-01 13:26:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('240','2005-05-26 12:40:23.000','3420','103','2005-06-04 07:22:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('241','2005-05-26 12:49:01.000','4438','245','2005-05-28 11:43:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('242','2005-05-26 13:05:08.000','2095','214','2005-06-02 15:26:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('243','2005-05-26 13:06:05.000','1721','543','2005-06-03 17:28:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('244','2005-05-26 13:40:40.000','1041','257','2005-05-31 11:58:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('245','2005-05-26 13:46:59.000','3045','158','2005-05-27 09:58:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('246','2005-05-26 13:57:07.000','2829','240','2005-05-29 10:12:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('247','2005-05-26 14:01:05.000','4095','102','2005-05-28 13:38:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('248','2005-05-26 14:07:58.000','1913','545','2005-05-31 14:03:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('249','2005-05-26 14:19:09.000','2428','472','2005-05-28 17:47:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('250','2005-05-26 14:30:24.000','368','539','2005-05-27 08:50:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('251','2005-05-26 14:35:40.000','4352','204','2005-05-29 17:17:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('252','2005-05-26 14:39:53.000','1203','187','2005-06-02 14:48:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('253','2005-05-26 14:43:14.000','2969','416','2005-05-27 12:21:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('254','2005-05-26 14:43:48.000','1835','390','2005-05-31 09:19:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('255','2005-05-26 14:52:15.000','3264','114','2005-05-27 12:45:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('256','2005-05-26 15:20:58.000','3194','436','2005-05-31 15:58:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('257','2005-05-26 15:27:05.000','2570','373','2005-05-29 16:25:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('258','2005-05-26 15:28:14.000','3534','502','2005-05-30 18:38:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('259','2005-05-26 15:32:46.000','30','482','2005-06-04 15:27:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('260','2005-05-26 15:42:20.000','435','21','2005-05-31 13:21:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('261','2005-05-26 15:44:23.000','1369','414','2005-06-02 09:47:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('262','2005-05-26 15:46:56.000','4261','236','2005-05-28 15:49:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('263','2005-05-26 15:47:40.000','1160','449','2005-05-30 10:07:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('264','2005-05-26 16:00:49.000','2069','251','2005-05-27 10:12:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('265','2005-05-26 16:07:38.000','2276','303','2005-06-01 14:20:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('266','2005-05-26 16:08:05.000','3303','263','2005-05-27 10:55:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('267','2005-05-26 16:16:21.000','1206','417','2005-05-30 16:53:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('268','2005-05-26 16:19:08.000','1714','75','2005-05-27 14:35:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('269','2005-05-26 16:19:46.000','3501','322','2005-05-27 15:59:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('270','2005-05-26 16:20:56.000','207','200','2005-06-03 12:40:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('271','2005-05-26 16:22:01.000','2388','92','2005-06-03 17:30:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('272','2005-05-26 16:27:11.000','971','71','2005-06-03 13:10:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('273','2005-05-26 16:29:36.000','1590','193','2005-05-29 18:49:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('274','2005-05-26 16:48:51.000','656','311','2005-06-03 18:17:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('275','2005-05-26 17:09:53.000','1718','133','2005-06-04 22:35:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('276','2005-05-26 17:16:07.000','1221','58','2005-06-03 12:59:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('277','2005-05-26 17:32:11.000','1409','45','2005-05-28 22:54:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('278','2005-05-26 17:40:58.000','182','214','2005-06-02 16:43:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('279','2005-05-26 18:02:50.000','661','384','2005-06-03 18:48:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('280','2005-05-26 18:36:58.000','1896','167','2005-05-27 23:42:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('281','2005-05-26 18:49:35.000','1208','582','2005-05-27 18:11:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('282','2005-05-26 18:56:26.000','4486','282','2005-06-01 16:32:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('283','2005-05-26 19:05:05.000','3530','242','2005-05-31 19:19:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('284','2005-05-26 19:21:44.000','350','359','2005-06-04 14:18:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('285','2005-05-26 19:41:40.000','2486','162','2005-05-31 16:58:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('286','2005-05-26 19:44:51.000','314','371','2005-06-04 18:00:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('287','2005-05-26 19:44:54.000','3631','17','2005-06-02 01:10:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('288','2005-05-26 19:47:49.000','3546','82','2005-06-03 20:53:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('289','2005-05-26 20:01:09.000','2449','81','2005-05-28 15:09:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('290','2005-05-26 20:08:33.000','2776','429','2005-05-30 00:32:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('291','2005-05-26 20:20:47.000','485','577','2005-06-03 02:06:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('292','2005-05-26 20:22:12.000','4264','515','2005-06-05 00:58:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('293','2005-05-26 20:27:02.000','1828','158','2005-06-03 16:45:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('294','2005-05-26 20:29:57.000','2751','369','2005-05-28 17:20:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('295','2005-05-26 20:33:20.000','4030','65','2005-05-27 18:23:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('296','2005-05-26 20:35:19.000','3878','468','2005-06-04 02:31:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('297','2005-05-26 20:48:48.000','1594','48','2005-05-27 19:52:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('298','2005-05-26 20:52:26.000','1083','460','2005-05-29 22:08:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('299','2005-05-26 20:55:36.000','4376','448','2005-05-28 00:25:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('300','2005-05-26 20:57:00.000','249','47','2005-06-05 01:34:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('301','2005-05-26 21:06:14.000','3448','274','2005-06-01 01:54:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('302','2005-05-26 21:13:46.000','2921','387','2005-06-03 15:49:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('303','2005-05-26 21:16:52.000','1111','596','2005-05-27 23:41:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('304','2005-05-26 21:21:28.000','1701','534','2005-06-02 00:05:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('305','2005-05-26 21:22:07.000','2665','464','2005-06-02 22:33:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('306','2005-05-26 21:31:57.000','2781','547','2005-05-28 19:37:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('307','2005-05-26 21:48:13.000','1097','375','2005-06-04 22:24:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('308','2005-05-26 22:01:39.000','187','277','2005-06-04 20:24:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('309','2005-05-26 22:38:10.000','1946','251','2005-06-02 03:10:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('310','2005-05-26 22:41:07.000','593','409','2005-06-02 04:09:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('311','2005-05-26 22:51:37.000','2830','201','2005-06-01 00:02:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('312','2005-05-26 22:52:19.000','2008','143','2005-06-02 18:14:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('313','2005-05-26 22:56:19.000','4156','594','2005-05-29 01:29:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('314','2005-05-26 23:09:41.000','2851','203','2005-05-28 22:49:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('315','2005-05-26 23:12:55.000','2847','238','2005-05-29 23:33:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('316','2005-05-26 23:22:55.000','3828','249','2005-05-29 23:25:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('317','2005-05-26 23:23:56.000','26','391','2005-06-01 19:56:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('318','2005-05-26 23:37:39.000','2559','60','2005-06-03 04:31:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('319','2005-05-26 23:52:13.000','3024','77','2005-05-30 18:55:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('320','2005-05-27 00:09:24.000','1090','2','2005-05-28 04:30:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('322','2005-05-27 00:47:35.000','4556','496','2005-06-02 00:32:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('323','2005-05-27 00:49:27.000','2362','144','2005-05-30 03:12:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('324','2005-05-27 01:00:04.000','3364','292','2005-05-30 04:27:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('325','2005-05-27 01:09:55.000','2510','449','2005-05-31 07:01:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('326','2005-05-27 01:10:11.000','3979','432','2005-06-04 20:25:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('327','2005-05-27 01:18:57.000','2678','105','2005-06-04 04:06:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('328','2005-05-27 01:29:31.000','2524','451','2005-06-01 02:27:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('329','2005-05-27 01:57:14.000','2659','231','2005-05-31 04:19:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('330','2005-05-27 02:15:30.000','1536','248','2005-06-04 05:09:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('331','2005-05-27 02:22:26.000','1872','67','2005-06-05 00:25:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('332','2005-05-27 02:27:10.000','1529','299','2005-06-03 01:26:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('333','2005-05-27 02:52:21.000','4001','412','2005-06-01 00:55:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('334','2005-05-27 03:03:07.000','3973','194','2005-05-29 03:54:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('335','2005-05-27 03:07:10.000','1411','16','2005-06-05 00:15:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('336','2005-05-27 03:15:23.000','1811','275','2005-05-29 22:43:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('337','2005-05-27 03:22:30.000','751','19','2005-06-02 03:27:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('338','2005-05-27 03:42:52.000','2596','165','2005-06-01 05:23:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('339','2005-05-27 03:47:18.000','2410','516','2005-06-04 05:46:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('340','2005-05-27 03:55:25.000','946','209','2005-06-04 07:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('341','2005-05-27 04:01:42.000','4168','56','2005-06-05 08:51:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('342','2005-05-27 04:11:04.000','4019','539','2005-05-29 01:28:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('343','2005-05-27 04:13:41.000','3301','455','2005-05-28 08:34:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('344','2005-05-27 04:30:22.000','2327','236','2005-05-29 10:13:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('345','2005-05-27 04:32:25.000','1396','144','2005-05-31 09:50:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('346','2005-05-27 04:34:41.000','4319','14','2005-06-05 04:24:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('347','2005-05-27 04:40:33.000','1625','378','2005-05-28 09:56:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('348','2005-05-27 04:50:56.000','1825','473','2005-06-01 04:43:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('349','2005-05-27 04:53:11.000','2920','36','2005-05-28 06:33:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('350','2005-05-27 05:01:28.000','2756','9','2005-06-04 05:01:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('351','2005-05-27 05:39:03.000','3371','118','2005-06-01 11:10:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('352','2005-05-27 05:48:19.000','4369','157','2005-05-29 09:05:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('353','2005-05-27 06:03:39.000','3989','503','2005-06-03 04:39:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('354','2005-05-27 06:12:26.000','2058','452','2005-06-01 06:48:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('355','2005-05-27 06:15:33.000','141','446','2005-06-01 02:50:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('356','2005-05-27 06:32:30.000','2868','382','2005-05-30 06:24:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('357','2005-05-27 06:37:15.000','4417','198','2005-05-30 07:04:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('358','2005-05-27 06:43:59.000','1925','102','2005-05-29 11:28:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('359','2005-05-27 06:48:33.000','1156','152','2005-05-29 03:55:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('360','2005-05-27 06:51:14.000','3489','594','2005-06-03 01:58:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('361','2005-05-27 07:03:28.000','6','587','2005-05-31 08:01:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('362','2005-05-27 07:10:25.000','2324','147','2005-06-01 08:34:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('363','2005-05-27 07:14:00.000','4282','345','2005-05-28 12:22:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('364','2005-05-27 07:20:12.000','833','430','2005-05-31 10:44:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('365','2005-05-27 07:31:20.000','2887','167','2005-06-04 04:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('366','2005-05-27 07:33:54.000','360','134','2005-06-04 01:55:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('367','2005-05-27 07:37:02.000','3437','439','2005-05-30 05:43:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('368','2005-05-27 07:42:29.000','1247','361','2005-06-04 11:20:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('369','2005-05-27 07:46:49.000','944','508','2005-06-01 06:20:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('370','2005-05-27 07:49:43.000','3347','22','2005-06-05 06:39:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('371','2005-05-27 08:08:18.000','1235','295','2005-06-05 03:05:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('372','2005-05-27 08:13:58.000','4089','510','2005-06-04 03:50:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('373','2005-05-27 08:16:25.000','1649','464','2005-06-01 11:41:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('374','2005-05-27 08:26:30.000','4420','337','2005-06-05 07:13:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('375','2005-05-27 08:49:21.000','1815','306','2005-06-04 14:11:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('376','2005-05-27 08:58:15.000','3197','542','2005-06-02 04:48:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('377','2005-05-27 09:04:05.000','3012','170','2005-06-02 03:36:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('378','2005-05-27 09:23:22.000','2242','53','2005-05-29 15:20:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('379','2005-05-27 09:25:32.000','3462','584','2005-06-02 06:19:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('380','2005-05-27 09:34:39.000','1777','176','2005-06-04 11:45:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('381','2005-05-27 09:43:25.000','2748','371','2005-05-31 12:00:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('382','2005-05-27 10:12:00.000','4358','183','2005-05-31 15:03:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('383','2005-05-27 10:12:20.000','955','298','2005-06-03 10:37:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('384','2005-05-27 10:18:20.000','910','371','2005-06-02 09:21:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('385','2005-05-27 10:23:25.000','1565','213','2005-05-30 15:27:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('386','2005-05-27 10:26:31.000','1288','109','2005-05-30 08:32:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('387','2005-05-27 10:35:27.000','2684','506','2005-06-01 13:37:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('388','2005-05-27 10:37:27.000','434','28','2005-05-30 05:45:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('389','2005-05-27 10:45:41.000','691','500','2005-06-05 06:22:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('390','2005-05-27 11:02:26.000','3759','48','2005-06-02 16:09:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('391','2005-05-27 11:03:55.000','2193','197','2005-06-01 11:59:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('392','2005-05-27 11:14:42.000','263','359','2005-06-01 14:28:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('393','2005-05-27 11:18:25.000','145','251','2005-05-28 07:10:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('394','2005-05-27 11:26:11.000','1890','274','2005-06-03 16:44:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('395','2005-05-27 11:45:49.000','752','575','2005-05-31 13:42:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('396','2005-05-27 11:47:04.000','1020','112','2005-05-29 10:14:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('397','2005-05-27 12:29:02.000','4193','544','2005-05-28 17:36:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('398','2005-05-27 12:44:03.000','1686','422','2005-06-02 08:19:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('399','2005-05-27 12:48:38.000','553','204','2005-05-29 15:27:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('400','2005-05-27 12:51:44.000','258','249','2005-05-31 08:34:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('401','2005-05-27 12:57:55.000','2179','46','2005-05-29 17:55:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('402','2005-05-27 13:17:18.000','461','354','2005-05-30 08:53:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('403','2005-05-27 13:28:52.000','3983','424','2005-05-29 11:47:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('404','2005-05-27 13:31:51.000','1293','168','2005-05-30 16:58:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('405','2005-05-27 13:32:39.000','4090','272','2005-06-05 18:53:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('406','2005-05-27 13:46:46.000','2136','381','2005-05-30 12:43:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('407','2005-05-27 13:57:38.000','1077','44','2005-05-31 18:23:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('408','2005-05-27 13:57:39.000','1438','84','2005-05-28 11:57:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('409','2005-05-27 14:10:58.000','3652','220','2005-06-02 10:40:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('410','2005-05-27 14:11:22.000','4010','506','2005-06-02 20:06:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('411','2005-05-27 14:14:14.000','1434','388','2005-06-03 17:39:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('412','2005-05-27 14:17:23.000','1400','375','2005-05-29 15:07:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('413','2005-05-27 14:45:37.000','3516','307','2005-06-03 11:11:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('414','2005-05-27 14:48:20.000','1019','219','2005-05-31 14:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('415','2005-05-27 14:51:45.000','3698','304','2005-05-28 19:07:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('416','2005-05-27 15:02:10.000','2371','222','2005-05-29 10:34:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('417','2005-05-27 15:07:27.000','2253','475','2005-05-29 20:01:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('418','2005-05-27 15:13:17.000','3063','151','2005-06-04 12:05:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('419','2005-05-27 15:15:11.000','2514','77','2005-06-02 11:53:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('420','2005-05-27 15:19:38.000','619','93','2005-06-03 15:07:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('421','2005-05-27 15:30:13.000','2985','246','2005-06-04 13:19:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('422','2005-05-27 15:31:55.000','1152','150','2005-06-01 11:47:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('423','2005-05-27 15:32:57.000','1783','284','2005-06-02 19:03:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('424','2005-05-27 15:34:01.000','2815','35','2005-06-05 09:44:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('425','2005-05-27 15:51:30.000','1518','182','2005-06-03 16:52:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('426','2005-05-27 15:56:57.000','1103','522','2005-06-05 11:45:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('427','2005-05-27 16:10:04.000','1677','288','2005-06-05 13:22:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('428','2005-05-27 16:10:58.000','3349','161','2005-05-31 17:24:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('429','2005-05-27 16:21:26.000','129','498','2005-06-05 20:23:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('430','2005-05-27 16:22:10.000','1920','190','2005-06-05 13:10:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('431','2005-05-27 16:31:05.000','4507','334','2005-06-05 11:29:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('432','2005-05-27 16:40:29.000','1119','46','2005-05-29 16:20:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('433','2005-05-27 16:40:40.000','4364','574','2005-05-30 19:55:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('434','2005-05-27 16:54:27.000','3360','246','2005-06-04 22:26:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('435','2005-05-27 17:17:09.000','3328','3','2005-06-02 11:20:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('436','2005-05-27 17:21:04.000','4317','267','2005-05-30 21:26:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('437','2005-05-27 17:47:22.000','1800','525','2005-06-05 14:22:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('438','2005-05-27 17:52:34.000','4260','249','2005-06-05 22:23:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('439','2005-05-27 17:54:48.000','354','319','2005-06-02 23:01:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('440','2005-05-27 18:00:35.000','4452','314','2005-05-29 16:15:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('441','2005-05-27 18:11:05.000','1578','54','2005-05-30 22:45:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('442','2005-05-27 18:12:13.000','1457','403','2005-05-30 12:30:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('443','2005-05-27 18:35:20.000','2021','547','2005-06-04 18:58:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('444','2005-05-27 18:39:15.000','723','239','2005-06-01 15:56:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('445','2005-05-27 18:42:57.000','1757','293','2005-05-30 22:35:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('446','2005-05-27 18:48:41.000','1955','401','2005-06-03 16:42:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('447','2005-05-27 18:57:02.000','3890','133','2005-06-05 18:38:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('448','2005-05-27 19:03:08.000','2671','247','2005-06-03 20:28:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('449','2005-05-27 19:13:15.000','2469','172','2005-06-04 01:08:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('450','2005-05-27 19:18:54.000','1343','247','2005-06-05 23:52:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('451','2005-05-27 19:27:54.000','205','87','2005-05-29 01:07:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('452','2005-05-27 19:30:33.000','2993','127','2005-05-30 20:53:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('453','2005-05-27 19:31:16.000','4425','529','2005-05-29 23:06:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('454','2005-05-27 19:31:36.000','3499','575','2005-05-30 15:46:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('455','2005-05-27 19:43:29.000','3344','343','2005-06-04 23:40:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('456','2005-05-27 19:50:06.000','1699','92','2005-06-02 22:14:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('457','2005-05-27 19:52:29.000','2368','300','2005-06-02 17:17:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('458','2005-05-27 19:58:36.000','3350','565','2005-06-06 00:51:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('459','2005-05-27 20:00:04.000','597','468','2005-05-29 22:47:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('460','2005-05-27 20:02:03.000','4238','240','2005-05-28 16:14:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('461','2005-05-27 20:08:55.000','2077','447','2005-06-01 14:32:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('462','2005-05-27 20:10:36.000','2314','364','2005-06-03 21:12:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('463','2005-05-27 20:11:47.000','826','21','2005-06-04 21:18:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('464','2005-05-27 20:42:44.000','1313','193','2005-05-30 00:49:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('465','2005-05-27 20:44:36.000','20','261','2005-06-02 02:43:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('466','2005-05-27 20:57:07.000','1786','442','2005-05-29 15:52:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('467','2005-05-27 21:10:03.000','339','557','2005-06-01 16:08:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('468','2005-05-27 21:13:10.000','2656','101','2005-06-04 15:26:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('469','2005-05-27 21:14:26.000','4463','154','2005-06-05 21:51:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('470','2005-05-27 21:17:08.000','1613','504','2005-06-04 17:47:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('471','2005-05-27 21:32:42.000','2872','209','2005-05-31 00:39:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('472','2005-05-27 21:36:15.000','1338','528','2005-05-29 21:07:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('473','2005-05-27 21:36:34.000','802','105','2005-06-05 17:02:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('474','2005-05-27 22:11:56.000','1474','274','2005-05-31 19:07:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('475','2005-05-27 22:16:26.000','2520','159','2005-05-28 19:58:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('476','2005-05-27 22:31:36.000','2451','543','2005-06-03 19:12:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('477','2005-05-27 22:33:33.000','2437','161','2005-06-02 18:35:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('478','2005-05-27 22:38:20.000','424','557','2005-05-31 18:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('479','2005-05-27 22:39:10.000','2060','231','2005-06-05 22:46:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('480','2005-05-27 22:47:39.000','2108','220','2005-06-04 21:17:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('481','2005-05-27 22:49:27.000','72','445','2005-05-30 17:46:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('482','2005-05-27 22:53:02.000','4178','546','2005-06-01 22:53:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('483','2005-05-27 23:00:25.000','1510','32','2005-05-28 21:30:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('484','2005-05-27 23:26:45.000','3115','491','2005-05-29 21:16:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('485','2005-05-27 23:40:52.000','2392','105','2005-05-28 22:40:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('486','2005-05-27 23:51:12.000','1822','398','2005-05-28 20:26:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('487','2005-05-28 00:00:30.000','3774','569','2005-05-28 19:18:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('488','2005-05-28 00:07:50.000','393','168','2005-06-03 22:30:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('489','2005-05-28 00:09:12.000','1940','476','2005-05-31 04:44:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('490','2005-05-28 00:09:56.000','3524','95','2005-05-30 22:32:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('491','2005-05-28 00:13:35.000','1326','196','2005-05-29 00:11:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('492','2005-05-28 00:24:58.000','1999','228','2005-05-28 22:34:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('493','2005-05-28 00:34:11.000','184','501','2005-05-30 18:40:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('494','2005-05-28 00:39:31.000','1850','64','2005-06-02 19:35:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('495','2005-05-28 00:40:48.000','1007','526','2005-05-29 06:07:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('496','2005-05-28 00:43:41.000','1785','56','2005-06-04 03:56:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('497','2005-05-28 00:54:39.000','2636','20','2005-06-03 20:47:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('498','2005-05-28 01:01:21.000','458','287','2005-05-30 21:20:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('499','2005-05-28 01:05:07.000','2381','199','2005-06-05 19:54:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('500','2005-05-28 01:05:25.000','4500','145','2005-05-31 20:04:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('501','2005-05-28 01:09:36.000','601','162','2005-05-30 06:14:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('502','2005-05-28 01:34:43.000','3131','179','2005-05-31 01:02:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('503','2005-05-28 01:35:25.000','3005','288','2005-05-28 22:12:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('504','2005-05-28 02:05:34.000','2086','170','2005-05-30 23:03:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('505','2005-05-28 02:06:37.000','71','111','2005-05-29 06:57:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('506','2005-05-28 02:09:19.000','667','469','2005-06-05 20:34:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('507','2005-05-28 02:31:19.000','3621','421','2005-06-02 05:07:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('508','2005-05-28 02:40:50.000','4179','434','2005-06-05 03:05:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('509','2005-05-28 02:51:12.000','3416','147','2005-05-31 06:27:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('510','2005-05-28 02:52:14.000','4338','113','2005-05-30 21:20:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('511','2005-05-28 03:04:04.000','3827','296','2005-06-03 04:58:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('512','2005-05-28 03:07:50.000','2176','231','2005-06-05 02:12:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('513','2005-05-28 03:08:10.000','225','489','2005-05-29 07:22:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('514','2005-05-28 03:09:28.000','1697','597','2005-06-05 00:49:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('515','2005-05-28 03:10:10.000','3369','110','2005-06-04 02:18:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('516','2005-05-28 03:11:47.000','4357','400','2005-06-04 02:19:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('517','2005-05-28 03:17:57.000','234','403','2005-05-29 06:33:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('518','2005-05-28 03:18:02.000','4087','480','2005-05-30 05:32:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('519','2005-05-28 03:22:33.000','3564','245','2005-06-03 05:06:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('520','2005-05-28 03:27:37.000','3845','161','2005-06-04 05:47:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('521','2005-05-28 03:32:22.000','2397','374','2005-05-28 22:37:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('522','2005-05-28 03:33:20.000','3195','382','2005-05-31 04:23:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('523','2005-05-28 03:53:26.000','1905','138','2005-05-31 05:58:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('524','2005-05-28 03:57:28.000','1962','223','2005-05-31 05:20:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('525','2005-05-28 04:25:33.000','1817','14','2005-06-06 04:18:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('526','2005-05-28 04:27:37.000','1387','408','2005-05-30 07:52:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('527','2005-05-28 04:28:38.000','266','169','2005-06-02 08:19:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('528','2005-05-28 04:30:05.000','1655','359','2005-06-03 10:01:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('529','2005-05-28 04:34:17.000','2624','469','2005-05-30 00:35:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('530','2005-05-28 05:13:01.000','3332','312','2005-06-01 10:21:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('531','2005-05-28 05:23:38.000','1113','589','2005-05-29 08:00:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('532','2005-05-28 05:36:58.000','2793','120','2005-06-02 01:50:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('533','2005-05-28 06:14:46.000','4306','528','2005-06-01 06:26:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('534','2005-05-28 06:15:25.000','992','184','2005-06-06 07:51:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('535','2005-05-28 06:16:32.000','4209','307','2005-05-31 02:48:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('536','2005-05-28 06:17:33.000','2962','514','2005-06-03 10:02:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('537','2005-05-28 06:20:55.000','3095','315','2005-06-05 11:48:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('538','2005-05-28 06:21:05.000','2262','110','2005-06-02 01:22:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('539','2005-05-28 06:26:16.000','3427','161','2005-05-30 02:02:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('540','2005-05-28 06:40:25.000','3321','119','2005-06-06 00:47:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('541','2005-05-28 06:41:58.000','1662','535','2005-06-02 09:12:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('542','2005-05-28 06:42:13.000','4444','261','2005-06-03 09:05:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('543','2005-05-28 06:43:34.000','530','493','2005-06-06 07:16:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('544','2005-05-28 07:03:00.000','2964','311','2005-06-06 06:23:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('545','2005-05-28 07:10:20.000','1086','54','2005-06-04 01:47:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('546','2005-05-28 07:16:25.000','487','20','2005-06-01 08:36:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('547','2005-05-28 07:24:28.000','2065','506','2005-06-06 01:31:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('548','2005-05-28 07:34:56.000','3704','450','2005-06-05 03:14:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('549','2005-05-28 07:35:37.000','1818','159','2005-06-02 09:08:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('550','2005-05-28 07:39:16.000','3632','432','2005-06-06 12:20:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('551','2005-05-28 07:44:18.000','3119','315','2005-06-02 12:55:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('552','2005-05-28 07:53:38.000','23','106','2005-06-04 12:45:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('553','2005-05-28 08:14:44.000','1349','176','2005-06-02 03:01:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('554','2005-05-28 08:23:16.000','1951','376','2005-05-31 03:29:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('555','2005-05-28 08:31:14.000','4397','55','2005-05-30 07:34:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('556','2005-05-28 08:31:36.000','1814','22','2005-06-06 07:29:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('557','2005-05-28 08:36:22.000','158','444','2005-06-03 10:42:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('558','2005-05-28 08:38:43.000','4163','442','2005-06-06 13:52:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('559','2005-05-28 08:39:02.000','1227','572','2005-06-05 08:38:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('560','2005-05-28 08:53:02.000','644','463','2005-06-04 12:27:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('561','2005-05-28 08:54:06.000','928','77','2005-06-05 05:54:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('562','2005-05-28 09:01:21.000','3390','102','2005-06-02 05:26:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('563','2005-05-28 09:10:49.000','53','324','2005-06-06 11:32:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('564','2005-05-28 09:12:09.000','2973','282','2005-05-29 05:07:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('565','2005-05-28 09:26:31.000','1494','288','2005-06-01 07:28:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('566','2005-05-28 09:51:39.000','4330','253','2005-06-05 09:35:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('567','2005-05-28 09:56:20.000','3308','184','2005-06-01 06:41:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('568','2005-05-28 09:57:36.000','2232','155','2005-05-31 15:44:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('569','2005-05-28 10:12:41.000','4534','56','2005-06-03 10:08:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('570','2005-05-28 10:15:04.000','1122','21','2005-05-30 08:32:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('571','2005-05-28 10:17:41.000','4250','516','2005-06-05 07:56:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('572','2005-05-28 10:30:13.000','1899','337','2005-06-02 05:04:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('573','2005-05-28 10:35:23.000','4020','1','2005-06-03 06:32:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('574','2005-05-28 10:44:28.000','3883','76','2005-06-04 11:42:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('575','2005-05-28 10:56:09.000','4451','142','2005-06-05 15:39:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('576','2005-05-28 10:56:10.000','1866','588','2005-06-04 13:15:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('577','2005-05-28 11:09:14.000','375','6','2005-06-01 13:27:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('578','2005-05-28 11:15:48.000','2938','173','2005-06-02 09:59:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('579','2005-05-28 11:19:23.000','3481','181','2005-06-02 13:51:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('580','2005-05-28 11:19:53.000','3515','17','2005-06-01 10:44:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('581','2005-05-28 11:20:29.000','1380','186','2005-06-04 12:37:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('582','2005-05-28 11:33:46.000','4579','198','2005-05-29 08:33:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('583','2005-05-28 11:48:55.000','2679','386','2005-06-04 07:09:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('584','2005-05-28 11:49:00.000','1833','69','2005-06-01 11:54:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('585','2005-05-28 11:50:45.000','3544','490','2005-06-03 15:35:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('586','2005-05-28 12:03:00.000','898','77','2005-05-29 13:16:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('587','2005-05-28 12:05:33.000','1413','64','2005-05-30 13:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('588','2005-05-28 12:08:37.000','95','89','2005-05-29 16:25:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('589','2005-05-28 12:27:50.000','4231','308','2005-06-03 07:15:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('590','2005-05-28 13:06:50.000','473','462','2005-06-02 09:18:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('591','2005-05-28 13:11:04.000','377','19','2005-05-29 17:20:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('592','2005-05-28 13:21:08.000','638','244','2005-05-29 16:55:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('593','2005-05-28 13:33:23.000','1810','16','2005-05-30 17:10:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('594','2005-05-28 13:41:56.000','2766','538','2005-05-30 12:00:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('595','2005-05-28 13:59:54.000','595','294','2005-06-05 15:16:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('596','2005-05-28 14:00:03.000','821','589','2005-05-29 17:10:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('597','2005-05-28 14:01:02.000','4469','249','2005-06-06 19:06:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('598','2005-05-28 14:04:50.000','599','159','2005-06-03 18:00:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('599','2005-05-28 14:05:57.000','4136','393','2005-06-01 16:41:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('600','2005-05-28 14:08:19.000','1567','332','2005-06-03 11:57:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('601','2005-05-28 14:08:22.000','3225','429','2005-06-04 10:50:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('602','2005-05-28 14:15:54.000','1300','590','2005-06-05 15:16:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('603','2005-05-28 14:27:51.000','3248','537','2005-05-29 13:13:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('604','2005-05-28 14:37:07.000','1585','426','2005-06-03 11:03:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('605','2005-05-28 14:39:10.000','4232','501','2005-06-01 09:28:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('606','2005-05-28 14:48:39.000','3509','299','2005-06-04 09:44:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('607','2005-05-28 15:02:41.000','2561','554','2005-05-30 12:54:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('608','2005-05-28 15:03:44.000','4254','494','2005-06-04 17:14:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('609','2005-05-28 15:04:02.000','2944','150','2005-06-05 14:47:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('610','2005-05-28 15:15:25.000','3642','500','2005-06-02 12:30:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('611','2005-05-28 15:18:18.000','1230','580','2005-05-31 20:15:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('612','2005-05-28 15:24:54.000','2180','161','2005-05-30 14:22:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('613','2005-05-28 15:27:22.000','270','595','2005-06-02 20:01:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('614','2005-05-28 15:33:28.000','280','307','2005-06-04 12:27:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('615','2005-05-28 15:35:52.000','3397','533','2005-06-03 17:35:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('616','2005-05-28 15:45:39.000','989','471','2005-06-02 09:55:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('617','2005-05-28 15:49:14.000','4142','372','2005-05-31 14:29:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('618','2005-05-28 15:50:07.000','4445','248','2005-06-01 19:45:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('619','2005-05-28 15:52:26.000','2482','407','2005-06-06 17:55:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('620','2005-05-28 15:54:45.000','2444','321','2005-06-04 20:26:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('621','2005-05-28 15:58:12.000','1144','239','2005-05-30 21:54:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('622','2005-05-28 15:58:22.000','2363','109','2005-06-04 10:13:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('623','2005-05-28 16:01:28.000','1222','495','2005-05-30 11:19:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('624','2005-05-28 16:13:22.000','3660','569','2005-06-06 20:35:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('625','2005-05-28 16:35:46.000','2889','596','2005-06-01 14:19:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('626','2005-05-28 16:58:09.000','452','584','2005-06-01 14:02:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('627','2005-05-28 17:04:43.000','425','241','2005-06-04 19:58:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('628','2005-05-28 17:05:46.000','2513','173','2005-06-06 16:29:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('629','2005-05-28 17:19:15.000','1527','94','2005-06-02 20:01:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('630','2005-05-28 17:24:51.000','1254','417','2005-06-05 20:05:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('631','2005-05-28 17:36:32.000','2465','503','2005-06-03 14:56:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('632','2005-05-28 17:37:50.000','1287','442','2005-06-03 16:04:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('633','2005-05-28 17:37:59.000','58','360','2005-06-03 22:49:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('634','2005-05-28 17:40:35.000','2630','428','2005-06-05 16:18:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('635','2005-05-28 17:46:57.000','1648','42','2005-06-06 18:24:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('636','2005-05-28 17:47:58.000','4213','239','2005-06-04 16:32:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('637','2005-05-28 18:14:29.000','1581','250','2005-05-29 23:48:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('638','2005-05-28 18:24:43.000','2685','372','2005-06-02 19:03:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('639','2005-05-28 18:25:02.000','4204','198','2005-05-29 18:22:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('640','2005-05-28 18:43:26.000','495','465','2005-05-30 13:39:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('641','2005-05-28 18:45:47.000','3548','396','2005-06-04 15:24:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('642','2005-05-28 18:49:12.000','140','157','2005-06-01 20:50:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('643','2005-05-28 18:52:11.000','3105','240','2005-05-31 15:15:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('644','2005-05-28 18:59:12.000','4304','316','2005-06-04 18:06:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('645','2005-05-28 19:14:09.000','3128','505','2005-06-05 14:01:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('646','2005-05-28 19:16:14.000','1922','185','2005-05-31 16:50:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('647','2005-05-28 19:22:52.000','3435','569','2005-06-01 00:10:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('648','2005-05-28 19:25:54.000','3476','253','2005-06-03 15:57:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('649','2005-05-28 19:35:45.000','1781','197','2005-06-05 16:00:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('650','2005-05-28 19:45:40.000','4384','281','2005-05-29 21:02:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('651','2005-05-28 19:46:50.000','739','266','2005-05-30 16:29:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('652','2005-05-28 20:08:47.000','1201','43','2005-05-29 14:57:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('653','2005-05-28 20:12:20.000','126','327','2005-06-04 14:44:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('654','2005-05-28 20:15:30.000','2312','23','2005-05-30 22:02:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('655','2005-05-28 20:16:20.000','331','287','2005-05-31 16:46:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('656','2005-05-28 20:18:24.000','2846','437','2005-05-30 16:19:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('657','2005-05-28 20:23:09.000','848','65','2005-06-01 02:11:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('658','2005-05-28 20:23:23.000','3226','103','2005-06-06 19:31:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('659','2005-05-28 20:27:53.000','1382','207','2005-05-31 01:36:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('660','2005-05-28 20:53:31.000','1414','578','2005-05-30 15:26:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('661','2005-05-28 21:01:25.000','2247','51','2005-06-02 01:22:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('662','2005-05-28 21:09:31.000','2968','166','2005-06-01 19:00:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('663','2005-05-28 21:23:02.000','3997','176','2005-06-02 17:39:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('664','2005-05-28 21:31:08.000','87','523','2005-06-02 20:56:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('665','2005-05-28 21:38:39.000','1012','415','2005-05-29 21:37:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('666','2005-05-28 21:48:51.000','3075','437','2005-06-05 16:45:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('667','2005-05-28 21:49:02.000','797','596','2005-05-31 03:07:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('668','2005-05-28 21:54:45.000','3528','484','2005-05-29 22:32:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('669','2005-05-28 22:03:25.000','3677','313','2005-06-03 03:39:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('670','2005-05-28 22:04:03.000','227','201','2005-06-06 22:43:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('671','2005-05-28 22:04:30.000','1027','14','2005-06-03 01:21:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('672','2005-05-28 22:05:29.000','697','306','2005-06-06 02:10:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('673','2005-05-28 22:07:30.000','1769','468','2005-06-01 23:42:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('674','2005-05-28 22:11:35.000','1150','87','2005-06-01 23:58:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('675','2005-05-28 22:22:44.000','1273','338','2005-06-01 02:57:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('676','2005-05-28 22:27:51.000','2329','490','2005-05-29 20:36:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('677','2005-05-28 23:00:08.000','4558','194','2005-06-05 19:11:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('678','2005-05-28 23:15:48.000','3741','269','2005-06-03 04:43:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('679','2005-05-28 23:24:57.000','907','526','2005-06-06 21:59:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('680','2005-05-28 23:27:26.000','4147','482','2005-06-02 02:28:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('681','2005-05-28 23:39:44.000','3346','531','2005-06-01 01:42:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('682','2005-05-28 23:53:18.000','3160','148','2005-05-29 19:14:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('683','2005-05-29 00:09:48.000','2038','197','2005-06-02 04:27:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('684','2005-05-29 00:13:15.000','3242','461','2005-06-04 21:26:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('685','2005-05-29 00:17:51.000','1385','172','2005-06-05 05:32:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('686','2005-05-29 00:27:10.000','2441','411','2005-05-30 02:29:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('687','2005-05-29 00:32:09.000','1731','250','2005-05-31 23:53:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('688','2005-05-29 00:45:24.000','4135','162','2005-06-02 01:30:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('689','2005-05-29 00:46:53.000','742','571','2005-06-03 23:48:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('690','2005-05-29 00:54:53.000','2646','85','2005-06-06 00:45:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('691','2005-05-29 01:01:26.000','4034','433','2005-06-07 06:21:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('692','2005-05-29 01:32:10.000','800','18','2005-06-02 03:54:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('693','2005-05-29 01:42:31.000','635','190','2005-06-03 02:29:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('694','2005-05-29 01:49:43.000','592','399','2005-06-05 06:52:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('695','2005-05-29 01:50:53.000','4276','528','2005-06-03 02:28:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('696','2005-05-29 01:59:10.000','2076','19','2005-06-01 02:45:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('697','2005-05-29 02:04:04.000','3949','387','2005-06-04 00:47:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('698','2005-05-29 02:10:52.000','1412','109','2005-06-01 21:52:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('699','2005-05-29 02:11:44.000','130','246','2005-06-04 20:23:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('700','2005-05-29 02:18:54.000','500','117','2005-05-30 05:54:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('701','2005-05-29 02:26:27.000','372','112','2005-06-03 04:59:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('702','2005-05-29 02:27:30.000','2556','475','2005-05-30 01:52:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('703','2005-05-29 02:29:36.000','1123','269','2005-06-03 04:54:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('704','2005-05-29 02:44:43.000','2628','330','2005-06-06 01:51:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('705','2005-05-29 02:48:52.000','2809','257','2005-05-30 06:21:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('706','2005-05-29 03:05:49.000','2278','60','2005-06-04 22:48:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('707','2005-05-29 03:18:19.000','819','252','2005-05-30 02:45:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('708','2005-05-29 03:23:47.000','3133','127','2005-05-31 21:27:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('709','2005-05-29 03:48:01.000','2459','479','2005-06-06 05:21:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('710','2005-05-29 03:48:36.000','194','518','2005-06-03 05:03:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('711','2005-05-29 03:49:03.000','4581','215','2005-05-31 08:29:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('712','2005-05-29 04:02:24.000','4191','313','2005-05-30 03:09:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('713','2005-05-29 04:10:17.000','3664','507','2005-06-07 07:13:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('714','2005-05-29 04:15:21.000','2010','452','2005-06-01 23:05:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('715','2005-05-29 04:22:41.000','2030','545','2005-06-05 09:28:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('716','2005-05-29 04:35:29.000','85','36','2005-06-01 07:42:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('717','2005-05-29 04:37:44.000','1383','412','2005-05-30 05:48:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('718','2005-05-29 04:52:23.000','1736','498','2005-06-02 02:27:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('719','2005-05-29 05:16:05.000','267','245','2005-06-01 07:53:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('720','2005-05-29 05:17:30.000','3687','480','2005-06-06 02:47:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('721','2005-05-29 05:28:47.000','1116','44','2005-05-31 11:24:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('722','2005-05-29 05:30:31.000','4540','259','2005-06-06 04:51:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('723','2005-05-29 05:34:44.000','3407','309','2005-05-30 05:50:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('724','2005-05-29 05:53:23.000','3770','416','2005-06-05 04:01:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('725','2005-05-29 06:03:41.000','4088','245','2005-06-03 08:52:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('726','2005-05-29 06:05:29.000','933','452','2005-06-05 04:40:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('727','2005-05-29 06:08:15.000','1629','484','2005-05-30 07:16:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('728','2005-05-29 06:12:38.000','242','551','2005-06-03 07:41:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('729','2005-05-29 06:35:13.000','1688','323','2005-06-04 03:23:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('730','2005-05-29 07:00:59.000','3473','197','2005-06-06 01:17:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('731','2005-05-29 07:25:16.000','4124','5','2005-05-30 05:21:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('732','2005-05-29 07:32:51.000','2530','447','2005-05-30 10:08:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('733','2005-05-29 07:35:21.000','2951','363','2005-06-05 09:14:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('734','2005-05-29 07:38:52.000','3084','538','2005-06-03 10:17:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('735','2005-05-29 08:08:13.000','3421','454','2005-06-07 13:35:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('736','2005-05-29 08:10:07.000','3689','276','2005-06-05 10:21:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('737','2005-05-29 08:11:31.000','769','589','2005-06-04 11:18:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('738','2005-05-29 08:20:08.000','2284','256','2005-06-06 08:59:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('739','2005-05-29 08:28:18.000','1183','84','2005-06-06 09:21:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('740','2005-05-29 08:30:36.000','600','89','2005-06-04 12:47:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('741','2005-05-29 08:35:49.000','3189','495','2005-06-04 11:55:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('742','2005-05-29 08:36:30.000','273','483','2005-06-05 11:30:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('743','2005-05-29 08:39:02.000','2528','548','2005-06-06 08:42:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('744','2005-05-29 09:13:08.000','3722','420','2005-06-01 07:05:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('745','2005-05-29 09:22:57.000','581','152','2005-06-01 09:10:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('746','2005-05-29 09:25:10.000','4272','130','2005-06-02 04:20:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('747','2005-05-29 09:26:34.000','1993','291','2005-06-05 07:28:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('748','2005-05-29 09:27:00.000','2803','7','2005-06-03 04:25:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('749','2005-05-29 09:33:33.000','1146','375','2005-05-31 11:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('750','2005-05-29 09:41:40.000','730','269','2005-05-30 13:31:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('751','2005-05-29 09:55:43.000','2711','53','2005-06-02 04:54:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('752','2005-05-29 10:14:15.000','1720','126','2005-06-04 06:30:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('753','2005-05-29 10:16:42.000','1021','135','2005-06-05 08:52:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('754','2005-05-29 10:18:59.000','734','281','2005-06-04 05:03:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('755','2005-05-29 10:26:29.000','3090','576','2005-06-01 10:25:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('756','2005-05-29 10:28:45.000','3152','201','2005-06-04 12:50:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('757','2005-05-29 10:29:47.000','1067','435','2005-06-07 15:27:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('758','2005-05-29 10:31:56.000','1191','563','2005-06-01 14:53:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('759','2005-05-29 10:57:57.000','2367','179','2005-06-07 16:23:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('760','2005-05-29 11:07:25.000','3250','77','2005-06-02 14:16:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('761','2005-05-29 11:09:01.000','2342','58','2005-06-03 16:18:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('762','2005-05-29 11:15:51.000','3683','146','2005-06-06 07:48:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('763','2005-05-29 11:32:15.000','2022','50','2005-05-31 17:31:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('764','2005-05-29 11:37:35.000','1069','149','2005-05-31 16:47:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('765','2005-05-29 11:38:34.000','515','69','2005-06-02 17:04:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('766','2005-05-29 11:47:02.000','2154','383','2005-06-06 07:14:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('767','2005-05-29 12:20:19.000','687','67','2005-06-02 14:15:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('768','2005-05-29 12:30:46.000','2895','566','2005-06-07 09:00:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('769','2005-05-29 12:51:44.000','1523','575','2005-06-01 17:43:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('770','2005-05-29 12:56:50.000','2491','405','2005-06-07 15:54:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('771','2005-05-29 12:59:14.000','353','476','2005-06-01 16:05:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('772','2005-05-29 13:08:06.000','3319','556','2005-06-06 08:19:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('773','2005-05-29 13:18:05.000','245','563','2005-06-07 17:22:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('774','2005-05-29 13:19:43.000','1188','575','2005-06-01 18:51:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('775','2005-05-29 13:23:26.000','1197','124','2005-05-30 07:53:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('776','2005-05-29 13:35:35.000','4339','113','2005-06-03 17:33:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('777','2005-05-29 14:07:58.000','451','360','2005-06-03 08:41:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('778','2005-05-29 14:09:53.000','1816','535','2005-06-05 20:05:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('779','2005-05-29 14:17:17.000','533','105','2005-06-06 16:46:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('780','2005-05-29 14:18:32.000','1919','300','2005-06-06 20:14:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('781','2005-05-29 14:23:58.000','88','313','2005-05-30 17:44:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('782','2005-05-29 14:38:57.000','2255','596','2005-06-02 13:18:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('783','2005-05-29 14:41:18.000','3046','53','2005-06-06 10:39:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('784','2005-05-29 14:44:22.000','2936','352','2005-06-01 17:28:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('785','2005-05-29 15:08:41.000','39','72','2005-05-30 15:51:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('786','2005-05-29 15:17:28.000','2637','439','2005-06-07 10:07:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('787','2005-05-29 16:03:03.000','3919','27','2005-06-07 11:07:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('788','2005-05-29 16:13:55.000','763','562','2005-05-31 16:40:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('789','2005-05-29 16:17:07.000','708','553','2005-06-06 18:15:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('790','2005-05-29 16:19:29.000','2858','593','2005-06-02 17:22:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('791','2005-05-29 16:30:42.000','1554','284','2005-06-01 19:11:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('792','2005-05-29 16:32:10.000','2841','261','2005-05-31 18:01:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('793','2005-05-29 16:44:08.000','379','528','2005-06-06 19:21:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('794','2005-05-29 16:44:11.000','1995','50','2005-06-05 16:11:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('795','2005-05-29 16:57:39.000','609','551','2005-06-01 11:33:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('796','2005-05-29 16:59:44.000','2697','26','2005-06-03 16:22:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('797','2005-05-29 17:12:17.000','1446','244','2005-06-03 16:06:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('798','2005-05-29 17:23:43.000','1102','134','2005-06-01 13:06:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('799','2005-05-29 17:24:48.000','1713','429','2005-06-05 12:25:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('800','2005-05-29 17:28:12.000','441','472','2005-05-30 14:59:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('801','2005-05-29 17:35:50.000','1642','402','2005-06-04 17:05:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('802','2005-05-29 17:38:59.000','785','350','2005-05-31 22:42:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('803','2005-05-29 17:52:30.000','1602','32','2005-05-30 14:35:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('804','2005-05-29 18:10:24.000','3909','171','2005-06-06 22:53:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('805','2005-05-29 18:18:18.000','3132','232','2005-06-07 15:11:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('806','2005-05-29 18:31:30.000','2386','435','2005-05-31 00:18:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('807','2005-05-29 18:50:50.000','2195','235','2005-06-03 18:36:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('808','2005-05-29 19:08:20.000','1928','104','2005-06-06 20:32:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('809','2005-05-29 19:10:20.000','2114','222','2005-06-05 19:05:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('810','2005-05-29 19:12:04.000','2533','346','2005-06-04 21:12:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('811','2005-05-29 19:30:42.000','4419','401','2005-06-02 16:19:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('812','2005-05-29 20:00:30.000','1099','225','2005-05-30 19:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('813','2005-05-29 20:14:34.000','4554','344','2005-06-05 20:56:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('814','2005-05-29 20:16:12.000','1572','134','2005-06-07 17:47:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('815','2005-05-29 20:24:28.000','3757','14','2005-06-03 15:32:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('816','2005-05-29 20:26:39.000','630','474','2005-06-06 22:31:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('817','2005-05-29 20:39:14.000','186','554','2005-05-31 18:24:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('818','2005-05-29 20:47:53.000','4106','321','2005-06-02 23:18:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('819','2005-05-29 21:00:32.000','623','511','2005-06-02 15:15:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('820','2005-05-29 21:07:22.000','2584','22','2005-06-07 00:22:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('821','2005-05-29 21:31:12.000','3380','348','2005-06-04 22:49:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('822','2005-05-29 21:36:00.000','2634','480','2005-06-07 17:24:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('823','2005-05-29 21:39:37.000','3249','441','2005-05-30 22:06:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('824','2005-05-29 21:45:32.000','3518','357','2005-05-31 19:01:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('825','2005-05-29 21:49:41.000','712','371','2005-06-04 20:27:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('826','2005-05-29 21:56:15.000','2263','207','2005-06-08 03:18:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('827','2005-05-29 21:58:43.000','62','573','2005-06-06 00:54:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('828','2005-05-29 22:14:55.000','2468','217','2005-05-30 17:22:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('829','2005-05-29 22:16:42.000','1684','371','2005-06-06 01:38:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('830','2005-05-29 22:43:55.000','3464','3','2005-06-01 17:43:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('831','2005-05-29 22:50:25.000','3912','509','2005-06-06 02:27:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('832','2005-05-29 22:51:20.000','1381','159','2005-06-07 17:37:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('833','2005-05-29 23:21:56.000','2898','417','2005-06-02 18:40:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('834','2005-05-29 23:24:30.000','3628','84','2005-05-30 22:00:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('835','2005-05-29 23:37:00.000','299','381','2005-06-02 23:38:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('836','2005-05-29 23:56:42.000','3140','368','2005-05-31 04:11:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('837','2005-05-30 00:02:08.000','977','172','2005-06-02 05:31:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('838','2005-05-30 00:27:57.000','2859','504','2005-06-06 22:19:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('839','2005-05-30 00:28:12.000','1886','337','2005-06-08 02:43:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('840','2005-05-30 00:28:41.000','4049','79','2005-05-31 20:39:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('841','2005-05-30 00:31:17.000','4318','387','2005-06-02 19:14:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('842','2005-05-30 00:32:04.000','2328','238','2005-06-01 02:21:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('843','2005-05-30 00:44:24.000','2214','313','2005-05-31 00:58:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('844','2005-05-30 00:58:20.000','536','429','2005-06-01 00:38:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('845','2005-05-30 01:17:25.000','2001','72','2005-06-07 02:00:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('846','2005-05-30 01:17:45.000','938','49','2005-06-01 00:56:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('847','2005-05-30 01:18:15.000','4387','380','2005-06-06 20:20:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('848','2005-05-30 01:19:53.000','1363','436','2005-06-05 23:40:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('849','2005-05-30 01:23:07.000','2424','449','2005-06-07 01:50:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('850','2005-05-30 01:35:12.000','2390','517','2005-05-31 01:51:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('851','2005-05-30 01:35:15.000','2780','530','2005-06-06 07:27:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('852','2005-05-30 01:36:57.000','1622','549','2005-06-01 22:44:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('853','2005-05-30 01:43:31.000','3693','122','2005-06-01 02:05:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('854','2005-05-30 01:56:11.000','921','369','2005-06-01 06:34:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('855','2005-05-30 02:00:28.000','2527','406','2005-06-03 20:16:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('856','2005-05-30 02:01:21.000','3969','53','2005-06-07 03:25:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('857','2005-05-30 02:01:23.000','2569','204','2005-06-02 06:07:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('858','2005-05-30 02:10:32.000','1258','358','2005-06-01 04:42:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('859','2005-05-30 02:36:20.000','3032','79','2005-06-02 07:49:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('860','2005-05-30 02:45:16.000','578','276','2005-06-08 07:28:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('861','2005-05-30 02:48:32.000','3711','502','2005-06-06 05:43:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('862','2005-05-30 03:09:11.000','1186','328','2005-06-03 21:27:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('863','2005-05-30 03:14:59.000','3999','379','2005-06-05 04:34:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('864','2005-05-30 03:27:17.000','2777','544','2005-06-06 08:28:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('865','2005-05-30 03:39:44.000','3183','154','2005-06-07 08:10:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('866','2005-05-30 03:43:54.000','2867','8','2005-06-08 04:28:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('867','2005-05-30 03:54:43.000','3389','99','2005-06-01 22:59:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('868','2005-05-30 04:19:55.000','3604','28','2005-05-31 02:28:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('869','2005-05-30 04:22:06.000','3399','296','2005-06-03 09:18:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('870','2005-05-30 04:25:47.000','2903','391','2005-06-06 04:32:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('871','2005-05-30 05:01:30.000','4573','303','2005-06-04 06:22:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('872','2005-05-30 05:03:04.000','3904','548','2005-06-06 10:35:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('873','2005-05-30 05:15:20.000','4568','375','2005-06-07 00:49:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('874','2005-05-30 05:36:21.000','363','52','2005-06-01 09:32:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('875','2005-05-30 05:38:24.000','1428','326','2005-06-06 00:34:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('876','2005-05-30 05:41:22.000','1471','339','2005-06-07 09:06:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('877','2005-05-30 05:48:59.000','886','9','2005-06-02 09:30:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('878','2005-05-30 05:49:13.000','4265','323','2005-06-07 04:35:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('879','2005-05-30 05:49:42.000','4021','482','2005-06-05 01:45:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('880','2005-05-30 06:12:33.000','1819','460','2005-06-02 04:35:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('881','2005-05-30 06:15:36.000','602','242','2005-06-02 10:21:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('882','2005-05-30 06:16:06.000','3841','477','2005-06-02 11:57:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('883','2005-05-30 06:21:05.000','2271','399','2005-06-07 04:50:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('884','2005-05-30 06:41:32.000','4079','17','2005-05-31 07:39:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('885','2005-05-30 06:54:28.000','646','62','2005-06-03 07:03:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('886','2005-05-30 06:54:51.000','4356','393','2005-06-01 06:04:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('887','2005-05-30 07:10:00.000','2727','16','2005-06-01 06:48:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('888','2005-05-30 07:13:14.000','387','128','2005-06-06 09:50:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('889','2005-05-30 07:14:53.000','1299','114','2005-05-31 07:56:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('890','2005-05-30 07:43:04.000','1464','349','2005-06-01 11:26:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('891','2005-05-30 07:43:12.000','2611','391','2005-06-08 09:21:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('892','2005-05-30 08:02:56.000','471','274','2005-06-05 12:51:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('893','2005-05-30 08:06:59.000','3260','502','2005-06-07 08:23:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('894','2005-05-30 08:31:31.000','1118','400','2005-06-07 12:39:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('895','2005-05-30 08:50:43.000','2744','192','2005-06-05 10:58:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('896','2005-05-30 09:03:52.000','2817','207','2005-06-05 07:37:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('897','2005-05-30 09:10:01.000','1334','432','2005-06-08 03:43:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('898','2005-05-30 09:26:19.000','3497','384','2005-06-01 10:45:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('899','2005-05-30 09:29:30.000','1096','156','2005-06-06 12:39:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('900','2005-05-30 09:38:41.000','3543','586','2005-06-07 11:54:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('901','2005-05-30 09:40:40.000','760','259','2005-06-02 10:32:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('902','2005-05-30 09:53:36.000','1514','561','2005-06-07 12:10:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('903','2005-05-30 10:11:29.000','2423','197','2005-06-03 09:33:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('904','2005-05-30 10:19:42.000','2466','44','2005-06-05 04:58:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('905','2005-05-30 10:25:00.000','4372','50','2005-06-06 06:23:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('906','2005-05-30 10:30:38.000','1862','549','2005-06-07 06:44:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('907','2005-05-30 10:37:27.000','3320','506','2005-06-02 09:51:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('908','2005-05-30 10:38:37.000','4427','85','2005-06-03 09:56:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('909','2005-05-30 10:43:38.000','3775','486','2005-06-08 12:07:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('910','2005-05-30 10:46:16.000','2601','374','2005-06-04 13:32:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('911','2005-05-30 10:50:22.000','1404','366','2005-06-07 12:26:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('912','2005-05-30 10:58:33.000','3200','390','2005-05-31 09:31:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('913','2005-05-30 11:04:58.000','3213','369','2005-06-07 13:22:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('914','2005-05-30 11:06:00.000','1393','596','2005-06-04 06:07:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('915','2005-05-30 11:20:27.000','1859','115','2005-06-02 11:55:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('916','2005-05-30 11:25:01.000','1290','6','2005-05-31 09:06:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('917','2005-05-30 11:27:06.000','3629','385','2005-06-02 08:31:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('918','2005-05-30 11:32:24.000','818','197','2005-05-31 07:55:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('919','2005-05-30 11:35:06.000','4052','374','2005-06-02 13:16:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('920','2005-05-30 11:44:01.000','3860','584','2005-06-02 08:19:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('921','2005-05-30 11:53:09.000','1827','508','2005-06-03 10:00:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('922','2005-05-30 11:55:55.000','2442','550','2005-06-08 10:12:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('923','2005-05-30 11:58:50.000','1884','37','2005-06-05 09:57:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('924','2005-05-30 12:10:59.000','3279','293','2005-06-04 17:28:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('925','2005-05-30 12:13:52.000','3203','137','2005-06-02 14:41:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('926','2005-05-30 12:15:54.000','4327','76','2005-06-01 08:53:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('927','2005-05-30 12:16:40.000','1158','167','2005-05-31 16:20:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('928','2005-05-30 12:27:14.000','246','79','2005-06-05 13:56:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('929','2005-05-30 12:32:39.000','4296','536','2005-06-06 12:17:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('930','2005-05-30 12:44:57.000','2835','141','2005-06-04 10:53:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('931','2005-05-30 12:53:01.000','3384','421','2005-05-31 14:28:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('932','2005-05-30 12:55:36.000','719','198','2005-05-31 10:30:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('933','2005-05-30 13:08:45.000','3672','66','2005-06-01 18:56:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('934','2005-05-30 13:24:46.000','3595','60','2005-06-08 16:44:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('935','2005-05-30 13:29:36.000','2421','256','2005-06-02 11:08:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('936','2005-05-30 13:52:49.000','901','469','2005-06-07 16:56:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('937','2005-05-30 14:47:31.000','1054','304','2005-06-05 09:53:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('938','2005-05-30 14:47:31.000','1521','46','2005-06-04 10:10:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('939','2005-05-30 14:49:34.000','1314','367','2005-06-01 19:00:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('940','2005-05-30 15:01:02.000','1278','534','2005-06-01 18:26:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('941','2005-05-30 15:02:25.000','3630','562','2005-06-01 17:19:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('942','2005-05-30 15:05:47.000','4279','473','2005-06-08 15:59:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('943','2005-05-30 15:20:19.000','3737','57','2005-06-06 18:53:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('944','2005-05-30 15:26:24.000','151','131','2005-06-07 18:09:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('945','2005-05-30 15:33:17.000','1441','357','2005-06-02 15:02:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('946','2005-05-30 15:35:08.000','1264','486','2005-06-08 11:38:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('947','2005-05-30 15:36:57.000','4478','62','2005-06-04 18:48:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('948','2005-05-30 15:44:27.000','585','245','2005-06-08 17:30:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('949','2005-05-30 15:50:39.000','2202','368','2005-06-03 14:25:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('950','2005-05-30 16:06:08.000','491','83','2005-06-01 11:43:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('951','2005-05-30 16:10:35.000','1395','59','2005-05-31 19:01:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('952','2005-05-30 16:28:07.000','4389','311','2005-06-02 16:12:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('953','2005-05-30 16:34:02.000','2194','210','2005-05-31 20:34:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('954','2005-05-30 16:57:29.000','1231','297','2005-06-08 13:30:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('955','2005-05-30 16:59:03.000','4140','301','2005-05-31 11:58:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('956','2005-05-30 17:30:28.000','647','296','2005-06-07 13:54:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('957','2005-05-30 17:53:29.000','4428','440','2005-06-03 15:31:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('958','2005-05-30 17:58:03.000','548','186','2005-06-01 19:17:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('959','2005-05-30 18:07:00.000','3108','535','2005-06-02 14:37:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('960','2005-05-30 18:13:23.000','1966','445','2005-06-04 00:12:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('961','2005-05-30 18:16:44.000','3293','588','2005-06-04 23:40:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('962','2005-05-30 18:45:17.000','4535','520','2005-06-05 22:47:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('963','2005-05-30 18:52:53.000','1921','225','2005-06-07 16:19:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('964','2005-05-30 18:53:21.000','657','287','2005-06-04 22:32:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('965','2005-05-30 19:00:14.000','3363','502','2005-05-31 17:10:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('966','2005-05-30 19:00:37.000','1294','496','2005-05-31 23:51:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('967','2005-05-30 19:12:06.000','1954','330','2005-06-09 00:02:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('968','2005-05-30 19:20:03.000','119','576','2005-05-31 18:17:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('969','2005-05-30 19:23:48.000','443','551','2005-05-31 21:14:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('970','2005-05-30 19:50:28.000','1520','307','2005-06-09 01:19:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('971','2005-05-30 20:10:52.000','2911','561','2005-06-06 20:47:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('972','2005-05-30 20:21:07.000','2','411','2005-06-06 00:36:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('973','2005-05-30 20:27:45.000','1914','473','2005-06-08 22:47:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('974','2005-05-30 20:28:42.000','2617','596','2005-06-08 23:45:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('975','2005-05-30 21:07:15.000','3109','7','2005-06-03 01:48:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('976','2005-05-30 21:11:19.000','2290','581','2005-06-06 02:16:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('977','2005-05-30 21:22:26.000','2029','394','2005-06-04 22:32:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('978','2005-05-30 21:30:52.000','407','154','2005-06-07 16:22:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('979','2005-05-30 21:37:11.000','3917','279','2005-06-08 00:24:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('980','2005-05-30 21:45:19.000','4169','273','2005-06-01 20:32:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('981','2005-05-30 21:52:42.000','2913','326','2005-06-01 03:15:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('982','2005-05-30 22:15:24.000','3560','524','2005-06-02 16:18:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('983','2005-05-30 22:15:51.000','63','115','2005-06-02 22:56:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('984','2005-05-30 22:17:17.000','2305','262','2005-06-01 20:15:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('985','2005-05-30 22:18:35.000','1573','564','2005-06-04 23:36:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('986','2005-05-30 22:22:52.000','4045','253','2005-06-01 02:24:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('987','2005-05-30 22:59:12.000','390','11','2005-06-07 20:56:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('988','2005-05-30 23:08:03.000','1364','12','2005-06-07 00:22:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('989','2005-05-30 23:11:51.000','4388','83','2005-06-03 20:36:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('990','2005-05-30 23:25:14.000','4171','311','2005-06-06 18:41:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('991','2005-05-30 23:29:22.000','2863','593','2005-06-07 23:16:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('992','2005-05-30 23:47:56.000','3572','123','2005-06-05 19:01:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('993','2005-05-30 23:54:19.000','2080','513','2005-06-04 21:27:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('994','2005-05-30 23:55:36.000','2798','472','2005-06-04 01:00:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('995','2005-05-31 00:06:02.000','17','150','2005-06-06 02:30:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('996','2005-05-31 00:06:20.000','2075','331','2005-05-31 21:29:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('997','2005-05-31 00:08:25.000','4243','216','2005-06-02 00:17:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('998','2005-05-31 00:16:57.000','3395','389','2005-06-01 22:41:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('999','2005-05-31 00:25:10.000','4433','413','2005-06-03 06:05:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1000','2005-05-31 00:25:56.000','1774','332','2005-06-08 19:42:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1001','2005-05-31 00:46:31.000','1498','64','2005-06-06 06:14:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1002','2005-05-31 00:47:56.000','709','397','2005-06-06 19:51:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1003','2005-05-31 00:48:20.000','133','161','2005-06-02 04:53:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1004','2005-05-31 00:48:36.000','1588','565','2005-06-01 20:56:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1005','2005-05-31 00:53:25.000','4006','551','2005-06-04 01:21:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1006','2005-05-31 00:57:08.000','3461','222','2005-06-02 22:35:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1007','2005-05-31 01:02:28.000','3185','24','2005-06-07 01:36:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1008','2005-05-31 01:18:56.000','914','599','2005-06-01 01:24:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1009','2005-05-31 01:47:35.000','2523','485','2005-06-03 20:26:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1010','2005-05-31 01:57:32.000','4038','49','2005-06-01 06:50:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1011','2005-05-31 02:05:39.000','118','164','2005-06-04 21:27:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1012','2005-05-31 02:18:05.000','688','291','2005-06-03 06:47:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1013','2005-05-31 02:37:00.000','4522','384','2005-06-02 06:39:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1014','2005-05-31 02:39:16.000','766','280','2005-06-01 06:03:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1015','2005-05-31 02:44:57.000','3702','526','2005-06-07 23:01:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1016','2005-05-31 02:49:43.000','3423','204','2005-06-04 03:48:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1017','2005-05-31 02:53:36.000','1242','16','2005-06-03 05:04:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1018','2005-05-31 02:53:42.000','1930','594','2005-06-03 00:47:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1019','2005-05-31 03:05:07.000','3975','279','2005-06-03 08:34:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1020','2005-05-31 03:06:08.000','3402','138','2005-06-02 08:57:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1021','2005-05-31 03:16:15.000','2724','541','2005-06-08 06:43:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1022','2005-05-31 03:16:45.000','842','239','2005-06-08 09:04:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1023','2005-05-31 03:26:50.000','2483','227','2005-06-05 08:19:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1024','2005-05-31 03:30:19.000','2310','457','2005-06-09 05:52:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1025','2005-05-31 03:41:37.000','1618','93','2005-06-08 07:05:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1026','2005-05-31 03:45:26.000','632','107','2005-06-06 22:30:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1027','2005-05-31 03:46:19.000','2718','55','2005-06-09 03:50:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1028','2005-05-31 03:48:05.000','4479','51','2005-06-01 03:51:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1029','2005-05-31 03:52:02.000','2082','50','2005-06-06 08:10:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1030','2005-05-31 04:06:47.000','3948','267','2005-06-02 02:59:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1031','2005-05-31 04:23:01.000','917','416','2005-06-06 08:35:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1032','2005-05-31 04:28:43.000','2937','236','2005-06-02 02:00:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1033','2005-05-31 04:50:07.000','14','25','2005-06-02 01:53:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1034','2005-05-31 04:53:40.000','4117','293','2005-06-09 08:25:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1035','2005-05-31 05:01:09.000','949','362','2005-06-02 03:59:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1036','2005-05-31 05:21:10.000','2164','438','2005-06-04 04:19:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1037','2005-05-31 05:22:25.000','810','569','2005-06-09 04:52:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1038','2005-05-31 05:23:47.000','1253','385','2005-06-02 03:57:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1039','2005-05-31 05:32:29.000','2479','124','2005-06-01 06:04:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1040','2005-05-31 05:35:16.000','2546','270','2005-06-09 04:14:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1041','2005-05-31 05:46:23.000','4432','272','2005-06-06 09:50:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1042','2005-05-31 05:53:00.000','3155','506','2005-06-01 05:24:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1043','2005-05-31 06:11:40.000','2322','412','2005-06-08 09:15:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1044','2005-05-31 06:24:44.000','2574','70','2005-06-03 04:51:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1045','2005-05-31 06:29:01.000','3470','594','2005-06-09 04:31:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1046','2005-05-31 06:42:30.000','468','179','2005-06-03 04:33:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1047','2005-05-31 06:45:57.000','1366','72','2005-06-04 09:49:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1048','2005-05-31 06:49:53.000','2811','55','2005-06-02 11:33:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1049','2005-05-31 06:57:04.000','3913','312','2005-06-02 11:32:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1050','2005-05-31 07:01:27.000','726','303','2005-06-03 07:50:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1051','2005-05-31 07:02:09.000','1025','246','2005-06-03 01:32:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1052','2005-05-31 07:07:03.000','2157','156','2005-06-05 09:38:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1053','2005-05-31 07:12:44.000','3734','196','2005-06-04 12:33:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1054','2005-05-31 07:33:25.000','1575','126','2005-06-02 01:40:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1055','2005-05-31 07:47:18.000','1639','108','2005-06-03 01:57:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1056','2005-05-31 07:48:07.000','1591','519','2005-06-05 08:51:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1057','2005-05-31 07:58:06.000','497','124','2005-06-06 03:21:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1058','2005-05-31 08:04:17.000','40','116','2005-06-03 11:12:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1059','2005-05-31 08:20:43.000','3041','241','2005-06-04 09:05:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1060','2005-05-31 08:21:43.000','2676','570','2005-06-09 04:02:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1061','2005-05-31 08:27:58.000','965','109','2005-06-07 02:34:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1062','2005-05-31 08:38:20.000','2223','176','2005-06-09 08:23:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1063','2005-05-31 08:44:29.000','2484','7','2005-06-09 08:00:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1064','2005-05-31 08:50:07.000','2373','460','2005-06-02 14:47:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1065','2005-05-31 08:54:56.000','3379','316','2005-06-08 09:21:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1066','2005-05-31 09:07:33.000','2383','541','2005-06-09 05:34:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1067','2005-05-31 09:12:13.000','2345','32','2005-06-01 06:15:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1068','2005-05-31 09:32:15.000','150','443','2005-06-01 11:20:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1069','2005-05-31 09:32:31.000','3057','251','2005-06-08 10:19:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1070','2005-05-31 09:39:56.000','3170','228','2005-06-05 10:23:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1071','2005-05-31 09:48:56.000','469','174','2005-06-02 03:52:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1072','2005-05-31 09:52:50.000','2557','272','2005-06-05 05:39:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1073','2005-05-31 09:55:04.000','522','146','2005-06-07 03:55:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1074','2005-05-31 10:04:42.000','2508','503','2005-06-02 15:27:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1075','2005-05-31 10:13:34.000','2279','9','2005-06-09 08:11:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1076','2005-05-31 10:14:31.000','2551','214','2005-06-05 10:13:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1077','2005-05-31 10:22:54.000','1986','24','2005-06-02 12:21:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1078','2005-05-31 10:28:33.000','3682','230','2005-06-03 14:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1079','2005-05-31 10:48:17.000','268','312','2005-06-08 12:30:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1080','2005-05-31 10:55:26.000','3491','215','2005-06-03 13:13:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1081','2005-05-31 10:56:32.000','4524','404','2005-06-06 11:31:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1082','2005-05-31 11:02:01.000','4510','239','2005-06-05 08:43:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1083','2005-05-31 11:04:48.000','2393','556','2005-06-05 13:32:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1084','2005-05-31 11:10:17.000','4577','12','2005-06-01 11:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1085','2005-05-31 11:15:43.000','301','5','2005-06-07 12:02:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1086','2005-05-31 11:17:37.000','2909','549','2005-06-06 13:58:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1087','2005-05-31 11:18:08.000','431','169','2005-06-04 08:33:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1088','2005-05-31 11:35:13.000','3988','356','2005-06-06 16:01:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1089','2005-05-31 11:38:29.000','3784','367','2005-06-02 08:06:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1090','2005-05-31 12:03:44.000','3329','23','2005-06-02 15:54:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1091','2005-05-31 12:11:04.000','3853','251','2005-06-04 11:42:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1092','2005-05-31 12:15:57.000','4412','278','2005-06-03 15:39:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1093','2005-05-31 12:32:26.000','2189','214','2005-06-03 07:51:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1094','2005-05-31 13:03:49.000','3810','547','2005-06-05 14:30:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1095','2005-05-31 13:15:41.000','4546','252','2005-06-05 12:10:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1096','2005-05-31 13:30:49.000','1066','271','2005-06-09 13:53:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1097','2005-05-31 13:38:42.000','2285','491','2005-06-01 13:54:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1098','2005-05-31 13:51:48.000','1050','425','2005-06-09 18:42:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1099','2005-05-31 13:54:48.000','924','269','2005-06-05 13:04:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1100','2005-05-31 14:03:21.000','316','497','2005-06-06 16:08:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1101','2005-05-31 14:13:59.000','1174','260','2005-06-07 15:49:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1102','2005-05-31 14:20:29.000','2052','115','2005-06-04 17:38:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1103','2005-05-31 14:24:18.000','3154','353','2005-06-09 10:27:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1104','2005-05-31 14:30:01.000','1619','466','2005-06-05 12:07:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1105','2005-05-31 14:33:56.000','1708','26','2005-06-07 11:30:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1106','2005-05-31 14:36:52.000','4185','109','2005-06-01 14:33:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1107','2005-05-31 15:04:05.000','3449','53','2005-06-07 16:42:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1108','2005-05-31 15:05:12.000','2562','254','2005-06-09 19:48:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1109','2005-05-31 15:12:15.000','2031','481','2005-06-09 16:21:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1110','2005-05-31 15:22:51.000','2085','355','2005-06-07 14:32:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1111','2005-05-31 15:24:19.000','1137','300','2005-06-08 21:18:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1112','2005-05-31 15:51:39.000','2453','214','2005-06-03 14:04:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1113','2005-05-31 15:58:44.000','2078','451','2005-06-05 18:05:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1114','2005-05-31 16:00:33.000','2287','117','2005-06-01 19:05:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1115','2005-05-31 16:07:09.000','2140','109','2005-06-04 18:51:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1116','2005-05-31 16:10:46.000','1356','256','2005-06-01 20:27:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1117','2005-05-31 16:15:31.000','4125','189','2005-06-04 17:20:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1118','2005-05-31 16:23:02.000','213','510','2005-06-03 20:00:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1119','2005-05-31 16:34:27.000','4401','469','2005-06-02 10:54:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1120','2005-05-31 16:37:14.000','2897','361','2005-06-04 12:53:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1121','2005-05-31 16:37:36.000','1691','74','2005-06-06 21:02:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1122','2005-05-31 16:39:33.000','1392','180','2005-06-04 17:25:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1123','2005-05-31 16:48:43.000','142','448','2005-06-02 19:17:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1124','2005-05-31 16:49:34.000','4560','134','2005-06-04 19:32:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1125','2005-05-31 17:23:44.000','1172','234','2005-06-01 15:02:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1126','2005-05-31 17:27:45.000','2765','431','2005-06-04 20:06:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1127','2005-05-31 17:45:49.000','2412','387','2005-06-08 22:41:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1128','2005-05-31 17:49:26.000','1496','311','2005-06-05 19:51:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1129','2005-05-31 18:00:48.000','386','486','2005-06-04 23:05:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1130','2005-05-31 18:13:57.000','3186','124','2005-06-06 22:50:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1131','2005-05-31 18:44:19.000','2654','128','2005-06-01 20:13:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1132','2005-05-31 18:44:53.000','1763','198','2005-06-07 22:02:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1133','2005-05-31 19:12:21.000','4271','73','2005-06-02 20:12:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1134','2005-05-31 19:14:15.000','143','191','2005-06-02 17:13:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1135','2005-05-31 19:15:11.000','3118','122','2005-06-01 14:44:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1136','2005-05-31 19:19:36.000','3963','50','2005-06-09 16:04:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1137','2005-05-31 19:20:14.000','3259','351','2005-06-07 16:10:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1138','2005-05-31 19:30:27.000','3944','438','2005-06-05 21:42:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1139','2005-05-31 19:34:52.000','666','562','2005-06-06 17:40:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1140','2005-05-31 19:36:30.000','3731','10','2005-06-07 18:33:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1141','2005-05-31 19:42:02.000','4128','217','2005-06-07 00:59:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1142','2005-05-31 19:46:38.000','3998','5','2005-06-05 14:03:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1143','2005-05-31 19:53:03.000','2632','209','2005-06-06 20:56:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1144','2005-05-31 20:04:10.000','2450','207','2005-06-09 16:34:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1145','2005-05-31 20:13:45.000','1133','284','2005-06-08 02:10:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1146','2005-05-31 20:34:45.000','3134','250','2005-06-03 18:12:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1147','2005-05-31 20:37:52.000','622','259','2005-06-06 19:23:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1148','2005-05-31 20:38:40.000','3307','235','2005-06-02 18:35:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1149','2005-05-31 21:03:17.000','352','326','2005-06-08 19:58:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1150','2005-05-31 21:20:09.000','1632','136','2005-06-03 19:15:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1151','2005-05-31 21:29:00.000','1281','581','2005-06-03 23:24:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1152','2005-05-31 21:32:17.000','210','191','2005-06-04 21:07:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1153','2005-05-31 21:36:44.000','2725','506','2005-06-10 01:26:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1154','2005-05-31 21:42:09.000','2732','59','2005-06-08 16:40:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1155','2005-05-31 22:17:11.000','2048','251','2005-06-04 20:27:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1156','2005-05-31 22:37:34.000','460','106','2005-06-01 23:02:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1157','2005-05-31 22:47:45.000','1449','61','2005-06-02 18:01:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1158','2005-06-14 22:53:33.000','1632','416','2005-06-18 21:37:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1159','2005-06-14 22:55:13.000','4395','516','2005-06-17 02:11:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1160','2005-06-14 23:00:34.000','2795','239','2005-06-18 01:58:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1161','2005-06-14 23:07:08.000','1690','285','2005-06-21 17:12:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1162','2005-06-14 23:09:38.000','987','310','2005-06-23 22:00:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1163','2005-06-14 23:12:46.000','4209','592','2005-06-23 21:53:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1164','2005-06-14 23:16:26.000','3691','49','2005-06-16 21:00:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1165','2005-06-14 23:16:27.000','2855','264','2005-06-20 02:40:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1166','2005-06-14 23:17:03.000','2508','46','2005-06-15 20:43:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1167','2005-06-14 23:25:58.000','4021','323','2005-06-18 05:18:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1168','2005-06-14 23:35:09.000','4368','481','2005-06-19 03:20:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1169','2005-06-14 23:42:56.000','1062','139','2005-06-16 04:02:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1170','2005-06-14 23:47:35.000','2444','595','2005-06-17 05:28:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1171','2005-06-14 23:50:11.000','4082','284','2005-06-17 21:44:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1172','2005-06-14 23:54:34.000','2685','306','2005-06-16 02:26:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1173','2005-06-14 23:54:46.000','1050','191','2005-06-19 23:26:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1174','2005-06-15 00:12:51.000','2653','95','2005-06-21 02:10:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1175','2005-06-15 00:15:15.000','3255','197','2005-06-20 19:23:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1176','2005-06-15 00:28:37.000','2715','512','2005-06-21 21:42:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1177','2005-06-15 00:33:04.000','1897','210','2005-06-16 03:47:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1178','2005-06-15 00:36:40.000','2553','279','2005-06-21 00:27:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1179','2005-06-15 00:36:50.000','816','119','2005-06-22 22:09:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1180','2005-06-15 00:39:01.000','3119','432','2005-06-21 22:44:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1181','2005-06-15 00:42:17.000','2973','546','2005-06-19 03:36:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1182','2005-06-15 00:45:21.000','1061','196','2005-06-22 03:52:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1183','2005-06-15 00:49:19.000','706','329','2005-06-20 04:33:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1184','2005-06-15 00:49:36.000','473','295','2005-06-22 23:39:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1185','2005-06-15 00:54:12.000','2785','1','2005-06-23 02:42:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1186','2005-06-15 00:56:45.000','1556','368','2005-06-16 02:23:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1187','2005-06-15 00:58:50.000','1108','334','2005-06-23 02:19:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1188','2005-06-15 01:04:07.000','246','173','2005-06-19 03:48:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1189','2005-06-15 01:04:22.000','142','244','2005-06-24 06:48:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1190','2005-06-15 01:05:32.000','2572','370','2005-06-23 02:34:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1191','2005-06-15 01:10:35.000','2221','291','2005-06-17 20:36:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1192','2005-06-15 01:18:39.000','4134','186','2005-06-19 22:46:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1193','2005-06-15 01:24:20.000','4504','561','2005-06-21 02:29:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1194','2005-06-15 01:25:08.000','3774','402','2005-06-21 01:16:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1195','2005-06-15 01:37:38.000','2272','84','2005-06-17 21:50:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1196','2005-06-15 01:38:31.000','994','52','2005-06-18 06:55:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1197','2005-06-15 01:42:46.000','3812','349','2005-06-20 00:22:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1198','2005-06-15 01:48:58.000','1138','491','2005-06-20 01:07:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1199','2005-06-15 01:58:50.000','253','238','2005-06-16 20:30:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1200','2005-06-15 01:59:51.000','3329','516','2005-06-21 21:33:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1201','2005-06-15 02:06:28.000','2679','209','2005-06-16 21:38:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1202','2005-06-15 02:08:04.000','2821','451','2005-06-16 21:56:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1203','2005-06-15 02:09:02.000','2223','452','2005-06-21 00:04:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1204','2005-06-15 02:21:46.000','2450','249','2005-06-20 07:14:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1205','2005-06-15 02:25:56.000','470','340','2005-06-22 23:19:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1206','2005-06-15 02:27:07.000','1097','264','2005-06-18 22:46:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1207','2005-06-15 02:27:08.000','2277','430','2005-06-19 08:18:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1208','2005-06-15 02:30:03.000','750','376','2005-06-18 00:04:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1209','2005-06-15 02:31:12.000','1494','146','2005-06-21 07:39:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1210','2005-06-15 02:57:51.000','7','345','2005-06-20 01:41:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1211','2005-06-15 03:01:20.000','3360','122','2005-06-18 07:52:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1212','2005-06-15 03:03:33.000','3611','371','2005-06-17 06:31:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1213','2005-06-15 03:14:05.000','3191','94','2005-06-15 21:41:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1214','2005-06-15 03:18:40.000','4482','46','2005-06-20 07:32:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1215','2005-06-15 03:21:00.000','242','102','2005-06-19 03:39:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1216','2005-06-15 03:23:48.000','3973','100','2005-06-18 03:35:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1217','2005-06-15 03:24:14.000','600','203','2005-06-18 22:37:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1218','2005-06-15 03:24:44.000','239','371','2005-06-21 22:45:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1219','2005-06-15 03:25:59.000','3005','330','2005-06-20 00:37:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1220','2005-06-15 03:26:15.000','1621','290','2005-06-23 08:17:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1221','2005-06-15 03:35:16.000','2124','403','2005-06-18 03:11:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1222','2005-06-15 03:38:49.000','2799','168','2005-06-17 22:30:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1223','2005-06-15 03:38:53.000','1299','50','2005-06-20 01:00:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1224','2005-06-15 03:44:25.000','1572','369','2005-06-17 03:49:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1225','2005-06-15 03:45:35.000','1929','434','2005-06-19 02:03:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1226','2005-06-15 03:46:10.000','2290','409','2005-06-23 02:00:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1227','2005-06-15 03:50:03.000','654','428','2005-06-21 23:48:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1228','2005-06-15 03:50:36.000','4473','398','2005-06-17 22:41:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1229','2005-06-15 03:53:13.000','2140','468','2005-06-18 04:09:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1230','2005-06-15 04:04:09.000','2324','447','2005-06-16 02:21:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1231','2005-06-15 04:04:41.000','3003','302','2005-06-20 23:52:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1232','2005-06-15 04:18:10.000','2743','391','2005-06-17 06:02:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1233','2005-06-15 04:18:37.000','4214','550','2005-06-22 03:36:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1234','2005-06-15 04:21:52.000','709','529','2005-06-22 03:25:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1235','2005-06-15 04:31:28.000','1000','255','2005-06-22 10:08:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1236','2005-06-15 04:34:27.000','3182','66','2005-06-18 08:15:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1237','2005-06-15 04:44:10.000','3249','49','2005-06-23 07:00:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1238','2005-06-15 04:49:08.000','3534','205','2005-06-20 00:06:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1239','2005-06-15 04:53:01.000','3731','444','2005-06-16 07:03:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1240','2005-06-15 04:58:07.000','3841','28','2005-06-17 23:56:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1241','2005-06-15 04:59:43.000','4377','62','2005-06-24 03:32:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1242','2005-06-15 05:05:07.000','821','141','2005-06-22 04:57:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1243','2005-06-15 05:07:32.000','2629','107','2005-06-21 08:17:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1244','2005-06-15 05:08:40.000','1026','515','2005-06-20 10:41:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1245','2005-06-15 05:09:01.000','1314','234','2005-06-22 06:55:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1246','2005-06-15 05:11:19.000','431','357','2005-06-21 02:21:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1247','2005-06-15 05:16:40.000','4049','287','2005-06-23 11:01:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1248','2005-06-15 05:33:52.000','3878','544','2005-06-19 06:56:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1249','2005-06-15 05:38:09.000','2120','403','2005-06-22 10:29:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1250','2005-06-15 05:55:40.000','4360','38','2005-06-23 03:11:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1251','2005-06-15 05:58:55.000','3307','442','2005-06-23 02:45:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1252','2005-06-15 06:05:18.000','1147','89','2005-06-24 07:40:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1253','2005-06-15 06:06:33.000','3242','498','2005-06-21 04:13:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1254','2005-06-15 06:11:16.000','3986','571','2005-06-21 06:40:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1255','2005-06-15 06:13:45.000','1433','526','2005-06-16 03:59:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1256','2005-06-15 06:13:57.000','1437','470','2005-06-16 06:54:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1257','2005-06-15 06:15:36.000','1938','267','2005-06-21 01:04:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1258','2005-06-15 06:21:30.000','4530','320','2005-06-18 05:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1259','2005-06-15 06:37:55.000','4460','570','2005-06-23 04:02:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1260','2005-06-15 06:42:25.000','330','586','2005-06-16 10:44:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1261','2005-06-15 06:52:57.000','2447','95','2005-06-21 01:47:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1262','2005-06-15 06:54:53.000','4495','236','2005-06-22 08:09:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1263','2005-06-15 06:56:39.000','4144','540','2005-06-16 11:08:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1264','2005-06-15 06:59:39.000','4176','439','2005-06-18 08:10:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1265','2005-06-15 07:00:50.000','982','163','2005-06-19 12:27:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1266','2005-06-15 07:11:39.000','2230','96','2005-06-21 02:59:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1267','2005-06-15 07:21:21.000','4246','509','2005-06-17 08:12:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1268','2005-06-15 07:29:30.000','3641','142','2005-06-23 12:36:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1269','2005-06-15 07:29:59.000','108','59','2005-06-16 13:26:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1270','2005-06-15 07:30:22.000','62','395','2005-06-18 11:31:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1271','2005-06-15 07:32:24.000','379','560','2005-06-21 05:12:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1272','2005-06-15 07:42:58.000','3128','135','2005-06-18 12:00:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1273','2005-06-15 07:52:35.000','361','530','2005-06-21 04:55:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1274','2005-06-15 07:52:52.000','2765','430','2005-06-20 10:01:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1275','2005-06-15 07:55:43.000','950','214','2005-06-20 06:30:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1276','2005-06-15 08:00:13.000','1508','388','2005-06-24 02:55:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1277','2005-06-15 08:01:29.000','76','464','2005-06-22 07:16:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1278','2005-06-15 08:09:12.000','4471','191','2005-06-17 04:05:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1279','2005-06-15 08:13:57.000','698','183','2005-06-18 09:36:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1280','2005-06-15 08:16:06.000','2597','266','2005-06-21 04:10:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1281','2005-06-15 08:21:39.000','2963','511','2005-06-17 11:03:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1282','2005-06-15 08:25:33.000','186','539','2005-06-21 04:02:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1283','2005-06-15 08:27:30.000','3177','470','2005-06-16 09:46:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1284','2005-06-15 08:27:33.000','1387','463','2005-06-17 03:58:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1285','2005-06-15 08:33:06.000','1054','254','2005-06-19 07:36:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1286','2005-06-15 08:41:13.000','774','179','2005-06-23 13:13:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1287','2005-06-15 08:41:38.000','4204','104','2005-06-22 14:02:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1288','2005-06-15 08:41:52.000','830','456','2005-06-19 05:30:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1289','2005-06-15 08:44:09.000','3154','522','2005-06-21 06:04:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1290','2005-06-15 08:52:44.000','1921','540','2005-06-24 13:36:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1291','2005-06-15 08:55:01.000','3090','176','2005-06-24 04:22:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1292','2005-06-15 09:03:52.000','4535','178','2005-06-21 07:53:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1293','2005-06-15 09:06:24.000','2882','127','2005-06-18 06:58:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1294','2005-06-15 09:09:27.000','339','327','2005-06-19 04:43:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1295','2005-06-15 09:17:20.000','2897','449','2005-06-18 10:14:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1296','2005-06-15 09:23:59.000','1760','200','2005-06-19 03:44:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1297','2005-06-15 09:31:28.000','1075','4','2005-06-19 04:33:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1298','2005-06-15 09:32:53.000','4163','334','2005-06-16 12:40:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1299','2005-06-15 09:34:50.000','1584','91','2005-06-21 12:07:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1300','2005-06-15 09:36:19.000','2524','186','2005-06-17 13:54:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1301','2005-06-15 09:46:33.000','1484','33','2005-06-24 08:56:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1302','2005-06-15 09:48:37.000','324','285','2005-06-22 06:18:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1303','2005-06-15 09:55:57.000','2001','365','2005-06-20 14:26:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1304','2005-06-15 09:56:02.000','1304','242','2005-06-24 07:00:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1305','2005-06-15 09:59:16.000','187','8','2005-06-19 09:48:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1306','2005-06-15 09:59:24.000','2132','524','2005-06-19 09:37:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1307','2005-06-15 10:06:15.000','368','507','2005-06-20 04:50:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1308','2005-06-15 10:07:48.000','220','236','2005-06-24 15:24:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1309','2005-06-15 10:10:49.000','2356','200','2005-06-16 12:44:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1310','2005-06-15 10:11:42.000','2045','27','2005-06-16 15:00:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1311','2005-06-15 10:11:59.000','3114','326','2005-06-17 08:44:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1312','2005-06-15 10:16:27.000','3608','313','2005-06-20 06:53:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1313','2005-06-15 10:18:34.000','1657','448','2005-06-23 06:25:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1314','2005-06-15 10:21:45.000','1359','538','2005-06-21 14:10:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1315','2005-06-15 10:23:08.000','3844','405','2005-06-21 15:06:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1316','2005-06-15 10:26:23.000','3891','138','2005-06-21 09:25:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1317','2005-06-15 10:30:19.000','3696','316','2005-06-24 08:18:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1318','2005-06-15 10:34:26.000','2760','341','2005-06-20 16:20:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1319','2005-06-15 10:39:05.000','4296','190','2005-06-18 05:25:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1320','2005-06-15 10:42:13.000','4484','84','2005-06-17 13:44:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1321','2005-06-15 10:49:17.000','3516','204','2005-06-16 15:30:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1322','2005-06-15 10:55:09.000','2076','217','2005-06-18 15:14:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1323','2005-06-15 10:55:17.000','3273','187','2005-06-24 09:51:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1324','2005-06-15 11:02:45.000','764','394','2005-06-17 07:14:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1325','2005-06-15 11:03:24.000','52','193','2005-06-20 10:54:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1326','2005-06-15 11:07:39.000','59','548','2005-06-22 05:55:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1327','2005-06-15 11:11:39.000','403','539','2005-06-22 10:45:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1328','2005-06-15 11:23:27.000','3665','295','2005-06-19 12:42:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1329','2005-06-15 11:25:06.000','1154','359','2005-06-17 16:10:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1330','2005-06-15 11:29:17.000','1219','587','2005-06-24 13:36:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1331','2005-06-15 11:34:33.000','3089','277','2005-06-21 09:46:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1332','2005-06-15 11:36:01.000','1412','116','2005-06-17 14:29:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1333','2005-06-15 11:37:08.000','448','310','2005-06-16 10:13:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1334','2005-06-15 11:43:09.000','1242','269','2005-06-20 15:45:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1335','2005-06-15 11:51:30.000','1713','64','2005-06-16 16:42:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1336','2005-06-15 12:01:34.000','1696','290','2005-06-23 12:05:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1337','2005-06-15 12:12:42.000','4014','465','2005-06-20 12:38:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1338','2005-06-15 12:17:34.000','1206','25','2005-06-19 07:40:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1339','2005-06-15 12:21:56.000','424','162','2005-06-19 07:46:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1340','2005-06-15 12:24:15.000','251','100','2005-06-22 13:02:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1341','2005-06-15 12:26:18.000','3363','344','2005-06-21 07:26:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1342','2005-06-15 12:26:21.000','4429','427','2005-06-22 11:23:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1343','2005-06-15 12:27:19.000','2393','416','2005-06-21 16:57:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1344','2005-06-15 12:29:41.000','1625','585','2005-06-22 12:45:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1345','2005-06-15 12:32:13.000','1041','270','2005-06-24 14:02:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1346','2005-06-15 12:39:52.000','4540','585','2005-06-24 17:43:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1347','2005-06-15 12:43:43.000','374','190','2005-06-16 09:55:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1348','2005-06-15 12:45:30.000','2078','196','2005-06-17 17:12:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1349','2005-06-15 12:49:02.000','1131','267','2005-06-17 15:20:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1350','2005-06-15 12:50:25.000','4261','316','2005-06-23 11:35:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1351','2005-06-15 12:51:03.000','2364','484','2005-06-22 07:23:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1352','2005-06-15 12:58:27.000','4352','276','2005-06-18 10:57:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1353','2005-06-15 13:13:36.000','2711','480','2005-06-21 08:46:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1354','2005-06-15 13:13:49.000','1294','83','2005-06-23 13:08:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1355','2005-06-15 13:13:59.000','4203','499','2005-06-20 12:23:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1356','2005-06-15 13:17:01.000','1318','212','2005-06-19 16:22:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1357','2005-06-15 13:26:23.000','2285','205','2005-06-23 14:12:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1358','2005-06-15 13:28:48.000','2025','442','2005-06-21 13:40:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1359','2005-06-15 13:30:30.000','3140','353','2005-06-17 14:55:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1360','2005-06-15 13:32:15.000','4107','14','2005-06-18 10:59:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1361','2005-06-15 13:37:38.000','4338','115','2005-06-19 17:08:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1362','2005-06-15 13:53:32.000','4524','98','2005-06-19 16:05:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1363','2005-06-15 14:05:11.000','771','197','2005-06-17 19:53:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1364','2005-06-15 14:05:32.000','115','400','2005-06-16 15:31:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1365','2005-06-15 14:09:55.000','3813','25','2005-06-19 18:11:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1366','2005-06-15 14:21:00.000','4238','576','2005-06-24 17:36:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1367','2005-06-15 14:25:17.000','1505','94','2005-06-21 19:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1368','2005-06-15 14:27:47.000','2020','222','2005-06-23 18:07:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1369','2005-06-15 14:29:14.000','679','221','2005-06-16 13:01:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1370','2005-06-15 14:31:05.000','644','396','2005-06-22 19:23:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1371','2005-06-15 14:38:15.000','760','491','2005-06-23 15:36:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1372','2005-06-15 14:45:48.000','3740','108','2005-06-17 18:02:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1373','2005-06-15 14:48:04.000','284','51','2005-06-22 09:48:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1374','2005-06-15 14:49:54.000','3353','120','2005-06-22 12:30:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1375','2005-06-15 14:54:56.000','3555','500','2005-06-21 14:48:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1376','2005-06-15 14:59:06.000','4271','215','2005-06-19 17:34:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1377','2005-06-15 15:02:03.000','3410','245','2005-06-22 14:54:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1378','2005-06-15 15:03:15.000','4372','253','2005-06-19 16:50:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1379','2005-06-15 15:05:10.000','810','212','2005-06-18 12:11:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1380','2005-06-15 15:13:10.000','3376','158','2005-06-18 12:42:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1381','2005-06-15 15:17:21.000','3262','300','2005-06-20 17:07:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1382','2005-06-15 15:18:08.000','3133','455','2005-06-22 09:22:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1383','2005-06-15 15:20:06.000','1281','379','2005-06-24 18:42:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1384','2005-06-15 15:22:03.000','4242','242','2005-06-18 18:11:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1385','2005-06-15 15:28:23.000','4073','396','2005-06-18 18:37:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1386','2005-06-15 15:38:58.000','1296','322','2005-06-20 16:28:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1387','2005-06-15 15:40:56.000','515','278','2005-06-17 10:39:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1388','2005-06-15 15:48:41.000','3987','500','2005-06-22 17:51:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1389','2005-06-15 15:49:01.000','965','472','2005-06-19 11:08:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1390','2005-06-15 16:06:29.000','4502','254','2005-06-19 13:11:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1391','2005-06-15 16:11:21.000','4213','273','2005-06-22 21:32:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1392','2005-06-15 16:12:27.000','363','460','2005-06-16 17:30:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1393','2005-06-15 16:12:50.000','2767','177','2005-06-19 10:40:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1394','2005-06-15 16:17:21.000','2802','268','2005-06-21 20:44:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1395','2005-06-15 16:21:04.000','753','252','2005-06-23 12:52:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1396','2005-06-15 16:22:38.000','1007','103','2005-06-17 15:53:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1397','2005-06-15 16:25:26.000','1830','444','2005-06-21 20:45:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1398','2005-06-15 16:28:42.000','4402','527','2005-06-16 12:11:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1399','2005-06-15 16:29:51.000','1435','469','2005-06-18 14:06:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1400','2005-06-15 16:29:56.000','230','571','2005-06-21 14:43:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1401','2005-06-15 16:30:22.000','4081','366','2005-06-21 11:07:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1402','2005-06-15 16:31:08.000','1951','381','2005-06-24 19:31:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1403','2005-06-15 16:31:59.000','3380','546','2005-06-22 14:23:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1404','2005-06-15 16:38:53.000','2776','375','2005-06-16 20:37:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1405','2005-06-15 16:41:26.000','3184','243','2005-06-21 18:16:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1406','2005-06-15 16:44:00.000','3118','199','2005-06-21 11:22:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1407','2005-06-15 16:45:07.000','1286','89','2005-06-23 14:01:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1408','2005-06-15 16:57:58.000','2655','396','2005-06-22 21:08:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1409','2005-06-15 16:58:12.000','1398','297','2005-06-21 11:21:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1410','2005-06-15 16:59:46.000','809','356','2005-06-21 16:38:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1411','2005-06-15 17:05:36.000','2276','520','2005-06-21 14:05:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1412','2005-06-15 17:09:48.000','4236','166','2005-06-18 17:05:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1413','2005-06-15 17:25:07.000','3625','96','2005-06-21 17:17:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1414','2005-06-15 17:26:32.000','4005','304','2005-06-22 22:30:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1415','2005-06-15 17:31:57.000','1885','331','2005-06-16 22:22:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1416','2005-06-15 17:44:57.000','3816','167','2005-06-22 20:53:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1417','2005-06-15 17:45:51.000','1334','570','2005-06-19 14:00:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1418','2005-06-15 17:51:27.000','2974','591','2005-06-18 23:20:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1419','2005-06-15 17:54:50.000','1208','312','2005-06-17 19:44:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1420','2005-06-15 17:56:14.000','4149','255','2005-06-24 15:45:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1421','2005-06-15 17:57:04.000','2439','533','2005-06-21 20:38:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1422','2005-06-15 18:02:53.000','1021','1','2005-06-19 15:54:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1423','2005-06-15 18:08:12.000','1396','592','2005-06-24 19:13:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1424','2005-06-15 18:08:14.000','887','224','2005-06-24 23:16:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1425','2005-06-15 18:13:46.000','1308','108','2005-06-18 22:50:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1426','2005-06-15 18:16:24.000','4412','363','2005-06-18 22:15:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1427','2005-06-15 18:17:28.000','14','100','2005-06-16 15:47:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1428','2005-06-15 18:19:30.000','3689','583','2005-06-22 23:05:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1429','2005-06-15 18:24:10.000','4116','362','2005-06-18 16:30:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1430','2005-06-15 18:24:55.000','3412','194','2005-06-16 12:26:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1431','2005-06-15 18:26:29.000','3193','438','2005-06-21 17:33:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1432','2005-06-15 18:27:24.000','523','339','2005-06-21 14:03:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1433','2005-06-15 18:30:00.000','2310','88','2005-06-16 15:14:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1434','2005-06-15 18:30:46.000','4228','544','2005-06-24 17:51:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1435','2005-06-15 18:32:30.000','2769','510','2005-06-24 12:44:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1436','2005-06-15 18:35:40.000','924','584','2005-06-21 15:04:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1437','2005-06-15 18:37:04.000','3263','96','2005-06-20 12:56:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1438','2005-06-15 18:38:51.000','1816','82','2005-06-17 23:50:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1439','2005-06-15 18:45:32.000','3155','589','2005-06-22 15:57:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1440','2005-06-15 18:53:14.000','2921','26','2005-06-24 15:28:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1441','2005-06-15 18:54:21.000','2095','444','2005-06-22 22:48:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1442','2005-06-15 18:55:34.000','3912','122','2005-06-22 20:41:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1443','2005-06-15 18:57:51.000','2485','435','2005-06-18 14:18:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1444','2005-06-15 19:08:16.000','1303','539','2005-06-24 15:20:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1445','2005-06-15 19:10:07.000','3189','537','2005-06-19 20:27:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1446','2005-06-15 19:13:45.000','1989','506','2005-06-23 19:43:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1447','2005-06-15 19:13:51.000','984','471','2005-06-21 22:56:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1448','2005-06-15 19:17:16.000','2781','246','2005-06-23 21:56:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1449','2005-06-15 19:19:16.000','1525','471','2005-06-18 15:24:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1450','2005-06-15 19:22:08.000','4132','268','2005-06-16 17:53:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1451','2005-06-15 19:30:18.000','3560','18','2005-06-19 19:22:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1452','2005-06-15 19:32:52.000','4348','243','2005-06-16 13:45:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1453','2005-06-15 19:36:39.000','3274','457','2005-06-19 00:16:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1454','2005-06-15 19:49:41.000','102','298','2005-06-17 15:17:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1455','2005-06-15 19:51:06.000','2194','358','2005-06-18 21:54:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1456','2005-06-15 20:00:11.000','632','590','2005-06-23 18:03:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1457','2005-06-15 20:05:49.000','730','345','2005-06-19 15:35:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1458','2005-06-15 20:24:05.000','3546','178','2005-06-21 01:22:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1459','2005-06-15 20:25:53.000','1862','218','2005-06-22 23:34:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1460','2005-06-15 20:27:02.000','1405','565','2005-06-16 16:21:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1461','2005-06-15 20:32:08.000','4479','216','2005-06-23 01:08:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1462','2005-06-15 20:37:40.000','653','187','2005-06-18 19:36:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1463','2005-06-15 20:37:51.000','2984','569','2005-06-21 16:46:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1464','2005-06-15 20:38:14.000','4113','387','2005-06-17 14:52:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1465','2005-06-15 20:43:08.000','609','387','2005-06-18 23:00:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1466','2005-06-15 20:46:04.000','1057','288','2005-06-24 22:46:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1467','2005-06-15 20:47:10.000','688','506','2005-06-22 00:30:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1468','2005-06-15 20:48:22.000','228','230','2005-06-21 19:48:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1469','2005-06-15 20:52:36.000','2451','580','2005-06-21 19:55:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1470','2005-06-15 20:53:07.000','4044','11','2005-06-25 02:12:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1471','2005-06-15 20:53:26.000','565','428','2005-06-24 18:25:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1472','2005-06-15 20:54:55.000','4233','373','2005-06-24 21:52:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1473','2005-06-15 20:55:20.000','2377','249','2005-06-21 16:40:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1474','2005-06-15 20:55:42.000','164','202','2005-06-19 02:41:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1475','2005-06-15 21:08:01.000','1834','344','2005-06-18 22:33:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1476','2005-06-15 21:08:46.000','1407','1','2005-06-25 02:26:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1477','2005-06-15 21:11:18.000','418','51','2005-06-19 02:05:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1478','2005-06-15 21:12:13.000','435','336','2005-06-18 21:43:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1479','2005-06-15 21:13:38.000','172','592','2005-06-17 01:26:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1480','2005-06-15 21:17:17.000','2598','27','2005-06-23 22:01:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1481','2005-06-15 21:17:58.000','3041','125','2005-06-18 17:53:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1482','2005-06-15 21:18:16.000','3980','60','2005-06-16 17:07:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1483','2005-06-15 21:21:58.000','1926','242','2005-06-24 00:44:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1484','2005-06-15 21:22:35.000','1589','320','2005-06-20 02:27:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1485','2005-06-15 21:24:10.000','194','281','2005-06-24 23:03:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1486','2005-06-15 21:25:30.000','847','62','2005-06-16 16:36:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1487','2005-06-15 21:27:42.000','3791','76','2005-06-22 03:09:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1488','2005-06-15 21:39:54.000','1081','355','2005-06-16 20:33:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1489','2005-06-15 21:41:38.000','699','213','2005-06-22 17:00:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1490','2005-06-15 21:42:17.000','3515','123','2005-06-22 02:01:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1491','2005-06-15 21:48:18.000','848','354','2005-06-20 16:40:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1492','2005-06-15 21:48:35.000','4148','360','2005-06-17 17:18:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1493','2005-06-15 21:50:32.000','4581','235','2005-06-17 01:02:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1494','2005-06-15 21:54:20.000','244','575','2005-06-19 18:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1495','2005-06-15 21:54:31.000','1842','175','2005-06-19 00:08:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1496','2005-06-15 21:55:58.000','3915','290','2005-06-17 02:28:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1497','2005-06-15 21:56:39.000','2958','44','2005-06-20 20:32:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1498','2005-06-15 21:58:00.000','3690','352','2005-06-17 21:50:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1499','2005-06-15 21:58:07.000','165','375','2005-06-22 19:37:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1500','2005-06-15 22:00:45.000','2652','237','2005-06-18 16:19:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1501','2005-06-15 22:02:35.000','1780','148','2005-06-23 18:59:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1502','2005-06-15 22:03:14.000','3277','5','2005-06-23 18:42:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1503','2005-06-15 22:07:09.000','763','197','2005-06-20 23:15:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1504','2005-06-15 22:08:06.000','3621','423','2005-06-24 01:16:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1505','2005-06-15 22:12:50.000','2961','561','2005-06-17 21:37:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1506','2005-06-15 22:19:37.000','4085','404','2005-06-22 18:28:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1507','2005-06-15 22:25:26.000','2514','172','2005-06-19 17:00:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1508','2005-06-15 22:33:24.000','1141','511','2005-06-18 02:27:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1509','2005-06-15 22:35:53.000','655','167','2005-06-23 17:09:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1510','2005-06-15 22:39:34.000','989','338','2005-06-24 19:21:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1511','2005-06-15 22:45:06.000','1135','330','2005-06-22 22:48:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1512','2005-06-15 22:53:03.000','1628','452','2005-06-23 18:56:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1513','2005-06-15 22:53:30.000','1173','368','2005-06-23 01:00:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1514','2005-06-15 22:57:34.000','2937','410','2005-06-19 20:27:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1515','2005-06-15 23:07:50.000','3244','115','2005-06-20 02:33:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1516','2005-06-15 23:11:10.000','3702','530','2005-06-17 20:37:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1517','2005-06-15 23:20:26.000','3728','148','2005-06-23 23:23:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1518','2005-06-15 23:36:37.000','4537','237','2005-06-16 18:24:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1519','2005-06-15 23:55:27.000','1553','155','2005-06-21 04:06:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1520','2005-06-15 23:57:20.000','3419','341','2005-06-24 23:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1521','2005-06-15 23:58:53.000','4299','149','2005-06-18 03:10:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1522','2005-06-16 00:17:39.000','235','133','2005-06-22 05:38:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1523','2005-06-16 00:18:40.000','681','349','2005-06-17 02:50:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1524','2005-06-16 00:25:52.000','3439','177','2005-06-19 03:32:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1525','2005-06-16 00:26:07.000','1467','304','2005-06-19 22:37:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1526','2005-06-16 00:27:51.000','1940','499','2005-06-19 00:19:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1527','2005-06-16 00:31:40.000','296','188','2005-06-21 05:20:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1528','2005-06-16 00:32:52.000','4297','110','2005-06-25 01:07:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1529','2005-06-16 00:37:35.000','1688','362','2005-06-22 18:58:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1530','2005-06-16 00:38:07.000','2421','392','2005-06-24 02:45:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1531','2005-06-16 00:40:34.000','1388','515','2005-06-22 02:44:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1532','2005-06-16 00:41:31.000','3793','290','2005-06-20 21:36:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1533','2005-06-16 00:46:02.000','2452','116','2005-06-17 20:11:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1534','2005-06-16 00:49:32.000','3124','42','2005-06-18 02:41:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1535','2005-06-16 00:52:04.000','1096','202','2005-06-20 22:47:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1536','2005-06-16 00:52:22.000','3248','339','2005-06-17 21:43:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1537','2005-06-16 00:52:51.000','4577','594','2005-06-20 19:33:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1538','2005-06-16 01:05:50.000','708','430','2005-06-18 19:48:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1539','2005-06-16 01:11:25.000','267','390','2005-06-23 03:43:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1540','2005-06-16 01:14:56.000','2707','586','2005-06-20 23:31:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1541','2005-06-16 01:15:59.000','1911','189','2005-06-22 21:26:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1542','2005-06-16 01:20:05.000','1714','182','2005-06-22 03:59:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1543','2005-06-16 01:24:08.000','1188','28','2005-06-18 06:24:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1544','2005-06-16 01:28:22.000','269','43','2005-06-17 06:57:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1545','2005-06-16 01:31:23.000','762','563','2005-06-24 05:50:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1546','2005-06-16 01:34:05.000','3913','3','2005-06-24 04:27:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1547','2005-06-16 01:42:24.000','2909','343','2005-06-19 01:13:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1548','2005-06-16 01:43:33.000','2094','374','2005-06-23 22:04:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1549','2005-06-16 01:57:15.000','266','69','2005-06-18 23:30:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1550','2005-06-16 01:58:35.000','2003','345','2005-06-18 23:56:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1551','2005-06-16 02:01:15.000','4088','268','2005-06-22 07:33:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1552','2005-06-16 02:01:37.000','819','518','2005-06-21 00:59:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1553','2005-06-16 02:02:44.000','4026','416','2005-06-19 07:50:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1554','2005-06-16 02:16:47.000','715','155','2005-06-22 05:15:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1555','2005-06-16 02:17:07.000','4168','256','2005-06-22 06:28:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1556','2005-06-16 02:19:02.000','533','54','2005-06-17 22:36:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1557','2005-06-16 02:28:35.000','2617','439','2005-06-16 22:11:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1558','2005-06-16 02:33:53.000','4350','20','2005-06-19 20:50:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1559','2005-06-16 02:35:03.000','716','574','2005-06-19 21:22:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1560','2005-06-16 02:36:43.000','3418','239','2005-06-24 23:10:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1561','2005-06-16 02:41:30.000','2263','431','2005-06-22 05:19:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1562','2005-06-16 02:46:27.000','595','395','2005-06-23 00:56:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1563','2005-06-16 02:46:28.000','1516','262','2005-06-18 02:37:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1564','2005-06-16 02:47:07.000','145','343','2005-06-24 03:12:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1565','2005-06-16 03:13:09.000','3833','506','2005-06-16 22:42:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1566','2005-06-16 03:13:20.000','3215','174','2005-06-24 01:59:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1567','2005-06-16 03:13:30.000','3098','320','2005-06-21 23:56:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1568','2005-06-16 03:14:01.000','635','178','2005-06-19 21:17:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1569','2005-06-16 03:19:09.000','3927','363','2005-06-18 21:55:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1570','2005-06-16 03:21:33.000','3711','82','2005-06-22 22:03:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1571','2005-06-16 03:22:00.000','1019','54','2005-06-22 23:27:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1572','2005-06-16 03:23:22.000','4179','560','2005-06-20 06:03:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1573','2005-06-16 03:31:39.000','4536','371','2005-06-25 04:04:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1574','2005-06-16 03:39:56.000','161','305','2005-06-22 05:40:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1575','2005-06-16 03:41:38.000','3317','6','2005-06-22 03:01:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1576','2005-06-16 03:54:39.000','1014','442','2005-06-24 21:55:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1577','2005-06-16 04:03:28.000','367','327','2005-06-24 22:40:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1578','2005-06-16 04:08:16.000','3397','365','2005-06-23 07:57:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1579','2005-06-16 04:09:08.000','158','35','2005-06-21 05:21:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1580','2005-06-16 04:12:25.000','2479','87','2005-06-20 06:53:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1581','2005-06-16 04:28:45.000','4004','109','2005-06-18 07:07:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1582','2005-06-16 04:31:57.000','163','536','2005-06-22 01:25:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1583','2005-06-16 04:44:23.000','270','37','2005-06-18 03:44:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1584','2005-06-16 04:50:50.000','3545','434','2005-06-21 22:51:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1585','2005-06-16 04:51:13.000','1708','386','2005-06-24 00:23:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1586','2005-06-16 04:51:18.000','769','140','2005-06-21 06:54:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1587','2005-06-16 04:52:28.000','1781','62','2005-06-23 07:36:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1588','2005-06-16 04:53:21.000','4472','322','2005-06-25 07:29:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1589','2005-06-16 04:58:03.000','4307','293','2005-06-24 08:36:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1590','2005-06-16 05:11:41.000','3685','98','2005-06-23 10:11:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1591','2005-06-16 05:12:37.000','1648','83','2005-06-25 06:28:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1592','2005-06-16 05:14:37.000','3798','187','2005-06-20 10:52:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1593','2005-06-16 05:14:52.000','766','111','2005-06-24 08:00:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1594','2005-06-16 05:15:12.000','3858','470','2005-06-25 00:38:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1595','2005-06-16 05:23:46.000','1481','244','2005-06-20 00:37:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1596','2005-06-16 05:30:58.000','2552','416','2005-06-21 04:18:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1597','2005-06-16 05:47:03.000','743','432','2005-06-18 04:21:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1598','2005-06-16 06:02:39.000','4171','314','2005-06-23 09:09:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1599','2005-06-16 06:03:33.000','1476','215','2005-06-21 07:46:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1600','2005-06-16 06:04:12.000','2264','196','2005-06-19 09:39:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1601','2005-06-16 06:11:13.000','3115','428','2005-06-21 08:57:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1602','2005-06-16 06:12:40.000','1777','441','2005-06-19 03:50:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1603','2005-06-16 06:14:03.000','3308','395','2005-06-17 06:04:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1604','2005-06-16 06:14:25.000','3226','272','2005-06-17 03:53:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1605','2005-06-16 06:17:55.000','593','197','2005-06-25 01:25:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1606','2005-06-16 06:18:31.000','4290','253','2005-06-25 09:15:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1607','2005-06-16 06:25:35.000','3289','513','2005-06-20 02:50:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1608','2005-06-16 06:28:57.000','2581','386','2005-06-24 05:20:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1609','2005-06-16 06:34:59.000','2279','174','2005-06-17 09:41:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1610','2005-06-16 06:36:33.000','3551','534','2005-06-19 07:12:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1611','2005-06-16 06:41:35.000','1739','393','2005-06-25 06:13:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1612','2005-06-16 06:52:05.000','3025','355','2005-06-19 01:51:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1613','2005-06-16 06:55:10.000','4462','573','2005-06-24 12:08:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1614','2005-06-16 06:58:02.000','23','489','2005-06-23 11:24:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1615','2005-06-16 07:00:28.000','3894','362','2005-06-25 08:53:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1616','2005-06-16 07:04:52.000','2296','204','2005-06-24 04:06:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1617','2005-06-16 07:06:06.000','1382','83','2005-06-25 03:35:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1618','2005-06-16 07:08:38.000','3741','134','2005-06-25 05:26:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1619','2005-06-16 07:14:13.000','4258','232','2005-06-19 05:50:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1620','2005-06-16 07:21:30.000','389','561','2005-06-17 09:46:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1621','2005-06-16 07:24:12.000','3677','177','2005-06-19 02:35:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1622','2005-06-16 07:33:18.000','1774','311','2005-06-21 07:23:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1623','2005-06-16 07:48:50.000','4485','378','2005-06-17 03:53:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1624','2005-06-16 07:48:57.000','1066','314','2005-06-17 05:52:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1625','2005-06-16 07:49:08.000','3367','39','2005-06-24 09:08:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1626','2005-06-16 07:49:47.000','694','260','2005-06-22 13:32:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1627','2005-06-16 07:51:09.000','4135','468','2005-06-24 02:24:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1628','2005-06-16 07:52:55.000','868','427','2005-06-25 11:09:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1629','2005-06-16 07:53:47.000','4375','339','2005-06-22 13:03:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1630','2005-06-16 07:55:01.000','2413','130','2005-06-19 06:38:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1631','2005-06-16 08:01:02.000','2466','5','2005-06-19 09:04:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1632','2005-06-16 08:03:42.000','1518','319','2005-06-17 03:40:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1633','2005-06-16 08:08:40.000','280','4','2005-06-17 11:12:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1634','2005-06-16 08:16:05.000','3990','121','2005-06-17 04:49:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1635','2005-06-16 08:26:56.000','1187','566','2005-06-25 06:17:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1636','2005-06-16 08:28:54.000','2052','574','2005-06-24 09:23:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1637','2005-06-16 08:29:58.000','906','212','2005-06-23 04:55:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1638','2005-06-16 08:32:36.000','1905','181','2005-06-18 07:11:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1639','2005-06-16 08:33:39.000','176','450','2005-06-25 07:51:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1640','2005-06-16 08:35:39.000','443','86','2005-06-17 05:37:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1641','2005-06-16 08:46:26.000','2925','259','2005-06-24 14:39:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1642','2005-06-16 08:54:15.000','3875','287','2005-06-18 12:36:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1643','2005-06-16 08:55:35.000','1352','484','2005-06-21 05:36:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1644','2005-06-16 08:58:18.000','749','596','2005-06-21 06:47:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1645','2005-06-16 09:10:06.000','4434','234','2005-06-23 04:36:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1646','2005-06-16 09:12:53.000','4037','131','2005-06-24 08:03:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1647','2005-06-16 09:14:58.000','1936','454','2005-06-17 10:46:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1648','2005-06-16 09:17:07.000','457','427','2005-06-24 06:31:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1649','2005-06-16 09:20:33.000','390','352','2005-06-18 13:42:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1650','2005-06-16 09:23:20.000','4125','299','2005-06-23 11:25:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1651','2005-06-16 09:24:38.000','4444','524','2005-06-17 09:50:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1652','2005-06-16 09:31:37.000','3416','533','2005-06-19 14:02:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1653','2005-06-16 09:34:45.000','2294','517','2005-06-18 09:13:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1654','2005-06-16 09:42:48.000','1039','348','2005-06-20 14:28:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1655','2005-06-16 09:51:39.000','3693','488','2005-06-23 14:53:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1656','2005-06-16 10:05:40.000','2253','31','2005-06-22 06:26:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1657','2005-06-16 10:06:49.000','953','209','2005-06-22 10:34:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1658','2005-06-16 10:07:10.000','272','568','2005-06-21 09:23:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1659','2005-06-16 10:11:46.000','1182','296','2005-06-20 13:51:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1660','2005-06-16 10:12:55.000','2374','238','2005-06-18 05:56:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1661','2005-06-16 10:12:57.000','2403','508','2005-06-24 09:23:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1662','2005-06-16 10:13:35.000','3552','378','2005-06-23 13:54:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1663','2005-06-16 10:14:15.000','1558','186','2005-06-23 08:34:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1664','2005-06-16 10:15:20.000','2464','216','2005-06-18 12:11:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1665','2005-06-16 10:16:02.000','2613','490','2005-06-23 09:32:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1666','2005-06-16 10:17:19.000','4019','557','2005-06-21 05:50:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1667','2005-06-16 10:18:59.000','2362','333','2005-06-22 14:45:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1668','2005-06-16 10:19:52.000','2483','569','2005-06-23 12:22:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1669','2005-06-16 10:20:20.000','360','73','2005-06-18 04:26:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1670','2005-06-16 10:26:33.000','2066','328','2005-06-19 07:15:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1671','2005-06-16 10:30:22.000','3805','135','2005-06-22 11:08:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1672','2005-06-16 10:37:34.000','4206','216','2005-06-23 05:30:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1673','2005-06-16 10:40:17.000','907','534','2005-06-18 16:13:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1674','2005-06-16 10:57:00.000','3606','234','2005-06-18 07:31:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1675','2005-06-16 11:04:47.000','3048','371','2005-06-24 06:56:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1676','2005-06-16 11:06:09.000','931','171','2005-06-21 05:17:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1677','2005-06-16 11:07:11.000','240','191','2005-06-23 10:50:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1678','2005-06-16 11:08:28.000','1856','352','2005-06-19 15:44:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1679','2005-06-16 11:11:01.000','3959','227','2005-06-23 08:11:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1680','2005-06-16 11:17:22.000','4441','469','2005-06-25 15:55:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1681','2005-06-16 11:38:17.000','530','255','2005-06-19 13:05:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1682','2005-06-16 11:54:25.000','2165','476','2005-06-22 11:09:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1683','2005-06-16 11:54:55.000','2361','494','2005-06-18 08:51:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1684','2005-06-16 11:57:34.000','806','485','2005-06-19 09:12:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1685','2005-06-16 12:06:57.000','2754','85','2005-06-21 16:53:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1686','2005-06-16 12:08:20.000','3883','529','2005-06-20 10:59:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1687','2005-06-16 12:09:20.000','3686','140','2005-06-18 06:18:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1688','2005-06-16 12:11:20.000','383','49','2005-06-18 08:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1689','2005-06-16 12:18:41.000','4036','48','2005-06-24 13:33:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1690','2005-06-16 12:24:18.000','1099','286','2005-06-25 15:00:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1691','2005-06-16 12:24:28.000','4438','492','2005-06-24 08:24:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1692','2005-06-16 12:30:19.000','3544','514','2005-06-17 17:31:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1693','2005-06-16 12:39:51.000','2386','421','2005-06-19 16:19:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1694','2005-06-16 12:40:23.000','147','532','2005-06-20 09:18:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1695','2005-06-16 12:40:28.000','4436','159','2005-06-22 13:41:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1696','2005-06-16 12:50:01.000','3928','502','2005-06-24 12:08:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1697','2005-06-16 12:55:20.000','1801','340','2005-06-23 17:41:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1698','2005-06-16 13:04:42.000','1474','407','2005-06-21 15:54:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1699','2005-06-16 13:05:09.000','4507','27','2005-06-17 09:53:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1700','2005-06-16 13:18:23.000','4251','456','2005-06-21 16:46:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1701','2005-06-16 13:18:48.000','3000','315','2005-06-22 15:00:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1702','2005-06-16 13:21:05.000','1822','242','2005-06-19 10:13:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1703','2005-06-16 13:28:44.000','2346','589','2005-06-17 11:03:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1704','2005-06-16 13:45:56.000','4425','488','2005-06-24 18:12:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1705','2005-06-16 13:59:42.000','123','564','2005-06-18 19:54:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1706','2005-06-16 14:01:02.000','2935','26','2005-06-25 19:29:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1707','2005-06-16 14:01:27.000','185','4','2005-06-18 09:35:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1708','2005-06-16 14:08:44.000','2259','478','2005-06-19 08:35:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1709','2005-06-16 14:10:15.000','3501','426','2005-06-24 16:38:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1710','2005-06-16 14:11:24.000','144','77','2005-06-22 15:26:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1711','2005-06-16 14:11:52.000','273','347','2005-06-25 08:49:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1712','2005-06-16 14:25:09.000','1363','535','2005-06-17 17:55:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1713','2005-06-16 14:28:33.000','2580','164','2005-06-18 09:02:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1714','2005-06-16 14:29:59.000','535','477','2005-06-24 17:27:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1715','2005-06-16 14:37:12.000','1594','203','2005-06-20 19:36:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1716','2005-06-16 14:39:31.000','20','24','2005-06-19 15:37:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1717','2005-06-16 14:47:16.000','3007','277','2005-06-19 10:11:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1718','2005-06-16 14:52:02.000','288','516','2005-06-25 10:53:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1719','2005-06-16 14:55:53.000','2699','582','2005-06-18 14:12:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1720','2005-06-16 15:00:14.000','3500','543','2005-06-21 13:57:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1721','2005-06-16 15:01:36.000','3521','485','2005-06-23 10:48:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1722','2005-06-16 15:12:52.000','2142','364','2005-06-19 13:01:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1723','2005-06-16 15:14:18.000','2417','259','2005-06-23 15:45:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1724','2005-06-16 15:15:43.000','61','146','2005-06-23 10:14:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1725','2005-06-16 15:18:57.000','726','1','2005-06-17 21:05:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1726','2005-06-16 15:19:10.000','116','3','2005-06-25 11:39:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1727','2005-06-16 15:21:47.000','2951','457','2005-06-17 14:12:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1728','2005-06-16 15:29:29.000','1366','59','2005-06-23 12:47:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1729','2005-06-16 15:29:47.000','3364','523','2005-06-25 20:55:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1730','2005-06-16 15:30:01.000','1372','390','2005-06-19 12:56:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1731','2005-06-16 15:32:12.000','3698','344','2005-06-19 18:58:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1732','2005-06-16 15:34:41.000','2287','129','2005-06-18 13:05:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1733','2005-06-16 15:37:07.000','542','480','2005-06-23 15:53:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1734','2005-06-16 15:49:30.000','1113','94','2005-06-22 13:52:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1735','2005-06-16 15:51:52.000','97','4','2005-06-20 13:27:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1736','2005-06-16 15:52:32.000','3771','139','2005-06-21 14:39:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1737','2005-06-16 15:59:44.000','4029','467','2005-06-23 12:22:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1738','2005-06-16 16:07:27.000','3260','177','2005-06-20 15:22:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1739','2005-06-16 16:09:38.000','2557','450','2005-06-22 18:04:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1740','2005-06-16 16:29:00.000','2282','324','2005-06-20 14:07:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1741','2005-06-16 16:31:37.000','3722','176','2005-06-25 21:38:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1742','2005-06-16 16:37:48.000','2772','576','2005-06-17 19:47:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1743','2005-06-16 16:38:10.000','2777','258','2005-06-17 13:13:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1744','2005-06-16 16:39:58.000','3075','230','2005-06-18 19:50:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1745','2005-06-16 16:41:16.000','2812','178','2005-06-23 21:02:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1746','2005-06-16 16:41:19.000','4272','385','2005-06-19 11:28:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1747','2005-06-16 16:53:33.000','1661','273','2005-06-25 21:48:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1748','2005-06-16 16:54:03.000','2434','473','2005-06-18 20:11:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1749','2005-06-16 16:56:00.000','1554','283','2005-06-21 21:02:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1750','2005-06-16 16:57:36.000','1103','321','2005-06-25 21:51:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1751','2005-06-16 17:00:14.000','138','123','2005-06-17 12:12:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1752','2005-06-16 17:02:55.000','3529','12','2005-06-23 19:09:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1753','2005-06-16 17:08:17.000','3817','249','2005-06-21 21:47:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1754','2005-06-16 17:13:23.000','4106','25','2005-06-22 20:46:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1755','2005-06-16 17:18:44.000','1721','117','2005-06-17 16:54:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1756','2005-06-16 17:22:33.000','1401','571','2005-06-21 16:52:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1757','2005-06-16 17:32:24.000','4491','510','2005-06-18 13:12:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1758','2005-06-16 17:39:39.000','2654','474','2005-06-25 13:06:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1759','2005-06-16 17:46:37.000','1402','430','2005-06-24 19:40:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1760','2005-06-16 17:48:37.000','3929','261','2005-06-18 16:01:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1761','2005-06-16 17:49:57.000','1570','521','2005-06-17 21:03:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1762','2005-06-16 17:50:19.000','3050','116','2005-06-19 21:35:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1763','2005-06-16 17:51:01.000','1941','389','2005-06-20 17:27:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1764','2005-06-16 17:51:54.000','705','392','2005-06-21 20:36:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1765','2005-06-16 17:56:10.000','822','273','2005-06-19 23:40:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1766','2005-06-16 17:59:37.000','2041','118','2005-06-18 16:32:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1767','2005-06-16 18:01:36.000','1162','205','2005-06-18 12:39:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1768','2005-06-16 18:02:06.000','2131','131','2005-06-23 17:19:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1769','2005-06-16 18:07:48.000','1229','397','2005-06-22 12:39:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1770','2005-06-16 18:07:55.000','1681','359','2005-06-23 23:49:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1771','2005-06-16 18:12:17.000','1769','416','2005-06-18 16:11:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1772','2005-06-16 18:12:54.000','1269','525','2005-06-24 19:55:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1773','2005-06-16 18:13:43.000','4396','462','2005-06-24 17:43:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1774','2005-06-16 18:27:52.000','3058','442','2005-06-21 13:35:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1775','2005-06-16 18:28:19.000','1922','123','2005-06-25 13:09:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1776','2005-06-16 18:46:58.000','1404','472','2005-06-24 16:01:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1777','2005-06-16 18:52:12.000','3325','49','2005-06-25 13:55:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1778','2005-06-16 18:54:48.000','2512','341','2005-06-22 16:08:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1779','2005-06-16 18:55:11.000','1044','438','2005-06-17 20:11:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1780','2005-06-16 19:11:45.000','146','352','2005-06-19 15:34:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1781','2005-06-16 19:20:24.000','2841','429','2005-06-25 17:02:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1782','2005-06-16 19:21:12.000','1820','498','2005-06-22 16:03:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1783','2005-06-16 19:23:23.000','50','18','2005-06-18 00:57:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1784','2005-06-16 19:25:32.000','3792','134','2005-06-20 00:00:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1785','2005-06-16 19:27:12.000','3413','50','2005-06-24 19:25:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1786','2005-06-16 19:30:54.000','263','323','2005-06-19 14:24:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1787','2005-06-16 19:30:59.000','3823','546','2005-06-21 18:25:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1788','2005-06-16 19:47:18.000','3794','357','2005-06-22 23:10:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1789','2005-06-16 19:49:18.000','4264','105','2005-06-23 17:07:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1790','2005-06-16 19:58:40.000','1070','158','2005-06-17 19:31:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1791','2005-06-16 20:04:28.000','301','76','2005-06-23 22:30:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1792','2005-06-16 20:04:50.000','3800','351','2005-06-26 00:57:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1793','2005-06-16 20:07:27.000','4356','230','2005-06-19 20:55:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1794','2005-06-16 20:08:37.000','497','452','2005-06-22 01:54:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1795','2005-06-16 20:09:01.000','536','56','2005-06-24 17:50:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1796','2005-06-16 20:10:43.000','3229','283','2005-06-20 19:12:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1797','2005-06-16 20:13:03.000','3435','275','2005-06-22 22:56:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1798','2005-06-16 20:16:15.000','1654','429','2005-06-20 22:23:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1799','2005-06-16 20:17:20.000','2847','505','2005-06-20 23:55:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1800','2005-06-16 20:18:46.000','2058','149','2005-06-20 17:12:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1801','2005-06-16 20:21:53.000','1015','10','2005-06-18 23:18:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1802','2005-06-16 20:23:30.000','4174','455','2005-06-21 20:02:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1803','2005-06-16 20:32:47.000','3784','127','2005-06-21 02:03:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1804','2005-06-16 20:33:15.000','1152','570','2005-06-18 02:31:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1805','2005-06-16 20:36:00.000','3962','208','2005-06-17 16:27:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1806','2005-06-16 20:41:57.000','2053','45','2005-06-18 19:25:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1807','2005-06-16 20:58:59.000','1174','338','2005-06-20 21:31:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1808','2005-06-16 20:59:35.000','2424','466','2005-06-24 15:31:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1809','2005-06-16 21:00:20.000','1071','517','2005-06-25 20:25:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1810','2005-06-16 21:06:00.000','2368','7','2005-06-21 21:24:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1811','2005-06-16 21:06:20.000','3700','235','2005-06-21 21:59:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1812','2005-06-16 21:08:46.000','751','37','2005-06-21 15:44:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1813','2005-06-16 21:11:00.000','1236','259','2005-06-24 15:30:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1814','2005-06-16 21:15:22.000','39','144','2005-06-23 17:00:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1815','2005-06-16 21:16:07.000','1551','84','2005-06-17 16:37:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1816','2005-06-16 21:20:41.000','2861','594','2005-06-18 02:21:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1817','2005-06-16 21:20:52.000','1354','574','2005-06-19 16:24:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1818','2005-06-16 21:30:34.000','1218','63','2005-06-20 03:27:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1819','2005-06-16 21:32:50.000','1689','386','2005-06-26 01:11:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1820','2005-06-16 21:34:50.000','3672','120','2005-06-20 16:50:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1821','2005-06-16 21:42:49.000','3207','468','2005-06-20 16:25:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1822','2005-06-16 21:43:45.000','674','86','2005-06-17 21:37:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1823','2005-06-16 21:48:16.000','3871','448','2005-06-22 03:09:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1824','2005-06-16 21:51:04.000','2269','575','2005-06-18 18:12:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1825','2005-06-16 21:53:05.000','2908','55','2005-06-20 17:22:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1826','2005-06-16 21:53:52.000','421','578','2005-06-25 18:46:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1827','2005-06-16 21:54:40.000','3804','423','2005-06-19 21:28:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1828','2005-06-16 22:04:34.000','316','68','2005-06-20 21:07:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1829','2005-06-16 22:14:21.000','617','293','2005-06-21 16:51:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1830','2005-06-16 22:18:43.000','4010','499','2005-06-23 21:14:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1831','2005-06-16 22:22:17.000','2610','383','2005-06-25 23:23:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1832','2005-06-16 22:35:20.000','500','220','2005-06-19 03:09:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1833','2005-06-16 22:45:03.000','1337','121','2005-06-20 22:02:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1834','2005-06-16 22:49:08.000','4018','189','2005-06-22 21:08:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1835','2005-06-16 23:05:36.000','1482','112','2005-06-19 04:46:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1836','2005-06-16 23:13:05.000','2753','176','2005-06-24 01:40:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1837','2005-06-16 23:16:15.000','1259','309','2005-06-21 21:54:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1838','2005-06-16 23:20:16.000','513','31','2005-06-20 02:34:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1839','2005-06-16 23:22:22.000','2750','223','2005-06-23 00:33:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1840','2005-06-16 23:39:34.000','340','404','2005-06-21 23:36:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1841','2005-06-16 23:44:13.000','2363','6','2005-06-22 04:09:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1842','2005-06-16 23:45:59.000','1472','426','2005-06-26 05:31:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1843','2005-06-16 23:53:42.000','2714','132','2005-06-22 18:33:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1844','2005-06-16 23:53:53.000','2307','454','2005-06-22 02:19:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1845','2005-06-16 23:56:11.000','3395','215','2005-06-19 01:41:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1846','2005-06-17 00:02:44.000','1725','422','2005-06-18 23:47:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1847','2005-06-17 00:05:22.000','1189','363','2005-06-20 21:09:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1848','2005-06-17 00:07:07.000','3797','526','2005-06-21 21:41:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1849','2005-06-17 00:13:19.000','2507','341','2005-06-23 18:37:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1850','2005-06-17 00:31:35.000','761','517','2005-06-25 05:19:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1851','2005-06-17 00:32:26.000','1121','451','2005-06-22 19:54:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1852','2005-06-17 00:38:20.000','4122','271','2005-06-22 20:04:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1853','2005-06-17 00:39:54.000','2949','301','2005-06-19 00:22:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1854','2005-06-17 00:43:57.000','119','37','2005-06-23 05:49:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1855','2005-06-17 00:54:58.000','4457','492','2005-06-20 19:29:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1856','2005-06-17 01:02:00.000','3034','161','2005-06-19 21:29:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1857','2005-06-17 01:12:58.000','4257','427','2005-06-21 04:49:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1858','2005-06-17 01:13:11.000','3200','99','2005-06-18 21:33:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1859','2005-06-17 01:13:38.000','3405','533','2005-06-18 03:13:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1860','2005-06-17 01:17:12.000','1853','293','2005-06-21 22:35:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1861','2005-06-17 01:17:31.000','135','454','2005-06-25 02:11:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1862','2005-06-17 01:29:30.000','3299','553','2005-06-25 20:43:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1863','2005-06-17 01:31:46.000','4466','550','2005-06-26 02:09:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1864','2005-06-17 01:39:47.000','1815','130','2005-06-24 19:39:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1865','2005-06-17 01:49:36.000','2657','526','2005-06-23 21:13:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1866','2005-06-17 01:53:19.000','2579','575','2005-06-19 06:14:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1867','2005-06-17 02:01:37.000','3537','415','2005-06-25 04:52:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1868','2005-06-17 02:03:22.000','2412','380','2005-06-25 04:38:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1869','2005-06-17 02:08:00.000','871','351','2005-06-19 21:43:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1870','2005-06-17 02:24:36.000','895','191','2005-06-17 23:04:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1871','2005-06-17 02:25:12.000','481','204','2005-06-23 03:16:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1872','2005-06-17 02:27:03.000','3596','206','2005-06-20 22:41:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1873','2005-06-17 02:38:28.000','2933','71','2005-06-23 04:39:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1874','2005-06-17 02:39:20.000','3884','30','2005-06-24 04:41:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1875','2005-06-17 02:45:10.000','1652','528','2005-06-22 22:54:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1876','2005-06-17 02:50:51.000','384','459','2005-06-18 07:21:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1877','2005-06-17 02:54:16.000','3404','261','2005-06-25 21:51:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1878','2005-06-17 02:55:32.000','3319','381','2005-06-21 03:44:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1879','2005-06-17 02:57:34.000','3983','343','2005-06-19 00:00:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1880','2005-06-17 03:08:59.000','1133','289','2005-06-19 07:16:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1881','2005-06-17 03:09:56.000','159','134','2005-06-18 01:49:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1882','2005-06-17 03:17:21.000','1400','47','2005-06-19 22:23:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1883','2005-06-17 03:18:51.000','3504','550','2005-06-18 05:46:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1884','2005-06-17 03:19:20.000','4567','305','2005-06-21 00:19:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1885','2005-06-17 03:35:59.000','740','588','2005-06-21 05:57:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1886','2005-06-17 03:36:02.000','2367','505','2005-06-19 08:12:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1887','2005-06-17 03:53:18.000','3591','32','2005-06-25 07:37:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1888','2005-06-17 03:58:36.000','2872','405','2005-06-22 09:28:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1889','2005-06-17 04:05:12.000','3909','572','2005-06-26 04:13:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1890','2005-06-17 04:06:13.000','1764','447','2005-06-22 07:46:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1891','2005-06-17 04:16:44.000','3576','109','2005-06-24 07:20:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1892','2005-06-17 04:17:33.000','139','319','2005-06-20 00:06:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1893','2005-06-17 04:18:37.000','3346','390','2005-06-23 23:35:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1894','2005-06-17 04:18:48.000','3707','204','2005-06-26 00:07:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1895','2005-06-17 04:25:12.000','680','30','2005-06-26 08:44:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1896','2005-06-17 04:25:46.000','2077','270','2005-06-26 09:37:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1897','2005-06-17 04:26:23.000','4142','422','2005-06-25 09:32:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1898','2005-06-17 04:28:11.000','2873','143','2005-06-25 07:04:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1899','2005-06-17 04:29:15.000','858','200','2005-06-26 08:39:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1900','2005-06-17 04:29:58.000','1425','34','2005-06-21 05:58:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1901','2005-06-17 04:35:19.000','2469','292','2005-06-25 06:09:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1902','2005-06-17 04:35:52.000','2905','479','2005-06-20 06:52:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1903','2005-06-17 04:37:20.000','1939','588','2005-06-26 09:05:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1904','2005-06-17 04:45:41.000','2472','87','2005-06-17 23:56:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1905','2005-06-17 04:51:43.000','1043','39','2005-06-24 09:35:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1906','2005-06-17 04:53:35.000','1049','455','2005-06-21 01:16:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1907','2005-06-17 05:08:27.000','988','66','2005-06-23 09:13:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1908','2005-06-17 05:10:36.000','399','358','2005-06-19 03:52:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1909','2005-06-17 05:11:04.000','2599','269','2005-06-19 04:33:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1910','2005-06-17 05:11:27.000','3903','199','2005-06-23 23:16:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1911','2005-06-17 05:15:15.000','910','3','2005-06-24 11:05:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1912','2005-06-17 05:18:32.000','4136','538','2005-06-20 10:01:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1913','2005-06-17 05:19:47.000','1825','116','2005-06-21 03:39:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1914','2005-06-17 05:25:54.000','3406','450','2005-06-24 04:25:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1915','2005-06-17 05:28:28.000','2620','393','2005-06-21 07:12:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1916','2005-06-17 05:29:59.000','4428','429','2005-06-26 05:35:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1917','2005-06-17 05:36:07.000','2667','400','2005-06-24 01:44:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1918','2005-06-17 05:40:14.000','3749','310','2005-06-21 08:53:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1919','2005-06-17 05:40:52.000','3855','197','2005-06-23 05:58:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1920','2005-06-17 06:00:23.000','2199','75','2005-06-24 04:49:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1921','2005-06-17 06:04:16.000','4369','417','2005-06-23 05:26:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1922','2005-06-17 06:04:25.000','2484','343','2005-06-18 09:15:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1923','2005-06-17 06:06:10.000','691','400','2005-06-24 04:29:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1924','2005-06-17 06:13:34.000','2577','86','2005-06-18 01:51:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1925','2005-06-17 06:16:47.000','3995','510','2005-06-21 06:03:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1926','2005-06-17 06:24:30.000','3509','462','2005-06-25 03:39:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1927','2005-06-17 06:48:19.000','3304','188','2005-06-21 03:23:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1928','2005-06-17 06:48:31.000','3454','353','2005-06-26 08:17:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1929','2005-06-17 06:49:30.000','573','327','2005-06-22 12:07:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1930','2005-06-17 06:50:46.000','79','112','2005-06-19 08:51:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1931','2005-06-17 06:51:56.000','1411','391','2005-06-22 08:27:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1932','2005-06-17 06:54:41.000','3185','120','2005-06-19 05:12:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1933','2005-06-17 06:54:42.000','980','13','2005-06-26 02:00:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1934','2005-06-17 07:04:57.000','4000','16','2005-06-25 12:21:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1935','2005-06-17 07:14:15.000','1962','295','2005-06-20 05:59:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1936','2005-06-17 07:15:41.000','3037','213','2005-06-18 11:37:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1937','2005-06-17 07:16:46.000','1266','385','2005-06-21 04:22:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1938','2005-06-17 07:18:36.000','570','454','2005-06-19 01:43:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1939','2005-06-17 07:26:45.000','605','11','2005-06-25 13:06:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1940','2005-06-17 07:42:22.000','105','451','2005-06-22 11:59:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1941','2005-06-17 07:42:45.000','1063','519','2005-06-20 07:12:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1942','2005-06-17 07:43:39.000','261','143','2005-06-25 02:24:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1943','2005-06-17 07:49:17.000','4327','144','2005-06-20 03:47:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1944','2005-06-17 07:50:53.000','318','16','2005-06-23 02:52:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1945','2005-06-17 07:51:26.000','3366','207','2005-06-23 13:22:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1946','2005-06-17 07:58:39.000','2335','389','2005-06-25 06:49:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1947','2005-06-17 08:02:20.000','3344','479','2005-06-25 10:25:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1948','2005-06-17 08:06:53.000','46','89','2005-06-21 05:00:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1949','2005-06-17 08:19:22.000','1478','208','2005-06-25 08:43:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1950','2005-06-17 08:26:52.000','723','594','2005-06-22 08:08:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1951','2005-06-17 08:30:35.000','955','123','2005-06-20 10:43:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1952','2005-06-17 08:33:02.000','1823','338','2005-06-21 14:00:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1953','2005-06-17 08:34:57.000','3549','405','2005-06-24 09:38:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1954','2005-06-17 08:37:55.000','3203','533','2005-06-20 02:55:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1955','2005-06-17 08:40:22.000','811','311','2005-06-19 10:47:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1956','2005-06-17 08:43:32.000','1403','492','2005-06-21 11:08:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1957','2005-06-17 08:50:58.000','2496','68','2005-06-26 13:39:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1958','2005-06-17 08:52:01.000','1843','581','2005-06-23 07:55:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1959','2005-06-17 08:54:10.000','1464','554','2005-06-20 05:02:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1960','2005-06-17 08:59:57.000','2202','27','2005-06-23 14:38:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1961','2005-06-17 09:02:58.000','2851','384','2005-06-20 03:07:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1962','2005-06-17 09:08:58.000','4386','536','2005-06-23 14:55:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1963','2005-06-17 09:09:31.000','1943','154','2005-06-24 13:16:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1964','2005-06-17 09:10:09.000','3390','53','2005-06-21 15:08:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1965','2005-06-17 09:17:39.000','480','256','2005-06-18 12:35:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1966','2005-06-17 09:19:45.000','2085','6','2005-06-20 11:19:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1967','2005-06-17 09:19:52.000','3225','558','2005-06-21 03:35:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1968','2005-06-17 09:20:36.000','1139','246','2005-06-18 11:06:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1969','2005-06-17 09:22:22.000','4450','337','2005-06-21 05:31:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1970','2005-06-17 09:23:16.000','1358','303','2005-06-22 09:40:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1971','2005-06-17 09:23:59.000','2870','357','2005-06-25 13:20:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1972','2005-06-17 09:25:49.000','2758','526','2005-06-24 09:59:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1973','2005-06-17 09:26:15.000','3669','256','2005-06-21 10:18:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1974','2005-06-17 09:30:05.000','1979','111','2005-06-21 12:10:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1975','2005-06-17 09:32:10.000','2520','468','2005-06-23 03:50:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1976','2005-06-17 09:38:08.000','3631','184','2005-06-23 07:23:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1977','2005-06-17 09:38:22.000','2468','459','2005-06-23 14:19:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1978','2005-06-17 09:42:34.000','1590','278','2005-06-20 09:13:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1979','2005-06-17 09:45:30.000','3470','45','2005-06-20 10:52:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1980','2005-06-17 09:48:05.000','2985','328','2005-06-23 14:43:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1981','2005-06-17 10:03:34.000','3186','526','2005-06-20 13:14:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1982','2005-06-17 10:12:15.000','1091','566','2005-06-20 13:56:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1983','2005-06-17 10:22:13.000','1955','365','2005-06-24 05:04:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1984','2005-06-17 10:25:28.000','3417','380','2005-06-23 08:18:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1985','2005-06-17 10:31:37.000','87','411','2005-06-22 11:17:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1986','2005-06-17 10:34:59.000','2894','541','2005-06-24 04:57:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1987','2005-06-17 10:40:36.000','110','479','2005-06-23 14:23:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1988','2005-06-17 10:42:34.000','3054','261','2005-06-25 11:47:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1989','2005-06-17 10:47:24.000','634','35','2005-06-19 05:12:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1990','2005-06-17 10:48:44.000','1471','571','2005-06-24 08:11:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1991','2005-06-17 10:49:23.000','3963','105','2005-06-25 10:48:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1992','2005-06-17 10:58:53.000','636','233','2005-06-19 08:42:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1993','2005-06-17 10:59:24.000','168','234','2005-06-23 07:30:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1994','2005-06-17 11:07:06.000','2203','346','2005-06-25 08:32:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1995','2005-06-17 11:11:14.000','1866','10','2005-06-26 16:37:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1996','2005-06-17 11:17:45.000','3074','149','2005-06-26 09:42:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1997','2005-06-17 11:19:43.000','846','411','2005-06-19 14:18:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1998','2005-06-17 11:24:57.000','4365','562','2005-06-26 09:48:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('1999','2005-06-17 11:30:08.000','3704','111','2005-06-23 08:36:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2000','2005-06-17 11:32:30.000','323','163','2005-06-22 13:37:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2001','2005-06-17 11:35:09.000','2069','260','2005-06-21 14:52:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2002','2005-06-17 11:39:58.000','2406','514','2005-06-24 15:41:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2003','2005-06-17 11:40:35.000','1581','515','2005-06-19 08:30:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2004','2005-06-17 11:43:38.000','1342','171','2005-06-24 08:05:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2005','2005-06-17 11:44:54.000','4177','234','2005-06-19 10:53:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2006','2005-06-17 11:47:03.000','992','215','2005-06-19 13:47:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2007','2005-06-17 11:47:17.000','1123','572','2005-06-21 07:19:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2008','2005-06-17 11:48:05.000','2081','570','2005-06-25 13:16:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2009','2005-06-17 11:48:31.000','1902','119','2005-06-18 09:34:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2010','2005-06-17 11:54:15.000','2845','329','2005-06-21 05:55:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2011','2005-06-17 11:56:09.000','734','350','2005-06-24 06:47:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2012','2005-06-17 11:57:15.000','3588','84','2005-06-24 17:18:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2013','2005-06-17 12:03:01.000','3256','165','2005-06-24 10:04:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2014','2005-06-17 12:03:28.000','2969','337','2005-06-25 16:00:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2015','2005-06-17 12:16:29.000','3776','484','2005-06-18 14:40:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2016','2005-06-17 12:18:36.000','4265','282','2005-06-20 12:13:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2017','2005-06-17 12:33:30.000','1434','516','2005-06-19 10:08:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2018','2005-06-17 12:35:58.000','1278','380','2005-06-26 13:16:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2019','2005-06-17 12:38:44.000','2314','528','2005-06-23 17:38:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2020','2005-06-17 12:39:50.000','1914','384','2005-06-19 14:59:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2021','2005-06-17 12:41:18.000','2852','319','2005-06-23 17:17:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2022','2005-06-17 12:44:39.000','3053','547','2005-06-25 12:32:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2023','2005-06-17 12:52:58.000','787','169','2005-06-23 11:07:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2024','2005-06-17 13:00:51.000','2566','329','2005-06-22 07:03:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2025','2005-06-17 13:04:00.000','1203','447','2005-06-18 18:45:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2026','2005-06-17 13:05:38.000','3681','491','2005-06-21 17:19:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2027','2005-06-17 13:06:56.000','4309','265','2005-06-23 13:46:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2028','2005-06-17 13:08:08.000','4451','155','2005-06-23 10:54:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2029','2005-06-17 13:10:59.000','914','512','2005-06-19 18:15:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2030','2005-06-17 13:13:27.000','4024','457','2005-06-19 10:44:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2031','2005-06-17 13:14:03.000','4275','570','2005-06-25 10:06:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2032','2005-06-17 13:24:07.000','425','316','2005-06-18 18:18:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2033','2005-06-17 13:24:43.000','58','90','2005-06-20 12:34:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2034','2005-06-17 13:27:16.000','1512','587','2005-06-22 08:53:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2035','2005-06-17 13:45:09.000','4371','158','2005-06-26 15:30:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2036','2005-06-17 13:46:52.000','100','486','2005-06-18 15:42:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2037','2005-06-17 13:54:20.000','2582','308','2005-06-20 14:49:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2038','2005-06-17 14:00:51.000','4231','138','2005-06-19 11:54:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2039','2005-06-17 14:03:43.000','1514','304','2005-06-24 09:21:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2040','2005-06-17 14:18:37.000','227','260','2005-06-22 19:08:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2041','2005-06-17 14:19:00.000','782','348','2005-06-26 08:38:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2042','2005-06-17 14:31:02.000','3102','84','2005-06-18 14:43:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2043','2005-06-17 14:31:12.000','2495','4','2005-06-19 11:04:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2044','2005-06-17 14:37:57.000','2418','484','2005-06-22 17:15:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2045','2005-06-17 14:38:11.000','561','391','2005-06-26 13:44:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2046','2005-06-17 14:39:50.000','872','374','2005-06-24 16:02:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2047','2005-06-17 14:40:58.000','2371','201','2005-06-21 08:52:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2048','2005-06-17 14:55:29.000','2055','454','2005-06-23 16:29:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2049','2005-06-17 14:58:36.000','1053','182','2005-06-22 14:53:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2050','2005-06-17 15:07:30.000','1963','549','2005-06-18 14:43:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2051','2005-06-17 15:10:16.000','2366','191','2005-06-19 20:45:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2052','2005-06-17 15:14:43.000','1686','172','2005-06-21 11:08:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2053','2005-06-17 15:19:34.000','4279','521','2005-06-19 10:06:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2054','2005-06-17 15:26:37.000','1588','295','2005-06-26 14:22:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2055','2005-06-17 15:27:03.000','1399','593','2005-06-25 13:44:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2056','2005-06-17 15:27:33.000','229','42','2005-06-20 13:04:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2057','2005-06-17 15:31:58.000','2803','190','2005-06-25 09:39:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2058','2005-06-17 15:34:41.000','1324','57','2005-06-25 14:50:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2059','2005-06-17 15:36:12.000','739','114','2005-06-18 19:01:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2060','2005-06-17 15:42:42.000','1523','64','2005-06-22 16:39:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2061','2005-06-17 15:47:00.000','4575','108','2005-06-24 16:36:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2062','2005-06-17 15:56:43.000','1749','55','2005-06-20 21:37:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2063','2005-06-17 15:56:53.000','4323','5','2005-06-21 14:19:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2064','2005-06-17 15:57:56.000','1970','67','2005-06-23 21:04:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2065','2005-06-17 16:03:46.000','844','266','2005-06-22 16:41:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2066','2005-06-17 16:07:08.000','2561','248','2005-06-24 15:20:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2067','2005-06-17 16:11:08.000','1711','297','2005-06-22 13:01:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2068','2005-06-17 16:11:46.000','4252','387','2005-06-20 11:28:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2069','2005-06-17 16:19:39.000','2746','551','2005-06-26 16:48:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2070','2005-06-17 16:27:51.000','2609','24','2005-06-20 20:46:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2071','2005-06-17 16:33:17.000','2867','479','2005-06-23 21:51:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2072','2005-06-17 16:33:32.000','86','261','2005-06-23 13:22:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2073','2005-06-17 16:33:59.000','3530','410','2005-06-19 11:57:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2074','2005-06-17 16:40:03.000','71','495','2005-06-20 21:34:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2075','2005-06-17 16:40:33.000','2415','459','2005-06-19 13:55:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2076','2005-06-17 16:43:47.000','2242','217','2005-06-24 11:12:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2077','2005-06-17 16:46:11.000','4478','113','2005-06-19 15:10:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2078','2005-06-17 16:48:55.000','2021','278','2005-06-19 18:01:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2079','2005-06-17 16:49:45.000','3853','465','2005-06-18 18:10:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2080','2005-06-17 16:59:40.000','1231','476','2005-06-21 11:28:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2081','2005-06-17 17:05:02.000','917','253','2005-06-26 20:26:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2082','2005-06-17 17:13:32.000','434','254','2005-06-19 16:16:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2083','2005-06-17 17:14:00.000','2423','97','2005-06-18 18:31:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2084','2005-06-17 17:17:19.000','428','92','2005-06-22 14:57:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2085','2005-06-17 17:30:56.000','2275','214','2005-06-23 12:13:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2086','2005-06-17 17:32:07.000','898','326','2005-06-21 20:19:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2087','2005-06-17 17:35:10.000','466','398','2005-06-26 13:52:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2088','2005-06-17 17:35:30.000','506','310','2005-06-23 20:13:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2089','2005-06-17 17:45:09.000','4030','156','2005-06-25 16:41:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2090','2005-06-17 18:06:14.000','17','197','2005-06-22 23:52:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2091','2005-06-17 18:09:04.000','4033','260','2005-06-26 12:11:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2092','2005-06-17 18:12:16.000','4427','556','2005-06-25 15:06:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2093','2005-06-17 18:14:08.000','814','26','2005-06-26 18:10:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2094','2005-06-17 18:18:56.000','2205','308','2005-06-18 19:36:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2095','2005-06-17 18:21:35.000','1907','8','2005-06-23 23:49:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2096','2005-06-17 18:33:04.000','1069','431','2005-06-21 17:29:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2097','2005-06-17 18:40:04.000','569','439','2005-06-23 13:49:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2098','2005-06-17 18:42:09.000','3951','274','2005-06-19 20:40:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2099','2005-06-17 18:47:26.000','3660','146','2005-06-24 22:31:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2100','2005-06-17 18:53:21.000','2267','387','2005-06-19 21:49:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2101','2005-06-17 18:57:02.000','2137','581','2005-06-20 15:38:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2102','2005-06-17 19:05:22.000','2316','486','2005-06-23 23:21:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2103','2005-06-17 19:13:10.000','1469','456','2005-06-21 21:32:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2104','2005-06-17 19:14:30.000','3084','136','2005-06-19 16:26:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2105','2005-06-17 19:15:45.000','4090','57','2005-06-20 16:00:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2106','2005-06-17 19:29:03.000','643','66','2005-06-23 18:17:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2107','2005-06-17 19:31:16.000','1270','104','2005-06-18 23:33:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2108','2005-06-17 19:35:26.000','1395','503','2005-06-25 15:45:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2109','2005-06-17 19:41:42.000','2292','493','2005-06-25 17:03:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2110','2005-06-17 19:45:49.000','3592','163','2005-06-26 18:59:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2111','2005-06-17 19:47:21.000','2108','76','2005-06-19 22:46:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2112','2005-06-17 19:52:42.000','1629','18','2005-06-25 00:00:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2113','2005-06-17 19:57:46.000','1509','406','2005-06-24 00:22:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2114','2005-06-17 20:00:25.000','3541','358','2005-06-23 18:51:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2115','2005-06-17 20:02:16.000','3448','270','2005-06-25 16:56:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2116','2005-06-17 20:16:12.000','2373','24','2005-06-18 17:03:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2117','2005-06-17 20:24:00.000','2','170','2005-06-23 17:45:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2118','2005-06-17 20:28:29.000','1261','103','2005-06-23 22:47:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2119','2005-06-17 20:34:42.000','2104','561','2005-06-22 00:05:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2120','2005-06-17 20:36:50.000','1498','182','2005-06-27 01:18:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2121','2005-06-17 20:38:54.000','141','467','2005-06-22 23:06:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2122','2005-06-17 20:48:27.000','2932','245','2005-06-23 00:58:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2123','2005-06-17 20:48:30.000','2497','545','2005-06-18 19:17:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2124','2005-06-17 20:49:14.000','1273','178','2005-06-23 17:44:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2125','2005-06-17 20:53:42.000','4303','473','2005-06-19 01:53:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2126','2005-06-17 20:54:36.000','4276','263','2005-06-27 02:16:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2127','2005-06-17 20:54:48.000','3757','187','2005-06-18 16:28:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2128','2005-06-17 20:54:58.000','352','2','2005-06-24 00:41:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2129','2005-06-17 20:58:32.000','1930','249','2005-06-23 22:22:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2130','2005-06-17 21:00:44.000','1369','413','2005-06-26 00:05:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2131','2005-06-17 21:02:25.000','4424','85','2005-06-25 18:45:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2132','2005-06-17 21:05:06.000','2636','186','2005-06-20 18:10:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2133','2005-06-17 21:10:05.000','932','268','2005-06-23 22:41:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2134','2005-06-17 21:13:44.000','1699','378','2005-06-26 16:28:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2135','2005-06-17 21:14:02.000','4091','39','2005-06-19 00:59:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2136','2005-06-17 21:16:41.000','2651','20','2005-06-24 22:42:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2137','2005-06-17 21:18:28.000','1158','581','2005-06-20 21:05:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2138','2005-06-17 21:28:14.000','512','254','2005-06-22 01:16:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2139','2005-06-17 21:29:34.000','807','236','2005-06-26 21:05:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2140','2005-06-17 21:40:29.000','2395','56','2005-06-19 00:42:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2141','2005-06-17 21:41:34.000','2176','86','2005-06-19 00:15:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2142','2005-06-17 21:55:43.000','1787','253','2005-06-26 19:41:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2143','2005-06-17 21:58:13.000','1257','507','2005-06-19 23:59:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2144','2005-06-17 22:05:40.000','3303','46','2005-06-21 02:53:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2145','2005-06-17 22:10:36.000','238','388','2005-06-18 21:07:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2146','2005-06-17 22:26:23.000','326','456','2005-06-26 17:10:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2147','2005-06-17 22:28:13.000','2752','279','2005-06-22 20:50:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2148','2005-06-17 22:44:35.000','315','338','2005-06-26 19:43:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2149','2005-06-17 22:50:00.000','3365','333','2005-06-26 18:40:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2150','2005-06-17 22:50:36.000','1910','406','2005-06-21 19:33:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2151','2005-06-17 22:52:37.000','407','329','2005-06-20 22:00:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2152','2005-06-17 22:53:27.000','2665','307','2005-06-23 19:19:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2153','2005-06-17 22:58:04.000','2440','357','2005-06-24 19:38:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2154','2005-06-17 22:59:42.000','1655','30','2005-06-24 04:11:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2155','2005-06-17 23:07:29.000','3640','227','2005-06-25 03:23:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2156','2005-06-17 23:08:12.000','623','237','2005-06-22 19:44:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2157','2005-06-17 23:30:52.000','1619','201','2005-06-24 01:56:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2158','2005-06-17 23:36:27.000','243','530','2005-06-19 19:25:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2159','2005-06-17 23:37:29.000','3095','465','2005-06-25 00:18:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2160','2005-06-17 23:39:11.000','1644','32','2005-06-22 20:04:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2161','2005-06-17 23:39:50.000','3149','75','2005-06-26 23:28:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2162','2005-06-17 23:45:47.000','1790','277','2005-06-21 21:03:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2163','2005-06-17 23:46:16.000','2600','130','2005-06-22 22:48:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2164','2005-06-17 23:46:21.000','3442','227','2005-06-24 19:10:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2165','2005-06-17 23:51:10.000','2392','471','2005-06-21 23:54:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2166','2005-06-17 23:51:21.000','4343','305','2005-06-27 01:06:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2167','2005-06-17 23:51:28.000','3796','307','2005-06-21 00:43:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2168','2005-06-17 23:53:24.000','802','308','2005-06-20 01:11:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2169','2005-06-17 23:57:23.000','785','120','2005-06-19 20:14:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2170','2005-06-17 23:57:34.000','3989','42','2005-06-22 03:37:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2171','2005-06-18 00:06:04.000','1768','147','2005-06-24 18:09:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2172','2005-06-18 00:06:16.000','2912','457','2005-06-26 00:50:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2173','2005-06-18 00:08:20.000','995','65','2005-06-25 05:30:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2174','2005-06-18 00:09:01.000','3279','520','2005-06-25 23:14:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2175','2005-06-18 00:17:58.000','4038','17','2005-06-22 23:18:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2176','2005-06-18 00:29:51.000','4201','282','2005-06-21 01:41:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2177','2005-06-18 00:34:45.000','492','340','2005-06-26 18:40:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2178','2005-06-18 00:38:35.000','2950','260','2005-06-21 02:56:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2179','2005-06-18 00:41:36.000','4334','338','2005-06-19 02:17:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2180','2005-06-18 00:47:43.000','3564','497','2005-06-25 04:12:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2181','2005-06-18 00:48:31.000','3481','176','2005-06-25 06:43:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2182','2005-06-18 00:56:18.000','3494','454','2005-06-26 20:01:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2183','2005-06-18 01:06:01.000','1776','340','2005-06-22 01:20:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2184','2005-06-18 01:10:36.000','3468','537','2005-06-21 05:59:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2185','2005-06-18 01:12:22.000','4326','198','2005-06-20 20:41:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2186','2005-06-18 01:15:27.000','2050','204','2005-06-21 06:16:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2187','2005-06-18 01:17:27.000','1385','477','2005-06-20 22:18:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2188','2005-06-18 01:19:04.000','712','183','2005-06-25 03:59:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2189','2005-06-18 01:20:26.000','249','500','2005-06-25 00:30:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2190','2005-06-18 01:29:51.000','4398','342','2005-06-26 04:31:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2191','2005-06-18 01:33:09.000','3369','58','2005-06-19 20:18:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2192','2005-06-18 01:35:47.000','1886','456','2005-06-23 23:38:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2193','2005-06-18 01:38:45.000','1013','112','2005-06-22 19:51:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2194','2005-06-18 01:41:37.000','1827','149','2005-06-25 04:27:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2195','2005-06-18 01:44:46.000','2247','286','2005-06-25 20:50:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2196','2005-06-18 01:47:07.000','1925','240','2005-06-26 03:18:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2197','2005-06-18 01:50:27.000','3350','103','2005-06-19 01:31:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2198','2005-06-18 01:51:22.000','1983','109','2005-06-26 06:57:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2199','2005-06-18 01:57:56.000','99','171','2005-06-23 20:34:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2200','2005-06-18 01:59:16.000','1085','229','2005-06-26 23:25:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2201','2005-06-18 02:08:27.000','1864','489','2005-06-23 01:40:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2202','2005-06-18 02:09:24.000','815','297','2005-06-26 07:17:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2203','2005-06-18 02:10:42.000','1347','46','2005-06-22 06:25:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2204','2005-06-18 02:11:38.000','1137','426','2005-06-24 00:28:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2205','2005-06-18 02:14:34.000','1245','593','2005-06-25 05:11:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2206','2005-06-18 02:14:45.000','3651','438','2005-06-24 23:20:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2207','2005-06-18 02:19:21.000','182','78','2005-06-24 02:25:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2208','2005-06-18 02:22:07.000','2345','132','2005-06-23 07:24:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2209','2005-06-18 02:24:01.000','2441','13','2005-06-22 04:13:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2210','2005-06-18 02:27:01.000','219','108','2005-06-21 00:45:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2211','2005-06-18 02:29:10.000','4114','166','2005-06-22 02:02:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2212','2005-06-18 02:36:10.000','2458','336','2005-06-19 21:21:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2213','2005-06-18 02:36:47.000','949','98','2005-06-23 05:02:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2214','2005-06-18 02:44:37.000','2430','366','2005-06-18 23:37:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2215','2005-06-18 02:48:21.000','2060','239','2005-06-22 01:03:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2216','2005-06-18 03:08:17.000','1428','320','2005-06-19 08:13:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2217','2005-06-18 03:12:29.000','2260','118','2005-06-20 06:08:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2218','2005-06-18 03:13:13.000','3577','176','2005-06-18 21:16:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2219','2005-06-18 03:16:54.000','1881','393','2005-06-22 01:29:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2220','2005-06-18 03:21:36.000','320','587','2005-06-21 07:45:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2221','2005-06-18 03:24:56.000','3905','156','2005-06-22 08:27:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2222','2005-06-18 03:26:23.000','3834','10','2005-06-26 08:50:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2223','2005-06-18 03:27:03.000','4068','303','2005-06-27 09:19:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2224','2005-06-18 03:33:58.000','1336','153','2005-06-18 22:10:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2225','2005-06-18 03:35:40.000','2829','503','2005-06-23 03:05:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2226','2005-06-18 03:39:56.000','3487','225','2005-06-24 07:26:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2227','2005-06-18 03:43:23.000','3623','200','2005-06-19 05:55:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2228','2005-06-18 03:44:50.000','490','383','2005-06-23 00:28:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2229','2005-06-18 03:50:18.000','2840','35','2005-06-26 07:16:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2230','2005-06-18 03:50:49.000','833','256','2005-06-25 01:12:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2231','2005-06-18 03:52:14.000','2280','35','2005-06-23 06:52:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2232','2005-06-18 03:54:31.000','2463','52','2005-06-22 07:29:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2233','2005-06-18 03:57:36.000','3063','31','2005-06-21 09:42:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2234','2005-06-18 04:01:28.000','234','182','2005-06-24 04:55:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2235','2005-06-18 04:08:50.000','3463','21','2005-06-27 07:58:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2236','2005-06-18 04:12:33.000','4001','375','2005-06-23 04:07:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2237','2005-06-18 04:17:44.000','1821','205','2005-06-27 09:08:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2238','2005-06-18 04:22:06.000','2859','251','2005-06-27 03:29:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2239','2005-06-18 04:23:54.000','4419','437','2005-06-26 00:12:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2240','2005-06-18 04:28:27.000','1409','122','2005-06-22 07:48:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2241','2005-06-18 04:31:41.000','921','406','2005-06-24 22:34:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2242','2005-06-18 04:32:28.000','1995','146','2005-06-24 03:26:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2243','2005-06-18 04:33:03.000','1254','328','2005-06-23 04:14:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2244','2005-06-18 04:46:33.000','3629','233','2005-06-20 04:28:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2245','2005-06-18 04:52:59.000','1496','194','2005-06-24 05:07:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2246','2005-06-18 04:54:29.000','4287','414','2005-06-22 09:14:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2248','2005-06-18 04:59:48.000','1999','446','2005-06-19 08:51:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2249','2005-06-18 05:03:08.000','117','285','2005-06-26 05:43:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2250','2005-06-18 05:03:36.000','4042','7','2005-06-22 02:25:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2251','2005-06-18 05:05:08.000','1458','143','2005-06-23 08:34:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2252','2005-06-18 05:05:18.000','1987','383','2005-06-21 08:19:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2253','2005-06-18 05:11:43.000','3719','122','2005-06-25 03:30:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2254','2005-06-18 05:15:14.000','1084','281','2005-06-27 04:10:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2255','2005-06-18 05:21:12.000','24','410','2005-06-26 09:19:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2256','2005-06-18 05:21:56.000','1863','93','2005-06-27 02:06:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2257','2005-06-18 05:29:52.000','2846','34','2005-06-22 00:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2258','2005-06-18 05:30:36.000','4573','292','2005-06-24 09:09:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2259','2005-06-18 05:37:45.000','4103','491','2005-06-21 01:51:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2260','2005-06-18 05:38:36.000','2773','297','2005-06-20 08:08:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2261','2005-06-18 05:46:15.000','1763','570','2005-06-24 05:06:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2262','2005-06-18 05:49:46.000','4172','218','2005-06-20 00:25:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2263','2005-06-18 05:57:47.000','3259','452','2005-06-20 06:13:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2264','2005-06-18 05:58:45.000','150','240','2005-06-19 00:57:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2265','2005-06-18 06:03:27.000','3069','267','2005-06-20 01:16:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2266','2005-06-18 06:05:02.000','2596','452','2005-06-20 06:54:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2267','2005-06-18 06:10:23.000','2086','218','2005-06-20 00:39:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2268','2005-06-18 06:13:41.000','4380','21','2005-06-22 08:53:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2269','2005-06-18 06:20:54.000','3088','431','2005-06-25 04:51:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2270','2005-06-18 06:29:01.000','3447','588','2005-06-26 07:21:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2271','2005-06-18 06:29:52.000','2416','145','2005-06-21 09:46:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2272','2005-06-18 06:29:53.000','1364','599','2005-06-23 10:58:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2273','2005-06-18 06:30:02.000','4456','327','2005-06-20 07:07:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2274','2005-06-18 06:31:15.000','3021','347','2005-06-21 01:24:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2275','2005-06-18 06:31:29.000','2805','354','2005-06-24 10:04:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2276','2005-06-18 06:33:48.000','1145','594','2005-06-25 00:50:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2277','2005-06-18 06:35:03.000','3770','224','2005-06-19 01:26:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2278','2005-06-18 06:37:57.000','1166','450','2005-06-22 10:57:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2279','2005-06-18 06:38:22.000','1953','554','2005-06-27 07:16:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2280','2005-06-18 06:46:54.000','4568','548','2005-06-26 09:48:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2281','2005-06-18 06:47:29.000','4212','431','2005-06-20 10:27:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2282','2005-06-18 06:48:23.000','4388','113','2005-06-24 11:04:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2283','2005-06-18 06:56:06.000','2056','507','2005-06-19 05:11:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2284','2005-06-18 06:59:51.000','2682','228','2005-06-24 04:58:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2285','2005-06-18 07:00:54.000','755','447','2005-06-25 08:58:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2286','2005-06-18 07:02:32.000','618','287','2005-06-27 12:33:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2287','2005-06-18 07:04:36.000','1473','317','2005-06-27 03:00:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2288','2005-06-18 07:23:17.000','877','247','2005-06-26 07:44:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2289','2005-06-18 07:29:43.000','2030','392','2005-06-24 11:16:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2290','2005-06-18 07:34:37.000','200','513','2005-06-26 11:45:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2291','2005-06-18 07:36:46.000','3949','436','2005-06-26 04:57:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2292','2005-06-18 07:37:48.000','173','130','2005-06-20 02:45:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2293','2005-06-18 07:45:03.000','3209','178','2005-06-24 08:12:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2294','2005-06-18 07:46:34.000','2096','72','2005-06-22 12:34:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2295','2005-06-18 07:56:18.000','3250','106','2005-06-21 07:10:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2296','2005-06-18 08:10:42.000','4558','481','2005-06-20 12:26:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2297','2005-06-18 08:17:41.000','2262','111','2005-06-26 05:08:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2298','2005-06-18 08:18:29.000','1227','497','2005-06-24 11:51:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2299','2005-06-18 08:18:52.000','4339','28','2005-06-26 11:48:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2300','2005-06-18 08:22:34.000','1617','291','2005-06-24 04:51:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2301','2005-06-18 08:24:03.000','869','273','2005-06-25 10:31:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2302','2005-06-18 08:27:33.000','1852','42','2005-06-22 02:46:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2303','2005-06-18 08:27:59.000','1524','329','2005-06-22 10:58:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2304','2005-06-18 08:30:15.000','3543','327','2005-06-23 06:17:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2305','2005-06-18 08:31:18.000','622','149','2005-06-24 06:18:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2306','2005-06-18 08:33:23.000','208','477','2005-06-27 10:01:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2307','2005-06-18 08:34:59.000','4576','47','2005-06-23 04:42:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2308','2005-06-18 08:41:48.000','197','1','2005-06-22 03:36:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2309','2005-06-18 08:43:24.000','611','576','2005-06-20 03:56:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2310','2005-06-18 08:45:59.000','2590','409','2005-06-26 05:06:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2311','2005-06-18 08:51:29.000','4506','236','2005-06-25 07:51:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2312','2005-06-18 08:55:46.000','402','184','2005-06-24 04:34:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2313','2005-06-18 08:56:45.000','3134','379','2005-06-26 10:30:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2314','2005-06-18 09:03:19.000','2157','160','2005-06-19 12:14:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2315','2005-06-18 09:03:39.000','2766','372','2005-06-22 11:18:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2316','2005-06-18 09:04:59.000','372','289','2005-06-20 09:39:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2317','2005-06-18 09:12:18.000','1602','326','2005-06-21 05:50:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2318','2005-06-18 09:13:54.000','2328','383','2005-06-23 07:19:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2319','2005-06-18 09:24:22.000','1521','393','2005-06-26 14:12:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2320','2005-06-18 09:24:50.000','597','552','2005-06-24 07:59:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2321','2005-06-18 09:42:42.000','1160','565','2005-06-25 14:28:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2322','2005-06-18 09:44:21.000','1893','213','2005-06-25 09:29:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2323','2005-06-18 09:55:02.000','207','54','2005-06-23 07:19:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2324','2005-06-18 10:00:33.000','2987','268','2005-06-23 14:10:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2325','2005-06-18 10:08:07.000','752','406','2005-06-21 15:07:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2326','2005-06-18 10:14:22.000','3829','174','2005-06-24 07:01:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2327','2005-06-18 10:16:40.000','1351','571','2005-06-20 15:06:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2328','2005-06-18 10:17:21.000','2304','441','2005-06-21 04:18:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2329','2005-06-18 10:22:52.000','4156','587','2005-06-20 12:03:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2330','2005-06-18 10:41:19.000','4285','390','2005-06-25 10:48:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2331','2005-06-18 10:50:09.000','1546','221','2005-06-25 14:30:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2332','2005-06-18 10:53:51.000','2152','140','2005-06-24 12:06:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2333','2005-06-18 10:55:54.000','2323','283','2005-06-25 07:09:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2334','2005-06-18 10:56:24.000','3076','223','2005-06-22 10:38:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2335','2005-06-18 10:59:36.000','3968','446','2005-06-26 06:42:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2336','2005-06-18 11:00:05.000','3888','124','2005-06-25 06:02:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2337','2005-06-18 11:15:27.000','4522','582','2005-06-26 06:59:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2338','2005-06-18 11:24:54.000','3165','316','2005-06-19 07:34:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2339','2005-06-18 11:29:22.000','313','297','2005-06-21 10:29:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2340','2005-06-18 11:30:56.000','1913','157','2005-06-23 06:00:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2341','2005-06-18 11:35:30.000','638','31','2005-06-27 11:56:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2342','2005-06-18 11:42:40.000','2169','146','2005-06-20 14:40:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2343','2005-06-18 11:46:26.000','4554','20','2005-06-22 11:37:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2344','2005-06-18 12:01:47.000','2015','498','2005-06-19 11:56:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2345','2005-06-18 12:03:23.000','1818','6','2005-06-22 14:25:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2346','2005-06-18 12:08:16.000','2575','308','2005-06-27 15:02:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2347','2005-06-18 12:12:29.000','4516','194','2005-06-23 14:03:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2348','2005-06-18 12:15:43.000','3622','449','2005-06-24 14:03:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2349','2005-06-18 12:25:14.000','1536','495','2005-06-19 11:24:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2350','2005-06-18 12:25:29.000','1179','471','2005-06-23 11:35:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2351','2005-06-18 12:27:57.000','2942','216','2005-06-23 16:14:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2352','2005-06-18 12:40:15.000','2141','590','2005-06-22 07:07:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2353','2005-06-18 12:53:25.000','3223','361','2005-06-19 13:53:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2354','2005-06-18 12:54:18.000','2793','77','2005-06-26 07:23:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2355','2005-06-18 12:57:06.000','3613','125','2005-06-26 07:32:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2356','2005-06-18 12:59:23.000','2207','455','2005-06-21 10:12:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2357','2005-06-18 12:59:41.000','1323','561','2005-06-26 16:40:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2358','2005-06-18 13:00:51.000','1728','478','2005-06-26 12:58:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2359','2005-06-18 13:04:42.000','3087','201','2005-06-25 11:52:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2360','2005-06-18 13:11:13.000','37','57','2005-06-23 15:32:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2361','2005-06-18 13:19:05.000','3547','546','2005-06-23 07:59:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2362','2005-06-18 13:31:15.000','2815','514','2005-06-19 12:35:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2363','2005-06-18 13:33:59.000','3497','1','2005-06-19 17:40:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2364','2005-06-18 13:37:32.000','2856','512','2005-06-23 14:18:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2365','2005-06-18 13:45:34.000','3109','493','2005-06-21 12:12:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2366','2005-06-18 13:46:39.000','1413','162','2005-06-23 18:49:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2367','2005-06-18 14:00:31.000','4086','566','2005-06-22 14:45:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2368','2005-06-18 14:10:27.000','1058','99','2005-06-23 10:49:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2369','2005-06-18 14:25:29.000','1515','44','2005-06-23 18:45:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2370','2005-06-18 14:29:54.000','2656','489','2005-06-24 10:23:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2371','2005-06-18 14:35:29.000','178','248','2005-06-22 09:38:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2372','2005-06-18 14:37:37.000','1567','96','2005-06-21 08:40:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2373','2005-06-18 14:37:57.000','2780','544','2005-06-23 19:29:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2374','2005-06-18 14:44:06.000','2634','71','2005-06-22 17:14:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2375','2005-06-18 14:47:29.000','2175','259','2005-06-26 13:52:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2376','2005-06-18 14:55:30.000','3664','479','2005-06-25 17:40:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2377','2005-06-18 14:56:23.000','3568','193','2005-06-27 12:36:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2378','2005-06-18 14:57:49.000','2796','384','2005-06-26 18:23:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2379','2005-06-18 14:59:39.000','2708','597','2005-06-24 13:26:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2380','2005-06-18 15:00:04.000','4413','256','2005-06-24 13:29:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2381','2005-06-18 15:00:30.000','1491','167','2005-06-22 11:38:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2382','2005-06-18 15:03:52.000','915','568','2005-06-20 10:16:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2383','2005-06-18 15:17:59.000','2459','149','2005-06-26 18:42:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2384','2005-06-18 15:18:49.000','3378','132','2005-06-21 18:10:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2385','2005-06-18 15:22:40.000','1641','298','2005-06-26 10:02:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2386','2005-06-18 15:22:51.000','1361','293','2005-06-22 20:01:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2387','2005-06-18 15:24:19.000','692','289','2005-06-25 17:41:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2388','2005-06-18 15:26:30.000','2923','53','2005-06-20 20:24:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2389','2005-06-18 15:27:47.000','731','382','2005-06-21 12:26:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2390','2005-06-18 15:29:26.000','2748','239','2005-06-23 17:50:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2391','2005-06-18 15:33:30.000','2850','491','2005-06-25 14:30:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2392','2005-06-18 15:34:18.000','2213','261','2005-06-19 16:22:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2393','2005-06-18 15:37:55.000','3143','21','2005-06-25 17:11:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2394','2005-06-18 15:42:30.000','2669','60','2005-06-26 16:12:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2395','2005-06-18 15:45:15.000','899','544','2005-06-27 19:11:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2396','2005-06-18 15:49:48.000','1986','31','2005-06-27 20:31:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2397','2005-06-18 15:51:25.000','2895','76','2005-06-24 15:52:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2398','2005-06-18 15:56:53.000','3001','526','2005-06-27 14:25:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2399','2005-06-18 16:06:14.000','2492','577','2005-06-26 16:56:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2400','2005-06-18 16:10:46.000','3194','410','2005-06-25 20:34:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2401','2005-06-18 16:22:03.000','85','359','2005-06-19 13:49:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2402','2005-06-18 16:24:45.000','2833','360','2005-06-27 14:39:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2403','2005-06-18 16:33:22.000','2697','536','2005-06-23 19:25:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2404','2005-06-18 16:33:48.000','4138','456','2005-06-23 20:39:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2405','2005-06-18 16:36:38.000','3604','356','2005-06-21 19:15:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2406','2005-06-18 16:39:37.000','1321','497','2005-06-23 12:04:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2407','2005-06-18 16:50:41.000','2547','421','2005-06-24 15:29:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2408','2005-06-18 16:50:44.000','258','87','2005-06-19 20:11:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2409','2005-06-18 16:53:33.000','656','84','2005-06-20 18:23:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2410','2005-06-18 16:55:08.000','265','381','2005-06-20 12:40:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2411','2005-06-18 16:55:54.000','3302','558','2005-06-25 12:44:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2412','2005-06-18 16:58:58.000','1946','127','2005-06-27 22:57:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2413','2005-06-18 16:59:34.000','1851','170','2005-06-27 16:10:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2414','2005-06-18 17:01:55.000','4500','275','2005-06-20 17:42:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2415','2005-06-18 17:02:42.000','3105','434','2005-06-25 13:16:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2416','2005-06-18 17:07:34.000','2868','26','2005-06-24 19:16:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2417','2005-06-18 17:12:01.000','1956','219','2005-06-26 13:32:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2418','2005-06-18 17:14:42.000','2756','381','2005-06-26 16:33:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2419','2005-06-18 17:21:24.000','1255','102','2005-06-26 18:25:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2420','2005-06-18 17:22:28.000','241','502','2005-06-23 17:45:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2421','2005-06-18 17:25:05.000','3524','26','2005-06-23 21:09:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2422','2005-06-18 17:28:57.000','3170','527','2005-06-23 15:22:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2423','2005-06-18 17:32:08.000','1744','231','2005-06-21 11:58:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2424','2005-06-18 17:35:08.000','1884','233','2005-06-23 15:33:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2425','2005-06-18 17:37:45.000','2630','579','2005-06-27 18:40:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2426','2005-06-18 17:40:44.000','474','543','2005-06-22 14:30:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2427','2005-06-18 17:45:00.000','4278','176','2005-06-27 20:07:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2428','2005-06-18 17:47:34.000','3892','241','2005-06-19 14:39:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2429','2005-06-18 17:48:28.000','3238','583','2005-06-27 15:52:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2430','2005-06-18 17:51:46.000','1984','434','2005-06-23 19:17:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2431','2005-06-18 17:53:03.000','1383','295','2005-06-25 15:08:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2432','2005-06-18 17:59:18.000','4420','250','2005-06-25 15:19:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2433','2005-06-18 18:10:17.000','937','356','2005-06-23 14:46:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2434','2005-06-18 18:11:51.000','3739','12','2005-06-23 12:52:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2435','2005-06-18 18:12:26.000','3548','173','2005-06-22 13:43:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2436','2005-06-18 18:13:32.000','3328','534','2005-06-21 13:33:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2437','2005-06-18 18:30:26.000','1799','454','2005-06-21 18:36:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2438','2005-06-18 18:34:21.000','184','31','2005-06-19 16:50:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2439','2005-06-18 18:35:04.000','909','39','2005-06-21 19:47:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2440','2005-06-18 18:41:09.000','2866','380','2005-06-22 12:46:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2441','2005-06-18 18:45:11.000','3148','593','2005-06-20 00:42:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2442','2005-06-18 18:49:18.000','4045','364','2005-06-22 16:18:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2443','2005-06-18 18:52:30.000','1622','233','2005-06-24 21:27:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2444','2005-06-18 18:58:12.000','2233','576','2005-06-27 20:48:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2445','2005-06-18 19:02:11.000','2887','98','2005-06-23 22:25:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2446','2005-06-18 19:04:41.000','1283','466','2005-06-27 17:10:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2447','2005-06-18 19:10:55.000','2353','523','2005-06-27 16:35:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2448','2005-06-18 19:13:45.000','1642','308','2005-06-27 14:43:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2449','2005-06-18 19:18:36.000','3630','498','2005-06-27 23:49:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2450','2005-06-18 19:25:47.000','863','230','2005-06-27 15:54:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2451','2005-06-18 19:28:02.000','835','24','2005-06-23 16:41:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2452','2005-06-18 19:29:21.000','4318','77','2005-06-26 22:27:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2453','2005-06-18 19:30:53.000','2562','588','2005-06-20 17:22:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2454','2005-06-18 19:32:51.000','314','253','2005-06-24 20:03:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2455','2005-06-18 19:33:06.000','870','241','2005-06-21 15:21:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2456','2005-06-18 19:36:50.000','553','147','2005-06-23 22:48:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2457','2005-06-18 19:38:20.000','1277','91','2005-06-26 20:48:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2458','2005-06-18 19:39:05.000','599','572','2005-06-21 13:54:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2459','2005-06-18 19:44:08.000','1024','185','2005-06-23 19:14:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2460','2005-06-18 19:54:13.000','3933','553','2005-06-27 22:36:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2461','2005-06-18 19:58:12.000','78','343','2005-06-28 01:35:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2462','2005-06-18 20:00:15.000','2151','468','2005-06-21 21:54:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2463','2005-06-18 20:01:43.000','1186','194','2005-06-25 15:04:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2464','2005-06-18 20:06:05.000','463','380','2005-06-20 19:22:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2465','2005-06-18 20:07:02.000','3783','160','2005-06-25 20:55:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2466','2005-06-18 20:18:42.000','1356','427','2005-06-20 01:32:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2467','2005-06-18 20:20:05.000','4387','177','2005-06-20 17:01:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2468','2005-06-18 20:23:52.000','1833','382','2005-06-23 14:34:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2469','2005-06-18 20:24:23.000','1993','137','2005-06-27 15:39:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2470','2005-06-18 20:28:31.000','4319','40','2005-06-25 18:48:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2471','2005-06-18 20:31:00.000','3399','183','2005-06-24 18:01:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2472','2005-06-18 20:32:40.000','4556','70','2005-06-20 00:40:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2473','2005-06-18 20:42:45.000','3876','221','2005-06-19 20:17:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2474','2005-06-18 20:51:34.000','3450','151','2005-06-25 01:39:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2475','2005-06-18 20:52:46.000','889','336','2005-06-21 19:40:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2476','2005-06-18 20:57:12.000','3998','334','2005-06-20 15:42:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2477','2005-06-18 20:58:46.000','2510','206','2005-06-22 21:49:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2478','2005-06-18 21:01:21.000','2798','241','2005-06-24 00:20:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2479','2005-06-18 21:03:08.000','1624','408','2005-06-22 16:49:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2480','2005-06-18 21:04:09.000','4078','310','2005-06-22 16:24:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2481','2005-06-18 21:08:30.000','800','322','2005-06-23 02:35:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2482','2005-06-18 21:10:44.000','452','122','2005-06-19 20:39:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2483','2005-06-18 21:22:23.000','4225','88','2005-06-25 01:14:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2484','2005-06-18 21:25:23.000','1511','515','2005-06-24 16:03:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2485','2005-06-18 21:26:03.000','1562','56','2005-06-21 22:09:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2486','2005-06-18 21:26:56.000','268','15','2005-06-22 23:42:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2487','2005-06-18 21:32:54.000','3683','374','2005-06-23 21:11:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2488','2005-06-18 21:38:26.000','1338','403','2005-06-24 02:08:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2489','2005-06-18 22:00:44.000','4012','382','2005-06-22 02:06:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2490','2005-06-18 22:00:50.000','1934','402','2005-06-19 23:45:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2491','2005-06-18 22:01:31.000','1779','316','2005-06-26 02:46:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2492','2005-06-18 22:04:15.000','2858','237','2005-06-23 21:58:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2493','2005-06-18 22:12:09.000','4121','269','2005-06-27 23:44:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2494','2005-06-18 22:15:09.000','1313','434','2005-06-25 17:23:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2495','2005-06-18 22:15:42.000','3826','338','2005-06-21 23:21:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2496','2005-06-18 22:20:11.000','646','527','2005-06-20 03:08:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2497','2005-06-18 22:50:40.000','2327','171','2005-06-26 22:39:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2498','2005-06-18 22:56:26.000','2291','74','2005-06-22 20:02:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2499','2005-06-18 23:01:36.000','3172','348','2005-06-20 21:50:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2500','2005-06-18 23:07:12.000','4241','12','2005-06-26 17:27:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2501','2005-06-18 23:10:11.000','1185','450','2005-06-24 18:40:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2502','2005-06-18 23:12:13.000','2622','325','2005-06-20 04:19:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2503','2005-06-18 23:17:19.000','2486','176','2005-06-23 03:57:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2504','2005-06-18 23:19:53.000','1684','452','2005-06-21 04:43:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2505','2005-06-18 23:28:27.000','1670','519','2005-06-26 01:36:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2506','2005-06-18 23:29:53.000','2308','82','2005-06-25 18:11:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2507','2005-06-18 23:39:22.000','3121','325','2005-06-21 19:23:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2508','2005-06-18 23:43:58.000','4322','476','2005-06-20 19:26:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2509','2005-06-18 23:44:08.000','4469','213','2005-06-20 01:36:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2510','2005-06-18 23:44:21.000','3827','384','2005-06-24 00:31:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2511','2005-06-18 23:45:30.000','1824','234','2005-06-24 01:21:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2512','2005-06-18 23:48:47.000','4515','27','2005-06-21 04:58:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2513','2005-06-18 23:53:15.000','3379','515','2005-06-24 21:16:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2514','2005-06-18 23:56:44.000','2559','382','2005-06-23 21:10:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2515','2005-06-18 23:57:31.000','3213','188','2005-06-22 05:31:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2516','2005-06-19 00:03:28.000','2678','87','2005-06-21 00:30:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2517','2005-06-19 00:11:26.000','53','74','2005-06-25 02:19:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2518','2005-06-19 00:16:23.000','3503','86','2005-06-25 19:28:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2519','2005-06-19 00:19:21.000','1172','128','2005-06-25 01:46:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2520','2005-06-19 00:29:00.000','4181','446','2005-06-28 04:36:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2521','2005-06-19 00:41:08.000','132','92','2005-06-22 00:40:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2522','2005-06-19 00:43:42.000','550','579','2005-06-28 04:26:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2523','2005-06-19 00:45:56.000','460','89','2005-06-21 00:54:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2524','2005-06-19 00:48:11.000','441','465','2005-06-25 01:46:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2525','2005-06-19 00:48:22.000','1307','365','2005-06-24 19:10:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2526','2005-06-19 01:03:07.000','3309','500','2005-06-28 06:57:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2527','2005-06-19 01:10:31.000','387','463','2005-06-20 05:37:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2528','2005-06-19 01:14:12.000','1836','331','2005-06-26 05:08:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2529','2005-06-19 01:18:27.000','2306','478','2005-06-24 00:26:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2530','2005-06-19 01:20:00.000','4166','31','2005-06-23 04:10:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2531','2005-06-19 01:20:49.000','768','368','2005-06-22 01:50:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2532','2005-06-19 01:27:46.000','1870','26','2005-06-20 02:15:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2533','2005-06-19 01:34:26.000','4564','187','2005-06-22 20:19:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2534','2005-06-19 01:38:39.000','2540','517','2005-06-23 00:16:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2535','2005-06-19 01:39:04.000','901','130','2005-06-28 01:33:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2536','2005-06-19 01:41:34.000','4232','163','2005-06-27 03:11:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2537','2005-06-19 01:52:21.000','3499','388','2005-06-26 02:09:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2538','2005-06-19 01:56:59.000','1287','472','2005-06-25 00:54:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2539','2005-06-19 01:58:39.000','4474','527','2005-06-19 22:17:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2540','2005-06-19 02:04:48.000','4305','363','2005-06-20 22:42:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2541','2005-06-19 02:08:10.000','129','360','2005-06-23 23:32:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2542','2005-06-19 02:08:39.000','1446','67','2005-06-26 20:25:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2543','2005-06-19 02:14:11.000','1729','58','2005-06-21 00:40:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2544','2005-06-19 02:16:17.000','1465','558','2005-06-22 21:45:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2545','2005-06-19 02:23:36.000','3237','413','2005-06-20 03:17:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2546','2005-06-19 02:39:39.000','971','272','2005-06-23 03:56:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2547','2005-06-19 02:44:17.000','4560','162','2005-06-24 08:01:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2548','2005-06-19 02:45:35.000','4292','561','2005-06-22 06:52:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2549','2005-06-19 02:46:39.000','3854','495','2005-06-26 22:30:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2550','2005-06-19 02:49:55.000','1370','38','2005-06-24 01:37:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2551','2005-06-19 02:51:04.000','2007','444','2005-06-28 05:02:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2552','2005-06-19 03:01:29.000','664','389','2005-06-28 04:13:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2553','2005-06-19 03:04:59.000','923','473','2005-06-26 02:36:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2554','2005-06-19 03:05:38.000','3916','322','2005-06-25 23:03:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2555','2005-06-19 03:07:02.000','260','191','2005-06-25 05:25:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2556','2005-06-19 03:07:32.000','125','377','2005-06-23 23:09:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2557','2005-06-19 03:08:51.000','4546','257','2005-06-20 07:59:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2558','2005-06-19 03:09:16.000','2920','361','2005-06-24 05:29:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2559','2005-06-19 03:09:46.000','4433','414','2005-06-28 07:49:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2560','2005-06-19 03:12:42.000','3340','309','2005-06-28 02:28:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2561','2005-06-19 03:14:52.000','4128','256','2005-06-21 02:42:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2562','2005-06-19 03:15:05.000','51','265','2005-06-21 08:26:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2563','2005-06-19 03:24:17.000','1935','41','2005-06-23 04:08:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2564','2005-06-19 03:41:10.000','4008','408','2005-06-24 03:10:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2565','2005-06-19 03:44:03.000','2347','128','2005-06-24 01:26:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2566','2005-06-19 03:45:39.000','495','486','2005-06-25 08:43:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2567','2005-06-19 04:04:46.000','216','496','2005-06-19 23:39:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2568','2005-06-19 04:09:03.000','3032','190','2005-06-24 23:24:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2569','2005-06-19 04:19:04.000','30','213','2005-06-26 04:31:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2570','2005-06-19 04:20:13.000','1105','5','2005-06-25 07:00:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2571','2005-06-19 04:20:14.000','1800','66','2005-06-21 07:28:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2572','2005-06-19 04:21:26.000','2449','159','2005-06-23 09:22:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2573','2005-06-19 04:23:18.000','3354','563','2005-06-23 06:04:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2574','2005-06-19 04:23:52.000','3320','143','2005-06-20 05:24:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2575','2005-06-19 04:32:52.000','354','336','2005-06-24 09:37:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2576','2005-06-19 04:34:15.000','2928','559','2005-06-28 10:02:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2577','2005-06-19 04:36:03.000','447','66','2005-06-28 00:38:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2578','2005-06-19 04:40:06.000','1695','267','2005-06-26 09:37:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2579','2005-06-19 04:40:44.000','3836','493','2005-06-22 09:22:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2580','2005-06-19 04:44:30.000','2527','219','2005-06-23 04:15:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2581','2005-06-19 04:54:13.000','376','456','2005-06-23 23:28:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2582','2005-06-19 04:56:27.000','201','267','2005-06-26 08:56:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2583','2005-06-19 05:01:40.000','3999','523','2005-06-28 00:04:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2584','2005-06-19 05:02:36.000','3733','90','2005-06-28 04:52:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2585','2005-06-19 05:05:03.000','91','406','2005-06-20 09:28:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2586','2005-06-19 05:05:11.000','4104','537','2005-06-27 00:23:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2587','2005-06-19 05:06:14.000','2188','331','2005-06-24 10:50:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2588','2005-06-19 05:20:31.000','3626','143','2005-06-22 04:20:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2589','2005-06-19 05:21:27.000','225','164','2005-06-21 09:55:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2590','2005-06-19 05:31:40.000','3572','324','2005-06-20 07:58:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2591','2005-06-19 05:32:22.000','4481','438','2005-06-25 23:42:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2592','2005-06-19 05:36:54.000','282','208','2005-06-21 08:44:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2593','2005-06-19 05:40:11.000','2031','556','2005-06-28 08:11:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2594','2005-06-19 05:43:43.000','829','123','2005-06-25 03:41:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2595','2005-06-19 05:43:55.000','3197','122','2005-06-25 10:20:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2596','2005-06-19 05:48:26.000','2229','80','2005-06-24 10:16:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2597','2005-06-19 05:53:46.000','2278','407','2005-06-20 05:14:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2598','2005-06-19 05:59:57.000','2079','265','2005-06-24 11:44:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2599','2005-06-19 06:06:07.000','461','171','2005-06-27 01:10:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2600','2005-06-19 06:07:25.000','469','423','2005-06-28 03:37:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2601','2005-06-19 06:09:44.000','2898','98','2005-06-20 08:03:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2602','2005-06-19 06:10:08.000','4124','173','2005-06-24 00:39:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2603','2005-06-19 06:21:25.000','587','222','2005-06-26 03:19:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2604','2005-06-19 06:30:10.000','2889','28','2005-06-25 11:16:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2605','2005-06-19 06:48:01.000','2342','38','2005-06-25 07:00:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2606','2005-06-19 06:51:32.000','4133','364','2005-06-21 03:15:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2607','2005-06-19 06:55:01.000','3922','340','2005-06-25 03:21:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2608','2005-06-19 07:10:36.000','1618','132','2005-06-24 13:09:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2609','2005-06-19 07:13:12.000','2254','383','2005-06-28 12:30:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2610','2005-06-19 07:16:20.000','3845','542','2005-06-25 09:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2611','2005-06-19 07:18:17.000','3682','301','2005-06-21 10:19:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2612','2005-06-19 07:19:41.000','1691','287','2005-06-25 11:10:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2613','2005-06-19 07:25:50.000','3830','179','2005-06-21 03:04:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2614','2005-06-19 07:28:11.000','4147','145','2005-06-22 12:33:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2615','2005-06-19 07:29:13.000','3810','578','2005-06-27 12:50:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2616','2005-06-19 07:33:00.000','581','478','2005-06-28 03:05:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2617','2005-06-19 07:48:31.000','204','313','2005-06-27 11:56:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2618','2005-06-19 08:03:01.000','2465','310','2005-06-24 03:23:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2619','2005-06-19 08:03:12.000','1848','350','2005-06-21 05:02:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2620','2005-06-19 08:06:29.000','3183','94','2005-06-24 11:42:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2621','2005-06-19 08:07:31.000','1746','439','2005-06-28 05:36:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2622','2005-06-19 08:10:41.000','1393','573','2005-06-28 10:44:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2623','2005-06-19 08:11:51.000','4477','12','2005-06-26 12:28:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2624','2005-06-19 08:22:09.000','3071','32','2005-06-27 11:13:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2625','2005-06-19 08:23:11.000','3946','25','2005-06-26 09:52:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2626','2005-06-19 08:28:44.000','2816','450','2005-06-24 03:58:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2627','2005-06-19 08:32:00.000','2779','592','2005-06-24 04:31:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2628','2005-06-19 08:34:53.000','3917','3','2005-06-28 04:19:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2629','2005-06-19 08:42:12.000','1810','458','2005-06-28 03:38:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2630','2005-06-19 08:47:21.000','3904','236','2005-06-25 09:31:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2631','2005-06-19 08:49:53.000','3471','39','2005-06-26 03:25:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2632','2005-06-19 08:51:47.000','2274','574','2005-06-23 07:13:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2633','2005-06-19 08:53:10.000','3462','68','2005-06-20 07:56:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2634','2005-06-19 08:55:17.000','3687','318','2005-06-20 11:44:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2635','2005-06-19 09:08:45.000','3332','105','2005-06-26 09:20:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2636','2005-06-19 09:13:06.000','2102','253','2005-06-25 07:47:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2637','2005-06-19 09:20:56.000','2736','327','2005-06-27 10:09:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2638','2005-06-19 09:23:30.000','2944','295','2005-06-26 14:56:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2639','2005-06-19 09:24:02.000','3971','116','2005-06-21 14:16:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2640','2005-06-19 09:26:13.000','721','540','2005-06-20 14:38:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2641','2005-06-19 09:38:33.000','231','374','2005-06-22 09:55:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2642','2005-06-19 09:39:01.000','2065','4','2005-06-25 08:33:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2643','2005-06-19 09:39:27.000','1928','318','2005-06-26 10:27:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2644','2005-06-19 09:42:30.000','1923','309','2005-06-27 07:23:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2645','2005-06-19 09:50:35.000','2284','181','2005-06-28 06:47:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2646','2005-06-19 09:56:01.000','3511','275','2005-06-21 04:15:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2647','2005-06-19 09:57:56.000','1954','54','2005-06-22 15:55:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2648','2005-06-19 10:06:20.000','1620','31','2005-06-21 04:30:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2649','2005-06-19 10:20:09.000','98','153','2005-06-21 10:05:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2650','2005-06-19 10:21:45.000','4211','209','2005-06-21 08:01:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2651','2005-06-19 10:22:56.000','2181','576','2005-06-27 13:37:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2652','2005-06-19 10:35:26.000','3108','589','2005-06-28 08:03:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2653','2005-06-19 10:36:53.000','3528','340','2005-06-26 15:15:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2654','2005-06-19 10:37:54.000','3697','405','2005-06-27 11:44:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2655','2005-06-19 10:38:42.000','1649','29','2005-06-23 14:20:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2656','2005-06-19 10:42:33.000','559','280','2005-06-24 08:31:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2657','2005-06-19 10:42:59.000','3595','19','2005-06-28 12:37:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2658','2005-06-19 10:43:42.000','3281','156','2005-06-24 16:23:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2659','2005-06-19 10:47:42.000','66','139','2005-06-23 14:03:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2660','2005-06-19 10:50:02.000','4341','221','2005-06-28 12:49:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2661','2005-06-19 10:50:52.000','3652','452','2005-06-25 08:44:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2662','2005-06-19 10:53:42.000','3936','68','2005-06-20 11:41:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2663','2005-06-19 10:54:00.000','1012','583','2005-06-20 16:48:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2664','2005-06-19 11:11:23.000','3496','299','2005-06-28 08:30:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2665','2005-06-19 11:12:35.000','4531','133','2005-06-26 11:55:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2666','2005-06-19 11:17:12.000','1872','454','2005-06-28 12:47:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2667','2005-06-19 11:28:46.000','1028','200','2005-06-27 11:48:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2668','2005-06-19 11:28:47.000','3127','568','2005-06-24 10:12:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2669','2005-06-19 11:28:52.000','2734','523','2005-06-20 16:43:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2670','2005-06-19 11:30:16.000','3518','457','2005-06-21 17:25:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2671','2005-06-19 11:33:11.000','2164','451','2005-06-26 14:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2672','2005-06-19 11:42:04.000','1164','420','2005-06-25 09:14:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2673','2005-06-19 11:42:20.000','2487','29','2005-06-23 07:16:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2674','2005-06-19 11:47:59.000','3744','585','2005-06-20 08:09:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2675','2005-06-19 11:52:15.000','3078','230','2005-06-23 16:45:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2676','2005-06-19 11:54:57.000','3938','477','2005-06-24 15:34:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2677','2005-06-19 12:01:59.000','4384','428','2005-06-21 06:15:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2678','2005-06-19 12:12:23.000','4230','258','2005-06-21 16:28:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2679','2005-06-19 12:12:30.000','1994','109','2005-06-27 08:27:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2680','2005-06-19 12:13:37.000','865','114','2005-06-27 15:15:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2681','2005-06-19 12:15:27.000','2704','196','2005-06-21 16:48:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2682','2005-06-19 12:18:17.000','3609','538','2005-06-28 14:09:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2683','2005-06-19 12:27:19.000','2860','241','2005-06-21 16:26:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2684','2005-06-19 12:29:08.000','1225','17','2005-06-28 08:50:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2685','2005-06-19 12:35:21.000','1170','283','2005-06-22 16:58:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2686','2005-06-19 12:44:20.000','2686','68','2005-06-20 16:00:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2687','2005-06-19 12:46:52.000','3152','254','2005-06-23 06:58:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2688','2005-06-19 12:50:56.000','4281','309','2005-06-28 17:58:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2689','2005-06-19 12:58:53.000','2478','567','2005-06-24 17:35:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2690','2005-06-19 13:00:02.000','1381','391','2005-06-27 14:29:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2691','2005-06-19 13:06:50.000','3469','242','2005-06-26 15:56:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2692','2005-06-19 13:08:19.000','3162','388','2005-06-21 16:45:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2693','2005-06-19 13:11:47.000','2570','107','2005-06-27 11:17:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2694','2005-06-19 13:17:21.000','380','368','2005-06-24 15:09:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2695','2005-06-19 13:25:53.000','190','208','2005-06-24 17:12:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2696','2005-06-19 13:28:42.000','2110','597','2005-06-28 14:06:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2697','2005-06-19 13:29:08.000','2271','448','2005-06-23 13:21:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2698','2005-06-19 13:29:11.000','3900','420','2005-06-20 07:31:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2699','2005-06-19 13:29:28.000','72','267','2005-06-24 11:15:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2700','2005-06-19 13:31:52.000','928','180','2005-06-27 19:30:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2701','2005-06-19 13:33:06.000','1623','29','2005-06-28 15:11:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2702','2005-06-19 13:35:56.000','1736','329','2005-06-20 14:07:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2703','2005-06-19 13:36:06.000','4080','319','2005-06-28 08:26:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2704','2005-06-19 13:50:10.000','2026','246','2005-06-26 18:25:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2705','2005-06-19 13:54:30.000','1191','562','2005-06-20 12:31:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2706','2005-06-19 13:56:51.000','373','559','2005-06-21 17:23:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2707','2005-06-19 13:57:08.000','4486','589','2005-06-27 11:09:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2708','2005-06-19 13:59:05.000','2659','541','2005-06-24 10:02:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2709','2005-06-19 14:00:26.000','2877','7','2005-06-23 14:56:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2710','2005-06-19 14:03:56.000','2965','446','2005-06-21 16:15:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2711','2005-06-19 14:12:22.000','3944','313','2005-06-21 09:29:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2712','2005-06-19 14:20:13.000','3132','411','2005-06-22 19:08:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2713','2005-06-19 14:23:09.000','3979','378','2005-06-20 17:55:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2714','2005-06-19 14:26:09.000','2853','81','2005-06-23 17:24:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2715','2005-06-19 14:29:35.000','2082','404','2005-06-26 08:44:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2716','2005-06-19 14:40:17.000','944','252','2005-06-27 17:45:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2717','2005-06-19 14:46:10.000','140','200','2005-06-22 20:17:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2718','2005-06-19 14:49:42.000','4443','139','2005-06-26 19:37:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2719','2005-06-19 14:50:19.000','1200','336','2005-06-20 14:33:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2720','2005-06-19 14:51:55.000','3597','504','2005-06-27 13:06:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2721','2005-06-19 14:53:24.000','3786','358','2005-06-21 18:22:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2722','2005-06-19 14:55:17.000','952','45','2005-06-25 13:11:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2723','2005-06-19 14:55:23.000','4317','277','2005-06-20 14:28:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2724','2005-06-19 14:57:54.000','3879','103','2005-06-22 16:31:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2725','2005-06-19 15:01:23.000','63','246','2005-06-22 09:08:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2726','2005-06-19 15:02:20.000','2970','420','2005-06-21 15:38:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2727','2005-06-19 15:02:39.000','3261','129','2005-06-28 17:49:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2728','2005-06-19 15:04:04.000','775','408','2005-06-22 12:22:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2729','2005-06-19 15:06:15.000','4449','510','2005-06-27 17:58:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2730','2005-06-19 15:10:09.000','1264','30','2005-06-28 13:05:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2731','2005-06-19 15:14:55.000','4218','138','2005-06-27 14:30:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2732','2005-06-19 15:19:39.000','610','386','2005-06-25 19:39:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2733','2005-06-19 15:21:53.000','1535','188','2005-06-23 11:58:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2734','2005-06-19 15:36:27.000','794','204','2005-06-20 13:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2735','2005-06-19 15:42:07.000','4550','29','2005-06-22 17:28:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2736','2005-06-19 15:43:20.000','4510','359','2005-06-21 13:03:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2737','2005-06-19 15:48:33.000','3131','513','2005-06-26 18:44:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2738','2005-06-19 15:56:30.000','350','75','2005-06-20 16:14:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2739','2005-06-19 15:58:38.000','213','212','2005-06-27 15:01:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2740','2005-06-19 15:59:04.000','1534','92','2005-06-28 12:18:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2741','2005-06-19 16:05:41.000','1662','36','2005-06-20 20:48:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2742','2005-06-19 16:05:47.000','4154','187','2005-06-26 21:34:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2743','2005-06-19 16:15:56.000','2611','35','2005-06-23 12:30:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2744','2005-06-19 16:20:40.000','4511','368','2005-06-22 11:44:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2745','2005-06-19 16:21:19.000','1253','26','2005-06-21 22:07:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2746','2005-06-19 16:21:40.000','933','562','2005-06-28 11:56:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2747','2005-06-19 16:22:07.000','1374','422','2005-06-24 19:28:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2748','2005-06-19 16:22:26.000','511','473','2005-06-21 21:55:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2749','2005-06-19 16:27:35.000','1540','358','2005-06-25 21:06:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2750','2005-06-19 16:37:24.000','3775','197','2005-06-20 13:55:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2751','2005-06-19 16:39:23.000','1291','148','2005-06-25 13:57:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2752','2005-06-19 16:44:18.000','386','149','2005-06-22 12:40:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2753','2005-06-19 16:44:35.000','2408','23','2005-06-24 13:45:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2754','2005-06-19 16:55:59.000','1761','267','2005-06-26 18:11:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2755','2005-06-19 16:56:31.000','946','506','2005-06-27 12:02:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2756','2005-06-19 16:57:42.000','3264','144','2005-06-26 15:30:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2757','2005-06-19 17:01:14.000','3814','243','2005-06-28 11:38:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2758','2005-06-19 17:04:35.000','3558','423','2005-06-26 14:45:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2759','2005-06-19 17:10:24.000','687','351','2005-06-24 21:56:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2760','2005-06-19 17:16:33.000','2602','192','2005-06-26 14:58:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2761','2005-06-19 17:22:17.000','2134','431','2005-06-20 20:20:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2762','2005-06-19 17:22:31.000','3431','457','2005-06-25 22:43:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2763','2005-06-19 17:23:34.000','3096','276','2005-06-21 21:37:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2764','2005-06-19 17:27:25.000','1718','479','2005-06-28 17:18:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2765','2005-06-19 17:34:39.000','1017','478','2005-06-27 23:26:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2766','2005-06-19 17:45:15.000','3421','345','2005-06-23 20:11:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2767','2005-06-19 17:46:35.000','4052','596','2005-06-24 22:42:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2768','2005-06-19 17:46:52.000','3018','129','2005-06-25 21:49:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2769','2005-06-19 17:52:14.000','1222','354','2005-06-26 20:30:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2770','2005-06-19 17:54:22.000','3042','533','2005-06-26 23:09:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2771','2005-06-19 17:54:48.000','40','262','2005-06-27 17:14:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2772','2005-06-19 17:59:27.000','1221','520','2005-06-23 17:52:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2773','2005-06-19 18:04:18.000','4155','505','2005-06-28 23:52:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2774','2005-06-19 18:05:11.000','2809','299','2005-06-21 16:21:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2775','2005-06-19 18:14:20.000','672','590','2005-06-26 19:52:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2776','2005-06-19 18:16:24.000','1726','551','2005-06-26 14:43:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2777','2005-06-19 18:16:26.000','4092','230','2005-06-20 13:43:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2778','2005-06-19 18:18:12.000','3357','422','2005-06-28 21:43:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2779','2005-06-19 18:19:07.000','1020','376','2005-06-23 18:25:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2780','2005-06-19 18:19:33.000','1513','360','2005-06-28 22:29:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2781','2005-06-19 18:24:42.000','1230','197','2005-06-27 17:02:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2782','2005-06-19 18:25:07.000','3644','156','2005-06-22 14:10:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2783','2005-06-19 18:29:10.000','2778','113','2005-06-21 22:09:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2784','2005-06-19 18:40:29.000','2305','289','2005-06-28 15:27:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2785','2005-06-19 18:43:57.000','826','137','2005-06-24 15:36:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2786','2005-06-19 18:46:43.000','2255','594','2005-06-22 16:52:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2787','2005-06-19 18:47:00.000','3371','307','2005-06-22 20:22:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2788','2005-06-19 18:48:11.000','1457','171','2005-06-21 13:32:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2789','2005-06-19 18:48:21.000','2398','514','2005-06-21 21:50:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2790','2005-06-19 18:49:45.000','202','97','2005-06-21 00:13:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2791','2005-06-19 18:51:27.000','2174','299','2005-06-22 19:35:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2792','2005-06-19 18:52:25.000','3057','437','2005-06-23 17:39:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2793','2005-06-19 18:52:37.000','732','419','2005-06-25 19:45:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2794','2005-06-19 18:53:05.000','1957','85','2005-06-22 13:15:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2795','2005-06-19 18:58:53.000','3694','129','2005-06-28 18:56:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2796','2005-06-19 19:00:37.000','2337','209','2005-06-25 17:18:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2797','2005-06-19 19:04:32.000','3222','486','2005-06-20 22:43:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2798','2005-06-19 19:07:48.000','1343','180','2005-06-23 00:09:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2799','2005-06-19 19:15:21.000','4579','576','2005-06-21 21:35:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2800','2005-06-19 19:15:56.000','183','146','2005-06-23 00:15:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2801','2005-06-19 19:18:09.000','4572','29','2005-06-20 20:11:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2802','2005-06-19 19:18:17.000','4067','489','2005-06-21 17:58:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2803','2005-06-19 19:18:27.000','103','120','2005-06-27 21:48:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2804','2005-06-19 19:24:54.000','88','426','2005-06-25 01:19:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2805','2005-06-19 19:29:17.000','2153','80','2005-06-27 23:14:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2806','2005-06-19 19:30:48.000','2114','510','2005-06-20 19:42:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2807','2005-06-19 19:32:53.000','2825','194','2005-06-25 00:30:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2808','2005-06-19 19:34:45.000','65','325','2005-06-27 14:49:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2809','2005-06-19 19:40:27.000','1786','44','2005-06-27 15:28:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2810','2005-06-19 19:44:12.000','2558','67','2005-06-20 19:41:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2811','2005-06-19 19:53:30.000','3890','457','2005-06-22 23:21:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2812','2005-06-19 19:58:16.000','3016','211','2005-06-26 15:26:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2813','2005-06-19 20:01:47.000','3420','284','2005-06-27 01:51:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2814','2005-06-19 20:01:59.000','1783','10','2005-06-26 01:28:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2815','2005-06-19 20:03:29.000','3046','27','2005-06-25 22:50:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2816','2005-06-19 20:04:23.000','2180','94','2005-06-20 21:09:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2817','2005-06-19 20:05:22.000','3476','510','2005-06-24 23:29:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2818','2005-06-19 20:05:52.000','2376','497','2005-06-22 01:01:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2819','2005-06-19 20:13:33.000','4100','82','2005-06-26 16:44:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2820','2005-06-19 20:20:33.000','851','316','2005-06-26 20:32:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2821','2005-06-19 20:26:52.000','2551','532','2005-06-27 23:48:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2822','2005-06-19 20:29:24.000','3599','48','2005-06-23 02:21:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2823','2005-06-19 20:30:21.000','3566','260','2005-06-26 17:58:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2824','2005-06-19 20:31:45.000','2878','506','2005-06-29 00:40:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2825','2005-06-19 20:32:19.000','2601','418','2005-06-22 22:32:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2826','2005-06-19 20:41:35.000','2980','125','2005-06-25 17:23:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2827','2005-06-19 20:50:01.000','2745','23','2005-06-20 18:54:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2828','2005-06-19 20:51:33.000','3230','526','2005-06-25 17:38:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2829','2005-06-19 21:11:30.000','2047','341','2005-06-24 18:10:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2830','2005-06-19 21:14:33.000','2080','21','2005-06-21 17:46:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2831','2005-06-19 21:17:06.000','4089','468','2005-06-22 16:56:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2832','2005-06-19 21:21:53.000','828','593','2005-06-28 23:00:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2833','2005-06-19 21:34:54.000','1976','232','2005-06-28 16:21:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2834','2005-06-19 21:41:46.000','2876','122','2005-06-24 20:47:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2835','2005-06-19 21:44:11.000','4411','89','2005-06-26 16:46:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2836','2005-06-19 21:58:21.000','1453','306','2005-06-27 00:41:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2837','2005-06-19 22:03:50.000','417','371','2005-06-20 21:24:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2838','2005-06-19 22:06:06.000','143','292','2005-06-25 22:30:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2839','2005-06-19 22:07:24.000','3856','256','2005-06-23 16:37:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2840','2005-06-19 22:17:44.000','1102','236','2005-06-26 00:36:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2841','2005-06-19 22:21:06.000','614','193','2005-06-28 00:56:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2842','2005-06-19 22:34:20.000','4183','217','2005-06-22 03:46:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2843','2005-06-19 22:36:39.000','1520','148','2005-06-26 22:33:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2844','2005-06-19 22:40:12.000','4452','178','2005-06-24 03:58:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2845','2005-06-19 22:46:37.000','3948','583','2005-06-23 03:31:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2846','2005-06-19 22:52:14.000','651','193','2005-06-22 17:12:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2847','2005-06-19 22:54:01.000','1247','148','2005-06-27 23:05:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2848','2005-06-19 22:55:37.000','3449','19','2005-06-25 23:10:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2849','2005-06-19 23:06:00.000','3628','283','2005-06-25 18:36:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2850','2005-06-19 23:06:28.000','206','262','2005-06-28 03:30:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2851','2005-06-19 23:07:03.000','2168','361','2005-06-22 17:26:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2852','2005-06-19 23:08:50.000','2695','453','2005-06-26 04:00:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2853','2005-06-19 23:09:41.000','2578','453','2005-06-28 00:51:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2854','2005-06-19 23:11:48.000','4453','81','2005-06-23 19:37:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2855','2005-06-19 23:11:49.000','3495','483','2005-06-26 21:52:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2856','2005-06-19 23:13:04.000','1859','210','2005-06-23 22:47:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2857','2005-06-19 23:15:15.000','2886','364','2005-06-25 04:24:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2858','2005-06-19 23:17:11.000','2628','268','2005-06-21 19:07:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2859','2005-06-19 23:18:42.000','126','147','2005-06-20 22:38:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2860','2005-06-19 23:20:40.000','3045','107','2005-06-21 04:59:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2861','2005-06-19 23:21:34.000','1489','116','2005-06-26 17:32:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2862','2005-06-19 23:47:24.000','4260','52','2005-06-23 03:39:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2863','2005-06-19 23:58:38.000','2410','228','2005-06-23 23:27:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2864','2005-06-20 00:00:52.000','1056','493','2005-06-26 04:21:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2865','2005-06-20 00:00:55.000','1569','10','2005-06-21 02:20:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2866','2005-06-20 00:01:36.000','2718','44','2005-06-20 21:39:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2867','2005-06-20 00:08:38.000','95','483','2005-06-23 19:35:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2868','2005-06-20 00:08:58.000','1213','214','2005-06-25 21:23:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2869','2005-06-20 00:09:25.000','1331','155','2005-06-24 04:40:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2870','2005-06-20 00:17:46.000','214','467','2005-06-28 20:21:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2871','2005-06-20 00:27:49.000','1731','443','2005-06-29 01:36:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2872','2005-06-20 00:38:21.000','3779','240','2005-06-26 19:56:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2873','2005-06-20 00:41:25.000','3321','160','2005-06-25 02:06:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2874','2005-06-20 00:42:26.000','331','166','2005-06-28 01:37:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2875','2005-06-20 00:47:18.000','3012','186','2005-06-25 18:54:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2876','2005-06-20 01:06:34.000','3117','39','2005-06-23 04:55:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2877','2005-06-20 01:07:16.000','485','267','2005-06-24 01:05:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2878','2005-06-20 01:09:14.000','4120','88','2005-06-21 21:40:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2879','2005-06-20 01:24:10.000','1920','583','2005-06-28 20:12:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2880','2005-06-20 01:24:54.000','1700','193','2005-06-23 02:42:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2881','2005-06-20 01:26:18.000','1391','307','2005-06-26 23:42:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2882','2005-06-20 01:26:26.000','205','152','2005-06-21 19:33:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2883','2005-06-20 01:29:10.000','585','320','2005-06-28 06:12:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2884','2005-06-20 01:31:16.000','3384','319','2005-06-21 04:03:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2885','2005-06-20 01:33:42.000','2701','330','2005-06-22 22:23:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2886','2005-06-20 01:38:39.000','1755','154','2005-06-23 04:28:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2887','2005-06-20 01:39:43.000','1073','453','2005-06-25 05:22:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2888','2005-06-20 01:50:56.000','468','7','2005-06-22 05:05:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2889','2005-06-20 01:54:08.000','151','213','2005-06-23 06:33:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2890','2005-06-20 02:00:45.000','3437','392','2005-06-27 21:12:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2891','2005-06-20 02:02:05.000','343','32','2005-06-25 02:45:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2892','2005-06-20 02:06:39.000','2993','430','2005-06-21 02:50:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2893','2005-06-20 02:22:08.000','397','153','2005-06-26 21:01:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2894','2005-06-20 02:22:42.000','4316','76','2005-06-22 00:38:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2895','2005-06-20 02:26:31.000','4445','141','2005-06-27 23:42:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2896','2005-06-20 02:33:42.000','1086','40','2005-06-26 05:29:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2897','2005-06-20 02:34:23.000','3464','107','2005-06-25 05:29:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2898','2005-06-20 02:38:06.000','3106','178','2005-06-29 08:18:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2899','2005-06-20 02:39:21.000','1919','459','2005-06-23 06:47:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2900','2005-06-20 02:40:04.000','3407','294','2005-06-27 20:47:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2901','2005-06-20 02:41:28.000','667','25','2005-06-23 04:43:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2902','2005-06-20 02:45:35.000','2787','304','2005-06-26 07:51:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2903','2005-06-20 02:49:01.000','3580','53','2005-06-25 05:03:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2904','2005-06-20 02:54:06.000','2195','55','2005-06-21 06:57:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2905','2005-06-20 02:56:16.000','3898','189','2005-06-24 23:51:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2906','2005-06-20 03:04:56.000','1087','58','2005-06-23 05:57:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2907','2005-06-20 03:15:09.000','2516','208','2005-06-20 21:56:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2908','2005-06-20 03:16:52.000','517','91','2005-06-22 08:46:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2909','2005-06-20 03:19:10.000','1701','451','2005-06-25 06:06:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2910','2005-06-20 03:31:18.000','630','57','2005-06-28 00:35:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2911','2005-06-20 03:32:37.000','3645','502','2005-06-22 22:06:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2912','2005-06-20 03:32:45.000','1076','196','2005-06-21 23:32:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2913','2005-06-20 03:42:27.000','3456','402','2005-06-23 04:47:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2914','2005-06-20 03:43:18.000','2419','342','2005-06-25 03:44:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2915','2005-06-20 03:57:17.000','1293','262','2005-06-24 05:59:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2916','2005-06-20 04:01:04.000','3086','590','2005-06-27 22:40:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2917','2005-06-20 04:08:35.000','647','451','2005-06-24 01:17:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2918','2005-06-20 04:09:04.000','1985','215','2005-06-21 10:07:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2919','2005-06-20 04:10:16.000','2835','509','2005-06-27 06:34:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2920','2005-06-20 04:12:46.000','487','588','2005-06-26 23:34:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2921','2005-06-20 04:13:04.000','1785','59','2005-06-28 01:28:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2922','2005-06-20 04:13:47.000','1671','176','2005-06-22 04:38:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2923','2005-06-20 04:16:07.000','109','29','2005-06-21 05:04:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2924','2005-06-20 04:20:14.000','580','132','2005-06-21 01:13:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2925','2005-06-20 04:23:49.000','804','301','2005-06-22 04:37:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2926','2005-06-20 04:37:45.000','1055','379','2005-06-26 02:17:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2927','2005-06-20 04:41:41.000','393','403','2005-06-23 01:59:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2928','2005-06-20 04:43:45.000','1265','104','2005-06-21 06:58:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2929','2005-06-20 04:47:39.000','3389','333','2005-06-25 23:16:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2930','2005-06-20 04:50:29.000','3615','585','2005-06-28 06:00:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2931','2005-06-20 04:50:45.000','3122','258','2005-06-29 09:18:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2932','2005-06-20 04:51:19.000','4418','526','2005-06-29 08:31:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2933','2005-06-20 04:52:23.000','4483','323','2005-06-26 07:12:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2934','2005-06-20 05:05:53.000','697','228','2005-06-22 02:44:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2935','2005-06-20 05:07:24.000','2735','384','2005-06-28 09:17:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2936','2005-06-20 05:09:27.000','2675','330','2005-06-26 10:16:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2937','2005-06-20 05:15:37.000','1998','15','2005-06-27 02:45:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2938','2005-06-20 05:17:22.000','1795','504','2005-06-26 09:38:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2939','2005-06-20 05:18:16.000','2638','203','2005-06-26 06:56:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2940','2005-06-20 05:20:01.000','2504','73','2005-06-28 06:11:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2941','2005-06-20 05:22:18.000','3632','135','2005-06-26 07:40:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2942','2005-06-20 05:27:31.000','999','242','2005-06-29 00:35:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2943','2005-06-20 05:43:05.000','2591','418','2005-06-25 04:31:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2944','2005-06-20 05:43:42.000','1550','474','2005-06-29 09:40:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2945','2005-06-20 05:49:27.000','4193','153','2005-06-26 09:48:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2946','2005-06-20 05:50:40.000','3737','213','2005-06-21 00:42:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2947','2005-06-20 06:00:21.000','4302','151','2005-06-23 10:04:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2948','2005-06-20 06:02:35.000','4254','289','2005-06-29 09:12:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2949','2005-06-20 06:05:53.000','375','78','2005-06-29 03:19:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2950','2005-06-20 06:08:36.000','1438','561','2005-06-27 07:45:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2951','2005-06-20 06:23:01.000','2903','404','2005-06-24 00:26:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2952','2005-06-20 06:26:57.000','3759','13','2005-06-22 11:51:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2953','2005-06-20 06:39:11.000','1829','540','2005-06-26 06:19:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2954','2005-06-20 06:45:00.000','377','336','2005-06-23 11:43:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2955','2005-06-20 06:46:35.000','2312','244','2005-06-25 05:34:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2956','2005-06-20 06:47:23.000','2684','533','2005-06-22 07:24:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2957','2005-06-20 06:53:47.000','4034','542','2005-06-29 09:21:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2958','2005-06-20 06:56:20.000','1380','260','2005-06-29 02:33:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2959','2005-06-20 07:07:54.000','4185','372','2005-06-27 03:31:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2960','2005-06-20 07:10:09.000','3970','16','2005-06-26 08:14:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2961','2005-06-20 07:29:15.000','4539','399','2005-06-24 08:05:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2962','2005-06-20 07:31:55.000','2978','364','2005-06-26 04:43:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2963','2005-06-20 07:33:09.000','1444','24','2005-06-28 09:23:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2964','2005-06-20 07:33:29.000','1201','590','2005-06-29 12:48:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2965','2005-06-20 07:33:38.000','27','46','2005-06-29 11:45:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2966','2005-06-20 07:39:33.000','3483','511','2005-06-29 07:48:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2967','2005-06-20 07:40:35.000','4243','311','2005-06-29 05:50:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2968','2005-06-20 07:41:47.000','4415','252','2005-06-23 04:27:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2969','2005-06-20 07:44:27.000','1748','418','2005-06-22 06:12:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2970','2005-06-20 07:51:51.000','1167','449','2005-06-28 10:14:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2971','2005-06-20 07:56:00.000','1585','410','2005-06-27 11:38:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2972','2005-06-20 07:57:54.000','2232','531','2005-06-21 12:48:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2973','2005-06-20 07:59:27.000','2626','96','2005-06-24 12:31:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2974','2005-06-20 08:00:24.000','2322','472','2005-06-25 05:10:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2975','2005-06-20 08:06:18.000','4534','46','2005-06-21 08:01:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2976','2005-06-20 08:09:11.000','4210','55','2005-06-21 10:45:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2977','2005-06-20 08:15:27.000','2645','571','2005-06-29 04:30:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2978','2005-06-20 08:25:16.000','4364','548','2005-06-23 05:42:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2979','2005-06-20 08:31:05.000','3961','589','2005-06-27 12:25:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2980','2005-06-20 08:35:03.000','310','343','2005-06-29 07:57:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2981','2005-06-20 08:35:17.000','522','387','2005-06-28 09:14:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2982','2005-06-20 08:38:29.000','2574','130','2005-06-28 13:21:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2983','2005-06-20 08:41:42.000','1349','322','2005-06-29 04:02:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2984','2005-06-20 08:43:44.000','1819','435','2005-06-22 03:08:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2985','2005-06-20 08:45:08.000','122','154','2005-06-22 04:26:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2986','2005-06-20 08:50:28.000','478','556','2005-06-26 05:24:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2987','2005-06-20 08:55:50.000','1531','349','2005-06-28 13:02:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2988','2005-06-20 08:59:08.000','3160','557','2005-06-28 04:31:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2989','2005-06-20 08:59:37.000','1586','56','2005-06-22 03:27:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2990','2005-06-20 09:02:51.000','4559','18','2005-06-29 13:19:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2991','2005-06-20 09:10:43.000','4308','472','2005-06-23 13:04:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2992','2005-06-20 09:11:51.000','3347','439','2005-06-24 05:59:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2993','2005-06-20 09:12:12.000','1527','40','2005-06-22 13:36:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2994','2005-06-20 09:17:05.000','1290','163','2005-06-29 04:41:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2995','2005-06-20 09:18:22.000','4544','573','2005-06-26 14:31:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2996','2005-06-20 09:20:29.000','4064','500','2005-06-27 09:18:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2997','2005-06-20 09:23:45.000','1449','519','2005-06-29 08:15:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2998','2005-06-20 09:30:22.000','1288','380','2005-06-24 06:31:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('2999','2005-06-20 09:30:34.000','735','295','2005-06-26 05:51:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3000','2005-06-20 09:32:33.000','549','50','2005-06-22 07:45:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3001','2005-06-20 09:50:16.000','2941','393','2005-06-28 05:13:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3002','2005-06-20 09:56:12.000','2749','266','2005-06-24 12:15:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3003','2005-06-20 10:00:51.000','616','38','2005-06-22 06:28:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3004','2005-06-20 10:04:36.000','2836','113','2005-06-23 07:38:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3005','2005-06-20 10:10:29.000','286','598','2005-06-28 15:48:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3006','2005-06-20 10:10:29.000','1677','133','2005-06-22 07:26:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3007','2005-06-20 10:11:53.000','1950','7','2005-06-25 04:51:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3008','2005-06-20 10:23:25.000','3383','202','2005-06-26 11:00:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3009','2005-06-20 10:24:44.000','2721','280','2005-06-23 13:39:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3010','2005-06-20 10:29:59.000','1298','567','2005-06-27 06:52:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3011','2005-06-20 10:39:10.000','4376','147','2005-06-28 07:02:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3012','2005-06-20 10:43:13.000','1392','206','2005-06-28 10:07:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3013','2005-06-20 10:45:09.000','4146','290','2005-06-26 04:55:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3014','2005-06-20 10:45:20.000','2179','434','2005-06-23 06:29:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3015','2005-06-20 10:48:56.000','1311','23','2005-06-26 11:30:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3016','2005-06-20 10:55:08.000','3514','558','2005-06-24 14:05:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3017','2005-06-20 11:08:56.000','2513','151','2005-06-28 16:26:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3018','2005-06-20 11:10:35.000','4150','112','2005-06-25 07:17:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3019','2005-06-20 11:11:52.000','491','144','2005-06-27 08:30:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3020','2005-06-20 11:12:04.000','4363','74','2005-06-27 07:31:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3021','2005-06-20 11:13:01.000','120','62','2005-06-28 16:15:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3022','2005-06-20 11:17:20.000','3745','466','2005-06-26 13:15:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3023','2005-06-20 11:18:11.000','4304','106','2005-06-21 12:43:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3024','2005-06-20 11:29:17.000','1966','328','2005-06-27 12:51:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3025','2005-06-20 11:46:48.000','1309','293','2005-06-22 08:43:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3026','2005-06-20 11:48:00.000','4032','347','2005-06-21 12:51:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3027','2005-06-20 11:50:30.000','4028','397','2005-06-25 15:58:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3028','2005-06-20 11:50:52.000','886','264','2005-06-21 11:05:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3029','2005-06-20 11:51:30.000','327','317','2005-06-25 16:42:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3030','2005-06-20 11:51:59.000','1543','395','2005-06-24 10:51:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3031','2005-06-20 11:52:49.000','1184','491','2005-06-22 07:00:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3032','2005-06-20 11:58:30.000','3734','172','2005-06-24 09:49:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3033','2005-06-20 12:02:05.000','4422','107','2005-06-26 15:58:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3034','2005-06-20 12:15:50.000','2755','296','2005-06-24 06:21:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3035','2005-06-20 12:17:03.000','1223','62','2005-06-26 17:42:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3036','2005-06-20 12:18:31.000','4463','399','2005-06-29 09:52:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3037','2005-06-20 12:28:03.000','2033','434','2005-06-21 08:21:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3038','2005-06-20 12:28:59.000','2919','27','2005-06-25 07:48:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3039','2005-06-20 12:32:30.000','4098','186','2005-06-21 07:38:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3040','2005-06-20 12:34:13.000','2568','162','2005-06-21 12:33:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3041','2005-06-20 12:35:44.000','2676','459','2005-06-23 18:28:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3042','2005-06-20 12:38:27.000','3103','291','2005-06-26 11:18:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3043','2005-06-20 12:38:35.000','633','599','2005-06-29 14:16:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3044','2005-06-20 12:38:49.000','3216','424','2005-06-25 07:49:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3045','2005-06-20 12:42:00.000','3065','459','2005-06-23 10:49:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3046','2005-06-20 12:42:59.000','471','559','2005-06-26 17:40:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3047','2005-06-20 12:45:33.000','624','13','2005-06-29 13:09:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3048','2005-06-20 12:49:55.000','4389','482','2005-06-26 11:06:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3049','2005-06-20 12:51:01.000','518','403','2005-06-29 10:53:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3050','2005-06-20 13:03:03.000','2397','557','2005-06-29 07:22:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3051','2005-06-20 13:06:52.000','1408','65','2005-06-25 13:03:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3052','2005-06-20 13:09:19.000','2359','329','2005-06-29 11:55:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3053','2005-06-20 13:10:30.000','818','329','2005-06-25 17:22:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3054','2005-06-20 13:16:41.000','2817','322','2005-06-28 13:45:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3055','2005-06-20 13:19:58.000','1510','23','2005-06-27 14:54:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3056','2005-06-20 13:20:58.000','2010','95','2005-06-26 08:35:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3057','2005-06-20 13:22:48.000','1101','307','2005-06-26 17:22:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3058','2005-06-20 13:28:35.000','938','137','2005-06-28 13:57:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3059','2005-06-20 13:38:41.000','2911','266','2005-06-21 10:13:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3060','2005-06-20 13:47:20.000','2075','446','2005-06-25 16:00:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3061','2005-06-20 13:48:21.000','4202','330','2005-06-22 17:36:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3062','2005-06-20 13:50:00.000','591','75','2005-06-27 08:18:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3063','2005-06-20 13:52:03.000','3954','515','2005-06-28 13:36:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3064','2005-06-20 13:53:13.000','2624','276','2005-06-25 16:33:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3065','2005-06-20 13:53:53.000','1687','227','2005-06-24 11:31:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3066','2005-06-20 13:55:41.000','1116','268','2005-06-26 09:38:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3067','2005-06-20 13:59:21.000','3094','349','2005-06-28 19:09:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3068','2005-06-20 14:02:22.000','1958','516','2005-06-22 12:52:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3069','2005-06-20 14:13:00.000','1952','237','2005-06-28 10:57:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3070','2005-06-20 14:15:39.000','3860','543','2005-06-25 12:52:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3071','2005-06-20 14:20:42.000','1198','582','2005-06-24 19:01:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3072','2005-06-20 14:21:31.000','4131','423','2005-06-27 18:46:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3073','2005-06-20 14:33:26.000','3164','471','2005-06-26 08:42:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3074','2005-06-20 14:41:41.000','1441','299','2005-06-21 15:56:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3075','2005-06-20 14:52:19.000','4346','161','2005-06-28 18:48:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3076','2005-06-20 15:01:19.000','1344','109','2005-06-28 16:53:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3077','2005-06-20 15:05:18.000','1675','303','2005-06-26 20:52:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3078','2005-06-20 15:09:48.000','3642','367','2005-06-24 16:54:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3079','2005-06-20 15:13:40.000','2135','350','2005-06-21 12:03:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3080','2005-06-20 15:22:32.000','118','377','2005-06-24 11:08:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3081','2005-06-20 15:29:13.000','2071','342','2005-06-24 21:00:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3082','2005-06-20 15:32:11.000','4431','164','2005-06-28 13:08:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3083','2005-06-20 15:33:47.000','2896','257','2005-06-26 16:14:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3084','2005-06-20 15:35:24.000','3578','514','2005-06-23 19:11:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3085','2005-06-20 15:42:33.000','4282','166','2005-06-21 16:51:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3086','2005-06-20 15:42:40.000','4437','377','2005-06-25 19:21:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3087','2005-06-20 15:53:59.000','1305','111','2005-06-27 10:54:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3088','2005-06-20 15:56:05.000','3049','384','2005-06-29 13:02:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3089','2005-06-20 15:57:01.000','539','151','2005-06-25 13:15:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3090','2005-06-20 16:00:19.000','3301','267','2005-06-23 14:55:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3091','2005-06-20 16:02:59.000','854','383','2005-06-22 21:30:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3092','2005-06-20 16:04:42.000','4344','347','2005-06-27 19:54:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3093','2005-06-20 16:06:14.000','2534','556','2005-06-22 13:22:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3094','2005-06-20 16:06:51.000','2048','114','2005-06-24 13:23:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3095','2005-06-20 16:16:53.000','3937','298','2005-06-22 10:35:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3096','2005-06-20 16:17:56.000','3851','79','2005-06-24 10:17:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3097','2005-06-20 16:26:14.000','4337','280','2005-06-23 14:46:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3098','2005-06-20 16:37:01.000','3409','498','2005-06-22 22:24:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3099','2005-06-20 16:44:33.000','3756','380','2005-06-27 12:17:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3100','2005-06-20 16:47:57.000','2428','487','2005-06-26 16:59:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3101','2005-06-20 16:48:58.000','1738','384','2005-06-27 18:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3102','2005-06-20 16:55:55.000','1144','522','2005-06-29 13:49:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3103','2005-06-20 16:58:19.000','1877','553','2005-06-25 21:18:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3104','2005-06-20 17:06:46.000','1490','196','2005-06-28 13:18:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3105','2005-06-20 17:11:46.000','130','385','2005-06-21 11:48:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3106','2005-06-20 17:18:06.000','2637','201','2005-06-24 14:50:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3107','2005-06-20 17:26:05.000','4527','303','2005-06-25 12:36:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3108','2005-06-20 17:28:43.000','2218','189','2005-06-27 21:23:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3109','2005-06-20 17:33:55.000','977','93','2005-06-22 23:09:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3110','2005-06-20 17:40:12.000','2008','333','2005-06-24 17:09:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3111','2005-06-20 17:46:47.000','4494','579','2005-06-29 19:45:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3112','2005-06-20 17:53:30.000','3725','35','2005-06-26 16:03:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3113','2005-06-20 17:56:40.000','3620','517','2005-06-23 14:45:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3114','2005-06-20 17:57:47.000','2388','8','2005-06-21 19:18:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3115','2005-06-20 17:59:05.000','2193','457','2005-06-26 13:28:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3116','2005-06-20 18:04:55.000','276','108','2005-06-21 12:12:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3117','2005-06-20 18:05:15.000','2184','31','2005-06-26 17:28:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3118','2005-06-20 18:05:57.000','1258','125','2005-06-23 23:01:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3119','2005-06-20 18:11:44.000','683','296','2005-06-27 16:14:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3120','2005-06-20 18:19:29.000','2530','107','2005-06-23 23:40:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3121','2005-06-20 18:23:30.000','797','132','2005-06-21 20:36:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3122','2005-06-20 18:25:57.000','2720','87','2005-06-29 16:08:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3123','2005-06-20 18:26:14.000','1656','289','2005-06-29 17:17:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3124','2005-06-20 18:28:19.000','3342','113','2005-06-28 21:08:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3125','2005-06-20 18:31:58.000','3293','382','2005-06-21 15:03:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3126','2005-06-20 18:38:22.000','1183','5','2005-06-26 00:00:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3127','2005-06-20 18:39:43.000','1292','461','2005-06-28 17:55:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3128','2005-06-20 18:41:47.000','189','543','2005-06-24 20:54:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3129','2005-06-20 18:57:48.000','1789','495','2005-06-28 13:45:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3130','2005-06-20 19:03:22.000','2569','341','2005-06-29 18:05:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3131','2005-06-20 19:08:00.000','3678','146','2005-06-24 20:59:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3132','2005-06-20 19:09:46.000','711','90','2005-06-24 19:42:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3133','2005-06-20 19:18:32.000','4529','120','2005-06-26 17:54:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3134','2005-06-20 19:29:09.000','1389','537','2005-06-29 19:31:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3135','2005-06-20 19:33:52.000','1122','12','2005-06-29 18:20:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3136','2005-06-20 19:39:08.000','3349','377','2005-06-22 23:35:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3137','2005-06-20 19:41:28.000','786','505','2005-06-28 00:32:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3138','2005-06-20 19:43:45.000','2265','570','2005-06-26 20:41:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3139','2005-06-20 19:44:45.000','3474','354','2005-06-23 16:24:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3140','2005-06-20 19:47:12.000','2936','53','2005-06-24 23:24:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3141','2005-06-20 19:55:47.000','1806','398','2005-06-30 00:31:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3142','2005-06-20 19:59:28.000','3926','9','2005-06-28 19:51:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3143','2005-06-20 20:01:52.000','1355','215','2005-06-26 19:26:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3144','2005-06-20 20:14:20.000','1300','114','2005-06-30 01:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3145','2005-06-20 20:21:17.000','2211','144','2005-06-22 14:44:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3146','2005-06-20 20:21:48.000','2249','339','2005-06-29 22:57:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3147','2005-06-20 20:25:17.000','615','390','2005-06-28 20:22:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3148','2005-06-20 20:27:18.000','4490','202','2005-06-24 20:30:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3149','2005-06-20 20:34:55.000','3295','55','2005-06-21 18:51:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3150','2005-06-20 20:35:28.000','94','34','2005-06-26 01:01:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3151','2005-06-20 20:36:53.000','2976','77','2005-06-25 18:56:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3152','2005-06-20 20:42:41.000','1022','246','2005-06-28 21:12:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3153','2005-06-20 20:44:15.000','659','430','2005-06-23 16:04:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3154','2005-06-20 20:44:40.000','3195','550','2005-06-23 19:10:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3155','2005-06-20 21:02:38.000','458','450','2005-06-27 19:34:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3156','2005-06-20 21:03:46.000','2217','365','2005-06-21 23:32:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3157','2005-06-20 21:07:54.000','1899','245','2005-06-23 16:01:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3158','2005-06-20 21:08:19.000','3461','592','2005-06-29 18:59:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3159','2005-06-20 21:11:50.000','33','388','2005-06-29 19:35:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3160','2005-06-20 21:20:51.000','4333','561','2005-06-29 18:06:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3161','2005-06-20 21:21:01.000','1326','373','2005-06-21 18:22:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3162','2005-06-20 21:21:15.000','3220','113','2005-06-29 18:42:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3163','2005-06-20 21:22:13.000','2632','391','2005-06-26 15:22:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3164','2005-06-20 21:29:00.000','155','270','2005-06-27 15:50:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3165','2005-06-20 21:29:17.000','796','85','2005-06-22 18:03:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3166','2005-06-20 21:32:32.000','1850','424','2005-06-27 20:29:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3167','2005-06-20 21:42:29.000','353','464','2005-06-22 00:36:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3168','2005-06-20 21:46:01.000','2407','446','2005-06-22 20:40:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3169','2005-06-20 21:55:54.000','2437','50','2005-06-25 19:45:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3170','2005-06-20 22:02:54.000','1306','421','2005-06-29 00:41:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3171','2005-06-20 22:15:47.000','2838','140','2005-06-24 18:14:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3172','2005-06-20 22:19:25.000','1758','31','2005-06-24 17:18:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3173','2005-06-20 22:21:10.000','4306','33','2005-06-27 19:41:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3174','2005-06-20 22:24:00.000','3331','107','2005-06-22 21:22:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3175','2005-06-20 22:30:23.000','4093','249','2005-06-30 03:28:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3176','2005-06-20 22:31:54.000','1982','371','2005-06-25 02:58:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3177','2005-06-20 22:32:44.000','2546','300','2005-06-22 23:01:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3178','2005-06-20 22:35:12.000','3517','79','2005-06-23 19:39:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3179','2005-06-20 22:37:59.000','2214','163','2005-06-26 22:26:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3180','2005-06-20 22:48:44.000','3997','162','2005-06-21 21:25:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3181','2005-06-20 22:51:02.000','3473','238','2005-06-27 21:21:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3182','2005-06-20 22:52:18.000','4017','15','2005-06-21 21:00:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3183','2005-06-20 22:55:55.000','4397','129','2005-06-23 17:22:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3184','2005-06-20 22:57:44.000','3179','457','2005-06-29 20:57:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3185','2005-06-20 22:58:01.000','601','234','2005-06-27 00:26:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3186','2005-06-20 23:04:20.000','3198','406','2005-06-29 02:56:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3187','2005-06-20 23:06:07.000','4357','150','2005-06-27 01:14:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3188','2005-06-20 23:10:27.000','2471','522','2005-06-25 19:37:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3189','2005-06-20 23:19:33.000','1502','538','2005-06-24 17:46:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3190','2005-06-20 23:27:15.000','351','200','2005-06-28 01:22:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3191','2005-06-20 23:46:39.000','4358','522','2005-06-25 03:21:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3192','2005-06-20 23:49:12.000','3713','11','2005-06-24 03:00:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3193','2005-06-20 23:52:30.000','3176','260','2005-06-22 21:21:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3194','2005-06-20 23:59:57.000','1835','432','2005-06-24 19:21:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3195','2005-06-21 00:02:10.000','2383','165','2005-06-21 23:11:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3196','2005-06-21 00:02:28.000','1575','52','2005-06-22 23:08:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3197','2005-06-21 00:07:23.000','1811','362','2005-06-23 00:53:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3198','2005-06-21 00:08:54.000','1626','295','2005-06-29 02:11:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3199','2005-06-21 00:12:40.000','3824','234','2005-06-27 23:26:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3200','2005-06-21 00:22:47.000','4117','221','2005-06-27 05:52:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3201','2005-06-21 00:30:26.000','6','597','2005-06-28 03:42:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3202','2005-06-21 00:33:47.000','2725','273','2005-06-24 04:05:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3203','2005-06-21 00:34:56.000','442','158','2005-06-29 23:30:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3204','2005-06-21 00:37:50.000','2848','336','2005-06-22 23:46:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3205','2005-06-21 00:38:47.000','2964','31','2005-06-21 22:49:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3206','2005-06-21 00:39:39.000','2196','350','2005-06-22 05:12:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3207','2005-06-21 00:43:16.000','4020','86','2005-06-24 22:13:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3208','2005-06-21 00:50:03.000','3169','229','2005-06-24 06:15:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3209','2005-06-21 00:51:06.000','287','307','2005-06-22 21:49:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3210','2005-06-21 01:00:25.000','467','75','2005-06-23 06:10:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3211','2005-06-21 01:01:29.000','1150','415','2005-06-23 04:05:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3212','2005-06-21 01:04:35.000','4178','21','2005-06-30 00:10:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3213','2005-06-21 01:05:19.000','3832','534','2005-06-27 21:55:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3214','2005-06-21 01:08:26.000','776','142','2005-06-23 03:24:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3215','2005-06-21 01:11:32.000','4140','279','2005-06-26 19:42:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3216','2005-06-21 01:19:37.000','719','534','2005-06-29 06:45:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3217','2005-06-21 01:28:12.000','1027','463','2005-06-25 02:51:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3218','2005-06-21 01:38:09.000','1828','117','2005-06-23 02:00:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3219','2005-06-21 01:43:26.000','3024','129','2005-06-28 23:50:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3220','2005-06-21 01:46:25.000','1880','574','2005-06-26 07:44:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3221','2005-06-21 01:49:47.000','245','454','2005-06-25 06:31:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3222','2005-06-21 01:50:29.000','4023','501','2005-06-27 00:52:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3223','2005-06-21 02:06:45.000','1033','299','2005-06-22 07:16:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3224','2005-06-21 02:11:36.000','3318','173','2005-06-23 21:17:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3225','2005-06-21 02:16:55.000','1003','448','2005-06-27 05:39:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3226','2005-06-21 02:18:14.000','4079','576','2005-06-26 22:32:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3227','2005-06-21 02:18:25.000','1156','568','2005-06-27 00:59:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3228','2005-06-21 02:20:24.000','2489','535','2005-06-29 00:50:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3229','2005-06-21 02:20:41.000','2301','81','2005-06-26 00:39:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3230','2005-06-21 02:23:16.000','215','83','2005-06-22 01:37:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3231','2005-06-21 02:25:00.000','237','28','2005-06-23 05:46:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3232','2005-06-21 02:30:37.000','1972','555','2005-06-29 03:10:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3233','2005-06-21 02:39:31.000','3542','353','2005-06-28 05:23:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3234','2005-06-21 02:39:44.000','3252','459','2005-06-29 07:27:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3235','2005-06-21 02:46:17.000','212','49','2005-06-22 20:58:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3236','2005-06-21 02:47:43.000','1492','550','2005-06-29 08:04:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3237','2005-06-21 02:47:56.000','4399','466','2005-06-27 03:16:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3238','2005-06-21 02:48:21.000','2732','77','2005-06-23 04:43:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3239','2005-06-21 02:48:40.000','3402','328','2005-06-22 02:49:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3240','2005-06-21 02:53:17.000','2938','405','2005-06-30 03:25:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3241','2005-06-21 02:54:32.000','1442','499','2005-06-26 21:56:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3242','2005-06-21 02:56:24.000','1421','562','2005-06-29 21:41:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3243','2005-06-21 03:00:11.000','2556','426','2005-06-25 21:53:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3244','2005-06-21 03:01:10.000','291','53','2005-06-24 06:59:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3245','2005-06-21 03:06:11.000','2057','358','2005-06-25 08:06:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3246','2005-06-21 03:10:01.000','4432','41','2005-06-28 00:46:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3247','2005-06-21 03:12:15.000','1406','277','2005-06-27 00:44:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3248','2005-06-21 03:12:21.000','3656','78','2005-06-28 03:54:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3249','2005-06-21 03:13:19.000','703','410','2005-06-29 04:04:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3250','2005-06-21 03:16:36.000','736','467','2005-06-29 00:53:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3251','2005-06-21 03:20:37.000','1414','317','2005-06-23 04:54:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3252','2005-06-21 03:25:26.000','2009','213','2005-06-24 00:38:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3253','2005-06-21 03:25:37.000','1906','405','2005-06-27 02:46:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3254','2005-06-21 03:27:10.000','3893','472','2005-06-22 22:01:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3255','2005-06-21 03:39:52.000','2564','482','2005-06-24 04:02:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3256','2005-06-21 03:45:42.000','1235','319','2005-06-30 02:51:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3257','2005-06-21 03:47:19.000','3975','263','2005-06-28 01:24:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3258','2005-06-21 03:53:58.000','4417','241','2005-06-22 22:49:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3259','2005-06-21 03:57:15.000','2751','478','2005-06-24 03:32:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3260','2005-06-21 03:59:13.000','3627','380','2005-06-23 03:29:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3261','2005-06-21 04:07:41.000','2029','169','2005-06-24 06:25:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3262','2005-06-21 04:08:43.000','3773','9','2005-06-28 02:55:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3263','2005-06-21 04:15:52.000','3491','118','2005-06-24 02:19:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3264','2005-06-21 04:19:03.000','1666','340','2005-06-23 01:29:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3265','2005-06-21 04:23:13.000','3637','437','2005-06-28 03:37:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3266','2005-06-21 04:49:07.000','2533','175','2005-06-26 05:19:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3267','2005-06-21 04:55:21.000','1118','134','2005-06-29 23:46:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3268','2005-06-21 04:55:49.000','4366','329','2005-06-30 00:23:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3269','2005-06-21 05:06:30.000','3828','17','2005-06-27 09:26:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3270','2005-06-21 05:07:31.000','1578','86','2005-06-22 07:45:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3271','2005-06-21 05:16:10.000','4191','196','2005-06-27 10:46:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3272','2005-06-21 05:18:27.000','1090','550','2005-06-30 02:51:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3273','2005-06-21 05:24:17.000','3538','104','2005-06-23 01:21:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3274','2005-06-21 05:30:36.000','2156','277','2005-06-24 05:12:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3275','2005-06-21 05:33:04.000','2320','368','2005-06-30 00:37:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3276','2005-06-21 05:35:52.000','1890','425','2005-06-29 03:26:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3277','2005-06-21 05:36:37.000','1330','229','2005-06-29 10:54:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3278','2005-06-21 05:41:30.000','2832','554','2005-06-22 03:43:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3279','2005-06-21 06:05:53.000','1672','462','2005-06-25 09:40:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3280','2005-06-21 06:08:12.000','661','229','2005-06-24 09:34:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3281','2005-06-21 06:08:47.000','4006','363','2005-06-24 11:22:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3282','2005-06-21 06:18:42.000','1676','224','2005-06-28 09:18:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3283','2005-06-21 06:19:07.000','3988','372','2005-06-26 10:59:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3284','2005-06-21 06:24:45.000','4566','1','2005-06-28 03:28:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3285','2005-06-21 06:30:13.000','948','481','2005-06-23 10:31:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3286','2005-06-21 06:31:29.000','742','577','2005-06-25 00:46:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3287','2005-06-21 06:32:39.000','4406','62','2005-06-24 09:29:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3288','2005-06-21 06:36:59.000','1961','299','2005-06-30 06:50:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3289','2005-06-21 06:41:48.000','2248','115','2005-06-30 00:54:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3290','2005-06-21 06:45:34.000','2727','293','2005-06-28 09:44:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3291','2005-06-21 06:55:36.000','3866','274','2005-06-29 03:41:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3292','2005-06-21 06:59:11.000','3288','412','2005-06-23 07:11:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3293','2005-06-21 06:59:33.000','4407','481','2005-06-25 06:54:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3294','2005-06-21 07:03:23.000','2390','439','2005-06-30 02:22:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3295','2005-06-21 07:04:17.000','1703','573','2005-06-29 01:52:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3296','2005-06-21 07:04:53.000','2453','284','2005-06-25 08:36:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3297','2005-06-21 07:08:19.000','3969','193','2005-06-28 11:53:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3298','2005-06-21 07:09:44.000','444','492','2005-06-30 11:26:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3299','2005-06-21 07:23:34.000','3427','199','2005-06-27 04:02:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3300','2005-06-21 07:25:01.000','2505','565','2005-06-25 01:47:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3301','2005-06-21 07:32:25.000','503','444','2005-06-28 06:26:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3302','2005-06-21 07:33:40.000','562','594','2005-06-29 06:02:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3303','2005-06-21 07:34:14.000','1565','361','2005-06-26 13:18:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3304','2005-06-21 07:43:40.000','2154','431','2005-06-27 08:06:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3305','2005-06-21 07:46:57.000','2811','578','2005-06-27 06:16:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3306','2005-06-21 07:46:58.000','1669','406','2005-06-26 11:22:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3307','2005-06-21 07:52:30.000','462','85','2005-06-25 02:36:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3308','2005-06-21 07:58:36.000','3129','96','2005-06-23 05:23:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3309','2005-06-21 08:00:49.000','248','463','2005-06-29 04:11:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3310','2005-06-21 08:04:51.000','1717','395','2005-06-22 04:20:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3311','2005-06-21 08:05:27.000','3438','518','2005-06-22 06:51:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3312','2005-06-21 08:05:32.000','1008','554','2005-06-27 03:34:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3313','2005-06-21 08:11:18.000','4267','213','2005-06-23 04:28:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3314','2005-06-21 08:17:00.000','4332','185','2005-06-22 06:00:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3315','2005-06-21 08:17:04.000','4108','438','2005-06-24 11:04:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3316','2005-06-21 08:20:18.000','3271','451','2005-06-28 07:44:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3317','2005-06-21 08:22:32.000','4095','584','2005-06-26 14:18:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3318','2005-06-21 08:23:05.000','1111','414','2005-06-27 14:07:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3319','2005-06-21 08:25:46.000','2482','461','2005-06-27 03:54:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3320','2005-06-21 08:29:41.000','860','47','2005-06-29 13:54:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3321','2005-06-21 08:33:26.000','1750','144','2005-06-24 10:09:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3322','2005-06-21 08:42:37.000','4324','458','2005-06-22 13:17:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3323','2005-06-21 08:45:33.000','2252','272','2005-06-28 08:17:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3324','2005-06-21 08:49:16.000','2830','29','2005-06-22 12:31:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3325','2005-06-21 08:51:44.000','1720','185','2005-06-27 06:16:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3326','2005-06-21 09:04:50.000','1025','347','2005-06-30 12:10:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3327','2005-06-21 09:04:50.000','3083','62','2005-06-30 05:45:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3328','2005-06-21 09:08:44.000','2462','292','2005-06-30 12:28:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3329','2005-06-21 09:20:31.000','3506','335','2005-06-22 10:00:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3330','2005-06-21 09:22:37.000','299','294','2005-06-23 07:16:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3331','2005-06-21 09:37:53.000','2913','352','2005-06-26 04:01:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3332','2005-06-21 09:55:12.000','1975','82','2005-06-25 08:32:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3333','2005-06-21 10:01:36.000','3688','111','2005-06-25 10:27:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3334','2005-06-21 10:04:33.000','2491','66','2005-06-29 06:09:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3335','2005-06-21 10:09:08.000','3033','339','2005-06-27 11:33:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3336','2005-06-21 10:14:27.000','2122','173','2005-06-22 09:29:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3337','2005-06-21 10:24:35.000','1176','318','2005-06-22 13:51:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3338','2005-06-21 10:27:31.000','2097','171','2005-06-30 14:15:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3339','2005-06-21 10:37:11.000','312','526','2005-06-30 05:04:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3340','2005-06-21 10:37:23.000','2962','540','2005-06-26 07:21:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3341','2005-06-21 10:37:25.000','2189','591','2005-06-26 15:38:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3342','2005-06-21 10:46:36.000','2884','196','2005-06-23 09:46:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3343','2005-06-21 10:56:59.000','2038','466','2005-06-25 16:41:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3344','2005-06-21 10:57:27.000','4401','277','2005-06-28 10:53:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3345','2005-06-21 11:05:07.000','4442','71','2005-06-26 15:14:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3346','2005-06-21 11:06:53.000','4393','189','2005-06-22 15:19:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3347','2005-06-21 11:08:32.000','4330','448','2005-06-28 09:59:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3348','2005-06-21 11:16:42.000','2945','16','2005-06-27 13:50:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3349','2005-06-21 11:17:35.000','3885','336','2005-06-22 12:51:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3350','2005-06-21 11:21:38.000','3221','20','2005-06-28 15:37:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3351','2005-06-21 11:21:39.000','1591','386','2005-06-23 07:23:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3352','2005-06-21 11:26:29.000','578','510','2005-06-28 07:26:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3353','2005-06-21 11:29:23.000','3984','236','2005-06-27 15:06:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3354','2005-06-21 11:29:49.000','1083','529','2005-06-25 07:39:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3355','2005-06-21 11:30:47.000','1960','275','2005-06-23 06:04:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3356','2005-06-21 11:38:45.000','4532','403','2005-06-26 17:18:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3357','2005-06-21 11:55:42.000','2528','57','2005-06-22 07:19:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3358','2005-06-21 11:56:40.000','1772','69','2005-06-26 08:28:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3359','2005-06-21 12:08:18.000','3825','67','2005-06-25 16:35:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3360','2005-06-21 12:12:41.000','2792','498','2005-06-26 06:32:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3361','2005-06-21 12:14:23.000','2671','268','2005-06-26 10:01:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3362','2005-06-21 12:19:54.000','1284','454','2005-06-23 06:59:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3363','2005-06-21 12:25:07.000','538','261','2005-06-27 11:52:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3364','2005-06-21 12:37:46.000','2329','201','2005-06-28 07:18:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3365','2005-06-21 12:55:48.000','657','133','2005-06-23 13:38:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3366','2005-06-21 13:03:37.000','2584','511','2005-06-26 16:29:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3367','2005-06-21 13:08:21.000','2442','80','2005-06-26 08:43:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3368','2005-06-21 13:18:38.000','548','438','2005-06-23 11:13:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3369','2005-06-21 13:20:31.000','303','431','2005-06-30 13:45:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3370','2005-06-21 13:27:01.000','1573','559','2005-06-25 09:27:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3371','2005-06-21 13:27:22.000','2526','595','2005-06-29 14:04:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3372','2005-06-21 13:34:19.000','4169','346','2005-06-27 08:41:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3373','2005-06-21 13:35:32.000','2219','316','2005-06-30 12:03:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3374','2005-06-21 13:36:30.000','1067','279','2005-06-23 15:10:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3375','2005-06-21 13:37:18.000','912','279','2005-06-22 11:26:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3376','2005-06-21 13:43:02.000','3055','318','2005-06-28 18:07:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3377','2005-06-21 13:51:12.000','1845','428','2005-06-22 18:16:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3378','2005-06-21 13:51:28.000','35','387','2005-06-25 09:21:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3379','2005-06-21 13:54:58.000','2022','566','2005-06-23 13:43:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3380','2005-06-21 13:58:46.000','3212','483','2005-06-30 09:29:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3381','2005-06-21 14:02:59.000','1373','183','2005-06-29 18:11:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3382','2005-06-21 14:05:23.000','131','341','2005-06-29 19:13:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3383','2005-06-21 14:07:19.000','2968','239','2005-06-29 17:00:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3384','2005-06-21 14:07:35.000','409','91','2005-06-26 16:34:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3385','2005-06-21 14:16:48.000','2810','514','2005-06-24 10:32:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3386','2005-06-21 14:21:06.000','1224','190','2005-06-24 08:32:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3387','2005-06-21 14:21:49.000','2709','305','2005-06-24 16:46:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3388','2005-06-21 14:34:51.000','556','119','2005-06-28 18:19:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3389','2005-06-21 14:37:55.000','727','395','2005-06-28 18:13:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3390','2005-06-21 15:10:50.000','2034','151','2005-06-26 12:38:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3391','2005-06-21 15:11:02.000','26','45','2005-06-25 14:12:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3392','2005-06-21 15:12:44.000','3343','38','2005-06-29 18:19:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3393','2005-06-21 15:14:27.000','1631','362','2005-06-25 19:54:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3394','2005-06-21 15:17:39.000','3393','295','2005-06-30 13:55:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3395','2005-06-21 15:19:19.000','3764','66','2005-06-29 14:23:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3396','2005-06-21 15:23:08.000','2744','371','2005-06-23 10:25:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3397','2005-06-21 15:30:11.000','602','552','2005-06-22 21:12:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3398','2005-06-21 15:34:38.000','221','599','2005-06-29 11:23:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3399','2005-06-21 15:47:48.000','619','98','2005-06-26 13:46:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3400','2005-06-21 15:50:30.000','1697','298','2005-06-25 18:07:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3401','2005-06-21 15:52:43.000','3423','577','2005-06-30 21:09:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3402','2005-06-21 15:54:37.000','596','187','2005-06-30 13:43:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3403','2005-06-21 15:55:06.000','1741','264','2005-06-27 12:34:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3404','2005-06-21 15:57:52.000','2005','424','2005-06-24 20:58:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3405','2005-06-21 15:58:25.000','2344','155','2005-06-23 10:58:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3406','2005-06-21 16:00:18.000','2049','203','2005-06-23 18:25:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3407','2005-06-21 16:14:02.000','3919','343','2005-06-24 15:38:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3408','2005-06-21 16:15:11.000','3453','282','2005-06-27 14:55:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3409','2005-06-21 16:17:38.000','3374','429','2005-06-22 14:16:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3410','2005-06-21 16:20:47.000','1197','321','2005-06-24 19:09:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3411','2005-06-21 16:31:27.000','4250','12','2005-06-28 12:27:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3412','2005-06-21 16:44:31.000','3036','501','2005-06-28 16:15:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3413','2005-06-21 16:57:07.000','666','322','2005-06-30 12:03:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3414','2005-06-21 16:58:50.000','2929','226','2005-06-24 17:26:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3415','2005-06-21 16:59:49.000','3540','444','2005-06-27 17:19:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3416','2005-06-21 17:05:29.000','1215','76','2005-06-23 17:58:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3417','2005-06-21 17:06:20.000','874','282','2005-06-23 17:00:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3418','2005-06-21 17:06:38.000','4115','85','2005-06-25 19:43:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3419','2005-06-21 17:18:01.000','4022','22','2005-06-22 15:08:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3420','2005-06-21 17:22:36.000','2523','27','2005-06-28 12:34:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3421','2005-06-21 17:22:58.000','3930','346','2005-06-24 18:57:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3422','2005-06-21 17:24:40.000','2724','251','2005-06-29 13:59:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3423','2005-06-21 17:38:02.000','3612','19','2005-06-23 19:47:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3424','2005-06-21 17:42:51.000','1279','583','2005-06-24 23:22:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3425','2005-06-21 18:07:07.000','4548','381','2005-06-27 22:59:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3426','2005-06-21 18:12:10.000','3019','95','2005-06-23 18:22:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3427','2005-06-21 18:31:09.000','560','561','2005-06-22 14:18:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3428','2005-06-21 18:39:34.000','1959','40','2005-06-22 18:23:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3429','2005-06-21 18:46:05.000','456','599','2005-06-30 17:28:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3430','2005-06-21 18:46:08.000','1613','503','2005-06-22 13:49:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3431','2005-06-21 18:46:48.000','133','516','2005-06-26 23:08:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3432','2005-06-21 19:02:03.000','1814','216','2005-06-25 00:57:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3433','2005-06-21 19:07:19.000','1077','228','2005-06-29 18:01:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3434','2005-06-21 19:08:28.000','2295','141','2005-06-23 14:25:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3435','2005-06-21 19:14:58.000','451','591','2005-06-24 19:58:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3436','2005-06-21 19:16:09.000','2740','137','2005-06-30 13:58:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3437','2005-06-21 19:20:17.000','1798','211','2005-07-01 01:09:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3438','2005-06-21 19:31:40.000','1757','556','2005-06-30 19:08:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3439','2005-06-21 19:36:15.000','1529','46','2005-06-23 14:54:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3440','2005-06-21 19:58:18.000','853','491','2005-06-27 22:08:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3441','2005-06-21 20:00:12.000','2863','326','2005-06-24 00:24:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3442','2005-06-21 20:06:51.000','1896','255','2005-06-25 17:35:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3443','2005-06-21 20:19:00.000','1639','377','2005-06-30 15:39:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3444','2005-06-21 20:39:39.000','493','45','2005-06-25 23:44:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3445','2005-06-21 20:40:28.000','2381','74','2005-06-29 00:47:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3446','2005-06-21 20:45:51.000','1817','174','2005-06-26 17:02:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3447','2005-06-21 20:53:31.000','1146','25','2005-06-24 02:20:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3448','2005-06-21 20:59:20.000','592','476','2005-06-24 15:40:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3449','2005-06-21 21:01:27.000','210','181','2005-06-27 21:20:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3450','2005-06-21 21:01:57.000','2268','126','2005-06-25 23:57:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3451','2005-06-21 21:10:39.000','3489','558','2005-06-30 19:03:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3452','2005-06-21 21:11:27.000','2646','293','2005-06-24 16:31:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3453','2005-06-21 21:12:11.000','842','278','2005-06-23 17:39:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3454','2005-06-21 21:12:13.000','3009','524','2005-06-25 23:23:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3455','2005-06-21 21:17:51.000','4403','340','2005-06-23 17:22:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3456','2005-06-21 21:19:47.000','1119','150','2005-06-28 18:18:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3457','2005-06-21 21:42:33.000','883','312','2005-06-30 19:54:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3458','2005-06-21 21:42:49.000','2136','338','2005-06-29 01:26:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3459','2005-06-21 21:45:47.000','3080','97','2005-06-25 00:46:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3460','2005-06-21 21:46:56.000','1765','236','2005-06-29 20:08:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3461','2005-06-21 21:49:18.000','1715','23','2005-06-26 19:51:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3462','2005-06-21 21:52:52.000','547','568','2005-06-28 21:41:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3463','2005-06-21 22:00:00.000','3436','96','2005-06-22 19:22:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3464','2005-06-21 22:08:58.000','2698','251','2005-06-26 16:23:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3465','2005-06-21 22:10:01.000','1488','510','2005-06-30 21:35:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3466','2005-06-21 22:13:33.000','371','226','2005-06-25 21:01:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3467','2005-06-21 22:19:25.000','729','543','2005-06-27 00:03:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3468','2005-06-21 22:43:45.000','2899','100','2005-06-30 01:49:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3469','2005-06-21 22:48:59.000','4087','181','2005-06-28 19:32:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3470','2005-07-05 22:49:24.000','883','565','2005-07-07 19:36:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3471','2005-07-05 22:51:44.000','1724','242','2005-07-13 01:38:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3472','2005-07-05 22:56:33.000','841','37','2005-07-13 17:18:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3473','2005-07-05 22:57:34.000','2735','60','2005-07-12 23:53:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3474','2005-07-05 22:59:53.000','97','594','2005-07-08 20:32:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3475','2005-07-05 23:01:21.000','2189','8','2005-07-13 23:07:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3476','2005-07-05 23:02:37.000','3011','490','2005-07-10 22:17:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3477','2005-07-05 23:05:17.000','4289','476','2005-07-15 02:20:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3478','2005-07-05 23:05:44.000','2528','322','2005-07-07 00:14:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3479','2005-07-05 23:08:53.000','2277','298','2005-07-11 21:42:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3480','2005-07-05 23:11:43.000','1488','382','2005-07-12 02:01:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3481','2005-07-05 23:13:07.000','3575','138','2005-07-07 20:36:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3482','2005-07-05 23:13:22.000','1291','520','2005-07-12 19:02:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3483','2005-07-05 23:13:51.000','79','536','2005-07-13 18:31:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3484','2005-07-05 23:23:11.000','1934','114','2005-07-11 00:27:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3485','2005-07-05 23:25:54.000','117','111','2005-07-09 17:38:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3486','2005-07-05 23:29:55.000','4067','296','2005-07-13 19:54:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3487','2005-07-05 23:30:36.000','1575','586','2005-07-11 04:00:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3488','2005-07-05 23:32:49.000','898','349','2005-07-15 02:01:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3489','2005-07-05 23:33:40.000','2936','397','2005-07-15 02:15:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3490','2005-07-05 23:37:13.000','3041','369','2005-07-12 22:07:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3491','2005-07-05 23:41:08.000','1835','421','2005-07-13 21:53:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3492','2005-07-05 23:44:37.000','980','142','2005-07-14 03:54:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3493','2005-07-05 23:46:19.000','473','169','2005-07-15 02:31:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3494','2005-07-05 23:47:30.000','3149','348','2005-07-11 18:10:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3495','2005-07-05 23:50:04.000','2306','553','2005-07-10 01:06:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3496','2005-07-05 23:59:15.000','2430','295','2005-07-09 19:39:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3497','2005-07-06 00:00:03.000','1970','299','2005-07-09 01:27:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3498','2005-07-06 00:02:08.000','1869','444','2005-07-10 00:19:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3499','2005-07-06 00:04:20.000','1850','520','2005-07-14 21:12:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3500','2005-07-06 00:11:13.000','2447','32','2005-07-13 19:01:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3501','2005-07-06 00:11:28.000','2219','270','2005-07-10 20:32:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3502','2005-07-06 00:15:06.000','1026','126','2005-07-13 01:35:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3503','2005-07-06 00:17:24.000','2944','449','2005-07-08 03:47:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3504','2005-07-06 00:18:29.000','268','209','2005-07-10 00:24:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3505','2005-07-06 00:19:32.000','2630','331','2005-07-14 20:14:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3506','2005-07-06 00:22:29.000','19','459','2005-07-07 22:15:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3507','2005-07-06 00:23:43.000','166','480','2005-07-15 04:19:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3508','2005-07-06 00:24:25.000','2381','34','2005-07-10 05:38:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3509','2005-07-06 00:24:57.000','4394','182','2005-07-09 18:48:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3510','2005-07-06 00:27:41.000','2250','443','2005-07-14 23:20:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3511','2005-07-06 00:42:01.000','2128','494','2005-07-09 23:08:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3512','2005-07-06 00:43:06.000','371','291','2005-07-12 06:18:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3513','2005-07-06 00:45:57.000','4225','223','2005-07-11 19:04:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3514','2005-07-06 00:46:54.000','4546','536','2005-07-09 05:47:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3515','2005-07-06 00:48:55.000','3220','131','2005-07-09 00:15:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3516','2005-07-06 00:50:30.000','385','338','2005-07-09 19:12:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3517','2005-07-06 00:52:35.000','2762','314','2005-07-08 20:10:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3518','2005-07-06 00:56:03.000','2502','167','2005-07-14 02:27:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3519','2005-07-06 00:57:29.000','4314','320','2005-07-10 21:12:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3520','2005-07-06 00:58:27.000','2872','102','2005-07-14 05:56:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3521','2005-07-06 01:00:11.000','1440','262','2005-07-11 19:15:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3522','2005-07-06 01:00:21.000','4522','469','2005-07-11 01:18:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3523','2005-07-06 01:01:38.000','2171','549','2005-07-10 20:24:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3524','2005-07-06 01:01:51.000','1626','88','2005-07-11 19:52:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3525','2005-07-06 01:02:39.000','208','51','2005-07-14 02:27:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3526','2005-07-06 01:03:29.000','3871','469','2005-07-15 01:22:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3527','2005-07-06 01:11:08.000','4537','389','2005-07-08 01:21:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3528','2005-07-06 01:13:27.000','1954','201','2005-07-06 23:45:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3529','2005-07-06 01:15:26.000','4316','350','2005-07-07 04:28:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3530','2005-07-06 01:22:45.000','4542','168','2005-07-10 03:23:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3531','2005-07-06 01:24:08.000','1890','165','2005-07-11 22:00:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3532','2005-07-06 01:24:38.000','2635','274','2005-07-11 06:42:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3533','2005-07-06 01:26:44.000','2028','206','2005-07-14 21:37:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3534','2005-07-06 01:32:27.000','2055','283','2005-07-08 23:14:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3535','2005-07-06 01:32:46.000','4214','65','2005-07-11 03:15:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3536','2005-07-06 01:36:11.000','2328','339','2005-07-12 20:00:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3537','2005-07-06 01:36:53.000','4220','479','2005-07-13 07:01:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3538','2005-07-06 01:37:07.000','4361','228','2005-07-11 06:02:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3539','2005-07-06 01:39:08.000','4081','444','2005-07-07 05:38:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3540','2005-07-06 01:47:20.000','1295','97','2005-07-08 23:48:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3541','2005-07-06 01:50:11.000','1204','501','2005-07-12 03:24:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3542','2005-07-06 01:51:42.000','4391','593','2005-07-11 03:29:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3543','2005-07-06 02:01:08.000','3997','394','2005-07-07 03:14:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3544','2005-07-06 02:06:32.000','3098','115','2005-07-09 04:35:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3545','2005-07-06 02:16:17.000','3924','442','2005-07-11 00:54:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3546','2005-07-06 02:17:54.000','959','594','2005-07-07 00:19:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3547','2005-07-06 02:18:06.000','2730','239','2005-07-08 05:24:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3548','2005-07-06 02:23:39.000','4498','16','2005-07-08 07:53:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3549','2005-07-06 02:24:55.000','3921','19','2005-07-06 21:40:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3550','2005-07-06 02:29:21.000','2417','15','2005-07-13 05:26:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3551','2005-07-06 02:33:48.000','3602','111','2005-07-13 04:38:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3552','2005-07-06 02:34:09.000','1099','239','2005-07-12 05:31:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3553','2005-07-06 02:35:41.000','4510','422','2005-07-08 06:38:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3554','2005-07-06 02:37:10.000','793','538','2005-07-09 01:58:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3555','2005-07-06 02:45:35.000','869','537','2005-07-10 07:17:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3556','2005-07-06 02:46:13.000','3142','273','2005-07-06 22:08:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3557','2005-07-06 02:48:39.000','3832','292','2005-07-08 22:52:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3558','2005-07-06 02:49:06.000','1742','575','2005-07-15 01:38:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3559','2005-07-06 02:49:42.000','2211','483','2005-07-12 04:44:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3560','2005-07-06 02:51:37.000','888','592','2005-07-10 01:35:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3561','2005-07-06 02:54:33.000','213','231','2005-07-14 07:44:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3562','2005-07-06 02:54:36.000','1660','587','2005-07-11 05:48:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3563','2005-07-06 02:57:01.000','4261','210','2005-07-14 02:25:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3564','2005-07-06 03:02:13.000','1096','402','2005-07-13 01:41:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3565','2005-07-06 03:02:58.000','599','97','2005-07-13 21:31:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3566','2005-07-06 03:08:51.000','2774','392','2005-07-12 05:04:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3567','2005-07-06 03:09:36.000','27','355','2005-07-12 02:15:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3568','2005-07-06 03:11:57.000','2084','283','2005-07-15 03:14:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3569','2005-07-06 03:17:23.000','1929','496','2005-07-14 03:58:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3570','2005-07-06 03:23:43.000','1300','450','2005-07-14 07:28:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3571','2005-07-06 03:32:31.000','4166','580','2005-07-11 06:15:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3572','2005-07-06 03:33:23.000','1915','284','2005-07-08 07:54:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3573','2005-07-06 03:33:48.000','146','66','2005-07-07 22:39:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3574','2005-07-06 03:36:01.000','2799','225','2005-07-10 01:29:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3575','2005-07-06 03:36:19.000','3234','49','2005-07-08 06:21:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3576','2005-07-06 03:40:01.000','324','227','2005-07-15 07:22:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3577','2005-07-06 03:40:36.000','4390','152','2005-07-10 05:54:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3578','2005-07-06 03:47:05.000','2954','263','2005-07-08 02:26:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3579','2005-07-06 03:47:47.000','3309','485','2005-07-08 02:16:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3580','2005-07-06 03:48:44.000','3837','200','2005-07-13 01:15:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3581','2005-07-06 03:57:35.000','4520','235','2005-07-07 08:07:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3582','2005-07-06 04:10:35.000','1866','297','2005-07-11 01:29:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3583','2005-07-06 04:10:43.000','204','574','2005-07-14 22:17:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3584','2005-07-06 04:16:43.000','367','207','2005-07-13 07:08:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3585','2005-07-06 04:22:36.000','2726','266','2005-07-09 06:16:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3586','2005-07-06 04:24:42.000','616','493','2005-07-09 02:37:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3587','2005-07-06 04:27:52.000','462','110','2005-07-13 08:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3588','2005-07-06 04:29:13.000','3154','289','2005-07-07 23:49:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3589','2005-07-06 04:30:18.000','3740','137','2005-07-10 09:18:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3590','2005-07-06 04:35:12.000','1510','283','2005-07-10 05:14:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3591','2005-07-06 04:37:10.000','1241','53','2005-07-09 23:32:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3592','2005-07-06 04:38:50.000','1272','286','2005-07-15 06:36:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3593','2005-07-06 04:39:52.000','619','78','2005-07-11 23:20:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3594','2005-07-06 04:42:47.000','4566','522','2005-07-10 00:49:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3595','2005-07-06 04:59:49.000','1431','92','2005-07-15 06:26:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3596','2005-07-06 05:03:11.000','594','419','2005-07-07 05:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3597','2005-07-06 05:03:59.000','4080','35','2005-07-13 06:49:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3598','2005-07-06 05:11:04.000','1317','68','2005-07-09 02:03:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3599','2005-07-06 05:16:36.000','3262','577','2005-07-13 07:14:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3600','2005-07-06 05:19:42.000','2748','511','2005-07-11 00:34:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3601','2005-07-06 05:20:25.000','2806','205','2005-07-15 03:13:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3602','2005-07-06 05:23:10.000','2192','100','2005-07-15 03:22:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3603','2005-07-06 05:25:03.000','2442','330','2005-07-12 08:14:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3604','2005-07-06 05:25:22.000','1380','242','2005-07-07 23:52:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3605','2005-07-06 05:27:15.000','384','347','2005-07-10 00:05:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3606','2005-07-06 05:28:02.000','1737','166','2005-07-10 04:51:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3607','2005-07-06 05:30:09.000','542','335','2005-07-08 01:36:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3608','2005-07-06 05:35:39.000','3095','368','2005-07-10 07:46:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3609','2005-07-06 05:36:22.000','1064','373','2005-07-10 05:55:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3610','2005-07-06 05:36:59.000','1509','348','2005-07-13 07:07:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3611','2005-07-06 05:37:18.000','4502','86','2005-07-10 05:14:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3612','2005-07-06 05:37:26.000','2465','402','2005-07-14 01:51:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3613','2005-07-06 05:45:53.000','3776','331','2005-07-07 10:02:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3614','2005-07-06 05:46:05.000','853','502','2005-07-11 01:24:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3615','2005-07-06 05:47:47.000','711','49','2005-07-11 05:01:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3616','2005-07-06 05:52:13.000','557','571','2005-07-10 10:24:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3617','2005-07-06 05:58:06.000','1337','125','2005-07-13 02:10:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3618','2005-07-06 05:58:45.000','330','264','2005-07-15 09:13:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3619','2005-07-06 05:59:44.000','3350','526','2005-07-11 08:58:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3620','2005-07-06 06:01:50.000','1661','88','2005-07-08 05:04:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3621','2005-07-06 06:03:55.000','3132','171','2005-07-11 09:25:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3622','2005-07-06 06:05:04.000','3489','454','2005-07-12 03:14:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3623','2005-07-06 06:05:23.000','430','80','2005-07-07 05:59:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3624','2005-07-06 06:06:27.000','1778','115','2005-07-13 08:30:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3625','2005-07-06 06:12:52.000','1133','175','2005-07-12 07:37:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3626','2005-07-06 06:15:35.000','1599','337','2005-07-10 10:18:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3627','2005-07-06 06:19:25.000','1087','322','2005-07-11 05:53:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3628','2005-07-06 06:19:43.000','3509','588','2005-07-07 02:23:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3629','2005-07-06 06:23:22.000','4019','441','2005-07-08 09:32:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3630','2005-07-06 06:27:15.000','2448','102','2005-07-12 10:36:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3631','2005-07-06 06:36:53.000','4068','47','2005-07-07 10:32:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3632','2005-07-06 06:38:21.000','2583','366','2005-07-11 03:19:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3633','2005-07-06 06:43:26.000','2978','95','2005-07-10 04:54:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3634','2005-07-06 06:51:14.000','3688','245','2005-07-10 02:30:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3635','2005-07-06 06:55:36.000','421','250','2005-07-09 07:57:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3636','2005-07-06 07:03:52.000','3379','591','2005-07-08 03:14:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3637','2005-07-06 07:06:31.000','3823','380','2005-07-10 02:11:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3638','2005-07-06 07:08:17.000','190','452','2005-07-13 12:30:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3639','2005-07-06 07:09:17.000','2812','7','2005-07-15 05:12:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3640','2005-07-06 07:12:26.000','3432','271','2005-07-10 04:54:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3641','2005-07-06 07:17:09.000','3834','79','2005-07-11 07:25:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3642','2005-07-06 07:18:20.000','4204','166','2005-07-09 01:37:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3643','2005-07-06 07:20:08.000','845','176','2005-07-11 07:01:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3644','2005-07-06 07:20:11.000','4309','403','2005-07-11 10:26:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3645','2005-07-06 07:22:09.000','3390','236','2005-07-10 11:45:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3646','2005-07-06 07:28:59.000','3591','322','2005-07-11 05:19:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3647','2005-07-06 07:29:17.000','3762','145','2005-07-13 08:32:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3648','2005-07-06 07:30:41.000','2810','598','2005-07-10 06:00:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3649','2005-07-06 07:32:42.000','3564','24','2005-07-12 09:37:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3650','2005-07-06 07:34:15.000','3606','482','2005-07-08 01:50:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3651','2005-07-06 07:40:31.000','3323','170','2005-07-08 03:39:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3652','2005-07-06 07:44:30.000','1231','518','2005-07-08 04:41:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3653','2005-07-06 07:45:13.000','2513','148','2005-07-10 11:51:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3654','2005-07-06 07:45:31.000','1621','528','2005-07-12 09:59:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3655','2005-07-06 07:52:54.000','1540','493','2005-07-15 10:49:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3656','2005-07-06 07:55:22.000','4544','314','2005-07-13 10:36:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3657','2005-07-06 07:55:30.000','4134','113','2005-07-11 07:18:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3658','2005-07-06 08:01:08.000','3453','253','2005-07-15 06:36:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3659','2005-07-06 08:03:14.000','2271','330','2005-07-12 09:50:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3660','2005-07-06 08:07:29.000','1129','507','2005-07-14 08:46:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3661','2005-07-06 08:10:02.000','2600','442','2005-07-10 10:17:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3662','2005-07-06 08:11:48.000','3827','334','2005-07-09 12:25:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3663','2005-07-06 08:15:47.000','2646','566','2005-07-07 08:57:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3664','2005-07-06 08:15:57.000','3366','528','2005-07-08 06:11:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3665','2005-07-06 08:23:08.000','922','102','2005-07-13 13:38:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3666','2005-07-06 08:27:43.000','4212','347','2005-07-09 07:37:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3667','2005-07-06 08:36:34.000','447','373','2005-07-15 04:25:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3668','2005-07-06 08:36:48.000','269','514','2005-07-10 11:31:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3669','2005-07-06 08:38:29.000','1299','530','2005-07-10 05:28:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3670','2005-07-06 08:56:43.000','4271','268','2005-07-11 09:11:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3671','2005-07-06 09:01:29.000','2821','179','2005-07-15 08:08:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3672','2005-07-06 09:01:56.000','3883','283','2005-07-11 14:18:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3673','2005-07-06 09:02:09.000','1837','88','2005-07-15 06:45:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3674','2005-07-06 09:03:13.000','3686','559','2005-07-13 08:43:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3675','2005-07-06 09:09:19.000','3662','282','2005-07-12 08:51:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3676','2005-07-06 09:10:37.000','1967','137','2005-07-14 08:24:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3677','2005-07-06 09:11:58.000','600','5','2005-07-08 10:50:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3678','2005-07-06 09:15:15.000','3861','364','2005-07-10 05:01:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3679','2005-07-06 09:15:57.000','2186','547','2005-07-08 03:20:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3680','2005-07-06 09:16:10.000','2427','82','2005-07-08 07:52:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3681','2005-07-06 09:19:30.000','3325','294','2005-07-11 09:40:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3682','2005-07-06 09:22:48.000','2597','98','2005-07-14 11:17:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3683','2005-07-06 09:25:56.000','3020','43','2005-07-14 12:10:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3684','2005-07-06 09:29:22.000','3261','395','2005-07-12 08:19:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3685','2005-07-06 09:30:45.000','2015','58','2005-07-11 15:16:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3686','2005-07-06 09:37:50.000','376','548','2005-07-09 10:15:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3687','2005-07-06 09:38:33.000','2040','207','2005-07-14 07:50:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3688','2005-07-06 09:41:53.000','1102','380','2005-07-14 10:30:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3689','2005-07-06 09:43:01.000','3168','129','2005-07-11 09:57:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3690','2005-07-06 09:46:03.000','4405','435','2005-07-07 12:12:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3691','2005-07-06 09:46:12.000','1937','478','2005-07-07 14:08:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3692','2005-07-06 09:54:12.000','1237','286','2005-07-11 09:42:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3693','2005-07-06 09:56:09.000','2989','545','2005-07-15 06:50:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3694','2005-07-06 10:01:23.000','3848','419','2005-07-08 11:44:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3695','2005-07-06 10:02:08.000','2823','441','2005-07-09 15:43:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3696','2005-07-06 10:04:55.000','3244','497','2005-07-11 15:58:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3697','2005-07-06 10:07:22.000','1223','182','2005-07-13 14:04:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3698','2005-07-06 10:09:20.000','1263','461','2005-07-08 15:49:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3699','2005-07-06 10:11:25.000','418','262','2005-07-14 05:18:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3700','2005-07-06 10:12:19.000','343','72','2005-07-07 14:21:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3701','2005-07-06 10:12:45.000','3679','31','2005-07-09 08:52:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3702','2005-07-06 10:13:56.000','2204','428','2005-07-10 08:12:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3703','2005-07-06 10:15:26.000','4276','421','2005-07-13 13:00:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3704','2005-07-06 10:16:45.000','2687','323','2005-07-13 12:44:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3705','2005-07-06 10:17:59.000','65','223','2005-07-10 15:31:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3706','2005-07-06 10:18:01.000','681','132','2005-07-09 09:07:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3707','2005-07-06 10:21:49.000','1080','14','2005-07-12 05:14:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3708','2005-07-06 10:23:27.000','2105','201','2005-07-14 09:26:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3709','2005-07-06 10:26:56.000','4033','187','2005-07-15 13:51:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3710','2005-07-06 10:28:53.000','2596','228','2005-07-15 06:17:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3711','2005-07-06 10:46:15.000','1914','75','2005-07-07 09:25:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3712','2005-07-06 10:47:35.000','3741','504','2005-07-15 09:39:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3713','2005-07-06 10:49:30.000','1823','504','2005-07-13 10:44:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3714','2005-07-06 10:51:28.000','1985','276','2005-07-09 13:57:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3715','2005-07-06 10:51:48.000','4456','228','2005-07-11 06:08:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3716','2005-07-06 10:52:32.000','3271','92','2005-07-14 08:45:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3717','2005-07-06 10:53:34.000','1677','173','2005-07-07 13:43:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3718','2005-07-06 10:57:56.000','2624','56','2005-07-12 12:54:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3719','2005-07-06 11:05:55.000','3573','376','2005-07-11 08:10:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3720','2005-07-06 11:06:57.000','2958','96','2005-07-09 14:16:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3721','2005-07-06 11:10:09.000','2654','226','2005-07-11 07:45:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3722','2005-07-06 11:10:27.000','604','83','2005-07-13 12:56:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3723','2005-07-06 11:12:02.000','4554','501','2005-07-14 16:45:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3724','2005-07-06 11:12:48.000','3622','468','2005-07-14 14:41:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3725','2005-07-06 11:15:04.000','2789','126','2005-07-09 06:39:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3726','2005-07-06 11:15:49.000','742','363','2005-07-11 05:54:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3727','2005-07-06 11:16:43.000','2886','57','2005-07-07 15:39:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3728','2005-07-06 11:29:00.000','1798','298','2005-07-11 06:28:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3729','2005-07-06 11:30:29.000','3156','90','2005-07-12 07:18:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3730','2005-07-06 11:31:24.000','1665','355','2005-07-15 06:53:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3731','2005-07-06 11:33:36.000','4133','558','2005-07-15 12:23:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3732','2005-07-06 11:33:37.000','106','318','2005-07-08 08:31:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3733','2005-07-06 11:33:55.000','3242','586','2005-07-09 10:08:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3734','2005-07-06 11:40:27.000','4569','37','2005-07-14 12:08:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3735','2005-07-06 11:42:04.000','2262','534','2005-07-12 14:33:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3736','2005-07-06 11:43:44.000','1515','23','2005-07-13 07:55:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3737','2005-07-06 11:45:53.000','123','403','2005-07-13 15:27:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3738','2005-07-06 11:50:57.000','578','546','2005-07-09 08:07:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3739','2005-07-06 11:54:18.000','4333','157','2005-07-09 10:48:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3740','2005-07-06 11:55:35.000','1829','277','2005-07-14 09:44:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3741','2005-07-06 12:00:18.000','1449','584','2005-07-12 09:02:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3742','2005-07-06 12:01:38.000','2873','96','2005-07-15 10:46:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3743','2005-07-06 12:03:54.000','1012','456','2005-07-13 10:56:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3744','2005-07-06 12:10:02.000','3343','510','2005-07-08 11:49:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3745','2005-07-06 12:10:32.000','1518','171','2005-07-12 15:20:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3746','2005-07-06 12:10:51.000','3387','424','2005-07-07 11:36:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3747','2005-07-06 12:11:14.000','1093','437','2005-07-09 17:14:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3748','2005-07-06 12:11:22.000','2920','79','2005-07-12 07:22:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3749','2005-07-06 12:18:03.000','1531','170','2005-07-11 07:25:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3750','2005-07-06 12:19:28.000','2422','103','2005-07-14 13:16:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3751','2005-07-06 12:23:41.000','3652','128','2005-07-10 06:58:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3752','2005-07-06 12:30:12.000','4561','235','2005-07-13 12:13:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3753','2005-07-06 12:34:06.000','774','358','2005-07-07 14:19:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3754','2005-07-06 12:35:44.000','4042','83','2005-07-08 16:28:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3755','2005-07-06 12:37:16.000','3147','402','2005-07-13 07:22:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3756','2005-07-06 12:40:38.000','30','320','2005-07-11 09:29:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3757','2005-07-06 12:42:26.000','2816','66','2005-07-11 10:30:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3758','2005-07-06 12:43:11.000','2498','48','2005-07-14 12:52:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3759','2005-07-06 12:46:38.000','4165','378','2005-07-10 11:31:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3760','2005-07-06 12:49:28.000','1306','330','2005-07-09 16:29:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3761','2005-07-06 12:52:44.000','4304','464','2005-07-08 17:22:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3762','2005-07-06 12:52:49.000','1941','413','2005-07-12 11:41:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3763','2005-07-06 12:56:31.000','1573','189','2005-07-09 14:49:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3764','2005-07-06 13:01:03.000','3115','470','2005-07-13 15:26:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3765','2005-07-06 13:01:47.000','1805','547','2005-07-09 07:10:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3766','2005-07-06 13:04:35.000','4504','312','2005-07-07 15:46:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3767','2005-07-06 13:07:27.000','923','582','2005-07-08 18:48:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3768','2005-07-06 13:07:30.000','3995','573','2005-07-09 16:26:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3769','2005-07-06 13:11:33.000','467','567','2005-07-14 17:54:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3770','2005-07-06 13:14:28.000','3836','198','2005-07-13 09:23:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3771','2005-07-06 13:19:34.000','1373','56','2005-07-10 10:27:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3772','2005-07-06 13:22:53.000','434','338','2005-07-10 11:54:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3773','2005-07-06 13:23:34.000','2034','263','2005-07-08 17:23:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3774','2005-07-06 13:25:07.000','4044','439','2005-07-15 12:56:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3775','2005-07-06 13:27:33.000','3696','300','2005-07-09 10:27:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3776','2005-07-06 13:31:37.000','4387','278','2005-07-10 10:53:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3777','2005-07-06 13:36:48.000','2470','548','2005-07-11 14:26:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3778','2005-07-06 13:44:48.000','2181','122','2005-07-13 09:31:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3779','2005-07-06 13:46:36.000','634','583','2005-07-10 15:49:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3780','2005-07-06 13:52:02.000','1209','99','2005-07-15 08:41:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3781','2005-07-06 13:53:41.000','3894','23','2005-07-15 10:03:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3782','2005-07-06 13:57:03.000','3365','515','2005-07-09 11:13:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3783','2005-07-06 13:57:31.000','2345','386','2005-07-14 10:44:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3784','2005-07-06 13:57:56.000','2287','165','2005-07-14 17:24:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3785','2005-07-06 14:00:13.000','3279','577','2005-07-14 10:13:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3786','2005-07-06 14:00:41.000','4508','152','2005-07-13 16:49:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3787','2005-07-06 14:02:01.000','288','474','2005-07-09 19:09:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3788','2005-07-06 14:02:02.000','1363','379','2005-07-10 18:24:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3789','2005-07-06 14:02:26.000','3560','595','2005-07-14 18:13:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3790','2005-07-06 14:13:45.000','1711','10','2005-07-14 13:35:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3791','2005-07-06 14:24:56.000','3426','452','2005-07-14 11:06:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3792','2005-07-06 14:26:38.000','2651','312','2005-07-11 16:34:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3793','2005-07-06 14:32:44.000','4558','553','2005-07-08 13:55:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3794','2005-07-06 14:35:26.000','584','499','2005-07-11 14:40:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3795','2005-07-06 14:37:41.000','240','153','2005-07-11 20:27:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3796','2005-07-06 14:45:22.000','1649','228','2005-07-07 11:01:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3797','2005-07-06 14:54:52.000','1047','374','2005-07-10 09:50:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3798','2005-07-06 14:57:53.000','1942','479','2005-07-07 10:48:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3799','2005-07-06 15:00:14.000','4532','251','2005-07-10 15:39:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3800','2005-07-06 15:01:27.000','4004','100','2005-07-15 11:12:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3801','2005-07-06 15:05:50.000','4209','68','2005-07-12 12:56:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3802','2005-07-06 15:06:09.000','1017','91','2005-07-08 09:33:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3803','2005-07-06 15:06:55.000','2062','494','2005-07-08 18:53:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3804','2005-07-06 15:08:08.000','537','126','2005-07-15 14:01:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3805','2005-07-06 15:08:42.000','1716','418','2005-07-07 14:34:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3806','2005-07-06 15:09:41.000','3555','154','2005-07-14 09:14:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3807','2005-07-06 15:11:44.000','39','425','2005-07-10 09:20:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3808','2005-07-06 15:15:35.000','4339','314','2005-07-07 16:10:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3809','2005-07-06 15:16:37.000','2932','358','2005-07-09 14:45:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3810','2005-07-06 15:18:44.000','342','296','2005-07-12 09:52:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3811','2005-07-06 15:20:37.000','695','208','2005-07-08 16:26:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3812','2005-07-06 15:22:19.000','4490','381','2005-07-08 13:04:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3813','2005-07-06 15:23:34.000','4100','189','2005-07-08 19:03:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3814','2005-07-06 15:23:56.000','3826','306','2005-07-13 20:51:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3815','2005-07-06 15:26:36.000','4038','472','2005-07-11 17:07:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3816','2005-07-06 15:27:04.000','2941','489','2005-07-14 13:12:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3817','2005-07-06 15:31:45.000','2933','267','2005-07-11 17:11:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3818','2005-07-06 15:33:31.000','653','97','2005-07-11 16:35:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3819','2005-07-06 15:35:06.000','1814','74','2005-07-14 19:08:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3820','2005-07-06 15:35:26.000','4192','460','2005-07-11 12:22:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3821','2005-07-06 15:36:20.000','4385','354','2005-07-11 20:04:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3822','2005-07-06 15:41:15.000','1314','241','2005-07-07 16:41:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3823','2005-07-06 15:41:27.000','124','265','2005-07-09 09:48:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3824','2005-07-06 15:43:15.000','3107','107','2005-07-13 16:05:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3825','2005-07-06 15:50:03.000','630','132','2005-07-09 19:20:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3826','2005-07-06 15:51:58.000','73','451','2005-07-13 12:35:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3827','2005-07-06 15:52:03.000','2072','41','2005-07-08 21:43:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3828','2005-07-06 15:57:30.000','4493','498','2005-07-10 12:17:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3829','2005-07-06 15:59:40.000','4126','356','2005-07-11 10:29:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3830','2005-07-06 16:01:16.000','553','310','2005-07-15 19:35:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3831','2005-07-06 16:06:35.000','1338','206','2005-07-08 15:14:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3832','2005-07-06 16:12:23.000','4499','233','2005-07-12 21:29:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3833','2005-07-06 16:18:28.000','3232','416','2005-07-14 20:09:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3834','2005-07-06 16:19:56.000','3001','366','2005-07-13 11:38:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3835','2005-07-06 16:22:45.000','935','486','2005-07-11 17:04:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3836','2005-07-06 16:26:04.000','1148','351','2005-07-10 15:08:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3837','2005-07-06 16:27:43.000','3166','309','2005-07-07 18:02:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3838','2005-07-06 16:29:43.000','3404','565','2005-07-11 20:50:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3839','2005-07-06 16:30:30.000','3230','231','2005-07-11 19:00:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3840','2005-07-06 16:30:59.000','4384','468','2005-07-15 22:08:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3841','2005-07-06 16:34:00.000','4228','470','2005-07-08 15:12:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3842','2005-07-06 16:34:32.000','3119','583','2005-07-08 11:55:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3843','2005-07-06 16:35:40.000','3844','62','2005-07-07 18:29:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3844','2005-07-06 16:37:58.000','2814','179','2005-07-09 19:54:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3845','2005-07-06 16:38:14.000','4495','28','2005-07-09 14:59:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3846','2005-07-06 16:43:10.000','2829','88','2005-07-14 11:09:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3847','2005-07-06 16:44:41.000','782','206','2005-07-07 21:54:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3848','2005-07-06 16:47:32.000','2906','188','2005-07-14 15:00:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3849','2005-07-06 16:49:43.000','3660','60','2005-07-12 17:20:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3850','2005-07-06 16:51:21.000','1700','103','2005-07-12 13:58:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3851','2005-07-06 16:54:12.000','493','436','2005-07-11 22:49:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3852','2005-07-06 16:57:49.000','3329','511','2005-07-11 17:11:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3853','2005-07-06 16:59:20.000','1411','537','2005-07-07 12:30:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3854','2005-07-06 17:02:33.000','2054','243','2005-07-12 17:32:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3855','2005-07-06 17:03:48.000','2931','46','2005-07-12 14:32:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3856','2005-07-06 17:04:46.000','3083','498','2005-07-14 19:23:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3857','2005-07-06 17:07:54.000','1135','236','2005-07-07 13:28:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3858','2005-07-06 17:17:57.000','829','377','2005-07-10 23:10:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3859','2005-07-06 17:18:15.000','2548','553','2005-07-09 16:48:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3860','2005-07-06 17:20:24.000','144','514','2005-07-09 22:33:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3861','2005-07-06 17:24:49.000','4506','202','2005-07-15 22:19:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3862','2005-07-06 17:35:22.000','471','181','2005-07-15 17:13:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3863','2005-07-06 17:40:18.000','363','481','2005-07-07 17:58:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3864','2005-07-06 17:41:42.000','2811','68','2005-07-08 14:17:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3865','2005-07-06 17:46:57.000','3579','357','2005-07-12 12:20:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3866','2005-07-06 17:47:20.000','194','409','2005-07-15 18:12:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3867','2005-07-06 17:52:19.000','3620','580','2005-07-13 21:48:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3868','2005-07-06 17:54:13.000','1606','416','2005-07-10 14:51:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3869','2005-07-06 17:56:46.000','2540','183','2005-07-10 20:44:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3870','2005-07-06 17:57:54.000','3357','12','2005-07-13 12:30:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3871','2005-07-06 17:58:51.000','3114','331','2005-07-15 22:18:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3872','2005-07-06 18:00:19.000','1785','513','2005-07-07 17:26:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3873','2005-07-06 18:03:16.000','4148','394','2005-07-15 23:58:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3874','2005-07-06 18:06:12.000','1870','137','2005-07-12 16:55:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3875','2005-07-06 18:15:39.000','712','108','2005-07-11 17:34:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3876','2005-07-06 18:21:13.000','4039','295','2005-07-14 16:57:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3877','2005-07-06 18:22:10.000','2796','576','2005-07-07 23:38:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3878','2005-07-06 18:27:09.000','4022','385','2005-07-15 20:13:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3879','2005-07-06 18:31:20.000','1376','81','2005-07-09 19:03:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3880','2005-07-06 18:32:49.000','42','507','2005-07-07 20:46:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3881','2005-07-06 18:35:37.000','143','456','2005-07-10 00:06:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3882','2005-07-06 18:38:21.000','788','254','2005-07-09 14:55:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3883','2005-07-06 18:39:38.000','3238','69','2005-07-14 15:59:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3884','2005-07-06 18:41:33.000','1806','210','2005-07-07 22:06:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3885','2005-07-06 18:43:43.000','1820','282','2005-07-12 19:48:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3886','2005-07-06 18:44:24.000','2368','326','2005-07-08 15:11:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3887','2005-07-06 18:46:34.000','1695','530','2005-07-07 13:15:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3888','2005-07-06 18:54:20.000','1945','412','2005-07-12 17:13:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3889','2005-07-06 18:56:25.000','2005','576','2005-07-08 21:22:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3890','2005-07-06 18:58:15.000','2570','553','2005-07-10 18:51:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3891','2005-07-06 18:58:25.000','3216','553','2005-07-09 23:20:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3892','2005-07-06 18:58:58.000','778','549','2005-07-10 19:29:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3893','2005-07-06 18:59:31.000','1281','350','2005-07-12 19:21:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3894','2005-07-06 19:01:39.000','2087','149','2005-07-12 21:35:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3895','2005-07-06 19:04:24.000','145','584','2005-07-15 17:48:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3896','2005-07-06 19:09:15.000','1755','309','2005-07-16 00:52:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3897','2005-07-06 19:11:43.000','14','277','2005-07-11 21:50:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3898','2005-07-06 19:12:37.000','3858','53','2005-07-11 15:50:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3899','2005-07-06 19:12:40.000','4020','485','2005-07-13 23:41:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3900','2005-07-06 19:21:28.000','1497','129','2005-07-15 21:06:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3901','2005-07-06 19:24:55.000','3367','321','2005-07-14 20:30:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3902','2005-07-06 19:25:18.000','2868','192','2005-07-10 17:42:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3903','2005-07-06 19:27:32.000','3614','369','2005-07-08 23:27:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3904','2005-07-06 19:30:57.000','3600','485','2005-07-11 18:47:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3905','2005-07-06 19:33:34.000','3817','526','2005-07-15 17:55:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3906','2005-07-06 19:35:55.000','1383','293','2005-07-15 22:35:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3907','2005-07-06 19:39:14.000','2507','452','2005-07-11 17:45:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3908','2005-07-06 19:47:26.000','3980','116','2005-07-13 19:59:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3909','2005-07-06 19:54:41.000','3423','396','2005-07-15 18:11:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3910','2005-07-06 20:05:18.000','2085','248','2005-07-10 18:51:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3911','2005-07-06 20:09:11.000','4548','34','2005-07-08 23:53:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3912','2005-07-06 20:10:03.000','2449','154','2005-07-08 18:39:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3913','2005-07-06 20:11:00.000','752','494','2005-07-08 14:42:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3914','2005-07-06 20:11:10.000','4092','159','2005-07-14 14:42:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3915','2005-07-06 20:16:46.000','125','163','2005-07-10 17:24:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3916','2005-07-06 20:18:50.000','3198','46','2005-07-12 21:56:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3917','2005-07-06 20:19:29.000','2747','471','2005-07-11 00:49:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3918','2005-07-06 20:26:15.000','1111','435','2005-07-15 20:32:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3919','2005-07-06 20:26:21.000','2695','147','2005-07-15 00:13:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3920','2005-07-06 20:26:40.000','1551','321','2005-07-15 15:00:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3921','2005-07-06 20:29:48.000','949','531','2005-07-14 01:44:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3922','2005-07-06 20:32:27.000','2878','470','2005-07-14 19:00:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3923','2005-07-06 20:34:10.000','2039','63','2005-07-13 19:20:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3924','2005-07-06 20:38:02.000','187','114','2005-07-11 23:35:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3925','2005-07-06 20:41:44.000','2653','428','2005-07-15 21:05:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3926','2005-07-06 20:42:35.000','4241','500','2005-07-09 16:30:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3927','2005-07-06 20:48:14.000','2194','404','2005-07-10 15:37:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3928','2005-07-06 20:52:09.000','1960','411','2005-07-08 18:51:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3929','2005-07-06 20:52:39.000','1235','453','2005-07-12 00:27:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3930','2005-07-06 20:54:07.000','165','573','2005-07-10 18:31:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3931','2005-07-06 21:03:46.000','182','176','2005-07-16 01:32:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3932','2005-07-06 21:06:17.000','4396','490','2005-07-07 19:25:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3933','2005-07-06 21:06:37.000','1202','229','2005-07-08 20:23:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3934','2005-07-06 21:07:23.000','3187','576','2005-07-10 18:20:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3935','2005-07-06 21:08:29.000','3402','503','2005-07-15 23:28:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3936','2005-07-06 21:15:03.000','4258','129','2005-07-08 17:45:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3937','2005-07-06 21:15:38.000','2091','211','2005-07-15 00:01:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3938','2005-07-06 21:15:45.000','1991','341','2005-07-13 20:02:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3939','2005-07-06 21:16:32.000','3627','149','2005-07-11 03:12:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3940','2005-07-06 21:16:59.000','1502','116','2005-07-07 19:17:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3941','2005-07-06 21:20:37.000','382','560','2005-07-09 01:35:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3942','2005-07-06 21:21:34.000','677','553','2005-07-15 02:34:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3943','2005-07-06 21:22:17.000','1816','566','2005-07-07 21:26:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3944','2005-07-06 21:34:11.000','4213','436','2005-07-08 23:46:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3945','2005-07-06 21:35:00.000','754','86','2005-07-08 00:31:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3946','2005-07-06 21:39:24.000','294','13','2005-07-11 16:10:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3947','2005-07-06 21:42:21.000','4188','324','2005-07-08 19:37:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3948','2005-07-06 21:45:53.000','2254','161','2005-07-08 19:24:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3949','2005-07-06 21:46:36.000','1765','153','2005-07-11 03:18:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3950','2005-07-06 21:48:44.000','4153','598','2005-07-14 02:25:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3951','2005-07-06 21:50:41.000','2288','250','2005-07-12 02:09:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3952','2005-07-06 21:51:31.000','1719','417','2005-07-13 15:54:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3953','2005-07-06 21:54:55.000','3879','385','2005-07-09 18:52:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3954','2005-07-06 21:57:44.000','4250','558','2005-07-08 02:37:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3955','2005-07-06 21:58:08.000','2523','247','2005-07-08 03:43:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3956','2005-07-06 22:01:51.000','15','147','2005-07-12 21:35:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3957','2005-07-06 22:05:47.000','443','414','2005-07-16 01:08:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3958','2005-07-06 22:07:33.000','4117','288','2005-07-10 19:31:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3959','2005-07-06 22:07:58.000','40','448','2005-07-13 02:30:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3960','2005-07-06 22:08:53.000','2090','594','2005-07-07 23:21:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3961','2005-07-06 22:11:43.000','4320','364','2005-07-09 03:14:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3962','2005-07-06 22:13:45.000','379','307','2005-07-15 00:22:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3963','2005-07-06 22:19:17.000','3912','111','2005-07-15 01:22:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3964','2005-07-06 22:23:02.000','1853','30','2005-07-07 22:21:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3965','2005-07-06 22:36:20.000','2863','243','2005-07-09 17:45:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3966','2005-07-06 22:38:49.000','556','495','2005-07-07 23:33:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3967','2005-07-06 22:45:10.000','2510','31','2005-07-09 23:54:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3968','2005-07-06 22:47:09.000','558','235','2005-07-12 21:01:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3969','2005-07-06 22:47:59.000','383','587','2005-07-08 02:11:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3970','2005-07-06 22:48:17.000','701','381','2005-07-15 19:07:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3971','2005-07-06 22:50:40.000','4415','473','2005-07-08 01:02:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3972','2005-07-06 22:53:57.000','1895','598','2005-07-11 01:32:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3973','2005-07-06 22:58:31.000','2625','592','2005-07-16 03:27:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3974','2005-07-06 22:59:16.000','4282','318','2005-07-11 22:30:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3975','2005-07-06 23:00:09.000','4343','545','2005-07-10 01:39:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3976','2005-07-06 23:00:20.000','2424','329','2005-07-07 21:51:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3977','2005-07-06 23:00:49.000','1284','449','2005-07-15 00:41:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3978','2005-07-06 23:04:33.000','4341','343','2005-07-10 17:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3979','2005-07-06 23:04:35.000','794','550','2005-07-13 01:38:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3980','2005-07-06 23:11:11.000','1845','475','2005-07-14 18:22:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3981','2005-07-06 23:12:12.000','842','375','2005-07-13 01:47:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3982','2005-07-06 23:14:16.000','4327','64','2005-07-08 21:21:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3983','2005-07-06 23:14:21.000','1261','6','2005-07-12 17:55:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3984','2005-07-06 23:22:36.000','2205','570','2005-07-08 21:40:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3985','2005-07-06 23:24:03.000','2096','307','2005-07-10 00:20:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3986','2005-07-06 23:25:13.000','3737','122','2005-07-09 21:26:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3987','2005-07-06 23:28:24.000','3104','270','2005-07-15 00:52:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3988','2005-07-06 23:30:42.000','2981','421','2005-07-13 03:06:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3989','2005-07-06 23:30:54.000','2366','213','2005-07-12 01:28:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3990','2005-07-06 23:32:44.000','2009','558','2005-07-14 01:35:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3991','2005-07-06 23:33:41.000','587','583','2005-07-16 01:31:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3992','2005-07-06 23:36:56.000','3219','448','2005-07-15 03:13:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3993','2005-07-06 23:37:06.000','1061','525','2005-07-14 19:31:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3994','2005-07-06 23:39:01.000','902','487','2005-07-14 00:33:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3995','2005-07-06 23:43:03.000','3990','128','2005-07-13 04:13:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3996','2005-07-06 23:46:43.000','2857','551','2005-07-14 22:34:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3997','2005-07-06 23:46:52.000','3895','52','2005-07-14 05:39:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3998','2005-07-06 23:49:20.000','1245','566','2005-07-12 20:39:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('3999','2005-07-06 23:50:54.000','707','390','2005-07-09 22:09:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4000','2005-07-06 23:58:37.000','2122','95','2005-07-08 21:43:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4001','2005-07-07 00:07:00.000','864','120','2005-07-13 21:27:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4002','2005-07-07 00:08:18.000','2790','308','2005-07-14 01:29:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4003','2005-07-07 00:09:02.000','4054','8','2005-07-08 04:27:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4004','2005-07-07 00:20:51.000','667','574','2005-07-11 18:55:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4005','2005-07-07 00:22:26.000','3677','190','2005-07-15 04:34:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4006','2005-07-07 00:25:29.000','397','473','2005-07-08 05:30:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4007','2005-07-07 00:26:05.000','2071','285','2005-07-15 19:53:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4008','2005-07-07 00:26:43.000','1107','505','2005-07-16 03:58:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4009','2005-07-07 00:28:55.000','3607','394','2005-07-10 00:37:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4010','2005-07-07 00:47:00.000','4509','476','2005-07-12 06:23:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4011','2005-07-07 00:48:25.000','2052','20','2005-07-13 06:30:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4012','2005-07-07 00:56:09.000','1400','104','2005-07-10 21:49:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4013','2005-07-07 00:58:00.000','2344','475','2005-07-15 19:42:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4014','2005-07-07 00:58:54.000','583','510','2005-07-12 02:40:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4015','2005-07-07 00:59:46.000','3032','233','2005-07-14 03:16:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4016','2005-07-07 01:05:50.000','3318','335','2005-07-09 05:59:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4017','2005-07-07 01:08:18.000','3117','595','2005-07-09 01:47:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4018','2005-07-07 01:10:33.000','906','207','2005-07-12 20:54:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4019','2005-07-07 01:27:44.000','3200','294','2005-07-10 21:30:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4020','2005-07-07 01:42:22.000','3760','471','2005-07-10 00:53:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4021','2005-07-07 01:46:44.000','1676','315','2005-07-12 00:16:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4022','2005-07-07 01:50:06.000','3914','390','2005-07-09 21:47:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4023','2005-07-07 01:55:25.000','274','573','2005-07-08 02:43:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4024','2005-07-07 02:11:23.000','3976','448','2005-07-11 02:00:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4025','2005-07-07 02:13:24.000','3908','114','2005-07-08 00:47:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4026','2005-07-07 02:15:48.000','4142','251','2005-07-14 04:15:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4027','2005-07-07 02:19:01.000','56','116','2005-07-10 01:12:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4028','2005-07-07 02:19:14.000','1651','344','2005-07-15 08:09:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4029','2005-07-07 02:19:44.000','4075','518','2005-07-15 02:30:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4030','2005-07-07 02:25:42.000','1734','300','2005-07-08 22:53:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4031','2005-07-07 02:32:07.000','3094','143','2005-07-14 06:01:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4032','2005-07-07 02:34:13.000','2628','335','2005-07-14 22:43:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4033','2005-07-07 02:35:46.000','203','453','2005-07-16 01:12:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4034','2005-07-07 02:36:33.000','1666','354','2005-07-09 08:32:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4035','2005-07-07 02:45:02.000','3611','539','2005-07-14 01:41:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4036','2005-07-07 02:48:00.000','500','397','2005-07-07 22:46:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4037','2005-07-07 02:52:52.000','3903','594','2005-07-16 00:09:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4038','2005-07-07 02:52:53.000','1264','27','2005-07-11 22:32:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4039','2005-07-07 02:57:59.000','4050','290','2005-07-12 03:44:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4040','2005-07-07 03:02:40.000','3046','103','2005-07-16 06:05:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4041','2005-07-07 03:03:33.000','2217','445','2005-07-09 07:57:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4042','2005-07-07 03:06:40.000','50','10','2005-07-10 02:37:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4043','2005-07-07 03:09:50.000','3427','204','2005-07-10 07:49:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4044','2005-07-07 03:22:23.000','3263','94','2005-07-13 03:23:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4045','2005-07-07 03:26:14.000','1422','529','2005-07-11 06:52:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4046','2005-07-07 03:27:59.000','3518','491','2005-07-14 01:14:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4047','2005-07-07 03:28:49.000','3475','364','2005-07-09 02:42:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4048','2005-07-07 03:30:52.000','659','474','2005-07-14 05:05:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4049','2005-07-07 03:34:53.000','4172','79','2005-07-15 04:10:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4050','2005-07-07 03:35:33.000','104','528','2005-07-15 03:11:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4051','2005-07-07 03:37:28.000','2715','331','2005-07-09 01:40:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4052','2005-07-07 03:38:22.000','206','442','2005-07-13 02:56:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4053','2005-07-07 03:39:22.000','2889','377','2005-07-09 22:32:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4054','2005-07-07 03:42:07.000','3885','260','2005-07-10 03:22:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4055','2005-07-07 03:49:13.000','2561','513','2005-07-11 03:15:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4056','2005-07-07 03:57:36.000','4211','360','2005-07-09 08:53:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4057','2005-07-07 04:00:20.000','2838','141','2005-07-12 08:14:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4058','2005-07-07 04:02:50.000','3877','442','2005-07-10 04:30:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4059','2005-07-07 04:04:26.000','292','401','2005-07-10 22:35:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4060','2005-07-07 04:10:13.000','2697','211','2005-07-13 07:44:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4061','2005-07-07 04:13:35.000','62','70','2005-07-10 23:58:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4062','2005-07-07 04:22:27.000','1323','410','2005-07-09 03:27:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4063','2005-07-07 04:23:57.000','1452','331','2005-07-14 23:35:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4064','2005-07-07 04:29:20.000','1402','47','2005-07-14 05:48:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4065','2005-07-07 04:32:28.000','1339','26','2005-07-12 08:30:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4066','2005-07-07 04:34:09.000','1975','368','2005-07-10 23:54:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4067','2005-07-07 04:34:23.000','2945','469','2005-07-16 04:04:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4068','2005-07-07 04:34:38.000','4152','206','2005-07-11 09:16:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4069','2005-07-07 04:35:06.000','3361','570','2005-07-10 23:59:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4070','2005-07-07 04:37:09.000','2926','496','2005-07-08 04:19:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4071','2005-07-07 04:37:26.000','2883','209','2005-07-13 06:45:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4072','2005-07-07 04:48:02.000','3130','310','2005-07-12 10:32:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4073','2005-07-07 04:49:13.000','647','290','2005-07-10 03:20:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4074','2005-07-07 04:49:49.000','2347','412','2005-07-12 04:51:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4075','2005-07-07 04:51:44.000','1989','593','2005-07-09 03:07:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4076','2005-07-07 04:52:15.000','3148','329','2005-07-13 23:22:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4077','2005-07-07 04:53:40.000','2445','377','2005-07-09 09:56:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4078','2005-07-07 05:05:05.000','1671','522','2005-07-10 05:39:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4079','2005-07-07 05:06:27.000','2202','84','2005-07-16 08:46:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4080','2005-07-07 05:09:54.000','1364','148','2005-07-11 23:58:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4081','2005-07-07 05:10:08.000','1138','284','2005-07-12 00:47:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4082','2005-07-07 05:11:53.000','2904','108','2005-07-12 00:55:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4083','2005-07-07 05:13:15.000','3454','490','2005-07-08 09:11:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4084','2005-07-07 05:16:00.000','2588','441','2005-07-15 09:23:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4085','2005-07-07 05:25:39.000','1683','573','2005-07-12 04:30:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4086','2005-07-07 05:26:06.000','253','494','2005-07-12 00:45:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4087','2005-07-07 05:30:56.000','3066','433','2005-07-16 10:20:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4088','2005-07-07 05:31:55.000','234','66','2005-07-15 07:35:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4089','2005-07-07 05:45:59.000','3431','102','2005-07-16 07:34:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4090','2005-07-07 05:47:33.000','3096','67','2005-07-08 04:25:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4091','2005-07-07 05:53:38.000','3928','337','2005-07-14 03:12:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4092','2005-07-07 05:54:18.000','1721','246','2005-07-16 09:14:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4093','2005-07-07 05:54:50.000','1534','337','2005-07-12 00:34:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4094','2005-07-07 06:00:21.000','2412','517','2005-07-10 03:24:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4095','2005-07-07 06:01:48.000','2900','33','2005-07-15 02:52:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4096','2005-07-07 06:09:11.000','3911','403','2005-07-08 09:17:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4097','2005-07-07 06:10:55.000','2454','56','2005-07-11 02:45:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4098','2005-07-07 06:14:51.000','2865','35','2005-07-14 06:51:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4099','2005-07-07 06:20:33.000','1930','76','2005-07-16 08:39:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4100','2005-07-07 06:20:52.000','2346','332','2005-07-15 05:58:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4101','2005-07-07 06:25:11.000','2891','588','2005-07-12 07:44:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4102','2005-07-07 06:25:19.000','3998','135','2005-07-11 00:50:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4103','2005-07-07 06:25:28.000','3632','91','2005-07-12 11:18:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4104','2005-07-07 06:25:41.000','1066','338','2005-07-13 04:18:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4105','2005-07-07 06:31:00.000','439','423','2005-07-09 03:52:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4106','2005-07-07 06:33:35.000','4083','563','2005-07-13 04:03:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4107','2005-07-07 06:36:32.000','4232','206','2005-07-14 03:36:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4108','2005-07-07 06:38:31.000','4535','66','2005-07-08 10:44:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4109','2005-07-07 06:39:43.000','532','517','2005-07-10 06:30:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4110','2005-07-07 06:44:27.000','226','486','2005-07-12 05:43:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4111','2005-07-07 06:47:56.000','1009','515','2005-07-13 02:13:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4112','2005-07-07 06:49:09.000','3284','533','2005-07-16 06:53:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4113','2005-07-07 06:49:52.000','915','170','2005-07-12 04:00:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4114','2005-07-07 06:51:12.000','4109','426','2005-07-15 01:36:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4115','2005-07-07 06:52:23.000','102','371','2005-07-14 06:12:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4116','2005-07-07 06:56:13.000','666','352','2005-07-11 11:13:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4117','2005-07-07 06:58:14.000','780','158','2005-07-16 05:28:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4118','2005-07-07 07:03:30.000','355','224','2005-07-08 09:20:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4119','2005-07-07 07:06:03.000','2078','319','2005-07-13 01:56:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4120','2005-07-07 07:07:03.000','987','559','2005-07-16 04:07:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4121','2005-07-07 07:13:50.000','2429','176','2005-07-13 04:32:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4122','2005-07-07 07:15:35.000','273','31','2005-07-14 12:10:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4123','2005-07-07 07:16:19.000','2707','469','2005-07-10 05:23:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4124','2005-07-07 07:19:54.000','2856','330','2005-07-11 05:54:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4125','2005-07-07 07:20:29.000','4131','269','2005-07-15 06:41:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4126','2005-07-07 07:24:11.000','3018','163','2005-07-15 07:31:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4127','2005-07-07 07:26:19.000','1774','15','2005-07-14 07:50:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4128','2005-07-07 07:35:25.000','3563','492','2005-07-14 08:13:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4129','2005-07-07 07:37:03.000','1413','592','2005-07-14 13:31:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4130','2005-07-07 07:51:53.000','4170','256','2005-07-11 12:41:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4131','2005-07-07 07:53:18.000','2621','58','2005-07-08 04:48:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4132','2005-07-07 08:06:07.000','993','154','2005-07-10 14:04:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4133','2005-07-07 08:12:26.000','3672','488','2005-07-16 03:43:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4134','2005-07-07 08:14:24.000','2917','183','2005-07-09 10:42:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4135','2005-07-07 08:15:03.000','3384','36','2005-07-11 10:56:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4136','2005-07-07 08:15:52.000','3461','203','2005-07-10 04:22:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4137','2005-07-07 08:17:06.000','2065','485','2005-07-11 10:52:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4138','2005-07-07 08:17:13.000','1588','317','2005-07-14 05:18:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4139','2005-07-07 08:17:35.000','2094','509','2005-07-14 14:01:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4140','2005-07-07 08:19:10.000','1897','190','2005-07-14 07:27:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4141','2005-07-07 08:19:20.000','1904','456','2005-07-11 06:54:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4142','2005-07-07 08:19:45.000','4045','492','2005-07-08 13:55:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4143','2005-07-07 08:22:07.000','597','238','2005-07-13 11:42:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4144','2005-07-07 08:25:44.000','550','431','2005-07-16 13:10:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4145','2005-07-07 08:26:39.000','3050','592','2005-07-16 12:54:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4146','2005-07-07 08:30:16.000','176','411','2005-07-12 07:52:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4147','2005-07-07 08:32:12.000','2776','274','2005-07-12 10:10:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4148','2005-07-07 08:36:58.000','260','59','2005-07-09 05:51:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4149','2005-07-07 08:40:17.000','3028','50','2005-07-10 02:58:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4150','2005-07-07 08:43:22.000','4424','188','2005-07-08 05:21:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4151','2005-07-07 08:49:02.000','4564','428','2005-07-11 05:19:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4152','2005-07-07 08:50:33.000','1761','89','2005-07-14 10:56:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4153','2005-07-07 08:53:08.000','2185','299','2005-07-11 05:09:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4154','2005-07-07 08:58:23.000','191','594','2005-07-14 03:16:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4155','2005-07-07 09:00:49.000','212','548','2005-07-13 10:59:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4156','2005-07-07 09:03:51.000','1259','585','2005-07-12 09:46:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4157','2005-07-07 09:04:26.000','304','183','2005-07-08 09:55:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4158','2005-07-07 09:05:42.000','291','433','2005-07-09 04:28:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4159','2005-07-07 09:10:57.000','3625','62','2005-07-09 10:19:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4160','2005-07-07 09:13:17.000','1909','326','2005-07-15 11:50:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4161','2005-07-07 09:15:11.000','4021','216','2005-07-15 06:59:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4162','2005-07-07 09:17:26.000','745','571','2005-07-15 10:15:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4163','2005-07-07 09:19:28.000','3176','376','2005-07-10 06:47:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4164','2005-07-07 09:20:11.000','3133','295','2005-07-14 09:35:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4165','2005-07-07 09:23:27.000','3845','66','2005-07-15 06:00:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4166','2005-07-07 09:33:30.000','3267','376','2005-07-16 06:06:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4167','2005-07-07 09:37:08.000','3771','175','2005-07-16 06:16:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4168','2005-07-07 09:37:24.000','1872','132','2005-07-09 14:32:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4169','2005-07-07 09:39:18.000','3360','580','2005-07-11 13:43:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4170','2005-07-07 09:44:36.000','2665','99','2005-07-13 14:10:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4171','2005-07-07 09:49:04.000','4199','476','2005-07-14 03:58:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4172','2005-07-07 09:49:09.000','1158','309','2005-07-11 15:14:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4173','2005-07-07 09:57:26.000','4272','320','2005-07-10 04:05:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4174','2005-07-07 09:59:49.000','3814','182','2005-07-11 13:34:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4175','2005-07-07 10:02:03.000','1979','8','2005-07-10 06:09:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4176','2005-07-07 10:03:34.000','2745','420','2005-07-16 08:43:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4177','2005-07-07 10:12:36.000','4106','317','2005-07-15 15:48:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4178','2005-07-07 10:14:31.000','2898','513','2005-07-12 09:38:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4179','2005-07-07 10:17:15.000','559','75','2005-07-10 05:12:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4180','2005-07-07 10:23:25.000','1704','3','2005-07-10 13:18:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4181','2005-07-07 10:27:54.000','3725','598','2005-07-13 06:09:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4182','2005-07-07 10:28:00.000','3080','256','2005-07-08 12:50:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4183','2005-07-07 10:28:33.000','3342','479','2005-07-15 12:29:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4184','2005-07-07 10:30:08.000','1022','468','2005-07-14 12:56:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4185','2005-07-07 10:31:05.000','2425','395','2005-07-13 05:30:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4186','2005-07-07 10:32:25.000','3910','185','2005-07-15 06:22:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4187','2005-07-07 10:41:31.000','2','161','2005-07-11 06:25:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4188','2005-07-07 10:45:29.000','3243','391','2005-07-16 09:39:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4189','2005-07-07 10:51:07.000','1492','386','2005-07-14 14:46:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4190','2005-07-07 10:52:39.000','826','349','2005-07-11 13:19:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4191','2005-07-07 10:56:14.000','2475','390','2005-07-11 09:56:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4192','2005-07-07 10:57:06.000','624','558','2005-07-13 16:30:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4193','2005-07-07 10:57:21.000','3791','445','2005-07-09 07:33:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4194','2005-07-07 10:59:39.000','1753','153','2005-07-15 09:34:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4195','2005-07-07 11:00:02.000','450','455','2005-07-14 16:54:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4196','2005-07-07 11:06:33.000','3407','564','2005-07-14 13:46:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4197','2005-07-07 11:07:52.000','2515','324','2005-07-10 10:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4198','2005-07-07 11:08:11.000','333','247','2005-07-16 15:29:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4199','2005-07-07 11:13:07.000','2120','259','2005-07-11 07:17:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4200','2005-07-07 11:15:11.000','1097','292','2005-07-11 11:46:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4201','2005-07-07 11:19:51.000','3682','145','2005-07-16 08:48:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4202','2005-07-07 11:23:48.000','2274','38','2005-07-16 16:32:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4203','2005-07-07 11:24:14.000','2743','189','2005-07-11 16:26:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4204','2005-07-07 11:24:18.000','1513','569','2005-07-15 12:42:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4205','2005-07-07 11:25:39.000','3922','486','2005-07-11 06:12:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4206','2005-07-07 11:32:16.000','1557','448','2005-07-14 13:07:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4207','2005-07-07 11:32:45.000','1119','588','2005-07-14 05:49:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4208','2005-07-07 11:34:22.000','3617','441','2005-07-09 08:25:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4209','2005-07-07 11:35:08.000','2010','100','2005-07-10 10:58:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4210','2005-07-07 11:36:20.000','1972','581','2005-07-16 12:38:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4211','2005-07-07 11:50:41.000','2001','214','2005-07-09 13:58:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4212','2005-07-07 11:53:14.000','1825','574','2005-07-09 07:12:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4213','2005-07-07 11:53:49.000','705','103','2005-07-13 07:51:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4214','2005-07-07 11:54:33.000','2534','484','2005-07-08 10:49:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4215','2005-07-07 12:00:52.000','1239','22','2005-07-11 15:14:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4216','2005-07-07 12:01:34.000','1216','467','2005-07-08 09:59:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4217','2005-07-07 12:08:59.000','3186','228','2005-07-11 15:07:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4218','2005-07-07 12:10:24.000','152','497','2005-07-15 16:09:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4219','2005-07-07 12:11:22.000','2800','16','2005-07-11 11:05:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4220','2005-07-07 12:12:36.000','821','513','2005-07-10 13:37:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4221','2005-07-07 12:18:57.000','4567','143','2005-07-12 09:47:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4222','2005-07-07 12:20:21.000','2053','467','2005-07-11 11:09:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4223','2005-07-07 12:23:54.000','2407','405','2005-07-10 14:46:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4224','2005-07-07 12:24:21.000','3659','419','2005-07-10 11:48:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4225','2005-07-07 12:24:37.000','1766','377','2005-07-12 06:47:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4226','2005-07-07 12:37:56.000','1692','57','2005-07-09 08:48:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4227','2005-07-07 12:41:36.000','4186','78','2005-07-15 12:33:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4228','2005-07-07 12:42:02.000','1020','38','2005-07-12 10:52:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4229','2005-07-07 12:43:23.000','953','106','2005-07-13 15:00:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4230','2005-07-07 12:46:47.000','353','205','2005-07-15 06:52:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4231','2005-07-07 12:48:19.000','3522','194','2005-07-13 18:45:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4232','2005-07-07 12:49:12.000','3841','347','2005-07-15 16:45:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4233','2005-07-07 13:00:20.000','1849','488','2005-07-13 16:37:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4234','2005-07-07 13:01:35.000','1179','195','2005-07-15 13:05:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4235','2005-07-07 13:05:52.000','3525','86','2005-07-10 12:17:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4236','2005-07-07 13:12:07.000','642','213','2005-07-08 15:00:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4237','2005-07-07 13:16:55.000','3773','477','2005-07-15 16:33:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4238','2005-07-07 13:22:20.000','3024','7','2005-07-10 07:44:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4239','2005-07-07 13:23:17.000','3866','122','2005-07-13 17:49:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4240','2005-07-07 13:33:12.000','1024','65','2005-07-13 12:28:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4241','2005-07-07 13:39:00.000','4154','595','2005-07-12 17:49:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4242','2005-07-07 13:39:01.000','3626','286','2005-07-12 18:29:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4243','2005-07-07 13:39:58.000','4559','339','2005-07-12 19:27:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4244','2005-07-07 13:41:58.000','592','581','2005-07-09 15:32:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4245','2005-07-07 13:48:33.000','3743','91','2005-07-10 09:54:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4246','2005-07-07 13:49:03.000','1141','411','2005-07-09 13:01:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4247','2005-07-07 13:51:54.000','808','539','2005-07-10 09:43:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4248','2005-07-07 13:59:20.000','773','161','2005-07-14 15:18:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4249','2005-07-07 14:05:17.000','4185','111','2005-07-10 09:21:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4250','2005-07-07 14:08:11.000','2556','423','2005-07-13 08:09:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4251','2005-07-07 14:11:55.000','3541','367','2005-07-16 14:01:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4252','2005-07-07 14:13:05.000','474','154','2005-07-09 14:17:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4253','2005-07-07 14:13:13.000','3355','157','2005-07-16 18:55:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4254','2005-07-07 14:13:52.000','3957','529','2005-07-12 10:39:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4255','2005-07-07 14:14:13.000','749','10','2005-07-12 18:32:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4256','2005-07-07 14:14:36.000','1386','129','2005-07-10 09:41:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4257','2005-07-07 14:18:41.000','3927','553','2005-07-08 14:58:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4258','2005-07-07 14:20:59.000','1562','492','2005-07-16 10:03:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4259','2005-07-07 14:22:18.000','4378','467','2005-07-11 19:38:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4260','2005-07-07 14:22:45.000','4575','305','2005-07-08 15:10:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4261','2005-07-07 14:23:56.000','1405','496','2005-07-13 15:26:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4262','2005-07-07 14:24:30.000','3122','29','2005-07-14 13:12:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4263','2005-07-07 14:24:44.000','2975','16','2005-07-13 18:22:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4264','2005-07-07 14:25:28.000','3499','406','2005-07-08 08:49:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4265','2005-07-07 14:27:51.000','1685','69','2005-07-12 19:55:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4266','2005-07-07 14:34:50.000','1578','509','2005-07-08 09:23:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4267','2005-07-07 14:35:30.000','136','410','2005-07-11 10:41:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4268','2005-07-07 14:36:05.000','432','80','2005-07-16 14:36:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4269','2005-07-07 14:38:33.000','415','496','2005-07-09 10:27:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4270','2005-07-07 14:38:41.000','183','210','2005-07-10 19:07:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4271','2005-07-07 14:38:52.000','533','150','2005-07-15 12:05:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4272','2005-07-07 14:39:20.000','488','120','2005-07-13 08:57:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4273','2005-07-07 14:40:22.000','4163','159','2005-07-13 09:58:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4274','2005-07-07 14:42:04.000','787','26','2005-07-13 20:23:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4275','2005-07-07 14:43:51.000','1167','393','2005-07-15 18:04:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4276','2005-07-07 14:50:59.000','221','366','2005-07-09 15:42:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4277','2005-07-07 14:52:12.000','1983','106','2005-07-09 13:10:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4278','2005-07-07 14:53:24.000','3693','6','2005-07-13 14:21:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4279','2005-07-07 15:01:53.000','581','335','2005-07-08 09:43:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4280','2005-07-07 15:09:31.000','1115','593','2005-07-13 14:47:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4281','2005-07-07 15:17:50.000','1182','321','2005-07-08 11:42:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4282','2005-07-07 15:26:31.000','3134','25','2005-07-11 14:27:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4283','2005-07-07 15:29:35.000','2807','477','2005-07-11 17:12:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4284','2005-07-07 15:31:57.000','1313','521','2005-07-09 10:20:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4285','2005-07-07 15:34:35.000','511','308','2005-07-15 09:43:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4286','2005-07-07 15:36:44.000','4496','111','2005-07-11 13:04:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4287','2005-07-07 15:37:31.000','3558','94','2005-07-16 19:59:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4288','2005-07-07 15:38:25.000','1508','64','2005-07-13 16:23:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4289','2005-07-07 15:45:58.000','3172','231','2005-07-09 11:11:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4290','2005-07-07 15:47:10.000','4174','277','2005-07-15 15:03:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4291','2005-07-07 15:47:47.000','2074','298','2005-07-10 11:45:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4292','2005-07-07 15:48:38.000','3084','401','2005-07-15 17:53:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4293','2005-07-07 15:53:47.000','984','221','2005-07-10 18:11:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4294','2005-07-07 15:56:23.000','2845','41','2005-07-15 14:50:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4295','2005-07-07 16:08:51.000','2490','319','2005-07-13 13:06:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4296','2005-07-07 16:16:03.000','977','407','2005-07-08 20:16:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4297','2005-07-07 16:24:09.000','882','141','2005-07-13 15:08:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4298','2005-07-07 16:27:25.000','1055','560','2005-07-12 18:20:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4299','2005-07-07 16:33:48.000','870','80','2005-07-16 11:48:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4300','2005-07-07 16:36:16.000','1189','38','2005-07-10 13:59:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4301','2005-07-07 16:37:23.000','1630','440','2005-07-11 18:05:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4302','2005-07-07 16:47:53.000','3669','332','2005-07-16 22:22:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4303','2005-07-07 16:57:32.000','818','108','2005-07-14 17:42:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4304','2005-07-07 17:01:19.000','3382','165','2005-07-12 22:47:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4305','2005-07-07 17:07:11.000','3926','240','2005-07-08 16:15:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4306','2005-07-07 17:12:32.000','1219','210','2005-07-16 11:24:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4307','2005-07-07 17:20:39.000','2827','394','2005-07-16 14:42:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4308','2005-07-07 17:29:16.000','1482','168','2005-07-11 21:47:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4309','2005-07-07 17:29:41.000','3549','209','2005-07-14 22:22:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4310','2005-07-07 17:30:56.000','3842','390','2005-07-12 13:19:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4311','2005-07-07 17:31:14.000','2985','498','2005-07-11 19:21:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4312','2005-07-07 17:34:59.000','3870','97','2005-07-09 17:45:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4313','2005-07-07 17:36:56.000','91','29','2005-07-13 12:00:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4314','2005-07-07 17:38:31.000','539','184','2005-07-09 20:24:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4315','2005-07-07 17:40:26.000','1472','195','2005-07-09 22:58:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4316','2005-07-07 17:44:22.000','517','301','2005-07-14 15:12:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4317','2005-07-07 17:44:49.000','2234','110','2005-07-08 21:48:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4318','2005-07-07 17:47:50.000','1607','321','2005-07-14 12:15:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4319','2005-07-07 17:50:27.000','3389','25','2005-07-10 13:53:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4320','2005-07-07 17:51:59.000','3437','376','2005-07-13 18:39:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4321','2005-07-07 17:52:38.000','612','91','2005-07-11 23:37:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4322','2005-07-07 17:54:37.000','1522','568','2005-07-14 13:56:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4323','2005-07-07 17:55:53.000','1287','336','2005-07-13 16:43:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4324','2005-07-07 17:57:56.000','952','226','2005-07-13 22:34:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4325','2005-07-07 17:59:24.000','3728','373','2005-07-16 17:10:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4326','2005-07-07 18:01:22.000','4037','331','2005-07-16 15:45:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4327','2005-07-07 18:01:39.000','860','73','2005-07-12 22:40:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4328','2005-07-07 18:03:17.000','2174','264','2005-07-14 16:14:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4329','2005-07-07 18:04:16.000','638','504','2005-07-15 17:58:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4330','2005-07-07 18:09:41.000','2408','408','2005-07-14 22:05:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4331','2005-07-07 18:22:30.000','419','535','2005-07-13 18:20:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4332','2005-07-07 18:25:26.000','1714','137','2005-07-16 15:05:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4333','2005-07-07 18:31:50.000','76','113','2005-07-08 21:26:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4334','2005-07-07 18:32:04.000','3021','210','2005-07-08 16:19:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4335','2005-07-07 18:33:57.000','1332','375','2005-07-11 13:23:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4336','2005-07-07 18:34:36.000','482','532','2005-07-10 17:58:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4337','2005-07-07 18:36:37.000','2313','464','2005-07-14 14:59:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4338','2005-07-07 18:39:56.000','3152','581','2005-07-12 21:03:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4339','2005-07-07 18:41:42.000','3215','130','2005-07-08 13:00:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4340','2005-07-07 18:41:46.000','3919','227','2005-07-16 21:27:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4341','2005-07-07 18:44:23.000','4523','124','2005-07-15 18:13:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4342','2005-07-07 18:47:03.000','1355','120','2005-07-09 21:59:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4343','2005-07-07 18:48:54.000','1926','293','2005-07-12 15:19:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4344','2005-07-07 18:50:47.000','1185','99','2005-07-12 16:38:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4345','2005-07-07 18:52:57.000','2235','225','2005-07-15 21:24:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4346','2005-07-07 18:58:45.000','1906','520','2005-07-10 16:37:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4347','2005-07-07 18:58:57.000','1964','344','2005-07-14 16:35:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4348','2005-07-07 19:02:05.000','1948','452','2005-07-09 20:51:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4349','2005-07-07 19:02:37.000','3430','182','2005-07-09 17:25:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4350','2005-07-07 19:02:41.000','2223','299','2005-07-09 15:27:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4351','2005-07-07 19:04:24.000','3567','382','2005-07-14 00:03:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4352','2005-07-07 19:15:58.000','2636','249','2005-07-16 20:22:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4353','2005-07-07 19:19:05.000','368','452','2005-07-13 13:40:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4354','2005-07-07 19:21:02.000','4423','208','2005-07-15 17:03:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4355','2005-07-07 19:21:19.000','4557','438','2005-07-09 00:55:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4356','2005-07-07 19:21:22.000','1907','318','2005-07-16 15:57:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4357','2005-07-07 19:24:39.000','3413','103','2005-07-12 00:11:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4358','2005-07-07 19:27:04.000','3136','446','2005-07-14 23:46:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4359','2005-07-07 19:30:20.000','3222','282','2005-07-09 13:34:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4360','2005-07-07 19:31:12.000','1811','92','2005-07-10 23:11:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4361','2005-07-07 19:33:23.000','116','425','2005-07-12 22:36:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4362','2005-07-07 19:35:30.000','3759','425','2005-07-14 14:59:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4363','2005-07-07 19:43:28.000','3202','168','2005-07-13 00:15:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4364','2005-07-07 19:46:51.000','10','145','2005-07-08 21:55:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4365','2005-07-07 19:47:46.000','3207','442','2005-07-08 23:21:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4366','2005-07-07 19:48:36.000','2961','524','2005-07-14 01:14:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4367','2005-07-07 19:52:01.000','4529','48','2005-07-13 19:41:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4368','2005-07-07 19:55:19.000','736','324','2005-07-09 00:11:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4369','2005-07-07 20:01:38.000','3552','517','2005-07-13 01:19:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4370','2005-07-07 20:05:36.000','1591','559','2005-07-16 23:58:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4371','2005-07-07 20:06:45.000','2533','90','2005-07-08 18:50:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4372','2005-07-07 20:09:01.000','2207','252','2005-07-09 18:24:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4373','2005-07-07 20:10:59.000','3593','470','2005-07-12 21:30:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4374','2005-07-07 20:13:58.000','4377','517','2005-07-11 18:11:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4375','2005-07-07 20:20:29.000','3035','560','2005-07-16 19:29:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4376','2005-07-07 20:24:33.000','1344','151','2005-07-11 18:32:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4377','2005-07-07 20:28:57.000','3294','205','2005-07-16 02:13:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4378','2005-07-07 20:29:08.000','1244','24','2005-07-12 19:17:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4379','2005-07-07 20:32:30.000','2773','316','2005-07-11 20:40:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4380','2005-07-07 20:35:00.000','3164','353','2005-07-14 17:06:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4381','2005-07-07 20:37:53.000','3727','486','2005-07-10 16:54:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4382','2005-07-07 20:41:03.000','657','26','2005-07-14 15:15:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4383','2005-07-07 20:45:51.000','2649','591','2005-07-17 00:52:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4384','2005-07-07 20:46:45.000','1178','59','2005-07-16 21:54:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4385','2005-07-07 20:48:38.000','849','564','2005-07-11 17:03:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4386','2005-07-07 20:55:19.000','499','314','2005-07-10 21:51:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4387','2005-07-07 20:56:47.000','591','335','2005-07-16 00:51:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4388','2005-07-07 20:58:03.000','3150','210','2005-07-16 20:05:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4389','2005-07-07 20:58:58.000','1672','166','2005-07-13 19:57:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4390','2005-07-07 20:59:06.000','6','44','2005-07-09 00:04:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4391','2005-07-07 21:09:38.000','2135','42','2005-07-09 17:35:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4392','2005-07-07 21:11:02.000','4236','491','2005-07-13 21:52:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4393','2005-07-07 21:12:36.000','4034','395','2005-07-09 22:41:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4394','2005-07-07 21:12:45.000','563','156','2005-07-16 18:24:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4395','2005-07-07 21:13:22.000','360','544','2005-07-08 22:59:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4396','2005-07-07 21:14:19.000','750','275','2005-07-10 19:22:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4397','2005-07-07 21:14:54.000','3085','494','2005-07-13 19:24:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4398','2005-07-07 21:18:44.000','3628','426','2005-07-10 22:45:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4399','2005-07-07 21:20:28.000','4515','402','2005-07-12 20:57:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4400','2005-07-07 21:22:26.000','49','370','2005-07-16 00:59:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4401','2005-07-07 21:26:27.000','2725','405','2005-07-12 17:18:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4402','2005-07-07 21:28:46.000','1198','26','2005-07-08 17:04:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4403','2005-07-07 21:29:40.000','3973','447','2005-07-09 17:58:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4404','2005-07-07 21:31:53.000','944','25','2005-07-13 19:00:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4405','2005-07-07 21:33:16.000','2102','145','2005-07-15 00:33:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4406','2005-07-07 21:35:16.000','438','448','2005-07-15 16:13:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4407','2005-07-07 21:39:45.000','267','20','2005-07-11 23:40:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4408','2005-07-07 21:41:06.000','2482','258','2005-07-11 00:32:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4409','2005-07-07 21:47:29.000','3153','8','2005-07-11 20:14:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4410','2005-07-07 21:48:16.000','2754','584','2005-07-09 03:15:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4411','2005-07-07 21:54:58.000','320','224','2005-07-14 16:14:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4412','2005-07-07 21:56:53.000','1181','282','2005-07-11 19:28:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4413','2005-07-07 22:00:04.000','1062','565','2005-07-10 18:20:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4414','2005-07-07 22:00:21.000','991','434','2005-07-12 02:51:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4415','2005-07-07 22:01:43.000','1403','329','2005-07-13 03:09:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4416','2005-07-07 22:04:36.000','1247','290','2005-07-09 02:44:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4417','2005-07-07 22:05:05.000','743','452','2005-07-09 16:16:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4418','2005-07-07 22:05:30.000','4368','417','2005-07-11 18:42:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4419','2005-07-07 22:06:24.000','783','39','2005-07-15 23:59:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4420','2005-07-07 22:07:31.000','4427','346','2005-07-12 19:14:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4421','2005-07-07 22:07:55.000','4103','417','2005-07-16 20:21:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4422','2005-07-07 22:09:45.000','1741','345','2005-07-10 01:43:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4423','2005-07-07 22:11:28.000','2721','526','2005-07-14 18:49:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4424','2005-07-07 22:14:43.000','662','384','2005-07-11 01:17:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4425','2005-07-07 22:22:44.000','877','345','2005-07-08 22:23:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4426','2005-07-07 22:28:32.000','364','242','2005-07-16 02:04:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4427','2005-07-07 22:28:51.000','1021','69','2005-07-11 21:37:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4428','2005-07-07 22:29:40.000','2575','181','2005-07-11 02:46:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4429','2005-07-07 22:32:47.000','2949','187','2005-07-15 03:10:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4430','2005-07-07 22:35:24.000','3436','278','2005-07-14 23:49:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4431','2005-07-07 22:39:02.000','936','26','2005-07-16 19:24:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4432','2005-07-07 22:40:02.000','2779','295','2005-07-15 01:46:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4433','2005-07-07 22:45:41.000','88','449','2005-07-16 23:30:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4434','2005-07-07 22:48:34.000','1801','32','2005-07-09 18:55:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4435','2005-07-07 22:51:04.000','3815','157','2005-07-14 23:15:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4436','2005-07-07 22:52:04.000','4326','563','2005-07-10 04:51:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4437','2005-07-07 22:55:41.000','3578','414','2005-07-13 19:40:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4438','2005-07-07 22:56:17.000','4371','104','2005-07-16 17:28:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4439','2005-07-07 22:57:30.000','2393','521','2005-07-10 18:28:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4440','2005-07-07 23:00:58.000','1236','507','2005-07-08 21:31:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4441','2005-07-07 23:04:23.000','3680','211','2005-07-13 19:07:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4442','2005-07-07 23:05:30.000','461','123','2005-07-13 22:20:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4443','2005-07-07 23:05:53.000','72','389','2005-07-16 01:46:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4444','2005-07-07 23:07:44.000','764','529','2005-07-14 02:51:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4445','2005-07-07 23:08:22.000','3328','327','2005-07-16 03:49:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4446','2005-07-07 23:12:16.000','2629','438','2005-07-13 19:42:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4447','2005-07-07 23:15:28.000','404','549','2005-07-14 22:53:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4448','2005-07-07 23:17:12.000','2768','536','2005-07-13 18:26:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4449','2005-07-07 23:18:58.000','2813','354','2005-07-15 20:40:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4450','2005-07-07 23:20:05.000','1252','345','2005-07-13 19:50:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4451','2005-07-07 23:29:54.000','179','85','2005-07-10 23:29:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4452','2005-07-07 23:31:54.000','2414','460','2005-07-14 04:05:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4453','2005-07-07 23:32:39.000','89','560','2005-07-12 01:38:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4454','2005-07-07 23:37:00.000','1395','9','2005-07-11 02:30:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4455','2005-07-07 23:43:46.000','1396','507','2005-07-08 21:34:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4456','2005-07-07 23:45:21.000','3395','421','2005-07-13 23:03:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4457','2005-07-07 23:45:38.000','407','567','2005-07-09 20:02:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4458','2005-07-07 23:47:47.000','1307','229','2005-07-09 19:17:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4459','2005-07-07 23:48:52.000','3987','227','2005-07-13 19:37:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4460','2005-07-07 23:50:14.000','4121','592','2005-07-09 21:55:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4461','2005-07-07 23:59:43.000','3656','286','2005-07-16 19:44:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4462','2005-07-08 00:02:49.000','4120','257','2005-07-15 20:48:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4463','2005-07-08 00:04:59.000','4356','422','2005-07-16 01:19:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4464','2005-07-08 00:07:18.000','4484','583','2005-07-08 22:14:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4465','2005-07-08 00:07:45.000','2877','329','2005-07-13 18:08:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4466','2005-07-08 00:12:53.000','3320','304','2005-07-17 03:49:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4467','2005-07-08 00:13:52.000','4466','339','2005-07-09 00:52:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4468','2005-07-08 00:17:59.000','3302','170','2005-07-12 05:51:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4469','2005-07-08 00:18:32.000','2173','192','2005-07-12 21:17:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4470','2005-07-08 00:20:57.000','3605','145','2005-07-10 02:31:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4471','2005-07-08 00:21:29.000','263','30','2005-07-11 18:48:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4472','2005-07-08 00:22:06.000','2089','343','2005-07-16 20:16:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4473','2005-07-08 00:22:10.000','1387','481','2005-07-09 21:11:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4474','2005-07-08 00:26:56.000','4474','137','2005-07-12 23:07:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4475','2005-07-08 00:27:30.000','3466','340','2005-07-09 05:39:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4476','2005-07-08 00:34:25.000','395','279','2005-07-08 22:55:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4477','2005-07-08 00:38:24.000','1602','552','2005-07-13 05:14:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4478','2005-07-08 00:39:08.000','1764','357','2005-07-11 21:57:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4479','2005-07-08 00:52:35.000','3516','211','2005-07-09 20:19:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4480','2005-07-08 00:56:30.000','4457','296','2005-07-10 20:52:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4481','2005-07-08 00:58:15.000','1669','474','2005-07-11 23:22:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4482','2005-07-08 01:01:18.000','3500','511','2005-07-11 01:18:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4483','2005-07-08 01:03:12.000','1222','425','2005-07-17 00:20:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4484','2005-07-08 01:05:57.000','2867','306','2005-07-16 00:41:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4485','2005-07-08 01:07:54.000','2614','130','2005-07-16 03:19:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4486','2005-07-08 01:09:09.000','837','197','2005-07-16 23:40:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4487','2005-07-08 01:20:22.000','2220','360','2005-07-16 21:23:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4488','2005-07-08 01:22:23.000','2108','89','2005-07-13 21:17:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4489','2005-07-08 01:23:58.000','4306','259','2005-07-09 01:35:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4490','2005-07-08 01:26:32.000','2690','161','2005-07-09 01:13:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4491','2005-07-08 01:30:46.000','1168','413','2005-07-11 03:12:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4492','2005-07-08 01:32:04.000','1152','247','2005-07-10 22:11:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4493','2005-07-08 01:40:24.000','1369','167','2005-07-09 02:17:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4494','2005-07-08 01:42:45.000','1655','349','2005-07-16 22:29:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4495','2005-07-08 01:43:46.000','3515','404','2005-07-10 07:38:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4496','2005-07-08 01:44:19.000','150','578','2005-07-08 20:34:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4497','2005-07-08 01:51:32.000','1995','142','2005-07-15 22:56:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4498','2005-07-08 02:07:50.000','4299','43','2005-07-12 23:54:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4499','2005-07-08 02:08:48.000','851','199','2005-07-10 07:06:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4500','2005-07-08 02:10:01.000','398','462','2005-07-15 05:49:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4501','2005-07-08 02:12:00.000','1412','262','2005-07-10 02:16:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4502','2005-07-08 02:12:04.000','225','470','2005-07-15 02:19:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4503','2005-07-08 02:17:12.000','1503','8','2005-07-13 08:12:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4504','2005-07-08 02:19:27.000','361','422','2005-07-12 21:15:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4505','2005-07-08 02:20:04.000','1864','481','2005-07-14 20:28:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4506','2005-07-08 02:22:18.000','1484','133','2005-07-13 04:54:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4507','2005-07-08 02:22:45.000','819','505','2005-07-14 20:53:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4508','2005-07-08 02:28:41.000','3996','97','2005-07-16 23:59:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4509','2005-07-08 02:32:38.000','1760','230','2005-07-14 01:05:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4510','2005-07-08 02:34:51.000','1085','27','2005-07-17 06:03:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4511','2005-07-08 02:36:21.000','4438','75','2005-07-15 06:01:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4512','2005-07-08 02:38:56.000','1569','424','2005-07-10 20:46:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4513','2005-07-08 02:39:59.000','3704','182','2005-07-14 07:48:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4514','2005-07-08 02:41:25.000','1938','576','2005-07-15 06:17:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4515','2005-07-08 02:42:03.000','1998','229','2005-07-10 07:22:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4516','2005-07-08 02:43:41.000','2314','497','2005-07-14 02:20:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4517','2005-07-08 02:45:19.000','453','16','2005-07-12 03:04:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4518','2005-07-08 02:48:36.000','697','592','2005-07-13 04:53:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4519','2005-07-08 02:51:23.000','4425','459','2005-07-12 06:52:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4520','2005-07-08 02:53:46.000','3505','104','2005-07-08 22:27:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4521','2005-07-08 02:57:56.000','2652','327','2005-07-11 22:49:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4522','2005-07-08 03:03:12.000','4114','307','2005-07-10 04:49:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4523','2005-07-08 03:06:59.000','2785','347','2005-07-17 04:44:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4524','2005-07-08 03:10:48.000','2218','185','2005-07-09 07:49:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4525','2005-07-08 03:15:00.000','3631','458','2005-07-11 04:53:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4526','2005-07-08 03:17:05.000','1443','1','2005-07-14 01:19:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4527','2005-07-08 03:20:10.000','2263','468','2005-07-15 02:21:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4528','2005-07-08 03:24:54.000','3209','439','2005-07-09 03:50:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4529','2005-07-08 03:26:20.000','1361','104','2005-07-16 05:04:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4530','2005-07-08 03:27:05.000','3775','79','2005-07-11 07:44:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4531','2005-07-08 03:27:59.000','3108','142','2005-07-10 22:48:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4532','2005-07-08 03:30:39.000','4012','481','2005-07-11 21:49:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4533','2005-07-08 03:32:01.000','1105','474','2005-07-10 21:57:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4534','2005-07-08 03:36:55.000','2518','132','2005-07-16 00:49:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4535','2005-07-08 03:40:46.000','561','29','2005-07-13 06:53:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4536','2005-07-08 03:43:22.000','220','26','2005-07-15 08:44:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4537','2005-07-08 03:48:40.000','1305','448','2005-07-13 22:54:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4538','2005-07-08 03:56:29.000','3638','451','2005-07-15 08:24:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4539','2005-07-08 04:01:02.000','2450','264','2005-07-14 22:32:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4540','2005-07-08 04:03:28.000','4160','309','2005-07-13 03:31:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4541','2005-07-08 04:04:19.000','1976','248','2005-07-13 07:27:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4542','2005-07-08 04:06:30.000','4169','293','2005-07-16 06:54:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4543','2005-07-08 04:06:55.000','913','41','2005-07-12 23:17:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4544','2005-07-08 04:11:04.000','4471','351','2005-07-09 22:48:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4545','2005-07-08 04:17:47.000','3658','271','2005-07-13 07:19:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4546','2005-07-08 04:18:36.000','4507','393','2005-07-17 08:23:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4547','2005-07-08 04:20:19.000','3386','255','2005-07-09 00:28:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4548','2005-07-08 04:21:54.000','765','164','2005-07-14 23:16:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4549','2005-07-08 04:25:03.000','2797','98','2005-07-10 09:01:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4550','2005-07-08 04:34:00.000','615','409','2005-07-14 23:45:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4551','2005-07-08 04:36:21.000','1160','494','2005-07-17 10:23:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4552','2005-07-08 04:36:35.000','2549','313','2005-07-14 05:48:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4553','2005-07-08 04:43:41.000','2114','529','2005-07-09 23:55:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4554','2005-07-08 04:48:03.000','3878','376','2005-07-16 04:34:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4555','2005-07-08 04:48:36.000','1757','68','2005-07-17 07:57:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4556','2005-07-08 04:48:41.000','4099','348','2005-07-16 08:51:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4557','2005-07-08 04:49:15.000','1191','132','2005-07-14 00:00:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4558','2005-07-08 04:55:26.000','828','448','2005-07-09 10:53:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4559','2005-07-08 04:56:49.000','1911','424','2005-07-12 08:56:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4560','2005-07-08 04:58:48.000','303','36','2005-07-10 04:27:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4561','2005-07-08 05:02:43.000','1643','500','2005-07-11 04:56:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4562','2005-07-08 05:08:32.000','963','454','2005-07-12 08:16:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4563','2005-07-08 05:08:55.000','287','522','2005-07-16 05:44:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4564','2005-07-08 05:09:38.000','2494','519','2005-07-11 05:37:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4565','2005-07-08 05:12:28.000','3755','563','2005-07-17 03:38:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4566','2005-07-08 05:18:50.000','4302','133','2005-07-15 01:53:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4567','2005-07-08 05:20:04.000','4073','202','2005-07-10 01:35:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4568','2005-07-08 05:23:59.000','2626','122','2005-07-09 06:07:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4569','2005-07-08 05:30:51.000','2925','366','2005-07-14 04:14:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4570','2005-07-08 05:33:59.000','2612','503','2005-07-14 09:27:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4571','2005-07-08 05:34:41.000','2416','86','2005-07-17 02:15:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4572','2005-07-08 05:36:59.000','1324','323','2005-07-12 04:46:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4573','2005-07-08 05:38:46.000','2478','400','2005-07-15 07:07:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4574','2005-07-08 05:39:42.000','536','257','2005-07-08 23:44:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4575','2005-07-08 05:49:14.000','231','41','2005-07-11 04:08:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4576','2005-07-08 05:51:19.000','1920','567','2005-07-10 11:36:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4577','2005-07-08 05:59:00.000','1688','442','2005-07-16 06:23:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4578','2005-07-08 06:00:17.000','1533','497','2005-07-10 06:58:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4579','2005-07-08 06:01:56.000','4290','585','2005-07-13 11:24:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4580','2005-07-08 06:04:23.000','3512','199','2005-07-15 05:42:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4581','2005-07-08 06:05:06.000','887','591','2005-07-16 00:54:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4582','2005-07-08 06:09:09.000','688','274','2005-07-14 02:23:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4583','2005-07-08 06:09:44.000','4151','365','2005-07-12 03:44:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4584','2005-07-08 06:11:02.000','2322','368','2005-07-11 05:14:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4585','2005-07-08 06:11:58.000','1622','143','2005-07-17 01:58:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4586','2005-07-08 06:12:33.000','1374','461','2005-07-13 11:06:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4587','2005-07-08 06:16:26.000','3502','63','2005-07-13 00:59:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4588','2005-07-08 06:18:01.000','3629','198','2005-07-10 08:59:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4589','2005-07-08 06:26:04.000','1192','99','2005-07-09 10:31:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4590','2005-07-08 06:27:48.000','4233','580','2005-07-14 07:46:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4591','2005-07-08 06:29:43.000','2276','182','2005-07-17 07:20:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4592','2005-07-08 06:31:28.000','2141','235','2005-07-10 06:08:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4593','2005-07-08 06:38:12.000','2897','528','2005-07-16 10:48:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4594','2005-07-08 06:40:06.000','26','506','2005-07-16 05:51:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4595','2005-07-08 06:40:25.000','760','336','2005-07-14 08:54:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4596','2005-07-08 06:41:25.000','2280','306','2005-07-14 01:36:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4597','2005-07-08 06:43:42.000','3767','545','2005-07-13 01:32:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4598','2005-07-08 06:46:26.000','258','82','2005-07-16 01:21:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4599','2005-07-08 06:48:26.000','2098','356','2005-07-11 07:06:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4600','2005-07-08 06:48:37.000','1526','457','2005-07-15 10:11:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4601','2005-07-08 06:49:10.000','3184','572','2005-07-09 07:43:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4602','2005-07-08 06:52:40.000','3616','129','2005-07-10 06:30:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4603','2005-07-08 06:57:07.000','755','334','2005-07-17 04:32:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4604','2005-07-08 06:58:43.000','4230','402','2005-07-14 06:41:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4605','2005-07-08 07:00:14.000','1139','523','2005-07-16 08:38:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4606','2005-07-08 07:05:50.000','1946','502','2005-07-16 09:11:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4607','2005-07-08 07:15:14.000','1193','281','2005-07-11 01:32:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4608','2005-07-08 07:19:11.000','758','11','2005-07-11 01:37:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4609','2005-07-08 07:22:29.000','3711','573','2005-07-10 08:06:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4610','2005-07-08 07:28:05.000','1279','265','2005-07-14 02:10:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4611','2005-07-08 07:33:56.000','3486','1','2005-07-12 13:25:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4612','2005-07-08 07:40:44.000','82','371','2005-07-12 03:48:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4613','2005-07-08 07:44:49.000','476','581','2005-07-09 04:47:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4614','2005-07-08 07:45:17.000','2579','71','2005-07-12 02:10:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4615','2005-07-08 07:46:53.000','1200','404','2005-07-16 12:43:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4616','2005-07-08 07:48:12.000','2580','280','2005-07-10 08:13:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4617','2005-07-08 07:55:08.000','3784','475','2005-07-17 02:49:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4618','2005-07-08 08:00:20.000','3691','179','2005-07-14 05:59:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4619','2005-07-08 08:01:09.000','2127','579','2005-07-16 05:52:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4620','2005-07-08 08:01:44.000','3467','210','2005-07-16 07:43:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4621','2005-07-08 08:02:18.000','1594','297','2005-07-12 08:53:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4622','2005-07-08 08:02:42.000','2710','289','2005-07-10 07:46:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4623','2005-07-08 08:03:22.000','4171','593','2005-07-12 09:11:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4624','2005-07-08 08:12:17.000','1548','341','2005-07-15 12:24:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4625','2005-07-08 08:14:26.000','318','473','2005-07-09 03:45:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4626','2005-07-08 08:18:21.000','37','268','2005-07-10 11:36:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4627','2005-07-08 08:24:39.000','2383','78','2005-07-13 11:04:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4628','2005-07-08 08:25:52.000','1888','540','2005-07-10 11:22:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4629','2005-07-08 08:31:26.000','228','563','2005-07-17 12:07:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4630','2005-07-08 08:33:38.000','3446','319','2005-07-09 13:09:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4631','2005-07-08 08:38:22.000','470','59','2005-07-11 03:33:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4632','2005-07-08 08:38:57.000','4330','393','2005-07-15 09:33:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4633','2005-07-08 08:39:39.000','3178','348','2005-07-15 10:23:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4634','2005-07-08 08:40:02.000','811','275','2005-07-12 04:45:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4635','2005-07-08 08:42:40.000','2434','65','2005-07-14 10:31:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4636','2005-07-08 08:44:32.000','1858','228','2005-07-10 08:59:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4637','2005-07-08 08:49:54.000','1917','263','2005-07-11 13:12:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4638','2005-07-08 08:57:20.000','2240','305','2005-07-10 05:08:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4639','2005-07-08 08:57:21.000','2459','75','2005-07-14 11:22:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4640','2005-07-08 08:59:34.000','1147','506','2005-07-15 03:31:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4641','2005-07-08 09:09:46.000','2436','26','2005-07-17 03:54:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4642','2005-07-08 09:13:28.000','1962','30','2005-07-10 06:17:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4643','2005-07-08 09:13:56.000','239','436','2005-07-10 12:09:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4644','2005-07-08 09:14:29.000','3239','38','2005-07-10 07:20:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4645','2005-07-08 09:20:09.000','687','400','2005-07-09 06:07:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4646','2005-07-08 09:23:26.000','618','362','2005-07-16 04:03:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4647','2005-07-08 09:27:36.000','674','312','2005-07-16 14:56:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4648','2005-07-08 09:31:27.000','3490','444','2005-07-13 03:55:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4649','2005-07-08 09:32:05.000','1116','221','2005-07-15 08:37:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4650','2005-07-08 09:32:08.000','2850','108','2005-07-15 15:20:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4651','2005-07-08 09:39:39.000','4064','557','2005-07-09 12:14:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4652','2005-07-08 09:47:51.000','4198','127','2005-07-16 04:09:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4653','2005-07-08 09:48:01.000','2511','404','2005-07-17 05:18:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4654','2005-07-08 09:48:03.000','4210','434','2005-07-17 13:17:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4655','2005-07-08 09:49:22.000','4078','213','2005-07-15 13:08:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4656','2005-07-08 09:50:10.000','839','141','2005-07-13 15:00:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4657','2005-07-08 09:51:02.000','1002','54','2005-07-09 09:29:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4658','2005-07-08 09:51:11.000','3131','166','2005-07-10 12:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4659','2005-07-08 09:53:28.000','4389','425','2005-07-14 14:56:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4660','2005-07-08 09:54:47.000','1208','139','2005-07-11 15:19:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4661','2005-07-08 09:55:06.000','2641','518','2005-07-11 08:26:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4662','2005-07-08 09:58:54.000','1370','553','2005-07-10 12:51:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4663','2005-07-08 09:59:18.000','2959','139','2005-07-10 11:25:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4664','2005-07-08 10:01:28.000','1318','546','2005-07-12 10:37:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4665','2005-07-08 10:04:24.000','575','106','2005-07-14 15:13:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4666','2005-07-08 10:05:02.000','4576','120','2005-07-16 07:28:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4667','2005-07-08 10:06:26.000','3348','485','2005-07-14 04:48:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4668','2005-07-08 10:11:45.000','3971','481','2005-07-17 13:01:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4669','2005-07-08 10:13:08.000','3494','581','2005-07-16 07:52:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4670','2005-07-08 10:14:18.000','3317','153','2005-07-16 15:10:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4671','2005-07-08 10:15:32.000','2139','55','2005-07-14 08:19:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4672','2005-07-08 10:15:38.000','1922','18','2005-07-16 05:06:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4673','2005-07-08 10:16:00.000','2792','91','2005-07-17 10:03:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4674','2005-07-08 10:19:28.000','1617','329','2005-07-12 12:54:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4675','2005-07-08 10:24:22.000','1309','380','2005-07-14 11:09:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4676','2005-07-08 10:26:02.000','2590','302','2005-07-10 13:38:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4677','2005-07-08 10:30:36.000','1226','258','2005-07-14 12:40:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4678','2005-07-08 10:30:40.000','241','219','2005-07-13 11:08:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4679','2005-07-08 10:33:14.000','3610','423','2005-07-15 14:30:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4680','2005-07-08 10:35:28.000','4043','227','2005-07-14 08:42:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4681','2005-07-08 10:36:03.000','1025','133','2005-07-16 09:21:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4682','2005-07-08 10:38:27.000','873','263','2005-07-11 06:29:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4683','2005-07-08 10:38:28.000','3464','283','2005-07-09 12:07:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4684','2005-07-08 10:41:06.000','503','585','2005-07-17 10:35:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4685','2005-07-08 10:45:13.000','602','590','2005-07-12 08:29:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4686','2005-07-08 10:53:39.000','1398','234','2005-07-10 05:34:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4687','2005-07-08 10:54:19.000','1156','169','2005-07-10 08:00:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4688','2005-07-08 11:03:29.000','3574','80','2005-07-17 15:41:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4689','2005-07-08 11:03:47.000','2519','364','2005-07-16 06:07:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4690','2005-07-08 11:04:02.000','3304','64','2005-07-15 10:27:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4691','2005-07-08 11:04:53.000','596','126','2005-07-09 07:48:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4692','2005-07-08 11:07:06.000','1490','288','2005-07-09 14:08:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4693','2005-07-08 11:07:36.000','1694','221','2005-07-14 08:40:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4694','2005-07-08 11:07:37.000','3637','229','2005-07-12 06:53:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4695','2005-07-08 11:07:59.000','805','39','2005-07-17 16:35:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4696','2005-07-08 11:12:27.000','1358','424','2005-07-14 05:41:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4697','2005-07-08 11:19:14.000','4143','224','2005-07-12 07:14:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4698','2005-07-08 11:19:31.000','3963','570','2005-07-13 13:45:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4699','2005-07-08 11:36:56.000','2462','348','2005-07-14 11:35:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4700','2005-07-08 11:37:21.000','3889','317','2005-07-12 15:41:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4701','2005-07-08 11:38:48.000','3012','522','2005-07-13 15:59:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4702','2005-07-08 11:41:36.000','2593','56','2005-07-10 06:55:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4703','2005-07-08 11:44:56.000','2859','544','2005-07-13 09:17:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4704','2005-07-08 11:45:35.000','2291','28','2005-07-10 09:46:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4705','2005-07-08 11:50:38.000','3709','85','2005-07-12 15:58:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4706','2005-07-08 11:51:41.000','2512','380','2005-07-17 12:58:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4707','2005-07-08 11:57:28.000','52','286','2005-07-10 17:47:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4708','2005-07-08 11:59:19.000','3249','212','2005-07-17 07:11:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4709','2005-07-08 12:04:34.000','3964','124','2005-07-15 06:48:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4710','2005-07-08 12:04:53.000','248','590','2005-07-13 11:28:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4711','2005-07-08 12:06:58.000','2327','563','2005-07-12 08:37:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4712','2005-07-08 12:10:50.000','2371','39','2005-07-17 14:54:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4713','2005-07-08 12:12:33.000','1399','207','2005-07-16 17:13:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4714','2005-07-08 12:12:48.000','1932','385','2005-07-17 08:43:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4715','2005-07-08 12:15:37.000','4010','276','2005-07-10 10:37:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4716','2005-07-08 12:18:51.000','1923','391','2005-07-11 11:06:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4717','2005-07-08 12:22:43.000','1491','453','2005-07-11 10:24:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4718','2005-07-08 12:32:08.000','1653','535','2005-07-17 17:34:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4719','2005-07-08 12:33:00.000','1315','556','2005-07-15 12:30:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4720','2005-07-08 12:34:34.000','2669','452','2005-07-09 10:28:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4721','2005-07-08 12:39:31.000','3105','234','2005-07-15 18:07:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4722','2005-07-08 12:42:27.000','3738','590','2005-07-09 09:14:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4723','2005-07-08 12:44:59.000','965','44','2005-07-17 07:22:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4724','2005-07-08 12:46:30.000','3375','18','2005-07-14 12:39:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4725','2005-07-08 12:47:11.000','2058','3','2005-07-15 09:08:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4726','2005-07-08 12:50:54.000','4369','144','2005-07-17 07:09:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4727','2005-07-08 12:54:15.000','1251','39','2005-07-17 14:32:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4728','2005-07-08 12:59:01.000','3687','462','2005-07-13 13:00:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4729','2005-07-08 12:59:40.000','1429','205','2005-07-10 13:35:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4730','2005-07-08 12:59:49.000','1619','126','2005-07-14 16:15:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4731','2005-07-08 13:08:18.000','4124','241','2005-07-09 13:16:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4732','2005-07-08 13:09:45.000','308','562','2005-07-14 10:10:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4733','2005-07-08 13:12:07.000','2230','93','2005-07-13 07:34:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4734','2005-07-08 13:12:12.000','1928','546','2005-07-10 09:01:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4735','2005-07-08 13:12:27.000','4324','381','2005-07-13 10:06:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4736','2005-07-08 13:22:55.000','3009','79','2005-07-17 07:27:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4737','2005-07-08 13:23:53.000','4286','116','2005-07-12 18:49:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4738','2005-07-08 13:24:58.000','2021','31','2005-07-17 17:44:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4739','2005-07-08 13:25:57.000','140','197','2005-07-11 17:36:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4740','2005-07-08 13:30:35.000','2559','379','2005-07-14 18:43:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4741','2005-07-08 13:31:23.000','516','260','2005-07-17 12:02:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4742','2005-07-08 13:35:23.000','3022','340','2005-07-11 10:24:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4743','2005-07-08 13:42:36.000','80','535','2005-07-11 18:54:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4744','2005-07-08 13:43:57.000','2948','507','2005-07-12 09:21:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4745','2005-07-08 13:45:09.000','1351','354','2005-07-12 18:54:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4746','2005-07-08 13:47:55.000','173','148','2005-07-11 09:06:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4747','2005-07-08 13:53:01.000','3942','383','2005-07-12 17:10:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4748','2005-07-08 13:59:38.000','4279','9','2005-07-15 16:51:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4749','2005-07-08 14:05:58.000','1190','236','2005-07-10 18:35:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4750','2005-07-08 14:07:03.000','3383','198','2005-07-13 18:05:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4751','2005-07-08 14:07:52.000','3469','436','2005-07-13 10:37:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4752','2005-07-08 14:15:20.000','3250','512','2005-07-12 13:22:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4753','2005-07-08 14:18:41.000','1642','391','2005-07-09 10:00:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4754','2005-07-08 14:20:01.000','3177','108','2005-07-11 11:50:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4755','2005-07-08 14:23:41.000','661','378','2005-07-10 19:35:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4756','2005-07-08 14:24:00.000','3068','351','2005-07-12 16:16:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4757','2005-07-08 14:36:51.000','1278','504','2005-07-12 15:28:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4758','2005-07-08 14:38:02.000','3698','288','2005-07-13 12:09:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4759','2005-07-08 14:39:22.000','3999','284','2005-07-17 15:02:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4760','2005-07-08 14:48:07.000','3718','177','2005-07-10 12:41:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4761','2005-07-08 14:51:45.000','3556','351','2005-07-14 20:28:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4762','2005-07-08 14:54:42.000','390','36','2005-07-12 18:08:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4763','2005-07-08 14:57:32.000','899','465','2005-07-15 10:00:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4764','2005-07-08 15:01:25.000','1188','89','2005-07-17 15:16:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4765','2005-07-08 15:08:45.000','469','437','2005-07-13 10:44:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4766','2005-07-08 15:16:04.000','1057','149','2005-07-15 11:04:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4767','2005-07-08 15:18:53.000','3744','350','2005-07-13 15:48:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4768','2005-07-08 15:28:20.000','2787','482','2005-07-09 11:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4769','2005-07-08 15:29:16.000','3462','501','2005-07-09 18:42:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4770','2005-07-08 15:29:46.000','2406','573','2005-07-14 13:31:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4771','2005-07-08 15:33:32.000','1060','32','2005-07-10 12:38:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4772','2005-07-08 15:41:11.000','2156','486','2005-07-17 15:25:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4773','2005-07-08 15:41:39.000','3025','519','2005-07-13 18:16:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4774','2005-07-08 15:42:28.000','673','489','2005-07-16 18:29:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4775','2005-07-08 15:44:05.000','4277','595','2005-07-11 20:39:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4776','2005-07-08 15:44:20.000','2598','563','2005-07-17 10:50:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4777','2005-07-08 15:48:34.000','449','102','2005-07-16 15:25:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4778','2005-07-08 15:51:51.000','611','78','2005-07-12 16:58:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4779','2005-07-08 15:53:41.000','1321','338','2005-07-15 20:30:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4780','2005-07-08 16:06:51.000','2740','115','2005-07-13 18:34:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4781','2005-07-08 16:06:55.000','1818','593','2005-07-16 11:22:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4782','2005-07-08 16:08:51.000','445','436','2005-07-17 17:56:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4783','2005-07-08 16:09:24.000','3952','214','2005-07-16 21:53:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4784','2005-07-08 16:09:56.000','549','182','2005-07-09 20:35:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4785','2005-07-08 16:10:19.000','58','474','2005-07-11 18:52:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4786','2005-07-08 16:13:05.000','2724','294','2005-07-16 15:29:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4787','2005-07-08 16:16:04.000','3929','7','2005-07-14 18:02:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4788','2005-07-08 16:17:35.000','691','533','2005-07-11 11:56:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4789','2005-07-08 16:22:01.000','20','73','2005-07-15 18:29:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4790','2005-07-08 16:25:27.000','100','500','2005-07-11 11:35:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4791','2005-07-08 16:27:24.000','2505','393','2005-07-14 21:50:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4792','2005-07-08 16:29:38.000','2132','147','2005-07-10 16:31:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4793','2005-07-08 16:30:01.000','3090','427','2005-07-15 17:56:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4794','2005-07-08 16:30:11.000','2497','451','2005-07-17 12:41:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4795','2005-07-08 16:32:54.000','3409','497','2005-07-09 14:15:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4796','2005-07-08 16:35:44.000','2484','9','2005-07-13 11:08:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4797','2005-07-08 16:39:05.000','1389','265','2005-07-09 11:41:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4798','2005-07-08 16:45:16.000','3874','212','2005-07-16 13:45:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4799','2005-07-08 16:49:27.000','4112','512','2005-07-12 19:58:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4800','2005-07-08 16:51:08.000','1940','99','2005-07-13 14:16:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4801','2005-07-08 16:51:36.000','761','431','2005-07-13 17:23:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4802','2005-07-08 16:55:17.000','22','562','2005-07-15 19:34:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4803','2005-07-08 16:56:34.000','1786','174','2005-07-14 20:16:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4804','2005-07-08 16:57:30.000','3756','269','2005-07-10 18:25:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4805','2005-07-08 16:59:12.000','377','453','2005-07-09 15:02:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4806','2005-07-08 17:01:02.000','214','506','2005-07-15 21:41:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4807','2005-07-08 17:01:48.000','4511','348','2005-07-16 22:33:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4808','2005-07-08 17:02:49.000','2544','563','2005-07-12 22:49:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4809','2005-07-08 17:03:22.000','4251','474','2005-07-17 22:39:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4810','2005-07-08 17:04:06.000','4056','209','2005-07-09 13:41:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4811','2005-07-08 17:04:24.000','4032','127','2005-07-12 16:41:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4812','2005-07-08 17:07:11.000','3281','304','2005-07-17 21:03:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4813','2005-07-08 17:09:56.000','2752','439','2005-07-09 22:29:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4814','2005-07-08 17:11:09.000','3497','244','2005-07-17 12:43:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4815','2005-07-08 17:12:51.000','840','581','2005-07-17 13:14:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4816','2005-07-08 17:14:14.000','2700','207','2005-07-11 15:03:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4817','2005-07-08 17:17:31.000','1608','145','2005-07-09 22:32:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4818','2005-07-08 17:18:22.000','115','144','2005-07-14 14:40:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4819','2005-07-08 17:19:15.000','1342','64','2005-07-16 14:32:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4820','2005-07-08 17:25:23.000','2672','172','2005-07-17 20:32:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4821','2005-07-08 17:28:08.000','1690','172','2005-07-11 17:44:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4822','2005-07-08 17:28:47.000','3970','185','2005-07-14 13:06:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4823','2005-07-08 17:28:54.000','155','206','2005-07-11 23:10:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4824','2005-07-08 17:37:39.000','1855','225','2005-07-16 18:27:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4825','2005-07-08 17:43:01.000','2419','563','2005-07-11 20:58:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4826','2005-07-08 17:44:25.000','911','180','2005-07-16 20:14:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4827','2005-07-08 17:46:30.000','4455','110','2005-07-11 14:12:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4828','2005-07-08 17:52:29.000','1100','92','2005-07-11 14:35:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4829','2005-07-08 17:54:18.000','2661','133','2005-07-11 23:41:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4830','2005-07-08 17:56:23.000','1150','359','2005-07-17 21:40:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4831','2005-07-08 18:00:14.000','2739','243','2005-07-12 15:54:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4832','2005-07-08 18:07:05.000','1838','509','2005-07-10 19:37:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4833','2005-07-08 18:07:35.000','2921','581','2005-07-13 15:29:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4834','2005-07-08 18:07:45.000','1288','301','2005-07-14 15:27:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4835','2005-07-08 18:08:13.000','2499','95','2005-07-17 16:51:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4836','2005-07-08 18:09:08.000','2756','311','2005-07-15 20:19:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4837','2005-07-08 18:09:12.000','1944','149','2005-07-11 16:40:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4838','2005-07-08 18:11:00.000','3733','84','2005-07-17 12:57:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4839','2005-07-08 18:13:10.000','1810','556','2005-07-15 12:49:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4840','2005-07-08 18:18:16.000','1670','119','2005-07-16 14:59:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4841','2005-07-08 18:18:23.000','518','248','2005-07-11 16:51:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4842','2005-07-08 18:21:30.000','1438','160','2005-07-10 22:25:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4843','2005-07-08 18:27:28.000','3640','45','2005-07-15 00:26:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4844','2005-07-08 18:28:13.000','4057','237','2005-07-09 21:17:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4845','2005-07-08 18:28:20.000','2337','553','2005-07-09 14:38:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4846','2005-07-08 18:29:05.000','417','556','2005-07-10 22:33:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4847','2005-07-08 18:29:13.000','3397','544','2005-07-15 18:12:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4848','2005-07-08 18:30:16.000','2962','251','2005-07-12 19:53:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4849','2005-07-08 18:34:34.000','4323','146','2005-07-14 20:27:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4850','2005-07-08 18:39:31.000','3039','154','2005-07-13 00:18:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4851','2005-07-08 18:40:05.000','134','557','2005-07-12 21:46:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4852','2005-07-08 18:43:15.000','3545','418','2005-07-15 18:48:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4853','2005-07-08 18:43:18.000','1454','23','2005-07-12 14:28:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4854','2005-07-08 18:44:44.000','3644','487','2005-07-13 13:37:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4855','2005-07-08 18:45:50.000','1146','337','2005-07-11 18:23:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4856','2005-07-08 18:47:38.000','2441','7','2005-07-13 15:02:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4857','2005-07-08 18:52:07.000','2069','211','2005-07-11 22:06:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4858','2005-07-08 18:53:24.000','3424','447','2005-07-17 20:32:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4859','2005-07-08 18:54:04.000','1939','369','2005-07-13 13:04:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4860','2005-07-08 18:54:07.000','428','123','2005-07-17 15:09:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4861','2005-07-08 18:57:30.000','2984','455','2005-07-16 15:12:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4862','2005-07-08 19:02:46.000','293','291','2005-07-17 20:17:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4863','2005-07-08 19:03:15.000','1','431','2005-07-11 21:29:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4864','2005-07-08 19:05:34.000','2974','281','2005-07-17 15:05:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4865','2005-07-08 19:09:04.000','1614','418','2005-07-13 21:25:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4866','2005-07-08 19:09:59.000','4036','278','2005-07-15 00:51:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4867','2005-07-08 19:10:52.000','4090','593','2005-07-09 21:43:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4868','2005-07-08 19:13:50.000','1157','307','2005-07-14 20:59:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4869','2005-07-08 19:14:05.000','2860','376','2005-07-15 22:27:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4870','2005-07-08 19:14:45.000','3089','260','2005-07-12 18:58:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4871','2005-07-08 19:19:52.000','2509','210','2005-07-13 20:27:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4872','2005-07-08 19:23:16.000','1836','103','2005-07-10 14:17:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4873','2005-07-08 19:23:32.000','4500','473','2005-07-11 15:24:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4874','2005-07-08 19:23:38.000','2386','223','2005-07-13 14:39:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4875','2005-07-08 19:24:17.000','843','555','2005-07-11 19:15:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4876','2005-07-08 19:27:50.000','1959','283','2005-07-14 15:42:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4877','2005-07-08 19:31:02.000','1846','287','2005-07-15 19:05:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4878','2005-07-08 19:33:49.000','4009','172','2005-07-17 17:47:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4879','2005-07-08 19:34:55.000','1406','196','2005-07-09 15:53:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4880','2005-07-08 19:36:17.000','4178','269','2005-07-13 00:01:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4881','2005-07-08 19:40:34.000','4346','349','2005-07-09 17:08:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4882','2005-07-08 19:42:03.000','4540','184','2005-07-16 22:24:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4883','2005-07-08 19:46:58.000','1366','563','2005-07-10 15:48:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4884','2005-07-08 19:49:17.000','3543','425','2005-07-15 23:14:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4885','2005-07-08 19:51:17.000','442','233','2005-07-12 16:02:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4886','2005-07-08 19:53:22.000','3393','474','2005-07-09 17:05:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4887','2005-07-08 19:59:14.000','3613','543','2005-07-15 22:53:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4888','2005-07-08 20:04:27.000','1220','527','2005-07-10 14:53:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4889','2005-07-08 20:04:43.000','4463','5','2005-07-13 17:57:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4890','2005-07-08 20:05:38.000','3576','574','2005-07-14 14:55:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4891','2005-07-08 20:06:19.000','1787','59','2005-07-16 18:52:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4892','2005-07-08 20:06:25.000','3566','193','2005-07-14 20:04:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4893','2005-07-08 20:19:55.000','2060','210','2005-07-15 21:28:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4894','2005-07-08 20:21:31.000','1028','286','2005-07-11 01:59:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4895','2005-07-08 20:22:05.000','2620','242','2005-07-12 20:49:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4896','2005-07-08 20:23:15.000','3006','129','2005-07-10 15:38:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4897','2005-07-08 20:25:11.000','2950','258','2005-07-09 17:16:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4898','2005-07-08 20:31:43.000','3212','218','2005-07-15 15:58:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4899','2005-07-08 20:37:11.000','414','32','2005-07-10 21:53:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4900','2005-07-08 20:38:06.000','3487','426','2005-07-09 22:45:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4901','2005-07-08 20:44:51.000','2187','507','2005-07-10 01:04:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4902','2005-07-08 20:49:30.000','2238','554','2005-07-13 16:54:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4903','2005-07-08 20:50:05.000','1769','132','2005-07-13 15:27:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4904','2005-07-08 20:53:27.000','2051','173','2005-07-18 01:16:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4905','2005-07-08 20:56:00.000','4101','246','2005-07-12 00:19:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4906','2005-07-08 20:59:13.000','1527','490','2005-07-15 01:12:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4907','2005-07-08 21:01:41.000','1206','209','2005-07-13 02:23:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4908','2005-07-08 21:05:44.000','1963','160','2005-07-17 21:33:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4909','2005-07-08 21:07:24.000','1451','228','2005-07-10 22:34:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4910','2005-07-08 21:13:56.000','3675','219','2005-07-18 02:39:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4911','2005-07-08 21:20:26.000','4479','66','2005-07-15 03:11:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4912','2005-07-08 21:26:11.000','2012','275','2005-07-18 02:19:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4913','2005-07-08 21:27:48.000','982','368','2005-07-18 02:51:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4914','2005-07-08 21:30:53.000','298','535','2005-07-17 01:29:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4915','2005-07-08 21:31:22.000','2772','178','2005-07-13 16:45:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4916','2005-07-08 21:32:17.000','2680','212','2005-07-14 20:55:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4917','2005-07-08 21:32:30.000','3231','104','2005-07-09 15:34:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4918','2005-07-08 21:37:31.000','3819','220','2005-07-11 20:16:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4919','2005-07-08 21:41:54.000','2106','157','2005-07-11 23:14:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4920','2005-07-08 21:42:10.000','4285','239','2005-07-15 03:08:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4921','2005-07-08 21:43:21.000','425','109','2005-07-10 16:06:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4922','2005-07-08 21:44:00.000','2928','577','2005-07-10 02:58:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4923','2005-07-08 21:44:39.000','932','18','2005-07-17 15:50:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4924','2005-07-08 21:55:25.000','4344','180','2005-07-16 16:52:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4925','2005-07-08 21:56:00.000','2169','68','2005-07-14 17:17:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4926','2005-07-08 22:01:48.000','4155','415','2005-07-18 03:27:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4927','2005-07-08 22:05:35.000','2566','136','2005-07-14 23:22:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4928','2005-07-08 22:05:41.000','4363','77','2005-07-09 23:09:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4929','2005-07-08 22:06:18.000','734','297','2005-07-17 18:17:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4930','2005-07-08 22:15:48.000','2057','451','2005-07-15 21:02:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4931','2005-07-08 22:16:18.000','2750','284','2005-07-17 03:42:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4932','2005-07-08 22:17:40.000','4237','558','2005-07-15 22:13:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4933','2005-07-08 22:18:29.000','322','579','2005-07-13 03:47:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4934','2005-07-08 22:18:42.000','1744','517','2005-07-10 20:44:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4935','2005-07-08 22:20:56.000','2708','230','2005-07-12 01:01:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4936','2005-07-08 22:24:50.000','2033','298','2005-07-15 03:14:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4937','2005-07-08 22:29:59.000','33','273','2005-07-15 21:51:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4938','2005-07-08 22:32:53.000','2164','418','2005-07-14 16:48:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4939','2005-07-08 22:35:30.000','3201','425','2005-07-17 22:05:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4940','2005-07-08 22:36:06.000','971','215','2005-07-15 04:28:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4941','2005-07-08 22:39:10.000','3816','553','2005-07-15 17:49:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4942','2005-07-08 22:42:47.000','4467','120','2005-07-15 04:36:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4943','2005-07-08 22:43:05.000','2732','11','2005-07-15 18:17:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4944','2005-07-08 22:44:28.000','3648','293','2005-07-17 21:51:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4945','2005-07-08 22:45:02.000','2079','165','2005-07-11 23:59:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4946','2005-07-08 22:46:23.000','272','440','2005-07-16 17:19:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4947','2005-07-08 22:49:37.000','3905','388','2005-07-17 21:03:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4948','2005-07-08 22:54:21.000','2972','518','2005-07-17 03:52:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4949','2005-07-08 22:57:10.000','1184','567','2005-07-11 01:26:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4950','2005-07-08 22:58:07.000','3291','148','2005-07-09 20:41:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4951','2005-07-08 22:58:21.000','2766','28','2005-07-16 18:58:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4952','2005-07-08 23:00:07.000','459','14','2005-07-09 21:47:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4953','2005-07-08 23:09:48.000','2460','168','2005-07-11 02:08:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4954','2005-07-08 23:14:16.000','627','99','2005-07-14 23:23:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4955','2005-07-08 23:16:21.000','1103','225','2005-07-14 02:09:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4956','2005-07-08 23:17:10.000','1512','477','2005-07-18 00:14:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4957','2005-07-08 23:18:48.000','4082','399','2005-07-09 23:13:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4958','2005-07-08 23:19:52.000','2354','346','2005-07-17 20:31:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4959','2005-07-08 23:22:23.000','3898','236','2005-07-10 03:17:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4960','2005-07-08 23:27:16.000','2176','434','2005-07-18 02:01:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4961','2005-07-08 23:35:53.000','3668','96','2005-07-14 22:46:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4962','2005-07-08 23:36:13.000','4399','532','2005-07-15 03:39:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4963','2005-07-08 23:38:40.000','737','404','2005-07-12 05:33:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4964','2005-07-08 23:46:38.000','1033','455','2005-07-09 22:19:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4965','2005-07-08 23:46:57.000','535','432','2005-07-15 18:47:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4966','2005-07-08 23:47:25.000','4360','118','2005-07-14 03:35:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4967','2005-07-08 23:48:03.000','108','339','2005-07-15 23:51:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4968','2005-07-08 23:49:19.000','3204','390','2005-07-14 02:46:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4969','2005-07-08 23:51:26.000','4563','231','2005-07-12 03:21:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4970','2005-07-08 23:54:29.000','2983','100','2005-07-16 22:47:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4971','2005-07-08 23:54:49.000','460','64','2005-07-16 00:15:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4972','2005-07-08 23:56:09.000','2451','498','2005-07-16 19:15:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4973','2005-07-08 23:58:18.000','391','432','2005-07-14 21:42:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4974','2005-07-09 00:00:36.000','1071','152','2005-07-13 21:03:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4975','2005-07-09 00:02:46.000','3730','101','2005-07-14 18:05:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4976','2005-07-09 00:03:30.000','617','199','2005-07-10 19:05:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4977','2005-07-09 00:15:50.000','3310','584','2005-07-10 00:34:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4978','2005-07-09 00:22:02.000','2578','279','2005-07-18 04:37:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4979','2005-07-09 00:24:34.000','3447','204','2005-07-12 20:04:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4980','2005-07-09 00:26:59.000','2638','100','2005-07-14 19:42:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4981','2005-07-09 00:29:29.000','3363','399','2005-07-16 19:06:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4982','2005-07-09 00:30:52.000','249','162','2005-07-15 23:50:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4983','2005-07-09 00:34:16.000','1469','81','2005-07-17 03:21:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4984','2005-07-09 00:35:31.000','1303','214','2005-07-17 03:44:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4985','2005-07-09 00:36:02.000','2146','208','2005-07-14 04:06:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4986','2005-07-09 00:44:33.000','3517','589','2005-07-09 19:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4987','2005-07-09 00:45:41.000','996','277','2005-07-14 03:32:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4988','2005-07-09 00:46:14.000','2718','433','2005-07-16 01:45:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4989','2005-07-09 00:46:56.000','3326','210','2005-07-17 06:24:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4990','2005-07-09 00:48:49.000','3305','35','2005-07-10 06:36:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4991','2005-07-09 00:49:03.000','1856','540','2005-07-13 05:02:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4992','2005-07-09 00:49:37.000','2081','315','2005-07-16 02:05:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4993','2005-07-09 00:49:47.000','1740','517','2005-07-11 21:19:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4994','2005-07-09 00:54:13.000','2546','246','2005-07-09 21:02:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4995','2005-07-09 00:57:46.000','2063','247','2005-07-13 03:32:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4996','2005-07-09 00:59:46.000','4440','129','2005-07-16 01:30:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4997','2005-07-09 01:06:03.000','186','102','2005-07-18 04:21:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4998','2005-07-09 01:07:21.000','202','534','2005-07-10 05:48:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('4999','2005-07-09 01:12:57.000','1797','196','2005-07-17 00:12:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5000','2005-07-09 01:16:13.000','668','146','2005-07-14 21:55:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5001','2005-07-09 01:17:04.000','2025','40','2005-07-16 03:25:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5002','2005-07-09 01:17:08.000','2388','430','2005-07-15 21:53:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5003','2005-07-09 01:19:03.000','3438','569','2005-07-10 04:28:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5004','2005-07-09 01:20:50.000','2637','382','2005-07-09 19:56:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5005','2005-07-09 01:21:44.000','3034','451','2005-07-14 20:27:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5006','2005-07-09 01:24:07.000','1277','486','2005-07-18 03:56:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5007','2005-07-09 01:26:22.000','3079','207','2005-07-12 20:48:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5008','2005-07-09 01:31:42.000','824','509','2005-07-11 22:34:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5009','2005-07-09 01:32:17.000','1539','102','2005-07-18 03:39:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5010','2005-07-09 01:33:23.000','1999','574','2005-07-14 04:00:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5011','2005-07-09 01:44:40.000','463','249','2005-07-11 00:58:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5012','2005-07-09 01:45:04.000','1456','251','2005-07-12 02:13:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5013','2005-07-09 01:46:45.000','3000','35','2005-07-16 06:57:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5014','2005-07-09 01:51:49.000','4095','334','2005-07-10 04:48:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5015','2005-07-09 01:54:24.000','1564','178','2005-07-12 20:07:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5016','2005-07-09 01:57:57.000','1871','5','2005-07-09 22:07:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5017','2005-07-09 02:00:16.000','3745','241','2005-07-14 06:28:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5018','2005-07-09 02:01:05.000','2317','541','2005-07-10 04:09:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5019','2005-07-09 02:04:32.000','3534','295','2005-07-15 07:01:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5020','2005-07-09 02:07:56.000','4113','565','2005-07-09 23:59:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5021','2005-07-09 02:09:41.000','3445','73','2005-07-13 05:47:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5022','2005-07-09 02:10:54.000','928','499','2005-07-17 08:07:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5023','2005-07-09 02:23:16.000','3206','358','2005-07-15 20:37:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5024','2005-07-09 02:25:12.000','2987','335','2005-07-12 03:15:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5025','2005-07-09 02:28:24.000','153','91','2005-07-12 04:43:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5026','2005-07-09 02:32:34.000','989','463','2005-07-13 04:39:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5027','2005-07-09 02:32:37.000','2179','109','2005-07-16 23:13:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5028','2005-07-09 02:34:45.000','4531','30','2005-07-14 20:45:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5029','2005-07-09 02:35:32.000','3938','265','2005-07-17 22:46:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5030','2005-07-09 02:35:43.000','25','497','2005-07-17 02:05:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5031','2005-07-09 02:36:37.000','4224','312','2005-07-14 03:09:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5032','2005-07-09 02:39:47.000','2257','333','2005-07-10 07:45:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5033','2005-07-09 02:42:01.000','2841','299','2005-07-14 00:29:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5034','2005-07-09 02:48:15.000','340','148','2005-07-11 23:13:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5035','2005-07-09 02:51:34.000','3699','99','2005-07-16 21:38:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5036','2005-07-09 02:58:41.000','75','573','2005-07-17 04:09:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5037','2005-07-09 02:59:10.000','435','524','2005-07-15 07:54:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5038','2005-07-09 03:12:52.000','3086','10','2005-07-17 22:27:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5039','2005-07-09 03:14:45.000','2020','268','2005-07-16 06:57:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5040','2005-07-09 03:16:34.000','2479','405','2005-07-17 01:13:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5041','2005-07-09 03:18:51.000','2711','305','2005-07-13 03:08:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5042','2005-07-09 03:20:30.000','3609','254','2005-07-15 07:22:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5043','2005-07-09 03:25:18.000','2979','369','2005-07-13 00:57:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5044','2005-07-09 03:30:25.000','1625','147','2005-07-11 02:32:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5045','2005-07-09 03:33:32.000','1041','230','2005-07-18 06:15:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5046','2005-07-09 03:34:57.000','1639','227','2005-07-17 22:36:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5047','2005-07-09 03:44:15.000','230','272','2005-07-15 09:07:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5048','2005-07-09 03:46:33.000','1271','466','2005-07-15 01:14:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5049','2005-07-09 03:54:12.000','3336','144','2005-07-11 22:39:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5050','2005-07-09 03:54:38.000','3876','337','2005-07-10 02:23:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5051','2005-07-09 03:57:53.000','4091','85','2005-07-16 08:22:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5052','2005-07-09 03:59:43.000','1884','305','2005-07-12 05:48:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5053','2005-07-09 03:59:46.000','570','295','2005-07-09 23:53:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5054','2005-07-09 04:01:02.000','4001','135','2005-07-18 05:16:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5055','2005-07-09 04:05:28.000','751','54','2005-07-14 04:26:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5056','2005-07-09 04:13:45.000','2599','526','2005-07-10 06:17:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5057','2005-07-09 04:20:29.000','1076','178','2005-07-14 23:59:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5058','2005-07-09 04:20:35.000','917','221','2005-07-18 08:09:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5059','2005-07-09 04:28:01.000','3951','396','2005-07-15 22:57:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5060','2005-07-09 04:28:03.000','4317','57','2005-07-12 07:41:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5061','2005-07-09 04:30:50.000','3893','230','2005-07-12 03:24:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5062','2005-07-09 04:36:49.000','2190','141','2005-07-10 06:26:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5063','2005-07-09 04:37:31.000','1027','133','2005-07-13 09:56:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5064','2005-07-09 04:38:51.000','373','512','2005-07-18 00:33:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5065','2005-07-09 04:42:00.000','1788','599','2005-07-12 08:55:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5066','2005-07-09 04:48:50.000','1702','169','2005-07-12 22:54:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5067','2005-07-09 04:52:35.000','1480','225','2005-07-11 23:33:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5068','2005-07-09 04:53:18.000','2937','10','2005-07-13 09:21:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5069','2005-07-09 04:56:30.000','4417','183','2005-07-13 23:53:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5070','2005-07-09 04:58:26.000','2305','407','2005-07-09 23:00:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5071','2005-07-09 05:00:39.000','4358','12','2005-07-09 23:08:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5072','2005-07-09 05:01:58.000','94','254','2005-07-18 08:17:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5073','2005-07-09 05:02:35.000','546','408','2005-07-15 01:22:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5074','2005-07-09 05:06:24.000','1379','12','2005-07-12 04:37:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5075','2005-07-09 05:12:07.000','903','170','2005-07-12 08:29:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5076','2005-07-09 05:13:22.000','4388','574','2005-07-16 09:11:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5077','2005-07-09 05:18:01.000','686','574','2005-07-17 10:39:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5078','2005-07-09 05:20:24.000','1994','78','2005-07-13 06:41:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5079','2005-07-09 05:20:40.000','3948','566','2005-07-17 00:06:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5080','2005-07-09 05:23:55.000','635','254','2005-07-11 05:56:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5081','2005-07-09 05:25:20.000','1953','420','2005-07-13 23:45:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5082','2005-07-09 05:28:38.000','1584','470','2005-07-10 02:46:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5083','2005-07-09 05:30:32.000','148','494','2005-07-11 02:20:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5084','2005-07-09 05:33:27.000','3113','87','2005-07-17 08:54:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5085','2005-07-09 05:36:49.000','4164','437','2005-07-13 09:26:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5086','2005-07-09 05:40:04.000','3072','539','2005-07-16 07:51:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5087','2005-07-09 05:44:28.000','3716','395','2005-07-10 02:25:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5088','2005-07-09 05:45:16.000','3324','454','2005-07-15 00:41:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5089','2005-07-09 05:45:40.000','451','289','2005-07-15 05:31:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5090','2005-07-09 05:48:22.000','1728','296','2005-07-11 06:50:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5091','2005-07-09 05:52:54.000','4572','149','2005-07-10 02:49:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5092','2005-07-09 05:57:39.000','3256','139','2005-07-12 00:45:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5093','2005-07-09 05:59:12.000','2734','597','2005-07-10 11:45:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5094','2005-07-09 05:59:47.000','4451','178','2005-07-18 05:34:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5095','2005-07-09 06:08:22.000','2788','292','2005-07-11 10:52:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5096','2005-07-09 06:08:23.000','490','231','2005-07-14 11:36:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5097','2005-07-09 06:09:51.000','3252','343','2005-07-10 03:55:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5098','2005-07-09 06:13:54.000','1772','406','2005-07-10 04:27:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5099','2005-07-09 06:14:30.000','768','393','2005-07-12 08:23:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5100','2005-07-09 06:16:03.000','3193','101','2005-07-10 10:21:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5101','2005-07-09 06:21:29.000','2737','154','2005-07-11 02:58:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5102','2005-07-09 06:25:48.000','242','316','2005-07-16 11:32:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5103','2005-07-09 06:34:40.000','2390','397','2005-07-10 03:44:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5104','2005-07-09 06:37:07.000','2109','14','2005-07-14 12:32:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5105','2005-07-09 06:38:59.000','2555','290','2005-07-17 03:06:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5106','2005-07-09 06:40:24.000','110','137','2005-07-13 10:28:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5107','2005-07-09 06:42:32.000','1697','21','2005-07-10 08:21:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5108','2005-07-09 06:44:30.000','4229','30','2005-07-17 04:24:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5109','2005-07-09 06:48:49.000','2373','102','2005-07-14 01:17:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5110','2005-07-09 06:57:25.000','195','200','2005-07-12 05:39:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5111','2005-07-09 07:02:19.000','2875','12','2005-07-10 06:27:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5112','2005-07-09 07:04:04.000','3529','285','2005-07-13 08:42:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5113','2005-07-09 07:06:18.000','3618','282','2005-07-13 07:10:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5114','2005-07-09 07:07:05.000','3734','64','2005-07-15 03:06:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5115','2005-07-09 07:07:18.000','2296','212','2005-07-16 03:28:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5116','2005-07-09 07:10:12.000','2491','332','2005-07-14 09:16:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5117','2005-07-09 07:11:22.000','2284','208','2005-07-15 08:44:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5118','2005-07-09 07:13:52.000','957','5','2005-07-18 05:18:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5119','2005-07-09 07:14:18.000','2996','301','2005-07-18 04:07:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5120','2005-07-09 07:14:23.000','4431','373','2005-07-14 04:00:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5121','2005-07-09 07:18:31.000','3321','526','2005-07-15 01:48:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5122','2005-07-09 07:19:35.000','1423','261','2005-07-16 03:04:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5123','2005-07-09 07:20:30.000','4278','219','2005-07-14 05:24:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5124','2005-07-09 07:25:19.000','1857','565','2005-07-15 01:51:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5125','2005-07-09 07:25:28.000','990','263','2005-07-12 12:34:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5126','2005-07-09 07:25:35.000','3312','315','2005-07-18 05:05:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5127','2005-07-09 07:25:47.000','3649','129','2005-07-13 11:44:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5128','2005-07-09 07:25:54.000','3757','155','2005-07-16 04:04:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5129','2005-07-09 07:28:33.000','4516','441','2005-07-14 05:12:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5130','2005-07-09 07:29:45.000','3264','93','2005-07-13 05:56:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5131','2005-07-09 07:35:03.000','3179','167','2005-07-10 06:05:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5132','2005-07-09 07:40:32.000','4158','101','2005-07-16 02:16:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5133','2005-07-09 07:43:22.000','3403','469','2005-07-12 04:52:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5134','2005-07-09 07:53:12.000','149','491','2005-07-16 05:30:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5135','2005-07-09 07:53:22.000','3005','538','2005-07-16 04:50:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5136','2005-07-09 07:55:01.000','3498','395','2005-07-11 05:26:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5137','2005-07-09 08:00:34.000','409','126','2005-07-12 05:34:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5138','2005-07-09 08:00:46.000','1283','548','2005-07-12 09:31:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5139','2005-07-09 08:01:51.000','51','539','2005-07-18 09:16:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5140','2005-07-09 08:04:59.000','947','303','2005-07-11 08:28:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5141','2005-07-09 08:05:14.000','590','488','2005-07-18 04:36:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5142','2005-07-09 08:05:23.000','369','56','2005-07-13 12:37:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5143','2005-07-09 08:07:07.000','3803','196','2005-07-18 10:17:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5144','2005-07-09 08:09:53.000','3530','89','2005-07-18 07:11:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5145','2005-07-09 08:13:25.000','2397','204','2005-07-10 03:56:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5146','2005-07-09 08:14:58.000','776','194','2005-07-11 07:04:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5147','2005-07-09 08:17:41.000','2270','326','2005-07-18 09:45:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5148','2005-07-09 08:22:46.000','456','48','2005-07-18 04:36:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5149','2005-07-09 08:28:23.000','1500','330','2005-07-16 06:19:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5150','2005-07-09 08:28:40.000','1961','410','2005-07-16 04:47:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5151','2005-07-09 08:31:03.000','224','228','2005-07-10 08:18:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5152','2005-07-09 08:34:44.000','4005','331','2005-07-10 05:26:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5153','2005-07-09 08:35:05.000','2826','504','2005-07-18 14:21:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5154','2005-07-09 08:46:18.000','3785','361','2005-07-14 03:19:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5155','2005-07-09 08:46:54.000','988','523','2005-07-14 04:13:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5156','2005-07-09 08:51:42.000','416','5','2005-07-15 03:59:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5157','2005-07-09 08:52:12.000','637','463','2005-07-12 04:32:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5158','2005-07-09 08:53:09.000','2825','272','2005-07-10 11:05:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5159','2005-07-09 08:55:52.000','3479','213','2005-07-10 04:32:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5160','2005-07-09 08:57:07.000','1925','467','2005-07-18 06:01:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5161','2005-07-09 08:57:56.000','2617','284','2005-07-18 07:41:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5162','2005-07-09 09:00:11.000','2765','43','2005-07-17 07:26:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5163','2005-07-09 09:00:28.000','1486','103','2005-07-17 08:07:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5164','2005-07-09 09:03:14.000','1170','511','2005-07-14 04:20:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5165','2005-07-09 09:08:53.000','280','590','2005-07-14 06:01:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5166','2005-07-09 09:15:48.000','2771','298','2005-07-16 06:04:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5167','2005-07-09 09:18:43.000','2485','437','2005-07-14 12:59:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5168','2005-07-09 09:20:01.000','4096','420','2005-07-11 14:42:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5169','2005-07-09 09:22:25.000','2608','116','2005-07-10 03:48:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5170','2005-07-09 09:24:19.000','66','209','2005-07-18 04:02:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5171','2005-07-09 09:26:55.000','2099','371','2005-07-10 10:34:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5172','2005-07-09 09:31:27.000','4046','214','2005-07-13 04:03:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5173','2005-07-09 09:31:44.000','2848','490','2005-07-15 04:20:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5174','2005-07-09 09:31:59.000','3621','47','2005-07-15 03:49:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5175','2005-07-09 09:34:28.000','1003','409','2005-07-15 15:19:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5176','2005-07-09 09:39:31.000','328','119','2005-07-17 11:56:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5177','2005-07-09 09:43:21.000','1675','452','2005-07-13 07:29:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5178','2005-07-09 09:59:52.000','1750','167','2005-07-18 13:01:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5179','2005-07-09 10:00:44.000','2995','256','2005-07-11 06:52:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5180','2005-07-09 10:06:53.000','3684','494','2005-07-12 15:25:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5181','2005-07-09 10:07:27.000','2569','45','2005-07-17 10:18:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5182','2005-07-09 10:08:10.000','725','197','2005-07-16 14:36:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5183','2005-07-09 10:13:45.000','2866','394','2005-07-16 15:55:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5184','2005-07-09 10:14:34.000','1101','166','2005-07-14 16:05:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5185','2005-07-09 10:14:39.000','357','53','2005-07-10 13:31:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5186','2005-07-09 10:18:40.000','2415','276','2005-07-13 05:05:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5187','2005-07-09 10:19:51.000','2631','91','2005-07-14 10:35:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5188','2005-07-09 10:22:31.000','3265','34','2005-07-13 04:41:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5189','2005-07-09 10:23:21.000','2539','113','2005-07-14 08:06:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5190','2005-07-09 10:25:24.000','2213','532','2005-07-18 04:33:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5191','2005-07-09 10:26:48.000','2131','167','2005-07-10 15:52:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5192','2005-07-09 10:27:09.000','1225','410','2005-07-10 12:04:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5193','2005-07-09 10:28:18.000','2166','485','2005-07-12 12:18:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5194','2005-07-09 10:31:34.000','3809','202','2005-07-15 08:50:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5195','2005-07-09 10:39:31.000','3399','59','2005-07-18 13:54:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5196','2005-07-09 10:43:34.000','2278','536','2005-07-13 12:10:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5197','2005-07-09 10:43:54.000','1571','541','2005-07-16 10:19:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5198','2005-07-09 10:49:10.000','218','101','2005-07-13 04:52:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5199','2005-07-09 10:50:56.000','349','42','2005-07-10 06:43:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5200','2005-07-09 10:52:09.000','4528','125','2005-07-13 15:12:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5201','2005-07-09 10:52:53.000','2453','551','2005-07-16 12:41:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5202','2005-07-09 10:53:48.000','3417','321','2005-07-15 13:31:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5203','2005-07-09 10:53:59.000','3661','588','2005-07-15 09:45:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5204','2005-07-09 10:54:14.000','1791','432','2005-07-12 14:29:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5205','2005-07-09 10:56:37.000','161','79','2005-07-13 05:45:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5206','2005-07-09 11:11:01.000','692','517','2005-07-17 07:23:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5207','2005-07-09 11:15:44.000','3496','59','2005-07-17 06:00:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5208','2005-07-09 11:16:56.000','1881','560','2005-07-10 07:21:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5209','2005-07-09 11:22:39.000','4441','222','2005-07-17 09:31:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5210','2005-07-09 11:24:19.000','4514','355','2005-07-11 06:27:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5211','2005-07-09 11:26:50.000','2216','241','2005-07-16 15:30:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5212','2005-07-09 11:37:47.000','3240','400','2005-07-15 14:42:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5213','2005-07-09 11:39:43.000','3708','552','2005-07-18 16:20:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5214','2005-07-09 11:43:08.000','1657','290','2005-07-17 08:58:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5215','2005-07-09 11:47:58.000','3888','528','2005-07-18 09:58:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5216','2005-07-09 11:54:58.000','1644','515','2005-07-12 09:46:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5217','2005-07-09 11:56:50.000','4150','430','2005-07-17 07:10:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5218','2005-07-09 11:57:12.000','1121','83','2005-07-13 06:34:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5219','2005-07-09 11:57:55.000','3933','209','2005-07-15 09:43:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5220','2005-07-09 11:59:04.000','2577','435','2005-07-15 06:20:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5221','2005-07-09 12:02:23.000','2339','84','2005-07-16 15:43:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5222','2005-07-09 12:05:45.000','2508','400','2005-07-13 12:11:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5223','2005-07-09 12:06:03.000','2335','72','2005-07-17 15:50:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5224','2005-07-09 12:07:27.000','279','311','2005-07-17 08:59:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5225','2005-07-09 12:10:16.000','703','445','2005-07-12 09:55:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5226','2005-07-09 12:10:44.000','3128','218','2005-07-11 17:32:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5227','2005-07-09 12:16:39.000','1862','362','2005-07-18 15:38:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5228','2005-07-09 12:26:01.000','622','195','2005-07-14 13:31:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5229','2005-07-09 12:30:18.000','4472','372','2005-07-14 15:31:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5230','2005-07-09 12:30:23.000','3707','51','2005-07-13 08:41:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5231','2005-07-09 12:35:02.000','1275','405','2005-07-10 09:22:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5232','2005-07-09 12:35:08.000','3353','175','2005-07-14 14:55:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5233','2005-07-09 12:44:26.000','1401','131','2005-07-15 12:31:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5234','2005-07-09 12:44:47.000','4182','398','2005-07-17 10:02:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5235','2005-07-09 12:54:25.000','1044','122','2005-07-18 16:28:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5236','2005-07-09 12:56:29.000','1215','519','2005-07-13 08:26:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5237','2005-07-09 12:56:58.000','2341','84','2005-07-11 15:41:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5238','2005-07-09 13:11:14.000','3297','100','2005-07-10 07:27:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5239','2005-07-09 13:12:35.000','380','497','2005-07-10 13:37:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5240','2005-07-09 13:14:48.000','1378','350','2005-07-10 18:47:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5241','2005-07-09 13:19:14.000','4079','314','2005-07-11 14:32:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5242','2005-07-09 13:20:25.000','848','12','2005-07-18 07:38:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5243','2005-07-09 13:22:08.000','122','587','2005-07-16 09:25:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5244','2005-07-09 13:24:07.000','3726','1','2005-07-14 14:01:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5245','2005-07-09 13:24:14.000','3547','115','2005-07-12 11:16:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5246','2005-07-09 13:25:18.000','3548','276','2005-07-13 18:38:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5247','2005-07-09 13:26:28.000','1186','298','2005-07-12 14:00:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5248','2005-07-09 13:29:44.000','246','279','2005-07-12 18:12:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5249','2005-07-09 13:33:53.000','1950','389','2005-07-11 12:55:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5250','2005-07-09 13:35:32.000','2162','384','2005-07-13 12:19:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5251','2005-07-09 13:36:10.000','478','474','2005-07-15 11:40:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5252','2005-07-09 13:40:44.000','2581','335','2005-07-14 09:41:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5253','2005-07-09 13:41:17.000','2241','532','2005-07-17 17:09:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5254','2005-07-09 13:50:11.000','654','263','2005-07-13 09:07:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5255','2005-07-09 13:51:08.000','4418','313','2005-07-17 13:58:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5256','2005-07-09 13:55:45.000','4226','273','2005-07-15 17:02:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5257','2005-07-09 13:56:43.000','286','292','2005-07-10 14:26:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5258','2005-07-09 13:56:56.000','3125','207','2005-07-11 16:01:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5259','2005-07-09 14:02:50.000','1310','207','2005-07-11 19:13:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5260','2005-07-09 14:05:45.000','3143','75','2005-07-14 08:41:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5261','2005-07-09 14:06:56.000','2899','105','2005-07-11 14:21:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5262','2005-07-09 14:08:01.000','1092','240','2005-07-12 16:48:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5263','2005-07-09 14:10:36.000','119','406','2005-07-12 15:07:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5264','2005-07-09 14:11:28.000','3307','545','2005-07-12 18:24:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5265','2005-07-09 14:15:01.000','4482','139','2005-07-18 14:43:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5266','2005-07-09 14:17:40.000','2409','222','2005-07-16 10:42:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5267','2005-07-09 14:21:10.000','2242','233','2005-07-15 12:02:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5268','2005-07-09 14:22:43.000','1083','119','2005-07-12 08:27:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5269','2005-07-09 14:23:05.000','3886','230','2005-07-17 14:03:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5270','2005-07-09 14:23:46.000','1523','128','2005-07-13 15:04:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5271','2005-07-09 14:25:01.000','2691','522','2005-07-16 17:28:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5272','2005-07-09 14:26:01.000','1547','90','2005-07-12 20:20:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5273','2005-07-09 14:31:24.000','4570','38','2005-07-14 13:27:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5274','2005-07-09 14:34:09.000','4579','108','2005-07-14 13:02:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5275','2005-07-09 14:34:18.000','729','249','2005-07-13 12:56:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5276','2005-07-09 14:35:13.000','2524','521','2005-07-12 14:24:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5277','2005-07-09 14:40:42.000','2026','332','2005-07-16 14:18:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5278','2005-07-09 14:44:23.000','2573','532','2005-07-15 10:48:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5279','2005-07-09 14:46:36.000','709','64','2005-07-17 10:04:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5280','2005-07-09 14:55:07.000','1177','351','2005-07-12 10:05:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5281','2005-07-09 14:55:07.000','1966','71','2005-07-13 15:24:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5282','2005-07-09 15:01:23.000','4386','226','2005-07-13 11:06:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5283','2005-07-09 15:07:17.000','644','295','2005-07-17 09:52:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5284','2005-07-09 15:08:21.000','1036','585','2005-07-16 09:53:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5285','2005-07-09 15:10:44.000','676','468','2005-07-16 13:02:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5286','2005-07-09 15:11:41.000','483','498','2005-07-10 19:19:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5287','2005-07-09 15:11:54.000','3110','523','2005-07-16 16:05:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5288','2005-07-09 15:13:07.000','850','120','2005-07-16 12:39:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5289','2005-07-09 15:14:08.000','4336','30','2005-07-12 12:51:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5290','2005-07-09 15:14:47.000','277','50','2005-07-11 20:30:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5291','2005-07-09 15:15:02.000','1367','194','2005-07-15 10:22:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5292','2005-07-09 15:16:54.000','3195','62','2005-07-11 15:21:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5293','2005-07-09 15:17:23.000','2880','542','2005-07-11 11:23:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5294','2005-07-09 15:23:42.000','3237','22','2005-07-15 15:28:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5295','2005-07-09 15:25:06.000','4460','86','2005-07-10 12:40:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5296','2005-07-09 15:26:27.000','495','109','2005-07-15 10:03:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5297','2005-07-09 15:32:29.000','3434','202','2005-07-14 14:58:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5298','2005-07-09 15:36:17.000','3491','149','2005-07-18 19:07:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5299','2005-07-09 15:38:09.000','4416','469','2005-07-15 16:39:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5300','2005-07-09 15:40:46.000','2520','8','2005-07-15 13:46:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5301','2005-07-09 15:42:10.000','245','459','2005-07-16 21:27:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5302','2005-07-09 15:42:36.000','4270','72','2005-07-10 21:04:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5303','2005-07-09 15:44:09.000','3572','350','2005-07-15 18:09:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5304','2005-07-09 15:48:06.000','4411','51','2005-07-14 19:29:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5305','2005-07-09 15:55:36.000','625','309','2005-07-18 15:59:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5306','2005-07-09 15:56:45.000','2221','409','2005-07-15 19:02:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5307','2005-07-09 15:57:15.000','2847','32','2005-07-17 13:42:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5308','2005-07-09 15:58:38.000','1684','52','2005-07-15 13:55:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5309','2005-07-09 16:00:16.000','4026','338','2005-07-17 17:56:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5310','2005-07-09 16:00:34.000','1565','24','2005-07-12 12:45:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5311','2005-07-09 16:02:54.000','986','107','2005-07-18 10:44:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5312','2005-07-09 16:03:09.000','2123','258','2005-07-13 16:41:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5313','2005-07-09 16:04:45.000','1885','52','2005-07-17 18:53:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5314','2005-07-09 16:05:28.000','3770','372','2005-07-10 18:18:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5315','2005-07-09 16:09:19.000','585','134','2005-07-14 21:10:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5316','2005-07-09 16:09:42.000','3856','438','2005-07-11 15:20:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5317','2005-07-09 16:10:25.000','2693','14','2005-07-18 17:10:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5318','2005-07-09 16:11:33.000','1738','472','2005-07-14 12:49:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5319','2005-07-09 16:17:44.000','1899','282','2005-07-18 16:35:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5320','2005-07-09 16:23:32.000','3140','228','2005-07-18 18:16:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5321','2005-07-09 16:26:33.000','3347','245','2005-07-15 15:05:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5322','2005-07-09 16:28:13.000','4420','432','2005-07-18 14:53:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5323','2005-07-09 16:34:07.000','1302','35','2005-07-13 21:37:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5324','2005-07-09 16:34:18.000','4024','113','2005-07-15 12:35:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5325','2005-07-09 16:35:47.000','2703','492','2005-07-10 11:52:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5326','2005-07-09 16:38:01.000','797','1','2005-07-13 18:02:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5327','2005-07-09 16:39:49.000','3657','547','2005-07-12 18:47:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5328','2005-07-09 16:48:29.000','2444','247','2005-07-17 20:20:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5329','2005-07-09 16:49:46.000','1628','402','2005-07-16 19:05:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5330','2005-07-09 16:53:57.000','3812','410','2005-07-18 19:54:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5331','2005-07-09 16:54:06.000','4181','447','2005-07-10 19:04:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5332','2005-07-09 16:59:23.000','3269','568','2005-07-10 16:01:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5333','2005-07-09 16:59:38.000','2142','419','2005-07-16 17:23:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5334','2005-07-09 17:00:13.000','3852','482','2005-07-11 15:50:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5335','2005-07-09 17:00:49.000','2353','588','2005-07-12 12:21:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5336','2005-07-09 17:01:08.000','4144','410','2005-07-11 19:22:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5337','2005-07-09 17:03:50.000','4168','343','2005-07-16 22:25:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5338','2005-07-09 17:07:07.000','3449','191','2005-07-14 11:15:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5339','2005-07-09 17:09:17.000','698','380','2005-07-10 21:07:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5340','2005-07-09 17:11:35.000','650','267','2005-07-17 17:59:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5341','2005-07-09 17:13:23.000','2522','8','2005-07-14 18:11:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5342','2005-07-09 17:20:03.000','3828','289','2005-07-18 12:44:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5343','2005-07-09 17:23:43.000','92','485','2005-07-18 22:14:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5344','2005-07-09 17:27:05.000','159','197','2005-07-10 15:51:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5345','2005-07-09 17:28:18.000','3055','348','2005-07-11 14:30:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5346','2005-07-09 17:29:01.000','2488','287','2005-07-14 12:47:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5347','2005-07-09 17:31:32.000','1293','246','2005-07-10 21:06:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5348','2005-07-09 17:34:11.000','3495','597','2005-07-15 18:32:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5349','2005-07-09 17:35:35.000','3139','161','2005-07-18 14:05:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5350','2005-07-09 17:39:30.000','724','129','2005-07-11 16:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5351','2005-07-09 17:40:52.000','3722','112','2005-07-14 16:55:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5352','2005-07-09 17:54:58.000','908','372','2005-07-15 16:20:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5353','2005-07-09 18:04:29.000','2994','196','2005-07-15 17:46:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5354','2005-07-09 18:04:33.000','951','354','2005-07-15 18:19:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5355','2005-07-09 18:07:17.000','2458','100','2005-07-16 20:33:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5356','2005-07-09 18:08:28.000','2905','188','2005-07-14 14:11:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5357','2005-07-09 18:08:59.000','1988','411','2005-07-16 17:28:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5358','2005-07-09 18:09:21.000','3764','71','2005-07-14 23:59:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5359','2005-07-09 18:10:52.000','4392','453','2005-07-18 13:34:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5360','2005-07-09 18:14:03.000','679','562','2005-07-10 15:17:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5361','2005-07-09 18:15:32.000','2045','279','2005-07-17 23:32:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5362','2005-07-09 18:16:08.000','24','266','2005-07-18 18:27:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5363','2005-07-09 18:18:49.000','2180','425','2005-07-14 22:16:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5364','2005-07-09 18:24:48.000','2746','366','2005-07-10 12:30:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5365','2005-07-09 18:27:00.000','4469','527','2005-07-11 14:18:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5366','2005-07-09 18:28:37.000','886','187','2005-07-13 20:45:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5367','2005-07-09 18:39:15.000','1446','485','2005-07-16 14:19:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5368','2005-07-09 18:41:59.000','4429','502','2005-07-16 00:32:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5369','2005-07-09 18:42:16.000','1550','538','2005-07-12 18:16:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5370','2005-07-09 18:43:19.000','2193','248','2005-07-15 19:59:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5371','2005-07-09 18:47:48.000','789','425','2005-07-14 14:39:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5372','2005-07-09 18:48:39.000','3551','148','2005-07-11 17:40:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5373','2005-07-09 18:48:57.000','950','428','2005-07-10 16:34:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5374','2005-07-09 18:52:08.000','946','144','2005-07-16 16:34:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5375','2005-07-09 18:52:55.000','1407','558','2005-07-16 15:32:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5376','2005-07-09 18:54:08.000','1730','104','2005-07-17 22:01:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5377','2005-07-09 19:04:30.000','3118','578','2005-07-11 14:42:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5378','2005-07-09 19:05:56.000','1570','138','2005-07-10 18:03:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5379','2005-07-09 19:08:03.000','2110','475','2005-07-10 17:58:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5380','2005-07-09 19:08:44.000','3047','166','2005-07-11 20:09:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5381','2005-07-09 19:11:11.000','3033','332','2005-07-13 17:10:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5382','2005-07-09 19:12:57.000','78','586','2005-07-14 15:44:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5383','2005-07-09 19:14:32.000','573','14','2005-07-11 19:57:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5384','2005-07-09 19:17:46.000','1729','180','2005-07-12 13:50:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5385','2005-07-09 19:18:11.000','4291','112','2005-07-16 18:50:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5386','2005-07-09 19:19:09.000','721','594','2005-07-13 00:13:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5387','2005-07-09 19:25:14.000','4452','244','2005-07-11 21:00:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5388','2005-07-09 19:25:25.000','1546','332','2005-07-14 19:51:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5389','2005-07-09 19:25:45.000','3882','484','2005-07-17 13:31:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5390','2005-07-09 19:26:22.000','715','139','2005-07-14 22:46:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5391','2005-07-09 19:28:34.000','402','132','2005-07-18 01:07:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5392','2005-07-09 19:32:30.000','2552','499','2005-07-16 15:01:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5393','2005-07-09 19:35:12.000','1417','446','2005-07-11 14:00:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5394','2005-07-09 19:36:15.000','1828','83','2005-07-18 18:10:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5395','2005-07-09 19:42:37.000','4428','131','2005-07-10 15:39:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5396','2005-07-09 19:42:52.000','3795','559','2005-07-15 21:45:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5397','2005-07-09 19:43:51.000','4376','191','2005-07-17 00:11:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5398','2005-07-09 19:44:58.000','4352','199','2005-07-17 00:56:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5399','2005-07-09 19:52:44.000','261','67','2005-07-10 18:31:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5400','2005-07-09 19:56:40.000','3435','192','2005-07-14 20:43:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5401','2005-07-09 19:59:10.000','431','43','2005-07-11 23:21:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5402','2005-07-09 20:01:58.000','4450','379','2005-07-10 14:07:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5403','2005-07-09 20:07:09.000','3991','36','2005-07-12 18:33:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5404','2005-07-09 20:10:43.000','3685','236','2005-07-13 15:16:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5405','2005-07-09 20:11:49.000','799','45','2005-07-18 18:37:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5406','2005-07-09 20:13:23.000','1322','563','2005-07-11 22:05:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5407','2005-07-09 20:16:07.000','3641','475','2005-07-14 21:41:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5408','2005-07-09 20:16:51.000','3162','144','2005-07-18 22:19:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5409','2005-07-09 20:17:19.000','3538','446','2005-07-13 23:30:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5410','2005-07-09 20:21:10.000','2261','281','2005-07-18 21:43:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5411','2005-07-09 20:23:38.000','4292','304','2005-07-16 01:17:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5412','2005-07-09 20:23:52.000','3174','458','2005-07-18 18:40:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5413','2005-07-09 20:28:42.000','2056','167','2005-07-10 19:23:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5414','2005-07-09 20:29:36.000','1201','174','2005-07-13 01:55:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5415','2005-07-09 20:30:03.000','4413','475','2005-07-18 00:20:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5416','2005-07-09 20:33:50.000','568','219','2005-07-14 01:50:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5417','2005-07-09 20:34:09.000','3569','265','2005-07-14 00:36:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5418','2005-07-09 20:41:35.000','55','114','2005-07-14 00:15:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5419','2005-07-09 20:47:36.000','1516','226','2005-07-12 01:36:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5420','2005-07-09 20:48:42.000','1739','80','2005-07-15 21:35:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5421','2005-07-09 20:49:12.000','2437','33','2005-07-10 16:30:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5422','2005-07-09 20:55:47.000','436','409','2005-07-15 15:15:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5423','2005-07-09 20:56:48.000','1952','440','2005-07-17 14:58:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5424','2005-07-09 20:59:09.000','3694','72','2005-07-12 00:05:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5425','2005-07-09 21:02:26.000','531','37','2005-07-16 23:38:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5426','2005-07-09 21:04:47.000','251','438','2005-07-17 00:55:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5427','2005-07-09 21:12:26.000','3197','499','2005-07-14 01:02:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5428','2005-07-09 21:12:50.000','3109','346','2005-07-14 16:25:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5429','2005-07-09 21:14:03.000','2467','105','2005-07-18 01:33:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5430','2005-07-09 21:19:54.000','1441','173','2005-07-15 22:53:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5431','2005-07-09 21:21:11.000','2780','213','2005-07-10 21:16:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5432','2005-07-09 21:21:25.000','1958','64','2005-07-14 21:34:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5433','2005-07-09 21:22:00.000','2679','349','2005-07-10 21:18:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5434','2005-07-09 21:25:20.000','3790','334','2005-07-15 03:12:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5435','2005-07-09 21:28:07.000','2884','273','2005-07-18 21:16:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5436','2005-07-09 21:31:11.000','2364','89','2005-07-13 16:59:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5437','2005-07-09 21:32:29.000','3532','26','2005-07-15 00:27:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5438','2005-07-09 21:34:32.000','487','241','2005-07-16 02:21:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5439','2005-07-09 21:39:35.000','1993','58','2005-07-13 17:45:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5440','2005-07-09 21:45:17.000','138','332','2005-07-11 22:43:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5441','2005-07-09 21:52:05.000','3913','7','2005-07-17 02:54:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5442','2005-07-09 21:55:19.000','3093','29','2005-07-19 01:18:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5443','2005-07-09 21:56:09.000','2951','137','2005-07-16 00:33:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5444','2005-07-09 21:58:57.000','2968','10','2005-07-11 03:09:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5445','2005-07-09 21:59:41.000','565','578','2005-07-15 00:40:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5446','2005-07-09 21:59:55.000','2769','454','2005-07-11 01:45:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5447','2005-07-09 22:09:28.000','2530','473','2005-07-18 20:03:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5448','2005-07-09 22:11:14.000','646','463','2005-07-15 21:08:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5449','2005-07-09 22:12:01.000','921','261','2005-07-18 01:18:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5450','2005-07-09 22:13:25.000','2356','328','2005-07-13 23:28:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5451','2005-07-09 22:22:10.000','3484','39','2005-07-11 02:43:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5452','2005-07-09 22:23:21.000','2036','80','2005-07-17 00:20:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5453','2005-07-09 22:24:11.000','1780','106','2005-07-19 04:08:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5454','2005-07-09 22:24:25.000','3049','97','2005-07-11 01:52:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5455','2005-07-09 22:28:45.000','1955','464','2005-07-18 02:50:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5456','2005-07-09 22:31:45.000','3003','360','2005-07-12 03:53:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5457','2005-07-09 22:33:14.000','4179','433','2005-07-12 02:30:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5458','2005-07-09 22:35:49.000','2203','521','2005-07-16 22:55:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5459','2005-07-09 22:43:56.000','1847','168','2005-07-12 18:05:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5460','2005-07-09 22:46:14.000','2410','38','2005-07-12 21:26:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5461','2005-07-09 22:48:04.000','53','244','2005-07-10 17:56:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5462','2005-07-09 22:56:53.000','871','583','2005-07-11 21:50:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5463','2005-07-09 22:57:02.000','601','374','2005-07-11 03:10:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5464','2005-07-09 22:58:14.000','3692','434','2005-07-15 02:48:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5465','2005-07-09 23:01:13.000','723','503','2005-07-13 01:03:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5466','2005-07-09 23:03:21.000','2302','482','2005-07-10 20:11:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5467','2005-07-09 23:05:47.000','374','543','2005-07-16 17:06:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5468','2005-07-09 23:06:09.000','2196','81','2005-07-13 00:48:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5469','2005-07-09 23:08:07.000','2201','475','2005-07-13 19:13:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5470','2005-07-09 23:10:49.000','3254','325','2005-07-18 04:30:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5471','2005-07-09 23:11:52.000','4086','347','2005-07-13 02:08:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5472','2005-07-09 23:16:40.000','865','165','2005-07-10 18:43:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5473','2005-07-09 23:19:11.000','4283','51','2005-07-19 02:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5474','2005-07-09 23:23:57.000','3608','375','2005-07-15 03:11:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5475','2005-07-09 23:31:38.000','726','219','2005-07-12 03:51:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5476','2005-07-09 23:37:09.000','1199','427','2005-07-15 23:57:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5477','2005-07-09 23:43:49.000','994','542','2005-07-15 05:03:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5478','2005-07-09 23:45:15.000','3213','583','2005-07-15 22:48:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5479','2005-07-09 23:47:33.000','216','250','2005-07-13 01:09:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5480','2005-07-09 23:49:07.000','847','452','2005-07-12 00:15:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5481','2005-07-09 23:51:57.000','562','479','2005-07-11 05:28:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5482','2005-07-09 23:53:04.000','2136','460','2005-07-15 04:59:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5483','2005-07-09 23:54:09.000','4362','89','2005-07-17 23:36:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5484','2005-07-09 23:54:37.000','3248','495','2005-07-15 02:05:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5485','2005-07-09 23:55:25.000','3930','173','2005-07-14 04:08:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5486','2005-07-09 23:57:44.000','2864','538','2005-07-14 00:23:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5487','2005-07-10 00:01:50.000','1144','341','2005-07-10 20:43:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5488','2005-07-10 00:02:06.000','4262','173','2005-07-15 01:45:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5489','2005-07-10 00:07:03.000','2319','490','2005-07-15 19:52:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5490','2005-07-10 00:09:11.000','3044','367','2005-07-14 21:23:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5491','2005-07-10 00:09:45.000','2007','49','2005-07-11 02:25:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5492','2005-07-10 00:11:09.000','4524','558','2005-07-14 01:27:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5493','2005-07-10 00:11:44.000','2037','539','2005-07-15 19:24:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5494','2005-07-10 00:15:00.000','3087','139','2005-07-17 01:12:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5495','2005-07-10 00:16:54.000','2199','257','2005-07-19 01:22:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5496','2005-07-10 00:20:23.000','3182','369','2005-07-18 21:10:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5497','2005-07-10 00:23:23.000','4473','92','2005-07-16 03:54:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5498','2005-07-10 00:27:21.000','63','302','2005-07-13 20:11:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5499','2005-07-10 00:27:45.000','1525','127','2005-07-17 06:11:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5500','2005-07-10 00:28:17.000','3380','457','2005-07-15 19:09:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5501','2005-07-10 00:33:48.000','3979','372','2005-07-17 02:58:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5502','2005-07-10 00:34:15.000','3712','243','2005-07-11 21:44:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5503','2005-07-10 00:35:37.000','3892','262','2005-07-12 20:29:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5504','2005-07-10 00:36:38.000','3053','455','2005-07-16 19:36:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5505','2005-07-10 00:38:48.000','896','253','2005-07-12 03:12:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5506','2005-07-10 00:45:48.000','2432','117','2005-07-18 20:35:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5507','2005-07-10 00:49:04.000','716','399','2005-07-15 22:06:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5508','2005-07-10 00:50:01.000','2977','345','2005-07-16 19:07:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5509','2005-07-10 00:54:46.000','1142','102','2005-07-16 05:10:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5510','2005-07-10 00:58:37.000','1298','67','2005-07-17 22:02:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5511','2005-07-10 01:00:00.000','3678','301','2005-07-12 20:44:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5512','2005-07-10 01:05:38.000','4470','405','2005-07-17 20:47:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5513','2005-07-10 01:05:41.000','2558','356','2005-07-11 02:05:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5514','2005-07-10 01:09:42.000','1824','522','2005-07-17 05:47:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5515','2005-07-10 01:12:44.000','3772','39','2005-07-13 00:39:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5516','2005-07-10 01:13:52.000','1902','581','2005-07-15 22:56:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5517','2005-07-10 01:15:00.000','3689','42','2005-07-19 01:59:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5518','2005-07-10 01:15:11.000','3340','451','2005-07-18 19:28:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5519','2005-07-10 01:18:32.000','1312','85','2005-07-11 20:39:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5520','2005-07-10 01:30:41.000','2527','501','2005-07-15 21:37:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5521','2005-07-10 01:31:22.000','1956','182','2005-07-17 05:42:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5522','2005-07-10 01:46:29.000','2622','573','2005-07-18 00:41:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5523','2005-07-10 01:47:55.000','2233','125','2005-07-18 22:25:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5524','2005-07-10 01:49:24.000','3596','386','2005-07-14 22:55:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5525','2005-07-10 02:03:08.000','3141','241','2005-07-18 07:32:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5526','2005-07-10 02:04:03.000','3909','144','2005-07-16 22:15:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5527','2005-07-10 02:06:01.000','4462','554','2005-07-15 00:55:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5528','2005-07-10 02:09:21.000','680','551','2005-07-17 06:22:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5529','2005-07-10 02:11:13.000','1652','590','2005-07-15 06:56:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5530','2005-07-10 02:13:49.000','2701','74','2005-07-18 08:01:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5531','2005-07-10 02:13:59.000','2992','173','2005-07-15 00:01:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5532','2005-07-10 02:17:31.000','983','522','2005-07-16 02:57:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5533','2005-07-10 02:19:28.000','2567','270','2005-07-11 01:37:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5534','2005-07-10 02:26:49.000','3251','156','2005-07-11 07:13:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5535','2005-07-10 02:27:42.000','1623','394','2005-07-12 21:13:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5536','2005-07-10 02:29:42.000','1919','195','2005-07-13 04:06:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5537','2005-07-10 02:35:41.000','1781','254','2005-07-13 07:11:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5538','2005-07-10 02:39:40.000','2119','367','2005-07-12 01:39:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5539','2005-07-10 02:42:58.000','3217','90','2005-07-16 02:27:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5540','2005-07-10 02:44:21.000','132','250','2005-07-11 07:13:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5541','2005-07-10 02:44:27.000','1211','135','2005-07-13 04:13:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5542','2005-07-10 02:45:53.000','1713','105','2005-07-15 23:23:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5543','2005-07-10 02:48:03.000','1496','71','2005-07-17 05:49:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5544','2005-07-10 02:48:07.000','1014','316','2005-07-17 01:08:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5545','2005-07-10 02:50:29.000','118','236','2005-07-16 02:11:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5546','2005-07-10 02:50:37.000','2918','515','2005-07-16 08:22:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5547','2005-07-10 02:52:47.000','1432','519','2005-07-16 02:10:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5548','2005-07-10 02:56:45.000','2973','317','2005-07-13 01:33:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5549','2005-07-10 02:58:29.000','2685','163','2005-07-17 05:24:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5550','2005-07-10 02:58:35.000','1905','254','2005-07-16 02:38:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5551','2005-07-10 03:01:09.000','4238','44','2005-07-18 02:04:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5552','2005-07-10 03:01:19.000','2879','27','2005-07-13 06:53:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5553','2005-07-10 03:03:35.000','1686','6','2005-07-14 07:49:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5554','2005-07-10 03:03:38.000','4084','252','2005-07-17 00:00:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5555','2005-07-10 03:08:55.000','2551','79','2005-07-11 01:36:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5556','2005-07-10 03:10:17.000','4483','354','2005-07-14 02:47:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5557','2005-07-10 03:10:21.000','1433','346','2005-07-11 21:34:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5558','2005-07-10 03:12:08.000','1123','96','2005-07-14 03:09:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5559','2005-07-10 03:13:07.000','4122','496','2005-07-18 08:33:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5560','2005-07-10 03:13:24.000','720','231','2005-07-19 06:03:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5561','2005-07-10 03:15:24.000','1048','369','2005-07-15 06:46:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5562','2005-07-10 03:17:42.000','3604','300','2005-07-12 03:26:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5563','2005-07-10 03:21:02.000','2258','362','2005-07-14 07:40:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5564','2005-07-10 03:23:05.000','196','355','2005-07-16 07:46:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5565','2005-07-10 03:29:48.000','3368','14','2005-07-17 04:43:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5566','2005-07-10 03:30:17.000','1343','124','2005-07-13 06:32:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5567','2005-07-10 03:36:46.000','1616','147','2005-07-15 23:22:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5568','2005-07-10 03:36:56.000','1130','424','2005-07-11 08:35:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5569','2005-07-10 03:38:32.000','2835','69','2005-07-16 00:02:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5570','2005-07-10 03:46:47.000','2013','374','2005-07-17 09:28:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5571','2005-07-10 03:48:20.000','1084','76','2005-07-11 02:09:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5572','2005-07-10 03:49:00.000','2709','458','2005-07-14 01:25:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5573','2005-07-10 03:50:47.000','2957','170','2005-07-17 06:40:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5574','2005-07-10 03:54:38.000','2307','163','2005-07-19 07:20:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5575','2005-07-10 03:55:50.000','2316','107','2005-07-12 08:40:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5576','2005-07-10 03:57:05.000','1453','217','2005-07-13 02:16:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5577','2005-07-10 03:58:40.000','3779','266','2005-07-14 03:36:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5578','2005-07-10 04:00:31.000','4543','378','2005-07-16 08:06:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5579','2005-07-10 04:04:29.000','945','203','2005-07-14 04:31:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5580','2005-07-10 04:05:49.000','2753','521','2005-07-18 22:36:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5581','2005-07-10 04:06:06.000','3450','306','2005-07-15 08:31:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5582','2005-07-10 04:08:25.000','3341','305','2005-07-13 06:04:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5583','2005-07-10 04:08:48.000','1242','391','2005-07-19 07:59:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5584','2005-07-10 04:15:25.000','2606','289','2005-07-16 22:54:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5585','2005-07-10 04:15:43.000','3524','63','2005-07-15 08:24:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5586','2005-07-10 04:17:06.000','2965','427','2005-07-18 07:11:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5587','2005-07-10 04:17:25.000','4485','531','2005-07-15 01:41:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5588','2005-07-10 04:21:10.000','1166','535','2005-07-16 02:58:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5589','2005-07-10 04:22:58.000','3673','296','2005-07-10 23:13:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5590','2005-07-10 04:23:11.000','4442','407','2005-07-19 09:03:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5591','2005-07-10 04:25:03.000','378','374','2005-07-16 04:21:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5592','2005-07-10 04:26:13.000','2471','222','2005-07-19 02:32:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5593','2005-07-10 04:33:13.000','702','287','2005-07-17 08:44:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5594','2005-07-10 04:33:36.000','61','440','2005-07-12 08:13:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5595','2005-07-10 04:33:45.000','264','572','2005-07-16 04:04:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5596','2005-07-10 04:43:14.000','1662','240','2005-07-11 22:58:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5597','2005-07-10 04:47:57.000','4264','576','2005-07-17 01:54:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5598','2005-07-10 04:48:29.000','3412','397','2005-07-18 10:33:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5599','2005-07-10 04:52:04.000','3054','391','2005-07-13 05:19:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5600','2005-07-10 04:55:45.000','3713','138','2005-07-18 03:10:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5601','2005-07-10 04:56:55.000','3062','511','2005-07-11 00:14:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5602','2005-07-10 05:02:22.000','3544','253','2005-07-14 23:40:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5603','2005-07-10 05:04:54.000','1308','74','2005-07-12 01:54:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5604','2005-07-10 05:05:00.000','3702','78','2005-07-12 08:04:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5605','2005-07-10 05:06:45.000','2964','273','2005-07-15 02:51:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5606','2005-07-10 05:07:55.000','2896','51','2005-07-15 00:14:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5607','2005-07-10 05:08:10.000','4257','52','2005-07-15 00:40:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5608','2005-07-10 05:08:26.000','3854','384','2005-07-10 23:24:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5609','2005-07-10 05:09:46.000','1553','492','2005-07-12 10:38:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5610','2005-07-10 05:09:52.000','481','131','2005-07-13 07:08:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5611','2005-07-10 05:13:43.000','2832','424','2005-07-16 05:56:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5612','2005-07-10 05:15:12.000','2363','472','2005-07-17 09:50:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5613','2005-07-10 05:15:43.000','4517','220','2005-07-13 05:17:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5614','2005-07-10 05:16:56.000','133','371','2005-07-13 02:03:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5615','2005-07-10 05:18:51.000','1521','173','2005-07-17 11:05:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5616','2005-07-10 05:21:11.000','4014','238','2005-07-18 08:42:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5617','2005-07-10 05:28:50.000','2324','342','2005-07-12 00:02:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5618','2005-07-10 05:28:58.000','757','316','2005-07-18 01:38:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5619','2005-07-10 05:29:33.000','113','204','2005-07-15 00:40:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5620','2005-07-10 05:30:52.000','2980','92','2005-07-16 04:13:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5621','2005-07-10 05:34:10.000','552','310','2005-07-14 02:49:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5622','2005-07-10 05:39:37.000','1783','568','2005-07-15 00:48:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5623','2005-07-10 05:41:38.000','4464','229','2005-07-14 01:01:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5624','2005-07-10 05:43:16.000','1015','114','2005-07-12 05:33:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5625','2005-07-10 05:44:02.000','1751','114','2005-07-12 00:03:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5626','2005-07-10 05:49:35.000','3029','389','2005-07-15 08:05:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5627','2005-07-10 05:51:12.000','244','136','2005-07-17 09:56:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5628','2005-07-10 05:56:40.000','4040','87','2005-07-17 11:13:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5629','2005-07-10 06:02:25.000','400','546','2005-07-16 07:33:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5630','2005-07-10 06:08:14.000','1151','537','2005-07-14 03:37:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5631','2005-07-10 06:15:45.000','2095','595','2005-07-17 09:53:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5632','2005-07-10 06:17:06.000','2632','404','2005-07-17 02:32:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5633','2005-07-10 06:22:24.000','1056','480','2005-07-11 05:59:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5634','2005-07-10 06:25:48.000','323','487','2005-07-17 09:07:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5635','2005-07-10 06:28:39.000','1457','222','2005-07-17 08:35:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5636','2005-07-10 06:31:24.000','4116','2','2005-07-13 02:36:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5637','2005-07-10 06:31:37.000','4436','45','2005-07-17 01:16:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5638','2005-07-10 06:32:49.000','1528','570','2005-07-13 04:32:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5639','2005-07-10 06:33:39.000','2452','249','2005-07-19 07:47:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5640','2005-07-10 06:38:00.000','2706','574','2005-07-18 08:56:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5641','2005-07-10 06:43:43.000','3568','50','2005-07-15 06:33:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5642','2005-07-10 06:46:08.000','3630','299','2005-07-13 10:03:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5643','2005-07-10 06:49:00.000','796','34','2005-07-14 01:53:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5644','2005-07-10 06:57:44.000','4069','476','2005-07-15 03:52:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5645','2005-07-10 06:58:21.000','1586','333','2005-07-18 04:19:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5646','2005-07-10 07:08:09.000','1471','166','2005-07-14 03:48:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5647','2005-07-10 07:08:40.000','1466','128','2005-07-13 05:19:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5648','2005-07-10 07:09:21.000','4359','24','2005-07-16 07:23:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5649','2005-07-10 07:15:07.000','1349','336','2005-07-12 11:57:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5650','2005-07-10 07:17:01.000','2793','461','2005-07-15 11:59:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5651','2005-07-10 07:17:13.000','301','239','2005-07-15 12:13:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5652','2005-07-10 07:18:58.000','927','42','2005-07-19 07:52:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5653','2005-07-10 07:21:27.000','919','28','2005-07-16 01:58:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5654','2005-07-10 07:24:46.000','3419','490','2005-07-14 07:39:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5655','2005-07-10 07:31:06.000','3470','113','2005-07-17 08:22:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5656','2005-07-10 07:31:07.000','4138','159','2005-07-15 04:44:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5657','2005-07-10 07:33:43.000','4342','508','2005-07-18 01:55:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5658','2005-07-10 07:34:08.000','4402','165','2005-07-19 04:21:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5659','2005-07-10 07:45:40.000','4265','9','2005-07-15 05:20:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5660','2005-07-10 07:46:12.000','1404','171','2005-07-17 07:48:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5661','2005-07-10 07:53:51.000','1878','108','2005-07-14 12:57:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5662','2005-07-10 07:59:24.000','219','502','2005-07-14 13:06:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5663','2005-07-10 08:01:33.000','3078','530','2005-07-15 03:36:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5664','2005-07-10 08:04:41.000','2375','469','2005-07-17 10:29:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5665','2005-07-10 08:10:08.000','1175','415','2005-07-11 05:22:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5666','2005-07-10 08:10:29.000','2225','242','2005-07-17 04:54:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5667','2005-07-10 08:11:03.000','683','336','2005-07-15 08:23:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5668','2005-07-10 08:11:05.000','309','211','2005-07-16 13:15:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5669','2005-07-10 08:12:53.000','1173','323','2005-07-11 05:48:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5670','2005-07-10 08:14:52.000','610','121','2005-07-14 04:13:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5671','2005-07-10 08:18:22.000','1304','268','2005-07-11 07:03:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5672','2005-07-10 08:19:38.000','2326','158','2005-07-16 06:28:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5673','2005-07-10 08:21:54.000','4018','117','2005-07-11 05:54:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5674','2005-07-10 08:26:26.000','548','258','2005-07-16 02:43:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5675','2005-07-10 08:31:06.000','2134','376','2005-07-17 11:48:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5676','2005-07-10 08:38:32.000','3595','153','2005-07-13 10:11:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5677','2005-07-10 08:41:28.000','2647','105','2005-07-12 09:05:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5678','2005-07-10 08:42:42.000','4366','96','2005-07-19 03:48:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5679','2005-07-10 08:44:02.000','389','138','2005-07-14 05:30:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5680','2005-07-10 08:47:36.000','3503','199','2005-07-17 06:10:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5681','2005-07-10 08:48:39.000','4176','50','2005-07-18 07:17:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5682','2005-07-10 08:51:39.000','17','302','2005-07-12 14:44:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5683','2005-07-10 08:52:13.000','4433','285','2005-07-19 10:25:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5684','2005-07-10 08:59:03.000','99','132','2005-07-15 07:21:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5685','2005-07-10 09:01:38.000','1462','170','2005-07-17 10:58:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5686','2005-07-10 09:06:03.000','717','521','2005-07-11 10:59:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5687','2005-07-10 09:07:19.000','2170','363','2005-07-16 11:17:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5688','2005-07-10 09:16:08.000','3036','598','2005-07-15 09:44:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5689','2005-07-10 09:24:17.000','1731','381','2005-07-15 05:36:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5690','2005-07-10 09:26:49.000','1326','362','2005-07-19 07:17:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5691','2005-07-10 09:29:49.000','3526','466','2005-07-16 13:37:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5692','2005-07-10 09:32:22.000','59','244','2005-07-15 15:20:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5693','2005-07-10 09:35:43.000','2167','208','2005-07-12 08:05:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5694','2005-07-10 09:40:38.000','3476','57','2005-07-14 09:16:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5695','2005-07-10 09:43:40.000','440','459','2005-07-13 15:04:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5696','2005-07-10 09:44:32.000','128','96','2005-07-12 13:38:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5697','2005-07-10 09:44:44.000','934','515','2005-07-12 12:13:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5698','2005-07-10 09:47:00.000','639','46','2005-07-16 06:26:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5699','2005-07-10 09:48:04.000','958','211','2005-07-17 09:07:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5700','2005-07-10 09:49:42.000','3961','87','2005-07-19 04:20:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5701','2005-07-10 09:56:24.000','2395','91','2005-07-16 15:11:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5702','2005-07-10 10:00:01.000','3349','324','2005-07-11 15:29:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5703','2005-07-10 10:04:15.000','1585','132','2005-07-16 07:43:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5704','2005-07-10 10:06:29.000','2104','591','2005-07-17 10:48:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5705','2005-07-10 10:09:17.000','4030','300','2005-07-19 07:24:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5706','2005-07-10 10:21:46.000','3701','255','2005-07-16 04:37:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5707','2005-07-10 10:26:14.000','708','581','2005-07-18 06:19:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5708','2005-07-10 10:29:19.000','571','484','2005-07-18 06:50:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5709','2005-07-10 10:31:52.000','732','302','2005-07-12 10:47:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5710','2005-07-10 10:32:52.000','2843','265','2005-07-18 06:28:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5711','2005-07-10 10:37:20.000','3988','481','2005-07-13 11:20:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5712','2005-07-10 10:40:32.000','3480','304','2005-07-12 11:45:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5713','2005-07-10 10:46:15.000','1213','572','2005-07-19 14:34:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5714','2005-07-10 10:46:57.000','3706','17','2005-07-18 14:07:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5715','2005-07-10 10:48:03.000','1638','132','2005-07-18 11:27:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5716','2005-07-10 10:59:23.000','3416','102','2005-07-16 12:25:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5717','2005-07-10 11:02:03.000','529','15','2005-07-13 13:00:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5718','2005-07-10 11:03:20.000','3719','20','2005-07-19 15:38:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5719','2005-07-10 11:07:40.000','2100','94','2005-07-15 14:14:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5720','2005-07-10 11:09:12.000','576','339','2005-07-16 07:31:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5721','2005-07-10 11:09:35.000','2348','5','2005-07-17 16:41:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5722','2005-07-10 11:10:04.000','2890','556','2005-07-12 16:31:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5723','2005-07-10 11:14:48.000','605','33','2005-07-11 15:46:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5724','2005-07-10 11:18:12.000','3597','289','2005-07-16 14:53:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5725','2005-07-10 11:21:21.000','4293','426','2005-07-14 05:34:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5726','2005-07-10 11:22:08.000','3582','131','2005-07-13 05:55:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5727','2005-07-10 11:25:28.000','3338','550','2005-07-11 11:03:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5728','2005-07-10 11:26:14.000','636','335','2005-07-15 12:55:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5729','2005-07-10 11:27:25.000','4137','188','2005-07-15 06:13:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5730','2005-07-10 11:28:32.000','1903','301','2005-07-11 11:45:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5731','2005-07-10 11:31:52.000','2960','440','2005-07-14 11:44:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5732','2005-07-10 11:36:32.000','2833','597','2005-07-12 13:09:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5733','2005-07-10 11:37:24.000','3806','415','2005-07-11 12:34:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5734','2005-07-10 11:37:28.000','399','447','2005-07-16 11:10:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5735','2005-07-10 11:39:15.000','3259','65','2005-07-19 09:52:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5736','2005-07-10 11:45:48.000','1172','27','2005-07-13 16:40:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5737','2005-07-10 11:50:04.000','1118','218','2005-07-13 10:37:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5738','2005-07-10 11:50:51.000','200','187','2005-07-19 17:46:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5739','2005-07-10 11:51:50.000','163','219','2005-07-19 17:40:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5740','2005-07-10 11:51:58.000','2147','325','2005-07-12 07:53:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5741','2005-07-10 11:55:40.000','2041','513','2005-07-16 15:02:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5742','2005-07-10 11:56:18.000','3975','596','2005-07-19 06:59:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5743','2005-07-10 11:57:38.000','593','297','2005-07-19 15:38:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5744','2005-07-10 12:08:33.000','1372','437','2005-07-14 12:34:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5745','2005-07-10 12:10:11.000','41','305','2005-07-19 06:56:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5746','2005-07-10 12:15:12.000','3071','82','2005-07-16 07:02:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5747','2005-07-10 12:15:33.000','4562','583','2005-07-18 10:11:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5748','2005-07-10 12:19:59.000','1618','99','2005-07-12 12:59:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5749','2005-07-10 12:20:36.000','1768','304','2005-07-19 10:39:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5750','2005-07-10 12:20:41.000','3855','330','2005-07-17 08:25:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5751','2005-07-10 12:25:11.000','387','479','2005-07-11 15:23:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5752','2005-07-10 12:27:38.000','4444','86','2005-07-18 09:22:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5753','2005-07-10 12:29:43.000','3639','444','2005-07-17 12:50:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5754','2005-07-10 12:32:43.000','162','291','2005-07-12 13:11:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5755','2005-07-10 12:38:56.000','2760','2','2005-07-19 17:02:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5756','2005-07-10 12:39:28.000','130','183','2005-07-11 14:08:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5757','2005-07-10 12:40:17.000','1827','101','2005-07-12 14:02:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5758','2005-07-10 12:42:43.000','502','363','2005-07-16 10:18:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5759','2005-07-10 12:43:22.000','816','591','2005-07-16 16:42:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5760','2005-07-10 12:44:48.000','1050','154','2005-07-14 12:25:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5761','2005-07-10 12:45:36.000','1763','287','2005-07-13 10:05:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5762','2005-07-10 12:48:01.000','1815','217','2005-07-18 16:43:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5763','2005-07-10 12:58:12.000','753','397','2005-07-14 08:52:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5764','2005-07-10 12:58:16.000','1556','245','2005-07-19 07:28:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5765','2005-07-10 13:03:02.000','2619','293','2005-07-16 09:31:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5766','2005-07-10 13:07:31.000','7','406','2005-07-16 13:03:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5767','2005-07-10 13:13:18.000','2871','32','2005-07-17 14:41:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5768','2005-07-10 13:15:26.000','345','196','2005-07-15 09:42:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5769','2005-07-10 13:17:58.000','4052','141','2005-07-11 11:32:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5770','2005-07-10 13:21:28.000','914','71','2005-07-11 08:59:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5771','2005-07-10 13:26:45.000','3275','153','2005-07-14 15:43:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5772','2005-07-10 13:27:40.000','3635','21','2005-07-17 08:24:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5773','2005-07-10 13:31:09.000','3277','180','2005-07-15 08:21:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5774','2005-07-10 13:31:56.000','326','113','2005-07-18 07:32:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5775','2005-07-10 13:34:26.000','2175','325','2005-07-15 10:01:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5776','2005-07-10 13:35:22.000','3592','568','2005-07-12 17:58:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5777','2005-07-10 13:38:41.000','3959','40','2005-07-17 15:48:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5778','2005-07-10 13:41:37.000','4435','324','2005-07-14 16:26:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5779','2005-07-10 13:45:54.000','3266','244','2005-07-15 18:13:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5780','2005-07-10 13:46:23.000','168','516','2005-07-14 17:19:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5781','2005-07-10 13:49:30.000','3191','167','2005-07-11 12:11:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5782','2005-07-10 13:52:56.000','2514','440','2005-07-15 09:32:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5783','2005-07-10 13:55:33.000','3331','385','2005-07-16 12:13:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5784','2005-07-10 14:03:28.000','2323','422','2005-07-16 16:22:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5785','2005-07-10 14:06:03.000','142','211','2005-07-17 17:59:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5786','2005-07-10 14:06:44.000','2290','350','2005-07-14 19:55:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5787','2005-07-10 14:08:49.000','1075','44','2005-07-19 18:29:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5788','2005-07-10 14:10:22.000','1707','63','2005-07-14 19:46:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5789','2005-07-10 14:11:26.000','2601','571','2005-07-18 16:19:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5790','2005-07-10 14:15:21.000','1696','235','2005-07-14 08:53:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5791','2005-07-10 14:16:22.000','2795','319','2005-07-19 13:38:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5792','2005-07-10 14:22:19.000','4234','92','2005-07-19 09:08:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5793','2005-07-10 14:33:00.000','2927','268','2005-07-13 19:27:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5794','2005-07-10 14:34:53.000','1164','198','2005-07-17 11:50:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5795','2005-07-10 14:36:29.000','3958','304','2005-07-14 13:26:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5796','2005-07-10 14:42:54.000','1631','286','2005-07-17 08:47:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5797','2005-07-10 14:43:52.000','1880','384','2005-07-13 16:12:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5798','2005-07-10 14:45:09.000','331','107','2005-07-16 13:43:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5799','2005-07-10 14:53:35.000','3045','520','2005-07-14 16:18:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5800','2005-07-10 14:58:36.000','2466','411','2005-07-11 19:50:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5801','2005-07-10 14:59:05.000','3511','439','2005-07-14 17:55:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5802','2005-07-10 15:02:17.000','2295','520','2005-07-19 15:43:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5803','2005-07-10 15:05:42.000','1982','244','2005-07-15 10:19:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5804','2005-07-10 15:06:31.000','2168','137','2005-07-14 11:00:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5805','2005-07-10 15:08:41.000','3553','532','2005-07-19 16:35:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5806','2005-07-10 15:11:54.000','29','108','2005-07-15 11:51:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5807','2005-07-10 15:16:30.000','2092','301','2005-07-11 14:02:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5808','2005-07-10 15:17:33.000','2310','170','2005-07-14 12:14:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5809','2005-07-10 15:19:30.000','1748','461','2005-07-13 12:31:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5810','2005-07-10 15:22:04.000','1426','482','2005-07-18 21:05:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5811','2005-07-10 15:27:04.000','4007','441','2005-07-12 17:20:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5812','2005-07-10 15:27:56.000','1681','581','2005-07-18 15:37:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5813','2005-07-10 15:34:37.000','942','512','2005-07-17 16:14:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5814','2005-07-10 15:46:50.000','2537','71','2005-07-13 15:28:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5815','2005-07-10 15:48:19.000','2934','22','2005-07-13 12:09:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5816','2005-07-10 15:48:47.000','1746','382','2005-07-13 11:51:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5817','2005-07-10 15:49:12.000','2993','28','2005-07-18 19:30:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5818','2005-07-10 15:51:12.000','3940','334','2005-07-14 14:10:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5819','2005-07-10 15:56:20.000','3439','347','2005-07-12 19:59:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5820','2005-07-10 16:04:59.000','1511','485','2005-07-16 12:10:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5821','2005-07-10 16:07:16.000','147','302','2005-07-14 19:48:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5822','2005-07-10 16:10:39.000','1385','38','2005-07-13 19:05:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5823','2005-07-10 16:19:52.000','1879','483','2005-07-11 12:33:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5824','2005-07-10 16:19:53.000','1980','449','2005-07-12 11:17:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5825','2005-07-10 16:20:30.000','3843','444','2005-07-11 18:58:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5826','2005-07-10 16:21:02.000','4104','254','2005-07-17 21:08:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5827','2005-07-10 16:22:20.000','1296','290','2005-07-15 21:13:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5828','2005-07-10 16:27:25.000','2999','156','2005-07-11 18:42:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5829','2005-07-10 16:29:41.000','3405','118','2005-07-14 22:03:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5830','2005-07-10 16:34:00.000','2358','59','2005-07-18 16:42:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5831','2005-07-10 16:34:02.000','830','43','2005-07-11 14:27:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5832','2005-07-10 16:34:48.000','2387','63','2005-07-17 17:25:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5833','2005-07-10 16:39:24.000','3829','187','2005-07-17 12:52:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5834','2005-07-10 16:44:12.000','85','360','2005-07-14 11:34:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5835','2005-07-10 16:44:58.000','800','11','2005-07-17 16:03:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5836','2005-07-10 16:49:02.000','1842','310','2005-07-11 22:35:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5837','2005-07-10 16:57:50.000','1648','478','2005-07-18 14:07:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5838','2005-07-10 17:04:56.000','1627','202','2005-07-11 15:15:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5839','2005-07-10 17:08:30.000','252','367','2005-07-13 21:21:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5840','2005-07-10 17:09:09.000','1073','72','2005-07-15 22:52:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5841','2005-07-10 17:11:31.000','1230','525','2005-07-18 15:50:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5842','2005-07-10 17:11:37.000','139','247','2005-07-14 21:43:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5843','2005-07-10 17:14:27.000','1615','599','2005-07-15 21:18:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5844','2005-07-10 17:14:43.000','609','147','2005-07-12 19:27:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5845','2005-07-10 17:23:14.000','2882','334','2005-07-12 16:29:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5846','2005-07-10 17:25:24.000','938','233','2005-07-12 13:41:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5847','2005-07-10 17:27:42.000','4403','220','2005-07-12 14:51:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5848','2005-07-10 17:28:14.000','4549','409','2005-07-14 11:54:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5849','2005-07-10 17:32:33.000','1632','44','2005-07-19 22:39:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5850','2005-07-10 17:36:27.000','4015','531','2005-07-15 16:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5851','2005-07-10 17:40:47.000','3944','510','2005-07-11 19:24:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5852','2005-07-10 17:43:30.000','3890','484','2005-07-15 15:05:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5853','2005-07-10 17:45:13.000','3026','520','2005-07-17 21:37:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5854','2005-07-10 17:47:34.000','997','547','2005-07-13 20:14:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5855','2005-07-10 17:54:06.000','2457','166','2005-07-18 15:41:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5856','2005-07-10 17:57:32.000','497','314','2005-07-11 13:57:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5857','2005-07-10 17:59:29.000','1265','29','2005-07-18 18:13:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5858','2005-07-10 18:00:07.000','2913','257','2005-07-11 20:01:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5859','2005-07-10 18:02:02.000','131','220','2005-07-11 23:24:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5860','2005-07-10 18:08:49.000','3897','180','2005-07-16 16:43:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5861','2005-07-10 18:14:22.000','3881','277','2005-07-14 15:32:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5862','2005-07-10 18:20:48.000','2075','157','2005-07-17 00:09:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5863','2005-07-10 18:25:23.000','2557','419','2005-07-15 23:49:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5864','2005-07-10 18:29:57.000','4380','437','2005-07-19 14:27:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5865','2005-07-10 18:31:05.000','1382','126','2005-07-12 18:29:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5866','2005-07-10 18:35:14.000','457','484','2005-07-19 19:41:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5867','2005-07-10 18:39:01.000','730','321','2005-07-19 21:56:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5868','2005-07-10 18:39:16.000','452','429','2005-07-15 21:19:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5869','2005-07-10 18:40:09.000','2157','40','2005-07-17 18:42:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5870','2005-07-10 18:40:25.000','1524','438','2005-07-12 15:39:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5871','2005-07-10 18:46:08.000','3288','307','2005-07-16 17:32:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5872','2005-07-10 18:54:05.000','270','364','2005-07-19 15:41:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5873','2005-07-10 19:02:10.000','3151','354','2005-07-14 19:13:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5874','2005-07-10 19:02:51.000','2255','131','2005-07-16 13:14:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5875','2005-07-10 19:06:47.000','964','575','2005-07-18 17:33:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5876','2005-07-10 19:07:15.000','4445','578','2005-07-14 17:29:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5877','2005-07-10 19:08:51.000','1520','537','2005-07-19 19:48:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5878','2005-07-10 19:09:57.000','3805','271','2005-07-16 17:22:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5879','2005-07-10 19:12:47.000','3851','430','2005-07-16 16:32:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5880','2005-07-10 19:14:58.000','359','482','2005-07-17 01:13:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5881','2005-07-10 19:19:43.000','236','25','2005-07-12 20:11:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5882','2005-07-10 19:20:34.000','2830','319','2005-07-11 18:39:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5883','2005-07-10 19:25:21.000','2820','17','2005-07-16 20:50:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5884','2005-07-10 19:31:38.000','916','498','2005-07-11 20:30:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5885','2005-07-10 19:33:50.000','3129','331','2005-07-17 00:26:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5886','2005-07-10 19:36:25.000','907','215','2005-07-11 22:24:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5887','2005-07-10 19:45:47.000','2602','532','2005-07-15 22:15:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5888','2005-07-10 19:52:17.000','1620','268','2005-07-18 20:32:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5889','2005-07-10 19:54:41.000','1706','491','2005-07-12 20:08:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5890','2005-07-10 20:00:25.000','1463','535','2005-07-18 17:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5891','2005-07-10 20:01:17.000','4355','184','2005-07-12 00:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5892','2005-07-10 20:02:42.000','4322','333','2005-07-11 20:02:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5893','2005-07-10 20:05:30.000','1689','439','2005-07-14 23:05:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5894','2005-07-10 20:09:34.000','2264','194','2005-07-17 15:39:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5895','2005-07-10 20:13:19.000','2272','164','2005-07-17 17:51:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5896','2005-07-10 20:15:56.000','731','357','2005-07-12 00:39:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5897','2005-07-10 20:16:14.000','740','413','2005-07-19 15:49:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5898','2005-07-10 20:18:09.000','3257','538','2005-07-16 14:44:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5899','2005-07-10 20:21:52.000','1391','388','2005-07-13 00:46:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5900','2005-07-10 20:21:54.000','1081','419','2005-07-17 00:26:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5901','2005-07-10 20:22:12.000','86','165','2005-07-19 16:43:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5902','2005-07-10 20:31:24.000','2727','228','2005-07-11 20:50:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5903','2005-07-10 20:39:04.000','1388','573','2005-07-11 17:41:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5904','2005-07-10 20:39:44.000','350','531','2005-07-13 17:57:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5905','2005-07-10 20:41:09.000','3891','10','2005-07-19 14:49:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5906','2005-07-10 20:41:41.000','514','323','2005-07-14 00:12:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5907','2005-07-10 20:41:41.000','4432','168','2005-07-15 21:18:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5908','2005-07-10 20:44:14.000','810','156','2005-07-13 15:05:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5909','2005-07-10 20:46:13.000','2333','44','2005-07-14 18:01:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5910','2005-07-10 20:51:34.000','1039','464','2005-07-19 14:54:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5911','2005-07-10 20:51:42.000','4140','420','2005-07-14 21:58:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5912','2005-07-10 20:58:22.000','1187','351','2005-07-17 01:15:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5913','2005-07-10 20:58:55.000','2767','277','2005-07-13 15:18:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5914','2005-07-10 21:01:12.000','2639','372','2005-07-16 18:27:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5915','2005-07-10 21:12:16.000','2464','66','2005-07-15 16:59:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5916','2005-07-10 21:26:31.000','2267','35','2005-07-19 20:23:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5917','2005-07-10 21:30:22.000','2910','74','2005-07-12 18:54:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5918','2005-07-10 21:32:06.000','120','34','2005-07-19 21:35:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5919','2005-07-10 21:32:14.000','164','92','2005-07-12 16:47:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5920','2005-07-10 21:33:58.000','1893','221','2005-07-17 19:41:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5921','2005-07-10 21:35:12.000','3920','7','2005-07-18 19:59:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5922','2005-07-10 21:36:53.000','1392','271','2005-07-16 02:51:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5923','2005-07-10 21:40:06.000','1817','401','2005-07-13 00:01:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5924','2005-07-10 21:41:23.000','629','191','2005-07-16 21:33:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5925','2005-07-10 21:41:27.000','3724','503','2005-07-18 18:35:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5926','2005-07-10 21:53:42.000','2840','282','2005-07-20 01:04:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5927','2005-07-10 21:57:14.000','807','70','2005-07-16 19:32:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5928','2005-07-10 21:58:30.000','4132','50','2005-07-15 19:41:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5929','2005-07-10 21:59:29.000','4303','54','2005-07-14 20:20:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5930','2005-07-10 21:59:32.000','2338','254','2005-07-11 18:40:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5931','2005-07-10 22:04:19.000','2259','341','2005-07-13 00:45:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5932','2005-07-10 22:05:15.000','2269','523','2005-07-12 17:04:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5933','2005-07-10 22:06:48.000','4372','419','2005-07-12 23:58:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5934','2005-07-10 22:07:59.000','3825','576','2005-07-15 21:07:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5935','2005-07-10 22:11:04.000','3371','258','2005-07-19 18:12:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5936','2005-07-10 22:14:30.000','1951','522','2005-07-15 01:32:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5937','2005-07-10 22:16:08.000','1579','580','2005-07-16 03:08:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5938','2005-07-10 22:17:42.000','2834','236','2005-07-16 22:38:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5939','2005-07-10 22:30:05.000','4491','207','2005-07-14 00:02:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5940','2005-07-10 22:31:01.000','3295','292','2005-07-14 00:52:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5941','2005-07-10 22:40:47.000','492','43','2005-07-17 00:19:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5942','2005-07-10 22:47:17.000','2861','317','2005-07-17 01:54:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5943','2005-07-10 22:48:13.000','3019','255','2005-07-16 01:33:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5944','2005-07-10 22:51:44.000','3904','432','2005-07-18 17:54:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5945','2005-07-10 22:52:42.000','427','374','2005-07-11 21:52:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5946','2005-07-10 22:57:29.000','1629','308','2005-07-12 00:08:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5947','2005-07-10 23:07:42.000','327','331','2005-07-18 23:13:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5948','2005-07-10 23:12:08.000','3260','57','2005-07-18 19:06:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5949','2005-07-10 23:13:00.000','4397','496','2005-07-14 01:10:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5950','2005-07-10 23:13:45.000','4319','585','2005-07-13 02:35:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5951','2005-07-10 23:14:29.000','2501','589','2005-07-13 01:01:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5952','2005-07-10 23:18:20.000','3406','595','2005-07-16 17:42:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5953','2005-07-10 23:21:35.000','992','386','2005-07-14 20:48:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5954','2005-07-10 23:22:01.000','2627','32','2005-07-14 04:42:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5955','2005-07-10 23:22:10.000','834','409','2005-07-17 17:55:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5956','2005-07-10 23:23:08.000','2536','499','2005-07-13 17:36:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5957','2005-07-10 23:24:02.000','2517','210','2005-07-12 20:28:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5958','2005-07-10 23:31:51.000','3468','430','2005-07-19 00:36:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5959','2005-07-10 23:35:36.000','3169','436','2005-07-13 02:19:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5960','2005-07-10 23:38:34.000','3884','239','2005-07-11 19:21:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5961','2005-07-10 23:43:23.000','3537','21','2005-07-15 05:21:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5962','2005-07-10 23:45:22.000','1292','507','2005-07-13 03:49:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5963','2005-07-10 23:47:08.000','4434','35','2005-07-12 04:27:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5964','2005-07-10 23:47:18.000','3981','456','2005-07-12 03:55:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5965','2005-07-10 23:51:52.000','4476','348','2005-07-11 23:29:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5966','2005-07-10 23:59:27.000','2076','384','2005-07-14 23:38:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5967','2005-07-11 00:02:19.000','2125','215','2005-07-18 23:08:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5968','2005-07-11 00:03:11.000','3273','554','2005-07-19 18:46:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5969','2005-07-11 00:03:22.000','4177','433','2005-07-18 01:28:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5970','2005-07-11 00:04:50.000','1514','94','2005-07-19 03:36:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5971','2005-07-11 00:05:58.000','2191','84','2005-07-19 04:50:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5972','2005-07-11 00:08:54.000','4577','30','2005-07-17 21:01:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5973','2005-07-11 00:09:17.000','1194','165','2005-07-14 19:18:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5974','2005-07-11 00:10:37.000','3984','517','2005-07-18 18:48:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5975','2005-07-11 00:14:19.000','2997','15','2005-07-16 04:21:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5976','2005-07-11 00:16:35.000','1693','505','2005-07-20 01:30:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5977','2005-07-11 00:16:38.000','4011','484','2005-07-19 21:00:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5978','2005-07-11 00:16:54.000','1720','508','2005-07-19 18:55:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5979','2005-07-11 00:17:09.000','1736','251','2005-07-14 00:38:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5980','2005-07-11 00:18:21.000','1777','309','2005-07-14 21:26:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5981','2005-07-11 00:19:04.000','2151','241','2005-07-13 19:10:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5982','2005-07-11 00:24:44.000','2329','403','2005-07-14 04:42:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5983','2005-07-11 00:34:11.000','351','127','2005-07-15 05:37:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5984','2005-07-11 00:44:36.000','2801','178','2005-07-15 00:04:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5985','2005-07-11 00:51:58.000','1108','506','2005-07-14 22:02:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5986','2005-07-11 00:54:56.000','1624','171','2005-07-13 22:52:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5987','2005-07-11 00:55:31.000','1000','447','2005-07-16 06:28:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5988','2005-07-11 00:55:38.000','151','158','2005-07-13 21:36:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5989','2005-07-11 00:57:53.000','696','283','2005-07-15 02:24:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5990','2005-07-11 01:03:14.000','1561','432','2005-07-15 19:32:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5991','2005-07-11 01:03:38.000','3623','590','2005-07-12 22:32:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5992','2005-07-11 01:06:21.000','4216','54','2005-07-13 19:15:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5993','2005-07-11 01:06:41.000','3588','529','2005-07-14 19:19:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5994','2005-07-11 01:14:10.000','4287','295','2005-07-12 00:42:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5995','2005-07-11 01:15:39.000','4357','360','2005-07-20 05:01:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5996','2005-07-11 01:18:33.000','4263','223','2005-07-17 04:18:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5997','2005-07-11 01:19:50.000','3542','128','2005-07-16 06:29:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5998','2005-07-11 01:20:46.000','1458','250','2005-07-15 21:41:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('5999','2005-07-11 01:21:22.000','211','450','2005-07-19 01:35:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6000','2005-07-11 01:23:06.000','1986','371','2005-07-12 04:39:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6001','2005-07-11 01:24:44.000','1779','45','2005-07-11 22:55:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6002','2005-07-11 01:27:49.000','4422','45','2005-07-12 06:02:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6003','2005-07-11 01:28:33.000','296','527','2005-07-17 21:24:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6004','2005-07-11 01:34:25.000','1756','204','2005-07-18 00:48:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6005','2005-07-11 01:36:42.000','809','78','2005-07-14 04:47:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6006','2005-07-11 01:38:42.000','4201','399','2005-07-17 05:18:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6007','2005-07-11 01:43:06.000','4393','289','2005-07-17 04:46:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6008','2005-07-11 01:51:29.000','1227','216','2005-07-18 01:39:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6009','2005-07-11 01:51:58.000','494','470','2005-07-18 07:12:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6010','2005-07-11 01:52:28.000','771','285','2005-07-13 03:13:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6011','2005-07-11 01:54:48.000','3899','527','2005-07-18 07:17:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6012','2005-07-11 02:00:12.000','2609','258','2005-07-17 02:49:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6013','2005-07-11 02:02:03.000','3774','543','2005-07-14 02:07:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6014','2005-07-11 02:02:55.000','3748','397','2005-07-12 23:49:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6015','2005-07-11 02:04:12.000','295','596','2005-07-13 02:43:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6016','2005-07-11 02:04:45.000','651','296','2005-07-17 22:22:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6017','2005-07-11 02:05:32.000','4088','596','2005-07-14 22:50:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6018','2005-07-11 02:06:36.000','4555','500','2005-07-12 02:16:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6019','2005-07-11 02:08:29.000','3483','9','2005-07-13 02:19:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6020','2005-07-11 02:08:55.000','1974','71','2005-07-16 22:07:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6021','2005-07-11 02:10:18.000','3949','173','2005-07-13 05:19:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6022','2005-07-11 02:15:53.000','2435','469','2005-07-13 03:40:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6023','2005-07-11 02:15:57.000','3794','456','2005-07-15 21:30:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6024','2005-07-11 02:16:47.000','2923','271','2005-07-12 05:54:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6025','2005-07-11 02:18:13.000','3306','113','2005-07-11 23:30:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6026','2005-07-11 02:21:43.000','3936','409','2005-07-13 03:49:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6027','2005-07-11 02:26:29.000','4536','513','2005-07-18 23:05:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6028','2005-07-11 02:31:44.000','784','450','2005-07-14 03:18:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6029','2005-07-11 02:36:46.000','2030','520','2005-07-14 20:51:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6030','2005-07-11 02:37:51.000','95','36','2005-07-16 22:34:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6031','2005-07-11 02:42:14.000','1530','224','2005-07-14 03:24:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6032','2005-07-11 02:49:01.000','3792','28','2005-07-18 05:05:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6033','2005-07-11 02:59:34.000','2819','322','2005-07-16 03:48:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6034','2005-07-11 03:00:50.000','1735','324','2005-07-16 06:19:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6035','2005-07-11 03:01:45.000','3474','176','2005-07-14 01:04:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6036','2005-07-11 03:02:28.000','2553','297','2005-07-15 22:12:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6037','2005-07-11 03:06:54.000','1886','386','2005-07-12 22:46:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6038','2005-07-11 03:10:37.000','1555','243','2005-07-19 05:14:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6039','2005-07-11 03:12:19.000','1776','137','2005-07-19 05:46:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6040','2005-07-11 03:14:26.000','2161','511','2005-07-14 01:12:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6041','2005-07-11 03:14:58.000','2815','551','2005-07-13 00:48:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6042','2005-07-11 03:17:04.000','2153','5','2005-07-19 07:08:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6043','2005-07-11 03:18:10.000','3303','430','2005-07-12 05:50:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6044','2005-07-11 03:18:39.000','1270','481','2005-07-13 06:58:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6045','2005-07-11 03:21:05.000','2003','39','2005-07-17 23:10:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6046','2005-07-11 03:21:49.000','1935','569','2005-07-19 23:58:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6047','2005-07-11 03:27:01.000','4147','235','2005-07-16 06:42:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6048','2005-07-11 03:32:23.000','975','154','2005-07-14 07:39:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6049','2005-07-11 03:32:32.000','2582','236','2005-07-15 06:57:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6050','2005-07-11 03:34:29.000','825','527','2005-07-15 02:55:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6051','2005-07-11 03:46:41.000','2675','435','2005-07-11 22:36:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6052','2005-07-11 03:51:27.000','881','75','2005-07-16 02:55:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6053','2005-07-11 03:51:59.000','2836','237','2005-07-19 09:13:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6054','2005-07-11 03:58:39.000','1176','354','2005-07-13 23:08:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6055','2005-07-11 03:59:08.000','595','125','2005-07-18 05:35:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6056','2005-07-11 04:01:27.000','3069','145','2005-07-12 04:14:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6057','2005-07-11 04:03:40.000','1340','187','2005-07-17 01:34:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6058','2005-07-11 04:03:51.000','3761','498','2005-07-14 03:52:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6059','2005-07-11 04:03:54.000','1437','394','2005-07-18 01:35:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6060','2005-07-11 04:06:17.000','3146','342','2005-07-12 03:05:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6061','2005-07-11 04:06:25.000','1859','392','2005-07-11 23:11:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6062','2005-07-11 04:11:58.000','3301','408','2005-07-15 05:00:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6063','2005-07-11 04:16:51.000','1715','519','2005-07-13 08:35:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6064','2005-07-11 04:23:18.000','265','297','2005-07-19 02:21:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6065','2005-07-11 04:25:51.000','1007','562','2005-07-17 08:19:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6066','2005-07-11 04:32:42.000','1877','155','2005-07-15 03:56:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6067','2005-07-11 04:34:49.000','2097','186','2005-07-16 09:33:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6068','2005-07-11 04:41:09.000','2331','265','2005-07-14 04:45:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6069','2005-07-11 04:44:59.000','256','553','2005-07-13 01:00:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6070','2005-07-11 04:47:42.000','1679','267','2005-07-13 01:49:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6071','2005-07-11 04:50:03.000','889','179','2005-07-19 23:52:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6072','2005-07-11 04:52:40.000','1790','339','2005-07-18 01:02:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6073','2005-07-11 04:54:31.000','4243','466','2005-07-20 07:23:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6074','2005-07-11 04:59:56.000','2876','259','2005-07-13 23:31:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6075','2005-07-11 05:03:03.000','2160','283','2005-07-12 01:28:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6076','2005-07-11 05:05:30.000','1792','143','2005-07-18 04:22:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6077','2005-07-11 05:06:08.000','2154','542','2005-07-16 10:29:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6078','2005-07-11 05:06:52.000','3985','91','2005-07-17 06:13:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6079','2005-07-11 05:07:14.000','1494','119','2005-07-17 08:45:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6080','2005-07-11 05:08:11.000','2682','115','2005-07-16 09:54:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6081','2005-07-11 05:11:09.000','2286','72','2005-07-13 05:33:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6082','2005-07-11 05:12:41.000','1091','82','2005-07-16 03:40:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6083','2005-07-11 05:12:49.000','3183','285','2005-07-15 00:46:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6084','2005-07-11 05:16:20.000','1334','479','2005-07-19 01:38:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6085','2005-07-11 05:24:36.000','312','155','2005-07-16 03:49:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6086','2005-07-11 05:29:03.000','1505','420','2005-07-16 01:17:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6087','2005-07-11 05:29:22.000','198','155','2005-07-12 23:33:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6088','2005-07-11 05:40:35.000','3796','498','2005-07-17 07:14:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6089','2005-07-11 05:45:59.000','3298','580','2005-07-17 11:04:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6090','2005-07-11 05:47:08.000','71','241','2005-07-20 07:52:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6091','2005-07-11 05:49:18.000','580','383','2005-07-15 07:26:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6092','2005-07-11 05:51:31.000','2129','75','2005-07-17 03:42:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6093','2005-07-11 05:52:50.000','1868','117','2005-07-20 11:45:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6094','2005-07-11 05:54:42.000','2684','285','2005-07-18 08:19:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6095','2005-07-11 06:06:41.000','727','501','2005-07-19 06:14:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6096','2005-07-11 06:18:04.000','2720','420','2005-07-14 01:15:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6097','2005-07-11 06:21:43.000','297','416','2005-07-16 10:04:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6098','2005-07-11 06:23:28.000','3016','525','2005-07-17 04:05:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6099','2005-07-11 06:24:44.000','3865','469','2005-07-15 08:03:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6100','2005-07-11 06:40:31.000','3485','16','2005-07-14 10:59:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6101','2005-07-11 06:50:33.000','2618','508','2005-07-18 01:52:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6102','2005-07-11 06:53:09.000','4305','146','2005-07-17 07:05:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6103','2005-07-11 06:59:55.000','262','540','2005-07-16 09:30:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6104','2005-07-11 07:01:35.000','3531','389','2005-07-17 02:29:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6105','2005-07-11 07:03:19.000','3501','595','2005-07-19 06:46:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6106','2005-07-11 07:05:06.000','2714','185','2005-07-20 09:27:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6107','2005-07-11 07:07:09.000','3798','304','2005-07-14 07:32:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6108','2005-07-11 07:19:24.000','4296','572','2005-07-13 12:38:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6109','2005-07-11 07:20:57.000','3603','163','2005-07-13 07:29:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6110','2005-07-11 07:23:47.000','541','405','2005-07-20 03:17:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6111','2005-07-11 07:26:57.000','3504','300','2005-07-13 10:43:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6112','2005-07-11 07:28:05.000','1311','366','2005-07-18 07:29:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6113','2005-07-11 07:31:08.000','4437','115','2005-07-20 11:01:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6114','2005-07-11 07:33:48.000','479','404','2005-07-18 06:13:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6115','2005-07-11 07:36:50.000','3415','27','2005-07-13 11:30:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6116','2005-07-11 07:37:38.000','247','381','2005-07-14 11:53:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6117','2005-07-11 07:39:38.000','2613','135','2005-07-18 12:07:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6118','2005-07-11 07:43:08.000','3013','13','2005-07-20 03:17:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6119','2005-07-11 07:44:46.000','4281','472','2005-07-20 04:41:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6120','2005-07-11 07:49:53.000','3299','268','2005-07-19 04:56:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6121','2005-07-11 07:55:27.000','1613','347','2005-07-16 03:43:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6122','2005-07-11 07:58:07.000','2212','32','2005-07-16 09:52:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6123','2005-07-11 08:02:27.000','1354','200','2005-07-15 08:58:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6124','2005-07-11 08:02:32.000','2022','368','2005-07-12 05:58:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6125','2005-07-11 08:03:35.000','2439','307','2005-07-18 12:46:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6126','2005-07-11 08:06:56.000','1069','230','2005-07-16 11:42:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6127','2005-07-11 08:06:59.000','285','355','2005-07-12 09:01:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6128','2005-07-11 08:15:08.000','2050','18','2005-07-13 03:36:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6129','2005-07-11 08:15:09.000','3875','222','2005-07-18 13:00:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6130','2005-07-11 08:19:56.000','2547','538','2005-07-16 12:02:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6131','2005-07-11 08:22:05.000','3313','107','2005-07-14 07:40:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6132','2005-07-11 08:24:44.000','3229','319','2005-07-13 06:41:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6133','2005-07-11 08:25:22.000','1992','107','2005-07-13 13:17:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6134','2005-07-11 08:28:19.000','3225','305','2005-07-18 09:20:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6135','2005-07-11 08:32:23.000','833','325','2005-07-17 08:43:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6136','2005-07-11 08:34:09.000','205','346','2005-07-14 06:11:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6137','2005-07-11 08:34:20.000','2029','67','2005-07-13 03:31:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6138','2005-07-11 08:36:04.000','1808','438','2005-07-13 10:30:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6139','2005-07-11 08:39:33.000','3065','206','2005-07-17 08:00:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6140','2005-07-11 08:40:47.000','2749','363','2005-07-14 07:26:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6141','2005-07-11 08:52:16.000','2279','228','2005-07-17 03:00:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6142','2005-07-11 08:54:09.000','1722','136','2005-07-18 05:23:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6143','2005-07-11 09:02:37.000','1030','169','2005-07-19 05:57:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6144','2005-07-11 09:02:53.000','1077','554','2005-07-15 10:58:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6145','2005-07-11 09:07:01.000','1359','540','2005-07-19 08:21:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6146','2005-07-11 09:09:59.000','3374','11','2005-07-20 11:42:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6147','2005-07-11 09:13:08.000','910','35','2005-07-17 03:48:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6148','2005-07-11 09:14:22.000','4318','410','2005-07-12 08:01:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6149','2005-07-11 09:19:31.000','4337','26','2005-07-17 14:45:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6150','2005-07-11 09:23:56.000','1110','418','2005-07-15 10:56:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6151','2005-07-11 09:25:17.000','352','476','2005-07-12 05:11:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6152','2005-07-11 09:25:52.000','560','361','2005-07-17 07:40:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6153','2005-07-11 09:31:04.000','105','47','2005-07-19 03:41:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6154','2005-07-11 09:32:19.000','2717','368','2005-07-16 15:10:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6155','2005-07-11 09:45:31.000','785','229','2005-07-18 08:09:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6156','2005-07-11 09:45:48.000','302','297','2005-07-15 04:51:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6157','2005-07-11 09:48:16.000','4481','133','2005-07-16 05:00:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6158','2005-07-11 09:50:24.000','3954','92','2005-07-13 04:49:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6159','2005-07-11 09:55:34.000','126','225','2005-07-13 10:01:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6160','2005-07-11 10:08:13.000','2716','110','2005-07-14 08:18:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6161','2005-07-11 10:11:54.000','3681','524','2005-07-15 12:12:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6162','2005-07-11 10:12:30.000','786','79','2005-07-19 06:02:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6163','2005-07-11 10:13:46.000','1330','1','2005-07-19 13:15:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6164','2005-07-11 10:16:23.000','2755','47','2005-07-14 11:21:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6165','2005-07-11 10:17:29.000','3540','9','2005-07-17 07:27:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6166','2005-07-11 10:19:05.000','967','503','2005-07-12 14:30:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6167','2005-07-11 10:21:21.000','3255','200','2005-07-14 15:38:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6168','2005-07-11 10:21:38.000','284','77','2005-07-14 09:55:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6169','2005-07-11 10:25:56.000','2781','148','2005-07-19 07:18:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6170','2005-07-11 10:29:21.000','278','580','2005-07-16 05:13:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6171','2005-07-11 10:29:35.000','448','491','2005-07-16 12:01:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6172','2005-07-11 10:32:09.000','3514','219','2005-07-14 16:23:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6173','2005-07-11 10:33:11.000','4252','419','2005-07-15 10:57:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6174','2005-07-11 10:36:28.000','3123','7','2005-07-18 16:19:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6175','2005-07-11 10:44:37.000','3037','195','2005-07-15 08:13:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6176','2005-07-11 10:48:21.000','2969','279','2005-07-12 15:54:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6177','2005-07-11 10:53:49.000','313','589','2005-07-17 14:54:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6178','2005-07-11 10:59:09.000','2777','91','2005-07-16 11:19:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6179','2005-07-11 10:59:59.000','3665','42','2005-07-17 06:02:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6180','2005-07-11 11:06:50.000','4401','351','2005-07-19 09:03:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6181','2005-07-11 11:10:11.000','4398','200','2005-07-15 09:33:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6182','2005-07-11 11:11:38.000','2562','540','2005-07-17 08:33:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6183','2005-07-11 11:14:35.000','856','402','2005-07-16 15:35:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6184','2005-07-11 11:19:21.000','1131','146','2005-07-19 07:35:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6185','2005-07-11 11:25:09.000','4331','294','2005-07-18 12:09:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6186','2005-07-11 11:26:41.000','2086','128','2005-07-17 12:02:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6187','2005-07-11 11:28:51.000','3344','500','2005-07-12 15:44:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6188','2005-07-11 11:31:47.000','189','114','2005-07-15 09:28:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6189','2005-07-11 11:36:03.000','3800','552','2005-07-20 15:33:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6190','2005-07-11 11:36:18.000','2564','321','2005-07-19 17:05:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6191','2005-07-11 11:37:52.000','3448','480','2005-07-17 12:45:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6192','2005-07-11 11:44:41.000','4573','314','2005-07-19 10:12:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6193','2005-07-11 11:46:57.000','465','189','2005-07-19 14:11:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6194','2005-07-11 11:51:00.000','1049','83','2005-07-15 12:34:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6195','2005-07-11 12:00:32.000','4193','319','2005-07-16 15:00:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6196','2005-07-11 12:05:46.000','995','429','2005-07-18 08:27:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6197','2005-07-11 12:09:51.000','4156','596','2005-07-12 06:15:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6198','2005-07-11 12:12:17.000','3345','470','2005-07-18 07:40:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6199','2005-07-11 12:16:03.000','4329','80','2005-07-18 15:33:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6200','2005-07-11 12:16:42.000','3258','137','2005-07-17 09:27:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6201','2005-07-11 12:18:07.000','4530','559','2005-07-12 12:11:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6202','2005-07-11 12:24:25.000','1424','373','2005-07-18 08:13:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6203','2005-07-11 12:28:57.000','1001','408','2005-07-15 14:10:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6204','2005-07-11 12:29:22.000','2572','362','2005-07-13 10:41:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6205','2005-07-11 12:31:24.000','3442','303','2005-07-13 11:31:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6206','2005-07-11 12:32:14.000','1368','459','2005-07-15 15:01:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6207','2005-07-11 12:34:24.000','3226','143','2005-07-14 10:15:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6208','2005-07-11 12:34:56.000','672','31','2005-07-19 15:17:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6209','2005-07-11 12:36:05.000','3091','219','2005-07-17 14:48:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6210','2005-07-11 12:36:43.000','931','209','2005-07-17 17:45:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6211','2005-07-11 12:39:01.000','2699','6','2005-07-20 15:59:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6212','2005-07-11 12:40:48.000','3962','337','2005-07-15 17:49:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6213','2005-07-11 12:43:07.000','485','23','2005-07-16 07:23:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6214','2005-07-11 12:49:48.000','1258','49','2005-07-18 07:41:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6215','2005-07-11 12:52:36.000','316','390','2005-07-12 08:33:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6216','2005-07-11 12:57:05.000','3571','387','2005-07-13 12:31:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6217','2005-07-11 13:13:45.000','1090','177','2005-07-19 16:37:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6218','2005-07-11 13:14:58.000','815','410','2005-07-16 08:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6219','2005-07-11 13:18:37.000','38','303','2005-07-13 13:18:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6220','2005-07-11 13:22:06.000','1717','421','2005-07-12 17:46:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6221','2005-07-11 13:24:27.000','1699','393','2005-07-15 17:51:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6222','2005-07-11 13:25:49.000','2066','386','2005-07-13 14:32:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6223','2005-07-11 13:27:09.000','3754','192','2005-07-12 14:02:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6224','2005-07-11 13:42:18.000','3274','475','2005-07-16 09:28:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6225','2005-07-11 13:45:14.000','2483','204','2005-07-14 10:23:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6226','2005-07-11 13:48:11.000','2758','134','2005-07-15 17:18:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6227','2005-07-11 13:56:46.000','1654','210','2005-07-18 12:53:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6228','2005-07-11 13:58:36.000','2281','367','2005-07-17 19:03:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6229','2005-07-11 13:59:50.000','3137','399','2005-07-20 09:26:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6230','2005-07-11 14:02:19.000','2260','490','2005-07-17 08:11:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6231','2005-07-11 14:02:36.000','2526','122','2005-07-13 19:04:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6232','2005-07-11 14:08:27.000','2492','590','2005-07-20 19:34:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6233','2005-07-11 14:10:47.000','3731','378','2005-07-15 15:13:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6234','2005-07-11 14:16:10.000','2911','232','2005-07-19 19:55:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6235','2005-07-11 14:17:51.000','2659','379','2005-07-17 11:14:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6236','2005-07-11 14:18:17.000','3813','338','2005-07-14 08:47:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6237','2005-07-11 14:19:12.000','2215','166','2005-07-15 15:05:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6238','2005-07-11 14:20:18.000','3749','23','2005-07-14 18:34:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6239','2005-07-11 14:20:48.000','4107','132','2005-07-17 13:41:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6240','2005-07-11 14:32:41.000','640','524','2005-07-20 18:38:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6241','2005-07-11 14:40:48.000','4449','74','2005-07-18 09:51:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6242','2005-07-11 14:45:04.000','670','245','2005-07-12 18:34:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6243','2005-07-11 14:53:25.000','3456','26','2005-07-15 09:26:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6244','2005-07-11 14:53:38.000','1558','383','2005-07-12 16:42:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6245','2005-07-11 14:56:57.000','512','241','2005-07-16 14:35:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6246','2005-07-11 14:57:51.000','2376','172','2005-07-19 19:10:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6247','2005-07-11 15:00:05.000','2504','589','2005-07-18 13:47:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6248','2005-07-11 15:01:54.000','2686','6','2005-07-19 16:58:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6249','2005-07-11 15:02:02.000','4334','30','2005-07-14 11:37:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6250','2005-07-11 15:02:04.000','4087','458','2005-07-17 10:54:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6251','2005-07-11 15:06:20.000','3956','230','2005-07-18 20:11:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6252','2005-07-11 15:06:29.000','1294','295','2005-07-16 14:07:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6253','2005-07-11 15:07:19.000','1425','570','2005-07-13 11:00:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6254','2005-07-11 15:10:18.000','2038','20','2005-07-17 14:20:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6255','2005-07-11 15:11:33.000','1459','319','2005-07-15 19:55:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6256','2005-07-11 15:19:22.000','480','307','2005-07-13 12:43:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6257','2005-07-11 15:23:46.000','3253','492','2005-07-14 17:26:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6258','2005-07-11 15:24:32.000','632','417','2005-07-18 18:29:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6259','2005-07-11 15:25:52.000','3007','84','2005-07-13 11:54:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6260','2005-07-11 15:26:29.000','4308','454','2005-07-13 17:37:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6261','2005-07-11 15:28:34.000','694','386','2005-07-14 17:54:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6262','2005-07-11 15:33:24.000','4136','355','2005-07-17 12:40:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6263','2005-07-11 15:33:50.000','2391','336','2005-07-17 12:49:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6264','2005-07-11 15:42:35.000','4246','565','2005-07-12 11:29:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6265','2005-07-11 15:43:51.000','3931','477','2005-07-12 12:51:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6266','2005-07-11 15:45:39.000','941','397','2005-07-15 18:29:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6267','2005-07-11 15:53:00.000','2152','20','2005-07-17 18:09:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6268','2005-07-11 15:55:34.000','1154','125','2005-07-19 17:25:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6269','2005-07-11 15:58:43.000','3915','167','2005-07-13 13:25:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6270','2005-07-11 15:59:10.000','2308','292','2005-07-18 10:29:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6271','2005-07-11 16:01:35.000','1246','467','2005-07-20 12:07:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6272','2005-07-11 16:03:49.000','3103','240','2005-07-15 19:54:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6273','2005-07-11 16:08:41.000','2403','152','2005-07-14 16:41:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6274','2005-07-11 16:09:42.000','2998','472','2005-07-19 20:46:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6275','2005-07-11 16:12:11.000','3599','333','2005-07-17 20:19:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6276','2005-07-11 16:15:50.000','1826','284','2005-07-19 20:50:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6277','2005-07-11 16:19:01.000','4023','92','2005-07-18 21:00:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6278','2005-07-11 16:20:02.000','2232','558','2005-07-19 19:29:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6279','2005-07-11 16:26:07.000','1254','49','2005-07-17 21:05:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6280','2005-07-11 16:36:17.000','4055','33','2005-07-13 14:04:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6281','2005-07-11 16:38:16.000','835','236','2005-07-13 10:57:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6282','2005-07-11 16:46:22.000','4453','60','2005-07-15 13:19:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6283','2005-07-11 16:47:32.000','3319','402','2005-07-17 21:46:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6284','2005-07-11 16:51:39.000','2938','177','2005-07-15 19:59:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6285','2005-07-11 16:52:07.000','2140','444','2005-07-13 21:33:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6286','2005-07-11 16:55:35.000','1070','140','2005-07-13 22:51:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6287','2005-07-11 17:00:04.000','35','93','2005-07-12 13:16:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6288','2005-07-11 17:01:52.000','3235','357','2005-07-19 15:11:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6289','2005-07-11 17:06:39.000','3185','99','2005-07-12 15:54:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6290','2005-07-11 17:12:42.000','2634','66','2005-07-19 21:53:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6291','2005-07-11 17:16:40.000','3126','262','2005-07-13 18:24:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6292','2005-07-11 17:23:33.000','4375','505','2005-07-12 16:27:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6293','2005-07-11 17:24:57.000','4260','471','2005-07-13 18:45:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6294','2005-07-11 17:25:55.000','1732','463','2005-07-15 17:48:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6295','2005-07-11 17:30:58.000','1393','7','2005-07-15 15:50:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6296','2005-07-11 17:34:04.000','4202','484','2005-07-17 21:12:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6297','2005-07-11 17:37:22.000','2738','69','2005-07-19 13:54:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6298','2005-07-11 17:42:33.000','3906','256','2005-07-13 18:14:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6299','2005-07-11 17:45:08.000','4125','324','2005-07-13 16:36:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6300','2005-07-11 17:50:09.000','1269','283','2005-07-18 13:11:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6301','2005-07-11 17:54:09.000','3528','275','2005-07-18 20:42:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6302','2005-07-11 17:55:38.000','3221','391','2005-07-17 22:11:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6303','2005-07-11 17:55:43.000','846','236','2005-07-13 12:50:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6304','2005-07-11 18:02:16.000','4183','579','2005-07-14 14:01:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6305','2005-07-11 18:02:25.000','1544','337','2005-07-20 13:29:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6306','2005-07-11 18:04:26.000','486','208','2005-07-20 14:22:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6307','2005-07-11 18:04:29.000','4029','345','2005-07-17 23:40:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6308','2005-07-11 18:08:41.000','3155','472','2005-07-19 15:48:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6309','2005-07-11 18:13:24.000','1054','232','2005-07-13 23:11:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6310','2005-07-11 18:14:05.000','3064','537','2005-07-16 15:39:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6311','2005-07-11 18:18:52.000','1789','373','2005-07-16 17:52:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6312','2005-07-11 18:19:02.000','2188','417','2005-07-18 00:00:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6313','2005-07-11 18:29:52.000','2976','283','2005-07-14 21:34:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6314','2005-07-11 18:32:44.000','4128','55','2005-07-17 23:58:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6315','2005-07-11 18:42:49.000','608','374','2005-07-12 23:19:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6316','2005-07-11 18:44:52.000','1910','526','2005-07-19 23:35:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6317','2005-07-11 18:47:41.000','4206','225','2005-07-14 18:18:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6318','2005-07-11 18:48:22.000','2048','425','2005-07-12 13:39:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6319','2005-07-11 18:50:45.000','3739','233','2005-07-12 15:26:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6320','2005-07-11 18:50:55.000','441','511','2005-07-13 22:46:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6321','2005-07-11 18:51:02.000','2655','388','2005-07-14 20:57:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6322','2005-07-11 18:58:20.000','4115','403','2005-07-14 16:41:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6323','2005-07-11 19:02:19.000','1352','346','2005-07-14 15:54:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6324','2005-07-11 19:02:34.000','655','386','2005-07-17 15:57:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6325','2005-07-11 19:06:01.000','4556','542','2005-07-18 18:25:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6326','2005-07-11 19:06:55.000','2137','563','2005-07-12 20:41:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6327','2005-07-11 19:07:29.000','909','146','2005-07-15 16:09:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6328','2005-07-11 19:09:33.000','999','260','2005-07-12 20:16:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6329','2005-07-11 19:10:38.000','2763','352','2005-07-19 14:46:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6330','2005-07-11 19:15:42.000','3917','119','2005-07-17 19:10:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6331','2005-07-11 19:17:21.000','1356','295','2005-07-18 18:35:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6332','2005-07-11 19:19:06.000','1733','538','2005-07-13 13:51:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6333','2005-07-11 19:20:16.000','2610','285','2005-07-17 15:33:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6334','2005-07-11 19:20:44.000','948','168','2005-07-19 18:49:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6335','2005-07-11 19:25:15.000','2757','396','2005-07-16 17:02:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6336','2005-07-11 19:30:13.000','1229','471','2005-07-20 21:27:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6337','2005-07-11 19:30:47.000','3967','47','2005-07-19 20:27:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6338','2005-07-11 19:39:41.000','1691','54','2005-07-18 01:13:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6339','2005-07-11 19:45:32.000','2401','145','2005-07-18 22:34:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6340','2005-07-11 19:46:05.000','2374','264','2005-07-20 16:51:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6341','2005-07-11 19:48:02.000','3580','448','2005-07-15 01:31:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6342','2005-07-11 19:48:24.000','1851','403','2005-07-13 14:09:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6343','2005-07-11 19:51:35.000','513','147','2005-07-12 19:13:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6344','2005-07-11 20:04:43.000','3074','78','2005-07-18 14:35:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6345','2005-07-11 20:05:18.000','4332','532','2005-07-20 17:28:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6346','2005-07-11 20:08:34.000','4066','445','2005-07-16 16:35:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6347','2005-07-11 20:18:53.000','3160','178','2005-07-16 20:45:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6348','2005-07-11 20:21:18.000','21','66','2005-07-19 15:56:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6349','2005-07-11 20:25:05.000','1581','216','2005-07-21 00:35:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6350','2005-07-11 20:30:15.000','2853','225','2005-07-16 21:30:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6351','2005-07-11 20:31:44.000','1852','507','2005-07-18 17:16:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6352','2005-07-11 20:34:13.000','1143','235','2005-07-13 19:49:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6353','2005-07-11 20:48:56.000','699','130','2005-07-21 00:11:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6354','2005-07-11 20:54:27.000','3203','176','2005-07-18 23:46:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6355','2005-07-11 20:56:29.000','2472','482','2005-07-20 01:50:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6356','2005-07-11 20:57:48.000','2645','149','2005-07-12 22:40:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6357','2005-07-11 20:58:51.000','658','252','2005-07-12 15:06:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6358','2005-07-11 21:03:12.000','4527','567','2005-07-15 20:06:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6359','2005-07-11 21:06:17.000','1656','30','2005-07-16 02:51:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6360','2005-07-11 21:07:40.000','3075','338','2005-07-16 15:11:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6361','2005-07-11 21:09:14.000','2903','561','2005-07-14 18:26:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6362','2005-07-11 21:09:31.000','4259','358','2005-07-13 23:08:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6363','2005-07-11 21:13:19.000','4167','344','2005-07-20 15:44:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6364','2005-07-11 21:14:48.000','4146','160','2005-07-20 23:20:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6365','2005-07-11 21:17:40.000','4550','566','2005-07-14 20:53:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6366','2005-07-11 21:18:16.000','3989','366','2005-07-17 00:21:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6367','2005-07-11 21:18:29.000','1465','357','2005-07-15 01:05:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6368','2005-07-11 21:19:01.000','3666','588','2005-07-13 17:56:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6369','2005-07-11 21:23:36.000','1086','252','2005-07-13 22:23:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6370','2005-07-11 21:28:32.000','1410','99','2005-07-20 02:51:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6371','2005-07-11 21:31:51.000','4297','265','2005-07-16 23:10:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6372','2005-07-11 21:35:06.000','741','64','2005-07-15 02:30:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6373','2005-07-11 21:35:20.000','1042','115','2005-07-13 23:22:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6374','2005-07-11 21:36:10.000','266','244','2005-07-17 15:50:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6375','2005-07-11 21:39:46.000','1936','8','2005-07-18 02:12:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6376','2005-07-11 21:40:23.000','1834','263','2005-07-13 23:16:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6377','2005-07-11 21:41:16.000','4017','118','2005-07-15 20:05:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6378','2005-07-11 21:45:23.000','3170','145','2005-07-14 16:56:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6379','2005-07-11 21:51:25.000','522','287','2005-07-17 03:38:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6380','2005-07-11 21:55:40.000','3378','172','2005-07-17 20:42:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6381','2005-07-11 21:58:48.000','2584','340','2005-07-16 16:18:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6382','2005-07-11 21:58:53.000','3223','336','2005-07-17 21:18:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6383','2005-07-11 22:06:53.000','4275','486','2005-07-17 16:09:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6384','2005-07-11 22:07:26.000','491','313','2005-07-16 22:39:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6385','2005-07-11 22:07:32.000','1830','69','2005-07-20 16:57:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6386','2005-07-11 22:14:57.000','633','593','2005-07-15 16:41:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6387','2005-07-11 22:15:56.000','1726','384','2005-07-14 20:20:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6388','2005-07-11 22:17:16.000','3506','525','2005-07-19 23:50:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6389','2005-07-11 22:18:20.000','2268','274','2005-07-16 16:57:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6390','2005-07-11 22:19:23.000','3057','77','2005-07-15 20:10:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6391','2005-07-11 22:23:09.000','1745','264','2005-07-15 23:02:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6392','2005-07-11 22:25:19.000','4406','468','2005-07-16 04:24:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6393','2005-07-11 22:28:12.000','3802','164','2005-07-14 18:03:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6394','2005-07-11 22:29:15.000','2574','52','2005-07-20 02:19:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6395','2005-07-11 22:29:29.000','3058','264','2005-07-18 00:50:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6396','2005-07-11 22:31:08.000','2394','507','2005-07-19 17:19:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6397','2005-07-11 22:34:02.000','2423','287','2005-07-13 23:01:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6398','2005-07-11 22:34:49.000','1409','296','2005-07-17 17:58:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6399','2005-07-11 22:39:05.000','2031','288','2005-07-16 01:12:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6400','2005-07-11 22:43:44.000','3289','536','2005-07-19 03:58:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6401','2005-07-11 22:44:34.000','1427','35','2005-07-12 22:18:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6402','2005-07-11 22:46:10.000','2576','66','2005-07-16 04:02:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6403','2005-07-11 22:46:25.000','1019','238','2005-07-13 22:15:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6404','2005-07-11 22:49:50.000','1183','526','2005-07-14 18:29:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6405','2005-07-11 22:53:12.000','3983','357','2005-07-18 23:02:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6406','2005-07-11 22:55:27.000','4439','392','2005-07-20 04:50:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6407','2005-07-11 23:02:19.000','775','140','2005-07-21 00:30:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6408','2005-07-11 23:03:02.000','2008','350','2005-07-19 23:09:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6409','2005-07-11 23:05:49.000','3859','537','2005-07-13 00:13:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6410','2005-07-11 23:08:06.000','1127','560','2005-07-19 19:57:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6411','2005-07-11 23:10:50.000','4347','124','2005-07-19 17:15:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6412','2005-07-11 23:19:21.000','3797','220','2005-07-16 19:48:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6413','2005-07-11 23:26:11.000','4446','251','2005-07-17 21:58:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6414','2005-07-11 23:26:13.000','814','502','2005-07-18 17:29:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6415','2005-07-11 23:27:52.000','4175','84','2005-07-19 22:29:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6416','2005-07-11 23:29:14.000','1063','158','2005-07-13 20:20:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6417','2005-07-11 23:35:11.000','3042','80','2005-07-18 20:00:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6418','2005-07-11 23:36:27.000','3101','185','2005-07-16 18:42:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6419','2005-07-11 23:36:38.000','3683','311','2005-07-13 03:23:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6420','2005-07-11 23:38:49.000','4443','206','2005-07-17 17:46:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6421','2005-07-11 23:45:25.000','4477','479','2005-07-15 20:45:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6422','2005-07-11 23:46:19.000','762','257','2005-07-20 22:12:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6423','2005-07-11 23:47:31.000','892','427','2005-07-19 18:16:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6424','2005-07-11 23:49:37.000','3040','359','2005-07-21 00:53:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6425','2005-07-11 23:54:52.000','2487','339','2005-07-13 18:37:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6426','2005-07-11 23:56:38.000','498','495','2005-07-21 05:22:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6427','2005-07-11 23:57:34.000','1043','122','2005-07-14 18:05:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6428','2005-07-12 00:01:51.000','4365','187','2005-07-20 22:02:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6429','2005-07-12 00:02:50.000','141','342','2005-07-21 02:08:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6430','2005-07-12 00:03:34.000','178','390','2005-07-15 03:11:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6431','2005-07-12 00:03:57.000','3471','458','2005-07-20 03:47:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6432','2005-07-12 00:09:41.000','970','293','2005-07-20 20:06:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6433','2005-07-12 00:12:02.000','1357','101','2005-07-21 04:25:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6434','2005-07-12 00:14:25.000','1478','102','2005-07-20 19:54:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6435','2005-07-12 00:16:19.000','1957','561','2005-07-17 19:15:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6436','2005-07-12 00:18:42.000','3758','122','2005-07-13 03:57:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6437','2005-07-12 00:20:29.000','4539','355','2005-07-12 22:26:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6438','2005-07-12 00:23:01.000','412','211','2005-07-17 22:45:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6439','2005-07-12 00:23:48.000','3463','406','2005-07-13 00:54:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6440','2005-07-12 00:25:04.000','2148','269','2005-07-13 04:52:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6441','2005-07-12 00:27:08.000','2489','505','2005-07-14 03:12:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6442','2005-07-12 00:29:45.000','1273','360','2005-07-15 19:37:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6443','2005-07-12 00:35:51.000','895','155','2005-07-16 04:50:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6444','2005-07-12 00:36:02.000','2214','168','2005-07-18 05:53:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6445','2005-07-12 00:37:02.000','582','385','2005-07-17 22:05:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6446','2005-07-12 00:44:08.000','3634','473','2005-07-14 20:39:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6447','2005-07-12 00:45:17.000','3945','482','2005-07-18 05:56:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6448','2005-07-12 00:45:59.000','2663','160','2005-07-17 00:34:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6449','2005-07-12 00:48:58.000','4395','117','2005-07-21 02:57:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6450','2005-07-12 00:49:05.000','2413','32','2005-07-13 01:54:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6451','2005-07-12 00:52:19.000','1008','381','2005-07-16 21:30:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6452','2005-07-12 00:57:31.000','109','388','2005-07-14 20:41:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6453','2005-07-12 00:59:53.000','2506','169','2005-07-14 19:17:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6454','2005-07-12 01:00:12.000','4028','446','2005-07-16 22:12:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6455','2005-07-12 01:01:58.000','4267','277','2005-07-16 02:42:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6456','2005-07-12 01:05:11.000','259','387','2005-07-20 23:26:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6457','2005-07-12 01:06:35.000','2970','64','2005-07-14 03:27:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6458','2005-07-12 01:08:52.000','2809','138','2005-07-16 20:22:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6459','2005-07-12 01:12:03.000','4025','557','2005-07-15 23:48:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6460','2005-07-12 01:13:44.000','2402','371','2005-07-17 04:51:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6461','2005-07-12 01:14:03.000','1799','135','2005-07-19 21:12:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6462','2005-07-12 01:15:24.000','4534','414','2005-07-19 05:11:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6463','2005-07-12 01:16:11.000','2930','391','2005-07-13 01:37:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6464','2005-07-12 01:16:40.000','3100','303','2005-07-20 00:53:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6465','2005-07-12 01:17:11.000','2047','207','2005-07-20 00:29:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6466','2005-07-12 01:21:03.000','3369','235','2005-07-14 04:05:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6467','2005-07-12 01:22:03.000','2067','457','2005-07-20 04:37:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6468','2005-07-12 01:27:09.000','4560','541','2005-07-20 00:37:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6469','2005-07-12 01:29:27.000','3830','147','2005-07-16 20:22:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6470','2005-07-12 01:29:41.000','1680','240','2005-07-15 21:33:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6471','2005-07-12 01:31:06.000','2253','397','2005-07-13 05:26:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6472','2005-07-12 01:33:25.000','3780','183','2005-07-15 20:26:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6473','2005-07-12 01:35:40.000','527','594','2005-07-20 20:11:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6474','2005-07-12 01:36:46.000','310','43','2005-07-16 07:24:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6475','2005-07-12 01:36:57.000','2035','74','2005-07-17 21:22:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6476','2005-07-12 01:37:48.000','978','28','2005-07-12 20:21:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6477','2005-07-12 01:38:42.000','804','181','2005-07-17 05:19:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6478','2005-07-12 01:41:44.000','2589','483','2005-07-15 20:48:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6479','2005-07-12 01:49:00.000','2587','558','2005-07-21 04:26:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6480','2005-07-12 01:49:29.000','3076','309','2005-07-17 01:00:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6481','2005-07-12 01:50:15.000','2392','128','2005-07-20 03:03:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6482','2005-07-12 01:50:21.000','4135','57','2005-07-14 06:49:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6483','2005-07-12 01:59:20.000','1053','263','2005-07-12 22:22:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6484','2005-07-12 02:04:10.000','4093','556','2005-07-17 23:18:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6485','2005-07-12 02:07:59.000','1224','319','2005-07-19 22:56:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6486','2005-07-12 02:09:36.000','4008','75','2005-07-14 03:04:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6487','2005-07-12 02:17:00.000','4000','277','2005-07-19 00:57:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6488','2005-07-12 02:20:09.000','3974','169','2005-07-20 00:53:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6489','2005-07-12 02:22:46.000','1821','268','2005-07-17 06:16:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6490','2005-07-12 02:28:03.000','2249','548','2005-07-19 03:06:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6491','2005-07-12 02:28:31.000','2803','415','2005-07-21 00:38:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6492','2005-07-12 02:28:40.000','466','590','2005-07-17 05:58:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6493','2005-07-12 02:40:41.000','16','184','2005-07-16 04:56:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6494','2005-07-12 02:42:51.000','1124','57','2005-07-20 06:57:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6495','2005-07-12 02:57:02.000','2440','19','2005-07-14 08:35:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6496','2005-07-12 02:57:39.000','3550','139','2005-07-20 01:43:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6497','2005-07-12 03:04:29.000','933','222','2005-07-17 21:36:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6498','2005-07-12 03:05:38.000','243','48','2005-07-19 07:12:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6499','2005-07-12 03:11:18.000','3165','474','2005-07-21 07:50:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6500','2005-07-12 03:11:23.000','4521','577','2005-07-13 00:51:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6501','2005-07-12 03:11:55.000','2851','219','2005-07-16 02:08:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6502','2005-07-12 03:15:45.000','1641','40','2005-07-17 08:47:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6503','2005-07-12 03:18:07.000','1319','120','2005-07-15 00:05:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6504','2005-07-12 03:19:14.000','3786','535','2005-07-17 01:13:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6505','2005-07-12 03:27:37.000','3986','415','2005-07-17 22:42:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6506','2005-07-12 03:28:22.000','386','423','2005-07-17 22:43:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6507','2005-07-12 03:33:12.000','2463','118','2005-07-20 03:56:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6508','2005-07-12 03:34:50.000','1474','597','2005-07-17 02:57:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6509','2005-07-12 03:35:01.000','2468','427','2005-07-13 06:50:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6510','2005-07-12 03:35:39.000','905','446','2005-07-21 01:41:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6511','2005-07-12 03:39:29.000','1350','322','2005-07-17 01:01:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6512','2005-07-12 03:42:49.000','1703','68','2005-07-13 05:01:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6513','2005-07-12 03:44:43.000','2671','393','2005-07-13 05:54:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6514','2005-07-12 03:47:44.000','3562','73','2005-07-20 00:11:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6515','2005-07-12 03:50:32.000','706','261','2005-07-15 03:54:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6516','2005-07-12 03:51:54.000','863','291','2005-07-14 03:41:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6517','2005-07-12 03:52:39.000','185','387','2005-07-20 08:00:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6518','2005-07-12 03:59:42.000','2698','288','2005-07-19 22:21:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6519','2005-07-12 04:00:36.000','4149','598','2005-07-19 01:15:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6520','2005-07-12 04:05:16.000','1535','270','2005-07-15 08:26:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6521','2005-07-12 04:06:11.000','3293','49','2005-07-21 05:50:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6522','2005-07-12 04:11:58.000','3916','142','2005-07-15 08:32:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6523','2005-07-12 04:14:19.000','1848','574','2005-07-17 00:38:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6524','2005-07-12 04:14:35.000','1467','376','2005-07-17 03:59:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6525','2005-07-12 04:17:15.000','1408','103','2005-07-18 23:11:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6526','2005-07-12 04:21:20.000','1718','225','2005-07-18 23:45:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6527','2005-07-12 04:23:06.000','538','65','2005-07-17 00:20:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6528','2005-07-12 04:29:44.000','3824','598','2005-07-18 02:39:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6529','2005-07-12 04:31:04.000','1058','503','2005-07-17 07:09:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6530','2005-07-12 04:33:19.000','3410','75','2005-07-15 08:26:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6531','2005-07-12 04:35:24.000','4231','510','2005-07-16 05:37:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6532','2005-07-12 04:38:32.000','2361','225','2005-07-13 03:54:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6533','2005-07-12 04:39:38.000','3853','366','2005-07-18 05:29:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6534','2005-07-12 04:39:43.000','2359','577','2005-07-16 06:33:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6535','2005-07-12 04:43:43.000','1921','446','2005-07-17 04:52:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6536','2005-07-12 04:44:25.000','3521','289','2005-07-18 01:52:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6537','2005-07-12 04:46:30.000','3381','207','2005-07-19 03:04:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6538','2005-07-12 04:50:26.000','1987','529','2005-07-20 23:44:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6539','2005-07-12 04:50:49.000','2275','259','2005-07-19 03:23:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6540','2005-07-12 04:51:13.000','937','156','2005-07-21 03:38:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6541','2005-07-12 04:53:41.000','1795','529','2005-07-17 23:17:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6542','2005-07-12 04:53:49.000','2421','359','2005-07-13 01:48:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6543','2005-07-12 04:54:32.000','2568','264','2005-07-15 09:50:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6544','2005-07-12 04:56:15.000','1218','97','2005-07-17 08:28:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6545','2005-07-12 04:56:30.000','4447','376','2005-07-20 05:41:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6546','2005-07-12 04:57:17.000','393','105','2005-07-17 09:29:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6547','2005-07-12 04:57:46.000','2656','262','2005-07-18 08:36:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6548','2005-07-12 05:00:46.000','2480','488','2005-07-19 04:40:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6549','2005-07-12 05:02:01.000','2688','493','2005-07-20 06:19:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6550','2005-07-12 05:03:14.000','2184','112','2005-07-19 04:06:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6551','2005-07-12 05:03:43.000','282','567','2005-07-13 10:44:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6552','2005-07-12 05:05:06.000','766','493','2005-07-13 05:12:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6553','2005-07-12 05:06:39.000','1137','265','2005-07-21 10:37:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6554','2005-07-12 05:07:26.000','2741','178','2005-07-21 06:06:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6555','2005-07-12 05:08:16.000','1282','188','2005-07-14 04:09:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6556','2005-07-12 05:10:16.000','3901','570','2005-07-13 04:16:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6557','2005-07-12 05:12:03.000','1442','116','2005-07-20 06:49:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6558','2005-07-12 05:16:07.000','2195','164','2005-07-13 05:32:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6559','2005-07-12 05:20:35.000','458','353','2005-07-16 08:44:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6560','2005-07-12 05:22:06.000','433','54','2005-07-15 00:04:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6561','2005-07-12 05:24:02.000','4568','528','2005-07-16 03:43:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6562','2005-07-12 05:26:26.000','3969','27','2005-07-16 05:10:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6563','2005-07-12 05:34:09.000','87','438','2005-07-21 07:37:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6564','2005-07-12 05:34:44.000','2320','210','2005-07-18 06:12:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6565','2005-07-12 05:39:50.000','2751','35','2005-07-13 01:07:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6566','2005-07-12 05:42:53.000','1822','178','2005-07-19 01:23:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6567','2005-07-12 05:43:09.000','1336','198','2005-07-19 08:18:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6568','2005-07-12 05:45:47.000','4203','13','2005-07-15 05:18:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6569','2005-07-12 05:47:40.000','759','183','2005-07-20 06:23:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6570','2005-07-12 05:50:31.000','2082','217','2005-07-13 09:58:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6571','2005-07-12 05:51:47.000','3700','140','2005-07-15 11:31:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6572','2005-07-12 05:56:38.000','3121','35','2005-07-16 10:41:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6573','2005-07-12 06:03:40.000','3308','239','2005-07-13 11:49:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6574','2005-07-12 06:04:22.000','621','115','2005-07-18 03:19:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6575','2005-07-12 06:12:53.000','1414','598','2005-07-18 07:55:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6576','2005-07-12 06:13:41.000','339','362','2005-07-16 03:22:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6577','2005-07-12 06:15:05.000','4191','439','2005-07-15 06:23:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6578','2005-07-12 06:15:41.000','2304','229','2005-07-15 10:43:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6580','2005-07-12 06:26:10.000','1543','31','2005-07-13 06:44:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6581','2005-07-12 06:26:49.000','2121','468','2005-07-14 05:07:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6582','2005-07-12 06:28:12.000','2077','420','2005-07-19 06:19:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6583','2005-07-12 06:42:31.000','2343','462','2005-07-15 07:51:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6584','2005-07-12 06:43:36.000','1800','472','2005-07-16 12:18:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6585','2005-07-12 06:50:52.000','2064','136','2005-07-21 06:51:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6586','2005-07-12 06:56:24.000','3860','93','2005-07-17 09:36:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6587','2005-07-12 06:56:26.000','238','419','2005-07-20 05:53:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6588','2005-07-12 06:57:40.000','1257','420','2005-07-16 04:27:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6589','2005-07-12 07:06:29.000','1595','424','2005-07-14 12:06:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6590','2005-07-12 07:08:21.000','1067','442','2005-07-18 06:16:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6591','2005-07-12 07:13:46.000','2846','509','2005-07-16 05:15:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6592','2005-07-12 07:19:35.000','3481','273','2005-07-19 07:15:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6593','2005-07-12 07:21:17.000','3441','356','2005-07-14 02:35:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6594','2005-07-12 07:25:43.000','4458','517','2005-07-13 07:59:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6595','2005-07-12 07:25:48.000','1286','458','2005-07-20 02:24:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6596','2005-07-12 07:32:59.000','890','409','2005-07-13 02:47:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6597','2005-07-12 07:37:02.000','979','479','2005-07-16 10:24:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6598','2005-07-12 07:38:25.000','2049','532','2005-07-19 07:58:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6599','2005-07-12 07:41:14.000','4348','519','2005-07-21 02:45:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6600','2005-07-12 07:41:48.000','3315','389','2005-07-18 12:36:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6601','2005-07-12 07:44:49.000','1640','464','2005-07-20 03:22:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6602','2005-07-12 07:50:24.000','2382','214','2005-07-20 03:25:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6603','2005-07-12 07:52:55.000','3583','425','2005-07-16 13:19:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6604','2005-07-12 07:57:45.000','822','365','2005-07-16 05:41:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6605','2005-07-12 08:01:07.000','2892','547','2005-07-19 03:12:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6606','2005-07-12 08:03:40.000','2805','178','2005-07-13 09:05:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6607','2005-07-12 08:08:50.000','337','562','2005-07-20 09:17:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6608','2005-07-12 08:16:50.000','3577','244','2005-07-18 07:08:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6609','2005-07-12 08:19:41.000','3332','133','2005-07-19 08:19:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6610','2005-07-12 08:20:02.000','645','353','2005-07-21 09:16:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6611','2005-07-12 08:20:23.000','1604','286','2005-07-16 07:19:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6612','2005-07-12 08:28:33.000','235','152','2005-07-17 06:25:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6613','2005-07-12 08:30:07.000','3421','460','2005-07-14 10:25:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6614','2005-07-12 08:33:49.000','3004','144','2005-07-18 07:28:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6615','2005-07-12 08:36:22.000','23','438','2005-07-20 09:03:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6616','2005-07-12 08:37:30.000','1833','179','2005-07-20 10:33:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6617','2005-07-12 08:39:56.000','2292','248','2005-07-14 09:32:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6618','2005-07-12 08:41:42.000','4266','327','2005-07-14 05:34:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6619','2005-07-12 08:50:48.000','4062','305','2005-07-14 11:54:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6620','2005-07-12 08:51:03.000','2362','337','2005-07-16 03:59:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6621','2005-07-12 08:57:30.000','2229','561','2005-07-14 09:47:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6622','2005-07-12 09:04:11.000','4350','325','2005-07-13 04:27:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6623','2005-07-12 09:05:34.000','4412','302','2005-07-19 13:54:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6624','2005-07-12 09:05:50.000','3946','335','2005-07-18 13:59:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6625','2005-07-12 09:06:40.000','735','443','2005-07-21 04:57:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6626','2005-07-12 09:16:24.000','2418','269','2005-07-17 04:06:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6627','2005-07-12 09:16:46.000','626','565','2005-07-17 10:58:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6628','2005-07-12 09:18:08.000','2894','211','2005-07-21 04:27:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6629','2005-07-12 09:18:35.000','2855','582','2005-07-20 11:34:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6630','2005-07-12 09:30:05.000','1843','462','2005-07-14 08:29:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6631','2005-07-12 09:31:43.000','2340','204','2005-07-15 05:00:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6632','2005-07-12 09:33:10.000','2929','442','2005-07-15 11:36:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6633','2005-07-12 09:35:42.000','2908','150','2005-07-13 12:56:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6634','2005-07-12 09:37:18.000','2943','50','2005-07-13 09:28:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6635','2005-07-12 09:47:58.000','515','273','2005-07-16 15:43:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6636','2005-07-12 09:49:46.000','3270','441','2005-07-14 12:15:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6637','2005-07-12 09:57:39.000','2852','164','2005-07-19 08:40:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6638','2005-07-12 09:58:02.000','207','87','2005-07-13 09:40:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6639','2005-07-12 10:00:44.000','3385','587','2005-07-19 04:56:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6640','2005-07-12 10:27:19.000','2794','148','2005-07-21 06:28:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6641','2005-07-12 10:33:14.000','2165','334','2005-07-20 08:24:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6642','2005-07-12 10:37:52.000','201','441','2005-07-13 15:13:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6643','2005-07-12 10:39:22.000','174','88','2005-07-18 13:52:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6644','2005-07-12 10:39:39.000','2667','285','2005-07-14 11:50:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6645','2005-07-12 10:39:55.000','2858','73','2005-07-17 07:41:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6646','2005-07-12 10:41:34.000','4061','508','2005-07-15 05:31:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6647','2005-07-12 10:43:53.000','1841','8','2005-07-14 05:37:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6648','2005-07-12 10:46:30.000','718','356','2005-07-14 16:15:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6649','2005-07-12 10:51:09.000','70','57','2005-07-14 16:05:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6650','2005-07-12 10:57:10.000','1589','526','2005-07-14 07:24:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6651','2005-07-12 10:57:28.000','98','447','2005-07-15 06:06:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6652','2005-07-12 10:59:38.000','2200','518','2005-07-13 13:52:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6653','2005-07-12 11:06:17.000','614','25','2005-07-19 16:52:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6654','2005-07-12 11:06:28.000','2870','458','2005-07-20 10:27:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6655','2005-07-12 11:08:32.000','3937','100','2005-07-15 15:17:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6656','2005-07-12 11:09:47.000','2282','330','2005-07-14 05:50:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6657','2005-07-12 11:11:36.000','3697','553','2005-07-16 15:56:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6658','2005-07-12 11:13:21.000','172','27','2005-07-17 09:10:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6659','2005-07-12 11:18:05.000','2285','134','2005-07-16 16:45:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6660','2005-07-12 11:20:12.000','446','598','2005-07-20 12:58:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6661','2005-07-12 11:20:39.000','2367','315','2005-07-16 08:17:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6662','2005-07-12 11:21:06.000','1464','99','2005-07-13 13:00:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6663','2005-07-12 11:27:35.000','4364','5','2005-07-21 16:35:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6664','2005-07-12 11:28:22.000','4578','351','2005-07-15 09:30:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6665','2005-07-12 11:29:14.000','2912','587','2005-07-19 11:26:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6666','2005-07-12 11:32:15.000','3194','314','2005-07-14 16:09:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6667','2005-07-12 11:36:22.000','215','50','2005-07-19 12:53:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6668','2005-07-12 11:37:45.000','1498','199','2005-07-14 13:28:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6669','2005-07-12 11:39:55.000','1420','355','2005-07-20 05:56:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6670','2005-07-12 11:44:33.000','3106','249','2005-07-19 07:54:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6671','2005-07-12 11:48:48.000','955','526','2005-07-19 16:55:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6672','2005-07-12 11:49:16.000','375','439','2005-07-13 07:03:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6673','2005-07-12 11:50:56.000','1997','322','2005-07-13 14:27:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6674','2005-07-12 11:51:54.000','2385','399','2005-07-13 16:57:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6675','2005-07-12 11:53:06.000','2124','523','2005-07-13 06:09:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6676','2005-07-12 11:53:40.000','2294','571','2005-07-19 09:15:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6677','2005-07-12 11:58:14.000','2389','516','2005-07-21 06:05:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6678','2005-07-12 11:58:36.000','3473','330','2005-07-15 17:50:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6679','2005-07-12 12:01:07.000','3664','586','2005-07-14 11:36:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6680','2005-07-12 12:01:56.000','2887','43','2005-07-16 17:32:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6681','2005-07-12 12:04:12.000','854','368','2005-07-19 11:01:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6682','2005-07-12 12:12:43.000','1984','339','2005-07-21 10:49:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6683','2005-07-12 12:14:05.000','3433','244','2005-07-17 14:02:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6684','2005-07-12 12:14:42.000','2817','583','2005-07-21 11:07:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6685','2005-07-12 12:16:28.000','1434','5','2005-07-19 17:03:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6686','2005-07-12 12:18:38.000','3804','6','2005-07-13 17:56:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6687','2005-07-12 12:19:23.000','2736','128','2005-07-19 17:12:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6688','2005-07-12 12:22:12.000','2377','246','2005-07-14 14:05:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6689','2005-07-12 12:22:13.000','1568','525','2005-07-16 07:44:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6690','2005-07-12 12:23:02.000','4254','447','2005-07-16 15:39:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6691','2005-07-12 12:26:38.000','403','192','2005-07-18 13:26:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6692','2005-07-12 12:35:39.000','2837','372','2005-07-20 11:20:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6693','2005-07-12 12:37:00.000','2014','573','2005-07-20 09:36:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6694','2005-07-12 12:39:23.000','586','204','2005-07-19 14:47:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6695','2005-07-12 12:39:39.000','3088','550','2005-07-17 13:36:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6696','2005-07-12 12:44:04.000','299','273','2005-07-16 14:17:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6697','2005-07-12 12:44:57.000','210','103','2005-07-19 13:02:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6698','2005-07-12 12:45:00.000','4419','64','2005-07-16 11:16:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6699','2005-07-12 12:45:21.000','3411','565','2005-07-15 12:59:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6700','2005-07-12 12:47:22.000','3063','184','2005-07-21 16:04:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6701','2005-07-12 12:47:59.000','3428','454','2005-07-13 10:28:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6702','2005-07-12 12:48:03.000','233','164','2005-07-13 11:55:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6703','2005-07-12 12:50:19.000','46','470','2005-07-16 13:41:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6704','2005-07-12 12:50:24.000','1590','595','2005-07-20 16:41:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6705','2005-07-12 12:53:11.000','4268','363','2005-07-13 07:17:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6706','2005-07-12 12:59:16.000','4552','267','2005-07-19 10:37:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6707','2005-07-12 13:07:55.000','406','80','2005-07-16 16:26:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6708','2005-07-12 13:10:55.000','372','82','2005-07-21 07:36:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6709','2005-07-12 13:20:41.000','4049','322','2005-07-16 10:37:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6710','2005-07-12 13:23:09.000','806','462','2005-07-20 10:10:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6711','2005-07-12 13:23:40.000','2247','257','2005-07-20 11:45:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6712','2005-07-12 13:24:47.000','4581','226','2005-07-20 09:35:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6713','2005-07-12 13:27:36.000','4218','557','2005-07-16 11:14:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6714','2005-07-12 13:29:06.000','1947','370','2005-07-18 16:02:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6715','2005-07-12 13:32:28.000','643','386','2005-07-15 17:01:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6716','2005-07-12 13:34:58.000','2783','367','2005-07-19 15:09:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6717','2005-07-12 13:35:02.000','523','273','2005-07-20 15:03:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6718','2005-07-12 13:38:06.000','2283','541','2005-07-18 09:05:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6719','2005-07-12 13:40:37.000','739','330','2005-07-15 15:23:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6720','2005-07-12 13:41:16.000','2704','151','2005-07-13 14:41:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6721','2005-07-12 13:42:58.000','2798','462','2005-07-19 16:39:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6722','2005-07-12 13:44:03.000','3124','211','2005-07-19 12:43:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6723','2005-07-12 13:44:57.000','2678','499','2005-07-14 15:57:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6724','2005-07-12 13:45:15.000','2486','262','2005-07-19 19:18:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6725','2005-07-12 13:47:17.000','831','213','2005-07-17 13:31:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6726','2005-07-12 13:48:14.000','4494','97','2005-07-16 11:11:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6727','2005-07-12 13:54:25.000','3793','407','2005-07-14 17:29:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6728','2005-07-12 13:56:48.000','2113','414','2005-07-15 18:49:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6729','2005-07-12 13:58:23.000','2495','455','2005-07-19 09:34:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6730','2005-07-12 13:58:25.000','1552','532','2005-07-20 13:01:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6731','2005-07-12 13:58:27.000','844','593','2005-07-15 10:04:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6732','2005-07-12 13:58:51.000','1913','299','2005-07-17 17:42:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6733','2005-07-12 14:04:01.000','1476','585','2005-07-21 18:57:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6734','2005-07-12 14:04:24.000','2248','446','2005-07-21 19:47:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6735','2005-07-12 14:08:20.000','276','428','2005-07-18 09:41:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6736','2005-07-12 14:16:50.000','530','342','2005-07-15 16:26:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6737','2005-07-12 14:16:52.000','315','304','2005-07-18 19:48:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6738','2005-07-12 14:17:55.000','1197','366','2005-07-21 10:11:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6739','2005-07-12 14:22:08.000','1221','71','2005-07-18 16:57:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6740','2005-07-12 14:22:08.000','2431','139','2005-07-14 14:35:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6741','2005-07-12 14:24:16.000','237','359','2005-07-15 08:31:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6742','2005-07-12 14:25:31.000','4242','558','2005-07-17 08:50:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6743','2005-07-12 14:29:25.000','158','261','2005-07-13 13:13:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6744','2005-07-12 14:30:28.000','2565','64','2005-07-14 16:20:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6745','2005-07-12 14:30:51.000','1331','524','2005-07-13 13:42:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6746','2005-07-12 14:33:01.000','3127','537','2005-07-17 19:52:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6747','2005-07-12 14:33:21.000','3651','126','2005-07-13 09:59:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6748','2005-07-12 14:39:27.000','3655','540','2005-07-18 13:40:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6749','2005-07-12 14:43:05.000','2895','334','2005-07-21 15:13:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6750','2005-07-12 14:49:39.000','3838','459','2005-07-18 18:43:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6751','2005-07-12 14:50:34.000','1749','312','2005-07-15 19:39:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6752','2005-07-12 14:53:15.000','3392','453','2005-07-20 09:23:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6753','2005-07-12 14:55:42.000','2591','147','2005-07-18 19:16:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6754','2005-07-12 14:59:24.000','1460','114','2005-07-14 11:04:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6755','2005-07-12 15:07:49.000','2542','126','2005-07-21 18:43:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6756','2005-07-12 15:08:28.000','1174','531','2005-07-13 14:25:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6757','2005-07-12 15:09:48.000','547','558','2005-07-17 15:04:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6758','2005-07-12 15:13:49.000','4098','546','2005-07-20 09:31:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6759','2005-07-12 15:14:48.000','3624','49','2005-07-15 11:29:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6760','2005-07-12 15:16:00.000','501','502','2005-07-20 13:20:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6761','2005-07-12 15:17:42.000','3645','7','2005-07-18 17:59:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6762','2005-07-12 15:25:33.000','3857','262','2005-07-21 18:57:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6763','2005-07-12 15:26:34.000','3364','314','2005-07-18 16:38:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6764','2005-07-12 15:29:27.000','4407','396','2005-07-21 20:00:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6765','2005-07-12 15:30:47.000','2571','433','2005-07-19 14:19:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6766','2005-07-12 15:32:01.000','3615','171','2005-07-18 14:03:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6767','2005-07-12 15:46:55.000','1819','208','2005-07-17 17:36:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6768','2005-07-12 15:47:51.000','3418','151','2005-07-19 21:17:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6769','2005-07-12 15:48:54.000','1687','63','2005-07-21 14:39:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6770','2005-07-12 15:49:40.000','2080','360','2005-07-20 10:14:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6771','2005-07-12 15:54:40.000','1113','396','2005-07-17 15:56:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6772','2005-07-12 15:55:35.000','3810','89','2005-07-18 10:47:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6773','2005-07-12 15:55:39.000','3346','12','2005-07-18 17:52:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6774','2005-07-12 15:56:08.000','868','171','2005-07-13 18:42:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6775','2005-07-12 16:01:44.000','2909','383','2005-07-19 14:11:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6776','2005-07-12 16:02:09.000','2398','348','2005-07-20 16:31:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6777','2005-07-12 16:04:40.000','4089','351','2005-07-20 15:05:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6778','2005-07-12 16:06:00.000','4503','381','2005-07-14 21:57:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6779','2005-07-12 16:10:50.000','4468','404','2005-07-17 14:51:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6780','2005-07-12 16:18:12.000','1255','121','2005-07-13 17:56:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6781','2005-07-12 16:21:47.000','3783','533','2005-07-15 19:52:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6782','2005-07-12 16:23:25.000','2742','199','2005-07-20 18:46:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6783','2005-07-12 16:27:56.000','3633','506','2005-07-13 12:11:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6784','2005-07-12 16:28:49.000','197','578','2005-07-15 17:27:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6785','2005-07-12 16:30:57.000','4448','69','2005-07-18 20:46:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6786','2005-07-12 16:32:33.000','2011','546','2005-07-16 12:42:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6787','2005-07-12 16:33:28.000','1481','342','2005-07-18 21:48:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6788','2005-07-12 16:33:44.000','1162','460','2005-07-20 15:38:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6789','2005-07-12 16:34:40.000','1973','76','2005-07-14 17:02:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6790','2005-07-12 16:34:59.000','4486','400','2005-07-17 21:43:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6791','2005-07-12 16:35:07.000','1495','144','2005-07-20 15:32:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6792','2005-07-12 16:37:28.000','510','571','2005-07-20 11:20:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6793','2005-07-12 16:37:55.000','103','148','2005-07-21 16:04:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6794','2005-07-12 16:38:23.000','813','233','2005-07-20 17:36:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6795','2005-07-12 16:41:00.000','1489','245','2005-07-21 20:52:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6796','2005-07-12 16:44:16.000','227','291','2005-07-16 14:48:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6797','2005-07-12 16:47:06.000','1536','469','2005-07-14 14:38:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6798','2005-07-12 16:49:11.000','275','115','2005-07-19 12:11:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6799','2005-07-12 16:52:13.000','2778','42','2005-07-14 15:11:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6800','2005-07-12 17:03:56.000','3742','599','2005-07-21 20:32:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6801','2005-07-12 17:09:08.000','872','500','2005-07-21 22:25:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6802','2005-07-12 17:14:17.000','2942','298','2005-07-17 11:54:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6803','2005-07-12 17:21:49.000','2676','490','2005-07-14 18:01:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6804','2005-07-12 17:22:06.000','1554','269','2005-07-21 11:37:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6805','2005-07-12 17:23:01.000','1758','262','2005-07-21 19:38:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6806','2005-07-12 17:31:43.000','656','179','2005-07-17 14:36:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6807','2005-07-12 17:33:53.000','669','376','2005-07-18 16:28:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6808','2005-07-12 17:36:42.000','362','263','2005-07-18 23:33:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6809','2005-07-12 17:51:54.000','3455','168','2005-07-17 15:10:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6810','2005-07-12 17:54:19.000','2802','485','2005-07-20 16:58:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6811','2005-07-12 17:54:33.000','1572','107','2005-07-20 17:39:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6812','2005-07-12 18:03:25.000','2227','553','2005-07-20 18:33:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6813','2005-07-12 18:03:50.000','135','54','2005-07-16 16:30:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6814','2005-07-12 18:11:58.000','1863','579','2005-07-18 20:37:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6815','2005-07-12 18:14:10.000','3236','468','2005-07-17 14:16:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6816','2005-07-12 18:18:50.000','2963','290','2005-07-18 21:09:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6817','2005-07-12 18:19:57.000','184','135','2005-07-19 22:53:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6818','2005-07-12 18:20:54.000','1013','153','2005-07-21 00:03:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6819','2005-07-12 18:21:01.000','1253','198','2005-07-13 21:14:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6820','2005-07-12 18:21:30.000','223','243','2005-07-14 15:14:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6821','2005-07-12 18:22:10.000','623','363','2005-07-14 13:25:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6822','2005-07-12 18:23:39.000','1592','300','2005-07-19 21:06:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6823','2005-07-12 18:24:31.000','795','557','2005-07-17 23:13:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6824','2005-07-12 18:26:46.000','858','579','2005-07-21 15:23:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6825','2005-07-12 18:28:12.000','2342','281','2005-07-15 19:24:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6826','2005-07-12 18:32:02.000','1708','408','2005-07-16 23:21:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6827','2005-07-12 18:33:45.000','1529','283','2005-07-13 19:09:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6828','2005-07-12 18:38:51.000','874','502','2005-07-14 20:10:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6829','2005-07-12 18:38:59.000','4184','361','2005-07-16 23:25:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6830','2005-07-12 18:42:55.000','1943','578','2005-07-17 17:58:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6831','2005-07-12 18:44:04.000','924','163','2005-07-16 21:39:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6832','2005-07-12 18:51:41.000','444','220','2005-07-20 13:29:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6833','2005-07-12 18:53:34.000','912','301','2005-07-19 22:21:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6834','2005-07-12 18:53:37.000','897','533','2005-07-19 13:42:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6835','2005-07-12 18:58:03.000','1444','367','2005-07-18 00:41:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6836','2005-07-12 18:58:05.000','2744','113','2005-07-15 17:45:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6837','2005-07-12 18:59:45.000','1203','533','2005-07-21 22:47:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6838','2005-07-12 19:01:30.000','3492','354','2005-07-17 23:42:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6839','2005-07-12 19:03:19.000','3900','357','2005-07-15 23:48:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6840','2005-07-12 19:03:22.000','1381','323','2005-07-21 18:34:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6841','2005-07-12 19:04:24.000','2265','108','2005-07-14 23:58:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6842','2005-07-12 19:07:55.000','3376','366','2005-07-19 22:47:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6843','2005-07-12 19:14:05.000','746','561','2005-07-20 23:15:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6844','2005-07-12 19:14:53.000','3211','482','2005-07-18 16:07:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6845','2005-07-12 19:20:41.000','3833','414','2005-07-14 15:27:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6846','2005-07-12 19:20:45.000','1214','18','2005-07-17 00:06:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6847','2005-07-12 19:22:37.000','346','63','2005-07-21 18:53:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6848','2005-07-12 19:24:07.000','1782','433','2005-07-14 17:03:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6849','2005-07-12 19:29:19.000','4307','479','2005-07-19 22:03:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6850','2005-07-12 19:30:42.000','1145','433','2005-07-17 21:26:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6851','2005-07-12 19:32:14.000','664','280','2005-07-17 21:03:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6852','2005-07-12 19:33:49.000','2182','75','2005-07-13 20:01:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6853','2005-07-12 19:38:11.000','4006','299','2005-07-20 00:14:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6854','2005-07-12 19:38:57.000','3173','151','2005-07-16 16:28:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6855','2005-07-12 19:46:29.000','2657','24','2005-07-15 16:56:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6856','2005-07-12 19:50:16.000','4338','275','2005-07-14 22:25:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6857','2005-07-12 19:53:30.000','424','196','2005-07-13 15:22:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6858','2005-07-12 19:53:51.000','1095','516','2005-07-19 14:12:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6859','2005-07-12 19:53:57.000','4108','321','2005-07-17 19:48:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6860','2005-07-12 19:54:17.000','2907','91','2005-07-18 13:59:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6861','2005-07-12 19:56:52.000','354','83','2005-07-13 16:02:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6862','2005-07-12 19:58:09.000','3477','231','2005-07-18 15:48:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6863','2005-07-12 19:58:34.000','229','484','2005-07-21 16:57:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6864','2005-07-12 19:59:25.000','2252','38','2005-07-19 15:52:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6865','2005-07-12 20:02:40.000','1428','175','2005-07-20 00:39:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6866','2005-07-12 20:03:44.000','2481','312','2005-07-15 01:55:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6867','2005-07-12 20:06:47.000','3354','190','2005-07-19 16:59:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6868','2005-07-12 20:10:17.000','719','306','2005-07-15 22:34:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6869','2005-07-12 20:12:06.000','3546','278','2005-07-13 18:37:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6870','2005-07-12 20:13:45.000','3102','13','2005-07-16 22:09:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6871','2005-07-12 20:13:49.000','3612','204','2005-07-14 20:11:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6872','2005-07-12 20:15:04.000','3246','86','2005-07-18 18:19:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6873','2005-07-12 20:20:50.000','802','161','2005-07-17 01:51:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6874','2005-07-12 20:20:53.000','4478','539','2005-07-19 19:41:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6875','2005-07-12 20:23:05.000','3420','172','2005-07-19 00:09:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6876','2005-07-12 20:32:50.000','34','531','2005-07-16 21:12:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6877','2005-07-12 20:32:58.000','3968','231','2005-07-18 18:01:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6878','2005-07-12 20:37:13.000','2428','363','2005-07-19 20:13:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6879','2005-07-12 20:37:37.000','1901','416','2005-07-20 15:40:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6880','2005-07-12 20:41:35.000','1473','229','2005-07-17 02:22:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6881','2005-07-12 20:46:35.000','2496','346','2005-07-21 00:26:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6882','2005-07-12 20:50:39.000','2469','166','2005-07-14 21:01:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6883','2005-07-12 20:50:48.000','468','596','2005-07-19 16:00:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6884','2005-07-12 20:52:41.000','3642','17','2005-07-20 23:13:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6885','2005-07-12 20:56:04.000','3972','159','2005-07-15 19:21:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6886','2005-07-12 20:58:04.000','4533','429','2005-07-18 16:56:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6887','2005-07-12 21:00:23.000','4487','542','2005-07-21 17:46:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6888','2005-07-12 21:01:11.000','1896','490','2005-07-17 21:49:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6889','2005-07-12 21:01:22.000','2919','198','2005-07-20 20:16:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6890','2005-07-12 21:03:03.000','2538','473','2005-07-14 00:47:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6891','2005-07-12 21:07:35.000','3189','507','2005-07-14 16:59:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6892','2005-07-12 21:10:04.000','1567','138','2005-07-13 23:03:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6893','2005-07-12 21:20:11.000','2611','377','2005-07-21 18:55:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6894','2005-07-12 21:20:50.000','1347','315','2005-07-20 23:42:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6895','2005-07-12 21:23:59.000','2935','599','2005-07-19 20:47:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6896','2005-07-12 21:25:37.000','1266','111','2005-07-20 23:51:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6897','2005-07-12 21:30:41.000','170','13','2005-07-15 03:19:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6898','2005-07-12 21:39:04.000','1725','557','2005-07-15 20:30:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6899','2005-07-12 21:44:16.000','3565','483','2005-07-21 22:21:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6900','2005-07-12 21:45:25.000','129','292','2005-07-19 21:19:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6901','2005-07-12 21:46:33.000','4574','158','2005-07-16 21:36:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6902','2005-07-12 21:57:16.000','314','485','2005-07-14 20:56:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6903','2005-07-12 21:58:15.000','3690','517','2005-07-14 01:38:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6904','2005-07-12 22:02:09.000','2312','465','2005-07-17 16:42:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6905','2005-07-12 22:02:18.000','763','25','2005-07-18 23:30:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6906','2005-07-12 22:03:02.000','1435','335','2005-07-15 00:35:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6907','2005-07-12 22:03:49.000','2516','575','2005-07-18 19:18:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6908','2005-07-12 22:08:46.000','3161','529','2005-07-21 00:21:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6909','2005-07-12 22:09:30.000','769','174','2005-07-17 02:05:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6910','2005-07-12 22:11:21.000','1290','546','2005-07-21 02:35:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6911','2005-07-12 22:14:34.000','901','361','2005-07-18 20:17:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6912','2005-07-12 22:17:16.000','1701','471','2005-07-19 18:18:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6913','2005-07-12 22:18:12.000','569','443','2005-07-14 23:03:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6914','2005-07-12 22:26:56.000','496','361','2005-07-17 20:03:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6915','2005-07-12 22:28:09.000','1243','559','2005-07-14 00:53:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6916','2005-07-12 22:29:18.000','3311','88','2005-07-19 16:46:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6917','2005-07-12 22:30:15.000','3048','23','2005-07-20 03:20:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6918','2005-07-12 22:30:29.000','4085','140','2005-07-19 22:51:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6919','2005-07-12 22:32:17.000','1122','540','2005-07-18 20:09:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6920','2005-07-12 22:32:58.000','2301','109','2005-07-19 20:29:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6921','2005-07-12 22:39:03.000','3322','265','2005-07-21 18:54:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6922','2005-07-12 22:39:48.000','1114','371','2005-07-14 18:35:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6923','2005-07-12 22:40:48.000','2642','490','2005-07-19 23:07:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6924','2005-07-26 22:51:53.000','1257','502','2005-08-03 19:04:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6925','2005-07-26 22:52:32.000','2919','42','2005-07-29 21:22:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6926','2005-07-26 22:52:45.000','1276','354','2005-07-28 18:32:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6927','2005-07-26 22:56:00.000','4511','470','2005-08-05 03:16:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6928','2005-07-26 22:56:21.000','3605','487','2005-07-30 04:46:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6929','2005-07-26 22:59:19.000','3339','508','2005-08-03 22:40:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6930','2005-07-26 23:00:01.000','2989','393','2005-08-04 01:57:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6931','2005-07-26 23:02:57.000','2794','333','2005-07-28 04:48:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6932','2005-07-26 23:08:04.000','4517','463','2005-08-05 01:35:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6933','2005-07-26 23:09:23.000','1334','385','2005-07-31 20:50:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6934','2005-07-26 23:11:03.000','455','107','2005-08-04 19:18:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6935','2005-07-26 23:13:10.000','2771','435','2005-07-27 18:09:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6936','2005-07-26 23:13:34.000','60','538','2005-07-30 19:14:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6937','2005-07-26 23:15:50.000','1768','592','2005-07-27 19:14:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6938','2005-07-26 23:16:04.000','2058','427','2005-08-05 00:59:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6939','2005-07-26 23:17:51.000','278','354','2005-08-03 21:12:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6940','2005-07-26 23:18:35.000','3876','149','2005-08-05 01:44:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6941','2005-07-26 23:18:49.000','1575','441','2005-07-31 00:23:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6942','2005-07-26 23:27:40.000','1203','470','2005-07-31 03:17:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6943','2005-07-26 23:28:13.000','2436','21','2005-07-30 02:22:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6944','2005-07-26 23:34:02.000','1168','373','2005-08-05 01:27:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6945','2005-07-26 23:35:29.000','1627','560','2005-07-28 00:12:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6946','2005-07-26 23:40:07.000','1854','181','2005-08-04 01:18:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6947','2005-07-26 23:42:03.000','760','200','2005-08-02 05:06:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6948','2005-07-26 23:43:49.000','3088','228','2005-07-27 21:24:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6949','2005-07-26 23:44:12.000','1594','103','2005-07-30 05:39:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6950','2005-07-26 23:45:33.000','197','503','2005-07-31 04:40:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6951','2005-07-26 23:47:31.000','3348','98','2005-07-31 22:17:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6952','2005-07-26 23:51:27.000','4288','290','2005-07-30 02:45:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6953','2005-07-26 23:52:47.000','2910','306','2005-07-30 23:07:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6954','2005-07-26 23:55:13.000','1112','584','2005-07-28 19:01:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6955','2005-07-26 23:55:48.000','1104','469','2005-08-02 03:25:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6956','2005-07-26 23:55:57.000','2499','240','2005-08-03 21:41:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6957','2005-07-27 00:00:00.000','2231','518','2005-07-29 19:32:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6958','2005-07-27 00:02:41.000','657','333','2005-07-28 00:53:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6959','2005-07-27 00:07:51.000','1618','452','2005-07-27 20:45:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6960','2005-07-27 00:08:33.000','192','421','2005-08-03 20:58:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6961','2005-07-27 00:10:49.000','2205','38','2005-07-30 00:26:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6962','2005-07-27 00:10:58.000','4500','245','2005-07-30 02:11:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6963','2005-07-27 00:13:02.000','4284','489','2005-08-03 18:13:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6964','2005-07-27 00:15:04.000','1537','404','2005-07-31 00:04:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6965','2005-07-27 00:15:18.000','74','185','2005-07-28 04:30:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6966','2005-07-27 00:15:35.000','1577','45','2005-08-05 03:04:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6967','2005-07-27 00:16:31.000','1145','296','2005-08-03 22:19:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6968','2005-07-27 00:16:45.000','1662','370','2005-07-30 23:16:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6969','2005-07-27 00:23:54.000','2650','579','2005-08-03 04:34:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6970','2005-07-27 00:26:14.000','17','418','2005-08-03 20:00:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6971','2005-07-27 00:26:17.000','3493','366','2005-08-01 03:59:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6972','2005-07-27 00:31:25.000','1716','434','2005-07-28 22:15:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6973','2005-07-27 00:32:04.000','4572','564','2005-07-29 01:05:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6974','2005-07-27 00:39:16.000','2924','122','2005-08-04 01:59:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6975','2005-07-27 00:39:54.000','3328','527','2005-08-02 19:49:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6976','2005-07-27 00:40:01.000','3096','41','2005-07-31 22:30:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6977','2005-07-27 00:40:50.000','3545','429','2005-08-02 19:08:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6978','2005-07-27 00:47:40.000','3645','132','2005-07-31 04:32:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6979','2005-07-27 00:49:53.000','1001','141','2005-07-31 03:59:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6980','2005-07-27 00:50:30.000','1127','164','2005-08-03 23:35:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6981','2005-07-27 00:51:38.000','154','362','2005-07-28 01:06:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6982','2005-07-27 00:53:41.000','3843','284','2005-07-31 06:19:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6983','2005-07-27 00:55:03.000','1758','443','2005-08-01 21:19:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6984','2005-07-27 00:56:30.000','2407','297','2005-08-02 01:14:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6985','2005-07-27 00:57:42.000','1834','448','2005-07-31 00:53:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6986','2005-07-27 00:59:05.000','2104','262','2005-07-29 00:31:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6987','2005-07-27 00:59:50.000','3134','334','2005-07-28 01:47:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6988','2005-07-27 01:00:08.000','756','316','2005-07-31 04:35:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6989','2005-07-27 01:00:34.000','4036','120','2005-07-30 23:53:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6990','2005-07-27 01:02:46.000','4065','146','2005-07-31 00:22:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6991','2005-07-27 01:03:06.000','319','307','2005-08-05 04:18:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6992','2005-07-27 01:04:45.000','3411','106','2005-07-28 02:34:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6993','2005-07-27 01:05:24.000','3114','154','2005-07-30 06:23:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6994','2005-07-27 01:08:26.000','4316','400','2005-08-04 22:58:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6995','2005-07-27 01:12:13.000','1630','66','2005-07-29 21:26:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6996','2005-07-27 01:13:45.000','3237','236','2005-07-28 20:43:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6997','2005-07-27 01:14:02.000','2130','342','2005-07-29 01:12:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6998','2005-07-27 01:16:29.000','788','300','2005-07-30 05:50:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('6999','2005-07-27 01:21:19.000','12','224','2005-07-29 20:33:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7000','2005-07-27 01:23:24.000','2024','31','2005-08-03 02:10:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7001','2005-07-27 01:25:34.000','1460','240','2005-07-31 23:30:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7002','2005-07-27 01:26:14.000','4157','349','2005-08-01 20:10:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7003','2005-07-27 01:32:06.000','636','161','2005-07-30 21:33:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7004','2005-07-27 01:36:05.000','4416','314','2005-08-03 23:46:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7005','2005-07-27 01:38:36.000','2438','446','2005-08-02 05:56:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7006','2005-07-27 01:42:20.000','3522','264','2005-08-03 03:19:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7007','2005-07-27 01:43:39.000','4186','257','2005-07-31 21:04:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7008','2005-07-27 01:44:03.000','3659','12','2005-07-28 21:19:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7009','2005-07-27 01:45:44.000','1585','414','2005-07-28 05:50:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7010','2005-07-27 01:56:01.000','3016','590','2005-07-30 04:40:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7011','2005-07-27 01:58:34.000','4082','254','2005-07-28 06:11:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7012','2005-07-27 02:01:03.000','779','239','2005-08-05 07:34:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7013','2005-07-27 02:03:21.000','3919','463','2005-07-31 22:12:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7014','2005-07-27 02:14:40.000','714','524','2005-08-03 00:32:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7015','2005-07-27 02:15:01.000','376','34','2005-07-28 07:46:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7016','2005-07-27 02:15:16.000','1425','423','2005-08-01 23:08:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7017','2005-07-27 02:16:03.000','753','176','2005-07-31 07:49:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7018','2005-07-27 02:20:22.000','1078','451','2005-08-02 05:04:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7019','2005-07-27 02:20:26.000','3837','491','2005-08-02 22:48:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7020','2005-07-27 02:24:27.000','3965','506','2005-07-29 01:27:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7021','2005-07-27 02:26:38.000','2690','380','2005-08-05 01:18:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7022','2005-07-27 02:31:15.000','1711','243','2005-07-29 02:52:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7023','2005-07-27 02:32:44.000','4196','303','2005-08-03 04:06:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7024','2005-07-27 02:36:40.000','3113','252','2005-07-28 06:58:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7025','2005-07-27 02:40:29.000','3530','176','2005-07-29 23:02:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7026','2005-07-27 02:48:58.000','3456','493','2005-07-29 03:41:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7027','2005-07-27 02:50:15.000','3280','61','2005-08-04 02:58:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7028','2005-07-27 02:54:25.000','834','179','2005-08-02 06:16:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7029','2005-07-27 02:57:43.000','2862','389','2005-07-30 08:24:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7030','2005-07-27 03:01:40.000','1277','550','2005-07-31 07:01:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7031','2005-07-27 03:02:07.000','1435','530','2005-08-02 07:14:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7032','2005-07-27 03:03:09.000','3397','269','2005-07-28 22:57:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7033','2005-07-27 03:03:25.000','2803','352','2005-07-28 01:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7034','2005-07-27 03:03:37.000','1712','281','2005-07-28 23:18:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7035','2005-07-27 03:06:09.000','2439','90','2005-08-02 21:59:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7036','2005-07-27 03:06:12.000','2569','70','2005-07-28 23:26:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7037','2005-07-27 03:06:44.000','3155','171','2005-08-02 04:51:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7038','2005-07-27 03:07:29.000','1909','518','2005-07-31 04:55:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7039','2005-07-27 03:11:48.000','1906','99','2005-08-01 23:55:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7040','2005-07-27 03:17:19.000','470','524','2005-07-29 07:03:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7041','2005-07-27 03:18:32.000','4212','379','2005-07-30 06:40:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7042','2005-07-27 03:20:18.000','399','188','2005-08-01 02:23:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7043','2005-07-27 03:24:23.000','3422','493','2005-08-05 02:55:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7044','2005-07-27 03:27:29.000','88','147','2005-08-01 07:00:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7045','2005-07-27 03:27:35.000','1788','64','2005-08-01 06:31:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7046','2005-07-27 03:27:56.000','3740','349','2005-07-30 00:54:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7047','2005-07-27 03:31:11.000','2866','236','2005-08-03 23:40:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7048','2005-07-27 03:31:48.000','3707','581','2005-08-05 07:30:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7049','2005-07-27 03:32:41.000','3043','332','2005-08-04 08:32:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7050','2005-07-27 03:33:17.000','1135','55','2005-08-02 03:12:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7051','2005-07-27 03:34:37.000','1310','184','2005-07-31 03:48:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7052','2005-07-27 03:36:38.000','3798','75','2005-08-03 21:51:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7053','2005-07-27 03:38:54.000','149','408','2005-07-31 01:13:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7054','2005-07-27 03:43:28.000','2661','179','2005-08-04 09:15:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7055','2005-07-27 03:45:42.000','4305','154','2005-07-30 05:11:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7056','2005-07-27 03:46:27.000','805','233','2005-08-05 07:46:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7057','2005-07-27 03:50:03.000','1196','320','2005-08-04 04:36:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7058','2005-07-27 03:50:46.000','716','90','2005-08-04 07:40:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7059','2005-07-27 03:51:02.000','129','578','2005-08-02 22:04:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7060','2005-07-27 03:51:04.000','3912','479','2005-08-03 07:53:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7061','2005-07-27 03:51:10.000','880','145','2005-07-31 05:36:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7062','2005-07-27 03:52:01.000','226','469','2005-08-03 08:26:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7063','2005-07-27 03:52:27.000','2125','58','2005-08-04 07:53:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7064','2005-07-27 03:53:29.000','4204','320','2005-08-03 06:32:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7065','2005-07-27 03:53:43.000','3570','536','2005-07-30 23:41:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7066','2005-07-27 03:53:52.000','1862','185','2005-08-05 03:32:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7067','2005-07-27 03:55:10.000','870','60','2005-08-01 02:56:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7068','2005-07-27 03:57:50.000','4465','568','2005-07-30 04:27:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7069','2005-07-27 03:59:35.000','2073','343','2005-08-05 03:33:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7070','2005-07-27 04:01:08.000','4182','280','2005-07-30 08:10:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7071','2005-07-27 04:01:15.000','4361','61','2005-08-03 05:18:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7072','2005-07-27 04:02:33.000','3899','260','2005-07-28 09:26:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7073','2005-07-27 04:03:26.000','3859','92','2005-08-03 05:50:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7074','2005-07-27 04:06:24.000','1390','165','2005-07-28 02:04:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7075','2005-07-27 04:11:40.000','4414','530','2005-08-03 08:16:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7076','2005-07-27 04:12:14.000','2821','333','2005-08-05 00:44:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7077','2005-07-27 04:13:02.000','3186','155','2005-07-31 23:15:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7078','2005-07-27 04:16:37.000','4518','545','2005-08-05 02:34:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7079','2005-07-27 04:21:58.000','4356','356','2005-08-04 08:08:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7080','2005-07-27 04:25:25.000','710','466','2005-08-04 04:22:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7081','2005-07-27 04:25:59.000','462','420','2005-08-01 00:14:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7082','2005-07-27 04:27:32.000','2032','64','2005-07-30 06:06:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7083','2005-07-27 04:28:39.000','2663','575','2005-07-30 04:35:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7084','2005-07-27 04:34:07.000','785','32','2005-08-05 00:21:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7085','2005-07-27 04:35:44.000','2603','223','2005-08-05 07:10:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7086','2005-07-27 04:39:46.000','2938','595','2005-08-05 00:32:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7087','2005-07-27 04:42:08.000','1159','22','2005-08-02 00:53:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7088','2005-07-27 04:42:28.000','373','88','2005-08-04 07:09:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7089','2005-07-27 04:43:42.000','1380','446','2005-07-30 10:04:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7090','2005-07-27 04:43:53.000','3495','218','2005-07-29 07:33:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7091','2005-07-27 04:44:10.000','2593','322','2005-07-31 07:14:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7092','2005-07-27 04:46:00.000','1433','345','2005-08-03 07:22:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7093','2005-07-27 04:47:00.000','3065','574','2005-07-31 10:15:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7094','2005-07-27 04:47:33.000','867','373','2005-07-31 04:07:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7095','2005-07-27 04:51:15.000','1008','551','2005-08-05 10:25:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7096','2005-07-27 04:54:42.000','2575','3','2005-08-03 01:42:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7097','2005-07-27 04:56:09.000','258','487','2005-07-31 05:47:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7098','2005-07-27 05:01:08.000','2555','359','2005-08-02 07:49:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7099','2005-07-27 05:03:44.000','3136','6','2005-07-29 00:12:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7100','2005-07-27 05:05:01.000','4224','413','2005-07-28 23:12:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7101','2005-07-27 05:06:34.000','2006','221','2005-07-29 06:12:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7102','2005-07-27 05:07:21.000','1081','411','2005-08-01 09:41:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7103','2005-07-27 05:08:59.000','1697','403','2005-07-29 03:42:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7104','2005-07-27 05:15:25.000','118','217','2005-08-01 05:36:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7105','2005-07-27 05:15:37.000','864','15','2005-07-28 05:49:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7106','2005-07-27 05:21:24.000','1415','201','2005-08-02 01:58:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7107','2005-07-27 05:22:04.000','1883','104','2005-08-02 06:38:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7108','2005-07-27 05:28:32.000','2720','355','2005-07-31 07:52:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7109','2005-07-27 05:28:57.000','1658','406','2005-08-04 10:41:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7110','2005-07-27 05:30:48.000','3289','157','2005-07-28 01:43:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7111','2005-07-27 05:38:16.000','1252','473','2005-07-29 04:28:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7112','2005-07-27 05:38:42.000','4056','101','2005-08-03 05:35:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7113','2005-07-27 05:41:20.000','1963','534','2005-07-30 04:50:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7114','2005-07-27 05:42:13.000','3892','121','2005-07-29 01:59:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7115','2005-07-27 05:42:58.000','3620','359','2005-08-02 05:35:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7116','2005-07-27 05:46:43.000','1755','209','2005-08-05 05:54:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7117','2005-07-27 05:48:36.000','2772','326','2005-08-01 00:33:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7118','2005-07-27 05:53:50.000','582','591','2005-08-05 04:19:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7119','2005-07-27 05:55:32.000','1732','102','2005-07-29 03:19:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7120','2005-07-27 05:56:39.000','416','98','2005-08-04 10:57:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7121','2005-07-27 05:58:32.000','1264','252','2005-07-29 06:14:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7122','2005-07-27 06:03:18.000','1699','172','2005-08-04 10:43:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7123','2005-07-27 06:08:48.000','134','232','2005-08-04 05:26:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7124','2005-07-27 06:09:30.000','3449','34','2005-08-02 09:31:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7125','2005-07-27 06:11:00.000','801','460','2005-08-04 09:41:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7126','2005-07-27 06:13:13.000','3240','582','2005-07-28 08:22:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7127','2005-07-27 06:13:48.000','273','486','2005-08-01 02:50:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7128','2005-07-27 06:14:36.000','143','529','2005-08-02 05:18:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7129','2005-07-27 06:18:01.000','1930','221','2005-07-28 02:38:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7130','2005-07-27 06:23:36.000','420','81','2005-07-28 10:23:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7131','2005-07-27 06:25:06.000','2832','585','2005-07-31 09:07:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7132','2005-07-27 06:28:34.000','3201','227','2005-08-05 06:02:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7133','2005-07-27 06:29:23.000','2995','496','2005-07-29 03:20:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7134','2005-07-27 06:33:06.000','1058','574','2005-07-28 06:15:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7135','2005-07-27 06:34:32.000','2959','172','2005-07-28 03:01:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7136','2005-07-27 06:38:25.000','1929','6','2005-08-03 05:13:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7137','2005-07-27 06:40:41.000','3957','483','2005-07-29 09:05:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7138','2005-07-27 06:47:13.000','1418','31','2005-08-03 01:12:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7139','2005-07-27 06:52:21.000','846','575','2005-07-30 01:45:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7140','2005-07-27 06:54:12.000','2028','35','2005-08-03 10:36:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7141','2005-07-27 06:55:27.000','3579','423','2005-08-01 11:10:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7142','2005-07-27 06:55:39.000','1743','396','2005-07-28 01:41:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7143','2005-07-27 06:56:31.000','2877','91','2005-07-31 04:38:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7144','2005-07-27 07:00:37.000','4506','485','2005-08-01 06:57:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7145','2005-07-27 07:01:00.000','3653','109','2005-07-31 02:31:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7146','2005-07-27 07:02:30.000','2245','323','2005-08-05 10:29:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7147','2005-07-27 07:02:34.000','990','192','2005-08-01 02:16:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7148','2005-07-27 07:04:09.000','1783','354','2005-08-03 10:20:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7149','2005-07-27 07:10:40.000','3902','242','2005-08-03 07:37:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7150','2005-07-27 07:11:14.000','457','191','2005-08-05 06:55:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7151','2005-07-27 07:14:31.000','1259','289','2005-08-01 01:35:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7152','2005-07-27 07:15:01.000','2338','370','2005-08-05 04:50:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7153','2005-07-27 07:15:38.000','2657','41','2005-07-28 09:56:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7154','2005-07-27 07:16:17.000','2019','518','2005-07-28 04:04:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7155','2005-07-27 07:18:46.000','171','23','2005-08-04 10:28:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7156','2005-07-27 07:19:34.000','34','154','2005-07-31 04:31:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7157','2005-07-27 07:20:28.000','1353','423','2005-08-02 07:19:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7158','2005-07-27 07:23:58.000','2432','38','2005-08-03 06:00:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7159','2005-07-27 07:24:00.000','1220','158','2005-08-05 11:13:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7160','2005-07-27 07:26:06.000','3905','71','2005-07-31 04:54:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7161','2005-07-27 07:26:32.000','378','572','2005-08-03 01:26:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7162','2005-07-27 07:32:45.000','2251','289','2005-07-30 03:48:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7163','2005-07-27 07:36:11.000','3666','38','2005-08-04 06:03:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7164','2005-07-27 07:36:34.000','527','284','2005-08-04 05:05:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7165','2005-07-27 07:36:46.000','497','243','2005-07-30 09:22:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7166','2005-07-27 07:36:56.000','1375','562','2005-08-02 03:46:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7167','2005-07-27 07:37:26.000','238','380','2005-08-03 06:39:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7168','2005-07-27 07:51:11.000','6','252','2005-08-01 04:08:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7169','2005-07-27 07:51:39.000','735','559','2005-08-01 06:42:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7170','2005-07-27 07:58:26.000','370','140','2005-07-28 02:30:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7171','2005-07-27 07:58:35.000','4381','406','2005-08-03 07:45:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7172','2005-07-27 07:59:16.000','2405','362','2005-08-01 04:46:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7173','2005-07-27 07:59:24.000','177','592','2005-07-28 02:23:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7174','2005-07-27 08:00:36.000','46','570','2005-08-01 03:11:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7175','2005-07-27 08:03:22.000','568','190','2005-08-01 02:47:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7176','2005-07-27 08:04:28.000','227','257','2005-07-29 14:00:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7177','2005-07-27 08:07:39.000','3818','133','2005-07-30 03:17:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7178','2005-07-27 08:09:25.000','1899','31','2005-07-29 13:00:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7179','2005-07-27 08:10:29.000','2365','537','2005-07-28 12:24:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7180','2005-07-27 08:14:34.000','460','215','2005-07-31 05:24:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7181','2005-07-27 08:14:34.000','2788','130','2005-07-28 03:09:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7182','2005-07-27 08:15:38.000','3209','97','2005-08-03 12:48:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7183','2005-07-27 08:18:38.000','3384','302','2005-08-01 03:24:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7184','2005-07-27 08:22:26.000','2324','457','2005-08-02 09:34:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7185','2005-07-27 08:23:54.000','2340','121','2005-07-30 09:50:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7186','2005-07-27 08:26:12.000','4005','584','2005-07-28 12:21:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7187','2005-07-27 08:27:58.000','2733','169','2005-08-05 09:05:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7188','2005-07-27 08:32:08.000','2199','259','2005-07-28 08:02:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7189','2005-07-27 08:35:02.000','4419','151','2005-07-30 14:00:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7190','2005-07-27 08:36:01.000','1330','372','2005-07-30 08:32:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7191','2005-07-27 08:36:15.000','4292','495','2005-08-03 08:54:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7192','2005-07-27 08:36:55.000','4329','532','2005-07-30 11:58:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7193','2005-07-27 08:37:00.000','1801','237','2005-07-30 12:51:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7194','2005-07-27 08:39:58.000','254','172','2005-08-01 03:12:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7195','2005-07-27 08:47:01.000','721','157','2005-07-30 08:40:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7196','2005-07-27 08:49:08.000','2998','118','2005-07-29 03:54:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7197','2005-07-27 08:49:32.000','2109','577','2005-07-31 13:50:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7198','2005-07-27 08:50:07.000','4283','520','2005-08-04 09:46:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7199','2005-07-27 08:53:23.000','3685','292','2005-08-03 10:01:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7200','2005-07-27 08:57:38.000','4406','78','2005-08-02 12:29:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7201','2005-07-27 08:57:40.000','482','598','2005-08-04 09:55:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7202','2005-07-27 09:00:20.000','109','560','2005-08-04 03:09:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7203','2005-07-27 09:01:23.000','1685','492','2005-08-04 14:14:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7204','2005-07-27 09:02:31.000','2512','531','2005-08-03 08:56:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7205','2005-07-27 09:06:13.000','2828','36','2005-08-05 07:11:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7206','2005-07-27 09:07:05.000','3752','373','2005-07-31 03:13:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7207','2005-07-27 09:13:26.000','336','51','2005-08-01 10:24:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7208','2005-07-27 09:16:28.000','1523','138','2005-07-28 09:40:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7209','2005-07-27 09:16:53.000','3766','49','2005-07-30 08:09:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7210','2005-07-27 09:19:05.000','1984','176','2005-07-28 04:35:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7211','2005-07-27 09:20:00.000','4445','285','2005-08-02 14:53:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7212','2005-07-27 09:21:22.000','2905','591','2005-08-01 04:47:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7213','2005-07-27 09:22:29.000','2836','502','2005-08-03 13:53:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7214','2005-07-27 09:23:33.000','802','309','2005-08-03 13:14:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7215','2005-07-27 09:24:00.000','2713','473','2005-08-05 07:37:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7216','2005-07-27 09:27:45.000','1812','292','2005-08-03 13:08:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7217','2005-07-27 09:31:44.000','2646','20','2005-07-29 10:48:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7218','2005-07-27 09:34:24.000','2458','530','2005-08-01 07:00:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7219','2005-07-27 09:35:36.000','4046','512','2005-07-29 04:44:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7220','2005-07-27 09:35:54.000','3867','79','2005-08-04 06:00:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7221','2005-07-27 09:37:35.000','3820','579','2005-07-28 11:25:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7222','2005-07-27 09:38:43.000','2330','206','2005-07-28 06:25:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7223','2005-07-27 09:42:27.000','2623','325','2005-08-04 04:02:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7224','2005-07-27 09:44:26.000','2701','106','2005-08-05 12:46:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7225','2005-07-27 09:47:12.000','632','306','2005-08-03 13:19:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7226','2005-07-27 09:47:53.000','3507','370','2005-08-01 08:24:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7227','2005-07-27 09:53:43.000','791','164','2005-08-05 09:36:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7228','2005-07-27 09:55:33.000','1693','481','2005-07-29 04:33:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7229','2005-07-27 10:00:54.000','978','182','2005-07-28 13:58:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7230','2005-07-27 10:01:41.000','1152','245','2005-08-02 11:00:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7231','2005-07-27 10:01:51.000','1638','86','2005-08-05 13:38:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7232','2005-07-27 10:04:19.000','1147','306','2005-07-28 09:43:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7233','2005-07-27 10:08:36.000','213','245','2005-07-31 16:00:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7234','2005-07-27 10:08:45.000','3873','372','2005-07-31 13:58:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7235','2005-07-27 10:09:30.000','1261','354','2005-08-05 11:44:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7236','2005-07-27 10:09:39.000','3004','218','2005-08-03 16:05:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7237','2005-07-27 10:12:36.000','1904','29','2005-07-31 08:40:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7238','2005-07-27 10:13:41.000','1197','116','2005-07-29 11:07:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7239','2005-07-27 10:20:27.000','1786','278','2005-07-29 10:15:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7240','2005-07-27 10:21:15.000','4565','324','2005-08-03 05:04:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7241','2005-07-27 10:25:49.000','2433','354','2005-07-28 05:30:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7242','2005-07-27 10:25:51.000','1966','565','2005-08-04 16:02:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7243','2005-07-27 10:26:11.000','1287','238','2005-07-29 11:43:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7244','2005-07-27 10:27:33.000','1329','339','2005-07-30 13:09:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7245','2005-07-27 10:29:06.000','260','95','2005-08-05 12:09:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7246','2005-07-27 10:30:41.000','2003','333','2005-07-30 05:44:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7247','2005-07-27 10:32:58.000','1445','102','2005-07-29 05:00:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7248','2005-07-27 10:37:45.000','4256','456','2005-08-01 13:13:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7249','2005-07-27 10:39:53.000','2441','425','2005-07-28 14:48:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7250','2005-07-27 10:44:09.000','3410','589','2005-07-28 11:47:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7251','2005-07-27 10:44:55.000','1737','360','2005-08-01 16:12:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7252','2005-07-27 10:45:28.000','3107','549','2005-08-04 06:24:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7253','2005-07-27 10:46:37.000','1950','236','2005-07-28 11:18:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7254','2005-07-27 10:48:50.000','2697','286','2005-07-28 10:34:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7255','2005-07-27 10:49:54.000','2101','502','2005-07-31 10:40:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7256','2005-07-27 10:58:32.000','4275','363','2005-07-29 08:58:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7257','2005-07-27 11:04:17.000','3302','480','2005-08-04 12:32:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7258','2005-07-27 11:05:54.000','2079','494','2005-08-02 11:36:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7259','2005-07-27 11:06:00.000','2345','406','2005-08-02 06:44:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7260','2005-07-27 11:09:28.000','3827','434','2005-08-03 09:41:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7261','2005-07-27 11:15:01.000','942','172','2005-07-28 09:42:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7262','2005-07-27 11:15:36.000','4097','522','2005-07-30 10:49:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7263','2005-07-27 11:17:22.000','725','324','2005-08-04 10:59:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7264','2005-07-27 11:18:58.000','2391','299','2005-08-03 07:43:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7265','2005-07-27 11:19:01.000','3465','290','2005-08-01 09:29:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7266','2005-07-27 11:22:17.000','3379','24','2005-08-04 05:45:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7267','2005-07-27 11:22:55.000','3661','122','2005-08-01 08:13:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7268','2005-07-27 11:23:09.000','2740','260','2005-08-01 12:42:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7269','2005-07-27 11:23:47.000','2089','209','2005-07-31 13:10:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7270','2005-07-27 11:29:02.000','1888','526','2005-08-05 08:04:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7271','2005-07-27 11:29:11.000','858','469','2005-08-05 15:33:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7272','2005-07-27 11:30:20.000','250','364','2005-07-29 17:16:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7273','2005-07-27 11:31:22.000','2465','1','2005-07-31 06:50:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7274','2005-07-27 11:35:34.000','4087','180','2005-08-01 07:10:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7275','2005-07-27 11:39:08.000','775','323','2005-07-30 13:37:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7276','2005-07-27 11:41:57.000','1665','314','2005-08-01 10:39:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7277','2005-07-27 11:48:37.000','1544','67','2005-08-03 07:20:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7278','2005-07-27 11:50:34.000','531','592','2005-08-01 10:22:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7279','2005-07-27 11:50:47.000','1424','12','2005-07-30 11:19:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7280','2005-07-27 11:50:52.000','236','342','2005-07-30 15:53:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7281','2005-07-27 11:59:20.000','1350','491','2005-08-04 12:48:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7282','2005-07-27 12:00:19.000','4418','276','2005-08-04 14:48:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7283','2005-07-27 12:02:41.000','3101','508','2005-08-05 07:25:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7284','2005-07-27 12:12:04.000','2336','52','2005-07-31 11:17:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7285','2005-07-27 12:14:06.000','2855','498','2005-08-03 14:57:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7286','2005-07-27 12:23:49.000','3452','498','2005-08-04 07:57:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7287','2005-07-27 12:24:12.000','926','198','2005-07-31 15:34:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7288','2005-07-27 12:24:59.000','45','226','2005-08-02 15:52:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7289','2005-07-27 12:26:51.000','2157','187','2005-08-02 18:20:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7290','2005-07-27 12:28:45.000','3652','423','2005-08-01 16:18:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7291','2005-07-27 12:30:47.000','310','263','2005-08-01 12:45:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7292','2005-07-27 12:34:14.000','795','468','2005-08-01 18:16:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7293','2005-07-27 12:37:28.000','3333','5','2005-07-30 15:12:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7294','2005-07-27 12:38:14.000','487','313','2005-07-30 13:01:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7295','2005-07-27 12:38:47.000','3396','462','2005-08-05 10:12:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7296','2005-07-27 12:39:48.000','1681','400','2005-08-04 18:24:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7297','2005-07-27 12:39:48.000','1855','135','2005-07-29 17:50:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7298','2005-07-27 12:45:14.000','1653','121','2005-07-30 07:02:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7299','2005-07-27 12:49:56.000','3002','286','2005-08-03 12:25:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7300','2005-07-27 12:50:17.000','4561','272','2005-08-04 18:43:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7301','2005-07-27 12:50:23.000','3367','93','2005-08-01 09:43:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7302','2005-07-27 12:52:13.000','4539','477','2005-07-29 15:13:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7303','2005-07-27 12:54:39.000','1398','163','2005-07-31 09:26:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7304','2005-07-27 12:56:56.000','1162','74','2005-08-05 09:19:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7305','2005-07-27 12:57:06.000','2464','229','2005-07-30 13:13:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7306','2005-07-27 12:57:26.000','2269','207','2005-08-03 09:35:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7307','2005-07-27 12:59:10.000','3882','595','2005-07-29 11:35:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7308','2005-07-27 13:00:25.000','1452','229','2005-08-03 16:04:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7309','2005-07-27 13:00:29.000','633','317','2005-07-29 12:15:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7310','2005-07-27 13:00:55.000','3711','103','2005-07-28 17:54:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7311','2005-07-27 13:02:54.000','2807','582','2005-08-04 09:52:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7312','2005-07-27 13:03:14.000','228','543','2005-07-31 07:56:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7313','2005-07-27 13:11:57.000','1884','396','2005-08-02 07:31:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7314','2005-07-27 13:13:32.000','1376','11','2005-08-03 09:24:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7315','2005-07-27 13:14:56.000','974','208','2005-08-03 08:44:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7316','2005-07-27 13:19:03.000','3344','114','2005-07-28 07:43:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7317','2005-07-27 13:19:41.000','1518','443','2005-07-29 16:16:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7318','2005-07-27 13:25:31.000','1954','301','2005-07-31 11:44:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7319','2005-07-27 13:31:25.000','2370','576','2005-08-04 07:31:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7320','2005-07-27 13:33:35.000','4348','241','2005-07-31 13:22:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7321','2005-07-27 13:33:38.000','3525','38','2005-08-03 07:35:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7322','2005-07-27 13:37:26.000','1810','508','2005-08-03 18:00:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7323','2005-07-27 13:39:40.000','3830','125','2005-07-29 08:45:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7324','2005-07-27 13:42:39.000','2572','462','2005-08-04 10:33:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7325','2005-07-27 13:46:55.000','1727','289','2005-07-28 14:21:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7326','2005-07-27 13:50:40.000','2844','432','2005-07-30 08:16:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7327','2005-07-27 13:53:26.000','4074','508','2005-08-04 17:58:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7328','2005-07-27 13:55:18.000','663','26','2005-08-01 19:52:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7329','2005-07-27 13:55:34.000','906','226','2005-08-04 15:15:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7330','2005-07-27 13:56:46.000','3705','237','2005-08-04 07:56:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7331','2005-07-27 13:57:50.000','2090','60','2005-07-31 08:59:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7332','2005-07-27 13:58:57.000','1761','151','2005-08-02 12:40:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7333','2005-07-27 13:59:11.000','1331','230','2005-07-30 16:04:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7334','2005-07-27 13:59:58.000','3006','461','2005-07-29 11:33:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7335','2005-07-27 14:06:50.000','1219','219','2005-08-05 18:27:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7336','2005-07-27 14:11:45.000','2706','46','2005-07-28 11:00:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7337','2005-07-27 14:12:04.000','3314','525','2005-08-03 14:57:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7338','2005-07-27 14:13:34.000','107','251','2005-08-03 18:36:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7339','2005-07-27 14:17:48.000','3343','316','2005-07-31 12:47:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7340','2005-07-27 14:18:10.000','1344','567','2005-07-30 09:57:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7341','2005-07-27 14:23:55.000','3567','498','2005-07-28 14:11:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7342','2005-07-27 14:25:17.000','4083','504','2005-08-04 10:02:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7343','2005-07-27 14:27:13.000','1177','526','2005-07-30 09:27:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7344','2005-07-27 14:29:28.000','1714','366','2005-07-31 15:36:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7345','2005-07-27 14:29:53.000','2434','572','2005-08-03 18:38:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7346','2005-07-27 14:30:42.000','741','2','2005-08-02 16:48:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7347','2005-07-27 14:31:24.000','3779','225','2005-07-31 16:19:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7348','2005-07-27 14:32:32.000','3238','43','2005-07-28 17:05:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7349','2005-07-27 14:33:00.000','861','195','2005-08-01 15:01:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7350','2005-07-27 14:34:14.000','737','410','2005-08-02 19:19:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7351','2005-07-27 14:37:36.000','2147','445','2005-07-30 09:58:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7352','2005-07-27 14:38:29.000','35','429','2005-07-28 14:24:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7353','2005-07-27 14:38:39.000','1308','357','2005-07-31 19:50:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7354','2005-07-27 14:42:11.000','2395','598','2005-08-03 18:19:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7355','2005-07-27 14:45:59.000','3803','115','2005-08-02 17:23:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7356','2005-07-27 14:47:35.000','309','397','2005-07-28 18:10:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7357','2005-07-27 14:48:31.000','1917','438','2005-08-02 18:07:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7358','2005-07-27 14:49:44.000','175','245','2005-07-28 20:00:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7359','2005-07-27 14:51:04.000','174','183','2005-07-31 16:03:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7360','2005-07-27 14:52:06.000','1312','467','2005-08-02 12:24:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7361','2005-07-27 14:53:55.000','4567','463','2005-07-31 19:48:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7362','2005-07-27 14:58:27.000','1902','419','2005-08-01 11:51:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7363','2005-07-27 14:58:29.000','1649','407','2005-08-05 09:02:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7364','2005-07-27 14:58:40.000','3046','592','2005-08-03 09:01:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7365','2005-07-27 15:00:20.000','3283','450','2005-07-30 12:58:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7366','2005-07-27 15:01:17.000','461','357','2005-08-04 20:28:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7367','2005-07-27 15:05:45.000','1738','383','2005-08-02 13:46:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7368','2005-07-27 15:06:05.000','2265','286','2005-07-31 14:10:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7369','2005-07-27 15:07:58.000','3889','139','2005-07-30 09:16:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7370','2005-07-27 15:15:53.000','2022','89','2005-08-03 19:53:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7371','2005-07-27 15:18:42.000','1807','577','2005-08-01 09:58:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7372','2005-07-27 15:18:42.000','3202','584','2005-08-01 15:18:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7373','2005-07-27 15:19:33.000','3074','488','2005-08-04 10:45:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7374','2005-07-27 15:20:57.000','3184','438','2005-08-05 13:09:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7375','2005-07-27 15:22:33.000','2970','381','2005-08-01 20:06:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7376','2005-07-27 15:23:02.000','488','2','2005-08-04 10:35:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7377','2005-07-27 15:31:28.000','1369','588','2005-08-02 19:59:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7378','2005-07-27 15:31:33.000','3297','144','2005-08-03 17:15:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7379','2005-07-27 15:36:43.000','424','415','2005-07-30 16:37:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7380','2005-07-27 15:37:01.000','988','348','2005-08-03 19:24:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7381','2005-07-27 15:40:26.000','1595','483','2005-08-02 17:26:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7382','2005-07-27 15:43:15.000','356','518','2005-07-28 11:18:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7383','2005-07-27 15:46:53.000','3860','50','2005-08-03 11:10:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7384','2005-07-27 15:49:45.000','3573','585','2005-08-04 15:17:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7385','2005-07-27 15:49:46.000','2996','56','2005-07-28 13:50:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7386','2005-07-27 15:52:10.000','3569','190','2005-08-04 15:13:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7387','2005-07-27 15:54:19.000','3274','233','2005-08-03 14:46:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7388','2005-07-27 15:54:19.000','4559','455','2005-08-01 17:02:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7389','2005-07-27 15:56:15.000','3822','156','2005-07-30 21:28:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7390','2005-07-27 15:59:19.000','1723','230','2005-08-04 10:09:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7391','2005-07-27 16:00:00.000','1153','531','2005-08-04 18:07:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7392','2005-07-27 16:01:05.000','3159','204','2005-08-01 17:23:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7393','2005-07-27 16:02:52.000','2369','181','2005-08-02 13:24:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7394','2005-07-27 16:03:08.000','2399','30','2005-08-04 11:27:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7395','2005-07-27 16:03:11.000','2888','411','2005-07-31 20:26:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7396','2005-07-27 16:03:53.000','3346','595','2005-08-05 10:36:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7397','2005-07-27 16:05:00.000','4474','245','2005-08-01 20:29:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7398','2005-07-27 16:07:22.000','1572','51','2005-08-05 16:16:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7399','2005-07-27 16:16:02.000','1682','526','2005-08-03 18:02:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7400','2005-07-27 16:16:37.000','2874','133','2005-07-31 12:34:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7401','2005-07-27 16:17:55.000','2759','583','2005-08-04 15:48:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7402','2005-07-27 16:19:40.000','2707','287','2005-08-05 14:48:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7403','2005-07-27 16:22:09.000','2551','163','2005-08-01 15:32:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7404','2005-07-27 16:24:43.000','2359','190','2005-07-29 11:40:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7405','2005-07-27 16:25:11.000','2312','42','2005-08-01 12:33:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7406','2005-07-27 16:25:45.000','1412','77','2005-08-05 20:39:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7407','2005-07-27 16:29:04.000','3093','410','2005-08-01 17:47:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7408','2005-07-27 16:31:40.000','625','371','2005-07-31 11:56:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7409','2005-07-27 16:38:24.000','2352','585','2005-07-30 18:06:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7410','2005-07-27 16:41:59.000','1559','337','2005-07-29 22:11:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7411','2005-07-27 16:42:30.000','515','302','2005-08-05 17:38:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7412','2005-07-27 16:44:34.000','950','582','2005-08-04 15:06:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7413','2005-07-27 16:45:40.000','2909','254','2005-07-31 12:02:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7414','2005-07-27 16:46:07.000','3276','265','2005-08-02 20:04:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7415','2005-07-27 16:50:59.000','4410','294','2005-08-02 11:21:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7416','2005-07-27 16:55:25.000','653','350','2005-07-29 11:27:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7417','2005-07-27 16:58:33.000','2952','214','2005-07-30 22:17:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7418','2005-07-27 16:59:09.000','3029','332','2005-07-29 15:08:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7419','2005-07-27 17:04:15.000','3454','352','2005-08-05 21:54:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7420','2005-07-27 17:09:39.000','3505','547','2005-07-30 12:30:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7421','2005-07-27 17:10:05.000','3548','70','2005-08-05 17:55:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7422','2005-07-27 17:10:42.000','3954','286','2005-08-03 19:32:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7423','2005-07-27 17:11:47.000','666','277','2005-07-29 12:29:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7424','2005-07-27 17:14:19.000','660','558','2005-08-01 19:21:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7425','2005-07-27 17:18:35.000','435','263','2005-08-02 11:18:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7426','2005-07-27 17:19:46.000','4420','239','2005-07-29 21:41:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7427','2005-07-27 17:20:16.000','2548','442','2005-08-03 20:38:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7428','2005-07-27 17:21:52.000','243','90','2005-08-05 17:13:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7429','2005-07-27 17:24:50.000','2160','515','2005-08-05 23:02:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7430','2005-07-27 17:26:14.000','4205','562','2005-08-01 13:02:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7431','2005-07-27 17:27:27.000','3931','589','2005-07-31 18:40:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7432','2005-07-27 17:31:40.000','3169','132','2005-07-28 17:44:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7433','2005-07-27 17:32:20.000','1748','282','2005-08-01 18:49:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7434','2005-07-27 17:34:40.000','2927','241','2005-07-29 15:01:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7435','2005-07-27 17:38:44.000','1574','380','2005-07-30 16:57:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7436','2005-07-27 17:39:12.000','299','45','2005-08-01 12:40:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7437','2005-07-27 17:39:18.000','2617','135','2005-07-28 18:33:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7438','2005-07-27 17:40:40.000','1364','52','2005-08-05 15:25:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7439','2005-07-27 17:42:31.000','4091','102','2005-08-05 16:34:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7440','2005-07-27 17:43:27.000','1476','484','2005-08-03 22:12:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7441','2005-07-27 17:46:53.000','4039','198','2005-07-31 23:05:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7442','2005-07-27 17:47:00.000','2471','105','2005-07-28 21:37:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7443','2005-07-27 17:47:43.000','703','380','2005-07-29 13:15:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7444','2005-07-27 17:49:16.000','120','531','2005-07-28 15:05:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7445','2005-07-27 17:57:15.000','4115','394','2005-07-31 20:24:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7446','2005-07-27 18:00:24.000','2337','486','2005-07-29 13:40:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7447','2005-07-27 18:02:08.000','1795','107','2005-07-29 21:15:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7448','2005-07-27 18:06:30.000','3584','175','2005-07-29 15:43:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7449','2005-07-27 18:17:41.000','2084','421','2005-08-01 18:52:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7450','2005-07-27 18:18:35.000','3496','191','2005-08-04 15:18:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7451','2005-07-27 18:18:41.000','2382','29','2005-08-03 13:55:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7452','2005-07-27 18:26:39.000','3482','285','2005-08-04 17:35:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7453','2005-07-27 18:27:13.000','2992','29','2005-07-29 23:52:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7454','2005-07-27 18:27:26.000','3248','75','2005-07-30 23:50:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7455','2005-07-27 18:34:41.000','3815','405','2005-07-31 17:32:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7456','2005-07-27 18:34:53.000','1959','501','2005-07-29 17:46:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7457','2005-07-27 18:35:17.000','3635','510','2005-07-30 12:41:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7458','2005-07-27 18:36:17.000','2964','327','2005-07-31 22:43:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7459','2005-07-27 18:40:20.000','2053','2','2005-08-02 21:07:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7460','2005-07-27 18:41:35.000','919','442','2005-07-29 15:16:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7461','2005-07-27 18:45:15.000','1236','476','2005-07-29 17:19:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7462','2005-07-27 18:47:47.000','878','114','2005-07-29 20:46:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7463','2005-07-27 18:48:32.000','3676','284','2005-07-29 23:54:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7464','2005-07-27 18:49:42.000','845','31','2005-07-28 20:45:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7465','2005-07-27 18:50:30.000','2357','115','2005-07-30 20:55:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7466','2005-07-27 18:51:17.000','2791','53','2005-07-31 16:58:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7467','2005-07-27 18:51:54.000','3869','240','2005-08-03 23:27:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7468','2005-07-27 18:52:27.000','3166','113','2005-08-03 19:29:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7469','2005-07-27 18:57:40.000','3723','189','2005-07-31 00:17:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7470','2005-07-27 19:01:03.000','289','564','2005-08-05 19:16:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7471','2005-07-27 19:02:19.000','1776','95','2005-07-30 15:12:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7472','2005-07-27 19:04:19.000','1535','103','2005-08-03 00:08:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7473','2005-07-27 19:05:40.000','401','341','2005-08-05 14:47:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7474','2005-07-27 19:07:17.000','2971','110','2005-07-30 00:37:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7475','2005-07-27 19:07:43.000','1670','255','2005-08-04 22:12:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7476','2005-07-27 19:08:56.000','2288','64','2005-07-31 16:36:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7477','2005-07-27 19:11:03.000','2692','355','2005-08-02 19:25:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7478','2005-07-27 19:16:02.000','3791','521','2005-08-04 22:30:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7479','2005-07-27 19:18:17.000','218','434','2005-07-30 18:55:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7480','2005-07-27 19:19:53.000','452','344','2005-08-02 01:01:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7481','2005-07-27 19:20:25.000','1804','240','2005-07-29 19:07:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7482','2005-07-27 19:24:16.000','485','348','2005-08-05 18:49:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7483','2005-07-27 19:25:00.000','3678','106','2005-07-29 21:19:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7484','2005-07-27 19:28:17.000','2746','211','2005-07-31 20:05:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7485','2005-07-27 19:29:09.000','631','362','2005-07-30 16:28:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7486','2005-07-27 19:29:24.000','4362','393','2005-08-02 20:46:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7487','2005-07-27 19:32:45.000','4451','58','2005-07-28 15:11:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7488','2005-07-27 19:36:15.000','554','365','2005-08-05 14:14:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7489','2005-07-27 19:39:38.000','3732','16','2005-07-30 23:10:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7490','2005-07-27 19:48:12.000','4503','595','2005-08-04 17:15:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7491','2005-07-27 19:53:23.000','4261','239','2005-07-28 23:25:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7492','2005-07-27 19:54:18.000','908','155','2005-07-31 15:36:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7493','2005-07-27 19:55:46.000','2868','177','2005-08-02 19:46:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7494','2005-07-27 19:56:31.000','2259','60','2005-07-30 14:28:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7495','2005-07-27 20:01:20.000','3446','426','2005-07-30 16:40:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7496','2005-07-27 20:04:05.000','2449','257','2005-08-02 20:12:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7497','2005-07-27 20:05:27.000','286','387','2005-07-30 22:47:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7498','2005-07-27 20:09:31.000','1144','455','2005-07-29 23:38:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7499','2005-07-27 20:10:28.000','3503','157','2005-07-30 16:24:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7500','2005-07-27 20:16:03.000','609','160','2005-07-29 18:50:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7501','2005-07-27 20:16:59.000','1464','587','2005-08-04 00:11:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7502','2005-07-27 20:19:08.000','3229','303','2005-07-28 18:32:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7503','2005-07-27 20:23:12.000','579','3','2005-08-05 18:46:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7504','2005-07-27 20:24:31.000','3354','283','2005-07-30 21:25:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7505','2005-07-27 20:28:03.000','1342','209','2005-08-03 17:04:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7506','2005-07-27 20:28:34.000','2091','527','2005-08-05 18:14:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7507','2005-07-27 20:31:48.000','3618','512','2005-08-02 17:27:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7508','2005-07-27 20:33:08.000','3401','465','2005-08-01 01:29:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7509','2005-07-27 20:37:19.000','4134','228','2005-08-04 19:35:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7510','2005-07-27 20:37:57.000','1617','257','2005-08-01 17:14:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7511','2005-07-27 20:38:40.000','4044','591','2005-08-04 22:36:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7512','2005-07-27 20:40:40.000','1343','352','2005-08-05 01:44:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7513','2005-07-27 20:51:04.000','939','411','2005-08-03 20:15:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7514','2005-07-27 20:51:49.000','400','44','2005-07-29 18:21:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7515','2005-07-27 20:52:37.000','1211','390','2005-08-02 20:17:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7516','2005-07-27 20:55:28.000','2178','134','2005-07-30 00:50:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7517','2005-07-27 20:57:07.000','3177','41','2005-08-04 15:08:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7518','2005-07-27 21:01:16.000','2676','257','2005-08-03 15:26:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7519','2005-07-27 21:01:41.000','4009','124','2005-08-05 19:15:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7520','2005-07-27 21:02:02.000','3875','191','2005-07-28 18:18:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7521','2005-07-27 21:04:42.000','3144','176','2005-08-03 16:06:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7522','2005-07-27 21:11:03.000','2038','478','2005-08-02 16:40:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7523','2005-07-27 21:11:23.000','4153','410','2005-07-28 16:37:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7524','2005-07-27 21:11:44.000','4295','225','2005-08-03 02:17:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7525','2005-07-27 21:13:28.000','4084','281','2005-08-04 19:44:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7526','2005-07-27 21:13:47.000','696','44','2005-08-05 15:23:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7527','2005-07-27 21:14:28.000','2124','426','2005-08-05 21:08:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7528','2005-07-27 21:15:25.000','1218','213','2005-08-03 19:12:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7529','2005-07-27 21:18:08.000','3644','145','2005-08-06 00:59:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7530','2005-07-27 21:18:58.000','3810','98','2005-07-31 01:51:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7531','2005-07-27 21:19:34.000','2393','221','2005-08-06 01:07:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7532','2005-07-27 21:20:52.000','677','34','2005-07-30 21:38:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7533','2005-07-27 21:24:33.000','1791','594','2005-08-05 16:33:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7534','2005-07-27 21:26:17.000','2276','282','2005-08-05 00:23:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7535','2005-07-27 21:32:39.000','772','123','2005-08-05 23:42:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7536','2005-07-27 21:34:09.000','3417','307','2005-08-02 03:26:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7537','2005-07-27 21:36:09.000','4456','269','2005-08-01 01:51:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7538','2005-07-27 21:38:04.000','2486','361','2005-08-02 03:14:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7539','2005-07-27 21:39:42.000','1849','423','2005-08-06 00:12:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7540','2005-07-27 21:39:55.000','2198','207','2005-08-04 18:10:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7541','2005-07-27 21:40:05.000','4100','206','2005-07-29 16:13:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7542','2005-07-27 21:43:04.000','1912','110','2005-07-30 00:02:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7543','2005-07-27 21:44:28.000','1289','526','2005-08-04 21:42:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7544','2005-07-27 21:47:37.000','766','249','2005-08-05 02:29:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7545','2005-07-27 21:48:03.000','2541','292','2005-08-01 22:23:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7546','2005-07-27 21:50:09.000','3683','494','2005-08-05 03:07:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7547','2005-07-27 21:51:48.000','1733','547','2005-08-06 01:05:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7548','2005-07-27 21:53:18.000','2194','484','2005-08-02 17:50:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7549','2005-07-27 21:53:21.000','1765','591','2005-08-05 18:53:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7550','2005-07-27 21:55:07.000','4488','71','2005-07-28 23:34:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7551','2005-07-27 21:59:15.000','2635','304','2005-07-31 19:54:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7552','2005-07-27 22:03:41.000','2166','16','2005-07-28 22:24:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7553','2005-07-27 22:11:36.000','1643','275','2005-08-03 17:52:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7554','2005-07-27 22:12:41.000','1805','135','2005-08-04 01:34:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7555','2005-07-27 22:17:05.000','3421','533','2005-08-02 02:50:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7556','2005-07-27 22:17:17.000','794','188','2005-07-28 19:17:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7557','2005-07-27 22:18:19.000','3152','131','2005-07-29 00:24:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7558','2005-07-27 22:19:08.000','550','80','2005-07-30 21:31:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7559','2005-07-27 22:20:03.000','661','149','2005-08-06 00:26:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7560','2005-07-27 22:20:17.000','3574','562','2005-08-02 23:00:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7561','2005-07-27 22:21:05.000','3433','291','2005-08-04 01:02:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7562','2005-07-27 22:25:15.000','4417','366','2005-08-01 01:21:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7563','2005-07-27 22:25:36.000','2709','453','2005-08-01 03:59:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7564','2005-07-27 22:31:17.000','2887','291','2005-08-01 01:05:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7565','2005-07-27 22:33:59.000','1028','114','2005-07-30 03:03:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7566','2005-07-27 22:34:45.000','1802','144','2005-08-01 22:20:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7567','2005-07-27 22:38:05.000','1066','504','2005-07-30 17:20:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7568','2005-07-27 22:38:53.000','1578','296','2005-07-29 00:51:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7569','2005-07-27 22:38:53.000','2315','528','2005-08-05 19:03:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7570','2005-07-27 22:40:06.000','3189','110','2005-07-28 23:14:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7571','2005-07-27 22:43:42.000','3850','368','2005-07-30 22:17:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7572','2005-07-27 22:44:29.000','3068','532','2005-08-01 03:04:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7573','2005-07-27 22:46:20.000','314','467','2005-08-04 01:55:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7574','2005-07-27 22:53:00.000','298','200','2005-07-29 18:39:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7575','2005-07-27 22:53:52.000','702','582','2005-07-29 02:02:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7576','2005-07-27 22:54:35.000','3374','446','2005-08-03 03:53:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7577','2005-07-27 22:56:07.000','2723','332','2005-08-05 21:23:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7578','2005-07-27 22:58:17.000','4210','332','2005-07-29 23:14:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7579','2005-07-27 23:06:41.000','501','352','2005-07-31 20:08:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7580','2005-07-27 23:07:40.000','338','28','2005-08-05 02:17:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7581','2005-07-27 23:14:35.000','2051','166','2005-07-29 21:30:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7582','2005-07-27 23:15:14.000','3941','128','2005-07-29 03:18:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7583','2005-07-27 23:15:22.000','2890','198','2005-08-04 04:39:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7584','2005-07-27 23:15:46.000','4390','338','2005-08-03 02:18:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7585','2005-07-27 23:18:22.000','467','440','2005-07-30 23:08:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7586','2005-07-27 23:19:29.000','15','316','2005-07-29 23:04:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7587','2005-07-27 23:23:03.000','655','113','2005-08-01 17:34:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7588','2005-07-27 23:23:31.000','4033','360','2005-08-04 02:54:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7589','2005-07-27 23:23:36.000','1569','32','2005-08-04 00:16:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7590','2005-07-27 23:24:24.000','2152','73','2005-07-28 19:53:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7591','2005-07-27 23:25:54.000','651','525','2005-08-02 22:54:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7592','2005-07-27 23:26:04.000','4105','316','2005-07-29 23:48:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7593','2005-07-27 23:28:47.000','1158','436','2005-08-02 19:51:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7594','2005-07-27 23:30:41.000','3230','424','2005-08-02 04:29:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7595','2005-07-27 23:32:23.000','4313','390','2005-08-03 05:28:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7596','2005-07-27 23:33:57.000','2097','275','2005-08-01 20:46:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7597','2005-07-27 23:35:49.000','2856','169','2005-07-30 21:38:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7598','2005-07-27 23:36:01.000','4545','438','2005-07-29 23:35:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7599','2005-07-27 23:38:46.000','3272','87','2005-07-28 22:52:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7600','2005-07-27 23:41:18.000','3492','107','2005-08-06 04:40:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7601','2005-07-27 23:48:15.000','903','228','2005-07-29 02:45:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7602','2005-07-27 23:48:35.000','2516','366','2005-08-04 17:58:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7603','2005-07-27 23:54:44.000','124','497','2005-07-29 01:24:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7604','2005-07-27 23:54:52.000','3720','406','2005-08-05 03:04:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7605','2005-07-27 23:57:01.000','1391','576','2005-08-03 04:11:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7606','2005-07-28 00:02:15.000','637','201','2005-07-29 03:14:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7607','2005-07-28 00:05:53.000','3914','293','2005-07-31 04:13:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7608','2005-07-28 00:08:36.000','1256','167','2005-07-28 18:13:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7609','2005-07-28 00:11:00.000','3655','179','2005-07-31 03:04:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7610','2005-07-28 00:11:35.000','1279','450','2005-07-31 00:33:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7611','2005-07-28 00:11:47.000','3347','467','2005-07-28 18:35:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7612','2005-07-28 00:11:55.000','1411','563','2005-07-30 00:47:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7613','2005-07-28 00:13:58.000','4253','202','2005-08-06 05:36:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7614','2005-07-28 00:14:38.000','3475','440','2005-07-29 18:18:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7615','2005-07-28 00:15:24.000','3884','373','2005-07-31 02:00:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7616','2005-07-28 00:15:26.000','3790','9','2005-07-30 21:52:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7617','2005-07-28 00:18:40.000','2904','340','2005-08-01 01:17:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7618','2005-07-28 00:24:14.000','774','271','2005-08-01 04:35:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7619','2005-07-28 00:25:41.000','1057','419','2005-07-30 04:35:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7620','2005-07-28 00:27:17.000','931','580','2005-07-31 02:04:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7621','2005-07-28 00:34:06.000','1833','88','2005-08-06 00:13:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7622','2005-07-28 00:37:34.000','4014','198','2005-07-31 23:27:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7623','2005-07-28 00:37:41.000','1146','459','2005-08-04 19:38:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7624','2005-07-28 00:37:44.000','2756','415','2005-07-30 21:26:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7625','2005-07-28 00:47:56.000','3129','382','2005-08-02 23:34:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7626','2005-07-28 00:49:01.000','4200','450','2005-07-31 00:43:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7627','2005-07-28 00:56:47.000','782','52','2005-08-02 04:16:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7628','2005-07-28 00:58:04.000','1240','516','2005-08-03 19:16:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7629','2005-07-28 01:00:09.000','2453','229','2005-07-30 06:49:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7630','2005-07-28 01:01:03.000','2798','351','2005-07-31 01:08:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7631','2005-07-28 01:01:15.000','2437','132','2005-08-01 06:16:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7632','2005-07-28 01:02:40.000','3233','181','2005-07-30 05:31:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7633','2005-07-28 01:03:41.000','4171','402','2005-08-01 23:54:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7634','2005-07-28 01:07:01.000','4487','365','2005-07-31 05:00:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7635','2005-07-28 01:08:11.000','55','413','2005-08-01 03:32:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7636','2005-07-28 01:08:36.000','202','51','2005-08-03 21:36:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7637','2005-07-28 01:12:25.000','87','91','2005-08-02 03:48:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7638','2005-07-28 01:13:26.000','1890','172','2005-07-28 20:34:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7639','2005-07-28 01:14:36.000','767','459','2005-07-29 00:19:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7640','2005-07-28 01:14:49.000','3014','229','2005-08-03 21:50:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7641','2005-07-28 01:15:45.000','1868','475','2005-08-04 23:50:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7642','2005-07-28 01:16:51.000','3995','523','2005-08-02 00:45:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7643','2005-07-28 01:19:44.000','4369','407','2005-08-04 21:16:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7644','2005-07-28 01:27:33.000','882','173','2005-07-31 22:58:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7645','2005-07-28 01:27:42.000','830','381','2005-08-03 07:16:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7646','2005-07-28 01:31:45.000','1615','255','2005-07-31 07:16:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7647','2005-07-28 01:35:17.000','3079','36','2005-08-01 00:14:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7648','2005-07-28 01:35:33.000','797','310','2005-08-04 06:21:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7649','2005-07-28 01:37:26.000','2704','318','2005-07-28 21:18:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7650','2005-07-28 01:47:20.000','701','290','2005-08-05 06:00:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7651','2005-07-28 01:48:32.000','2753','401','2005-08-03 03:10:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7652','2005-07-28 01:50:29.000','92','5','2005-07-30 22:23:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7653','2005-07-28 01:58:30.000','814','232','2005-07-28 23:32:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7654','2005-07-28 02:00:14.000','1009','360','2005-07-31 20:50:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7655','2005-07-28 02:01:11.000','2665','513','2005-07-30 23:12:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7656','2005-07-28 02:07:19.000','178','148','2005-07-31 04:05:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7657','2005-07-28 02:09:00.000','2319','518','2005-08-04 21:44:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7658','2005-07-28 02:09:12.000','1798','272','2005-07-30 00:54:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7659','2005-07-28 02:09:45.000','1622','584','2005-08-02 05:34:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7660','2005-07-28 02:10:10.000','4385','4','2005-07-30 04:29:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7661','2005-07-28 02:10:27.000','3060','256','2005-08-05 03:45:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7662','2005-07-28 02:16:08.000','1017','534','2005-08-03 21:51:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7663','2005-07-28 02:19:48.000','832','470','2005-07-30 21:43:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7664','2005-07-28 02:24:23.000','1989','461','2005-07-29 23:01:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7665','2005-07-28 02:28:30.000','1455','590','2005-07-31 20:42:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7666','2005-07-28 02:35:12.000','688','196','2005-08-05 05:43:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7667','2005-07-28 02:37:22.000','2415','443','2005-08-05 21:37:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7668','2005-07-28 02:41:31.000','3880','508','2005-08-02 06:08:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7669','2005-07-28 02:44:07.000','2624','483','2005-07-29 00:54:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7670','2005-07-28 02:44:25.000','1356','252','2005-07-29 21:55:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7671','2005-07-28 02:48:31.000','3464','442','2005-07-30 23:04:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7672','2005-07-28 02:49:41.000','573','542','2005-08-04 02:38:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7673','2005-07-28 02:53:53.000','2368','409','2005-08-06 00:07:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7674','2005-07-28 02:54:30.000','682','177','2005-08-05 23:09:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7675','2005-07-28 02:55:20.000','153','189','2005-07-31 05:27:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7676','2005-07-28 02:55:27.000','1110','508','2005-08-01 03:50:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7677','2005-07-28 02:56:37.000','4464','566','2005-07-31 02:21:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7678','2005-07-28 02:58:16.000','3398','510','2005-08-06 04:22:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7679','2005-07-28 02:58:39.000','1063','444','2005-08-02 04:58:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7680','2005-07-28 02:59:08.000','1784','559','2005-08-03 03:37:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7681','2005-07-28 03:07:09.000','1176','432','2005-07-29 08:30:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7682','2005-07-28 03:07:29.000','3296','400','2005-08-04 08:48:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7683','2005-07-28 03:11:29.000','1760','73','2005-08-04 00:14:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7684','2005-07-28 03:11:54.000','3365','40','2005-07-31 04:40:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7685','2005-07-28 03:13:00.000','2213','468','2005-08-01 00:29:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7686','2005-07-28 03:19:23.000','2144','184','2005-08-04 05:17:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7687','2005-07-28 03:20:26.000','689','325','2005-08-02 05:48:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7688','2005-07-28 03:20:47.000','1179','491','2005-08-06 06:07:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7689','2005-07-28 03:21:24.000','1803','253','2005-07-31 08:01:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7690','2005-07-28 03:26:21.000','1076','150','2005-07-29 00:08:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7691','2005-07-28 03:30:09.000','1579','112','2005-07-29 21:31:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7692','2005-07-28 03:30:21.000','267','392','2005-07-30 22:25:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7693','2005-07-28 03:31:22.000','2479','148','2005-07-31 06:42:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7694','2005-07-28 03:39:25.000','2892','538','2005-07-31 05:47:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7695','2005-07-28 03:41:13.000','2742','323','2005-08-06 05:06:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7696','2005-07-28 03:41:35.000','3463','56','2005-08-06 05:48:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7697','2005-07-28 03:43:45.000','3966','377','2005-08-03 07:55:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7698','2005-07-28 03:44:14.000','3650','561','2005-08-04 03:44:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7699','2005-07-28 03:52:21.000','4332','53','2005-08-01 05:00:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7700','2005-07-28 03:54:14.000','3546','124','2005-08-05 06:20:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7701','2005-07-28 03:54:28.000','1604','306','2005-08-01 08:39:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7702','2005-07-28 03:56:05.000','253','349','2005-07-31 03:29:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7703','2005-07-28 03:59:21.000','2150','3','2005-08-05 08:52:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7704','2005-07-28 04:02:13.000','2342','265','2005-08-04 00:51:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7705','2005-07-28 04:02:58.000','1072','22','2005-08-05 01:19:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7706','2005-07-28 04:03:17.000','994','263','2005-07-29 22:16:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7707','2005-07-28 04:07:47.000','2563','232','2005-07-29 02:02:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7708','2005-07-28 04:19:15.000','398','363','2005-08-04 04:41:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7709','2005-07-28 04:22:14.000','3800','81','2005-07-31 09:18:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7710','2005-07-28 04:24:07.000','3716','77','2005-08-03 22:49:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7711','2005-07-28 04:26:42.000','2695','426','2005-07-29 07:30:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7712','2005-07-28 04:29:53.000','3256','361','2005-08-02 00:57:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7713','2005-07-28 04:32:14.000','2018','572','2005-08-03 04:30:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7714','2005-07-28 04:32:30.000','940','70','2005-08-02 07:10:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7715','2005-07-28 04:32:38.000','3210','512','2005-08-05 00:37:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7716','2005-07-28 04:33:15.000','1493','284','2005-08-04 00:08:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7717','2005-07-28 04:33:54.000','730','459','2005-07-30 02:46:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7718','2005-07-28 04:37:59.000','3587','4','2005-07-29 09:20:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7719','2005-07-28 04:39:09.000','2481','286','2005-08-05 03:15:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7720','2005-07-28 04:41:44.000','185','520','2005-08-04 06:51:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7721','2005-07-28 04:42:58.000','2228','83','2005-07-31 07:52:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7722','2005-07-28 04:44:58.000','3828','309','2005-07-30 01:29:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7723','2005-07-28 04:45:37.000','3263','147','2005-07-30 09:03:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7724','2005-07-28 04:46:30.000','346','3','2005-08-04 08:41:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7725','2005-07-28 04:47:14.000','1922','326','2005-08-04 09:03:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7726','2005-07-28 04:52:19.000','2578','219','2005-08-04 09:05:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7727','2005-07-28 04:52:43.000','2274','123','2005-08-03 01:12:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7728','2005-07-28 04:56:33.000','492','130','2005-07-31 07:54:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7729','2005-07-28 04:57:57.000','1491','89','2005-07-30 09:38:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7730','2005-07-28 04:59:48.000','3118','155','2005-08-04 04:35:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7731','2005-07-28 05:01:18.000','1533','413','2005-07-29 02:22:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7732','2005-07-28 05:03:32.000','3597','158','2005-07-29 10:20:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7733','2005-07-28 05:04:47.000','10','82','2005-08-05 05:12:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7734','2005-07-28 05:08:44.000','2726','135','2005-07-30 09:42:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7735','2005-07-28 05:09:56.000','3949','372','2005-07-31 23:34:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7736','2005-07-28 05:12:04.000','4466','205','2005-08-05 02:28:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7737','2005-07-28 05:15:03.000','1235','494','2005-08-04 01:24:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7738','2005-07-28 05:21:42.000','80','10','2005-08-03 09:46:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7739','2005-07-28 05:21:51.000','1554','186','2005-07-30 02:06:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7740','2005-07-28 05:23:36.000','3613','395','2005-08-01 02:20:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7741','2005-07-28 05:25:55.000','3917','591','2005-08-02 02:40:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7742','2005-07-28 05:33:16.000','1808','49','2005-08-06 01:04:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7743','2005-07-28 05:36:13.000','2883','210','2005-08-03 11:28:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7744','2005-07-28 05:38:20.000','1863','288','2005-07-31 11:00:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7745','2005-07-28 05:46:28.000','1014','285','2005-08-06 07:44:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7746','2005-07-28 05:48:56.000','176','299','2005-08-04 07:33:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7747','2005-07-28 05:50:11.000','1775','78','2005-08-03 09:51:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7748','2005-07-28 05:52:23.000','3523','415','2005-07-31 01:35:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7749','2005-07-28 05:53:36.000','3585','232','2005-08-01 03:49:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7750','2005-07-28 05:55:30.000','820','220','2005-08-06 04:32:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7751','2005-07-28 05:56:13.000','4425','176','2005-08-05 08:08:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7752','2005-07-28 06:01:00.000','2218','209','2005-08-03 06:09:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7753','2005-07-28 06:09:19.000','3071','531','2005-08-06 06:17:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7754','2005-07-28 06:10:55.000','1981','138','2005-07-29 02:46:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7755','2005-07-28 06:22:18.000','1247','449','2005-08-06 11:38:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7756','2005-07-28 06:22:52.000','1611','469','2005-08-05 11:55:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7757','2005-07-28 06:23:00.000','3445','502','2005-07-30 12:02:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7758','2005-07-28 06:23:41.000','4333','356','2005-08-03 06:06:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7759','2005-07-28 06:28:45.000','3381','405','2005-08-03 11:38:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7760','2005-07-28 06:29:45.000','409','307','2005-08-03 01:36:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7761','2005-07-28 06:31:45.000','3568','112','2005-07-30 01:36:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7762','2005-07-28 06:34:23.000','3234','462','2005-08-05 09:55:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7763','2005-07-28 06:35:16.000','2461','116','2005-08-03 02:46:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7764','2005-07-28 06:40:05.000','3537','142','2005-07-30 02:51:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7765','2005-07-28 06:40:33.000','4098','294','2005-07-31 01:25:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7766','2005-07-28 06:41:57.000','2774','292','2005-08-06 11:21:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7767','2005-07-28 06:42:02.000','329','139','2005-08-05 11:19:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7768','2005-07-28 06:44:03.000','2450','123','2005-07-29 09:46:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7769','2005-07-28 06:45:23.000','3250','30','2005-07-30 12:18:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7770','2005-07-28 06:49:35.000','1486','507','2005-08-06 08:16:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7771','2005-07-28 06:52:12.000','1003','175','2005-07-30 12:48:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7772','2005-07-28 06:59:09.000','986','552','2005-08-01 10:49:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7773','2005-07-28 07:02:17.000','4143','380','2005-07-30 04:16:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7774','2005-07-28 07:03:25.000','3483','259','2005-08-03 02:05:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7775','2005-07-28 07:04:36.000','3795','475','2005-08-03 06:36:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7776','2005-07-28 07:04:36.000','4170','385','2005-08-01 09:32:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7777','2005-07-28 07:04:42.000','4422','287','2005-07-29 01:57:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7778','2005-07-28 07:10:11.000','1044','248','2005-08-05 05:09:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7779','2005-07-28 07:11:11.000','3663','414','2005-07-30 11:12:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7780','2005-07-28 07:11:55.000','3069','236','2005-08-06 05:41:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7781','2005-07-28 07:13:20.000','541','539','2005-08-06 05:43:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7782','2005-07-28 07:13:40.000','3770','199','2005-08-05 06:50:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7783','2005-07-28 07:14:43.000','3817','581','2005-08-01 05:03:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7784','2005-07-28 07:15:32.000','3611','505','2005-08-06 05:00:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7785','2005-07-28 07:16:11.000','4277','460','2005-08-02 03:43:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7786','2005-07-28 07:18:26.000','2285','222','2005-07-29 03:00:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7787','2005-07-28 07:19:02.000','2191','203','2005-08-06 02:38:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7788','2005-07-28 07:21:55.000','95','487','2005-08-03 06:33:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7789','2005-07-28 07:22:07.000','2837','426','2005-08-06 10:47:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7790','2005-07-28 07:22:35.000','2327','189','2005-07-30 02:59:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7791','2005-07-28 07:22:51.000','822','514','2005-07-30 03:09:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7792','2005-07-28 07:24:02.000','3736','236','2005-08-04 11:13:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7793','2005-07-28 07:26:14.000','24','32','2005-08-03 07:45:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7794','2005-07-28 07:28:03.000','4509','510','2005-08-06 12:32:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7795','2005-07-28 07:28:16.000','1278','38','2005-07-31 12:03:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7796','2005-07-28 07:39:39.000','622','419','2005-08-02 05:34:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7797','2005-07-28 07:41:07.000','4180','370','2005-07-31 04:13:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7798','2005-07-28 07:41:59.000','3281','236','2005-07-31 12:36:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7799','2005-07-28 07:42:09.000','2163','384','2005-08-02 10:02:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7800','2005-07-28 07:50:59.000','3386','499','2005-07-29 07:31:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7801','2005-07-28 07:51:56.000','2052','9','2005-07-30 12:18:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7802','2005-07-28 07:51:57.000','1108','298','2005-07-29 09:32:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7803','2005-07-28 07:52:13.000','3438','449','2005-08-03 13:35:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7804','2005-07-28 07:56:00.000','592','249','2005-07-30 10:33:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7805','2005-07-28 07:56:41.000','3204','366','2005-08-04 06:53:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7806','2005-07-28 07:58:17.000','4317','440','2005-08-06 10:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7807','2005-07-28 07:58:27.000','2204','504','2005-08-01 02:48:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7808','2005-07-28 07:58:56.000','4052','327','2005-08-02 10:49:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7809','2005-07-28 07:59:46.000','4150','94','2005-08-02 02:56:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7810','2005-07-28 08:00:38.000','30','537','2005-08-02 06:14:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7811','2005-07-28 08:06:01.000','3891','347','2005-07-30 10:08:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7812','2005-07-28 08:06:52.000','4556','237','2005-07-31 09:57:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7813','2005-07-28 08:08:27.000','4216','411','2005-07-30 03:08:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7814','2005-07-28 08:09:48.000','2662','258','2005-08-01 13:14:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7815','2005-07-28 08:14:11.000','3551','300','2005-07-30 02:34:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7816','2005-07-28 08:14:12.000','1422','283','2005-07-30 08:00:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7817','2005-07-28 08:20:55.000','600','259','2005-07-30 11:55:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7818','2005-07-28 08:25:00.000','1672','301','2005-07-29 14:07:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7819','2005-07-28 08:27:14.000','3182','100','2005-08-02 12:34:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7820','2005-07-28 08:28:51.000','4475','459','2005-08-05 10:00:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7821','2005-07-28 08:31:23.000','1184','433','2005-08-03 05:08:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7822','2005-07-28 08:31:45.000','1428','156','2005-07-31 11:06:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7823','2005-07-28 08:32:53.000','84','428','2005-08-06 11:59:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7824','2005-07-28 08:34:47.000','2241','153','2005-08-05 09:43:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7825','2005-07-28 08:34:57.000','4340','348','2005-08-06 02:45:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7826','2005-07-28 08:35:51.000','1473','214','2005-08-05 07:57:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7827','2005-07-28 08:37:22.000','659','422','2005-07-31 04:27:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7828','2005-07-28 08:40:46.000','1710','212','2005-07-30 14:22:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7829','2005-07-28 08:43:39.000','111','5','2005-08-04 14:33:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7830','2005-07-28 08:43:49.000','4492','144','2005-08-04 09:30:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7831','2005-07-28 08:44:21.000','4436','499','2005-07-30 03:25:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7832','2005-07-28 08:46:11.000','284','92','2005-08-04 06:55:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7833','2005-07-28 08:46:14.000','1166','263','2005-08-04 06:13:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7834','2005-07-28 08:46:43.000','4124','278','2005-07-31 07:09:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7835','2005-07-28 08:49:39.000','43','547','2005-08-02 07:16:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7836','2005-07-28 08:55:27.000','1770','481','2005-08-05 09:35:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7837','2005-07-28 08:58:32.000','115','374','2005-07-29 14:11:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7838','2005-07-28 09:00:21.000','2222','550','2005-07-29 05:52:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7839','2005-07-28 09:01:13.000','914','518','2005-08-04 11:46:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7840','2005-07-28 09:03:02.000','2899','482','2005-08-06 06:15:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7841','2005-07-28 09:04:45.000','1092','1','2005-07-30 12:37:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7842','2005-07-28 09:10:06.000','2447','276','2005-08-04 06:52:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7843','2005-07-28 09:10:22.000','3962','75','2005-08-01 11:27:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7844','2005-07-28 09:16:19.000','4220','187','2005-08-05 14:06:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7845','2005-07-28 09:18:07.000','38','352','2005-08-04 10:23:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7846','2005-07-28 09:21:18.000','4201','309','2005-08-06 07:10:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7847','2005-07-28 09:23:14.000','3602','323','2005-08-02 11:02:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7848','2005-07-28 09:24:31.000','162','509','2005-08-05 05:11:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7849','2005-07-28 09:30:02.000','996','423','2005-08-06 12:41:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7850','2005-07-28 09:31:13.000','2913','118','2005-08-02 14:06:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7851','2005-07-28 09:31:58.000','3596','253','2005-08-04 09:58:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7852','2005-07-28 09:34:29.000','3462','123','2005-07-30 05:48:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7853','2005-07-28 09:36:38.000','4053','318','2005-07-29 15:01:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7854','2005-07-28 09:42:31.000','3531','84','2005-08-02 09:25:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7855','2005-07-28 09:43:02.000','2474','288','2005-07-30 12:57:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7856','2005-07-28 09:48:24.000','2376','375','2005-07-29 09:49:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7857','2005-07-28 09:49:40.000','4027','500','2005-08-01 05:34:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7858','2005-07-28 09:50:18.000','992','144','2005-08-05 14:33:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7859','2005-07-28 09:57:17.000','3392','547','2005-08-04 06:04:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7860','2005-07-28 09:58:02.000','2400','241','2005-08-05 06:04:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7861','2005-07-28 10:02:01.000','1781','208','2005-08-06 13:17:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7862','2005-07-28 10:02:25.000','2507','299','2005-08-05 13:10:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7863','2005-07-28 10:05:46.000','1212','182','2005-07-29 14:42:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7864','2005-07-28 10:06:10.000','1238','20','2005-08-04 08:38:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7865','2005-07-28 10:07:04.000','2334','148','2005-08-06 08:16:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7866','2005-07-28 10:08:01.000','1602','101','2005-08-04 09:29:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7867','2005-07-28 10:08:54.000','713','297','2005-07-30 10:26:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7868','2005-07-28 10:08:55.000','3589','43','2005-07-30 11:52:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7869','2005-07-28 10:13:15.000','3005','298','2005-08-03 12:58:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7870','2005-07-28 10:16:03.000','970','240','2005-07-31 16:06:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7871','2005-07-28 10:16:37.000','3990','491','2005-08-05 11:24:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7872','2005-07-28 10:18:16.000','826','66','2005-07-31 10:57:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7873','2005-07-28 10:19:46.000','2947','82','2005-07-31 04:43:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7874','2005-07-28 10:21:52.000','2981','86','2005-08-06 16:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7875','2005-07-28 10:23:48.000','3693','504','2005-08-02 12:09:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7876','2005-07-28 10:24:22.000','3563','577','2005-08-04 07:15:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7877','2005-07-28 10:25:36.000','2576','65','2005-08-05 12:46:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7878','2005-07-28 10:27:10.000','1564','141','2005-07-29 11:22:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7879','2005-07-28 10:27:46.000','1969','125','2005-07-31 07:48:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7880','2005-07-28 10:30:37.000','3670','182','2005-08-03 08:05:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7881','2005-07-28 10:33:22.000','533','249','2005-08-02 12:10:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7882','2005-07-28 10:33:42.000','3922','516','2005-07-29 13:49:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7883','2005-07-28 10:37:20.000','447','526','2005-08-02 05:08:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7884','2005-07-28 10:37:24.000','3871','502','2005-07-31 10:31:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7885','2005-07-28 10:37:41.000','4294','260','2005-08-05 07:56:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7886','2005-07-28 10:37:55.000','237','352','2005-08-04 13:22:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7887','2005-07-28 10:40:12.000','2820','253','2005-08-02 06:09:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7888','2005-07-28 10:40:24.000','545','378','2005-08-01 16:18:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7889','2005-07-28 10:43:21.000','3123','416','2005-07-30 09:11:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7890','2005-07-28 10:43:40.000','3443','553','2005-07-31 06:07:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7891','2005-07-28 10:43:56.000','3637','560','2005-08-05 14:04:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7892','2005-07-28 10:46:58.000','2717','397','2005-07-30 16:03:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7893','2005-07-28 10:49:27.000','3058','479','2005-08-02 06:46:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7894','2005-07-28 10:53:58.000','3532','330','2005-08-02 13:42:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7895','2005-07-28 10:57:15.000','900','67','2005-08-02 15:10:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7896','2005-07-28 11:00:58.000','3561','389','2005-08-04 14:30:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7897','2005-07-28 11:01:51.000','1396','75','2005-07-31 13:13:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7898','2005-07-28 11:08:22.000','2680','499','2005-08-03 12:28:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7899','2005-07-28 11:10:12.000','4130','452','2005-08-02 13:20:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7900','2005-07-28 11:11:33.000','2781','154','2005-08-05 06:29:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7901','2005-07-28 11:12:12.000','4435','280','2005-08-01 08:13:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7902','2005-07-28 11:14:19.000','3066','356','2005-07-30 09:01:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7903','2005-07-28 11:20:36.000','2767','588','2005-07-31 09:16:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7904','2005-07-28 11:25:39.000','316','477','2005-08-06 08:22:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7905','2005-07-28 11:26:57.000','4287','455','2005-08-02 06:14:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7906','2005-07-28 11:31:42.000','1216','85','2005-08-01 11:56:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7907','2005-07-28 11:32:00.000','3252','433','2005-07-30 15:27:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7908','2005-07-28 11:32:57.000','3646','360','2005-08-03 13:30:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7909','2005-07-28 11:38:08.000','3355','210','2005-07-29 13:54:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7910','2005-07-28 11:44:56.000','2044','480','2005-08-05 14:37:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7911','2005-07-28 11:46:45.000','390','3','2005-07-29 07:19:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7912','2005-07-28 11:46:58.000','745','127','2005-08-05 12:50:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7913','2005-07-28 11:47:23.000','4001','459','2005-08-05 06:36:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7914','2005-07-28 11:48:08.000','2796','469','2005-07-30 14:14:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7915','2005-07-28 11:49:46.000','2088','186','2005-08-04 12:21:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7916','2005-07-28 11:49:53.000','3877','13','2005-07-29 15:01:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7917','2005-07-28 11:56:57.000','2071','416','2005-07-29 14:06:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7918','2005-07-28 11:58:53.000','63','473','2005-08-04 12:08:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7919','2005-07-28 11:59:45.000','2138','36','2005-08-06 11:19:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7920','2005-07-28 12:01:19.000','66','48','2005-08-05 07:08:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7921','2005-07-28 12:02:46.000','116','100','2005-08-01 12:08:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7922','2005-07-28 12:05:25.000','817','125','2005-08-02 12:13:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7923','2005-07-28 12:08:29.000','2273','458','2005-08-04 12:30:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7924','2005-07-28 12:08:53.000','656','97','2005-07-30 06:45:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7925','2005-07-28 12:10:02.000','1763','500','2005-08-02 15:50:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7926','2005-07-28 12:13:02.000','180','78','2005-08-05 08:54:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7927','2005-07-28 12:13:42.000','1263','27','2005-08-05 12:02:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7928','2005-07-28 12:15:51.000','912','473','2005-08-05 06:34:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7929','2005-07-28 12:16:40.000','2652','307','2005-07-31 13:09:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7930','2005-07-28 12:21:08.000','4181','320','2005-07-30 11:56:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7931','2005-07-28 12:23:41.000','1923','326','2005-08-06 09:49:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7932','2005-07-28 12:24:54.000','3738','462','2005-07-30 11:33:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7933','2005-07-28 12:27:27.000','3175','297','2005-07-29 10:34:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7934','2005-07-28 12:33:10.000','2642','332','2005-08-04 07:40:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7935','2005-07-28 12:33:17.000','3664','462','2005-08-04 14:40:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7936','2005-07-28 12:33:21.000','563','520','2005-07-30 13:31:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7937','2005-07-28 12:38:22.000','3944','323','2005-07-29 09:19:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7938','2005-07-28 12:39:11.000','2579','114','2005-08-04 16:56:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7939','2005-07-28 12:45:47.000','2004','37','2005-07-30 18:32:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7940','2005-07-28 12:46:47.000','901','409','2005-07-29 06:46:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7941','2005-07-28 12:47:20.000','439','566','2005-08-01 08:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7942','2005-07-28 12:49:44.000','1636','56','2005-07-31 18:07:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7943','2005-07-28 12:50:55.000','2914','346','2005-08-04 11:29:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7944','2005-07-28 12:51:22.000','3148','504','2005-07-30 12:19:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7945','2005-07-28 12:53:58.000','3326','316','2005-08-03 14:04:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7946','2005-07-28 13:01:22.000','99','90','2005-08-03 15:27:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7947','2005-07-28 13:05:50.000','2504','279','2005-08-02 11:16:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7948','2005-07-28 13:06:16.000','215','589','2005-08-05 08:38:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7949','2005-07-28 13:07:24.000','2145','487','2005-08-02 09:41:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7950','2005-07-28 13:21:00.000','2286','122','2005-08-05 18:47:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7951','2005-07-28 13:21:16.000','3979','237','2005-08-06 08:21:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7952','2005-07-28 13:23:49.000','3313','158','2005-08-01 08:50:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7953','2005-07-28 13:24:32.000','4471','319','2005-08-05 16:09:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7954','2005-07-28 13:25:05.000','3735','145','2005-07-29 18:50:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7955','2005-07-28 13:31:36.000','1519','522','2005-07-30 10:03:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7956','2005-07-28 13:32:17.000','4335','118','2005-08-06 14:51:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7957','2005-07-28 13:34:08.000','1623','78','2005-08-05 07:58:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7958','2005-07-28 13:34:34.000','421','593','2005-07-29 16:03:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7959','2005-07-28 13:43:20.000','1549','178','2005-08-02 12:13:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7960','2005-07-28 13:47:08.000','2718','324','2005-08-03 15:17:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7961','2005-07-28 13:47:21.000','3284','45','2005-08-01 09:33:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7962','2005-07-28 13:48:09.000','1746','126','2005-08-03 19:21:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7963','2005-07-28 13:48:38.000','921','247','2005-08-06 19:37:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7964','2005-07-28 13:49:58.000','2528','574','2005-08-03 10:03:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7965','2005-07-28 13:52:57.000','3671','134','2005-07-29 14:54:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7966','2005-07-28 13:53:54.000','2514','91','2005-08-06 15:32:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7967','2005-07-28 13:56:51.000','2040','187','2005-08-03 19:38:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7968','2005-07-28 13:57:35.000','3865','597','2005-08-04 13:40:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7969','2005-07-28 13:57:37.000','2224','123','2005-08-04 19:31:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7970','2005-07-28 13:58:38.000','998','507','2005-08-02 12:27:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7971','2005-07-28 14:00:47.000','1910','445','2005-08-02 10:01:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7972','2005-07-28 14:07:46.000','2930','269','2005-08-01 11:28:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7973','2005-07-28 14:10:06.000','3936','339','2005-07-29 11:26:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7974','2005-07-28 14:11:57.000','2442','380','2005-08-02 19:25:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7975','2005-07-28 14:12:47.000','2565','211','2005-08-05 09:18:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7976','2005-07-28 14:13:24.000','2296','205','2005-08-05 09:01:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7977','2005-07-28 14:15:54.000','3162','389','2005-08-01 18:58:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7978','2005-07-28 14:16:14.000','508','431','2005-08-01 12:53:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7979','2005-07-28 14:16:30.000','3303','94','2005-08-03 09:39:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7980','2005-07-28 14:16:49.000','1019','329','2005-08-05 09:20:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7981','2005-07-28 14:18:25.000','90','392','2005-08-04 15:21:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7982','2005-07-28 14:19:59.000','668','71','2005-07-29 14:09:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7983','2005-07-28 14:23:01.000','1836','115','2005-07-29 11:51:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7984','2005-07-28 14:27:51.000','2893','208','2005-08-04 17:34:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7985','2005-07-28 14:29:01.000','4022','388','2005-08-03 17:20:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7986','2005-07-28 14:30:13.000','1283','395','2005-08-05 09:35:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7987','2005-07-28 14:36:52.000','288','443','2005-08-05 16:49:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7988','2005-07-28 14:37:18.000','2906','517','2005-08-05 10:53:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7989','2005-07-28 14:39:05.000','3196','149','2005-08-05 13:58:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7990','2005-07-28 14:43:08.000','188','232','2005-08-01 10:51:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7991','2005-07-28 14:45:45.000','1133','59','2005-07-29 15:05:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7992','2005-07-28 14:53:06.000','1851','33','2005-07-29 18:17:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7993','2005-07-28 14:56:41.000','2926','353','2005-08-01 17:01:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7994','2005-07-28 14:56:54.000','2431','21','2005-07-30 09:56:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7995','2005-07-28 15:00:09.000','536','89','2005-08-01 12:33:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7996','2005-07-28 15:00:49.000','2171','408','2005-08-04 20:58:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7997','2005-07-28 15:02:25.000','1845','591','2005-08-04 14:35:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7998','2005-07-28 15:08:48.000','1397','598','2005-07-31 16:14:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('7999','2005-07-28 15:10:14.000','2750','170','2005-08-06 17:08:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8000','2005-07-28 15:10:25.000','1644','212','2005-08-06 19:15:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8001','2005-07-28 15:10:55.000','2570','10','2005-08-05 18:23:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8002','2005-07-28 15:11:00.000','22','449','2005-07-31 15:46:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8003','2005-07-28 15:11:27.000','2775','89','2005-08-04 18:35:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8004','2005-07-28 15:14:07.000','4428','393','2005-07-30 19:32:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8005','2005-07-28 15:15:11.000','670','488','2005-07-29 14:54:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8006','2005-07-28 15:15:41.000','3959','109','2005-08-05 19:29:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8007','2005-07-28 15:22:27.000','1942','525','2005-07-30 13:06:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8008','2005-07-28 15:25:55.000','2093','41','2005-08-04 13:16:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8009','2005-07-28 15:25:58.000','337','372','2005-08-04 10:16:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8010','2005-07-28 15:26:20.000','68','467','2005-08-04 18:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8011','2005-07-28 15:26:39.000','4274','497','2005-07-30 13:59:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8012','2005-07-28 15:29:00.000','1513','343','2005-08-05 12:28:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8013','2005-07-28 15:30:26.000','2074','403','2005-08-05 16:29:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8014','2005-07-28 15:32:07.000','2339','11','2005-07-31 20:52:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8015','2005-07-28 15:33:03.000','1814','23','2005-07-30 15:32:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8016','2005-07-28 15:35:41.000','516','391','2005-07-30 20:06:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8017','2005-07-28 15:35:41.000','1764','328','2005-08-01 19:12:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8018','2005-07-28 15:36:48.000','4129','377','2005-08-06 20:04:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8019','2005-07-28 15:37:43.000','1844','84','2005-08-04 15:40:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8020','2005-07-28 15:43:32.000','4459','498','2005-08-05 12:19:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8021','2005-07-28 15:45:24.000','1920','501','2005-08-04 10:49:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8022','2005-07-28 15:48:56.000','294','314','2005-08-06 13:40:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8023','2005-07-28 15:53:29.000','2133','411','2005-07-31 12:26:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8024','2005-07-28 15:55:40.000','1735','90','2005-08-02 09:56:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8025','2005-07-28 16:03:27.000','2932','421','2005-08-03 21:58:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8026','2005-07-28 16:05:38.000','4225','511','2005-07-29 21:28:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8027','2005-07-28 16:09:57.000','1335','436','2005-08-05 18:17:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8028','2005-07-28 16:11:15.000','2715','137','2005-08-05 15:11:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8029','2005-07-28 16:11:21.000','4273','61','2005-08-05 13:52:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8030','2005-07-28 16:12:53.000','2633','30','2005-07-31 17:15:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8031','2005-07-28 16:15:49.000','2196','40','2005-08-02 18:27:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8032','2005-07-28 16:17:00.000','431','230','2005-07-29 13:32:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8033','2005-07-28 16:18:23.000','4268','1','2005-07-30 17:56:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8034','2005-07-28 16:20:26.000','1997','502','2005-08-04 19:11:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8035','2005-07-28 16:23:01.000','1503','14','2005-08-05 10:52:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8036','2005-07-28 16:27:43.000','2741','412','2005-08-01 13:41:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8037','2005-07-28 16:31:20.000','3973','409','2005-07-31 12:18:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8038','2005-07-28 16:32:55.000','1225','30','2005-07-30 21:08:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8039','2005-07-28 16:35:16.000','1996','203','2005-07-30 14:49:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8040','2005-07-28 16:39:43.000','4543','163','2005-08-02 20:00:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8041','2005-07-28 16:39:56.000','763','357','2005-07-30 18:44:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8042','2005-07-28 16:45:11.000','4325','14','2005-08-04 17:16:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8043','2005-07-28 16:45:44.000','208','577','2005-08-01 12:26:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8044','2005-07-28 16:49:12.000','879','442','2005-08-02 22:41:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8045','2005-07-28 16:49:38.000','3427','368','2005-08-03 15:42:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8046','2005-07-28 16:49:41.000','2873','120','2005-07-31 21:33:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8047','2005-07-28 16:49:43.000','2936','292','2005-08-03 14:48:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8048','2005-07-28 16:50:26.000','2721','182','2005-08-06 19:20:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8049','2005-07-28 16:51:58.000','673','42','2005-07-31 22:18:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8050','2005-07-28 16:55:47.000','1864','488','2005-08-02 13:20:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8051','2005-07-28 16:56:16.000','4405','192','2005-07-29 22:48:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8052','2005-07-28 16:57:31.000','2460','166','2005-08-03 18:03:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8053','2005-07-28 16:59:41.000','1511','526','2005-08-03 22:28:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8054','2005-07-28 17:02:18.000','1062','225','2005-08-06 11:55:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8055','2005-07-28 17:02:32.000','4162','304','2005-07-31 22:05:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8056','2005-07-28 17:04:15.000','4018','589','2005-08-03 19:11:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8057','2005-07-28 17:07:13.000','4177','483','2005-08-03 16:25:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8058','2005-07-28 17:07:49.000','2148','404','2005-08-03 22:57:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8059','2005-07-28 17:09:59.000','2611','372','2005-07-31 15:42:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8060','2005-07-28 17:10:02.000','3765','577','2005-08-05 17:11:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8061','2005-07-28 17:12:53.000','650','467','2005-08-05 13:56:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8062','2005-07-28 17:15:06.000','1384','317','2005-07-30 16:56:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8063','2005-07-28 17:15:11.000','935','163','2005-08-04 16:45:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8064','2005-07-28 17:15:38.000','3788','488','2005-08-04 18:04:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8065','2005-07-28 17:15:48.000','413','220','2005-08-04 15:49:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8066','2005-07-28 17:20:09.000','3208','462','2005-07-31 18:36:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8067','2005-07-28 17:20:17.000','3923','209','2005-07-29 21:55:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8068','2005-07-28 17:22:28.000','209','216','2005-07-29 12:24:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8069','2005-07-28 17:23:46.000','2822','178','2005-07-30 16:19:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8070','2005-07-28 17:26:56.000','1606','89','2005-08-01 17:33:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8071','2005-07-28 17:27:48.000','2582','131','2005-08-03 11:48:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8072','2005-07-28 17:27:59.000','2347','99','2005-07-30 19:08:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8073','2005-07-28 17:29:02.000','630','314','2005-08-01 22:17:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8074','2005-07-28 17:33:39.000','1558','1','2005-07-29 20:17:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8075','2005-07-28 17:37:28.000','2175','61','2005-07-29 11:56:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8076','2005-07-28 17:45:58.000','214','17','2005-08-04 18:07:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8077','2005-07-28 17:54:35.000','3253','122','2005-07-29 19:28:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8078','2005-07-28 17:54:42.000','3839','407','2005-07-30 18:18:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8079','2005-07-28 17:58:36.000','3564','432','2005-07-29 14:48:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8080','2005-07-28 18:05:06.000','3035','406','2005-07-29 22:44:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8081','2005-07-28 18:06:46.000','4404','362','2005-08-04 18:54:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8082','2005-07-28 18:08:02.000','3089','423','2005-08-04 14:33:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8083','2005-07-28 18:09:48.000','2187','30','2005-08-04 21:47:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8084','2005-07-28 18:11:58.000','911','571','2005-08-03 23:41:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8085','2005-07-28 18:13:15.000','3059','552','2005-08-04 13:45:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8086','2005-07-28 18:17:14.000','1182','3','2005-07-30 18:22:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8087','2005-07-28 18:21:16.000','1913','295','2005-08-03 12:38:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8088','2005-07-28 18:23:49.000','2590','343','2005-08-06 23:25:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8089','2005-07-28 18:26:47.000','1414','50','2005-08-03 21:28:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8090','2005-07-28 18:27:29.000','1336','387','2005-08-02 14:08:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8091','2005-07-28 18:27:29.000','3025','126','2005-08-01 19:45:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8092','2005-07-28 18:28:07.000','2034','167','2005-07-30 19:17:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8093','2005-07-28 18:29:16.000','1427','533','2005-08-05 21:49:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8094','2005-07-28 18:30:28.000','4276','432','2005-08-05 17:37:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8095','2005-07-28 18:32:40.000','2685','42','2005-08-06 23:45:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8096','2005-07-28 18:32:46.000','502','506','2005-08-06 15:00:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8097','2005-07-28 18:32:49.000','2719','436','2005-08-06 16:09:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8098','2005-07-28 18:34:20.000','1757','41','2005-07-31 19:07:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8099','2005-07-28 18:35:12.000','3694','36','2005-07-30 15:44:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8100','2005-07-28 18:43:11.000','2859','11','2005-08-02 15:56:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8101','2005-07-28 18:47:23.000','731','6','2005-07-31 16:23:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8102','2005-07-28 18:49:43.000','4505','237','2005-08-03 23:04:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8103','2005-07-28 18:50:14.000','4472','397','2005-08-04 16:53:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8104','2005-07-28 18:59:36.000','1080','533','2005-08-03 22:05:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8105','2005-07-28 18:59:46.000','1316','314','2005-07-29 22:51:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8106','2005-07-28 19:02:46.000','963','137','2005-07-30 20:48:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8107','2005-07-28 19:03:16.000','1318','518','2005-08-05 17:18:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8108','2005-07-28 19:07:38.000','1600','295','2005-08-03 15:13:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8109','2005-07-28 19:07:44.000','652','407','2005-07-31 14:59:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8110','2005-07-28 19:07:45.000','1244','225','2005-08-04 22:12:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8111','2005-07-28 19:10:03.000','3226','148','2005-07-29 22:25:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8112','2005-07-28 19:11:07.000','2444','528','2005-08-03 18:41:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8113','2005-07-28 19:14:00.000','4269','541','2005-08-06 00:05:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8114','2005-07-28 19:14:06.000','815','509','2005-08-05 13:16:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8115','2005-07-28 19:14:17.000','2080','106','2005-08-03 14:58:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8116','2005-07-28 19:20:07.000','4497','1','2005-07-29 22:54:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8117','2005-07-28 19:20:16.000','1502','300','2005-08-05 23:55:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8118','2005-07-28 19:22:22.000','331','566','2005-08-01 22:13:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8119','2005-07-28 19:23:15.000','1542','398','2005-08-04 15:53:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8120','2005-07-28 19:24:24.000','3993','235','2005-07-31 14:31:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8121','2005-07-28 19:25:45.000','2229','363','2005-08-02 13:30:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8122','2005-07-28 19:27:37.000','2141','18','2005-07-29 19:48:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8123','2005-07-28 19:28:23.000','2256','138','2005-08-04 19:41:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8124','2005-07-28 19:28:58.000','1187','357','2005-07-31 00:45:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8125','2005-07-28 19:31:48.000','4330','96','2005-07-30 01:09:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8126','2005-07-28 19:32:41.000','719','537','2005-08-05 00:33:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8127','2005-07-28 19:45:19.000','4265','20','2005-07-31 22:07:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8128','2005-07-28 19:46:06.000','2872','71','2005-08-06 16:10:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8129','2005-07-28 19:47:02.000','2546','345','2005-07-31 21:33:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8130','2005-07-28 19:48:15.000','4055','499','2005-08-05 14:18:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8131','2005-07-28 19:55:21.000','437','281','2005-08-02 21:52:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8132','2005-07-28 19:57:31.000','1303','562','2005-08-02 22:16:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8133','2005-07-28 20:01:06.000','849','461','2005-08-01 20:01:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8134','2005-07-28 20:01:23.000','1695','41','2005-08-03 01:00:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8135','2005-07-28 20:03:25.000','1339','164','2005-08-03 01:28:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8136','2005-07-28 20:05:48.000','3434','429','2005-08-01 20:31:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8137','2005-07-28 20:07:18.000','3188','312','2005-08-03 17:41:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8138','2005-07-28 20:12:17.000','1258','371','2005-08-01 15:21:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8139','2005-07-28 20:16:30.000','3651','177','2005-08-03 18:00:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8140','2005-07-28 20:17:50.000','4270','119','2005-07-30 18:07:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8141','2005-07-28 20:21:19.000','361','523','2005-07-30 19:16:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8142','2005-07-28 20:21:54.000','1075','322','2005-07-31 18:39:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8143','2005-07-28 20:23:11.000','3629','429','2005-08-01 18:17:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8144','2005-07-28 20:30:55.000','3556','320','2005-07-31 18:10:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8145','2005-07-28 20:34:41.000','937','198','2005-08-05 15:28:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8146','2005-07-28 20:37:36.000','2430','476','2005-07-31 16:03:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8147','2005-07-28 20:37:56.000','628','228','2005-07-30 18:26:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8148','2005-07-28 20:39:47.000','537','347','2005-08-02 16:29:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8149','2005-07-28 20:48:12.000','1790','591','2005-08-01 20:07:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8150','2005-07-28 20:50:41.000','3489','497','2005-08-02 00:43:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8151','2005-07-28 20:50:52.000','4370','495','2005-07-31 14:50:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8152','2005-07-28 20:53:05.000','2557','46','2005-08-06 20:03:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8153','2005-07-28 20:55:49.000','2173','347','2005-08-01 15:56:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8154','2005-07-28 20:56:18.000','1180','285','2005-08-01 21:56:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8155','2005-07-28 20:57:06.000','3023','428','2005-08-02 18:40:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8156','2005-07-28 20:59:04.000','1977','257','2005-08-01 01:52:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8157','2005-07-28 21:06:45.000','915','566','2005-08-04 16:06:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8158','2005-07-28 21:08:46.000','4327','458','2005-08-01 21:50:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8159','2005-07-28 21:09:28.000','1118','47','2005-08-04 15:34:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8160','2005-07-28 21:10:30.000','2446','138','2005-08-05 16:52:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8161','2005-07-28 21:11:00.000','848','555','2005-08-03 23:32:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8162','2005-07-28 21:11:46.000','4393','107','2005-08-04 18:26:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8163','2005-07-28 21:11:48.000','1919','157','2005-07-31 18:30:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8164','2005-07-28 21:17:19.000','1674','461','2005-07-30 21:12:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8165','2005-07-28 21:23:06.000','3460','197','2005-08-01 21:32:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8166','2005-07-28 21:23:33.000','3906','42','2005-08-03 21:07:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8167','2005-07-28 21:25:45.000','3181','311','2005-08-04 18:04:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8168','2005-07-28 21:28:32.000','1120','365','2005-07-30 02:10:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8169','2005-07-28 21:29:46.000','4086','366','2005-08-06 22:29:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8170','2005-07-28 21:32:29.000','2495','40','2005-08-03 22:02:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8171','2005-07-28 21:32:57.000','3380','296','2005-07-30 21:19:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8172','2005-07-28 21:34:36.000','1237','329','2005-08-06 23:53:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8173','2005-07-28 21:35:44.000','4377','332','2005-08-06 19:15:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8174','2005-07-28 21:36:52.000','465','359','2005-08-04 00:32:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8175','2005-07-28 21:38:16.000','641','429','2005-08-07 01:34:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8176','2005-07-28 21:42:08.000','3527','347','2005-08-03 22:59:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8177','2005-07-28 21:43:54.000','3696','122','2005-08-02 22:38:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8178','2005-07-28 21:54:31.000','2825','503','2005-08-02 23:56:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8179','2005-07-28 22:05:13.000','2902','578','2005-07-30 21:57:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8180','2005-07-28 22:05:24.000','3236','281','2005-08-01 19:09:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8181','2005-07-28 22:18:38.000','357','522','2005-08-06 02:43:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8182','2005-07-28 22:19:12.000','4120','427','2005-08-01 22:40:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8183','2005-07-28 22:21:07.000','1545','119','2005-08-04 19:20:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8184','2005-07-28 22:22:35.000','1249','160','2005-07-31 19:30:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8185','2005-07-28 22:23:49.000','2452','568','2005-07-31 00:07:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8186','2005-07-28 22:30:27.000','4255','102','2005-07-31 21:08:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8187','2005-07-28 22:33:53.000','945','87','2005-08-03 03:54:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8188','2005-07-28 22:34:12.000','3826','10','2005-08-01 02:32:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8189','2005-07-28 22:36:26.000','3515','361','2005-08-04 00:12:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8190','2005-07-28 22:47:06.000','2290','267','2005-08-04 21:51:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8191','2005-07-28 22:47:14.000','1777','508','2005-07-31 23:13:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8192','2005-07-28 22:49:11.000','255','552','2005-07-30 04:13:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8193','2005-07-28 22:50:50.000','2402','15','2005-08-01 04:14:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8194','2005-07-28 22:51:44.000','1148','424','2005-07-29 17:13:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8195','2005-07-28 22:52:58.000','3989','590','2005-08-04 02:12:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8196','2005-07-28 22:56:11.000','3435','21','2005-08-06 04:53:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8197','2005-07-28 23:04:10.000','4126','407','2005-08-05 00:06:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8198','2005-07-28 23:08:05.000','1767','356','2005-08-06 00:43:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8199','2005-07-28 23:10:25.000','404','471','2005-08-04 23:30:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8200','2005-07-28 23:10:46.000','353','185','2005-07-29 18:35:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8201','2005-07-28 23:10:48.000','220','567','2005-08-01 00:50:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8202','2005-07-28 23:11:45.000','3802','75','2005-08-03 21:57:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8203','2005-07-28 23:14:56.000','3878','100','2005-07-31 04:19:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8204','2005-07-28 23:18:29.000','2472','398','2005-08-02 04:49:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8205','2005-07-28 23:18:48.000','2944','434','2005-07-30 00:37:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8206','2005-07-28 23:20:31.000','2979','422','2005-08-04 21:36:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8207','2005-07-28 23:26:31.000','1195','475','2005-08-06 03:26:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8208','2005-07-28 23:26:35.000','1362','530','2005-08-01 23:00:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8209','2005-07-28 23:29:28.000','2484','127','2005-08-07 04:22:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8210','2005-07-28 23:31:05.000','3424','300','2005-08-06 17:36:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8211','2005-07-28 23:34:22.000','1859','193','2005-08-04 21:18:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8212','2005-07-28 23:37:23.000','1305','159','2005-08-04 04:33:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8213','2005-07-28 23:37:33.000','3816','17','2005-07-31 00:32:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8214','2005-07-28 23:37:57.000','352','509','2005-08-07 00:29:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8215','2005-07-28 23:43:56.000','2921','437','2005-08-03 19:30:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8216','2005-07-28 23:43:59.000','2211','254','2005-08-06 05:05:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8217','2005-07-28 23:44:13.000','3747','206','2005-08-03 21:27:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8218','2005-07-28 23:45:41.000','2769','578','2005-08-02 00:14:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8219','2005-07-28 23:46:31.000','3609','227','2005-08-03 00:11:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8220','2005-07-28 23:46:41.000','1061','360','2005-07-31 22:14:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8221','2005-07-28 23:47:19.000','3138','496','2005-08-02 20:42:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8222','2005-07-28 23:51:53.000','2999','278','2005-08-05 22:48:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8223','2005-07-28 23:56:01.000','4508','282','2005-08-03 22:27:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8224','2005-07-28 23:59:02.000','1995','467','2005-08-02 04:54:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8225','2005-07-28 23:59:29.000','3631','41','2005-07-30 03:27:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8226','2005-07-29 00:01:04.000','3541','368','2005-08-01 19:08:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8227','2005-07-29 00:02:22.000','269','167','2005-07-31 04:05:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8228','2005-07-29 00:08:58.000','1955','72','2005-08-03 00:12:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8229','2005-07-29 00:09:08.000','4272','498','2005-07-31 19:29:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8230','2005-07-29 00:12:59.000','1937','2','2005-08-06 19:52:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8231','2005-07-29 00:14:37.000','1083','331','2005-07-31 19:12:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8232','2005-07-29 00:14:37.000','3255','526','2005-08-06 00:57:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8233','2005-07-29 00:16:23.000','1640','93','2005-08-03 05:17:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8234','2005-07-29 00:19:20.000','644','227','2005-08-03 19:16:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8235','2005-07-29 00:22:56.000','1581','320','2005-08-03 04:03:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8236','2005-07-29 00:27:04.000','1901','369','2005-07-31 05:02:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8237','2005-07-29 00:29:56.000','608','441','2005-08-06 03:10:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8238','2005-07-29 00:30:06.000','2941','320','2005-08-02 22:52:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8239','2005-07-29 00:31:39.000','3951','549','2005-07-29 19:33:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8240','2005-07-29 00:33:32.000','1975','509','2005-08-05 21:25:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8241','2005-07-29 00:33:36.000','4297','26','2005-08-03 01:31:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8242','2005-07-29 00:34:27.000','509','99','2005-08-05 23:13:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8243','2005-07-29 00:35:33.000','1873','481','2005-08-04 06:02:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8244','2005-07-29 00:35:34.000','1552','175','2005-08-05 04:18:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8245','2005-07-29 00:37:09.000','3330','555','2005-08-05 05:48:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8246','2005-07-29 00:38:41.000','1724','146','2005-08-05 06:28:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8247','2005-07-29 00:41:38.000','2607','539','2005-08-06 20:29:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8248','2005-07-29 00:41:56.000','2017','272','2005-08-05 18:53:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8249','2005-07-29 00:48:44.000','3331','57','2005-08-07 04:25:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8250','2005-07-29 00:49:15.000','4519','533','2005-08-04 02:53:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8251','2005-07-29 00:50:14.000','2317','408','2005-08-03 23:52:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8252','2005-07-29 00:54:17.000','3312','257','2005-07-31 20:34:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8253','2005-07-29 00:57:06.000','2388','76','2005-08-07 01:46:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8254','2005-07-29 00:59:31.000','1787','392','2005-08-03 23:43:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8255','2005-07-29 01:02:30.000','3715','224','2005-08-01 22:39:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8256','2005-07-29 01:02:42.000','1483','537','2005-07-31 22:29:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8257','2005-07-29 01:03:20.000','3024','566','2005-08-04 21:54:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8258','2005-07-29 01:03:42.000','1379','370','2005-08-04 22:08:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8259','2005-07-29 01:05:16.000','343','274','2005-08-01 23:27:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8260','2005-07-29 01:11:00.000','4249','366','2005-08-06 00:36:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8261','2005-07-29 01:11:05.000','1915','50','2005-08-04 03:13:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8262','2005-07-29 01:11:18.000','1341','563','2005-08-02 05:17:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8263','2005-07-29 01:11:23.000','28','5','2005-07-31 01:53:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8264','2005-07-29 01:18:50.000','2987','175','2005-08-03 05:31:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8265','2005-07-29 01:20:15.000','2389','409','2005-08-06 19:32:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8266','2005-07-29 01:20:16.000','1972','196','2005-07-30 04:31:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8267','2005-07-29 01:21:02.000','4107','131','2005-08-04 19:34:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8268','2005-07-29 01:23:23.000','4239','421','2005-08-05 01:36:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8269','2005-07-29 01:26:54.000','2778','376','2005-08-04 22:42:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8270','2005-07-29 01:27:22.000','3565','282','2005-07-29 20:55:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8271','2005-07-29 01:27:44.000','83','481','2005-08-07 05:01:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8272','2005-07-29 01:29:51.000','70','346','2005-08-03 21:56:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8273','2005-07-29 01:33:16.000','4244','532','2005-08-06 04:26:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8274','2005-07-29 01:34:32.000','2634','340','2005-08-01 20:15:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8275','2005-07-29 01:35:47.000','4432','336','2005-07-30 02:16:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8276','2005-07-29 01:38:43.000','2451','466','2005-08-03 23:00:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8277','2005-07-29 01:38:53.000','1296','13','2005-08-04 07:09:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8278','2005-07-29 01:42:55.000','768','265','2005-08-05 01:55:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8279','2005-07-29 01:43:37.000','3838','176','2005-08-03 02:36:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8280','2005-07-29 01:45:51.000','1208','195','2005-08-05 22:51:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8281','2005-07-29 01:46:00.000','899','441','2005-08-04 23:09:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8282','2005-07-29 01:49:04.000','980','462','2005-08-05 01:51:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8283','2005-07-29 01:52:22.000','2002','300','2005-08-05 03:22:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8284','2005-07-29 01:56:40.000','4371','446','2005-08-07 07:15:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8285','2005-07-29 02:00:18.000','678','56','2005-08-03 20:43:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8286','2005-07-29 02:02:46.000','4092','87','2005-08-06 06:00:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8287','2005-07-29 02:03:58.000','812','178','2005-08-07 02:11:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8288','2005-07-29 02:04:22.000','1822','55','2005-08-05 04:21:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8289','2005-07-29 02:23:24.000','4579','459','2005-08-06 03:23:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8290','2005-07-29 02:24:08.000','3823','462','2005-08-03 01:02:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8291','2005-07-29 02:28:25.000','2817','455','2005-08-03 20:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8292','2005-07-29 02:29:36.000','4003','192','2005-08-07 08:06:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8293','2005-07-29 02:30:50.000','831','71','2005-08-04 03:09:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8294','2005-07-29 02:32:41.000','1811','520','2005-08-02 06:28:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8295','2005-07-29 02:42:14.000','2065','406','2005-07-30 22:22:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8296','2005-07-29 02:43:25.000','2543','88','2005-08-01 00:23:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8297','2005-07-29 02:45:46.000','3774','349','2005-07-31 20:49:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8298','2005-07-29 02:47:36.000','952','493','2005-08-05 07:58:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8299','2005-07-29 02:56:00.000','1797','173','2005-07-30 22:35:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8300','2005-07-29 02:57:59.000','4364','222','2005-08-05 01:12:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8301','2005-07-29 03:00:08.000','562','101','2005-08-01 04:26:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8302','2005-07-29 03:01:24.000','1314','103','2005-07-30 01:08:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8303','2005-07-29 03:05:56.000','1620','574','2005-08-04 06:13:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8304','2005-07-29 03:08:30.000','4431','119','2005-08-02 03:04:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8305','2005-07-29 03:08:47.000','3916','566','2005-08-06 07:49:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8306','2005-07-29 03:12:26.000','1708','232','2005-08-01 23:26:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8307','2005-07-29 03:18:34.000','3197','39','2005-08-06 05:51:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8308','2005-07-29 03:22:15.000','601','582','2005-08-04 21:38:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8309','2005-07-29 03:22:20.000','2250','446','2005-08-01 06:30:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8310','2005-07-29 03:25:56.000','2637','238','2005-08-06 23:18:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8311','2005-07-29 03:26:07.000','3623','63','2005-08-02 01:46:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8312','2005-07-29 03:32:38.000','3996','143','2005-07-31 02:12:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8313','2005-07-29 03:34:21.000','2736','91','2005-08-02 01:32:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8314','2005-07-29 03:35:04.000','2182','118','2005-08-06 08:43:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8315','2005-07-29 03:37:07.000','1420','135','2005-07-29 23:22:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8316','2005-07-29 03:38:49.000','4118','549','2005-08-03 07:41:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8317','2005-07-29 03:39:07.000','3898','415','2005-08-03 00:14:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8318','2005-07-29 03:44:30.000','4524','167','2005-07-30 05:03:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8319','2005-07-29 03:44:52.000','747','280','2005-08-01 00:35:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8320','2005-07-29 03:49:58.000','1285','513','2005-08-03 01:00:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8321','2005-07-29 03:50:54.000','1875','354','2005-08-01 02:08:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8322','2005-07-29 03:52:49.000','301','541','2005-08-02 22:53:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8323','2005-07-29 03:52:59.000','2766','87','2005-08-06 01:49:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8324','2005-07-29 03:56:05.000','1467','98','2005-08-02 01:41:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8325','2005-07-29 03:57:27.000','932','362','2005-08-06 22:30:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8326','2005-07-29 03:58:49.000','108','1','2005-08-01 05:16:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8327','2005-07-29 04:00:52.000','2928','317','2005-07-31 08:27:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8328','2005-07-29 04:06:24.000','4454','314','2005-08-03 22:24:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8329','2005-07-29 04:06:33.000','3468','108','2005-08-06 01:46:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8330','2005-07-29 04:09:07.000','2294','412','2005-08-05 05:00:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8331','2005-07-29 04:13:29.000','18','148','2005-08-04 07:09:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8332','2005-07-29 04:16:00.000','1142','217','2005-08-03 03:34:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8333','2005-07-29 04:16:40.000','823','494','2005-08-02 10:10:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8334','2005-07-29 04:18:25.000','982','154','2005-08-07 07:18:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8335','2005-07-29 04:18:25.000','1719','143','2005-07-31 08:12:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8336','2005-07-29 04:20:42.000','2120','210','2005-08-05 10:17:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8337','2005-07-29 04:31:55.000','752','157','2005-08-02 02:38:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8338','2005-07-29 04:40:39.000','2257','389','2005-08-07 04:40:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8339','2005-07-29 04:41:13.000','1870','129','2005-07-30 09:01:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8340','2005-07-29 04:41:44.000','1553','386','2005-08-07 10:33:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8341','2005-07-29 04:42:01.000','4208','309','2005-08-04 00:58:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8342','2005-07-29 04:45:05.000','3301','572','2005-08-01 07:20:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8343','2005-07-29 04:45:16.000','4267','439','2005-08-02 03:37:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8344','2005-07-29 04:45:25.000','221','257','2005-08-06 01:53:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8345','2005-07-29 04:47:37.000','1034','129','2005-08-02 07:25:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8346','2005-07-29 04:48:22.000','2475','385','2005-08-01 04:22:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8347','2005-07-29 04:49:25.000','4407','157','2005-07-31 00:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8348','2005-07-29 04:49:26.000','4533','174','2005-08-05 03:26:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8349','2005-07-29 04:50:22.000','534','416','2005-08-05 08:50:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8350','2005-07-29 04:50:39.000','3726','513','2005-07-31 05:36:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8351','2005-07-29 04:50:53.000','2963','202','2005-07-30 07:28:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8352','2005-07-29 04:52:01.000','2710','168','2005-08-06 07:39:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8353','2005-07-29 04:52:10.000','26','585','2005-07-30 04:01:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8354','2005-07-29 04:56:26.000','4476','579','2005-08-01 08:04:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8355','2005-07-29 04:57:43.000','4569','270','2005-08-03 06:25:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8356','2005-07-29 04:58:56.000','2951','483','2005-08-06 03:07:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8357','2005-07-29 04:59:44.000','892','76','2005-08-01 04:26:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8358','2005-07-29 05:00:58.000','1449','372','2005-08-01 02:49:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8359','2005-07-29 05:02:12.000','140','531','2005-08-04 08:52:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8360','2005-07-29 05:08:00.000','4135','62','2005-08-02 00:40:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8361','2005-07-29 05:08:57.000','3404','360','2005-08-03 02:49:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8362','2005-07-29 05:09:11.000','2287','223','2005-08-04 00:08:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8363','2005-07-29 05:10:08.000','1607','302','2005-08-06 00:11:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8364','2005-07-29 05:10:31.000','1361','362','2005-07-30 04:02:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8365','2005-07-29 05:11:00.000','53','280','2005-07-30 05:30:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8366','2005-07-29 05:11:14.000','479','39','2005-08-05 01:48:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8367','2005-07-29 05:11:19.000','4551','383','2005-08-02 00:35:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8368','2005-07-29 05:15:41.000','1410','200','2005-08-07 01:35:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8369','2005-07-29 05:15:42.000','1456','507','2005-08-01 03:36:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8370','2005-07-29 05:16:21.000','1206','121','2005-08-06 23:16:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8371','2005-07-29 05:16:35.000','2466','396','2005-07-31 01:49:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8372','2005-07-29 05:18:08.000','754','523','2005-08-06 09:39:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8373','2005-07-29 05:19:53.000','2070','457','2005-08-04 04:39:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8374','2005-07-29 05:24:02.000','1084','589','2005-08-05 03:55:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8375','2005-07-29 05:25:30.000','3634','125','2005-08-04 01:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8376','2005-07-29 05:25:32.000','3588','43','2005-08-01 07:42:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8377','2005-07-29 05:27:40.000','270','73','2005-07-30 02:52:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8378','2005-07-29 05:28:35.000','3500','347','2005-08-02 05:55:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8379','2005-07-29 05:29:40.000','3907','193','2005-08-06 05:56:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8380','2005-07-29 05:31:29.000','2279','145','2005-08-02 01:27:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8381','2005-07-29 05:31:44.000','865','313','2005-07-31 09:20:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8382','2005-07-29 05:33:21.000','317','238','2005-08-03 03:38:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8383','2005-07-29 05:36:47.000','3809','495','2005-08-03 05:53:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8384','2005-07-29 05:38:43.000','3807','227','2005-08-01 07:31:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8385','2005-07-29 05:39:16.000','4108','233','2005-08-03 00:30:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8386','2005-07-29 05:45:30.000','388','435','2005-08-05 03:56:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8387','2005-07-29 05:47:27.000','910','428','2005-07-31 06:26:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8388','2005-07-29 05:48:15.000','770','178','2005-08-05 06:24:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8389','2005-07-29 05:50:09.000','1241','133','2005-08-06 05:15:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8390','2005-07-29 05:52:26.000','581','32','2005-08-04 08:12:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8391','2005-07-29 05:52:50.000','2134','36','2005-08-03 04:45:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8392','2005-07-29 06:00:27.000','1323','65','2005-08-02 00:30:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8393','2005-07-29 06:02:11.000','3369','504','2005-08-07 03:23:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8394','2005-07-29 06:02:14.000','3933','148','2005-08-03 08:15:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8395','2005-07-29 06:03:30.000','1471','535','2005-07-31 09:08:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8396','2005-07-29 06:07:00.000','3911','516','2005-07-30 05:32:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8397','2005-07-29 06:09:35.000','3542','518','2005-08-01 02:08:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8398','2005-07-29 06:12:40.000','348','220','2005-08-02 05:01:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8399','2005-07-29 06:20:18.000','233','286','2005-08-04 01:26:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8400','2005-07-29 06:23:56.000','3680','573','2005-07-31 02:41:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8401','2005-07-29 06:25:08.000','3121','232','2005-08-01 06:49:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8402','2005-07-29 06:25:45.000','186','47','2005-08-07 10:48:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8403','2005-07-29 06:26:39.000','1360','163','2005-08-02 05:37:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8404','2005-07-29 06:27:01.000','2086','65','2005-08-07 04:33:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8405','2005-07-29 06:28:19.000','2164','76','2005-08-07 08:14:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8406','2005-07-29 06:34:45.000','2047','274','2005-08-06 02:28:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8407','2005-07-29 06:37:02.000','2985','336','2005-08-04 03:13:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8408','2005-07-29 06:40:40.000','1841','90','2005-07-30 10:02:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8409','2005-07-29 06:41:22.000','4314','303','2005-07-31 11:21:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8410','2005-07-29 06:41:36.000','3448','277','2005-08-02 08:38:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8411','2005-07-29 06:44:23.000','3085','412','2005-08-07 03:56:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8412','2005-07-29 06:44:50.000','743','312','2005-08-06 05:04:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8413','2005-07-29 06:47:39.000','2762','104','2005-08-02 09:15:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8414','2005-07-29 06:48:35.000','1337','433','2005-08-06 10:54:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8415','2005-07-29 06:52:27.000','2903','128','2005-08-02 10:40:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8416','2005-07-29 06:52:54.000','1999','315','2005-08-05 09:50:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8417','2005-07-29 06:53:36.000','750','227','2005-08-06 09:31:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8418','2005-07-29 06:54:21.000','3081','355','2005-08-05 06:50:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8419','2005-07-29 06:54:48.000','4574','37','2005-08-06 05:02:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8420','2005-07-29 07:00:45.000','4184','376','2005-08-06 02:20:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8421','2005-07-29 07:00:47.000','3399','588','2005-08-02 08:03:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8422','2005-07-29 07:02:55.000','3104','7','2005-08-03 12:35:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8423','2005-07-29 07:02:57.000','187','468','2005-08-06 04:59:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8424','2005-07-29 07:06:03.000','366','138','2005-08-06 12:00:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8425','2005-07-29 07:06:21.000','3491','486','2005-08-05 07:57:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8426','2005-07-29 07:07:48.000','1840','564','2005-08-07 08:56:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8427','2005-07-29 07:08:36.000','1624','441','2005-07-30 11:54:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8428','2005-07-29 07:10:14.000','2545','398','2005-08-06 02:29:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8429','2005-07-29 07:11:49.000','2456','588','2005-07-31 02:45:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8430','2005-07-29 07:12:17.000','3377','219','2005-08-03 09:53:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8431','2005-07-29 07:12:48.000','1583','193','2005-08-01 10:03:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8432','2005-07-29 07:13:33.000','3896','572','2005-07-30 03:14:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8433','2005-07-29 07:19:16.000','1957','125','2005-08-05 03:29:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8434','2005-07-29 07:20:14.000','40','141','2005-07-30 08:50:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8435','2005-07-29 07:20:16.000','4462','520','2005-08-02 09:54:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8436','2005-07-29 07:21:20.000','2702','598','2005-07-31 12:56:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8437','2005-07-29 07:23:43.000','2118','96','2005-08-04 10:52:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8438','2005-07-29 07:25:42.000','720','97','2005-08-04 07:39:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8439','2005-07-29 07:28:43.000','182','224','2005-08-04 11:22:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8440','2005-07-29 07:31:26.000','489','175','2005-08-04 07:04:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8441','2005-07-29 07:33:05.000','1000','526','2005-08-04 04:00:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8442','2005-07-29 07:33:07.000','4345','185','2005-08-03 03:09:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8443','2005-07-29 07:33:12.000','1059','251','2005-08-02 01:36:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8444','2005-07-29 07:36:13.000','3329','213','2005-08-05 04:55:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8445','2005-07-29 07:37:48.000','2792','384','2005-08-04 10:43:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8446','2005-07-29 07:38:10.000','1593','235','2005-08-06 04:39:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8447','2005-07-29 07:38:14.000','930','11','2005-08-05 02:27:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8448','2005-07-29 07:41:54.000','4349','393','2005-08-02 13:12:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8449','2005-07-29 07:42:25.000','2610','273','2005-07-30 06:07:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8450','2005-07-29 07:44:05.000','484','401','2005-08-01 12:23:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8451','2005-07-29 07:44:56.000','3309','495','2005-08-06 02:29:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8452','2005-07-29 07:45:00.000','4312','16','2005-08-05 09:46:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8453','2005-07-29 07:46:29.000','2907','32','2005-07-30 07:07:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8454','2005-07-29 07:49:04.000','159','244','2005-08-03 04:43:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8455','2005-07-29 07:53:06.000','4043','404','2005-08-05 05:29:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8456','2005-07-29 07:58:31.000','671','388','2005-08-05 07:17:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8457','2005-07-29 07:59:03.000','3371','239','2005-08-04 08:42:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8458','2005-07-29 08:05:09.000','3857','317','2005-08-02 03:42:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8459','2005-07-29 08:05:40.000','3441','144','2005-08-04 03:24:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8460','2005-07-29 08:08:03.000','2826','329','2005-08-07 06:53:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8461','2005-07-29 08:11:31.000','3373','399','2005-08-06 09:23:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8462','2005-07-29 08:15:42.000','3633','200','2005-08-04 03:57:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8463','2005-07-29 08:17:51.000','466','203','2005-08-03 13:41:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8464','2005-07-29 08:18:20.000','2343','28','2005-08-03 04:50:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8465','2005-07-29 08:20:49.000','4109','238','2005-07-31 04:02:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8466','2005-07-29 08:24:47.000','4010','285','2005-07-31 03:43:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8467','2005-07-29 08:25:35.000','263','326','2005-08-07 03:28:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8468','2005-07-29 08:26:04.000','1338','282','2005-08-02 07:18:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8469','2005-07-29 08:26:27.000','2754','408','2005-08-05 04:26:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8470','2005-07-29 08:28:50.000','3717','159','2005-07-30 13:40:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8471','2005-07-29 08:32:11.000','1520','533','2005-08-01 13:55:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8472','2005-07-29 08:36:22.000','2975','196','2005-08-02 07:55:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8473','2005-07-29 08:36:53.000','4141','311','2005-07-31 12:14:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8474','2005-07-29 08:36:56.000','4346','323','2005-08-01 03:07:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8475','2005-07-29 08:37:41.000','3695','260','2005-08-04 10:03:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8476','2005-07-29 08:39:12.000','3741','470','2005-08-06 03:03:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8477','2005-07-29 08:40:36.000','3571','354','2005-08-06 08:28:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8478','2005-07-29 08:40:36.000','3742','162','2005-08-01 10:23:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8479','2005-07-29 08:42:04.000','1990','195','2005-08-01 03:10:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8480','2005-07-29 08:44:46.000','3512','467','2005-08-05 13:22:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8481','2005-07-29 08:45:57.000','1739','454','2005-08-01 12:50:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8482','2005-07-29 08:46:33.000','2686','405','2005-07-31 11:07:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8483','2005-07-29 08:50:18.000','2786','186','2005-08-03 06:46:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8484','2005-07-29 08:51:59.000','742','260','2005-07-30 09:07:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8485','2005-07-29 08:53:09.000','3172','420','2005-07-30 11:25:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8486','2005-07-29 08:53:38.000','1759','221','2005-08-01 14:12:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8487','2005-07-29 08:53:49.000','1893','82','2005-07-31 09:10:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8488','2005-07-29 08:57:38.000','2176','478','2005-08-02 04:16:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8489','2005-07-29 08:58:03.000','375','265','2005-08-02 07:50:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8490','2005-07-29 08:59:25.000','1943','367','2005-08-05 14:02:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8491','2005-07-29 09:02:13.000','1806','242','2005-08-03 04:32:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8492','2005-07-29 09:04:17.000','4553','266','2005-08-02 08:48:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8493','2005-07-29 09:04:31.000','664','390','2005-08-04 05:17:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8494','2005-07-29 09:04:32.000','3524','92','2005-07-31 10:30:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8495','2005-07-29 09:05:06.000','344','51','2005-08-06 05:48:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8496','2005-07-29 09:05:33.000','765','114','2005-08-02 06:32:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8497','2005-07-29 09:07:03.000','1837','593','2005-08-02 09:18:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8498','2005-07-29 09:07:38.000','4468','190','2005-08-04 07:01:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8499','2005-07-29 09:10:41.000','219','42','2005-08-05 10:01:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8500','2005-07-29 09:12:01.000','4516','348','2005-07-31 10:15:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8501','2005-07-29 09:12:51.000','1052','309','2005-07-30 11:19:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8502','2005-07-29 09:15:41.000','2149','457','2005-07-30 10:41:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8503','2005-07-29 09:16:50.000','1164','240','2005-08-04 11:34:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8504','2005-07-29 09:20:16.000','2295','561','2005-08-07 04:27:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8505','2005-07-29 09:22:52.000','1454','346','2005-08-06 05:23:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8506','2005-07-29 09:23:52.000','3714','506','2005-07-31 04:42:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8507','2005-07-29 09:29:44.000','3273','524','2005-08-07 05:48:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8508','2005-07-29 09:34:38.000','4173','484','2005-08-01 14:52:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8509','2005-07-29 09:38:19.000','1332','80','2005-08-04 11:45:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8510','2005-07-29 09:41:38.000','7','487','2005-08-05 05:30:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8511','2005-07-29 09:42:42.000','3667','598','2005-08-06 14:22:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8512','2005-07-29 09:48:03.000','4132','351','2005-07-31 13:40:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8513','2005-07-29 09:52:59.000','3156','142','2005-07-31 12:05:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8514','2005-07-29 09:53:33.000','3755','99','2005-07-30 06:34:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8515','2005-07-29 09:55:20.000','1071','477','2005-08-05 07:08:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8516','2005-07-29 10:00:03.000','981','337','2005-08-02 09:34:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8517','2005-07-29 10:00:48.000','2064','274','2005-08-06 14:37:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8518','2005-07-29 10:05:27.000','2311','385','2005-08-02 05:39:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8519','2005-07-29 10:09:43.000','1163','588','2005-08-03 08:14:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8520','2005-07-29 10:10:02.000','2440','103','2005-08-02 05:25:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8521','2005-07-29 10:12:45.000','2608','402','2005-08-07 04:37:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8522','2005-07-29 10:16:19.000','3636','363','2005-08-06 14:58:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8523','2005-07-29 10:18:27.000','3614','558','2005-08-04 09:31:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8524','2005-07-29 10:20:07.000','2110','124','2005-08-03 04:30:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8525','2005-07-29 10:20:19.000','1322','111','2005-07-30 05:49:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8526','2005-07-29 10:20:48.000','575','88','2005-08-03 14:15:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8527','2005-07-29 10:21:00.000','709','168','2005-08-05 16:05:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8528','2005-07-29 10:24:22.000','2107','428','2005-08-07 10:34:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8529','2005-07-29 10:24:31.000','1055','501','2005-08-01 16:06:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8530','2005-07-29 10:26:14.000','4528','233','2005-07-31 10:24:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8531','2005-07-29 10:26:15.000','1631','427','2005-08-06 09:28:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8532','2005-07-29 10:26:56.000','3045','546','2005-08-02 13:23:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8533','2005-07-29 10:29:16.000','551','542','2005-08-01 06:52:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8534','2005-07-29 10:30:13.000','4029','516','2005-08-02 04:47:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8535','2005-07-29 10:32:33.000','4489','536','2005-07-31 05:46:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8536','2005-07-29 10:37:23.000','4510','219','2005-07-31 07:21:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8537','2005-07-29 10:44:54.000','1012','447','2005-08-06 14:55:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8538','2005-07-29 10:45:17.000','3768','500','2005-08-04 15:12:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8539','2005-07-29 10:48:24.000','599','325','2005-07-30 06:29:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8540','2005-07-29 10:52:51.000','539','180','2005-08-07 11:44:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8541','2005-07-29 10:55:01.000','976','340','2005-07-31 10:53:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8542','2005-07-29 11:01:50.000','792','213','2005-07-30 08:19:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8543','2005-07-29 11:01:57.000','403','346','2005-08-03 06:03:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8544','2005-07-29 11:02:08.000','412','542','2005-08-06 15:06:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8545','2005-07-29 11:07:04.000','3261','3','2005-08-06 13:30:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8546','2005-07-29 11:08:48.000','3224','418','2005-08-03 16:50:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8547','2005-07-29 11:10:15.000','875','438','2005-08-03 12:50:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8548','2005-07-29 11:11:33.000','3366','14','2005-08-04 11:52:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8549','2005-07-29 11:12:13.000','1866','206','2005-08-06 06:04:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8550','2005-07-29 11:12:37.000','1340','70','2005-07-30 15:05:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8551','2005-07-29 11:13:11.000','2083','340','2005-08-05 05:17:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8552','2005-07-29 11:14:02.000','1987','490','2005-08-05 14:13:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8553','2005-07-29 11:15:36.000','2645','49','2005-08-07 16:37:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8554','2005-07-29 11:16:29.000','1563','582','2005-07-31 06:38:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8555','2005-07-29 11:18:01.000','2784','18','2005-07-30 10:47:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8556','2005-07-29 11:18:27.000','2793','231','2005-07-30 05:21:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8557','2005-07-29 11:19:59.000','1481','459','2005-08-07 12:50:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8558','2005-07-29 11:24:49.000','1160','169','2005-07-31 15:03:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8559','2005-07-29 11:25:54.000','2078','279','2005-08-04 10:16:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8560','2005-07-29 11:27:27.000','3499','430','2005-08-01 12:05:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8561','2005-07-29 11:29:12.000','2207','344','2005-08-05 09:17:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8562','2005-07-29 11:32:13.000','3595','255','2005-07-30 08:23:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8563','2005-07-29 11:32:58.000','61','67','2005-08-05 07:21:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8564','2005-07-29 11:33:00.000','2830','316','2005-08-05 15:35:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8565','2005-07-29 11:35:23.000','3211','280','2005-08-06 08:28:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8566','2005-07-29 11:35:46.000','2011','544','2005-07-30 13:50:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8567','2005-07-29 11:37:30.000','1612','594','2005-08-03 05:58:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8568','2005-07-29 11:38:22.000','1599','583','2005-08-04 13:22:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8569','2005-07-29 11:39:17.000','276','348','2005-07-31 07:50:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8570','2005-07-29 11:40:08.000','3094','131','2005-08-06 10:23:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8571','2005-07-29 11:48:39.000','1778','407','2005-08-03 06:35:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8572','2005-07-29 11:51:24.000','2815','267','2005-08-02 11:44:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8573','2005-07-29 11:51:25.000','1637','179','2005-08-07 08:53:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8574','2005-07-29 11:51:53.000','2949','71','2005-08-03 05:59:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8575','2005-07-29 11:52:47.000','1668','441','2005-08-03 08:14:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8576','2005-07-29 11:55:01.000','3552','157','2005-08-03 08:41:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8577','2005-07-29 11:56:30.000','520','328','2005-08-07 15:41:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8578','2005-07-29 11:58:14.000','3737','148','2005-08-03 06:25:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8579','2005-07-29 11:59:22.000','4045','250','2005-07-30 11:41:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8580','2005-07-29 12:00:27.000','4040','543','2005-08-04 16:39:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8581','2005-07-29 12:02:06.000','2102','254','2005-08-02 10:32:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8582','2005-07-29 12:03:27.000','841','162','2005-08-03 07:02:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8583','2005-07-29 12:04:50.000','3130','191','2005-08-04 17:21:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8584','2005-07-29 12:07:53.000','1656','482','2005-07-31 09:27:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8585','2005-07-29 12:14:18.000','512','516','2005-08-03 08:31:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8586','2005-07-29 12:16:34.000','2752','374','2005-08-07 06:48:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8587','2005-07-29 12:18:40.000','1941','108','2005-08-03 14:01:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8588','2005-07-29 12:22:20.000','2858','416','2005-07-31 10:49:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8589','2005-07-29 12:28:17.000','1628','293','2005-08-05 11:40:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8590','2005-07-29 12:32:20.000','2505','114','2005-08-07 08:00:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8591','2005-07-29 12:32:33.000','2568','418','2005-08-01 16:19:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8592','2005-07-29 12:33:58.000','1952','271','2005-08-04 07:14:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8593','2005-07-29 12:38:14.000','2601','181','2005-08-07 07:04:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8594','2005-07-29 12:42:13.000','4155','115','2005-08-02 07:38:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8595','2005-07-29 12:47:43.000','3225','423','2005-08-07 13:51:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8596','2005-07-29 12:48:54.000','59','233','2005-08-04 07:19:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8597','2005-07-29 12:55:55.000','4218','222','2005-08-05 18:54:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8598','2005-07-29 12:56:59.000','626','2','2005-08-01 08:39:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8599','2005-07-29 12:58:52.000','1169','545','2005-08-03 08:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8600','2005-07-29 13:01:19.000','1488','226','2005-07-31 15:40:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8601','2005-07-29 13:03:31.000','3247','181','2005-08-06 16:32:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8602','2005-07-29 13:04:27.000','4002','64','2005-08-03 12:21:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8603','2005-07-29 13:07:07.000','3007','594','2005-08-04 18:32:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8604','2005-07-29 13:07:13.000','3909','326','2005-07-31 18:00:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8605','2005-07-29 13:13:34.000','3805','224','2005-08-07 08:29:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8606','2005-07-29 13:14:24.000','4051','340','2005-07-30 14:52:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8607','2005-07-29 13:18:00.000','4290','336','2005-07-30 18:51:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8608','2005-07-29 13:18:52.000','2976','165','2005-07-30 19:01:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8609','2005-07-29 13:19:25.000','3997','354','2005-08-06 08:33:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8610','2005-07-29 13:25:02.000','4222','563','2005-08-03 08:10:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8611','2005-07-29 13:26:21.000','610','373','2005-08-07 18:20:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8612','2005-07-29 13:28:20.000','3518','392','2005-08-06 14:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8613','2005-07-29 13:30:58.000','394','411','2005-08-05 16:21:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8614','2005-07-29 13:32:05.000','604','552','2005-08-04 15:26:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8615','2005-07-29 13:36:01.000','4453','15','2005-08-03 13:15:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8616','2005-07-29 13:39:09.000','2583','493','2005-08-01 16:49:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8617','2005-07-29 13:46:14.000','385','441','2005-08-06 13:26:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8618','2005-07-29 13:48:20.000','985','270','2005-08-06 14:12:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8619','2005-07-29 13:50:08.000','2169','50','2005-08-06 13:15:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8620','2005-07-29 13:51:20.000','3718','306','2005-08-02 13:05:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8621','2005-07-29 13:52:42.000','2473','358','2005-07-30 11:42:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8622','2005-07-29 13:53:28.000','4076','98','2005-07-31 16:12:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8623','2005-07-29 13:55:11.000','458','142','2005-08-05 11:16:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8624','2005-07-29 13:55:36.000','4402','439','2005-08-02 12:23:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8625','2005-07-29 13:59:13.000','884','410','2005-08-07 17:56:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8626','2005-07-29 14:03:20.000','3092','148','2005-08-02 09:05:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8627','2005-07-29 14:05:12.000','4235','226','2005-08-05 16:53:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8628','2005-07-29 14:06:24.000','4484','550','2005-08-06 10:42:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8629','2005-07-29 14:06:35.000','853','567','2005-08-03 16:59:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8630','2005-07-29 14:07:59.000','1378','406','2005-08-03 13:18:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8631','2005-07-29 14:08:06.000','98','559','2005-08-05 14:57:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8632','2005-07-29 14:11:25.000','1666','563','2005-08-07 15:32:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8633','2005-07-29 14:19:53.000','3436','534','2005-08-01 11:31:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8634','2005-07-29 14:19:57.000','2023','335','2005-08-07 13:44:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8635','2005-07-29 14:22:48.000','2894','383','2005-08-01 11:59:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8636','2005-07-29 14:24:13.000','4308','252','2005-08-02 14:39:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8637','2005-07-29 14:30:11.000','1069','310','2005-08-04 14:00:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8638','2005-07-29 14:30:23.000','4060','571','2005-08-01 10:32:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8639','2005-07-29 14:30:31.000','3504','290','2005-08-02 16:04:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8640','2005-07-29 14:34:17.000','1874','257','2005-08-01 13:09:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8641','2005-07-29 14:37:30.000','3199','30','2005-08-02 19:32:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8642','2005-07-29 14:38:17.000','3947','522','2005-08-03 14:41:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8643','2005-07-29 14:45:23.000','381','59','2005-08-04 18:42:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8644','2005-07-29 14:45:45.000','4507','314','2005-08-03 20:10:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8645','2005-07-29 14:47:45.000','2532','535','2005-07-30 14:56:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8646','2005-07-29 14:48:48.000','89','302','2005-08-03 18:11:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8647','2005-07-29 14:52:59.000','556','307','2005-08-06 11:09:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8648','2005-07-29 14:56:21.000','160','416','2005-07-31 16:56:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8649','2005-07-29 14:57:33.000','789','69','2005-08-07 09:43:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8650','2005-07-29 14:59:04.000','1272','134','2005-08-04 13:13:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8651','2005-07-29 15:02:18.000','2095','61','2005-08-07 09:34:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8652','2005-07-29 15:02:54.000','2729','219','2005-08-07 17:21:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8653','2005-07-29 15:04:23.000','4440','230','2005-08-02 09:39:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8654','2005-07-29 15:04:27.000','3925','84','2005-08-07 18:37:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8655','2005-07-29 15:04:42.000','3986','232','2005-08-04 11:26:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8656','2005-07-29 15:05:52.000','1385','460','2005-07-31 20:57:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8657','2005-07-29 15:09:25.000','3194','236','2005-07-31 19:10:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8658','2005-07-29 15:16:37.000','2033','427','2005-08-07 20:45:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8659','2005-07-29 15:26:31.000','558','168','2005-08-06 19:05:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8660','2005-07-29 15:26:59.000','3122','566','2005-08-05 21:04:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8661','2005-07-29 15:28:24.000','3409','341','2005-08-05 20:04:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8662','2005-07-29 15:31:33.000','3758','362','2005-07-30 09:39:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8663','2005-07-29 15:33:18.000','1281','214','2005-07-30 18:03:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8664','2005-07-29 15:36:27.000','198','102','2005-08-04 20:11:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8665','2005-07-29 15:39:29.000','1113','265','2005-08-01 10:33:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8666','2005-07-29 15:39:38.000','3669','591','2005-08-06 17:12:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8667','2005-07-29 15:40:57.000','3439','25','2005-07-31 20:59:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8668','2005-07-29 15:41:31.000','4531','71','2005-08-01 16:20:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8669','2005-07-29 15:44:55.000','1667','401','2005-08-01 14:09:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8670','2005-07-29 15:49:03.000','2354','446','2005-08-01 20:19:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8671','2005-07-29 15:49:37.000','1431','577','2005-08-05 18:20:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8672','2005-07-29 15:49:48.000','405','495','2005-08-06 17:59:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8673','2005-07-29 15:50:14.000','2167','29','2005-08-03 18:30:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8674','2005-07-29 15:54:22.000','1744','412','2005-07-31 12:15:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8675','2005-07-29 15:56:18.000','1026','258','2005-07-30 18:50:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8676','2005-07-29 15:59:06.000','283','533','2005-08-05 19:12:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8677','2005-07-29 16:01:13.000','513','315','2005-08-07 19:21:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8678','2005-07-29 16:04:00.000','3991','210','2005-08-05 12:37:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8679','2005-07-29 16:07:47.000','3549','536','2005-08-02 18:37:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8680','2005-07-29 16:08:03.000','1227','330','2005-07-31 17:26:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8681','2005-07-29 16:12:01.000','4004','309','2005-08-01 18:14:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8682','2005-07-29 16:15:26.000','4328','348','2005-08-03 20:15:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8683','2005-07-29 16:15:43.000','3915','513','2005-08-07 19:19:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8684','2005-07-29 16:16:33.000','2457','185','2005-08-07 12:27:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8685','2005-07-29 16:17:05.000','1827','321','2005-08-07 17:44:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8686','2005-07-29 16:17:49.000','4160','52','2005-08-01 12:50:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8687','2005-07-29 16:19:17.000','222','117','2005-08-01 15:28:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8688','2005-07-29 16:31:32.000','2263','381','2005-07-30 12:39:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8689','2005-07-29 16:38:58.000','824','487','2005-08-01 17:09:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8690','2005-07-29 16:39:28.000','1292','291','2005-08-01 14:03:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8691','2005-07-29 16:41:23.000','672','446','2005-08-02 12:32:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8692','2005-07-29 16:43:39.000','3192','88','2005-08-01 15:54:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8693','2005-07-29 16:44:13.000','917','51','2005-08-01 15:56:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8694','2005-07-29 16:44:48.000','503','345','2005-08-06 16:28:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8695','2005-07-29 16:44:55.000','694','280','2005-08-07 12:47:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8696','2005-07-29 16:45:18.000','2553','178','2005-08-07 18:51:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8697','2005-07-29 16:46:07.000','443','291','2005-08-02 19:27:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8698','2005-07-29 16:52:17.000','2973','324','2005-08-04 13:20:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8699','2005-07-29 16:53:00.000','4080','123','2005-08-07 20:31:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8700','2005-07-29 16:56:01.000','3710','196','2005-07-31 16:19:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8701','2005-07-29 17:02:35.000','3158','245','2005-08-07 19:55:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8702','2005-07-29 17:04:37.000','2215','306','2005-08-05 15:30:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8703','2005-07-29 17:12:44.000','1065','439','2005-07-30 19:38:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8704','2005-07-29 17:13:45.000','2117','107','2005-08-03 20:03:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8705','2005-07-29 17:14:29.000','4038','2','2005-08-02 16:01:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8706','2005-07-29 17:19:15.000','2886','515','2005-08-03 22:52:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8707','2005-07-29 17:21:58.000','2525','157','2005-08-02 14:47:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8708','2005-07-29 17:24:13.000','4054','529','2005-08-04 13:57:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8709','2005-07-29 17:25:54.000','902','199','2005-08-02 22:35:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8710','2005-07-29 17:26:03.000','3391','566','2005-07-30 19:51:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8711','2005-07-29 17:27:15.000','3471','575','2005-07-31 12:57:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8712','2005-07-29 17:30:06.000','2800','41','2005-08-03 22:55:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8713','2005-07-29 17:31:19.000','473','433','2005-08-02 16:37:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8714','2005-07-29 17:31:40.000','4547','362','2005-08-04 16:12:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8715','2005-07-29 17:33:45.000','860','11','2005-08-01 17:30:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8716','2005-07-29 17:39:09.000','2123','48','2005-08-03 20:26:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8717','2005-07-29 17:40:45.000','1821','260','2005-08-01 22:38:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8718','2005-07-29 17:41:14.000','137','23','2005-08-01 18:22:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8719','2005-07-29 17:45:45.000','995','333','2005-08-01 13:53:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8720','2005-07-29 17:48:32.000','152','180','2005-08-04 14:30:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8721','2005-07-29 17:56:21.000','2416','312','2005-08-02 21:30:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8722','2005-07-29 17:58:58.000','1389','401','2005-08-07 23:40:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8723','2005-07-29 18:03:47.000','224','39','2005-08-06 18:53:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8724','2005-07-29 18:05:21.000','898','372','2005-08-01 15:41:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8725','2005-07-29 18:08:42.000','2385','421','2005-08-04 16:01:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8726','2005-07-29 18:09:22.000','897','409','2005-08-06 16:24:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8727','2005-07-29 18:09:57.000','3031','528','2005-08-03 13:41:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8728','2005-07-29 18:12:49.000','973','341','2005-08-06 22:45:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8729','2005-07-29 18:23:02.000','3342','83','2005-07-31 16:09:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8730','2005-07-29 18:23:34.000','4191','592','2005-08-01 19:56:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8731','2005-07-29 18:23:57.000','2638','179','2005-08-05 19:38:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8732','2005-07-29 18:25:03.000','1143','346','2005-08-07 18:56:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8733','2005-07-29 18:26:34.000','3187','450','2005-08-03 15:06:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8734','2005-07-29 18:28:15.000','2374','303','2005-08-05 23:38:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8735','2005-07-29 18:28:54.000','2881','570','2005-08-03 12:43:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8736','2005-07-29 18:31:15.000','1726','530','2005-07-30 16:24:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8737','2005-07-29 18:32:13.000','4154','298','2005-08-05 21:07:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8738','2005-07-29 18:32:47.000','3893','210','2005-08-02 13:05:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8739','2005-07-29 18:34:33.000','4310','326','2005-08-02 16:05:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8740','2005-07-29 18:41:31.000','3781','378','2005-08-01 18:38:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8741','2005-07-29 18:44:57.000','165','4','2005-08-03 18:25:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8742','2005-07-29 18:56:12.000','918','208','2005-08-03 16:42:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8743','2005-07-29 18:57:01.000','2664','282','2005-07-31 22:09:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8744','2005-07-29 18:58:24.000','1086','280','2005-08-05 17:56:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8745','2005-07-29 19:03:05.000','1766','293','2005-08-06 14:06:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8746','2005-07-29 19:03:15.000','2179','275','2005-07-30 17:06:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8747','2005-07-29 19:07:57.000','2584','70','2005-07-30 16:01:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8748','2005-07-29 19:08:37.000','2184','237','2005-08-01 16:24:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8749','2005-07-29 19:13:15.000','2252','456','2005-08-01 15:02:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8750','2005-07-29 19:14:21.000','3157','158','2005-07-31 17:22:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8751','2005-07-29 19:14:39.000','3467','386','2005-07-31 23:11:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8752','2005-07-29 19:15:07.000','4202','253','2005-07-31 13:27:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8753','2005-07-29 19:15:50.000','1345','560','2005-07-31 19:13:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8754','2005-07-29 19:18:30.000','1678','174','2005-08-05 18:39:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8755','2005-07-29 19:18:31.000','1498','372','2005-07-31 19:20:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8756','2005-07-29 19:18:57.000','4146','120','2005-08-02 20:07:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8757','2005-07-29 19:19:10.000','3473','462','2005-08-02 13:47:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8758','2005-07-29 19:20:49.000','2816','442','2005-08-05 21:57:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8759','2005-07-29 19:22:37.000','844','209','2005-08-07 15:36:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8760','2005-07-29 19:22:40.000','3566','118','2005-08-05 01:09:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8761','2005-07-29 19:26:47.000','1317','539','2005-08-08 00:09:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8762','2005-07-29 19:30:02.000','2765','463','2005-08-04 18:38:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8763','2005-07-29 19:38:24.000','374','510','2005-08-04 16:51:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8764','2005-07-29 19:39:04.000','2348','303','2005-08-01 13:52:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8765','2005-07-29 19:40:08.000','2631','538','2005-07-31 14:24:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8766','2005-07-29 19:41:04.000','3888','338','2005-08-02 00:41:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8767','2005-07-29 19:42:33.000','962','467','2005-08-01 20:52:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8768','2005-07-29 19:43:02.000','1601','468','2005-08-03 23:36:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8769','2005-07-29 19:45:33.000','2180','588','2005-08-05 22:09:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8770','2005-07-29 19:53:50.000','4025','499','2005-08-05 14:22:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8771','2005-07-29 19:54:41.000','3533','347','2005-08-03 20:38:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8772','2005-07-29 19:55:25.000','3526','122','2005-08-05 18:48:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8773','2005-07-29 19:55:34.000','131','592','2005-07-30 14:11:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8774','2005-07-29 20:05:04.000','315','161','2005-07-31 14:32:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8775','2005-07-29 20:05:38.000','1358','44','2005-07-30 21:13:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8776','2005-07-29 20:07:06.000','1565','587','2005-08-06 20:42:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8777','2005-07-29 20:10:21.000','2462','382','2005-07-30 20:32:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8778','2005-07-29 20:14:25.000','3654','582','2005-08-04 00:50:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8779','2005-07-29 20:15:00.000','3245','202','2005-08-03 21:17:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8780','2005-07-29 20:19:45.000','1095','328','2005-08-03 22:22:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8781','2005-07-29 20:20:16.000','3746','235','2005-07-30 16:19:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8782','2005-07-29 20:29:34.000','4379','365','2005-08-04 02:19:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8783','2005-07-29 20:31:28.000','2316','71','2005-08-02 19:33:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8784','2005-07-29 20:35:37.000','2308','580','2005-07-30 17:22:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8785','2005-07-29 20:36:26.000','216','42','2005-07-30 15:06:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8786','2005-07-29 20:39:49.000','2404','533','2005-08-03 18:08:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8787','2005-07-29 20:43:49.000','2366','222','2005-07-31 15:15:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8788','2005-07-29 20:46:44.000','3412','121','2005-08-03 02:25:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8789','2005-07-29 20:47:27.000','3062','71','2005-08-05 18:36:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8790','2005-07-29 20:51:41.000','751','323','2005-07-30 17:30:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8791','2005-07-29 20:53:23.000','1677','469','2005-07-31 18:14:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8792','2005-07-29 20:56:14.000','3764','203','2005-08-07 16:44:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8793','2005-07-29 20:57:22.000','1819','167','2005-08-02 01:40:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8794','2005-07-29 20:59:38.000','3509','320','2005-07-31 00:15:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8795','2005-07-29 21:04:14.000','1896','302','2005-07-31 02:58:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8796','2005-07-29 21:09:11.000','2234','74','2005-08-04 22:55:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8797','2005-07-29 21:10:37.000','2929','566','2005-08-07 21:43:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8798','2005-07-29 21:15:38.000','800','513','2005-08-05 02:46:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8799','2005-07-29 21:16:47.000','326','237','2005-08-07 22:09:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8800','2005-07-29 21:18:59.000','2082','207','2005-08-06 19:59:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8801','2005-07-29 21:25:22.000','1111','590','2005-08-01 00:02:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8802','2005-07-29 21:25:51.000','296','407','2005-07-30 18:15:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8803','2005-07-29 21:26:24.000','2814','86','2005-08-06 18:05:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8804','2005-07-29 21:28:19.000','4461','363','2005-08-01 20:15:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8805','2005-07-29 21:29:58.000','4041','39','2005-08-04 23:12:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8806','2005-07-29 21:36:34.000','4085','454','2005-08-02 00:58:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8807','2005-07-29 21:36:59.000','2612','396','2005-08-01 17:40:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8808','2005-07-29 21:39:07.000','593','173','2005-08-03 02:09:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8809','2005-07-29 21:42:49.000','3278','8','2005-08-04 01:13:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8810','2005-07-29 21:45:19.000','1233','431','2005-08-08 01:45:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8811','2005-07-29 21:46:21.000','2041','245','2005-08-07 16:51:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8812','2005-07-29 21:47:40.000','1172','563','2005-08-04 01:18:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8813','2005-07-29 21:47:55.000','3442','497','2005-08-05 01:16:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8814','2005-07-29 21:49:43.000','1492','487','2005-08-01 19:56:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8815','2005-07-29 21:51:26.000','3469','230','2005-08-03 22:37:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8816','2005-07-29 21:53:00.000','3984','209','2005-08-01 21:20:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8817','2005-07-29 22:09:08.000','2716','175','2005-08-01 19:07:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8818','2005-07-29 22:14:04.000','3090','98','2005-08-07 17:26:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8819','2005-07-29 22:14:26.000','3100','591','2005-08-06 23:02:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8820','2005-07-29 22:14:56.000','481','594','2005-08-05 23:36:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8821','2005-07-29 22:18:12.000','52','477','2005-08-05 22:00:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8822','2005-07-29 22:20:21.000','744','35','2005-08-06 03:00:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8823','2005-07-29 22:22:12.000','951','75','2005-08-07 21:03:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8824','2005-07-29 22:22:58.000','3506','164','2005-07-31 21:02:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8825','2005-07-29 22:24:16.000','881','101','2005-08-05 00:27:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8826','2005-07-29 22:30:16.000','1800','369','2005-07-30 19:43:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8827','2005-07-29 22:31:24.000','1517','157','2005-08-06 21:05:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8828','2005-07-29 22:32:54.000','1608','547','2005-07-30 20:41:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8829','2005-07-29 22:33:34.000','1466','173','2005-08-05 20:23:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8830','2005-07-29 22:34:35.000','1751','202','2005-08-05 20:12:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8831','2005-07-29 22:37:41.000','3520','13','2005-08-08 04:28:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8832','2005-07-29 22:37:49.000','380','125','2005-08-04 23:32:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8833','2005-07-29 22:39:36.000','1741','101','2005-08-05 21:19:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8834','2005-07-29 22:41:48.000','4477','243','2005-08-05 03:21:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8835','2005-07-29 22:44:35.000','2653','237','2005-08-05 23:28:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8836','2005-07-29 22:46:08.000','3265','14','2005-08-02 19:53:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8837','2005-07-29 22:49:00.000','42','372','2005-08-07 21:56:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8838','2005-07-29 22:52:23.000','133','550','2005-08-03 22:49:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8839','2005-07-29 22:52:34.000','3440','580','2005-08-05 03:24:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8840','2005-07-29 22:55:38.000','1484','295','2005-08-06 02:11:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8841','2005-07-29 22:56:07.000','3935','363','2005-08-01 21:21:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8842','2005-07-29 23:03:40.000','4203','292','2005-08-06 23:23:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8843','2005-07-29 23:04:25.000','406','294','2005-08-05 22:12:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8844','2005-07-29 23:05:08.000','327','244','2005-08-06 00:24:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8845','2005-07-29 23:06:13.000','3036','543','2005-08-02 20:16:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8846','2005-07-29 23:10:28.000','2912','108','2005-08-03 22:07:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8847','2005-07-29 23:13:41.000','4133','480','2005-07-31 23:55:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8848','2005-07-29 23:20:58.000','2972','545','2005-08-03 17:28:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8849','2005-07-29 23:21:01.000','4300','79','2005-08-03 20:01:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8850','2005-07-29 23:24:20.000','355','86','2005-07-31 00:43:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8851','2005-07-29 23:26:19.000','212','445','2005-08-05 03:59:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8852','2005-07-29 23:30:03.000','1138','42','2005-08-05 05:22:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8853','2005-07-29 23:34:21.000','2323','58','2005-07-31 21:20:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8854','2005-07-29 23:40:07.000','1365','527','2005-08-01 00:35:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8855','2005-07-29 23:40:10.000','4388','335','2005-08-02 18:07:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8856','2005-07-29 23:42:00.000','2942','365','2005-08-07 03:00:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8857','2005-07-29 23:44:22.000','1348','477','2005-07-31 21:32:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8858','2005-07-29 23:44:35.000','2378','558','2005-08-01 05:25:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8859','2005-07-29 23:44:43.000','603','216','2005-08-07 18:14:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8860','2005-07-29 23:45:57.000','2841','531','2005-08-06 02:14:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8861','2005-07-29 23:47:29.000','759','560','2005-08-07 01:27:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8862','2005-07-29 23:49:23.000','916','21','2005-08-04 20:11:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8863','2005-07-29 23:52:01.000','75','47','2005-08-04 20:28:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8864','2005-07-29 23:52:12.000','2321','167','2005-07-30 22:12:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8865','2005-07-29 23:54:54.000','1835','305','2005-07-31 05:10:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8866','2005-07-29 23:58:19.000','1530','44','2005-08-01 05:19:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8867','2005-07-30 00:02:18.000','1388','497','2005-08-04 00:44:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8868','2005-07-30 00:02:26.000','1229','512','2005-08-01 22:28:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8869','2005-07-30 00:06:32.000','4353','308','2005-07-31 20:49:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8870','2005-07-30 00:08:08.000','4104','90','2005-08-08 00:15:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8871','2005-07-30 00:12:41.000','4535','382','2005-08-08 03:53:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8872','2005-07-30 00:13:54.000','2669','186','2005-08-01 18:34:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8873','2005-07-30 00:14:32.000','3498','91','2005-08-04 20:42:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8874','2005-07-30 00:14:45.000','459','564','2005-08-02 22:34:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8875','2005-07-30 00:15:09.000','1294','121','2005-08-04 02:54:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8876','2005-07-30 00:15:09.000','2394','579','2005-08-02 23:56:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8877','2005-07-30 00:15:22.000','1140','417','2005-07-31 00:53:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8878','2005-07-30 00:15:57.000','440','25','2005-08-01 00:22:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8879','2005-07-30 00:16:02.000','2956','584','2005-08-06 20:10:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8880','2005-07-30 00:16:55.000','2920','51','2005-08-01 01:05:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8881','2005-07-30 00:22:31.000','2012','118','2005-08-04 19:10:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8882','2005-07-30 00:24:05.000','441','410','2005-08-03 19:48:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8883','2005-07-30 00:24:48.000','1421','168','2005-08-04 00:24:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8884','2005-07-30 00:26:22.000','3050','80','2005-08-05 03:24:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8885','2005-07-30 00:36:26.000','2984','135','2005-08-06 03:05:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8886','2005-07-30 00:36:31.000','1469','418','2005-08-08 06:18:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8887','2005-07-30 00:36:54.000','4119','389','2005-08-04 19:07:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8888','2005-07-30 00:39:36.000','2824','284','2005-08-01 02:28:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8889','2005-07-30 00:39:43.000','3457','558','2005-08-02 23:22:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8890','2005-07-30 00:42:06.000','3656','470','2005-08-05 21:04:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8891','2005-07-30 00:46:55.000','4093','435','2005-08-06 23:32:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8892','2005-07-30 00:47:03.000','1584','184','2005-08-06 03:23:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8893','2005-07-30 00:48:19.000','1048','147','2005-08-01 03:25:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8894','2005-07-30 00:48:31.000','2055','552','2005-07-31 05:49:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8895','2005-07-30 00:49:17.000','3217','494','2005-07-31 01:56:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8896','2005-07-30 00:51:21.000','3560','205','2005-07-31 22:33:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8897','2005-07-30 01:00:17.000','1964','459','2005-08-01 03:41:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8898','2005-07-30 01:02:20.000','3961','452','2005-08-05 22:02:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8899','2005-07-30 01:05:30.000','4148','252','2005-08-01 23:32:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8900','2005-07-30 01:07:03.000','3057','375','2005-08-06 04:07:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8901','2005-07-30 01:07:12.000','4392','28','2005-08-02 06:34:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8902','2005-07-30 01:08:06.000','2983','408','2005-08-05 00:00:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8903','2005-07-30 01:08:06.000','4546','406','2005-07-30 21:47:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8904','2005-07-30 01:08:33.000','3622','575','2005-08-04 02:33:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8905','2005-07-30 01:11:11.000','2154','240','2005-08-04 22:39:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8906','2005-07-30 01:21:39.000','2667','560','2005-08-07 02:14:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8907','2005-07-30 01:25:03.000','3239','576','2005-08-03 05:41:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8908','2005-07-30 01:26:05.000','4498','391','2005-07-31 20:39:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8909','2005-07-30 01:28:03.000','2606','556','2005-08-06 04:40:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8910','2005-07-30 01:29:48.000','1039','569','2005-07-31 21:33:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8911','2005-07-30 01:30:57.000','2159','445','2005-08-02 20:01:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8912','2005-07-30 01:31:25.000','1686','280','2005-08-02 07:14:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8913','2005-07-30 01:35:01.000','429','391','2005-08-06 06:13:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8914','2005-07-30 01:42:03.000','1347','32','2005-08-04 03:53:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8915','2005-07-30 01:42:09.000','3030','42','2005-08-04 23:29:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8916','2005-07-30 01:42:21.000','3852','377','2005-08-03 05:28:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8917','2005-07-30 01:47:02.000','4460','309','2005-08-05 21:10:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8918','2005-07-30 01:56:22.000','2544','424','2005-08-04 01:58:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8919','2005-07-30 01:57:03.000','4006','337','2005-08-08 05:14:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8920','2005-07-30 01:59:24.000','4079','78','2005-08-02 22:37:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8921','2005-07-30 02:04:02.000','1016','354','2005-07-31 06:18:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8922','2005-07-30 02:08:25.000','1696','446','2005-08-08 07:19:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8923','2005-07-30 02:08:49.000','2425','446','2005-08-03 23:45:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8924','2005-07-30 02:08:58.000','2291','38','2005-08-05 02:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8925','2005-07-30 02:09:14.000','3753','500','2005-07-30 21:39:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8926','2005-07-30 02:10:31.000','3677','510','2005-08-03 23:56:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8927','2005-07-30 02:13:31.000','272','15','2005-08-01 01:34:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8928','2005-07-30 02:18:19.000','706','366','2005-08-05 00:49:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8929','2005-07-30 02:28:22.000','3501','472','2005-08-06 06:13:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8930','2005-07-30 02:28:38.000','1107','202','2005-08-02 01:43:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8931','2005-07-30 02:30:07.000','16','268','2005-08-02 08:24:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8932','2005-07-30 02:31:26.000','4537','295','2005-08-04 02:17:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8933','2005-07-30 02:36:06.000','1664','260','2005-08-02 23:37:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8934','2005-07-30 02:37:05.000','3223','494','2005-08-01 20:42:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8935','2005-07-30 02:38:45.000','285','76','2005-08-02 07:11:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8936','2005-07-30 02:47:13.000','1408','227','2005-08-01 02:25:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8937','2005-07-30 02:53:21.000','2406','544','2005-08-08 03:33:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8938','2005-07-30 02:56:08.000','4031','92','2005-07-31 23:08:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8939','2005-07-30 02:56:53.000','4175','598','2005-08-01 21:19:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8940','2005-07-30 02:57:26.000','1566','212','2005-08-05 22:05:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8941','2005-07-30 02:59:21.000','4147','329','2005-08-02 05:18:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8942','2005-07-30 03:01:07.000','4375','77','2005-08-06 22:50:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8943','2005-07-30 03:06:48.000','3698','531','2005-08-02 00:59:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8944','2005-07-30 03:11:44.000','3513','172','2005-08-06 23:15:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8945','2005-07-30 03:11:48.000','1441','447','2005-08-07 07:53:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8946','2005-07-30 03:14:53.000','3510','257','2005-08-04 00:50:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8947','2005-07-30 03:15:37.000','341','24','2005-08-04 07:10:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8948','2005-07-30 03:16:18.000','948','597','2005-08-04 03:16:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8949','2005-07-30 03:17:02.000','2876','231','2005-08-08 07:38:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8950','2005-07-30 03:17:13.000','3015','11','2005-08-07 00:20:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8951','2005-07-30 03:18:24.000','127','336','2005-08-08 08:50:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8952','2005-07-30 03:20:38.000','4397','36','2005-08-02 02:54:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8953','2005-07-30 03:21:05.000','535','278','2005-08-02 05:24:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8954','2005-07-30 03:25:51.000','991','137','2005-08-06 05:10:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8955','2005-07-30 03:28:27.000','4532','405','2005-08-04 04:56:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8956','2005-07-30 03:32:29.000','2129','71','2005-08-01 03:08:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8957','2005-07-30 03:34:10.000','811','158','2005-08-06 07:05:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8958','2005-07-30 03:34:26.000','1556','536','2005-08-06 08:14:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8959','2005-07-30 03:35:49.000','3508','550','2005-08-06 02:02:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8960','2005-07-30 03:36:31.000','391','525','2005-08-01 23:46:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8961','2005-07-30 03:43:35.000','3679','211','2005-08-06 07:42:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8962','2005-07-30 03:43:45.000','4439','406','2005-08-07 00:33:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8963','2005-07-30 03:46:26.000','100','544','2005-08-08 06:12:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8964','2005-07-30 03:49:35.000','280','424','2005-08-06 23:28:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8965','2005-07-30 03:52:37.000','2419','599','2005-08-05 01:28:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8966','2005-07-30 03:54:12.000','1903','522','2005-07-31 04:51:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8967','2005-07-30 03:56:55.000','1536','480','2005-08-06 05:25:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8968','2005-07-30 03:57:32.000','2280','339','2005-07-31 00:09:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8969','2005-07-30 04:00:19.000','2043','121','2005-08-06 04:39:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8970','2005-07-30 04:02:05.000','2940','313','2005-08-07 03:40:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8971','2005-07-30 04:03:58.000','3572','35','2005-08-08 04:16:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8972','2005-07-30 04:06:25.000','1974','89','2005-08-04 22:49:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8973','2005-07-30 04:09:13.000','886','282','2005-08-07 22:30:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8974','2005-07-30 04:09:16.000','3376','425','2005-08-04 06:55:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8975','2005-07-30 04:10:18.000','3288','356','2005-08-07 01:06:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8976','2005-07-30 04:12:32.000','2135','507','2005-08-04 23:08:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8977','2005-07-30 04:14:07.000','4099','334','2005-08-05 23:45:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8978','2005-07-30 04:14:28.000','711','5','2005-08-06 09:08:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8979','2005-07-30 04:20:25.000','1394','529','2005-08-08 03:39:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8980','2005-07-30 04:22:15.000','3061','105','2005-08-04 08:16:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8981','2005-07-30 04:25:30.000','4413','310','2005-08-06 02:37:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8982','2005-07-30 04:31:02.000','1128','251','2005-07-31 04:22:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8983','2005-07-30 04:31:08.000','1861','144','2005-07-31 09:28:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8984','2005-07-30 04:31:50.000','2126','485','2005-08-04 03:24:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8985','2005-07-30 04:34:51.000','3179','12','2005-08-06 00:45:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8986','2005-07-30 04:37:20.000','3992','551','2005-07-31 23:54:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8987','2005-07-30 04:37:36.000','1434','135','2005-08-08 10:14:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8988','2005-07-30 04:38:49.000','777','487','2005-08-07 07:00:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8989','2005-07-30 04:39:19.000','954','575','2005-08-06 02:11:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8990','2005-07-30 04:41:42.000','1869','292','2005-08-07 22:50:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8991','2005-07-30 04:42:54.000','4540','474','2005-08-01 23:51:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8992','2005-07-30 04:44:18.000','4478','54','2005-08-01 00:29:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8993','2005-07-30 04:51:25.000','1891','382','2005-08-01 01:04:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8994','2005-07-30 04:51:32.000','1527','287','2005-08-07 09:41:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8995','2005-07-30 04:53:11.000','3575','331','2005-08-07 00:24:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8996','2005-07-30 04:53:23.000','1970','579','2005-07-31 06:01:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8997','2005-07-30 04:53:56.000','850','31','2005-08-03 07:10:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8998','2005-07-30 04:54:14.000','1573','120','2005-08-08 08:18:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('8999','2005-07-30 04:55:46.000','3458','424','2005-08-01 00:16:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9000','2005-07-30 04:58:55.000','3763','290','2005-08-08 04:01:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9001','2005-07-30 04:59:41.000','3682','440','2005-07-31 08:56:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9002','2005-07-30 05:02:21.000','1936','137','2005-07-31 04:58:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9003','2005-07-30 05:02:52.000','1605','507','2005-07-31 10:33:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9004','2005-07-30 05:04:27.000','3775','178','2005-07-31 00:49:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9005','2005-07-30 05:04:58.000','157','204','2005-08-03 07:41:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9006','2005-07-30 05:06:32.000','3315','49','2005-07-31 08:24:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9007','2005-07-30 05:09:32.000','2813','63','2005-08-02 06:12:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9008','2005-07-30 05:10:26.000','3592','371','2005-07-31 08:13:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9009','2005-07-30 05:12:01.000','4136','166','2005-08-07 10:58:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9010','2005-07-30 05:12:04.000','1698','152','2005-08-06 02:54:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9011','2005-07-30 05:16:29.000','2799','236','2005-08-05 06:57:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9012','2005-07-30 05:18:57.000','3604','494','2005-08-06 06:21:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9013','2005-07-30 05:19:20.000','2367','347','2005-08-04 01:35:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9014','2005-07-30 05:19:27.000','311','297','2005-08-01 01:10:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9015','2005-07-30 05:21:32.000','4128','203','2005-08-08 07:03:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9016','2005-07-30 05:26:13.000','4309','312','2005-08-04 00:25:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9017','2005-07-30 05:26:20.000','3325','319','2005-08-04 10:00:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9018','2005-07-30 05:28:40.000','1982','218','2005-08-07 01:34:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9019','2005-07-30 05:28:53.000','946','235','2005-08-03 02:16:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9020','2005-07-30 05:31:27.000','1700','142','2005-08-08 06:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9021','2005-07-30 05:34:24.000','674','498','2005-08-03 04:13:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9022','2005-07-30 05:34:45.000','4473','159','2005-08-03 23:57:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9023','2005-07-30 05:36:40.000','2911','148','2005-08-07 06:20:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9024','2005-07-30 05:44:42.000','164','329','2005-08-05 03:15:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9025','2005-07-30 05:50:08.000','2244','473','2005-07-31 09:58:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9026','2005-07-30 05:55:31.000','1524','423','2005-08-01 03:19:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9027','2005-07-30 05:58:27.000','449','72','2005-08-03 03:02:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9028','2005-07-30 06:00:35.000','2687','119','2005-08-02 01:35:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9029','2005-07-30 06:03:11.000','2220','52','2005-08-04 01:42:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9030','2005-07-30 06:05:38.000','2237','367','2005-08-03 00:19:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9031','2005-07-30 06:06:10.000','2377','2','2005-08-04 10:45:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9032','2005-07-30 06:06:54.000','4448','369','2005-08-01 05:27:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9033','2005-07-30 06:07:42.000','3416','35','2005-08-05 01:18:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9034','2005-07-30 06:10:58.000','3847','144','2005-08-08 05:00:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9035','2005-07-30 06:16:07.000','3785','243','2005-08-06 09:22:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9036','2005-07-30 06:18:38.000','790','18','2005-07-31 01:22:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9037','2005-07-30 06:23:14.000','3833','356','2005-08-08 06:25:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9038','2005-07-30 06:23:35.000','217','514','2005-08-06 11:10:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9039','2005-07-30 06:24:28.000','4493','485','2005-08-08 00:28:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9040','2005-07-30 06:31:45.000','392','33','2005-08-03 12:20:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9041','2005-07-30 06:32:36.000','1103','454','2005-08-01 10:28:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9042','2005-07-30 06:33:55.000','2770','398','2005-08-04 09:31:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9043','2005-07-30 06:34:07.000','4127','9','2005-08-02 01:16:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9044','2005-07-30 06:35:21.000','3796','319','2005-07-31 10:27:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9045','2005-07-30 06:36:57.000','4521','46','2005-08-08 01:51:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9046','2005-07-30 06:46:55.000','1736','215','2005-08-01 02:21:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9047','2005-07-30 06:56:33.000','256','522','2005-08-08 06:40:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9048','2005-07-30 06:57:07.000','3929','100','2005-08-05 00:57:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9049','2005-07-30 06:57:28.000','2620','417','2005-08-04 09:02:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9050','2005-07-30 06:59:55.000','106','40','2005-08-06 06:37:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9051','2005-07-30 07:05:54.000','1847','337','2005-08-07 09:12:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9052','2005-07-30 07:06:08.000','3351','408','2005-08-03 10:30:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9053','2005-07-30 07:07:39.000','2535','485','2005-08-01 09:22:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9054','2005-07-30 07:11:44.000','2860','209','2005-08-08 01:55:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9055','2005-07-30 07:13:07.000','634','512','2005-08-01 12:18:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9056','2005-07-30 07:13:20.000','4363','380','2005-08-03 07:36:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9057','2005-07-30 07:14:18.000','3141','202','2005-08-01 05:10:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9058','2005-07-30 07:15:45.000','4214','403','2005-07-31 02:57:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9059','2005-07-30 07:18:44.000','480','267','2005-08-08 08:39:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9060','2005-07-30 07:20:36.000','4360','87','2005-08-03 10:51:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9061','2005-07-30 07:21:52.000','1933','255','2005-08-08 10:52:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9062','2005-07-30 07:23:17.000','2780','358','2005-08-02 12:07:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9063','2005-07-30 07:24:34.000','2851','564','2005-08-05 01:28:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9064','2005-07-30 07:24:55.000','1417','194','2005-08-07 08:44:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9065','2005-07-30 07:25:09.000','349','238','2005-07-31 05:18:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9066','2005-07-30 07:28:54.000','196','171','2005-08-02 05:23:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9067','2005-07-30 07:31:01.000','3628','382','2005-08-04 11:44:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9068','2005-07-30 07:31:45.000','2264','78','2005-08-08 06:40:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9069','2005-07-30 07:39:59.000','1852','258','2005-08-02 04:10:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9070','2005-07-30 07:40:39.000','3690','276','2005-08-01 04:19:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9071','2005-07-30 07:40:58.000','3151','523','2005-08-01 06:59:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9072','2005-07-30 07:45:49.000','4536','106','2005-08-04 10:00:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9073','2005-07-30 07:49:56.000','2185','141','2005-08-05 06:25:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9074','2005-07-30 07:50:10.000','3244','84','2005-08-01 11:21:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9075','2005-07-30 07:55:14.000','1931','20','2005-08-02 13:49:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9076','2005-07-30 07:58:12.000','496','447','2005-08-08 06:04:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9077','2005-07-30 08:00:19.000','4324','471','2005-08-08 11:21:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9078','2005-07-30 08:01:00.000','955','300','2005-07-31 10:39:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9079','2005-07-30 08:02:00.000','2143','193','2005-07-31 04:02:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9080','2005-07-30 08:02:39.000','94','276','2005-08-06 12:02:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9081','2005-07-30 08:09:58.000','3040','572','2005-08-03 13:27:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9082','2005-07-30 08:11:22.000','4042','438','2005-08-06 09:26:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9083','2005-07-30 08:14:27.000','456','488','2005-08-07 14:02:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9084','2005-07-30 08:14:29.000','3950','171','2005-08-03 11:12:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9085','2005-07-30 08:17:24.000','3400','33','2005-08-03 09:35:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9086','2005-07-30 08:18:46.000','2779','57','2005-08-06 06:10:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9087','2005-07-30 08:19:47.000','4048','546','2005-08-02 07:15:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9088','2005-07-30 08:21:02.000','3407','245','2005-08-01 09:55:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9089','2005-07-30 08:23:39.000','490','369','2005-07-31 06:00:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9090','2005-07-30 08:24:42.000','3426','104','2005-08-08 06:17:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9091','2005-07-30 08:30:45.000','2249','66','2005-08-07 13:28:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9092','2005-07-30 08:30:56.000','1877','17','2005-08-06 08:09:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9093','2005-07-30 08:33:24.000','2208','96','2005-08-04 11:07:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9094','2005-07-30 08:35:10.000','2699','140','2005-08-07 08:18:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9095','2005-07-30 08:38:36.000','3019','511','2005-07-31 06:14:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9096','2005-07-30 08:39:23.000','540','216','2005-08-01 03:33:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9097','2005-07-30 08:40:35.000','570','173','2005-08-04 11:19:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9098','2005-07-30 08:44:21.000','1267','144','2005-08-08 12:31:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9099','2005-07-30 08:45:48.000','594','250','2005-08-01 03:18:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9100','2005-07-30 08:46:09.000','4117','4','2005-08-05 10:34:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9101','2005-07-30 08:47:13.000','3165','566','2005-08-02 12:52:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9102','2005-07-30 08:48:20.000','1154','276','2005-08-04 10:19:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9103','2005-07-30 08:49:26.000','3806','280','2005-07-31 14:15:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9104','2005-07-30 08:49:55.000','3372','322','2005-08-06 12:23:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9105','2005-07-30 08:50:25.000','4443','262','2005-08-05 06:08:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9106','2005-07-30 08:52:34.000','2935','148','2005-08-02 07:38:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9107','2005-07-30 08:52:45.000','1068','531','2005-08-05 08:39:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9108','2005-07-30 08:56:36.000','3977','490','2005-08-04 11:07:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9109','2005-07-30 08:58:24.000','787','266','2005-08-07 06:56:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9110','2005-07-30 09:05:42.000','1474','317','2005-08-03 05:15:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9111','2005-07-30 09:05:44.000','166','211','2005-08-04 14:27:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9112','2005-07-30 09:06:31.000','395','74','2005-08-04 05:12:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9113','2005-07-30 09:09:03.000','3903','374','2005-07-31 03:13:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9114','2005-07-30 09:13:21.000','893','18','2005-08-05 06:00:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9115','2005-07-30 09:13:55.000','3750','322','2005-08-04 04:02:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9116','2005-07-30 09:19:41.000','2917','446','2005-08-03 08:01:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9117','2005-07-30 09:20:59.000','3055','371','2005-08-07 08:47:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9118','2005-07-30 09:24:18.000','4538','172','2005-08-02 14:46:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9119','2005-07-30 09:25:56.000','275','305','2005-08-03 03:36:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9120','2005-07-30 09:26:08.000','139','473','2005-08-08 09:52:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9121','2005-07-30 09:36:26.000','3098','150','2005-08-05 15:17:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9122','2005-07-30 09:36:52.000','627','365','2005-08-05 13:20:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9123','2005-07-30 09:39:15.000','3748','293','2005-08-02 08:12:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9124','2005-07-30 09:43:12.000','4552','105','2005-08-06 06:17:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9125','2005-07-30 09:43:39.000','333','335','2005-08-07 14:02:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9126','2005-07-30 09:44:15.000','4495','590','2005-08-02 11:02:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9127','2005-07-30 09:46:36.000','4114','300','2005-07-31 07:43:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9128','2005-07-30 09:51:14.000','3647','372','2005-08-07 06:23:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9129','2005-07-30 09:51:21.000','2658','125','2005-08-07 08:50:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9130','2005-07-30 09:55:10.000','1715','354','2005-08-04 08:57:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9131','2005-07-30 09:55:57.000','623','142','2005-08-01 14:21:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9132','2005-07-30 09:56:00.000','402','159','2005-08-02 09:22:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9133','2005-07-30 09:59:00.000','408','576','2005-08-07 04:24:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9134','2005-07-30 10:00:21.000','3797','559','2005-08-01 05:01:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9135','2005-07-30 10:06:53.000','821','161','2005-08-03 13:57:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9136','2005-07-30 10:07:20.000','1734','57','2005-07-31 08:20:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9137','2005-07-30 10:09:24.000','840','459','2005-08-06 04:30:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9138','2005-07-30 10:11:52.000','2550','17','2005-07-31 07:05:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9139','2005-07-30 10:11:52.000','2809','133','2005-08-03 12:44:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9140','2005-07-30 10:12:01.000','4095','25','2005-08-06 09:16:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9141','2005-07-30 10:16:04.000','3087','484','2005-08-05 08:01:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9142','2005-07-30 10:21:03.000','4467','486','2005-08-04 15:14:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9143','2005-07-30 10:22:11.000','2962','511','2005-08-07 06:13:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9144','2005-07-30 10:22:15.000','718','381','2005-08-05 08:14:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9145','2005-07-30 10:27:55.000','559','176','2005-08-07 14:41:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9146','2005-07-30 10:32:08.000','483','302','2005-08-08 14:30:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9147','2005-07-30 10:38:59.000','4167','394','2005-08-02 11:45:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9148','2005-07-30 10:39:10.000','1407','333','2005-08-04 07:17:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9149','2005-07-30 10:45:12.000','2632','21','2005-08-01 09:40:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9150','2005-07-30 10:49:32.000','2834','213','2005-08-08 15:43:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9151','2005-07-30 10:50:53.000','3956','102','2005-08-07 08:19:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9152','2005-07-30 10:51:27.000','3607','595','2005-07-31 06:38:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9153','2005-07-30 10:58:16.000','3743','589','2005-08-03 06:16:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9154','2005-07-30 10:59:54.000','576','312','2005-08-05 16:47:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9155','2005-07-30 11:00:00.000','3787','107','2005-08-02 05:24:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9156','2005-07-30 11:04:55.000','1747','145','2005-07-31 14:10:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9157','2005-07-30 11:06:23.000','146','19','2005-08-05 05:29:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9158','2005-07-30 11:12:03.000','4017','16','2005-08-02 05:55:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9159','2005-07-30 11:16:37.000','1234','217','2005-08-03 10:32:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9160','2005-07-30 11:17:33.000','183','34','2005-08-06 15:16:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9161','2005-07-30 11:19:18.000','969','433','2005-08-02 05:32:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9162','2005-07-30 11:21:56.000','4198','184','2005-08-02 15:32:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9163','2005-07-30 11:23:22.000','4562','345','2005-07-31 07:34:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9164','2005-07-30 11:24:14.000','4434','342','2005-08-08 16:24:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9165','2005-07-30 11:24:28.000','4034','291','2005-08-03 09:38:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9166','2005-07-30 11:26:28.000','308','12','2005-08-04 12:32:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9167','2005-07-30 11:30:37.000','1785','162','2005-08-08 17:13:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9168','2005-07-30 11:31:17.000','2035','75','2005-08-08 16:56:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9169','2005-07-30 11:35:00.000','1567','245','2005-08-06 16:16:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9170','2005-07-30 11:35:24.000','4279','425','2005-08-05 05:36:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9171','2005-07-30 11:36:24.000','1832','189','2005-08-07 06:04:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9172','2005-07-30 11:36:38.000','695','437','2005-08-04 09:39:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9173','2005-07-30 11:40:10.000','2103','381','2005-08-04 05:40:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9174','2005-07-30 11:42:10.000','2636','144','2005-07-31 09:52:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9175','2005-07-30 11:47:48.000','358','133','2005-08-02 08:13:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9176','2005-07-30 11:50:54.000','2659','260','2005-08-02 14:25:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9177','2005-07-30 11:52:40.000','1088','400','2005-08-08 09:35:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9178','2005-07-30 11:58:50.000','2046','448','2005-08-08 15:24:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9179','2005-07-30 12:02:41.000','62','50','2005-08-05 15:23:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9180','2005-07-30 12:03:15.000','3479','442','2005-08-01 14:25:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9181','2005-07-30 12:05:58.000','3953','224','2005-08-02 06:22:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9182','2005-07-30 12:06:58.000','2533','165','2005-08-08 11:33:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9183','2005-07-30 12:09:56.000','4320','475','2005-08-06 11:50:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9184','2005-07-30 12:10:19.000','51','365','2005-08-01 07:35:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9185','2005-07-30 12:10:40.000','2268','426','2005-08-06 07:01:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9186','2005-07-30 12:13:48.000','4513','273','2005-07-31 11:59:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9187','2005-07-30 12:14:03.000','4008','469','2005-08-04 13:10:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9188','2005-07-30 12:19:54.000','727','195','2005-08-06 09:12:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9189','2005-07-30 12:20:59.000','4529','485','2005-08-06 16:15:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9190','2005-07-30 12:24:17.000','4421','177','2005-08-03 07:41:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9191','2005-07-30 12:25:51.000','500','314','2005-08-05 16:13:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9192','2005-07-30 12:26:26.000','2372','102','2005-08-04 07:54:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9193','2005-07-30 12:28:42.000','3470','69','2005-08-02 12:17:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9194','2005-07-30 12:28:45.000','2467','294','2005-08-06 14:38:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9195','2005-07-30 12:29:43.000','944','440','2005-08-04 12:35:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9196','2005-07-30 12:30:19.000','4298','251','2005-07-31 18:01:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9197','2005-07-30 12:31:36.000','3214','168','2005-08-03 09:05:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9198','2005-07-30 12:37:08.000','2371','105','2005-08-07 16:37:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9199','2005-07-30 12:38:00.000','4336','580','2005-08-01 07:09:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9200','2005-07-30 12:39:52.000','3277','137','2005-08-08 09:43:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9201','2005-07-30 12:42:21.000','4387','291','2005-08-08 06:50:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9202','2005-07-30 12:43:24.000','4525','466','2005-08-07 10:39:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9203','2005-07-30 12:43:40.000','2112','169','2005-08-01 09:31:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9204','2005-07-30 12:43:58.000','4378','43','2005-08-03 16:26:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9205','2005-07-30 12:46:40.000','4165','259','2005-08-08 14:58:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9206','2005-07-30 12:46:59.000','2021','404','2005-08-03 14:58:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9207','2005-07-30 12:49:57.000','1346','345','2005-07-31 14:32:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9208','2005-07-30 12:54:03.000','2751','339','2005-08-06 17:22:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9209','2005-07-30 12:55:36.000','3940','23','2005-08-03 11:31:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9210','2005-07-30 12:56:44.000','101','105','2005-08-08 09:41:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9211','2005-07-30 12:59:45.000','595','57','2005-08-07 18:17:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9212','2005-07-30 13:03:13.000','2111','73','2005-08-06 09:48:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9213','2005-07-30 13:07:11.000','184','388','2005-08-01 15:30:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9214','2005-07-30 13:10:14.000','2823','181','2005-08-06 14:22:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9215','2005-07-30 13:11:11.000','3591','128','2005-08-06 13:06:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9216','2005-07-30 13:11:19.000','2783','38','2005-07-31 11:27:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9217','2005-07-30 13:13:55.000','1561','112','2005-08-05 17:27:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9218','2005-07-30 13:14:35.000','119','172','2005-08-07 18:03:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9219','2005-07-30 13:15:21.000','771','329','2005-08-01 11:39:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9220','2005-07-30 13:17:27.000','2463','569','2005-08-07 11:34:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9221','2005-07-30 13:20:06.000','2496','113','2005-08-06 13:58:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9222','2005-07-30 13:21:08.000','3648','95','2005-08-08 10:42:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9223','2005-07-30 13:23:20.000','3231','595','2005-08-04 11:24:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9224','2005-07-30 13:25:37.000','2260','406','2005-08-01 15:13:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9225','2005-07-30 13:29:47.000','1992','391','2005-08-02 17:08:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9226','2005-07-30 13:31:20.000','4315','3','2005-08-06 16:42:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9227','2005-07-30 13:36:13.000','2353','522','2005-08-07 17:39:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9228','2005-07-30 13:36:57.000','2325','91','2005-08-05 10:43:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9229','2005-07-30 13:38:17.000','3780','276','2005-08-08 18:17:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9230','2005-07-30 13:39:42.000','1199','109','2005-07-31 19:20:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9231','2005-07-30 13:42:15.000','1587','489','2005-08-02 19:27:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9232','2005-07-30 13:43:00.000','1991','502','2005-08-02 11:39:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9233','2005-07-30 13:44:15.000','2320','357','2005-08-07 13:02:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9234','2005-07-30 13:45:54.000','1660','128','2005-08-02 15:33:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9235','2005-07-30 13:47:17.000','984','181','2005-08-06 17:15:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9236','2005-07-30 13:47:43.000','4030','2','2005-08-08 18:52:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9237','2005-07-30 13:48:17.000','2777','157','2005-07-31 13:57:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9238','2005-07-30 13:49:43.000','3356','12','2005-08-08 08:25:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9239','2005-07-30 13:50:52.000','1728','580','2005-08-06 16:28:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9240','2005-07-30 13:57:54.000','587','92','2005-08-03 12:23:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9241','2005-07-30 13:58:41.000','4145','187','2005-08-04 09:44:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9242','2005-07-30 14:03:58.000','755','306','2005-08-02 18:09:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9243','2005-07-30 14:06:27.000','876','516','2005-08-06 09:26:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9244','2005-07-30 14:06:53.000','3640','27','2005-08-03 19:46:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9245','2005-07-30 14:07:50.000','2586','116','2005-08-06 17:59:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9246','2005-07-30 14:12:31.000','3390','185','2005-08-02 14:25:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9247','2005-07-30 14:13:56.000','4106','426','2005-08-02 16:34:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9248','2005-07-30 14:14:11.000','1382','2','2005-08-05 11:19:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9249','2005-07-30 14:15:02.000','2015','296','2005-08-05 13:02:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9250','2005-07-30 14:18:16.000','4544','539','2005-08-04 12:31:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9251','2005-07-30 14:19:25.000','2948','390','2005-08-08 11:22:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9252','2005-07-30 14:19:59.000','2350','322','2005-08-07 15:17:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9253','2005-07-30 14:20:12.000','4183','151','2005-07-31 11:31:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9254','2005-07-30 14:26:11.000','495','33','2005-08-04 16:12:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9255','2005-07-30 14:26:46.000','1596','23','2005-08-07 18:16:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9256','2005-07-30 14:29:29.000','4021','19','2005-08-05 16:59:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9257','2005-07-30 14:30:38.000','2615','466','2005-08-04 17:57:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9258','2005-07-30 14:31:31.000','2007','275','2005-08-05 16:29:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9259','2005-07-30 14:37:44.000','97','138','2005-08-06 18:05:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9260','2005-07-30 14:38:22.000','3969','13','2005-08-07 18:47:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9261','2005-07-30 14:39:35.000','372','380','2005-08-08 11:26:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9262','2005-07-30 14:45:02.000','2322','349','2005-08-05 15:18:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9263','2005-07-30 14:48:24.000','73','410','2005-08-04 19:06:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9264','2005-07-30 14:51:36.000','4071','157','2005-08-02 10:06:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9265','2005-07-30 14:55:25.000','3700','560','2005-08-02 11:34:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9266','2005-07-30 14:59:01.000','1705','364','2005-07-31 17:01:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9267','2005-07-30 14:59:05.000','645','409','2005-08-04 10:17:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9268','2005-07-30 15:02:30.000','3593','592','2005-08-05 12:50:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9269','2005-07-30 15:02:33.000','548','435','2005-08-02 16:32:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9270','2005-07-30 15:03:16.000','700','232','2005-07-31 16:09:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9271','2005-07-30 15:04:31.000','2660','100','2005-07-31 20:33:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9272','2005-07-30 15:05:22.000','1352','553','2005-08-05 10:02:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9273','2005-07-30 15:05:36.000','1867','497','2005-08-08 09:07:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9274','2005-07-30 15:07:04.000','4424','47','2005-08-06 11:17:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9275','2005-07-30 15:09:15.000','1916','439','2005-07-31 10:23:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9276','2005-07-30 15:09:28.000','1528','237','2005-08-06 19:39:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9277','2005-07-30 15:13:45.000','3734','82','2005-08-05 10:25:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9278','2005-07-30 15:15:19.000','3782','581','2005-08-03 20:21:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9279','2005-07-30 15:15:21.000','1070','567','2005-08-07 18:46:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9280','2005-07-30 15:15:38.000','4103','286','2005-08-05 19:20:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9281','2005-07-30 15:15:51.000','3086','398','2005-08-05 12:58:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9282','2005-07-30 15:17:31.000','736','259','2005-08-07 20:46:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9283','2005-07-30 15:25:19.000','1858','360','2005-08-01 15:35:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9284','2005-07-30 15:25:19.000','3976','38','2005-08-01 17:45:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9285','2005-07-30 15:26:08.000','3686','273','2005-08-06 15:59:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9286','2005-07-30 15:32:28.000','2477','154','2005-07-31 20:42:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9287','2005-07-30 15:35:39.000','2048','551','2005-08-02 10:15:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9288','2005-07-30 15:56:39.000','2640','447','2005-08-04 13:25:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9289','2005-07-30 15:57:04.000','389','453','2005-08-07 18:46:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9290','2005-07-30 15:59:08.000','2275','500','2005-08-06 21:49:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9291','2005-07-30 16:03:39.000','2884','406','2005-08-05 11:11:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9292','2005-07-30 16:08:21.000','1702','11','2005-08-07 10:38:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9293','2005-07-30 16:12:28.000','1676','65','2005-08-05 18:34:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9294','2005-07-30 16:14:37.000','2468','433','2005-08-07 18:49:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9295','2005-07-30 16:18:39.000','494','102','2005-08-03 12:46:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9296','2005-07-30 16:21:13.000','4088','2','2005-08-08 11:57:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9297','2005-07-30 16:26:29.000','3502','191','2005-08-03 13:51:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9298','2005-07-30 16:27:53.000','2106','208','2005-08-07 12:32:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9299','2005-07-30 16:32:51.000','1515','555','2005-08-08 15:28:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9300','2005-07-30 16:33:12.000','1639','571','2005-08-05 15:56:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9301','2005-07-30 16:34:29.000','1073','174','2005-07-31 18:41:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9302','2005-07-30 16:34:57.000','2326','55','2005-07-31 11:08:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9303','2005-07-30 16:35:59.000','4299','186','2005-08-03 18:31:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9304','2005-07-30 16:41:34.000','2937','296','2005-08-02 13:55:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9305','2005-07-30 16:45:56.000','1224','82','2005-08-08 21:15:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9306','2005-07-30 16:47:17.000','3983','336','2005-08-02 22:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9307','2005-07-30 16:52:43.000','3831','538','2005-08-01 11:58:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9308','2005-07-30 16:53:21.000','2202','267','2005-08-08 15:33:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9309','2005-07-30 16:55:53.000','3616','30','2005-08-07 11:23:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9310','2005-07-30 16:57:09.000','2957','529','2005-08-03 18:14:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9311','2005-07-30 16:58:31.000','1432','178','2005-08-07 15:23:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9312','2005-07-30 16:59:17.000','2483','76','2005-08-03 17:24:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9313','2005-07-30 16:59:43.000','4070','41','2005-08-05 14:06:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9314','2005-07-30 17:05:19.000','2358','390','2005-07-31 12:19:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9315','2005-07-30 17:05:29.000','444','96','2005-08-01 12:47:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9316','2005-07-30 17:11:58.000','4409','366','2005-08-05 14:36:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9317','2005-07-30 17:13:37.000','4138','217','2005-08-08 11:33:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9318','2005-07-30 17:14:30.000','2426','314','2005-08-06 16:53:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9319','2005-07-30 17:15:27.000','4066','136','2005-08-03 14:03:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9320','2005-07-30 17:16:39.000','909','221','2005-08-06 18:43:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9321','2005-07-30 17:19:44.000','3558','112','2005-08-06 22:42:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9322','2005-07-30 17:21:39.000','223','439','2005-08-06 16:58:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9323','2005-07-30 17:21:44.000','3749','131','2005-08-03 16:28:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9324','2005-07-30 17:28:52.000','1231','332','2005-08-06 19:02:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9325','2005-07-30 17:29:19.000','1938','476','2005-08-08 12:55:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9326','2005-07-30 17:30:03.000','3772','588','2005-08-01 13:41:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9327','2005-07-30 17:31:03.000','345','373','2005-08-08 19:16:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9328','2005-07-30 17:32:11.000','1087','89','2005-08-05 13:36:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9329','2005-07-30 17:42:38.000','1293','593','2005-08-08 23:17:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9330','2005-07-30 17:44:24.000','4227','232','2005-08-08 17:39:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9331','2005-07-30 17:46:50.000','2248','274','2005-08-01 19:03:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9332','2005-07-30 17:53:39.000','1156','480','2005-08-02 12:25:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9333','2005-07-30 17:53:45.000','1377','437','2005-07-31 22:35:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9334','2005-07-30 17:56:38.000','1499','25','2005-08-03 21:27:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9335','2005-07-30 18:00:53.000','1006','522','2005-08-01 16:05:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9336','2005-07-30 18:01:15.000','1911','557','2005-08-05 23:10:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9337','2005-07-30 18:02:25.000','2363','90','2005-07-31 12:30:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9338','2005-07-30 18:03:13.000','1482','333','2005-08-08 23:57:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9339','2005-07-30 18:03:28.000','3171','68','2005-08-08 19:45:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9340','2005-07-30 18:07:16.000','3228','213','2005-08-04 14:33:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9341','2005-07-30 18:07:58.000','894','557','2005-08-01 17:43:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9342','2005-07-30 18:09:56.000','2318','552','2005-08-08 13:54:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9343','2005-07-30 18:13:13.000','3521','53','2005-08-02 13:48:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9344','2005-07-30 18:13:45.000','1005','396','2005-08-07 15:23:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9345','2005-07-30 18:13:51.000','2042','436','2005-08-07 13:45:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9346','2005-07-30 18:13:52.000','2845','196','2005-08-03 17:58:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9347','2005-07-30 18:16:03.000','3557','479','2005-08-05 18:35:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9348','2005-07-30 18:17:09.000','3128','87','2005-08-07 15:25:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9349','2005-07-30 18:20:08.000','3739','579','2005-08-08 22:06:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9350','2005-07-30 18:24:30.000','798','434','2005-08-02 15:34:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9351','2005-07-30 18:28:30.000','2063','107','2005-08-02 17:26:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9352','2005-07-30 18:29:26.000','2619','360','2005-07-31 19:43:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9353','2005-07-30 18:30:37.000','3581','283','2005-08-06 22:32:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9354','2005-07-30 18:32:51.000','510','595','2005-08-02 21:28:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9355','2005-07-30 18:35:25.000','1122','201','2005-08-03 20:33:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9356','2005-07-30 18:36:24.000','4188','60','2005-08-03 14:10:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9357','2005-07-30 18:37:00.000','3927','181','2005-08-08 19:57:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9358','2005-07-30 18:37:24.000','712','302','2005-08-07 23:34:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9359','2005-07-30 18:39:28.000','21','501','2005-07-31 15:39:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9360','2005-07-30 18:39:43.000','2119','186','2005-08-04 22:41:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9361','2005-07-30 18:43:49.000','4163','335','2005-08-06 21:24:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9362','2005-07-30 18:44:16.000','3357','420','2005-08-01 20:14:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9363','2005-07-30 18:44:23.000','873','323','2005-08-04 15:03:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9364','2005-07-30 18:44:44.000','306','87','2005-08-08 23:55:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9365','2005-07-30 18:46:02.000','1539','232','2005-08-03 20:15:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9366','2005-07-30 18:48:57.000','4013','557','2005-08-03 15:17:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9367','2005-07-30 18:49:58.000','793','557','2005-08-08 22:04:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9368','2005-07-30 18:50:53.000','3026','388','2005-08-05 17:56:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9369','2005-07-30 18:52:19.000','3538','36','2005-08-01 12:53:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9370','2005-07-30 18:57:29.000','4433','588','2005-08-01 21:35:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9371','2005-07-30 18:58:00.000','2980','4','2005-08-03 15:14:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9372','2005-07-30 19:04:30.000','4075','454','2005-08-09 00:18:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9373','2005-07-30 19:05:36.000','3478','180','2005-08-05 16:16:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9374','2005-07-30 19:10:03.000','103','302','2005-08-06 21:54:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9375','2005-07-30 19:10:17.000','3063','529','2005-08-02 23:00:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9376','2005-07-30 19:11:49.000','451','86','2005-08-04 18:14:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9377','2005-07-30 19:12:18.000','4164','421','2005-08-05 19:38:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9378','2005-07-30 19:12:54.000','2209','197','2005-08-05 18:16:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9379','2005-07-30 19:13:01.000','3855','452','2005-08-07 19:18:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9380','2005-07-30 19:17:31.000','4403','264','2005-08-01 20:46:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9381','2005-07-30 19:23:04.000','4064','329','2005-07-31 23:37:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9382','2005-07-30 19:23:44.000','2127','17','2005-08-06 16:20:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9383','2005-07-30 19:24:50.000','2806','416','2005-08-01 21:41:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9384','2005-07-30 19:25:35.000','2313','220','2005-08-08 21:50:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9385','2005-07-30 19:25:49.000','3453','570','2005-08-08 17:08:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9386','2005-07-30 19:26:21.000','1123','189','2005-08-05 21:00:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9387','2005-07-30 19:27:05.000','577','495','2005-08-07 21:19:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9388','2005-07-30 19:27:22.000','2116','332','2005-08-08 15:31:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9389','2005-07-30 19:27:59.000','3124','198','2005-08-04 18:25:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9390','2005-07-30 19:42:07.000','1794','103','2005-08-01 23:17:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9391','2005-07-30 19:48:41.000','665','273','2005-08-04 15:27:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9392','2005-07-30 19:50:13.000','2797','29','2005-08-03 22:38:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9393','2005-07-30 20:04:48.000','843','158','2005-08-02 15:52:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9394','2005-07-30 20:06:24.000','161','204','2005-08-06 22:36:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9395','2005-07-30 20:07:06.000','1298','306','2005-08-08 21:21:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9396','2005-07-30 20:07:24.000','1250','91','2005-08-03 21:20:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9397','2005-07-30 20:07:29.000','1550','373','2005-08-05 00:36:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9398','2005-07-30 20:09:00.000','1175','570','2005-08-01 23:35:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9399','2005-07-30 20:14:50.000','3668','569','2005-08-03 17:30:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9400','2005-07-30 20:15:58.000','3910','368','2005-08-03 21:21:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9401','2005-07-30 20:18:19.000','2057','331','2005-08-07 15:46:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9402','2005-07-30 20:18:27.000','2424','48','2005-08-07 21:29:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9403','2005-07-30 20:18:53.000','3466','267','2005-08-06 19:54:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9404','2005-07-30 20:21:35.000','3832','140','2005-08-02 15:52:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9405','2005-07-30 20:22:17.000','1983','463','2005-08-08 16:55:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9406','2005-07-30 20:24:00.000','3419','453','2005-08-07 19:50:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9407','2005-07-30 20:25:24.000','2594','585','2005-08-08 22:51:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9408','2005-07-30 20:32:09.000','4383','571','2005-08-04 20:14:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9409','2005-07-30 20:33:53.000','3053','156','2005-08-05 18:32:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9410','2005-07-30 20:38:05.000','1789','22','2005-07-31 19:57:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9411','2005-07-30 20:38:22.000','3484','536','2005-08-06 01:23:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9412','2005-07-30 20:44:10.000','2482','522','2005-08-06 21:13:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9413','2005-07-30 20:44:39.000','2618','290','2005-08-01 01:56:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9414','2005-07-30 20:46:02.000','578','484','2005-08-07 21:23:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9415','2005-07-30 20:48:31.000','3336','139','2005-08-05 19:45:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9416','2005-07-30 20:52:45.000','1470','265','2005-08-02 17:38:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9417','2005-07-30 20:54:55.000','2509','519','2005-08-04 00:54:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9418','2005-07-30 21:00:52.000','241','168','2005-08-08 15:56:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9419','2005-07-30 21:04:59.000','4427','142','2005-08-06 15:47:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9420','2005-07-30 21:05:18.000','147','72','2005-08-05 23:52:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9421','2005-07-30 21:08:32.000','2206','161','2005-08-02 00:43:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9422','2005-07-30 21:08:41.000','1843','470','2005-08-07 15:55:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9423','2005-07-30 21:10:14.000','3145','242','2005-08-07 16:34:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9424','2005-07-30 21:10:56.000','4499','256','2005-08-05 00:01:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9425','2005-07-30 21:11:21.000','271','295','2005-08-05 19:00:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9427','2005-07-30 21:16:33.000','1494','85','2005-08-05 17:23:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9428','2005-07-30 21:18:37.000','1948','335','2005-08-05 16:09:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9429','2005-07-30 21:19:26.000','1769','288','2005-08-07 18:39:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9430','2005-07-30 21:20:13.000','1529','367','2005-08-04 21:45:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9431','2005-07-30 21:24:22.000','3364','39','2005-08-03 01:22:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9432','2005-07-30 21:26:18.000','2489','570','2005-08-05 00:23:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9433','2005-07-30 21:28:17.000','1082','128','2005-08-08 18:20:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9434','2005-07-30 21:29:41.000','3792','13','2005-08-01 16:30:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9435','2005-07-30 21:31:02.000','3116','301','2005-08-05 22:34:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9436','2005-07-30 21:33:01.000','2329','268','2005-08-06 17:38:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9437','2005-07-30 21:36:04.000','1230','592','2005-08-08 01:26:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9438','2005-07-30 21:36:15.000','121','14','2005-08-07 16:54:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9439','2005-07-30 21:38:12.000','290','479','2005-08-06 00:03:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9440','2005-07-30 21:40:15.000','414','535','2005-08-04 15:45:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9441','2005-07-30 21:43:28.000','3982','519','2005-08-08 16:57:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9442','2005-07-30 21:44:31.000','44','75','2005-08-04 01:29:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9443','2005-07-30 21:45:46.000','1675','3','2005-08-05 21:22:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9444','2005-07-30 21:48:44.000','1134','259','2005-08-08 22:36:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9445','2005-07-30 21:50:42.000','1480','549','2005-08-05 18:34:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9446','2005-07-30 21:53:01.000','1880','477','2005-08-06 19:00:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9447','2005-07-30 21:54:22.000','1053','82','2005-08-09 01:07:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9448','2005-07-30 21:56:13.000','1213','278','2005-08-04 18:03:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9449','2005-07-30 22:02:34.000','2','581','2005-08-06 02:09:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9450','2005-07-30 22:04:04.000','1371','430','2005-08-05 18:39:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9451','2005-07-30 22:10:17.000','685','584','2005-08-07 02:53:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9452','2005-07-30 22:19:16.000','3178','130','2005-08-04 19:26:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9453','2005-07-30 22:20:04.000','1988','221','2005-08-08 02:27:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9454','2005-07-30 22:20:09.000','3028','81','2005-08-04 01:33:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9455','2005-07-30 22:20:29.000','2647','220','2005-08-08 20:08:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9456','2005-07-30 22:22:16.000','2068','534','2005-08-05 18:56:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9457','2005-07-30 22:23:05.000','2172','487','2005-07-31 23:07:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9458','2005-07-30 22:24:34.000','3105','343','2005-08-04 21:26:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9459','2005-07-30 22:24:46.000','1132','489','2005-08-02 00:44:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9460','2005-07-30 22:25:39.000','4463','580','2005-08-08 20:56:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9461','2005-07-30 22:29:13.000','1679','377','2005-08-05 20:55:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9462','2005-07-30 22:30:44.000','4090','192','2005-08-09 03:54:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9463','2005-07-30 22:30:57.000','883','352','2005-08-03 22:53:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9464','2005-07-30 22:31:31.000','3904','534','2005-08-07 01:10:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9465','2005-07-30 22:39:53.000','3084','2','2005-08-06 16:43:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9466','2005-07-30 22:44:36.000','2595','137','2005-08-07 02:35:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9467','2005-07-30 22:45:34.000','1905','202','2005-08-08 00:58:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9468','2005-07-30 22:53:52.000','4366','20','2005-08-07 00:22:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9469','2005-07-30 22:56:34.000','967','59','2005-08-07 03:16:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9470','2005-07-30 23:01:31.000','3908','566','2005-08-07 01:35:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9471','2005-07-30 23:02:36.000','2390','424','2005-08-04 17:49:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9472','2005-07-30 23:03:32.000','4178','404','2005-08-01 18:02:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9473','2005-07-30 23:04:13.000','1717','185','2005-08-04 21:48:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9474','2005-07-30 23:05:44.000','3771','206','2005-08-05 23:46:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9475','2005-07-30 23:06:33.000','2186','567','2005-08-04 23:23:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9476','2005-07-30 23:06:40.000','3599','197','2005-08-04 22:52:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9477','2005-07-30 23:07:22.000','1932','213','2005-08-04 20:54:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9478','2005-07-30 23:12:53.000','1139','283','2005-08-04 02:41:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9479','2005-07-30 23:22:09.000','3461','308','2005-07-31 22:26:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9480','2005-07-30 23:26:03.000','597','373','2005-08-04 21:18:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9481','2005-07-30 23:26:05.000','613','481','2005-08-04 17:46:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9482','2005-07-30 23:29:16.000','2421','348','2005-08-02 20:37:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9483','2005-07-30 23:31:31.000','1136','593','2005-08-09 04:29:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9484','2005-07-30 23:31:40.000','3389','26','2005-08-02 18:25:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9485','2005-07-30 23:32:40.000','3722','338','2005-08-08 17:44:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9486','2005-07-30 23:35:42.000','2787','403','2005-08-09 02:08:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9487','2005-07-30 23:40:22.000','2165','406','2005-08-01 22:29:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9488','2005-07-30 23:42:42.000','4221','528','2005-08-08 22:15:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9489','2005-07-30 23:43:32.000','4011','17','2005-07-31 20:45:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9490','2005-07-30 23:45:09.000','1302','487','2005-08-07 18:50:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9491','2005-07-30 23:45:23.000','3624','179','2005-08-01 00:33:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9492','2005-07-30 23:52:21.000','639','126','2005-08-08 20:50:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9493','2005-07-30 23:52:30.000','1522','5','2005-08-08 05:22:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9494','2005-07-30 23:52:46.000','3799','254','2005-08-05 23:13:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9495','2005-07-30 23:54:26.000','2128','397','2005-08-01 22:02:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9496','2005-07-30 23:55:20.000','453','125','2005-08-02 02:47:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9497','2005-07-30 23:56:54.000','933','595','2005-08-04 19:52:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9498','2005-07-30 23:56:55.000','1035','289','2005-08-03 18:34:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9499','2005-07-30 23:58:30.000','602','461','2005-08-01 00:55:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9500','2005-07-30 23:58:36.000','2808','241','2005-08-07 21:08:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9501','2005-07-30 23:59:21.000','4398','75','2005-08-05 19:50:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9502','2005-07-31 00:02:10.000','2700','471','2005-08-01 19:47:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9503','2005-07-31 00:02:38.000','1013','311','2005-08-06 06:01:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9504','2005-07-31 00:09:07.000','91','125','2005-08-02 05:44:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9505','2005-07-31 00:11:19.000','4047','543','2005-08-05 18:24:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9506','2005-07-31 00:19:01.000','3872','189','2005-08-02 00:20:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9507','2005-07-31 00:22:29.000','387','525','2005-08-07 05:59:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9508','2005-07-31 00:22:39.000','1204','316','2005-08-04 05:40:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9509','2005-07-31 00:22:42.000','818','320','2005-08-03 23:24:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9510','2005-07-31 00:24:17.000','2301','494','2005-08-08 18:47:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9511','2005-07-31 00:25:05.000','964','549','2005-08-09 02:46:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9512','2005-07-31 00:26:30.000','3786','173','2005-08-04 23:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9513','2005-07-31 00:28:30.000','396','317','2005-08-01 00:22:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9514','2005-07-31 00:29:44.000','1892','243','2005-08-02 23:49:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9515','2005-07-31 00:35:05.000','3099','264','2005-08-02 23:35:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9516','2005-07-31 00:40:58.000','3519','424','2005-08-07 02:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9517','2005-07-31 00:41:23.000','3299','170','2005-08-02 23:08:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9518','2005-07-31 00:43:26.000','2714','215','2005-08-04 19:12:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9519','2005-07-31 00:45:57.000','3767','235','2005-08-06 00:59:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9520','2005-07-31 00:50:54.000','1306','299','2005-08-04 20:05:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9521','2005-07-31 00:52:24.000','1423','227','2005-08-06 03:33:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9522','2005-07-31 00:55:11.000','4266','294','2005-08-03 06:41:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9523','2005-07-31 00:56:09.000','891','356','2005-08-05 05:44:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9524','2005-07-31 01:01:06.000','1796','535','2005-08-04 04:06:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9525','2005-07-31 01:02:18.000','2990','246','2005-08-06 21:31:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9526','2005-07-31 01:02:22.000','417','342','2005-08-04 03:00:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9527','2005-07-31 01:02:24.000','2539','200','2005-08-09 02:08:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9528','2005-07-31 01:05:04.000','193','241','2005-08-07 01:16:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9529','2005-07-31 01:05:26.000','816','123','2005-08-02 22:30:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9530','2005-07-31 01:09:06.000','1718','148','2005-08-04 23:47:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9531','2005-07-31 01:11:53.000','4550','268','2005-08-07 02:49:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9532','2005-07-31 01:16:51.000','1309','488','2005-08-01 20:23:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9533','2005-07-31 01:18:10.000','4156','522','2005-08-07 19:58:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9534','2005-07-31 01:18:27.000','4457','519','2005-08-06 00:28:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9535','2005-07-31 01:18:53.000','2413','485','2005-08-04 03:04:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9536','2005-07-31 01:19:02.000','2547','310','2005-08-02 19:38:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9537','2005-07-31 01:23:00.000','546','488','2005-08-01 01:16:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9538','2005-07-31 01:25:22.000','3402','68','2005-08-06 00:10:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9539','2005-07-31 01:36:19.000','3793','436','2005-08-04 23:47:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9540','2005-07-31 01:40:06.000','2200','365','2005-08-01 01:09:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9541','2005-07-31 01:40:14.000','1774','422','2005-08-05 06:34:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9542','2005-07-31 01:41:48.000','2243','595','2005-08-01 00:49:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9543','2005-07-31 01:43:34.000','956','369','2005-08-01 06:49:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9544','2005-07-31 01:44:51.000','2383','28','2005-08-05 05:25:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9545','2005-07-31 01:46:24.000','3451','594','2005-08-09 06:11:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9546','2005-07-31 01:47:40.000','211','63','2005-08-02 07:25:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9547','2005-07-31 01:52:34.000','2414','440','2005-08-03 23:12:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9548','2005-07-31 01:54:19.000','3038','576','2005-08-05 00:50:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9549','2005-07-31 01:57:04.000','2409','63','2005-08-07 21:00:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9550','2005-07-31 01:57:34.000','2233','583','2005-08-08 23:33:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9551','2005-07-31 02:04:58.000','1260','30','2005-08-06 04:07:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9552','2005-07-31 02:05:32.000','3544','261','2005-08-01 06:59:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9553','2005-07-31 02:06:34.000','4187','579','2005-08-08 02:20:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9554','2005-07-31 02:06:49.000','2581','490','2005-08-01 22:27:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9555','2005-07-31 02:11:16.000','2108','382','2005-08-03 06:58:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9556','2005-07-31 02:13:30.000','3269','521','2005-08-08 06:46:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9557','2005-07-31 02:14:01.000','708','328','2005-08-05 23:55:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9558','2005-07-31 02:14:35.000','1161','418','2005-08-06 03:00:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9559','2005-07-31 02:15:53.000','2882','159','2005-08-08 02:38:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9560','2005-07-31 02:17:27.000','4236','471','2005-08-07 03:33:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9561','2005-07-31 02:22:13.000','1079','58','2005-08-03 07:00:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9562','2005-07-31 02:23:20.000','1571','116','2005-08-06 21:01:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9563','2005-07-31 02:28:39.000','3858','167','2005-08-05 22:10:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9564','2005-07-31 02:31:37.000','383','377','2005-08-03 22:57:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9565','2005-07-31 02:32:00.000','3621','485','2005-08-04 05:45:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9566','2005-07-31 02:32:10.000','643','346','2005-08-02 23:54:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9567','2005-07-31 02:36:11.000','3688','37','2005-08-07 01:19:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9568','2005-07-31 02:37:44.000','1248','358','2005-08-02 07:07:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9569','2005-07-31 02:39:38.000','813','405','2005-08-02 05:09:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9570','2005-07-31 02:40:37.000','591','385','2005-08-01 01:59:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9571','2005-07-31 02:42:18.000','2219','1','2005-08-02 23:26:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9572','2005-07-31 02:44:10.000','1453','283','2005-08-01 03:30:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9573','2005-07-31 02:45:38.000','3745','59','2005-08-09 04:31:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9574','2005-07-31 02:49:20.000','2782','233','2005-08-05 02:36:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9575','2005-07-31 02:51:53.000','3971','193','2005-08-03 20:54:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9576','2005-07-31 02:52:59.000','3327','145','2005-08-05 23:35:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9577','2005-07-31 02:53:33.000','2423','526','2005-08-07 05:56:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9578','2005-07-31 02:54:31.000','2965','115','2005-08-02 02:48:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9579','2005-07-31 02:59:20.000','3547','35','2005-08-06 03:52:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9580','2005-07-31 03:01:11.000','532','22','2005-08-05 06:01:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9581','2005-07-31 03:03:07.000','2588','302','2005-08-05 23:01:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9582','2005-07-31 03:05:19.000','3913','347','2005-08-04 07:26:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9583','2005-07-31 03:05:21.000','3543','568','2005-08-06 00:14:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9584','2005-07-31 03:05:48.000','419','141','2005-08-01 05:50:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9585','2005-07-31 03:05:55.000','3249','197','2005-08-02 23:54:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9586','2005-07-31 03:07:16.000','3987','415','2005-08-04 00:39:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9587','2005-07-31 03:10:30.000','2966','235','2005-08-06 06:54:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9588','2005-07-31 03:13:13.000','1368','499','2005-08-02 04:06:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9589','2005-07-31 03:13:29.000','2604','574','2005-08-09 01:51:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9590','2005-07-31 03:17:16.000','2293','585','2005-08-08 04:24:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9591','2005-07-31 03:19:28.000','504','97','2005-08-01 07:30:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9592','2005-07-31 03:21:16.000','1828','14','2005-08-05 08:32:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9593','2005-07-31 03:22:30.000','1223','28','2005-08-05 08:23:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9594','2005-07-31 03:23:52.000','4382','148','2005-08-04 23:06:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9595','2005-07-31 03:27:58.000','2829','3','2005-08-03 05:58:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9596','2005-07-31 03:28:47.000','2847','55','2005-08-04 03:43:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9597','2005-07-31 03:29:07.000','3317','61','2005-08-09 03:33:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9598','2005-07-31 03:30:41.000','1105','468','2005-08-04 03:54:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9599','2005-07-31 03:32:06.000','3164','502','2005-08-04 07:47:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9600','2005-07-31 03:35:34.000','3731','464','2005-08-08 22:50:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9601','2005-07-31 03:42:17.000','1592','553','2005-08-04 02:02:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9602','2005-07-31 03:42:51.000','3173','386','2005-08-01 08:39:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9603','2005-07-31 03:43:43.000','2266','541','2005-08-02 00:11:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9604','2005-07-31 03:47:12.000','4342','580','2005-08-03 06:48:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9605','2005-07-31 03:50:07.000','1477','94','2005-08-07 09:15:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9606','2005-07-31 03:50:46.000','1357','253','2005-08-01 05:29:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9607','2005-07-31 03:51:06.000','3414','294','2005-08-02 00:18:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9608','2005-07-31 03:51:52.000','363','397','2005-08-06 05:38:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9609','2005-07-31 03:53:24.000','693','112','2005-08-05 08:32:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9610','2005-07-31 03:54:05.000','3110','16','2005-08-06 23:11:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9611','2005-07-31 03:54:43.000','1976','215','2005-08-05 03:54:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9612','2005-07-31 03:58:31.000','2142','69','2005-08-04 07:34:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9613','2005-07-31 03:58:53.000','3251','188','2005-08-02 00:10:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9614','2005-07-31 03:59:31.000','2955','548','2005-08-08 04:19:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9615','2005-07-31 03:59:56.000','3370','50','2005-08-02 00:46:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9616','2005-07-31 04:05:01.000','1210','550','2005-08-05 00:10:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9617','2005-07-31 04:15:38.000','529','102','2005-08-02 04:24:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9618','2005-07-31 04:16:14.000','2688','253','2005-08-07 02:43:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9619','2005-07-31 04:17:02.000','1730','138','2005-08-05 06:36:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9620','2005-07-31 04:19:18.000','2177','576','2005-08-08 09:20:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9621','2005-07-31 04:21:08.000','325','38','2005-08-08 03:50:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9622','2005-07-31 04:21:45.000','2255','411','2005-08-02 09:20:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9623','2005-07-31 04:30:02.000','113','360','2005-08-06 23:34:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9624','2005-07-31 04:30:03.000','3480','7','2005-08-06 09:13:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9625','2005-07-31 04:30:48.000','1703','445','2005-08-03 01:12:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9626','2005-07-31 04:37:41.000','2216','546','2005-08-08 04:00:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9627','2005-07-31 04:42:46.000','471','12','2005-08-08 00:42:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9628','2005-07-31 04:51:11.000','1387','565','2005-07-31 23:11:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9629','2005-07-31 04:54:43.000','2773','8','2005-08-02 08:36:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9630','2005-07-31 04:57:07.000','2008','599','2005-08-07 10:55:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9631','2005-07-31 05:02:00.000','321','595','2005-08-02 02:04:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9632','2005-07-31 05:02:23.000','3368','217','2005-08-06 04:49:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9633','2005-07-31 05:04:08.000','1141','334','2005-08-06 00:52:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9634','2005-07-31 05:06:02.000','924','444','2005-08-04 06:53:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9635','2005-07-31 05:12:27.000','1687','371','2005-08-02 00:24:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9636','2005-07-31 05:12:59.000','1725','27','2005-08-09 07:31:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9637','2005-07-31 05:18:54.000','3013','130','2005-08-03 01:23:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9638','2005-07-31 05:30:27.000','1616','436','2005-08-09 02:04:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9639','2005-07-31 05:32:10.000','1373','459','2005-08-03 07:04:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9640','2005-07-31 05:33:25.000','1067','67','2005-08-09 09:41:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9641','2005-07-31 05:33:48.000','1085','30','2005-08-04 07:43:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9642','2005-07-31 05:33:57.000','3550','68','2005-08-05 04:54:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9643','2005-07-31 05:35:48.000','3576','538','2005-08-08 04:28:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9644','2005-07-31 05:40:35.000','4577','441','2005-08-09 08:18:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9645','2005-07-31 05:42:49.000','3413','519','2005-08-04 00:08:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9646','2005-07-31 05:43:28.000','3756','89','2005-08-08 04:00:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9647','2005-07-31 05:45:15.000','3415','475','2005-08-06 08:54:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9648','2005-07-31 05:46:03.000','4063','72','2005-08-09 04:36:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9649','2005-07-31 05:46:54.000','1588','51','2005-08-04 08:42:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9650','2005-07-31 05:47:32.000','2997','414','2005-08-04 00:50:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9651','2005-07-31 05:48:49.000','4059','324','2005-08-04 06:53:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9652','2005-07-31 05:49:53.000','448','207','2005-08-06 07:38:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9653','2005-07-31 05:55:38.000','1451','383','2005-08-03 09:35:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9654','2005-07-31 05:57:42.000','3286','506','2005-08-06 04:19:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9655','2005-07-31 05:57:54.000','3403','435','2005-08-06 02:00:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9656','2005-07-31 06:00:21.000','4215','39','2005-08-05 04:36:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9657','2005-07-31 06:00:41.000','2681','402','2005-08-06 06:51:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9658','2005-07-31 06:00:52.000','2332','282','2005-08-09 04:47:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9659','2005-07-31 06:02:14.000','4262','360','2005-08-07 00:54:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9660','2005-07-31 06:03:17.000','1090','406','2005-08-07 06:59:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9661','2005-07-31 06:06:37.000','2693','237','2005-08-04 07:37:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9662','2005-07-31 06:09:53.000','2757','96','2005-08-08 00:50:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9663','2005-07-31 06:10:48.000','2099','339','2005-08-01 11:40:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9664','2005-07-31 06:12:08.000','360','13','2005-08-04 02:19:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9665','2005-07-31 06:17:33.000','2863','478','2005-08-04 08:53:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9666','2005-07-31 06:20:58.000','4318','592','2005-08-06 06:09:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9667','2005-07-31 06:23:52.000','4289','523','2005-08-09 09:12:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9668','2005-07-31 06:31:03.000','1647','378','2005-08-07 06:19:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9669','2005-07-31 06:31:36.000','4496','277','2005-08-08 03:05:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9670','2005-07-31 06:33:33.000','3709','349','2005-08-07 04:51:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9671','2005-07-31 06:33:41.000','920','133','2005-08-02 07:50:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9672','2005-07-31 06:34:06.000','4394','183','2005-08-08 10:29:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9673','2005-07-31 06:34:55.000','339','27','2005-08-09 09:15:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9674','2005-07-31 06:36:53.000','3213','297','2005-08-06 02:50:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9675','2005-07-31 06:37:07.000','2523','243','2005-08-03 07:03:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9676','2005-07-31 06:39:13.000','681','239','2005-08-05 09:31:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9677','2005-07-31 06:39:45.000','3200','274','2005-08-01 02:37:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9678','2005-07-31 06:40:47.000','3430','383','2005-08-02 00:57:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9679','2005-07-31 06:41:19.000','3819','599','2005-08-02 07:23:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9680','2005-07-31 06:41:46.000','3010','84','2005-08-01 11:02:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9681','2005-07-31 06:42:09.000','64','160','2005-08-06 08:21:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9682','2005-07-31 06:47:10.000','2427','425','2005-08-04 09:07:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9683','2005-07-31 06:47:13.000','856','141','2005-08-04 05:52:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9684','2005-07-31 06:48:33.000','362','591','2005-08-01 07:07:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9685','2005-07-31 06:49:18.000','3097','165','2005-08-04 03:19:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9686','2005-07-31 06:50:06.000','3825','386','2005-08-06 08:41:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9687','2005-07-31 06:52:54.000','3540','470','2005-08-01 03:40:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9688','2005-07-31 06:56:08.000','1304','566','2005-08-08 03:31:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9689','2005-07-31 07:00:08.000','819','498','2005-08-04 03:33:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9690','2005-07-31 07:06:29.000','4449','468','2005-08-06 09:45:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9691','2005-07-31 07:09:55.000','2626','50','2005-08-09 02:29:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9692','2005-07-31 07:11:04.000','3481','295','2005-08-07 06:34:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9693','2005-07-31 07:11:50.000','1031','273','2005-08-08 09:55:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9694','2005-07-31 07:13:16.000','3447','508','2005-08-06 09:12:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9695','2005-07-31 07:13:30.000','726','95','2005-08-07 05:38:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9696','2005-07-31 07:13:46.000','2703','156','2005-08-03 10:49:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9697','2005-07-31 07:23:11.000','762','479','2005-08-05 08:04:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9698','2005-07-31 07:24:35.000','3477','594','2005-08-09 04:52:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9699','2005-07-31 07:29:25.000','199','21','2005-08-06 01:35:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9700','2005-07-31 07:29:59.000','2678','40','2005-08-02 09:53:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9701','2005-07-31 07:32:21.000','4581','401','2005-08-01 05:07:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9702','2005-07-31 07:34:07.000','3353','525','2005-08-02 06:13:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9703','2005-07-31 07:34:52.000','2708','57','2005-08-03 13:33:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9704','2005-07-31 07:39:32.000','1402','385','2005-08-06 01:50:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9705','2005-07-31 07:40:33.000','4158','28','2005-08-01 03:50:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9706','2005-07-31 07:43:19.000','142','508','2005-08-05 11:11:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9707','2005-07-31 07:44:18.000','203','351','2005-08-08 12:45:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9708','2005-07-31 07:45:33.000','3264','12','2005-08-08 08:56:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9709','2005-07-31 08:04:55.000','2096','137','2005-08-07 08:58:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9710','2005-07-31 08:05:31.000','3486','380','2005-08-09 03:29:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9711','2005-07-31 08:06:41.000','1525','231','2005-08-02 10:30:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9712','2005-07-31 08:13:11.000','2487','219','2005-08-08 12:40:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9713','2005-07-31 08:13:28.000','929','158','2005-08-07 10:11:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9714','2005-07-31 08:15:32.000','1532','144','2005-08-03 08:33:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9715','2005-07-31 08:16:58.000','3319','237','2005-08-04 11:13:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9716','2005-07-31 08:23:53.000','3385','287','2005-08-08 12:03:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9717','2005-07-31 08:24:41.000','4207','114','2005-08-04 02:51:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9718','2005-07-31 08:25:03.000','2747','23','2005-08-08 04:16:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9719','2005-07-31 08:25:13.000','335','584','2005-08-05 08:22:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9720','2005-07-31 08:25:21.000','1282','587','2005-08-07 11:30:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9721','2005-07-31 08:28:46.000','3942','196','2005-08-05 14:03:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9722','2005-07-31 08:29:48.000','4260','125','2005-08-07 07:52:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9723','2005-07-31 08:31:18.000','3968','24','2005-08-03 10:25:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9724','2005-07-31 08:33:08.000','518','130','2005-08-08 04:50:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9725','2005-07-31 08:35:18.000','3960','503','2005-08-03 03:46:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9726','2005-07-31 08:37:07.000','1701','162','2005-08-09 06:09:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9727','2005-07-31 08:39:13.000','3076','536','2005-08-03 07:54:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9728','2005-07-31 08:40:54.000','3630','399','2005-08-03 04:14:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9729','2005-07-31 08:43:43.000','4199','273','2005-08-01 13:25:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9730','2005-07-31 08:50:08.000','2605','242','2005-08-08 12:21:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9731','2005-07-31 08:54:47.000','3713','349','2005-08-05 03:47:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9732','2005-07-31 08:56:08.000','3262','288','2005-08-07 11:05:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9733','2005-07-31 08:57:35.000','1255','575','2005-08-04 04:47:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9734','2005-07-31 08:57:45.000','3320','125','2005-08-05 11:57:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9735','2005-07-31 08:57:49.000','4228','315','2005-08-08 13:51:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9736','2005-07-31 08:58:40.000','2072','13','2005-08-09 08:34:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9737','2005-07-31 08:59:18.000','1720','475','2005-08-03 12:19:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9738','2005-07-31 09:04:14.000','2278','568','2005-08-05 14:40:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9739','2005-07-31 09:08:03.000','1328','343','2005-08-04 13:57:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9740','2005-07-31 09:08:03.000','3497','443','2005-08-06 04:48:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9741','2005-07-31 09:09:22.000','1971','495','2005-08-07 10:01:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9742','2005-07-31 09:10:20.000','4058','48','2005-08-08 10:07:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9743','2005-07-31 09:12:42.000','1740','476','2005-08-06 11:57:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9744','2005-07-31 09:15:38.000','839','459','2005-08-03 10:31:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9745','2005-07-31 09:16:14.000','3610','217','2005-08-07 12:11:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9746','2005-07-31 09:16:48.000','1459','308','2005-08-07 06:36:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9747','2005-07-31 09:16:57.000','2455','106','2005-08-08 06:47:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9748','2005-07-31 09:17:56.000','3308','550','2005-08-02 14:54:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9749','2005-07-31 09:18:33.000','658','52','2005-08-06 07:41:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9750','2005-07-31 09:19:46.000','3174','527','2005-08-06 08:07:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9751','2005-07-31 09:20:50.000','36','202','2005-08-01 05:34:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9752','2005-07-31 09:22:02.000','249','199','2005-08-02 14:34:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9753','2005-07-31 09:22:38.000','3529','98','2005-08-01 08:45:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9754','2005-07-31 09:23:43.000','3751','479','2005-08-08 06:04:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9755','2005-07-31 09:24:55.000','86','108','2005-08-07 06:00:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9756','2005-07-31 09:25:00.000','207','400','2005-08-02 05:11:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9757','2005-07-31 09:25:14.000','2596','408','2005-08-01 14:43:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9758','2005-07-31 09:25:38.000','1307','160','2005-08-03 14:16:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9759','2005-07-31 09:25:57.000','2950','574','2005-08-07 12:56:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9760','2005-07-31 09:29:33.000','426','511','2005-08-09 07:32:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9761','2005-07-31 09:31:54.000','3778','60','2005-08-03 11:02:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9762','2005-07-31 09:32:54.000','155','540','2005-08-05 04:55:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9763','2005-07-31 09:34:03.000','126','393','2005-08-08 05:30:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9764','2005-07-31 09:42:58.000','3761','136','2005-08-07 07:22:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9765','2005-07-31 09:44:40.000','472','551','2005-08-05 10:57:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9766','2005-07-31 09:46:29.000','4049','570','2005-08-01 05:08:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9767','2005-07-31 09:46:49.000','3432','89','2005-08-03 11:20:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9768','2005-07-31 09:48:41.000','2656','582','2005-08-08 11:40:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9769','2005-07-31 09:52:16.000','2958','484','2005-08-06 09:26:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9770','2005-07-31 09:52:40.000','1226','317','2005-08-09 06:44:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9771','2005-07-31 09:55:36.000','4123','398','2005-08-04 10:11:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9772','2005-07-31 09:56:07.000','3639','147','2005-08-01 13:50:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9773','2005-07-31 09:56:56.000','4555','376','2005-08-04 09:38:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9774','2005-07-31 09:57:51.000','4174','306','2005-08-02 09:08:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9775','2005-07-31 10:00:00.000','2818','162','2005-08-01 08:57:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9776','2005-07-31 10:01:03.000','2524','73','2005-08-03 07:20:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9777','2005-07-31 10:01:06.000','225','539','2005-08-08 04:44:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9778','2005-07-31 10:02:04.000','304','230','2005-08-04 07:44:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9779','2005-07-31 10:08:33.000','1280','402','2005-08-03 14:56:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9780','2005-07-31 10:10:22.000','3241','102','2005-08-02 11:43:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9781','2005-07-31 10:13:02.000','2310','155','2005-08-09 14:46:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9782','2005-07-31 10:14:26.000','2397','438','2005-08-06 16:11:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9783','2005-07-31 10:15:46.000','836','75','2005-08-09 13:22:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9784','2005-07-31 10:21:32.000','2761','362','2005-08-07 09:20:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9785','2005-07-31 10:22:15.000','4101','587','2005-08-02 10:02:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9786','2005-07-31 10:25:21.000','2560','586','2005-08-03 04:28:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9787','2005-07-31 10:26:19.000','3559','272','2005-08-09 09:02:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9788','2005-07-31 10:28:21.000','4367','344','2005-08-09 13:45:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9789','2005-07-31 10:30:25.000','619','137','2005-08-03 14:58:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9790','2005-07-31 10:34:08.000','3643','284','2005-08-04 11:19:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9791','2005-07-31 10:35:22.000','3642','300','2005-08-03 05:34:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9792','2005-07-31 10:43:41.000','3163','292','2005-08-07 10:18:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9793','2005-07-31 10:45:11.000','4576','295','2005-08-03 14:29:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9794','2005-07-31 10:47:01.000','1771','403','2005-08-02 06:52:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9795','2005-07-31 10:47:19.000','2005','63','2005-08-04 09:32:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9796','2005-07-31 10:52:43.000','1038','539','2005-08-09 06:08:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9797','2005-07-31 10:53:44.000','687','52','2005-08-09 05:51:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9798','2005-07-31 10:55:18.000','3759','55','2005-08-01 07:37:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9799','2005-07-31 10:58:32.000','3008','494','2005-08-01 12:08:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9800','2005-07-31 11:00:58.000','2153','257','2005-08-02 10:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9801','2005-07-31 11:03:13.000','3033','158','2005-08-04 10:55:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9802','2005-07-31 11:04:20.000','2156','594','2005-08-03 05:28:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9803','2005-07-31 11:06:02.000','3783','520','2005-08-01 06:25:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9804','2005-07-31 11:07:39.000','2490','196','2005-08-09 11:57:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9805','2005-07-31 11:11:10.000','4179','36','2005-08-03 07:36:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9806','2005-07-31 11:13:49.000','245','46','2005-08-04 06:18:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9807','2005-07-31 11:13:52.000','2137','267','2005-08-02 07:34:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9808','2005-07-31 11:17:22.000','3259','583','2005-08-07 15:54:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9809','2005-07-31 11:19:21.000','359','286','2005-08-08 12:43:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9810','2005-07-31 11:22:41.000','2066','545','2005-08-01 09:40:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9811','2005-07-31 11:23:45.000','3305','77','2005-08-06 15:51:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9812','2005-07-31 11:28:07.000','1540','57','2005-08-01 12:35:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9813','2005-07-31 11:29:23.000','1706','245','2005-08-07 08:01:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9814','2005-07-31 11:29:46.000','136','79','2005-08-08 15:49:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9815','2005-07-31 11:30:51.000','2728','540','2005-08-08 12:52:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9816','2005-07-31 11:32:58.000','4560','3','2005-08-04 17:12:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9817','2005-07-31 11:33:31.000','4019','170','2005-08-08 14:49:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9818','2005-07-31 11:34:32.000','1254','183','2005-08-04 08:20:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9819','2005-07-31 11:39:13.000','1927','292','2005-08-06 09:11:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9820','2005-07-31 11:46:57.000','499','279','2005-08-08 13:35:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9821','2005-07-31 11:47:54.000','386','271','2005-08-08 06:21:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9822','2005-07-31 11:48:25.000','2469','381','2005-08-05 15:52:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9823','2005-07-31 11:49:00.000','4423','129','2005-08-07 09:06:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9824','2005-07-31 11:49:55.000','4368','404','2005-08-07 16:54:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9825','2005-07-31 11:50:51.000','4322','390','2005-08-02 07:18:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9826','2005-07-31 11:51:46.000','2649','595','2005-08-09 17:18:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9827','2005-07-31 11:56:55.000','3840','329','2005-08-09 16:29:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9828','2005-07-31 11:56:57.000','3845','376','2005-08-02 17:05:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9829','2005-07-31 11:58:38.000','231','435','2005-08-07 08:11:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9830','2005-07-31 11:59:05.000','170','112','2005-08-06 10:38:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9831','2005-07-31 11:59:32.000','1961','192','2005-08-04 07:14:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9832','2005-07-31 12:01:49.000','3126','64','2005-08-08 09:21:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9833','2005-07-31 12:05:01.000','4243','368','2005-08-09 09:25:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9834','2005-07-31 12:05:42.000','2292','340','2005-08-07 15:26:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9835','2005-07-31 12:07:35.000','1051','328','2005-08-04 07:32:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9836','2005-07-31 12:12:00.000','2870','313','2005-08-09 06:53:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9837','2005-07-31 12:14:19.000','3488','573','2005-08-09 17:08:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9838','2005-07-31 12:18:49.000','3866','208','2005-08-03 16:49:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9839','2005-07-31 12:21:16.000','1591','561','2005-08-09 13:41:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9840','2005-07-31 12:23:18.000','364','388','2005-08-06 15:59:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9841','2005-07-31 12:24:19.000','4554','238','2005-08-09 15:31:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9842','2005-07-31 12:24:58.000','2896','261','2005-08-02 11:01:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9843','2005-07-31 12:25:28.000','2923','532','2005-08-01 09:51:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9844','2005-07-31 12:26:31.000','3930','181','2005-08-05 13:58:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9845','2005-07-31 12:28:05.000','2417','79','2005-08-06 06:47:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9846','2005-07-31 12:30:12.000','4240','573','2005-08-05 08:24:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9847','2005-07-31 12:33:43.000','1137','174','2005-08-04 14:15:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9848','2005-07-31 12:44:33.000','3290','346','2005-08-07 13:49:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9849','2005-07-31 12:44:34.000','2230','429','2005-08-02 16:49:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9850','2005-07-31 12:46:52.000','1461','497','2005-08-04 10:52:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9851','2005-07-31 12:50:24.000','25','49','2005-08-08 08:30:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9852','2005-07-31 12:52:17.000','4257','415','2005-08-05 07:59:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9853','2005-07-31 12:58:20.000','1782','221','2005-08-04 10:47:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9854','2005-07-31 12:59:34.000','1049','441','2005-08-03 07:20:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9855','2005-07-31 13:00:33.000','1246','326','2005-08-03 16:18:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9856','2005-07-31 13:00:35.000','723','347','2005-08-07 18:07:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9857','2005-07-31 13:00:53.000','3316','168','2005-08-09 15:56:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9858','2005-07-31 13:02:07.000','252','128','2005-08-03 15:14:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9859','2005-07-31 13:02:55.000','4094','127','2005-08-05 11:04:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9860','2005-07-31 13:03:24.000','3266','585','2005-08-07 07:28:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9861','2005-07-31 13:04:14.000','1050','264','2005-08-09 15:22:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9862','2005-07-31 13:05:03.000','474','513','2005-08-01 09:05:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9863','2005-07-31 13:05:29.000','19','239','2005-08-08 12:33:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9864','2005-07-31 13:06:54.000','3619','394','2005-08-02 11:47:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9865','2005-07-31 13:10:45.000','1355','580','2005-08-02 09:19:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9866','2005-07-31 13:13:50.000','3555','374','2005-08-07 15:11:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9867','2005-07-31 13:17:04.000','2485','83','2005-08-05 07:17:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9868','2005-07-31 13:20:08.000','266','378','2005-08-01 18:17:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9869','2005-07-31 13:21:54.000','783','261','2005-08-07 09:09:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9870','2005-07-31 13:22:51.000','442','195','2005-08-05 16:04:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9871','2005-07-31 13:25:46.000','194','109','2005-08-01 13:12:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9872','2005-07-31 13:27:55.000','1021','376','2005-08-04 14:33:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9873','2005-07-31 13:32:18.000','667','442','2005-08-06 11:15:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9874','2005-07-31 13:32:31.000','2476','482','2005-08-07 09:50:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9875','2005-07-31 13:37:41.000','2878','421','2005-08-03 15:17:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9876','2005-07-31 13:37:51.000','828','347','2005-08-07 18:05:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9877','2005-07-31 13:41:57.000','1299','559','2005-08-06 15:27:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9878','2005-07-31 13:42:02.000','1753','424','2005-08-05 10:15:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9879','2005-07-31 13:45:32.000','1935','178','2005-08-07 17:12:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9880','2005-07-31 13:49:02.000','3590','64','2005-08-08 10:31:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9881','2005-07-31 13:50:38.000','4209','412','2005-08-06 08:58:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9882','2005-07-31 13:53:33.000','1429','311','2005-08-09 15:55:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9883','2005-07-31 13:53:37.000','4286','356','2005-08-06 15:45:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9884','2005-07-31 13:56:24.000','511','590','2005-08-01 16:59:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9885','2005-07-31 13:59:32.000','3600','461','2005-08-07 12:30:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9886','2005-07-31 14:00:13.000','1386','519','2005-08-08 19:30:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9887','2005-07-31 14:00:32.000','436','549','2005-08-05 19:16:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9888','2005-07-31 14:00:53.000','4400','5','2005-08-08 18:51:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9889','2005-07-31 14:02:50.000','2842','143','2005-08-05 12:09:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9890','2005-07-31 14:04:44.000','1024','151','2005-08-01 11:24:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9891','2005-07-31 14:05:44.000','3359','462','2005-08-02 16:21:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9892','2005-07-31 14:06:25.000','1045','251','2005-08-03 18:11:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9893','2005-07-31 14:07:21.000','2445','179','2005-08-01 09:20:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9894','2005-07-31 14:07:44.000','3724','199','2005-08-05 18:01:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9895','2005-07-31 14:07:56.000','835','560','2005-08-05 14:56:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9896','2005-07-31 14:09:48.000','2591','586','2005-08-01 20:02:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9897','2005-07-31 14:11:57.000','3945','538','2005-08-02 12:20:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9898','2005-07-31 14:12:03.000','2151','359','2005-08-01 12:27:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9899','2005-07-31 14:12:36.000','3352','168','2005-08-08 08:59:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9900','2005-07-31 14:15:05.000','3132','453','2005-08-07 11:58:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9901','2005-07-31 14:20:59.000','3332','277','2005-08-03 09:30:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9902','2005-07-31 14:24:33.000','486','218','2005-08-09 11:11:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9903','2005-07-31 14:31:44.000','1621','316','2005-08-08 20:03:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9904','2005-07-31 14:34:17.000','4089','428','2005-08-08 17:19:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9905','2005-07-31 14:37:03.000','2839','519','2005-08-01 15:55:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9906','2005-07-31 14:38:12.000','4241','204','2005-08-01 13:56:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9907','2005-07-31 14:39:50.000','4282','120','2005-08-09 09:39:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9908','2005-07-31 14:39:52.000','4408','27','2005-08-09 09:46:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9909','2005-07-31 14:43:34.000','2600','587','2005-08-09 15:31:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9910','2005-07-31 14:47:57.000','368','122','2005-08-05 18:20:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9911','2005-07-31 14:48:01.000','3879','112','2005-08-06 11:55:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9912','2005-07-31 14:49:04.000','3119','367','2005-08-03 15:40:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9913','2005-07-31 14:51:04.000','3744','229','2005-08-06 12:12:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9914','2005-07-31 14:51:19.000','3147','530','2005-08-05 09:51:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9915','2005-07-31 14:52:26.000','2933','566','2005-08-03 11:53:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9916','2005-07-31 14:54:52.000','949','432','2005-08-07 13:18:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9917','2005-07-31 14:55:11.000','3829','159','2005-08-02 13:58:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9918','2005-07-31 14:55:22.000','2519','283','2005-08-04 09:02:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9919','2005-07-31 14:55:46.000','3205','291','2005-08-08 11:43:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9920','2005-07-31 14:57:13.000','3108','139','2005-08-03 18:58:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9921','2005-07-31 14:59:21.000','1004','332','2005-08-01 12:40:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9922','2005-07-31 14:59:37.000','3615','25','2005-08-06 14:05:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9923','2005-07-31 15:00:15.000','1635','209','2005-08-05 11:09:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9924','2005-07-31 15:04:57.000','1986','64','2005-08-05 20:07:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9925','2005-07-31 15:08:47.000','2351','24','2005-08-02 20:27:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9926','2005-07-31 15:11:51.000','3733','472','2005-08-09 18:26:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9927','2005-07-31 15:12:13.000','999','346','2005-08-01 11:37:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9928','2005-07-31 15:13:57.000','3627','53','2005-08-06 20:39:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9929','2005-07-31 15:17:24.000','2521','564','2005-08-03 17:27:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9930','2005-07-31 15:18:03.000','4491','304','2005-08-01 12:36:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9931','2005-07-31 15:18:19.000','3455','183','2005-08-04 14:23:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9932','2005-07-31 15:19:48.000','1691','264','2005-08-05 21:09:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9933','2005-07-31 15:24:46.000','2349','111','2005-08-01 10:00:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9934','2005-07-31 15:25:26.000','2492','236','2005-08-05 17:13:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9935','2005-07-31 15:27:07.000','2247','10','2005-08-05 11:23:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9936','2005-07-31 15:27:41.000','979','153','2005-08-06 16:25:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9937','2005-07-31 15:28:10.000','3697','521','2005-08-06 21:20:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9938','2005-07-31 15:28:47.000','2871','63','2005-08-09 21:24:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9939','2005-07-31 15:29:00.000','3049','538','2005-08-08 11:09:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9940','2005-07-31 15:29:06.000','3975','388','2005-08-06 14:26:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9941','2005-07-31 15:31:25.000','1756','175','2005-08-05 17:23:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9942','2005-07-31 15:35:43.000','4573','545','2005-08-07 17:37:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9943','2005-07-31 15:37:29.000','887','494','2005-08-09 18:25:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9944','2005-07-31 15:44:43.000','2540','241','2005-08-08 10:30:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9945','2005-07-31 15:47:51.000','2075','309','2005-08-02 19:06:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9946','2005-07-31 15:48:54.000','2100','29','2005-08-03 12:42:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9947','2005-07-31 15:49:40.000','1173','138','2005-08-08 11:11:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9948','2005-07-31 15:49:41.000','806','342','2005-08-06 12:36:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9949','2005-07-31 15:50:10.000','3258','309','2005-08-01 17:53:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9950','2005-07-31 15:50:22.000','1657','572','2005-08-08 19:10:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9951','2005-07-31 15:51:16.000','4412','95','2005-08-03 14:54:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9952','2005-07-31 15:52:37.000','1634','128','2005-08-06 10:50:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9953','2005-07-31 15:56:35.000','1646','211','2005-08-02 12:01:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9954','2005-07-31 15:57:07.000','1830','463','2005-08-05 12:04:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9955','2005-07-31 16:01:26.000','1745','342','2005-08-04 11:15:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9956','2005-07-31 16:03:47.000','4485','342','2005-08-01 16:40:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9957','2005-07-31 16:03:55.000','1857','85','2005-08-04 15:16:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9958','2005-07-31 16:03:56.000','4142','157','2005-08-04 15:21:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9959','2005-07-31 16:04:22.000','340','199','2005-08-03 21:51:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9960','2005-07-31 16:05:52.000','1022','569','2005-08-05 14:15:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9961','2005-07-31 16:07:50.000','1856','40','2005-08-07 18:37:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9962','2005-07-31 16:10:36.000','1951','576','2005-08-02 17:09:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9963','2005-07-31 16:16:46.000','1609','573','2005-08-02 22:00:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9964','2005-07-31 16:17:39.000','3149','191','2005-08-03 15:03:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9965','2005-07-31 16:19:32.000','3946','101','2005-08-05 20:18:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9966','2005-07-31 16:26:46.000','4137','373','2005-08-03 14:29:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9967','2005-07-31 16:31:17.000','958','537','2005-08-06 13:52:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9968','2005-07-31 16:32:16.000','2666','363','2005-08-08 12:23:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9969','2005-07-31 16:38:12.000','938','151','2005-08-05 11:45:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9970','2005-07-31 16:38:24.000','2846','578','2005-08-02 12:59:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9971','2005-07-31 16:42:16.000','2674','573','2005-08-09 18:08:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9972','2005-07-31 16:42:43.000','190','506','2005-08-02 11:05:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9973','2005-07-31 16:49:31.000','1850','369','2005-08-03 22:03:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9974','2005-07-31 16:51:11.000','430','503','2005-08-05 16:04:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9975','2005-07-31 16:53:43.000','2564','40','2005-08-07 20:13:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9976','2005-07-31 16:57:49.000','4219','579','2005-08-03 16:33:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9977','2005-07-31 16:58:42.000','2300','363','2005-08-09 13:34:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9978','2005-07-31 16:59:51.000','2812','427','2005-08-06 16:48:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9979','2005-07-31 17:00:07.000','646','576','2005-08-08 20:40:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9980','2005-07-31 17:02:00.000','122','225','2005-08-08 11:11:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9981','2005-07-31 17:08:31.000','1354','321','2005-08-01 22:46:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9982','2005-07-31 17:09:02.000','2698','428','2005-08-02 13:02:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9983','2005-07-31 17:09:36.000','350','129','2005-08-08 20:26:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9984','2005-07-31 17:12:23.000','433','432','2005-08-01 21:04:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9985','2005-07-31 17:14:47.000','1831','85','2005-08-01 12:11:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9986','2005-07-31 17:16:50.000','1242','124','2005-08-05 18:34:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9987','2005-07-31 17:22:35.000','1619','15','2005-08-01 21:19:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9988','2005-07-31 17:22:36.000','3844','243','2005-08-07 18:35:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9989','2005-07-31 17:22:39.000','1713','79','2005-08-01 18:55:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9990','2005-07-31 17:24:21.000','4481','555','2005-08-09 17:14:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9991','2005-07-31 17:26:27.000','3662','414','2005-08-03 17:36:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9992','2005-07-31 17:29:48.000','4242','304','2005-08-09 13:02:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9993','2005-07-31 17:30:20.000','2503','225','2005-08-01 20:53:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9994','2005-07-31 17:30:31.000','2155','195','2005-08-01 11:35:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9995','2005-07-31 17:30:47.000','1978','180','2005-08-04 12:20:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9996','2005-07-31 17:32:03.000','3271','104','2005-08-06 16:17:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9997','2005-07-31 17:37:30.000','640','579','2005-08-02 14:49:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9998','2005-07-31 17:40:35.000','2549','30','2005-08-04 18:15:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('9999','2005-07-31 17:40:53.000','1438','543','2005-08-01 14:25:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10000','2005-07-31 17:41:05.000','3221','576','2005-08-02 20:51:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10001','2005-07-31 17:46:18.000','2188','244','2005-08-07 20:38:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10002','2005-07-31 17:48:16.000','1002','323','2005-08-06 16:15:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10003','2005-07-31 17:48:51.000','1603','13','2005-08-02 14:23:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10004','2005-07-31 17:51:23.000','2396','570','2005-08-03 19:12:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10005','2005-07-31 17:53:51.000','928','454','2005-08-09 21:39:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10006','2005-07-31 17:54:35.000','2538','470','2005-08-02 20:40:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10007','2005-07-31 17:54:58.000','293','445','2005-08-05 17:24:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10008','2005-07-31 17:59:36.000','2589','91','2005-08-03 22:43:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10009','2005-07-31 18:00:28.000','4441','437','2005-08-08 22:24:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10010','2005-07-31 18:01:36.000','2655','373','2005-08-07 20:27:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10011','2005-07-31 18:02:41.000','606','128','2005-08-08 17:04:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10012','2005-07-31 18:06:06.000','2554','513','2005-08-09 16:47:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10013','2005-07-31 18:08:21.000','2364','377','2005-08-08 13:22:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10014','2005-07-31 18:10:56.000','2344','443','2005-08-02 23:36:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10015','2005-07-31 18:11:17.000','67','153','2005-08-03 15:48:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10016','2005-07-31 18:13:06.000','2183','478','2005-08-09 22:11:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10017','2005-07-31 18:13:22.000','1495','424','2005-08-05 16:03:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10018','2005-07-31 18:15:14.000','3708','481','2005-08-05 14:44:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10019','2005-07-31 18:20:56.000','2114','536','2005-08-07 14:25:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10020','2005-07-31 18:21:08.000','302','526','2005-08-02 14:03:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10021','2005-07-31 18:24:39.000','3235','597','2005-08-01 19:16:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10022','2005-07-31 18:25:30.000','1900','115','2005-08-04 13:35:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10023','2005-07-31 18:25:51.000','384','318','2005-08-09 18:00:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10024','2005-07-31 18:26:36.000','265','129','2005-08-09 16:16:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10025','2005-07-31 18:29:09.000','475','565','2005-08-07 14:20:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10026','2005-07-31 18:31:51.000','39','332','2005-08-03 21:14:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10027','2005-07-31 18:33:51.000','525','287','2005-08-09 18:40:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10028','2005-07-31 18:35:54.000','2305','323','2005-08-01 13:01:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10029','2005-07-31 18:37:47.000','505','578','2005-08-06 14:58:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10030','2005-07-31 18:39:36.000','1392','325','2005-08-03 15:29:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10031','2005-07-31 18:40:15.000','3048','96','2005-08-03 14:38:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10032','2005-07-31 18:41:55.000','2331','126','2005-08-04 22:45:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10033','2005-07-31 18:44:29.000','4480','381','2005-08-04 19:52:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10034','2005-07-31 18:45:30.000','354','442','2005-08-04 21:13:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10035','2005-07-31 18:46:46.000','2694','333','2005-08-04 20:33:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10036','2005-07-31 18:47:20.000','41','491','2005-08-03 22:53:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10037','2005-07-31 18:48:08.000','438','58','2005-08-09 19:11:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10038','2005-07-31 18:49:12.000','3727','112','2005-08-01 18:02:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10039','2005-07-31 18:50:40.000','4391','111','2005-08-01 18:49:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10040','2005-07-31 18:54:15.000','2281','268','2005-08-05 17:33:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10041','2005-07-31 19:01:02.000','2994','379','2005-08-07 21:32:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10042','2005-07-31 19:01:25.000','123','204','2005-08-06 14:21:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10043','2005-07-31 19:02:07.000','2558','222','2005-08-07 17:58:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10044','2005-07-31 19:02:33.000','3349','388','2005-08-05 13:24:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10045','2005-07-31 19:04:35.000','58','118','2005-08-07 16:53:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10046','2005-07-31 19:07:11.000','4302','50','2005-08-03 13:25:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10047','2005-07-31 19:07:43.000','4195','244','2005-08-07 00:20:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10048','2005-07-31 19:08:56.000','3821','267','2005-08-05 20:15:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10049','2005-07-31 19:11:11.000','854','457','2005-08-03 22:15:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10050','2005-07-31 19:13:29.000','295','230','2005-08-06 15:44:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10051','2005-07-31 19:14:20.000','163','74','2005-08-05 19:45:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10052','2005-07-31 19:15:13.000','3307','39','2005-08-07 22:47:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10053','2005-07-31 19:15:39.000','4102','223','2005-08-07 22:32:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10054','2005-07-31 19:15:52.000','2303','598','2005-08-04 19:54:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10055','2005-07-31 19:15:58.000','2725','336','2005-08-05 20:23:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10056','2005-07-31 19:19:13.000','281','237','2005-08-01 16:09:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10057','2005-07-31 19:20:18.000','3485','230','2005-08-08 17:59:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10058','2005-07-31 19:20:21.000','758','237','2005-08-04 00:41:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10059','2005-07-31 19:20:49.000','2020','274','2005-08-03 14:39:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10060','2005-07-31 19:23:00.000','1979','42','2005-08-08 19:07:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10061','2005-07-31 19:23:25.000','1401','390','2005-08-04 19:38:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10062','2005-07-31 19:24:55.000','1815','333','2005-08-03 22:51:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10063','2005-07-31 19:25:13.000','3003','517','2005-08-09 15:55:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10064','2005-07-31 19:27:02.000','3140','41','2005-08-06 21:15:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10065','2005-07-31 19:27:34.000','1426','495','2005-08-01 13:45:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10066','2005-07-31 19:30:01.000','4285','123','2005-08-01 14:45:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10067','2005-07-31 19:37:58.000','1940','148','2005-08-04 17:32:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10068','2005-07-31 19:39:38.000','4000','58','2005-08-05 22:49:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10069','2005-07-31 19:43:18.000','2168','270','2005-08-06 19:40:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10070','2005-07-31 19:46:29.000','1010','325','2005-08-03 22:21:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10071','2005-07-31 19:49:35.000','2360','353','2005-08-03 00:00:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10072','2005-07-31 19:50:37.000','3963','520','2005-08-03 00:25:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10073','2005-07-31 19:53:15.000','4246','584','2005-08-05 23:12:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10074','2005-07-31 19:57:16.000','1268','69','2005-08-04 00:54:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10075','2005-07-31 19:58:42.000','2037','469','2005-08-08 19:49:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10076','2005-07-31 20:00:34.000','1117','555','2005-08-10 00:37:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10077','2005-07-31 20:01:06.000','2333','19','2005-08-09 16:07:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10078','2005-07-31 20:02:02.000','3198','151','2005-08-04 00:45:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10079','2005-07-31 20:05:45.000','4541','486','2005-08-04 16:25:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10080','2005-07-31 20:07:10.000','4355','62','2005-08-04 23:07:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10081','2005-07-31 20:07:44.000','3183','443','2005-08-06 20:04:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10082','2005-07-31 20:09:32.000','1275','76','2005-08-01 15:41:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10083','2005-07-31 20:10:19.000','2585','449','2005-08-06 23:18:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10084','2005-07-31 20:11:29.000','524','528','2005-08-06 22:28:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10085','2005-07-31 20:12:02.000','2556','392','2005-08-03 00:03:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10086','2005-07-31 20:14:08.000','2853','205','2005-08-07 01:33:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10087','2005-07-31 20:15:22.000','1393','245','2005-08-07 01:33:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10088','2005-07-31 20:16:21.000','4293','46','2005-08-01 22:47:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10089','2005-07-31 20:17:09.000','248','160','2005-08-01 19:14:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10090','2005-07-31 20:22:01.000','4023','533','2005-08-04 17:30:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10091','2005-07-31 20:23:13.000','1878','135','2005-08-02 21:58:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10092','2005-07-31 20:28:09.000','4151','364','2005-08-01 21:37:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10093','2005-07-31 20:30:32.000','3943','162','2005-08-04 00:04:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10094','2005-07-31 20:31:18.000','2865','596','2005-08-06 18:31:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10095','2005-07-31 20:38:35.000','4062','370','2005-08-02 02:33:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10096','2005-07-31 20:38:58.000','3606','290','2005-08-06 02:34:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10097','2005-07-31 20:39:38.000','784','519','2005-08-08 22:22:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10098','2005-07-31 20:41:17.000','1324','155','2005-08-02 00:06:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10099','2005-07-31 20:47:14.000','1960','220','2005-08-02 17:25:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10100','2005-07-31 20:47:18.000','4050','330','2005-08-03 16:58:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10101','2005-07-31 20:47:29.000','2513','119','2005-08-04 21:28:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10102','2005-07-31 20:49:10.000','4078','170','2005-08-08 20:15:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10103','2005-07-31 20:49:13.000','77','25','2005-08-05 15:55:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10104','2005-07-31 20:49:14.000','3358','186','2005-08-05 01:11:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10105','2005-07-31 20:54:20.000','112','286','2005-08-09 17:45:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10106','2005-07-31 21:00:47.000','3444','556','2005-08-02 20:11:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10107','2005-07-31 21:01:46.000','1326','414','2005-08-09 01:33:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10108','2005-07-31 21:02:14.000','3703','326','2005-08-01 18:28:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10109','2005-07-31 21:04:49.000','2852','403','2005-08-08 19:25:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10110','2005-07-31 21:06:12.000','4081','138','2005-08-03 02:03:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10111','2005-07-31 21:08:33.000','3474','38','2005-08-06 02:58:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10112','2005-07-31 21:08:56.000','2643','198','2005-08-01 23:35:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10113','2005-07-31 21:10:03.000','3974','461','2005-08-02 21:13:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10114','2005-07-31 21:12:58.000','3881','218','2005-08-02 19:45:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10115','2005-07-31 21:13:47.000','2731','68','2005-08-10 00:44:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10116','2005-07-31 21:14:02.000','738','28','2005-08-03 01:48:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10117','2005-07-31 21:14:31.000','1894','459','2005-08-01 15:59:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10118','2005-07-31 21:16:31.000','1209','143','2005-08-03 02:32:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10119','2005-07-31 21:20:59.000','54','351','2005-08-02 23:14:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10120','2005-07-31 21:24:24.000','1709','396','2005-08-03 17:44:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10121','2005-07-31 21:24:53.000','2969','425','2005-08-03 22:24:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10122','2005-07-31 21:29:28.000','4229','196','2005-08-09 00:04:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10123','2005-07-31 21:30:46.000','4564','487','2005-08-06 16:28:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10124','2005-07-31 21:31:49.000','1956','396','2005-08-04 00:06:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10125','2005-07-31 21:33:03.000','493','178','2005-08-01 19:10:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10126','2005-07-31 21:36:07.000','3','39','2005-08-03 23:59:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10127','2005-07-31 21:39:48.000','717','478','2005-08-06 00:10:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10128','2005-07-31 21:40:04.000','2559','508','2005-08-02 02:21:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10129','2005-07-31 21:41:35.000','2848','564','2005-08-05 17:05:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10130','2005-07-31 21:44:30.000','3964','95','2005-08-04 17:06:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10131','2005-07-31 21:45:28.000','4169','510','2005-08-04 00:19:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10132','2005-07-31 21:50:24.000','3934','23','2005-08-07 23:37:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10133','2005-07-31 21:55:07.000','614','234','2005-08-08 23:04:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10134','2005-07-31 21:56:10.000','4483','311','2005-08-06 21:20:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10135','2005-07-31 21:57:32.000','4193','307','2005-08-05 22:23:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10136','2005-07-31 21:58:56.000','3142','2','2005-08-03 19:44:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10137','2005-07-31 22:01:41.000','612','236','2005-08-07 22:24:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10138','2005-07-31 22:02:09.000','179','225','2005-08-07 20:46:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10139','2005-07-31 22:02:20.000','407','441','2005-08-04 02:09:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10140','2005-07-31 22:03:20.000','2494','550','2005-08-07 23:15:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10141','2005-07-31 22:08:29.000','8','8','2005-08-06 16:59:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10142','2005-07-31 22:10:54.000','1839','257','2005-08-09 19:04:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10143','2005-07-31 22:11:43.000','2139','271','2005-08-09 17:48:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10144','2005-07-31 22:13:52.000','3011','49','2005-08-05 19:27:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10145','2005-07-31 22:15:13.000','2511','361','2005-08-06 23:26:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10146','2005-07-31 22:17:56.000','1721','559','2005-08-02 21:27:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10147','2005-07-31 22:18:43.000','1351','198','2005-08-02 23:08:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10148','2005-07-31 22:19:16.000','1381','63','2005-08-05 00:15:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10149','2005-07-31 22:20:46.000','890','276','2005-08-07 23:12:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10150','2005-07-31 22:22:00.000','2328','419','2005-08-05 01:17:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10151','2005-07-31 22:22:37.000','4442','361','2005-08-01 22:20:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10152','2005-07-31 22:28:05.000','1114','244','2005-08-08 22:39:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10153','2005-07-31 22:30:10.000','2945','297','2005-08-06 02:32:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10154','2005-07-31 22:30:49.000','2745','149','2005-08-07 03:05:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10155','2005-07-31 22:31:43.000','3176','235','2005-08-07 02:43:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10156','2005-07-31 22:36:00.000','141','179','2005-08-02 00:03:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10157','2005-07-31 22:38:48.000','2960','232','2005-08-01 21:38:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10158','2005-07-31 22:40:31.000','1626','393','2005-08-08 18:25:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10159','2005-07-31 22:54:30.000','1174','515','2005-08-03 00:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10160','2005-07-31 23:07:40.000','863','295','2005-08-05 23:34:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10161','2005-07-31 23:09:41.000','2651','120','2005-08-02 20:46:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10162','2005-07-31 23:11:01.000','1327','475','2005-08-07 01:52:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10163','2005-07-31 23:12:34.000','2811','425','2005-08-01 22:47:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10164','2005-07-31 23:17:57.000','1405','89','2005-08-05 19:43:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10165','2005-07-31 23:21:23.000','3476','50','2005-08-06 18:06:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10166','2005-07-31 23:22:20.000','4304','484','2005-08-07 18:06:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10167','2005-07-31 23:24:31.000','1222','129','2005-08-06 17:42:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10168','2005-07-31 23:25:24.000','4548','570','2005-08-02 19:03:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10169','2005-07-31 23:27:13.000','2675','57','2005-08-05 20:32:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10170','2005-07-31 23:27:31.000','804','41','2005-08-08 04:53:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10171','2005-07-31 23:29:05.000','1367','401','2005-08-03 19:39:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10172','2005-07-31 23:29:51.000','2506','426','2005-08-09 01:57:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10173','2005-07-31 23:36:59.000','2527','326','2005-08-08 20:20:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10174','2005-07-31 23:40:08.000','2459','359','2005-08-06 21:08:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10175','2005-07-31 23:40:11.000','3672','137','2005-08-09 02:22:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10176','2005-07-31 23:40:35.000','1181','19','2005-08-09 00:46:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10177','2005-07-31 23:42:33.000','2242','279','2005-08-03 01:30:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10178','2005-07-31 23:43:04.000','1582','491','2005-08-03 00:43:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10179','2005-07-31 23:49:54.000','2136','131','2005-08-01 20:46:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10180','2005-07-31 23:57:43.000','757','50','2005-08-09 04:04:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10181','2005-08-01 00:00:44.000','3111','113','2005-08-04 19:33:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10182','2005-08-01 00:08:01.000','4112','578','2005-08-09 18:14:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10183','2005-08-01 00:08:01.000','4319','377','2005-08-09 20:41:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10184','2005-08-01 00:09:33.000','2785','77','2005-08-05 04:12:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10185','2005-08-01 00:12:11.000','1266','64','2005-08-03 03:03:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10186','2005-08-01 00:12:36.000','4563','294','2005-08-07 05:08:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10187','2005-08-01 00:15:49.000','1629','400','2005-08-05 01:00:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10188','2005-08-01 00:19:41.000','1221','331','2005-08-08 00:19:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10189','2005-08-01 00:25:00.000','616','509','2005-08-03 06:01:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10190','2005-08-01 00:27:53.000','4411','138','2005-08-01 20:32:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10191','2005-08-01 00:28:38.000','1131','196','2005-08-06 02:23:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10192','2005-08-01 00:33:00.000','1632','569','2005-08-05 03:37:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10193','2005-08-01 00:33:27.000','2036','358','2005-08-07 20:15:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10194','2005-08-01 00:33:52.000','1447','290','2005-08-06 04:50:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10195','2005-08-01 00:34:42.000','2691','396','2005-08-08 05:04:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10196','2005-08-01 00:34:51.000','3070','199','2005-08-05 03:43:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10197','2005-08-01 00:35:25.000','1186','127','2005-08-07 06:04:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10198','2005-08-01 00:36:15.000','1297','366','2005-08-07 06:18:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10199','2005-08-01 00:38:55.000','3665','526','2005-08-05 03:41:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10200','2005-08-01 00:39:05.000','580','421','2005-08-05 01:07:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10201','2005-08-01 00:42:18.000','3649','299','2005-08-08 20:49:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10202','2005-08-01 00:43:18.000','1099','306','2005-08-08 23:26:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10203','2005-08-01 00:45:27.000','1096','157','2005-08-04 22:45:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10204','2005-08-01 00:47:39.000','764','572','2005-08-05 01:11:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10205','2005-08-01 00:48:24.000','33','87','2005-08-06 23:53:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10206','2005-08-01 00:52:40.000','4479','90','2005-08-10 02:36:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10207','2005-08-01 00:53:01.000','2925','334','2005-08-05 05:51:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10208','2005-08-01 00:54:51.000','3324','246','2005-08-04 22:39:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10209','2005-08-01 00:56:47.000','2429','303','2005-08-03 19:58:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10210','2005-08-01 00:58:52.000','49','391','2005-08-10 01:16:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10211','2005-08-01 01:01:16.000','810','530','2005-08-10 01:31:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10212','2005-08-01 01:01:35.000','3728','324','2005-08-02 23:02:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10213','2005-08-01 01:03:18.000','1462','106','2005-08-09 20:07:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10214','2005-08-01 01:04:15.000','648','597','2005-08-01 19:31:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10215','2005-08-01 01:04:28.000','838','345','2005-08-09 21:43:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10216','2005-08-01 01:06:27.000','3603','436','2005-08-08 22:41:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10217','2005-08-01 01:07:27.000','1193','389','2005-08-09 00:42:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10218','2005-08-01 01:09:44.000','3886','101','2005-08-05 20:08:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10219','2005-08-01 01:10:33.000','2262','505','2005-08-10 02:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10220','2005-08-01 01:13:22.000','3920','294','2005-08-04 22:57:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10221','2005-08-01 01:16:50.000','3051','373','2005-08-03 05:35:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10222','2005-08-01 01:17:42.000','1214','295','2005-08-08 02:45:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10223','2005-08-01 01:23:15.000','1370','522','2005-08-02 19:39:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10224','2005-08-01 01:31:56.000','1443','587','2005-08-05 21:21:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10225','2005-08-01 01:38:40.000','3131','498','2005-08-06 20:00:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10226','2005-08-01 01:40:04.000','3067','107','2005-08-08 01:02:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10227','2005-08-01 01:42:22.000','872','571','2005-08-09 23:45:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10228','2005-08-01 01:43:18.000','1742','106','2005-08-06 22:10:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10229','2005-08-01 01:45:26.000','3459','175','2005-08-10 06:21:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10230','2005-08-01 01:49:36.000','76','398','2005-08-05 01:29:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10231','2005-08-01 01:50:49.000','1056','511','2005-08-06 03:12:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10232','2005-08-01 01:50:55.000','586','512','2005-08-03 04:12:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10233','2005-08-01 01:54:23.000','4571','459','2005-08-10 00:23:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10234','2005-08-01 01:56:20.000','1641','207','2005-08-09 01:51:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10235','2005-08-01 01:57:48.000','2850','30','2005-08-10 07:38:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10236','2005-08-01 02:05:34.000','3754','470','2005-08-01 23:40:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10237','2005-08-01 02:07:32.000','432','313','2005-08-07 03:54:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10238','2005-08-01 02:08:05.000','561','192','2005-08-02 01:52:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10239','2005-08-01 02:09:22.000','1232','467','2005-08-04 01:35:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10240','2005-08-01 02:09:33.000','4494','109','2005-08-07 02:22:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10241','2005-08-01 02:12:25.000','1526','161','2005-08-08 00:37:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10242','2005-08-01 02:18:12.000','1825','342','2005-08-02 22:32:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10243','2005-08-01 02:18:46.000','2236','132','2005-08-06 21:45:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10244','2005-08-01 02:20:01.000','567','51','2005-08-06 23:06:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10245','2005-08-01 02:24:09.000','2880','163','2005-08-02 02:31:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10246','2005-08-01 02:29:50.000','3598','261','2005-08-09 01:17:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10247','2005-08-01 02:34:06.000','4035','189','2005-08-09 02:33:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10248','2005-08-01 02:35:28.000','2146','298','2005-08-08 02:24:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10249','2005-08-01 02:35:39.000','135','437','2005-08-06 06:50:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10250','2005-08-01 02:38:42.000','3706','116','2005-08-07 03:59:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10251','2005-08-01 02:39:12.000','2986','39','2005-08-06 03:51:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10252','2005-08-01 02:39:39.000','2380','86','2005-08-10 00:40:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10253','2005-08-01 02:39:49.000','1406','101','2005-08-08 04:28:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10254','2005-08-01 02:42:03.000','2238','416','2005-08-05 23:31:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10255','2005-08-01 02:46:13.000','4558','459','2005-08-03 05:54:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10256','2005-08-01 02:47:11.000','780','58','2005-08-05 05:21:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10257','2005-08-01 02:49:43.000','2403','543','2005-08-04 04:45:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10258','2005-08-01 02:51:09.000','2062','469','2005-08-08 23:57:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10259','2005-08-01 02:52:05.000','1881','566','2005-08-03 20:54:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10260','2005-08-01 02:58:07.000','2864','461','2005-08-05 02:06:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10261','2005-08-01 02:58:27.000','2346','50','2005-08-01 21:55:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10262','2005-08-01 03:01:26.000','3842','181','2005-08-08 08:03:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10263','2005-08-01 03:02:48.000','2420','415','2005-08-08 02:16:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10264','2005-08-01 03:03:12.000','1374','297','2005-08-08 00:34:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10265','2005-08-01 03:05:04.000','3338','510','2005-08-08 08:09:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10266','2005-08-01 03:05:59.000','476','49','2005-08-06 06:23:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10267','2005-08-01 03:07:26.000','3883','72','2005-08-07 22:49:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10268','2005-08-01 03:08:56.000','2755','138','2005-08-08 02:41:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10269','2005-08-01 03:09:26.000','2537','39','2005-08-02 00:01:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10270','2005-08-01 03:10:24.000','2025','168','2005-08-07 03:04:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10271','2005-08-01 03:13:39.000','3692','6','2005-08-07 23:40:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10272','2005-08-01 03:14:34.000','128','273','2005-08-10 05:56:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10273','2005-08-01 03:14:47.000','1458','212','2005-08-07 03:59:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10274','2005-08-01 03:16:51.000','2916','375','2005-08-04 22:22:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10275','2005-08-01 03:20:08.000','669','463','2005-08-08 06:48:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10276','2005-08-01 03:22:23.000','2201','48','2005-08-03 07:59:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10277','2005-08-01 03:22:41.000','1472','176','2005-08-05 05:07:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10278','2005-08-01 03:25:27.000','2497','154','2005-08-08 07:52:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10279','2005-08-01 03:26:44.000','3794','247','2005-08-07 22:35:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10280','2005-08-01 03:27:15.000','1457','542','2005-08-07 23:01:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10281','2005-08-01 03:28:33.000','1047','549','2005-08-02 05:06:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10282','2005-08-01 03:29:10.000','617','472','2005-08-07 06:16:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10283','2005-08-01 03:29:45.000','4237','462','2005-08-07 04:19:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10284','2005-08-01 03:33:19.000','2879','20','2005-08-09 07:58:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10285','2005-08-01 03:35:11.000','4523','167','2005-08-05 03:55:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10286','2005-08-01 03:35:58.000','498','532','2005-08-10 05:17:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10287','2005-08-01 03:37:01.000','125','141','2005-08-05 23:03:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10288','2005-08-01 03:38:42.000','572','63','2005-08-06 04:34:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10289','2005-08-01 03:39:48.000','3153','566','2005-08-08 02:56:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10290','2005-08-01 03:39:50.000','4542','364','2005-08-08 22:29:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10291','2005-08-01 03:39:57.000','2056','420','2005-08-05 02:05:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10292','2005-08-01 03:42:40.000','2562','340','2005-08-01 23:36:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10293','2005-08-01 03:44:26.000','1570','258','2005-08-05 04:16:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10294','2005-08-01 03:48:12.000','528','28','2005-08-09 01:19:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10295','2005-08-01 03:53:49.000','2355','123','2005-08-10 03:56:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10296','2005-08-01 04:04:37.000','1958','573','2005-08-01 23:59:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10297','2005-08-01 04:05:04.000','2795','289','2005-08-09 06:08:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10298','2005-08-01 04:06:03.000','1383','323','2005-08-05 05:59:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10299','2005-08-01 04:08:04.000','1125','369','2005-08-04 08:11:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10300','2005-08-01 04:08:11.000','4334','207','2005-08-04 00:24:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10301','2005-08-01 04:09:37.000','3072','583','2005-08-04 23:14:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10302','2005-08-01 04:12:08.000','1043','144','2005-08-01 22:12:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10303','2005-08-01 04:13:33.000','936','479','2005-08-06 02:16:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10304','2005-08-01 04:14:12.000','1538','346','2005-08-07 22:38:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10305','2005-08-01 04:16:16.000','2946','160','2005-08-07 23:47:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10306','2005-08-01 04:19:18.000','2819','541','2005-08-09 02:16:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10307','2005-08-01 04:21:54.000','975','332','2005-08-04 09:24:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10308','2005-08-01 04:22:49.000','588','240','2005-08-09 04:39:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10309','2005-08-01 04:24:18.000','1505','156','2005-08-09 08:32:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10310','2005-08-01 04:24:47.000','9','271','2005-08-04 05:36:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10311','2005-08-01 04:27:59.000','4211','151','2005-08-02 08:51:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10312','2005-08-01 04:29:06.000','4389','172','2005-08-08 04:52:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10313','2005-08-01 04:29:29.000','1194','80','2005-08-04 08:12:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10314','2005-08-01 04:31:18.000','1548','252','2005-08-06 01:49:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10315','2005-08-01 04:34:45.000','895','258','2005-08-07 05:27:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10316','2005-08-01 04:34:57.000','1907','469','2005-08-06 02:34:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10317','2005-08-01 04:35:34.000','110','561','2005-08-06 02:27:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10318','2005-08-01 04:36:53.000','885','548','2005-08-04 00:54:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10319','2005-08-01 04:37:19.000','3120','394','2005-08-05 03:18:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10320','2005-08-01 04:39:26.000','2298','152','2005-08-08 06:01:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10321','2005-08-01 04:40:02.000','4512','177','2005-08-03 04:18:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10322','2005-08-01 04:44:13.000','1543','535','2005-08-08 00:20:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10323','2005-08-01 04:44:58.000','3539','577','2005-08-06 07:56:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10324','2005-08-01 04:49:06.000','523','25','2005-08-09 08:04:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10325','2005-08-01 04:52:12.000','2749','258','2005-08-08 09:31:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10326','2005-08-01 04:55:34.000','3856','325','2005-08-02 05:18:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10327','2005-08-01 04:55:35.000','328','382','2005-08-07 08:17:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10328','2005-08-01 04:56:10.000','1191','85','2005-08-01 23:22:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10329','2005-08-01 04:56:13.000','2289','302','2005-08-03 03:54:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10330','2005-08-01 04:57:04.000','1580','7','2005-08-07 23:00:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10331','2005-08-01 04:57:14.000','4152','575','2005-08-07 06:46:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10332','2005-08-01 04:57:32.000','642','258','2005-08-10 02:42:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10333','2005-08-01 04:58:32.000','3955','499','2005-08-04 00:51:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10334','2005-08-01 04:58:42.000','3387','445','2005-08-09 02:00:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10335','2005-08-01 04:59:30.000','323','33','2005-08-05 02:26:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10336','2005-08-01 04:59:53.000','1091','370','2005-08-03 08:05:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10337','2005-08-01 05:01:46.000','307','451','2005-08-10 02:41:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10338','2005-08-01 05:03:03.000','1295','339','2005-08-09 05:13:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10339','2005-08-01 05:05:50.000','615','363','2005-08-10 07:15:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10340','2005-08-01 05:07:03.000','3608','568','2005-08-06 01:03:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10341','2005-08-01 05:10:02.000','3304','445','2005-08-07 11:01:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10342','2005-08-01 05:11:11.000','332','140','2005-08-10 00:27:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10343','2005-08-01 05:15:47.000','2627','267','2005-08-02 04:48:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10344','2005-08-01 05:18:23.000','3673','367','2005-08-06 05:20:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10345','2005-08-01 05:18:56.000','3985','42','2005-08-04 01:34:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10346','2005-08-01 05:19:23.000','4192','476','2005-08-06 01:00:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10347','2005-08-01 05:20:03.000','953','574','2005-08-04 10:03:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10348','2005-08-01 05:23:00.000','2076','14','2005-08-04 01:12:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10349','2005-08-01 05:27:13.000','114','295','2005-08-08 10:15:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10350','2005-08-01 05:30:05.000','2067','78','2005-08-05 09:59:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10351','2005-08-01 05:32:13.000','3725','173','2005-08-08 09:48:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10352','2005-08-01 05:44:36.000','1288','564','2005-08-05 07:15:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10353','2005-08-01 05:46:33.000','1446','535','2005-08-08 09:14:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10354','2005-08-01 05:47:10.000','1680','416','2005-08-06 09:04:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10355','2005-08-01 05:47:37.000','2158','161','2005-08-02 09:28:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10356','2005-08-01 05:49:17.000','313','56','2005-08-10 05:57:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10357','2005-08-01 05:49:49.000','3102','475','2005-08-04 02:34:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10358','2005-08-01 05:50:07.000','3039','517','2005-08-03 08:18:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10359','2005-08-01 05:52:21.000','259','369','2005-08-06 05:52:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10360','2005-08-01 05:52:53.000','1129','443','2005-08-05 10:55:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10361','2005-08-01 05:53:49.000','318','529','2005-08-10 00:42:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10362','2005-08-01 05:55:13.000','72','181','2005-08-10 10:23:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10363','2005-08-01 06:01:52.000','320','174','2005-08-05 03:56:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10364','2005-08-01 06:06:49.000','1842','317','2005-08-09 06:05:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10365','2005-08-01 06:08:44.000','4032','442','2005-08-06 02:07:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10366','2005-08-01 06:09:37.000','2654','119','2005-08-05 03:19:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10367','2005-08-01 06:12:19.000','3408','242','2005-08-04 12:11:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10368','2005-08-01 06:13:38.000','3535','593','2005-08-08 04:40:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10369','2005-08-01 06:13:44.000','2534','424','2005-08-07 09:46:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10370','2005-08-01 06:18:04.000','4358','546','2005-08-05 01:41:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10371','2005-08-01 06:20:29.000','923','327','2005-08-04 00:31:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10372','2005-08-01 06:23:48.000','635','419','2005-08-06 03:47:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10373','2005-08-01 06:24:26.000','1754','588','2005-08-02 12:07:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10374','2005-08-01 06:25:27.000','4351','307','2005-08-07 05:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10375','2005-08-01 06:26:22.000','857','202','2005-08-06 02:51:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10376','2005-08-01 06:27:13.000','4194','474','2005-08-07 06:11:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10377','2005-08-01 06:28:28.000','2401','559','2005-08-10 05:45:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10378','2005-08-01 06:30:04.000','4110','113','2005-08-06 09:10:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10379','2005-08-01 06:34:29.000','3103','141','2005-08-06 07:49:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10380','2005-08-01 06:34:36.000','2225','533','2005-08-02 09:08:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10381','2005-08-01 06:36:37.000','522','412','2005-08-05 11:17:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10382','2005-08-01 06:36:45.000','4455','242','2005-08-02 06:06:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10383','2005-08-01 06:37:16.000','4166','592','2005-08-03 07:36:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10384','2005-08-01 06:39:14.000','2622','366','2005-08-02 03:06:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10385','2005-08-01 06:39:55.000','778','179','2005-08-06 02:16:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10386','2005-08-01 06:42:20.000','1568','26','2005-08-07 06:12:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10387','2005-08-01 06:42:31.000','1651','87','2005-08-08 07:44:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10388','2005-08-01 06:42:44.000','3180','99','2005-08-09 11:43:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10389','2005-08-01 06:46:43.000','3534','346','2005-08-08 07:07:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10390','2005-08-01 06:46:48.000','1489','502','2005-08-09 02:55:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10391','2005-08-01 06:49:05.000','2203','357','2005-08-04 01:51:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10392','2005-08-01 06:50:26.000','3017','12','2005-08-10 10:52:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10393','2005-08-01 06:52:50.000','808','258','2005-08-05 08:45:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10394','2005-08-01 06:58:17.000','1655','128','2005-08-05 02:09:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10395','2005-08-01 07:08:22.000','279','129','2005-08-05 08:00:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10396','2005-08-01 07:08:46.000','2982','284','2005-08-08 03:47:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10397','2005-08-01 07:11:27.000','4168','504','2005-08-03 07:51:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10398','2005-08-01 07:11:49.000','4306','174','2005-08-04 05:54:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10399','2005-08-01 07:13:39.000','2515','204','2005-08-10 06:56:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10400','2005-08-01 07:18:24.000','3897','132','2005-08-10 08:38:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10401','2005-08-01 07:27:09.000','1560','564','2005-08-02 01:38:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10402','2005-08-01 07:27:19.000','274','410','2005-08-04 12:30:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10403','2005-08-01 07:30:45.000','1968','494','2005-08-03 03:03:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10404','2005-08-01 07:31:25.000','2580','253','2005-08-07 09:23:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10405','2005-08-01 07:35:25.000','3641','463','2005-08-05 05:38:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10406','2005-08-01 07:37:05.000','2614','391','2005-08-02 06:11:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10407','2005-08-01 07:38:07.000','543','101','2005-08-02 05:38:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10408','2005-08-01 07:42:10.000','4144','334','2005-08-09 02:29:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10409','2005-08-01 07:49:15.000','2804','449','2005-08-02 13:42:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10410','2005-08-01 07:53:29.000','3901','247','2005-08-10 08:56:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10411','2005-08-01 07:56:32.000','1946','522','2005-08-10 04:58:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10412','2005-08-01 07:57:16.000','1555','325','2005-08-04 11:44:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10413','2005-08-01 07:59:39.000','1018','376','2005-08-08 03:55:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10414','2005-08-01 08:03:55.000','1271','361','2005-08-04 08:44:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10415','2005-08-01 08:05:59.000','2597','591','2005-08-04 13:46:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10416','2005-08-01 08:08:39.000','2629','449','2005-08-10 09:26:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10417','2005-08-01 08:10:36.000','3675','427','2005-08-02 03:42:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10418','2005-08-01 08:11:07.000','1692','248','2005-08-04 11:12:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10419','2005-08-01 08:13:22.000','415','66','2005-08-06 04:45:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10420','2005-08-01 08:13:53.000','3490','354','2005-08-06 08:05:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10421','2005-08-01 08:14:10.000','925','262','2005-08-03 05:56:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10422','2005-08-01 08:17:11.000','37','166','2005-08-10 10:08:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10423','2005-08-01 08:19:53.000','739','7','2005-08-08 10:25:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10424','2005-08-01 08:22:54.000','1921','88','2005-08-06 13:44:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10425','2005-08-01 08:23:25.000','322','447','2005-08-05 04:29:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10426','2005-08-01 08:26:08.000','1325','305','2005-08-09 04:09:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10427','2005-08-01 08:30:11.000','2978','356','2005-08-07 06:18:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10428','2005-08-01 08:30:11.000','4245','46','2005-08-02 09:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10429','2005-08-01 08:34:18.000','3894','511','2005-08-10 12:38:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10430','2005-08-01 08:37:06.000','1150','471','2005-08-03 07:25:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10431','2005-08-01 08:41:54.000','1074','138','2005-08-07 09:44:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10432','2005-08-01 08:43:21.000','4238','450','2005-08-08 13:09:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10433','2005-08-01 08:45:56.000','1508','517','2005-08-05 09:46:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10434','2005-08-01 08:47:00.000','4073','73','2005-08-06 08:34:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10435','2005-08-01 08:50:51.000','1934','392','2005-08-08 12:23:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10436','2005-08-01 08:50:59.000','4026','455','2005-08-04 05:23:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10437','2005-08-01 08:51:04.000','14','1','2005-08-10 12:12:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10438','2005-08-01 08:53:04.000','4217','316','2005-08-09 06:39:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10439','2005-08-01 08:54:26.000','2711','332','2005-08-08 14:04:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10440','2005-08-01 08:54:32.000','842','299','2005-08-02 10:59:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10441','2005-08-01 08:55:56.000','4122','176','2005-08-03 10:26:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10442','2005-08-01 08:58:08.000','4570','40','2005-08-05 09:07:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10443','2005-08-01 09:01:04.000','1965','403','2005-08-04 09:07:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10444','2005-08-01 09:01:40.000','3242','106','2005-08-09 11:31:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10445','2005-08-01 09:02:15.000','3582','211','2005-08-08 10:26:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10446','2005-08-01 09:02:17.000','2671','95','2005-08-04 10:00:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10447','2005-08-01 09:04:58.000','1198','241','2005-08-08 06:24:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10448','2005-08-01 09:09:31.000','2254','311','2005-08-02 09:55:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10449','2005-08-01 09:09:59.000','1395','213','2005-08-05 11:25:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10450','2005-08-01 09:10:03.000','234','380','2005-08-08 12:34:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10451','2005-08-01 09:11:25.000','2435','9','2005-08-03 12:37:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10452','2005-08-01 09:11:36.000','1973','442','2005-08-04 13:28:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10453','2005-08-01 09:13:27.000','1531','188','2005-08-08 11:34:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10454','2005-08-01 09:14:00.000','397','9','2005-08-04 04:52:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10455','2005-08-01 09:15:00.000','4197','99','2005-08-05 13:35:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10456','2005-08-01 09:17:21.000','4339','81','2005-08-06 10:30:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10457','2005-08-01 09:17:34.000','3052','121','2005-08-06 07:28:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10458','2005-08-01 09:19:48.000','1500','309','2005-08-02 10:16:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10459','2005-08-01 09:20:09.000','201','131','2005-08-03 11:36:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10460','2005-08-01 09:31:00.000','4504','197','2005-08-09 09:28:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10461','2005-08-01 09:32:53.000','3212','270','2005-08-09 10:19:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10462','2005-08-01 09:38:28.000','4526','193','2005-08-02 09:52:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10463','2005-08-01 09:39:43.000','1301','291','2005-08-10 03:42:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10464','2005-08-01 09:43:14.000','464','427','2005-08-06 09:01:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10465','2005-08-01 09:45:25.000','4384','534','2005-08-10 09:08:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10466','2005-08-01 09:45:26.000','138','2','2005-08-06 06:28:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10467','2005-08-01 09:45:58.000','3773','412','2005-08-09 10:17:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10468','2005-08-01 09:48:29.000','2115','129','2005-08-05 09:58:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10469','2005-08-01 09:51:11.000','3054','466','2005-08-05 06:53:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10470','2005-08-01 09:52:26.000','82','523','2005-08-05 06:52:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10471','2005-08-01 09:52:37.000','1684','135','2005-08-07 09:40:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10472','2005-08-01 09:54:41.000','506','405','2005-08-04 13:31:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10473','2005-08-01 09:56:24.000','3034','329','2005-08-10 12:36:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10474','2005-08-01 10:01:42.000','4482','488','2005-08-08 12:32:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10475','2005-08-01 10:03:17.000','2931','115','2005-08-10 15:50:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10476','2005-08-01 10:03:20.000','1993','263','2005-08-10 06:52:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10477','2005-08-01 10:04:17.000','235','506','2005-08-06 11:32:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10478','2005-08-01 10:09:06.000','3885','417','2005-08-06 05:05:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10479','2005-08-01 10:11:25.000','4580','275','2005-08-06 04:52:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10480','2005-08-01 10:13:41.000','553','560','2005-08-03 10:27:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10481','2005-08-01 10:17:26.000','229','170','2005-08-09 08:50:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10482','2005-08-01 10:17:47.000','48','358','2005-08-02 15:04:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10483','2005-08-01 10:19:45.000','1521','129','2005-08-04 09:29:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10484','2005-08-01 10:19:53.000','1908','400','2005-08-03 05:36:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10485','2005-08-01 10:20:34.000','29','50','2005-08-09 09:20:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10486','2005-08-01 10:23:43.000','2454','527','2005-08-05 07:11:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10487','2005-08-01 10:26:34.000','1121','577','2005-08-07 16:11:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10488','2005-08-01 10:27:27.000','297','423','2005-08-02 11:05:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10489','2005-08-01 10:27:42.000','4067','54','2005-08-07 12:56:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10490','2005-08-01 10:37:11.000','4365','329','2005-08-03 10:01:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10491','2005-08-01 10:38:27.000','3091','24','2005-08-04 04:55:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10492','2005-08-01 10:42:28.000','1669','334','2005-08-02 07:05:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10493','2005-08-01 10:43:12.000','2375','285','2005-08-07 08:13:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10494','2005-08-01 10:45:21.000','847','188','2005-08-02 12:34:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10495','2005-08-01 10:45:51.000','2232','41','2005-08-06 08:11:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10496','2005-08-01 10:53:16.000','411','525','2005-08-08 10:34:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10497','2005-08-01 10:55:59.000','1060','499','2005-08-07 11:15:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10498','2005-08-01 10:56:48.000','2672','355','2005-08-03 15:46:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10499','2005-08-01 11:00:20.000','3293','459','2005-08-10 11:52:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10500','2005-08-01 11:01:01.000','469','477','2005-08-06 08:59:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10501','2005-08-01 11:04:46.000','1792','351','2005-08-02 12:10:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10502','2005-08-01 11:06:39.000','3193','357','2005-08-05 07:11:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10503','2005-08-01 11:07:44.000','1823','357','2005-08-08 08:22:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10504','2005-08-01 11:10:55.000','3345','530','2005-08-10 10:16:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10505','2005-08-01 11:13:59.000','2977','426','2005-08-05 07:20:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10506','2005-08-01 11:16:05.000','1171','216','2005-08-03 05:37:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10507','2005-08-01 11:22:20.000','367','45','2005-08-04 13:18:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10508','2005-08-01 11:23:27.000','3890','431','2005-08-02 10:17:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10509','2005-08-01 11:25:28.000','96','504','2005-08-10 09:19:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10510','2005-08-01 11:28:30.000','410','259','2005-08-07 11:37:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10511','2005-08-01 11:32:16.000','3874','487','2005-08-04 09:38:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10512','2005-08-01 11:36:19.000','3294','438','2005-08-09 06:52:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10513','2005-08-01 11:37:34.000','4057','105','2005-08-02 17:15:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10514','2005-08-01 11:39:26.000','1512','7','2005-08-03 07:53:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10515','2005-08-01 11:41:33.000','874','383','2005-08-08 06:23:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10516','2005-08-01 11:41:55.000','3924','449','2005-08-08 17:16:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10517','2005-08-01 11:41:57.000','2299','199','2005-08-05 06:14:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10518','2005-08-01 11:44:08.000','4444','556','2005-08-07 07:58:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10519','2005-08-01 11:44:13.000','1967','456','2005-08-09 16:57:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10520','2005-08-01 11:45:58.000','4396','543','2005-08-06 17:28:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10521','2005-08-01 11:46:17.000','662','346','2005-08-05 11:06:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10522','2005-08-01 11:48:51.000','4159','254','2005-08-05 12:40:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10523','2005-08-01 11:52:32.000','2408','34','2005-08-02 10:47:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10524','2005-08-01 11:53:12.000','4116','38','2005-08-08 10:40:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10525','2005-08-01 11:53:17.000','3811','36','2005-08-07 07:24:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10526','2005-08-01 11:55:33.000','27','14','2005-08-08 16:42:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10527','2005-08-01 11:55:54.000','4530','431','2005-08-05 15:56:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10528','2005-08-01 11:56:22.000','4401','564','2005-08-07 07:13:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10529','2005-08-01 12:00:02.000','851','444','2005-08-08 16:18:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10530','2005-08-01 12:01:17.000','3216','520','2005-08-06 09:55:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10531','2005-08-01 12:06:30.000','3846','459','2005-08-04 10:23:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10532','2005-08-01 12:06:35.000','746','191','2005-08-07 16:04:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10533','2005-08-01 12:14:16.000','1924','593','2005-08-09 17:13:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10534','2005-08-01 12:15:11.000','4354','397','2005-08-04 17:06:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10535','2005-08-01 12:21:13.000','1838','284','2005-08-09 08:58:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10536','2005-08-01 12:21:53.000','1251','86','2005-08-04 13:08:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10537','2005-08-01 12:22:28.000','2140','418','2005-08-08 07:27:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10538','2005-08-01 12:22:41.000','686','37','2005-08-02 10:31:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10539','2005-08-01 12:23:00.000','3341','232','2005-08-07 10:25:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10540','2005-08-01 12:24:42.000','4121','84','2005-08-03 08:39:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10541','2005-08-01 12:24:54.000','1413','234','2005-08-03 16:18:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10542','2005-08-01 12:32:23.000','1102','465','2005-08-08 16:26:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10543','2005-08-01 12:36:09.000','624','29','2005-08-07 07:42:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10544','2005-08-01 12:36:21.000','3195','589','2005-08-07 12:25:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10545','2005-08-01 12:37:46.000','4230','425','2005-08-04 16:02:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10546','2005-08-01 12:44:17.000','1589','362','2005-08-06 16:26:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10547','2005-08-01 12:44:17.000','1707','403','2005-08-08 06:53:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10548','2005-08-01 12:44:32.000','1914','85','2005-08-07 09:17:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10549','2005-08-01 12:46:39.000','3719','61','2005-08-06 17:17:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10550','2005-08-01 12:46:52.000','1980','129','2005-08-05 16:48:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10551','2005-08-01 12:48:55.000','2974','294','2005-08-10 16:11:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10552','2005-08-01 12:49:44.000','4263','119','2005-08-04 16:20:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10553','2005-08-01 12:54:06.000','2768','415','2005-08-06 15:27:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10554','2005-08-01 12:56:19.000','3220','209','2005-08-03 09:44:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10555','2005-08-01 12:56:38.000','377','487','2005-08-10 18:19:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10556','2005-08-01 12:58:42.000','144','117','2005-08-03 07:18:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10557','2005-08-01 12:59:24.000','240','385','2005-08-04 17:08:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10558','2005-08-01 13:00:20.000','4399','117','2005-08-05 16:31:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10559','2005-08-01 13:02:58.000','2861','174','2005-08-09 10:03:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10560','2005-08-01 13:04:57.000','1534','427','2005-08-05 18:25:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10561','2005-08-01 13:05:35.000','2195','8','2005-08-04 08:34:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10562','2005-08-01 13:05:52.000','1947','178','2005-08-02 17:05:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10563','2005-08-01 13:06:03.000','1885','214','2005-08-09 08:39:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10564','2005-08-01 13:07:34.000','4469','387','2005-08-06 15:14:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10565','2005-08-01 13:08:27.000','347','165','2005-08-02 10:30:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10566','2005-08-01 13:12:11.000','3988','269','2005-08-05 11:16:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10567','2005-08-01 13:16:01.000','2744','212','2005-08-05 14:59:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10568','2005-08-01 13:17:28.000','3009','130','2005-08-08 17:04:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10569','2005-08-01 13:18:23.000','611','179','2005-08-10 13:33:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10570','2005-08-01 13:23:06.000','369','21','2005-08-05 15:30:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10571','2005-08-01 13:25:30.000','3660','308','2005-08-02 16:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10572','2005-08-01 13:26:53.000','1239','386','2005-08-07 18:47:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10573','2005-08-01 13:27:24.000','4252','585','2005-08-04 15:09:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10574','2005-08-01 13:36:51.000','679','287','2005-08-10 13:25:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10575','2005-08-01 13:41:41.000','4447','251','2005-08-08 11:30:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10576','2005-08-01 13:46:02.000','1876','180','2005-08-05 10:19:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10577','2005-08-01 13:46:38.000','2240','428','2005-08-06 11:35:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10578','2005-08-01 13:48:02.000','3704','113','2005-08-07 13:40:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10579','2005-08-01 13:48:22.000','4068','270','2005-08-07 11:51:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10580','2005-08-01 13:51:14.000','590','234','2005-08-08 11:49:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10581','2005-08-01 13:52:30.000','2801','217','2005-08-10 19:11:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10582','2005-08-01 13:54:22.000','2536','233','2005-08-05 16:46:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10583','2005-08-01 13:54:35.000','704','125','2005-08-03 18:21:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10584','2005-08-01 13:58:47.000','715','86','2005-08-06 13:38:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10585','2005-08-01 14:00:42.000','2670','228','2005-08-09 11:42:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10586','2005-08-01 14:00:59.000','3306','583','2005-08-06 10:00:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10587','2005-08-01 14:03:38.000','3000','521','2005-08-08 19:59:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10588','2005-08-01 14:10:21.000','2384','49','2005-08-03 13:47:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10589','2005-08-01 14:11:09.000','4280','375','2005-08-09 09:28:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10590','2005-08-01 14:11:53.000','740','78','2005-08-04 20:04:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10591','2005-08-01 14:12:29.000','3360','52','2005-08-04 08:46:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10592','2005-08-01 14:13:00.000','829','265','2005-08-09 13:03:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10593','2005-08-01 14:13:19.000','1886','144','2005-08-06 08:48:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10594','2005-08-01 14:14:59.000','1826','53','2005-08-07 10:48:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10595','2005-08-01 14:16:28.000','966','137','2005-08-03 10:37:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10596','2005-08-01 14:18:57.000','803','112','2005-08-07 14:59:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10597','2005-08-01 14:19:48.000','3292','3','2005-08-08 20:01:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10598','2005-08-01 14:23:36.000','2341','397','2005-08-10 14:07:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10599','2005-08-01 14:23:58.000','2422','271','2005-08-06 10:45:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10600','2005-08-01 14:25:21.000','3900','294','2005-08-06 18:00:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10601','2005-08-01 14:25:40.000','2843','420','2005-08-10 09:07:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10602','2005-08-01 14:30:23.000','1506','111','2005-08-07 15:20:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10603','2005-08-01 14:30:35.000','4024','394','2005-08-05 11:13:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10604','2005-08-01 14:35:08.000','2833','250','2005-08-08 10:19:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10605','2005-08-01 14:36:26.000','680','341','2005-08-06 12:04:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10606','2005-08-01 14:39:15.000','81','335','2005-08-08 11:31:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10607','2005-08-01 14:44:43.000','3999','438','2005-08-02 16:39:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10608','2005-08-01 14:48:41.000','3835','381','2005-08-04 17:32:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10609','2005-08-01 14:48:45.000','2587','5','2005-08-04 13:41:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10610','2005-08-01 14:49:41.000','1865','396','2005-08-03 13:07:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10611','2005-08-01 14:53:52.000','957','135','2005-08-07 09:15:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10612','2005-08-01 14:55:31.000','287','554','2005-08-06 19:01:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10613','2005-08-01 14:56:14.000','4357','527','2005-08-07 09:33:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10614','2005-08-01 14:57:00.000','232','533','2005-08-10 09:31:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10615','2005-08-01 14:58:14.000','2639','34','2005-08-02 13:38:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10616','2005-08-01 14:59:50.000','1094','20','2005-08-07 11:38:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10617','2005-08-01 15:05:52.000','4344','476','2005-08-09 18:54:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10618','2005-08-01 15:06:38.000','3729','386','2005-08-06 15:52:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10619','2005-08-01 15:07:04.000','2189','132','2005-08-07 11:42:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10620','2005-08-01 15:09:17.000','3064','183','2005-08-09 13:58:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10621','2005-08-01 15:10:26.000','1650','172','2005-08-04 10:58:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10622','2005-08-01 15:12:00.000','3044','171','2005-08-08 14:09:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10623','2005-08-01 15:22:38.000','4426','494','2005-08-03 11:03:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10624','2005-08-01 15:27:05.000','3801','74','2005-08-05 19:50:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10625','2005-08-01 15:27:10.000','3022','5','2005-08-02 13:16:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10626','2005-08-01 15:32:41.000','1042','122','2005-08-05 18:08:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10627','2005-08-01 15:33:03.000','2026','472','2005-08-02 21:26:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10628','2005-08-01 15:33:19.000','427','285','2005-08-05 17:27:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10629','2005-08-01 15:33:32.000','997','575','2005-08-08 12:40:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10630','2005-08-01 15:34:46.000','2335','39','2005-08-03 10:50:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10631','2005-08-01 15:35:14.000','2712','304','2005-08-03 10:48:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10632','2005-08-01 15:36:56.000','1290','406','2005-08-05 17:32:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10633','2005-08-01 15:37:17.000','3125','475','2005-08-10 14:30:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10634','2005-08-01 15:37:48.000','445','592','2005-08-02 12:11:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10635','2005-08-01 15:37:58.000','547','52','2005-08-07 11:15:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10636','2005-08-01 15:40:35.000','621','385','2005-08-05 18:46:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10637','2005-08-01 15:44:09.000','1243','161','2005-08-04 14:42:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10638','2005-08-01 15:44:20.000','2239','132','2005-08-08 16:05:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10639','2005-08-01 15:44:43.000','1015','39','2005-08-10 13:51:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10640','2005-08-01 15:44:51.000','3020','375','2005-08-06 15:52:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10641','2005-08-01 15:44:57.000','972','285','2005-08-04 18:15:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10642','2005-08-01 15:45:11.000','2573','294','2005-08-02 20:13:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10643','2005-08-01 15:48:33.000','3853','495','2005-08-06 20:24:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10644','2005-08-01 15:52:00.000','4374','7','2005-08-08 16:08:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10645','2005-08-01 15:52:01.000','3864','130','2005-08-09 18:58:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10646','2005-08-01 15:57:55.000','1752','209','2005-08-02 19:08:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10647','2005-08-01 16:08:46.000','3137','115','2005-08-06 20:37:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10648','2005-08-01 16:08:52.000','691','270','2005-08-05 20:17:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10649','2005-08-01 16:11:40.000','1032','278','2005-08-06 14:09:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10650','2005-08-01 16:18:45.000','2306','242','2005-08-09 16:29:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10651','2005-08-01 16:20:22.000','1541','404','2005-08-03 15:53:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10652','2005-08-01 16:24:08.000','1633','241','2005-08-03 16:00:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10653','2005-08-01 16:28:07.000','1190','75','2005-08-07 21:22:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10654','2005-08-01 16:31:35.000','2522','399','2005-08-05 12:04:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10655','2005-08-01 16:33:27.000','1399','385','2005-08-08 17:17:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10656','2005-08-01 16:38:04.000','2571','80','2005-08-09 19:37:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10657','2005-08-01 16:38:44.000','3075','590','2005-08-06 16:05:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10658','2005-08-01 16:39:18.000','2943','469','2005-08-09 18:17:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10659','2005-08-01 16:40:34.000','786','238','2005-08-09 21:00:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10660','2005-08-01 16:48:01.000','2518','253','2005-08-07 14:42:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10661','2005-08-01 16:48:31.000','3311','177','2005-08-02 21:02:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10662','2005-08-01 16:50:57.000','2857','151','2005-08-03 17:19:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10663','2005-08-01 16:51:08.000','4258','433','2005-08-08 21:17:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10664','2005-08-01 16:51:15.000','3167','337','2005-08-04 19:14:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10665','2005-08-01 16:56:17.000','3594','133','2005-08-03 18:58:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10666','2005-08-01 16:56:36.000','1945','197','2005-08-07 22:23:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10667','2005-08-01 16:58:22.000','3937','340','2005-08-10 15:41:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10668','2005-08-01 17:00:27.000','2085','58','2005-08-02 14:49:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10669','2005-08-01 17:03:28.000','2121','559','2005-08-08 21:34:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10670','2005-08-01 17:07:16.000','156','512','2005-08-10 11:46:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10671','2005-08-01 17:09:59.000','4430','10','2005-08-09 21:36:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10672','2005-08-01 17:10:54.000','3674','375','2005-08-07 12:19:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10673','2005-08-01 17:11:51.000','2735','528','2005-08-03 13:32:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10674','2005-08-01 17:11:52.000','1962','340','2005-08-08 19:34:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10675','2005-08-01 17:11:57.000','649','522','2005-08-10 17:18:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10676','2005-08-01 17:14:15.000','629','79','2005-08-04 12:34:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10677','2005-08-01 17:24:35.000','4350','483','2005-08-04 20:03:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10678','2005-08-01 17:26:24.000','4438','56','2005-08-05 22:55:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10679','2005-08-01 17:27:58.000','4437','198','2005-08-08 16:06:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10680','2005-08-01 17:28:05.000','2498','60','2005-08-04 19:34:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10681','2005-08-01 17:30:35.000','1468','119','2005-08-02 14:48:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10682','2005-08-01 17:32:53.000','4557','18','2005-08-06 15:49:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10683','2005-08-01 17:33:03.000','244','246','2005-08-04 23:12:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10684','2005-08-01 17:47:00.000','1985','244','2005-08-09 15:00:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10685','2005-08-01 17:49:38.000','2029','200','2005-08-07 21:04:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10686','2005-08-01 17:51:21.000','2542','150','2005-08-03 19:01:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10687','2005-08-01 17:53:02.000','3191','16','2005-08-05 19:16:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10688','2005-08-01 17:53:43.000','3161','449','2005-08-09 21:50:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10689','2005-08-01 18:04:18.000','1442','568','2005-08-05 21:17:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10690','2005-08-01 18:05:54.000','807','80','2005-08-10 21:43:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10691','2005-08-01 18:09:53.000','4281','276','2005-08-03 16:32:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10692','2005-08-01 18:12:35.000','371','596','2005-08-07 13:06:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10693','2005-08-01 18:14:14.000','2387','444','2005-08-03 22:00:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10694','2005-08-01 18:15:07.000','3429','98','2005-08-10 15:38:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10695','2005-08-01 18:16:20.000','3612','374','2005-08-03 12:21:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10696','2005-08-01 18:18:13.000','47','120','2005-08-04 14:09:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10697','2005-08-01 18:20:23.000','3115','519','2005-08-07 21:18:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10698','2005-08-01 18:24:41.000','2738','135','2005-08-08 18:59:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10699','2005-08-01 18:24:51.000','1029','125','2005-08-06 20:18:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10700','2005-08-01 18:26:31.000','4259','203','2005-08-07 19:51:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10701','2005-08-01 18:28:17.000','3958','538','2005-08-09 21:51:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10702','2005-08-01 18:34:59.000','2802','560','2005-08-09 23:44:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10703','2005-08-01 18:37:39.000','1818','181','2005-08-07 23:50:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10704','2005-08-01 18:38:02.000','960','594','2005-08-08 20:19:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10705','2005-08-01 18:38:54.000','4338','381','2005-08-04 18:00:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10706','2005-08-01 18:41:28.000','1183','147','2005-08-10 14:30:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10707','2005-08-01 18:41:34.000','1165','558','2005-08-06 12:41:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10708','2005-08-01 18:43:28.000','3978','567','2005-08-09 15:24:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10709','2005-08-01 18:43:57.000','282','418','2005-08-06 13:17:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10710','2005-08-01 18:44:36.000','3082','177','2005-08-03 13:17:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10711','2005-08-01 18:45:09.000','4278','400','2005-08-02 19:47:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10712','2005-08-01 18:47:56.000','1188','532','2005-08-07 19:26:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10713','2005-08-01 18:50:05.000','2030','369','2005-08-05 00:43:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10714','2005-08-01 18:51:29.000','1465','64','2005-08-04 18:49:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10715','2005-08-01 18:51:48.000','1054','386','2005-08-06 14:44:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10716','2005-08-01 18:53:48.000','3405','515','2005-08-04 13:49:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10717','2005-08-01 18:53:53.000','2934','365','2005-08-05 21:28:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10718','2005-08-01 18:55:38.000','2763','394','2005-08-04 14:45:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10719','2005-08-01 19:00:28.000','3861','188','2005-08-07 17:04:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10720','2005-08-01 19:04:33.000','3712','326','2005-08-06 23:12:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10721','2005-08-01 19:05:18.000','904','18','2005-08-09 20:45:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10722','2005-08-01 19:07:08.000','2849','90','2005-08-04 14:09:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10723','2005-08-01 19:10:49.000','2526','580','2005-08-08 19:21:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10724','2005-08-01 19:10:59.000','3425','576','2005-08-07 18:44:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10725','2005-08-01 19:11:04.000','4486','534','2005-08-07 18:16:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10726','2005-08-01 19:14:53.000','749','75','2005-08-08 23:56:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10727','2005-08-01 19:15:08.000','2049','16','2005-08-03 13:52:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10728','2005-08-01 19:15:09.000','3133','309','2005-08-04 19:35:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10729','2005-08-01 19:21:11.000','2918','595','2005-08-07 21:20:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10730','2005-08-01 19:21:42.000','1793','368','2005-08-10 21:18:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10731','2005-08-01 19:21:48.000','4248','278','2005-08-08 22:01:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10732','2005-08-01 19:25:18.000','2810','538','2005-08-10 22:26:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10733','2005-08-01 19:28:01.000','3980','560','2005-08-09 18:41:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10734','2005-08-01 19:28:47.000','1130','21','2005-08-03 00:41:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10735','2005-08-01 19:29:45.000','4061','544','2005-08-02 19:50:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10736','2005-08-01 19:30:21.000','2227','272','2005-08-02 22:37:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10737','2005-08-01 19:31:24.000','1773','149','2005-08-10 19:17:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10738','2005-08-01 19:39:08.000','544','377','2005-08-10 20:37:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10739','2005-08-01 19:46:11.000','3160','197','2005-08-06 21:08:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10740','2005-08-01 19:50:32.000','3215','144','2005-08-07 23:25:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10741','2005-08-01 19:52:52.000','3300','469','2005-08-04 19:58:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10742','2005-08-01 19:53:13.000','3658','416','2005-08-10 15:05:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10743','2005-08-01 19:55:09.000','4206','197','2005-08-03 19:29:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10744','2005-08-01 19:56:49.000','565','439','2005-08-09 16:33:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10745','2005-08-01 19:57:06.000','446','307','2005-08-07 18:04:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10746','2005-08-01 19:58:49.000','305','508','2005-08-10 19:00:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10747','2005-08-01 19:59:41.000','4527','266','2005-08-10 00:00:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10748','2005-08-01 20:01:24.000','3769','181','2005-08-05 19:55:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10749','2005-08-01 20:02:01.000','2953','214','2005-08-03 14:20:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10750','2005-08-01 20:06:00.000','3206','201','2005-08-07 15:48:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10751','2005-08-01 20:06:10.000','3257','518','2005-08-10 22:36:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10752','2005-08-01 20:08:49.000','3203','147','2005-08-10 15:41:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10753','2005-08-01 20:09:24.000','1557','273','2005-08-09 19:31:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10754','2005-08-01 20:12:33.000','2122','460','2005-08-10 01:07:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10755','2005-08-01 20:14:14.000','1217','239','2005-08-07 01:04:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10756','2005-08-01 20:17:03.000','4247','596','2005-08-08 18:31:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10757','2005-08-01 20:22:44.000','102','188','2005-08-04 19:48:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10758','2005-08-01 20:22:51.000','191','373','2005-08-10 16:11:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10759','2005-08-01 20:22:51.000','3528','256','2005-08-07 22:07:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10760','2005-08-01 20:25:20.000','1311','497','2005-08-09 16:57:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10761','2005-08-01 20:25:35.000','3967','36','2005-08-08 15:20:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10762','2005-08-01 20:28:39.000','1363','208','2005-08-05 17:36:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10763','2005-08-01 20:32:27.000','987','276','2005-08-05 01:24:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10764','2005-08-01 20:32:42.000','3808','357','2005-08-03 22:14:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10765','2005-08-01 20:34:51.000','566','337','2005-08-04 00:02:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10766','2005-08-01 20:36:29.000','947','420','2005-08-04 00:30:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10767','2005-08-01 20:37:23.000','2875','488','2005-08-04 23:15:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10768','2005-08-01 20:39:32.000','454','273','2005-08-10 19:41:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10769','2005-08-01 20:43:02.000','3222','348','2005-08-05 02:32:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10770','2005-08-01 20:45:39.000','2567','262','2005-08-04 19:21:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10771','2005-08-01 20:49:35.000','1274','485','2005-08-10 16:58:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10772','2005-08-01 20:51:10.000','132','485','2005-08-10 15:50:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10773','2005-08-01 20:53:45.000','3854','181','2005-08-07 00:16:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10774','2005-08-01 20:54:33.000','4231','407','2005-08-08 20:59:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10775','2005-08-01 20:59:52.000','4190','263','2005-08-04 19:31:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10776','2005-08-01 20:59:58.000','1598','565','2005-08-10 20:33:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10777','2005-08-01 21:03:50.000','3487','493','2005-08-06 19:29:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10778','2005-08-01 21:11:39.000','1939','220','2005-08-02 22:59:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10779','2005-08-01 21:11:54.000','2092','578','2005-08-09 21:00:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10780','2005-08-01 21:14:24.000','1450','51','2005-08-07 16:32:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10781','2005-08-01 21:22:41.000','1321','259','2005-08-06 01:02:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10782','2005-08-01 21:23:25.000','1507','577','2005-08-03 20:15:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10783','2005-08-01 21:23:37.000','1192','495','2005-08-09 20:18:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10784','2005-08-01 21:24:28.000','3494','208','2005-08-09 19:23:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10785','2005-08-01 21:24:55.000','2282','397','2005-08-06 17:47:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10786','2005-08-01 21:29:34.000','50','490','2005-08-10 17:27:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10787','2005-08-01 21:35:01.000','3246','127','2005-08-10 23:30:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10788','2005-08-01 21:37:10.000','3350','160','2005-08-03 01:33:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10789','2005-08-01 21:37:55.000','3298','403','2005-08-07 17:01:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10790','2005-08-01 21:38:37.000','3080','274','2005-08-08 17:20:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10791','2005-08-01 21:41:52.000','2061','338','2005-08-04 03:28:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10792','2005-08-01 21:44:24.000','1037','264','2005-08-02 19:48:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10793','2005-08-01 21:48:03.000','3018','225','2005-08-10 19:16:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10794','2005-08-01 21:51:15.000','889','27','2005-08-10 18:51:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10795','2005-08-01 21:56:37.000','2748','76','2005-08-03 01:36:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10796','2005-08-01 21:56:41.000','2113','534','2005-08-05 01:09:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10797','2005-08-01 22:02:51.000','1731','308','2005-08-03 23:07:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10798','2005-08-01 22:03:10.000','382','141','2005-08-08 01:34:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10799','2005-08-01 22:03:31.000','3282','145','2005-08-06 20:19:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10800','2005-08-01 22:07:44.000','507','583','2005-08-05 22:45:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10801','2005-08-01 22:09:35.000','3757','116','2005-08-08 22:23:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10802','2005-08-01 22:18:32.000','3998','178','2005-08-10 18:41:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10803','2005-08-01 22:22:07.000','3318','46','2005-08-08 02:37:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10804','2005-08-01 22:22:11.000','2915','596','2005-08-03 03:42:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10805','2005-08-01 22:23:37.000','557','203','2005-08-05 01:22:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10806','2005-08-01 22:25:29.000','3553','89','2005-08-04 18:46:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10807','2005-08-01 22:26:10.000','1673','287','2005-08-05 21:55:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10808','2005-08-01 22:37:11.000','596','480','2005-08-09 02:37:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10809','2005-08-01 22:39:27.000','1167','340','2005-08-03 03:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10810','2005-08-01 22:40:39.000','2314','376','2005-08-06 19:47:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10811','2005-08-01 22:41:15.000','4012','209','2005-08-10 00:10:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10812','2005-08-01 22:41:16.000','3762','11','2005-08-07 00:50:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10813','2005-08-01 22:43:00.000','3580','456','2005-08-03 21:43:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10814','2005-08-01 22:43:12.000','2758','49','2005-08-05 02:35:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10815','2005-08-01 22:46:21.000','877','62','2005-08-03 02:43:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10816','2005-08-01 22:48:57.000','905','129','2005-08-10 04:39:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10817','2005-08-01 22:51:08.000','3056','501','2005-08-10 16:55:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10818','2005-08-01 22:52:45.000','4549','309','2005-08-06 04:07:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10819','2005-08-01 22:52:57.000','983','308','2005-08-06 00:08:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10820','2005-08-01 22:53:40.000','1487','97','2005-08-02 17:59:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10821','2005-08-01 22:54:27.000','2016','522','2005-08-07 02:15:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10822','2005-08-01 22:54:28.000','3895','343','2005-08-02 17:19:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10823','2005-08-01 22:59:10.000','3322','405','2005-08-08 23:44:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10824','2005-08-01 23:00:22.000','3948','482','2005-08-04 04:14:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10825','2005-08-01 23:05:33.000','4386','587','2005-08-04 04:33:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10826','2005-08-01 23:07:56.000','1228','476','2005-08-08 04:10:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10827','2005-08-01 23:13:00.000','1590','46','2005-08-08 02:51:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10828','2005-08-01 23:16:10.000','2448','471','2005-08-09 21:17:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10829','2005-08-01 23:17:06.000','168','554','2005-08-09 17:22:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10830','2005-08-01 23:18:06.000','4176','148','2005-08-06 23:15:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10831','2005-08-01 23:22:45.000','1496','78','2005-08-07 01:05:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10832','2005-08-01 23:24:53.000','4096','487','2005-08-06 23:18:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10833','2005-08-01 23:25:55.000','4380','422','2005-08-10 18:01:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10834','2005-08-01 23:28:00.000','2270','252','2005-08-07 01:21:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10835','2005-08-01 23:28:49.000','351','90','2005-08-10 21:28:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10836','2005-08-01 23:29:58.000','4534','217','2005-08-07 23:03:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10837','2005-08-01 23:30:22.000','1816','410','2005-08-07 23:02:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10838','2005-08-01 23:36:10.000','69','387','2005-08-05 04:55:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10839','2005-08-01 23:37:39.000','2867','482','2005-08-02 20:18:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10840','2005-08-01 23:38:34.000','583','593','2005-08-07 02:36:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10841','2005-08-01 23:39:21.000','4337','102','2005-08-07 20:47:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10842','2005-08-01 23:41:24.000','1300','137','2005-08-11 03:48:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10843','2005-08-01 23:43:03.000','1286','192','2005-08-09 23:49:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10844','2005-08-01 23:46:58.000','1516','333','2005-08-09 19:42:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10845','2005-08-01 23:47:03.000','2737','42','2005-08-08 01:57:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10846','2005-08-01 23:47:54.000','2277','441','2005-08-08 01:10:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10847','2005-08-01 23:49:33.000','1200','280','2005-08-10 05:37:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10848','2005-08-01 23:50:22.000','2630','368','2005-08-06 00:52:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10849','2005-08-01 23:51:00.000','1683','278','2005-08-10 19:59:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10850','2005-08-01 23:53:45.000','1853','199','2005-08-10 21:11:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10851','2005-08-01 23:58:45.000','1359','154','2005-08-04 00:59:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10852','2005-08-02 00:00:33.000','3862','27','2005-08-03 23:09:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10853','2005-08-02 00:00:54.000','2682','41','2005-08-10 05:37:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10854','2005-08-02 00:02:06.000','3295','356','2005-08-02 21:55:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10855','2005-08-02 00:06:37.000','1366','274','2005-08-03 00:39:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10856','2005-08-02 00:07:14.000','2010','451','2005-08-04 02:48:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10857','2005-08-02 00:07:20.000','2961','360','2005-08-04 02:35:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10858','2005-08-02 00:08:39.000','852','312','2005-08-05 00:58:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10859','2005-08-02 00:11:39.000','277','375','2005-08-08 19:52:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10860','2005-08-02 00:12:32.000','2827','25','2005-08-04 03:50:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10861','2005-08-02 00:12:46.000','2162','131','2005-08-09 04:09:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10862','2005-08-02 00:17:34.000','1077','176','2005-08-08 00:31:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10863','2005-08-02 00:18:07.000','1170','161','2005-08-10 06:16:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10864','2005-08-02 00:18:59.000','1694','134','2005-08-08 22:20:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10865','2005-08-02 00:22:46.000','1485','201','2005-08-09 05:08:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10866','2005-08-02 00:22:49.000','117','424','2005-08-07 04:38:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10867','2005-08-02 00:24:15.000','2577','473','2005-08-05 21:09:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10868','2005-08-02 00:25:15.000','2443','562','2005-08-10 02:31:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10869','2005-08-02 00:26:54.000','2967','568','2005-08-04 03:40:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10870','2005-08-02 00:27:12.000','1509','33','2005-08-02 20:00:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10871','2005-08-02 00:27:24.000','104','75','2005-08-05 06:25:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10872','2005-08-02 00:27:50.000','2470','84','2005-08-06 20:34:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10873','2005-08-02 00:30:34.000','169','506','2005-08-07 00:16:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10874','2005-08-02 00:31:00.000','2552','230','2005-08-07 05:04:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10875','2005-08-02 00:31:44.000','862','175','2005-08-05 22:24:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10876','2005-08-02 00:31:58.000','2161','559','2005-08-05 21:45:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10877','2005-08-02 00:32:04.000','3337','487','2005-08-07 19:44:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10878','2005-08-02 00:33:12.000','3511','45','2005-08-07 06:02:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10879','2005-08-02 00:33:20.000','4415','334','2005-08-09 04:13:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10880','2005-08-02 00:34:12.000','450','528','2005-08-06 21:15:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10881','2005-08-02 00:38:14.000','781','253','2005-08-09 22:02:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10882','2005-08-02 00:47:16.000','1349','54','2005-08-09 22:11:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10883','2005-08-02 00:47:19.000','4','301','2005-08-03 00:02:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10884','2005-08-02 00:47:33.000','3702','569','2005-08-03 04:38:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10885','2005-08-02 00:51:37.000','4223','493','2005-08-09 20:49:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10886','2005-08-02 00:52:34.000','943','77','2005-08-08 00:30:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10887','2005-08-02 00:52:35.000','3450','573','2005-08-03 05:37:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10888','2005-08-02 00:52:45.000','2412','428','2005-08-03 03:07:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10889','2005-08-02 00:54:33.000','2098','64','2005-08-07 19:42:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10890','2005-08-02 00:58:46.000','78','210','2005-08-10 02:13:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10891','2005-08-02 01:09:55.000','1269','201','2005-08-05 05:03:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10892','2005-08-02 01:12:06.000','3243','109','2005-08-09 23:53:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10893','2005-08-02 01:12:13.000','2529','306','2005-08-11 05:53:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10894','2005-08-02 01:12:35.000','598','51','2005-08-09 22:55:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10895','2005-08-02 01:16:59.000','93','77','2005-08-03 02:41:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10896','2005-08-02 01:19:33.000','2283','505','2005-08-08 06:54:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10897','2005-08-02 01:23:42.000','291','338','2005-08-03 23:27:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10898','2005-08-02 01:29:57.000','3814','23','2005-08-06 00:07:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10899','2005-08-02 01:30:21.000','859','29','2005-08-06 05:01:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10900','2005-08-02 01:34:26.000','1749','139','2005-08-07 00:52:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10901','2005-08-02 01:35:44.000','3813','290','2005-08-04 21:20:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10902','2005-08-02 01:35:46.000','3863','486','2005-08-09 01:59:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10903','2005-08-02 01:41:59.000','2696','547','2005-08-06 23:03:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10904','2005-08-02 01:43:02.000','3681','593','2005-08-04 04:34:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10905','2005-08-02 01:45:59.000','2835','439','2005-08-04 22:28:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10906','2005-08-02 01:47:04.000','3139','463','2005-08-07 20:41:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10907','2005-08-02 01:51:48.000','1430','561','2005-08-02 19:53:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10908','2005-08-02 01:53:06.000','1284','269','2005-08-04 02:46:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10909','2005-08-02 01:53:59.000','3516','413','2005-08-03 04:36:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10910','2005-08-02 01:54:34.000','2428','266','2005-08-10 04:04:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10911','2005-08-02 01:58:36.000','769','195','2005-08-08 07:37:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10912','2005-08-02 02:00:03.000','732','477','2005-08-06 05:55:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10913','2005-08-02 02:04:03.000','3388','565','2005-08-09 03:21:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10914','2005-08-02 02:04:43.000','585','584','2005-08-06 03:00:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10915','2005-08-02 02:05:04.000','4568','418','2005-08-10 21:58:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10916','2005-08-02 02:05:59.000','3841','25','2005-08-06 03:46:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10917','2005-08-02 02:06:18.000','3146','378','2005-08-03 22:42:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10918','2005-08-02 02:10:56.000','3418','2','2005-08-02 21:23:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10919','2005-08-02 02:11:03.000','868','115','2005-08-04 01:49:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10920','2005-08-02 02:14:10.000','3106','531','2005-08-06 23:36:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10921','2005-08-02 02:14:33.000','1820','555','2005-08-09 20:58:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10922','2005-08-02 02:14:40.000','4522','539','2005-08-06 06:04:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10923','2005-08-02 02:15:01.000','2602','239','2005-08-03 04:18:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10924','2005-08-02 02:20:19.000','589','540','2005-08-11 05:50:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10925','2005-08-02 02:24:38.000','1475','98','2005-08-03 05:06:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10926','2005-08-02 02:26:37.000','4016','460','2005-08-09 20:55:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10927','2005-08-02 02:31:15.000','4125','288','2005-08-10 20:41:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10928','2005-08-02 02:34:12.000','2885','211','2005-08-07 21:13:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10929','2005-08-02 02:35:44.000','913','305','2005-08-05 03:52:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10930','2005-08-02 02:38:07.000','2027','206','2005-08-08 05:15:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10931','2005-08-02 02:44:59.000','3268','545','2005-08-04 02:02:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10932','2005-08-02 02:46:22.000','1688','595','2005-08-06 01:49:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10933','2005-08-02 02:50:49.000','3970','313','2005-08-08 04:39:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10934','2005-08-02 02:52:18.000','4458','142','2005-08-06 01:23:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10935','2005-08-02 02:54:53.000','4373','42','2005-08-10 00:07:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10936','2005-08-02 02:55:04.000','463','445','2005-08-11 07:56:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10937','2005-08-02 03:00:18.000','1320','416','2005-08-11 03:44:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10938','2005-08-02 03:05:22.000','3918','502','2005-08-05 08:31:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10939','2005-08-02 03:06:20.000','2131','161','2005-08-04 01:22:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10940','2005-08-02 03:08:29.000','3760','120','2005-08-07 21:28:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10941','2005-08-02 03:11:33.000','2132','531','2005-08-10 07:31:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10942','2005-08-02 03:16:31.000','2304','78','2005-08-11 02:46:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10943','2005-08-02 03:17:29.000','1036','377','2005-08-03 00:50:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10944','2005-08-02 03:20:03.000','2373','470','2005-08-04 04:13:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10945','2005-08-02 03:20:23.000','3684','532','2005-08-09 03:23:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10946','2005-08-02 03:20:39.000','4271','56','2005-08-05 02:59:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10947','2005-08-02 03:23:17.000','2510','500','2005-08-07 05:25:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10948','2005-08-02 03:23:23.000','4429','220','2005-08-05 23:18:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10949','2005-08-02 03:24:04.000','2309','389','2005-08-06 08:36:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10950','2005-08-02 03:25:08.000','707','451','2005-08-07 23:11:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10951','2005-08-02 03:26:35.000','173','144','2005-08-07 22:03:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10952','2005-08-02 03:28:21.000','3218','111','2005-08-09 01:41:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10953','2005-08-02 03:28:38.000','1510','483','2005-08-11 03:53:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10954','2005-08-02 03:30:24.000','3406','20','2005-08-08 05:52:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10955','2005-08-02 03:32:34.000','618','490','2005-08-09 21:53:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10956','2005-08-02 03:33:14.000','4372','54','2005-08-09 09:20:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10957','2005-08-02 03:33:30.000','1652','447','2005-08-10 06:19:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10958','2005-08-02 03:37:13.000','2174','160','2005-08-04 23:28:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10959','2005-08-02 03:39:39.000','4233','431','2005-08-11 07:20:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10960','2005-08-02 03:46:18.000','3536','399','2005-08-11 01:29:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10961','2005-08-02 03:47:55.000','1416','375','2005-08-09 02:03:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10962','2005-08-02 03:48:13.000','1953','538','2005-08-07 00:04:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10963','2005-08-02 03:48:17.000','4501','36','2005-08-02 22:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10964','2005-08-02 03:56:23.000','2356','36','2005-08-09 23:11:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10965','2005-08-02 04:00:19.000','2192','580','2005-08-09 03:27:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10966','2005-08-02 04:00:47.000','478','584','2005-08-08 01:58:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10967','2005-08-02 04:02:16.000','683','149','2005-08-09 07:57:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10968','2005-08-02 04:03:13.000','888','234','2005-08-11 08:36:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10969','2005-08-02 04:04:32.000','1898','244','2005-08-09 23:18:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10970','2005-08-02 04:06:46.000','1202','260','2005-08-10 04:27:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10971','2005-08-02 04:08:17.000','2789','383','2005-08-09 00:02:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10972','2005-08-02 04:08:25.000','1928','348','2005-08-09 23:25:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10973','2005-08-02 04:09:42.000','3562','127','2005-08-08 05:24:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10974','2005-08-02 04:10:52.000','690','491','2005-08-09 08:26:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10975','2005-08-02 04:11:25.000','2616','361','2005-08-04 04:39:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10976','2005-08-02 04:11:48.000','2418','326','2005-08-06 06:30:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10977','2005-08-02 04:12:17.000','2302','300','2005-08-06 06:52:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10978','2005-08-02 04:12:27.000','1597','487','2005-08-10 08:19:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10979','2005-08-02 04:16:37.000','2625','160','2005-08-06 00:01:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10980','2005-08-02 04:17:32.000','150','547','2005-08-04 05:12:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10981','2005-08-02 04:17:53.000','3699','305','2005-08-09 03:45:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10982','2005-08-02 04:19:11.000','2508','345','2005-08-04 00:20:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10983','2005-08-02 04:24:23.000','4502','380','2005-08-09 08:05:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10984','2005-08-02 04:30:02.000','1813','450','2005-08-10 02:51:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10985','2005-08-02 04:30:19.000','2734','186','2005-08-03 05:18:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10986','2005-08-02 04:35:24.000','555','597','2005-08-09 07:34:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10987','2005-08-02 04:36:52.000','968','349','2005-08-04 00:03:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10988','2005-08-02 04:38:17.000','1157','509','2005-08-09 00:09:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10989','2005-08-02 04:40:54.000','2272','7','2005-08-09 03:39:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10990','2005-08-02 04:41:06.000','262','111','2005-08-10 05:02:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10991','2005-08-02 04:41:12.000','2854','77','2005-08-05 05:36:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10992','2005-08-02 04:41:17.000','11','180','2005-08-09 02:13:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10993','2005-08-02 04:45:01.000','292','383','2005-08-04 03:32:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10994','2005-08-02 04:46:53.000','647','323','2005-08-11 10:30:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10995','2005-08-02 04:48:00.000','2891','340','2005-08-07 05:00:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10996','2005-08-02 04:48:11.000','2235','26','2005-08-06 08:00:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10997','2005-08-02 04:49:02.000','300','334','2005-08-10 08:13:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10998','2005-08-02 04:50:55.000','1479','435','2005-08-11 03:43:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('10999','2005-08-02 04:53:13.000','2013','227','2005-08-06 04:36:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11000','2005-08-02 04:56:14.000','264','265','2005-08-07 01:39:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11001','2005-08-02 04:56:45.000','3701','5','2005-08-11 08:04:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11002','2005-08-02 05:02:56.000','3073','583','2005-08-05 07:04:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11003','2005-08-02 05:03:05.000','4301','272','2005-08-05 10:48:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11004','2005-08-02 05:04:18.000','200','45','2005-08-11 00:03:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11005','2005-08-02 05:05:23.000','1547','216','2005-08-07 23:28:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11006','2005-08-02 05:05:52.000','2776','473','2005-08-05 03:33:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11007','2005-08-02 05:05:53.000','4172','98','2005-08-05 01:56:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11008','2005-08-02 05:06:17.000','2831','375','2005-08-10 01:22:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11009','2005-08-02 05:06:23.000','2574','596','2005-08-08 03:02:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11010','2005-08-02 05:06:27.000','869','326','2005-08-03 23:47:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11011','2005-08-02 05:07:07.000','3981','256','2005-08-09 07:16:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11012','2005-08-02 05:09:42.000','542','162','2005-08-05 07:22:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11013','2005-08-02 05:10:54.000','2993','527','2005-08-10 08:59:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11014','2005-08-02 05:12:22.000','393','269','2005-08-07 09:33:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11015','2005-08-02 05:13:00.000','4331','138','2005-08-08 04:18:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11016','2005-08-02 05:19:13.000','4446','116','2005-08-05 05:31:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11017','2005-08-02 05:19:51.000','4140','480','2005-08-09 00:36:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11018','2005-08-02 05:27:53.000','2988','197','2005-08-07 10:48:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11019','2005-08-02 05:29:31.000','3227','112','2005-08-04 00:42:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11020','2005-08-02 05:29:48.000','1645','242','2005-08-06 05:36:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11021','2005-08-02 05:30:11.000','2069','385','2005-08-05 05:50:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11022','2005-08-02 05:35:03.000','827','206','2005-08-09 10:20:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11023','2005-08-02 05:36:38.000','3617','6','2005-08-10 05:39:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11024','2005-08-02 05:38:31.000','2284','427','2005-08-11 04:47:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11025','2005-08-02 05:39:12.000','2253','419','2005-08-08 00:09:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11026','2005-08-02 05:46:05.000','3554','531','2005-08-07 06:27:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11027','2005-08-02 05:47:10.000','571','412','2005-08-05 23:51:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11028','2005-08-02 05:48:20.000','2764','66','2005-08-10 11:21:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11029','2005-08-02 05:51:10.000','1023','45','2005-08-05 04:15:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11030','2005-08-02 05:51:20.000','1437','569','2005-08-06 04:20:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11031','2005-08-02 05:52:58.000','1205','361','2005-08-07 07:14:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11032','2005-08-02 05:53:35.000','1119','359','2005-08-05 02:58:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11033','2005-08-02 05:54:17.000','3323','155','2005-08-09 10:50:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11034','2005-08-02 05:54:53.000','2939','586','2005-08-09 04:14:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11035','2005-08-02 05:55:39.000','3776','305','2005-08-08 06:46:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11036','2005-08-02 05:56:29.000','2054','502','2005-08-05 05:00:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11037','2005-08-02 05:58:12.000','4291','220','2005-08-07 11:26:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11038','2005-08-02 05:59:42.000','4452','403','2005-08-08 04:37:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11039','2005-08-02 06:00:53.000','549','170','2005-08-05 06:19:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11040','2005-08-02 06:03:22.000','2297','223','2005-08-03 07:58:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11041','2005-08-02 06:03:53.000','1897','435','2005-08-03 11:57:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11042','2005-08-02 06:04:33.000','4149','439','2005-08-11 01:30:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11043','2005-08-02 06:04:44.000','65','573','2005-08-06 11:37:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11044','2005-08-02 06:05:27.000','2922','122','2005-08-06 05:15:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11045','2005-08-02 06:07:54.000','2214','402','2005-08-08 00:37:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11046','2005-08-02 06:08:34.000','2105','526','2005-08-06 08:45:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11047','2005-08-02 06:09:20.000','2267','416','2005-08-11 08:36:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11048','2005-08-02 06:15:07.000','206','491','2005-08-04 02:47:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11049','2005-08-02 06:15:40.000','4352','38','2005-08-11 10:09:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11050','2005-08-02 06:17:16.000','2077','234','2005-08-09 05:58:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11051','2005-08-02 06:23:39.000','4189','446','2005-08-06 06:46:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11052','2005-08-02 06:26:19.000','1089','331','2005-08-06 04:20:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11053','2005-08-02 06:27:13.000','2599','50','2005-08-09 11:24:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11054','2005-08-02 06:33:07.000','728','577','2005-08-10 02:52:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11055','2005-08-02 06:36:05.000','3851','182','2005-08-06 00:36:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11056','2005-08-02 06:36:27.000','1404','88','2005-08-10 06:02:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11057','2005-08-02 06:38:19.000','3143','137','2005-08-11 03:43:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11058','2005-08-02 06:38:44.000','3270','274','2005-08-06 06:45:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11059','2005-08-02 06:41:38.000','428','189','2005-08-09 04:34:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11060','2005-08-02 06:48:18.000','3395','496','2005-08-10 11:49:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11061','2005-08-02 06:50:18.000','809','245','2005-08-07 07:41:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11062','2005-08-02 06:52:54.000','2014','346','2005-08-07 10:59:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11063','2005-08-02 06:53:48.000','2261','461','2005-08-05 03:38:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11064','2005-08-02 06:55:17.000','3012','338','2005-08-06 03:29:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11065','2005-08-02 06:57:55.000','2226','357','2005-08-06 01:31:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11066','2005-08-02 06:58:32.000','4213','373','2005-08-10 01:27:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11067','2005-08-02 07:03:24.000','965','85','2005-08-10 08:59:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11068','2005-08-02 07:08:07.000','1262','52','2005-08-09 11:15:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11069','2005-08-02 07:09:34.000','57','4','2005-08-08 08:39:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11070','2005-08-02 07:10:39.000','4020','298','2005-08-03 07:43:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11071','2005-08-02 07:10:53.000','4264','294','2005-08-07 09:58:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11072','2005-08-02 07:10:57.000','3078','21','2005-08-04 07:42:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11073','2005-08-02 07:13:03.000','4232','234','2005-08-03 05:46:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11074','2005-08-02 07:21:43.000','1439','277','2005-08-08 05:18:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11075','2005-08-02 07:24:23.000','3027','503','2005-08-08 04:55:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11076','2005-08-02 07:24:47.000','837','211','2005-08-10 09:16:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11077','2005-08-02 07:26:43.000','4254','158','2005-08-09 10:34:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11078','2005-08-02 07:26:58.000','2362','587','2005-08-07 01:59:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11079','2005-08-02 07:29:10.000','3185','29','2005-08-07 01:59:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11080','2005-08-02 07:29:56.000','4303','571','2005-08-08 05:58:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11081','2005-08-02 07:30:14.000','3804','513','2005-08-09 08:50:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11082','2005-08-02 07:30:19.000','3037','190','2005-08-07 05:20:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11083','2005-08-02 07:32:01.000','4395','295','2005-08-08 02:23:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11084','2005-08-02 07:34:19.000','32','369','2005-08-07 09:30:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11085','2005-08-02 07:36:44.000','3207','276','2005-08-04 03:32:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11086','2005-08-02 07:38:44.000','552','371','2005-08-11 06:30:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11087','2005-08-02 07:41:41.000','654','2','2005-08-10 10:37:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11088','2005-08-02 07:48:31.000','2739','138','2005-08-05 08:09:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11089','2005-08-02 07:52:20.000','825','421','2005-08-07 07:24:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11090','2005-08-02 07:56:40.000','2743','89','2005-08-10 07:58:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11091','2005-08-02 07:56:41.000','1659','423','2005-08-07 05:35:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11092','2005-08-02 07:58:50.000','569','60','2005-08-04 03:23:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11093','2005-08-02 07:59:49.000','239','82','2005-08-11 06:01:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11094','2005-08-02 08:03:02.000','3095','18','2005-08-03 11:34:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11095','2005-08-02 08:03:20.000','3517','278','2005-08-10 05:20:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11096','2005-08-02 08:05:19.000','1436','34','2005-08-04 07:28:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11097','2005-08-02 08:05:46.000','2493','575','2005-08-10 12:00:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11098','2005-08-02 08:06:18.000','158','570','2005-08-11 04:50:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11099','2005-08-02 08:07:12.000','1444','102','2005-08-07 12:11:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11100','2005-08-02 08:08:00.000','3047','65','2005-08-10 07:19:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11101','2005-08-02 08:08:24.000','2621','80','2005-08-06 05:55:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11102','2005-08-02 08:08:30.000','3112','73','2005-08-04 09:16:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11103','2005-08-02 08:09:54.000','1879','158','2005-08-07 12:05:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11104','2005-08-02 08:09:58.000','3042','196','2005-08-05 11:55:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11105','2005-08-02 08:13:31.000','3170','245','2005-08-03 11:08:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11106','2005-08-02 08:17:38.000','2307','287','2005-08-03 07:54:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11107','2005-08-02 08:19:38.000','2217','410','2005-08-07 08:46:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11108','2005-08-02 08:20:01.000','560','447','2005-08-03 13:22:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11109','2005-08-02 08:20:29.000','2683','479','2005-08-09 11:35:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11110','2005-08-02 08:20:31.000','4311','4','2005-08-04 05:06:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11111','2005-08-02 08:21:27.000','334','378','2005-08-06 07:48:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11112','2005-08-02 08:25:14.000','526','207','2005-08-03 08:41:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11113','2005-08-02 08:26:24.000','1654','231','2005-08-07 09:24:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11114','2005-08-02 08:26:45.000','1273','572','2005-08-03 08:41:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11115','2005-08-02 08:31:06.000','3812','408','2005-08-04 02:36:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11116','2005-08-02 08:34:40.000','434','344','2005-08-09 04:56:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11117','2005-08-02 08:36:03.000','1613','474','2005-08-05 06:56:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11118','2005-08-02 08:44:18.000','2411','15','2005-08-05 08:08:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11119','2005-08-02 08:44:44.000','4307','489','2005-08-10 11:32:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11120','2005-08-02 08:47:04.000','4185','322','2005-08-05 05:33:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11121','2005-08-02 08:48:31.000','1025','572','2005-08-04 05:08:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11122','2005-08-02 08:49:09.000','3021','383','2005-08-08 04:33:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11123','2005-08-02 08:54:17.000','1926','150','2005-08-09 11:11:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11124','2005-08-02 08:55:25.000','698','249','2005-08-10 10:59:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11125','2005-08-02 08:55:35.000','2081','237','2005-08-03 09:12:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11126','2005-08-02 08:59:04.000','3310','47','2005-08-04 11:00:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11127','2005-08-02 09:00:59.000','1106','351','2005-08-05 11:54:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11128','2005-08-02 09:03:25.000','3472','386','2005-08-09 04:36:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11129','2005-08-02 09:08:44.000','23','566','2005-08-04 04:00:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11130','2005-08-02 09:08:59.000','684','329','2005-08-09 07:50:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11131','2005-08-02 09:10:04.000','1860','293','2005-08-08 09:59:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11132','2005-08-02 09:14:09.000','2212','398','2005-08-08 06:39:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11133','2005-08-02 09:15:45.000','675','120','2005-08-04 10:39:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11134','2005-08-02 09:19:22.000','2641','372','2005-08-11 03:56:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11135','2005-08-02 09:22:25.000','799','32','2005-08-04 14:30:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11136','2005-08-02 09:22:57.000','1315','559','2005-08-08 14:12:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11137','2005-08-02 09:25:31.000','2500','310','2005-08-08 08:10:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11138','2005-08-02 09:26:16.000','4250','458','2005-08-11 07:50:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11139','2005-08-02 09:27:36.000','1011','236','2005-08-08 14:07:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11140','2005-08-02 09:27:45.000','3836','132','2005-08-05 04:10:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11141','2005-08-02 09:29:11.000','1614','15','2005-08-04 07:50:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11142','2005-08-02 09:30:11.000','2954','306','2005-08-05 06:52:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11143','2005-08-02 09:32:54.000','3382','100','2005-08-05 12:04:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11144','2005-08-02 09:39:17.000','2724','376','2005-08-03 11:53:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11145','2005-08-02 09:43:24.000','1270','291','2005-08-05 15:29:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11146','2005-08-02 09:45:32.000','2488','552','2005-08-07 07:33:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11147','2005-08-02 09:45:54.000','1562','597','2005-08-07 07:28:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11148','2005-08-02 09:47:08.000','2991','230','2005-08-08 10:57:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11149','2005-08-02 09:51:43.000','3254','358','2005-08-11 09:40:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11150','2005-08-02 09:51:46.000','2193','527','2005-08-05 09:03:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11151','2005-08-02 09:52:44.000','3939','391','2005-08-05 06:29:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11152','2005-08-02 09:53:36.000','3887','494','2005-08-11 14:58:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11153','2005-08-02 09:54:19.000','1546','220','2005-08-10 14:57:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11154','2005-08-02 09:54:50.000','697','160','2005-08-06 14:48:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11155','2005-08-02 09:55:28.000','2001','73','2005-08-03 06:00:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11156','2005-08-02 09:56:06.000','907','465','2005-08-04 13:36:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11157','2005-08-02 09:58:15.000','1313','244','2005-08-06 04:23:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11158','2005-08-02 09:58:28.000','530','190','2005-08-10 13:54:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11159','2005-08-02 10:00:55.000','4575','249','2005-08-05 10:38:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11160','2005-08-02 10:05:30.000','3260','436','2005-08-07 08:30:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11161','2005-08-02 10:05:57.000','3321','503','2005-08-06 05:05:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11162','2005-08-02 10:07:54.000','1809','277','2005-08-05 11:35:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11163','2005-08-02 10:08:40.000','1925','505','2005-08-05 14:59:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11164','2005-08-02 10:10:56.000','4450','580','2005-08-10 11:20:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11165','2005-08-02 10:12:17.000','2059','513','2005-08-04 11:09:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11166','2005-08-02 10:14:58.000','638','11','2005-08-11 11:43:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11167','2005-08-02 10:15:51.000','148','451','2005-08-09 09:18:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11168','2005-08-02 10:19:42.000','468','555','2005-08-04 08:42:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11169','2005-08-02 10:19:42.000','2392','329','2005-08-07 05:45:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11170','2005-08-02 10:21:53.000','1333','547','2005-08-08 11:08:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11171','2005-08-02 10:23:41.000','3117','339','2005-08-04 14:22:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11172','2005-08-02 10:27:52.000','1207','76','2005-08-11 12:47:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11173','2005-08-02 10:28:00.000','4296','146','2005-08-10 14:53:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11174','2005-08-02 10:32:11.000','1551','328','2005-08-09 12:30:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11175','2005-08-02 10:38:47.000','85','164','2005-08-07 07:11:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11176','2005-08-02 10:39:43.000','1448','37','2005-08-09 14:42:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11177','2005-08-02 10:43:48.000','1149','2','2005-08-10 10:55:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11178','2005-08-02 10:48:10.000','2613','342','2005-08-06 06:07:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11179','2005-08-02 10:50:06.000','4376','5','2005-08-04 05:24:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11180','2005-08-02 10:54:30.000','3632','534','2005-08-11 15:55:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11181','2005-08-02 10:55:03.000','3127','557','2005-08-07 10:43:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11182','2005-08-02 10:55:14.000','605','54','2005-08-06 05:58:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11183','2005-08-02 11:00:32.000','833','102','2005-08-04 08:59:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11184','2005-08-02 11:01:26.000','871','259','2005-08-11 06:29:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11185','2005-08-02 11:04:35.000','1215','469','2005-08-05 13:48:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11186','2005-08-02 11:12:08.000','733','353','2005-08-03 10:46:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11187','2005-08-02 11:16:19.000','3626','410','2005-08-11 06:11:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11188','2005-08-02 11:17:11.000','1372','485','2005-08-08 16:46:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11189','2005-08-02 11:17:23.000','729','565','2005-08-09 16:30:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11190','2005-08-02 11:21:34.000','922','254','2005-08-05 05:23:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11191','2005-08-02 11:24:07.000','1097','571','2005-08-10 10:39:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11192','2005-08-02 11:29:41.000','1998','349','2005-08-07 06:01:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11193','2005-08-02 11:31:33.000','2246','292','2005-08-04 14:00:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11194','2005-08-02 11:35:53.000','2732','135','2005-08-10 11:28:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11195','2005-08-02 11:42:23.000','4359','177','2005-08-03 08:29:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11196','2005-08-02 11:42:40.000','2648','126','2005-08-10 11:58:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11197','2005-08-02 11:45:07.000','3041','122','2005-08-03 09:07:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11198','2005-08-02 11:45:15.000','2908','540','2005-08-10 11:42:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11199','2005-08-02 11:47:40.000','3926','578','2005-08-10 06:52:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11200','2005-08-02 11:48:36.000','2730','98','2005-08-07 08:35:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11201','2005-08-02 11:49:16.000','1501','195','2005-08-11 08:39:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11202','2005-08-02 11:51:57.000','3625','231','2005-08-08 09:41:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11203','2005-08-02 11:52:41.000','4520','92','2005-08-10 15:52:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11204','2005-08-02 11:56:31.000','3578','247','2005-08-06 14:16:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11205','2005-08-02 11:56:54.000','4321','552','2005-08-05 08:24:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11206','2005-08-02 11:58:03.000','4131','72','2005-08-07 12:36:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11207','2005-08-02 12:01:30.000','4470','481','2005-08-05 07:56:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11208','2005-08-02 12:02:37.000','4566','320','2005-08-05 10:56:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11209','2005-08-02 12:09:45.000','3219','24','2005-08-07 08:52:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11210','2005-08-02 12:15:54.000','422','202','2005-08-04 16:18:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11211','2005-08-02 12:16:48.000','1722','245','2005-08-03 10:40:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11212','2005-08-02 12:18:29.000','4007','343','2005-08-05 16:05:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11213','2005-08-02 12:18:35.000','1007','584','2005-08-05 08:44:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11214','2005-08-02 12:19:50.000','2722','407','2005-08-11 06:38:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11215','2005-08-02 12:20:42.000','379','197','2005-08-06 14:01:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11216','2005-08-02 12:23:43.000','1109','473','2005-08-03 13:19:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11217','2005-08-02 12:26:31.000','1201','417','2005-08-09 09:53:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11218','2005-08-02 12:29:12.000','1126','500','2005-08-10 16:13:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11219','2005-08-02 12:30:20.000','2889','461','2005-08-08 13:42:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11220','2005-08-02 12:31:41.000','3777','84','2005-08-05 08:23:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11221','2005-08-02 12:32:12.000','1689','146','2005-08-03 17:13:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11222','2005-08-02 12:32:28.000','1780','407','2005-08-11 18:15:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11223','2005-08-02 12:34:27.000','1994','597','2005-08-07 14:21:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11224','2005-08-02 12:40:38.000','3938','181','2005-08-04 10:02:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11225','2005-08-02 12:43:27.000','3721','159','2005-08-04 18:41:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11226','2005-08-02 12:47:30.000','79','282','2005-08-06 11:24:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11227','2005-08-02 12:48:05.000','1101','65','2005-08-11 14:08:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11228','2005-08-02 12:55:23.000','2561','144','2005-08-08 12:31:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11229','2005-08-02 12:56:37.000','941','332','2005-08-11 11:13:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11230','2005-08-02 12:59:08.000','1463','257','2005-08-04 13:42:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11231','2005-08-02 13:02:11.000','1100','90','2005-08-07 10:05:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11232','2005-08-02 13:04:12.000','971','8','2005-08-10 15:39:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11233','2005-08-02 13:06:11.000','2221','266','2005-08-08 15:02:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11234','2005-08-02 13:12:17.000','1020','27','2005-08-05 17:37:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11235','2005-08-02 13:13:21.000','2501','127','2005-08-03 07:17:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11236','2005-08-02 13:17:21.000','145','420','2005-08-09 09:53:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11237','2005-08-02 13:24:01.000','2668','426','2005-08-05 11:41:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11238','2005-08-02 13:25:50.000','2705','506','2005-08-08 19:12:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11239','2005-08-02 13:27:11.000','189','111','2005-08-03 14:36:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11240','2005-08-02 13:28:30.000','2170','597','2005-08-05 11:40:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11241','2005-08-02 13:29:24.000','3657','543','2005-08-11 11:36:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11242','2005-08-02 13:32:00.000','1041','434','2005-08-10 19:24:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11243','2005-08-02 13:32:48.000','2517','361','2005-08-11 18:55:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11244','2005-08-02 13:33:24.000','3423','142','2005-08-10 10:18:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11245','2005-08-02 13:33:50.000','2609','92','2005-08-04 10:20:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11246','2005-08-02 13:33:56.000','3577','550','2005-08-03 08:52:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11247','2005-08-02 13:34:08.000','1661','441','2005-08-06 16:23:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11248','2005-08-02 13:35:34.000','4139','312','2005-08-03 10:37:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11249','2005-08-02 13:35:40.000','3394','157','2005-08-07 11:22:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11250','2005-08-02 13:35:42.000','2223','279','2005-08-10 12:32:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11251','2005-08-02 13:40:49.000','2181','532','2005-08-09 14:16:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11252','2005-08-02 13:42:13.000','2410','337','2005-08-06 19:04:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11253','2005-08-02 13:42:44.000','2898','303','2005-08-09 17:06:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11254','2005-08-02 13:43:49.000','56','315','2005-08-08 13:16:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11255','2005-08-02 13:44:30.000','3393','569','2005-08-03 12:00:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11256','2005-08-02 13:44:53.000','2060','2','2005-08-04 16:39:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11257','2005-08-02 13:45:05.000','105','468','2005-08-11 16:37:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11258','2005-08-02 13:45:39.000','1576','242','2005-08-06 07:57:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11259','2005-08-02 13:46:30.000','896','330','2005-08-07 14:03:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11260','2005-08-02 13:52:19.000','4015','207','2005-08-06 08:13:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11261','2005-08-02 13:54:26.000','31','204','2005-08-10 19:04:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11262','2005-08-02 13:58:55.000','71','348','2005-08-05 18:09:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11263','2005-08-02 14:02:19.000','1189','421','2005-08-07 14:03:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11264','2005-08-02 14:05:18.000','3420','360','2005-08-10 08:46:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11265','2005-08-02 14:05:42.000','3870','531','2005-08-11 15:27:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11266','2005-08-02 14:07:35.000','3972','99','2005-08-04 13:31:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11267','2005-08-02 14:09:08.000','2045','244','2005-08-10 12:33:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11268','2005-08-02 14:10:39.000','3275','558','2005-08-04 14:35:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11269','2005-08-02 14:11:41.000','2398','297','2005-08-08 18:53:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11270','2005-08-02 14:18:07.000','1882','418','2005-08-03 08:20:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11271','2005-08-02 14:18:22.000','4323','93','2005-08-07 09:35:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11272','2005-08-02 14:20:27.000','4111','158','2005-08-07 12:24:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11273','2005-08-02 14:20:55.000','3383','541','2005-08-07 12:57:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11274','2005-08-02 14:24:08.000','1253','70','2005-08-11 14:56:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11275','2005-08-02 14:25:58.000','2838','464','2005-08-07 11:20:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11276','2005-08-02 14:28:46.000','4226','190','2005-08-04 14:00:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11277','2005-08-02 14:28:50.000','2050','68','2005-08-04 13:50:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11278','2005-08-02 14:29:43.000','961','143','2005-08-07 10:13:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11279','2005-08-02 14:30:03.000','151','125','2005-08-10 09:49:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11280','2005-08-02 14:34:33.000','1846','134','2005-08-08 15:40:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11281','2005-08-02 14:35:01.000','2210','137','2005-08-07 17:28:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11282','2005-08-02 14:35:03.000','1824','273','2005-08-03 16:02:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11283','2005-08-02 14:39:46.000','312','134','2005-08-05 10:19:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11284','2005-08-02 14:42:45.000','172','8','2005-08-04 11:55:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11285','2005-08-02 14:44:02.000','3849','585','2005-08-11 16:45:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11286','2005-08-02 14:44:22.000','1319','207','2005-08-10 09:01:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11287','2005-08-02 14:49:51.000','927','55','2005-08-09 09:19:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11288','2005-08-02 14:54:08.000','1478','298','2005-08-11 12:22:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11289','2005-08-02 14:55:00.000','2869','10','2005-08-11 13:57:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11290','2005-08-02 14:57:44.000','425','582','2005-08-09 19:36:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11291','2005-08-02 14:57:58.000','491','417','2005-08-11 09:04:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11292','2005-08-02 14:58:41.000','210','13','2005-08-06 14:38:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11293','2005-08-02 15:00:43.000','1514','475','2005-08-11 17:49:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11294','2005-08-02 15:08:27.000','855','411','2005-08-03 18:28:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11295','2005-08-02 15:10:06.000','423','67','2005-08-10 09:52:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11296','2005-08-02 15:15:27.000','247','154','2005-08-11 16:12:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11297','2005-08-02 15:22:47.000','2531','62','2005-08-11 18:45:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11298','2005-08-02 15:32:32.000','1663','35','2005-08-06 20:22:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11299','2005-08-02 15:36:52.000','3232','1','2005-08-10 16:40:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11300','2005-08-02 15:37:42.000','3032','552','2005-08-11 14:25:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11301','2005-08-02 15:37:59.000','676','502','2005-08-04 10:57:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11302','2005-08-02 15:38:03.000','1918','51','2005-08-09 10:33:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11303','2005-08-02 15:39:18.000','1817','417','2005-08-05 10:59:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11304','2005-08-02 15:40:10.000','2592','413','2005-08-06 16:12:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11305','2005-08-02 15:44:55.000','1690','341','2005-08-08 16:42:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11306','2005-08-02 15:45:10.000','13','247','2005-08-03 21:14:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11307','2005-08-02 15:48:08.000','1490','15','2005-08-06 20:33:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11308','2005-08-02 15:50:44.000','699','16','2005-08-05 11:38:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11309','2005-08-02 15:50:55.000','607','275','2005-08-09 18:28:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11310','2005-08-02 15:51:58.000','3601','415','2005-08-07 12:34:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11311','2005-08-02 15:53:48.000','204','197','2005-08-03 16:32:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11312','2005-08-02 15:56:51.000','1093','190','2005-08-07 20:56:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11313','2005-08-02 16:02:51.000','2689','419','2005-08-03 14:54:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11314','2005-08-02 16:04:08.000','2790','26','2005-08-04 18:47:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11315','2005-08-02 16:05:17.000','1116','13','2005-08-05 16:33:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11316','2005-08-02 16:07:49.000','521','108','2005-08-10 13:22:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11317','2005-08-02 16:08:52.000','1889','502','2005-08-08 21:12:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11318','2005-08-02 16:09:11.000','2386','532','2005-08-07 11:28:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11319','2005-08-02 16:10:09.000','4069','178','2005-08-09 11:21:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11320','2005-08-02 16:13:28.000','3362','550','2005-08-05 21:23:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11321','2005-08-02 16:15:07.000','205','266','2005-08-04 20:35:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11322','2005-08-02 16:23:17.000','761','418','2005-08-09 19:55:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11323','2005-08-02 16:29:57.000','3784','419','2005-08-06 16:01:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11324','2005-08-02 16:31:17.000','2900','540','2005-08-08 15:38:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11325','2005-08-02 16:33:11.000','4514','422','2005-08-08 13:42:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11326','2005-08-02 16:34:29.000','1762','530','2005-08-03 17:40:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11327','2005-08-02 16:40:47.000','773','361','2005-08-03 22:13:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11328','2005-08-02 16:42:38.000','2031','219','2005-08-04 21:02:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11329','2005-08-02 16:42:52.000','2677','399','2005-08-08 16:45:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11330','2005-08-02 16:45:33.000','4326','75','2005-08-04 15:15:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11331','2005-08-02 16:49:01.000','3789','568','2005-08-09 19:15:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11332','2005-08-02 16:52:57.000','2381','467','2005-08-04 14:13:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11333','2005-08-02 16:53:00.000','3335','225','2005-08-07 20:49:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11334','2005-08-02 16:53:20.000','1504','560','2005-08-11 20:47:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11335','2005-08-02 16:57:37.000','2968','157','2005-08-09 19:43:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11336','2005-08-02 16:58:56.000','1949','473','2005-08-06 16:56:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11337','2005-08-02 16:59:09.000','3428','366','2005-08-10 20:41:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11338','2005-08-02 17:00:12.000','3689','26','2005-08-03 18:54:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11339','2005-08-02 17:02:06.000','705','263','2005-08-08 21:12:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11340','2005-08-02 17:05:43.000','1403','366','2005-08-09 13:25:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11341','2005-08-02 17:09:24.000','3586','15','2005-08-09 19:48:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11342','2005-08-02 17:11:35.000','4251','179','2005-08-07 15:04:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11343','2005-08-02 17:12:30.000','564','466','2005-08-09 12:08:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11344','2005-08-02 17:13:26.000','365','38','2005-08-07 16:44:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11345','2005-08-02 17:14:19.000','1895','405','2005-08-11 14:02:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11346','2005-08-02 17:15:38.000','584','100','2005-08-04 13:31:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11347','2005-08-02 17:18:07.000','195','217','2005-08-05 12:30:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11348','2005-08-02 17:18:38.000','1704','389','2005-08-06 16:11:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11349','2005-08-02 17:21:49.000','1871','73','2005-08-06 18:40:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11350','2005-08-02 17:22:59.000','1265','598','2005-08-09 19:56:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11351','2005-08-02 17:28:07.000','242','198','2005-08-09 21:55:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11352','2005-08-02 17:29:39.000','2760','546','2005-08-10 15:31:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11353','2005-08-02 17:34:45.000','1729','444','2005-08-09 16:01:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11354','2005-08-02 17:35:10.000','1887','569','2005-08-09 12:07:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11355','2005-08-02 17:37:43.000','2673','185','2005-08-05 19:59:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11356','2005-08-02 17:42:40.000','303','200','2005-08-11 23:29:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11357','2005-08-02 17:42:49.000','2644','148','2005-08-11 18:14:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11358','2005-08-02 17:45:02.000','2361','56','2005-08-11 18:16:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11359','2005-08-02 17:45:55.000','1648','466','2005-08-10 20:53:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11360','2005-08-02 17:46:04.000','1750','66','2005-08-04 21:02:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11361','2005-08-02 17:46:34.000','1124','547','2005-08-03 15:21:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11362','2005-08-02 17:47:25.000','2628','331','2005-08-07 20:14:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11363','2005-08-02 17:48:39.000','3190','274','2005-08-05 17:20:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11364','2005-08-02 17:53:36.000','4515','44','2005-08-03 14:16:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11365','2005-08-02 18:00:09.000','1151','508','2005-08-04 13:40:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11366','2005-08-02 18:01:25.000','3583','280','2005-08-11 15:02:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11367','2005-08-02 18:01:38.000','1440','1','2005-08-04 13:19:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11368','2005-08-02 18:03:05.000','866','153','2005-08-07 20:40:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11369','2005-08-02 18:04:41.000','2480','480','2005-08-09 18:41:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11370','2005-08-02 18:06:01.000','3077','146','2005-08-04 15:10:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11371','2005-08-02 18:07:36.000','324','561','2005-08-06 17:52:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11372','2005-08-02 18:10:50.000','796','327','2005-08-07 17:58:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11373','2005-08-02 18:14:12.000','181','267','2005-08-06 23:37:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11374','2005-08-02 18:14:54.000','2805','424','2005-08-04 18:22:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11375','2005-08-02 18:14:56.000','1064','346','2005-08-08 23:29:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11376','2005-08-02 18:16:00.000','2530','177','2005-08-11 23:38:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11377','2005-08-02 18:16:47.000','3334','119','2005-08-08 13:46:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11378','2005-08-02 18:16:52.000','3824','188','2005-08-03 14:25:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11379','2005-08-02 18:16:55.000','251','61','2005-08-07 18:12:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11380','2005-08-02 18:17:32.000','1046','551','2005-08-03 19:26:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11381','2005-08-02 18:19:29.000','993','451','2005-08-08 20:39:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11382','2005-08-02 18:20:52.000','3848','407','2005-08-07 17:06:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11383','2005-08-02 18:22:05.000','257','445','2005-08-11 17:18:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11384','2005-08-02 18:23:01.000','2840','225','2005-08-05 17:59:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11385','2005-08-02 18:23:11.000','2478','192','2005-08-06 12:37:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11386','2005-08-02 18:24:03.000','519','183','2005-08-06 21:22:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11387','2005-08-02 18:32:38.000','2491','481','2005-08-07 19:08:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11388','2005-08-02 18:35:55.000','477','369','2005-08-09 21:56:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11389','2005-08-02 18:39:12.000','3267','270','2005-08-03 23:23:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11390','2005-08-02 18:39:16.000','3135','294','2005-08-04 21:43:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11391','2005-08-02 18:40:12.000','2039','403','2005-08-10 15:55:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11392','2005-08-02 18:41:11.000','261','146','2005-08-11 21:41:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11393','2005-08-02 18:44:29.000','1033','501','2005-08-11 23:58:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11394','2005-08-02 18:44:45.000','2087','257','2005-08-06 22:51:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11395','2005-08-02 18:47:44.000','4234','225','2005-08-10 17:07:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11396','2005-08-02 18:48:29.000','1155','59','2005-08-04 16:05:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11397','2005-08-02 18:53:14.000','2566','470','2005-08-09 18:09:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11398','2005-08-02 18:55:15.000','3952','6','2005-08-10 19:50:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11399','2005-08-02 18:56:28.000','2094','565','2005-08-11 23:19:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11400','2005-08-02 19:00:52.000','3150','9','2005-08-09 19:45:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11401','2005-08-02 19:05:06.000','1799','544','2005-08-09 22:34:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11402','2005-08-02 19:07:21.000','3291','561','2005-08-07 20:59:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11403','2005-08-02 19:10:21.000','4072','587','2005-08-04 00:44:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11404','2005-08-02 19:12:40.000','3285','60','2005-08-11 22:38:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11405','2005-08-02 19:13:39.000','418','10','2005-08-07 19:19:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11406','2005-08-02 19:16:10.000','2502','525','2005-08-04 20:51:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11407','2005-08-02 19:18:43.000','3437','513','2005-08-08 16:15:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11408','2005-08-02 19:25:13.000','1779','83','2005-08-06 17:12:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11409','2005-08-02 19:26:51.000','3691','418','2005-08-07 19:55:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11410','2005-08-02 19:29:01.000','692','592','2005-08-11 16:50:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11411','2005-08-02 19:29:47.000','1497','141','2005-08-09 16:27:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11412','2005-08-02 19:32:51.000','2271','141','2005-08-11 22:16:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11413','2005-08-02 19:35:19.000','1115','297','2005-08-05 21:33:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11414','2005-08-02 19:43:07.000','1772','353','2005-08-07 15:22:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11415','2005-08-02 19:43:38.000','2197','572','2005-08-10 15:13:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11416','2005-08-02 19:44:04.000','1848','58','2005-08-11 15:30:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11417','2005-08-02 19:44:46.000','3083','437','2005-08-11 21:43:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11418','2005-08-02 19:45:33.000','4490','91','2005-08-06 17:40:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11419','2005-08-02 19:46:38.000','514','444','2005-08-11 14:49:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11420','2005-08-02 19:47:56.000','3928','158','2005-08-05 21:48:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11421','2005-08-02 19:51:53.000','3361','473','2005-08-12 00:50:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11422','2005-08-02 19:52:08.000','342','72','2005-08-11 18:40:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11423','2005-08-02 19:57:13.000','3431','241','2005-08-06 00:54:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11424','2005-08-02 19:57:42.000','1030','84','2005-08-10 16:57:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11425','2005-08-02 19:58:48.000','989','419','2005-08-03 19:30:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11426','2005-08-02 20:00:09.000','130','572','2005-08-09 01:30:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11427','2005-08-02 20:02:39.000','3287','403','2005-08-04 22:26:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11428','2005-08-02 20:03:10.000','722','326','2005-08-04 01:55:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11429','2005-08-02 20:03:52.000','1098','348','2005-08-10 16:38:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11430','2005-08-02 20:04:36.000','2258','140','2005-08-08 19:43:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11431','2005-08-02 20:05:16.000','1409','271','2005-08-04 00:05:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11432','2005-08-02 20:10:01.000','959','540','2005-08-07 01:28:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11433','2005-08-02 20:13:10.000','1','518','2005-08-11 21:35:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11434','2005-08-02 20:13:14.000','3154','391','2005-08-05 15:01:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11435','2005-08-02 20:14:23.000','1625','502','2005-08-05 20:40:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11436','2005-08-02 20:16:06.000','3834','106','2005-08-05 20:40:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11437','2005-08-02 20:20:06.000','2679','225','2005-08-05 22:17:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11438','2005-08-02 20:21:08.000','1040','372','2005-08-10 22:12:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11439','2005-08-02 20:22:45.000','2897','18','2005-08-04 18:30:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11440','2005-08-02 20:24:02.000','2727','306','2005-08-07 16:42:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11441','2005-08-02 20:25:41.000','1027','389','2005-08-05 00:05:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11442','2005-08-02 20:26:19.000','2598','208','2005-08-07 00:33:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11443','2005-08-02 20:29:30.000','1291','581','2005-08-07 01:08:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11444','2005-08-02 20:32:55.000','1419','28','2005-08-08 23:21:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11445','2005-08-02 20:33:35.000','3340','108','2005-08-08 16:02:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11446','2005-08-02 20:33:37.000','748','342','2005-08-03 18:22:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11447','2005-08-02 20:36:25.000','3868','508','2005-08-07 18:52:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11448','2005-08-02 20:44:33.000','1185','496','2005-08-05 22:58:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11449','2005-08-02 20:44:43.000','3279','443','2005-08-07 23:47:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11450','2005-08-02 20:45:54.000','2009','214','2005-08-08 17:17:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11451','2005-08-02 20:45:56.000','776','515','2005-08-06 21:42:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11452','2005-08-02 20:59:52.000','1245','35','2005-08-12 01:16:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11453','2005-08-02 21:00:05.000','4578','84','2005-08-08 22:03:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11454','2005-08-02 21:04:39.000','2901','199','2005-08-05 19:03:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11455','2005-08-02 21:07:06.000','2000','498','2005-08-12 01:21:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11456','2005-08-02 21:14:04.000','3638','322','2005-08-07 19:49:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11457','2005-08-02 21:14:16.000','1642','379','2005-08-10 02:39:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11458','2005-08-02 21:24:02.000','3514','575','2005-08-04 01:32:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11459','2005-08-02 21:25:25.000','3730','392','2005-08-04 19:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11460','2005-08-02 21:28:03.000','4113','403','2005-08-08 18:24:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11461','2005-08-02 21:35:00.000','4343','65','2005-08-05 01:34:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11462','2005-08-02 21:36:46.000','167','268','2005-08-10 01:48:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11463','2005-08-02 21:37:36.000','1944','138','2005-08-08 03:11:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11464','2005-08-02 21:42:07.000','538','577','2005-08-03 21:44:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11465','2005-08-02 21:43:52.000','2190','447','2005-08-10 22:24:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11466','2005-08-02 21:46:46.000','3363','556','2005-08-06 01:42:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11467','2005-08-02 21:47:07.000','246','117','2005-08-09 00:50:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11468','2005-08-02 21:47:26.000','3168','413','2005-08-05 02:30:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11469','2005-08-02 21:48:09.000','230','77','2005-08-06 18:37:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11470','2005-08-02 21:48:28.000','2379','346','2005-08-05 23:58:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11471','2005-08-02 21:49:03.000','3378','355','2005-08-08 00:17:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11472','2005-08-02 21:49:06.000','1829','410','2005-08-11 20:17:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11473','2005-08-02 21:52:03.000','620','536','2005-08-09 02:01:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11474','2005-08-02 21:53:08.000','574','214','2005-08-05 22:36:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11475','2005-08-02 21:55:09.000','3687','194','2005-08-09 20:28:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11476','2005-08-02 22:03:47.000','724','144','2005-08-09 02:19:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11477','2005-08-02 22:09:01.000','1671','47','2005-08-07 03:46:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11478','2005-08-02 22:09:05.000','3932','197','2005-08-04 18:02:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11479','2005-08-02 22:18:13.000','4077','237','2005-08-12 00:43:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11480','2005-08-02 22:18:24.000','4161','14','2005-08-04 21:22:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11481','2005-08-02 22:18:41.000','4028','234','2005-08-09 23:43:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11482','2005-08-02 22:24:31.000','1400','134','2005-08-04 01:48:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11483','2005-08-02 22:28:22.000','1586','45','2005-08-11 18:06:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11484','2005-08-02 22:28:23.000','330','165','2005-08-04 20:51:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11485','2005-08-02 22:33:25.000','1872','326','2005-08-04 23:26:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11486','2005-08-02 22:34:06.000','1610','236','2005-08-09 00:46:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11487','2005-08-02 22:35:05.000','734','239','2005-08-08 00:54:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11488','2005-08-02 22:35:15.000','2520','45','2005-08-09 00:28:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11489','2005-08-02 22:35:28.000','3001','474','2005-08-04 00:29:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11490','2005-08-02 22:36:00.000','1178','156','2005-08-09 16:36:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11491','2005-08-02 22:44:50.000','268','307','2005-08-11 01:55:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11492','2005-08-02 22:46:47.000','4037','349','2005-08-09 19:54:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11493','2005-08-02 22:47:00.000','3375','124','2005-08-10 20:53:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11494','2005-08-02 22:51:23.000','3994','579','2005-08-09 01:52:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11495','2005-08-16 22:51:20.000','1265','247','2005-08-23 00:44:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11496','2006-02-14 15:16:03.000','2047','155',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11497','2005-08-16 22:52:30.000','436','12','2005-08-21 19:52:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11498','2005-08-16 22:52:54.000','487','482','2005-08-25 03:27:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11499','2005-08-16 22:54:12.000','3857','172','2005-08-24 03:37:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11500','2005-08-16 23:01:22.000','4003','584','2005-08-24 22:54:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11501','2005-08-16 23:04:53.000','2147','23','2005-08-19 20:57:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11502','2005-08-16 23:06:30.000','4470','11','2005-08-19 03:49:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11503','2005-08-16 23:10:34.000','1496','526','2005-08-25 03:55:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11504','2005-08-16 23:16:46.000','2132','350','2005-08-18 20:49:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11505','2005-08-16 23:18:47.000','3344','34','2005-08-23 19:52:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11506','2005-08-16 23:25:48.000','1529','565','2005-08-22 18:17:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11507','2005-08-16 23:26:43.000','4197','236','2005-08-24 22:48:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11508','2005-08-16 23:27:36.000','2688','19','2005-08-25 01:34:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11509','2005-08-16 23:29:53.000','2750','273','2005-08-19 02:09:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11510','2005-08-16 23:30:07.000','2997','400','2005-08-25 17:35:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11511','2005-08-16 23:39:59.000','2127','397','2005-08-18 18:04:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11512','2005-08-16 23:51:06.000','1248','373','2005-08-26 02:06:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11513','2005-08-16 23:51:33.000','4473','499','2005-08-24 01:37:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11514','2005-08-16 23:53:10.000','4240','423','2005-08-23 22:04:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11515','2005-08-16 23:54:34.000','1053','279','2005-08-21 19:00:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11516','2005-08-16 23:54:47.000','1860','90','2005-08-17 20:05:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11517','2005-08-16 23:56:28.000','4266','280','2005-08-21 22:40:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11518','2005-08-16 23:59:49.000','3297','407','2005-08-17 22:51:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11519','2005-08-17 00:01:27.000','1034','381','2005-08-19 04:54:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11520','2005-08-17 00:04:28.000','3536','119','2005-08-26 02:03:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11521','2005-08-17 00:04:54.000','463','229','2005-08-21 00:57:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11522','2005-08-17 00:05:05.000','2033','599','2005-08-24 04:56:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11523','2005-08-17 00:10:10.000','1329','421','2005-08-24 22:39:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11524','2005-08-17 00:10:55.000','317','533','2005-08-23 05:30:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11525','2005-08-17 00:15:31.000','1107','174','2005-08-20 21:14:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11526','2005-08-17 00:17:38.000','2419','572','2005-08-18 03:59:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11527','2005-08-17 00:25:06.000','162','264','2005-08-22 21:13:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11528','2005-08-17 00:27:23.000','893','14','2005-08-22 06:12:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11529','2005-08-17 00:28:01.000','3071','4','2005-08-19 04:47:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11530','2005-08-17 00:29:00.000','365','400','2005-08-22 03:22:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11531','2005-08-17 00:30:04.000','1817','278','2005-08-20 01:12:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11532','2005-08-17 00:34:14.000','1947','413','2005-08-22 19:37:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11533','2005-08-17 00:34:53.000','4252','264','2005-08-22 06:10:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11534','2005-08-17 00:35:27.000','2414','144','2005-08-24 01:36:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11535','2005-08-17 00:39:54.000','1649','356','2005-08-24 20:46:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11536','2005-08-17 00:40:03.000','2735','428','2005-08-21 19:11:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11537','2005-08-17 00:41:08.000','190','474','2005-08-19 00:25:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11538','2005-08-17 00:44:04.000','554','431','2005-08-18 03:43:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11539','2005-08-17 00:45:41.000','2064','264','2005-08-19 06:03:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11540','2005-08-17 00:48:03.000','3385','370','2005-08-25 03:46:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11541','2006-02-14 15:16:03.000','2026','335',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11542','2005-08-17 00:51:32.000','2155','7','2005-08-24 20:29:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11543','2005-08-17 00:54:28.000','2860','238','2005-08-25 04:31:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11544','2005-08-17 00:55:07.000','836','439','2005-08-22 19:25:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11545','2005-08-17 00:56:06.000','3198','257','2005-08-25 22:47:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11546','2005-08-17 00:57:36.000','2522','24','2005-08-18 23:16:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11547','2005-08-17 00:59:24.000','737','114','2005-08-20 04:03:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11548','2005-08-17 00:59:47.000','480','323','2005-08-22 05:09:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11549','2005-08-17 01:01:48.000','945','402','2005-08-19 21:24:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11550','2005-08-17 01:02:06.000','2972','339','2005-08-22 21:44:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11551','2005-08-17 01:03:49.000','3356','168','2005-08-18 22:31:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11552','2005-08-17 01:04:29.000','1143','230','2005-08-23 23:07:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11553','2005-08-17 01:04:31.000','3317','360','2005-08-24 00:44:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11554','2005-08-17 01:05:17.000','2212','460','2005-08-20 06:20:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11555','2005-08-17 01:08:59.000','2569','372','2005-08-18 06:09:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11556','2005-08-17 01:11:53.000','373','9','2005-08-18 23:41:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11557','2005-08-17 01:19:20.000','2376','416','2005-08-24 02:25:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11558','2005-08-17 01:19:52.000','1681','403','2005-08-19 00:47:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11559','2005-08-17 01:20:26.000','1812','385','2005-08-24 03:11:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11560','2005-08-17 01:20:30.000','2316','320','2005-08-18 04:29:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11561','2005-08-17 01:23:09.000','189','149','2005-08-23 21:02:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11562','2005-08-17 01:23:39.000','2992','424','2005-08-26 06:16:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11563','2006-02-14 15:16:03.000','1545','83',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11564','2005-08-17 01:27:49.000','2237','332','2005-08-19 22:07:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11565','2005-08-17 01:28:05.000','173','83','2005-08-23 23:33:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11566','2005-08-17 01:28:35.000','4020','520','2005-08-20 22:42:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11567','2005-08-17 01:28:43.000','567','558','2005-08-24 20:20:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11568','2005-08-17 01:30:01.000','183','342','2005-08-18 22:21:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11569','2005-08-17 01:31:04.000','2592','504','2005-08-24 03:36:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11570','2005-08-17 01:34:32.000','2466','343','2005-08-24 05:47:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11571','2005-08-17 01:37:51.000','203','296','2005-08-17 20:30:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11572','2005-08-17 01:37:55.000','3512','515','2005-08-19 06:22:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11573','2005-08-17 01:38:18.000','639','146','2005-08-19 05:06:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11574','2005-08-17 01:38:19.000','3596','277','2005-08-18 20:30:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11575','2005-08-17 01:50:26.000','1725','319','2005-08-18 00:43:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11576','2005-08-17 01:53:20.000','327','293','2005-08-19 00:15:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11577','2006-02-14 15:16:03.000','4106','219',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11578','2005-08-17 01:54:13.000','192','590','2005-08-26 02:00:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11579','2005-08-17 01:57:49.000','4256','356','2005-08-22 02:42:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11580','2005-08-17 01:59:07.000','1346','436','2005-08-21 06:18:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11581','2005-08-17 02:03:02.000','1249','231','2005-08-24 03:53:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11582','2005-08-17 02:03:49.000','2115','339','2005-08-24 03:29:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11583','2005-08-17 02:08:13.000','133','542','2005-08-20 23:13:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11584','2005-08-17 02:13:26.000','3906','479','2005-08-22 01:24:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11585','2005-08-17 02:14:36.000','753','297','2005-08-20 07:37:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11586','2005-08-17 02:20:42.000','3140','465','2005-08-26 05:01:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11587','2005-08-17 02:21:03.000','1319','156','2005-08-25 21:02:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11588','2005-08-17 02:26:23.000','2480','565','2005-08-22 02:32:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11589','2005-08-17 02:28:22.000','3480','554','2005-08-25 00:08:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11590','2005-08-17 02:28:33.000','3600','491','2005-08-20 03:13:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11591','2005-08-17 02:29:41.000','1670','6','2005-08-23 20:47:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11592','2005-08-17 02:36:04.000','720','383','2005-08-19 00:31:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11593','2006-02-14 15:16:03.000','817','99',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11594','2005-08-17 02:47:02.000','319','198','2005-08-22 05:14:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11595','2005-08-17 02:53:14.000','466','350','2005-08-26 02:05:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11596','2005-08-17 02:53:55.000','1674','290','2005-08-26 02:19:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11597','2005-08-17 03:02:56.000','4073','272','2005-08-26 04:47:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11598','2005-08-17 03:03:07.000','1949','319','2005-08-22 21:05:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11599','2005-08-17 03:08:10.000','3749','112','2005-08-25 05:01:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11600','2005-08-17 03:12:04.000','1978','400','2005-08-23 07:10:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11601','2005-08-17 03:14:47.000','1098','471','2005-08-20 00:21:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11602','2005-08-17 03:21:19.000','2082','391','2005-08-19 05:23:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11603','2005-08-17 03:22:10.000','3910','406','2005-08-18 06:48:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11604','2005-08-17 03:28:27.000','1820','388','2005-08-19 05:38:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11605','2005-08-17 03:30:57.000','1292','455','2005-08-24 07:02:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11606','2005-08-17 03:32:43.000','4138','499','2005-08-18 04:30:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11607','2005-08-17 03:36:06.000','4345','242','2005-08-20 01:06:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11608','2005-08-17 03:36:52.000','1673','448','2005-08-25 07:17:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11609','2005-08-17 03:41:11.000','351','73','2005-08-25 01:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11610','2005-08-17 03:43:37.000','3048','275','2005-08-20 22:14:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11611','2006-02-14 15:16:03.000','1857','192',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11612','2005-08-17 03:48:51.000','375','526','2005-08-20 03:03:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11613','2005-08-17 03:50:33.000','2486','126','2005-08-25 00:37:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11614','2005-08-17 03:52:18.000','805','2','2005-08-20 07:04:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11615','2005-08-17 03:54:35.000','4331','436','2005-08-23 06:54:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11616','2005-08-17 04:00:01.000','2588','36','2005-08-20 23:03:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11617','2005-08-17 04:00:40.000','1898','324','2005-08-18 00:36:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11618','2005-08-17 04:01:36.000','954','175','2005-08-23 01:02:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11619','2005-08-17 04:03:26.000','3652','374','2005-08-22 03:07:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11620','2005-08-17 04:06:22.000','3801','502','2005-08-17 23:53:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11621','2005-08-17 04:13:45.000','3708','216','2005-08-26 01:00:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11622','2005-08-17 04:15:46.000','499','220','2005-08-24 04:48:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11623','2005-08-17 04:15:47.000','759','163','2005-08-19 04:11:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11624','2005-08-17 04:17:42.000','606','527','2005-08-18 02:46:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11625','2005-08-17 04:18:52.000','712','521','2005-08-25 03:05:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11626','2005-08-17 04:25:42.000','4279','266','2005-08-23 05:46:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11627','2005-08-17 04:25:47.000','3945','168','2005-08-26 02:54:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11628','2005-08-17 04:27:18.000','3656','256','2005-08-25 01:12:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11629','2005-08-17 04:27:24.000','786','299','2005-08-26 10:25:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11630','2005-08-17 04:27:46.000','688','72','2005-08-19 09:58:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11631','2005-08-17 04:28:56.000','59','168','2005-08-24 00:42:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11632','2005-08-17 04:29:32.000','2551','238','2005-08-22 03:44:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11633','2005-08-17 04:30:09.000','1706','468','2005-08-20 06:56:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11634','2005-08-17 04:31:49.000','2576','206','2005-08-21 02:51:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11635','2005-08-17 04:33:17.000','2642','98','2005-08-21 07:50:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11636','2005-08-17 04:36:31.000','791','276','2005-08-24 00:03:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11637','2005-08-17 04:36:39.000','479','283','2005-08-18 02:17:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11638','2005-08-17 04:39:09.000','3421','152','2005-08-25 06:42:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11639','2005-08-17 04:43:29.000','3985','462','2005-08-25 01:04:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11640','2005-08-17 04:44:33.000','1718','501','2005-08-21 09:29:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11641','2005-08-17 04:45:39.000','2717','79','2005-08-20 10:38:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11642','2005-08-17 04:48:05.000','3790','25','2005-08-18 01:53:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11643','2005-08-17 04:49:35.000','1378','197','2005-08-24 07:05:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11644','2005-08-17 04:49:46.000','1760','438','2005-08-24 08:49:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11645','2005-08-17 04:50:56.000','4261','35','2005-08-25 23:03:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11646','2006-02-14 15:16:03.000','478','11',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11647','2005-08-17 04:54:14.000','3016','110','2005-08-23 04:16:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11648','2005-08-17 04:56:16.000','3362','465','2005-08-26 00:53:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11649','2005-08-17 04:59:26.000','3222','217','2005-08-20 04:02:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11650','2005-08-17 05:00:03.000','3979','418','2005-08-22 01:45:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11651','2005-08-17 05:02:25.000','3681','143','2005-08-24 08:15:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11652','2006-02-14 15:16:03.000','1622','597',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11653','2005-08-17 05:06:10.000','4475','358','2005-08-24 03:09:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11654','2005-08-17 05:06:19.000','1048','218','2005-08-18 04:32:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11655','2005-08-17 05:11:07.000','1699','113','2005-08-26 10:18:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11656','2005-08-17 05:11:09.000','1451','56','2005-08-25 07:51:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11657','2006-02-14 15:16:03.000','3043','53',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11658','2005-08-17 05:19:17.000','2008','422','2005-08-24 07:03:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11659','2005-08-17 05:20:45.000','2881','112','2005-08-22 10:18:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11660','2005-08-17 05:22:42.000','4081','525','2005-08-23 01:03:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11661','2005-08-17 05:25:57.000','1008','27','2005-08-25 04:37:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11662','2005-08-17 05:27:37.000','2730','177','2005-08-26 09:56:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11663','2005-08-17 05:30:19.000','3798','373','2005-08-25 08:14:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11664','2005-08-17 05:35:52.000','1343','433','2005-08-18 02:40:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11665','2005-08-17 05:36:57.000','334','254','2005-08-23 01:38:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11666','2005-08-17 05:45:10.000','250','531','2005-08-19 06:47:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11667','2005-08-17 05:46:55.000','1516','582','2005-08-26 08:19:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11668','2005-08-17 05:47:32.000','2162','249','2005-08-20 03:11:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11669','2005-08-17 05:48:51.000','3224','487','2005-08-22 01:22:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11670','2005-08-17 05:48:59.000','4437','286','2005-08-19 08:51:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11671','2005-08-17 05:50:21.000','3569','338','2005-08-20 03:43:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11672','2006-02-14 15:16:03.000','3947','521',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11673','2005-08-17 05:54:15.000','823','303','2005-08-21 08:12:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11674','2005-08-17 05:56:27.000','582','306','2005-08-24 08:50:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11675','2005-08-17 05:57:54.000','1322','514','2005-08-21 23:57:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11676','2006-02-14 15:16:03.000','4496','216',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11677','2005-08-17 06:06:26.000','2206','407','2005-08-20 04:35:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11678','2005-08-17 06:07:39.000','3511','176','2005-08-21 10:51:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11679','2005-08-17 06:08:54.000','3337','72','2005-08-21 07:50:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11680','2005-08-17 06:12:27.000','4538','221','2005-08-23 08:54:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11681','2005-08-17 06:13:30.000','1260','543','2005-08-26 01:29:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11682','2005-08-17 06:13:40.000','2544','387','2005-08-18 06:11:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11683','2005-08-17 06:15:17.000','2603','66','2005-08-26 05:33:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11684','2005-08-17 06:27:15.000','4277','517','2005-08-22 02:11:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11685','2005-08-17 06:39:16.000','3552','51','2005-08-22 04:20:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11686','2005-08-17 06:39:30.000','1393','392','2005-08-21 10:19:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11687','2005-08-17 06:39:59.000','1977','169','2005-08-23 04:53:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11688','2005-08-17 06:41:58.000','2229','82','2005-08-25 04:38:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11689','2005-08-17 06:42:08.000','2390','419','2005-08-26 06:09:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11690','2005-08-17 06:44:22.000','3934','267','2005-08-24 03:49:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11691','2005-08-17 06:51:05.000','2529','515','2005-08-24 09:53:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11692','2005-08-17 06:52:41.000','1222','350','2005-08-24 12:17:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11693','2005-08-17 06:56:56.000','793','221','2005-08-24 06:20:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11694','2005-08-17 06:57:30.000','3540','410','2005-08-24 07:52:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11695','2005-08-17 07:01:08.000','1110','386','2005-08-21 09:21:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11696','2005-08-17 07:01:09.000','3816','522','2005-08-21 09:12:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11697','2005-08-17 07:09:19.000','383','329','2005-08-19 02:02:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11698','2005-08-17 07:09:59.000','3946','353','2005-08-19 04:31:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11699','2005-08-17 07:11:58.000','3997','339','2005-08-26 12:08:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11700','2005-08-17 07:12:31.000','2365','104','2005-08-18 04:21:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11701','2005-08-17 07:15:47.000','993','34','2005-08-19 01:44:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11702','2005-08-17 07:18:56.000','3286','526','2005-08-24 06:33:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11703','2005-08-17 07:19:29.000','1692','279','2005-08-20 09:35:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11704','2005-08-17 07:21:22.000','1099','135','2005-08-25 06:06:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11705','2005-08-17 07:22:25.000','4242','489','2005-08-18 06:42:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11706','2005-08-17 07:23:46.000','4234','414','2005-08-18 10:13:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11707','2005-08-17 07:24:59.000','1030','581','2005-08-24 10:40:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11708','2005-08-17 07:26:47.000','76','582','2005-08-22 04:11:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11709','2006-02-14 15:16:03.000','1720','330',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11710','2005-08-17 07:29:44.000','613','553','2005-08-19 02:06:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11711','2005-08-17 07:30:55.000','1503','470','2005-08-18 09:21:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11712','2005-08-17 07:32:51.000','3607','203','2005-08-21 09:18:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11713','2005-08-17 07:34:05.000','1919','590','2005-08-25 07:49:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11714','2005-08-17 07:34:55.000','17','151','2005-08-18 04:07:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11715','2005-08-17 07:40:55.000','1615','452','2005-08-25 11:19:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11716','2005-08-17 07:40:55.000','3054','287','2005-08-21 05:56:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11717','2005-08-17 07:44:09.000','1371','566','2005-08-20 09:39:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11718','2005-08-17 07:44:42.000','3673','555','2005-08-23 03:02:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11719','2005-08-17 07:46:05.000','2054','338','2005-08-23 08:52:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11720','2005-08-17 07:46:54.000','1707','121','2005-08-26 04:19:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11721','2005-08-17 07:49:17.000','1923','46','2005-08-18 04:08:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11722','2005-08-17 07:53:03.000','2430','321','2005-08-22 06:56:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11723','2005-08-17 07:56:22.000','1665','341','2005-08-22 03:49:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11724','2005-08-17 08:04:44.000','4484','207','2005-08-25 03:25:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11725','2005-08-17 08:09:00.000','519','45','2005-08-18 09:50:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11726','2005-08-17 08:11:10.000','4438','266','2005-08-22 05:45:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11727','2005-08-17 08:12:20.000','98','6','2005-08-19 12:45:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11728','2005-08-17 08:12:26.000','726','444','2005-08-18 03:26:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11729','2005-08-17 08:14:41.000','2819','215','2005-08-22 02:54:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11730','2005-08-17 08:22:00.000','3817','98','2005-08-22 05:43:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11731','2005-08-17 08:24:35.000','917','52','2005-08-24 02:54:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11732','2005-08-17 08:29:46.000','460','137','2005-08-23 14:21:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11733','2005-08-17 08:31:03.000','439','251','2005-08-21 05:44:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11734','2005-08-17 08:34:22.000','4063','337','2005-08-25 11:56:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11735','2005-08-17 08:35:42.000','2555','452','2005-08-26 11:04:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11736','2005-08-17 08:40:55.000','4217','535','2005-08-26 09:03:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11737','2005-08-17 08:42:08.000','4128','549','2005-08-19 08:14:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11738','2005-08-17 08:45:55.000','3042','347','2005-08-26 07:09:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11739','2006-02-14 15:16:03.000','4568','373',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11740','2005-08-17 08:48:31.000','2441','27','2005-08-24 07:47:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11741','2005-08-17 08:48:39.000','1819','473','2005-08-20 07:37:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11742','2005-08-17 08:48:43.000','596','470','2005-08-23 07:18:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11743','2005-08-17 08:49:05.000','294','336','2005-08-22 08:53:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11744','2005-08-17 08:54:30.000','297','26','2005-08-25 03:28:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11745','2005-08-17 09:00:01.000','4018','240','2005-08-26 14:29:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11746','2005-08-17 09:03:24.000','4571','299','2005-08-25 06:08:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11747','2005-08-17 09:03:31.000','1041','555','2005-08-19 08:23:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11748','2005-08-17 09:04:02.000','1175','595','2005-08-21 12:22:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11749','2005-08-17 09:04:03.000','4141','567','2005-08-19 09:32:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11750','2005-08-17 09:07:00.000','665','190','2005-08-23 08:16:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11751','2005-08-17 09:07:56.000','3309','51','2005-08-26 13:16:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11752','2005-08-17 09:10:55.000','1833','481','2005-08-18 06:22:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11753','2005-08-17 09:11:52.000','2599','43','2005-08-25 05:03:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11754','2006-02-14 15:16:03.000','3747','163',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11755','2005-08-17 09:15:35.000','3457','513','2005-08-23 06:28:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11756','2005-08-17 09:29:22.000','1798','198','2005-08-21 12:17:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11757','2006-02-14 15:16:03.000','1295','550',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11758','2005-08-17 09:33:02.000','11','533','2005-08-24 05:03:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11759','2005-08-17 09:41:23.000','2655','108','2005-08-19 11:58:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11760','2005-08-17 09:44:22.000','626','545','2005-08-24 14:39:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11761','2005-08-17 09:44:59.000','2230','13','2005-08-25 07:46:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11762','2005-08-17 09:48:06.000','1204','244','2005-08-26 13:12:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11763','2005-08-17 09:51:39.000','872','586','2005-08-21 10:15:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11764','2005-08-17 09:51:54.000','4502','252','2005-08-20 07:11:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11765','2005-08-17 09:55:28.000','4311','308','2005-08-19 15:53:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11766','2005-08-17 09:58:40.000','2999','544','2005-08-21 04:59:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11767','2005-08-17 10:00:40.000','2374','77','2005-08-25 04:14:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11768','2005-08-17 10:02:29.000','1307','564','2005-08-23 10:26:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11769','2005-08-17 10:04:49.000','1406','418','2005-08-20 09:22:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11770','2005-08-17 10:05:05.000','2862','475','2005-08-20 15:59:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11771','2005-08-17 10:17:09.000','2575','324','2005-08-25 10:58:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11772','2005-08-17 10:18:57.000','1021','237','2005-08-26 12:48:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11773','2005-08-17 10:19:51.000','1886','384','2005-08-23 04:30:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11774','2005-08-17 10:20:39.000','1679','488','2005-08-23 13:37:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11775','2005-08-17 10:25:53.000','256','574','2005-08-22 08:37:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11776','2005-08-17 10:27:19.000','2400','306','2005-08-20 14:02:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11777','2005-08-17 10:27:19.000','4065','83','2005-08-26 13:10:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11778','2005-08-17 10:31:40.000','1306','213','2005-08-25 13:53:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11779','2005-08-17 10:31:58.000','181','126','2005-08-24 15:28:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11780','2005-08-17 10:34:24.000','2268','297','2005-08-21 04:55:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11781','2005-08-17 10:37:00.000','1853','506','2005-08-21 12:03:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11782','2006-02-14 15:16:03.000','4098','354',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11783','2005-08-17 10:39:24.000','979','152','2005-08-21 12:43:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11784','2005-08-17 10:48:05.000','3101','297','2005-08-19 06:47:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11785','2005-08-17 10:54:46.000','2760','182','2005-08-23 14:15:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11786','2005-08-17 10:57:40.000','1487','435','2005-08-24 06:48:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11787','2005-08-17 10:59:00.000','1980','195','2005-08-19 05:56:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11788','2005-08-17 10:59:18.000','1310','560','2005-08-22 11:12:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11789','2005-08-17 10:59:24.000','851','150','2005-08-26 16:17:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11790','2005-08-17 11:00:08.000','2384','451','2005-08-20 05:15:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11791','2005-08-17 11:01:11.000','3640','219','2005-08-22 06:31:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11792','2005-08-17 11:03:53.000','3703','376','2005-08-26 06:34:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11793','2005-08-17 11:05:53.000','1955','352','2005-08-25 12:25:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11794','2005-08-17 11:08:48.000','3486','453','2005-08-20 13:36:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11795','2005-08-17 11:13:38.000','2220','565','2005-08-19 14:20:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11796','2005-08-17 11:16:47.000','3983','435','2005-08-18 16:55:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11797','2005-08-17 11:17:21.000','1142','546','2005-08-18 09:14:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11798','2005-08-17 11:21:43.000','3974','448','2005-08-25 07:43:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11799','2005-08-17 11:25:25.000','40','501','2005-08-25 13:03:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11800','2005-08-17 11:29:52.000','2284','350','2005-08-21 08:37:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11801','2005-08-17 11:30:11.000','659','126','2005-08-23 09:54:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11802','2005-08-17 11:32:51.000','2815','221','2005-08-22 10:56:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11803','2005-08-17 11:42:08.000','3648','160','2005-08-22 07:45:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11804','2005-08-17 11:42:45.000','1040','556','2005-08-25 07:11:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11805','2005-08-17 11:48:47.000','1208','208','2005-08-26 11:06:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11806','2005-08-17 11:49:28.000','3203','125','2005-08-22 15:42:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11807','2005-08-17 11:51:15.000','4052','201','2005-08-21 11:47:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11808','2005-08-17 11:51:16.000','4042','462','2005-08-18 14:01:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11809','2005-08-17 11:51:39.000','1136','305','2005-08-24 17:14:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11810','2005-08-17 11:56:48.000','1548','270','2005-08-20 17:39:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11811','2005-08-17 11:59:18.000','195','130','2005-08-18 09:13:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11812','2005-08-17 12:00:54.000','119','132','2005-08-18 16:08:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11813','2005-08-17 12:06:54.000','1074','36','2005-08-21 17:52:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11814','2005-08-17 12:09:20.000','3462','509','2005-08-25 16:56:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11815','2005-08-17 12:13:26.000','272','192','2005-08-22 17:15:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11816','2005-08-17 12:14:16.000','3897','224','2005-08-19 06:15:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11817','2005-08-17 12:20:01.000','2297','38','2005-08-19 18:06:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11818','2005-08-17 12:22:04.000','213','512','2005-08-25 15:59:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11819','2005-08-17 12:25:17.000','656','208','2005-08-19 16:12:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11820','2005-08-17 12:25:33.000','2801','401','2005-08-19 07:04:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11821','2005-08-17 12:27:55.000','2711','20','2005-08-18 07:07:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11822','2005-08-17 12:32:39.000','1317','263','2005-08-18 12:30:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11823','2005-08-17 12:36:37.000','2626','352','2005-08-22 11:10:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11824','2005-08-17 12:37:54.000','2639','1','2005-08-19 10:11:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11825','2005-08-17 12:43:30.000','2656','296','2005-08-20 15:25:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11826','2005-08-17 12:43:46.000','1837','536','2005-08-19 16:59:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11827','2005-08-17 12:44:27.000','3064','523','2005-08-24 13:31:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11828','2005-08-17 12:48:28.000','2593','268','2005-08-24 09:24:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11829','2005-08-17 12:52:04.000','2207','563','2005-08-19 10:50:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11830','2005-08-17 12:53:15.000','3713','522','2005-08-25 08:08:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11831','2005-08-17 12:54:47.000','4562','32','2005-08-21 11:21:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11832','2005-08-17 12:55:31.000','2331','125','2005-08-19 08:31:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11833','2005-08-17 13:00:33.000','3728','424','2005-08-18 13:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11834','2005-08-17 13:00:40.000','2407','261','2005-08-22 12:50:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11835','2005-08-17 13:03:13.000','2796','479','2005-08-19 10:50:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11836','2005-08-17 13:03:36.000','2253','198','2005-08-19 17:15:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11837','2005-08-17 13:04:41.000','1085','81','2005-08-26 14:19:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11838','2005-08-17 13:06:00.000','3576','161','2005-08-20 11:44:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11839','2005-08-17 13:08:45.000','2282','80','2005-08-18 15:05:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11840','2005-08-17 13:09:01.000','1824','491','2005-08-19 17:42:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11841','2005-08-17 13:12:20.000','1524','270','2005-08-21 11:16:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11842','2005-08-17 13:13:37.000','2680','422','2005-08-20 08:32:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11843','2005-08-17 13:14:50.000','3091','187','2005-08-22 11:31:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11844','2005-08-17 13:16:04.000','3791','368','2005-08-18 10:16:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11845','2005-08-17 13:16:38.000','14','65','2005-08-18 11:21:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11846','2005-08-17 13:18:29.000','3306','283','2005-08-22 18:05:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11847','2006-02-14 15:16:03.000','1784','337',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11848','2006-02-14 15:16:03.000','3680','152',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11849','2005-08-17 13:24:55.000','1191','92','2005-08-22 12:50:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11850','2005-08-17 13:30:15.000','1437','80','2005-08-21 17:24:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11851','2005-08-17 13:30:27.000','3225','376','2005-08-20 15:34:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11852','2005-08-17 13:38:27.000','2358','596','2005-08-24 08:50:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11853','2005-08-17 13:39:32.000','3888','6','2005-08-23 18:44:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11854','2005-08-17 13:42:52.000','137','313','2005-08-26 14:04:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11855','2005-08-17 13:43:07.000','1062','535','2005-08-26 08:07:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11856','2005-08-17 13:44:49.000','305','28','2005-08-21 17:20:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11857','2005-08-17 13:48:30.000','101','146','2005-08-18 15:55:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11858','2005-08-17 13:50:31.000','3483','503','2005-08-19 08:45:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11859','2005-08-17 13:51:20.000','423','144','2005-08-21 13:47:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11860','2005-08-17 13:52:26.000','4354','257','2005-08-24 14:47:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11861','2005-08-17 13:53:47.000','2674','232','2005-08-21 16:07:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11862','2005-08-17 13:54:53.000','2604','529','2005-08-19 10:48:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11863','2005-08-17 13:56:01.000','1003','112','2005-08-23 18:38:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11864','2005-08-17 14:02:01.000','2985','96','2005-08-21 19:54:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11865','2005-08-17 14:03:46.000','2577','345','2005-08-19 08:39:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11866','2006-02-14 15:16:03.000','2758','200',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11867','2005-08-17 14:04:28.000','938','434','2005-08-21 10:08:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11868','2005-08-17 14:05:34.000','2909','445','2005-08-19 15:47:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11869','2005-08-17 14:10:22.000','3453','19','2005-08-24 18:39:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11870','2005-08-17 14:11:28.000','4251','432','2005-08-24 16:43:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11871','2005-08-17 14:11:44.000','3013','484','2005-08-18 17:50:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11872','2005-08-17 14:11:45.000','4306','113','2005-08-21 17:02:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11873','2005-08-17 14:14:39.000','4021','554','2005-08-18 17:20:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11874','2005-08-17 14:16:40.000','2637','467','2005-08-18 15:51:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11875','2005-08-17 14:16:48.000','1787','294','2005-08-26 14:20:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11876','2005-08-17 14:18:21.000','3982','426','2005-08-20 19:48:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11877','2005-08-17 14:21:11.000','4528','445','2005-08-25 19:46:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11878','2005-08-17 14:23:52.000','255','549','2005-08-21 14:23:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11879','2005-08-17 14:25:09.000','2500','312','2005-08-26 09:19:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11880','2005-08-17 14:28:28.000','1539','597','2005-08-26 12:32:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11881','2005-08-17 14:31:56.000','3124','272','2005-08-21 11:05:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11882','2005-08-17 14:33:41.000','2401','234','2005-08-26 17:25:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11883','2005-08-17 14:41:28.000','221','551','2005-08-19 09:54:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11884','2005-08-17 14:43:23.000','797','178','2005-08-25 15:38:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11885','2005-08-17 14:53:53.000','3931','481','2005-08-22 10:59:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11886','2005-08-17 14:58:51.000','608','204','2005-08-19 16:07:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11887','2005-08-17 15:03:13.000','3290','54','2005-08-19 09:49:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11888','2005-08-17 15:04:05.000','1100','160','2005-08-25 18:52:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11889','2005-08-17 15:08:27.000','293','395','2005-08-18 17:10:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11890','2005-08-17 15:08:43.000','3023','487','2005-08-26 14:56:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11891','2005-08-17 15:11:55.000','2619','115','2005-08-22 11:11:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11892','2005-08-17 15:13:21.000','746','227','2005-08-21 09:19:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11893','2005-08-17 15:13:29.000','2321','496','2005-08-25 11:09:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11894','2005-08-17 15:15:01.000','1223','67','2005-08-26 13:49:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11895','2005-08-17 15:15:07.000','2156','236','2005-08-18 11:00:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11896','2005-08-17 15:19:54.000','259','436','2005-08-24 18:22:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11897','2005-08-17 15:24:06.000','3904','238','2005-08-23 11:50:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11898','2005-08-17 15:24:12.000','3163','169','2005-08-24 13:36:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11899','2005-08-17 15:29:12.000','3179','84','2005-08-24 17:41:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11900','2005-08-17 15:30:44.000','1931','239','2005-08-19 16:12:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11901','2005-08-17 15:35:47.000','4274','70','2005-08-20 10:33:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11902','2005-08-17 15:37:34.000','1387','63','2005-08-22 17:28:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11903','2005-08-17 15:37:45.000','1196','542','2005-08-23 18:31:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11904','2005-08-17 15:39:26.000','2846','145','2005-08-21 18:24:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11905','2005-08-17 15:40:18.000','2725','349','2005-08-26 15:14:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11906','2005-08-17 15:40:46.000','325','478','2005-08-20 15:20:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11907','2005-08-17 15:40:47.000','3928','505','2005-08-20 19:55:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11908','2005-08-17 15:43:09.000','3390','314','2005-08-24 14:32:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11909','2006-02-14 15:16:03.000','871','474',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11910','2005-08-17 15:44:37.000','4254','418','2005-08-19 10:58:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11911','2005-08-17 15:51:35.000','3578','472','2005-08-26 20:26:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11912','2005-08-17 15:51:49.000','744','573','2005-08-24 18:48:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11913','2005-08-17 15:53:17.000','741','295','2005-08-24 18:50:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11914','2005-08-17 16:04:42.000','1634','230','2005-08-22 19:29:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11915','2005-08-17 16:05:28.000','1557','269','2005-08-25 19:53:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11916','2005-08-17 16:05:51.000','2631','86','2005-08-20 10:23:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11917','2005-08-17 16:08:17.000','1608','270','2005-08-20 20:01:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11918','2005-08-17 16:08:42.000','2169','533','2005-08-20 20:12:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11919','2005-08-17 16:08:49.000','4497','40','2005-08-20 16:59:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11920','2005-08-17 16:10:19.000','4253','402','2005-08-20 13:54:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11921','2005-08-17 16:12:27.000','494','485','2005-08-25 22:07:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11922','2005-08-17 16:20:37.000','3707','15','2005-08-26 16:53:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11923','2005-08-17 16:21:47.000','1907','72','2005-08-18 14:26:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11924','2005-08-17 16:22:05.000','1711','202','2005-08-26 12:34:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11925','2005-08-17 16:23:04.000','1441','370','2005-08-21 11:38:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11926','2005-08-17 16:25:02.000','2111','516','2005-08-22 11:36:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11927','2005-08-17 16:25:03.000','3134','178','2005-08-23 16:41:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11928','2005-08-17 16:28:24.000','79','261','2005-08-23 17:50:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11929','2005-08-17 16:28:51.000','3765','327','2005-08-25 19:36:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11930','2005-08-17 16:28:53.000','1299','5','2005-08-25 10:31:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11931','2005-08-17 16:35:14.000','2022','242','2005-08-19 19:16:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11932','2005-08-17 16:36:12.000','151','364','2005-08-18 19:34:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11933','2005-08-17 16:38:20.000','2574','438','2005-08-22 14:31:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11934','2005-08-17 16:40:00.000','1230','596','2005-08-20 20:13:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11935','2005-08-17 16:42:13.000','1640','66','2005-08-22 20:38:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11936','2005-08-17 16:45:34.000','1127','380','2005-08-21 13:33:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11937','2005-08-17 16:48:36.000','2926','515','2005-08-24 19:01:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11938','2005-08-17 16:54:54.000','3927','426','2005-08-24 19:18:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11939','2005-08-17 16:55:57.000','3305','516','2005-08-24 21:36:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11940','2005-08-17 16:56:28.000','1188','163','2005-08-18 15:09:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11941','2005-08-17 16:56:57.000','159','566','2005-08-24 16:29:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11942','2006-02-14 15:16:03.000','4094','576',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11943','2005-08-17 17:00:42.000','4466','69','2005-08-26 22:07:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11944','2005-08-17 17:02:42.000','27','389','2005-08-21 16:40:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11945','2005-08-17 17:05:33.000','1108','380','2005-08-20 18:37:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11946','2005-08-17 17:05:53.000','2953','569','2005-08-19 13:56:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11947','2005-08-17 17:08:13.000','2928','220','2005-08-23 21:53:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11948','2005-08-17 17:11:05.000','3329','40','2005-08-25 21:16:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11949','2005-08-17 17:12:26.000','854','198','2005-08-23 20:48:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11950','2005-08-17 17:13:16.000','4412','190','2005-08-26 21:25:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11951','2005-08-17 17:14:02.000','1394','155','2005-08-26 12:04:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11952','2005-08-17 17:14:57.000','2411','288','2005-08-19 19:15:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11953','2005-08-17 17:16:42.000','2993','399','2005-08-23 18:28:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11954','2005-08-17 17:18:36.000','220','145','2005-08-18 19:49:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11955','2005-08-17 17:21:35.000','1221','319','2005-08-24 22:06:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11956','2005-08-17 17:22:05.000','2533','457','2005-08-25 22:19:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11957','2005-08-17 17:22:29.000','1924','198','2005-08-23 21:47:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11958','2005-08-17 17:23:20.000','2061','217','2005-08-24 14:47:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11959','2005-08-17 17:23:35.000','2694','101','2005-08-20 20:57:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11960','2005-08-17 17:24:30.000','3924','84','2005-08-18 14:28:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11961','2005-08-17 17:28:01.000','2015','276','2005-08-21 20:43:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11962','2005-08-17 17:34:38.000','4384','29','2005-08-21 12:59:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11963','2005-08-17 17:35:47.000','232','211','2005-08-23 16:19:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11964','2005-08-17 17:37:03.000','2225','309','2005-08-25 11:55:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11965','2005-08-17 17:39:45.000','194','490','2005-08-19 12:05:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11966','2005-08-17 17:40:04.000','3702','283','2005-08-20 15:45:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11967','2005-08-17 17:45:00.000','1151','521','2005-08-22 13:03:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11968','2005-08-17 17:47:34.000','698','239','2005-08-18 19:40:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11969','2005-08-17 17:49:37.000','668','550','2005-08-19 19:45:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11970','2005-08-17 17:53:09.000','1779','21','2005-08-24 14:41:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11971','2005-08-17 17:53:42.000','2756','131','2005-08-18 12:11:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11972','2005-08-17 17:55:46.000','1282','308','2005-08-22 15:31:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11973','2005-08-17 17:55:58.000','1472','131','2005-08-21 19:55:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11974','2005-08-17 17:56:48.000','1609','485','2005-08-21 19:14:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11975','2005-08-17 17:58:39.000','3843','458','2005-08-20 19:11:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11976','2005-08-17 17:59:19.000','498','373','2005-08-23 14:51:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11977','2005-08-17 18:01:15.000','1528','536','2005-08-23 23:03:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11978','2005-08-17 18:02:10.000','4380','499','2005-08-18 20:40:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11979','2005-08-17 18:07:13.000','568','255','2005-08-19 23:12:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11980','2005-08-17 18:10:18.000','4165','589','2005-08-20 13:28:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11981','2005-08-17 18:10:40.000','3228','294','2005-08-20 16:56:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11982','2005-08-17 18:13:07.000','118','186','2005-08-18 19:06:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11983','2005-08-17 18:13:55.000','2580','304','2005-08-23 18:27:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11984','2005-08-17 18:16:30.000','3577','96','2005-08-24 21:09:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11985','2005-08-17 18:19:44.000','2208','198','2005-08-18 19:14:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11986','2005-08-17 18:21:58.000','1610','352','2005-08-18 13:05:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11987','2005-08-17 18:21:59.000','1478','494','2005-08-25 19:20:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11988','2005-08-17 18:23:50.000','3429','62','2005-08-18 22:30:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11989','2005-08-17 18:23:58.000','3686','439','2005-08-20 20:31:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11990','2005-08-17 18:26:22.000','3012','17','2005-08-19 14:34:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11991','2005-08-17 18:27:08.000','940','361','2005-08-25 14:07:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11992','2005-08-17 18:27:22.000','4132','136','2005-08-26 22:38:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11993','2005-08-17 18:27:49.000','295','303','2005-08-21 00:04:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11994','2005-08-17 18:29:35.000','3428','319','2005-08-25 23:39:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11995','2006-02-14 15:16:03.000','3953','69',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11996','2005-08-17 18:34:37.000','2720','510','2005-08-20 22:25:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11997','2005-08-17 18:34:38.000','2193','411','2005-08-26 00:12:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11998','2005-08-17 18:46:21.000','4258','299','2005-08-18 20:29:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('11999','2005-08-17 18:47:07.000','4333','125','2005-08-20 23:26:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12000','2005-08-17 18:49:44.000','2256','149','2005-08-24 16:34:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12001','2006-02-14 15:16:03.000','4158','52',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12002','2005-08-17 18:56:02.000','1386','75','2005-08-20 17:36:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12003','2005-08-17 18:56:05.000','3868','70','2005-08-18 23:52:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12004','2005-08-17 18:56:53.000','2690','499','2005-08-26 14:56:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12005','2005-08-17 18:56:55.000','2062','403','2005-08-25 20:23:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12006','2005-08-17 19:09:12.000','4072','272','2005-08-24 13:50:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12007','2005-08-17 19:10:34.000','3007','268','2005-08-24 14:09:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12008','2005-08-17 19:16:18.000','865','562','2005-08-18 14:24:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12009','2006-02-14 15:16:03.000','2134','296',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12010','2005-08-17 19:17:54.000','1076','554','2005-08-26 00:41:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12011','2005-08-17 19:19:44.000','495','313','2005-08-23 00:56:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12012','2005-08-17 19:20:48.000','2698','69','2005-08-22 16:50:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12013','2005-08-17 19:23:02.000','3530','586','2005-08-23 00:31:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12014','2005-08-17 19:29:44.000','1778','554','2005-08-23 20:40:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12015','2005-08-17 19:32:44.000','593','11','2005-08-23 13:36:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12016','2005-08-17 19:33:24.000','2109','327','2005-08-21 19:59:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12017','2005-08-17 19:33:49.000','344','573','2005-08-22 01:16:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12018','2005-08-17 19:44:46.000','1921','319','2005-08-26 20:24:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12019','2005-08-17 19:48:55.000','2566','90','2005-08-21 18:20:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12020','2005-08-17 19:50:33.000','3258','72','2005-08-25 17:54:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12021','2005-08-17 19:52:43.000','3977','27','2005-08-23 21:49:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12022','2005-08-17 19:52:45.000','2067','461','2005-08-18 18:26:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12023','2005-08-17 19:54:54.000','247','22','2005-08-26 23:03:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12024','2005-08-17 19:57:34.000','2398','484','2005-08-21 23:00:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12025','2005-08-17 19:59:06.000','4019','209','2005-08-23 14:39:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12026','2005-08-17 20:00:10.000','1568','468','2005-08-26 01:54:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12027','2005-08-17 20:01:12.000','45','285','2005-08-26 21:08:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12028','2005-08-17 20:03:47.000','607','316','2005-08-23 17:09:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12029','2005-08-17 20:07:01.000','3516','148','2005-08-19 19:36:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12030','2005-08-17 20:10:48.000','449','434','2005-08-19 00:32:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12031','2005-08-17 20:11:35.000','2793','10','2005-08-24 23:48:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12032','2005-08-17 20:14:26.000','1106','141','2005-08-26 16:01:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12033','2005-08-17 20:14:34.000','2731','321','2005-08-26 00:22:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12034','2005-08-17 20:15:31.000','834','321','2005-08-24 15:46:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12035','2005-08-17 20:18:06.000','2335','469','2005-08-21 16:41:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12036','2005-08-17 20:19:06.000','3620','85','2005-08-18 19:57:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12037','2005-08-17 20:21:35.000','766','356','2005-08-22 17:16:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12038','2005-08-17 20:28:26.000','3794','148','2005-08-20 23:09:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12039','2005-08-17 20:29:08.000','4404','563','2005-08-23 21:20:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12040','2005-08-17 20:29:56.000','1288','558','2005-08-26 22:17:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12041','2005-08-17 20:34:33.000','2389','295','2005-08-19 00:47:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12042','2005-08-17 20:36:37.000','1772','570','2005-08-21 15:03:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12043','2005-08-17 20:38:21.000','3706','592','2005-08-22 16:52:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12044','2005-08-17 20:39:37.000','3377','388','2005-08-19 18:34:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12045','2005-08-17 20:40:46.000','469','556','2005-08-20 18:18:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12046','2005-08-17 20:47:46.000','3895','435','2005-08-19 16:09:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12047','2005-08-17 20:48:32.000','3886','251','2005-08-26 00:07:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12048','2005-08-17 20:49:24.000','3773','466','2005-08-27 02:01:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12049','2005-08-17 20:53:27.000','2433','178','2005-08-26 19:45:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12050','2005-08-17 20:55:25.000','2348','405','2005-08-22 20:31:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12051','2005-08-17 20:56:15.000','4001','579','2005-08-25 19:08:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12052','2005-08-17 20:57:02.000','99','536','2005-08-25 19:04:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12053','2005-08-17 20:57:27.000','4448','280','2005-08-20 19:51:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12054','2005-08-17 20:59:56.000','3780','53','2005-08-23 19:57:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12055','2005-08-17 21:02:19.000','1481','35','2005-08-18 15:24:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12056','2005-08-17 21:03:48.000','1091','460','2005-08-21 22:42:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12057','2005-08-17 21:04:35.000','1878','263','2005-08-25 00:17:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12058','2005-08-17 21:07:41.000','2438','540','2005-08-26 16:07:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12059','2005-08-17 21:09:23.000','4111','393','2005-08-25 23:09:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12060','2005-08-17 21:11:57.000','2373','127','2005-08-21 01:42:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12061','2005-08-17 21:13:35.000','144','532','2005-08-22 19:18:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12062','2005-08-17 21:24:47.000','1791','330','2005-08-20 20:35:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12063','2005-08-17 21:24:48.000','1141','550','2005-08-23 22:10:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12064','2006-02-14 15:16:03.000','298','284',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12065','2005-08-17 21:31:46.000','3644','77','2005-08-26 02:26:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12066','2006-02-14 15:16:03.000','2474','267',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12067','2005-08-17 21:36:47.000','2013','514','2005-08-22 01:10:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12068','2005-08-17 21:37:08.000','4327','388','2005-08-26 00:10:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12069','2005-08-17 21:39:40.000','631','389','2005-08-22 01:12:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12070','2005-08-17 21:46:47.000','1357','158','2005-08-22 22:59:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12071','2005-08-17 21:49:14.000','1874','507','2005-08-22 18:20:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12072','2005-08-17 21:50:25.000','209','61','2005-08-25 22:36:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12073','2005-08-17 21:50:39.000','2939','173','2005-08-21 02:59:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12074','2005-08-17 21:50:57.000','711','417','2005-08-20 00:58:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12075','2005-08-17 21:54:55.000','3147','125','2005-08-23 23:04:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12076','2005-08-17 21:58:19.000','4278','298','2005-08-20 22:10:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12077','2005-08-17 21:59:14.000','3589','550','2005-08-22 03:23:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12078','2005-08-17 22:00:22.000','684','137','2005-08-24 02:54:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12079','2005-08-17 22:04:17.000','646','230','2005-08-24 20:22:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12080','2005-08-17 22:08:04.000','1491','394','2005-08-19 22:55:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12081','2005-08-17 22:10:46.000','620','597','2005-08-22 22:37:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12082','2005-08-17 22:13:15.000','3435','521','2005-08-24 18:30:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12083','2005-08-17 22:13:37.000','1985','474','2005-08-19 19:01:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12084','2005-08-17 22:16:49.000','2706','60','2005-08-24 17:42:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12085','2005-08-17 22:17:09.000','600','31','2005-08-21 01:45:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12086','2005-08-17 22:20:01.000','3963','140','2005-08-26 02:14:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12087','2005-08-17 22:20:12.000','324','144','2005-08-20 02:11:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12088','2005-08-17 22:20:16.000','1754','360','2005-08-25 23:30:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12089','2005-08-17 22:20:29.000','651','538','2005-08-24 02:12:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12090','2005-08-17 22:21:43.000','3392','391','2005-08-20 23:53:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12091','2005-08-17 22:22:50.000','2161','555','2005-08-27 03:55:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12092','2005-08-17 22:28:15.000','3964','38','2005-08-18 16:46:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12093','2005-08-17 22:28:40.000','216','141','2005-08-22 02:05:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12094','2005-08-17 22:31:04.000','1050','130','2005-08-23 22:45:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12095','2005-08-17 22:32:37.000','1089','46','2005-08-20 04:00:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12096','2005-08-17 22:32:50.000','44','463','2005-08-25 03:33:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12097','2005-08-17 22:35:24.000','4135','325','2005-08-18 20:31:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12098','2005-08-17 22:38:31.000','534','545','2005-08-20 01:56:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12099','2005-08-17 22:38:54.000','1743','195','2005-08-18 21:29:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12100','2005-08-17 22:41:10.000','4365','391','2005-08-24 21:31:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12101','2006-02-14 15:16:03.000','1556','479',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12102','2005-08-17 22:45:26.000','4268','392','2005-08-24 01:47:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12103','2005-08-17 22:49:09.000','4363','153','2005-08-24 21:53:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12104','2005-08-17 22:53:00.000','4551','16','2005-08-23 19:49:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12105','2005-08-17 22:54:45.000','2848','390','2005-08-21 00:33:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12106','2005-08-17 22:55:32.000','3234','465','2005-08-19 23:55:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12107','2005-08-17 22:56:24.000','1060','141','2005-08-24 19:36:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12108','2005-08-17 22:56:39.000','1675','207','2005-08-26 19:37:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12109','2005-08-17 22:58:35.000','1423','509','2005-08-25 19:44:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12110','2005-08-17 22:59:46.000','2984','511','2005-08-23 17:51:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12111','2005-08-17 22:59:55.000','2905','317','2005-08-22 19:33:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12112','2005-08-17 23:00:31.000','4290','576','2005-08-25 02:05:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12113','2005-08-17 23:01:00.000','2707','393','2005-08-25 03:57:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12114','2005-08-17 23:02:00.000','1405','65','2005-08-26 18:02:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12115','2005-08-17 23:04:15.000','1228','457','2005-08-20 22:25:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12116','2006-02-14 15:16:03.000','3082','560',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12117','2005-08-17 23:11:12.000','4140','303','2005-08-22 23:56:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12118','2005-08-17 23:14:25.000','158','89','2005-08-26 22:26:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12119','2005-08-17 23:16:44.000','4298','567','2005-08-20 02:13:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12120','2005-08-17 23:16:46.000','2912','323','2005-08-19 00:11:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12121','2005-08-17 23:20:40.000','3423','69','2005-08-22 21:30:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12122','2005-08-17 23:20:45.000','4030','375','2005-08-25 04:23:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12123','2005-08-17 23:22:18.000','361','497','2005-08-19 23:36:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12124','2005-08-17 23:22:46.000','2036','22','2005-08-21 01:40:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12125','2005-08-17 23:24:25.000','136','573','2005-08-25 03:08:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12126','2005-08-17 23:25:21.000','2304','302','2005-08-23 21:51:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12127','2006-02-14 15:16:03.000','4218','582',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12128','2005-08-17 23:31:09.000','2252','415','2005-08-24 05:07:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12129','2005-08-17 23:31:25.000','891','146','2005-08-26 19:10:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12130','2006-02-14 15:16:03.000','1358','516',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12131','2005-08-17 23:34:16.000','3380','21','2005-08-26 01:18:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12132','2005-08-17 23:37:03.000','2600','403','2005-08-22 04:53:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12133','2005-08-17 23:47:16.000','1958','132','2005-08-19 03:46:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12134','2005-08-17 23:49:43.000','2682','288','2005-08-21 21:00:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12135','2005-08-17 23:50:24.000','1019','381','2005-08-23 18:01:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12136','2005-08-17 23:51:30.000','3944','527','2005-08-23 01:35:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12137','2005-08-17 23:52:26.000','3632','109','2005-08-27 00:19:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12138','2005-08-17 23:55:54.000','388','317','2005-08-26 23:32:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12139','2005-08-17 23:57:13.000','1537','342','2005-08-24 19:13:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12140','2005-08-17 23:57:55.000','322','408','2005-08-21 20:09:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12141','2006-02-14 15:16:03.000','731','101',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12142','2005-08-18 00:04:12.000','3748','373','2005-08-24 01:24:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12143','2005-08-18 00:06:26.000','2876','117','2005-08-24 02:45:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12144','2006-02-14 15:16:03.000','512','587',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12145','2005-08-18 00:10:04.000','3482','5','2005-08-26 00:51:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12146','2005-08-18 00:10:04.000','3833','434','2005-08-25 19:18:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12147','2005-08-18 00:10:20.000','705','41','2005-08-23 20:36:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12148','2005-08-18 00:13:15.000','2409','254','2005-08-20 01:27:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12149','2005-08-18 00:13:51.000','3696','277','2005-08-26 19:47:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12150','2005-08-18 00:13:55.000','3781','555','2005-08-20 23:35:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12151','2005-08-18 00:14:03.000','1976','4','2005-08-18 23:52:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12152','2005-08-18 00:21:35.000','2797','367','2005-08-22 02:51:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12153','2005-08-18 00:22:30.000','3929','387','2005-08-23 04:13:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12154','2005-08-18 00:23:56.000','2491','163','2005-08-21 00:31:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12155','2005-08-18 00:24:30.000','2065','315','2005-08-18 19:12:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12156','2005-08-18 00:27:33.000','3270','212','2005-08-26 01:43:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12157','2005-08-18 00:33:45.000','2311','569','2005-08-22 19:33:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12158','2005-08-18 00:34:20.000','4121','289','2005-08-22 20:10:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12159','2005-08-18 00:36:09.000','2243','106','2005-08-27 06:31:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12160','2005-08-18 00:37:59.000','1328','481','2005-08-19 20:51:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12161','2005-08-18 00:41:46.000','2420','444','2005-08-26 22:59:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12162','2005-08-18 00:44:30.000','2697','284','2005-08-25 03:34:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12163','2005-08-18 00:46:01.000','1349','455','2005-08-22 06:16:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12164','2005-08-18 00:46:38.000','3849','587','2005-08-19 04:38:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12165','2005-08-18 00:53:37.000','4215','24','2005-08-27 00:09:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12166','2005-08-18 00:57:06.000','3627','184','2005-08-26 03:13:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12167','2005-08-18 01:00:02.000','3085','338','2005-08-21 00:04:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12168','2005-08-18 01:03:52.000','2859','535','2005-08-18 20:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12169','2005-08-18 01:05:54.000','2281','323','2005-08-24 02:16:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12170','2005-08-18 01:06:10.000','1125','289','2005-08-25 02:40:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12171','2005-08-18 01:06:13.000','454','457','2005-08-22 19:39:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12172','2005-08-18 01:07:00.000','1162','226','2005-08-22 21:01:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12173','2005-08-18 01:08:34.000','2830','41','2005-08-24 20:52:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12174','2005-08-18 01:08:53.000','1458','101','2005-08-20 03:28:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12175','2005-08-18 01:10:17.000','4558','328','2005-08-19 05:25:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12176','2005-08-18 01:10:33.000','3873','255','2005-08-24 02:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12177','2005-08-18 01:15:47.000','522','470','2005-08-24 23:23:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12178','2005-08-18 01:17:32.000','1152','276','2005-08-25 19:32:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12179','2005-08-18 01:21:21.000','1499','222','2005-08-19 00:59:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12180','2005-08-18 01:28:15.000','2276','20','2005-08-20 20:52:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12181','2005-08-18 01:28:18.000','532','81','2005-08-23 21:17:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12182','2005-08-18 01:30:19.000','296','555','2005-08-21 05:52:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12183','2005-08-18 01:34:13.000','3153','344','2005-08-24 04:38:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12184','2005-08-18 01:36:00.000','1723','51','2005-08-21 01:59:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12185','2005-08-18 01:40:14.000','1558','588','2005-08-25 05:04:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12186','2005-08-18 01:43:36.000','1342','312','2005-08-23 07:13:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12187','2005-08-18 01:45:50.000','3360','38','2005-08-22 20:12:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12188','2005-08-18 01:51:43.000','2989','456','2005-08-18 22:23:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12189','2005-08-18 01:51:44.000','1764','363','2005-08-26 01:01:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12190','2005-08-18 01:54:44.000','2464','28','2005-08-27 04:32:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12191','2005-08-18 01:57:11.000','2667','316','2005-08-22 22:53:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12192','2005-08-18 02:01:40.000','3450','270','2005-08-21 05:45:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12193','2005-08-18 02:03:59.000','1086','290','2005-08-25 05:32:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12194','2005-08-18 02:04:47.000','292','558','2005-08-25 20:45:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12195','2005-08-18 02:07:49.000','943','347','2005-08-19 23:54:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12196','2005-08-18 02:08:48.000','4302','111','2005-08-26 00:39:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12197','2005-08-18 02:08:58.000','3687','564','2005-08-26 21:54:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12198','2005-08-18 02:09:20.000','1628','86','2005-08-21 21:28:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12199','2005-08-18 02:09:23.000','424','96','2005-08-22 20:33:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12200','2005-08-18 02:12:33.000','840','52','2005-08-18 20:47:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12201','2005-08-18 02:14:06.000','3676','540','2005-08-23 04:44:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12202','2005-08-18 02:14:08.000','672','563','2005-08-24 04:35:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12203','2005-08-18 02:18:52.000','4228','591','2005-08-22 21:01:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12204','2005-08-18 02:20:35.000','304','575','2005-08-26 01:27:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12205','2005-08-18 02:21:08.000','774','437','2005-08-27 00:08:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12206','2005-08-18 02:22:20.000','3275','254','2005-08-23 05:36:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12207','2005-08-18 02:24:07.000','3745','265','2005-08-22 07:53:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12208','2005-08-18 02:25:25.000','2039','551','2005-08-20 04:53:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12209','2005-08-18 02:27:20.000','279','243','2005-08-21 00:41:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12210','2005-08-18 02:27:29.000','3035','217','2005-08-20 23:32:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12211','2005-08-18 02:31:18.000','1484','19','2005-08-26 02:36:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12212','2005-08-18 02:33:29.000','3898','449','2005-08-25 07:10:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12213','2005-08-18 02:33:55.000','4058','157','2005-08-24 03:14:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12214','2005-08-18 02:34:22.000','2094','231','2005-08-21 07:48:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12215','2005-08-18 02:35:39.000','4095','47','2005-08-24 00:36:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12216','2005-08-18 02:37:07.000','4139','131','2005-08-19 02:09:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12217','2005-08-18 02:44:44.000','2556','105','2005-08-24 03:27:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12218','2005-08-18 02:48:14.000','1933','70','2005-08-21 01:52:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12219','2005-08-18 02:49:54.000','2249','271','2005-08-23 07:52:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12220','2005-08-18 02:50:02.000','982','530','2005-08-22 00:20:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12221','2005-08-18 02:50:51.000','2488','98','2005-08-27 06:22:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12222','2006-02-14 15:16:03.000','3949','22',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12223','2005-08-18 02:58:40.000','4142','397','2005-08-23 23:30:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12224','2005-08-18 02:59:09.000','1781','372','2005-08-19 06:22:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12225','2005-08-18 03:00:11.000','1876','306','2005-08-24 05:01:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12226','2005-08-18 03:00:48.000','682','234','2005-08-25 00:43:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12227','2005-08-18 03:04:28.000','3671','591','2005-08-21 08:52:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12228','2005-08-18 03:08:10.000','2772','9','2005-08-20 02:48:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12229','2005-08-18 03:08:23.000','1123','382','2005-08-22 03:42:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12230','2005-08-18 03:11:04.000','1910','231','2005-08-27 04:06:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12231','2005-08-18 03:11:44.000','1115','231','2005-08-24 03:26:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12232','2005-08-18 03:14:14.000','2399','87','2005-08-19 05:44:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12233','2005-08-18 03:16:54.000','174','535','2005-08-22 04:48:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12234','2005-08-18 03:17:33.000','3823','352','2005-08-25 04:44:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12235','2005-08-18 03:17:50.000','957','595','2005-08-20 02:49:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12236','2005-08-18 03:19:29.000','1190','474','2005-08-23 07:39:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12237','2005-08-18 03:24:38.000','4422','381','2005-08-25 09:05:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12238','2005-08-18 03:25:08.000','4043','46','2005-08-20 02:41:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12239','2005-08-18 03:26:42.000','1948','75','2005-08-24 23:48:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12240','2005-08-18 03:27:11.000','1168','30','2005-08-26 04:34:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12241','2005-08-18 03:33:17.000','1261','248','2005-08-21 03:13:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12242','2005-08-18 03:37:31.000','2095','121','2005-08-25 06:50:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12243','2005-08-18 03:38:54.000','1829','354','2005-08-27 06:56:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12244','2005-08-18 03:39:11.000','4441','362','2005-08-21 02:57:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12245','2005-08-18 03:46:40.000','2960','576','2005-08-24 22:27:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12246','2005-08-18 03:48:41.000','3199','258','2005-08-25 05:12:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12247','2005-08-18 03:51:51.000','2264','254','2005-08-24 05:36:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12248','2005-08-18 03:53:18.000','2120','562','2005-08-22 04:53:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12249','2005-08-18 03:53:34.000','3586','135','2005-08-21 01:14:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12250','2005-08-18 03:57:29.000','921','1','2005-08-22 23:05:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12251','2005-08-18 03:59:02.000','3044','276','2005-08-19 02:38:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12252','2005-08-18 03:59:51.000','127','350','2005-08-25 08:54:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12253','2005-08-18 04:00:50.000','566','446','2005-08-19 04:43:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12254','2005-08-18 04:05:29.000','2858','6','2005-08-23 04:17:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12255','2005-08-18 04:07:20.000','2100','266','2005-08-21 22:19:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12256','2005-08-18 04:09:39.000','2975','572','2005-08-22 01:53:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12257','2005-08-18 04:11:03.000','269','87','2005-08-25 01:20:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12258','2005-08-18 04:11:13.000','2861','83','2005-08-21 23:40:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12259','2005-08-18 04:14:35.000','2904','429','2005-08-18 22:30:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12260','2005-08-18 04:15:43.000','1352','150','2005-08-26 23:31:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12261','2005-08-18 04:16:06.000','4076','485','2005-08-27 08:04:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12262','2005-08-18 04:16:15.000','591','125','2005-08-20 09:16:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12263','2005-08-18 04:16:18.000','4053','131','2005-08-21 07:22:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12264','2005-08-18 04:17:33.000','3073','87','2005-08-26 08:07:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12265','2005-08-18 04:22:01.000','537','247','2005-08-20 03:22:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12266','2005-08-18 04:22:31.000','2192','467','2005-08-19 04:25:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12267','2005-08-18 04:24:30.000','652','388','2005-08-26 03:01:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12268','2005-08-18 04:26:54.000','93','39','2005-08-23 06:40:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12269','2005-08-18 04:27:54.000','724','573','2005-08-25 07:03:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12270','2005-08-18 04:32:05.000','2456','190','2005-08-21 01:37:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12271','2005-08-18 04:33:11.000','3866','471','2005-08-20 23:10:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12272','2005-08-18 04:39:10.000','1964','15','2005-08-24 09:41:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12273','2005-08-18 04:40:50.000','3539','431','2005-08-25 01:44:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12274','2005-08-18 04:41:47.000','265','47','2005-08-27 07:00:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12275','2005-08-18 04:42:02.000','1474','507','2005-08-25 00:50:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12276','2005-08-18 04:43:22.000','4491','397','2005-08-22 01:49:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12277','2006-02-14 15:16:03.000','407','33',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12278','2005-08-18 04:46:45.000','3205','294','2005-08-24 08:59:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12279','2005-08-18 04:47:30.000','4159','421','2005-08-19 09:47:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12280','2005-08-18 04:49:27.000','4032','46','2005-08-21 03:39:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12281','2005-08-18 04:50:32.000','4576','417','2005-08-21 00:14:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12282','2005-08-18 04:54:20.000','3623','173','2005-08-23 05:28:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12283','2005-08-18 04:54:25.000','574','240','2005-08-23 04:02:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12284','2005-08-18 04:55:49.000','3162','147','2005-08-22 08:45:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12285','2005-08-18 04:56:43.000','3531','215','2005-08-19 23:32:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12286','2005-08-18 04:57:59.000','3729','34','2005-08-18 23:20:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12287','2005-08-18 04:58:06.000','2238','136','2005-08-24 00:06:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12288','2005-08-18 05:01:20.000','4401','523','2005-08-25 09:51:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12289','2005-08-18 05:05:28.000','443','575','2005-08-26 09:02:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12290','2005-08-18 05:08:03.000','4100','283','2005-08-23 08:10:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12291','2005-08-18 05:08:37.000','4270','73','2005-08-23 09:01:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12292','2005-08-18 05:08:54.000','1417','58','2005-08-27 02:51:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12293','2005-08-18 05:13:36.000','614','514','2005-08-25 04:00:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12294','2005-08-18 05:14:44.000','2479','4','2005-08-27 01:32:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12295','2005-08-18 05:15:46.000','1651','532','2005-08-26 02:23:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12296','2005-08-18 05:16:28.000','2091','258','2005-08-22 10:32:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12297','2005-08-18 05:19:57.000','903','436','2005-08-21 00:53:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12298','2005-08-18 05:30:31.000','904','46','2005-08-27 07:33:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12299','2005-08-18 05:32:32.000','892','176','2005-08-22 08:14:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12300','2005-08-18 05:36:14.000','3213','540','2005-08-25 00:20:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12301','2005-08-18 05:36:20.000','2293','317','2005-08-23 03:15:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12302','2005-08-18 05:41:39.000','765','514','2005-08-22 06:02:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12303','2005-08-18 05:43:22.000','1604','245','2005-08-27 08:54:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12304','2005-08-18 05:44:29.000','1381','228','2005-08-24 04:31:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12305','2005-08-18 05:46:29.000','4463','534','2005-08-22 11:14:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12306','2005-08-18 05:47:55.000','3853','541','2005-08-21 01:56:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12307','2005-08-18 05:48:23.000','2679','187','2005-08-26 02:32:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12308','2005-08-18 05:48:53.000','2877','569','2005-08-22 09:03:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12309','2005-08-18 05:58:40.000','762','9','2005-08-20 02:20:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12310','2005-08-18 06:02:34.000','3814','385','2005-08-24 01:08:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12311','2005-08-18 06:07:00.000','1650','211','2005-08-21 07:54:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12312','2005-08-18 06:07:26.000','80','185','2005-08-21 02:07:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12313','2005-08-18 06:07:31.000','2053','180','2005-08-27 00:20:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12314','2005-08-18 06:10:02.000','2204','455','2005-08-25 02:48:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12315','2005-08-18 06:15:06.000','2012','579','2005-08-24 07:45:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12316','2005-08-18 06:16:09.000','4325','94','2005-08-27 05:54:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12317','2005-08-18 06:17:06.000','90','510','2005-08-22 08:56:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12318','2005-08-18 06:21:56.000','3694','332','2005-08-27 06:07:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12319','2005-08-18 06:26:45.000','999','368','2005-08-23 01:35:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12320','2005-08-18 06:26:51.000','3248','267','2005-08-20 04:00:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12321','2005-08-18 06:27:05.000','516','274','2005-08-24 02:26:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12322','2005-08-18 06:35:28.000','4235','365','2005-08-23 07:34:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12323','2005-08-18 06:36:22.000','4107','336','2005-08-26 11:36:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12324','2005-08-18 06:38:20.000','2436','221','2005-08-20 02:28:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12325','2005-08-18 06:41:30.000','1844','404','2005-08-26 02:49:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12326','2005-08-18 06:41:59.000','1865','114','2005-08-19 10:16:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12327','2005-08-18 06:43:22.000','2425','261','2005-08-25 10:50:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12328','2005-08-18 06:43:56.000','1355','77','2005-08-23 10:19:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12329','2005-08-18 06:44:30.000','3127','397','2005-08-25 04:05:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12330','2005-08-18 06:46:33.000','889','587','2005-08-26 11:35:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12331','2005-08-18 06:47:19.000','4565','483','2005-08-25 05:51:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12332','2005-08-18 06:51:05.000','627','235','2005-08-20 04:28:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12333','2005-08-18 06:51:39.000','4370','18','2005-08-21 01:44:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12334','2005-08-18 06:52:36.000','2629','160','2005-08-25 12:06:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12335','2005-08-18 06:59:15.000','2776','150','2005-08-20 06:47:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12336','2005-08-18 06:59:41.000','2484','75','2005-08-23 01:36:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12337','2005-08-18 07:02:24.000','4221','117','2005-08-20 10:11:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12338','2005-08-18 07:04:24.000','274','408','2005-08-19 08:36:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12339','2005-08-18 07:05:06.000','1600','370','2005-08-19 02:27:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12340','2005-08-18 07:07:01.000','3561','239','2005-08-20 05:06:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12341','2005-08-18 07:09:27.000','130','154','2005-08-21 03:44:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12342','2005-08-18 07:12:46.000','1408','63','2005-08-21 07:44:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12343','2005-08-18 07:15:13.000','448','507','2005-08-27 11:07:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12344','2005-08-18 07:15:19.000','3675','269','2005-08-24 04:58:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12345','2005-08-18 07:16:58.000','2359','44','2005-08-25 05:50:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12346','2005-08-18 07:17:55.000','1200','265','2005-08-21 11:35:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12347','2005-08-18 07:18:10.000','1788','454','2005-08-19 05:49:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12348','2005-08-18 07:21:47.000','434','186','2005-08-25 04:41:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12349','2005-08-18 07:23:42.000','4191','545','2005-08-19 04:25:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12350','2005-08-18 07:29:46.000','1333','172','2005-08-21 12:50:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12351','2005-08-18 07:32:12.000','2299','95','2005-08-24 04:29:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12352','2006-02-14 15:16:03.000','643','155',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12353','2005-08-18 07:33:08.000','1594','141','2005-08-21 03:42:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12354','2005-08-18 07:34:07.000','2913','499','2005-08-26 05:56:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12355','2005-08-18 07:36:23.000','4112','452','2005-08-20 08:59:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12356','2005-08-18 07:37:05.000','493','529','2005-08-24 10:49:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12357','2005-08-18 07:40:52.000','166','19','2005-08-22 02:51:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12358','2005-08-18 07:41:43.000','504','16','2005-08-20 03:46:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12359','2005-08-18 07:44:05.000','4172','28','2005-08-19 02:26:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12360','2005-08-18 07:46:35.000','929','123','2005-08-26 12:01:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12361','2005-08-18 07:47:31.000','1418','250','2005-08-22 12:08:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12362','2005-08-18 07:48:05.000','3131','367','2005-08-20 05:16:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12363','2005-08-18 07:52:49.000','3447','181','2005-08-26 03:20:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12364','2005-08-18 07:55:09.000','3398','84','2005-08-19 05:29:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12365','2005-08-18 07:55:09.000','4350','303','2005-08-24 05:42:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12366','2005-08-18 07:55:14.000','3799','115','2005-08-22 06:12:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12367','2005-08-18 07:57:14.000','1822','7','2005-08-27 07:07:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12368','2005-08-18 07:57:38.000','3777','392','2005-08-25 05:49:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12369','2005-08-18 07:57:43.000','484','337','2005-08-26 09:36:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12370','2005-08-18 07:57:47.000','3343','503','2005-08-22 11:32:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12371','2005-08-18 08:02:46.000','622','451','2005-08-19 02:50:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12372','2005-08-18 08:04:35.000','2982','131','2005-08-27 08:13:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12373','2005-08-18 08:07:25.000','777','367','2005-08-27 03:41:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12374','2005-08-18 08:07:45.000','939','74','2005-08-26 10:42:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12375','2005-08-18 08:20:08.000','3508','365','2005-08-21 08:50:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12376','2005-08-18 08:20:29.000','852','116','2005-08-20 13:20:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12377','2005-08-18 08:26:05.000','4564','31','2005-08-23 02:51:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12378','2005-08-18 08:26:13.000','4418','266','2005-08-19 07:21:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12379','2005-08-18 08:26:48.000','2879','99','2005-08-19 10:08:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12380','2005-08-18 08:27:28.000','55','215','2005-08-25 02:58:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12381','2005-08-18 08:31:43.000','3651','190','2005-08-23 12:24:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12382','2005-08-18 08:32:33.000','3049','566','2005-08-26 03:45:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12383','2005-08-18 08:36:03.000','1641','295','2005-08-23 03:30:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12384','2005-08-18 08:36:58.000','2557','193','2005-08-23 05:08:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12385','2005-08-18 08:39:33.000','3143','146','2005-08-21 14:22:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12386','2005-08-18 08:45:57.000','3303','199','2005-08-24 04:50:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12387','2005-08-18 08:46:24.000','3604','530','2005-08-21 02:56:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12388','2005-08-18 08:48:09.000','4016','555','2005-08-26 09:05:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12389','2005-08-18 08:48:36.000','1891','394','2005-08-22 08:59:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12390','2005-08-18 08:51:42.000','3603','377','2005-08-23 13:06:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12391','2005-08-18 08:52:53.000','1507','307','2005-08-22 12:15:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12392','2005-08-18 08:57:58.000','2695','113','2005-08-25 05:20:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12393','2005-08-18 09:02:41.000','2435','396','2005-08-26 12:47:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12394','2005-08-18 09:05:15.000','3605','330','2005-08-23 11:10:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12395','2005-08-18 09:06:30.000','2020','541','2005-08-21 12:09:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12396','2005-08-18 09:11:23.000','3624','40','2005-08-26 05:35:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12397','2005-08-18 09:12:52.000','1872','371','2005-08-27 10:44:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12398','2005-08-18 09:13:24.000','4247','321','2005-08-27 14:58:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12399','2005-08-18 09:13:42.000','3950','347','2005-08-27 11:44:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12400','2005-08-18 09:19:12.000','1767','10','2005-08-26 06:52:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12401','2005-08-18 09:20:51.000','4314','479','2005-08-21 05:50:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12402','2005-08-18 09:27:34.000','385','123','2005-08-25 13:10:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12403','2005-08-18 09:31:05.000','2124','440','2005-08-23 09:54:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12404','2005-08-18 09:36:34.000','1097','342','2005-08-23 10:12:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12405','2005-08-18 09:37:30.000','228','266','2005-08-27 13:11:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12406','2005-08-18 09:38:02.000','4368','510','2005-08-22 12:56:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12407','2005-08-18 09:39:26.000','391','220','2005-08-24 05:19:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12408','2005-08-18 09:40:38.000','2360','143','2005-08-19 04:45:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12409','2005-08-18 09:43:58.000','2568','64','2005-08-19 15:02:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12410','2005-08-18 09:45:33.000','1904','210','2005-08-27 08:50:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12411','2005-08-18 09:47:57.000','1234','181','2005-08-21 05:54:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12412','2005-08-18 09:49:52.000','1578','75','2005-08-23 12:32:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12413','2005-08-18 09:50:34.000','3466','366','2005-08-23 05:57:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12414','2005-08-18 09:50:40.000','4454','32','2005-08-26 06:45:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12415','2005-08-18 09:54:01.000','392','443','2005-08-24 15:41:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12416','2005-08-18 09:56:48.000','3784','515','2005-08-22 12:34:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12417','2005-08-18 09:57:00.000','3500','71','2005-08-19 08:56:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12418','2005-08-18 09:59:36.000','4186','241','2005-08-19 11:35:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12419','2005-08-18 10:01:48.000','3111','133','2005-08-19 13:40:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12420','2005-08-18 10:01:50.000','452','477','2005-08-22 08:14:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12421','2005-08-18 10:04:06.000','4067','158','2005-08-24 08:45:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12422','2005-08-18 10:13:12.000','1855','451','2005-08-20 14:36:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12423','2005-08-18 10:14:52.000','1014','470','2005-08-26 13:16:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12424','2005-08-18 10:16:57.000','2055','319','2005-08-27 04:41:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12425','2005-08-18 10:18:06.000','2000','405','2005-08-27 08:16:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12426','2005-08-18 10:24:11.000','799','75','2005-08-22 15:34:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12427','2005-08-18 10:24:17.000','1759','333','2005-08-27 14:22:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12428','2005-08-18 10:24:21.000','3735','121','2005-08-24 05:12:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12429','2005-08-18 10:26:46.000','2994','436','2005-08-27 13:23:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12430','2005-08-18 10:32:41.000','2840','196','2005-08-22 16:16:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12431','2005-08-18 10:34:59.000','4461','89','2005-08-22 14:42:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12432','2005-08-18 10:35:13.000','2543','263','2005-08-26 08:20:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12433','2005-08-18 10:37:49.000','1776','552','2005-08-19 08:00:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12434','2005-08-18 10:38:08.000','3078','314','2005-08-22 16:14:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12435','2005-08-18 10:38:31.000','3211','160','2005-08-26 15:18:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12436','2005-08-18 10:41:05.000','3761','499','2005-08-23 07:36:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12437','2005-08-18 10:42:43.000','4036','467','2005-08-26 11:58:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12438','2005-08-18 10:42:52.000','2043','186','2005-08-25 11:42:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12439','2005-08-18 10:44:57.000','3204','153','2005-08-22 06:51:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12440','2005-08-18 10:47:35.000','2779','474','2005-08-21 11:10:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12441','2005-08-18 10:47:57.000','2163','561','2005-08-26 07:11:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12442','2005-08-18 10:50:07.000','78','270','2005-08-21 08:06:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12443','2005-08-18 10:50:59.000','2048','233','2005-08-26 07:48:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12444','2005-08-18 10:53:12.000','1639','285','2005-08-19 13:54:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12445','2005-08-18 10:56:20.000','3347','350','2005-08-21 16:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12446','2005-08-18 10:56:29.000','2138','448','2005-08-23 05:30:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12447','2005-08-18 10:57:01.000','4084','469','2005-08-27 06:05:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12448','2005-08-18 10:59:04.000','3889','72','2005-08-21 06:45:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12449','2005-08-18 11:03:04.000','663','285','2005-08-19 07:34:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12450','2005-08-18 11:04:04.000','3439','518','2005-08-22 07:24:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12451','2005-08-18 11:04:42.000','2780','183','2005-08-20 08:20:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12452','2005-08-18 11:14:35.000','4260','358','2005-08-27 09:09:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12453','2005-08-18 11:17:07.000','2487','104','2005-08-25 12:34:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12454','2005-08-18 11:19:02.000','4219','184','2005-08-19 12:00:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12455','2005-08-18 11:19:47.000','4478','46','2005-08-22 16:08:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12456','2005-08-18 11:21:51.000','4578','85','2005-08-21 13:28:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12457','2006-02-14 15:16:03.000','2145','80',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12458','2005-08-18 11:22:53.000','4579','277','2005-08-22 14:30:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12459','2005-08-18 11:25:11.000','421','39','2005-08-22 06:13:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12460','2005-08-18 11:25:13.000','3550','419','2005-08-27 06:27:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12461','2005-08-18 11:28:14.000','1569','27','2005-08-21 09:47:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12462','2005-08-18 11:28:55.000','890','574','2005-08-20 12:06:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12463','2005-08-18 11:31:34.000','30','214','2005-08-23 12:04:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12464','2005-08-18 11:33:34.000','1954','157','2005-08-27 14:33:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12465','2005-08-18 11:35:02.000','1733','486','2005-08-21 11:52:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12466','2005-08-18 11:36:55.000','2686','462','2005-08-23 13:46:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12467','2005-08-18 11:40:09.000','1414','212','2005-08-19 13:33:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12468','2005-08-18 11:41:47.000','1689','80','2005-08-24 16:43:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12469','2005-08-18 11:53:07.000','2395','237','2005-08-24 16:00:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12470','2005-08-18 11:55:42.000','1290','82','2005-08-24 08:27:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12471','2005-08-18 11:57:00.000','242','101','2005-08-26 13:17:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12472','2005-08-18 11:58:48.000','4458','297','2005-08-27 16:37:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12473','2005-08-18 11:59:44.000','1237','303','2005-08-21 13:38:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12474','2005-08-18 12:10:03.000','2240','78','2005-08-27 17:05:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12475','2005-08-18 12:14:21.000','3118','401','2005-08-24 14:43:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12476','2005-08-18 12:22:40.000','2784','122','2005-08-20 17:29:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12477','2005-08-18 12:25:01.000','4516','74','2005-08-25 17:25:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12478','2005-08-18 12:25:16.000','4512','42','2005-08-22 06:27:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12479','2005-08-18 12:26:37.000','1119','401','2005-08-21 18:08:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12480','2005-08-18 12:26:43.000','3339','446','2005-08-26 13:23:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12481','2005-08-18 12:31:34.000','2424','218','2005-08-21 16:08:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12482','2005-08-18 12:37:36.000','3778','247','2005-08-26 09:53:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12483','2005-08-18 12:38:37.000','1805','488','2005-08-24 13:26:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12484','2005-08-18 12:39:37.000','3690','300','2005-08-24 08:47:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12485','2005-08-18 12:41:41.000','422','345','2005-08-22 16:38:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12486','2005-08-18 12:42:50.000','2991','515','2005-08-27 13:41:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12487','2005-08-18 12:45:24.000','2554','485','2005-08-22 12:39:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12488','2005-08-18 12:48:22.000','3323','29','2005-08-19 16:19:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12489','2006-02-14 15:16:03.000','387','60',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12490','2005-08-18 12:48:45.000','1577','187','2005-08-27 15:53:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12491','2005-08-18 12:48:45.000','2354','247','2005-08-22 12:40:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12492','2005-08-18 12:49:04.000','2839','224','2005-08-26 17:55:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12493','2005-08-18 12:53:38.000','3029','487','2005-08-27 13:15:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12494','2005-08-18 12:53:49.000','3845','522','2005-08-26 15:52:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12495','2005-08-18 12:56:37.000','1225','102','2005-08-22 06:58:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12496','2005-08-18 12:58:25.000','456','489','2005-08-27 18:43:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12497','2005-08-18 12:58:40.000','824','388','2005-08-24 08:24:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12498','2005-08-18 13:01:08.000','1063','408','2005-08-21 13:12:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12499','2005-08-18 13:05:37.000','2611','42','2005-08-19 07:41:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12500','2005-08-18 13:05:51.000','36','310','2005-08-19 14:54:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12501','2005-08-18 13:13:13.000','728','173','2005-08-23 07:24:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12502','2005-08-18 13:16:31.000','2153','235','2005-08-19 17:47:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12503','2005-08-18 13:16:46.000','3548','379','2005-08-19 10:24:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12504','2005-08-18 13:17:07.000','4429','44','2005-08-24 09:13:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12505','2005-08-18 13:17:30.000','3741','406','2005-08-23 18:03:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12506','2006-02-14 15:16:03.000','1132','114',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12507','2005-08-18 13:19:13.000','199','584','2005-08-27 11:48:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12508','2005-08-18 13:20:13.000','1059','29','2005-08-22 12:55:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12509','2005-08-18 13:21:52.000','2462','175','2005-08-20 12:14:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12510','2005-08-18 13:22:25.000','3051','394','2005-08-27 17:38:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12511','2005-08-18 13:23:19.000','919','447','2005-08-22 11:43:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12512','2005-08-18 13:28:27.000','3959','148','2005-08-26 19:08:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12513','2005-08-18 13:31:45.000','29','527','2005-08-25 08:26:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12514','2005-08-18 13:33:55.000','3310','400','2005-08-23 12:50:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12515','2005-08-18 13:39:26.000','2703','63','2005-08-22 09:05:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12516','2005-08-18 13:39:53.000','1332','302','2005-08-20 08:33:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12517','2005-08-18 13:40:20.000','2908','520','2005-08-27 14:04:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12518','2005-08-18 13:41:32.000','3860','264','2005-08-23 13:01:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12519','2005-08-18 13:42:14.000','2394','203','2005-08-24 16:44:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12520','2005-08-18 13:42:45.000','681','52','2005-08-23 12:54:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12521','2005-08-18 13:43:07.000','1022','369','2005-08-21 07:53:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12522','2005-08-18 13:45:40.000','4435','342','2005-08-27 17:05:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12523','2005-08-18 13:45:41.000','888','230','2005-08-27 10:46:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12524','2006-02-14 15:16:03.000','857','438',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12525','2005-08-18 13:48:31.000','2357','96','2005-08-23 13:04:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12526','2005-08-18 13:48:43.000','3541','54','2005-08-19 10:05:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12527','2005-08-18 13:48:46.000','2536','459','2005-08-26 13:31:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12528','2005-08-18 13:52:41.000','3381','398','2005-08-27 09:09:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12529','2005-08-18 13:53:36.000','1956','382','2005-08-19 18:20:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12530','2005-08-18 13:54:48.000','1054','521','2005-08-26 08:58:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12531','2005-08-18 13:57:50.000','2771','27','2005-08-22 09:46:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12532','2005-08-18 13:57:58.000','114','184','2005-08-24 14:58:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12533','2005-08-18 14:01:40.000','795','331','2005-08-20 15:32:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12534','2005-08-18 14:04:41.000','995','187','2005-08-25 16:57:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12535','2005-08-18 14:05:22.000','2944','516','2005-08-25 16:35:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12536','2005-08-18 14:06:06.000','2343','373','2005-08-25 14:21:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12537','2005-08-18 14:06:39.000','57','56','2005-08-25 09:36:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12538','2005-08-18 14:09:09.000','1373','118','2005-08-23 19:12:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12539','2005-08-18 14:10:09.000','3259','136','2005-08-19 19:44:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12540','2005-08-18 14:17:30.000','2826','304','2005-08-26 15:33:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12541','2005-08-18 14:18:30.000','4357','584','2005-08-26 10:24:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12542','2005-08-18 14:21:11.000','1920','230','2005-08-20 16:06:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12543','2005-08-18 14:23:55.000','330','324','2005-08-20 12:42:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12544','2005-08-18 14:25:51.000','3783','354','2005-08-26 18:42:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12545','2005-08-18 14:28:00.000','1988','168','2005-08-26 14:10:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12546','2005-08-18 14:29:37.000','610','30','2005-08-26 09:47:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12547','2005-08-18 14:29:39.000','3046','591','2005-08-22 16:52:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12548','2005-08-18 14:35:26.000','750','426','2005-08-27 18:58:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12549','2005-08-18 14:38:07.000','1010','377','2005-08-21 08:45:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12550','2005-08-18 14:40:38.000','4267','138','2005-08-19 13:33:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12551','2005-08-18 14:46:26.000','2195','15','2005-08-19 16:59:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12552','2005-08-18 14:46:34.000','4303','413','2005-08-20 11:02:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12553','2005-08-18 14:46:54.000','2893','454','2005-08-22 13:41:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12554','2005-08-18 14:47:28.000','715','404','2005-08-25 14:34:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12555','2005-08-18 14:49:22.000','4434','557','2005-08-26 14:11:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12556','2005-08-18 14:49:55.000','1984','3','2005-08-24 15:20:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12557','2005-08-18 14:51:03.000','313','364','2005-08-19 13:30:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12558','2005-08-18 14:52:35.000','167','289','2005-08-26 09:45:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12559','2005-08-18 14:53:58.000','39','513','2005-08-25 20:22:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12560','2005-08-18 14:54:19.000','829','596','2005-08-27 13:39:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12561','2005-08-18 14:58:51.000','812','392','2005-08-20 10:53:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12562','2005-08-18 15:00:03.000','529','212','2005-08-23 12:55:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12563','2005-08-18 15:08:29.000','2552','393','2005-08-27 15:15:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12564','2005-08-18 15:11:35.000','263','348','2005-08-22 11:45:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12565','2005-08-18 15:12:17.000','1284','211','2005-08-19 12:26:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12566','2005-08-18 15:13:04.000','1684','407','2005-08-21 19:29:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12567','2005-08-18 15:14:36.000','2931','308','2005-08-26 18:56:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12568','2005-08-18 15:15:44.000','2654','569','2005-08-22 19:32:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12569','2005-08-18 15:20:46.000','1009','29','2005-08-24 12:38:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12570','2005-08-18 15:23:31.000','3973','211','2005-08-22 09:59:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12571','2005-08-18 15:31:18.000','1013','591','2005-08-23 15:20:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12572','2005-08-18 15:32:54.000','1366','253','2005-08-21 10:30:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12573','2005-08-18 15:32:57.000','1416','182','2005-08-21 18:29:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12574','2006-02-14 15:16:03.000','177','317',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12575','2005-08-18 15:37:42.000','3441','117','2005-08-25 19:17:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12576','2005-08-18 15:38:31.000','329','119','2005-08-22 21:29:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12577','2005-08-18 15:39:46.000','4134','16','2005-08-25 18:05:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12578','2005-08-18 15:47:11.000','930','514','2005-08-21 10:55:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12579','2005-08-18 15:47:49.000','3021','547','2005-08-20 18:12:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12580','2005-08-18 15:49:08.000','1197','53','2005-08-24 11:03:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12581','2005-08-18 15:49:15.000','4309','70','2005-08-23 20:18:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12582','2005-08-18 15:51:12.000','4467','462','2005-08-20 12:05:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12583','2005-08-18 15:51:36.000','3090','108','2005-08-20 18:47:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12584','2005-08-18 15:51:36.000','4487','371','2005-08-25 19:21:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12585','2005-08-18 15:52:12.000','773','110','2005-08-22 21:00:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12586','2005-08-18 15:54:39.000','4245','460','2005-08-21 19:29:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12587','2005-08-18 16:03:13.000','3081','499','2005-08-25 19:30:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12588','2005-08-18 16:04:45.000','694','415','2005-08-23 20:30:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12589','2005-08-18 16:06:31.000','956','275','2005-08-27 17:20:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12590','2005-08-18 16:11:35.000','2624','308','2005-08-23 10:35:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12591','2005-08-18 16:16:41.000','723','546','2005-08-24 10:29:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12592','2005-08-18 16:17:50.000','1618','305','2005-08-25 20:20:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12593','2005-08-18 16:17:54.000','4092','72','2005-08-21 18:02:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12594','2005-08-18 16:24:24.000','4421','198','2005-08-25 15:45:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12595','2005-08-18 16:27:08.000','1662','286','2005-08-19 14:53:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12596','2005-08-18 16:29:35.000','3662','378','2005-08-24 16:48:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12597','2005-08-18 16:34:02.000','3804','474','2005-08-25 17:30:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12598','2005-08-18 16:34:03.000','3159','340','2005-08-22 16:44:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12599','2005-08-18 16:42:45.000','2032','34','2005-08-23 18:27:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12600','2005-08-18 16:44:24.000','1475','171','2005-08-25 17:28:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12601','2005-08-18 16:47:52.000','3099','598','2005-08-24 11:05:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12602','2005-08-18 16:49:50.000','2001','533','2005-08-21 11:13:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12603','2005-08-18 16:56:20.000','2769','119','2005-08-25 11:50:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12604','2005-08-18 16:58:48.000','4127','12','2005-08-19 19:36:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12605','2005-08-18 16:59:37.000','1359','496','2005-08-20 18:09:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12606','2005-08-18 17:02:21.000','359','275','2005-08-24 22:38:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12607','2005-08-18 17:03:49.000','2130','526','2005-08-19 18:29:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12608','2005-08-18 17:05:15.000','624','366','2005-08-23 17:00:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12609','2005-08-18 17:06:22.000','2327','486','2005-08-20 21:30:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12610','2006-02-14 15:16:03.000','3181','269',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12611','2005-08-18 17:09:42.000','1925','359','2005-08-24 11:57:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12612','2005-08-18 17:10:05.000','1035','129','2005-08-26 15:55:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12613','2005-08-18 17:16:01.000','3877','8','2005-08-23 18:40:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12614','2005-08-18 17:16:03.000','2233','60','2005-08-26 16:56:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12615','2005-08-18 17:16:07.000','2191','29','2005-08-27 12:57:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12616','2005-08-18 17:22:41.000','2952','476','2005-08-25 18:52:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12617','2005-08-18 17:22:48.000','3573','564','2005-08-24 17:40:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12618','2005-08-18 17:24:02.000','302','117','2005-08-19 15:22:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12619','2005-08-18 17:24:15.000','980','592','2005-08-21 15:56:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12620','2005-08-18 17:26:38.000','2663','221','2005-08-25 13:24:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12621','2005-08-18 17:31:36.000','4566','439','2005-08-24 16:43:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12622','2005-08-18 17:34:11.000','278','529','2005-08-24 16:10:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12623','2005-08-18 17:34:19.000','3670','177','2005-08-20 21:30:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12624','2005-08-18 17:35:00.000','1135','434','2005-08-27 12:18:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12625','2005-08-18 17:36:19.000','2645','108','2005-08-23 11:42:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12626','2005-08-18 17:36:45.000','4230','361','2005-08-26 17:12:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12627','2005-08-18 17:37:11.000','3760','150','2005-08-19 14:59:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12628','2005-08-18 17:40:25.000','3210','520','2005-08-25 13:39:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12629','2005-08-18 17:40:33.000','1705','459','2005-08-26 21:09:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12630','2005-08-18 17:49:28.000','1457','452','2005-08-24 12:23:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12631','2005-08-18 17:52:51.000','2782','339','2005-08-25 14:40:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12632','2005-08-18 17:54:21.000','827','381','2005-08-22 18:58:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12633','2005-08-18 17:55:38.000','4341','469','2005-08-23 17:19:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12634','2005-08-18 17:58:14.000','1037','549','2005-08-19 21:08:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12635','2005-08-18 18:00:23.000','331','15','2005-08-23 16:40:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12636','2005-08-18 18:00:29.000','1645','380','2005-08-26 20:08:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12637','2005-08-18 18:06:53.000','4005','145','2005-08-19 17:36:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12638','2005-08-18 18:11:39.000','2849','172','2005-08-25 21:54:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12639','2005-08-18 18:13:05.000','562','500','2005-08-27 16:00:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12640','2005-08-18 18:14:49.000','1715','544','2005-08-24 21:25:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12641','2005-08-18 18:18:08.000','776','467','2005-08-19 23:17:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12642','2005-08-18 18:19:16.000','2080','167','2005-08-20 17:30:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12643','2005-08-18 18:21:06.000','2245','165','2005-08-24 14:26:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12644','2005-08-18 18:22:27.000','1511','300','2005-08-26 00:01:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12645','2006-02-14 15:16:03.000','1658','457',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12646','2005-08-18 18:25:06.000','3103','388','2005-08-24 18:45:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12647','2005-08-18 18:29:51.000','323','520','2005-08-27 22:51:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12648','2005-08-18 18:30:21.000','3545','519','2005-08-25 19:17:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12649','2005-08-18 18:31:47.000','3201','530','2005-08-22 21:07:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12650','2005-08-18 18:33:20.000','3237','276','2005-08-21 17:45:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12651','2005-08-18 18:36:16.000','8','34','2005-08-22 22:01:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12652','2005-08-18 18:48:58.000','2118','9','2005-08-21 14:15:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12653','2005-08-18 18:53:17.000','3353','78','2005-08-26 14:08:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12654','2005-08-18 18:56:40.000','2217','438','2005-08-20 17:51:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12655','2005-08-18 18:57:44.000','859','533','2005-08-27 22:40:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12656','2005-08-18 18:58:35.000','3981','286','2005-08-21 00:41:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12657','2005-08-18 19:02:16.000','3621','100','2005-08-21 14:59:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12658','2005-08-18 19:05:42.000','4320','193','2005-08-19 19:08:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12659','2005-08-18 19:05:49.000','336','329','2005-08-24 22:12:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12660','2005-08-18 19:07:23.000','414','21','2005-08-27 17:20:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12661','2005-08-18 19:10:10.000','1547','333','2005-08-22 20:30:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12662','2005-08-18 19:10:41.000','1412','75','2005-08-23 16:59:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12663','2005-08-18 19:10:52.000','1163','375','2005-08-19 15:46:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12664','2005-08-18 19:10:54.000','2732','577','2005-08-25 19:19:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12665','2006-02-14 15:16:03.000','1701','410',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12666','2005-08-18 19:11:41.000','4156','251','2005-08-21 18:04:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12667','2005-08-18 19:11:45.000','104','545','2005-08-27 13:34:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12668','2005-08-18 19:16:47.000','1986','14','2005-08-19 16:31:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12669','2005-08-18 19:17:47.000','4530','433','2005-08-24 14:55:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12670','2005-08-18 19:17:58.000','1716','580','2005-08-23 20:54:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12671','2005-08-18 19:19:59.000','1734','577','2005-08-23 17:53:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12672','2006-02-14 15:16:03.000','1722','228',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12673','2005-08-18 19:21:56.000','4204','535','2005-08-26 22:44:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12674','2005-08-18 19:24:56.000','636','185','2005-08-26 22:16:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12675','2005-08-18 19:34:02.000','569','140','2005-08-23 13:36:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12676','2005-08-18 19:34:40.000','2581','393','2005-08-20 18:03:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12677','2005-08-18 19:36:05.000','1311','334','2005-08-22 21:23:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12678','2005-08-18 19:41:27.000','2504','181','2005-08-23 15:14:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12679','2005-08-18 19:42:11.000','1535','463','2005-08-25 01:01:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12680','2005-08-18 19:43:46.000','833','259','2005-08-27 00:08:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12681','2005-08-18 19:48:06.000','1570','518','2005-08-23 15:05:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12682','2006-02-14 15:16:03.000','1148','245',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12683','2005-08-18 19:50:43.000','1802','166','2005-08-26 00:47:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12684','2005-08-18 19:51:27.000','978','196','2005-08-19 15:56:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12685','2005-08-18 19:51:29.000','4283','114','2005-08-27 14:58:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12686','2005-08-18 19:55:09.000','501','385','2005-08-26 14:17:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12687','2005-08-18 19:57:39.000','3092','285','2005-08-27 01:36:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12688','2005-08-18 19:59:54.000','2315','65','2005-08-26 18:52:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12689','2005-08-18 20:06:34.000','1066','296','2005-08-22 20:11:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12690','2005-08-18 20:06:57.000','3574','361','2005-08-24 20:54:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12691','2005-08-18 20:07:46.000','3744','534','2005-08-26 18:49:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12692','2005-08-18 20:09:19.000','2781','273','2005-08-21 00:14:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12693','2005-08-18 20:10:19.000','1543','584','2005-08-25 21:11:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12694','2005-08-18 20:10:39.000','1741','268','2005-08-25 20:47:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12695','2005-08-18 20:11:35.000','446','483','2005-08-25 18:29:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12696','2005-08-18 20:13:08.000','3989','374','2005-08-19 18:02:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12697','2005-08-18 20:14:56.000','2774','152','2005-08-23 21:54:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12698','2006-02-14 15:16:03.000','3657','497',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12699','2005-08-18 20:20:59.000','3695','66','2005-08-22 17:00:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12700','2005-08-18 20:24:46.000','540','397','2005-08-23 21:50:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12701','2005-08-18 20:26:47.000','2337','489','2005-08-26 23:36:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12702','2005-08-18 20:30:33.000','1884','474','2005-08-27 01:22:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12703','2005-08-18 20:37:13.000','1278','453','2005-08-26 16:13:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12704','2005-08-18 20:43:00.000','51','93','2005-08-21 22:28:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12705','2005-08-18 20:44:14.000','2342','517','2005-08-23 20:46:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12706','2005-08-18 20:44:34.000','1079','170','2005-08-26 21:47:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12707','2005-08-18 20:52:02.000','1565','426','2005-08-25 19:03:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12708','2005-08-18 20:59:17.000','3448','28','2005-08-24 22:40:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12709','2005-08-18 20:59:51.000','3878','476','2005-08-26 01:21:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12710','2005-08-18 21:02:50.000','3011','310','2005-08-26 15:07:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12711','2005-08-18 21:03:32.000','2530','122','2005-08-26 17:31:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12712','2005-08-18 21:04:13.000','2628','444','2005-08-25 18:15:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12713','2005-08-18 21:07:28.000','1505','56','2005-08-24 17:46:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12714','2005-08-18 21:08:01.000','868','372','2005-08-27 17:09:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12715','2005-08-18 21:09:38.000','3768','266','2005-08-21 20:25:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12716','2006-02-14 15:16:03.000','858','570',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12717','2005-08-18 21:15:40.000','3551','167','2005-08-20 00:59:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12718','2005-08-18 21:21:44.000','3221','176','2005-08-20 01:01:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12719','2006-02-14 15:16:03.000','1094','87',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12720','2005-08-18 21:28:42.000','2676','419','2005-08-25 18:02:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12721','2005-08-18 21:30:12.000','1045','239','2005-08-22 22:45:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12722','2005-08-18 21:33:53.000','913','416','2005-08-27 23:47:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12723','2005-08-18 21:34:16.000','4167','430','2005-08-22 22:37:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12724','2005-08-18 21:37:20.000','2224','242','2005-08-27 21:56:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12725','2005-08-18 21:43:09.000','4071','51','2005-08-23 18:50:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12726','2005-08-18 21:44:46.000','20','397','2005-08-19 21:58:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12727','2005-08-18 21:45:15.000','15','178','2005-08-24 15:52:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12728','2005-08-18 21:47:48.000','3156','129','2005-08-25 16:13:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12729','2005-08-18 21:52:59.000','3711','424','2005-08-21 00:02:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12730','2005-08-18 21:55:01.000','75','7','2005-08-22 01:23:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12731','2005-08-18 21:55:38.000','1719','128','2005-08-23 20:30:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12732','2005-08-18 21:57:50.000','3307','535','2005-08-19 18:28:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12733','2005-08-18 21:59:00.000','3243','144','2005-08-24 02:25:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12734','2005-08-18 22:04:52.000','3619','121','2005-08-25 00:34:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12735','2005-08-18 22:04:54.000','3679','383','2005-08-23 21:19:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12736','2006-02-14 15:16:03.000','3591','244',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12737','2005-08-18 22:11:37.000','736','204','2005-08-26 04:08:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12738','2005-08-18 22:11:47.000','4313','589','2005-08-27 17:55:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12739','2005-08-18 22:15:18.000','4129','292','2005-08-27 00:37:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12740','2005-08-18 22:17:04.000','1157','330','2005-08-23 23:42:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12741','2005-08-18 22:17:05.000','2084','435','2005-08-25 20:07:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12742','2005-08-18 22:22:03.000','1742','68','2005-08-22 04:01:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12743','2005-08-18 22:22:31.000','2630','565','2005-08-27 00:31:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12744','2005-08-18 22:22:36.000','3815','593','2005-08-24 00:26:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12745','2005-08-18 22:22:45.000','262','24','2005-08-20 01:44:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12746','2006-02-14 15:16:03.000','1012','211',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12747','2005-08-18 22:28:22.000','4075','549','2005-08-22 22:25:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12748','2005-08-18 22:29:05.000','3249','373','2005-08-24 18:25:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12749','2005-08-18 22:31:21.000','828','388','2005-08-20 22:53:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12750','2005-08-18 22:32:39.000','3717','535','2005-08-26 01:54:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12751','2005-08-18 22:33:22.000','2791','352','2005-08-20 20:28:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12752','2005-08-18 22:33:36.000','3595','514','2005-08-27 23:55:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12753','2005-08-18 22:37:39.000','1494','470','2005-08-27 00:21:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12754','2005-08-18 22:37:41.000','4154','134','2005-08-27 20:17:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12755','2005-08-18 22:38:47.000','105','439','2005-08-22 23:58:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12756','2005-08-18 22:52:13.000','1840','89','2005-08-21 17:22:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12757','2005-08-18 22:57:45.000','1095','147','2005-08-21 22:43:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12758','2005-08-18 22:58:34.000','2279','30','2005-08-22 23:33:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12759','2006-02-14 15:16:03.000','4193','354',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12760','2005-08-18 23:03:19.000','4188','363','2005-08-24 17:53:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12761','2005-08-18 23:05:22.000','2684','364','2005-08-22 01:08:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12762','2005-08-18 23:06:54.000','3909','502','2005-08-21 18:30:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12763','2005-08-18 23:07:01.000','393','472','2005-08-21 18:45:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12764','2005-08-18 23:14:15.000','26','183','2005-08-22 20:23:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12765','2005-08-18 23:21:50.000','2244','298','2005-08-28 04:42:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12766','2005-08-18 23:25:20.000','3737','50','2005-08-27 04:43:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12767','2005-08-18 23:25:49.000','3351','432','2005-08-28 02:40:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12768','2005-08-18 23:26:11.000','1993','458','2005-08-19 20:31:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12769','2005-08-18 23:26:40.000','926','504','2005-08-25 03:03:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12770','2005-08-18 23:29:00.000','1654','575','2005-08-26 20:57:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12771','2005-08-18 23:29:23.000','3076','484','2005-08-22 17:31:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12772','2005-08-18 23:29:25.000','1179','397','2005-08-23 20:32:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12773','2005-08-18 23:32:19.000','4390','360','2005-08-27 04:40:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12774','2005-08-18 23:34:22.000','3601','21','2005-08-28 05:00:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12775','2005-08-18 23:35:56.000','4374','54','2005-08-26 18:37:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12776','2005-08-18 23:37:33.000','2345','55','2005-08-23 03:07:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12777','2005-08-18 23:39:22.000','3467','130','2005-08-27 20:28:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12778','2005-08-18 23:40:23.000','3626','290','2005-08-19 18:14:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12779','2005-08-18 23:44:00.000','1814','325','2005-08-26 05:27:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12780','2005-08-18 23:48:16.000','54','373','2005-08-20 18:13:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12781','2005-08-18 23:50:24.000','1187','168','2005-08-21 02:31:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12782','2005-08-18 23:56:23.000','1454','495','2005-08-25 18:47:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12783','2005-08-19 00:01:14.000','1109','503','2005-08-21 22:02:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12784','2005-08-19 00:02:46.000','447','513','2005-08-20 04:39:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12785','2005-08-19 00:05:49.000','4190','145','2005-08-21 04:39:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12786','2006-02-14 15:16:03.000','97','512',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12787','2005-08-19 00:07:58.000','2023','278','2005-08-24 00:42:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12788','2005-08-19 00:15:09.000','644','90','2005-08-27 21:54:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12789','2005-08-19 00:16:19.000','2412','557','2005-08-25 00:18:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12790','2005-08-19 00:16:54.000','1281','44','2005-08-26 02:00:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12791','2005-08-19 00:17:09.000','3594','573','2005-08-22 23:46:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12792','2006-02-14 15:16:03.000','1435','405',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12793','2005-08-19 00:20:36.000','1195','403','2005-08-28 02:43:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12794','2005-08-19 00:20:37.000','1586','336','2005-08-26 01:48:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12795','2005-08-19 00:21:52.000','2745','360','2005-08-22 22:13:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12796','2005-08-19 00:22:24.000','1285','368','2005-08-19 22:53:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12797','2005-08-19 00:24:08.000','1595','5','2005-08-21 22:53:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12798','2005-08-19 00:24:33.000','4244','534','2005-08-21 23:01:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12799','2005-08-19 00:27:01.000','3885','197','2005-08-22 03:30:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12800','2005-08-19 00:27:11.000','257','545','2005-08-22 01:08:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12801','2005-08-19 00:27:19.000','960','202','2005-08-26 03:10:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12802','2005-08-19 00:27:41.000','2461','462','2005-08-28 03:24:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12803','2005-08-19 00:28:21.000','1058','390','2005-08-23 02:02:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12804','2005-08-19 00:33:15.000','147','365','2005-08-28 02:16:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12805','2005-08-19 00:36:34.000','2964','345','2005-08-26 20:38:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12806','2005-08-19 00:37:26.000','4488','423','2005-08-23 18:49:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12807','2005-08-19 00:38:46.000','2323','513','2005-08-28 03:37:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12808','2005-08-19 00:40:41.000','3920','55','2005-08-21 06:39:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12809','2005-08-19 00:42:24.000','2005','22','2005-08-23 06:06:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12810','2005-08-19 00:44:10.000','1340','250','2005-08-22 22:30:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12811','2005-08-19 00:51:28.000','641','54','2005-08-24 01:57:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12812','2005-08-19 00:54:02.000','4024','450','2005-08-22 20:35:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12813','2005-08-19 00:54:22.000','3285','500','2005-08-19 21:17:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12814','2005-08-19 00:58:24.000','204','465','2005-08-21 05:46:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12815','2005-08-19 00:59:42.000','435','588','2005-08-25 21:43:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12816','2005-08-19 01:04:05.000','4051','342','2005-08-24 01:25:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12817','2005-08-19 01:04:35.000','1246','113','2005-08-25 21:14:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12818','2005-08-19 01:04:59.000','3069','528','2005-08-26 21:39:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12819','2005-08-19 01:05:05.000','1117','542','2005-08-22 05:50:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12820','2005-08-19 01:05:08.000','2936','127','2005-08-21 05:37:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12821','2005-08-19 01:07:02.000','3418','41','2005-08-23 01:22:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12822','2005-08-19 01:15:24.000','419','426','2005-08-20 06:38:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12823','2005-08-19 01:15:47.000','426','316','2005-08-22 05:32:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12824','2005-08-19 01:18:00.000','1875','247','2005-08-22 01:12:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12825','2005-08-19 01:23:58.000','4495','328','2005-08-20 00:19:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12826','2005-08-19 01:25:11.000','1277','439','2005-08-27 01:22:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12827','2005-08-19 01:27:23.000','880','253','2005-08-27 02:22:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12828','2005-08-19 01:37:47.000','4208','378','2005-08-24 22:31:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12829','2005-08-19 01:38:18.000','1129','326','2005-08-25 22:23:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12830','2005-08-19 01:40:25.000','4080','409','2005-08-20 23:49:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12831','2005-08-19 01:40:43.000','1916','183','2005-08-28 05:22:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12832','2005-08-19 01:41:44.000','2820','563','2005-08-24 23:15:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12833','2005-08-19 01:42:28.000','3723','59','2005-08-26 20:13:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12834','2005-08-19 01:47:30.000','757','133','2005-08-24 20:08:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12835','2005-08-19 01:47:45.000','1477','124','2005-08-26 00:58:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12836','2005-08-19 01:48:33.000','1380','196','2005-08-23 04:46:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12837','2005-08-19 01:51:09.000','2288','495','2005-08-22 07:14:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12838','2005-08-19 01:51:50.000','1207','308','2005-08-27 23:12:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12839','2005-08-19 01:53:43.000','1970','360','2005-08-28 02:27:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12840','2005-08-19 01:54:11.000','2098','182','2005-08-28 01:11:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12841','2005-08-19 01:55:55.000','4233','257','2005-08-24 02:56:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12842','2005-08-19 01:57:21.000','2540','119','2005-08-28 01:10:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12843','2005-08-19 01:58:54.000','3279','128','2005-08-20 00:20:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12844','2005-08-19 01:59:08.000','4146','584','2005-08-24 22:21:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12845','2005-08-19 02:02:37.000','1698','106','2005-08-22 01:08:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12846','2005-08-19 02:03:26.000','286','305','2005-08-25 07:39:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12847','2005-08-19 02:04:07.000','384','91','2005-08-23 20:13:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12848','2005-08-19 02:05:11.000','2833','539','2005-08-24 05:27:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12849','2005-08-19 02:05:37.000','3489','280','2005-08-23 07:00:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12850','2005-08-19 02:08:06.000','1816','440','2005-08-20 21:06:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12851','2005-08-19 02:12:12.000','3311','194','2005-08-25 23:51:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12852','2005-08-19 02:12:40.000','2446','260','2005-08-19 23:42:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12853','2005-08-19 02:15:32.000','3753','232','2005-08-27 21:26:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12854','2005-08-19 02:18:51.000','4577','362','2005-08-24 04:16:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12855','2005-08-19 02:18:58.000','2900','242','2005-08-19 20:50:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12856','2005-08-19 02:19:13.000','132','4','2005-08-23 07:49:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12857','2005-08-19 02:20:13.000','4307','443','2005-08-20 20:20:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12858','2005-08-19 02:22:16.000','3024','144','2005-08-26 07:25:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12859','2005-08-19 02:23:23.000','2289','139','2005-08-28 04:55:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12860','2005-08-19 02:24:41.000','778','548','2005-08-25 07:43:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12861','2005-08-19 02:30:24.000','3115','287','2005-08-22 08:23:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12862','2005-08-19 02:31:59.000','473','198','2005-08-26 08:16:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12863','2005-08-19 02:35:59.000','780','234','2005-08-21 21:13:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12864','2005-08-19 02:38:26.000','4481','465','2005-08-22 21:42:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12865','2005-08-19 02:38:50.000','3437','460','2005-08-21 02:33:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12866','2005-08-19 02:39:47.000','1766','229','2005-08-27 02:14:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12867','2005-08-19 02:40:11.000','4499','330','2005-08-20 04:01:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12868','2005-08-19 02:47:19.000','4054','551','2005-08-20 00:30:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12869','2005-08-19 02:50:36.000','3939','99','2005-08-26 21:38:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12870','2005-08-19 02:54:38.000','991','86','2005-08-27 00:45:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12871','2005-08-19 02:55:36.000','2625','217','2005-08-22 01:00:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12872','2005-08-19 02:57:37.000','1975','54','2005-08-22 23:23:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12873','2005-08-19 03:05:41.000','2140','138','2005-08-22 06:57:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12874','2005-08-19 03:07:57.000','848','254','2005-08-22 22:42:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12875','2005-08-19 03:10:21.000','1708','483','2005-08-26 01:00:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12876','2005-08-19 03:12:19.000','803','356','2005-08-20 02:24:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12877','2005-08-19 03:16:58.000','1016','40','2005-08-25 02:10:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12878','2005-08-19 03:17:08.000','1182','596','2005-08-23 03:44:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12879','2005-08-19 03:22:55.000','3556','210','2005-08-24 22:00:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12880','2005-08-19 03:27:17.000','3386','552','2005-08-28 06:16:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12881','2005-08-19 03:28:13.000','1432','121','2005-08-25 05:25:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12882','2005-08-19 03:33:46.000','911','153','2005-08-21 22:49:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12883','2005-08-19 03:33:47.000','964','555','2005-08-23 21:55:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12884','2005-08-19 03:34:04.000','2768','348','2005-08-28 01:00:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12885','2005-08-19 03:37:25.000','883','185','2005-08-20 22:10:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12886','2005-08-19 03:38:32.000','2157','174','2005-08-26 02:17:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12887','2005-08-19 03:38:54.000','1214','150','2005-08-27 08:45:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12888','2005-08-19 03:41:09.000','4398','146','2005-08-24 07:09:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12889','2005-08-19 03:41:31.000','4376','515','2005-08-27 00:46:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12890','2005-08-19 03:42:08.000','3831','150','2005-08-19 23:08:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12891','2006-02-14 15:16:03.000','2764','388',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12892','2005-08-19 03:46:34.000','1044','121','2005-08-21 05:11:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12893','2005-08-19 03:46:43.000','168','498','2005-08-20 08:38:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12894','2005-08-19 03:49:28.000','4581','541','2005-08-25 01:51:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12895','2005-08-19 03:50:48.000','4372','396','2005-08-26 09:13:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12896','2005-08-19 03:52:44.000','148','220','2005-08-24 22:27:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12897','2006-02-14 15:16:03.000','1512','178',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12898','2005-08-19 03:54:34.000','1555','586','2005-08-23 08:14:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12899','2005-08-19 04:03:34.000','830','105','2005-08-20 08:34:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12900','2005-08-19 04:03:49.000','849','408','2005-08-24 22:11:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12901','2006-02-14 15:16:03.000','2799','180',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12902','2006-02-14 15:16:03.000','464','91',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12903','2005-08-19 04:09:38.000','2340','302','2005-08-26 03:24:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12904','2005-08-19 04:10:50.000','459','257','2005-08-27 23:24:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12905','2005-08-19 04:13:37.000','1043','480','2005-08-26 23:52:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12906','2005-08-19 04:13:43.000','2060','401','2005-08-20 04:24:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12907','2005-08-19 04:16:13.000','2844','422','2005-08-27 02:43:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12908','2005-08-19 04:19:05.000','175','340','2005-08-25 09:50:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12909','2005-08-19 04:20:25.000','4300','210','2005-08-24 06:40:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12910','2005-08-19 04:23:13.000','3968','128','2005-08-20 22:27:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12911','2005-08-19 04:24:10.000','1770','367','2005-08-26 00:35:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12912','2005-08-19 04:24:35.000','1747','364','2005-08-27 07:13:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12913','2005-08-19 04:25:39.000','3719','356','2005-08-25 07:23:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12914','2005-08-19 04:25:59.000','4396','501','2005-08-23 08:04:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12915','2006-02-14 15:16:03.000','2651','516',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12916','2005-08-19 04:27:05.000','2277','157','2005-08-21 02:33:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12917','2005-08-19 04:27:11.000','107','152','2005-08-20 03:04:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12918','2005-08-19 04:31:36.000','972','13','2005-08-25 05:50:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12919','2005-08-19 04:32:15.000','2121','263','2005-08-24 05:56:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12920','2005-08-19 04:32:32.000','2516','511','2005-08-27 00:44:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12921','2005-08-19 04:47:48.000','781','234','2005-08-25 00:07:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12922','2005-08-19 04:48:48.000','342','25','2005-08-23 23:32:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12923','2005-08-19 04:50:20.000','1390','531','2005-08-22 10:42:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12924','2005-08-19 04:51:47.000','3807','519','2005-08-26 07:50:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12925','2005-08-19 04:59:01.000','3361','57','2005-08-27 02:03:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12926','2005-08-19 05:00:16.000','23','336','2005-08-26 06:12:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12927','2005-08-19 05:02:46.000','1171','223','2005-08-23 01:08:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12928','2005-08-19 05:04:09.000','4531','353','2005-08-24 09:09:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12929','2005-08-19 05:05:23.000','1531','310','2005-08-25 04:37:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12930','2005-08-19 05:11:32.000','4410','414','2005-08-22 02:20:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12931','2005-08-19 05:11:47.000','3070','407','2005-08-21 00:59:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12932','2005-08-19 05:17:30.000','2295','416','2005-08-21 09:24:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12933','2005-08-19 05:18:20.000','4103','589','2005-08-27 00:13:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12934','2005-08-19 05:18:42.000','3242','591','2005-08-24 10:42:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12935','2005-08-19 05:20:25.000','193','279','2005-08-21 03:10:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12936','2005-08-19 05:25:06.000','654','387','2005-08-28 08:21:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12937','2005-08-19 05:25:30.000','3826','348','2005-08-22 10:40:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12938','2006-02-14 15:16:03.000','3987','28',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12939','2005-08-19 05:38:25.000','3375','181','2005-08-23 23:52:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12940','2005-08-19 05:38:29.000','2222','340','2005-08-20 08:15:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12941','2005-08-19 05:39:26.000','2951','195','2005-08-22 09:50:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12942','2005-08-19 05:40:36.000','3938','103','2005-08-27 02:04:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12943','2005-08-19 05:46:26.000','3930','547','2005-08-22 03:26:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12944','2005-08-19 05:48:12.000','2956','148','2005-08-28 10:10:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12945','2005-08-19 05:51:46.000','3638','312','2005-08-23 11:22:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12946','2005-08-19 05:53:34.000','2066','444','2005-08-20 07:30:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12947','2005-08-19 05:54:21.000','935','499','2005-08-22 09:17:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12948','2005-08-19 05:55:14.000','4173','442','2005-08-22 01:05:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12949','2005-08-19 05:55:52.000','4209','279','2005-08-23 00:01:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12950','2005-08-19 05:55:58.000','1064','463','2005-08-23 08:05:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12951','2005-08-19 05:56:44.000','2143','70','2005-08-24 11:28:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12952','2005-08-19 06:00:52.000','2460','228','2005-08-20 02:17:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12953','2005-08-19 06:04:07.000','3954','429','2005-08-28 11:05:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12954','2005-08-19 06:04:34.000','3592','63','2005-08-28 02:12:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12955','2005-08-19 06:05:58.000','2040','410','2005-08-26 04:24:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12956','2005-08-19 06:06:26.000','3613','241','2005-08-28 08:37:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12957','2005-08-19 06:12:44.000','2219','512','2005-08-28 10:49:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12958','2005-08-19 06:19:21.000','4214','569','2005-08-20 02:21:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12959','2006-02-14 15:16:03.000','1540','284',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12960','2005-08-19 06:21:52.000','3498','152','2005-08-25 04:16:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12961','2005-08-19 06:22:37.000','4529','386','2005-08-23 00:49:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12962','2005-08-19 06:22:48.000','575','171','2005-08-27 07:47:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12963','2005-08-19 06:26:04.000','1521','2','2005-08-23 11:37:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12964','2005-08-19 06:29:13.000','2854','142','2005-08-22 12:23:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12965','2005-08-19 06:33:00.000','4308','430','2005-08-22 02:02:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12966','2005-08-19 06:37:48.000','3196','69','2005-08-26 03:59:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12967','2005-08-19 06:37:51.000','3404','170','2005-08-25 06:58:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12968','2005-08-19 06:38:18.000','3108','166','2005-08-20 08:29:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12969','2005-08-19 06:38:59.000','191','224','2005-08-25 09:09:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12970','2006-02-14 15:16:03.000','3999','216',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12971','2005-08-19 06:42:43.000','3504','492','2005-08-23 10:49:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12972','2005-08-19 06:43:28.000','1218','55','2005-08-27 11:30:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12973','2005-08-19 06:48:11.000','128','163','2005-08-22 07:18:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12974','2005-08-19 06:51:02.000','3599','218','2005-08-25 11:48:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12975','2005-08-19 06:51:19.000','3300','236','2005-08-25 04:22:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12976','2005-08-19 06:52:58.000','66','592','2005-08-26 11:23:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12977','2005-08-19 06:55:33.000','2004','388','2005-08-27 07:38:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12978','2005-08-19 06:57:27.000','3252','167','2005-08-20 09:10:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12979','2005-08-19 07:00:35.000','1227','267','2005-08-21 06:12:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12980','2005-08-19 07:03:14.000','1854','144','2005-08-26 05:07:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12981','2005-08-19 07:04:00.000','3925','481','2005-08-21 09:17:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12982','2005-08-19 07:06:34.000','1258','44','2005-08-21 06:53:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12983','2005-08-19 07:06:51.000','406','148','2005-08-28 10:35:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12984','2005-08-19 07:06:51.000','4211','537','2005-08-22 04:04:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12985','2005-08-19 07:08:05.000','4133','83','2005-08-24 02:25:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12986','2005-08-19 07:09:36.000','1145','210','2005-08-22 05:01:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12987','2005-08-19 07:11:44.000','3665','134','2005-08-20 04:17:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12988','2006-02-14 15:16:03.000','81','236',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12989','2005-08-19 07:19:04.000','2929','306','2005-08-21 10:58:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12990','2005-08-19 07:20:39.000','1825','360','2005-08-21 12:31:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12991','2005-08-19 07:21:24.000','2227','126','2005-08-21 04:31:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12992','2005-08-19 07:23:06.000','3022','597','2005-08-23 06:11:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12993','2005-08-19 07:24:03.000','4225','484','2005-08-26 07:15:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12994','2005-08-19 07:26:10.000','3809','506','2005-08-20 07:02:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12995','2005-08-19 07:26:30.000','2069','566','2005-08-25 12:47:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12996','2005-08-19 07:31:32.000','4445','380','2005-08-25 11:59:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12997','2005-08-19 07:31:46.000','1661','311','2005-08-24 09:20:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12998','2005-08-19 07:32:16.000','2301','354','2005-08-24 01:56:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('12999','2005-08-19 07:34:53.000','661','24','2005-08-26 03:57:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13000','2005-08-19 07:36:42.000','2341','141','2005-08-22 08:50:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13001','2005-08-19 07:36:44.000','2505','254','2005-08-22 13:06:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13002','2005-08-19 07:37:58.000','3892','477','2005-08-26 11:32:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13003','2005-08-19 07:39:29.000','3431','451','2005-08-23 05:48:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13004','2005-08-19 07:40:08.000','771','442','2005-08-20 11:49:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13005','2005-08-19 07:45:42.000','3417','104','2005-08-20 12:45:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13006','2005-08-19 07:47:16.000','3157','134','2005-08-21 06:17:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13007','2005-08-19 07:47:43.000','4280','430','2005-08-26 02:48:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13008','2006-02-14 15:16:03.000','1838','181',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13009','2005-08-19 07:50:35.000','677','376','2005-08-21 06:04:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13010','2005-08-19 07:52:21.000','825','413','2005-08-27 12:51:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13011','2005-08-19 07:53:58.000','1998','529','2005-08-24 12:00:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13012','2005-08-19 07:54:59.000','1690','145','2005-08-26 09:50:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13013','2005-08-19 07:55:51.000','841','293','2005-08-26 05:14:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13014','2005-08-19 07:56:08.000','3400','344','2005-08-21 10:20:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13015','2005-08-19 07:56:51.000','3461','126','2005-08-28 07:05:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13016','2005-08-19 07:57:14.000','3095','175','2005-08-23 03:29:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13017','2005-08-19 08:02:24.000','2160','104','2005-08-26 07:32:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13018','2005-08-19 08:04:50.000','2122','168','2005-08-26 11:46:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13019','2005-08-19 08:07:43.000','2827','597','2005-08-20 12:09:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13020','2005-08-19 08:07:50.000','4501','92','2005-08-28 11:42:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13021','2005-08-19 08:08:04.000','1242','309','2005-08-26 12:04:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13022','2006-02-14 15:16:03.000','2266','336',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13023','2005-08-19 08:13:54.000','1566','69','2005-08-27 13:18:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13024','2005-08-19 08:19:21.000','2917','401','2005-08-27 05:18:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13025','2006-02-14 15:16:03.000','4066','269',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13026','2005-08-19 08:22:45.000','3026','79','2005-08-21 09:31:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13027','2005-08-19 08:25:16.000','3756','128','2005-08-25 13:42:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13028','2005-08-19 08:27:23.000','2165','371','2005-08-24 03:46:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13029','2005-08-19 08:28:04.000','3283','293','2005-08-22 12:25:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13030','2005-08-19 08:28:11.000','2614','240','2005-08-24 07:20:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13031','2005-08-19 08:30:04.000','1525','567','2005-08-23 09:35:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13032','2005-08-19 08:31:50.000','3699','82','2005-08-23 04:00:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13033','2005-08-19 08:34:39.000','1682','344','2005-08-28 10:13:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13034','2005-08-19 08:41:29.000','990','387','2005-08-20 07:36:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13035','2005-08-19 08:46:45.000','4082','135','2005-08-22 11:42:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13036','2005-08-19 08:48:37.000','1469','20','2005-08-22 04:13:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13037','2005-08-19 08:53:57.000','65','275','2005-08-28 08:56:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13038','2005-08-19 08:55:16.000','2226','532','2005-08-25 12:23:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13039','2005-08-19 08:55:19.000','1952','370','2005-08-20 07:39:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13040','2005-08-19 09:04:24.000','4113','425','2005-08-23 12:36:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13041','2005-08-19 09:05:38.000','1576','462','2005-08-27 06:34:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13042','2005-08-19 09:06:08.000','1047','414','2005-08-22 13:46:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13043','2005-08-19 09:07:13.000','24','127','2005-08-27 07:49:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13044','2005-08-19 09:14:31.000','809','142','2005-08-20 11:16:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13045','2005-08-19 09:17:35.000','389','254','2005-08-23 12:04:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13046','2005-08-19 09:21:10.000','965','37','2005-08-26 13:00:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13047','2005-08-19 09:24:49.000','2704','394','2005-08-24 11:06:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13048','2005-08-19 09:25:06.000','1029','486','2005-08-28 11:18:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13049','2005-08-19 09:25:40.000','4122','53','2005-08-27 10:19:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13050','2005-08-19 09:31:23.000','3682','131','2005-08-26 06:56:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13051','2005-08-19 09:31:33.000','4064','90','2005-08-28 06:15:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13052','2005-08-19 09:31:42.000','3036','502','2005-08-28 15:11:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13053','2005-08-19 09:31:48.000','2044','140','2005-08-28 07:51:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13054','2005-08-19 09:34:02.000','2983','325','2005-08-23 05:25:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13055','2005-08-19 09:36:28.000','3580','485','2005-08-24 05:53:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13056','2006-02-14 15:16:03.000','3751','115',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13057','2005-08-19 09:40:05.000','876','105','2005-08-28 13:22:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13058','2005-08-19 09:40:53.000','2437','24','2005-08-26 05:48:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13059','2005-08-19 09:42:01.000','3810','341','2005-08-21 12:07:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13060','2005-08-19 09:43:25.000','507','22','2005-08-28 15:22:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13061','2005-08-19 09:43:39.000','730','576','2005-08-24 10:03:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13062','2005-08-19 09:44:17.000','1790','385','2005-08-27 11:42:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13063','2005-08-19 09:45:41.000','1192','5','2005-08-24 09:11:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13064','2005-08-19 09:46:53.000','4131','588','2005-08-21 08:29:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13065','2005-08-19 09:48:52.000','1887','518','2005-08-22 07:12:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13066','2005-08-19 09:50:39.000','3730','336','2005-08-22 14:01:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13067','2005-08-19 09:51:17.000','3825','172','2005-08-25 09:58:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13068','2005-08-19 09:55:16.000','3019','1','2005-08-20 14:44:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13069','2005-08-19 09:55:20.000','368','299','2005-08-24 04:10:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13070','2005-08-19 09:56:23.000','2214','235','2005-08-24 09:08:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13071','2005-08-19 10:01:07.000','527','578','2005-08-26 14:26:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13072','2005-08-19 10:03:30.000','2313','447','2005-08-22 14:27:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13073','2005-08-19 10:05:38.000','855','506','2005-08-26 07:37:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13074','2005-08-19 10:06:53.000','3266','341','2005-08-28 09:56:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13075','2005-08-19 10:10:10.000','4125','224','2005-08-21 08:44:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13076','2005-08-19 10:10:26.000','1226','201','2005-08-22 05:41:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13077','2005-08-19 10:15:19.000','433','241','2005-08-21 06:51:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13078','2005-08-19 10:16:43.000','4104','479','2005-08-27 11:35:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13079','2006-02-14 15:16:03.000','733','107',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13080','2005-08-19 10:18:00.000','4222','452','2005-08-22 06:37:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13081','2005-08-19 10:19:06.000','3077','170','2005-08-20 05:49:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13082','2005-08-19 10:19:19.000','2117','387','2005-08-28 05:02:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13083','2005-08-19 10:26:45.000','3469','455','2005-08-23 05:31:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13084','2005-08-19 10:27:25.000','3792','204','2005-08-26 07:32:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13085','2005-08-19 10:28:22.000','360','215','2005-08-22 07:37:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13086','2005-08-19 10:32:28.000','3712','350','2005-08-26 07:57:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13087','2005-08-19 10:33:52.000','2693','171','2005-08-27 09:15:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13088','2005-08-19 10:36:11.000','4281','457','2005-08-21 09:12:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13089','2005-08-19 10:38:56.000','1783','63','2005-08-24 12:41:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13090','2005-08-19 10:39:54.000','1447','52','2005-08-28 10:31:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13091','2005-08-19 10:40:10.000','1815','127','2005-08-23 09:03:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13092','2005-08-19 10:41:09.000','4359','480','2005-08-25 05:11:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13093','2005-08-19 10:46:16.000','1667','160','2005-08-26 08:05:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13094','2005-08-19 10:47:58.000','3178','494','2005-08-21 06:20:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13095','2005-08-19 10:48:10.000','520','508','2005-08-28 06:15:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13096','2005-08-19 10:49:03.000','420','13','2005-08-21 05:33:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13097','2005-08-19 10:50:43.000','4194','157','2005-08-24 11:10:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13098','2005-08-19 10:51:59.000','3770','51','2005-08-24 11:27:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13099','2005-08-19 10:55:19.000','969','436','2005-08-27 10:54:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13100','2005-08-19 10:55:45.000','916','451','2005-08-25 12:28:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13101','2005-08-19 11:01:54.000','1804','39','2005-08-27 16:06:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13102','2005-08-19 11:02:03.000','2885','285','2005-08-28 13:05:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13103','2005-08-19 11:05:51.000','1751','274','2005-08-26 09:16:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13104','2005-08-19 11:06:06.000','310','591','2005-08-21 13:50:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13105','2005-08-19 11:06:16.000','729','279','2005-08-27 15:21:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13106','2006-02-14 15:16:03.000','3212','440',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13107','2005-08-19 11:13:58.000','3870','356','2005-08-20 15:03:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13108','2006-02-14 15:16:03.000','3630','73',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13109','2005-08-19 11:23:20.000','46','259','2005-08-25 17:05:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13110','2005-08-19 11:24:37.000','62','447','2005-08-21 05:48:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13111','2005-08-19 11:25:10.000','580','26','2005-08-21 05:52:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13112','2005-08-19 11:27:10.000','2074','259','2005-08-22 05:32:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13113','2005-08-19 11:27:20.000','2393','573','2005-08-23 12:40:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13114','2005-08-19 11:27:32.000','4342','550','2005-08-28 11:21:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13115','2005-08-19 11:27:43.000','1961','84','2005-08-20 10:58:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13116','2005-08-19 11:31:41.000','1544','150','2005-08-27 16:05:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13117','2005-08-19 11:33:20.000','3430','385','2005-08-20 11:55:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13118','2005-08-19 11:39:58.000','470','181','2005-08-25 14:44:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13119','2005-08-19 11:44:59.000','1401','240','2005-08-20 12:30:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13120','2005-08-19 11:47:38.000','2273','314','2005-08-26 08:20:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13121','2005-08-19 11:51:39.000','3517','251','2005-08-22 11:50:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13122','2005-08-19 11:53:49.000','3319','277','2005-08-26 16:01:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13123','2005-08-19 11:55:13.000','2804','220','2005-08-21 05:55:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13124','2005-08-19 11:55:59.000','2105','78','2005-08-26 06:01:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13125','2005-08-19 11:57:49.000','3722','192','2005-08-26 07:53:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13126','2005-08-19 12:00:28.000','1392','253','2005-08-28 17:27:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13127','2005-08-19 12:04:03.000','2582','178','2005-08-27 13:56:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13128','2005-08-19 12:04:16.000','485','206','2005-08-26 16:06:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13129','2005-08-19 12:05:04.000','4455','274','2005-08-26 10:24:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13130','2005-08-19 12:06:42.000','2006','254','2005-08-23 12:08:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13131','2005-08-19 12:08:13.000','1466','480','2005-08-27 13:43:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13132','2005-08-19 12:10:57.000','1748','529','2005-08-27 12:22:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13133','2005-08-19 12:11:03.000','1635','523','2005-08-28 12:36:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13134','2005-08-19 12:14:14.000','1354','184','2005-08-20 11:52:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13135','2005-08-19 12:22:52.000','1585','361','2005-08-21 14:04:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13136','2005-08-19 12:24:23.000','2532','50','2005-08-28 08:37:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13137','2005-08-19 12:26:32.000','4431','20','2005-08-22 13:26:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13138','2005-08-19 12:30:01.000','3138','214','2005-08-21 06:35:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13139','2005-08-19 12:32:10.000','2099','554','2005-08-24 12:12:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13140','2005-08-19 12:35:56.000','4210','323','2005-08-27 18:24:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13141','2005-08-19 12:41:41.000','4545','376','2005-08-21 08:17:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13142','2005-08-19 12:42:28.000','1404','269','2005-08-26 14:52:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13143','2005-08-19 12:44:38.000','1655','371','2005-08-25 10:59:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13144','2005-08-19 12:45:55.000','3766','456','2005-08-27 10:37:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13145','2005-08-19 12:53:53.000','1383','72','2005-08-23 08:06:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13146','2005-08-19 12:54:42.000','1463','116','2005-08-26 07:31:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13147','2005-08-19 12:55:09.000','3490','37','2005-08-22 18:10:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13148','2005-08-19 12:55:30.000','1762','137','2005-08-21 11:01:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13149','2005-08-19 13:07:12.000','1436','40','2005-08-28 18:12:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13150','2005-08-19 13:08:19.000','1514','457','2005-08-25 18:00:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13151','2005-08-19 13:08:23.000','3045','16','2005-08-20 12:38:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13152','2005-08-19 13:09:32.000','3571','597','2005-08-25 14:47:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13153','2005-08-19 13:09:47.000','3896','431','2005-08-23 17:35:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13154','2005-08-19 13:09:54.000','2465','255','2005-08-26 16:40:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13155','2005-08-19 13:10:23.000','290','442','2005-08-25 19:07:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13156','2005-08-19 13:10:42.000','770','512','2005-08-25 15:08:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13157','2005-08-19 13:12:28.000','4391','592','2005-08-20 10:41:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13158','2005-08-19 13:18:10.000','944','327','2005-08-25 09:27:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13159','2005-08-19 13:19:59.000','2300','497','2005-08-21 09:22:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13160','2005-08-19 13:21:04.000','410','484','2005-08-22 18:49:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13161','2006-02-14 15:16:03.000','986','175',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13162','2005-08-19 13:28:26.000','1845','478','2005-08-24 17:37:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13163','2005-08-19 13:29:46.000','3068','57','2005-08-22 07:48:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13164','2005-08-19 13:30:55.000','1104','145','2005-08-26 10:12:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13165','2005-08-19 13:34:10.000','138','289','2005-08-21 18:33:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13166','2005-08-19 13:36:28.000','4386','504','2005-08-22 07:57:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13167','2005-08-19 13:36:41.000','557','120','2005-08-23 15:29:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13168','2005-08-19 13:37:28.000','2210','186','2005-08-27 17:54:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13169','2005-08-19 13:43:35.000','1709','141','2005-08-26 09:31:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13170','2005-08-19 13:45:48.000','1072','176','2005-08-27 11:00:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13171','2005-08-19 13:48:54.000','1765','122','2005-08-27 18:57:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13172','2005-08-19 13:49:07.000','1301','298','2005-08-20 19:39:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13173','2005-08-19 13:50:36.000','1304','29','2005-08-26 12:34:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13174','2005-08-19 13:52:50.000','2303','482','2005-08-22 14:43:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13175','2005-08-19 13:54:53.000','3187','239','2005-08-20 16:25:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13176','2005-08-19 13:56:54.000','2269','1','2005-08-23 08:50:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13177','2005-08-19 13:56:58.000','3172','126','2005-08-23 13:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13178','2006-02-14 15:16:03.000','693','394',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13179','2005-08-19 13:59:53.000','1624','104','2005-08-25 12:10:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13180','2005-08-19 14:00:38.000','3443','322','2005-08-20 09:56:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13181','2005-08-19 14:00:56.000','1256','128','2005-08-24 13:52:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13182','2006-02-14 15:16:03.000','364','496',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13183','2005-08-19 14:09:26.000','2404','301','2005-08-28 08:44:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13184','2005-08-19 14:16:18.000','4395','393','2005-08-20 08:44:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13185','2005-08-19 14:22:30.000','241','174','2005-08-20 10:13:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13186','2005-08-19 14:23:19.000','2802','176','2005-08-28 11:26:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13187','2005-08-19 14:24:48.000','1944','543','2005-08-20 19:37:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13188','2005-08-19 14:27:03.000','583','472','2005-08-28 09:15:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13189','2005-08-19 14:27:16.000','3444','368','2005-08-28 10:34:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13190','2005-08-19 14:27:59.000','4316','290','2005-08-26 13:45:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13191','2005-08-19 14:28:48.000','2753','371','2005-08-23 12:53:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13192','2005-08-19 14:30:06.000','966','532','2005-08-27 15:20:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13193','2005-08-19 14:33:45.000','523','118','2005-08-28 08:46:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13194','2005-08-19 14:34:12.000','2473','58','2005-08-26 10:18:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13195','2005-08-19 14:39:14.000','2537','565','2005-08-24 10:30:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13196','2005-08-19 14:40:32.000','458','202','2005-08-26 18:15:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13197','2005-08-19 14:44:03.000','3190','358','2005-08-22 10:11:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13198','2005-08-19 14:47:18.000','4273','169','2005-08-21 18:09:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13199','2005-08-19 14:53:22.000','4291','339','2005-08-27 19:03:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13200','2005-08-19 14:55:58.000','2746','577','2005-08-27 11:35:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13201','2005-08-19 14:56:05.000','111','508','2005-08-25 14:37:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13202','2005-08-19 14:58:30.000','3546','381','2005-08-27 17:10:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13203','2005-08-19 15:00:58.000','804','257','2005-08-27 15:38:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13204','2005-08-19 15:02:48.000','4524','152','2005-08-24 18:07:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13205','2005-08-19 15:05:26.000','2616','495','2005-08-25 10:41:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13206','2005-08-19 15:05:34.000','2477','504','2005-08-21 20:37:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13207','2005-08-19 15:14:38.000','674','58','2005-08-27 16:09:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13208','2005-08-19 15:18:55.000','609','435','2005-08-24 11:59:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13209','2006-02-14 15:16:03.000','1574','5',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13210','2005-08-19 15:23:38.000','2789','487','2005-08-21 11:57:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13211','2005-08-19 15:23:41.000','1968','289','2005-08-22 16:58:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13212','2005-08-19 15:24:07.000','3691','158','2005-08-24 21:03:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13213','2005-08-19 15:25:48.000','1546','13','2005-08-22 09:32:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13214','2005-08-19 15:31:06.000','2675','157','2005-08-20 19:58:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13215','2005-08-19 15:35:38.000','3740','460','2005-08-27 12:16:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13216','2005-08-19 15:36:05.000','4335','422','2005-08-25 19:03:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13217','2005-08-19 15:38:39.000','616','565','2005-08-21 14:33:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13218','2005-08-19 15:39:39.000','4148','257','2005-08-22 17:28:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13219','2005-08-19 15:40:28.000','2075','288','2005-08-22 21:20:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13220','2005-08-19 15:42:32.000','1017','448','2005-08-25 13:37:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13221','2005-08-19 15:45:47.000','120','468','2005-08-26 21:10:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13222','2005-08-19 15:47:58.000','1656','91','2005-08-26 12:43:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13223','2005-08-19 15:52:04.000','332','461','2005-08-22 16:27:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13224','2005-08-19 15:52:13.000','3086','526','2005-08-28 20:53:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13225','2005-08-19 15:54:33.000','1420','562','2005-08-25 16:40:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13226','2005-08-19 16:05:36.000','2850','46','2005-08-21 10:07:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13227','2005-08-19 16:05:38.000','2759','288','2005-08-20 21:39:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13228','2005-08-19 16:08:16.000','2497','571','2005-08-20 18:55:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13229','2005-08-19 16:08:33.000','634','283','2005-08-22 19:54:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13230','2005-08-19 16:12:07.000','3645','151','2005-08-21 12:19:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13231','2005-08-19 16:12:49.000','2126','280','2005-08-27 17:14:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13232','2005-08-19 16:13:32.000','2370','206','2005-08-28 14:42:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13233','2005-08-19 16:14:41.000','1057','279','2005-08-24 21:13:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13234','2005-08-19 16:17:15.000','976','559','2005-08-27 12:36:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13235','2005-08-19 16:17:53.000','3902','367','2005-08-27 14:57:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13236','2005-08-19 16:18:24.000','4574','267','2005-08-27 17:48:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13237','2005-08-19 16:18:36.000','1272','169','2005-08-25 15:22:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13238','2005-08-19 16:20:56.000','985','348','2005-08-23 15:51:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13239','2005-08-19 16:22:13.000','3296','541','2005-08-23 19:26:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13240','2005-08-19 16:22:14.000','1411','179','2005-08-20 13:24:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13241','2005-08-19 16:25:00.000','3106','33','2005-08-26 12:27:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13242','2005-08-19 16:28:47.000','230','414','2005-08-24 22:13:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13243','2005-08-19 16:33:16.000','355','251','2005-08-25 13:19:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13244','2005-08-19 16:43:04.000','3246','298','2005-08-22 15:21:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13245','2005-08-19 16:43:41.000','1001','261','2005-08-20 21:17:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13246','2006-02-14 15:16:03.000','1849','411',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13247','2005-08-19 16:45:59.000','1271','24','2005-08-25 15:25:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13248','2005-08-19 16:47:41.000','2864','559','2005-08-28 18:11:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13249','2005-08-19 16:47:41.000','3084','377','2005-08-20 13:30:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13250','2005-08-19 16:47:55.000','2524','448','2005-08-26 16:54:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13251','2005-08-19 16:48:37.000','4216','111','2005-08-20 16:33:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13252','2005-08-19 16:50:50.000','775','451','2005-08-22 22:09:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13253','2005-08-19 16:53:56.000','472','399','2005-08-20 11:38:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13254','2005-08-19 16:54:01.000','3412','532','2005-08-27 19:50:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13255','2005-08-19 16:54:12.000','1101','150','2005-08-28 17:00:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13256','2005-08-19 16:54:12.000','2719','289','2005-08-28 16:54:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13257','2005-08-19 17:01:20.000','164','300','2005-08-24 17:26:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13258','2005-08-19 17:05:37.000','2246','349','2005-08-24 17:36:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13259','2005-08-19 17:08:53.000','2518','458','2005-08-23 14:14:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13260','2005-08-19 17:09:22.000','578','251','2005-08-24 21:31:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13261','2006-02-14 15:16:03.000','3538','417',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13262','2005-08-19 17:20:15.000','4483','184','2005-08-26 18:28:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13263','2005-08-19 17:26:55.000','214','206','2005-08-28 20:07:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13264','2005-08-19 17:27:10.000','1881','109','2005-08-27 16:00:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13265','2005-08-19 17:29:00.000','3933','314','2005-08-20 12:59:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13266','2005-08-19 17:31:20.000','1326','571','2005-08-21 11:41:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13267','2005-08-19 17:31:36.000','550','335','2005-08-21 13:47:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13268','2005-08-19 17:33:50.000','1166','255','2005-08-25 17:15:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13269','2005-08-19 17:34:00.000','2382','461','2005-08-20 15:17:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13270','2005-08-19 17:41:16.000','405','159','2005-08-23 20:22:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13271','2005-08-19 17:42:06.000','3872','242','2005-08-27 18:39:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13272','2005-08-19 17:49:13.000','2531','145','2005-08-23 15:49:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13273','2005-08-19 17:49:13.000','4181','433','2005-08-21 14:15:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13274','2005-08-19 17:50:03.000','704','272','2005-08-20 14:39:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13275','2005-08-19 17:53:38.000','710','377','2005-08-23 16:29:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13276','2005-08-19 17:53:42.000','625','516','2005-08-28 20:49:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13277','2005-08-19 17:57:35.000','3820','316','2005-08-25 15:45:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13278','2005-08-19 17:57:53.000','2691','282','2005-08-22 23:16:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13279','2005-08-19 18:02:18.000','2472','343','2005-08-24 22:15:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13280','2005-08-19 18:02:51.000','218','368','2005-08-21 23:17:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13281','2005-08-19 18:07:47.000','113','220','2005-08-20 21:51:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13282','2005-08-19 18:08:18.000','4373','59','2005-08-24 14:08:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13283','2005-08-19 18:10:19.000','2602','180','2005-08-23 16:09:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13284','2005-08-19 18:12:31.000','2128','338','2005-08-25 21:26:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13285','2005-08-19 18:18:44.000','2139','182','2005-08-20 12:33:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13286','2005-08-19 18:28:07.000','2685','245','2005-08-22 17:23:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13287','2005-08-19 18:28:24.000','2716','569','2005-08-26 20:13:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13288','2005-08-19 18:30:10.000','3558','162','2005-08-20 19:20:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13289','2005-08-19 18:31:30.000','3527','497','2005-08-20 13:43:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13290','2005-08-19 18:31:50.000','4174','23','2005-08-25 15:49:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13291','2005-08-19 18:32:11.000','1631','243','2005-08-20 18:22:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13292','2005-08-19 18:35:32.000','1336','171','2005-08-22 00:27:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13293','2005-08-19 18:35:52.000','380','399','2005-08-23 17:18:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13294','2005-08-19 18:36:35.000','156','534','2005-08-20 13:57:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13295','2006-02-14 15:16:03.000','2408','229',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13296','2005-08-19 18:43:53.000','1728','300','2005-08-21 23:30:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13297','2005-08-19 18:45:49.000','3818','359','2005-08-22 14:58:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13298','2006-02-14 15:16:03.000','2133','361',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13299','2005-08-19 18:46:33.000','4385','373','2005-08-22 20:45:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13300','2005-08-19 18:46:56.000','842','531','2005-08-28 20:23:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13301','2005-08-19 18:53:15.000','2261','494','2005-08-26 21:37:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13302','2005-08-19 18:54:26.000','4041','51','2005-08-21 23:01:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13303','2005-08-19 18:55:21.000','34','184','2005-08-23 18:49:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13304','2005-08-19 18:56:32.000','2979','405','2005-08-23 20:04:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13305','2005-08-19 18:57:05.000','2386','337','2005-08-28 22:28:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13306','2005-08-19 18:57:29.000','2742','229','2005-08-20 20:09:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13307','2005-08-19 18:58:44.000','2242','547','2005-08-22 00:15:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13308','2005-08-19 18:59:42.000','3189','414','2005-08-28 13:21:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13309','2005-08-19 19:04:00.000','2108','91','2005-08-28 23:08:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13310','2005-08-19 19:05:16.000','2563','311','2005-08-23 22:47:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13311','2005-08-19 19:07:09.000','3890','520','2005-08-20 23:07:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13312','2005-08-19 19:09:14.000','2891','418','2005-08-23 00:50:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13313','2005-08-19 19:11:41.000','3709','580','2005-08-21 23:53:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13314','2005-08-19 19:12:43.000','2899','347','2005-08-27 00:20:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13315','2005-08-19 19:16:18.000','3151','54','2005-08-21 20:58:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13316','2005-08-19 19:23:30.000','4450','10','2005-08-22 23:37:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13317','2005-08-19 19:25:42.000','3349','20','2005-08-20 20:57:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13318','2005-08-19 19:33:57.000','1389','413','2005-08-21 17:52:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13319','2005-08-19 19:35:13.000','2496','438','2005-08-27 17:59:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13320','2005-08-19 19:35:33.000','4522','172','2005-08-24 20:09:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13321','2005-08-19 19:40:37.000','4183','280','2005-08-21 19:09:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13322','2005-08-19 19:43:08.000','2149','559','2005-08-24 16:30:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13323','2005-08-19 19:48:07.000','1055','133','2005-08-23 15:28:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13324','2005-08-19 19:51:00.000','4349','564','2005-08-20 20:26:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13325','2005-08-19 19:52:02.000','2388','334','2005-08-22 21:14:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13326','2005-08-19 19:52:52.000','429','576','2005-08-20 18:56:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13327','2005-08-19 19:55:45.000','1808','72','2005-08-22 15:05:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13328','2005-08-19 19:56:01.000','605','462','2005-08-20 22:16:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13329','2005-08-19 19:56:55.000','3136','373','2005-08-25 01:19:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13330','2005-08-19 19:59:21.000','4276','297','2005-08-20 15:34:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13331','2005-08-19 20:00:25.000','3867','23','2005-08-21 17:03:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13332','2005-08-19 20:00:51.000','3144','503','2005-08-25 14:30:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13333','2006-02-14 15:16:03.000','1092','64',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13334','2005-08-19 20:02:33.000','461','379','2005-08-22 00:45:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13335','2005-08-19 20:03:18.000','1861','74','2005-08-24 20:09:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13336','2005-08-19 20:03:22.000','1011','289','2005-08-24 23:42:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13337','2005-08-19 20:06:57.000','3584','374','2005-08-20 16:31:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13338','2005-08-19 20:09:59.000','3739','86','2005-08-23 22:59:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13339','2005-08-19 20:18:36.000','1428','15','2005-08-28 21:34:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13340','2005-08-19 20:18:39.000','4358','45','2005-08-28 21:06:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13341','2005-08-19 20:18:53.000','1749','460','2005-08-27 14:36:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13342','2005-08-19 20:21:36.000','3476','172','2005-08-21 16:26:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13343','2005-08-19 20:22:08.000','1032','591','2005-08-27 17:21:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13344','2005-08-19 20:22:44.000','4392','514','2005-08-25 18:39:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13345','2005-08-19 20:25:24.000','47','55','2005-08-27 20:38:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13346','2005-08-19 20:28:21.000','4541','131','2005-08-28 00:28:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13347','2005-08-19 20:28:48.000','4038','562','2005-08-28 19:33:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13348','2005-08-19 20:31:48.000','275','456','2005-08-21 21:01:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13349','2005-08-19 20:43:16.000','4262','234','2005-08-20 16:21:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13350','2005-08-19 20:44:00.000','3523','214','2005-08-27 01:23:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13351','2006-02-14 15:16:03.000','4130','42',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13352','2005-08-19 20:51:40.000','2689','80','2005-08-24 01:22:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13353','2005-08-19 20:53:43.000','2790','131','2005-08-25 01:25:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13354','2005-08-19 20:55:23.000','1356','213','2005-08-27 20:09:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13355','2005-08-19 20:59:19.000','585','396','2005-08-23 21:44:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13356','2005-08-19 21:02:21.000','2713','324','2005-08-24 00:31:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13357','2005-08-19 21:02:59.000','3295','393','2005-08-25 23:46:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13358','2005-08-19 21:04:20.000','1510','439','2005-08-24 20:49:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13359','2005-08-19 21:04:49.000','4175','434','2005-08-27 01:46:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13360','2005-08-19 21:05:11.000','3396','327','2005-08-24 16:05:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13361','2005-08-19 21:07:22.000','4289','107','2005-08-21 21:26:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13362','2005-08-19 21:07:54.000','869','565','2005-08-20 17:29:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13363','2005-08-19 21:07:59.000','588','288','2005-08-21 17:08:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13364','2005-08-19 21:09:30.000','2773','236','2005-08-25 18:37:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13365','2005-08-19 21:12:37.000','4136','307','2005-08-25 19:56:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13366','2005-08-19 21:14:45.000','602','259','2005-08-21 03:06:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13367','2005-08-19 21:19:27.000','4569','290','2005-08-24 15:22:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13368','2005-08-19 21:19:35.000','1073','342','2005-08-21 16:12:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13369','2005-08-19 21:19:47.000','2728','116','2005-08-24 23:25:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13370','2005-08-19 21:20:11.000','239','101','2005-08-25 22:51:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13371','2005-08-19 21:21:47.000','3401','34','2005-08-26 16:17:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13372','2005-08-19 21:23:19.000','3366','150','2005-08-24 22:12:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13373','2005-08-19 21:23:31.000','4045','7','2005-08-25 22:38:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13374','2006-02-14 15:16:03.000','2721','227',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13375','2005-08-19 21:31:31.000','949','120','2005-08-29 00:17:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13376','2005-08-19 21:31:45.000','898','40','2005-08-22 01:14:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13377','2005-08-19 21:32:23.000','1316','572','2005-08-25 22:24:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13378','2005-08-19 21:33:35.000','2708','368','2005-08-20 22:47:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13379','2005-08-19 21:33:39.000','1623','227','2005-08-22 21:00:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13380','2005-08-19 21:36:58.000','4250','451','2005-08-22 23:55:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13381','2005-08-19 21:37:57.000','2823','21','2005-08-21 18:07:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13382','2005-08-19 21:38:41.000','3720','436','2005-08-28 15:49:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13383','2005-08-19 21:38:44.000','3193','434','2005-08-28 23:22:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13384','2005-08-19 21:38:51.000','1462','440','2005-08-23 17:55:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13385','2005-08-19 21:39:35.000','4323','252','2005-08-22 22:38:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13386','2005-08-19 21:43:58.000','4476','324','2005-08-24 20:29:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13387','2005-08-19 21:46:10.000','123','504','2005-08-24 01:16:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13388','2005-08-19 21:46:49.000','942','317','2005-08-27 16:18:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13389','2005-08-19 21:52:51.000','3352','257','2005-08-25 02:38:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13390','2006-02-14 15:16:03.000','2855','135',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13391','2005-08-19 22:01:42.000','4220','16','2005-08-24 22:20:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13392','2005-08-19 22:03:22.000','692','409','2005-08-28 19:27:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13393','2005-08-19 22:03:46.000','958','15','2005-08-28 19:19:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13394','2005-08-19 22:05:19.000','2597','45','2005-08-21 23:53:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13395','2005-08-19 22:05:40.000','53','80','2005-08-22 01:31:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13396','2005-08-19 22:06:09.000','4169','517','2005-08-23 23:26:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13397','2005-08-19 22:06:35.000','3863','379','2005-08-29 01:11:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13398','2005-08-19 22:08:48.000','3376','405','2005-08-23 03:24:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13399','2005-08-19 22:09:28.000','2309','21','2005-08-25 20:25:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13400','2005-08-19 22:11:44.000','2173','179','2005-08-20 23:27:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13401','2005-08-19 22:16:16.000','488','139','2005-08-25 19:01:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13402','2005-08-19 22:16:53.000','3264','372','2005-08-22 22:28:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13403','2005-08-19 22:18:07.000','3241','3','2005-08-27 19:23:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13404','2005-08-19 22:18:42.000','416','414','2005-08-23 16:29:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13405','2005-08-19 22:20:49.000','1554','181','2005-08-28 21:21:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13406','2005-08-19 22:22:01.000','3031','113','2005-08-22 18:16:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13407','2005-08-19 22:26:26.000','2512','131','2005-08-22 16:34:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13408','2005-08-19 22:34:51.000','2795','575','2005-08-21 03:30:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13409','2005-08-19 22:36:26.000','873','214','2005-08-22 01:52:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13410','2005-08-19 22:41:44.000','1421','104','2005-08-26 18:05:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13411','2005-08-19 22:43:38.000','4425','21','2005-08-26 18:29:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13412','2005-08-19 22:46:35.000','2806','404','2005-08-26 18:06:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13413','2005-08-19 22:46:46.000','1501','390','2005-08-24 22:52:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13414','2005-08-19 22:47:34.000','4126','438','2005-08-21 02:50:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13415','2005-08-19 22:48:09.000','1105','181','2005-08-25 02:09:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13416','2005-08-19 22:48:48.000','1075','204','2005-08-21 22:09:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13417','2005-08-19 22:51:39.000','92','468','2005-08-23 03:34:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13418','2005-08-19 22:53:56.000','2113','246','2005-08-28 02:05:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13419','2006-02-14 15:16:03.000','3507','537',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13420','2005-08-19 22:57:25.000','1796','102','2005-08-28 22:46:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13421','2006-02-14 15:16:03.000','9','366',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13422','2005-08-19 23:07:24.000','3835','404','2005-08-28 04:12:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13423','2005-08-19 23:07:42.000','546','311','2005-08-26 20:45:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13424','2005-08-19 23:10:09.000','4340','216','2005-08-23 02:25:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13425','2005-08-19 23:11:44.000','2274','340','2005-08-25 21:19:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13426','2005-08-19 23:15:00.000','3409','213','2005-08-21 01:53:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13427','2005-08-19 23:19:02.000','3120','239','2005-08-21 18:30:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13428','2006-02-14 15:16:03.000','106','44',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13429','2005-08-19 23:25:37.000','3677','23','2005-08-28 01:04:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13430','2005-08-19 23:25:43.000','2852','381','2005-08-22 18:41:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13431','2005-08-19 23:28:15.000','1700','229','2005-08-25 04:44:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13432','2005-08-19 23:29:06.000','2216','78','2005-08-23 00:57:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13433','2005-08-19 23:30:53.000','1647','171','2005-08-22 05:18:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13434','2005-08-19 23:34:26.000','2073','221','2005-08-23 18:33:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13435','2005-08-19 23:35:44.000','3919','30','2005-08-24 18:14:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13436','2005-08-19 23:36:25.000','2499','29','2005-08-23 18:38:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13437','2005-08-19 23:37:52.000','2292','67','2005-08-28 22:17:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13438','2005-08-19 23:38:02.000','1750','520','2005-08-26 21:36:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13439','2005-08-19 23:42:16.000','3535','551','2005-08-26 21:24:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13440','2005-08-19 23:42:52.000','2842','260','2005-08-25 19:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13441','2005-08-19 23:48:23.000','3188','125','2005-08-28 23:47:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13442','2005-08-19 23:50:45.000','2432','356','2005-08-27 22:01:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13443','2005-08-19 23:53:42.000','3161','236','2005-08-28 05:37:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13444','2005-08-20 00:00:24.000','2564','37','2005-08-21 05:59:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13445','2005-08-20 00:05:33.000','1630','495','2005-08-21 21:20:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13446','2005-08-20 00:06:13.000','3226','488','2005-08-22 19:56:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13447','2005-08-20 00:09:36.000','285','542','2005-08-25 01:22:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13448','2005-08-20 00:12:43.000','2870','327','2005-08-25 02:33:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13449','2005-08-20 00:17:01.000','1297','400','2005-08-23 20:42:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13450','2005-08-20 00:18:15.000','135','61','2005-08-24 19:36:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13451','2005-08-20 00:18:25.000','3837','6','2005-08-29 01:08:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13452','2005-08-20 00:20:07.000','2449','430','2005-08-25 05:43:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13453','2005-08-20 00:30:51.000','2203','164','2005-08-28 18:43:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13454','2005-08-20 00:30:52.000','1553','430','2005-08-27 19:45:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13455','2005-08-20 00:32:17.000','1315','133','2005-08-26 19:33:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13456','2005-08-20 00:33:19.000','1644','13','2005-08-22 01:47:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13457','2005-08-20 00:33:22.000','1220','256','2005-08-26 21:37:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13458','2005-08-20 00:35:30.000','4223','228','2005-08-21 20:51:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13459','2005-08-20 00:45:40.000','3666','114','2005-08-29 02:53:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13460','2005-08-20 00:48:24.000','244','410','2005-08-28 04:13:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13461','2005-08-20 00:49:04.000','2621','421','2005-08-28 02:49:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13462','2005-08-20 00:49:19.000','3865','489','2005-08-26 06:21:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13463','2005-08-20 00:50:54.000','510','21','2005-08-28 23:00:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13464','2006-02-14 15:16:03.000','4292','576',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13465','2005-08-20 00:54:14.000','1305','575','2005-08-21 20:55:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13466','2005-08-20 00:55:16.000','3088','262','2005-08-22 22:48:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13467','2005-08-20 00:56:44.000','696','373','2005-08-20 20:16:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13468','2005-08-20 00:56:44.000','1851','266','2005-08-29 06:26:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13469','2005-08-20 00:59:36.000','1410','235','2005-08-24 22:41:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13470','2005-08-20 01:01:16.000','3097','141','2005-08-21 03:19:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13471','2005-08-20 01:02:26.000','1391','296','2005-08-25 06:37:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13472','2005-08-20 01:03:31.000','3074','137','2005-08-28 02:54:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13473','2005-08-20 01:03:50.000','381','390','2005-08-22 02:33:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13474','2005-08-20 01:04:32.000','1209','116','2005-08-21 20:26:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13475','2005-08-20 01:05:05.000','3214','68','2005-08-20 20:22:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13476','2005-08-20 01:06:04.000','2866','7','2005-08-24 23:56:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13477','2005-08-20 01:07:00.000','1442','222','2005-08-26 02:47:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13478','2005-08-20 01:07:14.000','2190','466','2005-08-22 03:41:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13479','2005-08-20 01:09:11.000','1262','87','2005-08-26 05:35:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13480','2005-08-20 01:10:27.000','206','16','2005-08-27 22:18:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13481','2005-08-20 01:11:12.000','2678','157','2005-08-26 23:07:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13482','2005-08-20 01:14:30.000','1627','183','2005-08-24 04:57:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13483','2005-08-20 01:16:38.000','2550','441','2005-08-21 20:43:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13484','2005-08-20 01:16:52.000','1533','152','2005-08-22 23:47:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13485','2005-08-20 01:20:14.000','3802','379','2005-08-22 01:28:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13486','2006-02-14 15:16:03.000','4460','274',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13487','2005-08-20 01:27:05.000','2609','458','2005-08-24 00:41:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13488','2005-08-20 01:28:42.000','867','444','2005-08-25 06:17:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13489','2005-08-20 01:29:06.000','2934','443','2005-08-27 21:11:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13490','2005-08-20 01:29:29.000','238','18','2005-08-21 22:36:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13491','2005-08-20 01:30:56.000','2503','258','2005-08-28 23:26:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13492','2005-08-20 01:32:04.000','1155','462','2005-08-29 02:14:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13493','2005-08-20 01:33:36.000','2927','37','2005-08-24 06:32:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13494','2005-08-20 01:36:34.000','1632','414','2005-08-21 06:52:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13495','2005-08-20 01:40:25.000','3881','92','2005-08-23 06:32:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13496','2005-08-20 01:42:29.000','3040','454','2005-08-29 06:47:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13497','2005-08-20 01:46:38.000','1296','481','2005-08-26 05:37:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13498','2005-08-20 01:51:23.000','1603','578','2005-08-24 05:32:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13499','2005-08-20 01:52:30.000','1893','300','2005-08-28 04:57:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13500','2005-08-20 01:54:39.000','1353','577','2005-08-25 21:23:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13501','2005-08-20 01:56:20.000','4369','390','2005-08-22 23:07:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13502','2005-08-20 01:58:15.000','1324','309','2005-08-21 20:21:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13503','2005-08-20 02:00:33.000','453','15','2005-08-28 21:03:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13504','2005-08-20 02:01:48.000','4322','293','2005-08-25 21:52:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13505','2005-08-20 02:05:57.000','914','536','2005-08-23 05:52:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13506','2005-08-20 02:07:06.000','1334','261','2005-08-26 08:06:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13507','2005-08-20 02:10:27.000','3324','478','2005-08-23 04:03:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13508','2005-08-20 02:12:54.000','4120','408','2005-08-28 21:47:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13509','2005-08-20 02:14:16.000','3698','128','2005-08-22 06:36:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13510','2005-08-20 02:18:30.000','691','107','2005-08-27 01:33:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13511','2005-08-20 02:21:40.000','2973','23','2005-08-21 03:26:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13512','2005-08-20 02:27:13.000','4508','62','2005-08-28 04:40:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13513','2005-08-20 02:27:53.000','1653','454','2005-08-22 06:10:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13514','2005-08-20 02:28:09.000','3407','96','2005-08-25 00:41:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13515','2005-08-20 02:29:47.000','3438','194','2005-08-23 08:12:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13516','2005-08-20 02:32:45.000','4286','95','2005-08-27 04:38:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13517','2005-08-20 02:33:17.000','533','186','2005-08-23 22:40:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13518','2005-08-20 02:36:17.000','352','528','2005-08-24 08:06:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13519','2005-08-20 02:37:07.000','182','12','2005-08-23 01:26:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13520','2005-08-20 02:41:46.000','3326','74','2005-08-22 01:53:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13521','2005-08-20 02:42:28.000','2586','384','2005-08-22 06:12:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13522','2005-08-20 02:44:06.000','2940','343','2005-08-28 05:30:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13523','2005-08-20 02:47:03.000','163','572','2005-08-28 07:43:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13524','2005-08-20 02:48:43.000','4557','593','2005-08-27 03:14:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13525','2005-08-20 02:50:44.000','3514','111','2005-08-26 22:58:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13526','2005-08-20 02:58:42.000','1966','277','2005-08-27 22:36:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13527','2005-08-20 03:00:47.000','4424','521','2005-08-25 01:03:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13528','2005-08-20 03:03:31.000','1847','202','2005-08-26 03:09:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13529','2005-08-20 03:07:47.000','1979','193','2005-08-21 21:50:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13530','2005-08-20 03:12:43.000','597','156','2005-08-23 09:01:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13531','2005-08-20 03:26:10.000','2778','156','2005-08-25 03:41:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13532','2005-08-20 03:29:28.000','1433','168','2005-08-23 22:53:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13533','2005-08-20 03:30:00.000','1801','436','2005-08-27 05:53:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13534','2006-02-14 15:16:03.000','2476','75',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13535','2005-08-20 03:30:25.000','1563','86','2005-08-28 04:35:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13536','2005-08-20 03:35:16.000','667','183','2005-08-25 04:06:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13537','2005-08-20 03:39:15.000','2521','418','2005-08-23 22:03:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13538','2006-02-14 15:16:03.000','581','279',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13539','2005-08-20 03:40:27.000','3110','518','2005-08-27 07:15:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13540','2005-08-20 03:41:23.000','3785','557','2005-08-27 09:09:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13541','2005-08-20 03:41:41.000','1363','15','2005-08-24 23:14:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13542','2005-08-20 03:41:57.000','4543','147','2005-08-29 03:21:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13543','2005-08-20 03:43:13.000','2142','163','2005-08-29 07:14:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13544','2005-08-20 03:44:26.000','58','538','2005-08-27 22:11:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13545','2005-08-20 03:50:15.000','615','417','2005-08-27 22:24:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13546','2005-08-20 03:50:24.000','2492','390','2005-08-28 03:04:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13547','2005-08-20 03:53:16.000','3122','456','2005-08-25 04:02:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13548','2005-08-20 03:53:20.000','4389','319','2005-08-27 21:54:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13549','2005-08-20 03:58:41.000','508','274','2005-08-28 22:49:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13550','2005-08-20 03:58:51.000','208','206','2005-08-28 00:45:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13551','2005-08-20 04:00:30.000','1049','503','2005-08-21 06:26:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13552','2005-08-20 04:03:51.000','758','578','2005-08-23 02:48:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13553','2005-08-20 04:07:21.000','4407','314','2005-08-28 09:55:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13554','2005-08-20 04:08:39.000','2648','569','2005-08-28 07:11:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13555','2005-08-20 04:09:50.000','3176','93','2005-08-29 05:20:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13556','2005-08-20 04:10:26.000','3914','266','2005-08-26 06:45:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13557','2005-08-20 04:12:41.000','2290','23','2005-08-21 02:33:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13558','2005-08-20 04:13:17.000','1551','564','2005-08-24 06:38:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13559','2005-08-20 04:16:07.000','2413','444','2005-08-24 23:23:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13560','2005-08-20 04:17:16.000','820','56','2005-08-28 08:38:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13561','2006-02-14 15:16:03.000','3202','530',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13562','2005-08-20 04:31:45.000','4547','36','2005-08-25 09:59:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13563','2005-08-20 04:33:31.000','599','366','2005-08-24 07:08:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13564','2005-08-20 04:34:46.000','678','36','2005-08-28 23:18:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13565','2005-08-20 04:38:52.000','3378','214','2005-08-27 07:17:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13566','2005-08-20 04:45:32.000','4397','558','2005-08-28 02:12:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13567','2005-08-20 04:49:21.000','543','242','2005-08-26 10:27:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13568','2005-08-20 05:02:46.000','1243','151','2005-08-27 03:12:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13569','2005-08-20 05:02:59.000','1934','496','2005-08-28 00:51:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13570','2005-08-20 05:04:57.000','2808','188','2005-08-24 06:19:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13571','2005-08-20 05:05:14.000','1251','458','2005-08-25 03:59:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13572','2005-08-20 05:07:27.000','660','11','2005-08-23 23:33:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13573','2005-08-20 05:10:14.000','3032','59','2005-08-22 00:59:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13574','2005-08-20 05:10:39.000','2383','552','2005-08-21 02:21:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13575','2005-08-20 05:15:20.000','2729','339','2005-08-28 07:36:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13576','2005-08-20 05:19:56.000','2669','223','2005-08-22 09:08:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13577','2006-02-14 15:16:03.000','3844','448',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13578','2006-02-14 15:16:03.000','4301','352',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13579','2005-08-20 05:22:06.000','4237','333','2005-08-28 02:33:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13580','2005-08-20 05:23:34.000','4419','526','2005-08-23 02:45:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13581','2005-08-20 05:26:15.000','1753','119','2005-08-21 11:07:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13582','2005-08-20 05:28:11.000','211','166','2005-08-23 02:06:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13583','2005-08-20 05:29:45.000','176','74','2005-08-26 06:49:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13584','2006-02-14 15:16:03.000','3966','548',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13585','2005-08-20 05:32:23.000','3314','470','2005-08-27 23:36:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13586','2005-08-20 05:40:33.000','4544','445','2005-08-25 01:32:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13587','2006-02-14 15:16:03.000','2455','431',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13588','2005-08-20 05:47:11.000','702','279','2005-08-28 02:45:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13589','2005-08-20 05:47:25.000','3216','574','2005-08-23 01:29:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13590','2005-08-20 05:48:59.000','4417','264','2005-08-25 00:44:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13591','2005-08-20 05:50:05.000','3089','390','2005-08-27 08:43:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13592','2005-08-20 05:50:35.000','1509','470','2005-08-23 04:52:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13593','2005-08-20 05:50:52.000','261','585','2005-08-27 05:28:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13594','2005-08-20 05:53:31.000','3424','7','2005-08-23 09:01:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13595','2005-08-20 05:54:27.000','673','545','2005-08-29 01:25:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13596','2005-08-20 05:58:58.000','482','513','2005-08-27 08:35:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13597','2005-08-20 05:59:05.000','3697','72','2005-08-24 05:38:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13598','2005-08-20 05:59:17.000','2803','259','2005-08-29 01:02:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13599','2005-08-20 06:00:03.000','3333','150','2005-08-29 07:56:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13600','2005-08-20 06:00:25.000','431','528','2005-08-28 02:39:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13601','2005-08-20 06:01:15.000','2166','189','2005-08-29 06:14:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13602','2005-08-20 06:02:02.000','2805','348','2005-08-27 04:51:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13603','2005-08-20 06:02:48.000','937','362','2005-08-29 09:39:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13604','2005-08-20 06:03:33.000','4352','353','2005-08-21 07:06:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13605','2005-08-20 06:06:17.000','4446','522','2005-08-26 00:53:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13606','2005-08-20 06:07:01.000','83','146','2005-08-27 04:59:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13607','2005-08-20 06:08:42.000','2692','491','2005-08-21 01:59:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13608','2005-08-20 06:10:44.000','4110','193','2005-08-24 07:08:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13609','2005-08-20 06:11:51.000','299','328','2005-08-23 04:13:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13610','2005-08-20 06:14:12.000','2526','3','2005-08-26 00:44:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13611','2005-08-20 06:20:42.000','1460','112','2005-08-28 10:07:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13612','2005-08-20 06:22:08.000','675','505','2005-08-28 02:22:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13613','2005-08-20 06:23:53.000','2415','201','2005-08-29 11:40:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13614','2005-08-20 06:28:37.000','3736','381','2005-08-22 07:54:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13615','2005-08-20 06:28:53.000','1864','539','2005-08-27 11:40:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13616','2005-08-20 06:30:33.000','1694','194','2005-08-27 09:29:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13617','2005-08-20 06:35:30.000','4059','526','2005-08-29 09:03:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13618','2005-08-20 06:36:46.000','390','390','2005-08-29 05:17:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13619','2005-08-20 06:39:26.000','1068','365','2005-08-23 05:22:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13620','2005-08-20 06:41:27.000','2361','92','2005-08-24 11:02:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13621','2005-08-20 06:43:44.000','3754','581','2005-08-23 06:25:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13622','2005-08-20 06:45:32.000','3355','335','2005-08-25 02:40:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13623','2005-08-20 06:49:46.000','3948','321','2005-08-25 05:19:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13624','2005-08-20 06:51:02.000','430','63','2005-08-29 02:39:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13625','2005-08-20 06:52:03.000','60','422','2005-08-27 07:43:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13626','2005-08-20 06:55:24.000','594','524','2005-08-29 12:32:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13627','2005-08-20 06:59:00.000','603','329','2005-08-29 11:43:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13628','2005-08-20 07:03:53.000','1006','500','2005-08-22 11:27:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13629','2005-08-20 07:04:07.000','1834','392','2005-08-25 12:36:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13630','2005-08-20 07:05:56.000','3346','244','2005-08-29 04:15:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13631','2005-08-20 07:07:37.000','1015','535','2005-08-22 04:01:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13632','2005-08-20 07:10:52.000','4008','409','2005-08-29 10:19:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13633','2005-08-20 07:13:47.000','3227','301','2005-08-24 11:25:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13634','2005-08-20 07:16:45.000','850','411','2005-08-22 03:38:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13635','2005-08-20 07:17:35.000','669','286','2005-08-29 06:27:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13636','2005-08-20 07:20:09.000','1467','349','2005-08-23 09:58:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13637','2005-08-20 07:21:15.000','2298','342','2005-08-24 10:13:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13638','2005-08-20 07:21:15.000','3255','493','2005-08-23 11:09:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13639','2005-08-20 07:22:07.000','2489','562','2005-08-23 11:24:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13640','2005-08-20 07:22:53.000','3427','541','2005-08-21 11:54:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13641','2005-08-20 07:34:42.000','367','281','2005-08-26 05:18:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13642','2005-08-20 07:42:17.000','4415','452','2005-08-29 10:49:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13643','2005-08-20 07:42:24.000','2443','398','2005-08-26 09:13:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13644','2005-08-20 07:46:30.000','970','464','2005-08-27 01:54:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13645','2005-08-20 07:47:05.000','157','387','2005-08-23 02:58:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13646','2005-08-20 07:47:08.000','1347','242','2005-08-29 08:33:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13647','2005-08-20 07:48:07.000','3269','519','2005-08-28 07:56:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13648','2005-08-20 07:48:10.000','3921','596','2005-08-22 12:15:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13649','2005-08-20 07:48:38.000','1495','259','2005-08-23 07:43:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13650','2005-08-20 07:49:06.000','2644','322','2005-08-28 10:11:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13651','2005-08-20 07:50:08.000','1082','256','2005-08-21 07:11:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13652','2005-08-20 07:52:34.000','2548','67','2005-08-23 08:58:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13653','2005-08-20 07:54:54.000','4029','129','2005-08-29 06:43:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13654','2005-08-20 07:58:21.000','1582','469','2005-08-21 09:40:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13655','2005-08-20 07:59:13.000','4294','207','2005-08-22 12:04:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13656','2005-08-20 08:01:07.000','3180','411','2005-08-28 13:16:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13657','2005-08-20 08:01:39.000','1752','414','2005-08-23 07:31:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13658','2005-08-20 08:02:22.000','3827','487','2005-08-28 06:00:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13659','2005-08-20 08:05:52.000','3610','520','2005-08-24 12:38:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13660','2005-08-20 08:05:56.000','3972','72','2005-08-22 13:22:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13661','2005-08-20 08:05:59.000','3996','471','2005-08-29 12:15:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13662','2005-08-20 08:11:58.000','3880','592','2005-08-26 13:34:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13663','2005-08-20 08:12:33.000','3969','240','2005-08-27 03:23:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13664','2005-08-20 08:18:36.000','3750','264','2005-08-26 11:04:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13665','2005-08-20 08:19:20.000','117','291','2005-08-28 06:26:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13666','2005-08-20 08:20:19.000','2007','451','2005-08-22 03:22:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13667','2005-08-20 08:25:34.000','3856','280','2005-08-24 07:04:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13668','2005-08-20 08:26:06.000','3659','123','2005-08-25 05:52:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13669','2005-08-20 08:26:32.000','4504','261','2005-08-27 08:10:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13670','2005-08-20 08:27:01.000','1951','147','2005-08-29 05:59:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13671','2005-08-20 08:27:03.000','1473','201','2005-08-26 03:56:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13672','2005-08-20 08:27:27.000','2068','201','2005-08-22 06:15:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13673','2005-08-20 08:27:30.000','343','332','2005-08-26 05:14:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13674','2005-08-20 08:30:54.000','3397','36','2005-08-22 02:59:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13675','2005-08-20 08:32:51.000','350','493','2005-08-27 03:52:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13676','2005-08-20 08:33:21.000','3170','103','2005-08-25 02:51:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13677','2005-08-20 08:34:41.000','4013','15','2005-08-26 11:51:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13678','2005-08-20 08:38:24.000','1118','337','2005-08-27 13:54:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13679','2005-08-20 08:39:34.000','2878','229','2005-08-29 10:06:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13680','2005-08-20 08:44:06.000','2822','70','2005-08-27 09:58:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13681','2005-08-20 08:47:37.000','3039','328','2005-08-27 09:47:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13682','2005-08-20 08:50:39.000','287','30','2005-08-21 09:05:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13683','2005-08-20 08:54:55.000','1729','255','2005-08-24 14:10:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13684','2005-08-20 08:55:53.000','2213','348','2005-08-25 08:11:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13685','2005-08-20 08:57:11.000','3336','260','2005-08-27 07:26:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13686','2005-08-20 08:57:28.000','666','306','2005-08-24 07:21:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13687','2005-08-20 08:57:51.000','3629','290','2005-08-22 07:02:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13688','2005-08-20 08:59:38.000','1116','572','2005-08-28 04:54:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13689','2005-08-20 09:04:30.000','819','336','2005-08-22 05:38:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13690','2005-08-20 09:07:27.000','3721','513','2005-08-23 08:03:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13691','2005-08-20 09:07:39.000','676','548','2005-08-28 15:03:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13692','2005-08-20 09:07:52.000','1928','65','2005-08-21 05:17:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13693','2005-08-20 09:11:42.000','933','552','2005-08-24 15:00:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13694','2005-08-20 09:13:23.000','3654','454','2005-08-28 06:10:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13695','2005-08-20 09:13:25.000','3114','258','2005-08-27 11:51:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13696','2005-08-20 09:16:15.000','1279','206','2005-08-21 03:33:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13697','2005-08-20 09:21:08.000','291','76','2005-08-29 12:33:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13698','2005-08-20 09:24:26.000','3829','364','2005-08-22 05:04:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13699','2005-08-20 09:26:14.000','3913','21','2005-08-29 08:16:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13700','2005-08-20 09:26:17.000','4229','265','2005-08-27 05:49:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13701','2005-08-20 09:27:05.000','1643','564','2005-08-21 14:54:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13702','2005-08-20 09:27:20.000','700','296','2005-08-29 15:04:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13703','2005-08-20 09:29:35.000','2296','356','2005-08-27 08:03:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13704','2005-08-20 09:32:04.000','3373','4','2005-08-23 14:29:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13705','2005-08-20 09:32:23.000','3663','451','2005-08-21 13:51:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13706','2005-08-20 09:32:56.000','3005','363','2005-08-28 05:22:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13707','2005-08-20 09:33:58.000','826','232','2005-08-23 07:44:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13708','2005-08-20 09:34:07.000','2236','218','2005-08-26 10:17:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13709','2005-08-20 09:34:51.000','4089','422','2005-08-23 04:13:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13710','2005-08-20 09:35:20.000','756','333','2005-08-21 05:29:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13711','2005-08-20 09:35:20.000','2318','453','2005-08-28 09:06:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13712','2005-08-20 09:38:04.000','1039','581','2005-08-21 06:10:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13713','2006-02-14 15:16:03.000','3075','267',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13714','2005-08-20 09:41:09.000','2659','277','2005-08-22 06:28:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13715','2005-08-20 09:43:06.000','1028','292','2005-08-27 10:22:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13716','2005-08-20 09:48:32.000','86','386','2005-08-26 07:20:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13717','2005-08-20 09:50:52.000','1629','300','2005-08-28 11:32:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13718','2005-08-20 09:53:44.000','205','19','2005-08-29 13:46:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13719','2006-02-14 15:16:03.000','3547','208',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13720','2005-08-20 10:01:39.000','813','427','2005-08-27 08:26:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13721','2005-08-20 10:02:59.000','1444','297','2005-08-24 07:02:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13722','2005-08-20 10:03:45.000','1581','422','2005-08-25 04:26:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13723','2005-08-20 10:05:30.000','411','110','2005-08-27 07:43:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13724','2005-08-20 10:07:28.000','200','80','2005-08-24 07:47:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13725','2005-08-20 10:08:27.000','3861','306','2005-08-28 06:52:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13726','2005-08-20 10:08:40.000','2258','214','2005-08-23 14:58:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13727','2005-08-20 10:08:53.000','4201','85','2005-08-27 09:30:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13728','2005-08-20 10:11:07.000','1962','157','2005-08-23 10:32:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13729','2005-08-20 10:17:08.000','4108','415','2005-08-28 15:35:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13730','2005-08-20 10:17:09.000','1330','548','2005-08-28 10:45:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13731','2005-08-20 10:22:08.000','1133','450','2005-08-21 12:04:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13732','2005-08-20 10:24:41.000','1138','17','2005-08-22 04:44:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13733','2005-08-20 10:25:12.000','3994','85','2005-08-21 10:49:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13734','2005-08-20 10:29:57.000','4561','374','2005-08-25 14:41:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13735','2005-08-20 10:31:01.000','1813','35','2005-08-26 05:00:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13736','2005-08-20 10:31:23.000','3369','32','2005-08-28 06:51:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13737','2005-08-20 10:41:50.000','4319','200','2005-08-25 14:33:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13738','2005-08-20 10:42:42.000','2748','273','2005-08-25 09:32:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13739','2005-08-20 10:45:10.000','3027','441','2005-08-28 08:46:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13740','2005-08-20 10:48:43.000','4366','21','2005-08-29 15:30:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13741','2005-08-20 10:48:47.000','3887','195','2005-08-21 11:19:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13742','2005-08-20 10:49:15.000','1377','580','2005-08-21 11:05:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13743','2005-08-20 10:51:27.000','3693','57','2005-08-24 15:54:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13744','2005-08-20 10:51:45.000','2962','408','2005-08-25 06:42:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13745','2005-08-20 10:53:49.000','1264','142','2005-08-25 13:25:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13746','2005-08-20 10:55:28.000','3742','520','2005-08-25 07:48:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13747','2005-08-20 10:56:06.000','3332','74','2005-08-29 10:29:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13748','2005-08-20 10:59:54.000','2198','410','2005-08-23 12:33:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13749','2005-08-20 11:00:37.000','2811','282','2005-08-26 12:04:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13750','2005-08-20 11:11:42.000','3363','246','2005-08-29 16:16:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13751','2005-08-20 11:17:03.000','185','105','2005-08-22 14:12:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13752','2005-08-20 11:17:45.000','1794','77','2005-08-29 13:25:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13753','2006-02-14 15:16:03.000','3746','495',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13754','2005-08-20 11:18:08.000','1740','108','2005-08-22 11:55:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13755','2005-08-20 11:18:53.000','1927','342','2005-08-27 06:51:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13756','2006-02-14 15:16:03.000','1146','252',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13757','2005-08-20 11:20:12.000','1147','14','2005-08-23 10:14:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13758','2005-08-20 11:21:26.000','864','255','2005-08-29 14:37:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13759','2005-08-20 11:24:48.000','595','269','2005-08-29 10:29:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13760','2005-08-20 11:26:33.000','3459','436','2005-08-27 11:12:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13761','2005-08-20 11:28:50.000','3149','376','2005-08-21 12:05:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13762','2005-08-20 11:29:32.000','451','566','2005-08-23 17:25:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13763','2005-08-20 11:37:56.000','4171','469','2005-08-26 13:12:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13764','2005-08-20 11:38:16.000','989','386','2005-08-27 08:01:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13765','2005-08-20 11:39:00.000','2104','219','2005-08-21 06:05:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13766','2005-08-20 11:42:01.000','1313','189','2005-08-27 13:44:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13767','2005-08-20 11:43:36.000','2739','506','2005-08-22 17:10:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13768','2005-08-20 11:43:43.000','3847','198','2005-08-27 07:56:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13769','2005-08-20 11:43:52.000','2868','56','2005-08-28 13:19:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13770','2005-08-20 11:45:54.000','998','538','2005-08-22 17:08:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13771','2005-08-20 11:47:21.000','2278','512','2005-08-22 17:09:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13772','2005-08-20 11:47:52.000','2038','387','2005-08-28 05:50:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13773','2005-08-20 11:50:14.000','3389','64','2005-08-26 12:35:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13774','2005-08-20 11:54:01.000','735','244','2005-08-22 13:25:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13775','2005-08-20 11:56:30.000','1858','116','2005-08-28 12:48:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13776','2005-08-20 11:57:06.000','2439','137','2005-08-26 10:55:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13777','2005-08-20 12:03:35.000','3587','29','2005-08-27 10:13:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13778','2005-08-20 12:03:44.000','2385','539','2005-08-28 12:09:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13779','2005-08-20 12:03:54.000','63','440','2005-08-28 15:24:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13780','2006-02-14 15:16:03.000','1775','14',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13781','2005-08-20 12:06:45.000','971','368','2005-08-26 06:50:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13782','2005-08-20 12:09:26.000','577','305','2005-08-23 08:31:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13783','2005-08-20 12:11:03.000','2643','28','2005-08-21 15:53:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13784','2005-08-20 12:11:28.000','3087','431','2005-08-25 08:11:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13785','2005-08-20 12:11:46.000','379','453','2005-08-21 06:39:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13786','2005-08-20 12:13:24.000','515','94','2005-08-28 07:24:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13787','2005-08-20 12:15:23.000','253','188','2005-08-27 06:24:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13788','2005-08-20 12:15:41.000','3177','393','2005-08-28 16:28:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13789','2005-08-20 12:16:38.000','2523','53','2005-08-25 07:29:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13790','2005-08-20 12:17:27.000','1385','11','2005-08-25 12:20:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13791','2005-08-20 12:21:05.000','1890','67','2005-08-22 17:58:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13792','2005-08-20 12:21:37.000','4157','78','2005-08-27 14:28:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13793','2005-08-20 12:22:04.000','2598','424','2005-08-27 09:51:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13794','2005-08-20 12:25:32.000','2148','557','2005-08-23 06:38:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13795','2005-08-20 12:32:09.000','2837','331','2005-08-21 17:28:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13796','2005-08-20 12:32:32.000','28','209','2005-08-29 10:48:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13797','2005-08-20 12:33:36.000','2857','529','2005-08-25 18:03:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13798','2006-02-14 15:16:03.000','526','15',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13799','2005-08-20 12:36:42.000','4413','196','2005-08-28 08:47:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13800','2005-08-20 12:40:48.000','1552','407','2005-08-22 15:06:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13801','2005-08-20 12:40:53.000','1464','433','2005-08-21 16:29:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13802','2005-08-20 12:44:53.000','2079','156','2005-08-22 09:18:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13803','2005-08-20 12:46:17.000','1084','486','2005-08-24 15:44:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13804','2005-08-20 12:46:32.000','2232','19','2005-08-29 14:04:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13805','2005-08-20 12:53:12.000','349','454','2005-08-27 15:21:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13806','2005-08-20 12:53:46.000','444','341','2005-08-21 10:36:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13807','2005-08-20 12:55:40.000','3822','4','2005-08-28 09:06:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13808','2005-08-20 12:55:43.000','3689','262','2005-08-29 11:01:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13809','2005-08-20 12:56:03.000','1597','207','2005-08-27 11:58:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13810','2005-08-20 12:59:38.000','2228','450','2005-08-21 17:40:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13811','2005-08-20 13:00:30.000','1235','168','2005-08-24 10:18:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13812','2005-08-20 13:01:43.000','2788','122','2005-08-22 16:32:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13813','2005-08-20 13:03:26.000','601','455','2005-08-25 08:42:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13814','2005-08-20 13:07:23.000','2129','436','2005-08-22 16:23:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13815','2005-08-20 13:08:53.000','3388','582','2005-08-29 13:11:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13816','2005-08-20 13:13:56.000','273','27','2005-08-25 09:46:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13817','2005-08-20 13:15:30.000','1935','293','2005-08-22 18:48:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13818','2005-08-20 13:20:09.000','1283','495','2005-08-21 18:41:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13819','2005-08-20 13:23:15.000','1459','296','2005-08-22 16:02:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13820','2005-08-20 13:26:37.000','3191','81','2005-08-27 14:05:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13821','2005-08-20 13:33:47.000','2402','355','2005-08-25 18:09:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13822','2005-08-20 13:39:28.000','807','499','2005-08-24 07:40:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13823','2005-08-20 13:42:10.000','3875','89','2005-08-22 18:45:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13824','2005-08-20 13:43:12.000','2845','413','2005-08-22 17:26:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13825','2005-08-20 13:43:22.000','2135','167','2005-08-29 19:13:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13826','2005-08-20 13:46:38.000','401','436','2005-08-29 13:07:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13827','2005-08-20 13:47:19.000','1103','342','2005-08-28 09:13:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13828','2005-08-20 13:49:52.000','2391','450','2005-08-25 07:49:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13829','2005-08-20 13:50:17.000','3980','146','2005-08-24 11:30:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13830','2005-08-20 13:57:59.000','2874','61','2005-08-25 11:29:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13831','2005-08-20 13:59:35.000','570','480','2005-08-24 12:50:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13832','2005-08-20 14:00:25.000','3299','29','2005-08-28 10:11:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13833','2005-08-20 14:00:29.000','792','175','2005-08-29 12:01:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13834','2005-08-20 14:03:08.000','875','426','2005-08-22 10:12:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13835','2005-08-20 14:06:33.000','3738','143','2005-08-26 12:15:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13836','2005-08-20 14:18:16.000','4271','375','2005-08-21 18:13:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13837','2005-08-20 14:19:03.000','3220','67','2005-08-22 16:25:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13838','2005-08-20 14:22:46.000','1134','437','2005-08-29 12:28:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13839','2005-08-20 14:23:16.000','1056','437','2005-08-26 19:11:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13840','2005-08-20 14:23:20.000','1211','40','2005-08-28 11:53:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13841','2005-08-20 14:25:18.000','3277','203','2005-08-29 15:49:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13842','2005-08-20 14:29:37.000','4337','180','2005-08-29 18:19:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13843','2005-08-20 14:30:01.000','3058','308','2005-08-27 10:06:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13844','2005-08-20 14:30:26.000','983','179','2005-08-29 17:08:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13845','2005-08-20 14:31:21.000','3993','559','2005-08-29 18:29:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13846','2005-08-20 14:32:31.000','3289','257','2005-08-28 16:58:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13847','2005-08-20 14:33:59.000','2647','82','2005-08-25 08:49:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13848','2005-08-20 14:37:49.000','802','447','2005-08-25 13:15:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13849','2005-08-20 14:42:34.000','3774','261','2005-08-24 13:09:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13850','2005-08-20 14:43:03.000','3030','546','2005-08-27 11:41:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13851','2005-08-20 14:44:22.000','3278','80','2005-08-22 18:10:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13852','2005-08-20 14:45:23.000','85','535','2005-08-22 16:47:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13853','2005-08-20 14:47:02.000','1680','186','2005-08-26 20:32:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13854','2005-08-20 14:48:42.000','4192','158','2005-08-21 14:55:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13855','2005-08-20 14:48:55.000','1617','96','2005-08-28 14:45:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13856','2005-08-20 14:49:32.000','4196','407','2005-08-29 12:37:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13857','2005-08-20 14:50:06.000','2542','366','2005-08-24 10:38:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13858','2005-08-20 14:50:57.000','2167','33','2005-08-23 12:10:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13859','2005-08-20 14:53:43.000','4381','504','2005-08-28 09:50:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13860','2005-08-20 14:55:09.000','558','275','2005-08-22 20:42:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13861','2005-08-20 14:56:53.000','303','154','2005-08-22 18:13:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13862','2005-08-20 14:57:01.000','3271','170','2005-08-27 10:48:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13863','2005-08-20 14:57:50.000','2417','563','2005-08-29 15:36:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13864','2005-08-20 14:59:55.000','3935','214','2005-08-22 09:30:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13865','2005-08-20 15:04:09.000','3647','275','2005-08-24 10:06:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13866','2005-08-20 15:05:29.000','3432','343','2005-08-23 11:27:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13867','2005-08-20 15:05:42.000','4514','591','2005-08-29 10:48:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13868','2005-08-20 15:06:26.000','3173','51','2005-08-22 19:08:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13869','2005-08-20 15:08:57.000','1990','386','2005-08-29 13:13:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13870','2005-08-20 15:09:16.000','563','167','2005-08-28 10:00:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13871','2005-08-20 15:10:13.000','3206','372','2005-08-29 19:43:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13872','2005-08-20 15:10:30.000','2416','421','2005-08-24 10:14:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13873','2005-08-20 15:11:11.000','1683','306','2005-08-22 20:13:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13874','2005-08-20 15:11:48.000','72','86','2005-08-21 18:26:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13875','2005-08-20 15:13:11.000','348','83','2005-08-21 13:11:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13876','2005-08-20 15:15:28.000','3137','334','2005-08-23 12:42:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13877','2005-08-20 15:16:18.000','3387','5','2005-08-22 18:20:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13878','2005-08-20 15:17:38.000','49','481','2005-08-21 21:11:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13879','2005-08-20 15:18:10.000','4022','112','2005-08-22 19:23:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13880','2005-08-20 15:18:20.000','3911','268','2005-08-24 18:03:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13881','2005-08-20 15:18:55.000','2831','144','2005-08-25 11:25:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13882','2005-08-20 15:23:26.000','3245','51','2005-08-22 13:03:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13883','2005-08-20 15:28:53.000','584','568','2005-08-21 13:11:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13884','2005-08-20 15:30:51.000','3182','466','2005-08-26 13:34:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13885','2005-08-20 15:32:09.000','3195','537','2005-08-26 15:54:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13886','2005-08-20 15:34:43.000','2248','73','2005-08-26 11:48:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13887','2005-08-20 15:39:00.000','4002','413','2005-08-24 16:17:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13888','2005-08-20 15:39:42.000','1943','297','2005-08-28 13:41:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13889','2005-08-20 15:40:06.000','4406','501','2005-08-22 14:09:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13890','2005-08-20 15:41:00.000','2965','54','2005-08-22 16:00:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13891','2005-08-20 15:42:05.000','2042','289','2005-08-25 13:26:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13892','2005-08-20 15:50:17.000','1236','337','2005-08-29 13:33:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13893','2005-08-20 15:52:52.000','3503','390','2005-08-27 16:21:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13894','2005-08-20 15:55:20.000','2649','360','2005-08-26 17:26:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13895','2005-08-20 15:58:28.000','3060','12','2005-08-26 15:07:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13896','2005-08-20 15:59:56.000','1338','278','2005-08-21 20:14:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13897','2005-08-20 16:02:28.000','628','258','2005-08-23 14:29:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13898','2006-02-14 15:16:03.000','4007','369',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13899','2005-08-20 16:05:11.000','427','204','2005-08-23 15:14:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13900','2005-08-20 16:05:41.000','1140','66','2005-08-22 15:13:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13901','2005-08-20 16:06:53.000','3281','166','2005-08-28 11:30:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13902','2005-08-20 16:07:08.000','1165','275','2005-08-24 16:43:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13903','2005-08-20 16:07:55.000','1676','272','2005-08-25 18:26:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13904','2005-08-20 16:11:34.000','721','93','2005-08-26 12:46:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13905','2005-08-20 16:12:48.000','2714','437','2005-08-28 16:05:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13906','2005-08-20 16:16:03.000','3960','87','2005-08-21 13:29:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13907','2005-08-20 16:17:27.000','806','328','2005-08-24 20:14:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13908','2005-08-20 16:21:40.000','3661','532','2005-08-29 21:16:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13909','2005-08-20 16:26:36.000','1508','309','2005-08-21 20:59:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13910','2005-08-20 16:30:49.000','252','133','2005-08-24 13:30:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13911','2005-08-20 16:31:33.000','4400','304','2005-08-28 19:26:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13912','2005-08-20 16:32:10.000','968','207','2005-08-29 17:37:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13913','2005-08-20 16:37:35.000','4259','197','2005-08-26 13:12:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13914','2005-08-20 16:38:57.000','3037','237','2005-08-26 14:53:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13915','2005-08-20 16:42:53.000','1180','129','2005-08-23 20:30:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13916','2005-08-20 16:43:02.000','2971','302','2005-08-25 19:21:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13917','2005-08-20 16:43:28.000','4326','10','2005-08-29 16:44:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13918','2005-08-20 16:47:32.000','3301','248','2005-08-21 12:00:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13919','2005-08-20 16:47:34.000','909','129','2005-08-23 21:27:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13920','2005-08-20 16:51:18.000','3200','460','2005-08-27 16:05:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13921','2005-08-20 16:57:11.000','3943','59','2005-08-22 19:25:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13922','2005-08-20 17:02:37.000','1398','237','2005-08-29 19:28:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13923','2005-08-20 17:05:02.000','3129','588','2005-08-27 11:22:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13924','2005-08-20 17:05:18.000','3066','444','2005-08-23 16:54:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13925','2005-08-20 17:05:34.000','4034','565','2005-08-27 15:32:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13926','2005-08-20 17:09:27.000','932','158','2005-08-28 13:42:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13927','2005-08-20 17:11:58.000','4284','417','2005-08-24 12:44:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13928','2005-08-20 17:12:28.000','1121','244','2005-08-21 13:33:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13929','2005-08-20 17:13:48.000','946','57','2005-08-28 15:19:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13930','2005-08-20 17:15:06.000','3585','58','2005-08-21 14:29:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13931','2005-08-20 17:16:10.000','3884','32','2005-08-27 12:03:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13932','2005-08-20 17:17:00.000','471','441','2005-08-24 14:06:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13933','2005-08-20 17:17:07.000','647','159','2005-08-22 18:10:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13934','2005-08-20 17:18:48.000','4567','457','2005-08-26 15:31:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13935','2005-08-20 17:20:49.000','4426','205','2005-08-24 16:52:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13936','2005-08-20 17:22:35.000','1731','364','2005-08-23 20:07:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13937','2005-08-20 17:22:51.000','1755','172','2005-08-27 15:51:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13938','2005-08-20 17:24:45.000','3743','463','2005-08-21 18:39:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13939','2005-08-20 17:28:01.000','2700','585','2005-08-23 14:40:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13940','2005-08-20 17:28:57.000','2638','187','2005-08-27 22:07:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13941','2006-02-14 15:16:03.000','2727','476',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13942','2005-08-20 17:30:52.000','4403','211','2005-08-25 13:46:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13943','2005-08-20 17:31:18.000','22','464','2005-08-24 11:33:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13944','2005-08-20 17:41:16.000','3685','408','2005-08-23 12:02:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13945','2005-08-20 17:43:56.000','3328','270','2005-08-26 19:19:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13946','2005-08-20 17:44:32.000','3564','529','2005-08-28 19:19:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13947','2005-08-20 17:46:06.000','2562','218','2005-08-29 23:44:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13948','2005-08-20 17:50:48.000','4033','410','2005-08-25 20:56:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13949','2005-08-20 17:55:13.000','1518','34','2005-08-22 20:49:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13950','2005-08-20 17:58:00.000','3978','93','2005-08-29 23:23:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13951','2005-08-20 17:58:11.000','2034','40','2005-08-26 14:50:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13952','2006-02-14 15:16:03.000','224','199',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13953','2005-08-20 18:00:37.000','1818','371','2005-08-28 14:52:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13954','2005-08-20 18:02:41.000','3812','207','2005-08-27 21:52:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13955','2005-08-20 18:05:12.000','2613','273','2005-08-29 18:25:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13956','2005-08-20 18:08:19.000','3757','484','2005-08-29 17:03:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13957','2005-08-20 18:09:04.000','2889','179','2005-08-23 16:52:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13958','2005-08-20 18:11:44.000','2380','33','2005-08-28 14:59:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13959','2005-08-20 18:16:21.000','2283','142','2005-08-22 13:56:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13960','2005-08-20 18:16:26.000','4177','459','2005-08-29 14:06:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13961','2005-08-20 18:16:34.000','2271','129','2005-08-21 16:14:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13962','2005-08-20 18:18:06.000','1434','348','2005-08-24 22:16:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13963','2005-08-20 18:20:18.000','4145','368','2005-08-24 21:26:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13964','2005-08-20 18:24:26.000','108','128','2005-08-21 21:19:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13965','2006-02-14 15:16:03.000','670','324',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13966','2005-08-20 18:28:28.000','4520','260','2005-08-22 16:49:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13967','2005-08-20 18:28:46.000','2751','459','2005-08-26 17:37:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13968','2006-02-14 15:16:03.000','3715','15',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13969','2005-08-20 18:42:40.000','1836','237','2005-08-27 17:33:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13970','2005-08-20 18:43:34.000','1942','418','2005-08-22 15:17:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13971','2005-08-20 18:44:53.000','1678','64','2005-08-22 16:25:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13972','2005-08-20 18:52:17.000','1687','553','2005-08-28 15:19:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13973','2005-08-20 18:52:43.000','1181','58','2005-08-21 19:11:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13974','2005-08-20 18:54:59.000','1912','479','2005-08-28 13:02:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13975','2005-08-20 18:58:23.000','3821','286','2005-08-25 20:58:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13976','2005-08-20 19:02:16.000','1785','278','2005-08-25 17:58:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13977','2005-08-20 19:02:34.000','1126','115','2005-08-24 14:14:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13978','2005-08-20 19:03:25.000','1263','260','2005-08-27 18:02:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13979','2005-08-20 19:03:49.000','2998','211','2005-08-24 21:23:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13980','2005-08-20 19:04:40.000','1067','391','2005-08-21 18:36:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13981','2005-08-20 19:07:20.000','3342','249','2005-08-23 15:13:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13982','2005-08-20 19:08:25.000','2901','448','2005-08-28 15:59:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13983','2005-08-20 19:08:32.000','457','231','2005-08-29 23:45:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13984','2005-08-20 19:12:30.000','2183','473','2005-08-29 22:04:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13985','2005-08-20 19:13:06.000','1081','339','2005-08-24 21:24:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13986','2005-08-20 19:13:23.000','3701','152','2005-08-22 20:59:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13987','2005-08-20 19:19:30.000','1443','246','2005-08-23 15:37:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13988','2005-08-20 19:21:28.000','3567','466','2005-08-21 22:20:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13989','2005-08-20 19:27:50.000','1470','252','2005-08-28 15:17:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13990','2005-08-20 19:29:23.000','2272','481','2005-08-25 18:50:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13991','2005-08-20 19:29:44.000','1971','296','2005-08-24 21:10:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13992','2005-08-20 19:30:35.000','2798','136','2005-08-24 19:09:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13993','2005-08-20 19:32:29.000','1158','93','2005-08-26 16:59:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13994','2005-08-20 19:33:21.000','142','180','2005-08-24 20:55:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13995','2005-08-20 19:34:43.000','3789','381','2005-08-25 22:25:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13996','2005-08-20 19:45:43.000','3341','306','2005-08-22 16:47:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13997','2005-08-20 19:51:28.000','2330','175','2005-08-26 01:29:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13998','2005-08-20 19:52:38.000','3936','530','2005-08-26 14:57:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('13999','2005-08-20 19:53:32.000','4149','239','2005-08-26 19:01:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14000','2005-08-20 20:06:05.000','3907','276','2005-08-28 17:02:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14001','2005-08-20 20:07:15.000','1318','120','2005-08-27 00:50:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14002','2005-08-20 20:12:19.000','87','33','2005-08-23 00:23:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14003','2005-08-20 20:16:06.000','3165','256','2005-08-28 14:36:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14004','2005-08-20 20:16:35.000','3445','358','2005-08-28 17:23:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14005','2005-08-20 20:19:05.000','1415','135','2005-08-26 01:42:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14006','2005-08-20 20:21:36.000','2189','186','2005-08-21 15:26:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14007','2005-08-20 20:22:47.000','374','284','2005-08-28 20:40:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14008','2005-08-20 20:26:00.000','2427','560','2005-08-28 17:23:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14009','2005-08-20 20:26:53.000','3004','382','2005-08-21 23:32:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14010','2005-08-20 20:29:46.000','934','537','2005-08-26 17:37:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14011','2005-08-20 20:32:56.000','1212','379','2005-08-28 21:44:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14012','2005-08-20 20:42:12.000','1866','274','2005-08-23 23:10:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14013','2005-08-20 20:42:50.000','3941','496','2005-08-25 21:37:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14014','2005-08-20 20:47:09.000','2188','335','2005-08-21 22:08:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14015','2005-08-20 20:47:43.000','3145','554','2005-08-26 19:37:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14016','2005-08-20 20:52:03.000','509','220','2005-08-23 18:04:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14017','2005-08-20 20:55:32.000','920','230','2005-08-23 16:12:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14018','2006-02-14 15:16:03.000','2136','533',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14019','2005-08-20 20:59:15.000','1929','202','2005-08-28 17:29:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14020','2005-08-20 20:59:43.000','2257','72','2005-08-23 17:11:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14021','2005-08-20 21:02:12.000','4394','147','2005-08-27 22:15:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14022','2005-08-20 21:08:49.000','4068','170','2005-08-29 21:57:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14023','2005-08-20 21:10:32.000','2668','304','2005-08-23 20:57:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14024','2005-08-20 21:13:58.000','1492','87','2005-08-29 23:02:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14025','2005-08-20 21:19:36.000','4521','37','2005-08-29 23:39:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14026','2005-08-20 21:21:08.000','115','231','2005-08-22 23:19:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14027','2005-08-20 21:21:34.000','284','432','2005-08-28 17:46:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14028','2005-08-20 21:23:03.000','4061','158','2005-08-25 17:29:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14029','2005-08-20 21:23:11.000','2653','219','2005-08-22 18:01:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14030','2005-08-20 21:23:54.000','1027','127','2005-08-27 01:19:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14031','2005-08-20 21:24:24.000','440','361','2005-08-23 21:47:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14032','2005-08-20 21:26:55.000','3542','317','2005-08-26 19:19:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14033','2005-08-20 21:30:53.000','525','243','2005-08-23 01:45:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14034','2005-08-20 21:31:52.000','3484','200','2005-08-29 00:13:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14035','2005-08-20 21:31:58.000','2035','260','2005-08-22 16:28:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14036','2005-08-20 21:35:27.000','202','256','2005-08-23 03:29:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14037','2005-08-20 21:35:58.000','3655','372','2005-08-29 23:06:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14038','2005-08-20 21:39:23.000','1069','589','2005-08-27 23:57:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14039','2005-08-20 21:39:43.000','4187','383','2005-08-24 19:03:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14040','2005-08-20 21:43:44.000','905','17','2005-08-25 16:30:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14041','2005-08-20 21:45:23.000','52','247','2005-08-26 01:42:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14042','2005-08-20 21:45:51.000','505','322','2005-08-23 19:57:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14043','2005-08-20 21:46:43.000','1485','586','2005-08-21 18:27:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14044','2005-08-20 21:48:38.000','1422','145','2005-08-29 02:56:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14045','2005-08-20 21:50:11.000','3010','509','2005-08-25 19:03:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14046','2005-08-20 21:53:21.000','2352','524','2005-08-23 17:51:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14047','2005-08-20 22:00:43.000','186','579','2005-08-24 03:17:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14048','2005-08-20 22:03:18.000','3475','105','2005-08-25 02:57:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14049','2005-08-20 22:08:55.000','1335','112','2005-08-28 20:24:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14050','2005-08-20 22:09:04.000','1737','596','2005-08-26 01:39:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14051','2005-08-20 22:09:51.000','4012','362','2005-08-29 04:04:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14052','2005-08-20 22:11:46.000','3893','514','2005-08-22 20:26:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14053','2005-08-20 22:13:59.000','2177','5','2005-08-26 20:50:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14054','2005-08-20 22:17:01.000','338','50','2005-08-21 21:34:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14055','2005-08-20 22:18:00.000','1571','148','2005-08-22 02:09:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14056','2005-08-20 22:18:53.000','1300','22','2005-08-27 01:05:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14057','2005-08-20 22:22:59.000','1526','333','2005-08-25 16:58:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14058','2005-08-20 22:24:35.000','178','430','2005-08-30 02:26:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14059','2005-08-20 22:24:44.000','2045','141','2005-08-26 21:25:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14060','2006-02-14 15:16:03.000','3100','175',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14061','2005-08-20 22:32:11.000','73','53','2005-08-22 19:28:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14062','2005-08-20 22:34:34.000','2841','239','2005-08-25 17:11:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14063','2005-08-20 22:36:40.000','1215','275','2005-08-25 00:18:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14064','2005-08-20 22:39:16.000','2938','103','2005-08-22 00:45:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14065','2005-08-20 22:40:47.000','3758','190','2005-08-24 01:47:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14066','2005-08-20 22:45:58.000','2444','274','2005-08-29 00:23:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14067','2005-08-20 22:49:23.000','1376','259','2005-08-29 22:28:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14068','2005-08-20 22:50:59.000','818','412','2005-08-29 00:45:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14069','2005-08-20 22:51:25.000','2239','197','2005-08-30 00:30:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14070','2005-08-20 22:56:34.000','846','581','2005-08-29 22:02:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14071','2005-08-20 23:01:56.000','2471','550','2005-08-22 02:14:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14072','2005-08-20 23:07:10.000','2387','515','2005-08-23 03:38:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14073','2005-08-20 23:12:57.000','2996','230','2005-08-28 18:47:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14074','2005-08-20 23:16:07.000','1303','506','2005-08-26 04:45:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14075','2005-08-20 23:18:54.000','3793','32','2005-08-26 21:59:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14076','2005-08-20 23:20:10.000','1070','574','2005-08-24 04:00:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14077','2005-08-20 23:24:07.000','3184','21','2005-08-29 02:53:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14078','2005-08-20 23:26:40.000','1642','396','2005-08-28 02:30:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14079','2005-08-20 23:29:25.000','3528','348','2005-08-25 04:16:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14080','2005-08-20 23:29:50.000','3962','266','2005-08-26 00:33:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14081','2005-08-20 23:35:13.000','589','392','2005-08-28 01:41:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14082','2005-08-20 23:42:00.000','3767','179','2005-08-27 00:59:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14083','2005-08-20 23:42:31.000','1823','176','2005-08-28 21:44:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14084','2005-08-20 23:42:46.000','900','37','2005-08-24 20:06:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14085','2005-08-20 23:46:24.000','3506','471','2005-08-29 02:31:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14086','2005-08-20 23:47:54.000','3244','253','2005-08-27 22:49:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14087','2005-08-20 23:53:40.000','2368','289','2005-08-26 20:22:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14088','2005-08-20 23:57:24.000','1184','518','2005-08-28 21:49:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14089','2005-08-20 23:59:02.000','1400','425','2005-08-27 00:19:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14090','2005-08-21 00:11:16.000','3254','168','2005-08-23 19:48:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14091','2005-08-21 00:11:17.000','3304','53','2005-08-27 18:38:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14092','2005-08-21 00:14:32.000','1596','273','2005-08-24 22:22:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14093','2005-08-21 00:21:29.000','1176','177','2005-08-22 04:01:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14094','2005-08-21 00:21:35.000','3674','471','2005-08-23 05:27:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14095','2005-08-21 00:25:45.000','1550','489','2005-08-28 23:00:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14096','2005-08-21 00:27:46.000','2089','342','2005-08-22 22:53:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14097','2005-08-21 00:28:48.000','4351','88','2005-08-29 22:15:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14098','2005-08-21 00:30:32.000','6','554',NULL,'2','2006-02-23 04:12:08.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14099','2005-08-21 00:31:03.000','2452','224','2005-08-27 03:18:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14100','2005-08-21 00:31:07.000','4295','397','2005-08-25 05:31:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14101','2005-08-21 00:33:03.000','1892','19','2005-08-24 01:59:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14102','2005-08-21 00:35:21.000','3772','584','2005-08-30 04:51:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14103','2005-08-21 00:37:00.000','1438','409','2005-08-25 22:09:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14104','2005-08-21 00:37:44.000','912','178','2005-08-21 22:55:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14105','2005-08-21 00:44:34.000','1111','71','2005-08-29 19:00:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14106','2005-08-21 00:46:01.000','2673','315','2005-08-27 23:44:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14107','2006-02-14 15:16:03.000','3998','251',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14108','2005-08-21 00:52:45.000','4339','243','2005-08-21 19:35:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14109','2005-08-21 00:52:58.000','1046','180','2005-08-22 00:09:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14110','2005-08-21 00:53:09.000','2709','35','2005-08-24 05:33:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14111','2005-08-21 00:59:01.000','1294','130','2005-08-22 20:43:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14112','2005-08-21 01:00:46.000','734','141','2005-08-27 03:46:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14113','2005-08-21 01:03:30.000','931','288','2005-08-23 06:46:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14114','2005-08-21 01:07:11.000','2270','8','2005-08-24 20:33:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14115','2005-08-21 01:10:29.000','1945','257','2005-08-24 01:21:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14116','2005-08-21 01:11:17.000','2356','142','2005-08-24 23:45:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14117','2005-08-21 01:11:59.000','573','493','2005-08-22 06:56:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14118','2005-08-21 01:13:37.000','2605','337','2005-08-28 02:35:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14119','2005-08-21 01:15:59.000','129','53','2005-08-27 23:36:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14120','2005-08-21 01:25:00.000','4069','302','2005-08-24 23:21:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14121','2005-08-21 01:26:33.000','4207','417','2005-08-28 22:47:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14122','2005-08-21 01:29:01.000','3955','86','2005-08-27 05:31:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14123','2005-08-21 01:31:25.000','143','66','2005-08-23 02:32:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14124','2005-08-21 01:31:51.000','311','35','2005-08-24 22:20:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14125','2005-08-21 01:32:16.000','2174','265','2005-08-26 00:09:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14126','2005-08-21 01:32:17.000','2738','215','2005-08-23 01:02:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14127','2005-08-21 01:33:32.000','4532','550','2005-08-22 02:47:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14128','2005-08-21 01:35:58.000','2594','81','2005-08-21 21:23:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14129','2005-08-21 01:42:15.000','3572','362','2005-08-23 20:04:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14130','2005-08-21 01:43:11.000','3859','352','2005-08-27 21:16:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14131','2005-08-21 01:43:40.000','4382','267','2005-08-29 02:00:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14132','2005-08-21 01:43:58.000','3806','91','2005-08-26 20:16:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14133','2005-08-21 01:44:14.000','2463','453','2005-08-30 02:19:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14134','2005-08-21 01:45:54.000','2159','497','2005-08-24 01:36:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14135','2005-08-21 01:53:54.000','347','59','2005-08-27 05:57:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14136','2005-08-21 01:57:26.000','268','135','2005-08-28 01:11:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14137','2006-02-14 15:16:03.000','2346','53',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14138','2005-08-21 01:59:37.000','1238','121','2005-08-30 01:17:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14139','2005-08-21 02:04:33.000','2280','561','2005-08-22 04:16:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14140','2005-08-21 02:04:57.000','2070','65','2005-08-29 06:41:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14141','2005-08-21 02:07:22.000','4527','190','2005-08-30 07:32:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14142','2005-08-21 02:07:43.000','1479','544','2005-08-23 02:37:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14143','2005-08-21 02:10:32.000','2549','146','2005-08-23 23:50:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14144','2005-08-21 02:10:57.000','2366','46','2005-08-28 01:02:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14145','2005-08-21 02:11:38.000','150','314','2005-08-22 22:19:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14146','2005-08-21 02:13:31.000','2151','192','2005-08-24 22:47:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14147','2005-08-21 02:14:03.000','1476','366','2005-08-27 22:38:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14148','2005-08-21 02:17:49.000','1605','528','2005-08-22 00:12:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14149','2005-08-21 02:22:47.000','3371','518','2005-08-24 02:36:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14150','2005-08-21 02:23:03.000','2324','161','2005-08-25 22:50:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14151','2005-08-21 02:23:25.000','2785','426','2005-08-30 07:08:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14152','2005-08-21 02:23:50.000','2561','379','2005-08-25 06:05:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14153','2005-08-21 02:24:33.000','1502','120','2005-08-27 05:28:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14154','2005-08-21 02:30:00.000','951','468','2005-08-28 01:41:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14155','2005-08-21 02:31:35.000','769','148','2005-08-27 06:00:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14156','2005-08-21 02:35:16.000','437','147','2005-08-27 01:32:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14157','2005-08-21 02:43:15.000','4471','128','2005-08-24 02:47:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14158','2005-08-21 02:43:20.000','474','114','2005-08-28 02:19:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14159','2005-08-21 02:45:58.000','3231','144','2005-08-27 04:53:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14160','2006-02-14 15:16:03.000','2428','493',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14161','2005-08-21 02:51:59.000','2744','21','2005-08-28 21:38:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14162','2005-08-21 02:55:34.000','3788','315','2005-08-27 00:13:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14163','2005-08-21 02:56:52.000','1007','204','2005-08-21 21:03:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14164','2005-08-21 02:58:02.000','2381','274','2005-08-29 23:17:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14165','2005-08-21 02:59:17.000','4151','150','2005-08-24 23:09:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14166','2005-08-21 02:59:31.000','2457','190','2005-08-24 23:19:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14167','2005-08-21 02:59:48.000','1005','64','2005-08-29 22:17:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14168','2005-08-21 03:00:03.000','1321','49','2005-08-29 06:04:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14169','2005-08-21 03:00:31.000','3800','396','2005-08-30 01:16:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14170','2005-08-21 03:00:39.000','894','259','2005-08-27 23:07:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14171','2005-08-21 03:00:42.000','4179','320','2005-08-24 00:54:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14172','2006-02-14 15:16:03.000','2158','450',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14173','2005-08-21 03:01:01.000','3175','152','2005-08-22 02:40:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14174','2005-08-21 03:01:45.000','1862','29','2005-08-22 07:19:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14175','2006-02-14 15:16:03.000','2021','452',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14176','2005-08-21 03:09:23.000','4420','556','2005-08-26 21:26:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14177','2005-08-21 03:11:33.000','409','121','2005-08-28 21:41:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14178','2005-08-21 03:13:45.000','2178','524','2005-08-22 01:50:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14179','2005-08-21 03:14:27.000','3956','79','2005-08-26 00:46:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14180','2005-08-21 03:16:15.000','796','262','2005-08-24 22:31:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14181','2005-08-21 03:16:30.000','197','210','2005-08-29 06:25:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14182','2005-08-21 03:17:10.000','2422','519','2005-08-24 21:46:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14183','2005-08-21 03:24:29.000','1888','26','2005-08-22 07:25:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14184','2005-08-21 03:24:50.000','3759','148','2005-08-29 01:46:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14185','2005-08-21 03:28:37.000','3957','579','2005-08-26 01:15:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14186','2005-08-21 03:31:07.000','3158','461','2005-08-28 07:29:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14187','2005-08-21 03:32:03.000','4031','275','2005-08-25 03:29:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14188','2005-08-21 03:32:04.000','4492','548','2005-08-22 07:26:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14189','2005-08-21 03:32:17.000','2209','127','2005-08-22 04:46:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14190','2005-08-21 03:35:21.000','4203','517','2005-08-29 07:35:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14191','2005-08-21 03:35:58.000','301','423','2005-08-28 00:28:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14192','2005-08-21 03:37:42.000','3563','26','2005-08-28 05:31:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14193','2005-08-21 03:38:27.000','513','25','2005-08-28 09:16:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14194','2005-08-21 03:40:11.000','2003','138','2005-08-26 07:38:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14195','2005-08-21 03:40:35.000','3732','93','2005-08-23 01:22:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14196','2005-08-21 03:40:40.000','4477','281','2005-08-25 05:55:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14197','2005-08-21 03:47:25.000','340','469','2005-08-30 09:15:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14198','2005-08-21 03:48:31.000','465','381','2005-08-24 07:10:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14199','2005-08-21 03:48:43.000','658','442','2005-08-23 04:01:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14200','2005-08-21 03:51:27.000','2339','349','2005-08-29 22:00:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14201','2005-08-21 03:51:34.000','314','427','2005-08-30 03:42:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14202','2005-08-21 03:51:52.000','1995','473','2005-08-22 09:35:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14203','2005-08-21 03:51:52.000','3668','95','2005-08-24 06:13:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14204','2006-02-14 15:16:03.000','4334','287',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14205','2005-08-21 03:57:15.000','315','406','2005-08-30 08:46:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14206','2005-08-21 03:59:26.000','860','279','2005-08-26 03:52:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14207','2005-08-21 04:08:19.000','1327','569','2005-08-29 07:59:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14208','2005-08-21 04:09:18.000','4180','299','2005-08-22 03:29:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14209','2005-08-21 04:17:56.000','896','472','2005-08-27 06:57:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14210','2005-08-21 04:28:02.000','1867','468','2005-08-24 02:14:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14211','2005-08-21 04:29:11.000','300','372','2005-08-24 02:50:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14212','2005-08-21 04:29:26.000','4540','354','2005-08-24 00:46:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14213','2005-08-21 04:30:47.000','382','511','2005-08-24 23:01:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14214','2005-08-21 04:30:49.000','4510','198','2005-08-26 04:42:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14215','2005-08-21 04:34:11.000','35','54','2005-08-27 10:30:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14216','2006-02-14 15:16:03.000','3763','186',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14217','2005-08-21 04:37:56.000','2847','66','2005-08-26 03:55:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14218','2005-08-21 04:43:59.000','4087','104','2005-08-27 10:29:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14219','2006-02-14 15:16:03.000','3718','334',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14220','2006-02-14 15:16:03.000','2618','162',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14221','2005-08-21 04:49:41.000','3824','51','2005-08-29 23:52:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14222','2005-08-21 04:49:48.000','714','7','2005-08-25 05:34:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14223','2005-08-21 04:51:51.000','514','392','2005-08-29 00:37:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14224','2005-08-21 04:53:08.000','3634','323','2005-08-27 04:12:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14225','2005-08-21 04:53:37.000','984','4','2005-08-25 23:39:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14226','2005-08-21 04:55:37.000','1793','316','2005-08-24 04:32:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14227','2005-08-21 04:56:31.000','4102','277','2005-08-22 05:04:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14228','2005-08-21 04:57:08.000','2016','71','2005-08-25 00:06:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14229','2005-08-21 04:57:15.000','4479','186','2005-08-26 10:00:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14230','2005-08-21 04:57:29.000','844','584','2005-08-27 08:14:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14231','2005-08-21 05:04:34.000','1244','307','2005-08-23 04:58:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14232','2005-08-21 05:07:02.000','2710','176','2005-08-29 06:57:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14233','2005-08-21 05:07:08.000','2943','599','2005-08-28 03:20:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14234','2005-08-21 05:07:12.000','1439','271','2005-08-23 06:44:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14235','2005-08-21 05:08:42.000','125','558','2005-08-29 23:36:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14236','2005-08-21 05:13:16.000','172','25','2005-08-26 04:03:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14237','2005-08-21 05:15:00.000','3284','410','2005-08-25 10:06:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14238','2005-08-21 05:16:40.000','3148','192','2005-08-30 02:13:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14239','2005-08-21 05:18:57.000','1559','416','2005-08-22 00:12:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14240','2005-08-21 05:19:39.000','3294','12','2005-08-22 23:25:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14241','2005-08-21 05:24:55.000','2547','291','2005-08-30 03:33:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14242','2005-08-21 05:25:59.000','1588','68','2005-08-27 07:22:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14243','2006-02-14 15:16:03.000','1489','264',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14244','2005-08-21 05:29:55.000','1150','43','2005-08-24 01:06:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14245','2005-08-21 05:30:54.000','975','354','2005-08-26 07:02:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14246','2005-08-21 05:34:09.000','3499','120','2005-08-26 06:12:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14247','2005-08-21 05:35:17.000','267','302','2005-08-26 03:22:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14248','2005-08-21 05:35:57.000','725','293','2005-08-28 05:53:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14249','2005-08-21 05:38:05.000','695','268','2005-08-28 09:07:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14250','2005-08-21 05:39:35.000','3008','313','2005-08-28 10:06:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14251','2005-08-21 05:42:20.000','139','486','2005-08-26 06:20:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14252','2005-08-21 05:44:07.000','2660','13','2005-08-29 08:53:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14253','2005-08-21 05:47:52.000','4246','456','2005-08-25 04:28:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14254','2005-08-21 05:51:28.000','1549','589','2005-08-29 06:05:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14255','2005-08-21 05:51:37.000','3125','492','2005-08-29 10:00:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14256','2005-08-21 05:52:27.000','2922','331','2005-08-29 02:10:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14257','2005-08-21 05:52:57.000','3830','178','2005-08-29 03:18:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14258','2005-08-21 05:56:36.000','752','359','2005-08-26 06:14:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14259','2005-08-21 06:00:22.000','3705','583','2005-08-22 05:38:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14260','2005-08-21 06:01:08.000','2961','40','2005-08-29 09:01:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14261','2005-08-21 06:07:24.000','1426','166','2005-08-26 09:57:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14262','2005-08-21 06:08:13.000','1430','324','2005-08-30 10:55:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14263','2005-08-21 06:08:15.000','2595','533','2005-08-29 09:22:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14264','2005-08-21 06:18:22.000','3426','295','2005-08-25 08:08:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14265','2005-08-21 06:20:14.000','3116','134','2005-08-23 09:05:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14266','2005-08-21 06:20:51.000','3543','269','2005-08-23 00:44:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14267','2006-02-14 15:16:03.000','2199','527',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14268','2005-08-21 06:21:24.000','2442','278','2005-08-23 05:39:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14269','2005-08-21 06:22:07.000','531','241','2005-08-30 00:41:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14270','2005-08-21 06:22:18.000','4083','171','2005-08-27 08:04:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14271','2005-08-21 06:23:29.000','4506','224','2005-08-27 04:49:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14272','2005-08-21 06:24:55.000','3908','243','2005-08-28 02:25:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14273','2005-08-21 06:26:48.000','2640','388','2005-08-30 10:34:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14274','2005-08-21 06:29:20.000','3183','405','2005-08-26 06:25:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14275','2005-08-21 06:30:30.000','3238','163','2005-08-25 12:28:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14276','2005-08-21 06:34:05.000','3637','318','2005-08-28 10:13:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14277','2005-08-21 06:34:41.000','2652','566','2005-08-28 10:53:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14278','2006-02-14 15:16:03.000','2334','557',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14279','2005-08-21 06:39:08.000','3325','387','2005-08-29 11:01:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14280','2005-08-21 06:39:58.000','1561','481','2005-08-23 04:50:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14281','2005-08-21 06:40:48.000','1848','166','2005-08-26 11:42:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14282','2005-08-21 06:41:29.000','3107','450','2005-08-22 12:37:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14283','2005-08-21 06:44:14.000','3052','253','2005-08-24 01:01:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14284','2005-08-21 06:44:37.000','633','486','2005-08-28 05:03:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14285','2005-08-21 06:50:48.000','402','249','2005-08-28 11:35:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14286','2005-08-21 06:53:53.000','2377','558','2005-08-27 11:37:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14287','2005-08-21 06:53:59.000','2426','427','2005-08-25 03:10:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14288','2005-08-21 06:57:34.000','587','512','2005-08-26 11:32:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14289','2005-08-21 06:58:49.000','1185','103','2005-08-25 11:29:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14290','2005-08-21 07:02:59.000','790','366','2005-08-28 02:57:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14291','2005-08-21 07:03:05.000','3988','56','2005-08-26 12:56:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14292','2005-08-21 07:06:20.000','1959','251','2005-08-22 01:39:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14293','2005-08-21 07:06:47.000','3555','364','2005-08-22 05:07:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14294','2005-08-21 07:07:26.000','354','455','2005-08-22 02:20:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14295','2005-08-21 07:09:27.000','2187','336','2005-08-22 01:27:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14296','2005-08-21 07:13:23.000','3813','275','2005-08-26 11:14:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14297','2005-08-21 07:13:46.000','1712','566','2005-08-25 09:07:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14298','2005-08-21 07:17:10.000','4317','410','2005-08-25 10:10:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14299','2005-08-21 07:18:57.000','4028','342','2005-08-24 01:28:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14300','2005-08-21 07:19:37.000','690','382','2005-08-25 12:06:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14301','2005-08-21 07:19:48.000','283','162','2005-08-28 02:06:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14302','2005-08-21 07:19:57.000','1287','511','2005-08-28 02:59:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14303','2005-08-21 07:22:43.000','992','475','2005-08-24 11:52:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14304','2005-08-21 07:23:10.000','2650','417','2005-08-26 11:21:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14305','2005-08-21 07:29:05.000','2056','58','2005-08-27 08:18:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14306','2005-08-21 07:32:35.000','4027','453','2005-08-30 05:53:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14307','2005-08-21 07:34:52.000','2894','328','2005-08-29 09:45:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14308','2005-08-21 07:43:21.000','3478','419','2005-08-25 02:39:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14309','2005-08-21 07:44:17.000','4447','468','2005-08-30 07:23:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14310','2005-08-21 07:44:32.000','95','177','2005-08-22 09:02:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14311','2005-08-21 07:45:47.000','1761','69','2005-08-27 02:23:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14312','2005-08-21 07:48:34.000','1090','238','2005-08-23 04:45:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14313','2005-08-21 07:49:53.000','3384','468','2005-08-30 05:52:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14314','2005-08-21 07:50:14.000','4115','178','2005-08-24 10:47:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14315','2005-08-21 07:56:39.000','1164','459','2005-08-27 04:52:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14316','2005-08-21 07:59:47.000','386','64','2005-08-23 02:20:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14317','2005-08-21 08:00:40.000','2090','471','2005-08-27 06:52:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14318','2006-02-14 15:16:03.000','1042','508',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14319','2005-08-21 08:00:55.000','4480','410','2005-08-26 05:04:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14320','2005-08-21 08:04:40.000','3121','199','2005-08-22 02:09:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14321','2005-08-21 08:05:12.000','967','236','2005-08-23 02:17:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14322','2005-08-21 08:06:30.000','2818','221','2005-08-29 10:12:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14323','2005-08-21 08:08:43.000','1257','97','2005-08-25 10:44:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14324','2005-08-21 08:10:56.000','1361','155','2005-08-30 12:09:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14325','2005-08-21 08:15:38.000','4432','313','2005-08-23 08:08:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14326','2005-08-21 08:15:41.000','1052','17','2005-08-27 05:22:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14327','2005-08-21 08:18:18.000','553','457','2005-08-30 02:21:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14328','2005-08-21 08:18:20.000','3194','489','2005-08-25 03:05:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14329','2005-08-21 08:22:56.000','3544','6','2005-08-28 02:22:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14330','2005-08-21 08:29:20.000','763','84','2005-08-30 03:59:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14331','2005-08-21 08:29:38.000','3128','372','2005-08-29 13:18:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14332','2005-08-21 08:30:43.000','1388','496','2005-08-29 10:51:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14333','2005-08-21 08:31:03.000','2976','93','2005-08-28 03:39:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14334','2005-08-21 08:32:32.000','1448','595','2005-08-25 02:53:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14335','2005-08-21 08:33:07.000','2610','263','2005-08-26 14:16:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14336','2005-08-21 08:33:42.000','3166','362','2005-08-23 03:27:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14337','2005-08-21 08:34:26.000','3529','506','2005-08-24 11:31:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14338','2005-08-21 08:36:03.000','1789','205','2005-08-24 12:31:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14339','2005-08-21 08:37:15.000','1744','30','2005-08-26 03:37:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14340','2005-08-21 08:38:21.000','2181','230','2005-08-25 09:25:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14341','2005-08-21 08:38:24.000','4498','560','2005-08-26 12:36:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14342','2005-08-21 08:39:26.000','2749','559','2005-08-23 11:40:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14343','2005-08-21 08:40:21.000','3769','238','2005-08-29 03:06:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14344','2005-08-21 08:40:56.000','1562','341','2005-08-27 12:40:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14345','2005-08-21 08:41:15.000','1726','598','2005-08-24 11:59:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14346','2005-08-21 08:42:26.000','109','17','2005-08-23 09:18:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14347','2005-08-21 08:42:31.000','3862','214','2005-08-25 07:11:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14348','2005-08-21 08:54:26.000','885','496','2005-08-24 02:55:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14349','2005-08-21 08:54:53.000','96','119','2005-08-30 14:27:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14350','2005-08-21 08:58:38.000','3174','222','2005-08-30 03:29:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14351','2005-08-21 09:04:20.000','2037','66','2005-08-25 05:27:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14352','2005-08-21 09:06:29.000','1224','527','2005-08-28 13:36:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14353','2005-08-21 09:07:50.000','1612','129','2005-08-22 10:31:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14354','2005-08-21 09:08:14.000','1137','382','2005-08-30 05:27:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14355','2005-08-21 09:08:29.000','649','271','2005-08-27 10:08:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14356','2005-08-21 09:08:51.000','3169','65','2005-08-24 04:36:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14357','2005-08-21 09:13:09.000','2906','233','2005-08-22 05:41:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14358','2005-08-21 09:14:28.000','861','112','2005-08-24 05:05:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14359','2005-08-21 09:16:19.000','1841','401','2005-08-22 09:28:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14360','2005-08-21 09:16:40.000','2677','246','2005-08-29 11:43:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14361','2006-02-14 15:16:03.000','1231','191',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14362','2005-08-21 09:19:49.000','1992','312','2005-08-26 11:06:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14363','2005-08-21 09:20:03.000','2579','560','2005-08-23 14:26:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14364','2005-08-21 09:25:11.000','3513','236','2005-08-29 09:04:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14365','2005-08-21 09:25:13.000','618','457','2005-08-27 11:48:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14366','2005-08-21 09:31:39.000','4011','524','2005-08-26 11:55:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14367','2005-08-21 09:31:44.000','870','244','2005-08-26 03:54:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14368','2005-08-21 09:31:47.000','2063','351','2005-08-30 04:17:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14369','2005-08-21 09:33:44.000','1636','392','2005-08-25 08:56:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14370','2005-08-21 09:35:14.000','3520','161','2005-08-27 05:21:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14371','2005-08-21 09:37:16.000','2197','221','2005-08-27 13:50:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14372','2005-08-21 09:39:50.000','1953','520','2005-08-28 13:36:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14373','2005-08-21 09:44:53.000','4433','268','2005-08-25 15:37:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14374','2006-02-14 15:16:03.000','236','213',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14375','2005-08-21 09:46:35.000','2507','550','2005-08-26 10:24:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14376','2005-08-21 09:48:56.000','1936','582','2005-08-22 12:15:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14377','2005-08-21 09:49:28.000','1325','6','2005-08-29 13:34:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14378','2005-08-21 09:50:02.000','810','515','2005-08-30 09:07:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14379','2005-08-21 09:53:03.000','3062','136','2005-08-24 14:32:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14380','2005-08-21 09:53:52.000','1523','198','2005-08-25 05:03:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14381','2005-08-21 09:55:47.000','811','391','2005-08-25 08:23:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14382','2005-08-21 10:01:03.000','4119','119','2005-08-22 13:21:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14383','2005-08-21 10:02:05.000','1941','482','2005-08-24 12:21:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14384','2005-08-21 10:02:37.000','2429','371','2005-08-26 08:20:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14385','2005-08-21 10:02:55.000','4356','317','2005-08-25 07:19:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14386','2005-08-21 10:06:34.000','3402','514','2005-08-25 14:19:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14387','2005-08-21 10:10:01.000','1286','295','2005-08-28 14:16:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14388','2005-08-21 10:15:13.000','1078','274','2005-08-30 13:41:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14389','2005-08-21 10:15:20.000','2718','145','2005-08-27 05:39:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14390','2005-08-21 10:15:38.000','3951','366','2005-08-28 05:50:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14391','2005-08-21 10:16:27.000','3117','205','2005-08-23 07:00:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14392','2005-08-21 10:19:25.000','847','586','2005-08-28 15:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14393','2005-08-21 10:22:51.000','3937','368','2005-08-29 08:28:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14394','2005-08-21 10:23:10.000','4555','118','2005-08-28 09:33:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14395','2005-08-21 10:24:00.000','632','506','2005-08-28 12:23:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14396','2005-08-21 10:24:54.000','3855','353','2005-08-22 04:49:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14397','2005-08-21 10:25:56.000','3883','47','2005-08-24 07:48:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14398','2005-08-21 10:27:21.000','357','505','2005-08-23 10:46:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14399','2005-08-21 10:33:23.000','3582','188','2005-08-27 08:00:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14400','2005-08-21 10:33:45.000','3891','569','2005-08-26 12:05:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14401','2005-08-21 10:36:20.000','3468','407','2005-08-30 06:45:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14402','2005-08-21 10:38:17.000','749','467','2005-08-27 08:36:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14403','2005-08-21 10:40:34.000','3581','297','2005-08-29 11:29:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14404','2005-08-21 10:43:04.000','3660','192','2005-08-30 10:00:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14405','2005-08-21 10:45:01.000','2777','470','2005-08-30 04:48:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14406','2005-08-21 10:46:35.000','2741','181','2005-08-28 15:55:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14407','2005-08-21 10:46:51.000','2403','500','2005-08-25 09:28:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14408','2005-08-21 10:47:24.000','222','593','2005-08-27 08:18:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14409','2005-08-21 10:53:35.000','1161','314','2005-08-25 10:40:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14410','2005-08-21 10:54:49.000','839','196','2005-08-26 08:28:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14411','2005-08-21 10:54:57.000','2125','502','2005-08-22 13:17:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14412','2005-08-21 11:02:09.000','212','121','2005-08-29 06:44:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14413','2005-08-21 11:06:33.000','50','367','2005-08-29 16:10:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14414','2005-08-21 11:08:17.000','1757','515','2005-08-23 08:37:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14415','2006-02-14 15:16:03.000','2670','561',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14416','2005-08-21 11:11:46.000','3002','384','2005-08-25 12:33:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14417','2005-08-21 11:13:35.000','1768','596','2005-08-25 11:27:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14418','2005-08-21 11:14:26.000','89','442','2005-08-28 08:34:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14419','2005-08-21 11:15:46.000','3146','221','2005-08-30 16:37:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14420','2005-08-21 11:16:15.000','2495','551','2005-08-24 06:06:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14421','2005-08-21 11:20:21.000','4402','406','2005-08-24 06:26:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14422','2005-08-21 11:21:46.000','1382','361','2005-08-25 13:15:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14423','2005-08-21 11:23:59.000','2873','521','2005-08-26 11:52:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14424','2005-08-21 11:24:11.000','2535','489','2005-08-29 13:13:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14425','2006-02-14 15:16:03.000','2752','560',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14426','2006-02-14 15:16:03.000','2902','315',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14427','2005-08-21 11:26:06.000','2353','163','2005-08-27 10:39:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14428','2005-08-21 11:27:07.000','1614','458','2005-08-29 09:50:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14429','2005-08-21 11:29:43.000','2513','66','2005-08-24 12:05:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14430','2005-08-21 11:31:11.000','2623','5','2005-08-26 06:29:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14431','2005-08-21 11:31:15.000','1572','106','2005-08-26 11:22:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14432','2005-08-21 11:36:15.000','2294','138','2005-08-24 08:02:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14433','2005-08-21 11:36:34.000','732','401','2005-08-26 08:51:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14434','2005-08-21 11:40:46.000','2085','549','2005-08-24 05:50:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14435','2005-08-21 11:44:37.000','2919','169','2005-08-24 08:04:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14436','2005-08-21 11:48:27.000','3473','560','2005-08-25 15:49:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14437','2005-08-21 11:48:32.000','1504','136','2005-08-25 11:06:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14438','2005-08-21 11:51:10.000','1621','392','2005-08-28 17:10:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14439','2005-08-21 11:52:41.000','3903','564','2005-08-30 10:36:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14440','2005-08-21 11:59:04.000','3495','194','2005-08-23 10:10:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14441','2005-08-21 11:59:38.000','1210','260','2005-08-26 11:17:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14442','2005-08-21 12:00:21.000','122','205','2005-08-23 17:00:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14443','2005-08-21 12:06:32.000','376','447','2005-08-29 13:44:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14444','2005-08-21 12:07:25.000','2211','225','2005-08-28 08:36:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14445','2005-08-21 12:07:42.000','3186','256','2005-08-22 17:51:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14446','2005-08-21 12:10:41.000','4367','21','2005-08-26 14:42:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14447','2005-08-21 12:12:05.000','1889','584','2005-08-27 14:47:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14448','2005-08-21 12:13:10.000','1937','263','2005-08-30 08:46:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14449','2005-08-21 12:13:18.000','653','529','2005-08-27 15:41:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14450','2005-08-21 12:21:25.000','1194','48','2005-08-26 14:35:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14451','2005-08-21 12:21:44.000','3967','467','2005-08-22 15:07:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14452','2005-08-21 12:23:20.000','4231','325','2005-08-27 06:26:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14453','2005-08-21 12:33:34.000','3312','237','2005-08-27 11:10:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14454','2005-08-21 12:35:49.000','2475','150','2005-08-22 16:28:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14455','2005-08-21 12:36:11.000','3442','68','2005-08-27 08:12:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14456','2005-08-21 12:38:09.000','2520','125','2005-08-26 08:29:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14457','2005-08-21 12:47:38.000','4288','340','2005-08-25 13:07:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14458','2005-08-21 12:47:53.000','1769','256','2005-08-30 17:09:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14459','2005-08-21 12:48:08.000','1532','98','2005-08-27 10:50:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14460','2005-08-21 12:48:48.000','4137','120','2005-08-30 16:34:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14461','2005-08-21 12:50:33.000','371','42','2005-08-30 13:35:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14462','2005-08-21 12:50:57.000','2201','96','2005-08-27 10:42:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14463','2005-08-21 12:51:49.000','1403','365','2005-08-29 12:17:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14464','2005-08-21 12:52:54.000','2310','121','2005-08-25 16:42:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14465','2005-08-21 12:54:22.000','4206','262','2005-08-28 10:46:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14466','2005-08-21 13:03:13.000','923','442','2005-08-22 15:19:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14467','2005-08-21 13:03:33.000','1498','522','2005-08-28 15:28:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14468','2005-08-21 13:07:10.000','4168','224','2005-08-30 19:05:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14469','2005-08-21 13:07:24.000','1957','554','2005-08-24 10:37:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14470','2005-08-21 13:09:41.000','3899','379','2005-08-23 10:20:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14471','2005-08-21 13:10:40.000','1254','395','2005-08-26 16:49:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14472','2005-08-21 13:13:57.000','4097','184','2005-08-23 14:04:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14473','2005-08-21 13:19:03.000','2747','298','2005-08-23 15:12:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14474','2005-08-21 13:22:48.000','2632','294','2005-08-27 14:13:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14475','2005-08-21 13:24:32.000','3164','2','2005-08-27 08:59:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14476','2005-08-21 13:31:07.000','2821','101','2005-08-23 17:06:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14477','2005-08-21 13:32:38.000','1564','126','2005-08-25 18:02:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14478','2005-08-21 13:33:28.000','2990','231','2005-08-25 13:33:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14479','2005-08-21 13:35:54.000','2235','324','2005-08-29 12:12:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14480','2005-08-21 13:36:40.000','229','411','2005-08-26 08:39:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14481','2005-08-21 13:41:14.000','4099','367','2005-08-30 07:53:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14482','2005-08-21 13:42:45.000','2765','23','2005-08-27 11:55:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14483','2005-08-21 13:43:59.000','37','275','2005-08-28 16:38:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14484','2005-08-21 13:47:29.000','3714','418','2005-08-23 18:25:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14485','2005-08-21 13:52:07.000','1637','241','2005-08-30 13:06:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14486','2005-08-21 13:52:54.000','3119','138','2005-08-23 07:58:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14487','2005-08-21 13:53:33.000','2578','526','2005-08-29 19:32:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14488','2006-02-14 15:16:03.000','4202','75',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14489','2005-08-21 13:53:59.000','2312','9','2005-08-30 15:45:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14490','2005-08-21 13:54:15.000','1771','205','2005-08-28 19:08:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14491','2005-08-21 13:55:39.000','2072','226','2005-08-29 17:51:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14492','2005-08-21 13:59:08.000','1591','266','2005-08-23 11:09:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14493','2005-08-21 14:01:44.000','2590','389','2005-08-28 17:20:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14494','2005-08-21 14:02:50.000','169','5','2005-08-22 16:45:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14495','2005-08-21 14:04:39.000','3215','429','2005-08-22 16:53:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14496','2005-08-21 14:07:35.000','2185','223','2005-08-24 12:31:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14497','2005-08-21 14:09:47.000','3240','254','2005-08-22 11:10:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14498','2005-08-21 14:10:44.000','3971','544','2005-08-23 08:29:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14499','2005-08-21 14:11:19.000','4109','292','2005-08-23 16:10:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14500','2005-08-21 14:11:30.000','2024','451','2005-08-27 12:19:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14501','2005-08-21 14:14:38.000','3588','576','2005-08-25 17:58:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14502','2005-08-21 14:22:28.000','2986','378','2005-08-23 10:40:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14503','2006-02-14 15:16:03.000','2144','188',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14504','2005-08-21 14:23:01.000','4536','312','2005-08-27 13:56:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14505','2005-08-21 14:26:28.000','2172','203','2005-08-29 17:34:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14506','2005-08-21 14:32:27.000','4493','537','2005-08-24 19:02:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14507','2005-08-21 14:32:45.000','1969','175','2005-08-28 09:50:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14508','2005-08-21 14:33:58.000','703','396','2005-08-27 10:45:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14509','2005-08-21 14:39:58.000','541','520','2005-08-26 13:19:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14510','2005-08-21 14:44:41.000','1868','547','2005-08-30 20:19:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14511','2005-08-21 14:45:34.000','4452','16','2005-08-28 10:36:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14512','2005-08-21 14:47:09.000','579','51','2005-08-24 18:10:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14513','2005-08-21 14:51:35.000','4265','185','2005-08-24 13:24:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14514','2005-08-21 14:51:52.000','1259','295','2005-08-30 10:40:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14515','2005-08-21 14:52:14.000','2215','242','2005-08-27 10:27:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14516','2006-02-14 15:16:03.000','713','457',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14517','2005-08-21 14:57:03.000','3568','311','2005-08-24 13:52:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14518','2005-08-21 14:58:58.000','2734','82','2005-08-24 13:19:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14519','2005-08-21 14:59:29.000','1541','403','2005-08-22 11:48:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14520','2005-08-21 15:00:49.000','4533','150','2005-08-30 19:04:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14521','2005-08-21 15:01:32.000','1538','200','2005-08-28 19:12:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14522','2005-08-21 15:01:34.000','2101','535','2005-08-25 16:37:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14523','2005-08-21 15:03:45.000','345','433','2005-08-22 18:06:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14524','2005-08-21 15:05:27.000','4409','374','2005-08-29 12:07:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14525','2005-08-21 15:06:49.000','3020','420','2005-08-22 16:30:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14526','2006-02-14 15:16:03.000','1799','534',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14527','2005-08-21 15:07:42.000','3496','232','2005-08-23 12:31:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14528','2005-08-21 15:08:05.000','4305','46','2005-08-26 15:58:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14529','2005-08-21 15:08:31.000','1774','380','2005-08-29 17:15:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14530','2005-08-21 15:10:50.000','1905','77','2005-08-26 09:20:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14531','2006-02-14 15:16:03.000','4296','568',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14532','2005-08-21 15:15:03.000','2057','37','2005-08-25 17:41:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14533','2005-08-21 15:15:19.000','2202','586','2005-08-26 12:47:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14534','2005-08-21 15:16:29.000','2514','56','2005-08-26 16:18:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14535','2005-08-21 15:22:37.000','530','412','2005-08-29 19:23:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14536','2005-08-21 15:22:50.000','2615','48','2005-08-27 17:03:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14537','2005-08-21 15:24:24.000','3755','405','2005-08-23 17:14:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14538','2005-08-21 15:28:15.000','3348','471','2005-08-22 19:55:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14539','2005-08-21 15:29:47.000','3340','41','2005-08-28 19:01:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14540','2005-08-21 15:34:23.000','2362','28','2005-08-27 11:51:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14541','2005-08-21 15:34:32.000','1275','576','2005-08-25 13:18:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14542','2005-08-21 15:36:34.000','1247','101','2005-08-27 20:24:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14543','2005-08-21 15:39:01.000','709','579','2005-08-28 09:47:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14544','2005-08-21 15:41:01.000','2445','589','2005-08-24 15:20:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14545','2005-08-21 15:44:23.000','2459','13','2005-08-29 20:09:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14546','2005-08-21 15:50:50.000','1515','466','2005-08-23 11:37:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14547','2005-08-21 15:51:38.000','1172','265','2005-08-26 15:35:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14548','2005-08-21 15:53:52.000','226','299','2005-08-25 15:39:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14549','2005-08-21 15:54:21.000','4117','155','2005-08-22 17:22:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14550','2005-08-21 15:56:39.000','2814','473','2005-08-23 21:40:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14551','2005-08-21 15:57:25.000','496','521','2005-08-28 11:10:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14552','2005-08-21 15:59:27.000','1991','477','2005-08-27 11:46:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14553','2005-08-21 15:59:40.000','3160','434','2005-08-23 11:54:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14554','2005-08-21 16:03:01.000','31','38','2005-08-26 13:09:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14555','2005-08-21 16:03:02.000','1926','440','2005-08-23 14:18:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14556','2005-08-21 16:03:27.000','475','265','2005-08-29 15:49:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14557','2005-08-21 16:05:11.000','483','490','2005-08-27 16:37:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14558','2005-08-21 16:10:50.000','3958','273','2005-08-28 16:36:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14559','2005-08-21 16:11:35.000','3842','433','2005-08-30 15:26:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14560','2005-08-21 16:13:47.000','1616','579','2005-08-26 15:19:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14561','2005-08-21 16:20:43.000','2498','443','2005-08-27 16:48:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14562','2005-08-21 16:22:59.000','3501','107','2005-08-22 21:15:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14563','2005-08-21 16:23:53.000','3984','212','2005-08-25 11:30:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14564','2005-08-21 16:24:43.000','3250','22','2005-08-26 16:58:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14565','2005-08-21 16:24:45.000','4160','250','2005-08-25 14:42:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14566','2005-08-21 16:25:05.000','84','87','2005-08-26 10:31:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14567','2005-08-21 16:27:25.000','3805','214','2005-08-26 10:47:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14568','2005-08-21 16:30:48.000','3331','582','2005-08-22 13:49:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14569','2005-08-21 16:31:22.000','884','15','2005-08-25 21:27:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14570','2005-08-21 16:32:32.000','955','32','2005-08-30 12:03:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14571','2005-08-21 16:40:26.000','2218','296','2005-08-29 17:10:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14572','2005-08-21 16:44:31.000','1397','538','2005-08-26 16:35:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14573','2005-08-21 16:44:32.000','2423','240','2005-08-23 14:01:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14574','2005-08-21 16:50:34.000','1611','62','2005-08-26 14:24:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14575','2005-08-21 16:51:34.000','3752','159','2005-08-30 20:13:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14576','2005-08-21 16:52:03.000','1189','45','2005-08-28 19:43:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14577','2005-08-21 16:52:29.000','1965','126','2005-08-26 12:30:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14578','2005-08-21 16:53:38.000','3141','389','2005-08-28 20:36:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14579','2005-08-21 16:54:47.000','1205','260','2005-08-28 12:35:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14580','2005-08-21 16:56:39.000','1440','448','2005-08-28 15:25:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14581','2005-08-21 17:07:08.000','751','243','2005-08-26 16:02:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14582','2005-08-21 17:08:33.000','1004','438','2005-08-29 18:04:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14583','2005-08-21 17:11:47.000','1203','455','2005-08-24 16:16:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14584','2005-08-21 17:15:33.000','2617','481','2005-08-24 20:24:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14585','2005-08-21 17:18:33.000','82','30','2005-08-26 11:36:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14586','2005-08-21 17:19:09.000','3094','182','2005-08-26 17:00:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14587','2005-08-21 17:20:55.000','2329','250','2005-08-26 17:17:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14588','2005-08-21 17:25:53.000','1350','219','2005-08-28 21:47:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14589','2005-08-21 17:28:55.000','2810','179','2005-08-22 23:06:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14590','2005-08-21 17:29:10.000','2633','526','2005-08-28 20:15:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14591','2005-08-21 17:30:09.000','3410','538','2005-08-24 12:27:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14592','2005-08-21 17:30:17.000','2681','563','2005-08-22 20:06:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14593','2005-08-21 17:33:18.000','1399','564','2005-08-24 22:11:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14594','2005-08-21 17:34:24.000','2978','62','2005-08-26 22:04:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14595','2005-08-21 17:35:17.000','1879','118','2005-08-27 12:11:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14596','2005-08-21 17:38:37.000','2010','472','2005-08-30 20:28:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14597','2005-08-21 17:39:41.000','1160','472','2005-08-25 14:07:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14598','2005-08-21 17:40:05.000','1113','359','2005-08-29 18:16:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14599','2005-08-21 17:43:42.000','4575','599','2005-08-22 18:53:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14600','2005-08-21 17:45:21.000','3532','255','2005-08-28 19:03:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14601','2005-08-21 17:45:52.000','548','406','2005-08-29 15:10:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14602','2005-08-21 17:48:49.000','3771','370','2005-08-28 21:38:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14603','2005-08-21 17:51:06.000','94','26','2005-08-28 15:36:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14604','2006-02-14 15:16:03.000','1024','585',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14605','2005-08-21 17:56:06.000','476','394','2005-08-24 18:35:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14606','2006-02-14 15:16:03.000','2291','592',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14607','2005-08-21 17:56:50.000','4518','417','2005-08-22 17:44:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14608','2005-08-21 17:57:22.000','3321','90','2005-08-25 13:20:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14609','2005-08-21 17:57:26.000','1206','551','2005-08-25 14:04:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14610','2005-08-21 17:59:09.000','1894','260','2005-08-29 21:36:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14611','2005-08-21 18:01:41.000','4078','443','2005-08-26 12:34:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14612','2005-08-21 18:03:15.000','4105','445','2005-08-27 13:39:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14613','2005-08-21 18:03:20.000','3841','20','2005-08-26 19:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14614','2005-08-21 18:03:51.000','3053','468','2005-08-30 13:37:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14615','2005-08-21 18:06:32.000','2332','171','2005-08-30 13:19:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14616','2006-02-14 15:16:03.000','4537','532',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14617','2005-08-21 18:07:40.000','3562','51','2005-08-24 23:48:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14618','2005-08-21 18:09:51.000','4490','270','2005-08-28 22:47:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14619','2005-08-21 18:10:03.000','1589','338','2005-08-23 13:40:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14620','2005-08-21 18:10:43.000','3272','78','2005-08-22 15:19:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14621','2005-08-21 18:17:59.000','3622','344','2005-08-23 14:16:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14622','2005-08-21 18:25:59.000','2702','559','2005-08-31 00:11:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14623','2005-08-21 18:29:13.000','901','33','2005-08-26 20:48:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14624','2005-08-21 18:32:42.000','4','344','2005-08-23 21:09:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14625','2005-08-21 18:34:21.000','2661','507','2005-08-29 21:41:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14626','2005-08-21 18:35:44.000','1038','554','2005-08-25 23:54:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14627','2005-08-21 18:35:54.000','2470','49','2005-08-30 21:17:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14628','2005-08-21 18:37:24.000','3636','331','2005-08-27 20:25:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14629','2005-08-21 18:39:52.000','761','148','2005-08-25 19:14:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14630','2005-08-21 18:43:44.000','4049','294','2005-08-29 17:08:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14631','2005-08-21 18:47:49.000','782','209','2005-08-28 16:54:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14632','2005-08-21 18:48:06.000','2807','38','2005-08-25 00:33:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14633','2005-08-21 18:51:10.000','2137','551','2005-08-25 13:07:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14634','2005-08-21 18:51:28.000','486','494','2005-08-29 19:30:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14635','2005-08-21 18:51:43.000','2171','108','2005-08-27 16:30:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14636','2005-08-21 18:59:17.000','1671','339','2005-08-23 13:19:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14637','2005-08-21 19:01:00.000','1846','76','2005-08-26 23:03:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14638','2005-08-21 19:01:36.000','3583','216','2005-08-22 15:09:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14639','2005-08-21 19:01:39.000','3510','210','2005-08-26 14:08:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14640','2005-08-21 19:03:19.000','1880','253','2005-08-27 00:37:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14641','2005-08-21 19:05:23.000','2205','147','2005-08-22 22:30:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14642','2005-08-21 19:09:40.000','1280','81','2005-08-30 13:25:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14643','2005-08-21 19:11:58.000','798','119','2005-08-29 19:52:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14644','2005-08-21 19:12:12.000','3905','453','2005-08-29 17:08:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14645','2005-08-21 19:12:47.000','2369','334','2005-08-25 21:42:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14646','2005-08-21 19:14:48.000','948','186','2005-08-23 17:15:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14647','2005-08-21 19:15:33.000','3854','36','2005-08-30 18:58:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14648','2005-08-21 19:18:01.000','2250','284','2005-08-25 14:59:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14649','2005-08-21 19:19:21.000','4074','43','2005-08-22 17:23:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14650','2005-08-21 19:24:51.000','1274','190','2005-08-25 13:58:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14651','2005-08-21 19:31:09.000','4037','544','2005-08-28 14:26:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14652','2005-08-21 19:32:05.000','4163','453','2005-08-23 23:33:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14653','2005-08-21 19:35:59.000','491','593','2005-08-24 15:31:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14654','2005-08-21 19:36:59.000','687','173','2005-08-23 22:03:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14655','2005-08-21 19:37:10.000','785','253','2005-08-22 15:43:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14656','2005-08-21 19:39:28.000','4205','201','2005-08-24 01:36:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14657','2005-08-21 19:39:43.000','477','244','2005-08-26 22:39:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14658','2005-08-21 19:41:50.000','1465','473','2005-08-25 16:11:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14659','2005-08-21 19:42:36.000','928','119','2005-08-26 14:06:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14660','2005-08-21 19:43:21.000','3433','452','2005-08-22 20:42:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14661','2005-08-21 19:44:21.000','745','469','2005-08-27 14:35:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14662','2005-08-21 19:45:27.000','2969','403','2005-08-23 14:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14663','2005-08-21 19:47:55.000','2351','150','2005-08-27 17:36:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14664','2005-08-21 19:48:47.000','4377','153','2005-08-27 16:47:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14665','2005-08-21 19:49:46.000','2896','58','2005-08-30 18:00:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14666','2005-08-21 19:51:09.000','2560','122','2005-08-30 22:42:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14667','2005-08-21 19:51:11.000','2608','55','2005-08-23 17:37:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14668','2005-08-21 19:51:30.000','1450','152','2005-08-29 19:38:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14669','2005-08-21 19:54:06.000','3154','317','2005-08-25 23:12:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14670','2005-08-21 19:54:11.000','4324','537','2005-08-27 21:42:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14671','2005-08-21 19:59:30.000','2622','53','2005-08-22 19:39:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14672','2005-08-21 19:59:33.000','4144','325','2005-08-30 19:40:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14673','2005-08-21 20:01:18.000','1827','445','2005-08-25 18:55:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14674','2005-08-21 20:01:34.000','572','300','2005-08-27 18:33:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14675','2005-08-21 20:01:51.000','328','170','2005-08-26 14:30:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14676','2005-08-21 20:02:18.000','877','49','2005-08-26 21:55:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14677','2005-08-21 20:12:30.000','4411','26','2005-08-28 15:11:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14678','2005-08-21 20:12:43.000','1911','383','2005-08-31 02:11:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14679','2005-08-21 20:14:58.000','1520','193','2005-08-23 23:39:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14680','2005-08-21 20:19:52.000','4469','524','2005-08-28 17:10:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14681','2005-08-21 20:25:13.000','1083','212','2005-08-30 19:48:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14682','2005-08-21 20:25:57.000','2974','314','2005-08-28 00:42:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14683','2005-08-21 20:27:44.000','3850','342','2005-08-29 16:54:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14684','2005-08-21 20:28:26.000','3593','369','2005-08-28 19:01:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14685','2005-08-21 20:31:25.000','1320','69','2005-08-22 21:02:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14686','2005-08-21 20:32:08.000','814','34','2005-08-26 18:07:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14687','2005-08-21 20:32:16.000','306','550','2005-08-26 16:17:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14688','2005-08-21 20:32:37.000','2573','219','2005-08-27 00:06:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14689','2005-08-21 20:33:00.000','1124','463','2005-08-22 18:10:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14690','2005-08-21 20:42:25.000','3649','456','2005-08-29 18:42:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14691','2005-08-21 20:42:29.000','2131','404','2005-08-24 01:22:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14692','2005-08-21 20:43:21.000','1908','192','2005-08-28 19:02:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14693','2005-08-21 20:44:19.000','3454','269','2005-08-29 00:37:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14694','2005-08-21 20:46:42.000','2767','363','2005-08-23 16:18:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14695','2005-08-21 20:46:47.000','412','206','2005-08-22 22:25:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14696','2005-08-21 20:48:05.000','3776','435','2005-08-25 14:55:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14697','2005-08-21 20:49:21.000','48','409','2005-08-26 01:39:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14698','2005-08-21 20:49:58.000','4255','196','2005-08-29 20:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14699','2005-08-21 20:50:48.000','1427','3','2005-08-29 18:08:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14700','2005-08-21 20:53:40.000','3446','360','2005-08-23 22:01:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14701','2005-08-21 20:54:32.000','3034','34','2005-08-30 16:46:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14702','2005-08-21 21:00:03.000','4096','345','2005-08-30 16:59:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14703','2005-08-21 21:01:19.000','4329','29','2005-08-22 15:13:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14704','2005-08-21 21:02:22.000','4062','248','2005-08-27 23:10:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14705','2005-08-21 21:02:55.000','2493','243','2005-08-25 20:20:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14706','2005-08-21 21:04:42.000','4494','589','2005-08-22 19:55:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14707','2005-08-21 21:06:29.000','2916','530','2005-08-30 23:37:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14708','2005-08-21 21:07:23.000','2828','226','2005-08-28 15:47:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14709','2005-08-21 21:07:59.000','1856','300','2005-08-31 02:19:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14710','2005-08-21 21:15:23.000','1922','587','2005-08-30 19:45:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14711','2005-08-21 21:22:07.000','1973','448','2005-08-30 16:24:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14712','2005-08-21 21:22:56.000','1198','226','2005-08-25 01:53:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14713','2005-08-21 21:27:24.000','3350','148','2005-08-23 20:26:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14714','2005-08-21 21:27:43.000','1','279','2005-08-30 22:26:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14715','2005-08-21 21:28:18.000','4453','287','2005-08-26 22:13:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14716','2005-08-21 21:29:55.000','2285','78','2005-08-23 18:34:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14717','2005-08-21 21:30:39.000','3839','366','2005-08-26 16:58:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14718','2005-08-21 21:39:25.000','3618','340','2005-08-26 22:07:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14719','2005-08-21 21:41:57.000','4091','599','2005-08-25 20:37:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14720','2005-08-21 21:43:53.000','3617','395','2005-08-25 18:21:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14721','2005-08-21 21:50:51.000','4257','349','2005-08-30 19:21:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14722','2005-08-21 21:50:53.000','2930','236','2005-08-30 03:13:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14723','2005-08-21 21:52:32.000','2755','548','2005-08-31 00:03:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14724','2005-08-21 21:53:47.000','3559','552','2005-08-23 20:14:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14725','2005-08-21 22:02:08.000','4427','403','2005-08-23 03:59:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14726','2005-08-21 22:08:52.000','4556','216','2005-08-22 18:28:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14727','2005-08-21 22:12:45.000','650','275','2005-08-25 00:46:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14728','2005-08-21 22:15:36.000','2671','474','2005-08-25 17:14:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14729','2005-08-21 22:16:57.000','2483','289','2005-08-27 21:32:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14730','2005-08-21 22:21:11.000','2949','439','2005-08-30 03:02:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14731','2005-08-21 22:21:49.000','1351','154','2005-08-24 16:27:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14732','2005-08-21 22:22:29.000','1915','482','2005-08-23 18:34:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14733','2005-08-21 22:22:33.000','398','408','2005-08-26 21:01:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14734','2006-02-14 15:16:03.000','1369','448',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14735','2005-08-21 22:25:09.000','950','35','2005-08-23 21:16:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14736','2005-08-21 22:25:53.000','207','139','2005-08-25 19:01:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14737','2005-08-21 22:27:11.000','1842','124','2005-08-25 18:51:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14738','2005-08-21 22:29:13.000','3315','521','2005-08-29 21:19:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14739','2005-08-21 22:33:22.000','4026','226','2005-08-22 19:45:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14740','2005-08-21 22:35:33.000','1717','333','2005-08-26 17:49:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14741','2006-02-14 15:16:03.000','612','60',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14742','2005-08-21 22:39:01.000','2988','421','2005-08-26 00:17:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14743','2005-08-21 22:41:56.000','4570','2','2005-08-29 00:18:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14744','2005-08-21 22:45:21.000','800','213','2005-08-29 23:57:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14745','2005-08-21 22:53:01.000','4399','277','2005-08-23 23:22:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14746','2005-08-21 22:54:02.000','3197','284','2005-08-27 17:04:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14747','2005-08-21 23:00:02.000','201','153','2005-08-26 18:58:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14748','2005-08-21 23:02:02.000','1697','81','2005-08-28 05:01:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14749','2005-08-21 23:08:33.000','831','235','2005-08-29 20:46:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14750','2005-08-21 23:09:32.000','918','303','2005-08-30 00:46:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14751','2005-08-21 23:11:23.000','1156','195','2005-08-30 20:01:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14752','2005-08-21 23:11:42.000','1252','362','2005-08-28 22:12:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14753','2005-08-21 23:11:43.000','1803','155','2005-08-22 22:25:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14754','2005-08-21 23:17:26.000','2355','137','2005-08-29 18:55:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14755','2005-08-21 23:18:08.000','862','328','2005-08-27 01:06:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14756','2005-08-21 23:21:23.000','564','288','2005-08-24 01:44:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14757','2005-08-21 23:23:37.000','1154','473','2005-08-26 23:24:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14758','2005-08-21 23:24:52.000','2372','339','2005-08-27 04:25:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14759','2005-08-21 23:28:58.000','3871','362','2005-08-31 00:35:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14760','2006-02-14 15:16:03.000','1367','355',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14761','2005-08-21 23:30:28.000','2657','490','2005-08-26 03:26:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14762','2005-08-21 23:33:57.000','4249','1','2005-08-23 01:30:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14763','2005-08-21 23:34:00.000','1480','116','2005-08-31 03:58:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14764','2005-08-21 23:37:47.000','1270','529','2005-08-24 00:23:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14765','2005-08-21 23:40:28.000','2817','435','2005-08-25 04:55:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14766','2005-08-21 23:42:20.000','768','523','2005-08-26 03:46:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14767','2005-08-21 23:43:00.000','1232','69','2005-08-29 05:26:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14768','2005-08-21 23:44:53.000','3465','570','2005-08-27 20:33:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14769','2006-02-14 15:16:03.000','1800','361',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14770','2005-08-21 23:47:16.000','2977','372','2005-08-25 04:48:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14771','2005-08-21 23:50:15.000','2665','149','2005-08-28 22:55:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14772','2005-08-21 23:50:39.000','4047','411','2005-08-30 20:44:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14773','2005-08-21 23:50:57.000','2541','413','2005-08-26 04:45:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14774','2005-08-21 23:52:32.000','3185','252','2005-08-26 23:42:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14775','2005-08-21 23:53:07.000','4044','400','2005-08-22 18:07:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14776','2005-08-21 23:53:35.000','3488','15','2005-08-24 02:00:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14777','2005-08-21 23:55:50.000','237','389','2005-08-28 04:31:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14778','2005-08-21 23:56:30.000','2152','396','2005-08-26 00:07:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14779','2005-08-22 00:00:56.000','1087','279','2005-08-31 00:01:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14780','2005-08-22 00:06:33.000','3171','491','2005-08-22 22:02:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14781','2005-08-22 00:15:12.000','3458','71','2005-08-29 21:02:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14782','2005-08-22 00:17:20.000','1727','211','2005-08-23 01:24:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14783','2005-08-22 00:21:57.000','3419','332','2005-08-28 01:27:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14784','2005-08-22 00:23:13.000','441','117','2005-08-28 03:42:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14785','2005-08-22 00:24:37.000','1981','560','2005-08-25 04:15:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14786','2005-08-22 00:24:42.000','2959','370','2005-08-25 19:36:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14787','2005-08-22 00:25:59.000','2634','38','2005-08-28 22:30:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14788','2005-08-22 00:27:59.000','1917','139','2005-08-29 23:54:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14789','2005-08-22 00:29:39.000','2344','279','2005-08-25 02:25:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14790','2005-08-22 00:34:17.000','1002','397','2005-08-31 02:27:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14791','2005-08-22 00:35:55.000','1490','317','2005-08-30 20:23:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14792','2005-08-22 00:36:41.000','4436','396','2005-08-30 18:58:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14793','2005-08-22 00:37:57.000','4285','154','2005-08-29 05:44:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14794','2005-08-22 00:39:31.000','413','156','2005-08-28 20:08:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14795','2005-08-22 00:40:22.000','1695','303','2005-08-26 01:37:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14796','2005-08-22 00:40:49.000','941','441','2005-08-30 03:59:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14797','2005-08-22 00:41:24.000','1131','546','2005-08-23 18:51:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14798','2005-08-22 00:44:08.000','7','92','2005-08-27 02:18:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14799','2005-08-22 00:44:57.000','1276','454','2005-08-24 20:08:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14800','2005-08-22 00:46:18.000','3554','533','2005-08-26 01:44:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14801','2005-08-22 00:46:54.000','1677','184','2005-08-30 19:03:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14802','2005-08-22 00:48:23.000','707','505','2005-08-28 01:02:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14803','2005-08-22 00:49:10.000','2525','278','2005-08-22 23:44:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14804','2005-08-22 00:51:25.000','372','94','2005-08-26 21:15:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14805','2005-08-22 00:52:01.000','783','169','2005-08-23 03:28:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14806','2005-08-22 00:53:08.000','2049','231','2005-08-23 06:26:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14807','2005-08-22 00:57:43.000','335','90','2005-08-26 23:40:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14808','2005-08-22 00:58:35.000','1657','362','2005-08-29 20:16:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14809','2005-08-22 01:00:42.000','1077','188','2005-08-29 19:55:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14810','2005-08-22 01:08:34.000','1982','78','2005-08-25 07:00:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14811','2005-08-22 01:09:04.000','1613','53','2005-08-26 19:30:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14812','2005-08-22 01:10:32.000','4282','211','2005-08-26 05:21:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14813','2005-08-22 01:11:37.000','3364','142','2005-08-24 05:57:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14814','2005-08-22 01:12:14.000','3109','250','2005-08-27 23:24:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14815','2005-08-22 01:12:44.000','1183','314','2005-08-24 01:42:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14816','2005-08-22 01:15:51.000','4086','534','2005-08-28 04:11:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14817','2005-08-22 01:17:16.000','910','215','2005-08-27 02:43:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14818','2005-08-22 01:17:18.000','1619','580','2005-08-26 05:40:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14819','2005-08-22 01:17:19.000','2890','410','2005-08-30 05:54:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14820','2005-08-22 01:18:37.000','1409','52','2005-08-23 19:44:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14821','2005-08-22 01:20:19.000','3155','62','2005-08-29 03:06:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14822','2005-08-22 01:21:14.000','2835','52','2005-08-30 03:59:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14823','2005-08-22 01:24:42.000','680','503','2005-08-22 19:45:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14824','2005-08-22 01:27:51.000','4162','594','2005-08-23 03:24:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14825','2005-08-22 01:27:57.000','1449','1','2005-08-27 07:01:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14826','2005-08-22 01:32:14.000','4023','426','2005-08-23 03:52:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14827','2005-08-22 01:32:32.000','2267','88','2005-08-31 06:21:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14828','2005-08-22 01:34:05.000','4114','319','2005-08-27 06:27:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14829','2005-08-22 01:35:37.000','3606','546','2005-08-23 19:55:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14830','2005-08-22 01:37:19.000','637','590','2005-08-27 20:10:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14831','2005-08-22 01:40:49.000','3370','156','2005-08-23 02:47:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14832','2005-08-22 01:43:29.000','1828','494','2005-08-29 07:19:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14833','2005-08-22 01:45:18.000','1960','551','2005-08-28 21:24:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14834','2005-08-22 01:45:58.000','3105','262','2005-08-28 20:52:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14835','2005-08-22 01:49:07.000','755','404','2005-08-30 04:28:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14836','2005-08-22 01:52:26.000','4287','418','2005-08-22 23:39:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14837','2005-08-22 01:54:52.000','2251','43','2005-08-29 02:24:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14838','2005-08-22 01:57:34.000','506','404','2005-08-25 06:34:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14839','2005-08-22 01:58:15.000','3440','567','2005-08-24 05:24:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14840','2005-08-22 01:58:42.000','1240','354','2005-08-29 22:32:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14841','2005-08-22 02:03:30.000','4017','384','2005-08-28 02:08:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14842','2005-08-22 02:04:38.000','2511','467','2005-08-30 06:46:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14843','2005-08-22 02:05:25.000','3000','454','2005-08-28 22:11:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14844','2005-08-22 02:09:12.000','145','513','2005-08-31 05:43:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14845','2005-08-22 02:12:44.000','69','292','2005-08-24 02:36:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14846','2005-08-22 02:13:48.000','3840','309','2005-08-30 05:39:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14847','2005-08-22 02:13:51.000','2995','327','2005-08-29 03:42:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14848','2005-08-22 02:14:19.000','395','218','2005-08-26 02:54:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14849','2005-08-22 02:15:26.000','3354','177','2005-08-28 00:56:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14850','2005-08-22 02:16:55.000','2405','435','2005-08-26 21:08:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14851','2005-08-22 02:20:44.000','1139','180','2005-08-26 08:02:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14852','2005-08-22 02:25:53.000','2262','352','2005-08-25 04:27:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14853','2005-08-22 02:26:33.000','3575','388','2005-08-31 02:49:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14854','2005-08-22 02:26:47.000','1989','117','2005-08-23 05:53:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14855','2005-08-22 02:27:32.000','1668','187','2005-08-31 03:35:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14856','2005-08-22 02:31:51.000','3292','151','2005-08-26 23:41:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14857','2005-08-22 02:42:39.000','4150','232','2005-08-24 21:26:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14858','2005-08-22 02:46:18.000','366','499','2005-08-30 08:22:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14859','2005-08-22 02:46:35.000','2150','463','2005-08-24 22:37:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14860','2005-08-22 02:47:07.000','1368','418','2005-08-28 00:00:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14861','2005-08-22 02:48:05.000','1806','422','2005-08-27 00:50:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14862','2005-08-22 02:51:41.000','3479','78','2005-08-28 06:30:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14863','2005-08-22 02:57:04.000','779','440','2005-08-30 03:24:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14864','2005-08-22 02:57:06.000','2872','460','2005-08-22 22:19:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14865','2005-08-22 03:06:38.000','3775','94','2005-08-23 04:26:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14866','2005-08-22 03:11:35.000','2607','445','2005-08-30 00:10:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14867','2005-08-22 03:14:46.000','271','114','2005-08-25 03:53:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14868','2005-08-22 03:15:01.000','4383','160','2005-08-25 01:24:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14869','2005-08-22 03:20:26.000','455','21','2005-08-23 05:25:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14870','2005-08-22 03:23:20.000','2170','512','2005-08-23 06:50:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14871','2005-08-22 03:23:24.000','3411','204','2005-08-23 22:23:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14872','2005-08-22 03:23:41.000','962','15','2005-08-29 23:25:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14873','2005-08-22 03:31:06.000','3533','314','2005-08-31 05:34:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14874','2005-08-22 03:32:05.000','1782','268','2005-08-24 07:02:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14875','2005-08-22 03:34:39.000','3912','513','2005-08-26 03:40:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14876','2005-08-22 03:39:29.000','3669','210','2005-08-23 06:53:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14877','2005-08-22 03:39:56.000','974','266','2005-08-24 03:41:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14878','2006-02-14 15:16:03.000','1202','441',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14879','2005-08-22 03:42:12.000','2154','148','2005-08-27 06:14:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14880','2005-08-22 03:44:36.000','3615','224','2005-08-24 05:45:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14881','2005-08-22 03:47:39.000','210','425','2005-08-26 05:58:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14882','2005-08-22 03:52:21.000','12','417','2005-08-25 04:50:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14883','2005-08-22 03:55:02.000','1946','177','2005-08-28 02:51:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14884','2005-08-22 03:57:08.000','2957','547','2005-08-23 07:11:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14885','2005-08-22 03:58:29.000','2097','248','2005-08-30 05:26:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14886','2005-08-22 03:59:01.000','4330','379','2005-08-23 01:22:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14887','2005-08-22 04:04:31.000','56','421','2005-08-31 02:30:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14888','2005-08-22 04:09:18.000','3345','91','2005-08-23 07:34:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14889','2005-08-22 04:10:10.000','1579','299','2005-08-24 06:23:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14890','2005-08-22 04:10:49.000','517','346','2005-08-30 23:23:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14891','2005-08-22 04:11:02.000','288','482','2005-08-27 03:22:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14892','2005-08-22 04:15:05.000','3061','82','2005-08-31 06:07:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14893','2005-08-22 04:15:48.000','2336','461','2005-08-30 08:05:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14894','2005-08-22 04:16:56.000','3494','347','2005-08-24 00:30:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14895','2005-08-22 04:19:23.000','4462','340','2005-08-27 04:02:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14896','2005-08-22 04:20:55.000','2508','569','2005-08-29 05:11:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14897','2005-08-22 04:22:31.000','1607','175','2005-08-26 00:09:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14898','2005-08-22 04:26:34.000','1736','299','2005-08-31 10:04:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14899','2005-08-22 04:26:38.000','3700','304','2005-08-31 08:36:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14900','2005-08-22 04:27:48.000','3420','329','2005-08-25 03:50:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14901','2005-08-22 04:31:37.000','4297','258','2005-08-29 08:24:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14902','2005-08-22 04:31:50.000','866','423','2005-08-23 23:47:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14903','2005-08-22 04:31:50.000','1795','51','2005-08-25 22:53:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14904','2005-08-22 04:32:01.000','722','71','2005-08-29 05:21:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14905','2005-08-22 04:34:22.000','4166','286','2005-08-26 04:00:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14906','2005-08-22 04:38:18.000','153','366','2005-08-29 23:03:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14907','2005-08-22 04:44:09.000','2469','116','2005-08-25 09:53:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14908','2005-08-22 04:44:10.000','102','349','2005-08-25 05:09:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14909','2005-08-22 04:48:44.000','1997','155','2005-08-25 04:59:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14910','2005-08-22 04:50:52.000','1266','540','2005-08-25 04:14:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14911','2005-08-22 04:51:42.000','353','273','2005-08-28 05:37:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14912','2005-08-22 04:51:42.000','2658','404','2005-08-23 23:50:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14913','2005-08-22 04:52:13.000','3609','503','2005-08-23 06:49:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14914','2005-08-22 04:53:35.000','4348','156','2005-08-26 10:35:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14915','2006-02-14 15:16:03.000','112','349',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14916','2005-08-22 04:56:57.000','2110','80','2005-08-24 06:36:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14917','2005-08-22 05:03:59.000','377','289','2005-08-29 04:00:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14918','2005-08-22 05:06:38.000','4056','154','2005-08-30 01:44:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14919','2005-08-22 05:07:17.000','1587','244','2005-08-30 06:41:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14920','2005-08-22 05:08:58.000','3357','106','2005-08-23 02:51:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14921','2005-08-22 05:12:24.000','3724','284','2005-08-26 08:20:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14922','2005-08-22 05:13:05.000','2322','151','2005-08-30 04:59:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14923','2005-08-22 05:13:33.000','3434','460','2005-08-28 01:39:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14924','2005-08-22 05:15:17.000','4189','118','2005-08-23 10:11:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14925','2005-08-22 05:16:16.000','442','128','2005-08-30 02:47:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14926','2005-08-22 05:18:44.000','2448','357','2005-08-26 02:18:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14927','2005-08-22 05:31:53.000','952','193','2005-08-27 07:04:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14928','2006-02-14 15:16:03.000','4375','472',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14929','2005-08-22 05:32:38.000','4195','546','2005-08-28 00:02:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14930','2005-08-22 05:38:32.000','2875','584','2005-08-30 07:21:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14931','2005-08-22 05:38:55.000','657','63','2005-08-28 04:15:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14932','2005-08-22 05:40:39.000','2259','516','2005-08-23 11:02:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14933','2006-02-14 15:16:03.000','1186','21',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14934','2005-08-22 05:47:15.000','815','226','2005-08-26 11:32:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14935','2005-08-22 05:47:31.000','2025','380','2005-08-29 00:33:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14936','2005-08-22 05:51:26.000','3710','241','2005-08-29 10:21:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14937','2005-08-22 05:51:59.000','1241','348','2005-08-31 01:45:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14938','2005-08-22 05:52:39.000','408','541','2005-08-31 11:43:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14939','2005-08-22 05:53:52.000','719','328','2005-08-27 06:20:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14940','2005-08-22 05:54:03.000','2635','46','2005-08-24 05:52:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14941','2005-08-22 05:58:23.000','2328','574','2005-08-28 10:58:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14942','2005-08-22 05:58:27.000','32','471','2005-08-31 10:08:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14943','2005-08-22 05:59:59.000','3515','265','2005-08-26 10:31:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14944','2005-08-22 06:01:26.000','535','153','2005-08-24 10:33:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14945','2005-08-22 06:05:38.000','1567','304','2005-08-29 12:01:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14946','2005-08-22 06:07:10.000','1395','308','2005-08-28 05:25:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14947','2005-08-22 06:07:52.000','3497','68','2005-08-28 01:12:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14948','2005-08-22 06:10:53.000','2914','488','2005-08-28 11:24:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14949','2005-08-22 06:12:16.000','2434','111','2005-08-25 08:25:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14950','2005-08-22 06:17:12.000','635','362','2005-08-27 08:48:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14951','2005-08-22 06:19:37.000','2800','197','2005-08-30 05:51:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14952','2005-08-22 06:20:07.000','2950','575','2005-08-28 01:18:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14953','2005-08-22 06:23:54.000','816','182','2005-08-28 03:19:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14954','2006-02-14 15:16:03.000','3608','525',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14955','2005-08-22 06:25:52.000','1534','445','2005-08-25 12:13:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14956','2005-08-22 06:26:16.000','3650','571','2005-08-25 11:06:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14957','2005-08-22 06:29:34.000','1384','323','2005-08-26 04:52:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14958','2005-08-22 06:30:10.000','1710','347','2005-08-28 09:43:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14959','2005-08-22 06:30:28.000','2009','569','2005-08-25 09:48:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14960','2005-08-22 06:31:36.000','3316','147','2005-08-29 07:10:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14961','2005-08-22 06:35:50.000','3274','52','2005-08-31 04:07:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14962','2005-08-22 06:37:43.000','3104','449','2005-08-29 03:44:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14963','2005-08-22 06:38:10.000','2672','384','2005-08-31 05:35:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14964','2005-08-22 06:39:24.000','2302','500','2005-08-26 06:05:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14965','2005-08-22 06:45:53.000','1036','148','2005-08-27 10:05:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14966','2005-08-22 06:45:57.000','679','259','2005-08-31 10:02:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14967','2005-08-22 06:46:03.000','289','67','2005-08-23 01:02:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14968','2005-08-22 06:46:59.000','3302','129','2005-08-29 07:36:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14969','2005-08-22 06:49:15.000','4060','120','2005-08-29 05:52:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14970','2005-08-22 06:49:29.000','536','529','2005-08-29 08:47:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14971','2005-08-22 06:52:49.000','1883','378','2005-08-28 06:27:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14972','2005-08-22 06:53:21.000','3422','310','2005-08-29 02:25:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14973','2005-08-22 06:59:28.000','2888','201','2005-08-30 02:28:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14974','2005-08-22 07:04:25.000','2596','157','2005-08-27 12:39:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14975','2005-08-22 07:07:50.000','924','244','2005-08-28 07:23:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14976','2005-08-22 07:10:26.000','77','581','2005-08-28 07:22:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14977','2005-08-22 07:12:53.000','4093','59','2005-08-30 08:11:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14978','2005-08-22 07:13:15.000','699','94','2005-08-25 12:26:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14979','2005-08-22 07:16:36.000','2320','387','2005-08-24 02:29:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14980','2005-08-22 07:16:45.000','2701','518','2005-08-26 06:04:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14981','2005-08-22 07:19:05.000','1239','544','2005-08-26 03:08:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14982','2005-08-22 07:20:55.000','2333','542','2005-08-31 04:35:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14983','2005-08-22 07:32:23.000','3579','363','2005-08-30 11:39:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14984','2005-08-22 07:35:31.000','1704','334','2005-08-30 02:32:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14985','2005-08-22 07:35:56.000','2017','29','2005-08-29 13:17:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14986','2005-08-22 07:37:24.000','1493','278','2005-08-23 04:22:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14987','2005-08-22 07:41:08.000','1513','138','2005-08-24 03:15:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14988','2005-08-22 07:46:05.000','2114','186','2005-08-29 06:43:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14989','2005-08-22 07:47:07.000','1431','58','2005-08-26 04:42:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14990','2005-08-22 07:48:01.000','4057','198','2005-08-24 06:41:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14991','2005-08-22 07:50:44.000','708','172','2005-08-30 06:32:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14992','2005-08-22 07:51:47.000','4430','415','2005-08-25 08:17:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14993','2005-08-22 07:52:18.000','3416','437','2005-08-27 02:13:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14994','2005-08-22 07:52:24.000','1601','509','2005-08-26 09:57:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14995','2005-08-22 07:52:31.000','4178','482','2005-08-24 05:16:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14996','2005-08-22 07:52:41.000','1178','411','2005-08-29 02:35:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14997','2005-08-22 07:53:00.000','2724','29','2005-08-28 03:47:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14998','2005-08-22 07:53:14.000','3852','92','2005-08-24 03:46:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('14999','2005-08-22 07:54:47.000','3399','594','2005-08-23 08:39:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15000','2005-08-22 07:54:58.000','3080','161','2005-08-24 12:46:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15001','2005-08-22 08:00:49.000','2869','186','2005-08-27 05:53:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15002','2005-08-22 08:06:00.000','4198','242','2005-08-24 10:48:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15003','2005-08-22 08:11:24.000','4009','167','2005-08-28 08:49:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15004','2005-08-22 08:15:21.000','4464','375','2005-08-28 10:35:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15005','2005-08-22 08:15:44.000','2897','335','2005-08-24 09:52:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15006','2005-08-22 08:20:15.000','2967','97','2005-08-23 11:57:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15007','2005-08-22 08:21:21.000','3692','165','2005-08-27 04:44:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15008','2005-08-22 08:24:32.000','961','277','2005-08-31 13:48:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15009','2005-08-22 08:27:27.000','4025','325','2005-08-26 05:57:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15010','2005-08-22 08:30:17.000','171','508','2005-08-29 13:24:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15011','2005-08-22 08:31:07.000','2722','329','2005-08-24 04:47:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15012','2005-08-22 08:42:32.000','1584','454','2005-08-28 05:04:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15013','2005-08-22 08:42:45.000','141','141','2005-08-24 05:20:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15014','2005-08-22 08:43:11.000','3678','373','2005-08-31 02:55:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15015','2005-08-22 08:43:50.000','3067','14','2005-08-31 06:53:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15016','2005-08-22 08:47:35.000','879','434','2005-08-28 14:23:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15017','2005-08-22 08:47:44.000','3975','144','2005-08-29 08:16:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15018','2005-08-22 08:52:38.000','394','504','2005-08-25 08:08:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15019','2005-08-22 08:52:53.000','3425','450','2005-08-25 13:07:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15020','2005-08-22 08:54:12.000','3460','267','2005-08-27 04:54:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15021','2006-02-14 15:16:03.000','418','100',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15022','2005-08-22 08:55:43.000','249','506','2005-08-31 05:35:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15023','2005-08-22 08:56:48.000','358','296','2005-08-29 08:13:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15024','2005-08-22 08:57:10.000','1831','139','2005-08-24 10:39:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15025','2005-08-22 08:57:24.000','2107','257','2005-08-24 06:09:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15026','2005-08-22 09:01:52.000','4328','66','2005-08-28 09:21:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15027','2005-08-22 09:03:04.000','326','478','2005-08-29 04:03:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15028','2005-08-22 09:03:44.000','4248','37','2005-08-30 11:28:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15029','2005-08-22 09:04:53.000','2234','139','2005-08-25 09:03:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15030','2005-08-22 09:10:21.000','3168','341','2005-08-24 06:00:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15031','2005-08-22 09:11:48.000','3926','430','2005-08-27 06:11:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15032','2005-08-22 09:14:09.000','3414','467','2005-08-25 09:50:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15033','2005-08-22 09:25:24.000','2431','168','2005-08-28 09:56:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15034','2005-08-22 09:33:08.000','1331','235','2005-08-29 13:04:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15035','2005-08-22 09:34:32.000','339','513','2005-08-28 10:23:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15036','2005-08-22 09:36:00.000','874','280','2005-08-23 08:12:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15037','2005-08-22 09:36:33.000','4517','234','2005-08-31 11:20:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15038','2005-08-22 09:37:27.000','1685','3','2005-08-23 14:39:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15039','2005-08-22 09:37:54.000','895','180','2005-08-28 12:23:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15040','2005-08-22 09:41:09.000','3207','523','2005-08-23 12:49:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15041','2005-08-22 09:43:18.000','1913','372','2005-08-23 11:04:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15042','2005-08-22 09:47:37.000','3796','553','2005-08-31 04:42:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15043','2005-08-22 09:49:32.000','3797','182','2005-08-28 13:50:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15044','2005-08-22 09:51:54.000','4513','439','2005-08-31 12:45:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15045','2005-08-22 09:53:23.000','3485','161','2005-08-26 10:09:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15046','2005-08-22 09:54:54.000','1536','474','2005-08-26 07:34:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15047','2005-08-22 09:57:16.000','1309','19','2005-08-23 11:39:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15048','2005-08-22 10:00:04.000','2895','27','2005-08-26 08:26:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15049','2005-08-22 10:06:28.000','1573','102','2005-08-26 15:12:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15050','2005-08-22 10:07:52.000','3961','167','2005-08-23 04:45:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15051','2005-08-22 10:08:50.000','1419','300','2005-08-28 10:23:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15052','2005-08-22 10:09:19.000','2349','147','2005-08-31 09:27:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15053','2005-08-22 10:13:09.000','1065','374','2005-08-28 12:42:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15054','2005-08-22 10:14:33.000','2314','44','2005-08-25 15:07:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15055','2005-08-22 10:14:39.000','623','125','2005-08-25 07:25:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15056','2005-08-22 10:15:54.000','1871','503','2005-08-25 07:21:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15057','2005-08-22 10:19:58.000','4534','20','2005-08-28 05:12:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15058','2005-08-22 10:20:55.000','3537','288','2005-08-26 12:37:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15059','2005-08-22 10:22:00.000','4079','564','2005-08-29 07:01:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15060','2005-08-22 10:24:32.000','2740','63','2005-08-31 11:17:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15061','2005-08-22 10:29:44.000','3436','90','2005-08-24 14:40:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15062','2005-08-22 10:34:39.000','4393','139','2005-08-26 13:09:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15063','2005-08-22 10:39:51.000','1159','30','2005-08-25 16:03:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15064','2005-08-22 10:41:58.000','1233','425','2005-08-28 13:34:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15065','2005-08-22 10:46:44.000','468','510','2005-08-27 09:40:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15066','2005-08-22 10:49:06.000','2712','530','2005-08-23 10:25:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15067','2005-08-22 10:49:21.000','3684','461','2005-08-24 09:01:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15068','2005-08-22 10:50:13.000','3268','373','2005-08-26 05:04:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15069','2005-08-22 10:55:42.000','592','568','2005-08-28 06:59:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15070','2005-08-22 10:55:45.000','2687','441','2005-08-26 09:23:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15071','2005-08-22 10:58:43.000','417','541','2005-08-31 14:53:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15072','2005-08-22 10:58:45.000','2871','405','2005-08-30 16:18:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15073','2005-08-22 11:01:15.000','3970','336','2005-08-31 09:23:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15074','2005-08-22 11:02:52.000','3112','567','2005-08-28 07:59:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15075','2005-08-22 11:04:52.000','1938','535','2005-08-30 05:06:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15076','2005-08-22 11:05:34.000','4170','287','2005-08-27 14:40:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15077','2005-08-22 11:09:18.000','3142','503','2005-08-29 08:41:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15078','2005-08-22 11:09:31.000','3001','197','2005-08-25 12:16:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15079','2005-08-22 11:09:56.000','4552','540','2005-08-24 15:40:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15080','2005-08-22 11:11:51.000','927','133','2005-08-23 13:09:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15081','2005-08-22 11:14:31.000','2501','313','2005-08-28 14:23:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15082','2005-08-22 11:17:06.000','2046','137','2005-08-28 06:40:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15083','2005-08-22 11:17:37.000','1691','397','2005-08-28 06:27:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15084','2005-08-22 11:17:59.000','821','287','2005-08-23 09:23:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15085','2005-08-22 11:19:22.000','1669','67','2005-08-25 09:04:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15086','2005-08-22 11:21:08.000','264','494','2005-08-30 08:18:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15087','2005-08-22 11:24:09.000','233','404','2005-08-27 16:42:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15088','2005-08-22 11:28:26.000','4199','377','2005-08-24 15:46:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15089','2005-08-22 11:34:06.000','3288','61','2005-08-31 12:45:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15090','2005-08-22 11:34:33.000','2918','582','2005-08-31 06:09:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15091','2005-08-22 11:34:43.000','2092','477','2005-08-23 16:52:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15092','2005-08-22 11:36:16.000','2418','464','2005-08-28 09:49:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15093','2005-08-22 11:39:03.000','3534','60','2005-08-23 06:16:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15094','2006-02-14 15:16:03.000','922','424',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15095','2005-08-22 11:41:35.000','489','202','2005-08-25 16:44:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15096','2005-08-22 11:43:04.000','1983','33','2005-08-29 12:16:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15097','2005-08-22 11:43:42.000','2838','475','2005-08-27 10:25:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15098','2005-08-22 11:48:19.000','4414','88','2005-08-31 11:07:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15099','2005-08-22 11:49:16.000','1940','86','2005-08-26 06:38:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15100','2005-08-22 11:55:03.000','4489','312','2005-08-25 14:55:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15101','2005-08-22 11:56:02.000','683','335','2005-08-28 13:08:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15102','2005-08-22 11:58:58.000','2317','555','2005-08-29 08:37:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15103','2005-08-22 12:01:06.000','853','101','2005-08-25 14:40:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15104','2005-08-22 12:01:16.000','4550','359','2005-08-27 17:48:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15105','2005-08-22 12:01:33.000','3965','338','2005-08-26 14:29:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15106','2005-08-22 12:01:48.000','399','155','2005-08-27 16:12:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15107','2005-08-22 12:05:02.000','2378','376','2005-08-23 11:09:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15108','2005-08-22 12:10:07.000','3463','447','2005-08-26 14:46:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15109','2005-08-22 12:12:58.000','565','588','2005-08-30 07:20:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15110','2005-08-22 12:16:46.000','1379','72','2005-08-26 13:36:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15111','2005-08-22 12:21:43.000','4101','119','2005-08-24 09:31:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15112','2005-08-22 12:21:49.000','2832','160','2005-08-27 11:03:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15113','2005-08-22 12:23:59.000','4338','424','2005-08-27 09:59:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15114','2005-08-22 12:24:55.000','2481','121','2005-08-31 17:06:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15115','2005-08-22 12:28:01.000','1739','33','2005-08-26 16:12:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15116','2005-08-22 12:35:40.000','518','217','2005-08-23 17:58:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15117','2005-08-22 12:38:20.000','2502','292','2005-08-27 07:36:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15118','2005-08-22 12:38:37.000','2081','473','2005-08-29 14:01:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15119','2005-08-22 12:41:33.000','4526','288','2005-08-23 14:44:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15120','2005-08-22 12:42:47.000','3083','11','2005-08-23 14:21:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15121','2005-08-22 12:46:37.000','2981','415','2005-08-25 17:42:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15122','2005-08-22 12:47:45.000','1686','91','2005-08-29 13:18:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15123','2005-08-22 12:48:44.000','1455','445','2005-08-27 11:07:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15124','2005-08-22 12:51:38.000','1598','39','2005-08-26 09:05:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15125','2005-08-22 12:53:22.000','3942','221','2005-08-29 18:44:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15126','2005-08-22 12:53:58.000','1902','459','2005-08-28 07:39:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15127','2005-08-22 12:56:29.000','2397','287','2005-08-26 10:58:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15128','2005-08-22 12:57:26.000','3229','457','2005-08-30 11:35:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15129','2005-08-22 13:03:52.000','3782','234','2005-08-29 10:56:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15130','2005-08-22 13:04:32.000','2375','536','2005-08-30 17:24:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15131','2005-08-22 13:06:26.000','1930','119','2005-08-30 16:43:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15132','2005-08-22 13:11:25.000','3474','393','2005-08-27 17:04:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15133','2005-08-22 13:17:43.000','3408','137','2005-08-26 08:40:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15134','2005-08-22 13:18:25.000','4442','22','2005-08-29 18:03:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15135','2005-08-22 13:19:19.000','555','284','2005-08-27 17:09:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15136','2005-08-22 13:19:25.000','2606','435','2005-08-24 07:28:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15137','2005-08-22 13:20:28.000','856','241','2005-08-26 09:35:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15138','2005-08-22 13:36:30.000','2467','50','2005-08-27 15:35:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15139','2005-08-22 13:38:11.000','2018','237','2005-08-30 09:00:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15140','2005-08-22 13:39:20.000','1402','414','2005-08-30 18:19:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15141','2005-08-22 13:41:49.000','227','541','2005-08-28 15:25:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15142','2005-08-22 13:44:32.000','1337','351','2005-08-29 14:19:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15143','2005-08-22 13:46:24.000','1519','274','2005-08-25 09:47:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15144','2005-08-22 13:49:18.000','559','527','2005-08-26 11:11:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15145','2005-08-22 13:53:04.000','2179','2','2005-08-31 15:51:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15146','2005-08-22 13:57:55.000','3102','72','2005-08-28 12:57:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15147','2005-08-22 13:58:23.000','2553','4','2005-08-28 14:33:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15148','2005-08-22 13:59:19.000','3704','359','2005-08-31 13:59:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15149','2005-08-22 14:08:06.000','3059','537','2005-08-25 08:25:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15150','2005-08-22 14:12:05.000','1797','161','2005-08-27 12:47:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15151','2005-08-22 14:23:11.000','4070','463','2005-08-30 14:01:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15152','2005-08-22 14:25:21.000','739','123','2005-08-31 14:28:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15153','2005-08-22 14:26:01.000','1051','512','2005-08-27 14:17:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15154','2005-08-22 14:27:37.000','3395','106','2005-08-29 20:04:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15155','2005-08-22 14:27:46.000','2641','43','2005-08-23 17:46:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15156','2005-08-22 14:29:11.000','1174','494','2005-08-30 17:48:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15157','2005-08-22 14:30:09.000','1909','580','2005-08-29 18:28:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15158','2005-08-22 14:30:39.000','3614','588','2005-08-27 15:55:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15159','2005-08-22 14:32:25.000','4355','525','2005-08-24 11:19:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15160','2005-08-22 14:33:50.000','4321','249','2005-08-28 11:26:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15161','2005-08-22 14:37:22.000','1445','20','2005-08-27 17:40:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15162','2005-08-22 14:41:05.000','1756','439','2005-08-27 20:23:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15163','2005-08-22 14:43:13.000','3597','100','2005-08-26 14:26:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15164','2005-08-22 14:47:53.000','997','193','2005-08-25 16:05:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15165','2005-08-22 14:59:30.000','3664','168','2005-08-29 15:46:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15166','2005-08-22 15:05:37.000','1530','504','2005-08-30 12:22:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15167','2006-02-14 15:16:03.000','973','190',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15168','2005-08-22 15:14:20.000','3218','526','2005-08-25 20:12:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15169','2005-08-22 15:21:56.000','794','76','2005-08-28 09:40:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15170','2005-08-22 15:22:15.000','2123','521','2005-08-23 20:32:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15171','2005-08-22 15:23:59.000','1201','119','2005-08-28 12:05:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15172','2005-08-22 15:25:33.000','2367','511','2005-08-23 17:29:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15173','2005-08-22 15:26:29.000','2585','338','2005-08-29 14:03:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15174','2005-08-22 15:26:36.000','19','111','2005-08-31 10:47:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15175','2005-08-22 15:29:15.000','4318','380','2005-08-27 15:11:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15176','2005-08-22 15:30:25.000','3063','115','2005-08-31 20:00:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15177','2005-08-22 15:34:49.000','838','493','2005-08-26 12:54:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15178','2005-08-22 15:36:04.000','1745','15','2005-08-26 21:00:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15179','2005-08-22 15:36:22.000','450','328','2005-08-31 19:57:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15180','2005-08-22 15:42:57.000','234','532','2005-08-24 12:49:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15181','2005-08-22 15:46:20.000','3900','266','2005-08-27 09:56:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15182','2005-08-22 15:47:05.000','645','443','2005-08-25 11:55:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15183','2005-08-22 15:49:54.000','2696','268','2005-08-25 12:29:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15184','2005-08-22 15:51:12.000','1193','471','2005-08-24 19:23:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15185','2005-08-22 15:52:50.000','2948','472','2005-08-31 20:38:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15186','2005-08-22 15:52:57.000','1323','104','2005-08-24 21:12:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15187','2005-08-22 15:53:32.000','2338','461','2005-08-27 14:21:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15188','2005-08-22 15:55:48.000','131','478','2005-08-29 19:10:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15189','2005-08-22 15:56:42.000','2559','398','2005-08-29 12:20:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15190','2005-08-22 15:57:38.000','2096','84','2005-08-24 13:46:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15191','2006-02-14 15:16:03.000','3688','75',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15192','2005-08-22 16:06:23.000','4213','216','2005-08-27 13:12:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15193','2005-08-22 16:06:49.000','1033','40','2005-08-25 17:23:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15194','2005-08-22 16:07:34.000','1217','332','2005-08-26 19:16:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15195','2005-08-22 16:08:23.000','1080','508','2005-08-30 17:56:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15196','2005-08-22 16:11:32.000','1413','181','2005-08-30 22:06:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15197','2005-08-22 16:14:25.000','2915','159','2005-08-26 16:22:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15198','2005-08-22 16:15:33.000','1253','396','2005-08-29 20:49:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15199','2005-08-22 16:17:49.000','18','216','2005-08-25 20:12:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15200','2005-08-22 16:22:53.000','1000','374','2005-08-24 10:25:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15201','2005-08-22 16:24:42.000','4456','301','2005-08-31 17:54:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15202','2005-08-22 16:26:53.000','2119','374','2005-08-23 13:49:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15203','2005-08-22 16:28:00.000','743','568','2005-08-26 16:55:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15204','2005-08-22 16:30:43.000','1471','317','2005-08-26 20:37:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15205','2005-08-22 16:32:23.000','3276','489','2005-08-27 16:08:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15206','2005-08-22 16:33:39.000','3901','524','2005-08-31 11:41:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15207','2005-08-22 16:35:25.000','1149','442','2005-08-23 14:06:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15208','2005-08-22 16:35:47.000','4346','267','2005-08-30 15:16:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15209','2005-08-22 16:37:32.000','1620','588','2005-08-25 19:04:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15210','2005-08-22 16:37:36.000','3811','332','2005-08-29 11:54:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15211','2005-08-22 16:40:21.000','3025','410','2005-08-28 13:33:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15212','2005-08-22 16:44:26.000','2182','562','2005-08-27 20:26:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15213','2005-08-22 16:49:02.000','2002','166','2005-08-31 20:22:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15214','2005-08-22 16:53:29.000','1500','574','2005-08-24 14:17:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15215','2005-08-22 16:55:26.000','1906','344','2005-08-25 20:19:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15216','2005-08-22 16:57:02.000','1633','166','2005-08-24 16:11:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15217','2005-08-22 16:58:31.000','91','90','2005-08-23 22:33:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15218','2005-08-22 16:59:05.000','10','139','2005-08-30 17:01:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15219','2005-08-22 17:00:31.000','3313','544','2005-08-31 20:16:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15220','2005-08-22 17:02:23.000','187','128','2005-08-28 21:02:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15221','2005-08-22 17:12:29.000','110','253','2005-08-24 20:46:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15222','2005-08-22 17:12:30.000','1360','390','2005-08-27 15:10:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15223','2005-08-22 17:13:39.000','2263','541','2005-08-27 11:17:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15224','2005-08-22 17:18:05.000','33','81','2005-08-29 14:35:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15225','2005-08-22 17:18:32.000','1646','224','2005-08-24 17:25:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15226','2005-08-22 17:20:17.000','318','54','2005-08-31 15:36:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15227','2005-08-22 17:22:41.000','2987','151','2005-08-23 20:59:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15228','2005-08-22 17:27:23.000','2485','48','2005-08-29 11:38:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15229','2005-08-22 17:30:25.000','320','63','2005-08-23 14:13:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15230','2005-08-22 17:31:41.000','2572','466','2005-08-25 21:57:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15231','2005-08-22 17:32:57.000','2980','187','2005-08-25 13:06:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15232','2005-08-22 17:37:02.000','61','5','2005-08-25 18:45:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15233','2005-08-22 17:41:53.000','4405','197','2005-08-24 12:59:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15234','2006-02-14 15:16:03.000','908','228',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15235','2005-08-22 17:43:12.000','2726','416','2005-08-29 23:03:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15236','2005-08-22 17:44:27.000','4124','557','2005-08-24 23:25:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15237','2005-08-22 17:44:30.000','4485','148','2005-08-24 12:51:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15238','2005-08-22 17:46:12.000','403','70','2005-08-29 16:41:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15239','2005-08-22 17:46:17.000','1809','501','2005-08-26 19:03:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15240','2005-08-22 17:46:41.000','2014','11','2005-08-23 15:08:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15241','2005-08-22 17:47:40.000','832','337','2005-08-29 15:28:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15242','2005-08-22 17:48:10.000','2106','364','2005-08-27 23:32:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15243','2005-08-22 17:48:28.000','4408','308','2005-08-31 13:22:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15244','2005-08-22 17:48:42.000','1486','271','2005-08-28 13:17:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15245','2005-08-22 17:49:35.000','2545','298','2005-08-26 18:25:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15246','2005-08-22 17:50:49.000','3786','100','2005-08-30 22:21:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15247','2005-08-22 17:52:05.000','4572','250','2005-08-31 21:37:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15248','2005-08-22 17:53:06.000','977','20','2005-08-25 18:43:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15249','2005-08-22 17:58:27.000','121','444','2005-08-30 14:55:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15250','2005-08-22 18:03:11.000','2176','143','2005-08-27 12:19:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15251','2005-08-22 18:03:57.000','1994','285','2005-08-23 20:56:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15252','2005-08-22 18:04:22.000','1821','453','2005-08-25 17:14:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15253','2005-08-22 18:05:21.000','4143','333','2005-08-23 18:06:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15254','2005-08-22 18:13:07.000','3762','209','2005-08-24 21:55:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15255','2005-08-22 18:16:50.000','3415','84','2005-08-28 14:14:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15256','2005-08-22 18:20:07.000','1873','198','2005-08-28 12:57:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15257','2005-08-22 18:21:04.000','915','223','2005-08-30 20:13:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15258','2005-08-22 18:22:44.000','788','293','2005-08-25 16:54:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15259','2005-08-22 18:23:23.000','3261','488','2005-08-27 13:06:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15260','2005-08-22 18:24:16.000','3135','274','2005-08-24 21:26:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15261','2005-08-22 18:24:34.000','2200','140','2005-08-27 19:53:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15262','2005-08-22 18:25:21.000','2534','298','2005-08-28 22:19:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15263','2005-08-22 18:27:33.000','184','324','2005-08-30 14:05:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15264','2005-08-22 18:27:38.000','4459','440','2005-08-24 12:39:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15265','2005-08-22 18:35:59.000','1763','512','2005-08-28 21:18:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15266','2005-08-22 18:37:24.000','1870','124','2005-08-23 17:34:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15267','2005-08-22 18:37:48.000','2966','153','2005-08-24 00:22:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15268','2005-08-22 18:39:11.000','1245','301','2005-08-26 21:46:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15269','2005-08-22 18:39:44.000','524','275','2005-08-24 17:29:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15270','2005-08-22 18:48:42.000','4123','262','2005-08-28 15:38:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15271','2005-08-22 18:48:48.000','4232','59','2005-08-30 00:45:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15272','2005-08-22 18:49:40.000','1664','422','2005-08-28 21:22:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15273','2005-08-22 18:53:28.000','2558','422','2005-08-30 18:58:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15274','2005-08-22 18:55:52.000','3519','515','2005-08-23 20:02:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15275','2005-08-22 18:57:39.000','1522','597','2005-08-23 19:00:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15276','2005-08-22 18:59:01.000','4523','490','2005-08-23 19:49:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15277','2005-08-22 19:02:48.000','1780','217','2005-08-31 18:53:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15278','2005-08-22 19:06:47.000','2454','472','2005-08-25 01:00:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15279','2005-08-22 19:08:49.000','1088','363','2005-08-30 00:38:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15280','2005-08-22 19:09:52.000','3464','317','2005-08-28 00:39:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15281','2005-08-22 19:10:26.000','3992','543','2005-08-27 21:55:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15282','2006-02-14 15:16:03.000','1932','163',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15283','2005-08-22 19:16:04.000','1688','219','2005-08-31 21:05:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15284','2005-08-22 19:17:08.000','2265','393','2005-08-29 13:28:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15285','2005-08-22 19:17:24.000','481','233','2005-08-25 00:25:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15286','2005-08-22 19:17:56.000','3731','74','2005-08-29 16:08:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15287','2005-08-22 19:19:37.000','308','535','2005-08-29 16:05:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15288','2005-08-22 19:23:58.000','1999','475','2005-08-26 23:28:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15289','2005-08-22 19:27:24.000','1026','513','2005-08-30 22:21:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15290','2005-08-22 19:28:02.000','270','404','2005-08-31 20:04:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15291','2005-08-22 19:28:04.000','1461','494','2005-08-26 15:07:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15292','2005-08-22 19:28:56.000','3072','337','2005-08-28 22:39:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15293','2006-02-14 15:16:03.000','1219','263',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15294','2006-02-14 15:16:03.000','70','108',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15295','2005-08-22 19:36:21.000','2164','186','2005-08-31 00:07:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15296','2005-08-22 19:37:20.000','2715','55','2005-08-24 15:16:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15297','2006-02-14 15:16:03.000','3192','327',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15298','2005-08-22 19:41:37.000','1446','1','2005-08-28 22:49:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15299','2005-08-22 19:42:57.000','767','381','2005-08-23 15:29:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15300','2005-08-22 19:44:00.000','2319','399','2005-08-25 22:49:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15301','2005-08-22 19:44:16.000','619','454','2005-08-26 22:57:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15302','2005-08-22 19:44:53.000','188','320','2005-08-24 18:13:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15303','2005-08-22 19:44:59.000','1672','390','2005-08-30 21:59:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15304','2005-08-22 19:45:57.000','4332','112','2005-08-28 00:21:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15305','2005-08-22 19:46:05.000','671','529','2005-08-27 19:11:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15306','2005-08-22 19:46:36.000','521','340','2005-08-27 14:09:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15307','2005-08-22 19:54:26.000','4525','598','2005-08-29 01:38:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15308','2005-08-22 19:54:31.000','987','329','2005-08-26 23:09:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15309','2005-08-22 19:54:52.000','2743','141','2005-08-24 23:00:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15310','2005-08-22 19:56:41.000','2546','360','2005-08-24 16:32:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15311','2005-08-22 19:56:52.000','3612','176','2005-08-31 20:15:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15312','2005-08-22 19:58:15.000','2509','280','2005-08-25 19:21:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15313','2005-08-22 19:59:42.000','2587','333','2005-08-24 15:03:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15314','2006-02-14 15:16:03.000','2754','412',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15315','2005-08-22 20:03:46.000','312','1','2005-08-30 01:51:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15316','2005-08-22 20:07:03.000','1830','422','2005-08-27 18:45:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15317','2005-08-22 20:14:13.000','2325','512','2005-08-29 18:32:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15318','2005-08-22 20:15:16.000','1738','60','2005-08-25 14:17:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15319','2005-08-22 20:17:17.000','3041','188','2005-08-25 01:06:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15320','2005-08-22 20:17:49.000','648','407','2005-08-28 17:31:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15321','2005-08-22 20:20:04.000','4152','384','2005-08-24 23:26:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15322','2005-08-22 20:20:30.000','3553','263','2005-08-25 01:26:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15323','2005-08-22 20:22:40.000','1153','178','2005-08-26 00:35:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15324','2005-08-22 20:23:13.000','161','93','2005-08-29 18:23:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15325','2005-08-22 20:27:38.000','3549','74','2005-08-23 15:24:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15326','2006-02-14 15:16:03.000','3320','58',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15327','2005-08-22 20:31:24.000','1018','450','2005-08-30 23:52:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15328','2005-08-22 20:31:38.000','4546','274','2005-08-29 20:17:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15329','2005-08-22 20:32:39.000','1900','521','2005-08-23 17:15:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15330','2005-08-22 20:35:30.000','689','427','2005-08-30 21:54:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15331','2005-08-22 20:37:57.000','146','147','2005-08-25 21:56:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15332','2005-08-22 20:41:53.000','3368','162','2005-08-24 01:45:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15333','2005-08-22 20:44:06.000','1839','142','2005-08-29 22:34:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15334','2005-08-22 20:44:35.000','3882','407','2005-08-29 23:03:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15335','2005-08-22 20:44:55.000','1593','363','2005-08-28 21:43:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15336','2005-08-22 20:47:48.000','490','461','2005-08-31 18:17:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15337','2005-08-22 20:49:51.000','280','237','2005-08-26 23:27:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15338','2005-08-22 20:51:24.000','502','13','2005-08-24 23:41:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15339','2005-08-22 20:52:12.000','1660','331','2005-08-26 00:36:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15340','2005-08-22 20:55:56.000','3653','313','2005-08-27 18:52:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15341','2005-08-22 20:56:31.000','3359','91','2005-08-30 17:25:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15342','2005-08-22 20:56:41.000','3287','459','2005-08-26 22:51:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15343','2005-08-22 21:01:25.000','2589','538','2005-08-28 16:15:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15344','2005-08-22 21:01:48.000','3560','193','2005-08-27 15:47:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15345','2005-08-22 21:05:50.000','3481','277','2005-08-26 20:30:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15346','2005-08-22 21:06:00.000','3525','266','2005-08-28 22:08:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15347','2005-08-22 21:12:19.000','3764','519','2005-08-24 20:12:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15348','2005-08-22 21:13:46.000','3846','587','2005-08-24 17:06:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15349','2005-08-22 21:13:51.000','4055','587','2005-08-23 20:55:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15350','2005-08-22 21:15:29.000','1170','488','2005-08-24 02:56:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15351','2005-08-22 21:15:46.000','3260','154','2005-08-23 17:38:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15352','2005-08-22 21:16:54.000','16','560','2005-08-31 00:38:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15353','2005-08-22 21:18:08.000','3470','368','2005-08-25 20:29:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15354','2005-08-22 21:18:59.000','4212','412','2005-08-27 20:12:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15355','2005-08-22 21:19:24.000','3477','493','2005-08-28 20:36:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15356','2005-08-22 21:24:19.000','4507','539','2005-08-25 22:32:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15357','2005-08-22 21:28:59.000','727','24','2005-08-25 17:15:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15358','2005-08-22 21:29:14.000','822','448','2005-08-31 00:10:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15359','2005-08-22 21:34:00.000','4505','77','2005-08-29 18:59:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15360','2005-08-22 21:36:51.000','1950','531','2005-08-24 16:46:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15361','2005-08-22 21:39:45.000','1407','380','2005-08-23 17:32:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15362','2005-08-22 21:40:20.000','1023','497','2005-08-29 15:55:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15363','2005-08-22 21:41:40.000','2326','480','2005-08-23 21:40:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15364','2005-08-22 21:41:41.000','4184','204','2005-08-28 00:49:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15365','2005-08-22 21:42:17.000','3382','327','2005-09-01 03:14:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15366','2005-08-22 21:45:57.000','1453','374','2005-08-30 16:35:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15367','2005-08-22 21:47:53.000','160','355','2005-08-27 17:54:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15368','2005-08-22 21:57:15.000','1130','370','2005-08-29 16:28:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15369','2005-08-22 21:58:06.000','881','121','2005-08-26 00:27:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15370','2005-08-22 21:59:29.000','67','10','2005-08-27 16:32:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15371','2006-02-14 15:16:03.000','3672','94',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15372','2005-08-22 21:59:51.000','3876','273','2005-08-23 17:01:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15373','2005-08-22 22:08:11.000','4439','14','2005-08-24 01:05:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15374','2005-08-22 22:09:09.000','4275','8','2005-08-31 01:10:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15375','2005-08-22 22:12:02.000','3864','191','2005-08-24 00:50:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15376','2005-08-22 22:21:35.000','2963','390','2005-08-28 20:56:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15377','2005-08-22 22:22:33.000','3405','551','2005-08-29 18:41:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15378','2005-08-22 22:25:17.000','1483','340','2005-08-30 17:04:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15379','2005-08-22 22:26:13.000','1899','148','2005-08-31 18:19:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15380','2005-08-22 22:28:15.000','3642','423','2005-08-28 23:21:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15381','2005-08-22 22:28:36.000','845','110','2005-08-24 19:26:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15382','2005-08-22 22:30:50.000','333','376','2005-08-24 04:07:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15383','2005-08-22 22:31:20.000','686','405','2005-08-28 17:43:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15384','2005-08-22 22:34:44.000','3208','26','2005-08-23 23:25:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15385','2005-08-22 22:37:34.000','140','434','2005-08-26 00:36:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15386','2005-08-22 22:41:14.000','3056','327','2005-08-29 22:29:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15387','2005-08-22 22:49:13.000','3879','323','2005-08-29 01:49:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15388','2005-08-22 22:49:23.000','3995','50','2005-09-01 03:50:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15389','2005-08-22 22:51:13.000','2077','231','2005-08-28 23:46:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15390','2005-08-22 22:57:25.000','462','551','2005-08-31 18:06:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15391','2005-08-22 23:01:45.000','3918','482','2005-08-29 02:59:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15392','2005-08-22 23:02:15.000','538','410','2005-09-01 01:14:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15393','2005-08-22 23:04:09.000','2924','443','2005-08-27 02:23:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15394','2005-08-22 23:04:21.000','3455','507','2005-08-25 20:53:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15395','2005-08-22 23:06:25.000','2880','526','2005-08-30 19:18:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15396','2005-08-22 23:07:57.000','4050','319','2005-08-28 19:39:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15397','2005-08-22 23:08:46.000','1482','261','2005-08-25 20:58:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15398','2005-08-22 23:10:49.000','4451','109','2005-08-28 00:49:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15399','2005-08-22 23:11:59.000','3858','379','2005-08-26 22:16:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15400','2005-08-22 23:13:03.000','2664','473','2005-08-28 18:34:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15401','2005-08-22 23:13:10.000','1721','103','2005-09-01 03:44:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15402','2005-08-22 23:17:41.000','1575','293','2005-08-30 20:07:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15403','2005-08-22 23:18:10.000','4315','581','2005-08-23 18:08:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15404','2005-08-22 23:19:44.000','3557','211','2005-08-30 19:58:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15405','2005-08-22 23:20:41.000','3263','596','2005-08-25 23:53:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15406','2005-08-22 23:21:22.000','400','227','2005-08-28 22:21:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15407','2006-02-14 15:16:03.000','3330','42',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15408','2005-08-22 23:26:32.000','165','156','2005-08-30 20:22:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15409','2005-08-22 23:26:32.000','560','188','2005-08-24 22:44:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15410','2005-08-22 23:27:43.000','2052','403','2005-08-29 05:12:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15411','2005-08-22 23:35:41.000','4423','461','2005-08-26 00:51:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15412','2005-08-22 23:37:11.000','1267','199','2005-08-28 23:26:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15413','2005-08-22 23:38:01.000','2494','476','2005-08-23 19:27:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15414','2005-08-22 23:43:54.000','718','532','2005-08-30 18:26:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15415','2005-08-22 23:48:56.000','4176','204','2005-09-01 02:05:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15416','2005-08-22 23:51:23.000','1167','383','2005-08-29 20:03:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15417','2005-08-22 23:54:04.000','1826','305','2005-08-26 22:25:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15418','2005-08-22 23:54:14.000','808','205','2005-08-28 04:23:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15419','2005-08-22 23:54:36.000','1120','450','2005-08-25 00:52:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15420','2005-08-22 23:55:51.000','1396','161','2005-08-31 20:09:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15421','2005-08-22 23:56:37.000','3','541','2005-08-25 18:58:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15422','2005-08-22 23:58:09.000','2601','309','2005-08-30 19:03:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15423','2006-02-14 15:16:03.000','1786','596',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15424','2005-08-23 00:03:01.000','3452','138','2005-08-27 23:27:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15425','2005-08-23 00:05:57.000','551','259','2005-09-01 05:08:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15426','2005-08-23 00:07:19.000','3280','347','2005-08-26 23:19:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15427','2005-08-23 00:07:53.000','2775','448','2005-09-01 02:55:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15428','2005-08-23 00:11:52.000','4379','402','2005-08-24 02:35:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15429','2005-08-23 00:20:31.000','740','241','2005-08-23 20:22:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15430','2006-02-14 15:16:03.000','4353','282',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15431','2005-08-23 00:26:47.000','3251','550','2005-08-31 23:26:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15432','2005-08-23 00:26:52.000','1896','117','2005-08-27 06:11:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15433','2005-08-23 00:27:18.000','155','198','2005-08-26 21:36:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15434','2005-08-23 00:28:16.000','4378','518','2005-08-26 04:27:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15435','2005-08-23 00:28:19.000','2103','468','2005-08-26 00:44:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15436','2005-08-23 00:30:26.000','1527','505','2005-08-28 06:29:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15437','2005-08-23 00:31:09.000','4236','368','2005-08-30 06:17:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15438','2005-08-23 00:31:57.000','2030','46','2005-08-26 20:02:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15439','2005-08-23 00:34:28.000','3848','136','2005-08-27 01:07:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15440','2005-08-23 00:37:21.000','2254','559','2005-08-24 23:24:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15441','2006-02-14 15:16:03.000','258','422',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15442','2005-08-23 00:42:49.000','1452','42','2005-08-27 00:35:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15443','2005-08-23 00:44:15.000','742','598','2005-09-01 05:33:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15444','2005-08-23 00:46:52.000','959','153','2005-08-29 20:37:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15445','2005-08-23 00:48:29.000','196','28','2005-08-28 00:33:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15446','2005-08-23 00:49:24.000','503','379','2005-08-26 02:09:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15447','2005-08-23 00:53:57.000','4090','331','2005-08-29 06:19:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15448','2005-08-23 00:55:24.000','2903','490','2005-08-25 02:20:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15449','2005-08-23 00:55:43.000','2856','461','2005-08-28 03:41:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15450','2005-08-23 00:56:01.000','1102','322','2005-08-24 01:00:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15451','2005-08-23 00:56:27.000','231','514','2005-08-24 00:15:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15452','2005-08-23 00:57:12.000','717','115','2005-08-28 00:19:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15453','2005-08-23 01:01:01.000','2','359','2005-08-30 20:08:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15454','2006-02-14 15:16:03.000','2946','142',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15455','2005-08-23 01:05:00.000','3991','238','2005-08-26 22:56:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15456','2005-08-23 01:07:01.000','2451','262','2005-08-24 23:28:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15457','2005-08-23 01:07:37.000','4539','306','2005-08-26 19:46:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15458','2006-02-14 15:16:03.000','25','590',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15459','2005-08-23 01:09:48.000','2058','346','2005-08-24 04:52:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15460','2005-08-23 01:10:42.000','2907','20','2005-08-28 20:49:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15461','2005-08-23 01:13:52.000','4542','103','2005-08-30 00:44:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15462','2005-08-23 01:14:01.000','3267','389','2005-08-29 19:52:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15463','2005-08-23 01:15:07.000','863','127','2005-08-29 06:50:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15464','2005-08-23 01:15:18.000','3235','62','2005-08-29 02:58:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15465','2005-08-23 01:16:33.000','362','520','2005-08-28 20:08:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15466','2005-08-23 01:16:55.000','571','418','2005-08-29 22:57:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15467','2005-08-23 01:22:12.000','3658','103','2005-08-29 23:42:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15468','2005-08-23 01:25:30.000','2440','399','2005-08-28 01:40:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15469','2005-08-23 01:29:59.000','1939','597','2005-08-27 04:02:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15470','2005-08-23 01:35:12.000','3009','416','2005-09-01 05:33:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15471','2005-08-23 01:38:48.000','2591','139','2005-08-31 19:47:48.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15472','2005-08-23 01:39:05.000','4293','226','2005-08-25 04:43:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15473','2005-08-23 01:39:10.000','356','259','2005-08-25 03:48:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15474','2005-08-23 01:39:10.000','3015','188','2005-08-23 21:46:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15475','2005-08-23 01:44:43.000','4503','562','2005-08-23 23:53:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15476','2005-08-23 01:45:07.000','2478','433','2005-08-26 21:07:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15477','2005-08-23 01:46:35.000','2406','142','2005-08-28 22:12:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15478','2005-08-23 01:50:31.000','4563','167','2005-08-27 21:40:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15479','2005-08-23 01:50:53.000','4182','149','2005-08-29 00:53:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15480','2005-08-23 01:57:20.000','3298','577','2005-08-26 04:43:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15481','2005-08-23 01:59:14.000','3262','414','2005-08-27 04:38:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15482','2005-08-23 02:01:20.000','3923','181','2005-08-24 03:25:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15483','2005-08-23 02:02:53.000','2970','173','2005-08-26 04:13:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15484','2005-08-23 02:04:49.000','642','342','2005-08-24 05:46:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15485','2005-08-23 02:04:57.000','281','114','2005-08-28 07:05:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15486','2005-08-23 02:05:20.000','1666','502','2005-08-29 07:52:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15487','2005-08-23 02:05:51.000','2636','469','2005-08-25 04:45:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15488','2005-08-23 02:06:01.000','4535','385','2005-08-29 21:35:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15489','2005-08-23 02:06:41.000','764','285','2005-08-25 06:50:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15490','2005-08-23 02:08:18.000','3922','493','2005-08-30 06:15:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15491','2005-08-23 02:08:40.000','2059','28','2005-08-23 20:23:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15492','2005-08-23 02:13:46.000','1298','520','2005-08-26 21:53:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15493','2005-08-23 02:20:53.000','3521','308','2005-08-25 23:02:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15494','2005-08-23 02:25:09.000','2968','455','2005-08-27 00:18:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15495','2005-08-23 02:26:10.000','4310','193','2005-08-30 01:07:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15496','2005-08-23 02:30:23.000','1863','275','2005-08-31 03:31:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15497','2006-02-14 15:16:03.000','363','107',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15498','2005-08-23 02:33:27.000','1583','83','2005-08-23 22:30:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15499','2005-08-23 02:37:19.000','630','488','2005-08-23 20:57:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15500','2005-08-23 02:39:37.000','886','74','2005-08-27 06:42:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15501','2005-08-23 02:39:56.000','4468','138','2005-08-25 04:39:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15502','2005-08-23 02:40:04.000','3219','433','2005-08-31 00:36:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15503','2005-08-23 02:44:49.000','4519','582','2005-08-27 06:33:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15504','2005-08-23 02:45:21.000','1967','315','2005-09-01 03:24:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15505','2005-08-23 02:46:13.000','1144','375','2005-08-26 23:34:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15506','2005-08-23 02:48:24.000','1914','553','2005-08-28 04:10:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15507','2005-08-23 02:48:26.000','3130','563','2005-08-27 01:32:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15508','2005-08-23 02:49:04.000','4035','293','2005-08-29 00:58:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15509','2005-08-23 02:51:24.000','1291','6','2005-08-31 06:21:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15510','2005-08-23 02:51:27.000','3239','209','2005-09-01 02:44:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15511','2005-08-23 02:55:42.000','3327','303','2005-08-31 03:14:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15512','2005-08-23 02:57:30.000','4336','25','2005-08-25 01:47:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15513','2005-08-23 03:01:56.000','3779','147','2005-08-24 23:46:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15514','2005-08-23 03:03:40.000','2824','366','2005-08-24 01:06:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15515','2005-08-23 03:03:53.000','3940','307','2005-08-25 08:27:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15516','2005-08-23 03:12:54.000','219','82','2005-08-30 04:02:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15517','2005-08-23 03:13:01.000','2221','187','2005-08-25 21:14:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15518','2005-08-23 03:19:34.000','3522','410','2005-08-24 02:55:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15519','2005-08-23 03:23:32.000','542','443','2005-08-25 03:48:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15520','2005-08-23 03:30:45.000','1792','163','2005-09-01 00:20:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15521','2005-08-23 03:30:51.000','134','331','2005-08-28 22:09:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15522','2005-08-23 03:32:31.000','2396','468','2005-08-30 02:17:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15523','2005-08-23 03:32:36.000','2570','432','2005-08-26 22:08:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15524','2005-08-23 03:36:26.000','2886','68','2005-08-26 06:28:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15525','2005-08-23 03:43:32.000','3509','123','2005-08-25 07:31:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15526','2005-08-23 03:44:30.000','2892','516','2005-08-30 08:19:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15527','2005-08-23 03:44:51.000','88','393','2005-08-25 03:09:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15528','2005-08-23 03:45:40.000','3033','114','2005-08-25 01:16:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15529','2005-08-23 03:46:47.000','4015','19','2005-08-24 00:59:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15530','2005-08-23 03:50:48.000','154','167','2005-08-28 22:17:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15531','2005-08-23 03:52:36.000','2410','355','2005-08-25 23:21:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15532','2006-02-14 15:16:03.000','1061','23',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15533','2005-08-23 03:54:39.000','1895','400','2005-08-26 08:27:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15534','2005-08-23 03:55:54.000','544','169','2005-08-24 03:54:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15535','2005-08-23 03:58:02.000','2371','346','2005-08-25 05:06:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15536','2005-08-23 03:58:28.000','4004','98','2005-08-31 03:28:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15537','2005-08-23 04:00:30.000','2958','137','2005-08-24 01:45:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15538','2005-08-23 04:07:37.000','4226','211','2005-08-28 07:37:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15539','2005-08-23 04:09:03.000','2853','582','2005-08-26 04:01:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15540','2005-08-23 04:12:52.000','1696','197','2005-08-31 04:25:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15541','2005-08-23 04:13:53.000','2762','148','2005-08-29 05:51:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15542','2006-02-14 15:16:03.000','21','111',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15543','2005-08-23 04:15:41.000','3836','282','2005-09-01 05:09:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15544','2005-08-23 04:17:56.000','1918','30','2005-09-01 00:43:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15545','2005-08-23 04:20:16.000','843','513','2005-08-29 08:22:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15546','2005-08-23 04:20:38.000','2087','223','2005-09-01 09:57:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15547','2005-08-23 04:25:50.000','1488','69','2005-08-26 00:57:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15548','2005-08-23 04:26:20.000','2350','334','2005-08-28 01:27:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15549','2005-08-23 04:27:06.000','369','170','2005-09-01 06:07:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15550','2005-08-23 04:27:54.000','1375','465','2005-08-29 01:29:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15551','2005-08-23 04:28:25.000','3570','345','2005-08-26 07:19:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15552','2005-08-23 04:33:23.000','4347','527','2005-09-01 10:25:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15553','2005-08-23 04:33:39.000','1659','232','2005-08-25 07:53:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15554','2005-08-23 04:48:12.000','198','280','2005-08-29 05:11:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15555','2005-08-23 04:51:52.000','1869','347','2005-08-24 01:01:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15556','2005-08-23 04:52:16.000','3683','108','2005-09-01 02:05:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15557','2005-08-23 04:52:17.000','3641','444','2005-08-30 02:15:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15558','2005-08-23 04:52:22.000','638','474','2005-09-01 02:26:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15559','2005-08-23 04:55:05.000','1773','517','2005-08-30 09:01:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15560','2005-08-23 05:01:13.000','3616','107','2005-09-01 05:02:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15561','2005-08-23 05:02:31.000','68','469','2005-09-01 02:51:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15562','2005-08-23 05:04:33.000','4238','149','2005-08-27 09:58:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15563','2005-08-23 05:08:58.000','170','372','2005-08-24 04:24:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15564','2005-08-23 05:10:42.000','1268','353','2005-08-30 03:17:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15565','2005-08-23 05:13:09.000','71','546','2005-08-30 08:58:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15566','2005-08-23 05:17:23.000','4344','76','2005-09-01 08:09:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15567','2005-08-23 05:20:36.000','2506','54','2005-08-24 10:09:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15568','2005-08-23 05:24:09.000','988','556','2005-08-27 08:57:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15569','2005-08-23 05:24:29.000','1071','313','2005-08-30 08:23:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15570','2005-08-23 05:24:55.000','4014','557','2005-08-31 07:06:55.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15571','2005-08-23 05:26:30.000','716','57','2005-08-29 00:54:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15572','2005-08-23 05:28:01.000','2816','506','2005-08-27 00:14:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15573','2005-08-23 05:28:36.000','3133','561','2005-08-27 05:37:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15574','2005-08-23 05:29:32.000','3253','130','2005-09-01 01:25:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15575','2005-08-23 05:30:19.000','3916','218','2005-08-27 05:19:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15576','2005-08-23 05:32:03.000','3257','595','2005-08-26 02:31:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15577','2006-02-14 15:16:03.000','539','29',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15578','2005-08-23 05:37:13.000','2829','302','2005-08-27 01:11:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15579','2005-08-23 05:38:41.000','3986','480','2005-08-29 09:18:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15580','2005-08-23 05:39:06.000','754','279','2005-09-01 01:14:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15581','2005-08-23 05:42:13.000','4010','462','2005-08-28 00:03:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15582','2005-08-23 05:45:44.000','4264','297','2005-08-25 07:54:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15583','2005-08-23 05:47:55.000','4299','215','2005-08-26 01:46:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15584','2005-08-23 05:49:21.000','3526','500','2005-08-27 04:49:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15585','2005-08-23 05:55:22.000','1177','545','2005-08-24 11:45:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15586','2005-08-23 05:57:04.000','3232','148','2005-08-31 01:59:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15587','2005-08-23 06:00:28.000','2510','499','2005-08-29 10:15:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15588','2005-08-23 06:02:35.000','1810','503','2005-08-30 04:01:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15589','2005-08-23 06:03:31.000','2379','22','2005-08-30 07:44:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15590','2005-08-23 06:09:44.000','4048','599','2005-09-01 06:53:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15591','2005-08-23 06:11:52.000','64','62','2005-08-25 05:34:52.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15593','2005-08-23 06:15:09.000','3734','153','2005-08-27 07:47:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15594','2005-08-23 06:18:43.000','4227','567','2005-09-01 09:09:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15595','2005-08-23 06:19:12.000','4046','264','2005-08-31 04:52:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15596','2005-08-23 06:19:51.000','3834','186','2005-08-25 03:32:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15597','2005-08-23 06:21:20.000','3795','420','2005-08-28 02:47:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15598','2005-08-23 06:23:26.000','2794','66','2005-09-01 05:43:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15599','2005-08-23 06:25:07.000','4560','103','2005-08-29 00:48:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15600','2005-08-23 06:31:24.000','2260','113','2005-08-28 06:53:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15601','2005-08-23 06:33:26.000','3643','579','2005-08-24 04:10:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15602','2005-08-23 06:41:07.000','1429','81','2005-08-24 07:16:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15603','2005-08-23 06:41:32.000','2565','6','2005-08-28 08:51:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15604','2005-08-23 06:44:19.000','4000','458','2005-08-29 07:17:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15605','2005-08-23 06:48:47.000','3152','544','2005-08-28 06:09:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15606','2005-08-23 06:50:27.000','1811','279','2005-08-28 04:23:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15607','2005-08-23 06:54:06.000','4118','484','2005-08-26 05:03:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15608','2005-08-23 06:55:26.000','2921','454','2005-08-28 10:24:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15609','2005-08-23 06:56:04.000','1730','256','2005-09-01 03:25:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15610','2005-08-23 06:56:15.000','2076','215','2005-08-24 07:37:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15611','2005-08-23 06:56:18.000','1713','184','2005-08-25 06:10:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15612','2005-08-23 06:59:07.000','3367','305','2005-09-01 11:26:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15613','2005-08-23 07:03:19.000','307','461','2005-08-31 07:50:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15614','2005-08-23 07:05:15.000','1216','287','2005-09-01 11:41:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15615','2005-08-23 07:06:00.000','899','584','2005-08-30 11:21:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15616','2005-08-23 07:06:38.000','2947','70','2005-08-30 04:16:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15617','2005-08-23 07:07:22.000','4085','569','2005-08-27 01:24:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15618','2005-08-23 07:07:58.000','1903','60','2005-08-29 03:48:58.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15619','2005-08-23 07:10:14.000','2468','3','2005-08-26 07:21:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15620','2005-08-23 07:10:22.000','1173','270','2005-08-28 06:51:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15621','2005-08-23 07:13:43.000','3832','123','2005-08-29 08:19:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15622','2005-08-23 07:22:02.000','3335','302','2005-09-01 06:08:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15623','2005-08-23 07:23:29.000','3003','525','2005-08-31 01:47:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15624','2005-08-23 07:24:27.000','396','105','2005-08-29 12:36:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15625','2005-08-23 07:25:29.000','4200','207','2005-08-27 13:17:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15626','2005-08-23 07:25:34.000','640','370','2005-08-28 11:01:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15627','2005-08-23 07:25:38.000','1364','453','2005-08-31 02:53:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15628','2005-08-23 07:28:04.000','1348','408','2005-08-26 04:23:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15629','2005-08-23 07:28:22.000','3725','286','2005-08-29 06:29:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15630','2005-08-23 07:29:13.000','3590','580','2005-08-31 04:33:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15631','2005-08-23 07:30:23.000','2458','93','2005-08-24 07:23:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15632','2005-08-23 07:30:26.000','2941','60','2005-08-24 07:53:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15633','2005-08-23 07:31:10.000','882','497','2005-08-26 04:35:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15634','2005-08-23 07:34:18.000','2517','576','2005-08-24 12:00:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15635','2005-08-23 07:43:00.000','3308','4','2005-08-27 10:47:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15636','2005-08-23 07:50:46.000','1169','380','2005-08-26 07:59:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15637','2005-08-23 07:53:38.000','445','172','2005-08-29 03:16:38.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15638','2005-08-23 07:54:54.000','3358','563','2005-08-30 13:33:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15639','2005-08-23 08:03:25.000','42','214','2005-08-24 10:21:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15640','2005-08-23 08:04:40.000','3505','262','2005-08-24 06:38:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15641','2005-08-23 08:06:49.000','3126','240','2005-08-24 13:17:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15642','2005-08-23 08:09:11.000','2627','160','2005-08-28 05:57:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15643','2005-08-23 08:13:26.000','103','298','2005-08-25 05:18:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15644','2006-02-14 15:16:03.000','3139','43',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15645','2006-02-14 15:16:03.000','3838','214',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15646','2005-08-23 08:19:55.000','3217','114','2005-08-29 02:32:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15647','2005-08-23 08:23:56.000','2051','251','2005-08-26 11:00:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15648','2005-08-23 08:27:57.000','4039','80','2005-08-30 08:53:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15649','2005-08-23 08:28:03.000','415','60','2005-08-30 05:11:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15650','2005-08-23 08:29:53.000','2447','353','2005-08-25 07:23:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15651','2005-08-23 08:31:49.000','3393','451','2005-08-26 02:57:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15652','2005-08-23 08:34:10.000','4440','578','2005-08-30 12:31:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15653','2005-08-23 08:34:42.000','2736','439','2005-09-01 03:07:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15654','2005-08-23 08:34:53.000','4360','471','2005-08-30 04:18:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15655','2006-02-14 15:16:03.000','604','359',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15656','2005-08-23 08:38:58.000','4239','334','2005-08-24 04:08:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15657','2005-08-23 08:42:40.000','1897','36','2005-09-01 13:08:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15658','2005-08-23 08:48:43.000','3565','22','2005-08-25 05:38:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15659','2005-08-23 08:48:43.000','4573','131','2005-08-27 14:19:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15660','2005-08-23 08:51:21.000','3223','388','2005-08-28 06:26:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15661','2005-08-23 08:52:03.000','1599','346','2005-08-30 08:17:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15662','2005-08-23 08:52:50.000','3028','223','2005-08-24 08:08:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15663','2005-08-23 08:54:26.000','3291','291','2005-08-29 02:56:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15664','2005-08-23 08:57:11.000','2029','351','2005-08-31 14:19:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15665','2005-08-23 08:59:12.000','3471','487','2005-08-24 12:50:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15666','2005-08-23 09:01:10.000','3406','586','2005-08-31 12:32:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15667','2005-08-23 09:02:03.000','1302','73','2005-08-24 05:47:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15668','2005-08-23 09:02:04.000','1963','38','2005-08-29 03:17:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15669','2005-08-23 09:06:17.000','1542','334','2005-08-30 08:10:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15670','2005-08-23 09:07:11.000','2834','211','2005-08-31 04:32:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15671','2005-08-23 09:08:16.000','3716','112','2005-08-29 14:01:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15672','2005-08-23 09:09:18.000','701','210','2005-08-27 06:19:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15673','2005-08-23 09:12:50.000','3096','321','2005-08-29 12:45:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15674','2005-08-23 09:16:39.000','4482','90','2005-09-01 11:57:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15675','2005-08-23 09:18:52.000','4153','293','2005-08-30 14:59:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15676','2005-08-23 09:23:08.000','3874','353','2005-08-30 06:19:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15677','2005-08-23 09:23:36.000','2050','109','2005-08-27 05:01:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15678','2005-08-23 09:23:45.000','1345','413','2005-08-27 11:38:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15679','2005-08-23 09:27:29.000','2945','103','2005-08-28 09:14:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15680','2005-08-23 09:33:22.000','1370','169','2005-08-31 13:29:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15681','2005-08-23 09:35:34.000','2813','61','2005-08-27 08:33:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15682','2005-08-23 09:37:34.000','3293','31','2005-08-31 06:01:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15683','2005-08-23 09:38:17.000','3787','168','2005-08-30 12:31:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15684','2005-08-23 09:40:04.000','3976','586','2005-08-28 15:28:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15685','2005-08-23 09:41:28.000','370','491','2005-08-30 10:11:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15686','2005-08-23 09:42:21.000','2041','206','2005-08-29 12:22:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15687','2005-08-23 09:46:33.000','276','112','2005-09-01 06:07:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15688','2005-08-23 09:48:45.000','2851','105','2005-08-30 10:28:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15689','2005-08-23 09:52:55.000','248','259','2005-08-29 11:15:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15690','2005-08-23 09:53:30.000','2102','554','2005-08-29 10:27:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15691','2005-08-23 09:53:54.000','784','200','2005-08-27 10:14:54.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15692','2005-08-23 10:00:02.000','1852','503','2005-08-24 05:25:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15693','2005-08-23 10:00:24.000','748','94','2005-08-25 08:23:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15694','2005-08-23 10:02:46.000','3017','506','2005-08-31 05:46:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15695','2006-02-14 15:16:03.000','2954','300',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15696','2005-08-23 10:04:17.000','2836','93','2005-08-25 08:47:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15697','2005-08-23 10:04:36.000','1987','380','2005-08-24 05:00:36.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15698','2005-08-23 10:11:40.000','4465','395','2005-08-28 08:50:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15699','2005-08-23 10:20:35.000','4155','501','2005-08-30 13:56:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15700','2005-08-23 10:21:21.000','2935','552','2005-08-24 15:37:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15701','2005-08-23 10:22:21.000','2942','516','2005-08-24 10:52:21.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15702','2005-08-23 10:23:28.000','1602','56','2005-08-29 11:08:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15703','2005-08-23 10:23:48.000','2883','322','2005-09-01 06:54:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15704','2005-08-23 10:25:45.000','738','71','2005-08-29 16:06:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15705','2005-08-23 10:32:52.000','936','356','2005-08-29 13:18:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15706','2005-08-23 10:32:52.000','4486','220','2005-08-24 07:03:52.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15707','2005-08-23 10:35:45.000','3646','91','2005-08-27 10:57:45.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15708','2005-08-23 10:35:51.000','1974','46','2005-08-27 16:02:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15709','2005-08-23 10:36:00.000','346','206','2005-08-28 06:18:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15710','2006-02-14 15:16:03.000','1020','421',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15711','2005-08-23 10:43:00.000','789','297','2005-08-29 16:29:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15712','2005-08-23 10:43:56.000','1882','351','2005-08-29 15:35:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15713','2005-08-23 10:56:15.000','337','432','2005-08-29 09:14:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15714','2006-02-14 15:16:03.000','2083','56',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15715','2005-08-23 10:57:40.000','3808','86','2005-08-28 12:40:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15716','2005-08-23 11:02:00.000','2812','408','2005-08-28 14:46:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15717','2006-02-14 15:16:03.000','902','208',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15718','2005-08-23 11:05:17.000','2180','276','2005-08-28 12:50:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15719','2005-08-23 11:08:46.000','3990','599','2005-08-25 07:25:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15720','2005-08-23 11:15:20.000','2490','456','2005-08-31 09:49:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15721','2005-08-23 11:16:16.000','685','154','2005-08-28 10:21:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15722','2005-08-23 11:16:29.000','2809','26','2005-09-01 13:24:29.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15723','2005-08-23 11:17:26.000','3915','504','2005-08-31 13:58:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15724','2005-08-23 11:22:09.000','1025','478','2005-08-28 12:56:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15725','2005-08-23 11:25:00.000','378','599','2005-08-26 11:46:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15726','2005-08-23 11:28:26.000','906','503','2005-08-28 11:23:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15727','2005-08-23 11:28:49.000','2184','416','2005-08-24 06:24:49.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15728','2005-08-23 11:30:32.000','2567','323','2005-08-28 09:52:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15729','2006-02-14 15:16:03.000','2699','193',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15730','2005-08-23 11:32:35.000','947','147','2005-08-30 13:46:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15731','2005-08-23 11:33:25.000','3403','118','2005-08-24 07:19:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15732','2005-08-23 11:35:12.000','3247','412','2005-08-26 12:50:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15733','2005-08-23 11:37:32.000','4185','512','2005-08-28 16:27:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15734','2005-08-23 11:40:08.000','3952','302','2005-08-27 08:16:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15735','2006-02-14 15:16:03.000','3167','295',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15736','2005-08-23 11:40:30.000','4272','127','2005-08-30 12:40:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15737','2005-08-23 11:52:18.000','996','83','2005-08-28 15:28:18.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15738','2005-08-23 11:55:50.000','556','38','2005-08-30 15:07:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15739','2005-08-23 11:56:22.000','266','74','2005-08-29 16:10:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15740','2005-08-23 12:07:51.000','100','229','2005-08-24 13:23:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15741','2005-08-23 12:10:54.000','4243','126','2005-08-24 10:08:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15742','2005-08-23 12:11:37.000','1339','200','2005-08-31 07:28:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15743','2005-08-23 12:12:05.000','1625','139','2005-08-26 11:35:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15744','2005-08-23 12:15:51.000','2364','59','2005-08-31 17:19:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15745','2006-02-14 15:16:03.000','2737','43',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15746','2005-08-23 12:26:19.000','2241','246','2005-08-26 09:51:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15747','2005-08-23 12:29:24.000','1517','381','2005-08-31 08:27:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15748','2005-08-23 12:33:00.000','2757','380','2005-08-25 15:15:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15749','2005-08-23 12:33:41.000','4224','575','2005-08-24 10:52:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15750','2005-08-23 12:36:05.000','4474','496','2005-08-24 17:40:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15751','2005-08-23 12:41:07.000','697','199','2005-08-29 07:03:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15752','2005-08-23 12:41:38.000','2112','17','2005-09-01 14:06:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15753','2005-08-23 12:43:30.000','3451','144','2005-09-01 09:07:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15754','2005-08-23 12:43:42.000','2306','356','2005-08-27 17:45:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15755','2005-08-23 12:46:38.000','511','423','2005-08-25 12:59:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15756','2005-08-23 12:47:05.000','878','112','2005-08-28 08:34:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15757','2005-08-23 12:47:16.000','1308','356','2005-08-29 17:19:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15758','2005-08-23 12:47:26.000','152','46','2005-08-29 11:05:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15759','2005-08-23 12:47:37.000','1341','361','2005-09-01 11:28:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15760','2005-08-23 12:50:00.000','3050','273','2005-08-29 15:41:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15761','2005-08-23 12:55:51.000','4362','416','2005-08-26 16:51:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15762','2005-08-23 13:01:43.000','887','351','2005-08-26 16:35:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15763','2005-08-23 13:02:59.000','124','158','2005-08-24 17:45:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15764','2005-08-23 13:05:10.000','2937','8','2005-08-25 16:15:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15765','2005-08-23 13:06:19.000','1250','408','2005-08-31 12:18:19.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15766','2005-08-23 13:10:16.000','1996','436','2005-08-30 09:27:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15767','2005-08-23 13:14:15.000','3492','241','2005-08-27 14:43:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15768','2005-08-23 13:14:47.000','662','267','2005-08-29 14:17:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15769','2005-08-23 13:16:15.000','2392','276','2005-08-28 18:31:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15770','2005-08-23 13:18:16.000','1424','113','2005-08-29 11:31:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15771','2005-08-23 13:18:46.000','3667','262','2005-08-26 07:29:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15772','2005-08-23 13:22:56.000','4343','202','2005-08-26 10:35:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15773','2005-08-23 13:24:57.000','1626','189','2005-08-31 14:16:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15774','2005-08-23 13:25:08.000','1273','254','2005-08-28 10:08:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15775','2005-08-23 13:25:44.000','2146','173','2005-09-01 16:56:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15776','2005-08-23 13:26:01.000','43','514','2005-08-29 18:17:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15777','2005-08-23 13:29:08.000','4241','130','2005-08-27 18:50:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15778','2006-02-14 15:16:03.000','1269','234',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15779','2005-08-23 13:33:46.000','1560','419','2005-08-28 08:40:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15780','2006-02-14 15:16:03.000','2911','120',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15781','2005-08-23 13:41:05.000','4449','412','2005-08-31 13:11:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15782','2005-08-23 13:43:26.000','3282','245','2005-08-30 14:03:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15783','2005-08-23 13:45:44.000','397','247','2005-08-26 09:18:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15784','2005-08-23 13:46:00.000','126','425','2005-08-30 11:49:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15785','2005-08-23 13:46:27.000','1758','543','2005-08-27 10:16:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15786','2005-08-23 13:48:34.000','3132','371','2005-08-27 15:59:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15787','2005-08-23 13:51:57.000','2932','123','2005-08-27 17:06:57.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15788','2005-08-23 13:54:39.000','13','269','2005-08-26 10:17:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15789','2005-08-23 13:56:40.000','1213','350','2005-08-27 15:25:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15790','2005-08-23 14:01:07.000','2887','233','2005-08-30 10:32:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15791','2005-08-23 14:02:13.000','4147','445','2005-09-01 09:03:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15792','2005-08-23 14:05:37.000','2175','581','2005-08-28 10:54:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15793','2005-08-23 14:06:19.000','2863','22','2005-08-24 19:59:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15794','2006-02-14 15:16:03.000','3917','579',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15795','2005-08-23 14:07:56.000','4371','417','2005-08-25 12:10:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15796','2005-08-23 14:12:22.000','1425','158','2005-08-28 17:03:22.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15797','2005-08-23 14:13:47.000','497','503','2005-08-25 09:16:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15798','2005-08-23 14:23:03.000','3803','203','2005-08-30 17:39:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15799','2005-08-23 14:23:23.000','2519','215','2005-08-24 17:15:23.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15800','2005-08-23 14:23:44.000','963','43','2005-08-29 17:04:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15801','2005-08-23 14:26:04.000','1590','165','2005-08-28 15:04:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15802','2005-08-23 14:26:51.000','41','158','2005-08-29 16:28:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15803','2005-08-23 14:27:07.000','500','105','2005-08-28 12:01:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15804','2005-08-23 14:29:16.000','3338','585','2005-08-26 08:41:16.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15805','2005-08-23 14:31:19.000','4511','8','2005-08-25 19:01:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15806','2005-08-23 14:31:50.000','2683','166','2005-08-27 16:08:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15807','2005-08-23 14:35:10.000','2705','350','2005-08-29 19:06:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15808','2005-08-23 14:38:37.000','1663','446','2005-08-27 14:45:37.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15809','2005-08-23 14:42:07.000','1885','431','2005-08-27 15:00:07.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15810','2005-08-23 14:43:15.000','2196','171','2005-08-25 17:41:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15811','2005-08-23 14:43:46.000','3487','300','2005-08-27 16:43:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15812','2005-08-23 14:47:26.000','4457','45','2005-09-01 10:51:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15813','2006-02-14 15:16:03.000','981','9',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15814','2005-08-23 14:52:50.000','4361','459','2005-08-27 16:12:50.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15815','2005-08-23 14:55:47.000','316','444','2005-08-24 12:37:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15816','2005-08-23 14:58:06.000','3628','31','2005-08-28 13:30:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15817','2005-08-23 14:59:51.000','598','348','2005-08-25 15:27:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15818','2005-08-23 14:59:58.000','2620','439','2005-08-27 13:13:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15819','2005-08-23 15:01:54.000','3639','274','2005-08-31 20:01:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15820','2005-08-23 15:03:13.000','4553','308','2005-08-25 20:12:13.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15821','2005-08-23 15:03:58.000','1714','233','2005-08-24 17:46:58.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15822','2005-08-23 15:05:59.000','3602','492','2005-08-24 11:13:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15823','2005-08-23 15:08:00.000','3047','81','2005-08-24 17:52:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15824','2005-08-23 15:09:17.000','2933','371','2005-08-28 15:14:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15825','2005-08-23 15:10:42.000','149','346','2005-08-29 09:28:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15826','2005-08-23 15:15:02.000','215','311','2005-08-31 20:39:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15827','2005-08-23 15:15:19.000','1732','346','2005-08-24 10:50:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15828','2005-08-23 15:16:32.000','428','327','2005-08-29 12:20:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15829','2005-08-23 15:17:14.000','4387','30','2005-08-27 13:04:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15830','2005-08-23 15:19:15.000','309','467','2005-08-25 18:42:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15831','2005-08-23 15:21:19.000','3123','401','2005-08-24 15:47:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15832','2005-08-23 15:21:35.000','1468','537','2005-08-30 15:01:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15833','2005-08-23 15:22:15.000','801','349','2005-08-31 14:54:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15834','2005-08-23 15:23:50.000','217','165','2005-09-01 19:31:50.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15835','2005-08-23 15:25:27.000','1362','128','2005-09-01 16:14:27.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15836','2005-08-23 15:29:17.000','260','468','2005-08-26 11:44:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15837','2005-08-23 15:29:41.000','4388','283','2005-08-27 18:17:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15838','2005-08-23 15:30:48.000','2194','579','2005-08-31 11:20:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15839','2005-08-23 15:34:46.000','3726','294','2005-08-30 21:00:46.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15840','2005-08-23 15:34:49.000','1901','316','2005-08-24 16:54:49.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15841','2005-08-23 15:35:59.000','2865','571','2005-08-30 19:30:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15842','2005-08-23 15:36:05.000','1850','146','2005-08-30 14:05:05.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15843','2005-08-23 15:37:31.000','611','215','2005-08-28 18:41:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15844','2005-08-23 15:38:12.000','2027','119','2005-08-26 15:18:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15845','2005-08-23 15:38:34.000','4312','89','2005-08-25 10:06:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15846','2005-08-23 15:39:18.000','3635','47','2005-08-27 14:28:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15847','2005-08-23 15:39:38.000','2287','163','2005-08-24 11:46:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15848','2005-08-23 15:41:12.000','2141','336','2005-08-26 10:29:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15849','2005-08-23 15:41:20.000','4077','482','2005-08-27 15:47:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15850','2005-08-23 15:45:42.000','586','563','2005-08-27 19:24:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15851','2005-08-23 15:46:33.000','2286','469','2005-08-29 15:52:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15852','2005-08-23 15:47:02.000','1506','140','2005-08-25 19:37:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15853','2005-08-23 15:54:20.000','225','500','2005-08-24 18:53:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15854','2005-08-23 15:58:05.000','1648','464','2005-08-26 19:23:05.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15855','2005-08-23 15:59:01.000','2528','192','2005-08-29 20:26:01.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15856','2005-08-23 15:59:12.000','3379','395','2005-08-25 15:36:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15857','2005-08-23 15:59:51.000','2733','575','2005-08-26 12:01:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15858','2005-08-23 16:07:15.000','4515','81','2005-08-25 19:36:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15859','2005-08-23 16:08:15.000','4269','465','2005-08-28 11:08:15.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15860','2005-08-23 16:08:40.000','2583','41','2005-08-28 15:35:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15861','2005-08-23 16:15:45.000','1859','256','2005-09-01 11:37:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15862','2006-02-14 15:16:03.000','925','215',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15863','2005-08-23 16:17:09.000','2783','328','2005-08-28 16:10:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15864','2005-08-23 16:18:12.000','3014','256','2005-08-29 17:10:12.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15865','2005-08-23 16:18:25.000','2031','482','2005-08-26 10:57:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15866','2005-08-23 16:19:02.000','3828','296','2005-08-31 12:29:02.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15867','2006-02-14 15:16:03.000','837','505',NULL,'2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15868','2005-08-23 16:19:14.000','2186','306','2005-08-29 16:14:14.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15869','2005-08-23 16:22:20.000','1344','357','2005-08-27 11:52:20.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15870','2005-08-23 16:23:08.000','590','251','2005-08-28 20:30:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15871','2005-08-23 16:24:24.000','425','57','2005-09-01 13:48:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15872','2005-08-23 16:27:24.000','3391','212','2005-08-31 11:57:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15873','2005-08-23 16:27:59.000','4548','577','2005-08-26 11:11:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15874','2005-08-23 16:30:55.000','621','132','2005-08-28 20:57:55.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15875','2006-02-14 15:16:03.000','3611','41',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15876','2005-08-23 16:32:10.000','1735','87','2005-08-24 18:16:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15877','2005-08-23 16:33:33.000','2307','559','2005-08-26 10:36:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15878','2005-08-23 16:34:31.000','1592','493','2005-08-27 21:51:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15879','2005-08-23 16:42:53.000','235','482','2005-08-29 16:21:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15880','2005-08-23 16:43:54.000','2538','528','2005-08-31 14:40:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15881','2005-08-23 16:44:25.000','617','383','2005-08-29 13:58:25.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15882','2005-08-23 16:44:31.000','2028','312','2005-09-01 15:44:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15883','2005-08-23 16:44:56.000','2792','550','2005-08-24 22:42:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15884','2005-08-23 16:45:28.000','2255','81','2005-08-27 20:18:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15885','2005-08-23 16:50:43.000','2116','565','2005-08-29 20:19:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15886','2005-08-23 16:50:53.000','3038','91','2005-08-26 15:38:53.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15887','2005-08-23 16:54:09.000','4263','201','2005-08-26 13:20:09.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15888','2005-08-23 16:56:14.000','2955','321','2005-08-31 14:32:14.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15889','2005-08-23 16:57:43.000','787','137','2005-08-27 22:14:43.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15890','2005-08-23 16:58:12.000','3625','87','2005-08-24 12:23:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15891','2005-08-23 17:00:12.000','2168','52','2005-08-31 21:12:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15892','2005-08-23 17:01:00.000','1365','174','2005-08-28 12:50:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15893','2005-08-23 17:02:00.000','2571','438','2005-08-30 12:45:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15894','2006-02-14 15:16:03.000','4416','168',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15895','2005-08-23 17:09:31.000','2275','342','2005-08-30 17:15:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15896','2005-08-23 17:09:56.000','528','585','2005-08-31 14:51:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15897','2005-08-23 17:12:31.000','1652','15','2005-08-30 17:22:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15898','2005-08-23 17:13:01.000','3502','88','2005-08-29 11:22:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15899','2005-08-23 17:16:28.000','3851','596','2005-08-29 21:46:28.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15900','2005-08-23 17:16:30.000','1112','562','2005-08-27 18:02:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15901','2005-08-23 17:19:17.000','2761','226','2005-08-30 14:24:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15902','2005-08-23 17:28:03.000','4500','172','2005-08-30 18:36:03.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15903','2005-08-23 17:30:40.000','1289','267','2005-08-29 14:12:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15904','2005-08-23 17:32:19.000','179','37','2005-08-24 21:05:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15905','2005-08-23 17:33:04.000','3631','59','2005-08-26 17:38:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15906','2005-08-23 17:36:00.000','3230','445','2005-08-28 15:32:00.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15907','2005-08-23 17:39:35.000','2898','2','2005-08-25 23:23:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15908','2005-08-23 17:42:00.000','2453','135','2005-08-31 22:32:00.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15909','2005-08-23 17:42:42.000','404','452','2005-08-26 20:25:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15910','2005-08-23 17:43:16.000','254','456','2005-08-24 21:55:16.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15911','2005-08-23 17:44:53.000','3006','582','2005-09-01 19:14:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15912','2005-08-23 17:47:40.000','3079','229','2005-08-31 14:43:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15913','2005-08-23 17:48:30.000','3894','93','2005-08-31 21:17:30.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15914','2005-08-23 17:49:26.000','747','557','2005-08-24 12:20:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15915','2005-08-23 17:52:01.000','3566','167','2005-08-24 20:40:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15916','2005-08-23 17:56:01.000','4580','327','2005-08-31 21:49:01.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15917','2005-08-23 17:57:28.000','2093','589','2005-08-29 20:03:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15918','2005-08-23 17:57:35.000','1456','262','2005-08-28 14:16:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15919','2005-08-23 18:01:31.000','1746','497','2005-08-24 16:27:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15920','2005-08-23 18:05:10.000','243','212','2005-08-26 18:09:10.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15921','2005-08-23 18:06:54.000','223','522','2005-08-30 20:19:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15922','2005-08-23 18:07:31.000','1702','263','2005-09-01 22:27:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15923','2005-08-23 18:08:19.000','1693','276','2005-08-26 18:06:19.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15924','2005-08-23 18:08:59.000','1114','541','2005-08-27 12:20:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15925','2005-08-23 18:15:06.000','3394','440','2005-08-26 18:09:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15926','2005-08-23 18:20:56.000','2231','151','2005-08-24 18:20:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15927','2005-08-23 18:23:11.000','2450','401','2005-08-24 15:09:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15928','2005-08-23 18:23:24.000','2086','75','2005-09-01 23:43:24.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15929','2005-08-23 18:23:30.000','1832','477','2005-08-27 17:04:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15930','2005-08-23 18:26:51.000','180','379','2005-08-31 16:12:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15931','2005-08-23 18:28:09.000','1128','237','2005-08-28 23:08:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15932','2005-08-23 18:31:40.000','4554','405','2005-08-24 16:30:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15933','2005-08-23 18:36:44.000','3493','176','2005-08-26 12:41:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15934','2005-08-23 18:40:41.000','994','216','2005-08-25 00:18:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15935','2005-08-23 18:41:11.000','907','361','2005-08-25 20:59:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15936','2005-08-23 18:43:11.000','1293','411','2005-08-26 00:19:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15937','2005-08-23 18:43:22.000','2882','194','2005-08-24 22:53:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15938','2005-08-23 18:43:31.000','2884','341','2005-08-31 00:26:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15939','2005-08-23 18:44:21.000','3209','382','2005-09-01 17:25:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15940','2005-08-23 18:45:06.000','1606','86','2005-08-30 13:00:06.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15941','2005-08-23 18:46:44.000','4304','424','2005-08-31 17:31:44.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15942','2005-08-23 18:48:40.000','1096','210','2005-09-01 18:39:40.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15943','2005-08-23 18:49:32.000','706','462','2005-08-27 19:20:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15944','2005-08-23 18:50:54.000','4559','348','2005-08-25 18:04:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15945','2005-08-23 18:51:41.000','3633','43','2005-08-28 18:42:41.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15946','2005-08-23 18:54:07.000','4549','561','2005-08-28 21:21:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15947','2005-08-23 18:54:32.000','1877','580','2005-08-24 22:39:32.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15948','2005-08-23 18:59:33.000','432','520','2005-08-31 13:02:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15949','2005-08-23 19:06:04.000','1199','386','2005-08-26 18:39:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15950','2005-08-23 19:09:39.000','1374','280','2005-08-31 17:03:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15951','2005-08-23 19:10:32.000','3018','446','2005-08-29 14:17:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15952','2005-08-23 19:11:29.000','1314','224','2005-08-28 14:41:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15953','2005-08-23 19:13:46.000','3727','540','2005-08-28 23:05:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15954','2005-08-23 19:14:07.000','576','460','2005-08-24 20:21:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15955','2005-08-23 19:19:06.000','2247','349','2005-08-31 23:34:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15956','2005-08-23 19:19:21.000','2763','354','2005-08-25 22:15:21.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15957','2005-08-23 19:21:22.000','74','418','2005-08-31 16:42:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15958','2005-08-23 19:22:36.000','4164','492','2005-08-30 01:03:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15959','2005-08-23 19:27:04.000','547','415','2005-08-24 15:24:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15960','2005-08-23 19:35:42.000','1497','431','2005-08-26 17:36:42.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15961','2005-08-23 19:35:42.000','4006','200','2005-08-30 22:52:42.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15962','2005-08-23 19:42:04.000','3491','160','2005-08-25 23:53:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15963','2005-08-23 19:42:46.000','3819','134','2005-08-25 22:12:46.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15964','2005-08-23 19:45:25.000','251','141','2005-08-26 22:43:25.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15965','2005-08-23 19:46:39.000','3449','509','2005-08-24 20:08:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15966','2006-02-14 15:16:03.000','4472','374',NULL,'1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15967','2005-08-23 19:50:06.000','321','257','2005-08-29 14:51:06.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15968','2005-08-23 19:51:29.000','3598','257','2005-08-24 15:07:29.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15969','2005-08-23 19:51:30.000','1807','327','2005-08-31 23:50:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15970','2005-08-23 19:54:24.000','4509','395','2005-08-24 18:07:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15971','2005-08-23 19:59:33.000','3456','187','2005-09-02 01:28:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15972','2005-08-23 20:00:30.000','4428','25','2005-08-30 00:25:30.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15973','2005-08-23 20:04:41.000','2766','343','2005-09-01 20:08:41.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15974','2005-08-23 20:06:04.000','3518','201','2005-08-27 17:33:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15975','2005-08-23 20:06:23.000','2723','174','2005-08-27 19:52:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15976','2005-08-23 20:07:08.000','835','227','2005-08-25 01:47:08.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15977','2005-08-23 20:07:10.000','1031','550','2005-09-01 22:12:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15978','2005-08-23 20:08:18.000','4444','536','2005-08-31 17:35:18.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15979','2005-08-23 20:08:26.000','3733','536','2005-08-26 19:19:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15980','2005-08-23 20:10:13.000','3365','196','2005-08-24 17:44:13.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15981','2005-08-23 20:12:17.000','2867','489','2005-08-30 20:43:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15982','2005-08-23 20:13:31.000','2920','370','2005-09-01 21:51:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15983','2005-08-23 20:13:38.000','3318','464','2005-08-30 18:42:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15984','2005-08-23 20:16:27.000','2011','495','2005-08-27 01:43:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15985','2005-08-23 20:20:23.000','2646','179','2005-08-26 20:55:23.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15986','2005-08-23 20:20:37.000','3472','226','2005-08-29 20:49:37.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15987','2005-08-23 20:22:17.000','3150','302','2005-08-31 21:46:17.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15988','2005-08-23 20:23:08.000','3932','400','2005-08-28 20:50:08.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15989','2005-08-23 20:24:36.000','38','96','2005-08-26 20:35:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15990','2005-08-23 20:25:11.000','3233','512','2005-08-25 15:01:11.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15991','2005-08-23 20:27:34.000','2078','203','2005-08-28 16:48:34.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15992','2005-08-23 20:28:32.000','3334','589','2005-08-24 21:35:32.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15993','2005-08-23 20:28:44.000','1638','12','2005-08-27 16:23:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15994','2005-08-23 20:29:10.000','438','595','2005-08-28 01:41:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15995','2005-08-23 20:29:56.000','1122','377','2005-08-30 18:09:56.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15996','2005-08-23 20:31:38.000','3098','151','2005-08-29 20:58:38.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15997','2005-08-23 20:40:31.000','2843','447','2005-08-26 19:47:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15998','2005-08-23 20:41:09.000','1229','545','2005-08-27 00:20:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('15999','2005-08-23 20:44:10.000','2584','377','2005-08-31 02:38:10.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16000','2005-08-23 20:44:36.000','282','71','2005-08-25 02:29:36.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16001','2005-08-23 20:45:53.000','245','108','2005-08-27 15:52:53.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16002','2005-08-23 20:47:12.000','2770','73','2005-08-27 23:07:12.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16003','2005-08-23 20:47:28.000','3413','577','2005-08-31 23:22:28.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16004','2005-08-23 20:53:20.000','2223','147','2005-08-31 15:15:20.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16005','2005-08-23 21:00:22.000','3265','466','2005-09-02 02:35:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16006','2005-08-23 21:01:09.000','240','533','2005-08-25 19:33:09.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16007','2005-08-23 21:02:43.000','3236','126','2005-08-30 23:37:43.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16008','2005-08-23 21:04:51.000','3273','189','2005-08-31 22:09:51.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16009','2005-08-23 21:07:59.000','3055','133','2005-08-29 16:54:59.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16010','2005-08-23 21:10:24.000','2539','173','2005-08-25 17:58:24.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16011','2005-08-23 21:11:33.000','1093','389','2005-08-31 17:51:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16012','2005-08-23 21:13:39.000','2421','80','2005-08-30 23:52:39.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16013','2005-08-23 21:17:17.000','561','462','2005-08-26 21:15:17.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16014','2005-08-23 21:18:31.000','3322','532','2005-08-31 17:28:31.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16015','2005-08-23 21:25:03.000','3113','50','2005-08-24 20:05:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16016','2005-08-23 21:26:35.000','3374','595','2005-08-28 16:06:35.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16017','2005-08-23 21:27:11.000','664','535','2005-08-24 23:22:11.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16018','2005-08-23 21:27:35.000','897','439','2005-08-30 00:36:35.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16019','2005-08-23 21:30:45.000','3093','278','2005-08-27 23:45:45.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16020','2005-08-23 21:34:33.000','277','311','2005-09-01 18:17:33.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16021','2005-08-23 21:37:59.000','3057','314','2005-08-31 01:52:59.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16022','2005-08-23 21:44:27.000','2925','504','2005-08-28 01:52:27.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16023','2005-08-23 21:45:02.000','2347','124','2005-08-24 21:28:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16024','2005-08-23 21:46:47.000','2910','473','2005-08-27 02:06:47.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16025','2005-08-23 21:48:54.000','1777','569','2005-08-24 22:05:54.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16026','2005-08-23 21:49:22.000','467','484','2005-08-27 00:47:22.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16027','2005-08-23 21:49:33.000','1724','160','2005-08-30 16:19:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16028','2005-08-23 21:52:56.000','2515','119','2005-08-30 18:16:56.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16029','2005-08-23 21:54:02.000','953','143','2005-08-29 23:55:02.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16030','2005-08-23 21:56:04.000','4161','137','2005-08-31 01:24:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16031','2005-08-23 21:59:26.000','1843','102','2005-08-29 20:15:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16032','2005-08-23 21:59:57.000','2527','447','2005-08-31 22:46:57.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16033','2005-08-23 22:06:15.000','760','226','2005-09-01 02:36:15.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16034','2005-08-23 22:06:34.000','655','502','2005-08-29 18:44:34.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16035','2005-08-23 22:08:04.000','549','37','2005-08-28 03:46:04.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16036','2005-08-23 22:12:44.000','1372','425','2005-08-25 17:48:44.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16037','2005-08-23 22:13:04.000','341','45','2005-09-01 02:48:04.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16038','2005-08-23 22:14:31.000','2612','172','2005-08-30 03:28:31.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16039','2005-08-23 22:18:51.000','545','78','2005-08-31 19:55:51.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16040','2005-08-23 22:19:33.000','3524','195','2005-09-02 02:19:33.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16041','2005-08-23 22:20:26.000','4116','121','2005-08-25 20:14:26.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16042','2005-08-23 22:20:40.000','629','131','2005-08-24 17:54:40.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16043','2005-08-23 22:21:03.000','3869','526','2005-08-31 03:09:03.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16044','2005-08-23 22:24:39.000','1312','468','2005-08-25 04:08:39.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16045','2005-08-23 22:25:26.000','772','14','2005-08-25 23:54:26.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16046','2005-08-23 22:26:47.000','4364','74','2005-08-27 18:02:47.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16047','2005-08-23 22:42:48.000','2088','114','2005-08-25 02:48:48.000','2','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16048','2005-08-23 22:43:07.000','2019','103','2005-08-31 21:33:07.000','1','2006-02-15 21:30:53.000') +; +Insert into rental + (rental_id,rental_date,inventory_id,customer_id,return_date,staff_id,last_update) +Values +('16049','2005-08-23 22:50:12.000','2666','393','2005-08-30 01:01:12.000','2','2006-02-15 21:30:53.000') +; +-- End of Script +-- +-- +-- Automatically generated by Advanced ETl Processor +-- http://www.etl-tools.com/ +-- table payment +-- Start of script +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1','1','1','76','2.99','2005-05-25 11:30:37.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2','1','1','573','0.99','2005-05-28 10:35:23.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3','1','1','1185','5.99','2005-06-15 00:54:12.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4','1','2','1422','0.99','2005-06-15 18:02:53.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5','1','2','1476','9.99','2005-06-15 21:08:46.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6','1','1','1725','4.99','2005-06-16 15:18:57.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7','1','1','2308','4.99','2005-06-18 08:41:48.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8','1','2','2363','0.99','2005-06-18 13:33:59.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9','1','1','3284','3.99','2005-06-21 06:24:45.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10','1','2','4526','5.99','2005-07-08 03:17:05.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11','1','1','4611','5.99','2005-07-08 07:33:56.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12','1','1','5244','4.99','2005-07-09 13:24:07.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13','1','1','5326','4.99','2005-07-09 16:38:01.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14','1','1','6163','7.99','2005-07-11 10:13:46.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15','1','2','7273','2.99','2005-07-27 11:31:22.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16','1','1','7841','4.99','2005-07-28 09:04:45.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('17','1','2','8033','4.99','2005-07-28 16:18:23.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('18','1','1','8074','0.99','2005-07-28 17:33:39.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('19','1','2','8116','0.99','2005-07-28 19:20:07.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('20','1','2','8326','2.99','2005-07-29 03:58:49.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('21','1','2','9571','2.99','2005-07-31 02:42:18.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('22','1','2','10437','4.99','2005-08-01 08:51:04.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('23','1','2','11299','3.99','2005-08-02 15:36:52.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('24','1','1','11367','0.99','2005-08-02 18:01:38.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('25','1','2','11824','4.99','2005-08-17 12:37:54.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('26','1','1','12250','0.99','2005-08-18 03:57:29.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('27','1','2','13068','0.99','2005-08-19 09:55:16.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('28','1','2','13176','2.99','2005-08-19 13:56:54.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('29','1','1','14762','0.99','2005-08-21 23:33:57.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('30','1','1','14825','1.99','2005-08-22 01:27:57.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('31','1','2','15298','2.99','2005-08-22 19:41:37.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('32','1','1','15315','5.99','2005-08-22 20:03:46.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('33','2','1','320','4.99','2005-05-27 00:09:24.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('34','2','1','2128','2.99','2005-06-17 20:54:58.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('35','2','1','5636','2.99','2005-07-10 06:31:24.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('36','2','1','5755','6.99','2005-07-10 12:38:56.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('37','2','2','7346','4.99','2005-07-27 14:30:42.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('38','2','1','7376','5.99','2005-07-27 15:23:02.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('39','2','2','7459','5.99','2005-07-27 18:40:20.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('40','2','2','8230','5.99','2005-07-29 00:12:59.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('41','2','1','8598','2.99','2005-07-29 12:56:59.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('42','2','2','8705','5.99','2005-07-29 17:14:29.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('43','2','1','9031','4.99','2005-07-30 06:06:10.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('44','2','2','9236','10.99','2005-07-30 13:47:43.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('45','2','2','9248','0.99','2005-07-30 14:14:11.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('46','2','2','9296','6.99','2005-07-30 16:21:13.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('47','2','2','9465','6.99','2005-07-30 22:39:53.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('48','2','1','10136','2.99','2005-07-31 21:58:56.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('49','2','1','10466','0.99','2005-08-01 09:45:26.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('50','2','1','10918','0.99','2005-08-02 02:10:56.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('51','2','1','11087','5.99','2005-08-02 07:41:41.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('52','2','1','11177','6.99','2005-08-02 10:43:48.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('53','2','2','11256','2.99','2005-08-02 13:44:53.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('54','2','1','11614','2.99','2005-08-17 03:52:18.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('55','2','1','12963','2.99','2005-08-19 06:26:04.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('56','2','1','14475','4.99','2005-08-21 13:24:32.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('57','2','2','14743','5.99','2005-08-21 22:41:56.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('58','2','2','15145','4.99','2005-08-22 13:53:04.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('59','2','2','15907','4.99','2005-08-23 17:39:35.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('60','3','1','435','1.99','2005-05-27 17:17:09.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('61','3','1','830','2.99','2005-05-29 22:43:55.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('62','3','1','1546','8.99','2005-06-16 01:34:05.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('63','3','1','1726','6.99','2005-06-16 15:19:10.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('64','3','2','1911','6.99','2005-06-17 05:15:15.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('65','3','1','2628','2.99','2005-06-19 08:34:53.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('66','3','1','4180','4.99','2005-07-07 10:23:25.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('67','3','1','4725','4.99','2005-07-08 12:47:11.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('68','3','1','7096','5.99','2005-07-27 04:54:42.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('69','3','2','7503','10.99','2005-07-27 20:23:12.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('70','3','2','7703','7.99','2005-07-28 03:59:21.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('71','3','2','7724','6.99','2005-07-28 04:46:30.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('72','3','1','7911','4.99','2005-07-28 11:46:45.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('73','3','2','8086','4.99','2005-07-28 18:17:14.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('74','3','1','8545','2.99','2005-07-29 11:07:04.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('75','3','1','9226','1.99','2005-07-30 13:31:20.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('76','3','2','9443','3.99','2005-07-30 21:45:46.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('77','3','1','9595','2.99','2005-07-31 03:27:58.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('78','3','2','9816','4.99','2005-07-31 11:32:58.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('79','3','2','10597','5.99','2005-08-01 14:19:48.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('80','3','2','12556','4.99','2005-08-18 14:49:55.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('81','3','1','13403','8.99','2005-08-19 22:18:07.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('82','3','2','13610','2.99','2005-08-20 06:14:12.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('83','3','2','14699','8.99','2005-08-21 20:50:48.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('84','3','2','15038','0.99','2005-08-22 09:37:27.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('85','3','1','15619','2.99','2005-08-23 07:10:14.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('86','4','1','1297','4.99','2005-06-15 09:31:28.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('87','4','1','1633','0.99','2005-06-16 08:08:40.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('88','4','2','1707','2.99','2005-06-16 14:01:27.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('89','4','2','1735','0.99','2005-06-16 15:51:52.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('90','4','2','2043','0.99','2005-06-17 14:31:12.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('91','4','1','2642','5.99','2005-06-19 09:39:01.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('92','4','1','7660','2.99','2005-07-28 02:10:10.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('93','4','2','7718','2.99','2005-07-28 04:37:59.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('94','4','1','8741','3.99','2005-07-29 18:44:57.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('95','4','1','9100','5.99','2005-07-30 08:46:09.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('96','4','1','9371','5.99','2005-07-30 18:58:00.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('97','4','2','11069','0.99','2005-08-02 07:09:34.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('98','4','1','11110','2.99','2005-08-02 08:20:31.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('99','4','2','11529','4.99','2005-08-17 00:28:01.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('100','4','1','12151','2.99','2005-08-18 00:14:03.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('101','4','2','12294','8.99','2005-08-18 05:14:44.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('102','4','2','12856','1.99','2005-08-19 02:19:13.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('103','4','1','13704','2.99','2005-08-20 09:32:04.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('104','4','1','13807','6.99','2005-08-20 12:55:40.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('105','4','2','14225','4.99','2005-08-21 04:53:37.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('106','4','1','15147','2.99','2005-08-22 13:58:23.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('107','4','2','15635','1.99','2005-08-23 07:43:00.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('108','5','1','731','0.99','2005-05-29 07:25:16.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('109','5','1','1085','6.99','2005-05-31 11:15:43.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('110','5','1','1142','1.99','2005-05-31 19:46:38.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('111','5','1','1502','3.99','2005-06-15 22:03:14.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('112','5','2','1631','2.99','2005-06-16 08:01:02.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('113','5','2','2063','4.99','2005-06-17 15:56:53.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('114','5','2','2570','2.99','2005-06-19 04:20:13.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('115','5','2','3126','4.99','2005-06-20 18:38:22.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('116','5','2','3677','4.99','2005-07-06 09:11:58.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('117','5','2','4889','2.99','2005-07-08 20:04:43.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('118','5','1','5016','4.99','2005-07-09 01:57:57.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('119','5','2','5118','5.99','2005-07-09 07:13:52.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('120','5','2','5156','1.99','2005-07-09 08:51:42.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('121','5','2','5721','0.99','2005-07-10 11:09:35.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('122','5','1','6042','8.99','2005-07-11 03:17:04.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('123','5','1','6663','3.99','2005-07-12 11:27:35.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('124','5','2','6685','4.99','2005-07-12 12:16:28.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('125','5','2','7293','0.99','2005-07-27 12:37:28.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('126','5','2','7652','0.99','2005-07-28 01:50:29.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('127','5','2','7829','3.99','2005-07-28 08:43:39.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('128','5','1','8263','2.99','2005-07-29 01:11:23.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('129','5','1','8978','1.99','2005-07-30 04:14:28.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('130','5','1','9493','4.99','2005-07-30 23:52:30.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('131','5','1','9888','3.99','2005-07-31 14:00:53.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('132','5','2','10609','4.99','2005-08-01 14:48:45.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('133','5','1','10625','0.99','2005-08-01 15:27:10.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('134','5','2','11001','4.99','2005-08-02 04:56:45.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('135','5','1','11179','4.99','2005-08-02 10:50:06.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('136','5','2','11930','3.99','2005-08-17 16:28:53.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('137','5','1','12145','9.99','2005-08-18 00:10:04.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('138','5','1','12797','2.99','2005-08-19 00:24:08.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('139','5','1','13063','1.99','2005-08-19 09:45:41.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('140','5','2','13877','0.99','2005-08-20 15:16:18.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('141','5','2','14053','6.99','2005-08-20 22:13:59.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('142','5','1','14430','6.99','2005-08-21 11:31:11.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('143','5','2','14494','2.99','2005-08-21 14:02:50.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('144','5','2','15232','0.99','2005-08-22 17:37:02.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('145','5','2','13209','0.99','2006-02-14 15:16:03.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('146','6','2','57','4.99','2005-05-25 08:43:32.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('147','6','1','577','2.99','2005-05-28 11:09:14.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('148','6','2','916','0.99','2005-05-30 11:25:01.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('149','6','1','1575','3.99','2005-06-16 03:41:38.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('150','6','2','1841','2.99','2005-06-16 23:44:13.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('151','6','1','1966','0.99','2005-06-17 09:19:45.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('152','6','1','2345','0.99','2005-06-18 12:03:23.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('153','6','2','3983','0.99','2005-07-06 23:14:21.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('154','6','2','4278','2.99','2005-07-07 14:53:24.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('155','6','1','5553','0.99','2005-07-10 03:03:35.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('156','6','2','6211','5.99','2005-07-11 12:39:01.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('157','6','1','6248','7.99','2005-07-11 15:01:54.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('158','6','2','6686','0.99','2005-07-12 12:18:38.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('159','6','2','7099','2.99','2005-07-27 05:03:44.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('160','6','2','7136','2.99','2005-07-27 06:38:25.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('161','6','1','8101','0.99','2005-07-28 18:47:23.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('162','6','1','10271','2.99','2005-08-01 03:13:39.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('163','6','1','11023','2.99','2005-08-02 05:36:38.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('164','6','1','11398','3.99','2005-08-02 18:55:15.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('165','6','1','11591','6.99','2005-08-17 02:29:41.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('166','6','1','11727','0.99','2005-08-17 08:12:20.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('167','6','1','11853','0.99','2005-08-17 13:39:32.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('168','6','2','12254','2.99','2005-08-18 04:05:29.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('169','6','2','13451','6.99','2005-08-20 00:18:25.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('170','6','1','14329','7.99','2005-08-21 08:22:56.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('171','6','1','14377','4.99','2005-08-21 09:49:28.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('172','6','1','15509','5.99','2005-08-23 02:51:24.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('173','6','2','15603','0.99','2005-08-23 06:41:32.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('174','7','2','46','5.99','2005-05-25 06:04:08.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('175','7','2','117','0.99','2005-05-25 19:30:46.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('176','7','2','748','2.99','2005-05-29 09:27:00.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('177','7','1','975','4.99','2005-05-30 21:07:15.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('178','7','1','1063','5.99','2005-05-31 08:44:29.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('179','7','2','1810','0.99','2005-06-16 21:06:00.000','2006-02-15 22:12:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('180','7','1','2250','2.99','2005-06-18 05:03:36.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('181','7','1','2709','0.99','2005-06-19 14:00:26.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('182','7','1','2888','4.99','2005-06-20 01:50:56.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('183','7','1','3007','0.99','2005-06-20 10:11:53.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('184','7','2','3639','5.99','2005-07-06 07:09:17.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('185','7','2','4238','2.99','2005-07-07 13:22:20.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('186','7','2','4787','5.99','2005-07-08 16:16:04.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('187','7','1','4856','4.99','2005-07-08 18:47:38.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('188','7','1','5441','8.99','2005-07-09 21:52:05.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('189','7','1','5921','7.99','2005-07-10 21:35:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('190','7','1','6174','1.99','2005-07-11 10:36:28.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('191','7','1','6295','2.99','2005-07-11 17:30:58.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('192','7','2','6761','3.99','2005-07-12 15:17:42.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('193','7','2','8422','5.99','2005-07-29 07:02:55.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('194','7','2','9624','7.99','2005-07-31 04:30:03.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('195','7','2','10330','6.99','2005-08-01 04:57:04.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('196','7','1','10423','5.99','2005-08-01 08:19:53.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('197','7','1','10514','4.99','2005-08-01 11:39:26.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('198','7','2','10644','4.99','2005-08-01 15:52:00.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('199','7','2','10989','3.99','2005-08-02 04:40:54.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('200','7','2','11542','7.99','2005-08-17 00:51:32.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('201','7','1','12367','8.99','2005-08-18 07:57:14.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('202','7','1','12730','2.99','2005-08-18 21:55:01.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('203','7','2','13373','2.99','2005-08-19 21:23:31.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('204','7','1','13476','2.99','2005-08-20 01:06:04.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('205','7','1','13594','0.99','2005-08-20 05:53:31.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('206','7','1','14222','5.99','2005-08-21 04:49:48.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('207','8','2','866','6.99','2005-05-30 03:43:54.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('208','8','2','1305','2.99','2005-06-15 09:59:16.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('209','8','1','2095','5.99','2005-06-17 18:21:35.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('210','8','2','3114','4.99','2005-06-20 17:57:47.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('211','8','1','3475','5.99','2005-07-05 23:01:21.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('212','8','1','4003','0.99','2005-07-07 00:09:02.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('213','8','2','4175','2.99','2005-07-07 10:02:03.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('214','8','2','4409','3.99','2005-07-07 21:47:29.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('215','8','1','4503','3.99','2005-07-08 02:17:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('216','8','1','5300','2.99','2005-07-09 15:40:46.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('217','8','2','5341','2.99','2005-07-09 17:13:23.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('218','8','1','6375','4.99','2005-07-11 21:39:46.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('219','8','1','6647','0.99','2005-07-12 10:43:53.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('220','8','1','8809','1.99','2005-07-29 21:42:49.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('221','8','2','9629','2.99','2005-07-31 04:54:43.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('222','8','2','10141','0.99','2005-07-31 22:08:29.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('223','8','2','10561','2.99','2005-08-01 13:05:35.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('224','8','1','11232','9.99','2005-08-02 13:04:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('225','8','2','11284','2.99','2005-08-02 14:42:45.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('226','8','1','12613','2.99','2005-08-18 17:16:01.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('227','8','1','14114','0.99','2005-08-21 01:07:11.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('228','8','1','15374','7.99','2005-08-22 22:09:09.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('229','8','1','15764','2.99','2005-08-23 13:05:10.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('230','8','1','15805','4.99','2005-08-23 14:31:19.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('231','9','2','350','4.99','2005-05-27 05:01:28.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('232','9','2','877','0.99','2005-05-30 05:48:59.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('233','9','2','1075','4.99','2005-05-31 10:13:34.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('234','9','2','3142','7.99','2005-06-20 19:59:28.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('235','9','2','3262','4.99','2005-06-21 04:08:43.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('236','9','1','4454','2.99','2005-07-07 23:37:00.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('237','9','2','4748','0.99','2005-07-08 13:59:38.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('238','9','1','4796','1.99','2005-07-08 16:35:44.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('239','9','1','5659','2.99','2005-07-10 07:45:40.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('240','9','2','6019','4.99','2005-07-11 02:08:29.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('241','9','1','6165','5.99','2005-07-11 10:17:29.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('242','9','2','7616','0.99','2005-07-28 00:15:26.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('243','9','1','7801','2.99','2005-07-28 07:51:56.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('244','9','1','9043','4.99','2005-07-30 06:34:07.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('245','9','1','10451','0.99','2005-08-01 09:11:25.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('246','9','1','10454','4.99','2005-08-01 09:14:00.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('247','9','2','11400','5.99','2005-08-02 19:00:52.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('248','9','1','11556','0.99','2005-08-17 01:11:53.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('249','9','1','12228','2.99','2005-08-18 03:08:10.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('250','9','1','12309','2.99','2005-08-18 05:58:40.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('251','9','2','12652','4.99','2005-08-18 18:48:58.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('252','9','2','14489','7.99','2005-08-21 13:53:59.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('253','9','1','15813','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('254','10','2','1140','4.99','2005-05-31 19:36:30.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('255','10','1','1801','4.99','2005-06-16 20:21:53.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('256','10','1','1995','4.99','2005-06-17 11:11:14.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('257','10','2','2222','3.99','2005-06-18 03:26:23.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('258','10','1','2814','0.99','2005-06-19 20:01:59.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('259','10','1','2865','0.99','2005-06-20 00:00:55.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('260','10','2','3790','3.99','2005-07-06 14:13:45.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('261','10','2','4042','4.99','2005-07-07 03:06:40.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('262','10','1','4255','1.99','2005-07-07 14:14:13.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('263','10','1','5038','7.99','2005-07-09 03:12:52.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('264','10','2','5068','2.99','2005-07-09 04:53:18.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('265','10','1','5444','0.99','2005-07-09 21:58:57.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('266','10','1','5905','2.99','2005-07-10 20:41:09.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('267','10','1','7738','2.99','2005-07-28 05:21:42.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('268','10','2','8001','6.99','2005-07-28 15:10:55.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('269','10','2','8188','4.99','2005-07-28 22:34:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('270','10','1','9935','4.99','2005-07-31 15:27:07.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('271','10','2','10671','8.99','2005-08-01 17:09:59.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('272','10','2','11289','2.99','2005-08-02 14:55:00.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('273','10','1','11405','0.99','2005-08-02 19:13:39.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('274','10','2','12031','2.99','2005-08-17 20:11:35.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('275','10','2','12400','2.99','2005-08-18 09:19:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('276','10','2','13316','4.99','2005-08-19 19:23:30.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('277','10','2','13917','2.99','2005-08-20 16:43:28.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('278','10','1','15370','5.99','2005-08-22 21:59:29.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('279','11','1','987','6.99','2005-05-30 22:59:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('280','11','1','1470','6.99','2005-06-15 20:53:07.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('281','11','1','1939','7.99','2005-06-17 07:26:45.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('282','11','1','3192','0.99','2005-06-20 23:49:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('283','11','2','4608','2.99','2005-07-08 07:19:11.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('284','11','1','4943','4.99','2005-07-08 22:43:05.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('285','11','2','5835','5.99','2005-07-10 16:44:58.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('286','11','2','6146','6.99','2005-07-11 09:09:59.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('287','11','1','7314','4.99','2005-07-27 13:13:32.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('288','11','1','8014','4.99','2005-07-28 15:32:07.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('289','11','2','8100','2.99','2005-07-28 18:43:11.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('290','11','2','8447','1.99','2005-07-29 07:38:14.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('291','11','1','8715','0.99','2005-07-29 17:33:45.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('292','11','1','8950','9.99','2005-07-30 03:17:13.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('293','11','2','9292','6.99','2005-07-30 16:08:21.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('294','11','1','10812','4.99','2005-08-01 22:41:16.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('295','11','2','11166','6.99','2005-08-02 10:14:58.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('296','11','2','11502','0.99','2005-08-16 23:06:30.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('297','11','2','12015','5.99','2005-08-17 19:32:44.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('298','11','2','13572','0.99','2005-08-20 05:07:27.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('299','11','1','13790','4.99','2005-08-20 12:17:27.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('300','11','1','15120','0.99','2005-08-22 12:42:47.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('301','11','2','15240','2.99','2005-08-22 17:46:41.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('302','11','1','11646','0.99','2006-02-14 15:16:03.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('303','12','1','988','4.99','2005-05-30 23:08:03.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('304','12','1','1084','4.99','2005-05-31 11:10:17.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('305','12','2','1752','5.99','2005-06-16 17:02:55.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('306','12','2','2434','5.99','2005-06-18 18:11:51.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('307','12','2','2500','5.99','2005-06-18 23:07:12.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('308','12','2','2623','4.99','2005-06-19 08:11:51.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('309','12','2','3135','2.99','2005-06-20 19:33:52.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('310','12','1','3411','0.99','2005-06-21 16:31:27.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('311','12','1','3870','3.99','2005-07-06 17:57:54.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('312','12','1','5071','0.99','2005-07-09 05:00:39.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('313','12','1','5074','0.99','2005-07-09 05:06:24.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('314','12','2','5111','0.99','2005-07-09 07:02:19.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('315','12','2','5242','3.99','2005-07-09 13:20:25.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('316','12','1','6773','2.99','2005-07-12 15:55:39.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('317','12','2','7008','0.99','2005-07-27 01:44:03.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('318','12','2','7279','0.99','2005-07-27 11:50:47.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('319','12','2','8985','0.99','2005-07-30 04:34:51.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('320','12','2','9166','4.99','2005-07-30 11:26:28.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('321','12','2','9238','5.99','2005-07-30 13:49:43.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('322','12','1','9627','5.99','2005-07-31 04:42:46.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('323','12','2','9708','5.99','2005-07-31 07:45:33.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('324','12','2','10392','10.99','2005-08-01 06:50:26.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('325','12','2','11497','0.99','2005-08-16 22:52:30.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('326','12','1','12604','4.99','2005-08-18 16:58:48.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('327','12','2','13519','0.99','2005-08-20 02:37:07.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('328','12','2','13895','2.99','2005-08-20 15:58:28.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('329','12','2','14240','4.99','2005-08-21 05:19:39.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('330','12','1','15993','0.99','2005-08-23 20:28:44.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('331','13','1','1933','2.99','2005-06-17 06:54:42.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('332','13','1','2209','4.99','2005-06-18 02:24:01.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('333','13','1','2952','2.99','2005-06-20 06:26:57.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('334','13','1','3047','8.99','2005-06-20 12:45:33.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('335','13','2','3946','2.99','2005-07-06 21:39:24.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('336','13','1','6118','8.99','2005-07-11 07:43:08.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('337','13','1','6568','2.99','2005-07-12 05:45:47.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('338','13','1','6870','0.99','2005-07-12 20:13:45.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('339','13','1','6897','2.99','2005-07-12 21:30:41.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('340','13','1','7916','2.99','2005-07-28 11:49:53.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('341','13','1','8277','2.99','2005-07-29 01:38:53.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('342','13','2','8831','11.99','2005-07-29 22:37:41.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('343','13','2','9260','9.99','2005-07-30 14:38:22.000','2006-02-15 22:12:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('344','13','2','9434','0.99','2005-07-30 21:29:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('345','13','1','9664','0.99','2005-07-31 06:12:08.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('346','13','1','9736','7.99','2005-07-31 08:58:40.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('347','13','1','10003','4.99','2005-07-31 17:48:51.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('348','13','1','11292','4.99','2005-08-02 14:58:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('349','13','2','11315','0.99','2005-08-02 16:05:17.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('350','13','2','11761','5.99','2005-08-17 09:44:59.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('351','13','2','12918','7.99','2005-08-19 04:31:36.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('352','13','2','13096','4.99','2005-08-19 10:49:03.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('353','13','2','13213','0.99','2005-08-19 15:25:48.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('354','13','1','13456','0.99','2005-08-20 00:33:19.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('355','13','1','14252','9.99','2005-08-21 05:44:07.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('356','13','2','14545','7.99','2005-08-21 15:44:23.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('357','13','1','15338','4.99','2005-08-22 20:51:24.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('358','14','1','151','0.99','2005-05-26 00:37:28.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('359','14','1','346','9.99','2005-05-27 04:34:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('360','14','1','525','5.99','2005-05-28 04:25:33.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('361','14','1','671','2.99','2005-05-28 22:04:30.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('362','14','2','815','0.99','2005-05-29 20:24:28.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('363','14','2','1360','4.99','2005-06-15 13:32:15.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('364','14','1','3707','2.99','2005-07-06 10:21:49.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('365','14','1','4952','0.99','2005-07-08 23:00:07.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('366','14','1','5104','0.99','2005-07-09 06:37:07.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('367','14','2','5317','7.99','2005-07-09 16:10:25.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('368','14','1','5383','4.99','2005-07-09 19:14:32.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('369','14','1','5565','7.99','2005-07-10 03:29:48.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('370','14','1','8035','6.99','2005-07-28 16:23:01.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('371','14','1','8042','0.99','2005-07-28 16:45:11.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('372','14','1','8548','3.99','2005-07-29 11:11:33.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('373','14','2','8836','4.99','2005-07-29 22:46:08.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('374','14','2','9438','4.99','2005-07-30 21:36:15.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('375','14','1','9592','2.99','2005-07-31 03:21:16.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('376','14','1','10348','2.99','2005-08-01 05:23:00.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('377','14','2','10526','6.99','2005-08-01 11:55:33.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('378','14','1','11480','4.99','2005-08-02 22:18:24.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('379','14','2','11528','3.99','2005-08-17 00:27:23.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('380','14','1','12668','2.99','2005-08-18 19:16:47.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('381','14','1','13757','4.99','2005-08-20 11:20:12.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('382','14','2','15015','6.99','2005-08-22 08:43:50.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('383','14','1','15373','0.99','2005-08-22 22:08:11.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('384','14','1','16045','0.99','2005-08-23 22:25:26.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('385','14','1','13780','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('386','15','1','2486','2.99','2005-06-18 21:26:56.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('387','15','1','2937','5.99','2005-06-20 05:15:37.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('388','15','2','3182','0.99','2005-06-20 22:52:18.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('389','15','1','3550','7.99','2005-07-06 02:29:21.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('390','15','1','4127','5.99','2005-07-07 07:26:19.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('391','15','1','5717','2.99','2005-07-10 11:02:03.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('392','15','2','5975','2.99','2005-07-11 00:14:19.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('393','15','1','7105','4.99','2005-07-27 05:15:37.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('394','15','1','8193','0.99','2005-07-28 22:50:50.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('395','15','2','8615','6.99','2005-07-29 13:36:01.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('396','15','2','8927','4.99','2005-07-30 02:13:31.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('397','15','1','9987','2.99','2005-07-31 17:22:35.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('398','15','1','11118','2.99','2005-08-02 08:44:18.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('399','15','1','11141','2.99','2005-08-02 09:29:11.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('400','15','2','11307','2.99','2005-08-02 15:48:08.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('401','15','2','11341','2.99','2005-08-02 17:09:24.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('402','15','1','11922','7.99','2005-08-17 16:20:37.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('403','15','2','12272','2.99','2005-08-18 04:39:10.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('404','15','2','12551','2.99','2005-08-18 14:46:26.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('405','15','1','12635','2.99','2005-08-18 18:00:23.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('406','15','2','13339','8.99','2005-08-19 20:18:36.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('407','15','1','13393','5.99','2005-08-19 22:03:46.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('408','15','2','13503','5.99','2005-08-20 02:00:33.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('409','15','1','13541','4.99','2005-08-20 03:41:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('410','15','2','13677','3.99','2005-08-20 08:34:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('411','15','2','14569','0.99','2005-08-21 16:31:22.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('412','15','2','14776','4.99','2005-08-21 23:53:35.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('413','15','2','14872','8.99','2005-08-22 03:23:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('414','15','1','15178','0.99','2005-08-22 15:36:04.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('415','15','1','15897','4.99','2005-08-23 17:12:31.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('416','15','1','13798','3.98','2006-02-14 15:16:03.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('417','15','2','13968','0','2006-02-14 15:16:03.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('418','16','1','335','3.99','2005-05-27 03:07:10.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('419','16','1','593','2.99','2005-05-28 13:33:23.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('420','16','2','887','0.99','2005-05-30 07:10:00.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('421','16','1','1017','2.99','2005-05-31 02:53:36.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('422','16','2','1934','6.99','2005-06-17 07:04:57.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('423','16','1','1944','7.99','2005-06-17 07:50:53.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('424','16','1',NULL,'1.99','2005-06-18 04:56:12.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('425','16','1','2960','7.99','2005-06-20 07:10:09.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('426','16','2','3348','0.99','2005-06-21 11:16:42.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('427','16','1','3548','0.99','2005-07-06 02:23:39.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('428','16','2','4219','2.99','2005-07-07 12:11:22.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('429','16','2','4263','3.99','2005-07-07 14:24:44.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('430','16','2','4517','4.99','2005-07-08 02:45:19.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('431','16','1','6100','4.99','2005-07-11 06:40:31.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('432','16','2','7489','0.99','2005-07-27 19:39:38.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('433','16','2','7552','2.99','2005-07-27 22:03:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('434','16','2','8452','5.99','2005-07-29 07:45:00.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('435','16','2','9158','0.99','2005-07-30 11:12:03.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('436','16','2','9610','5.99','2005-07-31 03:54:05.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('437','16','2','10687','2.99','2005-08-01 17:53:02.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('438','16','2','10727','2.99','2005-08-01 19:15:08.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('439','16','2','11308','0.99','2005-08-02 15:50:44.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('440','16','2','12104','2.99','2005-08-17 22:53:00.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('441','16','1','12358','4.99','2005-08-18 07:41:43.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('442','16','1','12577','7.99','2005-08-18 15:39:46.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('443','16','2','13151','4.99','2005-08-19 13:08:23.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('444','16','1','13391','4.99','2005-08-19 22:01:42.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('445','16','1','13480','6.99','2005-08-20 01:10:27.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('446','16','1','14511','8.99','2005-08-21 14:45:34.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('447','17','2','287','2.99','2005-05-26 19:44:54.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('448','17','1','580','2.99','2005-05-28 11:19:53.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('449','17','2','884','4.99','2005-05-30 06:41:32.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('450','17','2','2175','5.99','2005-06-18 00:17:58.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('451','17','1','2684','8.99','2005-06-19 12:29:08.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('452','17','2','3269','5.99','2005-06-21 05:06:30.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('453','17','1','5714','3.99','2005-07-10 10:46:57.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('454','17','1','5883','3.99','2005-07-10 19:25:21.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('455','17','2','6884','1.99','2005-07-12 20:52:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('456','17','2','8076','8.99','2005-07-28 17:45:58.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('457','17','1','8213','2.99','2005-07-28 23:37:33.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('458','17','2','9092','8.99','2005-07-30 08:30:56.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('459','17','1','9138','2.99','2005-07-30 10:11:52.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('460','17','2','9382','8.99','2005-07-30 19:23:44.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('461','17','1','9489','0.99','2005-07-30 23:43:32.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('462','17','2','11990','4.99','2005-08-17 18:26:22.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('463','17','1','13732','2.99','2005-08-20 10:24:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('464','17','1','14040','2.99','2005-08-20 21:43:44.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('465','17','2','14326','2.99','2005-08-21 08:15:41.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('466','17','1','14346','2.99','2005-08-21 08:42:26.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('467','17','2','15752','5.99','2005-08-23 12:41:38.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('468','18','1','50','2.99','2005-05-25 06:44:53.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('469','18','1','116','4.99','2005-05-25 19:27:51.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('470','18','1','692','4.99','2005-05-29 01:32:10.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('471','18','2','1451','5.99','2005-06-15 19:30:18.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('472','18','2','1783','4.99','2005-06-16 19:23:23.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('473','18','2','2112','5.99','2005-06-17 19:52:42.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('474','18','1','2990','8.99','2005-06-20 09:02:51.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('475','18','2','4672','3.99','2005-07-08 10:15:38.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('476','18','2','4724','3.99','2005-07-08 12:46:30.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('477','18','2','4923','3.99','2005-07-08 21:44:39.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('478','18','2','6128','2.99','2005-07-11 08:15:08.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('479','18','1','6846','0.99','2005-07-12 19:20:45.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('480','18','2','8122','2.99','2005-07-28 19:27:37.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('481','18','1','8555','4.99','2005-07-29 11:18:01.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('482','18','1','9036','4.99','2005-07-30 06:18:38.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('483','18','2','9114','4.99','2005-07-30 09:13:21.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('484','18','1','10682','4.99','2005-08-01 17:32:53.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('485','18','2','10721','1.99','2005-08-01 19:05:18.000','2006-02-15 22:12:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('486','18','2','11094','4.99','2005-08-02 08:03:02.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('487','18','2','11439','4.99','2005-08-02 20:22:45.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('488','18','2','12333','0.99','2005-08-18 06:51:39.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('489','18','2','13490','0.99','2005-08-20 01:29:29.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('490','19','2','18','0.99','2005-05-25 01:10:47.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('491','19','2','110','9.99','2005-05-25 18:43:49.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('492','19','1','179','6.99','2005-05-26 04:26:06.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('493','19','1','337','2.99','2005-05-27 03:22:30.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('494','19','2','591','2.99','2005-05-28 13:11:04.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('495','19','2','696','2.99','2005-05-29 01:59:10.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('496','19','1','2657','2.99','2005-06-19 10:42:59.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('497','19','1','2848','2.99','2005-06-19 22:55:37.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('498','19','2','3423','2.99','2005-06-21 17:38:02.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('499','19','2','3549','4.99','2005-07-06 02:24:55.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('500','19','2','6495','4.99','2005-07-12 02:57:02.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('501','19','1','9157','5.99','2005-07-30 11:06:23.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('502','19','1','9256','0.99','2005-07-30 14:29:29.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('503','19','2','10077','9.99','2005-07-31 20:01:06.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('504','19','1','10176','7.99','2005-07-31 23:40:35.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('505','19','2','11508','8.99','2005-08-16 23:27:36.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('506','19','1','11869','5.99','2005-08-17 14:10:22.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('507','19','1','12211','9.99','2005-08-18 02:31:18.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('508','19','2','12357','2.99','2005-08-18 07:40:52.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('509','19','1','13718','8.99','2005-08-20 09:53:44.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('510','19','2','13804','8.99','2005-08-20 12:46:32.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('511','19','1','14101','4.99','2005-08-21 00:33:03.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('512','19','1','15047','2.99','2005-08-22 09:57:16.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('513','19','2','15529','0.99','2005-08-23 03:46:47.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('514','20','2','202','2.99','2005-05-26 07:27:36.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('515','20','2','497','6.99','2005-05-28 00:54:39.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('516','20','2','546','1.99','2005-05-28 07:16:25.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('517','20','2','1558','0.99','2005-06-16 02:33:53.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('518','20','2','2136','3.99','2005-06-17 21:16:41.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('519','20','2','2343','4.99','2005-06-18 11:46:26.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('520','20','1','3350','4.99','2005-06-21 11:21:38.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('521','20','2','4011','3.99','2005-07-07 00:48:25.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('522','20','1','4407','2.99','2005-07-07 21:39:45.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('523','20','1','5718','2.99','2005-07-10 11:03:20.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('524','20','1','6254','2.99','2005-07-11 15:10:18.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('525','20','2','6267','6.99','2005-07-11 15:53:00.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('526','20','2','7217','4.99','2005-07-27 09:31:44.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('527','20','2','7864','5.99','2005-07-28 10:06:10.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('528','20','2','8127','2.99','2005-07-28 19:45:19.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('529','20','2','9075','4.99','2005-07-30 07:55:14.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('530','20','2','9468','3.99','2005-07-30 22:53:52.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('531','20','2','10284','4.99','2005-08-01 03:33:19.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('532','20','1','10616','7.99','2005-08-01 14:59:50.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('533','20','1','10954','1.99','2005-08-02 03:30:24.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('534','20','1','11821','0.99','2005-08-17 12:27:55.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('535','20','1','12180','0.99','2005-08-18 01:28:15.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('536','20','2','13036','4.99','2005-08-19 08:48:37.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('537','20','1','13137','4.99','2005-08-19 12:26:32.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('538','20','2','13317','2.99','2005-08-19 19:25:42.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('539','20','2','14613','2.99','2005-08-21 18:03:20.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('540','20','2','15057','6.99','2005-08-22 10:19:58.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('541','20','1','15161','1.99','2005-08-22 14:37:22.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('542','20','2','15248','0.99','2005-08-22 17:53:06.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('543','20','1','15460','2.99','2005-08-23 01:10:42.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('544','21','1','260','3.99','2005-05-26 15:42:20.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('545','21','2','463','3.99','2005-05-27 20:11:47.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('546','21','1','570','0.99','2005-05-28 10:15:04.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('547','21','2','2235','7.99','2005-06-18 04:08:50.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('548','21','1','2268','4.99','2005-06-18 06:13:41.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('549','21','1','2393','2.99','2005-06-18 15:37:55.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('550','21','2','2830','4.99','2005-06-19 21:14:33.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('551','21','1','3212','10.99','2005-06-21 01:04:35.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('552','21','2','5107','4.99','2005-07-09 06:42:32.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('553','21','1','5772','3.99','2005-07-10 13:27:40.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('554','21','1','5961','2.99','2005-07-10 23:43:23.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('555','21','2','6943','1.99','2005-07-26 23:28:13.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('556','21','1','7994','0.99','2005-07-28 14:56:54.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('557','21','2','8196','6.99','2005-07-28 22:56:11.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('558','21','2','8862','2.99','2005-07-29 23:49:23.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('559','21','2','9149','0.99','2005-07-30 10:45:12.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('560','21','1','9699','5.99','2005-07-31 07:29:25.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('561','21','2','10570','4.99','2005-08-01 13:23:06.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('562','21','1','10734','0.99','2005-08-01 19:28:47.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('563','21','2','11072','0.99','2005-08-02 07:10:57.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('564','21','2','11970','0.99','2005-08-17 17:53:09.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('565','21','2','12131','2.99','2005-08-17 23:34:16.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('566','21','2','12660','4.99','2005-08-18 19:07:23.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('567','21','1','12774','6.99','2005-08-18 23:34:22.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('568','21','1','13381','2.99','2005-08-19 21:37:57.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('569','21','2','13399','4.99','2005-08-19 22:09:28.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('570','21','1','13411','4.99','2005-08-19 22:43:38.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('571','21','1','13463','8.99','2005-08-20 00:50:54.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('572','21','1','13699','9.99','2005-08-20 09:26:14.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('573','21','1','13740','4.99','2005-08-20 10:48:43.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('574','21','2','14077','8.99','2005-08-20 23:24:07.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('575','21','2','14161','2.99','2005-08-21 02:51:59.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('576','21','2','14446','2.99','2005-08-21 12:10:41.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('577','21','1','14869','4.99','2005-08-22 03:20:26.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('578','21','1','14933','2.99','2006-02-14 15:16:03.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('579','22','1','370','4.99','2005-05-27 07:49:43.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('580','22','1','556','4.99','2005-05-28 08:31:36.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('581','22','2','820','8.99','2005-05-29 21:07:22.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('582','22','1','3419','2.99','2005-06-21 17:18:01.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('583','22','2','4215','2.99','2005-07-07 12:00:52.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('584','22','1','5294','6.99','2005-07-09 15:23:42.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('585','22','1','5815','2.99','2005-07-10 15:48:19.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('586','22','1','7087','4.99','2005-07-27 04:42:08.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('587','22','1','7705','7.99','2005-07-28 04:02:58.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('588','22','2','9410','0.99','2005-07-30 20:38:05.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('589','22','1','9580','4.99','2005-07-31 03:01:11.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('590','22','1','12023','5.99','2005-08-17 19:54:54.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('591','22','1','12124','2.99','2005-08-17 23:22:46.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('592','22','2','12809','0.99','2005-08-19 00:42:24.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('593','22','2','13060','9.99','2005-08-19 09:43:25.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('594','22','1','14056','2.99','2005-08-20 22:18:53.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('595','22','1','14564','6.99','2005-08-21 16:24:43.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('596','22','1','15134','7.99','2005-08-22 13:18:25.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('597','22','1','15589','6.99','2005-08-23 06:03:31.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('598','22','1','15658','4.99','2005-08-23 08:48:43.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('599','22','1','15793','4.99','2005-08-23 14:06:19.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('600','22','1','12222','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('601','23','1','129','8.99','2005-05-25 21:20:03.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('602','23','1','654','2.99','2005-05-28 20:15:30.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('603','23','2','1090','0.99','2005-05-31 12:03:44.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('604','23','1','2753','1.99','2005-06-19 16:44:35.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('605','23','1','2827','0.99','2005-06-19 20:50:01.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('606','23','1','3015','5.99','2005-06-20 10:48:56.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('607','23','1','3055','4.99','2005-06-20 13:19:58.000','2006-02-15 22:12:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('608','23','1','3461','2.99','2005-06-21 21:49:18.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('609','23','2','3736','3.99','2005-07-06 11:43:44.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('610','23','2','3781','2.99','2005-07-06 13:53:41.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('611','23','2','4853','2.99','2005-07-08 18:43:18.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('612','23','1','6213','2.99','2005-07-11 12:43:07.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('613','23','1','6238','2.99','2005-07-11 14:20:18.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('614','23','2','6917','5.99','2005-07-12 22:30:15.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('615','23','1','7155','7.99','2005-07-27 07:18:46.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('616','23','1','8015','2.99','2005-07-28 15:33:03.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('617','23','2','8718','0.99','2005-07-29 17:41:14.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('618','23','2','9209','5.99','2005-07-30 12:55:36.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('619','23','2','9255','9.99','2005-07-30 14:26:46.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('620','23','2','9718','3.99','2005-07-31 08:25:03.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('621','23','1','10132','6.99','2005-07-31 21:50:24.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('622','23','1','10898','2.99','2005-08-02 01:29:57.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('623','23','2','11501','2.99','2005-08-16 23:04:53.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('624','23','2','13290','2.99','2005-08-19 18:31:50.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('625','23','2','13331','4.99','2005-08-19 20:00:25.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('626','23','2','13429','6.99','2005-08-19 23:25:37.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('627','23','2','13511','0.99','2005-08-20 02:21:40.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('628','23','2','13557','0.99','2005-08-20 04:12:41.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('629','23','2','14482','2.99','2005-08-21 13:42:45.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('630','23','2','15532','2.99','2006-02-14 15:16:03.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('631','24','2','1007','6.99','2005-05-31 01:02:28.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('632','24','2','1077','2.99','2005-05-31 10:22:54.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('633','24','1','1716','2.99','2005-06-16 14:39:31.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('634','24','1','2070','2.99','2005-06-17 16:27:51.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('635','24','2','2116','4.99','2005-06-17 20:16:12.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('636','24','1','2451','5.99','2005-06-18 19:28:02.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('637','24','2','2963','7.99','2005-06-20 07:33:09.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('638','24','2','3649','7.99','2005-07-06 07:32:42.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('639','24','2','4378','2.99','2005-07-07 20:29:08.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('640','24','1','5310','0.99','2005-07-09 16:00:34.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('641','24','2','5648','0.99','2005-07-10 07:09:21.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('642','24','1','6855','4.99','2005-07-12 19:46:29.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('643','24','1','7266','1.99','2005-07-27 11:22:17.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('644','24','1','8947','4.99','2005-07-30 03:15:37.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('645','24','1','9723','0.99','2005-07-31 08:31:18.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('646','24','2','9925','0.99','2005-07-31 15:08:47.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('647','24','2','10491','2.99','2005-08-01 10:38:27.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('648','24','1','11209','2.99','2005-08-02 12:09:45.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('649','24','2','11546','2.99','2005-08-17 00:57:36.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('650','24','2','12165','8.99','2005-08-18 00:53:37.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('651','24','1','12745','2.99','2005-08-18 22:22:45.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('652','24','1','12999','1.99','2005-08-19 07:34:53.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('653','24','2','13058','4.99','2005-08-19 09:40:53.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('654','24','1','13247','0.99','2005-08-19 16:45:59.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('655','24','2','15357','4.99','2005-08-22 21:28:59.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('656','25','1','90','7.99','2005-05-25 14:31:25.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('657','25','2','1033','2.99','2005-05-31 04:50:07.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('658','25','1','1338','4.99','2005-06-15 12:17:34.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('659','25','1','1365','2.99','2005-06-15 14:09:55.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('660','25','2','1754','6.99','2005-06-16 17:13:23.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('661','25','2','2625','8.99','2005-06-19 08:23:11.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('662','25','1','2901','4.99','2005-06-20 02:41:28.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('663','25','1','3447','4.99','2005-06-21 20:53:31.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('664','25','1','4282','2.99','2005-07-07 15:26:31.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('665','25','1','4319','0.99','2005-07-07 17:50:27.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('666','25','2','4404','2.99','2005-07-07 21:31:53.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('667','25','1','5881','2.99','2005-07-10 19:19:43.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('668','25','1','6653','4.99','2005-07-12 11:06:17.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('669','25','2','6905','2.99','2005-07-12 22:02:18.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('670','25','2','8667','2.99','2005-07-29 15:40:57.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('671','25','2','8878','0.99','2005-07-30 00:15:57.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('672','25','1','9140','8.99','2005-07-30 10:12:01.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('673','25','2','9334','2.99','2005-07-30 17:56:38.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('674','25','2','9922','2.99','2005-07-31 14:59:37.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('675','25','2','10103','2.99','2005-07-31 20:49:13.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('676','25','1','10324','5.99','2005-08-01 04:49:06.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('677','25','2','10860','2.99','2005-08-02 00:12:32.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('678','25','1','10916','2.99','2005-08-02 02:05:59.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('679','25','1','11642','0.99','2005-08-17 04:48:05.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('680','25','1','12922','0.99','2005-08-19 04:48:48.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('681','25','1','14193','4.99','2005-08-21 03:38:27.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('682','25','1','14236','4.99','2005-08-21 05:13:16.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('683','25','1','15512','0.99','2005-08-23 02:57:30.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('684','25','1','15972','5.99','2005-08-23 20:00:30.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('685','26','1','796','2.99','2005-05-29 16:59:44.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('686','26','2','1105','2.99','2005-05-31 14:33:56.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('687','26','1','1440','5.99','2005-06-15 18:53:14.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('688','26','2','1706','4.99','2005-06-16 14:01:02.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('689','26','1','2093','9.99','2005-06-17 18:14:08.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('690','26','2','2416','3.99','2005-06-18 17:07:34.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('691','26','2','2421','6.99','2005-06-18 17:25:05.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('692','26','1','2532','4.99','2005-06-19 01:27:46.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('693','26','1','2745','4.99','2005-06-19 16:21:19.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('694','26','1','4065','2.99','2005-07-07 04:32:28.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('695','26','1','4274','4.99','2005-07-07 14:42:04.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('696','26','1','4382','4.99','2005-07-07 20:41:03.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('697','26','2','4402','0.99','2005-07-07 21:28:46.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('698','26','1','4431','6.99','2005-07-07 22:39:02.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('699','26','1','4536','3.99','2005-07-08 03:43:22.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('700','26','1','4641','6.99','2005-07-08 09:09:46.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('701','26','1','5437','2.99','2005-07-09 21:32:29.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('702','26','1','6149','1.99','2005-07-11 09:19:31.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('703','26','2','6243','2.99','2005-07-11 14:53:25.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('704','26','2','7328','0.99','2005-07-27 13:55:18.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('705','26','1','8241','4.99','2005-07-29 00:33:36.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('706','26','1','9484','0.99','2005-07-30 23:31:40.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('707','26','1','10386','3.99','2005-08-01 06:42:20.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('708','26','1','10996','3.99','2005-08-02 04:48:11.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('709','26','2','11314','2.99','2005-08-02 16:04:08.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('710','26','1','11338','0.99','2005-08-02 17:00:12.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('711','26','1','11744','5.99','2005-08-17 08:54:30.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('712','26','2','13111','4.99','2005-08-19 11:25:10.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('713','26','2','14183','4.99','2005-08-21 03:24:29.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('714','26','2','14192','8.99','2005-08-21 03:37:42.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('715','26','2','14603','1.99','2005-08-21 17:51:06.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('716','26','1','14677','7.99','2005-08-21 20:12:30.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('717','26','1','15384','2.99','2005-08-22 22:34:44.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('718','26','1','15722','7.99','2005-08-23 11:16:29.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('719','27','2','787','2.99','2005-05-29 16:03:03.000','2006-02-15 22:12:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('720','27','1','1310','4.99','2005-06-15 10:11:42.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('721','27','2','1480','4.99','2005-06-15 21:17:17.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('722','27','2','1699','2.99','2005-06-16 13:05:09.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('723','27','2','1960','3.99','2005-06-17 08:59:57.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('724','27','2','2512','2.99','2005-06-18 23:48:47.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('725','27','1','2815','4.99','2005-06-19 20:03:29.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('726','27','1','3038','1.99','2005-06-20 12:28:59.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('727','27','2','3420','3.99','2005-06-21 17:22:36.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('728','27','2','4038','0.99','2005-07-07 02:52:53.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('729','27','1','4510','5.99','2005-07-08 02:34:51.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('730','27','1','5552','0.99','2005-07-10 03:01:19.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('731','27','1','5736','4.99','2005-07-10 11:45:48.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('732','27','2','6115','0.99','2005-07-11 07:36:50.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('733','27','2','6562','5.99','2005-07-12 05:26:26.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('734','27','2','6658','4.99','2005-07-12 11:13:21.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('735','27','1','7927','1.99','2005-07-28 12:13:42.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('736','27','2','9244','0.99','2005-07-30 14:06:53.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('737','27','2','9636','5.99','2005-07-31 05:12:59.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('738','27','1','9673','7.99','2005-07-31 06:34:55.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('739','27','1','9908','4.99','2005-07-31 14:39:52.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('740','27','1','10794','7.99','2005-08-01 21:51:15.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('741','27','1','10852','4.99','2005-08-02 00:00:33.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('742','27','1','11234','0.99','2005-08-02 13:12:17.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('743','27','1','11661','8.99','2005-08-17 05:25:57.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('744','27','2','11740','6.99','2005-08-17 08:48:31.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('745','27','2','12021','5.99','2005-08-17 19:52:43.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('746','27','2','12461','0.99','2005-08-18 11:28:14.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('747','27','1','12531','2.99','2005-08-18 13:57:50.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('748','27','2','13816','4.99','2005-08-20 13:13:56.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('749','27','1','15048','0.99','2005-08-22 10:00:04.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('750','28','2','388','2.99','2005-05-27 10:37:27.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('751','28','1','868','2.99','2005-05-30 04:19:55.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('752','28','2','1240','2.99','2005-06-15 04:58:07.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('753','28','1','1543','4.99','2005-06-16 01:24:08.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('754','28','2','2299','3.99','2005-06-18 08:18:52.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('755','28','2','2604','0.99','2005-06-19 06:30:10.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('756','28','1','3231','0.99','2005-06-21 02:25:00.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('757','28','1','3845','0.99','2005-07-06 16:38:14.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('758','28','2','4704','0.99','2005-07-08 11:45:35.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('759','28','2','4951','4.99','2005-07-08 22:58:21.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('760','28','2','5653','2.99','2005-07-10 07:21:27.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('761','28','1','5817','5.99','2005-07-10 15:49:12.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('762','28','2','6032','0.99','2005-07-11 02:49:01.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('763','28','2','6476','0.99','2005-07-12 01:37:48.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('764','28','1','7580','9.99','2005-07-27 23:07:40.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('765','28','1','8464','4.99','2005-07-29 08:18:20.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('766','28','1','8901','2.99','2005-07-30 01:07:12.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('767','28','2','9544','2.99','2005-07-31 01:44:51.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('768','28','2','9593','4.99','2005-07-31 03:22:30.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('769','28','2','9705','4.99','2005-07-31 07:40:33.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('770','28','2','10116','2.99','2005-07-31 21:14:02.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('771','28','2','10294','6.99','2005-08-01 03:48:12.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('772','28','1','11444','2.99','2005-08-02 20:32:55.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('773','28','1','11856','3.99','2005-08-17 13:44:49.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('774','28','2','12190','2.99','2005-08-18 01:54:44.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('775','28','1','12359','0.99','2005-08-18 07:44:05.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('776','28','1','12708','2.99','2005-08-18 20:59:17.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('777','28','2','13783','4.99','2005-08-20 12:11:03.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('778','28','2','14540','2.99','2005-08-21 15:34:23.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('779','28','1','15445','4.99','2005-08-23 00:48:29.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('780','28','1','15491','2.99','2005-08-23 02:08:40.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('781','28','2','12938','2.99','2006-02-14 15:16:03.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('782','29','2','194','1.99','2005-05-26 06:52:33.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('783','29','1','2655','0.99','2005-06-19 10:38:42.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('784','29','1','2673','0.99','2005-06-19 11:42:20.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('785','29','1','2701','7.99','2005-06-19 13:33:06.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('786','29','1','2735','2.99','2005-06-19 15:42:07.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('787','29','2','2801','2.99','2005-06-19 19:18:09.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('788','29','2','2923','2.99','2005-06-20 04:16:07.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('789','29','1','3324','2.99','2005-06-21 08:49:16.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('790','29','2','4262','6.99','2005-07-07 14:24:30.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('791','29','1','4313','0.99','2005-07-07 17:36:56.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('792','29','2','4535','0.99','2005-07-08 03:40:46.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('793','29','2','5442','10.99','2005-07-09 21:55:19.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('794','29','1','5857','1.99','2005-07-10 17:59:29.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('795','29','2','7237','3.99','2005-07-27 10:12:36.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('796','29','1','7451','6.99','2005-07-27 18:18:41.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('797','29','1','7453','0.99','2005-07-27 18:27:13.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('798','29','2','8673','2.99','2005-07-29 15:50:14.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('799','29','2','9392','4.99','2005-07-30 19:50:13.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('800','29','1','9946','4.99','2005-07-31 15:48:54.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('801','29','1','10543','5.99','2005-08-01 12:36:09.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('802','29','2','10899','1.99','2005-08-02 01:30:21.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('803','29','1','11079','4.99','2005-08-02 07:29:10.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('804','29','2','11962','2.99','2005-08-17 17:34:38.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('805','29','1','12488','4.99','2005-08-18 12:48:22.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('806','29','1','12508','2.99','2005-08-18 13:20:13.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('807','29','2','12569','6.99','2005-08-18 15:20:46.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('808','29','2','12615','6.99','2005-08-18 17:16:07.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('809','29','2','13173','2.99','2005-08-19 13:50:36.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('810','29','1','13436','0.99','2005-08-19 23:36:25.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('811','29','2','13777','2.99','2005-08-20 12:03:35.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('812','29','1','13832','3.99','2005-08-20 14:00:25.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('813','29','1','14174','0.99','2005-08-21 03:01:45.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('814','29','1','14703','4.99','2005-08-21 21:01:19.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('815','29','1','14985','7.99','2005-08-22 07:35:56.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('816','29','1','14997','5.99','2005-08-22 07:53:00.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('817','29','2','15577','0.99','2006-02-14 15:16:03.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('818','30','2','1874','1.99','2005-06-17 02:39:20.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('819','30','2','1895','2.99','2005-06-17 04:25:12.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('820','30','2','2154','4.99','2005-06-17 22:59:42.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('821','30','2','2730','2.99','2005-06-19 15:10:09.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('822','30','1','3964','4.99','2005-07-06 22:23:02.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('823','30','2','4471','2.99','2005-07-08 00:21:29.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('824','30','2','4642','2.99','2005-07-08 09:13:28.000','2006-02-15 22:12:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('825','30','2','5028','5.99','2005-07-09 02:34:45.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('826','30','1','5108','9.99','2005-07-09 06:44:30.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('827','30','1','5289','0.99','2005-07-09 15:14:08.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('828','30','2','5972','7.99','2005-07-11 00:08:54.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('829','30','1','6249','0.99','2005-07-11 15:02:02.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('830','30','2','6359','2.99','2005-07-11 21:06:17.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('831','30','2','7394','2.99','2005-07-27 16:03:08.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('832','30','2','7769','4.99','2005-07-28 06:45:23.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('833','30','1','8030','4.99','2005-07-28 16:12:53.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('834','30','2','8038','4.99','2005-07-28 16:32:55.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('835','30','1','8083','4.99','2005-07-28 18:09:48.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('836','30','1','8641','2.99','2005-07-29 14:37:30.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('837','30','2','9309','2.99','2005-07-30 16:55:53.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('838','30','2','9551','0.99','2005-07-31 02:04:58.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('839','30','1','9641','0.99','2005-07-31 05:33:48.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('840','30','1','9998','2.99','2005-07-31 17:40:35.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('841','30','1','10235','6.99','2005-08-01 01:57:48.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('842','30','1','12240','2.99','2005-08-18 03:27:11.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('843','30','1','12546','2.99','2005-08-18 14:29:37.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('844','30','2','12758','0.99','2005-08-18 22:58:34.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('845','30','1','13435','0.99','2005-08-19 23:35:44.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('846','30','1','13682','4.99','2005-08-20 08:50:39.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('847','30','1','14339','0.99','2005-08-21 08:37:15.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('848','30','1','14585','2.99','2005-08-21 17:18:33.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('849','30','1','15063','4.99','2005-08-22 10:39:51.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('850','30','1','15544','4.99','2005-08-23 04:17:56.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('851','30','2','15829','2.99','2005-08-23 15:17:14.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('852','31','2','1656','4.99','2005-06-16 10:05:40.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('853','31','1','1838','1.99','2005-06-16 23:20:16.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('854','31','1','2233','0.99','2005-06-18 03:57:36.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('855','31','2','2341','6.99','2005-06-18 11:35:30.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('856','31','1','2396','7.99','2005-06-18 15:49:48.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('857','31','2','2438','0.99','2005-06-18 18:34:21.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('858','31','1','2530','0.99','2005-06-19 01:20:00.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('859','31','2','2648','4.99','2005-06-19 10:06:20.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('860','31','2','3117','2.99','2005-06-20 18:05:15.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('861','31','2','3172','1.99','2005-06-20 22:19:25.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('862','31','1','3205','0.99','2005-06-21 00:38:47.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('863','31','1','3701','4.99','2005-07-06 10:12:45.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('864','31','2','3967','4.99','2005-07-06 22:45:10.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('865','31','1','4122','6.99','2005-07-07 07:15:35.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('866','31','2','4738','9.99','2005-07-08 13:24:58.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('867','31','1','6208','3.99','2005-07-11 12:34:56.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('868','31','2','6580','4.99','2005-07-12 06:26:10.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('869','31','1','7000','1.99','2005-07-27 01:23:24.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('870','31','2','7138','3.99','2005-07-27 06:47:13.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('871','31','2','7178','2.99','2005-07-27 08:09:25.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('872','31','2','7464','2.99','2005-07-27 18:49:42.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('873','31','2','8997','0.99','2005-07-30 04:53:56.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('874','31','2','12085','4.99','2005-08-17 22:17:09.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('875','31','1','12377','0.99','2005-08-18 08:26:05.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('876','31','2','15682','6.99','2005-08-23 09:37:34.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('877','31','2','15816','6.99','2005-08-23 14:58:06.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('878','32','2','483','4.99','2005-05-27 23:00:25.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('879','32','2','803','4.99','2005-05-29 17:52:30.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('880','32','2','1067','4.99','2005-05-31 09:12:13.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('881','32','2','1887','6.99','2005-06-17 03:53:18.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('882','32','2','2160','0.99','2005-06-17 23:39:11.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('883','32','2','2624','5.99','2005-06-19 08:22:09.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('884','32','2','2891','1.99','2005-06-20 02:02:05.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('885','32','1','3500','2.99','2005-07-06 00:11:13.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('886','32','1','4434','2.99','2005-07-07 22:48:34.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('887','32','2','4771','2.99','2005-07-08 15:33:32.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('888','32','2','4899','0.99','2005-07-08 20:37:11.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('889','32','1','5307','9.99','2005-07-09 15:57:15.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('890','32','1','5767','0.99','2005-07-10 13:13:18.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('891','32','1','5954','2.99','2005-07-10 23:22:01.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('892','32','1','6122','3.99','2005-07-11 07:58:07.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('893','32','2','6450','2.99','2005-07-12 00:49:05.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('894','32','1','7084','6.99','2005-07-27 04:34:07.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('895','32','1','7589','5.99','2005-07-27 23:23:36.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('896','32','1','7793','2.99','2005-07-28 07:26:14.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('897','32','2','8390','5.99','2005-07-29 05:52:26.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('898','32','2','8453','2.99','2005-07-29 07:46:29.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('899','32','2','8914','2.99','2005-07-30 01:42:03.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('900','32','1','11135','4.99','2005-08-02 09:22:25.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('901','32','2','11831','4.99','2005-08-17 12:54:47.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('902','32','2','12414','9.99','2005-08-18 09:50:40.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('903','32','1','13736','8.99','2005-08-20 10:31:23.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('904','32','1','13931','1.99','2005-08-20 17:16:10.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('905','32','1','14075','0.99','2005-08-20 23:18:54.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('906','32','2','14570','5.99','2005-08-21 16:32:32.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('907','33','1','165','2.99','2005-05-26 02:28:36.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('908','33','1','1301','10.99','2005-06-15 09:46:33.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('909','33','2','3173','8.99','2005-06-20 22:21:10.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('910','33','1','4095','5.99','2005-07-07 06:01:48.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('911','33','1','5421','0.99','2005-07-09 20:49:12.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('912','33','1','5723','4.99','2005-07-10 11:14:48.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('913','33','2','6280','0.99','2005-07-11 16:36:17.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('914','33','1','7992','4.99','2005-07-28 14:53:06.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('915','33','1','9040','4.99','2005-07-30 06:31:45.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('916','33','2','9085','4.99','2005-07-30 08:17:24.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('917','33','1','9254','1.99','2005-07-30 14:26:11.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('918','33','2','10335','2.99','2005-08-01 04:59:30.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('919','33','1','10870','4.99','2005-08-02 00:27:12.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('920','33','1','13241','7.99','2005-08-19 16:25:00.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('921','33','1','13858','2.99','2005-08-20 14:50:57.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('922','33','1','13958','7.99','2005-08-20 18:11:44.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('923','33','1','14002','0.99','2005-08-20 20:12:19.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('924','33','1','14623','0.99','2005-08-21 18:29:13.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('925','33','1','15096','5.99','2005-08-22 11:43:04.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('926','33','2','15115','2.99','2005-08-22 12:28:01.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('927','33','1','12277','0.99','2006-02-14 15:16:03.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('928','34','1','1900','4.99','2005-06-17 04:29:58.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('929','34','2','2257','5.99','2005-06-18 05:29:52.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('930','34','1','3150','0.99','2005-06-20 20:35:28.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('931','34','2','3508','3.99','2005-07-06 00:24:25.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('932','34','1','3911','2.99','2005-07-06 20:09:11.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('933','34','1','5188','4.99','2005-07-09 10:22:31.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('934','34','2','5643','4.99','2005-07-10 06:49:00.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('935','34','2','5918','5.99','2005-07-10 21:32:06.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('936','34','2','7015','2.99','2005-07-27 02:15:01.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('937','34','2','7124','2.99','2005-07-27 06:09:30.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('938','34','1','7532','0.99','2005-07-27 21:20:52.000','2006-02-15 22:12:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('939','34','1','9160','3.99','2005-07-30 11:17:33.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('940','34','1','10523','0.99','2005-08-01 11:52:32.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('941','34','1','10615','4.99','2005-08-01 14:58:14.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('942','34','2','11096','0.99','2005-08-02 08:05:19.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('943','34','1','11505','2.99','2005-08-16 23:18:47.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('944','34','2','11701','4.99','2005-08-17 07:15:47.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('945','34','2','12286','2.99','2005-08-18 04:57:59.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('946','34','1','12599','2.99','2005-08-18 16:42:45.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('947','34','1','12651','0.99','2005-08-18 18:36:16.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('948','34','1','13371','4.99','2005-08-19 21:21:47.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('949','34','2','13949','2.99','2005-08-20 17:55:13.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('950','34','1','14686','5.99','2005-08-21 20:32:08.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('951','34','2','14701','7.99','2005-08-21 20:54:32.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('952','35','2','47','3.99','2005-05-25 06:05:20.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('953','35','1','424','6.99','2005-05-27 15:34:01.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('954','35','1','1579','0.99','2005-06-16 04:09:08.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('955','35','1','1989','2.99','2005-06-17 10:47:24.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('956','35','1','2229','4.99','2005-06-18 03:50:18.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('957','35','1','2231','0.99','2005-06-18 03:52:14.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('958','35','1','2743','2.99','2005-06-19 16:15:56.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('959','35','2','3112','4.99','2005-06-20 17:53:30.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('960','35','2','3597','2.99','2005-07-06 05:03:59.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('961','35','2','4098','4.99','2005-07-07 06:14:51.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('962','35','2','4990','0.99','2005-07-09 00:48:49.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('963','35','1','5013','2.99','2005-07-09 01:46:45.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('964','35','2','5323','0.99','2005-07-09 16:34:07.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('965','35','1','5916','5.99','2005-07-10 21:26:31.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('966','35','1','5963','0.99','2005-07-10 23:47:08.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('967','35','1','6147','5.99','2005-07-11 09:13:08.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('968','35','1','6401','4.99','2005-07-11 22:44:34.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('969','35','1','6565','4.99','2005-07-12 05:39:50.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('970','35','1','6572','4.99','2005-07-12 05:56:38.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('971','35','1','7140','4.99','2005-07-27 06:54:12.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('972','35','1','8822','6.99','2005-07-29 22:20:21.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('973','35','1','8971','5.99','2005-07-30 04:03:58.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('974','35','2','9033','2.99','2005-07-30 06:07:42.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('975','35','1','9579','6.99','2005-07-31 02:59:20.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('976','35','1','11298','1.99','2005-08-02 15:32:32.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('977','35','1','11452','7.99','2005-08-02 20:59:52.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('978','35','1','11645','4.99','2005-08-17 04:50:56.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('979','35','1','12055','4.99','2005-08-17 21:02:19.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('980','35','1','13735','2.99','2005-08-20 10:31:01.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('981','35','1','14110','0.99','2005-08-21 00:53:09.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('982','35','2','14124','2.99','2005-08-21 01:31:51.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('983','35','2','14735','4.99','2005-08-21 22:25:09.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('984','36','1','349','0.99','2005-05-27 04:53:11.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('985','36','1','716','0.99','2005-05-29 04:35:29.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('986','36','2','2741','0.99','2005-06-19 16:05:41.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('987','36','2','4135','0.99','2005-07-07 08:15:03.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('988','36','2','4560','4.99','2005-07-08 04:58:48.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('989','36','2','4762','4.99','2005-07-08 14:54:42.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('990','36','1','5403','0.99','2005-07-09 20:07:09.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('991','36','2','6030','0.99','2005-07-11 02:37:51.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('992','36','1','7205','6.99','2005-07-27 09:06:13.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('993','36','1','7647','0.99','2005-07-28 01:35:17.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('994','36','2','7919','6.99','2005-07-28 11:59:45.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('995','36','2','8099','0.99','2005-07-28 18:35:12.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('996','36','1','8391','2.99','2005-07-29 05:52:50.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('997','36','1','8952','4.99','2005-07-30 03:20:38.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('998','36','1','9369','2.99','2005-07-30 18:52:19.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('999','36','2','9805','0.99','2005-07-31 11:11:10.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1000','36','2','10525','2.99','2005-08-01 11:53:17.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1001','36','2','10761','2.99','2005-08-01 20:25:35.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1002','36','1','10963','0.99','2005-08-02 03:48:17.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1003','36','2','10964','6.99','2005-08-02 03:56:23.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1004','36','2','11616','4.99','2005-08-17 04:00:01.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1005','36','1','11813','4.99','2005-08-17 12:06:54.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1006','36','2','13562','2.99','2005-08-20 04:31:45.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1007','36','2','13564','1.99','2005-08-20 04:34:46.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1008','36','1','13674','4.99','2005-08-20 08:30:54.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1009','36','1','14647','9.99','2005-08-21 19:15:33.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1010','36','2','15657','4.99','2005-08-23 08:42:40.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1011','37','1','25','0.99','2005-05-25 03:21:20.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1012','37','1','923','2.99','2005-05-30 11:58:50.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1013','37','1','1583','4.99','2005-06-16 04:44:23.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1014','37','2','1812','1.99','2005-06-16 21:08:46.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1015','37','2','1854','3.99','2005-06-17 00:43:57.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1016','37','2','3472','7.99','2005-07-05 22:56:33.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1017','37','1','3734','5.99','2005-07-06 11:40:27.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1018','37','1','5425','5.99','2005-07-09 21:02:26.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1019','37','2','7939','0.99','2005-07-28 12:45:47.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1020','37','1','8419','9.99','2005-07-29 06:54:48.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1021','37','1','9567','5.99','2005-07-31 02:36:11.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1022','37','1','10538','2.99','2005-08-01 12:22:41.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1023','37','1','11176','3.99','2005-08-02 10:39:43.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1024','37','1','13046','7.99','2005-08-19 09:21:10.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1025','37','2','13147','4.99','2005-08-19 12:55:09.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1026','37','2','13444','0.99','2005-08-20 00:00:24.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1027','37','2','13493','3.99','2005-08-20 01:33:36.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1028','37','2','14025','8.99','2005-08-20 21:19:36.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1029','37','1','14084','0.99','2005-08-20 23:42:46.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1030','37','2','14532','2.99','2005-08-21 15:15:03.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1031','37','1','15028','3.99','2005-08-22 09:03:44.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1032','37','1','15904','0.99','2005-08-23 17:32:19.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1033','37','2','16035','0.99','2005-08-23 22:08:04.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1034','38','2','1250','2.99','2005-06-15 05:55:40.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1035','38','1','2550','1.99','2005-06-19 02:49:55.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1036','38','2','2605','1.99','2005-06-19 06:48:01.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1037','38','2','3003','4.99','2005-06-20 10:00:51.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1038','38','2','3392','3.99','2005-06-21 15:12:44.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1039','38','1','4202','5.99','2005-07-07 11:23:48.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1040','38','2','4228','1.99','2005-07-07 12:42:02.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1041','38','1','4300','4.99','2005-07-07 16:36:16.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1042','38','2','4644','4.99','2005-07-08 09:14:29.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1043','38','1','5273','2.99','2005-07-09 14:31:24.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1044','38','2','5460','2.99','2005-07-09 22:46:14.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1045','38','1','5822','2.99','2005-07-10 16:10:39.000','2006-02-15 22:12:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1046','38','1','6864','5.99','2005-07-12 19:59:25.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1047','38','1','6961','0.99','2005-07-27 00:10:49.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1048','38','2','7158','4.99','2005-07-27 07:23:58.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1049','38','2','7163','5.99','2005-07-27 07:36:11.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1050','38','2','7321','5.99','2005-07-27 13:33:38.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1051','38','1','7795','0.99','2005-07-28 07:28:16.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1052','38','2','8924','3.99','2005-07-30 02:08:58.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1053','38','2','9216','0.99','2005-07-30 13:11:19.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1054','38','1','9284','0.99','2005-07-30 15:25:19.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1055','38','1','9621','4.99','2005-07-31 04:21:08.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1056','38','2','10111','2.99','2005-07-31 21:08:33.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1057','38','2','10524','6.99','2005-08-01 11:53:12.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1058','38','2','11049','3.99','2005-08-02 06:15:40.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1059','38','1','11344','2.99','2005-08-02 17:13:26.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1060','38','1','11817','4.99','2005-08-17 12:20:01.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1061','38','2','12092','0.99','2005-08-17 22:28:15.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1062','38','2','12187','1.99','2005-08-18 01:45:50.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1063','38','1','14554','4.99','2005-08-21 16:03:01.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1064','38','2','14632','2.99','2005-08-21 18:48:06.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1065','38','1','14787','6.99','2005-08-22 00:25:59.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1066','38','1','15668','2.99','2005-08-23 09:02:04.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1067','38','1','15738','5.99','2005-08-23 11:55:50.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1068','39','1','1625','5.99','2005-06-16 07:49:08.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1069','39','1','1905','4.99','2005-06-17 04:51:43.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1070','39','2','2135','0.99','2005-06-17 21:14:02.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1071','39','2','2439','4.99','2005-06-18 18:35:04.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1072','39','1','2631','4.99','2005-06-19 08:49:53.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1073','39','1','2876','4.99','2005-06-20 01:06:34.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1074','39','1','4419','5.99','2005-07-07 22:06:24.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1075','39','2','4695','8.99','2005-07-08 11:07:59.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1076','39','2','4712','6.99','2005-07-08 12:10:50.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1077','39','2','4727','7.99','2005-07-08 12:54:15.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1078','39','1','5451','4.99','2005-07-09 22:22:10.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1079','39','2','5515','2.99','2005-07-10 01:12:44.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1080','39','1','6045','2.99','2005-07-11 03:21:05.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1081','39','2','8307','6.99','2005-07-29 03:18:34.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1082','39','2','8366','1.99','2005-07-29 05:11:14.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1083','39','2','8723','7.99','2005-07-29 18:03:47.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1084','39','1','8805','2.99','2005-07-29 21:29:58.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1085','39','1','9431','1.99','2005-07-30 21:24:22.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1086','39','1','9656','4.99','2005-07-31 06:00:21.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1087','39','2','10052','4.99','2005-07-31 19:15:13.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1088','39','1','10126','0.99','2005-07-31 21:36:07.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1089','39','1','10251','4.99','2005-08-01 02:39:12.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1090','39','2','10269','4.99','2005-08-01 03:09:26.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1091','39','2','10630','0.99','2005-08-01 15:34:46.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1092','39','1','10639','9.99','2005-08-01 15:44:43.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1093','39','2','12268','0.99','2005-08-18 04:26:54.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1094','39','2','12459','4.99','2005-08-18 11:25:11.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1095','39','2','13101','7.99','2005-08-19 11:01:54.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1096','39','2','15124','5.99','2005-08-22 12:51:38.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1097','40','1','128','4.99','2005-05-25 21:19:53.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1098','40','2','2470','7.99','2005-06-18 20:28:31.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1099','40','2','2896','2.99','2005-06-20 02:33:42.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1100','40','1','2993','4.99','2005-06-20 09:12:12.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1101','40','1','3428','0.99','2005-06-21 18:39:34.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1102','40','2','5001','1.99','2005-07-09 01:17:04.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1103','40','2','5777','2.99','2005-07-10 13:38:41.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1104','40','1','5869','5.99','2005-07-10 18:40:09.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1105','40','1','6502','0.99','2005-07-12 03:15:45.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1106','40','2','7684','0.99','2005-07-28 03:11:54.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1107','40','2','8031','0.99','2005-07-28 16:15:49.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1108','40','2','8170','3.99','2005-07-28 21:32:29.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1109','40','1','9050','8.99','2005-07-30 06:59:55.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1110','40','2','9700','4.99','2005-07-31 07:29:59.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1111','40','2','9961','6.99','2005-07-31 16:07:50.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1112','40','1','9975','1.99','2005-07-31 16:53:43.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1113','40','1','10442','2.99','2005-08-01 08:58:08.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1114','40','2','11919','0.99','2005-08-17 16:08:49.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1115','40','2','11948','3.99','2005-08-17 17:11:05.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1116','40','2','12396','9.99','2005-08-18 09:11:23.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1117','40','2','12877','2.99','2005-08-19 03:16:58.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1118','40','1','13149','6.99','2005-08-19 13:07:12.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1119','40','1','13376','0.99','2005-08-19 21:31:45.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1120','40','1','13840','5.99','2005-08-20 14:23:20.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1121','40','1','13951','2.99','2005-08-20 17:58:11.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1122','40','1','14260','6.99','2005-08-21 06:01:08.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1123','40','1','15193','2.99','2005-08-22 16:06:49.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1124','41','1','2563','4.99','2005-06-19 03:24:17.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1125','41','2','3246','7.99','2005-06-21 03:10:01.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1126','41','2','3827','2.99','2005-07-06 15:52:03.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1127','41','2','4294','9.99','2005-07-07 15:56:23.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1128','41','1','4543','4.99','2005-07-08 04:06:55.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1129','41','1','4575','2.99','2005-07-08 05:49:14.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1130','41','1','6976','4.99','2005-07-27 00:40:01.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1131','41','2','7153','4.99','2005-07-27 07:15:38.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1132','41','1','7517','1.99','2005-07-27 20:57:07.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1133','41','2','8008','6.99','2005-07-28 15:25:55.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1134','41','1','8098','0.99','2005-07-28 18:34:20.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1135','41','1','8134','6.99','2005-07-28 20:01:23.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1136','41','2','8225','2.99','2005-07-28 23:59:29.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1137','41','1','8712','2.99','2005-07-29 17:30:06.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1138','41','2','9313','5.99','2005-07-30 16:59:43.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1139','41','1','10064','2.99','2005-07-31 19:27:02.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1140','41','1','10170','7.99','2005-07-31 23:27:31.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1141','41','2','10495','4.99','2005-08-01 10:45:51.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1142','41','1','10853','5.99','2005-08-02 00:00:54.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1143','41','2','12147','2.99','2005-08-18 00:10:20.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1144','41','2','12173','3.99','2005-08-18 01:08:34.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1145','41','2','12821','0.99','2005-08-19 01:07:02.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1146','41','2','14539','7.99','2005-08-21 15:29:47.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1147','41','2','15860','4.99','2005-08-23 16:08:40.000','2006-02-15 22:12:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1148','41','1','15875','2.99','2006-02-14 15:16:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1149','42','1','635','5.99','2005-05-28 17:46:57.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1150','42','2','1534','0.99','2005-06-16 00:49:32.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1151','42','2','2056','2.99','2005-06-17 15:27:33.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1152','42','1','2170','3.99','2005-06-17 23:57:34.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1153','42','1','2302','4.99','2005-06-18 08:27:33.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1154','42','2','4391','2.99','2005-07-07 21:09:38.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1155','42','2','5199','4.99','2005-07-09 10:50:56.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1156','42','2','5517','5.99','2005-07-10 01:15:00.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1157','42','2','5652','3.99','2005-07-10 07:18:58.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1158','42','1','6179','2.99','2005-07-11 10:59:59.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1159','42','1','6799','2.99','2005-07-12 16:52:13.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1160','42','1','6925','0.99','2005-07-26 22:52:32.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1161','42','1','7405','3.99','2005-07-27 16:25:11.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1162','42','1','8049','0.99','2005-07-28 16:51:58.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1163','42','1','8095','6.99','2005-07-28 18:32:40.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1164','42','1','8166','2.99','2005-07-28 21:23:33.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1165','42','1','8499','3.99','2005-07-29 09:10:41.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1166','42','2','8785','2.99','2005-07-29 20:36:26.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1167','42','2','8852','3.99','2005-07-29 23:30:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1168','42','2','8915','3.99','2005-07-30 01:42:09.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1169','42','2','10060','6.99','2005-07-31 19:23:00.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1170','42','2','10345','2.99','2005-08-01 05:18:56.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1171','42','2','10845','2.99','2005-08-01 23:47:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1172','42','1','10935','5.99','2005-08-02 02:54:53.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1173','42','1','12478','4.99','2005-08-18 12:25:16.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1174','42','2','12499','2.99','2005-08-18 13:05:37.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1175','42','1','14461','7.99','2005-08-21 12:50:33.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1176','42','1','15442','2.99','2005-08-23 00:42:49.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1177','42','1','13351','5.98','2006-02-14 15:16:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1178','42','1','15407','0','2006-02-14 15:16:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1179','43','2','123','4.99','2005-05-25 20:26:42.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1180','43','1','652','4.99','2005-05-28 20:08:47.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1181','43','2','1544','4.99','2005-06-16 01:28:22.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1182','43','2','3683','1.99','2005-07-06 09:25:56.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1183','43','1','4498','2.99','2005-07-08 02:07:50.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1184','43','1','5162','4.99','2005-07-09 09:00:11.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1185','43','1','5401','4.99','2005-07-09 19:59:10.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1186','43','1','5831','2.99','2005-07-10 16:34:02.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1187','43','2','5941','4.99','2005-07-10 22:40:47.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1188','43','1','6474','3.99','2005-07-12 01:36:46.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1189','43','2','6680','0.99','2005-07-12 12:01:56.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1190','43','1','7348','4.99','2005-07-27 14:32:32.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1191','43','2','7868','4.99','2005-07-28 10:08:55.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1192','43','2','8376','4.99','2005-07-29 05:25:32.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1193','43','1','9204','4.99','2005-07-30 12:43:58.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1194','43','1','11753','4.99','2005-08-17 09:11:52.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1195','43','1','14244','2.99','2005-08-21 05:29:55.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1196','43','1','14649','4.99','2005-08-21 19:19:21.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1197','43','2','14837','4.99','2005-08-22 01:54:52.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1198','43','2','15155','4.99','2005-08-22 14:27:46.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1199','43','2','15800','6.99','2005-08-23 14:23:44.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1200','43','2','15945','2.99','2005-08-23 18:51:41.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1201','43','2','15644','3.98','2006-02-14 15:16:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1202','43','1','15745','0','2006-02-14 15:16:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1203','44','1','29','0.99','2005-05-25 03:47:12.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1204','44','1','99','4.99','2005-05-25 16:50:20.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1205','44','1','407','2.99','2005-05-27 13:57:38.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1206','44','2','721','0.99','2005-05-29 05:28:47.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1207','44','1','904','2.99','2005-05-30 10:19:42.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1208','44','1','1497','3.99','2005-06-15 21:56:39.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1209','44','1','2369','2.99','2005-06-18 14:25:29.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1210','44','1','2809','3.99','2005-06-19 19:40:27.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1211','44','2','2866','4.99','2005-06-20 00:01:36.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1212','44','2','4390','0.99','2005-07-07 20:59:06.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1213','44','2','4723','9.99','2005-07-08 12:44:59.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1214','44','1','5551','3.99','2005-07-10 03:01:09.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1215','44','1','5787','8.99','2005-07-10 14:08:49.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1216','44','2','5849','6.99','2005-07-10 17:32:33.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1217','44','2','5909','4.99','2005-07-10 20:46:13.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1218','44','1','7514','0.99','2005-07-27 20:51:49.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1219','44','2','7526','6.99','2005-07-27 21:13:47.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1220','44','2','8775','4.99','2005-07-29 20:05:38.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1221','44','1','8866','4.99','2005-07-29 23:58:19.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1222','44','1','11364','2.99','2005-08-02 17:53:36.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1223','44','2','12345','3.99','2005-08-18 07:16:58.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1224','44','1','12504','4.99','2005-08-18 13:17:07.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1225','44','1','12790','6.99','2005-08-19 00:16:54.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1226','44','2','12982','4.99','2005-08-19 07:06:34.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1227','44','2','15054','2.99','2005-08-22 10:14:33.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1228','44','2','13428','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1229','45','2','277','2.99','2005-05-26 17:32:11.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1230','45','1','1806','4.99','2005-06-16 20:41:57.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1231','45','2','1979','2.99','2005-06-17 09:45:30.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1232','45','2','2722','4.99','2005-06-19 14:55:17.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1233','45','1','3391','3.99','2005-06-21 15:11:02.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1234','45','2','3444','0.99','2005-06-21 20:39:39.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1235','45','1','4843','0.99','2005-07-08 18:27:28.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1236','45','1','5181','6.99','2005-07-09 10:07:27.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1237','45','1','5405','7.99','2005-07-09 20:11:49.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1238','45','1','5637','0.99','2005-07-10 06:31:37.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1239','45','2','6001','0.99','2005-07-11 01:24:44.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1240','45','2','6002','2.99','2005-07-11 01:27:49.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1241','45','1','6966','9.99','2005-07-27 00:15:35.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1242','45','1','7436','2.99','2005-07-27 17:39:12.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1243','45','1','7961','3.99','2005-07-28 13:47:21.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1244','45','1','10507','2.99','2005-08-01 11:22:20.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1245','45','2','10878','6.99','2005-08-02 00:33:12.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1246','45','1','11004','8.99','2005-08-02 05:04:18.000','2006-02-15 22:12:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1247','45','1','11029','4.99','2005-08-02 05:51:10.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1248','45','2','11483','2.99','2005-08-02 22:28:22.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1249','45','2','11488','3.99','2005-08-02 22:35:15.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1250','45','1','11725','2.99','2005-08-17 08:09:00.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1251','45','1','13340','3.99','2005-08-19 20:18:39.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1252','45','2','13394','4.99','2005-08-19 22:05:19.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1253','45','1','14576','6.99','2005-08-21 16:52:03.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1254','45','1','15812','10.99','2005-08-23 14:47:26.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1255','45','2','16037','7.99','2005-08-23 22:13:04.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1256','46','2','401','2.99','2005-05-27 12:57:55.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1257','46','2','432','4.99','2005-05-27 16:40:29.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1258','46','1','938','2.99','2005-05-30 14:47:31.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1259','46','1','1166','4.99','2005-06-14 23:17:03.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1260','46','2','1214','4.99','2005-06-15 03:18:40.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1261','46','2','2144','0.99','2005-06-17 22:05:40.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1262','46','1','2203','2.99','2005-06-18 02:10:42.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1263','46','2','2965','8.99','2005-06-20 07:33:38.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1264','46','2','2975','4.99','2005-06-20 08:06:18.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1265','46','2','3439','4.99','2005-06-21 19:36:15.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1266','46','2','3855','2.99','2005-07-06 17:03:48.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1267','46','1','3916','4.99','2005-07-06 20:18:50.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1268','46','2','5698','4.99','2005-07-10 09:47:00.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1269','46','1','7336','0.99','2005-07-27 14:11:45.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1270','46','2','8152','3.99','2005-07-28 20:53:05.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1271','46','2','9045','8.99','2005-07-30 06:36:57.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1272','46','2','9806','2.99','2005-07-31 11:13:49.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1273','46','1','10088','2.99','2005-07-31 20:16:21.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1274','46','2','10428','4.99','2005-08-01 08:30:11.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1275','46','1','10803','4.99','2005-08-01 22:22:07.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1276','46','1','10827','5.99','2005-08-01 23:13:00.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1277','46','1','11721','0.99','2005-08-17 07:49:17.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1278','46','2','12095','4.99','2005-08-17 22:32:37.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1279','46','2','12238','2.99','2005-08-18 03:25:08.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1280','46','2','12280','4.99','2005-08-18 04:49:27.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1281','46','1','12298','2.99','2005-08-18 05:30:31.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1282','46','2','12455','4.99','2005-08-18 11:19:47.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1283','46','1','13226','0.99','2005-08-19 16:05:36.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1284','46','2','14144','4.99','2005-08-21 02:10:57.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1285','46','2','14528','6.99','2005-08-21 15:08:05.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1286','46','1','14940','4.99','2005-08-22 05:54:03.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1287','46','1','15438','2.99','2005-08-23 00:31:57.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1288','46','1','15708','0.99','2005-08-23 10:35:51.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1289','46','1','15758','5.99','2005-08-23 12:47:26.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1290','47','2','175','3.99','2005-05-26 03:46:26.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1291','47','2','207','4.99','2005-05-26 08:04:38.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1292','47','1','300','6.99','2005-05-26 20:57:00.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1293','47','1','1882','4.99','2005-06-17 03:17:21.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1294','47','1','2307','6.99','2005-06-18 08:34:59.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1295','47','2','3320','5.99','2005-06-21 08:29:41.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1296','47','1','3631','4.99','2005-07-06 06:36:53.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1297','47','2','4064','5.99','2005-07-07 04:29:20.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1298','47','1','5174','0.99','2005-07-09 09:31:59.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1299','47','2','6153','9.99','2005-07-11 09:31:04.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1300','47','2','6164','0.99','2005-07-11 10:16:23.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1301','47','1','6337','3.99','2005-07-11 19:30:47.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1302','47','2','8159','4.99','2005-07-28 21:09:28.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1303','47','2','8402','6.99','2005-07-29 06:25:45.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1304','47','1','8863','3.99','2005-07-29 23:52:01.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1305','47','2','9274','4.99','2005-07-30 15:07:04.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1306','47','1','11126','0.99','2005-08-02 08:59:04.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1307','47','2','11477','5.99','2005-08-02 22:09:01.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1308','47','1','12215','7.99','2005-08-18 02:35:39.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1309','47','2','12274','7.99','2005-08-18 04:41:47.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1310','47','1','14397','0.99','2005-08-21 10:25:56.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1311','47','2','15846','2.99','2005-08-23 15:39:18.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1312','48','2','72','0.99','2005-05-25 10:52:13.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1313','48','1','297','2.99','2005-05-26 20:48:48.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1314','48','1','390','4.99','2005-05-27 11:02:26.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1315','48','2','1689','9.99','2005-06-16 12:18:41.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1316','48','2','2822','0.99','2005-06-19 20:29:24.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1317','48','2','3758','4.99','2005-07-06 12:43:11.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1318','48','1','4367','2.99','2005-07-07 19:52:01.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1319','48','2','5148','6.99','2005-07-09 08:22:46.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1320','48','2','6498','3.99','2005-07-12 03:05:38.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1321','48','1','7920','2.99','2005-07-28 12:01:19.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1322','48','1','8716','6.99','2005-07-29 17:39:09.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1323','48','1','9402','7.99','2005-07-30 20:18:27.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1324','48','2','9742','7.99','2005-07-31 09:10:20.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1325','48','2','10276','2.99','2005-08-01 03:22:23.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1326','48','2','14450','1.99','2005-08-21 12:21:25.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1327','48','2','14536','2.99','2005-08-21 15:22:50.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1328','48','1','15228','3.99','2005-08-22 17:27:23.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1329','49','2','96','1.99','2005-05-25 16:32:19.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1330','49','1','239','3.99','2005-05-26 12:30:26.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1331','49','2','846','2.99','2005-05-30 01:17:45.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1332','49','2','1010','4.99','2005-05-31 01:57:32.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1333','49','1','1164','0.99','2005-06-14 23:16:26.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1334','49','2','1237','9.99','2005-06-15 04:44:10.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1335','49','2','1688','0.99','2005-06-16 12:11:20.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1336','49','2','1777','6.99','2005-06-16 18:52:12.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1337','49','2','3235','4.99','2005-06-21 02:46:17.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1338','49','2','3575','4.99','2005-07-06 03:36:19.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1339','49','2','3615','0.99','2005-07-06 05:47:47.000','2006-02-15 22:12:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1340','49','1','5491','2.99','2005-07-10 00:09:45.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1341','49','1','6214','4.99','2005-07-11 12:49:48.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1342','49','1','6279','6.99','2005-07-11 16:26:07.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1343','49','1','6521','7.99','2005-07-12 04:06:11.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1344','49','2','6759','4.99','2005-07-12 15:14:48.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1345','49','2','7209','4.99','2005-07-27 09:16:53.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1346','49','2','7742','8.99','2005-07-28 05:33:16.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1347','49','2','8553','10.99','2005-07-29 11:15:36.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1348','49','2','9006','0.99','2005-07-30 05:06:32.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1349','49','1','9851','4.99','2005-07-31 12:50:24.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1350','49','1','10144','4.99','2005-07-31 22:13:52.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1351','49','1','10266','0.99','2005-08-01 03:05:59.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1352','49','1','10588','2.99','2005-08-01 14:10:21.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1353','49','1','10814','2.99','2005-08-01 22:43:12.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1354','49','2','14168','5.99','2005-08-21 03:00:03.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1355','49','1','14627','6.99','2005-08-21 18:35:54.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1356','49','1','14676','2.99','2005-08-21 20:02:18.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1357','50','1','763','4.99','2005-05-29 11:32:15.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1358','50','1','794','4.99','2005-05-29 16:44:11.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1359','50','1','905','4.99','2005-05-30 10:25:00.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1360','50','1','1029','4.99','2005-05-31 03:52:02.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1361','50','2','1136','4.99','2005-05-31 19:19:36.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1362','50','1','1223','2.99','2005-06-15 03:38:53.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1363','50','1','1785','4.99','2005-06-16 19:27:12.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1364','50','2','3000','0.99','2005-06-20 09:32:33.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1365','50','2','3169','2.99','2005-06-20 21:55:54.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1366','50','2','4149','2.99','2005-07-07 08:40:17.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1367','50','2','5290','4.99','2005-07-09 15:14:47.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1368','50','2','5641','4.99','2005-07-10 06:43:43.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1369','50','2','5681','9.99','2005-07-10 08:48:39.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1370','50','1','5928','6.99','2005-07-10 21:58:30.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1371','50','2','6634','0.99','2005-07-12 09:37:18.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1372','50','1','6667','8.99','2005-07-12 11:36:22.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1373','50','1','7383','4.99','2005-07-27 15:46:53.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1374','50','1','8089','0.99','2005-07-28 18:26:47.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1375','50','1','8261','0.99','2005-07-29 01:11:05.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1376','50','1','8619','5.99','2005-07-29 13:50:08.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1377','50','2','9179','0.99','2005-07-30 12:02:41.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1378','50','1','9615','4.99','2005-07-31 03:59:56.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1379','50','2','9691','10.99','2005-07-31 07:09:55.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1380','50','2','10046','2.99','2005-07-31 19:07:11.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1381','50','2','10165','0.99','2005-07-31 23:21:23.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1382','50','2','10180','6.99','2005-07-31 23:57:43.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1383','50','2','10261','4.99','2005-08-01 02:58:27.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1384','50','2','10485','7.99','2005-08-01 10:20:34.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1385','50','2','11053','3.99','2005-08-02 06:27:13.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1386','50','1','12766','6.99','2005-08-18 23:25:20.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1387','50','2','13136','7.99','2005-08-19 12:24:23.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1388','50','1','14054','4.99','2005-08-20 22:17:01.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1389','50','2','15138','2.99','2005-08-22 13:36:30.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1390','50','2','15388','6.99','2005-08-22 22:49:23.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1391','50','1','16015','4.99','2005-08-23 21:25:03.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1392','51','2','119','4.99','2005-05-25 19:37:02.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1393','51','1','661','4.99','2005-05-28 21:01:25.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1394','51','2','1028','4.99','2005-05-31 03:48:05.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1395','51','2','1373','1.99','2005-06-15 14:48:04.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1396','51','1','1477','0.99','2005-06-15 21:11:18.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1397','51','1','3525','9.99','2005-07-06 01:02:39.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1398','51','1','5230','2.99','2005-07-09 12:30:23.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1399','51','2','5304','5.99','2005-07-09 15:48:06.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1400','51','1','5473','7.99','2005-07-09 23:19:11.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1401','51','1','5606','4.99','2005-07-10 05:07:55.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1402','51','1','7207','5.99','2005-07-27 09:13:26.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1403','51','1','7398','6.99','2005-07-27 16:07:22.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1404','51','1','7636','5.99','2005-07-28 01:08:36.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1405','51','1','8495','4.99','2005-07-29 09:05:06.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1406','51','1','8693','0.99','2005-07-29 16:44:13.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1407','51','1','8880','0.99','2005-07-30 00:16:55.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1408','51','2','9649','0.99','2005-07-31 05:46:54.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1409','51','2','10244','4.99','2005-08-01 02:20:01.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1410','51','1','10780','2.99','2005-08-01 21:14:24.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1411','51','1','10894','0.99','2005-08-02 01:12:35.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1412','51','1','11302','2.99','2005-08-02 15:38:03.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1413','51','2','11685','4.99','2005-08-17 06:39:16.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1414','51','2','11751','6.99','2005-08-17 09:07:56.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1415','51','1','12184','0.99','2005-08-18 01:36:00.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1416','51','1','12725','4.99','2005-08-18 21:43:09.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1417','51','2','13098','2.99','2005-08-19 10:51:59.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1418','51','1','13302','2.99','2005-08-19 18:54:26.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1419','51','1','13868','0.99','2005-08-20 15:06:26.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1420','51','2','13882','2.99','2005-08-20 15:23:26.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1421','51','2','14221','6.99','2005-08-21 04:49:41.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1422','51','2','14512','4.99','2005-08-21 14:47:09.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1423','51','1','14617','4.99','2005-08-21 18:07:40.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1424','51','1','14903','4.99','2005-08-22 04:31:50.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1425','52','1','874','0.99','2005-05-30 05:36:21.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1426','52','1','1196','4.99','2005-06-15 01:38:31.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1427','52','2','2232','0.99','2005-06-18 03:54:31.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1428','52','1','2862','2.99','2005-06-19 23:47:24.000','2006-02-15 22:12:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1429','52','2','3196','4.99','2005-06-21 00:02:28.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1430','52','1','3997','1.99','2005-07-06 23:46:52.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1431','52','1','5308','0.99','2005-07-09 15:58:38.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1432','52','2','5313','3.99','2005-07-09 16:04:45.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1433','52','1','5607','2.99','2005-07-10 05:08:10.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1434','52','1','6394','7.99','2005-07-11 22:29:15.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1435','52','2','7284','0.99','2005-07-27 12:12:04.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1436','52','2','7438','5.99','2005-07-27 17:40:40.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1437','52','2','7627','4.99','2005-07-28 00:56:47.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1438','52','1','8686','4.99','2005-07-29 16:17:49.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1439','52','1','9029','4.99','2005-07-30 06:03:11.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1440','52','2','9749','3.99','2005-07-31 09:18:33.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1441','52','2','9797','4.99','2005-07-31 10:53:44.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1442','52','2','10591','0.99','2005-08-01 14:12:29.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1443','52','1','10635','0.99','2005-08-01 15:37:58.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1444','52','1','11068','0.99','2005-08-02 07:08:07.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1445','52','1','11731','3.99','2005-08-17 08:24:35.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1446','52','2','12200','2.99','2005-08-18 02:12:33.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1447','52','2','12520','0.99','2005-08-18 13:42:45.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1448','52','2','13090','5.99','2005-08-19 10:39:54.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1449','52','2','14820','2.99','2005-08-22 01:18:37.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1450','52','1','14822','5.99','2005-08-22 01:21:14.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1451','52','2','14961','6.99','2005-08-22 06:35:50.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1452','52','2','15891','5.99','2005-08-23 17:00:12.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1453','52','1','12001','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1454','53','1','88','3.99','2005-05-25 14:13:54.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1455','53','1','378','2.99','2005-05-27 09:23:22.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1456','53','1','751','0.99','2005-05-29 09:55:43.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1457','53','2','783','5.99','2005-05-29 14:41:18.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1458','53','2','856','9.99','2005-05-30 02:01:21.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1459','53','1','1107','2.99','2005-05-31 15:04:05.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1460','53','1','1964','0.99','2005-06-17 09:10:09.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1461','53','1','2388','2.99','2005-06-18 15:26:30.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1462','53','1','2903','2.99','2005-06-20 02:49:01.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1463','53','2','3140','2.99','2005-06-20 19:47:12.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1464','53','2','3244','0.99','2005-06-21 03:01:10.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1465','53','2','3591','2.99','2005-07-06 04:37:10.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1466','53','2','3898','4.99','2005-07-06 19:12:37.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1467','53','2','5185','2.99','2005-07-09 10:14:39.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1468','53','2','7466','2.99','2005-07-27 18:51:17.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1469','53','1','7699','4.99','2005-07-28 03:52:21.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1470','53','1','9343','4.99','2005-07-30 18:13:13.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1471','53','1','9928','7.99','2005-07-31 15:13:57.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1472','53','1','10594','3.99','2005-08-01 14:14:59.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1473','53','1','12054','5.99','2005-08-17 20:59:56.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1474','53','1','12580','2.99','2005-08-18 15:49:08.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1475','53','1','13049','5.99','2005-08-19 09:25:40.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1476','53','2','13789','2.99','2005-08-20 12:16:38.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1477','53','1','14061','2.99','2005-08-20 22:32:11.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1478','53','2','14091','0.99','2005-08-21 00:11:17.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1479','53','2','14119','5.99','2005-08-21 01:15:59.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1480','53','1','14671','4.99','2005-08-21 19:59:30.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1481','53','2','14811','0.99','2005-08-22 01:09:04.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1482','53','2','11657','7.98','2006-02-14 15:16:03.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1483','53','1','14137','0','2006-02-14 15:16:03.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1484','54','2','198','4.99','2005-05-26 07:03:49.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1485','54','2','441','4.99','2005-05-27 18:11:05.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1486','54','2','545','3.99','2005-05-28 07:10:20.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1487','54','1','1556','4.99','2005-06-16 02:19:02.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1488','54','1','1571','2.99','2005-06-16 03:22:00.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1489','54','2','2323','6.99','2005-06-18 09:55:02.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1490','54','1','2647','4.99','2005-06-19 09:57:56.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1491','54','2','4657','4.99','2005-07-08 09:51:02.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1492','54','2','5055','1.99','2005-07-09 04:05:28.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1493','54','1','5929','2.99','2005-07-10 21:59:29.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1494','54','1','5992','2.99','2005-07-11 01:06:21.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1495','54','1','6338','7.99','2005-07-11 19:39:41.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1496','54','2','6560','2.99','2005-07-12 05:22:06.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1497','54','1','6813','0.99','2005-07-12 18:03:50.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1498','54','2','8992','4.99','2005-07-30 04:44:18.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1499','54','2','10489','5.99','2005-08-01 10:27:42.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1500','54','2','10882','5.99','2005-08-02 00:47:16.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1501','54','1','10956','4.99','2005-08-02 03:33:14.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1502','54','1','11182','4.99','2005-08-02 10:55:14.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1503','54','2','11887','2.99','2005-08-17 15:03:13.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1504','54','1','12526','2.99','2005-08-18 13:48:43.000','2006-02-15 22:12:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1505','54','2','12775','5.99','2005-08-18 23:35:56.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1506','54','1','12811','4.99','2005-08-19 00:51:28.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1507','54','2','12872','0.99','2005-08-19 02:57:37.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1508','54','2','13315','2.99','2005-08-19 19:16:18.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1509','54','1','13890','0.99','2005-08-20 15:41:00.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1510','54','1','14215','4.99','2005-08-21 04:34:11.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1511','54','1','15226','10.99','2005-08-22 17:20:17.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1512','54','1','15567','4.99','2005-08-23 05:20:36.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1513','55','1','555','4.99','2005-05-28 08:31:14.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1514','55','1','1027','9.99','2005-05-31 03:46:19.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1515','55','1','1048','0.99','2005-05-31 06:49:53.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1516','55','2','1825','2.99','2005-06-16 21:53:05.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1517','55','2','2062','2.99','2005-06-17 15:56:43.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1518','55','1','2904','2.99','2005-06-20 02:54:06.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1519','55','1','2976','4.99','2005-06-20 08:09:11.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1520','55','1','3149','4.99','2005-06-20 20:34:55.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1521','55','1','4671','4.99','2005-07-08 10:15:32.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1522','55','2','6314','7.99','2005-07-11 18:32:44.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1523','55','2','7050','4.99','2005-07-27 03:33:17.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1524','55','2','8288','6.99','2005-07-29 02:04:22.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1525','55','1','9302','2.99','2005-07-30 16:34:57.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1526','55','2','9596','5.99','2005-07-31 03:28:47.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1527','55','2','9798','2.99','2005-07-31 10:55:18.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1528','55','2','11287','1.99','2005-08-02 14:49:51.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1529','55','1','12776','4.99','2005-08-18 23:37:33.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1530','55','1','12808','4.99','2005-08-19 00:40:41.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1531','55','2','12972','1.99','2005-08-19 06:43:28.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1532','55','1','13345','6.99','2005-08-19 20:25:24.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1533','55','1','14667','2.99','2005-08-21 19:51:11.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1534','55','1','15296','4.99','2005-08-22 19:37:20.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1535','56','1','130','3.99','2005-05-25 21:21:56.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1536','56','1','341','5.99','2005-05-27 04:01:42.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1537','56','1','496','2.99','2005-05-28 00:43:41.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1538','56','1','569','6.99','2005-05-28 10:12:41.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1539','56','2','1795','6.99','2005-06-16 20:09:01.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1540','56','1','2140','0.99','2005-06-17 21:40:29.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1541','56','1','2485','4.99','2005-06-18 21:26:03.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1542','56','1','2989','0.99','2005-06-20 08:59:37.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1543','56','1','3718','7.99','2005-07-06 10:57:56.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1544','56','2','3771','2.99','2005-07-06 13:19:34.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1545','56','1','4097','3.99','2005-07-07 06:10:55.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1546','56','2','4702','4.99','2005-07-08 11:41:36.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1547','56','1','5142','4.99','2005-07-09 08:05:23.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1548','56','1','7385','2.99','2005-07-27 15:49:46.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1549','56','1','7696','7.99','2005-07-28 03:41:35.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1550','56','2','7942','0.99','2005-07-28 12:49:44.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1551','56','1','8285','0.99','2005-07-29 02:00:18.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1552','56','2','10356','6.99','2005-08-01 05:49:17.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1553','56','2','10678','0.99','2005-08-01 17:26:24.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1554','56','1','10946','4.99','2005-08-02 03:20:39.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1555','56','1','11358','5.99','2005-08-02 17:45:02.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1556','56','1','11656','4.99','2005-08-17 05:11:09.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1557','56','2','12537','1.99','2005-08-18 14:06:39.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1558','56','2','12713','4.99','2005-08-18 21:07:28.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1559','56','2','13560','8.99','2005-08-20 04:17:16.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1560','56','1','13769','5.99','2005-08-20 11:43:52.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1561','56','2','14291','3.99','2005-08-21 07:03:05.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1562','56','2','14534','0.99','2005-08-21 15:16:29.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1563','56','2','15702','7.99','2005-08-23 10:23:28.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1564','56','2','15714','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1565','57','2','152','9.99','2005-05-26 00:41:10.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1566','57','2','943','4.99','2005-05-30 15:20:19.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1567','57','1','2058','5.99','2005-06-17 15:34:41.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1568','57','1','2105','0.99','2005-06-17 19:15:45.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1569','57','1','2360','4.99','2005-06-18 13:11:13.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1570','57','2','2910','7.99','2005-06-20 03:31:18.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1571','57','1','3357','0.99','2005-06-21 11:55:42.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1572','57','1','3727','4.99','2005-07-06 11:16:43.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1573','57','2','4226','4.99','2005-07-07 12:37:56.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1574','57','1','5060','4.99','2005-07-09 04:28:03.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1575','57','1','5694','0.99','2005-07-10 09:40:38.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1576','57','2','5948','2.99','2005-07-10 23:12:08.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1577','57','2','6482','4.99','2005-07-12 01:50:21.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1578','57','1','6494','1.99','2005-07-12 02:42:51.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1579','57','2','6649','4.99','2005-07-12 10:51:09.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1580','57','2','8249','5.99','2005-07-29 00:48:44.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1581','57','1','9086','0.99','2005-07-30 08:18:46.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1582','57','2','9136','0.99','2005-07-30 10:07:20.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1583','57','1','9211','1.99','2005-07-30 12:59:45.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1584','57','1','9703','0.99','2005-07-31 07:34:52.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1585','57','2','9812','2.99','2005-07-31 11:28:07.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1586','57','2','10169','4.99','2005-07-31 23:27:13.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1587','57','2','12925','5.99','2005-08-19 04:59:01.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1588','57','2','13163','0.99','2005-08-19 13:29:46.000','2006-02-15 22:12:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1589','57','2','13743','0.99','2005-08-20 10:51:27.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1590','57','2','13929','9.99','2005-08-20 17:13:48.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1591','57','2','15571','0.99','2005-08-23 05:26:30.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1592','57','2','15871','9.99','2005-08-23 16:24:24.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1593','58','1','230','0.99','2005-05-26 11:31:50.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1594','58','2','276','7.99','2005-05-26 17:16:07.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1595','58','2','761','0.99','2005-05-29 11:09:01.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1596','58','1','2191','4.99','2005-06-18 01:33:09.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1597','58','2','2543','0.99','2005-06-19 02:14:11.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1598','58','1','2906','0.99','2005-06-20 03:04:56.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1599','58','1','3685','4.99','2005-07-06 09:30:45.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1600','58','2','4131','4.99','2005-07-07 07:53:18.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1601','58','2','5439','1.99','2005-07-09 21:39:35.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1602','58','1','7063','9.99','2005-07-27 03:52:27.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1603','58','2','7487','4.99','2005-07-27 19:32:45.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1604','58','1','8853','0.99','2005-07-29 23:34:21.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1605','58','2','9561','2.99','2005-07-31 02:22:13.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1606','58','2','10037','2.99','2005-07-31 18:48:08.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1607','58','1','10068','4.99','2005-07-31 19:39:38.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1608','58','2','10256','4.99','2005-08-01 02:47:11.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1609','58','1','10668','0.99','2005-08-01 17:00:27.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1610','58','1','11416','6.99','2005-08-02 19:44:04.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1611','58','2','12292','8.99','2005-08-18 05:08:54.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1612','58','1','13194','6.99','2005-08-19 14:34:12.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1613','58','1','13207','3.99','2005-08-19 15:14:38.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1614','58','1','13930','2.99','2005-08-20 17:15:06.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1615','58','2','13973','4.99','2005-08-20 18:52:43.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1616','58','2','14305','5.99','2005-08-21 07:29:05.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1617','58','1','14665','6.99','2005-08-21 19:49:46.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1618','58','1','14989','4.99','2005-08-22 07:47:07.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1619','58','2','15326','0.99','2006-02-14 15:16:03.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1620','59','2','212','4.99','2005-05-26 08:34:41.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1621','59','2','951','2.99','2005-05-30 16:10:35.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1622','59','1','1154','5.99','2005-05-31 21:42:09.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1623','59','1','1269','2.99','2005-06-15 07:29:59.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1624','59','1','1728','3.99','2005-06-16 15:29:29.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1625','59','1','2921','3.99','2005-06-20 04:13:04.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1626','59','2','4148','2.99','2005-07-07 08:36:58.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1627','59','1','4384','4.99','2005-07-07 20:46:45.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1628','59','1','4631','4.99','2005-07-08 08:38:22.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1629','59','1','4891','3.99','2005-07-08 20:06:19.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1630','59','2','5195','8.99','2005-07-09 10:39:31.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1631','59','1','5207','3.99','2005-07-09 11:15:44.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1632','59','1','5830','4.99','2005-07-10 16:34:00.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1633','59','1','7991','4.99','2005-07-28 14:45:45.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1634','59','2','8643','4.99','2005-07-29 14:45:23.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1635','59','1','9469','8.99','2005-07-30 22:56:34.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1636','59','2','9573','6.99','2005-07-31 02:45:38.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1637','59','2','11396','4.99','2005-08-02 18:48:29.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1638','59','1','12833','5.99','2005-08-19 01:42:28.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1639','59','2','13282','2.99','2005-08-19 18:08:18.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1640','59','1','13573','2.99','2005-08-20 05:10:14.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1641','59','2','13921','4.99','2005-08-20 16:57:11.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1642','59','1','14135','5.99','2005-08-21 01:53:54.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1643','59','1','14977','5.99','2005-08-22 07:12:53.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1644','59','2','15271','5.99','2005-08-22 18:48:48.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1645','59','2','15744','4.99','2005-08-23 12:15:51.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1646','59','2','15905','2.99','2005-08-23 17:33:04.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1647','60','1','318','4.99','2005-05-26 23:37:39.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1648','60','2','706','1.99','2005-05-29 03:05:49.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1649','60','2','934','2.99','2005-05-30 13:24:46.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1650','60','2','1482','4.99','2005-06-15 21:18:16.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1651','60','2','2394','4.99','2005-06-18 15:42:30.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1652','60','2','3473','2.99','2005-07-05 22:57:34.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1653','60','1','3849','2.99','2005-07-06 16:49:43.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1654','60','1','6282','5.99','2005-07-11 16:46:22.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1655','60','2','7067','0.99','2005-07-27 03:55:10.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1656','60','1','7331','3.99','2005-07-27 13:57:50.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1657','60','1','7494','0.99','2005-07-27 19:56:31.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1658','60','1','9356','4.99','2005-07-30 18:36:24.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1659','60','1','9761','4.99','2005-07-31 09:31:54.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1660','60','2','10680','0.99','2005-08-01 17:28:05.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1661','60','1','11092','4.99','2005-08-02 07:58:50.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1662','60','1','11404','8.99','2005-08-02 19:12:40.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1663','60','1','12084','1.99','2005-08-17 22:16:49.000','2006-02-15 22:12:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1664','60','2','12614','7.99','2005-08-18 17:16:03.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1665','60','1','15093','2.99','2005-08-22 11:39:03.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1666','60','1','15318','2.99','2005-08-22 20:15:16.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1667','60','1','15618','5.99','2005-08-23 07:07:58.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1668','60','1','15632','0.99','2005-08-23 07:30:26.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1669','60','1','15649','2.99','2005-08-23 08:28:03.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1670','60','2','12489','9.98','2006-02-14 15:16:03.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1671','60','2','14741','0','2006-02-14 15:16:03.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1672','61','1','1157','0.99','2005-05-31 22:47:45.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1673','61','1','7027','7.99','2005-07-27 02:50:15.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1674','61','2','7071','1.99','2005-07-27 04:01:15.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1675','61','2','8029','6.99','2005-07-28 16:11:21.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1676','61','2','8075','4.99','2005-07-28 17:37:28.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1677','61','1','8651','3.99','2005-07-29 15:02:18.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1678','61','2','9597','6.99','2005-07-31 03:29:07.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1679','61','2','10549','0.99','2005-08-01 12:46:39.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1680','61','2','11379','2.99','2005-08-02 18:16:55.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1681','61','1','12072','9.99','2005-08-17 21:50:25.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1682','61','1','13450','0.99','2005-08-20 00:18:15.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1683','61','1','13830','0.99','2005-08-20 13:57:59.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1684','61','2','15089','6.99','2005-08-22 11:34:06.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1685','61','1','15681','1.99','2005-08-23 09:35:34.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1686','62','2','885','0.99','2005-05-30 06:54:28.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1687','62','1','947','4.99','2005-05-30 15:36:57.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1688','62','2','1241','6.99','2005-06-15 04:59:43.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1689','62','1','1486','0.99','2005-06-15 21:25:30.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1690','62','1','1587','0.99','2005-06-16 04:52:28.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1691','62','2','3021','4.99','2005-06-20 11:13:01.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1692','62','1','3035','5.99','2005-06-20 12:17:03.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1693','62','1','3287','0.99','2005-06-21 06:32:39.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1694','62','1','3327','3.99','2005-06-21 09:04:50.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1695','62','2','3843','2.99','2005-07-06 16:35:40.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1696','62','2','4159','4.99','2005-07-07 09:10:57.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1697','62','2','5292','2.99','2005-07-09 15:16:54.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1698','62','2','8360','4.99','2005-07-29 05:08:00.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1699','62','2','10080','0.99','2005-07-31 20:07:10.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1700','62','1','10815','2.99','2005-08-01 22:46:21.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1701','62','1','11297','5.99','2005-08-02 15:22:47.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1702','62','1','11988','0.99','2005-08-17 18:23:50.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1703','62','2','13512','8.99','2005-08-20 02:27:13.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1704','62','2','14574','1.99','2005-08-21 16:50:34.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1705','62','2','14594','2.99','2005-08-21 17:34:24.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1706','62','2','14821','4.99','2005-08-22 01:20:19.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1707','62','1','15464','6.99','2005-08-23 01:15:18.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1708','62','1','15591','0.99','2005-08-23 06:11:52.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1709','63','2','1818','0.99','2005-06-16 21:30:34.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1710','63','2','3923','8.99','2005-07-06 20:34:10.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1711','63','1','4587','4.99','2005-07-08 06:16:26.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1712','63','1','5585','6.99','2005-07-10 04:15:43.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1713','63','2','5788','4.99','2005-07-10 14:10:22.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1714','63','2','5832','4.99','2005-07-10 16:34:48.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1715','63','2','6769','3.99','2005-07-12 15:48:54.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1716','63','2','6847','8.99','2005-07-12 19:22:37.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1717','63','2','8311','5.99','2005-07-29 03:26:07.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1718','63','2','9007','0.99','2005-07-30 05:09:32.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1719','63','1','9546','4.99','2005-07-31 01:47:40.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1720','63','2','9549','3.99','2005-07-31 01:57:04.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1721','63','1','9795','0.99','2005-07-31 10:47:19.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1722','63','2','9938','2.99','2005-07-31 15:28:47.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1723','63','2','10148','0.99','2005-07-31 22:19:16.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1724','63','1','10288','6.99','2005-08-01 03:38:42.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1725','63','1','11902','4.99','2005-08-17 15:37:34.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1726','63','2','12342','2.99','2005-08-18 07:12:46.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1727','63','2','12515','0.99','2005-08-18 13:39:26.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1728','63','1','12954','7.99','2005-08-19 06:04:34.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1729','63','1','13089','0.99','2005-08-19 10:38:56.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1730','63','1','13624','8.99','2005-08-20 06:51:02.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1731','63','1','14931','3.99','2005-08-22 05:38:55.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1732','63','1','15060','5.99','2005-08-22 10:24:32.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1733','63','1','15229','2.99','2005-08-22 17:30:25.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1734','64','1','494','4.99','2005-05-28 00:39:31.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1735','64','1','587','0.99','2005-05-28 12:05:33.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1736','64','1','1001','2.99','2005-05-31 00:46:31.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1737','64','2','1335','0.99','2005-06-15 11:51:30.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1738','64','1','2060','2.99','2005-06-17 15:42:42.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1739','64','2','3982','0.99','2005-07-06 23:14:16.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1740','64','1','4288','4.99','2005-07-07 15:38:25.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1741','64','1','4690','1.99','2005-07-08 11:04:02.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1742','64','2','4819','5.99','2005-07-08 17:19:15.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1743','64','2','4971','5.99','2005-07-08 23:54:49.000','2006-02-15 22:12:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1744','64','1','5114','3.99','2005-07-09 07:07:05.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1745','64','2','5279','2.99','2005-07-09 14:46:36.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1746','64','1','5432','0.99','2005-07-09 21:21:25.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1747','64','2','6372','2.99','2005-07-11 21:35:06.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1748','64','2','6457','0.99','2005-07-12 01:06:35.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1749','64','2','6698','1.99','2005-07-12 12:45:00.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1750','64','2','6744','0.99','2005-07-12 14:30:28.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1751','64','2','7045','0.99','2005-07-27 03:27:35.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1752','64','1','7082','2.99','2005-07-27 04:27:32.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1753','64','1','7476','1.99','2005-07-27 19:08:56.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1754','64','2','8602','4.99','2005-07-29 13:04:27.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1755','64','1','9832','2.99','2005-07-31 12:01:49.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1756','64','1','9880','6.99','2005-07-31 13:49:02.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1757','64','1','9924','3.99','2005-07-31 15:04:57.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1758','64','2','10185','0.99','2005-08-01 00:12:11.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1759','64','2','10714','4.99','2005-08-01 18:51:29.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1760','64','1','10889','4.99','2005-08-02 00:54:33.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1761','64','1','12409','0.99','2005-08-18 09:43:58.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1762','64','1','13773','2.99','2005-08-20 11:50:14.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1763','64','1','13971','0.99','2005-08-20 18:44:53.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1764','64','1','14167','5.99','2005-08-21 02:59:48.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1765','64','2','14316','0.99','2005-08-21 07:59:47.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1766','64','2','13333','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1767','65','1','295','4.99','2005-05-26 20:33:20.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1768','65','2','657','0.99','2005-05-28 20:23:09.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1769','65','1','2173','7.99','2005-06-18 00:08:20.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1770','65','1','3051','4.99','2005-06-20 13:06:52.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1771','65','1','3535','4.99','2005-07-06 01:32:46.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1772','65','1','4240','4.99','2005-07-07 13:33:12.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1773','65','2','4635','3.99','2005-07-08 08:42:40.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1774','65','1','5735','3.99','2005-07-10 11:39:15.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1775','65','2','6527','0.99','2005-07-12 04:23:06.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1776','65','1','7877','6.99','2005-07-28 10:25:36.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1777','65','2','8392','1.99','2005-07-29 06:00:27.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1778','65','2','8404','5.99','2005-07-29 06:27:01.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1779','65','1','9293','3.99','2005-07-30 16:12:28.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1780','65','2','11100','5.99','2005-08-02 08:08:00.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1781','65','1','11227','8.99','2005-08-02 12:48:05.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1782','65','2','11461','4.99','2005-08-02 21:35:00.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1783','65','2','11845','2.99','2005-08-17 13:16:38.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1784','65','1','12114','7.99','2005-08-17 23:02:00.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1785','65','1','12688','6.99','2005-08-18 19:59:54.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1786','65','2','13692','0.99','2005-08-20 09:07:52.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1787','65','2','14140','6.99','2005-08-21 02:04:57.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1788','65','1','14356','0.99','2005-08-21 09:08:51.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1789','66','2','933','4.99','2005-05-30 13:08:45.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1790','66','1','1236','2.99','2005-06-15 04:34:27.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1791','66','1','1907','2.99','2005-06-17 05:08:27.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1792','66','1','2106','4.99','2005-06-17 19:29:03.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1793','66','2','2571','2.99','2005-06-19 04:20:14.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1794','66','1','2577','4.99','2005-06-19 04:36:03.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1795','66','1','3334','3.99','2005-06-21 10:04:33.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1796','66','2','3395','6.99','2005-06-21 15:19:19.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1797','66','1','3573','4.99','2005-07-06 03:33:48.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1798','66','2','3757','2.99','2005-07-06 12:42:26.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1799','66','2','4088','2.99','2005-07-07 05:31:55.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1800','66','1','4108','4.99','2005-07-07 06:38:31.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1801','66','2','4165','6.99','2005-07-07 09:23:27.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1802','66','2','4911','5.99','2005-07-08 21:20:26.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1803','66','2','5915','0.99','2005-07-10 21:12:16.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1804','66','1','6290','8.99','2005-07-11 17:12:42.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1805','66','2','6348','5.99','2005-07-11 20:21:18.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1806','66','1','6402','3.99','2005-07-11 22:46:10.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1807','66','1','6995','2.99','2005-07-27 01:12:13.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1808','66','1','7872','2.99','2005-07-28 10:18:16.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1809','66','1','9091','5.99','2005-07-30 08:30:45.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1810','66','1','10419','0.99','2005-08-01 08:13:22.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1811','66','2','11028','5.99','2005-08-02 05:48:20.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1812','66','2','11360','2.99','2005-08-02 17:46:04.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1813','66','1','11683','5.99','2005-08-17 06:15:17.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1814','66','1','11935','0.99','2005-08-17 16:42:13.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1815','66','1','12699','0.99','2005-08-18 20:20:59.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1816','66','1','13900','2.99','2005-08-20 16:05:41.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1817','66','2','14123','2.99','2005-08-21 01:31:25.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1818','66','1','14217','6.99','2005-08-21 04:37:56.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1819','66','2','14351','2.99','2005-08-21 09:04:20.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1820','66','2','14429','0.99','2005-08-21 11:29:43.000','2006-02-15 22:12:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1821','66','2','15026','4.99','2005-08-22 09:01:52.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1822','66','1','15598','8.99','2005-08-23 06:23:26.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1823','67','2','331','9.99','2005-05-27 02:22:26.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1824','67','1','767','2.99','2005-05-29 12:20:19.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1825','67','1','2064','3.99','2005-06-17 15:57:56.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1826','67','1','2542','3.99','2005-06-19 02:08:39.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1827','67','2','2810','0.99','2005-06-19 19:44:12.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1828','67','1','3359','4.99','2005-06-21 12:08:18.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1829','67','2','4090','4.99','2005-07-07 05:47:33.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1830','67','2','5399','2.99','2005-07-09 19:52:44.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1831','67','2','5510','2.99','2005-07-10 00:58:37.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1832','67','1','6137','2.99','2005-07-11 08:34:20.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1833','67','2','7277','5.99','2005-07-27 11:48:37.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1834','67','2','7895','0.99','2005-07-28 10:57:15.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1835','67','2','8563','1.99','2005-07-29 11:32:58.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1836','67','1','9640','7.99','2005-07-31 05:33:25.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1837','67','1','11295','8.99','2005-08-02 15:10:06.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1838','67','1','11894','8.99','2005-08-17 15:15:01.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1839','67','2','13437','4.99','2005-08-19 23:37:52.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1840','67','1','13652','2.99','2005-08-20 07:52:34.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1841','67','2','13791','4.99','2005-08-20 12:21:05.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1842','67','2','13837','2.99','2005-08-20 14:19:03.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1843','67','2','14967','4.99','2005-08-22 06:46:03.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1844','67','2','15085','2.99','2005-08-22 11:19:22.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1845','68','2','1828','5.99','2005-06-16 22:04:34.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1846','68','2','1957','8.99','2005-06-17 08:50:58.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1847','68','2','2633','2.99','2005-06-19 08:53:10.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1848','68','2','2662','4.99','2005-06-19 10:53:42.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1849','68','1','2686','2.99','2005-06-19 12:44:20.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1850','68','1','3598','0.99','2005-07-06 05:11:04.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1851','68','2','3801','4.99','2005-07-06 15:05:50.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1852','68','1','3864','0.99','2005-07-06 17:41:42.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1853','68','2','4555','6.99','2005-07-08 04:48:36.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1854','68','1','4925','3.99','2005-07-08 21:56:00.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1855','68','1','6512','4.99','2005-07-12 03:42:49.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1856','68','2','9339','3.99','2005-07-30 18:03:28.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1857','68','1','9538','3.99','2005-07-31 01:25:22.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1858','68','2','9642','4.99','2005-07-31 05:33:57.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1859','68','1','10115','7.99','2005-07-31 21:13:47.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1860','68','1','11277','2.99','2005-08-02 14:28:50.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1861','68','2','12742','2.99','2005-08-18 22:22:03.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1862','68','2','13475','4.99','2005-08-20 01:05:05.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1863','68','2','14242','0.99','2005-08-21 05:25:59.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1864','68','2','14455','5.99','2005-08-21 12:36:11.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1865','68','1','14947','1.99','2005-08-22 06:07:52.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1866','68','1','15524','4.99','2005-08-23 03:36:26.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1867','69','2','584','4.99','2005-05-28 11:49:00.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1868','69','2','765','1.99','2005-05-29 11:38:34.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1869','69','1','1549','2.99','2005-06-16 01:57:15.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1870','69','1','3358','4.99','2005-06-21 11:56:40.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1871','69','1','3883','8.99','2005-07-06 18:39:38.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1872','69','1','4265','0.99','2005-07-07 14:27:51.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1873','69','1','4427','0.99','2005-07-07 22:28:51.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1874','69','2','5569','3.99','2005-07-10 03:38:32.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1875','69','2','6297','4.99','2005-07-11 17:37:22.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1876','69','1','6385','6.99','2005-07-11 22:07:32.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1877','69','2','6785','6.99','2005-07-12 16:30:57.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1878','69','2','8649','6.99','2005-07-29 14:57:33.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1879','69','2','9193','2.99','2005-07-30 12:28:42.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1880','69','1','9612','2.99','2005-07-31 03:58:31.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1881','69','2','10074','0.99','2005-07-31 19:57:16.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1882','69','1','11943','3.99','2005-08-17 17:00:42.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1883','69','1','12012','2.99','2005-08-17 19:20:48.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1884','69','1','12121','2.99','2005-08-17 23:20:40.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1885','69','1','12966','5.99','2005-08-19 06:37:48.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1886','69','1','13023','5.99','2005-08-19 08:13:54.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1887','69','2','14311','3.99','2005-08-21 07:45:47.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1888','69','2','14685','0.99','2005-08-21 20:31:25.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1889','69','2','14767','2.99','2005-08-21 23:43:00.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1890','69','1','15547','2.99','2005-08-23 04:25:50.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1891','69','2','11995','0.99','2006-02-14 15:16:03.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1892','70','2','1044','4.99','2005-05-31 06:24:44.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1893','70','1','2472','4.99','2005-06-18 20:32:40.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1894','70','1','4061','0.99','2005-07-07 04:13:35.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1895','70','1','5927','5.99','2005-07-10 21:57:14.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1896','70','2','7036','4.99','2005-07-27 03:06:12.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1897','70','2','7421','7.99','2005-07-27 17:10:05.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1898','70','1','7714','2.99','2005-07-28 04:32:30.000','2006-02-15 22:12:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1899','70','2','8550','0.99','2005-07-29 11:12:37.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1900','70','1','8747','2.99','2005-07-29 19:07:57.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1901','70','1','11274','9.99','2005-08-02 14:24:08.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1902','70','1','11901','2.99','2005-08-17 15:35:47.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1903','70','1','12003','4.99','2005-08-17 18:56:05.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1904','70','2','12218','4.99','2005-08-18 02:48:14.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1905','70','1','12581','6.99','2005-08-18 15:49:15.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1906','70','1','12951','3.99','2005-08-19 05:56:44.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1907','70','2','13680','4.99','2005-08-20 08:44:06.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1908','70','2','15238','0.99','2005-08-22 17:46:12.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1909','70','1','15616','3.99','2005-08-23 07:06:38.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1910','71','1','199','2.99','2005-05-26 07:11:58.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1911','71','1','272','9.99','2005-05-26 16:27:11.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1912','71','2','1873','2.99','2005-06-17 02:38:28.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1913','71','1','2374','4.99','2005-06-18 14:44:06.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1914','71','2','3345','5.99','2005-06-21 11:05:07.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1915','71','2','4614','4.99','2005-07-08 07:45:17.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1916','71','2','5281','1.99','2005-07-09 14:55:07.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1917','71','2','5358','3.99','2005-07-09 18:09:21.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1918','71','1','5543','8.99','2005-07-10 02:48:03.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1919','71','1','5770','4.99','2005-07-10 13:21:28.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1920','71','2','5814','4.99','2005-07-10 15:46:50.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1921','71','2','6020','0.99','2005-07-11 02:08:55.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1922','71','1','6739','5.99','2005-07-12 14:22:08.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1923','71','2','7160','0.99','2005-07-27 07:26:06.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1924','71','1','7550','4.99','2005-07-27 21:55:07.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1925','71','2','7982','4.99','2005-07-28 14:19:59.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1926','71','2','8128','2.99','2005-07-28 19:46:06.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1927','71','1','8293','2.99','2005-07-29 02:30:50.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1928','71','1','8574','1.99','2005-07-29 11:51:53.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1929','71','1','8668','4.99','2005-07-29 15:41:31.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1930','71','1','8783','3.99','2005-07-29 20:31:28.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1931','71','1','8789','4.99','2005-07-29 20:47:27.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1932','71','1','8956','0.99','2005-07-30 03:32:29.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1933','71','1','12417','4.99','2005-08-18 09:57:00.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1934','71','1','14105','7.99','2005-08-21 00:44:34.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1935','71','1','14228','3.99','2005-08-21 04:57:08.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1936','71','2','14781','4.99','2005-08-22 00:15:12.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1937','71','2','14904','3.99','2005-08-22 04:32:01.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1938','71','1','15704','4.99','2005-08-23 10:25:45.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1939','71','1','16000','0.99','2005-08-23 20:44:36.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1940','72','2','785','4.99','2005-05-29 15:08:41.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1941','72','2','845','4.99','2005-05-30 01:17:25.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1942','72','2','1047','0.99','2005-05-31 06:45:57.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1943','72','2','2294','4.99','2005-06-18 07:46:34.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1944','72','1','3700','0.99','2005-07-06 10:12:19.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1945','72','2','5223','4.99','2005-07-09 12:06:03.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1946','72','1','5302','4.99','2005-07-09 15:42:36.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1947','72','1','5424','0.99','2005-07-09 20:59:09.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1948','72','1','5840','4.99','2005-07-10 17:09:09.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1949','72','2','6081','0.99','2005-07-11 05:11:09.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1950','72','2','8228','4.99','2005-07-29 00:08:58.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1951','72','1','9027','2.99','2005-07-30 05:58:27.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1952','72','2','9420','5.99','2005-07-30 21:05:18.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1953','72','2','9648','4.99','2005-07-31 05:46:03.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1954','72','2','10267','0.99','2005-08-01 03:07:26.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1955','72','2','11206','6.99','2005-08-02 11:58:03.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1956','72','2','11422','5.99','2005-08-02 19:52:08.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1957','72','1','11630','2.99','2005-08-17 04:27:46.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1958','72','1','11679','4.99','2005-08-17 06:08:54.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1959','72','1','11923','2.99','2005-08-17 16:21:47.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1960','72','2','12020','2.99','2005-08-17 19:50:33.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1961','72','1','12448','0.99','2005-08-18 10:59:04.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1962','72','2','12593','0.99','2005-08-18 16:17:54.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1963','72','1','13145','0.99','2005-08-19 12:53:53.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1964','72','2','13327','4.99','2005-08-19 19:55:45.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1965','72','2','13597','0.99','2005-08-20 05:59:05.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1966','72','2','13660','4.99','2005-08-20 08:05:56.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1967','72','1','14020','0.99','2005-08-20 20:59:43.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1968','72','2','15110','0.99','2005-08-22 12:16:46.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1969','72','2','15146','2.99','2005-08-22 13:57:55.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1970','73','1','70','2.99','2005-05-25 10:15:23.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1971','73','2','1133','4.99','2005-05-31 19:12:21.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1972','73','1','1669','0.99','2005-06-16 10:20:20.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1973','73','2','2940','4.99','2005-06-20 05:20:01.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1974','73','2','4327','2.99','2005-07-07 18:01:39.000','2006-02-15 22:12:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1975','73','1','4789','4.99','2005-07-08 16:22:01.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1976','73','2','5021','4.99','2005-07-09 02:09:41.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1977','73','1','6514','9.99','2005-07-12 03:47:44.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1978','73','1','6645','2.99','2005-07-12 10:39:55.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1979','73','1','7590','4.99','2005-07-27 23:24:24.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1980','73','1','7683','4.99','2005-07-28 03:11:29.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1981','73','1','8377','4.99','2005-07-29 05:27:40.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1982','73','1','9212','2.99','2005-07-30 13:03:13.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1983','73','1','9776','2.99','2005-07-31 10:01:03.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1984','73','2','10434','4.99','2005-08-01 08:47:00.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1985','73','1','11102','4.99','2005-08-02 08:08:30.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1986','73','2','11155','0.99','2005-08-02 09:55:28.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1987','73','2','11349','4.99','2005-08-02 17:21:49.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1988','73','2','11609','3.99','2005-08-17 03:41:11.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1989','73','2','12291','4.99','2005-08-18 05:08:37.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1990','73','1','13886','4.99','2005-08-20 15:34:43.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1991','73','1','15667','0.99','2005-08-23 09:02:03.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1992','73','2','16002','2.99','2005-08-23 20:47:12.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1993','73','2','13108','2.99','2006-02-14 15:16:03.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1994','74','2','1121','6.99','2005-05-31 16:37:36.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1995','74','1','2498','1.99','2005-06-18 22:56:26.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1996','74','2','2517','0.99','2005-06-19 00:11:26.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1997','74','1','3020','1.99','2005-06-20 11:12:04.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1998','74','2','3445','7.99','2005-06-21 20:40:28.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('1999','74','2','3819','3.99','2005-07-06 15:35:06.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2000','74','1','5530','2.99','2005-07-10 02:13:49.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2001','74','2','5603','2.99','2005-07-10 05:04:54.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2002','74','2','5917','4.99','2005-07-10 21:30:22.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2003','74','1','6241','7.99','2005-07-11 14:40:48.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2004','74','1','6475','2.99','2005-07-12 01:36:57.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2005','74','1','7304','6.99','2005-07-27 12:56:56.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2006','74','2','8796','5.99','2005-07-29 21:09:11.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2007','74','2','9112','4.99','2005-07-30 09:06:31.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2008','74','2','10051','3.99','2005-07-31 19:14:20.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2009','74','1','10624','0.99','2005-08-01 15:27:05.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2010','74','2','12374','3.99','2005-08-18 08:07:45.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2011','74','2','12477','3.99','2005-08-18 12:25:01.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2012','74','2','13335','0.99','2005-08-19 20:03:18.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2013','74','2','13520','0.99','2005-08-20 02:41:46.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2014','74','1','13583','1.99','2005-08-20 05:29:45.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2015','74','2','13747','5.99','2005-08-20 10:56:06.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2016','74','1','15286','4.99','2005-08-22 19:17:56.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2017','74','2','15325','4.99','2005-08-22 20:27:38.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2018','74','2','15500','0.99','2005-08-23 02:39:37.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2019','74','2','15739','4.99','2005-08-23 11:56:22.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2020','74','1','16046','0.99','2005-08-23 22:26:47.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2021','75','1','180','4.99','2005-05-26 04:46:23.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2022','75','2','268','0.99','2005-05-26 16:19:08.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2023','75','1','1920','4.99','2005-06-17 06:00:23.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2024','75','1','2161','7.99','2005-06-17 23:39:50.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2025','75','2','2738','4.99','2005-06-19 15:56:30.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2026','75','2','3062','6.99','2005-06-20 13:50:00.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2027','75','1','3210','4.99','2005-06-21 01:00:25.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2028','75','1','3711','0.99','2005-07-06 10:46:15.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2029','75','2','4179','2.99','2005-07-07 10:17:15.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2030','75','2','4511','0.99','2005-07-08 02:36:21.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2031','75','1','4639','5.99','2005-07-08 08:57:21.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2032','75','2','5260','2.99','2005-07-09 14:05:45.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2033','75','2','6052','0.99','2005-07-11 03:51:27.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2034','75','1','6092','3.99','2005-07-11 05:51:31.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2035','75','1','6486','0.99','2005-07-12 02:09:36.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2036','75','2','6530','0.99','2005-07-12 04:33:19.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2037','75','2','6852','2.99','2005-07-12 19:33:49.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2038','75','1','7052','2.99','2005-07-27 03:36:38.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2039','75','1','7454','4.99','2005-07-27 18:27:26.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2040','75','1','7843','0.99','2005-07-28 09:10:22.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2041','75','2','7897','2.99','2005-07-28 11:01:51.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2042','75','2','8202','1.99','2005-07-28 23:11:45.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2043','75','1','8823','6.99','2005-07-29 22:22:12.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2044','75','2','9168','5.99','2005-07-30 11:31:17.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2045','75','2','9442','4.99','2005-07-30 21:44:31.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2046','75','2','9501','4.99','2005-07-30 23:59:21.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2047','75','1','9783','9.99','2005-07-31 10:15:46.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2048','75','2','10653','5.99','2005-08-01 16:28:07.000','2006-02-15 22:12:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2049','75','1','10726','3.99','2005-08-01 19:14:53.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2050','75','1','10871','4.99','2005-08-02 00:27:24.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2051','75','1','11330','0.99','2005-08-02 16:45:33.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2052','75','1','12002','2.99','2005-08-17 18:56:02.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2053','75','2','12239','0.99','2005-08-18 03:26:42.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2054','75','1','12336','1.99','2005-08-18 06:59:41.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2055','75','1','12412','5.99','2005-08-18 09:49:52.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2056','75','1','12426','4.99','2005-08-18 10:24:11.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2057','75','1','12662','0.99','2005-08-18 19:10:41.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2058','75','2','15928','5.99','2005-08-23 18:23:24.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2059','75','2','13534','8.97','2006-02-14 15:16:03.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2060','75','1','14488','0','2006-02-14 15:16:03.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2061','75','2','15191','0','2006-02-14 15:16:03.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2062','76','2','574','1.99','2005-05-28 10:44:28.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2063','76','1','926','0.99','2005-05-30 12:15:54.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2064','76','2','1487','0.99','2005-06-15 21:27:42.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2065','76','1','1791','6.99','2005-06-16 20:04:28.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2066','76','2','2111','0.99','2005-06-17 19:47:21.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2067','76','2','2397','1.99','2005-06-18 15:51:25.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2068','76','1','2894','0.99','2005-06-20 02:22:42.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2069','76','2','3416','0.99','2005-06-21 17:05:29.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2070','76','2','4099','4.99','2005-07-07 06:20:33.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2071','76','2','5571','0.99','2005-07-10 03:48:20.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2072','76','2','6789','0.99','2005-07-12 16:34:40.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2073','76','2','8253','6.99','2005-07-29 00:57:06.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2074','76','2','8357','2.99','2005-07-29 04:59:44.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2075','76','2','8405','3.99','2005-07-29 06:28:19.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2076','76','1','8935','0.99','2005-07-30 02:38:45.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2077','76','2','9312','2.99','2005-07-30 16:59:17.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2078','76','2','10082','0.99','2005-07-31 20:09:32.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2079','76','2','10795','4.99','2005-08-01 21:56:37.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2080','76','2','11172','7.99','2005-08-02 10:27:52.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2081','76','2','13697','3.99','2005-08-20 09:21:08.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2082','76','1','14637','2.99','2005-08-21 19:01:00.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2083','76','2','15169','4.99','2005-08-22 15:21:56.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2084','76','1','15566','10.99','2005-08-23 05:17:23.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2085','77','2','319','2.99','2005-05-26 23:52:13.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2086','77','1','419','1.99','2005-05-27 15:15:11.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2087','77','2','561','2.99','2005-05-28 08:54:06.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2088','77','1','586','0.99','2005-05-28 12:03:00.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2089','77','1','760','5.99','2005-05-29 11:07:25.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2090','77','1','1710','4.99','2005-06-16 14:11:24.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2091','77','1','2354','3.99','2005-06-18 12:54:18.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2092','77','2','2452','8.99','2005-06-18 19:29:21.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2093','77','1','3151','2.99','2005-06-20 20:36:53.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2094','77','2','3238','0.99','2005-06-21 02:48:21.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2095','77','2','4928','0.99','2005-07-08 22:05:41.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2096','77','2','6168','0.99','2005-07-11 10:21:38.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2097','77','2','6390','2.99','2005-07-11 22:19:23.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2098','77','1','7406','3.99','2005-07-27 16:25:45.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2099','77','1','7710','0.99','2005-07-28 04:24:07.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2100','77','2','8942','4.99','2005-07-30 03:01:07.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2101','77','1','9811','0.99','2005-07-31 11:23:45.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2102','77','2','10184','4.99','2005-08-01 00:09:33.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2103','77','1','10886','2.99','2005-08-02 00:52:34.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2104','77','1','10895','0.99','2005-08-02 01:16:59.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2105','77','2','10991','0.99','2005-08-02 04:41:12.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2106','77','1','11469','2.99','2005-08-02 21:48:09.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2107','77','2','11767','7.99','2005-08-17 10:00:40.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2108','77','1','12065','6.99','2005-08-17 21:31:46.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2109','77','2','12328','1.99','2005-08-18 06:43:56.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2110','77','2','13752','9.99','2005-08-20 11:17:45.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2111','77','2','14530','4.99','2005-08-21 15:10:50.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2112','77','2','15359','2.99','2005-08-22 21:34:00.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2113','78','1','2207','2.99','2005-06-18 02:19:21.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2114','78','2','2949','6.99','2005-06-20 06:05:53.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2115','78','2','3248','7.99','2005-06-21 03:12:21.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2116','78','1','3593','4.99','2005-07-06 04:39:52.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2117','78','2','4227','5.99','2005-07-07 12:41:36.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2118','78','2','4627','2.99','2005-07-08 08:24:39.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2119','78','2','4778','0.99','2005-07-08 15:51:51.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2120','78','1','5078','1.99','2005-07-09 05:20:24.000','2006-02-15 22:12:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2121','78','2','5604','0.99','2005-07-10 05:05:00.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2122','78','1','6005','0.99','2005-07-11 01:36:42.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2123','78','1','6344','4.99','2005-07-11 20:04:43.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2124','78','2','7200','1.99','2005-07-27 08:57:38.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2125','78','2','7747','4.99','2005-07-28 05:50:11.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2126','78','2','7926','3.99','2005-07-28 12:13:02.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2127','78','1','7957','6.99','2005-07-28 13:34:08.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2128','78','2','8920','4.99','2005-07-30 01:59:24.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2129','78','1','9068','5.99','2005-07-30 07:31:45.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2130','78','2','10350','3.99','2005-08-01 05:30:05.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2131','78','1','10590','2.99','2005-08-01 14:11:53.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2132','78','1','10831','7.99','2005-08-01 23:22:45.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2133','78','1','10942','10.99','2005-08-02 03:16:31.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2134','78','2','12474','8.99','2005-08-18 12:10:03.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2135','78','2','12653','4.99','2005-08-18 18:53:17.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2136','78','2','13124','5.99','2005-08-19 11:55:59.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2137','78','1','13432','0.99','2005-08-19 23:29:06.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2138','78','2','13792','5.99','2005-08-20 12:21:37.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2139','78','2','14620','2.99','2005-08-21 18:10:43.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2140','78','1','14716','0.99','2005-08-21 21:29:55.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2141','78','1','14810','2.99','2005-08-22 01:08:34.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2142','78','2','14862','7.99','2005-08-22 02:51:41.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2143','78','2','16039','2.99','2005-08-23 22:18:51.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2144','79','1','840','4.99','2005-05-30 00:28:41.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2145','79','1','859','2.99','2005-05-30 02:36:20.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2146','79','1','928','2.99','2005-05-30 12:27:14.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2147','79','2','3096','4.99','2005-06-20 16:17:56.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2148','79','2','3178','2.99','2005-06-20 22:35:12.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2149','79','1','3641','0.99','2005-07-06 07:17:09.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2150','79','1','3748','2.99','2005-07-06 12:11:22.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2151','79','2','4049','4.99','2005-07-07 03:34:53.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2152','79','1','4530','4.99','2005-07-08 03:27:05.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2153','79','2','4736','4.99','2005-07-08 13:22:55.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2154','79','2','5205','2.99','2005-07-09 10:56:37.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2155','79','1','5555','2.99','2005-07-10 03:08:55.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2156','79','2','6162','5.99','2005-07-11 10:12:30.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2157','79','1','7220','9.99','2005-07-27 09:35:54.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2158','79','1','8849','2.99','2005-07-29 23:21:01.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2159','79','1','9814','1.99','2005-07-31 11:29:46.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2160','79','2','9845','6.99','2005-07-31 12:28:05.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2161','79','1','9989','0.99','2005-07-31 17:22:39.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2162','79','1','10676','2.99','2005-08-01 17:14:15.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2163','79','2','11641','4.99','2005-08-17 04:45:39.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2164','79','2','13026','2.99','2005-08-19 08:22:45.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2165','79','1','14179','0.99','2005-08-21 03:14:27.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2166','80','1','2596','2.99','2005-06-19 05:48:26.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2167','80','2','2805','8.99','2005-06-19 19:29:17.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2168','80','1','3367','3.99','2005-06-21 13:08:21.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2169','80','2','3623','4.99','2005-07-06 06:05:23.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2170','80','2','4268','8.99','2005-07-07 14:36:05.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2171','80','2','4299','3.99','2005-07-07 16:33:48.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2172','80','1','4688','5.99','2005-07-08 11:03:29.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2173','80','2','5420','3.99','2005-07-09 20:48:42.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2174','80','2','5452','4.99','2005-07-09 22:23:21.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2175','80','1','6199','5.99','2005-07-11 12:16:03.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2176','80','2','6417','6.99','2005-07-11 23:35:11.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2177','80','2','6707','1.99','2005-07-12 13:07:55.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2178','80','2','7558','0.99','2005-07-27 22:19:08.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2179','80','1','8509','5.99','2005-07-29 09:38:19.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2180','80','1','8884','6.99','2005-07-30 00:26:22.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2181','80','1','10313','0.99','2005-08-01 04:29:29.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2182','80','1','10656','6.99','2005-08-01 16:38:04.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2183','80','1','10690','8.99','2005-08-01 18:05:54.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2184','80','2','11101','5.99','2005-08-02 08:08:24.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2185','80','2','11839','0.99','2005-08-17 13:08:45.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2186','80','1','11850','1.99','2005-08-17 13:30:15.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2187','80','2','12468','2.99','2005-08-18 11:41:47.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2188','80','1','13352','4.99','2005-08-19 20:51:40.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2189','80','2','13395','0.99','2005-08-19 22:05:40.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2190','80','1','13724','4.99','2005-08-20 10:07:28.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2191','80','2','13851','0.99','2005-08-20 14:44:22.000','2006-02-15 22:12:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2192','80','1','14916','0.99','2005-08-22 04:56:57.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2193','80','1','15648','8.99','2005-08-23 08:27:57.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2194','80','1','16012','5.99','2005-08-23 21:13:39.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2195','80','2','12457','2.99','2006-02-14 15:16:03.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2196','81','1','289','0.99','2005-05-26 20:01:09.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2197','81','1','2714','1.99','2005-06-19 14:26:09.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2198','81','1','2854','5.99','2005-06-19 23:11:48.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2199','81','1','3229','4.99','2005-06-21 02:20:41.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2200','81','1','3879','2.99','2005-07-06 18:31:20.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2201','81','2','4983','9.99','2005-07-09 00:34:16.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2202','81','1','5468','0.99','2005-07-09 23:06:09.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2203','81','2','7130','4.99','2005-07-27 06:23:36.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2204','81','1','7709','0.99','2005-07-28 04:22:14.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2205','81','2','9454','3.99','2005-07-30 22:20:09.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2206','81','2','10456','0.99','2005-08-01 09:17:21.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2207','81','1','11837','5.99','2005-08-17 13:04:41.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2208','81','2','12181','4.99','2005-08-18 01:28:18.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2209','81','2','13820','5.99','2005-08-20 13:26:37.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2210','81','1','14128','4.99','2005-08-21 01:35:58.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2211','81','1','14642','3.99','2005-08-21 19:09:40.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2212','81','2','14748','7.99','2005-08-21 23:02:02.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2213','81','1','15224','5.99','2005-08-22 17:18:05.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2214','81','1','15602','4.99','2005-08-23 06:41:07.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2215','81','1','15823','4.99','2005-08-23 15:08:00.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2216','81','1','15858','2.99','2005-08-23 16:07:15.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2217','81','2','15884','1.99','2005-08-23 16:45:28.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2218','82','2','145','2.99','2005-05-25 23:59:03.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2219','82','2','288','8.99','2005-05-26 19:47:49.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2220','82','1','1438','0.99','2005-06-15 18:38:51.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2221','82','2','1570','0.99','2005-06-16 03:21:33.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2222','82','1','2506','8.99','2005-06-18 23:29:53.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2223','82','1','2819','8.99','2005-06-19 20:13:33.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2224','82','2','3332','0.99','2005-06-21 09:55:12.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2225','82','1','3680','2.99','2005-07-06 09:16:10.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2226','82','1','4598','6.99','2005-07-08 06:46:26.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2227','82','2','5746','4.99','2005-07-10 12:15:12.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2228','82','2','6082','6.99','2005-07-11 05:12:41.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2229','82','2','6708','6.99','2005-07-12 13:10:55.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2230','82','2','7733','9.99','2005-07-28 05:04:47.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2231','82','2','7873','0.99','2005-07-28 10:19:46.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2232','82','1','8487','4.99','2005-07-29 08:53:49.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2233','82','2','9277','3.99','2005-07-30 15:13:45.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2234','82','1','9305','8.99','2005-07-30 16:45:56.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2235','82','1','9447','6.99','2005-07-30 21:54:22.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2236','82','1','11093','4.99','2005-08-02 07:59:49.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2237','82','2','11688','5.99','2005-08-17 06:41:58.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2238','82','1','12470','3.99','2005-08-18 11:55:42.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2239','82','1','13032','0.99','2005-08-19 08:31:50.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2240','82','2','13847','6.99','2005-08-20 14:33:59.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2241','82','2','14518','0.99','2005-08-21 14:58:58.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2242','82','2','14892','4.99','2005-08-22 04:15:05.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2243','82','2','15516','3.99','2005-08-23 03:12:54.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2244','83','2','222','0.99','2005-05-26 10:14:38.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2245','83','2','950','0.99','2005-05-30 16:06:08.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2246','83','2','989','2.99','2005-05-30 23:11:51.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2247','83','1','1354','5.99','2005-06-15 13:13:49.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2248','83','1','1591','5.99','2005-06-16 05:12:37.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2249','83','2','1617','3.99','2005-06-16 07:06:06.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2250','83','2','3230','4.99','2005-06-21 02:23:16.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2251','83','2','3722','6.99','2005-07-06 11:10:27.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2252','83','1','3754','2.99','2005-07-06 12:35:44.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2253','83','1','5218','0.99','2005-07-09 11:57:12.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2254','83','2','5394','6.99','2005-07-09 19:36:15.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2255','83','2','6194','2.99','2005-07-11 11:51:00.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2256','83','2','6861','2.99','2005-07-12 19:56:52.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2257','83','2','7721','0.99','2005-07-28 04:42:58.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2258','83','2','8729','4.99','2005-07-29 18:23:02.000','2006-02-15 22:12:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2259','83','1','9867','1.99','2005-07-31 13:17:04.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2260','83','1','11408','0.99','2005-08-02 19:25:13.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2261','83','1','11565','5.99','2005-08-17 01:28:05.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2262','83','2','11777','4.99','2005-08-17 10:27:19.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2263','83','1','12258','4.99','2005-08-18 04:11:13.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2264','83','2','12985','5.99','2005-08-19 07:08:05.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2265','83','1','13875','4.99','2005-08-20 15:13:11.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2266','83','2','15498','4.99','2005-08-23 02:33:27.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2267','83','2','15737','5.99','2005-08-23 11:52:18.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2268','83','2','11563','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2269','84','2','408','0.99','2005-05-27 13:57:39.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2270','84','1','739','6.99','2005-05-29 08:28:18.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2271','84','1','834','4.99','2005-05-29 23:24:30.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2272','84','2','1195','0.99','2005-06-15 01:37:38.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2273','84','2','1320','4.99','2005-06-15 10:42:13.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2274','84','2','1815','0.99','2005-06-16 21:16:07.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2275','84','1','2012','5.99','2005-06-17 11:57:15.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2276','84','2','2042','0.99','2005-06-17 14:31:02.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2277','84','2','2409','0.99','2005-06-18 16:53:33.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2278','84','2','4079','6.99','2005-07-07 05:06:27.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2279','84','2','4838','6.99','2005-07-08 18:11:00.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2280','84','1','5221','5.99','2005-07-09 12:02:23.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2281','84','1','5237','0.99','2005-07-09 12:56:58.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2282','84','1','5971','5.99','2005-07-11 00:05:58.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2283','84','2','6259','2.99','2005-07-11 15:25:52.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2284','84','2','6415','9.99','2005-07-11 23:27:52.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2285','84','1','7854','2.99','2005-07-28 09:42:31.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2286','84','2','8019','4.99','2005-07-28 15:37:43.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2287','84','1','8654','8.99','2005-07-29 15:04:27.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2288','84','2','9074','2.99','2005-07-30 07:50:10.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2289','84','2','9680','4.99','2005-07-31 06:41:46.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2290','84','2','10540','0.99','2005-08-01 12:24:42.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2291','84','1','10872','2.99','2005-08-02 00:27:50.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2292','84','2','11220','4.99','2005-08-02 12:31:41.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2293','84','2','11424','3.99','2005-08-02 19:57:42.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2294','84','2','11453','7.99','2005-08-02 21:00:05.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2295','84','2','11899','0.99','2005-08-17 15:29:12.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2296','84','2','11960','4.99','2005-08-17 17:24:30.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2297','84','2','12364','4.99','2005-08-18 07:55:09.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2298','84','2','13115','2.99','2005-08-19 11:27:43.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2299','84','1','14330','5.99','2005-08-21 08:29:20.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2300','84','1','15190','4.99','2005-08-22 15:57:38.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2301','84','1','15255','2.99','2005-08-22 18:16:50.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2302','85','1','690','9.99','2005-05-29 00:54:53.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2303','85','2','908','4.99','2005-05-30 10:38:37.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2304','85','1','1685','1.99','2005-06-16 12:06:57.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2305','85','1','2131','5.99','2005-06-17 21:02:25.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2306','85','2','2794','0.99','2005-06-19 18:53:05.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2307','85','1','3165','4.99','2005-06-20 21:29:17.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2308','85','1','3307','1.99','2005-06-21 07:52:30.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2309','85','2','3418','3.99','2005-06-21 17:06:38.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2310','85','2','4451','0.99','2005-07-07 23:29:54.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2311','85','1','4705','2.99','2005-07-08 11:50:38.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2312','85','1','5051','4.99','2005-07-09 03:57:53.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2313','85','1','5519','0.99','2005-07-10 01:18:32.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2314','85','2','7906','0.99','2005-07-28 11:31:42.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2315','85','2','9427','7.99','2005-07-30 21:16:33.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2316','85','2','9957','4.99','2005-07-31 16:03:55.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2317','85','1','9985','2.99','2005-07-31 17:14:47.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2318','85','1','10328','4.99','2005-08-01 04:56:10.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2319','85','1','10548','0.99','2005-08-01 12:44:32.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2320','85','2','11067','8.99','2005-08-02 07:03:24.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2321','85','2','12036','0.99','2005-08-17 20:19:06.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2322','85','1','12456','4.99','2005-08-18 11:21:51.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2323','85','1','13727','3.99','2005-08-20 10:08:53.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2324','85','2','13733','0.99','2005-08-20 10:25:12.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2325','86','1','66','1.99','2005-05-25 09:35:12.000','2006-02-15 22:12:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2326','86','2','1640','4.99','2005-06-16 08:35:39.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2327','86','2','1822','0.99','2005-06-16 21:43:45.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2328','86','2','1924','2.99','2005-06-17 06:13:34.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2329','86','1','2141','4.99','2005-06-17 21:41:34.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2330','86','1','2518','4.99','2005-06-19 00:16:23.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2331','86','1','3207','0.99','2005-06-21 00:43:16.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2332','86','2','3270','4.99','2005-06-21 05:07:31.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2333','86','1','3611','0.99','2005-07-06 05:37:18.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2334','86','2','3945','4.99','2005-07-06 21:35:00.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2335','86','1','4235','2.99','2005-07-07 13:05:52.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2336','86','1','4571','9.99','2005-07-08 05:34:41.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2337','86','2','5295','0.99','2005-07-09 15:25:06.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2338','86','1','5752','8.99','2005-07-10 12:27:38.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2339','86','2','6872','7.99','2005-07-12 20:15:04.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2340','86','1','7231','2.99','2005-07-27 10:01:51.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2341','86','1','7874','10.99','2005-07-28 10:21:52.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2342','86','2','8803','5.99','2005-07-29 21:26:24.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2343','86','1','8850','2.99','2005-07-29 23:24:20.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2344','86','2','9376','4.99','2005-07-30 19:11:49.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2345','86','2','10252','8.99','2005-08-01 02:39:39.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2346','86','2','10536','4.99','2005-08-01 12:21:53.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2347','86','2','10584','6.99','2005-08-01 13:58:47.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2348','86','2','11916','0.99','2005-08-17 16:05:51.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2349','86','1','12198','2.99','2005-08-18 02:09:20.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2350','86','2','12870','3.99','2005-08-19 02:54:38.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2351','86','2','13338','4.99','2005-08-19 20:09:59.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2352','86','1','13535','4.99','2005-08-20 03:30:25.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2353','86','1','13874','2.99','2005-08-20 15:11:48.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2354','86','2','14122','1.99','2005-08-21 01:29:01.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2355','86','2','15099','4.99','2005-08-22 11:49:16.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2356','86','1','15715','1.99','2005-08-23 10:57:40.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2357','86','2','15940','5.99','2005-08-23 18:45:06.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2358','87','2','451','4.99','2005-05-27 19:27:54.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2359','87','1','674','2.99','2005-05-28 22:11:35.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2360','87','2','1580','4.99','2005-06-16 04:12:25.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2361','87','1','1904','2.99','2005-06-17 04:45:41.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2362','87','2','2408','2.99','2005-06-18 16:50:44.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2363','87','1','2516','4.99','2005-06-19 00:03:28.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2364','87','2','3122','9.99','2005-06-20 18:25:57.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2365','87','1','5084','7.99','2005-07-09 05:33:27.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2366','87','1','5628','3.99','2005-07-10 05:56:40.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2367','87','2','5700','4.99','2005-07-10 09:49:42.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2368','87','1','6638','4.99','2005-07-12 09:58:02.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2369','87','2','7599','2.99','2005-07-27 23:38:46.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2370','87','2','8187','7.99','2005-07-28 22:33:53.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2371','87','1','8286','5.99','2005-07-29 02:02:46.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2372','87','2','8323','4.99','2005-07-29 03:52:59.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2373','87','2','9060','0.99','2005-07-30 07:20:36.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2374','87','1','9348','2.99','2005-07-30 18:17:09.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2375','87','2','9364','8.99','2005-07-30 18:44:44.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2376','87','2','10205','4.99','2005-08-01 00:48:24.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2377','87','1','10387','4.99','2005-08-01 06:42:31.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2378','87','1','12232','0.99','2005-08-18 03:14:14.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2379','87','1','12257','8.99','2005-08-18 04:11:03.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2380','87','1','12264','5.99','2005-08-18 04:17:33.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2381','87','1','13479','0.99','2005-08-20 01:09:11.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2382','87','1','13906','0.99','2005-08-20 16:16:03.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2383','87','2','14024','10.99','2005-08-20 21:13:58.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2384','87','1','14566','2.99','2005-08-21 16:25:05.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2385','87','1','15876','2.99','2005-08-23 16:32:10.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2386','87','2','15890','4.99','2005-08-23 16:58:12.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2387','87','2','12719','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2388','88','2','36','2.99','2005-05-25 04:36:26.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2389','88','1','1433','2.99','2005-06-15 18:30:00.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2390','88','1','2483','7.99','2005-06-18 21:22:23.000','2006-02-15 22:12:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2391','88','1','2878','2.99','2005-06-20 01:09:14.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2392','88','2','3524','0.99','2005-07-06 01:01:51.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2393','88','2','3620','0.99','2005-07-06 06:01:50.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2394','88','2','3673','5.99','2005-07-06 09:02:09.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2395','88','1','3846','5.99','2005-07-06 16:43:10.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2396','88','1','6643','1.99','2005-07-12 10:39:22.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2397','88','1','6916','4.99','2005-07-12 22:29:18.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2398','88','1','7088','5.99','2005-07-27 04:42:28.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2399','88','1','7621','8.99','2005-07-28 00:34:06.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2400','88','1','8296','2.99','2005-07-29 02:43:25.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2401','88','2','8526','2.99','2005-07-29 10:20:48.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2402','88','1','8692','2.99','2005-07-29 16:43:39.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2403','88','1','10424','0.99','2005-08-01 08:22:54.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2404','88','1','11056','6.99','2005-08-02 06:36:27.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2405','88','2','14097','2.99','2005-08-21 00:28:48.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2406','88','2','14827','5.99','2005-08-22 01:32:32.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2407','88','2','15098','3.99','2005-08-22 11:48:19.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2408','88','1','15898','4.99','2005-08-23 17:13:01.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2409','89','2','141','2.99','2005-05-25 23:34:53.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2410','89','2','588','0.99','2005-05-28 12:08:37.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2411','89','1','740','5.99','2005-05-29 08:30:36.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2412','89','1','1252','8.99','2005-06-15 06:05:18.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2413','89','2','1407','7.99','2005-06-15 16:45:07.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2414','89','1','1948','4.99','2005-06-17 08:06:53.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2415','89','1','2523','0.99','2005-06-19 00:45:56.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2416','89','1','2835','7.99','2005-06-19 21:44:11.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2417','89','2','4152','4.99','2005-07-07 08:50:33.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2418','89','1','4488','0.99','2005-07-08 01:22:23.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2419','89','1','4764','8.99','2005-07-08 15:01:25.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2420','89','2','5144','7.99','2005-07-09 08:09:53.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2421','89','2','5436','2.99','2005-07-09 21:31:11.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2422','89','1','5483','2.99','2005-07-09 23:54:09.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2423','89','1','6772','2.99','2005-07-12 15:55:35.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2424','89','2','7370','7.99','2005-07-27 15:15:53.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2425','89','2','7729','4.99','2005-07-28 04:57:57.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2426','89','2','7995','4.99','2005-07-28 15:00:09.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2427','89','1','8003','2.99','2005-07-28 15:11:27.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2428','89','2','8070','2.99','2005-07-28 17:26:56.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2429','89','2','8972','0.99','2005-07-30 04:06:25.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2430','89','1','9328','2.99','2005-07-30 17:32:11.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2431','89','2','9646','2.99','2005-07-31 05:43:28.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2432','89','2','9767','0.99','2005-07-31 09:46:49.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2433','89','2','10164','4.99','2005-07-31 23:17:57.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2434','89','2','10806','4.99','2005-08-01 22:25:29.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2435','89','1','11090','3.99','2005-08-02 07:56:40.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2436','89','1','12118','3.99','2005-08-17 23:14:25.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2437','89','2','12431','2.99','2005-08-18 10:34:59.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2438','89','1','12756','2.99','2005-08-18 22:52:13.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2439','89','1','13823','2.99','2005-08-20 13:42:10.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2440','89','1','15845','2.99','2005-08-23 15:38:34.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2441','90','2','2033','0.99','2005-06-17 13:24:43.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2442','90','2','2584','6.99','2005-06-19 05:02:36.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2443','90','2','3132','0.99','2005-06-20 19:09:46.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2444','90','2','3729','3.99','2005-07-06 11:30:29.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2445','90','2','4371','4.99','2005-07-07 20:06:45.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2446','90','2','5272','0.99','2005-07-09 14:26:01.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2447','90','2','5539','3.99','2005-07-10 02:42:58.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2448','90','2','7035','5.99','2005-07-27 03:06:09.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2449','90','2','7058','1.99','2005-07-27 03:50:46.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2450','90','1','7428','5.99','2005-07-27 17:21:52.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2451','90','1','7946','6.99','2005-07-28 13:01:22.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2452','90','1','8024','2.99','2005-07-28 15:55:40.000','2006-02-15 22:12:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2453','90','1','8408','0.99','2005-07-29 06:40:40.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2454','90','2','8870','9.99','2005-07-30 00:08:08.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2455','90','2','9337','2.99','2005-07-30 18:02:25.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2456','90','2','10206','7.99','2005-08-01 00:52:40.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2457','90','1','10722','4.99','2005-08-01 19:07:08.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2458','90','1','10835','4.99','2005-08-01 23:28:49.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2459','90','2','11231','4.99','2005-08-02 13:02:11.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2460','90','1','11516','0.99','2005-08-16 23:54:47.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2461','90','2','12019','0.99','2005-08-17 19:48:55.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2462','90','1','12788','2.99','2005-08-19 00:15:09.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2463','90','1','13051','4.99','2005-08-19 09:31:33.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2464','90','1','14608','1.99','2005-08-21 17:57:22.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2465','90','1','14807','4.99','2005-08-22 00:57:43.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2466','90','2','15061','0.99','2005-08-22 10:29:44.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2467','90','2','15217','0.99','2005-08-22 16:58:31.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2468','90','1','15674','7.99','2005-08-23 09:16:39.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2469','91','2','216','5.99','2005-05-26 09:17:43.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2470','91','1','1299','4.99','2005-06-15 09:34:50.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2471','91','1','2457','3.99','2005-06-18 19:38:20.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2472','91','1','2908','0.99','2005-06-20 03:16:52.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2473','91','2','3384','2.99','2005-06-21 14:07:35.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2474','91','2','3802','0.99','2005-07-06 15:06:09.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2475','91','2','4103','2.99','2005-07-07 06:25:28.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2476','91','1','4245','4.99','2005-07-07 13:48:33.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2477','91','1','4321','4.99','2005-07-07 17:52:38.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2478','91','1','4673','4.99','2005-07-08 10:16:00.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2479','91','2','5025','4.99','2005-07-09 02:28:24.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2480','91','2','5187','1.99','2005-07-09 10:19:51.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2481','91','2','5701','0.99','2005-07-10 09:56:24.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2482','91','1','6078','4.99','2005-07-11 05:06:52.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2483','91','1','6178','2.99','2005-07-11 10:59:09.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2484','91','2','6860','2.99','2005-07-12 19:54:17.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2485','91','2','7143','0.99','2005-07-27 06:56:31.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2486','91','2','7637','0.99','2005-07-28 01:12:25.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2487','91','1','7966','4.99','2005-07-28 13:53:54.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2488','91','1','8313','0.99','2005-07-29 03:34:21.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2489','91','2','8873','0.99','2005-07-30 00:14:32.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2490','91','2','9228','2.99','2005-07-30 13:36:57.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2491','91','2','9396','4.99','2005-07-30 20:07:24.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2492','91','2','10008','4.99','2005-07-31 17:59:36.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2493','91','2','11418','0.99','2005-08-02 19:45:33.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2494','91','1','12847','0.99','2005-08-19 02:04:07.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2495','91','2','13222','4.99','2005-08-19 15:47:58.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2496','91','2','13309','4.99','2005-08-19 19:04:00.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2497','91','1','14132','0.99','2005-08-21 01:43:58.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2498','91','2','14888','2.99','2005-08-22 04:09:18.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2499','91','1','15122','1.99','2005-08-22 12:47:45.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2500','91','1','15341','4.99','2005-08-22 20:56:31.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2501','91','1','15707','1.99','2005-08-23 10:35:45.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2502','91','2','15886','4.99','2005-08-23 16:50:53.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2503','91','1','12902','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2504','92','1','271','5.99','2005-05-26 16:22:01.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2505','92','1','456','4.99','2005-05-27 19:50:06.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2506','92','2','2084','4.99','2005-06-17 17:17:19.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2507','92','1','2521','0.99','2005-06-19 00:41:08.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2508','92','1','2740','8.99','2005-06-19 15:59:04.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2509','92','2','3595','8.99','2005-07-06 04:59:49.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2510','92','2','3716','7.99','2005-07-06 10:52:32.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2511','92','1','4360','2.99','2005-07-07 19:31:12.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2512','92','2','4828','4.99','2005-07-08 17:52:29.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2513','92','2','5497','5.99','2005-07-10 00:23:23.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2514','92','2','5620','7.99','2005-07-10 05:30:52.000','2006-02-15 22:12:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2515','92','1','5792','6.99','2005-07-10 14:22:19.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2516','92','2','5919','2.99','2005-07-10 21:32:14.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2517','92','1','6158','0.99','2005-07-11 09:50:24.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2518','92','2','6277','6.99','2005-07-11 16:19:01.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2519','92','1','7073','4.99','2005-07-27 04:03:26.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2520','92','1','7832','1.99','2005-07-28 08:46:11.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2521','92','1','8494','4.99','2005-07-29 09:04:32.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2522','92','1','8938','4.99','2005-07-30 02:56:08.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2523','92','1','9240','4.99','2005-07-30 13:57:54.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2524','92','2','11203','4.99','2005-08-02 11:52:41.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2525','92','2','11245','2.99','2005-08-02 13:33:50.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2526','92','1','11849','4.99','2005-08-17 13:24:55.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2527','92','2','13020','5.99','2005-08-19 08:07:50.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2528','92','1','13495','0.99','2005-08-20 01:40:25.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2529','92','1','13620','2.99','2005-08-20 06:41:27.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2530','92','1','14798','0.99','2005-08-22 00:44:08.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2531','92','2','14998','4.99','2005-08-22 07:53:14.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2532','93','2','113','2.99','2005-05-25 19:07:40.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2533','93','2','420','6.99','2005-05-27 15:19:38.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2534','93','1','1025','4.99','2005-05-31 03:41:37.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2535','93','2','2256','4.99','2005-06-18 05:21:56.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2536','93','1','3109','0.99','2005-06-20 17:33:55.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2537','93','1','4733','2.99','2005-07-08 13:12:07.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2538','93','2','5130','4.99','2005-07-09 07:29:45.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2539','93','2','6287','4.99','2005-07-11 17:00:04.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2540','93','1','6586','4.99','2005-07-12 06:56:24.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2541','93','1','7301','2.99','2005-07-27 12:50:23.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2542','93','1','8233','0.99','2005-07-29 00:16:23.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2543','93','2','11271','5.99','2005-08-02 14:18:22.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2544','93','1','12704','4.99','2005-08-18 20:43:00.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2545','93','1','13555','2.99','2005-08-20 04:09:50.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2546','93','2','13904','2.99','2005-08-20 16:11:34.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2547','93','1','13950','8.99','2005-08-20 17:58:00.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2548','93','1','13993','4.99','2005-08-20 19:32:29.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2549','93','1','14195','0.99','2005-08-21 03:40:35.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2550','93','2','14333','4.99','2005-08-21 08:31:03.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2551','93','2','15324','5.99','2005-08-22 20:23:13.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2552','93','2','15631','2.99','2005-08-23 07:30:23.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2553','93','1','15696','0.99','2005-08-23 10:04:17.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2554','93','2','15913','1.99','2005-08-23 17:48:30.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2555','94','1','127','2.99','2005-05-25 21:10:40.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2556','94','2','629','4.99','2005-05-28 17:19:15.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2557','94','2','1213','2.99','2005-06-15 03:14:05.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2558','94','1','1367','4.99','2005-06-15 14:25:17.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2559','94','2','1734','3.99','2005-06-16 15:49:30.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2560','94','2','2620','4.99','2005-06-19 08:06:29.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2561','94','1','2816','2.99','2005-06-19 20:04:23.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2562','94','2','4044','0.99','2005-07-07 03:22:23.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2563','94','1','4287','8.99','2005-07-07 15:37:31.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2564','94','2','5719','4.99','2005-07-10 11:07:40.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2565','94','2','5970','4.99','2005-07-11 00:04:50.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2566','94','2','7809','2.99','2005-07-28 07:59:46.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2567','94','2','7979','0.99','2005-07-28 14:16:30.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2568','94','1','9605','4.99','2005-07-31 03:50:07.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2569','94','1','12316','2.99','2005-08-18 06:16:09.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2570','94','1','13786','5.99','2005-08-20 12:13:24.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2571','94','2','14804','1.99','2005-08-22 00:51:25.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2572','94','1','14865','4.99','2005-08-22 03:06:38.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2573','94','1','14978','0.99','2005-08-22 07:13:15.000','2006-02-15 22:12:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2574','94','1','15693','0.99','2005-08-23 10:00:24.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2575','94','1','15371','4.99','2006-02-14 15:16:03.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2576','95','1','490','4.99','2005-05-28 00:09:56.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2577','95','2','1174','2.99','2005-06-15 00:12:51.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2578','95','2','1261','1.99','2005-06-15 06:52:57.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2579','95','2','3056','2.99','2005-06-20 13:20:58.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2580','95','2','3426','0.99','2005-06-21 18:12:10.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2581','95','1','3633','1.99','2005-07-06 06:43:26.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2582','95','2','4000','4.99','2005-07-06 23:58:37.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2583','95','1','4835','5.99','2005-07-08 18:08:13.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2584','95','2','7245','5.99','2005-07-27 10:29:06.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2585','95','1','7471','4.99','2005-07-27 19:02:19.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2586','95','1','9222','6.99','2005-07-30 13:21:08.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2587','95','1','9695','6.99','2005-07-31 07:13:30.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2588','95','1','9951','4.99','2005-07-31 15:51:16.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2589','95','1','10130','0.99','2005-07-31 21:44:30.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2590','95','2','10446','0.99','2005-08-01 09:02:17.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2591','95','2','12351','5.99','2005-08-18 07:32:12.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2592','95','2','13516','7.99','2005-08-20 02:32:45.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2593','95','2','14203','4.99','2005-08-21 03:51:52.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2594','96','1','1266','3.99','2005-06-15 07:11:39.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2595','96','2','1413','7.99','2005-06-15 17:25:07.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2596','96','2','1437','0.99','2005-06-15 18:37:04.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2597','96','1','2372','0.99','2005-06-18 14:37:37.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2598','96','2','2973','5.99','2005-06-20 07:59:27.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2599','96','1','3308','0.99','2005-06-21 07:58:36.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2600','96','2','3463','0.99','2005-06-21 22:00:00.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2601','96','1','3720','2.99','2005-07-06 11:06:57.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2602','96','2','3742','2.99','2005-07-06 12:01:38.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2603','96','1','4961','4.99','2005-07-08 23:35:53.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2604','96','1','5558','0.99','2005-07-10 03:12:08.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2605','96','1','5678','4.99','2005-07-10 08:42:42.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2606','96','1','5696','2.99','2005-07-10 09:44:32.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2607','96','2','8125','4.99','2005-07-28 19:31:48.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2608','96','1','8437','6.99','2005-07-29 07:23:43.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2609','96','2','9093','3.99','2005-07-30 08:33:24.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2610','96','1','9315','4.99','2005-07-30 17:05:29.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2611','96','1','9662','3.99','2005-07-31 06:09:53.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2612','96','2','10031','4.99','2005-07-31 18:40:15.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2613','96','2','11864','4.99','2005-08-17 14:02:01.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2614','96','1','11984','3.99','2005-08-17 18:16:30.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2615','96','1','12199','4.99','2005-08-18 02:09:23.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2616','96','2','12525','4.99','2005-08-18 13:48:31.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2617','96','1','13514','0.99','2005-08-20 02:28:09.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2618','96','1','13855','4.99','2005-08-20 14:48:55.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2619','96','1','14462','3.99','2005-08-21 12:50:57.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2620','96','2','15989','4.99','2005-08-23 20:24:36.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2621','97','2','2083','2.99','2005-06-17 17:14:00.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2622','97','2','2790','4.99','2005-06-19 18:49:45.000','2006-02-15 22:12:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2623','97','1','3459','0.99','2005-06-21 21:45:47.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2624','97','1','3540','2.99','2005-07-06 01:47:20.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2625','97','2','3565','0.99','2005-07-06 03:02:58.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2626','97','2','3818','4.99','2005-07-06 15:33:31.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2627','97','2','4312','4.99','2005-07-07 17:34:59.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2628','97','1','4508','4.99','2005-07-08 02:28:41.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2629','97','2','5454','4.99','2005-07-09 22:24:25.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2630','97','1','6544','0.99','2005-07-12 04:56:15.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2631','97','1','6726','0.99','2005-07-12 13:48:14.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2632','97','2','7182','5.99','2005-07-27 08:15:38.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2633','97','2','7924','0.99','2005-07-28 12:08:53.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2634','97','2','8438','2.99','2005-07-29 07:25:42.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2635','97','1','9591','4.99','2005-07-31 03:19:28.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2636','97','1','10820','2.99','2005-08-01 22:53:40.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2637','97','2','14323','4.99','2005-08-21 08:08:43.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2638','97','1','15006','0.99','2005-08-22 08:20:15.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2639','98','2','214','3.99','2005-05-26 08:48:49.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2640','98','1','1362','3.99','2005-06-15 13:53:32.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2641','98','2','1590','5.99','2005-06-16 05:11:41.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2642','98','1','2213','4.99','2005-06-18 02:36:47.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2643','98','1','2445','0.99','2005-06-18 19:02:11.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2644','98','2','2601','4.99','2005-06-19 06:09:44.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2645','98','2','3399','4.99','2005-06-21 15:47:48.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2646','98','2','3682','7.99','2005-07-06 09:22:48.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2647','98','1','4549','4.99','2005-07-08 04:25:03.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2648','98','2','6951','2.99','2005-07-26 23:47:31.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2649','98','2','7120','3.99','2005-07-27 05:56:39.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2650','98','1','7530','0.99','2005-07-27 21:18:58.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2651','98','1','8324','5.99','2005-07-29 03:56:05.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2652','98','2','8622','4.99','2005-07-29 13:53:28.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2653','98','2','8818','5.99','2005-07-29 22:14:04.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2654','98','1','9753','2.99','2005-07-31 09:22:38.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2655','98','2','10694','3.99','2005-08-01 18:15:07.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2656','98','1','10925','2.99','2005-08-02 02:24:38.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2657','98','2','11007','0.99','2005-08-02 05:05:53.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2658','98','2','11200','2.99','2005-08-02 11:48:36.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2659','98','1','11635','5.99','2005-08-17 04:33:17.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2660','98','1','11730','2.99','2005-08-17 08:22:00.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2661','98','2','12221','5.99','2005-08-18 02:50:51.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2662','98','2','14459','1.99','2005-08-21 12:48:08.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2663','98','1','15536','7.99','2005-08-23 03:58:28.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2664','99','2','867','0.99','2005-05-30 03:54:43.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2665','99','1','1858','4.99','2005-06-17 01:13:11.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2666','99','1','2368','2.99','2005-06-18 14:10:27.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2667','99','2','3780','6.99','2005-07-06 13:52:02.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2668','99','2','4170','2.99','2005-07-07 09:44:36.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2669','99','2','4344','4.99','2005-07-07 18:50:47.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2670','99','1','4589','0.99','2005-07-08 06:26:04.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2671','99','2','4800','4.99','2005-07-08 16:51:08.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2672','99','2','4954','2.99','2005-07-08 23:14:16.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2673','99','2','5035','2.99','2005-07-09 02:51:34.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2674','99','1','5748','2.99','2005-07-10 12:19:59.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2675','99','1','6289','2.99','2005-07-11 17:06:39.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2676','99','1','6370','3.99','2005-07-11 21:28:32.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2677','99','2','6662','4.99','2005-07-12 11:21:06.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2678','99','1','7039','4.99','2005-07-27 03:11:48.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2679','99','1','8072','0.99','2005-07-28 17:27:59.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2680','99','2','8242','7.99','2005-07-29 00:34:27.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2681','99','2','8514','0.99','2005-07-29 09:53:33.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2682','99','2','10388','7.99','2005-08-01 06:42:44.000','2006-02-15 22:12:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2683','99','1','10455','1.99','2005-08-01 09:15:00.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2684','99','2','11266','4.99','2005-08-02 14:07:35.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2685','99','2','12379','0.99','2005-08-18 08:26:48.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2686','99','2','12869','8.99','2005-08-19 02:50:36.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2687','99','1','11593','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2688','100','1','71','0.99','2005-05-25 10:26:39.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2689','100','2','1216','4.99','2005-06-15 03:23:48.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2690','100','1','1340','3.99','2005-06-15 12:24:15.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2691','100','1','1427','2.99','2005-06-15 18:17:28.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2692','100','2','3468','6.99','2005-06-21 22:43:45.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2693','100','2','3602','5.99','2005-07-06 05:23:10.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2694','100','1','3800','8.99','2005-07-06 15:01:27.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2695','100','1','4209','2.99','2005-07-07 11:35:08.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2696','100','1','4970','8.99','2005-07-08 23:54:29.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2697','100','2','4980','6.99','2005-07-09 00:26:59.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2698','100','2','5238','4.99','2005-07-09 13:11:14.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2699','100','2','5355','6.99','2005-07-09 18:07:17.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2700','100','1','6655','4.99','2005-07-12 11:08:32.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2701','100','2','7819','4.99','2005-07-28 08:27:14.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2702','100','1','7921','1.99','2005-07-28 12:02:46.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2703','100','2','8203','0.99','2005-07-28 23:14:56.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2704','100','2','9048','5.99','2005-07-30 06:57:07.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2705','100','1','9271','4.99','2005-07-30 15:04:31.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2706','100','1','11143','0.99','2005-08-02 09:32:54.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2707','100','2','11346','4.99','2005-08-02 17:15:38.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2708','100','1','12657','0.99','2005-08-18 19:02:16.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2709','100','1','15163','0.99','2005-08-22 14:43:13.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2710','100','2','15246','3.99','2005-08-22 17:50:49.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2711','100','2','15021','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2712','101','1','468','9.99','2005-05-27 21:13:10.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2713','101','1','4975','2.99','2005-07-09 00:02:46.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2714','101','2','5100','2.99','2005-07-09 06:16:03.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2715','101','1','5132','5.99','2005-07-09 07:40:32.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2716','101','2','5198','2.99','2005-07-09 10:49:10.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2717','101','1','5757','2.99','2005-07-10 12:40:17.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2718','101','2','6433','5.99','2005-07-12 00:12:02.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2719','101','2','7112','5.99','2005-07-27 05:38:42.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2720','101','2','7866','8.99','2005-07-28 10:08:01.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2721','101','1','8301','0.99','2005-07-29 03:00:08.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2722','101','2','8825','1.99','2005-07-29 22:24:16.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2723','101','2','8833','4.99','2005-07-29 22:39:36.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2724','101','2','9965','6.99','2005-07-31 16:19:32.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2725','101','2','10218','0.99','2005-08-01 01:09:44.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2726','101','1','10253','6.99','2005-08-01 02:39:49.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2727','101','1','10407','0.99','2005-08-01 07:38:07.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2728','101','2','11959','4.99','2005-08-17 17:23:35.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2729','101','2','12174','2.99','2005-08-18 01:08:53.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2730','101','1','12471','4.99','2005-08-18 11:57:00.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2731','101','2','13370','1.99','2005-08-19 21:20:11.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2732','101','1','14476','0.99','2005-08-21 13:31:07.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2733','101','2','14542','3.99','2005-08-21 15:36:34.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2734','101','2','15103','2.99','2005-08-22 12:01:06.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2735','101','2','12141','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2736','102','1','247','4.99','2005-05-26 14:01:05.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2737','102','1','358','0.99','2005-05-27 06:43:59.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2738','102','2','562','1.99','2005-05-28 09:01:21.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2739','102','2','1215','2.99','2005-06-15 03:21:00.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2740','102','2','2419','8.99','2005-06-18 17:21:24.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2741','102','2','3520','1.99','2005-07-06 00:58:27.000','2006-02-15 22:13:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2742','102','2','3630','1.99','2005-07-06 06:27:15.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2743','102','2','3665','4.99','2005-07-06 08:23:08.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2744','102','1','4089','6.99','2005-07-07 05:45:59.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2745','102','2','4777','3.99','2005-07-08 15:48:34.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2746','102','1','4997','6.99','2005-07-09 01:06:03.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2747','102','1','5009','5.99','2005-07-09 01:32:17.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2748','102','1','5109','4.99','2005-07-09 06:48:49.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2749','102','2','5509','5.99','2005-07-10 00:54:46.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2750','102','1','5716','2.99','2005-07-10 10:59:23.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2751','102','2','6434','5.99','2005-07-12 00:14:25.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2752','102','2','7119','0.99','2005-07-27 05:55:32.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2753','102','2','7247','0.99','2005-07-27 10:32:58.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2754','102','2','7439','6.99','2005-07-27 17:42:31.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2755','102','1','8186','0.99','2005-07-28 22:30:27.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2756','102','1','8664','5.99','2005-07-29 15:36:27.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2757','102','2','9151','3.99','2005-07-30 10:50:53.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2758','102','1','9192','2.99','2005-07-30 12:26:26.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2759','102','2','9295','0.99','2005-07-30 16:18:39.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2760','102','2','9617','2.99','2005-07-31 04:15:38.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2761','102','1','9780','4.99','2005-07-31 10:10:22.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2762','102','2','10841','1.99','2005-08-01 23:39:21.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2763','102','2','11099','4.99','2005-08-02 08:07:12.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2764','102','1','11183','4.99','2005-08-02 11:00:32.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2765','102','2','12495','4.99','2005-08-18 12:56:37.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2766','102','1','13420','9.99','2005-08-19 22:57:25.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2767','102','1','15049','1.99','2005-08-22 10:06:28.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2768','102','2','16031','3.99','2005-08-23 21:59:26.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2769','103','1','240','7.99','2005-05-26 12:40:23.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2770','103','1','658','9.99','2005-05-28 20:23:23.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2771','103','2','1396','4.99','2005-06-15 16:22:38.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2772','103','1','2118','0.99','2005-06-17 20:28:29.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2773','103','1','2197','0.99','2005-06-18 01:50:27.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2774','103','1','2724','0.99','2005-06-19 14:57:54.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2775','103','2','3750','6.99','2005-07-06 12:19:28.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2776','103','1','3850','4.99','2005-07-06 16:51:21.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2777','103','2','4040','6.99','2005-07-07 03:02:40.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2778','103','1','4213','2.99','2005-07-07 11:53:49.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2779','103','1','4357','1.99','2005-07-07 19:24:39.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2780','103','2','4872','4.99','2005-07-08 19:23:16.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2781','103','2','5163','4.99','2005-07-09 09:00:28.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2782','103','1','6525','5.99','2005-07-12 04:17:15.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2783','103','2','6697','6.99','2005-07-12 12:44:57.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2784','103','2','6949','2.99','2005-07-26 23:44:12.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2785','103','1','7310','0.99','2005-07-27 13:00:55.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2786','103','2','7472','6.99','2005-07-27 19:04:19.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2787','103','1','8302','0.99','2005-07-29 03:01:24.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2788','103','1','8520','4.99','2005-07-29 10:10:02.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2789','103','2','9390','4.99','2005-07-30 19:42:07.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2790','103','2','12942','7.99','2005-08-19 05:40:36.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2791','103','1','13676','0.99','2005-08-20 08:33:21.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2792','103','2','14064','2.99','2005-08-20 22:39:16.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2793','103','2','14289','4.99','2005-08-21 06:58:49.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2794','103','2','15401','8.99','2005-08-22 23:13:10.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2795','103','1','15461','5.99','2005-08-23 01:13:52.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2796','103','1','15467','3.99','2005-08-23 01:22:12.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2797','103','1','15599','5.99','2005-08-23 06:25:07.000','2006-02-15 22:13:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2798','103','2','15679','0.99','2005-08-23 09:27:29.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2799','103','2','16048','8.99','2005-08-23 22:43:07.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2800','104','1','163','10.99','2005-05-26 02:26:23.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2801','104','2','808','3.99','2005-05-29 19:08:20.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2802','104','2','1287','3.99','2005-06-15 08:41:38.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2803','104','1','2107','0.99','2005-06-17 19:31:16.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2804','104','2','2928','0.99','2005-06-20 04:43:45.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2805','104','2','3273','2.99','2005-06-21 05:24:17.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2806','104','2','4012','4.99','2005-07-07 00:56:09.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2807','104','2','4438','6.99','2005-07-07 22:56:17.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2808','104','2','4520','4.99','2005-07-08 02:53:46.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2809','104','1','4529','7.99','2005-07-08 03:26:20.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2810','104','1','4917','2.99','2005-07-08 21:32:30.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2811','104','1','5376','1.99','2005-07-09 18:54:08.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2812','104','2','7107','2.99','2005-07-27 05:22:04.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2813','104','1','8413','1.99','2005-07-29 06:47:39.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2814','104','1','9090','3.99','2005-07-30 08:24:42.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2815','104','2','9996','5.99','2005-07-31 17:32:03.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2816','104','1','11700','2.99','2005-08-17 07:12:31.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2817','104','1','12453','3.99','2005-08-18 11:17:07.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2818','104','1','13005','0.99','2005-08-19 07:45:42.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2819','104','1','13017','1.99','2005-08-19 08:02:24.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2820','104','1','13179','4.99','2005-08-19 13:59:53.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2821','104','1','13410','3.99','2005-08-19 22:41:44.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2822','104','1','14218','3.99','2005-08-21 04:43:59.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2823','104','2','15186','0.99','2005-08-22 15:52:57.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2824','105','1','327','8.99','2005-05-27 01:18:57.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2825','105','2','473','7.99','2005-05-27 21:36:34.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2826','105','1','485','2.99','2005-05-27 23:40:52.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2827','105','1','779','6.99','2005-05-29 14:17:17.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2828','105','2','1789','3.99','2005-06-16 19:49:18.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2829','105','2','1991','3.99','2005-06-17 10:49:23.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2830','105','2','2635','3.99','2005-06-19 09:08:45.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2831','105','2','5261','4.99','2005-07-09 14:06:56.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2832','105','1','5429','4.99','2005-07-09 21:14:03.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2833','105','2','5542','2.99','2005-07-10 02:45:53.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2834','105','2','5677','4.99','2005-07-10 08:41:28.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2835','105','2','6546','4.99','2005-07-12 04:57:17.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2836','105','1','7442','2.99','2005-07-27 17:47:00.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2837','105','2','8980','2.99','2005-07-30 04:22:15.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2838','105','2','9124','3.99','2005-07-30 09:43:12.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2839','105','2','9198','5.99','2005-07-30 12:37:08.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2840','105','2','9210','9.99','2005-07-30 12:56:44.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2841','105','1','10513','4.99','2005-08-01 11:37:34.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2842','105','1','12217','0.99','2005-08-18 02:44:44.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2843','105','2','12899','2.99','2005-08-19 04:03:34.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2844','105','1','13057','6.99','2005-08-19 09:40:05.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2845','105','1','13751','2.99','2005-08-20 11:17:03.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2846','105','2','14048','0.99','2005-08-20 22:03:18.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2847','105','2','15624','4.99','2005-08-23 07:24:27.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2848','105','2','15688','4.99','2005-08-23 09:48:45.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2849','105','2','15803','2.99','2005-08-23 14:27:07.000','2006-02-15 22:13:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2850','106','2','552','3.99','2005-05-28 07:53:38.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2851','106','2','1156','0.99','2005-05-31 22:37:34.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2852','106','1','2295','4.99','2005-06-18 07:56:18.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2853','106','1','3023','4.99','2005-06-20 11:18:11.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2854','106','1','4229','4.99','2005-07-07 12:43:23.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2855','106','2','4277','2.99','2005-07-07 14:52:12.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2856','106','1','4665','3.99','2005-07-08 10:04:24.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2857','106','2','5453','3.99','2005-07-09 22:24:11.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2858','106','2','6992','0.99','2005-07-27 01:04:45.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2859','106','1','7224','3.99','2005-07-27 09:44:26.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2860','106','1','7483','4.99','2005-07-27 19:25:00.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2861','106','1','8115','4.99','2005-07-28 19:14:17.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2862','106','2','9072','2.99','2005-07-30 07:45:49.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2863','106','2','9747','7.99','2005-07-31 09:16:57.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2864','106','2','10213','8.99','2005-08-01 01:03:18.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2865','106','1','10228','2.99','2005-08-01 01:43:18.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2866','106','1','10444','8.99','2005-08-01 09:01:40.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2867','106','2','11436','0.99','2005-08-02 20:16:06.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2868','106','1','12159','7.99','2005-08-18 00:36:09.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2869','106','1','12845','2.99','2005-08-19 02:02:37.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2870','106','2','14431','2.99','2005-08-21 11:31:15.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2871','106','1','14920','0.99','2005-08-22 05:08:58.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2872','106','1','15154','6.99','2005-08-22 14:27:37.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2873','107','1','170','5.99','2005-05-26 03:11:12.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2874','107','1','1026','5.99','2005-05-31 03:45:26.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2875','107','2','1243','2.99','2005-06-15 05:07:32.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2876','107','2','2693','6.99','2005-06-19 13:11:47.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2877','107','2','2860','4.99','2005-06-19 23:20:40.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2878','107','2','2897','3.99','2005-06-20 02:34:23.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2879','107','1','3033','3.99','2005-06-20 12:02:05.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2880','107','2','3120','0.99','2005-06-20 18:19:29.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2881','107','2','3174','0.99','2005-06-20 22:24:00.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2882','107','2','3824','6.99','2005-07-06 15:43:15.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2883','107','2','5311','4.99','2005-07-09 16:02:54.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2884','107','2','5575','2.99','2005-07-10 03:55:50.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2885','107','2','5798','3.99','2005-07-10 14:45:09.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2886','107','2','6131','2.99','2005-07-11 08:22:05.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2887','107','2','6133','0.99','2005-07-11 08:25:22.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2888','107','1','6811','5.99','2005-07-12 17:54:33.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2889','107','2','6934','6.99','2005-07-26 23:11:03.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2890','107','2','7447','4.99','2005-07-27 18:02:08.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2891','107','1','7600','7.99','2005-07-27 23:41:18.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2892','107','1','8162','4.99','2005-07-28 21:11:46.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2893','107','2','8704','1.99','2005-07-29 17:13:45.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2894','107','1','9155','2.99','2005-07-30 11:00:00.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2895','107','2','9351','2.99','2005-07-30 18:28:30.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2896','107','1','10226','4.99','2005-08-01 01:40:04.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2897','107','2','13361','4.99','2005-08-19 21:07:22.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2898','107','1','13510','6.99','2005-08-20 02:18:30.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2899','107','1','14562','4.99','2005-08-21 16:22:59.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2900','107','1','15560','3.99','2005-08-23 05:01:13.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2901','107','1','13079','1.98','2006-02-14 15:16:03.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2902','107','1','15497','0','2006-02-14 15:16:03.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2903','108','1','105','4.99','2005-05-25 17:54:12.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2904','108','2','1055','0.99','2005-05-31 07:47:18.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2905','108','2','1372','4.99','2005-06-15 14:45:48.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2906','108','1','1425','2.99','2005-06-15 18:13:46.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2907','108','1','2061','8.99','2005-06-17 15:47:00.000','2006-02-15 22:13:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2908','108','1','2210','2.99','2005-06-18 02:27:01.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2909','108','2','3116','4.99','2005-06-20 18:04:55.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2910','108','1','3875','0.99','2005-07-06 18:15:39.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2911','108','2','4082','2.99','2005-07-07 05:11:53.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2912','108','1','4303','1.99','2005-07-07 16:57:32.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2913','108','1','4650','4.99','2005-07-08 09:32:08.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2914','108','1','4754','0.99','2005-07-08 14:20:01.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2915','108','2','5274','6.99','2005-07-09 14:34:09.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2916','108','1','5661','5.99','2005-07-10 07:53:51.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2917','108','2','5806','4.99','2005-07-10 15:11:54.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2918','108','1','6841','0.99','2005-07-12 19:04:24.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2919','108','2','8329','5.99','2005-07-29 04:06:33.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2920','108','2','8587','4.99','2005-07-29 12:18:40.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2921','108','1','8846','4.99','2005-07-29 23:10:28.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2922','108','2','9755','4.99','2005-07-31 09:24:55.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2923','108','1','11316','5.99','2005-08-02 16:07:49.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2924','108','2','11445','6.99','2005-08-02 20:33:35.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2925','108','2','11759','2.99','2005-08-17 09:41:23.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2926','108','1','12583','2.99','2005-08-18 15:51:36.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2927','108','2','12625','6.99','2005-08-18 17:36:19.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2928','108','2','13754','2.99','2005-08-20 11:18:08.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2929','108','2','14635','3.99','2005-08-21 18:51:43.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2930','108','2','15556','8.99','2005-08-23 04:52:16.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2931','108','1','16001','2.99','2005-08-23 20:45:53.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2932','108','1','15294','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2933','109','1','203','5.99','2005-05-26 07:27:57.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2934','109','1','386','0.99','2005-05-27 10:26:31.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2935','109','2','622','3.99','2005-05-28 15:58:22.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2936','109','1','698','0.99','2005-05-29 02:10:52.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2937','109','1','1061','7.99','2005-05-31 08:27:58.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2938','109','1','1106','4.99','2005-05-31 14:36:52.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2939','109','1','1115','2.99','2005-05-31 16:07:09.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2940','109','2','1581','2.99','2005-06-16 04:28:45.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2941','109','2','1891','3.99','2005-06-17 04:16:44.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2942','109','2','2198','6.99','2005-06-18 01:51:22.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2943','109','2','2679','5.99','2005-06-19 12:12:30.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2944','109','2','3076','5.99','2005-06-20 15:01:19.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2945','109','1','4921','4.99','2005-07-08 21:43:21.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2946','109','1','5027','2.99','2005-07-09 02:32:37.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2947','109','2','5296','2.99','2005-07-09 15:26:27.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2948','109','2','6920','6.99','2005-07-12 22:32:58.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2949','109','2','7145','0.99','2005-07-27 07:01:00.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2950','109','1','8006','3.99','2005-07-28 15:15:41.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2951','109','1','9230','0.99','2005-07-30 13:39:42.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2952','109','1','9871','2.99','2005-07-31 13:25:46.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2953','109','2','10240','0.99','2005-08-01 02:09:33.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2954','109','2','10892','3.99','2005-08-02 01:12:06.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2955','109','2','12137','6.99','2005-08-17 23:52:26.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2956','109','1','13264','3.99','2005-08-19 17:27:10.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2957','109','2','15398','7.99','2005-08-22 23:10:49.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2958','109','2','15677','2.99','2005-08-23 09:23:36.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2959','110','1','515','7.99','2005-05-28 03:10:10.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2960','110','2','538','1.99','2005-05-28 06:21:05.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2961','110','2','1528','8.99','2005-06-16 00:32:52.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2962','110','1','3587','4.99','2005-07-06 04:27:52.000','2006-02-15 22:13:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2963','110','1','4317','2.99','2005-07-07 17:44:49.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2964','110','2','4827','4.99','2005-07-08 17:46:30.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2965','110','1','6160','4.99','2005-07-11 10:08:13.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2966','110','1','7474','0.99','2005-07-27 19:07:17.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2967','110','2','7542','0.99','2005-07-27 21:43:04.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2968','110','1','7570','2.99','2005-07-27 22:40:06.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2969','110','1','11647','7.99','2005-08-17 04:54:14.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2970','110','2','12585','3.99','2005-08-18 15:52:12.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2971','110','1','13723','2.99','2005-08-20 10:05:30.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2972','110','2','15381','2.99','2005-08-22 22:28:36.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2973','111','2','505','2.99','2005-05-28 02:06:37.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2974','111','1','1593','6.99','2005-06-16 05:14:52.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2975','111','2','1974','2.99','2005-06-17 09:30:05.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2976','111','2','1999','1.99','2005-06-17 11:30:08.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2977','111','2','2297','4.99','2005-06-18 08:17:41.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2978','111','2','3087','2.99','2005-06-20 15:53:59.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2979','111','2','3333','2.99','2005-06-21 10:01:36.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2980','111','2','3485','1.99','2005-07-05 23:25:54.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2981','111','1','3551','3.99','2005-07-06 02:33:48.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2982','111','2','3963','9.99','2005-07-06 22:19:17.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2983','111','1','4249','4.99','2005-07-07 14:05:17.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2984','111','2','4286','0.99','2005-07-07 15:36:44.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2985','111','1','6896','2.99','2005-07-12 21:25:37.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2986','111','2','8525','0.99','2005-07-29 10:20:19.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2987','111','2','9933','0.99','2005-07-31 15:24:46.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2988','111','2','10039','2.99','2005-07-31 18:50:40.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2989','111','2','10602','4.99','2005-08-01 14:30:23.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2990','111','1','10952','4.99','2005-08-02 03:28:21.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2991','111','2','10990','4.99','2005-08-02 04:41:06.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2992','111','2','11239','2.99','2005-08-02 13:27:11.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2993','111','2','12196','3.99','2005-08-18 02:08:48.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2994','111','2','13251','2.99','2005-08-19 16:48:37.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2995','111','2','13525','5.99','2005-08-20 02:50:44.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2996','111','1','14949','0.99','2005-08-22 06:12:16.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2997','111','2','15174','6.99','2005-08-22 15:26:36.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2998','111','2','15542','2.99','2006-02-14 15:16:03.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('2999','112','1','396','0.99','2005-05-27 11:47:04.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3000','112','2','701','2.99','2005-05-29 02:26:27.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3001','112','1','1835','4.99','2005-06-16 23:05:36.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3002','112','2','1930','2.99','2005-06-17 06:50:46.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3003','112','1','2193','4.99','2005-06-18 01:38:45.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3004','112','2','3018','2.99','2005-06-20 11:10:35.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3005','112','1','5351','4.99','2005-07-09 17:40:52.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3006','112','1','5385','2.99','2005-07-09 19:18:11.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3007','112','2','6550','2.99','2005-07-12 05:03:14.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3008','112','2','7691','4.99','2005-07-28 03:30:09.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3009','112','2','7761','4.99','2005-07-28 06:31:45.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3010','112','1','9217','4.99','2005-07-30 13:13:55.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3011','112','2','9321','6.99','2005-07-30 17:19:44.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3012','112','2','9609','4.99','2005-07-31 03:53:24.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3013','112','1','9830','5.99','2005-07-31 11:59:05.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3014','112','2','9911','3.99','2005-07-31 14:48:01.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3015','112','1','10038','2.99','2005-07-31 18:49:12.000','2006-02-15 22:13:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3016','112','2','10596','5.99','2005-08-01 14:18:57.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3017','112','1','11019','2.99','2005-08-02 05:29:31.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3018','112','1','11599','7.99','2005-08-17 03:08:10.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3019','112','2','11659','4.99','2005-08-17 05:20:45.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3020','112','2','11863','3.99','2005-08-17 13:56:01.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3021','112','2','13611','8.99','2005-08-20 06:20:42.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3022','112','2','13879','2.99','2005-08-20 15:18:10.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3023','112','2','14049','5.99','2005-08-20 22:08:55.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3024','112','1','14358','0.99','2005-08-21 09:14:28.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3025','112','2','15304','4.99','2005-08-22 19:45:57.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3026','112','1','15671','0.99','2005-08-23 09:08:16.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3027','112','1','15687','8.99','2005-08-23 09:46:33.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3028','112','1','15756','2.99','2005-08-23 12:47:05.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3029','113','1','510','0.99','2005-05-28 02:52:14.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3030','113','2','776','0.99','2005-05-29 13:35:35.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3031','113','2','2077','4.99','2005-06-17 16:46:11.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3032','113','1','2282','2.99','2005-06-18 06:48:23.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3033','113','1','2783','2.99','2005-06-19 18:29:10.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3034','113','2','3004','0.99','2005-06-20 10:04:36.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3035','113','1','3124','8.99','2005-06-20 18:28:19.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3036','113','1','3162','6.99','2005-06-20 21:21:15.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3037','113','2','3657','5.99','2005-07-06 07:55:30.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3038','113','1','4333','2.99','2005-07-07 18:31:50.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3039','113','2','5189','2.99','2005-07-09 10:23:21.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3040','113','2','5324','2.99','2005-07-09 16:34:18.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3041','113','2','5655','4.99','2005-07-10 07:31:06.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3042','113','1','5774','5.99','2005-07-10 13:31:56.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3043','113','1','6025','0.99','2005-07-11 02:18:13.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3044','113','1','6836','0.99','2005-07-12 18:58:05.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3045','113','2','7468','5.99','2005-07-27 18:52:27.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3046','113','2','7587','2.99','2005-07-27 23:23:03.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3047','113','2','9221','6.99','2005-07-30 13:20:06.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3048','113','2','10181','4.99','2005-08-01 00:00:44.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3049','113','1','10378','0.99','2005-08-01 06:30:04.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3050','113','2','10578','1.99','2005-08-01 13:48:02.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3051','113','2','11655','7.99','2005-08-17 05:11:07.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3052','113','1','11872','5.99','2005-08-17 14:11:45.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3053','113','1','12392','5.99','2005-08-18 08:57:58.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3054','113','2','12817','3.99','2005-08-19 01:04:35.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3055','113','2','13406','2.99','2005-08-19 22:22:01.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3056','113','1','15600','1.99','2005-08-23 06:31:24.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3057','113','1','15770','2.99','2005-08-23 13:18:16.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3058','114','1','205','4.99','2005-05-26 07:59:37.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3059','114','1','255','4.99','2005-05-26 14:52:15.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3060','114','2','889','2.99','2005-05-30 07:14:53.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3061','114','1','2059','2.99','2005-06-17 15:36:12.000','2006-02-15 22:13:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3062','114','2','2680','7.99','2005-06-19 12:13:37.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3063','114','1','3094','2.99','2005-06-20 16:06:51.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3064','114','2','3144','5.99','2005-06-20 20:14:20.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3065','114','1','3484','4.99','2005-07-05 23:23:11.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3066','114','1','3924','2.99','2005-07-06 20:38:02.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3067','114','1','4025','0.99','2005-07-07 02:13:24.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3068','114','1','5418','0.99','2005-07-09 20:41:35.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3069','114','2','5624','4.99','2005-07-10 05:43:16.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3070','114','1','5625','2.99','2005-07-10 05:44:02.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3071','114','1','6188','2.99','2005-07-11 11:31:47.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3072','114','1','6754','4.99','2005-07-12 14:59:24.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3073','114','2','7316','2.99','2005-07-27 13:19:03.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3074','114','2','7462','2.99','2005-07-27 18:47:47.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3075','114','2','7565','2.99','2005-07-27 22:33:59.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3076','114','2','7938','5.99','2005-07-28 12:39:11.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3077','114','2','8496','4.99','2005-07-29 09:05:33.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3078','114','1','8590','10.99','2005-07-29 12:32:20.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3079','114','1','9717','4.99','2005-07-31 08:24:41.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3080','114','1','11547','4.99','2005-08-17 00:59:24.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3081','114','2','12326','0.99','2005-08-18 06:41:59.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3082','114','1','12685','6.99','2005-08-18 19:51:29.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3083','114','2','13459','6.99','2005-08-20 00:45:40.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3084','114','2','14158','5.99','2005-08-21 02:43:20.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3085','114','1','14867','4.99','2005-08-22 03:14:46.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3086','114','1','15485','0.99','2005-08-23 02:04:57.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3087','114','1','15528','2.99','2005-08-23 03:45:40.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3088','114','2','15646','3.99','2005-08-23 08:19:55.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3089','114','1','16047','0.99','2005-08-23 22:42:48.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3090','114','2','12506','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3091','115','1','915','0.99','2005-05-30 11:20:27.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3092','115','1','983','0.99','2005-05-30 22:15:51.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3093','115','1','1102','2.99','2005-05-31 14:20:29.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3094','115','2','1361','0.99','2005-06-15 13:37:38.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3095','115','2','1515','2.99','2005-06-15 23:07:50.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3096','115','1','3289','6.99','2005-06-21 06:41:48.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3097','115','2','3544','0.99','2005-07-06 02:06:32.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3098','115','1','3624','0.99','2005-07-06 06:06:27.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3099','115','1','4780','1.99','2005-07-08 16:06:51.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3100','115','1','5245','4.99','2005-07-09 13:24:14.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3101','115','1','6080','2.99','2005-07-11 05:08:11.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3102','115','2','6113','2.99','2005-07-11 07:31:08.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3103','115','1','6373','0.99','2005-07-11 21:35:20.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3104','115','1','6574','5.99','2005-07-12 06:04:22.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3105','115','1','6798','6.99','2005-07-12 16:49:11.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3106','115','2','7355','1.99','2005-07-27 14:45:59.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3107','115','2','7465','4.99','2005-07-27 18:50:30.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3108','115','1','7983','4.99','2005-07-28 14:23:01.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3109','115','1','8594','4.99','2005-07-29 12:42:13.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3110','115','2','9578','0.99','2005-07-31 02:54:31.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3111','115','2','10022','3.99','2005-07-31 18:25:30.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3112','115','2','10475','4.99','2005-08-01 10:03:17.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3113','115','2','10647','2.99','2005-08-01 16:08:46.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3114','115','2','10919','0.99','2005-08-02 02:11:03.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3115','115','1','11891','2.99','2005-08-17 15:11:55.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3116','115','2','12366','0.99','2005-08-18 07:55:14.000','2006-02-15 22:13:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3117','115','2','13977','0.99','2005-08-20 19:02:34.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3118','115','1','15176','6.99','2005-08-22 15:30:25.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3119','115','2','15452','0.99','2005-08-23 00:57:12.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3120','115','2','13056','2.99','2006-02-14 15:16:03.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3121','116','1','1058','4.99','2005-05-31 08:04:17.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3122','116','2','1332','0.99','2005-06-15 11:36:01.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3123','116','2','1533','0.99','2005-06-16 00:46:02.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3124','116','2','1762','4.99','2005-06-16 17:50:19.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3125','116','2','1913','4.99','2005-06-17 05:19:47.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3126','116','1','2639','4.99','2005-06-19 09:24:02.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3127','116','1','2861','3.99','2005-06-19 23:21:34.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3128','116','2','3908','6.99','2005-07-06 19:47:26.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3129','116','2','3940','2.99','2005-07-06 21:16:59.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3130','116','1','4027','0.99','2005-07-07 02:19:01.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3131','116','2','4737','4.99','2005-07-08 13:23:53.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3132','116','2','5169','2.99','2005-07-09 09:22:25.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3133','116','1','6557','4.99','2005-07-12 05:12:03.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3134','116','1','7238','0.99','2005-07-27 10:13:41.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3135','116','2','7763','5.99','2005-07-28 06:35:16.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3136','116','2','9245','6.99','2005-07-30 14:07:50.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3137','116','1','9562','3.99','2005-07-31 02:23:20.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3138','116','2','10250','1.99','2005-08-01 02:38:42.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3139','116','1','10801','1.99','2005-08-01 22:09:35.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3140','116','2','11016','4.99','2005-08-02 05:19:13.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3141','116','2','12376','2.99','2005-08-18 08:20:29.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3142','116','2','13146','7.99','2005-08-19 12:54:42.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3143','116','1','13369','0.99','2005-08-19 21:19:47.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3144','116','1','13474','0.99','2005-08-20 01:04:32.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3145','116','1','13775','6.99','2005-08-20 11:56:30.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3146','116','2','14763','11.99','2005-08-21 23:34:00.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3147','116','1','14907','2.99','2005-08-22 04:44:09.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3148','117','1','700','0.99','2005-05-29 02:18:54.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3149','117','2','1114','0.99','2005-05-31 16:00:33.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3150','117','1','1755','2.99','2005-06-16 17:18:44.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3151','117','2','3218','2.99','2005-06-21 01:38:09.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3152','117','2','5506','5.99','2005-07-10 00:45:48.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3153','117','1','5673','0.99','2005-07-10 08:21:54.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3154','117','1','6093','9.99','2005-07-11 05:52:50.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3155','117','1','6449','6.99','2005-07-12 00:48:58.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3156','117','1','8687','2.99','2005-07-29 16:19:17.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3157','117','2','10556','2.99','2005-08-01 12:58:42.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3158','117','1','10558','4.99','2005-08-01 13:00:20.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3159','117','2','11467','3.99','2005-08-02 21:47:07.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3160','117','1','12143','2.99','2005-08-18 00:06:26.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3161','117','1','12337','2.99','2005-08-18 07:02:24.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3162','117','1','12575','6.99','2005-08-18 15:37:42.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3163','117','1','12618','4.99','2005-08-18 17:24:02.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3164','117','1','14784','0.99','2005-08-22 00:23:13.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3165','117','2','14854','2.99','2005-08-22 02:26:47.000','2006-02-15 22:13:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3166','117','1','15432','2.99','2005-08-23 00:26:52.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3167','118','2','351','5.99','2005-05-27 05:39:03.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3168','118','2','1766','4.99','2005-06-16 17:59:37.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3169','118','2','2217','0.99','2005-06-18 03:12:29.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3170','118','1','3263','4.99','2005-06-21 04:15:52.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3171','118','1','4966','0.99','2005-07-08 23:47:25.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3172','118','1','5829','1.99','2005-07-10 16:29:41.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3173','118','1','6377','0.99','2005-07-11 21:41:16.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3174','118','1','6507','1.99','2005-07-12 03:33:12.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3175','118','1','7196','2.99','2005-07-27 08:49:08.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3176','118','1','7850','4.99','2005-07-28 09:31:13.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3177','118','2','7956','4.99','2005-07-28 13:32:17.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3178','118','1','8314','3.99','2005-07-29 03:35:04.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3179','118','2','8760','7.99','2005-07-29 19:22:40.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3180','118','1','8881','4.99','2005-07-30 00:22:31.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3181','118','2','10045','1.99','2005-07-31 19:04:35.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3182','118','2','12538','2.99','2005-08-18 14:09:09.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3183','118','2','13193','6.99','2005-08-19 14:33:45.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3184','118','2','14394','5.99','2005-08-21 10:23:10.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3185','118','2','14595','7.99','2005-08-21 17:35:17.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3186','118','1','14924','2.99','2005-08-22 05:15:17.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3187','118','1','15731','0.99','2005-08-23 11:33:25.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3188','119','2','67','0.99','2005-05-25 09:41:01.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3189','119','1','235','5.99','2005-05-26 11:51:09.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3190','119','2','540','6.99','2005-05-28 06:40:25.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3191','119','1','1179','7.99','2005-06-15 00:36:50.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3192','119','2','2009','2.99','2005-06-17 11:48:31.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3193','119','2','3388','5.99','2005-06-21 14:34:51.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3194','119','2','4840','8.99','2005-07-08 18:18:16.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3195','119','1','5176','5.99','2005-07-09 09:39:31.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3196','119','1','5268','0.99','2005-07-09 14:22:43.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3197','119','1','6079','7.99','2005-07-11 05:07:14.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3198','119','2','6330','0.99','2005-07-11 19:15:42.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3199','119','2','8140','4.99','2005-07-28 20:17:50.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3200','119','1','8183','5.99','2005-07-28 22:21:07.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3201','119','1','8304','4.99','2005-07-29 03:08:30.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3202','119','2','9028','2.99','2005-07-30 06:00:35.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3203','119','1','10101','0.99','2005-07-31 20:47:29.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3204','119','1','10366','3.99','2005-08-01 06:09:37.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3205','119','2','10552','2.99','2005-08-01 12:49:44.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3206','119','1','10681','4.99','2005-08-01 17:30:35.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3207','119','2','11377','2.99','2005-08-02 18:16:47.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3208','119','1','11520','5.99','2005-08-17 00:04:28.000','2006-02-15 22:13:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3209','119','2','12576','2.99','2005-08-18 15:38:31.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3210','119','2','12603','3.99','2005-08-18 16:56:20.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3211','119','2','12842','6.99','2005-08-19 01:57:21.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3212','119','1','13581','4.99','2005-08-20 05:26:15.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3213','119','2','14349','3.99','2005-08-21 08:54:53.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3214','119','2','14382','2.99','2005-08-21 10:01:03.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3215','119','2','14643','6.99','2005-08-21 19:11:58.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3216','119','2','14659','0.99','2005-08-21 19:42:36.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3217','119','1','15111','4.99','2005-08-22 12:21:43.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3218','119','2','15131','3.99','2005-08-22 13:06:26.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3219','119','2','15171','6.99','2005-08-22 15:23:59.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3220','119','1','15844','2.99','2005-08-23 15:38:12.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3221','119','2','16028','3.99','2005-08-23 21:52:56.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3222','120','2','68','7.99','2005-05-25 09:47:31.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3223','120','2','532','0.99','2005-05-28 05:36:58.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3224','120','1','1374','3.99','2005-06-15 14:49:54.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3225','120','1','1820','4.99','2005-06-16 21:34:50.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3226','120','2','1932','2.99','2005-06-17 06:54:41.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3227','120','1','2169','4.99','2005-06-17 23:57:23.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3228','120','1','2803','9.99','2005-06-19 19:18:27.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3229','120','1','3133','2.99','2005-06-20 19:18:32.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3230','120','1','4001','5.99','2005-07-07 00:07:00.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3231','120','2','4272','3.99','2005-07-07 14:39:20.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3232','120','2','4342','0.99','2005-07-07 18:47:03.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3233','120','2','4666','9.99','2005-07-08 10:05:02.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3234','120','1','4942','1.99','2005-07-08 22:42:47.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3235','120','2','5288','1.99','2005-07-09 15:13:07.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3236','120','2','6503','0.99','2005-07-12 03:18:07.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3237','120','1','6989','4.99','2005-07-27 01:00:34.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3238','120','2','8046','0.99','2005-07-28 16:49:41.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3239','120','2','8756','1.99','2005-07-29 19:18:57.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3240','120','1','8998','6.99','2005-07-30 04:54:14.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3241','120','2','9907','6.99','2005-07-31 14:39:50.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3242','120','2','10161','0.99','2005-07-31 23:09:41.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3243','120','2','10696','4.99','2005-08-01 18:18:13.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3244','120','1','10940','3.99','2005-08-02 03:08:29.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3245','120','2','11133','0.99','2005-08-02 09:15:45.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3246','120','2','13167','2.99','2005-08-19 13:36:41.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3247','120','2','13375','7.99','2005-08-19 21:31:31.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3248','120','1','14001','2.99','2005-08-20 20:07:15.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3249','120','1','14153','4.99','2005-08-21 02:24:33.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3250','120','1','14246','4.99','2005-08-21 05:34:09.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3251','120','2','14460','9.99','2005-08-21 12:48:48.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3252','120','2','14969','6.99','2005-08-22 06:49:15.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3253','120','1','15780','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3254','121','1','217','4.99','2005-05-26 09:24:26.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3255','121','1','1634','2.99','2005-06-16 08:16:05.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3256','121','1','1833','1.99','2005-06-16 22:45:03.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3257','121','2','5670','0.99','2005-07-10 08:14:52.000','2006-02-15 22:13:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3258','121','2','6780','4.99','2005-07-12 16:18:12.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3259','121','2','7114','0.99','2005-07-27 05:42:13.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3260','121','1','7185','0.99','2005-07-27 08:23:54.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3261','121','2','7298','2.99','2005-07-27 12:45:14.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3262','121','1','8370','6.99','2005-07-29 05:16:21.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3263','121','2','8788','1.99','2005-07-29 20:46:44.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3264','121','2','8875','2.99','2005-07-30 00:15:09.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3265','121','2','8969','8.99','2005-07-30 04:00:19.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3266','121','2','10457','5.99','2005-08-01 09:17:34.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3267','121','2','11720','8.99','2005-08-17 07:46:54.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3268','121','2','12242','1.99','2005-08-18 03:37:31.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3269','121','2','12428','3.99','2005-08-18 10:24:21.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3270','121','2','12734','1.99','2005-08-18 22:04:52.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3271','121','1','12881','5.99','2005-08-19 03:28:13.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3272','121','2','12892','0.99','2005-08-19 03:46:34.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3273','121','1','14138','7.99','2005-08-21 01:59:37.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3274','121','1','14177','4.99','2005-08-21 03:11:33.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3275','121','2','14412','9.99','2005-08-21 11:02:09.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3276','121','1','14464','2.99','2005-08-21 12:52:54.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3277','121','2','15114','7.99','2005-08-22 12:24:55.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3278','121','1','15369','0.99','2005-08-22 21:58:06.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3279','121','1','16041','2.99','2005-08-23 22:20:26.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3280','122','2','853','0.99','2005-05-30 01:43:31.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3281','122','2','1135','4.99','2005-05-31 19:15:11.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3282','122','1','1211','0.99','2005-06-15 03:01:20.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3283','122','2','1442','7.99','2005-06-15 18:55:34.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3284','122','2','2240','3.99','2005-06-18 04:28:27.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3285','122','1','2253','0.99','2005-06-18 05:11:43.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3286','122','1','2482','4.99','2005-06-18 21:10:44.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3287','122','2','2595','4.99','2005-06-19 05:43:55.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3288','122','2','2834','1.99','2005-06-19 21:41:46.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3289','122','1','3778','2.99','2005-07-06 13:44:48.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3290','122','2','3986','4.99','2005-07-06 23:25:13.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3291','122','1','4239','7.99','2005-07-07 13:23:17.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3292','122','1','4568','4.99','2005-07-08 05:23:59.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3293','122','2','5235','6.99','2005-07-09 12:54:25.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3294','122','2','6231','0.99','2005-07-11 14:02:36.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3295','122','1','6427','0.99','2005-07-11 23:57:34.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3296','122','1','6436','0.99','2005-07-12 00:18:42.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3297','122','2','6974','7.99','2005-07-27 00:39:16.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3298','122','1','7267','2.99','2005-07-27 11:22:55.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3299','122','2','7950','4.99','2005-07-28 13:21:00.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3300','122','1','8077','2.99','2005-07-28 17:54:35.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3301','122','2','8177','0.99','2005-07-28 21:43:54.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3302','122','1','8772','5.99','2005-07-29 19:55:25.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3303','122','2','9910','4.99','2005-07-31 14:47:57.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3304','122','1','10626','1.99','2005-08-01 15:32:41.000','2006-02-15 22:13:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3305','122','2','11044','3.99','2005-08-02 06:05:27.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3306','122','2','11197','2.99','2005-08-02 11:45:07.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3307','122','2','12476','4.99','2005-08-18 12:22:40.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3308','122','2','12711','4.99','2005-08-18 21:03:32.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3309','122','1','13171','2.99','2005-08-19 13:48:54.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3310','122','1','13812','4.99','2005-08-20 13:01:43.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3311','122','2','14666','5.99','2005-08-21 19:51:09.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3312','123','1','992','2.99','2005-05-30 23:47:56.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3313','123','2','1490','4.99','2005-06-15 21:42:17.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3314','123','1','1751','0.99','2005-06-16 17:00:14.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3315','123','2','1775','4.99','2005-06-16 18:28:19.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3316','123','2','1951','0.99','2005-06-17 08:30:35.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3317','123','1','2594','2.99','2005-06-19 05:43:43.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3318','123','1','4442','3.99','2005-07-07 23:05:30.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3319','123','1','4860','8.99','2005-07-08 18:54:07.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3320','123','2','7535','4.99','2005-07-27 21:32:39.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3321','123','1','7727','2.99','2005-07-28 04:52:43.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3322','123','2','7768','0.99','2005-07-28 06:44:03.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3323','123','1','7852','2.99','2005-07-28 09:34:29.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3324','123','1','7969','5.99','2005-07-28 13:57:37.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3325','123','2','8699','4.99','2005-07-29 16:53:00.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3326','123','2','9529','4.99','2005-07-31 01:05:26.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3327','123','1','10066','4.99','2005-07-31 19:30:01.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3328','123','2','10295','8.99','2005-08-01 03:53:49.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3329','123','1','12360','2.99','2005-08-18 07:46:35.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3330','123','1','12402','3.99','2005-08-18 09:27:34.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3331','123','1','13668','2.99','2005-08-20 08:26:06.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3332','123','2','15152','7.99','2005-08-22 14:25:21.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3333','123','2','15525','4.99','2005-08-23 03:43:32.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3334','123','1','15621','1.99','2005-08-23 07:13:43.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3335','123','2','15787','2.99','2005-08-23 13:51:57.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3336','124','1','775','0.99','2005-05-29 13:23:26.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3337','124','2','1039','4.99','2005-05-31 05:32:29.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3338','124','2','1057','3.99','2005-05-31 07:58:06.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3339','124','2','1130','5.99','2005-05-31 18:13:57.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3340','124','2','2336','1.99','2005-06-18 11:00:05.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3341','124','1','4341','7.99','2005-07-07 18:44:23.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3342','124','2','4709','2.99','2005-07-08 12:04:34.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3343','124','1','5566','2.99','2005-07-10 03:30:17.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3344','124','1','6411','2.99','2005-07-11 23:10:50.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3345','124','1','7519','6.99','2005-07-27 21:01:41.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3346','124','2','7700','8.99','2005-07-28 03:54:14.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3347','124','2','8524','0.99','2005-07-29 10:20:07.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3348','124','1','9986','3.99','2005-07-31 17:16:50.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3349','124','2','11493','5.99','2005-08-02 22:47:00.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3350','124','1','12835','4.99','2005-08-19 01:47:45.000','2006-02-15 22:13:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3351','124','2','14737','0.99','2005-08-21 22:27:11.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3352','124','2','15266','4.99','2005-08-22 18:37:24.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3353','124','2','16023','0.99','2005-08-23 21:45:02.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3354','125','2','185','3.99','2005-05-26 05:30:03.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3355','125','1','1481','2.99','2005-06-15 21:17:58.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3356','125','1','2355','3.99','2005-06-18 12:57:06.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3357','125','1','2826','7.99','2005-06-19 20:41:35.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3358','125','1','3118','4.99','2005-06-20 18:05:57.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3359','125','1','3617','4.99','2005-07-06 05:58:06.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3360','125','1','5200','2.99','2005-07-09 10:52:09.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3361','125','2','5523','7.99','2005-07-10 01:47:55.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3362','125','1','6055','0.99','2005-07-11 03:59:08.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3363','125','2','6268','6.99','2005-07-11 15:55:34.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3364','125','1','7323','4.99','2005-07-27 13:39:40.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3365','125','2','7879','0.99','2005-07-28 10:27:46.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3366','125','2','7922','0.99','2005-07-28 12:05:25.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3367','125','2','8375','2.99','2005-07-29 05:25:30.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3368','125','1','8433','2.99','2005-07-29 07:19:16.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3369','125','1','8832','4.99','2005-07-29 22:37:49.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3370','125','1','9129','9.99','2005-07-30 09:51:21.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3371','125','1','9496','4.99','2005-07-30 23:55:20.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3372','125','2','9504','0.99','2005-07-31 00:09:07.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3373','125','1','9722','4.99','2005-07-31 08:29:48.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3374','125','2','9734','2.99','2005-07-31 08:57:45.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3375','125','1','10583','2.99','2005-08-01 13:54:35.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3376','125','1','10699','2.99','2005-08-01 18:24:51.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3377','125','2','11279','7.99','2005-08-02 14:30:03.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3378','125','1','11806','4.99','2005-08-17 11:49:28.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3379','125','1','11832','4.99','2005-08-17 12:55:31.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3380','125','1','11999','0.99','2005-08-17 18:47:07.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3381','125','1','12075','4.99','2005-08-17 21:54:55.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3382','125','2','12262','2.99','2005-08-18 04:16:15.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3383','125','2','13441','6.99','2005-08-19 23:48:23.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3384','125','2','14456','2.99','2005-08-21 12:38:09.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3385','125','1','15055','2.99','2005-08-22 10:14:39.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3386','126','1','9','4.99','2005-05-25 00:00:40.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3387','126','1','752','4.99','2005-05-29 10:14:15.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3388','126','2','1054','4.99','2005-05-31 07:33:25.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3389','126','1','3450','2.99','2005-06-21 21:01:57.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3390','126','2','3502','5.99','2005-07-06 00:15:06.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3391','126','1','3725','4.99','2005-07-06 11:15:04.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3392','126','1','3804','7.99','2005-07-06 15:08:08.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3393','126','1','4691','0.99','2005-07-08 11:04:53.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3394','126','2','4730','2.99','2005-07-08 12:59:49.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3395','126','2','5137','0.99','2005-07-09 08:00:34.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3396','126','1','5865','0.99','2005-07-10 18:31:05.000','2006-02-15 22:13:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3397','126','1','6747','0.99','2005-07-12 14:33:21.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3398','126','2','6755','6.99','2005-07-12 15:07:49.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3399','126','1','7962','0.99','2005-07-28 13:48:09.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3400','126','1','8091','2.99','2005-07-28 18:27:29.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3401','126','1','9492','6.99','2005-07-30 23:52:21.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3402','126','2','10032','4.99','2005-07-31 18:41:55.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3403','126','1','11196','9.99','2005-08-02 11:42:40.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3404','126','2','11613','4.99','2005-08-17 03:50:33.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3405','126','1','11779','3.99','2005-08-17 10:31:58.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3406','126','1','11801','0.99','2005-08-17 11:30:11.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3407','126','2','12991','2.99','2005-08-19 07:21:24.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3408','126','2','13015','7.99','2005-08-19 07:56:51.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3409','126','2','13177','0.99','2005-08-19 13:56:58.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3410','126','2','14477','2.99','2005-08-21 13:32:38.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3411','126','2','14577','2.99','2005-08-21 16:52:29.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3412','126','2','15741','4.99','2005-08-23 12:10:54.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3413','126','1','16007','7.99','2005-08-23 21:02:43.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3414','127','1','452','0.99','2005-05-27 19:30:33.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3415','127','1','708','0.99','2005-05-29 03:23:47.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3416','127','1','1293','4.99','2005-06-15 09:06:24.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3417','127','2','1803','2.99','2005-06-16 20:32:47.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3418','127','2','2412','3.99','2005-06-18 16:58:58.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3419','127','1','4652','5.99','2005-07-08 09:47:51.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3420','127','2','4811','5.99','2005-07-08 17:04:24.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3421','127','2','5499','2.99','2005-07-10 00:27:45.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3422','127','2','5983','2.99','2005-07-11 00:34:11.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3423','127','1','7912','4.99','2005-07-28 11:46:58.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3424','127','2','8209','6.99','2005-07-28 23:29:28.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3425','127','1','9859','6.99','2005-07-31 13:02:55.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3426','127','1','10197','2.99','2005-08-01 00:35:25.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3427','127','1','10787','10.99','2005-08-01 21:35:01.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3428','127','1','10973','7.99','2005-08-02 04:09:42.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3429','127','1','11235','0.99','2005-08-02 13:13:21.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3430','127','2','12060','4.99','2005-08-17 21:11:57.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3431','127','2','12820','2.99','2005-08-19 01:05:08.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3432','127','2','13043','4.99','2005-08-19 09:07:13.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3433','127','1','13091','2.99','2005-08-19 10:40:10.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3434','127','2','14030','2.99','2005-08-20 21:23:54.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3435','127','1','14189','2.99','2005-08-21 03:32:17.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3436','127','1','15463','5.99','2005-08-23 01:15:07.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3437','127','2','15736','5.99','2005-08-23 11:40:30.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3438','128','2','888','5.99','2005-05-30 07:13:14.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3439','128','2','1131','2.99','2005-05-31 18:44:19.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3440','128','2','2519','7.99','2005-06-19 00:19:21.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3441','128','1','2565','0.99','2005-06-19 03:44:03.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3442','128','1','3751','0.99','2005-07-06 12:23:41.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3443','128','2','3995','5.99','2005-07-06 23:43:03.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3444','128','1','5270','2.99','2005-07-09 14:23:46.000','2006-02-15 22:13:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3445','128','1','5647','4.99','2005-07-10 07:08:40.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3446','128','2','5997','4.99','2005-07-11 01:19:50.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3447','128','2','6186','2.99','2005-07-11 11:26:41.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3448','128','2','6481','6.99','2005-07-12 01:50:15.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3449','128','2','6687','2.99','2005-07-12 12:19:23.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3450','128','2','7582','4.99','2005-07-27 23:15:14.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3451','128','2','8415','2.99','2005-07-29 06:52:27.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3452','128','2','9215','5.99','2005-07-30 13:11:11.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3453','128','2','9234','2.99','2005-07-30 13:45:54.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3454','128','1','9433','5.99','2005-07-30 21:28:17.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3455','128','2','9858','2.99','2005-07-31 13:02:07.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3456','128','1','9952','3.99','2005-07-31 15:52:37.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3457','128','1','10011','2.99','2005-07-31 18:02:41.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3458','128','1','10394','2.99','2005-08-01 06:58:17.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3459','128','2','12731','2.99','2005-08-18 21:55:38.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3460','128','2','12843','2.99','2005-08-19 01:58:54.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3461','128','2','12910','0.99','2005-08-19 04:23:13.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3462','128','2','13027','0.99','2005-08-19 08:25:16.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3463','128','2','13181','5.99','2005-08-19 14:00:56.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3464','128','1','13509','0.99','2005-08-20 02:14:16.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3465','128','2','13964','2.99','2005-08-20 18:24:26.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3466','128','2','14157','0.99','2005-08-21 02:43:15.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3467','128','1','14925','8.99','2005-08-22 05:16:16.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3468','128','1','15220','3.99','2005-08-22 17:02:23.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3469','128','1','15835','8.99','2005-08-23 15:25:27.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3470','129','2','1732','0.99','2005-06-16 15:34:41.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3471','129','1','2727','3.99','2005-06-19 15:02:39.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3472','129','2','2768','0.99','2005-06-19 17:46:52.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3473','129','2','2795','4.99','2005-06-19 18:58:53.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3474','129','1','3183','4.99','2005-06-20 22:55:55.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3475','129','1','3219','3.99','2005-06-21 01:43:26.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3476','129','1','3689','0.99','2005-07-06 09:43:01.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3477','129','2','3900','4.99','2005-07-06 19:21:28.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3478','129','2','3936','0.99','2005-07-06 21:15:03.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3479','129','2','4256','2.99','2005-07-07 14:14:36.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3480','129','1','4602','0.99','2005-07-08 06:52:40.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3481','129','1','4896','2.99','2005-07-08 20:23:15.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3482','129','1','4996','0.99','2005-07-09 00:59:46.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3483','129','1','5127','0.99','2005-07-09 07:25:47.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3484','129','2','5350','4.99','2005-07-09 17:39:30.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3485','129','1','8339','4.99','2005-07-29 04:41:13.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3486','129','1','8345','2.99','2005-07-29 04:47:37.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3487','129','2','9823','4.99','2005-07-31 11:49:00.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3488','129','1','9983','7.99','2005-07-31 17:09:36.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3489','129','1','10024','7.99','2005-07-31 18:26:36.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3490','129','2','10167','5.99','2005-07-31 23:24:31.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3491','129','2','10395','2.99','2005-08-01 07:08:22.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3492','129','1','10468','0.99','2005-08-01 09:48:29.000','2006-02-15 22:13:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3493','129','1','10483','2.99','2005-08-01 10:19:45.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3494','129','2','10550','2.99','2005-08-01 12:46:52.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3495','129','2','10816','4.99','2005-08-01 22:48:57.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3496','129','2','12612','3.99','2005-08-18 17:10:05.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3497','129','2','12728','4.99','2005-08-18 21:47:48.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3498','129','2','13653','10.99','2005-08-20 07:54:54.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3499','129','1','13915','4.99','2005-08-20 16:42:53.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3500','129','1','13919','4.99','2005-08-20 16:47:34.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3501','129','1','13961','0.99','2005-08-20 18:16:34.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3502','129','1','14353','0.99','2005-08-21 09:07:50.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3503','129','2','14968','1.99','2005-08-22 06:46:59.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3504','130','1','1','2.99','2005-05-24 22:53:30.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3505','130','1','746','2.99','2005-05-29 09:25:10.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3506','130','1','1630','2.99','2005-06-16 07:55:01.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3507','130','2','1864','2.99','2005-06-17 01:39:47.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3508','130','2','2163','2.99','2005-06-17 23:46:16.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3509','130','2','2292','2.99','2005-06-18 07:37:48.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3510','130','1','2535','2.99','2005-06-19 01:39:04.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3511','130','1','2982','6.99','2005-06-20 08:38:29.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3512','130','2','4339','4.99','2005-07-07 18:41:42.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3513','130','2','4485','4.99','2005-07-08 01:07:54.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3514','130','1','6353','3.99','2005-07-11 20:48:56.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3515','130','1','7181','4.99','2005-07-27 08:14:34.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3516','130','1','7728','0.99','2005-07-28 04:56:33.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3517','130','1','9452','0.99','2005-07-30 22:19:16.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3518','130','2','9637','4.99','2005-07-31 05:18:54.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3519','130','2','9724','5.99','2005-07-31 08:33:08.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3520','130','2','10568','2.99','2005-08-01 13:17:28.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3521','130','2','10645','5.99','2005-08-01 15:52:01.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3522','130','1','11811','2.99','2005-08-17 11:59:18.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3523','130','1','12094','2.99','2005-08-17 22:31:04.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3524','130','1','12777','6.99','2005-08-18 23:39:22.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3525','130','2','14111','0.99','2005-08-21 00:59:01.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3526','130','2','15574','5.99','2005-08-23 05:29:32.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3527','130','1','15777','4.99','2005-08-23 13:29:08.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3528','131','2','55','2.99','2005-05-25 08:26:13.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3529','131','1','83','4.99','2005-05-25 12:30:15.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3530','131','2','944','7.99','2005-05-30 15:26:24.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3531','131','1','1646','9.99','2005-06-16 09:12:53.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3532','131','2','1768','4.99','2005-06-16 18:02:06.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3533','131','1','3515','2.99','2005-07-06 00:48:55.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3534','131','1','5233','4.99','2005-07-09 12:44:26.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3535','131','1','5395','4.99','2005-07-09 19:42:37.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3536','131','1','5610','2.99','2005-07-10 05:09:52.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3537','131','2','5726','2.99','2005-07-10 11:22:08.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3538','131','1','5874','3.99','2005-07-10 19:02:51.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3539','131','1','7557','2.99','2005-07-27 22:18:19.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3540','131','2','8071','0.99','2005-07-28 17:27:48.000','2006-02-15 22:13:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3541','131','1','8267','6.99','2005-07-29 01:21:02.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3542','131','1','8570','8.99','2005-07-29 11:40:08.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3543','131','1','9323','3.99','2005-07-30 17:21:44.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3544','131','1','10179','2.99','2005-07-31 23:49:54.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3545','131','1','10459','4.99','2005-08-01 09:20:09.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3546','131','1','10861','1.99','2005-08-02 00:12:46.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3547','131','2','11971','0.99','2005-08-17 17:53:42.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3548','131','1','11973','2.99','2005-08-17 17:55:58.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3549','131','1','12216','0.99','2005-08-18 02:37:07.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3550','131','2','12263','0.99','2005-08-18 04:16:18.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3551','131','1','12372','9.99','2005-08-18 08:04:35.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3552','131','2','13050','6.99','2005-08-19 09:31:23.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3553','131','2','13346','7.99','2005-08-19 20:28:21.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3554','131','2','13353','2.99','2005-08-19 20:53:43.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3555','131','1','13407','0.99','2005-08-19 22:26:26.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3556','131','2','15659','2.99','2005-08-23 08:48:43.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3557','131','1','16042','2.99','2005-08-23 22:20:40.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3558','132','1','1843','0.99','2005-06-16 23:53:42.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3559','132','1','2208','4.99','2005-06-18 02:22:07.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3560','132','1','2384','0.99','2005-06-18 15:18:49.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3561','132','2','2608','2.99','2005-06-19 07:10:36.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3562','132','2','2924','4.99','2005-06-20 04:20:14.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3563','132','1','3121','4.99','2005-06-20 18:23:30.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3564','132','1','3706','0.99','2005-07-06 10:18:01.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3565','132','2','3825','2.99','2005-07-06 15:50:03.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3566','132','1','4168','4.99','2005-07-07 09:37:24.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3567','132','1','4534','4.99','2005-07-08 03:36:55.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3568','132','1','4557','5.99','2005-07-08 04:49:15.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3569','132','2','4903','0.99','2005-07-08 20:50:05.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3570','132','1','5391','2.99','2005-07-09 19:28:34.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3571','132','2','5684','5.99','2005-07-10 08:59:03.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3572','132','1','5703','0.99','2005-07-10 10:04:15.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3573','132','2','5715','1.99','2005-07-10 10:48:03.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3574','132','1','6239','6.99','2005-07-11 14:20:48.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3575','132','1','6978','1.99','2005-07-27 00:47:40.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3576','132','2','7432','0.99','2005-07-27 17:31:40.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3577','132','1','7631','1.99','2005-07-28 01:01:15.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3578','132','2','10243','4.99','2005-08-01 02:18:46.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3579','132','1','10400','6.99','2005-08-01 07:18:24.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3580','132','2','10619','3.99','2005-08-01 15:07:04.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3581','132','1','10638','6.99','2005-08-01 15:44:20.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3582','132','2','11140','0.99','2005-08-02 09:27:45.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3583','132','2','11812','0.99','2005-08-17 12:00:54.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3584','132','2','12133','0.99','2005-08-17 23:47:16.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3585','132','1','15874','4.99','2005-08-23 16:30:55.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3586','133','1','275','6.99','2005-05-26 17:09:53.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3587','133','2','447','2.99','2005-05-27 18:57:02.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3588','133','2','1522','3.99','2005-06-16 00:17:39.000','2006-02-15 22:13:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3589','133','2','2665','7.99','2005-06-19 11:12:35.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3590','133','1','3006','0.99','2005-06-20 10:10:29.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3591','133','2','3365','0.99','2005-06-21 12:55:48.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3592','133','2','4506','6.99','2005-07-08 02:22:18.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3593','133','2','4566','2.99','2005-07-08 05:18:50.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3594','133','1','4681','6.99','2005-07-08 10:36:03.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3595','133','2','4829','2.99','2005-07-08 17:54:18.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3596','133','2','5063','2.99','2005-07-09 04:37:31.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3597','133','1','6157','4.99','2005-07-11 09:48:16.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3598','133','1','6609','3.99','2005-07-12 08:19:41.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3599','133','1','7177','2.99','2005-07-27 08:07:39.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3600','133','1','7400','0.99','2005-07-27 16:16:37.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3601','133','2','8389','6.99','2005-07-29 05:50:09.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3602','133','2','9139','2.99','2005-07-30 10:11:52.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3603','133','1','9175','0.99','2005-07-30 11:47:48.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3604','133','2','9671','0.99','2005-07-31 06:33:41.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3605','133','1','10665','0.99','2005-08-01 16:56:17.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3606','133','1','12419','4.99','2005-08-18 10:01:48.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3607','133','1','12834','4.99','2005-08-19 01:47:30.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3608','133','2','13323','2.99','2005-08-19 19:48:07.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3609','133','1','13455','1.99','2005-08-20 00:32:17.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3610','133','2','13910','2.99','2005-08-20 16:30:49.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3611','133','2','15080','0.99','2005-08-22 11:11:51.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3612','133','1','16009','6.99','2005-08-23 21:07:59.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3613','134','1','366','3.99','2005-05-27 07:33:54.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3614','134','2','798','0.99','2005-05-29 17:23:43.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3615','134','1','814','6.99','2005-05-29 20:16:12.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3616','134','2','1124','4.99','2005-05-31 16:49:34.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3617','134','1','1618','9.99','2005-06-16 07:08:38.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3618','134','2','1784','0.99','2005-06-16 19:25:32.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3619','134','2','1881','0.99','2005-06-17 03:09:56.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3620','134','1','3267','5.99','2005-06-21 04:55:21.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3621','134','1','5315','4.99','2005-07-09 16:09:19.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3622','134','2','6226','2.99','2005-07-11 13:48:11.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3623','134','1','6659','0.99','2005-07-12 11:18:05.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3624','134','2','7516','2.99','2005-07-27 20:55:28.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3625','134','2','7965','4.99','2005-07-28 13:52:57.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3626','134','2','8650','1.99','2005-07-29 14:59:04.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3627','134','1','10864','6.99','2005-08-02 00:18:59.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3628','134','1','11280','3.99','2005-08-02 14:34:33.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3629','134','1','11283','4.99','2005-08-02 14:39:46.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3630','134','2','11482','4.99','2005-08-02 22:24:31.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3631','134','1','12754','7.99','2005-08-18 22:37:41.000','2006-02-15 22:13:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3632','134','2','12987','2.99','2005-08-19 07:11:44.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3633','134','2','13006','2.99','2005-08-19 07:47:16.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3634','134','2','14265','2.99','2005-08-21 06:20:14.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3635','134','2','15963','2.99','2005-08-23 19:42:46.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3636','135','1','78','5.99','2005-05-25 11:35:18.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3637','135','2','753','3.99','2005-05-29 10:16:42.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3638','135','2','1272','0.99','2005-06-15 07:42:58.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3639','135','2','1671','1.99','2005-06-16 10:30:22.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3640','135','2','2941','2.99','2005-06-20 05:22:18.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3641','135','1','4102','0.99','2005-07-07 06:25:19.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3642','135','2','5054','7.99','2005-07-09 04:01:02.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3643','135','1','5541','0.99','2005-07-10 02:44:27.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3644','135','1','6117','3.99','2005-07-11 07:39:38.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3645','135','1','6461','3.99','2005-07-12 01:14:03.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3646','135','1','6817','3.99','2005-07-12 18:19:57.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3647','135','2','7297','4.99','2005-07-27 12:39:48.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3648','135','1','7437','0.99','2005-07-27 17:39:18.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3649','135','1','7554','7.99','2005-07-27 22:12:41.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3650','135','1','7734','0.99','2005-07-28 05:08:44.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3651','135','1','8315','0.99','2005-07-29 03:37:07.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3652','135','2','8885','7.99','2005-07-30 00:36:26.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3653','135','1','8987','6.99','2005-07-30 04:37:36.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3654','135','2','10091','4.99','2005-07-31 20:23:13.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3655','135','2','10471','0.99','2005-08-01 09:52:37.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3656','135','1','10611','2.99','2005-08-01 14:53:52.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3657','135','1','10698','3.99','2005-08-01 18:24:41.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3658','135','2','11194','5.99','2005-08-02 11:35:53.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3659','135','1','11704','7.99','2005-08-17 07:21:22.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3660','135','1','12249','2.99','2005-08-18 03:53:34.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3661','135','1','13035','0.99','2005-08-19 08:46:45.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3662','135','1','14005','0.99','2005-08-20 20:19:05.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3663','135','2','14136','5.99','2005-08-21 01:57:26.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3664','135','2','15908','2.99','2005-08-23 17:42:00.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3665','135','1','13390','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3666','136','2','1150','2.99','2005-05-31 21:20:09.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3667','136','2','2104','2.99','2005-06-17 19:14:30.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3668','136','1','4927','0.99','2005-07-08 22:05:35.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3669','136','1','5627','3.99','2005-07-10 05:51:12.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3670','136','2','6142','3.99','2005-07-11 08:54:09.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3671','136','1','6585','8.99','2005-07-12 06:50:52.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3672','136','2','9319','0.99','2005-07-30 17:15:27.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3673','136','2','9764','5.99','2005-07-31 09:42:58.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3674','136','2','11992','10.99','2005-08-17 18:27:22.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3675','136','1','12287','5.99','2005-08-18 04:58:06.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3676','136','2','12539','0.99','2005-08-18 14:10:09.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3677','136','2','13992','4.99','2005-08-20 19:30:35.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3678','136','2','14379','0.99','2005-08-21 09:53:03.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3679','136','1','14437','2.99','2005-08-21 11:48:32.000','2006-02-15 22:13:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3680','136','1','15439','4.99','2005-08-23 00:34:28.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3681','137','1','925','2.99','2005-05-30 12:13:52.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3682','137','1','2469','6.99','2005-06-18 20:24:23.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3683','137','1','2785','2.99','2005-06-19 18:43:57.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3684','137','2','3058','3.99','2005-06-20 13:28:35.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3685','137','1','3436','5.99','2005-06-21 19:16:09.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3686','137','2','3589','4.99','2005-07-06 04:30:18.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3687','137','2','3676','5.99','2005-07-06 09:10:37.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3688','137','2','3874','6.99','2005-07-06 18:06:12.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3689','137','1','4332','6.99','2005-07-07 18:25:26.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3690','137','2','4474','3.99','2005-07-08 00:26:56.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3691','137','1','5106','2.99','2005-07-09 06:40:24.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3692','137','1','5443','3.99','2005-07-09 21:56:09.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3693','137','1','5804','2.99','2005-07-10 15:06:31.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3694','137','1','6039','6.99','2005-07-11 03:12:19.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3695','137','2','6200','0.99','2005-07-11 12:16:42.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3696','137','1','8028','8.99','2005-07-28 16:11:15.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3697','137','1','8106','4.99','2005-07-28 19:02:46.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3698','137','2','8954','2.99','2005-07-30 03:25:51.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3699','137','1','9002','4.99','2005-07-30 05:02:21.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3700','137','2','9200','4.99','2005-07-30 12:39:52.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3701','137','2','9466','7.99','2005-07-30 22:44:36.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3702','137','1','9709','4.99','2005-07-31 08:04:55.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3703','137','1','9789','2.99','2005-07-31 10:30:25.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3704','137','1','10175','6.99','2005-07-31 23:40:11.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3705','137','2','10595','4.99','2005-08-01 14:16:28.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3706','137','2','10842','5.99','2005-08-01 23:41:24.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3707','137','2','11057','4.99','2005-08-02 06:38:19.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3708','137','1','11281','3.99','2005-08-02 14:35:01.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3709','137','2','11732','3.99','2005-08-17 08:29:46.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3710','137','1','12078','2.99','2005-08-17 22:00:22.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3711','137','1','13148','0.99','2005-08-19 12:55:30.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3712','137','1','13472','5.99','2005-08-20 01:03:31.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3713','137','1','13776','5.99','2005-08-20 11:57:06.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3714','137','1','14754','7.99','2005-08-21 23:17:26.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3715','137','2','15082','7.99','2005-08-22 11:17:06.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3716','137','1','15133','0.99','2005-08-22 13:17:43.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3717','137','2','15537','2.99','2005-08-23 04:00:30.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3718','137','2','15889','4.99','2005-08-23 16:57:43.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3719','137','1','16030','9.99','2005-08-23 21:56:04.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3720','138','1','523','2.99','2005-05-28 03:53:26.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3721','138','1','1020','0.99','2005-05-31 03:06:08.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3722','138','2','1316','0.99','2005-06-15 10:26:23.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3723','138','2','2038','0.99','2005-06-17 14:00:51.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3724','138','1','2731','7.99','2005-06-19 15:14:55.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3725','138','2','3481','2.99','2005-07-05 23:13:07.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3726','138','1','5378','0.99','2005-07-09 19:05:56.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3727','138','1','5600','1.99','2005-07-10 04:55:45.000','2006-02-15 22:13:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3728','138','1','5679','4.99','2005-07-10 08:44:02.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3729','138','1','6458','2.99','2005-07-12 01:08:52.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3730','138','1','6892','0.99','2005-07-12 21:10:04.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3731','138','1','7208','2.99','2005-07-27 09:16:28.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3732','138','1','7754','2.99','2005-07-28 06:10:55.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3733','138','2','8123','4.99','2005-07-28 19:28:23.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3734','138','2','8160','3.99','2005-07-28 21:10:30.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3735','138','1','8424','3.99','2005-07-29 07:06:03.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3736','138','2','9259','1.99','2005-07-30 14:37:44.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3737','138','1','9619','0.99','2005-07-31 04:17:02.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3738','138','1','9947','9.99','2005-07-31 15:49:40.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3739','138','1','10110','0.99','2005-07-31 21:06:12.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3740','138','2','10190','4.99','2005-08-01 00:27:53.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3741','138','1','10268','3.99','2005-08-01 03:08:56.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3742','138','1','10431','5.99','2005-08-01 08:41:54.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3743','138','1','11015','4.99','2005-08-02 05:13:00.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3744','138','1','11088','0.99','2005-08-02 07:48:31.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3745','138','1','11463','0.99','2005-08-02 21:37:36.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3746','138','2','12550','2.99','2005-08-18 14:40:38.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3747','138','2','12873','2.99','2005-08-19 03:05:41.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3748','138','1','14194','1.99','2005-08-21 03:40:11.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3749','138','2','14432','4.99','2005-08-21 11:36:15.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3750','138','2','14486','4.99','2005-08-21 13:52:54.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3751','138','1','14987','4.99','2005-08-22 07:41:08.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3752','138','1','15424','2.99','2005-08-23 00:03:01.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3753','138','1','15501','0.99','2005-08-23 02:39:56.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3754','139','2','1169','2.99','2005-06-14 23:42:56.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3755','139','1','1736','2.99','2005-06-16 15:52:32.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3756','139','1','2659','0.99','2005-06-19 10:47:42.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3757','139','2','2718','7.99','2005-06-19 14:49:42.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3758','139','2','4660','0.99','2005-07-08 09:54:47.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3759','139','2','4663','2.99','2005-07-08 09:59:18.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3760','139','2','5092','2.99','2005-07-09 05:57:39.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3761','139','2','5265','7.99','2005-07-09 14:15:01.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3762','139','1','5390','6.99','2005-07-09 19:26:22.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3763','139','1','5494','6.99','2005-07-10 00:15:00.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3764','139','1','6496','6.99','2005-07-12 02:57:39.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3765','139','2','6740','0.99','2005-07-12 14:22:08.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3766','139','1','7369','0.99','2005-07-27 15:07:58.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3767','139','2','7767','5.99','2005-07-28 06:42:02.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3768','139','2','9415','2.99','2005-07-30 20:48:31.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3769','139','2','9920','4.99','2005-07-31 14:57:13.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3770','139','1','10900','2.99','2005-08-02 01:34:26.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3771','139','1','12859','6.99','2005-08-19 02:23:23.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3772','139','2','13401','3.99','2005-08-19 22:16:16.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3773','139','2','14736','5.99','2005-08-21 22:25:53.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3774','139','1','14788','2.99','2005-08-22 00:27:59.000','2006-02-15 22:13:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3775','139','1','15024','2.99','2005-08-22 08:57:10.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3776','139','2','15029','2.99','2005-08-22 09:04:53.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3777','139','1','15062','2.99','2005-08-22 10:34:39.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3778','139','1','15218','9.99','2005-08-22 16:59:05.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3779','139','1','15471','3.99','2005-08-23 01:38:48.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3780','139','1','15743','0.99','2005-08-23 12:12:05.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3781','140','1','1586','4.99','2005-06-16 04:51:18.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3782','140','1','1687','2.99','2005-06-16 12:09:20.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3783','140','2','2332','6.99','2005-06-18 10:53:51.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3784','140','2','3171','0.99','2005-06-20 22:15:47.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3785','140','1','6286','4.99','2005-07-11 16:55:35.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3786','140','1','6407','9.99','2005-07-11 23:02:19.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3787','140','2','6571','0.99','2005-07-12 05:51:47.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3788','140','1','6918','2.99','2005-07-12 22:30:29.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3789','140','1','7170','4.99','2005-07-27 07:58:26.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3790','140','1','9094','4.99','2005-07-30 08:35:10.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3791','140','1','9404','0.99','2005-07-30 20:21:35.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3792','140','1','10342','6.99','2005-08-01 05:11:11.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3793','140','2','11430','3.99','2005-08-02 20:04:36.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3794','140','1','12086','4.99','2005-08-17 22:20:01.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3795','140','1','12675','4.99','2005-08-18 19:34:02.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3796','140','2','13053','10.99','2005-08-19 09:31:48.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3797','140','1','15261','2.99','2005-08-22 18:24:34.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3798','140','1','15852','2.99','2005-08-23 15:47:02.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3799','141','2','930','2.99','2005-05-30 12:44:57.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3800','141','2','1242','7.99','2005-06-15 05:05:07.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3801','141','2','2895','7.99','2005-06-20 02:26:31.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3802','141','1','3434','4.99','2005-06-21 19:08:28.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3803','141','1','4057','1.99','2005-07-07 04:00:20.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3804','141','2','4297','0.99','2005-07-07 16:24:09.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3805','141','1','4656','5.99','2005-07-08 09:50:10.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3806','141','2','5062','2.99','2005-07-09 04:36:49.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3807','141','1','5769','0.99','2005-07-10 13:17:58.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3808','141','2','6979','4.99','2005-07-27 00:49:53.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3809','141','2','7878','2.99','2005-07-28 10:27:10.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3810','141','1','8434','4.99','2005-07-29 07:20:14.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3811','141','2','9073','7.99','2005-07-30 07:49:56.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3812','141','1','9584','4.99','2005-07-31 03:05:48.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3813','141','2','9683','2.99','2005-07-31 06:47:13.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3814','141','1','10287','3.99','2005-08-01 03:37:01.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3815','141','1','10379','1.99','2005-08-01 06:34:29.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3816','141','1','10798','4.99','2005-08-01 22:03:10.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3817','141','1','11411','2.99','2005-08-02 19:29:47.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3818','141','1','11412','5.99','2005-08-02 19:32:51.000','2006-02-15 22:13:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3819','141','1','12032','5.99','2005-08-17 20:14:26.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3820','141','1','12093','2.99','2005-08-17 22:28:40.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3821','141','2','12107','3.99','2005-08-17 22:56:24.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3822','141','2','12353','2.99','2005-08-18 07:33:08.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3823','141','1','13000','0.99','2005-08-19 07:36:42.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3824','141','2','13169','2.99','2005-08-19 13:43:35.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3825','141','2','13470','4.99','2005-08-20 01:01:16.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3826','141','2','14059','7.99','2005-08-20 22:24:44.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3827','141','1','14112','2.99','2005-08-21 01:00:46.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3828','141','1','15013','4.99','2005-08-22 08:42:45.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3829','141','1','15309','0.99','2005-08-22 19:54:52.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3830','141','1','15964','2.99','2005-08-23 19:45:25.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3831','142','2','11','8.99','2005-05-25 00:09:02.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3832','142','1','148','0.99','2005-05-26 00:25:23.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3833','142','1','575','9.99','2005-05-28 10:56:09.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3834','142','1','1268','1.99','2005-06-15 07:29:30.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3835','142','1','3214','2.99','2005-06-21 01:08:26.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3836','142','2','3492','2.99','2005-07-05 23:44:37.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3837','142','2','4497','4.99','2005-07-08 01:51:32.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3838','142','1','4531','4.99','2005-07-08 03:27:59.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3839','142','1','6522','0.99','2005-07-12 04:11:58.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3840','142','1','7764','2.99','2005-07-28 06:40:05.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3841','142','2','8513','2.99','2005-07-29 09:52:59.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3842','142','2','8623','4.99','2005-07-29 13:55:11.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3843','142','1','9020','7.99','2005-07-30 05:31:27.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3844','142','1','9131','2.99','2005-07-30 09:55:57.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3845','142','1','9419','5.99','2005-07-30 21:04:59.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3846','142','2','10934','5.99','2005-08-02 02:52:18.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3847','142','2','11244','5.99','2005-08-02 13:33:24.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3848','142','1','12964','0.99','2005-08-19 06:29:13.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3849','142','1','13044','0.99','2005-08-19 09:14:31.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3850','142','2','13745','0.99','2005-08-20 10:53:49.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3851','142','1','13959','0.99','2005-08-20 18:16:21.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3852','142','2','14116','4.99','2005-08-21 01:11:17.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3853','142','2','14813','0.99','2005-08-22 01:11:37.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3854','142','2','15333','2.99','2005-08-22 20:44:06.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3855','142','1','15477','1.99','2005-08-23 01:46:35.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3856','142','1','15454','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3857','143','1','221','2.99','2005-05-26 10:14:09.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3858','143','1','312','2.99','2005-05-26 22:52:19.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3859','143','2','1898','1.99','2005-06-17 04:28:11.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3860','143','1','1942','4.99','2005-06-17 07:43:39.000','2006-02-15 22:13:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3861','143','2','2251','3.99','2005-06-18 05:05:08.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3862','143','1','2574','0.99','2005-06-19 04:23:52.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3863','143','1','2588','4.99','2005-06-19 05:20:31.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3864','143','1','4031','7.99','2005-07-07 02:32:07.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3865','143','2','4221','0.99','2005-07-07 12:18:57.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3866','143','1','4585','7.99','2005-07-08 06:11:58.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3867','143','2','6076','6.99','2005-07-11 05:05:30.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3868','143','2','6207','4.99','2005-07-11 12:34:24.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3869','143','1','8312','0.99','2005-07-29 03:32:38.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3870','143','1','8335','0.99','2005-07-29 04:18:25.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3871','143','2','9889','1.99','2005-07-31 14:02:50.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3872','143','1','10118','0.99','2005-07-31 21:16:31.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3873','143','1','11278','6.99','2005-08-02 14:29:43.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3874','143','2','11651','6.99','2005-08-17 05:02:25.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3875','143','1','12408','2.99','2005-08-18 09:40:38.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3876','143','2','13835','4.99','2005-08-20 14:06:33.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3877','143','1','15250','5.99','2005-08-22 18:03:11.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3878','143','1','16029','4.99','2005-08-23 21:54:02.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3879','144','1','323','2.99','2005-05-27 00:49:27.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3880','144','2','345','2.99','2005-05-27 04:32:25.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3881','144','1','1814','5.99','2005-06-16 21:15:22.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3882','144','1','1943','0.99','2005-06-17 07:49:17.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3883','144','1','2756','4.99','2005-06-19 16:57:42.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3884','144','2','3019','4.99','2005-06-20 11:11:52.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3885','144','1','3145','2.99','2005-06-20 20:21:17.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3886','144','1','3321','2.99','2005-06-21 08:33:26.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3887','144','1','4726','6.99','2005-07-08 12:50:54.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3888','144','2','4818','3.99','2005-07-08 17:18:22.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3889','144','2','5049','0.99','2005-07-09 03:54:12.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3890','144','2','5374','8.99','2005-07-09 18:52:08.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3891','144','2','5408','7.99','2005-07-09 20:16:51.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3892','144','2','5526','7.99','2005-07-10 02:04:03.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3893','144','2','6614','7.99','2005-07-12 08:33:49.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3894','144','2','6791','9.99','2005-07-12 16:35:07.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3895','144','2','7378','5.99','2005-07-27 15:31:33.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3896','144','2','7566','2.99','2005-07-27 22:34:45.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3897','144','1','7830','0.99','2005-07-28 08:43:49.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3898','144','1','7858','3.99','2005-07-28 09:50:18.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3899','144','2','8459','5.99','2005-07-29 08:05:40.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3900','144','1','8983','0.99','2005-07-30 04:31:08.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3901','144','1','9034','7.99','2005-07-30 06:10:58.000','2006-02-15 22:13:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3902','144','1','9098','3.99','2005-07-30 08:44:21.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3903','144','2','9174','4.99','2005-07-30 11:42:10.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3904','144','2','9714','0.99','2005-07-31 08:15:32.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3905','144','1','10302','0.99','2005-08-01 04:12:08.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3906','144','1','10593','4.99','2005-08-01 14:13:19.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3907','144','1','10740','5.99','2005-08-01 19:50:32.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3908','144','1','10951','4.99','2005-08-02 03:26:35.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3909','144','1','11228','2.99','2005-08-02 12:55:23.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3910','144','2','11476','6.99','2005-08-02 22:03:47.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3911','144','1','11534','7.99','2005-08-17 00:35:27.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3912','144','1','11859','4.99','2005-08-17 13:51:20.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3913','144','2','12087','2.99','2005-08-17 22:20:12.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3914','144','2','12733','2.99','2005-08-18 21:59:00.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3915','144','1','12858','3.99','2005-08-19 02:22:16.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3916','144','2','12980','6.99','2005-08-19 07:03:14.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3917','144','2','13881','2.99','2005-08-20 15:18:55.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3918','144','2','14159','2.99','2005-08-21 02:45:58.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3919','144','1','15017','1.99','2005-08-22 08:47:44.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3920','144','1','15753','7.99','2005-08-23 12:43:30.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3921','145','1','500','0.99','2005-05-28 01:05:25.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3922','145','2','2271','4.99','2005-06-18 06:29:52.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3923','145','2','2614','0.99','2005-06-19 07:28:11.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3924','145','1','3647','5.99','2005-07-06 07:29:17.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3925','145','2','4201','8.99','2005-07-07 11:19:51.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3926','145','1','4364','4.99','2005-07-07 19:46:51.000','2006-02-15 22:13:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3927','145','2','4405','6.99','2005-07-07 21:33:16.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3928','145','1','4470','2.99','2005-07-08 00:20:57.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3929','145','2','4817','2.99','2005-07-08 17:17:31.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3930','145','2','6056','2.99','2005-07-11 04:01:27.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3931','145','1','6339','1.99','2005-07-11 19:45:32.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3932','145','2','6378','0.99','2005-07-11 21:45:23.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3933','145','2','7061','2.99','2005-07-27 03:51:10.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3934','145','1','7529','7.99','2005-07-27 21:18:08.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3935','145','2','7954','0.99','2005-07-28 13:25:05.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3936','145','1','8380','0.99','2005-07-29 05:31:29.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3937','145','1','9156','2.99','2005-07-30 11:04:55.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3938','145','2','9576','0.99','2005-07-31 02:52:59.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3939','145','2','10799','4.99','2005-08-01 22:03:31.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3940','145','2','11904','5.99','2005-08-17 15:39:26.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3941','145','2','11954','2.99','2005-08-17 17:18:36.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3942','145','1','12637','2.99','2005-08-18 18:06:53.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3943','145','2','12785','2.99','2005-08-19 00:05:49.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3944','145','2','13012','7.99','2005-08-19 07:54:59.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3945','145','1','13164','3.99','2005-08-19 13:30:55.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3946','145','2','13272','0.99','2005-08-19 17:49:13.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3947','145','2','14044','5.99','2005-08-20 21:48:38.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3948','145','2','14389','6.99','2005-08-21 10:15:20.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3949','146','2','762','7.99','2005-05-29 11:15:51.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3950','146','1','1073','4.99','2005-05-31 09:55:04.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3951','146','2','1209','7.99','2005-06-15 02:31:12.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3952','146','2','1724','1.99','2005-06-16 15:15:43.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3953','146','2','2099','2.99','2005-06-17 18:47:26.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3954','146','1','2242','3.99','2005-06-18 04:32:28.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3955','146','1','2342','2.99','2005-06-18 11:42:40.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3956','146','1','2800','0.99','2005-06-19 19:15:56.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3957','146','1','3131','4.99','2005-06-20 19:08:00.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3958','146','1','4849','6.99','2005-07-08 18:34:34.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3959','146','2','5000','4.99','2005-07-09 01:16:13.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3960','146','1','6102','7.99','2005-07-11 06:53:09.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3961','146','2','6184','6.99','2005-07-11 11:19:21.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3962','146','1','6327','4.99','2005-07-11 19:07:29.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3963','146','1','6990','0.99','2005-07-27 01:02:46.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3964','146','2','8246','3.99','2005-07-29 00:38:41.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3965','146','2','11173','7.99','2005-08-02 10:28:00.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3966','146','1','11221','2.99','2005-08-02 12:32:12.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3967','146','2','11370','0.99','2005-08-02 18:06:01.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3968','146','2','11392','5.99','2005-08-02 18:41:11.000','2006-02-15 22:13:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3969','146','1','11573','4.99','2005-08-17 01:38:18.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3970','146','1','11857','4.99','2005-08-17 13:48:30.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3971','146','1','12129','7.99','2005-08-17 23:31:25.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3972','146','1','12385','2.99','2005-08-18 08:39:33.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3973','146','1','12888','4.99','2005-08-19 03:41:09.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3974','146','1','13606','4.99','2005-08-20 06:07:01.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3975','146','2','13829','4.99','2005-08-20 13:50:17.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3976','146','2','14143','2.99','2005-08-21 02:10:32.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3977','146','1','15842','6.99','2005-08-23 15:36:05.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3978','147','1','362','0.99','2005-05-27 07:10:25.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3979','147','1','509','0.99','2005-05-28 02:51:12.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3980','147','1','2171','0.99','2005-06-18 00:06:04.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3981','147','1','2456','6.99','2005-06-18 19:36:50.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3982','147','2','2859','2.99','2005-06-19 23:18:42.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3983','147','2','3011','5.99','2005-06-20 10:39:10.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3984','147','2','3919','7.99','2005-07-06 20:26:21.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3985','147','2','3956','2.99','2005-07-06 22:01:51.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3986','147','2','4792','0.99','2005-07-08 16:29:38.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3987','147','2','5044','0.99','2005-07-09 03:30:25.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3988','147','1','5567','2.99','2005-07-10 03:36:46.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3989','147','1','5844','0.99','2005-07-10 17:14:43.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3990','147','2','6343','0.99','2005-07-11 19:51:35.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3991','147','2','6469','4.99','2005-07-12 01:29:27.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3992','147','2','6753','2.99','2005-07-12 14:55:42.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3993','147','2','7044','0.99','2005-07-27 03:27:29.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3994','147','1','7723','0.99','2005-07-28 04:45:37.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3995','147','1','8893','2.99','2005-07-30 00:48:19.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3996','147','2','9772','0.99','2005-07-31 09:56:07.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3997','147','1','10706','7.99','2005-08-01 18:41:28.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3998','147','2','10752','8.99','2005-08-01 20:08:49.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('3999','147','1','12284','4.99','2005-08-18 04:55:49.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4000','147','1','12757','4.99','2005-08-18 22:57:45.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4001','147','2','13542','4.99','2005-08-20 03:41:57.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4002','147','2','13670','3.99','2005-08-20 08:27:01.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4003','147','2','14021','4.99','2005-08-20 21:02:12.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4004','147','1','14156','0.99','2005-08-21 02:35:16.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4005','147','2','14641','0.99','2005-08-21 19:05:23.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4006','147','2','14960','4.99','2005-08-22 06:31:36.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4007','147','1','15052','2.99','2005-08-22 10:09:19.000','2006-02-15 22:13:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4008','147','2','15331','4.99','2005-08-22 20:37:57.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4009','147','2','15513','4.99','2005-08-23 03:01:56.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4010','147','1','15730','8.99','2005-08-23 11:32:35.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4011','147','2','16004','6.99','2005-08-23 20:53:20.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4012','148','1','682','4.99','2005-05-28 23:53:18.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4013','148','1','1501','1.99','2005-06-15 22:02:35.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4014','148','2','1517','6.99','2005-06-15 23:20:26.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4015','148','2','2751','3.99','2005-06-19 16:39:23.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4016','148','2','2843','3.99','2005-06-19 22:36:39.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4017','148','2','2847','5.99','2005-06-19 22:54:01.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4018','148','1','3653','0.99','2005-07-06 07:45:13.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4019','148','1','4080','0.99','2005-07-07 05:09:54.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4020','148','1','4746','2.99','2005-07-08 13:47:55.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4021','148','1','4950','2.99','2005-07-08 22:58:07.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4022','148','1','5034','4.99','2005-07-09 02:48:15.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4023','148','1','5372','4.99','2005-07-09 18:48:39.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4024','148','1','6169','1.99','2005-07-11 10:25:56.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4025','148','1','6640','8.99','2005-07-12 10:27:19.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4026','148','2','6793','10.99','2005-07-12 16:37:55.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4027','148','1','7656','0.99','2005-07-28 02:07:19.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4028','148','2','7693','4.99','2005-07-28 03:31:22.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4029','148','1','7865','9.99','2005-07-28 10:07:04.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4030','148','2','8111','4.99','2005-07-28 19:10:03.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4031','148','2','8331','3.99','2005-07-29 04:13:29.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4032','148','1','8394','4.99','2005-07-29 06:02:14.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4033','148','2','8578','4.99','2005-07-29 11:58:14.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4034','148','2','8626','4.99','2005-07-29 14:03:20.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4035','148','1','9023','5.99','2005-07-30 05:36:40.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4036','148','1','9106','2.99','2005-07-30 08:52:34.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4037','148','1','9530','1.99','2005-07-31 01:09:06.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4038','148','1','9594','4.99','2005-07-31 03:23:52.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4039','148','2','10067','4.99','2005-07-31 19:37:58.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4040','148','2','10830','6.99','2005-08-01 23:18:06.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4041','148','1','11357','10.99','2005-08-02 17:42:49.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4042','148','1','12029','2.99','2005-08-17 20:07:01.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4043','148','2','12038','0.99','2005-08-17 20:28:26.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4044','148','2','12512','3.99','2005-08-18 13:28:27.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4045','148','1','12944','6.99','2005-08-19 05:48:12.000','2006-02-15 22:13:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4046','148','1','12983','6.99','2005-08-19 07:06:51.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4047','148','1','14055','0.99','2005-08-20 22:18:00.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4048','148','1','14155','4.99','2005-08-21 02:31:35.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4049','148','2','14184','6.99','2005-08-21 03:24:50.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4050','148','2','14629','2.99','2005-08-21 18:39:52.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4051','148','2','14713','0.99','2005-08-21 21:27:24.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4052','148','2','14879','5.99','2005-08-22 03:42:12.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4053','148','2','14965','2.99','2005-08-22 06:45:53.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4054','148','2','15237','4.99','2005-08-22 17:44:30.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4055','148','2','15379','8.99','2005-08-22 22:26:13.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4056','148','1','15541','3.99','2005-08-23 04:13:53.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4057','148','2','15586','3.99','2005-08-23 05:57:04.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4058','149','1','764','4.99','2005-05-29 11:37:35.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4059','149','2','1521','2.99','2005-06-15 23:58:53.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4060','149','1','1800','2.99','2005-06-16 20:18:46.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4061','149','2','1996','6.99','2005-06-17 11:17:45.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4062','149','2','2194','4.99','2005-06-18 01:41:37.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4063','149','1','2305','5.99','2005-06-18 08:31:18.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4064','149','2','2383','7.99','2005-06-18 15:17:59.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4065','149','1','2752','0.99','2005-06-19 16:44:18.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4066','149','1','3894','2.99','2005-07-06 19:01:39.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4067','149','1','3939','6.99','2005-07-06 21:16:32.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4068','149','1','4766','3.99','2005-07-08 15:16:04.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4069','149','1','4837','0.99','2005-07-08 18:09:12.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4070','149','1','5091','2.99','2005-07-09 05:52:54.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4071','149','1','5298','10.99','2005-07-09 15:36:17.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4072','149','1','6356','4.99','2005-07-11 20:57:48.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4073','149','2','6940','5.99','2005-07-26 23:18:35.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4074','149','2','7559','4.99','2005-07-27 22:20:03.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4075','149','1','7989','6.99','2005-07-28 14:39:05.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4076','149','2','10154','2.99','2005-07-31 22:30:49.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4077','149','2','10737','7.99','2005-08-01 19:31:24.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4078','149','2','10967','0.99','2005-08-02 04:02:16.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4079','149','1','11561','2.99','2005-08-17 01:23:09.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4080','149','1','12000','4.99','2005-08-17 18:49:44.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4081','149','1','14771','3.99','2005-08-21 23:50:15.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4082','149','2','15479','4.99','2005-08-23 01:50:53.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4083','149','2','15562','2.99','2005-08-23 05:04:33.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4084','150','1','422','3.99','2005-05-27 15:31:55.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4085','150','1','609','2.99','2005-05-28 15:04:02.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4086','150','1','995','3.99','2005-05-31 00:06:02.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4087','150','2','3187','1.99','2005-06-20 23:06:07.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4088','150','1','3456','5.99','2005-06-21 21:19:47.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4089','150','1','4271','6.99','2005-07-07 14:38:52.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4090','150','1','6633','2.99','2005-07-12 09:35:42.000','2006-02-15 22:13:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4091','150','2','7690','4.99','2005-07-28 03:26:21.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4092','150','1','9121','2.99','2005-07-30 09:36:26.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4093','150','1','10686','2.99','2005-08-01 17:51:21.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4094','150','2','11123','2.99','2005-08-02 08:54:17.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4095','150','2','11789','6.99','2005-08-17 10:59:24.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4096','150','2','12260','6.99','2005-08-18 04:15:43.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4097','150','2','12335','2.99','2005-08-18 06:59:15.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4098','150','2','12627','2.99','2005-08-18 17:37:11.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4099','150','1','12887','1.99','2005-08-19 03:38:54.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4100','150','2','12890','0.99','2005-08-19 03:42:08.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4101','150','1','13116','6.99','2005-08-19 11:31:41.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4102','150','2','13255','8.99','2005-08-19 16:54:12.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4103','150','1','13372','2.99','2005-08-19 21:23:19.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4104','150','2','13599','5.99','2005-08-20 06:00:03.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4105','150','2','14165','0.99','2005-08-21 02:59:17.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4106','150','2','14454','2.99','2005-08-21 12:35:49.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4107','150','2','14520','9.99','2005-08-21 15:00:49.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4108','150','1','14663','0.99','2005-08-21 19:47:55.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4109','151','2','164','4.99','2005-05-26 02:26:49.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4110','151','2','418','5.99','2005-05-27 15:13:17.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4111','151','2','2474','2.99','2005-06-18 20:51:34.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4112','151','2','2947','2.99','2005-06-20 06:00:21.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4113','151','1','3017','3.99','2005-06-20 11:08:56.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4114','151','2','3089','0.99','2005-06-20 15:57:01.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4115','151','2','3390','2.99','2005-06-21 15:10:50.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4116','151','1','4376','2.99','2005-07-07 20:24:33.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4117','151','2','6720','0.99','2005-07-12 13:41:16.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4118','151','2','6768','3.99','2005-07-12 15:47:51.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4119','151','2','6854','0.99','2005-07-12 19:38:57.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4120','151','1','7189','0.99','2005-07-27 08:35:02.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4121','151','2','7332','3.99','2005-07-27 13:58:57.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4122','151','1','9253','4.99','2005-07-30 14:20:12.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4123','151','1','9890','4.99','2005-07-31 14:04:44.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4124','151','1','9969','2.99','2005-07-31 16:38:12.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4125','151','1','10078','2.99','2005-07-31 20:02:02.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4126','151','1','10311','4.99','2005-08-01 04:27:59.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4127','151','1','10662','2.99','2005-08-01 16:50:57.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4128','151','2','11714','2.99','2005-08-17 07:34:55.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4129','151','2','13230','0.99','2005-08-19 16:12:07.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4130','151','1','13568','5.99','2005-08-20 05:02:46.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4131','151','1','14856','4.99','2005-08-22 02:31:51.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4132','151','2','14922','3.99','2005-08-22 05:13:05.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4133','151','1','15227','4.99','2005-08-22 17:22:41.000','2006-02-15 22:13:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4134','151','1','15926','2.99','2005-08-23 18:20:56.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4135','151','2','15996','2.99','2005-08-23 20:31:38.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4136','152','2','359','4.99','2005-05-27 06:48:33.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4137','152','1','745','4.99','2005-05-29 09:22:57.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4138','152','1','2882','4.99','2005-06-20 01:26:26.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4139','152','2','3577','2.99','2005-07-06 03:40:36.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4140','152','1','3786','7.99','2005-07-06 14:00:41.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4141','152','1','4974','4.99','2005-07-09 00:00:36.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4142','152','1','6273','0.99','2005-07-11 16:08:41.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4143','152','1','6612','2.99','2005-07-12 08:28:33.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4144','152','1','9010','5.99','2005-07-30 05:12:04.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4145','152','1','10320','6.99','2005-08-01 04:39:26.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4146','152','2','11638','6.99','2005-08-17 04:39:09.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4147','152','2','11783','0.99','2005-08-17 10:39:24.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4148','152','1','12697','2.99','2005-08-18 20:14:56.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4149','152','1','12917','4.99','2005-08-19 04:27:11.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4150','152','2','12960','1.99','2005-08-19 06:21:52.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4151','152','1','13204','4.99','2005-08-19 15:02:48.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4152','152','2','13484','0.99','2005-08-20 01:16:52.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4153','152','1','13986','0.99','2005-08-20 19:13:23.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4154','152','1','14173','0.99','2005-08-21 03:01:01.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4155','152','2','14668','4.99','2005-08-21 19:51:30.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4156','152','2','11848','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4157','153','1','2224','0.99','2005-06-18 03:33:58.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4158','153','1','2649','0.99','2005-06-19 10:20:09.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4159','153','1','2893','4.99','2005-06-20 02:22:08.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4160','153','1','2945','5.99','2005-06-20 05:49:27.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4161','153','1','3795','0.99','2005-07-06 14:37:41.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4162','153','1','3949','0.99','2005-07-06 21:46:36.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4163','153','1','4194','5.99','2005-07-07 10:59:39.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4164','153','2','4670','5.99','2005-07-08 10:14:18.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4165','153','2','5676','0.99','2005-07-10 08:38:32.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4166','153','2','5771','0.99','2005-07-10 13:26:45.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4167','153','2','6818','9.99','2005-07-12 18:20:54.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4168','153','2','7824','7.99','2005-07-28 08:34:47.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4169','153','2','9936','0.99','2005-07-31 15:27:41.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4170','153','2','10015','4.99','2005-07-31 18:11:17.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4171','153','2','11368','4.99','2005-08-02 18:03:05.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4172','153','1','12103','1.99','2005-08-17 22:49:09.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4173','153','1','12439','3.99','2005-08-18 10:44:57.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4174','153','1','12882','4.99','2005-08-19 03:33:46.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4175','153','1','14664','4.99','2005-08-21 19:48:47.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4176','153','1','14747','4.99','2005-08-21 23:00:02.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4177','153','1','14944','4.99','2005-08-22 06:01:26.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4178','153','2','15267','0.99','2005-08-22 18:37:48.000','2006-02-15 22:13:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4179','153','2','15444','7.99','2005-08-23 00:46:52.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4180','153','1','15593','1.99','2005-08-23 06:15:09.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4181','154','1','469','5.99','2005-05-27 21:14:26.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4182','154','2','865','7.99','2005-05-30 03:39:44.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4183','154','2','978','5.99','2005-05-30 21:30:52.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4184','154','1','1963','0.99','2005-06-17 09:09:31.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4185','154','1','2886','4.99','2005-06-20 01:38:39.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4186','154','1','2985','2.99','2005-06-20 08:45:08.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4187','154','2','3806','7.99','2005-07-06 15:09:41.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4188','154','2','3912','0.99','2005-07-06 20:10:03.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4189','154','2','4132','4.99','2005-07-07 08:06:07.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4190','154','1','4252','2.99','2005-07-07 14:13:05.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4191','154','1','4850','5.99','2005-07-08 18:39:31.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4192','154','1','5101','0.99','2005-07-09 06:21:29.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4193','154','2','5760','2.99','2005-07-10 12:44:48.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4194','154','1','6048','0.99','2005-07-11 03:32:23.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4195','154','2','6993','4.99','2005-07-27 01:05:24.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4196','154','1','7055','4.99','2005-07-27 03:45:42.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4197','154','1','7156','4.99','2005-07-27 07:19:34.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4198','154','2','7900','1.99','2005-07-28 11:11:33.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4199','154','2','8334','7.99','2005-07-29 04:18:25.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4200','154','2','9286','2.99','2005-07-30 15:32:28.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4201','154','1','10278','6.99','2005-08-01 03:25:27.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4202','154','1','10851','4.99','2005-08-01 23:58:45.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4203','154','1','11296','5.99','2005-08-02 15:15:27.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4204','154','1','12341','0.99','2005-08-18 07:09:27.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4205','154','2','13861','4.99','2005-08-20 14:56:53.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4206','154','2','14731','2.99','2005-08-21 22:21:49.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4207','154','2','14793','7.99','2005-08-22 00:37:57.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4208','154','1','14918','6.99','2005-08-22 05:06:38.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4209','154','1','15351','0.99','2005-08-22 21:15:46.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4210','154','1','15721','2.99','2005-08-23 11:16:16.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4211','155','1','568','2.99','2005-05-28 09:57:36.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4212','155','2','1519','1.99','2005-06-15 23:55:27.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4213','155','1','1554','7.99','2005-06-16 02:16:47.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4214','155','1','2028','7.99','2005-06-17 13:08:08.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4215','155','1','2869','4.99','2005-06-20 00:09:25.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4216','155','2','3405','4.99','2005-06-21 15:58:25.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4217','155','1','5128','1.99','2005-07-09 07:25:54.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4218','155','1','6066','5.99','2005-07-11 04:32:42.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4219','155','1','6085','4.99','2005-07-11 05:24:36.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4220','155','2','6087','4.99','2005-07-11 05:29:22.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4221','155','1','6443','2.99','2005-07-12 00:35:51.000','2006-02-15 22:13:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4222','155','1','7077','3.99','2005-07-27 04:13:02.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4223','155','1','7492','2.99','2005-07-27 19:54:18.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4224','155','2','7730','5.99','2005-07-28 04:59:48.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4225','155','2','9781','7.99','2005-07-31 10:13:02.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4226','155','1','10098','0.99','2005-07-31 20:41:17.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4227','155','1','11033','4.99','2005-08-02 05:54:17.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4228','155','2','11951','5.99','2005-08-17 17:14:02.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4229','155','1','14324','8.99','2005-08-21 08:10:56.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4230','155','2','14549','2.99','2005-08-21 15:54:21.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4231','155','1','14753','2.99','2005-08-21 23:11:43.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4232','155','2','14909','0.99','2005-08-22 04:48:44.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4233','155','1','15106','0.99','2005-08-22 12:01:48.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4234','155','2','11496','7.98','2006-02-14 15:16:03.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4235','155','1','12352','0','2006-02-14 15:16:03.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4236','156','2','899','6.99','2005-05-30 09:29:30.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4237','156','1','1052','4.99','2005-05-31 07:07:03.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4238','156','2','2089','9.99','2005-06-17 17:45:09.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4239','156','2','2221','0.99','2005-06-18 03:24:56.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4240','156','1','2658','4.99','2005-06-19 10:43:42.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4241','156','1','2782','0.99','2005-06-19 18:25:07.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4242','156','2','4394','2.99','2005-07-07 21:12:45.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4243','156','2','5534','4.99','2005-07-10 02:26:49.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4244','156','1','5828','2.99','2005-07-10 16:27:25.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4245','156','2','5908','0.99','2005-07-10 20:44:14.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4246','156','2','6540','6.99','2005-07-12 04:51:13.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4247','156','2','7389','2.99','2005-07-27 15:56:15.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4248','156','2','7822','4.99','2005-07-28 08:31:45.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4249','156','1','9409','6.99','2005-07-30 20:33:53.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4250','156','1','9696','0.99','2005-07-31 07:13:46.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4251','156','2','10309','6.99','2005-08-01 04:24:18.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4252','156','2','11490','2.99','2005-08-02 22:36:00.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4253','156','1','11587','5.99','2005-08-17 02:21:03.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4254','156','2','13530','0.99','2005-08-20 03:12:43.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4255','156','2','13531','2.99','2005-08-20 03:26:10.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4256','156','2','13802','2.99','2005-08-20 12:44:53.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4257','156','1','14794','1.99','2005-08-22 00:39:31.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4258','156','2','14831','4.99','2005-08-22 01:40:49.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4259','156','1','14914','0.99','2005-08-22 04:53:35.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4260','156','1','15408','6.99','2005-08-22 23:26:32.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4261','157','2','352','0.99','2005-05-27 05:48:19.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4262','157','1','642','4.99','2005-05-28 18:49:12.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4263','157','2','2340','0.99','2005-06-18 11:30:56.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4264','157','1','3739','0.99','2005-07-06 11:54:18.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4265','157','1','4253','5.99','2005-07-07 14:13:13.000','2006-02-15 22:13:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4266','157','2','4435','3.99','2005-07-07 22:51:04.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4267','157','1','4919','0.99','2005-07-08 21:41:54.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4268','157','1','5862','4.99','2005-07-10 18:20:48.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4269','157','1','7110','2.99','2005-07-27 05:30:48.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4270','157','2','7195','2.99','2005-07-27 08:47:01.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4271','157','2','7499','4.99','2005-07-27 20:10:28.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4272','157','2','8163','0.99','2005-07-28 21:11:48.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4273','157','2','8337','0.99','2005-07-29 04:31:55.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4274','157','2','8347','0.99','2005-07-29 04:49:25.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4275','157','2','8576','4.99','2005-07-29 11:55:01.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4276','157','1','8707','0.99','2005-07-29 17:21:58.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4277','157','1','8827','4.99','2005-07-29 22:31:24.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4278','157','2','9237','2.99','2005-07-30 13:48:17.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4279','157','2','9264','4.99','2005-07-30 14:51:36.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4280','157','1','9958','2.99','2005-07-31 16:03:56.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4281','157','1','10203','4.99','2005-08-01 00:45:27.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4282','157','2','11249','4.99','2005-08-02 13:35:40.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4283','157','2','11335','4.99','2005-08-02 16:57:37.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4284','157','1','12213','5.99','2005-08-18 02:33:55.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4285','157','1','12464','6.99','2005-08-18 11:33:34.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4286','157','1','12916','0.99','2005-08-19 04:27:05.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4287','157','1','13097','4.99','2005-08-19 10:50:43.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4288','157','1','13214','4.99','2005-08-19 15:31:06.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4289','157','1','13481','6.99','2005-08-20 01:11:12.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4290','157','1','13728','2.99','2005-08-20 10:11:07.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4291','157','2','14974','4.99','2005-08-22 07:04:25.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4292','158','2','245','4.99','2005-05-26 13:46:59.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4293','158','1','293','5.99','2005-05-26 20:27:02.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4294','158','1','1380','0.99','2005-06-15 15:13:10.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4295','158','2','1790','4.99','2005-06-16 19:58:40.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4296','158','2','2035','6.99','2005-06-17 13:45:09.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4297','158','2','3203','8.99','2005-06-21 00:34:56.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4298','158','1','4117','8.99','2005-07-07 06:58:14.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4299','158','1','5672','2.99','2005-07-10 08:19:38.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4300','158','1','5988','4.99','2005-07-11 00:55:38.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4301','158','1','6416','2.99','2005-07-11 23:29:14.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4302','158','2','6901','5.99','2005-07-12 21:46:33.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4303','158','2','7159','2.99','2005-07-27 07:24:00.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4304','158','1','7732','0.99','2005-07-28 05:03:32.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4305','158','2','7952','2.99','2005-07-28 13:23:49.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4306','158','1','8750','2.99','2005-07-29 19:14:21.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4307','158','1','8957','1.99','2005-07-30 03:34:10.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4308','158','1','9393','2.99','2005-07-30 20:04:48.000','2006-02-15 22:13:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4309','158','1','9713','1.99','2005-07-31 08:13:28.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4310','158','1','9801','2.99','2005-07-31 11:03:13.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4311','158','2','11077','4.99','2005-08-02 07:26:43.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4312','158','1','11103','6.99','2005-08-02 08:09:54.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4313','158','1','11272','0.99','2005-08-02 14:20:27.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4314','158','1','11420','2.99','2005-08-02 19:47:56.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4315','158','2','12070','1.99','2005-08-17 21:46:47.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4316','158','2','12421','5.99','2005-08-18 10:04:06.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4317','158','2','13212','1.99','2005-08-19 15:24:07.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4318','158','2','13854','2.99','2005-08-20 14:48:42.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4319','158','1','13926','2.99','2005-08-20 17:09:27.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4320','158','2','14028','0.99','2005-08-20 21:23:03.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4321','158','1','15763','2.99','2005-08-23 13:02:59.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4322','158','1','15796','5.99','2005-08-23 14:12:22.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4323','158','1','15802','5.99','2005-08-23 14:26:51.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4324','159','2','475','2.99','2005-05-27 22:16:26.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4325','159','2','549','1.99','2005-05-28 07:35:37.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4326','159','1','598','0.99','2005-05-28 14:04:50.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4327','159','1','832','3.99','2005-05-29 22:51:20.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4328','159','1','1695','0.99','2005-06-16 12:40:28.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4329','159','1','2572','0.99','2005-06-19 04:21:26.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4330','159','2','3914','5.99','2005-07-06 20:11:10.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4331','159','2','4273','4.99','2005-07-07 14:40:22.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4332','159','2','5656','0.99','2005-07-10 07:31:07.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4333','159','2','6885','4.99','2005-07-12 20:56:04.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4334','159','2','8212','2.99','2005-07-28 23:37:23.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4335','159','1','8470','0.99','2005-07-29 08:28:50.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4336','159','2','9022','3.99','2005-07-30 05:34:45.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4337','159','2','9132','0.99','2005-07-30 09:56:00.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4338','159','1','9559','7.99','2005-07-31 02:15:53.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4339','159','1','9917','4.99','2005-07-31 14:55:11.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4340','159','2','11225','4.99','2005-08-02 12:43:27.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4341','159','2','13270','1.99','2005-08-19 17:41:16.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4342','159','1','13933','0.99','2005-08-20 17:17:07.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4343','159','2','14575','8.99','2005-08-21 16:51:34.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4344','159','1','15197','0.99','2005-08-22 16:14:25.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4345','160','2','2314','4.99','2005-06-18 09:03:19.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4346','160','1','2465','2.99','2005-06-18 20:07:02.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4347','160','2','2873','2.99','2005-06-20 00:41:25.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4348','160','1','4842','0.99','2005-07-08 18:21:30.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4349','160','1','4908','5.99','2005-07-08 21:05:44.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4350','160','2','6364','6.99','2005-07-11 21:14:48.000','2006-02-15 22:13:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4351','160','2','6448','1.99','2005-07-12 00:45:59.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4352','160','2','7500','0.99','2005-07-27 20:16:03.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4353','160','1','8184','4.99','2005-07-28 22:22:35.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4354','160','1','9681','0.99','2005-07-31 06:42:09.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4355','160','2','9758','2.99','2005-07-31 09:25:38.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4356','160','2','10089','2.99','2005-07-31 20:17:09.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4357','160','1','10305','2.99','2005-08-01 04:16:16.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4358','160','2','10788','0.99','2005-08-01 21:37:10.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4359','160','2','10958','4.99','2005-08-02 03:37:13.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4360','160','2','10979','5.99','2005-08-02 04:16:37.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4361','160','2','11154','2.99','2005-08-02 09:54:50.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4362','160','1','11803','2.99','2005-08-17 11:42:08.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4363','160','1','11888','7.99','2005-08-17 15:04:05.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4364','160','2','12334','2.99','2005-08-18 06:52:36.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4365','160','1','12435','7.99','2005-08-18 10:38:31.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4366','160','2','13093','6.99','2005-08-19 10:46:16.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4367','160','1','14868','4.99','2005-08-22 03:15:01.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4368','160','1','15112','2.99','2005-08-22 12:21:49.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4369','160','2','15642','2.99','2005-08-23 08:09:11.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4370','160','1','15962','4.99','2005-08-23 19:42:04.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4371','160','1','16027','3.99','2005-08-23 21:49:33.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4372','161','2','428','2.99','2005-05-27 16:10:58.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4373','161','2','477','3.99','2005-05-27 22:33:33.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4374','161','1','520','5.99','2005-05-28 03:27:37.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4375','161','2','539','0.99','2005-05-28 06:26:16.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4376','161','1','612','2.99','2005-05-28 15:24:54.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4377','161','1','1003','0.99','2005-05-31 00:48:20.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4378','161','1','1856','2.99','2005-06-17 01:02:00.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4379','161','1','3075','3.99','2005-06-20 14:52:19.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4380','161','1','3948','4.99','2005-07-06 21:45:53.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4381','161','2','4187','0.99','2005-07-07 10:41:31.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4382','161','2','4248','6.99','2005-07-07 13:59:20.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4383','161','1','4490','2.99','2005-07-08 01:26:32.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4384','161','2','5349','6.99','2005-07-09 17:35:35.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4385','161','2','6873','4.99','2005-07-12 20:20:50.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4386','161','1','7003','2.99','2005-07-27 01:32:06.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4387','161','2','8774','4.99','2005-07-29 20:05:04.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4388','161','1','9135','4.99','2005-07-30 10:06:53.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4389','161','2','9421','0.99','2005-07-30 21:08:32.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4390','161','1','10241','5.99','2005-08-01 02:12:25.000','2006-02-15 22:13:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4391','161','1','10355','0.99','2005-08-01 05:47:37.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4392','161','1','10637','2.99','2005-08-01 15:44:09.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4393','161','1','10863','6.99','2005-08-02 00:18:07.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4394','161','2','10939','0.99','2005-08-02 03:06:20.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4395','161','1','11838','2.99','2005-08-17 13:06:00.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4396','161','2','14150','0.99','2005-08-21 02:23:03.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4397','161','1','14370','7.99','2005-08-21 09:35:14.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4398','161','1','15000','0.99','2005-08-22 07:54:58.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4399','161','2','15045','5.99','2005-08-22 09:53:23.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4400','161','2','15150','2.99','2005-08-22 14:12:05.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4401','161','1','15420','5.99','2005-08-22 23:55:51.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4402','162','1','285','1.99','2005-05-26 19:41:40.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4403','162','1','501','4.99','2005-05-28 01:09:36.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4404','162','1','688','4.99','2005-05-29 00:45:24.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4405','162','2','1339','4.99','2005-06-15 12:21:56.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4406','162','1','2366','0.99','2005-06-18 13:46:39.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4407','162','1','2547','4.99','2005-06-19 02:44:17.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4408','162','1','3040','0.99','2005-06-20 12:34:13.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4409','162','2','3180','0.99','2005-06-20 22:48:44.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4410','162','2','4982','2.99','2005-07-09 00:30:52.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4411','162','2','8478','4.99','2005-07-29 08:40:36.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4412','162','1','8582','4.99','2005-07-29 12:03:27.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4413','162','2','9167','4.99','2005-07-30 11:30:37.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4414','162','1','9726','7.99','2005-07-31 08:37:07.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4415','162','1','9775','0.99','2005-07-31 10:00:00.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4416','162','2','10093','5.99','2005-07-31 20:30:32.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4417','162','2','11012','0.99','2005-08-02 05:09:42.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4418','162','1','13288','4.99','2005-08-19 18:30:10.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4419','162','2','14301','1.99','2005-08-21 07:19:48.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4420','162','1','15332','4.99','2005-08-22 20:41:53.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4421','162','1','14220','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4422','163','2','1265','4.99','2005-06-15 07:00:50.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4423','163','2','2000','2.99','2005-06-17 11:32:30.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4424','163','2','2110','7.99','2005-06-17 19:45:49.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4425','163','2','2536','5.99','2005-06-19 01:41:34.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4426','163','1','2994','6.99','2005-06-20 09:17:05.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4427','163','1','3179','0.99','2005-06-20 22:37:59.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4428','163','2','3915','3.99','2005-07-06 20:16:46.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4429','163','1','4126','1.99','2005-07-07 07:24:11.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4430','163','2','5549','4.99','2005-07-10 02:58:29.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4431','163','1','5574','10.99','2005-07-10 03:54:38.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4432','163','1','6109','0.99','2005-07-11 07:20:57.000','2006-02-15 22:13:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4433','163','1','6831','1.99','2005-07-12 18:44:04.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4434','163','1','7303','1.99','2005-07-27 12:54:39.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4435','163','1','7403','2.99','2005-07-27 16:22:09.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4436','163','2','8040','0.99','2005-07-28 16:39:43.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4437','163','2','8063','4.99','2005-07-28 17:15:11.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4438','163','2','8403','4.99','2005-07-29 06:26:39.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4439','163','2','10245','0.99','2005-08-01 02:24:09.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4440','163','2','11623','2.99','2005-08-17 04:15:47.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4441','163','2','11940','4.99','2005-08-17 16:56:28.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4442','163','1','12154','2.99','2005-08-18 00:23:56.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4443','163','2','12973','2.99','2005-08-19 06:48:11.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4444','163','2','13543','7.99','2005-08-20 03:43:13.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4445','163','2','14275','4.99','2005-08-21 06:30:30.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4446','163','2','14427','5.99','2005-08-21 11:26:06.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4447','163','1','15520','8.99','2005-08-23 03:30:45.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4448','163','1','15847','0.99','2005-08-23 15:39:38.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4449','163','2','11754','7.98','2006-02-14 15:16:03.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4450','163','1','15282','0','2006-02-14 15:16:03.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4451','164','2','1011','1.99','2005-05-31 02:05:39.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4452','164','2','1713','4.99','2005-06-16 14:28:33.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4453','164','2','2589','2.99','2005-06-19 05:21:27.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4454','164','1','3082','8.99','2005-06-20 15:32:11.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4455','164','2','4548','4.99','2005-07-08 04:21:54.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4456','164','1','5895','3.99','2005-07-10 20:13:19.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4457','164','1','6393','0.99','2005-07-11 22:28:12.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4458','164','2','6558','2.99','2005-07-12 05:16:07.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4459','164','1','6637','4.99','2005-07-12 09:57:39.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4460','164','2','6702','0.99','2005-07-12 12:48:03.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4461','164','1','6980','3.99','2005-07-27 00:50:30.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4462','164','1','7227','6.99','2005-07-27 09:53:43.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4463','164','2','8135','3.99','2005-07-28 20:03:25.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4464','164','2','8824','4.99','2005-07-29 22:22:58.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4465','164','2','11175','2.99','2005-08-02 10:38:47.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4466','164','2','13453','5.99','2005-08-20 00:30:51.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4467','165','2','338','4.99','2005-05-27 03:42:52.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4468','165','1','2013','3.99','2005-06-17 12:03:01.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4469','165','2','3195','2.99','2005-06-21 00:02:10.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4470','165','2','3531','4.99','2005-07-06 01:24:08.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4471','165','1','3784','5.99','2005-07-06 13:57:56.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4472','165','2','4304','0.99','2005-07-07 17:01:19.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4473','165','2','4945','2.99','2005-07-08 22:45:02.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4474','165','1','5472','4.99','2005-07-09 23:16:40.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4475','165','2','5658','4.99','2005-07-10 07:34:08.000','2006-02-15 22:13:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4476','165','2','5901','6.99','2005-07-10 20:22:12.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4477','165','1','5973','0.99','2005-07-11 00:09:17.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4478','165','1','7074','2.99','2005-07-27 04:06:24.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4479','165','1','8608','0.99','2005-07-29 13:18:52.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4480','165','2','9182','7.99','2005-07-30 12:06:58.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4481','165','2','9685','4.99','2005-07-31 06:49:18.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4482','165','1','10565','4.99','2005-08-01 13:08:27.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4483','165','1','11484','2.99','2005-08-02 22:28:23.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4484','165','2','12643','4.99','2005-08-18 18:21:06.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4485','165','2','15007','1.99','2005-08-22 08:21:21.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4486','165','1','15801','3.99','2005-08-23 14:26:04.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4487','165','2','15834','5.99','2005-08-23 15:23:50.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4488','166','1','662','1.99','2005-05-28 21:09:31.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4489','166','2','1412','2.99','2005-06-15 17:09:48.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4490','166','1','2211','3.99','2005-06-18 02:29:10.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4491','166','1','2874','5.99','2005-06-20 00:42:26.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4492','166','1','3085','0.99','2005-06-20 15:42:33.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4493','166','2','3606','2.99','2005-07-06 05:28:02.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4494','166','1','3642','2.99','2005-07-06 07:18:20.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4495','166','2','4389','6.99','2005-07-07 20:58:58.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4496','166','1','4658','0.99','2005-07-08 09:51:11.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4497','166','1','5184','4.99','2005-07-09 10:14:34.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4498','166','2','5380','4.99','2005-07-09 19:08:44.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4499','166','1','5646','2.99','2005-07-10 07:08:09.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4500','166','1','5855','7.99','2005-07-10 17:54:06.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4501','166','2','6237','0.99','2005-07-11 14:19:12.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4502','166','2','6882','2.99','2005-07-12 20:50:39.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4503','166','1','7581','2.99','2005-07-27 23:14:35.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4504','166','1','8052','5.99','2005-07-28 16:57:31.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4505','166','1','9009','8.99','2005-07-30 05:12:01.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4506','166','2','10422','7.99','2005-08-01 08:17:11.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4507','166','2','12683','4.99','2005-08-18 19:50:43.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4508','166','1','12968','4.99','2005-08-19 06:38:18.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4509','166','2','13582','4.99','2005-08-20 05:28:11.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4510','166','2','13901','7.99','2005-08-20 16:06:53.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4511','166','2','14261','5.99','2005-08-21 06:07:24.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4512','166','2','14281','2.99','2005-08-21 06:40:48.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4513','166','1','15213','5.99','2005-08-22 16:49:02.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4514','166','2','15216','2.99','2005-08-22 16:57:02.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4515','166','2','15806','1.99','2005-08-23 14:31:50.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4516','167','1','280','2.99','2005-05-26 18:36:58.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4517','167','1','365','2.99','2005-05-27 07:31:20.000','2006-02-15 22:13:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4518','167','1','927','4.99','2005-05-30 12:16:40.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4519','167','1','1416','3.99','2005-06-15 17:44:57.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4520','167','1','1509','5.99','2005-06-15 22:35:53.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4521','167','2','2381','5.99','2005-06-18 15:00:30.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4522','167','2','3518','4.99','2005-07-06 00:56:03.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4523','167','2','4493','0.99','2005-07-08 01:40:24.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4524','167','2','5131','0.99','2005-07-09 07:35:03.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4525','167','1','5178','4.99','2005-07-09 09:59:52.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4526','167','1','5191','0.99','2005-07-09 10:26:48.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4527','167','1','5413','4.99','2005-07-09 20:28:42.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4528','167','1','5781','2.99','2005-07-10 13:49:30.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4529','167','2','6269','4.99','2005-07-11 15:58:43.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4530','167','1','7608','4.99','2005-07-28 00:08:36.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4531','167','1','8092','2.99','2005-07-28 18:28:07.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4532','167','2','8227','4.99','2005-07-29 00:02:22.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4533','167','1','8318','2.99','2005-07-29 03:44:30.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4534','167','1','8793','0.99','2005-07-29 20:57:22.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4535','167','2','8864','0.99','2005-07-29 23:52:12.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4536','167','2','9563','4.99','2005-07-31 02:28:39.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4537','167','2','10285','3.99','2005-08-01 03:35:11.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4538','167','1','12642','4.99','2005-08-18 18:19:16.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4539','167','2','12717','4.99','2005-08-18 21:15:40.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4540','167','1','12978','4.99','2005-08-19 06:57:27.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4541','167','1','13825','6.99','2005-08-20 13:43:22.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4542','167','1','13870','1.99','2005-08-20 15:09:16.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4543','167','1','15003','3.99','2005-08-22 08:11:24.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4544','167','1','15050','0.99','2005-08-22 10:07:52.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4545','167','2','15478','0.99','2005-08-23 01:50:31.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4546','167','2','15530','4.99','2005-08-23 03:50:48.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4547','167','2','15915','4.99','2005-08-23 17:52:01.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4548','168','2','404','0.99','2005-05-27 13:31:51.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4549','168','1','488','4.99','2005-05-28 00:07:50.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4550','168','2','1222','4.99','2005-06-15 03:38:49.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4551','168','1','3530','2.99','2005-07-06 01:22:45.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4552','168','1','4308','5.99','2005-07-07 17:29:16.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4553','168','2','4363','5.99','2005-07-07 19:43:28.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4554','168','2','4953','2.99','2005-07-08 23:09:48.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4555','168','1','5459','0.99','2005-07-09 22:43:56.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4556','168','1','5907','5.99','2005-07-10 20:41:41.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4557','168','1','6334','5.99','2005-07-11 19:20:44.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4558','168','2','6444','0.99','2005-07-12 00:36:02.000','2006-02-15 22:13:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4559','168','2','6809','3.99','2005-07-12 17:51:54.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4560','168','2','8352','1.99','2005-07-29 04:52:01.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4561','168','1','8527','1.99','2005-07-29 10:21:00.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4562','168','2','8659','6.99','2005-07-29 15:26:31.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4563','168','2','8883','1.99','2005-07-30 00:24:48.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4564','168','2','9197','4.99','2005-07-30 12:31:36.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4565','168','1','9418','4.99','2005-07-30 21:00:52.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4566','168','2','9857','6.99','2005-07-31 13:00:53.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4567','168','2','9899','4.99','2005-07-31 14:12:36.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4568','168','2','10270','0.99','2005-08-01 03:10:24.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4569','168','1','11551','0.99','2005-08-17 01:03:49.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4570','168','1','11627','10.99','2005-08-17 04:25:47.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4571','168','1','11631','1.99','2005-08-17 04:28:56.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4572','168','1','12545','6.99','2005-08-18 14:28:00.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4573','168','1','12781','2.99','2005-08-18 23:50:24.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4574','168','1','13018','8.99','2005-08-19 08:04:50.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4575','168','2','13532','4.99','2005-08-20 03:29:28.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4576','168','2','13811','0.99','2005-08-20 13:00:30.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4577','168','1','14090','2.99','2005-08-21 00:11:16.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4578','168','1','15033','3.99','2005-08-22 09:25:24.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4579','168','1','15165','2.99','2005-08-22 14:59:30.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4580','168','2','15683','2.99','2005-08-23 09:38:17.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4581','168','1','15894','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4582','169','2','527','3.99','2005-05-28 04:28:38.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4583','169','1','1087','4.99','2005-05-31 11:18:08.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4584','169','1','2023','4.99','2005-06-17 12:52:58.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4585','169','1','3261','2.99','2005-06-21 04:07:41.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4586','169','1','3493','8.99','2005-07-05 23:46:19.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4587','169','1','4687','4.99','2005-07-08 10:54:19.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4588','169','1','5066','2.99','2005-07-09 04:48:50.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4589','169','1','6143','3.99','2005-07-11 09:02:37.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4590','169','2','6453','4.99','2005-07-12 00:59:53.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4591','169','2','6488','9.99','2005-07-12 02:20:09.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4592','169','2','7187','6.99','2005-07-27 08:27:58.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4593','169','1','7597','0.99','2005-07-27 23:35:49.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4594','169','2','8558','4.99','2005-07-29 11:24:49.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4595','169','2','9203','0.99','2005-07-30 12:43:40.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4596','169','2','11687','5.99','2005-08-17 06:39:59.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4597','169','1','11898','5.99','2005-08-17 15:24:12.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4598','169','2','13198','2.99','2005-08-19 14:47:18.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4599','169','2','13237','1.99','2005-08-19 16:18:36.000','2006-02-15 22:13:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4600','169','2','14435','0.99','2005-08-21 11:44:37.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4601','169','2','14805','4.99','2005-08-22 00:52:01.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4602','169','2','15534','0.99','2005-08-23 03:55:54.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4603','169','2','15680','4.99','2005-08-23 09:33:22.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4604','170','1','211','2.99','2005-05-26 08:33:10.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4605','170','1','377','5.99','2005-05-27 09:04:05.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4606','170','2','504','0.99','2005-05-28 02:05:34.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4607','170','2','2117','0.99','2005-06-17 20:24:00.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4608','170','2','2413','8.99','2005-06-18 16:59:34.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4609','170','2','3651','4.99','2005-07-06 07:40:31.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4610','170','1','3749','4.99','2005-07-06 12:18:03.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4611','170','2','4113','4.99','2005-07-07 06:49:52.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4612','170','2','4468','0.99','2005-07-08 00:17:59.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4613','170','2','5075','0.99','2005-07-09 05:12:07.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4614','170','1','5573','4.99','2005-07-10 03:50:47.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4615','170','2','5685','7.99','2005-07-10 09:01:38.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4616','170','2','5808','2.99','2005-07-10 15:17:33.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4617','170','1','7999','7.99','2005-07-28 15:10:14.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4618','170','2','9517','2.99','2005-07-31 00:41:23.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4619','170','1','9817','2.99','2005-07-31 11:33:31.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4620','170','1','10102','9.99','2005-07-31 20:49:10.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4621','170','2','10481','5.99','2005-08-01 10:17:26.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4622','170','1','11039','0.99','2005-08-02 06:00:53.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4623','170','2','12706','3.99','2005-08-18 20:44:34.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4624','170','1','12967','3.99','2005-08-19 06:37:51.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4625','170','1','13081','0.99','2005-08-19 10:19:06.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4626','170','2','13862','6.99','2005-08-20 14:57:01.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4627','170','2','14022','8.99','2005-08-20 21:08:49.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4628','170','2','14675','2.99','2005-08-21 20:01:51.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4629','170','1','15549','7.99','2005-08-23 04:27:06.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4630','171','2','804','9.99','2005-05-29 18:10:24.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4631','171','2','1676','0.99','2005-06-16 11:06:09.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4632','171','2','2004','4.99','2005-06-17 11:43:38.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4633','171','2','2199','5.99','2005-06-18 01:57:56.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4634','171','1','2497','4.99','2005-06-18 22:50:40.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4635','171','2','2599','5.99','2005-06-19 06:06:07.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4636','171','2','2788','2.99','2005-06-19 18:48:11.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4637','171','2','3338','6.99','2005-06-21 10:27:31.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4638','171','1','3621','0.99','2005-07-06 06:03:55.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4639','171','2','3745','2.99','2005-07-06 12:10:32.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4640','171','1','5660','5.99','2005-07-10 07:46:12.000','2006-02-15 22:13:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4641','171','1','5986','4.99','2005-07-11 00:54:56.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4642','171','1','6766','2.99','2005-07-12 15:32:01.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4643','171','2','6774','0.99','2005-07-12 15:56:08.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4644','171','1','7037','3.99','2005-07-27 03:06:44.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4645','171','2','9066','4.99','2005-07-30 07:28:54.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4646','171','2','9084','5.99','2005-07-30 08:14:29.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4647','171','2','10622','4.99','2005-08-01 15:12:00.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4648','171','1','12600','4.99','2005-08-18 16:44:24.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4649','171','1','12962','5.99','2005-08-19 06:22:48.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4650','171','2','13087','6.99','2005-08-19 10:33:52.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4651','171','2','13292','0.99','2005-08-19 18:35:32.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4652','171','2','13433','0.99','2005-08-19 23:30:53.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4653','171','1','14270','1.99','2005-08-21 06:22:18.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4654','171','2','14615','9.99','2005-08-21 18:06:32.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4655','171','2','15810','0.99','2005-08-23 14:43:15.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4656','172','2','449','3.99','2005-05-27 19:13:15.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4657','172','1','685','6.99','2005-05-29 00:17:51.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4658','172','1','837','0.99','2005-05-30 00:02:08.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4659','172','2','1507','0.99','2005-06-15 22:25:26.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4660','172','1','2052','0.99','2005-06-17 15:14:43.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4661','172','2','3032','1.99','2005-06-20 11:58:30.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4662','172','1','4820','5.99','2005-07-08 17:25:23.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4663','172','1','4821','4.99','2005-07-08 17:28:08.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4664','172','2','4878','6.99','2005-07-08 19:33:49.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4665','172','2','6246','7.99','2005-07-11 14:57:51.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4666','172','1','6380','0.99','2005-07-11 21:55:40.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4667','172','1','6875','5.99','2005-07-12 20:23:05.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4668','172','1','7122','6.99','2005-07-27 06:03:18.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4669','172','1','7135','2.99','2005-07-27 06:34:32.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4670','172','1','7194','3.99','2005-07-27 08:39:58.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4671','172','2','7261','2.99','2005-07-27 11:15:01.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4672','172','1','7638','4.99','2005-07-28 01:13:26.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4673','172','2','8944','6.99','2005-07-30 03:11:44.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4674','172','1','9118','2.99','2005-07-30 09:24:18.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4675','172','2','9218','5.99','2005-07-30 13:14:35.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4676','172','1','10312','3.99','2005-08-01 04:29:06.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4677','172','2','10621','0.99','2005-08-01 15:10:26.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4678','172','2','11499','6.99','2005-08-16 22:54:12.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4679','172','2','12350','4.99','2005-08-18 07:29:46.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4680','172','2','12638','8.99','2005-08-18 18:11:39.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4681','172','2','13067','5.99','2005-08-19 09:51:17.000','2006-02-15 22:13:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4682','172','2','13320','4.99','2005-08-19 19:35:33.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4683','172','1','13342','0.99','2005-08-19 20:21:36.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4684','172','2','13937','4.99','2005-08-20 17:22:51.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4685','172','1','14991','4.99','2005-08-22 07:50:44.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4686','172','2','15637','2.99','2005-08-23 07:53:38.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4687','172','1','15902','3.99','2005-08-23 17:28:03.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4688','172','2','16038','3.99','2005-08-23 22:14:31.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4689','173','2','578','2.99','2005-05-28 11:15:48.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4690','173','1','628','4.99','2005-05-28 17:05:46.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4691','173','2','1188','2.99','2005-06-15 01:04:07.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4692','173','2','2435','4.99','2005-06-18 18:12:26.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4693','173','1','2602','2.99','2005-06-19 06:10:08.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4694','173','2','3224','0.99','2005-06-21 02:11:36.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4695','173','1','3336','4.99','2005-06-21 10:14:27.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4696','173','2','3717','0.99','2005-07-06 10:53:34.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4697','173','1','4904','7.99','2005-07-08 20:53:27.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4698','173','2','5430','2.99','2005-07-09 21:19:54.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4699','173','2','5485','4.99','2005-07-09 23:55:25.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4700','173','1','5488','2.99','2005-07-10 00:02:06.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4701','173','2','5531','2.99','2005-07-10 02:13:59.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4702','173','1','5615','3.99','2005-07-10 05:18:51.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4703','173','2','6021','4.99','2005-07-11 02:10:18.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4704','173','1','7644','0.99','2005-07-28 01:27:33.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4705','173','2','8299','2.99','2005-07-29 02:56:00.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4706','173','2','8808','4.99','2005-07-29 21:39:07.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4707','173','2','8829','8.99','2005-07-29 22:33:34.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4708','173','1','9097','4.99','2005-07-30 08:40:35.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4709','173','2','9512','2.99','2005-07-31 00:26:30.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4710','173','1','10351','5.99','2005-08-01 05:32:13.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4711','173','2','12073','2.99','2005-08-17 21:50:39.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4712','173','1','12282','6.99','2005-08-18 04:54:20.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4713','173','2','12501','4.99','2005-08-18 13:13:13.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4714','173','1','14654','2.99','2005-08-21 19:36:59.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4715','173','2','15483','0.99','2005-08-23 02:02:53.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4716','173','1','15775','8.99','2005-08-23 13:25:44.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4717','173','1','16010','2.99','2005-08-23 21:10:24.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4718','174','1','41','5.99','2005-05-25 05:12:29.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4719','174','2','1071','4.99','2005-05-31 09:48:56.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4720','174','2','1566','7.99','2005-06-16 03:13:20.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4721','174','1','1609','0.99','2005-06-16 06:34:59.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4722','174','1','2326','5.99','2005-06-18 10:14:22.000','2006-02-15 22:13:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4723','174','2','3446','1.99','2005-06-21 20:45:51.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4724','174','2','4803','1.99','2005-07-08 16:56:34.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4725','174','2','5414','4.99','2005-07-09 20:29:36.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4726','174','1','6909','4.99','2005-07-12 22:09:30.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4727','174','2','8348','7.99','2005-07-29 04:49:26.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4728','174','1','8754','4.99','2005-07-29 19:18:30.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4729','174','1','9301','4.99','2005-07-30 16:34:29.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4730','174','1','9847','2.99','2005-07-31 12:33:43.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4731','174','1','10363','2.99','2005-08-01 06:01:52.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4732','174','2','10398','4.99','2005-08-01 07:11:49.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4733','174','1','10559','8.99','2005-08-01 13:02:58.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4734','174','1','11525','0.99','2005-08-17 00:15:31.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4735','174','2','12886','5.99','2005-08-19 03:38:32.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4736','174','1','13185','0.99','2005-08-19 14:22:30.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4737','174','1','15892','1.99','2005-08-23 17:01:00.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4738','174','1','15975','4.99','2005-08-23 20:06:23.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4739','175','2','1495','0.99','2005-06-15 21:54:31.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4740','175','2','3266','4.99','2005-06-21 04:49:07.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4741','175','1','3625','4.99','2005-07-06 06:12:52.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4742','175','2','4167','5.99','2005-07-07 09:37:08.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4743','175','1','5232','1.99','2005-07-09 12:35:08.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4744','175','2','6865','7.99','2005-07-12 20:02:40.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4745','175','1','7448','2.99','2005-07-27 18:06:30.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4746','175','1','7771','0.99','2005-07-28 06:52:12.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4747','175','1','8244','2.99','2005-07-29 00:35:34.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4748','175','1','8264','4.99','2005-07-29 01:18:50.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4749','175','1','8440','3.99','2005-07-29 07:31:26.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4750','175','1','8817','4.99','2005-07-29 22:09:08.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4751','175','2','9941','4.99','2005-07-31 15:31:25.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4752','175','2','10229','7.99','2005-08-01 01:45:26.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4753','175','1','10875','0.99','2005-08-02 00:31:44.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4754','175','2','11618','4.99','2005-08-17 04:01:36.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4755','175','1','12509','0.99','2005-08-18 13:21:52.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4756','175','1','13016','4.99','2005-08-19 07:57:14.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4757','175','2','13833','6.99','2005-08-20 14:00:29.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4758','175','2','13997','6.99','2005-08-20 19:51:28.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4759','175','2','14507','4.99','2005-08-21 14:32:45.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4760','175','2','14897','2.99','2005-08-22 04:22:31.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4761','175','2','14060','3.98','2006-02-14 15:16:03.000','2006-02-15 22:13:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4762','175','2','13161','0','2006-02-14 15:16:03.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4763','176','1','172','0.99','2005-05-26 03:17:42.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4764','176','2','380','6.99','2005-05-27 09:34:39.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4765','176','1','553','3.99','2005-05-28 08:14:44.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4766','176','1','663','1.99','2005-05-28 21:23:02.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4767','176','1','1062','7.99','2005-05-31 08:38:20.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4768','176','1','1291','5.99','2005-06-15 08:55:01.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4769','176','1','1741','7.99','2005-06-16 16:31:37.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4770','176','1','1836','6.99','2005-06-16 23:13:05.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4771','176','1','2181','8.99','2005-06-18 00:48:31.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4772','176','1','2218','2.99','2005-06-18 03:13:13.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4773','176','2','2427','2.99','2005-06-18 17:45:00.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4774','176','2','2503','1.99','2005-06-18 23:17:19.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4775','176','1','2922','4.99','2005-06-20 04:13:47.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4776','176','1','3643','4.99','2005-07-06 07:20:08.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4777','176','2','3931','6.99','2005-07-06 21:03:46.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4778','176','2','4121','3.99','2005-07-07 07:13:50.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4779','176','1','6035','2.99','2005-07-11 03:01:45.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4780','176','1','6354','6.99','2005-07-11 20:54:27.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4781','176','1','7017','4.99','2005-07-27 02:16:03.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4782','176','1','7025','2.99','2005-07-27 02:40:29.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4783','176','1','7210','2.99','2005-07-27 09:19:05.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4784','176','2','7521','2.99','2005-07-27 21:04:42.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4785','176','1','7751','5.99','2005-07-28 05:56:13.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4786','176','1','8279','2.99','2005-07-29 01:43:37.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4787','176','2','9145','6.99','2005-07-30 10:27:55.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4788','176','1','10277','2.99','2005-08-01 03:22:41.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4789','176','2','10441','0.99','2005-08-01 08:55:56.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4790','176','1','10862','2.99','2005-08-02 00:17:34.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4791','176','1','11678','5.99','2005-08-17 06:07:39.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4792','176','1','12299','2.99','2005-08-18 05:32:32.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4793','176','1','12718','2.99','2005-08-18 21:21:44.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4794','176','1','13170','7.99','2005-08-19 13:45:48.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4795','176','2','13186','5.99','2005-08-19 14:23:19.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4796','176','1','14083','7.99','2005-08-20 23:42:31.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4797','176','2','14232','1.99','2005-08-21 05:07:02.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4798','176','2','15311','4.99','2005-08-22 19:56:52.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4799','176','1','15933','4.99','2005-08-23 18:36:44.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4800','177','1','1393','2.99','2005-06-15 16:12:50.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4801','177','1','1524','2.99','2005-06-16 00:25:52.000','2006-02-15 22:13:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4802','177','2','1621','4.99','2005-06-16 07:24:12.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4803','177','1','1738','0.99','2005-06-16 16:07:27.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4804','177','2','2467','2.99','2005-06-18 20:20:05.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4805','177','1','4760','0.99','2005-07-08 14:48:07.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4806','177','2','6217','9.99','2005-07-11 13:13:45.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4807','177','1','6284','2.99','2005-07-11 16:51:39.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4808','177','1','7493','3.99','2005-07-27 19:55:46.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4809','177','2','7674','1.99','2005-07-28 02:54:30.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4810','177','1','8139','0.99','2005-07-28 20:16:30.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4811','177','2','9190','1.99','2005-07-30 12:24:17.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4812','177','2','10321','4.99','2005-08-01 04:40:02.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4813','177','1','10661','2.99','2005-08-01 16:48:31.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4814','177','1','10710','0.99','2005-08-01 18:44:36.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4815','177','1','11195','0.99','2005-08-02 11:42:23.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4816','177','1','11376','5.99','2005-08-02 18:16:00.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4817','177','2','11662','6.99','2005-08-17 05:27:37.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4818','177','1','12623','4.99','2005-08-18 17:34:19.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4819','177','2','14093','0.99','2005-08-21 00:21:29.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4820','177','2','14310','0.99','2005-08-21 07:44:32.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4821','177','2','14849','2.99','2005-08-22 02:15:26.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4822','177','2','14883','0.99','2005-08-22 03:55:02.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4823','178','1','1292','6.99','2005-06-15 09:03:52.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4824','178','2','1458','6.99','2005-06-15 20:24:05.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4825','178','2','1568','2.99','2005-06-16 03:14:01.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4826','178','2','1745','3.99','2005-06-16 16:41:16.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4827','178','2','2124','1.99','2005-06-17 20:49:14.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4828','178','1','2293','4.99','2005-06-18 07:45:03.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4829','178','2','2844','6.99','2005-06-19 22:40:12.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4830','178','1','2898','9.99','2005-06-20 02:38:06.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4831','178','1','4915','2.99','2005-07-08 21:31:22.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4832','178','1','5015','2.99','2005-07-09 01:54:24.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4833','178','1','5057','4.99','2005-07-09 04:20:29.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4834','178','1','5094','10.99','2005-07-09 05:59:47.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4835','178','1','5984','2.99','2005-07-11 00:44:36.000','2006-02-15 22:13:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4836','178','2','6347','4.99','2005-07-11 20:18:53.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4837','178','1','6554','5.99','2005-07-12 05:07:26.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4838','178','1','6566','6.99','2005-07-12 05:42:53.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4839','178','2','6606','2.99','2005-07-12 08:03:40.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4840','178','1','7959','4.99','2005-07-28 13:43:20.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4841','178','2','8069','0.99','2005-07-28 17:23:46.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4842','178','1','8287','3.99','2005-07-29 02:03:58.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4843','178','2','8388','5.99','2005-07-29 05:48:15.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4844','178','2','8696','4.99','2005-07-29 16:45:18.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4845','178','2','9004','4.99','2005-07-30 05:04:27.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4846','178','1','9311','7.99','2005-07-30 16:58:31.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4847','178','2','9879','4.99','2005-07-31 13:45:32.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4848','178','2','10125','0.99','2005-07-31 21:33:03.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4849','178','2','10562','0.99','2005-08-01 13:05:52.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4850','178','1','10802','5.99','2005-08-01 22:18:32.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4851','178','2','11319','6.99','2005-08-02 16:10:09.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4852','178','2','11884','6.99','2005-08-17 14:43:23.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4853','178','2','11927','3.99','2005-08-17 16:25:03.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4854','178','2','12049','6.99','2005-08-17 20:53:27.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4855','178','2','12727','2.99','2005-08-18 21:45:15.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4856','178','1','13127','2.99','2005-08-19 12:04:03.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4857','178','1','14104','4.99','2005-08-21 00:37:44.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4858','178','1','14257','7.99','2005-08-21 05:52:57.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4859','178','2','14314','2.99','2005-08-21 07:50:14.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4860','178','1','15323','4.99','2005-08-22 20:22:40.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4861','178','1','12897','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4862','179','1','502','0.99','2005-05-28 01:34:43.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4863','179','1','759','6.99','2005-05-29 10:57:57.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4864','179','1','1046','4.99','2005-05-31 06:42:30.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4865','179','2','1286','7.99','2005-06-15 08:41:13.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4866','179','1','2613','4.99','2005-06-19 07:25:50.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4867','179','1','3671','6.99','2005-07-06 09:01:29.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4868','179','1','3844','0.99','2005-07-06 16:37:58.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4869','179','1','4618','2.99','2005-07-08 08:00:20.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4870','179','2','6071','6.99','2005-07-11 04:50:03.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4871','179','1','6616','7.99','2005-07-12 08:37:30.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4872','179','1','6806','2.99','2005-07-12 17:31:43.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4873','179','1','7028','6.99','2005-07-27 02:54:25.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4874','179','1','7054','4.99','2005-07-27 03:43:28.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4875','179','1','7609','4.99','2005-07-28 00:11:00.000','2006-02-15 22:13:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4876','179','1','8573','2.99','2005-07-29 11:51:25.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4877','179','1','8731','8.99','2005-07-29 18:23:57.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4878','179','2','9491','4.99','2005-07-30 23:45:23.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4879','179','2','9893','0.99','2005-07-31 14:07:21.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4880','179','1','10156','4.99','2005-07-31 22:36:00.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4881','179','1','10385','4.99','2005-08-01 06:39:55.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4882','179','2','10569','3.99','2005-08-01 13:18:23.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4883','179','1','11342','0.99','2005-08-02 17:11:35.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4884','179','2','13240','0.99','2005-08-19 16:22:14.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4885','179','1','13400','4.99','2005-08-19 22:11:44.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4886','179','2','13844','7.99','2005-08-20 14:30:26.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4887','179','2','13957','0.99','2005-08-20 18:09:04.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4888','179','2','14082','7.99','2005-08-20 23:42:00.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4889','179','1','14589','0.99','2005-08-21 17:28:55.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4890','179','1','15985','4.99','2005-08-23 20:20:23.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4891','180','1','1122','2.99','2005-05-31 16:39:33.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4892','180','2','2700','2.99','2005-06-19 13:31:52.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4893','180','1','2798','2.99','2005-06-19 19:07:48.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4894','180','2','4826','7.99','2005-07-08 17:44:25.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4895','180','1','4924','9.99','2005-07-08 21:55:25.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4896','180','2','5384','0.99','2005-07-09 19:17:46.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4897','180','2','5773','0.99','2005-07-10 13:31:09.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4898','180','1','5860','3.99','2005-07-10 18:08:49.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4899','180','1','7274','2.99','2005-07-27 11:35:34.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4900','180','2','8540','2.99','2005-07-29 10:52:51.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4901','180','2','8720','5.99','2005-07-29 17:48:32.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4902','180','1','9373','0.99','2005-07-30 19:05:36.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4903','180','2','9995','3.99','2005-07-31 17:30:47.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4904','180','1','10576','5.99','2005-08-01 13:46:02.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4905','180','1','10992','8.99','2005-08-02 04:41:17.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4906','180','1','12313','8.99','2005-08-18 06:07:31.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4907','180','1','13283','2.99','2005-08-19 18:10:19.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4908','180','2','13842','4.99','2005-08-20 14:29:37.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4909','180','1','13994','2.99','2005-08-20 19:33:21.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4910','180','1','14109','0.99','2005-08-21 00:52:58.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4911','180','1','14851','2.99','2005-08-22 02:20:44.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4912','180','1','15039','4.99','2005-08-22 09:37:54.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4913','180','1','12901','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4914','181','2','579','6.99','2005-05-28 11:19:23.000','2006-02-15 22:13:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4915','181','1','1638','2.99','2005-06-16 08:32:36.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4916','181','1','2645','5.99','2005-06-19 09:50:35.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4917','181','2','3449','5.99','2005-06-21 21:01:27.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4918','181','2','3469','4.99','2005-06-21 22:48:59.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4919','181','1','3862','6.99','2005-07-06 17:35:22.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4920','181','2','4428','4.99','2005-07-07 22:29:40.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4921','181','2','6477','4.99','2005-07-12 01:38:42.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4922','181','1','6946','8.99','2005-07-26 23:40:07.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4923','181','1','7393','0.99','2005-07-27 16:02:52.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4924','181','1','7632','4.99','2005-07-28 01:02:40.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4925','181','1','8593','5.99','2005-07-29 12:38:14.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4926','181','1','8601','9.99','2005-07-29 13:03:31.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4927','181','2','9214','4.99','2005-07-30 13:10:14.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4928','181','2','9235','5.99','2005-07-30 13:47:17.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4929','181','1','9357','8.99','2005-07-30 18:37:00.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4930','181','1','9844','4.99','2005-07-31 12:26:31.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4931','181','2','10262','4.99','2005-08-01 03:01:26.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4932','181','2','10362','6.99','2005-08-01 05:55:13.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4933','181','2','10703','2.99','2005-08-01 18:37:39.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4934','181','1','10748','4.99','2005-08-01 20:01:24.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4935','181','1','10773','6.99','2005-08-01 20:53:45.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4936','181','2','11224','4.99','2005-08-02 12:40:38.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4937','181','1','12363','7.99','2005-08-18 07:52:49.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4938','181','1','12411','0.99','2005-08-18 09:47:57.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4939','181','1','12678','2.99','2005-08-18 19:41:27.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4940','181','2','12939','2.99','2005-08-19 05:38:25.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4941','181','2','13118','4.99','2005-08-19 11:39:58.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4942','181','2','13405','4.99','2005-08-19 22:20:49.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4943','181','2','13415','2.99','2005-08-19 22:48:09.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4944','181','2','14406','3.99','2005-08-21 10:46:35.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4945','181','2','15196','2.99','2005-08-22 16:11:32.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4946','181','2','15482','4.99','2005-08-23 02:01:20.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4947','181','2','13008','2.99','2006-02-14 15:16:03.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4948','182','2','161','0.99','2005-05-26 01:51:48.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4949','182','2','425','3.99','2005-05-27 15:51:30.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4950','182','2','1542','3.99','2005-06-16 01:20:05.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4951','182','1','2049','2.99','2005-06-17 14:58:36.000','2006-02-15 22:13:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4952','182','2','2120','5.99','2005-06-17 20:36:50.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4953','182','1','2234','0.99','2005-06-18 04:01:28.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4954','182','1','3509','2.99','2005-07-06 00:24:57.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4955','182','1','3697','6.99','2005-07-06 10:07:22.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4956','182','1','4174','2.99','2005-07-07 09:59:49.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4957','182','1','4349','0.99','2005-07-07 19:02:37.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4958','182','2','4513','1.99','2005-07-08 02:39:59.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4959','182','2','4591','3.99','2005-07-08 06:29:43.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4960','182','2','4784','0.99','2005-07-08 16:09:56.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4961','182','1','5521','2.99','2005-07-10 01:31:22.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4962','182','2','7229','0.99','2005-07-27 10:00:54.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4963','182','2','7863','0.99','2005-07-28 10:05:46.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4964','182','2','7880','4.99','2005-07-28 10:30:37.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4965','182','2','8048','8.99','2005-07-28 16:50:26.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4966','182','1','11055','4.99','2005-08-02 06:36:05.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4967','182','2','11785','3.99','2005-08-17 10:54:46.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4968','182','1','12573','4.99','2005-08-18 15:32:57.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4969','182','1','12840','6.99','2005-08-19 01:54:11.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4970','182','1','13285','2.99','2005-08-19 18:18:44.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4971','182','1','14586','5.99','2005-08-21 17:19:09.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4972','182','1','14953','6.99','2005-08-22 06:23:54.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4973','182','1','15043','1.99','2005-08-22 09:49:32.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4974','183','1','382','0.99','2005-05-27 10:12:00.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4975','183','1','1279','0.99','2005-06-15 08:13:57.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4976','183','2','2188','1.99','2005-06-18 01:19:04.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4977','183','2','2471','5.99','2005-06-18 20:31:00.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4978','183','1','3381','5.99','2005-06-21 14:02:59.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4979','183','1','3869','2.99','2005-07-06 17:56:46.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4980','183','2','4134','0.99','2005-07-07 08:14:24.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4981','183','2','4157','2.99','2005-07-07 09:04:26.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4982','183','1','5069','1.99','2005-07-09 04:56:30.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4983','183','2','5756','0.99','2005-07-10 12:39:28.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4984','183','1','6472','4.99','2005-07-12 01:33:25.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4985','183','1','6569','4.99','2005-07-12 05:47:40.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4986','183','2','7359','0.99','2005-07-27 14:51:04.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4987','183','2','9672','5.99','2005-07-31 06:34:06.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4988','183','1','9818','4.99','2005-07-31 11:34:32.000','2006-02-15 22:13:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4989','183','2','9931','2.99','2005-07-31 15:18:19.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4990','183','2','10620','5.99','2005-08-01 15:09:17.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4991','183','2','11386','2.99','2005-08-02 18:24:03.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4992','183','2','12451','0.99','2005-08-18 11:04:42.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4993','183','2','12764','3.99','2005-08-18 23:14:15.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4994','183','2','12831','3.99','2005-08-19 01:40:43.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4995','183','1','13482','2.99','2005-08-20 01:14:30.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4996','183','1','13536','4.99','2005-08-20 03:35:16.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4997','184','1','196','2.99','2005-05-26 06:55:58.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4998','184','2','534','4.99','2005-05-28 06:15:25.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('4999','184','1','567','1.99','2005-05-28 09:56:20.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5000','184','2','1976','2.99','2005-06-17 09:38:08.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5001','184','1','2312','0.99','2005-06-18 08:55:46.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5002','184','1','4314','0.99','2005-07-07 17:38:31.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5003','184','2','4882','6.99','2005-07-08 19:42:03.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5004','184','1','5891','0.99','2005-07-10 20:01:17.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5005','184','2','6493','2.99','2005-07-12 02:40:41.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5006','184','2','6700','6.99','2005-07-12 12:47:22.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5007','184','2','7051','4.99','2005-07-27 03:34:37.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5008','184','2','7686','6.99','2005-07-28 03:19:23.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5009','184','1','8892','4.99','2005-07-30 00:47:03.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5010','184','1','9162','0.99','2005-07-30 11:21:56.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5011','184','2','12166','9.99','2005-08-18 00:57:06.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5012','184','2','12454','2.99','2005-08-18 11:19:02.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5013','184','1','12532','2.99','2005-08-18 13:57:58.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5014','184','1','13134','0.99','2005-08-19 12:14:14.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5015','184','1','13262','5.99','2005-08-19 17:20:15.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5016','184','1','13303','4.99','2005-08-19 18:55:21.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5017','184','2','14472','4.99','2005-08-21 13:13:57.000','2006-02-15 22:13:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5018','184','1','14801','5.99','2005-08-22 00:46:54.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5019','184','2','15611','0.99','2005-08-23 06:56:18.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5020','185','2','20','2.99','2005-05-25 01:48:41.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5021','185','2','154','0.99','2005-05-26 00:55:56.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5022','185','1','646','0.99','2005-05-28 19:16:14.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5023','185','1','2459','4.99','2005-06-18 19:44:08.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5024','185','1','3314','4.99','2005-06-21 08:17:00.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5025','185','1','3325','4.99','2005-06-21 08:51:44.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5026','185','1','4186','9.99','2005-07-07 10:32:25.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5027','185','1','4524','2.99','2005-07-08 03:10:48.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5028','185','2','4822','7.99','2005-07-08 17:28:47.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5029','185','2','6106','2.99','2005-07-11 07:05:06.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5030','185','1','6418','1.99','2005-07-11 23:36:27.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5031','185','1','6965','2.99','2005-07-27 00:15:18.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5032','185','1','7066','4.99','2005-07-27 03:53:52.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5033','185','1','8200','2.99','2005-07-28 23:10:46.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5034','185','2','8442','0.99','2005-07-29 07:33:07.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5035','185','1','8684','8.99','2005-07-29 16:16:33.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5036','185','2','9246','0.99','2005-07-30 14:12:31.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5037','185','2','9473','2.99','2005-07-30 23:04:13.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5038','185','2','11355','0.99','2005-08-02 17:37:43.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5039','185','1','12312','2.99','2005-08-18 06:07:26.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5040','185','1','12674','5.99','2005-08-18 19:24:56.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5041','185','1','12885','0.99','2005-08-19 03:37:25.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5042','185','2','14513','2.99','2005-08-21 14:51:35.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5043','186','1','581','1.99','2005-05-28 11:20:29.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5044','186','2','958','0.99','2005-05-30 17:58:03.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5045','186','1','1192','4.99','2005-06-15 01:18:39.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5046','186','1','1300','2.99','2005-06-15 09:36:19.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5047','186','1','1663','2.99','2005-06-16 10:14:15.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5048','186','2','2132','4.99','2005-06-17 21:05:06.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5049','186','2','2875','4.99','2005-06-20 00:47:18.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5050','186','1','3039','4.99','2005-06-20 12:32:30.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5051','186','2','6067','4.99','2005-07-11 04:34:49.000','2006-02-15 22:13:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5052','186','2','7739','0.99','2005-07-28 05:21:51.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5053','186','1','7915','3.99','2005-07-28 11:49:46.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5054','186','1','8483','4.99','2005-07-29 08:50:18.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5055','186','2','8872','0.99','2005-07-30 00:13:54.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5056','186','2','9303','2.99','2005-07-30 16:35:59.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5057','186','2','9360','5.99','2005-07-30 18:39:43.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5058','186','1','10104','1.99','2005-07-31 20:49:14.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5059','186','1','10985','0.99','2005-08-02 04:30:19.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5060','186','1','11982','0.99','2005-08-17 18:13:07.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5061','186','1','12348','5.99','2005-08-18 07:21:47.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5062','186','1','12438','8.99','2005-08-18 10:42:52.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5063','186','1','13168','6.99','2005-08-19 13:37:28.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5064','186','2','13517','4.99','2005-08-20 02:33:17.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5065','186','1','13853','3.99','2005-08-20 14:47:02.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5066','186','1','14006','2.99','2005-08-20 20:21:36.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5067','186','2','14229','4.99','2005-08-21 04:57:15.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5068','186','2','14646','4.99','2005-08-21 19:14:48.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5069','186','2','14988','3.99','2005-08-22 07:46:05.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5070','186','2','15001','0.99','2005-08-22 08:00:49.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5071','186','2','15295','3.99','2005-08-22 19:36:21.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5072','186','1','15596','0.99','2005-08-23 06:19:51.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5073','186','1','14216','2.99','2006-02-14 15:16:03.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5074','187','1','252','7.99','2005-05-26 14:39:53.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5075','187','2','1323','6.99','2005-06-15 10:55:17.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5076','187','2','1462','4.99','2005-06-15 20:37:40.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5077','187','2','1592','0.99','2005-06-16 05:14:37.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5078','187','2','2127','0.99','2005-06-17 20:54:48.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5079','187','2','2533','0.99','2005-06-19 01:34:26.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5080','187','1','2742','5.99','2005-06-19 16:05:47.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5081','187','1','3402','2.99','2005-06-21 15:54:37.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5082','187','2','3709','10.99','2005-07-06 10:26:56.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5083','187','1','4429','4.99','2005-07-07 22:32:47.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5084','187','2','5366','0.99','2005-07-09 18:28:37.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5085','187','1','5738','8.99','2005-07-10 11:50:51.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5086','187','2','5833','6.99','2005-07-10 16:39:24.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5087','187','1','6057','3.99','2005-07-11 04:03:40.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5088','187','2','6428','2.99','2005-07-12 00:01:51.000','2006-02-15 22:13:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5089','187','2','7289','4.99','2005-07-27 12:26:51.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5090','187','2','7844','7.99','2005-07-28 09:16:19.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5091','187','2','7967','7.99','2005-07-28 13:56:51.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5092','187','1','9241','2.99','2005-07-30 13:58:41.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5093','187','1','11843','2.99','2005-08-17 13:14:50.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5094','187','2','12307','8.99','2005-08-18 05:48:23.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5095','187','2','12490','9.99','2005-08-18 12:48:45.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5096','187','1','12534','7.99','2005-08-18 14:04:41.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5097','187','2','13940','8.99','2005-08-20 17:28:57.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5098','187','2','14855','8.99','2005-08-22 02:27:32.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5099','187','2','15231','4.99','2005-08-22 17:32:57.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5100','187','2','15517','2.99','2005-08-23 03:13:01.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5101','187','2','15971','7.99','2005-08-23 19:59:33.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5102','188','2','1527','2.99','2005-06-16 00:31:40.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5103','188','2','1927','0.99','2005-06-17 06:48:19.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5104','188','1','2515','4.99','2005-06-18 23:57:31.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5105','188','2','2733','4.99','2005-06-19 15:21:53.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5106','188','2','3848','3.99','2005-07-06 16:47:32.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5107','188','2','4150','2.99','2005-07-07 08:43:22.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5108','188','2','5356','2.99','2005-07-09 18:08:28.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5109','188','2','5729','5.99','2005-07-10 11:27:25.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5110','188','2','6555','4.99','2005-07-12 05:08:16.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5111','188','2','7042','0.99','2005-07-27 03:20:18.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5112','188','1','7556','4.99','2005-07-27 22:17:17.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5113','188','2','9613','4.99','2005-07-31 03:58:53.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5114','188','2','10453','5.99','2005-08-01 09:13:27.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5115','188','1','10494','0.99','2005-08-01 10:45:21.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5116','188','2','10719','4.99','2005-08-01 19:00:28.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5117','188','2','10757','4.99','2005-08-01 20:22:44.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5118','188','2','11378','2.99','2005-08-02 18:16:52.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5119','188','1','13570','2.99','2005-08-20 05:04:57.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5120','188','1','13787','5.99','2005-08-20 12:15:23.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5121','188','1','14399','2.99','2005-08-21 10:33:23.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5122','188','2','14809','2.99','2005-08-22 01:00:42.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5123','188','2','15319','2.99','2005-08-22 20:17:17.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5124','188','2','15409','0.99','2005-08-22 23:26:32.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5125','188','2','15474','4.99','2005-08-23 01:39:10.000','2006-02-15 22:13:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5126','188','1','14503','2.99','2006-02-14 15:16:03.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5127','189','2','1117','5.99','2005-05-31 16:15:31.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5128','189','1','1541','0.99','2005-06-16 01:15:59.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5129','189','1','1834','0.99','2005-06-16 22:49:08.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5130','189','2','2905','1.99','2005-06-20 02:56:16.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5131','189','1','3108','6.99','2005-06-20 17:28:43.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5132','189','1','3346','2.99','2005-06-21 11:06:53.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5133','189','1','3763','0.99','2005-07-06 12:56:31.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5134','189','2','3813','4.99','2005-07-06 15:23:34.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5135','189','2','4203','0.99','2005-07-07 11:24:14.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5136','189','1','6193','5.99','2005-07-11 11:46:57.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5137','189','1','7469','4.99','2005-07-27 18:57:40.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5138','189','1','7675','4.99','2005-07-28 02:55:20.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5139','189','2','7790','2.99','2005-07-28 07:22:35.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5140','189','2','9171','5.99','2005-07-30 11:36:24.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5141','189','2','9386','0.99','2005-07-30 19:26:21.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5142','189','1','9506','4.99','2005-07-31 00:19:01.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5143','189','1','10247','9.99','2005-08-01 02:34:06.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5144','189','2','11059','6.99','2005-08-02 06:41:38.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5145','189','2','13601','6.99','2005-08-20 06:01:15.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5146','189','1','13766','3.99','2005-08-20 11:42:01.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5147','189','1','15773','1.99','2005-08-23 13:24:57.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5148','189','1','16008','5.99','2005-08-23 21:04:51.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5149','190','2','430','4.99','2005-05-27 16:22:10.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5150','190','1','693','2.99','2005-05-29 01:42:31.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5151','190','1','1319','2.99','2005-06-15 10:39:05.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5152','190','1','1347','2.99','2005-06-15 12:43:43.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5153','190','1','2057','4.99','2005-06-17 15:31:58.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5154','190','1','2568','3.99','2005-06-19 04:09:03.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5155','190','1','3386','4.99','2005-06-21 14:21:06.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5156','190','2','4005','5.99','2005-07-07 00:22:26.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5157','190','1','4140','2.99','2005-07-07 08:19:10.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5158','190','2','6867','3.99','2005-07-12 20:06:47.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5159','190','1','7175','4.99','2005-07-27 08:03:22.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5160','190','1','7386','5.99','2005-07-27 15:52:10.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5161','190','2','7404','2.99','2005-07-27 16:24:43.000','2006-02-15 22:13:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5162','190','1','8498','0.99','2005-07-29 09:07:38.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5163','190','1','11082','5.99','2005-08-02 07:30:19.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5164','190','2','11158','6.99','2005-08-02 09:58:28.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5165','190','2','11276','4.99','2005-08-02 14:28:46.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5166','190','2','11312','6.99','2005-08-02 15:56:51.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5167','190','2','11750','0.99','2005-08-17 09:07:00.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5168','190','2','11950','9.99','2005-08-17 17:13:16.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5169','190','1','12270','2.99','2005-08-18 04:32:05.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5170','190','2','12381','0.99','2005-08-18 08:31:43.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5171','190','2','14065','0.99','2005-08-20 22:40:47.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5172','190','2','14141','4.99','2005-08-21 02:07:22.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5173','190','2','14166','2.99','2005-08-21 02:59:31.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5174','190','2','14650','0.99','2005-08-21 19:24:51.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5175','190','2','15167','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5176','191','1','1134','2.99','2005-05-31 19:14:15.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5177','191','2','1152','4.99','2005-05-31 21:32:17.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5178','191','2','1173','2.99','2005-06-14 23:54:46.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5179','191','1','1278','0.99','2005-06-15 08:09:12.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5180','191','1','1677','2.99','2005-06-16 11:07:11.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5181','191','2','1870','2.99','2005-06-17 02:24:36.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5182','191','1','2051','4.99','2005-06-17 15:10:16.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5183','191','2','2555','2.99','2005-06-19 03:07:02.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5184','191','1','5338','2.99','2005-07-09 17:07:07.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5185','191','2','5397','5.99','2005-07-09 19:43:51.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5186','191','1','5924','5.99','2005-07-10 21:41:23.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5187','191','1','7150','6.99','2005-07-27 07:11:14.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5188','191','1','7450','3.99','2005-07-27 18:18:35.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5189','191','1','7520','2.99','2005-07-27 21:02:02.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5190','191','2','8583','0.99','2005-07-29 12:04:50.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5191','191','1','9297','4.99','2005-07-30 16:26:29.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5192','191','1','9964','4.99','2005-07-31 16:17:39.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5193','191','2','10532','2.99','2005-08-01 12:06:35.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5194','191','2','15375','4.99','2005-08-22 22:12:02.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5195','191','1','14361','0.99','2006-02-14 15:16:03.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5196','192','1','895','1.99','2005-05-30 08:50:43.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5197','192','1','2760','3.99','2005-06-19 17:16:33.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5198','192','1','3902','2.99','2005-07-06 19:25:18.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5199','192','1','4469','4.99','2005-07-08 00:18:32.000','2006-02-15 22:13:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5200','192','1','5400','2.99','2005-07-09 19:56:40.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5201','192','2','6223','0.99','2005-07-11 13:27:09.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5202','192','2','6691','0.99','2005-07-12 12:26:38.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5203','192','2','7147','2.99','2005-07-27 07:02:34.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5204','192','2','8051','0.99','2005-07-28 16:56:16.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5205','192','2','8292','7.99','2005-07-29 02:29:36.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5206','192','1','9462','7.99','2005-07-30 22:30:44.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5207','192','1','9831','2.99','2005-07-31 11:59:32.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5208','192','2','10238','0.99','2005-08-01 02:08:05.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5209','192','1','10843','7.99','2005-08-01 23:43:03.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5210','192','1','11385','4.99','2005-08-02 18:23:11.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5211','192','1','11815','4.99','2005-08-17 12:13:26.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5212','192','1','13125','5.99','2005-08-19 11:57:49.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5213','192','2','14146','4.99','2005-08-21 02:13:31.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5214','192','2','14238','7.99','2005-08-21 05:16:40.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5215','192','1','14404','4.99','2005-08-21 10:43:04.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5216','192','2','14692','6.99','2005-08-21 20:43:21.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5217','192','2','15855','2.99','2005-08-23 15:59:01.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5218','192','1','11611','4.99','2006-02-14 15:16:03.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5219','193','2','273','2.99','2005-05-26 16:29:36.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5220','193','2','464','0.99','2005-05-27 20:42:44.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5221','193','1','1325','4.99','2005-06-15 11:03:24.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5222','193','2','2377','6.99','2005-06-18 14:56:23.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5223','193','2','2841','6.99','2005-06-19 22:21:06.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5224','193','2','2846','4.99','2005-06-19 22:52:14.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5225','193','2','2880','2.99','2005-06-20 01:24:54.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5226','193','1','3297','8.99','2005-06-21 07:08:19.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5227','193','1','4892','6.99','2005-07-08 20:06:25.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5228','193','1','8211','2.99','2005-07-28 23:34:22.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5229','193','1','8379','4.99','2005-07-29 05:29:40.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5230','193','1','8431','4.99','2005-07-29 07:12:48.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5231','193','1','9079','2.99','2005-07-30 08:02:00.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5232','193','1','9575','4.99','2005-07-31 02:51:53.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5233','193','2','10462','2.99','2005-08-01 09:38:28.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5234','193','2','12384','0.99','2005-08-18 08:36:58.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5235','193','2','12658','4.99','2005-08-18 19:05:42.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5236','193','1','13529','2.99','2005-08-20 03:07:47.000','2006-02-15 22:13:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5237','193','1','13608','0.99','2005-08-20 06:10:44.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5238','193','1','14679','2.99','2005-08-21 20:14:58.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5239','193','1','14927','4.99','2005-08-22 05:31:53.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5240','193','2','15164','4.99','2005-08-22 14:47:53.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5241','193','2','15344','6.99','2005-08-22 21:01:48.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5242','193','2','15495','5.99','2005-08-23 02:26:10.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5243','193','2','15729','2.99','2006-02-14 15:16:03.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5244','194','2','334','4.99','2005-05-27 03:03:07.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5245','194','2','677','7.99','2005-05-28 23:00:08.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5246','194','1','1430','0.99','2005-06-15 18:24:55.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5247','194','1','2245','7.99','2005-06-18 04:52:59.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5248','194','1','2347','2.99','2005-06-18 12:12:29.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5249','194','1','2463','3.99','2005-06-18 20:01:43.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5250','194','1','2807','3.99','2005-06-19 19:32:53.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5251','194','2','4231','7.99','2005-07-07 12:48:19.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5252','194','2','5146','2.99','2005-07-09 08:14:58.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5253','194','1','5291','2.99','2005-07-09 15:15:02.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5254','194','2','5894','3.99','2005-07-10 20:09:34.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5255','194','1','9064','7.99','2005-07-30 07:24:55.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5256','194','2','11475','5.99','2005-08-02 21:55:09.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5257','194','2','12851','3.99','2005-08-19 02:12:12.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5258','194','1','13515','0.99','2005-08-20 02:29:47.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5259','194','2','13616','7.99','2005-08-20 06:30:33.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5260','194','1','14440','4.99','2005-08-21 11:59:04.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5261','194','2','15937','4.99','2005-08-23 18:43:22.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5262','195','1','4234','6.99','2005-07-07 13:01:35.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5263','195','1','4315','2.99','2005-07-07 17:40:26.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5264','195','1','5228','4.99','2005-07-09 12:26:01.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5265','195','1','5536','0.99','2005-07-10 02:29:42.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5266','195','2','6175','4.99','2005-07-11 10:44:37.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5267','195','1','7349','2.99','2005-07-27 14:33:00.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5268','195','2','8280','4.99','2005-07-29 01:45:51.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5269','195','2','8479','0.99','2005-07-29 08:42:04.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5270','195','2','9188','6.99','2005-07-30 12:19:54.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5271','195','1','9870','5.99','2005-07-31 13:22:51.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5272','195','1','9994','4.99','2005-07-31 17:30:31.000','2006-02-15 22:13:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5273','195','2','10911','4.99','2005-08-02 01:58:36.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5274','195','1','11201','7.99','2005-08-02 11:49:16.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5275','195','2','11787','2.99','2005-08-17 10:59:00.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5276','195','2','12099','0.99','2005-08-17 22:38:54.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5277','195','2','12941','0.99','2005-08-19 05:39:26.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5278','195','2','13741','0.99','2005-08-20 10:48:47.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5279','195','2','14751','7.99','2005-08-21 23:11:23.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5280','195','2','16040','11.99','2005-08-23 22:19:33.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5281','196','2','106','11.99','2005-05-25 18:18:19.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5282','196','2','178','5.99','2005-05-26 04:21:46.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5283','196','2','491','2.99','2005-05-28 00:13:35.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5284','196','1','1053','1.99','2005-05-31 07:12:44.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5285','196','1','1182','5.99','2005-06-15 00:45:21.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5286','196','1','1348','2.99','2005-06-15 12:45:30.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5287','196','2','1600','0.99','2005-06-16 06:04:12.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5288','196','1','2681','0.99','2005-06-19 12:15:27.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5289','196','2','2912','4.99','2005-06-20 03:32:45.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5290','196','1','3104','4.99','2005-06-20 17:06:46.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5291','196','2','3271','5.99','2005-06-21 05:16:10.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5292','196','2','3342','4.99','2005-06-21 10:46:36.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5293','196','1','4879','2.99','2005-07-08 19:34:55.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5294','196','2','4999','4.99','2005-07-09 01:12:57.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5295','196','2','5143','4.99','2005-07-09 08:07:07.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5296','196','2','5353','3.99','2005-07-09 18:04:29.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5297','196','2','5768','4.99','2005-07-10 13:15:26.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5298','196','2','6857','4.99','2005-07-12 19:53:30.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5299','196','2','7666','3.99','2005-07-28 02:35:12.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5300','196','2','8266','0.99','2005-07-29 01:20:16.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5301','196','2','8472','1.99','2005-07-29 08:36:22.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5302','196','2','8700','0.99','2005-07-29 16:56:01.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5303','196','1','9346','5.99','2005-07-30 18:13:52.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5304','196','1','9721','6.99','2005-07-31 08:28:46.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5305','196','1','9804','4.99','2005-07-31 11:07:39.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5306','196','2','10122','10.99','2005-07-31 21:29:28.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5307','196','1','10191','4.99','2005-08-01 00:28:38.000','2006-02-15 22:14:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5308','196','1','11104','2.99','2005-08-02 08:09:58.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5309','196','2','12430','0.99','2005-08-18 10:32:41.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5310','196','2','12684','0.99','2005-08-18 19:51:27.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5311','196','2','12836','0.99','2005-08-19 01:48:33.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5312','196','1','13799','8.99','2005-08-20 12:36:42.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5313','196','2','14410','5.99','2005-08-21 10:54:49.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5314','196','1','14698','5.99','2005-08-21 20:49:58.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5315','196','2','15980','0.99','2005-08-23 20:10:13.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5316','197','2','94','2.99','2005-05-25 16:03:42.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5317','197','1','215','0.99','2005-05-26 09:02:47.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5318','197','1','391','2.99','2005-05-27 11:03:55.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5319','197','2','649','1.99','2005-05-28 19:35:45.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5320','197','1','683','2.99','2005-05-29 00:09:48.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5321','197','2','730','3.99','2005-05-29 07:00:59.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5322','197','1','903','3.99','2005-05-30 10:11:29.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5323','197','1','918','0.99','2005-05-30 11:32:24.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5324','197','2','1175','2.99','2005-06-15 00:15:15.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5325','197','1','1363','0.99','2005-06-15 14:05:11.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5326','197','1','1503','2.99','2005-06-15 22:07:09.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5327','197','2','1605','8.99','2005-06-16 06:17:55.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5328','197','2','1919','4.99','2005-06-17 05:40:52.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5329','197','1','2090','2.99','2005-06-17 18:06:14.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5330','197','1','2750','4.99','2005-06-19 16:37:24.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5331','197','2','2781','2.99','2005-06-19 18:24:42.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5332','197','1','4486','8.99','2005-07-08 01:09:09.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5333','197','2','4739','4.99','2005-07-08 13:25:57.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5334','197','2','5182','6.99','2005-07-09 10:08:10.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5335','197','2','5344','0.99','2005-07-09 17:27:05.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5336','197','1','8165','2.99','2005-07-28 21:23:06.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5337','197','2','9378','4.99','2005-07-30 19:12:54.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5338','197','1','9476','0.99','2005-07-30 23:06:40.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5339','197','2','9585','4.99','2005-07-31 03:05:55.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5340','197','2','10460','3.99','2005-08-01 09:31:00.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5341','197','2','10666','0.99','2005-08-01 16:56:36.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5342','197','2','10739','4.99','2005-08-01 19:46:11.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5343','197','1','10743','2.99','2005-08-01 19:55:09.000','2006-02-15 22:14:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5344','197','1','11018','4.99','2005-08-02 05:27:53.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5345','197','1','11215','4.99','2005-08-02 12:20:42.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5346','197','1','11311','4.99','2005-08-02 15:53:48.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5347','197','1','11478','2.99','2005-08-02 22:09:05.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5348','197','1','11643','1.99','2005-08-17 04:49:35.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5349','197','1','12799','0.99','2005-08-19 00:27:01.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5350','197','2','13913','3.99','2005-08-20 16:37:35.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5351','197','1','14069','9.99','2005-08-20 22:51:25.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5352','197','2','14951','4.99','2005-08-22 06:19:37.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5353','197','1','15078','2.99','2005-08-22 11:09:31.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5354','197','2','15233','0.99','2005-08-22 17:41:53.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5355','197','1','15540','8.99','2005-08-23 04:12:52.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5356','198','1','357','0.99','2005-05-27 06:37:15.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5357','198','1','582','4.99','2005-05-28 11:33:46.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5358','198','2','639','2.99','2005-05-28 18:25:02.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5359','198','1','932','2.99','2005-05-30 12:55:36.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5360','198','2','1132','4.99','2005-05-31 18:44:53.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5361','198','2','2185','0.99','2005-06-18 01:12:22.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5362','198','2','3770','2.99','2005-07-06 13:14:28.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5363','198','2','4588','2.99','2005-07-08 06:18:01.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5364','198','2','4750','0.99','2005-07-08 14:07:03.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5365','198','2','5794','4.99','2005-07-10 14:34:53.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5366','198','2','6567','4.99','2005-07-12 05:43:09.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5367','198','1','6819','4.99','2005-07-12 18:21:01.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5368','198','2','6889','4.99','2005-07-12 21:01:22.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5369','198','1','7287','0.99','2005-07-27 12:24:12.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5370','198','1','7441','5.99','2005-07-27 17:46:53.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5371','198','1','7583','2.99','2005-07-27 23:15:22.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5372','198','2','7622','0.99','2005-07-28 00:37:34.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5373','198','1','8145','5.99','2005-07-28 20:34:41.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5374','198','2','9389','0.99','2005-07-30 19:27:59.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5375','198','1','10112','4.99','2005-07-31 21:08:56.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5376','198','1','10147','2.99','2005-07-31 22:18:43.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5377','198','1','10679','0.99','2005-08-01 17:27:58.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5378','198','1','11351','3.99','2005-08-02 17:28:07.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5379','198','1','11594','6.99','2005-08-17 02:47:02.000','2006-02-15 22:14:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5380','198','1','11756','2.99','2005-08-17 09:29:22.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5381','198','1','11836','4.99','2005-08-17 13:03:36.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5382','198','2','11949','2.99','2005-08-17 17:12:26.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5383','198','1','11957','1.99','2005-08-17 17:22:29.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5384','198','2','11985','2.99','2005-08-17 18:19:44.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5385','198','2','12594','4.99','2005-08-18 16:24:24.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5386','198','1','12862','5.99','2005-08-19 02:31:59.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5387','198','1','13768','5.99','2005-08-20 11:43:43.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5388','198','1','14214','5.99','2005-08-21 04:30:49.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5389','198','2','14380','2.99','2005-08-21 09:53:52.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5390','198','2','14990','4.99','2005-08-22 07:48:01.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5391','198','1','15256','6.99','2005-08-22 18:20:07.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5392','198','1','15433','4.99','2005-08-23 00:27:18.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5393','199','1','499','7.99','2005-05-28 01:05:07.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5394','199','1','1406','4.99','2005-06-15 16:44:00.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5395','199','1','1910','2.99','2005-06-17 05:11:27.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5396','199','1','3299','0.99','2005-06-21 07:23:34.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5397','199','1','4499','2.99','2005-07-08 02:08:48.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5398','199','2','4580','8.99','2005-07-08 06:04:23.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5399','199','1','4976','4.99','2005-07-09 00:03:30.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5400','199','2','5398','2.99','2005-07-09 19:44:58.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5401','199','2','5680','5.99','2005-07-10 08:47:36.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5402','199','2','6668','2.99','2005-07-12 11:37:45.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5403','199','2','6782','4.99','2005-07-12 16:23:25.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5404','199','1','7782','4.99','2005-07-28 07:13:40.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5405','199','1','8709','0.99','2005-07-29 17:25:54.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5406','199','1','9752','2.99','2005-07-31 09:22:02.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5407','199','2','9894','4.99','2005-07-31 14:07:44.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5408','199','1','9959','4.99','2005-07-31 16:04:22.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5409','199','1','10196','2.99','2005-08-01 00:34:51.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5410','199','2','10517','4.99','2005-08-01 11:41:57.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5411','199','1','10850','8.99','2005-08-01 23:53:45.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5412','199','1','11454','2.99','2005-08-02 21:04:39.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5413','199','1','12386','0.99','2005-08-18 08:45:57.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5414','199','2','14320','4.99','2005-08-21 08:04:40.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5415','199','2','15412','0.99','2005-08-22 23:37:11.000','2006-02-15 22:14:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5416','199','2','15751','3.99','2005-08-23 12:41:07.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5417','199','2','13952','2.99','2006-02-14 15:16:03.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5418','200','2','270','9.99','2005-05-26 16:20:56.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5419','200','2','1296','1.99','2005-06-15 09:23:59.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5420','200','2','1309','4.99','2005-06-15 10:10:49.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5421','200','2','1899','6.99','2005-06-17 04:29:15.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5422','200','1','2227','4.99','2005-06-18 03:43:23.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5423','200','2','2667','3.99','2005-06-19 11:28:46.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5424','200','2','2717','4.99','2005-06-19 14:46:10.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5425','200','1','3190','3.99','2005-06-20 23:27:15.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5426','200','1','3580','4.99','2005-07-06 03:48:44.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5427','200','1','5110','2.99','2005-07-09 06:57:25.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5428','200','1','6123','0.99','2005-07-11 08:02:27.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5429','200','2','6167','2.99','2005-07-11 10:21:21.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5430','200','1','6181','4.99','2005-07-11 11:10:11.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5431','200','1','6947','3.99','2005-07-26 23:42:03.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5432','200','1','7574','2.99','2005-07-27 22:53:00.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5433','200','2','8368','3.99','2005-07-29 05:15:41.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5434','200','2','8462','2.99','2005-07-29 08:15:42.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5435','200','1','9527','6.99','2005-07-31 01:02:24.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5436','200','1','10685','2.99','2005-08-01 17:49:38.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5437','200','1','11356','8.99','2005-08-02 17:42:40.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5438','200','1','13737','5.99','2005-08-20 10:41:50.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5439','200','1','14034','10.99','2005-08-20 21:31:52.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5440','200','2','14521','6.99','2005-08-21 15:01:32.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5441','200','2','15691','4.99','2005-08-23 09:53:54.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5442','200','2','15742','5.99','2005-08-23 12:11:37.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5443','200','1','15961','6.99','2005-08-23 19:35:42.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5444','200','2','11866','2.99','2006-02-14 15:16:03.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5445','201','1','311','3.99','2005-05-26 22:51:37.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5446','201','1','670','6.99','2005-05-28 22:04:03.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5447','201','2','756','5.99','2005-05-29 10:28:45.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5448','201','1','2047','1.99','2005-06-17 14:40:58.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5449','201','1','2157','3.99','2005-06-17 23:30:52.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5450','201','2','2359','6.99','2005-06-18 13:04:42.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5451','201','1','3106','4.99','2005-06-20 17:18:06.000','2006-02-15 22:14:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5452','201','1','3364','7.99','2005-06-21 12:37:46.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5453','201','2','3528','4.99','2005-07-06 01:13:27.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5454','201','2','3708','6.99','2005-07-06 10:23:27.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5455','201','1','7106','0.99','2005-07-27 05:21:24.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5456','201','2','7606','2.99','2005-07-28 00:02:15.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5457','201','2','9355','0.99','2005-07-30 18:35:25.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5458','201','2','10750','5.99','2005-08-01 20:06:00.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5459','201','2','10865','3.99','2005-08-02 00:22:46.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5460','201','1','10891','0.99','2005-08-02 01:09:55.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5461','201','2','11807','0.99','2005-08-17 11:51:15.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5462','201','2','13076','4.99','2005-08-19 10:10:26.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5463','201','2','13613','9.99','2005-08-20 06:23:53.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5464','201','2','13671','3.99','2005-08-20 08:27:03.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5465','201','2','13672','2.99','2005-08-20 08:27:27.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5466','201','2','14656','2.99','2005-08-21 19:39:28.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5467','201','1','14973','2.99','2005-08-22 06:59:28.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5468','201','1','15887','2.99','2005-08-23 16:54:09.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5469','201','2','15974','5.99','2005-08-23 20:06:04.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5470','202','1','1474','2.99','2005-06-15 20:55:42.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5471','202','1','1535','4.99','2005-06-16 00:52:04.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5472','202','1','3008','0.99','2005-06-20 10:23:25.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5473','202','2','3148','0.99','2005-06-20 20:27:18.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5474','202','1','3861','8.99','2005-07-06 17:24:49.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5475','202','2','4567','4.99','2005-07-08 05:20:04.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5476','202','2','5194','2.99','2005-07-09 10:31:34.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5477','202','1','5297','2.99','2005-07-09 15:32:29.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5478','202','2','5838','2.99','2005-07-10 17:04:56.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5479','202','1','7613','2.99','2005-07-28 00:13:58.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5480','202','1','8351','2.99','2005-07-29 04:50:53.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5481','202','1','8779','2.99','2005-07-29 20:15:00.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5482','202','1','8830','2.99','2005-07-29 22:34:35.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5483','202','2','8930','0.99','2005-07-30 02:28:38.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5484','202','2','9057','2.99','2005-07-30 07:14:18.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5485','202','2','9467','8.99','2005-07-30 22:45:34.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5486','202','2','9751','4.99','2005-07-31 09:20:50.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5487','202','1','10375','2.99','2005-08-01 06:26:22.000','2006-02-15 22:14:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5488','202','1','11210','4.99','2005-08-02 12:15:54.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5489','202','2','11924','4.99','2005-08-17 16:22:05.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5490','202','2','12801','8.99','2005-08-19 00:27:19.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5491','202','1','13196','4.99','2005-08-19 14:40:32.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5492','202','1','13528','3.99','2005-08-20 03:03:31.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5493','202','1','14019','3.99','2005-08-20 20:59:15.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5494','202','1','15095','0.99','2005-08-22 11:41:35.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5495','202','2','15772','4.99','2005-08-23 13:22:56.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5496','203','1','314','0.99','2005-05-26 23:09:41.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5497','203','1','1217','4.99','2005-06-15 03:24:14.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5498','203','1','1715','2.99','2005-06-16 14:37:12.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5499','203','2','2939','7.99','2005-06-20 05:18:16.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5500','203','2','3406','2.99','2005-06-21 16:00:18.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5501','203','2','4136','2.99','2005-07-07 08:15:52.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5502','203','2','5579','5.99','2005-07-10 04:04:29.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5503','203','2','7787','6.99','2005-07-28 07:19:02.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5504','203','1','8039','0.99','2005-07-28 16:35:16.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5505','203','1','8463','4.99','2005-07-29 08:17:51.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5506','203','1','8792','7.99','2005-07-29 20:56:14.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5507','203','2','9015','10.99','2005-07-30 05:21:32.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5508','203','2','10700','3.99','2005-08-01 18:26:31.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5509','203','2','10805','2.99','2005-08-01 22:23:37.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5510','203','1','11712','2.99','2005-08-17 07:32:51.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5511','203','1','12519','0.99','2005-08-18 13:42:14.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5512','203','2','13841','4.99','2005-08-20 14:25:18.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5513','203','2','14505','5.99','2005-08-21 14:26:28.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5514','203','2','15798','2.99','2005-08-23 14:23:03.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5515','203','2','15991','2.99','2005-08-23 20:27:34.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5516','204','2','251','0.99','2005-05-26 14:35:40.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5517','204','2','399','4.99','2005-05-27 12:48:38.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5518','204','2','857','4.99','2005-05-30 02:01:23.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5519','204','1','1016','1.99','2005-05-31 02:49:43.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5520','204','1','1321','2.99','2005-06-15 10:49:17.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5521','204','1','1616','7.99','2005-06-16 07:04:52.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5522','204','1','1871','4.99','2005-06-17 02:25:12.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5523','204','2','1894','7.99','2005-06-17 04:18:48.000','2006-02-15 22:14:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5524','204','2','2186','2.99','2005-06-18 01:15:27.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5525','204','2','2734','4.99','2005-06-19 15:36:27.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5526','204','1','4043','0.99','2005-07-07 03:09:50.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5527','204','1','4979','4.99','2005-07-09 00:24:34.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5528','204','2','5145','0.99','2005-07-09 08:13:25.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5529','204','1','5619','2.99','2005-07-10 05:29:33.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5530','204','2','6004','4.99','2005-07-11 01:34:25.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5531','204','2','6225','2.99','2005-07-11 13:45:14.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5532','204','2','6631','0.99','2005-07-12 09:31:43.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5533','204','1','6694','6.99','2005-07-12 12:39:23.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5534','204','2','6871','2.99','2005-07-12 20:13:49.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5535','204','1','7392','4.99','2005-07-27 16:01:05.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5536','204','2','9005','0.99','2005-07-30 05:04:58.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5537','204','1','9394','5.99','2005-07-30 20:06:24.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5538','204','2','9906','4.99','2005-07-31 14:38:12.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5539','204','2','10042','2.99','2005-07-31 19:01:25.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5540','204','2','10399','5.99','2005-08-01 07:13:39.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5541','204','1','11261','7.99','2005-08-02 13:54:26.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5542','204','2','11886','0.99','2005-08-17 14:58:51.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5543','204','1','12737','6.99','2005-08-18 22:11:37.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5544','204','1','13084','0.99','2005-08-19 10:27:25.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5545','204','1','13416','4.99','2005-08-19 22:48:48.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5546','204','2','13899','2.99','2005-08-20 16:05:11.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5547','204','2','14163','4.99','2005-08-21 02:56:52.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5548','204','1','14871','0.99','2005-08-22 03:23:24.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5549','204','1','15364','4.99','2005-08-22 21:41:41.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5550','204','2','15415','11.99','2005-08-22 23:48:56.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5551','205','1','1238','2.99','2005-06-15 04:49:08.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5552','205','1','1357','4.99','2005-06-15 13:26:23.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5553','205','1','1767','0.99','2005-06-16 18:01:36.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5554','205','2','2237','5.99','2005-06-18 04:17:44.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5555','205','1','3601','7.99','2005-07-06 05:20:25.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5556','205','2','4230','3.99','2005-07-07 12:46:47.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5557','205','2','4377','7.99','2005-07-07 20:28:57.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5558','205','1','4729','4.99','2005-07-08 12:59:40.000','2006-02-15 22:14:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5559','205','1','7736','2.99','2005-07-28 05:12:04.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5560','205','2','7976','7.99','2005-07-28 14:13:24.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5561','205','2','8896','4.99','2005-07-30 00:51:21.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5562','205','2','10086','4.99','2005-07-31 20:14:08.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5563','205','1','13935','2.99','2005-08-20 17:20:49.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5564','205','1','14338','0.99','2005-08-21 08:36:03.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5565','205','2','14391','4.99','2005-08-21 10:16:27.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5566','205','1','14442','2.99','2005-08-21 12:00:21.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5567','205','2','14490','6.99','2005-08-21 13:54:15.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5568','205','2','15418','0.99','2005-08-22 23:54:14.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5569','206','2','1872','0.99','2005-06-17 02:27:03.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5570','206','2','2477','5.99','2005-06-18 20:58:46.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5571','206','2','3012','4.99','2005-06-20 10:43:13.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5572','206','1','3533','5.99','2005-07-06 01:26:44.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5573','206','2','3831','0.99','2005-07-06 16:06:35.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5574','206','1','3847','4.99','2005-07-06 16:44:41.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5575','206','2','4068','4.99','2005-07-07 04:34:38.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5576','206','2','4107','4.99','2005-07-07 06:36:32.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5577','206','2','4823','4.99','2005-07-08 17:28:54.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5578','206','1','6139','3.99','2005-07-11 08:39:33.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5579','206','1','6420','6.99','2005-07-11 23:38:49.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5580','206','1','7222','4.99','2005-07-27 09:38:43.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5581','206','2','7541','4.99','2005-07-27 21:40:05.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5582','206','1','8217','5.99','2005-07-28 23:44:13.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5583','206','1','8549','3.99','2005-07-29 11:12:13.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5584','206','2','9474','2.99','2005-07-30 23:05:44.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5585','206','2','10930','3.99','2005-08-02 02:38:07.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5586','206','1','11022','2.99','2005-08-02 05:35:03.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5587','206','2','11634','2.99','2005-08-17 04:31:49.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5588','206','1','13128','4.99','2005-08-19 12:04:16.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5589','206','2','13232','2.99','2005-08-19 16:13:32.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5590','206','2','13263','10.99','2005-08-19 17:26:55.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5591','206','2','13550','9.99','2005-08-20 03:58:51.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5592','206','2','13696','0.99','2005-08-20 09:16:15.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5593','206','2','14695','0.99','2005-08-21 20:46:47.000','2006-02-15 22:14:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5594','206','2','15686','7.99','2005-08-23 09:42:21.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5595','206','1','15709','4.99','2005-08-23 10:36:00.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5596','207','1','39','0.99','2005-05-25 04:51:46.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5597','207','1','44','0.99','2005-05-25 05:53:23.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5598','207','1','659','0.99','2005-05-28 20:27:53.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5599','207','2','826','6.99','2005-05-29 21:56:15.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5600','207','2','896','3.99','2005-05-30 09:03:52.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5601','207','2','1144','3.99','2005-05-31 20:04:10.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5602','207','2','1945','3.99','2005-06-17 07:51:26.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5603','207','2','3584','2.99','2005-07-06 04:16:43.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5604','207','2','3687','9.99','2005-07-06 09:38:33.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5605','207','1','4018','2.99','2005-07-07 01:10:33.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5606','207','2','4713','5.99','2005-07-08 12:12:33.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5607','207','1','4816','0.99','2005-07-08 17:14:14.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5608','207','2','5007','0.99','2005-07-09 01:26:22.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5609','207','1','5258','0.99','2005-07-09 13:56:56.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5610','207','1','5259','4.99','2005-07-09 14:02:50.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5611','207','2','5939','0.99','2005-07-10 22:30:05.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5612','207','2','6465','5.99','2005-07-12 01:17:11.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5613','207','1','6537','0.99','2005-07-12 04:46:30.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5614','207','2','7306','5.99','2005-07-27 12:57:26.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5615','207','1','7540','5.99','2005-07-27 21:39:55.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5616','207','1','8800','5.99','2005-07-29 21:18:59.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5617','207','2','9652','2.99','2005-07-31 05:49:53.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5618','207','2','10234','3.99','2005-08-01 01:56:20.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5619','207','2','10300','0.99','2005-08-01 04:08:11.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5620','207','1','11112','2.99','2005-08-02 08:25:14.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5621','207','2','11260','0.99','2005-08-02 13:52:19.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5622','207','2','11286','5.99','2005-08-02 14:44:22.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5623','207','1','11724','6.99','2005-08-17 08:04:44.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5624','207','2','12108','6.99','2005-08-17 22:56:39.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5625','207','2','13655','2.99','2005-08-20 07:59:13.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5626','207','2','13809','8.99','2005-08-20 12:56:03.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5627','207','2','13912','9.99','2005-08-20 16:32:10.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5628','207','2','13954','3.99','2005-08-20 18:02:41.000','2006-02-15 22:14:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5629','207','1','15625','1.99','2005-08-23 07:25:29.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5630','208','1','100','4.99','2005-05-25 16:50:28.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5631','208','1','1805','0.99','2005-06-16 20:36:00.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5632','208','1','1949','5.99','2005-06-17 08:19:22.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5633','208','2','2592','0.99','2005-06-19 05:36:54.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5634','208','1','2695','2.99','2005-06-19 13:25:53.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5635','208','2','2907','0.99','2005-06-20 03:15:09.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5636','208','2','3811','2.99','2005-07-06 15:20:37.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5637','208','1','4354','5.99','2005-07-07 19:21:02.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5638','208','2','4985','4.99','2005-07-09 00:36:02.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5639','208','1','5117','2.99','2005-07-09 07:11:22.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5640','208','2','5693','2.99','2005-07-10 09:35:43.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5641','208','2','6306','6.99','2005-07-11 18:04:26.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5642','208','1','6767','1.99','2005-07-12 15:46:55.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5643','208','1','7315','0.99','2005-07-27 13:14:56.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5644','208','1','7861','2.99','2005-07-28 10:02:01.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5645','208','2','7984','2.99','2005-07-28 14:27:51.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5646','208','1','8742','1.99','2005-07-29 18:56:12.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5647','208','2','9298','3.99','2005-07-30 16:27:53.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5648','208','1','9838','4.99','2005-07-31 12:18:49.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5649','208','2','10762','4.99','2005-08-01 20:28:39.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5650','208','2','10784','5.99','2005-08-01 21:24:28.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5651','208','2','11442','2.99','2005-08-02 20:26:19.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5652','208','2','11805','6.99','2005-08-17 11:48:47.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5653','208','2','11819','0.99','2005-08-17 12:25:17.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5654','208','1','13719','5.98','2006-02-14 15:16:03.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5655','208','1','15717','0','2006-02-14 15:16:03.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5656','209','2','340','9.99','2005-05-27 03:55:25.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5657','209','1','471','0.99','2005-05-27 21:32:42.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5658','209','2','1143','2.99','2005-05-31 19:53:03.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5659','209','2','1201','4.99','2005-06-15 02:06:28.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5660','209','1','1657','4.99','2005-06-16 10:06:49.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5661','209','1','2650','4.99','2005-06-19 10:21:45.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5662','209','1','2796','4.99','2005-06-19 19:00:37.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5663','209','2','3504','2.99','2005-07-06 00:18:29.000','2006-02-15 22:14:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5664','209','2','4071','5.99','2005-07-07 04:37:26.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5665','209','1','4309','5.99','2005-07-07 17:29:41.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5666','209','2','4810','4.99','2005-07-08 17:04:06.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5667','209','1','4907','4.99','2005-07-08 21:01:41.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5668','209','2','5170','3.99','2005-07-09 09:24:19.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5669','209','2','5219','5.99','2005-07-09 11:57:55.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5670','209','1','6210','0.99','2005-07-11 12:36:43.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5671','209','1','7116','6.99','2005-07-27 05:46:43.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5672','209','1','7269','3.99','2005-07-27 11:23:47.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5673','209','1','7505','4.99','2005-07-27 20:28:03.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5674','209','2','7752','5.99','2005-07-28 06:01:00.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5675','209','1','8067','4.99','2005-07-28 17:20:17.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5676','209','2','8759','8.99','2005-07-29 19:22:37.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5677','209','2','8816','2.99','2005-07-29 21:53:00.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5678','209','2','9054','6.99','2005-07-30 07:11:44.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5679','209','1','9923','0.99','2005-07-31 15:00:15.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5680','209','2','10554','2.99','2005-08-01 12:56:19.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5681','209','1','10646','4.99','2005-08-01 15:57:55.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5682','209','2','10811','6.99','2005-08-01 22:41:15.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5683','209','1','12025','0.99','2005-08-17 19:59:06.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5684','209','1','13796','8.99','2005-08-20 12:32:32.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5685','209','2','14631','6.99','2005-08-21 18:47:49.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5686','209','1','15254','2.99','2005-08-22 18:13:07.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5687','209','2','15510','9.99','2005-08-23 02:51:27.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5688','210','1','953','2.99','2005-05-30 16:34:02.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5689','210','2','1177','2.99','2005-06-15 00:33:04.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5690','210','2','2856','0.99','2005-06-19 23:13:04.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5691','210','2','3563','4.99','2005-07-06 02:57:01.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5692','210','2','3884','4.99','2005-07-06 18:41:33.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5693','210','2','4270','0.99','2005-07-07 14:38:41.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5694','210','1','4306','2.99','2005-07-07 17:12:32.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5695','210','1','4334','0.99','2005-07-07 18:32:04.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5696','210','2','4388','7.99','2005-07-07 20:58:03.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5697','210','1','4620','5.99','2005-07-08 08:01:44.000','2006-02-15 22:14:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5698','210','1','4871','6.99','2005-07-08 19:19:52.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5699','210','1','4893','4.99','2005-07-08 20:19:55.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5700','210','1','4989','3.99','2005-07-09 00:46:56.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5701','210','2','5957','0.99','2005-07-10 23:24:02.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5702','210','2','6227','4.99','2005-07-11 13:56:46.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5703','210','1','6564','1.99','2005-07-12 05:34:44.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5704','210','1','7743','5.99','2005-07-28 05:36:13.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5705','210','2','7909','0.99','2005-07-28 11:38:08.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5706','210','2','8336','8.99','2005-07-29 04:20:42.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5707','210','2','8678','3.99','2005-07-29 16:04:00.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5708','210','2','8738','0.99','2005-07-29 18:32:47.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5709','210','2','10890','4.99','2005-08-02 00:58:46.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5710','210','2','12410','8.99','2005-08-18 09:45:33.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5711','210','1','12879','4.99','2005-08-19 03:22:55.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5712','210','2','12909','2.99','2005-08-19 04:20:25.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5713','210','2','12986','4.99','2005-08-19 07:09:36.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5714','210','1','14181','7.99','2005-08-21 03:16:30.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5715','210','2','14639','6.99','2005-08-21 19:01:39.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5716','210','2','14876','4.99','2005-08-22 03:39:29.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5717','210','2','15672','0.99','2005-08-23 09:09:18.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5718','210','2','15942','8.99','2005-08-23 18:48:40.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5719','211','1','238','4.99','2005-05-26 12:30:22.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5720','211','2','2812','8.99','2005-06-19 19:58:16.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5721','211','2','3437','6.99','2005-06-21 19:20:17.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5722','211','2','3937','8.99','2005-07-06 21:15:38.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5723','211','2','4060','2.99','2005-07-07 04:10:13.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5724','211','2','4441','5.99','2005-07-07 23:04:23.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5725','211','2','4479','2.99','2005-07-08 00:52:35.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5726','211','1','4857','2.99','2005-07-08 18:52:07.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5727','211','1','5668','5.99','2005-07-10 08:11:05.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5728','211','2','5699','3.99','2005-07-10 09:48:04.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5729','211','2','5785','4.99','2005-07-10 14:06:03.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5730','211','2','6438','0.99','2005-07-12 00:23:01.000','2006-02-15 22:14:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5731','211','1','6628','4.99','2005-07-12 09:18:08.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5732','211','1','6722','1.99','2005-07-12 13:44:03.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5733','211','2','7484','0.99','2005-07-27 19:28:17.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5734','211','1','7975','2.99','2005-07-28 14:12:47.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5735','211','2','8961','6.99','2005-07-30 03:43:35.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5736','211','1','9111','3.99','2005-07-30 09:05:44.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5737','211','1','9953','0.99','2005-07-31 15:56:35.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5738','211','1','10445','2.99','2005-08-01 09:02:15.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5739','211','2','10928','4.99','2005-08-02 02:34:12.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5740','211','2','11076','8.99','2005-08-02 07:24:47.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5741','211','2','11963','3.99','2005-08-17 17:35:47.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5742','211','2','12311','0.99','2005-08-18 06:07:00.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5743','211','2','12565','4.99','2005-08-18 15:12:17.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5744','211','2','12570','5.99','2005-08-18 15:23:31.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5745','211','2','13942','2.99','2005-08-20 17:30:52.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5746','211','1','13979','2.99','2005-08-20 19:03:49.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5747','211','2','14782','0.99','2005-08-22 00:17:20.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5748','211','2','14812','1.99','2005-08-22 01:10:32.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5749','211','1','15404','7.99','2005-08-22 23:19:44.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5750','211','2','15538','6.99','2005-08-23 04:07:37.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5751','211','2','15670','5.99','2005-08-23 09:07:11.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5752','211','2','12746','4.99','2006-02-14 15:16:03.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5753','212','1','1356','0.99','2005-06-15 13:17:01.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5754','212','2','1379','0.99','2005-06-15 15:05:10.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5755','212','1','1637','2.99','2005-06-16 08:29:58.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5756','212','2','2739','9.99','2005-06-19 15:58:38.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5757','212','2','4708','10.99','2005-07-08 11:59:19.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5758','212','2','4798','3.99','2005-07-08 16:45:16.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5759','212','2','4916','6.99','2005-07-08 21:32:17.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5760','212','1','5115','6.99','2005-07-09 07:07:18.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5761','212','2','7828','2.99','2005-07-28 08:40:46.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5762','212','2','8000','4.99','2005-07-28 15:10:25.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5763','212','1','8940','3.99','2005-07-30 02:57:26.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5764','212','2','10273','4.99','2005-08-01 03:14:47.000','2006-02-15 22:14:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5765','212','2','10567','0.99','2005-08-01 13:16:01.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5766','212','1','12156','7.99','2005-08-18 00:27:33.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5767','212','2','12467','0.99','2005-08-18 11:40:09.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5768','212','2','12562','3.99','2005-08-18 15:00:03.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5769','212','1','14563','2.99','2005-08-21 16:23:53.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5770','212','2','14681','5.99','2005-08-21 20:25:13.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5771','212','1','15872','4.99','2005-08-23 16:27:24.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5772','212','2','15920','2.99','2005-08-23 18:05:10.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5773','213','2','385','0.99','2005-05-27 10:23:25.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5774','213','1','1489','0.99','2005-06-15 21:41:38.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5775','213','2','1936','4.99','2005-06-17 07:15:41.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5776','213','1','2322','5.99','2005-06-18 09:44:21.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5777','213','1','2509','0.99','2005-06-18 23:44:08.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5778','213','2','2569','6.99','2005-06-19 04:19:04.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5779','213','1','2889','4.99','2005-06-20 01:54:08.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5780','213','2','2946','4.99','2005-06-20 05:50:40.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5781','213','1','3252','2.99','2005-06-21 03:25:26.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5782','213','1','3313','2.99','2005-06-21 08:11:18.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5783','213','2','3989','4.99','2005-07-06 23:30:54.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5784','213','2','4236','4.99','2005-07-07 13:12:07.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5785','213','1','4655','8.99','2005-07-08 09:49:22.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5786','213','2','5159','4.99','2005-07-09 08:55:52.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5787','213','1','5431','0.99','2005-07-09 21:21:11.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5788','213','2','6725','2.99','2005-07-12 13:47:17.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5789','213','2','7528','0.99','2005-07-27 21:15:25.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5790','213','2','8444','2.99','2005-07-29 07:36:13.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5791','213','2','8542','4.99','2005-07-29 11:01:50.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5792','213','2','9150','6.99','2005-07-30 10:49:32.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5793','213','2','9340','2.99','2005-07-30 18:07:16.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5794','213','1','9477','4.99','2005-07-30 23:07:22.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5795','213','1','10449','2.99','2005-08-01 09:09:59.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5796','213','2','11778','3.99','2005-08-17 10:31:40.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5797','213','1','13354','4.99','2005-08-19 20:55:23.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5798','213','2','13426','0.99','2005-08-19 23:15:00.000','2006-02-15 22:14:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5799','213','1','14744','6.99','2005-08-21 22:45:21.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5800','213','2','14374','2.99','2006-02-14 15:16:03.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5801','214','1','242','1.99','2005-05-26 13:05:08.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5802','214','1','278','3.99','2005-05-26 17:40:58.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5803','214','1','1076','2.99','2005-05-31 10:14:31.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5804','214','2','1093','2.99','2005-05-31 12:32:26.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5805','214','2','1112','0.99','2005-05-31 15:51:39.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5806','214','2','1275','4.99','2005-06-15 07:55:43.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5807','214','2','2085','2.99','2005-06-17 17:30:56.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5808','214','2','2868','2.99','2005-06-20 00:08:58.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5809','214','2','4211','0.99','2005-07-07 11:50:41.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5810','214','1','4783','3.99','2005-07-08 16:09:24.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5811','214','2','4984','3.99','2005-07-09 00:35:31.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5812','214','2','5172','2.99','2005-07-09 09:31:27.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5813','214','1','6602','7.99','2005-07-12 07:50:24.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5814','214','2','7417','4.99','2005-07-27 16:58:33.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5815','214','2','7826','5.99','2005-07-28 08:35:51.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5816','214','1','8663','4.99','2005-07-29 15:33:18.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5817','214','1','10563','3.99','2005-08-01 13:06:03.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5818','214','2','10749','4.99','2005-08-01 20:02:01.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5819','214','2','11450','2.99','2005-08-02 20:45:54.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5820','214','2','11474','4.99','2005-08-02 21:53:08.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5821','214','2','12463','4.99','2005-08-18 11:31:34.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5822','214','2','13138','2.99','2005-08-19 12:30:01.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5823','214','2','13350','9.99','2005-08-19 20:44:00.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5824','214','1','13409','2.99','2005-08-19 22:36:26.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5825','214','1','13565','0.99','2005-08-20 04:38:52.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5826','214','1','13726','0.99','2005-08-20 10:08:40.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5827','214','1','13864','4.99','2005-08-20 14:59:55.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5828','214','2','14347','4.99','2005-08-21 08:42:31.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5829','214','1','14567','0.99','2005-08-21 16:27:25.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5830','214','2','15639','2.99','2005-08-23 08:03:25.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5831','214','2','15645','2.99','2006-02-14 15:16:03.000','2006-02-15 22:14:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5832','215','1','711','4.99','2005-05-29 03:49:03.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5833','215','2','1080','4.99','2005-05-31 10:55:26.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5834','215','2','1376','4.99','2005-06-15 14:59:06.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5835','215','2','1599','4.99','2005-06-16 06:03:33.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5836','215','2','1845','4.99','2005-06-16 23:56:11.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5837','215','2','2006','2.99','2005-06-17 11:47:03.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5838','215','2','2918','2.99','2005-06-20 04:09:04.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5839','215','1','3143','2.99','2005-06-20 20:01:52.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5840','215','2','4940','8.99','2005-07-08 22:36:06.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5841','215','1','5886','2.99','2005-07-10 19:36:25.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5842','215','2','5967','8.99','2005-07-11 00:02:19.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5843','215','1','7180','1.99','2005-07-27 08:14:34.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5844','215','2','9046','2.99','2005-07-30 06:46:55.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5845','215','1','9518','0.99','2005-07-31 00:43:26.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5846','215','2','9611','4.99','2005-07-31 03:54:43.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5847','215','1','11729','2.99','2005-08-17 08:14:41.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5848','215','2','12285','2.99','2005-08-18 04:56:43.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5849','215','1','12380','1.99','2005-08-18 08:27:28.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5850','215','2','13085','0.99','2005-08-19 10:28:22.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5851','215','2','14126','0.99','2005-08-21 01:32:17.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5852','215','2','14817','4.99','2005-08-22 01:17:16.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5853','215','1','15583','2.99','2005-08-23 05:47:55.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5854','215','2','15610','2.99','2005-08-23 06:56:15.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5855','215','2','15799','2.99','2005-08-23 14:23:23.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5856','215','1','15843','0.99','2005-08-23 15:37:31.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5857','215','2','15862','0.99','2006-02-14 15:16:03.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5858','216','1','997','4.99','2005-05-31 00:08:25.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5859','216','2','1461','6.99','2005-06-15 20:32:08.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5860','216','1','1664','0.99','2005-06-16 10:15:20.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5861','216','1','1672','3.99','2005-06-16 10:37:34.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5862','216','2','2351','0.99','2005-06-18 12:27:57.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5863','216','1','3432','2.99','2005-06-21 19:02:03.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5864','216','2','4161','2.99','2005-07-07 09:15:11.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5865','216','1','6008','6.99','2005-07-11 01:51:29.000','2006-02-15 22:14:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5866','216','2','6349','7.99','2005-07-11 20:25:05.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5867','216','1','8068','4.99','2005-07-28 17:22:28.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5868','216','2','8859','8.99','2005-07-29 23:44:43.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5869','216','1','9096','0.99','2005-07-30 08:39:23.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5870','216','1','10506','4.99','2005-08-01 11:16:05.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5871','216','1','11005','0.99','2005-08-02 05:05:23.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5872','216','2','11621','7.99','2005-08-17 04:13:45.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5873','216','2','13424','0.99','2005-08-19 23:10:09.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5874','216','2','14638','2.99','2005-08-21 19:01:36.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5875','216','2','14726','4.99','2005-08-21 22:08:52.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5876','216','1','15192','4.99','2005-08-22 16:06:23.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5877','216','2','15199','2.99','2005-08-22 16:17:49.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5878','216','2','15934','4.99','2005-08-23 18:40:41.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5879','216','1','12970','5.98','2006-02-14 15:16:03.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5880','216','1','11676','0','2006-02-14 15:16:03.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5881','217','2','828','2.99','2005-05-29 22:14:55.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5882','217','2','1141','8.99','2005-05-31 19:42:02.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5883','217','1','1322','2.99','2005-06-15 10:55:09.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5884','217','1','2076','6.99','2005-06-17 16:43:47.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5885','217','1','2842','4.99','2005-06-19 22:34:20.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5886','217','2','5576','2.99','2005-07-10 03:57:05.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5887','217','2','5762','3.99','2005-07-10 12:48:01.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5888','217','2','6570','4.99','2005-07-12 05:50:31.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5889','217','2','7104','2.99','2005-07-27 05:15:25.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5890','217','2','8332','4.99','2005-07-29 04:16:00.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5891','217','1','9159','0.99','2005-07-30 11:16:37.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5892','217','2','9317','2.99','2005-07-30 17:13:37.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5893','217','2','9632','6.99','2005-07-31 05:02:23.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5894','217','2','9745','2.99','2005-07-31 09:16:14.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5895','217','1','10581','5.99','2005-08-01 13:52:30.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5896','217','1','10836','6.99','2005-08-01 23:29:58.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5897','217','1','11347','2.99','2005-08-02 17:18:07.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5898','217','1','11649','2.99','2005-08-17 04:59:26.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5899','217','1','11958','4.99','2005-08-17 17:23:20.000','2006-02-15 22:14:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5900','217','2','12210','4.99','2005-08-18 02:27:29.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5901','217','1','12871','4.99','2005-08-19 02:55:36.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5902','217','2','15116','0.99','2005-08-22 12:35:40.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5903','217','2','15277','2.99','2005-08-22 19:02:48.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5904','218','1','1459','2.99','2005-06-15 20:25:53.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5905','218','1','2262','0.99','2005-06-18 05:49:46.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5906','218','1','2267','0.99','2005-06-18 06:10:23.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5907','218','1','4898','6.99','2005-07-08 20:31:43.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5908','218','1','5226','0.99','2005-07-09 12:10:44.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5909','218','2','5737','0.99','2005-07-10 11:50:04.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5910','218','2','7090','4.99','2005-07-27 04:43:53.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5911','218','1','7236','8.99','2005-07-27 10:09:39.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5912','218','2','9018','6.99','2005-07-30 05:28:40.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5913','218','2','9902','6.99','2005-07-31 14:24:33.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5914','218','1','10114','0.99','2005-07-31 21:12:58.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5915','218','1','11654','2.99','2005-08-17 05:06:19.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5916','218','2','12481','2.99','2005-08-18 12:31:34.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5917','218','1','12974','0.99','2005-08-19 06:51:02.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5918','218','2','13708','5.99','2005-08-20 09:34:07.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5919','218','2','13947','5.99','2005-08-20 17:46:06.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5920','218','2','14848','4.99','2005-08-22 02:14:19.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5921','218','2','15575','0.99','2005-08-23 05:30:19.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5922','219','1','414','0.99','2005-05-27 14:48:20.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5923','219','2','2417','3.99','2005-06-18 17:12:01.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5924','219','2','2580','0.99','2005-06-19 04:44:30.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5925','219','2','4678','0.99','2005-07-08 10:30:40.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5926','219','2','4910','7.99','2005-07-08 21:13:56.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5927','219','2','5123','0.99','2005-07-09 07:20:30.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5928','219','2','5416','4.99','2005-07-09 20:33:50.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5929','219','2','5475','4.99','2005-07-09 23:31:38.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5930','219','2','5739','7.99','2005-07-10 11:51:50.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5931','219','2','6172','4.99','2005-07-11 10:32:09.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5932','219','1','6209','2.99','2005-07-11 12:36:05.000','2006-02-15 22:14:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5933','219','2','6501','1.99','2005-07-12 03:11:55.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5934','219','2','7335','2.99','2005-07-27 14:06:50.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5935','219','1','7726','5.99','2005-07-28 04:52:19.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5936','219','1','8430','0.99','2005-07-29 07:12:17.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5937','219','2','8536','4.99','2005-07-29 10:37:23.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5938','219','1','8652','6.99','2005-07-29 15:02:54.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5939','219','1','9712','4.99','2005-07-31 08:13:11.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5940','219','1','11328','2.99','2005-08-02 16:42:38.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5941','219','2','11791','0.99','2005-08-17 11:01:11.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5942','219','1','13765','4.99','2005-08-20 11:39:00.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5943','219','2','14029','0.99','2005-08-20 21:23:11.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5944','219','1','14588','5.99','2005-08-21 17:25:53.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5945','219','1','14688','4.99','2005-08-21 20:32:37.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5946','219','1','15283','4.99','2005-08-22 19:16:04.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5947','219','1','11577','4.99','2006-02-14 15:16:03.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5948','220','2','409','0.99','2005-05-27 14:10:58.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5949','220','1','480','3.99','2005-05-27 22:47:39.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5950','220','1','1832','0.99','2005-06-16 22:35:20.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5951','220','2','4918','2.99','2005-07-08 21:37:31.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5952','220','2','5613','2.99','2005-07-10 05:15:43.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5953','220','2','5847','2.99','2005-07-10 17:27:42.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5954','220','2','5859','0.99','2005-07-10 18:02:02.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5955','220','2','6412','0.99','2005-07-11 23:19:21.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5956','220','2','6832','8.99','2005-07-12 18:51:41.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5957','220','2','7750','9.99','2005-07-28 05:55:30.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5958','220','1','8065','2.99','2005-07-28 17:15:48.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5959','220','1','8398','4.99','2005-07-29 06:12:40.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5960','220','2','9384','7.99','2005-07-30 19:25:35.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5961','220','2','9455','10.99','2005-07-30 22:20:29.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5962','220','1','10099','2.99','2005-07-31 20:47:14.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5963','220','2','10778','4.99','2005-08-01 21:11:39.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5964','220','1','10948','4.99','2005-08-02 03:23:23.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5965','220','1','11037','0.99','2005-08-02 05:58:12.000','2006-02-15 22:14:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5966','220','1','11153','3.99','2005-08-02 09:54:19.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5967','220','1','11622','4.99','2005-08-17 04:15:46.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5968','220','2','11947','2.99','2005-08-17 17:08:13.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5969','220','1','12407','4.99','2005-08-18 09:39:26.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5970','220','1','12896','4.99','2005-08-19 03:52:44.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5971','220','2','13123','2.99','2005-08-19 11:55:13.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5972','220','1','13281','2.99','2005-08-19 18:07:47.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5973','220','2','14016','4.99','2005-08-20 20:52:03.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5974','220','2','15706','4.99','2005-08-23 10:32:52.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5975','221','2','226','4.99','2005-05-26 10:44:04.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5976','221','1','1369','0.99','2005-06-15 14:29:14.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5977','221','1','2331','2.99','2005-06-18 10:50:09.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5978','221','2','2473','2.99','2005-06-18 20:42:45.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5979','221','1','2660','10.99','2005-06-19 10:50:02.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5980','221','1','3200','5.99','2005-06-21 00:22:47.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5981','221','1','4293','4.99','2005-07-07 15:53:47.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5982','221','2','4649','4.99','2005-07-08 09:32:05.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5983','221','1','4693','6.99','2005-07-08 11:07:36.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5984','221','1','5058','5.99','2005-07-09 04:20:35.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5985','221','2','5920','5.99','2005-07-10 21:33:58.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5986','221','1','7101','2.99','2005-07-27 05:06:34.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5987','221','1','7129','0.99','2005-07-27 06:18:01.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5988','221','2','7531','8.99','2005-07-27 21:19:34.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5989','221','2','8486','0.99','2005-07-29 08:53:38.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5990','221','1','9320','6.99','2005-07-30 17:16:39.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5991','221','1','9453','7.99','2005-07-30 22:20:04.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5992','221','2','9853','0.99','2005-07-31 12:58:20.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5993','221','2','11680','4.99','2005-08-17 06:12:27.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5994','221','1','11693','4.99','2005-08-17 06:56:56.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5995','221','1','11802','2.99','2005-08-17 11:32:51.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5996','221','1','12324','0.99','2005-08-18 06:38:20.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5997','221','2','12620','3.99','2005-08-18 17:26:38.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5998','221','2','13434','2.99','2005-08-19 23:34:26.000','2006-02-15 22:14:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('5999','221','2','14322','5.99','2005-08-21 08:06:30.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6000','221','2','14371','0.99','2005-08-21 09:37:16.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6001','221','1','14419','7.99','2005-08-21 11:15:46.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6002','221','1','15125','8.99','2005-08-22 12:53:22.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6003','222','1','5','6.99','2005-05-24 23:05:21.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6004','222','1','134','4.99','2005-05-25 21:48:41.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6005','222','2','416','0.99','2005-05-27 15:02:10.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6006','222','2','809','3.99','2005-05-29 19:10:20.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6007','222','2','1006','2.99','2005-05-31 00:57:08.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6008','222','1','1368','8.99','2005-06-15 14:27:47.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6009','222','2','2603','6.99','2005-06-19 06:21:25.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6010','222','2','5209','8.99','2005-07-09 11:22:39.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6011','222','1','5266','3.99','2005-07-09 14:17:40.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6012','222','2','5592','6.99','2005-07-10 04:26:13.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6013','222','2','5635','5.99','2005-07-10 06:28:39.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6014','222','2','6129','2.99','2005-07-11 08:15:09.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6015','222','1','6497','0.99','2005-07-12 03:04:29.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6016','222','2','7786','0.99','2005-07-28 07:18:26.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6017','222','1','8300','1.99','2005-07-29 02:57:59.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6018','222','2','8597','6.99','2005-07-29 12:55:55.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6019','222','1','8787','4.99','2005-07-29 20:43:49.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6020','222','2','10043','1.99','2005-07-31 19:02:07.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6021','222','2','12179','2.99','2005-08-18 01:21:21.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6022','222','1','13477','2.99','2005-08-20 01:07:00.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6023','222','2','14350','2.99','2005-08-21 08:58:38.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6024','223','2','524','2.99','2005-05-28 03:57:28.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6025','223','2','1839','5.99','2005-06-16 23:22:22.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6026','223','1','2334','4.99','2005-06-18 10:56:24.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6027','223','1','3513','5.99','2005-07-06 00:45:57.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6028','223','1','3705','0.99','2005-07-06 10:17:59.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6029','223','1','4874','4.99','2005-07-08 19:23:38.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6030','223','2','5996','2.99','2005-07-11 01:18:33.000','2006-02-15 22:14:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6031','223','2','7085','5.99','2005-07-27 04:35:44.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6032','223','2','8362','3.99','2005-07-29 05:09:11.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6033','223','2','10053','7.99','2005-07-31 19:15:39.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6034','223','2','11040','4.99','2005-08-02 06:03:22.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6035','223','1','12927','5.99','2005-08-19 05:02:46.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6036','223','1','13576','0.99','2005-08-20 05:19:56.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6037','223','2','14496','4.99','2005-08-21 14:07:35.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6038','223','1','15257','7.99','2005-08-22 18:21:04.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6039','223','2','15546','5.99','2005-08-23 04:20:38.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6040','223','1','15662','2.99','2005-08-23 08:52:50.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6041','224','1','1424','7.99','2005-06-15 18:08:14.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6042','224','1','2277','2.99','2005-06-18 06:35:03.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6043','224','2','3282','4.99','2005-06-21 06:18:42.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6044','224','1','4118','2.99','2005-07-07 07:03:30.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6045','224','2','4411','3.99','2005-07-07 21:54:58.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6046','224','1','4697','2.99','2005-07-08 11:19:14.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6047','224','1','6031','4.99','2005-07-11 02:42:14.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6048','224','2','6999','2.99','2005-07-27 01:21:19.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6049','224','2','8255','0.99','2005-07-29 01:02:30.000','2006-02-15 22:14:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6050','224','2','8439','2.99','2005-07-29 07:28:43.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6051','224','1','8605','4.99','2005-07-29 13:13:34.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6052','224','1','9181','0.99','2005-07-30 12:05:58.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6053','224','1','11816','0.99','2005-08-17 12:14:16.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6054','224','1','12492','4.99','2005-08-18 12:49:04.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6055','224','1','12969','2.99','2005-08-19 06:38:59.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6056','224','2','13075','4.99','2005-08-19 10:10:10.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6057','224','2','14099','0.99','2005-08-21 00:31:03.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6058','224','2','14271','5.99','2005-08-21 06:23:29.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6059','224','2','14468','5.99','2005-08-21 13:07:10.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6060','224','2','14880','2.99','2005-08-22 03:44:36.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6061','224','1','15225','0.99','2005-08-22 17:18:32.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6062','224','1','15952','1.99','2005-08-23 19:11:29.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6063','225','1','812','4.99','2005-05-29 20:00:30.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6064','225','1','963','3.99','2005-05-30 18:52:53.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6065','225','2','2226','7.99','2005-06-18 03:39:56.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6066','225','2','3574','4.99','2005-07-06 03:36:01.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6067','225','1','4345','7.99','2005-07-07 18:52:57.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6068','225','1','4824','7.99','2005-07-08 17:37:39.000','2006-02-15 22:14:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6069','225','2','4955','2.99','2005-07-08 23:16:21.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6070','225','1','5067','4.99','2005-07-09 04:52:35.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6071','225','1','6159','2.99','2005-07-11 09:55:34.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6072','225','1','6317','2.99','2005-07-11 18:47:41.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6073','225','2','6350','2.99','2005-07-11 20:30:15.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6074','225','1','6526','3.99','2005-07-12 04:21:20.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6075','225','2','6532','2.99','2005-07-12 04:38:32.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6076','225','2','7347','4.99','2005-07-27 14:31:24.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6077','225','1','7524','6.99','2005-07-27 21:11:44.000','2006-02-15 22:14:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6078','225','1','8054','7.99','2005-07-28 17:02:18.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6079','225','2','8110','4.99','2005-07-28 19:07:45.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6080','225','1','9980','4.99','2005-07-31 17:02:00.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6081','225','2','9993','2.99','2005-07-31 17:30:20.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6082','225','2','10138','2.99','2005-07-31 22:02:09.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6083','225','1','10793','2.99','2005-08-01 21:48:03.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6084','225','2','11333','1.99','2005-08-02 16:53:00.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6085','225','2','11384','0.99','2005-08-02 18:23:01.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6086','225','2','11395','5.99','2005-08-02 18:47:44.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6087','225','2','11437','4.99','2005-08-02 20:20:06.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6088','225','2','14444','5.99','2005-08-21 12:07:25.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6089','226','2','3414','2.99','2005-06-21 16:58:50.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6090','226','1','3466','4.99','2005-06-21 22:13:33.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6091','226','1','3721','4.99','2005-07-06 11:10:09.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6092','226','1','4324','4.99','2005-07-07 17:57:56.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6093','226','1','5282','2.99','2005-07-09 15:01:23.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6094','226','1','5419','2.99','2005-07-09 20:47:36.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6095','226','1','6712','9.99','2005-07-12 13:24:47.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6096','226','2','7288','5.99','2005-07-27 12:24:59.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6097','226','1','7329','3.99','2005-07-27 13:55:34.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6098','226','2','8600','2.99','2005-07-29 13:01:19.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6099','226','1','8627','2.99','2005-07-29 14:05:12.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6100','226','1','12172','1.99','2005-08-18 01:07:00.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6101','226','1','14491','6.99','2005-08-21 13:55:39.000','2006-02-15 22:14:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6102','226','1','14708','4.99','2005-08-21 21:07:23.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6103','226','1','14712','0.99','2005-08-21 21:22:56.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6104','226','2','14739','0.99','2005-08-21 22:33:22.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6105','226','2','14934','4.99','2005-08-22 05:47:15.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6106','226','2','15472','2.99','2005-08-23 01:39:05.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6107','226','1','15901','4.99','2005-08-23 17:19:17.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6108','226','1','15986','2.99','2005-08-23 20:20:37.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6109','226','1','16033','5.99','2005-08-23 22:06:15.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6110','227','1','111','4.99','2005-05-25 18:45:19.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6111','227','1','1023','3.99','2005-05-31 03:26:50.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6112','227','1','1679','2.99','2005-06-16 11:11:01.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6113','227','2','2155','1.99','2005-06-17 23:07:29.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6114','227','1','2164','6.99','2005-06-17 23:46:21.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6115','227','2','3065','0.99','2005-06-20 13:53:53.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6116','227','1','3576','5.99','2005-07-06 03:40:01.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6117','227','2','4340','2.99','2005-07-07 18:41:46.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6118','227','2','4459','4.99','2005-07-07 23:48:52.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6119','227','1','4680','2.99','2005-07-08 10:35:28.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6120','227','1','5046','3.99','2005-07-09 03:34:57.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6121','227','1','7132','7.99','2005-07-27 06:28:34.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6122','227','1','8219','2.99','2005-07-28 23:46:31.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6123','227','1','8234','0.99','2005-07-29 00:19:20.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6124','227','1','8384','0.99','2005-07-29 05:38:43.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6125','227','2','8417','4.99','2005-07-29 06:53:36.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6126','227','1','8936','2.99','2005-07-30 02:47:13.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6127','227','2','9521','2.99','2005-07-31 00:52:24.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6128','227','2','10999','3.99','2005-08-02 04:53:13.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6129','227','2','11892','0.99','2005-08-17 15:13:21.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6130','227','2','13379','4.99','2005-08-19 21:33:39.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6131','227','2','15406','0.99','2005-08-22 23:21:22.000','2006-02-15 22:14:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6132','227','2','15976','4.99','2005-08-23 20:07:08.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6133','227','2','13374','4.99','2006-02-14 15:16:03.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6134','228','2','492','4.99','2005-05-28 00:24:58.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6135','228','2','1070','0.99','2005-05-31 09:39:56.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6136','228','2','2284','3.99','2005-06-18 06:59:51.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6137','228','2','2863','2.99','2005-06-19 23:58:38.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6138','228','2','2934','2.99','2005-06-20 05:05:53.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6139','228','2','3433','3.99','2005-06-21 19:07:19.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6140','228','2','3538','0.99','2005-07-06 01:37:07.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6141','228','2','3710','8.99','2005-07-06 10:28:53.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6142','228','1','3715','6.99','2005-07-06 10:51:48.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6143','228','2','3796','0.99','2005-07-06 14:45:22.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6144','228','1','4217','3.99','2005-07-07 12:08:59.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6145','228','1','4636','4.99','2005-07-08 08:44:32.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6146','228','1','4909','0.99','2005-07-08 21:07:24.000','2006-02-15 22:14:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6147','228','1','5151','2.99','2005-07-09 08:31:03.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6148','228','1','5320','4.99','2005-07-09 16:23:32.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6149','228','2','5902','0.99','2005-07-10 20:31:24.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6150','228','2','6141','1.99','2005-07-11 08:52:16.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6151','228','1','6948','2.99','2005-07-26 23:43:49.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6152','228','2','7509','8.99','2005-07-27 20:37:19.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6153','228','1','7601','0.99','2005-07-27 23:48:15.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6154','228','1','8147','2.99','2005-07-28 20:37:56.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6155','228','1','10585','4.99','2005-08-01 14:00:42.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6156','228','1','12304','0.99','2005-08-18 05:44:29.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6157','228','2','12952','2.99','2005-08-19 06:00:52.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6158','228','2','13458','4.99','2005-08-20 00:35:30.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6159','228','2','12672','3.98','2006-02-14 15:16:03.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6160','228','1','15234','0','2006-02-14 15:16:03.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6161','229','1','2200','4.99','2005-06-18 01:59:16.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6162','229','1','3208','0.99','2005-06-21 00:50:03.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6163','229','1','3277','7.99','2005-06-21 05:36:37.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6164','229','2','3280','0.99','2005-06-21 06:08:12.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6165','229','2','3933','4.99','2005-07-06 21:06:37.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6166','229','2','4458','2.99','2005-07-07 23:47:47.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6167','229','1','4515','4.99','2005-07-08 02:42:03.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6168','229','2','4694','0.99','2005-07-08 11:07:37.000','2006-02-15 22:14:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6169','229','1','5623','2.99','2005-07-10 05:41:38.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6170','229','2','6155','4.99','2005-07-11 09:45:31.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6171','229','2','6578','4.99','2005-07-12 06:15:41.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6172','229','1','6880','2.99','2005-07-12 20:41:35.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6173','229','2','7305','0.99','2005-07-27 12:57:06.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6174','229','2','7308','5.99','2005-07-27 13:00:25.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6175','229','2','7629','0.99','2005-07-28 01:00:09.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6176','229','2','7640','7.99','2005-07-28 01:14:49.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6177','229','2','9913','3.99','2005-07-31 14:51:04.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6178','229','1','11521','4.99','2005-08-17 00:04:54.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6179','229','1','12866','2.99','2005-08-19 02:39:47.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6180','229','2','13306','0.99','2005-08-19 18:57:29.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6181','229','2','13431','4.99','2005-08-19 23:28:15.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6182','229','1','13679','5.99','2005-08-20 08:39:34.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6183','229','1','15740','4.99','2005-08-23 12:07:51.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6184','229','2','15912','2.99','2005-08-23 17:47:40.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6185','229','2','13295','0.99','2006-02-14 15:16:03.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6186','230','1','32','0.99','2005-05-25 04:06:21.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6187','230','1','1078','4.99','2005-05-31 10:28:33.000','2006-02-15 22:14:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6188','230','2','1468','3.99','2005-06-15 20:48:22.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6189','230','1','1744','4.99','2005-06-16 16:39:58.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6190','230','2','1793','0.99','2005-06-16 20:07:27.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6191','230','2','2450','8.99','2005-06-18 19:25:47.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6192','230','2','2675','0.99','2005-06-19 11:52:15.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6193','230','1','2777','0.99','2005-06-19 18:16:26.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6194','230','1','4509','3.99','2005-07-08 02:32:38.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6195','230','1','4935','0.99','2005-07-08 22:20:56.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6196','230','1','5045','4.99','2005-07-09 03:33:32.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6197','230','1','5061','0.99','2005-07-09 04:30:50.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6198','230','2','5269','2.99','2005-07-09 14:23:05.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6199','230','2','6126','4.99','2005-07-11 08:06:56.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6200','230','1','6251','2.99','2005-07-11 15:06:20.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6201','230','2','7333','4.99','2005-07-27 13:59:11.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6202','230','2','7390','4.99','2005-07-27 15:59:19.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6203','230','2','8032','4.99','2005-07-28 16:17:00.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6204','230','2','8653','0.99','2005-07-29 15:04:23.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6205','230','1','8815','2.99','2005-07-29 21:51:26.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6206','230','2','9778','3.99','2005-07-31 10:02:04.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6207','230','2','10050','3.99','2005-07-31 19:13:29.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6208','230','1','10057','9.99','2005-07-31 19:20:18.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6209','230','2','10874','2.99','2005-08-02 00:31:00.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6210','230','2','11148','5.99','2005-08-02 09:47:08.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6211','230','1','11552','5.99','2005-08-17 01:04:29.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6212','230','2','11914','2.99','2005-08-17 16:04:42.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6213','230','1','12079','1.99','2005-08-17 22:04:17.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6214','230','2','12523','7.99','2005-08-18 13:45:41.000','2006-02-15 22:14:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6215','230','2','12542','0.99','2005-08-18 14:21:11.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6216','230','2','14017','0.99','2005-08-20 20:55:32.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6217','230','1','14073','5.99','2005-08-20 23:12:57.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6218','230','1','14340','2.99','2005-08-21 08:38:21.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6219','231','1','329','5.99','2005-05-27 01:57:14.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6220','231','1','479','6.99','2005-05-27 22:39:10.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6221','231','1','512','8.99','2005-05-28 03:07:50.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6222','231','2','2423','0.99','2005-06-18 17:32:08.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6223','231','2','3561','9.99','2005-07-06 02:54:33.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6224','231','1','3839','2.99','2005-07-06 16:30:30.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6225','231','2','4289','0.99','2005-07-07 15:45:58.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6226','231','2','4969','0.99','2005-07-08 23:51:26.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6227','231','1','5096','2.99','2005-07-09 06:08:23.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6228','231','1','5560','5.99','2005-07-10 03:13:24.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6229','231','1','6862','0.99','2005-07-12 19:58:09.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6230','231','1','6877','1.99','2005-07-12 20:32:58.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6231','231','1','8556','0.99','2005-07-29 11:18:27.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6232','231','2','8949','5.99','2005-07-30 03:17:02.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6233','231','2','9711','2.99','2005-07-31 08:06:41.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6234','231','2','11113','2.99','2005-08-02 08:26:24.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6235','231','1','11202','7.99','2005-08-02 11:51:57.000','2006-02-15 22:14:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6236','231','1','11581','5.99','2005-08-17 02:03:02.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6237','231','1','12214','0.99','2005-08-18 02:34:22.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6238','231','2','12230','8.99','2005-08-18 03:11:04.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6239','231','1','12231','3.99','2005-08-18 03:11:44.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6240','231','2','13983','6.99','2005-08-20 19:08:32.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6241','231','1','14026','0.99','2005-08-20 21:21:08.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6242','231','1','14478','4.99','2005-08-21 13:33:28.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6243','231','2','14806','2.99','2005-08-22 00:53:08.000','2006-02-15 22:14:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6244','231','1','15389','3.99','2005-08-22 22:51:13.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6245','232','1','28','4.99','2005-05-25 03:42:37.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6246','232','1','805','3.99','2005-05-29 18:18:18.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6247','232','2','1619','0.99','2005-06-16 07:14:13.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6248','232','1','2833','8.99','2005-06-19 21:34:54.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6249','232','2','6234','5.99','2005-07-11 14:16:10.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6250','232','1','6309','2.99','2005-07-11 18:13:24.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6251','232','1','7123','5.99','2005-07-27 06:08:48.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6252','232','2','7653','4.99','2005-07-28 01:58:30.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6253','232','2','7707','0.99','2005-07-28 04:07:47.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6254','232','1','7749','2.99','2005-07-28 05:53:36.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6255','232','1','7990','2.99','2005-07-28 14:43:08.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6256','232','1','8306','2.99','2005-07-29 03:12:26.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6257','232','2','8401','4.99','2005-07-29 06:25:08.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6258','232','2','8655','4.99','2005-07-29 15:04:42.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6259','232','2','9270','0.99','2005-07-30 15:03:16.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6260','232','2','9330','10.99','2005-07-30 17:44:24.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6261','232','2','9365','2.99','2005-07-30 18:46:02.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6262','232','2','10157','2.99','2005-07-31 22:38:48.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6263','232','1','10539','6.99','2005-08-01 12:23:00.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6264','232','2','11861','0.99','2005-08-17 13:53:47.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6265','232','2','12853','2.99','2005-08-19 02:15:32.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6266','232','2','13707','2.99','2005-08-20 09:33:58.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6267','232','2','14527','0.99','2005-08-21 15:07:42.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6268','232','2','14857','0.99','2005-08-22 02:42:39.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6269','232','2','15553','2.99','2005-08-23 04:33:39.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6270','233','2','1992','2.99','2005-06-17 10:58:53.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6271','233','2','2244','2.99','2005-06-18 04:46:33.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6272','233','1','2424','2.99','2005-06-18 17:35:08.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6273','233','2','2443','4.99','2005-06-18 18:52:30.000','2006-02-15 22:14:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6274','233','1','3832','2.99','2005-07-06 16:12:23.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6275','233','1','4015','5.99','2005-07-07 00:59:46.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6276','233','1','4885','4.99','2005-07-08 19:51:17.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6277','233','2','5267','5.99','2005-07-09 14:21:10.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6278','233','1','5846','2.99','2005-07-10 17:25:24.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6279','233','1','6319','4.99','2005-07-11 18:50:45.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6280','233','1','6794','2.99','2005-07-12 16:38:23.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6281','233','1','7056','8.99','2005-07-27 03:46:27.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6282','233','2','7387','4.99','2005-07-27 15:54:19.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6283','233','2','8385','5.99','2005-07-29 05:39:16.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6284','233','2','8530','2.99','2005-07-29 10:26:14.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6285','233','2','8596','0.99','2005-07-29 12:48:54.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6286','233','1','9574','0.99','2005-07-31 02:49:20.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6287','233','1','10582','4.99','2005-08-01 13:54:22.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6288','233','1','12443','5.99','2005-08-18 10:50:59.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6289','233','2','14357','2.99','2005-08-21 09:13:09.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6290','233','2','15285','2.99','2005-08-22 19:17:24.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6291','233','1','15790','1.99','2005-08-23 14:01:07.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6292','233','2','15821','0.99','2005-08-23 15:03:58.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6293','234','2','1125','4.99','2005-05-31 17:23:44.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6294','234','2','1245','3.99','2005-06-15 05:09:01.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6295','234','2','1645','0.99','2005-06-16 09:10:06.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6296','234','1','1674','2.99','2005-06-16 10:57:00.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6297','234','2','1993','5.99','2005-06-17 10:59:24.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6298','234','1','2005','4.99','2005-06-17 11:44:54.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6299','234','2','2511','5.99','2005-06-18 23:45:30.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6300','234','2','3185','6.99','2005-06-20 22:58:01.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6301','234','2','3199','4.99','2005-06-21 00:12:40.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6302','234','2','4686','0.99','2005-07-08 10:53:39.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6303','234','1','4721','7.99','2005-07-08 12:39:31.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6304','234','2','10133','5.99','2005-07-31 21:55:07.000','2006-02-15 22:14:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6305','234','2','10541','0.99','2005-08-01 12:24:54.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6306','234','2','10580','6.99','2005-08-01 13:51:14.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6307','234','2','10968','7.99','2005-08-02 04:03:13.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6308','234','1','11050','4.99','2005-08-02 06:17:16.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6309','234','1','11073','0.99','2005-08-02 07:13:03.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6310','234','1','11481','3.99','2005-08-02 22:18:41.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6311','234','1','11882','3.99','2005-08-17 14:33:41.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6312','234','1','12226','0.99','2005-08-18 03:00:48.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6313','234','2','12863','4.99','2005-08-19 02:35:59.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6314','234','1','12921','5.99','2005-08-19 04:47:48.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6315','234','2','13349','2.99','2005-08-19 20:43:16.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6316','234','2','15037','5.99','2005-08-22 09:36:33.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6317','234','1','15129','2.99','2005-08-22 13:03:52.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6318','234','1','15778','0.99','2006-02-14 15:16:03.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6319','235','2','807','2.99','2005-05-29 18:50:50.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6320','235','1','1148','0.99','2005-05-31 20:38:40.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6321','235','1','1493','4.99','2005-06-15 21:50:32.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6322','235','2','1811','0.99','2005-06-16 21:06:20.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6323','235','2','3581','2.99','2005-07-06 03:57:35.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6324','235','1','3752','6.99','2005-07-06 12:30:12.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6325','235','1','3968','4.99','2005-07-06 22:47:09.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6326','235','2','4592','2.99','2005-07-08 06:31:28.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6327','235','1','5790','4.99','2005-07-10 14:15:21.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6328','235','1','6047','2.99','2005-07-11 03:27:01.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6329','235','2','6352','4.99','2005-07-11 20:34:13.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6330','235','2','6466','4.99','2005-07-12 01:21:03.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6331','235','1','8120','0.99','2005-07-28 19:24:24.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6332','235','2','8446','6.99','2005-07-29 07:38:10.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6333','235','2','8781','0.99','2005-07-29 20:20:16.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6334','235','1','9019','5.99','2005-07-30 05:28:53.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6335','235','2','9519','6.99','2005-07-31 00:45:57.000','2006-02-15 22:14:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6336','235','1','9587','3.99','2005-07-31 03:10:30.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6337','235','2','10155','0.99','2005-07-31 22:31:43.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6338','235','2','12332','2.99','2005-08-18 06:51:05.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6339','235','1','12502','4.99','2005-08-18 13:16:31.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6340','235','2','13070','0.99','2005-08-19 09:56:23.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6341','235','1','13469','0.99','2005-08-20 00:59:36.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6342','235','2','14749','3.99','2005-08-21 23:08:33.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6343','235','1','15034','6.99','2005-08-22 09:33:08.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6344','236','2','262','2.99','2005-05-26 15:46:56.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6345','236','2','344','2.99','2005-05-27 04:30:22.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6346','236','1','1032','2.99','2005-05-31 04:28:43.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6347','236','1','1262','0.99','2005-06-15 06:54:53.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6348','236','2','1308','5.99','2005-06-15 10:07:48.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6349','236','2','2139','8.99','2005-06-17 21:29:34.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6350','236','2','2311','6.99','2005-06-18 08:51:29.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6351','236','1','2630','2.99','2005-06-19 08:47:21.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6352','236','2','2840','3.99','2005-06-19 22:17:44.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6353','236','1','3353','4.99','2005-06-21 11:29:23.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6354','236','2','3460','2.99','2005-06-21 21:46:56.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6355','236','1','3645','0.99','2005-07-06 07:22:09.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6356','236','2','3857','4.99','2005-07-06 17:07:54.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6357','236','2','4749','4.99','2005-07-08 14:05:58.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6358','236','1','4959','0.99','2005-07-08 23:22:23.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6359','236','1','5404','2.99','2005-07-09 20:10:43.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6360','236','1','5545','3.99','2005-07-10 02:50:29.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6361','236','2','5938','3.99','2005-07-10 22:17:42.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6362','236','2','6049','0.99','2005-07-11 03:32:32.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6363','236','2','6281','4.99','2005-07-11 16:38:16.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6364','236','1','6303','2.99','2005-07-11 17:55:43.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6365','236','2','6996','4.99','2005-07-27 01:13:45.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6366','236','2','7047','4.99','2005-07-27 03:31:11.000','2006-02-15 22:14:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6367','236','2','7253','0.99','2005-07-27 10:46:37.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6368','236','1','7780','5.99','2005-07-28 07:11:55.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6369','236','1','7792','4.99','2005-07-28 07:24:02.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6370','236','2','7798','2.99','2005-07-28 07:41:59.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6371','236','1','8657','2.99','2005-07-29 15:09:25.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6372','236','1','9011','5.99','2005-07-30 05:16:29.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6373','236','1','9934','2.99','2005-07-31 15:25:26.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6374','236','2','10137','4.99','2005-07-31 22:01:41.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6375','236','2','11139','6.99','2005-08-02 09:27:36.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6376','236','2','11486','3.99','2005-08-02 22:34:06.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6377','236','2','11507','5.99','2005-08-16 23:26:43.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6378','236','1','11895','4.99','2005-08-17 15:15:07.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6379','236','1','12975','2.99','2005-08-19 06:51:19.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6380','236','1','13364','2.99','2005-08-19 21:09:30.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6381','236','1','13443','7.99','2005-08-19 23:53:42.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6382','236','2','14321','4.99','2005-08-21 08:05:12.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6383','236','1','14364','7.99','2005-08-21 09:25:11.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6384','236','2','14722','4.99','2005-08-21 21:50:53.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6385','236','1','12988','0.99','2006-02-14 15:16:03.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6386','237','2','133','0.99','2005-05-25 21:48:30.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6387','237','1','182','4.99','2005-05-26 04:49:17.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6388','237','1','1500','0.99','2005-06-15 22:00:45.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6389','237','2','1518','0.99','2005-06-15 23:36:37.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6390','237','1','2156','4.99','2005-06-17 23:08:12.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6391','237','1','2492','2.99','2005-06-18 22:04:15.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6392','237','2','3069','2.99','2005-06-20 14:13:00.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6393','237','1','4844','4.99','2005-07-08 18:28:13.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6394','237','2','6053','4.99','2005-07-11 03:51:59.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6395','237','1','7193','2.99','2005-07-27 08:37:00.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6396','237','2','7330','3.99','2005-07-27 13:56:46.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6397','237','1','7812','4.99','2005-07-28 08:06:52.000','2006-02-15 22:14:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6398','237','2','7951','8.99','2005-07-28 13:21:16.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6399','237','2','8102','2.99','2005-07-28 18:49:43.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6400','237','2','8748','2.99','2005-07-29 19:08:37.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6401','237','2','8799','6.99','2005-07-29 21:16:47.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6402','237','1','8835','3.99','2005-07-29 22:44:35.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6403','237','1','9276','5.99','2005-07-30 15:09:28.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6404','237','1','9661','4.99','2005-07-31 06:06:37.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6405','237','2','9715','1.99','2005-07-31 08:16:58.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6406','237','2','10056','0.99','2005-07-31 19:19:13.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6407','237','2','10058','2.99','2005-07-31 19:20:21.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6408','237','2','11125','4.99','2005-08-02 08:55:35.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6409','237','2','11479','11.99','2005-08-02 22:18:13.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6410','237','2','11772','5.99','2005-08-17 10:18:57.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6411','237','1','12469','0.99','2005-08-18 11:53:07.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6412','237','2','13914','6.99','2005-08-20 16:38:57.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6413','237','2','13922','6.99','2005-08-20 17:02:37.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6414','237','2','13969','6.99','2005-08-20 18:42:40.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6415','237','2','14453','3.99','2005-08-21 12:33:34.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6416','237','2','15139','8.99','2005-08-22 13:38:11.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6417','237','1','15337','0.99','2005-08-22 20:49:51.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6418','237','2','15931','1.99','2005-08-23 18:28:09.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6419','238','2','315','4.99','2005-05-26 23:12:55.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6420','238','1','842','2.99','2005-05-30 00:32:04.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6421','238','1','1199','2.99','2005-06-15 01:58:50.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6422','238','1','1660','4.99','2005-06-16 10:12:55.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6423','238','1','3181','2.99','2005-06-20 22:51:02.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6424','238','1','4143','0.99','2005-07-07 08:22:07.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6425','238','1','5616','5.99','2005-07-10 05:21:11.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6426','238','2','6403','0.99','2005-07-11 22:46:25.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6427','238','2','7243','4.99','2005-07-27 10:26:11.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6428','238','1','8310','8.99','2005-07-29 03:25:56.000','2006-02-15 22:14:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6429','238','1','8382','6.99','2005-07-29 05:33:21.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6430','238','1','8465','0.99','2005-07-29 08:20:49.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6431','238','1','9065','4.99','2005-07-30 07:25:09.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6432','238','2','9841','7.99','2005-07-31 12:24:19.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6433','238','1','10659','5.99','2005-08-01 16:40:34.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6434','238','2','11543','5.99','2005-08-17 00:54:28.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6435','238','2','11632','2.99','2005-08-17 04:29:32.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6436','238','1','11897','2.99','2005-08-17 15:24:06.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6437','238','1','14312','4.99','2005-08-21 07:48:34.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6438','238','1','14343','8.99','2005-08-21 08:40:21.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6439','238','1','15455','0.99','2005-08-23 01:05:00.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6440','239','2','8','4.99','2005-05-24 23:31:46.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6441','239','1','444','2.99','2005-05-27 18:39:15.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6442','239','1','621','4.99','2005-05-28 15:58:12.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6443','239','1','636','6.99','2005-05-28 17:47:58.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6444','239','1','1022','7.99','2005-05-31 03:16:45.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6445','239','2','1082','5.99','2005-05-31 11:02:01.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6446','239','1','1160','4.99','2005-06-14 23:00:34.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6447','239','2','1560','4.99','2005-06-16 02:36:43.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6448','239','2','2215','2.99','2005-06-18 02:48:21.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6449','239','1','2390','4.99','2005-06-18 15:29:26.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6450','239','1','3383','5.99','2005-06-21 14:07:19.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6451','239','2','3547','0.99','2005-07-06 02:18:06.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6452','239','1','3552','5.99','2005-07-06 02:34:09.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6453','239','2','4920','7.99','2005-07-08 21:42:10.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6454','239','2','5651','4.99','2005-07-10 07:17:13.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6455','239','1','5960','0.99','2005-07-10 23:38:34.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6456','239','1','6573','0.99','2005-07-12 06:03:40.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6457','239','2','7012','8.99','2005-07-27 02:01:03.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6458','239','1','7426','0.99','2005-07-27 17:19:46.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6459','239','2','7491','2.99','2005-07-27 19:53:23.000','2006-02-15 22:14:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6460','239','1','8457','6.99','2005-07-29 07:59:03.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6461','239','2','9676','0.99','2005-07-31 06:39:13.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6462','239','1','9863','5.99','2005-07-31 13:05:29.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6463','239','1','10755','0.99','2005-08-01 20:14:14.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6464','239','2','10923','2.99','2005-08-02 02:15:01.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6465','239','1','11487','2.99','2005-08-02 22:35:05.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6466','239','2','11900','4.99','2005-08-17 15:30:44.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6467','239','1','11968','0.99','2005-08-17 17:47:34.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6468','239','1','12340','4.99','2005-08-18 07:07:01.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6469','239','1','12721','1.99','2005-08-18 21:30:12.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6470','239','1','13175','4.99','2005-08-19 13:54:53.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6471','239','2','13427','4.99','2005-08-19 23:19:02.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6472','239','2','13999','3.99','2005-08-20 19:53:32.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6473','239','2','14062','1.99','2005-08-20 22:34:34.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6474','240','1','246','2.99','2005-05-26 13:57:07.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6475','240','1','460','2.99','2005-05-27 20:02:03.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6476','240','1','643','4.99','2005-05-28 18:52:11.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6477','240','2','2196','3.99','2005-06-18 01:47:07.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6478','240','1','2264','4.99','2005-06-18 05:58:45.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6479','240','2','2872','5.99','2005-06-20 00:38:21.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6480','240','2','4305','4.99','2005-07-07 17:07:11.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6481','240','2','5262','4.99','2005-07-09 14:08:01.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6482','240','1','5596','0.99','2005-07-10 04:43:14.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6483','240','1','6272','0.99','2005-07-11 16:03:49.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6484','240','2','6470','0.99','2005-07-12 01:29:41.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6485','240','1','6956','4.99','2005-07-26 23:55:57.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6486','240','1','7001','4.99','2005-07-27 01:25:34.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6487','240','1','7467','8.99','2005-07-27 18:51:54.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6488','240','2','7481','4.99','2005-07-27 19:20:25.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6489','240','1','7870','4.99','2005-07-28 10:16:03.000','2006-02-15 22:14:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6490','240','2','8503','3.99','2005-07-29 09:16:50.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6491','240','2','8905','5.99','2005-07-30 01:11:11.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6492','240','1','10308','7.99','2005-08-01 04:22:49.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6493','240','1','11745','3.99','2005-08-17 09:00:01.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6494','240','2','12283','6.99','2005-08-18 04:54:25.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6495','240','2','13030','2.99','2005-08-19 08:28:11.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6496','240','2','13119','4.99','2005-08-19 11:44:59.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6497','240','1','13663','8.99','2005-08-20 08:12:33.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6498','240','2','14573','2.99','2005-08-21 16:44:32.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6499','240','2','15641','0.99','2005-08-23 08:06:49.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6500','241','1','627','7.99','2005-05-28 17:04:43.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6501','241','1','1059','3.99','2005-05-31 08:20:43.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6502','241','2','2428','0.99','2005-06-18 17:47:34.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6503','241','1','2455','0.99','2005-06-18 19:33:06.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6504','241','2','2478','5.99','2005-06-18 21:01:21.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6505','241','2','2683','2.99','2005-06-19 12:27:19.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6506','241','2','3258','0.99','2005-06-21 03:53:58.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6507','241','2','3822','0.99','2005-07-06 15:41:15.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6508','241','1','4731','0.99','2005-07-08 13:08:18.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6509','241','2','5017','2.99','2005-07-09 02:00:16.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6510','241','1','5211','0.99','2005-07-09 11:26:50.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6511','241','1','5438','4.99','2005-07-09 21:34:32.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6512','241','2','5525','3.99','2005-07-10 02:03:08.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6513','241','1','5981','4.99','2005-07-11 00:19:04.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6514','241','2','6090','6.99','2005-07-11 05:47:08.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6515','241','2','6245','2.99','2005-07-11 14:56:57.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6516','241','1','7320','0.99','2005-07-27 13:33:35.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6517','241','1','7434','2.99','2005-07-27 17:34:40.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6518','241','1','7860','2.99','2005-07-28 09:58:02.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6519','241','1','9500','6.99','2005-07-30 23:58:36.000','2006-02-15 22:14:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6520','241','1','9528','3.99','2005-07-31 01:05:04.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6521','241','1','9944','5.99','2005-07-31 15:44:43.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6522','241','2','10447','3.99','2005-08-01 09:04:58.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6523','241','1','10652','2.99','2005-08-01 16:24:08.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6524','241','1','11423','1.99','2005-08-02 19:57:13.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6525','241','2','12418','4.99','2005-08-18 09:59:36.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6526','241','1','12956','4.99','2005-08-19 06:06:26.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6527','241','2','13077','2.99','2005-08-19 10:15:19.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6528','241','2','14269','7.99','2005-08-21 06:22:07.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6529','241','2','14485','2.99','2005-08-21 13:52:07.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6530','241','1','14936','0.99','2005-08-22 05:51:26.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6531','241','2','15137','2.99','2005-08-22 13:20:28.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6532','241','1','15429','2.99','2005-08-23 00:20:31.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6533','241','1','15767','4.99','2005-08-23 13:14:15.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6534','242','1','108','2.99','2005-05-25 18:30:05.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6535','242','2','283','3.99','2005-05-26 19:05:05.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6536','242','2','881','4.99','2005-05-30 06:15:36.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6537','242','2','1304','4.99','2005-06-15 09:56:02.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6538','242','1','1384','4.99','2005-06-15 15:22:03.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6539','242','1','1483','4.99','2005-06-15 21:21:58.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6540','242','2','1702','4.99','2005-06-16 13:21:05.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6541','242','1','2691','4.99','2005-06-19 13:06:50.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6542','242','2','2942','4.99','2005-06-20 05:27:31.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6543','242','1','3471','4.99','2005-07-05 22:51:44.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6544','242','2','3604','0.99','2005-07-06 05:25:22.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6545','242','1','4426','4.99','2005-07-07 22:28:32.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6546','242','2','4895','1.99','2005-07-08 20:22:05.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6547','242','2','5666','5.99','2005-07-10 08:10:29.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6548','242','2','7149','3.99','2005-07-27 07:10:40.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6549','242','1','8491','4.99','2005-07-29 09:02:13.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6550','242','1','9423','3.99','2005-07-30 21:10:14.000','2006-02-15 22:14:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6551','242','1','9730','6.99','2005-07-31 08:50:08.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6552','242','2','10367','0.99','2005-08-01 06:12:19.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6553','242','2','10382','4.99','2005-08-01 06:36:45.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6554','242','2','10650','9.99','2005-08-01 16:18:45.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6555','242','2','11020','0.99','2005-08-02 05:29:48.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6556','242','1','11258','4.99','2005-08-02 13:45:39.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6557','242','2','11607','0.99','2005-08-17 03:36:06.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6558','242','1','11931','4.99','2005-08-17 16:35:14.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6559','242','2','12724','7.99','2005-08-18 21:37:20.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6560','242','1','12855','4.99','2005-08-19 02:18:58.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6561','242','1','13271','9.99','2005-08-19 17:42:06.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6562','242','2','13567','0.99','2005-08-20 04:49:21.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6563','242','2','13646','5.99','2005-08-20 07:47:08.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6564','242','1','14515','0.99','2005-08-21 14:52:14.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6565','242','1','15002','0.99','2005-08-22 08:06:00.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6566','243','1','188','4.99','2005-05-26 05:47:12.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6567','243','1','1405','5.99','2005-06-15 16:41:26.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6568','243','1','1452','0.99','2005-06-15 19:32:52.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6569','243','2','2757','5.99','2005-06-19 17:01:14.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6570','243','2','3854','5.99','2005-07-06 17:02:33.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6571','243','1','3965','4.99','2005-07-06 22:36:20.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6572','243','1','4831','0.99','2005-07-08 18:00:14.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6573','243','1','5502','0.99','2005-07-10 00:34:15.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6574','243','2','6038','3.99','2005-07-11 03:10:37.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6575','243','2','6820','2.99','2005-07-12 18:21:30.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6576','243','2','7022','2.99','2005-07-27 02:31:15.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6577','243','2','7165','0.99','2005-07-27 07:36:46.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6578','243','1','8834','4.99','2005-07-29 22:41:48.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6579','243','2','9035','2.99','2005-07-30 06:16:07.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6580','243','2','9514','4.99','2005-07-31 00:29:44.000','2006-02-15 22:14:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6581','243','2','9675','2.99','2005-07-31 06:37:07.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6582','243','2','9988','5.99','2005-07-31 17:22:36.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6583','243','1','12209','2.99','2005-08-18 02:27:20.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6584','243','1','13291','2.99','2005-08-19 18:32:11.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6585','243','1','14033','2.99','2005-08-20 21:30:53.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6586','243','1','14108','0.99','2005-08-21 00:52:45.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6587','243','1','14272','3.99','2005-08-21 06:24:55.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6588','243','2','14581','1.99','2005-08-21 17:07:08.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6589','243','2','14705','2.99','2005-08-21 21:02:55.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6590','244','2','592','4.99','2005-05-28 13:21:08.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6591','244','1','797','1.99','2005-05-29 17:12:17.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6592','244','2','1189','6.99','2005-06-15 01:04:22.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6593','244','1','1595','5.99','2005-06-16 05:23:46.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6594','244','2','2955','3.99','2005-06-20 06:46:35.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6595','244','1','4814','4.99','2005-07-08 17:11:09.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6596','244','2','5387','4.99','2005-07-09 19:25:14.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6597','244','2','5461','0.99','2005-07-09 22:48:04.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6598','244','2','5692','0.99','2005-07-10 09:32:22.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6599','244','1','5779','4.99','2005-07-10 13:45:54.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6600','244','1','5803','3.99','2005-07-10 15:05:42.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6601','244','2','6374','4.99','2005-07-11 21:36:10.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6602','244','2','6608','2.99','2005-07-12 08:16:50.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6603','244','2','6683','2.99','2005-07-12 12:14:05.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6604','244','2','8454','0.99','2005-07-29 07:49:04.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6605','244','2','8844','5.99','2005-07-29 23:05:08.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6606','244','1','10001','4.99','2005-07-31 17:46:18.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6607','244','2','10047','4.99','2005-07-31 19:07:43.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6608','244','1','10152','5.99','2005-07-31 22:28:05.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6609','244','2','10684','6.99','2005-08-01 17:47:00.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6610','244','2','10969','2.99','2005-08-02 04:04:32.000','2006-02-15 22:14:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6611','244','2','11157','0.99','2005-08-02 09:58:15.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6612','244','1','11267','9.99','2005-08-02 14:09:08.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6613','244','1','11762','9.99','2005-08-17 09:48:06.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6614','244','1','13630','4.99','2005-08-20 07:05:56.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6615','244','2','13774','0.99','2005-08-20 11:54:01.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6616','244','1','13928','0.99','2005-08-20 17:12:28.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6617','244','1','14367','0.99','2005-08-21 09:31:44.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6618','244','2','14657','0.99','2005-08-21 19:39:43.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6619','244','1','14919','1.99','2005-08-22 05:07:17.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6620','244','1','14975','3.99','2005-08-22 07:07:50.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6621','244','2','12736','4.99','2006-02-14 15:16:03.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6622','245','2','79','4.99','2005-05-25 12:11:07.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6623','245','1','241','0.99','2005-05-26 12:49:01.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6624','245','1','519','7.99','2005-05-28 03:22:33.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6625','245','1','719','2.99','2005-05-29 05:16:05.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6626','245','2','725','2.99','2005-05-29 06:03:41.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6627','245','2','948','8.99','2005-05-30 15:44:27.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6628','245','1','1377','2.99','2005-06-15 15:02:03.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6629','245','1','2122','2.99','2005-06-17 20:48:27.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6630','245','1','3157','2.99','2005-06-20 21:07:54.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6631','245','1','3634','2.99','2005-07-06 06:51:14.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6632','245','2','5321','2.99','2005-07-09 16:26:33.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6633','245','1','5764','4.99','2005-07-10 12:58:16.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6634','245','2','6242','2.99','2005-07-11 14:45:04.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6635','245','1','6795','5.99','2005-07-12 16:41:00.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6636','245','2','6962','0.99','2005-07-27 00:10:58.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6637','245','1','7230','4.99','2005-07-27 10:01:41.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6638','245','2','7233','5.99','2005-07-27 10:08:36.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6639','245','1','7358','0.99','2005-07-27 14:49:44.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6640','245','2','7397','4.99','2005-07-27 16:05:00.000','2006-02-15 22:14:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6641','245','2','8701','6.99','2005-07-29 17:02:35.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6642','245','1','8811','10.99','2005-07-29 21:46:21.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6643','245','2','9088','0.99','2005-07-30 08:21:02.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6644','245','2','9169','4.99','2005-07-30 11:35:00.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6645','245','1','9813','6.99','2005-07-31 11:29:23.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6646','245','1','10087','3.99','2005-07-31 20:15:22.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6647','245','2','11061','0.99','2005-08-02 06:50:18.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6648','245','1','11105','0.99','2005-08-02 08:13:31.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6649','245','1','11211','0.99','2005-08-02 12:16:48.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6650','245','1','12303','7.99','2005-08-18 05:43:22.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6651','245','1','13286','0.99','2005-08-19 18:28:07.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6652','245','1','15782','6.99','2005-08-23 13:43:26.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6653','245','2','12682','2.99','2006-02-14 15:16:03.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6654','246','1','124','6.99','2005-05-25 20:46:11.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6655','246','2','421','8.99','2005-05-27 15:30:13.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6656','246','2','434','5.99','2005-05-27 16:54:27.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6657','246','1','699','3.99','2005-05-29 02:11:44.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6658','246','1','1051','4.99','2005-05-31 07:02:09.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6659','246','2','1448','1.99','2005-06-15 19:17:16.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6660','246','1','1968','2.99','2005-06-17 09:20:36.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6661','246','2','2704','1.99','2005-06-19 13:50:10.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6662','246','1','2725','0.99','2005-06-19 15:01:23.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6663','246','1','3152','4.99','2005-06-20 20:42:41.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6664','246','1','4092','7.99','2005-07-07 05:54:18.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6665','246','2','4905','4.99','2005-07-08 20:56:00.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6666','246','2','4994','2.99','2005-07-09 00:54:13.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6667','246','2','5347','0.99','2005-07-09 17:31:32.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6668','246','1','6688','4.99','2005-07-12 12:22:12.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6669','246','2','9525','5.99','2005-07-31 01:02:18.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6670','246','2','10208','4.99','2005-08-01 00:54:51.000','2006-02-15 22:14:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6671','246','2','10683','2.99','2005-08-01 17:33:03.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6672','246','2','13418','5.99','2005-08-19 22:53:56.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6673','246','1','13750','6.99','2005-08-20 11:11:42.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6674','246','1','13987','4.99','2005-08-20 19:19:30.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6675','246','1','14360','6.99','2005-08-21 09:16:40.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6676','246','1','15746','2.99','2005-08-23 12:26:19.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6677','247','1','189','4.99','2005-05-26 06:01:41.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6678','247','2','448','3.99','2005-05-27 19:03:08.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6679','247','1','450','6.99','2005-05-27 19:18:54.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6680','247','1','2288','5.99','2005-06-18 07:23:17.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6681','247','2','3955','2.99','2005-07-06 21:58:08.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6682','247','2','4198','6.99','2005-07-07 11:08:11.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6683','247','1','4492','2.99','2005-07-08 01:32:04.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6684','247','2','4995','2.99','2005-07-09 00:57:46.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6685','247','1','5328','6.99','2005-07-09 16:48:29.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6686','247','1','5842','4.99','2005-07-10 17:11:37.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6687','247','1','7963','5.99','2005-07-28 13:48:38.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6688','247','1','10279','1.99','2005-08-01 03:26:44.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6689','247','1','10410','6.99','2005-08-01 07:53:29.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6690','247','2','11204','2.99','2005-08-02 11:56:31.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6691','247','2','11306','2.99','2005-08-02 15:45:10.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6692','247','1','11495','0.99','2005-08-16 22:51:20.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6693','247','2','12265','4.99','2005-08-18 04:22:01.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6694','247','1','12482','7.99','2005-08-18 12:37:36.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6695','247','1','12491','4.99','2005-08-18 12:48:45.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6696','247','1','12824','4.99','2005-08-19 01:18:00.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6697','247','1','14041','4.99','2005-08-20 21:45:23.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6698','247','1','15783','4.99','2005-08-23 13:45:44.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6699','248','2','330','7.99','2005-05-27 02:15:30.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6700','248','1','618','4.99','2005-05-28 15:50:07.000','2006-02-15 22:14:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6701','248','1','2066','3.99','2005-06-17 16:07:08.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6702','248','2','2371','0.99','2005-06-18 14:35:29.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6703','248','1','3910','0.99','2005-07-06 20:05:18.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6704','248','2','4541','4.99','2005-07-08 04:04:19.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6705','248','1','4841','0.99','2005-07-08 18:18:23.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6706','248','1','5370','2.99','2005-07-09 18:43:19.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6707','248','2','6617','2.99','2005-07-12 08:39:56.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6708','248','2','7778','5.99','2005-07-28 07:10:11.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6709','248','2','10418','4.99','2005-08-01 08:11:07.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6710','248','1','12241','0.99','2005-08-18 03:33:17.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6711','248','1','13918','0.99','2005-08-20 16:47:32.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6712','248','2','14704','0.99','2005-08-21 21:02:22.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6713','248','2','14885','5.99','2005-08-22 03:58:29.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6714','249','2','316','4.99','2005-05-26 23:22:55.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6715','249','2','400','2.99','2005-05-27 12:51:44.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6716','249','1','438','6.99','2005-05-27 17:52:34.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6717','249','1','597','3.99','2005-05-28 14:01:02.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6718','249','1','1204','0.99','2005-06-15 02:21:46.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6719','249','1','1473','5.99','2005-06-15 20:55:20.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6720','249','2','1753','2.99','2005-06-16 17:08:17.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6721','249','2','2129','1.99','2005-06-17 20:58:32.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6722','249','2','3175','7.99','2005-06-20 22:30:23.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6723','249','1','4352','9.99','2005-07-07 19:15:58.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6724','249','1','5011','4.99','2005-07-09 01:44:40.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6725','249','1','5275','4.99','2005-07-09 14:34:18.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6726','249','2','5639','3.99','2005-07-10 06:33:39.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6727','249','2','6670','7.99','2005-07-12 11:44:33.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6728','249','1','7544','7.99','2005-07-27 21:47:37.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6729','249','1','7804','2.99','2005-07-28 07:56:00.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6730','249','2','7881','4.99','2005-07-28 10:33:22.000','2006-02-15 22:14:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6731','249','1','11124','1.99','2005-08-02 08:55:25.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6732','249','1','11159','4.99','2005-08-02 10:00:55.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6733','249','2','11668','0.99','2005-08-17 05:47:32.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6734','249','2','13981','4.99','2005-08-20 19:07:20.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6735','249','2','14285','0.99','2005-08-21 06:50:48.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6736','249','1','15160','6.99','2005-08-22 14:33:50.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6737','250','1','61','5.99','2005-05-25 09:01:57.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6738','250','1','176','3.99','2005-05-26 03:47:39.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6739','250','1','637','4.99','2005-05-28 18:14:29.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6740','250','2','687','0.99','2005-05-29 00:32:09.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6741','250','1','1146','2.99','2005-05-31 20:34:45.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6742','250','1','2432','4.99','2005-06-18 17:59:18.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6743','250','1','3635','4.99','2005-07-06 06:55:36.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6744','250','1','3951','3.99','2005-07-06 21:50:41.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6745','250','1','5479','2.99','2005-07-09 23:47:33.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6746','250','1','5540','0.99','2005-07-10 02:44:21.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6747','250','1','5998','2.99','2005-07-11 01:20:46.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6748','250','1','8579','2.99','2005-07-29 11:59:22.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6749','250','2','9099','0.99','2005-07-30 08:45:48.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6750','250','2','10604','4.99','2005-08-01 14:35:08.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6751','250','1','12361','0.99','2005-08-18 07:47:31.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6752','250','1','12810','0.99','2005-08-19 00:44:10.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6753','250','2','14565','4.99','2005-08-21 16:24:45.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6754','250','1','14587','5.99','2005-08-21 17:20:55.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6755','250','2','14814','4.99','2005-08-22 01:12:14.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6756','250','2','15247','6.99','2005-08-22 17:52:05.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6757','251','1','264','2.99','2005-05-26 16:00:49.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6758','251','1','309','1.99','2005-05-26 22:38:10.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6759','251','2','393','2.99','2005-05-27 11:18:25.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6760','251','2','1069','3.99','2005-05-31 09:32:31.000','2006-02-15 22:14:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6761','251','1','1091','4.99','2005-05-31 12:11:04.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6762','251','2','1155','2.99','2005-05-31 22:17:11.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6763','251','1','2238','6.99','2005-06-18 04:22:06.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6764','251','2','3422','7.99','2005-06-21 17:24:40.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6765','251','1','3464','2.99','2005-06-21 22:08:58.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6766','251','1','3799','4.99','2005-07-06 15:00:14.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6767','251','2','4026','3.99','2005-07-07 02:15:48.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6768','251','2','4848','2.99','2005-07-08 18:30:16.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6769','251','2','5012','2.99','2005-07-09 01:45:04.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6770','251','2','5979','2.99','2005-07-11 00:17:09.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6771','251','2','6413','6.99','2005-07-11 23:26:11.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6772','251','2','7338','8.99','2005-07-27 14:13:34.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6773','251','2','8443','2.99','2005-07-29 07:33:12.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6774','251','2','8982','0.99','2005-07-30 04:31:02.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6775','251','1','9196','2.99','2005-07-30 12:30:19.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6776','251','1','9892','0.99','2005-07-31 14:06:25.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6777','251','1','10575','7.99','2005-08-01 13:41:41.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6778','251','1','11733','0.99','2005-08-17 08:31:03.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6779','251','2','12047','3.99','2005-08-17 20:48:32.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6780','251','2','12666','4.99','2005-08-18 19:11:41.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6781','251','2','13121','2.99','2005-08-19 11:51:39.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6782','251','1','13243','2.99','2005-08-19 16:33:16.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6783','251','2','13260','6.99','2005-08-19 17:09:22.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6784','251','1','14292','0.99','2005-08-21 07:06:20.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6785','251','2','15647','2.99','2005-08-23 08:23:56.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6786','251','2','15870','4.99','2005-08-23 16:23:08.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6787','251','1','14107','0.99','2006-02-14 15:16:03.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6788','252','1','707','4.99','2005-05-29 03:18:19.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6789','252','1','1095','0.99','2005-05-31 13:15:41.000','2006-02-15 22:14:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6790','252','1','1395','5.99','2005-06-15 16:21:04.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6791','252','2','2716','4.99','2005-06-19 14:40:17.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6792','252','1','2968','0.99','2005-06-20 07:41:47.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6793','252','2','4372','0.99','2005-07-07 20:09:01.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6794','252','2','5554','2.99','2005-07-10 03:03:38.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6795','252','1','6357','0.99','2005-07-11 20:58:51.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6796','252','2','6369','0.99','2005-07-11 21:23:36.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6797','252','1','7024','4.99','2005-07-27 02:36:40.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6798','252','2','7121','0.99','2005-07-27 05:58:32.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6799','252','2','7168','0.99','2005-07-27 07:51:11.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6800','252','1','7670','0.99','2005-07-28 02:44:25.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6801','252','1','8636','5.99','2005-07-29 14:24:13.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6802','252','1','8899','0.99','2005-07-30 01:05:30.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6803','252','2','10314','0.99','2005-08-01 04:31:18.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6804','252','2','10834','2.99','2005-08-01 23:28:00.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6805','252','2','11764','0.99','2005-08-17 09:51:54.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6806','252','1','13385','4.99','2005-08-19 21:39:35.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6807','252','2','13989','5.99','2005-08-20 19:27:50.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6808','252','1','14774','4.99','2005-08-21 23:52:32.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6809','252','2','13756','4.99','2006-02-14 15:16:03.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6810','253','1','566','6.99','2005-05-28 09:51:39.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6811','253','1','648','0.99','2005-05-28 19:25:54.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6812','253','1','986','2.99','2005-05-30 22:22:52.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6813','253','2','1378','1.99','2005-06-15 15:03:15.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6814','253','2','1606','6.99','2005-06-16 06:18:31.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6815','253','2','2081','5.99','2005-06-17 17:05:02.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6816','253','1','2142','4.99','2005-06-17 21:55:43.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6817','253','1','2454','4.99','2005-06-18 19:32:51.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6818','253','2','2636','4.99','2005-06-19 09:13:06.000','2006-02-15 22:14:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6819','253','1','3658','7.99','2005-07-06 08:01:08.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6820','253','1','5505','2.99','2005-07-10 00:38:48.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6821','253','1','5602','4.99','2005-07-10 05:02:22.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6822','253','2','7689','2.99','2005-07-28 03:21:24.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6823','253','2','7851','0.99','2005-07-28 09:31:58.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6824','253','2','7887','2.99','2005-07-28 10:40:12.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6825','253','2','8752','2.99','2005-07-29 19:15:07.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6826','253','2','9606','0.99','2005-07-31 03:50:46.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6827','253','2','9618','6.99','2005-07-31 04:16:14.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6828','253','2','10404','4.99','2005-08-01 07:31:25.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6829','253','1','10660','2.99','2005-08-01 16:48:01.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6830','253','2','10881','6.99','2005-08-02 00:38:14.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6831','253','1','12572','0.99','2005-08-18 15:32:54.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6832','253','2','12827','5.99','2005-08-19 01:27:23.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6833','253','1','13126','5.99','2005-08-19 12:00:28.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6834','253','2','14086','3.99','2005-08-20 23:47:54.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6835','253','2','14283','4.99','2005-08-21 06:44:14.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6836','253','1','14640','7.99','2005-08-21 19:03:19.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6837','253','2','14655','4.99','2005-08-21 19:37:10.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6838','253','2','15221','2.99','2005-08-22 17:12:29.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6839','254','1','183','2.99','2005-05-26 05:01:18.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6840','254','1','1108','5.99','2005-05-31 15:05:12.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6841','254','1','1285','2.99','2005-06-15 08:33:06.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6842','254','2','1390','0.99','2005-06-15 16:06:29.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6843','254','1','2082','2.99','2005-06-17 17:13:32.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6844','254','1','2138','2.99','2005-06-17 21:28:14.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6845','254','2','2687','3.99','2005-06-19 12:46:52.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6846','254','1','3882','4.99','2005-07-06 18:38:21.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6847','254','2','5042','2.99','2005-07-09 03:20:30.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6848','254','1','5072','3.99','2005-07-09 05:01:58.000','2006-02-15 22:14:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6849','254','2','5080','2.99','2005-07-09 05:23:55.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6850','254','1','5537','0.99','2005-07-10 02:35:41.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6851','254','1','5550','5.99','2005-07-10 02:58:35.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6852','254','1','5826','7.99','2005-07-10 16:21:02.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6853','254','2','5930','4.99','2005-07-10 21:59:32.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6854','254','2','7011','0.99','2005-07-27 01:58:34.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6855','254','1','7413','4.99','2005-07-27 16:45:40.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6856','254','2','8216','7.99','2005-07-28 23:43:59.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6857','254','2','8581','4.99','2005-07-29 12:02:06.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6858','254','2','9494','1.99','2005-07-30 23:52:46.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6859','254','1','10522','4.99','2005-08-01 11:48:51.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6860','254','1','11190','0.99','2005-08-02 11:21:34.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6861','254','1','11665','6.99','2005-08-17 05:36:57.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6862','254','2','12148','0.99','2005-08-18 00:13:15.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6863','254','1','12206','0.99','2005-08-18 02:22:20.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6864','254','1','12247','2.99','2005-08-18 03:51:51.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6865','254','1','12874','0.99','2005-08-19 03:07:57.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6866','254','2','13001','4.99','2005-08-19 07:36:44.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6867','254','1','13045','4.99','2005-08-19 09:17:35.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6868','254','2','13130','2.99','2005-08-19 12:06:42.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6869','254','2','14497','4.99','2005-08-21 14:09:47.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6870','254','1','15774','0.99','2005-08-23 13:25:08.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6871','255','1','1235','2.99','2005-06-15 04:31:28.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6872','255','1','1420','6.99','2005-06-15 17:56:14.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6873','255','2','1681','2.99','2005-06-16 11:38:17.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6874','255','2','3442','2.99','2005-06-21 20:06:51.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6875','255','1','4547','0.99','2005-07-08 04:20:19.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6876','255','1','5706','1.99','2005-07-10 10:21:46.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6877','255','1','5943','0.99','2005-07-10 22:48:13.000','2006-02-15 22:14:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6878','255','2','7475','8.99','2005-07-27 19:07:43.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6879','255','1','7646','2.99','2005-07-28 01:31:45.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6880','255','1','8562','0.99','2005-07-29 11:32:13.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6881','255','1','9061','6.99','2005-07-30 07:21:52.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6882','255','2','11979','4.99','2005-08-17 18:07:13.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6883','255','2','12176','7.99','2005-08-18 01:10:33.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6884','255','2','13154','2.99','2005-08-19 13:09:54.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6885','255','1','13268','0.99','2005-08-19 17:33:50.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6886','255','2','13683','0.99','2005-08-20 08:54:55.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6887','255','1','13758','8.99','2005-08-20 11:21:26.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6888','255','2','14600','3.99','2005-08-21 17:45:21.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6889','256','1','51','4.99','2005-05-25 06:49:10.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6890','256','1','232','0.99','2005-05-26 11:38:05.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6891','256','2','738','4.99','2005-05-29 08:20:08.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6892','256','1','935','2.99','2005-05-30 13:29:36.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6893','256','1','1116','0.99','2005-05-31 16:10:46.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6894','256','1','1555','2.99','2005-06-16 02:17:07.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6895','256','2','1965','0.99','2005-06-17 09:17:39.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6896','256','2','1973','4.99','2005-06-17 09:26:15.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6897','256','2','2230','4.99','2005-06-18 03:50:49.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6898','256','1','2380','6.99','2005-06-18 15:00:04.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6899','256','2','2561','4.99','2005-06-19 03:14:52.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6900','256','1','2839','4.99','2005-06-19 22:07:24.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6901','256','1','4130','0.99','2005-07-07 07:51:53.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6902','256','2','4182','0.99','2005-07-07 10:28:00.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6903','256','1','5179','2.99','2005-07-09 10:00:44.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6904','256','1','6298','0.99','2005-07-11 17:42:33.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6905','256','1','7661','3.99','2005-07-28 02:10:27.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6906','256','2','9424','2.99','2005-07-30 21:10:56.000','2006-02-15 22:14:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6907','256','2','10759','4.99','2005-08-01 20:22:51.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6908','256','2','11011','2.99','2005-08-02 05:07:07.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6909','256','2','11628','8.99','2005-08-17 04:27:18.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6910','256','2','13457','0.99','2005-08-20 00:33:22.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6911','256','1','13651','0.99','2005-08-20 07:50:08.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6912','256','1','14003','6.99','2005-08-20 20:16:06.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6913','256','2','14036','4.99','2005-08-20 21:35:27.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6914','256','2','14445','2.99','2005-08-21 12:07:42.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6915','256','2','14458','3.99','2005-08-21 12:47:53.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6916','256','2','15609','2.99','2005-08-23 06:56:04.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6917','256','2','15861','4.99','2005-08-23 16:15:45.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6918','256','1','15864','7.99','2005-08-23 16:18:12.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6919','257','2','139','2.99','2005-05-25 23:00:21.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6920','257','2','244','2.99','2005-05-26 13:40:40.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6921','257','2','705','2.99','2005-05-29 02:48:52.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6922','257','1','2557','0.99','2005-06-19 03:08:51.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6923','257','2','3083','4.99','2005-06-20 15:33:47.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6924','257','2','4462','6.99','2005-07-08 00:02:49.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6925','257','2','4574','4.99','2005-07-08 05:39:42.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6926','257','1','5495','6.99','2005-07-10 00:16:54.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6927','257','1','5858','4.99','2005-07-10 18:00:07.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6928','257','1','6422','5.99','2005-07-11 23:46:19.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6929','257','2','6711','5.99','2005-07-12 13:23:40.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6930','257','2','7007','4.99','2005-07-27 01:43:39.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6931','257','1','7176','2.99','2005-07-27 08:04:28.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6932','257','1','7496','1.99','2005-07-27 20:04:05.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6933','257','2','7510','2.99','2005-07-27 20:37:57.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6934','257','2','7518','5.99','2005-07-27 21:01:16.000','2006-02-15 22:14:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6935','257','2','8156','3.99','2005-07-28 20:59:04.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6936','257','2','8252','2.99','2005-07-29 00:54:17.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6937','257','1','8344','4.99','2005-07-29 04:45:25.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6938','257','1','8640','4.99','2005-07-29 14:34:17.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6939','257','2','8946','6.99','2005-07-30 03:14:53.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6940','257','1','9800','4.99','2005-07-31 11:00:58.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6941','257','2','10142','4.99','2005-07-31 22:10:54.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6942','257','1','11230','4.99','2005-08-02 12:59:08.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6943','257','1','11394','0.99','2005-08-02 18:44:45.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6944','257','2','11545','6.99','2005-08-17 00:56:06.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6945','257','2','11860','1.99','2005-08-17 13:52:26.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6946','257','2','12841','2.99','2005-08-19 01:55:55.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6947','257','1','12904','5.99','2005-08-19 04:10:50.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6948','257','2','13203','7.99','2005-08-19 15:00:58.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6949','257','2','13218','0.99','2005-08-19 15:39:39.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6950','257','1','13389','2.99','2005-08-19 21:52:51.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6951','257','2','13846','5.99','2005-08-20 14:32:31.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6952','257','2','14115','0.99','2005-08-21 01:10:29.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6953','257','1','15025','0.99','2005-08-22 08:57:24.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6954','257','1','15967','2.99','2005-08-23 19:50:06.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6955','257','2','15968','0.99','2005-08-23 19:51:29.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6956','258','1','1743','2.99','2005-06-16 16:38:10.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6957','258','2','2678','0.99','2005-06-19 12:12:23.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6958','258','2','2931','8.99','2005-06-20 04:50:45.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6959','258','2','4408','2.99','2005-07-07 21:41:06.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6960','258','1','4677','5.99','2005-07-08 10:30:36.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6961','258','2','4897','0.99','2005-07-08 20:25:11.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6962','258','2','5312','5.99','2005-07-09 16:03:09.000','2006-02-15 22:14:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6963','258','1','5674','0.99','2005-07-10 08:26:26.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6964','258','1','5935','9.99','2005-07-10 22:11:04.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6965','258','2','6012','4.99','2005-07-11 02:00:12.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6966','258','1','7814','2.99','2005-07-28 08:09:48.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6967','258','1','8675','4.99','2005-07-29 15:56:18.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6968','258','2','9069','4.99','2005-07-30 07:39:59.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6969','258','2','10293','1.99','2005-08-01 03:44:26.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6970','258','2','10315','4.99','2005-08-01 04:34:45.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6971','258','1','10325','5.99','2005-08-01 04:52:12.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6972','258','2','10332','6.99','2005-08-01 04:57:32.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6973','258','1','10393','0.99','2005-08-01 06:52:50.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6974','258','1','12246','5.99','2005-08-18 03:48:41.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6975','258','2','12296','3.99','2005-08-18 05:16:28.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6976','258','1','13491','4.99','2005-08-20 01:30:56.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6977','258','1','13695','6.99','2005-08-20 09:13:25.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6978','258','2','13897','2.99','2005-08-20 16:02:28.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6979','258','2','14901','6.99','2005-08-22 04:31:37.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6980','259','2','722','6.99','2005-05-29 05:30:31.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6981','259','2','901','2.99','2005-05-30 09:40:40.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6982','259','1','1147','5.99','2005-05-31 20:37:52.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6983','259','1','1641','7.99','2005-06-16 08:46:26.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6984','259','2','1723','7.99','2005-06-16 15:14:18.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6985','259','2','1813','2.99','2005-06-16 21:11:00.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6986','259','2','2375','5.99','2005-06-18 14:47:29.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6987','259','2','4199','5.99','2005-07-07 11:13:07.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6988','259','2','4489','4.99','2005-07-08 01:23:58.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6989','259','1','6074','0.99','2005-07-11 04:59:56.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6990','259','2','6539','3.99','2005-07-12 04:50:49.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6991','259','2','7188','2.99','2005-07-27 08:32:08.000','2006-02-15 22:14:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6992','259','2','7774','7.99','2005-07-28 07:03:25.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6993','259','1','7817','4.99','2005-07-28 08:20:55.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6994','259','2','9205','6.99','2005-07-30 12:46:40.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6995','259','1','9282','6.99','2005-07-30 15:17:31.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6996','259','1','9444','7.99','2005-07-30 21:48:44.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6997','259','1','10510','3.99','2005-08-01 11:28:30.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6998','259','1','10781','2.99','2005-08-01 21:22:41.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('6999','259','1','11184','3.99','2005-08-02 11:01:26.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7000','259','2','12680','6.99','2005-08-18 19:43:46.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7001','259','1','13109','4.99','2005-08-19 11:23:20.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7002','259','2','13112','2.99','2005-08-19 11:27:10.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7003','259','2','13366','4.99','2005-08-19 21:14:45.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7004','259','1','13598','5.99','2005-08-20 05:59:17.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7005','259','2','13649','4.99','2005-08-20 07:48:38.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7006','259','2','14067','6.99','2005-08-20 22:49:23.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7007','259','2','14170','4.99','2005-08-21 03:00:39.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7008','259','2','14966','2.99','2005-08-22 06:45:57.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7009','259','1','15425','10.99','2005-08-23 00:05:57.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7010','259','1','15473','2.99','2005-08-23 01:39:10.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7011','259','2',NULL,'1.99','2005-08-23 06:13:16.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7012','259','1','15689','2.99','2005-08-23 09:52:55.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7013','260','1','1101','8.99','2005-05-31 14:13:59.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7014','260','1','1626','3.99','2005-06-16 07:49:47.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7015','260','2','2001','2.99','2005-06-17 11:35:09.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7016','260','2','2040','2.99','2005-06-17 14:18:37.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7017','260','1','2091','10.99','2005-06-17 18:09:04.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7018','260','1','2178','0.99','2005-06-18 00:38:35.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7019','260','1','2823','7.99','2005-06-19 20:30:21.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7020','260','2','2958','3.99','2005-06-20 06:56:20.000','2006-02-15 22:14:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7021','260','1','3193','0.99','2005-06-20 23:52:30.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7022','260','2','4054','0.99','2005-07-07 03:42:07.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7023','260','2','4741','6.99','2005-07-08 13:31:23.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7024','260','1','4870','2.99','2005-07-08 19:14:45.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7025','260','2','6328','2.99','2005-07-11 19:09:33.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7026','260','2','7072','0.99','2005-07-27 04:02:33.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7027','260','1','7268','1.99','2005-07-27 11:23:09.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7028','260','1','7885','7.99','2005-07-28 10:37:41.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7029','260','1','8475','1.99','2005-07-29 08:37:41.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7030','260','1','8484','2.99','2005-07-29 08:51:59.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7031','260','1','8717','0.99','2005-07-29 17:40:45.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7032','260','1','8933','0.99','2005-07-30 02:36:06.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7033','260','2','9176','4.99','2005-07-30 11:50:54.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7034','260','2','10970','8.99','2005-08-02 04:06:46.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7035','260','1','12852','0.99','2005-08-19 02:12:40.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7036','260','2','13440','2.99','2005-08-19 23:42:52.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7037','260','1','13685','3.99','2005-08-20 08:57:11.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7038','260','1','13966','2.99','2005-08-20 18:28:28.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7039','260','2','13978','0.99','2005-08-20 19:03:25.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7040','260','2','14035','2.99','2005-08-20 21:31:58.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7041','260','2','14441','2.99','2005-08-21 11:59:38.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7042','260','1','14579','7.99','2005-08-21 16:54:47.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7043','260','1','14610','6.99','2005-08-21 17:59:09.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7044','261','1','12','4.99','2005-05-25 00:19:27.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7045','261','2','465','3.99','2005-05-27 20:44:36.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7046','261','2','542','6.99','2005-05-28 06:42:13.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7047','261','1','792','0.99','2005-05-29 16:32:10.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7048','261','1','1760','2.99','2005-06-16 17:48:37.000','2006-02-15 22:14:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7049','261','1','1877','5.99','2005-06-17 02:54:16.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7050','261','2','1988','8.99','2005-06-17 10:42:34.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7051','261','2','2072','3.99','2005-06-17 16:33:32.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7052','261','2','2392','0.99','2005-06-18 15:34:18.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7053','261','1','3363','0.99','2005-06-21 12:25:07.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7054','261','1','5122','3.99','2005-07-09 07:19:35.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7055','261','1','5449','5.99','2005-07-09 22:12:01.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7056','261','2','6515','2.99','2005-07-12 03:50:32.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7057','261','1','6743','0.99','2005-07-12 14:29:25.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7058','261','2','9552','4.99','2005-07-31 02:05:32.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7059','261','1','9842','4.99','2005-07-31 12:24:58.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7060','261','1','9869','4.99','2005-07-31 13:21:54.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7061','261','2','10246','1.99','2005-08-01 02:29:50.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7062','261','1','11834','1.99','2005-08-17 13:00:40.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7063','261','2','11928','2.99','2005-08-17 16:28:24.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7064','261','1','12327','6.99','2005-08-18 06:43:22.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7065','261','2','13245','4.99','2005-08-19 16:43:41.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7066','261','2','13506','5.99','2005-08-20 02:07:06.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7067','261','1','13669','2.99','2005-08-20 08:26:32.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7068','261','1','13849','4.99','2005-08-20 14:42:34.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7069','261','2','15397','4.99','2005-08-22 23:08:46.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7070','262','2','984','4.99','2005-05-30 22:17:17.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7071','262','1','1563','2.99','2005-06-16 02:46:28.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7072','262','1','2771','6.99','2005-06-19 17:54:48.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7073','262','2','2850','8.99','2005-06-19 23:06:28.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7074','262','1','2915','1.99','2005-06-20 03:57:17.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7075','262','1','3521','1.99','2005-07-06 01:00:11.000','2006-02-15 22:15:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7076','262','1','3699','3.99','2005-07-06 10:11:25.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7077','262','1','4501','0.99','2005-07-08 02:12:00.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7078','262','2','5503','0.99','2005-07-10 00:35:37.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7079','262','1','6291','0.99','2005-07-11 17:16:40.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7080','262','2','6547','7.99','2005-07-12 04:57:46.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7081','262','1','6724','3.99','2005-07-12 13:45:15.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7082','262','2','6762','7.99','2005-07-12 15:25:33.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7083','262','1','6805','6.99','2005-07-12 17:23:01.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7084','262','1','6986','4.99','2005-07-27 00:59:05.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7085','262','1','9105','6.99','2005-07-30 08:50:25.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7086','262','2','10421','0.99','2005-08-01 08:14:10.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7087','262','2','10770','0.99','2005-08-01 20:45:39.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7088','262','2','13466','2.99','2005-08-20 00:55:16.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7089','262','1','13808','5.99','2005-08-20 12:55:43.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7090','262','1','14180','4.99','2005-08-21 03:16:15.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7091','262','2','14465','3.99','2005-08-21 12:54:22.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7092','262','2','14834','6.99','2005-08-22 01:45:58.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7093','262','2','15270','3.99','2005-08-22 18:48:42.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7094','262','1','15456','0.99','2005-08-23 01:07:01.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7095','262','1','15640','4.99','2005-08-23 08:04:40.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7096','262','2','15771','4.99','2005-08-23 13:18:46.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7097','262','1','15918','3.99','2005-08-23 17:57:35.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7098','263','1','97','4.99','2005-05-25 16:34:24.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7099','263','1','266','0.99','2005-05-26 16:08:05.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7100','263','2','2126','8.99','2005-06-17 20:54:36.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7101','263','2','3257','1.99','2005-06-21 03:47:19.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7102','263','1','3578','4.99','2005-07-06 03:47:05.000','2006-02-15 22:15:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7103','263','2','3773','2.99','2005-07-06 13:23:34.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7104','263','2','4637','0.99','2005-07-08 08:49:54.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7105','263','2','4682','2.99','2005-07-08 10:38:27.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7106','263','2','5125','2.99','2005-07-09 07:25:28.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7107','263','2','5254','1.99','2005-07-09 13:50:11.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7108','263','2','6376','4.99','2005-07-11 21:40:23.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7109','263','1','6483','2.99','2005-07-12 01:59:20.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7110','263','1','6808','1.99','2005-07-12 17:36:42.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7111','263','2','7291','4.99','2005-07-27 12:30:47.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7112','263','1','7425','4.99','2005-07-27 17:18:35.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7113','263','1','7706','4.99','2005-07-28 04:03:17.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7114','263','2','7833','1.99','2005-07-28 08:46:14.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7115','263','1','10476','6.99','2005-08-01 10:03:20.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7116','263','1','10775','2.99','2005-08-01 20:59:52.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7117','263','1','11339','2.99','2005-08-02 17:02:06.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7118','263','1','11822','0.99','2005-08-17 12:32:39.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7119','263','2','12057','9.99','2005-08-17 21:04:35.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7120','263','2','12432','5.99','2005-08-18 10:35:13.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7121','263','2','12919','6.99','2005-08-19 04:32:15.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7122','263','1','14335','3.99','2005-08-21 08:33:07.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7123','263','2','14448','6.99','2005-08-21 12:13:10.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7124','263','1','15322','4.99','2005-08-22 20:20:30.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7125','263','2','15922','7.99','2005-08-23 18:07:31.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7126','263','1','15293','0.99','2006-02-14 15:16:03.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7127','264','2','1165','3.99','2005-06-14 23:16:27.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7128','264','1','1206','4.99','2005-06-15 02:27:07.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7129','264','1','3028','0.99','2005-06-20 11:50:52.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7130','264','1','3403','3.99','2005-06-21 15:55:06.000','2006-02-15 22:15:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7131','264','1','3618','6.99','2005-07-06 05:58:45.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7132','264','1','4328','4.99','2005-07-07 18:03:17.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7133','264','1','4539','0.99','2005-07-08 04:01:02.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7134','264','1','6340','8.99','2005-07-11 19:46:05.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7135','264','2','6391','0.99','2005-07-11 22:23:09.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7136','264','1','6395','2.99','2005-07-11 22:29:29.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7137','264','1','6543','0.99','2005-07-12 04:54:32.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7138','264','1','7006','8.99','2005-07-27 01:42:20.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7139','264','2','9380','2.99','2005-07-30 19:17:31.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7140','264','2','9515','0.99','2005-07-31 00:35:05.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7141','264','1','9861','5.99','2005-07-31 13:04:14.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7142','264','1','9932','5.99','2005-07-31 15:19:48.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7143','264','2','10792','2.99','2005-08-01 21:44:24.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7144','264','1','11527','3.99','2005-08-17 00:25:06.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7145','264','2','11533','0.99','2005-08-17 00:34:53.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7146','264','1','11539','2.99','2005-08-17 00:45:41.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7147','264','1','12518','4.99','2005-08-18 13:41:32.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7148','264','2','13590','2.99','2005-08-20 05:48:59.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7149','264','1','13664','5.99','2005-08-20 08:18:36.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7150','264','1','15595','4.99','2005-08-23 06:19:12.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7151','264','2','14243','2.99','2006-02-14 15:16:03.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7152','265','2','74','0.99','2005-05-25 11:09:48.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7153','265','2','2027','7.99','2005-06-17 13:06:56.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7154','265','2','2562','4.99','2005-06-19 03:15:05.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7155','265','1','2598','2.99','2005-06-19 05:59:57.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7156','265','1','3823','2.99','2005-07-06 15:41:27.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7157','265','1','4610','0.99','2005-07-08 07:28:05.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7158','265','1','4797','2.99','2005-07-08 16:39:05.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7159','265','2','5029','7.99','2005-07-09 02:35:32.000','2006-02-15 22:15:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7160','265','1','5417','4.99','2005-07-09 20:34:09.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7161','265','1','5710','9.99','2005-07-10 10:32:52.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7162','265','1','6068','4.99','2005-07-11 04:41:09.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7163','265','2','6371','4.99','2005-07-11 21:31:51.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7164','265','2','6553','5.99','2005-07-12 05:06:39.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7165','265','2','6921','6.99','2005-07-12 22:39:03.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7166','265','2','7414','1.99','2005-07-27 16:46:07.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7167','265','1','7704','2.99','2005-07-28 04:02:13.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7168','265','1','8278','5.99','2005-07-29 01:42:55.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7169','265','2','8489','2.99','2005-07-29 08:58:03.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7170','265','2','8665','0.99','2005-07-29 15:39:29.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7171','265','1','9416','2.99','2005-07-30 20:52:45.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7172','265','2','10592','3.99','2005-08-01 14:13:00.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7173','265','2','11000','3.99','2005-08-02 04:56:14.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7174','265','1','12207','1.99','2005-08-18 02:24:07.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7175','265','2','12346','4.99','2005-08-18 07:17:55.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7176','265','2','13700','8.99','2005-08-20 09:26:17.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7177','265','2','14125','4.99','2005-08-21 01:32:16.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7178','265','1','14547','6.99','2005-08-21 15:51:38.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7179','265','2','14556','6.99','2005-08-21 16:03:27.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7180','265','1','14943','2.99','2005-08-22 05:59:59.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7181','266','1','86','1.99','2005-05-25 13:36:12.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7182','266','2','651','2.99','2005-05-28 19:46:50.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7183','266','2','1280','5.99','2005-06-15 08:16:06.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7184','266','2','2065','4.99','2005-06-17 16:03:46.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7185','266','2','3002','4.99','2005-06-20 09:56:12.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7186','266','1','3059','4.99','2005-06-20 13:38:41.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7187','266','2','3585','0.99','2005-07-06 04:22:36.000','2006-02-15 22:15:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7188','266','2','5362','5.99','2005-07-09 18:16:08.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7189','266','1','5577','4.99','2005-07-10 03:58:40.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7190','266','1','8492','2.99','2005-07-29 09:04:17.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7191','266','2','9109','5.99','2005-07-30 08:58:24.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7192','266','2','10747','4.99','2005-08-01 19:59:41.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7193','266','2','10910','5.99','2005-08-02 01:54:34.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7194','266','2','11233','5.99','2005-08-02 13:06:11.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7195','266','1','11321','4.99','2005-08-02 16:15:07.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7196','266','2','11626','0.99','2005-08-17 04:25:42.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7197','266','1','11726','0.99','2005-08-17 08:11:10.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7198','266','1','12255','4.99','2005-08-18 04:07:20.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7199','266','2','12378','0.99','2005-08-18 08:26:13.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7200','266','1','12405','6.99','2005-08-18 09:37:30.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7201','266','1','12715','4.99','2005-08-18 21:09:38.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7202','266','1','13468','8.99','2005-08-20 00:56:44.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7203','266','1','13556','6.99','2005-08-20 04:10:26.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7204','266','1','14080','1.99','2005-08-20 23:29:50.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7205','266','1','14492','2.99','2005-08-21 13:59:08.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7206','266','1','14877','0.99','2005-08-22 03:39:56.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7207','266','1','15181','2.99','2005-08-22 15:46:20.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7208','266','1','15346','4.99','2005-08-22 21:06:00.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7209','267','2','91','6.99','2005-05-25 14:57:22.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7210','267','1','436','4.99','2005-05-27 17:21:04.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7211','267','2','1030','4.99','2005-05-31 04:06:47.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7212','267','2','1257','4.99','2005-06-15 06:15:36.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7213','267','2','1349','4.99','2005-06-15 12:49:02.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7214','267','2','2265','2.99','2005-06-18 06:03:27.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7215','267','2','2578','7.99','2005-06-19 04:40:06.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7216','267','1','2582','6.99','2005-06-19 04:56:27.000','2006-02-15 22:15:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7217','267','2','2699','2.99','2005-06-19 13:29:28.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7218','267','2','2754','4.99','2005-06-19 16:55:59.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7219','267','1','2877','1.99','2005-06-20 01:07:16.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7220','267','2','3090','0.99','2005-06-20 16:00:19.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7221','267','1','3817','2.99','2005-07-06 15:31:45.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7222','267','1','5340','6.99','2005-07-09 17:11:35.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7223','267','1','6070','0.99','2005-07-11 04:47:42.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7224','267','1','6706','3.99','2005-07-12 12:59:16.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7225','267','1','8190','4.99','2005-07-28 22:47:06.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7226','267','1','8572','1.99','2005-07-29 11:51:24.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7227','267','2','9059','3.99','2005-07-30 07:18:44.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7228','267','1','9308','6.99','2005-07-30 16:53:21.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7229','267','2','9403','4.99','2005-07-30 20:18:53.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7230','267','2','9807','2.99','2005-07-31 11:13:52.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7231','267','2','10048','4.99','2005-07-31 19:08:56.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7232','267','1','10343','2.99','2005-08-01 05:15:47.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7233','267','2','11373','0.99','2005-08-02 18:14:12.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7234','267','1','11690','6.99','2005-08-17 06:44:22.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7235','267','1','12320','4.99','2005-08-18 06:26:51.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7236','267','1','12979','4.99','2005-08-19 07:00:35.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7237','267','2','13236','9.99','2005-08-19 16:18:24.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7238','267','1','14131','5.99','2005-08-21 01:43:40.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7239','267','2','15020','3.99','2005-08-22 08:54:12.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7240','267','1','15208','3.99','2005-08-22 16:35:47.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7241','267','1','15768','0.99','2005-08-23 13:14:47.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7242','267','1','15903','3.99','2005-08-23 17:30:40.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7243','267','2','12066','7.98','2006-02-14 15:16:03.000','2006-02-15 22:15:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7244','267','2','13713','0','2006-02-14 15:16:03.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7245','268','1','1394','2.99','2005-06-15 16:17:21.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7246','268','2','1450','4.99','2005-06-15 19:22:08.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7247','268','2','1551','3.99','2005-06-16 02:01:15.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7248','268','1','2133','0.99','2005-06-17 21:10:05.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7249','268','2','2324','4.99','2005-06-18 10:00:33.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7250','268','2','2858','2.99','2005-06-19 23:17:11.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7251','268','1','3066','3.99','2005-06-20 13:55:41.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7252','268','1','3361','1.99','2005-06-21 12:14:23.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7253','268','2','3670','4.99','2005-07-06 08:56:43.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7254','268','2','4626','4.99','2005-07-08 08:18:21.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7255','268','1','5039','7.99','2005-07-09 03:14:45.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7256','268','2','5671','2.99','2005-07-10 08:18:22.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7257','268','2','5793','2.99','2005-07-10 14:33:00.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7258','268','2','5888','6.99','2005-07-10 19:52:17.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7259','268','1','6120','3.99','2005-07-11 07:49:53.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7260','268','2','6489','1.99','2005-07-12 02:22:46.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7261','268','1','8931','2.99','2005-07-30 02:30:07.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7262','268','2','9436','7.99','2005-07-30 21:33:01.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7263','268','2','9531','3.99','2005-07-31 01:11:53.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7264','268','1','10040','1.99','2005-07-31 18:54:15.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7265','268','2','11462','7.99','2005-08-02 21:36:46.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7266','268','2','11828','6.99','2005-08-17 12:48:28.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7267','268','2','12007','2.99','2005-08-17 19:10:34.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7268','268','2','12694','4.99','2005-08-18 20:10:39.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7269','268','2','13880','5.99','2005-08-20 15:18:20.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7270','268','2','14249','4.99','2005-08-21 05:38:05.000','2006-02-15 22:15:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7271','268','2','14373','4.99','2005-08-21 09:44:53.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7272','268','1','14874','0.99','2005-08-22 03:32:05.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7273','268','2','15183','2.99','2005-08-22 15:49:54.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7274','269','2','7','1.99','2005-05-24 23:11:53.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7275','269','1','98','0.99','2005-05-25 16:48:24.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7276','269','2','678','6.99','2005-05-28 23:15:48.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7277','269','2','703','0.99','2005-05-29 02:29:36.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7278','269','1','750','4.99','2005-05-29 09:41:40.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7279','269','2','1099','2.99','2005-05-31 13:54:48.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7280','269','1','1334','3.99','2005-06-15 11:43:09.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7281','269','2','1909','2.99','2005-06-17 05:11:04.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7282','269','2','2493','6.99','2005-06-18 22:12:09.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7283','269','1','4125','9.99','2005-07-07 07:20:29.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7284','269','2','4804','0.99','2005-07-08 16:57:30.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7285','269','2','4880','6.99','2005-07-08 19:36:17.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7286','269','1','6440','2.99','2005-07-12 00:25:04.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7287','269','1','6626','5.99','2005-07-12 09:16:24.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7288','269','2','6804','4.99','2005-07-12 17:22:06.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7289','269','1','7032','4.99','2005-07-27 03:03:09.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7290','269','1','7537','6.99','2005-07-27 21:36:09.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7291','269','1','7972','2.99','2005-07-28 14:07:46.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7292','269','2','10566','2.99','2005-08-01 13:12:11.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7293','269','1','10908','4.99','2005-08-02 01:53:06.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7294','269','1','11014','4.99','2005-08-02 05:12:22.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7295','269','1','11915','3.99','2005-08-17 16:05:28.000','2006-02-15 22:15:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7296','269','1','12344','4.99','2005-08-18 07:15:19.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7297','269','2','13142','5.99','2005-08-19 12:42:28.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7298','269','2','13759','2.99','2005-08-20 11:24:48.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7299','269','1','14266','4.99','2005-08-21 06:20:51.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7300','269','2','14693','6.99','2005-08-21 20:44:19.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7301','269','2','15788','2.99','2005-08-23 13:54:39.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7302','269','1','13025','3.98','2006-02-14 15:16:03.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7303','269','2','12610','0','2006-02-14 15:16:03.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7304','270','1','193','1.99','2005-05-26 06:41:48.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7305','270','1','1040','4.99','2005-05-31 05:35:16.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7306','270','1','1345','4.99','2005-06-15 12:32:13.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7307','270','1','1896','6.99','2005-06-17 04:25:46.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7308','270','1','2115','3.99','2005-06-17 20:02:16.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7309','270','2','3164','5.99','2005-06-20 21:29:00.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7310','270','1','3501','3.99','2005-07-06 00:11:28.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7311','270','1','3987','9.99','2005-07-06 23:28:24.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7312','270','2','5533','0.99','2005-07-10 02:19:28.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7313','270','2','6520','4.99','2005-07-12 04:05:16.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7314','270','1','8355','2.99','2005-07-29 04:57:43.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7315','270','2','8618','3.99','2005-07-29 13:48:20.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7316','270','1','10069','3.99','2005-07-31 19:43:18.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7317','270','1','10461','7.99','2005-08-01 09:32:53.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7318','270','2','10579','5.99','2005-08-01 13:48:22.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7319','270','2','10648','4.99','2005-08-01 16:08:52.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7320','270','1','11389','2.99','2005-08-02 18:39:12.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7321','270','1','11810','0.99','2005-08-17 11:56:48.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7322','270','2','11841','2.99','2005-08-17 13:12:20.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7323','270','1','11917','2.99','2005-08-17 16:08:17.000','2006-02-15 22:15:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7324','270','1','12192','2.99','2005-08-18 02:01:40.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7325','270','1','12442','2.99','2005-08-18 10:50:07.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7326','270','2','13945','1.99','2005-08-20 17:43:56.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7327','270','1','14618','0.99','2005-08-21 18:09:51.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7328','270','2','15620','6.99','2005-08-23 07:10:22.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7329','271','1','1096','8.99','2005-05-31 13:30:49.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7330','271','2','1852','2.99','2005-06-17 00:38:20.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7331','271','1','3640','1.99','2005-07-06 07:12:26.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7332','271','2','4545','2.99','2005-07-08 04:17:47.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7333','271','2','5878','1.99','2005-07-10 19:09:57.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7334','271','1','5922','2.99','2005-07-10 21:36:53.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7335','271','1','6024','2.99','2005-07-11 02:16:47.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7336','271','1','7618','3.99','2005-07-28 00:24:14.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7337','271','1','8592','0.99','2005-07-29 12:33:58.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7338','271','1','9821','4.99','2005-07-31 11:47:54.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7339','271','2','10143','7.99','2005-07-31 22:11:43.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7340','271','2','10310','4.99','2005-08-01 04:24:47.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7341','271','1','10599','3.99','2005-08-01 14:23:58.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7342','271','1','11431','2.99','2005-08-02 20:05:16.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7343','271','1','12219','4.99','2005-08-18 02:49:54.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7344','271','2','14234','0.99','2005-08-21 05:07:12.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7345','271','2','14355','4.99','2005-08-21 09:08:29.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7346','271','1','15244','2.99','2005-08-22 17:48:42.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7347','272','1','33','0.99','2005-05-25 04:18:51.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7348','272','1','405','6.99','2005-05-27 13:32:39.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7349','272','1','1041','6.99','2005-05-31 05:46:23.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7350','272','1','1072','0.99','2005-05-31 09:52:50.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7351','272','2','1604','4.99','2005-06-16 06:14:25.000','2006-02-15 22:15:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7352','272','2','2546','5.99','2005-06-19 02:39:39.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7353','272','1','3323','5.99','2005-06-21 08:45:33.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7354','272','2','5047','3.99','2005-07-09 03:44:15.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7355','272','2','5158','2.99','2005-07-09 08:53:09.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7356','272','2','7300','7.99','2005-07-27 12:50:17.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7357','272','2','7658','2.99','2005-07-28 02:09:12.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7358','272','1','8248','7.99','2005-07-29 00:41:56.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7359','272','2','9787','10.99','2005-07-31 10:26:19.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7360','272','1','10736','2.99','2005-08-01 19:30:21.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7361','272','2','11003','2.99','2005-08-02 05:03:05.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7362','272','2','11597','8.99','2005-08-17 03:02:56.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7363','272','1','11881','0.99','2005-08-17 14:31:56.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7364','272','2','12006','6.99','2005-08-17 19:09:12.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7365','272','2','13274','2.99','2005-08-19 17:50:03.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7366','272','1','13903','2.99','2005-08-20 16:07:55.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7367','273','2','122','3.99','2005-05-25 19:46:21.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7368','273','2','980','0.99','2005-05-30 21:45:19.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7369','273','2','1391','6.99','2005-06-15 16:11:21.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7370','273','2','1747','6.99','2005-06-16 16:53:33.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7371','273','2','1765','4.99','2005-06-16 17:56:10.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7372','273','1','2301','1.99','2005-06-18 08:24:03.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7373','273','1','3202','0.99','2005-06-21 00:33:47.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7374','273','2','3556','2.99','2005-07-06 02:46:13.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7375','273','1','4937','5.99','2005-07-08 22:29:59.000','2006-02-15 22:15:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7376','273','1','5256','7.99','2005-07-09 13:55:45.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7377','273','2','5435','7.99','2005-07-09 21:28:07.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7378','273','1','5605','2.99','2005-07-10 05:06:45.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7379','273','1','6592','8.99','2005-07-12 07:19:35.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7380','273','1','6635','1.99','2005-07-12 09:47:58.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7381','273','2','6696','2.99','2005-07-12 12:44:04.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7382','273','1','6717','5.99','2005-07-12 13:35:02.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7383','273','1','8449','2.99','2005-07-29 07:42:25.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7384','273','1','9186','4.99','2005-07-30 12:13:48.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7385','273','2','9285','5.99','2005-07-30 15:26:08.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7386','273','2','9391','0.99','2005-07-30 19:48:41.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7387','273','2','9693','3.99','2005-07-31 07:11:50.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7388','273','2','9729','0.99','2005-07-31 08:43:43.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7389','273','1','10272','8.99','2005-08-01 03:14:34.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7390','273','1','10753','3.99','2005-08-01 20:09:24.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7391','273','1','10768','6.99','2005-08-01 20:39:32.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7392','273','1','11282','4.99','2005-08-02 14:35:03.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7393','273','2','11509','4.99','2005-08-16 23:29:53.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7394','273','1','12692','0.99','2005-08-18 20:09:19.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7395','273','2','13738','4.99','2005-08-20 10:42:42.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7396','273','1','13955','5.99','2005-08-20 18:05:12.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7397','273','2','14092','4.99','2005-08-21 00:14:32.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7398','273','2','14558','2.99','2005-08-21 16:10:50.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7399','273','2','14911','2.99','2005-08-22 04:51:42.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7400','273','2','15372','2.99','2005-08-22 21:59:51.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7401','273','1','15760','6.99','2005-08-23 12:50:00.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7402','274','1','147','2.99','2005-05-26 00:17:50.000','2006-02-15 22:15:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7403','274','1','208','4.99','2005-05-26 08:10:22.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7404','274','2','301','2.99','2005-05-26 21:06:14.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7405','274','1','394','5.99','2005-05-27 11:26:11.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7406','274','2','474','2.99','2005-05-27 22:11:56.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7407','274','1','892','4.99','2005-05-30 08:02:56.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7408','274','1','2098','0.99','2005-06-17 18:42:09.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7409','274','2','3291','9.99','2005-06-21 06:55:36.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7410','274','2','3532','5.99','2005-07-06 01:24:38.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7411','274','1','4147','2.99','2005-07-07 08:32:12.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7412','274','2','4582','2.99','2005-07-08 06:09:09.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7413','274','2','6389','3.99','2005-07-11 22:18:20.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7414','274','2','8259','0.99','2005-07-29 01:05:16.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7415','274','2','8406','5.99','2005-07-29 06:34:45.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7416','274','2','8517','7.99','2005-07-29 10:00:48.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7417','274','1','9331','4.99','2005-07-30 17:46:50.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7418','274','1','9677','4.99','2005-07-31 06:39:45.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7419','274','2','10059','4.99','2005-07-31 19:20:49.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7420','274','1','10790','1.99','2005-08-01 21:38:37.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7421','274','2','10855','0.99','2005-08-02 00:06:37.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7422','274','1','11058','3.99','2005-08-02 06:38:44.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7423','274','2','11363','2.99','2005-08-02 17:48:39.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7424','274','1','12321','3.99','2005-08-18 06:27:05.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7425','274','1','13103','2.99','2005-08-19 11:05:51.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7426','274','2','13129','8.99','2005-08-19 12:05:04.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7427','274','1','13549','8.99','2005-08-20 03:58:41.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7428','274','1','14012','0.99','2005-08-20 20:42:12.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7429','274','1','14066','7.99','2005-08-20 22:45:58.000','2006-02-15 22:15:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7430','274','2','14164','7.99','2005-08-21 02:58:02.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7431','274','1','14388','4.99','2005-08-21 10:15:13.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7432','274','2','15143','2.99','2005-08-22 13:46:24.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7433','274','1','15260','2.99','2005-08-22 18:24:16.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7434','274','2','15328','2.99','2005-08-22 20:31:38.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7435','274','2','15819','3.99','2005-08-23 15:01:54.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7436','274','1','13486','0.99','2006-02-14 15:16:03.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7437','275','2','336','2.99','2005-05-27 03:15:23.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7438','275','2','1797','3.99','2005-06-16 20:13:03.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7439','275','2','2414','0.99','2005-06-18 17:01:55.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7440','275','1','2646','4.99','2005-06-19 09:56:01.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7441','275','1','3355','2.99','2005-06-21 11:30:47.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7442','275','2','4396','0.99','2005-07-07 21:14:19.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7443','275','1','4634','0.99','2005-07-08 08:40:02.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7444','275','2','4912','9.99','2005-07-08 21:26:11.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7445','275','2','6301','5.99','2005-07-11 17:54:09.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7446','275','2','6856','0.99','2005-07-12 19:50:16.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7447','275','1','7553','2.99','2005-07-27 22:11:36.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7448','275','2','7596','4.99','2005-07-27 23:33:57.000','2006-02-15 22:15:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7449','275','1','8746','2.99','2005-07-29 19:03:15.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7450','275','2','9258','2.99','2005-07-30 14:31:31.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7451','275','1','10479','6.99','2005-08-01 10:11:25.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7452','275','2','11309','1.99','2005-08-02 15:50:55.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7453','275','1','11610','4.99','2005-08-17 03:43:37.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7454','275','2','12589','5.99','2005-08-18 16:06:31.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7455','275','1','12606','1.99','2005-08-18 17:02:21.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7456','275','1','13037','3.99','2005-08-19 08:53:57.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7457','275','2','13860','2.99','2005-08-20 14:55:09.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7458','275','2','13865','1.99','2005-08-20 15:04:09.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7459','275','2','13902','0.99','2005-08-20 16:07:08.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7460','275','2','14063','0.99','2005-08-20 22:36:40.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7461','275','1','14187','5.99','2005-08-21 03:32:03.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7462','275','1','14296','2.99','2005-08-21 07:13:23.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7463','275','2','14483','5.99','2005-08-21 13:43:59.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7464','275','2','14727','4.99','2005-08-21 22:12:45.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7465','275','2','15269','2.99','2005-08-22 18:39:44.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7466','275','2','15496','3.99','2005-08-23 02:30:23.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7467','276','1','736','3.99','2005-05-29 08:10:07.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7468','276','1','860','10.99','2005-05-30 02:45:16.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7469','276','1','1352','0.99','2005-06-15 12:58:27.000','2006-02-15 22:15:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7470','276','2','2763','4.99','2005-06-19 17:23:34.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7471','276','2','3064','6.99','2005-06-20 13:53:13.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7472','276','2','3714','2.99','2005-07-06 10:51:28.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7473','276','1','4715','0.99','2005-07-08 12:15:37.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7474','276','2','5186','4.99','2005-07-09 10:18:40.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7475','276','2','5246','4.99','2005-07-09 13:25:18.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7476','276','2','7282','5.99','2005-07-27 12:00:19.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7477','276','2','7842','2.99','2005-07-28 09:10:06.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7478','276','1','9070','0.99','2005-07-30 07:40:39.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7479','276','1','9080','1.99','2005-07-30 08:02:39.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7480','276','1','9102','4.99','2005-07-30 08:48:20.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7481','276','1','9229','8.99','2005-07-30 13:38:17.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7482','276','2','10149','5.99','2005-07-31 22:20:46.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7483','276','2','10691','0.99','2005-08-01 18:09:53.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7484','276','1','10763','2.99','2005-08-01 20:32:27.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7485','276','2','11085','2.99','2005-08-02 07:36:44.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7486','276','1','11636','4.99','2005-08-17 04:36:31.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7487','276','2','11961','3.99','2005-08-17 17:28:01.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7488','276','2','12178','5.99','2005-08-18 01:17:32.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7489','276','2','12251','4.99','2005-08-18 03:59:02.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7490','276','1','12650','4.99','2005-08-18 18:33:20.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7491','276','1','14000','4.99','2005-08-20 20:06:05.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7492','276','2','15718','2.99','2005-08-23 11:05:17.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7493','276','1','15769','3.99','2005-08-23 13:16:15.000','2006-02-15 22:15:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7494','276','2','15923','4.99','2005-08-23 18:08:19.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7495','277','2','308','6.99','2005-05-26 22:01:39.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7496','277','1','1331','2.99','2005-06-15 11:34:33.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7497','277','2','1717','2.99','2005-06-16 14:47:16.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7498','277','2','2162','3.99','2005-06-17 23:45:47.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7499','277','2','2723','4.99','2005-06-19 14:55:23.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7500','277','1','3247','5.99','2005-06-21 03:12:15.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7501','277','2','3274','4.99','2005-06-21 05:30:36.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7502','277','1','3344','2.99','2005-06-21 10:57:27.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7503','277','2','3740','5.99','2005-07-06 11:55:35.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7504','277','2','3897','2.99','2005-07-06 19:11:43.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7505','277','1','4290','4.99','2005-07-07 15:47:10.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7506','277','2','4987','5.99','2005-07-09 00:45:41.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7507','277','1','5861','0.99','2005-07-10 18:14:22.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7508','277','1','5913','2.99','2005-07-10 20:58:55.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7509','277','2','6455','2.99','2005-07-12 01:01:58.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7510','277','1','6487','5.99','2005-07-12 02:17:00.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7511','277','2','7423','4.99','2005-07-27 17:11:47.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7512','277','2','8410','2.99','2005-07-29 06:41:36.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7513','277','2','9669','4.99','2005-07-31 06:31:36.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7514','277','1','9901','0.99','2005-07-31 14:20:59.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7515','277','2','11074','3.99','2005-08-02 07:21:43.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7516','277','2','11162','4.99','2005-08-02 10:07:54.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7517','277','2','11574','0.99','2005-08-17 01:38:19.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7518','277','2','12149','3.99','2005-08-18 00:13:51.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7519','277','1','12458','5.99','2005-08-18 11:22:53.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7520','277','1','13122','4.99','2005-08-19 11:53:49.000','2006-02-15 22:15:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7521','277','2','13526','4.99','2005-08-20 02:58:42.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7522','277','1','13714','4.99','2005-08-20 09:41:09.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7523','277','2','14227','4.99','2005-08-21 04:56:31.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7524','277','2','14745','4.99','2005-08-21 22:53:01.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7525','277','1','15008','10.99','2005-08-22 08:24:32.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7526','277','1','15345','5.99','2005-08-22 21:05:50.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7527','278','1','1092','4.99','2005-05-31 12:15:57.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7528','278','2','1387','0.99','2005-06-15 15:40:56.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7529','278','1','1978','2.99','2005-06-17 09:42:34.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7530','278','2','2078','4.99','2005-06-17 16:48:55.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7531','278','1','3453','2.99','2005-06-21 21:12:11.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7532','278','1','3776','2.99','2005-07-06 13:31:37.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7533','278','1','4430','4.99','2005-07-07 22:35:24.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7534','278','2','4866','8.99','2005-07-08 19:09:59.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7535','278','2','6869','4.99','2005-07-12 20:12:06.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7536','278','1','7239','0.99','2005-07-27 10:20:27.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7537','278','2','7834','0.99','2005-07-28 08:46:43.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7538','278','2','8222','5.99','2005-07-28 23:51:53.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7539','278','1','8953','4.99','2005-07-30 03:21:05.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7540','278','2','9448','2.99','2005-07-30 21:56:13.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7541','278','1','10649','2.99','2005-08-01 16:11:40.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7542','278','1','10731','2.99','2005-08-01 19:21:48.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7543','278','2','10849','3.99','2005-08-01 23:51:00.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7544','278','1','11095','5.99','2005-08-02 08:03:20.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7545','278','2','11531','0.99','2005-08-17 00:30:04.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7546','278','1','12787','0.99','2005-08-19 00:07:58.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7547','278','1','13896','0.99','2005-08-20 15:59:56.000','2006-02-15 22:15:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7548','278','2','13976','0.99','2005-08-20 19:02:16.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7549','278','1','14268','2.99','2005-08-21 06:21:24.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7550','278','2','14803','0.99','2005-08-22 00:49:10.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7551','278','1','14986','4.99','2005-08-22 07:37:24.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7552','278','1','16019','4.99','2005-08-23 21:30:45.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7553','279','1','979','2.99','2005-05-30 21:37:11.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7554','279','2','1019','0.99','2005-05-31 03:05:07.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7555','279','1','1178','2.99','2005-06-15 00:36:40.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7556','279','1','2147','4.99','2005-06-17 22:28:13.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7557','279','1','3215','0.99','2005-06-21 01:11:32.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7558','279','1','3374','2.99','2005-06-21 13:36:30.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7559','279','1','3375','4.99','2005-06-21 13:37:18.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7560','279','1','4476','4.99','2005-07-08 00:34:25.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7561','279','1','4978','7.99','2005-07-09 00:22:02.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7562','279','2','5248','2.99','2005-07-09 13:29:44.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7563','279','1','5361','9.99','2005-07-09 18:15:32.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7564','279','1','6176','0.99','2005-07-11 10:48:21.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7565','279','1','7947','2.99','2005-07-28 13:05:50.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7566','279','2','8559','3.99','2005-07-29 11:25:54.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7567','279','2','9820','5.99','2005-07-31 11:46:57.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7568','279','2','10177','2.99','2005-07-31 23:42:33.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7569','279','2','11250','6.99','2005-08-02 13:35:42.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7570','279','1','11515','2.99','2005-08-16 23:54:34.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7571','279','1','11703','4.99','2005-08-17 07:19:29.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7572','279','2','12935','2.99','2005-08-19 05:20:25.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7573','279','1','12949','4.99','2005-08-19 05:55:52.000','2006-02-15 22:15:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7574','279','1','13105','7.99','2005-08-19 11:06:16.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7575','279','1','13233','2.99','2005-08-19 16:14:41.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7576','279','2','13588','4.99','2005-08-20 05:47:11.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7577','279','2','14206','2.99','2005-08-21 03:59:26.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7578','279','1','14714','3.99','2005-08-21 21:27:43.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7579','279','1','14779','5.99','2005-08-22 00:00:56.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7580','279','1','14789','4.99','2005-08-22 00:29:39.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7581','279','2','15580','6.99','2005-08-23 05:39:06.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7582','279','1','15606','2.99','2005-08-23 06:50:27.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7583','279','2','13538','4.99','2006-02-14 15:16:03.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7584','280','1','1014','4.99','2005-05-31 02:39:16.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7585','280','1','2656','3.99','2005-06-19 10:42:33.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7586','280','2','3009','4.99','2005-06-20 10:24:44.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7587','280','2','3097','0.99','2005-06-20 16:26:14.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7588','280','1','4616','4.99','2005-07-08 07:48:12.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7589','280','2','6851','0.99','2005-07-12 19:32:14.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7590','280','1','7070','4.99','2005-07-27 04:01:08.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7591','280','2','7901','0.99','2005-07-28 11:12:12.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7592','280','2','8319','0.99','2005-07-29 03:44:52.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7593','280','1','8365','0.99','2005-07-29 05:11:00.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7594','280','1','8565','7.99','2005-07-29 11:35:23.000','2006-02-15 22:15:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7595','280','2','8695','6.99','2005-07-29 16:44:55.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7596','280','2','8744','3.99','2005-07-29 18:58:24.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7597','280','1','8912','0.99','2005-07-30 01:31:25.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7598','280','2','9103','0.99','2005-07-30 08:49:26.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7599','280','1','10847','9.99','2005-08-01 23:49:33.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7600','280','1','11366','4.99','2005-08-02 18:01:25.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7601','280','1','11517','2.99','2005-08-16 23:56:28.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7602','280','1','12053','4.99','2005-08-17 20:57:27.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7603','280','1','12849','5.99','2005-08-19 02:05:37.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7604','280','2','13231','9.99','2005-08-19 16:12:49.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7605','280','1','13321','4.99','2005-08-19 19:40:37.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7606','280','1','13667','4.99','2005-08-20 08:25:34.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7607','280','2','15036','2.99','2005-08-22 09:36:00.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7608','280','1','15312','4.99','2005-08-22 19:58:15.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7609','280','2','15554','5.99','2005-08-23 04:48:12.000','2006-02-15 22:15:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7610','280','2','15950','5.99','2005-08-23 19:09:39.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7611','281','2','650','2.99','2005-05-28 19:45:40.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7612','281','2','754','2.99','2005-05-29 10:18:59.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7613','281','2','1485','5.99','2005-06-15 21:24:10.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7614','281','1','2254','5.99','2005-06-18 05:15:14.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7615','281','1','4607','0.99','2005-07-08 07:15:14.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7616','281','2','4864','6.99','2005-07-08 19:05:34.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7617','281','2','5410','5.99','2005-07-09 20:21:10.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7618','281','2','6825','0.99','2005-07-12 18:28:12.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7619','281','2','7034','2.99','2005-07-27 03:03:37.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7620','281','1','7525','3.99','2005-07-27 21:13:28.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7621','281','2','8131','0.99','2005-07-28 19:55:21.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7622','281','2','8180','4.99','2005-07-28 22:05:24.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7623','281','1','13641','2.99','2005-08-20 07:34:42.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7624','281','1','14196','1.99','2005-08-21 03:40:40.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7625','282','2','48','1.99','2005-05-25 06:20:46.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7626','282','2','282','6.99','2005-05-26 18:56:26.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7627','282','2','564','0.99','2005-05-28 09:12:09.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7628','282','1','2016','2.99','2005-06-17 12:18:36.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7629','282','2','2176','2.99','2005-06-18 00:29:51.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7630','282','2','3408','4.99','2005-06-21 16:15:11.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7631','282','1','3417','2.99','2005-06-21 17:06:20.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7632','282','2','3675','2.99','2005-07-06 09:09:19.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7633','282','1','3885','2.99','2005-07-06 18:43:43.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7634','282','1','4359','2.99','2005-07-07 19:30:20.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7635','282','2','4412','4.99','2005-07-07 21:56:53.000','2006-02-15 22:15:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7636','282','1','5113','0.99','2005-07-09 07:06:18.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7637','282','2','5319','8.99','2005-07-09 16:17:44.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7638','282','1','5926','6.99','2005-07-10 21:53:42.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7639','282','1','7433','2.99','2005-07-27 17:32:20.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7640','282','2','7534','3.99','2005-07-27 21:26:17.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7641','282','1','8223','6.99','2005-07-28 23:56:01.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7642','282','2','8270','4.99','2005-07-29 01:27:22.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7643','282','2','8468','1.99','2005-07-29 08:26:04.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7644','282','2','8743','0.99','2005-07-29 18:57:01.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7645','282','2','8973','1.99','2005-07-30 04:09:13.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7646','282','2','9658','9.99','2005-07-31 06:00:52.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7647','282','2','11226','2.99','2005-08-02 12:47:30.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7648','282','1','13278','2.99','2005-08-19 17:57:53.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7649','282','2','13749','2.99','2005-08-20 11:00:37.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7650','282','2','15543','4.99','2005-08-23 04:15:41.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7651','282','2','15430','0.99','2006-02-14 15:16:03.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7652','283','1','1749','0.99','2005-06-16 16:56:00.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7653','283','2','1796','2.99','2005-06-16 20:10:43.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7654','283','2','2333','2.99','2005-06-18 10:55:54.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7655','283','1','2685','2.99','2005-06-19 12:35:21.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7656','283','2','2849','7.99','2005-06-19 23:06:00.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7657','283','1','3534','4.99','2005-07-06 01:32:27.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7658','283','1','3568','6.99','2005-07-06 03:11:57.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7659','283','2','3590','4.99','2005-07-06 04:35:12.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7660','283','2','3672','0.99','2005-07-06 09:01:56.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7661','283','2','4683','2.99','2005-07-08 10:38:28.000','2006-02-15 22:15:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7662','283','2','4876','1.99','2005-07-08 19:27:50.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7663','283','2','5989','2.99','2005-07-11 00:57:53.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7664','283','1','6075','0.99','2005-07-11 05:03:03.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7665','283','1','6300','1.99','2005-07-11 17:50:09.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7666','283','2','6313','0.99','2005-07-11 18:29:52.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7667','283','1','6827','4.99','2005-07-12 18:33:45.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7668','283','1','7504','0.99','2005-07-27 20:24:31.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7669','283','1','7816','0.99','2005-07-28 08:14:12.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7670','283','2','9353','4.99','2005-07-30 18:30:37.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7671','283','2','9478','2.99','2005-07-30 23:12:53.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7672','283','2','9572','2.99','2005-07-31 02:44:10.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7673','283','2','9918','2.99','2005-07-31 14:55:22.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7674','283','1','11637','0.99','2005-08-17 04:36:39.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7675','283','2','11846','2.99','2005-08-17 13:18:29.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7676','283','2','11966','0.99','2005-08-17 17:40:04.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7677','283','1','12290','6.99','2005-08-18 05:08:03.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7678','283','1','13229','2.99','2005-08-19 16:08:33.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7679','283','1','15837','2.99','2005-08-23 15:29:41.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7680','284','2','423','0.99','2005-05-27 15:32:57.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7681','284','2','791','0.99','2005-05-29 16:30:42.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7682','284','1','1145','6.99','2005-05-31 20:13:45.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7683','284','1','1171','0.99','2005-06-14 23:50:11.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7684','284','2','2813','6.99','2005-06-19 20:01:47.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7685','284','2','3296','0.99','2005-06-21 07:04:53.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7686','284','1','3572','0.99','2005-07-06 03:33:23.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7687','284','2','4081','2.99','2005-07-07 05:10:08.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7688','284','1','4759','7.99','2005-07-08 14:39:22.000','2006-02-15 22:15:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7689','284','2','4931','7.99','2005-07-08 22:16:18.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7690','284','1','5161','6.99','2005-07-09 08:57:56.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7691','284','1','6276','5.99','2005-07-11 16:15:50.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7692','284','2','6982','2.99','2005-07-27 00:53:41.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7693','284','1','7164','6.99','2005-07-27 07:36:34.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7694','284','1','7463','4.99','2005-07-27 18:48:32.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7695','284','2','7716','8.99','2005-07-28 04:33:15.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7696','284','1','8888','2.99','2005-07-30 00:39:36.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7697','284','1','9790','0.99','2005-07-31 10:34:08.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7698','284','1','10396','7.99','2005-08-01 07:08:46.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7699','284','1','10535','4.99','2005-08-01 12:21:13.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7700','284','2','12162','3.99','2005-08-18 00:44:30.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7701','284','1','14007','5.99','2005-08-20 20:22:47.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7702','284','1','14648','4.99','2005-08-21 19:18:01.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7703','284','2','14746','4.99','2005-08-21 22:54:02.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7704','284','1','14921','4.99','2005-08-22 05:12:24.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7705','284','2','15135','3.99','2005-08-22 13:19:19.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7706','284','1','12064','5.98','2006-02-14 15:16:03.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7707','284','2','12959','0','2006-02-14 15:16:03.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7708','285','2','1161','7.99','2005-06-14 23:07:08.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7709','285','2','1302','3.99','2005-06-15 09:48:37.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7710','285','1','2249','5.99','2005-06-18 05:03:08.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7711','285','2','4007','6.99','2005-07-07 00:26:05.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7712','285','2','5112','2.99','2005-07-09 07:04:04.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7713','285','1','5683','9.99','2005-07-10 08:52:13.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7714','285','1','6010','0.99','2005-07-11 01:52:28.000','2006-02-15 22:15:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7715','285','2','6083','3.99','2005-07-11 05:12:49.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7716','285','1','6094','4.99','2005-07-11 05:54:42.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7717','285','2','6333','4.99','2005-07-11 19:20:16.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7718','285','2','6644','0.99','2005-07-12 10:39:39.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7719','285','1','7211','6.99','2005-07-27 09:20:00.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7720','285','1','7452','9.99','2005-07-27 18:26:39.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7721','285','1','7745','9.99','2005-07-28 05:46:28.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7722','285','1','8154','4.99','2005-07-28 20:56:18.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7723','285','2','8466','0.99','2005-07-29 08:24:47.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7724','285','1','10493','5.99','2005-08-01 10:43:12.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7725','285','2','10628','2.99','2005-08-01 15:33:19.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7726','285','1','10641','4.99','2005-08-01 15:44:57.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7727','285','1','12027','8.99','2005-08-17 20:01:12.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7728','285','1','12444','0.99','2005-08-18 10:53:12.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7729','285','1','12449','0.99','2005-08-18 11:03:04.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7730','285','2','12687','9.99','2005-08-18 19:57:39.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7731','285','2','13102','7.99','2005-08-19 11:02:03.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7732','285','2','15251','0.99','2005-08-22 18:03:57.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7733','285','1','15489','4.99','2005-08-23 02:06:41.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7734','286','2','81','6.99','2005-05-25 12:15:19.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7735','286','1','1690','8.99','2005-06-16 12:24:18.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7736','286','1','2195','4.99','2005-06-18 01:44:46.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7737','286','2','3592','4.99','2005-07-06 04:38:50.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7738','286','2','3692','3.99','2005-07-06 09:54:12.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7739','286','2','4242','6.99','2005-07-07 13:39:01.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7740','286','2','4461','9.99','2005-07-07 23:59:43.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7741','286','1','4707','4.99','2005-07-08 11:57:28.000','2006-02-15 22:15:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7742','286','1','4894','2.99','2005-07-08 20:21:31.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7743','286','1','5796','4.99','2005-07-10 14:42:54.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7744','286','2','6611','2.99','2005-07-12 08:20:23.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7745','286','1','7254','2.99','2005-07-27 10:48:50.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7746','286','1','7299','2.99','2005-07-27 12:49:56.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7747','286','1','7368','0.99','2005-07-27 15:06:05.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7748','286','1','7422','2.99','2005-07-27 17:10:42.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7749','286','1','7719','6.99','2005-07-28 04:39:09.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7750','286','2','8399','0.99','2005-07-29 06:20:18.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7751','286','2','9280','6.99','2005-07-30 15:15:38.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7752','286','1','9809','3.99','2005-07-31 11:19:21.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7753','286','2','10105','5.99','2005-07-31 20:54:20.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7754','286','2','11670','0.99','2005-08-17 05:48:59.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7755','286','2','12595','0.99','2005-08-18 16:27:08.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7756','286','1','12656','0.99','2005-08-18 18:58:35.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7757','286','2','13635','5.99','2005-08-20 07:17:35.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7758','286','1','13975','4.99','2005-08-20 18:58:23.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7759','286','1','14905','0.99','2005-08-22 04:34:22.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7760','286','2','15629','4.99','2005-08-23 07:28:22.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7761','287','2','498','0.99','2005-05-28 01:01:21.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7762','287','1','655','2.99','2005-05-28 20:16:20.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7763','287','2','964','2.99','2005-05-30 18:53:21.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7764','287','1','1247','7.99','2005-06-15 05:16:40.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7765','287','2','1642','2.99','2005-06-16 08:54:15.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7766','287','2','2286','9.99','2005-06-18 07:02:32.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7767','287','2','2612','6.99','2005-06-19 07:19:41.000','2006-02-15 22:15:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7768','287','2','4877','4.99','2005-07-08 19:31:02.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7769','287','2','5346','1.99','2005-07-09 17:29:01.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7770','287','1','5593','3.99','2005-07-10 04:33:13.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7771','287','2','5761','0.99','2005-07-10 12:45:36.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7772','287','2','6379','3.99','2005-07-11 21:51:25.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7773','287','1','6397','2.99','2005-07-11 22:34:02.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7774','287','2','7402','2.99','2005-07-27 16:19:40.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7775','287','2','7777','2.99','2005-07-28 07:04:42.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7776','287','2','8994','6.99','2005-07-30 04:51:32.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7777','287','2','9716','1.99','2005-07-31 08:23:53.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7778','287','1','10027','6.99','2005-07-31 18:33:51.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7779','287','2','10574','2.99','2005-08-01 13:36:51.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7780','287','2','10807','4.99','2005-08-01 22:26:10.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7781','287','2','11106','4.99','2005-08-02 08:17:38.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7782','287','1','11716','4.99','2005-08-17 07:40:55.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7783','287','2','12861','2.99','2005-08-19 02:30:24.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7784','287','2','14715','6.99','2005-08-21 21:28:18.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7785','287','2','15076','1.99','2005-08-22 11:05:34.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7786','287','1','15084','4.99','2005-08-22 11:17:59.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7787','287','2','15127','0.99','2005-08-22 12:56:29.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7788','287','1','15614','2.99','2005-08-23 07:05:15.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7789','287','2','14204','0.99','2006-02-14 15:16:03.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7790','288','2','93','3.99','2005-05-25 15:54:16.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7791','288','2','427','6.99','2005-05-27 16:10:04.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7792','288','1','503','4.99','2005-05-28 01:35:25.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7793','288','2','565','5.99','2005-05-28 09:26:31.000','2006-02-15 22:15:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7794','288','1','1466','5.99','2005-06-15 20:46:04.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7795','288','1','3958','3.99','2005-07-06 22:07:33.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7796','288','1','4692','2.99','2005-07-08 11:07:06.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7797','288','2','4758','0.99','2005-07-08 14:38:02.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7798','288','1','6399','2.99','2005-07-11 22:39:05.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7799','288','2','6518','3.99','2005-07-12 03:59:42.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7800','288','2','7744','0.99','2005-07-28 05:38:20.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7801','288','2','7855','2.99','2005-07-28 09:43:02.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7802','288','2','9429','2.99','2005-07-30 21:19:26.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7803','288','1','9732','0.99','2005-07-31 08:56:08.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7804','288','1','10927','9.99','2005-08-02 02:31:15.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7805','288','2','11952','2.99','2005-08-17 17:14:57.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7806','288','1','12134','1.99','2005-08-17 23:49:43.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7807','288','1','13219','2.99','2005-08-19 15:40:28.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7808','288','1','13227','0.99','2005-08-19 16:05:38.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7809','288','2','13363','2.99','2005-08-19 21:07:59.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7810','288','2','14113','0.99','2005-08-21 01:03:30.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7811','288','2','14756','0.99','2005-08-21 23:21:23.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7812','288','2','15058','2.99','2005-08-22 10:20:55.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7813','288','1','15119','2.99','2005-08-22 12:41:33.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7814','289','2','1880','4.99','2005-06-17 03:08:59.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7815','289','2','2316','0.99','2005-06-18 09:04:59.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7816','289','1','2387','6.99','2005-06-18 15:24:19.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7817','289','1','2784','10.99','2005-06-19 18:40:29.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7818','289','2','2948','6.99','2005-06-20 06:02:35.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7819','289','2','3123','6.99','2005-06-20 18:26:14.000','2006-02-15 22:15:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7820','289','1','3588','2.99','2005-07-06 04:29:13.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7821','289','2','4622','0.99','2005-07-08 08:02:42.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7822','289','1','5089','4.99','2005-07-09 05:45:40.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7823','289','2','5342','8.99','2005-07-09 17:20:03.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7824','289','2','5584','4.99','2005-07-10 04:15:25.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7825','289','2','5724','0.99','2005-07-10 11:18:12.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7826','289','2','6007','3.99','2005-07-11 01:43:06.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7827','289','2','6536','7.99','2005-07-12 04:44:25.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7828','289','1','7151','4.99','2005-07-27 07:14:31.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7829','289','1','7162','4.99','2005-07-27 07:32:45.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7830','289','2','7325','0.99','2005-07-27 13:46:55.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7831','289','1','9498','2.99','2005-07-30 23:56:55.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7832','289','2','10297','7.99','2005-08-01 04:05:04.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7833','289','1','12158','1.99','2005-08-18 00:34:20.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7834','289','1','12170','0.99','2005-08-18 01:06:10.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7835','289','2','12558','7.99','2005-08-18 14:52:35.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7836','289','2','13165','0.99','2005-08-19 13:34:10.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7837','289','2','13211','0.99','2005-08-19 15:23:41.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7838','289','2','13256','9.99','2005-08-19 16:54:12.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7839','289','2','13336','5.99','2005-08-19 20:03:22.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7840','289','2','13891','6.99','2005-08-20 15:42:05.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7841','289','1','14087','0.99','2005-08-20 23:53:40.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7842','289','2','14729','4.99','2005-08-21 22:16:57.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7843','289','2','14917','4.99','2005-08-22 05:03:59.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7844','290','1','160','2.99','2005-05-26 01:46:20.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7845','290','1','1220','6.99','2005-06-15 03:26:15.000','2006-02-15 22:15:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7846','290','2','1336','8.99','2005-06-15 12:01:34.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7847','290','2','1496','4.99','2005-06-15 21:55:58.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7848','290','2','1532','0.99','2005-06-16 00:41:31.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7849','290','1','3013','3.99','2005-06-20 10:45:09.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7850','290','2','4039','4.99','2005-07-07 02:57:59.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7851','290','1','4073','0.99','2005-07-07 04:49:13.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7852','290','2','4416','0.99','2005-07-07 22:04:36.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7853','290','1','5105','2.99','2005-07-09 06:38:59.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7854','290','2','5214','5.99','2005-07-09 11:43:08.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7855','290','2','5827','2.99','2005-07-10 16:22:20.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7856','290','2','6816','4.99','2005-07-12 18:18:50.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7857','290','1','6952','4.99','2005-07-26 23:51:27.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7858','290','2','7265','2.99','2005-07-27 11:19:01.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7859','290','1','7650','1.99','2005-07-28 01:47:20.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7860','290','1','8639','4.99','2005-07-29 14:30:31.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7861','290','1','9000','7.99','2005-07-30 04:58:55.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7862','290','1','9413','0.99','2005-07-30 20:44:39.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7863','290','2','10096','3.99','2005-07-31 20:38:58.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7864','290','1','10194','1.99','2005-08-01 00:33:52.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7865','290','1','10901','2.99','2005-08-02 01:35:44.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7866','290','1','11596','6.99','2005-08-17 02:53:55.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7867','290','2','12193','3.99','2005-08-18 02:03:59.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7868','290','2','12778','4.99','2005-08-18 23:40:23.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7869','290','2','13190','1.99','2005-08-19 14:27:59.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7870','290','1','13367','2.99','2005-08-19 21:19:27.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7871','290','2','13687','2.99','2005-08-20 08:57:51.000','2006-02-15 22:15:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7872','291','1','54','4.99','2005-05-25 07:23:25.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7873','291','2','747','4.99','2005-05-29 09:26:34.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7874','291','1','1012','2.99','2005-05-31 02:18:05.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7875','291','1','1191','2.99','2005-06-15 01:10:35.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7876','291','1','2300','2.99','2005-06-18 08:22:34.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7877','291','2','3042','2.99','2005-06-20 12:38:27.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7878','291','2','3512','4.99','2005-07-06 00:43:06.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7879','291','2','4862','3.99','2005-07-08 19:02:46.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7880','291','2','5754','2.99','2005-07-10 12:32:43.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7881','291','2','6516','4.99','2005-07-12 03:51:54.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7882','291','1','6796','2.99','2005-07-12 16:44:16.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7883','291','1','7561','5.99','2005-07-27 22:21:05.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7884','291','2','7564','0.99','2005-07-27 22:31:17.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7885','291','1','8690','0.99','2005-07-29 16:39:28.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7886','291','2','8697','4.99','2005-07-29 16:46:07.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7887','291','1','9165','5.99','2005-07-30 11:24:28.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7888','291','2','9201','5.99','2005-07-30 12:42:21.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7889','291','2','9919','7.99','2005-07-31 14:55:46.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7890','291','1','10463','4.99','2005-08-01 09:39:43.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7891','291','2','11145','0.99','2005-08-02 09:43:24.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7892','291','1','13665','5.99','2005-08-20 08:19:20.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7893','291','2','14241','4.99','2005-08-21 05:24:55.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7894','291','2','15663','3.99','2005-08-23 08:54:26.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7895','292','1','324','0.99','2005-05-27 01:00:04.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7896','292','1','1901','3.99','2005-06-17 04:35:19.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7897','292','2','2258','3.99','2005-06-18 05:30:36.000','2006-02-15 22:15:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7898','292','1','2838','3.99','2005-06-19 22:06:06.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7899','292','2','3328','2.99','2005-06-21 09:08:44.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7900','292','2','3557','0.99','2005-07-06 02:48:39.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7901','292','1','4200','4.99','2005-07-07 11:15:11.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7902','292','2','5095','4.99','2005-07-09 06:08:22.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7903','292','2','5257','0.99','2005-07-09 13:56:43.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7904','292','1','5940','4.99','2005-07-10 22:31:01.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7905','292','1','6270','8.99','2005-07-11 15:59:10.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7906','292','1','6900','6.99','2005-07-12 21:45:25.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7907','292','2','7199','5.99','2005-07-27 08:53:23.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7908','292','1','7216','2.99','2005-07-27 09:27:45.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7909','292','1','7545','2.99','2005-07-27 21:48:03.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7910','292','1','7766','4.99','2005-07-28 06:41:57.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7911','292','1','8047','2.99','2005-07-28 16:49:43.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7912','292','2','8842','4.99','2005-07-29 23:03:40.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7913','292','1','8990','8.99','2005-07-30 04:41:42.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7914','292','1','9792','5.99','2005-07-31 10:43:41.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7915','292','2','9819','1.99','2005-07-31 11:39:13.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7916','292','1','11193','4.99','2005-08-02 11:31:33.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7917','292','1','12739','10.99','2005-08-18 22:15:18.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7918','292','1','13715','2.99','2005-08-20 09:43:06.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7919','292','1','14499','0.99','2005-08-21 14:11:19.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7920','292','2','14845','4.99','2005-08-22 02:12:44.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7921','292','1','15117','2.99','2005-08-22 12:38:20.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7922','293','2','445','0.99','2005-05-27 18:42:57.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7923','293','1','924','4.99','2005-05-30 12:10:59.000','2006-02-15 22:15:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7924','293','2','1034','8.99','2005-05-31 04:53:40.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7925','293','1','1589','9.99','2005-06-16 04:58:03.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7926','293','1','1829','5.99','2005-06-16 22:14:21.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7927','293','2','1860','4.99','2005-06-17 01:17:12.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7928','293','1','2386','4.99','2005-06-18 15:22:51.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7929','293','2','3025','2.99','2005-06-20 11:46:48.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7930','293','1','3290','1.99','2005-06-21 06:45:34.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7931','293','2','3452','4.99','2005-06-21 21:11:27.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7932','293','1','3906','3.99','2005-07-06 19:35:55.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7933','293','2','4343','0.99','2005-07-07 18:48:54.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7934','293','2','4542','4.99','2005-07-08 04:06:30.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7935','293','2','4944','6.99','2005-07-08 22:44:28.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7936','293','2','5765','3.99','2005-07-10 13:03:02.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7937','293','1','6432','9.99','2005-07-12 00:09:41.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7938','293','2','7607','4.99','2005-07-28 00:05:53.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7939','293','1','8589','4.99','2005-07-29 12:28:17.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7940','293','1','8745','2.99','2005-07-29 19:03:05.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7941','293','2','9123','2.99','2005-07-30 09:39:15.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7942','293','2','11131','1.99','2005-08-02 09:10:04.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7943','293','1','11576','2.99','2005-08-17 01:53:20.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7944','293','2','13013','6.99','2005-08-19 07:55:51.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7945','293','1','13029','2.99','2005-08-19 08:28:04.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7946','293','2','13504','5.99','2005-08-20 02:01:48.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7947','293','1','13817','4.99','2005-08-20 13:15:30.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7948','293','1','14248','6.99','2005-08-21 05:35:57.000','2006-02-15 22:15:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7949','293','1','15258','4.99','2005-08-22 18:22:44.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7950','293','1','15402','8.99','2005-08-22 23:17:41.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7951','293','1','15508','7.99','2005-08-23 02:49:04.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7952','293','2','15675','5.99','2005-08-23 09:18:52.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7953','294','1','595','1.99','2005-05-28 13:59:54.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7954','294','1','2900','2.99','2005-06-20 02:40:04.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7955','294','2','3330','2.99','2005-06-21 09:22:37.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7956','294','1','3681','4.99','2005-07-06 09:19:30.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7957','294','2','4019','4.99','2005-07-07 01:27:44.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7958','294','1','4786','7.99','2005-07-08 16:13:05.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7959','294','2','6185','5.99','2005-07-11 11:25:09.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7960','294','2','7415','6.99','2005-07-27 16:50:59.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7961','294','1','7765','4.99','2005-07-28 06:40:33.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7962','294','2','8843','4.99','2005-07-29 23:04:25.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7963','294','2','9194','2.99','2005-07-30 12:28:45.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7964','294','1','9522','2.99','2005-07-31 00:55:11.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7965','294','2','9607','0.99','2005-07-31 03:51:06.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7966','294','2','10186','0.99','2005-08-01 00:12:36.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7967','294','2','10220','4.99','2005-08-01 01:13:22.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7968','294','1','10551','6.99','2005-08-01 12:48:55.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7969','294','2','10600','2.99','2005-08-01 14:25:21.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7970','294','2','10642','4.99','2005-08-01 15:45:11.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7971','294','2','11071','2.99','2005-08-02 07:10:53.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7972','294','1','11390','2.99','2005-08-02 18:39:16.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7973','294','2','11875','4.99','2005-08-17 14:16:48.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7974','294','2','11981','2.99','2005-08-17 18:10:40.000','2006-02-15 22:15:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7975','294','1','12278','5.99','2005-08-18 04:46:45.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7976','294','1','14474','2.99','2005-08-21 13:22:48.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7977','294','2','14630','7.99','2005-08-21 18:43:44.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7978','294','1','15839','5.99','2005-08-23 15:34:46.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7979','295','2','371','3.99','2005-05-27 08:08:18.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7980','295','1','1184','5.99','2005-06-15 00:49:36.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7981','295','1','1328','2.99','2005-06-15 11:23:27.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7982','295','2','1935','2.99','2005-06-17 07:14:15.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7983','295','1','2054','2.99','2005-06-17 15:26:37.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7984','295','1','2431','1.99','2005-06-18 17:53:03.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7985','295','1','2638','1.99','2005-06-19 09:23:30.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7986','295','1','2999','2.99','2005-06-20 09:30:34.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7987','295','1','3198','1.99','2005-06-21 00:08:54.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7988','295','2','3394','8.99','2005-06-21 15:17:39.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7989','295','2','3496','1.99','2005-07-05 23:59:15.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7990','295','1','3876','9.99','2005-07-06 18:21:13.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7991','295','1','4164','1.99','2005-07-07 09:20:11.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7992','295','1','4432','1.99','2005-07-07 22:40:02.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7993','295','1','5019','2.99','2005-07-09 02:04:32.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7994','295','2','5053','4.99','2005-07-09 03:59:46.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7995','295','2','5283','2.99','2005-07-09 15:07:17.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7996','295','2','5994','4.99','2005-07-11 01:14:10.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7997','295','1','6252','2.99','2005-07-11 15:06:29.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7998','295','2','6331','3.99','2005-07-11 19:17:21.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('7999','295','2','8087','0.99','2005-07-28 18:21:16.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8000','295','1','8108','7.99','2005-07-28 19:07:38.000','2006-02-15 22:15:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8001','295','1','8840','9.99','2005-07-29 22:55:38.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8002','295','2','8932','2.99','2005-07-30 02:31:26.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8003','295','1','9425','7.99','2005-07-30 21:11:21.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8004','295','2','9692','8.99','2005-07-31 07:11:04.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8005','295','2','9793','4.99','2005-07-31 10:45:11.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8006','295','2','10160','4.99','2005-07-31 23:07:40.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8007','295','2','10222','0.99','2005-08-01 01:17:42.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8008','295','1','10349','3.99','2005-08-01 05:27:13.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8009','295','2','11083','4.99','2005-08-02 07:32:01.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8010','295','2','11913','5.99','2005-08-17 15:53:17.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8011','295','2','12041','4.99','2005-08-17 20:34:33.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8012','295','1','12383','0.99','2005-08-18 08:36:03.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8013','295','1','14264','0.99','2005-08-21 06:18:22.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8014','295','1','14387','6.99','2005-08-21 10:10:01.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8015','295','1','14514','6.99','2005-08-21 14:51:52.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8016','295','2','15735','0.99','2006-02-14 15:16:03.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8017','296','2','162','4.99','2005-05-26 02:02:05.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8018','296','1','511','5.99','2005-05-28 03:04:04.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8019','296','1','869','4.99','2005-05-30 04:22:06.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8020','296','2','956','2.99','2005-05-30 17:30:28.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8021','296','2','1659','4.99','2005-06-16 10:11:46.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8022','296','1','3034','0.99','2005-06-20 12:15:50.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8023','296','2','3119','0.99','2005-06-20 18:11:44.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8024','296','2','3486','7.99','2005-07-05 23:29:55.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8025','296','1','3810','2.99','2005-07-06 15:18:44.000','2006-02-15 22:15:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8026','296','1','4480','4.99','2005-07-08 00:56:30.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8027','296','2','5090','0.99','2005-07-09 05:48:22.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8028','296','1','5589','4.99','2005-07-10 04:22:58.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8029','296','2','6016','4.99','2005-07-11 02:04:45.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8030','296','1','6398','5.99','2005-07-11 22:34:49.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8031','296','1','6967','6.99','2005-07-27 00:16:31.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8032','296','2','7568','4.99','2005-07-27 22:38:53.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8033','296','2','8171','0.99','2005-07-28 21:32:57.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8034','296','1','9249','5.99','2005-07-30 14:15:02.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8035','296','1','9304','2.99','2005-07-30 16:41:34.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8036','296','2','11571','4.99','2005-08-17 01:37:51.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8037','296','2','11825','4.99','2005-08-17 12:43:30.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8038','296','2','12689','3.99','2005-08-18 20:06:34.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8039','296','2','13471','2.99','2005-08-20 01:02:26.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8040','296','1','13702','2.99','2005-08-20 09:27:20.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8041','296','1','13819','4.99','2005-08-20 13:23:15.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8042','296','1','13991','1.99','2005-08-20 19:29:44.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8043','296','2','14571','7.99','2005-08-21 16:40:26.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8044','296','2','15023','2.99','2005-08-22 08:56:48.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8045','296','2','15866','7.99','2005-08-23 16:19:02.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8046','296','1','12009','2.99','2006-02-14 15:16:03.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8047','297','2','143','0.99','2005-05-25 23:45:52.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8048','297','1','954','3.99','2005-05-30 16:57:29.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8049','297','1','1409','3.99','2005-06-15 16:58:12.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8050','297','1','2067','2.99','2005-06-17 16:11:08.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8051','297','1','2202','8.99','2005-06-18 02:09:24.000','2006-02-15 22:15:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8052','297','1','2260','2.99','2005-06-18 05:38:36.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8053','297','2','2339','4.99','2005-06-18 11:29:22.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8054','297','1','3582','0.99','2005-07-06 04:10:35.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8055','297','2','4621','2.99','2005-07-08 08:02:18.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8056','297','1','4929','5.99','2005-07-08 22:06:18.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8057','297','1','5743','8.99','2005-07-10 11:57:38.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8058','297','2','6036','2.99','2005-07-11 03:02:28.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8059','297','1','6064','6.99','2005-07-11 04:23:18.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8060','297','1','6156','4.99','2005-07-11 09:45:48.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8061','297','1','6984','2.99','2005-07-27 00:56:30.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8062','297','2','7867','0.99','2005-07-28 10:08:54.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8063','297','1','7933','0.99','2005-07-28 12:27:27.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8064','297','2','9014','2.99','2005-07-30 05:19:27.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8065','297','2','9674','5.99','2005-07-31 06:36:53.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8066','297','1','10153','0.99','2005-07-31 22:30:10.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8067','297','2','10264','4.99','2005-08-01 03:03:12.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8068','297','2','11269','0.99','2005-08-02 14:11:41.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8069','297','2','11413','0.99','2005-08-02 19:35:19.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8070','297','2','11585','4.99','2005-08-17 02:14:36.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8071','297','1','11780','2.99','2005-08-17 10:34:24.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8072','297','1','11784','0.99','2005-08-17 10:48:05.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8073','297','1','12472','10.99','2005-08-18 11:58:48.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8074','297','1','13330','2.99','2005-08-19 19:59:21.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8075','297','2','13721','4.99','2005-08-20 10:02:59.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8076','297','1','13888','1.99','2005-08-20 15:39:42.000','2006-02-15 22:15:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8077','297','1','14403','5.99','2005-08-21 10:40:34.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8078','297','2','15582','2.99','2005-08-23 05:45:44.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8079','297','1','15711','4.99','2005-08-23 10:43:00.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8080','298','1','383','3.99','2005-05-27 10:12:20.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8081','298','2','1454','4.99','2005-06-15 19:49:41.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8082','298','2','2385','3.99','2005-06-18 15:22:40.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8083','298','2','3095','4.99','2005-06-20 16:16:53.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8084','298','2','3400','4.99','2005-06-21 15:50:30.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8085','298','2','3479','0.99','2005-07-05 23:08:53.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8086','298','1','3728','2.99','2005-07-06 11:29:00.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8087','298','2','4291','2.99','2005-07-07 15:47:47.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8088','298','1','4936','3.99','2005-07-08 22:24:50.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8089','298','2','5166','2.99','2005-07-09 09:15:48.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8090','298','1','5247','2.99','2005-07-09 13:26:28.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8091','298','2','6802','0.99','2005-07-12 17:14:17.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8092','298','2','7802','0.99','2005-07-28 07:51:57.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8093','298','1','7869','7.99','2005-07-28 10:13:15.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8094','298','2','8737','5.99','2005-07-29 18:32:13.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8095','298','2','10248','6.99','2005-08-01 02:35:28.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8096','298','1','11070','0.99','2005-08-02 07:10:39.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8097','298','2','11288','6.99','2005-08-02 14:54:08.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8098','298','2','12076','0.99','2005-08-17 21:58:19.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8099','298','1','12765','8.99','2005-08-18 23:21:50.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8100','298','1','13172','0.99','2005-08-19 13:49:07.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8101','298','1','13244','4.99','2005-08-19 16:43:04.000','2006-02-15 22:15:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8102','298','2','14473','0.99','2005-08-21 13:19:03.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8103','298','1','15245','3.99','2005-08-22 17:49:35.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8104','298','2','15262','4.99','2005-08-22 18:25:21.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8105','298','1','15643','4.99','2005-08-23 08:13:26.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8106','299','1','332','5.99','2005-05-27 02:27:10.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8107','299','2','606','8.99','2005-05-28 14:48:39.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8108','299','1','1650','8.99','2005-06-16 09:23:20.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8109','299','2','2664','4.99','2005-06-19 11:11:23.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8110','299','1','2774','2.99','2005-06-19 18:05:11.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8111','299','2','2791','4.99','2005-06-19 18:51:27.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8112','299','1','3074','0.99','2005-06-20 14:41:41.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8113','299','2','3223','2.99','2005-06-21 02:06:45.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8114','299','1','3288','5.99','2005-06-21 06:36:59.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8115','299','2','3497','0.99','2005-07-06 00:00:03.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8116','299','2','4153','5.99','2005-07-07 08:53:08.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8117','299','1','4350','2.99','2005-07-07 19:02:41.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8118','299','2','5033','1.99','2005-07-09 02:42:01.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8119','299','1','5642','2.99','2005-07-10 06:46:08.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8120','299','2','6732','0.99','2005-07-12 13:58:51.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8121','299','1','6853','7.99','2005-07-12 19:38:11.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8122','299','1','7264','4.99','2005-07-27 11:18:58.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8123','299','1','7746','2.99','2005-07-28 05:48:56.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8124','299','2','7862','9.99','2005-07-28 10:02:25.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8125','299','1','9520','2.99','2005-07-31 00:50:54.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8126','299','1','10201','0.99','2005-08-01 00:42:18.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8127','299','2','10440','2.99','2005-08-01 08:54:32.000','2006-02-15 22:15:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8128','299','1','11629','6.99','2005-08-17 04:27:24.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8129','299','1','11746','5.99','2005-08-17 09:03:24.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8130','299','1','11998','0.99','2005-08-17 18:46:21.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8131','299','1','13069','4.99','2005-08-19 09:55:20.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8132','299','2','14208','0.99','2005-08-21 04:09:18.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8133','299','1','14548','3.99','2005-08-21 15:53:52.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8134','299','2','14889','4.99','2005-08-22 04:10:10.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8135','299','2','14898','6.99','2005-08-22 04:26:34.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8136','300','2','457','0.99','2005-05-27 19:52:29.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8137','300','1','780','3.99','2005-05-29 14:18:32.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8138','300','1','1111','4.99','2005-05-31 15:24:19.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8139','300','2','1381','0.99','2005-06-15 15:17:21.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8140','300','1','3177','2.99','2005-06-20 22:32:44.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8141','300','1','3775','0.99','2005-07-06 13:27:33.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8142','300','1','4030','0.99','2005-07-07 02:25:42.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8143','300','2','5562','2.99','2005-07-10 03:17:42.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8144','300','1','5705','10.99','2005-07-10 10:09:17.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8145','300','2','6111','4.99','2005-07-11 07:26:57.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8146','300','1','6822','5.99','2005-07-12 18:23:39.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8147','300','1','6998','4.99','2005-07-27 01:16:29.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8148','300','1','7815','4.99','2005-07-28 08:14:11.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8149','300','1','8117','6.99','2005-07-28 19:20:16.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8150','300','1','8210','6.99','2005-07-28 23:31:05.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8151','300','1','8283','3.99','2005-07-29 01:52:22.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8152','300','1','9078','0.99','2005-07-30 08:01:00.000','2006-02-15 22:15:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8153','300','2','9127','2.99','2005-07-30 09:46:36.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8154','300','2','9791','0.99','2005-07-31 10:35:22.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8155','300','1','10977','4.99','2005-08-02 04:12:17.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8156','300','2','12484','2.99','2005-08-18 12:39:37.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8157','300','2','12644','5.99','2005-08-18 18:22:27.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8158','300','2','13257','3.99','2005-08-19 17:01:20.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8159','300','1','13296','0.99','2005-08-19 18:43:53.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8160','300','2','13499','6.99','2005-08-20 01:52:30.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8161','300','1','13717','5.99','2005-08-20 09:50:52.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8162','300','1','14674','7.99','2005-08-21 20:01:34.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8163','300','1','14709','9.99','2005-08-21 21:07:59.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8164','300','2','15051','2.99','2005-08-22 10:08:50.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8165','300','2','15811','5.99','2005-08-23 14:43:46.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8166','300','1','15695','4.99','2006-02-14 15:16:03.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8167','301','2','27','4.99','2005-05-25 03:41:50.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8168','301','2','227','5.99','2005-05-26 10:51:46.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8169','301','1','955','0.99','2005-05-30 16:59:03.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8170','301','1','1853','0.99','2005-06-17 00:39:54.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8171','301','1','2611','4.99','2005-06-19 07:18:17.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8172','301','2','2925','2.99','2005-06-20 04:23:49.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8173','301','2','4316','4.99','2005-07-07 17:44:22.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8174','301','2','4834','3.99','2005-07-08 18:07:45.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8175','301','1','5119','6.99','2005-07-09 07:14:18.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8176','301','2','5511','4.99','2005-07-10 01:00:00.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8177','301','2','5730','2.99','2005-07-10 11:28:32.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8178','301','2','5807','2.99','2005-07-10 15:16:30.000','2006-02-15 22:15:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8179','301','2','6833','6.99','2005-07-12 18:53:34.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8180','301','2','7318','4.99','2005-07-27 13:25:31.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8181','301','2','7818','4.99','2005-07-28 08:25:00.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8182','301','2','9435','4.99','2005-07-30 21:31:02.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8183','301','1','10883','0.99','2005-08-02 00:47:19.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8184','301','2','13183','5.99','2005-08-19 14:09:26.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8185','301','2','13633','2.99','2005-08-20 07:13:47.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8186','301','1','15201','10.99','2005-08-22 16:24:42.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8187','301','1','15268','1.99','2005-08-22 18:39:11.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8188','302','2','38','4.99','2005-05-25 04:47:44.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8189','302','2','92','5.99','2005-05-25 15:38:46.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8190','302','1','1231','2.99','2005-06-15 04:04:41.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8191','302','2','4676','4.99','2005-07-08 10:26:02.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8192','302','2','5498','0.99','2005-07-10 00:27:21.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8193','302','2','5682','2.99','2005-07-10 08:51:39.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8194','302','2','5709','0.99','2005-07-10 10:31:52.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8195','302','2','5821','4.99','2005-07-10 16:07:16.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8196','302','2','6623','7.99','2005-07-12 09:05:34.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8197','302','1','7183','0.99','2005-07-27 08:18:38.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8198','302','1','7411','6.99','2005-07-27 16:42:30.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8199','302','1','8363','6.99','2005-07-29 05:10:08.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8200','302','2','8646','0.99','2005-07-29 14:48:48.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8201','302','1','8795','2.99','2005-07-29 21:04:14.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8202','302','1','9146','7.99','2005-07-30 10:32:08.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8203','302','2','9358','2.99','2005-07-30 18:37:24.000','2006-02-15 22:15:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8204','302','1','9374','8.99','2005-07-30 19:10:03.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8205','302','2','9581','5.99','2005-07-31 03:03:07.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8206','302','2','10329','0.99','2005-08-01 04:56:13.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8207','302','1','12126','7.99','2005-08-17 23:25:21.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8208','302','2','12516','4.99','2005-08-18 13:39:53.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8209','302','1','12903','2.99','2005-08-19 04:09:38.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8210','302','1','13916','2.99','2005-08-20 16:43:02.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8211','302','1','14120','4.99','2005-08-21 01:25:00.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8212','302','2','14247','3.99','2005-08-21 05:35:17.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8213','302','2','15578','2.99','2005-08-23 05:37:13.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8214','302','1','15622','5.99','2005-08-23 07:22:02.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8215','302','2','15734','0.99','2005-08-23 11:40:08.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8216','302','2','15987','6.99','2005-08-23 20:22:17.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8217','303','1','265','0.99','2005-05-26 16:07:38.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8218','303','1','871','2.99','2005-05-30 05:01:30.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8219','303','2','1050','4.99','2005-05-31 07:01:27.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8220','303','2','1970','4.99','2005-06-17 09:23:16.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8221','303','1','2223','8.99','2005-06-18 03:27:03.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8222','303','1','3077','3.99','2005-06-20 15:05:18.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8223','303','1','3107','2.99','2005-06-20 17:26:05.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8224','303','1','5140','4.99','2005-07-09 08:04:59.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8225','303','1','6205','4.99','2005-07-11 12:31:24.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8226','303','2','6219','4.99','2005-07-11 13:18:37.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8227','303','1','6464','4.99','2005-07-12 01:16:40.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8228','303','1','7023','4.99','2005-07-27 02:32:44.000','2006-02-15 22:15:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8229','303','2','7502','2.99','2005-07-27 20:19:08.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8230','303','1','8409','0.99','2005-07-29 06:41:22.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8231','303','2','8734','6.99','2005-07-29 18:28:15.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8232','303','2','8764','0.99','2005-07-29 19:39:04.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8233','303','2','10209','2.99','2005-08-01 00:56:47.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8234','303','1','11253','4.99','2005-08-02 13:42:44.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8235','303','2','11673','2.99','2005-08-17 05:54:15.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8236','303','2','11993','2.99','2005-08-17 18:27:49.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8237','303','2','12117','0.99','2005-08-17 23:11:12.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8238','303','1','12365','0.99','2005-08-18 07:55:09.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8239','303','2','12473','2.99','2005-08-18 11:59:44.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8240','303','1','14750','5.99','2005-08-21 23:09:32.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8241','303','2','14795','4.99','2005-08-22 00:40:22.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8242','303','1','15511','3.99','2005-08-23 02:55:42.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8243','304','1','135','10.99','2005-05-25 21:58:58.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8244','304','1','415','0.99','2005-05-27 14:51:45.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8245','304','2','937','2.99','2005-05-30 14:47:31.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8246','304','1','1414','6.99','2005-06-15 17:26:32.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8247','304','2','1525','4.99','2005-06-16 00:26:07.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8248','304','1','2039','3.99','2005-06-17 14:03:43.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8249','304','2','2902','4.99','2005-06-20 02:45:35.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8250','304','1','4466','6.99','2005-07-08 00:12:53.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8251','304','2','4812','8.99','2005-07-08 17:07:11.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8252','304','1','5411','2.99','2005-07-09 20:23:38.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8253','304','1','5712','4.99','2005-07-10 10:40:32.000','2006-02-15 22:15:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8254','304','2','5749','3.99','2005-07-10 12:20:36.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8255','304','2','5795','0.99','2005-07-10 14:36:29.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8256','304','2','6107','0.99','2005-07-11 07:07:09.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8257','304','1','6737','4.99','2005-07-12 14:16:52.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8258','304','2','7551','4.99','2005-07-27 21:59:15.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8259','304','2','8055','4.99','2005-07-28 17:02:32.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8260','304','1','9930','0.99','2005-07-31 15:18:03.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8261','304','1','9992','6.99','2005-07-31 17:29:48.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8262','304','1','10631','0.99','2005-08-01 15:35:14.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8263','304','2','11983','4.99','2005-08-17 18:13:55.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8264','304','1','12540','5.99','2005-08-18 14:17:30.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8265','304','2','13911','3.99','2005-08-20 16:31:33.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8266','304','1','14023','0.99','2005-08-20 21:10:32.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8267','304','1','14899','4.99','2005-08-22 04:26:38.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8268','304','1','14945','4.99','2005-08-22 06:05:38.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8269','305','2','69','2.99','2005-05-25 10:10:14.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8270','305','1','1574','4.99','2005-06-16 03:39:56.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8271','305','2','1884','0.99','2005-06-17 03:19:20.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8272','305','1','2166','11.99','2005-06-17 23:51:21.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8273','305','1','3387','0.99','2005-06-21 14:21:49.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8274','305','2','4260','4.99','2005-07-07 14:22:45.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8275','305','1','4638','2.99','2005-07-08 08:57:20.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8276','305','2','5041','0.99','2005-07-09 03:18:51.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8277','305','1','5052','2.99','2005-07-09 03:59:43.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8278','305','2','5582','4.99','2005-07-10 04:08:25.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8279','305','1','5745','8.99','2005-07-10 12:10:11.000','2006-02-15 22:15:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8280','305','1','6134','7.99','2005-07-11 08:28:19.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8281','305','2','6619','0.99','2005-07-12 08:50:48.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8282','305','2','8865','4.99','2005-07-29 23:54:54.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8283','305','2','9119','4.99','2005-07-30 09:25:56.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8284','305','2','10426','4.99','2005-08-01 08:26:08.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8285','305','2','10929','4.99','2005-08-02 02:35:44.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8286','305','1','10981','2.99','2005-08-02 04:17:53.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8287','305','2','11035','5.99','2005-08-02 05:55:39.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8288','305','2','11809','3.99','2005-08-17 11:51:39.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8289','305','2','12592','3.99','2005-08-18 16:17:50.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8290','305','2','12846','0.99','2005-08-19 02:03:26.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8291','305','1','13782','4.99','2005-08-20 12:09:26.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8292','305','2','15417','2.99','2005-08-22 23:54:04.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8293','305','1','15612','6.99','2005-08-23 06:59:07.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8294','306','2','375','3.99','2005-05-27 08:49:21.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8295','306','2','672','6.99','2005-05-28 22:05:29.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8296','306','2','1172','0.99','2005-06-14 23:54:34.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8297','306','2','2836','6.99','2005-06-19 21:58:21.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8298','306','1','3814','6.99','2005-07-06 15:23:56.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8299','306','2','4484','5.99','2005-07-08 01:05:57.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8300','306','2','4596','1.99','2005-07-08 06:41:25.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8301','306','2','5581','2.99','2005-07-10 04:06:06.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8302','306','2','6868','2.99','2005-07-12 20:10:17.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8303','306','1','6953','4.99','2005-07-26 23:52:47.000','2006-02-15 22:15:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8304','306','1','7225','6.99','2005-07-27 09:47:12.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8305','306','1','7232','4.99','2005-07-27 10:04:19.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8306','306','2','7701','2.99','2005-07-28 03:54:28.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8307','306','2','8620','0.99','2005-07-29 13:51:20.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8308','306','1','8702','0.99','2005-07-29 17:04:37.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8309','306','2','9242','4.99','2005-07-30 14:03:58.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8310','306','2','9395','4.99','2005-07-30 20:07:06.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8311','306','1','9774','0.99','2005-07-31 09:57:51.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8312','306','1','10202','6.99','2005-08-01 00:43:18.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8313','306','2','10893','5.99','2005-08-02 01:12:13.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8314','306','2','11142','4.99','2005-08-02 09:30:11.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8315','306','1','11440','0.99','2005-08-02 20:24:02.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8316','306','2','11674','6.99','2005-08-17 05:56:27.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8317','306','2','11776','0.99','2005-08-17 10:27:19.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8318','306','1','12225','7.99','2005-08-18 03:00:11.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8319','306','1','12989','2.99','2005-08-19 07:19:04.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8320','306','1','13686','4.99','2005-08-20 08:57:28.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8321','306','2','13725','5.99','2005-08-20 10:08:27.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8322','306','1','13873','0.99','2005-08-20 15:11:11.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8323','306','1','13996','4.99','2005-08-20 19:45:43.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8324','306','1','15457','2.99','2005-08-23 01:07:37.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8325','306','2','15868','7.99','2005-08-23 16:19:14.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8326','307','2','413','4.99','2005-05-27 14:45:37.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8327','307','1','535','4.99','2005-05-28 06:16:32.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8328','307','1','614','1.99','2005-05-28 15:33:28.000','2006-02-15 22:15:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8329','307','1','970','6.99','2005-05-30 19:50:28.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8330','307','2','2152','2.99','2005-06-17 22:53:27.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8331','307','1','2167','0.99','2005-06-17 23:51:28.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8332','307','1','2787','4.99','2005-06-19 18:47:00.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8333','307','1','2881','2.99','2005-06-20 01:26:18.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8334','307','2','3057','5.99','2005-06-20 13:22:48.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8335','307','1','3209','4.99','2005-06-21 00:51:06.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8336','307','1','3962','6.99','2005-07-06 22:13:45.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8337','307','1','3985','4.99','2005-07-06 23:24:03.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8338','307','1','4522','2.99','2005-07-08 03:03:12.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8339','307','1','4868','4.99','2005-07-08 19:13:50.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8340','307','1','5871','3.99','2005-07-10 18:46:08.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8341','307','2','6125','6.99','2005-07-11 08:03:35.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8342','307','1','6256','0.99','2005-07-11 15:19:22.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8343','307','1','6991','10.99','2005-07-27 01:03:06.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8344','307','1','7536','2.99','2005-07-27 21:34:09.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8345','307','1','7760','3.99','2005-07-28 06:29:45.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8346','307','1','7929','0.99','2005-07-28 12:16:40.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8347','307','1','8647','6.99','2005-07-29 14:52:59.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8348','307','1','10135','4.99','2005-07-31 21:57:32.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8349','307','1','10374','0.99','2005-08-01 06:25:27.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8350','307','1','10745','2.99','2005-08-01 19:57:06.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8351','307','1','11491','7.99','2005-08-02 22:44:50.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8352','307','2','12391','4.99','2005-08-18 08:52:53.000','2006-02-15 22:15:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8353','307','2','13365','6.99','2005-08-19 21:12:37.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8354','307','1','14231','0.99','2005-08-21 05:04:34.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8355','307','2','15515','4.99','2005-08-23 03:03:53.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8356','308','2','589','3.99','2005-05-28 12:27:50.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8357','308','1','2037','0.99','2005-06-17 13:54:20.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8358','308','1','2094','0.99','2005-06-17 18:18:56.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8359','308','2','2168','4.99','2005-06-17 23:53:24.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8360','308','1','2346','7.99','2005-06-18 12:08:16.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8361','308','2','2448','4.99','2005-06-18 19:13:45.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8362','308','1','4002','3.99','2005-07-07 00:08:18.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8363','308','1','4285','8.99','2005-07-07 15:34:35.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8364','308','1','5946','2.99','2005-07-10 22:57:29.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8365','308','2','8869','0.99','2005-07-30 00:06:32.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8366','308','1','9479','2.99','2005-07-30 23:22:09.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8367','308','1','9746','7.99','2005-07-31 09:16:48.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8368','308','1','10571','2.99','2005-08-01 13:25:30.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8369','308','2','10797','0.99','2005-08-01 22:02:51.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8370','308','1','10819','4.99','2005-08-01 22:52:57.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8371','308','1','11765','2.99','2005-08-17 09:55:28.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8372','308','1','11972','4.99','2005-08-17 17:55:46.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8373','308','2','12567','3.99','2005-08-18 15:14:36.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8374','308','1','12590','6.99','2005-08-18 16:11:35.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8375','308','2','12838','6.99','2005-08-19 01:51:50.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8376','308','1','13843','2.99','2005-08-20 14:30:01.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8377','308','2','14946','2.99','2005-08-22 06:07:10.000','2006-02-15 22:15:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8378','308','1','15243','4.99','2005-08-22 17:48:28.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8379','308','2','15493','4.99','2005-08-23 02:20:53.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8380','308','2','15820','2.99','2005-08-23 15:03:13.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8381','309','2','218','6.99','2005-05-26 09:27:09.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8382','309','2','723','0.99','2005-05-29 05:34:44.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8383','309','1','1837','4.99','2005-06-16 23:16:15.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8384','309','2','2560','9.99','2005-06-19 03:12:42.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8385','309','2','2644','3.99','2005-06-19 09:42:30.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8386','309','2','2688','6.99','2005-06-19 12:50:56.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8387','309','2','3837','4.99','2005-07-06 16:27:43.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8388','309','2','3896','7.99','2005-07-06 19:09:15.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8389','309','2','4172','4.99','2005-07-07 09:49:09.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8390','309','1','4540','4.99','2005-07-08 04:03:28.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8391','309','2','5305','8.99','2005-07-09 15:55:36.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8392','309','1','5980','4.99','2005-07-11 00:18:21.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8393','309','2','6480','4.99','2005-07-12 01:49:29.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8394','309','2','7214','5.99','2005-07-27 09:23:33.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8395','309','2','7722','4.99','2005-07-28 04:44:58.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8396','309','1','7846','5.99','2005-07-28 09:21:18.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8397','309','1','8341','4.99','2005-07-29 04:42:01.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8398','309','1','8501','2.99','2005-07-29 09:12:51.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8399','309','1','8681','2.99','2005-07-29 16:12:01.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8400','309','1','8917','2.99','2005-07-30 01:47:02.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8401','309','2','9945','2.99','2005-07-31 15:47:51.000','2006-02-15 22:15:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8402','309','1','9949','0.99','2005-07-31 15:50:10.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8403','309','1','10458','2.99','2005-08-01 09:19:48.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8404','309','1','10728','0.99','2005-08-01 19:15:09.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8405','309','1','10818','2.99','2005-08-01 22:52:45.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8406','309','2','11964','6.99','2005-08-17 17:37:03.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8407','309','2','13021','5.99','2005-08-19 08:08:04.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8408','309','2','13502','0.99','2005-08-20 01:58:15.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8409','309','2','13909','4.99','2005-08-20 16:26:36.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8410','309','2','14846','5.99','2005-08-22 02:13:48.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8411','309','2','15422','4.99','2005-08-22 23:58:09.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8412','310','2','104','0.99','2005-05-25 17:46:33.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8413','310','2','1162','4.99','2005-06-14 23:09:38.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8414','310','2','1333','2.99','2005-06-15 11:37:08.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8415','310','2','1918','3.99','2005-06-17 05:40:14.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8416','310','2','2088','6.99','2005-06-17 17:35:30.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8417','310','1','2480','5.99','2005-06-18 21:04:09.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8418','310','1','2618','2.99','2005-06-19 08:03:01.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8419','310','2','3830','10.99','2005-07-06 16:01:16.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8420','310','1','4072','0.99','2005-07-07 04:48:02.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8421','310','1','5621','5.99','2005-07-10 05:34:10.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8422','310','2','5836','0.99','2005-07-10 16:49:02.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8423','310','1','7648','5.99','2005-07-28 01:35:33.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8424','310','2','8637','5.99','2005-07-29 14:30:11.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8425','310','1','8981','7.99','2005-07-30 04:25:30.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8426','310','1','9536','2.99','2005-07-31 01:19:02.000','2006-02-15 22:15:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8427','310','2','11137','2.99','2005-08-02 09:25:31.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8428','310','2','12500','4.99','2005-08-18 13:05:51.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8429','310','2','12710','7.99','2005-08-18 21:02:50.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8430','310','1','12929','4.99','2005-08-19 05:05:23.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8431','310','1','14972','5.99','2005-08-22 06:53:21.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8432','311','2','274','5.99','2005-05-26 16:48:51.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8433','311','2','544','6.99','2005-05-28 07:03:00.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8434','311','1','952','2.99','2005-05-30 16:28:07.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8435','311','2','990','3.99','2005-05-30 23:25:14.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8436','311','2','1128','6.99','2005-05-31 17:49:26.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8437','311','1','1622','4.99','2005-06-16 07:33:18.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8438','311','2','1955','0.99','2005-06-17 08:40:22.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8439','311','2','2967','6.99','2005-06-20 07:40:35.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8440','311','2','4836','3.99','2005-07-08 18:09:08.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8441','311','2','5224','5.99','2005-07-09 12:07:27.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8442','311','2','6419','4.99','2005-07-11 23:36:38.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8443','311','2','8167','6.99','2005-07-28 21:25:45.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8444','311','1','8473','2.99','2005-07-29 08:36:53.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8445','311','1','9503','6.99','2005-07-31 00:02:38.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8446','311','2','9882','8.99','2005-07-31 13:53:33.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8447','311','1','10134','4.99','2005-07-31 21:56:10.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8448','311','2','10448','4.99','2005-08-01 09:09:31.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8449','311','1','12997','2.99','2005-08-19 07:31:46.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8450','311','2','13310','0.99','2005-08-19 19:05:16.000','2006-02-15 22:15:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8451','311','2','13423','1.99','2005-08-19 23:07:42.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8452','311','2','14517','4.99','2005-08-21 14:57:03.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8453','311','2','15826','9.99','2005-08-23 15:15:02.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8454','311','1','16020','8.99','2005-08-23 21:34:33.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8455','312','2','229','4.99','2005-05-26 11:19:20.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8456','312','1','530','0.99','2005-05-28 05:13:01.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8457','312','2','1049','4.99','2005-05-31 06:57:04.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8458','312','2','1079','6.99','2005-05-31 10:48:17.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8459','312','2','1419','0.99','2005-06-15 17:54:50.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8460','312','2','3457','3.99','2005-06-21 21:42:33.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8461','312','1','3766','2.99','2005-07-06 13:04:35.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8462','312','1','3792','1.99','2005-07-06 14:26:38.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8463','312','1','4647','3.99','2005-07-08 09:27:36.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8464','312','1','5031','5.99','2005-07-09 02:36:37.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8465','312','2','6751','2.99','2005-07-12 14:50:34.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8466','312','1','6866','2.99','2005-07-12 20:03:44.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8467','312','1','8137','4.99','2005-07-28 20:07:18.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8468','312','1','8412','6.99','2005-07-29 06:44:50.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8469','312','1','8721','4.99','2005-07-29 17:56:21.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8470','312','1','9016','6.99','2005-07-30 05:26:13.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8471','312','1','9154','3.99','2005-07-30 10:59:54.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8472','312','2','10858','2.99','2005-08-02 00:08:39.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8473','312','2','11248','0.99','2005-08-02 13:35:34.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8474','312','2','11879','5.99','2005-08-17 14:25:09.000','2006-02-15 22:15:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8475','312','1','12186','2.99','2005-08-18 01:43:36.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8476','312','1','12945','0.99','2005-08-19 05:51:46.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8477','312','2','14362','2.99','2005-08-21 09:19:49.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8478','312','1','14504','3.99','2005-08-21 14:23:01.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8479','312','1','15100','4.99','2005-08-22 11:55:03.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8480','312','1','15882','6.99','2005-08-23 16:44:31.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8481','313','2','669','4.99','2005-05-28 22:03:25.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8482','313','2','712','2.99','2005-05-29 04:02:24.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8483','313','2','781','0.99','2005-05-29 14:23:58.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8484','313','2','843','0.99','2005-05-30 00:44:24.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8485','313','2','1312','2.99','2005-06-15 10:16:27.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8486','313','1','2617','7.99','2005-06-19 07:48:31.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8487','313','2','2711','4.99','2005-06-19 14:12:22.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8488','313','2','4552','2.99','2005-07-08 04:36:35.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8489','313','1','5255','5.99','2005-07-09 13:51:08.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8490','313','1','6384','2.99','2005-07-11 22:07:26.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8491','313','2','7294','0.99','2005-07-27 12:38:14.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8492','313','2','8381','4.99','2005-07-29 05:31:44.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8493','313','1','8970','3.99','2005-07-30 04:02:05.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8494','313','2','9836','2.99','2005-07-31 12:12:00.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8495','313','2','10237','5.99','2005-08-01 02:07:32.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8496','313','2','10933','7.99','2005-08-02 02:50:49.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8497','313','2','11854','2.99','2005-08-17 13:42:52.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8498','313','2','12011','2.99','2005-08-17 19:19:44.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8499','313','2','14250','2.99','2005-08-21 05:39:35.000','2006-02-15 22:15:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8500','313','1','14325','4.99','2005-08-21 08:15:38.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8501','313','2','15081','2.99','2005-08-22 11:14:31.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8502','313','1','15340','0.99','2005-08-22 20:55:56.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8503','313','2','15569','6.99','2005-08-23 05:24:29.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8504','314','1','80','5.99','2005-05-25 12:12:07.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8505','314','1','440','4.99','2005-05-27 18:00:35.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8506','314','1','1598','3.99','2005-06-16 06:02:39.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8507','314','1','1624','2.99','2005-06-16 07:48:57.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8508','314','1','3517','0.99','2005-07-06 00:52:35.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8509','314','1','3656','2.99','2005-07-06 07:55:22.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8510','314','1','3808','0.99','2005-07-06 15:15:35.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8511','314','2','4386','0.99','2005-07-07 20:55:19.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8512','314','2','5241','4.99','2005-07-09 13:19:14.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8513','314','2','5856','0.99','2005-07-10 17:57:32.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8514','314','1','6192','5.99','2005-07-11 11:44:41.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8515','314','1','6666','2.99','2005-07-12 11:32:15.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8516','314','1','6763','3.99','2005-07-12 15:26:34.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8517','314','2','7004','4.99','2005-07-27 01:36:05.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8518','314','1','7276','2.99','2005-07-27 11:41:57.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8519','314','2','8022','6.99','2005-07-28 15:48:56.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8520','314','1','8073','3.99','2005-07-28 17:29:02.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8521','314','2','8105','0.99','2005-07-28 18:59:46.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8522','314','2','8328','6.99','2005-07-29 04:06:24.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8523','314','2','8644','4.99','2005-07-29 14:45:45.000','2006-02-15 22:15:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8524','314','2','9191','3.99','2005-07-30 12:25:51.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8525','314','2','9318','6.99','2005-07-30 17:14:30.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8526','314','2','11908','3.99','2005-08-17 15:43:09.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8527','314','1','12434','0.99','2005-08-18 10:38:08.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8528','314','2','13120','3.99','2005-08-19 11:47:38.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8529','314','1','13265','2.99','2005-08-19 17:29:00.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8530','314','2','13553','3.99','2005-08-20 04:07:21.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8531','314','2','14145','4.99','2005-08-21 02:11:38.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8532','314','1','14409','4.99','2005-08-21 10:53:35.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8533','314','2','14682','4.99','2005-08-21 20:25:57.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8534','314','2','14815','4.99','2005-08-22 01:12:44.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8535','314','2','14873','5.99','2005-08-22 03:31:06.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8536','314','2','16021','3.99','2005-08-23 21:37:59.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8537','315','1','537','8.99','2005-05-28 06:20:55.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8538','315','1','551','4.99','2005-05-28 07:44:18.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8539','315','1','1701','2.99','2005-06-16 13:18:48.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8540','315','1','4021','2.99','2005-07-07 01:46:44.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8541','315','1','4992','4.99','2005-07-09 00:49:37.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8542','315','2','5126','6.99','2005-07-09 07:25:35.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8543','315','1','6661','4.99','2005-07-12 11:20:39.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8544','315','1','6894','4.99','2005-07-12 21:20:50.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8545','315','1','8416','5.99','2005-07-29 06:52:54.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8546','315','2','8677','6.99','2005-07-29 16:01:13.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8547','315','2','9735','9.99','2005-07-31 08:57:49.000','2006-02-15 22:15:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8548','315','2','11254','0.99','2005-08-02 13:43:49.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8549','315','2','12155','2.99','2005-08-18 00:24:30.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8550','315','1','14106','2.99','2005-08-21 00:46:01.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8551','315','2','14162','2.99','2005-08-21 02:55:34.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8552','315','1','15504','6.99','2005-08-23 02:45:21.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8553','315','2','14426','2.99','2006-02-14 15:16:03.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8554','316','1','16','4.99','2005-05-25 00:43:11.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8555','316','1','644','8.99','2005-05-28 18:59:12.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8556','316','1','1065','1.99','2005-05-31 08:54:56.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8557','316','1','1317','4.99','2005-06-15 10:30:19.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8558','316','2','1350','4.99','2005-06-15 12:50:25.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8559','316','1','2032','4.99','2005-06-17 13:24:07.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8560','316','2','2338','4.99','2005-06-18 11:24:54.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8561','316','2','2491','1.99','2005-06-18 22:01:31.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8562','316','1','2820','4.99','2005-06-19 20:20:33.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8563','316','2','3373','8.99','2005-06-21 13:35:32.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8564','316','1','4379','2.99','2005-07-07 20:32:30.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8565','316','2','5102','3.99','2005-07-09 06:25:48.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8566','316','2','5544','7.99','2005-07-10 02:48:07.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8567','316','1','5618','5.99','2005-07-10 05:28:58.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8568','316','2','6988','4.99','2005-07-27 01:00:08.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8569','316','2','7339','2.99','2005-07-27 14:17:48.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8570','316','2','7586','2.99','2005-07-27 23:19:29.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8571','316','1','7592','4.99','2005-07-27 23:26:04.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8572','316','1','7945','1.99','2005-07-28 12:53:58.000','2006-02-15 22:15:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8573','316','1','8564','4.99','2005-07-29 11:33:00.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8574','316','1','9508','4.99','2005-07-31 00:22:39.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8575','316','2','9903','6.99','2005-07-31 14:31:44.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8576','316','1','10438','7.99','2005-08-01 08:53:04.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8577','316','1','12028','0.99','2005-08-17 20:03:47.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8578','316','2','12191','0.99','2005-08-18 01:57:11.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8579','316','2','12823','2.99','2005-08-19 01:15:47.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8580','316','2','13277','5.99','2005-08-19 17:57:35.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8581','316','1','14226','2.99','2005-08-21 04:55:37.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8582','316','2','15840','2.99','2005-08-23 15:34:49.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8583','317','1','107','6.99','2005-05-25 18:28:09.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8584','317','2','2287','6.99','2005-06-18 07:04:36.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8585','317','2','3029','2.99','2005-06-20 11:51:30.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8586','317','1','3251','0.99','2005-06-21 03:20:37.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8587','317','1','4138','0.99','2005-07-07 08:17:13.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8588','317','1','4177','8.99','2005-07-07 10:12:36.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8589','317','2','4700','0.99','2005-07-08 11:37:21.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8590','317','1','5548','0.99','2005-07-10 02:56:45.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8591','317','2','5942','7.99','2005-07-10 22:47:17.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8592','317','1','7309','2.99','2005-07-27 13:00:29.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8593','317','2','8062','2.99','2005-07-28 17:15:06.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8594','317','1','8327','2.99','2005-07-29 04:00:52.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8595','317','1','8458','4.99','2005-07-29 08:05:09.000','2006-02-15 22:16:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8596','317','1','9110','2.99','2005-07-30 09:05:42.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8597','317','2','9513','4.99','2005-07-31 00:28:30.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8598','317','1','9770','8.99','2005-07-31 09:52:40.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8599','317','1','10364','2.99','2005-08-01 06:06:49.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8600','317','2','12111','2.99','2005-08-17 22:59:55.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8601','317','2','12138','7.99','2005-08-17 23:55:54.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8602','317','2','12301','2.99','2005-08-18 05:36:20.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8603','317','1','13388','4.99','2005-08-19 21:46:49.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8604','317','1','14032','5.99','2005-08-20 21:26:55.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8605','317','2','14385','0.99','2005-08-21 10:02:55.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8606','317','2','14669','2.99','2005-08-21 19:54:06.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8607','317','1','14791','4.99','2005-08-22 00:35:55.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8608','317','1','15204','2.99','2005-08-22 16:30:43.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8609','317','1','15280','4.99','2005-08-22 19:09:52.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8610','317','1','12574','0.99','2006-02-14 15:16:03.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8611','318','1','224','9.99','2005-05-26 10:18:27.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8612','318','1','2634','2.99','2005-06-19 08:55:17.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8613','318','1','2643','2.99','2005-06-19 09:39:27.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8614','318','2','3337','0.99','2005-06-21 10:24:35.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8615','318','2','3376','7.99','2005-06-21 13:43:02.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8616','318','1','3732','4.99','2005-07-06 11:33:37.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8617','318','2','3974','2.99','2005-07-06 22:59:16.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8618','318','1','4356','8.99','2005-07-07 19:21:22.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8619','318','1','7649','0.99','2005-07-28 01:37:26.000','2006-02-15 22:16:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8620','318','2','7853','0.99','2005-07-28 09:36:38.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8621','318','2','10023','5.99','2005-07-31 18:25:51.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8622','318','1','14276','2.99','2005-08-21 06:34:05.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8623','319','1','15','9.99','2005-05-25 00:39:22.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8624','319','1','149','3.99','2005-05-26 00:28:05.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8625','319','1','439','2.99','2005-05-27 17:54:48.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8626','319','1','1632','2.99','2005-06-16 08:03:42.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8627','319','1','1892','4.99','2005-06-17 04:17:33.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8628','319','2','2021','3.99','2005-06-17 12:41:18.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8629','319','2','2703','4.99','2005-06-19 13:36:06.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8630','319','2','2884','0.99','2005-06-20 01:31:16.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8631','319','2','3256','3.99','2005-06-21 03:45:42.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8632','319','2','4119','3.99','2005-07-07 07:06:03.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8633','319','2','4295','2.99','2005-07-07 16:08:51.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8634','319','1','4630','4.99','2005-07-08 08:33:38.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8635','319','1','5791','8.99','2005-07-10 14:16:22.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8636','319','1','5882','2.99','2005-07-10 19:20:34.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8637','319','2','6132','2.99','2005-07-11 08:24:44.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8638','319','1','6195','4.99','2005-07-11 12:00:32.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8639','319','1','6255','4.99','2005-07-11 15:11:33.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8640','319','1','6485','6.99','2005-07-12 02:07:59.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8641','319','2','7953','2.99','2005-07-28 13:24:32.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8642','319','2','9017','4.99','2005-07-30 05:26:20.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8643','319','2','9044','0.99','2005-07-30 06:35:21.000','2006-02-15 22:16:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8644','319','1','11575','0.99','2005-08-17 01:50:26.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8645','319','2','11598','0.99','2005-08-17 03:03:07.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8646','319','1','11955','6.99','2005-08-17 17:21:35.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8647','319','2','11994','2.99','2005-08-17 18:29:35.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8648','319','1','12018','4.99','2005-08-17 19:44:46.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8649','319','2','12424','8.99','2005-08-18 10:16:57.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8650','319','1','13548','3.99','2005-08-20 03:53:20.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8651','319','2','14828','4.99','2005-08-22 01:34:05.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8652','319','2','15396','5.99','2005-08-22 23:07:57.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8653','320','2','1258','4.99','2005-06-15 06:21:30.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8654','320','2','1484','3.99','2005-06-15 21:22:35.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8655','320','2','1567','1.99','2005-06-16 03:13:30.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8656','320','1','2216','4.99','2005-06-18 03:08:17.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8657','320','2','2883','7.99','2005-06-20 01:29:10.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8658','320','2','3519','0.99','2005-07-06 00:57:29.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8659','320','2','3756','4.99','2005-07-06 12:40:38.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8660','320','2','4173','2.99','2005-07-07 09:57:26.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8661','320','2','7057','4.99','2005-07-27 03:50:03.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8662','320','2','7064','3.99','2005-07-27 03:53:29.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8663','320','2','7930','4.99','2005-07-28 12:21:08.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8664','320','2','8144','4.99','2005-07-28 20:30:55.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8665','320','2','8235','4.99','2005-07-29 00:22:56.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8666','320','1','8238','0.99','2005-07-29 00:30:06.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8667','320','2','8794','4.99','2005-07-29 20:59:38.000','2006-02-15 22:16:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8668','320','1','9509','0.99','2005-07-31 00:22:42.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8669','320','1','11208','0.99','2005-08-02 12:02:37.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8670','320','2','11560','2.99','2005-08-17 01:20:30.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8671','320','2','14171','0.99','2005-08-21 03:00:42.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8672','320','1','15302','2.99','2005-08-22 19:44:53.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8673','321','2','200','4.99','2005-05-26 07:12:21.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8674','321','1','620','5.99','2005-05-28 15:54:45.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8675','321','2','818','4.99','2005-05-29 20:47:53.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8676','321','2','1750','5.99','2005-06-16 16:57:36.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8677','321','1','3410','0.99','2005-06-21 16:20:47.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8678','321','2','3901','5.99','2005-07-06 19:24:55.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8679','321','1','3920','4.99','2005-07-06 20:26:40.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8680','321','2','4281','4.99','2005-07-07 15:17:50.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8681','321','1','4318','5.99','2005-07-07 17:47:50.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8682','321','2','5202','2.99','2005-07-09 10:53:48.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8683','321','2','5867','8.99','2005-07-10 18:39:01.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8684','321','2','6190','2.99','2005-07-11 11:36:18.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8685','321','1','6859','5.99','2005-07-12 19:53:57.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8686','321','2','8685','6.99','2005-07-29 16:17:05.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8687','321','1','9981','0.99','2005-07-31 17:08:31.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8688','321','1','11722','2.99','2005-08-17 07:53:03.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8689','321','1','12033','6.99','2005-08-17 20:14:34.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8690','321','2','12034','7.99','2005-08-17 20:15:31.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8691','321','1','12398','4.99','2005-08-18 09:13:24.000','2006-02-15 22:16:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8692','321','2','13623','6.99','2005-08-20 06:49:46.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8693','321','1','15673','6.99','2005-08-23 09:12:50.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8694','321','2','15888','5.99','2005-08-23 16:56:14.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8695','322','2','166','0.99','2005-05-26 02:49:11.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8696','322','1','269','4.99','2005-05-26 16:19:46.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8697','322','1','1386','2.99','2005-06-15 15:38:58.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8698','322','1','1588','8.99','2005-06-16 04:53:21.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8699','322','2','2481','4.99','2005-06-18 21:08:30.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8700','322','1','2554','0.99','2005-06-19 03:05:38.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8701','322','1','2983','7.99','2005-06-20 08:41:42.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8702','322','2','3054','5.99','2005-06-20 13:16:41.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8703','322','2','3413','8.99','2005-06-21 16:57:07.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8704','322','1','3478','0.99','2005-07-05 23:05:44.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8705','322','2','3627','1.99','2005-07-06 06:19:25.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8706','322','1','3646','4.99','2005-07-06 07:28:59.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8707','322','2','6033','2.99','2005-07-11 02:59:34.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8708','322','1','6511','3.99','2005-07-12 03:39:29.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8709','322','2','6673','0.99','2005-07-12 11:50:56.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8710','322','2','6709','4.99','2005-07-12 13:20:41.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8711','322','1','7091','4.99','2005-07-27 04:44:10.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8712','322','2','8142','4.99','2005-07-28 20:21:54.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8713','322','1','9104','7.99','2005-07-30 08:49:55.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8714','322','1','9115','4.99','2005-07-30 09:13:55.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8715','322','1','9252','1.99','2005-07-30 14:19:59.000','2006-02-15 22:16:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8716','322','2','11120','4.99','2005-08-02 08:47:04.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8717','322','2','11456','0.99','2005-08-02 21:14:04.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8718','322','2','13180','4.99','2005-08-19 14:00:38.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8719','322','1','13650','9.99','2005-08-20 07:49:06.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8720','322','2','14042','4.99','2005-08-20 21:45:51.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8721','322','1','15450','0.99','2005-08-23 00:56:01.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8722','322','2','15703','8.99','2005-08-23 10:23:48.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8723','323','1','58','4.99','2005-05-25 08:53:14.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8724','323','2','729','2.99','2005-05-29 06:35:13.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8725','323','1','878','5.99','2005-05-30 05:49:13.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8726','323','2','1167','0.99','2005-06-14 23:25:58.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8727','323','2','1786','2.99','2005-06-16 19:30:54.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8728','323','1','2933','4.99','2005-06-20 04:52:23.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8729','323','2','3704','6.99','2005-07-06 10:16:45.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8730','323','2','4572','1.99','2005-07-08 05:36:59.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8731','323','2','5669','4.99','2005-07-10 08:12:53.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8732','323','2','5906','1.99','2005-07-10 20:41:41.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8733','323','1','6840','3.99','2005-07-12 19:03:22.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8734','323','2','7146','7.99','2005-07-27 07:02:30.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8735','323','2','7275','2.99','2005-07-27 11:39:08.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8736','323','2','7695','5.99','2005-07-28 03:41:13.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8737','323','1','7847','1.99','2005-07-28 09:23:14.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8738','323','2','7937','4.99','2005-07-28 12:38:22.000','2006-02-15 22:16:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8739','323','2','8474','0.99','2005-07-29 08:36:56.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8740','323','1','8790','0.99','2005-07-29 20:51:41.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8741','323','1','9363','2.99','2005-07-30 18:44:23.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8742','323','2','10002','4.99','2005-07-31 17:48:16.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8743','323','1','10028','4.99','2005-07-31 18:35:54.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8744','323','1','10298','0.99','2005-08-01 04:06:03.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8745','323','1','10994','3.99','2005-08-02 04:46:53.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8746','323','2','11548','0.99','2005-08-17 00:59:47.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8747','323','1','12120','4.99','2005-08-17 23:16:46.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8748','323','1','12169','2.99','2005-08-18 01:05:54.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8749','323','1','13140','5.99','2005-08-19 12:35:56.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8750','323','1','14224','2.99','2005-08-21 04:53:08.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8751','323','1','14957','3.99','2005-08-22 06:29:34.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8752','323','1','15387','4.99','2005-08-22 22:49:13.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8753','323','1','15728','0.99','2005-08-23 11:30:32.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8754','324','2','563','3.99','2005-05-28 09:10:49.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8755','324','1','1740','0.99','2005-06-16 16:29:00.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8756','324','2','2590','2.99','2005-06-19 05:31:40.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8757','324','1','3947','4.99','2005-07-06 21:42:21.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8758','324','1','4197','0.99','2005-07-07 11:07:52.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8759','324','2','4368','4.99','2005-07-07 19:55:19.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8760','324','2','5702','2.99','2005-07-10 10:00:01.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8761','324','1','5778','0.99','2005-07-10 13:41:37.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8762','324','1','6034','2.99','2005-07-11 03:00:50.000','2006-02-15 22:16:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8763','324','2','6299','4.99','2005-07-11 17:45:08.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8764','324','2','7240','3.99','2005-07-27 10:21:15.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8765','324','1','7263','7.99','2005-07-27 11:17:22.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8766','324','2','7960','6.99','2005-07-28 13:47:08.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8767','324','1','8698','3.99','2005-07-29 16:52:17.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8768','324','1','9651','4.99','2005-07-31 05:48:49.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8769','324','2','10212','2.99','2005-08-01 01:01:35.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8770','324','1','11617','2.99','2005-08-17 04:00:40.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8771','324','1','11771','6.99','2005-08-17 10:17:09.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8772','324','2','12543','2.99','2005-08-18 14:23:55.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8773','324','2','13356','0.99','2005-08-19 21:02:21.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8774','324','1','13386','2.99','2005-08-19 21:43:58.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8775','324','1','14262','8.99','2005-08-21 06:08:13.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8776','324','2','14479','7.99','2005-08-21 13:35:54.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8777','324','1','15263','4.99','2005-08-22 18:27:33.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8778','324','2','13965','2.99','2006-02-14 15:16:03.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8779','325','1','131','5.99','2005-05-25 21:42:46.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8780','325','2','2502','4.99','2005-06-18 23:12:13.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8781','325','2','2507','4.99','2005-06-18 23:39:22.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8782','325','2','2808','2.99','2005-06-19 19:34:45.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8783','325','1','5470','5.99','2005-07-09 23:10:49.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8784','325','2','5740','2.99','2005-07-10 11:51:58.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8785','325','1','5775','4.99','2005-07-10 13:34:26.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8786','325','2','6135','4.99','2005-07-11 08:32:23.000','2006-02-15 22:16:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8787','325','2','6622','0.99','2005-07-12 09:04:11.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8788','325','2','7223','9.99','2005-07-27 09:42:27.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8789','325','2','7687','2.99','2005-07-28 03:20:26.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8790','325','2','8539','0.99','2005-07-29 10:48:24.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8791','325','2','10030','2.99','2005-07-31 18:39:36.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8792','325','1','10070','4.99','2005-07-31 19:46:29.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8793','325','2','10326','4.99','2005-08-01 04:55:34.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8794','325','1','10412','0.99','2005-08-01 07:57:16.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8795','325','2','12097','4.99','2005-08-17 22:35:24.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8796','325','1','12779','3.99','2005-08-18 23:44:00.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8797','325','2','13054','4.99','2005-08-19 09:34:02.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8798','325','2','14452','3.99','2005-08-21 12:23:20.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8799','325','1','14672','5.99','2005-08-21 19:59:33.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8800','325','2','15009','0.99','2005-08-22 08:27:27.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8801','326','1','875','6.99','2005-05-30 05:38:24.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8802','326','2','981','4.99','2005-05-30 21:52:42.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8803','326','2','1149','3.99','2005-05-31 21:03:17.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8804','326','1','1311','4.99','2005-06-15 10:11:59.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8805','326','2','2086','0.99','2005-06-17 17:32:07.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8806','326','2','2317','4.99','2005-06-18 09:12:18.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8807','326','1','3441','4.99','2005-06-21 20:00:12.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8808','326','2','3886','0.99','2005-07-06 18:44:24.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8809','326','1','4160','7.99','2005-07-07 09:13:17.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8810','326','1','5147','5.99','2005-07-09 08:17:41.000','2006-02-15 22:16:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8811','326','1','7117','2.99','2005-07-27 05:48:36.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8812','326','2','7725','2.99','2005-07-28 04:47:14.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8813','326','2','7931','4.99','2005-07-28 12:23:41.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8814','326','1','8467','5.99','2005-07-29 08:25:35.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8815','326','1','8604','4.99','2005-07-29 13:07:13.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8816','326','2','8739','2.99','2005-07-29 18:34:33.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8817','326','2','9855','0.99','2005-07-31 13:00:33.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8818','326','1','10108','0.99','2005-07-31 21:02:14.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8819','326','2','10173','4.99','2005-07-31 23:36:59.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8820','326','2','10720','0.99','2005-08-01 19:04:33.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8821','326','2','10976','4.99','2005-08-02 04:11:48.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8822','326','2','11010','0.99','2005-08-02 05:06:27.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8823','326','2','11428','2.99','2005-08-02 20:03:10.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8824','326','2','11485','4.99','2005-08-02 22:33:25.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8825','326','2','12829','2.99','2005-08-19 01:38:18.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8826','327','1','653','6.99','2005-05-28 20:12:20.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8827','327','1','1294','4.99','2005-06-15 09:09:27.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8828','327','2','1577','3.99','2005-06-16 04:03:28.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8829','327','2','1929','6.99','2005-06-17 06:49:30.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8830','327','1','2273','4.99','2005-06-18 06:30:02.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8831','327','2','2304','5.99','2005-06-18 08:30:15.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8832','327','2','2637','3.99','2005-06-19 09:20:56.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8833','327','1','4445','4.99','2005-07-07 23:08:22.000','2006-02-15 22:16:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8834','327','1','4521','0.99','2005-07-08 02:57:56.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8835','327','1','6618','2.99','2005-07-12 08:41:42.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8836','327','2','7458','1.99','2005-07-27 18:36:17.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8837','327','2','7808','1.99','2005-07-28 07:58:56.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8838','327','1','10371','0.99','2005-08-01 06:20:29.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8839','327','1','11372','4.99','2005-08-02 18:10:50.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8840','327','2','11929','6.99','2005-08-17 16:28:51.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8841','327','1','12016','0.99','2005-08-17 19:33:24.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8842','327','2','13158','2.99','2005-08-19 13:18:10.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8843','327','1','13360','4.99','2005-08-19 21:05:11.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8844','327','1','13448','0.99','2005-08-20 00:12:43.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8845','327','1','14847','4.99','2005-08-22 02:13:51.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8846','327','2','15365','3.99','2005-08-22 21:42:17.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8847','327','1','15386','2.99','2005-08-22 22:41:14.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8848','327','1','15828','5.99','2005-08-23 15:16:32.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8849','327','1','15916','9.99','2005-08-23 17:56:01.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8850','327','2','15969','7.99','2005-08-23 19:51:30.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8851','327','1','15297','2.99','2006-02-14 15:16:03.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8852','328','2','862','2.99','2005-05-30 03:09:11.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8853','328','2','1670','2.99','2005-06-16 10:26:33.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8854','328','2','1980','6.99','2005-06-17 09:48:05.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8855','328','2','2243','5.99','2005-06-18 04:33:03.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8856','328','1','3024','4.99','2005-06-20 11:29:17.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8857','328','1','3239','0.99','2005-06-21 02:48:40.000','2006-02-15 22:16:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8858','328','1','5450','4.99','2005-07-09 22:13:25.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8859','328','1','8017','1.99','2005-07-28 15:35:41.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8860','328','1','8577','6.99','2005-07-29 11:56:30.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8861','328','2','8780','4.99','2005-07-29 20:19:45.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8862','328','2','9557','2.99','2005-07-31 02:14:01.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8863','328','1','9835','2.99','2005-07-31 12:07:35.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8864','328','1','11174','2.99','2005-08-02 10:32:11.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8865','328','1','12175','4.99','2005-08-18 01:10:17.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8866','328','2','12825','0.99','2005-08-19 01:23:58.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8867','328','1','13609','2.99','2005-08-20 06:11:51.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8868','328','2','13681','7.99','2005-08-20 08:47:37.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8869','328','1','13907','3.99','2005-08-20 16:17:27.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8870','328','2','14307','3.99','2005-08-21 07:34:52.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8871','328','1','14755','3.99','2005-08-21 23:18:08.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8872','328','2','14939','2.99','2005-08-22 05:53:52.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8873','328','1','15179','4.99','2005-08-22 15:36:22.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8874','328','1','15863','0.99','2005-08-23 16:17:09.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8875','329','1','1183','2.99','2005-06-15 00:49:19.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8876','329','1','2010','5.99','2005-06-17 11:54:15.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8877','329','2','2024','0.99','2005-06-17 13:00:51.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8878','329','1','2151','0.99','2005-06-17 22:52:37.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8879','329','1','2303','2.99','2005-06-18 08:27:59.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8880','329','2','2702','2.99','2005-06-19 13:35:56.000','2006-02-15 22:16:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8881','329','1','3052','5.99','2005-06-20 13:09:19.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8882','329','2','3053','0.99','2005-06-20 13:10:30.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8883','329','2','3268','4.99','2005-06-21 04:55:49.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8884','329','2','3976','2.99','2005-07-06 23:00:20.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8885','329','2','4076','4.99','2005-07-07 04:52:15.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8886','329','1','4415','4.99','2005-07-07 22:01:43.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8887','329','1','4465','1.99','2005-07-08 00:07:45.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8888','329','2','4674','2.99','2005-07-08 10:19:28.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8889','329','1','7980','4.99','2005-07-28 14:16:49.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8890','329','2','8172','7.99','2005-07-28 21:34:36.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8891','329','1','8460','6.99','2005-07-29 08:08:03.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8892','329','2','8941','0.99','2005-07-30 02:59:21.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8893','329','2','9024','4.99','2005-07-30 05:44:42.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8894','329','2','9219','0.99','2005-07-30 13:15:21.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8895','329','1','9381','0.99','2005-07-30 19:23:04.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8896','329','1','9827','6.99','2005-07-31 11:56:55.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8897','329','1','10473','7.99','2005-08-01 09:56:24.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8898','329','2','10490','0.99','2005-08-01 10:37:11.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8899','329','1','11130','2.99','2005-08-02 09:08:59.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8900','329','2','11169','3.99','2005-08-02 10:19:42.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8901','329','2','11697','0.99','2005-08-17 07:09:19.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8902','329','1','12659','6.99','2005-08-18 19:05:49.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8903','329','1','13627','8.99','2005-08-20 06:59:00.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8904','329','1','14900','4.99','2005-08-22 04:27:48.000','2006-02-15 22:16:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8905','329','2','15011','4.99','2005-08-22 08:31:07.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8906','329','1','15308','2.99','2005-08-22 19:54:31.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8907','330','1','704','3.99','2005-05-29 02:44:43.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8908','330','2','967','7.99','2005-05-30 19:12:06.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8909','330','1','1219','6.99','2005-06-15 03:25:59.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8910','330','2','1511','5.99','2005-06-15 22:45:06.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8911','330','2','2885','0.99','2005-06-20 01:33:42.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8912','330','1','2936','4.99','2005-06-20 05:09:27.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8913','330','2','3061','2.99','2005-06-20 13:48:21.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8914','330','2','3603','4.99','2005-07-06 05:25:03.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8915','330','2','3659','2.99','2005-07-06 08:03:14.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8916','330','2','3760','2.99','2005-07-06 12:49:28.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8917','330','1','4124','1.99','2005-07-07 07:19:54.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8918','330','2','5149','2.99','2005-07-09 08:28:23.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8919','330','1','5750','5.99','2005-07-10 12:20:41.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8920','330','1','6656','0.99','2005-07-12 11:09:47.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8921','330','2','6678','2.99','2005-07-12 11:58:36.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8922','330','1','6719','2.99','2005-07-12 13:40:37.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8923','330','2','7894','2.99','2005-07-28 10:53:58.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8924','330','1','8680','4.99','2005-07-29 16:08:03.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8925','330','2','10100','4.99','2005-07-31 20:47:18.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8926','330','2','11259','3.99','2005-08-02 13:46:30.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8927','330','1','12062','2.99','2005-08-17 21:24:47.000','2006-02-15 22:16:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8928','330','1','12394','2.99','2005-08-18 09:05:15.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8929','330','1','12740','4.99','2005-08-18 22:17:04.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8930','330','1','12867','0.99','2005-08-19 02:40:11.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8931','330','2','11709','2.99','2006-02-14 15:16:03.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8932','331','2','87','0.99','2005-05-25 13:52:43.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8933','331','1','996','2.99','2005-05-31 00:06:20.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8934','331','1','1415','2.99','2005-06-15 17:31:57.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8935','331','2','2528','6.99','2005-06-19 01:14:12.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8936','331','1','2587','2.99','2005-06-19 05:06:14.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8937','331','1','3505','4.99','2005-07-06 00:19:32.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8938','331','1','3613','4.99','2005-07-06 05:45:53.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8939','331','2','3871','8.99','2005-07-06 17:58:51.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8940','331','1','4051','4.99','2005-07-07 03:37:28.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8941','331','2','4063','5.99','2005-07-07 04:23:57.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8942','331','1','4326','10.99','2005-07-07 18:01:22.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8943','331','1','5152','2.99','2005-07-09 08:34:44.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8944','331','1','5885','1.99','2005-07-10 19:33:50.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8945','331','1','5947','5.99','2005-07-10 23:07:42.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8946','331','1','8231','0.99','2005-07-29 00:14:37.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8947','331','2','8995','4.99','2005-07-30 04:53:11.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8948','331','1','9401','5.99','2005-07-30 20:18:19.000','2006-02-15 22:16:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8949','331','2','10188','6.99','2005-08-01 00:19:41.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8950','331','1','11052','5.99','2005-08-02 06:26:19.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8951','331','1','11362','2.99','2005-08-02 17:47:25.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8952','331','2','12533','4.99','2005-08-18 14:01:40.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8953','331','1','13795','0.99','2005-08-20 12:32:09.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8954','331','1','14256','7.99','2005-08-21 05:52:27.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8955','331','1','14628','1.99','2005-08-21 18:37:24.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8956','331','1','15339','2.99','2005-08-22 20:52:12.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8957','331','2','15447','3.99','2005-08-23 00:53:57.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8958','331','1','15521','2.99','2005-08-23 03:30:51.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8959','332','2','600','3.99','2005-05-28 14:08:19.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8960','332','1','1000','6.99','2005-05-31 00:25:56.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8961','332','1','4100','6.99','2005-07-07 06:20:52.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8962','332','1','4302','6.99','2005-07-07 16:47:53.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8963','332','2','5116','2.99','2005-07-09 07:10:12.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8964','332','1','5277','1.99','2005-07-09 14:40:42.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8965','332','2','5381','2.99','2005-07-09 19:11:11.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8966','332','2','5388','0.99','2005-07-09 19:25:25.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8967','332','1','5440','0.99','2005-07-09 21:45:17.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8968','332','2','7049','7.99','2005-07-27 03:32:41.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8969','332','2','7418','2.99','2005-07-27 16:59:09.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8970','332','2','7577','8.99','2005-07-27 22:56:07.000','2006-02-15 22:16:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8971','332','2','7578','4.99','2005-07-27 22:58:17.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8972','332','2','7934','8.99','2005-07-28 12:33:10.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8973','332','2','8173','6.99','2005-07-28 21:35:44.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8974','332','1','9324','1.99','2005-07-30 17:28:52.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8975','332','1','9388','5.99','2005-07-30 19:27:22.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8976','332','1','9921','0.99','2005-07-31 14:59:21.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8977','332','1','10026','4.99','2005-07-31 18:31:51.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8978','332','1','10307','0.99','2005-08-01 04:21:54.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8979','332','2','10439','0.99','2005-08-01 08:54:26.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8980','332','1','11229','5.99','2005-08-02 12:56:37.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8981','332','2','11564','2.99','2005-08-17 01:27:49.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8982','332','2','12318','4.99','2005-08-18 06:21:56.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8983','332','2','13673','2.99','2005-08-20 08:27:30.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8984','332','2','14783','4.99','2005-08-22 00:21:57.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8985','332','2','15194','0.99','2005-08-22 16:07:34.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8986','332','1','15210','3.99','2005-08-22 16:37:36.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8987','333','1','4','4.99','2005-05-24 23:04:41.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8988','333','1','1667','2.99','2005-06-16 10:18:59.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8989','333','1','2149','6.99','2005-06-17 22:50:00.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8990','333','1','2929','1.99','2005-06-20 04:47:39.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8991','333','1','3110','2.99','2005-06-20 17:40:12.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8992','333','2','5032','0.99','2005-07-09 02:39:47.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8993','333','1','5645','1.99','2005-07-10 06:58:21.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8994','333','2','5892','4.99','2005-07-10 20:02:42.000','2006-02-15 22:16:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8995','333','2','6275','0.99','2005-07-11 16:12:11.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8996','333','2','6931','4.99','2005-07-26 23:02:57.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8997','333','2','6958','0.99','2005-07-27 00:02:41.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8998','333','2','7076','6.99','2005-07-27 04:12:14.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('8999','333','2','7246','0.99','2005-07-27 10:30:41.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9000','333','1','8719','4.99','2005-07-29 17:45:45.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9001','333','2','9148','4.99','2005-07-30 10:39:10.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9002','333','2','9338','10.99','2005-07-30 18:03:13.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9003','333','2','10035','4.99','2005-07-31 18:46:46.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9004','333','1','10062','2.99','2005-07-31 19:24:55.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9005','333','2','10844','4.99','2005-08-01 23:46:58.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9006','333','1','12427','6.99','2005-08-18 10:24:17.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9007','333','2','12661','0.99','2005-08-18 19:10:10.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9008','333','1','13579','3.99','2005-08-20 05:22:06.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9009','333','2','13710','4.99','2005-08-20 09:35:20.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9010','333','1','14057','4.99','2005-08-20 22:22:59.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9011','333','1','14740','2.99','2005-08-21 22:35:33.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9012','333','2','15253','2.99','2005-08-22 18:05:21.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9013','333','1','15313','4.99','2005-08-22 19:59:42.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9014','334','1','13','6.99','2005-05-25 00:22:55.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9015','334','1','431','8.99','2005-05-27 16:31:05.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9016','334','2','1187','4.99','2005-06-15 00:58:50.000','2006-02-15 22:16:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9017','334','1','1298','4.99','2005-06-15 09:32:53.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9018','334','2','2476','0.99','2005-06-18 20:57:12.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9019','334','1','3662','4.99','2005-07-06 08:11:48.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9020','334','1','4603','6.99','2005-07-08 06:57:07.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9021','334','2','5014','4.99','2005-07-09 01:51:49.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9022','334','2','5434','0.99','2005-07-09 21:25:20.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9023','334','2','5818','5.99','2005-07-10 15:51:12.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9024','334','1','5845','4.99','2005-07-10 17:23:14.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9025','334','2','6641','5.99','2005-07-12 10:33:14.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9026','334','2','6749','4.99','2005-07-12 14:43:05.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9027','334','1','6987','2.99','2005-07-27 00:59:50.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9028','334','1','8977','7.99','2005-07-30 04:14:07.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9029','334','1','9633','2.99','2005-07-31 05:04:08.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9030','334','1','10207','3.99','2005-08-01 00:53:01.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9031','334','1','10408','4.99','2005-08-01 07:42:10.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9032','334','1','10492','2.99','2005-08-01 10:42:28.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9033','334','1','10879','1.99','2005-08-02 00:33:20.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9034','334','2','10997','7.99','2005-08-02 04:49:02.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9035','334','2','12677','4.99','2005-08-18 19:36:05.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9036','334','2','13325','4.99','2005-08-19 19:52:02.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9037','334','1','13876','2.99','2005-08-20 15:15:28.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9038','334','1','14645','0.99','2005-08-21 19:12:47.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9039','334','1','14984','7.99','2005-08-22 07:35:31.000','2006-02-15 22:16:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9040','334','2','15548','0.99','2005-08-23 04:26:20.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9041','334','2','15656','4.99','2005-08-23 08:38:58.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9042','334','1','15669','3.99','2005-08-23 09:06:17.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9043','334','1','14219','0.99','2006-02-14 15:16:03.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9044','335','1','3329','4.99','2005-06-21 09:20:31.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9045','335','1','3607','0.99','2005-07-06 05:30:09.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9046','335','2','4016','0.99','2005-07-07 01:05:50.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9047','335','2','4032','2.99','2005-07-07 02:34:13.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9048','335','1','4279','4.99','2005-07-07 15:01:53.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9049','335','1','4387','8.99','2005-07-07 20:56:47.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9050','335','1','5024','4.99','2005-07-09 02:25:12.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9051','335','1','5252','0.99','2005-07-09 13:40:44.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9052','335','2','5728','2.99','2005-07-10 11:26:14.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9053','335','1','6624','7.99','2005-07-12 09:05:50.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9054','335','1','6906','0.99','2005-07-12 22:03:02.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9055','335','2','8634','3.99','2005-07-29 14:19:57.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9056','335','1','8855','2.99','2005-07-29 23:40:10.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9057','335','1','9125','5.99','2005-07-30 09:43:39.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9058','335','2','9361','4.99','2005-07-30 18:43:49.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9059','335','1','9428','0.99','2005-07-30 21:18:37.000','2006-02-15 22:16:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9060','335','2','10606','4.99','2005-08-01 14:39:15.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9061','335','2','13267','0.99','2005-08-19 17:31:36.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9062','335','1','13622','1.99','2005-08-20 06:45:32.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9063','335','1','14014','2.99','2005-08-20 20:47:09.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9064','335','2','15005','4.99','2005-08-22 08:15:44.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9065','335','2','15101','0.99','2005-08-22 11:56:02.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9066','335','2','11541','0.99','2006-02-14 15:16:03.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9067','336','1','1478','2.99','2005-06-15 21:12:13.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9068','336','2','2212','2.99','2005-06-18 02:36:10.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9069','336','2','2475','2.99','2005-06-18 20:52:46.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9070','336','1','2575','2.99','2005-06-19 04:32:52.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9071','336','2','2719','4.99','2005-06-19 14:50:19.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9072','336','1','2954','2.99','2005-06-20 06:45:00.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9073','336','2','3204','4.99','2005-06-21 00:37:50.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9074','336','2','3349','0.99','2005-06-21 11:17:35.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9075','336','2','4323','5.99','2005-07-07 17:55:53.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9076','336','1','4595','2.99','2005-07-08 06:40:25.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9077','336','2','5649','2.99','2005-07-10 07:15:07.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9078','336','2','5667','0.99','2005-07-10 08:11:03.000','2006-02-15 22:16:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9079','336','2','6263','4.99','2005-07-11 15:33:50.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9080','336','2','6382','6.99','2005-07-11 21:58:53.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9081','336','2','8275','4.99','2005-07-29 01:35:47.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9082','336','1','8407','6.99','2005-07-29 06:37:02.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9083','336','2','8607','4.99','2005-07-29 13:18:00.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9084','336','2','8951','8.99','2005-07-30 03:18:24.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9085','336','2','9306','0.99','2005-07-30 16:47:17.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9086','336','1','10055','0.99','2005-07-31 19:15:58.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9087','336','2','11743','2.99','2005-08-17 08:49:05.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9088','336','1','12323','8.99','2005-08-18 06:36:22.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9089','336','2','12794','0.99','2005-08-19 00:20:37.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9090','336','2','12926','3.99','2005-08-19 05:00:16.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9091','336','2','13066','0.99','2005-08-19 09:50:39.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9092','336','2','13689','4.99','2005-08-20 09:04:30.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9093','336','1','14295','2.99','2005-08-21 07:09:27.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9094','336','1','15073','10.99','2005-08-22 11:01:15.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9095','336','2','15848','2.99','2005-08-23 15:41:12.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9096','336','1','13022','0.99','2006-02-14 15:16:03.000','2006-02-15 22:16:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9097','337','1','374','6.99','2005-05-27 08:26:30.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9098','337','1','572','4.99','2005-05-28 10:30:13.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9099','337','1','839','8.99','2005-05-30 00:28:12.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9100','337','2','1969','4.99','2005-06-17 09:22:22.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9101','337','1','2014','5.99','2005-06-17 12:03:28.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9102','337','1','3626','5.99','2005-07-06 06:15:35.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9103','337','1','4091','6.99','2005-07-07 05:53:38.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9104','337','2','4093','4.99','2005-07-07 05:54:50.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9105','337','2','4855','4.99','2005-07-08 18:45:50.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9106','337','1','5050','2.99','2005-07-09 03:54:38.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9107','337','1','6212','0.99','2005-07-11 12:40:48.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9108','337','2','6305','7.99','2005-07-11 18:02:25.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9109','337','1','6620','2.99','2005-07-12 08:51:03.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9110','337','1','7410','4.99','2005-07-27 16:41:59.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9111','337','1','8516','4.99','2005-07-29 10:00:03.000','2006-02-15 22:16:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9112','337','2','8919','8.99','2005-07-30 01:57:03.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9113','337','2','9051','5.99','2005-07-30 07:05:54.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9114','337','1','10664','0.99','2005-08-01 16:51:15.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9115','337','2','10765','0.99','2005-08-01 20:34:51.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9116','337','2','11252','2.99','2005-08-02 13:42:13.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9117','337','1','11734','3.99','2005-08-17 08:34:22.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9118','337','1','12369','6.99','2005-08-18 07:57:43.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9119','337','2','13305','6.99','2005-08-19 18:57:05.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9120','337','1','13678','4.99','2005-08-20 08:38:24.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9121','337','2','13892','3.99','2005-08-20 15:50:17.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9122','337','2','14118','5.99','2005-08-21 01:13:37.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9123','337','2','15241','4.99','2005-08-22 17:47:40.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9124','337','1','15292','4.99','2005-08-22 19:28:56.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9125','337','2','11847','0.99','2006-02-14 15:16:03.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9126','338','1','675','0.99','2005-05-28 22:22:44.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9127','338','2','1510','4.99','2005-06-15 22:39:34.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9128','338','1','1807','5.99','2005-06-16 20:58:59.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9129','338','2','1952','4.99','2005-06-17 08:33:02.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9130','338','1','2148','6.99','2005-06-17 22:44:35.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9131','338','1','2179','0.99','2005-06-18 00:41:36.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9132','338','1','2495','4.99','2005-06-18 22:15:42.000','2006-02-15 22:16:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9133','338','1','3458','5.99','2005-06-21 21:42:49.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9134','338','1','3516','0.99','2005-07-06 00:50:30.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9135','338','2','3772','2.99','2005-07-06 13:22:53.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9136','338','2','4104','5.99','2005-07-07 06:25:41.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9137','338','2','4779','4.99','2005-07-08 15:53:41.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9138','338','1','5309','4.99','2005-07-09 16:00:16.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9139','338','1','6236','2.99','2005-07-11 14:18:17.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9140','338','1','6360','4.99','2005-07-11 21:07:40.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9141','338','2','7584','3.99','2005-07-27 23:15:46.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9142','338','1','8766','0.99','2005-07-29 19:41:04.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9143','338','1','9485','7.99','2005-07-30 23:32:40.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9144','338','2','10791','2.99','2005-08-01 21:41:52.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9145','338','1','10897','0.99','2005-08-02 01:23:42.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9146','338','2','11064','4.99','2005-08-02 06:55:17.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9147','338','2','11671','4.99','2005-08-17 05:50:21.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9148','338','2','11719','5.99','2005-08-17 07:46:05.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9149','338','1','12167','2.99','2005-08-18 01:00:02.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9150','338','1','13284','3.99','2005-08-19 18:12:31.000','2006-02-15 22:16:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9151','338','1','14619','2.99','2005-08-21 18:10:03.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9152','338','2','15105','0.99','2005-08-22 12:01:33.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9153','338','2','15173','6.99','2005-08-22 15:26:29.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9154','339','1','876','5.99','2005-05-30 05:41:22.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9155','339','2','1432','3.99','2005-06-15 18:27:24.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9156','339','1','1536','4.99','2005-06-16 00:52:22.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9157','339','2','1629','4.99','2005-06-16 07:53:47.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9158','339','1','3146','6.99','2005-06-20 20:21:48.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9159','339','1','3335','4.99','2005-06-21 10:09:08.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9160','339','2','3536','2.99','2005-07-06 01:36:11.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9161','339','1','4243','4.99','2005-07-07 13:39:58.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9162','339','1','4467','0.99','2005-07-08 00:13:52.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9163','339','2','4967','3.99','2005-07-08 23:48:03.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9164','339','1','5720','3.99','2005-07-10 11:09:12.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9165','339','1','6072','6.99','2005-07-11 04:52:40.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9166','339','1','6425','0.99','2005-07-11 23:54:52.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9167','339','2','6682','7.99','2005-07-12 12:12:43.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9168','339','2','7244','2.99','2005-07-27 10:27:33.000','2006-02-15 22:16:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9169','339','2','7973','4.99','2005-07-28 14:10:06.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9170','339','1','8968','0.99','2005-07-30 03:57:32.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9171','339','2','9208','5.99','2005-07-30 12:54:03.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9172','339','1','9663','4.99','2005-07-31 06:10:48.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9173','339','2','10338','3.99','2005-08-01 05:03:03.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9174','339','2','11171','4.99','2005-08-02 10:23:41.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9175','339','1','11550','2.99','2005-08-17 01:02:06.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9176','339','2','11582','3.99','2005-08-17 02:03:49.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9177','339','2','11699','5.99','2005-08-17 07:11:58.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9178','339','1','12631','0.99','2005-08-18 17:52:51.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9179','339','1','13199','3.99','2005-08-19 14:53:22.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9180','339','1','13575','5.99','2005-08-20 05:15:20.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9181','339','1','13985','0.99','2005-08-20 19:13:06.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9182','339','1','14636','4.99','2005-08-21 18:59:17.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9183','339','2','14758','3.99','2005-08-21 23:24:52.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9184','340','2','1205','4.99','2005-06-15 02:25:56.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9185','340','1','1697','3.99','2005-06-16 12:55:20.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9186','340','1','2177','5.99','2005-06-18 00:34:45.000','2006-02-15 22:16:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9187','340','2','2183','4.99','2005-06-18 01:06:01.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9188','340','2','2607','5.99','2005-06-19 06:55:01.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9189','340','1','2653','5.99','2005-06-19 10:36:53.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9190','340','1','3264','0.99','2005-06-21 04:19:03.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9191','340','1','3455','2.99','2005-06-21 21:17:51.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9192','340','2','4475','2.99','2005-07-08 00:27:30.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9193','340','1','4742','0.99','2005-07-08 13:35:23.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9194','340','2','6381','4.99','2005-07-11 21:58:48.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9195','340','2','7617','2.99','2005-07-28 00:18:40.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9196','340','2','8274','4.99','2005-07-29 01:34:32.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9197','340','1','8541','0.99','2005-07-29 10:55:01.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9198','340','2','8551','4.99','2005-07-29 11:13:11.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9199','340','1','8606','4.99','2005-07-29 13:14:24.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9200','340','1','9834','2.99','2005-07-31 12:05:42.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9201','340','1','10292','2.99','2005-08-01 03:42:40.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9202','340','1','10667','8.99','2005-08-01 16:58:22.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9203','340','2','10674','3.99','2005-08-01 17:11:52.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9204','340','1','10809','0.99','2005-08-01 22:39:27.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9205','340','1','10995','0.99','2005-08-02 04:48:00.000','2006-02-15 22:16:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9206','340','2','12598','4.99','2005-08-18 16:34:03.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9207','340','2','12908','1.99','2005-08-19 04:19:05.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9208','340','2','12940','2.99','2005-08-19 05:38:29.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9209','340','1','13425','2.99','2005-08-19 23:11:44.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9210','340','1','14457','4.99','2005-08-21 12:47:38.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9211','340','2','14718','0.99','2005-08-21 21:39:25.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9212','340','1','14895','2.99','2005-08-22 04:19:23.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9213','340','2','15306','2.99','2005-08-22 19:46:36.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9214','340','1','15378','9.99','2005-08-22 22:25:17.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9215','341','1','1318','2.99','2005-06-15 10:34:26.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9216','341','2','1520','7.99','2005-06-15 23:57:20.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9217','341','1','1778','1.99','2005-06-16 18:54:48.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9218','341','1','1849','7.99','2005-06-17 00:13:19.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9219','341','2','2829','2.99','2005-06-19 21:11:30.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9220','341','2','3130','7.99','2005-06-20 19:03:22.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9221','341','1','3382','5.99','2005-06-21 14:05:23.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9222','341','2','3938','4.99','2005-07-06 21:15:45.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9223','341','1','4624','2.99','2005-07-08 08:12:17.000','2006-02-15 22:16:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9224','341','2','5487','4.99','2005-07-10 00:01:50.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9225','341','2','5931','0.99','2005-07-10 22:04:19.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9226','341','2','7473','2.99','2005-07-27 19:05:40.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9227','341','1','8661','2.99','2005-07-29 15:28:24.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9228','341','1','8728','9.99','2005-07-29 18:12:49.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9229','341','2','10605','0.99','2005-08-01 14:36:26.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9230','341','1','11305','6.99','2005-08-02 15:44:55.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9231','341','1','11723','2.99','2005-08-17 07:56:22.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9232','341','2','13059','0.99','2005-08-19 09:42:01.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9233','341','2','13074','8.99','2005-08-19 10:06:53.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9234','341','2','13806','4.99','2005-08-20 12:53:46.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9235','341','2','14344','4.99','2005-08-21 08:40:56.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9236','341','2','15030','0.99','2005-08-22 09:10:21.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9237','341','2','15938','6.99','2005-08-23 18:43:31.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9238','342','2','2190','5.99','2005-06-18 01:29:51.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9239','342','1','2914','5.99','2005-06-20 03:43:18.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9240','342','1','3081','2.99','2005-06-20 15:29:13.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9241','342','1','5617','0.99','2005-07-10 05:28:50.000','2006-02-15 22:16:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9242','342','2','6060','4.99','2005-07-11 04:06:17.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9243','342','2','6429','8.99','2005-07-12 00:02:50.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9244','342','1','6736','2.99','2005-07-12 14:16:50.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9245','342','2','6787','7.99','2005-07-12 16:33:28.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9246','342','2','6997','0.99','2005-07-27 01:14:02.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9247','342','2','7280','2.99','2005-07-27 11:50:52.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9248','342','1','9164','2.99','2005-07-30 11:24:14.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9249','342','1','9526','0.99','2005-07-31 01:02:22.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9250','342','2','9948','5.99','2005-07-31 15:49:41.000','2006-02-15 22:16:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9251','342','1','9955','0.99','2005-07-31 16:01:26.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9252','342','2','9956','4.99','2005-07-31 16:03:47.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9253','342','1','10242','4.99','2005-08-01 02:18:12.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9254','342','2','11178','2.99','2005-08-02 10:48:10.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9255','342','2','11446','0.99','2005-08-02 20:33:37.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9256','342','1','11568','0.99','2005-08-17 01:30:01.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9257','342','1','12139','6.99','2005-08-17 23:57:13.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9258','342','1','12404','4.99','2005-08-18 09:36:34.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9259','342','1','12522','2.99','2005-08-18 13:45:40.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9260','342','2','12816','4.99','2005-08-19 01:04:05.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9261','342','2','13368','4.99','2005-08-19 21:19:35.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9262','342','2','13637','4.99','2005-08-20 07:21:15.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9263','342','1','13755','2.99','2005-08-20 11:18:53.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9264','342','2','13827','4.99','2005-08-20 13:47:19.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9265','342','2','14096','2.99','2005-08-21 00:27:46.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9266','342','2','14299','0.99','2005-08-21 07:18:57.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9267','342','2','14683','8.99','2005-08-21 20:27:44.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9268','342','1','15484','4.99','2005-08-23 02:04:49.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9269','342','1','15895','3.99','2005-08-23 17:09:31.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9270','343','2','102','3.99','2005-05-25 17:22:10.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9271','343','1','455','3.99','2005-05-27 19:43:29.000','2006-02-15 22:16:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9272','343','2','1547','4.99','2005-06-16 01:42:24.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9273','343','1','1564','6.99','2005-06-16 02:47:07.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9274','343','2','1879','0.99','2005-06-17 02:57:34.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9275','343','2','1922','0.99','2005-06-17 06:04:25.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9276','343','2','2461','6.99','2005-06-18 19:58:12.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9277','343','1','2980','8.99','2005-06-20 08:35:03.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9278','343','1','3407','0.99','2005-06-21 16:14:02.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9279','343','1','3978','5.99','2005-07-06 23:04:33.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9280','343','1','4472','7.99','2005-07-08 00:22:06.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9281','343','2','5097','4.99','2005-07-09 06:09:51.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9282','343','1','5337','3.99','2005-07-09 17:03:50.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9283','343','1','7069','6.99','2005-07-27 03:59:35.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9284','343','2','8012','5.99','2005-07-28 15:29:00.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9285','343','2','8088','9.99','2005-07-28 18:23:49.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9286','343','2','9458','5.99','2005-07-30 22:24:34.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9287','343','2','9739','2.99','2005-07-31 09:08:03.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9288','343','1','10822','0.99','2005-08-01 22:54:28.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9289','343','1','11212','0.99','2005-08-02 12:18:29.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9290','343','2','11570','2.99','2005-08-17 01:34:32.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9291','343','2','13279','4.99','2005-08-19 18:02:18.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9292','343','2','13522','3.99','2005-08-20 02:44:06.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9293','343','2','13866','0.99','2005-08-20 15:05:29.000','2006-02-15 22:16:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9294','343','2','15973','5.99','2005-08-23 20:04:41.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9295','344','2','157','2.99','2005-05-26 01:25:21.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9296','344','2','813','5.99','2005-05-29 20:14:34.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9297','344','1','1341','3.99','2005-06-15 12:26:18.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9298','344','2','1475','4.99','2005-06-15 21:08:01.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9299','344','1','1731','0.99','2005-06-16 15:32:12.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9300','344','2','4028','5.99','2005-07-07 02:19:14.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9301','344','2','4347','3.99','2005-07-07 18:58:57.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9302','344','2','6363','5.99','2005-07-11 21:13:19.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9303','344','2','7480','4.99','2005-07-27 19:19:53.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9304','344','2','8561','2.99','2005-07-29 11:29:12.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9305','344','2','9788','4.99','2005-07-31 10:28:21.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9306','344','2','11116','5.99','2005-08-02 08:34:40.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9307','344','2','12183','5.99','2005-08-18 01:34:13.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9308','344','2','13014','4.99','2005-08-19 07:56:08.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9309','344','1','13033','3.99','2005-08-19 08:34:39.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9310','344','1','14621','0.99','2005-08-21 18:17:59.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9311','344','2','14624','0.99','2005-08-21 18:32:42.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9312','344','1','15215','2.99','2005-08-22 16:55:26.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9313','345','1','206','0.99','2005-05-26 08:01:54.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9314','345','1','363','0.99','2005-05-27 07:14:00.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9315','345','2','1210','0.99','2005-06-15 02:57:51.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9316','345','1','1457','4.99','2005-06-15 20:05:49.000','2006-02-15 22:16:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9317','345','2','1550','0.99','2005-06-16 01:58:35.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9318','345','2','2766','4.99','2005-06-19 17:45:15.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9319','345','2','4422','2.99','2005-07-07 22:09:45.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9320','345','1','4425','2.99','2005-07-07 22:22:44.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9321','345','2','4450','4.99','2005-07-07 23:20:05.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9322','345','2','5508','3.99','2005-07-10 00:50:01.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9323','345','1','6307','7.99','2005-07-11 18:04:29.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9324','345','1','7092','6.99','2005-07-27 04:46:00.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9325','345','2','8129','2.99','2005-07-28 19:47:02.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9326','345','2','8694','8.99','2005-07-29 16:44:48.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9327','345','1','9163','4.99','2005-07-30 11:23:22.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9328','345','2','9207','2.99','2005-07-30 12:49:57.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9329','345','2','10215','8.99','2005-08-01 01:04:28.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9330','345','2','10982','4.99','2005-08-02 04:19:11.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9331','345','1','11865','2.99','2005-08-17 14:03:46.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9332','345','1','12485','4.99','2005-08-18 12:41:41.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9333','345','2','12805','4.99','2005-08-19 00:36:34.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9334','345','1','14702','10.99','2005-08-21 21:00:03.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9335','345','1','15551','4.99','2005-08-23 04:28:25.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9336','346','1','65','4.99','2005-05-25 09:32:03.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9337','346','1','810','4.99','2005-05-29 19:12:04.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9338','346','1','1994','5.99','2005-06-17 11:07:06.000','2006-02-15 22:16:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9339','346','2','3372','2.99','2005-06-21 13:34:19.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9340','346','1','3421','2.99','2005-06-21 17:22:58.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9341','346','2','4420','4.99','2005-07-07 22:07:31.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9342','346','1','4958','8.99','2005-07-08 23:19:52.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9343','346','1','5428','4.99','2005-07-09 21:12:50.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9344','346','2','5557','4.99','2005-07-10 03:10:21.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9345','346','2','6136','4.99','2005-07-11 08:34:09.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9346','346','2','6323','2.99','2005-07-11 19:02:19.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9347','346','2','6881','8.99','2005-07-12 20:46:35.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9348','346','2','7943','6.99','2005-07-28 12:50:55.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9349','346','2','8272','5.99','2005-07-29 01:29:51.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9350','346','1','8505','6.99','2005-07-29 09:22:52.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9351','346','2','8543','0.99','2005-07-29 11:01:57.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9352','346','2','8732','8.99','2005-07-29 18:25:03.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9353','346','2','9566','4.99','2005-07-31 02:32:10.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9354','346','1','9848','4.99','2005-07-31 12:44:33.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9355','346','1','9927','2.99','2005-07-31 15:12:13.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9356','346','1','10304','5.99','2005-08-01 04:14:12.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9357','346','2','10389','3.99','2005-08-01 06:46:43.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9358','346','2','10521','0.99','2005-08-01 11:46:17.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9359','346','2','11062','4.99','2005-08-02 06:52:54.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9360','346','1','11375','4.99','2005-08-02 18:14:56.000','2006-02-15 22:16:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9361','346','2','11470','2.99','2005-08-02 21:48:28.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9362','346','1','14890','5.99','2005-08-22 04:10:49.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9363','346','2','15459','2.99','2005-08-23 01:09:48.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9364','346','1','15535','0.99','2005-08-23 03:58:02.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9365','346','1','15661','8.99','2005-08-23 08:52:03.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9366','346','2','15825','5.99','2005-08-23 15:10:42.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9367','346','1','15827','0.99','2005-08-23 15:15:19.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9368','347','2','1711','8.99','2005-06-16 14:11:52.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9369','347','2','2274','0.99','2005-06-18 06:31:15.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9370','347','1','3026','4.99','2005-06-20 11:48:00.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9371','347','1','3092','8.99','2005-06-20 16:04:42.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9372','347','1','3326','7.99','2005-06-21 09:04:50.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9373','347','2','3605','0.99','2005-07-06 05:27:15.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9374','347','2','3666','4.99','2005-07-06 08:27:43.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9375','347','1','4232','5.99','2005-07-07 12:49:12.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9376','347','1','4523','6.99','2005-07-08 03:06:59.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9377','347','2','5471','0.99','2005-07-09 23:11:52.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9378','347','1','5819','2.99','2005-07-10 15:56:20.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9379','347','2','6121','1.99','2005-07-11 07:55:27.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9380','347','1','7811','0.99','2005-07-28 08:06:01.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9381','347','2','8148','4.99','2005-07-28 20:39:47.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9382','347','2','8153','4.99','2005-07-28 20:55:49.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9383','347','2','8176','4.99','2005-07-28 21:42:08.000','2006-02-15 22:16:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9384','347','2','8378','4.99','2005-07-29 05:28:35.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9385','347','2','8771','2.99','2005-07-29 19:54:41.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9386','347','1','9013','4.99','2005-07-30 05:19:20.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9387','347','1','9582','4.99','2005-07-31 03:05:19.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9388','347','1','9856','3.99','2005-07-31 13:00:35.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9389','347','1','9876','2.99','2005-07-31 13:37:51.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9390','347','2','11738','8.99','2005-08-17 08:45:55.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9391','347','1','12195','2.99','2005-08-18 02:07:49.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9392','347','2','12399','10.99','2005-08-18 09:13:42.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9393','347','2','13314','5.99','2005-08-19 19:12:43.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9394','347','2','14894','4.99','2005-08-22 04:16:56.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9395','347','2','14958','2.99','2005-08-22 06:30:10.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9396','347','2','15426','2.99','2005-08-23 00:07:19.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9397','347','2','15555','4.99','2005-08-23 04:51:52.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9398','348','2','153','0.99','2005-05-26 00:47:47.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9399','348','2','821','0.99','2005-05-29 21:31:12.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9400','348','1','1654','2.99','2005-06-16 09:42:48.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9401','348','1','2041','8.99','2005-06-17 14:19:00.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9402','348','2','2499','0.99','2005-06-18 23:01:36.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9403','348','2','3494','4.99','2005-07-05 23:47:30.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9404','348','2','3610','4.99','2005-07-06 05:36:59.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9405','348','2','4556','9.99','2005-07-08 04:48:41.000','2006-02-15 22:16:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9406','348','2','4633','0.99','2005-07-08 08:39:39.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9407','348','1','4699','0.99','2005-07-08 11:36:56.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9408','348','1','4807','8.99','2005-07-08 17:01:48.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9409','348','1','5345','4.99','2005-07-09 17:28:18.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9410','348','2','5965','0.99','2005-07-10 23:51:52.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9411','348','2','6776','2.99','2005-07-12 16:02:09.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9412','348','2','7380','2.99','2005-07-27 15:37:01.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9413','348','1','7482','6.99','2005-07-27 19:24:16.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9414','348','2','7825','4.99','2005-07-28 08:34:57.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9415','348','1','8500','2.99','2005-07-29 09:12:01.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9416','348','1','8569','4.99','2005-07-29 11:39:17.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9417','348','2','8682','4.99','2005-07-29 16:15:26.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9418','348','2','9482','2.99','2005-07-30 23:29:16.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9419','348','1','10769','2.99','2005-08-01 20:43:02.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9420','348','2','10972','2.99','2005-08-02 04:08:25.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9421','348','1','11262','2.99','2005-08-02 13:58:55.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9422','348','1','11429','7.99','2005-08-02 20:03:52.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9423','348','2','12564','2.99','2005-08-18 15:11:35.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9424','348','2','12884','5.99','2005-08-19 03:34:04.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9425','348','2','12937','4.99','2005-08-19 05:25:30.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9426','348','2','13238','2.99','2005-08-19 16:20:56.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9427','348','2','13602','5.99','2005-08-20 06:02:02.000','2006-02-15 22:16:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9428','348','2','13684','0.99','2005-08-20 08:55:53.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9429','348','1','13962','1.99','2005-08-20 18:18:06.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9430','348','2','14079','3.99','2005-08-20 23:29:25.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9431','348','2','14937','7.99','2005-08-22 05:51:59.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9432','348','2','15817','0.99','2005-08-23 14:59:51.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9433','348','1','15944','4.99','2005-08-23 18:50:54.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9434','349','1','890','4.99','2005-05-30 07:43:04.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9435','349','1','1197','2.99','2005-06-15 01:42:46.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9436','349','1','1523','0.99','2005-06-16 00:18:40.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9437','349','2','2987','6.99','2005-06-20 08:55:50.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9438','349','1','3067','8.99','2005-06-20 13:59:21.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9439','349','2','3488','3.99','2005-07-05 23:32:49.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9440','349','1','4190','2.99','2005-07-07 10:52:39.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9441','349','2','4494','5.99','2005-07-08 01:42:45.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9442','349','1','4881','0.99','2005-07-08 19:40:34.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9443','349','1','5433','4.99','2005-07-09 21:22:00.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9444','349','1','7002','4.99','2005-07-27 01:26:14.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9445','349','1','7046','4.99','2005-07-27 03:27:56.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9446','349','2','7702','2.99','2005-07-28 03:56:05.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9447','349','2','8297','4.99','2005-07-29 02:45:46.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9448','349','1','9262','1.99','2005-07-30 14:45:02.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9449','349','1','9670','5.99','2005-07-31 06:33:33.000','2006-02-15 22:16:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9450','349','1','9731','0.99','2005-07-31 08:54:47.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9451','349','1','10987','4.99','2005-08-02 04:36:52.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9452','349','2','11192','4.99','2005-08-02 11:29:41.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9453','349','2','11492','8.99','2005-08-02 22:46:47.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9454','349','1','11905','3.99','2005-08-17 15:40:18.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9455','349','1','13258','4.99','2005-08-19 17:05:37.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9456','349','2','13636','4.99','2005-08-20 07:20:09.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9457','349','2','14200','6.99','2005-08-21 03:51:27.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9458','349','2','14721','6.99','2005-08-21 21:50:51.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9459','349','2','14908','4.99','2005-08-22 04:44:10.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9460','349','1','15833','6.99','2005-08-23 15:22:15.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9461','349','1','15955','5.99','2005-08-23 19:19:06.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9462','349','1','14915','2.99','2006-02-14 15:16:03.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9463','350','1','24','4.99','2005-05-25 02:53:02.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9464','350','1','802','4.99','2005-05-29 17:38:59.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9465','350','2','2011','3.99','2005-06-17 11:56:09.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9466','350','1','2619','0.99','2005-06-19 08:03:12.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9467','350','1','3079','2.99','2005-06-20 15:13:40.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9468','350','2','3206','0.99','2005-06-21 00:39:39.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9469','350','1','3529','0.99','2005-07-06 01:15:26.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9470','350','1','3893','5.99','2005-07-06 18:59:31.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9471','350','1','4767','2.99','2005-07-08 15:18:53.000','2006-02-15 22:16:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9472','350','1','5240','0.99','2005-07-09 13:14:48.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9473','350','1','5303','2.99','2005-07-09 15:44:09.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9474','350','1','5786','1.99','2005-07-10 14:06:44.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9475','350','2','6408','3.99','2005-07-11 23:03:02.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9476','350','2','7416','4.99','2005-07-27 16:55:25.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9477','350','2','11504','0.99','2005-08-16 23:16:46.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9478','350','2','11595','6.99','2005-08-17 02:53:14.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9479','350','2','11692','6.99','2005-08-17 06:52:41.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9480','350','1','11800','0.99','2005-08-17 11:29:52.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9481','350','2','12252','6.99','2005-08-18 03:59:51.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9482','350','2','12445','2.99','2005-08-18 10:56:20.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9483','350','2','13086','0.99','2005-08-19 10:32:28.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9484','350','2','15789','1.99','2005-08-23 13:56:40.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9485','350','1','15807','0.99','2005-08-23 14:35:10.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9486','351','1','1137','1.99','2005-05-31 19:20:14.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9487','351','2','1792','5.99','2005-06-16 20:04:50.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9488','351','1','1869','0.99','2005-06-17 02:08:00.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9489','351','1','2759','2.99','2005-06-19 17:10:24.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9490','351','1','3836','2.99','2005-07-06 16:26:04.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9491','351','1','4544','0.99','2005-07-08 04:11:04.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9492','351','1','4756','1.99','2005-07-08 14:24:00.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9493','351','2','4761','5.99','2005-07-08 14:51:45.000','2006-02-15 22:16:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9494','351','1','5280','0.99','2005-07-09 14:55:07.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9495','351','1','5912','3.99','2005-07-10 20:58:22.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9496','351','2','6180','3.99','2005-07-11 11:06:50.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9497','351','1','6664','4.99','2005-07-12 11:28:22.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9498','351','2','6777','5.99','2005-07-12 16:04:40.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9499','351','2','7630','4.99','2005-07-28 01:01:03.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9500','351','2','8512','4.99','2005-07-29 09:48:03.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9501','351','1','9707','7.99','2005-07-31 07:44:18.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9502','351','2','10119','0.99','2005-07-31 21:20:59.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9503','351','2','10501','2.99','2005-08-01 11:04:46.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9504','351','2','11127','0.99','2005-08-02 09:00:59.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9505','351','1','14368','6.99','2005-08-21 09:31:47.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9506','351','2','15142','4.99','2005-08-22 13:44:32.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9507','351','1','15664','4.99','2005-08-23 08:57:11.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9508','351','2','15712','2.99','2005-08-23 10:43:56.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9509','351','1','15762','2.99','2005-08-23 13:01:43.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9510','352','1','784','2.99','2005-05-29 14:44:22.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9511','352','1','1498','0.99','2005-06-15 21:58:00.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9512','352','1','1649','4.99','2005-06-16 09:20:33.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9513','352','1','1678','4.99','2005-06-16 11:08:28.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9514','352','1','1780','4.99','2005-06-16 19:11:45.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9515','352','2','3331','4.99','2005-06-21 09:37:53.000','2006-02-15 22:16:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9516','352','2','4116','4.99','2005-07-07 06:56:13.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9517','352','2','6329','5.99','2005-07-11 19:10:38.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9518','352','1','7033','2.99','2005-07-27 03:03:25.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9519','352','1','7419','7.99','2005-07-27 17:04:15.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9520','352','2','7512','6.99','2005-07-27 20:40:40.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9521','352','1','7579','4.99','2005-07-27 23:06:41.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9522','352','1','7845','5.99','2005-07-28 09:18:07.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9523','352','1','7886','2.99','2005-07-28 10:37:55.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9524','352','1','9463','0.99','2005-07-30 22:30:57.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9525','352','1','11793','5.99','2005-08-17 11:05:53.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9526','352','1','11823','6.99','2005-08-17 12:36:37.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9527','352','2','11986','0.99','2005-08-17 18:21:58.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9528','352','2','12234','5.99','2005-08-18 03:17:33.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9529','352','1','12751','2.99','2005-08-18 22:33:22.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9530','352','1','14130','4.99','2005-08-21 01:43:11.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9531','352','2','14852','0.99','2005-08-22 02:25:53.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9532','352','2','13578','2.99','2006-02-14 15:16:03.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9533','353','2','1103','6.99','2005-05-31 14:24:18.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9534','353','2','1359','2.99','2005-06-15 13:30:30.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9535','353','2','1928','7.99','2005-06-17 06:48:31.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9536','353','2','3233','6.99','2005-06-21 02:39:31.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9537','353','2','4380','5.99','2005-07-07 20:35:00.000','2006-02-15 22:16:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9538','353','2','6559','1.99','2005-07-12 05:20:35.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9539','353','1','6610','3.99','2005-07-12 08:20:02.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9540','353','2','7993','3.99','2005-07-28 14:56:41.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9541','353','2','10071','2.99','2005-07-31 19:49:35.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9542','353','1','11186','0.99','2005-08-02 11:12:08.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9543','353','2','11414','4.99','2005-08-02 19:43:07.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9544','353','2','11698','4.99','2005-08-17 07:09:59.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9545','353','1','12928','5.99','2005-08-19 05:04:09.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9546','353','2','13604','0.99','2005-08-20 06:03:33.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9547','353','1','14396','4.99','2005-08-21 10:24:54.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9548','353','1','15564','1.99','2005-08-23 05:10:42.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9549','353','2','15650','0.99','2005-08-23 08:29:53.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9550','353','2','15676','2.99','2005-08-23 09:23:08.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9551','354','1','140','0.99','2005-05-25 23:34:22.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9552','354','2','158','1.99','2005-05-26 01:27:11.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9553','354','2','402','0.99','2005-05-27 13:17:18.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9554','354','1','1491','0.99','2005-06-15 21:48:18.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9555','354','1','2275','4.99','2005-06-18 06:31:29.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9556','354','1','2769','6.99','2005-06-19 17:52:14.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9557','354','1','3139','2.99','2005-06-20 19:44:45.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9558','354','2','3821','2.99','2005-07-06 15:36:20.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9559','354','2','4034','0.99','2005-07-07 02:36:33.000','2006-02-15 22:16:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9560','354','1','4449','5.99','2005-07-07 23:18:58.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9561','354','2','4745','2.99','2005-07-08 13:45:09.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9562','354','1','5354','4.99','2005-07-09 18:04:33.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9563','354','2','5556','4.99','2005-07-10 03:10:17.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9564','354','1','5873','3.99','2005-07-10 19:02:10.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9565','354','1','6054','0.99','2005-07-11 03:58:39.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9566','354','1','6838','4.99','2005-07-12 19:01:30.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9567','354','1','6926','0.99','2005-07-26 22:52:45.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9568','354','1','6939','5.99','2005-07-26 23:17:51.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9569','354','2','7148','0.99','2005-07-27 07:04:09.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9570','354','2','7235','2.99','2005-07-27 10:09:30.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9571','354','2','7241','0.99','2005-07-27 10:25:49.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9572','354','2','8321','4.99','2005-07-29 03:50:54.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9573','354','2','8477','8.99','2005-07-29 08:40:36.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9574','354','1','8609','4.99','2005-07-29 13:19:25.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9575','354','2','8921','0.99','2005-07-30 02:04:02.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9576','354','1','9130','2.99','2005-07-30 09:55:10.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9577','354','1','10420','6.99','2005-08-01 08:13:53.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9578','354','2','12243','6.99','2005-08-18 03:38:54.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9579','354','1','12544','3.99','2005-08-18 14:25:51.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9580','354','1','12998','4.99','2005-08-19 07:32:16.000','2006-02-15 22:16:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9581','354','2','14212','2.99','2005-08-21 04:29:26.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9582','354','2','14245','0.99','2005-08-21 05:30:54.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9583','354','1','14840','5.99','2005-08-22 01:58:42.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9584','354','2','15956','0.99','2005-08-23 19:19:21.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9585','354','1','12759','7.98','2006-02-14 15:16:03.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9586','354','1','11782','0','2006-02-14 15:16:03.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9587','355','1','1110','3.99','2005-05-31 15:22:51.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9588','355','2','1488','0.99','2005-06-15 21:39:54.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9589','355','1','1612','2.99','2005-06-16 06:52:05.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9590','355','1','3567','5.99','2005-07-06 03:09:36.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9591','355','1','3730','6.99','2005-07-06 11:31:24.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9592','355','1','5210','4.99','2005-07-09 11:24:19.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9593','355','1','5564','5.99','2005-07-10 03:23:05.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9594','355','1','6127','0.99','2005-07-11 08:06:59.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9595','355','2','6262','6.99','2005-07-11 15:33:24.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9596','355','1','6437','2.99','2005-07-12 00:20:29.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9597','355','2','6669','4.99','2005-07-12 11:39:55.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9598','355','2','7108','4.99','2005-07-27 05:28:32.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9599','355','2','7477','5.99','2005-07-27 19:11:03.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9600','355','2','8418','1.99','2005-07-29 06:54:21.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9601','355','1','10498','0.99','2005-08-01 10:56:48.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9602','355','2','11471','0.99','2005-08-02 21:49:03.000','2006-02-15 22:16:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9603','355','2','13821','1.99','2005-08-20 13:33:47.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9604','355','1','15367','3.99','2005-08-22 21:47:53.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9605','355','2','15531','2.99','2005-08-23 03:52:36.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9606','355','1','14760','0.99','2006-02-14 15:16:03.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9607','356','2','1088','4.99','2005-05-31 11:35:13.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9608','356','1','1410','0.99','2005-06-15 16:59:46.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9609','356','1','2405','2.99','2005-06-18 16:36:38.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9610','356','1','2433','4.99','2005-06-18 18:10:17.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9611','356','2','3829','6.99','2005-07-06 15:59:40.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9612','356','2','4599','4.99','2005-07-08 06:48:26.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9613','356','1','5513','0.99','2005-07-10 01:05:41.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9614','356','1','6593','4.99','2005-07-12 07:21:17.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9615','356','1','6648','0.99','2005-07-12 10:46:30.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9616','356','1','7079','2.99','2005-07-27 04:21:58.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9617','356','1','7758','1.99','2005-07-28 06:23:41.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9618','356','1','7902','0.99','2005-07-28 11:14:19.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9619','356','1','8198','3.99','2005-07-28 23:08:05.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9620','356','1','8975','5.99','2005-07-30 04:10:18.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9621','356','2','9037','4.99','2005-07-30 06:23:14.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9622','356','2','9523','3.99','2005-07-31 00:56:09.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9623','356','2','9883','6.99','2005-07-31 13:53:37.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9624','356','1','10427','3.99','2005-08-01 08:30:11.000','2006-02-15 22:16:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9625','356','1','10854','4.99','2005-08-02 00:02:06.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9626','356','1','11535','3.99','2005-08-17 00:39:54.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9627','356','2','11579','2.99','2005-08-17 01:57:49.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9628','356','2','12037','4.99','2005-08-17 20:21:35.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9629','356','2','12876','2.99','2005-08-19 03:12:19.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9630','356','1','12913','0.99','2005-08-19 04:25:39.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9631','356','2','13107','4.99','2005-08-19 11:13:58.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9632','356','2','13442','5.99','2005-08-19 23:50:45.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9633','356','2','13703','6.99','2005-08-20 09:29:35.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9634','356','1','15705','4.99','2005-08-23 10:32:52.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9635','356','2','15754','5.99','2005-08-23 12:43:42.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9636','356','1','15757','2.99','2005-08-23 12:47:16.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9637','357','1','144','2.99','2005-05-25 23:49:56.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9638','357','1','824','4.99','2005-05-29 21:45:32.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9639','357','2','945','0.99','2005-05-30 15:33:17.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9640','357','2','1246','5.99','2005-06-15 05:11:19.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9641','357','1','1788','1.99','2005-06-16 19:47:18.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9642','357','2','1971','1.99','2005-06-17 09:23:59.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9643','357','2','2153','6.99','2005-06-17 22:58:04.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9644','357','1','3865','3.99','2005-07-06 17:46:57.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9645','357','1','4478','0.99','2005-07-08 00:39:08.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9646','357','1','5896','0.99','2005-07-10 20:15:56.000','2006-02-15 22:16:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9647','357','1','6288','8.99','2005-07-11 17:01:52.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9648','357','2','6367','4.99','2005-07-11 21:18:29.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9649','357','2','6405','2.99','2005-07-11 22:53:12.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9650','357','1','6839','0.99','2005-07-12 19:03:19.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9651','357','1','7353','2.99','2005-07-27 14:38:39.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9652','357','1','7366','5.99','2005-07-27 15:01:17.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9653','357','2','8041','2.99','2005-07-28 16:39:56.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9654','357','1','8124','2.99','2005-07-28 19:28:58.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9655','357','2','9233','3.99','2005-07-30 13:44:15.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9656','357','2','10391','2.99','2005-08-01 06:49:05.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9657','357','1','10502','2.99','2005-08-01 11:06:39.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9658','357','1','10503','6.99','2005-08-01 11:07:44.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9659','357','2','10764','0.99','2005-08-01 20:32:42.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9660','357','2','11065','2.99','2005-08-02 06:57:55.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9661','357','1','14926','0.99','2005-08-22 05:18:44.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9662','357','2','15869','2.99','2005-08-23 16:22:20.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9663','358','2','858','4.99','2005-05-30 02:10:32.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9664','358','1','1455','2.99','2005-06-15 19:51:06.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9665','358','2','1908','0.99','2005-06-17 05:10:36.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9666','358','1','2114','5.99','2005-06-17 20:00:25.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9667','358','1','2721','2.99','2005-06-19 14:53:24.000','2006-02-15 22:16:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9668','358','1','2749','2.99','2005-06-19 16:27:35.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9669','358','1','3245','2.99','2005-06-21 03:06:11.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9670','358','1','3753','2.99','2005-07-06 12:34:06.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9671','358','1','3809','2.99','2005-07-06 15:16:37.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9672','358','2','5023','5.99','2005-07-09 02:23:16.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9673','358','1','6362','2.99','2005-07-11 21:09:31.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9674','358','1','8621','2.99','2005-07-29 13:52:42.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9675','358','2','9062','0.99','2005-07-30 07:23:17.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9676','358','1','9568','0.99','2005-07-31 02:37:44.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9677','358','1','10193','2.99','2005-08-01 00:33:27.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9678','358','1','10482','4.99','2005-08-01 10:17:47.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9679','358','2','11149','5.99','2005-08-02 09:51:43.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9680','358','2','11653','4.99','2005-08-17 05:06:10.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9681','358','1','12452','6.99','2005-08-18 11:14:35.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9682','358','1','13197','2.99','2005-08-19 14:44:03.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9683','358','1','14004','7.99','2005-08-20 20:16:35.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9684','359','1','284','8.99','2005-05-26 19:21:44.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9685','359','2','392','2.99','2005-05-27 11:14:42.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9686','359','1','528','3.99','2005-05-28 04:30:05.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9687','359','2','1329','4.99','2005-06-15 11:25:06.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9688','359','2','1770','1.99','2005-06-16 18:07:55.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9689','359','1','2401','0.99','2005-06-18 16:22:03.000','2006-02-15 22:16:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9690','359','1','2736','4.99','2005-06-19 15:43:20.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9691','359','2','4830','7.99','2005-07-08 17:56:23.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9692','359','2','6424','9.99','2005-07-11 23:49:37.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9693','359','1','6542','2.99','2005-07-12 04:53:49.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9694','359','2','6741','0.99','2005-07-12 14:24:16.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9695','359','2','7098','0.99','2005-07-27 05:01:08.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9696','359','1','7115','0.99','2005-07-27 05:42:58.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9697','359','1','8174','4.99','2005-07-28 21:36:52.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9698','359','1','9898','4.99','2005-07-31 14:12:03.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9699','359','2','10174','5.99','2005-07-31 23:40:08.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9700','359','1','11032','4.99','2005-08-02 05:53:35.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9701','359','1','12611','1.99','2005-08-18 17:09:42.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9702','359','2','13297','2.99','2005-08-19 18:45:49.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9703','359','1','14258','1.99','2005-08-21 05:56:36.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9704','359','2','14598','5.99','2005-08-21 17:40:05.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9705','359','1','15104','2.99','2005-08-22 12:01:16.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9706','359','1','15148','4.99','2005-08-22 13:59:19.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9707','359','1','15453','1.99','2005-08-23 01:01:01.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9708','359','2','15655','4.99','2006-02-14 15:16:03.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9709','360','1','633','0.99','2005-05-28 17:37:59.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9710','360','2','777','4.99','2005-05-29 14:07:58.000','2006-02-15 22:16:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9711','360','2','1492','0.99','2005-06-15 21:48:35.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9712','360','2','2402','6.99','2005-06-18 16:24:45.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9713','360','2','2541','3.99','2005-06-19 02:08:10.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9714','360','2','2780','6.99','2005-06-19 18:19:33.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9715','360','1','4056','4.99','2005-07-07 03:57:36.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9716','360','1','4487','7.99','2005-07-08 01:20:22.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9717','360','2','5456','2.99','2005-07-09 22:31:45.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9718','360','1','5834','1.99','2005-07-10 16:44:12.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9719','360','1','5995','3.99','2005-07-11 01:15:39.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9720','360','1','6442','0.99','2005-07-12 00:29:45.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9721','360','2','6770','5.99','2005-07-12 15:49:40.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9722','360','1','7251','2.99','2005-07-27 10:44:55.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9723','360','2','7588','9.99','2005-07-27 23:23:31.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9724','360','1','7654','4.99','2005-07-28 02:00:14.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9725','360','2','7908','3.99','2005-07-28 11:32:57.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9726','360','1','8220','2.99','2005-07-28 23:46:41.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9727','360','2','8361','2.99','2005-07-29 05:08:57.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9728','360','1','9283','4.99','2005-07-30 15:25:19.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9729','360','2','9352','0.99','2005-07-30 18:29:26.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9730','360','1','9623','2.99','2005-07-31 04:30:02.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9731','360','2','9659','3.99','2005-07-31 06:02:14.000','2006-02-15 22:16:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9732','360','2','10857','2.99','2005-08-02 00:07:20.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9733','360','2','11264','6.99','2005-08-02 14:05:18.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9734','360','2','11553','4.99','2005-08-17 01:04:31.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9735','360','2','12088','5.99','2005-08-17 22:20:16.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9736','360','1','12773','5.99','2005-08-18 23:32:19.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9737','360','2','12795','0.99','2005-08-19 00:21:52.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9738','360','1','12839','6.99','2005-08-19 01:53:43.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9739','360','1','12990','4.99','2005-08-19 07:20:39.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9740','360','2','13894','7.99','2005-08-20 15:55:20.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9741','360','1','14700','4.99','2005-08-21 20:53:40.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9742','360','1','15310','2.99','2005-08-22 19:56:41.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9743','361','1','368','5.99','2005-05-27 07:42:29.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9744','361','2','1120','4.99','2005-05-31 16:37:14.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9745','361','2','2353','4.99','2005-06-18 12:53:25.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9746','361','2','2558','1.99','2005-06-19 03:09:16.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9747','361','1','2851','2.99','2005-06-19 23:07:03.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9748','361','2','3303','2.99','2005-06-21 07:34:14.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9749','361','2','5154','2.99','2005-07-09 08:46:18.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9750','361','1','6152','0.99','2005-07-11 09:25:52.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9751','361','2','6829','4.99','2005-07-12 18:38:59.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9752','361','2','6911','0.99','2005-07-12 22:14:34.000','2006-02-15 22:16:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9753','361','1','6914','1.99','2005-07-12 22:26:56.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9754','361','1','7538','2.99','2005-07-27 21:38:04.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9755','361','2','7712','2.99','2005-07-28 04:29:53.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9756','361','2','8189','4.99','2005-07-28 22:36:26.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9757','361','1','10145','1.99','2005-07-31 22:15:13.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9758','361','1','10151','4.99','2005-07-31 22:22:37.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9759','361','1','10414','0.99','2005-08-01 08:03:55.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9760','361','2','10975','0.99','2005-08-02 04:11:25.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9761','361','2','11031','5.99','2005-08-02 05:52:58.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9762','361','2','11243','5.99','2005-08-02 13:32:48.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9763','361','1','11327','2.99','2005-08-02 16:40:47.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9764','361','1','11991','3.99','2005-08-17 18:27:08.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9765','361','2','12626','5.99','2005-08-18 17:36:45.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9766','361','2','12690','2.99','2005-08-18 20:06:57.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9767','361','1','13135','0.99','2005-08-19 12:22:52.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9768','361','2','14031','0.99','2005-08-20 21:24:24.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9769','361','1','14422','0.99','2005-08-21 11:21:46.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9770','361','1','15759','6.99','2005-08-23 12:47:37.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9771','361','2','15935','2.99','2005-08-23 18:41:11.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9772','361','1','13298','3.98','2006-02-14 15:16:03.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9773','361','1','14769','0','2006-02-14 15:16:03.000','2006-02-15 22:16:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9774','362','2','1035','4.99','2005-05-31 05:01:09.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9775','362','1','1429','2.99','2005-06-15 18:24:10.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9776','362','1','1529','2.99','2005-06-16 00:37:35.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9777','362','1','1615','2.99','2005-06-16 07:00:28.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9778','362','2','3197','2.99','2005-06-21 00:07:23.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9779','362','2','3393','2.99','2005-06-21 15:14:27.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9780','362','2','4646','8.99','2005-07-08 09:23:26.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9781','362','1','5227','4.99','2005-07-09 12:16:39.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9782','362','2','5563','1.99','2005-07-10 03:21:02.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9783','362','2','5690','5.99','2005-07-10 09:26:49.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9784','362','1','6204','4.99','2005-07-11 12:29:22.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9785','362','2','6576','4.99','2005-07-12 06:13:41.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9786','362','1','6981','4.99','2005-07-27 00:51:38.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9787','362','1','7172','1.99','2005-07-27 07:59:16.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9788','362','1','7485','2.99','2005-07-27 19:29:09.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9789','362','1','8081','2.99','2005-07-28 18:06:46.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9790','362','2','8325','2.99','2005-07-29 03:57:27.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9791','362','2','8364','4.99','2005-07-29 05:10:31.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9792','362','1','8662','0.99','2005-07-29 15:31:33.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9793','362','1','8714','2.99','2005-07-29 17:31:40.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9794','362','1','9784','4.99','2005-07-31 10:21:32.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9795','362','2','10546','3.99','2005-08-01 12:44:17.000','2006-02-15 22:16:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9796','362','2','12244','4.99','2005-08-18 03:39:11.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9797','362','1','12854','6.99','2005-08-19 02:18:51.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9798','362','1','13603','6.99','2005-08-20 06:02:48.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9799','362','2','14051','6.99','2005-08-20 22:09:51.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9800','362','2','14129','2.99','2005-08-21 01:42:15.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9801','362','2','14336','4.99','2005-08-21 08:33:42.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9802','362','1','14752','5.99','2005-08-21 23:11:42.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9803','362','1','14759','11.99','2005-08-21 23:28:58.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9804','362','1','14808','4.99','2005-08-22 00:58:35.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9805','362','1','14950','2.99','2005-08-22 06:17:12.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9806','363','1','733','3.99','2005-05-29 07:35:21.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9807','363','2','1426','4.99','2005-06-15 18:16:24.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9808','363','2','1569','4.99','2005-06-16 03:19:09.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9809','363','1','1847','4.99','2005-06-17 00:05:22.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9810','363','1','2540','4.99','2005-06-19 02:04:48.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9811','363','2','3281','2.99','2005-06-21 06:08:47.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9812','363','1','3726','3.99','2005-07-06 11:15:49.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9813','363','2','5687','3.99','2005-07-10 09:07:19.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9814','363','1','5758','6.99','2005-07-10 12:42:43.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9815','363','2','6140','4.99','2005-07-11 08:40:47.000','2006-02-15 22:16:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9816','363','2','6705','4.99','2005-07-12 12:53:11.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9817','363','2','6821','2.99','2005-07-12 18:22:10.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9818','363','2','6878','4.99','2005-07-12 20:37:13.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9819','363','1','7256','2.99','2005-07-27 10:58:32.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9820','363','2','7708','4.99','2005-07-28 04:19:15.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9821','363','2','8121','2.99','2005-07-28 19:25:45.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9822','363','2','8522','3.99','2005-07-29 10:16:19.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9823','363','2','8804','2.99','2005-07-29 21:28:19.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9824','363','2','8841','4.99','2005-07-29 22:56:07.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9825','363','1','9968','4.99','2005-07-31 16:32:16.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9826','363','1','9977','8.99','2005-07-31 16:58:42.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9827','363','1','10339','6.99','2005-08-01 05:05:50.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9828','363','2','12189','5.99','2005-08-18 01:51:44.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9829','363','2','12760','4.99','2005-08-18 23:03:19.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9830','363','1','13706','9.99','2005-08-20 09:32:56.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9831','363','1','14694','2.99','2005-08-21 20:46:42.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9832','363','1','14983','5.99','2005-08-22 07:32:23.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9833','363','2','15279','4.99','2005-08-22 19:08:49.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9834','363','1','15335','4.99','2005-08-22 20:44:55.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9835','364','1','462','5.99','2005-05-27 20:10:36.000','2006-02-15 22:16:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9836','364','1','1722','2.99','2005-06-16 15:12:52.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9837','364','2','2442','2.99','2005-06-18 18:49:18.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9838','364','2','2606','4.99','2005-06-19 06:51:32.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9839','364','2','2857','4.99','2005-06-19 23:15:15.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9840','364','2','2962','3.99','2005-06-20 07:31:55.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9841','364','1','3678','4.99','2005-07-06 09:15:15.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9842','364','2','3961','4.99','2005-07-06 22:11:43.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9843','364','1','4047','0.99','2005-07-07 03:28:49.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9844','364','2','4689','4.99','2005-07-08 11:03:47.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9845','364','1','5872','10.99','2005-07-10 18:54:05.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9846','364','1','7272','2.99','2005-07-27 11:30:20.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9847','364','2','9266','4.99','2005-07-30 14:59:01.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9848','364','1','10092','0.99','2005-07-31 20:28:09.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9849','364','2','10290','5.99','2005-08-01 03:39:50.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9850','364','2','11932','4.99','2005-08-17 16:36:12.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9851','364','1','12557','4.99','2005-08-18 14:51:03.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9852','364','1','12761','1.99','2005-08-18 23:05:22.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9853','364','2','12912','3.99','2005-08-19 04:24:35.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9854','364','1','13698','4.99','2005-08-20 09:24:26.000','2006-02-15 22:16:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9855','364','2','13936','0.99','2005-08-20 17:22:35.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9856','364','2','14293','4.99','2005-08-21 07:06:47.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9857','364','1','15242','0.99','2005-08-22 17:48:10.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9858','365','2','120','5.99','2005-05-25 19:37:47.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9859','365','1','231','4.99','2005-05-26 11:31:59.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9860','365','1','1303','1.99','2005-06-15 09:55:57.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9861','365','1','1578','6.99','2005-06-16 04:08:16.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9862','365','1','1983','4.99','2005-06-17 10:22:13.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9863','365','1','2525','2.99','2005-06-19 00:48:22.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9864','365','2','3156','0.99','2005-06-20 21:03:46.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9865','365','1','4583','1.99','2005-07-08 06:09:44.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9866','365','1','6604','4.99','2005-07-12 07:57:45.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9867','365','1','7488','7.99','2005-07-27 19:36:15.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9868','365','2','7634','4.99','2005-07-28 01:07:01.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9869','365','1','8168','4.99','2005-07-28 21:28:32.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9870','365','2','8782','4.99','2005-07-29 20:29:34.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9871','365','1','8856','3.99','2005-07-29 23:42:00.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9872','365','1','9122','2.99','2005-07-30 09:36:52.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9873','365','2','9184','4.99','2005-07-30 12:10:19.000','2006-02-15 22:17:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9874','365','2','9540','2.99','2005-07-31 01:40:06.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9875','365','2','10717','2.99','2005-08-01 18:53:53.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9876','365','2','12322','2.99','2005-08-18 06:35:28.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9877','365','2','12375','4.99','2005-08-18 08:20:08.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9878','365','1','12804','8.99','2005-08-19 00:33:15.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9879','365','1','13619','2.99','2005-08-20 06:39:26.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9880','365','2','14463','6.99','2005-08-21 12:51:49.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9881','366','2','911','6.99','2005-05-30 10:50:22.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9882','366','2','1401','1.99','2005-06-15 16:30:22.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9883','366','2','2214','0.99','2005-06-18 02:44:37.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9884','366','2','3632','4.99','2005-07-06 06:38:21.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9885','366','1','3834','2.99','2005-07-06 16:19:56.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9886','366','2','4276','2.99','2005-07-07 14:50:59.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9887','366','1','4569','5.99','2005-07-08 05:30:51.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9888','366','2','5364','0.99','2005-07-09 18:24:48.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9889','366','1','6112','6.99','2005-07-11 07:28:05.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9890','366','1','6366','4.99','2005-07-11 21:18:16.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9891','366','2','6533','6.99','2005-07-12 04:39:38.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9892','366','2','6738','5.99','2005-07-12 14:17:55.000','2006-02-15 22:17:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9893','366','1','6842','0.99','2005-07-12 19:07:55.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9894','366','2','6971','4.99','2005-07-27 00:26:17.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9895','366','1','7344','1.99','2005-07-27 14:29:28.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9896','366','1','7562','2.99','2005-07-27 22:25:15.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9897','366','2','7602','4.99','2005-07-27 23:48:35.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9898','366','1','7805','6.99','2005-07-28 07:56:41.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9899','366','2','8169','4.99','2005-07-28 21:29:46.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9900','366','2','8260','1.99','2005-07-29 01:11:00.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9901','366','2','8928','2.99','2005-07-30 02:18:19.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9902','366','1','9316','6.99','2005-07-30 17:11:58.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9903','366','1','10198','2.99','2005-08-01 00:36:15.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9904','366','1','10384','4.99','2005-08-01 06:39:14.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9905','366','2','11337','2.99','2005-08-02 16:59:09.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9906','366','2','11340','5.99','2005-08-02 17:05:43.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9907','366','2','12413','2.99','2005-08-18 09:50:34.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9908','366','1','12608','4.99','2005-08-18 17:05:15.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9909','366','2','13563','0.99','2005-08-20 04:33:31.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9910','366','1','13857','2.99','2005-08-20 14:50:06.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9911','366','1','14147','4.99','2005-08-21 02:14:03.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9912','366','1','14290','4.99','2005-08-21 07:02:59.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9913','366','1','14390','2.99','2005-08-21 10:15:38.000','2006-02-15 22:17:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9914','366','1','14717','2.99','2005-08-21 21:30:39.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9915','366','1','14906','6.99','2005-08-22 04:38:18.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9916','366','1','15514','2.99','2005-08-23 03:03:40.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9917','366','1','13421','4.99','2006-02-14 15:16:03.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9918','367','1','939','0.99','2005-05-30 14:49:34.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9919','367','1','1089','2.99','2005-05-31 11:38:29.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9920','367','1','3078','0.99','2005-06-20 15:09:48.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9921','367','1','4251','8.99','2005-07-07 14:11:55.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9922','367','2','5490','4.99','2005-07-10 00:09:11.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9923','367','2','5538','4.99','2005-07-10 02:39:40.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9924','367','2','5839','2.99','2005-07-10 17:08:30.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9925','367','2','6228','2.99','2005-07-11 13:58:36.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9926','367','1','6716','0.99','2005-07-12 13:34:58.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9927','367','2','6835','5.99','2005-07-12 18:58:03.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9928','367','2','8490','0.99','2005-07-29 08:59:25.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9929','367','1','9030','3.99','2005-07-30 06:05:38.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9930','367','1','9430','4.99','2005-07-30 21:20:13.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9931','367','1','9912','4.99','2005-07-31 14:49:04.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9932','367','2','10344','4.99','2005-08-01 05:18:23.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9933','367','1','12152','4.99','2005-08-18 00:21:35.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9934','367','2','12362','0.99','2005-08-18 07:48:05.000','2006-02-15 22:17:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9935','367','2','12373','8.99','2005-08-18 08:07:25.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9936','367','2','12911','6.99','2005-08-19 04:24:10.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9937','367','2','13235','4.99','2005-08-19 16:17:53.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9938','367','1','14413','6.99','2005-08-21 11:06:33.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9939','367','1','14481','10.99','2005-08-21 13:41:14.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9940','368','1','64','5.99','2005-05-25 09:21:29.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9941','368','1','125','5.99','2005-05-25 20:48:50.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9942','368','1','836','2.99','2005-05-29 23:56:42.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9943','368','1','949','2.99','2005-05-30 15:50:39.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9944','368','1','1186','0.99','2005-06-15 00:56:45.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9945','368','1','1513','9.99','2005-06-15 22:53:30.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9946','368','1','2531','4.99','2005-06-19 01:20:49.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9947','368','1','2694','4.99','2005-06-19 13:17:21.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9948','368','1','2744','4.99','2005-06-19 16:20:40.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9949','368','2','3275','4.99','2005-06-21 05:33:04.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9950','368','2','3608','4.99','2005-07-06 05:35:39.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9951','368','2','4066','0.99','2005-07-07 04:34:09.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9952','368','1','4584','0.99','2005-07-08 06:11:02.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9953','368','2','4913','8.99','2005-07-08 21:27:48.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9954','368','1','6124','4.99','2005-07-11 08:02:32.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9955','368','1','6154','5.99','2005-07-11 09:32:19.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9956','368','1','6681','2.99','2005-07-12 12:04:12.000','2006-02-15 22:17:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9957','368','2','7571','4.99','2005-07-27 22:43:42.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9958','368','1','8045','0.99','2005-07-28 16:49:38.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9959','368','2','8226','2.99','2005-07-29 00:01:04.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9960','368','1','9400','5.99','2005-07-30 20:15:58.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9961','368','1','9833','6.99','2005-07-31 12:05:01.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9962','368','2','10730','8.99','2005-08-01 19:21:42.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9963','368','2','10848','1.99','2005-08-01 23:50:22.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9964','368','1','11844','0.99','2005-08-17 13:16:04.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9965','368','2','12319','2.99','2005-08-18 06:26:45.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9966','368','1','12796','4.99','2005-08-19 00:22:24.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9967','368','2','13189','8.99','2005-08-19 14:27:16.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9968','368','2','13280','2.99','2005-08-19 18:02:51.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9969','368','2','13378','0.99','2005-08-19 21:33:35.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9970','368','2','13781','7.99','2005-08-20 12:06:45.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9971','368','2','13963','1.99','2005-08-20 18:20:18.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9972','368','1','14393','7.99','2005-08-21 10:22:51.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9973','368','1','15353','2.99','2005-08-22 21:18:08.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9974','368','1','15437','2.99','2005-08-23 00:31:09.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9975','369','1','31','4.99','2005-05-25 04:05:17.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9976','369','1','294','4.99','2005-05-26 20:29:57.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9977','369','2','854','0.99','2005-05-30 01:56:11.000','2006-02-15 22:17:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9978','369','2','913','7.99','2005-05-30 11:04:58.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9979','369','1','1224','0.99','2005-06-15 03:44:25.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9980','369','1','3490','6.99','2005-07-05 23:37:13.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9981','369','2','3903','2.99','2005-07-06 19:27:32.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9982','369','2','4859','4.99','2005-07-08 18:54:04.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9983','369','1','5043','1.99','2005-07-09 03:25:18.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9984','369','2','5496','7.99','2005-07-10 00:20:23.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9985','369','2','5561','2.99','2005-07-10 03:15:24.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9986','369','1','8236','2.99','2005-07-29 00:27:04.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9987','369','2','8826','2.99','2005-07-29 22:30:16.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9988','369','2','9032','4.99','2005-07-30 06:06:54.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9989','369','1','9089','0.99','2005-07-30 08:23:39.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9990','369','2','9543','0.99','2005-07-31 01:43:34.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9991','369','1','9973','4.99','2005-07-31 16:49:31.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9992','369','1','10299','0.99','2005-08-01 04:08:04.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9993','369','2','10359','3.99','2005-08-01 05:52:21.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9994','369','2','10713','2.99','2005-08-01 18:50:05.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9995','369','1','11084','4.99','2005-08-02 07:34:19.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9996','369','2','11388','1.99','2005-08-02 18:35:55.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9997','369','1','12521','0.99','2005-08-18 13:43:07.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9998','369','2','14684','5.99','2005-08-21 20:28:26.000','2006-02-15 22:17:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('9999','369','1','13898','0.99','2006-02-14 15:16:03.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10000','370','2','1190','6.99','2005-06-15 01:05:32.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10001','370','2','4400','7.99','2005-07-07 21:22:26.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10002','370','2','6714','0.99','2005-07-12 13:29:06.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10003','370','1','6968','0.99','2005-07-27 00:16:45.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10004','370','2','7152','7.99','2005-07-27 07:15:01.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10005','370','1','7226','6.99','2005-07-27 09:47:53.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10006','370','2','7797','0.99','2005-07-28 07:41:07.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10007','370','2','8258','0.99','2005-07-29 01:03:42.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10008','370','2','10095','0.99','2005-07-31 20:38:35.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10009','370','1','10336','4.99','2005-08-01 04:59:53.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10010','370','1','11540','1.99','2005-08-17 00:48:03.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10011','370','2','11925','0.99','2005-08-17 16:23:04.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10012','370','1','12339','4.99','2005-08-18 07:05:06.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10013','370','1','13039','0.99','2005-08-19 08:55:19.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10014','370','1','14602','3.99','2005-08-21 17:48:49.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10015','370','2','14786','2.99','2005-08-22 00:24:42.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10016','370','2','15368','3.99','2005-08-22 21:57:15.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10017','370','1','15626','4.99','2005-08-23 07:25:34.000','2006-02-15 22:17:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10018','370','1','15982','5.99','2005-08-23 20:13:31.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10019','371','1','26','3.99','2005-05-25 03:36:50.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10020','371','2','286','6.99','2005-05-26 19:44:51.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10021','371','2','381','4.99','2005-05-27 09:43:25.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10022','371','1','384','5.99','2005-05-27 10:18:20.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10023','371','1','825','0.99','2005-05-29 21:49:41.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10024','371','1','829','2.99','2005-05-29 22:16:42.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10025','371','2','1212','2.99','2005-06-15 03:03:33.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10026','371','1','1218','1.99','2005-06-15 03:24:44.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10027','371','1','1573','6.99','2005-06-16 03:31:39.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10028','371','2','1675','5.99','2005-06-16 11:04:47.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10029','371','2','2837','0.99','2005-06-19 22:03:50.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10030','371','1','3176','3.99','2005-06-20 22:31:54.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10031','371','2','3396','0.99','2005-06-21 15:23:08.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10032','371','2','4115','8.99','2005-07-07 06:52:23.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10033','371','1','4612','1.99','2005-07-08 07:40:44.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10034','371','1','5171','4.99','2005-07-09 09:26:55.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10035','371','2','5614','0.99','2005-07-10 05:16:56.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10036','371','1','6000','2.99','2005-07-11 01:23:06.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10037','371','1','6460','1.99','2005-07-12 01:13:44.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10038','371','1','6922','0.99','2005-07-12 22:39:48.000','2006-02-15 22:17:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10039','371','1','7408','3.99','2005-07-27 16:31:40.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10040','371','1','8138','4.99','2005-07-28 20:12:17.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10041','371','1','9008','4.99','2005-07-30 05:10:26.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10042','371','1','9117','8.99','2005-07-30 09:20:59.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10043','371','1','9635','0.99','2005-07-31 05:12:27.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10044','371','1','11086','10.99','2005-08-02 07:38:44.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10045','371','2','12397','9.99','2005-08-18 09:12:52.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10046','371','2','12584','7.99','2005-08-18 15:51:36.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10047','371','1','13028','2.99','2005-08-19 08:27:23.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10048','371','2','13143','3.99','2005-08-19 12:44:38.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10049','371','1','13191','4.99','2005-08-19 14:28:48.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10050','371','2','13953','4.99','2005-08-20 18:00:37.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10051','371','1','14384','2.99','2005-08-21 10:02:37.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10052','371','1','15786','0.99','2005-08-23 13:48:34.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10053','371','1','15824','2.99','2005-08-23 15:09:17.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10054','372','1','617','2.99','2005-05-28 15:49:14.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10055','372','1','638','2.99','2005-05-28 18:24:43.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10056','372','1','2315','2.99','2005-06-18 09:03:39.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10057','372','1','2959','4.99','2005-06-20 07:07:54.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10058','372','1','3283','3.99','2005-06-21 06:19:07.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10059','372','1','5229','4.99','2005-07-09 12:30:18.000','2006-02-15 22:17:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10060','372','1','5314','2.99','2005-07-09 16:05:28.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10061','372','1','5352','2.99','2005-07-09 17:54:58.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10062','372','1','5501','6.99','2005-07-10 00:33:48.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10063','372','2','5914','7.99','2005-07-10 21:01:12.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10064','372','2','6692','4.99','2005-07-12 12:35:39.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10065','372','1','7190','4.99','2005-07-27 08:36:01.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10066','372','2','7234','5.99','2005-07-27 10:08:45.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10067','372','2','7735','4.99','2005-07-28 05:09:56.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10068','372','2','8009','7.99','2005-07-28 15:25:58.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10069','372','1','8059','2.99','2005-07-28 17:09:59.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10070','372','1','8358','0.99','2005-07-29 05:00:58.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10071','372','1','8724','0.99','2005-07-29 18:05:21.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10072','372','1','8755','2.99','2005-07-29 19:18:31.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10073','372','2','8837','8.99','2005-07-29 22:49:00.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10074','372','1','9128','5.99','2005-07-30 09:51:14.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10075','372','2','11134','10.99','2005-08-02 09:19:22.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10076','372','2','11438','3.99','2005-08-02 20:21:08.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10077','372','2','11555','4.99','2005-08-17 01:08:59.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10078','372','1','12224','0.99','2005-08-18 02:59:09.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10079','372','1','12714','3.99','2005-08-18 21:08:01.000','2006-02-15 22:17:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10080','372','2','13402','4.99','2005-08-19 22:16:53.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10081','372','2','13871','8.99','2005-08-20 15:10:13.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10082','372','2','14037','9.99','2005-08-20 21:35:58.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10083','372','1','14211','4.99','2005-08-21 04:29:11.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10084','372','1','14331','2.99','2005-08-21 08:29:38.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10085','372','1','14770','1.99','2005-08-21 23:47:16.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10086','372','2','15041','0.99','2005-08-22 09:43:18.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10087','372','1','15563','2.99','2005-08-23 05:08:58.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10088','373','2','257','4.99','2005-05-26 15:27:05.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10089','373','1','1472','6.99','2005-06-15 20:54:55.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10090','373','1','3161','2.99','2005-06-20 21:21:01.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10091','373','2','3609','2.99','2005-07-06 05:36:22.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10092','373','2','3667','4.99','2005-07-06 08:36:34.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10093','373','1','4325','7.99','2005-07-07 17:59:24.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10094','373','1','5120','5.99','2005-07-09 07:14:23.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10095','373','1','6202','3.99','2005-07-11 12:24:25.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10096','373','2','6311','0.99','2005-07-11 18:18:52.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10097','373','1','6944','4.99','2005-07-26 23:34:02.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10098','373','1','7094','0.99','2005-07-27 04:47:33.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10099','373','2','7206','3.99','2005-07-27 09:07:05.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10100','373','1','7615','0.99','2005-07-28 00:15:24.000','2006-02-15 22:17:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10101','373','1','8611','3.99','2005-07-29 13:26:21.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10102','373','2','9327','8.99','2005-07-30 17:31:03.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10103','373','1','9397','4.99','2005-07-30 20:07:29.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10104','373','2','9480','0.99','2005-07-30 23:26:03.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10105','373','1','9966','4.99','2005-07-31 16:26:46.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10106','373','1','10010','6.99','2005-07-31 18:01:36.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10107','373','1','10221','4.99','2005-08-01 01:16:50.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10108','373','1','10758','5.99','2005-08-01 20:22:51.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10109','373','2','11066','7.99','2005-08-02 06:58:32.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10110','373','2','11512','7.99','2005-08-16 23:51:06.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10111','373','2','11663','3.99','2005-08-17 05:30:19.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10112','373','2','11976','3.99','2005-08-17 17:59:19.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10113','373','1','12142','5.99','2005-08-18 00:04:12.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10114','373','2','12536','5.99','2005-08-18 14:06:06.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10115','373','1','12748','7.99','2005-08-18 22:29:05.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10116','373','2','12780','0.99','2005-08-18 23:48:16.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10117','373','2','13299','2.99','2005-08-19 18:46:33.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10118','373','1','13329','3.99','2005-08-19 19:56:55.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10119','373','2','13467','2.99','2005-08-20 00:56:44.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10120','373','2','15014','6.99','2005-08-22 08:43:11.000','2006-02-15 22:17:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10121','373','1','15068','3.99','2005-08-22 10:50:13.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10122','373','1','11739','0.99','2006-02-14 15:16:03.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10123','374','1','521','0.99','2005-05-28 03:32:22.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10124','374','2','910','2.99','2005-05-30 10:46:16.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10125','374','2','919','0.99','2005-05-30 11:35:06.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10126','374','1','1548','1.99','2005-06-16 01:43:33.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10127','374','2','2046','1.99','2005-06-17 14:39:50.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10128','374','2','2487','4.99','2005-06-18 21:32:54.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10129','374','2','2641','2.99','2005-06-19 09:38:33.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10130','374','1','3797','1.99','2005-07-06 14:54:52.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10131','374','1','5463','4.99','2005-07-09 22:57:02.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10132','374','1','5570','6.99','2005-07-10 03:46:47.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10133','374','2','5591','3.99','2005-07-10 04:25:03.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10134','374','2','5945','2.99','2005-07-10 22:52:42.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10135','374','2','6315','0.99','2005-07-11 18:42:49.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10136','374','2','7837','0.99','2005-07-28 08:58:32.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10137','374','2','8586','7.99','2005-07-29 12:16:34.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10138','374','2','9113','0.99','2005-07-30 09:09:03.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10139','374','1','9866','6.99','2005-07-31 13:13:50.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10140','374','1','10695','2.99','2005-08-01 18:16:20.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10141','374','1','11619','0.99','2005-08-17 04:03:26.000','2006-02-15 22:17:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10142','374','2','12696','2.99','2005-08-18 20:13:08.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10143','374','1','13337','2.99','2005-08-19 20:06:57.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10144','374','2','13734','4.99','2005-08-20 10:29:57.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10145','374','2','14524','8.99','2005-08-21 15:05:27.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10146','374','2','15053','5.99','2005-08-22 10:13:09.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10147','374','1','15200','2.99','2005-08-22 16:22:53.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10148','374','2','15202','4.99','2005-08-22 16:26:53.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10149','374','2','15366','6.99','2005-08-22 21:45:57.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10150','374','2','15966','2.99','2006-02-14 15:16:03.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10151','375','2','307','8.99','2005-05-26 21:48:13.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10152','375','1','412','4.99','2005-05-27 14:17:23.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10153','375','2','749','4.99','2005-05-29 09:33:33.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10154','375','1','873','2.99','2005-05-30 05:15:20.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10155','375','2','1404','2.99','2005-06-15 16:38:53.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10156','375','1','1499','5.99','2005-06-15 21:58:07.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10157','375','1','2236','4.99','2005-06-18 04:12:33.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10158','375','1','3981','6.99','2005-07-06 23:12:12.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10159','375','2','4335','4.99','2005-07-07 18:33:57.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10160','375','2','5474','2.99','2005-07-09 23:23:57.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10161','375','1','7856','4.99','2005-07-28 09:48:24.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10162','375','2','8900','2.99','2005-07-30 01:07:03.000','2006-02-15 22:17:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10163','375','1','10274','0.99','2005-08-01 03:16:51.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10164','375','2','10589','1.99','2005-08-01 14:11:09.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10165','375','1','10640','0.99','2005-08-01 15:44:51.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10166','375','1','10672','4.99','2005-08-01 17:10:54.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10167','375','1','10859','5.99','2005-08-02 00:11:39.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10168','375','1','10961','6.99','2005-08-02 03:47:55.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10169','375','2','11008','5.99','2005-08-02 05:06:17.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10170','375','2','12122','9.99','2005-08-17 23:20:45.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10171','375','2','12663','0.99','2005-08-18 19:10:52.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10172','375','1','13836','4.99','2005-08-20 14:18:16.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10173','375','1','15004','2.99','2005-08-22 08:15:21.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10174','375','1','15505','4.99','2005-08-23 02:46:13.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10175','376','1','554','0.99','2005-05-28 08:23:16.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10176','376','2','1208','0.99','2005-06-15 02:30:03.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10177','376','1','2779','0.99','2005-06-19 18:19:07.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10178','376','2','3719','2.99','2005-07-06 11:05:55.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10179','376','1','4163','0.99','2005-07-07 09:19:28.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10180','376','2','4166','8.99','2005-07-07 09:33:30.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10181','376','1','4320','3.99','2005-07-07 17:51:59.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10182','376','1','4554','5.99','2005-07-08 04:48:03.000','2006-02-15 22:17:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10183','376','1','4869','4.99','2005-07-08 19:14:05.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10184','376','1','5675','4.99','2005-07-10 08:31:06.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10185','376','1','6524','6.99','2005-07-12 04:14:35.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10186','376','1','6545','8.99','2005-07-12 04:56:30.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10187','376','2','6807','2.99','2005-07-12 17:33:53.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10188','376','1','8269','2.99','2005-07-29 01:26:54.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10189','376','1','8420','5.99','2005-07-29 07:00:45.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10190','376','1','9773','4.99','2005-07-31 09:56:56.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10191','376','1','9828','2.99','2005-07-31 11:56:57.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10192','376','1','9872','0.99','2005-07-31 13:27:55.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10193','376','2','10413','3.99','2005-08-01 07:59:39.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10194','376','1','10810','3.99','2005-08-01 22:40:39.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10195','376','1','11144','4.99','2005-08-02 09:39:17.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10196','376','2','11792','4.99','2005-08-17 11:03:53.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10197','376','1','11851','4.99','2005-08-17 13:30:27.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10198','376','1','13009','0.99','2005-08-19 07:50:35.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10199','376','1','13141','0.99','2005-08-19 12:41:41.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10200','376','2','13761','4.99','2005-08-20 11:28:50.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10201','376','1','15107','4.99','2005-08-22 12:05:02.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10202','376','1','15382','2.99','2005-08-22 22:30:50.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10203','377','2','2556','3.99','2005-06-19 03:07:32.000','2006-02-15 22:17:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10204','377','1','3080','1.99','2005-06-20 15:22:32.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10205','377','2','3086','0.99','2005-06-20 15:42:40.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10206','377','2','3136','2.99','2005-06-20 19:39:08.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10207','377','2','3443','4.99','2005-06-21 20:19:00.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10208','377','1','3858','2.99','2005-07-06 17:17:57.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10209','377','2','4053','0.99','2005-07-07 03:39:22.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10210','377','1','4077','0.99','2005-07-07 04:53:40.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10211','377','1','4225','0.99','2005-07-07 12:24:37.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10212','377','2','6893','7.99','2005-07-12 21:20:11.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10213','377','1','7697','1.99','2005-07-28 03:43:45.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10214','377','2','8018','10.99','2005-07-28 15:36:48.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10215','377','2','8916','4.99','2005-07-30 01:42:21.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10216','377','2','9461','3.99','2005-07-30 22:29:13.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10217','377','1','9564','0.99','2005-07-31 02:31:37.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10218','377','1','10013','4.99','2005-07-31 18:08:21.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10219','377','1','10183','8.99','2005-08-01 00:08:01.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10220','377','1','10738','3.99','2005-08-01 19:39:08.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10221','377','1','10943','2.99','2005-08-02 03:17:29.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10222','377','1','12390','1.99','2005-08-18 08:51:42.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10223','377','1','12549','4.99','2005-08-18 14:38:07.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10224','377','1','13249','2.99','2005-08-19 16:47:41.000','2006-02-15 22:17:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10225','377','1','13275','0.99','2005-08-19 17:53:38.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10226','377','2','15088','0.99','2005-08-22 11:28:26.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10227','377','1','15995','0.99','2005-08-23 20:29:56.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10228','377','1','15999','7.99','2005-08-23 20:44:10.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10229','378','1','347','0.99','2005-05-27 04:40:33.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10230','378','2','1623','4.99','2005-06-16 07:48:50.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10231','378','1','1662','5.99','2005-06-16 10:13:35.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10232','378','2','2134','7.99','2005-06-17 21:13:44.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10233','378','2','2713','4.99','2005-06-19 14:23:09.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10234','378','1','3759','4.99','2005-07-06 12:46:38.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10235','378','2','4755','0.99','2005-07-08 14:23:41.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10236','378','1','5578','1.99','2005-07-10 04:00:31.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10237','378','2','6233','1.99','2005-07-11 14:10:47.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10238','378','1','7888','0.99','2005-07-28 10:40:24.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10239','378','2','8740','2.99','2005-07-29 18:41:31.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10240','378','2','9668','3.99','2005-07-31 06:31:03.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10241','378','1','9868','2.99','2005-07-31 13:20:08.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10242','378','1','10917','4.99','2005-08-02 02:06:18.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10243','378','1','11111','4.99','2005-08-02 08:21:27.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10244','378','1','12596','2.99','2005-08-18 16:29:35.000','2006-02-15 22:17:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10245','378','1','12828','4.99','2005-08-19 01:37:47.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10246','378','2','14502','4.99','2005-08-21 14:22:28.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10247','378','1','14971','2.99','2005-08-22 06:52:49.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10248','379','2','209','4.99','2005-05-26 08:14:01.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10249','379','1','863','4.99','2005-05-30 03:14:59.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10250','379','1','1383','8.99','2005-06-15 15:20:06.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10251','379','1','2313','5.99','2005-06-18 08:56:45.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10252','379','1','2926','2.99','2005-06-20 04:37:45.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10253','379','1','3788','4.99','2005-07-06 14:02:02.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10254','379','2','4740','2.99','2005-07-08 13:30:35.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10255','379','1','5402','4.99','2005-07-09 20:01:58.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10256','379','1','6235','7.99','2005-07-11 14:17:51.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10257','379','2','7041','4.99','2005-07-27 03:18:32.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10258','379','1','10041','4.99','2005-07-31 19:01:02.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10259','379','2','11457','3.99','2005-08-02 21:14:16.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10260','379','1','12503','4.99','2005-08-18 13:16:46.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10261','379','1','13334','0.99','2005-08-19 20:02:33.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10262','379','2','13397','7.99','2005-08-19 22:06:35.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10263','379','1','13485','0.99','2005-08-20 01:20:14.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10264','379','1','14011','5.99','2005-08-20 20:32:56.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10265','379','2','14152','2.99','2005-08-21 02:23:50.000','2006-02-15 22:17:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10266','379','1','14470','0.99','2005-08-21 13:09:41.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10267','379','1','14886','4.99','2005-08-22 03:59:01.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10268','379','2','15399','4.99','2005-08-22 23:11:59.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10269','379','1','15446','4.99','2005-08-23 00:49:24.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10270','379','2','15930','3.99','2005-08-23 18:26:51.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10271','380','1','847','3.99','2005-05-30 01:18:15.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10272','380','1','1868','3.99','2005-06-17 02:03:22.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10273','380','1','1984','2.99','2005-06-17 10:25:28.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10274','380','1','2018','3.99','2005-06-17 12:35:58.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10275','380','1','2440','2.99','2005-06-18 18:41:09.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10276','380','1','2464','4.99','2005-06-18 20:06:05.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10277','380','2','2998','1.99','2005-06-20 09:30:22.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10278','380','2','3099','1.99','2005-06-20 16:44:33.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10279','380','1','3260','4.99','2005-06-21 03:59:13.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10280','380','1','3637','2.99','2005-07-06 07:06:31.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10281','380','1','3688','4.99','2005-07-06 09:41:53.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10282','380','1','4675','2.99','2005-07-08 10:24:22.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10283','380','2','4706','4.99','2005-07-08 11:51:41.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10284','380','2','5339','0.99','2005-07-09 17:09:17.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10285','380','2','7021','8.99','2005-07-27 02:26:38.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10286','380','2','7167','2.99','2005-07-27 07:37:26.000','2006-02-15 22:17:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10287','380','2','7435','0.99','2005-07-27 17:38:44.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10288','380','2','7443','2.99','2005-07-27 17:47:43.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10289','380','1','7773','2.99','2005-07-28 07:02:17.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10290','380','1','7974','3.99','2005-07-28 14:11:57.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10291','380','1','9056','0.99','2005-07-30 07:13:20.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10292','380','1','9261','6.99','2005-07-30 14:39:35.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10293','380','1','9710','10.99','2005-07-31 08:05:31.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10294','380','2','10450','1.99','2005-08-01 09:10:03.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10295','380','1','10983','3.99','2005-08-02 04:24:23.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10296','380','1','11936','0.99','2005-08-17 16:45:34.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10297','380','2','11945','0.99','2005-08-17 17:05:33.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10298','380','1','12636','3.99','2005-08-18 18:00:29.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10299','380','1','12996','6.99','2005-08-19 07:31:32.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10300','380','1','14529','6.99','2005-08-21 15:08:31.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10301','380','1','14935','1.99','2005-08-22 05:47:31.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10302','380','2','15175','5.99','2005-08-22 15:29:15.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10303','380','1','15361','2.99','2005-08-22 21:39:45.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10304','380','2','15636','2.99','2005-08-23 07:50:46.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10305','380','1','15697','2.99','2005-08-23 10:04:36.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10306','380','2','15748','2.99','2005-08-23 12:33:00.000','2006-02-15 22:17:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10307','381','2','169','0.99','2005-05-26 03:09:30.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10308','381','2','406','2.99','2005-05-27 13:46:46.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10309','381','1','835','2.99','2005-05-29 23:37:00.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10310','381','1','1402','3.99','2005-06-15 16:31:08.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10311','381','1','1878','1.99','2005-06-17 02:55:32.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10312','381','2','2410','2.99','2005-06-18 16:55:08.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10313','381','1','2418','4.99','2005-06-18 17:14:42.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10314','381','2','3425','2.99','2005-06-21 18:07:07.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10315','381','2','3812','0.99','2005-07-06 15:22:19.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10316','381','2','3970','2.99','2005-07-06 22:48:17.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10317','381','1','4735','0.99','2005-07-08 13:12:27.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10318','381','2','5689','0.99','2005-07-10 09:24:17.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10319','381','2','6116','2.99','2005-07-11 07:37:38.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10320','381','2','6451','4.99','2005-07-12 00:52:19.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10321','381','2','6778','2.99','2005-07-12 16:06:00.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10322','381','1','7375','2.99','2005-07-27 15:22:33.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10323','381','1','7645','2.99','2005-07-28 01:27:42.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10324','381','2','8688','0.99','2005-07-29 16:31:32.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10325','381','2','9144','0.99','2005-07-30 10:22:15.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10326','381','2','9173','4.99','2005-07-30 11:40:10.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10327','381','1','9822','2.99','2005-07-31 11:48:25.000','2006-02-15 22:17:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10328','381','2','10033','4.99','2005-07-31 18:44:29.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10329','381','1','10608','0.99','2005-08-01 14:48:41.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10330','381','2','10705','0.99','2005-08-01 18:38:54.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10331','381','1','11519','2.99','2005-08-17 00:01:27.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10332','381','2','12135','2.99','2005-08-17 23:50:24.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10333','381','2','12237','4.99','2005-08-18 03:24:38.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10334','381','2','12632','2.99','2005-08-18 17:54:21.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10335','381','2','13202','8.99','2005-08-19 14:58:30.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10336','381','2','13430','0.99','2005-08-19 23:25:43.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10337','381','1','13614','0.99','2005-08-20 06:28:37.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10338','381','2','13995','2.99','2005-08-20 19:34:43.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10339','381','1','14198','4.99','2005-08-21 03:48:31.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10340','381','2','15299','4.99','2005-08-22 19:42:57.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10341','381','1','15747','4.99','2005-08-23 12:29:24.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10342','382','2','356','2.99','2005-05-27 06:32:30.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10343','382','1','522','2.99','2005-05-28 03:33:20.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10344','382','1','2389','0.99','2005-06-18 15:27:47.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10345','382','1','2468','4.99','2005-06-18 20:23:52.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10346','382','1','2489','1.99','2005-06-18 22:00:44.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10347','382','1','2514','2.99','2005-06-18 23:56:44.000','2006-02-15 22:17:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10348','382','2','3125','4.99','2005-06-20 18:31:58.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10349','382','2','3480','3.99','2005-07-05 23:11:43.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10350','382','2','4351','4.99','2005-07-07 19:04:24.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10351','382','1','5004','4.99','2005-07-09 01:20:50.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10352','382','1','5816','0.99','2005-07-10 15:48:47.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10353','382','2','7625','0.99','2005-07-28 00:47:56.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10354','382','2','8777','0.99','2005-07-29 20:10:21.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10355','382','1','8871','9.99','2005-07-30 00:12:41.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10356','382','1','8993','4.99','2005-07-30 04:51:25.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10357','382','1','9067','6.99','2005-07-30 07:31:01.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10358','382','2','9555','0.99','2005-07-31 02:11:16.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10359','382','2','10327','3.99','2005-08-01 04:55:35.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10360','382','2','12229','0.99','2005-08-18 03:08:23.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10361','382','2','12529','0.99','2005-08-18 13:53:36.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10362','382','1','14009','4.99','2005-08-20 20:26:53.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10363','382','2','14300','4.99','2005-08-21 07:19:37.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10364','382','2','14354','5.99','2005-08-21 09:08:14.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10365','382','2','15939','7.99','2005-08-23 18:44:21.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10366','383','2','63','0.99','2005-05-25 09:19:16.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10367','383','1','766','8.99','2005-05-29 11:47:02.000','2006-02-15 22:17:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10368','383','1','1831','7.99','2005-06-16 22:22:17.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10369','383','2','2228','2.99','2005-06-18 03:44:50.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10370','383','1','2252','2.99','2005-06-18 05:05:18.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10371','383','2','2318','2.99','2005-06-18 09:13:54.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10372','383','1','2609','7.99','2005-06-19 07:13:12.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10373','383','1','3091','2.99','2005-06-20 16:02:59.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10374','383','2','4747','5.99','2005-07-08 13:53:01.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10375','383','2','6091','4.99','2005-07-11 05:49:18.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10376','383','2','6244','0.99','2005-07-11 14:53:38.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10377','383','1','6775','4.99','2005-07-12 16:01:44.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10378','383','1','7367','3.99','2005-07-27 15:05:45.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10379','383','2','8367','2.99','2005-07-29 05:11:19.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10380','383','1','8635','0.99','2005-07-29 14:22:48.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10381','383','1','9653','0.99','2005-07-31 05:55:38.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10382','383','1','9678','0.99','2005-07-31 06:40:47.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10383','383','2','10515','4.99','2005-08-01 11:41:33.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10384','383','1','10971','4.99','2005-08-02 04:08:17.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10385','383','2','10993','0.99','2005-08-02 04:45:01.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10386','383','2','11122','0.99','2005-08-02 08:49:09.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10387','383','1','11592','2.99','2005-08-17 02:36:04.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10388','383','1','12735','4.99','2005-08-18 22:04:54.000','2006-02-15 22:17:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10389','383','2','14039','4.99','2005-08-20 21:39:43.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10390','383','2','14678','4.99','2005-08-21 20:12:43.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10391','383','1','15416','1.99','2005-08-22 23:51:23.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10392','383','1','15881','6.99','2005-08-23 16:44:25.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10393','384','2','103','4.99','2005-05-25 17:30:42.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10394','384','2','279','2.99','2005-05-26 18:02:50.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10395','384','1','898','0.99','2005-05-30 09:26:19.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10396','384','2','1013','2.99','2005-05-31 02:37:00.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10397','384','1','1961','0.99','2005-06-17 09:02:58.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10398','384','2','2020','0.99','2005-06-17 12:39:50.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10399','384','1','2378','7.99','2005-06-18 14:57:49.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10400','384','2','2510','5.99','2005-06-18 23:44:21.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10401','384','2','2935','3.99','2005-06-20 05:07:24.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10402','384','1','3088','9.99','2005-06-20 15:56:05.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10403','384','2','3101','4.99','2005-06-20 16:48:58.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10404','384','2','4424','0.99','2005-07-07 22:14:43.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10405','384','2','5250','0.99','2005-07-09 13:35:32.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10406','384','1','5608','4.99','2005-07-10 05:08:26.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10407','384','2','5797','4.99','2005-07-10 14:43:52.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10408','384','2','5966','2.99','2005-07-10 23:59:27.000','2006-02-15 22:17:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10409','384','2','6387','0.99','2005-07-11 22:15:56.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10410','384','2','7799','0.99','2005-07-28 07:42:09.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10411','384','1','8445','1.99','2005-07-29 07:37:48.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10412','384','2','11773','5.99','2005-08-17 10:19:51.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10413','384','2','13521','2.99','2005-08-20 02:42:28.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10414','384','2','14416','2.99','2005-08-21 11:11:46.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10415','384','1','14841','0.99','2005-08-22 02:03:30.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10416','384','1','14963','5.99','2005-08-22 06:38:10.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10417','384','2','15321','4.99','2005-08-22 20:20:04.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10418','385','1','917','2.99','2005-05-30 11:27:06.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10419','385','2','1038','4.99','2005-05-31 05:23:47.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10420','385','1','1746','2.99','2005-06-16 16:41:19.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10421','385','1','1937','0.99','2005-06-17 07:16:46.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10422','385','1','3105','0.99','2005-06-20 17:11:46.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10423','385','2','3878','8.99','2005-07-06 18:27:09.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10424','385','2','3953','0.99','2005-07-06 21:54:55.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10425','385','1','4714','6.99','2005-07-08 12:12:48.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10426','385','1','5783','2.99','2005-07-10 13:55:33.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10427','385','1','6445','4.99','2005-07-12 00:37:02.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10428','385','2','6933','4.99','2005-07-26 23:09:23.000','2006-02-15 22:17:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10429','385','2','7776','0.99','2005-07-28 07:04:36.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10430','385','1','8346','2.99','2005-07-29 04:48:22.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10431','385','1','8518','2.99','2005-07-29 10:05:27.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10432','385','1','9570','2.99','2005-07-31 02:40:37.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10433','385','1','9704','4.99','2005-07-31 07:39:32.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10434','385','1','10557','0.99','2005-08-01 12:59:24.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10435','385','1','10636','3.99','2005-08-01 15:40:35.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10436','385','1','10655','4.99','2005-08-01 16:33:27.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10437','385','1','11021','2.99','2005-08-02 05:30:11.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10438','385','1','11559','2.99','2005-08-17 01:20:26.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10439','385','2','12310','2.99','2005-08-18 06:02:34.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10440','385','2','12686','8.99','2005-08-18 19:55:09.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10441','385','2','13062','7.99','2005-08-19 09:44:17.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10442','385','1','13117','0.99','2005-08-19 11:33:20.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10443','385','1','15488','6.99','2005-08-23 02:06:01.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10444','386','1','583','7.99','2005-05-28 11:48:55.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10445','386','2','1585','3.99','2005-06-16 04:51:13.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10446','386','1','1608','2.99','2005-06-16 06:28:57.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10447','386','2','1819','5.99','2005-06-16 21:32:50.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10448','386','1','2732','0.99','2005-06-19 15:19:39.000','2006-02-15 22:17:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10449','386','1','3351','2.99','2005-06-21 11:21:39.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10450','386','2','3783','6.99','2005-07-06 13:57:31.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10451','386','1','4189','8.99','2005-07-07 10:51:07.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10452','386','1','5524','0.99','2005-07-10 01:49:24.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10453','386','1','5953','2.99','2005-07-10 23:21:35.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10454','386','1','6037','4.99','2005-07-11 03:06:54.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10455','386','1','6222','2.99','2005-07-11 13:25:49.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10456','386','2','6261','2.99','2005-07-11 15:28:34.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10457','386','1','6324','3.99','2005-07-11 19:02:34.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10458','386','2','6715','4.99','2005-07-12 13:32:28.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10459','386','2','8340','4.99','2005-07-29 04:41:44.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10460','386','1','8751','2.99','2005-07-29 19:14:39.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10461','386','2','9602','0.99','2005-07-31 03:42:51.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10462','386','1','9686','5.99','2005-07-31 06:50:06.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10463','386','1','10572','4.99','2005-08-01 13:26:53.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10464','386','2','10618','3.99','2005-08-01 15:06:38.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10465','386','1','10715','2.99','2005-08-01 18:51:48.000','2006-02-15 22:17:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10466','386','2','11128','2.99','2005-08-02 09:03:25.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10467','386','2','11695','4.99','2005-08-17 07:01:08.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10468','386','2','12961','2.99','2005-08-19 06:22:37.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10469','386','1','13716','3.99','2005-08-20 09:48:32.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10470','386','1','13764','2.99','2005-08-20 11:38:16.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10471','386','2','13869','6.99','2005-08-20 15:08:57.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10472','386','1','15949','0.99','2005-08-23 19:06:04.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10473','387','2','302','4.99','2005-05-26 21:13:46.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10474','387','1','697','7.99','2005-05-29 02:04:04.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10475','387','1','841','4.99','2005-05-30 00:31:17.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10476','387','1','1127','3.99','2005-05-31 17:45:49.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10477','387','1','1464','0.99','2005-06-15 20:38:14.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10478','387','2','1465','0.99','2005-06-15 20:43:08.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10479','387','1','2068','0.99','2005-06-17 16:11:46.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10480','387','2','2100','0.99','2005-06-17 18:53:21.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10481','387','2','2981','5.99','2005-06-20 08:35:17.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10482','387','2','3378','4.99','2005-06-21 13:51:28.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10483','387','2','6216','4.99','2005-07-11 12:57:05.000','2006-02-15 22:17:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10484','387','2','6456','6.99','2005-07-12 01:05:11.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10485','387','1','6517','5.99','2005-07-12 03:52:39.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10486','387','1','7497','0.99','2005-07-27 20:05:27.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10487','387','1','8090','2.99','2005-07-28 18:27:29.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10488','387','1','10564','0.99','2005-08-01 13:07:34.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10489','387','1','10838','4.99','2005-08-01 23:36:10.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10490','387','2','11682','2.99','2005-08-17 06:13:40.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10491','387','2','12153','4.99','2005-08-18 00:22:30.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10492','387','1','12936','6.99','2005-08-19 05:25:06.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10493','387','2','13034','2.99','2005-08-19 08:41:29.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10494','387','1','13082','5.99','2005-08-19 10:19:19.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10495','387','2','13645','0.99','2005-08-20 07:47:05.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10496','387','2','13772','4.99','2005-08-20 11:47:52.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10497','387','2','14279','5.99','2005-08-21 06:39:08.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10498','387','2','14979','0.99','2005-08-22 07:16:36.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10499','388','2','21','4.99','2005-05-25 01:59:46.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10500','388','2','411','4.99','2005-05-27 14:14:14.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10501','388','2','1276','6.99','2005-06-15 08:00:13.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10502','388','1','2145','0.99','2005-06-17 22:10:36.000','2006-02-15 22:17:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10503','388','1','2537','5.99','2005-06-19 01:52:21.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10504','388','1','2692','4.99','2005-06-19 13:08:19.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10505','388','2','3159','7.99','2005-06-20 21:11:50.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10506','388','2','4947','5.99','2005-07-08 22:49:37.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10507','388','2','5899','2.99','2005-07-10 20:21:52.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10508','388','2','6321','2.99','2005-07-11 18:51:02.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10509','388','1','6452','2.99','2005-07-12 00:57:31.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10510','388','2','7985','5.99','2005-07-28 14:29:01.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10511','388','2','8456','3.99','2005-07-29 07:58:31.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10512','388','2','9213','0.99','2005-07-30 13:07:11.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10513','388','2','9368','2.99','2005-07-30 18:50:53.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10514','388','2','9840','2.99','2005-07-31 12:23:18.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10515','388','2','9940','0.99','2005-07-31 15:29:06.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10516','388','2','10044','2.99','2005-07-31 19:02:33.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10517','388','2','11604','0.99','2005-08-17 03:28:27.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10518','388','2','12044','0.99','2005-08-17 20:39:37.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10519','388','1','12068','2.99','2005-08-17 21:37:08.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10520','388','2','12267','6.99','2005-08-18 04:24:30.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10521','388','2','12497','4.99','2005-08-18 12:58:40.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10522','388','2','12646','2.99','2005-08-18 18:25:06.000','2006-02-15 22:17:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10523','388','1','12749','2.99','2005-08-18 22:31:21.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10524','388','1','12977','4.99','2005-08-19 06:55:33.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10525','388','1','14273','10.99','2005-08-21 06:26:48.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10526','388','2','14853','5.99','2005-08-22 02:26:33.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10527','388','2','15660','5.99','2005-08-23 08:51:21.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10528','388','1','12891','0.99','2006-02-14 15:16:03.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10529','389','1','998','4.99','2005-05-31 00:16:57.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10530','389','1','1763','4.99','2005-06-16 17:51:01.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10531','389','1','1946','4.99','2005-06-17 07:58:39.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10532','389','1','2552','3.99','2005-06-19 03:01:29.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10533','389','2','3527','0.99','2005-07-06 01:11:08.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10534','389','1','4443','6.99','2005-07-07 23:05:53.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10535','389','1','5249','0.99','2005-07-09 13:33:53.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10536','389','2','5626','3.99','2005-07-10 05:49:35.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10537','389','2','6104','2.99','2005-07-11 07:01:35.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10538','389','1','6600','3.99','2005-07-12 07:41:48.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10539','389','1','7029','4.99','2005-07-27 02:57:43.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10540','389','1','7896','8.99','2005-07-28 11:00:58.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10541','389','2','7977','4.99','2005-07-28 14:15:54.000','2006-02-15 22:17:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10542','389','1','8338','6.99','2005-07-29 04:40:39.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10543','389','1','8887','4.99','2005-07-30 00:36:54.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10544','389','1','10217','4.99','2005-08-01 01:07:27.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10545','389','1','10949','2.99','2005-08-02 03:24:04.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10546','389','2','11348','4.99','2005-08-02 17:18:38.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10547','389','2','11441','2.99','2005-08-02 20:25:41.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10548','389','2','11944','3.99','2005-08-17 17:02:42.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10549','389','2','12069','4.99','2005-08-17 21:39:40.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10550','389','2','14493','7.99','2005-08-21 14:01:44.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10551','389','1','14578','2.99','2005-08-21 16:53:38.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10552','389','1','14777','2.99','2005-08-21 23:55:50.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10553','389','1','15462','5.99','2005-08-23 01:14:01.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10554','389','2','16011','9.99','2005-08-23 21:11:33.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10555','390','1','254','4.99','2005-05-26 14:43:48.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10556','390','2','912','4.99','2005-05-30 10:58:33.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10557','390','2','1539','5.99','2005-06-16 01:11:25.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10558','390','2','1730','2.99','2005-06-16 15:30:01.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10559','390','2','1893','2.99','2005-06-17 04:18:37.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10560','390','1','2330','7.99','2005-06-18 10:41:19.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10561','390','1','3147','5.99','2005-06-20 20:25:17.000','2006-02-15 22:17:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10562','390','1','3999','2.99','2005-07-06 23:50:54.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10563','390','1','4022','4.99','2005-07-07 01:50:06.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10564','390','2','4191','3.99','2005-07-07 10:56:14.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10565','390','2','4310','2.99','2005-07-07 17:30:56.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10566','390','1','4968','5.99','2005-07-08 23:49:19.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10567','390','1','6215','4.99','2005-07-11 12:52:36.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10568','390','1','6430','0.99','2005-07-12 00:03:34.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10569','390','2','7515','3.99','2005-07-27 20:52:37.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10570','390','1','7595','5.99','2005-07-27 23:32:23.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10571','390','1','8493','0.99','2005-07-29 09:04:31.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10572','390','1','9251','5.99','2005-07-30 14:19:25.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10573','390','2','9314','2.99','2005-07-30 17:05:19.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10574','390','1','9825','4.99','2005-07-31 11:50:51.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10575','390','1','10061','4.99','2005-07-31 19:23:25.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10576','390','1','12105','5.99','2005-08-17 22:54:45.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10577','390','2','12803','2.99','2005-08-19 00:28:21.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10578','390','1','13413','3.99','2005-08-19 22:46:46.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10579','390','1','13473','4.99','2005-08-20 01:03:50.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10580','390','1','13501','0.99','2005-08-20 01:56:20.000','2006-02-15 22:17:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10581','390','2','13546','3.99','2005-08-20 03:50:24.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10582','390','2','13591','3.99','2005-08-20 05:50:05.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10583','390','2','13618','7.99','2005-08-20 06:36:46.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10584','390','2','13893','5.99','2005-08-20 15:52:52.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10585','390','2','15222','4.99','2005-08-22 17:12:30.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10586','390','2','15303','8.99','2005-08-22 19:44:59.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10587','390','2','15376','4.99','2005-08-22 22:21:35.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10588','391','2','73','4.99','2005-05-25 11:00:07.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10589','391','1','210','2.99','2005-05-26 08:14:15.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10590','391','1','317','5.99','2005-05-26 23:23:56.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10591','391','2','870','2.99','2005-05-30 04:25:47.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10592','391','1','891','7.99','2005-05-30 07:43:12.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10593','391','2','1232','0.99','2005-06-15 04:18:10.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10594','391','2','1931','0.99','2005-06-17 06:51:56.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10595','391','1','2045','2.99','2005-06-17 14:38:11.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10596','391','1','2690','2.99','2005-06-19 13:00:02.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10597','391','2','3163','2.99','2005-06-20 21:22:13.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10598','391','1','4188','5.99','2005-07-07 10:45:29.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10599','391','1','4716','0.99','2005-07-08 12:18:51.000','2006-02-15 22:17:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10600','391','2','4753','0.99','2005-07-08 14:18:41.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10601','391','2','5583','7.99','2005-07-10 04:08:48.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10602','391','1','5599','4.99','2005-07-10 04:52:04.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10603','391','1','6302','3.99','2005-07-11 17:55:38.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10604','391','1','6463','2.99','2005-07-12 01:16:11.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10605','391','2','8016','0.99','2005-07-28 15:35:41.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10606','391','1','8908','0.99','2005-07-30 01:26:05.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10607','391','2','8913','6.99','2005-07-30 01:35:01.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10608','391','1','9225','0.99','2005-07-30 13:29:47.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10609','391','1','10210','7.99','2005-08-01 00:58:52.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10610','391','2','10406','2.99','2005-08-01 07:37:05.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10611','391','1','11151','4.99','2005-08-02 09:52:44.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10612','391','2','11434','2.99','2005-08-02 20:13:14.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10613','391','1','11602','4.99','2005-08-17 03:21:19.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10614','391','1','12090','0.99','2005-08-17 22:21:43.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10615','391','1','12100','1.99','2005-08-17 22:41:10.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10616','391','1','13980','2.99','2005-08-20 19:04:40.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10617','391','1','14381','0.99','2005-08-21 09:55:47.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10618','392','2','1530','6.99','2005-06-16 00:38:07.000','2006-02-15 22:17:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10619','392','2','1764','2.99','2005-06-16 17:51:54.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10620','392','2','2289','2.99','2005-06-18 07:29:43.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10621','392','2','2890','4.99','2005-06-20 02:00:45.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10622','392','1','3566','2.99','2005-07-06 03:08:51.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10623','392','2','6061','0.99','2005-07-11 04:06:25.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10624','392','2','6406','2.99','2005-07-11 22:55:27.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10625','392','1','7692','2.99','2005-07-28 03:30:21.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10626','392','1','7981','1.99','2005-07-28 14:18:25.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10627','392','1','8254','0.99','2005-07-29 00:59:31.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10628','392','2','8612','9.99','2005-07-29 13:28:20.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10629','392','2','10085','0.99','2005-07-31 20:12:02.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10630','392','1','10435','4.99','2005-08-01 08:50:51.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10631','392','1','11459','0.99','2005-08-02 21:25:25.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10632','392','1','11686','2.99','2005-08-17 06:39:30.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10633','392','2','12102','6.99','2005-08-17 22:45:26.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10634','392','1','12368','6.99','2005-08-18 07:57:38.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10635','392','2','12561','0.99','2005-08-18 14:58:51.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10636','392','1','13629','4.99','2005-08-20 07:04:07.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10637','392','2','14081','7.99','2005-08-20 23:35:13.000','2006-02-15 22:17:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10638','392','1','14223','5.99','2005-08-21 04:51:51.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10639','392','2','14369','0.99','2005-08-21 09:33:44.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10640','392','2','14438','5.99','2005-08-21 11:51:10.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10641','393','1','599','4.99','2005-05-28 14:05:57.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10642','393','2','886','0.99','2005-05-30 06:54:51.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10643','393','1','1611','6.99','2005-06-16 06:41:35.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10644','393','2','1915','1.99','2005-06-17 05:28:28.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10645','393','2','2219','2.99','2005-06-18 03:16:54.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10646','393','1','2319','4.99','2005-06-18 09:24:22.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10647','393','2','3001','2.99','2005-06-20 09:50:16.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10648','393','2','4275','2.99','2005-07-07 14:43:51.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10649','393','2','4546','8.99','2005-07-08 04:18:36.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10650','393','2','4632','5.99','2005-07-08 08:38:57.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10651','393','2','4791','7.99','2005-07-08 16:27:24.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10652','393','1','5099','4.99','2005-07-09 06:14:30.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10653','393','1','6221','2.99','2005-07-11 13:24:27.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10654','393','2','6513','0.99','2005-07-12 03:44:43.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10655','393','1','6930','8.99','2005-07-26 23:00:01.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10656','393','2','7486','0.99','2005-07-27 19:29:24.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10657','393','2','8004','4.99','2005-07-28 15:14:07.000','2006-02-15 22:17:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10658','393','2','8448','0.99','2005-07-29 07:41:54.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10659','393','2','9763','7.99','2005-07-31 09:34:03.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10660','393','1','10158','1.99','2005-07-31 22:40:31.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10661','393','2','12059','2.99','2005-08-17 21:09:23.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10662','393','1','12113','1.99','2005-08-17 23:01:00.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10663','393','1','12563','4.99','2005-08-18 15:08:29.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10664','393','1','12676','0.99','2005-08-18 19:34:40.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10665','393','1','13184','4.99','2005-08-19 14:16:18.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10666','393','2','13357','4.99','2005-08-19 21:02:59.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10667','393','2','13788','1.99','2005-08-20 12:15:41.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10668','393','1','15132','2.99','2005-08-22 13:11:25.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10669','393','2','15284','3.99','2005-08-22 19:17:08.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10670','393','2','15527','0.99','2005-08-23 03:44:51.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10671','393','2','16049','3.99','2005-08-23 22:50:12.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10672','394','1','213','3.99','2005-05-26 08:44:08.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10673','394','1','977','2.99','2005-05-30 21:22:26.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10674','394','2','1324','4.99','2005-06-15 11:02:45.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10675','394','2','3543','0.99','2005-07-06 02:01:08.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10676','394','1','3873','6.99','2005-07-06 18:03:16.000','2006-02-15 22:17:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10677','394','2','4009','2.99','2005-07-07 00:28:55.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10678','394','1','4307','6.99','2005-07-07 17:20:39.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10679','394','2','5183','4.99','2005-07-09 10:13:45.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10680','394','1','5535','4.99','2005-07-10 02:27:42.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10681','394','2','6059','4.99','2005-07-11 04:03:54.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10682','394','2','7445','3.99','2005-07-27 17:57:15.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10683','394','1','9147','0.99','2005-07-30 10:38:59.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10684','394','2','9864','0.99','2005-07-31 13:06:54.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10685','394','1','10319','4.99','2005-08-01 04:37:19.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10686','394','1','10603','0.99','2005-08-01 14:30:35.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10687','394','1','10718','0.99','2005-08-01 18:55:38.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10688','394','1','12080','4.99','2005-08-17 22:08:04.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10689','394','1','12389','4.99','2005-08-18 08:48:36.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10690','394','2','12510','9.99','2005-08-18 13:22:25.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10691','394','2','13047','0.99','2005-08-19 09:24:49.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10692','394','1','14605','0.99','2005-08-21 17:56:06.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10693','394','2','13178','4.99','2006-02-14 15:16:03.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10694','395','1','1270','0.99','2005-06-15 07:30:22.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10695','395','1','1562','0.99','2005-06-16 02:46:27.000','2006-02-15 22:17:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10696','395','2','1603','0.99','2005-06-16 06:14:03.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10697','395','1','3030','4.99','2005-06-20 11:51:59.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10698','395','1','3310','0.99','2005-06-21 08:04:51.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10699','395','1','3389','6.99','2005-06-21 14:37:55.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10700','395','2','3684','0.99','2005-07-06 09:29:22.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10701','395','1','4185','5.99','2005-07-07 10:31:05.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10702','395','1','4393','4.99','2005-07-07 21:12:36.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10703','395','1','5087','0.99','2005-07-09 05:44:28.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10704','395','2','5136','0.99','2005-07-09 07:55:01.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10705','395','1','7740','2.99','2005-07-28 05:23:36.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10706','395','2','7986','7.99','2005-07-28 14:30:13.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10707','395','1','11889','0.99','2005-08-17 15:08:27.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10708','395','1','14471','5.99','2005-08-21 13:10:40.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10709','395','2','14720','0.99','2005-08-21 21:43:53.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10710','395','1','15698','2.99','2005-08-23 10:11:40.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10711','395','1','15856','0.99','2005-08-23 15:59:12.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10712','395','1','15970','4.99','2005-08-23 19:54:24.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10713','396','2','641','5.99','2005-05-28 18:45:47.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10714','396','2','1370','1.99','2005-06-15 14:31:05.000','2006-02-15 22:17:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10715','396','2','1385','4.99','2005-06-15 15:28:23.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10716','396','2','1408','6.99','2005-06-15 16:57:58.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10717','396','2','3909','6.99','2005-07-06 19:54:41.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10718','396','1','5059','1.99','2005-07-09 04:28:01.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10719','396','2','6335','2.99','2005-07-11 19:25:15.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10720','396','2','6764','4.99','2005-07-12 15:29:27.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10721','396','2','6771','2.99','2005-07-12 15:54:40.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10722','396','2','7142','0.99','2005-07-27 06:55:39.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10723','396','2','7313','2.99','2005-07-27 13:11:57.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10724','396','2','8371','2.99','2005-07-29 05:16:35.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10725','396','2','8807','2.99','2005-07-29 21:36:59.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10726','396','1','9344','5.99','2005-07-30 18:13:45.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10727','396','2','10120','2.99','2005-07-31 21:24:24.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10728','396','2','10124','0.99','2005-07-31 21:31:49.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10729','396','2','10195','6.99','2005-08-01 00:34:42.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10730','396','2','10610','0.99','2005-08-01 14:49:41.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10731','396','2','12393','5.99','2005-08-18 09:02:41.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10732','396','1','12895','4.99','2005-08-19 03:50:48.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10733','396','2','13355','4.99','2005-08-19 20:59:19.000','2006-02-15 22:17:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10734','396','1','14078','3.99','2005-08-20 23:26:40.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10735','396','1','14169','4.99','2005-08-21 03:00:31.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10736','396','1','14508','2.99','2005-08-21 14:33:58.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10737','396','2','14778','5.99','2005-08-21 23:56:30.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10738','396','1','14792','1.99','2005-08-22 00:36:41.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10739','396','2','15198','7.99','2005-08-22 16:15:33.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10740','397','2','1002','0.99','2005-05-31 00:47:56.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10741','397','1','1769','5.99','2005-06-16 18:07:48.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10742','397','2','3027','1.99','2005-06-20 11:50:30.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10743','397','1','3489','5.99','2005-07-05 23:33:40.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10744','397','1','4036','0.99','2005-07-07 02:48:00.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10745','397','2','5103','4.99','2005-07-09 06:34:40.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10746','397','2','5598','4.99','2005-07-10 04:48:29.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10747','397','2','5763','4.99','2005-07-10 12:58:12.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10748','397','2','6014','2.99','2005-07-11 02:02:55.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10749','397','2','6266','2.99','2005-07-11 15:45:39.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10750','397','1','6471','4.99','2005-07-12 01:31:06.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10751','397','2','7356','2.99','2005-07-27 14:47:35.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10752','397','2','7892','4.99','2005-07-28 10:46:58.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10753','397','1','8103','6.99','2005-07-28 18:50:14.000','2006-02-15 22:17:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10754','397','1','9495','0.99','2005-07-30 23:54:26.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10755','397','2','9608','1.99','2005-07-31 03:51:52.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10756','397','1','10534','0.99','2005-08-01 12:15:11.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10757','397','2','10598','4.99','2005-08-01 14:23:36.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10758','397','1','10785','1.99','2005-08-01 21:24:55.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10759','397','2','11511','4.99','2005-08-16 23:39:59.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10760','397','2','12223','2.99','2005-08-18 02:58:40.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10761','397','1','12276','0.99','2005-08-18 04:43:22.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10762','397','2','12329','1.99','2005-08-18 06:44:30.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10763','397','2','12700','0.99','2005-08-18 20:24:46.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10764','397','2','12726','2.99','2005-08-18 21:44:46.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10765','397','1','12772','4.99','2005-08-18 23:29:25.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10766','397','2','14100','3.99','2005-08-21 00:31:07.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10767','397','1','14790','6.99','2005-08-22 00:34:17.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10768','397','1','15083','6.99','2005-08-22 11:17:37.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10769','398','1','486','4.99','2005-05-27 23:51:12.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10770','398','2','1228','2.99','2005-06-15 03:50:36.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10771','398','1','2087','6.99','2005-06-17 17:35:10.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10772','398','2','3141','9.99','2005-06-20 19:55:47.000','2006-02-15 22:17:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10773','398','2','5234','5.99','2005-07-09 12:44:47.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10774','398','2','8119','3.99','2005-07-28 19:23:15.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10775','398','2','8204','4.99','2005-07-28 23:18:29.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10776','398','1','8428','7.99','2005-07-29 07:10:14.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10777','398','1','9042','2.99','2005-07-30 06:33:55.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10778','398','2','9281','5.99','2005-07-30 15:15:51.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10779','398','1','9771','1.99','2005-07-31 09:55:36.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10780','398','1','10230','2.99','2005-08-01 01:49:36.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10781','398','2','11132','4.99','2005-08-02 09:14:09.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10782','398','2','12528','2.99','2005-08-18 13:52:41.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10783','398','2','13643','4.99','2005-08-20 07:42:24.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10784','398','1','15189','3.99','2005-08-22 15:56:42.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10785','399','2','10','5.99','2005-05-25 00:02:21.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10786','399','2','694','6.99','2005-05-29 01:49:43.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10787','399','2','883','4.99','2005-05-30 06:21:05.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10788','399','2','2961','2.99','2005-06-20 07:29:15.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10789','399','1','3036','5.99','2005-06-20 12:18:31.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10790','399','2','4957','0.99','2005-07-08 23:18:48.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10791','399','2','4981','4.99','2005-07-09 00:29:29.000','2006-02-15 22:17:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10792','399','1','5507','0.99','2005-07-10 00:49:04.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10793','399','2','6006','2.99','2005-07-11 01:38:42.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10794','399','2','6229','6.99','2005-07-11 13:59:50.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10795','399','2','6674','4.99','2005-07-12 11:51:54.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10796','399','2','8461','5.99','2005-07-29 08:11:31.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10797','399','2','9728','2.99','2005-07-31 08:40:54.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10798','399','2','10654','2.99','2005-08-01 16:31:35.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10799','399','2','10960','5.99','2005-08-02 03:46:18.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10800','399','1','11329','4.99','2005-08-02 16:42:52.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10801','399','1','11953','3.99','2005-08-17 17:16:42.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10802','399','1','13253','4.99','2005-08-19 16:53:56.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10803','399','2','13293','4.99','2005-08-19 18:35:52.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10804','399','1','15300','0.99','2005-08-22 19:44:00.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10805','399','1','15468','4.99','2005-08-23 01:25:30.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10806','400','1','95','3.99','2005-05-25 16:12:52.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10807','400','2','171','6.99','2005-05-26 03:14:15.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10808','400','2','516','1.99','2005-05-28 03:11:47.000','2006-02-15 22:17:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10809','400','2','894','5.99','2005-05-30 08:31:31.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10810','400','2','1364','0.99','2005-06-15 14:05:32.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10811','400','1','1917','3.99','2005-06-17 05:36:07.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10812','400','2','1923','6.99','2005-06-17 06:06:10.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10813','400','1','4573','6.99','2005-07-08 05:38:46.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10814','400','1','4645','2.99','2005-07-08 09:20:09.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10815','400','2','5212','6.99','2005-07-09 11:37:47.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10816','400','2','5222','5.99','2005-07-09 12:05:45.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10817','400','2','6790','5.99','2005-07-12 16:34:59.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10818','400','2','6994','2.99','2005-07-27 01:08:26.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10819','400','2','7296','2.99','2005-07-27 12:39:48.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10820','400','1','7682','5.99','2005-07-28 03:07:29.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10821','400','2','9177','5.99','2005-07-30 11:52:40.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10822','400','2','9756','4.99','2005-07-31 09:25:00.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10823','400','1','10187','2.99','2005-08-01 00:15:49.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10824','400','2','10484','2.99','2005-08-01 10:19:53.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10825','400','1','10711','0.99','2005-08-01 18:45:09.000','2006-02-15 22:17:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10826','400','2','11510','6.99','2005-08-16 23:30:07.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10827','400','2','11530','2.99','2005-08-17 00:29:00.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10828','400','1','11600','5.99','2005-08-17 03:12:04.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10829','400','1','12514','2.99','2005-08-18 13:33:55.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10830','400','2','13449','2.99','2005-08-20 00:17:01.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10831','400','1','14775','2.99','2005-08-21 23:53:07.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10832','400','2','15533','4.99','2005-08-23 03:54:39.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10833','400','2','15988','4.99','2005-08-23 20:23:08.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10834','401','2','167','4.99','2005-05-26 02:50:31.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10835','401','2','446','4.99','2005-05-27 18:48:41.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10836','401','2','811','1.99','2005-05-29 19:30:42.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10837','401','1','4059','0.99','2005-07-07 04:04:26.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10838','401','2','4292','7.99','2005-07-07 15:48:38.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10839','401','2','5923','0.99','2005-07-10 21:40:06.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10840','401','1',NULL,'0.99','2005-07-12 06:26:10.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10841','401','2','7651','4.99','2005-07-28 01:48:32.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10842','401','1','8450','2.99','2005-07-29 07:44:05.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10843','401','2','8669','2.99','2005-07-29 15:44:55.000','2006-02-15 22:17:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10844','401','1','8722','8.99','2005-07-29 17:58:58.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10845','401','2','9701','4.99','2005-07-31 07:32:21.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10846','401','2','10171','0.99','2005-07-31 23:29:05.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10847','401','1','11820','2.99','2005-08-17 12:25:33.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10848','401','1','12475','4.99','2005-08-18 12:14:21.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10849','401','2','12479','4.99','2005-08-18 12:26:37.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10850','401','1','12906','2.99','2005-08-19 04:13:43.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10851','401','1','13024','4.99','2005-08-19 08:19:21.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10852','401','1','14359','0.99','2005-08-21 09:16:19.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10853','401','2','14433','1.99','2005-08-21 11:36:34.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10854','401','1','15831','0.99','2005-08-23 15:21:19.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10855','401','1','15927','0.99','2005-08-23 18:23:11.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10856','402','2','801','1.99','2005-05-29 17:35:50.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10857','402','2','1194','4.99','2005-06-15 01:25:08.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10858','402','2','2490','4.99','2005-06-18 22:00:50.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10859','402','2','2913','2.99','2005-06-20 03:42:27.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10860','402','2','3564','6.99','2005-07-06 03:02:13.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10861','402','2','3612','3.99','2005-07-06 05:37:26.000','2006-02-15 22:17:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10862','402','2','3755','5.99','2005-07-06 12:37:16.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10863','402','1','4399','2.99','2005-07-07 21:20:28.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10864','402','2','4604','3.99','2005-07-08 06:58:43.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10865','402','2','5329','4.99','2005-07-09 16:49:46.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10866','402','2','6183','2.99','2005-07-11 11:14:35.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10867','402','1','6283','3.99','2005-07-11 16:47:32.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10868','402','1','7633','0.99','2005-07-28 01:03:41.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10869','402','2','8521','7.99','2005-07-29 10:12:45.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10870','402','1','9657','6.99','2005-07-31 06:00:41.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10871','402','2','9779','0.99','2005-07-31 10:08:33.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10872','402','2','11045','0.99','2005-08-02 06:07:54.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10873','402','2','11549','4.99','2005-08-17 01:01:48.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10874','402','2','11920','0.99','2005-08-17 16:10:19.000','2006-02-15 22:17:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10875','402','1','15428','4.99','2005-08-23 00:11:52.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10876','403','1','442','2.99','2005-05-27 18:12:13.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10877','403','1','517','0.99','2005-05-28 03:17:57.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10878','403','2','1221','4.99','2005-06-15 03:35:16.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10879','403','1','1249','8.99','2005-06-15 05:38:09.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10880','403','2','2488','3.99','2005-06-18 21:38:26.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10881','403','1','2927','4.99','2005-06-20 04:41:41.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10882','403','2','3049','6.99','2005-06-20 12:51:01.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10883','403','1','3356','5.99','2005-06-21 11:38:45.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10884','403','1','3644','6.99','2005-07-06 07:20:11.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10885','403','2','3737','3.99','2005-07-06 11:45:53.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10886','403','2','4096','4.99','2005-07-07 06:09:11.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10887','403','1','5982','4.99','2005-07-11 00:24:44.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10888','403','2','6322','2.99','2005-07-11 18:58:20.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10889','403','1','6342','4.99','2005-07-11 19:48:24.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10890','403','1','7103','4.99','2005-07-27 05:08:59.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10891','403','2','8013','5.99','2005-07-28 15:30:26.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10892','403','1','9058','2.99','2005-07-30 07:15:45.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10893','403','2','9486','7.99','2005-07-30 23:35:42.000','2006-02-15 22:17:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10894','403','2','9794','4.99','2005-07-31 10:47:01.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10895','403','2','10109','5.99','2005-07-31 21:04:49.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10896','403','1','10443','2.99','2005-08-01 09:01:04.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10897','403','1','10547','6.99','2005-08-01 12:44:17.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10898','403','2','10789','2.99','2005-08-01 21:37:55.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10899','403','1','11038','7.99','2005-08-02 05:59:42.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10900','403','2','11391','9.99','2005-08-02 18:40:12.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10901','403','2','11427','2.99','2005-08-02 20:02:39.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10902','403','2','11460','0.99','2005-08-02 21:28:03.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10903','403','2','11558','0.99','2005-08-17 01:19:52.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10904','403','2','12005','5.99','2005-08-17 18:56:55.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10905','403','1','12132','2.99','2005-08-17 23:37:03.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10906','403','1','12793','5.99','2005-08-19 00:20:36.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10907','403','1','14519','2.99','2005-08-21 14:59:29.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10908','403','1','14662','0.99','2005-08-21 19:45:27.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10909','403','2','14725','4.99','2005-08-21 22:02:08.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10910','403','1','15410','4.99','2005-08-22 23:27:43.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10911','404','2','1081','5.99','2005-05-31 10:56:32.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10912','404','2','1506','2.99','2005-06-15 22:19:37.000','2006-02-15 22:17:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10913','404','2','1840','4.99','2005-06-16 23:39:34.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10914','404','1','2715','4.99','2005-06-19 14:29:35.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10915','404','1','2951','2.99','2005-06-20 06:23:01.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10916','404','1','3927','2.99','2005-07-06 20:48:14.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10917','404','1','4495','2.99','2005-07-08 01:43:46.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10918','404','2','4615','8.99','2005-07-08 07:46:53.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10919','404','1','4653','4.99','2005-07-08 09:48:01.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10920','404','1','4963','4.99','2005-07-08 23:38:40.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10921','404','1','5632','3.99','2005-07-10 06:17:06.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10922','404','1','6114','1.99','2005-07-11 07:33:48.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10923','404','2','6779','0.99','2005-07-12 16:10:50.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10924','404','1','6964','4.99','2005-07-27 00:15:04.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10925','404','1','8058','5.99','2005-07-28 17:07:49.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10926','404','1','8455','3.99','2005-07-29 07:53:06.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10927','404','1','9206','4.99','2005-07-30 12:46:59.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10928','404','1','9472','4.99','2005-07-30 23:03:32.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10929','404','2','9824','2.99','2005-07-31 11:49:55.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10930','404','1','10651','2.99','2005-08-01 16:20:22.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10931','404','1','12325','5.99','2005-08-18 06:41:30.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10932','404','1','12554','8.99','2005-08-18 14:47:28.000','2006-02-15 22:17:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10933','404','2','13412','5.99','2005-08-19 22:46:35.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10934','404','1','13422','4.99','2005-08-19 23:07:24.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10935','404','1','14691','0.99','2005-08-21 20:42:29.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10936','404','2','14835','5.99','2005-08-22 01:49:07.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10937','404','2','14838','4.99','2005-08-22 01:57:34.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10938','404','2','14912','4.99','2005-08-22 04:51:42.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10939','404','2','15087','0.99','2005-08-22 11:24:09.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10940','404','2','15290','10.99','2005-08-22 19:28:02.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10941','405','1','121','2.99','2005-05-25 19:41:29.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10942','405','2','770','4.99','2005-05-29 12:56:50.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10943','405','2','1315','4.99','2005-06-15 10:23:08.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10944','405','1','1888','0.99','2005-06-17 03:58:36.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10945','405','2','1953','5.99','2005-06-17 08:34:57.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10946','405','2','2654','3.99','2005-06-19 10:37:54.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10947','405','1','3240','4.99','2005-06-21 02:53:17.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10948','405','1','3253','5.99','2005-06-21 03:25:37.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10949','405','2','4223','0.99','2005-07-07 12:23:54.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10950','405','2','4401','0.99','2005-07-07 21:26:27.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10951','405','2','5040','7.99','2005-07-09 03:16:34.000','2006-02-15 22:17:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10952','405','1','5231','0.99','2005-07-09 12:35:02.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10953','405','2','5512','1.99','2005-07-10 01:05:38.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10954','405','1','6110','2.99','2005-07-11 07:23:47.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10955','405','1','7455','2.99','2005-07-27 18:34:41.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10956','405','1','7759','0.99','2005-07-28 06:28:45.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10957','405','2','8482','2.99','2005-07-29 08:46:33.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10958','405','1','8955','5.99','2005-07-30 03:28:27.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10959','405','1','9569','0.99','2005-07-31 02:39:38.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10960','405','1','10472','4.99','2005-08-01 09:54:41.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10961','405','2','10823','4.99','2005-08-01 22:59:10.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10962','405','1','11345','7.99','2005-08-02 17:14:19.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10963','405','1','12050','0.99','2005-08-17 20:55:25.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10964','405','2','12425','5.99','2005-08-18 10:18:06.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10965','405','1','13304','1.99','2005-08-19 18:56:32.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10966','405','1','13398','0.99','2005-08-19 22:08:48.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10967','405','1','14274','4.99','2005-08-21 06:29:20.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10968','405','2','14537','0.99','2005-08-21 15:24:24.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10969','405','1','15072','1.99','2005-08-22 10:58:45.000','2006-02-15 22:17:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10970','405','2','15383','2.99','2005-08-22 22:31:20.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10971','405','1','15932','4.99','2005-08-23 18:31:40.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10972','405','1','12792','0.99','2006-02-14 15:16:03.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10973','406','1','855','0.99','2005-05-30 02:00:28.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10974','406','1','2113','4.99','2005-06-17 19:57:46.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10975','406','2','2150','3.99','2005-06-17 22:50:36.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10976','406','1','2241','2.99','2005-06-18 04:31:41.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10977','406','2','2325','0.99','2005-06-18 10:08:07.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10978','406','2','2585','0.99','2005-06-19 05:05:03.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10979','406','1','3186','7.99','2005-06-20 23:04:20.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10980','406','1','3306','4.99','2005-06-21 07:46:58.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10981','406','2','4264','4.99','2005-07-07 14:25:28.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10982','406','2','5098','4.99','2005-07-09 06:13:54.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10983','406','2','5263','0.99','2005-07-09 14:10:36.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10984','406','1','5766','0.99','2005-07-10 13:07:31.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10985','406','2','6439','2.99','2005-07-12 00:23:48.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10986','406','2','7109','5.99','2005-07-27 05:28:57.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10987','406','1','7171','4.99','2005-07-27 07:58:35.000','2006-02-15 22:17:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10988','406','1','7259','4.99','2005-07-27 11:06:00.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10989','406','2','7604','7.99','2005-07-27 23:54:52.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10990','406','2','8080','4.99','2005-07-28 18:05:06.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10991','406','2','8295','2.99','2005-07-29 02:42:14.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10992','406','2','8630','0.99','2005-07-29 14:07:59.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10993','406','1','8903','0.99','2005-07-30 01:08:06.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10994','406','2','8962','1.99','2005-07-30 03:43:45.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10995','406','2','9224','0.99','2005-07-30 13:25:37.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10996','406','1','9291','4.99','2005-07-30 16:03:39.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10997','406','2','9487','2.99','2005-07-30 23:40:22.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10998','406','1','9660','8.99','2005-07-31 06:03:17.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('10999','406','1','10632','1.99','2005-08-01 15:36:56.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11000','406','1','11603','4.99','2005-08-17 03:22:10.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11001','406','2','12505','5.99','2005-08-18 13:17:30.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11002','406','2','14205','6.99','2005-08-21 03:57:15.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11003','406','2','14421','2.99','2005-08-21 11:20:21.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11004','406','2','14601','2.99','2005-08-21 17:45:52.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11005','407','1','619','7.99','2005-05-28 15:52:26.000','2006-02-15 22:17:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11006','407','1','1698','2.99','2005-06-16 13:04:42.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11007','407','2','2597','0.99','2005-06-19 05:53:46.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11008','407','1','4296','0.99','2005-07-07 16:16:03.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11009','407','1','5070','4.99','2005-07-09 04:58:26.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11010','407','2','5590','9.99','2005-07-10 04:23:11.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11011','407','1','6727','0.99','2005-07-12 13:54:25.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11012','407','1','7363','5.99','2005-07-27 14:58:29.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11013','407','2','7643','4.99','2005-07-28 01:19:44.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11014','407','1','8078','2.99','2005-07-28 17:54:42.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11015','407','1','8109','4.99','2005-07-28 19:07:44.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11016','407','1','8197','9.99','2005-07-28 23:04:10.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11017','407','2','8571','0.99','2005-07-29 11:48:39.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11018','407','1','8802','2.99','2005-07-29 21:25:51.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11019','407','2','10774','4.99','2005-08-01 20:54:33.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11020','407','1','11214','8.99','2005-08-02 12:19:50.000','2006-02-15 22:17:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11021','407','1','11222','2.99','2005-08-02 12:32:28.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11022','407','2','11382','5.99','2005-08-02 18:20:52.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11023','407','2','11518','4.99','2005-08-16 23:59:49.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11024','407','1','11677','0.99','2005-08-17 06:06:26.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11025','407','2','12566','0.99','2005-08-18 15:13:04.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11026','407','2','12931','2.99','2005-08-19 05:11:47.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11027','407','1','13800','0.99','2005-08-20 12:40:48.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11028','407','2','13856','6.99','2005-08-20 14:49:32.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11029','407','2','14401','6.99','2005-08-21 10:36:20.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11030','407','2','15320','0.99','2005-08-22 20:17:49.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11031','407','2','15334','1.99','2005-08-22 20:44:35.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11032','408','2','3','3.99','2005-05-24 23:03:39.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11033','408','2','59','5.99','2005-05-25 08:56:42.000','2006-02-15 22:18:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11034','408','1','526','2.99','2005-05-28 04:27:37.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11035','408','2','2479','4.99','2005-06-18 21:03:08.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11036','408','1','2564','2.99','2005-06-19 03:41:10.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11037','408','2','2728','2.99','2005-06-19 15:04:04.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11038','408','2','4330','3.99','2005-07-07 18:09:41.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11039','408','2','5073','0.99','2005-07-09 05:02:35.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11040','408','1','6062','0.99','2005-07-11 04:11:58.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11041','408','2','6203','4.99','2005-07-11 12:28:57.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11042','408','2','6826','2.99','2005-07-12 18:32:02.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11043','408','1','7053','4.99','2005-07-27 03:38:54.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11044','408','2','7996','4.99','2005-07-28 15:00:49.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11045','408','2','8251','4.99','2005-07-29 00:50:14.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11046','408','2','8469','3.99','2005-07-29 08:26:27.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11047','408','2','8902','6.99','2005-07-30 01:08:06.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11048','408','1','9052','0.99','2005-07-30 07:06:08.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11049','408','2','9757','4.99','2005-07-31 09:25:14.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11050','408','2','11115','2.99','2005-08-02 08:31:06.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11051','408','1','12140','2.99','2005-08-17 23:57:55.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11052','408','1','12338','4.99','2005-08-18 07:04:24.000','2006-02-15 22:18:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11053','408','1','12498','2.99','2005-08-18 13:01:08.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11054','408','2','12900','0.99','2005-08-19 04:03:49.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11055','408','1','13508','7.99','2005-08-20 02:12:54.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11056','408','2','13744','3.99','2005-08-20 10:51:45.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11057','408','1','13944','2.99','2005-08-20 17:41:16.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11058','408','2','14733','4.99','2005-08-21 22:22:33.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11059','408','1','15628','2.99','2005-08-23 07:28:04.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11060','408','2','15716','1.99','2005-08-23 11:02:00.000','2006-02-15 22:18:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11061','408','1','15765','6.99','2005-08-23 13:06:19.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11062','409','1','310','6.99','2005-05-26 22:41:07.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11063','409','2','1226','5.99','2005-06-15 03:46:10.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11064','409','2','2310','8.99','2005-06-18 08:45:59.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11065','409','1','3866','5.99','2005-07-06 17:47:20.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11066','409','2','4550','4.99','2005-07-08 04:34:00.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11067','409','1','5175','3.99','2005-07-09 09:34:28.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11068','409','2','5306','5.99','2005-07-09 15:56:45.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11069','409','1','5422','0.99','2005-07-09 20:55:47.000','2006-02-15 22:18:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11070','409','1','5848','2.99','2005-07-10 17:28:14.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11071','409','1','5955','7.99','2005-07-10 23:22:10.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11072','409','2','6026','4.99','2005-07-11 02:21:43.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11073','409','1','6596','2.99','2005-07-12 07:32:59.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11074','409','2','7673','2.99','2005-07-28 02:53:53.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11075','409','2','7940','0.99','2005-07-28 12:46:47.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11076','409','1','8037','4.99','2005-07-28 16:31:20.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11077','409','2','8265','5.99','2005-07-29 01:20:15.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11078','409','1','8726','1.99','2005-07-29 18:09:22.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11079','409','2','9267','0.99','2005-07-30 14:59:05.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11080','409','2','12830','0.99','2005-08-19 01:40:25.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11081','409','1','13392','8.99','2005-08-19 22:03:22.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11082','409','2','13632','6.99','2005-08-20 07:10:52.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11083','409','1','14103','1.99','2005-08-21 00:37:00.000','2006-02-15 22:18:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11084','409','1','14697','4.99','2005-08-21 20:49:21.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11085','410','1','1514','2.99','2005-06-15 22:57:34.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11086','410','1','2073','2.99','2005-06-17 16:33:59.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11087','410','1','2255','4.99','2005-06-18 05:21:12.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11088','410','2','2400','5.99','2005-06-18 16:10:46.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11089','410','2','2971','0.99','2005-06-20 07:56:00.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11090','410','1','3249','4.99','2005-06-21 03:13:19.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11091','410','2','4062','0.99','2005-07-07 04:22:27.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11092','410','1','4267','0.99','2005-07-07 14:35:30.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11093','410','1','5150','3.99','2005-07-09 08:28:40.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11094','410','1','5192','4.99','2005-07-09 10:27:09.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11095','410','2','5330','5.99','2005-07-09 16:53:57.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11096','410','1','5336','2.99','2005-07-09 17:01:08.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11097','410','1','6148','4.99','2005-07-11 09:14:22.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11098','410','2','6218','5.99','2005-07-11 13:14:58.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11099','410','2','7350','4.99','2005-07-27 14:34:14.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11100','410','2','7407','5.99','2005-07-27 16:29:04.000','2006-02-15 22:18:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11101','410','1','7523','4.99','2005-07-27 21:11:23.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11102','410','2','8625','3.99','2005-07-29 13:59:13.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11103','410','1','8882','0.99','2005-07-30 00:24:05.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11104','410','1','9263','2.99','2005-07-30 14:48:24.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11105','410','1','10402','4.99','2005-08-01 07:27:19.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11106','410','1','10837','2.99','2005-08-01 23:30:22.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11107','410','1','11107','0.99','2005-08-02 08:19:38.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11108','410','1','11187','10.99','2005-08-02 11:16:19.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11109','410','1','11472','6.99','2005-08-02 21:49:06.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11110','410','1','11694','6.99','2005-08-17 06:57:30.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11111','410','2','12955','8.99','2005-08-19 06:05:58.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11112','410','1','13460','4.99','2005-08-20 00:48:24.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11113','410','2','13748','2.99','2005-08-20 10:59:54.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11114','410','2','13948','6.99','2005-08-20 17:50:48.000','2006-02-15 22:18:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11115','410','1','14237','3.99','2005-08-21 05:15:00.000','2006-02-15 22:18:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11116','410','2','14298','4.99','2005-08-21 07:17:10.000','2006-02-15 22:18:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11117','410','1','14319','4.99','2005-08-21 08:00:55.000','2006-02-15 22:18:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11118','410','2','14819','2.99','2005-08-22 01:17:19.000','2006-02-15 22:18:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11119','410','1','15211','2.99','2005-08-22 16:40:21.000','2006-02-15 22:18:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11120','410','2','15392','3.99','2005-08-22 23:02:15.000','2006-02-15 22:18:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11121','410','1','15518','4.99','2005-08-23 03:19:34.000','2006-02-15 22:18:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11122','410','1','12665','2.99','2006-02-14 15:16:03.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11123','411','2','686','4.99','2005-05-29 00:27:10.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11124','411','2','972','1.99','2005-05-30 20:21:07.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11125','411','1','1985','0.99','2005-06-17 10:31:37.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11126','411','2','1997','2.99','2005-06-17 11:19:43.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11127','411','2','2712','0.99','2005-06-19 14:20:13.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11128','411','1','3928','2.99','2005-07-06 20:52:09.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11129','411','2','4146','0.99','2005-07-07 08:30:16.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11130','411','1','4246','2.99','2005-07-07 13:49:03.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11131','411','2','5357','5.99','2005-07-09 18:08:59.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11132','411','1','5800','2.99','2005-07-10 14:58:36.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11133','411','1','7102','1.99','2005-07-27 05:07:21.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11134','411','2','7395','0.99','2005-07-27 16:03:11.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11135','411','1','7513','2.99','2005-07-27 20:51:04.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11136','411','1','7813','2.99','2005-07-28 08:08:27.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11137','411','1','8023','0.99','2005-07-28 15:53:29.000','2006-02-15 22:18:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11138','411','2','8613','5.99','2005-07-29 13:30:58.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11139','411','2','9622','0.99','2005-07-31 04:21:45.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11140','411','2','11294','2.99','2005-08-02 15:08:27.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11141','411','1','11997','5.99','2005-08-17 18:34:38.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11142','411','2','13634','0.99','2005-08-20 07:16:45.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11143','411','2','13656','7.99','2005-08-20 08:01:07.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11144','411','2','14480','2.99','2005-08-21 13:36:40.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11145','411','1','14772','5.99','2005-08-21 23:50:39.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11146','411','2','14996','2.99','2005-08-22 07:52:41.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11147','411','1','15936','0.99','2005-08-23 18:43:11.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11148','411','2','13246','4.99','2006-02-14 15:16:03.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11149','412','2','191','0.99','2005-05-26 06:14:06.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11150','412','1','333','4.99','2005-05-27 02:52:21.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11151','412','1','717','0.99','2005-05-29 04:37:44.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11152','412','2','1043','3.99','2005-05-31 06:11:40.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11153','412','1','3292','2.99','2005-06-21 06:59:11.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11154','412','2','3888','0.99','2005-07-06 18:54:20.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11155','412','2','4074','0.99','2005-07-07 04:49:49.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11156','412','1','8036','0.99','2005-07-28 16:27:43.000','2006-02-15 22:18:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11157','412','2','8330','8.99','2005-07-29 04:09:07.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11158','412','1','8411','8.99','2005-07-29 06:44:23.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11159','412','1','8674','0.99','2005-07-29 15:54:22.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11160','412','1','9881','4.99','2005-07-31 13:50:38.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11161','412','2','10381','2.99','2005-08-01 06:36:37.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11162','412','1','10467','5.99','2005-08-01 09:45:58.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11163','412','2','11027','4.99','2005-08-02 05:47:10.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11164','412','1','14068','3.99','2005-08-20 22:50:59.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11165','412','1','14535','6.99','2005-08-21 15:22:37.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11166','412','2','15354','4.99','2005-08-22 21:18:59.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11167','412','2','15732','4.99','2005-08-23 11:35:12.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11168','412','1','15781','8.99','2005-08-23 13:41:05.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11169','412','1','15314','0.99','2006-02-14 15:16:03.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11170','413','1','40','4.99','2005-05-25 05:09:04.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11171','413','1','999','4.99','2005-05-31 00:25:10.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11172','413','2','2130','5.99','2005-06-17 21:00:44.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11173','413','2','2545','4.99','2005-06-19 02:23:36.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11174','413','1','3762','4.99','2005-07-06 12:52:49.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11175','413','2','4491','0.99','2005-07-08 01:30:46.000','2006-02-15 22:18:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11176','413','1','5897','7.99','2005-07-10 20:16:14.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11177','413','2','7100','4.99','2005-07-27 05:05:01.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11178','413','1','7635','0.99','2005-07-28 01:08:11.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11179','413','2','7731','0.99','2005-07-28 05:01:18.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11180','413','1','10909','2.99','2005-08-02 01:53:59.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11181','413','2','11304','2.99','2005-08-02 15:40:10.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11182','413','1','11468','0.99','2005-08-02 21:47:26.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11183','413','1','11532','0.99','2005-08-17 00:34:14.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11184','413','2','12552','2.99','2005-08-18 14:46:34.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11185','413','1','13010','3.99','2005-08-19 07:52:21.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11186','413','1','13318','2.99','2005-08-19 19:33:57.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11187','413','2','13824','4.99','2005-08-20 13:43:12.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11188','413','2','13887','4.99','2005-08-20 15:39:00.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11189','413','1','14773','2.99','2005-08-21 23:50:57.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11190','413','1','15678','2.99','2005-08-23 09:23:45.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11191','414','1','85','4.99','2005-05-25 13:05:34.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11192','414','1','261','3.99','2005-05-26 15:44:23.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11193','414','1','2246','4.99','2005-06-18 04:54:29.000','2006-02-15 22:18:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11194','414','1','2559','9.99','2005-06-19 03:09:46.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11195','414','1','3318','5.99','2005-06-21 08:23:05.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11196','414','1','3957','10.99','2005-07-06 22:05:47.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11197','414','1','4437','3.99','2005-07-07 22:55:41.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11198','414','2','6462','7.99','2005-07-12 01:15:24.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11199','414','2','6728','0.99','2005-07-12 13:56:48.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11200','414','2','6845','0.99','2005-07-12 19:20:41.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11201','414','1','7009','0.99','2005-07-27 01:45:44.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11202','414','1','7779','2.99','2005-07-28 07:11:11.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11203','414','1','9650','2.99','2005-07-31 05:47:32.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11204','414','2','9991','2.99','2005-07-31 17:26:27.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11205','414','2','10107','5.99','2005-07-31 21:01:46.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11206','414','1','11706','0.99','2005-08-17 07:23:46.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11207','414','2','12930','4.99','2005-08-19 05:11:32.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11208','414','1','13042','0.99','2005-08-19 09:06:08.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11209','414','1','13242','2.99','2005-08-19 16:28:47.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11210','414','1','13308','7.99','2005-08-19 18:59:42.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11211','414','1','13404','0.99','2005-08-19 22:18:42.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11212','414','2','13494','2.99','2005-08-20 01:36:34.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11213','414','2','13657','4.99','2005-08-20 08:01:39.000','2006-02-15 22:18:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11214','414','1','15140','6.99','2005-08-22 13:39:20.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11215','414','2','15481','0.99','2005-08-23 01:59:14.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11216','415','2','665','4.99','2005-05-28 21:38:39.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11217','415','2','1867','4.99','2005-06-17 02:01:37.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11218','415','1','3211','2.99','2005-06-21 01:01:29.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11219','415','2','4926','8.99','2005-07-08 22:01:48.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11220','415','2','5665','0.99','2005-07-10 08:10:08.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11221','415','2','5733','0.99','2005-07-10 11:37:24.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11222','415','2','6491','5.99','2005-07-12 02:28:31.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11223','415','1','6505','3.99','2005-07-12 03:27:37.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11224','415','1','7379','4.99','2005-07-27 15:36:43.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11225','415','2','7624','0.99','2005-07-28 00:37:44.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11226','415','1','7748','4.99','2005-07-28 05:52:23.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11227','415','2','8317','2.99','2005-07-29 03:39:07.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11228','415','2','9586','2.99','2005-07-31 03:07:16.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11229','415','1','9852','2.99','2005-07-31 12:52:17.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11230','415','1','10263','5.99','2005-08-01 03:02:48.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11231','415','1','10553','2.99','2005-08-01 12:54:06.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11232','415','2','11310','1.99','2005-08-02 15:51:58.000','2006-02-15 22:18:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11233','415','2','12128','5.99','2005-08-17 23:31:09.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11234','415','2','12588','2.99','2005-08-18 16:04:45.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11235','415','2','13729','8.99','2005-08-20 10:17:08.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11236','415','1','14992','4.99','2005-08-22 07:51:47.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11237','415','2','15121','4.99','2005-08-22 12:46:37.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11238','415','1','15959','0.99','2005-08-23 19:27:04.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11239','416','2','253','0.99','2005-05-26 14:43:14.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11240','416','2','724','3.99','2005-05-29 05:53:23.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11241','416','2','1031','2.99','2005-05-31 04:23:01.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11242','416','2','1158','2.99','2005-06-14 22:53:33.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11243','416','1','1343','4.99','2005-06-15 12:27:19.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11244','416','2','1553','0.99','2005-06-16 02:02:44.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11245','416','2','1596','2.99','2005-06-16 05:30:58.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11246','416','2','1771','0.99','2005-06-16 18:12:17.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11247','416','1','3833','3.99','2005-07-06 16:18:28.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11248','416','1','3868','2.99','2005-07-06 17:54:13.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11249','416','1','6097','2.99','2005-07-11 06:21:43.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11250','416','1','6879','7.99','2005-07-12 20:37:37.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11251','416','1','7889','0.99','2005-07-28 10:43:21.000','2006-02-15 22:18:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11252','416','1','7917','2.99','2005-07-28 11:56:57.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11253','416','2','8349','5.99','2005-07-29 04:50:22.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11254','416','2','8588','2.99','2005-07-29 12:22:20.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11255','416','2','8648','2.99','2005-07-29 14:56:21.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11256','416','2','9383','2.99','2005-07-30 19:24:50.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11257','416','1','10254','3.99','2005-08-01 02:42:03.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11258','416','1','10354','2.99','2005-08-01 05:47:10.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11259','416','1','10742','6.99','2005-08-01 19:53:13.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11260','416','1','10937','6.99','2005-08-02 03:00:18.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11261','416','2','11047','5.99','2005-08-02 06:09:20.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11262','416','1','11557','6.99','2005-08-17 01:19:20.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11263','416','1','12722','8.99','2005-08-18 21:33:53.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11264','416','1','12932','4.99','2005-08-19 05:17:30.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11265','416','1','14239','4.99','2005-08-21 05:18:57.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11266','416','1','15235','1.99','2005-08-22 17:43:12.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11267','416','2','15470','4.99','2005-08-23 01:35:12.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11268','416','1','15727','2.99','2005-08-23 11:28:49.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11269','416','2','15761','0.99','2005-08-23 12:55:51.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11270','417','1','267','4.99','2005-05-26 16:16:21.000','2006-02-15 22:18:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11271','417','2','630','8.99','2005-05-28 17:24:51.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11272','417','2','833','4.99','2005-05-29 23:21:56.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11273','417','1','1921','3.99','2005-06-17 06:04:16.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11274','417','1','3952','4.99','2005-07-06 21:51:31.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11275','417','1','4418','2.99','2005-07-07 22:05:30.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11276','417','1','4421','9.99','2005-07-07 22:07:55.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11277','417','2','6258','6.99','2005-07-11 15:24:32.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11278','417','1','6312','4.99','2005-07-11 18:19:02.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11279','417','1','8877','2.99','2005-07-30 00:15:22.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11280','417','2','9049','2.99','2005-07-30 06:57:28.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11281','417','1','10478','0.99','2005-08-01 10:09:06.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11282','417','1','11217','7.99','2005-08-02 12:26:31.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11283','417','1','11291','6.99','2005-08-02 14:57:58.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11284','417','2','11303','0.99','2005-08-02 15:39:18.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11285','417','2','12074','0.99','2005-08-17 21:50:57.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11286','417','2','12281','4.99','2005-08-18 04:50:32.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11287','417','1','13545','4.99','2005-08-20 03:50:15.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11288','417','1','13927','1.99','2005-08-20 17:11:58.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11289','417','2','14121','4.99','2005-08-21 01:26:33.000','2006-02-15 22:18:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11290','417','1','14304','6.99','2005-08-21 07:23:10.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11291','417','1','14607','2.99','2005-08-21 17:56:50.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11292','417','2','14882','2.99','2005-08-22 03:52:21.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11293','417','1','15795','0.99','2005-08-23 14:07:56.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11294','417','2','13261','2.99','2006-02-14 15:16:03.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11295','418','1','2825','2.99','2005-06-19 20:32:19.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11296','418','2','2943','2.99','2005-06-20 05:43:05.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11297','418','2','2969','2.99','2005-06-20 07:44:27.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11298','418','1','3805','0.99','2005-07-06 15:08:42.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11299','418','2','4852','7.99','2005-07-08 18:43:15.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11300','418','1','4865','2.99','2005-07-08 19:09:04.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11301','418','1','4938','0.99','2005-07-08 22:32:53.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11302','418','1','6150','4.99','2005-07-11 09:23:56.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11303','418','1','6970','4.99','2005-07-27 00:26:14.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11304','418','2','8546','5.99','2005-07-29 11:08:48.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11305','418','2','8591','0.99','2005-07-29 12:32:33.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11306','418','2','8886','10.99','2005-07-30 00:36:31.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11307','418','1','9558','4.99','2005-07-31 02:14:35.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11308','418','2','10537','5.99','2005-08-01 12:22:28.000','2006-02-15 22:18:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11309','418','1','10709','0.99','2005-08-01 18:43:57.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11310','418','2','10915','2.99','2005-08-02 02:05:04.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11311','418','1','11270','2.99','2005-08-02 14:18:07.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11312','418','2','11322','3.99','2005-08-02 16:23:17.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11313','418','2','11409','1.99','2005-08-02 19:26:51.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11314','418','1','11650','4.99','2005-08-17 05:00:03.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11315','418','1','11769','2.99','2005-08-17 10:04:49.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11316','418','1','11910','0.99','2005-08-17 15:44:37.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11317','418','2','13312','0.99','2005-08-19 19:09:14.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11318','418','1','13537','2.99','2005-08-20 03:39:15.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11319','418','1','13970','0.99','2005-08-20 18:43:34.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11320','418','1','14484','0.99','2005-08-21 13:47:29.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11321','418','1','14836','4.99','2005-08-22 01:52:26.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11322','418','2','14860','2.99','2005-08-22 02:47:07.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11323','418','1','15466','4.99','2005-08-23 01:16:55.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11324','418','2','15957','5.99','2005-08-23 19:21:22.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11325','419','1','62','2.99','2005-05-25 09:18:52.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11326','419','2','2793','2.99','2005-06-19 18:52:37.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11327','419','1','3596','0.99','2005-07-06 05:03:11.000','2006-02-15 22:18:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11328','419','1','3694','4.99','2005-07-06 10:01:23.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11329','419','1','4224','0.99','2005-07-07 12:24:21.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11330','419','2','5333','5.99','2005-07-09 16:59:38.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11331','419','2','5863','0.99','2005-07-10 18:25:23.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11332','419','1','5900','3.99','2005-07-10 20:21:54.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11333','419','2','5933','0.99','2005-07-10 22:06:48.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11334','419','2','6173','0.99','2005-07-11 10:33:11.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11335','419','2','6587','3.99','2005-07-12 06:56:26.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11336','419','1','7362','4.99','2005-07-27 14:58:27.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11337','419','1','7619','2.99','2005-07-28 00:25:41.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11338','419','1','7796','4.99','2005-07-28 07:39:39.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11339','419','1','10150','2.99','2005-07-31 22:22:00.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11340','419','1','10372','2.99','2005-08-01 06:23:48.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11341','419','2','11025','4.99','2005-08-02 05:39:12.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11342','419','1','11313','2.99','2005-08-02 16:02:51.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11343','419','2','11323','2.99','2005-08-02 16:29:57.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11344','419','1','11425','2.99','2005-08-02 19:58:48.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11345','419','2','11689','6.99','2005-08-17 06:42:08.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11346','419','1','12460','7.99','2005-08-18 11:25:13.000','2006-02-15 22:18:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11347','419','1','12720','5.99','2005-08-18 21:28:42.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11348','419','2','14308','0.99','2005-08-21 07:43:21.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11349','419','2','15779','4.99','2005-08-23 13:33:46.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11350','420','2','744','4.99','2005-05-29 09:13:08.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11351','420','2','2672','3.99','2005-06-19 11:42:04.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11352','420','1','2698','0.99','2005-06-19 13:29:11.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11353','420','1','2726','0.99','2005-06-19 15:02:20.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11354','420','1','4176','4.99','2005-07-07 10:03:34.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11355','420','2','5081','4.99','2005-07-09 05:25:20.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11356','420','1','5168','4.99','2005-07-09 09:20:01.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11357','420','2','5911','0.99','2005-07-10 20:51:42.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11358','420','2','6086','3.99','2005-07-11 05:29:03.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11359','420','2','6096','4.99','2005-07-11 06:18:04.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11360','420','2','6582','4.99','2005-07-12 06:28:12.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11361','420','1','6588','4.99','2005-07-12 06:57:40.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11362','420','2','7081','2.99','2005-07-27 04:25:59.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11363','420','2','8485','0.99','2005-07-29 08:53:09.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11364','420','1','9362','0.99','2005-07-30 18:44:16.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11365','420','2','10291','4.99','2005-08-01 03:39:57.000','2006-02-15 22:18:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11366','420','2','10601','10.99','2005-08-01 14:25:40.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11367','420','1','10766','4.99','2005-08-01 20:36:29.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11368','420','2','11236','5.99','2005-08-02 13:17:21.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11369','420','2','14525','0.99','2005-08-21 15:06:49.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11370','420','2','15597','0.99','2005-08-23 06:21:20.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11371','421','1','507','0.99','2005-05-28 02:31:19.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11372','421','1','931','0.99','2005-05-30 12:53:01.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11373','421','1','1693','4.99','2005-06-16 12:39:51.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11374','421','2','2407','2.99','2005-06-18 16:50:41.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11375','421','1','3170','4.99','2005-06-20 22:02:54.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11376','421','1','3491','7.99','2005-07-05 23:41:08.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11377','421','2','3703','5.99','2005-07-06 10:15:26.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11378','421','1','3988','8.99','2005-07-06 23:30:42.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11379','421','2','4456','5.99','2005-07-07 23:45:21.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11380','421','1','6220','0.99','2005-07-11 13:22:06.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11381','421','2','6960','3.99','2005-07-27 00:08:33.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11382','421','2','7449','4.99','2005-07-27 18:17:41.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11383','421','2','8025','2.99','2005-07-28 16:03:27.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11384','421','1','8268','4.99','2005-07-29 01:23:23.000','2006-02-15 22:18:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11385','421','1','8725','4.99','2005-07-29 18:08:42.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11386','421','2','9377','4.99','2005-07-30 19:12:18.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11387','421','2','9875','0.99','2005-07-31 13:37:41.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11388','421','1','10200','4.99','2005-08-01 00:39:05.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11389','421','2','11089','2.99','2005-08-02 07:52:20.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11390','421','1','11263','4.99','2005-08-02 14:02:19.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11391','421','1','11523','3.99','2005-08-17 00:10:10.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11392','421','1','12279','4.99','2005-08-18 04:47:30.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11393','421','2','13461','9.99','2005-08-20 00:49:04.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11394','421','1','13872','4.99','2005-08-20 15:10:30.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11395','421','1','14742','4.99','2005-08-21 22:39:01.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11396','421','1','14887','3.99','2005-08-22 04:04:31.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11397','421','2','15710','0.99','2006-02-14 15:16:03.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11398','422','1','398','0.99','2005-05-27 12:44:03.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11399','422','1','1846','0.99','2005-06-17 00:02:44.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11400','422','1','1897','4.99','2005-06-17 04:26:23.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11401','422','2','2747','2.99','2005-06-19 16:22:07.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11402','422','1','2778','5.99','2005-06-19 18:18:12.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11403','422','1','3553','4.99','2005-07-06 02:35:41.000','2006-02-15 22:18:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11404','422','2','4463','2.99','2005-07-08 00:04:59.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11405','422','2','4504','0.99','2005-07-08 02:19:27.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11406','422','1','5784','1.99','2005-07-10 14:03:28.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11407','422','2','7827','0.99','2005-07-28 08:37:22.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11408','422','2','8206','4.99','2005-07-28 23:20:31.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11409','422','2','9541','4.99','2005-07-31 01:40:14.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11410','422','2','10833','6.99','2005-08-01 23:25:55.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11411','422','2','11325','6.99','2005-08-02 16:33:11.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11412','422','1','11658','2.99','2005-08-17 05:19:17.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11413','422','1','11842','4.99','2005-08-17 13:13:37.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11414','422','1','12907','9.99','2005-08-19 04:16:13.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11415','422','2','13216','1.99','2005-08-19 15:36:05.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11416','422','2','13625','1.99','2005-08-20 06:52:03.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11417','422','2','13709','0.99','2005-08-20 09:34:51.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11418','422','2','13722','4.99','2005-08-20 10:03:45.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11419','422','1','14861','4.99','2005-08-22 02:48:05.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11420','422','1','15272','3.99','2005-08-22 18:49:40.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11421','422','1','15273','2.99','2005-08-22 18:53:28.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11422','422','2','15316','2.99','2005-08-22 20:07:03.000','2006-02-15 22:18:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11423','422','2','15441','2.99','2006-02-14 15:16:03.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11424','423','1','1504','3.99','2005-06-15 22:08:06.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11425','423','2','1827','0.99','2005-06-16 21:54:40.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11426','423','1','2600','6.99','2005-06-19 06:07:25.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11427','423','2','2758','6.99','2005-06-19 17:04:35.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11428','423','1','3072','8.99','2005-06-20 14:21:31.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11429','423','2','4105','0.99','2005-07-07 06:31:00.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11430','423','1','4250','0.99','2005-07-07 14:08:11.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11431','423','1','4679','2.99','2005-07-08 10:33:14.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11432','423','1','6506','1.99','2005-07-12 03:28:22.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11433','423','1','7016','5.99','2005-07-27 02:15:16.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11434','423','2','7141','2.99','2005-07-27 06:55:27.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11435','423','1','7157','4.99','2005-07-27 07:20:28.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11436','423','1','7290','0.99','2005-07-27 12:28:45.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11437','423','2','7539','9.99','2005-07-27 21:39:42.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11438','423','1','7849','9.99','2005-07-28 09:30:02.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11439','423','2','8082','3.99','2005-07-28 18:08:02.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11440','423','2','8595','9.99','2005-07-29 12:47:43.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11441','423','2','9026','2.99','2005-07-30 05:55:31.000','2006-02-15 22:18:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11442','423','1','10488','2.99','2005-08-01 10:27:27.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11443','423','1','11091','2.99','2005-08-02 07:56:41.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11444','423','2','11514','4.99','2005-08-16 23:53:10.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11445','423','2','12806','4.99','2005-08-19 00:37:26.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11446','423','2','14191','6.99','2005-08-21 03:35:58.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11447','423','2','14902','4.99','2005-08-22 04:31:50.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11448','423','1','15380','0.99','2005-08-22 22:28:15.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11449','423','1','15755','4.99','2005-08-23 12:46:38.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11450','424','2','403','0.99','2005-05-27 13:28:52.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11451','424','2','3044','4.99','2005-06-20 12:38:49.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11452','424','1','3166','6.99','2005-06-20 21:32:32.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11453','424','2','3404','0.99','2005-06-21 15:57:52.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11454','424','2','3746','0.99','2005-07-06 12:10:51.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11455','424','2','4512','0.99','2005-07-08 02:38:56.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11456','424','2','4559','0.99','2005-07-08 04:56:49.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11457','424','2','4696','5.99','2005-07-08 11:12:27.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11458','424','1','5568','0.99','2005-07-10 03:36:56.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11459','424','1','5611','3.99','2005-07-10 05:13:43.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11460','424','1','6589','2.99','2005-07-12 07:06:29.000','2006-02-15 22:18:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11461','424','1','7594','2.99','2005-07-27 23:30:41.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11462','424','2','8194','2.99','2005-07-28 22:51:44.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11463','424','1','8918','4.99','2005-07-30 01:56:22.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11464','424','2','8964','1.99','2005-07-30 03:49:35.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11465','424','2','8999','2.99','2005-07-30 04:55:46.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11466','424','1','9471','4.99','2005-07-30 23:02:36.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11467','424','1','9516','8.99','2005-07-31 00:40:58.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11468','424','2','9878','4.99','2005-07-31 13:42:02.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11469','424','1','10017','6.99','2005-07-31 18:13:22.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11470','424','2','10369','4.99','2005-08-01 06:13:44.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11471','424','1','10866','2.99','2005-08-02 00:22:49.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11472','424','2','11374','2.99','2005-08-02 18:14:54.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11473','424','2','11562','6.99','2005-08-17 01:23:39.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11474','424','2','11833','2.99','2005-08-17 13:00:33.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11475','424','2','12729','0.99','2005-08-18 21:52:59.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11476','424','2','13793','3.99','2005-08-20 12:22:04.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11477','424','2','15113','0.99','2005-08-22 12:23:59.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11478','424','2','15941','9.99','2005-08-23 18:46:44.000','2006-02-15 22:18:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11479','424','1','15094','0.99','2006-02-14 15:16:03.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11480','425','2','1098','5.99','2005-05-31 13:51:48.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11481','425','1','3276','6.99','2005-06-21 05:35:52.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11482','425','1','3807','4.99','2005-07-06 15:11:44.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11483','425','2','4361','2.99','2005-07-07 19:33:23.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11484','425','2','4362','5.99','2005-07-07 19:35:30.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11485','425','2','4483','8.99','2005-07-08 01:03:12.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11486','425','1','4659','2.99','2005-07-08 09:53:28.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11487','425','1','4884','7.99','2005-07-08 19:49:17.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11488','425','1','4939','7.99','2005-07-08 22:35:30.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11489','425','2','5363','2.99','2005-07-09 18:18:49.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11490','425','1','5371','4.99','2005-07-09 18:47:48.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11491','425','2','6318','2.99','2005-07-11 18:48:22.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11492','425','1','6603','2.99','2005-07-12 07:52:55.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11493','425','1','7249','4.99','2005-07-27 10:39:53.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11494','425','1','8974','0.99','2005-07-30 04:09:16.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11495','425','1','9170','0.99','2005-07-30 11:35:24.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11496','425','2','9682','2.99','2005-07-31 06:47:10.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11497','425','1','10121','0.99','2005-07-31 21:24:53.000','2006-02-15 22:18:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11498','425','2','10163','0.99','2005-07-31 23:12:34.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11499','425','1','10545','0.99','2005-08-01 12:37:46.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11500','425','2','13040','0.99','2005-08-19 09:04:24.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11501','425','2','14089','5.99','2005-08-20 23:59:02.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11502','425','2','14881','4.99','2005-08-22 03:47:39.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11503','425','1','15064','0.99','2005-08-22 10:41:58.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11504','425','2','15784','6.99','2005-08-23 13:46:00.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11505','425','2','16036','2.99','2005-08-23 22:12:44.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11506','426','2','604','0.99','2005-05-28 14:37:07.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11507','426','1','1709','6.99','2005-06-16 14:10:15.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11508','426','1','1842','7.99','2005-06-16 23:45:59.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11509','426','1','2204','2.99','2005-06-18 02:11:38.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11510','426','1','2804','0.99','2005-06-19 19:24:54.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11511','426','1','3243','0.99','2005-06-21 03:00:11.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11512','426','2','4114','2.99','2005-07-07 06:51:12.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11513','426','2','4398','4.99','2005-07-07 21:18:44.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11514','426','1','4900','4.99','2005-07-08 20:38:06.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11515','426','1','5725','3.99','2005-07-10 11:21:21.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11516','426','1','7495','4.99','2005-07-27 20:01:20.000','2006-02-15 22:18:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11517','426','1','7527','10.99','2005-07-27 21:14:28.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11518','426','1','7711','4.99','2005-07-28 04:26:42.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11519','426','1','7789','5.99','2005-07-28 07:22:07.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11520','426','1','9185','5.99','2005-07-30 12:10:40.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11521','426','2','9247','4.99','2005-07-30 14:13:56.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11522','426','2','10172','10.99','2005-07-31 23:29:51.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11523','426','1','10505','1.99','2005-08-01 11:13:59.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11524','426','2','11237','0.99','2005-08-02 13:24:01.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11525','426','2','11876','0.99','2005-08-17 14:18:21.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11526','426','2','11938','6.99','2005-08-17 16:54:54.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11527','426','2','12548','5.99','2005-08-18 14:35:26.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11528','426','2','12707','4.99','2005-08-18 20:52:02.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11529','426','1','12822','4.99','2005-08-19 01:15:24.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11530','426','2','13834','2.99','2005-08-20 14:03:08.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11531','426','2','14151','6.99','2005-08-21 02:23:25.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11532','426','2','14826','2.99','2005-08-22 01:32:14.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11533','427','2','82','6.99','2005-05-25 12:17:46.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11534','427','1','1342','5.99','2005-06-15 12:26:21.000','2006-02-15 22:18:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11535','427','2','1628','3.99','2005-06-16 07:52:55.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11536','427','1','1648','5.99','2005-06-16 09:17:07.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11537','427','1','1857','1.99','2005-06-17 01:12:58.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11538','427','2','2466','0.99','2005-06-18 20:18:42.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11539','427','1','4793','3.99','2005-07-08 16:30:01.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11540','427','2','5476','2.99','2005-07-09 23:37:09.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11541','427','2','5586','5.99','2005-07-10 04:17:06.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11542','427','1','6423','6.99','2005-07-11 23:47:31.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11543','427','1','6509','2.99','2005-07-12 03:35:01.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11544','427','2','6938','7.99','2005-07-26 23:16:04.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11545','427','2','8182','3.99','2005-07-28 22:19:12.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11546','427','1','8531','5.99','2005-07-29 10:26:15.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11547','427','2','8658','5.99','2005-07-29 15:16:37.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11548','427','2','9978','2.99','2005-07-31 16:59:51.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11549','427','1','10417','4.99','2005-08-01 08:10:36.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11550','427','1','10464','5.99','2005-08-01 09:43:14.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11551','427','2','10560','4.99','2005-08-01 13:04:57.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11552','427','1','11024','5.99','2005-08-02 05:38:31.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11553','427','1','13720','1.99','2005-08-20 10:01:39.000','2006-02-15 22:18:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11554','427','2','14201','6.99','2005-08-21 03:51:34.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11555','427','1','14287','3.99','2005-08-21 06:53:59.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11556','427','1','15330','3.99','2005-08-22 20:35:30.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11557','428','2','634','4.99','2005-05-28 17:40:35.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11558','428','1','1227','3.99','2005-06-15 03:50:03.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11559','428','2','1471','2.99','2005-06-15 20:53:26.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11560','428','1','1601','3.99','2005-06-16 06:11:13.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11561','428','1','2677','2.99','2005-06-19 12:01:59.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11562','428','2','3377','0.99','2005-06-21 13:51:12.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11563','428','1','3702','2.99','2005-07-06 10:13:56.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11564','428','1','3925','5.99','2005-07-06 20:41:44.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11565','428','1','4151','0.99','2005-07-07 08:49:02.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11566','428','1','5373','4.99','2005-07-09 18:48:57.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11567','428','1','6735','5.99','2005-07-12 14:08:20.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11568','428','1','7823','6.99','2005-07-28 08:32:53.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11569','428','1','8155','2.99','2005-07-28 20:57:06.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11570','428','2','8387','4.99','2005-07-29 05:47:27.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11571','428','2','8528','4.99','2005-07-29 10:24:22.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11572','428','1','9904','5.99','2005-07-31 14:34:17.000','2006-02-15 22:18:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11573','428','2','9982','2.99','2005-07-31 17:09:02.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11574','428','2','10577','4.99','2005-08-01 13:46:38.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11575','428','2','10888','2.99','2005-08-02 00:52:45.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11576','428','2','11536','0.99','2005-08-17 00:40:03.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11577','429','2','150','5.99','2005-05-26 00:28:39.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11578','429','2','290','2.99','2005-05-26 20:08:33.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11579','429','2','601','7.99','2005-05-28 14:08:22.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11580','429','2','799','4.99','2005-05-29 17:24:48.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11581','429','2','844','4.99','2005-05-30 00:58:20.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11582','429','2','1781','5.99','2005-06-16 19:20:24.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11583','429','2','1798','2.99','2005-06-16 20:16:15.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11584','429','2','1916','7.99','2005-06-17 05:29:59.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11585','429','1','3409','2.99','2005-06-21 16:17:38.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11586','429','2','5868','4.99','2005-07-10 18:39:16.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11587','429','2','6196','7.99','2005-07-11 12:05:46.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11588','429','2','6886','6.99','2005-07-12 20:58:04.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11589','429','1','6977','6.99','2005-07-27 00:40:50.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11590','429','2','7352','4.99','2005-07-27 14:38:29.000','2006-02-15 22:18:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11591','429','2','8136','1.99','2005-07-28 20:05:48.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11592','429','2','8143','2.99','2005-07-28 20:23:11.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11593','429','2','8175','7.99','2005-07-28 21:38:16.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11594','429','1','9849','0.99','2005-07-31 12:44:34.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11595','429','1','12259','2.99','2005-08-18 04:14:35.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11596','429','1','12953','4.99','2005-08-19 06:04:07.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11597','429','2','14495','4.99','2005-08-21 14:04:39.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11598','430','2','30','2.99','2005-05-25 04:01:32.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11599','430','1','364','4.99','2005-05-27 07:20:12.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11600','430','2','1207','0.99','2005-06-15 02:27:08.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11601','430','1','1274','2.99','2005-06-15 07:52:52.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11602','430','1','1538','2.99','2005-06-16 01:05:50.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11603','430','1','1759','6.99','2005-06-16 17:46:37.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11604','430','2','2892','0.99','2005-06-20 02:06:39.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11605','430','2','3153','0.99','2005-06-20 20:44:15.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11606','430','1','5002','4.99','2005-07-09 01:17:08.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11607','430','1','5217','5.99','2005-07-09 11:56:50.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11608','430','2','5879','6.99','2005-07-10 19:12:47.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11609','430','1','5958','6.99','2005-07-10 23:31:51.000','2006-02-15 22:18:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11610','430','2','6043','0.99','2005-07-11 03:18:10.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11611','430','1','8560','4.99','2005-07-29 11:27:27.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11612','430','2','9450','2.99','2005-07-30 22:04:04.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11613','430','1','12723','0.99','2005-08-18 21:34:16.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11614','430','1','12965','4.99','2005-08-19 06:33:00.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11615','430','1','13007','0.99','2005-08-19 07:47:43.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11616','430','2','13452','0.99','2005-08-20 00:20:07.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11617','430','2','13454','2.99','2005-08-20 00:30:52.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11618','430','1','14058','5.99','2005-08-20 22:24:35.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11619','430','1','15031','4.99','2005-08-22 09:11:48.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11620','431','2','1126','2.99','2005-05-31 17:27:45.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11621','431','2','1561','2.99','2005-06-16 02:41:30.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11622','431','1','2096','4.99','2005-06-17 18:33:04.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11623','431','1','2269','3.99','2005-06-18 06:20:54.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11624','431','2','2281','4.99','2005-06-18 06:47:29.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11625','431','2','2761','2.99','2005-06-19 17:22:17.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11626','431','2','3304','6.99','2005-06-21 07:43:40.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11627','431','2','3369','8.99','2005-06-21 13:20:31.000','2006-02-15 22:18:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11628','431','1','4144','3.99','2005-07-07 08:25:44.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11629','431','1','4801','2.99','2005-07-08 16:51:36.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11630','431','1','4863','0.99','2005-07-08 19:03:15.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11631','431','2','7978','4.99','2005-07-28 14:16:14.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11632','431','2','8810','4.99','2005-07-29 21:45:19.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11633','431','2','10508','0.99','2005-08-01 11:23:27.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11634','431','1','10527','4.99','2005-08-01 11:55:54.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11635','431','2','10959','6.99','2005-08-02 03:39:39.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11636','431','2','11538','2.99','2005-08-17 00:44:04.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11637','431','1','12273','6.99','2005-08-18 04:40:50.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11638','431','2','13153','1.99','2005-08-19 13:09:47.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11639','431','1','13784','4.99','2005-08-20 12:11:28.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11640','431','1','15809','2.99','2005-08-23 14:42:07.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11641','431','1','15960','2.99','2005-08-23 19:35:42.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11642','431','2','13587','2.99','2006-02-14 15:16:03.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11643','432','2','326','7.99','2005-05-27 01:10:11.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11644','432','1','550','5.99','2005-05-28 07:39:16.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11645','432','1','897','8.99','2005-05-30 09:10:01.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11646','432','2','1180','5.99','2005-06-15 00:39:01.000','2006-02-15 22:18:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11647','432','2','1597','2.99','2005-06-16 05:47:03.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11648','432','2','3194','4.99','2005-06-20 23:59:57.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11649','432','1','4965','5.99','2005-07-08 23:46:57.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11650','432','1','4973','4.99','2005-07-08 23:58:18.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11651','432','1','5204','2.99','2005-07-09 10:54:14.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11652','432','1','5322','6.99','2005-07-09 16:28:13.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11653','432','1','5944','4.99','2005-07-10 22:51:44.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11654','432','1','5990','4.99','2005-07-11 01:03:14.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11655','432','2','7326','4.99','2005-07-27 13:50:40.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11656','432','2','7681','0.99','2005-07-28 03:07:09.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11657','432','2','8079','4.99','2005-07-28 17:58:36.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11658','432','2','8094','6.99','2005-07-28 18:30:28.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11659','432','2','9916','4.99','2005-07-31 14:54:52.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11660','432','2','9984','2.99','2005-07-31 17:12:23.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11661','432','2','11870','0.99','2005-08-17 14:11:28.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11662','432','1','12767','6.99','2005-08-18 23:25:49.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11663','432','1','14027','2.99','2005-08-20 21:21:34.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11664','432','1','15523','4.99','2005-08-23 03:32:36.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11665','432','1','15713','6.99','2005-08-23 10:56:15.000','2006-02-15 22:18:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11666','433','2','146','8.99','2005-05-26 00:07:11.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11667','433','1','691','10.99','2005-05-29 01:01:26.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11668','433','2','4087','6.99','2005-07-07 05:30:56.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11669','433','2','4158','0.99','2005-07-07 09:05:42.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11670','433','2','4988','7.99','2005-07-09 00:46:14.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11671','433','2','5457','0.99','2005-07-09 22:33:14.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11672','433','1','5969','8.99','2005-07-11 00:03:22.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11673','433','1','6765','5.99','2005-07-12 15:30:47.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11674','433','1','6848','0.99','2005-07-12 19:24:07.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11675','433','1','6850','4.99','2005-07-12 19:30:42.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11676','433','1','7821','4.99','2005-07-28 08:31:23.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11677','433','2','7907','4.99','2005-07-28 11:32:00.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11678','433','1','8414','5.99','2005-07-29 06:48:35.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11679','433','1','8713','2.99','2005-07-29 17:31:19.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11680','433','2','9161','4.99','2005-07-30 11:19:18.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11681','433','1','9294','3.99','2005-07-30 16:14:37.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11682','433','1','10663','4.99','2005-08-01 16:51:08.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11683','433','1','11664','2.99','2005-08-17 05:35:52.000','2006-02-15 22:18:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11684','433','2','12669','6.99','2005-08-18 19:17:47.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11685','433','2','13273','4.99','2005-08-19 17:49:13.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11686','433','1','13801','4.99','2005-08-20 12:40:53.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11687','433','2','14523','4.99','2005-08-21 15:03:45.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11688','433','1','14559','6.99','2005-08-21 16:11:35.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11689','433','2','15476','4.99','2005-08-23 01:45:07.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11690','433','1','15502','5.99','2005-08-23 02:40:04.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11691','434','2','508','5.99','2005-05-28 02:40:50.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11692','434','1','1225','0.99','2005-06-15 03:45:35.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11693','434','2','1584','5.99','2005-06-16 04:50:50.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11694','434','2','2415','7.99','2005-06-18 17:02:42.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11695','434','1','2430','3.99','2005-06-18 17:51:46.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11696','434','1','2494','3.99','2005-06-18 22:15:09.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11697','434','1','3014','2.99','2005-06-20 10:45:20.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11698','434','2','3037','2.99','2005-06-20 12:28:03.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11699','434','1','4414','2.99','2005-07-07 22:00:21.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11700','434','2','4654','6.99','2005-07-08 09:48:03.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11701','434','2','4960','10.99','2005-07-08 23:27:16.000','2006-02-15 22:18:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11702','434','2','5464','2.99','2005-07-09 22:58:14.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11703','434','2','6972','0.99','2005-07-27 00:31:25.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11704','434','1','7260','6.99','2005-07-27 11:09:28.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11705','434','2','7479','2.99','2005-07-27 19:18:17.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11706','434','1','8205','0.99','2005-07-28 23:18:48.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11707','434','1','9350','4.99','2005-07-30 18:24:30.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11708','434','1','11242','3.99','2005-08-02 13:32:00.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11709','434','1','11867','2.99','2005-08-17 14:04:28.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11710','434','2','12030','2.99','2005-08-17 20:10:48.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11711','434','2','12146','2.99','2005-08-18 00:10:04.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11712','434','2','12624','7.99','2005-08-18 17:35:00.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11713','434','2','13359','9.99','2005-08-19 21:04:49.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11714','434','1','13383','7.99','2005-08-19 21:38:44.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11715','434','2','14553','4.99','2005-08-21 15:59:40.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11716','434','2','15016','3.99','2005-08-22 08:47:35.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11717','434','2','15385','4.99','2005-08-22 22:37:34.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11718','435','1','757','7.99','2005-05-29 10:29:47.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11719','435','1','806','4.99','2005-05-29 18:31:30.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11720','435','2','1443','0.99','2005-06-15 18:57:51.000','2006-02-15 22:18:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11721','435','1','2984','0.99','2005-06-20 08:43:44.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11722','435','1','3690','0.99','2005-07-06 09:46:03.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11723','435','1','3918','8.99','2005-07-06 20:26:15.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11724','435','2','5220','4.99','2005-07-09 11:59:04.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11725','435','2','6051','4.99','2005-07-11 03:46:41.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11726','435','1','6935','2.99','2005-07-26 23:13:10.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11727','435','1','8386','5.99','2005-07-29 05:45:30.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11728','435','2','8891','4.99','2005-07-30 00:46:55.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11729','435','2','9269','0.99','2005-07-30 15:02:33.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11730','435','1','9655','3.99','2005-07-31 05:57:54.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11731','435','2','9829','4.99','2005-07-31 11:58:38.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11732','435','1','10998','6.99','2005-08-02 04:50:55.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11733','435','1','11041','2.99','2005-08-02 06:03:53.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11734','435','1','11786','3.99','2005-08-17 10:57:40.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11735','435','1','11796','0.99','2005-08-17 11:16:47.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11736','435','2','12046','0.99','2005-08-17 20:47:46.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11737','435','1','12741','4.99','2005-08-18 22:17:05.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11738','435','2','13208','0.99','2005-08-19 15:18:55.000','2006-02-15 22:18:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11739','435','1','14696','4.99','2005-08-21 20:48:05.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11740','435','1','14765','1.99','2005-08-21 23:40:28.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11741','435','1','14850','0.99','2005-08-22 02:16:55.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11742','435','1','15136','2.99','2005-08-22 13:19:25.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11743','436','1','45','7.99','2005-05-25 05:59:39.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11744','436','1','256','3.99','2005-05-26 15:20:58.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11745','436','1','848','5.99','2005-05-30 01:19:53.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11746','436','1','2291','9.99','2005-06-18 07:36:46.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11747','436','2','3851','1.99','2005-07-06 16:54:12.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11748','436','2','3944','2.99','2005-07-06 21:34:11.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11749','436','2','4643','0.99','2005-07-08 09:13:56.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11750','436','2','4751','2.99','2005-07-08 14:07:52.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11751','436','1','4782','4.99','2005-07-08 16:08:51.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11752','436','1','5959','0.99','2005-07-10 23:35:36.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11753','436','1','7593','4.99','2005-07-27 23:28:47.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11754','436','2','8027','5.99','2005-07-28 16:09:57.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11755','436','2','8097','9.99','2005-07-28 18:32:49.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11756','436','1','9345','9.99','2005-07-30 18:13:51.000','2006-02-15 22:18:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11757','436','1','9539','0.99','2005-07-31 01:36:19.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11758','436','1','9638','5.99','2005-07-31 05:30:27.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11759','436','2','10216','3.99','2005-08-01 01:06:27.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11760','436','2','11160','0.99','2005-08-02 10:05:30.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11761','436','1','11580','2.99','2005-08-17 01:59:07.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11762','436','2','11615','4.99','2005-08-17 03:54:35.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11763','436','2','11896','5.99','2005-08-17 15:19:54.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11764','436','2','12297','0.99','2005-08-18 05:19:57.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11765','436','2','12429','6.99','2005-08-18 10:26:46.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11766','436','2','13099','9.99','2005-08-19 10:55:19.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11767','436','2','13382','7.99','2005-08-19 21:38:41.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11768','436','1','13533','3.99','2005-08-20 03:30:00.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11769','436','1','13760','5.99','2005-08-20 11:26:33.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11770','436','1','13814','0.99','2005-08-20 13:07:23.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11771','436','2','13826','2.99','2005-08-20 13:46:38.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11772','436','2','15766','4.99','2005-08-23 13:10:16.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11773','437','1','192','2.99','2005-05-26 06:20:37.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11774','437','2','656','4.99','2005-05-28 20:18:24.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11775','437','1','666','5.99','2005-05-28 21:48:51.000','2006-02-15 22:18:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11776','437','2','2239','5.99','2005-06-18 04:23:54.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11777','437','1','2792','2.99','2005-06-19 18:52:25.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11778','437','2','3265','2.99','2005-06-21 04:23:13.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11779','437','1','3747','4.99','2005-07-06 12:11:14.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11780','437','2','4765','4.99','2005-07-08 15:08:45.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11781','437','2','5085','4.99','2005-07-09 05:36:49.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11782','437','1','5167','1.99','2005-07-09 09:18:43.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11783','437','2','5744','2.99','2005-07-10 12:08:33.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11784','437','2','5864','6.99','2005-07-10 18:29:57.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11785','437','2','8215','2.99','2005-07-28 23:43:56.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11786','437','2','9172','2.99','2005-07-30 11:36:38.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11787','437','2','9333','2.99','2005-07-30 17:53:45.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11788','437','2','10009','8.99','2005-07-31 18:00:28.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11789','437','2','10249','0.99','2005-08-01 02:35:39.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11790','437','2','11417','3.99','2005-08-02 19:44:46.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11791','437','1','12205','8.99','2005-08-18 02:21:08.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11792','437','2','13838','7.99','2005-08-20 14:22:46.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11793','437','1','13839','2.99','2005-08-20 14:23:16.000','2006-02-15 22:18:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11794','437','1','13905','1.99','2005-08-20 16:12:48.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11795','437','1','14993','1.99','2005-08-22 07:52:18.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11796','438','2','23','4.99','2005-05-25 02:40:21.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11797','438','2','1036','0.99','2005-05-31 05:21:10.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11798','438','1','1138','6.99','2005-05-31 19:30:27.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11799','438','1','1431','4.99','2005-06-15 18:26:29.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11800','438','2','1779','0.99','2005-06-16 18:55:11.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11801','438','2','2206','0.99','2005-06-18 02:14:45.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11802','438','1','2591','4.99','2005-06-19 05:32:22.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11803','438','1','3315','4.99','2005-06-21 08:17:04.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11804','438','2','3368','0.99','2005-06-21 13:18:38.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11805','438','1','4355','4.99','2005-07-07 19:21:19.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11806','438','2','4446','2.99','2005-07-07 23:12:16.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11807','438','2','5316','4.99','2005-07-09 16:09:42.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11808','438','2','5426','4.99','2005-07-09 21:04:47.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11809','438','1','5870','2.99','2005-07-10 18:40:25.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11810','438','2','6138','4.99','2005-07-11 08:36:04.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11811','438','1','6563','3.99','2005-07-12 05:34:09.000','2006-02-15 22:18:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11812','438','2','6615','4.99','2005-07-12 08:36:22.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11813','438','2','7357','1.99','2005-07-27 14:48:31.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11814','438','2','7374','8.99','2005-07-27 15:20:57.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11815','438','1','7598','0.99','2005-07-27 23:36:01.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11816','438','2','8547','2.99','2005-07-29 11:10:15.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11817','438','1','9082','3.99','2005-07-30 08:11:22.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11818','438','2','9782','0.99','2005-07-31 10:14:26.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11819','438','1','10512','6.99','2005-08-01 11:36:19.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11820','438','1','10607','4.99','2005-08-01 14:44:43.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11821','438','2','11644','4.99','2005-08-17 04:49:46.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11822','438','2','11933','4.99','2005-08-17 16:38:20.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11823','438','2','12654','0.99','2005-08-18 18:56:40.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11824','438','2','13319','7.99','2005-08-19 19:35:13.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11825','438','1','13414','4.99','2005-08-19 22:47:34.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11826','438','2','14582','5.99','2005-08-21 17:08:33.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11827','438','2','15893','5.99','2005-08-23 17:02:00.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11828','438','2','12524','0.99','2006-02-14 15:16:03.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11829','439','1','126','2.99','2005-05-25 21:07:59.000','2006-02-15 22:18:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11830','439','2','367','0.99','2005-05-27 07:37:02.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11831','439','1','786','9.99','2005-05-29 15:17:28.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11832','439','1','1264','4.99','2005-06-15 06:59:39.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11833','439','2','1557','0.99','2005-06-16 02:28:35.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11834','439','2','2097','4.99','2005-06-17 18:40:04.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11835','439','1','2621','2.99','2005-06-19 08:07:31.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11836','439','1','2992','2.99','2005-06-20 09:11:51.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11837','439','1','3294','6.99','2005-06-21 07:03:23.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11838','439','2','3774','5.99','2005-07-06 13:25:07.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11839','439','1','4528','2.99','2005-07-08 03:24:54.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11840','439','1','4813','4.99','2005-07-08 17:09:56.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11841','439','2','5801','5.99','2005-07-10 14:59:05.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11842','439','1','5893','2.99','2005-07-10 20:05:30.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11843','439','1','6577','2.99','2005-07-12 06:15:05.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11844','439','2','6672','2.99','2005-07-12 11:49:16.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11845','439','1','8343','2.99','2005-07-29 04:45:16.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11846','439','1','8624','2.99','2005-07-29 13:55:36.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11847','439','2','8703','2.99','2005-07-29 17:12:44.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11848','439','1','9275','0.99','2005-07-30 15:09:15.000','2006-02-15 22:18:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11849','439','1','9322','6.99','2005-07-30 17:21:39.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11850','439','2','10744','1.99','2005-08-01 19:56:49.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11851','439','1','10905','2.99','2005-08-02 01:45:59.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11852','439','2','11042','6.99','2005-08-02 06:04:33.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11853','439','2','11544','5.99','2005-08-17 00:55:07.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11854','439','1','11989','2.99','2005-08-17 18:23:58.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11855','439','1','12621','2.99','2005-08-18 17:31:36.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11856','439','2','12755','5.99','2005-08-18 22:38:47.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11857','439','2','12826','3.99','2005-08-19 01:25:11.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11858','439','2','13358','4.99','2005-08-19 21:04:20.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11859','439','2','14730','5.99','2005-08-21 22:21:11.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11860','439','2','15044','9.99','2005-08-22 09:51:54.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11861','439','2','15162','4.99','2005-08-22 14:41:05.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11862','439','2','15653','4.99','2005-08-23 08:34:42.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11863','439','1','15818','1.99','2005-08-23 14:59:58.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11864','439','1','16018','0.99','2005-08-23 21:27:35.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11865','440','2','957','4.99','2005-05-30 17:53:29.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11866','440','1','4301','2.99','2005-07-07 16:37:23.000','2006-02-15 22:18:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11867','440','1','4946','7.99','2005-07-08 22:46:23.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11868','440','2','5423','2.99','2005-07-09 20:56:48.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11869','440','2','5594','0.99','2005-07-10 04:33:36.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11870','440','2','5731','2.99','2005-07-10 11:31:52.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11871','440','2','5782','0.99','2005-07-10 13:52:56.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11872','440','2','7585','4.99','2005-07-27 23:18:22.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11873','440','1','7614','0.99','2005-07-28 00:14:38.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11874','440','1','7806','9.99','2005-07-28 07:58:17.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11875','440','1','9001','4.99','2005-07-30 04:59:41.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11876','440','1','9195','2.99','2005-07-30 12:29:43.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11877','440','1','9547','4.99','2005-07-31 01:52:34.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11878','440','2','12403','6.99','2005-08-18 09:31:05.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11879','440','1','12850','0.99','2005-08-19 02:08:06.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11880','440','2','13384','4.99','2005-08-19 21:38:51.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11881','440','2','13779','2.99','2005-08-20 12:03:54.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11882','440','1','14555','0.99','2005-08-21 16:03:02.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11883','440','2','14863','7.99','2005-08-22 02:57:04.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11884','440','2','15264','0.99','2005-08-22 18:27:38.000','2006-02-15 22:18:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11885','440','1','15925','4.99','2005-08-23 18:15:06.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11886','440','1','13106','4.99','2006-02-14 15:16:03.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11887','441','1','823','4.99','2005-05-29 21:39:37.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11888','441','1','1602','4.99','2005-06-16 06:12:40.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11889','441','2','2328','4.99','2005-06-18 10:17:21.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11890','441','2','3629','0.99','2005-07-06 06:23:22.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11891','441','2','3695','2.99','2005-07-06 10:02:08.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11892','441','1','4084','8.99','2005-07-07 05:16:00.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11893','441','2','4208','0.99','2005-07-07 11:34:22.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11894','441','2','5129','2.99','2005-07-09 07:28:33.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11895','441','1','5811','0.99','2005-07-10 15:27:04.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11896','441','2','6636','2.99','2005-07-12 09:49:46.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11897','441','1','6642','4.99','2005-07-12 10:37:52.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11898','441','1','6941','5.99','2005-07-26 23:18:49.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11899','441','2','8237','2.99','2005-07-29 00:29:56.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11900','441','1','8281','0.99','2005-07-29 01:46:00.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11901','441','1','8427','4.99','2005-07-29 07:08:36.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11902','441','1','8575','4.99','2005-07-29 11:52:47.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11903','441','2','8617','4.99','2005-07-29 13:46:14.000','2006-02-15 22:18:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11904','441','2','9644','10.99','2005-07-31 05:40:35.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11905','441','2','9854','2.99','2005-07-31 12:59:34.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11906','441','2','10139','1.99','2005-07-31 22:02:20.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11907','441','1','10846','1.99','2005-08-01 23:47:54.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11908','441','2','11247','1.99','2005-08-02 13:34:08.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11909','441','2','13483','2.99','2005-08-20 01:16:38.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11910','441','2','13739','4.99','2005-08-20 10:45:10.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11911','441','1','13932','4.99','2005-08-20 17:17:00.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11912','441','2','14796','4.99','2005-08-22 00:40:49.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11913','441','2','15070','3.99','2005-08-22 10:55:45.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11914','441','1','14878','4.99','2006-02-14 15:16:03.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11915','442','2','466','0.99','2005-05-27 20:57:07.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11916','442','2','558','6.99','2005-05-28 08:38:43.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11917','442','1','632','5.99','2005-05-28 17:37:50.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11918','442','1','1251','5.99','2005-06-15 05:58:55.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11919','442','2','1358','0.99','2005-06-15 13:28:48.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11920','442','2','1576','8.99','2005-06-16 03:54:39.000','2006-02-15 22:18:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11921','442','1','1774','2.99','2005-06-16 18:27:52.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11922','442','2','3545','4.99','2005-07-06 02:16:17.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11923','442','1','3661','2.99','2005-07-06 08:10:02.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11924','442','1','4052','5.99','2005-07-07 03:38:22.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11925','442','1','4058','2.99','2005-07-07 04:02:50.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11926','442','2','4365','2.99','2005-07-07 19:47:46.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11927','442','2','4577','3.99','2005-07-08 05:59:00.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11928','442','2','6590','4.99','2005-07-12 07:08:21.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11929','442','2','6632','2.99','2005-07-12 09:33:10.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11930','442','2','7427','2.99','2005-07-27 17:20:16.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11931','442','1','7460','0.99','2005-07-27 18:41:35.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11932','442','1','7671','2.99','2005-07-28 02:48:31.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11933','442','1','8044','2.99','2005-07-28 16:49:12.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11934','442','1','8758','4.99','2005-07-29 19:20:49.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11935','442','1','9180','4.99','2005-07-30 12:03:15.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11936','442','2','9873','5.99','2005-07-31 13:32:18.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11937','442','1','10034','2.99','2005-07-31 18:45:30.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11938','442','2','10365','6.99','2005-08-01 06:08:44.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11939','442','2','10452','0.99','2005-08-01 09:11:36.000','2006-02-15 22:18:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11940','442','1','12948','0.99','2005-08-19 05:55:14.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11941','442','2','13004','0.99','2005-08-19 07:40:08.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11942','442','1','13155','7.99','2005-08-19 13:10:23.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11943','442','2','14199','0.99','2005-08-21 03:48:43.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11944','442','1','14418','1.99','2005-08-21 11:14:26.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11945','442','1','14466','0.99','2005-08-21 13:03:13.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11946','442','2','15207','2.99','2005-08-22 16:35:25.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11947','443','2','1068','4.99','2005-05-31 09:32:15.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11948','443','1','2871','2.99','2005-06-20 00:27:49.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11949','443','2','3510','5.99','2005-07-06 00:27:41.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11950','443','2','6625','5.99','2005-07-12 09:06:40.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11951','443','1','6913','4.99','2005-07-12 22:18:12.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11952','443','2','6983','2.99','2005-07-27 00:55:03.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11953','443','1','7317','2.99','2005-07-27 13:19:41.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11954','443','1','7667','8.99','2005-07-28 02:37:22.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11955','443','1','7987','9.99','2005-07-28 14:36:52.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11956','443','2','9740','1.99','2005-07-31 09:08:03.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11957','443','1','10014','4.99','2005-07-31 18:10:56.000','2006-02-15 22:18:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11958','443','2','10081','5.99','2005-07-31 20:07:44.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11959','443','2','10360','0.99','2005-08-01 05:52:53.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11960','443','1','11449','4.99','2005-08-02 20:44:43.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11961','443','1','12415','4.99','2005-08-18 09:54:01.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11962','443','2','12857','4.99','2005-08-19 02:20:13.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11963','443','1','13489','2.99','2005-08-20 01:29:06.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11964','443','1','14561','2.99','2005-08-21 16:20:43.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11965','443','2','14611','6.99','2005-08-21 18:01:41.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11966','443','1','15182','0.99','2005-08-22 15:47:05.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11967','443','2','15393','4.99','2005-08-22 23:04:09.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11968','443','1','15519','0.99','2005-08-23 03:23:32.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11969','444','1','201','8.99','2005-05-26 07:13:45.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11970','444','1','557','0.99','2005-05-28 08:36:22.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11971','444','1','1239','0.99','2005-06-15 04:53:01.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11972','444','2','1397','3.99','2005-06-15 16:25:26.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11973','444','2','1441','1.99','2005-06-15 18:54:21.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11974','444','1','2551','4.99','2005-06-19 02:51:04.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11975','444','2','3301','7.99','2005-06-21 07:32:25.000','2006-02-15 22:18:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11976','444','2','3415','5.99','2005-06-21 16:59:49.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11977','444','2','3498','4.99','2005-07-06 00:02:08.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11978','444','1','3539','0.99','2005-07-06 01:39:08.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11979','444','2','4648','6.99','2005-07-08 09:31:27.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11980','444','1','5753','2.99','2005-07-10 12:29:43.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11981','444','2','5825','2.99','2005-07-10 16:20:30.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11982','444','2','6285','2.99','2005-07-11 16:52:07.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11983','444','2','7679','3.99','2005-07-28 02:58:39.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11984','444','2','9634','1.99','2005-07-31 05:06:02.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11985','444','1','10529','4.99','2005-08-01 12:00:02.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11986','444','1','10693','4.99','2005-08-01 18:14:14.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11987','444','2','11353','0.99','2005-08-02 17:34:45.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11988','444','2','11419','6.99','2005-08-02 19:46:38.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11989','444','1','11728','4.99','2005-08-17 08:12:26.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11990','444','1','12161','6.99','2005-08-18 00:41:46.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11991','444','2','12712','2.99','2005-08-18 21:04:13.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11992','444','2','12946','2.99','2005-08-19 05:53:34.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11993','444','1','13488','0.99','2005-08-20 01:28:42.000','2006-02-15 22:18:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11994','444','2','13559','2.99','2005-08-20 04:16:07.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11995','444','1','13924','0.99','2005-08-20 17:05:18.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11996','444','1','15249','4.99','2005-08-22 17:58:27.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11997','444','1','15557','0.99','2005-08-23 04:52:17.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11998','444','2','15815','4.99','2005-08-23 14:55:47.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('11999','445','1','481','2.99','2005-05-27 22:49:27.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12000','445','1','960','2.99','2005-05-30 18:13:23.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12001','445','1','4041','0.99','2005-07-07 03:03:33.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12002','445','1','4193','0.99','2005-07-07 10:57:21.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12003','445','2','5225','2.99','2005-07-09 12:10:16.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12004','445','1','6346','0.99','2005-07-11 20:08:34.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12005','445','2','7351','2.99','2005-07-27 14:37:36.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12006','445','2','7971','4.99','2005-07-28 14:00:47.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12007','445','1','8851','8.99','2005-07-29 23:26:19.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12008','445','2','8911','0.99','2005-07-30 01:30:57.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12009','445','2','9625','4.99','2005-07-31 04:30:48.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12010','445','1','10007','0.99','2005-07-31 17:54:58.000','2006-02-15 22:18:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12011','445','2','10334','1.99','2005-08-01 04:58:42.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12012','445','2','10341','0.99','2005-08-01 05:10:02.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12013','445','2','10936','9.99','2005-08-02 02:55:04.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12014','445','1','11383','7.99','2005-08-02 18:22:05.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12015','445','1','11868','4.99','2005-08-17 14:05:34.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12016','445','1','11877','3.99','2005-08-17 14:21:11.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12017','445','2','13586','0.99','2005-08-20 05:40:33.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12018','445','1','14612','6.99','2005-08-21 18:03:15.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12019','445','2','14673','2.99','2005-08-21 20:01:18.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12020','445','1','14866','6.99','2005-08-22 03:11:35.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12021','445','1','14955','4.99','2005-08-22 06:25:52.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12022','445','1','15123','3.99','2005-08-22 12:48:44.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12023','445','1','15791','6.99','2005-08-23 14:02:13.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12024','445','2','15906','2.99','2005-08-23 17:36:00.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12025','446','2','14','0.99','2005-05-25 00:31:15.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12026','446','1','236','0.99','2005-05-26 11:53:49.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12027','446','1','355','4.99','2005-05-27 06:15:33.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12028','446','1','2248','4.99','2005-06-18 04:59:48.000','2006-02-15 22:18:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12029','446','2','2335','3.99','2005-06-18 10:59:36.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12030','446','2','2520','6.99','2005-06-19 00:29:00.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12031','446','2','2710','0.99','2005-06-19 14:03:56.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12032','446','1','3060','2.99','2005-06-20 13:47:20.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12033','446','2','3168','0.99','2005-06-20 21:46:01.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12034','446','2','4358','4.99','2005-07-07 19:27:04.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12035','446','2','5393','4.99','2005-07-09 19:35:12.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12036','446','2','5409','2.99','2005-07-09 20:17:19.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12037','446','2','6454','0.99','2005-07-12 01:00:12.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12038','446','1','6510','4.99','2005-07-12 03:35:39.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12039','446','1','6535','0.99','2005-07-12 04:43:43.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12040','446','1','6734','6.99','2005-07-12 14:04:24.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12041','446','1','7005','5.99','2005-07-27 01:38:36.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12042','446','2','7089','0.99','2005-07-27 04:43:42.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12043','446','1','7576','4.99','2005-07-27 22:54:35.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12044','446','2','8284','6.99','2005-07-29 01:56:40.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12045','446','1','8309','4.99','2005-07-29 03:22:20.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12046','446','2','8670','4.99','2005-07-29 15:49:03.000','2006-02-15 22:18:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12047','446','2','8691','0.99','2005-07-29 16:41:23.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12048','446','2','8922','9.99','2005-07-30 02:08:25.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12049','446','1','8923','3.99','2005-07-30 02:08:49.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12050','446','1','9116','0.99','2005-07-30 09:19:41.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12051','446','1','11051','3.99','2005-08-02 06:23:39.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12052','446','2','12253','0.99','2005-08-18 04:00:50.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12053','446','2','12480','8.99','2005-08-18 12:26:43.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12054','446','1','15808','1.99','2005-08-23 14:38:37.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12055','446','2','15951','0.99','2005-08-23 19:10:32.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12056','447','1','461','2.99','2005-05-27 20:08:55.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12057','447','2','732','0.99','2005-05-29 07:32:51.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12058','447','2','1230','0.99','2005-06-15 04:04:09.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12059','447','2','1890','2.99','2005-06-17 04:06:13.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12060','447','1','2025','4.99','2005-06-17 13:04:00.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12061','447','2','2285','4.99','2005-06-18 07:00:54.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12062','447','2','4403','4.99','2005-07-07 21:29:40.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12063','447','1','4858','6.99','2005-07-08 18:53:24.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12064','447','1','5331','4.99','2005-07-09 16:54:06.000','2006-02-15 22:18:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12065','447','1','5734','0.99','2005-07-10 11:37:28.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12066','447','2','5987','2.99','2005-07-11 00:55:31.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12067','447','1','6651','0.99','2005-07-12 10:57:28.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12068','447','1','6690','1.99','2005-07-12 12:23:02.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12069','447','1','8537','8.99','2005-07-29 10:44:54.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12070','447','2','8945','4.99','2005-07-30 03:11:48.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12071','447','2','9076','5.99','2005-07-30 07:58:12.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12072','447','1','9288','6.99','2005-07-30 15:56:39.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12073','447','1','10425','2.99','2005-08-01 08:23:25.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12074','447','2','10957','5.99','2005-08-02 03:33:30.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12075','447','2','11108','0.99','2005-08-02 08:20:01.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12076','447','1','11465','5.99','2005-08-02 21:43:52.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12077','447','2','12511','0.99','2005-08-18 13:23:19.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12078','447','1','13072','2.99','2005-08-19 10:03:30.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12079','447','2','13110','0.99','2005-08-19 11:24:37.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12080','447','1','13848','4.99','2005-08-20 14:37:49.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12081','447','2','14443','5.99','2005-08-21 12:06:32.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12082','447','1','15108','2.99','2005-08-22 12:10:07.000','2006-02-15 22:18:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12083','447','1','15997','4.99','2005-08-23 20:40:31.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12084','447','2','16032','4.99','2005-08-23 21:59:57.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12085','448','1','299','4.99','2005-05-26 20:55:36.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12086','448','2','1123','2.99','2005-05-31 16:48:43.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12087','448','1','1313','5.99','2005-06-15 10:18:34.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12088','448','2','1823','7.99','2005-06-16 21:48:16.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12089','448','2','2697','0.99','2005-06-19 13:29:08.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12090','448','2','3225','3.99','2005-06-21 02:16:55.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12091','448','2','3347','5.99','2005-06-21 11:08:32.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12092','448','2','3959','5.99','2005-07-06 22:07:58.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12093','448','2','3992','6.99','2005-07-06 23:36:56.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12094','448','2','4024','0.99','2005-07-07 02:11:23.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12095','448','2','4206','2.99','2005-07-07 11:32:16.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12096','448','1','4406','1.99','2005-07-07 21:35:16.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12097','448','2','4537','2.99','2005-07-08 03:48:40.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12098','448','2','4558','2.99','2005-07-08 04:55:26.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12099','448','2','6341','2.99','2005-07-11 19:48:02.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12100','448','2','6985','4.99','2005-07-27 00:57:42.000','2006-02-15 22:19:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12101','448','1','9178','10.99','2005-07-30 11:58:50.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12102','448','2','11608','8.99','2005-08-17 03:36:52.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12103','448','1','11798','9.99','2005-08-17 11:21:43.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12104','448','1','12446','2.99','2005-08-18 10:56:29.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12105','448','1','13220','2.99','2005-08-19 15:42:32.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12106','448','2','13250','3.99','2005-08-19 16:47:55.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12107','448','1','13982','3.99','2005-08-20 19:08:25.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12108','448','1','14580','3.99','2005-08-21 16:56:39.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12109','448','1','14711','2.99','2005-08-21 21:22:07.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12110','448','2','15358','9.99','2005-08-22 21:29:14.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12111','448','1','15427','4.99','2005-08-23 00:07:53.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12112','448','2','14734','3.98','2006-02-14 15:16:03.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12113','448','1','13577','0','2006-02-14 15:16:03.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12114','449','2','263','4.99','2005-05-26 15:47:40.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12115','449','2','325','5.99','2005-05-27 01:09:55.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12116','449','1','849','7.99','2005-05-30 01:23:07.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12117','449','2','1295','4.99','2005-06-15 09:17:20.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12118','449','1','2348','0.99','2005-06-18 12:15:43.000','2006-02-15 22:19:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12119','449','2','2970','2.99','2005-06-20 07:51:51.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12120','449','1','3503','0.99','2005-07-06 00:17:24.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12121','449','1','3977','8.99','2005-07-06 23:00:49.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12122','449','2','4433','3.99','2005-07-07 22:45:41.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12123','449','1','5824','2.99','2005-07-10 16:19:53.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12124','449','2','7755','6.99','2005-07-28 06:22:18.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12125','449','2','7803','3.99','2005-07-28 07:52:13.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12126','449','2','8002','2.99','2005-07-28 15:11:00.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12127','449','2','10083','5.99','2005-07-31 20:10:19.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12128','449','2','10409','2.99','2005-08-01 07:49:15.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12129','449','1','10416','4.99','2005-08-01 08:08:39.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12130','449','1','10516','6.99','2005-08-01 11:41:55.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12131','449','2','10688','6.99','2005-08-01 17:53:43.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12132','449','1','12212','4.99','2005-08-18 02:33:29.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12133','449','2','14962','7.99','2005-08-22 06:37:43.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12134','450','2','548','3.99','2005-05-28 07:34:56.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12135','450','2','1639','4.99','2005-06-16 08:33:39.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12136','450','1','1739','0.99','2005-06-16 16:09:38.000','2006-02-15 22:19:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12137','450','2','1914','2.99','2005-06-17 05:25:54.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12138','450','2','2278','0.99','2005-06-18 06:37:57.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12139','450','1','2501','4.99','2005-06-18 23:10:11.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12140','450','1','2626','2.99','2005-06-19 08:28:44.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12141','450','1','3155','4.99','2005-06-20 21:02:38.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12142','450','1','3570','3.99','2005-07-06 03:23:43.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12143','450','1','5999','7.99','2005-07-11 01:21:22.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12144','450','1','6028','4.99','2005-07-11 02:31:44.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12145','450','2','7365','2.99','2005-07-27 15:00:20.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12146','450','1','7610','0.99','2005-07-28 00:11:35.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12147','450','1','7626','0.99','2005-07-28 00:49:01.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12148','450','2','8733','4.99','2005-07-29 18:26:34.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12149','450','2','10432','2.99','2005-08-01 08:43:21.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12150','450','1','10984','3.99','2005-08-02 04:30:02.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12151','450','2','12812','0.99','2005-08-19 00:54:02.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12152','450','2','13731','4.99','2005-08-20 10:22:08.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12153','450','1','13810','0.99','2005-08-20 12:59:38.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12154','450','1','13828','4.99','2005-08-20 13:49:52.000','2006-02-15 22:19:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12155','450','1','14282','4.99','2005-08-21 06:41:29.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12156','450','2','15019','0.99','2005-08-22 08:52:53.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12157','450','1','15327','4.99','2005-08-22 20:31:24.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12158','450','2','15419','4.99','2005-08-22 23:54:36.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12159','450','1','14172','0.99','2006-02-14 15:16:03.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12160','451','2','77','0.99','2005-05-25 11:31:59.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12161','451','2','328','2.99','2005-05-27 01:29:31.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12162','451','2','1113','2.99','2005-05-31 15:58:44.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12163','451','1','1202','0.99','2005-06-15 02:08:04.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12164','451','1','1851','0.99','2005-06-17 00:32:26.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12165','451','1','1940','6.99','2005-06-17 07:42:22.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12166','451','1','2671','1.99','2005-06-19 11:33:11.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12167','451','1','2909','3.99','2005-06-20 03:19:10.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12168','451','2','2917','0.99','2005-06-20 04:08:35.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12169','451','1','3316','6.99','2005-06-21 08:20:18.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12170','451','2','3826','4.99','2005-07-06 15:51:58.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12171','451','1','4538','2.99','2005-07-08 03:56:29.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12172','451','1','4794','8.99','2005-07-08 16:30:11.000','2006-02-15 22:19:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12173','451','2','4930','4.99','2005-07-08 22:15:48.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12174','451','1','5005','3.99','2005-07-09 01:21:44.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12175','451','2','5518','8.99','2005-07-10 01:15:11.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12176','451','1','7018','2.99','2005-07-27 02:20:22.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12177','451','2','10337','8.99','2005-08-01 05:01:46.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12178','451','1','10856','2.99','2005-08-02 00:07:14.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12179','451','2','10950','2.99','2005-08-02 03:25:08.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12180','451','2','11167','6.99','2005-08-02 10:15:51.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12181','451','2','11381','6.99','2005-08-02 18:19:29.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12182','451','1','11790','2.99','2005-08-17 11:00:08.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12183','451','2','12371','2.99','2005-08-18 08:02:46.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12184','451','1','12422','4.99','2005-08-18 10:13:12.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12185','451','2','13003','1.99','2005-08-19 07:39:29.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12186','451','2','13100','2.99','2005-08-19 10:55:45.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12187','451','2','13252','2.99','2005-08-19 16:50:50.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12188','451','2','13380','0.99','2005-08-19 21:36:58.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12189','451','1','13666','2.99','2005-08-20 08:20:19.000','2006-02-15 22:19:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12190','451','1','13705','2.99','2005-08-20 09:32:23.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12191','451','2','14500','0.99','2005-08-21 14:11:30.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12192','451','1','15651','4.99','2005-08-23 08:31:49.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12193','452','1','354','2.99','2005-05-27 06:12:26.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12194','452','2','714','2.99','2005-05-29 04:15:21.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12195','452','1','726','1.99','2005-05-29 06:05:29.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12196','452','2','1203','4.99','2005-06-15 02:09:02.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12197','452','1','1512','5.99','2005-06-15 22:53:03.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12198','452','1','1794','3.99','2005-06-16 20:08:37.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12199','452','1','2263','0.99','2005-06-18 05:57:47.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12200','452','2','2266','4.99','2005-06-18 06:05:02.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12201','452','1','2504','0.99','2005-06-18 23:19:53.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12202','452','2','2661','0.99','2005-06-19 10:50:52.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12203','452','2','3638','3.99','2005-07-06 07:08:17.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12204','452','1','3791','2.99','2005-07-06 14:24:56.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12205','452','2','3907','6.99','2005-07-06 19:39:14.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12206','452','1','4348','0.99','2005-07-07 19:02:05.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12207','452','2','4353','4.99','2005-07-07 19:19:05.000','2006-02-15 22:19:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12208','452','2','4417','2.99','2005-07-07 22:05:05.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12209','452','1','4720','0.99','2005-07-08 12:34:34.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12210','452','1','5177','1.99','2005-07-09 09:43:21.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12211','452','2','5480','0.99','2005-07-09 23:49:07.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12212','452','2','6959','2.99','2005-07-27 00:07:51.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12213','452','2','7899','6.99','2005-07-28 11:10:12.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12214','452','1','8898','1.99','2005-07-30 01:02:20.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12215','452','2','9379','6.99','2005-07-30 19:13:01.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12216','452','2','11715','4.99','2005-08-17 07:40:55.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12217','452','1','11735','3.99','2005-08-17 08:35:42.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12218','452','1','12355','0.99','2005-08-18 07:36:23.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12219','452','1','12630','4.99','2005-08-18 17:49:28.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12220','452','1','13080','4.99','2005-08-19 10:18:00.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12221','452','1','13642','3.99','2005-08-20 07:42:17.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12222','452','1','14660','0.99','2005-08-21 19:43:21.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12223','452','1','15909','0.99','2005-08-23 17:42:42.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12224','452','1','14175','4.99','2006-02-14 15:16:03.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12225','453','2','2852','5.99','2005-06-19 23:08:50.000','2006-02-15 22:19:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12226','453','1','2853','7.99','2005-06-19 23:09:41.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12227','453','2','2887','4.99','2005-06-20 01:39:43.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12228','453','2','3929','0.99','2005-07-06 20:52:39.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12229','453','2','4033','8.99','2005-07-07 02:35:46.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12230','453','1','4717','4.99','2005-07-08 12:22:43.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12231','453','2','4805','2.99','2005-07-08 16:59:12.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12232','453','2','5359','6.99','2005-07-09 18:10:52.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12233','453','1','6752','4.99','2005-07-12 14:53:15.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12234','453','1','7563','0.99','2005-07-27 22:25:36.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12235','453','2','9289','6.99','2005-07-30 15:57:04.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12236','453','2','9406','6.99','2005-07-30 20:24:00.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12237','453','2','9900','1.99','2005-07-31 14:15:05.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12238','453','1','11794','4.99','2005-08-17 11:08:48.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12239','453','1','12703','2.99','2005-08-18 20:37:13.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12240','453','1','13711','7.99','2005-08-20 09:35:20.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12241','453','1','13785','4.99','2005-08-20 12:11:46.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12242','453','1','14133','2.99','2005-08-21 01:44:14.000','2006-02-15 22:19:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12243','453','2','14306','5.99','2005-08-21 07:32:35.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12244','453','2','14644','4.99','2005-08-21 19:12:12.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12245','453','1','14652','4.99','2005-08-21 19:32:05.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12246','453','1','15252','0.99','2005-08-22 18:04:22.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12247','453','2','15627','4.99','2005-08-23 07:25:38.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12248','454','1','735','7.99','2005-05-29 08:08:13.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12249','454','2','1647','4.99','2005-06-16 09:14:58.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12250','454','2','1844','7.99','2005-06-16 23:53:53.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12251','454','1','1861','1.99','2005-06-17 01:17:31.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12252','454','1','1938','4.99','2005-06-17 07:18:36.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12253','454','2','2048','5.99','2005-06-17 14:55:29.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12254','454','2','2182','5.99','2005-06-18 00:56:18.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12255','454','1','2437','2.99','2005-06-18 18:30:26.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12256','454','2','2666','9.99','2005-06-19 11:17:12.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12257','454','1','3221','2.99','2005-06-21 01:49:47.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12258','454','1','3362','4.99','2005-06-21 12:19:54.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12259','454','1','3622','7.99','2005-07-06 06:05:04.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12260','454','2','4562','4.99','2005-07-08 05:08:32.000','2006-02-15 22:19:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12261','454','2','5088','4.99','2005-07-09 05:45:16.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12262','454','2','5446','2.99','2005-07-09 21:59:55.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12263','454','2','6260','4.99','2005-07-11 15:26:29.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12264','454','2','6701','0.99','2005-07-12 12:47:59.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12265','454','2','8481','2.99','2005-07-29 08:45:57.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12266','454','1','8806','0.99','2005-07-29 21:36:34.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12267','454','2','9041','0.99','2005-07-30 06:32:36.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12268','454','1','9372','9.99','2005-07-30 19:04:30.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12269','454','1','10005','3.99','2005-07-31 17:53:51.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12270','454','2','12347','0.99','2005-08-18 07:18:10.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12271','454','1','12553','0.99','2005-08-18 14:46:54.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12272','454','2','13496','8.99','2005-08-20 01:42:29.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12273','454','2','13513','2.99','2005-08-20 02:27:53.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12274','454','2','13694','8.99','2005-08-20 09:13:23.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12275','454','1','13805','6.99','2005-08-20 12:53:12.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12276','454','1','14799','0.99','2005-08-22 00:44:57.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12277','454','2','14843','2.99','2005-08-22 02:05:25.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12278','454','2','15012','4.99','2005-08-22 08:42:32.000','2006-02-15 22:19:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12279','454','1','15301','3.99','2005-08-22 19:44:16.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12280','454','2','15608','1.99','2005-08-23 06:55:26.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12281','455','2','115','0.99','2005-05-25 19:13:25.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12282','455','2','343','0.99','2005-05-27 04:13:41.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12283','455','2','1382','1.99','2005-06-15 15:18:08.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12284','455','1','1802','1.99','2005-06-16 20:23:30.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12285','455','1','1906','2.99','2005-06-17 04:53:35.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12286','455','2','2356','0.99','2005-06-18 12:59:23.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12287','455','2','4195','2.99','2005-07-07 11:00:02.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12288','455','1','4861','8.99','2005-07-08 18:57:30.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12289','455','1','4964','2.99','2005-07-08 23:46:38.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12290','455','1','5504','6.99','2005-07-10 00:36:38.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12291','455','2','6729','4.99','2005-07-12 13:58:23.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12292','455','1','7388','4.99','2005-07-27 15:54:19.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12293','455','2','7498','4.99','2005-07-27 20:09:31.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12294','455','2','7905','5.99','2005-07-28 11:26:57.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12295','455','2','8291','2.99','2005-07-29 02:28:25.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12296','455','1','10436','0.99','2005-08-01 08:50:59.000','2006-02-15 22:19:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12297','455','1','11605','4.99','2005-08-17 03:30:57.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12298','455','1','12163','2.99','2005-08-18 00:46:01.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12299','455','1','12314','4.99','2005-08-18 06:10:02.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12300','455','2','13083','2.99','2005-08-19 10:26:45.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12301','455','2','13813','4.99','2005-08-20 13:03:26.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12302','455','1','14294','2.99','2005-08-21 07:07:26.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12303','455','2','14583','4.99','2005-08-21 17:11:47.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12304','455','1','15494','1.99','2005-08-23 02:25:09.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12305','456','2','19','4.99','2005-05-25 01:17:24.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12306','456','1','1288','2.99','2005-06-15 08:41:52.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12307','456','1','1700','0.99','2005-06-16 13:18:23.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12308','456','2','2103','5.99','2005-06-17 19:13:10.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12309','456','2','2146','6.99','2005-06-17 22:26:23.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12310','456','1','2192','4.99','2005-06-18 01:35:47.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12311','456','1','2404','0.99','2005-06-18 16:33:48.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12312','456','1','2581','2.99','2005-06-19 04:54:13.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12313','456','1','3743','7.99','2005-07-06 12:03:54.000','2006-02-15 22:19:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12314','456','2','3881','2.99','2005-07-06 18:35:37.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12315','456','1','4141','3.99','2005-07-07 08:19:20.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12316','456','2','5964','0.99','2005-07-10 23:47:18.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12317','456','2','6023','0.99','2005-07-11 02:15:57.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12318','456','2','7248','2.99','2005-07-27 10:37:45.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12319','456','1','8749','4.99','2005-07-29 19:13:15.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12320','456','2','10519','5.99','2005-08-01 11:44:13.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12321','456','1','10813','2.99','2005-08-01 22:43:00.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12322','456','1','12188','4.99','2005-08-18 01:51:43.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12323','456','1','13144','8.99','2005-08-19 12:45:55.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12324','456','1','13348','4.99','2005-08-19 20:31:48.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12325','456','1','13547','4.99','2005-08-20 03:53:16.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12326','456','2','14253','2.99','2005-08-21 05:47:52.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12327','456','2','14690','1.99','2005-08-21 20:42:25.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12328','456','1','15720','3.99','2005-08-23 11:15:20.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12329','456','1','15910','2.99','2005-08-23 17:43:16.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12330','457','2','1024','7.99','2005-05-31 03:30:19.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12331','457','2','1453','4.99','2005-06-15 19:36:39.000','2006-02-15 22:19:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12332','457','2','1727','0.99','2005-06-16 15:21:47.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12333','457','1','2030','0.99','2005-06-17 13:13:27.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12334','457','1','2172','7.99','2005-06-18 00:06:16.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12335','457','1','2670','4.99','2005-06-19 11:30:16.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12336','457','1','2762','3.99','2005-06-19 17:22:31.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12337','457','1','2811','0.99','2005-06-19 19:53:30.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12338','457','2','3115','2.99','2005-06-20 17:59:05.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12339','457','2','3184','2.99','2005-06-20 22:57:44.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12340','457','2','4600','5.99','2005-07-08 06:48:37.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12341','457','1','5500','0.99','2005-07-10 00:28:17.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12342','457','1','6467','7.99','2005-07-12 01:22:03.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12343','457','1','7184','1.99','2005-07-27 08:22:26.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12344','457','2','8373','4.99','2005-07-29 05:19:53.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12345','457','1','8502','2.99','2005-07-29 09:15:41.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12346','457','1','10049','2.99','2005-07-31 19:11:11.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12347','457','2','11956','6.99','2005-08-17 17:22:05.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12348','457','1','12115','4.99','2005-08-17 23:04:15.000','2006-02-15 22:19:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12349','457','1','12171','4.99','2005-08-18 01:06:13.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12350','457','1','13088','0.99','2005-08-19 10:36:11.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12351','457','1','13150','2.99','2005-08-19 13:08:19.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12352','457','2','13934','0.99','2005-08-20 17:18:48.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12353','457','2','14327','10.99','2005-08-21 08:18:18.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12354','457','1','14365','6.99','2005-08-21 09:25:13.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12355','457','1','15128','3.99','2005-08-22 12:57:26.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12356','457','1','12645','3.98','2006-02-14 15:16:03.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12357','457','2','14516','0','2006-02-14 15:16:03.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12358','458','2','2629','5.99','2005-06-19 08:42:12.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12359','458','2','3322','0.99','2005-06-21 08:42:37.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12360','458','2','4525','2.99','2005-07-08 03:15:00.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12361','458','1','5412','2.99','2005-07-09 20:23:52.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12362','458','1','5572','0.99','2005-07-10 03:49:00.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12363','458','2','6250','3.99','2005-07-11 15:02:04.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12364','458','1','6431','5.99','2005-07-12 00:03:57.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12365','458','2','6595','7.99','2005-07-12 07:25:48.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12366','458','1','6654','1.99','2005-07-12 11:06:28.000','2006-02-15 22:19:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12367','458','2','7923','3.99','2005-07-28 12:08:29.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12368','458','1','8158','0.99','2005-07-28 21:08:46.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12369','458','2','11138','2.99','2005-08-02 09:26:16.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12370','458','2','11975','2.99','2005-08-17 17:58:39.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12371','458','2','12768','0.99','2005-08-18 23:26:11.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12372','458','2','13259','2.99','2005-08-19 17:08:53.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12373','458','2','13487','2.99','2005-08-20 01:27:05.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12374','458','2','13571','4.99','2005-08-20 05:05:14.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12375','458','2','14428','4.99','2005-08-21 11:27:07.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12376','458','1','15604','4.99','2005-08-23 06:44:19.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12377','459','2','2','2.99','2005-05-24 22:54:33.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12378','459','2','1876','0.99','2005-06-17 02:50:51.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12379','459','2','1977','2.99','2005-06-17 09:38:22.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12380','459','2','2075','4.99','2005-06-17 16:40:33.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12381','459','1','2899','0.99','2005-06-20 02:39:21.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12382','459','2','3041','4.99','2005-06-20 12:35:44.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12383','459','2','3045','0.99','2005-06-20 12:42:00.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12384','459','2','3234','9.99','2005-06-21 02:39:44.000','2006-02-15 22:19:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12385','459','1','3506','2.99','2005-07-06 00:22:29.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12386','459','2','4519','2.99','2005-07-08 02:51:23.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12387','459','1','5301','3.99','2005-07-09 15:42:10.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12388','459','1','5695','0.99','2005-07-10 09:43:40.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12389','459','1','6206','0.99','2005-07-11 12:32:14.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12390','459','2','6750','3.99','2005-07-12 14:49:39.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12391','459','1','7623','6.99','2005-07-28 00:37:41.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12392','459','2','7639','4.99','2005-07-28 01:14:36.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12393','459','1','7717','4.99','2005-07-28 04:33:54.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12394','459','1','7820','5.99','2005-07-28 08:28:51.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12395','459','1','7913','6.99','2005-07-28 11:47:23.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12396','459','1','8289','9.99','2005-07-29 02:23:24.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12397','459','2','8557','10.99','2005-07-29 11:19:59.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12398','459','1','8897','2.99','2005-07-30 01:00:17.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12399','459','1','9137','6.99','2005-07-30 10:09:24.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12400','459','2','9639','2.99','2005-07-31 05:32:10.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12401','459','1','9744','4.99','2005-07-31 09:15:38.000','2006-02-15 22:19:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12402','459','2','10117','4.99','2005-07-31 21:14:31.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12403','459','1','10233','6.99','2005-08-01 01:54:23.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12404','459','2','10255','4.99','2005-08-01 02:46:13.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12405','459','1','10499','7.99','2005-08-01 11:00:20.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12406','459','1','10531','2.99','2005-08-01 12:06:30.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12407','459','1','12527','6.99','2005-08-18 13:48:46.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12408','459','1','12629','7.99','2005-08-18 17:40:33.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12409','459','2','13960','10.99','2005-08-20 18:16:26.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12410','459','1','13967','4.99','2005-08-20 18:28:46.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12411','459','1','14315','3.99','2005-08-21 07:56:39.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12412','459','1','15126','5.99','2005-08-22 12:53:58.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12413','459','2','15342','2.99','2005-08-22 20:56:41.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12414','459','1','15814','0.99','2005-08-23 14:52:50.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12415','460','1','223','4.99','2005-05-26 10:15:23.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12416','460','2','298','0.99','2005-05-26 20:52:26.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12417','460','1','880','0.99','2005-05-30 06:12:33.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12418','460','2','1064','4.99','2005-05-31 08:50:07.000','2006-02-15 22:19:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12419','460','2','1392','0.99','2005-06-15 16:12:27.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12420','460','2','3820','4.99','2005-07-06 15:35:26.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12421','460','1','4452','7.99','2005-07-07 23:31:54.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12422','460','2','5482','3.99','2005-07-09 23:53:04.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12423','460','1','6613','4.99','2005-07-12 08:30:07.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12424','460','1','6788','5.99','2005-07-12 16:33:44.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12425','460','1','7125','6.99','2005-07-27 06:11:00.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12426','460','1','7785','3.99','2005-07-28 07:16:11.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12427','460','2','8656','2.99','2005-07-29 15:05:52.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12428','460','2','10754','10.99','2005-08-01 20:12:33.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12429','460','1','10926','1.99','2005-08-02 02:26:37.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12430','460','2','11554','2.99','2005-08-17 01:05:17.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12431','460','1','12056','5.99','2005-08-17 21:03:48.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12432','460','2','12586','4.99','2005-08-18 15:54:39.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12433','460','1','12865','0.99','2005-08-19 02:38:50.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12434','460','2','13215','8.99','2005-08-19 15:35:38.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12435','460','1','13341','3.99','2005-08-19 20:18:53.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12436','460','2','13920','5.99','2005-08-20 16:51:18.000','2006-02-15 22:19:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12437','460','2','14864','0.99','2005-08-22 02:57:06.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12438','460','1','14923','3.99','2005-08-22 05:13:33.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12439','460','2','15954','2.99','2005-08-23 19:14:07.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12440','461','1','684','6.99','2005-05-29 00:13:15.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12441','461','2','3127','5.99','2005-06-20 18:39:43.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12442','461','2','3319','4.99','2005-06-21 08:25:46.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12443','461','2','3698','0.99','2005-07-06 10:09:20.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12444','461','2','4586','2.99','2005-07-08 06:12:33.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12445','461','1','5650','0.99','2005-07-10 07:17:01.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12446','461','1','5809','2.99','2005-07-10 15:19:30.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12447','461','2','7334','2.99','2005-07-27 13:59:58.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12448','461','2','7664','2.99','2005-07-28 02:24:23.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12449','461','2','8133','0.99','2005-07-28 20:01:06.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12450','461','2','8164','0.99','2005-07-28 21:17:19.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12451','461','2','9499','4.99','2005-07-30 23:58:30.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12452','461','1','9885','0.99','2005-07-31 13:59:32.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12453','461','2','10113','4.99','2005-07-31 21:10:03.000','2006-02-15 22:19:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12454','461','1','10260','2.99','2005-08-01 02:58:07.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12455','461','2','11063','0.99','2005-08-02 06:53:48.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12456','461','2','11219','0.99','2005-08-02 12:30:20.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12457','461','2','12022','2.99','2005-08-17 19:52:45.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12458','461','1','13223','2.99','2005-08-19 15:52:04.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12459','461','1','13269','2.99','2005-08-19 17:34:00.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12460','461','1','14186','4.99','2005-08-21 03:31:07.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12461','461','1','14893','4.99','2005-08-22 04:15:48.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12462','461','1','15067','2.99','2005-08-22 10:49:21.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12463','461','2','15187','4.99','2005-08-22 15:53:32.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12464','461','1','15336','6.99','2005-08-22 20:47:48.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12465','461','2','15411','2.99','2005-08-22 23:35:41.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12466','461','2','15449','2.99','2005-08-23 00:55:43.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12467','461','2','15613','7.99','2005-08-23 07:03:19.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12468','462','2','156','2.99','2005-05-26 01:19:05.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12469','462','2','590','3.99','2005-05-28 13:06:50.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12470','462','2','1773','5.99','2005-06-16 18:13:43.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12471','462','2','1926','9.99','2005-06-17 06:24:30.000','2006-02-15 22:19:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12472','462','1','3279','4.99','2005-06-21 06:05:53.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12473','462','1','4500','4.99','2005-07-08 02:10:01.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12474','462','2','4728','3.99','2005-07-08 12:59:01.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12475','462','1','6583','4.99','2005-07-12 06:42:31.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12476','462','1','6630','0.99','2005-07-12 09:30:05.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12477','462','1','6710','7.99','2005-07-12 13:23:09.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12478','462','1','6721','6.99','2005-07-12 13:42:58.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12479','462','2','7295','8.99','2005-07-27 12:38:47.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12480','462','1','7324','6.99','2005-07-27 13:42:39.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12481','462','1','7762','8.99','2005-07-28 06:34:23.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12482','462','1','7932','4.99','2005-07-28 12:24:54.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12483','462','2','7935','2.99','2005-07-28 12:33:17.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12484','462','1','8066','2.99','2005-07-28 17:20:09.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12485','462','1','8282','0.99','2005-07-29 01:49:04.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12486','462','1','8290','3.99','2005-07-29 02:24:08.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12487','462','2','8757','2.99','2005-07-29 19:19:10.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12488','462','1','9891','0.99','2005-07-31 14:05:44.000','2006-02-15 22:19:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12489','462','1','10283','2.99','2005-08-01 03:29:45.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12490','462','2','11639','6.99','2005-08-17 04:43:29.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12491','462','1','11808','2.99','2005-08-17 11:51:16.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12492','462','1','12466','4.99','2005-08-18 11:36:55.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12493','462','2','12582','0.99','2005-08-18 15:51:12.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12494','462','1','12802','8.99','2005-08-19 00:27:41.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12495','462','2','13041','8.99','2005-08-19 09:05:38.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12496','462','1','13328','4.99','2005-08-19 19:56:01.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12497','462','1','13492','7.99','2005-08-20 01:32:04.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12498','462','2','15581','2.99','2005-08-23 05:42:13.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12499','462','1','15943','2.99','2005-08-23 18:49:32.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12500','462','1','16013','0.99','2005-08-23 21:17:17.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12501','463','1','560','1.99','2005-05-28 08:53:02.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12502','463','1','1284','2.99','2005-06-15 08:27:33.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12503','463','2','2527','4.99','2005-06-19 01:10:31.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12504','463','1','3217','2.99','2005-06-21 01:28:12.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12505','463','1','3309','4.99','2005-06-21 08:00:49.000','2006-02-15 22:19:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12506','463','1','5026','2.99','2005-07-09 02:32:34.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12507','463','1','5157','2.99','2005-07-09 08:52:12.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12508','463','1','5448','0.99','2005-07-09 22:11:14.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12509','463','2','6294','0.99','2005-07-11 17:25:55.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12510','463','1','6932','6.99','2005-07-26 23:08:04.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12511','463','1','7013','0.99','2005-07-27 02:03:21.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12512','463','1','7361','0.99','2005-07-27 14:53:55.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12513','463','1','8762','2.99','2005-07-29 19:30:02.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12514','463','2','9405','7.99','2005-07-30 20:22:17.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12515','463','1','9954','2.99','2005-07-31 15:57:07.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12516','463','1','10275','3.99','2005-08-01 03:20:08.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12517','463','2','10405','0.99','2005-08-01 07:35:25.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12518','463','2','10906','2.99','2005-08-02 01:47:04.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12519','463','2','12096','7.99','2005-08-17 22:32:50.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12520','463','2','12679','6.99','2005-08-18 19:42:11.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12521','463','1','12950','2.99','2005-08-19 05:55:58.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12522','463','2','13938','4.99','2005-08-20 17:24:45.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12523','463','1','14689','0.99','2005-08-21 20:33:00.000','2006-02-15 22:19:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12524','463','1','14859','2.99','2005-08-22 02:46:35.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12525','463','2','15151','7.99','2005-08-22 14:23:11.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12526','464','1','305','3.99','2005-05-26 21:22:07.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12527','464','2','373','1.99','2005-05-27 08:16:25.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12528','464','2','1277','4.99','2005-06-15 08:01:29.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12529','464','1','3167','2.99','2005-06-20 21:42:29.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12530','464','1','3761','4.99','2005-07-06 12:52:44.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12531','464','1','4337','5.99','2005-07-07 18:36:37.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12532','464','2','5455','6.99','2005-07-09 22:28:45.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12533','464','1','5910','4.99','2005-07-10 20:51:34.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12534','464','2','6601','3.99','2005-07-12 07:44:49.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12535','464','1','9600','5.99','2005-07-31 03:35:34.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12536','464','2','11275','1.99','2005-08-02 14:25:58.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12537','464','1','13644','8.99','2005-08-20 07:46:30.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12538','464','2','13943','2.99','2005-08-20 17:31:18.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12539','464','1','15092','6.99','2005-08-22 11:36:16.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12540','464','2','15854','0.99','2005-08-23 15:58:05.000','2006-02-15 22:19:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12541','464','1','15983','4.99','2005-08-23 20:13:38.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12542','465','2','640','0.99','2005-05-28 18:43:26.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12543','465','1','1337','2.99','2005-06-15 12:12:42.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12544','465','1','2079','4.99','2005-06-17 16:49:45.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12545','465','1','2159','8.99','2005-06-17 23:37:29.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12546','465','2','2524','0.99','2005-06-19 00:48:11.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12547','465','1','4763','0.99','2005-07-08 14:57:32.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12548','465','2','6904','3.99','2005-07-12 22:02:09.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12549','465','2','7508','2.99','2005-07-27 20:33:08.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12550','465','1','10542','3.99','2005-08-01 12:32:23.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12551','465','1','11156','2.99','2005-08-02 09:56:06.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12552','465','1','11586','4.99','2005-08-17 02:20:42.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12553','465','2','11648','6.99','2005-08-17 04:56:16.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12554','465','2','12106','4.99','2005-08-17 22:55:32.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12555','465','1','12814','4.99','2005-08-19 00:58:24.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12556','465','1','12864','4.99','2005-08-19 02:38:26.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12557','465','1','15550','3.99','2005-08-23 04:27:54.000','2006-02-15 22:19:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12558','465','2','15859','4.99','2005-08-23 16:08:15.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12559','466','2','1104','2.99','2005-05-31 14:30:01.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12560','466','2','1808','7.99','2005-06-16 20:59:35.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12561','466','2','2446','8.99','2005-06-18 19:04:41.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12562','466','1','3022','3.99','2005-06-20 11:17:20.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12563','466','2','3237','4.99','2005-06-21 02:47:56.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12564','466','2','3343','2.99','2005-06-21 10:56:59.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12565','466','2','5048','0.99','2005-07-09 03:46:33.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12566','466','1','5691','4.99','2005-07-10 09:29:49.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12567','466','1','6073','6.99','2005-07-11 04:54:31.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12568','466','2','7080','2.99','2005-07-27 04:25:25.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12569','466','2','8276','0.99','2005-07-29 01:38:43.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12570','466','1','9202','3.99','2005-07-30 12:43:24.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12571','466','1','9257','2.99','2005-07-30 14:30:38.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12572','466','1','10469','4.99','2005-08-01 09:51:11.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12573','466','2','11343','0.99','2005-08-02 17:12:30.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12574','466','1','11359','4.99','2005-08-02 17:45:55.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12575','466','1','12048','7.99','2005-08-17 20:49:24.000','2006-02-15 22:19:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12576','466','1','13478','2.99','2005-08-20 01:07:14.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12577','466','1','13884','5.99','2005-08-20 15:30:51.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12578','466','1','13988','4.99','2005-08-20 19:21:28.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12579','466','2','14546','2.99','2005-08-21 15:50:50.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12580','466','2','15230','4.99','2005-08-22 17:31:41.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12581','466','1','16005','7.99','2005-08-23 21:00:22.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12582','467','2','225','4.99','2005-05-26 10:27:50.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12583','467','1','1737','8.99','2005-06-16 15:59:44.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12584','467','2','2121','4.99','2005-06-17 20:38:54.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12585','467','2','2870','9.99','2005-06-20 00:17:46.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12586','467','1','3250','6.99','2005-06-21 03:16:36.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12587','467','1','4216','0.99','2005-07-07 12:01:34.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12588','467','2','4222','4.99','2005-07-07 12:20:21.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12589','467','1','4259','4.99','2005-07-07 14:22:18.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12590','467','2','5160','4.99','2005-07-09 08:57:07.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12591','467','2','6271','6.99','2005-07-11 16:01:35.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12592','467','2','7360','2.99','2005-07-27 14:52:06.000','2006-02-15 22:19:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12593','467','2','7573','5.99','2005-07-27 22:46:20.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12594','467','1','7611','2.99','2005-07-28 00:11:47.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12595','467','1','8010','7.99','2005-07-28 15:26:20.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12596','467','2','8061','6.99','2005-07-28 17:12:53.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12597','467','2','8224','2.99','2005-07-28 23:59:02.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12598','467','2','8480','8.99','2005-07-29 08:44:46.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12599','467','1','8767','4.99','2005-07-29 19:42:33.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12600','467','2','10239','0.99','2005-08-01 02:09:22.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12601','467','2','11332','2.99','2005-08-02 16:52:57.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12602','467','1','11874','4.99','2005-08-17 14:16:40.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12603','467','1','12266','2.99','2005-08-18 04:22:31.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12604','467','1','12437','9.99','2005-08-18 10:42:43.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12605','467','1','12641','2.99','2005-08-18 18:18:08.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12606','467','1','14402','2.99','2005-08-21 10:38:17.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12607','467','1','14451','0.99','2005-08-21 12:21:44.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12608','467','1','14842','3.99','2005-08-22 02:04:38.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12609','467','1','15032','0.99','2005-08-22 09:14:09.000','2006-02-15 22:19:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12610','467','2','15830','2.99','2005-08-23 15:19:15.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12611','468','2','101','6.99','2005-05-25 17:17:04.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12612','468','1','186','4.99','2005-05-26 05:32:52.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12613','468','2','296','6.99','2005-05-26 20:35:19.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12614','468','2','459','0.99','2005-05-27 20:00:04.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12615','468','1','673','0.99','2005-05-28 22:07:30.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12616','468','2','1229','2.99','2005-06-15 03:53:13.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12617','468','1','1627','8.99','2005-06-16 07:51:09.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12618','468','1','1821','2.99','2005-06-16 21:42:49.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12619','468','1','1975','2.99','2005-06-17 09:32:10.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12620','468','2','2462','4.99','2005-06-18 20:00:15.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12621','468','1','2831','0.99','2005-06-19 21:17:06.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12622','468','2','3724','2.99','2005-07-06 11:12:48.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12623','468','1','3840','5.99','2005-07-06 16:30:59.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12624','468','2','4184','3.99','2005-07-07 10:30:08.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12625','468','2','4527','3.99','2005-07-08 03:20:10.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12626','468','1','5285','2.99','2005-07-09 15:10:44.000','2006-02-15 22:19:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12627','468','1','6392','0.99','2005-07-11 22:25:19.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12628','468','1','6581','4.99','2005-07-12 06:26:49.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12629','468','2','6815','5.99','2005-07-12 18:14:10.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12630','468','2','7292','4.99','2005-07-27 12:34:14.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12631','468','1','7685','0.99','2005-07-28 03:13:00.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12632','468','2','8423','5.99','2005-07-29 07:02:57.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12633','468','2','8768','6.99','2005-07-29 19:43:02.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12634','468','1','9598','0.99','2005-07-31 03:30:41.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12635','468','1','9690','6.99','2005-07-31 07:06:29.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12636','468','2','11257','10.99','2005-08-02 13:45:05.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12637','468','2','11633','4.99','2005-08-17 04:30:09.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12638','468','2','12026','6.99','2005-08-17 20:00:10.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12639','468','2','13221','3.99','2005-08-19 15:45:47.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12640','468','1','13417','0.99','2005-08-19 22:51:39.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12641','468','2','14154','4.99','2005-08-21 02:30:00.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12642','468','2','14210','4.99','2005-08-21 04:28:02.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12643','468','1','14309','9.99','2005-08-21 07:44:17.000','2006-02-15 22:19:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12644','468','1','14313','2.99','2005-08-21 07:49:53.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12645','468','1','14614','9.99','2005-08-21 18:03:51.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12646','468','2','15435','4.99','2005-08-23 00:28:19.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12647','468','1','15522','1.99','2005-08-23 03:32:31.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12648','468','1','15836','2.99','2005-08-23 15:29:17.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12649','468','2','16044','0.99','2005-08-23 22:24:39.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12650','469','1','168','0.99','2005-05-26 03:07:43.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12651','469','2','506','7.99','2005-05-28 02:09:19.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12652','469','2','529','4.99','2005-05-28 04:34:17.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12653','469','2','936','1.99','2005-05-30 13:52:49.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12654','469','1','1119','2.99','2005-05-31 16:34:27.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12655','469','2','1399','0.99','2005-06-15 16:29:51.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12656','469','1','1680','9.99','2005-06-16 11:17:22.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12657','469','2','3522','4.99','2005-07-06 01:00:21.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12658','469','1','3526','10.99','2005-07-06 01:03:29.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12659','469','2','4067','3.99','2005-07-07 04:34:23.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12660','469','2','4123','0.99','2005-07-07 07:16:19.000','2006-02-15 22:19:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12661','469','1','5133','0.99','2005-07-09 07:43:22.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12662','469','1','5299','3.99','2005-07-09 15:38:09.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12663','469','2','5664','6.99','2005-07-10 08:04:41.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12664','469','2','6022','0.99','2005-07-11 02:15:53.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12665','469','2','6099','4.99','2005-07-11 06:24:44.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12666','469','1','6797','4.99','2005-07-12 16:47:06.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12667','469','1','6955','3.99','2005-07-26 23:55:48.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12668','469','2','7062','6.99','2005-07-27 03:52:01.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12669','469','2','7271','6.99','2005-07-27 11:29:11.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12670','469','2','7756','4.99','2005-07-28 06:22:52.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12671','469','1','7914','4.99','2005-07-28 11:48:08.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12672','469','2','8791','0.99','2005-07-29 20:53:23.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12673','469','1','9187','2.99','2005-07-30 12:14:03.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12674','469','2','10075','4.99','2005-07-31 19:58:42.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12675','469','1','10258','4.99','2005-08-01 02:51:09.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12676','469','1','10316','4.99','2005-08-01 04:34:57.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12677','469','1','10658','2.99','2005-08-01 16:39:18.000','2006-02-15 22:19:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12678','469','1','10741','2.99','2005-08-01 19:52:52.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12679','469','2','11185','0.99','2005-08-02 11:04:35.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12680','469','2','12035','0.99','2005-08-17 20:18:06.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12681','469','1','12447','4.99','2005-08-18 10:57:01.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12682','469','1','12633','6.99','2005-08-18 17:55:38.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12683','469','1','13654','4.99','2005-08-20 07:58:21.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12684','469','1','13763','2.99','2005-08-20 11:37:56.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12685','469','2','14197','7.99','2005-08-21 03:47:25.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12686','469','2','14661','2.99','2005-08-21 19:44:21.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12687','469','1','15487','4.99','2005-08-23 02:05:51.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12688','469','1','15561','9.99','2005-08-23 05:02:31.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12689','469','1','15851','2.99','2005-08-23 15:46:33.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12690','470','2','60','2.99','2005-05-25 08:58:25.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12691','470','2','1256','0.99','2005-06-15 06:13:57.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12692','470','1','1283','0.99','2005-06-15 08:27:30.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12693','470','2','1594','7.99','2005-06-16 05:15:12.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12694','470','1','3764','5.99','2005-07-06 13:01:03.000','2006-02-15 22:19:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12695','470','1','3841','4.99','2005-07-06 16:34:00.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12696','470','1','3922','4.99','2005-07-06 20:32:27.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12697','470','1','4373','4.99','2005-07-07 20:10:59.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12698','470','2','4502','6.99','2005-07-08 02:12:04.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12699','470','2','5082','4.99','2005-07-09 05:28:38.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12700','470','1','6009','3.99','2005-07-11 01:51:58.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12701','470','1','6198','2.99','2005-07-11 12:12:17.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12702','470','2','6703','4.99','2005-07-12 12:50:19.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12703','470','1','6927','10.99','2005-07-26 22:56:00.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12704','470','1','6942','5.99','2005-07-26 23:27:40.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12705','470','1','7663','4.99','2005-07-28 02:19:48.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12706','470','2','8476','8.99','2005-07-29 08:39:12.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12707','470','1','8890','6.99','2005-07-30 00:42:06.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12708','470','1','9422','5.99','2005-07-30 21:08:41.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12709','470','1','9687','2.99','2005-07-31 06:52:54.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12710','470','1','10006','4.99','2005-07-31 17:54:35.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12711','470','1','10236','0.99','2005-08-01 02:05:34.000','2006-02-15 22:19:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12712','470','2','10944','4.99','2005-08-02 03:20:03.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12713','470','2','11397','1.99','2005-08-02 18:53:14.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12714','470','2','11711','2.99','2005-08-17 07:30:55.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12715','470','1','11742','0.99','2005-08-17 08:48:43.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12716','470','2','12177','3.99','2005-08-18 01:15:47.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12717','470','2','12423','8.99','2005-08-18 10:14:52.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12718','470','1','12753','10.99','2005-08-18 22:37:39.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12719','470','2','13585','4.99','2005-08-20 05:32:23.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12720','470','1','13592','4.99','2005-08-20 05:50:35.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12721','470','2','14405','4.99','2005-08-21 10:45:01.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12722','471','1','616','2.99','2005-05-28 15:45:39.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12723','471','1','1447','4.99','2005-06-15 19:13:51.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12724','471','2','1449','2.99','2005-06-15 19:19:16.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12725','471','2','2165','2.99','2005-06-17 23:51:10.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12726','471','2','2350','4.99','2005-06-18 12:25:29.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12727','471','2','3073','4.99','2005-06-20 14:33:26.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12728','471','1','3917','0.99','2005-07-06 20:19:29.000','2006-02-15 22:19:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12729','471','1','4020','2.99','2005-07-07 01:42:22.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12730','471','2','6293','2.99','2005-07-11 17:24:57.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12731','471','1','6336','8.99','2005-07-11 19:30:13.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12732','471','1','6912','5.99','2005-07-12 22:17:16.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12733','471','1','8199','0.99','2005-07-28 23:10:25.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12734','471','1','9077','2.99','2005-07-30 08:00:19.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12735','471','1','9502','0.99','2005-07-31 00:02:10.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12736','471','2','9560','2.99','2005-07-31 02:17:27.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12737','471','1','10430','2.99','2005-08-01 08:37:06.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12738','471','2','10828','3.99','2005-08-01 23:16:10.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12739','471','2','11601','4.99','2005-08-17 03:14:47.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12740','471','1','12271','4.99','2005-08-18 04:33:11.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12741','471','1','13661','5.99','2005-08-20 08:05:59.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12742','471','1','14085','7.99','2005-08-20 23:46:24.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12743','471','1','14094','4.99','2005-08-21 00:21:35.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12744','471','1','14317','5.99','2005-08-21 08:00:40.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12745','471','2','14538','2.99','2005-08-21 15:28:15.000','2006-02-15 22:19:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12746','471','2','14942','7.99','2005-08-22 05:58:27.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12747','471','2','15184','0.99','2005-08-22 15:51:12.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12748','471','1','15654','1.99','2005-08-23 08:34:53.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12749','472','2','142','0.99','2005-05-25 23:43:47.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12750','472','2','249','2.99','2005-05-26 14:19:09.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12751','472','2','800','0.99','2005-05-29 17:28:12.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12752','472','2','994','4.99','2005-05-30 23:55:36.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12753','472','1','1389','4.99','2005-06-15 15:49:01.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12754','472','2','1776','6.99','2005-06-16 18:46:58.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12755','472','1','2538','5.99','2005-06-19 01:56:59.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12756','472','1','2974','0.99','2005-06-20 08:00:24.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12757','472','1','2991','4.99','2005-06-20 09:10:43.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12758','472','1','3254','0.99','2005-06-21 03:27:10.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12759','472','2','3815','6.99','2005-07-06 15:26:36.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12760','472','2','5318','2.99','2005-07-09 16:11:33.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12761','472','1','5612','3.99','2005-07-10 05:15:12.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12762','472','1','6119','6.99','2005-07-11 07:44:46.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12763','472','2','6274','5.99','2005-07-11 16:09:42.000','2006-02-15 22:19:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12764','472','1','6308','5.99','2005-07-11 18:08:41.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12765','472','1','6584','2.99','2005-07-12 06:43:36.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12766','472','2','8929','5.99','2005-07-30 02:28:22.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12767','472','2','9926','6.99','2005-07-31 15:11:51.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12768','472','1','10282','6.99','2005-08-01 03:29:10.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12769','472','1','10627','0.99','2005-08-01 15:33:03.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12770','472','1','11911','6.99','2005-08-17 15:51:35.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12771','472','2','12763','4.99','2005-08-18 23:07:01.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12772','472','2','13188','8.99','2005-08-19 14:27:03.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12773','472','1','14209','4.99','2005-08-21 04:17:56.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12774','472','2','14596','4.99','2005-08-21 17:38:37.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12775','472','1','14597','4.99','2005-08-21 17:39:41.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12776','472','2','15185','5.99','2005-08-22 15:52:50.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12777','472','2','15278','2.99','2005-08-22 19:06:47.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12778','472','2','14928','4.99','2006-02-14 15:16:03.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12779','473','1','348','4.99','2005-05-27 04:50:56.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12780','473','2','942','2.99','2005-05-30 15:05:47.000','2006-02-15 22:19:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12781','473','2','973','3.99','2005-05-30 20:27:45.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12782','473','2','1748','0.99','2005-06-16 16:54:03.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12783','473','1','2125','2.99','2005-06-17 20:53:42.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12784','473','2','2553','4.99','2005-06-19 03:04:59.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12785','473','2','2748','4.99','2005-06-19 16:22:26.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12786','473','1','3971','0.99','2005-07-06 22:50:40.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12787','473','2','4006','4.99','2005-07-07 00:25:29.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12788','473','2','4625','4.99','2005-07-08 08:14:26.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12789','473','1','4873','0.99','2005-07-08 19:23:32.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12790','473','2','5447','5.99','2005-07-09 22:09:28.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12791','473','1','6446','2.99','2005-07-12 00:44:08.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12792','473','2','6890','4.99','2005-07-12 21:03:03.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12793','473','1','7111','4.99','2005-07-27 05:38:16.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12794','473','1','7215','2.99','2005-07-27 09:24:00.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12795','473','2','7918','1.99','2005-07-28 11:58:53.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12796','473','2','7928','7.99','2005-07-28 12:15:51.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12797','473','1','9025','4.99','2005-07-30 05:50:08.000','2006-02-15 22:19:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12798','473','2','9120','8.99','2005-07-30 09:26:08.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12799','473','1','10867','2.99','2005-08-02 00:24:15.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12800','473','2','11006','2.99','2005-08-02 05:05:52.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12801','473','1','11216','4.99','2005-08-02 12:23:43.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12802','473','1','11336','0.99','2005-08-02 16:58:56.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12803','473','2','11421','7.99','2005-08-02 19:51:53.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12804','473','1','11741','0.99','2005-08-17 08:48:39.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12805','473','2','13984','4.99','2005-08-20 19:12:30.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12806','473','2','14202','0.99','2005-08-21 03:51:52.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12807','473','2','14550','0.99','2005-08-21 15:56:39.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12808','473','2','14658','4.99','2005-08-21 19:41:50.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12809','473','2','14757','4.99','2005-08-21 23:23:37.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12810','473','1','15118','4.99','2005-08-22 12:38:37.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12811','473','2','15400','2.99','2005-08-22 23:13:03.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12812','473','2','16024','4.99','2005-08-23 21:46:47.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12813','474','1','816','7.99','2005-05-29 20:26:39.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12814','474','1','1758','8.99','2005-06-16 17:39:39.000','2006-02-15 22:19:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12815','474','2','2944','7.99','2005-06-20 05:43:42.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12816','474','2','3787','4.99','2005-07-06 14:02:01.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12817','474','2','4048','1.99','2005-07-07 03:30:52.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12818','474','1','4481','2.99','2005-07-08 00:58:15.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12819','474','1','4533','0.99','2005-07-08 03:32:01.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12820','474','2','4785','0.99','2005-07-08 16:10:19.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12821','474','1','4809','2.99','2005-07-08 17:03:22.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12822','474','2','4886','4.99','2005-07-08 19:53:22.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12823','474','1','5251','0.99','2005-07-09 13:36:10.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12824','474','1','6499','7.99','2005-07-12 03:11:18.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12825','474','1','8991','2.99','2005-07-30 04:42:54.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12826','474','2','10376','5.99','2005-08-01 06:27:13.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12827','474','2','11117','0.99','2005-08-02 08:36:03.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12828','474','1','11489','2.99','2005-08-02 22:35:28.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12829','474','2','11537','2.99','2005-08-17 00:41:08.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12830','474','1','12083','2.99','2005-08-17 22:13:37.000','2006-02-15 22:19:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12831','474','1','12236','4.99','2005-08-18 03:19:29.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12832','474','1','12440','0.99','2005-08-18 10:47:35.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12833','474','2','12597','2.99','2005-08-18 16:34:02.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12834','474','1','12702','4.99','2005-08-18 20:30:33.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12835','474','1','14728','0.99','2005-08-21 22:15:36.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12836','474','2','15046','4.99','2005-08-22 09:54:54.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12837','474','1','15558','6.99','2005-08-23 04:52:22.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12838','474','1','11909','0.99','2006-02-14 15:16:03.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12839','475','2','417','4.99','2005-05-27 15:07:27.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12840','475','1','702','0.99','2005-05-29 02:27:30.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12841','475','2','3980','5.99','2005-07-06 23:11:11.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12842','475','1','4013','6.99','2005-07-07 00:58:00.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12843','475','1','4617','4.99','2005-07-08 07:55:08.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12844','475','2','5379','0.99','2005-07-09 19:08:03.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12845','475','1','5407','0.99','2005-07-09 20:16:07.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12846','475','2','5415','9.99','2005-07-09 20:30:03.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12847','475','2','5469','2.99','2005-07-09 23:08:07.000','2006-02-15 22:19:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12848','475','1','6224','4.99','2005-07-11 13:42:18.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12849','475','1','7641','7.99','2005-07-28 01:15:45.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12850','475','1','7775','1.99','2005-07-28 07:04:36.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12851','475','2','8207','5.99','2005-07-28 23:26:31.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12852','475','1','9183','7.99','2005-07-30 12:09:56.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12853','475','1','9647','2.99','2005-07-31 05:45:15.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12854','475','1','9737','2.99','2005-07-31 08:59:18.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12855','475','2','10162','3.99','2005-07-31 23:11:01.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12856','475','1','10357','0.99','2005-08-01 05:49:49.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12857','475','1','10633','3.99','2005-08-01 15:37:17.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12858','475','1','11293','5.99','2005-08-02 15:00:43.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12859','475','1','11770','4.99','2005-08-17 10:05:05.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12860','475','2','14303','2.99','2005-08-21 07:22:43.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12861','475','1','15097','1.99','2005-08-22 11:43:42.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12862','475','1','15288','4.99','2005-08-22 19:23:58.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12863','476','1','489','4.99','2005-05-28 00:09:12.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12864','476','1','771','2.99','2005-05-29 12:59:14.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12865','476','1','1682','3.99','2005-06-16 11:54:25.000','2006-02-15 22:19:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12866','476','1','2080','0.99','2005-06-17 16:59:40.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12867','476','2','2508','4.99','2005-06-18 23:43:58.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12868','476','2','3448','2.99','2005-06-21 20:59:20.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12869','476','2','3477','7.99','2005-07-05 23:05:17.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12870','476','1','4010','5.99','2005-07-07 00:47:00.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12871','476','2','4171','4.99','2005-07-07 09:49:04.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12872','476','2','5644','4.99','2005-07-10 06:57:44.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12873','476','1','6151','2.99','2005-07-11 09:25:17.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12874','476','1','7461','0.99','2005-07-27 18:45:15.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12875','476','1','8146','0.99','2005-07-28 20:37:36.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12876','476','2','9325','6.99','2005-07-30 17:29:19.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12877','476','2','9743','3.99','2005-07-31 09:12:42.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12878','476','1','10346','4.99','2005-08-01 05:19:23.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12879','476','1','10617','9.99','2005-08-01 15:05:52.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12880','476','1','10826','6.99','2005-08-01 23:07:56.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12881','476','1','12616','4.99','2005-08-18 17:22:41.000','2006-02-15 22:19:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12882','476','2','12709','5.99','2005-08-18 20:59:51.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12883','476','1','15413','0.99','2005-08-22 23:38:01.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12884','476','1','13941','0.99','2006-02-14 15:16:03.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12885','477','1','882','2.99','2005-05-30 06:16:06.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12886','477','1','1714','6.99','2005-06-16 14:29:59.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12887','477','1','2187','2.99','2005-06-18 01:17:27.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12888','477','1','2306','10.99','2005-06-18 08:33:23.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12889','477','2','2676','4.99','2005-06-19 11:54:57.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12890','477','2','4237','5.99','2005-07-07 13:16:55.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12891','477','1','4283','2.99','2005-07-07 15:29:35.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12892','477','2','4956','7.99','2005-07-08 23:17:10.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12893','477','2','6265','2.99','2005-07-11 15:43:51.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12894','477','2','7302','2.99','2005-07-27 12:52:13.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12895','477','2','7904','10.99','2005-07-28 11:25:39.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12896','477','1','8515','6.99','2005-07-29 09:55:20.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12897','477','1','8821','5.99','2005-07-29 22:18:12.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12898','477','2','8857','2.99','2005-07-29 23:44:22.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12899','477','2','9446','8.99','2005-07-30 21:53:01.000','2006-02-15 22:19:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12900','477','1','10500','4.99','2005-08-01 11:01:01.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12901','477','2','10912','0.99','2005-08-02 02:00:03.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12902','477','2','12420','4.99','2005-08-18 10:01:50.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12903','477','1','13002','0.99','2005-08-19 07:37:58.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12904','477','2','14552','3.99','2005-08-21 15:59:27.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12905','477','2','15091','2.99','2005-08-22 11:34:43.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12906','477','1','15929','2.99','2005-08-23 18:23:30.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12907','478','1','1708','0.99','2005-06-16 14:08:44.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12908','478','2','2358','4.99','2005-06-18 13:00:51.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12909','478','1','2529','6.99','2005-06-19 01:18:27.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12910','478','2','2616','8.99','2005-06-19 07:33:00.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12911','478','2','2765','4.99','2005-06-19 17:34:39.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12912','478','2','3259','4.99','2005-06-21 03:57:15.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12913','478','1','3691','4.99','2005-07-06 09:46:12.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12914','478','1','5837','4.99','2005-07-10 16:57:50.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12915','478','1','7522','2.99','2005-07-27 21:11:03.000','2006-02-15 22:19:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12916','478','2','8488','4.99','2005-07-29 08:57:38.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12917','478','1','9665','4.99','2005-07-31 06:17:33.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12918','478','2','10016','4.99','2005-07-31 18:13:06.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12919','478','2','10127','0.99','2005-07-31 21:39:48.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12920','478','1','11906','2.99','2005-08-17 15:40:46.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12921','478','2','13162','2.99','2005-08-19 13:28:26.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12922','478','2','13507','4.99','2005-08-20 02:10:27.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12923','478','1','15027','4.99','2005-08-22 09:03:04.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12924','478','2','15188','4.99','2005-08-22 15:55:48.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12925','478','1','15724','4.99','2005-08-23 11:22:09.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12926','479','2','132','3.99','2005-05-25 21:46:54.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12927','479','1','709','7.99','2005-05-29 03:48:01.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12928','479','1','1902','2.99','2005-06-17 04:35:52.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12929','479','2','1947','3.99','2005-06-17 08:02:20.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12930','479','2','1987','2.99','2005-06-17 10:40:36.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12931','479','2','2071','3.99','2005-06-17 16:33:17.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12932','479','2','2376','2.99','2005-06-18 14:55:30.000','2006-02-15 22:19:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12933','479','2','2764','6.99','2005-06-19 17:27:25.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12934','479','2','3537','6.99','2005-07-06 01:36:53.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12935','479','1','3798','0.99','2005-07-06 14:57:53.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12936','479','2','4183','8.99','2005-07-07 10:28:33.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12937','479','1','5481','0.99','2005-07-09 23:51:57.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12938','479','1','5751','4.99','2005-07-10 12:25:11.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12939','479','2','6084','7.99','2005-07-11 05:16:20.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12940','479','1','6421','1.99','2005-07-11 23:45:25.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12941','479','1','6597','0.99','2005-07-12 07:37:02.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12942','479','2','6849','8.99','2005-07-12 19:29:19.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12943','479','1','7060','7.99','2005-07-27 03:51:04.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12944','479','2','7893','2.99','2005-07-28 10:49:27.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12945','479','1','9347','5.99','2005-07-30 18:16:03.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12946','479','1','9439','8.99','2005-07-30 21:38:12.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12947','479','2','9697','2.99','2005-07-31 07:23:11.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12948','479','2','9754','7.99','2005-07-31 09:23:43.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12949','479','2','10303','4.99','2005-08-01 04:13:33.000','2006-02-15 22:19:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12950','479','2','11109','4.99','2005-08-02 08:20:29.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12951','479','2','11584','1.99','2005-08-17 02:13:26.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12952','479','2','11835','4.99','2005-08-17 13:03:13.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12953','479','2','12401','0.99','2005-08-18 09:20:51.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12954','479','2','13078','8.99','2005-08-19 10:16:43.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12955','479','1','13974','2.99','2005-08-20 18:54:59.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12956','479','1','12101','0.99','2006-02-14 15:16:03.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12957','480','1','518','0.99','2005-05-28 03:18:02.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12958','480','1','720','6.99','2005-05-29 05:17:30.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12959','480','2','822','9.99','2005-05-29 21:36:00.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12960','480','1','1353','0.99','2005-06-15 13:13:36.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12961','480','1','1733','0.99','2005-06-16 15:37:07.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12962','480','2','3507','7.99','2005-07-06 00:23:43.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12963','480','2','5633','2.99','2005-07-10 06:22:24.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12964','480','1','6191','2.99','2005-07-11 11:37:52.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12965','480','1','7257','2.99','2005-07-27 11:04:17.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12966','480','2','7910','9.99','2005-07-28 11:44:56.000','2006-02-15 22:19:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12967','480','2','8847','4.99','2005-07-29 23:13:41.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12968','480','1','8967','6.99','2005-07-30 03:56:55.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12969','480','2','9332','4.99','2005-07-30 17:53:39.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12970','480','2','10808','1.99','2005-08-01 22:37:11.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12971','480','2','11017','0.99','2005-08-02 05:19:51.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12972','480','1','11369','5.99','2005-08-02 18:04:41.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12973','480','2','12905','4.99','2005-08-19 04:13:37.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12974','480','2','13092','0.99','2005-08-19 10:41:09.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12975','480','2','13131','9.99','2005-08-19 12:08:13.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12976','480','1','13831','4.99','2005-08-20 13:59:35.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12977','480','2','15363','2.99','2005-08-22 21:41:40.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12978','480','2','15579','4.99','2005-08-23 05:38:41.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12979','481','2','1109','5.99','2005-05-31 15:12:15.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12980','481','2','1168','2.99','2005-06-14 23:35:09.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12981','481','2','2296','4.99','2005-06-18 08:10:42.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12982','481','2','3285','4.99','2005-06-21 06:30:13.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12983','481','2','3293','0.99','2005-06-21 06:59:33.000','2006-02-15 22:19:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12984','481','1','3863','0.99','2005-07-06 17:40:18.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12985','481','1','4473','2.99','2005-07-08 00:22:10.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12986','481','1','4505','1.99','2005-07-08 02:20:04.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12987','481','1','4532','0.99','2005-07-08 03:30:39.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12988','481','1','4668','10.99','2005-07-08 10:11:45.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12989','481','2','5711','2.99','2005-07-10 10:37:20.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12990','481','1','6044','0.99','2005-07-11 03:18:39.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12991','481','1','7228','4.99','2005-07-27 09:55:33.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12992','481','2','7836','7.99','2005-07-28 08:55:27.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12993','481','1','8243','6.99','2005-07-29 00:35:33.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12994','481','2','8271','6.99','2005-07-29 01:27:44.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12995','481','1','9481','4.99','2005-07-30 23:26:05.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12996','481','1','10018','3.99','2005-07-31 18:15:14.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12997','481','2','11207','0.99','2005-08-02 12:01:30.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12998','481','2','11387','2.99','2005-08-02 18:32:38.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('12999','481','1','11752','4.99','2005-08-17 09:10:55.000','2006-02-15 22:19:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13000','481','1','11885','4.99','2005-08-17 14:53:53.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13001','481','2','12160','2.99','2005-08-18 00:37:59.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13002','481','1','12981','4.99','2005-08-19 07:04:00.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13003','481','2','13497','2.99','2005-08-20 01:46:38.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13004','481','2','13878','4.99','2005-08-20 15:17:38.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13005','481','1','13990','1.99','2005-08-20 19:29:23.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13006','481','2','14280','4.99','2005-08-21 06:39:58.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13007','481','2','14584','0.99','2005-08-21 17:15:33.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13008','482','1','259','8.99','2005-05-26 15:32:46.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13009','482','2','680','2.99','2005-05-28 23:27:26.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13010','482','2','879','0.99','2005-05-30 05:49:42.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13011','482','2','3048','2.99','2005-06-20 12:49:55.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13012','482','2','3255','0.99','2005-06-21 03:39:52.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13013','482','2','3650','2.99','2005-07-06 07:34:15.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13014','482','1','4768','4.99','2005-07-08 15:28:20.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13015','482','1','5334','4.99','2005-07-09 17:00:13.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13016','482','1','5466','4.99','2005-07-09 23:03:21.000','2006-02-15 22:19:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13017','482','2','5810','8.99','2005-07-10 15:22:04.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13018','482','2','5880','2.99','2005-07-10 19:14:58.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13019','482','1','6355','8.99','2005-07-11 20:56:29.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13020','482','2','6447','7.99','2005-07-12 00:45:17.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13021','482','2','6844','5.99','2005-07-12 19:14:53.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13022','482','2','7840','6.99','2005-07-28 09:03:02.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13023','482','2','8584','2.99','2005-07-29 12:07:53.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13024','482','2','9874','6.99','2005-07-31 13:32:31.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13025','482','2','10824','4.99','2005-08-01 23:00:22.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13026','482','2','10839','2.99','2005-08-01 23:37:39.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13027','482','2','11498','6.99','2005-08-16 22:52:54.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13028','482','1','13174','4.99','2005-08-19 13:52:50.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13029','482','2','14383','4.99','2005-08-21 10:02:05.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13030','482','2','14732','0.99','2005-08-21 22:22:29.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13031','482','2','14891','6.99','2005-08-22 04:11:02.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13032','482','2','14995','4.99','2005-08-22 07:52:31.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13033','482','1','15391','0.99','2005-08-22 23:01:45.000','2006-02-15 22:19:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13034','482','1','15849','5.99','2005-08-23 15:41:20.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13035','482','2','15865','2.99','2005-08-23 16:18:25.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13036','482','1','15879','3.99','2005-08-23 16:42:53.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13037','483','2','742','6.99','2005-05-29 08:36:30.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13038','483','1','2855','4.99','2005-06-19 23:11:49.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13039','483','2','2867','0.99','2005-06-20 00:08:38.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13040','483','1','3380','8.99','2005-06-21 13:58:46.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13041','483','2','3559','4.99','2005-07-06 02:49:42.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13042','483','1','5823','4.99','2005-07-10 16:19:52.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13043','483','2','6478','4.99','2005-07-12 01:41:44.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13044','483','2','6899','9.99','2005-07-12 21:44:16.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13045','483','2','7137','0.99','2005-07-27 06:40:41.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13046','483','1','7381','4.99','2005-07-27 15:40:26.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13047','483','1','7669','4.99','2005-07-28 02:44:07.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13048','483','1','8057','7.99','2005-07-28 17:07:13.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13049','483','1','8356','4.99','2005-07-29 04:58:56.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13050','483','2','10677','0.99','2005-08-01 17:24:35.000','2006-02-15 22:19:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13051','483','1','10953','6.99','2005-08-02 03:28:38.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13052','483','2','12331','3.99','2005-08-18 06:47:19.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13053','483','2','12695','2.99','2005-08-18 20:11:35.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13054','483','2','12875','2.99','2005-08-19 03:10:21.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13055','484','2','35','4.99','2005-05-25 04:24:36.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13056','484','2','668','2.99','2005-05-28 21:54:45.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13057','484','2','727','2.99','2005-05-29 06:08:15.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13058','484','1','1351','3.99','2005-06-15 12:51:03.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13059','484','2','1643','3.99','2005-06-16 08:55:35.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13060','484','1','2015','4.99','2005-06-17 12:16:29.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13061','484','1','2044','5.99','2005-06-17 14:37:57.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13062','484','1','4214','4.99','2005-07-07 11:54:33.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13063','484','1','5389','2.99','2005-07-09 19:25:45.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13064','484','2','5708','6.99','2005-07-10 10:29:19.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13065','484','1','5852','0.99','2005-07-10 17:43:30.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13066','484','2','5866','6.99','2005-07-10 18:35:14.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13067','484','2','5977','5.99','2005-07-11 00:16:38.000','2006-02-15 22:19:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13068','484','2','6296','2.99','2005-07-11 17:34:04.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13069','484','1','6863','6.99','2005-07-12 19:58:34.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13070','484','2','7440','4.99','2005-07-27 17:43:27.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13071','484','2','7548','2.99','2005-07-27 21:53:18.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13072','484','2','8508','0.99','2005-07-29 09:34:38.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13073','484','2','9141','5.99','2005-07-30 10:16:04.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13074','484','2','9414','9.99','2005-07-30 20:46:02.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13075','484','1','9769','4.99','2005-07-31 09:52:16.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13076','484','2','10166','8.99','2005-07-31 23:22:20.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13077','484','2','11871','4.99','2005-08-17 14:11:44.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13078','484','1','12024','0.99','2005-08-17 19:57:34.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13079','484','1','12771','4.99','2005-08-18 23:29:23.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13080','484','1','12993','7.99','2005-08-19 07:24:03.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13081','484','2','13160','0.99','2005-08-19 13:21:04.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13082','484','2','13956','3.99','2005-08-20 18:08:19.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13083','484','1','15607','2.99','2005-08-23 06:54:06.000','2006-02-15 22:19:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13084','484','1','16026','4.99','2005-08-23 21:49:22.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13085','485','1','1009','2.99','2005-05-31 01:47:35.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13086','485','2','1684','2.99','2005-06-16 11:57:34.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13087','485','1','1721','8.99','2005-06-16 15:01:36.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13088','485','2','3579','0.99','2005-07-06 03:47:47.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13089','485','1','3899','1.99','2005-07-06 19:12:40.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13090','485','1','3904','0.99','2005-07-06 19:30:57.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13091','485','2','4137','3.99','2005-07-07 08:17:06.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13092','485','2','4667','2.99','2005-07-08 10:06:26.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13093','485','1','5193','2.99','2005-07-09 10:28:18.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13094','485','1','5343','3.99','2005-07-09 17:23:43.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13095','485','1','5367','3.99','2005-07-09 18:39:15.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13096','485','1','5820','4.99','2005-07-10 16:04:59.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13097','485','2','6810','4.99','2005-07-12 17:54:19.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13098','485','2','6902','4.99','2005-07-12 21:57:16.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13099','485','1','7144','4.99','2005-07-27 07:00:37.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13100','485','2','8984','6.99','2005-07-30 04:31:50.000','2006-02-15 22:19:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13101','485','2','9039','2.99','2005-07-30 06:24:28.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13102','485','1','9053','4.99','2005-07-30 07:07:39.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13103','485','2','9189','2.99','2005-07-30 12:20:59.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13104','485','1','9535','2.99','2005-07-31 01:18:53.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13105','485','1','9565','0.99','2005-07-31 02:32:00.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13106','485','1','10771','4.99','2005-08-01 20:49:35.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13107','485','2','10772','6.99','2005-08-01 20:51:10.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13108','485','2','11188','3.99','2005-08-02 11:17:11.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13109','485','1','11921','4.99','2005-08-17 16:12:27.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13110','485','1','11974','2.99','2005-08-17 17:56:48.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13111','485','2','12261','8.99','2005-08-18 04:16:06.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13112','485','2','12487','0.99','2005-08-18 12:45:24.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13113','485','2','13055','2.99','2005-08-19 09:36:28.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13114','486','1','909','8.99','2005-05-30 10:43:38.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13115','486','2','946','2.99','2005-05-30 15:35:08.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13116','486','2','1129','0.99','2005-05-31 18:00:48.000','2006-02-15 22:19:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13117','486','1','2036','4.99','2005-06-17 13:46:52.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13118','486','1','2102','5.99','2005-06-17 19:05:22.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13119','486','2','2566','2.99','2005-06-19 03:45:39.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13120','486','2','2797','2.99','2005-06-19 19:04:32.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13121','486','1','3835','4.99','2005-07-06 16:22:45.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13122','486','2','4110','4.99','2005-07-07 06:44:27.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13123','486','1','4205','4.99','2005-07-07 11:25:39.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13124','486','1','4381','2.99','2005-07-07 20:37:53.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13125','486','1','4772','7.99','2005-07-08 15:41:11.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13126','486','2','5006','4.99','2005-07-09 01:24:07.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13127','486','2','6383','4.99','2005-07-11 22:06:53.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13128','486','2','7127','4.99','2005-07-27 06:13:48.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13129','486','2','7446','4.99','2005-07-27 18:00:24.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13130','486','2','8425','8.99','2005-07-29 07:06:21.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13131','486','2','9142','0.99','2005-07-30 10:21:03.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13132','486','1','10079','2.99','2005-07-31 20:05:45.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13133','486','2','10902','4.99','2005-08-02 01:35:46.000','2006-02-15 22:20:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13134','486','1','12465','0.99','2005-08-18 11:35:02.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13135','486','2','12609','2.99','2005-08-18 17:06:22.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13136','486','1','13048','4.99','2005-08-19 09:25:06.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13137','486','2','13803','0.99','2005-08-20 12:46:17.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13138','486','2','14251','4.99','2005-08-21 05:42:20.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13139','486','2','14284','4.99','2005-08-21 06:44:37.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13140','487','2','3100','3.99','2005-06-20 16:47:57.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13141','487','2','3994','1.99','2005-07-06 23:39:01.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13142','487','2','4854','2.99','2005-07-08 18:44:44.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13143','487','1','5634','3.99','2005-07-10 06:25:48.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13144','487','1','6928','2.99','2005-07-26 22:56:21.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13145','487','1','7097','2.99','2005-07-27 04:56:09.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13146','487','1','7788','0.99','2005-07-28 07:21:55.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13147','487','2','7949','4.99','2005-07-28 13:07:24.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13148','487','2','8510','1.99','2005-07-29 09:41:38.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13149','487','2','8689','2.99','2005-07-29 16:38:58.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13150','487','1','8814','4.99','2005-07-29 21:49:43.000','2006-02-15 22:20:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13151','487','1','8988','7.99','2005-07-30 04:38:49.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13152','487','2','9457','2.99','2005-07-30 22:23:05.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13153','487','1','9490','3.99','2005-07-30 23:45:09.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13154','487','2','10123','0.99','2005-07-31 21:30:46.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13155','487','2','10511','2.99','2005-08-01 11:32:16.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13156','487','2','10555','6.99','2005-08-01 12:56:38.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13157','487','1','10832','6.99','2005-08-01 23:24:53.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13158','487','2','10877','5.99','2005-08-02 00:32:04.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13159','487','1','10978','9.99','2005-08-02 04:12:27.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13160','487','1','11669','5.99','2005-08-17 05:48:51.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13161','487','2','11890','5.99','2005-08-17 15:08:43.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13162','487','1','12493','7.99','2005-08-18 12:53:38.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13163','487','2','13210','4.99','2005-08-19 15:23:38.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13164','487','1','13658','7.99','2005-08-20 08:02:22.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13165','487','2','15665','2.99','2005-08-23 08:59:12.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13166','488','2','1655','3.99','2005-06-16 09:51:39.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13167','488','2','1704','5.99','2005-06-16 13:45:56.000','2006-02-15 22:20:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13168','488','2','4133','6.99','2005-07-07 08:12:26.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13169','488','2','4233','5.99','2005-07-07 13:00:20.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13170','488','1','5141','8.99','2005-07-09 08:05:14.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13171','488','2','6548','5.99','2005-07-12 05:00:46.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13172','488','1','7373','5.99','2005-07-27 15:19:33.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13173','488','1','8005','2.99','2005-07-28 15:15:11.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13174','488','2','8050','0.99','2005-07-28 16:55:47.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13175','488','2','8064','2.99','2005-07-28 17:15:38.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13176','488','2','9083','5.99','2005-07-30 08:14:27.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13177','488','1','9532','2.99','2005-07-31 01:16:51.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13178','488','1','9537','0.99','2005-07-31 01:23:00.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13179','488','2','10474','5.99','2005-08-01 10:01:42.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13180','488','1','10767','0.99','2005-08-01 20:37:23.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13181','488','1','11774','3.99','2005-08-17 10:20:39.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13182','488','2','12483','5.99','2005-08-18 12:38:37.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13183','488','2','13446','4.99','2005-08-20 00:06:13.000','2006-02-15 22:20:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13184','488','2','14948','5.99','2005-08-22 06:10:53.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13185','488','2','15259','0.99','2005-08-22 18:23:23.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13186','488','1','15350','2.99','2005-08-22 21:15:29.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13187','488','2','15499','2.99','2005-08-23 02:37:19.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13188','489','1','219','4.99','2005-05-26 09:41:45.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13189','489','2','513','2.99','2005-05-28 03:08:10.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13190','489','2','1614','3.99','2005-06-16 06:58:02.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13191','489','1','2201','0.99','2005-06-18 02:08:27.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13192','489','1','2370','7.99','2005-06-18 14:29:54.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13193','489','1','2802','4.99','2005-06-19 19:18:17.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13194','489','2','3816','2.99','2005-07-06 15:27:04.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13195','489','1','4774','3.99','2005-07-08 15:42:28.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13196','489','1','6963','4.99','2005-07-27 00:13:02.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13197','489','2','9231','0.99','2005-07-30 13:42:15.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13198','489','1','9459','4.99','2005-07-30 22:24:46.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13199','489','2','11119','9.99','2005-08-02 08:44:44.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13200','489','1','11705','4.99','2005-08-17 07:22:25.000','2006-02-15 22:20:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13201','489','1','12496','6.99','2005-08-18 12:58:25.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13202','489','2','12701','6.99','2005-08-18 20:26:47.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13203','489','1','13462','4.99','2005-08-20 00:49:19.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13204','489','2','14095','5.99','2005-08-21 00:25:45.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13205','489','2','14328','2.99','2005-08-21 08:18:20.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13206','489','2','14424','6.99','2005-08-21 11:24:11.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13207','489','1','15205','0.99','2005-08-22 16:32:23.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13208','489','1','15981','4.99','2005-08-23 20:12:17.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13209','490','2','585','6.99','2005-05-28 11:50:45.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13210','490','2','676','4.99','2005-05-28 22:27:51.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13211','490','1','1665','3.99','2005-06-16 10:16:02.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13212','490','1','3476','4.99','2005-07-05 23:02:37.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13213','490','2','3932','4.99','2005-07-06 21:06:17.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13214','490','1','4083','2.99','2005-07-07 05:13:15.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13215','490','1','4906','5.99','2005-07-08 20:59:13.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13216','490','2','5173','7.99','2005-07-09 09:31:44.000','2006-02-15 22:20:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13217','490','2','5489','0.99','2005-07-10 00:07:03.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13218','490','1','5654','4.99','2005-07-10 07:24:46.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13219','490','2','6230','2.99','2005-07-11 14:02:19.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13220','490','1','6803','4.99','2005-07-12 17:21:49.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13221','490','2','6888','2.99','2005-07-12 21:01:11.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13222','490','2','6923','8.99','2005-07-12 22:40:48.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13223','490','1','8552','5.99','2005-07-29 11:14:02.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13224','490','2','9108','4.99','2005-07-30 08:56:36.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13225','490','1','9554','0.99','2005-07-31 02:06:49.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13226','490','1','10786','7.99','2005-08-01 21:29:34.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13227','490','1','10955','7.99','2005-08-02 03:32:34.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13228','490','2','11965','2.99','2005-08-17 17:39:45.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13229','490','2','14557','4.99','2005-08-21 16:05:11.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13230','490','2','14761','6.99','2005-08-21 23:30:28.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13231','490','2','15276','2.99','2005-08-22 18:59:01.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13232','490','1','15448','2.99','2005-08-23 00:55:24.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13233','491','1','484','2.99','2005-05-27 23:26:45.000','2006-02-15 22:20:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13234','491','2','1097','0.99','2005-05-31 13:38:42.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13235','491','2','1198','2.99','2005-06-15 01:48:58.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13236','491','1','1371','4.99','2005-06-15 14:38:15.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13237','491','2','2026','4.99','2005-06-17 13:05:38.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13238','491','1','2259','4.99','2005-06-18 05:37:45.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13239','491','2','2391','4.99','2005-06-18 15:33:30.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13240','491','2','3031','4.99','2005-06-20 11:52:49.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13241','491','1','3440','3.99','2005-06-21 19:58:18.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13242','491','1','4046','8.99','2005-07-07 03:27:59.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13243','491','1','4392','2.99','2005-07-07 21:11:02.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13244','491','2','5134','6.99','2005-07-09 07:53:12.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13245','491','1','5889','4.99','2005-07-10 19:54:41.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13246','491','2','6171','2.99','2005-07-11 10:29:35.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13247','491','2','7019','3.99','2005-07-27 02:20:26.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13248','491','2','7281','6.99','2005-07-27 11:59:20.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13249','491','2','7688','7.99','2005-07-28 03:20:47.000','2006-02-15 22:20:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13250','491','1','7871','6.99','2005-07-28 10:16:37.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13251','491','2','10036','2.99','2005-07-31 18:47:20.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13252','491','2','10178','4.99','2005-07-31 23:43:04.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13253','491','2','10974','6.99','2005-08-02 04:10:52.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13254','491','1','11048','4.99','2005-08-02 06:15:07.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13255','491','1','11590','0.99','2005-08-17 02:28:33.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13256','491','1','11840','4.99','2005-08-17 13:09:01.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13257','491','2','13607','2.99','2005-08-20 06:08:42.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13258','491','1','14780','0.99','2005-08-22 00:06:33.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13259','491','2','15685','5.99','2005-08-23 09:41:28.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13260','492','1','84','2.99','2005-05-25 12:36:30.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13261','492','2','1691','1.99','2005-06-16 12:24:28.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13262','492','2','1855','4.99','2005-06-17 00:54:58.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13263','492','2','1956','4.99','2005-06-17 08:43:32.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13264','492','1','3298','9.99','2005-06-21 07:09:44.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13265','492','2','4128','8.99','2005-07-07 07:35:25.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13266','492','1','4142','2.99','2005-07-07 08:19:45.000','2006-02-15 22:20:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13267','492','2','4258','6.99','2005-07-07 14:20:59.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13268','492','2','5325','0.99','2005-07-09 16:35:47.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13269','492','1','5609','0.99','2005-07-10 05:09:46.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13270','492','1','6257','2.99','2005-07-11 15:23:46.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13271','492','2','7203','2.99','2005-07-27 09:01:23.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13272','492','2','12971','4.99','2005-08-19 06:42:43.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13273','492','1','14255','2.99','2005-08-21 05:51:37.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13274','492','2','15822','0.99','2005-08-23 15:05:59.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13275','492','1','15958','4.99','2005-08-23 19:22:36.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13276','493','1','543','7.99','2005-05-28 06:43:34.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13277','493','2','2109','3.99','2005-06-17 19:41:42.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13278','493','1','2365','4.99','2005-06-18 13:45:34.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13279','493','1','2579','0.99','2005-06-19 04:40:44.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13280','493','1','2864','2.99','2005-06-20 00:00:52.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13281','493','2','3586','4.99','2005-07-06 04:24:42.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13282','493','1','3655','5.99','2005-07-06 07:52:54.000','2006-02-15 22:20:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13283','493','1','6549','7.99','2005-07-12 05:02:01.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13284','493','1','6552','4.99','2005-07-12 05:05:06.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13285','493','1','7026','2.99','2005-07-27 02:48:58.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13286','493','2','7043','7.99','2005-07-27 03:24:23.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13287','493','1','8298','4.99','2005-07-29 02:47:36.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13288','493','1','8616','2.99','2005-07-29 13:39:09.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13289','493','1','10777','6.99','2005-08-01 21:03:50.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13290','493','2','10885','7.99','2005-08-02 00:51:37.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13291','493','1','13638','2.99','2005-08-20 07:21:15.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13292','493','2','13675','6.99','2005-08-20 08:32:51.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13293','493','1','14117','4.99','2005-08-21 01:11:59.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13294','493','2','15177','4.99','2005-08-22 15:34:49.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13295','493','1','15355','0.99','2005-08-22 21:19:24.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13296','493','1','15490','6.99','2005-08-23 02:08:18.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13297','493','2','15878','2.99','2005-08-23 16:34:31.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13298','493','2','14160','2.99','2006-02-14 15:16:03.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13299','494','1','608','4.99','2005-05-28 15:03:44.000','2006-02-15 22:20:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13300','494','1','1683','2.99','2005-06-16 11:54:55.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13301','494','1','3511','0.99','2005-07-06 00:42:01.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13302','494','2','3803','2.99','2005-07-06 15:06:55.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13303','494','2','3913','0.99','2005-07-06 20:11:00.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13304','494','1','4086','3.99','2005-07-07 05:26:06.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13305','494','2','4397','5.99','2005-07-07 21:14:54.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13306','494','2','4551','7.99','2005-07-08 04:36:21.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13307','494','2','5083','4.99','2005-07-09 05:30:32.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13308','494','1','5180','2.99','2005-07-09 10:06:53.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13309','494','2','7258','3.99','2005-07-27 11:05:54.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13310','494','2','7546','8.99','2005-07-27 21:50:09.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13311','494','2','7737','1.99','2005-07-28 05:15:03.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13312','494','2','8333','2.99','2005-07-29 04:16:40.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13313','494','2','8895','2.99','2005-07-30 00:49:17.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13314','494','1','8934','4.99','2005-07-30 02:37:05.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13315','494','2','9012','4.99','2005-07-30 05:18:57.000','2006-02-15 22:20:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13316','494','2','9510','7.99','2005-07-31 00:24:17.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13317','494','1','9799','2.99','2005-07-31 10:58:32.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13318','494','2','9943','7.99','2005-07-31 15:37:29.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13319','494','1','10403','0.99','2005-08-01 07:30:45.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13320','494','1','10623','2.99','2005-08-01 15:22:38.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13321','494','2','11152','3.99','2005-08-02 09:53:36.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13322','494','1','11987','5.99','2005-08-17 18:21:59.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13323','494','2','13094','0.99','2005-08-19 10:47:58.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13324','494','2','13301','3.99','2005-08-19 18:53:15.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13325','494','2','14634','5.99','2005-08-21 18:51:28.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13326','494','1','14832','4.99','2005-08-22 01:43:29.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13327','494','1','15086','6.99','2005-08-22 11:21:08.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13328','494','2','15156','9.99','2005-08-22 14:29:11.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13329','494','2','15291','4.99','2005-08-22 19:28:04.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13330','495','2','623','4.99','2005-05-28 16:01:28.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13331','495','2','741','4.99','2005-05-29 08:35:49.000','2006-02-15 22:20:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13332','495','2','2074','2.99','2005-06-17 16:40:03.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13333','495','1','2349','4.99','2005-06-18 12:25:14.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13334','495','1','2549','7.99','2005-06-19 02:46:39.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13335','495','1','3129','3.99','2005-06-20 18:57:48.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13336','495','2','3966','2.99','2005-07-06 22:38:49.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13337','495','2','5484','7.99','2005-07-09 23:54:37.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13338','495','2','6426','7.99','2005-07-11 23:56:38.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13339','495','2','7191','2.99','2005-07-27 08:36:15.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13340','495','1','8151','0.99','2005-07-28 20:50:52.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13341','495','1','8383','1.99','2005-07-29 05:36:47.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13342','495','1','8451','5.99','2005-07-29 07:44:56.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13343','495','1','8672','5.99','2005-07-29 15:49:48.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13344','495','1','9387','9.99','2005-07-30 19:27:05.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13345','495','1','9741','4.99','2005-07-31 09:09:22.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13346','495','2','10065','4.99','2005-07-31 19:27:34.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13347','495','2','10643','5.99','2005-08-01 15:48:33.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13348','495','1','10783','4.99','2005-08-01 21:23:37.000','2006-02-15 22:20:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13349','495','1','12782','5.99','2005-08-18 23:56:23.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13350','495','2','12837','0.99','2005-08-19 01:51:09.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13351','495','2','13205','3.99','2005-08-19 15:05:26.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13352','495','2','13445','2.99','2005-08-20 00:05:33.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13353','495','2','13818','4.99','2005-08-20 13:20:09.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13354','495','1','15984','2.99','2005-08-23 20:16:27.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13355','495','2','13753','0.99','2006-02-14 15:16:03.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13356','496','2','322','4.99','2005-05-27 00:47:35.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13357','496','2','966','0.99','2005-05-30 19:00:37.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13358','496','1','2567','2.99','2005-06-19 04:04:46.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13359','496','2','3569','3.99','2005-07-06 03:17:23.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13360','496','1','4070','2.99','2005-07-07 04:37:09.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13361','496','1','4261','4.99','2005-07-07 14:23:56.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13362','496','1','4269','0.99','2005-07-07 14:38:33.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13363','496','1','5559','5.99','2005-07-10 03:13:07.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13364','496','2','5949','4.99','2005-07-10 23:13:00.000','2006-02-15 22:20:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13365','496','1','7133','2.99','2005-07-27 06:29:23.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13366','496','2','8221','2.99','2005-07-28 23:47:19.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13367','496','1','11060','7.99','2005-08-02 06:48:18.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13368','496','2','11448','4.99','2005-08-02 20:44:33.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13369','496','1','11893','3.99','2005-08-17 15:13:29.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13370','496','2','12605','4.99','2005-08-18 16:59:37.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13371','496','1','13569','5.99','2005-08-20 05:02:59.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13372','496','2','14013','6.99','2005-08-20 20:42:50.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13373','496','1','14332','7.99','2005-08-21 08:30:43.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13374','496','1','14348','0.99','2005-08-21 08:54:26.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13375','496','2','15750','2.99','2005-08-23 12:36:05.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13376','496','1','13182','2.99','2006-02-14 15:16:03.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13377','497','1','1100','7.99','2005-05-31 14:03:21.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13378','497','2','2180','8.99','2005-06-18 00:47:43.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13379','497','1','2298','5.99','2005-06-18 08:18:29.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13380','497','1','2406','2.99','2005-06-18 16:39:37.000','2006-02-15 22:20:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13381','497','2','2818','4.99','2005-06-19 20:05:52.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13382','497','1','3696','2.99','2005-07-06 10:04:55.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13383','497','2','4218','7.99','2005-07-07 12:10:24.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13384','497','1','4516','4.99','2005-07-08 02:43:41.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13385','497','1','4578','0.99','2005-07-08 06:00:17.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13386','497','2','4795','0.99','2005-07-08 16:32:54.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13387','497','1','5030','4.99','2005-07-09 02:35:43.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13388','497','1','5239','4.99','2005-07-09 13:12:35.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13389','497','2','7603','2.99','2005-07-27 23:54:44.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13390','497','2','8011','2.99','2005-07-28 15:26:39.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13391','497','1','8150','6.99','2005-07-28 20:50:41.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13392','497','2','8813','6.99','2005-07-29 21:47:55.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13393','497','2','8867','4.99','2005-07-30 00:02:18.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13394','497','1','9273','9.99','2005-07-30 15:05:36.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13395','497','2','9850','4.99','2005-07-31 12:46:52.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13396','497','2','10760','7.99','2005-08-01 20:25:20.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13397','497','1','12123','0.99','2005-08-17 23:22:18.000','2006-02-15 22:20:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13398','497','1','13159','4.99','2005-08-19 13:19:59.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13399','497','1','13289','2.99','2005-08-19 18:31:30.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13400','497','2','14134','0.99','2005-08-21 01:45:54.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13401','497','1','15362','5.99','2005-08-22 21:40:20.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13402','497','2','15633','0.99','2005-08-23 07:31:10.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13403','497','1','15919','0.99','2005-08-23 18:01:31.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13404','497','1','12698','4.99','2006-02-14 15:16:03.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13405','498','2','49','2.99','2005-05-25 06:39:35.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13406','498','1','429','8.99','2005-05-27 16:21:26.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13407','498','2','718','2.99','2005-05-29 04:52:23.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13408','498','1','1253','6.99','2005-06-15 06:06:33.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13409','498','1','1782','2.99','2005-06-16 19:21:12.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13410','498','1','2344','2.99','2005-06-18 12:01:47.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13411','498','1','2449','4.99','2005-06-18 19:18:36.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13412','498','1','3098','0.99','2005-06-20 16:37:01.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13413','498','2','3360','0.99','2005-06-21 12:12:41.000','2006-02-15 22:20:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13414','498','2','3828','0.99','2005-07-06 15:57:30.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13415','498','2','3856','2.99','2005-07-06 17:04:46.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13416','498','1','4311','4.99','2005-07-07 17:31:14.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13417','498','2','4972','2.99','2005-07-08 23:56:09.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13418','498','1','5286','2.99','2005-07-09 15:11:41.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13419','498','2','5884','0.99','2005-07-10 19:31:38.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13420','498','1','6058','2.99','2005-07-11 04:03:51.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13421','498','1','6088','1.99','2005-07-11 05:40:35.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13422','498','1','7285','4.99','2005-07-27 12:14:06.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13423','498','1','7286','6.99','2005-07-27 12:23:49.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13424','498','1','7341','4.99','2005-07-27 14:23:55.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13425','498','2','8020','4.99','2005-07-28 15:43:32.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13426','498','1','8229','2.99','2005-07-29 00:09:08.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13427','498','2','9021','0.99','2005-07-30 05:34:24.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13428','498','2','9689','4.99','2005-07-31 07:00:08.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13429','498','1','10225','0.99','2005-08-01 01:38:40.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13430','498','1','11455','6.99','2005-08-02 21:07:06.000','2006-02-15 22:20:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13431','498','1','12893','2.99','2005-08-19 03:46:43.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13432','499','2','89','2.99','2005-05-25 14:28:29.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13433','499','1','1355','2.99','2005-06-15 13:13:59.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13434','499','2','1526','4.99','2005-06-16 00:27:51.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13435','499','2','1830','4.99','2005-06-16 22:18:43.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13436','499','2','3241','1.99','2005-06-21 02:54:32.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13437','499','1','3794','4.99','2005-07-06 14:35:26.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13438','499','1','5022','2.99','2005-07-09 02:10:54.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13439','499','2','5392','2.99','2005-07-09 19:32:30.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13440','499','2','5427','3.99','2005-07-09 21:12:26.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13441','499','1','5956','4.99','2005-07-10 23:23:08.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13442','499','2','6723','4.99','2005-07-12 13:44:57.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13443','499','1','7800','0.99','2005-07-28 07:50:59.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13444','499','1','7831','0.99','2005-07-28 08:44:21.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13445','499','1','7898','6.99','2005-07-28 11:08:22.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13446','499','2','8130','4.99','2005-07-28 19:48:15.000','2006-02-15 22:20:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13447','499','1','8770','3.99','2005-07-29 19:53:50.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13448','499','1','9588','0.99','2005-07-31 03:13:13.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13449','499','2','10333','0.99','2005-08-01 04:58:32.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13450','499','2','10497','2.99','2005-08-01 10:55:59.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13451','499','1','11513','7.99','2005-08-16 23:51:33.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13452','499','2','11606','0.99','2005-08-17 03:32:43.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13453','499','2','11978','4.99','2005-08-17 18:02:10.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13454','499','1','12004','8.99','2005-08-17 18:56:53.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13455','499','1','12354','7.99','2005-08-18 07:34:07.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13456','499','1','12436','3.99','2005-08-18 10:41:05.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13457','499','1','12587','1.99','2005-08-18 16:03:13.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13458','499','2','12947','4.99','2005-08-19 05:54:21.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13459','499','2','13822','3.99','2005-08-20 13:39:28.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13460','499','1','14858','3.99','2005-08-22 02:46:18.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13461','499','1','15587','7.99','2005-08-23 06:00:28.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13462','500','1','112','8.99','2005-05-25 18:57:24.000','2006-02-15 22:20:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13463','500','1','389','8.99','2005-05-27 10:45:41.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13464','500','1','610','0.99','2005-05-28 15:15:25.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13465','500','1','1375','5.99','2005-06-15 14:54:56.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13466','500','2','1388','5.99','2005-06-15 15:48:41.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13467','500','2','2189','3.99','2005-06-18 01:20:26.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13468','500','2','2526','6.99','2005-06-19 01:03:07.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13469','500','1','2996','2.99','2005-06-20 09:20:29.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13470','500','2','3926','4.99','2005-07-06 20:42:35.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13471','500','1','4561','0.99','2005-07-08 05:02:43.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13472','500','2','4790','4.99','2005-07-08 16:25:27.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13473','500','2','6018','4.99','2005-07-11 02:06:36.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13474','500','2','6187','2.99','2005-07-11 11:28:51.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13475','500','2','6801','3.99','2005-07-12 17:09:08.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13476','500','1','7857','0.99','2005-07-28 09:49:40.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13477','500','1','7925','2.99','2005-07-28 12:10:02.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13478','500','1','8538','6.99','2005-07-29 10:45:17.000','2006-02-15 22:20:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13479','500','1','8925','0.99','2005-07-30 02:09:14.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13480','500','2','9290','3.99','2005-07-30 15:59:08.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13481','500','1','10947','6.99','2005-08-02 03:23:17.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13482','500','2','11218','1.99','2005-08-02 12:29:12.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13483','500','1','12639','2.99','2005-08-18 18:13:05.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13484','500','2','12813','2.99','2005-08-19 00:54:22.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13485','500','2','13628','4.99','2005-08-20 07:03:53.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13486','500','1','14407','0.99','2005-08-21 10:46:51.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13487','500','1','14964','4.99','2005-08-22 06:39:24.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13488','500','1','15584','2.99','2005-08-23 05:49:21.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13489','500','1','15853','2.99','2005-08-23 15:54:20.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13490','501','1','493','0.99','2005-05-28 00:34:11.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13491','501','1','605','1.99','2005-05-28 14:39:10.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13492','501','2','3222','5.99','2005-06-21 01:50:29.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13493','501','1','3412','7.99','2005-06-21 16:44:31.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13494','501','2','3541','6.99','2005-07-06 01:50:11.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13495','501','2','3723','6.99','2005-07-06 11:12:02.000','2006-02-15 22:20:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13496','501','2','4769','2.99','2005-07-08 15:29:16.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13497','501','2','5520','1.99','2005-07-10 01:30:41.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13498','501','2','6095','7.99','2005-07-11 06:06:41.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13499','501','1','7456','0.99','2005-07-27 18:34:53.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13500','501','1','8021','2.99','2005-07-28 15:45:24.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13501','501','2','8529','2.99','2005-07-29 10:24:31.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13502','501','1','9359','2.99','2005-07-30 18:39:28.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13503','501','1','10817','4.99','2005-08-01 22:51:08.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13504','501','2','11393','4.99','2005-08-02 18:44:29.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13505','501','1','11640','1.99','2005-08-17 04:44:33.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13506','501','2','11799','6.99','2005-08-17 11:25:25.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13507','501','1','12914','4.99','2005-08-19 04:25:59.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13508','501','2','13889','0.99','2005-08-20 15:40:06.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13509','501','1','15239','4.99','2005-08-22 17:46:17.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13510','501','1','15699','5.99','2005-08-23 10:20:35.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13511','502','2','258','2.99','2005-05-26 15:28:14.000','2006-02-15 22:20:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13512','502','1','861','0.99','2005-05-30 02:48:32.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13513','502','1','893','2.99','2005-05-30 08:06:59.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13514','502','2','965','0.99','2005-05-30 19:00:14.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13515','502','2','1696','7.99','2005-06-16 12:50:01.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13516','502','2','2420','0.99','2005-06-18 17:22:28.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13517','502','1','2911','0.99','2005-06-20 03:32:37.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13518','502','2','3614','2.99','2005-07-06 05:46:05.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13519','502','1','4606','2.99','2005-07-08 07:05:50.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13520','502','2','5368','5.99','2005-07-09 18:41:59.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13521','502','2','5662','2.99','2005-07-10 07:59:24.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13522','502','2','6414','7.99','2005-07-11 23:26:13.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13523','502','1','6760','8.99','2005-07-12 15:16:00.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13524','502','2','6828','2.99','2005-07-12 18:38:51.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13525','502','2','6924','8.99','2005-07-26 22:51:53.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13526','502','2','7213','3.99','2005-07-27 09:22:29.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13527','502','1','7255','4.99','2005-07-27 10:49:54.000','2006-02-15 22:20:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13528','502','1','7757','4.99','2005-07-28 06:23:00.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13529','502','1','7884','4.99','2005-07-28 10:37:24.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13530','502','2','8034','4.99','2005-07-28 16:20:26.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13531','502','2','9232','0.99','2005-07-30 13:43:00.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13532','502','1','9599','4.99','2005-07-31 03:32:06.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13533','502','2','10390','4.99','2005-08-01 06:46:48.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13534','502','1','10938','0.99','2005-08-02 03:05:22.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13535','502','2','11036','4.99','2005-08-02 05:56:29.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13536','502','1','11301','0.99','2005-08-02 15:37:59.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13537','502','1','11317','4.99','2005-08-02 16:08:52.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13538','502','1','11435','0.99','2005-08-02 20:14:23.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13539','502','1','11620','0.99','2005-08-17 04:06:22.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13540','502','1','12762','4.99','2005-08-18 23:06:54.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13541','502','1','13052','9.99','2005-08-19 09:31:42.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13542','502','1','14411','4.99','2005-08-21 10:54:57.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13543','502','1','15486','3.99','2005-08-23 02:05:20.000','2006-02-15 22:20:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13544','502','1','16034','3.99','2005-08-23 22:06:34.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13545','503','2','109','1.99','2005-05-25 18:40:20.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13546','503','1','353','5.99','2005-05-27 06:03:39.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13547','503','1','631','2.99','2005-05-28 17:36:32.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13548','503','1','1074','4.99','2005-05-31 10:04:42.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13549','503','2','2108','4.99','2005-06-17 19:35:26.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13550','503','1','2225','2.99','2005-06-18 03:35:40.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13551','503','2','3430','0.99','2005-06-21 18:46:08.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13552','503','2','3935','6.99','2005-07-06 21:08:29.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13553','503','2','4570','2.99','2005-07-08 05:33:59.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13554','503','2','5465','2.99','2005-07-09 23:01:13.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13555','503','1','5925','6.99','2005-07-10 21:41:27.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13556','503','1','6166','4.99','2005-07-11 10:19:05.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13557','503','1','6529','2.99','2005-07-12 04:31:04.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13558','503','2','6950','4.99','2005-07-26 23:45:33.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13559','503','1','8178','2.99','2005-07-28 21:54:31.000','2006-02-15 22:20:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13560','503','2','9725','0.99','2005-07-31 08:35:18.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13561','503','1','9974','4.99','2005-07-31 16:51:11.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13562','503','2','11075','2.99','2005-08-02 07:24:23.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13563','503','1','11161','1.99','2005-08-02 10:05:57.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13564','503','1','11858','4.99','2005-08-17 13:50:31.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13565','503','2','12370','2.99','2005-08-18 07:57:47.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13566','503','2','12783','4.99','2005-08-19 00:01:14.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13567','503','1','13332','2.99','2005-08-19 20:00:51.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13568','503','1','13551','2.99','2005-08-20 04:00:30.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13569','503','1','14823','0.99','2005-08-22 01:24:42.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13570','503','1','14913','2.99','2005-08-22 04:52:13.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13571','503','2','15056','4.99','2005-08-22 10:15:54.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13572','503','2','15077','2.99','2005-08-22 11:09:18.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13573','503','1','15588','3.99','2005-08-23 06:02:35.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13574','503','1','15692','4.99','2005-08-23 10:00:02.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13575','503','1','15726','2.99','2005-08-23 11:28:26.000','2006-02-15 22:20:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13576','503','1','15797','0.99','2005-08-23 14:13:47.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13577','504','2','136','5.99','2005-05-25 22:02:30.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13578','504','2','470','4.99','2005-05-27 21:17:08.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13579','504','1','838','4.99','2005-05-30 00:27:57.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13580','504','1','2720','1.99','2005-06-19 14:51:55.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13581','504','1','2938','6.99','2005-06-20 05:17:22.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13582','504','2','3712','9.99','2005-07-06 10:47:35.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13583','504','1','3713','6.99','2005-07-06 10:49:30.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13584','504','1','4329','5.99','2005-07-07 18:04:16.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13585','504','1','4757','0.99','2005-07-08 14:36:51.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13586','504','2','5153','6.99','2005-07-09 08:35:05.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13587','504','2','7342','3.99','2005-07-27 14:25:17.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13588','504','1','7567','2.99','2005-07-27 22:38:05.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13589','504','2','7807','2.99','2005-07-28 07:58:27.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13590','504','2','7875','1.99','2005-07-28 10:23:48.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13591','504','2','7944','4.99','2005-07-28 12:51:22.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13592','504','1','8393','9.99','2005-07-29 06:02:11.000','2006-02-15 22:20:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13593','504','2','10397','0.99','2005-08-01 07:11:27.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13594','504','2','10509','3.99','2005-08-01 11:25:28.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13595','504','2','11569','2.99','2005-08-17 01:31:04.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13596','504','1','12769','1.99','2005-08-18 23:26:40.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13597','504','1','13166','2.99','2005-08-19 13:36:28.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13598','504','2','13206','2.99','2005-08-19 15:05:34.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13599','504','2','13387','2.99','2005-08-19 21:46:10.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13600','504','2','13859','5.99','2005-08-20 14:53:43.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13601','504','2','15018','4.99','2005-08-22 08:52:38.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13602','504','1','15166','6.99','2005-08-22 15:05:37.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13603','504','1','15723','8.99','2005-08-23 11:17:26.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13604','504','2','16022','4.99','2005-08-23 21:44:27.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13605','505','1','159','2.99','2005-05-26 01:34:28.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13606','505','1','645','2.99','2005-05-28 19:14:09.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13607','505','2','1799','5.99','2005-06-16 20:17:20.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13608','505','2','1886','4.99','2005-06-17 03:36:02.000','2006-02-15 22:20:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13609','505','1','2773','7.99','2005-06-19 18:04:18.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13610','505','1','3137','5.99','2005-06-20 19:41:28.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13611','505','2','4008','5.99','2005-07-07 00:26:43.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13612','505','1','4507','6.99','2005-07-08 02:22:45.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13613','505','2','5976','9.99','2005-07-11 00:16:35.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13614','505','2','6292','4.99','2005-07-11 17:23:33.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13615','505','1','6441','0.99','2005-07-12 00:27:08.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13616','505','1','7784','4.99','2005-07-28 07:15:32.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13617','505','2','10219','5.99','2005-08-01 01:10:33.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13618','505','1','10896','2.99','2005-08-02 01:19:33.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13619','505','1','11163','0.99','2005-08-02 10:08:40.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13620','505','1','11907','2.99','2005-08-17 15:40:47.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13621','505','2','13612','3.99','2005-08-20 06:22:08.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13622','505','1','14398','2.99','2005-08-21 10:27:21.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13623','505','1','14802','2.99','2005-08-22 00:48:23.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13624','505','1','15436','4.99','2005-08-23 00:30:26.000','2006-02-15 22:20:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13625','505','2','15867','4.99','2006-02-14 15:16:03.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13626','506','1','114','3.99','2005-05-25 19:12:42.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13627','506','2','387','2.99','2005-05-27 10:35:27.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13628','506','2','410','3.99','2005-05-27 14:11:22.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13629','506','1','547','8.99','2005-05-28 07:24:28.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13630','506','2','907','0.99','2005-05-30 10:37:27.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13631','506','1','1042','2.99','2005-05-31 05:53:00.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13632','506','2','1153','4.99','2005-05-31 21:36:44.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13633','506','1','1446','6.99','2005-06-15 19:13:45.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13634','506','1','1467','2.99','2005-06-15 20:47:10.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13635','506','2','1565','0.99','2005-06-16 03:13:09.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13636','506','1','2755','9.99','2005-06-19 16:56:31.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13637','506','2','2824','6.99','2005-06-19 20:31:45.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13638','506','2','4594','7.99','2005-07-08 06:40:06.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13639','506','2','4640','6.99','2005-07-08 08:59:34.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13640','506','2','4806','8.99','2005-07-08 17:01:02.000','2006-02-15 22:20:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13641','506','2','5985','0.99','2005-07-11 00:51:58.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13642','506','1','6783','2.99','2005-07-12 16:27:56.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13643','506','1','7020','0.99','2005-07-27 02:24:27.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13644','506','2','8096','9.99','2005-07-28 18:32:46.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13645','506','2','8506','0.99','2005-07-29 09:23:52.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13646','506','2','9654','3.99','2005-07-31 05:57:42.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13647','506','2','9972','2.99','2005-07-31 16:42:43.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13648','506','1','10477','2.99','2005-08-01 10:04:17.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13649','506','1','10873','4.99','2005-08-02 00:30:34.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13650','506','2','11238','0.99','2005-08-02 13:25:50.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13651','506','2','11781','4.99','2005-08-17 10:37:00.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13652','506','1','12994','0.99','2005-08-19 07:26:10.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13653','506','2','13073','2.99','2005-08-19 10:05:38.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13654','506','2','13767','0.99','2005-08-20 11:43:36.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13655','506','1','14074','1.99','2005-08-20 23:16:07.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13656','506','1','14337','2.99','2005-08-21 08:34:26.000','2006-02-15 22:20:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13657','506','2','14395','6.99','2005-08-21 10:24:00.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13658','506','2','15022','5.99','2005-08-22 08:55:43.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13659','506','2','15572','1.99','2005-08-23 05:28:01.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13660','506','1','15694','9.99','2005-08-23 10:02:46.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13661','507','1','52','0.99','2005-05-25 06:51:29.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13662','507','2','713','4.99','2005-05-29 04:10:17.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13663','507','2','1307','4.99','2005-06-15 10:06:15.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13664','507','1','2143','4.99','2005-06-17 21:58:13.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13665','507','2','2283','4.99','2005-06-18 06:56:06.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13666','507','1','3660','4.99','2005-07-06 08:07:29.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13667','507','1','3880','2.99','2005-07-06 18:32:49.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13668','507','2','4440','0.99','2005-07-07 23:00:58.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13669','507','2','4455','2.99','2005-07-07 23:43:46.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13670','507','2','4744','0.99','2005-07-08 13:43:57.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13671','507','2','4901','2.99','2005-07-08 20:44:51.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13672','507','1','5962','0.99','2005-07-10 23:45:22.000','2006-02-15 22:20:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13673','507','1','6351','6.99','2005-07-11 20:31:44.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13674','507','1','6396','1.99','2005-07-11 22:31:08.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13675','507','1','6891','2.99','2005-07-12 21:07:35.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13676','507','2','7770','5.99','2005-07-28 06:49:35.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13677','507','1','7970','5.99','2005-07-28 13:58:38.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13678','507','2','8369','2.99','2005-07-29 05:15:42.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13679','507','2','8976','2.99','2005-07-30 04:12:32.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13680','507','1','9003','2.99','2005-07-30 05:02:52.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13681','507','2','12071','6.99','2005-08-17 21:49:14.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13682','507','2','12275','4.99','2005-08-18 04:42:02.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13683','507','1','12343','4.99','2005-08-18 07:15:13.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13684','507','2','14625','4.99','2005-08-21 18:34:21.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13685','507','1','15394','2.99','2005-08-22 23:04:21.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13686','508','1','369','2.99','2005-05-27 07:46:49.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13687','508','2','921','2.99','2005-05-30 11:53:09.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13688','508','2','1661','4.99','2005-06-16 10:12:57.000','2006-02-15 22:20:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13689','508','2','5657','9.99','2005-07-10 07:33:43.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13690','508','2','5978','6.99','2005-07-11 00:16:54.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13691','508','1','6101','4.99','2005-07-11 06:50:33.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13692','508','2','6646','0.99','2005-07-12 10:41:34.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13693','508','2','6929','8.99','2005-07-26 22:59:19.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13694','508','1','7283','5.99','2005-07-27 12:02:41.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13695','508','2','7322','3.99','2005-07-27 13:37:26.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13696','508','2','7327','7.99','2005-07-27 13:53:26.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13697','508','2','7668','2.99','2005-07-28 02:41:31.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13698','508','2','7676','4.99','2005-07-28 02:55:27.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13699','508','2','8191','4.99','2005-07-28 22:47:14.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13700','508','2','9694','5.99','2005-07-31 07:13:16.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13701','508','1','9706','2.99','2005-07-31 07:43:19.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13702','508','2','10128','2.99','2005-07-31 21:40:04.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13703','508','1','10746','8.99','2005-08-01 19:58:49.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13704','508','1','11365','2.99','2005-08-02 18:00:09.000','2006-02-15 22:20:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13705','508','2','11447','6.99','2005-08-02 20:36:25.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13706','508','1','13095','6.99','2005-08-19 10:48:10.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13707','508','2','13201','2.99','2005-08-19 14:56:05.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13708','508','1','15010','6.99','2005-08-22 08:30:17.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13709','508','1','15195','4.99','2005-08-22 16:08:23.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13710','508','1','14318','0.99','2006-02-14 15:16:03.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13711','509','1','22','4.99','2005-05-25 02:19:23.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13712','509','1','831','8.99','2005-05-29 22:50:25.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13713','509','1','1267','2.99','2005-06-15 07:21:21.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13714','509','2','2919','4.99','2005-06-20 04:10:16.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13715','509','2','4139','1.99','2005-07-07 08:17:35.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13716','509','2','4266','4.99','2005-07-07 14:34:50.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13717','509','2','4832','2.99','2005-07-08 18:07:05.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13718','509','2','5008','2.99','2005-07-09 01:31:42.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13719','509','1','6591','5.99','2005-07-12 07:13:46.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13720','509','1','7848','6.99','2005-07-28 09:24:31.000','2006-02-15 22:20:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13721','509','1','8114','8.99','2005-07-28 19:14:06.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13722','509','1','8214','5.99','2005-07-28 23:37:57.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13723','509','2','8240','0.99','2005-07-29 00:33:32.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13724','509','1','10189','4.99','2005-08-01 00:25:00.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13725','509','2','10988','5.99','2005-08-02 04:38:17.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13726','509','1','11814','6.99','2005-08-17 12:09:20.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13727','509','2','12109','4.99','2005-08-17 22:58:35.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13728','509','2','14045','4.99','2005-08-20 21:50:11.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13729','509','2','14994','5.99','2005-08-22 07:52:24.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13730','509','1','15965','2.99','2005-08-23 19:46:39.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13731','510','1','75','8.99','2005-05-25 11:13:34.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13732','510','1','372','5.99','2005-05-27 08:13:58.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13733','510','2','1118','4.99','2005-05-31 16:23:02.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13734','510','2','1435','5.99','2005-06-15 18:32:30.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13735','510','2','1757','0.99','2005-06-16 17:32:24.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13736','510','2','1925','0.99','2005-06-17 06:16:47.000','2006-02-15 22:20:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13737','510','1','2729','8.99','2005-06-19 15:06:15.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13738','510','2','2806','0.99','2005-06-19 19:30:48.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13739','510','2','2817','0.99','2005-06-19 20:05:22.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13740','510','2','3352','8.99','2005-06-21 11:26:29.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13741','510','2','3465','5.99','2005-06-21 22:10:01.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13742','510','2','3744','2.99','2005-07-06 12:10:02.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13743','510','1','4014','4.99','2005-07-07 00:58:54.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13744','510','2','5851','4.99','2005-07-10 17:40:47.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13745','510','1','6531','1.99','2005-07-12 04:35:24.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13746','510','1','7457','2.99','2005-07-27 18:35:17.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13747','510','1','7678','8.99','2005-07-28 02:58:16.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13748','510','2','7794','9.99','2005-07-28 07:28:03.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13749','510','2','8763','3.99','2005-07-29 19:38:24.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13750','510','1','8926','4.99','2005-07-30 02:10:31.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13751','510','1','10131','0.99','2005-07-31 21:45:28.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13752','510','2','10265','7.99','2005-08-01 03:05:04.000','2006-02-15 22:20:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13753','510','2','11996','4.99','2005-08-17 18:34:37.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13754','510','1','12317','0.99','2005-08-18 06:17:06.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13755','510','2','12406','2.99','2005-08-18 09:38:02.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13756','510','1','15065','4.99','2005-08-22 10:46:44.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13757','511','1','56','2.99','2005-05-25 08:28:11.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13758','511','1','819','3.99','2005-05-29 21:00:32.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13759','511','2','1281','2.99','2005-06-15 08:21:39.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13760','511','1','1508','2.99','2005-06-15 22:33:24.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13761','511','2','2966','10.99','2005-06-20 07:39:33.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13762','511','2','3366','4.99','2005-06-21 13:03:37.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13763','511','2','3600','4.99','2005-07-06 05:19:42.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13764','511','1','3852','0.99','2005-07-06 16:57:49.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13765','511','1','4482','4.99','2005-07-08 01:01:18.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13766','511','2','5164','3.99','2005-07-09 09:03:14.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13767','511','1','5601','0.99','2005-07-10 04:56:55.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13768','511','2','6040','0.99','2005-07-11 03:14:26.000','2006-02-15 22:20:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13769','511','1','6320','0.99','2005-07-11 18:50:55.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13770','511','1','8026','4.99','2005-07-28 16:05:38.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13771','511','1','9095','0.99','2005-07-30 08:38:36.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13772','511','1','9143','6.99','2005-07-30 10:22:11.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13773','511','1','9760','4.99','2005-07-31 09:29:33.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13774','511','1','10231','2.99','2005-08-01 01:50:49.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13775','511','2','10429','2.99','2005-08-01 08:34:18.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13776','511','2','12110','6.99','2005-08-17 22:59:46.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13777','511','1','12920','4.99','2005-08-19 04:32:32.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13778','511','1','14213','4.99','2005-08-21 04:30:47.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13779','511','1','14302','6.99','2005-08-21 07:19:57.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13780','511','1','15172','4.99','2005-08-22 15:25:33.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13781','512','1','1176','6.99','2005-06-15 00:28:37.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13782','512','2','2029','4.99','2005-06-17 13:10:59.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13783','512','1','2364','2.99','2005-06-18 13:37:32.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13784','512','1','4752','5.99','2005-07-08 14:15:20.000','2006-02-15 22:20:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13785','512','1','4799','0.99','2005-07-08 16:49:27.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13786','512','1','5064','6.99','2005-07-09 04:38:51.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13787','512','2','5813','3.99','2005-07-10 15:34:37.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13788','512','1','7219','2.99','2005-07-27 09:35:36.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13789','512','1','7507','0.99','2005-07-27 20:31:48.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13790','512','1','7715','6.99','2005-07-28 04:32:38.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13791','512','2','8868','4.99','2005-07-30 00:02:26.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13792','512','1','9055','2.99','2005-07-30 07:13:07.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13793','512','2','10232','4.99','2005-08-01 01:50:55.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13794','512','2','10670','3.99','2005-08-01 17:07:16.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13795','512','2','11818','9.99','2005-08-17 12:22:04.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13796','512','2','12957','8.99','2005-08-19 06:12:44.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13797','512','2','13156','4.99','2005-08-19 13:10:42.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13798','512','2','13771','0.99','2005-08-20 11:47:21.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13799','512','1','14288','4.99','2005-08-21 06:57:34.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13800','512','1','14870','2.99','2005-08-22 03:23:20.000','2006-02-15 22:20:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13801','512','1','15153','2.99','2005-08-22 14:26:01.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13802','512','2','15265','3.99','2005-08-22 18:35:59.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13803','512','1','15317','3.99','2005-08-22 20:14:13.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13804','512','2','15733','4.99','2005-08-23 11:37:32.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13805','512','2','15990','4.99','2005-08-23 20:25:11.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13806','512','1','12786','0.99','2006-02-14 15:16:03.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13807','513','2','993','4.99','2005-05-30 23:54:19.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13808','513','1','1607','2.99','2005-06-16 06:25:35.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13809','513','2','2290','7.99','2005-06-18 07:34:37.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13810','513','2','2737','1.99','2005-06-19 15:48:33.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13811','513','2','3872','0.99','2005-07-06 18:00:19.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13812','513','2','4055','2.99','2005-07-07 03:49:13.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13813','513','2','4178','4.99','2005-07-07 10:14:31.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13814','513','2','4220','4.99','2005-07-07 12:12:36.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13815','513','1','5741','7.99','2005-07-10 11:55:40.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13816','513','1','6027','4.99','2005-07-11 02:26:29.000','2006-02-15 22:20:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13817','513','1','7655','0.99','2005-07-28 02:01:11.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13818','513','2','8320','4.99','2005-07-29 03:49:58.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13819','513','1','8350','4.99','2005-07-29 04:50:39.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13820','513','2','8683','9.99','2005-07-29 16:15:43.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13821','513','1','8798','5.99','2005-07-29 21:15:38.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13822','513','2','9862','2.99','2005-07-31 13:05:03.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13823','513','1','10012','3.99','2005-07-31 18:06:06.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13824','513','2','11081','2.99','2005-08-02 07:30:14.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13825','513','1','11165','2.99','2005-08-02 10:12:17.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13826','513','1','11407','3.99','2005-08-02 19:18:43.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13827','513','1','11755','3.99','2005-08-17 09:15:35.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13828','513','1','12559','5.99','2005-08-18 14:53:58.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13829','513','2','12784','2.99','2005-08-19 00:02:46.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13830','513','2','12807','4.99','2005-08-19 00:38:46.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13831','513','1','13596','5.99','2005-08-20 05:58:58.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13832','513','1','13690','4.99','2005-08-20 09:07:27.000','2006-02-15 22:20:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13833','513','2','14844','7.99','2005-08-22 02:09:12.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13834','513','1','14875','4.99','2005-08-22 03:34:39.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13835','513','1','15035','4.99','2005-08-22 09:34:32.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13836','513','2','15289','6.99','2005-08-22 19:27:24.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13837','513','2','15545','5.99','2005-08-23 04:20:16.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13838','514','2','536','4.99','2005-05-28 06:17:33.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13839','514','2','1692','4.99','2005-06-16 12:30:19.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13840','514','1','2002','3.99','2005-06-17 11:39:58.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13841','514','2','2362','0.99','2005-06-18 13:31:15.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13842','514','1','2789','0.99','2005-06-19 18:48:21.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13843','514','2','3084','2.99','2005-06-20 15:35:24.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13844','514','1','3385','0.99','2005-06-21 14:16:48.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13845','514','2','3668','5.99','2005-07-06 08:36:48.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13846','514','2','3860','2.99','2005-07-06 17:20:24.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13847','514','1','7791','4.99','2005-07-28 07:22:51.000','2006-02-15 22:20:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13848','514','1','9038','3.99','2005-07-30 06:23:35.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13849','514','1','11675','1.99','2005-08-17 05:57:54.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13850','514','2','12067','4.99','2005-08-17 21:36:47.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13851','514','1','12293','4.99','2005-08-18 05:13:36.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13852','514','1','12302','4.99','2005-08-18 05:41:39.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13853','514','2','12578','0.99','2005-08-18 15:47:11.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13854','514','1','12752','2.99','2005-08-18 22:33:36.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13855','514','2','13344','3.99','2005-08-19 20:22:44.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13856','514','1','14052','0.99','2005-08-20 22:11:46.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13857','514','1','14386','1.99','2005-08-21 10:06:34.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13858','514','1','15451','2.99','2005-08-23 00:56:27.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13859','514','1','15776','5.99','2005-08-23 13:26:01.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13860','515','2','187','8.99','2005-05-26 05:42:37.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13861','515','2','292','6.99','2005-05-26 20:22:12.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13862','515','1','1244','4.99','2005-06-15 05:08:40.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13863','515','2','1531','5.99','2005-06-16 00:40:34.000','2006-02-15 22:20:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13864','515','2','2003','4.99','2005-06-17 11:40:35.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13865','515','2','2484','4.99','2005-06-18 21:25:23.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13866','515','2','2513','0.99','2005-06-18 23:53:15.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13867','515','2','3063','3.99','2005-06-20 13:52:03.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13868','515','2','3782','0.99','2005-07-06 13:57:03.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13869','515','2','4111','6.99','2005-07-07 06:47:56.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13870','515','2','5216','0.99','2005-07-09 11:54:58.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13871','515','2','5546','2.99','2005-07-10 02:50:37.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13872','515','2','5697','4.99','2005-07-10 09:44:44.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13873','515','2','7429','3.99','2005-07-27 17:24:50.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13874','515','1','8706','4.99','2005-07-29 17:19:15.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13875','515','1','10159','4.99','2005-07-31 22:54:30.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13876','515','2','10716','0.99','2005-08-01 18:53:48.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13877','515','1','11451','3.99','2005-08-02 20:45:56.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13878','515','2','11572','4.99','2005-08-17 01:37:55.000','2006-02-15 22:20:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13879','515','1','11691','3.99','2005-08-17 06:51:05.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13880','515','2','11937','6.99','2005-08-17 16:48:36.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13881','515','2','12416','2.99','2005-08-18 09:56:48.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13882','515','1','12486','8.99','2005-08-18 12:42:50.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13883','515','1','12889','5.99','2005-08-19 03:41:31.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13884','515','2','14072','4.99','2005-08-20 23:07:10.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13885','515','2','14378','3.99','2005-08-21 09:50:02.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13886','515','2','14414','0.99','2005-08-21 11:08:17.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13887','515','2','15274','4.99','2005-08-22 18:55:52.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13888','516','2','339','3.99','2005-05-27 03:47:18.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13889','516','1','571','1.99','2005-05-28 10:17:41.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13890','516','2','1159','4.99','2005-06-14 22:55:13.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13891','516','1','1200','1.99','2005-06-15 01:59:51.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13892','516','1','1718','10.99','2005-06-16 14:52:02.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13893','516','1','2017','0.99','2005-06-17 12:33:30.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13894','516','2','3068','0.99','2005-06-20 14:02:22.000','2006-02-15 22:20:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13895','516','1','3431','2.99','2005-06-21 18:46:48.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13896','516','2','5780','3.99','2005-07-10 13:46:23.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13897','516','2','6677','6.99','2005-07-12 11:58:14.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13898','516','1','6858','6.99','2005-07-12 19:53:51.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13899','516','1','7628','4.99','2005-07-28 00:58:04.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13900','516','1','7882','4.99','2005-07-28 10:33:42.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13901','516','2','8396','4.99','2005-07-29 06:07:00.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13902','516','2','8534','5.99','2005-07-29 10:30:13.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13903','516','2','8585','2.99','2005-07-29 12:14:18.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13904','516','2','9243','4.99','2005-07-30 14:06:27.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13905','516','2','11926','0.99','2005-08-17 16:25:02.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13906','516','2','11939','1.99','2005-08-17 16:55:57.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13907','516','1','12535','1.99','2005-08-18 14:05:22.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13908','516','1','13276','8.99','2005-08-19 17:53:42.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13909','516','1','14932','0.99','2005-08-22 05:40:39.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13910','516','1','15526','0.99','2005-08-23 03:44:30.000','2006-02-15 22:20:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13911','516','1','15701','0.99','2005-08-23 10:22:21.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13912','516','1','12130','5.98','2006-02-14 15:16:03.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13913','516','1','12915','0','2006-02-14 15:16:03.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13914','517','2','850','4.99','2005-05-30 01:35:12.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13915','517','2','1653','4.99','2005-06-16 09:34:45.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13916','517','1','1809','8.99','2005-06-16 21:00:20.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13917','517','1','1850','4.99','2005-06-17 00:31:35.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13918','517','2','2534','2.99','2005-06-19 01:38:39.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13919','517','1','3113','0.99','2005-06-20 17:56:40.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13920','517','2','4094','2.99','2005-07-07 06:00:21.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13921','517','1','4109','4.99','2005-07-07 06:39:43.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13922','517','1','4369','4.99','2005-07-07 20:01:38.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13923','517','2','4374','4.99','2005-07-07 20:13:58.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13924','517','2','4934','0.99','2005-07-08 22:18:42.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13925','517','1','4993','2.99','2005-07-09 00:49:47.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13926','517','1','5206','7.99','2005-07-09 11:11:01.000','2006-02-15 22:20:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13927','517','2','5974','5.99','2005-07-11 00:10:37.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13928','517','2','6594','4.99','2005-07-12 07:25:43.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13929','517','2','6903','0.99','2005-07-12 21:58:15.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13930','517','2','7988','3.99','2005-07-28 14:37:18.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13931','517','1','10063','4.99','2005-07-31 19:25:13.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13932','517','2','10358','4.99','2005-08-01 05:50:07.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13933','517','2','10433','4.99','2005-08-01 08:45:56.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13934','517','1','11684','3.99','2005-08-17 06:27:15.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13935','517','2','12705','0.99','2005-08-18 20:44:14.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13936','517','1','13396','0.99','2005-08-19 22:06:09.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13937','517','2','14190','4.99','2005-08-21 03:35:21.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13938','517','1','15559','5.99','2005-08-23 04:55:05.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13939','518','1','710','2.99','2005-05-29 03:48:36.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13940','518','2','1552','5.99','2005-06-16 02:01:37.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13941','518','2','3311','0.99','2005-06-21 08:05:27.000','2006-02-15 22:20:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13942','518','1','3652','0.99','2005-07-06 07:44:30.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13943','518','2','4029','7.99','2005-07-07 02:19:44.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13944','518','2','4661','4.99','2005-07-08 09:55:06.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13945','518','2','4948','6.99','2005-07-08 22:54:21.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13946','518','1','6652','2.99','2005-07-12 10:59:38.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13947','518','1','6957','2.99','2005-07-27 00:00:00.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13948','518','2','7038','3.99','2005-07-27 03:07:29.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13949','518','2','7154','4.99','2005-07-27 07:16:17.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13950','518','2','7382','2.99','2005-07-27 15:43:15.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13951','518','1','7657','2.99','2005-07-28 02:09:00.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13952','518','2','7839','6.99','2005-07-28 09:01:13.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13953','518','1','8107','3.99','2005-07-28 19:03:16.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13954','518','1','8397','2.99','2005-07-29 06:09:35.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13955','518','1','10751','5.99','2005-08-01 20:06:10.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13956','518','2','11433','3.99','2005-08-02 20:13:10.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13957','518','2','12450','2.99','2005-08-18 11:04:04.000','2006-02-15 22:20:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13958','518','2','12681','2.99','2005-08-18 19:48:06.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13959','518','1','13065','4.99','2005-08-19 09:48:52.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13960','518','1','13539','6.99','2005-08-20 03:40:27.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13961','518','1','14088','6.99','2005-08-20 23:57:24.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13962','518','1','14149','4.99','2005-08-21 02:22:47.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13963','518','2','14980','0.99','2005-08-22 07:16:45.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13964','518','2','15434','4.99','2005-08-23 00:28:16.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13965','519','1','1056','3.99','2005-05-31 07:48:07.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13966','519','1','1941','2.99','2005-06-17 07:42:45.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13967','519','2','2505','8.99','2005-06-18 23:28:27.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13968','519','2','2997','5.99','2005-06-20 09:23:45.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13969','519','2','4564','0.99','2005-07-08 05:09:38.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13970','519','2','4773','2.99','2005-07-08 15:41:39.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13971','519','2','5236','0.99','2005-07-09 12:56:29.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13972','519','2','5547','5.99','2005-07-10 02:52:47.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13973','519','2','6063','0.99','2005-07-11 04:16:51.000','2006-02-15 22:20:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13974','519','1','6599','3.99','2005-07-12 07:41:14.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13975','519','1','9417','6.99','2005-07-30 20:54:55.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13976','519','2','9441','4.99','2005-07-30 21:43:28.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13977','519','2','9534','7.99','2005-07-31 01:18:27.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13978','519','2','9645','0.99','2005-07-31 05:42:49.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13979','519','2','9886','7.99','2005-07-31 14:00:13.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13980','519','1','9905','0.99','2005-07-31 14:37:03.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13981','519','1','10097','5.99','2005-07-31 20:39:38.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13982','519','2','10697','4.99','2005-08-01 18:20:23.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13983','519','2','12648','7.99','2005-08-18 18:30:21.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13984','519','2','12924','2.99','2005-08-19 04:51:47.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13985','519','1','13647','7.99','2005-08-20 07:48:07.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13986','519','1','14182','2.99','2005-08-21 03:17:10.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13987','519','2','15347','2.99','2005-08-22 21:12:19.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13988','520','1','962','6.99','2005-05-30 18:45:17.000','2006-02-15 22:20:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13989','520','1','1411','0.99','2005-06-15 17:05:36.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13990','520','2','2174','6.99','2005-06-18 00:09:01.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13991','520','1','2772','4.99','2005-06-19 17:59:27.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13992','520','2','3482','4.99','2005-07-05 23:13:22.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13993','520','1','3499','7.99','2005-07-06 00:04:20.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13994','520','2','4346','2.99','2005-07-07 18:58:45.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13995','520','2','5799','4.99','2005-07-10 14:53:35.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13996','520','1','5802','10.99','2005-07-10 15:02:17.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13997','520','1','5853','3.99','2005-07-10 17:45:13.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13998','520','1','6029','2.99','2005-07-11 02:36:46.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('13999','520','2','7198','5.99','2005-07-27 08:50:07.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14000','520','1','7720','4.99','2005-07-28 04:41:44.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14001','520','1','7936','0.99','2005-07-28 12:33:21.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14002','520','1','8294','2.99','2005-07-29 02:32:41.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14003','520','2','8435','2.99','2005-07-29 07:20:16.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14004','520','1','9803','2.99','2005-07-31 11:06:02.000','2006-02-15 22:20:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14005','520','1','10072','0.99','2005-07-31 19:50:37.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14006','520','2','10530','4.99','2005-08-01 12:01:17.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14007','520','1','11566','0.99','2005-08-17 01:28:35.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14008','520','1','12517','4.99','2005-08-18 13:40:20.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14009','520','1','12628','5.99','2005-08-18 17:40:25.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14010','520','1','12647','5.99','2005-08-18 18:29:51.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14011','520','1','13311','0.99','2005-08-19 19:07:09.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14012','520','2','13438','2.99','2005-08-19 23:38:02.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14013','520','2','13659','2.99','2005-08-20 08:05:52.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14014','520','2','13746','5.99','2005-08-20 10:55:28.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14015','520','1','14372','4.99','2005-08-21 09:39:50.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14016','520','1','14509','0.99','2005-08-21 14:39:58.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14017','520','1','15465','0.99','2005-08-23 01:16:33.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14018','520','2','15492','2.99','2005-08-23 02:13:46.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14019','520','1','15948','7.99','2005-08-23 18:59:33.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14020','521','1','1761','0.99','2005-06-16 17:49:57.000','2006-02-15 22:20:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14021','521','2','2053','0.99','2005-06-17 15:19:34.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14022','521','2','4284','0.99','2005-07-07 15:31:57.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14023','521','2','4439','2.99','2005-07-07 22:57:30.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14024','521','1','5276','2.99','2005-07-09 14:35:13.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14025','521','2','5458','4.99','2005-07-09 22:35:49.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14026','521','2','5580','6.99','2005-07-10 04:05:49.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14027','521','2','5686','0.99','2005-07-10 09:06:03.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14028','521','1','7478','1.99','2005-07-27 19:16:02.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14029','521','1','9556','7.99','2005-07-31 02:13:30.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14030','521','2','9937','1.99','2005-07-31 15:28:10.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14031','521','1','10587','2.99','2005-08-01 14:03:38.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14032','521','2','11625','2.99','2005-08-17 04:18:52.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14033','521','1','11967','3.99','2005-08-17 17:45:00.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14034','521','2','12082','4.99','2005-08-17 22:13:15.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14035','521','1','12530','4.99','2005-08-18 13:54:48.000','2006-02-15 22:20:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14036','521','1','13527','2.99','2005-08-20 03:00:47.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14037','521','1','14423','0.99','2005-08-21 11:23:59.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14038','521','2','14551','3.99','2005-08-21 15:57:25.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14039','521','2','14738','5.99','2005-08-21 22:29:13.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14040','521','2','15170','4.99','2005-08-22 15:22:15.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14041','521','2','15329','2.99','2005-08-22 20:32:39.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14042','521','2','11672','4.99','2006-02-14 15:16:03.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14043','522','2','426','5.99','2005-05-27 15:56:57.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14044','522','1','1289','3.99','2005-06-15 08:44:09.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14045','522','2','3102','8.99','2005-06-20 16:55:55.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14046','522','1','3188','2.99','2005-06-20 23:10:27.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14047','522','2','3191','0.99','2005-06-20 23:46:39.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14048','522','1','3594','0.99','2005-07-06 04:42:47.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14049','522','2','4078','4.99','2005-07-07 05:05:05.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14050','522','2','4563','9.99','2005-07-08 05:08:55.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14051','522','2','4701','4.99','2005-07-08 11:38:48.000','2006-02-15 22:20:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14052','522','2','5271','6.99','2005-07-09 14:25:01.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14053','522','2','5514','6.99','2005-07-10 01:09:42.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14054','522','2','5532','4.99','2005-07-10 02:17:31.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14055','522','2','5936','0.99','2005-07-10 22:14:30.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14056','522','2','7262','4.99','2005-07-27 11:15:36.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14057','522','1','7955','2.99','2005-07-28 13:31:36.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14058','522','2','8181','4.99','2005-07-28 22:18:38.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14059','522','1','8642','6.99','2005-07-29 14:38:17.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14060','522','1','8966','2.99','2005-07-30 03:54:12.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14061','522','1','9047','7.99','2005-07-30 06:56:33.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14062','522','2','9227','7.99','2005-07-30 13:36:13.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14063','522','1','9335','4.99','2005-07-30 18:00:53.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14064','522','1','9412','5.99','2005-07-30 20:44:10.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14065','522','2','9533','5.99','2005-07-31 01:18:10.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14066','522','2','10223','0.99','2005-08-01 01:23:15.000','2006-02-15 22:20:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14067','522','1','10411','3.99','2005-08-01 07:56:32.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14068','522','1','10675','7.99','2005-08-01 17:11:57.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14069','522','2','10821','5.99','2005-08-01 22:54:27.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14070','522','2','11696','2.99','2005-08-17 07:01:09.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14071','522','2','11830','1.99','2005-08-17 12:53:15.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14072','522','2','12494','6.99','2005-08-18 12:53:49.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14073','522','2','13605','6.99','2005-08-20 06:06:17.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14074','522','2','14467','2.99','2005-08-21 13:03:33.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14075','522','1','15921','6.99','2005-08-23 18:06:54.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14076','523','1','42','4.99','2005-05-25 05:24:58.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14077','523','2','664','0.99','2005-05-28 21:31:08.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14078','523','2','1729','6.99','2005-06-16 15:29:47.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14079','523','1','2447','8.99','2005-06-18 19:10:55.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14080','523','1','2583','7.99','2005-06-19 05:01:40.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14081','523','2','2669','0.99','2005-06-19 11:28:52.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14082','523','1','4605','4.99','2005-07-08 07:00:14.000','2006-02-15 22:20:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14083','523','2','5155','2.99','2005-07-09 08:46:54.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14084','523','1','5287','6.99','2005-07-09 15:11:54.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14085','523','2','5932','2.99','2005-07-10 22:05:15.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14086','523','2','6675','4.99','2005-07-12 11:53:06.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14087','523','2','7642','1.99','2005-07-28 01:16:51.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14088','523','2','8141','0.99','2005-07-28 20:21:19.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14089','523','1','8372','5.99','2005-07-29 05:18:08.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14090','523','1','9071','2.99','2005-07-30 07:40:58.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14091','523','2','9667','6.99','2005-07-31 06:23:52.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14092','523','2','10470','1.99','2005-08-01 09:52:26.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14093','523','1','11827','4.99','2005-08-17 12:44:27.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14094','523','1','12288','2.99','2005-08-18 05:01:20.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14095','523','1','13133','2.99','2005-08-19 12:11:03.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14096','523','1','14766','4.99','2005-08-21 23:42:20.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14097','523','1','15040','2.99','2005-08-22 09:41:09.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14098','524','2','118','0.99','2005-05-25 19:31:18.000','2006-02-15 22:21:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14099','524','1','982','4.99','2005-05-30 22:15:24.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14100','524','1','1306','1.99','2005-06-15 09:59:24.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14101','524','2','1651','4.99','2005-06-16 09:24:38.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14102','524','2','3454','2.99','2005-06-21 21:12:13.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14103','524','1','4366','5.99','2005-07-07 19:48:36.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14104','524','2','5037','4.99','2005-07-09 02:59:10.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14105','524','2','6161','4.99','2005-07-11 10:11:54.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14106','524','1','6240','6.99','2005-07-11 14:32:41.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14107','524','2','6745','4.99','2005-07-12 14:30:51.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14108','524','2','7014','8.99','2005-07-27 02:14:40.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14109','524','1','7040','4.99','2005-07-27 03:17:19.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14110','524','1','8507','6.99','2005-07-29 09:29:44.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14111','524','2','13626','2.99','2005-08-20 06:55:24.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14112','524','2','14046','4.99','2005-08-20 21:53:21.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14113','524','1','14178','2.99','2005-08-21 03:13:45.000','2006-02-15 22:21:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14114','524','1','14366','2.99','2005-08-21 09:31:39.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14115','524','2','14680','1.99','2005-08-21 20:19:52.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14116','524','2','15206','6.99','2005-08-22 16:33:39.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14117','525','1','437','5.99','2005-05-27 17:47:22.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14118','525','2','1772','2.99','2005-06-16 18:12:54.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14119','525','1','3993','6.99','2005-07-06 23:37:06.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14120','525','1','5841','2.99','2005-07-10 17:11:31.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14121','525','2','6098','7.99','2005-07-11 06:23:28.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14122','525','2','6388','6.99','2005-07-11 22:17:16.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14123','525','1','6689','1.99','2005-07-12 12:22:13.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14124','525','2','7337','4.99','2005-07-27 14:12:04.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14125','525','2','7591','4.99','2005-07-27 23:25:54.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14126','525','1','8007','0.99','2005-07-28 15:22:27.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14127','525','1','8960','4.99','2005-07-30 03:36:31.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14128','525','2','9507','5.99','2005-07-31 00:22:29.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14129','525','1','9702','0.99','2005-07-31 07:34:07.000','2006-02-15 22:21:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14130','525','1','10496','2.99','2005-08-01 10:53:16.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14131','525','2','11406','2.99','2005-08-02 19:16:10.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14132','525','1','11660','1.99','2005-08-17 05:22:42.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14133','525','1','15159','0.99','2005-08-22 14:32:25.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14134','525','2','15623','3.99','2005-08-23 07:23:29.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14135','525','1','14954','2.99','2006-02-14 15:16:03.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14136','526','1','495','4.99','2005-05-28 00:40:48.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14137','526','2','679','4.99','2005-05-28 23:24:57.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14138','526','2','1015','2.99','2005-05-31 02:44:57.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14139','526','1','1255','4.99','2005-06-15 06:13:45.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14140','526','2','1848','0.99','2005-06-17 00:07:07.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14141','526','2','1865','7.99','2005-06-17 01:49:36.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14142','526','2','1972','2.99','2005-06-17 09:25:49.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14143','526','1','1981','2.99','2005-06-17 10:03:34.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14144','526','2','2398','4.99','2005-06-18 15:56:53.000','2006-02-15 22:21:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14145','526','1','2828','2.99','2005-06-19 20:51:33.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14146','526','2','2932','6.99','2005-06-20 04:51:19.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14147','526','1','3339','6.99','2005-06-21 10:37:11.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14148','526','1','3619','1.99','2005-07-06 05:59:44.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14149','526','2','3905','5.99','2005-07-06 19:33:34.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14150','526','1','4423','6.99','2005-07-07 22:11:28.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14151','526','2','5056','2.99','2005-07-09 04:13:45.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14152','526','2','5121','3.99','2005-07-09 07:18:31.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14153','526','1','6316','7.99','2005-07-11 18:44:52.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14154','526','1','6404','4.99','2005-07-11 22:49:50.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14155','526','2','6650','2.99','2005-07-12 10:57:10.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14156','526','1','6671','3.99','2005-07-12 11:48:48.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14157','526','2','7270','7.99','2005-07-27 11:29:02.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14158','526','2','7343','0.99','2005-07-27 14:27:13.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14159','526','2','7399','1.99','2005-07-27 16:16:02.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14160','526','2','7543','5.99','2005-07-27 21:44:28.000','2006-02-15 22:21:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14161','526','2','7883','2.99','2005-07-28 10:37:20.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14162','526','1','8053','4.99','2005-07-28 16:59:41.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14163','526','1','8232','4.99','2005-07-29 00:14:37.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14164','526','1','8441','2.99','2005-07-29 07:33:05.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14165','526','2','9577','6.99','2005-07-31 02:53:33.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14166','526','2','10020','4.99','2005-07-31 18:21:08.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14167','526','2','10199','2.99','2005-08-01 00:38:55.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14168','526','2','11046','4.99','2005-08-02 06:08:34.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14169','526','1','11503','10.99','2005-08-16 23:10:34.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14170','526','1','11612','2.99','2005-08-17 03:48:51.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14171','526','2','11702','4.99','2005-08-17 07:18:56.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14172','526','1','12607','0.99','2005-08-18 17:03:49.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14173','526','2','13224','8.99','2005-08-19 15:52:13.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14174','526','2','13580','0.99','2005-08-20 05:23:34.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14175','526','1','13617','8.99','2005-08-20 06:35:30.000','2006-02-15 22:21:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14176','526','2','14487','6.99','2005-08-21 13:53:33.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14177','526','1','14590','7.99','2005-08-21 17:29:10.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14178','526','1','15168','2.99','2005-08-22 15:14:20.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14179','526','1','15395','4.99','2005-08-22 23:06:25.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14180','526','1','16043','9.99','2005-08-23 22:21:03.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14181','527','1','1398','2.99','2005-06-15 16:28:42.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14182','527','1','2422','0.99','2005-06-18 17:28:57.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14183','527','2','2496','0.99','2005-06-18 22:20:11.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14184','527','1','2539','2.99','2005-06-19 01:58:39.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14185','527','1','4888','0.99','2005-07-08 20:04:27.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14186','527','1','5365','0.99','2005-07-09 18:27:00.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14187','527','2','6003','3.99','2005-07-11 01:28:33.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14188','527','2','6011','4.99','2005-07-11 01:54:48.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14189','527','1','6050','2.99','2005-07-11 03:34:29.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14190','527','2','6975','1.99','2005-07-27 00:39:54.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14191','527','1','7506','8.99','2005-07-27 20:28:34.000','2006-02-15 22:21:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14192','527','1','8854','0.99','2005-07-29 23:40:07.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14193','527','2','9750','0.99','2005-07-31 09:19:46.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14194','527','2','10486','3.99','2005-08-01 10:23:43.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14195','527','2','10613','0.99','2005-08-01 14:56:14.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14196','527','1','11013','5.99','2005-08-02 05:10:54.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14197','527','1','11150','2.99','2005-08-02 09:51:46.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14198','527','1','11624','0.99','2005-08-17 04:17:42.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14199','527','1','12136','7.99','2005-08-17 23:51:30.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14200','527','1','12513','6.99','2005-08-18 13:31:45.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14201','527','1','14352','6.99','2005-08-21 09:06:29.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14202','527','1','15144','2.99','2005-08-22 13:49:18.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14203','527','1','15552','3.99','2005-08-23 04:33:23.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14204','527','1','14267','2.99','2006-02-14 15:16:03.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14205','528','1','204','0.99','2005-05-26 07:30:37.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14206','528','2','472','0.99','2005-05-27 21:36:15.000','2006-02-15 22:21:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14207','528','1','533','5.99','2005-05-28 06:14:46.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14208','528','2','695','3.99','2005-05-29 01:50:53.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14209','528','2','793','5.99','2005-05-29 16:44:08.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14210','528','2','1875','2.99','2005-06-17 02:45:10.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14211','528','1','2019','4.99','2005-06-17 12:38:44.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14212','528','2','3654','4.99','2005-07-06 07:45:31.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14213','528','1','3664','0.99','2005-07-06 08:15:57.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14214','528','2','4050','9.99','2005-07-07 03:35:33.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14215','528','1','4593','5.99','2005-07-08 06:38:12.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14216','528','2','5215','3.99','2005-07-09 11:47:58.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14217','528','2','6561','0.99','2005-07-12 05:24:02.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14218','528','1','7569','7.99','2005-07-27 22:38:53.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14219','528','2','8112','4.99','2005-07-28 19:11:07.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14220','528','1','8727','3.99','2005-07-29 18:09:57.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14221','528','2','9488','8.99','2005-07-30 23:42:42.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14222','528','1','10084','3.99','2005-07-31 20:11:29.000','2006-02-15 22:21:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14223','528','1','10673','0.99','2005-08-01 17:11:51.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14224','528','1','10880','2.99','2005-08-02 00:34:12.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14225','528','1','12818','3.99','2005-08-19 01:04:59.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14226','528','2','13518','2.99','2005-08-20 02:36:17.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14227','528','1','13600','7.99','2005-08-20 06:00:25.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14228','528','2','14148','2.99','2005-08-21 02:17:49.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14229','528','2','15880','6.99','2005-08-23 16:43:54.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14230','529','1','453','2.99','2005-05-27 19:31:16.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14231','529','1','1234','1.99','2005-06-15 04:21:52.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14232','529','2','1686','0.99','2005-06-16 12:08:20.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14233','529','2','3354','0.99','2005-06-21 11:29:49.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14234','529','2','4045','0.99','2005-07-07 03:26:14.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14235','529','2','4254','0.99','2005-07-07 14:13:52.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14236','529','2','4444','5.99','2005-07-07 23:07:44.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14237','529','1','4553','0.99','2005-07-08 04:43:41.000','2006-02-15 22:21:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14238','529','1','5993','4.99','2005-07-11 01:06:41.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14239','529','2','6538','6.99','2005-07-12 04:50:26.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14240','529','2','6541','5.99','2005-07-12 04:53:41.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14241','529','1','6908','7.99','2005-07-12 22:08:46.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14242','529','1','7128','3.99','2005-07-27 06:14:36.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14243','529','2','8708','2.99','2005-07-29 17:24:13.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14244','529','1','8979','5.99','2005-07-30 04:20:25.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14245','529','2','9310','4.99','2005-07-30 16:57:09.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14246','529','2','9375','0.99','2005-07-30 19:10:17.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14247','529','2','10361','10.99','2005-08-01 05:53:49.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14248','529','1','11862','2.99','2005-08-17 13:54:53.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14249','529','2','12356','2.99','2005-08-18 07:37:05.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14250','529','1','12622','3.99','2005-08-18 17:34:11.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14251','529','1','13011','4.99','2005-08-19 07:53:58.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14252','529','2','13132','3.99','2005-08-19 12:10:57.000','2006-02-15 22:21:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14253','529','1','13797','2.99','2005-08-20 12:33:36.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14254','529','2','13946','9.99','2005-08-20 17:44:32.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14255','529','2','14449','4.99','2005-08-21 12:13:18.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14256','529','2','14764','0.99','2005-08-21 23:37:47.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14257','529','1','14970','5.99','2005-08-22 06:49:29.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14258','529','2','15305','2.99','2005-08-22 19:46:05.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14259','530','1','851','0.99','2005-05-30 01:35:15.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14260','530','2','1273','1.99','2005-06-15 07:52:35.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14261','530','1','1516','0.99','2005-06-15 23:11:10.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14262','530','1','2158','2.99','2005-06-17 23:36:27.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14263','530','2','3669','2.99','2005-07-06 08:38:29.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14264','530','2','3887','4.99','2005-07-06 18:46:34.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14265','530','2','5663','0.99','2005-07-10 08:01:33.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14266','530','1','7031','3.99','2005-07-27 03:02:07.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14267','530','2','7075','1.99','2005-07-27 04:11:40.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14268','530','1','7218','4.99','2005-07-27 09:34:24.000','2006-02-15 22:21:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14269','530','2','8208','4.99','2005-07-28 23:26:35.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14270','530','1','8736','0.99','2005-07-29 18:31:15.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14271','530','1','9914','4.99','2005-07-31 14:51:19.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14272','530','2','10211','3.99','2005-08-01 01:01:16.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14273','530','2','10504','4.99','2005-08-01 11:10:55.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14274','530','1','11326','0.99','2005-08-02 16:34:29.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14275','530','1','12220','4.99','2005-08-18 02:50:02.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14276','530','1','12387','2.99','2005-08-18 08:46:24.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14277','530','1','12649','4.99','2005-08-18 18:31:47.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14278','530','1','13998','5.99','2005-08-20 19:52:38.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14279','530','2','14707','5.99','2005-08-21 21:06:29.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14280','530','2','15066','0.99','2005-08-22 10:49:06.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14281','530','1','13561','2.99','2006-02-14 15:16:03.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14282','531','1','233','4.99','2005-05-26 11:43:44.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14283','531','1','681','2.99','2005-05-28 23:39:44.000','2006-02-15 22:21:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14284','531','2','2972','2.99','2005-06-20 07:57:54.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14285','531','2','3921','5.99','2005-07-06 20:29:48.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14286','531','1','5587','5.99','2005-07-10 04:17:25.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14287','531','2','5850','0.99','2005-07-10 17:36:27.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14288','531','2','5904','4.99','2005-07-10 20:39:44.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14289','531','1','6756','4.99','2005-07-12 15:08:28.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14290','531','1','6876','4.99','2005-07-12 20:32:50.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14291','531','2','7204','2.99','2005-07-27 09:02:31.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14292','531','1','7391','6.99','2005-07-27 16:00:00.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14293','531','2','7444','2.99','2005-07-27 17:49:16.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14294','531','2','7753','6.99','2005-07-28 06:09:19.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14295','531','2','8359','5.99','2005-07-29 05:02:12.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14296','531','2','8860','4.99','2005-07-29 23:45:57.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14297','531','2','8943','0.99','2005-07-30 03:06:48.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14298','531','2','9107','4.99','2005-07-30 08:52:45.000','2006-02-15 22:21:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14299','531','2','10920','4.99','2005-08-02 02:14:10.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14300','531','1','10941','5.99','2005-08-02 03:11:33.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14301','531','2','11026','4.99','2005-08-02 05:46:05.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14302','531','1','11265','10.99','2005-08-02 14:05:42.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14303','531','1','11666','2.99','2005-08-17 05:45:10.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14304','531','1','12923','2.99','2005-08-19 04:50:20.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14305','531','2','13300','8.99','2005-08-19 18:46:56.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14306','531','2','15360','0.99','2005-08-22 21:36:51.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14307','532','1','43','2.99','2005-05-25 05:39:25.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14308','532','1','1694','4.99','2005-06-16 12:40:23.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14309','532','2','2821','3.99','2005-06-19 20:26:52.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14310','532','1','4336','2.99','2005-07-07 18:34:36.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14311','532','2','4962','4.99','2005-07-08 23:36:13.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14312','532','2','5190','2.99','2005-07-09 10:25:24.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14313','532','1','5253','7.99','2005-07-09 13:41:17.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14314','532','2','5278','4.99','2005-07-09 14:44:23.000','2006-02-15 22:21:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14315','532','2','5805','8.99','2005-07-10 15:08:41.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14316','532','1','5887','2.99','2005-07-10 19:45:47.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14317','532','2','6345','7.99','2005-07-11 20:05:18.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14318','532','2','6598','4.99','2005-07-12 07:38:25.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14319','532','1','6730','3.99','2005-07-12 13:58:25.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14320','532','1','7192','4.99','2005-07-27 08:36:55.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14321','532','2','7572','2.99','2005-07-27 22:44:29.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14322','532','1','8273','5.99','2005-07-29 01:33:16.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14323','532','1','9843','2.99','2005-07-31 12:25:28.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14324','532','2','10286','6.99','2005-08-01 03:35:58.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14325','532','2','10712','5.99','2005-08-01 18:47:56.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14326','532','1','10945','5.99','2005-08-02 03:20:23.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14327','532','2','11251','2.99','2005-08-02 13:40:49.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14328','532','2','11318','4.99','2005-08-02 16:09:11.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14329','532','2','12061','3.99','2005-08-17 21:13:35.000','2006-02-15 22:21:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14330','532','2','12295','5.99','2005-08-18 05:15:46.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14331','532','2','13038','4.99','2005-08-19 08:55:16.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14332','532','1','13192','8.99','2005-08-19 14:30:06.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14333','532','1','13254','4.99','2005-08-19 16:54:01.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14334','532','1','13908','4.99','2005-08-20 16:21:40.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14335','532','2','15180','0.99','2005-08-22 15:42:57.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14336','532','2','15414','1.99','2005-08-22 23:43:54.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14337','532','1','16014','5.99','2005-08-23 21:18:31.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14338','532','1','14616','0.99','2006-02-14 15:16:03.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14339','533','1','173','0.99','2005-05-26 03:42:10.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14340','533','2','190','1.99','2005-05-26 06:11:28.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14341','533','1','615','5.99','2005-05-28 15:35:52.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14342','533','1','1421','5.99','2005-06-15 17:57:04.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14343','533','1','1652','0.99','2005-06-16 09:31:37.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14344','533','1','1859','0.99','2005-06-17 01:13:38.000','2006-02-15 22:21:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14345','533','1','1954','2.99','2005-06-17 08:37:55.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14346','533','2','2770','6.99','2005-06-19 17:54:22.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14347','533','1','2956','0.99','2005-06-20 06:47:23.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14348','533','1','4112','8.99','2005-07-07 06:49:09.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14349','533','1','4788','4.99','2005-07-08 16:17:35.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14350','533','2','6781','2.99','2005-07-12 16:21:47.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14351','533','2','6834','0.99','2005-07-12 18:53:37.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14352','533','2','6837','9.99','2005-07-12 18:59:45.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14353','533','2','7555','4.99','2005-07-27 22:17:05.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14354','533','1','8093','8.99','2005-07-28 18:29:16.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14355','533','2','8104','2.99','2005-07-28 18:59:36.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14356','533','2','8250','2.99','2005-07-29 00:49:15.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14357','533','1','8471','2.99','2005-07-29 08:32:11.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14358','533','1','8676','1.99','2005-07-29 15:59:06.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14359','533','2','8786','1.99','2005-07-29 20:39:49.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14360','533','2','10090','3.99','2005-07-31 20:22:01.000','2006-02-15 22:21:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14361','533','1','10380','2.99','2005-08-01 06:34:36.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14362','533','1','10614','6.99','2005-08-01 14:57:00.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14363','533','2','11524','7.99','2005-08-17 00:10:55.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14364','533','1','11758','8.99','2005-08-17 09:33:02.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14365','533','1','11918','2.99','2005-08-17 16:08:42.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14366','533','1','12602','0.99','2005-08-18 16:49:50.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14367','533','1','12655','6.99','2005-08-18 18:57:44.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14368','533','1','14263','7.99','2005-08-21 06:08:15.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14369','533','1','14800','4.99','2005-08-22 00:46:18.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14370','533','2','16006','0.99','2005-08-23 21:01:09.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14371','533','2','14018','2.99','2006-02-14 15:16:03.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14372','534','2','304','5.99','2005-05-26 21:21:28.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14373','534','2','940','0.99','2005-05-30 15:01:02.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14374','534','1','1610','4.99','2005-06-16 06:36:33.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14375','534','1','1673','2.99','2005-06-16 10:40:17.000','2006-02-15 22:21:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14376','534','1','2436','0.99','2005-06-18 18:13:32.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14377','534','2','3213','1.99','2005-06-21 01:05:19.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14378','534','1','3216','4.99','2005-06-21 01:19:37.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14379','534','1','3735','2.99','2005-07-06 11:42:04.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14380','534','2','4998','4.99','2005-07-09 01:07:21.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14381','534','2','7113','2.99','2005-07-27 05:41:20.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14382','534','1','7662','2.99','2005-07-28 02:16:08.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14383','534','2','8633','0.99','2005-07-29 14:19:53.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14384','534','1','9456','5.99','2005-07-30 22:22:16.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14385','534','2','9464','4.99','2005-07-30 22:31:31.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14386','534','2','10465','5.99','2005-08-01 09:45:25.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14387','534','2','10725','6.99','2005-08-01 19:11:04.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14388','534','1','10796','0.99','2005-08-01 21:56:41.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14389','534','2','11180','5.99','2005-08-02 10:54:30.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14390','534','2','12305','2.99','2005-08-18 05:46:29.000','2006-02-15 22:21:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14391','534','1','12691','5.99','2005-08-18 20:07:46.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14392','534','2','12798','4.99','2005-08-19 00:24:33.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14393','534','2','13294','0.99','2005-08-19 18:36:35.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14394','534','2','14816','1.99','2005-08-22 01:15:51.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14395','534','1','14526','2.99','2006-02-14 15:16:03.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14396','535','1','37','0.99','2005-05-25 04:44:31.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14397','535','2','541','2.99','2005-05-28 06:41:58.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14398','535','1','778','3.99','2005-05-29 14:09:53.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14399','535','2','959','4.99','2005-05-30 18:07:00.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14400','535','1','1712','4.99','2005-06-16 14:25:09.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14401','535','1','3228','4.99','2005-06-21 02:20:24.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14402','535','1','4331','4.99','2005-07-07 18:22:30.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14403','535','1','4718','6.99','2005-07-08 12:32:08.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14404','535','1','4743','2.99','2005-07-08 13:42:36.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14405','535','2','4914','6.99','2005-07-08 21:30:53.000','2006-02-15 22:21:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14406','535','1','5588','0.99','2005-07-10 04:21:10.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14407','535','2','5890','8.99','2005-07-10 20:00:25.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14408','535','1','6504','2.99','2005-07-12 03:19:14.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14409','535','1','8395','2.99','2005-07-29 06:03:30.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14410','535','1','8645','4.99','2005-07-29 14:47:45.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14411','535','2','9440','0.99','2005-07-30 21:40:15.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14412','535','1','9524','4.99','2005-07-31 01:01:06.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14413','535','2','10322','5.99','2005-08-01 04:44:13.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14414','535','2','10353','3.99','2005-08-01 05:46:33.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14415','535','2','11736','8.99','2005-08-17 08:40:55.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14416','535','1','11855','7.99','2005-08-17 13:43:07.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14417','535','2','12168','2.99','2005-08-18 01:03:52.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14418','535','1','12233','0.99','2005-08-18 03:16:54.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14419','535','2','12673','4.99','2005-08-18 19:21:56.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14420','535','1','12732','0.99','2005-08-18 21:57:50.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14421','535','2','12750','1.99','2005-08-18 22:32:39.000','2006-02-15 22:21:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14422','535','1','13631','4.99','2005-08-20 07:07:37.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14423','535','1','13852','0.99','2005-08-20 14:45:23.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14424','535','1','14522','4.99','2005-08-21 15:01:34.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14425','535','2','15075','5.99','2005-08-22 11:04:52.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14426','535','1','15287','6.99','2005-08-22 19:19:37.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14427','535','1','16017','0.99','2005-08-23 21:27:11.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14428','536','1','237','0.99','2005-05-26 12:15:13.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14429','536','1','929','6.99','2005-05-30 12:32:39.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14430','536','1','1582','4.99','2005-06-16 04:31:57.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14431','536','2','1962','2.99','2005-06-17 09:08:58.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14432','536','2','2403','2.99','2005-06-18 16:33:22.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14433','536','1','3483','4.99','2005-07-05 23:13:51.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14434','536','1','3514','0.99','2005-07-06 00:46:54.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14435','536','1','4448','2.99','2005-07-07 23:17:12.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14436','536','2','5196','0.99','2005-07-09 10:43:34.000','2006-02-15 22:21:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14437','536','1','6400','5.99','2005-07-11 22:43:44.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14438','536','1','7065','4.99','2005-07-27 03:53:43.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14439','536','2','8535','4.99','2005-07-29 10:32:33.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14440','536','1','8679','4.99','2005-07-29 16:07:47.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14441','536','1','8958','2.99','2005-07-30 03:34:26.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14442','536','1','9411','8.99','2005-07-30 20:38:22.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14443','536','1','9727','4.99','2005-07-31 08:39:13.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14444','536','2','10019','3.99','2005-07-31 18:20:56.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14445','536','1','11473','6.99','2005-08-02 21:52:03.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14446','536','1','11826','2.99','2005-08-17 12:43:46.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14447','536','2','11977','4.99','2005-08-17 18:01:15.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14448','536','2','12052','8.99','2005-08-17 20:57:02.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14449','536','2','13505','4.99','2005-08-20 02:05:57.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14450','536','1','15130','7.99','2005-08-22 13:04:32.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14451','536','1','15978','8.99','2005-08-23 20:08:18.000','2006-02-15 22:21:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14452','536','1','15979','0.99','2005-08-23 20:08:26.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14453','537','2','603','4.99','2005-05-28 14:27:51.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14454','537','1','1445','2.99','2005-06-15 19:10:07.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14455','537','2','2184','2.99','2005-06-18 01:10:36.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14456','537','1','2586','8.99','2005-06-19 05:05:11.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14457','537','2','3134','8.99','2005-06-20 19:29:09.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14458','537','1','3555','0.99','2005-07-06 02:45:35.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14459','537','2','3853','0.99','2005-07-06 16:59:20.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14460','537','1','5630','2.99','2005-07-10 06:08:14.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14461','537','2','5877','5.99','2005-07-10 19:08:51.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14462','537','2','6310','2.99','2005-07-11 18:14:05.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14463','537','1','6409','4.99','2005-07-11 23:05:49.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14464','537','1','6746','0.99','2005-07-12 14:33:01.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14465','537','1','7179','2.99','2005-07-27 08:10:29.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14466','537','2','7810','4.99','2005-07-28 08:00:38.000','2006-02-15 22:21:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14467','537','2','8126','4.99','2005-07-28 19:32:41.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14468','537','2','8256','4.99','2005-07-29 01:02:42.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14469','537','1','9967','2.99','2005-07-31 16:31:17.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14470','537','2','12984','4.99','2005-08-19 07:06:51.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14471','537','2','13885','4.99','2005-08-20 15:32:09.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14472','537','1','14010','4.99','2005-08-20 20:29:46.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14473','537','2','14506','0.99','2005-08-21 14:32:27.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14474','537','1','14670','0.99','2005-08-21 19:54:11.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14475','537','1','15149','2.99','2005-08-22 14:08:06.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14476','537','1','15832','8.99','2005-08-23 15:21:35.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14477','537','1','13419','4.99','2006-02-14 15:16:03.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14478','538','2','594','2.99','2005-05-28 13:41:56.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14479','538','2','734','4.99','2005-05-29 07:38:52.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14480','538','1','1314','5.99','2005-06-15 10:21:45.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14481','538','1','1912','4.99','2005-06-17 05:18:32.000','2006-02-15 22:21:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14482','538','1','2682','4.99','2005-06-19 12:18:17.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14483','538','2','3189','2.99','2005-06-20 23:19:33.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14484','538','2','3554','4.99','2005-07-06 02:37:10.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14485','538','2','5135','8.99','2005-07-09 07:53:22.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14486','538','1','5369','4.99','2005-07-09 18:42:16.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14487','538','1','5486','2.99','2005-07-09 23:57:44.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14488','538','1','5898','2.99','2005-07-10 20:18:09.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14489','538','2','6130','2.99','2005-07-11 08:19:56.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14490','538','1','6332','0.99','2005-07-11 19:19:06.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14491','538','2','6936','0.99','2005-07-26 23:13:34.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14492','538','1','7694','0.99','2005-07-28 03:39:25.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14493','538','1','8765','0.99','2005-07-29 19:40:08.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14494','538','1','9307','0.99','2005-07-30 16:52:43.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14495','538','1','9643','4.99','2005-07-31 05:35:48.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14496','538','2','9897','4.99','2005-07-31 14:11:57.000','2006-02-15 22:21:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14497','538','2','9939','8.99','2005-07-31 15:29:00.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14498','538','2','10701','3.99','2005-08-01 18:28:17.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14499','538','1','10732','5.99','2005-08-01 19:25:18.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14500','538','1','10962','4.99','2005-08-02 03:48:13.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14501','538','2','12089','5.99','2005-08-17 22:20:29.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14502','538','1','13544','1.99','2005-08-20 03:44:26.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14503','538','2','13770','4.99','2005-08-20 11:45:54.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14504','538','2','14572','2.99','2005-08-21 16:44:31.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14505','538','1','14591','0.99','2005-08-21 17:30:09.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14506','538','1','15343','6.99','2005-08-22 21:01:25.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14507','539','2','250','4.99','2005-05-26 14:30:24.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14508','539','1','342','0.99','2005-05-27 04:11:04.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14509','539','2','1282','3.99','2005-06-15 08:25:33.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14510','539','1','1327','0.99','2005-06-15 11:11:39.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14511','539','2','1444','4.99','2005-06-15 19:08:16.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14512','539','1','4035','2.99','2005-07-07 02:45:02.000','2006-02-15 22:21:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14513','539','1','4247','0.99','2005-07-07 13:51:54.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14514','539','2','5086','4.99','2005-07-09 05:40:04.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14515','539','2','5139','7.99','2005-07-09 08:01:51.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14516','539','2','5493','2.99','2005-07-10 00:11:44.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14517','539','2','6874','5.99','2005-07-12 20:20:53.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14518','539','1','7781','2.99','2005-07-28 07:13:20.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14519','539','2','8247','6.99','2005-07-29 00:41:38.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14520','539','2','8761','5.99','2005-07-29 19:26:47.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14521','539','2','9250','0.99','2005-07-30 14:18:16.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14522','539','1','9777','7.99','2005-07-31 10:01:06.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14523','539','1','9796','4.99','2005-07-31 10:52:43.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14524','539','2','10922','3.99','2005-08-02 02:14:40.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14525','539','1','12848','2.99','2005-08-19 02:05:11.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14526','539','2','13615','2.99','2005-08-20 06:28:53.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14527','539','2','13778','5.99','2005-08-20 12:03:44.000','2006-02-15 22:21:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14528','539','1','15356','2.99','2005-08-22 21:24:19.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14529','540','2','1263','2.99','2005-06-15 06:56:39.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14530','540','2','1290','4.99','2005-06-15 08:52:44.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14531','540','2','2640','2.99','2005-06-19 09:26:13.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14532','540','1','2953','3.99','2005-06-20 06:39:11.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14533','540','1','3340','3.99','2005-06-21 10:37:23.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14534','540','2','4628','4.99','2005-07-08 08:25:52.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14535','540','2','4991','4.99','2005-07-09 00:49:03.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14536','540','1','6103','2.99','2005-07-11 06:59:55.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14537','540','2','6145','7.99','2005-07-11 09:07:01.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14538','540','2','6182','2.99','2005-07-11 11:11:38.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14539','540','1','6748','6.99','2005-07-12 14:39:27.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14540','540','1','6919','0.99','2005-07-12 22:32:17.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14541','540','2','9762','4.99','2005-07-31 09:32:54.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14542','540','2','9815','2.99','2005-07-31 11:30:51.000','2006-02-15 22:21:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14543','540','1','10924','8.99','2005-08-02 02:20:19.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14544','540','1','11198','3.99','2005-08-02 11:45:15.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14545','540','2','11324','4.99','2005-08-02 16:31:17.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14546','540','2','11432','6.99','2005-08-02 20:10:01.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14547','540','2','12058','8.99','2005-08-17 21:07:41.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14548','540','2','12201','4.99','2005-08-18 02:14:06.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14549','540','1','12300','6.99','2005-08-18 05:36:14.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14550','540','2','14910','0.99','2005-08-22 04:50:52.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14551','540','2','15079','2.99','2005-08-22 11:09:56.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14552','540','2','15953','3.99','2005-08-23 19:13:46.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14553','541','1','1021','7.99','2005-05-31 03:16:15.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14554','541','1','1066','4.99','2005-05-31 09:07:33.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14555','541','2','1986','2.99','2005-06-17 10:34:59.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14556','541','1','2708','6.99','2005-06-19 13:59:05.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14557','541','1','5018','2.99','2005-07-09 02:01:05.000','2006-02-15 22:21:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14558','541','2','5197','4.99','2005-07-09 10:43:54.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14559','541','2','6468','7.99','2005-07-12 01:27:09.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14560','541','2','6718','2.99','2005-07-12 13:38:06.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14561','541','1','8113','8.99','2005-07-28 19:14:00.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14562','541','1','8322','4.99','2005-07-29 03:52:49.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14563','541','2','9603','0.99','2005-07-31 03:43:43.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14564','541','1','10306','5.99','2005-08-01 04:19:18.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14565','541','2','11273','0.99','2005-08-02 14:20:55.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14566','541','1','12306','4.99','2005-08-18 05:47:55.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14567','541','2','12395','4.99','2005-08-18 09:06:30.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14568','541','1','12894','7.99','2005-08-19 03:49:28.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14569','541','2','13239','4.99','2005-08-19 16:22:13.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14570','541','2','13640','0.99','2005-08-20 07:22:53.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14571','541','2','14938','6.99','2005-08-22 05:52:39.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14572','541','1','15071','4.99','2005-08-22 10:58:43.000','2006-02-15 22:21:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14573','541','2','15141','3.99','2005-08-22 13:41:49.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14574','541','1','15223','1.99','2005-08-22 17:13:39.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14575','541','1','15421','0.99','2005-08-22 23:56:37.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14576','541','2','15924','1.99','2005-08-23 18:08:59.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14577','542','1','220','4.99','2005-05-26 10:06:49.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14578','542','2','376','4.99','2005-05-27 08:58:15.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14579','542','1','2610','4.99','2005-06-19 07:16:20.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14580','542','2','2957','10.99','2005-06-20 06:53:47.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14581','542','2','5293','0.99','2005-07-09 15:17:23.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14582','542','1','5477','6.99','2005-07-09 23:43:49.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14583','542','2','6077','5.99','2005-07-11 05:06:08.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14584','542','2','6325','5.99','2005-07-11 19:06:01.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14585','542','1','6887','9.99','2005-07-12 21:00:23.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14586','542','2','7672','8.99','2005-07-28 02:49:41.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14587','542','1','8533','4.99','2005-07-29 10:29:16.000','2006-02-15 22:21:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14588','542','2','8544','3.99','2005-07-29 11:02:08.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14589','542','1','10280','4.99','2005-08-01 03:27:15.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14590','542','2','11583','0.99','2005-08-17 02:08:13.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14591','542','2','11903','2.99','2005-08-17 15:37:45.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14592','542','1','12819','0.99','2005-08-19 01:05:05.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14593','542','1','13447','0.99','2005-08-20 00:09:36.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14594','542','2','14982','9.99','2005-08-22 07:20:55.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14595','543','1','243','6.99','2005-05-26 13:06:05.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14596','543','2','476','1.99','2005-05-27 22:31:36.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14597','543','2','1720','4.99','2005-06-16 15:00:14.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14598','543','1','2426','2.99','2005-06-18 17:40:44.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14599','543','2','3070','4.99','2005-06-20 14:15:39.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14600','543','1','3128','2.99','2005-06-20 18:41:47.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14601','543','2','3467','5.99','2005-06-21 22:19:25.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14602','543','1','4887','2.99','2005-07-08 19:59:14.000','2006-02-15 22:21:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14603','543','2','5467','4.99','2005-07-09 23:05:47.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14604','543','2','6013','4.99','2005-07-11 02:02:03.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14605','543','2','7312','2.99','2005-07-27 13:03:14.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14606','543','1','8580','2.99','2005-07-29 12:00:27.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14607','543','2','8845','4.99','2005-07-29 23:06:13.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14608','543','1','9505','2.99','2005-07-31 00:11:19.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14609','543','1','9999','0.99','2005-07-31 17:40:53.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14610','543','2','10257','0.99','2005-08-01 02:49:43.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14611','543','1','10520','4.99','2005-08-01 11:45:58.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14612','543','2','11241','9.99','2005-08-02 13:29:24.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14613','543','1','11681','2.99','2005-08-17 06:13:30.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14614','543','1','13187','0.99','2005-08-19 14:24:48.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14615','543','2','15281','1.99','2005-08-22 19:10:26.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14616','543','1','15785','1.99','2005-08-23 13:46:27.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14617','544','1','397','2.99','2005-05-27 12:29:02.000','2006-02-15 22:21:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14618','544','1','864','2.99','2005-05-30 03:27:17.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14619','544','1','1248','1.99','2005-06-15 05:33:52.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14620','544','2','1434','10.99','2005-06-15 18:30:46.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14621','544','1','2373','0.99','2005-06-18 14:37:57.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14622','544','1','2395','2.99','2005-06-18 15:45:15.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14623','544','1','4395','0.99','2005-07-07 21:13:22.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14624','544','1','4703','2.99','2005-07-08 11:44:56.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14625','544','2','4847','6.99','2005-07-08 18:29:13.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14626','544','2','8566','2.99','2005-07-29 11:35:46.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14627','544','1','8937','5.99','2005-07-30 02:53:21.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14628','544','1','8963','9.99','2005-07-30 03:46:26.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14629','544','1','10735','0.99','2005-08-01 19:29:45.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14630','544','1','11401','3.99','2005-08-02 19:05:06.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14631','544','2','11766','2.99','2005-08-17 09:58:40.000','2006-02-15 22:21:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14632','544','2','12640','3.99','2005-08-18 18:14:49.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14633','544','2','14142','4.99','2005-08-21 02:07:43.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14634','544','1','14498','4.99','2005-08-21 14:10:44.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14635','544','2','14651','8.99','2005-08-21 19:31:09.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14636','544','1','14981','2.99','2005-08-22 07:19:05.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14637','544','1','15219','6.99','2005-08-22 17:00:31.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14638','544','1','15605','4.99','2005-08-23 06:48:47.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14639','545','2','248','0.99','2005-05-26 14:07:58.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14640','545','2','715','3.99','2005-05-29 04:22:41.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14641','545','1','2123','2.99','2005-06-17 20:48:30.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14642','545','2','3693','8.99','2005-07-06 09:56:09.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14643','545','1','3975','5.99','2005-07-06 23:00:09.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14644','545','1','4597','5.99','2005-07-08 06:43:42.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14645','545','1','5264','0.99','2005-07-09 14:11:28.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14646','545','1','7078','5.99','2005-07-27 04:16:37.000','2006-02-15 22:21:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14647','545','2','8599','3.99','2005-07-29 12:58:52.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14648','545','2','8848','2.99','2005-07-29 23:20:58.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14649','545','2','9810','2.99','2005-07-31 11:22:41.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14650','545','2','9942','4.99','2005-07-31 15:35:43.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14651','545','2','10931','2.99','2005-08-02 02:44:59.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14652','545','2','11760','2.99','2005-08-17 09:44:22.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14653','545','1','12098','4.99','2005-08-17 22:38:31.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14654','545','1','12349','2.99','2005-08-18 07:23:42.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14655','545','2','12667','10.99','2005-08-18 19:11:45.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14656','545','1','12800','2.99','2005-08-19 00:27:11.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14657','545','1','13595','4.99','2005-08-20 05:54:27.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14658','545','1','15585','0.99','2005-08-23 05:55:22.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14659','545','2','15998','4.99','2005-08-23 20:41:09.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14660','546','1','197','5.99','2005-05-26 06:59:21.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14661','546','1','482','6.99','2005-05-27 22:53:02.000','2006-02-15 22:21:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14662','546','1','1181','1.99','2005-06-15 00:42:17.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14663','546','2','1403','0.99','2005-06-15 16:31:59.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14664','546','1','1787','3.99','2005-06-16 19:30:59.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14665','546','1','2361','5.99','2005-06-18 13:19:05.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14666','546','1','3738','4.99','2005-07-06 11:50:57.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14667','546','2','4664','0.99','2005-07-08 10:01:28.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14668','546','1','4734','0.99','2005-07-08 13:12:12.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14669','546','1','5629','0.99','2005-07-10 06:02:25.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14670','546','2','6758','9.99','2005-07-12 15:13:49.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14671','546','1','6786','2.99','2005-07-12 16:32:33.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14672','546','2','6910','6.99','2005-07-12 22:11:21.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14673','546','1','8532','4.99','2005-07-29 10:26:56.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14674','546','1','9087','4.99','2005-07-30 08:19:47.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14675','546','1',NULL,'3.99','2005-07-30 21:16:20.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14676','546','2','9626','1.99','2005-07-31 04:37:41.000','2006-02-15 22:21:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14677','546','2','10370','0.99','2005-08-01 06:18:04.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14678','546','2','11352','5.99','2005-08-02 17:29:39.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14679','546','1','11797','4.99','2005-08-17 11:17:21.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14680','546','2','12591','2.99','2005-08-18 16:16:41.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14681','546','2','13850','5.99','2005-08-20 14:43:03.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14682','546','1','14797','4.99','2005-08-22 00:41:24.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14683','546','1','14829','2.99','2005-08-22 01:35:37.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14684','546','1','14929','3.99','2005-08-22 05:32:38.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14685','546','2','15565','4.99','2005-08-23 05:13:09.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14686','547','1','306','0.99','2005-05-26 21:31:57.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14687','547','2','443','8.99','2005-05-27 18:35:20.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14688','547','2','1094','1.99','2005-05-31 13:03:49.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14689','547','2','2022','8.99','2005-06-17 12:44:39.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14690','547','2','3679','4.99','2005-07-06 09:15:57.000','2006-02-15 22:21:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14691','547','1','3765','4.99','2005-07-06 13:01:47.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14692','547','2','5327','4.99','2005-07-09 16:39:49.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14693','547','2','5854','4.99','2005-07-10 17:47:34.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14694','547','1','6605','0.99','2005-07-12 08:01:07.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14695','547','2','7420','4.99','2005-07-27 17:09:39.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14696','547','2','7547','3.99','2005-07-27 21:51:48.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14697','547','1','7835','4.99','2005-07-28 08:49:39.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14698','547','1','7859','3.99','2005-07-28 09:57:17.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14699','547','1','8828','2.99','2005-07-29 22:32:54.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14700','547','1','10903','2.99','2005-08-02 01:41:59.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14701','547','1','10980','4.99','2005-08-02 04:17:32.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14702','547','2','11170','5.99','2005-08-02 10:21:53.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14703','547','2','11361','0.99','2005-08-02 17:46:34.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14704','547','1','12579','0.99','2005-08-18 15:47:49.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14705','547','2','12943','2.99','2005-08-19 05:46:26.000','2006-02-15 22:21:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14706','547','2','13307','2.99','2005-08-19 18:58:44.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14707','547','1','14510','9.99','2005-08-21 14:44:41.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14708','547','2','14884','4.99','2005-08-22 03:57:08.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14709','548','2','177','6.99','2005-05-26 04:14:29.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14710','548','1','743','4.99','2005-05-29 08:39:02.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14711','548','2','872','3.99','2005-05-30 05:03:04.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14712','548','1','1326','1.99','2005-06-15 11:07:39.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14713','548','1','2280','2.99','2005-06-18 06:46:54.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14714','548','2','2978','0.99','2005-06-20 08:25:16.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14715','548','1','3686','2.99','2005-07-06 09:37:50.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14716','548','2','3777','2.99','2005-07-06 13:36:48.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14717','548','1','4155','7.99','2005-07-07 09:00:49.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14718','548','2','5138','4.99','2005-07-09 08:00:46.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14719','548','2','6490','4.99','2005-07-12 02:28:03.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14720','548','1','9614','5.99','2005-07-31 03:59:31.000','2006-02-15 22:21:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14721','548','2','10318','0.99','2005-08-01 04:36:53.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14722','548','1','12860','5.99','2005-08-19 02:24:41.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14723','548','1','13691','3.99','2005-08-20 09:07:39.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14724','548','2','13730','7.99','2005-08-20 10:17:09.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14725','548','2','14188','0.99','2005-08-21 03:32:04.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14726','548','2','14723','6.99','2005-08-21 21:52:32.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14727','548','1','13584','0.99','2006-02-14 15:16:03.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14728','549','1','6','0.99','2005-05-24 23:08:07.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14729','549','2','852','4.99','2005-05-30 01:36:57.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14730','549','1','906','3.99','2005-05-30 10:30:38.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14731','549','2','1086','4.99','2005-05-31 11:17:37.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14732','549','1','2050','2.99','2005-06-17 15:07:30.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14733','549','2','3523','2.99','2005-07-06 01:01:38.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14734','549','2','3892','4.99','2005-07-06 18:58:58.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14735','549','1','4447','0.99','2005-07-07 23:15:28.000','2006-02-15 22:21:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14736','549','1','7252','7.99','2005-07-27 10:45:28.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14737','549','2','8239','0.99','2005-07-29 00:31:39.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14738','549','1','8316','4.99','2005-07-29 03:38:49.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14739','549','2','9445','7.99','2005-07-30 21:50:42.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14740','549','2','9511','9.99','2005-07-31 00:25:05.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14741','549','2','9887','0.99','2005-07-31 14:00:32.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14742','549','2','10281','0.99','2005-08-01 03:28:33.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14743','549','2','11737','4.99','2005-08-17 08:42:08.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14744','549','2','11878','2.99','2005-08-17 14:23:52.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14745','549','2','12634','2.99','2005-08-18 17:58:14.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14746','549','2','12747','4.99','2005-08-18 22:28:22.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14747','549','1','14434','0.99','2005-08-21 11:40:46.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14748','550','2','922','7.99','2005-05-30 11:55:55.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14749','550','1','1233','6.99','2005-06-15 04:18:37.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14750','550','1','1863','3.99','2005-06-17 01:31:46.000','2006-02-15 22:21:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14751','550','2','1883','4.99','2005-06-17 03:18:51.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14752','550','1','3154','2.99','2005-06-20 20:44:40.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14753','550','2','3236','9.99','2005-06-21 02:47:43.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14754','550','1','3272','10.99','2005-06-21 05:18:27.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14755','550','1','3979','4.99','2005-07-06 23:04:35.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14756','550','1','5727','4.99','2005-07-10 11:25:28.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14757','550','1','6695','2.99','2005-07-12 12:39:39.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14758','550','1','7030','0.99','2005-07-27 03:01:40.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14759','550','2','7838','2.99','2005-07-28 09:00:21.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14760','550','1','8628','6.99','2005-07-29 14:06:24.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14761','550','2','8838','2.99','2005-07-29 22:52:23.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14762','550','1','8959','8.99','2005-07-30 03:35:49.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14763','550','1','9616','2.99','2005-07-31 04:05:01.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14764','550','1','9748','0.99','2005-07-31 09:17:56.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14765','550','2','10140','4.99','2005-07-31 22:03:20.000','2006-02-15 22:21:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14766','550','1','11246','2.99','2005-08-02 13:33:56.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14767','550','2','11320','0.99','2005-08-02 16:13:28.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14768','550','1','11969','4.99','2005-08-17 17:49:37.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14769','550','1','12063','2.99','2005-08-17 21:24:48.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14770','550','2','12077','4.99','2005-08-17 21:59:14.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14771','550','1','13114','10.99','2005-08-19 11:27:32.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14772','550','2','14071','2.99','2005-08-20 23:01:56.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14773','550','2','14127','4.99','2005-08-21 01:33:32.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14774','550','2','14375','6.99','2005-08-21 09:46:35.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14775','550','1','14687','4.99','2005-08-21 20:32:16.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14776','550','2','15431','9.99','2005-08-23 00:26:47.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14777','550','1','15883','0.99','2005-08-23 16:44:56.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14778','550','2','15977','4.99','2005-08-23 20:07:10.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14779','550','2','11757','2.99','2006-02-14 15:16:03.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14780','551','2','155','7.99','2005-05-26 01:15:05.000','2006-02-15 22:21:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14781','551','1','728','2.99','2005-05-29 06:12:38.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14782','551','1','795','0.99','2005-05-29 16:57:39.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14783','551','2','969','4.99','2005-05-30 19:23:48.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14784','551','2','1005','3.99','2005-05-31 00:53:25.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14785','551','2','2069','4.99','2005-06-17 16:19:39.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14786','551','1','2776','3.99','2005-06-19 18:16:24.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14787','551','2','3996','5.99','2005-07-06 23:46:43.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14788','551','1','5201','1.99','2005-07-09 10:52:53.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14789','551','2','5528','0.99','2005-07-10 02:09:21.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14790','551','1','6041','0.99','2005-07-11 03:14:58.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14791','551','2','7095','9.99','2005-07-27 04:51:15.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14792','551','1','8986','0.99','2005-07-30 04:37:20.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14793','551','1','9287','2.99','2005-07-30 15:35:39.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14794','551','2','9765','4.99','2005-07-31 09:44:40.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14795','551','2','11380','0.99','2005-08-02 18:17:32.000','2006-02-15 22:21:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14796','551','2','11883','2.99','2005-08-17 14:41:28.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14797','551','2','12208','4.99','2005-08-18 02:25:25.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14798','551','2','12868','0.99','2005-08-19 02:47:19.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14799','551','1','13439','3.99','2005-08-19 23:42:16.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14800','551','1','14420','0.99','2005-08-21 11:16:15.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14801','551','2','14609','4.99','2005-08-21 17:57:26.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14802','551','2','14633','2.99','2005-08-21 18:51:10.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14803','551','1','14833','2.99','2005-08-22 01:45:18.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14804','551','1','15377','4.99','2005-08-22 22:22:33.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14805','551','2','15390','6.99','2005-08-22 22:57:25.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14806','552','2','174','0.99','2005-05-26 03:44:10.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14807','552','2','2320','0.99','2005-06-18 09:24:50.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14808','552','2','3397','4.99','2005-06-21 15:30:11.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14809','552','1','4477','6.99','2005-07-08 00:38:24.000','2006-02-15 22:21:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14810','552','1','5213','7.99','2005-07-09 11:39:43.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14811','552','2','6189','4.99','2005-07-11 11:36:03.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14812','552','1','7772','2.99','2005-07-28 06:59:09.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14813','552','1','8085','2.99','2005-07-28 18:13:15.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14814','552','2','8192','2.99','2005-07-28 22:49:11.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14815','552','2','8614','5.99','2005-07-29 13:32:05.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14816','552','2','8894','4.99','2005-07-30 00:48:31.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14817','552','1','9342','8.99','2005-07-30 18:09:56.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14818','552','1','11146','1.99','2005-08-02 09:45:32.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14819','552','2','11205','4.99','2005-08-02 11:56:54.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14820','552','2','11300','7.99','2005-08-02 15:37:42.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14821','552','2','12433','4.99','2005-08-18 10:37:49.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14822','552','2','12880','2.99','2005-08-19 03:27:17.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14823','552','2','13574','2.99','2005-08-20 05:10:39.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14824','552','1','13693','0.99','2005-08-20 09:11:42.000','2006-02-15 22:21:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14825','552','2','14724','4.99','2005-08-21 21:53:47.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14826','552','2','15700','2.99','2005-08-23 10:21:21.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14827','553','2','789','4.99','2005-05-29 16:17:07.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14828','553','2','1862','3.99','2005-06-17 01:29:30.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14829','553','1','2460','8.99','2005-06-18 19:54:13.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14830','553','2','3103','6.99','2005-06-20 16:58:19.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14831','553','1','3495','6.99','2005-07-05 23:50:04.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14832','553','2','3793','4.99','2005-07-06 14:32:44.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14833','553','2','3859','2.99','2005-07-06 17:18:15.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14834','553','1','3890','4.99','2005-07-06 18:58:15.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14835','553','2','3891','4.99','2005-07-06 18:58:25.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14836','553','2','3942','4.99','2005-07-06 21:21:34.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14837','553','1','4257','4.99','2005-07-07 14:18:41.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14838','553','2','4662','0.99','2005-07-08 09:58:54.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14839','553','2','4845','4.99','2005-07-08 18:28:20.000','2006-02-15 22:21:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14840','553','2','4941','3.99','2005-07-08 22:39:10.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14841','553','1','6069','2.99','2005-07-11 04:44:59.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14842','553','2','6657','0.99','2005-07-12 11:11:36.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14843','553','1','6812','6.99','2005-07-12 18:03:25.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14844','553','1','7890','4.99','2005-07-28 10:43:40.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14845','553','2','9272','4.99','2005-07-30 15:05:22.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14846','553','2','9601','2.99','2005-07-31 03:42:17.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14847','553','2','11710','4.99','2005-08-17 07:29:44.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14848','553','1','13972','2.99','2005-08-20 18:52:17.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14849','553','1','15042','4.99','2005-08-22 09:47:37.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14850','553','1','15506','0.99','2005-08-23 02:48:24.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14851','554','1','607','2.99','2005-05-28 15:02:41.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14852','554','1','817','2.99','2005-05-29 20:39:14.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14853','554','1','1959','4.99','2005-06-17 08:54:10.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14854','554','1','2279','6.99','2005-06-18 06:38:22.000','2006-02-15 22:21:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14855','554','2','3278','2.99','2005-06-21 05:41:30.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14856','554','1','3312','6.99','2005-06-21 08:05:32.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14857','554','2','4902','4.99','2005-07-08 20:49:30.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14858','554','1','5527','2.99','2005-07-10 02:06:01.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14859','554','1','5968','5.99','2005-07-11 00:03:11.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14860','554','1','6144','2.99','2005-07-11 09:02:53.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14861','554','1','10612','6.99','2005-08-01 14:55:31.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14862','554','2','10829','7.99','2005-08-01 23:17:06.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14863','554','2','11589','9.99','2005-08-17 02:28:22.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14864','554','1','11873','0.99','2005-08-17 14:14:39.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14865','554','1','12010','8.99','2005-08-17 19:17:54.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14866','554','1','12014','0.99','2005-08-17 19:29:44.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14867','554','2','13139','4.99','2005-08-19 12:32:10.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14868','554','2','14015','2.99','2005-08-20 20:47:43.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14869','554','1','14098','3.99','2005-08-21 00:30:32.000','2006-02-15 22:21:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14870','554','1','14469','0.99','2005-08-21 13:07:24.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14871','554','1','14626','2.99','2005-08-21 18:35:44.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14872','554','2','15690','4.99','2005-08-23 09:53:30.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14873','555','2','3232','1.99','2005-06-21 02:30:37.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14874','555','2','4875','2.99','2005-07-08 19:24:17.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14875','555','1','8161','0.99','2005-07-28 21:11:00.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14876','555','1','8245','3.99','2005-07-29 00:37:09.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14877','555','1','9299','5.99','2005-07-30 16:32:51.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14878','555','2','9990','7.99','2005-07-31 17:24:21.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14879','555','2','10076','7.99','2005-07-31 20:00:34.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14880','555','1','10921','3.99','2005-08-02 02:14:33.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14881','555','1','11168','4.99','2005-08-02 10:19:42.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14882','555','1','11718','4.99','2005-08-17 07:44:42.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14883','555','2','11747','2.99','2005-08-17 09:03:31.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14884','555','2','12091','4.99','2005-08-17 22:22:50.000','2006-02-15 22:21:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14885','555','2','12150','2.99','2005-08-18 00:13:55.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14886','555','2','12182','2.99','2005-08-18 01:30:19.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14887','555','1','12388','2.99','2005-08-18 08:48:09.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14888','555','1','12883','4.99','2005-08-19 03:33:47.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14889','555','2','15102','6.99','2005-08-22 11:58:58.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14890','556','1','184','0.99','2005-05-26 05:29:49.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14891','556','2','772','5.99','2005-05-29 13:08:06.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14892','556','1','1083','3.99','2005-05-31 11:04:48.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14893','556','1','2092','6.99','2005-06-17 18:12:16.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14894','556','2','2593','5.99','2005-06-19 05:40:11.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14895','556','2','2986','0.99','2005-06-20 08:50:28.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14896','556','1','3093','4.99','2005-06-20 16:06:14.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14897','556','2','3438','6.99','2005-06-21 19:31:40.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14898','556','2','4719','2.99','2005-07-08 12:33:00.000','2006-02-15 22:21:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14899','556','2','4839','3.99','2005-07-08 18:13:10.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14900','556','1','4846','0.99','2005-07-08 18:29:05.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14901','556','2','5722','0.99','2005-07-10 11:10:04.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14902','556','2','6484','2.99','2005-07-12 02:04:10.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14903','556','1','8909','5.99','2005-07-30 01:28:03.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14904','556','2','10106','4.99','2005-07-31 21:00:47.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14905','556','2','10518','6.99','2005-08-01 11:44:08.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14906','556','1','11466','1.99','2005-08-02 21:46:46.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14907','556','2','11804','3.99','2005-08-17 11:42:45.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14908','556','1','12045','4.99','2005-08-17 20:40:46.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14909','556','1','14176','2.99','2005-08-21 03:09:23.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14910','556','1','15568','2.99','2005-08-23 05:24:09.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14911','557','2','467','4.99','2005-05-27 21:10:03.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14912','557','1','478','4.99','2005-05-27 22:38:20.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14913','557','1','1666','0.99','2005-06-16 10:17:19.000','2006-02-15 22:21:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14914','557','2','2988','6.99','2005-06-20 08:59:08.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14915','557','1','3050','3.99','2005-06-20 13:03:03.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14916','557','1','4651','0.99','2005-07-08 09:39:39.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14917','557','1','4851','1.99','2005-07-08 18:40:05.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14918','557','1','6459','0.99','2005-07-12 01:12:03.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14919','557','2','6713','3.99','2005-07-12 13:27:36.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14920','557','2','6823','4.99','2005-07-12 18:24:31.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14921','557','2','6898','0.99','2005-07-12 21:39:04.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14922','557','1','9336','0.99','2005-07-30 18:01:15.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14923','557','1','9341','2.99','2005-07-30 18:07:58.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14924','557','2','9366','1.99','2005-07-30 18:48:57.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14925','557','2','9367','6.99','2005-07-30 18:49:58.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14926','557','1','11181','0.99','2005-08-02 10:55:03.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14927','557','1','12555','1.99','2005-08-18 14:49:22.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14928','557','1','12789','2.99','2005-08-19 00:16:19.000','2006-02-15 22:21:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14929','557','1','13540','2.99','2005-08-20 03:41:23.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14930','557','2','13794','2.99','2005-08-20 12:25:32.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14931','557','2','15236','0.99','2005-08-22 17:44:27.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14932','557','2','15570','5.99','2005-08-23 05:24:55.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14933','557','2','15914','0.99','2005-08-23 17:49:26.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14934','557','1','14278','4.99','2006-02-14 15:16:03.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14935','558','2','1967','4.99','2005-06-17 09:19:52.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14936','558','1','2411','1.99','2005-06-18 16:55:54.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14937','558','2','2544','4.99','2005-06-19 02:16:17.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14938','558','2','3016','4.99','2005-06-20 10:55:08.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14939','558','2','3451','10.99','2005-06-21 21:10:39.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14940','558','1','3731','9.99','2005-07-06 11:33:36.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14941','558','1','3954','0.99','2005-07-06 21:57:44.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14942','558','1','3990','3.99','2005-07-06 23:32:44.000','2006-02-15 22:21:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14943','558','1','4192','5.99','2005-07-07 10:57:06.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14944','558','1','4932','2.99','2005-07-08 22:17:40.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14945','558','2','5375','6.99','2005-07-09 18:52:55.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14946','558','1','5492','3.99','2005-07-10 00:11:09.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14947','558','2','6278','7.99','2005-07-11 16:20:02.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14948','558','2','6479','9.99','2005-07-12 01:49:00.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14949','558','2','6742','4.99','2005-07-12 14:25:31.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14950','558','1','6757','0.99','2005-07-12 15:09:48.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14951','558','1','7424','0.99','2005-07-27 17:14:19.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14952','558','1','8523','2.99','2005-07-29 10:18:27.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14953','558','1','8858','4.99','2005-07-29 23:44:35.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14954','558','1','8889','2.99','2005-07-30 00:39:43.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14955','558','2','10707','0.99','2005-08-01 18:41:34.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14956','558','1','11268','0.99','2005-08-02 14:10:39.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14957','558','2','11567','5.99','2005-08-17 01:28:43.000','2006-02-15 22:21:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14958','558','2','12040','6.99','2005-08-17 20:29:56.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14959','558','1','12194','1.99','2005-08-18 02:04:47.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14960','558','2','13566','5.99','2005-08-20 04:45:32.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14961','558','2','14235','7.99','2005-08-21 05:08:42.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14962','558','1','14286','5.99','2005-08-21 06:53:53.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14963','559','2','2576','4.99','2005-06-19 04:34:15.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14964','559','1','2706','0.99','2005-06-19 13:56:51.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14965','559','2','3046','4.99','2005-06-20 12:42:59.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14966','559','1','3370','1.99','2005-06-21 13:27:01.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14967','559','1','3674','5.99','2005-07-06 09:03:13.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14968','559','1','4120','4.99','2005-07-07 07:07:03.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14969','559','1','4370','7.99','2005-07-07 20:05:36.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14970','559','2','5396','1.99','2005-07-09 19:42:52.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14971','559','1','6201','4.99','2005-07-11 12:18:07.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14972','559','1','6915','2.99','2005-07-12 22:28:09.000','2006-02-15 22:21:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14973','559','1','7169','1.99','2005-07-27 07:51:39.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14974','559','1','7680','1.99','2005-07-28 02:59:08.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14975','559','1','8631','1.99','2005-07-29 14:08:06.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14976','559','2','9134','0.99','2005-07-30 10:00:21.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14977','559','1','9877','2.99','2005-07-31 13:41:57.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14978','559','2','10146','2.99','2005-07-31 22:17:56.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14979','559','1','10377','3.99','2005-08-01 06:28:28.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14980','559','1','10669','8.99','2005-08-01 17:03:28.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14981','559','2','10876','0.99','2005-08-02 00:31:58.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14982','559','2','11136','1.99','2005-08-02 09:22:57.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14983','559','1','13234','1.99','2005-08-19 16:17:15.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14984','559','2','13248','6.99','2005-08-19 16:47:41.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14985','559','2','13322','4.99','2005-08-19 19:43:08.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14986','559','1','13845','5.99','2005-08-20 14:31:21.000','2006-02-15 22:21:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14987','559','1','14342','4.99','2005-08-21 08:39:26.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14988','559','2','14622','4.99','2005-08-21 18:25:59.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14989','559','2','15440','4.99','2005-08-23 00:37:21.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14990','559','1','15877','4.99','2005-08-23 16:33:33.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14991','560','1','137','2.99','2005-05-25 22:25:18.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14992','560','1','1271','4.99','2005-06-15 07:32:24.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14993','560','2','1572','1.99','2005-06-16 03:23:22.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14994','560','1','3941','4.99','2005-07-06 21:20:37.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14995','560','1','4298','2.99','2005-07-07 16:27:25.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14996','560','2','4375','9.99','2005-07-07 20:20:29.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14997','560','1','4453','0.99','2005-07-07 23:32:39.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14998','560','2','5208','2.99','2005-07-09 11:16:56.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('14999','560','1','6410','4.99','2005-07-11 23:08:06.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15000','560','1','6945','2.99','2005-07-26 23:35:29.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15001','560','2','7202','4.99','2005-07-27 09:00:20.000','2006-02-15 22:22:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15002','560','1','7891','3.99','2005-07-28 10:43:56.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15003','560','1','8753','2.99','2005-07-29 19:15:50.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15004','560','2','8861','5.99','2005-07-29 23:47:29.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15005','560','2','8906','4.99','2005-07-30 01:21:39.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15006','560','1','9265','0.99','2005-07-30 14:55:25.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15007','560','2','9895','5.99','2005-07-31 14:07:56.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15008','560','2','10480','4.99','2005-08-01 10:13:41.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15009','560','1','10702','4.99','2005-08-01 18:34:59.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15010','560','1','10733','7.99','2005-08-01 19:28:01.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15011','560','1','11334','7.99','2005-08-02 16:53:20.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15012','560','1','11788','4.99','2005-08-17 10:59:18.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15013','560','2','14008','5.99','2005-08-20 20:26:00.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15014','560','1','14341','1.99','2005-08-21 08:38:24.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15015','560','2','14363','4.99','2005-08-21 09:20:03.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15016','560','1','14436','2.99','2005-08-21 11:48:27.000','2006-02-15 22:22:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15017','560','2','14785','2.99','2005-08-22 00:24:37.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15018','560','1','15352','6.99','2005-08-22 21:16:54.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15019','560','2','12116','5.98','2006-02-14 15:16:03.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15020','560','2','14425','0','2006-02-14 15:16:03.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15021','561','1','902','4.99','2005-05-30 09:53:36.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15022','561','2','971','4.99','2005-05-30 20:10:52.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15023','561','2','1193','2.99','2005-06-15 01:24:20.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15024','561','2','1505','2.99','2005-06-15 22:12:50.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15025','561','2','1620','4.99','2005-06-16 07:21:30.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15026','561','1','2119','4.99','2005-06-17 20:34:42.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15027','561','1','2357','5.99','2005-06-18 12:59:41.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15028','561','1','2548','0.99','2005-06-19 02:45:35.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15029','561','1','2950','4.99','2005-06-20 06:08:36.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15030','561','1','3160','4.99','2005-06-20 21:20:51.000','2006-02-15 22:22:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15031','561','1','3427','0.99','2005-06-21 18:31:09.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15032','561','2','6361','2.99','2005-07-11 21:09:14.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15033','561','1','6435','0.99','2005-07-12 00:16:19.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15034','561','1','6621','0.99','2005-07-12 08:57:30.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15035','561','1','6843','4.99','2005-07-12 19:14:05.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15036','561','1','7698','0.99','2005-07-28 03:44:14.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15037','561','1','8504','10.99','2005-07-29 09:20:16.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15038','561','2','9839','7.99','2005-07-31 12:21:16.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15039','561','2','10317','2.99','2005-08-01 04:35:34.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15040','561','1','10907','4.99','2005-08-02 01:51:48.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15041','561','1','11371','2.99','2005-08-02 18:07:36.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15042','561','2','11402','2.99','2005-08-02 19:07:21.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15043','561','2','12441','2.99','2005-08-18 10:47:57.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15044','561','2','14139','0.99','2005-08-21 02:04:33.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15045','561','1','15573','0.99','2005-08-23 05:28:36.000','2006-02-15 22:22:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15046','561','1','15946','2.99','2005-08-23 18:54:07.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15047','561','1','14415','0.99','2006-02-14 15:16:03.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15048','562','2','788','2.99','2005-05-29 16:13:55.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15049','562','1','941','2.99','2005-05-30 15:02:25.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15050','562','1','1139','5.99','2005-05-31 19:34:52.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15051','562','1','1998','3.99','2005-06-17 11:24:57.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15052','562','1','2705','4.99','2005-06-19 13:54:30.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15053','562','1','2746','3.99','2005-06-19 16:21:40.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15054','562','2','3242','4.99','2005-06-21 02:56:24.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15055','562','2','4732','5.99','2005-07-08 13:09:45.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15056','562','1','4802','4.99','2005-07-08 16:55:17.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15057','562','2','5360','0.99','2005-07-09 18:14:03.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15058','562','2','6065','6.99','2005-07-11 04:25:51.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15059','562','1','6607','8.99','2005-07-12 08:08:50.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15060','562','2','7166','3.99','2005-07-27 07:36:56.000','2006-02-15 22:22:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15061','562','1','7430','2.99','2005-07-27 17:26:14.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15062','562','2','7560','2.99','2005-07-27 22:20:17.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15063','562','2','8132','0.99','2005-07-28 19:57:31.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15064','562','2','10868','6.99','2005-08-02 00:25:15.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15065','562','2','12008','4.99','2005-08-17 19:16:18.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15066','562','1','12248','5.99','2005-08-18 03:53:18.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15067','562','2','13225','2.99','2005-08-19 15:54:33.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15068','562','2','13347','10.99','2005-08-19 20:28:48.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15069','562','2','13639','0.99','2005-08-20 07:22:07.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15070','562','1','15212','2.99','2005-08-22 16:44:26.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15071','562','2','15475','2.99','2005-08-23 01:44:43.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15072','562','1','15900','1.99','2005-08-23 17:16:30.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15073','563','1','758','4.99','2005-05-29 10:31:56.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15074','563','2','773','5.99','2005-05-29 13:18:05.000','2006-02-15 22:22:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15075','563','2','1545','4.99','2005-06-16 01:31:23.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15076','563','2','2573','0.99','2005-06-19 04:23:18.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15077','563','1','4106','1.99','2005-07-07 06:33:35.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15078','563','2','4436','0.99','2005-07-07 22:52:04.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15079','563','1','4565','3.99','2005-07-08 05:12:28.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15080','563','2','4629','6.99','2005-07-08 08:31:26.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15081','563','2','4711','2.99','2005-07-08 12:06:58.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15082','563','2','4776','5.99','2005-07-08 15:44:20.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15083','563','2','4808','3.99','2005-07-08 17:02:49.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15084','563','2','4825','4.99','2005-07-08 17:43:01.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15085','563','1','4883','0.99','2005-07-08 19:46:58.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15086','563','1','5406','0.99','2005-07-09 20:13:23.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15087','563','2','6326','2.99','2005-07-11 19:06:55.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15088','563','2','7612','0.99','2005-07-28 00:11:55.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15089','563','1','8262','1.99','2005-07-29 01:11:18.000','2006-02-15 22:22:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15090','563','1','8610','5.99','2005-07-29 13:25:02.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15091','563','2','8632','6.99','2005-07-29 14:11:25.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15092','563','2','8812','7.99','2005-07-29 21:47:40.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15093','563','2','11829','0.99','2005-08-17 12:52:04.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15094','563','1','12039','1.99','2005-08-17 20:29:08.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15095','563','1','12202','1.99','2005-08-18 02:14:08.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15096','563','1','12832','2.99','2005-08-19 01:41:44.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15097','563','2','13863','9.99','2005-08-20 14:57:50.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15098','563','2','14592','4.99','2005-08-21 17:30:17.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15099','563','2','15507','0.99','2005-08-23 02:48:26.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15100','563','2','15638','3.99','2005-08-23 07:54:54.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15101','563','1','15850','4.99','2005-08-23 15:45:42.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15102','564','2','195','5.99','2005-05-26 06:52:36.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15103','564','1','985','2.99','2005-05-30 22:18:35.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15104','564','2','1705','2.99','2005-06-16 13:59:42.000','2006-02-15 22:22:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15105','564','1','4196','2.99','2005-07-07 11:06:33.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15106','564','2','4385','0.99','2005-07-07 20:48:38.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15107','564','1','6973','2.99','2005-07-27 00:32:04.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15108','564','2','7470','10.99','2005-07-27 19:01:03.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15109','564','2','8426','4.99','2005-07-29 07:07:48.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15110','564','1','8874','0.99','2005-07-30 00:14:45.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15111','564','2','9063','3.99','2005-07-30 07:24:34.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15112','564','2','9929','2.99','2005-07-31 15:17:24.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15113','564','1','10129','6.99','2005-07-31 21:41:35.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15114','564','2','10352','1.99','2005-08-01 05:44:36.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15115','564','2','10401','4.99','2005-08-01 07:27:09.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15116','564','1','10528','2.99','2005-08-01 11:56:22.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15117','564','2','11768','2.99','2005-08-17 10:02:29.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15118','564','2','12197','6.99','2005-08-18 02:08:58.000','2006-02-15 22:22:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15119','564','2','12617','2.99','2005-08-18 17:22:48.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15120','564','2','13324','0.99','2005-08-19 19:51:00.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15121','564','2','13558','0.99','2005-08-20 04:13:17.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15122','564','1','13701','0.99','2005-08-20 09:27:05.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15123','564','2','14439','5.99','2005-08-21 11:52:41.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15124','564','1','14593','0.99','2005-08-21 17:33:18.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15125','564','2','15059','8.99','2005-08-22 10:22:00.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15126','565','1','458','6.99','2005-05-27 19:58:36.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15127','565','1','1004','0.99','2005-05-31 00:48:36.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15128','565','2','1460','4.99','2005-06-15 20:27:02.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15129','565','1','2321','5.99','2005-06-18 09:42:42.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15130','565','1','3300','5.99','2005-06-21 07:25:01.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15131','565','2','3470','0.99','2005-07-05 22:49:24.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15132','565','1','3838','2.99','2005-07-06 16:29:43.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15133','565','1','4413','2.99','2005-07-07 22:00:04.000','2006-02-15 22:22:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15134','565','2','5020','0.99','2005-07-09 02:07:56.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15135','565','1','5124','4.99','2005-07-09 07:25:19.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15136','565','1','6264','2.99','2005-07-11 15:42:35.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15137','565','1','6627','2.99','2005-07-12 09:16:46.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15138','565','1','6699','0.99','2005-07-12 12:45:21.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15139','565','2','7242','5.99','2005-07-27 10:25:51.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15140','565','1','9628','2.99','2005-07-31 04:51:11.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15141','565','1','10025','5.99','2005-07-31 18:29:09.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15142','565','2','10776','10.99','2005-08-01 20:59:58.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15143','565','2','10913','3.99','2005-08-02 02:04:03.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15144','565','2','11189','6.99','2005-08-02 11:17:23.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15145','565','1','11399','3.99','2005-08-02 18:56:28.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15146','565','2','11506','4.99','2005-08-16 23:25:48.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15147','565','1','11588','3.99','2005-08-17 02:26:23.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15148','565','1','11795','2.99','2005-08-17 11:13:38.000','2006-02-15 22:22:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15149','565','2','12743','5.99','2005-08-18 22:22:31.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15150','565','2','13195','4.99','2005-08-19 14:39:14.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15151','565','2','13217','4.99','2005-08-19 15:38:39.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15152','565','1','13362','0.99','2005-08-19 21:07:54.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15153','565','1','13925','8.99','2005-08-20 17:05:34.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15154','565','1','15885','2.99','2005-08-23 16:50:43.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15155','566','2','234','5.99','2005-05-26 11:47:20.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15156','566','2','768','4.99','2005-05-29 12:30:46.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15157','566','1','1635','5.99','2005-06-16 08:26:56.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15158','566','2','1982','4.99','2005-06-17 10:12:15.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15159','566','1','2367','0.99','2005-06-18 14:00:31.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15160','566','1','3379','4.99','2005-06-21 13:54:58.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15161','566','2','3663','4.99','2005-07-06 08:15:47.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15162','566','1','3943','0.99','2005-07-06 21:22:17.000','2006-02-15 22:22:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15163','566','1','3998','3.99','2005-07-06 23:49:20.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15164','566','1','5079','9.99','2005-07-09 05:20:40.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15165','566','2','6365','2.99','2005-07-11 21:17:40.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15166','566','1','7677','2.99','2005-07-28 02:56:37.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15167','566','2','7941','0.99','2005-07-28 12:47:20.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15168','566','2','8118','2.99','2005-07-28 19:22:22.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15169','566','1','8157','6.99','2005-07-28 21:06:45.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15170','566','1','8257','2.99','2005-07-29 01:03:20.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15171','566','2','8305','1.99','2005-07-29 03:08:47.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15172','566','2','8660','6.99','2005-07-29 15:26:59.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15173','566','1','8710','0.99','2005-07-29 17:26:03.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15174','566','1','8797','4.99','2005-07-29 21:10:37.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15175','566','2','9101','4.99','2005-07-30 08:47:13.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15176','566','2','9470','4.99','2005-07-30 23:01:31.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15177','566','1','9688','3.99','2005-07-31 06:56:08.000','2006-02-15 22:22:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15178','566','2','9915','2.99','2005-07-31 14:52:26.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15179','566','2','10259','2.99','2005-08-01 02:52:05.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15180','566','2','10289','6.99','2005-08-01 03:39:48.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15181','566','2','11129','2.99','2005-08-02 09:08:44.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15182','566','1','11717','0.99','2005-08-17 07:44:09.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15183','566','1','11941','1.99','2005-08-17 16:56:57.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15184','566','2','12382','8.99','2005-08-18 08:32:33.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15185','566','2','12995','4.99','2005-08-19 07:26:30.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15186','566','2','13762','4.99','2005-08-20 11:29:32.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15187','566','1','14277','3.99','2005-08-21 06:34:41.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15188','566','1','14297','2.99','2005-08-21 07:13:46.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15189','567','2','2689','4.99','2005-06-19 12:58:53.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15190','567','1','3010','2.99','2005-06-20 10:29:59.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15191','567','1','3769','5.99','2005-07-06 13:11:33.000','2006-02-15 22:22:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15192','567','2','4457','0.99','2005-07-07 23:45:38.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15193','567','2','4576','0.99','2005-07-08 05:51:19.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15194','567','1','4949','4.99','2005-07-08 22:57:10.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15195','567','2','6358','2.99','2005-07-11 21:03:12.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15196','567','2','6551','0.99','2005-07-12 05:03:43.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15197','567','2','7340','2.99','2005-07-27 14:18:10.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15198','567','1','8201','2.99','2005-07-28 23:10:48.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15199','567','1','8629','2.99','2005-07-29 14:06:35.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15200','567','1','9279','7.99','2005-07-30 15:15:21.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15201','567','1','9475','6.99','2005-07-30 23:06:33.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15202','567','2','10708','7.99','2005-08-01 18:43:28.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15203','567','2','11749','2.99','2005-08-17 09:04:03.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15204','567','1','12119','2.99','2005-08-17 23:16:44.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15205','567','2','13031','2.99','2005-08-19 08:30:04.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15206','567','2','14839','2.99','2005-08-22 01:58:15.000','2006-02-15 22:22:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15207','567','2','15074','5.99','2005-08-22 11:02:52.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15208','567','2','15594','10.99','2005-08-23 06:18:43.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15209','568','2','1658','4.99','2005-06-16 10:07:10.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15210','568','2','2382','4.99','2005-06-18 15:03:52.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15211','568','2','2668','0.99','2005-06-19 11:28:47.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15212','568','1','3227','4.99','2005-06-21 02:18:25.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15213','568','2','3462','1.99','2005-06-21 21:52:52.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15214','568','1','4322','2.99','2005-07-07 17:54:37.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15215','568','2','5332','2.99','2005-07-09 16:59:23.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15216','568','1','5622','0.99','2005-07-10 05:39:37.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15217','568','1','5776','4.99','2005-07-10 13:35:22.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15218','568','2','7068','2.99','2005-07-27 03:57:50.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15219','568','2','8185','0.99','2005-07-28 22:23:49.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15220','568','2','9583','6.99','2005-07-31 03:05:21.000','2006-02-15 22:22:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15221','568','1','9738','0.99','2005-07-31 09:04:14.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15222','568','1','10340','2.99','2005-08-01 05:07:03.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15223','568','2','10689','0.99','2005-08-01 18:04:18.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15224','568','2','10869','0.99','2005-08-02 00:26:54.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15225','568','1','11331','2.99','2005-08-02 16:49:01.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15226','568','1','13883','4.99','2005-08-20 15:28:53.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15227','568','2','15069','5.99','2005-08-22 10:55:42.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15228','568','1','15203','2.99','2005-08-22 16:28:00.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15229','568','2','14531','2.99','2006-02-14 15:16:03.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15230','569','2','53','4.99','2005-05-25 07:19:16.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15231','569','1','487','4.99','2005-05-28 00:00:30.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15232','569','1','624','4.99','2005-05-28 16:13:22.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15233','569','1','647','1.99','2005-05-28 19:22:52.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15234','569','2','1037','3.99','2005-05-31 05:22:25.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15235','569','1','1463','6.99','2005-06-15 20:37:51.000','2006-02-15 22:22:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15236','569','2','1668','5.99','2005-06-16 10:19:52.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15237','569','1','4204','5.99','2005-07-07 11:24:18.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15238','569','2','5003','0.99','2005-07-09 01:19:03.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15239','569','2','6046','5.99','2005-07-11 03:21:49.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15240','569','1','8910','2.99','2005-07-30 01:29:48.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15241','569','2','9220','1.99','2005-07-30 13:17:27.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15242','569','1','9399','4.99','2005-07-30 20:14:50.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15243','569','2','9960','1.99','2005-07-31 16:05:52.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15244','569','2','10192','2.99','2005-08-01 00:33:00.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15245','569','2','10884','0.99','2005-08-02 00:47:33.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15246','569','1','11030','1.99','2005-08-02 05:51:20.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15247','569','2','11255','4.99','2005-08-02 13:44:30.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15248','569','1','11354','6.99','2005-08-02 17:35:10.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15249','569','1','11946','4.99','2005-08-17 17:05:53.000','2006-02-15 22:22:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15250','569','1','12157','2.99','2005-08-18 00:33:45.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15251','569','2','12308','0.99','2005-08-18 05:48:53.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15252','569','1','12568','3.99','2005-08-18 15:15:44.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15253','569','2','12958','2.99','2005-08-19 06:19:21.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15254','569','1','13287','7.99','2005-08-19 18:28:24.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15255','569','2','13554','9.99','2005-08-20 04:08:39.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15256','569','2','14207','4.99','2005-08-21 04:08:19.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15257','569','2','14400','0.99','2005-08-21 10:33:45.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15258','569','1','14896','8.99','2005-08-22 04:20:55.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15259','569','1','14959','2.99','2005-08-22 06:30:28.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15260','569','2','15617','0.99','2005-08-23 07:07:22.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15261','569','2','16025','4.99','2005-08-23 21:48:54.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15262','570','2','1060','7.99','2005-05-31 08:21:43.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15263','570','1','1259','4.99','2005-06-15 06:37:55.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15264','570','2','1417','4.99','2005-06-15 17:45:51.000','2006-02-15 22:22:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15265','570','2','1804','2.99','2005-06-16 20:33:15.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15266','570','2','2008','5.99','2005-06-17 11:48:05.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15267','570','2','2031','6.99','2005-06-17 13:14:03.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15268','570','2','2261','3.99','2005-06-18 05:46:15.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15269','570','2','3138','2.99','2005-06-20 19:43:45.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15270','570','2','3984','0.99','2005-07-06 23:22:36.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15271','570','1','4069','0.99','2005-07-07 04:35:06.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15272','570','1','4698','0.99','2005-07-08 11:19:31.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15273','570','2','5638','4.99','2005-07-10 06:32:49.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15274','570','1','6253','4.99','2005-07-11 15:07:19.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15275','570','1','6556','0.99','2005-07-12 05:10:16.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15276','570','2','7174','4.99','2005-07-27 08:00:36.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15277','570','2','8735','4.99','2005-07-29 18:28:54.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15278','570','1','9385','7.99','2005-07-30 19:25:49.000','2006-02-15 22:22:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15279','570','1','9398','0.99','2005-07-30 20:09:00.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15280','570','2','9432','2.99','2005-07-30 21:26:18.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15281','570','1','9766','4.99','2005-07-31 09:46:29.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15282','570','1','10004','0.99','2005-07-31 17:51:23.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15283','570','2','10168','2.99','2005-07-31 23:25:24.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15284','570','1','11098','3.99','2005-08-02 08:06:18.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15285','570','2','12042','4.99','2005-08-17 20:36:37.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15286','570','2','14768','3.99','2005-08-21 23:44:53.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15287','570','1','12716','0.99','2006-02-14 15:16:03.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15288','571','1','228','9.99','2005-05-26 10:54:28.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15289','571','2','689','3.99','2005-05-29 00:46:53.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15290','571','1','1254','4.99','2005-06-15 06:11:16.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15291','571','2','1400','3.99','2005-06-15 16:29:56.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15292','571','1','1756','4.99','2005-06-16 17:22:33.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15293','571','2','1990','4.99','2005-06-17 10:48:44.000','2006-02-15 22:22:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15294','571','1','2327','2.99','2005-06-18 10:16:40.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15295','571','1','2977','10.99','2005-06-20 08:15:27.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15296','571','2','3616','2.99','2005-07-06 05:52:13.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15297','571','1','4162','4.99','2005-07-07 09:17:26.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15298','571','2','5789','4.99','2005-07-10 14:11:26.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15299','571','2','6676','8.99','2005-07-12 11:53:40.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15300','571','1','6792','8.99','2005-07-12 16:37:28.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15301','571','1','8084','5.99','2005-07-28 18:11:58.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15302','571','1','8638','4.99','2005-07-29 14:30:23.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15303','571','2','9300','1.99','2005-07-30 16:33:12.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15304','571','1','9408','4.99','2005-07-30 20:32:09.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15305','571','1','10227','2.99','2005-08-01 01:42:22.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15306','571','2','11080','2.99','2005-08-02 07:29:56.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15307','571','2','11191','7.99','2005-08-02 11:24:07.000','2006-02-15 22:22:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15308','571','1','13228','2.99','2005-08-19 16:08:16.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15309','571','2','13266','2.99','2005-08-19 17:31:20.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15310','571','1','14956','0.99','2005-08-22 06:26:16.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15311','571','1','15841','4.99','2005-08-23 15:35:59.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15312','572','2','559','7.99','2005-05-28 08:39:02.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15313','572','2','1889','10.99','2005-06-17 04:05:12.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15314','572','1','2007','0.99','2005-06-17 11:47:17.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15315','572','1','2458','0.99','2005-06-18 19:39:05.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15316','572','1','4601','2.99','2005-07-08 06:49:10.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15317','572','1','5595','4.99','2005-07-10 04:33:45.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15318','572','1','5713','6.99','2005-07-10 10:46:15.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15319','572','2','6108','2.99','2005-07-11 07:19:24.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15320','572','1','7161','4.99','2005-07-27 07:26:32.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15321','572','1','7345','4.99','2005-07-27 14:29:53.000','2006-02-15 22:22:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15322','572','2','7713','6.99','2005-07-28 04:32:14.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15323','572','2','8342','0.99','2005-07-29 04:45:05.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15324','572','1','8432','0.99','2005-07-29 07:13:33.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15325','572','1','9081','3.99','2005-07-30 08:09:58.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15326','572','2','9950','5.99','2005-07-31 15:50:22.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15327','572','2','10204','4.99','2005-08-01 00:47:39.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15328','572','1','11114','0.99','2005-08-02 08:26:45.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15329','572','1','11121','4.99','2005-08-02 08:48:31.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15330','572','2','11415','2.99','2005-08-02 19:43:38.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15331','572','1','11426','4.99','2005-08-02 20:00:09.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15332','572','1','11526','4.99','2005-08-17 00:17:38.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15333','572','1','12256','1.99','2005-08-18 04:09:39.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15334','572','2','13377','1.99','2005-08-19 21:32:23.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15335','572','2','13523','6.99','2005-08-20 02:47:03.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15336','572','1','13688','5.99','2005-08-20 08:59:38.000','2006-02-15 22:22:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15337','573','2','827','2.99','2005-05-29 21:58:43.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15338','573','1','1613','4.99','2005-06-16 06:55:10.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15339','573','2','2622','5.99','2005-06-19 08:10:41.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15340','573','1','2995','1.99','2005-06-20 09:18:22.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15341','573','1','3295','7.99','2005-06-21 07:04:17.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15342','573','2','3768','0.99','2005-07-06 13:07:30.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15343','573','1','3930','2.99','2005-07-06 20:54:07.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15344','573','2','4023','4.99','2005-07-07 01:55:25.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15345','573','1','4085','0.99','2005-07-07 05:25:39.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15346','573','1','4609','0.99','2005-07-08 07:22:29.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15347','573','1','4770','2.99','2005-07-08 15:29:46.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15348','573','1','5036','5.99','2005-07-09 02:58:41.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15349','573','2','5522','9.99','2005-07-10 01:46:29.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15350','573','2','5903','2.99','2005-07-10 20:39:04.000','2006-02-15 22:22:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15351','573','1','6693','7.99','2005-07-12 12:37:00.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15352','573','1','8400','4.99','2005-07-29 06:23:56.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15353','573','2','9837','10.99','2005-07-31 12:14:19.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15354','573','2','9846','4.99','2005-07-31 12:30:12.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15355','573','2','9963','2.99','2005-07-31 16:16:46.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15356','573','2','9971','5.99','2005-07-31 16:42:16.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15357','573','1','10296','0.99','2005-08-01 04:04:37.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15358','573','1','10887','2.99','2005-08-02 00:52:35.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15359','573','1','11043','0.99','2005-08-02 06:04:44.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15360','573','2','11912','5.99','2005-08-17 15:51:49.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15361','573','1','12017','1.99','2005-08-17 19:33:49.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15362','573','1','12125','1.99','2005-08-17 23:24:25.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15363','573','1','12269','6.99','2005-08-18 04:27:54.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15364','573','1','12791','0.99','2005-08-19 00:17:09.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15365','573','2','13113','2.99','2005-08-19 11:27:20.000','2006-02-15 22:22:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15366','574','2','433','0.99','2005-05-27 16:40:40.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15367','574','1','1559','0.99','2005-06-16 02:35:03.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15368','574','2','1636','5.99','2005-06-16 08:28:54.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15369','574','1','1817','0.99','2005-06-16 21:20:52.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15370','574','1','2632','0.99','2005-06-19 08:51:47.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15371','574','1','3220','6.99','2005-06-21 01:46:25.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15372','574','1','3583','7.99','2005-07-06 04:10:43.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15373','574','1','4004','4.99','2005-07-07 00:20:51.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15374','574','1','4212','4.99','2005-07-07 11:53:14.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15375','574','2','4890','2.99','2005-07-08 20:05:38.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15376','574','2','5010','4.99','2005-07-09 01:33:23.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15377','574','1','5076','3.99','2005-07-09 05:13:22.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15378','574','1','5077','3.99','2005-07-09 05:18:01.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15379','574','1','5640','2.99','2005-07-10 06:38:00.000','2006-02-15 22:22:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15380','574','1','6523','2.99','2005-07-12 04:14:19.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15381','574','1','7093','1.99','2005-07-27 04:47:00.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15382','574','1','7134','2.99','2005-07-27 06:33:06.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15383','574','1','7964','2.99','2005-07-28 13:49:58.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15384','574','1','8303','4.99','2005-07-29 03:05:56.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15385','574','1','9589','7.99','2005-07-31 03:13:29.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15386','574','1','9759','3.99','2005-07-31 09:25:57.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15387','574','1','10347','4.99','2005-08-01 05:20:03.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15388','574','2','11775','3.99','2005-08-17 10:25:53.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15389','574','1','12462','2.99','2005-08-18 11:28:55.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15390','574','1','13589','4.99','2005-08-20 05:47:25.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15391','574','1','14076','4.99','2005-08-20 23:20:10.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15392','574','2','14941','2.99','2005-08-22 05:58:23.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15393','574','2','15214','2.99','2005-08-22 16:53:29.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15394','575','1','17','2.99','2005-05-25 01:06:36.000','2006-02-15 22:22:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15395','575','1','395','0.99','2005-05-27 11:45:49.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15396','575','2','454','4.99','2005-05-27 19:31:36.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15397','575','2','769','2.99','2005-05-29 12:51:44.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15398','575','1','774','4.99','2005-05-29 13:19:43.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15399','575','2','1494','2.99','2005-06-15 21:54:20.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15400','575','1','1824','2.99','2005-06-16 21:51:04.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15401','575','2','1866','4.99','2005-06-17 01:53:19.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15402','575','1','3558','6.99','2005-07-06 02:49:06.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15403','575','2','5875','8.99','2005-07-10 19:06:47.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15404','575','2','6907','2.99','2005-07-12 22:03:49.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15405','575','1','7083','0.99','2005-07-27 04:28:39.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15406','575','1','7139','2.99','2005-07-27 06:52:21.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15407','575','2','8711','2.99','2005-07-29 17:27:15.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15408','575','2','8904','0.99','2005-07-30 01:08:33.000','2006-02-15 22:22:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15409','575','2','8989','4.99','2005-07-30 04:39:19.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15410','575','1','9733','4.99','2005-07-31 08:57:35.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15411','575','1','10331','4.99','2005-08-01 04:57:14.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15412','575','2','10629','7.99','2005-08-01 15:33:32.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15413','575','1','11097','3.99','2005-08-02 08:05:46.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15414','575','1','11458','4.99','2005-08-02 21:24:02.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15415','575','1','12204','7.99','2005-08-18 02:20:35.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15416','575','2','12289','8.99','2005-08-18 05:05:28.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15417','575','2','12770','5.99','2005-08-18 23:29:00.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15418','575','2','13408','4.99','2005-08-19 22:34:51.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15419','575','2','13465','2.99','2005-08-20 00:54:14.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15420','575','2','14952','2.99','2005-08-22 06:20:07.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15421','575','2','15749','4.99','2005-08-23 12:33:41.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15422','575','2','15857','0.99','2005-08-23 15:59:51.000','2006-02-15 22:22:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15423','576','2','755','2.99','2005-05-29 10:26:29.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15424','576','1','968','0.99','2005-05-30 19:20:03.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15425','576','1','1366','4.99','2005-06-15 14:21:00.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15426','576','2','1742','2.99','2005-06-16 16:37:48.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15427','576','1','2309','0.99','2005-06-18 08:43:24.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15428','576','2','2444','8.99','2005-06-18 18:58:12.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15429','576','1','2651','3.99','2005-06-19 10:22:56.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15430','576','2','2799','4.99','2005-06-19 19:15:21.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15431','576','2','3226','6.99','2005-06-21 02:18:14.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15432','576','1','3877','4.99','2005-07-06 18:22:10.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15433','576','2','3889','0.99','2005-07-06 18:56:25.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15434','576','2','3934','4.99','2005-07-06 21:07:23.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15435','576','1','4514','4.99','2005-07-08 02:41:25.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15436','576','2','5597','3.99','2005-07-10 04:47:57.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15437','576','1','5934','4.99','2005-07-10 22:07:59.000','2006-02-15 22:22:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15438','576','2','7319','1.99','2005-07-27 13:31:25.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15439','576','1','7605','3.99','2005-07-27 23:57:01.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15440','576','1','8907','4.99','2005-07-30 01:25:03.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15441','576','1','9133','5.99','2005-07-30 09:59:00.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15442','576','2','9548','5.99','2005-07-31 01:54:19.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15443','576','2','9620','8.99','2005-07-31 04:19:18.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15444','576','2','9962','0.99','2005-07-31 16:10:36.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15445','576','1','9979','2.99','2005-07-31 17:00:07.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15446','576','1','10000','2.99','2005-07-31 17:41:05.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15447','576','2','10724','3.99','2005-08-01 19:10:59.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15448','576','2','12112','5.99','2005-08-17 23:00:31.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15449','576','1','12245','4.99','2005-08-18 03:46:40.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15450','576','1','13061','4.99','2005-08-19 09:43:39.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15451','576','1','13326','4.99','2005-08-19 19:52:52.000','2006-02-15 22:22:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15452','576','1','14501','4.99','2005-08-21 14:14:38.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15453','576','1','14541','0.99','2005-08-21 15:34:32.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15454','576','1','15634','0.99','2005-08-23 07:34:18.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15455','576','2','11942','5.98','2006-02-14 15:16:03.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15456','576','1','13464','0','2006-02-14 15:16:03.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15457','577','2','291','5.99','2005-05-26 20:20:47.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15458','577','2',NULL,'0.99','2005-05-27 00:46:39.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15459','577','2','2399','3.99','2005-06-18 16:06:14.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15460','577','2','3286','2.99','2005-06-21 06:31:29.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15461','577','2','3401','6.99','2005-06-21 15:52:43.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15462','577','2','3599','0.99','2005-07-06 05:16:36.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15463','577','1','3785','7.99','2005-07-06 14:00:13.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15464','577','1','4922','2.99','2005-07-08 21:44:00.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15465','577','1','6500','2.99','2005-07-12 03:11:23.000','2006-02-15 22:22:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15466','577','2','6534','2.99','2005-07-12 04:39:43.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15467','577','2','7197','0.99','2005-07-27 08:49:32.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15468','577','1','7371','4.99','2005-07-27 15:18:42.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15469','577','2','7876','8.99','2005-07-28 10:24:22.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15470','577','1','8043','5.99','2005-07-28 16:45:44.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15471','577','1','8060','6.99','2005-07-28 17:10:02.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15472','577','2','8671','6.99','2005-07-29 15:49:37.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15473','577','2','10323','4.99','2005-08-01 04:44:58.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15474','577','1','10487','0.99','2005-08-01 10:26:34.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15475','577','1','10782','4.99','2005-08-01 21:23:25.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15476','577','1','11054','7.99','2005-08-02 06:33:07.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15477','577','2','11464','0.99','2005-08-02 21:42:07.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15478','577','1','12664','4.99','2005-08-18 19:10:54.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15479','577','2','12671','0.99','2005-08-18 19:19:59.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15480','577','2','13200','3.99','2005-08-19 14:55:58.000','2006-02-15 22:22:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15481','577','2','13500','3.99','2005-08-20 01:54:39.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15482','577','2','15480','2.99','2005-08-23 01:57:20.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15483','577','2','15873','2.99','2005-08-23 16:27:59.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15484','577','2','16003','4.99','2005-08-23 20:47:28.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15485','578','2','660','0.99','2005-05-28 20:53:31.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15486','578','2','1826','6.99','2005-06-16 21:53:52.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15487','578','2','2615','4.99','2005-06-19 07:29:13.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15488','578','1','3305','2.99','2005-06-21 07:46:57.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15489','578','2','4496','4.99','2005-07-08 01:44:19.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15490','578','1','5377','4.99','2005-07-09 19:04:30.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15491','578','1','5445','0.99','2005-07-09 21:59:41.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15492','578','2','5876','4.99','2005-07-10 19:07:15.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15493','578','1','6784','4.99','2005-07-12 16:28:49.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15494','578','1','6830','0.99','2005-07-12 18:42:55.000','2006-02-15 22:22:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15495','578','2','7059','5.99','2005-07-27 03:51:02.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15496','578','1','8179','2.99','2005-07-28 22:05:13.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15497','578','1','8218','2.99','2005-07-28 23:45:41.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15498','578','2','9970','4.99','2005-07-31 16:38:24.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15499','578','1','10029','6.99','2005-07-31 18:37:47.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15500','578','2','10182','2.99','2005-08-01 00:08:01.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15501','578','1','10779','7.99','2005-08-01 21:11:54.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15502','578','1','11199','7.99','2005-08-02 11:47:40.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15503','578','2','13071','5.99','2005-08-19 10:01:07.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15504','578','2','13498','5.99','2005-08-20 01:51:23.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15505','578','2','13552','2.99','2005-08-20 04:03:51.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15506','578','1','15652','0.99','2005-08-23 08:34:10.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15507','579','2','2425','5.99','2005-06-18 17:37:45.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15508','579','1','2522','3.99','2005-06-19 00:43:42.000','2006-02-15 22:22:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15509','579','1','3111','2.99','2005-06-20 17:46:47.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15510','579','1','4619','9.99','2005-07-08 08:01:09.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15511','579','1','4933','2.99','2005-07-08 22:18:29.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15512','579','1','6304','4.99','2005-07-11 18:02:16.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15513','579','2','6814','1.99','2005-07-12 18:11:58.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15514','579','2','6824','6.99','2005-07-12 18:26:46.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15515','579','2','6969','8.99','2005-07-27 00:23:54.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15516','579','2','7221','2.99','2005-07-27 09:37:35.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15517','579','1','8354','0.99','2005-07-29 04:56:26.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15518','579','1','8876','0.99','2005-07-30 00:15:09.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15519','579','1','8996','0.99','2005-07-30 04:53:23.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15520','579','2','9349','9.99','2005-07-30 18:20:08.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15521','579','2','9553','5.99','2005-07-31 02:06:34.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15522','579','2','9976','2.99','2005-07-31 16:57:49.000','2006-02-15 22:22:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15523','579','2','9997','4.99','2005-07-31 17:37:30.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15524','579','1','11494','3.99','2005-08-02 22:51:23.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15525','579','2','12051','6.99','2005-08-17 20:56:15.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15526','579','2','12315','5.99','2005-08-18 06:15:06.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15527','579','2','14047','2.99','2005-08-20 22:00:43.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15528','579','1','14185','0.99','2005-08-21 03:28:37.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15529','579','1','14543','1.99','2005-08-21 15:39:01.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15530','579','2','14560','2.99','2005-08-21 16:13:47.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15531','579','2','15601','0.99','2005-08-23 06:33:26.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15532','579','1','15838','4.99','2005-08-23 15:30:48.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15533','579','2','15794','0.99','2006-02-14 15:16:03.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15534','580','1','611','0.99','2005-05-28 15:18:18.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15535','580','1','1469','0.99','2005-06-15 20:52:36.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15536','580','2','3571','1.99','2005-07-06 03:32:31.000','2006-02-15 22:22:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15537','580','2','3867','1.99','2005-07-06 17:52:19.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15538','580','2','4169','1.99','2005-07-07 09:39:18.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15539','580','2','4590','3.99','2005-07-08 06:27:48.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15540','580','1','5937','6.99','2005-07-10 22:16:08.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15541','580','1','6089','2.99','2005-07-11 05:45:59.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15542','580','2','6170','2.99','2005-07-11 10:29:21.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15543','580','1','7620','0.99','2005-07-28 00:27:17.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15544','580','2','8784','4.99','2005-07-29 20:35:37.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15545','580','1','8839','3.99','2005-07-29 22:52:34.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15546','580','1','9199','0.99','2005-07-30 12:38:00.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15547','580','1','9239','3.99','2005-07-30 13:50:52.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15548','580','1','9460','5.99','2005-07-30 22:25:39.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15549','580','2','9604','4.99','2005-07-31 03:47:12.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15550','580','2','9865','0.99','2005-07-31 13:10:45.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15551','580','1','10723','3.99','2005-08-01 19:10:49.000','2006-02-15 22:22:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15552','580','2','10965','3.99','2005-08-02 04:00:19.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15553','580','1','11164','8.99','2005-08-02 10:10:56.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15554','580','2','12670','2.99','2005-08-18 19:17:58.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15555','580','2','13313','2.99','2005-08-19 19:11:41.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15556','580','2','13742','2.99','2005-08-20 10:49:15.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15557','580','2','14818','2.99','2005-08-22 01:17:18.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15558','580','1','15157','6.99','2005-08-22 14:30:09.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15559','580','1','15630','6.99','2005-08-23 07:29:13.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15560','580','1','15947','4.99','2005-08-23 18:54:32.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15561','581','1','976','4.99','2005-05-30 21:11:19.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15562','581','1','1151','4.99','2005-05-31 21:29:00.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15563','581','2','1958','3.99','2005-06-17 08:52:01.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15564','581','2','2101','2.99','2005-06-17 18:57:02.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15565','581','1','2137','4.99','2005-06-17 21:18:28.000','2006-02-15 22:22:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15566','581','2','4210','2.99','2005-07-07 11:36:20.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15567','581','2','4244','2.99','2005-07-07 13:41:58.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15568','581','1','4338','4.99','2005-07-07 18:39:56.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15569','581','2','4613','0.99','2005-07-08 07:44:49.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15570','581','1','4669','5.99','2005-07-08 10:13:08.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15571','581','1','4815','8.99','2005-07-08 17:12:51.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15572','581','1','4833','1.99','2005-07-08 18:07:35.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15573','581','1','5516','4.99','2005-07-10 01:13:52.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15574','581','1','5707','4.99','2005-07-10 10:26:14.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15575','581','2','5812','2.99','2005-07-10 15:27:56.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15576','581','2','7048','7.99','2005-07-27 03:31:48.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15577','581','1','7783','2.99','2005-07-28 07:14:43.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15578','581','1','9278','2.99','2005-07-30 15:15:19.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15579','581','1','9449','1.99','2005-07-30 22:02:34.000','2006-02-15 22:22:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15580','581','2','11443','2.99','2005-08-02 20:29:30.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15581','581','2','11707','2.99','2005-08-17 07:24:59.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15582','581','2','13621','0.99','2005-08-20 06:43:44.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15583','581','2','13712','2.99','2005-08-20 09:38:04.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15584','581','2','14070','8.99','2005-08-20 22:56:34.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15585','581','1','14976','2.99','2005-08-22 07:10:26.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15586','581','1','15403','0.99','2005-08-22 23:18:10.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15587','581','2','15792','4.99','2005-08-23 14:05:37.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15588','582','1','281','0.99','2005-05-26 18:49:35.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15589','582','1','1719','2.99','2005-06-16 14:55:53.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15590','582','1','2337','7.99','2005-06-18 11:15:27.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15591','582','2','3071','0.99','2005-06-20 14:20:42.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15592','582','1','3767','0.99','2005-07-06 13:07:27.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15593','582','2','6629','5.99','2005-07-12 09:18:35.000','2006-02-15 22:22:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15594','582','2','7126','4.99','2005-07-27 06:13:13.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15595','582','2','7311','6.99','2005-07-27 13:02:54.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15596','582','2','7412','5.99','2005-07-27 16:44:34.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15597','582','1','7575','2.99','2005-07-27 22:53:52.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15598','582','2','8308','5.99','2005-07-29 03:22:15.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15599','582','1','8554','2.99','2005-07-29 11:16:29.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15600','582','1','8778','6.99','2005-07-29 20:14:25.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15601','582','1','9768','9.99','2005-07-31 09:48:41.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15602','582','2','11290','7.99','2005-08-02 14:57:44.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15603','582','1','11667','5.99','2005-08-17 05:46:55.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15604','582','1','11708','2.99','2005-08-17 07:26:47.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15605','582','2','13815','5.99','2005-08-20 13:08:53.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15606','582','1','14376','4.99','2005-08-21 09:48:56.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15607','582','1','14568','0.99','2005-08-21 16:30:48.000','2006-02-15 22:22:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15608','582','1','15090','5.99','2005-08-22 11:34:33.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15609','582','1','15503','2.99','2005-08-23 02:44:49.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15610','582','1','15539','0.99','2005-08-23 04:09:03.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15611','582','2','15911','4.99','2005-08-23 17:44:53.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15612','582','2','12127','2.99','2006-02-14 15:16:03.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15613','583','1','1428','3.99','2005-06-15 18:19:30.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15614','583','1','2429','9.99','2005-06-18 17:48:28.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15615','583','2','2663','4.99','2005-06-19 10:54:00.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15616','583','2','2845','5.99','2005-06-19 22:46:37.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15617','583','2','2879','3.99','2005-06-20 01:24:10.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15618','583','1','3424','0.99','2005-06-21 17:42:51.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15619','583','1','3779','2.99','2005-07-06 13:46:36.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15620','583','1','3842','4.99','2005-07-06 16:34:32.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15621','583','2','3991','9.99','2005-07-06 23:33:41.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15622','583','1','4464','4.99','2005-07-08 00:07:18.000','2006-02-15 22:22:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15623','583','1','5462','0.99','2005-07-09 22:56:53.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15624','583','1','5478','5.99','2005-07-09 23:45:15.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15625','583','2','5747','7.99','2005-07-10 12:15:33.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15626','583','2','6684','6.99','2005-07-12 12:14:42.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15627','583','1','7401','5.99','2005-07-27 16:17:55.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15628','583','2','8568','7.99','2005-07-29 11:38:22.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15629','583','1','9550','7.99','2005-07-31 01:57:34.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15630','583','2','9808','1.99','2005-07-31 11:17:22.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15631','583','2','10301','4.99','2005-08-01 04:09:37.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15632','583','2','10586','2.99','2005-08-01 14:00:59.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15633','583','2','10800','4.99','2005-08-01 22:07:44.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15634','583','2','11002','4.99','2005-08-02 05:02:56.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15635','583','1','14259','0.99','2005-08-21 06:00:22.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15636','584','2','379','4.99','2005-05-27 09:25:32.000','2006-02-15 22:22:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15637','584','1','626','4.99','2005-05-28 16:58:09.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15638','584','1','920','4.99','2005-05-30 11:44:01.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15639','584','2','1436','3.99','2005-06-15 18:35:40.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15640','584','2','3317','6.99','2005-06-21 08:22:32.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15641','584','2','3741','2.99','2005-07-06 12:00:18.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15642','584','2','3895','7.99','2005-07-06 19:04:24.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15643','584','1','4410','0.99','2005-07-07 21:48:16.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15644','584','1','4977','0.99','2005-07-09 00:15:50.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15645','584','2','6954','0.99','2005-07-26 23:55:13.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15646','584','1','7186','2.99','2005-07-27 08:26:12.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15647','584','1','7372','4.99','2005-07-27 15:18:42.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15648','584','1','7659','4.99','2005-07-28 02:09:45.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15649','584','2','8879','4.99','2005-07-30 00:16:02.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15650','584','2','9451','3.99','2005-07-30 22:10:17.000','2006-02-15 22:22:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15651','584','1','9719','5.99','2005-07-31 08:25:13.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15652','584','2','10073','2.99','2005-07-31 19:53:15.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15653','584','1','10914','4.99','2005-08-02 02:04:43.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15654','584','2','10966','0.99','2005-08-02 04:00:47.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15655','584','1','11213','4.99','2005-08-02 12:18:35.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15656','584','2','11500','6.99','2005-08-16 23:01:22.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15657','584','2','12507','8.99','2005-08-18 13:19:13.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15658','584','2','12541','2.99','2005-08-18 14:18:30.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15659','584','2','12693','5.99','2005-08-18 20:10:19.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15660','584','1','12844','2.99','2005-08-19 01:59:08.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15661','584','2','14102','5.99','2005-08-21 00:35:21.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15662','584','2','14230','5.99','2005-08-21 04:57:29.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15663','584','2','14447','4.99','2005-08-21 12:12:05.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15664','584','1','14930','1.99','2005-08-22 05:38:32.000','2006-02-15 22:22:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15665','584','1','15615','0.99','2005-08-23 07:06:00.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15666','585','1','1344','0.99','2005-06-15 12:29:41.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15667','585','2','1346','7.99','2005-06-15 12:39:52.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15668','585','1','2674','0.99','2005-06-19 11:47:59.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15669','585','1','2930','3.99','2005-06-20 04:50:29.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15670','585','2','4156','4.99','2005-07-07 09:03:51.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15671','585','2','4579','4.99','2005-07-08 06:01:56.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15672','585','1','4684','9.99','2005-07-08 10:41:06.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15673','585','2','5284','2.99','2005-07-09 15:08:21.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15674','585','2','5950','4.99','2005-07-10 23:13:45.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15675','585','2','6733','6.99','2005-07-12 14:04:01.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15676','585','1','7131','2.99','2005-07-27 06:25:06.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15677','585','1','7384','4.99','2005-07-27 15:49:45.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15678','585','2','7409','4.99','2005-07-27 16:38:24.000','2006-02-15 22:22:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15679','585','2','8353','2.99','2005-07-29 04:52:10.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15680','585','2','9407','8.99','2005-07-30 20:25:24.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15681','585','1','9590','3.99','2005-07-31 03:17:16.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15682','585','1','9860','6.99','2005-07-31 13:03:24.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15683','585','2','10573','0.99','2005-08-01 13:27:24.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15684','585','1','11285','9.99','2005-08-02 14:44:02.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15685','585','2','13593','3.99','2005-08-20 05:50:52.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15686','585','2','13939','0.99','2005-08-20 17:28:01.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15687','585','1','15804','4.99','2005-08-23 14:29:16.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15688','585','1','15896','6.99','2005-08-23 17:09:56.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15689','585','2','14604','4.99','2006-02-14 15:16:03.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15690','586','1','138','4.99','2005-05-25 22:48:22.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15691','586','1','900','8.99','2005-05-30 09:38:41.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15692','586','1','1260','2.99','2005-06-15 06:42:25.000','2006-02-15 22:22:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15693','586','2','1540','0.99','2005-06-16 01:14:56.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15694','586','2','3487','6.99','2005-07-05 23:30:36.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15695','586','2','3733','4.99','2005-07-06 11:33:55.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15696','586','2','5382','2.99','2005-07-09 19:12:57.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15697','586','1','6679','2.99','2005-07-12 12:01:07.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15698','586','2','9786','2.99','2005-07-31 10:25:21.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15699','586','2','9896','2.99','2005-07-31 14:09:48.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15700','586','1','11034','2.99','2005-08-02 05:54:53.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15701','586','1','11763','0.99','2005-08-17 09:51:39.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15702','586','1','12013','4.99','2005-08-17 19:23:02.000','2006-02-15 22:22:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15703','586','1','12898','0.99','2005-08-19 03:54:34.000','2006-02-15 22:22:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15704','586','2','14043','2.99','2005-08-20 21:46:43.000','2006-02-15 22:22:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15705','586','1','14392','1.99','2005-08-21 10:19:25.000','2006-02-15 22:22:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15706','586','2','14533','2.99','2005-08-21 15:15:19.000','2006-02-15 22:22:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15707','586','1','15666','3.99','2005-08-23 09:01:10.000','2006-02-15 22:22:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15708','586','2','15684','0.99','2005-08-23 09:40:04.000','2006-02-15 22:22:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15709','587','1','181','4.99','2005-05-26 04:47:06.000','2006-02-15 22:22:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15710','587','1','361','0.99','2005-05-27 07:03:28.000','2006-02-15 22:22:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15711','587','2','1330','2.99','2005-06-15 11:29:17.000','2006-02-15 22:22:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15712','587','2','2034','4.99','2005-06-17 13:27:16.000','2006-02-15 22:22:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15713','587','1','2220','2.99','2005-06-18 03:21:36.000','2006-02-15 22:22:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15714','587','1','2329','4.99','2005-06-18 10:22:52.000','2006-02-15 22:22:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15715','587','2','3562','2.99','2005-07-06 02:54:36.000','2006-02-15 22:22:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15716','587','2','3969','0.99','2005-07-06 22:47:59.000','2006-02-15 22:22:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15717','587','2','5243','3.99','2005-07-09 13:22:08.000','2006-02-15 22:22:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15718','587','1','6639','0.99','2005-07-12 10:00:44.000','2006-02-15 22:22:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15719','587','2','6665','6.99','2005-07-12 11:29:14.000','2006-02-15 22:22:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15720','587','1','7501','8.99','2005-07-27 20:16:59.000','2006-02-15 22:22:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15721','587','2','8776','5.99','2005-07-29 20:07:06.000','2006-02-15 22:22:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15722','587','2','9720','6.99','2005-07-31 08:25:21.000','2006-02-15 22:22:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15723','587','2','9785','4.99','2005-07-31 10:22:15.000','2006-02-15 22:22:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15724','587','2','9909','5.99','2005-07-31 14:43:34.000','2006-02-15 22:22:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15725','587','2','10224','4.99','2005-08-01 01:31:56.000','2006-02-15 22:22:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15726','587','1','10825','2.99','2005-08-01 23:05:33.000','2006-02-15 22:22:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15727','587','1','11078','2.99','2005-08-02 07:26:58.000','2006-02-15 22:22:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15728','587','2','11403','4.99','2005-08-02 19:10:21.000','2006-02-15 22:22:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15729','587','2','12164','4.99','2005-08-18 00:46:38.000','2006-02-15 22:22:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15730','587','2','12330','6.99','2005-08-18 06:46:33.000','2006-02-15 22:22:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15731','587','2','14710','4.99','2005-08-21 21:15:23.000','2006-02-15 22:22:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15732','587','2','15348','2.99','2005-08-22 21:13:46.000','2006-02-15 22:22:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15733','587','2','15349','0.99','2005-08-22 21:13:51.000','2006-02-15 22:22:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15734','587','1','12144','0.99','2006-02-14 15:16:03.000','2006-02-15 22:22:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15735','588','1','576','2.99','2005-05-28 10:56:10.000','2006-02-15 22:22:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15736','588','1','961','4.99','2005-05-30 18:16:44.000','2006-02-15 22:22:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15737','588','2','1885','2.99','2005-06-17 03:35:59.000','2006-02-15 22:22:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15738','588','2','1903','6.99','2005-06-17 04:37:20.000','2006-02-15 22:22:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15739','588','2','2270','7.99','2005-06-18 06:29:01.000','2006-02-15 22:22:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15740','588','1','2453','2.99','2005-06-18 19:30:53.000','2006-02-15 22:22:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15741','588','2','2920','3.99','2005-06-20 04:12:46.000','2006-02-15 22:22:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15742','588','1','3628','4.99','2005-07-06 06:19:43.000','2006-02-15 22:22:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15743','588','1','4101','0.99','2005-07-07 06:25:11.000','2006-02-15 22:22:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15744','588','2','4207','5.99','2005-07-07 11:32:45.000','2006-02-15 22:23:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15745','588','2','5203','2.99','2005-07-09 10:53:59.000','2006-02-15 22:23:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15746','588','1','5335','4.99','2005-07-09 17:00:49.000','2006-02-15 22:23:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15747','588','1','6368','4.99','2005-07-11 21:19:01.000','2006-02-15 22:23:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15748','588','2','7377','2.99','2005-07-27 15:31:28.000','2006-02-15 22:23:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15749','588','2','7903','2.99','2005-07-28 11:20:36.000','2006-02-15 22:23:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15750','588','1','8421','4.99','2005-07-29 07:00:47.000','2006-02-15 22:23:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15751','588','1','8429','2.99','2005-07-29 07:11:49.000','2006-02-15 22:23:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15752','588','2','8519','2.99','2005-07-29 10:09:43.000','2006-02-15 22:23:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15753','588','1','8769','2.99','2005-07-29 19:45:33.000','2006-02-15 22:23:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15754','588','2','9326','2.99','2005-07-30 17:30:03.000','2006-02-15 22:23:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15755','588','2','9370','4.99','2005-07-30 18:57:29.000','2006-02-15 22:23:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15756','588','2','10373','4.99','2005-08-01 06:24:26.000','2006-02-15 22:23:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15757','588','1','12185','2.99','2005-08-18 01:40:14.000','2006-02-15 22:23:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15758','588','2','12815','4.99','2005-08-19 00:59:42.000','2006-02-15 22:23:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15759','588','1','13064','4.99','2005-08-19 09:46:53.000','2006-02-15 22:23:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15760','588','1','13923','1.99','2005-08-20 17:05:02.000','2006-02-15 22:23:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15761','588','1','15109','1.99','2005-08-22 12:12:58.000','2006-02-15 22:23:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15762','588','1','15158','2.99','2005-08-22 14:30:39.000','2006-02-15 22:23:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15763','588','1','15209','4.99','2005-08-22 16:37:32.000','2006-02-15 22:23:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15764','589','1','531','0.99','2005-05-28 05:23:38.000','2006-02-15 22:23:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15765','589','1','596','4.99','2005-05-28 14:00:03.000','2006-02-15 22:23:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15766','589','1','737','4.99','2005-05-29 08:11:31.000','2006-02-15 22:23:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15767','589','1','1439','4.99','2005-06-15 18:45:32.000','2006-02-15 22:23:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15768','589','2','1703','4.99','2005-06-16 13:28:44.000','2006-02-15 22:23:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15769','589','2','2652','8.99','2005-06-19 10:35:26.000','2006-02-15 22:23:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15770','589','1','2707','8.99','2005-06-19 13:57:08.000','2006-02-15 22:23:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15771','589','1','2979','2.99','2005-06-20 08:31:05.000','2006-02-15 22:23:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15772','589','2','4986','2.99','2005-07-09 00:44:33.000','2006-02-15 22:23:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15773','589','1','5951','0.99','2005-07-10 23:14:29.000','2006-02-15 22:23:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15774','589','2','6177','4.99','2005-07-11 10:53:49.000','2006-02-15 22:23:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15775','589','2','6247','3.99','2005-07-11 15:00:05.000','2006-02-15 22:23:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15776','589','2','7250','0.99','2005-07-27 10:44:09.000','2006-02-15 22:23:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15777','589','2','7431','3.99','2005-07-27 17:27:27.000','2006-02-15 22:23:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15778','589','2','7948','9.99','2005-07-28 13:06:16.000','2006-02-15 22:23:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15779','589','2','8056','0.99','2005-07-28 17:04:15.000','2006-02-15 22:23:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15780','589','1','8374','3.99','2005-07-29 05:24:02.000','2006-02-15 22:23:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15781','589','1','9153','4.99','2005-07-30 10:58:16.000','2006-02-15 22:23:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15782','589','2','10544','4.99','2005-08-01 12:36:21.000','2006-02-15 22:23:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15783','589','1','11980','4.99','2005-08-17 18:10:18.000','2006-02-15 22:23:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15784','589','1','12738','7.99','2005-08-18 22:11:47.000','2006-02-15 22:23:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15785','589','2','12933','8.99','2005-08-19 05:18:20.000','2006-02-15 22:23:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15786','589','1','14038','6.99','2005-08-20 21:39:23.000','2006-02-15 22:23:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15787','589','1','14254','6.99','2005-08-21 05:51:28.000','2006-02-15 22:23:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15788','589','1','14544','0.99','2005-08-21 15:41:01.000','2006-02-15 22:23:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15789','589','2','14706','0.99','2005-08-21 21:04:42.000','2006-02-15 22:23:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15790','589','2','15917','5.99','2005-08-23 17:57:28.000','2006-02-15 22:23:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15791','589','2','15992','0.99','2005-08-23 20:28:32.000','2006-02-15 22:23:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15792','590','1','602','3.99','2005-05-28 14:15:54.000','2006-02-15 22:23:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15793','590','2','1456','7.99','2005-06-15 20:00:11.000','2006-02-15 22:23:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15794','590','2','2352','2.99','2005-06-18 12:40:15.000','2006-02-15 22:23:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15795','590','2','2775','2.99','2005-06-19 18:14:20.000','2006-02-15 22:23:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15796','590','1','2916','6.99','2005-06-20 04:01:04.000','2006-02-15 22:23:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15797','590','1','2964','9.99','2005-06-20 07:33:29.000','2006-02-15 22:23:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15798','590','2','4685','4.99','2005-07-08 10:45:13.000','2006-02-15 22:23:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15799','590','1','4710','2.99','2005-07-08 12:04:53.000','2006-02-15 22:23:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15800','590','2','4722','4.99','2005-07-08 12:42:27.000','2006-02-15 22:23:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15801','590','1','5165','0.99','2005-07-09 09:08:53.000','2006-02-15 22:23:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15802','590','1','5529','2.99','2005-07-10 02:11:13.000','2006-02-15 22:23:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15803','590','1','5991','4.99','2005-07-11 01:03:38.000','2006-02-15 22:23:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15804','590','2','6232','4.99','2005-07-11 14:08:27.000','2006-02-15 22:23:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15805','590','2','6492','4.99','2005-07-12 02:28:40.000','2006-02-15 22:23:14.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15806','590','1','7010','4.99','2005-07-27 01:56:01.000','2006-02-15 22:23:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15807','590','2','7665','2.99','2005-07-28 02:28:30.000','2006-02-15 22:23:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15808','590','1','8195','5.99','2005-07-28 22:52:58.000','2006-02-15 22:23:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15809','590','1','8801','4.99','2005-07-29 21:25:22.000','2006-02-15 22:23:15.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15810','590','2','9126','0.99','2005-07-30 09:44:15.000','2006-02-15 22:23:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15811','590','1','9884','4.99','2005-07-31 13:56:24.000','2006-02-15 22:23:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15812','590','1','10657','4.99','2005-08-01 16:38:44.000','2006-02-15 22:23:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15813','590','2','11578','5.99','2005-08-17 01:54:13.000','2006-02-15 22:23:16.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15814','590','2','11713','3.99','2005-08-17 07:34:05.000','2006-02-15 22:23:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15815','590','1','14830','2.99','2005-08-22 01:37:19.000','2006-02-15 22:23:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15816','590','2','15458','2.99','2006-02-14 15:16:03.000','2006-02-15 22:23:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15817','591','1','1418','0.99','2005-06-15 17:51:27.000','2006-02-15 22:23:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15818','591','2','3341','2.99','2005-06-21 10:37:25.000','2006-02-15 22:23:17.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15819','591','2','3435','4.99','2005-06-21 19:14:58.000','2006-02-15 22:23:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15820','591','1','3636','0.99','2005-07-06 07:03:52.000','2006-02-15 22:23:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15821','591','2','4383','11.99','2005-07-07 20:45:51.000','2006-02-15 22:23:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15822','591','1','4581','6.99','2005-07-08 06:05:06.000','2006-02-15 22:23:18.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15823','591','1','5704','5.99','2005-07-10 10:06:29.000','2006-02-15 22:23:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15824','591','1','5759','6.99','2005-07-10 12:43:22.000','2006-02-15 22:23:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15825','591','1','7118','8.99','2005-07-27 05:53:50.000','2006-02-15 22:23:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15826','591','1','7212','2.99','2005-07-27 09:21:22.000','2006-02-15 22:23:19.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15827','591','2','7511','4.99','2005-07-27 20:38:40.000','2006-02-15 22:23:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15828','591','1','7549','3.99','2005-07-27 21:53:21.000','2006-02-15 22:23:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15829','591','2','7741','0.99','2005-07-28 05:25:55.000','2006-02-15 22:23:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15830','591','1','7997','4.99','2005-07-28 15:02:25.000','2006-02-15 22:23:20.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15831','591','1','8149','3.99','2005-07-28 20:48:12.000','2006-02-15 22:23:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15832','591','2','8666','5.99','2005-07-29 15:39:38.000','2006-02-15 22:23:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15833','591','2','8819','4.99','2005-07-29 22:14:26.000','2006-02-15 22:23:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15834','591','1','9684','0.99','2005-07-31 06:48:33.000','2006-02-15 22:23:21.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15835','591','1','10415','4.99','2005-08-01 08:05:59.000','2006-02-15 22:23:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15836','591','2','12203','5.99','2005-08-18 02:18:52.000','2006-02-15 22:23:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15837','591','2','12227','4.99','2005-08-18 03:04:28.000','2006-02-15 22:23:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15838','591','1','12547','4.99','2005-08-18 14:29:39.000','2006-02-15 22:23:22.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15839','591','1','12571','5.99','2005-08-18 15:31:18.000','2006-02-15 22:23:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15840','591','1','12934','5.99','2005-08-19 05:18:42.000','2006-02-15 22:23:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15841','591','2','13104','2.99','2005-08-19 11:06:06.000','2006-02-15 22:23:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15842','591','2','13343','3.99','2005-08-19 20:22:08.000','2006-02-15 22:23:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15843','591','1','13867','9.99','2005-08-20 15:05:42.000','2006-02-15 22:23:23.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15844','592','2','1163','6.99','2005-06-14 23:12:46.000','2006-02-15 22:23:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15845','592','2','1423','5.99','2005-06-15 18:08:12.000','2006-02-15 22:23:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15846','592','1','1479','2.99','2005-06-15 21:13:38.000','2006-02-15 22:23:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15847','592','1','2627','0.99','2005-06-19 08:32:00.000','2006-02-15 22:23:24.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15848','592','1','3158','7.99','2005-06-20 21:08:19.000','2006-02-15 22:23:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15849','592','2','3560','2.99','2005-07-06 02:51:37.000','2006-02-15 22:23:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15850','592','1','3973','11.99','2005-07-06 22:58:31.000','2006-02-15 22:23:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15851','592','1','4129','1.99','2005-07-07 07:37:03.000','2006-02-15 22:23:25.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15852','592','1','4145','9.99','2005-07-07 08:26:39.000','2006-02-15 22:23:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15853','592','1','4460','0.99','2005-07-07 23:50:14.000','2006-02-15 22:23:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15854','592','1','4518','2.99','2005-07-08 02:48:36.000','2006-02-15 22:23:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15855','592','1','6937','0.99','2005-07-26 23:15:50.000','2006-02-15 22:23:26.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15856','592','2','7173','0.99','2005-07-27 07:59:24.000','2006-02-15 22:23:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15857','592','1','7278','3.99','2005-07-27 11:50:34.000','2006-02-15 22:23:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15858','592','2','7364','4.99','2005-07-27 14:58:40.000','2006-02-15 22:23:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15859','592','1','8730','2.99','2005-07-29 18:23:34.000','2006-02-15 22:23:27.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15860','592','2','8773','0.99','2005-07-29 19:55:34.000','2006-02-15 22:23:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15861','592','1','9268','4.99','2005-07-30 15:02:30.000','2006-02-15 22:23:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15862','592','1','9437','3.99','2005-07-30 21:36:04.000','2006-02-15 22:23:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15863','592','2','9666','6.99','2005-07-31 06:20:58.000','2006-02-15 22:23:28.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15864','592','2','10383','0.99','2005-08-01 06:37:16.000','2006-02-15 22:23:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15865','592','2','10634','2.99','2005-08-01 15:37:48.000','2006-02-15 22:23:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15866','592','1','11410','8.99','2005-08-02 19:29:01.000','2006-02-15 22:23:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15867','592','2','12043','0.99','2005-08-17 20:38:21.000','2006-02-15 22:23:29.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15868','592','2','12619','0.99','2005-08-18 17:24:15.000','2006-02-15 22:23:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15869','592','1','12976','1.99','2005-08-19 06:52:58.000','2006-02-15 22:23:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15870','592','1','13157','2.99','2005-08-19 13:12:28.000','2006-02-15 22:23:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15871','592','2','13662','3.99','2005-08-20 08:11:58.000','2006-02-15 22:23:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15872','592','2','14606','0.99','2006-02-14 15:16:03.000','2006-02-15 22:23:30.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15873','593','1','790','2.99','2005-05-29 16:19:29.000','2006-02-15 22:23:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15874','593','1','991','8.99','2005-05-30 23:29:22.000','2006-02-15 22:23:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15875','593','2','2055','5.99','2005-06-17 15:27:03.000','2006-02-15 22:23:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15876','593','2','2205','4.99','2005-06-18 02:14:34.000','2006-02-15 22:23:31.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15877','593','1','2441','4.99','2005-06-18 18:45:11.000','2006-02-15 22:23:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15878','593','1','2832','4.99','2005-06-19 21:21:53.000','2006-02-15 22:23:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15879','593','2','3542','2.99','2005-07-06 01:51:42.000','2006-02-15 22:23:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15880','593','2','4075','2.99','2005-07-07 04:51:44.000','2006-02-15 22:23:32.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15881','593','2','4280','3.99','2005-07-07 15:09:31.000','2006-02-15 22:23:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15882','593','2','4623','0.99','2005-07-08 08:03:22.000','2006-02-15 22:23:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15883','593','2','4781','4.99','2005-07-08 16:06:55.000','2006-02-15 22:23:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15884','593','2','4867','0.99','2005-07-08 19:10:52.000','2006-02-15 22:23:33.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15885','593','1','6386','2.99','2005-07-11 22:14:57.000','2006-02-15 22:23:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15886','593','1','6731','2.99','2005-07-12 13:58:27.000','2006-02-15 22:23:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15887','593','2','7958','4.99','2005-07-28 13:34:34.000','2006-02-15 22:23:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15888','593','1','8497','2.99','2005-07-29 09:07:03.000','2006-02-15 22:23:34.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15889','593','2','9329','6.99','2005-07-30 17:42:38.000','2006-02-15 22:23:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15890','593','1','9483','6.99','2005-07-30 23:31:31.000','2006-02-15 22:23:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15891','593','1','10368','3.99','2005-08-01 06:13:38.000','2006-02-15 22:23:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15892','593','2','10533','3.99','2005-08-01 12:14:16.000','2006-02-15 22:23:35.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15893','593','1','10840','5.99','2005-08-01 23:38:34.000','2006-02-15 22:23:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15894','593','2','10904','4.99','2005-08-02 01:43:02.000','2006-02-15 22:23:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15895','593','2','12744','2.99','2005-08-18 22:22:36.000','2006-02-15 22:23:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15896','593','1','13524','6.99','2005-08-20 02:48:43.000','2006-02-15 22:23:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15897','593','1','14408','5.99','2005-08-21 10:47:24.000','2006-02-15 22:23:36.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15898','593','1','14653','0.99','2005-08-21 19:35:59.000','2006-02-15 22:23:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15899','594','1','313','4.99','2005-05-26 22:56:19.000','2006-02-15 22:23:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15900','594','1','360','8.99','2005-05-27 06:51:14.000','2006-02-15 22:23:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15901','594','2','1018','0.99','2005-05-31 02:53:42.000','2006-02-15 22:23:37.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15902','594','1','1045','6.99','2005-05-31 06:29:01.000','2006-02-15 22:23:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15903','594','2','1537','5.99','2005-06-16 00:52:51.000','2006-02-15 22:23:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15904','594','1','1816','4.99','2005-06-16 21:20:41.000','2006-02-15 22:23:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15905','594','1','1950','2.99','2005-06-17 08:26:52.000','2006-02-15 22:23:38.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15906','594','1','2276','6.99','2005-06-18 06:33:48.000','2006-02-15 22:23:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15907','594','2','2786','0.99','2005-06-19 18:46:43.000','2006-02-15 22:23:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15908','594','2','3302','1.99','2005-06-21 07:33:40.000','2006-02-15 22:23:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15909','594','2','3474','0.99','2005-07-05 22:59:53.000','2006-02-15 22:23:39.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15910','594','1','3546','4.99','2005-07-06 02:17:54.000','2006-02-15 22:23:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15911','594','2','3960','2.99','2005-07-06 22:08:53.000','2006-02-15 22:23:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15912','594','1','4037','5.99','2005-07-07 02:52:52.000','2006-02-15 22:23:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15913','594','1','4154','3.99','2005-07-07 08:58:23.000','2006-02-15 22:23:40.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15914','594','2','5386','2.99','2005-07-09 19:19:09.000','2006-02-15 22:23:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15915','594','1','6473','6.99','2005-07-12 01:35:40.000','2006-02-15 22:23:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15916','594','1','7533','8.99','2005-07-27 21:24:33.000','2006-02-15 22:23:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15917','594','1','8567','1.99','2005-07-29 11:37:30.000','2006-02-15 22:23:41.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15918','594','1','8603','2.99','2005-07-29 13:07:07.000','2006-02-15 22:23:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15919','594','2','8820','5.99','2005-07-29 22:14:56.000','2006-02-15 22:23:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15920','594','1','9545','7.99','2005-07-31 01:46:24.000','2006-02-15 22:23:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15921','594','1','9698','3.99','2005-07-31 07:24:35.000','2006-02-15 22:23:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15922','594','2','9802','4.99','2005-07-31 11:04:20.000','2006-02-15 22:23:42.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15923','594','2','10704','8.99','2005-08-01 18:38:02.000','2006-02-15 22:23:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15924','594','2','14824','4.99','2005-08-22 01:27:51.000','2006-02-15 22:23:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15925','594','1','14999','4.99','2005-08-22 07:54:47.000','2006-02-15 22:23:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15926','595','1','613','6.99','2005-05-28 15:27:22.000','2006-02-15 22:23:43.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15927','595','2','1170','2.99','2005-06-14 23:47:35.000','2006-02-15 22:23:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15928','595','2','3371','4.99','2005-06-21 13:27:22.000','2006-02-15 22:23:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15929','595','1','3789','9.99','2005-07-06 14:02:26.000','2006-02-15 22:23:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15930','595','1','4017','4.99','2005-07-07 01:08:18.000','2006-02-15 22:23:44.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15931','595','1','4241','4.99','2005-07-07 13:39:00.000','2006-02-15 22:23:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15932','595','2','4775','2.99','2005-07-08 15:44:05.000','2006-02-15 22:23:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15933','595','1','5631','1.99','2005-07-10 06:15:45.000','2006-02-15 22:23:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15934','595','1','5952','1.99','2005-07-10 23:18:20.000','2006-02-15 22:23:45.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15935','595','1','6105','6.99','2005-07-11 07:03:19.000','2006-02-15 22:23:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15936','595','1','6704','6.99','2005-07-12 12:50:24.000','2006-02-15 22:23:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15937','595','1','7086','4.99','2005-07-27 04:39:46.000','2006-02-15 22:23:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15938','595','2','7307','0.99','2005-07-27 12:59:10.000','2006-02-15 22:23:46.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15939','595','1','7396','4.99','2005-07-27 16:03:53.000','2006-02-15 22:23:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15940','595','2','7490','3.99','2005-07-27 19:48:12.000','2006-02-15 22:23:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15941','595','1','9152','2.99','2005-07-30 10:51:27.000','2006-02-15 22:23:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15942','595','2','9223','2.99','2005-07-30 13:23:20.000','2006-02-15 22:23:47.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15943','595','1','9354','4.99','2005-07-30 18:32:51.000','2006-02-15 22:23:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15944','595','2','9497','0.99','2005-07-30 23:56:54.000','2006-02-15 22:23:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15945','595','2','9542','4.99','2005-07-31 01:41:48.000','2006-02-15 22:23:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15946','595','1','9631','2.99','2005-07-31 05:02:00.000','2006-02-15 22:23:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15947','595','2','9826','10.99','2005-07-31 11:51:46.000','2006-02-15 22:23:48.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15948','595','1','10729','2.99','2005-08-01 19:21:11.000','2006-02-15 22:23:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15949','595','1','10932','2.99','2005-08-02 02:46:22.000','2006-02-15 22:23:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15950','595','2','11748','0.99','2005-08-17 09:04:02.000','2006-02-15 22:23:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15951','595','1','12235','0.99','2005-08-18 03:17:50.000','2006-02-15 22:23:49.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15952','595','1','14334','0.99','2005-08-21 08:32:32.000','2006-02-15 22:23:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15953','595','2','15576','2.99','2005-08-23 05:32:03.000','2006-02-15 22:23:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15954','595','2','15994','0.99','2005-08-23 20:29:10.000','2006-02-15 22:23:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15955','595','2','16016','2.99','2005-08-23 21:26:35.000','2006-02-15 22:23:50.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15956','596','2','303','4.99','2005-05-26 21:16:52.000','2006-02-15 22:23:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15957','596','2','625','0.99','2005-05-28 16:35:46.000','2006-02-15 22:23:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15958','596','2','667','4.99','2005-05-28 21:49:02.000','2006-02-15 22:23:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15959','596','2','782','1.99','2005-05-29 14:38:57.000','2006-02-15 22:23:51.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15960','596','1','914','2.99','2005-05-30 11:06:00.000','2006-02-15 22:23:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15961','596','1','974','6.99','2005-05-30 20:28:42.000','2006-02-15 22:23:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15962','596','1','1644','1.99','2005-06-16 08:58:18.000','2006-02-15 22:23:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15963','596','1','2767','1.99','2005-06-19 17:46:35.000','2006-02-15 22:23:52.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15964','596','2','5742','3.99','2005-07-10 11:56:18.000','2006-02-15 22:23:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15965','596','1','6015','2.99','2005-07-11 02:04:12.000','2006-02-15 22:23:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15966','596','1','6017','0.99','2005-07-11 02:05:32.000','2006-02-15 22:23:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15967','596','1','6197','4.99','2005-07-11 12:09:51.000','2006-02-15 22:23:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15968','596','2','6883','4.99','2005-07-12 20:50:48.000','2006-02-15 22:23:53.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15969','596','1','10094','3.99','2005-07-31 20:31:18.000','2006-02-15 22:23:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15970','596','2','10692','4.99','2005-08-01 18:12:35.000','2006-02-15 22:23:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15971','596','1','10756','2.99','2005-08-01 20:17:03.000','2006-02-15 22:23:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15972','596','2','10804','0.99','2005-08-01 22:22:11.000','2006-02-15 22:23:54.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15973','596','2','11009','4.99','2005-08-02 05:06:23.000','2006-02-15 22:23:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15974','596','2','11852','3.99','2005-08-17 13:38:27.000','2006-02-15 22:23:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15975','596','1','11934','0.99','2005-08-17 16:40:00.000','2006-02-15 22:23:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15976','596','2','12560','4.99','2005-08-18 14:54:19.000','2006-02-15 22:23:55.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15977','596','1','12878','4.99','2005-08-19 03:17:08.000','2006-02-15 22:23:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15978','596','1','13648','4.99','2005-08-20 07:48:10.000','2006-02-15 22:23:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15979','596','1','14050','3.99','2005-08-20 22:09:04.000','2006-02-15 22:23:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15980','596','1','14417','0.99','2005-08-21 11:13:35.000','2006-02-15 22:23:56.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15981','596','1','15405','0.99','2005-08-22 23:20:41.000','2006-02-15 22:23:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15982','596','1','15899','6.99','2005-08-23 17:16:28.000','2006-02-15 22:23:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15983','596','1','15423','0.99','2006-02-14 15:16:03.000','2006-02-15 22:23:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15984','597','2','34','2.99','2005-05-25 04:19:28.000','2006-02-15 22:23:57.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15985','597','2','514','8.99','2005-05-28 03:09:28.000','2006-02-15 22:23:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15986','597','1','2379','0.99','2005-06-18 14:59:39.000','2006-02-15 22:23:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15987','597','1','2696','4.99','2005-06-19 13:28:42.000','2006-02-15 22:23:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15988','597','1','3201','1.99','2005-06-21 00:30:26.000','2006-02-15 22:23:58.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15989','597','1','5093','0.99','2005-07-09 05:59:12.000','2006-02-15 22:23:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15990','597','1','5348','4.99','2005-07-09 17:34:11.000','2006-02-15 22:23:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15991','597','2','5732','2.99','2005-07-10 11:36:32.000','2006-02-15 22:23:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15992','597','1','6508','2.99','2005-07-12 03:34:50.000','2006-02-15 22:23:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15993','597','2','7968','4.99','2005-07-28 13:57:35.000','2006-02-15 22:23:59.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15994','597','2','8948','4.99','2005-07-30 03:16:18.000','2006-02-15 22:24:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15995','597','2','10021','4.99','2005-07-31 18:24:39.000','2006-02-15 22:24:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15996','597','1','10214','0.99','2005-08-01 01:04:15.000','2006-02-15 22:24:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15997','597','2','10986','5.99','2005-08-02 04:35:24.000','2006-02-15 22:24:00.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15998','597','2','11147','4.99','2005-08-02 09:45:54.000','2006-02-15 22:24:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('15999','597','2','11223','2.99','2005-08-02 12:34:27.000','2006-02-15 22:24:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16000','597','1','11240','2.99','2005-08-02 13:28:30.000','2006-02-15 22:24:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16001','597','1','11880','5.99','2005-08-17 14:28:28.000','2006-02-15 22:24:01.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16002','597','1','12081','4.99','2005-08-17 22:10:46.000','2006-02-15 22:24:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16003','597','1','12992','0.99','2005-08-19 07:23:06.000','2006-02-15 22:24:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16004','597','2','13019','2.99','2005-08-19 08:07:43.000','2006-02-15 22:24:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16005','597','1','13152','6.99','2005-08-19 13:09:32.000','2006-02-15 22:24:02.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16006','597','2','15275','2.99','2005-08-22 18:57:39.000','2006-02-15 22:24:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16007','597','1','15469','4.99','2005-08-23 01:29:59.000','2006-02-15 22:24:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16008','597','1','11652','4.99','2006-02-14 15:16:03.000','2006-02-15 22:24:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16009','598','1','3005','2.99','2005-06-20 10:10:29.000','2006-02-15 22:24:03.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16010','598','1','3648','0.99','2005-07-06 07:30:41.000','2006-02-15 22:24:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16011','598','2','3950','6.99','2005-07-06 21:48:44.000','2006-02-15 22:24:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16012','598','1','3972','4.99','2005-07-06 22:53:57.000','2006-02-15 22:24:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16013','598','1','4181','4.99','2005-07-07 10:27:54.000','2006-02-15 22:24:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16014','598','2','5688','5.99','2005-07-10 09:16:08.000','2006-02-15 22:24:04.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16015','598','1','6519','4.99','2005-07-12 04:00:36.000','2006-02-15 22:24:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16016','598','2','6528','4.99','2005-07-12 04:29:44.000','2006-02-15 22:24:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16017','598','2','6575','0.99','2005-07-12 06:12:53.000','2006-02-15 22:24:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16018','598','2','6660','3.99','2005-07-12 11:20:12.000','2006-02-15 22:24:05.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16019','598','2','7201','6.99','2005-07-27 08:57:40.000','2006-02-15 22:24:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16020','598','2','7354','0.99','2005-07-27 14:42:11.000','2006-02-15 22:24:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16021','598','1','7998','0.99','2005-07-28 15:08:48.000','2006-02-15 22:24:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16022','598','2','8436','0.99','2005-07-29 07:21:20.000','2006-02-15 22:24:06.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16023','598','1','8511','5.99','2005-07-29 09:42:42.000','2006-02-15 22:24:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16024','598','1','8939','4.99','2005-07-30 02:56:53.000','2006-02-15 22:24:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16025','598','1','10054','4.99','2005-07-31 19:15:52.000','2006-02-15 22:24:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16026','598','2','11350','0.99','2005-08-02 17:22:59.000','2006-02-15 22:24:07.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16027','598','2','12601','2.99','2005-08-18 16:47:52.000','2006-02-15 22:24:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16028','598','2','14345','0.99','2005-08-21 08:41:15.000','2006-02-15 22:24:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16029','598','2','15307','2.99','2005-08-22 19:54:26.000','2006-02-15 22:24:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16030','598','1','15443','7.99','2005-08-23 00:44:15.000','2006-02-15 22:24:08.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16031','599','2','1008','4.99','2005-05-31 01:18:56.000','2006-02-15 22:24:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16032','599','1','2272','1.99','2005-06-18 06:29:53.000','2006-02-15 22:24:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16033','599','2','3043','6.99','2005-06-20 12:38:35.000','2006-02-15 22:24:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16034','599','2','3398','4.99','2005-06-21 15:34:38.000','2006-02-15 22:24:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16035','599','1','3429','6.99','2005-06-21 18:46:05.000','2006-02-15 22:24:09.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16036','599','1','5065','0.99','2005-07-09 04:42:00.000','2006-02-15 22:24:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16037','599','1','5843','2.99','2005-07-10 17:14:27.000','2006-02-15 22:24:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16038','599','2','6800','9.99','2005-07-12 17:03:56.000','2006-02-15 22:24:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16039','599','2','6895','2.99','2005-07-12 21:23:59.000','2006-02-15 22:24:10.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16040','599','1','8965','6.99','2005-07-30 03:52:37.000','2006-02-15 22:24:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16041','599','2','9630','2.99','2005-07-31 04:57:07.000','2006-02-15 22:24:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16042','599','2','9679','2.99','2005-07-31 06:41:19.000','2006-02-15 22:24:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16043','599','2','11522','3.99','2005-08-17 00:05:05.000','2006-02-15 22:24:11.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16044','599','1','14233','1.99','2005-08-21 05:07:08.000','2006-02-15 22:24:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16045','599','1','14599','4.99','2005-08-21 17:43:42.000','2006-02-15 22:24:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16046','599','1','14719','1.99','2005-08-21 21:41:57.000','2006-02-15 22:24:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16047','599','2','15590','8.99','2005-08-23 06:09:44.000','2006-02-15 22:24:12.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16048','599','2','15719','2.99','2005-08-23 11:08:46.000','2006-02-15 22:24:13.000') +; +Insert into payment + (payment_id,customer_id,staff_id,rental_id,amount,payment_date,last_update) +Values +('16049','599','2','15725','2.99','2005-08-23 11:25:00.000','2006-02-15 22:24:13.000') +; +-- End of Script +-- +-- +END TRANSACTION; diff --git a/drivers/sqlite3/testdata/sqlite-sakila-schema.sql b/drivers/sqlite3/testdata/sqlite-sakila-schema.sql new file mode 100644 index 00000000..a443e432 --- /dev/null +++ b/drivers/sqlite3/testdata/sqlite-sakila-schema.sql @@ -0,0 +1,647 @@ +/* + +Sakila for SQLite is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team. +This project is designed to help database administrators to decide which database to use for development of new products +The user can run the same SQL against different kind of databases and compare the performance + +License: BSD +Copyright DB Software Laboratory +http://www.etl-tools.com + +*/ + +-- +-- Table structure for table actor +-- +--DROP TABLE actor; + +BEGIN TRANSACTION; + +CREATE TABLE actor ( + actor_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP + ) + ; + +CREATE INDEX idx_actor_last_name ON actor(last_name) +; + +CREATE TRIGGER actor_trigger_ai AFTER INSERT ON actor + BEGIN + UPDATE actor SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER actor_trigger_au AFTER UPDATE ON actor + BEGIN + UPDATE actor SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + + -- +-- Table structure for table country +-- + +CREATE TABLE country ( + country_id SMALLINT NOT NULL, + country VARCHAR(50) NOT NULL, + last_update TIMESTAMP, + PRIMARY KEY (country_id) +) +; + +CREATE TRIGGER country_trigger_ai AFTER INSERT ON country + BEGIN + UPDATE country SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER country_trigger_au AFTER UPDATE ON country + BEGIN + UPDATE country SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table city +-- + +CREATE TABLE city ( + city_id INT NOT NULL, + city VARCHAR(50) NOT NULL, + country_id SMALLINT NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (city_id), + CONSTRAINT fk_city_country FOREIGN KEY (country_id) REFERENCES country (country_id) ON DELETE NO ACTION ON UPDATE CASCADE +) +; +CREATE INDEX idx_fk_country_id ON city(country_id) +; + +CREATE TRIGGER city_trigger_ai AFTER INSERT ON city + BEGIN + UPDATE city SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER city_trigger_au AFTER UPDATE ON city + BEGIN + UPDATE city SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table address +-- + +CREATE TABLE address ( + address_id INT NOT NULL, + address VARCHAR(50) NOT NULL, + address2 VARCHAR(50) DEFAULT NULL, + district VARCHAR(20) NOT NULL, + city_id INT NOT NULL, + postal_code VARCHAR(10) DEFAULT NULL, + phone VARCHAR(20) NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (address_id), + CONSTRAINT fk_address_city FOREIGN KEY (city_id) REFERENCES city (city_id) ON DELETE NO ACTION ON UPDATE CASCADE +) +; + +CREATE INDEX idx_fk_city_id ON address(city_id) +; + +CREATE TRIGGER address_trigger_ai AFTER INSERT ON address + BEGIN + UPDATE address SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER address_trigger_au AFTER UPDATE ON address + BEGIN + UPDATE address SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table language +-- + +CREATE TABLE language ( + language_id SMALLINT NOT NULL , + name CHAR(20) NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (language_id) +) +; + +CREATE TRIGGER language_trigger_ai AFTER INSERT ON language + BEGIN + UPDATE language SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER language_trigger_au AFTER UPDATE ON language + BEGIN + UPDATE language SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table category +-- + +CREATE TABLE category ( + category_id SMALLINT NOT NULL, + name VARCHAR(25) NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (category_id) +); + +CREATE TRIGGER category_trigger_ai AFTER INSERT ON category + BEGIN + UPDATE category SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER category_trigger_au AFTER UPDATE ON category + BEGIN + UPDATE category SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table customer +-- + +CREATE TABLE customer ( + customer_id INT NOT NULL, + store_id INT NOT NULL, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + email VARCHAR(50) DEFAULT NULL, + address_id INT NOT NULL, + active CHAR(1) DEFAULT 'Y' NOT NULL, + create_date TIMESTAMP NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (customer_id), + CONSTRAINT fk_customer_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE NO ACTION ON UPDATE CASCADE, + CONSTRAINT fk_customer_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE NO ACTION ON UPDATE CASCADE +) +; + +CREATE INDEX idx_customer_fk_store_id ON customer(store_id) +; +CREATE INDEX idx_customer_fk_address_id ON customer(address_id) +; +CREATE INDEX idx_customer_last_name ON customer(last_name) +; + +CREATE TRIGGER customer_trigger_ai AFTER INSERT ON customer + BEGIN + UPDATE customer SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER customer_trigger_au AFTER UPDATE ON customer + BEGIN + UPDATE customer SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table film +-- + +CREATE TABLE film ( + film_id INT NOT NULL, + title VARCHAR(255) NOT NULL, + description BLOB SUB_TYPE TEXT DEFAULT NULL, + release_year VARCHAR(4) DEFAULT NULL, + language_id SMALLINT NOT NULL, + original_language_id SMALLINT DEFAULT NULL, + rental_duration SMALLINT DEFAULT 3 NOT NULL, + rental_rate DECIMAL(4,2) DEFAULT 4.99 NOT NULL, + length SMALLINT DEFAULT NULL, + replacement_cost DECIMAL(5,2) DEFAULT 19.99 NOT NULL, + rating VARCHAR(10) DEFAULT 'G', + special_features VARCHAR(100) DEFAULT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (film_id), + CONSTRAINT CHECK_special_features CHECK(special_features is null or + special_features like '%Trailers%' or + special_features like '%Commentaries%' or + special_features like '%Deleted Scenes%' or + special_features like '%Behind the Scenes%'), + CONSTRAINT CHECK_special_rating CHECK(rating in ('G','PG','PG-13','R','NC-17')), + CONSTRAINT fk_film_language FOREIGN KEY (language_id) REFERENCES language (language_id) , + CONSTRAINT fk_film_language_original FOREIGN KEY (original_language_id) REFERENCES language (language_id) +) +; +CREATE INDEX idx_fk_language_id ON film(language_id) +; +CREATE INDEX idx_fk_original_language_id ON film(original_language_id) +; + +CREATE TRIGGER film_trigger_ai AFTER INSERT ON film + BEGIN + UPDATE film SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER film_trigger_au AFTER UPDATE ON film + BEGIN + UPDATE film SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table film_actor +-- + +CREATE TABLE film_actor ( + actor_id INT NOT NULL, + film_id INT NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (actor_id,film_id), + CONSTRAINT fk_film_actor_actor FOREIGN KEY (actor_id) REFERENCES actor (actor_id) ON DELETE NO ACTION ON UPDATE CASCADE, + CONSTRAINT fk_film_actor_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE NO ACTION ON UPDATE CASCADE +) +; + +CREATE INDEX idx_fk_film_actor_film ON film_actor(film_id) +; + +CREATE INDEX idx_fk_film_actor_actor ON film_actor(actor_id) +; + +CREATE TRIGGER film_actor_trigger_ai AFTER INSERT ON film_actor + BEGIN + UPDATE film_actor SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER film_actor_trigger_au AFTER UPDATE ON film_actor + BEGIN + UPDATE film_actor SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + + +-- +-- Table structure for table film_category +-- + +CREATE TABLE film_category ( + film_id INT NOT NULL, + category_id SMALLINT NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (film_id, category_id), + CONSTRAINT fk_film_category_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE NO ACTION ON UPDATE CASCADE, + CONSTRAINT fk_film_category_category FOREIGN KEY (category_id) REFERENCES category (category_id) ON DELETE NO ACTION ON UPDATE CASCADE +) +; + +CREATE INDEX idx_fk_film_category_film ON film_category(film_id) +; + +CREATE INDEX idx_fk_film_category_category ON film_category(category_id) +; + +CREATE TRIGGER film_category_trigger_ai AFTER INSERT ON film_category + BEGIN + UPDATE film_category SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER film_category_trigger_au AFTER UPDATE ON film_category + BEGIN + UPDATE film_category SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table film_text +-- + +CREATE TABLE film_text ( + film_id SMALLINT NOT NULL, + title VARCHAR(255) NOT NULL, + description BLOB SUB_TYPE TEXT, + PRIMARY KEY (film_id) +) +; + +-- +-- Table structure for table inventory +-- + +CREATE TABLE inventory ( + inventory_id INT NOT NULL, + film_id INT NOT NULL, + store_id INT NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (inventory_id), + CONSTRAINT fk_inventory_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE NO ACTION ON UPDATE CASCADE, + CONSTRAINT fk_inventory_film FOREIGN KEY (film_id) REFERENCES film (film_id) ON DELETE NO ACTION ON UPDATE CASCADE +) +; + +CREATE INDEX idx_fk_film_id ON inventory(film_id) +; + +CREATE INDEX idx_fk_film_id_store_id ON inventory(store_id,film_id) +; + +CREATE TRIGGER inventory_trigger_ai AFTER INSERT ON inventory + BEGIN + UPDATE inventory SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER inventory_trigger_au AFTER UPDATE ON inventory + BEGIN + UPDATE inventory SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table staff +-- + +CREATE TABLE staff ( + staff_id SMALLINT NOT NULL, + first_name VARCHAR(45) NOT NULL, + last_name VARCHAR(45) NOT NULL, + address_id INT NOT NULL, + picture BLOB DEFAULT NULL, + email VARCHAR(50) DEFAULT NULL, + store_id INT NOT NULL, + active SMALLINT DEFAULT 1 NOT NULL, + username VARCHAR(16) NOT NULL, + password VARCHAR(40) DEFAULT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (staff_id), + CONSTRAINT fk_staff_store FOREIGN KEY (store_id) REFERENCES store (store_id) ON DELETE NO ACTION ON UPDATE CASCADE, + CONSTRAINT fk_staff_address FOREIGN KEY (address_id) REFERENCES address (address_id) ON DELETE NO ACTION ON UPDATE CASCADE +) +; +CREATE INDEX idx_fk_staff_store_id ON staff(store_id) +; + +CREATE INDEX idx_fk_staff_address_id ON staff(address_id) +; + +CREATE TRIGGER staff_trigger_ai AFTER INSERT ON staff + BEGIN + UPDATE staff SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER staff_trigger_au AFTER UPDATE ON staff + BEGIN + UPDATE staff SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table store +-- + +CREATE TABLE store ( + store_id INT NOT NULL, + manager_staff_id SMALLINT NOT NULL, + address_id INT NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (store_id), + CONSTRAINT fk_store_staff FOREIGN KEY (manager_staff_id) REFERENCES staff (staff_id) , + CONSTRAINT fk_store_address FOREIGN KEY (address_id) REFERENCES address (address_id) +) +; + +CREATE INDEX idx_store_fk_manager_staff_id ON store(manager_staff_id) +; + +CREATE INDEX idx_fk_store_address ON store(address_id) +; + +CREATE TRIGGER store_trigger_ai AFTER INSERT ON store + BEGIN + UPDATE store SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER store_trigger_au AFTER UPDATE ON store + BEGIN + UPDATE store SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +-- +-- Table structure for table payment +-- + +CREATE TABLE payment ( + payment_id INT NOT NULL, + customer_id INT NOT NULL, + staff_id SMALLINT NOT NULL, + rental_id INT DEFAULT NULL, + amount DECIMAL(5,2) NOT NULL, + payment_date TIMESTAMP NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (payment_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) , + CONSTRAINT fk_payment_staff FOREIGN KEY (staff_id) REFERENCES staff (staff_id) +) +; +CREATE INDEX idx_fk_staff_id ON payment(staff_id) +; +CREATE INDEX idx_fk_customer_id ON payment(customer_id) +; + +CREATE TRIGGER payment_trigger_ai AFTER INSERT ON payment + BEGIN + UPDATE payment SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER payment_trigger_au AFTER UPDATE ON payment + BEGIN + UPDATE payment SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TABLE rental ( + rental_id INT NOT NULL, + rental_date TIMESTAMP NOT NULL, + inventory_id INT NOT NULL, + customer_id INT NOT NULL, + return_date TIMESTAMP DEFAULT NULL, + staff_id SMALLINT NOT NULL, + last_update TIMESTAMP NOT NULL, + PRIMARY KEY (rental_id), + CONSTRAINT fk_rental_staff FOREIGN KEY (staff_id) REFERENCES staff (staff_id) , + CONSTRAINT fk_rental_inventory FOREIGN KEY (inventory_id) REFERENCES inventory (inventory_id) , + CONSTRAINT fk_rental_customer FOREIGN KEY (customer_id) REFERENCES customer (customer_id) +) +; +CREATE INDEX idx_rental_fk_inventory_id ON rental(inventory_id) +; +CREATE INDEX idx_rental_fk_customer_id ON rental(customer_id) +; +CREATE INDEX idx_rental_fk_staff_id ON rental(staff_id) +; +CREATE UNIQUE INDEX idx_rental_uq ON rental (rental_date,inventory_id,customer_id) +; + +CREATE TRIGGER rental_trigger_ai AFTER INSERT ON rental + BEGIN + UPDATE rental SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; + +CREATE TRIGGER rental_trigger_au AFTER UPDATE ON rental + BEGIN + UPDATE rental SET last_update = DATETIME('NOW') WHERE rowid = new.rowid; + END +; +-- +-- View structure for view customer_list +-- + +CREATE VIEW customer_list +AS +SELECT cu.customer_id AS ID, + cu.first_name||' '||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, + case when cu.active=1 then 'active' else '' end 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, + actor.first_name||' '||actor.last_name 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 +; + +-- +-- View structure for view staff_list +-- + +CREATE VIEW staff_list +AS +SELECT s.staff_id AS ID, + s.first_name||' '||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 + s.store_id + ,c.city||','||cy.country AS store + ,m.first_name||' '||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 +, c.city||','||cy.country +, m.first_name||' '||m.last_name +; +-- +-- 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 +; + +-- +-- View structure for view actor_info +-- + +/* +CREATE 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 sakila.film f + INNER JOIN sakila.film_category fc + ON f.film_id = fc.film_id + INNER JOIN sakila.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 sakila.actor a +LEFT JOIN sakila.film_actor fa + ON a.actor_id = fa.actor_id +LEFT JOIN sakila.film_category fc + ON fa.film_id = fc.film_id +LEFT JOIN sakila.category c + ON fc.category_id = c.category_id +GROUP BY a.actor_id, a.first_name, a.last_name; +*/ + +-- TO DO PROCEDURES +-- TO DO TRIGGERS + +END TRANSACTION; diff --git a/drivers/sqlite3/testdata/type_test.ddl b/drivers/sqlite3/testdata/type_test.ddl new file mode 100644 index 00000000..b943667f --- /dev/null +++ b/drivers/sqlite3/testdata/type_test.ddl @@ -0,0 +1,22 @@ +CREATE TABLE type_test +( + col_id INTEGER NOT NULL PRIMARY KEY, + col_int INT NOT NULL, + col_int_n INT, + col_double REAL NOT NULL, + col_double_n REAL, + col_boolean BOOLEAN DEFAULT FALSE NOT NULL, + col_boolean_n BOOLEAN, + col_text TEXT NOT NULL, + col_text_n TEXT, + col_blob BLOB NOT NULL, + col_blob_n BLOB, + col_datetime DATETIME DEFAULT '1970-01-01 00:00:00' NOT NULL, + col_datetime_n DATETIME, + col_date DATE DEFAULT '1970-01-01' NOT NULL, + col_date_n DATE, + col_time TIME NOT NULL, + col_time_n TIME, + col_decimal DECIMAL DEFAULT 0 NOT NULL, + col_decimal_n DECIMAL +) \ No newline at end of file diff --git a/drivers/sqlserver/database.go b/drivers/sqlserver/database.go new file mode 100644 index 00000000..c7cc96b4 --- /dev/null +++ b/drivers/sqlserver/database.go @@ -0,0 +1,217 @@ +package sqlserver + +import ( + "context" + "database/sql" + "fmt" + "strconv" + "strings" + + "github.com/c2h5oh/datasize" + "github.com/jmoiron/sqlx" + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// database implements driver.Database. +type database struct { + log lg.Log + drvr *Driver + db *sqlx.DB + src *source.Source +} + +var _ driver.Database = (*database)(nil) + +func (d *database) DB() *sql.DB { + return d.db.DB +} + +func (d *database) SQLDriver() driver.SQLDriver { + return d.drvr +} + +func (d *database) Source() *source.Source { + return d.src +} + +func (d *database) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + srcMeta, err := d.SourceMetadata(ctx) + if err != nil { + return nil, err + } + return source.TableFromSourceMetadata(srcMeta, tblName) +} + +func (d *database) SourceMetadata(context.Context) (*source.Metadata, error) { + const queryNameSize = `SELECT DB_NAME(), total_size_bytes = SUM(size) * 8192 +FROM sys.master_files WITH(NOWAIT) +WHERE database_id = DB_ID() -- for current db +GROUP BY database_id;` + + srcMeta := &source.Metadata{SourceType: Type, DBDriverType: Type} + srcMeta.Handle = d.src.Handle + srcMeta.Location = d.src.Location + db := d.db + + row := db.QueryRow(queryNameSize) + err := row.Scan(&srcMeta.Name, &srcMeta.Size) + if err != nil { + return nil, errz.Err(err) + } + + row = db.QueryRow("SELECT SERVERPROPERTY('ProductVersion'), @@VERSION") + err = row.Scan(&srcMeta.DBVersion, &srcMeta.DBProduct) + if err != nil { + return nil, errz.Err(err) + } + + query := "SELECT TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE'" + + rows, err := db.Query(query) + if err != nil { + return nil, err + } + defer d.log.WarnIfCloseError(rows) + + for rows.Next() { + tblMeta := &source.TableMetadata{} + var tblCatalog, tblSchema, tblName string + + err = rows.Scan(&tblCatalog, &tblSchema, &tblName) + if err != nil { + return nil, errz.Err(err) + } + + srcMeta.Name = tblCatalog + tblMeta.Name = tblName + + err = d.populateTblMetadata(db, tblCatalog, tblSchema, tblName, tblMeta) + if err != nil { + if hasErrCode(err, errCodeObjectNotExist) { + // If the table is dropped while we're collecting metadata, + // for example, we log a warning and continue. + d.log.Warnf("table metadata collection: table %q appears not to exist (continuing regardless): %v", tblMeta.Name, err) + continue + } + return nil, err + } + + srcMeta.Tables = append(srcMeta.Tables, tblMeta) + } + + if rows.Err() != nil { + return nil, errz.Err(rows.Err()) + } + + return srcMeta, nil +} + +func (d *database) Close() error { + d.log.Debugf("Close database: %s", d.src) + + return errz.Err(d.db.Close()) +} + +func (d *database) populateTblMetadata(db *sqlx.DB, tblCatalog, tblSchema, tblName string, tbl *source.TableMetadata) error { + const tplTblUsage = `sp_spaceused '%s'` + + row := db.QueryRow(fmt.Sprintf(tplTblUsage, tblName)) + + var rowCount, reserved, data, indexSize, unused string + + err := row.Scan(&tbl.Name, &rowCount, &reserved, &data, &indexSize, &unused) + if err != nil { + return errz.Err(err) + } + + tbl.RowCount, err = strconv.ParseInt(strings.TrimSpace(rowCount), 10, 64) + if err != nil { + return errz.Err(err) + } + + var byteCount datasize.ByteSize + err = byteCount.UnmarshalText([]byte(reserved)) + if err != nil { + return errz.Err(err) + } + + tbl.Size = int64(byteCount.Bytes()) + + const tplSchemaCol = `SELECT + TABLE_CATALOG, TABLE_SCHEMA, TABLE_NAME, + COLUMN_NAME, ORDINAL_POSITION, COLUMN_DEFAULT, IS_NULLABLE, DATA_TYPE, + CHARACTER_MAXIMUM_LENGTH, CHARACTER_OCTET_LENGTH, + NUMERIC_PRECISION, NUMERIC_PRECISION_RADIX, NUMERIC_SCALE, + DATETIME_PRECISION, + CHARACTER_SET_CATALOG, CHARACTER_SET_SCHEMA, CHARACTER_SET_NAME, + COLLATION_CATALOG, COLLATION_SCHEMA, COLLATION_NAME, + DOMAIN_CATALOG, DOMAIN_SCHEMA, DOMAIN_NAME + FROM INFORMATION_SCHEMA.COLUMNS + WHERE TABLE_CATALOG = '%s' AND TABLE_SCHEMA = '%s' AND TABLE_NAME = '%s'` + + var schemaCols []SchemaColumn + err = db.Select(&schemaCols, fmt.Sprintf(tplSchemaCol, tblCatalog, tblSchema, tblName)) + if err != nil { + return errz.Err(err) + } + + const tplSchemaConstraint = `SELECT kcu.TABLE_CATALOG, kcu.TABLE_SCHEMA, kcu.TABLE_NAME, tc.CONSTRAINT_TYPE, kcu.COLUMN_NAME, kcu.CONSTRAINT_NAME + FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS AS tc + JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS kcu + ON tc.TABLE_NAME = kcu.TABLE_NAME + AND tc.CONSTRAINT_CATALOG = kcu.CONSTRAINT_CATALOG + AND tc.CONSTRAINT_SCHEMA = kcu.CONSTRAINT_SCHEMA + AND tc.CONSTRAINT_NAME = kcu.CONSTRAINT_NAME + WHERE tc.TABLE_CATALOG = '%s' AND tc.TABLE_SCHEMA = '%s' AND tc.TABLE_NAME = '%s' + ORDER BY kcu.TABLE_NAME, tc.CONSTRAINT_TYPE, kcu.CONSTRAINT_NAME` + + var schemaConstraints []SchemaConstraint + err = db.Select(&schemaConstraints, fmt.Sprintf(tplSchemaConstraint, tblCatalog, tblSchema, tblName)) + if err != nil { + return errz.Err(err) + } + + cols := make([]*source.ColMetadata, len(schemaCols)) + for i, sCol := range schemaCols { + cols[i] = &source.ColMetadata{ + Name: sCol.ColumnName, + Position: sCol.OrdinalPosition, + BaseType: sCol.DataType, + Kind: kindFromDBTypeName(d.log, sCol.ColumnName, sCol.DataType), + Nullable: sCol.Nullable.Bool, + DefaultValue: sCol.ColumnDefault.String, + } + + // We want to output something like VARCHAR(255) for ColType + var colLength *int64 + if sCol.CharMaxLength.Valid { + colLength = &sCol.CharMaxLength.Int64 + } else if sCol.NumericPrecision.Valid { + colLength = &sCol.NumericPrecision.Int64 + } else if sCol.DateTimePrecision.Valid { + colLength = &sCol.DateTimePrecision.Int64 + } + + if colLength != nil { + cols[i].ColumnType = fmt.Sprintf("%s(%v)", sCol.DataType, *colLength) + } else { + cols[i].ColumnType = sCol.DataType + } + + for _, scon := range schemaConstraints { + if sCol.ColumnName == scon.ColumnName { + if scon.ConstraintType == "PRIMARY KEY" { + cols[i].PrimaryKey = true + break + } + } + } + } + + tbl.Columns = cols + return nil +} diff --git a/drivers/sqlserver/db_type_test.go b/drivers/sqlserver/db_type_test.go new file mode 100644 index 00000000..2bddd196 --- /dev/null +++ b/drivers/sqlserver/db_type_test.go @@ -0,0 +1,369 @@ +package sqlserver_test + +import ( + "fmt" + "io/ioutil" + "strings" + "testing" + + "github.com/neilotoole/sq/testh/fixt" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +// typeTestTableDDLPath is the location of the SQL CREATE statement +// for the "type_test" table that is used to verify handling of the +// the driver's various data types. +const typeTestTableDDLPath = "testdata/type_test.ddl" + +// typeTestVals is the set of vals inserted to the type_test table (and +// is expected when querying that table). +// +// - Row 0 contains zero values (0, empty string, etc). +// - Row 1 contains non-zero values. +// - Row 2 contains non-zero values and nil values for cols that permit +// nil values (those cols ending with _n such as col_text_n). +var typeTestVals = [][]interface{}{ + { + 1, // col_id + fixt.IntZ, // col_bigint + fixt.IntZ, // col_bigint_n + fixt.BytesZ, // col_binary + fixt.BytesZ, // col_binary_n + fixt.BoolZ, // col_bit + fixt.BoolZ, // col_bit_n + fixt.BoolZ, // col_bool + fixt.BoolZ, // col_bool_n + fixt.TextZ, // col_char + fixt.TextZ, // col_char_n + fixt.DateZ, // col_date + fixt.DateZ, // col_date_n + fixt.DatetimeZ, // col_datetime + fixt.DatetimeZ, // col_datetime_n + fixt.DatetimeZ, // col_datetime2 + fixt.DatetimeZ, // col_datetime2_n + fixt.DecimalZ, // col_decimal + fixt.DecimalZ, // col_decimal_n + fixt.FloatZ, // col_float + fixt.FloatZ, // col_float_n + fixt.IntZ, // col_int + fixt.IntZ, // col_int_n + fixt.DecimalZ, // col_money + fixt.DecimalZ, // col_money_n + fixt.TextZ, // col_nchar + fixt.TextZ, // col_nchar_n + fixt.TextZ, // col_nvarchar + fixt.TextZ, // col_nvarchar_n + fixt.DecimalZ, // col_numeric + fixt.DecimalZ, // col_numeric_n + fixt.FloatZ, // col_real + fixt.FloatZ, // col_real_n + fixt.DatetimeZ, // col_smalldatetime + fixt.DatetimeZ, // col_smalldatetime_n + fixt.IntZ, // col_smallint + fixt.IntZ, // col_smallint_n + fixt.DecimalZ, // col_smallmoney + fixt.DecimalZ, // col_smallmoney_n + fixt.TimeOfDayZ, // col_time + fixt.TimeOfDayZ, // col_time_n + fixt.IntZ, // col_tinyint + fixt.IntZ, // col_tinyint_n + fixt.UUIDZ, // col_uuid + fixt.UUIDZ, // col_uuid_n + fixt.BytesZ, // col_varbinary + fixt.BytesZ, // col_varbinary_n + fixt.TextZ, // col_varchar + fixt.TextZ, // col_varchar_n + }, + { + 2, // col_id + fixt.Int, // col_bigint + fixt.Int, // col_bigint_n + fixt.Bytes, // col_binary + fixt.Bytes, // col_binary_n + fixt.Bool, // col_bit + fixt.Bool, // col_bit_n + fixt.Bool, // col_bool + fixt.Bool, // col_bool_n + fixt.Text, // col_char + fixt.Text, // col_char_n + fixt.Date, // col_date + fixt.Date, // col_date_n + fixt.Datetime, // col_datetime + fixt.Datetime, // col_datetime_n + fixt.Datetime, // col_datetime2 + fixt.Datetime, // col_datetime2_n + fixt.Decimal, // col_decimal + fixt.Decimal, // col_decimal_n + fixt.Float, // col_float + fixt.Float, // col_float_n + fixt.Int, // col_int + fixt.Int, // col_int_n + fixt.Decimal, // col_money + fixt.Decimal, // col_money_n + fixt.Text, // col_nchar + fixt.Text, // col_nchar_n + fixt.Text, // col_nvarchar + fixt.Text, // col_nvarchar_n + fixt.Decimal, // col_numeric + fixt.Decimal, // col_numeric_n + fixt.Float, // col_real + fixt.Float, // col_real_n + fixt.Datetime, // col_smalldatetime + fixt.Datetime, // col_smalldatetime_n + fixt.Int, // col_smallint + fixt.Int, // col_smallint_n + fixt.Decimal, // col_smallmoney + fixt.Decimal, // col_smallmoney_n + fixt.TimeOfDay, // col_time + fixt.TimeOfDay, // col_time_n + fixt.Int, // col_tinyint + fixt.Int, // col_tinyint_n + fixt.UUID, // col_uuid + fixt.UUID, // col_uuid_n + fixt.Bytes, // col_varbinary + fixt.Bytes, // col_varbinary_n + fixt.Text, // col_varchar + fixt.Text, // col_varchar_n + }, + { + 3, // col_id + fixt.Int, // col_bigint + nil, // col_bigint_n + fixt.Bytes, // col_binary + fixtBytesNil, // col_binary_n - NOTE use of fixtBytesNil + fixt.Bool, // col_bit + nil, // col_bit_n + fixt.Bool, // col_bool + nil, // col_bool_n + fixt.Text, // col_char + nil, // col_char_n + fixt.Date, // col_date + nil, // col_date_n + fixt.Datetime, // col_datetime + nil, // col_datetime_n + fixt.Datetime, // col_datetime2 + nil, // col_datetime2_n + fixt.Decimal, // col_decimal + nil, // col_decimal_n + fixt.Float, // col_float + nil, // col_float_n + fixt.Int, // col_int + nil, // col_int_n + fixt.Decimal, // col_money + nil, // col_money_n + fixt.Text, // col_nchar + nil, // col_nchar_n + fixt.Text, // col_nvarchar + nil, // col_nvarchar_n + fixt.Decimal, // col_numeric + nil, // col_numeric_n + fixt.Float, // col_real + nil, // col_real_n + fixt.Datetime, // col_smalldatetime + nil, // col_smalldatetime_n + fixt.Int, // col_smallint + nil, // col_smallint_n + fixt.Decimal, // col_smallmoney + nil, // col_smallmoney_n + fixt.TimeOfDay, // col_time + nil, // col_time_n + fixt.Int, // col_tinyint + nil, // col_tinyint_n + fixt.UUID, // col_uuid + nil, // col_uuid_n + fixt.Bytes, // col_varbinary + fixtBytesNil, // col_varbinary_n - NOTE use of fixtBytesNil + fixt.Text, // col_varchar + nil, // col_varchar_n + }, +} + +// typeTestColNames holds type_test table column names. +var typeTestColNames = []string{ + "col_id", + "col_bigint", + "col_bigint_n", + "col_binary", + "col_binary_n", + "col_bit", + "col_bit_n", + "col_bool", + "col_bool_n", + "col_char", + "col_char_n", + "col_date", + "col_date_n", + "col_datetime", + "col_datetime_n", + "col_datetime2", + "col_datetime2_n", + "col_decimal", + "col_decimal_n", + "col_float", + "col_float_n", + "col_int", + "col_int_n", + "col_money", + "col_money_n", + "col_nchar", + "col_nchar_n", + "col_nvarchar", + "col_nvarchar_n", + "col_numeric", + "col_numeric_n", + "col_real", + "col_real_n", + "col_smalldatetime", + "col_smalldatetime_n", + "col_smallint", + "col_smallint_n", + "col_smallmoney", + "col_smallmoney_n", + "col_time", + "col_time_n", + "col_tinyint", + "col_tinyint_n", + "col_uuid", + "col_uuid_n", + "col_varbinary", + "col_varbinary_n", + "col_varchar", + "col_varchar_n", +} + +// fixtBytesNil is used as the NULL value for insert to BINARY columns +// because of a bug with the mssql driver. +// See: https://github.com/denisenkom/go-mssqldb/issues/196 +var fixtBytesNil []byte + +// createTypeTestTbl creates the type_test table, returning the actual table +// named used. If withData is true, the test data is also loaded. +// It is the caller's responsibility to drop the created table. +func createTypeTestTable(th *testh.Helper, src *source.Source, withData bool) (rowCount int64, actualTblName string) { + const canonicalTblName = "type_test" + t, db := th.T, th.Open(src).DB() + tblDDL, err := ioutil.ReadFile(typeTestTableDDLPath) + require.NoError(t, err) + + // replace the canonical table name + actualTblName = stringz.UniqTableName(canonicalTblName) + createStmt := strings.Replace(string(tblDDL), canonicalTblName, actualTblName, 1) + + _, err = db.ExecContext(th.Context, createStmt) + require.NoError(t, err) + t.Logf("Created table %s.%s", src.Handle, actualTblName) + + if !withData { + return 0, actualTblName + } + + placeholders := th.SQLDriverFor(src).Dialect().Placeholders(len(typeTestColNames)) + const insertTpl = "INSERT INTO %s (%s) VALUES (%s)" + insertStmt := fmt.Sprintf(insertTpl, actualTblName, strings.Join(typeTestColNames, ", "), placeholders) + + for _, insertRowVals := range typeTestVals { + res, err := db.Exec(insertStmt, insertRowVals...) + require.NoError(t, err) + affected, err := res.RowsAffected() + require.NoError(t, err) + require.Equal(t, int64(1), affected) + rowCount += affected + } + + return rowCount, actualTblName +} + +// TestDatabaseTypes checks that our driver is dealing with database +// types correctly. The test constructs a "type_test" table with cols +// for various database types, inserts known data, and checks that +// the returned data matches the inserted data, including verifying +// that NULL is handled correctly. +func TestDatabaseTypes(t *testing.T) { + t.Parallel() + + testCases := []string{sakila.MS17} + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + insertCount, actualTblName := createTypeTestTable(th, src, true) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + sink := &testh.RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + err := libsq.QuerySQL(th.Context, th.Log, th.Open(src), recw, fmt.Sprintf("SELECT * FROM %s", actualTblName)) + require.NoError(t, err) + written, err := recw.Wait() + require.NoError(t, err) + require.Equal(t, insertCount, written) + require.Equal(t, insertCount, int64(len(sink.Recs))) + }) + } +} + +// Test_MSSQLDB_DriverIssue196 illustrates a bug in the go-mssqldb driver. +// When attempting to insert a NULL value into BINARY or VARBINARY columns, +// the go-mssqldb driver treats a Go nil value incorrectly. +// A workaround is to explicitly insert "([]byte)(nil)" instead +// of "nil" which the driver then handles correctly. +// See https://github.com/denisenkom/go-mssqldb/issues/196 +func Test_MSSQLDB_DriverIssue196(t *testing.T) { + t.Parallel() + + // Note that although this test only checks BINARY, the same + // behaviour is expected of VARBINARY. + const ( + canonicalTblName = "type_test_issue_196" + insertTpl = "INSERT INTO %s (col_binary_n) VALUES (%s)" + createStmtTpl = `CREATE TABLE type_test_issue_196 (col_binary_n BINARY(255))` + ) + + actualTblName := stringz.UniqTableName(canonicalTblName) + createStmt := strings.Replace(createStmtTpl, canonicalTblName, actualTblName, 1) + + // Create the demonstration table + th := testh.New(t) + src := th.Source(sakila.MS17) + db := th.Open(src).DB() + _, err := db.ExecContext(th.Context, createStmt) + require.NoError(t, err) + + t.Logf("Created table %s.%s", src.Handle, actualTblName) + + // Drop the newly-created table on cleanup + t.Cleanup(func() { + th.DropTable(src, actualTblName) + }) + + // Build the INSERT statement + placeholders := th.SQLDriverFor(src).Dialect().Placeholders(1) + insertStmt := fmt.Sprintf(insertTpl, actualTblName, placeholders) + + // Insert empty byte slice, should work + _, err = db.ExecContext(th.Context, insertStmt, []byte{}) + require.NoError(t, err, "empty byte slice insert is expected to work with this go-mssqldb driver version") + + // Insert non-empty byte slice, should work + _, err = db.ExecContext(th.Context, insertStmt, []byte("hello")) + require.NoError(t, err, "non-empty byte slice insert is expected to work with this go-mssqldb driver version") + + // Insert ([]byte)(nil), should work + _, err = db.ExecContext(th.Context, insertStmt, []byte(nil)) + require.NoError(t, err, "([]byte)(nil) insert is expected to work with this go-mssqldb driver version") + + // Insert nil, expected to fail with this driver version + _, err = db.ExecContext(th.Context, insertStmt, nil) + require.Error(t, err, "nil insert is, alas, expected to fail with this go-mssqldb driver version") +} diff --git a/drivers/sqlserver/metadata.go b/drivers/sqlserver/metadata.go new file mode 100644 index 00000000..052fc99f --- /dev/null +++ b/drivers/sqlserver/metadata.go @@ -0,0 +1,134 @@ +package sqlserver + +import ( + "database/sql" + "strings" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/sqlz" +) + +// kindFromDBTypeName determines the sqlz.Kind from the database +// type name. For example, "VARCHAR" -> sqlz.KindText. +func kindFromDBTypeName(log lg.Log, colName, dbTypeName string) sqlz.Kind { + var kind sqlz.Kind + dbTypeName = strings.ToUpper(dbTypeName) + + switch dbTypeName { + default: + log.Warnf("Unknown SQLServer database type '%s' for column '%s': using %s", dbTypeName, colName, sqlz.KindUnknown) + kind = sqlz.KindUnknown + case "INT", "BIGINT", "SMALLINT", "TINYINT": + kind = sqlz.KindInt + case "CHAR", "NCHAR", "VARCHAR", "JSON", "NVARCHAR", "NTEXT", "TEXT": + kind = sqlz.KindText + case "BIT": + kind = sqlz.KindBool + case "BINARY", "VARBINARY", "IMAGE": + kind = sqlz.KindBytes + case "DECIMAL", "NUMERIC": + kind = sqlz.KindDecimal + case "MONEY", "SMALLMONEY": + kind = sqlz.KindDecimal + case "DATETIME", "DATETIME2", "SMALLDATETIME", "DATETIMEOFFSET": + kind = sqlz.KindDatetime + case "DATE": + kind = sqlz.KindDate + case "TIME": + kind = sqlz.KindTime + case "FLOAT", "REAL": + kind = sqlz.KindFloat + case "XML": + kind = sqlz.KindText + case "UNIQUEIDENTIFIER": + kind = sqlz.KindText + case "ROWVERSION", "TIMESTAMP": + kind = sqlz.KindInt + } + + return kind +} + +// setScanType does some manipulation of ct's scan type. +// Most importantly, if ct is nullable column, setwe colTypeData.ScanType to a +// nullable type. This is because the driver doesn't +// report nullable scan types. +func setScanType(ct *sqlz.ColumnTypeData, kind sqlz.Kind) { + if kind == sqlz.KindDecimal { + // The driver wants us to use []byte instead of string for DECIMAL, + // but we want to use string. + if ct.Nullable { + ct.ScanType = sqlz.RTypeNullString + } else { + ct.ScanType = sqlz.RTypeString + } + return + } + + if !ct.Nullable { + // If the col type is not nullable, there's nothing + // to do here. + return + } + + switch ct.ScanType { + default: + ct.ScanType = sqlz.RTypeNullString + + case sqlz.RTypeInt64: + ct.ScanType = sqlz.RTypeNullInt64 + + case sqlz.RTypeBool: + ct.ScanType = sqlz.RTypeNullBool + + case sqlz.RTypeFloat64: + ct.ScanType = sqlz.RTypeNullFloat64 + + case sqlz.RTypeString: + ct.ScanType = sqlz.RTypeNullString + + case sqlz.RTypeTime: + ct.ScanType = sqlz.RTypeNullTime + + case sqlz.RTypeBytes: + ct.ScanType = sqlz.RTypeBytes // no change + } +} + +// SchemaConstraint models SQL Server constraints, e.g. "PRIMARY KEY", "FOREIGN KEY", etc. +type SchemaConstraint struct { + TableCatalog string `db:"TABLE_CATALOG"` + TableSchema string `db:"TABLE_SCHEMA"` + TableName string `db:"TABLE_NAME"` + ConstraintType string `db:"CONSTRAINT_TYPE"` + ColumnName string `db:"COLUMN_NAME"` + ConstraintName string `db:"CONSTRAINT_NAME"` +} + +// SchemaColumn models SQL Server's INFORMATION_SCHEMA.COLUMNS table. +type SchemaColumn struct { + TableCatalog string `db:"TABLE_CATALOG"` + TableSchema string `db:"TABLE_SCHEMA"` + TableName string `db:"TABLE_NAME"` + ColumnName string `db:"COLUMN_NAME"` + OrdinalPosition int64 `db:"ORDINAL_POSITION"` + ColumnDefault sql.NullString `db:"COLUMN_DEFAULT"` + Nullable sqlz.NullBool `db:"IS_NULLABLE"` + DataType string `db:"DATA_TYPE"` + CharMaxLength sql.NullInt64 `db:"CHARACTER_MAXIMUM_LENGTH"` + CharOctetLength sql.NullString `db:"CHARACTER_OCTET_LENGTH"` + NumericPrecision sql.NullInt64 `db:"NUMERIC_PRECISION"` + NumericPrecisionRadix sql.NullInt64 `db:"NUMERIC_PRECISION_RADIX"` + NumericScale sql.NullInt64 `db:"NUMERIC_SCALE"` + DateTimePrecision sql.NullInt64 `db:"DATETIME_PRECISION"` + CharSetCatalog sql.NullString `db:"CHARACTER_SET_CATALOG"` + CharSetSchema sql.NullString `db:"CHARACTER_SET_SCHEMA"` + CharSetName sql.NullString `db:"CHARACTER_SET_NAME"` + CollationCatalog sql.NullString `db:"COLLATION_CATALOG"` + CollationSchema sql.NullString `db:"COLLATION_SCHEMA"` + CollationName sql.NullString `db:"COLLATION_NAME"` + DomainCatalog sql.NullString `db:"DOMAIN_CATALOG"` + DomainSchema sql.NullString `db:"DOMAIN_SCHEMA"` + DomainName sql.NullString `db:"DOMAIN_NAME"` +} diff --git a/drivers/sqlserver/sqlbuilder.go b/drivers/sqlserver/sqlbuilder.go new file mode 100644 index 00000000..5d3ee6ca --- /dev/null +++ b/drivers/sqlserver/sqlbuilder.go @@ -0,0 +1,208 @@ +package sqlserver + +import ( + "bytes" + "fmt" + "strconv" + "strings" + + "github.com/neilotoole/sq/libsq/sqlbuilder" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/ast" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" +) + +type fragBuilder struct { + sqlbuilder.BaseFragmentBuilder +} + +func newFragmentBuilder(log lg.Log) *fragBuilder { + r := &fragBuilder{} + r.Log = log + r.Quote = `"` + r.ColQuote = `"` + r.Ops = sqlbuilder.BaseOps() + return r +} + +func (fb *fragBuilder) Range(rr *ast.RowRange) (string, error) { + if rr == nil { + return "", nil + } + + /* + SELECT * FROM tbluser + ORDER BY (SELECT 0) + OFFSET 1 ROWS + FETCH NEXT 2 ROWS ONLY; + */ + + if rr.Limit < 0 && rr.Offset < 0 { + return "", nil + } + + offset := 0 + if rr.Offset > 0 { + offset = rr.Offset + } + + buf := &bytes.Buffer{} + buf.WriteString(fmt.Sprintf("OFFSET %d ROWS", offset)) + + if rr.Limit > -1 { + buf.WriteString(fmt.Sprintf(" FETCH NEXT %d ROWS ONLY", rr.Limit)) + } + + sql := buf.String() + fb.Log.Debugf("returning SQL fragment: %s", sql) + return sql, nil +} + +type queryBuilder struct { + sqlbuilder.BaseQueryBuilder +} + +func (qb *queryBuilder) SQL() (string, error) { + // SQL Server handles range (OFFSET, LIMIT) a little differently. If the query has a range, + // then the ORDER BY clause is required. If ORDER BY is not specified, we use a trick (SELECT 0) + // to satisfy SQL Server. For example: + // + // SELECT * FROM tbluser + // ORDER BY (SELECT 0) + // OFFSET 1 ROWS + // FETCH NEXT 2 ROWS ONLY; + if qb.RangeClause != "" { + if qb.OrderByClause == "" { + qb.OrderByClause = "ORDER BY (SELECT 0)" + } + } + + return qb.BaseQueryBuilder.SQL() +} + +func dbTypeNameFromKind(kind sqlz.Kind) string { + switch kind { + default: + panic(fmt.Sprintf("unsupported datatype %q", kind)) + case sqlz.KindUnknown: + return "NVARCHAR(MAX)" + case sqlz.KindText: + return "NVARCHAR(MAX)" + case sqlz.KindInt: + return "BIGINT" + case sqlz.KindFloat: + return "FLOAT" + case sqlz.KindDecimal: + return "DECIMAL" + case sqlz.KindBool: + return "BIT" + case sqlz.KindDatetime: + return "DATETIME" + case sqlz.KindTime: + return "TIME" + case sqlz.KindDate: + return "DATE" + case sqlz.KindBytes: + return "VARBINARY(MAX)" + } +} + +// createTblKindDefaults is a map of Kind to the value +// to use for a column's DEFAULT clause in a CREATE TABLE statement. +var createTblKindDefaults = map[sqlz.Kind]string{ + sqlz.KindText: `DEFAULT ''`, + sqlz.KindInt: `DEFAULT 0`, + sqlz.KindFloat: `DEFAULT 0`, + sqlz.KindDecimal: `DEFAULT 0`, + sqlz.KindBool: `DEFAULT 0`, + sqlz.KindDatetime: `DEFAULT '1970-01-01T00:00:00'`, + sqlz.KindDate: `DEFAULT '1970-01-01'`, + sqlz.KindTime: `DEFAULT '00:00:00'`, + sqlz.KindBytes: `DEFAULT 0x`, + sqlz.KindUnknown: `DEFAULT ''`, +} + +// buildCreateTableStmt builds a CREATE TABLE statement from tblDef. +// The implementation is minimal: it does not honor PK, FK, etc. +func buildCreateTableStmt(tblDef *sqlmodel.TableDef) string { + sb := strings.Builder{} + sb.WriteString(`CREATE TABLE "`) + sb.WriteString(tblDef.Name) + sb.WriteString("\" (") + + for i, colDef := range tblDef.Cols { + sb.WriteString("\n\"") + sb.WriteString(colDef.Name) + sb.WriteString("\" ") + sb.WriteString(dbTypeNameFromKind(colDef.Kind)) + + if colDef.NotNull { + sb.WriteRune(' ') + sb.WriteString(createTblKindDefaults[colDef.Kind]) + sb.WriteString(" NOT NULL") + } + + if i < len(tblDef.Cols)-1 { + sb.WriteRune(',') + } + } + sb.WriteString("\n)") + + return sb.String() +} + +// buildUpdateStmt builds an UPDATE statement string. +func buildUpdateStmt(tbl string, cols []string, where string) (string, error) { + if len(cols) == 0 { + return "", errz.Errorf("no columns provided") + } + + sb := strings.Builder{} + sb.WriteString(`UPDATE "`) + sb.WriteString(tbl) + sb.WriteString(`" SET "`) + sb.WriteString(strings.Join(cols, `" = ?, "`)) + sb.WriteString(`" = ?`) + if where != "" { + sb.WriteString(" WHERE ") + sb.WriteString(where) + } + + s := replacePlaceholders(sb.String()) + return s, nil +} + +// replacePlaceholders replaces all instances of the question mark +// rune in input with $1, $2, $3 placeholders. +func replacePlaceholders(input string) string { + if input == "" { + return input + } + + var sb strings.Builder + pCount := 1 + var i int + for { + i = strings.IndexRune(input, '?') + if i == -1 { + sb.WriteString(input) + break + } else { + // Found a ? + sb.WriteString(input[0:i]) + sb.WriteString("@p") + sb.WriteString(strconv.Itoa(pCount)) + pCount++ + if i == len(input)-1 { + break + } + input = input[i+1:] + } + } + + return sb.String() +} diff --git a/drivers/sqlserver/sqlserver.go b/drivers/sqlserver/sqlserver.go new file mode 100644 index 00000000..990e74e9 --- /dev/null +++ b/drivers/sqlserver/sqlserver.go @@ -0,0 +1,431 @@ +// Package sqlserver implements the sq driver for SQL Server. +package sqlserver + +import ( + "context" + "database/sql" + "fmt" + "strconv" + "strings" + + mssql "github.com/denisenkom/go-mssqldb" + + "github.com/jmoiron/sqlx" + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlbuilder" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +const ( + // Type is the SQL Server source driver type. + Type = source.Type("sqlserver") + + // dbDrvr is the backing SQL Server driver impl name. + dbDrvr = "sqlserver" +) + +// Provider is the SQL Server implementation of driver.Provider. +type Provider struct { + Log lg.Log +} + +// DriverFor implements driver.Provider. +func (p *Provider) DriverFor(typ source.Type) (driver.Driver, error) { + if typ != Type { + return nil, errz.Errorf("unsupported driver type %q", typ) + } + + return &Driver{log: p.Log}, nil +} + +// Driver is the SQL Server implementation of driver.Driver. +type Driver struct { + log lg.Log +} + +// DriverMetadata implements driver.SQLDriver. +func (d *Driver) DriverMetadata() driver.Metadata { + return driver.Metadata{ + Type: Type, + Description: "Microsoft SQL Server", + Doc: "https://github.com/denisenkom/go-mssqldb", + IsSQL: true, + } +} + +// Dialect implements driver.SQLDriver. +func (d *Driver) Dialect() driver.Dialect { + return driver.Dialect{ + Type: Type, + Placeholders: placeholders, + Quote: '"', + } +} + +func placeholders(n int) string { + if n == 0 { + return "" + } + if n == 1 { + return "@p1" + } + + var sb strings.Builder + for i := 1; i <= n; i++ { + sb.WriteString("@p") + sb.WriteString(strconv.Itoa(i)) + if i < n { + sb.WriteString(", ") + } + } + return sb.String() +} + +// SQLBuilder implements driver.SQLDriver. +func (d *Driver) SQLBuilder() (sqlbuilder.FragmentBuilder, sqlbuilder.QueryBuilder) { + return newFragmentBuilder(d.log), &queryBuilder{} +} + +// Open implements driver.Driver. +func (d *Driver) Open(ctx context.Context, src *source.Source) (driver.Database, error) { + // FIXME: get rid of sqlx + db, err := sqlx.Open(dbDrvr, src.Location) + if err != nil { + return nil, errz.Err(err) + } + + err = db.PingContext(ctx) + if err != nil { + d.log.WarnIfCloseError(db) + return nil, errz.Err(err) + } + + return &database{log: d.log, db: db, src: src, drvr: d}, nil +} + +// ValidateSource implements driver.Driver. +func (d *Driver) ValidateSource(src *source.Source) (*source.Source, error) { + if src.Type != Type { + return nil, errz.Errorf("expected source type %q but got %q", Type, src.Type) + } + return src, nil +} + +// Ping implements driver.Driver. +func (d *Driver) Ping(ctx context.Context, src *source.Source) error { + db, err := sql.Open(dbDrvr, src.Location) + if err != nil { + return errz.Err(err) + } + + defer d.log.WarnIfCloseError(db) + + err = db.PingContext(ctx) + return errz.Err(err) +} + +// Truncate implements driver.Driver. Due to a quirk of SQL Server, the +// operation is implemented in two statements. First "DELETE FROM tbl" to +// delete all rows. Then, if reset is true, the table sequence counter +// is reset via RESEED. +func (d *Driver) Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (affected int64, err error) { + // https://docs.microsoft.com/en-us/sql/t-sql/statements/truncate-table-transact-sql?view=sql-server-ver15 + + // When there are foreign key constraints on mssql tables, + // it's not possible to TRUNCATE the table. An alternative is + // to delete all rows and reseed the identity column. + // + // DELETE FROM "table1"; DBCC CHECKIDENT ('table1', RESEED, 1); + // + // See: https://stackoverflow.com/questions/253849/cannot-truncate-table-because-it-is-being-referenced-by-a-foreign-key-constraint + + db, err := sql.Open(dbDrvr, src.Location) + if err != nil { + return 0, errz.Err(err) + } + defer d.log.WarnIfFuncError(db.Close) + + affected, err = sqlz.ExecResult(ctx, db, fmt.Sprintf("DELETE FROM %q", tbl)) + if err != nil { + return affected, errz.Wrapf(err, "truncate: failed to delete from %q", tbl) + } + + if reset { + _, err = db.ExecContext(ctx, fmt.Sprintf("DBCC CHECKIDENT ('%s', RESEED, 1)", tbl)) + if err != nil { + return affected, errz.Wrapf(err, "truncate: deleted %d rows from %q but RESEED failed", affected, tbl) + } + } + + return affected, nil +} + +// TableColumnTypes implements driver.SQLDriver. +func (d *Driver) TableColumnTypes(ctx context.Context, db sqlz.DB, tblName string, colNames []string) ([]*sql.ColumnType, error) { + // SQLServer has this unusual incantation for its LIMIT equivalent: + // + // SELECT username, email, address_id FROM person + // ORDER BY (SELECT 0) OFFSET 0 ROWS FETCH NEXT 1 ROWS ONLY; + const queryTpl = "SELECT %s FROM %s ORDER BY (SELECT 0) OFFSET 0 ROWS FETCH NEXT 1 ROWS ONLY" + + dialect := d.Dialect() + quote := string(dialect.Quote) + tblNameQuoted := stringz.Surround(tblName, quote) + + var colsClause = "*" + if len(colNames) > 0 { + colNamesQuoted := stringz.SurroundSlice(colNames, quote) + colsClause = strings.Join(colNamesQuoted, driver.Comma) + } + + query := fmt.Sprintf(queryTpl, colsClause, tblNameQuoted) + rows, err := db.QueryContext(ctx, query) + if err != nil { + return nil, errz.Err(err) + } + + colTypes, err := rows.ColumnTypes() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Err() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Close() + if err != nil { + return nil, errz.Err(err) + } + + return colTypes, nil +} + +// RecordMeta implements driver.SQLDriver. +func (d *Driver) RecordMeta(colTypes []*sql.ColumnType) (sqlz.RecordMeta, driver.NewRecordFunc, error) { + recMeta := make([]*sqlz.FieldMeta, len(colTypes)) + for i, colType := range colTypes { + kind := kindFromDBTypeName(d.log, colType.Name(), colType.DatabaseTypeName()) + colTypeData := sqlz.NewColumnTypeData(colType, kind) + setScanType(colTypeData, kind) + recMeta[i] = sqlz.NewFieldMeta(colTypeData) + } + + mungeFn := func(vals []interface{}) (sqlz.Record, error) { + // sqlserver doesn't need to do any special munging, so we + // just use the default munging. + rec, skipped := driver.NewRecordFromScanRow(recMeta, vals, nil) + if len(skipped) > 0 { + return nil, errz.Errorf("expected zero skipped cols but have %d", skipped) + } + return rec, nil + } + + return recMeta, mungeFn, nil +} + +// CreateTable implements driver.SQLDriver. +func (d *Driver) CreateTable(ctx context.Context, db sqlz.DB, tblDef *sqlmodel.TableDef) error { + stmt := buildCreateTableStmt(tblDef) + + _, err := db.ExecContext(ctx, stmt) + return errz.Err(err) +} + +// CopyTable implements driver.SQLDriver. +func (d *Driver) CopyTable(ctx context.Context, db sqlz.DB, fromTable, toTable string, copyData bool) (int64, error) { + var stmt string + + if copyData { + stmt = fmt.Sprintf("SELECT * INTO %q FROM %q", toTable, fromTable) + } else { + stmt = fmt.Sprintf("SELECT TOP(0) * INTO %q FROM %q", toTable, fromTable) + } + + affected, err := sqlz.ExecResult(ctx, db, stmt) + if err != nil { + return 0, errz.Err(err) + } + + return affected, nil +} + +// DropTable implements driver.SQLDriver. +func (d *Driver) DropTable(ctx context.Context, db sqlz.DB, tbl string, ifExists bool) error { + var stmt string + + if ifExists { + stmt = fmt.Sprintf("IF OBJECT_ID('dbo.%s', 'U') IS NOT NULL DROP TABLE dbo.%q", tbl, tbl) + } else { + stmt = fmt.Sprintf("DROP TABLE dbo.%q", tbl) + } + + _, err := db.ExecContext(ctx, stmt) + return errz.Err(err) +} + +// PrepareInsertStmt implements driver.SQLDriver. +func (d *Driver) PrepareInsertStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string) (*driver.StmtExecer, error) { + destColsMeta, err := d.getTableColsMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + stmt, err := driver.PrepareInsertStmt(ctx, d, db, destTbl, destColsMeta.Names()) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + driver.DefaultInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt, db, destTbl), + destColsMeta) + + return execer, nil +} + +// PrepareUpdateStmt implements driver.SQLDriver. +func (d *Driver) PrepareUpdateStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string, where string) (*driver.StmtExecer, error) { + destColsMeta, err := d.getTableColsMeta(ctx, db, destTbl, destColNames) + if err != nil { + return nil, err + } + + query, err := buildUpdateStmt(destTbl, destColNames, where) + if err != nil { + return nil, err + } + + stmt, err := db.PrepareContext(ctx, query) + if err != nil { + return nil, err + } + + execer := driver.NewStmtExecer(stmt, + driver.DefaultInsertMungeFunc(destTbl, destColsMeta), + newStmtExecFunc(stmt, db, destTbl), + destColsMeta) + + return execer, nil +} + +// newStmtExecFunc returns a StmtExecFunc that has logic to deal with +// the "identity insert" error. If the error is encountered, setIdentityInsert +// is called and stmt is executed again. +func newStmtExecFunc(stmt *sql.Stmt, db sqlz.DB, tbl string) driver.StmtExecFunc { + return func(ctx context.Context, args ...interface{}) (int64, error) { + res, err := stmt.ExecContext(ctx, args...) + if err == nil { + var affected int64 + affected, err = res.RowsAffected() + return affected, errz.Err(err) + } + + if !hasErrCode(err, errCodeIdentityInsert) { + return 0, errz.Err(err) + } + + idErr := setIdentityInsert(ctx, db, tbl, true) + if idErr != nil { + return 0, errz.Combine(err, idErr) + } + + res, err = stmt.ExecContext(ctx, args...) + if err != nil { + return 0, errz.Err(err) + } + + affected, err := res.RowsAffected() + return affected, errz.Err(err) + } +} + +// setIdentityInsert enables (or disables) "identity insert" for tbl on db. +// SQLServer is fussy about inserting values to the identity col. This +// error can be returned from the driver: +// +// mssql: Cannot insert explicit value for identity column in table 'payment' when IDENTITY_INSERT is set to OFF +// +// The solution is "SET IDENTITY_INSERT tbl ON". +// +// See: https://docs.microsoft.com/en-us/sql/t-sql/statements/set-identity-insert-transact-sql?view=sql-server-ver15 +func setIdentityInsert(ctx context.Context, db sqlz.DB, tbl string, on bool) error { + var mode = "ON" + if !on { + mode = "OFF" + } + + query := fmt.Sprintf("SET IDENTITY_INSERT %q %s", tbl, mode) + _, err := db.ExecContext(ctx, query) + return errz.Wrapf(err, "failed to SET IDENTITY INSERT %s %s", tbl, mode) +} + +func (d *Driver) getTableColsMeta(ctx context.Context, db sqlz.DB, tblName string, colNames []string) (sqlz.RecordMeta, error) { + // SQLServer has this unusual incantation for its LIMIT equivalent: + // + // SELECT username, email, address_id FROM person + // ORDER BY (SELECT 0) OFFSET 0 ROWS FETCH NEXT 1 ROWS ONLY; + const queryTpl = "SELECT %s FROM %s ORDER BY (SELECT 0) OFFSET 0 ROWS FETCH NEXT 1 ROWS ONLY" + + dialect := d.Dialect() + quote := string(dialect.Quote) + tblNameQuoted := stringz.Surround(tblName, quote) + colNamesQuoted := stringz.SurroundSlice(colNames, quote) + colsJoined := strings.Join(colNamesQuoted, driver.Comma) + + query := fmt.Sprintf(queryTpl, colsJoined, tblNameQuoted) + rows, err := db.QueryContext(ctx, query) + if err != nil { + return nil, errz.Err(err) + } + + colTypes, err := rows.ColumnTypes() + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + if rows.Err() != nil { + return nil, errz.Err(rows.Err()) + } + + destCols, _, err := d.RecordMeta(colTypes) + if err != nil { + d.log.WarnIfFuncError(rows.Close) + return nil, errz.Err(err) + } + + err = rows.Close() + if err != nil { + return nil, errz.Err(err) + } + + return destCols, nil +} + +// mssql error codes +// https://docs.microsoft.com/en-us/sql/relational-databases/errors-events/database-engine-events-and-errors?view=sql-server-ver15 +const ( + errCodeIdentityInsert int32 = 544 + errCodeObjectNotExist int32 = 15009 +) + +// hasErrCode returns true if err (or its cause err) is +// of type mssql.Error and err.Number equals code. +func hasErrCode(err error, code int32) bool { + err = errz.Cause(err) + + if err2, ok := err.(mssql.Error); ok { + return err2.Number == code + } + return false +} diff --git a/drivers/sqlserver/sqlserver_test.go b/drivers/sqlserver/sqlserver_test.go new file mode 100644 index 00000000..a213bbb0 --- /dev/null +++ b/drivers/sqlserver/sqlserver_test.go @@ -0,0 +1,114 @@ +package sqlserver_test + +import ( + "reflect" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestSmoke(t *testing.T) { + t.Parallel() + + for _, handle := range sakila.MSAll { + handle := handle + + t.Run(handle, func(t *testing.T) { + // t.Parallel() + + th, src, _, _ := testh.NewWith(t, handle) + sink, err := th.QuerySQL(src, "SELECT * FROM actor") + require.NoError(t, err) + require.Equal(t, len(sakila.TblActorCols), len(sink.RecMeta)) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } +} + +func TestDriverBehavior(t *testing.T) { + t.Parallel() + + // This test exists to help understand the behavior of the driver impl. + // It can be deleted eventually. + + th := testh.New(t) + src := th.Source(sakila.MS) + db := th.Open(src).DB() + + const query = "SELECT * FROM payment ORDER BY (SELECT 0) OFFSET 0 ROWS FETCH NEXT 1 ROWS ONLY" + + rows, err := db.QueryContext(th.Context, query) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, rows.Close()) }) + + colTypes, err := rows.ColumnTypes() + require.NoError(t, err) + + for i, colType := range colTypes { + nullable, ok := colType.Nullable() + t.Logf("%d: %s %s %s nullable,ok={%v,%v}", i, colType.Name(), colType.DatabaseTypeName(), colType.ScanType().Name(), nullable, ok) + + if !nullable { + scanType := colType.ScanType() + z := reflect.Zero(scanType) + t.Logf("zero: %T %v", z, z) + } + } +} + +func TestDriver_CreateTable_NotNullDefault(t *testing.T) { + t.Parallel() + + testCases := []string{sakila.MS17} + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, src, dbase, drvr := testh.NewWith(t, handle) + + tblName := stringz.UniqTableName(t.Name()) + colNames, colKinds := fixt.ColNamePerKind(drvr.Dialect().IntBool, false, false) + + tblDef := sqlmodel.NewTableDef(tblName, colNames, colKinds) + for _, colDef := range tblDef.Cols { + colDef.NotNull = true + colDef.HasDefault = true + } + + err := drvr.CreateTable(th.Context, dbase.DB(), tblDef) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, tblName) }) + + th.InsertDefaultRow(src, tblName) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+tblName) + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) + require.Equal(t, len(colNames), len(sink.RecMeta)) + for i := range colNames { + require.NotNil(t, sink.Recs[0][i]) + nullable, ok := sink.RecMeta[i].Nullable() + require.True(t, ok) + require.False(t, nullable) + } + + // Check KindBytes is handled correctly + const iBytes = 8 // the index of col_bytes + require.Equal(t, sqlz.KindBytes, colKinds[iBytes]) + b, ok := sink.Recs[0][iBytes].(*[]byte) + require.True(t, ok) + require.NotNil(t, b) + require.Equal(t, 0, len(*b), "b should be non-nil but zero length") + }) + } +} diff --git a/drivers/sqlserver/testdata/type_test.ddl b/drivers/sqlserver/testdata/type_test.ddl new file mode 100644 index 00000000..0c361ce6 --- /dev/null +++ b/drivers/sqlserver/testdata/type_test.ddl @@ -0,0 +1,52 @@ +create table type_test +( + col_id int primary key, + col_bigint bigint default 0 not null, + col_bigint_n bigint, + col_binary binary(255) default 0 not null, + col_binary_n binary(255), + col_bit bit default 0 not null, + col_bit_n bit, + col_bool bit default 0 not null, + col_bool_n bit, + col_char char(255) default '' not null, + col_char_n char(255), + col_date date default '1989-11-09' not null, + col_date_n date, + col_datetime datetime default '1989-11-09T00:00:00' not null, + col_datetime_n datetime, + col_datetime2 datetime2 default '1989-11-09T00:00:00' not null, + col_datetime2_n datetime2, + col_decimal decimal default 0 not null, + col_decimal_n decimal, + col_float float default 0 not null, + col_float_n float, + col_int int default 0 not null, + col_int_n int, + col_money money default 0 not null, + col_money_n money, + col_nchar nchar(255) default '' not null, + col_nchar_n nchar(255), + col_nvarchar nvarchar(255) default '' not null, + col_nvarchar_n nvarchar(255), + col_numeric numeric default 0 not null, + col_numeric_n numeric, + col_real real default 0 not null, + col_real_n real, + col_smalldatetime smalldatetime default '1989-11-09 00:00' not null, + col_smalldatetime_n smalldatetime, + col_smallint smallint default 0 not null, + col_smallint_n smallint, + col_smallmoney smallmoney default 0 not null, + col_smallmoney_n smallmoney, + col_time time default '00:00:00' not null, + col_time_n time, + col_tinyint tinyint default '0' not null, + col_tinyint_n tinyint, + col_uuid uniqueidentifier default NEWID() not null, + col_uuid_n uniqueidentifier, + col_varbinary varbinary(255) default 0 not null, + col_varbinary_n varbinary(255), + col_varchar varchar(255) default '' not null, + col_varchar_n varchar(255) +) \ No newline at end of file diff --git a/drivers/userdriver/def.go b/drivers/userdriver/def.go new file mode 100644 index 00000000..d67ddb0f --- /dev/null +++ b/drivers/userdriver/def.go @@ -0,0 +1,361 @@ +package userdriver + +import ( + "fmt" + "strings" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// DriverDef is a user-defined driver definition. +type DriverDef struct { + // Name is short name of the driver type, e.g. "rss". + Name string `yaml:"driver" json:"driver"` + + // Genre is the generic document type, e.g. XML or JSON etc. + Genre string `yaml:"genre" json:"genre"` + + // Title is the full name of the driver + // type, e.g. "RSS (Really Simple Syndication)". + Title string `yaml:"title" json:"title"` + + // Doc typically has a link to documentation for the driver.. + Doc string `yaml:"doc,omitempty" json:"doc,omitempty"` + + // Selector is the root doc element, e.g. "/rss" + Selector string `yaml:"selector" json:"selector"` + + // Tables is the set of tables that define the type. + Tables []*TableMapping `yaml:"tables" json:"tables"` +} + +// TableBySelector returns the TableMapping that matches sel, or nil. +func (d *DriverDef) TableBySelector(sel string) *TableMapping { + for _, t := range d.Tables { + if t.Selector == sel { + return t + } + } + return nil +} + +func (d *DriverDef) String() string { + return stringz.SprintJSON(d) +} + +// TableMapping describes how document data is mapped to a table. +type TableMapping struct { + // Name is the table name. + Name string `yaml:"table" json:"table"` + + // Selector specifies how the table data is selected. + Selector string `yaml:"selector" json:"selector"` + + // Cols is the set of columns in the table. + Cols []*ColMapping `yaml:"cols" json:"cols"` + + // PrimaryKey is a slice of the column names that constitute + // the primary key. Typically this is one column, but can be + // more than one for composite primary keys. + PrimaryKey []string `yaml:"primary_key" json:"primary_key"` + + // Comment is an optional table comment. + Comment string `yaml:"comment,omitempty" json:"comment,omitempty"` +} + +func (t *TableMapping) String() string { + return stringz.SprintJSON(t) +} + +// ColBySelector returns the ColMapping associated with the element, or nil if no such col. +func (t *TableMapping) ColBySelector(sel string) *ColMapping { + if sel == "" { + return nil + } + + for _, col := range t.Cols { + if sel == t.absColSelector(col) { + return col + } + } + + for _, col := range t.Cols { + if sel == t.Selector+"/"+col.Name { + return col + } + } + return nil +} + +// absColSelector returns an absolute (fully-qualified) selector for the provided ColMapping. For +// example, if ColMapping.Selector is "./item", the return value might be "/rss/channel/item". +func (t *TableMapping) absColSelector(col *ColMapping) string { + if col.Selector == "" { + return "" + } + + if col.Selector[0] == '/' { + return col.Selector + } + + if strings.HasPrefix(col.Selector, "./") { + return t.Selector + col.Selector[1:] + } + + return t.Selector + "/" + col.Selector +} + +// PKCols returns the cols that constitute this table's primary key, +// or an error if none defined. If error is non-nil, the returned +// slice will contain at least one ColMapping. +func (t *TableMapping) PKCols() ([]*ColMapping, error) { + var cols []*ColMapping + + for i := range t.Cols { + for j := range t.PrimaryKey { + if t.Cols[i].Name == t.PrimaryKey[j] { + cols = append(cols, t.Cols[i]) + break + } + } + } + + if len(cols) == 0 { + return nil, errz.Errorf("no primary key column(s) defined for table %q", t.Name) + } + + return cols, nil +} + +// SequenceCols returns the cols whose selector value is "../sequence()". +// In effect, this method returns the columns for whom a sequence value +// should be set during a db insert, similar to a db auto-increment column. +func (t *TableMapping) SequenceCols() []*ColMapping { + var cols []*ColMapping + + for i := range t.Cols { + if t.Cols[i].Selector == "../sequence()" { + cols = append(cols, t.Cols[i]) + } + } + + return cols +} + +// RequiredCols returns the cols that are required. This includes columns +// with explicit ColMapping.Required field as well as other columns such +// as those part of the primary key or sequence cols. +func (t *TableMapping) RequiredCols() []*ColMapping { + var cols []*ColMapping + + pkCols, _ := t.PKCols() + seqCols := t.SequenceCols() + + for _, col := range t.Cols { + col := col + + switch { + case col.Required, colIndex(pkCols, col) >= 0, colIndex(seqCols, col) >= 0: + cols = append(cols, col) + default: + } + } + + return cols +} + +// ColMapping models a database table column. +type ColMapping struct { + // Name is the column name. + Name string `yaml:"col" json:"col"` + + // Selector is an optional selector for the col value, e.g. "./guid/@isPermaLink" for an attribute of an XML element. + Selector string `yaml:"selector,omitempty" json:"selector,omitempty"` + + // Kind is the data kind, e.g. "int", "text. + Kind sqlz.Kind `yaml:"kind" json:"kind"` + + // Format is an optional type format for text values, e.g. "RFC3339" for a string. + Format string `yaml:"format,omitempty" json:"format,omitempty"` + + // Charset is an optional charset for text values, e.g. "utf-8". + Charset string `yaml:"charset,omitempty" json:"charset,omitempty"` + + // Foreign indicates that this column is a foreign key into a parent tbl. + Foreign string `yaml:"foreign,omitempty" json:"foreign,omitempty"` + + // Unique is true if the column value is unique. + Unique bool `yaml:"unique,omitempty" json:"unique,omitempty"` + + // Required is true if the column is required. + Required bool `yaml:"required" json:"required"` + + // Comment is an optional column comment. + Comment string `yaml:"comment,omitempty" json:"comment,omitempty"` +} + +func (c *ColMapping) String() string { + return stringz.SprintJSON(c) +} + +// ValidateDriverDef checks that def is valid, returning one or +// more errors if not. +func ValidateDriverDef(def *DriverDef) []error { + drvrName, errs := validateDefRoot(def) + if len(errs) > 0 { + return errs + } + + for i, tbl := range def.Tables { + tblName := fmt.Sprintf("%s.table[%d]", drvrName, i) + if tbl.Name == "" { + errs = append(errs, errz.Errorf("%s name is empty", tblName)) + } else { + tblName = fmt.Sprintf("%s.table[%s]", drvrName, tbl.Name) + } + + if tbl.Selector == "" { + errs = append(errs, errz.Errorf("%s selector is empty", tblName)) + } + if len(tbl.Cols) == 0 { + errs = append(errs, errz.Errorf("%s cols is empty", tblName)) + continue + } + + if len(tbl.PrimaryKey) == 0 { + errs = append(errs, errz.Errorf("%s primary key must list at least one column", tblName)) + } else { + for j, pkColName := range tbl.PrimaryKey { + if pkColName == "" { + errs = append(errs, errz.Errorf("%s primary key %d has empty name", tblName, j)) + continue + } + + // verify that the pk col exists in the cols + var foundIt bool + for k := range tbl.Cols { + if pkColName == tbl.Cols[k].Name { + foundIt = true + break + } + } + if !foundIt { + errs = append(errs, errz.Errorf("%s specified primary key %q not found in cols", tblName, pkColName)) + } + } + } + + for j, col := range tbl.Cols { + colName := fmt.Sprintf("%s.col[%d]", tblName, j) + if col.Name == "" { + errs = append(errs, errz.Errorf("%s name is empty", colName)) + } else { + colName = fmt.Sprintf("%s.col[%s]", tblName, col.Name) + } + + // These kinds are nonsensical + switch col.Kind { + default: + case sqlz.KindUnknown, sqlz.KindNull: + errs = append(errs, errz.Errorf("%s.kind (%s) is invalid", colName, col.Kind)) + } + } + } + + return errs +} + +func validateDefRoot(def *DriverDef) (drvrName string, errs []error) { + if def == nil { + // shouldn't happen + errs = append(errs, errz.New("def is nil")) + return "", errs + } + + if def.Name == "" { + errs = append(errs, errz.New("driver name is empty")) + return "", errs + } + + drvrName = fmt.Sprintf("driver[%s]", def.Name) + if def.Genre == "" { + errs = append(errs, errz.Errorf("%s.genre is empty", drvrName)) + } + if def.Selector == "" { + errs = append(errs, errz.Errorf("%s.selector is empty", drvrName)) + } + if def.Title == "" { + errs = append(errs, errz.Errorf("%s.title is empty", drvrName)) + } + if len(def.Tables) == 0 { + errs = append(errs, errz.Errorf("%s.tables is empty", drvrName)) + } + + return drvrName, errs +} + +// ToTableDef builds a TableDef from the TableMapping. +func ToTableDef(tblMapping *TableMapping) (*sqlmodel.TableDef, error) { + tblDef := &sqlmodel.TableDef{Name: tblMapping.Name} + colDefs := make([]*sqlmodel.ColDef, len(tblMapping.Cols)) + + pkCols, err := tblMapping.PKCols() + if err != nil { + return nil, err + } + + tblDef.PKColName = pkCols[0].Name + + for i, colMapping := range tblMapping.Cols { + colDef := &sqlmodel.ColDef{Table: tblDef, Name: colMapping.Name, Kind: colMapping.Kind} + colDefs[i] = colDef + } + + tblDef.Cols = colDefs + return tblDef, nil +} + +// NamesFromCols is a convenience function that returns a slice +// containing the name of each column. +func NamesFromCols(cols []*ColMapping) []string { + if cols == nil { + return nil + } + + names := make([]string, len(cols)) + for i := range cols { + names[i] = cols[i].Name + } + + return names +} + +// colIndex returns the index of needle in haystack, or -1. +func colIndex(haystack []*ColMapping, needle *ColMapping) int { + for i := range haystack { + if haystack[i] == needle { + return i + } + } + + return -1 +} + +// Detector defines a document type detector. +type Detector struct { + // Type is the detector type, e.g. "suffix", "header", "scheme", etc. + Type string `yaml:"type" json:"type"` + // Key is the expected match for the detector's key field. E.g. "Content-Type". May be empty. + Key string `yaml:"key,omitempty" json:"key,omitempty"` + // Value is the expected match for the detector's value field. E.g. "application/rss+xml" + Value string `yaml:"value" json:"value"` + // Example is an example value that would match the detector, e.g. "Content-Type: application/rss+xml" + Example string `yaml:"example,omitempty" json:"example,omitempty"` +} + +func (d *Detector) String() string { + return stringz.SprintJSON(d) +} diff --git a/drivers/userdriver/userdriver.go b/drivers/userdriver/userdriver.go new file mode 100644 index 00000000..14ef64a2 --- /dev/null +++ b/drivers/userdriver/userdriver.go @@ -0,0 +1,189 @@ +// Package userdriver implements the "user-driver" functionality +// that allows users to define source driver types declaratively. +// Note pkg userdriver itself is the framework: an actual +// implementation for each genre (such as XML) must be defined +// separately as in the "xmlud" sub-package. +package userdriver + +import ( + "context" + "database/sql" + "io" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// ImportFunc is a function that can import +// data (as defined in def) to destDB. +type ImportFunc func(ctx context.Context, log lg.Log, def *DriverDef, data io.Reader, destDB driver.Database) error + +// Provider implements driver.Provider for a DriverDef. +type Provider struct { + Log lg.Log + DriverDef *DriverDef + Scratcher driver.ScratchDatabaseOpener + Files *source.Files + ImportFn ImportFunc +} + +// DriverFor implements driver.Provider. +func (p *Provider) DriverFor(typ source.Type) (driver.Driver, error) { + if typ != source.Type(p.DriverDef.Name) { + return nil, errz.Errorf("unsupported driver type %q", typ) + } + + return &drvr{ + log: p.Log, + typ: typ, + def: p.DriverDef, + scratcher: p.Scratcher, + importFn: p.ImportFn, + files: p.Files, + }, nil +} + +// TypeDetectors returns funcs that can detect the source type. +func (p *Provider) TypeDetectors() []source.TypeDetectorFunc { + // TODO: it should be possible to return type detectors that + // can detect based upon the DriverDef. So, as of right + // now these detectors do nothing. + return []source.TypeDetectorFunc{} +} + +// Driver implements driver.Driver. +type drvr struct { + log lg.Log + typ source.Type + def *DriverDef + files *source.Files + scratcher driver.ScratchDatabaseOpener + importFn ImportFunc +} + +// DriverMetadata implements driver.Driver. +func (d *drvr) DriverMetadata() driver.Metadata { + return driver.Metadata{ + Type: source.Type(d.def.Name), + Description: d.def.Title, + Doc: d.def.Doc, + UserDefined: true, + } +} + +// Open implements driver.Driver. +func (d *drvr) Open(ctx context.Context, src *source.Source) (driver.Database, error) { + clnup := cleanup.New() + + r, err := d.files.NewReader(ctx, src) + if err != nil { + return nil, err + } + + defer d.log.WarnIfCloseError(r) + + scratchDB, err := d.scratcher.OpenScratch(ctx, src.Handle) + if err != nil { + return nil, err + } + clnup.AddE(scratchDB.Close) + + err = d.importFn(ctx, d.log, d.def, r, scratchDB) + if err != nil { + d.log.WarnIfFuncError(clnup.Run) + return nil, errz.Wrap(err, d.def.Name) + } + + return &database{log: d.log, src: src, impl: scratchDB, clnup: clnup}, nil +} + +// Truncate implements driver.Driver. +func (d *drvr) Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (int64, error) { + return 0, errz.Errorf("truncate not supported for %s", d.DriverMetadata().Type) +} + +// ValidateSource implements driver.Driver. +func (d *drvr) ValidateSource(src *source.Source) (*source.Source, error) { + d.log.Debugf("validating source: %q", src.RedactedLocation()) + if string(src.Type) != d.def.Name { + return nil, errz.Errorf("expected source type %q but got %q", d.def.Name, src.Type) + } + return src, nil +} + +// Ping implements driver.Driver. +func (d *drvr) Ping(ctx context.Context, src *source.Source) error { + d.log.Debugf("driver %q attempting to ping %q", d.typ, src) + + r, err := d.files.NewReader(ctx, src) + if err != nil { + return err + } + + // TODO: possibly do something more useful than just + // getting the reader? + + return r.Close() +} + +// database implements driver.Database. +type database struct { + log lg.Log + src *source.Source + impl driver.Database + + // clnup will ultimately invoke impl.Close to dispose of + // the scratch DB. + clnup *cleanup.Cleanup +} + +// DB implements driver.Database. +func (d *database) DB() *sql.DB { + return d.impl.DB() +} + +// SQLDriver implements driver.Database. +func (d *database) SQLDriver() driver.SQLDriver { + return d.impl.SQLDriver() +} + +// Source implements driver.Database. +func (d *database) Source() *source.Source { + return d.src +} + +// TableMetadata implements driver.Database. +func (d *database) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + return d.impl.TableMetadata(ctx, tblName) +} + +// SourceMetadata implements driver.Database. +func (d *database) SourceMetadata(ctx context.Context) (*source.Metadata, error) { + meta, err := d.impl.SourceMetadata(ctx) + if err != nil { + return nil, err + } + + meta.Handle = d.src.Handle + meta.Location = d.src.Location + meta.Name, err = source.LocationFileName(d.src) + if err != nil { + return nil, err + } + + meta.FQName = meta.Name + return meta, nil +} + +// Close implements driver.Database. +func (d *database) Close() error { + d.log.Debugf("Close database: %s", d.src) + + // We don't need to explicitly invoke c.impl.Close + // because that's already been added to c.cleanup. + return d.clnup.Run() +} diff --git a/drivers/userdriver/userdriver_test.go b/drivers/userdriver/userdriver_test.go new file mode 100644 index 00000000..3a64659f --- /dev/null +++ b/drivers/userdriver/userdriver_test.go @@ -0,0 +1,180 @@ +package userdriver_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "gopkg.in/yaml.v2" + + "github.com/neilotoole/sq/cli/config" + "github.com/neilotoole/sq/drivers/userdriver" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/testsrc" +) + +func TestDriver(t *testing.T) { + t.Parallel() + + testCases := []struct { + handle string + tbl string + wantRecs int + }{ + {handle: testsrc.PplUD, tbl: "person", wantRecs: 3}, + {handle: testsrc.RSSNYTLocalUD, tbl: "item", wantRecs: 45}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(tc.handle) + + drvr := th.DriverFor(src) + err := drvr.Ping(th.Context, src) + require.NoError(t, err) + + dbase, err := drvr.Open(th.Context, src) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, dbase.Close()) }) + + srcMeta, err := dbase.SourceMetadata(th.Context) + require.NoError(t, err) + require.True(t, stringz.InSlice(srcMeta.TableNames(), tc.tbl)) + + tblMeta, err := dbase.TableMetadata(th.Context, tc.tbl) + require.NoError(t, err) + require.Equal(t, tc.tbl, tblMeta.Name) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+tc.tbl) + require.NoError(t, err) + require.Equal(t, tc.wantRecs, len(sink.Recs)) + }) + } +} + +func TestValidateDriverDef_KnownGood(t *testing.T) { + t.Parallel() + + testCases := []string{testsrc.PathDriverDefPpl, testsrc.PathDriverDefRSS} + + for _, defFile := range testCases { + defFile := defFile + + t.Run(defFile, func(t *testing.T) { + t.Parallel() + + defs := testh.DriverDefsFrom(t, defFile) + for _, def := range defs { + errs := userdriver.ValidateDriverDef(def) + require.Empty(t, errs) + } + }) + } +} + +func TestValidateDriverDef(t *testing.T) { + t.Parallel() + + testCases := []struct { + title string + yml string + wantErrs int + }{ + { + title: "driver name is missing, should return with 1 error", + yml: `user_drivers: +- driver: + genre: xml + title: People + selector: /people`, + wantErrs: 1, + }, + { + title: "missing genre, title, selector and tables", + yml: `user_drivers: +- driver: ppl + genre: + title: + selector: + tables:`, + wantErrs: 4, + }, + { + title: "table name, selector and cols are empty", + yml: `user_drivers: +- driver: ppl + genre: xml + title: People + selector: /people + tables: + - table: + selector: + cols:`, + wantErrs: 3, + }, + { + title: "table selector is empty, col name is empty", + yml: `user_drivers: +- driver: ppl + genre: xml + title: People + selector: /people + tables: + - table: person + selector: + primary_key: + - first_name + cols: + - col: + kind: int + - col: first_name + selector: ./firstName + kind: text`, + wantErrs: 2, + }, + { + title: "primary key is invalid", + yml: `user_drivers: +- driver: ppl + genre: xml + title: People + selector: /people + tables: + - table: person + selector: /people/person + primary_key: + - not_a_col_name + cols: + - col: person_id + kind: int`, + wantErrs: 1, + }, + } + + for _, tc := range testCases { + tc := tc + + t.Run(tc.title, func(t *testing.T) { + t.Parallel() + + defs := defsFromString(t, tc.yml) + require.Equal(t, 1, len(defs)) + def := defs[0] + errs := userdriver.ValidateDriverDef(def) + require.Equal(t, tc.wantErrs, len(errs), + "wanted %d errs but got %d: %v", tc.wantErrs, len(errs), errs) + }) + } +} + +func defsFromString(t *testing.T, yml string) []*userdriver.DriverDef { + ext := &config.Ext{} + require.NoError(t, yaml.Unmarshal([]byte(yml), ext)) + return ext.UserDrivers +} diff --git a/drivers/userdriver/xmlud/stack.go b/drivers/userdriver/xmlud/stack.go new file mode 100644 index 00000000..52e171d3 --- /dev/null +++ b/drivers/userdriver/xmlud/stack.go @@ -0,0 +1,143 @@ +package xmlud + +import ( + "strings" + + "github.com/emirpasic/gods/stacks/arraystack" + + "github.com/neilotoole/sq/drivers/userdriver" +) + +// rowState is a working struct for holding the state of a DB row as the XML doc is processed. +type rowState struct { + tbl *userdriver.TableMapping + + dirtyColVals map[string]interface{} + savedColVals map[string]interface{} + curCol *userdriver.ColMapping +} + +// created returns true if this rowState has already been persisted (at least partially) +// to the database. +func (r *rowState) created() bool { + return len(r.savedColVals) > 0 +} + +// dirty returns true if values have been dirtied since +// the last save to the database, or if the rowState has never been saved. +func (r *rowState) dirty() bool { + return len(r.savedColVals) == 0 || len(r.dirtyColVals) > 0 +} + +// markDirtyAsSaved marks all of the dirty cols as having been already saved +// to the db. +func (r *rowState) markDirtyAsSaved() { + for k, v := range r.dirtyColVals { + r.savedColVals[k] = v + delete(r.dirtyColVals, k) + } +} + +func newRowStack() *rowStack { + return &rowStack{stack: arraystack.New()} +} + +// rowStack is a trivial stack impl for tracking rowState instances +// as the XML doc is processed. +type rowStack struct { + stack *arraystack.Stack +} + +func (r *rowStack) size() int { + return r.stack.Size() +} + +func (r *rowStack) push(ro *rowState) { + r.stack.Push(ro) +} + +func (r *rowStack) pop() *rowState { + ro, ok := r.stack.Pop() + if !ok { + return nil + } + return ro.(*rowState) +} + +func (r *rowStack) peek() *rowState { + ro, ok := r.stack.Peek() + if !ok { + return nil + } + return ro.(*rowState) +} + +func (r *rowStack) peekN(n int) *rowState { + if n == 0 { + return r.peek() + } + + it := r.stack.Iterator() + + for i := 0; i <= n; i++ { + ok := it.Next() + if !ok { + return nil + } + } + + val := it.Value() + + if val == nil { + return nil + } + + return val.(*rowState) +} + +func newSelStack() *selStack { + return &selStack{stack: arraystack.New()} +} + +// selStack is a simple stack impl for tracking the element selector +// value as the XML doc is processed. +type selStack struct { + stack *arraystack.Stack +} + +func (s *selStack) push(sel string) { + s.stack.Push(sel) +} + +func (s *selStack) pop() string { + val, ok := s.stack.Pop() + if !ok { + return "" + } + return val.(string) +} + +func (s *selStack) peek() string { + val, ok := s.stack.Peek() + if !ok { + return "" + } + return val.(string) +} + +// selector returns the current full selector path. +func (s *selStack) selector() string { + // this is a really ugly way of doing this, must revisit + strs := make([]string, s.stack.Size()) + it := s.stack.Iterator() + + i := s.stack.Size() - 1 + + for it.Next() { + val := it.Value() + strs[i] = val.(string) + i-- + } + + return "/" + strings.Join(strs, "/") +} diff --git a/drivers/userdriver/xmlud/testdata/basic.rss.xml b/drivers/userdriver/xmlud/testdata/basic.rss.xml new file mode 100644 index 00000000..fe36cc52 --- /dev/null +++ b/drivers/userdriver/xmlud/testdata/basic.rss.xml @@ -0,0 +1,40 @@ + + + + Channel One + Description of Channel One + http://www.example.com/main.html + Mon, 06 Sep 2010 00:01:00 +0000 + Sun, 06 Sep 2009 16:20:00 +0000 + 1800 + + + Channel Two + This is an example of an RSS feed + http://www.example.com/main.html + Mon, 06 Sep 2010 00:01:00 +0000 + Sun, 06 Sep 2010 16:20:00 +0000 + + + Example entry + Here is some text containing an interesting description. + http://www.example.com/blog/post/1 + 7bd204c6-1655-4c27-aeee-53f933c5395f + Sun, 06 Sep 2009 16:20:00 +0000 + + + Another entry + Yet more description. + http://www.example.com/blog/post/2 + 8ad204aa-1655-4c27-aeee-53f933aaaaa + Sun, 07 Sep 20011 16:20:00 +0000 + Extradition + Drug Abuse and Traffic + Guzman Loera, Joaquin + Ciudad Juarez (Mexico) + United States + New York City + + 1800 + + \ No newline at end of file diff --git a/drivers/userdriver/xmlud/testdata/nytimes_local.rss.xml b/drivers/userdriver/xmlud/testdata/nytimes_local.rss.xml new file mode 100644 index 00000000..0305b598 --- /dev/null +++ b/drivers/userdriver/xmlud/testdata/nytimes_local.rss.xml @@ -0,0 +1,787 @@ + + + + NYT > World + http://www.nytimes.com/pages/world/index.html?partner=rss&emc=rss + + + en-us + Copyright 2017 The New York Times Company + Fri, 20 Jan 2017 03:52:55 GMT + + NYT > World + https://static01.nyt.com/images/misc/NYT_logo_rss_250x40.png + http://www.nytimes.com/pages/world/index.html?partner=rss&emc=rss + + + El Chapo, Mexican Drug Kingpin, Is Extradited to U.S. + http://www.nytimes.com/2017/01/19/world/el-chapo-extradited-mexico.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/el-chapo-extradited-mexico.html + + + Joaquín Guzmán Loera, known as El Chapo, after his recapture last year in the city of Los Mochis, Sinaloa, Mexico. + José Méndez/European Pressphoto Agency + In an about-face for the Mexican government, Joaquín Guzmán Loera, known as El Chapo, was turned over to American officials on Thursday night. + AZAM AHMED + Fri, 20 Jan 2017 02:30:34 GMT + Extradition + Drug Abuse and Traffic + Guzman Loera, Joaquin + Ciudad Juarez (Mexico) + United States + New York City + + + Riot Police Try to Quell Continuing Violence in Brazilian Prison + http://www.nytimes.com/2017/01/19/world/americas/brazil-prison-riots-alcauz-rio-grande-do-norte.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/americas/brazil-prison-riots-alcauz-rio-grande-do-norte.html + + Specially equipped police officers entered a prison near the city of Natal as rival gangs battled each other with metal bars and wooden clubs in scenes reminiscent of medieval warfare. + DOM PHILLIPS + Fri, 20 Jan 2017 02:06:17 GMT + Natal (Brazil) + Prisons and Prisoners + Demonstrations, Protests and Riots + Organized Crime + First Capital Command (PCC) + Family of the North (FDN) + Temer, Michel (1940- ) + + + Gambia’s New President Is Sworn In as Troops Enter the Country + http://www.nytimes.com/2017/01/19/world/africa/gambia-adama-barrow-yahya-jammeh.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/africa/gambia-adama-barrow-yahya-jammeh.html + + + Adama Barrow, the newly elected president of Gambia, after being sworn in on Thursday in a ceremony at an embassy in neighboring Senegal. + Sergey Ponomarev for The New York Times + Yahya Jammeh, Gambia’s leader for 22 years, is refusing to make way for the newly elected president, Adama Barrow, who has yet to enter his own country as president. + DIONNE SEARCEY and JAIME YAYA BARRY + Thu, 19 Jan 2017 19:55:44 GMT + Gambia + Barrow, Adama (1965- ) + Jammeh, Yahya + Elections + + + Julian Assange Repeats Offer of Extradition to U.S. + http://www.nytimes.com/2017/01/19/world/europe/julian-assange-wikileaks-offers-extradition-to-us.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/europe/julian-assange-wikileaks-offers-extradition-to-us.html + + + Julian Assange on the balcony of the Ecuadorean embassy in London last year. + Peter Nicholls/Reuters + The founder of WikiLeaks said on Thursday he said he would go if his rights were “protected,” though he is not under public indictment by the United States. + STEVEN ERLANGER + Thu, 19 Jan 2017 20:16:34 GMT + Classified Information and State Secrets + Extradition + Federal Bureau of Investigation + Justice Department + WikiLeaks + Assange, Julian P + Manning, Chelsea + Great Britain + Sweden + + + Martin McGuinness, an I.R.A Leader Who Later Embraced Ulster Politics, Says He’ll Retire + http://www.nytimes.com/2017/01/19/world/europe/martin-mcguinness-northern-ireland.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/europe/martin-mcguinness-northern-ireland.html + + Mr. McGuinness, who resigned as deputy first minister of Northern Ireland earlier this month after an internal political dispute, announced his retirement on health grounds. + STEPHEN CASTLE + Fri, 20 Jan 2017 02:34:27 GMT + Retirement + McGuinness, Martin + Ireland + Northern Ireland + + + In India, Tension Over Traditions Perilous to Animals and Humans Alike + http://www.nytimes.com/2017/01/19/world/asia/india-bull-wrestling-protests.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/asia/india-bull-wrestling-protests.html + + + Indians in Chennai protested a ban on a bull wrestling festival in Chennai on Thursday, paralyzing the streets. + Reuters + Thousands of Indians are protesting a ban on a bull-wrestling tradition in Tamil Nadu, but it isn’t the only cultural tradition coming under scrutiny. + NIDA NAJAR + Fri, 20 Jan 2017 03:06:20 GMT + India + Demonstrations, Protests and Riots + Hinduism + Animal Abuse, Rights and Welfare + Cattle + Tamil Nadu (India) + Fasting + + + Was Ending the Search for Malaysia Airlines Flight 370 Justified? + http://www.nytimes.com/2017/01/19/world/asia/was-ending-the-search-for-malaysia-airlines-flight-370-justified.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/asia/was-ending-the-search-for-malaysia-airlines-flight-370-justified.html + + + The aircraft that disappeared, photographed over Poland earlier in 2014. + Tomasz Bartkowiak/Reuters + A multigovernment decision to stop the search, already the longest and most expensive in aviation history, raises ethical questions. + RUSSELL GOLDMAN and MICHELLE INNIS + Thu, 19 Jan 2017 18:07:52 GMT + Malaysia Airlines Flight 370 + Ethics (Personal) + Airlines and Airplanes + Aviation Accidents, Safety and Disasters + Australia + China + Malaysia + Indian Ocean + + + Right-Wing Hoteliers in Japan Anger China With Radical Historical Views + http://www.nytimes.com/2017/01/19/business/japan-china-motoya-hotel-apa.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/business/japan-china-motoya-hotel-apa.html + + + Toshio Motoya, president of the APA Group, in Tokyo in 2015. + Thomas Peter/Reuters + Fumiko and Toshio Motoya, founders of the APA Group and defenders of Japan’s wartime conduct, provoked threats of a boycott over a book promoted at their chain. + JONATHAN SOBLE + Thu, 19 Jan 2017 13:32:47 GMT + APA Group + Motoya, Fumiko + Motoya, Toshio + Hotels and Travel Lodgings + China + Japan + World War II (1939-45) + Nanjing Massacre + International Relations + + + Trump Renews Vow for Jerusalem Embassy, a Gift of Uncertain Value + http://www.nytimes.com/2017/01/19/world/middleeast/donald-trump-jerusalem-embassy-israel-palestinians.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/middleeast/donald-trump-jerusalem-embassy-israel-palestinians.html + + + The United States Embassy in Tel Aviv, where other countries have their embassies. + Jack Guez/Agence France-Presse — Getty Images + Palestinians in the West Bank protested the idea, which even many hard-line Israelis are not keen to embrace, seeing it as a catalyst to more fighting. + IAN FISHER and ISABEL KERSHNER + Fri, 20 Jan 2017 02:29:10 GMT + Jerusalem (Israel) + Diplomatic Service, Embassies and Consulates + Palestinians + Trump, Donald J + United States International Relations + Israeli Settlements + State Department + + + C.I.A. Torture Detailed in Newly Disclosed Documents + http://www.nytimes.com/2017/01/19/us/politics/cia-torture.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/us/politics/cia-torture.html + + + Central Intelligence Agency headquarters in McLean, Va. + Larry Downing/Reuters + The material sheds additional light on the torture program as the future of the Senate’s classified full report on it hangs in the balance with the Obama presidency ending. + SHERI FINK, JAMES RISEN and CHARLIE SAVAGE + Thu, 19 Jan 2017 19:06:49 GMT + United States Politics and Government + Classified Information and State Secrets + Central Intelligence Agency + Interrogations + + + What in the World: When an Airline Suffered Misfortune, Some Looked for a Goat + http://www.nytimes.com/2017/01/18/world/what-in-the-world/pakistan-airport-goat-sacrifice.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/what-in-the-world/pakistan-airport-goat-sacrifice.html + + + + Alvaro Dominguez + The ritual slaughter of animals is common in Pakistan, but the airport sacrifice of a goat after a deadly plane crash still met with ridicule. + SALMAN MASOOD + Wed, 18 Jan 2017 11:00:27 GMT + Pakistan + Aviation Accidents, Safety and Disasters + Superstitions + Goats + Pakistan International Airlines + Zardari, Asif Ali + Bhutto, Benazir + + + Intercepted Russian Communications Part of Inquiry Into Trump Associates + http://www.nytimes.com/2017/01/19/us/politics/trump-russia-associates-investigation.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/us/politics/trump-russia-associates-investigation.html + + + Paul Manafort, Donald J. Trump’s former campaign chairman, at the Republican National Convention in Cleveland in July. + Sam Hodgson for The New York Times + It is not clear whether the communications had anything to do with Donald J. Trump or his campaign. + MICHAEL S. SCHMIDT, MATTHEW ROSENBERG, ADAM GOLDMAN and MATT APUZZO + Fri, 20 Jan 2017 02:18:41 GMT + Cyberwarfare and Defense + United States Politics and Government + Wiretapping and Other Eavesdropping Devices and Methods + Central Intelligence Agency + Trump, Donald J + Russia + Manafort, Paul J + + + Supreme Court Justice Helping to Oversee Brazil Graft Inquiry Dies in Plane Crash + http://www.nytimes.com/2017/01/19/world/americas/brazil-judge-zavascki-petrobras-investigation-killed-plane-crash.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/americas/brazil-judge-zavascki-petrobras-investigation-killed-plane-crash.html + + The Supreme Court justice, Teori Zavascki, had earned a reputation as a judge prepared to curb abuses of power by influential lawmakers and business leaders. + SIMON ROMERO + Fri, 20 Jan 2017 01:08:33 GMT + Zavascki, Teori + Supreme Court (Brazil) + Brazil + Aviation Accidents, Safety and Disasters + Petroleo Brasileiro SA Petrobras + + + Reporter's Notebook: A Clown and a Correspondent Join the Global Elite + http://www.nytimes.com/2017/01/19/world/europe/world-economic-forum-davos-reporters-notebook.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/europe/world-economic-forum-davos-reporters-notebook.html + + + What look like massive beach balls hanging from the ceiling are part of a project called Aerocene, led by the artist Tomás Saraceno, at the World Economic Forum in Davos, Switzerland. + Michel Euler/Associated Press + Ben Hubbard, a Mideast correspondent for The Times, tags along with his wife, a storyteller who was invited to Davos as a “Cultural Leader.” + BEN HUBBARD + Thu, 19 Jan 2017 22:42:10 GMT + Refugees and Displaced Persons + Middle East and Africa Migrant Crisis + Art + World Economic Forum + Davos (Switzerland) + + + Despite Syria Cease-Fire, U.N. Says, Aid Isn’t Reaching Besieged Areas + http://www.nytimes.com/2017/01/19/world/middleeast/syria-aid-cease-fire.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/middleeast/syria-aid-cease-fire.html + + Armed opposition groups and government forces “are routinely doing what they can, all of them it seems, to avoid us helping women, children, wounded on the other side,” an official said. + NICK CUMMING-BRUCE + Thu, 19 Jan 2017 22:00:18 GMT + Humanitarian Aid + United Nations + Egeland, Jan + de Mistura, Staffan + Syria + + + Reporter's Notebook: When Journalism Meets Civil Disobedience + http://www.nytimes.com/2017/01/19/insider/when-journalism-meets-civil-disobedience.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/insider/when-journalism-meets-civil-disobedience.html + + + At Cédric Herrou’s habitat in the foothills of the Alps outside Nice, France, where African migrants hid last September before crossing the border. + Pierre Terdjman for The New York Times + I had gotten a decent man in trouble while pursuing a good story. + ADAM NOSSITER + Thu, 19 Jan 2017 18:26:50 GMT + Herrou, Cedric + Middle East and Africa Migrant Crisis + Refugees and Displaced Persons + French Underground Railroad + + + Theresa May Says Britain Will Lead a New Era of Free Trade + http://www.nytimes.com/2017/01/19/world/europe/world-economic-forum-davos-theresa-may-brexit.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/europe/world-economic-forum-davos-theresa-may-brexit.html + + It was a jarring note from the leader of a country leaving the world’s largest free-trade group. She also urged the Davos elite to seriously address inequality. + STEVEN ERLANGER and STEPHEN CASTLE + Thu, 19 Jan 2017 17:34:59 GMT + Politics and Government + International Trade and World Market + Banking and Financial Institutions + Great Britain Withdrawal from EU (Brexit) + European Union + World Economic Forum + May, Theresa M + Davos (Switzerland) + + + Trilobites: Fishing for Clues to Solve Namibia’s Fairy Circle Mystery + http://www.nytimes.com/2017/01/19/science/fishing-for-clues-to-solve-namibias-fairy-circle-mystery.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/science/fishing-for-clues-to-solve-namibias-fairy-circle-mystery.html + + + A fairy circle in the NamibRand Nature Reserve in the Namib Desert. + Jen Guyton + The new study suggests that both termites and plants may be jointly responsible for forming fairy circle landscapes in Namibia. + NICHOLAS ST. FLEUR + Thu, 19 Jan 2017 15:59:49 GMT + Fairy circles + Namibia + Research + Nature (Journal) + Termites + Grass + + + Philippine Police Are Accused of Killing South Korean Businessman + http://www.nytimes.com/2017/01/19/world/asia/philippines-police-south-korean-killing.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/asia/philippines-police-south-korean-killing.html + + + The chief of the Philippine National Police, Ronald dela Rosa, left, with President Rodrigo Duterte in Manila on Thursday. + Romeo Ranoco/Reuters + Officers seized Jee Ick-joo under the pretense of a drug raid last year and later extorted money from his family, the Justice Department of the Philippines said. + FELIPE VILLAMOR + Thu, 19 Jan 2017 15:08:57 GMT + Police + Murders, Attempted Murders and Homicides + Philippines + + + At Least 20 Firefighters Killed in Tehran High-Rise Collapse + http://www.nytimes.com/2017/01/19/world/middleeast/iran-tehran-building-collapse.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/middleeast/iran-tehran-building-collapse.html + + + + Agence France-Presse — Getty Images + The 17-story Plasco Building, one of the Iranian capital’s oldest and most prominent skyscrapers, crumpled into a smoldering heap as millions watched on state TV. + THOMAS ERDBRINK and DAN BILEFSKY + Thu, 19 Jan 2017 16:19:03 GMT + Fires and Firefighters + Buildings (Structures) + Tehran (Iran) + vis-multimedia + + + Sinosphere: Wife of Detained Chinese Rights Lawyer Seeks Angela Merkel’s Help + http://www.nytimes.com/2017/01/19/world/asia/china-lawyer-jiang-tianyong-germany.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/asia/china-lawyer-jiang-tianyong-germany.html + + + Protesters in Hong Kong demanding the release of the rights lawyer Jiang Tianyong in December. Mr. Jiang has been in custody since November, but the Chinese authorities have not disclosed where. + Tyrone Siu/Reuters + The rights lawyer Jiang Tianyong once met the German chancellor in Beijing. Now his wife is hoping that Ms. Merkel can push Beijing to disclose his whereabouts. + DIDI KIRSTEN TATLOW + Thu, 19 Jan 2017 10:17:07 GMT + Political Prisoners + Human Rights and Human Rights Violations + Merkel, Angela + Jiang Tianyong (1971- ) + Torture + China + Germany + + + Avalanche in Italy Buries Hotel, Leaving up to 30 Missing + http://www.nytimes.com/2017/01/19/world/europe/italy-avalanche.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/europe/italy-avalanche.html + + + As many as 30 people were reported missing at the hotel. + Alpine and Speleological Rescue Team, via Agence France-Presse — Getty Images + The disaster came after earthquakes struck the region on Wednesday, prompting officials to close schools and the subway system in Rome as a precaution. + ELISABETTA POVOLEDO and GERRY MULLANY + Fri, 20 Jan 2017 01:08:00 GMT + Avalanches + Earthquakes + Farindola (Italy) + + + Persecuted Minority in Myanmar Is Escalating Its Armed Insurgency + http://www.nytimes.com/2017/01/19/world/asia/muslim-rohingya-myanmar.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/world/asia/muslim-rohingya-myanmar.html + + + Rohingya refugees in Cox’s Bazar, Bangladesh, on Wednesday. About 65,000 are believed to have come from Myanmar since October, joining about a half-million who had already arrived. + Allison Joyce/Getty Images + Some analysts fear that turning the Rohingya into a transnational Muslim cause may draw foreign jihadists to Myanmar. + RICHARD C. PADDOCK, ELLEN BARRY and MIKE IVES + Thu, 19 Jan 2017 08:00:03 GMT + Rohingya (Ethnic Group) + Myanmar + Defense and Military Forces + Human Rights and Human Rights Violations + Organization of Islamic Cooperation + International Crisis Group + Bangladesh + + + Rights Groups Ask China to Free Tibetan Education Advocate + http://www.nytimes.com/2017/01/18/world/asia/china-tibetan-education-advocate.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/asia/china-tibetan-education-advocate.html + + + Tashi Wangchuk, a Tibetan entrepreneur and education advocate, at his home in Yushu, China, in 2015. + Gilles Sabrie for The New York Times + The Tibetan, Tashi Wangchuk, was detained and accused of inciting separatism nearly a year ago after speaking to The New York Times for a documentary video and two articles. + EDWARD WONG + Thu, 19 Jan 2017 03:25:43 GMT + Tashi Wangchuk + China + Tibet + Amnesty International + Human Rights Watch + Human Rights and Human Rights Violations + + + Mexican Student Fatally Shoots Himself in Classroom After Wounding Four + http://www.nytimes.com/2017/01/18/world/americas/mexico-school-shooting-monterrey.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/americas/mexico-school-shooting-monterrey.html + + + Outside the Colegio Americano del Noreste in Monterrey, Mexico, on Wednesday after a teenage student shot several students and a teacher and killed himself. + Daniel Becerril/Reuters + The motives of a 15-year-old who opened fire in Monterrey were unknown, and investigators were looking into where he got the weapon. + PAULINA VILLEGAS + Thu, 19 Jan 2017 02:19:19 GMT + Monterrey (Mexico) + School Shootings and Armed Attacks + Nuevo Leon (Mexico) + + + Isidro Baldenegro, Mexican Environmental Activist, Is Shot to Death + http://www.nytimes.com/2017/01/18/world/americas/mexico-environmental-activist-shot-sierra-madre.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/americas/mexico-environmental-activist-shot-sierra-madre.html + + + Isidro Baldenegro López in 2003. + Pablo Aneli/Associated Press + Mr. Baldenegro, winner of the Goldman Environmental Prize, defended the western Sierra Madre’s old-growth forests against powerful local strongmen. + ELISABETH MALKIN + Thu, 19 Jan 2017 01:39:31 GMT + Human Rights and Human Rights Violations + Mexico + Caceres, Berta + Drug Abuse and Traffic + Forests and Forestry + Amnesty International + Global Witness + + + In a Blow to Prosecutor, South Korean Court Blocks Arrest of Samsung Group Leader + http://www.nytimes.com/2017/01/18/world/asia/samsung-korea-president-impeachment.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/asia/samsung-korea-president-impeachment.html + + + Jay Y. Lee, the leader of Samsung, leaving court in Seoul on Wednesday. + Jung Yeon-Je/Agence France-Presse — Getty Images + A justice rejected a request to issue a warrant for Jay Y. Lee, but the de facto Samsung chief can still be indicted if a special prosecutor decides to pursue bribery allegations. + CHOE SANG-HUN + Wed, 18 Jan 2017 23:59:37 GMT + Politics and Government + Bribery and Kickbacks + Samsung Group + Lee, Jay Y + Park Geun-hye + South Korea + + + Iraqi Forces Take Eastern Mosul From Islamic State + http://www.nytimes.com/2017/01/18/world/middleeast/iraq-mosul-isis.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/middleeast/iraq-mosul-isis.html + + + American military personnel in Iraq during a battle with Islamic State militants at the University of Mosul on Wednesday. + Muhammad Hamed/Reuters + The announcement came three months after government troops, aided by American air support and military advisers, began an assault to retake the city. + RICK GLADSTONE + Wed, 18 Jan 2017 21:54:47 GMT + Iraq + Defense and Military Forces + Islamic State in Iraq and Syria (ISIS) + Mosul (Iraq) + Falluja (Iraq) + + + Trudeau Hits the Road, and Crowds and Questions Follow + http://www.nytimes.com/2017/01/18/world/canada/justin-trudeau-canada-town-hall-tour.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/canada/justin-trudeau-canada-town-hall-tour.html + + + Prime Minister Justin Trudeau of Canada with supporters in Kingston, Ontario, on Jan. 12. Mr. Trudeau has set off on a nationwide tour that includes town hall-style events. + Adrian Wyld/The Canadian Press, via Associated Press + With the Canadian prime minister’s image in need of some polishing, his January town-hall tour has all the earmarks of a campaign to reconnect with voters. + IAN AUSTEN + Wed, 18 Jan 2017 20:22:24 GMT + Canada + Trudeau, Justin + Politics and Government + Economic Conditions and Trends + International Trade and World Market + Conflicts of Interest + + + Suicide Attack at Military Camp in Mali Kills Scores + http://www.nytimes.com/2017/01/18/world/africa/suicide-attack-at-military-camp-in-mali-kills-scores.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/africa/suicide-attack-at-military-camp-in-mali-kills-scores.html + + + Soldiers attended to casualties on Wednesday after a suicide attack at a Malian camp where soldiers and former fighters who reached a peace agreement with the government in 2015 had been working together to try to stabilize the region. + Agence France-Presse — Getty Images + Many of the victims at the camp in Gao were soldiers and former rebel fighters who have been trying to work together to stabilize Mali’s restive north. + THE ASSOCIATED PRESS + Wed, 18 Jan 2017 19:48:53 GMT + Defense and Military Forces + Politics and Government + Diplomatic Service, Embassies and Consulates + Terrorism + United Nations + Ladsous, Herve + Hollande, Francois + Gao (Mali) + + + Death Toll in Mistaken Bombing of Camp in Nigeria Climbs to 70 + http://www.nytimes.com/2017/01/18/world/africa/nigeria-camp-airstrike-death-toll.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/africa/nigeria-camp-airstrike-death-toll.html + + The number killed in an errant bombing by a Nigerian military fighter jet on Tuesday included at least nine aid workers, humanitarian groups said Wednesday. + DIONNE SEARCEY + Wed, 18 Jan 2017 19:35:28 GMT + Nigeria + Defense and Military Forces + Civilian Casualties + Refugees and Displaced Persons + Boko Haram + Doctors Without Borders + + + <div>Germany’s Extreme Right Challenges Guilt Over Nazi Past </div> + http://www.nytimes.com/2017/01/18/world/europe/germany-afd-alternative-bjorn-hocke.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/europe/germany-afd-alternative-bjorn-hocke.html + + + Björn Höcke, left, at a rally for Alternative for Germany, in Dresden on Tuesday. + Shane Thomas McMillan + Björn Höcke, a star in the Alternative for Germany party, has found success questioning national regret over the Holocaust and the country’s Nazi crimes. + AMANDA TAUB and MAX FISHER + Wed, 18 Jan 2017 17:51:32 GMT + Germany + Alternative for Germany + Politics and Government + Holocaust and the Nazi Era + Hocke, Bjorn (1972- ) + + + United Nations Memo: In South Sudan, Mass Killings, Rapes and the Limits of U.S. Diplomacy + http://www.nytimes.com/2017/01/18/world/africa/south-sudan-united-nations.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/africa/south-sudan-united-nations.html + + + Samantha Power, center, the American ambassador to the United Nations, and members of the Security Council visited displaced people in Wau, South Sudan, last year. + Justin Lynch/Associated Press + Samantha Power, the ambassador to the United Nations, is known for advocating diplomacy to prevent atrocities, but poor timing has hampered efforts to avert a catastrophe. + SOMINI SENGUPTA + Wed, 18 Jan 2017 14:30:14 GMT + War Crimes, Genocide and Crimes Against Humanity + International Relations + United Nations + African Union + South Sudan + Juba (South Sudan) + Kiir Mayardit, Salva + Power, Samantha + Machar, Riek + + + Villager and Israeli Police Officer Die in Clash at Bedouin Hamlet + http://www.nytimes.com/2017/01/18/world/middleeast/israel-arab-home-demolition.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/middleeast/israel-arab-home-demolition.html + + + Israeli police officers detaining a man during clashes after a protest against house demolitions in the Bedouin village of Umm al-Hiran on Wednesday. + Ammar Awad/Reuters + There were conflicting accounts about events in Umm al-Hiran, a Negev village where homes were slated for demolition. + ISABEL KERSHNER + Wed, 18 Jan 2017 21:30:46 GMT + Bedouins + Adalah, The Legal Center for Arab Minority Rights in Israel + Islamic Movement + Israel + + + Russia Extends Edward Snowden’s Asylum + http://www.nytimes.com/2017/01/18/world/europe/edward-snowden-asylum-russia.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/europe/edward-snowden-asylum-russia.html + + + Edward J. Snowden speaking to an audience in Massachusetts during a live video webcast in 2016. + Kayana Szymczak for The New York Times + Moscow said the former N.S.A. contractor, who was granted asylum in 2013, would be allowed to remain for “a couple more years.” + ANDREW E. KRAMER + Wed, 18 Jan 2017 15:13:06 GMT + Extradition + Privacy + National Security Agency + Snowden, Edward J + Russia + United States + United States International Relations + + + China Cancels 103 Coal Plants, Mindful of Smog and Wasted Capacity + http://www.nytimes.com/2017/01/18/world/asia/china-coal-power-plants-pollution.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/asia/china-coal-power-plants-pollution.html + + + A coal-fired power plant in Shanxi, China, in 2015. The government has canceled 103 coal plants that were planned or under construction, eliminating 120 gigawatts of future coal-fired capacity. + Kevin Frayer/Getty Images + The dropped projects include dozens already under construction, even though existing plants can already generate far more power than the country needs. + MICHAEL FORSYTHE + Wed, 18 Jan 2017 11:21:36 GMT + Coal + China + National Energy Administration (China) + Global Warming + Politics and Government + + + Sinosphere: On Taking Gay Rights From Taipei to Beijing: Don’t Call It a ‘Movement’ + http://www.nytimes.com/2017/01/18/world/asia/china-taiwan-same-sex-gay.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/asia/china-taiwan-same-sex-gay.html + + + Lai Jeng-jer, a gay rights activist from Taiwan, at Two Cities, the cafe he opened after moving to Beijing in 2012. Before that, he had run a pioneering gay-themed bookstore in Taipei, Taiwan’s capital. + Giulia Marchi for The New York Times + Lai Jeng-jer, a leader on gay rights in Taiwan who now lives in Beijing, discusses the progress he’s seen on the mainland, as well as the limitations. + YURU CHENG and AMY CHANG CHIEN + Wed, 18 Jan 2017 11:02:17 GMT + Same-Sex Marriage, Civil Unions and Domestic Partnerships + China + Taiwan + Homosexuality and Bisexuality + Beijing (China) + Lai Jeng-jer + + + President’s Term Running Out, Gambia Shudders as He Refuses to Quit + http://www.nytimes.com/2017/01/18/world/africa/gambia-yahya-jammeh-adama-barrow.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/africa/gambia-yahya-jammeh-adama-barrow.html + + The president’s refusal to accept his electoral loss to Adama Barrow, after initially doing so, threatens to drag the nation into a bloody standoff. + JAIME YAYA BARRY and DIONNE SEARCEY + Wed, 18 Jan 2017 10:00:25 GMT + Gambia + Jammeh, Yahya + Elections + Barrow, Adama (1965- ) + Politics and Government + Human Rights and Human Rights Violations + + + China’s Chief Justice Rejects an Independent Judiciary, and Reformers Wince + http://www.nytimes.com/2017/01/18/world/asia/china-chief-justice-courts-zhou-qiang.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/asia/china-chief-justice-courts-zhou-qiang.html + + + Chief Justice Zhou Qiang at the National People’s Congress in Beijing in March. A recent speech by the chief justice was seen as a nod to China’s strict political climate, set by President Xi Jinping. + Kim Kyung-hoon/Reuters + Zhou Qiang denounced the “trap” of “Western” ideology, dismaying some liberal-minded observers of the Chinese legal system who had seen him as an encouraging figure. + MICHAEL FORSYTHE + Wed, 18 Jan 2017 08:56:54 GMT + China + Supreme People's Court (China) + Politics and Government + Xi Jinping + + + U.S.-Trained Official May Shape China’s Response to Trump on Trade + http://www.nytimes.com/2017/01/18/world/asia/liu-he-china-trade-trump.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/18/world/asia/liu-he-china-trade-trump.html + + + Liu He in Beijing in 2010. As the top economic adviser to China’s president, Xi Jinping, Mr. Liu has sought to make China’s growth less reliant on rising debt and public spending. + Nelson Ching/Bloomberg + Liu He, the top economic adviser to President Xi Jinping, has argued for more open markets. But his agenda could be overwhelmed by fears of fallout from a trade war. + CHRIS BUCKLEY and KEITH BRADSHER + Wed, 18 Jan 2017 05:01:02 GMT + China + Liu He (1952- ) + International Trade and World Market + Trump, Donald J + Economic Conditions and Trends + Xi Jinping + United States Economy + National Development and Reform Commission (China) + + + 15 of the Best Journals by Our Reporters Around the World + http://www.nytimes.com/2016/12/30/world/15-of-the-best-journals-by-our-reporters-around-the-world.html?partner=rss&emc=rss + http://www.nytimes.com/2016/12/30/world/15-of-the-best-journals-by-our-reporters-around-the-world.html + + + A man folding blankets that are rented out to the homeless in Delhi. + Daniel Berehulak for The New York Times + The conversational and visual on-the-ground reports offered a glimpse of captivating people and places, from a “sleep mafia” in Delhi to a monastery seeking salvation in beer. + Compiled by BARBARA TIERNEY + Fri, 30 Dec 2016 14:00:52 GMT + vis-photo + + + ‘I Didn’t Want to Lose My Identity’: 16,000 Readers Reflect on Their Surnames + http://www.nytimes.com/2016/12/24/world/identity-surnames-women.html?partner=rss&emc=rss + http://www.nytimes.com/2016/12/24/world/identity-surnames-women.html + + + Katherine Yuk from Toronto was one of more than 16,000 readers who responded when The New York Times asked women around the world why they kept or changed their surnames when they married. + Ian Willms for The New York Times + The Times asked women around the world why they had kept or changed their surnames when they married. For many, the decision carried significant weight. + HANNA INGBER + Sat, 24 Dec 2016 11:00:44 GMT + vis-comments + Names, Personal + Women and Girls + + + Op-Ed Contributor: Britain’s Soccer Sex Abuse Scandal + http://www.nytimes.com/2017/01/19/opinion/britains-soccer-sex-abuse-scandal.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/opinion/britains-soccer-sex-abuse-scandal.html + + + + Sébastien Thibault + In institution after institution, a pattern of exploitation of society’s most vulnerable members has emerged. + SARFRAZ MANZOOR + Thu, 19 Jan 2017 12:30:06 GMT + Child Abuse and Neglect + Sex Crimes + Soccer + Great Britain + + + Editorial: Freezing to Death at Europe’s Door + http://www.nytimes.com/2017/01/19/opinion/freezing-to-death-at-europes-door.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/opinion/freezing-to-death-at-europes-door.html + + + Migrants inside a warehouse near Belgrade’s main railway station, in Serbia, on Tuesday. + Andrej Isakovic/Agence France-Presse — Getty Images + Failure to prepare for the winter threatens the lives of thousands of refugees. + THE EDITORIAL BOARD + Thu, 19 Jan 2017 13:37:58 GMT + Middle East and Africa Migrant Crisis + Refugees and Displaced Persons + Europe + + + Op-Ed Contributor: Voting Should Be Mandatory + http://www.nytimes.com/2017/01/19/opinion/voting-should-be-mandatory.html?partner=rss&emc=rss + http://www.nytimes.com/2017/01/19/opinion/voting-should-be-mandatory.html + + + Voters in Canberra, Australia, in July. Around three-quarters of Australians have consistently supported compulsory voting. + Martin Ollman/Getty Images + Compulsory elections are won in the center. Extremist politicians can’t get traction. + WALEED ALY + Thu, 19 Jan 2017 12:02:59 GMT + Voting and Voters + Fringe Groups and Movements + Australia + + + diff --git a/drivers/userdriver/xmlud/testdata/people.xml b/drivers/userdriver/xmlud/testdata/people.xml new file mode 100644 index 00000000..231a8b7a --- /dev/null +++ b/drivers/userdriver/xmlud/testdata/people.xml @@ -0,0 +1,38 @@ + + + + Nikola + Tesla + nikki + 86 + nikola@tesla.rs + + Electrifying + Inventing + brown + He de man + + + + + Margaret + Hamilton + mags + 82 + mhamilton@nasa.gov + Coding + Navigating + blue + + + + Marie + Curie + radgal + 66 + marie@curie.org + X-Ray Vision + Chemistry + blue + + diff --git a/drivers/userdriver/xmlud/testdata/people_simple.xml b/drivers/userdriver/xmlud/testdata/people_simple.xml new file mode 100644 index 00000000..4c59fe60 --- /dev/null +++ b/drivers/userdriver/xmlud/testdata/people_simple.xml @@ -0,0 +1,27 @@ + + + + Nikola + Tesla + nikola@tesla.rs + Electrifying + Inventing + + + + Margaret + Hamilton + mhamilton@nasa.gov + Coding + Navigating + + + + Marie + Curie + marie@curie.org + X-Ray Vision + Chemistry + + + \ No newline at end of file diff --git a/drivers/userdriver/xmlud/testdata/people_with_synopsis.xml b/drivers/userdriver/xmlud/testdata/people_with_synopsis.xml new file mode 100644 index 00000000..ce996845 --- /dev/null +++ b/drivers/userdriver/xmlud/testdata/people_with_synopsis.xml @@ -0,0 +1,38 @@ + + + + Nikola + Tesla + nikki + 86 + nikola@tesla.rs + Electrifying + Inventing + brown +

Nikola Tesla (/ˈtɛslə/; Serbian Cyrillic: Никола Тесла;[2] pronounced [nǐkola têsla];[a] 10 July 1856 – 7 January 1943) was a Serbian-American[4][5][6] inventor, electrical engineer, mechanical engineer, and futurist who is best known for his contributions to the design of the modern alternating current (AC) electricity supply system.[7]

+
+ + + Margaret + Hamilton + mags + 82 + mhamilton@nasa.gov + Coding + Navigating + blue +

Margaret Heafield Hamilton (born August 17, 1936) is an American computer scientist, systems engineer, and business owner. She was director of the Software Engineering Division of the MIT Instrumentation Laboratory, which developed on-board flight software for NASA's Apollo program. She later founded two software companies—Higher Order Software in 1976 and Hamilton Technologies in 1986, both in Cambridge, Massachusetts.

+
+ + + Marie + Curie + radgal + 66 + marie@curie.org + X-Ray Vision + Chemistry + blue +

Marie Skłodowska Curie (/ˈkjʊəri/ KEWR-ee,[3] French: [kyʁi], Polish: [kʲiˈri]), born Maria Salomea Skłodowska (Polish: [ˈmarja salɔˈmɛa skwɔˈdɔfska]; 7 November 1867 – 4 July 1934), was a Polish and naturalized-French physicist and chemist who conducted pioneering research on radioactivity. She was the first woman to win a Nobel Prize, the first person and the only woman to win the Nobel Prize twice, and the only person to win the Nobel Prize in two different scientific fields. She was part of the Curie family legacy of five Nobel Prizes. She was also the first woman to become a professor at the University of Paris,[4] and in 1995 became the first woman to be entombed on her own merits in the Panthéon in Paris.[5]

+
+
diff --git a/drivers/userdriver/xmlud/testdata/ppl.sq.yml b/drivers/userdriver/xmlud/testdata/ppl.sq.yml new file mode 100644 index 00000000..b18a772d --- /dev/null +++ b/drivers/userdriver/xmlud/testdata/ppl.sq.yml @@ -0,0 +1,50 @@ +user_drivers: + - driver: ppl + genre: xml + title: People + selector: /people + tables: + - table: person + selector: /people/person + primary_key: + - person_id + cols: + - col: person_id + kind: int + selector: ../sequence() + - col: first_name + selector: ./firstName + kind: text + required: true + - col: last_name + selector: ./lastName + kind: text + required: true + - col: nickname + kind: text + required: false + - col: age + kind: int + required: true + - col: gender + kind: text + selector: '@gender' + required: true + - col: synopsis + kind: text + selector: ./text() + - table: skill + selector: /people/person/skill + primary_key: + - skill_id + cols: + - col: skill_id + kind: int + selector: ../sequence() + - col: person_id + kind: int + selector: ../person_id + foreign: ../person_id + - col: skill_name + selector: ./text() + kind: text \ No newline at end of file diff --git a/drivers/userdriver/xmlud/testdata/rss.sq.yml b/drivers/userdriver/xmlud/testdata/rss.sq.yml new file mode 100644 index 00000000..96848c42 --- /dev/null +++ b/drivers/userdriver/xmlud/testdata/rss.sq.yml @@ -0,0 +1,85 @@ +user_drivers: + - driver: rss + genre: xml + title: RSS (Really Simple Syndication) + doc: https://en.wikipedia.org/wiki/RSS#Example + selector: /rss + tables: + - table: channel + selector: /rss/channel + primary_key: + - channel_id + cols: + - col: channel_id + kind: int + selector: ../sequence() + comment: channel_id is a synthetic column that is the PK for this table + - col: title + kind: text + unique: true + - col: description + kind: text + - col: link + kind: text + format: url + - col: last_build_date + selector: lastBuildDate + # datakind: datetime + kind: text + format: RFC_XYZ + - col: pub_date + selector: ./pubDate + kind: text + format: RFC_XYZ + - col: ttl + kind: int + comment: this is the channel table + - table: item + selector: /rss/channel/item + primary_key: + - item_id + cols: + - col: item_id + kind: int + selector: ../sequence() + - col: guid + kind: text + format: guidv2 + - col: channel_id + kind: int + foreign: ../channel_id + - col: channel_title + kind: text + - col: title + kind: text + - col: description + kind: text + format: html + charset: utf-8 + - col: link + kind: text + format: url + - col: guid_is_permalink + selector: guid/@isPermaLink + kind: bool + - col: pub_date + selector: /rss/channel/item/pubDate + kind: text + format: RFC_XYZ + - table: category + selector: /rss/channel/item/category + primary_key: + - category_id + cols: + - col: category_id + kind: int + selector: ../sequence() + - col: itemid + kind: int + foreign: ../item_id + - col: value + kind: text + selector: ./text() + - col: domain + kind: text + selector: "@domain" \ No newline at end of file diff --git a/drivers/userdriver/xmlud/xmlimport.go b/drivers/userdriver/xmlud/xmlimport.go new file mode 100644 index 00000000..2a92c0cd --- /dev/null +++ b/drivers/userdriver/xmlud/xmlimport.go @@ -0,0 +1,601 @@ +// Package xmlud provides user driver XML import functionality. +// Note that this implementation is experimental, not well-tested, +// inefficient, possibly incomprehensible, and subject to change. +package xmlud + +import ( + "context" + "fmt" + "io" + + "encoding/xml" + + "strings" + + "strconv" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/drivers/userdriver" + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// Genre is the user driver genre that this package supports. +const Genre = "xml" + +// Import implements userdriver.ImportFunc. +func Import(ctx context.Context, log lg.Log, def *userdriver.DriverDef, data io.Reader, destDB driver.Database) error { + if def.Genre != Genre { + return errz.Errorf("xmlud.Import does not support genre %q", def.Genre) + } + + im := &importer{ + log: log, + def: def, + selStack: newSelStack(), + rowStack: newRowStack(), + tblDefs: map[string]*sqlmodel.TableDef{}, + tblSequence: map[string]int64{}, + execInsertFns: map[string]func(ctx context.Context, insertVals []interface{}) error{}, + execUpdateFns: map[string]func(ctx context.Context, updateVals []interface{}, whereArgs []interface{}) error{}, + clnup: cleanup.New(), + msgOnce: map[string]struct{}{}, + } + + err := im.execImport(ctx, data, destDB) + err2 := im.clnup.Run() + if err != nil { + return errz.Wrap(err, "xml import") + } + + return errz.Wrap(err2, "xml import: cleanup") +} + +// importer does the work of importing data from XML. +type importer struct { + log lg.Log + def *userdriver.DriverDef + data io.Reader + destDB driver.Database + selStack *selStack + rowStack *rowStack + tblDefs map[string]*sqlmodel.TableDef + + // tblSequence is a map of table name to the last + // insert ID value for that table. See dbInsert for more. + tblSequence map[string]int64 + + // execInsertFns is a map of a table+cols key to an func for inserting + // vals. Effectively it can be considered a cache of prepared insert + // statements. See the dbInsert function. + execInsertFns map[string]func(ctx context.Context, vals []interface{}) error + + // execUpdateFns is similar to execInsertFns, but for UPDATE instead + // of INSERT. The whereArgs param is the arguments for the + // update's WHERE clause. + execUpdateFns map[string]func(ctx context.Context, updateVals []interface{}, whereArgs []interface{}) error + + // clnup holds cleanup funcs that should be run when the importer + // finishes. + clnup *cleanup.Cleanup + + // msgOnce is used by method msgOncef. + msgOnce map[string]struct{} +} + +func (im *importer) execImport(ctx context.Context, r io.Reader, destDB driver.Database) error { + im.data, im.destDB = r, destDB + + err := im.createTables(ctx) + if err != nil { + return err + } + + decoder := xml.NewDecoder(im.data) + for { + t, err := decoder.Token() + if t == nil { + break + } + if err != nil { + return errz.Err(err) + } + + switch elem := t.(type) { + case xml.StartElement: + im.selStack.push(elem.Name.Local) + if im.isRootSelector() { + continue + } + + if im.isRowSelector() { + // We found a new row... + prevRow := im.rowStack.peek() + if prevRow != nil { + // Because the new row might require the primary key of the prev row, + // we need to save the previous row, to ensure its primary key is + // generated. + err = im.saveRow(ctx, prevRow) + if err != nil { + return err + } + } + + var curRow *rowState + curRow, err = im.buildRow() + if err != nil { + return err + } + + im.rowStack.push(curRow) + + err = im.handleElemAttrs(elem, curRow) + if err != nil { + return err + } + + continue + } + + // It's not a row element, it's a col element + curRow := im.rowStack.peek() + if curRow == nil { + return errz.Errorf("unable to parse XML: no current row on stack for elem %q", elem.Name.Local) + } + + col := curRow.tbl.ColBySelector(im.selStack.selector()) + if col == nil { + if msg, ok := im.msgOncef("Skip: element %q is not a column of table %q", elem.Name.Local, curRow.tbl.Name); ok { + im.log.Debug(msg) + } + continue + } + + curRow.curCol = col + + err = im.handleElemAttrs(elem, curRow) + if err != nil { + return err + } + + case xml.EndElement: + if im.isRowSelector() { + row := im.rowStack.peek() + if row.dirty() { + err = im.saveRow(ctx, row) + if err != nil { + return err + } + } + im.rowStack.pop() + } + im.selStack.pop() + + case xml.CharData: + data := string(elem) + curRow := im.rowStack.peek() + + if curRow == nil { + continue + } + + if curRow.curCol == nil { + continue + } + + val, err := im.convertVal(curRow.tbl.Name, curRow.curCol, data) + if err != nil { + return err + } + + curRow.dirtyColVals[curRow.curCol.Name] = val + curRow.curCol = nil + } + } + + return nil +} + +func (im *importer) convertVal(tbl string, col *userdriver.ColMapping, data interface{}) (interface{}, error) { + const errTpl = `conversion error: %s.%s: expected "%s" but got %T(%v)` + const errTplMsg = `conversion error: %s.%s: expected "%s" but got %T(%v): %v` + + switch col.Kind { + default: + return nil, errz.Errorf("unknown data kind %q for col %s", col.Kind, col.Name) + case sqlz.KindText, sqlz.KindTime: + return data, nil + case sqlz.KindInt: + switch data := data.(type) { + case int, int32, int64: + return data, nil + case string: + val, err := strconv.ParseInt(data, 0, 64) + if err != nil { + return nil, errz.Errorf(errTplMsg, tbl, col.Name, col.Kind, data, data, err) + } + return val, nil + default: + return nil, errz.Errorf(errTpl, tbl, col.Name, col.Kind, data, data) + } + case sqlz.KindFloat: + switch data := data.(type) { + case float32, float64: + return data, nil + case string: + val, err := strconv.ParseFloat(data, 64) + if err != nil { + return nil, errz.Errorf(errTplMsg, tbl, col.Name, col.Kind, data, data, err) + } + return val, nil + default: + return nil, errz.Errorf(errTpl, tbl, col.Name, col.Kind, data, data) + } + case sqlz.KindDecimal: + return data, nil + case sqlz.KindBool: + switch data := data.(type) { + case bool: + return data, nil + case int, int32, int64: + if data == 0 { + return false, nil + } + return true, nil + case string: + val, err := strconv.ParseBool(data) + if err != nil { + return nil, errz.Errorf(errTplMsg, tbl, col.Name, col.Kind, data, data, err) + } + return val, nil + default: + return nil, errz.Errorf(errTpl, tbl, col.Name, col.Kind, data, data) + } + case sqlz.KindDatetime: + return data, nil + case sqlz.KindBytes: + return data, nil + case sqlz.KindNull: + return data, nil + } +} + +func (im *importer) handleElemAttrs(elem xml.StartElement, curRow *rowState) error { + if len(elem.Attr) > 0 { + baseSel := im.selStack.selector() + + for _, attr := range elem.Attr { + attrSel := baseSel + "/@" + attr.Name.Local + attrCol := curRow.tbl.ColBySelector(attrSel) + if attrCol == nil { + if msg, ok := im.msgOncef("Skip: attr %q is not a column of table %q", attrSel, curRow.tbl.Name); ok { + im.log.Debugf(msg) + } + + continue + } + // We have found the col matching the attribute + val, err := im.convertVal(curRow.tbl.Name, attrCol, attr.Value) + if err != nil { + return err + } + + curRow.dirtyColVals[attrCol.Name] = val + } + } + + return nil +} + +// setForeignColsVals sets the values of any column that needs to be +// populated from a foreign key. +func (im *importer) setForeignColsVals(row *rowState) error { + // check if we need to populate any of the row's values with + // foreign key data (e.g. from parent table). + for _, col := range row.tbl.Cols { + if col.Foreign == "" { + continue + } + // yep, we need to add a foreign key + parts := strings.Split(col.Foreign, "/") + // parts will look like [ "..", "channel_id" ] + if len(parts) != 2 || parts[0] != ".." { + return errz.Errorf(`%s.%s: "foreign" field should be of form "../col_name" but was %q`, row.tbl.Name, col.Name, col.Foreign) + } + + fkName := parts[1] + + parentRow := im.rowStack.peekN(1) + if parentRow == nil { + return errz.Errorf("unable to find parent() table for foreign key for %s.%s", row.tbl.Name, col.Name) + } + + fkVal, ok := parentRow.savedColVals[fkName] + if !ok { + return errz.Errorf(`%s.%s: unable to find foreign key value in parent table %q`, row.tbl.Name, col.Name, parentRow.tbl.Name) + } + + row.dirtyColVals[col.Name] = fkVal + } + return nil +} + +func (im *importer) setSequenceColsVals(row *rowState, nextSeqVal int64) { + seqColNames := userdriver.NamesFromCols(row.tbl.SequenceCols()) + for _, seqColName := range seqColNames { + if _, ok := row.savedColVals[seqColName]; ok { + // This seq col has already been saved + continue + } + + if _, ok := row.dirtyColVals[seqColName]; ok { + // Hmmmn... seqColName is already present. This shouldn't happen, + // as the point of a sequence col is to auto-generate the col + // value. The input data is inconsistent, or at least, it + // clashes with the user driver def. + // + // We could override the value, or trust the input. + // + // But given that the seqCol is typically the primary key, + // trusting the input could cause a constraint violation + // if a subsequent row doesn't have a value for the seqCol. + // + // Probably safer to override the value. + row.dirtyColVals[seqColName] = nextSeqVal + + im.log.Warnf("%s.%s is a auto-generated sequence() column: ignoring the value found in input", + row.tbl.Name, seqColName) + continue + } + + // Else, this seq col has not yet been saved + row.dirtyColVals[seqColName] = nextSeqVal + } +} + +func (im *importer) saveRow(ctx context.Context, row *rowState) error { + if !row.dirty() { + return nil + } + + tblDef, ok := im.tblDefs[row.tbl.Name] + if !ok { + return errz.Errorf("unable to find definition for table %q", row.tbl.Name) + } + + if row.created() { + // Row already exists in the db + err := im.dbUpdate(ctx, row) + if err != nil { + return errz.Wrapf(err, "failed to update table %q", tblDef.Name) + } + + row.markDirtyAsSaved() + return nil + } + + // We're going to INSERT the row. + + // Maintain the table's sequence. Note that we always increment the + // seq val even if there are no sequence cols for this table. + prevSeqVal := im.tblSequence[tblDef.Name] + nextSeqVal := prevSeqVal + 1 + im.tblSequence[tblDef.Name] = nextSeqVal + + im.setSequenceColsVals(row, nextSeqVal) + + // Set any foreign cols + err := im.setForeignColsVals(row) + if err != nil { + return err + } + + // Verify that all required cols are present + for _, requiredCol := range row.tbl.RequiredCols() { + if _, ok = row.dirtyColVals[requiredCol.Name]; !ok { + return errz.Errorf("no value for required column %s.%s", row.tbl.Name, requiredCol.Name) + } + } + + err = im.dbInsert(ctx, row) + if err != nil { + return errz.Wrapf(err, "failed to insert to table %q", tblDef.Name) + } + + row.markDirtyAsSaved() + return nil +} + +// dbInsert inserts row's dirty col values to row's table. +func (im *importer) dbInsert(ctx context.Context, row *rowState) error { + tblName := row.tbl.Name + colNames := make([]string, len(row.dirtyColVals)) + vals := make([]interface{}, len(row.dirtyColVals)) + + i := 0 + for k, v := range row.dirtyColVals { + colNames[i], vals[i] = k, v + i++ + } + + // We cache the prepared insert statements. + cacheKey := "##insert_func__" + tblName + "__" + strings.Join(colNames, ",") + + execInsertFn, ok := im.execInsertFns[cacheKey] + if !ok { + // Nothing cached, prepare the insert statement and insert munge func + stmtExecer, err := im.destDB.SQLDriver().PrepareInsertStmt(ctx, im.destDB.DB(), tblName, colNames) + if err != nil { + return err + } + + // Make sure we close stmt eventually. + im.clnup.AddC(stmtExecer) + + execInsertFn = func(ctx context.Context, vals []interface{}) error { + // Munge vals so that they're as the target DB expects + err = stmtExecer.Munge(vals) + if err != nil { + return err + } + + _, err = stmtExecer.Exec(ctx, vals...) + return errz.Err(err) + } + + // Cache the execInsertFn. + im.execInsertFns[cacheKey] = execInsertFn + } + + err := execInsertFn(ctx, vals) + if err != nil { + return err + } + + return nil +} + +// dbUpdate updates row's table with row's dirty values, using row's +// primary key cols as the args to the WHERE clause. +func (im *importer) dbUpdate(ctx context.Context, row *rowState) error { + drvr := im.destDB.SQLDriver() + tblName := row.tbl.Name + pkColNames := row.tbl.PrimaryKey + + var whereBuilder strings.Builder + var pkVals []interface{} + for i, pkColName := range pkColNames { + if pkVal, ok := row.savedColVals[pkColName]; ok { + pkVals = append(pkVals, pkVal) + + if i > 0 { + whereBuilder.WriteString(" AND ") + } + whereBuilder.WriteString(drvr.Dialect().Enquote(pkColName)) + whereBuilder.WriteString(" = ?") + + continue + } + + // Else, we're missing a pk val + return errz.Errorf("failed to update table %q: primary key value %q not present", tblName, pkColName) + } + + whereClause := whereBuilder.String() + colNames := make([]string, len(row.dirtyColVals)) + dirtyVals := make([]interface{}, len(row.dirtyColVals)) + + i := 0 + for k, v := range row.dirtyColVals { + colNames[i], dirtyVals[i] = k, v + i++ + } + + // We cache the prepared statement. + cacheKey := "##update_func__" + tblName + "__" + strings.Join(colNames, ",") + whereClause + execUpdateFn, ok := im.execUpdateFns[cacheKey] + if !ok { + // Nothing cached, prepare the update statement and munge func + stmtExecer, err := drvr.PrepareUpdateStmt(ctx, im.destDB.DB(), tblName, colNames, whereClause) + if err != nil { + return err + } + + // Make sure we close stmt eventually. + im.clnup.AddC(stmtExecer) + + execUpdateFn = func(ctx context.Context, updateVals []interface{}, whereArgs []interface{}) error { + // Munge vals so that they're as the target DB expects + err := stmtExecer.Munge(updateVals) + if err != nil { + return err + } + + // Append the WHERE clause args + stmtArgs := append(updateVals, whereArgs...) + _, err = stmtExecer.Exec(ctx, stmtArgs...) + return errz.Err(err) + } + + // Cache the execInsertFn. + im.execUpdateFns[cacheKey] = execUpdateFn + } + + err := execUpdateFn(ctx, dirtyVals, pkVals) + if err != nil { + return err + } + + return nil +} + +func (im *importer) buildRow() (*rowState, error) { + tbl := im.def.TableBySelector(im.selStack.selector()) + if tbl == nil { + return nil, errz.Errorf("no tbl matching current selector: %s", im.selStack.selector()) + } + + r := &rowState{tbl: tbl} + r.dirtyColVals = make(map[string]interface{}) + r.savedColVals = make(map[string]interface{}) + + for i := range r.tbl.Cols { + // If the table has a column that has a "text()" selector, then we need to capture the + // next CharData token, so we mark that col as the current col. + if strings.HasSuffix(r.tbl.Cols[i].Selector, "text()") { + r.curCol = r.tbl.Cols[i] + break + } + } + + return r, nil +} + +func (im *importer) createTables(ctx context.Context) error { + for i := range im.def.Tables { + tblDef, err := userdriver.ToTableDef(im.def.Tables[i]) + if err != nil { + return err + } + + im.tblDefs[tblDef.Name] = tblDef + + err = im.destDB.SQLDriver().CreateTable(ctx, im.destDB.DB(), tblDef) + if err != nil { + return err + } + im.log.Debugf("Created table %s.%s", im.destDB.Source().Handle, tblDef.Name) + } + + return nil +} + +// isRootSelector returns true if the current selector matches the root selector. +func (im *importer) isRootSelector() bool { + return im.selStack.selector() == im.def.Selector +} + +// isRowSelector returns true if entity referred to by the current selector +// maps to a table row (as opposed to a column). +func (im *importer) isRowSelector() bool { + return im.def.TableBySelector(im.selStack.selector()) != nil +} + +// msgOncef is used to prevent repeated logging of a message. The +// method returns ok=true and the formatted string if the formatted +// string has not been previous seen by msgOncef. +func (im *importer) msgOncef(format string, a ...interface{}) (msg string, ok bool) { + msg = fmt.Sprintf(format, a...) + + if _, exists := im.msgOnce[msg]; exists { + // msg already seen, return ok=false. + return "", false + } + + im.msgOnce[msg] = struct{}{} + return msg, true +} diff --git a/drivers/userdriver/xmlud/xmlimport_test.go b/drivers/userdriver/xmlud/xmlimport_test.go new file mode 100644 index 00000000..8b3be3a1 --- /dev/null +++ b/drivers/userdriver/xmlud/xmlimport_test.go @@ -0,0 +1,114 @@ +package xmlud_test + +import ( + "bytes" + "testing" + + "github.com/stretchr/testify/require" + "gopkg.in/yaml.v2" + + "github.com/neilotoole/sq/cli/config" + "github.com/neilotoole/sq/drivers/userdriver/xmlud" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/testsrc" +) + +const ( + driverRSS = "rss" + driverPpl = "ppl" +) + +func TestImport_Ppl(t *testing.T) { + th := testh.New(t) + + ext := &config.Ext{} + require.NoError(t, yaml.Unmarshal(proj.ReadFile(testsrc.PathDriverDefPpl), ext)) + require.Equal(t, 1, len(ext.UserDrivers)) + udDef := ext.UserDrivers[0] + require.Equal(t, driverPpl, udDef.Name) + require.Equal(t, xmlud.Genre, udDef.Genre) + + scratchDB, err := th.Databases().OpenScratch(th.Context, "ppl") + require.NoError(t, err) + + data := proj.ReadFile("drivers/userdriver/xmlud/testdata/people.xml") + err = xmlud.Import(th.Context, th.Log, udDef, bytes.NewReader(data), scratchDB) + require.NoError(t, err) + + srcMeta, err := scratchDB.SourceMetadata(th.Context) + require.NoError(t, err) + require.Equal(t, 2, len(srcMeta.Tables)) + require.Equal(t, "person", srcMeta.Tables[0].Name) + require.Equal(t, "skill", srcMeta.Tables[1].Name) + + sink, err := th.QuerySQL(scratchDB.Source(), "SELECT * FROM person") + require.NoError(t, err) + require.Equal(t, 3, len(sink.Recs)) + require.Equal(t, "Nikola", testh.Val(sink.Recs[0][1])) + for i, rec := range sink.Recs { + // Verify that the primary id cols are sequential + require.Equal(t, int64(i+1), testh.Val(rec[0])) + } + + sink, err = th.QuerySQL(scratchDB.Source(), "SELECT * FROM skill") + require.NoError(t, err) + require.Equal(t, 6, len(sink.Recs)) + require.Equal(t, "Electrifying", testh.Val(sink.Recs[0][2])) + for i, rec := range sink.Recs { + // Verify that the primary id cols are sequential + require.Equal(t, int64(i+1), testh.Val(rec[0])) + } +} + +func TestImport_RSS(t *testing.T) { + th := testh.New(t) + + ext := &config.Ext{} + require.NoError(t, yaml.Unmarshal(proj.ReadFile(testsrc.PathDriverDefRSS), ext)) + require.Equal(t, 1, len(ext.UserDrivers)) + udDef := ext.UserDrivers[0] + require.Equal(t, driverRSS, udDef.Name) + require.Equal(t, xmlud.Genre, udDef.Genre) + + scratchDB, err := th.Databases().OpenScratch(th.Context, "rss") + require.NoError(t, err) + + data := proj.ReadFile("drivers/userdriver/xmlud/testdata/nytimes_local.rss.xml") + err = xmlud.Import(th.Context, th.Log, udDef, bytes.NewReader(data), scratchDB) + require.NoError(t, err) + + srcMeta, err := scratchDB.SourceMetadata(th.Context) + require.NoError(t, err) + require.Equal(t, 3, len(srcMeta.Tables)) + require.Equal(t, "category", srcMeta.Tables[0].Name) + require.Equal(t, "channel", srcMeta.Tables[1].Name) + require.Equal(t, "item", srcMeta.Tables[2].Name) + + sink, err := th.QuerySQL(scratchDB.Source(), "SELECT * FROM channel") + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) + require.Equal(t, "NYT > World", testh.Val(sink.Recs[0][1])) + for i, rec := range sink.Recs { + // Verify that the primary id cols are sequential + require.Equal(t, int64(i+1), testh.Val(rec[0])) + } + + sink, err = th.QuerySQL(scratchDB.Source(), "SELECT * FROM category") + require.NoError(t, err) + require.Equal(t, 251, len(sink.Recs)) + require.EqualValues(t, "Extradition", testh.Val(sink.Recs[0][2])) + for i, rec := range sink.Recs { + // Verify that the primary id cols are sequential + require.Equal(t, int64(i+1), testh.Val(rec[0])) + } + + sink, err = th.QuerySQL(scratchDB.Source(), "SELECT * FROM item") + require.NoError(t, err) + require.Equal(t, 45, len(sink.Recs)) + require.EqualValues(t, "Trilobites: Fishing for Clues to Solve Namibia’s Fairy Circle Mystery", testh.Val(sink.Recs[17][4])) + for i, rec := range sink.Recs { + // Verify that the primary id cols are sequential + require.Equal(t, int64(i+1), testh.Val(rec[0])) + } +} diff --git a/drivers/xlsx/database.go b/drivers/xlsx/database.go new file mode 100644 index 00000000..2b3cbe7c --- /dev/null +++ b/drivers/xlsx/database.go @@ -0,0 +1,120 @@ +package xlsx + +import ( + "context" + "database/sql" + + "github.com/neilotoole/lg" + "github.com/tealeg/xlsx/v2" + + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/options" + "github.com/neilotoole/sq/libsq/source" +) + +// database implements driver.Database. +type database struct { + log lg.Log + src *source.Source + files *source.Files + impl driver.Database + clnup *cleanup.Cleanup +} + +// DB implements driver.Database. +func (d *database) DB() *sql.DB { + return d.impl.DB() +} + +// SQLDriver implements driver.Database. +func (d *database) SQLDriver() driver.SQLDriver { + return d.impl.SQLDriver() +} + +// Source implements driver.Database. +func (d *database) Source() *source.Source { + return d.src +} + +// TableMetadata implements driver.Database. +func (d *database) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + srcMeta, err := d.SourceMetadata(ctx) + if err != nil { + return nil, err + } + return source.TableFromSourceMetadata(srcMeta, tblName) +} + +// SourceMetadata implements driver.Database. +func (d *database) SourceMetadata(ctx context.Context) (*source.Metadata, error) { + meta := &source.Metadata{Handle: d.src.Handle} + + var err error + meta.Size, err = d.files.Size(d.src) + if err != nil { + return nil, err + } + + meta.Name, err = source.LocationFileName(d.src) + if err != nil { + return nil, err + } + + meta.FQName = meta.Name + meta.Location = d.src.Location + meta.SourceType = Type + + b, err := d.files.ReadAll(d.src) + if err != nil { + return nil, errz.Err(err) + } + + xlFile, err := xlsx.OpenBinary(b) + if err != nil { + return nil, errz.Errorf("unable to open XLSX file: ", d.src.Location, err) + } + + hasHeader, _, err := options.HasHeader(d.src.Options) + if err != nil { + return nil, err + } + + for _, sheet := range xlFile.Sheets { + tbl := &source.TableMetadata{} + + tbl.Name = sheet.Name + tbl.Size = -1 + tbl.RowCount = int64(len(sheet.Rows)) + + if hasHeader && tbl.RowCount > 0 { + tbl.RowCount-- + } + + colNames := getColNames(sheet, hasHeader) + colTypes := getColTypes(sheet, hasHeader) + + for i, colType := range colTypes { + col := &source.ColMetadata{} + col.BaseType = cellTypeToString(colType) + col.ColumnType = col.BaseType + col.Position = int64(i) + col.Name = colNames[i] + tbl.Columns = append(tbl.Columns, col) + } + + meta.Tables = append(meta.Tables, tbl) + } + + return meta, nil +} + +// Close implements driver.Database. +func (d *database) Close() error { + d.log.Debugf("Close database: %s", d.src) + + // No need to explicitly invoke c.impl.Close because + // that's already added to c.clnup + return d.clnup.Run() +} diff --git a/drivers/xlsx/import.go b/drivers/xlsx/import.go new file mode 100644 index 00000000..fe575c49 --- /dev/null +++ b/drivers/xlsx/import.go @@ -0,0 +1,383 @@ +package xlsx + +import ( + "context" + "strings" + "time" + + "github.com/tealeg/xlsx/v2" + "golang.org/x/sync/errgroup" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/options" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/stringz" +) + +// xlsxToScratch loads the data in xlFile into scratchDB. +func xlsxToScratch(ctx context.Context, log lg.Log, src *source.Source, xlFile *xlsx.File, scratchDB driver.Database) error { + start := time.Now() + log.Debugf("Beginning import from XLSX %s to %s (%s)...", src.Handle, scratchDB.Source().Handle, scratchDB.Source().RedactedLocation()) + + hasHeader, _, err := options.HasHeader(src.Options) + if err != nil { + return err + } + + tblDefs, err := buildTblDefsForSheets(ctx, log, xlFile.Sheets, hasHeader) + if err != nil { + return err + } + + for _, tblDef := range tblDefs { + err = scratchDB.SQLDriver().CreateTable(ctx, scratchDB.DB(), tblDef) + if err != nil { + return err + } + } + + log.Debugf("%d tables created (but not yet populated) in %s in %s", + len(tblDefs), scratchDB.Source().Handle, time.Since(start)) + + for i := range xlFile.Sheets { + err = importSheetToTable(ctx, log, xlFile.Sheets[i], hasHeader, scratchDB, tblDefs[i]) + if err != nil { + return err + } + } + + log.Debugf("%d sheets imported from %s to %s in %s", + len(xlFile.Sheets), src.Handle, scratchDB.Source().Handle, time.Since(start)) + + return nil +} + +// importSheetToTable imports sheet's data to its scratch table. +// The scratch table must already exist. +func importSheetToTable(ctx context.Context, log lg.Log, sheet *xlsx.Sheet, hasHeader bool, scratchDB driver.Database, tblDef *sqlmodel.TableDef) error { + startTime := time.Now() + + stmtExecer, err := scratchDB.SQLDriver().PrepareInsertStmt(ctx, scratchDB.DB(), tblDef.Name, tblDef.ColNames()) + if err != nil { + return err + } + + destColKinds := tblDef.ColKinds() + + for i, row := range sheet.Rows { + if hasHeader && i == 0 { + continue + } + + rec := rowToRecord(log, destColKinds, row, sheet.Name, i) + err = stmtExecer.Munge(rec) + if err != nil { + return err + } + + _, err = stmtExecer.Exec(ctx, rec...) + if err != nil { + log.WarnIfCloseError(stmtExecer) + return errz.Err(err) + } + } + + err = stmtExecer.Close() + if err != nil { + return errz.Err(err) + } + + log.Debugf("Inserted %d rows from sheet %q into %s.%s in %s", + len(sheet.Rows), sheet.Name, scratchDB.Source().Handle, tblDef.Name, time.Since(startTime)) + + return nil +} + +// buildTblDefsForSheets returns a TableDef for each sheet. +func buildTblDefsForSheets(ctx context.Context, log lg.Log, sheets []*xlsx.Sheet, hasHeader bool) ([]*sqlmodel.TableDef, error) { + tblDefs := make([]*sqlmodel.TableDef, len(sheets)) + + g, _ := errgroup.WithContext(ctx) + for i := range sheets { + i := i + g.Go(func() error { + tblDef, err := buildTblDefForSheet(log, sheets[i], hasHeader) + if err != nil { + return err + } + tblDefs[i] = tblDef + return nil + }) + } + + err := g.Wait() + if err != nil { + return nil, err + } + + return tblDefs, nil +} + +// buildTblDefForSheet creates a table for the given sheet, and returns +// a model of the table, or an error. +func buildTblDefForSheet(log lg.Log, sheet *xlsx.Sheet, hasHeader bool) (*sqlmodel.TableDef, error) { + numCells := getRowsMaxCellCount(sheet) + if numCells == 0 { + return nil, errz.Errorf("sheet %q has no columns", sheet.Name) + } + + colNames := make([]string, numCells) + colKinds := make([]sqlz.Kind, numCells) + + firstDataRow := 0 + + if len(sheet.Rows) == 0 { + // TODO: is this even reachable? That is, if sheet.Rows is empty, + // then sheet.cols (checked for above) will also be empty? + + // sheet has no rows + for i := 0; i < numCells; i++ { + colKinds[i] = sqlz.KindText + colNames[i] = stringz.GenerateAlphaColName(i) + } + } else { + // sheet is non-empty + + // Set up the column names + if hasHeader { + firstDataRow = 1 + headerCells := sheet.Rows[0].Cells + for i := 0; i < numCells; i++ { + colNames[i] = headerCells[i].Value + } + } else { + for i := 0; i < numCells; i++ { + colNames[i] = stringz.GenerateAlphaColName(i) + } + } + + // Set up the column types + if firstDataRow >= len(sheet.Rows) { + // the sheet contains only one row (the header row). Let's + // explicitly set the column type none the less + for i := 0; i < numCells; i++ { + colKinds[i] = sqlz.KindText + } + } else { + // we have at least one data row, let's get the column types + colKinds = getKindsFromCells(sheet.Rows[firstDataRow].Cells) + } + } + + tblDef := &sqlmodel.TableDef{Name: sheet.Name} + cols := make([]*sqlmodel.ColDef, len(colNames)) + for i, colName := range colNames { + cols[i] = &sqlmodel.ColDef{Table: tblDef, Name: colName, Kind: colKinds[i]} + } + tblDef.Cols = cols + log.Debugf("sheet %q: using col names [%q]", sheet.Name, strings.Join(colNames, ", ")) + + return tblDef, nil +} + +func rowToRecord(log lg.Log, destColKinds []sqlz.Kind, row *xlsx.Row, sheetName string, rowIndex int) []interface{} { + vals := make([]interface{}, len(row.Cells)) + for j, cell := range row.Cells { + typ := cell.Type() + switch typ { + case xlsx.CellTypeBool: + vals[j] = cell.Bool() + case xlsx.CellTypeNumeric: + if cell.IsTime() { + t, err := cell.GetTime(false) + if err != nil { + log.Warnf("sheet %s[%d:%d]: failed to get Excel time: %v", sheetName, rowIndex, j, err) + vals[j] = nil + continue + } + + vals[j] = t + continue + } + + intVal, err := cell.Int64() + if err == nil { + vals[j] = intVal + continue + } + floatVal, err := cell.Float() + if err == nil { + vals[j] = floatVal + continue + } + + if cell.Value == "" { + vals[j] = nil + continue + } + + // it's not an int, it's not a float, it's not empty string; + // just give up and make it a string. + log.Warnf("Failed to determine type of numeric cell [%s:%d:%d] from value: %q", sheetName, rowIndex, j, cell.Value) + vals[j] = cell.Value + // FIXME: prob should return an error here? + case xlsx.CellTypeString: + if cell.Value == "" { + if destColKinds[j] != sqlz.KindText { + vals[j] = nil + continue + } + } + + vals[j] = cell.String() + case xlsx.CellTypeDate: + // TODO: parse into a time value here + vals[j] = cell.Value + default: + if cell.Value == "" { + vals[j] = nil + } else { + vals[j] = cell.Value + } + } + } + return vals +} + +func getKindsFromCells(cells []*xlsx.Cell) []sqlz.Kind { + vals := make([]sqlz.Kind, len(cells)) + for i, cell := range cells { + typ := cell.Type() + switch typ { + case xlsx.CellTypeBool: + vals[i] = sqlz.KindBool + case xlsx.CellTypeNumeric: + if cell.IsTime() { + vals[i] = sqlz.KindDatetime + continue + } + + _, err := cell.Int64() + if err == nil { + vals[i] = sqlz.KindInt + continue + } + _, err = cell.Float() + if err == nil { + vals[i] = sqlz.KindFloat + continue + } + // it's not an int, it's not a float + vals[i] = sqlz.KindDecimal + + case xlsx.CellTypeDate: + // TODO: support time values here? + vals[i] = sqlz.KindDatetime + + default: + vals[i] = sqlz.KindText + } + } + + return vals +} + +// getColNames returns column names for the sheet. If hasHeader is true and there's +// at least one row, the column names are the values of the first row. Otherwise +// an alphabetical sequence (A, B... Z, AA, AB) is generated. +func getColNames(sheet *xlsx.Sheet, hasHeader bool) []string { + numCells := getRowsMaxCellCount(sheet) + colNames := make([]string, numCells) + + if len(sheet.Rows) > 0 && hasHeader { + row := sheet.Rows[0] + for i := 0; i < numCells; i++ { + colNames[i] = row.Cells[i].Value + } + return colNames + } + + for i := 0; i < numCells; i++ { + colNames[i] = stringz.GenerateAlphaColName(i) + } + + return colNames +} + +// getColTypes returns the xlsx column types for the sheet, determined from +// the values of the first data row (after any header row). +func getColTypes(sheet *xlsx.Sheet, hasHeader bool) []xlsx.CellType { + types := make([]*xlsx.CellType, getRowsMaxCellCount(sheet)) + firstDataRow := 0 + if hasHeader { + firstDataRow = 1 + } + + for x := firstDataRow; x < len(sheet.Rows); x++ { + for i, cell := range sheet.Rows[x].Cells { + if types[i] == nil { + typ := cell.Type() + types[i] = &typ + continue + } + + // else, it already has a type + if *types[i] == cell.Type() { + // type matches, just continue + continue + } + + // it already has a type, and it's different from this cell's type + typ := xlsx.CellTypeString + types[i] = &typ + } + } + + // convert back to value types + ret := make([]xlsx.CellType, len(types)) + for i, typ := range types { + ret[i] = *typ + } + + return ret +} + +func cellTypeToString(typ xlsx.CellType) string { + switch typ { + case xlsx.CellTypeString: + return "string" + case xlsx.CellTypeStringFormula: + return "formula" + case xlsx.CellTypeNumeric: + return "numeric" + case xlsx.CellTypeBool: + return "bool" + case xlsx.CellTypeInline: + return "inline" + case xlsx.CellTypeError: + return "error" + case xlsx.CellTypeDate: + return "date" + } + return "general" +} + +// getRowsMaxCellCount returns the largest count of cells in +// in the rows of sheet. +func getRowsMaxCellCount(sheet *xlsx.Sheet) int { + max := 0 + + for _, row := range sheet.Rows { + if len(row.Cells) > max { + max = len(row.Cells) + } + } + + return max +} diff --git a/drivers/xlsx/internal_test.go b/drivers/xlsx/internal_test.go new file mode 100644 index 00000000..02a14ac5 --- /dev/null +++ b/drivers/xlsx/internal_test.go @@ -0,0 +1,36 @@ +package xlsx + +import ( + "path/filepath" + "testing" + + "github.com/stretchr/testify/require" + "github.com/tealeg/xlsx/v2" +) + +func Test_getRowsMaxCellCount(t *testing.T) { + t.Parallel() + + testCases := []string{ + "test_header.xlsx", + "test_noheader.xlsx", + "problem_with_recognizing_date_colA.xlsx", + } + + for _, tc := range testCases { + tc := tc + t.Run(tc, func(t *testing.T) { + t.Parallel() + + xlFile, err := xlsx.OpenFile(filepath.Join("testdata", tc)) + require.NoError(t, err) + require.NotNil(t, xlFile) + + for _, sheet := range xlFile.Sheets { + cellCount := getRowsMaxCellCount(sheet) + t.Logf("sheet %s: cell count: %d", sheet.Name, cellCount) + require.True(t, cellCount > 0) + } + }) + } +} diff --git a/drivers/xlsx/testdata/README.md b/drivers/xlsx/testdata/README.md new file mode 100644 index 00000000..2a7599dd --- /dev/null +++ b/drivers/xlsx/testdata/README.md @@ -0,0 +1,12 @@ +This directory contains various Excel files for testing. + +- `sakila.xlsx` is a full dump of Sakila. +- `sakila_subset.xlsx` is a subset of `sakila.xlsx` for faster testing. It + contains only these sheets/tables: `actor`, `category`, `film`, `film_actor`, `language`. +- `sakila_noheader.xlsx` is the same as `sakila.xlsx`, but without the header + row in each sheet. +- `test_invalid.xlsx` is a bad xlsx file that should fail to load. +- `test_header.xlsx` and `test_noheader.xlsx` exist to verify handling of + table headers. +- `test_header_xlsx` is `test_header.xlsx` but without a file extension, to verify type detection. +- Various other files may exist to test specific issues. diff --git a/drivers/xlsx/testdata/problem_with_recognizing_date_colA.xlsx b/drivers/xlsx/testdata/problem_with_recognizing_date_colA.xlsx new file mode 100644 index 00000000..46ad4506 Binary files /dev/null and b/drivers/xlsx/testdata/problem_with_recognizing_date_colA.xlsx differ diff --git a/drivers/xlsx/testdata/sakila.xlsx b/drivers/xlsx/testdata/sakila.xlsx new file mode 100644 index 00000000..644cbb34 Binary files /dev/null and b/drivers/xlsx/testdata/sakila.xlsx differ diff --git a/drivers/xlsx/testdata/sakila_noheader.xlsx b/drivers/xlsx/testdata/sakila_noheader.xlsx new file mode 100644 index 00000000..519ae1bf Binary files /dev/null and b/drivers/xlsx/testdata/sakila_noheader.xlsx differ diff --git a/drivers/xlsx/testdata/sakila_subset.xlsx b/drivers/xlsx/testdata/sakila_subset.xlsx new file mode 100644 index 00000000..80ff7dc4 Binary files /dev/null and b/drivers/xlsx/testdata/sakila_subset.xlsx differ diff --git a/drivers/xlsx/testdata/test_header.xlsx b/drivers/xlsx/testdata/test_header.xlsx new file mode 100644 index 00000000..dbc2c17c Binary files /dev/null and b/drivers/xlsx/testdata/test_header.xlsx differ diff --git a/drivers/xlsx/testdata/test_header_xlsx b/drivers/xlsx/testdata/test_header_xlsx new file mode 100644 index 00000000..c85cccdf Binary files /dev/null and b/drivers/xlsx/testdata/test_header_xlsx differ diff --git a/drivers/xlsx/testdata/test_invalid.xlsx b/drivers/xlsx/testdata/test_invalid.xlsx new file mode 100644 index 00000000..c7d75f7a --- /dev/null +++ b/drivers/xlsx/testdata/test_invalid.xlsx @@ -0,0 +1 @@ +not xlsx diff --git a/drivers/xlsx/testdata/test_noheader.xlsx b/drivers/xlsx/testdata/test_noheader.xlsx new file mode 100644 index 00000000..cf31a339 Binary files /dev/null and b/drivers/xlsx/testdata/test_noheader.xlsx differ diff --git a/drivers/xlsx/xlsx.go b/drivers/xlsx/xlsx.go new file mode 100644 index 00000000..8eb545a9 --- /dev/null +++ b/drivers/xlsx/xlsx.go @@ -0,0 +1,148 @@ +// Package xlsx implements the sq driver for Microsoft Excel. +package xlsx + +import ( + "context" + "io" + "io/ioutil" + + "github.com/neilotoole/lg" + "github.com/tealeg/xlsx/v2" + + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +const ( + // Type is the sq source driver type for XLSX. + Type = source.Type("xlsx") +) + +// Provider implements driver.Provider. +type Provider struct { + Log lg.Log + Files *source.Files + Scratcher driver.ScratchDatabaseOpener +} + +// DriverFor implements driver.Provider. +func (p *Provider) DriverFor(typ source.Type) (driver.Driver, error) { + if typ != Type { + return nil, errz.Errorf("unsupported driver type %q", typ) + } + + return &Driver{log: p.Log, scratcher: p.Scratcher, files: p.Files}, nil +} + +// DetectXLSX returns TypeXLSX and a score of 1.0 if r's bytes +// are valid XLSX. +func DetectXLSX(ctx context.Context, r io.Reader) (detected source.Type, score float32, err error) { + data, err := ioutil.ReadAll(r) + if err != nil { + return source.TypeNone, 0, errz.Err(err) + } + + // We don't need to read all rows, one will do. + const rowLimit = 1 + _, err = xlsx.OpenBinaryWithRowLimit(data, rowLimit) + + if err != nil { + return source.TypeNone, 0, nil + } + + return Type, 1.0, nil +} + +// Driver implements driver.Driver. +type Driver struct { + log lg.Log + scratcher driver.ScratchDatabaseOpener + files *source.Files +} + +// DriverMetadata implements driver.Driver. +func (d *Driver) DriverMetadata() driver.Metadata { + return driver.Metadata{ + Type: Type, + Description: "Microsoft Excel XLSX", + Doc: "https://en.wikipedia.org/wiki/Microsoft_Excel"} +} + +// Open implements driver.Driver. +func (d *Driver) Open(ctx context.Context, src *source.Source) (driver.Database, error) { + r, err := d.files.NewReader(ctx, src) + if err != nil { + return nil, err + } + defer d.log.WarnIfCloseError(r) + + b, err := ioutil.ReadAll(r) + if err != nil { + return nil, errz.Err(err) + } + + xlFile, err := xlsx.OpenBinary(b) + if err != nil { + return nil, err + } + + scratchDB, err := d.scratcher.OpenScratch(ctx, src.Handle) + if err != nil { + return nil, err + } + + clnup := cleanup.New() + clnup.AddE(scratchDB.Close) + + err = xlsxToScratch(ctx, d.log, src, xlFile, scratchDB) + if err != nil { + d.log.WarnIfError(clnup.Run()) + return nil, err + } + + return &database{log: d.log, src: src, impl: scratchDB, files: d.files, clnup: clnup}, nil +} + +// Truncate implements driver.Driver. +func (d *Driver) Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (affected int64, err error) { + // TODO: WE could actually implement Truncate for xlsx. + // It would just mean deleting the rows from a sheet, and then + // saving the sheet. + return 0, errz.Errorf("source type %q (%s) doesn't support dropping tables", Type, src.Handle) +} + +// ValidateSource implements driver.Driver. +func (d *Driver) ValidateSource(src *source.Source) (*source.Source, error) { + d.log.Debugf("validating source: %q", src.RedactedLocation()) + if src.Type != Type { + return nil, errz.Errorf("expected source type %q but got %q", Type, src.Type) + } + + return src, nil +} + +// Ping implements driver.Driver. +func (d *Driver) Ping(ctx context.Context, src *source.Source) (err error) { + d.log.Debugf("driver %q attempting to ping %q", Type, src) + + r, err := d.files.NewReader(ctx, src) + if err != nil { + return err + } + + defer d.log.WarnIfCloseError(r) + + b, err := ioutil.ReadAll(r) + if err != nil { + return errz.Err(err) + } + + _, err = xlsx.OpenBinaryWithRowLimit(b, 1) + if err != nil { + return errz.Err(err) + } + + return nil +} diff --git a/drivers/xlsx/xlsx_test.go b/drivers/xlsx/xlsx_test.go new file mode 100644 index 00000000..2d82f893 --- /dev/null +++ b/drivers/xlsx/xlsx_test.go @@ -0,0 +1,62 @@ +package xlsx_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/xlsx" + "github.com/neilotoole/sq/libsq/options" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" +) + +func Test_Smoke_Subset(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(sakila.XLSXSubset) + + sink, err := th.QuerySQL(src, "SELECT * FROM actor") + require.NoError(t, err) + require.Equal(t, len(sakila.TblActorCols), len(sink.RecMeta)) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) +} + +func Test_Smoke_Full(t *testing.T) { + testh.SkipShort(t, true) + t.Parallel() + + th := testh.New(t) + src := th.Source(sakila.XLSX) + + sink, err := th.QuerySQL(src, "SELECT * FROM actor") + require.NoError(t, err) + require.Equal(t, len(sakila.TblActorCols), len(sink.RecMeta)) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) +} + +func Test_XLSX_BadDateRecognition(t *testing.T) { + t.Parallel() + + // https://github.com/neilotoole/sq-preview/issues/2 + th := testh.New(t) + + src := &source.Source{ + Handle: "@xlsx_bad_date", + Type: xlsx.Type, + Location: proj.Abs("drivers/xlsx/testdata/problem_with_recognizing_date_colA.xlsx"), + Options: options.Options{"header": []string{"true"}}, + } + + hasHeader, ok, err := options.HasHeader(src.Options) + require.NoError(t, err) + require.True(t, ok) + require.True(t, hasHeader) + + sink, err := th.QuerySQL(src, "SELECT * FROM Summary") + require.NoError(t, err) + require.Equal(t, 21, len(sink.Recs)) +} diff --git a/go.mod b/go.mod new file mode 100644 index 00000000..3828ab3f --- /dev/null +++ b/go.mod @@ -0,0 +1,59 @@ +module github.com/neilotoole/sq + +go 1.13 + +require ( + github.com/antlr/antlr4 v0.0.0-20191011202612-ad2bd05285ca + github.com/aws/aws-sdk-go v1.12.10 // indirect + github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect + github.com/c2h5oh/datasize v0.0.0-20170519143321-54516c931ae9 + github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc + github.com/djherbis/fscache v0.10.1 + github.com/emirpasic/gods v1.9.0 + github.com/fatih/color v1.9.0 + github.com/go-ini/ini v1.30.0 // indirect + github.com/go-sql-driver/mysql v1.5.0 + github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect + github.com/google/uuid v1.1.1 + github.com/h2non/filetype v1.1.0 + github.com/hashicorp/go-cleanhttp v0.0.0-20170211013415-3573b8b52aa7 // indirect + github.com/hashicorp/go-getter v0.0.0-20171007181130-2f449c791e6a + github.com/hashicorp/go-version v0.0.0-20170914154128-fc61389e27c7 // indirect + github.com/jackc/pgconn v1.5.0 + github.com/jackc/pgx/v4 v4.6.0 + github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 // indirect + github.com/jmoiron/sqlx v0.0.0-20171020205521-3379e5993990 + github.com/kr/pretty v0.2.0 // indirect + github.com/kr/text v0.2.0 // indirect + github.com/magefile/mage v1.9.0 + github.com/mattn/go-colorable v0.1.4 + github.com/mattn/go-isatty v0.0.12 + github.com/mattn/go-runewidth v0.0.4 + github.com/mattn/go-sqlite3 v2.0.3+incompatible + github.com/mitchellh/go-homedir v1.1.0 + github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 // indirect + github.com/neilotoole/errgroup v0.1.5 + github.com/neilotoole/lg v0.3.0 + github.com/nlopes/slack v0.1.0 + github.com/pkg/errors v0.9.1 + github.com/satori/go.uuid v1.2.0 + github.com/segmentio/encoding v0.1.14 + github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 + github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 // indirect + github.com/spf13/cobra v0.0.5 + github.com/spf13/pflag v1.0.3 + github.com/stretchr/testify v1.5.1 + github.com/tbruyelle/hipchat-go v0.0.0-20160921153256-749fb9e14beb + github.com/tealeg/xlsx/v2 v2.0.1 + github.com/testcontainers/testcontainers-go v0.5.0 + github.com/ulikunitz/xz v0.5.4 // indirect + github.com/xo/dburl v0.0.0-20200124232849-e9ec94f52bc3 + go.uber.org/atomic v1.5.0 + go.uber.org/multierr v1.4.0 + golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 + golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 + golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 + gopkg.in/djherbis/atime.v1 v1.0.0 // indirect + gopkg.in/djherbis/stream.v1 v1.3.1 // indirect + gopkg.in/yaml.v2 v2.2.8 +) diff --git a/go.sum b/go.sum new file mode 100644 index 00000000..4a398275 --- /dev/null +++ b/go.sum @@ -0,0 +1,397 @@ +cloud.google.com/go v0.26.0 h1:e0WKqKTd5BnrG8aKH3J3h+QvEIQtSUcf2n5UZ5ZgLtQ= +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8= +github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= +github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/Microsoft/go-winio v0.4.11 h1:zoIOcVf0xPN1tnMVbTtEdI+P8OofVk3NObnwOQ6nK2Q= +github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA= +github.com/Microsoft/hcsshim v0.8.6 h1:ZfF0+zZeYdzMIVMZHKtDKJvLHj76XCuVae/jNkjj0IA= +github.com/Microsoft/hcsshim v0.8.6/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= +github.com/antlr/antlr4 v0.0.0-20191011202612-ad2bd05285ca h1:QHbltbNkVcw97h4zA/L8gA4o3dJiFvBZ0gyZHrYXHbs= +github.com/antlr/antlr4 v0.0.0-20191011202612-ad2bd05285ca/go.mod h1:T7PbCXFs94rrTttyxjbyT5+/1V8T2TYDejxUfHJjw1Y= +github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= +github.com/aws/aws-sdk-go v1.12.10 h1:ihg0UOujHVcFciyc6zs/q5VLhoG1K+oDLqgpCxkAh04= +github.com/aws/aws-sdk-go v1.12.10/go.mod h1:ZRmQr0FajVIyZ4ZzBYKG5P3ZqPz9IHG41ZoMu1ADI3k= +github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d h1:xDfNPAt8lFiC1UJrqV3uuy861HCTo708pDMbjHHdCas= +github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d/go.mod h1:6QX/PXZ00z/TKoufEY6K/a0k6AhaJrQKdFe6OfVXsa4= +github.com/c2h5oh/datasize v0.0.0-20170519143321-54516c931ae9 h1:N6In6gI4jApKZ6F8QqeVgPti7612P5EdLISBNbjQ8tk= +github.com/c2h5oh/datasize v0.0.0-20170519143321-54516c931ae9/go.mod h1:S/7n9copUssQ56c7aAgHqftWO4LTf4xY6CGWt8Bc+3M= +github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4= +github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I= +github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= +github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc h1:TP+534wVlf61smEIq1nwLLAjQVEK2EADoW3CX9AuT+8= +github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= +github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= +github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc h1:VRRKCwnzqk8QCaRC4os14xoKDdbHqqlJtJA0oc1ZAjg= +github.com/denisenkom/go-mssqldb v0.0.0-20200428022330-06a60b6afbbc/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= +github.com/djherbis/fscache v0.10.1 h1:hDv+RGyvD+UDKyRYuLoVNbuRTnf2SrA2K3VyR1br9lk= +github.com/djherbis/fscache v0.10.1/go.mod h1:yyPYtkNnnPXsW+81lAcQS6yab3G2CRfnPLotBvtbf0c= +github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible h1:dvc1KSkIYTVjZgHf/CTC2diTYC8PzhaA5sFISRfNVrE= +github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= +github.com/docker/docker v0.7.3-0.20190506211059-b20a14b54661 h1:ZuxGvIvF01nfc/G9RJ5Q7Va1zQE2WJyG18Zv3DqCEf4= +github.com/docker/docker v0.7.3-0.20190506211059-b20a14b54661/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= +github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= +github.com/docker/go-units v0.3.3 h1:Xk8S3Xj5sLGlG5g67hJmYMmUgXv5N4PhkjJHHqrwnTk= +github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= +github.com/emirpasic/gods v1.9.0 h1:rUF4PuzEjMChMiNsVjdI+SyLu7rEqpQ5reNFnhC7oFo= +github.com/emirpasic/gods v1.9.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o= +github.com/fatih/color v1.9.0 h1:8xPHl4/q1VyqGIPif1F+1V3Y3lSmrq01EabUW3CoW5s= +github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= +github.com/frankban/quicktest v1.5.0 h1:Tb4jWdSpdjKzTUicPnY61PZxKbDoGa7ABbrReT3gQVY= +github.com/frankban/quicktest v1.5.0/go.mod h1:jaStnuzAqU1AJdCO0l53JDCJrVDKcS03DbaAcR7Ks/o= +github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= +github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= +github.com/gin-gonic/gin v1.6.2/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M= +github.com/go-ini/ini v1.30.0 h1:bcFeUQUA+99t1cZPXmtc7HpGv2KTlZGIFeBDWQh2DRw= +github.com/go-ini/ini v1.30.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= +github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= +github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= +github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI= +github.com/go-redis/redis v6.15.7+incompatible h1:3skhDh95XQMpnqeqNftPkQD9jL9e5e36z/1SUm6dy1U= +github.com/go-redis/redis v6.15.7+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= +github.com/go-sql-driver/mysql v1.5.0 h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs= +github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gofrs/uuid v3.2.0+incompatible h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE= +github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= +github.com/gogo/protobuf v1.2.0 h1:xU6/SpYbvkNYiptHJYEDRseDLvYE7wSqhYYNy0QSUzI= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY= +github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.1 h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 h1:zLTLjkaOFEFIOxY5BWLFLwh+cL8vOBW4XJ2aqLE/Tf0= +github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gorilla/context v1.1.1 h1:AWwleXJkX/nhcU9bZSnZoi3h/qGYqQAGhq6zZe/aQW8= +github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= +github.com/gorilla/mux v1.6.2 h1:Pgr17XVTNXAk3q/r4CpKzC5xBM/qW1uVLV+IhRZpIIk= +github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/h2non/filetype v1.1.0 h1:Or/gjocJrJRNK/Cri/TDEKFjAR+cfG6eK65NGYB6gBA= +github.com/h2non/filetype v1.1.0/go.mod h1:319b3zT68BvV+WRj7cwy856M2ehB3HqNOt6sy1HndBY= +github.com/hashicorp/go-cleanhttp v0.0.0-20170211013415-3573b8b52aa7 h1:67fHcS+inUoiIqWCKIqeDuq2AlPHNHPiTqp97LdQ+bc= +github.com/hashicorp/go-cleanhttp v0.0.0-20170211013415-3573b8b52aa7/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-getter v0.0.0-20171007181130-2f449c791e6a h1:deqk3CV92a9CYhyfYjIJPAB2X4/vheVghmoBCno6WQM= +github.com/hashicorp/go-getter v0.0.0-20171007181130-2f449c791e6a/go.mod h1:6rdJFnhkXnzGOJbvkrdv4t9nLwKcVA+tmbQeUlkIzrU= +github.com/hashicorp/go-version v0.0.0-20170914154128-fc61389e27c7 h1:Tijq+ZHupzK8WfomfH2s5dpKkpZd2TcN2i1LDbzWbwk= +github.com/hashicorp/go-version v0.0.0-20170914154128-fc61389e27c7/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= +github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/jackc/chunkreader v1.0.0 h1:4s39bBR8ByfqH+DKm8rQA3E1LHZWB9XWcrz8fqaZbe0= +github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo= +github.com/jackc/chunkreader/v2 v2.0.0 h1:DUwgMQuuPnS0rhMXenUtZpqZqrR/30NWY+qQvTpSvEs= +github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= +github.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8= +github.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= +github.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA= +github.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE= +github.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s= +github.com/jackc/pgconn v1.5.0 h1:oFSOilzIZkyg787M1fEmyMfOUUvwj0daqYMfaWwNL4o= +github.com/jackc/pgconn v1.5.0/go.mod h1:QeD3lBfpTFe8WUnPZWN5KY/mB8FGMIYRdd8P8Jr0fAI= +github.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE= +github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8= +github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2 h1:JVX6jT/XfzNqIjye4717ITLaNwV9mWbJx0dLCpcRzdA= +github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE= +github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= +github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= +github.com/jackc/pgproto3 v1.1.0 h1:FYYE4yRw+AgI8wXIinMlNjBbp/UitDJwfj5LqqewP1A= +github.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78= +github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA= +github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg= +github.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= +github.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= +github.com/jackc/pgproto3/v2 v2.0.1 h1:Rdjp4NFjwHnEslx2b66FfCI2S0LhO4itac3hXz6WX9M= +github.com/jackc/pgproto3/v2 v2.0.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= +github.com/jackc/pgservicefile v0.0.0-20200307190119-3430c5407db8 h1:Q3tB+ExeflWUW7AFcAhXqk40s9mnNYLk1nOkKNZ5GnU= +github.com/jackc/pgservicefile v0.0.0-20200307190119-3430c5407db8/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= +github.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg= +github.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc= +github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw= +github.com/jackc/pgtype v1.3.0 h1:l8JvKrby3RI7Kg3bYEeU9TA4vqC38QDpFCfcrC7KuN0= +github.com/jackc/pgtype v1.3.0/go.mod h1:b0JqxHvPmljG+HQ5IsvQ0yqeSi4nGcDTVjFoiLDb0Ik= +github.com/jackc/pgx v3.6.2+incompatible h1:2zP5OD7kiyR3xzRYMhOcXVvkDZsImVXfj+yIyTQf3/o= +github.com/jackc/pgx v3.6.2+incompatible/go.mod h1:0ZGrqGqkRlliWnWB4zKnWtjbSWbGkVEFm4TeybAXq+I= +github.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y= +github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM= +github.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc= +github.com/jackc/pgx/v4 v4.6.0 h1:Fh0O9GdlG4gYpjpwOqjdEodJUQM9jzN3Hdv7PN0xmm0= +github.com/jackc/pgx/v4 v4.6.0/go.mod h1:vPh43ZzxijXUVJ+t/EmXBtFmbFVO72cuneCT9oAlxAg= +github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/puddle v1.1.0/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 h1:12VvqtR6Aowv3l/EQUlocDHW2Cp4G9WJVH7uyH8QFJE= +github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jmoiron/sqlx v0.0.0-20171020205521-3379e5993990 h1:Qz34DeP9m0hcLLumXusFlnoDS+v677G+Jz0SWXJ6MQc= +github.com/jmoiron/sqlx v0.0.0-20171020205521-3379e5993990/go.mod h1:IiEW3SEiiErVyFdH8NTuWjSifiEQKUoyK3LNqr2kCHU= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s= +github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= +github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/lib/pq v1.2.0 h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0= +github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/magefile/mage v1.9.0 h1:t3AU2wNwehMCW97vuqQLtw6puppWXHO+O2MHo5a50XE= +github.com/magefile/mage v1.9.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= +github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= +github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA= +github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= +github.com/mattn/go-isatty v0.0.11 h1:FxPOTFNqGkuDUGi3H/qkUbQO4ZiBa2brKq5r0l8TGeM= +github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= +github.com/mattn/go-isatty v0.0.12 h1:wuysRhFDzyxgEmMf5xjvJ2M9dZoWAXNNr5LSBS7uHXY= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-runewidth v0.0.4 h1:2BvfKmzob6Bmd4YsL0zygOqfdFnK7GR4QL06Do4/p7Y= +github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/mattn/go-sqlite3 v2.0.3+incompatible h1:gXHsfypPkaMZrKbD5209QV9jbUTJKjyR5WD3HYQSd+U= +github.com/mattn/go-sqlite3 v2.0.3+incompatible/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 h1:7GoSOOW2jpsfkntVKaS2rAr1TJqfcxotyaUcuxoZSzg= +github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= +github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c h1:nXxl5PrvVm2L/wCy8dQu6DMTwH4oIuGN8GJDAlqDdVE= +github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= +github.com/neilotoole/errgroup v0.1.5 h1:DxEGoIfFm5ooGicidR+okiHjoOaGRKFaSxDPVZuuu2I= +github.com/neilotoole/errgroup v0.1.5/go.mod h1:Q2nLGf+594h0CLBs/Mbg6qOr7GtqDK7C2S41udRnToE= +github.com/neilotoole/lg v0.3.0 h1:2/IESY8l903AeK9nvH3AWVI/p8up+8wmKWIuts7PpxY= +github.com/neilotoole/lg v0.3.0/go.mod h1:CUHyAinxegpXWV2uPbGP8R3OzRMlAd78YxtA9xiOeFA= +github.com/nlopes/slack v0.1.0 h1:YnVhdQvWT/m0TDh3VNpSoCBDlD7Y4pz1qUqb/NrNyUs= +github.com/nlopes/slack v0.1.0/go.mod h1:jVI4BBK3lSktibKahxBF74txcK2vyvkza1z/+rRnVAM= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.8.0 h1:VkHVNpR4iVnU8XQR6DBm8BqYjN7CRzw+xKUbVVbbW9w= +github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v1.5.0 h1:izbySO9zDPmjJ8rDjLvkA2zJHIo+HkYXHnf7eN7SSyo= +github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/opencontainers/go-digest v1.0.0-rc1 h1:WzifXhOVOEOuFYOJAW6aQqW0TooG2iki3E3Ii+WN7gQ= +github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/opencontainers/image-spec v1.0.1 h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI= +github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= +github.com/opencontainers/runc v0.1.1 h1:GlxAyO6x8rfZYN9Tt0Kti5a/cP41iuiO2yYT0IJGY8Y= +github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= +github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= +github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU= +github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= +github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww= +github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= +github.com/segmentio/encoding v0.1.14 h1:BfnglNbNRohLaBLf93uP5/IwKqeWrezXK/g6IRnj75c= +github.com/segmentio/encoding v0.1.14/go.mod h1:RWhr02uzMB9gQC1x+MfYxedtmBibb9cZ6Vv9VxRSSbw= +github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 h1:pntxY8Ary0t43dCZ5dqY4YTJCObLY1kIXl0uzMv+7DE= +github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= +github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 h1:WN9BUFbdyOsSH/XohnWpXOlq9NBD5sGAB2FciQMUEe8= +github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= +github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= +github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/cobra v0.0.5 h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s= +github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= +github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= +github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= +github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= +github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.5.1 h1:nOGnQDM7FYENwehXlg/kFVnos3rEvtKTjRvOWSzb6H4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/tbruyelle/hipchat-go v0.0.0-20160921153256-749fb9e14beb h1:mb7xv0kx9XpGsLy5kCCa6+3HqSj495cEBQNMgljqZ48= +github.com/tbruyelle/hipchat-go v0.0.0-20160921153256-749fb9e14beb/go.mod h1:CJEWrlDz1qHCF/nywogFd3AqHUWbKCdpu9pSAdf1OzY= +github.com/tealeg/xlsx/v2 v2.0.1 h1:RP+VEscpPFjH2FnpKh1p9HVLAk1htqb9Urcxi2AU1ns= +github.com/tealeg/xlsx/v2 v2.0.1/go.mod h1:l9GvhCCjdaIGkAyZcFedDALcYcXUOei55f6umRMOz9c= +github.com/testcontainers/testcontainers-go v0.5.0 h1:u7jCdf130QHBY5KK9xkFzZpkep24Rtl8HdWscMO9H/8= +github.com/testcontainers/testcontainers-go v0.5.0/go.mod h1:BXwe1JilTOLT8cmVyPMDbIw7e+8UCGeAhxjBwguG5wQ= +github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= +github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= +github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= +github.com/ulikunitz/xz v0.5.4 h1:zATC2OoZ8H1TZll3FpbX+ikwmadbO699PE06cIkm9oU= +github.com/ulikunitz/xz v0.5.4/go.mod h1:2bypXElzHzzJZwzH67Y6wb67pO62Rzfn7BSiF4ABRW8= +github.com/xo/dburl v0.0.0-20200124232849-e9ec94f52bc3 h1:NC3CI7do3KHtiuYhk1CdS9V2qS3jNa7Fs2Afcnnt+IE= +github.com/xo/dburl v0.0.0-20200124232849-e9ec94f52bc3/go.mod h1:A47W3pdWONaZmXuLZgfKLAVgUY0qvfTRM5vVDKS40S4= +github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= +go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.5.0 h1:OI5t8sDa1Or+q8AeE+yKeB/SDYioSHAgcVljj9JIETY= +go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= +go.uber.org/multierr v1.4.0 h1:f3WCSC2KzAcBXGATIxAB1E2XuCpNU255wNKZ505qi3E= +go.uber.org/multierr v1.4.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= +go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee h1:0mgffUl7nfd+FpvXMVz4IDEaUSmT1ysygQC7qYo7sG4= +go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= +go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.13.0 h1:nR6NoDBgAf67s68NhaXbsojM+2gxp3S1hWkHDl27pVU= +go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 h1:VklqNMn3ovrHsnt90PveolxSbWFaJdECFbxSq0Mqo2M= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= +golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529 h1:iMGN4xG0cnqj3t+zOM8wUB0BiPKHEwSxEZCvzcbZuvk= +golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200117160349-530e935923ad h1:Jh8cai0fqIK+f6nG0UgPW5wFk8wmiMhM3AyciDBdtQg= +golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59 h1:3zb4D3T4G8jdExgVU/95+vQXfpEPiMdCaZgmGVxjNHM= +golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 h1:cg5LA/zNPRzIXIWSCxQW10Rvpy94aQh3LT/ShoCpkHw= +golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de h1:5hukYrvBGR8/eNkX5mdUezrA6JiaEZDtJb9Ei+1LlBs= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 h1:fHDIZ2oxGnUZRN6WgWFCbYBjH9uqVPRCUVUDhs0wnbA= +golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208 h1:qwRHBd0NqMbJxfbotnDhm2ByMI1Shq4Y6oRJo21SGJA= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a h1:1BGLXjeY4akVXGgbC9HugT3Jv3hCI0z56oJR5vAMgBU= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190412213103-97732733099d h1:+R4KGOnez64A81RvjARKc4UT5/tI9ujCIVX+P5KiHuI= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 h1:YyJpGZS1sBuBCzLAR1VEpK193GlqGZbnPFnPV/5Rsb4= +golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42 h1:vEOn+mP2zCOVzKckCZy6YsCtDblrpj/w7B9nxGNELpg= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c h1:fqgJT0MGcGpPgpWU7VRdRjuArfcOvC4AoJmILihzhDg= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180810170437-e96c4e24768d/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5 h1:hKsoRgsbwY1NafxrwTs+k64bikrLBkAgPir1TNCj3Zs= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 h1:Nw54tB0rB7hY/N0NQvRW8DG4Yk3Q6T9cu9RcFQDu1tc= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/grpc v1.17.0 h1:TRJYBgMclJvGYn2rIMjj+h9KtMt5r1Ij7ODVRIZkwhk= +google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/djherbis/atime.v1 v1.0.0 h1:eMRqB/JrLKocla2PBPKgQYg/p5UG4L6AUAs92aP7F60= +gopkg.in/djherbis/atime.v1 v1.0.0/go.mod h1:hQIUStKmJfvf7xdh/wtK84qe+DsTV5LnA9lzxxtPpJ8= +gopkg.in/djherbis/stream.v1 v1.3.1 h1:uGfmsOY1qqMjQQphhRBSGLyA9qumJ56exkRu9ASTjCw= +gopkg.in/djherbis/stream.v1 v1.3.1/go.mod h1:aEV8CBVRmSpLamVJfM903Npic1IKmb2qS30VAZ+sssg= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4= +gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gotest.tools v0.0.0-20181223230014-1083505acf35 h1:zpdCK+REwbk+rqjJmHhiCN6iBIigrZ39glqSF0P3KF0= +gotest.tools v0.0.0-20181223230014-1083505acf35/go.mod h1:R//lfYlUuTOTfblYI3lGoAAAebUdzjvbmQsuB7Ykd90= +honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.3 h1:3JgtbtFHMiCmsznwGVTUWbgGov+pVqnlf1dEJTNAXeM= +honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= diff --git a/grammar/README.md b/grammar/README.md new file mode 100644 index 00000000..cf08fb22 --- /dev/null +++ b/grammar/README.md @@ -0,0 +1,16 @@ +# SLQ Grammar + +The query language used by SQ is formally known as _SLQ_. The +grammar is defined in `SLQ.g4`, which is an [ANTLR4](https://www.antlr.org/) grammar. + +The `antlr4` tool generates the parser / lexer files from the grammar. Being that `antlr4` is Java-based, Java must be installed to regenerate from the grammar. This process is encapsulated in a `mage` target: + +```sh +# from SQ_PROJ_ROOT +mage generateparser + +``` + +The generated .go files ultimately end up in package `libsq/slq`. Files in this directory should not be directly edited. The `libsq/ast.Parse` function takes a _SLQ_ input string and returns an `*ast.AST`. It is the `libsq.ExecuteSLQ` function that invokes `ast.Parse`. + + diff --git a/grammar/SLQ.g4 b/grammar/SLQ.g4 old mode 100755 new mode 100644 index d1ed2a12..80bf7ee0 --- a/grammar/SLQ.g4 +++ b/grammar/SLQ.g4 @@ -2,48 +2,108 @@ grammar SLQ; // "@mysql_db1 | .user, .address | join(.user.uid == .address.uid) | .[0:3] | .uid, .username, .country" +stmtList + : ';'* query ( ';'+ query )* ';'* + ; -query: segment (PIPE segment)* ; - -segment: (element) (COMMA element)* ; - -element: dsTblElement | dsElement | selElement | join | rowRange; +query: segment ('|' segment)* ; +segment: (element) (',' element)* ; +element: dsTblElement | dsElement | selElement | join | group | rowRange | fn | expr; cmpr: LT_EQ | LT | GT_EQ | GT | EQ | NEQ ; -//fn: fnJoin ; -args: ( arg (COMMA arg)* )? ; +//whereExpr +// : expr +// ; + +fn: fnName '(' ( expr ( ',' expr )* | '*' )? ')'; -arg: SEL | ID ; join : ('join'|'JOIN'|'j') - LPAR joinConstraint RPAR + '(' joinConstraint ')' ; -//fnJoinCond: SEL cmpr SEL ; -//fnJoinExpr: fnJoinCond | SEL; + + joinConstraint : SEL cmpr SEL // .user.uid == .address.userid | SEL // .uid ; + +group + : ('group'|'GROUP'|'g') + '(' SEL (',' SEL)* ')' + ; + + selElement: SEL; -dsTblElement: DATASOURCE SEL; // datasource table element, e.g. @my1.user +dsTblElement: DATASOURCE SEL; // data source table element, e.g. @my1.user -dsElement: DATASOURCE; // datasource element, e.g. @my1 +dsElement: DATASOURCE; // data source element, e.g. @my1 + + +// [] select all rows +// [10] select row 10 +// [10:15] select rows 10 thru 15 +// [0:15] select rows 0 thru 15 +// [:15] same as above (0 thru 15) +// [10:] select all rows from 10 onwards +rowRange + : '.[' + ( NN COLON NN // [10:15] + | NN COLON // [10:] + | COLON NN // [:15] + | NN // [10] + )? ']' + ; + + +fnName + : 'sum' | 'SUM' + | 'avg' | 'AVG' + | 'count' | 'COUNT' + | 'where' | 'WHERE' + ; + + +expr + : SEL + | literal + | unaryOperator expr + | expr '||' expr + | expr ( '*' | '/' | '%' ) expr + | expr ( '+' | '-' ) expr + | expr ( '<<' | '>>' | '&' ) expr + | expr ( '<' | '<=' | '>' | '>=' ) expr + | expr ( '==' | '!=' | ) expr + | expr '&&' expr + | fn +// | fnName '(' ( expr ( ',' expr )* | '*' )? ')' + ; + + + +literal + : NN + | NUMBER + | STRING + | NULL + ; + + +unaryOperator + : '-' + | '+' + | '~' + | '!' + ; -// [] -// [1] select row[1] -// [10:15] select rows 10 thru 15 -// [0:15] select rows 0 thru 15 -// [:15] same as above (0 thru 15) -// [10:] select all rows from 10 onwards -rowRange: '.[' (( INT COLON INT) | (INT COLON) | (COLON INT) | INT | ) ']'; // [1] [10:15] [0:15] [:15] [10:] ID: [a-zA-Z_][a-zA-Z0-9_]* ; WS : [ \t\r\n]+ -> skip ; @@ -55,16 +115,13 @@ COMMA: ','; PIPE: '|' ; COLON: ':'; NULL: 'null' | 'NULL'; -STRING : '"' (ESC | ~["\\])* '"' ; -fragment ESC : '\\' (["\\/bfnrt] | UNICODE) ; -fragment UNICODE : 'u' HEX HEX HEX HEX ; -fragment HEX : [0-9a-fA-F] ; -INT: [0-9] [0-9]*; +NN: INTF; // NN: Natural Number {0,1,2,3, ...} NUMBER - : '-'? INTF '.' [0-9]+ EXP? // 1.35, 1.35E-9, 0.3, -4.5 + : NN + | '-'? INTF '.' [0-9]+ EXP? // 1.35, 1.35E-9, 0.3, -4.5 | '-'? INTF EXP // 1e10 -3e4 | '-'? INTF // -3, 45 ; @@ -80,8 +137,48 @@ NEQ : '!='; EQ : '=='; SEL: '.' ID ('.' ID)*; // SEL can be .THING or .THING.OTHERTHING etc. -DATASOURCE: '@' ID; // DS is Datasource -DOT: '.' ; -VAL: STRING | NUMBER | NULL | SEL; +DATASOURCE: '@' ID; // DS (Data Source): @mydb1 or @postgres_db2 etc. + + +STRING : '"' (ESC | ~["\\])* '"' ; +fragment ESC : '\\' (["\\/bfnrt] | UNICODE) ; +fragment UNICODE : 'u' HEX HEX HEX HEX ; +fragment HEX : [0-9a-fA-F] ; + +//NUMERIC_LITERAL +// : DIGIT+ ( '.' DIGIT* )? ( E [-+]? DIGIT+ )? +// | '.' DIGIT+ ( E [-+]? DIGIT+ )? +// ; + + + +fragment DIGIT : [0-9]; + +fragment A : [aA]; +fragment B : [bB]; +fragment C : [cC]; +fragment D : [dD]; +fragment E : [eE]; +fragment F : [fF]; +fragment G : [gG]; +fragment H : [hH]; +fragment I : [iI]; +fragment J : [jJ]; +fragment K : [kK]; +fragment L : [lL]; +fragment M : [mM]; +fragment N : [nN]; +fragment O : [oO]; +fragment P : [pP]; +fragment Q : [qQ]; +fragment R : [rR]; +fragment S : [sS]; +fragment T : [tT]; +fragment U : [uU]; +fragment V : [vV]; +fragment W : [wW]; +fragment X : [xX]; +fragment Y : [yY]; +fragment Z : [zZ]; LINECOMMENT: '//' .*? '\n' -> skip ; \ No newline at end of file diff --git a/test/grun/README.md b/grammar/grun/README.md similarity index 100% rename from test/grun/README.md rename to grammar/grun/README.md diff --git a/grammar/grun/all-valid.slq b/grammar/grun/all-valid.slq new file mode 100644 index 00000000..891e86d8 --- /dev/null +++ b/grammar/grun/all-valid.slq @@ -0,0 +1,12 @@ +@mydb1 | .user, .address | join( .user.uid == .address.uid) | .email, .username, .country; +@mydb1 | .user, .address | join( .uid ) | .user.uid, .username, .country; +@mydb1 | .user | .[1]; +@mydb1 | .user | .[0:2]; +@mydb1 | .user | .[:3]; +@mydb1 | .user | .[2:]; +@mydb1 | .user | .[]; +@mydb1 | .user | .uid, .username; +@mydb1.user | .uid, .username; + + + diff --git a/test/grun/grun.sh b/grammar/grun/grun.sh similarity index 87% rename from test/grun/grun.sh rename to grammar/grun/grun.sh index 47469230..1d2697f4 100755 --- a/test/grun/grun.sh +++ b/grammar/grun/grun.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash -JAR_ANTLR="`pwd`/../../tools/antlr4-4.5.2-SNAPSHOT.jar" +JAR_ANTLR="`pwd`/../../tools/antlr4-4.5.4-SNAPSHOT.jar" JAR_ST="`pwd`/../../tools/ST-4.0.8.jar" CP="$JAR_ANTLR:$JAR_ST" diff --git a/grammar/grun/java/SLQ.tokens b/grammar/grun/java/SLQ.tokens new file mode 100644 index 00000000..f0ea930e --- /dev/null +++ b/grammar/grun/java/SLQ.tokens @@ -0,0 +1,85 @@ +T__0=1 +T__1=2 +T__2=3 +T__3=4 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +T__11=12 +T__12=13 +T__13=14 +T__14=15 +T__15=16 +T__16=17 +T__17=18 +T__18=19 +T__19=20 +T__20=21 +T__21=22 +T__22=23 +T__23=24 +T__24=25 +ID=26 +WS=27 +LPAR=28 +RPAR=29 +LBRA=30 +RBRA=31 +COMMA=32 +PIPE=33 +COLON=34 +NULL=35 +NN=36 +NUMBER=37 +LT_EQ=38 +LT=39 +GT_EQ=40 +GT=41 +NEQ=42 +EQ=43 +SEL=44 +DATASOURCE=45 +STRING=46 +LINECOMMENT=47 +';'=1 +'*'=2 +'join'=3 +'JOIN'=4 +'j'=5 +'.['=6 +'sum'=7 +'SUM'=8 +'avg'=9 +'AVG'=10 +'count'=11 +'COUNT'=12 +'where'=13 +'WHERE'=14 +'||'=15 +'/'=16 +'%'=17 +'+'=18 +'-'=19 +'<<'=20 +'>>'=21 +'&'=22 +'&&'=23 +'~'=24 +'!'=25 +'('=28 +')'=29 +'['=30 +']'=31 +','=32 +'|'=33 +':'=34 +'<='=38 +'<'=39 +'>='=40 +'>'=41 +'!='=42 +'=='=43 diff --git a/grammar/grun/java/SLQBaseListener.class b/grammar/grun/java/SLQBaseListener.class new file mode 100644 index 00000000..6e05cefe Binary files /dev/null and b/grammar/grun/java/SLQBaseListener.class differ diff --git a/grammar/grun/java/SLQBaseListener.java b/grammar/grun/java/SLQBaseListener.java new file mode 100644 index 00000000..3751f1fb --- /dev/null +++ b/grammar/grun/java/SLQBaseListener.java @@ -0,0 +1,230 @@ +// Generated from ../../grammar/SLQ.g4 by ANTLR 4.5.3 + +import org.antlr.v4.runtime.ParserRuleContext; +import org.antlr.v4.runtime.tree.ErrorNode; +import org.antlr.v4.runtime.tree.TerminalNode; + +/** + * This class provides an empty implementation of {@link SLQListener}, + * which can be extended to create a listener which only needs to handle a subset + * of the available methods. + */ +public class SLQBaseListener implements SLQListener { + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterStmtList(SLQParser.StmtListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitStmtList(SLQParser.StmtListContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterQuery(SLQParser.QueryContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitQuery(SLQParser.QueryContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterSegment(SLQParser.SegmentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitSegment(SLQParser.SegmentContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterElement(SLQParser.ElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitElement(SLQParser.ElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterCmpr(SLQParser.CmprContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitCmpr(SLQParser.CmprContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFn(SLQParser.FnContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFn(SLQParser.FnContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterJoin(SLQParser.JoinContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitJoin(SLQParser.JoinContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterJoinConstraint(SLQParser.JoinConstraintContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitJoinConstraint(SLQParser.JoinConstraintContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterSelElement(SLQParser.SelElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitSelElement(SLQParser.SelElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDsTblElement(SLQParser.DsTblElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDsTblElement(SLQParser.DsTblElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterDsElement(SLQParser.DsElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitDsElement(SLQParser.DsElementContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterRowRange(SLQParser.RowRangeContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitRowRange(SLQParser.RowRangeContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterFnName(SLQParser.FnNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitFnName(SLQParser.FnNameContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterExpr(SLQParser.ExprContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitExpr(SLQParser.ExprContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterLiteral(SLQParser.LiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitLiteral(SLQParser.LiteralContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterUnaryOperator(SLQParser.UnaryOperatorContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitUnaryOperator(SLQParser.UnaryOperatorContext ctx) { } + + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterEveryRule(ParserRuleContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitEveryRule(ParserRuleContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void visitTerminal(TerminalNode node) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void visitErrorNode(ErrorNode node) { } +} \ No newline at end of file diff --git a/grammar/grun/java/SLQLexer.class b/grammar/grun/java/SLQLexer.class new file mode 100644 index 00000000..2cd229bc Binary files /dev/null and b/grammar/grun/java/SLQLexer.class differ diff --git a/grammar/grun/java/SLQLexer.java b/grammar/grun/java/SLQLexer.java new file mode 100644 index 00000000..851d9201 --- /dev/null +++ b/grammar/grun/java/SLQLexer.java @@ -0,0 +1,263 @@ +// Generated from ../../grammar/SLQ.g4 by ANTLR 4.5.3 +import org.antlr.v4.runtime.Lexer; +import org.antlr.v4.runtime.CharStream; +import org.antlr.v4.runtime.Token; +import org.antlr.v4.runtime.TokenStream; +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.atn.*; +import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.misc.*; + +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) +public class SLQLexer extends Lexer { + static { RuntimeMetaData.checkVersion("4.5.3", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, T__5=6, T__6=7, T__7=8, T__8=9, + T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17, + T__17=18, T__18=19, T__19=20, T__20=21, T__21=22, T__22=23, T__23=24, + T__24=25, ID=26, WS=27, LPAR=28, RPAR=29, LBRA=30, RBRA=31, COMMA=32, + PIPE=33, COLON=34, NULL=35, NN=36, NUMBER=37, LT_EQ=38, LT=39, GT_EQ=40, + GT=41, NEQ=42, EQ=43, SEL=44, DATASOURCE=45, STRING=46, LINECOMMENT=47; + public static String[] modeNames = { + "DEFAULT_MODE" + }; + + public static final String[] ruleNames = { + "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8", + "T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16", + "T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24", + "ID", "WS", "LPAR", "RPAR", "LBRA", "RBRA", "COMMA", "PIPE", "COLON", + "NULL", "NN", "NUMBER", "INTF", "EXP", "LT_EQ", "LT", "GT_EQ", "GT", "NEQ", + "EQ", "SEL", "DATASOURCE", "STRING", "ESC", "UNICODE", "HEX", "DIGIT", + "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", + "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "LINECOMMENT" + }; + + private static final String[] _LITERAL_NAMES = { + null, "';'", "'*'", "'join'", "'JOIN'", "'j'", "'.['", "'sum'", "'SUM'", + "'avg'", "'AVG'", "'count'", "'COUNT'", "'where'", "'WHERE'", "'||'", + "'/'", "'%'", "'+'", "'-'", "'<<'", "'>>'", "'&'", "'&&'", "'~'", "'!'", + null, null, "'('", "')'", "'['", "']'", "','", "'|'", "':'", null, null, + null, "'<='", "'<'", "'>='", "'>'", "'!='", "'=='" + }; + private static final String[] _SYMBOLIC_NAMES = { + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, "ID", "WS", "LPAR", "RPAR", "LBRA", "RBRA", "COMMA", "PIPE", + "COLON", "NULL", "NN", "NUMBER", "LT_EQ", "LT", "GT_EQ", "GT", "NEQ", + "EQ", "SEL", "DATASOURCE", "STRING", "LINECOMMENT" + }; + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + + public SLQLexer(CharStream input) { + super(input); + _interp = new LexerATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + + @Override + public String getGrammarFileName() { return "SLQ.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public String[] getModeNames() { return modeNames; } + + @Override + public ATN getATN() { return _ATN; } + + public static final String _serializedATN = + "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\2\61\u01be\b\1\4\2"+ + "\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4"+ + "\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22"+ + "\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31"+ + "\t\31\4\32\t\32\4\33\t\33\4\34\t\34\4\35\t\35\4\36\t\36\4\37\t\37\4 \t"+ + " \4!\t!\4\"\t\"\4#\t#\4$\t$\4%\t%\4&\t&\4\'\t\'\4(\t(\4)\t)\4*\t*\4+\t"+ + "+\4,\t,\4-\t-\4.\t.\4/\t/\4\60\t\60\4\61\t\61\4\62\t\62\4\63\t\63\4\64"+ + "\t\64\4\65\t\65\4\66\t\66\4\67\t\67\48\t8\49\t9\4:\t:\4;\t;\4<\t<\4=\t"+ + "=\4>\t>\4?\t?\4@\t@\4A\tA\4B\tB\4C\tC\4D\tD\4E\tE\4F\tF\4G\tG\4H\tH\4"+ + "I\tI\4J\tJ\4K\tK\4L\tL\4M\tM\4N\tN\4O\tO\4P\tP\3\2\3\2\3\3\3\3\3\4\3\4"+ + "\3\4\3\4\3\4\3\5\3\5\3\5\3\5\3\5\3\6\3\6\3\7\3\7\3\7\3\b\3\b\3\b\3\b\3"+ + "\t\3\t\3\t\3\t\3\n\3\n\3\n\3\n\3\13\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\f"+ + "\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\16\3\16\3\16\3\16\3\16\3\16\3\17\3\17\3"+ + "\17\3\17\3\17\3\17\3\20\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3"+ + "\24\3\25\3\25\3\25\3\26\3\26\3\26\3\27\3\27\3\30\3\30\3\30\3\31\3\31\3"+ + "\32\3\32\3\33\3\33\7\33\u00f9\n\33\f\33\16\33\u00fc\13\33\3\34\6\34\u00ff"+ + "\n\34\r\34\16\34\u0100\3\34\3\34\3\35\3\35\3\36\3\36\3\37\3\37\3 \3 \3"+ + "!\3!\3\"\3\"\3#\3#\3$\3$\3$\3$\3$\3$\3$\3$\5$\u011b\n$\3%\3%\3&\3&\5&"+ + "\u0121\n&\3&\3&\3&\6&\u0126\n&\r&\16&\u0127\3&\5&\u012b\n&\3&\5&\u012e"+ + "\n&\3&\3&\3&\3&\5&\u0134\n&\3&\5&\u0137\n&\3\'\3\'\3\'\7\'\u013c\n\'\f"+ + "\'\16\'\u013f\13\'\5\'\u0141\n\'\3(\3(\5(\u0145\n(\3(\3(\3)\3)\3)\3*\3"+ + "*\3+\3+\3+\3,\3,\3-\3-\3-\3.\3.\3.\3/\3/\3/\3/\7/\u015d\n/\f/\16/\u0160"+ + "\13/\3\60\3\60\3\60\3\61\3\61\3\61\7\61\u0168\n\61\f\61\16\61\u016b\13"+ + "\61\3\61\3\61\3\62\3\62\3\62\5\62\u0172\n\62\3\63\3\63\3\63\3\63\3\63"+ + "\3\63\3\64\3\64\3\65\3\65\3\66\3\66\3\67\3\67\38\38\39\39\3:\3:\3;\3;"+ + "\3<\3<\3=\3=\3>\3>\3?\3?\3@\3@\3A\3A\3B\3B\3C\3C\3D\3D\3E\3E\3F\3F\3G"+ + "\3G\3H\3H\3I\3I\3J\3J\3K\3K\3L\3L\3M\3M\3N\3N\3O\3O\3P\3P\3P\3P\7P\u01b6"+ + "\nP\fP\16P\u01b9\13P\3P\3P\3P\3P\3\u01b7\2Q\3\3\5\4\7\5\t\6\13\7\r\b\17"+ + "\t\21\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+"+ + "\27-\30/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M\2O\2Q("+ + "S)U*W+Y,[-]._/a\60c\2e\2g\2i\2k\2m\2o\2q\2s\2u\2w\2y\2{\2}\2\177\2\u0081"+ + "\2\u0083\2\u0085\2\u0087\2\u0089\2\u008b\2\u008d\2\u008f\2\u0091\2\u0093"+ + "\2\u0095\2\u0097\2\u0099\2\u009b\2\u009d\2\u009f\61\3\2%\5\2C\\aac|\6"+ + "\2\62;C\\aac|\5\2\13\f\17\17\"\"\3\2\62;\3\2\63;\4\2GGgg\4\2--//\4\2$"+ + "$^^\n\2$$\61\61^^ddhhppttvv\5\2\62;CHch\4\2CCcc\4\2DDdd\4\2EEee\4\2FF"+ + "ff\4\2HHhh\4\2IIii\4\2JJjj\4\2KKkk\4\2LLll\4\2MMmm\4\2NNnn\4\2OOoo\4\2"+ + "PPpp\4\2QQqq\4\2RRrr\4\2SSss\4\2TTtt\4\2UUuu\4\2VVvv\4\2WWww\4\2XXxx\4"+ + "\2YYyy\4\2ZZzz\4\2[[{{\4\2\\\\||\u01b0\2\3\3\2\2\2\2\5\3\2\2\2\2\7\3\2"+ + "\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2"+ + "\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3"+ + "\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3"+ + "\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65"+ + "\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3"+ + "\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2Q\3\2\2"+ + "\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2"+ + "_\3\2\2\2\2a\3\2\2\2\2\u009f\3\2\2\2\3\u00a1\3\2\2\2\5\u00a3\3\2\2\2\7"+ + "\u00a5\3\2\2\2\t\u00aa\3\2\2\2\13\u00af\3\2\2\2\r\u00b1\3\2\2\2\17\u00b4"+ + "\3\2\2\2\21\u00b8\3\2\2\2\23\u00bc\3\2\2\2\25\u00c0\3\2\2\2\27\u00c4\3"+ + "\2\2\2\31\u00ca\3\2\2\2\33\u00d0\3\2\2\2\35\u00d6\3\2\2\2\37\u00dc\3\2"+ + "\2\2!\u00df\3\2\2\2#\u00e1\3\2\2\2%\u00e3\3\2\2\2\'\u00e5\3\2\2\2)\u00e7"+ + "\3\2\2\2+\u00ea\3\2\2\2-\u00ed\3\2\2\2/\u00ef\3\2\2\2\61\u00f2\3\2\2\2"+ + "\63\u00f4\3\2\2\2\65\u00f6\3\2\2\2\67\u00fe\3\2\2\29\u0104\3\2\2\2;\u0106"+ + "\3\2\2\2=\u0108\3\2\2\2?\u010a\3\2\2\2A\u010c\3\2\2\2C\u010e\3\2\2\2E"+ + "\u0110\3\2\2\2G\u011a\3\2\2\2I\u011c\3\2\2\2K\u0136\3\2\2\2M\u0140\3\2"+ + "\2\2O\u0142\3\2\2\2Q\u0148\3\2\2\2S\u014b\3\2\2\2U\u014d\3\2\2\2W\u0150"+ + "\3\2\2\2Y\u0152\3\2\2\2[\u0155\3\2\2\2]\u0158\3\2\2\2_\u0161\3\2\2\2a"+ + "\u0164\3\2\2\2c\u016e\3\2\2\2e\u0173\3\2\2\2g\u0179\3\2\2\2i\u017b\3\2"+ + "\2\2k\u017d\3\2\2\2m\u017f\3\2\2\2o\u0181\3\2\2\2q\u0183\3\2\2\2s\u0185"+ + "\3\2\2\2u\u0187\3\2\2\2w\u0189\3\2\2\2y\u018b\3\2\2\2{\u018d\3\2\2\2}"+ + "\u018f\3\2\2\2\177\u0191\3\2\2\2\u0081\u0193\3\2\2\2\u0083\u0195\3\2\2"+ + "\2\u0085\u0197\3\2\2\2\u0087\u0199\3\2\2\2\u0089\u019b\3\2\2\2\u008b\u019d"+ + "\3\2\2\2\u008d\u019f\3\2\2\2\u008f\u01a1\3\2\2\2\u0091\u01a3\3\2\2\2\u0093"+ + "\u01a5\3\2\2\2\u0095\u01a7\3\2\2\2\u0097\u01a9\3\2\2\2\u0099\u01ab\3\2"+ + "\2\2\u009b\u01ad\3\2\2\2\u009d\u01af\3\2\2\2\u009f\u01b1\3\2\2\2\u00a1"+ + "\u00a2\7=\2\2\u00a2\4\3\2\2\2\u00a3\u00a4\7,\2\2\u00a4\6\3\2\2\2\u00a5"+ + "\u00a6\7l\2\2\u00a6\u00a7\7q\2\2\u00a7\u00a8\7k\2\2\u00a8\u00a9\7p\2\2"+ + "\u00a9\b\3\2\2\2\u00aa\u00ab\7L\2\2\u00ab\u00ac\7Q\2\2\u00ac\u00ad\7K"+ + "\2\2\u00ad\u00ae\7P\2\2\u00ae\n\3\2\2\2\u00af\u00b0\7l\2\2\u00b0\f\3\2"+ + "\2\2\u00b1\u00b2\7\60\2\2\u00b2\u00b3\7]\2\2\u00b3\16\3\2\2\2\u00b4\u00b5"+ + "\7u\2\2\u00b5\u00b6\7w\2\2\u00b6\u00b7\7o\2\2\u00b7\20\3\2\2\2\u00b8\u00b9"+ + "\7U\2\2\u00b9\u00ba\7W\2\2\u00ba\u00bb\7O\2\2\u00bb\22\3\2\2\2\u00bc\u00bd"+ + "\7c\2\2\u00bd\u00be\7x\2\2\u00be\u00bf\7i\2\2\u00bf\24\3\2\2\2\u00c0\u00c1"+ + "\7C\2\2\u00c1\u00c2\7X\2\2\u00c2\u00c3\7I\2\2\u00c3\26\3\2\2\2\u00c4\u00c5"+ + "\7e\2\2\u00c5\u00c6\7q\2\2\u00c6\u00c7\7w\2\2\u00c7\u00c8\7p\2\2\u00c8"+ + "\u00c9\7v\2\2\u00c9\30\3\2\2\2\u00ca\u00cb\7E\2\2\u00cb\u00cc\7Q\2\2\u00cc"+ + "\u00cd\7W\2\2\u00cd\u00ce\7P\2\2\u00ce\u00cf\7V\2\2\u00cf\32\3\2\2\2\u00d0"+ + "\u00d1\7y\2\2\u00d1\u00d2\7j\2\2\u00d2\u00d3\7g\2\2\u00d3\u00d4\7t\2\2"+ + "\u00d4\u00d5\7g\2\2\u00d5\34\3\2\2\2\u00d6\u00d7\7Y\2\2\u00d7\u00d8\7"+ + "J\2\2\u00d8\u00d9\7G\2\2\u00d9\u00da\7T\2\2\u00da\u00db\7G\2\2\u00db\36"+ + "\3\2\2\2\u00dc\u00dd\7~\2\2\u00dd\u00de\7~\2\2\u00de \3\2\2\2\u00df\u00e0"+ + "\7\61\2\2\u00e0\"\3\2\2\2\u00e1\u00e2\7\'\2\2\u00e2$\3\2\2\2\u00e3\u00e4"+ + "\7-\2\2\u00e4&\3\2\2\2\u00e5\u00e6\7/\2\2\u00e6(\3\2\2\2\u00e7\u00e8\7"+ + ">\2\2\u00e8\u00e9\7>\2\2\u00e9*\3\2\2\2\u00ea\u00eb\7@\2\2\u00eb\u00ec"+ + "\7@\2\2\u00ec,\3\2\2\2\u00ed\u00ee\7(\2\2\u00ee.\3\2\2\2\u00ef\u00f0\7"+ + "(\2\2\u00f0\u00f1\7(\2\2\u00f1\60\3\2\2\2\u00f2\u00f3\7\u0080\2\2\u00f3"+ + "\62\3\2\2\2\u00f4\u00f5\7#\2\2\u00f5\64\3\2\2\2\u00f6\u00fa\t\2\2\2\u00f7"+ + "\u00f9\t\3\2\2\u00f8\u00f7\3\2\2\2\u00f9\u00fc\3\2\2\2\u00fa\u00f8\3\2"+ + "\2\2\u00fa\u00fb\3\2\2\2\u00fb\66\3\2\2\2\u00fc\u00fa\3\2\2\2\u00fd\u00ff"+ + "\t\4\2\2\u00fe\u00fd\3\2\2\2\u00ff\u0100\3\2\2\2\u0100\u00fe\3\2\2\2\u0100"+ + "\u0101\3\2\2\2\u0101\u0102\3\2\2\2\u0102\u0103\b\34\2\2\u01038\3\2\2\2"+ + "\u0104\u0105\7*\2\2\u0105:\3\2\2\2\u0106\u0107\7+\2\2\u0107<\3\2\2\2\u0108"+ + "\u0109\7]\2\2\u0109>\3\2\2\2\u010a\u010b\7_\2\2\u010b@\3\2\2\2\u010c\u010d"+ + "\7.\2\2\u010dB\3\2\2\2\u010e\u010f\7~\2\2\u010fD\3\2\2\2\u0110\u0111\7"+ + "<\2\2\u0111F\3\2\2\2\u0112\u0113\7p\2\2\u0113\u0114\7w\2\2\u0114\u0115"+ + "\7n\2\2\u0115\u011b\7n\2\2\u0116\u0117\7P\2\2\u0117\u0118\7W\2\2\u0118"+ + "\u0119\7N\2\2\u0119\u011b\7N\2\2\u011a\u0112\3\2\2\2\u011a\u0116\3\2\2"+ + "\2\u011bH\3\2\2\2\u011c\u011d\5M\'\2\u011dJ\3\2\2\2\u011e\u0137\5I%\2"+ + "\u011f\u0121\7/\2\2\u0120\u011f\3\2\2\2\u0120\u0121\3\2\2\2\u0121\u0122"+ + "\3\2\2\2\u0122\u0123\5M\'\2\u0123\u0125\7\60\2\2\u0124\u0126\t\5\2\2\u0125"+ + "\u0124\3\2\2\2\u0126\u0127\3\2\2\2\u0127\u0125\3\2\2\2\u0127\u0128\3\2"+ + "\2\2\u0128\u012a\3\2\2\2\u0129\u012b\5O(\2\u012a\u0129\3\2\2\2\u012a\u012b"+ + "\3\2\2\2\u012b\u0137\3\2\2\2\u012c\u012e\7/\2\2\u012d\u012c\3\2\2\2\u012d"+ + "\u012e\3\2\2\2\u012e\u012f\3\2\2\2\u012f\u0130\5M\'\2\u0130\u0131\5O("+ + "\2\u0131\u0137\3\2\2\2\u0132\u0134\7/\2\2\u0133\u0132\3\2\2\2\u0133\u0134"+ + "\3\2\2\2\u0134\u0135\3\2\2\2\u0135\u0137\5M\'\2\u0136\u011e\3\2\2\2\u0136"+ + "\u0120\3\2\2\2\u0136\u012d\3\2\2\2\u0136\u0133\3\2\2\2\u0137L\3\2\2\2"+ + "\u0138\u0141\7\62\2\2\u0139\u013d\t\6\2\2\u013a\u013c\t\5\2\2\u013b\u013a"+ + "\3\2\2\2\u013c\u013f\3\2\2\2\u013d\u013b\3\2\2\2\u013d\u013e\3\2\2\2\u013e"+ + "\u0141\3\2\2\2\u013f\u013d\3\2\2\2\u0140\u0138\3\2\2\2\u0140\u0139\3\2"+ + "\2\2\u0141N\3\2\2\2\u0142\u0144\t\7\2\2\u0143\u0145\t\b\2\2\u0144\u0143"+ + "\3\2\2\2\u0144\u0145\3\2\2\2\u0145\u0146\3\2\2\2\u0146\u0147\5M\'\2\u0147"+ + "P\3\2\2\2\u0148\u0149\7>\2\2\u0149\u014a\7?\2\2\u014aR\3\2\2\2\u014b\u014c"+ + "\7>\2\2\u014cT\3\2\2\2\u014d\u014e\7@\2\2\u014e\u014f\7?\2\2\u014fV\3"+ + "\2\2\2\u0150\u0151\7@\2\2\u0151X\3\2\2\2\u0152\u0153\7#\2\2\u0153\u0154"+ + "\7?\2\2\u0154Z\3\2\2\2\u0155\u0156\7?\2\2\u0156\u0157\7?\2\2\u0157\\\3"+ + "\2\2\2\u0158\u0159\7\60\2\2\u0159\u015e\5\65\33\2\u015a\u015b\7\60\2\2"+ + "\u015b\u015d\5\65\33\2\u015c\u015a\3\2\2\2\u015d\u0160\3\2\2\2\u015e\u015c"+ + "\3\2\2\2\u015e\u015f\3\2\2\2\u015f^\3\2\2\2\u0160\u015e\3\2\2\2\u0161"+ + "\u0162\7B\2\2\u0162\u0163\5\65\33\2\u0163`\3\2\2\2\u0164\u0169\7$\2\2"+ + "\u0165\u0168\5c\62\2\u0166\u0168\n\t\2\2\u0167\u0165\3\2\2\2\u0167\u0166"+ + "\3\2\2\2\u0168\u016b\3\2\2\2\u0169\u0167\3\2\2\2\u0169\u016a\3\2\2\2\u016a"+ + "\u016c\3\2\2\2\u016b\u0169\3\2\2\2\u016c\u016d\7$\2\2\u016db\3\2\2\2\u016e"+ + "\u0171\7^\2\2\u016f\u0172\t\n\2\2\u0170\u0172\5e\63\2\u0171\u016f\3\2"+ + "\2\2\u0171\u0170\3\2\2\2\u0172d\3\2\2\2\u0173\u0174\7w\2\2\u0174\u0175"+ + "\5g\64\2\u0175\u0176\5g\64\2\u0176\u0177\5g\64\2\u0177\u0178\5g\64\2\u0178"+ + "f\3\2\2\2\u0179\u017a\t\13\2\2\u017ah\3\2\2\2\u017b\u017c\t\5\2\2\u017c"+ + "j\3\2\2\2\u017d\u017e\t\f\2\2\u017el\3\2\2\2\u017f\u0180\t\r\2\2\u0180"+ + "n\3\2\2\2\u0181\u0182\t\16\2\2\u0182p\3\2\2\2\u0183\u0184\t\17\2\2\u0184"+ + "r\3\2\2\2\u0185\u0186\t\7\2\2\u0186t\3\2\2\2\u0187\u0188\t\20\2\2\u0188"+ + "v\3\2\2\2\u0189\u018a\t\21\2\2\u018ax\3\2\2\2\u018b\u018c\t\22\2\2\u018c"+ + "z\3\2\2\2\u018d\u018e\t\23\2\2\u018e|\3\2\2\2\u018f\u0190\t\24\2\2\u0190"+ + "~\3\2\2\2\u0191\u0192\t\25\2\2\u0192\u0080\3\2\2\2\u0193\u0194\t\26\2"+ + "\2\u0194\u0082\3\2\2\2\u0195\u0196\t\27\2\2\u0196\u0084\3\2\2\2\u0197"+ + "\u0198\t\30\2\2\u0198\u0086\3\2\2\2\u0199\u019a\t\31\2\2\u019a\u0088\3"+ + "\2\2\2\u019b\u019c\t\32\2\2\u019c\u008a\3\2\2\2\u019d\u019e\t\33\2\2\u019e"+ + "\u008c\3\2\2\2\u019f\u01a0\t\34\2\2\u01a0\u008e\3\2\2\2\u01a1\u01a2\t"+ + "\35\2\2\u01a2\u0090\3\2\2\2\u01a3\u01a4\t\36\2\2\u01a4\u0092\3\2\2\2\u01a5"+ + "\u01a6\t\37\2\2\u01a6\u0094\3\2\2\2\u01a7\u01a8\t \2\2\u01a8\u0096\3\2"+ + "\2\2\u01a9\u01aa\t!\2\2\u01aa\u0098\3\2\2\2\u01ab\u01ac\t\"\2\2\u01ac"+ + "\u009a\3\2\2\2\u01ad\u01ae\t#\2\2\u01ae\u009c\3\2\2\2\u01af\u01b0\t$\2"+ + "\2\u01b0\u009e\3\2\2\2\u01b1\u01b2\7\61\2\2\u01b2\u01b3\7\61\2\2\u01b3"+ + "\u01b7\3\2\2\2\u01b4\u01b6\13\2\2\2\u01b5\u01b4\3\2\2\2\u01b6\u01b9\3"+ + "\2\2\2\u01b7\u01b8\3\2\2\2\u01b7\u01b5\3\2\2\2\u01b8\u01ba\3\2\2\2\u01b9"+ + "\u01b7\3\2\2\2\u01ba\u01bb\7\f\2\2\u01bb\u01bc\3\2\2\2\u01bc\u01bd\bP"+ + "\2\2\u01bd\u00a0\3\2\2\2\24\2\u00fa\u0100\u011a\u0120\u0127\u012a\u012d"+ + "\u0133\u0136\u013d\u0140\u0144\u015e\u0167\u0169\u0171\u01b7\3\b\2\2"; + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } +} \ No newline at end of file diff --git a/grammar/grun/java/SLQLexer.tokens b/grammar/grun/java/SLQLexer.tokens new file mode 100644 index 00000000..f0ea930e --- /dev/null +++ b/grammar/grun/java/SLQLexer.tokens @@ -0,0 +1,85 @@ +T__0=1 +T__1=2 +T__2=3 +T__3=4 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +T__11=12 +T__12=13 +T__13=14 +T__14=15 +T__15=16 +T__16=17 +T__17=18 +T__18=19 +T__19=20 +T__20=21 +T__21=22 +T__22=23 +T__23=24 +T__24=25 +ID=26 +WS=27 +LPAR=28 +RPAR=29 +LBRA=30 +RBRA=31 +COMMA=32 +PIPE=33 +COLON=34 +NULL=35 +NN=36 +NUMBER=37 +LT_EQ=38 +LT=39 +GT_EQ=40 +GT=41 +NEQ=42 +EQ=43 +SEL=44 +DATASOURCE=45 +STRING=46 +LINECOMMENT=47 +';'=1 +'*'=2 +'join'=3 +'JOIN'=4 +'j'=5 +'.['=6 +'sum'=7 +'SUM'=8 +'avg'=9 +'AVG'=10 +'count'=11 +'COUNT'=12 +'where'=13 +'WHERE'=14 +'||'=15 +'/'=16 +'%'=17 +'+'=18 +'-'=19 +'<<'=20 +'>>'=21 +'&'=22 +'&&'=23 +'~'=24 +'!'=25 +'('=28 +')'=29 +'['=30 +']'=31 +','=32 +'|'=33 +':'=34 +'<='=38 +'<'=39 +'>='=40 +'>'=41 +'!='=42 +'=='=43 diff --git a/grammar/grun/java/SLQListener.class b/grammar/grun/java/SLQListener.class new file mode 100644 index 00000000..1c08ce41 Binary files /dev/null and b/grammar/grun/java/SLQListener.class differ diff --git a/grammar/grun/java/SLQListener.java b/grammar/grun/java/SLQListener.java new file mode 100644 index 00000000..02443637 --- /dev/null +++ b/grammar/grun/java/SLQListener.java @@ -0,0 +1,169 @@ +// Generated from ../../grammar/SLQ.g4 by ANTLR 4.5.3 +import org.antlr.v4.runtime.tree.ParseTreeListener; + +/** + * This interface defines a complete listener for a parse tree produced by + * {@link SLQParser}. + */ +public interface SLQListener extends ParseTreeListener { + /** + * Enter a parse tree produced by {@link SLQParser#stmtList}. + * @param ctx the parse tree + */ + void enterStmtList(SLQParser.StmtListContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#stmtList}. + * @param ctx the parse tree + */ + void exitStmtList(SLQParser.StmtListContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#query}. + * @param ctx the parse tree + */ + void enterQuery(SLQParser.QueryContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#query}. + * @param ctx the parse tree + */ + void exitQuery(SLQParser.QueryContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#segment}. + * @param ctx the parse tree + */ + void enterSegment(SLQParser.SegmentContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#segment}. + * @param ctx the parse tree + */ + void exitSegment(SLQParser.SegmentContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#element}. + * @param ctx the parse tree + */ + void enterElement(SLQParser.ElementContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#element}. + * @param ctx the parse tree + */ + void exitElement(SLQParser.ElementContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#cmpr}. + * @param ctx the parse tree + */ + void enterCmpr(SLQParser.CmprContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#cmpr}. + * @param ctx the parse tree + */ + void exitCmpr(SLQParser.CmprContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#fn}. + * @param ctx the parse tree + */ + void enterFn(SLQParser.FnContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#fn}. + * @param ctx the parse tree + */ + void exitFn(SLQParser.FnContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#join}. + * @param ctx the parse tree + */ + void enterJoin(SLQParser.JoinContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#join}. + * @param ctx the parse tree + */ + void exitJoin(SLQParser.JoinContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#joinConstraint}. + * @param ctx the parse tree + */ + void enterJoinConstraint(SLQParser.JoinConstraintContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#joinConstraint}. + * @param ctx the parse tree + */ + void exitJoinConstraint(SLQParser.JoinConstraintContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#selElement}. + * @param ctx the parse tree + */ + void enterSelElement(SLQParser.SelElementContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#selElement}. + * @param ctx the parse tree + */ + void exitSelElement(SLQParser.SelElementContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#dsTblElement}. + * @param ctx the parse tree + */ + void enterDsTblElement(SLQParser.DsTblElementContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#dsTblElement}. + * @param ctx the parse tree + */ + void exitDsTblElement(SLQParser.DsTblElementContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#dsElement}. + * @param ctx the parse tree + */ + void enterDsElement(SLQParser.DsElementContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#dsElement}. + * @param ctx the parse tree + */ + void exitDsElement(SLQParser.DsElementContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#rowRange}. + * @param ctx the parse tree + */ + void enterRowRange(SLQParser.RowRangeContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#rowRange}. + * @param ctx the parse tree + */ + void exitRowRange(SLQParser.RowRangeContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#fnName}. + * @param ctx the parse tree + */ + void enterFnName(SLQParser.FnNameContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#fnName}. + * @param ctx the parse tree + */ + void exitFnName(SLQParser.FnNameContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#expr}. + * @param ctx the parse tree + */ + void enterExpr(SLQParser.ExprContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#expr}. + * @param ctx the parse tree + */ + void exitExpr(SLQParser.ExprContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#literal}. + * @param ctx the parse tree + */ + void enterLiteral(SLQParser.LiteralContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#literal}. + * @param ctx the parse tree + */ + void exitLiteral(SLQParser.LiteralContext ctx); + /** + * Enter a parse tree produced by {@link SLQParser#unaryOperator}. + * @param ctx the parse tree + */ + void enterUnaryOperator(SLQParser.UnaryOperatorContext ctx); + /** + * Exit a parse tree produced by {@link SLQParser#unaryOperator}. + * @param ctx the parse tree + */ + void exitUnaryOperator(SLQParser.UnaryOperatorContext ctx); +} \ No newline at end of file diff --git a/grammar/grun/java/SLQParser$CmprContext.class b/grammar/grun/java/SLQParser$CmprContext.class new file mode 100644 index 00000000..8c7f7ba7 Binary files /dev/null and b/grammar/grun/java/SLQParser$CmprContext.class differ diff --git a/grammar/grun/java/SLQParser$DsElementContext.class b/grammar/grun/java/SLQParser$DsElementContext.class new file mode 100644 index 00000000..7386037d Binary files /dev/null and b/grammar/grun/java/SLQParser$DsElementContext.class differ diff --git a/grammar/grun/java/SLQParser$DsTblElementContext.class b/grammar/grun/java/SLQParser$DsTblElementContext.class new file mode 100644 index 00000000..f1a5d72e Binary files /dev/null and b/grammar/grun/java/SLQParser$DsTblElementContext.class differ diff --git a/grammar/grun/java/SLQParser$ElementContext.class b/grammar/grun/java/SLQParser$ElementContext.class new file mode 100644 index 00000000..cc8c931c Binary files /dev/null and b/grammar/grun/java/SLQParser$ElementContext.class differ diff --git a/grammar/grun/java/SLQParser$ExprContext.class b/grammar/grun/java/SLQParser$ExprContext.class new file mode 100644 index 00000000..713bad1d Binary files /dev/null and b/grammar/grun/java/SLQParser$ExprContext.class differ diff --git a/grammar/grun/java/SLQParser$FnContext.class b/grammar/grun/java/SLQParser$FnContext.class new file mode 100644 index 00000000..779a0d17 Binary files /dev/null and b/grammar/grun/java/SLQParser$FnContext.class differ diff --git a/grammar/grun/java/SLQParser$FnNameContext.class b/grammar/grun/java/SLQParser$FnNameContext.class new file mode 100644 index 00000000..f62c5e84 Binary files /dev/null and b/grammar/grun/java/SLQParser$FnNameContext.class differ diff --git a/grammar/grun/java/SLQParser$JoinConstraintContext.class b/grammar/grun/java/SLQParser$JoinConstraintContext.class new file mode 100644 index 00000000..f1604f21 Binary files /dev/null and b/grammar/grun/java/SLQParser$JoinConstraintContext.class differ diff --git a/grammar/grun/java/SLQParser$JoinContext.class b/grammar/grun/java/SLQParser$JoinContext.class new file mode 100644 index 00000000..4db22190 Binary files /dev/null and b/grammar/grun/java/SLQParser$JoinContext.class differ diff --git a/grammar/grun/java/SLQParser$LiteralContext.class b/grammar/grun/java/SLQParser$LiteralContext.class new file mode 100644 index 00000000..487aa7e2 Binary files /dev/null and b/grammar/grun/java/SLQParser$LiteralContext.class differ diff --git a/grammar/grun/java/SLQParser$QueryContext.class b/grammar/grun/java/SLQParser$QueryContext.class new file mode 100644 index 00000000..d3b00734 Binary files /dev/null and b/grammar/grun/java/SLQParser$QueryContext.class differ diff --git a/grammar/grun/java/SLQParser$RowRangeContext.class b/grammar/grun/java/SLQParser$RowRangeContext.class new file mode 100644 index 00000000..b62a045a Binary files /dev/null and b/grammar/grun/java/SLQParser$RowRangeContext.class differ diff --git a/grammar/grun/java/SLQParser$SegmentContext.class b/grammar/grun/java/SLQParser$SegmentContext.class new file mode 100644 index 00000000..3e119500 Binary files /dev/null and b/grammar/grun/java/SLQParser$SegmentContext.class differ diff --git a/grammar/grun/java/SLQParser$SelElementContext.class b/grammar/grun/java/SLQParser$SelElementContext.class new file mode 100644 index 00000000..34fb437c Binary files /dev/null and b/grammar/grun/java/SLQParser$SelElementContext.class differ diff --git a/grammar/grun/java/SLQParser$StmtListContext.class b/grammar/grun/java/SLQParser$StmtListContext.class new file mode 100644 index 00000000..20fcd872 Binary files /dev/null and b/grammar/grun/java/SLQParser$StmtListContext.class differ diff --git a/grammar/grun/java/SLQParser$UnaryOperatorContext.class b/grammar/grun/java/SLQParser$UnaryOperatorContext.class new file mode 100644 index 00000000..1f828410 Binary files /dev/null and b/grammar/grun/java/SLQParser$UnaryOperatorContext.class differ diff --git a/grammar/grun/java/SLQParser.class b/grammar/grun/java/SLQParser.class new file mode 100644 index 00000000..052afdfd Binary files /dev/null and b/grammar/grun/java/SLQParser.class differ diff --git a/grammar/grun/java/SLQParser.java b/grammar/grun/java/SLQParser.java new file mode 100644 index 00000000..f429a436 --- /dev/null +++ b/grammar/grun/java/SLQParser.java @@ -0,0 +1,1412 @@ +// Generated from ../../grammar/SLQ.g4 by ANTLR 4.5.3 +import org.antlr.v4.runtime.atn.*; +import org.antlr.v4.runtime.dfa.DFA; +import org.antlr.v4.runtime.*; +import org.antlr.v4.runtime.misc.*; +import org.antlr.v4.runtime.tree.*; +import java.util.List; +import java.util.Iterator; +import java.util.ArrayList; + +@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"}) +public class SLQParser extends Parser { + static { RuntimeMetaData.checkVersion("4.5.3", RuntimeMetaData.VERSION); } + + protected static final DFA[] _decisionToDFA; + protected static final PredictionContextCache _sharedContextCache = + new PredictionContextCache(); + public static final int + T__0=1, T__1=2, T__2=3, T__3=4, T__4=5, T__5=6, T__6=7, T__7=8, T__8=9, + T__9=10, T__10=11, T__11=12, T__12=13, T__13=14, T__14=15, T__15=16, T__16=17, + T__17=18, T__18=19, T__19=20, T__20=21, T__21=22, T__22=23, T__23=24, + T__24=25, ID=26, WS=27, LPAR=28, RPAR=29, LBRA=30, RBRA=31, COMMA=32, + PIPE=33, COLON=34, NULL=35, NN=36, NUMBER=37, LT_EQ=38, LT=39, GT_EQ=40, + GT=41, NEQ=42, EQ=43, SEL=44, DATASOURCE=45, STRING=46, LINECOMMENT=47; + public static final int + RULE_stmtList = 0, RULE_query = 1, RULE_segment = 2, RULE_element = 3, + RULE_cmpr = 4, RULE_fn = 5, RULE_join = 6, RULE_joinConstraint = 7, RULE_selElement = 8, + RULE_dsTblElement = 9, RULE_dsElement = 10, RULE_rowRange = 11, RULE_fnName = 12, + RULE_expr = 13, RULE_literal = 14, RULE_unaryOperator = 15; + public static final String[] ruleNames = { + "stmtList", "query", "segment", "element", "cmpr", "fn", "join", "joinConstraint", + "selElement", "dsTblElement", "dsElement", "rowRange", "fnName", "expr", + "literal", "unaryOperator" + }; + + private static final String[] _LITERAL_NAMES = { + null, "';'", "'*'", "'join'", "'JOIN'", "'j'", "'.['", "'sum'", "'SUM'", + "'avg'", "'AVG'", "'count'", "'COUNT'", "'where'", "'WHERE'", "'||'", + "'/'", "'%'", "'+'", "'-'", "'<<'", "'>>'", "'&'", "'&&'", "'~'", "'!'", + null, null, "'('", "')'", "'['", "']'", "','", "'|'", "':'", null, null, + null, "'<='", "'<'", "'>='", "'>'", "'!='", "'=='" + }; + private static final String[] _SYMBOLIC_NAMES = { + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, null, null, null, + null, null, "ID", "WS", "LPAR", "RPAR", "LBRA", "RBRA", "COMMA", "PIPE", + "COLON", "NULL", "NN", "NUMBER", "LT_EQ", "LT", "GT_EQ", "GT", "NEQ", + "EQ", "SEL", "DATASOURCE", "STRING", "LINECOMMENT" + }; + public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES); + + /** + * @deprecated Use {@link #VOCABULARY} instead. + */ + @Deprecated + public static final String[] tokenNames; + static { + tokenNames = new String[_SYMBOLIC_NAMES.length]; + for (int i = 0; i < tokenNames.length; i++) { + tokenNames[i] = VOCABULARY.getLiteralName(i); + if (tokenNames[i] == null) { + tokenNames[i] = VOCABULARY.getSymbolicName(i); + } + + if (tokenNames[i] == null) { + tokenNames[i] = ""; + } + } + } + + @Override + @Deprecated + public String[] getTokenNames() { + return tokenNames; + } + + @Override + + public Vocabulary getVocabulary() { + return VOCABULARY; + } + + @Override + public String getGrammarFileName() { return "SLQ.g4"; } + + @Override + public String[] getRuleNames() { return ruleNames; } + + @Override + public String getSerializedATN() { return _serializedATN; } + + @Override + public ATN getATN() { return _ATN; } + + public SLQParser(TokenStream input) { + super(input); + _interp = new ParserATNSimulator(this,_ATN,_decisionToDFA,_sharedContextCache); + } + public static class StmtListContext extends ParserRuleContext { + public List query() { + return getRuleContexts(QueryContext.class); + } + public QueryContext query(int i) { + return getRuleContext(QueryContext.class,i); + } + public StmtListContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_stmtList; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterStmtList(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitStmtList(this); + } + } + + public final StmtListContext stmtList() throws RecognitionException { + StmtListContext _localctx = new StmtListContext(_ctx, getState()); + enterRule(_localctx, 0, RULE_stmtList); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(35); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__0) { + { + { + setState(32); + match(T__0); + } + } + setState(37); + _errHandler.sync(this); + _la = _input.LA(1); + } + setState(38); + query(); + setState(47); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,2,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + { + { + setState(40); + _errHandler.sync(this); + _la = _input.LA(1); + do { + { + { + setState(39); + match(T__0); + } + } + setState(42); + _errHandler.sync(this); + _la = _input.LA(1); + } while ( _la==T__0 ); + setState(44); + query(); + } + } + } + setState(49); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,2,_ctx); + } + setState(53); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==T__0) { + { + { + setState(50); + match(T__0); + } + } + setState(55); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class QueryContext extends ParserRuleContext { + public List segment() { + return getRuleContexts(SegmentContext.class); + } + public SegmentContext segment(int i) { + return getRuleContext(SegmentContext.class,i); + } + public QueryContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_query; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterQuery(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitQuery(this); + } + } + + public final QueryContext query() throws RecognitionException { + QueryContext _localctx = new QueryContext(_ctx, getState()); + enterRule(_localctx, 2, RULE_query); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(56); + segment(); + setState(61); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==PIPE) { + { + { + setState(57); + match(PIPE); + setState(58); + segment(); + } + } + setState(63); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SegmentContext extends ParserRuleContext { + public List element() { + return getRuleContexts(ElementContext.class); + } + public ElementContext element(int i) { + return getRuleContext(ElementContext.class,i); + } + public SegmentContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_segment; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterSegment(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitSegment(this); + } + } + + public final SegmentContext segment() throws RecognitionException { + SegmentContext _localctx = new SegmentContext(_ctx, getState()); + enterRule(_localctx, 4, RULE_segment); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + { + setState(64); + element(); + } + setState(69); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(65); + match(COMMA); + setState(66); + element(); + } + } + setState(71); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ElementContext extends ParserRuleContext { + public DsTblElementContext dsTblElement() { + return getRuleContext(DsTblElementContext.class,0); + } + public DsElementContext dsElement() { + return getRuleContext(DsElementContext.class,0); + } + public SelElementContext selElement() { + return getRuleContext(SelElementContext.class,0); + } + public JoinContext join() { + return getRuleContext(JoinContext.class,0); + } + public RowRangeContext rowRange() { + return getRuleContext(RowRangeContext.class,0); + } + public ExprContext expr() { + return getRuleContext(ExprContext.class,0); + } + public ElementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_element; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterElement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitElement(this); + } + } + + public final ElementContext element() throws RecognitionException { + ElementContext _localctx = new ElementContext(_ctx, getState()); + enterRule(_localctx, 6, RULE_element); + try { + setState(78); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,6,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(72); + dsTblElement(); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(73); + dsElement(); + } + break; + case 3: + enterOuterAlt(_localctx, 3); + { + setState(74); + selElement(); + } + break; + case 4: + enterOuterAlt(_localctx, 4); + { + setState(75); + join(); + } + break; + case 5: + enterOuterAlt(_localctx, 5); + { + setState(76); + rowRange(); + } + break; + case 6: + enterOuterAlt(_localctx, 6); + { + setState(77); + expr(0); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class CmprContext extends ParserRuleContext { + public TerminalNode LT_EQ() { return getToken(SLQParser.LT_EQ, 0); } + public TerminalNode LT() { return getToken(SLQParser.LT, 0); } + public TerminalNode GT_EQ() { return getToken(SLQParser.GT_EQ, 0); } + public TerminalNode GT() { return getToken(SLQParser.GT, 0); } + public TerminalNode EQ() { return getToken(SLQParser.EQ, 0); } + public TerminalNode NEQ() { return getToken(SLQParser.NEQ, 0); } + public CmprContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_cmpr; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterCmpr(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitCmpr(this); + } + } + + public final CmprContext cmpr() throws RecognitionException { + CmprContext _localctx = new CmprContext(_ctx, getState()); + enterRule(_localctx, 8, RULE_cmpr); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(80); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << LT_EQ) | (1L << LT) | (1L << GT_EQ) | (1L << GT) | (1L << NEQ) | (1L << EQ))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FnContext extends ParserRuleContext { + public FnNameContext fnName() { + return getRuleContext(FnNameContext.class,0); + } + public List expr() { + return getRuleContexts(ExprContext.class); + } + public ExprContext expr(int i) { + return getRuleContext(ExprContext.class,i); + } + public FnContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fn; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterFn(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitFn(this); + } + } + + public final FnContext fn() throws RecognitionException { + FnContext _localctx = new FnContext(_ctx, getState()); + enterRule(_localctx, 10, RULE_fn); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(82); + fnName(); + setState(83); + match(LPAR); + setState(93); + switch (_input.LA(1)) { + case T__6: + case T__7: + case T__8: + case T__9: + case T__10: + case T__11: + case T__12: + case T__13: + case T__17: + case T__18: + case T__23: + case T__24: + case NULL: + case NN: + case NUMBER: + case SEL: + case STRING: + { + setState(84); + expr(0); + setState(89); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(85); + match(COMMA); + setState(86); + expr(0); + } + } + setState(91); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + break; + case T__1: + { + setState(92); + match(T__1); + } + break; + case RPAR: + break; + default: + throw new NoViableAltException(this); + } + setState(95); + match(RPAR); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class JoinContext extends ParserRuleContext { + public JoinConstraintContext joinConstraint() { + return getRuleContext(JoinConstraintContext.class,0); + } + public JoinContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_join; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterJoin(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitJoin(this); + } + } + + public final JoinContext join() throws RecognitionException { + JoinContext _localctx = new JoinContext(_ctx, getState()); + enterRule(_localctx, 12, RULE_join); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(97); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__2) | (1L << T__3) | (1L << T__4))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + setState(98); + match(LPAR); + setState(99); + joinConstraint(); + setState(100); + match(RPAR); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class JoinConstraintContext extends ParserRuleContext { + public List SEL() { return getTokens(SLQParser.SEL); } + public TerminalNode SEL(int i) { + return getToken(SLQParser.SEL, i); + } + public CmprContext cmpr() { + return getRuleContext(CmprContext.class,0); + } + public JoinConstraintContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_joinConstraint; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterJoinConstraint(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitJoinConstraint(this); + } + } + + public final JoinConstraintContext joinConstraint() throws RecognitionException { + JoinConstraintContext _localctx = new JoinConstraintContext(_ctx, getState()); + enterRule(_localctx, 14, RULE_joinConstraint); + try { + setState(107); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,9,_ctx) ) { + case 1: + enterOuterAlt(_localctx, 1); + { + setState(102); + match(SEL); + setState(103); + cmpr(); + setState(104); + match(SEL); + } + break; + case 2: + enterOuterAlt(_localctx, 2); + { + setState(106); + match(SEL); + } + break; + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class SelElementContext extends ParserRuleContext { + public TerminalNode SEL() { return getToken(SLQParser.SEL, 0); } + public SelElementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_selElement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterSelElement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitSelElement(this); + } + } + + public final SelElementContext selElement() throws RecognitionException { + SelElementContext _localctx = new SelElementContext(_ctx, getState()); + enterRule(_localctx, 16, RULE_selElement); + try { + enterOuterAlt(_localctx, 1); + { + setState(109); + match(SEL); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DsTblElementContext extends ParserRuleContext { + public TerminalNode DATASOURCE() { return getToken(SLQParser.DATASOURCE, 0); } + public TerminalNode SEL() { return getToken(SLQParser.SEL, 0); } + public DsTblElementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dsTblElement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterDsTblElement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitDsTblElement(this); + } + } + + public final DsTblElementContext dsTblElement() throws RecognitionException { + DsTblElementContext _localctx = new DsTblElementContext(_ctx, getState()); + enterRule(_localctx, 18, RULE_dsTblElement); + try { + enterOuterAlt(_localctx, 1); + { + setState(111); + match(DATASOURCE); + setState(112); + match(SEL); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class DsElementContext extends ParserRuleContext { + public TerminalNode DATASOURCE() { return getToken(SLQParser.DATASOURCE, 0); } + public DsElementContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_dsElement; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterDsElement(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitDsElement(this); + } + } + + public final DsElementContext dsElement() throws RecognitionException { + DsElementContext _localctx = new DsElementContext(_ctx, getState()); + enterRule(_localctx, 20, RULE_dsElement); + try { + enterOuterAlt(_localctx, 1); + { + setState(114); + match(DATASOURCE); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class RowRangeContext extends ParserRuleContext { + public List NN() { return getTokens(SLQParser.NN); } + public TerminalNode NN(int i) { + return getToken(SLQParser.NN, i); + } + public TerminalNode COLON() { return getToken(SLQParser.COLON, 0); } + public RowRangeContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_rowRange; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterRowRange(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitRowRange(this); + } + } + + public final RowRangeContext rowRange() throws RecognitionException { + RowRangeContext _localctx = new RowRangeContext(_ctx, getState()); + enterRule(_localctx, 22, RULE_rowRange); + try { + enterOuterAlt(_localctx, 1); + { + setState(116); + match(T__5); + setState(125); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,10,_ctx) ) { + case 1: + { + setState(117); + match(NN); + setState(118); + match(COLON); + setState(119); + match(NN); + } + break; + case 2: + { + setState(120); + match(NN); + setState(121); + match(COLON); + } + break; + case 3: + { + setState(122); + match(COLON); + setState(123); + match(NN); + } + break; + case 4: + { + setState(124); + match(NN); + } + break; + } + setState(127); + match(RBRA); + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class FnNameContext extends ParserRuleContext { + public FnNameContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_fnName; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterFnName(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitFnName(this); + } + } + + public final FnNameContext fnName() throws RecognitionException { + FnNameContext _localctx = new FnNameContext(_ctx, getState()); + enterRule(_localctx, 24, RULE_fnName); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(129); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__6) | (1L << T__7) | (1L << T__8) | (1L << T__9) | (1L << T__10) | (1L << T__11) | (1L << T__12) | (1L << T__13))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class ExprContext extends ParserRuleContext { + public TerminalNode SEL() { return getToken(SLQParser.SEL, 0); } + public LiteralContext literal() { + return getRuleContext(LiteralContext.class,0); + } + public UnaryOperatorContext unaryOperator() { + return getRuleContext(UnaryOperatorContext.class,0); + } + public List expr() { + return getRuleContexts(ExprContext.class); + } + public ExprContext expr(int i) { + return getRuleContext(ExprContext.class,i); + } + public FnNameContext fnName() { + return getRuleContext(FnNameContext.class,0); + } + public ExprContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_expr; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterExpr(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitExpr(this); + } + } + + public final ExprContext expr() throws RecognitionException { + return expr(0); + } + + private ExprContext expr(int _p) throws RecognitionException { + ParserRuleContext _parentctx = _ctx; + int _parentState = getState(); + ExprContext _localctx = new ExprContext(_ctx, _parentState); + ExprContext _prevctx = _localctx; + int _startState = 26; + enterRecursionRule(_localctx, 26, RULE_expr, _p); + int _la; + try { + int _alt; + enterOuterAlt(_localctx, 1); + { + setState(152); + switch (_input.LA(1)) { + case SEL: + { + setState(132); + match(SEL); + } + break; + case NULL: + case NN: + case NUMBER: + case STRING: + { + setState(133); + literal(); + } + break; + case T__17: + case T__18: + case T__23: + case T__24: + { + setState(134); + unaryOperator(); + setState(135); + expr(9); + } + break; + case T__6: + case T__7: + case T__8: + case T__9: + case T__10: + case T__11: + case T__12: + case T__13: + { + setState(137); + fnName(); + setState(138); + match(LPAR); + setState(148); + switch (_input.LA(1)) { + case T__6: + case T__7: + case T__8: + case T__9: + case T__10: + case T__11: + case T__12: + case T__13: + case T__17: + case T__18: + case T__23: + case T__24: + case NULL: + case NN: + case NUMBER: + case SEL: + case STRING: + { + setState(139); + expr(0); + setState(144); + _errHandler.sync(this); + _la = _input.LA(1); + while (_la==COMMA) { + { + { + setState(140); + match(COMMA); + setState(141); + expr(0); + } + } + setState(146); + _errHandler.sync(this); + _la = _input.LA(1); + } + } + break; + case T__1: + { + setState(147); + match(T__1); + } + break; + case RPAR: + break; + default: + throw new NoViableAltException(this); + } + setState(150); + match(RPAR); + } + break; + default: + throw new NoViableAltException(this); + } + _ctx.stop = _input.LT(-1); + setState(181); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { + if ( _alt==1 ) { + if ( _parseListeners!=null ) triggerExitRuleEvent(); + _prevctx = _localctx; + { + setState(179); + _errHandler.sync(this); + switch ( getInterpreter().adaptivePredict(_input,15,_ctx) ) { + case 1: + { + _localctx = new ExprContext(_parentctx, _parentState); + pushNewRecursionContext(_localctx, _startState, RULE_expr); + setState(154); + if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); + setState(155); + match(T__14); + setState(156); + expr(9); + } + break; + case 2: + { + _localctx = new ExprContext(_parentctx, _parentState); + pushNewRecursionContext(_localctx, _startState, RULE_expr); + setState(157); + if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); + setState(158); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__1) | (1L << T__15) | (1L << T__16))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + setState(159); + expr(8); + } + break; + case 3: + { + _localctx = new ExprContext(_parentctx, _parentState); + pushNewRecursionContext(_localctx, _startState, RULE_expr); + setState(160); + if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); + setState(161); + _la = _input.LA(1); + if ( !(_la==T__17 || _la==T__18) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + setState(162); + expr(7); + } + break; + case 4: + { + _localctx = new ExprContext(_parentctx, _parentState); + pushNewRecursionContext(_localctx, _startState, RULE_expr); + setState(163); + if (!(precpred(_ctx, 5))) throw new FailedPredicateException(this, "precpred(_ctx, 5)"); + setState(164); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__19) | (1L << T__20) | (1L << T__21))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + setState(165); + expr(6); + } + break; + case 5: + { + _localctx = new ExprContext(_parentctx, _parentState); + pushNewRecursionContext(_localctx, _startState, RULE_expr); + setState(166); + if (!(precpred(_ctx, 4))) throw new FailedPredicateException(this, "precpred(_ctx, 4)"); + setState(167); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << LT_EQ) | (1L << LT) | (1L << GT_EQ) | (1L << GT))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + setState(168); + expr(5); + } + break; + case 6: + { + _localctx = new ExprContext(_parentctx, _parentState); + pushNewRecursionContext(_localctx, _startState, RULE_expr); + setState(169); + if (!(precpred(_ctx, 3))) throw new FailedPredicateException(this, "precpred(_ctx, 3)"); + setState(173); + switch (_input.LA(1)) { + case EQ: + { + setState(170); + match(EQ); + } + break; + case NEQ: + { + setState(171); + match(NEQ); + } + break; + case T__6: + case T__7: + case T__8: + case T__9: + case T__10: + case T__11: + case T__12: + case T__13: + case T__17: + case T__18: + case T__23: + case T__24: + case NULL: + case NN: + case NUMBER: + case SEL: + case STRING: + { + } + break; + default: + throw new NoViableAltException(this); + } + setState(175); + expr(4); + } + break; + case 7: + { + _localctx = new ExprContext(_parentctx, _parentState); + pushNewRecursionContext(_localctx, _startState, RULE_expr); + setState(176); + if (!(precpred(_ctx, 2))) throw new FailedPredicateException(this, "precpred(_ctx, 2)"); + setState(177); + match(T__22); + setState(178); + expr(3); + } + break; + } + } + } + setState(183); + _errHandler.sync(this); + _alt = getInterpreter().adaptivePredict(_input,16,_ctx); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + unrollRecursionContexts(_parentctx); + } + return _localctx; + } + + public static class LiteralContext extends ParserRuleContext { + public TerminalNode NN() { return getToken(SLQParser.NN, 0); } + public TerminalNode NUMBER() { return getToken(SLQParser.NUMBER, 0); } + public TerminalNode STRING() { return getToken(SLQParser.STRING, 0); } + public TerminalNode NULL() { return getToken(SLQParser.NULL, 0); } + public LiteralContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_literal; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterLiteral(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitLiteral(this); + } + } + + public final LiteralContext literal() throws RecognitionException { + LiteralContext _localctx = new LiteralContext(_ctx, getState()); + enterRule(_localctx, 28, RULE_literal); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(184); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << NULL) | (1L << NN) | (1L << NUMBER) | (1L << STRING))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public static class UnaryOperatorContext extends ParserRuleContext { + public UnaryOperatorContext(ParserRuleContext parent, int invokingState) { + super(parent, invokingState); + } + @Override public int getRuleIndex() { return RULE_unaryOperator; } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).enterUnaryOperator(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof SLQListener ) ((SLQListener)listener).exitUnaryOperator(this); + } + } + + public final UnaryOperatorContext unaryOperator() throws RecognitionException { + UnaryOperatorContext _localctx = new UnaryOperatorContext(_ctx, getState()); + enterRule(_localctx, 30, RULE_unaryOperator); + int _la; + try { + enterOuterAlt(_localctx, 1); + { + setState(186); + _la = _input.LA(1); + if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << T__17) | (1L << T__18) | (1L << T__23) | (1L << T__24))) != 0)) ) { + _errHandler.recoverInline(this); + } else { + consume(); + } + } + } + catch (RecognitionException re) { + _localctx.exception = re; + _errHandler.reportError(this, re); + _errHandler.recover(this, re); + } + finally { + exitRule(); + } + return _localctx; + } + + public boolean sempred(RuleContext _localctx, int ruleIndex, int predIndex) { + switch (ruleIndex) { + case 13: + return expr_sempred((ExprContext)_localctx, predIndex); + } + return true; + } + private boolean expr_sempred(ExprContext _localctx, int predIndex) { + switch (predIndex) { + case 0: + return precpred(_ctx, 8); + case 1: + return precpred(_ctx, 7); + case 2: + return precpred(_ctx, 6); + case 3: + return precpred(_ctx, 5); + case 4: + return precpred(_ctx, 4); + case 5: + return precpred(_ctx, 3); + case 6: + return precpred(_ctx, 2); + } + return true; + } + + public static final String _serializedATN = + "\3\u0430\ud6d1\u8206\uad2d\u4417\uaef1\u8d80\uaadd\3\61\u00bf\4\2\t\2"+ + "\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ + "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\3\2\7\2"+ + "$\n\2\f\2\16\2\'\13\2\3\2\3\2\6\2+\n\2\r\2\16\2,\3\2\7\2\60\n\2\f\2\16"+ + "\2\63\13\2\3\2\7\2\66\n\2\f\2\16\29\13\2\3\3\3\3\3\3\7\3>\n\3\f\3\16\3"+ + "A\13\3\3\4\3\4\3\4\7\4F\n\4\f\4\16\4I\13\4\3\5\3\5\3\5\3\5\3\5\3\5\5\5"+ + "Q\n\5\3\6\3\6\3\7\3\7\3\7\3\7\3\7\7\7Z\n\7\f\7\16\7]\13\7\3\7\5\7`\n\7"+ + "\3\7\3\7\3\b\3\b\3\b\3\b\3\b\3\t\3\t\3\t\3\t\3\t\5\tn\n\t\3\n\3\n\3\13"+ + "\3\13\3\13\3\f\3\f\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\3\r\5\r\u0080\n\r\3"+ + "\r\3\r\3\16\3\16\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17"+ + "\7\17\u0091\n\17\f\17\16\17\u0094\13\17\3\17\5\17\u0097\n\17\3\17\3\17"+ + "\5\17\u009b\n\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17"+ + "\3\17\3\17\3\17\3\17\3\17\3\17\3\17\3\17\5\17\u00b0\n\17\3\17\3\17\3\17"+ + "\3\17\7\17\u00b6\n\17\f\17\16\17\u00b9\13\17\3\20\3\20\3\21\3\21\3\21"+ + "\2\3\34\22\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \2\13\3\2(-\3\2\5\7"+ + "\3\2\t\20\4\2\4\4\22\23\3\2\24\25\3\2\26\30\3\2(+\4\2%\'\60\60\4\2\24"+ + "\25\32\33\u00d0\2%\3\2\2\2\4:\3\2\2\2\6B\3\2\2\2\bP\3\2\2\2\nR\3\2\2\2"+ + "\fT\3\2\2\2\16c\3\2\2\2\20m\3\2\2\2\22o\3\2\2\2\24q\3\2\2\2\26t\3\2\2"+ + "\2\30v\3\2\2\2\32\u0083\3\2\2\2\34\u009a\3\2\2\2\36\u00ba\3\2\2\2 \u00bc"+ + "\3\2\2\2\"$\7\3\2\2#\"\3\2\2\2$\'\3\2\2\2%#\3\2\2\2%&\3\2\2\2&(\3\2\2"+ + "\2\'%\3\2\2\2(\61\5\4\3\2)+\7\3\2\2*)\3\2\2\2+,\3\2\2\2,*\3\2\2\2,-\3"+ + "\2\2\2-.\3\2\2\2.\60\5\4\3\2/*\3\2\2\2\60\63\3\2\2\2\61/\3\2\2\2\61\62"+ + "\3\2\2\2\62\67\3\2\2\2\63\61\3\2\2\2\64\66\7\3\2\2\65\64\3\2\2\2\669\3"+ + "\2\2\2\67\65\3\2\2\2\678\3\2\2\28\3\3\2\2\29\67\3\2\2\2:?\5\6\4\2;<\7"+ + "#\2\2<>\5\6\4\2=;\3\2\2\2>A\3\2\2\2?=\3\2\2\2?@\3\2\2\2@\5\3\2\2\2A?\3"+ + "\2\2\2BG\5\b\5\2CD\7\"\2\2DF\5\b\5\2EC\3\2\2\2FI\3\2\2\2GE\3\2\2\2GH\3"+ + "\2\2\2H\7\3\2\2\2IG\3\2\2\2JQ\5\24\13\2KQ\5\26\f\2LQ\5\22\n\2MQ\5\16\b"+ + "\2NQ\5\30\r\2OQ\5\34\17\2PJ\3\2\2\2PK\3\2\2\2PL\3\2\2\2PM\3\2\2\2PN\3"+ + "\2\2\2PO\3\2\2\2Q\t\3\2\2\2RS\t\2\2\2S\13\3\2\2\2TU\5\32\16\2U_\7\36\2"+ + "\2V[\5\34\17\2WX\7\"\2\2XZ\5\34\17\2YW\3\2\2\2Z]\3\2\2\2[Y\3\2\2\2[\\"+ + "\3\2\2\2\\`\3\2\2\2][\3\2\2\2^`\7\4\2\2_V\3\2\2\2_^\3\2\2\2_`\3\2\2\2"+ + "`a\3\2\2\2ab\7\37\2\2b\r\3\2\2\2cd\t\3\2\2de\7\36\2\2ef\5\20\t\2fg\7\37"+ + "\2\2g\17\3\2\2\2hi\7.\2\2ij\5\n\6\2jk\7.\2\2kn\3\2\2\2ln\7.\2\2mh\3\2"+ + "\2\2ml\3\2\2\2n\21\3\2\2\2op\7.\2\2p\23\3\2\2\2qr\7/\2\2rs\7.\2\2s\25"+ + "\3\2\2\2tu\7/\2\2u\27\3\2\2\2v\177\7\b\2\2wx\7&\2\2xy\7$\2\2y\u0080\7"+ + "&\2\2z{\7&\2\2{\u0080\7$\2\2|}\7$\2\2}\u0080\7&\2\2~\u0080\7&\2\2\177"+ + "w\3\2\2\2\177z\3\2\2\2\177|\3\2\2\2\177~\3\2\2\2\177\u0080\3\2\2\2\u0080"+ + "\u0081\3\2\2\2\u0081\u0082\7!\2\2\u0082\31\3\2\2\2\u0083\u0084\t\4\2\2"+ + "\u0084\33\3\2\2\2\u0085\u0086\b\17\1\2\u0086\u009b\7.\2\2\u0087\u009b"+ + "\5\36\20\2\u0088\u0089\5 \21\2\u0089\u008a\5\34\17\13\u008a\u009b\3\2"+ + "\2\2\u008b\u008c\5\32\16\2\u008c\u0096\7\36\2\2\u008d\u0092\5\34\17\2"+ + "\u008e\u008f\7\"\2\2\u008f\u0091\5\34\17\2\u0090\u008e\3\2\2\2\u0091\u0094"+ + "\3\2\2\2\u0092\u0090\3\2\2\2\u0092\u0093\3\2\2\2\u0093\u0097\3\2\2\2\u0094"+ + "\u0092\3\2\2\2\u0095\u0097\7\4\2\2\u0096\u008d\3\2\2\2\u0096\u0095\3\2"+ + "\2\2\u0096\u0097\3\2\2\2\u0097\u0098\3\2\2\2\u0098\u0099\7\37\2\2\u0099"+ + "\u009b\3\2\2\2\u009a\u0085\3\2\2\2\u009a\u0087\3\2\2\2\u009a\u0088\3\2"+ + "\2\2\u009a\u008b\3\2\2\2\u009b\u00b7\3\2\2\2\u009c\u009d\f\n\2\2\u009d"+ + "\u009e\7\21\2\2\u009e\u00b6\5\34\17\13\u009f\u00a0\f\t\2\2\u00a0\u00a1"+ + "\t\5\2\2\u00a1\u00b6\5\34\17\n\u00a2\u00a3\f\b\2\2\u00a3\u00a4\t\6\2\2"+ + "\u00a4\u00b6\5\34\17\t\u00a5\u00a6\f\7\2\2\u00a6\u00a7\t\7\2\2\u00a7\u00b6"+ + "\5\34\17\b\u00a8\u00a9\f\6\2\2\u00a9\u00aa\t\b\2\2\u00aa\u00b6\5\34\17"+ + "\7\u00ab\u00af\f\5\2\2\u00ac\u00b0\7-\2\2\u00ad\u00b0\7,\2\2\u00ae\u00b0"+ + "\3\2\2\2\u00af\u00ac\3\2\2\2\u00af\u00ad\3\2\2\2\u00af\u00ae\3\2\2\2\u00b0"+ + "\u00b1\3\2\2\2\u00b1\u00b6\5\34\17\6\u00b2\u00b3\f\4\2\2\u00b3\u00b4\7"+ + "\31\2\2\u00b4\u00b6\5\34\17\5\u00b5\u009c\3\2\2\2\u00b5\u009f\3\2\2\2"+ + "\u00b5\u00a2\3\2\2\2\u00b5\u00a5\3\2\2\2\u00b5\u00a8\3\2\2\2\u00b5\u00ab"+ + "\3\2\2\2\u00b5\u00b2\3\2\2\2\u00b6\u00b9\3\2\2\2\u00b7\u00b5\3\2\2\2\u00b7"+ + "\u00b8\3\2\2\2\u00b8\35\3\2\2\2\u00b9\u00b7\3\2\2\2\u00ba\u00bb\t\t\2"+ + "\2\u00bb\37\3\2\2\2\u00bc\u00bd\t\n\2\2\u00bd!\3\2\2\2\23%,\61\67?GP["+ + "_m\177\u0092\u0096\u009a\u00af\u00b5\u00b7"; + public static final ATN _ATN = + new ATNDeserializer().deserialize(_serializedATN.toCharArray()); + static { + _decisionToDFA = new DFA[_ATN.getNumberOfDecisions()]; + for (int i = 0; i < _ATN.getNumberOfDecisions(); i++) { + _decisionToDFA[i] = new DFA(_ATN.getDecisionState(i), i); + } + } +} \ No newline at end of file diff --git a/test/grun/join-1.test.slq b/grammar/grun/join-1.test.slq similarity index 100% rename from test/grun/join-1.test.slq rename to grammar/grun/join-1.test.slq diff --git a/test/grun/join-2.test.slq b/grammar/grun/join-2.test.slq similarity index 100% rename from test/grun/join-2.test.slq rename to grammar/grun/join-2.test.slq diff --git a/test/grun/range-1.test.slq b/grammar/grun/range-1.test.slq similarity index 100% rename from test/grun/range-1.test.slq rename to grammar/grun/range-1.test.slq diff --git a/test/grun/range-2.test.slq b/grammar/grun/range-2.test.slq similarity index 100% rename from test/grun/range-2.test.slq rename to grammar/grun/range-2.test.slq diff --git a/test/grun/range-3.test.slq b/grammar/grun/range-3.test.slq similarity index 100% rename from test/grun/range-3.test.slq rename to grammar/grun/range-3.test.slq diff --git a/test/grun/range-4.test.slq b/grammar/grun/range-4.test.slq similarity index 100% rename from test/grun/range-4.test.slq rename to grammar/grun/range-4.test.slq diff --git a/test/grun/range-5.test.slq b/grammar/grun/range-5.test.slq similarity index 100% rename from test/grun/range-5.test.slq rename to grammar/grun/range-5.test.slq diff --git a/test/grun/range-6.test.slq b/grammar/grun/range-6.test.slq similarity index 100% rename from test/grun/range-6.test.slq rename to grammar/grun/range-6.test.slq diff --git a/test/grun/range-7.test.slq b/grammar/grun/range-7.test.slq similarity index 100% rename from test/grun/range-7.test.slq rename to grammar/grun/range-7.test.slq diff --git a/test/grun/select-1.test.slq b/grammar/grun/select-1.test.slq similarity index 100% rename from test/grun/select-1.test.slq rename to grammar/grun/select-1.test.slq diff --git a/test/grun/select-datasource-tbl.test.slq b/grammar/grun/select-datasource-tbl.test.slq similarity index 100% rename from test/grun/select-datasource-tbl.test.slq rename to grammar/grun/select-datasource-tbl.test.slq diff --git a/libsq/ast/ast.go b/libsq/ast/ast.go index a157f95f..2f615815 100644 --- a/libsq/ast/ast.go +++ b/libsq/ast/ast.go @@ -1,18 +1,83 @@ +// Package ast holds types and functionality for the SLQ AST. +// +// Note: the SLQ language implementation is fairly rudimentary +// and has some incomplete functionality. package ast import ( - "fmt" + "github.com/antlr/antlr4/runtime/Go/antlr" - "github.com/neilotoole/go-lg/lg" + "github.com/neilotoole/lg" + "github.com/neilotoole/sq/libsq/errz" "github.com/neilotoole/sq/libsq/slq" - "github.com/pboyer/antlr4/runtime/Go/antlr" ) -// AST is sq's Abstract Syntax Tree. +// Parse parses the SLQ input string and builds the AST. +func Parse(log lg.Log, input string) (*AST, error) { + ptree, err := parseSLQ(log, input) + if err != nil { + return nil, err + } + + atree, err := buildAST(log, ptree) + if err != nil { + return nil, err + } + + return atree, nil +} + +// buildAST constructs sq's AST from a parse tree. +func buildAST(log lg.Log, query slq.IQueryContext) (*AST, error) { + if query == nil { + return nil, errorf("query is nil") + } + + q, ok := query.(*slq.QueryContext) + if !ok { + return nil, errorf("unable to convert %T to *parser.QueryContext", query) + } + + v := &parseTreeVisitor{log: lg.Discard()} + er := q.Accept(v) + if er != nil { + return nil, er.(error) + } + + err := NewWalker(log, v.AST).AddVisitor(typeSelector, narrowTblSel).Walk() + if err != nil { + return nil, err + } + + err = NewWalker(log, v.AST).AddVisitor(typeSelector, narrowColSel).Walk() + if err != nil { + return nil, err + } + + err = NewWalker(log, v.AST).AddVisitor(typeJoin, determineJoinTables).Walk() + if err != nil { + return nil, err + } + + err = NewWalker(log, v.AST).AddVisitor(typeRowRange, visitCheckRowRange).Walk() + if err != nil { + return nil, err + } + + err = NewWalker(log, v.AST).AddVisitor(typeExpr, findWhereClause).Walk() + if err != nil { + return nil, err + } + + return v.AST, nil +} + +var _ Node = (*AST)(nil) + +// AST is the Abstract Syntax Tree. It is the root node of a SQL query/stmt. type AST struct { - ctx *slq.QueryContext - Datasource string - segs []*Segment + ctx *slq.QueryContext + segs []*Segment } func (a *AST) Parent() Node { @@ -38,7 +103,6 @@ func (a *AST) Segments() []*Segment { } func (a *AST) AddChild(node Node) error { - seg, ok := node.(*Segment) if !ok { return errorf("expected *Segment but got: %T", node) @@ -49,13 +113,12 @@ func (a *AST) AddChild(node Node) error { } func (a *AST) SetChildren(children []Node) error { - segs := make([]*Segment, len(children)) for i, child := range children { seg, ok := child.(*Segment) if !ok { - return errorf("expected child of type %s, but got: %T", TypeSegment, child) + return errorf("expected child of type %s, but got: %T", typeSegment, child) } segs[i] = seg @@ -70,7 +133,6 @@ func (a *AST) Context() antlr.ParseTree { } func (a *AST) SetContext(ctx antlr.ParseTree) error { - qCtx, ok := ctx.(*slq.QueryContext) if !ok { return errorf("expected *parser.QueryContext, but got %T", ctx) @@ -81,9 +143,7 @@ func (a *AST) SetContext(ctx antlr.ParseTree) error { } func (a *AST) String() string { - return nodeString(a) - } func (a *AST) Text() string { @@ -92,21 +152,13 @@ func (a *AST) Text() string { // AddSegment appends seg to the AST. func (a *AST) AddSegment(seg *Segment) { - seg.SetParent(a) + _ = seg.SetParent(a) a.segs = append(a.segs, seg) } -// Error is an error generated within the ast package. -type Error struct { - msg string -} - -func (e *Error) Error() string { - return e.msg -} - -func errorf(format string, v ...interface{}) *Error { - err := &Error{msg: fmt.Sprintf(format, v...)} - lg.Depth(1).Warnf("error created: %s", err.msg) - return err +// errorf builds an error. Error creation for this package +// was centralized here in the expectation that an AST-specific +// error type (annotated appropriately) would be returned. +func errorf(format string, v ...interface{}) error { + return errz.Errorf(format, v...) } diff --git a/libsq/ast/ast_builder.go b/libsq/ast/ast_builder.go deleted file mode 100644 index 4879ba09..00000000 --- a/libsq/ast/ast_builder.go +++ /dev/null @@ -1,69 +0,0 @@ -package ast - -import ( - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/slq" -) - -// NewBuilder returns a new AST builder. -func NewBuilder(srcs *drvr.SourceSet) *Builder { - return &Builder{srcs} -} - -// Builder constructs sq's AST from a parse tree. -type Builder struct { - // srcs is not currently used by Builder, but in the future it will - // be used to provide more intelligence in the build/error-checking process. - srcs *drvr.SourceSet -} - -func (ab *Builder) Build(query slq.IQueryContext) (*AST, error) { - - q, ok := query.(*slq.QueryContext) - if !ok { - return nil, errorf("unable to convert %T to *parser.QueryContext", query) - } - - v := &ParseTreeVisitor{} - q.Accept(v) - if v.Err != nil { - return nil, v.Err - } - - lg.Debugf("After ParseTreeVisitor:\n%s", sprintNodeTree(v.ast)) - - insp := NewInspector(v.ast) - ds, err := insp.FindDataSource() - if err != nil { - return nil, err - } - v.ast.Datasource = ds - - err = NewWalker(v.ast).AddVisitor(TypeSelector, narrowTblSel).Walk() - if err != nil { - return nil, err - } - lg.Debugf("After narrowTblSel:\n%s", sprintNodeTree(v.ast)) - - err = NewWalker(v.ast).AddVisitor(TypeSelector, narrowColSel).Walk() - if err != nil { - return nil, err - } - lg.Debugf("After narrowColSel:\n%s", sprintNodeTree(v.ast)) - - err = NewWalker(v.ast).AddVisitor(TypeFnJoin, determineJoinTables).Walk() - if err != nil { - return nil, err - } - - err = NewWalker(v.ast).AddVisitor(TypeRowRange, visitCheckRowRange).Walk() - if err != nil { - return nil, err - } - - lg.Debugf("After AST visitors:\n%s", sprintNodeTree(v.ast)) - - return v.ast, nil - -} diff --git a/libsq/ast/ast_visitors.go b/libsq/ast/ast_visitors.go deleted file mode 100644 index 5d147ae8..00000000 --- a/libsq/ast/ast_visitors.go +++ /dev/null @@ -1,147 +0,0 @@ -package ast - -import "github.com/neilotoole/go-lg/lg" - -// narrowTblSel takes a generic selector, and if appropriate, converts it to a TblSel. -func narrowTblSel(w *Walker, node Node) error { - - // node is guaranteed to be TypeSelector - sel, ok := node.(*Selector) - if !ok { - return errorf("expected *Selector but got %T", node) - } - - lg.Debugf("visiting selector: %q", sel.Text()) - - seg, ok := sel.Parent().(*Segment) - if !ok { - lg.Debugf("parent is not a segment, but is %T", sel.Parent()) - return nil - } - - if seg.SegIndex() == 0 { - return errorf("syntax error: illegal to have raw selector in first segment: %q", sel.Text()) - } - - typ, err := seg.Prev().ChildType() - if err != nil { - return err - } - - if typ == TypeDatasource { - ds, ok := seg.Prev().Children()[0].(*Datasource) - if !ok { - return errorf("syntax error: expected Datasource, but got %T", seg.Prev().Children()[0]) - } - - // this means that this selector must be a table selector - tblSel := newTblSelector(seg, sel.SelValue(), sel.Context()) - tblSel.DSName = ds.Text() - err := ReplaceNode(sel, tblSel) - if err != nil { - return err - } - } - - return nil -} - -// narrowColSel takes a generic selector, and if appropriate, converts it to a ColSel. -func narrowColSel(w *Walker, node Node) error { - - // node is guaranteed to be TypeSelector - sel, ok := node.(*Selector) - if !ok { - return errorf("expected *Selector but got %T", node) - } - - lg.Debugf("visiting selector: %q", sel.Text()) - - parent := sel.Parent() - - switch parent := parent.(type) { - case *JoinConstraint: - lg.Debugf("selector parent is *FnJoinExpr, therefore this is a ColSel") - colSel := newColSelector(sel.Parent(), sel.ctx) - return ReplaceNode(sel, colSel) - case *Segment: - lg.Debugf("parent is *Segment") - // if the parent is a segment, this is a "top-level" selector. - // Only top-level selectors after the final selectable seg are - // convert to colSels. - selectableSeg, err := NewInspector(w.root.(*AST)).FindFinalSelectableSegment() - if err != nil { - return err - } - - if parent.SegIndex() <= selectableSeg.SegIndex() { - lg.Debugf("skipping this selector because it's not after the final selectable segment") - return nil - } - - colSel := newColSelector(sel.Parent(), sel.ctx) - return ReplaceNode(sel, colSel) - - default: - lg.Warnf("skipping this selector, as parent is not of a relevant type, but is %T", parent) - } - - return nil -} - -// determineJoinTables attempts to determine the tables that a JOIN refers to -func determineJoinTables(w *Walker, node Node) error { - - // node is guaranteed to be FnJoin - fnJoin, ok := node.(*Join) - if !ok { - return errorf("expected *FnJoin but got %T", node) - } - - seg, ok := fnJoin.Parent().(*Segment) - if !ok { - return errorf("JOIN() must have a *Segment parent, but got %T", fnJoin.Parent()) - } - - prevSeg := seg.Prev() - if prevSeg == nil { - return errorf("JOIN() must not be in the first segment") - } - - childType, err := prevSeg.ChildType() - if err != nil { - return err - } - - if childType != TypeTableSelector || len(prevSeg.Children()) != 2 { - return errorf("JOIN() must have two table selectors in the preceding segment") - } - - fnJoin.leftTbl, ok = prevSeg.Children()[0].(*TblSelector) - if !ok { - return errorf("JOIN() expected table selector in previous segment, but was %T(%q)", prevSeg.Children()[0], prevSeg.Children()[0].Text()) - } - fnJoin.rightTbl, ok = prevSeg.Children()[1].(*TblSelector) - if !ok { - return errorf("JOIN() expected table selector in previous segment, but was %T(%q)", prevSeg.Children()[1], prevSeg.Children()[1].Text()) - } - return nil -} - -// visitCheckRowRange validates the RowRange element -func visitCheckRowRange(w *Walker, node Node) error { - - // node is guaranteed to be FnJoin - rr, ok := node.(*RowRange) - if !ok { - return errorf("expected %s but got %T", TypeRowRange, node) - } - - if w.state != nil { - return errorf("only one row range element permitted") - } - - w.state = rr - // TODO: check that the row range is after a selectable - return nil -} diff --git a/libsq/ast/common_test.go b/libsq/ast/common_test.go deleted file mode 100644 index 48ab8af6..00000000 --- a/libsq/ast/common_test.go +++ /dev/null @@ -1,39 +0,0 @@ -package ast - -import ( - "github.com/neilotoole/sq/libsq/slq" - "github.com/pboyer/antlr4/runtime/Go/antlr" -) - -const FixtRowRange1 = `@mydb1 | .user | .uid, .username | .[]` -const FixtRowRange2 = `@mydb1 | .user | .uid, .username | .[2]` -const FixtRowRange3 = `@mydb1 | .user | .uid, .username | .[1:3]` -const FixtRowRange4 = `@mydb1 | .user | .uid, .username | .[0:3]` -const FixtRowRange5 = `@mydb1 | .user | .uid, .username | .[:3]` -const FixtRowRange6 = `@mydb1 | .user | .uid, .username | .[2:]` - -const FixtJoinRowRange = `@my1 |.user, .address | join(.uid) | .[0:4] | .user.uid, .username, .country` - -const FixtJoinQuery1 = `@mydb1 | .user, .address | join(.user.uid == .address.uid) | .uid, .username, .country` -const FixtSelect1 = `@mydb1 | .user | .uid, .username` - -// getParser returns a parser for the given sq query. -func getParser(query string) *slq.SLQParser { - is := antlr.NewInputStream(query) - lex := slq.NewSLQLexer(is) - ts := antlr.NewCommonTokenStream(lex, 0) - p := slq.NewSLQParser(ts) - return p -} - -func getAST(query string) (*AST, error) { - p := getParser(query) - q := p.Query().(*slq.QueryContext) - v := &ParseTreeVisitor{} - q.Accept(v) - if v.Err != nil { - return nil, v.Err - } - - return v.ast, nil -} diff --git a/libsq/ast/func.go b/libsq/ast/func.go new file mode 100644 index 00000000..b15d3ce3 --- /dev/null +++ b/libsq/ast/func.go @@ -0,0 +1,41 @@ +package ast + +var _ Node = (*Func)(nil) +var _ ColExpr = (*Func)(nil) + +// Func models a function. For example, "COUNT()". +type Func struct { + baseNode + fnName string +} + +// FuncName returns the function name. +func (fn *Func) FuncName() string { + return fn.fnName +} + +func (fn *Func) String() string { + return nodeString(fn) +} + +// ColExpr implements ColExpr. +func (fn *Func) ColExpr() (string, error) { + return fn.ctx.GetText(), nil +} + +// SetChildren implements Node. +func (fn *Func) SetChildren(children []Node) error { + fn.setChildren(children) + return nil +} + +// IsColName implements ColExpr. +func (fn *Func) IsColName() bool { + return false +} + +func (fn *Func) AddChild(child Node) error { + // TODO: add check for valid Func child types + fn.addChild(child) + return child.SetParent(fn) +} diff --git a/libsq/ast/inspector.go b/libsq/ast/inspector.go index a5bbc962..b67a38b5 100644 --- a/libsq/ast/inspector.go +++ b/libsq/ast/inspector.go @@ -1,88 +1,85 @@ package ast -import "reflect" +import ( + "reflect" -// Inspector provides useful functionality for interrogating the AST. + "github.com/neilotoole/lg" +) + +// Inspector provides functionality for AST interrogation. type Inspector struct { + log lg.Log ast *AST } -func NewInspector(ast *AST) *Inspector { - return &Inspector{ast: ast} +// NewInspector returns an Inspector instance for ast. +func NewInspector(log lg.Log, ast *AST) *Inspector { + return &Inspector{log: log, ast: ast} } -func (in *Inspector) FindDataSource() (string, error) { - - var ds string - w := NewWalker(in.ast) - w.AddVisitor(TypeDatasource, func(w *Walker, node Node) error { - ds = node.(*Datasource).Text() - return nil - }) - - err := w.Walk() - return ds, err - -} - -func (in *Inspector) CountNodes(typ NodeType) int { - +// CountNodes counts the number of nodes having typ. +func (in *Inspector) CountNodes(typ reflect.Type) int { count := 0 - w := NewWalker(in.ast) - w.AddVisitor(typ, func(w *Walker, node Node) error { + w := NewWalker(in.log, in.ast) + w.AddVisitor(typ, func(log lg.Log, w *Walker, node Node) error { count++ return nil }) - w.Walk() + _ = w.Walk() return count - } -func (in *Inspector) FindNodes(typ NodeType) []Node { - - nodes := []Node{} - w := NewWalker(in.ast) - w.AddVisitor(typ, func(w *Walker, node Node) error { +// FindNodes returns all of the nodes having typ. +func (in *Inspector) FindNodes(typ reflect.Type) []Node { + var nodes []Node + w := NewWalker(in.log, in.ast) + w.AddVisitor(typ, func(log lg.Log, w *Walker, node Node) error { nodes = append(nodes, node) return nil }) - w.Walk() + _ = w.Walk() return nodes +} +// FindWhereClauses returns all the WHERE clauses in the AST. +func (in *Inspector) FindWhereClauses() ([]*Where, error) { + ws := []*Where{} + + for _, seg := range in.ast.Segments() { + // Where clauses must be the only child of a segment + if len(seg.Children()) == 1 { + if w, ok := seg.Children()[0].(*Where); ok { + ws = append(ws, w) + } + } + } + + return ws, nil } // FindColExprSegment returns the segment containing col expressions (such as // ".uid, .email"). This is typically the last segment. It's also possible that -// there is no such segment (which usualy results in a SELECT * FROM). +// there is no such segment (which usually results in a SELECT * FROM). func (in *Inspector) FindColExprSegment() (*Segment, error) { - segs := in.ast.Segments() - //if len(segs) < 2 { - // // there's always the datasource and tbl expr segment, so if less - // // than 3 segments, there can't be a col expr segment - // return nil, nil - //} - // work backwards from the end for i := len(segs) - 1; i > 0; i-- { - elems := segs[i].Children() numColExprs := 0 for _, elem := range elems { - - isColExpr := reflect.TypeOf(elem).Implements(reflect.Type(TypeColExpr)) - if isColExpr == false { + if _, ok := elem.(ColExpr); !ok { if numColExprs > 0 { return nil, errorf("found non-homogenous col expr segment [%d]: also has element %T", i, elem) } + // else it's not a col expr segment, break break - } + numColExprs++ } @@ -97,15 +94,12 @@ func (in *Inspector) FindColExprSegment() (*Segment, error) { // FindSelectableSegments returns the segments that have at least one child // that implements Selectable. func (in *Inspector) FindSelectableSegments() []*Segment { - segs := in.ast.Segments() selSegs := make([]*Segment, 0, 2) for _, seg := range segs { for _, child := range seg.Children() { - - childType := reflect.TypeOf(child) - if childType.Implements(reflect.Type(TypeSelectable)) { + if _, ok := child.(Selectable); ok { selSegs = append(selSegs, seg) break } @@ -115,6 +109,8 @@ func (in *Inspector) FindSelectableSegments() []*Segment { return selSegs } +// FindFinalSelectableSegment returns the final segment that +// has at lest one child that implements Selectable. func (in *Inspector) FindFinalSelectableSegment() (*Segment, error) { selectableSegs := in.FindSelectableSegments() if len(selectableSegs) == 0 { diff --git a/libsq/ast/inspector_test.go b/libsq/ast/inspector_test.go index 5c32b55c..99148969 100644 --- a/libsq/ast/inspector_test.go +++ b/libsq/ast/inspector_test.go @@ -4,17 +4,20 @@ import ( "testing" "github.com/stretchr/testify/require" + + "github.com/neilotoole/lg/testlg" ) func TestInspector_findSelectableSegments(t *testing.T) { + log := testlg.New(t).Strict(true) // `@mydb1 | .user | .uid, .username` - ast, err := getAST(FixtSelect1) + ast, err := buildInitialAST(t, fixtSelect1) require.Nil(t, err) - err = NewWalker(ast).AddVisitor(TypeSelector, narrowTblSel).Walk() + err = NewWalker(log, ast).AddVisitor(typeSelector, narrowTblSel).Walk() require.Nil(t, err) - insp := NewInspector(ast) + insp := NewInspector(log, ast) segs := ast.Segments() require.Equal(t, 3, len(segs)) @@ -25,12 +28,12 @@ func TestInspector_findSelectableSegments(t *testing.T) { require.Nil(t, err) require.Equal(t, selSegs[0], finalSelSeg) - //// `@mydb1 | .user, .address | join(.user.uid == .address.uid) | .uid, .username, .country` - ast, err = getAST(FixtJoinQuery1) + // `@mydb1 | .user, .address | join(.user.uid == .address.uid) | .uid, .username, .country` + ast, err = buildInitialAST(t, fixtJoinQuery1) require.Nil(t, err) - err = NewWalker(ast).AddVisitor(TypeSelector, narrowTblSel).Walk() + err = NewWalker(log, ast).AddVisitor(typeSelector, narrowTblSel).Walk() require.Nil(t, err) - insp = NewInspector(ast) + insp = NewInspector(log, ast) segs = ast.Segments() require.Equal(t, 4, len(segs)) @@ -41,5 +44,4 @@ func TestInspector_findSelectableSegments(t *testing.T) { finalSelSeg, err = insp.FindFinalSelectableSegment() require.Nil(t, err) require.Equal(t, selSegs[1], finalSelSeg) - } diff --git a/libsq/ast/fn.go b/libsq/ast/join.go similarity index 76% rename from libsq/ast/fn.go rename to libsq/ast/join.go index 6b86daa0..49f90476 100644 --- a/libsq/ast/fn.go +++ b/libsq/ast/join.go @@ -3,13 +3,12 @@ package ast import ( "fmt" - "github.com/pboyer/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr" ) -type Fn interface { - FnName() string -} +var _ Node = (*Join)(nil) +// Join models a SQL JOIN node. It has a child of type JoinConstraint. type Join struct { seg *Segment ctx antlr.ParseTree @@ -18,12 +17,17 @@ type Join struct { rightTbl *TblSelector } +// LeftTbl is the selector for the left table of the join. func (jn *Join) LeftTbl() *TblSelector { return jn.leftTbl } + +// RightTbl is the selector for the right table of the join. func (jn *Join) RightTbl() *TblSelector { return jn.rightTbl } + +// Selectable implements the Selectable marker interface. func (jn *Join) Selectable() { // no-op } @@ -33,17 +37,15 @@ func (jn *Join) Parent() Node { } func (jn *Join) SetParent(parent Node) error { - seg, ok := parent.(*Segment) if !ok { - return errorf("%T requires parent of type %s", jn, TypeSegment) + return errorf("%T requires parent of type %s", jn, typeSegment) } jn.seg = seg return nil } func (jn *Join) Children() []Node { - if jn.constraint == nil { return []Node{} } @@ -52,22 +54,20 @@ func (jn *Join) Children() []Node { } func (jn *Join) AddChild(node Node) error { - - expr, ok := node.(*JoinConstraint) + jc, ok := node.(*JoinConstraint) if !ok { - return errorf("JOIN() child must be *FnJoinExpr, but got: %T", node) + return errorf("JOIN() child must be *JoinConstraint, but got: %T", node) } if jn.constraint != nil { return errorf("JOIN() has max 1 child: failed to add: %T", node) } - jn.constraint = expr + jn.constraint = jc return nil } func (jn *Join) SetChildren(children []Node) error { - if len(children) == 0 { jn.constraint = nil return nil @@ -103,10 +103,6 @@ func (jn *Join) Segment() *Segment { return jn.seg } -//func (jn *Join) FnName() string { -// return "JOIN" -//} - func (jn *Join) String() string { text := nodeString(jn) @@ -120,16 +116,17 @@ func (jn *Join) String() string { rightTblName = jn.rightTbl.SelValue() } - text = text + fmt.Sprintf(" | left_table: %q | right_table: %q", leftTblName, rightTblName) + text += fmt.Sprintf(" | left_table: %q | right_table: %q", leftTblName, rightTblName) return text } -//func NewJoinFn(seg *Segment, ctx antlr.ParseTree) *Join { -// j := &Join{seg: seg, ctx: ctx} -// return j -//} +var _ Node = (*JoinConstraint)(nil) +// JoinConstraint models a join's constraint. +// For example the elements inside the parentheses +// in "join(.uid == .user_id)". type JoinConstraint struct { + // join is the parent node join *Join ctx antlr.ParseTree children []Node @@ -140,10 +137,9 @@ func (jc *JoinConstraint) Parent() Node { } func (jc *JoinConstraint) SetParent(parent Node) error { - join, ok := parent.(*Join) if !ok { - return errorf("%T requires parent of type %s", jc, TypeFnJoin) + return errorf("%T requires parent of type %s", jc, typeJoin) } jc.join = join return nil @@ -154,7 +150,6 @@ func (jc *JoinConstraint) Children() []Node { } func (jc *JoinConstraint) AddChild(child Node) error { - nodeCtx := child.Context() _, ok := nodeCtx.(*antlr.TerminalNodeImpl) if !ok { @@ -166,21 +161,18 @@ func (jc *JoinConstraint) AddChild(child Node) error { } func (jc *JoinConstraint) SetChildren(children []Node) error { + for _, child := range children { + nodeCtx := child.Context() + if _, ok := nodeCtx.(*antlr.TerminalNodeImpl); !ok { + return errorf("expected leaf node, but got: %T", nodeCtx) + } + } if len(children) == 0 { jc.children = children return nil } - for _, child := range children { - - nodeCtx := child.Context() - _, ok := nodeCtx.(*antlr.TerminalNodeImpl) - if !ok { - return errorf("expected leaf node, but got: %T", nodeCtx) - } - } - jc.children = children return nil } @@ -190,7 +182,6 @@ func (jc *JoinConstraint) Context() antlr.ParseTree { } func (jc *JoinConstraint) SetContext(ctx antlr.ParseTree) error { - jc.ctx = ctx // TODO: check for correct type return nil } diff --git a/libsq/ast/model.go b/libsq/ast/model.go deleted file mode 100644 index 1954c654..00000000 --- a/libsq/ast/model.go +++ /dev/null @@ -1,16 +0,0 @@ -package ast - -// Selectable is a marker interface to indicate that the entity can be selected from, -// e.g. a table or a join. -type Selectable interface { - // From returns a SQL FROM clause. - //From() func()(*fromClause, error) - Selectable() -} - -// ColExpr indicates a column selection expression, e.g. a column name, or -// context-appropriate function (e.g. "COUNT(*)") -type ColExpr interface { - ColExpr() (string, error) - String() string -} diff --git a/libsq/ast/node.go b/libsq/ast/node.go index ff03dde5..c8272f9d 100644 --- a/libsq/ast/node.go +++ b/libsq/ast/node.go @@ -3,67 +3,94 @@ package ast import ( "fmt" - "strings" + "reflect" - "github.com/neilotoole/go-lg/lg" - "github.com/pboyer/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr" ) +// Node is an AST node. type Node interface { + // Parent returns the node's parent, which may be nil.. Parent() Node - SetParent(Node) error - Children() []Node - SetChildren([]Node) error - AddChild(Node) error - Context() antlr.ParseTree - SetContext(antlr.ParseTree) error - //Index() int - String() string - Text() string - // Replace swaps the existing node with the provided node. - //Replace(Node) error - //Process() (bool, error) - //Finished() bool + // SetParent sets the node's parent, returning an error if illegal. + SetParent(n Node) error + + // Children returns the node's children (may be empty). + Children() []Node + + // SetChildren sets the node's children, returning an error if illegal. + SetChildren(children []Node) error + + // AddChild adds a child node, returning an error if illegal. + AddChild(child Node) error + + // Context returns the parse tree context. + Context() antlr.ParseTree + + // SetContext sets the parse tree context, returning an error if illegal. + SetContext(ctx antlr.ParseTree) error + + // String returns a debug-friendly string representation. + String() string + + // Text returns the node's text representation. + Text() string } -type BaseNode struct { +// Selectable is a marker interface to indicate that the node can be +// selected from. That is, the node represents a SQL table or join and +// can be used like "SELECT * FROM [selectable]". +type Selectable interface { + Selectable() +} + +// ColExpr indicates a column selection expression such as a +// column name, or context-appropriate function (e.g. "COUNT(*)") +type ColExpr interface { + // IsColName returns true if the expr is a column name, e.g. "uid" or "users.uid". + IsColName() bool + ColExpr() (string, error) + String() string +} + +// baseNode is a base implementation of Node. +type baseNode struct { parent Node children []Node ctx antlr.ParseTree } -func (bn *BaseNode) Parent() Node { +func (bn *baseNode) Parent() Node { return bn.parent } -func (bn *BaseNode) SetParent(parent Node) error { +func (bn *baseNode) SetParent(parent Node) error { bn.parent = parent return nil } -func (bn *BaseNode) Children() []Node { +func (bn *baseNode) Children() []Node { return bn.children } -func (bn *BaseNode) AddChild(child Node) error { - return errorf(emsgNodeNoAddChild, bn, child) +func (bn *baseNode) AddChild(child Node) error { + return errorf(msgNodeNoAddChild, bn, child) } -func (bn *BaseNode) addChild(child Node) { +func (bn *baseNode) addChild(child Node) { bn.children = append(bn.children, child) } -func (bn *BaseNode) SetChildren(children []Node) error { - - return errorf(emsgNodeNoAddChildren, bn, len(children)) +func (bn *baseNode) SetChildren(children []Node) error { + return errorf(msgNodeNoAddChildren, bn, len(children)) } -func (bn *BaseNode) setChildren(children []Node) { +func (bn *baseNode) setChildren(children []Node) { bn.children = children } -func (bn *BaseNode) Text() string { +func (bn *baseNode) Text() string { if bn.ctx == nil { return "" } @@ -71,46 +98,23 @@ func (bn *BaseNode) Text() string { return bn.ctx.GetText() } -func (bn *BaseNode) Context() antlr.ParseTree { +func (bn *baseNode) Context() antlr.ParseTree { return bn.ctx } -func (bn *BaseNode) SetContext(ctx antlr.ParseTree) error { +func (bn *baseNode) SetContext(ctx antlr.ParseTree) error { bn.ctx = ctx return nil } -// sprintNodeTree returns a tree-like view of the node and its children for debugging. -func sprintNodeTree(node Node) string { - return nodeToTree(node, "", 0) -} - -func nodeToTree(node Node, str string, depth int) string { - pad := strings.Repeat(" ", depth) + "- " - nodeStr := fmt.Sprintf("%s(%T) %s", pad, node, node.String()) - - cStr := []string{} - - for _, child := range node.Children() { - cStr = append(cStr, nodeToTree(child, str, depth+1)) - } - - if len(cStr) > 0 { - nodeStr = nodeStr + "\n" + strings.Join(cStr, "\n") - } - - return nodeStr -} - // nodeString returns a default value suitable for use by Node.String(). func nodeString(n Node) string { return fmt.Sprintf("%T: %s", n, n.Text()) } -func ReplaceNode(old Node, nu Node) error { - - lg.Debugf("replacing node %T(%q) with %T(%q)", old, old.Text(), nu, nu.Text()) - +// replaceNode replaces old with new. That is, nu becomes a child +// of old's parent. +func replaceNode(old, nu Node) error { err := nu.SetContext(old.Context()) if err != nil { return err @@ -118,7 +122,7 @@ func ReplaceNode(old Node, nu Node) error { parent := old.Parent() - index := ChildIndex(parent, old) + index := childIndex(parent, old) if index < 0 { return errorf("parent %T(%q) does not appear to have child %T(%q)", parent, parent.Text(), old, old.Text()) } @@ -126,15 +130,14 @@ func ReplaceNode(old Node, nu Node) error { siblings[index] = nu return parent.SetChildren(siblings) - //return errorf("not implemented") } -func ChildIndex(parent Node, child Node) int { - +// childIndex returns the index of child in parent's children, or -1. +func childIndex(parent, child Node) int { index := -1 - for i, chld := range parent.Children() { - if chld == child { + for i, node := range parent.Children() { + if node == child { index = i break } @@ -142,3 +145,134 @@ func ChildIndex(parent Node, child Node) int { return index } + +// nodesWithType returns a new slice containing each member of nodes that is +// of the specified type. +func nodesWithType(nodes []Node, typ reflect.Type) []Node { + s := make([]Node, 0) + + for _, n := range nodes { + if reflect.TypeOf(n) == typ { + s = append(s, n) + } + } + return s +} + +// Terminal is a terminal/leaf node that typically is interpreted simply as its +// text value. +type Terminal struct { + baseNode +} + +func (t *Terminal) String() string { + return nodeString(t) +} + +// Group models GROUP BY. +type Group struct { + baseNode +} + +func (g *Group) AddChild(child Node) error { + _, ok := child.(*ColSelector) + if !ok { + return errorf("GROUP() only accepts children of type %s, but got %T", typeColSelector, child) + } + + g.addChild(child) + return child.SetParent(g) +} + +func (g *Group) String() string { + text := nodeString(g) + return text +} + +// Expr models a SLQ expression such as ".uid > 4". +type Expr struct { + baseNode +} + +func (e *Expr) AddChild(child Node) error { + e.addChild(child) + return child.SetParent(e) +} + +func (e *Expr) String() string { + text := nodeString(e) + return text +} + +// Operator is a leaf node in an expression representing an operator such as ">" or "==". +type Operator struct { + baseNode +} + +func (o *Operator) String() string { + return nodeString(o) +} + +// Literal is a leaf node representing a literal such as a number or a string. +type Literal struct { + baseNode +} + +func (li *Literal) String() string { + return nodeString(li) +} + +// Where represents a SQL WHERE clause, i.e. a filter on the SELECT. +type Where struct { + baseNode +} + +func (w *Where) String() string { + return nodeString(w) +} + +// Expr returns the expression that constitutes the SetWhere clause, or nil if no expression. +func (w *Where) Expr() *Expr { + if len(w.children) == 0 { + return nil + } + + return w.children[0].(*Expr) +} + +func (w *Where) AddChild(node Node) error { + expr, ok := node.(*Expr) + if !ok { + return errorf("WHERE child must be *Expr, but got: %T", node) + } + + if len(w.children) > 0 { + return errorf("WHERE has max 1 child: failed to add: %T", node) + } + + w.addChild(expr) + return nil +} + +// isOperator returns true if the supplied string is a recognized operator, e.g. "!=" or ">". +func isOperator(text string) bool { + switch text { + case "-", "+", "~", "!", "||", "*", "/", "%", "<<", ">>", "&", "<", "<=", ">", ">=", "==", "!=", "&&": + return true + default: + return false + } +} + +// Cached results from reflect.TypeOf for node types. +var ( + typeAST = reflect.TypeOf((*AST)(nil)) + typeDatasource = reflect.TypeOf((*Datasource)(nil)) + typeSegment = reflect.TypeOf((*Segment)(nil)) + typeJoin = reflect.TypeOf((*Join)(nil)) + typeSelector = reflect.TypeOf((*Selector)(nil)) + typeColSelector = reflect.TypeOf((*ColSelector)(nil)) + typeTblSelector = reflect.TypeOf((*TblSelector)(nil)) + typeRowRange = reflect.TypeOf((*RowRange)(nil)) + typeExpr = reflect.TypeOf((*Expr)(nil)) +) diff --git a/libsq/ast/node_test.go b/libsq/ast/node_test.go index 4a5dd9fe..02cd834f 100644 --- a/libsq/ast/node_test.go +++ b/libsq/ast/node_test.go @@ -3,26 +3,39 @@ package ast import ( "testing" - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/lg/testlg" ) func TestChildIndex(t *testing.T) { + log := testlg.New(t).Strict(true) // `@mydb1 | .user, .address | join(.uid == .uid) | .uid, .username, .country` - lg.Debugf("trying test child index") - p := getParser(FixtJoinQuery1) + p := getSLQParser(fixtJoinQuery1) query := p.Query() - ast, err := NewBuilder(drvr.NewSourceSet()).Build(query) - assert.Nil(t, err) - assert.NotNil(t, ast) - assert.Equal(t, 4, len(ast.Segments())) + ast, err := buildAST(log, query) + require.Nil(t, err) + require.NotNil(t, ast) + require.Equal(t, 4, len(ast.Segments())) for i, seg := range ast.Segments() { - - index := ChildIndex(ast, seg) - assert.Equal(t, i, index) + index := childIndex(ast, seg) + require.Equal(t, i, index) } - +} + +func TestNodesWithType(t *testing.T) { + nodes := []Node{&ColSelector{}, &ColSelector{}, &TblSelector{}, &RowRange{}} + + require.Equal(t, 2, len(nodesWithType(nodes, typeColSelector))) + require.Equal(t, 1, len(nodesWithType(nodes, typeTblSelector))) + require.Equal(t, 1, len(nodesWithType(nodes, typeRowRange))) + require.Equal(t, 0, len(nodesWithType(nodes, typeJoin))) +} + +func TestAvg(t *testing.T) { + const input = `@mydb1 | .user, .address | join(.user.uid == .address.uid) | .uid, .username, .country | .[0:2] | avg(.uid)` + ast := mustBuildAST(t, input) + require.NotNil(t, ast) } diff --git a/libsq/ast/parser.go b/libsq/ast/parser.go index fc5fb46a..5f1fa5cb 100644 --- a/libsq/ast/parser.go +++ b/libsq/ast/parser.go @@ -4,50 +4,43 @@ import ( "fmt" "strings" + "strconv" + + "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/neilotoole/lg" + "github.com/neilotoole/sq/libsq/slq" - "github.com/pboyer/antlr4/runtime/Go/antlr" ) -// Parser processes SLQ input text according to the rules of the SLQ grammar. -type Parser struct { -} - -// NewParser returns a new Parser. -func NewParser() *Parser { - return &Parser{} -} - -// Parse processes SLQ input text and returns a parse tree. It executes both -// lexer and parser phases. -func (pr *Parser) Parse(slqInput string) (*slq.QueryContext, error) { - is := antlr.NewInputStream(slqInput) - - lexErrs := &antlrErrorListener{name: "lexer"} - parseErrs := &antlrErrorListener{name: "parser"} - - lex := slq.NewSLQLexer(is) +// parseSLQ processes SLQ input text according to the rules of the SQL grammar, +// and returns a parse tree. It executes both lexer and parser phases. +func parseSLQ(log lg.Log, input string) (*slq.QueryContext, error) { + lex := slq.NewSLQLexer(antlr.NewInputStream(input)) lex.RemoveErrorListeners() // the generated lexer has default listeners we don't want + lexErrs := &antlrErrorListener{name: "lexer", log: log} lex.AddErrorListener(lexErrs) - ts := antlr.NewCommonTokenStream(lex, 0) - p := slq.NewSLQParser(ts) + p := slq.NewSLQParser(antlr.NewCommonTokenStream(lex, 0)) p.RemoveErrorListeners() // the generated parser has default listeners we don't want + parseErrs := &antlrErrorListener{name: "parser", log: log} p.AddErrorListener(parseErrs) - qctx := p.Query() + qCtx := p.Query() err := lexErrs.error() if err != nil { return nil, err } + err = parseErrs.error() if err != nil { return nil, err } - return qctx.(*slq.QueryContext), nil + return qCtx.(*slq.QueryContext), nil } type antlrErrorListener struct { + log lg.Log name string errs []string warnings []string @@ -55,7 +48,6 @@ type antlrErrorListener struct { } func (el *antlrErrorListener) error() error { - if el.err == nil && len(el.errs) > 0 { msg := strings.Join(el.errs, "\n") el.err = &ParseError{msg: msg} @@ -74,23 +66,27 @@ func (el *antlrErrorListener) String() string { func (el *antlrErrorListener) SyntaxError(recognizer antlr.Recognizer, offendingSymbol interface{}, line, column int, msg string, e antlr.RecognitionException) { text := fmt.Sprintf("%s: syntax error: [%d:%d] %s", el.name, line, column, msg) - el.errs = append(el.errs, fmt.Sprintf(text)) - //fmt.Fprintln(os.Stderr, "line "+strconv.Itoa(line)+":"+strconv.Itoa(column)+" "+msg) + el.errs = append(el.errs, text) } func (el *antlrErrorListener) ReportAmbiguity(recognizer antlr.Parser, dfa *antlr.DFA, startIndex, stopIndex int, exact bool, ambigAlts *antlr.BitSet, configs antlr.ATNConfigSet) { + tok := recognizer.GetCurrentToken() text := fmt.Sprintf("%s: syntax ambiguity: [%d:%d]", el.name, startIndex, stopIndex) - el.errs = append(el.errs, fmt.Sprintf(text)) + text = text + " >>" + tok.GetText() + "<<" + el.log.Warnf(text) + el.warnings = append(el.warnings, text) } func (el *antlrErrorListener) ReportAttemptingFullContext(recognizer antlr.Parser, dfa *antlr.DFA, startIndex, stopIndex int, conflictingAlts *antlr.BitSet, configs antlr.ATNConfigSet) { text := fmt.Sprintf("%s: attempting full context: [%d:%d]", el.name, startIndex, stopIndex) - el.warnings = append(el.warnings, fmt.Sprintf(text)) + el.log.Warnf(text) + el.warnings = append(el.warnings, text) } func (el *antlrErrorListener) ReportContextSensitivity(recognizer antlr.Parser, dfa *antlr.DFA, startIndex, stopIndex, prediction int, configs antlr.ATNConfigSet) { text := fmt.Sprintf("%s: context sensitivity: [%d:%d]", el.name, startIndex, stopIndex) - el.warnings = append(el.warnings, fmt.Sprintf(text)) + el.log.Warnf(text) + el.warnings = append(el.warnings, text) } // ParseError represents an error in lexing/parsing input. @@ -102,3 +98,430 @@ type ParseError struct { func (p *ParseError) Error() string { return p.msg } + +var _ slq.SLQVisitor = (*parseTreeVisitor)(nil) + +// parseTreeVisitor implements slq.SLQVisitor to +// generate the preliminary AST. +type parseTreeVisitor struct { + log lg.Log + // cur is the currently-active node of the AST. + cur Node + AST *AST +} + +func (v *parseTreeVisitor) Visit(ctx antlr.ParseTree) interface{} { + v.log.Debugf("visiting %T: %v: ", ctx, ctx.GetText()) + + switch ctx := ctx.(type) { + case *slq.SegmentContext: + return v.VisitSegment(ctx) + case *slq.ElementContext: + return v.VisitElement(ctx) + case *slq.DsElementContext: + return v.VisitDsElement(ctx) + case *slq.DsTblElementContext: + return v.VisitDsTblElement(ctx) + case *slq.SelElementContext: + return v.VisitSelElement(ctx) + case *slq.FnContext: + return v.VisitFn(ctx) + case *slq.FnNameContext: + return v.VisitFnName(ctx) + case *slq.JoinContext: + return v.VisitJoin(ctx) + case *slq.JoinConstraintContext: + return v.VisitJoinConstraint(ctx) + case *slq.CmprContext: + return v.VisitCmpr(ctx) + case *slq.RowRangeContext: + return v.VisitRowRange(ctx) + case *slq.ExprContext: + return v.VisitExpr(ctx) + case *slq.GroupContext: + return v.VisitGroup(ctx) + case *slq.LiteralContext: + return v.VisitLiteral(ctx) + case *antlr.TerminalNodeImpl: + return v.VisitTerminal(ctx) + } + + // should never be reached + return errorf("unknown node type: %T", ctx) +} + +func (v *parseTreeVisitor) VisitChildren(ctx antlr.RuleNode) interface{} { + for _, child := range ctx.GetChildren() { + tree, ok := child.(antlr.ParseTree) + if !ok { + return errorf("unknown child node type: %T %q", child, child.GetPayload()) + } + + err := v.Visit(tree) + if err != nil { + return err + } + } + return nil +} + +func (v *parseTreeVisitor) VisitQuery(ctx *slq.QueryContext) interface{} { + v.AST = &AST{} + v.AST.ctx = ctx + v.cur = v.AST + + for _, seg := range ctx.AllSegment() { + err := v.VisitSegment(seg.(*slq.SegmentContext)) + if err != nil { + return err + } + } + + return nil +} + +func (v *parseTreeVisitor) VisitDsElement(ctx *slq.DsElementContext) interface{} { + ds := &Datasource{} + ds.parent = v.cur + ds.ctx = ctx.DATASOURCE() + return v.cur.AddChild(ds) +} + +func (v *parseTreeVisitor) VisitDsTblElement(ctx *slq.DsTblElementContext) interface{} { + tblSel := &TblSelector{} + tblSel.parent = v.cur + tblSel.ctx = ctx + + tblSel.DSName = ctx.DATASOURCE().GetText() + tblSel.TblName = ctx.SEL().GetText()[1:] + + return v.cur.AddChild(tblSel) +} + +func (v *parseTreeVisitor) VisitSegment(ctx *slq.SegmentContext) interface{} { + seg := &Segment{} + seg.bn.ctx = ctx + seg.bn.parent = v.AST + + if v == nil { + panic("v is nil") + } + + if v.AST == nil { + panic("v.AST is nil") + } + + v.AST.AddSegment(seg) + v.cur = seg + + return v.VisitChildren(ctx) +} + +func (v *parseTreeVisitor) VisitSelElement(ctx *slq.SelElementContext) interface{} { + selector := &Selector{} + selector.parent = v.cur + selector.ctx = ctx.SEL() + return v.cur.AddChild(selector) +} + +func (v *parseTreeVisitor) VisitElement(ctx *slq.ElementContext) interface{} { + return v.VisitChildren(ctx) +} + +func (v *parseTreeVisitor) VisitFn(ctx *slq.FnContext) interface{} { + v.log.Debugf("visiting function: %v", ctx.GetText()) + + fn := &Func{fnName: ctx.FnName().GetText()} + fn.ctx = ctx + err := fn.SetParent(v.cur) + if err != nil { + return err + } + + prev := v.cur + v.cur = fn + err2 := v.VisitChildren(ctx) + v.cur = prev + if err2 != nil { + return err2.(error) + } + + return v.cur.AddChild(fn) +} + +func (v *parseTreeVisitor) VisitExpr(ctx *slq.ExprContext) interface{} { + v.log.Debugf("visiting expr: %v", ctx.GetText()) + + // check if the expr is a SEL, e.g. ".uid" + if ctx.SEL() != nil { + selector := &Selector{} + selector.parent = v.cur + selector.ctx = ctx.SEL() + return v.cur.AddChild(selector) + } + + if ctx.Literal() != nil { + return v.VisitLiteral(ctx.Literal().(*slq.LiteralContext)) + } + + ex := &Expr{} + ex.ctx = ctx + err := ex.SetParent(v.cur) + if err != nil { + return err + } + + prev := v.cur + v.cur = ex + + err2 := v.VisitChildren(ctx) + v.cur = prev + if err2 != nil { + return err2.(error) + } + + return v.cur.AddChild(ex) +} + +func (v *parseTreeVisitor) VisitCmpr(ctx *slq.CmprContext) interface{} { + return v.VisitChildren(ctx) +} + +func (v *parseTreeVisitor) VisitStmtList(ctx *slq.StmtListContext) interface{} { + return nil // not using StmtList just yet +} + +func (v *parseTreeVisitor) VisitLiteral(ctx *slq.LiteralContext) interface{} { + v.log.Debugf("visiting literal: %q", ctx.GetText()) + + lit := &Literal{} + lit.ctx = ctx + _ = lit.SetParent(v.cur) + err := v.cur.AddChild(lit) + return err +} + +func (v *parseTreeVisitor) VisitUnaryOperator(ctx *slq.UnaryOperatorContext) interface{} { + return nil +} +func (v *parseTreeVisitor) VisitFnName(ctx *slq.FnNameContext) interface{} { + return nil +} + +func (v *parseTreeVisitor) VisitGroup(ctx *slq.GroupContext) interface{} { + // parent node must be a segment + _, ok := v.cur.(*Segment) + if !ok { + return errorf("parent of GROUP() must be Segment, but got: %T", v.cur) + } + + sels := ctx.AllSEL() + if len(sels) == 0 { + return errorf("GROUP() requires at least one column selector argument") + } + + grp := &Group{} + grp.ctx = ctx + err := v.cur.AddChild(grp) + if err != nil { + return err + } + + for _, selCtx := range sels { + err = grp.AddChild(newColSelector(grp, selCtx)) + if err != nil { + return err + } + } + + return nil +} + +func (v *parseTreeVisitor) VisitJoin(ctx *slq.JoinContext) interface{} { + // parent node must be a segment + seg, ok := v.cur.(*Segment) + if !ok { + return errorf("parent of JOIN() must be Segment, but got: %T", v.cur) + } + + join := &Join{seg: seg, ctx: ctx} + err := seg.AddChild(join) + if err != nil { + return err + } + + expr := ctx.JoinConstraint() + if expr == nil { + return nil + } + + // the join contains a constraint, let's hit it + v.cur = join + err2 := v.VisitJoinConstraint(expr.(*slq.JoinConstraintContext)) + if err2 != nil { + return err2 + } + // set cur back to previous + v.cur = seg + return nil +} + +func (v *parseTreeVisitor) VisitJoinConstraint(ctx *slq.JoinConstraintContext) interface{} { + joinNode, ok := v.cur.(*Join) + if !ok { + return errorf("JOIN constraint must have JOIN parent, but got %T", v.cur) + } + + // the constraint could be empty + children := ctx.GetChildren() + if len(children) == 0 { + return nil + } + + // the constraint could be a single SEL (in which case, there's no comparison operator) + if ctx.Cmpr() == nil { + // there should be exactly one SEL + sels := ctx.AllSEL() + if len(sels) != 1 { + return errorf("JOIN constraint without a comparison operator must have exactly one selector") + } + + joinExprNode := &JoinConstraint{join: joinNode, ctx: ctx} + + colSelNode := &Selector{} + colSelNode.ctx = sels[0] + colSelNode.parent = joinExprNode + + err := joinExprNode.AddChild(colSelNode) + if err != nil { + return err + } + return joinNode.AddChild(joinExprNode) + } + + // we've got a comparison operator + sels := ctx.AllSEL() + if len(sels) != 2 { + // REVISIT: probably unnecessary, should be caught by the parser + return errorf("JOIN constraint must have 2 operands (left & right), but got %d", len(sels)) + } + + join, ok := v.cur.(*Join) + if !ok { + return errorf("JOIN constraint must have JOIN parent, but got %T", v.cur) + } + joinCondition := &JoinConstraint{join: join, ctx: ctx} + + leftSel := &Selector{} + leftSel.ctx = sels[0] + leftSel.parent = joinCondition + err := joinCondition.AddChild(leftSel) + if err != nil { + return err + } + + cmpr := newCmnr(joinCondition, ctx.Cmpr()) + err = joinCondition.AddChild(cmpr) + if err != nil { + return err + } + + rightSel := &Selector{} + rightSel.ctx = sels[1] + rightSel.parent = joinCondition + err = joinCondition.AddChild(rightSel) + if err != nil { + return err + } + + return join.AddChild(joinCondition) +} + +func (v *parseTreeVisitor) VisitTerminal(ctx antlr.TerminalNode) interface{} { + v.log.Debugf("visiting terminal: %q", ctx.GetText()) + + val := ctx.GetText() + + if isOperator(val) { + op := &Operator{} + op.ctx = ctx + + err := op.SetParent(v.cur) + if err != nil { + return err + } + + err = v.cur.AddChild(op) + if err != nil { + return err + } + return nil + } + + v.log.Warnf("unknown terminal: %q", val) + + return nil +} + +func (v *parseTreeVisitor) VisitRowRange(ctx *slq.RowRangeContext) interface{} { + // [] select all rows (no range) + // [1] select row[1] + // [10:15] select rows 10 thru 15 + // [0:15] select rows 0 thru 15 + // [:15] same as above (0 thru 15) + // [10:] select all rows from 10 onwards + + if ctx.COLON() == nil && len(ctx.AllNN()) == 0 { + // [] select all rows, aka no range + return nil + } + + if ctx.COLON() == nil { + // [1] -- select row[1] + if len(ctx.AllNN()) != 1 { + return errorf("row range: expected one integer but got %d", len(ctx.AllNN())) + } + + i, _ := strconv.Atoi(ctx.AllNN()[0].GetText()) + rr := newRowRange(ctx, i, 1) + return v.cur.AddChild(rr) + } + + // there's a colon... can only be one or two ints + if len(ctx.AllNN()) > 2 { + return errorf("row range: expected one or two integers but got %d", len(ctx.AllNN())) + } + + if len(ctx.AllNN()) == 2 { + // [10:15] -- select rows 10 thru 15 + offset, _ := strconv.Atoi(ctx.AllNN()[0].GetText()) + finish, _ := strconv.Atoi(ctx.AllNN()[1].GetText()) + limit := finish - offset + rr := newRowRange(ctx, offset, limit) + return v.cur.AddChild(rr) + } + + // it's one of these two cases: + // [:15] (0 thru 15) + // [10:] select all rows from 10 onwards + // so we need to determine if the INT is before or after the colon + var offset int + var limit = -1 + + if ctx.COLON().GetSymbol().GetTokenIndex() < ctx.AllNN()[0].GetSymbol().GetTokenIndex() { + // [:15] (0 thru 15) + offset = 0 + limit, _ = strconv.Atoi(ctx.AllNN()[0].GetText()) + } else { + // [10:] select all rows from 10 onwards + offset, _ = strconv.Atoi(ctx.AllNN()[0].GetText()) + } + + rr := newRowRange(ctx, offset, limit) + return v.cur.AddChild(rr) +} + +func (v *parseTreeVisitor) VisitErrorNode(ctx antlr.ErrorNode) interface{} { + v.log.Debugf("error node: %v", ctx.GetText()) + return nil +} diff --git a/libsq/ast/parser_test.go b/libsq/ast/parser_test.go new file mode 100644 index 00000000..516d20fe --- /dev/null +++ b/libsq/ast/parser_test.go @@ -0,0 +1,110 @@ +package ast + +import ( + "testing" + + "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/lg/testlg" + + "github.com/neilotoole/sq/libsq/slq" +) + +const ( + fixtRowRange1 = `@mydb1 | .user | .uid, .username | .[]` + fixtRowRange2 = `@mydb1 | .user | .uid, .username | .[2]` + fixtRowRange3 = `@mydb1 | .user | .uid, .username | .[1:3]` + fixtRowRange4 = `@mydb1 | .user | .uid, .username | .[0:3]` + fixtRowRange5 = `@mydb1 | .user | .uid, .username | .[:3]` + fixtRowRange6 = `@mydb1 | .user | .uid, .username | .[2:]` + fixtJoinRowRange = `@my1 |.user, .address | join(.uid) | .[0:4] | .user.uid, .username, .country` + fixtJoinQuery1 = `@mydb1 | .user, .address | join(.user.uid == .address.uid) | .uid, .username, .country` + fixtSelect1 = `@mydb1 | .user | .uid, .username` +) + +var slqInputs = map[string]string{ + "rr1": `@mydb1 | .user | .uid, .username | .[]`, + "rr2": `@mydb1 | .user | .uid, .username | .[2]`, + "rr3": `@mydb1 | .user | .uid, .username | .[1:3]`, + "rr4": `@mydb1 | .user | .uid, .username | .[0:3]`, + "rr5": `@mydb1 | .user | .uid, .username | .[:3]`, + "rr6": `@mydb1 | .user | .uid, .username | .[2:]`, + "join with row range": `@my1 |.user, .address | join(.uid) | .[0:4] | .user.uid, .username, .country`, + "join1": `@mydb1 | .user, .address | join(.user.uid == .address.uid) | .uid, .username, .country`, + "select1": `@mydb1 | .user | .uid, .username`, + "tbl datasource": `@mydb1.user | .uid, .username`, + "count1": `@mydb1.user | count(*)`, +} + +// getSLQParser returns a parser for the given SQL input. +func getSLQParser(input string) *slq.SLQParser { + is := antlr.NewInputStream(input) + lex := slq.NewSLQLexer(is) + ts := antlr.NewCommonTokenStream(lex, 0) + p := slq.NewSLQParser(ts) + return p +} + +// buildInitialAST returns a new AST created by parseTreeVisitor. The AST has not +// yet been processed. +func buildInitialAST(t *testing.T, input string) (*AST, error) { + log := testlg.New(t).Strict(true) + + p := getSLQParser(input) + q := p.Query().(*slq.QueryContext) + v := &parseTreeVisitor{log: log} + err := q.Accept(v) + if err != nil { + return nil, err.(error) + } + + return v.AST, nil +} + +// mustBuildAST builds a full AST from the input SLQ, or fails on any error. +func mustBuildAST(t *testing.T, input string) *AST { + log := testlg.New(t).Strict(true) + + ptree, err := parseSLQ(log, input) + require.Nil(t, err) + require.NotNil(t, ptree) + + ast, err := buildAST(log, ptree) + require.Nil(t, err) + require.NotNil(t, ast) + return ast +} + +func TestParseBuild(t *testing.T) { + log := testlg.New(t).Strict(true) + + for test, input := range slqInputs { + ptree, err := parseSLQ(log, input) + require.Nil(t, err, test) + require.NotNil(t, ptree, test) + + ast, err := buildAST(log, ptree) + require.Nil(t, err, test) + require.NotNil(t, ast, test) + } +} + +func TestInspector_FindWhereClauses(t *testing.T) { + log := testlg.New(t) + + // Verify that ".uid > 4" becomes a WHERE clause. + const input = "@my1 | .tbluser | .uid > 4 | .uid, .username" + + ptree, err := parseSLQ(log, input) + require.Nil(t, err) + require.NotNil(t, ptree) + + nRoot, err := buildAST(log, ptree) + require.Nil(t, err) + + insp := NewInspector(log, nRoot) + whereNodes, err := insp.FindWhereClauses() + require.NoError(t, err) + require.Len(t, whereNodes, 1) +} diff --git a/libsq/ast/parsetree_visitor.go b/libsq/ast/parsetree_visitor.go deleted file mode 100644 index eea236dd..00000000 --- a/libsq/ast/parsetree_visitor.go +++ /dev/null @@ -1,487 +0,0 @@ -package ast - -import ( - "strconv" - - "github.com/neilotoole/sq/libsq/slq" - "github.com/pboyer/antlr4/runtime/Go/antlr" -) - -type ParseTreeVisitor struct { - Err error - listenFns []func(antlr.ParseTree) (bool, error) - cur Node - ast *AST -} - -func (v *ParseTreeVisitor) notify(ctx antlr.ParseTree) bool { - - for i := 0; i < len(v.listenFns); i++ { - - listenFn := v.listenFns[i] - ok, err := listenFn(ctx) - if err != nil { - v.Err = err - } - if !ok { - return false - } - } - - return true -} - -func (v *ParseTreeVisitor) AddListener(fn func(antlr.ParseTree) (bool, error)) { - v.listenFns = append(v.listenFns, fn) -} - -func (v *ParseTreeVisitor) Visit(ctx antlr.ParseTree) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - switch ctx := ctx.(type) { - - case *slq.SegmentContext: - v.VisitSegment(ctx) - case *slq.ElementContext: - v.VisitElement(ctx) - case *slq.DsElementContext: - v.VisitDsElement(ctx) - case *slq.DsTblElementContext: - v.VisitDsTblElement(ctx) - case *slq.SelElementContext: - v.VisitSelElement(ctx) - //case *slq.FnContext: - // v.VisitFn(ctx) - case *slq.JoinContext: - v.VisitJoin(ctx) - case *slq.JoinConstraintContext: - v.VisitJoinConstraint(ctx) - //case *slq.FnJoinCondContext: - // v.VisitFnJoinCond(ctx) - case *slq.CmprContext: - v.VisitCmpr(ctx) - case *slq.RowRangeContext: - v.VisitRowRange(ctx) - case *antlr.TerminalNodeImpl: - v.VisitTerminal(ctx) - - default: - err := errorf("unknown node type: %T", ctx) - v.Err = err - } - - return nil -} - -func (v *ParseTreeVisitor) VisitChildren(ctx antlr.RuleNode) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - for _, child := range ctx.GetChildren() { - if v.Err != nil { - return nil - } - - tree, ok := child.(antlr.ParseTree) - if !ok { - v.Err = errorf("unknown child node type: %T %q", child, child.GetPayload()) - } - - v.Visit(tree) - - } - return nil -} - -func (v *ParseTreeVisitor) VisitQuery(ctx *slq.QueryContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - v.ast = &AST{} - v.ast.ctx = ctx - v.cur = v.ast - for _, seg := range ctx.AllSegment() { - if v.Err != nil { - return nil - } - v.VisitSegment(seg.(*slq.SegmentContext)) - } - - return nil -} - -func (v *ParseTreeVisitor) VisitDsElement(ctx *slq.DsElementContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - ds := &Datasource{} - ds.parent = v.cur - ds.ctx = ctx.DATASOURCE() - v.cur.AddChild(ds) - return nil -} - -func (v *ParseTreeVisitor) VisitDsTblElement(ctx *slq.DsTblElementContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - tblSel := &TblSelector{} - tblSel.parent = v.cur - tblSel.ctx = ctx - - tblSel.DSName = ctx.DATASOURCE().GetText() - tblSel.TblName = ctx.SEL().GetText()[1:] - - v.cur.AddChild(tblSel) - return nil -} - -func (v *ParseTreeVisitor) VisitSegment(ctx *slq.SegmentContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - seg := &Segment{} - seg.bn.ctx = ctx - seg.bn.parent = v.ast - v.ast.AddSegment(seg) - - v.cur = seg - - return v.VisitChildren(ctx) -} - -func (v *ParseTreeVisitor) VisitSelElement(ctx *slq.SelElementContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - selector := &Selector{} - selector.parent = v.cur - selector.ctx = ctx.SEL() - v.cur.AddChild(selector) - - return nil -} - -func (v *ParseTreeVisitor) VisitElement(ctx *slq.ElementContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - return v.VisitChildren(ctx) -} - -func (v *ParseTreeVisitor) VisitCmpr(ctx *slq.CmprContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - return v.VisitChildren(ctx) -} - -//func (v *ParseTreeVisitor) VisitFn(ctx *slq.FnContext) interface{} { -// ok := v.notify(ctx) -// if !ok { -// return nil -// } -// -// return v.VisitChildren(ctx) -//} - -func (v *ParseTreeVisitor) VisitArgs(ctx *slq.ArgsContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - return v.VisitChildren(ctx) -} - -func (v *ParseTreeVisitor) VisitArg(ctx *slq.ArgContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - return v.VisitChildren(ctx) -} - -func (v *ParseTreeVisitor) VisitJoin(ctx *slq.JoinContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - // parent node must be a segment - seg, ok := v.cur.(*Segment) - if !ok { - v.Err = errorf("parent of JOIN() must be Segment, but got: %T", v.cur) - return nil - } - - join := &Join{seg: seg, ctx: ctx} - seg.AddChild(join) - - expr := ctx.JoinConstraint() - if expr == nil { - return nil - } - - // the join contains an expr, let's hit it - v.cur = join - v.VisitJoinConstraint(expr.(*slq.JoinConstraintContext)) - - // set cur back to previous - v.cur = seg - - return nil -} - -func (v *ParseTreeVisitor) VisitJoinConstraint(ctx *slq.JoinConstraintContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - joinNode, ok := v.cur.(*Join) - if !ok { - v.Err = errorf("JOIN condition must have JOIN parent, but got %T", v.cur) - } - - // the constraint could be empty - children := ctx.GetChildren() - if len(children) == 0 { - return nil - } - - // the constraint could be a single SEL (in which case, there's no comparison operator) - if ctx.Cmpr() == nil { - // there should be exactly one SEL - sels := ctx.AllSEL() - if len(sels) != 1 { - v.Err = errorf("JOIN constraint without a comparison operator must have exactly one selector") - return nil - } - - joinExprNode := &JoinConstraint{join: joinNode, ctx: ctx} - - colSelNode := &Selector{} - colSelNode.ctx = sels[0] - colSelNode.parent = joinExprNode - - joinExprNode.AddChild(colSelNode) // TODO: error handling - joinNode.AddChild(joinExprNode) - - return nil - - } - - // we've got a comparison operator - sels := ctx.AllSEL() - if len(sels) != 2 { - // REVISIT: probably unnecessary, should be caught by the parser - v.Err = errorf("JOIN condition must have 2 operands (left & right), but got %d", len(sels)) - return nil - } - - join, ok := v.cur.(*Join) - if !ok { - v.Err = errorf("JOIN condition must have JOIN parent, but got %T", v.cur) - } - joinCondition := &JoinConstraint{join: join, ctx: ctx} - - leftSel := &Selector{} - leftSel.ctx = sels[0] - leftSel.parent = joinCondition - - rightSel := &Selector{} - rightSel.ctx = sels[1] - rightSel.parent = joinCondition - - cmpr := NewCmpr(joinCondition, ctx.Cmpr()) - - v.setIfErr(joinCondition.AddChild(leftSel)) - v.setIfErr(joinCondition.AddChild(cmpr)) - v.setIfErr(joinCondition.AddChild(rightSel)) - v.setIfErr(join.AddChild(joinCondition)) - - return nil - - // - //// it could be either a join condition, or just a SEL - //cond := ctx.FnJoinCond() - //if cond != nil { - // return v.VisitFnJoinCond(cond.(*slq.FnJoinCondContext)) - //} - // - // - // - //sel := ctx.SEL() - //if sel == nil { - // // shouldn't happen, parser should have caught this beforehand - // v.Err = errorf("invalid JOIN expression: %q", ctx.GetText()) - // return nil - //} - // - //joinExprNode := &JoinConstraint{join: joinNode, ctx: ctx} - // - //colSelNode := &Selector{} - //colSelNode.ctx = sel - //colSelNode.parent = joinExprNode - // - //joinExprNode.AddChild(colSelNode) - //joinNode.AddChild(joinExprNode) - - return nil -} - -// -//func (v *ParseTreeVisitor) VisitFnJoinCond(ctx *slq.FnJoinCondContext) interface{} { -// ok := v.notify(ctx) -// if !ok { -// return nil -// } -// -// // the expression could be empty -// children := ctx.GetChildren() -// if len(children) == 0 { -// return nil -// } -// -// // or else it's a LEFT CMPR RIGHT, e.g. .user.uid == .address.uid -// -// sels := ctx.AllSEL() -// if len(sels) != 2 { -// // REVISIT: probably unnecessary, should be caught by the parser -// v.Err = errorf("JOIN condition must have 2 operands (left & right), but got %d", len(sels)) -// return nil -// } -// -// join, ok := v.cur.(*Join) -// if !ok { -// v.Err = errorf("JOIN condition must have JOIN parent, but got %T", v.cur) -// } -// joinCondition := &JoinConstraint{join: join, ctx: ctx} -// -// leftSel := &Selector{} -// leftSel.ctx = sels[0] -// leftSel.parent = joinCondition -// -// rightSel := &Selector{} -// rightSel.ctx = sels[1] -// rightSel.parent = joinCondition -// -// cmpr := NewCmpr(joinCondition, ctx.Cmpr()) -// -// v.setIfErr(joinCondition.AddChild(leftSel)) -// v.setIfErr(joinCondition.AddChild(cmpr)) -// v.setIfErr(joinCondition.AddChild(rightSel)) -// v.setIfErr(join.AddChild(joinCondition)) -// -// return nil -//} - -func (v *ParseTreeVisitor) VisitTerminal(ctx antlr.TerminalNode) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - return nil -} - -func (v *ParseTreeVisitor) VisitRowRange(ctx *slq.RowRangeContext) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - - // [] select all rows (no range) - // [1] select row[1] - // [10:15] select rows 10 thru 15 - // [0:15] select rows 0 thru 15 - // [:15] same as above (0 thru 15) - // [10:] select all rows from 10 onwards - - //lg.Debugf("ctx text[children: %d]: %q\n", len(ctx.GetChildren()), ctx.GetText()) - - if ctx.COLON() == nil && len(ctx.AllINT()) == 0 { - // [] select all rows, aka no range - return nil - } - - if ctx.COLON() == nil { - // [1] -- select row[1] - if len(ctx.AllINT()) != 1 { - return errorf("row range: expected one integer but got %d", len(ctx.AllINT())) - } - - i, _ := strconv.Atoi(ctx.AllINT()[0].GetText()) - rr := NewRowRange(ctx, i, 1) - return v.cur.AddChild(rr) - } - - // there's a colon... can only be one or two ints - if len(ctx.AllINT()) > 2 { - return errorf("row range: expected one or two integers but got %d", len(ctx.AllINT())) - } - - if len(ctx.AllINT()) == 2 { - // [10:15] -- select rows 10 thru 15 - offset, _ := strconv.Atoi(ctx.AllINT()[0].GetText()) - finish, _ := strconv.Atoi(ctx.AllINT()[1].GetText()) - limit := finish - offset - rr := NewRowRange(ctx, offset, limit) - return v.cur.AddChild(rr) - - } - - // it's one of these two cases: - // [:15] (0 thru 15) - // [10:] select all rows from 10 onwards - // so we need to determine if the INT is before or after the colon - offset := -1 - limit := -1 - - if ctx.COLON().GetSymbol().GetTokenIndex() < ctx.AllINT()[0].GetSymbol().GetTokenIndex() { - // [:15] (0 thru 15) - offset = 0 - limit, _ = strconv.Atoi(ctx.AllINT()[0].GetText()) - } else { - // [10:] select all rows from 10 onwards - offset, _ = strconv.Atoi(ctx.AllINT()[0].GetText()) - } - - rr := NewRowRange(ctx, offset, limit) - return v.cur.AddChild(rr) - -} - -func (v *ParseTreeVisitor) VisitErrorNode(ctx antlr.ErrorNode) interface{} { - ok := v.notify(ctx) - if !ok { - return nil - } - return nil -} - -func (v *ParseTreeVisitor) setIfErr(err error) error { - // TODO: this was a silly choice to accomodate the generated parser code... we should - // just return the error back up through the normal return "interface{}" route - if err != nil { - v.Err = err - } - return err -} diff --git a/libsq/ast/range.go b/libsq/ast/range.go index 61fabe34..217f80da 100644 --- a/libsq/ast/range.go +++ b/libsq/ast/range.go @@ -2,14 +2,14 @@ package ast import "github.com/neilotoole/sq/libsq/slq" +// RowRange models a range, effectively {OFFSET,LIMIT}. type RowRange struct { - BaseNode + baseNode Offset int Limit int } -func NewRowRange(ctx *slq.RowRangeContext, offset int, limit int) *RowRange { - +func newRowRange(ctx *slq.RowRangeContext, offset, limit int) *RowRange { rr := &RowRange{} rr.ctx = ctx rr.Offset = offset @@ -21,18 +21,16 @@ func (rr *RowRange) String() string { return rr.Text() } -func (rr *RowRange) Range() (offset int, limit int) { - +func (rr *RowRange) Range() (offset, limit int) { offset = rr.Offset limit = rr.Limit return } func (rr *RowRange) SetParent(parent Node) error { - seg, ok := parent.(*Segment) if !ok { - return errorf("%T requires parent of type *%s", rr, TypeSegment) + return errorf("%T requires parent of type *%s", rr, typeSegment) } rr.parent = seg return nil diff --git a/libsq/ast/range_test.go b/libsq/ast/range_test.go index 674c0d9d..c7785a32 100644 --- a/libsq/ast/range_test.go +++ b/libsq/ast/range_test.go @@ -3,7 +3,7 @@ package ast import ( "testing" - "github.com/neilotoole/sq/libsq/drvr" + "github.com/neilotoole/lg/testlg" "github.com/stretchr/testify/assert" ) @@ -15,18 +15,19 @@ import ( // [10:] select all rows from 10 onwards func TestRowRange1(t *testing.T) { + log := testlg.New(t).Strict(true) - ast := _getAST(t, FixtRowRange1) - assert.Equal(t, 0, NewInspector(ast).CountNodes(TypeRowRange)) - + ast := mustBuildAST(t, fixtRowRange1) + assert.Equal(t, 0, NewInspector(log, ast).CountNodes(typeRowRange)) } func TestRowRange2(t *testing.T) { + log := testlg.New(t).Strict(true) - ast := _getAST(t, FixtRowRange2) - ins := NewInspector(ast) - assert.Equal(t, 1, ins.CountNodes(TypeRowRange)) - nodes := ins.FindNodes(TypeRowRange) + ast := mustBuildAST(t, fixtRowRange2) + ins := NewInspector(log, ast) + assert.Equal(t, 1, ins.CountNodes(typeRowRange)) + nodes := ins.FindNodes(typeRowRange) assert.Equal(t, 1, len(nodes)) rr := nodes[0].(*RowRange) assert.Equal(t, 2, rr.Offset) @@ -34,45 +35,39 @@ func TestRowRange2(t *testing.T) { } func TestRowRange3(t *testing.T) { + log := testlg.New(t).Strict(true) - ast := _getAST(t, FixtRowRange3) - ins := NewInspector(ast) - rr := ins.FindNodes(TypeRowRange)[0].(*RowRange) + ast := mustBuildAST(t, fixtRowRange3) + ins := NewInspector(log, ast) + rr := ins.FindNodes(typeRowRange)[0].(*RowRange) assert.Equal(t, 1, rr.Offset) assert.Equal(t, 2, rr.Limit) } func TestRowRange4(t *testing.T) { + log := testlg.New(t).Strict(true) - ast := _getAST(t, FixtRowRange4) - ins := NewInspector(ast) - rr := ins.FindNodes(TypeRowRange)[0].(*RowRange) + ast := mustBuildAST(t, fixtRowRange4) + ins := NewInspector(log, ast) + rr := ins.FindNodes(typeRowRange)[0].(*RowRange) assert.Equal(t, 0, rr.Offset) assert.Equal(t, 3, rr.Limit) } func TestRowRange5(t *testing.T) { - - ast := _getAST(t, FixtRowRange5) - ins := NewInspector(ast) - rr := ins.FindNodes(TypeRowRange)[0].(*RowRange) + log := testlg.New(t).Strict(true) + ast := mustBuildAST(t, fixtRowRange5) + ins := NewInspector(log, ast) + rr := ins.FindNodes(typeRowRange)[0].(*RowRange) assert.Equal(t, 0, rr.Offset) assert.Equal(t, 3, rr.Limit) } -func TestRowRange6(t *testing.T) { - ast := _getAST(t, FixtRowRange6) - ins := NewInspector(ast) - rr := ins.FindNodes(TypeRowRange)[0].(*RowRange) +func TestRowRange6(t *testing.T) { + log := testlg.New(t).Strict(true) + ast := mustBuildAST(t, fixtRowRange6) + ins := NewInspector(log, ast) + rr := ins.FindNodes(typeRowRange)[0].(*RowRange) assert.Equal(t, 2, rr.Offset) assert.Equal(t, -1, rr.Limit) } - -func _getAST(t *testing.T, query string) *AST { - p := getParser(query) - q := p.Query() - ast, err := NewBuilder(drvr.NewSourceSet()).Build(q) - assert.Nil(t, err) - assert.NotNil(t, ast) - return ast -} diff --git a/libsq/ast/segment.go b/libsq/ast/segment.go index 4a3925f5..cf757cb6 100644 --- a/libsq/ast/segment.go +++ b/libsq/ast/segment.go @@ -6,16 +6,16 @@ import ( "reflect" "strings" - "github.com/emirpasic/gods/sets/hashset" + "github.com/antlr/antlr4/runtime/Go/antlr" "github.com/neilotoole/sq/libsq/slq" - "github.com/pboyer/antlr4/runtime/Go/antlr" ) +var _ Node = (*Segment)(nil) + // Segment models a segment of a query (the elements separated by pipes). // For example, ".user | .uid, .username" is two segments (".user" and ".uid, .username"). type Segment struct { - bn BaseNode - consumed bool + bn baseNode } func (s *Segment) Parent() Node { @@ -23,10 +23,9 @@ func (s *Segment) Parent() Node { } func (s *Segment) SetParent(parent Node) error { - ast, ok := parent.(*AST) if !ok { - return errorf("%T requires parent of type %s", s, TypeAST) + return errorf("%T requires parent of type %s", s, typeAST) } return s.bn.SetParent(ast) } @@ -50,7 +49,6 @@ func (s *Segment) Context() antlr.ParseTree { } func (s *Segment) SetContext(ctx antlr.ParseTree) error { - segCtx, ok := ctx.(*slq.SegmentContext) if !ok { return errorf("expected *parser.SegmentContext, but got %T", ctx) @@ -58,21 +56,14 @@ func (s *Segment) SetContext(ctx antlr.ParseTree) error { return s.bn.SetContext(segCtx) } -// Unconsumed returns a slice of the segments elements that are not marked consumed. -//func (s *Segment) Unconsumed() []Element { -// -// return nil -//} - // ChildType returns the expected Type of the segment's elements, based // on the content of the segment's node's children. The type should be something -// like Selector|Fn +// like Selector|Func func (s *Segment) ChildType() (reflect.Type, error) { - if len(s.Children()) == 0 { return nil, nil } - _, err := s.HasCompatibleChildren() + _, err := s.uniformChildren() if err != nil { return nil, err } @@ -80,26 +71,22 @@ func (s *Segment) ChildType() (reflect.Type, error) { return reflect.TypeOf(s.Children()[0]), nil } -// HasCompatibleNodes returns true if all the nodes of the segment are of a compatible type. -func (s *Segment) HasCompatibleChildren() (bool, error) { - +// uniformChildren returns true if all the nodes of the segment +// are of a uniform type. +func (s *Segment) uniformChildren() (bool, error) { if len(s.Children()) == 0 { return true, nil } - types := hashset.New() - - //fmt.Printf("segment[%d]: element count: %d\n", s.Index(), len(elems)) + typs := map[string]struct{}{} for _, elem := range s.Children() { - //fmt.Printf(" - elem [%d]: %T\n", i, elem) - types.Add(reflect.TypeOf(elem)) + typs[reflect.TypeOf(elem).String()] = struct{}{} } - if types.Size() > 1 { - - str := make([]string, types.Size()) - for i, typ := range types.Values() { - str[i] = fmt.Sprintf("%s", typ) + if len(typs) > 1 { + var str []string + for typ := range typs { + str = append(str, typ) } return false, fmt.Errorf("segment [%d] has more than one element node type: [%s]", s.SegIndex(), strings.Join(str, ", ")) @@ -108,9 +95,8 @@ func (s *Segment) HasCompatibleChildren() (bool, error) { return true, nil } -// Index returns the index of this segment within the IR. +// SegIndex returns the index of this segment. func (s *Segment) SegIndex() int { - for i, seg := range s.bn.parent.Children() { if s == seg { return i @@ -121,7 +107,6 @@ func (s *Segment) SegIndex() int { } func (s *Segment) String() string { - if len(s.Children()) == 1 { return fmt.Sprintf("segment[%d]: [1 element]", s.SegIndex()) } @@ -133,15 +118,14 @@ func (s *Segment) Text() string { return s.bn.Context().GetText() } -// Prev returns the previous segment, or nil. +// Prev returns the previous segment, or nil if this is +// the first segment. func (s *Segment) Prev() *Segment { - parent := s.Parent() children := parent.Children() index := -1 for i, child := range children { - childSeg, ok := child.(*Segment) if !ok { // should never happen @@ -155,6 +139,7 @@ func (s *Segment) Prev() *Segment { } if index == -1 { + // Should never happen panic(fmt.Sprintf("did not find index for this segment: %s", s)) } @@ -165,9 +150,8 @@ func (s *Segment) Prev() *Segment { return children[index-1].(*Segment) } -// Next returns the next segment, or nil. +// Next returns the next segment, or nil if this is the last segment. func (s *Segment) Next() *Segment { - for i, seg := range s.bn.parent.Children() { if seg == s { if i >= len(s.bn.parent.Children())-1 { diff --git a/libsq/ast/segment_test.go b/libsq/ast/segment_test.go index 3bc064c4..1c9dea13 100644 --- a/libsq/ast/segment_test.go +++ b/libsq/ast/segment_test.go @@ -3,50 +3,41 @@ package ast import ( "testing" - "github.com/neilotoole/sq/libsq/drvr" "github.com/stretchr/testify/assert" ) func TestSegment(t *testing.T) { - // `@mydb1 | .user, .address | join(.uid == .uid) | .uid, .username, .country` - p := getParser(FixtJoinQuery1) - query := p.Query() - ast, err := NewBuilder(drvr.NewSourceSet()).Build(query) - assert.Nil(t, err) - assert.NotNil(t, ast) + ast := mustBuildAST(t, fixtJoinQuery1) segs := ast.Segments() - assert.Equal(t, 4, len(segs)) assert.Nil(t, ast.Segments()[0].Prev(), "first segment should not have a parent") assert.Equal(t, ast.Segments()[0], ast.Segments()[1].Prev()) assert.Equal(t, ast.Segments()[1], ast.Segments()[2].Prev()) - ok, err := ast.Segments()[0].HasCompatibleChildren() + ok, err := ast.Segments()[0].uniformChildren() assert.Nil(t, err) assert.True(t, ok) typ, err := ast.Segments()[0].ChildType() assert.Nil(t, err) assert.NotNil(t, typ) - assert.Equal(t, TypeDatasource.String(), typ.String()) - //assert.NotNil(t, typ.(*Datasource)) + assert.Equal(t, typeDatasource.String(), typ.String()) typ, err = ast.Segments()[1].ChildType() assert.Nil(t, err) assert.NotNil(t, typ) - assert.Equal(t, TypeTableSelector.String(), typ.String()) + assert.Equal(t, typeTblSelector.String(), typ.String()) typ, err = ast.Segments()[2].ChildType() assert.Nil(t, err) assert.NotNil(t, typ) - assert.Equal(t, TypeFnJoin.String(), typ.String()) + assert.Equal(t, typeJoin.String(), typ.String()) typ, err = ast.Segments()[3].ChildType() assert.Nil(t, err) assert.NotNil(t, typ) - assert.Equal(t, TypeColSelector.String(), typ.String()) - + assert.Equal(t, typeColSelector.String(), typ.String()) } diff --git a/libsq/ast/selector.go b/libsq/ast/selector.go index 46b5f62e..26caca66 100644 --- a/libsq/ast/selector.go +++ b/libsq/ast/selector.go @@ -3,15 +3,21 @@ package ast import ( "fmt" + "github.com/antlr/antlr4/runtime/Go/antlr" + "github.com/neilotoole/sq/libsq/slq" - "github.com/pboyer/antlr4/runtime/Go/antlr" ) -const emsgNodeNoAddChild = "%T cannot have children: failed to add %T" -const emsgNodeNoAddChildren = "%T cannot have children: failed to add %d children" +const msgNodeNoAddChild = "%T cannot add children: failed to add %T" +const msgNodeNoAddChildren = "%T cannot add children: failed to add %d children" +var _ Node = (*Selector)(nil) + +// Selector is a selector such as ".my_table" or ".my_col". The +// generic selector will typically be replaced with a more specific +// selector node such as TblSelector or ColSelector. type Selector struct { - BaseNode + baseNode } func (s *Selector) String() string { @@ -22,6 +28,10 @@ func (s *Selector) SelValue() string { return s.ctx.GetText()[1:] } +var _ Node = (*TblSelector)(nil) + +// TblSelector is a selector for a table, such as ".my_table" +// or "@my_src.my_table". type TblSelector struct { Selector DSName string @@ -36,6 +46,7 @@ func newTblSelector(seg *Segment, tblName string, ctx antlr.ParseTree) *TblSelec return tbl } +// Selectable implements the Selectable marker interface. func (s *TblSelector) Selectable() { // no-op } @@ -43,19 +54,16 @@ func (s *TblSelector) SelValue() string { return s.TblName } -// From returns the table name. -func (ts *TblSelector) From() (string, error) { - // Drop the leading dot, e.g. ".user" -> "user" - return ts.Text()[1:], nil -} - func (s *TblSelector) String() string { text := nodeString(s) - text = text + fmt.Sprintf(" | table: %q | datasource: %q", s.SelValue(), s.DSName) + text += fmt.Sprintf(" | table: %q | datasource: %q", s.SelValue(), s.DSName) return text } -// ColSelector models a column name, e.g. '.user_id'. +var _ Node = (*ColSelector)(nil) +var _ ColExpr = (*ColSelector)(nil) + +// ColSelector models a column selector such as ".user_id". type ColSelector struct { Selector } @@ -73,19 +81,26 @@ func (s *ColSelector) ColExpr() (string, error) { return s.Text()[1:], nil } +func (s *ColSelector) IsColName() bool { + return true +} + func (s *ColSelector) String() string { return nodeString(s) } +var _ Node = (*Cmpr)(nil) + +// Cmpr models a comparison. type Cmpr struct { - BaseNode + baseNode } func (c *Cmpr) String() string { return nodeString(c) } -func NewCmpr(parent Node, ctx slq.ICmprContext) *Cmpr { +func newCmnr(parent Node, ctx slq.ICmprContext) *Cmpr { leaf := ctx.GetChild(0).(*antlr.TerminalNodeImpl) cmpr := &Cmpr{} cmpr.ctx = leaf @@ -93,8 +108,9 @@ func NewCmpr(parent Node, ctx slq.ICmprContext) *Cmpr { return cmpr } +// Datasource models a source such as "@sakila_sl3". type Datasource struct { - BaseNode + baseNode } func (d *Datasource) String() string { diff --git a/libsq/ast/types.go b/libsq/ast/types.go deleted file mode 100644 index c27f674a..00000000 --- a/libsq/ast/types.go +++ /dev/null @@ -1,41 +0,0 @@ -package ast - -import ( - "reflect" - - "github.com/neilotoole/sq-driver/hackery/database/sql" -) - -type NodeType reflect.Type - -//var TypeNode = NodeType(reflect.TypeOf((*Node)(nil)).Elem()) -//var TypeBaseNode = NodeType(reflect.TypeOf((*BaseNode)(nil)).Elem()) -//var TypeIR = NodeType(reflect.TypeOf((*IR)(nil)).Elem()) -//var TypeDatasource = NodeType(reflect.TypeOf((*Datasource)(nil)).Elem()) -//var TypeSegment = NodeType(reflect.TypeOf((*Segment)(nil)).Elem()) -//var TypeFnJoin = NodeType(reflect.TypeOf((*FnJoin)(nil))) -//var TypeFnJoinExpr = NodeType(reflect.TypeOf((*FnJoinExpr)(nil)).Elem()) -//var TypeSelector = NodeType(reflect.TypeOf((*Selector)(nil)).Elem()) -//var TypeColSelector = NodeType(reflect.TypeOf((*ColSelector)(nil)).Elem()) -//var TypeTableSelector = NodeType(reflect.TypeOf((*TableSelector)(nil)).Elem()) -//var TypeRowRange = NodeType(reflect.TypeOf((*RowRange)(nil)).Elem()) - -// TODO: Consider renaming these to, e.g. TypeSegmentP or TypeSegmentPtr? -var TypeNode = NodeType(reflect.TypeOf((*Node)(nil))) -var TypeBaseNode = NodeType(reflect.TypeOf((*BaseNode)(nil))) -var TypeAST = NodeType(reflect.TypeOf((*AST)(nil))) -var TypeDatasource = NodeType(reflect.TypeOf((*Datasource)(nil))) -var TypeSegment = NodeType(reflect.TypeOf((*Segment)(nil))) -var TypeFnJoin = NodeType(reflect.TypeOf((*Join)(nil))) -var TypeFnJoinExpr = NodeType(reflect.TypeOf((*JoinConstraint)(nil))) -var TypeSelector = NodeType(reflect.TypeOf((*Selector)(nil))) -var TypeColSelector = NodeType(reflect.TypeOf((*ColSelector)(nil))) -var TypeTableSelector = NodeType(reflect.TypeOf((*TblSelector)(nil))) -var TypeRowRange = NodeType(reflect.TypeOf((*RowRange)(nil))) -var TypeNullString = NodeType(reflect.TypeOf((*sql.NullString)(nil))) -var TypeNullInt64 = NodeType(reflect.TypeOf((*sql.NullInt64)(nil))) -var TypeNullFloat64 = NodeType(reflect.TypeOf((*sql.NullFloat64)(nil))) -var TypeByteArray = NodeType(reflect.TypeOf((*[]byte)(nil))) - -var TypeSelectable = NodeType(reflect.TypeOf((*Selectable)(nil)).Elem()) -var TypeColExpr = NodeType(reflect.TypeOf((*ColExpr)(nil)).Elem()) diff --git a/libsq/ast/types_test.go b/libsq/ast/types_test.go deleted file mode 100644 index 60331444..00000000 --- a/libsq/ast/types_test.go +++ /dev/null @@ -1,24 +0,0 @@ -package ast - -import ( - "testing" - - "github.com/stretchr/testify/assert" -) - -// TestTypes_IsNode verifies that the package types implement appropriate interfaces etc. -func TestTypes_IsNode(t *testing.T) { - - // these "tests" will be caught statically by the compiler - var node Node - assert.Nil(t, node) - - node = &AST{} - node = &Segment{} - node = &Selector{} - node = &TblSelector{} - node = &ColSelector{} - node = &Join{} - node = &JoinConstraint{} - node = &Cmpr{} -} diff --git a/libsq/ast/walker.go b/libsq/ast/walker.go index d224ab2d..b7d187f8 100644 --- a/libsq/ast/walker.go +++ b/libsq/ast/walker.go @@ -1,32 +1,37 @@ package ast -import "reflect" +import ( + "reflect" -// NodeVisitorFn is a visitor function that the walker invokes for each node it visits. -type NodeVisitorFn func(*Walker, Node) error + "github.com/neilotoole/lg" +) -// Walker traverses an AST tree (or a subset thereof). +// nodeVisitorFn is a visitor function that the walker invokes for each node it visits. +type nodeVisitorFn func(lg.Log, *Walker, Node) error + +// Walker traverses a node tree (the AST, or a subset thereof). type Walker struct { + log lg.Log root Node - visitors map[NodeType][]NodeVisitorFn + visitors map[reflect.Type][]nodeVisitorFn // state is a generic field to hold any data that a visitor function // might need to stash on the walker. state interface{} } // NewWalker returns a new Walker instance. -func NewWalker(node Node) *Walker { - w := &Walker{root: node} - w.visitors = make(map[NodeType][]NodeVisitorFn) +func NewWalker(log lg.Log, node Node) *Walker { + w := &Walker{log: log, root: node} + w.visitors = map[reflect.Type][]nodeVisitorFn{} return w } // AddVisitor adds a visitor function for the specified node type (and returns // the receiver Walker, to enabled chaining). -func (w *Walker) AddVisitor(typ NodeType, visitor NodeVisitorFn) *Walker { +func (w *Walker) AddVisitor(typ reflect.Type, visitor nodeVisitorFn) *Walker { funcs := w.visitors[typ] if funcs == nil { - funcs = []NodeVisitorFn{} + funcs = []nodeVisitorFn{} } funcs = append(funcs, visitor) @@ -40,12 +45,12 @@ func (w *Walker) Walk() error { } func (w *Walker) visit(node Node) error { - typ := NodeType(reflect.TypeOf(node)) + typ := reflect.TypeOf(node) visitFns, ok := w.visitors[typ] if ok { for _, visitFn := range visitFns { - err := visitFn(w, node) + err := visitFn(w.log, w, node) if err != nil { return err } @@ -66,3 +71,177 @@ func (w *Walker) visitChildren(node Node) error { return nil } + +// narrowTblSel takes a generic selector, and if appropriate, converts it to a TblSel. +func narrowTblSel(log lg.Log, w *Walker, node Node) error { + // node is guaranteed to be typeSelector + sel, ok := node.(*Selector) + if !ok { + return errorf("expected *Selector but got %T", node) + } + + seg, ok := sel.Parent().(*Segment) + if !ok { + log.Debugf("parent is not a segment, but is %T", sel.Parent()) + return nil + } + + if seg.SegIndex() == 0 { + return errorf("syntax error: illegal to have raw selector in first segment: %q", sel.Text()) + } + + typ, err := seg.Prev().ChildType() + if err != nil { + return err + } + + if typ == typeDatasource { + ds, ok := seg.Prev().Children()[0].(*Datasource) + if !ok { + return errorf("syntax error: expected Datasource, but got %T", seg.Prev().Children()[0]) + } + + // this means that this selector must be a table selector + tblSel := newTblSelector(seg, sel.SelValue(), sel.Context()) + tblSel.DSName = ds.Text() + err = replaceNode(sel, tblSel) + if err != nil { + return err + } + } + + return nil +} + +// narrowColSel takes a generic selector, and if appropriate, converts it to a ColSel. +func narrowColSel(log lg.Log, w *Walker, node Node) error { + // node is guaranteed to be typeSelector + sel, ok := node.(*Selector) + if !ok { + return errorf("expected *Selector but got %T", node) + } + + parent := sel.Parent() + + switch parent := parent.(type) { + case *JoinConstraint, *Func: + // selector parent is JoinConstraint or Func, therefore this is a ColSelector + log.Debugf("selector parent is %T, therefore this is a ColSelector", parent) + colSel := newColSelector(sel.Parent(), sel.ctx) + return replaceNode(sel, colSel) + case *Segment: + // if the parent is a segment, this is a "top-level" selector. + // Only top-level selectors after the final selectable seg are + // convert to colSels. + selectableSeg, err := NewInspector(log, w.root.(*AST)).FindFinalSelectableSegment() + if err != nil { + return err + } + + if parent.SegIndex() <= selectableSeg.SegIndex() { + log.Debugf("skipping this selector because it's not after the final selectable segment") + return nil + } + + colSel := newColSelector(sel.Parent(), sel.ctx) + return replaceNode(sel, colSel) + + default: + log.Warnf("skipping this selector, as parent is not of a relevant type, but is %T", parent) + } + + return nil +} + +// findWhereClause locates any expressions that represent the WHERE clause of the SQL SELECT stmt, and +// inserts a SetWhere node into the AST for that expression. +// +// In practice, a WHERE clause is an *Expr that is the only child of a segment. For example: +// @my1 | .tbluser | .uid > 4 | .uid, .email +// In this case, ".uid > 4" is the WHERE clause. +func findWhereClause(log lg.Log, w *Walker, node Node) error { + // node is guaranteed to be *Expr + expr, ok := node.(*Expr) + if !ok { + return errorf("expected *Expr but got %T", node) + } + + log.Debugf("found expression: %q", expr.Context().GetText()) + + seg, ok := expr.Parent().(*Segment) + if !ok { + // The expr is not the direct child of a segment, so we're not interested in it. + return nil + } + + log.Debugf("expr parent is *Segment") + if len(seg.Children()) != 1 { + return errorf("Segment with expression - representing a WHERE clause - must only have one child") + } + + // The expr is the direct and only child of a segment. + // We insert a Where between the segment and the expr. + where := &Where{} + where.ctx = expr.ctx + err := where.AddChild(expr) + if err != nil { + return err + } + err = expr.SetParent(where) + if err != nil { + return err + } + + seg.bn.children[0] = where + return nil +} + +// determineJoinTables attempts to determine the tables that a JOIN refers to +func determineJoinTables(log lg.Log, w *Walker, node Node) error { + // node is guaranteed to be FnJoin + fnJoin, ok := node.(*Join) + if !ok { + return errorf("expected *FnJoin but got %T", node) + } + + seg, ok := fnJoin.Parent().(*Segment) + if !ok { + return errorf("JOIN() must have a *Segment parent, but got %T", fnJoin.Parent()) + } + + prevSeg := seg.Prev() + if prevSeg == nil { + return errorf("JOIN() must not be in the first segment") + } + + if len(prevSeg.Children()) != 2 || len(nodesWithType(prevSeg.Children(), typeTblSelector)) != 2 { + return errorf("JOIN() must have two table selectors in the preceding segment") + } + + fnJoin.leftTbl, ok = prevSeg.Children()[0].(*TblSelector) + if !ok { + return errorf("JOIN() expected table selector in previous segment, but was %T(%q)", prevSeg.Children()[0], prevSeg.Children()[0].Text()) + } + fnJoin.rightTbl, ok = prevSeg.Children()[1].(*TblSelector) + if !ok { + return errorf("JOIN() expected table selector in previous segment, but was %T(%q)", prevSeg.Children()[1], prevSeg.Children()[1].Text()) + } + return nil +} + +// visitCheckRowRange validates the RowRange element +func visitCheckRowRange(log lg.Log, w *Walker, node Node) error { + // node is guaranteed to be FnJoin + rr, ok := node.(*RowRange) + if !ok { + return errorf("expected %s but got %T", typeRowRange, node) + } + + if w.state != nil { + return errorf("only one row range element permitted") + } + + w.state = rr + // TODO: check that the row range is after a selectable + return nil +} diff --git a/libsq/ast/walker_test.go b/libsq/ast/walker_test.go index 15d9a51b..663ae081 100644 --- a/libsq/ast/walker_test.go +++ b/libsq/ast/walker_test.go @@ -3,51 +3,53 @@ package ast import ( "testing" - "github.com/neilotoole/sq/libsq/drvr" "github.com/stretchr/testify/assert" + + "github.com/neilotoole/lg" + "github.com/neilotoole/lg/testlg" ) func TestWalker(t *testing.T) { + log := testlg.New(t).Strict(true) // `@mydb1 | .user, .address | join(.uid == .uid) | .uid, .username, .country` - p := getParser(FixtJoinQuery1) + p := getSLQParser(fixtJoinQuery1) query := p.Query() - ast, err := NewBuilder(drvr.NewSourceSet()).Build(query) + ast, err := buildAST(log, query) assert.Nil(t, err) assert.NotNil(t, ast) - walker := NewWalker(ast) + walker := NewWalker(log, ast) count := 0 - visitor := func(w *Walker, node Node) error { + visitor := func(log lg.Log, w *Walker, node Node) error { count++ return w.visitChildren(node) } - walker.AddVisitor(TypeFnJoin, visitor) + walker.AddVisitor(typeJoin, visitor) err = walker.Walk() assert.Nil(t, err) assert.Equal(t, 1, count) // test multiple visitors on the same node type - walker = NewWalker(ast) + walker = NewWalker(log, ast) countA := 0 - visitorA := func(w *Walker, node Node) error { + visitorA := func(log lg.Log, w *Walker, node Node) error { countA++ return w.visitChildren(node) } countB := 0 - visitorB := func(w *Walker, node Node) error { + visitorB := func(log lg.Log, w *Walker, node Node) error { countB++ return w.visitChildren(node) } - walker.AddVisitor(TypeTableSelector, visitorA) - walker.AddVisitor(TypeColSelector, visitorB) + walker.AddVisitor(typeTblSelector, visitorA) + walker.AddVisitor(typeColSelector, visitorB) err = walker.Walk() assert.Nil(t, err) assert.Equal(t, 2, countA) assert.Equal(t, 5, countB) - } diff --git a/libsq/cleanup/cleanup.go b/libsq/cleanup/cleanup.go new file mode 100644 index 00000000..5bdc0145 --- /dev/null +++ b/libsq/cleanup/cleanup.go @@ -0,0 +1,134 @@ +// Package cleanup provides functionality for executing +// cleanup functions. +package cleanup + +import ( + "io" + "sync" + + "github.com/neilotoole/sq/libsq/errz" +) + +// Nop is a no-op cleanup.Func. +var Nop = func() error { return nil } + +// New returns a new Cleanup instance. +func New() *Cleanup { + return &Cleanup{} +} + +// Cleanup encapsulates a slice of cleanup funcs. The +// funcs are executed by Run in reverse order to which +// they are added. +// Cleanup is safe for concurrent use. +type Cleanup struct { + mu sync.Mutex + fns []func() error +} + +// Len returns the count of cleanup funcs. +func (cu *Cleanup) Len() int { + if cu == nil { + return 0 + } + cu.mu.Lock() + defer cu.mu.Unlock() + + return len(cu.fns) +} + +// Append c's cleanup funcs to cu. +func (cu *Cleanup) Append(c *Cleanup) *Cleanup { + if c == nil || c == cu { + return cu + } + + c.mu.Lock() + defer c.mu.Unlock() + cu.mu.Lock() + defer cu.mu.Unlock() + + cu.fns = append(cu.fns, c.fns...) + return cu +} + +// Add adds a cleanup func. +func (cu *Cleanup) Add(fn func()) *Cleanup { + if fn == nil { + // For convenience in avoiding boilerplate nil checks + // in the caller, we just ignore the nil arg. + return cu + } + cu.mu.Lock() + defer cu.mu.Unlock() + + cu.fns = append(cu.fns, func() error { + fn() + return nil + }) + return cu +} + +// AddE adds an error-returning cleanup func. +func (cu *Cleanup) AddE(fn func() error) *Cleanup { + if fn == nil { + // For convenience in avoiding boilerplate nil checks + // in the caller, we just ignore the nil arg. + return cu + } + cu.mu.Lock() + defer cu.mu.Unlock() + + cu.fns = append(cu.fns, fn) + return cu +} + +// AddC adds c.Close as a cleanup func. This method +// is no-op if c is nil. +func (cu *Cleanup) AddC(c io.Closer) *Cleanup { + if c == nil { + // For convenience in avoiding boilerplate nil checks + // in the caller, we just ignore the nil arg. + return cu + } + cu.mu.Lock() + defer cu.mu.Unlock() + + cu.fns = append(cu.fns, c.Close) + return cu +} + +// Run executes the cleanup funcs in reverse order to which +// they were added. All funcs are executed, even in the presence of +// an error from a func. Any errors are combined into a single error. +// The set of cleanup funcs is removed when Run returns. +func (cu *Cleanup) Run() error { + if cu == nil { + return nil + } + + cu.mu.Lock() + defer cu.mu.Unlock() + + if len(cu.fns) == 0 { + return nil + } + + // Capture any cleanup func errors + var err error + + // Run cleanups in reverse order + for i := len(cu.fns) - 1; i >= 0; i-- { + fn := cu.fns[i] + if fn == nil { + // skip any nil fns + continue + } + err = errz.Append(err, fn()) + } + + // Set fns to nil so that the cleanup funcs + // can't get run twice. + cu.fns = nil + return err +} diff --git a/libsq/cleanup/cleanup_test.go b/libsq/cleanup/cleanup_test.go new file mode 100644 index 00000000..5ed86a24 --- /dev/null +++ b/libsq/cleanup/cleanup_test.go @@ -0,0 +1,55 @@ +package cleanup_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/errz" + + "github.com/neilotoole/sq/libsq/cleanup" +) + +func TestCleanup(t *testing.T) { + want := []int{4, 3, 2, 1, 0} + var got []int + + clnup := cleanup.New() + + for i := 0; i < 5; i++ { + i := i + clnup.AddE(func() error { + got = append(got, i) + return nil + }) + } + + err := clnup.Run() + require.NoError(t, err) + require.Equal(t, want, got) +} + +func TestCleanup_Error(t *testing.T) { + clnup := cleanup.New() + + clnup.AddE(func() error { + return nil + }) + + clnup.AddE(func() error { + return errz.New("err1") + }) + + clnup.AddE(func() error { + return errz.New("err2") + }) + + err := clnup.Run() + require.Error(t, err) + + require.Equal(t, "err2; err1", err.Error()) + errs := errz.Errors(err) + require.Equal(t, 2, len(errs)) + require.Equal(t, "err2", errs[0].Error()) + require.Equal(t, "err1", errs[1].Error()) +} diff --git a/libsq/dbwriter.go b/libsq/dbwriter.go new file mode 100644 index 00000000..ecbff6ce --- /dev/null +++ b/libsq/dbwriter.go @@ -0,0 +1,195 @@ +package libsq + +import ( + "context" + "database/sql" + "sync" + + "github.com/neilotoole/lg" + "go.uber.org/atomic" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// DefaultRecordChSize is the default size of a record channel. +const DefaultRecordChSize = 100 + +// DBWriter implements RecordWriter, writing +// records to a database table. +type DBWriter struct { + log lg.Log + wg *sync.WaitGroup + cancelFn context.CancelFunc + destDB driver.Database + destTbl string + recordCh chan sqlz.Record + written *atomic.Int64 + errCh chan error + errs []error + + // preWriteHook, when non-nil, is invoked by the Open method before any + // records are written. This is useful when the recMeta or tx are + // needed to perform actions before insertion, such as creating + // the dest table on the fly. + preWriteHook func(ctx context.Context, recMeta sqlz.RecordMeta, tx sqlz.DB) error +} + +// NewDBWriter returns a new writer than implements RecordWriter. +// The writer writes records from recordCh to destTbl +// in destDB. The recChSize param controls the size of recordCh +// returned by the writer's Open method. +func NewDBWriter(log lg.Log, destDB driver.Database, destTbl string, recChSize int) *DBWriter { + return &DBWriter{ + log: log, + destDB: destDB, + destTbl: destTbl, + recordCh: make(chan sqlz.Record, recChSize), + errCh: make(chan error, 3), + written: atomic.NewInt64(0), + wg: &sync.WaitGroup{}, + } + + // Note: errCh has size 3 because that's the maximum number of + // errs that could be sent. Frequently only one err is sent, + // but sometimes there are additional errs, e.g. when + // ctx is done, we send ctx.Err, followed by any rollback err. +} + +// Open implements RecordWriter. +func (w *DBWriter) Open(ctx context.Context, cancelFn context.CancelFunc, recMeta sqlz.RecordMeta) (chan<- sqlz.Record, <-chan error, error) { + w.cancelFn = cancelFn + + // REVISIT: tx could potentially be passed to NewDBWriter? + tx, err := w.destDB.DB().BeginTx(ctx, nil) + if err != nil { + return nil, nil, errz.Wrapf(err, "failed to open tx for %s.%s", w.destDB.Source().Handle, w.destTbl) + } + + if w.preWriteHook != nil { + err = w.preWriteHook(ctx, recMeta, tx) + if err != nil { + w.rollback(tx, err) + return nil, nil, err + } + } + + // insertStmt, _, _, mungeFn, err := w.destDB.SQLDriver().PrepareInsertStmt(ctx, tx, w.destTbl, recMeta.Names()) + stmtExecer, err := w.destDB.SQLDriver().PrepareInsertStmt(ctx, tx, w.destTbl, recMeta.Names()) + if err != nil { + w.rollback(tx, err) + return nil, nil, err + } + + w.wg.Add(1) + go func() { + defer func() { + // When the inserter goroutine finishes: + // - we close the errCh (and indicator that the writer is done) + // - and mark the wg as done, which the Wait method depends upon. + close(w.errCh) + w.wg.Done() + }() + + for { + select { + case <-ctx.Done(): + // ctx is done (e.g. cancelled), so we're going to rollback. + w.rollback(tx, ctx.Err()) + return + + case rec := <-w.recordCh: + if rec == nil { + // No more results on recordCh, it has been closed. + // It's time to commit the tx. + // Note that Commit automatically closes any stmts + // that were prepared by tx. + commitErr := errz.Err(tx.Commit()) + if commitErr != nil { + w.log.Error(commitErr) + w.addErrs(commitErr) + } else { + w.log.Debugf("Tx commit success for %s.%s", w.destDB.Source().Handle, w.destTbl) + } + return + } + + // rec is not nil, therefore we write it out + err = w.doInsert(ctx, stmtExecer, rec) + if err != nil { + w.rollback(tx, err) + return + } + + // Otherwise, we successfully wrote rec to tx. + // Therefore continue to wait/select for the next + // element on recordCh (or for recordCh to close) + // or for ctx.Done indicating timeout or cancel etc. + } + } + + }() + + return w.recordCh, w.errCh, nil +} + +// Wait implements RecordWriter. +func (w *DBWriter) Wait() (written int64, err error) { + w.wg.Wait() + if w.cancelFn != nil { + w.cancelFn() + } + return w.written.Load(), errz.Combine(w.errs...) +} + +// addErrs handles any non-nil err in errs by appending it to w.errs +// and sending it on w.errCh. +func (w *DBWriter) addErrs(errs ...error) { + for _, err := range errs { + if err != nil { + w.errs = append(w.errs, err) + w.errCh <- err + } + } +} + +// rollback rolls back tx. Note that rollback or commit of the tx +// will close all of the tx's prepared statements, so we don't +// need to close those manually. +func (w *DBWriter) rollback(tx *sql.Tx, causeErrs ...error) { + // Guaranteed to be at least one causeErr + w.log.Errorf("failed to insert to %s.%s: tx rollback due to: %s", + w.destDB.Source().Handle, w.destTbl, causeErrs[0]) + + rollbackErr := errz.Err(tx.Rollback()) + w.log.WarnIfError(rollbackErr) + + w.addErrs(causeErrs...) + w.addErrs(rollbackErr) +} + +func (w *DBWriter) doInsert(ctx context.Context, stmtExecer *driver.StmtExecer, rec sqlz.Record) error { + err := stmtExecer.Munge(rec) + if err != nil { + return err + } + + affected, err := stmtExecer.Exec(ctx, rec...) + if err != nil { + // NOTE: in the scenario where we're inserting into + // a SQLite db, and there's multiple writers (inserters) to + // the same db, a "database is locked" error from SQLite is + // possible. See https://github.com/mattn/go-sqlite3/issues/274 + // Perhaps there's a sensible way to handle such an error that + // could be tackled here. + return errz.Err(err) + } + + if affected != 1 { + w.log.Warnf("expected 1 affected row for insert, but got %d", affected) + } + + w.written.Add(affected) + return nil +} diff --git a/libsq/driver/driver.go b/libsq/driver/driver.go new file mode 100644 index 00000000..8ea9af97 --- /dev/null +++ b/libsq/driver/driver.go @@ -0,0 +1,348 @@ +package driver + +import ( + "context" + "database/sql" + "strings" + "sync" + + "github.com/neilotoole/sq/libsq/stringz" + + "github.com/neilotoole/sq/libsq/cleanup" + + "github.com/neilotoole/lg" + "github.com/neilotoole/sq/libsq/errz" + + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlbuilder" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// These constants parameterize neilotoole/errgroup usage. Ultimately +// the values should be configurable. +const ( + ErrgroupNumG = 16 + ErrgroupQSize = 16 +) + +// Provider is a factory that returns Driver instances. +type Provider interface { + // DriverFor returns a driver instance for the given type. + DriverFor(typ source.Type) (Driver, error) +} + +// DatabaseOpener opens a Database. +type DatabaseOpener interface { + // Open returns a Database instance for src. + Open(ctx context.Context, src *source.Source) (Database, error) +} + +// JoinDatabaseOpener can open a join database. +type JoinDatabaseOpener interface { + // OpenJoin opens an appropriate Database for use as + // a work DB for joining across sources. + OpenJoin(ctx context.Context, src1, src2 *source.Source, srcN ...*source.Source) (Database, error) +} + +// ScratchDatabaseOpener opens a scratch database. A scratch database is +// typically a short-lived database used as a target for loading +// non-SQL data (such as CSV). +type ScratchDatabaseOpener interface { + // OpenScratch returns a database for scratch use. + OpenScratch(ctx context.Context, name string) (Database, error) +} + +// Driver is the interface that must be implemented for a data +// source type. +type Driver interface { + DatabaseOpener + + // DriverMetadata returns driver metadata. + DriverMetadata() Metadata + + // ValidateSource verifies that the source is valid for this driver. It + // may transform the source into a canonical form, which is returned in + // the "src" return value (the original source is not changed). An error + // is returned if the source is invalid. + ValidateSource(source *source.Source) (src *source.Source, err error) + + // Ping verifies that the source is reachable, or returns an error if not. + // The exact behavior of Ping() is driver-dependent. + Ping(ctx context.Context, src *source.Source) error + + // Truncate truncates tbl in src. If arg reset is true, the + // identity counter for tbl should be reset, if supported + // by the driver. Some DB impls may reset the identity + // counter regardless of the val of reset. + Truncate(ctx context.Context, src *source.Source, tbl string, reset bool) (affected int64, err error) +} + +// SQLDriver is implemented by Driver instances for SQL databases. +type SQLDriver interface { + Driver + + // Dialect returns the SQL dialect. + Dialect() Dialect + + // SQLBuilder returns the SQL builder for this driver. + SQLBuilder() (sqlbuilder.FragmentBuilder, sqlbuilder.QueryBuilder) + + // TableColumnTypes returns the column type info from + // the SQL driver. If len(colNames) is 0, info is returned + // for all columns in the table. + TableColumnTypes(ctx context.Context, db sqlz.DB, tblName string, colNames []string) ([]*sql.ColumnType, error) + + // RecordMeta returns the result metadata (the metadata for + // each col) from colTypes. RecordMeta is preferred over + // sql.Rows.ColumnTypes because of the inconsistent behavior + // of various SQL driver implementations wrt reporting + // "nullable" information and other quirks. The returned + // metadata may differ from the original metadata returned + // by rows.ColumnTypes. + // + // The caller should typically should invoke rows.Next before + // this method is invoked, as some implementations do not return + // complete column type info until after the first call to rows.Next. + // + // RecordMeta also returns a NewRecordFunc which can be + // applied to the scan row from sql.Rows. + RecordMeta(colTypes []*sql.ColumnType) (sqlz.RecordMeta, NewRecordFunc, error) + + // PrepareInsertStmt prepares a statement for inserting + // values to destColNames in destTbl. Use the returned StmtExecer + // per its documentation. It is the caller's responsibility to + // close the execer. + // + // TODO: PrepareInsertStmt should take a param rowCount that + // specifies how many rows of placeholders the statment takes. + PrepareInsertStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string) (*StmtExecer, error) + + // PrepareUpdateStmt prepares a statement for updating destColNames in + // destTbl, using the supplied where clause (which may be empty). + // The where arg should use question mark "?" as the placeholder: it will + // be translated to the appropriate driver-specific placehold. For example, + // the where arg could be: + // + // "actor_id = ? AND first_name = ?". + // + // Use the returned StmtExecer per its documentation. It is the caller's + // responsibility to close the execer. + PrepareUpdateStmt(ctx context.Context, db sqlz.DB, destTbl string, destColNames []string, where string) (*StmtExecer, error) + + // CreateTable creates the table defined by tblDef. Some implementations + // may not honor all of the fields of tblDef, e.g. an impl might not + // build the foreign key constraints. At a minimum the implementation + // must honor the table name and column names and kinds from tblDef. + CreateTable(ctx context.Context, db sqlz.DB, tblDef *sqlmodel.TableDef) error + + // CopyTable copies fromTable into a new table toTable. + // If copyData is true, fromTable's data is also copied. + // Constraints (keys, defaults etc.) may not be copied. The + // number of copied rows is returned in copied. + CopyTable(ctx context.Context, db sqlz.DB, fromTable, toTable string, copyData bool) (copied int64, err error) + + // DropTable drops tbl from db. If ifExists is true, an "IF EXISTS" + // or equivalent clause is added, if supported. + DropTable(ctx context.Context, db sqlz.DB, tbl string, ifExists bool) error +} + +// Database models a database handle. It is conceptually equivalent to +// stdlib sql.DB, and in fact encapsulates a sql.DB instance. The +// realized sql.DB instance can be accessed via the DB method. +type Database interface { + // DB returns the sql.DB object for this Database. + DB() *sql.DB + + // SQLDriver returns the underlying database driver. This + // may be different from the type reported by the + // Database source. + SQLDriver() SQLDriver + + // Source returns the data source for which this connection was opened. + Source() *source.Source + + // SourceMetadata returns metadata about the data source. + SourceMetadata(ctx context.Context) (*source.Metadata, error) + + // TableMetadata returns metadata for the specified table in the data source. + TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) + + // Close is invoked to close and release any underlying resources. + Close() error +} + +// Metadata holds driver metadata. +type Metadata struct { + // Type is the driver source type, e.g. "mysql" or "csv", etc. + Type source.Type `json:"type"` + + // Description is typically the long name of the driver, e.g. + // "MySQL" or "Microsoft Excel XLSX". + Description string `json:"description"` + + // Doc is optional documentation, typically a URL. + Doc string `json:"doc,omitempty"` + + // UserDefined is true if this driver is the product of a + // user driver definition, and false if built-in. + UserDefined bool `json:"user_defined"` + + // IsSQL is true if this driver is a SQL driver. + IsSQL bool `json:"is_sql"` + + // Monotable is true if this is a non-SQL document type that + // effectively has a single table, such as CSV. + Monotable bool `json:"monotable"` +} + +// Dialect holds driver-specific dialect values. +type Dialect struct { + // Type is the dialect's driver source type. + Type source.Type `json:"type"` + + // Placeholders returns a string of n placeholders. + // For example "?, ?, ?" or "$1, $2, $3". + Placeholders func(n int) string + + // Quote is the quote rune, typically the double quote rune. + Quote rune `json:"quote"` + + // IntBool is true if BOOLEAN is handled as an INT by the DB driver. + IntBool bool `json:"int_bool"` +} + +// Enquote returns s surrounded by d.Quote. +func (d Dialect) Enquote(s string) string { + return stringz.Surround(s, string(d.Quote)) +} + +func (d Dialect) String() string { + return d.Type.String() +} + +// Databases provides a mechanism for getting Database instances. +type Databases struct { + log lg.Log + drvrs Provider + mu sync.Mutex + scratchSrcFn ScratchSrcFunc + dbases map[string]Database + clnup *cleanup.Cleanup +} + +// NewDatabases returns a Databases instances. +func NewDatabases(log lg.Log, drvrs Provider, scratchSrcFn ScratchSrcFunc) *Databases { + return &Databases{ + log: log, + drvrs: drvrs, + mu: sync.Mutex{}, + scratchSrcFn: scratchSrcFn, + dbases: map[string]Database{}, + clnup: cleanup.New(), + } +} + +// Open returns an opened Database for src. The returned Database +// may be cached and returned on future invocations for the +// same handle. Thus, the caller should typically not close +// the Database: it will be closed via d.Close. +// +// Open implements DatabaseOpener. +func (d *Databases) Open(ctx context.Context, src *source.Source) (Database, error) { + d.mu.Lock() + defer d.mu.Unlock() + + dbase, ok := d.dbases[src.Handle] + if ok { + return dbase, nil + } + + drvr, err := d.drvrs.DriverFor(src.Type) + if err != nil { + return nil, err + } + + dbase, err = drvr.Open(ctx, src) + if err != nil { + return nil, err + } + + d.clnup.AddC(dbase) + + d.dbases[src.Handle] = dbase + return dbase, nil +} + +// OpenScratch returns a scratch database instance. It is not +// necessary for the caller to close the returned Database as +// its Close method will be invoked by d.Close. +// +// OpenScratch implements ScratchDatabaseOpener. +func (d *Databases) OpenScratch(ctx context.Context, name string) (Database, error) { + scratchSrc, cleanFn, err := d.scratchSrcFn(d.log, name) + if err != nil { + // if err is non-nil, cleanup is guaranteed to be nil + return nil, err + } + d.log.Debugf("got scratch src %s: %s", scratchSrc.Handle, scratchSrc.RedactedLocation()) + + scratchDBClnup := cleanup.New().AddE(cleanFn) + + drvr, err := d.drvrs.DriverFor(scratchSrc.Type) + if err != nil { + d.log.WarnIfError(scratchDBClnup.Run()) + return nil, err + } + + sqlDrvr, ok := drvr.(SQLDriver) + if !ok { + return nil, errz.Errorf("driver for scratch source %s is not a SQLDriver but is %T", scratchSrc.Handle, drvr) + } + + var backingDB Database + backingDB, err = sqlDrvr.Open(ctx, scratchSrc) + if err != nil { + d.log.WarnIfError(scratchDBClnup.Run()) + return nil, err + } + + scratchDBClnup.AddE(backingDB.Close) + + scratchDB := &scratchDatabase{log: d.log, impl: backingDB, cleanup: scratchDBClnup} + + // scratchDB.Close will be invoked when d.Close is invoked. + d.clnup.AddE(scratchDB.Close) + return scratchDB, nil +} + +// OpenJoin opens an appropriate database for use as +// as a work DB for joining across sources. +// +// Note: There is much work to be done on this method. At this time, only +// two sources are supported. Ultimately OpenJoin should be able to +// inspect the join srcs and use heuristics to determine the best +// location for the join to occur (to minimize copying of data for +// the join etc.). Currently the implementation simply delegates +// to OpenScratch. +// +// OpenJoin implements JoinDatabaseOpener. +func (d *Databases) OpenJoin(ctx context.Context, src1, src2 *source.Source, srcN ...*source.Source) (Database, error) { + if len(srcN) > 0 { + return nil, errz.Errorf("Currently only two-source join is supported") + } + + names := []string{src1.Handle, src2.Handle} + for _, src := range srcN { + names = append(names, src.Handle) + } + + d.log.Debugf("OpenJoin: [%s]", strings.Join(names, ",")) + return d.OpenScratch(ctx, "joindb__"+strings.Join(names, "_")) +} + +// Close closes d, invoking Close on any instances opened via d.Open. +func (d *Databases) Close() error { + d.log.Debugf("Closing %d databases(s)", d.clnup.Len()) + return d.clnup.Run() +} diff --git a/libsq/driver/driver_test.go b/libsq/driver/driver_test.go new file mode 100644 index 00000000..09f5fdec --- /dev/null +++ b/libsq/driver/driver_test.go @@ -0,0 +1,392 @@ +package driver_test + +import ( + "testing" + + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/drivers/mysql" + "github.com/neilotoole/sq/drivers/postgres" + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/drivers/sqlserver" + "github.com/neilotoole/sq/drivers/xlsx" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/fixt" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestDriver_DropTable(t *testing.T) { + for _, handle := range sakila.SQLAll { + handle := handle + t.Run(handle, func(t *testing.T) { + th := testh.New(t) + src := th.Source(handle) + targetTable := stringz.UniqSuffix(sakila.TblActor) + + drvr, err := th.Registry().DriverFor(src.Type) + require.NoError(t, err) + sqlDrvr := drvr.(driver.SQLDriver) + db := th.Open(src).DB() + + // Copy a table that we can play with + th.CopyTable(false, src, sakila.TblActor, targetTable, false) + require.NoError(t, sqlDrvr.DropTable(th.Context, db, targetTable, true)) + + // Copy the table again so we can drop it again + th.CopyTable(false, src, sakila.TblActor, targetTable, false) + + // test with ifExists = false + require.NoError(t, sqlDrvr.DropTable(th.Context, db, targetTable, false)) + + // Check that we get the expected behavior when the table doesn't exist + require.NoError(t, sqlDrvr.DropTable(th.Context, db, stringz.UniqSuffix("not_a_table"), true), "should be no error when ifExists is true") + require.Error(t, sqlDrvr.DropTable(th.Context, db, stringz.UniqSuffix("not_a_table"), false), "error expected when ifExists is false") + }) + } +} + +func TestDriver_CopyTable(t *testing.T) { + for _, handle := range sakila.SQLAll { + handle := handle + t.Run(handle, func(t *testing.T) { + // t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + + drvr, err := th.Registry().DriverFor(src.Type) + require.NoError(t, err) + sqlDrvr := drvr.(driver.SQLDriver) + db := th.Open(src).DB() + require.EqualValues(t, sakila.TblActorCount, th.RowCount(src, sakila.TblActor), "fromTable should have ActorCount rows beforehand") + + toTable := stringz.UniqSuffix(sakila.TblActor) + // First, test with copyData = true + copied, err := sqlDrvr.CopyTable(th.Context, db, sakila.TblActor, toTable, true) + require.NoError(t, err) + require.Equal(t, int64(sakila.TblActorCount), copied) + require.EqualValues(t, sakila.TblActorCount, th.RowCount(src, toTable)) + th.DropTable(src, toTable) + + // Then, with copyData = false + copied, err = sqlDrvr.CopyTable(th.Context, db, sakila.TblActor, toTable, false) + require.NoError(t, err) + require.Equal(t, int64(0), copied) + require.EqualValues(t, 0, th.RowCount(src, toTable)) + th.DropTable(src, toTable) + }) + } +} + +// TestDriver_CreateTable_Minimal tests the minimal functionality +// of SQLDriver.CreateTable impls. +func TestDriver_CreateTable_Minimal(t *testing.T) { + t.Parallel() + + testCases := sakila.SQLAll + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, src, dbase, drvr := testh.NewWith(t, handle) + + tblName := stringz.UniqTableName(t.Name()) + colNames, colKinds := fixt.ColNamePerKind(drvr.Dialect().IntBool, false, false) + tblDef := sqlmodel.NewTableDef(tblName, colNames, colKinds) + + err := drvr.CreateTable(th.Context, dbase.DB(), tblDef) + require.NoError(t, err) + t.Cleanup(func() { th.DropTable(src, tblName) }) + + colTypes, err := drvr.TableColumnTypes(th.Context, dbase.DB(), tblName, colNames) + require.NoError(t, err) + require.Equal(t, len(colNames), len(colTypes)) + + recMeta, _, err := drvr.RecordMeta(colTypes) + require.NoError(t, err) + + require.Equal(t, colNames, recMeta.Names()) + require.Equal(t, colKinds, recMeta.Kinds()) + }) + } +} + +func TestDriver_TableColumnTypes(t *testing.T) { + t.Parallel() + + testCases := sakila.SQLAll + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + testh.SkipShort(t, handle == sakila.XLSX) + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + dbase := th.Open(src) + drvr, db := dbase.SQLDriver(), dbase.DB() + + // Run the test both with and without data in the target table. + // Some driver implementations of rows.ColumnTypes behave + // differently depending upon whether the query returns rows + // or not. + for _, copyData := range []bool{false, true} { + actualTblName := th.CopyTable(false, src, sakila.TblActor, "", copyData) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + // Note nil colNames, should still get all columns + // as if the query was (SELECT * FROM actualTblName) + colTypes, err := drvr.TableColumnTypes(th.Context, db, actualTblName, nil) + require.NoError(t, err) + require.Equal(t, len(sakila.TblActorCols), len(colTypes)) + for i := range colTypes { + require.Equal(t, sakila.TblActorCols[i], colTypes[i].Name()) + } + + // Try again, but requesting specific col names + wantColNames := []string{sakila.TblActorCols[0], sakila.TblActorCols[2]} + colTypes, err = drvr.TableColumnTypes(th.Context, db, actualTblName, wantColNames) + require.NoError(t, err) + require.Equal(t, len(wantColNames), len(colTypes)) + for i := range colTypes { + require.Equal(t, wantColNames[i], colTypes[i].Name()) + } + } + }) + } +} + +func TestSQLDriver_PrepareUpdateStmt(t *testing.T) { + t.Parallel() + testCases := sakila.SQLAll + + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + testh.SkipShort(t, handle == sakila.XLSX) + t.Parallel() + + th, src, dbase, drvr := testh.NewWith(t, handle) + + actualTblName := th.CopyTable(false, src, sakila.TblActor, "", true) + t.Cleanup(func() { th.DropTable(src, actualTblName) }) + + const ( + actorID int64 = 1 + whereClause string = "actor_id = ?" + ) + var ( + destCols = []string{"first_name", "last_name"} + wantVals = []interface{}{"Kubla", "Khan"} + args = append(wantVals, actorID) + ) + + stmtExecer, err := drvr.PrepareUpdateStmt(th.Context, dbase.DB(), actualTblName, destCols, whereClause) + require.NoError(t, err) + require.Equal(t, destCols, stmtExecer.DestMeta().Names()) + require.NoError(t, stmtExecer.Munge(wantVals)) + + affected, err := stmtExecer.Exec(th.Context, args...) + require.NoError(t, err) + assert.Equal(t, int64(1), affected) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+actualTblName+" WHERE actor_id = 1") + + require.NoError(t, err) + require.Equal(t, 1, len(sink.Recs)) + require.Equal(t, actorID, testh.Val(sink.Recs[0][0])) + require.Equal(t, wantVals[0], testh.Val(sink.Recs[0][1])) + require.Equal(t, wantVals[1], testh.Val(sink.Recs[0][2])) + }) + } +} + +func TestDriver_Ping(t *testing.T) { + t.Parallel() + testCases := append(sakila.All, sakila.CSVActor, sakila.CSVActorHTTP) + + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + testh.SkipShort(t, handle == sakila.XLSX) + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + drvr := th.DriverFor(src) + + err := drvr.Ping(th.Context, src) + require.NoError(t, err) + }) + } +} + +func TestDriver_Open(t *testing.T) { + t.Parallel() + testCases := append(sakila.All, sakila.CSVActor, sakila.CSVActorHTTP) + + for _, handle := range testCases { + handle := handle + + t.Run(handle, func(t *testing.T) { + testh.SkipShort(t, handle == sakila.XLSX) + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + drvr := th.DriverFor(src) + + dbase, err := drvr.Open(th.Context, src) + require.NoError(t, err) + require.NoError(t, dbase.DB().PingContext(th.Context)) + require.NoError(t, dbase.Close()) + }) + } +} + +// coreDrivers is a slice of the core driver types. +var coreDrivers = []source.Type{ + postgres.Type, + sqlserver.Type, + sqlite3.Type, + mysql.Type, + csv.TypeCSV, + csv.TypeTSV, + xlsx.Type, +} + +// sqlDrivers is a slice of the SQL driver types. +var sqlDrivers = []source.Type{ + postgres.Type, + sqlserver.Type, + sqlite3.Type, + mysql.Type, +} + +// docDrivers is a slice of the doc driver types. +var docDrivers = []source.Type{ + csv.TypeCSV, + csv.TypeTSV, + xlsx.Type, +} + +func TestRegistry_DriversMetadata_All(t *testing.T) { + t.Parallel() + + reg := testh.New(t).Registry() + metas := reg.DriversMetadata() + require.Equal(t, len(metas), len(reg.Drivers())) + + m := map[source.Type]driver.Metadata{} + for i := range metas { + m[metas[i].Type] = metas[i] + } + + for _, typ := range coreDrivers { + md, ok := m[typ] + require.True(t, ok) + require.Equal(t, typ, md.Type) + } +} + +func TestRegistry_DriversMetadata_SQL(t *testing.T) { + t.Parallel() + + for _, typ := range sqlDrivers { + typ := typ + + t.Run(typ.String(), func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + reg := th.Registry() + + drvr, err := reg.DriverFor(typ) + require.NoError(t, err) + + meta := drvr.DriverMetadata() + require.Equal(t, typ, meta.Type) + require.True(t, meta.IsSQL) + require.False(t, meta.Monotable, "can't be monotable and SQL") + + sqlDrvr, ok := drvr.(driver.SQLDriver) + require.True(t, ok) + + dialect := sqlDrvr.Dialect() + require.Equal(t, typ, dialect.Type) + require.NotEmpty(t, dialect.Quote) + require.NotNil(t, dialect.Placeholders) + }) + } +} + +func TestRegistry_DriversMetadata_Doc(t *testing.T) { + t.Parallel() + + for _, typ := range docDrivers { + typ := typ + + t.Run(typ.String(), func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + reg := th.Registry() + + drvr, err := reg.DriverFor(typ) + require.NoError(t, err) + + _, ok := drvr.(driver.SQLDriver) + require.False(t, ok) + + meta := drvr.DriverMetadata() + require.Equal(t, typ, meta.Type) + require.False(t, meta.IsSQL) + }) + } +} + +func TestDatabase_TableMetadata(t *testing.T) { + t.Parallel() + + for _, handle := range sakila.SQLAll { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, _, dbase, _ := testh.NewWith(t, handle) + + tblMeta, err := dbase.TableMetadata(th.Context, sakila.TblActor) + require.NoError(t, err) + require.Equal(t, sakila.TblActor, tblMeta.Name) + }) + } +} + +func TestDatabase_SourceMetadata(t *testing.T) { + t.Parallel() + + for _, handle := range []string{sakila.Pg9} { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th, _, dbase, _ := testh.NewWith(t, handle) + + md, err := dbase.SourceMetadata(th.Context) + require.NoError(t, err) + require.Equal(t, "sakila", md.Name) + }) + } +} diff --git a/libsq/driver/record.go b/libsq/driver/record.go new file mode 100644 index 00000000..332c48d8 --- /dev/null +++ b/libsq/driver/record.go @@ -0,0 +1,402 @@ +package driver + +import ( + "context" + "database/sql" + "fmt" + "reflect" + "strings" + "time" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// NewRecordFunc is invoked on a query result row (scanRow) to +// normalize and standardize the data, returning a new record. +// The provided scanRow arg is available for reuse after this +// func returns. +// +// Ultimately rec should only contain: +// +// nil, *int64, *bool, *float64, *string, *[]byte, *time.Time +// +// Thus a func instance might unbox sql.NullString et al, or deal +// with any driver specific quirks. +type NewRecordFunc func(scanRow []interface{}) (rec sqlz.Record, err error) + +// InsertMungeFunc is invoked on vals before insertion (or +// update, despite the name). Note that InsertMungeFunc operates +// on the vals slice, while NewRecordFunc returns a new slice. +type InsertMungeFunc func(vals sqlz.Record) error + +// StmtExecFunc is provided by driver implementations to wrap +// execution of a prepared statement. Typically the func will +// perform some driver-specific action, such as managing +// retryable errors. +type StmtExecFunc func(ctx context.Context, args ...interface{}) (affected int64, err error) + +// NewStmtExecer returns a new instance. +func NewStmtExecer(stmt *sql.Stmt, mungeFn InsertMungeFunc, execFn StmtExecFunc, destMeta sqlz.RecordMeta) *StmtExecer { + return &StmtExecer{ + stmt: stmt, + mungeFn: mungeFn, + execFn: execFn, + destMeta: destMeta, + } +} + +// StmtExecer encapsulates the elements required to execute +// a SQL statement. The Munge method should be applied to each +// row of values prior to invoking Exec. The caller +// is responsible for invoking Close. +type StmtExecer struct { + stmt *sql.Stmt + mungeFn InsertMungeFunc + execFn StmtExecFunc + destMeta sqlz.RecordMeta +} + +// DestMeta returns the RecordMeta for the destination table columns. +func (x *StmtExecer) DestMeta() sqlz.RecordMeta { + return x.destMeta +} + +// Munge should be applied to each row of values prior +// invoking Exec. +func (x *StmtExecer) Munge(rec []interface{}) error { + if x.mungeFn == nil { + return nil + } + + err := x.mungeFn(rec) + if err != nil { + return err + } + return nil +} + +// Exec executes the statement. The caller should invoke Munge on +// each row of values prior to passing those values to Exec. +func (x *StmtExecer) Exec(ctx context.Context, args ...interface{}) (affected int64, err error) { + return x.execFn(ctx, args...) +} + +// Close closes x's statement. +func (x *StmtExecer) Close() error { + return errz.Err(x.stmt.Close()) +} + +// NewRecordFromScanRow iterates over the elements the row slice +// from rows.Scan, and returns a new (record) slice, replacing any +// wrapper types such as sql.NullString with the unboxed value, +// and other similar sanitization. For example it will +// make a copy of any sql.RawBytes. The row slice +// can be reused by rows.Scan after this function returns. +// +// Any row elements specified in skip will not be processed; the +// value will be copied directly from row[i] into rec[i]. If any +// element of row otherwise cannot be processed, its value is +// copied directly into rec, and its index is returned in skipped. +// The caller must take appropriate action to deal with all +// elements of rec listed in skipped. +func NewRecordFromScanRow(meta sqlz.RecordMeta, row []interface{}, skip []int) (rec sqlz.Record, skipped []int) { + rec = make([]interface{}, len(row)) + + // For convenience, make a map of the skip row indices. + mSkip := map[int]struct{}{} + for _, i := range skip { + mSkip[i] = struct{}{} + } + + for i := 0; i < len(row); i++ { + // we're skipping this column, but still need to copy the value. + if _, ok := mSkip[i]; ok { + rec[i] = row[i] + skipped = append(skipped, i) + continue + } + + if row[i] == nil { + rec[i] = nil + continue + } + + switch col := row[i].(type) { + default: + rec[i] = col + skipped = append(skipped, i) + continue + + case *int64: + v := *col + rec[i] = &v + + case *float64: + v := *col + rec[i] = &v + + case *bool: + v := *col + rec[i] = &v + + case *string: + v := *col + rec[i] = &v + + case *[]byte: + if col == nil || *col == nil { + rec[i] = nil + continue + } + + if meta[i].Kind() != sqlz.KindBytes { + // We only want to use []byte for KindByte. Otherwise + // switch to a string. + s := string(*col) + rec[i] = &s + continue + } + + if len(*col) == 0 { + var v = []byte{} + rec[i] = &v + } else { + dest := make([]byte, len(*col)) + copy(dest, *col) + rec[i] = &dest + } + + case *sql.NullInt64: + if col.Valid { + v := col.Int64 + rec[i] = &v + } else { + rec[i] = nil + } + + case *sql.NullString: + if col.Valid { + v := col.String + rec[i] = &v + } else { + rec[i] = nil + } + + case *sql.RawBytes: + if col == nil || *col == nil { + // Explicitly set rec[i] so that its type becomes nil + rec[i] = nil + continue + } + + kind := meta[i].Kind() + + // If RawBytes is of length zero, there's no + // need to copy. + if len(*col) == 0 { + if kind == sqlz.KindBytes { + var v = []byte{} + rec[i] = &v + } else { + // Else treat it as an empty string + var s string + rec[i] = &s + } + + continue + } + + dest := make([]byte, len(*col)) + copy(dest, *col) + + if kind == sqlz.KindBytes { + rec[i] = &dest + } else { + str := string(dest) + rec[i] = &str + } + + case *sql.NullFloat64: + if col.Valid { + v := col.Float64 + rec[i] = &v + } else { + rec[i] = nil + } + + case *sql.NullBool: + if col.Valid { + v := col.Bool + rec[i] = &v + } else { + rec[i] = nil + } + + case *sqlz.NullBool: + // This custom NullBool type is only used by sqlserver at this time. + // Possibly this code should skip this item, and allow + // the sqlserver munge func handle the conversion? + if col.Valid { + v := col.Bool + rec[i] = &v + } else { + rec[i] = nil + } + + case *sql.NullTime: + if col.Valid { + v := col.Time + rec[i] = &v + } else { + rec[i] = nil + } + + case *time.Time: + v := *col + rec[i] = &v + + case *int: + v := int64(*col) + rec[i] = &v + case *int8: + v := int64(*col) + rec[i] = &v + case *int16: + v := int64(*col) + rec[i] = &v + case *int32: + v := int64(*col) + rec[i] = &v + case *uint: + v := int64(*col) + rec[i] = &v + case *uint8: + v := int64(*col) + rec[i] = &v + case *uint16: + v := int64(*col) + rec[i] = &v + case *uint32: + v := int64(*col) + rec[i] = &v + case *float32: + v := float64(*col) + rec[i] = &v + } + + if rec[i] != nil && meta[i].Kind() == sqlz.KindDecimal { + // Drivers use varying types for numeric/money/decimal. + // We want to standardize on string. + switch col := rec[i].(type) { + case *string: + // Do nothing, it's already string + + case *[]byte: + v := string(*col) + rec[i] = &v + + case *float64: + v := stringz.FormatFloat(*col) + rec[i] = &v + + default: + // Shouldn't happen + v := fmt.Sprintf("%v", col) + rec[i] = &v + } + } + } + + return rec, skipped +} + +// Comma is the comma string to use in SQL queries. +const Comma = ", " + +// PrepareInsertStmt prepares an insert statement using +// driver-specific config. +func PrepareInsertStmt(ctx context.Context, drvr SQLDriver, db sqlz.Preparer, destTbl string, destCols []string) (stmt *sql.Stmt, err error) { + const stmtTpl = `INSERT INTO %s (%s) VALUES (%s)` + + dialect := drvr.Dialect() + quote := string(dialect.Quote) + tblNameQuoted, colNamesQuoted := stringz.Surround(destTbl, quote), stringz.SurroundSlice(destCols, quote) + colsJoined := strings.Join(colNamesQuoted, Comma) + placeholders := dialect.Placeholders(len(colNamesQuoted)) + + query := fmt.Sprintf(stmtTpl, tblNameQuoted, colsJoined, placeholders) + stmt, err = db.PrepareContext(ctx, query) + return stmt, errz.Err(err) +} + +// DefaultInsertMungeFunc returns an InsertMungeFunc +// that checks the values of rec against destMeta and +// performs necessary munging. For example, if any element +// is a ptr to an empty string and the dest type +// is a not of kind Text, the empty string was probably +// intended to mean nil. This happens when the original +// source doesn't handle nil, e.g. with CSV, where nil is +// effectively represented by "". +// +// The returned InsertMungeFunc accounts for common cases, but it's +// possible that certain databases will require a custom +// InsertMungeFunc. +func DefaultInsertMungeFunc(destTbl string, destMeta sqlz.RecordMeta) InsertMungeFunc { + return func(rec sqlz.Record) error { + if len(rec) != len(destMeta) { + return errz.Errorf("insert record has %d vals but dest table %s has %d cols (%s)", + len(rec), destTbl, len(destMeta), strings.Join(destMeta.Names(), Comma)) + } + + for i := range rec { + nullable, _ := destMeta[i].Nullable() + if rec[i] == nil && !nullable { + mungeSetZeroValue(i, rec, destMeta) + continue + } + + if destMeta[i].Kind() == sqlz.KindText { + // text doesn't need our help + continue + } + + // The dest col kind is something other than text, let's inspect + // the actual value and check its type. + switch val := rec[i].(type) { + default: + continue + case string: + if val == "" { + if nullable { + rec[i] = nil + } else { + mungeSetZeroValue(i, rec, destMeta) + } + } + // else we let the DB figure it out + + case *string: + if *val == "" { + if nullable { + rec[i] = nil + } else { + mungeSetZeroValue(i, rec, destMeta) + } + } + // else we let the DB figure it out + } + } + return nil + } +} + +// mungeSetZeroValue is invoked when rec[i] is nil, but +// destMeta[i] is not nullable. +func mungeSetZeroValue(i int, rec []interface{}, destMeta sqlz.RecordMeta) { + // REVISIT: do we need to do special handling for kind.Datetime + // and kind.Time (e.g. "00:00" for time)? + z := reflect.Zero(destMeta[i].ScanType()).Interface() + rec[i] = z +} diff --git a/libsq/driver/registry.go b/libsq/driver/registry.go new file mode 100644 index 00000000..3fecb748 --- /dev/null +++ b/libsq/driver/registry.go @@ -0,0 +1,97 @@ +package driver + +import ( + "sync" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" +) + +// NewRegistry returns a new Registry instance that provides +// access to driver implementations. Note that Registry +// implements driver.Provider. +func NewRegistry(log lg.Log) *Registry { + return &Registry{ + log: log, + providers: map[source.Type]Provider{}, + } +} + +// Registry provides access to driver implementations. +type Registry struct { + mu sync.Mutex + log lg.Log + providers map[source.Type]Provider + types []source.Type +} + +// AddProvider registers the provider for the specified driver type. +// This method has no effect if there's already a provider for typ. +func (r *Registry) AddProvider(typ source.Type, p Provider) { + r.mu.Lock() + defer r.mu.Unlock() + + if existingType, ok := r.providers[typ]; ok { + r.log.Warnf("failed to add driver provider (%T) for driver type %s: provider (%T) already registered", p, typ, existingType) + return + } + + r.types = append(r.types, typ) + r.providers[typ] = p +} + +// HasProviderFor returns true if a provider for typ exists. +func (r *Registry) HasProviderFor(typ source.Type) bool { + r.mu.Lock() + defer r.mu.Unlock() + + _, ok := r.providers[typ] + return ok +} + +// DriverFor implements Provider. +func (r *Registry) DriverFor(typ source.Type) (Driver, error) { + r.mu.Lock() + defer r.mu.Unlock() + + p, ok := r.providers[typ] + if !ok { + return nil, errz.Errorf("no registered driver for %q", typ) + } + + return p.DriverFor(typ) +} + +// DriversMetadata returns metadata for each registered driver type. +func (r *Registry) DriversMetadata() []Metadata { + var md []Metadata + for _, typ := range r.types { + drv, err := r.DriverFor(typ) + if err != nil { + // Should never happen + r.log.Errorf("error getting %q driver: %v", typ, err) + continue + } + md = append(md, drv.DriverMetadata()) + } + + return md +} + +// Drivers returns the registered drivers. +func (r *Registry) Drivers() []Driver { + var drvrs []Driver + for _, typ := range r.types { + drvr, err := r.DriverFor(typ) + if err != nil { + // Should never happen + r.log.Errorf("Error getting %q driver: %v", typ, err) + continue + } + drvrs = append(drvrs, drvr) + } + + return drvrs +} diff --git a/libsq/driver/scratch.go b/libsq/driver/scratch.go new file mode 100644 index 00000000..3d97c042 --- /dev/null +++ b/libsq/driver/scratch.go @@ -0,0 +1,55 @@ +package driver + +import ( + "context" + "database/sql" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/source" +) + +// ScratchSrcFunc is a function that returns a scratch source. +// The caller is responsible for invoking cleanFn. +type ScratchSrcFunc func(log lg.Log, name string) (src *source.Source, cleanFn func() error, err error) + +// scratchDatabase implements driver.Database. +type scratchDatabase struct { + log lg.Log + impl Database + cleanup *cleanup.Cleanup +} + +// DB implements driver.Database. +func (d *scratchDatabase) DB() *sql.DB { + return d.impl.DB() +} + +// TableMetadata implements driver.Database. +func (d *scratchDatabase) TableMetadata(ctx context.Context, tblName string) (*source.TableMetadata, error) { + return d.impl.TableMetadata(ctx, tblName) +} + +// SQLDriver implements driver.Database. +func (d *scratchDatabase) SQLDriver() SQLDriver { + return d.impl.SQLDriver() +} + +// Source implements driver.Database. +func (d *scratchDatabase) Source() *source.Source { + return d.impl.Source() +} + +// SourceMetadata implements driver.Database. +func (d *scratchDatabase) SourceMetadata(ctx context.Context) (*source.Metadata, error) { + return d.impl.SourceMetadata(ctx) +} + +// Close implements driver.Database. +func (d *scratchDatabase) Close() error { + d.log.Debugf("Close scratch database: %s", d.impl.Source()) + // No need to explicitly invoke c.impl.Close because it + // has already been added to c.cleanup. + return d.cleanup.Run() +} diff --git a/libsq/drvr/datatype/datatype.go b/libsq/drvr/datatype/datatype.go deleted file mode 100644 index 2381559f..00000000 --- a/libsq/drvr/datatype/datatype.go +++ /dev/null @@ -1,43 +0,0 @@ -package datatype - -import "strconv" - -// Type models a generic data type, which ultimately maps to some more specific -// implementation data type, such as a SQL VARCHAR or JSON boolean. -type Type int - -func (d Type) String() string { - - switch d { - case Text: - return "text" - case Int: - return "int" - case Float: - return "float" - case Decimal: - return "decimal" - case Bool: - return "bool" - case DateTime: - return "datetime" - case Bytes: - return "bytes" - case Null: - return "null" - } - - panic("unknown data type: " + strconv.Itoa(int(d))) -} - -const ( - _ = iota - Text Type = 1 << iota - Int - Float - Decimal - Bool - DateTime - Bytes - Null -) diff --git a/libsq/drvr/datatype/datatype_test.go b/libsq/drvr/datatype/datatype_test.go deleted file mode 100644 index b00c02ad..00000000 --- a/libsq/drvr/datatype/datatype_test.go +++ /dev/null @@ -1 +0,0 @@ -package datatype diff --git a/libsq/drvr/drvr.go b/libsq/drvr/drvr.go deleted file mode 100644 index e076caa6..00000000 --- a/libsq/drvr/drvr.go +++ /dev/null @@ -1,53 +0,0 @@ -package drvr - -import ( - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/util" -) - -type Driver interface { - // Type returns the driver type. - Type() Type - - // ConnURI returns the driver-specific connection string. - ConnURI(source *Source) (string, error) - - // Open returns a database handle. - Open(source *Source) (*sql.DB, error) - - // Ping verifies that the source is reachable, or returns an error if not. - // The exact behavior of Ping() is driver-dependent. - Ping(source *Source) error - // ValidateSource verifies that the source is valid for this driver. It - // may transform the source into a canonical form, which is returned in - // the "src" return value (the original source is not changed). An error - // is returned if the source is invalid. - ValidateSource(source *Source) (src *Source, err error) - - // Release instructs the driver instance to release any held resources, - // effectively shutting down the instance. - // TODO: do we need Release() and the application-wide shutdown mechanism? - Release() error - - // Metadata returns metadata about the provided datasource. - Metadata(src *Source) (*SourceMetadata, error) -} - -var registeredDrivers = make(map[Type]Driver) - -func Register(driver Driver) { - registeredDrivers[driver.Type()] = driver -} - -// For returns a driver for the supplied data source. -func For(source *Source) (Driver, error) { - - drv, ok := registeredDrivers[source.Type] - if !ok { - return nil, util.Errorf("unknown driver type %q for data source %q", source.Type, source.Handle) - } - - lg.Debugf("returning driver %q for data source %q", drv.Type(), source.Handle) - return drv, nil -} diff --git a/libsq/drvr/drvrutil_test.go b/libsq/drvr/drvrutil_test.go deleted file mode 100644 index 865708fc..00000000 --- a/libsq/drvr/drvrutil_test.go +++ /dev/null @@ -1,56 +0,0 @@ -package drvr - -import ( - "testing" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" -) - -func TestGenerateExcelColName(t *testing.T) { - - quantity := 704 - - colNames := make([]string, quantity) - - for i := 0; i < quantity; i++ { - colNames[i] = GenerateAlphaColName(i) - } - - items := []struct { - index int - colName string - }{ - {0, "A"}, - {1, "B"}, - {25, "Z"}, - {26, "AA"}, - {27, "AB"}, - {51, "AZ"}, - {52, "BA"}, - {53, "BB"}, - {77, "BZ"}, - {78, "CA"}, - {701, "ZZ"}, - {702, "AAA"}, - {703, "AAB"}, - } - - for _, item := range items { - assert.Equal(t, item.colName, colNames[item.index]) - } -} - -func TestGetSourceFile(t *testing.T) { - - location := "http://neilotoole.io/sq/test/test1.xlsx" - - file, mediatype, cleanup, err := GetSourceFile(location) - if cleanup != nil { - defer require.Nil(t, cleanup()) - } - require.Nil(t, err) - require.NotNil(t, file) - require.Equal(t, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", mediatype) - require.Nil(t, file.Close()) -} diff --git a/libsq/drvr/impl/common/common.go b/libsq/drvr/impl/common/common.go deleted file mode 100644 index 236aaa6c..00000000 --- a/libsq/drvr/impl/common/common.go +++ /dev/null @@ -1,68 +0,0 @@ -// Package common contains shared driver implementation functionality. -package common - -import ( - "strings" - - "strconv" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" -) - -// OptionsHasHeader checks if src.Options has "header=true". -func OptionsHasHeader(src *drvr.Source) (header bool, ok bool, err error) { - - if len(src.Options) == 0 { - return false, false, nil - } - - const key = "header" - if _, ok = src.Options[key]; !ok { - return false, false, nil - } - val := src.Options.Get(key) - if val == "" { - return false, false, nil - } - - header, err = strconv.ParseBool(val) - if err != nil { - return false, false, util.Errorf(`option %q: %v`, key, err) - } - - return header, true, nil -} - -// OptionsColNames returns column names as specified in src.Options["cols"]. -func OptionsColNames(src *drvr.Source) (colNames []string, ok bool, err error) { - if len(src.Options) == 0 { - return nil, false, nil - } - - const key = "cols" - val := "" - _, ok = src.Options[key] - if !ok { - return nil, false, nil - } - - val = strings.TrimSpace(src.Options.Get(key)) - colNames = strings.Split(val, ",") - if val == "" || len(colNames) == 0 { - err = util.Errorf("option %q: cannot be empty", key) - return nil, false, err - } - - for i := range colNames { - colNames[i] = strings.TrimSpace(colNames[i]) - if colNames[i] == "" { - err = util.Errorf("option %q: column [%d] cannot be empty", key, i) - return nil, false, err - } - } - - lg.Debugf("option %q: %v", key, colNames) - return colNames, true, nil -} diff --git a/libsq/drvr/impl/csv/csv.go b/libsq/drvr/impl/csv/csv.go deleted file mode 100644 index c9e61024..00000000 --- a/libsq/drvr/impl/csv/csv.go +++ /dev/null @@ -1,358 +0,0 @@ -package csv - -import ( - "strings" - - "sync" - - "encoding/csv" - - "fmt" - "io" - - "strconv" - - "unicode/utf8" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/impl/common" - "github.com/neilotoole/sq/libsq/drvr/scratch" - "github.com/neilotoole/sq/libsq/shutdown" - "github.com/neilotoole/sq/libsq/util" -) - -const csvType = drvr.Type("csv") -const tsvType = drvr.Type("tsv") - -type Driver struct { - typ drvr.Type - mu *sync.Mutex - cleanup []func() error -} - -func (d *Driver) Type() drvr.Type { - return d.typ -} - -func (d *Driver) ConnURI(source *drvr.Source) (string, error) { - return "", util.Errorf("not implemented") -} - -func (d *Driver) Open(src *drvr.Source) (*sql.DB, error) { - - lg.Debugf("attempting to ping file %q", src.Location) - err := d.Ping(src) - if err != nil { - return nil, err - } - lg.Debugf("successfully pinged file %q", src.Location) - // we now know that the xlsx file is valid - - // let's open the scratch db - _, scratchdb, _, err := scratch.OpenNew() - //shutdown.Add(cleanup) // TODO: re-enable cleanup - if err != nil { - return nil, err - } - - lg.Debugf("opened scratch db: %s", src.String()) - - err = d.csvToScratch(src, scratchdb) - if err != nil { - return nil, err - } - - return scratchdb, nil -} - -func (d *Driver) ValidateSource(src *drvr.Source) (*drvr.Source, error) { - lg.Debugf("validating source: %q", src.Location) - - if src.Type != d.typ { - return nil, util.Errorf("expected source type %q but got %q", d.typ, src.Type) - } - - if src.Options != nil || len(src.Options) > 0 { - lg.Debugf("opts: %v", src.Options.Encode()) - - key := "header" - v := src.Options.Get(key) - - if v != "" { - _, err := strconv.ParseBool(v) - if err != nil { - return nil, util.Errorf(`unable to parse option %q: %v`, key, err) - } - } - - } - - return src, nil -} - -func (d *Driver) Ping(src *drvr.Source) error { - - lg.Debugf("driver %q attempting to ping %q", d.Type(), src) - - file, _, cleanup, err := drvr.GetSourceFile(src.Location) - shutdown.Add(cleanup) - if err != nil { - return err - } - - lg.Debugf("file name: %q", file.Name()) - - //if util.FileExists(file.Name()) - - return nil -} - -func (d *Driver) Metadata(src *drvr.Source) (*drvr.SourceMetadata, error) { - - lg.Debugf(src.String()) - - return nil, util.Errorf("not implemented") -} - -func init() { - d := &Driver{typ: csvType, mu: &sync.Mutex{}} - drvr.Register(d) - d = &Driver{typ: tsvType, mu: &sync.Mutex{}} - drvr.Register(d) -} - -func (d *Driver) Release() error { - - d.mu.Lock() - defer d.mu.Unlock() - lg.Debugf("running driver cleanup tasks") - - errs := []string{} - - for _, cleaner := range d.cleanup { - err := cleaner() - if err != nil { - errs = append(errs, err.Error()) - } - } - - if len(errs) > 0 { - err := util.Errorf("cleanup error: %s", strings.Join(errs, "\n")) - return err - } - - lg.Debugf("driver cleanup tasks complete") - return nil -} - -// optDelimiter returns ok as true and the delimiter rune if a valid value is provided -// in src.Opts, returns ok as false if no valid value provided, and an error if the provided -// value is invalid. -func optDelimiter(src *drvr.Source) (r rune, ok bool, err error) { - if len(src.Options) == 0 { - return 0, false, nil - } - - const key = "delim" - _, ok = src.Options[key] - if !ok { - return 0, false, nil - } - val := src.Options.Get(key) - if val == "" { - return 0, false, nil - } - - if len(val) == 1 { - r, _ = utf8.DecodeRuneInString(val) - return r, true, nil - } - - r, ok = NamedDelimiters()[val] - - if !ok { - err = util.Errorf("unknown delimiter constant %q", val) - return 0, false, err - } - - return r, true, nil -} - -func (d *Driver) csvToScratch(src *drvr.Source, db *sql.DB) error { - - // Since CSVs only have one "table" of data, it's necessary to give this - // table a name. Example: sq '@my_csv.data | .[0:10]' - const tblName = "data" - - file, _, cleanup, err := drvr.GetSourceFile(src.Location) - shutdown.Add(cleanup) - if err != nil { - return err - } - - var insertStmt string - // We add the CR filter reader to deal with files exported from Excel which - // can have the DOS-style \r EOL markers. - r := csv.NewReader(util.NewCRFilterReader(file)) - - delim, ok, err := optDelimiter(src) - if err != nil { - return err - } - - if ok { - r.Comma = delim - } else if d.typ == tsvType { - r.Comma = '\t' - } - - lg.Debugf("using delimiter '%v' for file: %s", string(r.Comma), src.Location) - - var readCount int64 - - optHasHeader, _, err := common.OptionsHasHeader(src) - if err != nil { - return err - } - - colNames, _, err := common.OptionsColNames(src) - if err != nil { - return err - } - - if optHasHeader { - record, err := r.Read() - if err == io.EOF { - return util.Errorf("data source %s has no data", src.Handle) - } - - if err != nil { - return util.WrapError(err) - } - - // if option cols is provided, it takes precedence over the CSV header record - if len(colNames) == 0 { - colNames = record - } - } - - for { - record, err := r.Read() - if err == io.EOF { - break - } - if err != nil { - return util.Errorf("read from data source %q: %v", src.Handle, err) - } - - if readCount == 0 { - - if len(colNames) == 0 { - // if no column names yet, we generate them - colNames = make([]string, len(record)) - for i := range colNames { - colNames[i] = drvr.GenerateAlphaColName(i) - } - } - - createStmt, err := d.tblCreateStmt(src, r, tblName, colNames) - if err != nil { - return err - } - - lg.Debugf("creating table with SQL:\n%s", createStmt) - _, err = db.Exec(createStmt) - if err != nil { - return util.WrapError(err) - } - - escapedColNames := make([]string, len(colNames)) - for i, colName := range colNames { - escapedColNames[i] = `"` + colName + `"` - } - - placeholders := make([]string, len(colNames)) - for i := range placeholders { - placeholders[i] = "?" - } - insertTpl := `INSERT INTO "%s" ( %s ) VALUES ( %s )` - insertStmt = fmt.Sprintf(insertTpl, tblName, strings.Join(escapedColNames, ", "), strings.Join(placeholders, ", ")) - } - - vals := make([]interface{}, len(record)) - for i := range record { - vals[i] = record[i] - } - - _, err = db.Exec(insertStmt, vals...) - if err != nil { - return util.WrapError(err) - } - - readCount++ - } - - if readCount == 0 { - return util.Errorf("data source %s is empty", src.Handle) - } - - lg.Debugf("read %d records from %s", readCount, src.Handle) - - return nil - -} - -func (d *Driver) tblCreateStmt(src *drvr.Source, r *csv.Reader, tblName string, colNames []string) (string, error) { - - // create the table initially with all col types as TEXT - colTypes := make([]string, len(colNames)) - colExprs := make([]string, len(colNames)) - for i := 0; i < len(colNames); i++ { - colTypes[i] = AffinityText - colExprs[i] = fmt.Sprintf(`"%s" %s`, colNames[i], colTypes[i]) - } - - tblTpl := `CREATE TABLE IF NOT EXISTS "%s" ( %s )` - - stmt := fmt.Sprintf(tblTpl, tblName, strings.Join(colExprs, ", ")) - lg.Debugf("creating scratch table using SQL: %s", stmt) - return stmt, nil - -} - -func (d *Driver) getColNames(src *drvr.Source, r *csv.Reader, firstRecord []string) ([]string, error) { - - colNames := make([]string, len(firstRecord)) - - for i := range colNames { - colNames[i] = drvr.GenerateAlphaColName(i) - } - - return colNames, nil - // TODO: allow header column -} - -// NamedDelimiters returns a map of named delimiter strings to their rune value. -// For example, "comma" maps to ',' and "pipe" maps to '|'. -func NamedDelimiters() map[string]rune { - - // TODO: save this in a var - m := make(map[string]rune) - m["comma"] = ',' - m["space"] = ' ' - m["pipe"] = '|' - m["tab"] = '\t' - m["colon"] = ':' - m["semi"] = ';' - m["period"] = '.' - - return m -} - -const AffinityText = `TEXT` -const AffinityNumeric = `NUMERIC` -const AffinityInteger = `INTEGER` -const AffinityReal = `REAL` -const AffinityBlob = `BLOB` diff --git a/libsq/drvr/impl/csv/csv_test.go b/libsq/drvr/impl/csv/csv_test.go deleted file mode 100644 index 2d71e3fa..00000000 --- a/libsq/drvr/impl/csv/csv_test.go +++ /dev/null @@ -1,36 +0,0 @@ -package csv - -// -//func TestGenExcelColNames(t *testing.T) { -// -// quantity := 1000 -// -// colNames := make([]string, quantity) -// -// for i := 0; i < quantity; i++ { -// colNames[i] = genExcelColName(i) -// } -// -// items := []struct { -// index int -// colName string -// }{ -// {0, "A"}, -// {1, "B"}, -// {25, "Z"}, -// {26, "AA"}, -// {27, "AB"}, -// {51, "AZ"}, -// {52, "BA"}, -// {53, "BB"}, -// {77, "BZ"}, -// {78, "CA"}, -// {701, "ZZ"}, -// {702, "AAA"}, -// {703, "AAB"}, -// } -// -// for _, item := range items { -// assert.Equal(t, item.colName, colNames[item.index]) -// } -//} diff --git a/libsq/drvr/impl/impl.go b/libsq/drvr/impl/impl.go deleted file mode 100644 index 231c3a08..00000000 --- a/libsq/drvr/impl/impl.go +++ /dev/null @@ -1,9 +0,0 @@ -package impl - -import ( - _ "github.com/neilotoole/sq/libsq/drvr/impl/csv" - _ "github.com/neilotoole/sq/libsq/drvr/impl/mysql" - _ "github.com/neilotoole/sq/libsq/drvr/impl/postgres" - _ "github.com/neilotoole/sq/libsq/drvr/impl/sqlite3" - _ "github.com/neilotoole/sq/libsq/drvr/impl/xlsx" -) diff --git a/libsq/drvr/impl/mysql/mysql.go b/libsq/drvr/impl/mysql/mysql.go deleted file mode 100644 index 84b2fb68..00000000 --- a/libsq/drvr/impl/mysql/mysql.go +++ /dev/null @@ -1,142 +0,0 @@ -package mysql - -import ( - "fmt" - "strings" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - _ "github.com/neilotoole/sq-driver/hackery/drivers/mysql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" -) - -const typ = drvr.Type("mysql") - -type Driver struct { -} - -func (d *Driver) Type() drvr.Type { - return typ -} - -func (d *Driver) ConnURI(src *drvr.Source) (string, error) { - return "", util.Errorf("not implemented") -} - -func (d *Driver) Open(src *drvr.Source) (*sql.DB, error) { - return sql.Open(string(src.Type), src.ConnURI()) -} - -func (d *Driver) Release() error { - return nil -} - -func (d *Driver) ValidateSource(src *drvr.Source) (*drvr.Source, error) { - if src.Type != typ { - return nil, util.Errorf("expected source type %q but got %q", typ, src.Type) - } - return src, nil -} - -func (d *Driver) Ping(src *drvr.Source) error { - db, err := d.Open(src) - if err != nil { - return err - } - defer db.Close() - return db.Ping() -} - -func (d *Driver) Metadata(src *drvr.Source) (*drvr.SourceMetadata, error) { - - meta := &drvr.SourceMetadata{} - meta.Handle = src.Handle - meta.Location = src.Location - db, err := d.Open(src) - if err != nil { - return nil, util.WrapError(err) - } - - q := `SELECT table_schema, SUM( data_length + index_length ) FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE()` - row := db.QueryRow(q) - err = row.Scan(&meta.Name, &meta.Size) - if err != nil { - return nil, util.WrapError(err) - } - - meta.FullyQualifiedName = meta.Name - - q = "SELECT TABLE_SCHEMA AS `schema_name`,TABLE_NAME AS `table_name`, TABLE_COMMENT AS `table_comment`, (DATA_LENGTH + INDEX_LENGTH) AS `table_size` FROM information_schema.TABLES WHERE TABLE_SCHEMA = DATABASE() ORDER BY TABLE_NAME ASC" - lg.Debugf("SQL: %s", q) - rows, err := db.Query(q) - if err != nil { - return nil, util.WrapError(err) - } - defer db.Close() - defer rows.Close() - - for rows.Next() { - - tbl := &drvr.Table{} - - err = rows.Scan(&meta.Name, &tbl.Name, &tbl.Comment, &tbl.Size) - if err != nil { - return nil, util.WrapError(err) - } - - err = populateTblMetadata(db, meta.Name, tbl) - if err != nil { - return nil, err - } - - meta.Tables = append(meta.Tables, *tbl) - } - - return meta, nil -} - -func populateTblMetadata(db *sql.DB, dbName string, tbl *drvr.Table) error { - - tpl := "SELECT column_name, data_type, column_type, ordinal_position, column_default, is_nullable, column_key, column_comment, extra, (SELECT COUNT(*) FROM `%s`) AS row_count FROM information_schema.columns cols WHERE cols.TABLE_SCHEMA = '%s' AND cols.TABLE_NAME = '%s' ORDER BY cols.ordinal_position ASC" - q := fmt.Sprintf(tpl, tbl.Name, dbName, tbl.Name) - - lg.Debugf("SQL: %s", q) - - rows, err := db.Query(q) - if err != nil { - return err - } - defer rows.Close() - - for rows.Next() { - - col := &drvr.Column{} - var isNullable, colKey, extra string - //defVal := &sql.N - defVal := &sql.NullString{} - err = rows.Scan(&col.Name, &col.Datatype, &col.ColType, &col.Position, defVal, &isNullable, &colKey, &col.Comment, &extra, &tbl.RowCount) - if err != nil { - return util.WrapError(err) - } - - if "YES" == strings.ToUpper(isNullable) { - col.Nullable = true - } - - if strings.Index(colKey, "PRI") != -1 { - col.PrimaryKey = true - } - - col.DefaultValue = defVal.String - - tbl.Columns = append(tbl.Columns, *col) - } - - return nil -} - -func init() { - d := &Driver{} - drvr.Register(d) -} diff --git a/libsq/drvr/impl/postgres/postgres.go b/libsq/drvr/impl/postgres/postgres.go deleted file mode 100644 index e6e08503..00000000 --- a/libsq/drvr/impl/postgres/postgres.go +++ /dev/null @@ -1,367 +0,0 @@ -package postgres - -import ( - "fmt" - "strings" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - _ "github.com/neilotoole/sq-driver/hackery/drivers/postgres" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" -) - -type Driver struct { -} - -const typ = drvr.Type("postgres") - -func (d *Driver) Type() drvr.Type { - return drvr.Type("postgres") -} - -func (d *Driver) ConnURI(source *drvr.Source) (string, error) { - return "", util.Errorf("not implemented") -} - -func (d *Driver) Open(src *drvr.Source) (*sql.DB, error) { - return sql.Open(string(src.Type), src.ConnURI()) -} - -func (d *Driver) Release() error { - return nil -} - -func (d *Driver) ValidateSource(src *drvr.Source) (*drvr.Source, error) { - if src.Type != typ { - return nil, util.Errorf("expected source type %q but got %q", typ, src.Type) - } - return src, nil -} - -func (d *Driver) Ping(src *drvr.Source) error { - db, err := d.Open(src) - if err != nil { - return err - } - defer db.Close() - return db.Ping() -} - -func (d *Driver) Metadata(src *drvr.Source) (*drvr.SourceMetadata, error) { - - meta := &drvr.SourceMetadata{} - meta.Handle = src.Handle - meta.Location = src.Location - db, err := d.Open(src) - if err != nil { - return nil, util.WrapError(err) - } - defer db.Close() - - q := `SELECT current_database(), pg_database_size(current_database())` - - row := db.QueryRow(q) - err = row.Scan(&meta.Name, &meta.Size) - if err != nil { - return nil, util.WrapError(err) - } - - q = "SELECT table_catalog, table_schema, table_name FROM information_schema.tables WHERE table_schema = 'public';" - lg.Debugf("SQL: %s", q) - - rows, err := db.Query(q) - if err != nil { - return nil, err - } - - defer rows.Close() - - for rows.Next() { - - tbl := &drvr.Table{} - - var tblCatalog, tblSchema, tblName string - - err = rows.Scan(&tblCatalog, &tblSchema, &tblName) - if err != nil { - return nil, util.WrapError(err) - } - - meta.Name = tblCatalog - meta.FullyQualifiedName = tblCatalog + "." + tblSchema - //tbl.Name = tblSchema + "." + tblName - tbl.Name = tblName - - err = populateTblMetadata(db, tblCatalog, tblSchema, tblName, tbl) - if err != nil { - return nil, err - } - - meta.Tables = append(meta.Tables, *tbl) - } - - return meta, nil - -} - -func populateTblMetadata(db *sql.DB, tblCatalog string, tblSchema string, tblName string, tbl *drvr.Table) error { - - //row := db.QueryRow(fmt.Sprintf("SELECT pg_total_relation_size('%s')"), tbl.Name) - //row := db.QueryRow(fmt.Sprintf(`SELECT pg_total_relation_size('%s')`), tbl.Name) - - // TODO: One day some postgres guru can come along and collapse these separate - // queries into AwesomeQuery: I'm not the guy. - - tpl := `SELECT pg_total_relation_size('%s.%s'), obj_description('%s.%s'::REGCLASS, 'pg_class'), COUNT(*) FROM "%s"."%s"` - q := fmt.Sprintf(tpl, tblSchema, tblName, tblSchema, tblName, tblSchema, tblName) - lg.Debugf("SQL: %s", q) - row := db.QueryRow(q) - - tblComment := &sql.NullString{} - err := row.Scan(&tbl.Size, tblComment, &tbl.RowCount) - if err != nil { - return util.WrapError(err) - } - tbl.Comment = tblComment.String - - // get the primary keys - - primaryKeys := []string{} - - tpl = `SELECT a.attname AS pk_col_name, format_type(a.atttypid, a.atttypmod) AS data_type -FROM pg_index i JOIN pg_attribute a ON a.attrelid = i.indrelid AND a.attnum = ANY(i.indkey) -WHERE i.indrelid = '%s.%s'::regclass AND i.indisprimary` - - q = fmt.Sprintf(tpl, tblSchema, tblName) - lg.Debugf("SQL: %s", q) - rows, err := db.Query(q) - if err != nil { - return util.WrapError(err) - } - - for rows.Next() { - var pkCol, colTypeFormatted string - - err = rows.Scan(&pkCol, &colTypeFormatted) - if err != nil { - return util.WrapError(err) - } - - primaryKeys = append(primaryKeys, pkCol) - } - - err = rows.Close() - if err != nil { - return util.WrapError(err) - } - - lg.Debugf("primary keys for %s: %v", tblName, primaryKeys) - - tpl = `SELECT column_name, - CASE - WHEN domain_name IS NOT NULL THEN domain_name - WHEN data_type='character varying' THEN 'varchar('||character_maximum_length||')' - WHEN data_type='character' THEN 'char('||character_maximum_length||')' - WHEN data_type='numeric' THEN 'numeric('||numeric_precision||','||numeric_scale||')' - ELSE data_type - END AS col_type, data_type, ordinal_position, is_nullable, - ( - SELECT - pg_catalog.col_description(c.oid, cols.ordinal_position::int) - FROM - pg_catalog.pg_class c - WHERE - c.oid = (SELECT ('"' || cols.table_name || '"')::regclass::oid) - AND c.relname = cols.table_name - ) AS column_comment - FROM information_schema.columns cols WHERE cols.table_catalog = '%s' AND cols.table_schema = '%s' AND cols.table_name = '%s'` - q = fmt.Sprintf(tpl, tblCatalog, tblSchema, tblName) - - //tpl := "SELECT column_name, data_type, column_type, ordinal_position, is_nullable, column_key, column_comment, extra, (SELECT COUNT(*) FROM `%s`) AS row_count FROM information_schema.columns cols WHERE cols.TABLE_SCHEMA = '%s' AND cols.TABLE_NAME = '%s' ORDER BY cols.ordinal_position ASC" - //sql := fmt.Sprintf(tpl, tbl.Name, dbName, tbl.Name) - - lg.Debugf("SQL:\n%s", q) - - rows, err = db.Query(q) - if err != nil { - return util.WrapError(err) - } - defer rows.Close() - - for rows.Next() { - - col := &drvr.Column{} - //var isNullable string - - var r struct { - ColName sql.NullString - ColType sql.NullString - Datatype sql.NullString - Position sql.NullInt64 - Nullable sql.NullString - Comment sql.NullString - } - - //comment := &sql.NullString{} - - //err = rows.Scan(&col.Name, &col.ColType, &col.Datatype, &col.Position, &isNullable, comment) - err = rows.Scan(&r.ColName, &r.ColType, &r.Datatype, &r.Position, &r.Nullable, &r.Comment) - if err != nil { - return util.WrapError(err) - } - - col.Name = r.ColName.String - col.ColType = r.ColType.String - col.Datatype = r.Datatype.String - - // HACK: no idea why this is happening - if col.ColType == "" { - col.ColType = r.Datatype.String - } - - if col.Datatype == "" { - col.Datatype = r.ColType.String - } - - col.Position = r.Position.Int64 - col.Comment = r.Comment.String - - if "YES" == strings.ToUpper(r.Nullable.String) { - col.Nullable = true - } - - if util.InArray(primaryKeys, col.Name) { - col.PrimaryKey = true - } - - // Need to roll this query up into the main query at some point - tpl = `SELECT f.adsrc AS default_val -FROM pg_attribute a LEFT JOIN pg_attrdef f ON f.adrelid = a.attrelid AND f.adnum = a.attnum -WHERE a.attnum > 0 AND NOT a.attisdropped AND a.attrelid = '%s.%s'::regclass AND a.attname = '%s'` - q = fmt.Sprintf(tpl, tblSchema, tblName, col.Name) - - lg.Debugf("SQL:\n%s", q) - - row := db.QueryRow(q) - defVal := &sql.NullString{} - err = row.Scan(defVal) - if err != nil { - return util.WrapError(err) - } - - col.DefaultValue = defVal.String - - tbl.Columns = append(tbl.Columns, *col) - } - - return nil -} - -func init() { - d := &Driver{} - drvr.Register(d) -} - -/* -SELECT -U.usename AS user_name, -ns.nspname AS schema_name, -idx.indrelid :: REGCLASS AS table_name, -i.relname AS index_name, -idx.indisunique AS is_unique, -idx.indisprimary AS is_primary, -am.amname AS index_type, -idx.indkey, -ARRAY( -SELECT pg_get_indexdef(idx.indexrelid, k + 1, TRUE) -FROM -generate_subscripts(idx.indkey, 1) AS k -ORDER BY k -) AS index_keys, -(idx.indexprs IS NOT NULL) OR (idx.indkey::int[] @> array[0]) AS is_functional, -idx.indpred IS NOT NULL AS is_partial -FROM pg_index AS idx -JOIN pg_class AS i -ON i.oid = idx.indexrelid -JOIN pg_am AS am -ON i.relam = am.oid -JOIN pg_namespace AS NS ON i.relnamespace = NS.OID -JOIN pg_user AS U ON i.relowner = U.usesysid -WHERE NOT nspname LIKE 'pg%'; -*/ - -/* - -SELECT a.attnum - ,a.attname AS name - ,format_type(a.atttypid, a.atttypmod) AS typ - ,a.attnotnull AS notnull - ,coalesce(p.indisprimary, FALSE) AS primary_key - ,f.adsrc AS default_val - ,d.description AS col_comment -FROM pg_attribute a - LEFT JOIN pg_index p ON p.indrelid = a.attrelid AND a.attnum = ANY(p.indkey) - LEFT JOIN pg_description d ON d.objoid = a.attrelid AND d.objsubid = a.attnum - LEFT JOIN pg_attrdef f ON f.adrelid = a.attrelid AND f.adnum = a.attnum -WHERE a.attnum > 0 - AND NOT a.attisdropped - AND a.attrelid = 'public.tblorder'::regclass -- table may be schema-qualified -ORDER BY a.attnum; - -*/ - -/* - - -SELECT - U.usename AS user_name, - ns.nspname AS schema_name, - idx.indrelid :: REGCLASS AS table_name, - i.relname AS index_name, - idx.indisunique AS is_unique, - idx.indisprimary AS is_primary, - am.amname AS index_type, - idx.indkey, - ARRAY( - SELECT pg_get_indexdef(idx.indexrelid, k + 1, TRUE) - FROM - generate_subscripts(idx.indkey, 1) AS k - ORDER BY k - ) AS index_keys, - (idx.indexprs IS NOT NULL) OR (idx.indkey::int[] @> array[0]) AS is_functional, - idx.indpred IS NOT NULL AS is_partial -FROM pg_index AS idx - JOIN pg_class AS i - ON i.oid = idx.indexrelid - JOIN pg_am AS am - ON i.relam = am.oid - JOIN pg_namespace AS NS ON i.relnamespace = NS.OID - JOIN pg_user AS U ON i.relowner = U.usesysid -WHERE NOT nspname LIKE 'pg%'; -*/ - -/* -SELECT a.attname AS pk_col_name, format_type(a.atttypid, a.atttypmod) AS data_type -FROM pg_index i - JOIN pg_attribute a ON a.attrelid = i.indrelid - AND a.attnum = ANY(i.indkey) -WHERE i.indrelid = 'public.tblall'::regclass - AND i.indisprimary; -*/ - -/* -SELECT DISTINCT a.attnum - ,a.attname AS name - ,format_type(a.atttypid, a.atttypmod) AS typ - ,a.attnotnull AS notnull --- ,coalesce(p.indisprimary, FALSE) AS primary_key - ,f.adsrc AS default_val -FROM pg_attribute a --- LEFT JOIN pg_index p ON p.indrelid = a.attrelid AND a.attnum = ANY(p.indkey) - LEFT JOIN pg_attrdef f ON f.adrelid = a.attrelid AND f.adnum = a.attnum -WHERE a.attnum > 0 - AND NOT a.attisdropped - AND a.attrelid = 'public.tblorder'::regclass -- table may be schema-qualified -ORDER BY a.attnum; -*/ diff --git a/libsq/drvr/impl/sqlite3/sqlite3.go b/libsq/drvr/impl/sqlite3/sqlite3.go deleted file mode 100644 index efeb951d..00000000 --- a/libsq/drvr/impl/sqlite3/sqlite3.go +++ /dev/null @@ -1,150 +0,0 @@ -package sqlite3 - -import ( - _ "github.com/neilotoole/sq-driver/hackery/drivers/go-sqlite3" - - "fmt" - - "os" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" -) - -const typ = drvr.Type("sqlite3") - -type Driver struct { -} - -func (d *Driver) Type() drvr.Type { - return typ -} - -func (d *Driver) ConnURI(source *drvr.Source) (string, error) { - return "", util.Errorf("not implemented") -} - -func (d *Driver) Open(src *drvr.Source) (*sql.DB, error) { - return sql.Open(string(src.Type), src.ConnURI()) -} - -func (d *Driver) Release() error { - return nil -} - -func (d *Driver) ValidateSource(src *drvr.Source) (*drvr.Source, error) { - if src.Type != typ { - return nil, util.Errorf("expected driver type %q but got %q", typ, src.Type) - } - return src, nil -} - -func (d *Driver) Ping(src *drvr.Source) error { - db, err := d.Open(src) - if err != nil { - return err - } - defer db.Close() - return db.Ping() -} - -func (d *Driver) Metadata(src *drvr.Source) (*drvr.SourceMetadata, error) { - - meta := &drvr.SourceMetadata{} - meta.Handle = src.Handle - - q := "SELECT tbl_name FROM sqlite_master WHERE type = 'table'" - - db, err := d.Open(src) - if err != nil { - return nil, err - } - lg.Debugf("SQL: %q", q) - rows, err := db.Query(q) - if err != nil { - return nil, err - } - defer db.Close() - defer rows.Close() - - fi, err := os.Stat(src.ConnURI()) - if err != nil { - return nil, util.WrapError(err) - } - lg.Debugf("size: %d", fi.Size()) - meta.Size = fi.Size() - meta.Name = fi.Name() - meta.FullyQualifiedName = fi.Name() - meta.Location = src.Location - - for rows.Next() { - - tbl := &drvr.Table{} - - err = rows.Scan(&tbl.Name) - if err != nil { - return nil, util.WrapError(err) - } - - //lg.Debugf("tbl.Name: %v", tbl.Name) - - err = populateTblMetadata(db, meta.Name, tbl) - if err != nil { - return nil, err - } - - meta.Tables = append(meta.Tables, *tbl) - } - return meta, nil -} - -func populateTblMetadata(db *sql.DB, dbName string, tbl *drvr.Table) error { - - // No easy way of getting size of table - tbl.Size = -1 - tpl := "SELECT COUNT(*) FROM '%s'" - q := fmt.Sprintf(tpl, tbl.Name) - lg.Debugf("SQL: %s", q) - - row := db.QueryRow(q) - err := row.Scan(&tbl.RowCount) - if err != nil { - return util.WrapError(err) - } - - tpl = "PRAGMA TABLE_INFO('%s')" - q = fmt.Sprintf(tpl, tbl.Name) - lg.Debugf("SQL: %s", q) - - rows, err := db.Query(q) - if err != nil { - return util.WrapError(err) - } - defer rows.Close() - - for rows.Next() { - - col := &drvr.Column{} - - var notnull int64 - defVal := &sql.NullString{} - err = rows.Scan(&col.Position, &col.Name, &col.Datatype, ¬null, defVal, &col.PrimaryKey) - if err != nil { - return util.WrapError(err) - } - - col.ColType = col.Datatype - col.Nullable = notnull == 0 - col.DefaultValue = defVal.String - tbl.Columns = append(tbl.Columns, *col) - } - - return nil -} - -func init() { - d := &Driver{} - drvr.Register(d) -} diff --git a/libsq/drvr/impl/xlsx/xlsx.go b/libsq/drvr/impl/xlsx/xlsx.go deleted file mode 100644 index 732575ba..00000000 --- a/libsq/drvr/impl/xlsx/xlsx.go +++ /dev/null @@ -1,589 +0,0 @@ -package xslx - -import ( - "strings" - - "fmt" - - "net/http" - - "io" - "sync" - - "io/ioutil" - - "os" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/impl/common" - "github.com/neilotoole/sq/libsq/drvr/scratch" - "github.com/neilotoole/sq/libsq/util" - "github.com/tealeg/xlsx" -) - -const typ = drvr.Type("xlsx") - -type Driver struct { - mu *sync.Mutex - cleanup []func() error -} - -func (d *Driver) Type() drvr.Type { - return typ -} - -func (d *Driver) ConnURI(source *drvr.Source) (string, error) { - return "", util.Errorf("not implemented") -} - -func (d *Driver) Open(src *drvr.Source) (*sql.DB, error) { - - lg.Debugf("attempting to ping XLSX file %q", src.Location) - err := d.Ping(src) - if err != nil { - return nil, err - } - lg.Debugf("successfully pinged XLSX file %q", src.Location) - // we now know that the xlsx file is valid - - // let's open the scratch db - _, scratchdb, _, err := scratch.OpenNew() - //shutdown.Add(cleanup) - if err != nil { - return nil, err - } - - lg.Debugf("opened handle to scratch db") - - err = d.xlsxToScratch(src, scratchdb) - if err != nil { - return nil, err - } - - return scratchdb, nil -} - -func (d *Driver) ValidateSource(src *drvr.Source) (*drvr.Source, error) { - if src.Type != typ { - return nil, util.Errorf("expected source type %q but got %q", typ, src.Type) - } - - lg.Debugf("validating source: %q", src.Location) - - return src, nil -} - -func (d *Driver) Ping(src *drvr.Source) error { - - lg.Debugf("driver %q attempting to ping %q", d.Type(), src) - file, err := d.getSourceFile(src) - if err != nil { - return err - } - - lg.Debugf("file exists: %q", file.Name()) - xlFile, err := xlsx.OpenFile(file.Name()) - if err != nil { - return util.Errorf("unable to open XLSX file %q: %v", file.Name(), err) - } - - lg.Debugf("successfully opened XLSX file %q with sheet count: %d", file.Name(), len(xlFile.Sheets)) - - return nil -} - -func (d *Driver) Metadata(src *drvr.Source) (*drvr.SourceMetadata, error) { - - meta := &drvr.SourceMetadata{} - meta.Handle = src.Handle - - file, err := d.getSourceFile(src) - if err != nil { - return nil, err - } - defer file.Close() - - fi, err := os.Stat(file.Name()) - if err != nil { - return nil, util.WrapError(err) - } - meta.Size = fi.Size() - meta.Name, err = d.getSourceFileName(src) - if err != nil { - return nil, err - } - - meta.FullyQualifiedName = meta.Name - meta.Location = src.Location - xlFile, err := xlsx.OpenFile(file.Name()) - if err != nil { - return nil, util.Errorf("unable to open XLSX file %q: %v", file.Name(), err) - } - - hasHeader, _, err := common.OptionsHasHeader(src) - if err != nil { - return nil, err - } - - for _, sheet := range xlFile.Sheets { - tbl := drvr.Table{} - - tbl.Name = sheet.Name - tbl.Size = -1 - tbl.RowCount = int64(len(sheet.Rows)) - - if hasHeader && tbl.RowCount > 0 { - tbl.RowCount-- - } - - colNames := getColNames(sheet, hasHeader) - colTypes := getColTypes(sheet, hasHeader) - - for i, colType := range colTypes { - - col := drvr.Column{} - col.Datatype = cellTypeToString(colType) - col.ColType = col.Datatype - col.Position = int64(i) - col.Name = colNames[i] - tbl.Columns = append(tbl.Columns, col) - } - - meta.Tables = append(meta.Tables, tbl) - - } - - return meta, nil -} - -// getColNames returns column names for the sheet. If hasHeader is true and there's -// at least one row, the column names are the values of the first row. Otherwise -// an alphabetical sequence (A, B... Z, AA, AB) is generated. -func getColNames(sheet *xlsx.Sheet, hasHeader bool) []string { - - numCols := len(sheet.Cols) - colNames := make([]string, numCols) - - if len(sheet.Rows) > 0 && hasHeader { - - row := sheet.Rows[0] - for i := 0; i < numCols; i++ { - colNames[i] = row.Cells[i].Value - } - return colNames - } - - for i := 0; i < numCols; i++ { - colNames[i] = drvr.GenerateAlphaColName(i) - } - - return colNames -} - -// getColTypes returns the xlsx column types for the sheet, determined from -// the values of the first data row (after any header row). -func getColTypes(sheet *xlsx.Sheet, hasHeader bool) []xlsx.CellType { - - types := make([]*xlsx.CellType, len(sheet.Cols)) - firstDataRow := 0 - if hasHeader { - firstDataRow = 1 - } - - for x := firstDataRow; x < len(sheet.Rows); x++ { - - for i, cell := range sheet.Rows[x].Cells { - - if types[i] == nil { - typ := cell.Type() - types[i] = &typ - continue - } - - // else, it already has a type - if *types[i] == cell.Type() { - // type matches, just continue - continue - } - - // it already has a type, and it's different from this cell's type - typ := xlsx.CellTypeGeneral - types[i] = &typ - } - } - - // convert back to value types - ret := make([]xlsx.CellType, len(types)) - for i, typ := range types { - ret[i] = *typ - } - - return ret -} - -func cellTypeToString(typ xlsx.CellType) string { - - switch typ { - case xlsx.CellTypeString: - return "string" - case xlsx.CellTypeFormula: - return "formula" - case xlsx.CellTypeNumeric: - return "numeric" - case xlsx.CellTypeBool: - return "bool" - case xlsx.CellTypeInline: - return "inline" - case xlsx.CellTypeError: - return "error" - case xlsx.CellTypeDate: - return "date" - } - - return "general" -} - -func init() { - d := &Driver{mu: &sync.Mutex{}} - drvr.Register(d) -} - -func (d *Driver) Release() error { - - d.mu.Lock() - defer d.mu.Unlock() - lg.Debugf("running driver cleanup tasks") - - errs := []string{} - - for _, cleaner := range d.cleanup { - err := cleaner() - if err != nil { - errs = append(errs, err.Error()) - } - } - - if len(errs) > 0 { - err := util.Errorf("cleanup error: %s", strings.Join(errs, "\n")) - return err - } - - lg.Debugf("driver cleanup tasks complete") - return nil -} - -// getSourceFileName returns the final component of the file/URL path. -func (d *Driver) getSourceFileName(src *drvr.Source) (string, error) { - - sep := os.PathSeparator - if strings.HasPrefix(src.Location, "http") { - sep = '/' - } - - parts := strings.Split(src.Location, string(sep)) - if len(parts) == 0 || len(parts[len(parts)-1]) == 0 { - return "", util.Errorf("illegal src [%s] location: %s", src.Handle, src.Location) - } - - return parts[len(parts)-1], nil -} - -// getSourceFile returns a file handle for XLSX file. The return file is open, -// the caller is responsible for closing it. -func (d *Driver) getSourceFile(src *drvr.Source) (*os.File, error) { - - // TODO: delegate to drvr.GetSourceFile - // xlsx:///Users/neilotoole/sq/test/testdata.xlsx - //`https://s3.amazonaws.com/sq.neilotoole.io/testdata/1.0/xslx/test.xlsx` - //`/Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/xlsx/test.xlsx` - - lg.Debugf("attempting to determine XLSX filepath from source location %q", src.Location) - - if strings.HasPrefix(src.Location, "http://") || strings.HasPrefix(src.Location, "https://") { - lg.Debugf("attempting to fetch XLSX file from %q", src.Location) - - resp, err := http.Get(src.Location) - if err != nil { - return nil, util.Errorf("unable to fetch XLSX file for datasource %q with location %q due to error: %v", src.Handle, src.Location, err) - } - - if resp.StatusCode != http.StatusOK { - return nil, util.Errorf("unable to fetch XLSX file for datasource %q with location %q due to HTTP status: %s/%d", src.Handle, src.Location, resp.Status, resp.StatusCode) - } - - lg.Debugf("success fetching remote XLSX file from %q", src.Location) - - tmpFile, err := ioutil.TempFile("", "sq_xlsx_") // really should give this a suffix - if err != nil { - return nil, util.Errorf("unable to create tmp file: %v", err) - } - - _, err = io.Copy(tmpFile, resp.Body) - if err != nil { - return nil, util.Errorf("error reading XLSX file from %q to %q", src.Location, tmpFile.Name()) - } - defer resp.Body.Close() - - // TODO: revisit locking here - d.mu.Lock() - defer d.mu.Unlock() - d.cleanup = append(d.cleanup, func() error { - lg.Debugf("deleting tmp file %q", tmpFile.Name()) - return os.Remove(tmpFile.Name()) - }) - - return tmpFile, nil - - } - - // If it's not remote, it should be a local path - file, err := os.Open(src.Location) - if err != nil { - return nil, util.Errorf("error opening XLSX file %q: %v", src.Location, err) - } - - return file, nil -} - -func (d *Driver) xlsxToScratch(src *drvr.Source, db *sql.DB) error { - - hasHeader, _, err := common.OptionsHasHeader(src) - if err != nil { - return err - } - - file, err := d.getSourceFile(src) - if err != nil { - return err - } - defer file.Close() - - xlFile, err := xlsx.OpenFile(file.Name()) - if err != nil { - return util.Errorf("unable to open XLSX file %q: %v", file.Name(), err) - } - - //sheets := xlFile.Sheets - - for _, sheet := range xlFile.Sheets { - - lg.Debugf("attempting to create table for sheet %q", sheet.Name) - colNames, err := createTblForSheet(db, sheet, hasHeader) - if err != nil { - return err - } - lg.Debugf("successfully created table for sheet %q", sheet.Name) - - escapedColNames := make([]string, len(colNames)) - for i, colName := range colNames { - escapedColNames[i] = `"` + colName + `"` - } - - placeholders := make([]string, len(colNames)) - for i := range placeholders { - placeholders[i] = "?" - } - - insertTpl := `INSERT INTO "%s" ( %s ) VALUES ( %s )` - insertStmt := fmt.Sprintf(insertTpl, sheet.Name, strings.Join(escapedColNames, ", "), strings.Join(placeholders, ", ")) - - lg.Debugf("using INSERT stmt: %s", insertStmt) - for i, row := range sheet.Rows { - - if hasHeader && i == 0 { - // - continue - } - - //result, err = database.Exec("Insert into Persons (id, LastName, FirstName, Address, City) values (?, ?, ?, ?, ?)", nil, "soni", "swati", "110 Eastern drive", "Mountain view, CA") - vals := make([]interface{}, len(row.Cells)) - for i, cell := range row.Cells { - typ := cell.Type() - switch typ { - case xlsx.CellTypeBool: - vals[i] = cell.Bool() - case xlsx.CellTypeNumeric: - intVal, err := cell.Int64() - if err == nil { - vals[i] = intVal - continue - } - floatVal, err := cell.Float() - if err == nil { - vals[i] = floatVal - continue - } - // it's not an int, it's not a float, just give up and make it a string - vals[i] = cell.Value - - case xlsx.CellTypeDate: - //val, _ := cell. - // TODO: parse into a time value here - vals[i] = cell.Value - default: - vals[i] = cell.Value - } - - } - - //vls := make([]string, len(vals)) - //for i, val := range vals { - // vls[i] = fmt.Sprintf("%v", val) - //} - // - //lg.Debugf("INSERT INTO %q VALUES (%s)", sheet.Name, strings.Join(vls, ", ")) - - _, err := db.Exec(insertStmt, vals...) - if err != nil { - //err = util.WrapError(err) - return util.Errorf("%s: %q[%d]: INSERT failed: %v", src.Handle, sheet.Name, i, err) - //return util.WrapError(err) - } - } - } - - //lg.Debugf("finished") - return nil -} - -func getDBColTypeFromCell(cells []*xlsx.Cell) []string { - - vals := make([]string, len(cells)) - for i, cell := range cells { - typ := cell.Type() - switch typ { - case xlsx.CellTypeBool: - vals[i] = AffinityInteger - case xlsx.CellTypeNumeric: - _, err := cell.Int64() - if err == nil { - vals[i] = AffinityInteger - continue - } - _, err = cell.Float() - if err == nil { - vals[i] = AffinityReal - continue - } - // it's not an int, it's not a float - vals[i] = AffinityNumeric - - case xlsx.CellTypeDate: - // TODO: support time values here? - vals[i] = AffinityText - default: - vals[i] = AffinityText - } - - } - - return vals - -} - -const AffinityText = `TEXT` -const AffinityNumeric = `NUMERIC` -const AffinityInteger = `INTEGER` -const AffinityReal = `REAL` -const AffinityBlob = `BLOB` - -// createTblForSheet creates a table for the given sheet, and returns an arry -// of the table's column names, or an error. -func createTblForSheet(db *sql.DB, sheet *xlsx.Sheet, hasHeader bool) ([]string, error) { - - lg.Debugf("creating table [header=%v] for sheet %q", hasHeader, sheet.Name) - - numCols := len(sheet.Cols) - if numCols == 0 { - return nil, util.Errorf("sheet %q has no columns", sheet.Name) - } - - colNames := make([]string, numCols) - colTypes := make([]string, numCols) - colExprs := make([]string, numCols) - - firstDataRow := 0 - - if len(sheet.Rows) == 0 { - // TODO: is this even reachable? That is, if sheet.Rows is empty, - // then sheet.Cols (checked for above) will also be empty? - - // sheet has no rows - for i := 0; i < numCols; i++ { - colTypes[i] = AffinityText - colNames[i] = drvr.GenerateAlphaColName(i) - } - } else { - // sheet is non-empty - - // Set up the column names - if hasHeader { - firstDataRow = 1 - headerCells := sheet.Rows[0].Cells - for i := 0; i < numCols; i++ { - colNames[i] = headerCells[i].Value - } - - } else { - for i := 0; i < numCols; i++ { - colNames[i] = drvr.GenerateAlphaColName(i) - } - } - - // Set up the column types - if firstDataRow >= len(sheet.Rows) { - // the sheet contains only one row (the header row). Let's - // explicitly set the column type none the less - for i := 0; i < numCols; i++ { - colTypes[i] = AffinityText - } - } else { - // we have at least one data row, let's get the column types - colTypes = getDBColTypeFromCell(sheet.Rows[firstDataRow].Cells) - } - } - - //if len(sheet.Rows) == 0 { - // for i := 0; i < numCols; i++ { - // colTypes[i] = AffinityText - // } - //} else { - // colTypes = getDBColTypeFromCell(sheet.Rows[0].Cells) - //} - - //firstRow := sheet.Rows[0] - //firstRow.Cells - // - //for i, cell := range firstRow.Cells { - // typ := cell.Type() - //} - - for i := 0; i < numCols; i++ { - //colNames[i] = drvr.GenerateAlphaColName(i) - //colTypes[i] = "TEXT" - colExprs[i] = fmt.Sprintf(`"%s" %s`, colNames[i], colTypes[i]) - } - - lg.Debugf("using col names [%q]", strings.Join(colNames, ", ")) - lg.Debugf("using col types [%q]", strings.Join(colTypes, ", ")) - - // need to get the col types - - //tblTpl := "CREATE TABLE IF NOT EXISTS Persons ( id integer PRIMARY KEY, LastName varchar(255) NOT NULL, FirstName varchar(255), Address varchar(255), City varchar(255), CONSTRAINT uc_PersonID UNIQUE (id,LastName))",) - // TODO: should delegate this to the renderer - tblTpl := `CREATE TABLE IF NOT EXISTS "%s" ( %s )` - - stmt := fmt.Sprintf(tblTpl, sheet.Name, strings.Join(colExprs, ", ")) - lg.Debugf("creating table for sheet %q using stmt: %s", sheet.Name, stmt) - - _, err := db.Exec(stmt) - if err != nil { - return nil, util.WrapError(err) - } - - lg.Debugf("created table %q", sheet.Name) - - return colNames, nil -} diff --git a/libsq/drvr/impl/xlsx/xlsx_test.go b/libsq/drvr/impl/xlsx/xlsx_test.go deleted file mode 100644 index 378a5df8..00000000 --- a/libsq/drvr/impl/xlsx/xlsx_test.go +++ /dev/null @@ -1 +0,0 @@ -package xslx diff --git a/libsq/drvr/metadata.go b/libsq/drvr/metadata.go deleted file mode 100644 index ac276c74..00000000 --- a/libsq/drvr/metadata.go +++ /dev/null @@ -1,48 +0,0 @@ -package drvr - -import "encoding/json" - -type SourceMetadata struct { - Handle string `json:"handle"` - Name string `json:"name"` - FullyQualifiedName string `json:"fq_name"` - Location string `json:"location"` - Size int64 `json:"size"` - Tables []Table `json:"tables"` -} - -func (d *SourceMetadata) String() string { - bytes, _ := json.Marshal(d) - return string(bytes) -} - -type Table struct { - Name string `json:"name"` - RowCount int64 `json:"rows"` - Size int64 `json:"tbl_size"` - Comment string `json:"comment,omitempty"` - Columns []Column `json:"columns"` -} - -func (t *Table) String() string { - bytes, _ := json.Marshal(t) - return string(bytes) -} - -type Column struct { - Name string `json:"name"` - Position int64 `json:"position"` - PrimaryKey bool `json:"primary_key"` - Datatype string `json:"drvr.datatype"` - ColType string `json:"col_type"` - Nullable bool `json:"nullable"` - DefaultValue string `json:"default_value,omitempty"` - //Key string `json:"key"` - //Extra string `json:"extra"` - Comment string `json:"comment,omitempty"` -} - -func (c *Column) String() string { - bytes, _ := json.Marshal(c) - return string(bytes) -} diff --git a/libsq/drvr/scratch/scratch.go b/libsq/drvr/scratch/scratch.go deleted file mode 100644 index 6ae58f86..00000000 --- a/libsq/drvr/scratch/scratch.go +++ /dev/null @@ -1,105 +0,0 @@ -package scratch - -import ( - "time" - - "os" - "strconv" - - "path/filepath" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/util" -) - -//// Open returns a handle to a new scratch database. -//func Open() (*sql.DB, error) { -// -// _, filepath := generateFilename() -// lg.Debugf("attempting to create sqlite3 DB: %s", filepath) -// db, err := sql.Open("sqlite3", filepath) -// if err != nil { -// return nil, util.WrapError(err) -// } -// -// lg.Debugf("successfully created sqlite3 DB: %s", filepath) -// return db, nil -// //return nil, util.Errorf("not implemented") -//} - -var workDir string - -func Init(scratchDir string) { - workDir = scratchDir -} - -// OpenNew creates a new scratch database, and returns the data source, opened -// database, cleanup function (may be nil), or an error. It is up to the caller invoke -// db.Close() and to invoke the cleanup function. -func OpenNew() (*drvr.Source, *sql.DB, func() error, error) { - - src, filepath, err := newScratchSrc() - if err != nil { - return nil, nil, nil, err - } - - db, err := sql.Open(string(src.Type), src.ConnURI()) - if err != nil { - return nil, nil, nil, util.WrapError(err) - } - - cleanup := func() error { - lg.Debugf("attempting to delete scratch DB file %q", filepath) - err := os.Remove(filepath) - if err != nil { - lg.Errorf("error deleting scratch DB file %q: %v", filepath, err) - } else { - lg.Debugf("deleted scratch DB file %q", filepath) - } - return err - } - - //shutdown.Add(cleanup) - - return src, db, cleanup, nil -} - -func Type() drvr.Type { - return drvr.Type("sqlite3") -} - -func generateFilename(dir string) (filename string, path string) { - const tsFmt = `20060102.030405.000000000` - - ts := time.Now().Format(tsFmt) - - filename = ts + "__" + strconv.Itoa(os.Getpid()) + ".sqlite" - - path = filepath.Join(dir, filename) - - lg.Debugf("generated path: %q", path) - return - -} - -func newScratchSrc() (*drvr.Source, string, error) { - - var dir string - - if workDir == "" { - dir = os.TempDir() - } else { - dir = workDir - } - - filename, path := generateFilename(dir) - lg.Debugf("creating scratch datasource (sqlite3): %s", filename) - - src := &drvr.Source{} - src.Type = drvr.Type("sqlite3") - src.Handle = "scratch_" + filename - src.Location = "sqlite3://" + path - return src, path, nil -} diff --git a/libsq/drvr/scratch/scratch_test.go b/libsq/drvr/scratch/scratch_test.go deleted file mode 100644 index 496e1dad..00000000 --- a/libsq/drvr/scratch/scratch_test.go +++ /dev/null @@ -1,17 +0,0 @@ -package scratch - -import ( - "testing" - - "os" - - "github.com/stretchr/testify/assert" -) - -func TestGenerateFilename(t *testing.T) { - - filename, path := generateFilename(os.TempDir()) - assert.NotEmpty(t, filename) - assert.NotEmpty(t, path) - -} diff --git a/libsq/drvr/source.go b/libsq/drvr/source.go deleted file mode 100644 index 26d475b9..00000000 --- a/libsq/drvr/source.go +++ /dev/null @@ -1,426 +0,0 @@ -package drvr - -import ( - "fmt" - "strings" - - "net/url" - - "regexp" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/shutdown" - "github.com/neilotoole/sq/libsq/util" -) - -type Type string - -// Source describes a data source. -type Source struct { - Handle string `yaml:"handle"` - Location string `yaml:"location"` - Type Type `yaml:"type"` - Options url.Values `yaml:"options,omitempty"` -} - -var handlePattern = regexp.MustCompile(`\A[@][a-zA-Z][a-zA-Z0-9_]*$`) - -// CheckHandleText returns an error if handle is not an acceptable value. -func CheckHandleValue(handle string) error { - - matches := handlePattern.MatchString(handle) - - if !matches { - return util.Errorf(`invalid data source handle value %q: must begin with @, followed by a letter, followed by zero or more letters, digits, or underscores, e.g. "@my_db1"`, handle) - } - - return nil -} - -// AddSource attempts to register a new data source. driverName is optional; if not -// provided, the function attempts to guess the driver type. -func AddSource(handle string, location string, driverName string, opts url.Values) (*Source, error) { - - msg := fmt.Sprintf("attempting to create data source %q [%s] from %q", handle, driverName, location) - if opts != nil { - msg = fmt.Sprintf(msg+" with options: %s", opts.Encode()) - } - - lg.Debugf(msg) - err := CheckHandleValue(handle) - if err != nil { - return nil, err - } - - var driverType Type - if driverName != "" { - _, ok := registeredDrivers[Type(driverName)] - if !ok { - return nil, util.Errorf("unknown driver type %q", driverName) - } - driverType = Type(driverName) - } - - if driverType == "" { - // check if it's standard driver URL - driverType, _ = getDriverTypeFromStdDriverURL(location) - } - - if driverType == "" { - // not a standard driver URL, probably a file-based source or a remote source - file, mediatype, cleanup, err := GetSourceFile(location) - - // TODO (neilotoole): ^^ do we really want to retrieve the file at this stage, or just - // get the mediatype etc? - if err != nil { - lg.Errorf("unable to determine driver for data src: %s", location) - // at this stage, we just give up - return nil, err - } - - if file != nil { - shutdown.Add(func() error { - return file.Close() - }) - } - - shutdown.Add(cleanup) - - ok := false - driverType, ok = getDriverTypeFromMediaType(mediatype) - if !ok { - return nil, util.Errorf("unable to determine driver for data src: %s [%s]", location, mediatype) - } - - } - - //lg.Debugf("attempting to create data source %q at %q", handle, location) - // - //if driverType == "" { - // driverType, err = GetTypeFromSrcLocation(location) - // if err != nil { - // return nil, err - // } - //} - - src := &Source{Handle: handle, Location: location, Type: driverType, Options: opts} - - drv, err := For(src) - if err != nil { - return nil, err - } - - lg.Debugf("will now validate provisional new datasource: %q", src) - - canonicalSource, err := drv.ValidateSource(src) - return canonicalSource, err -} - -// getDriverTypeFromMediaType returns the driver type corresponding to mediatype. -// For example: -// -// application/vnd.openxmlformats-officedocument.spreadsheetml.sheet --> xlsx -// text/csv --> csv -func getDriverTypeFromMediaType(mediatype string) (driverType Type, ok bool) { - - switch { - case strings.Index(mediatype, `application/vnd.openxmlformats-officedocument.spreadsheetml.sheet`) != -1: - driverType = Type("xlsx") - ok = true - case strings.Index(mediatype, `text/csv`) != -1: - driverType = Type("csv") - ok = true - - case strings.Index(mediatype, `text/tab-separated-values`) != -1: - driverType = Type("tsv") - ok = true - } - - lg.Debugf("%q : %q", mediatype, driverType) - return driverType, ok -} - -// getDriverTypeFromStdDriverURL checks if location maps to a typical registered SQL driver, -// and if so returns the driver type and true. That is, does the location start with -// the name of the SQL driver? Examples: -// -// mysql://root:root@tcp(localhost:33067)/sq_mydb1 -// postgres://sq:sq@localhost/sq_pg1?sslmode=disable -// -func getDriverTypeFromStdDriverURL(location string) (Type, bool) { - - u, err := url.ParseRequestURI(location) - if err != nil { - return "", false - } - - drv, ok := registeredDrivers[Type(u.Scheme)] - if !ok { - return "", false - } - - return drv.Type(), true -} - -func GetTypeFromSrcLocation(location string) (Type, error) { - - lg.Debugf("attempting to determine datasource type from %q", location) - // xsls content type: application/vnd.ms-excel - - // A location can look like: - //HANDLE DRIVER LOCATION - //@my1 mysql mysql://root:root@tcp(localhost:33067)/sq_mydb1 - //@pg1 postgres postgres://sq:sq@localhost/sq_pg1?sslmode=disable - //@sl1 sqlite3 sqlite3:///Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/sqlite/sqlite_db1 - //@excel2 xlsx /Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/xlsx/test.xlsx - //@excel3 xlsx test.xlsx - //@excel4 xlsx https://s3.amazonaws.com/sq.neilotoole.io/testdata/1.0/xslx/test.xlsx - - parts := strings.Split(location, "://") - - if len(parts) > 1 && parts[0] != "http" && parts[0] != "https" { - drvName := parts[0] - drv, ok := registeredDrivers[Type(drvName)] - if !ok { - return "", util.Errorf("unknown driver type %q in source location %q", drvName, location) - } - - lg.Debugf("found datasource type %q for location %q", drv.Type(), location) - return drv.Type(), nil - } - - // check if it's http or https - if parts[0] == "http" || parts[0] == "https" { - - // https://s3.amazonaws.com/sq.neilotoole.io/testdata/1.0/xslx/test.xlsx - u, err := url.ParseRequestURI(location) - if err != nil { - return "", util.Errorf("unable to determine datasource type from location %q due to error: %v", location, err) - } - - // let's see if we can determine the file extension - // /testdata/1.0/xslx/test.xlsx - suffix, ok := getFileSuffixFromPath(u.Path) - if !ok { - return "", util.Errorf("unable to determine source type from file suffix in location %q", location) - } - - drv, ok := registeredDrivers[Type(strings.ToLower(suffix))] - if !ok { - return "", util.Errorf("no driver for file suffix %q in source location %q", suffix, location) - } - - lg.Debugf("found datasource type %q for location %q", drv.Type(), location) - return drv.Type(), nil - - } - - // it's most likely a file path, e.g. - // /Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/xlsx/test.xlsx - suffix, ok := getFileSuffixFromPath(location) - if !ok { - return "", util.Errorf("unable to determine source type from file suffix in location %q", location) - } - drv, ok := registeredDrivers[Type(strings.ToLower(suffix))] - if !ok { - return "", util.Errorf("no driver for file suffix %q in source location %q", suffix, location) - } - - lg.Debugf("found datasource type %q for location %q", drv.Type(), location) - return drv.Type(), nil -} - -func getFileSuffixFromPath(path string) (suffix string, ok bool) { - - pathComponents := strings.Split(path, "/") - if len(pathComponents) == 0 { - //return "", false - return - } - - // splitting a value such as "test.xlsx" - fileComponents := strings.Split(pathComponents[len(pathComponents)-1], ".") - if len(fileComponents) <= 1 { - //return "", false - return - } - - suffix = fileComponents[len(fileComponents)-1] - ok = true - return -} - -// DriverURI returns the value required by the specific driver to access the -// datasource. For example, for a DB driver, this would be the connection string. -func (s Source) ConnURI() string { - - if s.Type == Type("mysql") { - parts := strings.Split(s.Location, "://") - uri := strings.Join(parts[1:], "") - return uri - } - - if s.Type == Type("sqlite3") { - return s.Location[9:] - } - - return s.Location - -} - -func IsValidSourceLocation(location string) bool { - - lg.Debugf("checking source location %q", location) - parts := strings.Split(location, "://") - - if len(parts) != 2 { - lg.Debugf("expected source location %q to have two parts, but had %d", location, len(parts)) - return false - } - - //lg.Debugf("searching for driver for %q", Type(parts[0])) - //for _, driver := range Drivers { - // - // if driver == Type(parts[0]) { - // lg.Debugf("found driver") - // return true - // } - // - //} - - typ := Type(parts[0]) - - _, ok := registeredDrivers[typ] - if !ok { - lg.Debugf("given source location %q, no driver found for location component %q", location, typ) - } - - return ok - -} - -func (s Source) String() string { - - return fmt.Sprintf("[%s] %s", s.Handle, s.Location) -} - -type SourceSet struct { - ActiveSrc string `yaml:"active"` - Items []*Source `yaml:"items"` -} - -func (ss *SourceSet) Add(src *Source) error { - - if i, _ := ss.IndexOf(src.Handle); i != -1 { - return util.Errorf(`data source with name "%v" already exists`, src.Handle) - } - - ss.Items = append(ss.Items, src) - return nil -} - -func (ss *SourceSet) IndexOf(name string) (int, *Source) { - - for i, src := range ss.Items { - if src.Handle == name { - return i, src - } - } - - return -1, nil -} - -func (ss *SourceSet) Active() (*Source, bool) { - - // TODO: contemplate changing "Active" to default?? - if ss.ActiveSrc == "" { - return nil, false - } - - i, src := ss.IndexOf(ss.ActiveSrc) - if i == -1 { - return nil, false - } - - return src, true -} - -func (ss *SourceSet) Get(name string) (*Source, error) { - - lg.Debugf("attempting to get datasource %q", name) - if !strings.HasPrefix(name, "@") { - name = "@" + name - //lg.Debugf("stripping leading @ for canonical name %q", name) - } - - if name == "" { - return nil, newUnknownSourceError(name) - } - - i, src := ss.IndexOf(name) - if i == -1 { - return nil, newUnknownSourceError(name) - } - - lg.Debugf("returning datasource %q", src.String()) - return src, nil -} - -func (ss *SourceSet) SetActive(name string) (*Source, error) { - - for _, src := range ss.Items { - if src.Handle == name { - ss.ActiveSrc = name - return src, nil - } - } - - return nil, newUnknownSourceError(name) -} - -func (ss *SourceSet) Remove(name string) error { - - if len(ss.Items) == 0 { - return newUnknownSourceError(name) - } - - i, _ := ss.IndexOf(name) - if i == -1 { - return newUnknownSourceError(name) - } - - if ss.ActiveSrc == name { - ss.ActiveSrc = "" - } - - if len(ss.Items) == 1 { - ss.Items = ss.Items[0:0] - return nil - } - // - //if i == 0 { - // - //} - - if ss.ActiveSrc == name { - ss.ActiveSrc = "" - } - - pre := ss.Items[:i] - post := ss.Items[i+1:] - - ss.Items = append(pre, post...) - return nil - -} - -func NewSourceSet() *SourceSet { - - ss := &SourceSet{} - //ss.Items = []*Source{} - return ss -} - -func newUnknownSourceError(name string) error { - return util.ErrorfN(1, `unknown data source "%v"`, name) -} diff --git a/libsq/drvr/source_blackbox_test.go b/libsq/drvr/source_blackbox_test.go deleted file mode 100644 index 9cae16db..00000000 --- a/libsq/drvr/source_blackbox_test.go +++ /dev/null @@ -1,146 +0,0 @@ -package drvr_test - -import ( - "testing" - - "github.com/stretchr/testify/require" - - "fmt" - - _ "github.com/neilotoole/sq/test/gotestutil" - - "net/url" - - "github.com/neilotoole/sq/libsq/drvr" - _ "github.com/neilotoole/sq/libsq/drvr/impl" -) - -func init() { - fmt.Println("driver.init() (Test)") -} - -func TestSource_Driver(t *testing.T) { - - src, err := drvr.AddSource("@a1", "mysql://user:pass@localhost:3306/mydb1", "", url.Values{}) - require.Nil(t, err) - require.Equal(t, drvr.TypeMySQL, src.Type) - require.Equal(t, "[@a1] mysql://user:pass@localhost:3306/mydb1", src.String()) - require.Equal(t, "user:pass@localhost:3306/mydb1", src.ConnURI()) - - src, err = drvr.AddSource("@a1", "postgres://pqgotest:password@localhost/pqgotest", "", url.Values{}) - require.Nil(t, err) - require.Equal(t, drvr.TypePostgres, src.Type) - require.Equal(t, "[@a1] postgres://pqgotest:password@localhost/pqgotest", src.String()) - require.Equal(t, "postgres://pqgotest:password@localhost/pqgotest", src.ConnURI()) - -} - -func TestSourceGetTypeFromRef(t *testing.T) { - - items := []struct { - loc string - typ drvr.Type - }{ - {`mysql://root:root@tcp(localhost:33067)/sq_mydb1`, drvr.TypeMySQL}, - {`postgres://sq:sq@localhost/sq_pg1?sslmode=disable`, drvr.TypePostgres}, - {`sqlite3:///Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/sqlite/sqlite_db1`, drvr.TypeSQLite3}, - //{`xlsx:///Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/xlsx/test.xlsx`, typXSLX}, - {`https://s3.amazonaws.com/sq.neilotoole.io/testdata/1.0/xslx/test.xlsx`, drvr.TypeXSLX}, - {`/Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/xlsx/test.xlsx`, drvr.TypeXSLX}, - } - - for _, item := range items { - - typ, err := drvr.GetTypeFromSrcLocation(item.loc) - require.Nil(t, err) - require.Equal(t, item.typ, typ) - } - - //typ, err := getTypeFromRef() - - // A ref can look like: - //NAME DRIVER REF - //my1 mysql mysql://root:root@tcp(localhost:33067)/sq_mydb1 - //pg1 postgres postgres://sq:sq@localhost/sq_pg1?sslmode=disable - //sl1 sqlite3 sqlite3:///Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/sqlite/sqlite_db1 - //excel1 xlsx xlsx:///Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/xlsx/test.xlsx - // - //excel2 xlsx /Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/xlsx/test.xlsx - //excel3 xlsx test.xlsx - //excel4 xlsx https://s3.amazonaws.com/sq.neilotoole.io/testdata/1.0/xslx/test.xlsx - -} - -func TestDataSources(t *testing.T) { - - srcs := drvr.NewSourceSet() - - mydb1, err := drvr.AddSource("@mydb1", "mysql://user:pass@localhost:3306/mydb1", "", url.Values{}) - require.Nil(t, err) - require.NotNil(t, mydb1) - require.Equal(t, drvr.TypeMySQL, mydb1.Type) - - pg1, err := drvr.AddSource("@pg1", "postgres://pqgotest:password@localhost/pqgotest", "", url.Values{}) - require.Nil(t, err) - require.NotNil(t, pg1) - require.Equal(t, drvr.TypePostgres, pg1.Type) - - err = srcs.Add(mydb1) - require.Nil(t, err) - srcs.Add(pg1) - require.Nil(t, err) - - require.Equal(t, 2, len(srcs.Items)) - - src, ok := srcs.Active() - require.Nil(t, src) - require.False(t, ok) - - src, err = srcs.SetActive(mydb1.Handle) - require.Nil(t, err) - require.NotNil(t, src) - src, ok = srcs.Active() - require.NotNil(t, src) - require.True(t, ok) - require.Equal(t, mydb1.Handle, src.Handle) - - src, err = srcs.SetActive(pg1.Handle) - require.Nil(t, err) - require.NotNil(t, src) - src, ok = srcs.Active() - require.NotNil(t, src) - require.True(t, ok) - require.Equal(t, pg1.Handle, src.Handle) - - // Remove an item - err = srcs.Remove(pg1.Handle) - require.Nil(t, err) - - src, err = srcs.Get(pg1.Handle) - require.Nil(t, src) - require.NotNil(t, err) - i, src := srcs.IndexOf(pg1.Handle) - require.Equal(t, -1, i) - require.Equal(t, 1, len(srcs.Items)) - src, ok = srcs.Active() - require.Nil(t, src) - require.False(t, ok) - - // Remove the other item - src, err = srcs.SetActive(mydb1.Handle) - require.Nil(t, err) - require.NotNil(t, src) - err = srcs.Remove(mydb1.Handle) - require.Nil(t, err) - - src, err = srcs.Get(mydb1.Handle) - require.Nil(t, src) - require.Error(t, err) - i, src = srcs.IndexOf(mydb1.Handle) - require.Equal(t, -1, i) - require.Equal(t, 0, len(srcs.Items)) - src, ok = srcs.Active() - require.Nil(t, src) - require.False(t, ok) - -} diff --git a/libsq/drvr/source_whitebox_test.go b/libsq/drvr/source_whitebox_test.go deleted file mode 100644 index 8967d53f..00000000 --- a/libsq/drvr/source_whitebox_test.go +++ /dev/null @@ -1,71 +0,0 @@ -package drvr - -import ( - "fmt" - "testing" - - _ "github.com/neilotoole/sq/test/gotestutil" - - "github.com/stretchr/testify/require" -) - -const TypeMySQL = Type("mysql") -const TypePostgres = Type("postgres") -const TypeSQLite3 = Type("sqlite3") -const TypeXSLX = Type("xlsx") - -func TestCheckHandleValue(t *testing.T) { - - var fails = []struct { - handle string - msg string - }{ - {"", "empty is invalid"}, - {" ", "no whitespace"}, - {"handle", "must start with @"}, - {"@", "needs at least one char"}, - {"1handle", "must start with @"}, - {"@ handle", "no whitespace"}, - {"@handle ", "no whitespace"}, - {"@handle#", "no special chars"}, - {"@1handle", "2nd char must be letter"}, - {"@1", "2nd char must be letter"}, - {"@?handle", "2nd char must be letter"}, - {"@?handle#", "no special chars"}, - {"@ha\nndle", "no newlines"}, - } - - for i, fail := range fails { - require.Error(t, CheckHandleValue(fail.handle), fmt.Sprintf("[%d] %s]", i, fail.msg)) - } - - var passes = []string{ - "@handle", - "@handle1", - "@h1", - "@h_", - "@h__", - "@h__1", - "@h__1__a___", - } - - for i, pass := range passes { - require.Nil(t, CheckHandleValue(pass), fmt.Sprintf("[%d] should pass", i)) - } - -} - -func TestGetDriverTypeFromStdSQLURL(t *testing.T) { - - typ, ok := getDriverTypeFromStdDriverURL("mysql://root:root@tcp(localhost:33067)/sq_mydb1") - require.True(t, ok) - require.Equal(t, typ, TypeMySQL) - - typ, ok = getDriverTypeFromStdDriverURL("postgres://sq:sq@localhost/sq_pg1?sslmode=disable") - require.True(t, ok) - require.Equal(t, typ, TypePostgres) - - typ, ok = getDriverTypeFromStdDriverURL("http://neilotoole.io/sq/test/test1.xlsx") - require.False(t, ok) - require.Equal(t, typ, Type(""), "not a standard driver URL") -} diff --git a/libsq/drvr/sqlh/record.go b/libsq/drvr/sqlh/record.go deleted file mode 100644 index cd26ca2d..00000000 --- a/libsq/drvr/sqlh/record.go +++ /dev/null @@ -1,155 +0,0 @@ -package sqlh - -import ( - "reflect" - - "strconv" - - "fmt" - "strings" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql/driver" - "github.com/neilotoole/sq/libsq/util" -) - -type Record struct { - Values []interface{} - Fields []driver.ColumnType - - // fieldValMap is a mapping of field/alias names to value index - fieldValMap map[string]int -} - -// String returns a string representation of the ResultRow. Note that this method -// is computationally expensive, it should generally only be used for debugging. -func (r *Record) String() string { - - elements := make([]string, len(r.Fields)) - - for i, field := range r.Fields { - - name := strconv.Itoa(i) - - fieldName := field.Name - if field.AliasedName != "" { - if fieldName == "" { - fieldName = field.AliasedName - } else { - fieldName = fieldName + "|" + field.AliasedName - } - } - if fieldName != "" { - name = name + " " + fieldName - } - - if r.Values[i] == nil { - elements[i] = fmt.Sprintf("{%s: nil}", name) - } else { - - valuer, ok := r.Values[i].(driver.Valuer) - if ok { - v, err := valuer.Value() - if err != nil { - lg.Warnf("falling through to default output format: unable to get valuer.Value(): %v", err) - // fall through to default output below - } else { - elements[i] = fmt.Sprintf("{%s: %v}", name, v) - continue - } - } - - elements[i] = fmt.Sprintf("{%s: %s}", name, r.Values[i]) - } - } - - return "[" + strings.Join(elements, ", ") + "]" -} - -// ReflectTypes returns the types of the values. -func (r *Record) ReflectTypes() []reflect.Type { - - types := make([]reflect.Type, len(r.Values)) - - for i, val := range r.Values { - typ := reflect.TypeOf(val) - types[i] = typ - } - return types -} - -// NameIndices returns a map of col name/alias to its index in the Values array. -func (r *Record) NameIndices() map[string]int { - return r.fieldValMap -} - -// NamedValue returns the scanned value for a column (or alias) of the given name, -// unwrapping any sql.Valuer if possible. If errIfNil is true, an error is returned -// if the (unwrapped) value is nil. An error is also returned if there is no such -// named value. -func (r *Record) NamedValue(name string, errIfNil bool) (interface{}, error) { - - index, ok := r.fieldValMap[name] - if !ok { - return nil, util.Errorf("named value %q not found", name) - } - - valuer, ok := r.Values[index].(driver.Valuer) - if ok { - val, err := valuer.Value() - if err != nil { - return nil, util.WrapError(err) - } - - if errIfNil && val == nil { - return nil, util.Errorf("named value %q is nil", name) - } - - return val, nil - } - - if errIfNil && r.Values[index] == nil { - return nil, util.Errorf("named value %q is nil", name) - } - - return r.Values[index], nil -} - -func NewRecord(fields []driver.ColumnType) (*Record, error) { - - r := &Record{} - r.fieldValMap = make(map[string]int) - - dataTypes, err := DataTypeFromCols(fields) - if err != nil { - return nil, err - } - - // TODO: ScanDests should be a function on the driver? - // TODO: Or it will come from sql.ColumnType() eventually - dest := ScanDests(dataTypes) - - for i, field := range fields { - - if field.Name == "" { - lg.Warnf("field [%d] has empty name") - } else { - r.fieldValMap[field.Name] = i - } - - if field.AliasedName != "" { - _, ok := r.fieldValMap[field.AliasedName] - if ok { - lg.Warnf("alias %q for field %q already exists for val index [%d]", field.AliasedName, field.Name, i) - } - - r.fieldValMap[field.AliasedName] = i - } - } - - r.Values = dest - r.Fields = fields - - return r, nil - -} diff --git a/libsq/drvr/sqlh/sqlh.go b/libsq/drvr/sqlh/sqlh.go deleted file mode 100644 index e80baa87..00000000 --- a/libsq/drvr/sqlh/sqlh.go +++ /dev/null @@ -1,220 +0,0 @@ -// Package sqlh "SQL Helper" provides functionality for working with stdlib sql package. -package sqlh - -import ( - "fmt" - - "time" - - "errors" - - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq-driver/hackery/database/sql/driver" - "github.com/neilotoole/sq/libsq/drvr/datatype" -) - -func ScanDest(dt datatype.Type) interface{} { - - switch dt { - case datatype.Text: - return &sql.NullString{} - case datatype.Int: - return &sql.NullInt64{} - case datatype.Float: - return &sql.NullFloat64{} - case datatype.Bool: - return &sql.NullBool{} - case datatype.DateTime: - // TODO: for now we return a NullString, we'll get to NullTime later - return &sql.NullString{} - //return &NullTime{} - case datatype.Bytes: - return &sql.NullString{} - //return NullBytes{} - case datatype.Null: - return &sql.NullString{} - //return &NullNull{} - } - - return &sql.NullString{} - //panic(fmt.Sprintf("unknown data type %q", dt)) -} - -func ScanDests(dts []datatype.Type) []interface{} { - dests := make([]interface{}, len(dts)) - - for i := range dests { - dests[i] = ScanDest(dts[i]) - } - - return dests -} - -func DataTypeFromCols(colTypes []driver.ColumnType) ([]datatype.Type, error) { - - dts := make([]datatype.Type, len(colTypes)) - - for i := range colTypes { - - f := colTypes[i].FieldType - switch f { - case driver.FieldTypeDecimal, driver.FieldTypeNewDecimal: - // decimal - dts[i] = datatype.Decimal - case driver.FieldTypeBit, - driver.FieldTypeTiny, - driver.FieldTypeShort, - driver.FieldTypeLong, - driver.FieldTypeLongLong, - driver.FieldTypeInt24: - // int - dts[i] = datatype.Int - case driver.FieldTypeFloat, driver.FieldTypeDouble: - // float - dts[i] = datatype.Float - case driver.FieldTypeNULL: - // null - dts[i] = datatype.Null - case driver.FieldTypeTimestamp, - driver.FieldTypeDate, - driver.FieldTypeTime, - driver.FieldTypeDateTime, - driver.FieldTypeYear, - driver.FieldTypeNewDate: - // datetime - dts[i] = datatype.DateTime - case driver.FieldTypeTinyBLOB, - driver.FieldTypeMediumBLOB, - driver.FieldTypeLongBLOB, - driver.FieldTypeBLOB: - dts[i] = datatype.Bytes - case driver.FieldTypeVarChar, - driver.FieldTypeVarString, - driver.FieldTypeString, - driver.FieldTypeEnum, - driver.FieldTypeSet: - dts[i] = datatype.Text - - default: - // default to text - dts[i] = datatype.Text - } - - } - - return dts, nil -} - -// REFERENCE (from sql.driver) - -// Value is a value that drivers must be able to handle. -// It is either nil or an instance of one of these types: -// -// int64 -// float64 -// bool -// []byte -// string [*] everywhere except from Rows.Next. -// time.Time - -// TODO: probably don't need these NullXYZ types, they were here more to see -// if it made using the sql API easier, but prob not needed - -// NullTime represents a time.Time that may be null. NullTime implements the -// sql.Scanner interface so it can be used as a scan destination, similar to -// sql.NullString. -type NullTime struct { - Time time.Time - Valid bool // Valid is true if Time is not NULL -} - -// Scan implements the Scanner interface. -func (n *NullTime) Scan(value interface{}) error { - fmt.Printf("nulltime: %T: %v\n", value, value) - n.Time, n.Valid = value.(time.Time) - return nil -} - -// Value implements the driver Valuer interface. -func (n NullTime) Value() (driver.Value, error) { - if !n.Valid { - return nil, nil - } - return n.Time, nil -} - -// NullBytes represents a []byte that may be null. NullBytes implements the -// sql.Scanner interface so it can be used as a scan destination, similar to -// sql.NullString. -type NullBytes struct { - Bytes []byte - Valid bool // Valid is true if Time is not NULL -} - -// Scan implements the Scanner interface. -func (n *NullBytes) Scan(value interface{}) error { - - if value == nil { - n.Valid = false - return nil - } - - n.Bytes, n.Valid = value.([]byte) - if !n.Valid { - return fmt.Errorf("expected []byte but got %T", value) - } - return nil -} - -// Value implements the driver Valuer interface. -func (n NullBytes) Value() (driver.Value, error) { - if !n.Valid { - return nil, nil - } - return n.Bytes, nil -} - -// NullNull represents an always-null value. NullNull implements the -// sql.Scanner interface so it can be used as a scan destination, similar to -// sql.NullString. -type NullNull struct { - Valid bool // Valid is true if Time is not NULL -} - -// Scan implements the Scanner interface. -func (nn *NullNull) Scan(value interface{}) error { - if value != nil { - return errors.New("value is not null") - } - return nil -} - -// Value implements the driver Valuer interface. -func (nn NullNull) Value() (driver.Value, error) { - return nil, nil -} - -// ExtractValue "unwraps" a field returned from the sql Rows.Scan() method. If -// val implements driver.Valuer, the underlying Value() is returned. Otherwise, -// val is returned. -func ExtractValue(val interface{}) interface{} { - - if valuer, ok := val.(driver.Valuer); ok { - val, _ = valuer.Value() - } - - return val -} - -// ExtractValues is a convenience function that returns an array for which each -// element is the output of invoking ExtractValue() on the corresponding input element. -func ExtractValues(vals []interface{}) []interface{} { - // TODO: do we need this? Do we need to create a new slice, or should - // we just operate on the existing slice? - vs := make([]interface{}, len(vals)) - - for i := range vals { - vs[i] = ExtractValue(vals[i]) - } - return vs -} diff --git a/libsq/drvr/sqlh/sqlh_test.go b/libsq/drvr/sqlh/sqlh_test.go deleted file mode 100644 index ddf1b5e6..00000000 --- a/libsq/drvr/sqlh/sqlh_test.go +++ /dev/null @@ -1,344 +0,0 @@ -package sqlh - -import ( - "testing" - - "os" - - "fmt" - - "time" - - "strings" - - "github.com/neilotoole/sq-driver/hackery/database/sql" - _ "github.com/neilotoole/sq-driver/hackery/drivers/mysql" - "github.com/stretchr/testify/require" -) - -func TestNullBytes(t *testing.T) { - - var dest sql.Scanner - var data []byte - - nb := NullBytes{} - dest = &nb - data = []byte("hello") - - err := dest.Scan(data) - require.Nil(t, err) - require.True(t, nb.Valid) - require.Equal(t, data, nb.Bytes) - v, err := nb.Value() - require.Nil(t, err) - require.Equal(t, data, v) - - // try with nil - nb = NullBytes{} - dest = &nb - - err = dest.Scan(nil) - require.Nil(t, err) - require.False(t, nb.Valid) - v, err = nb.Value() - require.Nil(t, err) - require.Nil(t, v) - //b, ok := v.([]byte) - //require.True(t, ok) - //require.Zero(t, b) - -} - -const mysqlDSEnv = `SQ_TEST_DS_MYSQL` - -func init() { - os.Setenv(mysqlDSEnv, `root:root@tcp(localhost:33067)/sq_mydb1`) -} - -func TestIntegrationMySQL(t *testing.T) { - - t.Skip("need to fix ds env issue") - - ds, ok := os.LookupEnv(mysqlDSEnv) - if !ok { - t.Skipf("%s not present", mysqlDSEnv) - } - - t.Logf("using data source: %s", ds) - - db, err := sql.Open("mysql", ds) - require.Nil(t, err) - require.NotNil(t, db) - defer func() { - require.Nil(t, db.Close()) - }() - - ts := time.Now() - tblName := fmt.Sprintf("tbl_sqldatatype_%d", ts.Unix()) - createSQL := mysqlCreateSQL(tblName) - t.Logf("creating table: %s", createSQL) - _, err = db.Exec(createSQL) - require.Nil(t, err) - - dropSQL := fmt.Sprintf(mysqlDropStmtTpl, tblName) - defer func() { - t.Logf("dropping test table: %s", dropSQL) - _, err := db.Exec(dropSQL) - require.Nil(t, err) - }() - - numCols := len(mysqlColNames) - - insertSQL := fmt.Sprintf("INSERT INTO %s VALUES (%s)", tblName, placeholders(numCols)) - t.Logf("insert stmt: %s", insertSQL) - insertStmt, err := db.Prepare(insertSQL) - require.Nil(t, err) - - testVals := mysqlTestVals() - - for _, vals := range testVals { - res, err := insertStmt.Exec(vals...) - require.Nil(t, err) - affected, err := res.RowsAffected() - require.Nil(t, err) - require.Equal(t, int64(1), affected) - } - - selectSQL := fmt.Sprintf("SELECT * FROM %s", tblName) - t.Logf("SELECT stmt: %s", selectSQL) - rows, err := db.Query(selectSQL) - require.Nil(t, err) - require.NotNil(t, rows) - - defer func() { - require.Nil(t, rows.Close()) - }() - - rCols, err := rows.Columns() - require.Nil(t, err) - require.Len(t, rCols, numCols) - - colTypes, err := rows.ColumnTypes() - require.Nil(t, err) - require.Len(t, colTypes, numCols) - - dataTypes, err := DataTypeFromCols(colTypes) - require.Nil(t, err) - require.Len(t, dataTypes, numCols) - - for ri := 0; rows.Next(); ri++ { - t.Logf("*** scanning row %d ***", ri) - dests := ScanDests(dataTypes) - err := rows.Scan(dests...) - require.Nil(t, err) - for ci, val := range dests { - v := ExtractValue(val) - t.Logf("[%d:%d:%s] %T: %v", ri, ci, mysqlColNames[ci], v, v) - } - } -} - -func mysqlCreateSQL(tblName string) string { - vars := make([]interface{}, 1+len(mysqlColNames)) - vars[0] = tblName - for i, col := range mysqlColNames { - vars[i+1] = col - } - - createSQL := fmt.Sprintf(mysqlCreateStmtTpl, vars...) - return createSQL - -} - -func mysqlTestVals() [][]interface{} { - ts := time.Now() - mysqlTestVals := [][]interface{}{ - { - int64(1), - int64(1), - nil, - true, - nil, - 11, - nil, - float64(11.11), - nil, - ts, - nil, - ts, - nil, - ts, - nil, - ts, - nil, - "2016", - nil, - "hello world 1", - nil, - []byte("i am binary data 1"), - nil, - "i am very long text 1", - nil, - }, - { - int64(2), - int64(2), - nil, - true, - nil, - 22, - nil, - float64(22.22), - nil, - ts, - nil, - ts, - nil, - ts, - nil, - ts, - nil, - "2026", - nil, - "hello world 2", - nil, - []byte("i am binary data 2"), - nil, - "i am very long text 2", - nil, - }, - } - - return mysqlTestVals -} - -// placeholders returns a placeholder string with n elements, e.g. "?, ?, ?" -func placeholders(n int) string { - - p := make([]string, n) - - for i := range p { - p[i] = "?" - } - - return strings.Join(p, ", ") -} - -var mysqlColNames = []string{ - "col_id", - "col_int", - "col_int_n", - "col_bool", - "col_bool_n", - "col_decimal", - "col_decimal_n", - "col_float", - "col_float_n", - "col_timestamp", - "col_timestamp_n", - "col_date", - "col_date_n", - "col_time", - "col_time_n", - "col_datetime", - "col_datetime_n", - "col_year", - "col_year_n", - "col_varchar", - "col_varchar_n", - "col_blob", - "col_blob_n", - "col_longtext", - "col_longtext_n", -} - -const mysqlDropStmtTpl = `DROP TABLE IF EXISTS %s` - -const mysqlCreateStmtTpl = `CREATE TABLE %s -( - %s INT(11) PRIMARY KEY NOT NULL AUTO_INCREMENT, - %s INT(11) NOT NULL, - %s INT(11), - %s TINYINT(1) NOT NULL, - %s TINYINT(1), - %s DECIMAL(10) NOT NULL, - %s DECIMAL(10), - %s FLOAT NOT NULL, - %s FLOAT, - %s TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, - %s TIMESTAMP NULL, - %s DATE NOT NULL, - %s DATE, - %s TIME NOT NULL, - %s TIME, - %s DATETIME NOT NULL, - %s DATETIME, - %s YEAR(4) NOT NULL, - %s YEAR(4), - %s VARCHAR(255) NOT NULL, - %s VARCHAR(255), - %s BLOB NOT NULL, - %s BLOB, - %s LONGTEXT NOT NULL, - %s LONGTEXT -)` - -/* - - testVals := [][]interface{}{ - { - 1, // col_id - 1, // col_int - nil, // col_int_n - true, // col_bool - nil, // col_bool_n - 11, // col_decimal - nil, // col_decimal_n - 11.11, // col_float - nil, // col_float_n - ts, // col_timestamp - nil, // col_timestamp_n - ts, // col_date - nil, // col_date_n - ts, // col_time - nil, // col_time_n - ts, // col_datetime - nil, // col_datetime_n, - "2016", // col_year - nil, // col_year_n - "hello world 1", // col_varchar - nil, // col_varchar_n - []byte("i am binary data 1"), // col_blob - nil, // col_blob_n - "i am very long text 1", // col_longtext - nil, // col_longtext_n - }, - { - 2, // col_id - 2, // col_int - nil, // col_int_n - true, // col_bool - nil, // col_bool_n - 22, // col_decimal - nil, // col_decimal_n - 22.22, // col_float - nil, // col_float_n - ts, // col_timestamp - nil, // col_timestamp_n - ts, // col_date - nil, // col_date_n - ts, // col_time - nil, // col_time_n - ts, // col_datetime - nil, // col_datetime_n, - "2026", // col_year - nil, // col_year_n - "hello world 2", // col_varchar - nil, // col_varchar_n - []byte("i am binary data 2"), // col_blob - nil, // col_blob_n - "i am very long text 2", // col_longtext - nil, // col_longtext_n - }, - } -*/ diff --git a/libsq/engine.go b/libsq/engine.go new file mode 100644 index 00000000..9f34483e --- /dev/null +++ b/libsq/engine.go @@ -0,0 +1,351 @@ +package libsq + +import ( + "context" + "fmt" + + "github.com/neilotoole/lg" + "golang.org/x/sync/errgroup" + + "github.com/neilotoole/sq/libsq/ast" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// engine executes a queryModel and writes to a RecordWriter. +type engine struct { + log lg.Log + srcs *source.Set + dbOpener driver.DatabaseOpener + joinDBOpener driver.JoinDatabaseOpener +} + +// execute executes the queryModel. +func (ng *engine) execute(ctx context.Context, qm *queryModel, recw RecordWriter) error { + selectable := qm.Selectable + ng.log.Debugf("using selectable: %T: %s", selectable, selectable) + + var targetDB driver.Database + var fromClause string + var err error + + switch selectable := selectable.(type) { + + case *ast.TblSelector: + fromClause, targetDB, err = ng.buildTableFromClause(ctx, selectable) + if err != nil { + return err + } + case *ast.Join: + fromClause, targetDB, err = ng.buildJoinFromClause(ctx, selectable) + if err != nil { + return err + } + default: + return errz.Errorf("unknown selectable %T: %q", selectable, selectable) + } + + fragBuilder, qb := targetDB.SQLDriver().SQLBuilder() + + selectColsClause, err := fragBuilder.SelectCols(qm.Cols) + if err != nil { + return err + } + + qb.SetSelect(selectColsClause) + qb.SetFrom(fromClause) + + var rangeClause string + + if qm.Range != nil { + rangeClause, err = fragBuilder.Range(qm.Range) + if err != nil { + return err + } + qb.SetRange(rangeClause) + } + + if qm.Where != nil { + ng.log.Debugf("where is not nil") + whereClause, err := fragBuilder.Where(qm.Where) + if err != nil { + return err + } + + qb.SetWhere(whereClause) + } else { + ng.log.Debugf("where is nil") + } + + sqlQuery, err := qb.SQL() + if err != nil { + return err + } + + ng.log.Debugf("SQL BUILDER [%s]: %s", targetDB.Source().Handle, sqlQuery) + err = QuerySQL(ctx, ng.log, targetDB, recw, sqlQuery) + return err +} + +func (ng *engine) buildTableFromClause(ctx context.Context, tblSel *ast.TblSelector) (fromClause string, fromConn driver.Database, err error) { + src, err := ng.srcs.Get(tblSel.DSName) + if err != nil { + return "", nil, err + } + + fromConn, err = ng.dbOpener.Open(ctx, src) + if err != nil { + return "", nil, err + } + + fragBuilder, _ := fromConn.SQLDriver().SQLBuilder() + fromClause, err = fragBuilder.FromTable(tblSel) + if err != nil { + return "", nil, err + } + + return fromClause, fromConn, nil +} + +func (ng *engine) buildJoinFromClause(ctx context.Context, fnJoin *ast.Join) (fromClause string, fromConn driver.Database, err error) { + if fnJoin.LeftTbl() == nil || fnJoin.LeftTbl().SelValue() == "" { + return "", nil, errz.Errorf("JOIN is missing left table reference") + } + + if fnJoin.RightTbl() == nil || fnJoin.RightTbl().SelValue() == "" { + return "", nil, errz.Errorf("JOIN is missing right table reference") + } + + if fnJoin.LeftTbl().DSName != fnJoin.RightTbl().DSName { + return ng.crossSourceJoin(ctx, fnJoin) + } + + return ng.singleSourceJoin(ctx, fnJoin) +} + +func (ng *engine) singleSourceJoin(ctx context.Context, fnJoin *ast.Join) (fromClause string, fromDB driver.Database, err error) { + src, err := ng.srcs.Get(fnJoin.LeftTbl().DSName) + if err != nil { + return "", nil, err + } + + fromDB, err = ng.dbOpener.Open(ctx, src) + if err != nil { + return "", nil, err + } + + fragBuilder, _ := fromDB.SQLDriver().SQLBuilder() + fromClause, err = fragBuilder.Join(fnJoin) + if err != nil { + return "", nil, err + } + + return fromClause, fromDB, nil +} + +// crossSourceJoin returns a FROM clause that forms part of +// the SQL SELECT statement against fromDB. +func (ng *engine) crossSourceJoin(ctx context.Context, fnJoin *ast.Join) (fromClause string, fromDB driver.Database, err error) { + leftTblName, rightTblName := fnJoin.LeftTbl().SelValue(), fnJoin.RightTbl().SelValue() + if leftTblName == rightTblName { + return "", nil, errz.Errorf("JOIN tables must have distinct names (or use aliases): duplicate tbl name %q", fnJoin.LeftTbl().SelValue()) + } + + ng.log.Debugf("Starting cross-source JOIN...") + + var joinCopyTasks []*joinCopyTask + + leftSrc, err := ng.srcs.Get(fnJoin.LeftTbl().DSName) + if err != nil { + return "", nil, err + } + leftDB, err := ng.dbOpener.Open(ctx, leftSrc) + if err != nil { + return "", nil, err + } + joinCopyTasks = append(joinCopyTasks, &joinCopyTask{ + fromDB: leftDB, + fromTblName: leftTblName, + }) + + rightSrc, err := ng.srcs.Get(fnJoin.RightTbl().DSName) + if err != nil { + return "", nil, err + } + rightDB, err := ng.dbOpener.Open(ctx, rightSrc) + if err != nil { + return "", nil, err + } + joinCopyTasks = append(joinCopyTasks, &joinCopyTask{ + fromDB: rightDB, + fromTblName: rightTblName, + }) + + // Open the join db + joinDB, err := ng.joinDBOpener.OpenJoin(ctx, leftSrc, rightSrc) + if err != nil { + return "", nil, err + } + err = execJoinCopyTasks(ctx, ng.log, joinDB, joinCopyTasks) + if err != nil { + return "", nil, err + } + + joinDBFragBuilder, _ := joinDB.SQLDriver().SQLBuilder() + fromClause, err = joinDBFragBuilder.Join(fnJoin) + if err != nil { + return "", nil, err + } + + return fromClause, joinDB, nil +} + +// joinCopyTask is a specification of a table data copy task to be performed +// for a cross-source join. That is, the data in fromDB.fromTblName will +// be copied to a similar target table in the scratch DB. If colNames is +// empty, all cols in fromTblName are to be copied. +type joinCopyTask struct { + fromDB driver.Database + fromTblName string + colNames []string +} + +// execJoinCopyTasks executes tasks, returning any error. +func execJoinCopyTasks(ctx context.Context, log lg.Log, joinDB driver.Database, tasks []*joinCopyTask) error { + g, gCtx := errgroup.WithContext(ctx) + for _, task := range tasks { + task := task + + g.Go(func() error { + return execCopyTable(gCtx, log, task.fromDB, task.fromTblName, joinDB, task.fromTblName) + }) + } + + return g.Wait() +} + +// execCopyTable performs the work of copying fromDB.fromTblName to destDB.destTblName. +func execCopyTable(ctx context.Context, log lg.Log, fromDB driver.Database, fromTblName string, destDB driver.Database, destTblName string) error { + inserter := NewDBWriter(log, destDB, destTblName, DefaultRecordChSize) + + // the preInsertHook creates the dest table to copy into + inserter.preWriteHook = func(ctx context.Context, originRecMeta sqlz.RecordMeta, tx sqlz.DB) error { + destColNames := originRecMeta.Names() + destColKinds := originRecMeta.Kinds() + destTblDef := sqlmodel.NewTableDef(destTblName, destColNames, destColKinds) + + err := destDB.SQLDriver().CreateTable(ctx, tx, destTblDef) + if err != nil { + return errz.Wrapf(err, "failed to create dest table %s.%s", destDB.Source().Handle, destTblName) + } + + return nil + } + + query := "SELECT * FROM " + fromTblName + err := QuerySQL(ctx, log, fromDB, inserter, query) + if err != nil { + return errz.Wrapf(err, "insert %s.%s failed", destDB.Source().Handle, destTblName) + } + + affected, err := inserter.Wait() // Wait for the writer to finish processing + if err != nil { + return errz.Wrapf(err, "insert %s.%s failed", destDB.Source().Handle, destTblName) + } + log.Debugf("Copied %d rows to %s.%s", affected, destDB.Source().Handle, destTblName) + return nil +} + +// queryModel is a model of a SLQ query built from the AST. +type queryModel struct { + AST *ast.AST + Selectable ast.Selectable + Cols []ast.ColExpr + Range *ast.RowRange + Where *ast.Where +} + +func (qm *queryModel) String() string { + return fmt.Sprintf("%v | %v | %v", qm.Selectable, qm.Cols, qm.Range) +} + +// buildQueryModel creates a queryModel instance from the AST. +func buildQueryModel(log lg.Log, a *ast.AST) (*queryModel, error) { + if len(a.Segments()) == 0 { + return nil, errz.Errorf("query model error: query does not have enough segments") + } + + insp := ast.NewInspector(log, a) + selectableSeg, err := insp.FindFinalSelectableSegment() + if err != nil { + return nil, err + } + + if len(selectableSeg.Children()) != 1 { + return nil, errz.Errorf("the final selectable segment must have exactly one selectable element, but found %d elements", len(selectableSeg.Children())) + } + + selectable, ok := selectableSeg.Children()[0].(ast.Selectable) + if !ok { + return nil, errz.Errorf("the final selectable segment must have exactly one selectable element, but found element %T(%q)", selectableSeg.Children()[0], selectableSeg.Children()[0].Text()) + } + + qm := &queryModel{AST: a, Selectable: selectable} + log.Debugf("found selectable segment: %q", selectableSeg.Text()) + + // Look for range + for seg := selectableSeg.Next(); seg != nil; seg = seg.Next() { + // Check if the first element of the segment is a row range, if not, just skip + if rr, ok := seg.Children()[0].(*ast.RowRange); ok { + if len(seg.Children()) != 1 { + return nil, errz.Errorf("segment [%d] with row range must have exactly one element, but found %d: %q", seg.SegIndex(), len(seg.Children()), seg.Text()) + } + + if qm.Range != nil { + return nil, errz.Errorf("only one row range permitted, but found %q and %q", qm.Range.Text(), rr.Text()) + } + + log.Debugf("found row range: %q", rr.Text()) + qm.Range = rr + } + } + + seg, err := insp.FindColExprSegment() + if err != nil { + return nil, err + } + + if seg == nil { + log.Debugf("did not find a col expr segment") + } else { + log.Debugf("found col expr segment: %s", seg.Text()) + elems := seg.Children() + colExprs := make([]ast.ColExpr, len(elems)) + for i, elem := range elems { + colExpr, ok := elem.(ast.ColExpr) + if !ok { + return nil, errz.Errorf("expected element in segment [%d] to be col expr, but was %T", i, elem) + } + + colExprs[i] = colExpr + } + + qm.Cols = colExprs + } + + whereClauses, err := insp.FindWhereClauses() + if err != nil { + return nil, err + } + + if len(whereClauses) > 1 { + return nil, errz.Errorf("currently only one WHERE clause is supported, but found %d", len(whereClauses)) + } else if len(whereClauses) == 1 { + qm.Where = whereClauses[0] + } + + return qm, nil +} diff --git a/libsq/engine/db.go b/libsq/engine/db.go deleted file mode 100644 index 1c320f48..00000000 --- a/libsq/engine/db.go +++ /dev/null @@ -1,86 +0,0 @@ -package engine - -import ( - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/drvr" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/neilotoole/sq/libsq/util" -) - -// Database encapsulates a SQL database. -type Database struct { - src *drvr.Source - drv drvr.Driver -} - -// NewDatabase returns a new Database instance for the provided data source. -func NewDatabase(src *drvr.Source) (*Database, error) { - drv, err := drvr.For(src) - if err != nil { - return nil, err - } - return &Database{src: src, drv: drv}, nil -} - -// Query executes the SQL query against the database, and writes the resutls to writer. -func (d *Database) Query(sql string, writer RecordWriter) error { - lg.Debugf("attempting to open SQL connection for datasource %q with query: %s", d.src, sql) - db, err := d.drv.Open(d.src) - if err != nil { - return err - } - defer db.Close() - - err = d.exec(db, sql, writer) - if err != nil { - return err - } - return nil -} - -// Ping pings the database, verifying that the connection is healthy. -func (d *Database) Ping() error { - lg.Debugf("attempting to open SQL connection for datasource %q for ping", d.src) - return d.drv.Ping(d.src) -} - -func (d *Database) exec(db *sql.DB, query string, writer RecordWriter) error { - - rows, err := db.Query(query) - if err != nil { - return util.WrapError(err) - } - defer rows.Close() - - colTypes, err := rows.ColumnTypes() - if err != nil { - return util.WrapError(err) - } - - records := []*sqlh.Record{} - - for rows.Next() { - rr, err := sqlh.NewRecord(colTypes) - if err != nil { - return err - } - - err = rows.Scan(rr.Values...) - if err != nil { - return util.WrapError(err) - } - - records = append(records, rr) - } - if rows.Err() != nil { - return util.WrapError(rows.Err()) - } - - err = writer.Records(records) - if err != nil { - return err - } - return writer.Close() -} diff --git a/libsq/engine/engine.go b/libsq/engine/engine.go deleted file mode 100644 index 08c0ad16..00000000 --- a/libsq/engine/engine.go +++ /dev/null @@ -1,337 +0,0 @@ -package engine - -import ( - "fmt" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq-driver/hackery/database/sql" - "github.com/neilotoole/sq/libsq/ast" - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/drvr/scratch" - "github.com/neilotoole/sq/libsq/drvr/sqlh" - "github.com/neilotoole/sq/libsq/shutdown" - "github.com/neilotoole/sq/libsq/util" -) - -// RecordWriter outputs query results. The caller must invoke Close() when -// all records are written. -type RecordWriter interface { - Records(records []*sqlh.Record) error - Close() error -} - -// BuildPlan encapsulates construction of a Plan from SLQ input. -func BuildPlan(srcs *drvr.SourceSet, slq string) (*Plan, error) { - ptree, err := ast.NewParser().Parse(slq) - if err != nil { - return nil, err - } - - ast, err := ast.NewBuilder(srcs).Build(ptree) - if err != nil { - return nil, err - } - plan, err := NewPlanBuilder(srcs).Build(ast) - return plan, err -} - -// Error is an error generated within the engine package. -type Error struct { - msg string -} - -func (e *Error) Error() string { - return e.msg -} - -func errorf(format string, v ...interface{}) *Error { - err := &Error{msg: fmt.Sprintf(format, v...)} - lg.Depth(1).Warnf("error created: %s", err.msg) - return err -} - -// Engine is the engine for executing a sq Plan. -type Engine struct { - srcs *drvr.SourceSet - plan *Plan - writer RecordWriter -} - -// New returns a new execution engine. -func New(srcs drvr.SourceSet, plan *Plan, writer RecordWriter) *Engine { - xng := &Engine{srcs: &srcs, plan: plan, writer: writer} - return xng -} - -// Execute begins execution of the plan. -func (en *Engine) Execute() error { - selectable := en.plan.Selectable - lg.Debugf("using selectable: %T: %s", selectable, selectable) - - var src *drvr.Source - var fromClause string - var err error - - switch selectable := selectable.(type) { - - case *ast.TblSelector: - src, fromClause, err = en.handleTblSelectable(selectable) - case *ast.Join: - src, fromClause, err = en.handleJoinSelectable(selectable) - default: - return errorf("unknown selectable %T: %q", selectable, selectable) - } - - if err != nil { - return err - } - - rndr, err := RendererFor(src.Type) - if err != nil { - return err - } - - selectColsClause, err := rndr.SelectCols(en.plan.Cols) - if err != nil { - return err - } - - var rangeClause string - - if en.plan.Range != nil { - rangeClause, err = rndr.Range(en.plan.Range) - if err != nil { - return err - } - } - - sql := selectColsClause + " " + fromClause - - if rangeClause != "" { - sql = sql + " " + rangeClause - } - - lg.Debugf("SQL: %s", sql) - - db, err := NewDatabase(src) - if err != nil { - return err - } - err = db.Query(sql, en.writer) - return err - -} - -func (en *Engine) handleTblSelectable(tblSel *ast.TblSelector) (*drvr.Source, string, error) { - - src, err := en.srcs.Get(tblSel.DSName) - if err != nil { - return nil, "", err - } - - rndr, err := RendererFor(src.Type) - if err != nil { - return nil, "", err - } - - fragment, err := rndr.FromTable(tblSel) - if err != nil { - return nil, "", err - } - - return src, fragment, nil -} - -func (en *Engine) handleJoinSelectable(fnJoin *ast.Join) (*drvr.Source, string, error) { - - if fnJoin.LeftTbl() == nil || fnJoin.LeftTbl().SelValue() == "" { - return nil, "", errorf("JOIN is missing left table reference") - } - - if fnJoin.RightTbl() == nil || fnJoin.RightTbl().SelValue() == "" { - return nil, "", errorf("JOIN is missing right table reference") - } - - if fnJoin.LeftTbl().DSName != fnJoin.RightTbl().DSName { - return en.handleCrossDatasourceJoin(fnJoin) - } - - src, err := en.srcs.Get(fnJoin.LeftTbl().DSName) - if err != nil { - return nil, "", err - } - - rndr, err := RendererFor(src.Type) - if err != nil { - return nil, "", err - } - - fragment, err := rndr.Join(fnJoin) - if err != nil { - return nil, "", err - } - - return src, fragment, nil -} - -func (en *Engine) handleCrossDatasourceJoin(fnJoin *ast.Join) (*drvr.Source, string, error) { - if fnJoin.LeftTbl().SelValue() == fnJoin.RightTbl().SelValue() { - return nil, "", errorf("JOIN tables must have distinct names (use aliases): duplicate tbl name %q", fnJoin.LeftTbl().SelValue()) - } - - // This is a highly naive strategy (needs to be optimized, greatly!) - // currently we just copy both tables to the scratch database - - // let's open the scratch db - scratchSrc, scratchDB, cleanup, err := scratch.OpenNew() - shutdown.Add(cleanup) - if err != nil { - return nil, "", err - } - - scratchRndr, err := RendererFor(scratch.Type()) - if err != nil { - return nil, "", err - } - - // TODO: parallelize these imports - leftSrc, _, _, err := en.importJoinTbl(scratchDB, scratchRndr, fnJoin.LeftTbl()) - if err != nil { - return nil, "", err - } - rightSrc, _, _, err := en.importJoinTbl(scratchDB, scratchRndr, fnJoin.RightTbl()) - if err != nil { - return nil, "", err - } - - lg.Debugf("import succeeded for left source: %v", leftSrc) - lg.Debugf("import succeeded for right source: %v", rightSrc) - - sqlFragment, err := scratchRndr.Join(fnJoin) - if err != nil { - return nil, "", err - } - - return scratchSrc, sqlFragment, nil -} - -func (en *Engine) importJoinTbl(scratchDB *sql.DB, scratchRndr Renderer, tblSel *ast.TblSelector) (*drvr.Source, int64, string, error) { - - returnErr := func(err error) (*drvr.Source, int64, string, error) { - return nil, -1, "", err - } - - src, err := en.srcs.Get(tblSel.DSName) - if err != nil { - return returnErr(err) - } - - rndr, err := RendererFor(src.Type) - if err != nil { - return returnErr(err) - } - - queryAll, err := rndr.SelectAll(tblSel) - if err != nil { - return returnErr(err) - } - - queryDB, queryRows, err := en.execQuery(src, queryAll) - if err != nil { - return returnErr(err) - } - defer queryRows.Close() - defer queryDB.Close() - - colNames, err := queryRows.Columns() - if err != nil { - return returnErr(err) - } - - fields, err := queryRows.ColumnTypes() - if err != nil { - return returnErr(err) - } - - rr, err := sqlh.NewRecord(fields) - if err != nil { - return returnErr(err) - } - - lg.Debugf("table types: %v", rr.ReflectTypes()) - - scratchTblCreateStmt, err := scratchRndr.CreateTable(tblSel.TblName, colNames, rr.ReflectTypes()) - if err != nil { - return returnErr(err) - } - - lg.Debugf("table create stmt: %s", scratchTblCreateStmt) - _, err = scratchDB.Exec(scratchTblCreateStmt) - if err != nil { - return returnErr(util.WrapError(err)) - } - - lg.Debugf("scratch DB table created: %s", tblSel.TblName) - - scratchInsertStmtTpl, err := scratchRndr.CreateInsertStmt(tblSel.TblName, colNames) - if err != nil { - return returnErr(err) - } - - lg.Debugf("using insert tpl: %s", scratchInsertStmtTpl) - - rowsAffected := int64(0) - for queryRows.Next() { - rr, err := sqlh.NewRecord(fields) - if err != nil { - return returnErr(err) - } - - err = queryRows.Scan(rr.Values...) - if err != nil { - return returnErr(err) - } - - result, err := scratchDB.Exec(scratchInsertStmtTpl, rr.Values...) - if err != nil { - return returnErr(err) - } - - //lastInsertID, err := result.LastInsertId() - //if err != nil { - // return returnErr(err) - //} - - ra, err := result.RowsAffected() - if err != nil { - return returnErr(err) - } - - rowsAffected = rowsAffected + ra - } - - return src, rowsAffected, tblSel.TblName, nil -} - -// Execute the query against the source. The caller is responsible for invoking -// Close() on the returned DB and Rows. -func (en *Engine) execQuery(src *drvr.Source, query string) (*sql.DB, *sql.Rows, error) { - drv, err := drvr.For(src) - if err != nil { - return nil, nil, err - } - - lg.Debugf("attempting to open SQL connection for datasource %q with query: %q", src, query) - db, err := drv.Open(src) - if err != nil { - return nil, nil, err - } - - rows, err := db.Query(query) - if err != nil { - return nil, nil, err - } - - return db, rows, nil - -} diff --git a/libsq/engine/plan.go b/libsq/engine/plan.go deleted file mode 100644 index 5bf0e5a2..00000000 --- a/libsq/engine/plan.go +++ /dev/null @@ -1,117 +0,0 @@ -package engine - -import ( - "fmt" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/ast" - "github.com/neilotoole/sq/libsq/drvr" -) - -// Plan models a sq execution plan. -// At this time Plan effectively models just queries, but in future it will also model -// operations such as copy/inserts etc. -type Plan struct { - AST *ast.AST - Selectable ast.Selectable - Cols []ast.ColExpr - Range *ast.RowRange -} - -func (s *Plan) String() string { - return fmt.Sprintf("%v | %v | %v", s.Selectable, s.Cols, s.Range) -} - -// PlanBuilder builds an execution plan from an AST. -type PlanBuilder struct { - // srcs is not currently used by the builder, but in the future it will - // be used to provide more intelligence in the build/error-checking process. - srcs *drvr.SourceSet -} - -// NewPlanBuilder returns a new plan builder instance. -func NewPlanBuilder(srcs *drvr.SourceSet) *PlanBuilder { - return &PlanBuilder{srcs: srcs} -} - -// Build creates a Plan instance from the AST. -func (pb *PlanBuilder) Build(a *ast.AST) (*Plan, error) { - - lg.Debugf("building plan...") - - if len(a.Segments()) == 0 { - return nil, errorf("plan error: the query does not have enough segments") - } - - stmt := &Plan{AST: a} - - insp := ast.NewInspector(a) - selectableSeg, err := insp.FindFinalSelectableSegment() - if err != nil { - return nil, err - } - - if len(selectableSeg.Children()) != 1 { - return nil, errorf("the final selectable segment must have exactly one selectable element, but found %d elements", len(selectableSeg.Children())) - } - - selectable, ok := selectableSeg.Children()[0].(ast.Selectable) - if !ok { - return nil, errorf("the final selectable segment must have exactly one selectable element, but found element %T(%q)", selectableSeg.Children()[0], selectableSeg.Children()[0].Text()) - } - - stmt.Selectable = selectable - lg.Debugf("found selectable segment: %q", selectableSeg.Text()) - - // Look for range - for seg := selectableSeg.Next(); seg != nil; seg = seg.Next() { - - childType, err := seg.ChildType() - if err != nil { - return nil, err - } - - if childType == ast.TypeRowRange { - if len(seg.Children()) != 1 { - return nil, errorf("segment [%d] with row range must have exactly one element, but found %d: %q", seg.SegIndex(), len(seg.Children()), seg.Text()) - } - - rr, ok := seg.Children()[0].(*ast.RowRange) - if !ok { - return nil, errorf("expected row range, but got %T(%q)", seg.Children()[0], seg.Children()[0].Text()) - } - - if stmt.Range != nil { - return nil, errorf("only one row range permitted, but found %q and %q", stmt.Range.Text(), rr.Text()) - } - - lg.Debugf("found row range: %q", rr.Text()) - stmt.Range = rr - } - } - - seg, err := insp.FindColExprSegment() - if err != nil { - return nil, err - } - - if seg == nil { - lg.Debugf("did not find a col expr segment") - } else { - lg.Debugf("found col expr segment: %s", seg.Text()) - elems := seg.Children() - colExprs := make([]ast.ColExpr, len(elems)) - for i, elem := range elems { - colExpr, ok := elem.(ast.ColExpr) - if !ok { - return nil, errorf("expected element in segment [%d] to be col expr, but was %T", i, elem) - } - - colExprs[i] = colExpr - } - - stmt.Cols = colExprs - } - - return stmt, nil -} diff --git a/libsq/engine/render.go b/libsq/engine/render.go deleted file mode 100644 index 816c4742..00000000 --- a/libsq/engine/render.go +++ /dev/null @@ -1,394 +0,0 @@ -package engine - -import ( - "fmt" - - "strings" - - "math" - - "reflect" - - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/libsq/ast" - "github.com/neilotoole/sq/libsq/drvr" -) - -var renderers = make(map[drvr.Type]Renderer) - -// Renderer renders driver-specific SQL fragments. -type Renderer interface { - FromTable(tblSel *ast.TblSelector) (string, error) - SelectCols(cols []ast.ColExpr) (string, error) - SelectAll(tblSel *ast.TblSelector) (string, error) - Range(rr *ast.RowRange) (string, error) - Join(fnJoin *ast.Join) (string, error) - CreateTable(tblName string, colNames []string, colTypes []reflect.Type) (string, error) - CreateInsertStmt(tblName string, colNames []string) (string, error) -} - -func init() { - renderers[drvr.Type("mysql")] = &MySQLRenderer{rndr: &baseRenderer{quote: "`", colQuote: "`"}} - renderers[drvr.Type("postgres")] = &PostgresRenderer{rndr: &baseRenderer{quote: `"`}} - renderers[drvr.Type("sqlite3")] = &SQLite3Renderer{rndr: &baseRenderer{quote: `"`}} - renderers[drvr.Type("xlsx")] = &XLSXRenderer{rndr: &baseRenderer{quote: `"`}} - - csv := &CSVRenderer{rndr: &baseRenderer{quote: `"`}} - renderers[drvr.Type("csv")] = csv - renderers[drvr.Type("tsv")] = csv -} - -// RendererFor returns a Renderer for the given driver type. -func RendererFor(typ drvr.Type) (Renderer, error) { - - r, ok := renderers[typ] - if !ok { - return nil, errorf("renderer for driver %q not found", typ) - } - - return r, nil -} - -type baseRenderer struct { - // quote is the driver-specific quote rune, e.g. " or ` - quote string - colQuote string -} - -func (r *baseRenderer) SelectAll(tblSel *ast.TblSelector) (string, error) { - sql := fmt.Sprintf("SELECT * FROM %v%s%v", r.quote, tblSel.SelValue(), r.quote) - lg.Debugf("returning SQL fragment: %s", sql) - return sql, nil -} -func (r *baseRenderer) FromTable(tblSel *ast.TblSelector) (string, error) { - - tblName := tblSel.SelValue() - if tblName == "" { - return "", errorf("selector has empty table name: %q", tblSel.Text()) - } - - clause := fmt.Sprintf("FROM %v%s%v", r.quote, tblSel.SelValue(), r.quote) - lg.Debugf("returning SQL fragment: %s", clause) - return clause, nil -} - -func (r *baseRenderer) Join(fnJoin *ast.Join) (string, error) { - - joinType := "INNER JOIN" - - onClause := "" - - if len(fnJoin.Children()) == 0 { - joinType = "NATURAL JOIN" - } else { - joinExpr, ok := fnJoin.Children()[0].(*ast.JoinConstraint) - if !ok { - return "", errorf("expected *FnJoinExpr but got %T", fnJoin.Children()[0]) - } - - leftOperand := "" - operator := "" - rightOperand := "" - - if len(joinExpr.Children()) == 1 { - // It's a single col selector - colSel, ok := joinExpr.Children()[0].(*ast.ColSelector) - if !ok { - return "", errorf("expected *ColSelector but got %T", joinExpr.Children()[0]) - } - - leftOperand = fmt.Sprintf("%s%s%s.%s%s%s", r.quote, fnJoin.LeftTbl().SelValue(), r.quote, r.quote, colSel.SelValue(), r.quote) - operator = "==" - rightOperand = fmt.Sprintf("%s%s%s.%s%s%s", r.quote, fnJoin.RightTbl().SelValue(), r.quote, r.quote, colSel.SelValue(), r.quote) - } else { - leftOperand = joinExpr.Children()[0].Text()[1:] - operator = joinExpr.Children()[1].Text() - rightOperand = joinExpr.Children()[2].Text()[1:] - } - - if operator == "==" { - operator = "=" - } - - onClause = fmt.Sprintf(" ON %s %s %s", leftOperand, operator, rightOperand) - } - - sql := fmt.Sprintf("FROM %s%s%s %s %s%s%s", r.quote, fnJoin.LeftTbl().SelValue(), r.quote, joinType, r.quote, fnJoin.RightTbl().SelValue(), r.quote) - if onClause != "" { - sql = sql + " " + onClause - } - - lg.Debugf("returning JOIN fragment: %s", sql) - return sql, nil -} - -func (r *baseRenderer) Range(rr *ast.RowRange) (string, error) { - - if rr == nil { - return "", nil - } - - if rr.Limit < 0 && rr.Offset < 0 { - return "", nil - } - - limit := "" - offset := "" - if rr.Limit > -1 { - limit = fmt.Sprintf(" LIMIT %d", rr.Limit) - } - if rr.Offset > -1 { - offset = fmt.Sprintf(" OFFSET %d", rr.Offset) - - if rr.Limit == -1 { - // MySQL requires a LIMIT if OFFSET is used. Therefore - // we make the LIMIT a very large number - limit = fmt.Sprintf(" LIMIT %d", math.MaxInt64) - } - } - - sql := limit + offset - lg.Debugf("returning SQL fragment: %s", sql) - - return sql, nil -} - -func (r *baseRenderer) SelectCols(cols []ast.ColExpr) (string, error) { - lg.Debugf("generating select clause for cols: %v", cols) - - if len(cols) == 0 { - return "SELECT *", nil - } - - vals := make([]string, len(cols)) - - for i, col := range cols { - colText, err := col.ColExpr() - if err != nil { - return "", errorf("unable to extract col expr from %q: %v", col, err) - } - if strings.IndexRune(colText, '.') == -1 { - - // it's a regular (non-scoped) col name, e.g. "uid" - vals[i] = fmt.Sprintf("%s%s%s", r.quote, colText, r.quote) - continue - } - - // the expr contains a period, so it's likely scoped, e.g. "user.uid" - parts := strings.Split(colText, ".") - if len(parts) != 2 { - return "", errorf("expected scoped col expr %q to have 2 parts, but got: %v", col, parts) - } - - vals[i] = fmt.Sprintf("%s%s%s.%s%s%s", r.quote, parts[0], r.quote, r.quote, parts[1], r.quote) - } - - text := "SELECT " + strings.Join(vals, ", ") - return text, nil -} - -type MySQLRenderer struct { - rndr *baseRenderer -} - -func (r *MySQLRenderer) CreateTable(tblName string, colNames []string, colTypes []reflect.Type) (string, error) { - return "", errorf("not implemented") -} - -func (r *MySQLRenderer) CreateInsertStmt(tblName string, colNames []string) (string, error) { - return "", errorf("not implemented") -} - -func (r *MySQLRenderer) SelectAll(tblSel *ast.TblSelector) (string, error) { - return r.rndr.SelectAll(tblSel) -} - -func (r *MySQLRenderer) FromTable(tblSel *ast.TblSelector) (string, error) { - return r.rndr.FromTable(tblSel) -} - -func (r *MySQLRenderer) Join(fnJoin *ast.Join) (string, error) { - return r.rndr.Join(fnJoin) -} -func (r *MySQLRenderer) Range(rr *ast.RowRange) (string, error) { - return r.rndr.Range(rr) -} - -func (r *MySQLRenderer) SelectCols(cols []ast.ColExpr) (string, error) { - return r.rndr.SelectCols(cols) -} - -type PostgresRenderer struct { - rndr *baseRenderer -} - -func (r *PostgresRenderer) CreateTable(tblName string, colNames []string, colTypes []reflect.Type) (string, error) { - return "", errorf("not implemented") -} - -func (r *PostgresRenderer) CreateInsertStmt(tblName string, colNames []string) (string, error) { - return "", errorf("not implemented") -} - -func (r *PostgresRenderer) SelectAll(tblSel *ast.TblSelector) (string, error) { - return r.rndr.SelectAll(tblSel) -} - -func (r *PostgresRenderer) FromTable(tblSel *ast.TblSelector) (string, error) { - return r.rndr.FromTable(tblSel) -} - -func (r *PostgresRenderer) Join(fnJoin *ast.Join) (string, error) { - return r.rndr.Join(fnJoin) -} -func (r *PostgresRenderer) Range(rr *ast.RowRange) (string, error) { - return r.rndr.Range(rr) -} - -func (r *PostgresRenderer) SelectCols(cols []ast.ColExpr) (string, error) { - return r.rndr.SelectCols(cols) -} - -type SQLite3Renderer struct { - rndr *baseRenderer -} - -func (r *SQLite3Renderer) CreateInsertStmt(tblName string, colNames []string) (string, error) { - - escapedColNames := make([]string, len(colNames)) - for i, colName := range colNames { - escapedColNames[i] = r.rndr.quote + colName + r.rndr.quote - } - - placeholders := make([]string, len(colNames)) - for i := range placeholders { - placeholders[i] = "?" - } - - insertTpl := fmt.Sprintf(`INSERT INTO %s%%s%s ( %%s ) VALUES ( %%s )`, r.rndr.quote, r.rndr.quote) - lg.Debugf("insertTpl: %s", insertTpl) - - insertStmt := fmt.Sprintf(insertTpl, tblName, strings.Join(escapedColNames, ", "), strings.Join(placeholders, ", ")) - - return insertStmt, nil -} - -func (r *SQLite3Renderer) CreateTable(tblName string, colNames []string, colTypes []reflect.Type) (string, error) { - - lg.Debugf("table name: %s | col names: %v", tblName, colNames) - colExprs := make([]string, len(colNames)) - for i := 0; i < len(colNames); i++ { - typ := r.getNativeType(colTypes[i]) - colExprs[i] = fmt.Sprintf(`%s%s%s %s`, r.rndr.quote, colNames[i], r.rndr.quote, typ) - } - - tblTpl := `CREATE TABLE IF NOT EXISTS "%s" ( %s )` - stmt := fmt.Sprintf(tblTpl, tblName, strings.Join(colExprs, ", ")) - lg.Debugf("returning SQL: %s", stmt) - return stmt, nil -} - -func (r *SQLite3Renderer) getNativeType(typ reflect.Type) string { - - const AffinityText = `TEXT` - const AffinityNumeric = `NUMERIC` - const AffinityInteger = `INTEGER` - const AffinityReal = `REAL` - const AffinityBlob = `BLOB` - - if typ == nil { - return AffinityText - } - - switch typ { - case ast.TypeNullInt64: - return AffinityInteger - case ast.TypeNullFloat64: - return AffinityReal - case ast.TypeByteArray: - return AffinityBlob - } - - return AffinityText -} - -func (r *SQLite3Renderer) SelectAll(tblSel *ast.TblSelector) (string, error) { - return r.rndr.SelectAll(tblSel) -} - -func (r *SQLite3Renderer) FromTable(tblSel *ast.TblSelector) (string, error) { - return r.rndr.FromTable(tblSel) -} - -func (r *SQLite3Renderer) Join(fnJoin *ast.Join) (string, error) { - return r.rndr.Join(fnJoin) -} -func (r *SQLite3Renderer) Range(rr *ast.RowRange) (string, error) { - return r.rndr.Range(rr) -} - -func (r *SQLite3Renderer) SelectCols(cols []ast.ColExpr) (string, error) { - return r.rndr.SelectCols(cols) -} - -type XLSXRenderer struct { - rndr *baseRenderer -} - -func (r *XLSXRenderer) CreateTable(tblName string, colNames []string, colTypes []reflect.Type) (string, error) { - return "", errorf("not implemented") -} - -func (r *XLSXRenderer) CreateInsertStmt(tblName string, colNames []string) (string, error) { - return "", errorf("not implemented") -} - -func (r *XLSXRenderer) SelectAll(tblSel *ast.TblSelector) (string, error) { - return r.rndr.SelectAll(tblSel) -} - -func (r *XLSXRenderer) FromTable(tblSel *ast.TblSelector) (string, error) { - return r.rndr.FromTable(tblSel) -} - -func (r *XLSXRenderer) Join(fnJoin *ast.Join) (string, error) { - return r.rndr.Join(fnJoin) -} -func (r *XLSXRenderer) Range(rr *ast.RowRange) (string, error) { - return r.rndr.Range(rr) -} - -func (r *XLSXRenderer) SelectCols(cols []ast.ColExpr) (string, error) { - return r.rndr.SelectCols(cols) -} - -type CSVRenderer struct { - rndr *baseRenderer -} - -func (r *CSVRenderer) CreateTable(tblName string, colNames []string, colTypes []reflect.Type) (string, error) { - return "", errorf("not implemented") -} - -func (r *CSVRenderer) CreateInsertStmt(tblName string, colNames []string) (string, error) { - return "", errorf("not implemented") -} - -func (r *CSVRenderer) SelectAll(tblSel *ast.TblSelector) (string, error) { - return r.rndr.SelectAll(tblSel) -} - -func (r *CSVRenderer) FromTable(tblSel *ast.TblSelector) (string, error) { - return r.rndr.FromTable(tblSel) -} - -func (r *CSVRenderer) Join(fnJoin *ast.Join) (string, error) { - return r.rndr.Join(fnJoin) -} -func (r *CSVRenderer) Range(rr *ast.RowRange) (string, error) { - return r.rndr.Range(rr) -} - -func (r *CSVRenderer) SelectCols(cols []ast.ColExpr) (string, error) { - return r.rndr.SelectCols(cols) -} diff --git a/libsq/errz/errz.go b/libsq/errz/errz.go new file mode 100644 index 00000000..1caab4b5 --- /dev/null +++ b/libsq/errz/errz.go @@ -0,0 +1,43 @@ +// Package errz is sq's error package. It exists to combine +// functionality from several error packages. +package errz + +import ( + "github.com/pkg/errors" + "go.uber.org/multierr" +) + +// Err is documented by pkg/errors.WithStack. +var Err = errors.WithStack + +// Wrap is documented by pkg/errors.Wrap. +var Wrap = errors.Wrap + +// Wrapf is documented by pkg/errors.Wrapf. +var Wrapf = errors.Wrapf + +// New is documented by pkg/errors.New. +var New = errors.New + +// Errorf is documented by pkg/errors.Errorf. +var Errorf = errors.Errorf + +// Cause is documented by pkg/errors.Cause. +var Cause = errors.Cause + +// Append is documented by multierr.Append. +var Append = multierr.Append + +// TODO: ^^ Should implement our own version of Append that checks +// if the args have already been wrapped (WithStack), and if not, +// automatically wrap them. That is, this: +// +// return errz.Append(err, errz.Err(tx.Rollback()) +// // becomes +// return errz.Append(err, tx.Rollback()) + +// Combine is documented by multierr.Combine. +var Combine = multierr.Combine + +// Errors is documented by multierr.Errors. +var Errors = multierr.Errors diff --git a/libsq/libsq.go b/libsq/libsq.go index bc980a03..64d98993 100644 --- a/libsq/libsq.go +++ b/libsq/libsq.go @@ -1,27 +1,226 @@ -// Package libsq provides a high-level interface for executing SLQ and traditional -// database-native SQL. +// Package libsq implements the core sq functionality. +// The ExecuteSLQ function is the entrypoint for executing +// a SLQ query, which may interact with several data sources. +// The QuerySQL function executes a SQL query against a single +// source. Both functions ultimately send their result records to +// a RecordWriter. Implementations of RecordWriter write records +// to a destination, such as a JSON or CSV file. The NewDBWriter +// function returns a RecordWriter that writes records to a +// database. package libsq import ( - "github.com/neilotoole/sq/libsq/drvr" - "github.com/neilotoole/sq/libsq/engine" + "context" + + "github.com/neilotoole/sq/libsq/ast" + + "github.com/neilotoole/lg" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source" + + "github.com/neilotoole/sq/libsq/sqlz" ) -// Execute constructs a plan from the SLQ input, executes the plan, and writes the results to writer. -func Execute(srcs drvr.SourceSet, slq string, writer engine.RecordWriter) error { - plan, err := engine.BuildPlan(&srcs, slq) - if err != nil { - return err - } - return engine.New(srcs, plan, writer).Execute() +// RecordWriter is the interface for writing records to a +// destination. The Open method returns a channel to +// which the records are sent. The Wait method allows +// the sender to wait for the writer to complete. +type RecordWriter interface { + // Open opens the RecordWriter for writing records described + // by recMeta, returning a non-nil err if the initial open + // operation fails. + // + // Records received on recCh are written to the + // destination, possibly buffered, until recCh is closed. + // Therefore, the caller must close recCh to indicate that + // all records have been sent, so that the writer can + // perform any end-of-stream actions. The caller can use the Wait + // method to wait for the writer to complete. The returned errCh + // will also be closed when complete. + // + // Any underlying write error is sent on errCh, + // at which point the writer is defunct. Thus it is the + // responsibility of the sender to check errCh before + // sending again on recordCh. Note that implementations + // may send more than one error on errCh, and that errCh + // will be closed when the writer completes. Note also that the + // errors sent on errCh are accumulated internally by the writer and + // returned from the Wait method (if more than one error, they + // may be combined into a multierr). + // + // The caller can stop the RecordWriter by cancelling ctx. + // When ctx is done, the writer shuts down processing + // of recCh and returns ctx.Err on errCh (possibly + // with additional errors from the shutdown). + // + // If cancelFn is non-nil, it is invoked only by the writer's Wait method. + // If the Open method itself returns an error, it is the caller's + // responsibility to invoke cancelFn to prevent resource leakage. + // + // It is noted that the existence of the cancelFn param is an unusual + // construction. This mechanism exists to enable a goroutine to wait + // on the writer outside of the function that invoked Open, without + // having to pass cancelFn around. + Open(ctx context.Context, cancelFn context.CancelFunc, recMeta sqlz.RecordMeta) (recCh chan<- sqlz.Record, errCh <-chan error, err error) + + // Wait waits for the writer to complete and returns the number of + // written rows and any error (which may be a multierr). + // The written value may be non-zero even in the presence of an error. + // If a cancelFn was passed to Open, it will be invoked before Wait returns. + Wait() (written int64, err error) } -// ExecuteSQL executes a database-native SQL query against the data source, and writes the results to writer. -func ExecuteSQL(src drvr.Source, sql string, writer engine.RecordWriter) error { - db, err := engine.NewDatabase(&src) +// ExecuteSLQ executes the slq query, writing the results to recw. +// The caller is responsible for closing dbases. +func ExecuteSLQ(ctx context.Context, log lg.Log, dbOpener driver.DatabaseOpener, joinDBOpener driver.JoinDatabaseOpener, srcs *source.Set, query string, recw RecordWriter) error { + a, err := ast.Parse(log, query) if err != nil { return err } - err = db.Query(sql, writer) - return err + + qModel, err := buildQueryModel(log, a) + if err != nil { + return err + } + + ng := &engine{ + log: log, + srcs: srcs, + dbOpener: dbOpener, + joinDBOpener: joinDBOpener, + } + return ng.execute(ctx, qModel, recw) +} + +// QuerySQL executes the SQL query against dbase, writing +// the results to recw. Note that QuerySQL may return +// before recw has finished writing, thus the caller may wish +// to wait for recw to complete. +// The caller is responsible for closing dbase. +func QuerySQL(ctx context.Context, log lg.Log, dbase driver.Database, recw RecordWriter, query string, args ...interface{}) error { + rows, err := dbase.DB().QueryContext(ctx, query, args...) + if err != nil { + return errz.Wrapf(err, `SQL query against %s failed: %s`, dbase.Source().Handle, query) + } + defer log.WarnIfCloseError(rows) + + // This next part is a bit ugly. + // + // For some databases (specifically sqlite), a call to rows.ColumnTypes + // before rows.Next is first invoked will always return nil for the + // scan type of the columns. After rows.Next is first invoked, the + // scan type will then be reported. + // + // However, there is a snag. Assume an empty table. A call to rows.Next + // returns false, and a following call to rows.ColumnTypes will return + // an error (because the rows.Next call closed rows). But we still need + // the column type info even for an empty table, because it's needed + // to construct the RecordMeta which, amongst other things, is used to + // show column header info to the user, which we still want to do even + // for an empty table. + // + // The workaround is that we call rows.ColumnTypes before the call to + // rows.Next, and if rows.Next returns true, we call rows.ColumnTypes + // again to get the more-complete []ColumnType. If rows.Next returns + // false, we still make use of the earlier partially-complete []ColumnType. + colTypes, err := rows.ColumnTypes() + if err != nil { + return errz.Err(err) + } + + hasNext := rows.Next() + if rows.Err() != nil { + return errz.Err(rows.Err()) + } + + if hasNext { + colTypes, err = rows.ColumnTypes() + if err != nil { + return errz.Err(err) + } + } + + recMeta, recFromScanRowFn, err := dbase.SQLDriver().RecordMeta(colTypes) + if err != nil { + return err + } + + // We create a new ctx to pass to recw.Open; we use + // the new ctx/cancelFn to stop recw if a problem happens + // in this function. + ctx, cancelFn := context.WithCancel(ctx) + recordCh, errCh, err := recw.Open(ctx, cancelFn, recMeta) + if err != nil { + cancelFn() + return err + } + defer close(recordCh) + + // scanRow is used by rows.Scan to get the DB vals. + // It's relatively expensive to invoke NewScanRow, as it uses + // pkg reflect to build scanRow (and also some drivers munge + // the scan types, e.g. switching to sql.NullString instead + // of *string). Therefore we reuse scanRow for each call to rows.Scan. + var scanRow = recMeta.NewScanRow() + + for hasNext { + err = rows.Scan(scanRow...) + if err != nil { + cancelFn() + return errz.Wrapf(err, "query against %s", dbase.Source().Handle) + } + + // recFromScanRowFn returns a new Record with appropriate + // copies of scanRow's data, thus freeing up scanRow + // for reuse on the next call to rows.Scan. + rec, err := recFromScanRowFn(scanRow) + if err != nil { + cancelFn() + return err + } + + // Note: ultimately we should be able to ditch this + // check when we have more confidence in the codebase. + i, err := sqlz.ValidRecord(recMeta, rec) + if err != nil { + cancelFn() + return errz.Wrapf(err, "column [%d] (%s): unacceptable munged type %T", i, recMeta[i].Name(), rec[i]) + } + + // We've got our new Record, now we need to decide + // what to do. + select { + // If ctx is done, then we just return, we're done. + case <-ctx.Done(): + log.WarnIfError(ctx.Err()) + cancelFn() + return ctx.Err() + + // If there's an err from the record writer, we + // return that error and we're done. Note that the error + // will be nil when the RecordWriter closes errCh on + // successful completion. + case err = <-errCh: + log.WarnIfError(err) + cancelFn() + return err + + // Otherwise, we send the record to recordCh. When + // that send completes, the loop begins again for the + // next row. + case recordCh <- rec: + } + + hasNext = rows.Next() + } + + // For extra safety, check rows.Err. + if rows.Err() != nil { + log.WarnIfError(err) + cancelFn() + return errz.Err(rows.Err()) + } + + return nil } diff --git a/libsq/libsq_test.go b/libsq/libsq_test.go new file mode 100644 index 00000000..0fc3541c --- /dev/null +++ b/libsq/libsq_test.go @@ -0,0 +1,118 @@ +package libsq_test + +import ( + "reflect" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +// TestQuerySQL_Smoke is a smoke test of testh.QuerySQL. +func TestQuerySQL_Smoke(t *testing.T) { + t.Parallel() + + wantActorFieldTypes := []reflect.Type{ + sqlz.RTypeInt64P, + sqlz.RTypeStringP, + sqlz.RTypeStringP, + sqlz.RTypeTimeP, + } + + testCases := []struct { + handle string + fieldTypes []reflect.Type + }{ + { + handle: sakila.SL3, + fieldTypes: wantActorFieldTypes, + }, + { + handle: sakila.My, + fieldTypes: wantActorFieldTypes, + }, + { + handle: sakila.Pg, + fieldTypes: wantActorFieldTypes, + }, + { + handle: sakila.MS, + fieldTypes: wantActorFieldTypes, + }, + { + handle: sakila.CSVActor, + fieldTypes: []reflect.Type{ + // FIXME: change to wantActorFieldTypes when CSV driver detects field types automagically + sqlz.RTypeInt64P, + sqlz.RTypeStringP, + sqlz.RTypeStringP, + sqlz.RTypeStringP, + }, + }, + { + handle: sakila.XLSX, + fieldTypes: []reflect.Type{ + // FIXME: change to wantActorFieldTypes when CSV driver detects field types automagically + sqlz.RTypeInt64P, + sqlz.RTypeStringP, + sqlz.RTypeStringP, + sqlz.RTypeStringP, + }, + }, + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.handle, func(t *testing.T) { + testh.SkipShort(t, tc.handle == sakila.XLSX) + t.Parallel() + + th := testh.New(t) + src := th.Source(tc.handle) + + tblName := sakila.TblActor + if th.IsMonotable(src) { + tblName = source.MonotableName + } + + sink, err := th.QuerySQL(src, "SELECT * FROM "+tblName) + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + require.Equal(t, len(tc.fieldTypes), len(sink.Recs[0])) + for i := range sink.Recs[0] { + require.Equal(t, tc.fieldTypes[i], reflect.TypeOf(sink.Recs[0][i]), + "expected field[%d] to have type %s but got %s", i, tc.fieldTypes[i], reflect.TypeOf(sink.Recs[0][i])) + } + }) + } +} + +func TestQuerySQL_Count(t *testing.T) { + t.Parallel() + + testCases := sakila.All + for _, handle := range testCases { + handle := handle + t.Run(handle, func(t *testing.T) { + testh.SkipShort(t, handle == sakila.XLSX) + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + + sink, err := th.QuerySQL(src, "SELECT * FROM "+sakila.TblActor) + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + + sink, err = th.QuerySQL(src, "SELECT COUNT(*) FROM "+sakila.TblActor) + require.NoError(t, err) + count, ok := sink.Recs[0][0].(*int64) + require.True(t, ok) + require.Equal(t, int64(sakila.TblActorCount), *count) + }) + } +} diff --git a/libsq/notify/job.go b/libsq/notify/job.go new file mode 100644 index 00000000..4d12b80b --- /dev/null +++ b/libsq/notify/job.go @@ -0,0 +1,69 @@ +package notify + +import ( + "time" + + uuid "github.com/satori/go.uuid" + + "github.com/neilotoole/sq/libsq/stringz" +) + +// State is the job state, one of Created, Running, Completed or Failed. +type State string + +// Possible values of State. +const ( + Created = State("CREATED") + Running = State("RUNNING") + Completed = State("COMPLETED") + Canceled = State("CANCELED") + Failed = State("FAILED") +) + +// Job represents a single libsq engine workflow instance. +type Job struct { + ID string `yaml:"id" json:"id"` + Started *time.Time `yaml:"started,omitempty" json:"started,omitempty"` + Ended *time.Time `yaml:"ended,omitempty" json:"ended,omitempty"` + + // Stmt is the SLQ/SQL statement/query this job is executing. + Stmt string `yaml:"stmt" json:"stmt"` + State State `yaml:"state" json:"state"` + Errors []error `yaml:"errors,omitempty" json:"errors,omitempty"` +} + +// New returns a new Job, with a generated ID, and State set to Created. +// The Started and Ended fields are both nil. +func New(stmt string) *Job { + return &Job{ID: uuid.NewV4().String(), State: Created, Stmt: stmt} +} + +func (j *Job) String() string { + return stringz.SprintJSON(j) +} + +// Start sets the job.Started timestamp, and job.State to Running. +func (j *Job) Start() *Job { + now := time.Now() + j.Started = &now + j.State = Running + return j +} + +// Complete sets the job.Ended timestamp, and job.State to Completed. +func (j *Job) Complete() *Job { + now := time.Now() + j.Ended = &now + j.State = Completed + return j +} + +// Fail sets the job.Ended timestamp, job.State to Failed, +// and adds the provided errors to job.Errors +func (j *Job) Fail(errs ...error) *Job { + now := time.Now() + j.Ended = &now + j.State = Failed + j.Errors = append(j.Errors, errs...) + return j +} diff --git a/libsq/notify/notify.go b/libsq/notify/notify.go new file mode 100644 index 00000000..0c032826 --- /dev/null +++ b/libsq/notify/notify.go @@ -0,0 +1,143 @@ +// Package notify is an experiment for sending notifications. +package notify + +import ( + "regexp" + "sync" + "time" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// DestType is the destination type, e.g. "slack", "hipchat", or "email" etc. +type DestType string + +// Destination is a destination for messages. +type Destination struct { + Type DestType `yaml:"type" json:"type"` + Label string `yaml:"label" json:"label"` + Target string `yaml:"target" json:"target"` + Credentials string `yaml:"credentials" json:"credentials"` +} + +func (d Destination) String() string { + return stringz.SprintJSON(d) +} + +// Message is a notification message, optionally containing a Job that the message is associated with. +type Message struct { + Text string `yaml:"text" json:"text"` + Job *Job `yaml:"job,empty" json:"job,omitempty"` +} + +// NewJobMessage creates a Message indicating the state of the job. +func NewJobMessage(jb Job) Message { + m := Message{Job: &jb} + return m +} + +// Notifier is an interface that can send notification messages. +type Notifier interface { + // Send sends the message. + Send(msg Message) error +} + +// Provider is a factory that returns Notifier instances and generates notification Destinations from user parameters. +type Provider interface { + // Destination returns a notification Destination instance from the supplied parameters. + Destination(typ DestType, target string, label string, credentials string, labelAvailable func(label string) bool) (*Destination, error) + // Notifier returns a Notifier instance for the given destination. + Notifier(dest Destination) (Notifier, error) +} + +var providers = make(map[DestType]Provider) + +// RegisterProvider should be invoked by notification implementations to indicate that they handle a specific destination type. +func RegisterProvider(typ DestType, p Provider) { + providers[typ] = p +} + +// ProviderFor returns a Provider for the specified destination type. +func ProviderFor(typ DestType) (Provider, error) { + p, ok := providers[typ] + if !ok { + return nil, errz.Errorf("unsupported notification destination type %q", typ) + } + return p, nil +} + +// NewAsyncNotifier returns a Notifier that sends messages asynchronously to the supplied destination. +// The invoking code should call AsyncNotifier.Wait() before exiting. +// TODO: Should take a context.Context param. +func NewAsyncNotifier(log lg.Log, dests []Destination) (*AsyncNotifier, error) { + notifiers := make([]Notifier, len(dests)) + + for i, dest := range dests { + provider, ok := providers[dest.Type] + if !ok { + return nil, errz.Errorf("no provider for notification destination type %q", dest.Type) + } + + notifier, err := provider.Notifier(dest) + if err != nil { + return nil, err + } + + notifiers[i] = notifier + } + + return &AsyncNotifier{log: log, dests: notifiers, wg: &sync.WaitGroup{}, done: make(chan struct{})}, nil +} + +// AsyncNotifier is a Notifier that wraps a bunch of other +// notifiers and sends message asynchronously. The invoking code +// should call AsyncNotifier.Wait() before exiting. +type AsyncNotifier struct { + log lg.Log + dests []Notifier + done chan struct{} + wg *sync.WaitGroup +} + +func (a *AsyncNotifier) Send(msg Message) error { + a.wg.Add(len(a.dests)) + + for _, dest := range a.dests { + dest := dest + go func() { + defer a.wg.Done() + err := dest.Send(msg) + if err != nil { + a.log.Warnf("problem sending notification: %v", err) + } + }() + } + return nil +} + +func (a *AsyncNotifier) Wait(timeout time.Duration) { + go func() { + a.wg.Wait() + close(a.done) + }() + + select { + case <-a.done: + case <-time.After(timeout): + a.log.Warnf("hit timeout before all notifiers completed") + } +} + +var handlePattern = regexp.MustCompile(`\A[a-zA-Z][a-zA-Z0-9_]*$`) + +// ValidHandle returns an error if handle is not an acceptable notification destination handle value. +func ValidHandle(handle string) error { + if !handlePattern.MatchString(handle) { + return errz.Errorf(`invalid notification destination handle value %q: must begin with a letter, followed by zero or more letters, digits, or underscores, e.g. "slack_devops"`, handle) + } + + return nil +} diff --git a/libsq/options/options.go b/libsq/options/options.go new file mode 100644 index 00000000..66de531f --- /dev/null +++ b/libsq/options/options.go @@ -0,0 +1,162 @@ +// Package options is the home of the Options type, used to control +// optional behavior of core types such as Source. +package options + +import ( + "net/url" + "strconv" + "strings" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// Options are optional values akin to url.Values. +type Options url.Values + +// Clone returns a deep copy of o. If o is nil, nil is returned. +func (o Options) Clone() Options { + if o == nil { + return nil + } + + n := Options{} + for key, vals := range o { + if vals == nil { + n[key] = nil + continue + } + + nvals := make([]string, len(vals)) + copy(nvals, vals) + n[key] = nvals + } + + return n +} + +// ParseOptions parses the URL-encoded options string. If allowedOpts is +// non-empty, the options are tested for basic correctness. +// See url.ParseQuery. +func ParseOptions(options string, allowedOpts ...string) (Options, error) { + vals, err := url.ParseQuery(options) + if err != nil { + return nil, errz.Wrap(err, "unable to parse --opts flag: value should be in URL-encoded query format") + } + + opts := Options(vals) + + if len(allowedOpts) > 0 { + err := verifyOptions(opts, allowedOpts...) + if err != nil { + return nil, err + } + } + + return opts, nil +} + +// Add is documented by url.Values.Add. +func (o Options) Add(key, value string) { + url.Values(o).Add(key, value) +} + +// Get is documented by url.Values.Get. +func (o Options) Get(key string) string { + return url.Values(o).Get(key) +} + +// Encode is documented by url.Values.Encode. +func (o Options) Encode() string { + return url.Values(o).Encode() +} + +const ( + // OptHasHeader is the key for a header option. + OptHasHeader = "header" + + // OptCols is the key for a cols option. + OptCols = "cols" + + // OptDelim the key for a delimiter option. + OptDelim = "delim" +) + +// verifyOptions returns an error if opts contains any +// illegal or unknown values. If opts or allowedOpts are empty, +// nil is returned. +func verifyOptions(opts Options, allowedOpts ...string) error { + if len(opts) == 0 || len(allowedOpts) == 0 { + return nil + } + + for key := range opts { + if !stringz.InSlice(allowedOpts, key) { + return errz.Errorf("illegal option name %s", key) + } + } + + // OptHasHeader must be a bool, we can verify that here. + if vals, ok := opts[OptHasHeader]; ok { + if len(vals) != 1 { + return errz.Errorf("illegal value for opt %s: only 1 value permitted", OptHasHeader) + } + + if _, err := strconv.ParseBool(vals[0]); err != nil { + return errz.Wrapf(err, "illegal value for opt %s", OptHasHeader) + } + } + + return nil +} + +// HasHeader checks if src.Options has "header=true". +func HasHeader(opts Options) (header, ok bool, err error) { + if len(opts) == 0 { + return false, false, nil + } + + if _, ok = opts[OptHasHeader]; !ok { + return false, false, nil + } + val := opts.Get(OptHasHeader) + if val == "" { + return false, false, nil + } + + header, err = strconv.ParseBool(val) + if err != nil { + return false, false, errz.Errorf(`option %q: %v`, OptHasHeader, err) + } + + return header, true, nil +} + +// GetColNames returns column names specified like "--opts=cols=A,B,C". +func GetColNames(o Options) (colNames []string, err error) { + if len(o) == 0 { + return nil, nil + } + + _, ok := o[OptCols] + if !ok { + return nil, nil + } + + val := strings.TrimSpace(o.Get(OptCols)) + colNames = strings.Split(val, ",") + if val == "" || len(colNames) == 0 { + err = errz.Errorf("option %q: cannot be empty", OptCols) + return nil, err + } + + for i := range colNames { + colNames[i] = strings.TrimSpace(colNames[i]) + if colNames[i] == "" { + err = errz.Errorf("option %q: column [%d] cannot be empty", OptCols, i) + return nil, err + } + } + + return colNames, nil +} diff --git a/libsq/options/options_test.go b/libsq/options/options_test.go new file mode 100644 index 00000000..0684d059 --- /dev/null +++ b/libsq/options/options_test.go @@ -0,0 +1 @@ +package options diff --git a/libsq/shutdown/shutdown.go b/libsq/shutdown/shutdown.go deleted file mode 100644 index 08f508cf..00000000 --- a/libsq/shutdown/shutdown.go +++ /dev/null @@ -1,63 +0,0 @@ -// Package shutdown provides a mechanism for executing cleanup/shutdown tasks -// as the application is exiting. Use shutdown.Add() to register a task. -// This shutdown package is a stopgap mechanism until the codebase has stabilized -// at which point each package/construct will handle their own cleanup. -package shutdown - -import ( - "os" - "sync" - - "github.com/neilotoole/go-lg/lg" -) - -var shutdownFns = []func() error{} -var mu sync.Mutex - -// Add a function to execute during shutdown (nil functions are ignored). -func Add(fn func() error) { - mu.Lock() - defer mu.Unlock() - - if fn == nil { - return - } - - shutdownFns = append(shutdownFns, fn) -} - -// Shutdown executes all functions registered via Add(). If all functions execute -// without error then os.Exit(code) is invoked, otherwise os.Exit(1) is invoked. -func Shutdown(code int) { - mu.Lock() - defer mu.Unlock() - lg.Debugf("Shutdown() invoked with code: %d", code) - ret := runShutdownFns() - - if code != 0 { - ret = code - } - lg.Debugf("shutting down for real, with code: %d", ret) - os.Exit(ret) -} - -func runShutdownFns() int { - - ret := 0 - - for i, fn := range shutdownFns { - - if fn == nil { - // should never happen - continue - } - lg.Debugf("running shutdown function %d of %d...", i+1, len(shutdownFns)) - err := fn() - if err != nil { - lg.Errorf("shutdown function error: %v", err) - ret = 1 - } - } - - return ret -} diff --git a/libsq/slq/SLQ.interp b/libsq/slq/SLQ.interp new file mode 100644 index 00000000..7b03835b --- /dev/null +++ b/libsq/slq/SLQ.interp @@ -0,0 +1,128 @@ +token literal names: +null +';' +'*' +'join' +'JOIN' +'j' +'group' +'GROUP' +'g' +'.[' +'sum' +'SUM' +'avg' +'AVG' +'count' +'COUNT' +'where' +'WHERE' +'||' +'/' +'%' +'+' +'-' +'<<' +'>>' +'&' +'&&' +'~' +'!' +null +null +'(' +')' +'[' +']' +',' +'|' +':' +null +null +null +'<=' +'<' +'>=' +'>' +'!=' +'==' +null +null +null +null + +token symbolic names: +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +ID +WS +LPAR +RPAR +LBRA +RBRA +COMMA +PIPE +COLON +NULL +NN +NUMBER +LT_EQ +LT +GT_EQ +GT +NEQ +EQ +SEL +DATASOURCE +STRING +LINECOMMENT + +rule names: +stmtList +query +segment +element +cmpr +fn +join +joinConstraint +group +selElement +dsTblElement +dsElement +rowRange +fnName +expr +literal +unaryOperator + + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 52, 193, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 3, 2, 7, 2, 38, 10, 2, 12, 2, 14, 2, 41, 11, 2, 3, 2, 3, 2, 6, 2, 45, 10, 2, 13, 2, 14, 2, 46, 3, 2, 7, 2, 50, 10, 2, 12, 2, 14, 2, 53, 11, 2, 3, 2, 7, 2, 56, 10, 2, 12, 2, 14, 2, 59, 11, 2, 3, 3, 3, 3, 3, 3, 7, 3, 64, 10, 3, 12, 3, 14, 3, 67, 11, 3, 3, 4, 3, 4, 3, 4, 7, 4, 72, 10, 4, 12, 4, 14, 4, 75, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 85, 10, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 94, 10, 7, 12, 7, 14, 7, 97, 11, 7, 3, 7, 5, 7, 100, 10, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 114, 10, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 7, 10, 121, 10, 10, 12, 10, 14, 10, 124, 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 144, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 157, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 178, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 184, 10, 16, 12, 16, 14, 16, 187, 11, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 2, 3, 30, 19, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 2, 12, 3, 2, 43, 48, 3, 2, 5, 7, 3, 2, 8, 10, 3, 2, 12, 19, 4, 2, 4, 4, 21, 22, 3, 2, 23, 24, 3, 2, 25, 27, 3, 2, 43, 46, 4, 2, 40, 42, 51, 51, 4, 2, 23, 24, 29, 30, 2, 209, 2, 39, 3, 2, 2, 2, 4, 60, 3, 2, 2, 2, 6, 68, 3, 2, 2, 2, 8, 84, 3, 2, 2, 2, 10, 86, 3, 2, 2, 2, 12, 88, 3, 2, 2, 2, 14, 103, 3, 2, 2, 2, 16, 113, 3, 2, 2, 2, 18, 115, 3, 2, 2, 2, 20, 127, 3, 2, 2, 2, 22, 129, 3, 2, 2, 2, 24, 132, 3, 2, 2, 2, 26, 134, 3, 2, 2, 2, 28, 147, 3, 2, 2, 2, 30, 156, 3, 2, 2, 2, 32, 188, 3, 2, 2, 2, 34, 190, 3, 2, 2, 2, 36, 38, 7, 3, 2, 2, 37, 36, 3, 2, 2, 2, 38, 41, 3, 2, 2, 2, 39, 37, 3, 2, 2, 2, 39, 40, 3, 2, 2, 2, 40, 42, 3, 2, 2, 2, 41, 39, 3, 2, 2, 2, 42, 51, 5, 4, 3, 2, 43, 45, 7, 3, 2, 2, 44, 43, 3, 2, 2, 2, 45, 46, 3, 2, 2, 2, 46, 44, 3, 2, 2, 2, 46, 47, 3, 2, 2, 2, 47, 48, 3, 2, 2, 2, 48, 50, 5, 4, 3, 2, 49, 44, 3, 2, 2, 2, 50, 53, 3, 2, 2, 2, 51, 49, 3, 2, 2, 2, 51, 52, 3, 2, 2, 2, 52, 57, 3, 2, 2, 2, 53, 51, 3, 2, 2, 2, 54, 56, 7, 3, 2, 2, 55, 54, 3, 2, 2, 2, 56, 59, 3, 2, 2, 2, 57, 55, 3, 2, 2, 2, 57, 58, 3, 2, 2, 2, 58, 3, 3, 2, 2, 2, 59, 57, 3, 2, 2, 2, 60, 65, 5, 6, 4, 2, 61, 62, 7, 38, 2, 2, 62, 64, 5, 6, 4, 2, 63, 61, 3, 2, 2, 2, 64, 67, 3, 2, 2, 2, 65, 63, 3, 2, 2, 2, 65, 66, 3, 2, 2, 2, 66, 5, 3, 2, 2, 2, 67, 65, 3, 2, 2, 2, 68, 73, 5, 8, 5, 2, 69, 70, 7, 37, 2, 2, 70, 72, 5, 8, 5, 2, 71, 69, 3, 2, 2, 2, 72, 75, 3, 2, 2, 2, 73, 71, 3, 2, 2, 2, 73, 74, 3, 2, 2, 2, 74, 7, 3, 2, 2, 2, 75, 73, 3, 2, 2, 2, 76, 85, 5, 22, 12, 2, 77, 85, 5, 24, 13, 2, 78, 85, 5, 20, 11, 2, 79, 85, 5, 14, 8, 2, 80, 85, 5, 18, 10, 2, 81, 85, 5, 26, 14, 2, 82, 85, 5, 12, 7, 2, 83, 85, 5, 30, 16, 2, 84, 76, 3, 2, 2, 2, 84, 77, 3, 2, 2, 2, 84, 78, 3, 2, 2, 2, 84, 79, 3, 2, 2, 2, 84, 80, 3, 2, 2, 2, 84, 81, 3, 2, 2, 2, 84, 82, 3, 2, 2, 2, 84, 83, 3, 2, 2, 2, 85, 9, 3, 2, 2, 2, 86, 87, 9, 2, 2, 2, 87, 11, 3, 2, 2, 2, 88, 89, 5, 28, 15, 2, 89, 99, 7, 33, 2, 2, 90, 95, 5, 30, 16, 2, 91, 92, 7, 37, 2, 2, 92, 94, 5, 30, 16, 2, 93, 91, 3, 2, 2, 2, 94, 97, 3, 2, 2, 2, 95, 93, 3, 2, 2, 2, 95, 96, 3, 2, 2, 2, 96, 100, 3, 2, 2, 2, 97, 95, 3, 2, 2, 2, 98, 100, 7, 4, 2, 2, 99, 90, 3, 2, 2, 2, 99, 98, 3, 2, 2, 2, 99, 100, 3, 2, 2, 2, 100, 101, 3, 2, 2, 2, 101, 102, 7, 34, 2, 2, 102, 13, 3, 2, 2, 2, 103, 104, 9, 3, 2, 2, 104, 105, 7, 33, 2, 2, 105, 106, 5, 16, 9, 2, 106, 107, 7, 34, 2, 2, 107, 15, 3, 2, 2, 2, 108, 109, 7, 49, 2, 2, 109, 110, 5, 10, 6, 2, 110, 111, 7, 49, 2, 2, 111, 114, 3, 2, 2, 2, 112, 114, 7, 49, 2, 2, 113, 108, 3, 2, 2, 2, 113, 112, 3, 2, 2, 2, 114, 17, 3, 2, 2, 2, 115, 116, 9, 4, 2, 2, 116, 117, 7, 33, 2, 2, 117, 122, 7, 49, 2, 2, 118, 119, 7, 37, 2, 2, 119, 121, 7, 49, 2, 2, 120, 118, 3, 2, 2, 2, 121, 124, 3, 2, 2, 2, 122, 120, 3, 2, 2, 2, 122, 123, 3, 2, 2, 2, 123, 125, 3, 2, 2, 2, 124, 122, 3, 2, 2, 2, 125, 126, 7, 34, 2, 2, 126, 19, 3, 2, 2, 2, 127, 128, 7, 49, 2, 2, 128, 21, 3, 2, 2, 2, 129, 130, 7, 50, 2, 2, 130, 131, 7, 49, 2, 2, 131, 23, 3, 2, 2, 2, 132, 133, 7, 50, 2, 2, 133, 25, 3, 2, 2, 2, 134, 143, 7, 11, 2, 2, 135, 136, 7, 41, 2, 2, 136, 137, 7, 39, 2, 2, 137, 144, 7, 41, 2, 2, 138, 139, 7, 41, 2, 2, 139, 144, 7, 39, 2, 2, 140, 141, 7, 39, 2, 2, 141, 144, 7, 41, 2, 2, 142, 144, 7, 41, 2, 2, 143, 135, 3, 2, 2, 2, 143, 138, 3, 2, 2, 2, 143, 140, 3, 2, 2, 2, 143, 142, 3, 2, 2, 2, 143, 144, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 146, 7, 36, 2, 2, 146, 27, 3, 2, 2, 2, 147, 148, 9, 5, 2, 2, 148, 29, 3, 2, 2, 2, 149, 150, 8, 16, 1, 2, 150, 157, 7, 49, 2, 2, 151, 157, 5, 32, 17, 2, 152, 153, 5, 34, 18, 2, 153, 154, 5, 30, 16, 11, 154, 157, 3, 2, 2, 2, 155, 157, 5, 12, 7, 2, 156, 149, 3, 2, 2, 2, 156, 151, 3, 2, 2, 2, 156, 152, 3, 2, 2, 2, 156, 155, 3, 2, 2, 2, 157, 185, 3, 2, 2, 2, 158, 159, 12, 10, 2, 2, 159, 160, 7, 20, 2, 2, 160, 184, 5, 30, 16, 11, 161, 162, 12, 9, 2, 2, 162, 163, 9, 6, 2, 2, 163, 184, 5, 30, 16, 10, 164, 165, 12, 8, 2, 2, 165, 166, 9, 7, 2, 2, 166, 184, 5, 30, 16, 9, 167, 168, 12, 7, 2, 2, 168, 169, 9, 8, 2, 2, 169, 184, 5, 30, 16, 8, 170, 171, 12, 6, 2, 2, 171, 172, 9, 9, 2, 2, 172, 184, 5, 30, 16, 7, 173, 177, 12, 5, 2, 2, 174, 178, 7, 48, 2, 2, 175, 178, 7, 47, 2, 2, 176, 178, 3, 2, 2, 2, 177, 174, 3, 2, 2, 2, 177, 175, 3, 2, 2, 2, 177, 176, 3, 2, 2, 2, 178, 179, 3, 2, 2, 2, 179, 184, 5, 30, 16, 6, 180, 181, 12, 4, 2, 2, 181, 182, 7, 28, 2, 2, 182, 184, 5, 30, 16, 5, 183, 158, 3, 2, 2, 2, 183, 161, 3, 2, 2, 2, 183, 164, 3, 2, 2, 2, 183, 167, 3, 2, 2, 2, 183, 170, 3, 2, 2, 2, 183, 173, 3, 2, 2, 2, 183, 180, 3, 2, 2, 2, 184, 187, 3, 2, 2, 2, 185, 183, 3, 2, 2, 2, 185, 186, 3, 2, 2, 2, 186, 31, 3, 2, 2, 2, 187, 185, 3, 2, 2, 2, 188, 189, 9, 10, 2, 2, 189, 33, 3, 2, 2, 2, 190, 191, 9, 11, 2, 2, 191, 35, 3, 2, 2, 2, 18, 39, 46, 51, 57, 65, 73, 84, 95, 99, 113, 122, 143, 156, 177, 183, 185] \ No newline at end of file diff --git a/libsq/slq/SLQ.tokens b/libsq/slq/SLQ.tokens index d0ebe598..b096a9e8 100644 --- a/libsq/slq/SLQ.tokens +++ b/libsq/slq/SLQ.tokens @@ -2,45 +2,90 @@ T__0=1 T__1=2 T__2=3 T__3=4 -ID=5 -WS=6 -LPAR=7 -RPAR=8 -LBRA=9 -RBRA=10 -COMMA=11 -PIPE=12 -COLON=13 -NULL=14 -STRING=15 -INT=16 -NUMBER=17 -LT_EQ=18 -LT=19 -GT_EQ=20 -GT=21 -NEQ=22 -EQ=23 -SEL=24 -DATASOURCE=25 -DOT=26 -VAL=27 -LINECOMMENT=28 -'join'=1 -'JOIN'=2 -'j'=3 -'.['=4 -'('=7 -')'=8 -'['=9 -']'=10 -','=11 -'|'=12 -':'=13 -'<='=18 -'<'=19 -'>='=20 -'>'=21 -'!='=22 -'=='=23 -'.'=26 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +T__11=12 +T__12=13 +T__13=14 +T__14=15 +T__15=16 +T__16=17 +T__17=18 +T__18=19 +T__19=20 +T__20=21 +T__21=22 +T__22=23 +T__23=24 +T__24=25 +T__25=26 +T__26=27 +T__27=28 +ID=29 +WS=30 +LPAR=31 +RPAR=32 +LBRA=33 +RBRA=34 +COMMA=35 +PIPE=36 +COLON=37 +NULL=38 +NN=39 +NUMBER=40 +LT_EQ=41 +LT=42 +GT_EQ=43 +GT=44 +NEQ=45 +EQ=46 +SEL=47 +DATASOURCE=48 +STRING=49 +LINECOMMENT=50 +';'=1 +'*'=2 +'join'=3 +'JOIN'=4 +'j'=5 +'group'=6 +'GROUP'=7 +'g'=8 +'.['=9 +'sum'=10 +'SUM'=11 +'avg'=12 +'AVG'=13 +'count'=14 +'COUNT'=15 +'where'=16 +'WHERE'=17 +'||'=18 +'/'=19 +'%'=20 +'+'=21 +'-'=22 +'<<'=23 +'>>'=24 +'&'=25 +'&&'=26 +'~'=27 +'!'=28 +'('=31 +')'=32 +'['=33 +']'=34 +','=35 +'|'=36 +':'=37 +'<='=41 +'<'=42 +'>='=43 +'>'=44 +'!='=45 +'=='=46 diff --git a/libsq/slq/SLQLexer.interp b/libsq/slq/SLQLexer.interp new file mode 100644 index 00000000..df8a16b0 --- /dev/null +++ b/libsq/slq/SLQLexer.interp @@ -0,0 +1,199 @@ +token literal names: +null +';' +'*' +'join' +'JOIN' +'j' +'group' +'GROUP' +'g' +'.[' +'sum' +'SUM' +'avg' +'AVG' +'count' +'COUNT' +'where' +'WHERE' +'||' +'/' +'%' +'+' +'-' +'<<' +'>>' +'&' +'&&' +'~' +'!' +null +null +'(' +')' +'[' +']' +',' +'|' +':' +null +null +null +'<=' +'<' +'>=' +'>' +'!=' +'==' +null +null +null +null + +token symbolic names: +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +ID +WS +LPAR +RPAR +LBRA +RBRA +COMMA +PIPE +COLON +NULL +NN +NUMBER +LT_EQ +LT +GT_EQ +GT +NEQ +EQ +SEL +DATASOURCE +STRING +LINECOMMENT + +rule names: +T__0 +T__1 +T__2 +T__3 +T__4 +T__5 +T__6 +T__7 +T__8 +T__9 +T__10 +T__11 +T__12 +T__13 +T__14 +T__15 +T__16 +T__17 +T__18 +T__19 +T__20 +T__21 +T__22 +T__23 +T__24 +T__25 +T__26 +T__27 +ID +WS +LPAR +RPAR +LBRA +RBRA +COMMA +PIPE +COLON +NULL +NN +NUMBER +INTF +EXP +LT_EQ +LT +GT_EQ +GT +NEQ +EQ +SEL +DATASOURCE +STRING +ESC +UNICODE +HEX +DIGIT +A +B +C +D +E +F +G +H +I +J +K +L +M +N +O +P +Q +R +S +T +U +V +W +X +Y +Z +LINECOMMENT + +channel names: +DEFAULT_TOKEN_CHANNEL +HIDDEN + +mode names: +DEFAULT_MODE + +atn: +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 52, 466, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 29, 3, 29, 3, 30, 3, 30, 7, 30, 269, 10, 30, 12, 30, 14, 30, 272, 11, 30, 3, 31, 6, 31, 275, 10, 31, 13, 31, 14, 31, 276, 3, 31, 3, 31, 3, 32, 3, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, 35, 3, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 5, 39, 303, 10, 39, 3, 40, 3, 40, 3, 41, 3, 41, 5, 41, 309, 10, 41, 3, 41, 3, 41, 3, 41, 6, 41, 314, 10, 41, 13, 41, 14, 41, 315, 3, 41, 5, 41, 319, 10, 41, 3, 41, 5, 41, 322, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 328, 10, 41, 3, 41, 5, 41, 331, 10, 41, 3, 42, 3, 42, 3, 42, 7, 42, 336, 10, 42, 12, 42, 14, 42, 339, 11, 42, 5, 42, 341, 10, 42, 3, 43, 3, 43, 5, 43, 345, 10, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 7, 50, 369, 10, 50, 12, 50, 14, 50, 372, 11, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 7, 52, 380, 10, 52, 12, 52, 14, 52, 383, 11, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 5, 53, 390, 10, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 59, 3, 59, 3, 60, 3, 60, 3, 61, 3, 61, 3, 62, 3, 62, 3, 63, 3, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 73, 3, 73, 3, 74, 3, 74, 3, 75, 3, 75, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, 3, 80, 3, 81, 3, 81, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 7, 83, 458, 10, 83, 12, 83, 14, 83, 461, 11, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 459, 2, 84, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 2, 85, 2, 87, 43, 89, 44, 91, 45, 93, 46, 95, 47, 97, 48, 99, 49, 101, 50, 103, 51, 105, 2, 107, 2, 109, 2, 111, 2, 113, 2, 115, 2, 117, 2, 119, 2, 121, 2, 123, 2, 125, 2, 127, 2, 129, 2, 131, 2, 133, 2, 135, 2, 137, 2, 139, 2, 141, 2, 143, 2, 145, 2, 147, 2, 149, 2, 151, 2, 153, 2, 155, 2, 157, 2, 159, 2, 161, 2, 163, 2, 165, 52, 3, 2, 37, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 11, 12, 15, 15, 34, 34, 3, 2, 50, 59, 3, 2, 51, 59, 4, 2, 71, 71, 103, 103, 4, 2, 45, 45, 47, 47, 4, 2, 36, 36, 94, 94, 10, 2, 36, 36, 49, 49, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, 118, 5, 2, 50, 59, 67, 72, 99, 104, 4, 2, 67, 67, 99, 99, 4, 2, 68, 68, 100, 100, 4, 2, 69, 69, 101, 101, 4, 2, 70, 70, 102, 102, 4, 2, 72, 72, 104, 104, 4, 2, 73, 73, 105, 105, 4, 2, 74, 74, 106, 106, 4, 2, 75, 75, 107, 107, 4, 2, 76, 76, 108, 108, 4, 2, 77, 77, 109, 109, 4, 2, 78, 78, 110, 110, 4, 2, 79, 79, 111, 111, 4, 2, 80, 80, 112, 112, 4, 2, 81, 81, 113, 113, 4, 2, 82, 82, 114, 114, 4, 2, 83, 83, 115, 115, 4, 2, 84, 84, 116, 116, 4, 2, 85, 85, 117, 117, 4, 2, 86, 86, 118, 118, 4, 2, 87, 87, 119, 119, 4, 2, 88, 88, 120, 120, 4, 2, 89, 89, 121, 121, 4, 2, 90, 90, 122, 122, 4, 2, 91, 91, 123, 123, 4, 2, 92, 92, 124, 124, 2, 452, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 3, 167, 3, 2, 2, 2, 5, 169, 3, 2, 2, 2, 7, 171, 3, 2, 2, 2, 9, 176, 3, 2, 2, 2, 11, 181, 3, 2, 2, 2, 13, 183, 3, 2, 2, 2, 15, 189, 3, 2, 2, 2, 17, 195, 3, 2, 2, 2, 19, 197, 3, 2, 2, 2, 21, 200, 3, 2, 2, 2, 23, 204, 3, 2, 2, 2, 25, 208, 3, 2, 2, 2, 27, 212, 3, 2, 2, 2, 29, 216, 3, 2, 2, 2, 31, 222, 3, 2, 2, 2, 33, 228, 3, 2, 2, 2, 35, 234, 3, 2, 2, 2, 37, 240, 3, 2, 2, 2, 39, 243, 3, 2, 2, 2, 41, 245, 3, 2, 2, 2, 43, 247, 3, 2, 2, 2, 45, 249, 3, 2, 2, 2, 47, 251, 3, 2, 2, 2, 49, 254, 3, 2, 2, 2, 51, 257, 3, 2, 2, 2, 53, 259, 3, 2, 2, 2, 55, 262, 3, 2, 2, 2, 57, 264, 3, 2, 2, 2, 59, 266, 3, 2, 2, 2, 61, 274, 3, 2, 2, 2, 63, 280, 3, 2, 2, 2, 65, 282, 3, 2, 2, 2, 67, 284, 3, 2, 2, 2, 69, 286, 3, 2, 2, 2, 71, 288, 3, 2, 2, 2, 73, 290, 3, 2, 2, 2, 75, 292, 3, 2, 2, 2, 77, 302, 3, 2, 2, 2, 79, 304, 3, 2, 2, 2, 81, 330, 3, 2, 2, 2, 83, 340, 3, 2, 2, 2, 85, 342, 3, 2, 2, 2, 87, 348, 3, 2, 2, 2, 89, 351, 3, 2, 2, 2, 91, 353, 3, 2, 2, 2, 93, 356, 3, 2, 2, 2, 95, 358, 3, 2, 2, 2, 97, 361, 3, 2, 2, 2, 99, 364, 3, 2, 2, 2, 101, 373, 3, 2, 2, 2, 103, 376, 3, 2, 2, 2, 105, 386, 3, 2, 2, 2, 107, 391, 3, 2, 2, 2, 109, 397, 3, 2, 2, 2, 111, 399, 3, 2, 2, 2, 113, 401, 3, 2, 2, 2, 115, 403, 3, 2, 2, 2, 117, 405, 3, 2, 2, 2, 119, 407, 3, 2, 2, 2, 121, 409, 3, 2, 2, 2, 123, 411, 3, 2, 2, 2, 125, 413, 3, 2, 2, 2, 127, 415, 3, 2, 2, 2, 129, 417, 3, 2, 2, 2, 131, 419, 3, 2, 2, 2, 133, 421, 3, 2, 2, 2, 135, 423, 3, 2, 2, 2, 137, 425, 3, 2, 2, 2, 139, 427, 3, 2, 2, 2, 141, 429, 3, 2, 2, 2, 143, 431, 3, 2, 2, 2, 145, 433, 3, 2, 2, 2, 147, 435, 3, 2, 2, 2, 149, 437, 3, 2, 2, 2, 151, 439, 3, 2, 2, 2, 153, 441, 3, 2, 2, 2, 155, 443, 3, 2, 2, 2, 157, 445, 3, 2, 2, 2, 159, 447, 3, 2, 2, 2, 161, 449, 3, 2, 2, 2, 163, 451, 3, 2, 2, 2, 165, 453, 3, 2, 2, 2, 167, 168, 7, 61, 2, 2, 168, 4, 3, 2, 2, 2, 169, 170, 7, 44, 2, 2, 170, 6, 3, 2, 2, 2, 171, 172, 7, 108, 2, 2, 172, 173, 7, 113, 2, 2, 173, 174, 7, 107, 2, 2, 174, 175, 7, 112, 2, 2, 175, 8, 3, 2, 2, 2, 176, 177, 7, 76, 2, 2, 177, 178, 7, 81, 2, 2, 178, 179, 7, 75, 2, 2, 179, 180, 7, 80, 2, 2, 180, 10, 3, 2, 2, 2, 181, 182, 7, 108, 2, 2, 182, 12, 3, 2, 2, 2, 183, 184, 7, 105, 2, 2, 184, 185, 7, 116, 2, 2, 185, 186, 7, 113, 2, 2, 186, 187, 7, 119, 2, 2, 187, 188, 7, 114, 2, 2, 188, 14, 3, 2, 2, 2, 189, 190, 7, 73, 2, 2, 190, 191, 7, 84, 2, 2, 191, 192, 7, 81, 2, 2, 192, 193, 7, 87, 2, 2, 193, 194, 7, 82, 2, 2, 194, 16, 3, 2, 2, 2, 195, 196, 7, 105, 2, 2, 196, 18, 3, 2, 2, 2, 197, 198, 7, 48, 2, 2, 198, 199, 7, 93, 2, 2, 199, 20, 3, 2, 2, 2, 200, 201, 7, 117, 2, 2, 201, 202, 7, 119, 2, 2, 202, 203, 7, 111, 2, 2, 203, 22, 3, 2, 2, 2, 204, 205, 7, 85, 2, 2, 205, 206, 7, 87, 2, 2, 206, 207, 7, 79, 2, 2, 207, 24, 3, 2, 2, 2, 208, 209, 7, 99, 2, 2, 209, 210, 7, 120, 2, 2, 210, 211, 7, 105, 2, 2, 211, 26, 3, 2, 2, 2, 212, 213, 7, 67, 2, 2, 213, 214, 7, 88, 2, 2, 214, 215, 7, 73, 2, 2, 215, 28, 3, 2, 2, 2, 216, 217, 7, 101, 2, 2, 217, 218, 7, 113, 2, 2, 218, 219, 7, 119, 2, 2, 219, 220, 7, 112, 2, 2, 220, 221, 7, 118, 2, 2, 221, 30, 3, 2, 2, 2, 222, 223, 7, 69, 2, 2, 223, 224, 7, 81, 2, 2, 224, 225, 7, 87, 2, 2, 225, 226, 7, 80, 2, 2, 226, 227, 7, 86, 2, 2, 227, 32, 3, 2, 2, 2, 228, 229, 7, 121, 2, 2, 229, 230, 7, 106, 2, 2, 230, 231, 7, 103, 2, 2, 231, 232, 7, 116, 2, 2, 232, 233, 7, 103, 2, 2, 233, 34, 3, 2, 2, 2, 234, 235, 7, 89, 2, 2, 235, 236, 7, 74, 2, 2, 236, 237, 7, 71, 2, 2, 237, 238, 7, 84, 2, 2, 238, 239, 7, 71, 2, 2, 239, 36, 3, 2, 2, 2, 240, 241, 7, 126, 2, 2, 241, 242, 7, 126, 2, 2, 242, 38, 3, 2, 2, 2, 243, 244, 7, 49, 2, 2, 244, 40, 3, 2, 2, 2, 245, 246, 7, 39, 2, 2, 246, 42, 3, 2, 2, 2, 247, 248, 7, 45, 2, 2, 248, 44, 3, 2, 2, 2, 249, 250, 7, 47, 2, 2, 250, 46, 3, 2, 2, 2, 251, 252, 7, 62, 2, 2, 252, 253, 7, 62, 2, 2, 253, 48, 3, 2, 2, 2, 254, 255, 7, 64, 2, 2, 255, 256, 7, 64, 2, 2, 256, 50, 3, 2, 2, 2, 257, 258, 7, 40, 2, 2, 258, 52, 3, 2, 2, 2, 259, 260, 7, 40, 2, 2, 260, 261, 7, 40, 2, 2, 261, 54, 3, 2, 2, 2, 262, 263, 7, 128, 2, 2, 263, 56, 3, 2, 2, 2, 264, 265, 7, 35, 2, 2, 265, 58, 3, 2, 2, 2, 266, 270, 9, 2, 2, 2, 267, 269, 9, 3, 2, 2, 268, 267, 3, 2, 2, 2, 269, 272, 3, 2, 2, 2, 270, 268, 3, 2, 2, 2, 270, 271, 3, 2, 2, 2, 271, 60, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 273, 275, 9, 4, 2, 2, 274, 273, 3, 2, 2, 2, 275, 276, 3, 2, 2, 2, 276, 274, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 279, 8, 31, 2, 2, 279, 62, 3, 2, 2, 2, 280, 281, 7, 42, 2, 2, 281, 64, 3, 2, 2, 2, 282, 283, 7, 43, 2, 2, 283, 66, 3, 2, 2, 2, 284, 285, 7, 93, 2, 2, 285, 68, 3, 2, 2, 2, 286, 287, 7, 95, 2, 2, 287, 70, 3, 2, 2, 2, 288, 289, 7, 46, 2, 2, 289, 72, 3, 2, 2, 2, 290, 291, 7, 126, 2, 2, 291, 74, 3, 2, 2, 2, 292, 293, 7, 60, 2, 2, 293, 76, 3, 2, 2, 2, 294, 295, 7, 112, 2, 2, 295, 296, 7, 119, 2, 2, 296, 297, 7, 110, 2, 2, 297, 303, 7, 110, 2, 2, 298, 299, 7, 80, 2, 2, 299, 300, 7, 87, 2, 2, 300, 301, 7, 78, 2, 2, 301, 303, 7, 78, 2, 2, 302, 294, 3, 2, 2, 2, 302, 298, 3, 2, 2, 2, 303, 78, 3, 2, 2, 2, 304, 305, 5, 83, 42, 2, 305, 80, 3, 2, 2, 2, 306, 331, 5, 79, 40, 2, 307, 309, 7, 47, 2, 2, 308, 307, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, 310, 311, 5, 83, 42, 2, 311, 313, 7, 48, 2, 2, 312, 314, 9, 5, 2, 2, 313, 312, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 313, 3, 2, 2, 2, 315, 316, 3, 2, 2, 2, 316, 318, 3, 2, 2, 2, 317, 319, 5, 85, 43, 2, 318, 317, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 331, 3, 2, 2, 2, 320, 322, 7, 47, 2, 2, 321, 320, 3, 2, 2, 2, 321, 322, 3, 2, 2, 2, 322, 323, 3, 2, 2, 2, 323, 324, 5, 83, 42, 2, 324, 325, 5, 85, 43, 2, 325, 331, 3, 2, 2, 2, 326, 328, 7, 47, 2, 2, 327, 326, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 329, 3, 2, 2, 2, 329, 331, 5, 83, 42, 2, 330, 306, 3, 2, 2, 2, 330, 308, 3, 2, 2, 2, 330, 321, 3, 2, 2, 2, 330, 327, 3, 2, 2, 2, 331, 82, 3, 2, 2, 2, 332, 341, 7, 50, 2, 2, 333, 337, 9, 6, 2, 2, 334, 336, 9, 5, 2, 2, 335, 334, 3, 2, 2, 2, 336, 339, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 337, 338, 3, 2, 2, 2, 338, 341, 3, 2, 2, 2, 339, 337, 3, 2, 2, 2, 340, 332, 3, 2, 2, 2, 340, 333, 3, 2, 2, 2, 341, 84, 3, 2, 2, 2, 342, 344, 9, 7, 2, 2, 343, 345, 9, 8, 2, 2, 344, 343, 3, 2, 2, 2, 344, 345, 3, 2, 2, 2, 345, 346, 3, 2, 2, 2, 346, 347, 5, 83, 42, 2, 347, 86, 3, 2, 2, 2, 348, 349, 7, 62, 2, 2, 349, 350, 7, 63, 2, 2, 350, 88, 3, 2, 2, 2, 351, 352, 7, 62, 2, 2, 352, 90, 3, 2, 2, 2, 353, 354, 7, 64, 2, 2, 354, 355, 7, 63, 2, 2, 355, 92, 3, 2, 2, 2, 356, 357, 7, 64, 2, 2, 357, 94, 3, 2, 2, 2, 358, 359, 7, 35, 2, 2, 359, 360, 7, 63, 2, 2, 360, 96, 3, 2, 2, 2, 361, 362, 7, 63, 2, 2, 362, 363, 7, 63, 2, 2, 363, 98, 3, 2, 2, 2, 364, 365, 7, 48, 2, 2, 365, 370, 5, 59, 30, 2, 366, 367, 7, 48, 2, 2, 367, 369, 5, 59, 30, 2, 368, 366, 3, 2, 2, 2, 369, 372, 3, 2, 2, 2, 370, 368, 3, 2, 2, 2, 370, 371, 3, 2, 2, 2, 371, 100, 3, 2, 2, 2, 372, 370, 3, 2, 2, 2, 373, 374, 7, 66, 2, 2, 374, 375, 5, 59, 30, 2, 375, 102, 3, 2, 2, 2, 376, 381, 7, 36, 2, 2, 377, 380, 5, 105, 53, 2, 378, 380, 10, 9, 2, 2, 379, 377, 3, 2, 2, 2, 379, 378, 3, 2, 2, 2, 380, 383, 3, 2, 2, 2, 381, 379, 3, 2, 2, 2, 381, 382, 3, 2, 2, 2, 382, 384, 3, 2, 2, 2, 383, 381, 3, 2, 2, 2, 384, 385, 7, 36, 2, 2, 385, 104, 3, 2, 2, 2, 386, 389, 7, 94, 2, 2, 387, 390, 9, 10, 2, 2, 388, 390, 5, 107, 54, 2, 389, 387, 3, 2, 2, 2, 389, 388, 3, 2, 2, 2, 390, 106, 3, 2, 2, 2, 391, 392, 7, 119, 2, 2, 392, 393, 5, 109, 55, 2, 393, 394, 5, 109, 55, 2, 394, 395, 5, 109, 55, 2, 395, 396, 5, 109, 55, 2, 396, 108, 3, 2, 2, 2, 397, 398, 9, 11, 2, 2, 398, 110, 3, 2, 2, 2, 399, 400, 9, 5, 2, 2, 400, 112, 3, 2, 2, 2, 401, 402, 9, 12, 2, 2, 402, 114, 3, 2, 2, 2, 403, 404, 9, 13, 2, 2, 404, 116, 3, 2, 2, 2, 405, 406, 9, 14, 2, 2, 406, 118, 3, 2, 2, 2, 407, 408, 9, 15, 2, 2, 408, 120, 3, 2, 2, 2, 409, 410, 9, 7, 2, 2, 410, 122, 3, 2, 2, 2, 411, 412, 9, 16, 2, 2, 412, 124, 3, 2, 2, 2, 413, 414, 9, 17, 2, 2, 414, 126, 3, 2, 2, 2, 415, 416, 9, 18, 2, 2, 416, 128, 3, 2, 2, 2, 417, 418, 9, 19, 2, 2, 418, 130, 3, 2, 2, 2, 419, 420, 9, 20, 2, 2, 420, 132, 3, 2, 2, 2, 421, 422, 9, 21, 2, 2, 422, 134, 3, 2, 2, 2, 423, 424, 9, 22, 2, 2, 424, 136, 3, 2, 2, 2, 425, 426, 9, 23, 2, 2, 426, 138, 3, 2, 2, 2, 427, 428, 9, 24, 2, 2, 428, 140, 3, 2, 2, 2, 429, 430, 9, 25, 2, 2, 430, 142, 3, 2, 2, 2, 431, 432, 9, 26, 2, 2, 432, 144, 3, 2, 2, 2, 433, 434, 9, 27, 2, 2, 434, 146, 3, 2, 2, 2, 435, 436, 9, 28, 2, 2, 436, 148, 3, 2, 2, 2, 437, 438, 9, 29, 2, 2, 438, 150, 3, 2, 2, 2, 439, 440, 9, 30, 2, 2, 440, 152, 3, 2, 2, 2, 441, 442, 9, 31, 2, 2, 442, 154, 3, 2, 2, 2, 443, 444, 9, 32, 2, 2, 444, 156, 3, 2, 2, 2, 445, 446, 9, 33, 2, 2, 446, 158, 3, 2, 2, 2, 447, 448, 9, 34, 2, 2, 448, 160, 3, 2, 2, 2, 449, 450, 9, 35, 2, 2, 450, 162, 3, 2, 2, 2, 451, 452, 9, 36, 2, 2, 452, 164, 3, 2, 2, 2, 453, 454, 7, 49, 2, 2, 454, 455, 7, 49, 2, 2, 455, 459, 3, 2, 2, 2, 456, 458, 11, 2, 2, 2, 457, 456, 3, 2, 2, 2, 458, 461, 3, 2, 2, 2, 459, 460, 3, 2, 2, 2, 459, 457, 3, 2, 2, 2, 460, 462, 3, 2, 2, 2, 461, 459, 3, 2, 2, 2, 462, 463, 7, 12, 2, 2, 463, 464, 3, 2, 2, 2, 464, 465, 8, 83, 2, 2, 465, 166, 3, 2, 2, 2, 20, 2, 270, 276, 302, 308, 315, 318, 321, 327, 330, 337, 340, 344, 370, 379, 381, 389, 459, 3, 8, 2, 2] \ No newline at end of file diff --git a/libsq/slq/SLQLexer.tokens b/libsq/slq/SLQLexer.tokens index d0ebe598..b096a9e8 100644 --- a/libsq/slq/SLQLexer.tokens +++ b/libsq/slq/SLQLexer.tokens @@ -2,45 +2,90 @@ T__0=1 T__1=2 T__2=3 T__3=4 -ID=5 -WS=6 -LPAR=7 -RPAR=8 -LBRA=9 -RBRA=10 -COMMA=11 -PIPE=12 -COLON=13 -NULL=14 -STRING=15 -INT=16 -NUMBER=17 -LT_EQ=18 -LT=19 -GT_EQ=20 -GT=21 -NEQ=22 -EQ=23 -SEL=24 -DATASOURCE=25 -DOT=26 -VAL=27 -LINECOMMENT=28 -'join'=1 -'JOIN'=2 -'j'=3 -'.['=4 -'('=7 -')'=8 -'['=9 -']'=10 -','=11 -'|'=12 -':'=13 -'<='=18 -'<'=19 -'>='=20 -'>'=21 -'!='=22 -'=='=23 -'.'=26 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +T__11=12 +T__12=13 +T__13=14 +T__14=15 +T__15=16 +T__16=17 +T__17=18 +T__18=19 +T__19=20 +T__20=21 +T__21=22 +T__22=23 +T__23=24 +T__24=25 +T__25=26 +T__26=27 +T__27=28 +ID=29 +WS=30 +LPAR=31 +RPAR=32 +LBRA=33 +RBRA=34 +COMMA=35 +PIPE=36 +COLON=37 +NULL=38 +NN=39 +NUMBER=40 +LT_EQ=41 +LT=42 +GT_EQ=43 +GT=44 +NEQ=45 +EQ=46 +SEL=47 +DATASOURCE=48 +STRING=49 +LINECOMMENT=50 +';'=1 +'*'=2 +'join'=3 +'JOIN'=4 +'j'=5 +'group'=6 +'GROUP'=7 +'g'=8 +'.['=9 +'sum'=10 +'SUM'=11 +'avg'=12 +'AVG'=13 +'count'=14 +'COUNT'=15 +'where'=16 +'WHERE'=17 +'||'=18 +'/'=19 +'%'=20 +'+'=21 +'-'=22 +'<<'=23 +'>>'=24 +'&'=25 +'&&'=26 +'~'=27 +'!'=28 +'('=31 +')'=32 +'['=33 +']'=34 +','=35 +'|'=36 +':'=37 +'<='=41 +'<'=42 +'>='=43 +'>'=44 +'!='=45 +'=='=46 diff --git a/libsq/slq/slq_base_listener.go b/libsq/slq/slq_base_listener.go index ee7e72a4..629df393 100644 --- a/libsq/slq/slq_base_listener.go +++ b/libsq/slq/slq_base_listener.go @@ -1,7 +1,7 @@ -// Generated from ../grammar/SLQ.g4 by ANTLR 4.5.3. +// Code generated from /Users/neilotoole/work/moi/go/src/github.com/neilotoole/sq/grammar/SLQ.g4 by ANTLR 4.7.2. DO NOT EDIT. package slq // SLQ -import "github.com/pboyer/antlr4/runtime/Go/antlr" +import "github.com/antlr/antlr4/runtime/Go/antlr" // BaseSLQListener is a complete listener for a parse tree produced by SLQParser. type BaseSLQListener struct{} @@ -20,6 +20,12 @@ func (s *BaseSLQListener) EnterEveryRule(ctx antlr.ParserRuleContext) {} // ExitEveryRule is called when any rule is exited. func (s *BaseSLQListener) ExitEveryRule(ctx antlr.ParserRuleContext) {} +// EnterStmtList is called when production stmtList is entered. +func (s *BaseSLQListener) EnterStmtList(ctx *StmtListContext) {} + +// ExitStmtList is called when production stmtList is exited. +func (s *BaseSLQListener) ExitStmtList(ctx *StmtListContext) {} + // EnterQuery is called when production query is entered. func (s *BaseSLQListener) EnterQuery(ctx *QueryContext) {} @@ -44,17 +50,11 @@ func (s *BaseSLQListener) EnterCmpr(ctx *CmprContext) {} // ExitCmpr is called when production cmpr is exited. func (s *BaseSLQListener) ExitCmpr(ctx *CmprContext) {} -// EnterArgs is called when production args is entered. -func (s *BaseSLQListener) EnterArgs(ctx *ArgsContext) {} +// EnterFn is called when production fn is entered. +func (s *BaseSLQListener) EnterFn(ctx *FnContext) {} -// ExitArgs is called when production args is exited. -func (s *BaseSLQListener) ExitArgs(ctx *ArgsContext) {} - -// EnterArg is called when production arg is entered. -func (s *BaseSLQListener) EnterArg(ctx *ArgContext) {} - -// ExitArg is called when production arg is exited. -func (s *BaseSLQListener) ExitArg(ctx *ArgContext) {} +// ExitFn is called when production fn is exited. +func (s *BaseSLQListener) ExitFn(ctx *FnContext) {} // EnterJoin is called when production join is entered. func (s *BaseSLQListener) EnterJoin(ctx *JoinContext) {} @@ -68,6 +68,12 @@ func (s *BaseSLQListener) EnterJoinConstraint(ctx *JoinConstraintContext) {} // ExitJoinConstraint is called when production joinConstraint is exited. func (s *BaseSLQListener) ExitJoinConstraint(ctx *JoinConstraintContext) {} +// EnterGroup is called when production group is entered. +func (s *BaseSLQListener) EnterGroup(ctx *GroupContext) {} + +// ExitGroup is called when production group is exited. +func (s *BaseSLQListener) ExitGroup(ctx *GroupContext) {} + // EnterSelElement is called when production selElement is entered. func (s *BaseSLQListener) EnterSelElement(ctx *SelElementContext) {} @@ -91,3 +97,27 @@ func (s *BaseSLQListener) EnterRowRange(ctx *RowRangeContext) {} // ExitRowRange is called when production rowRange is exited. func (s *BaseSLQListener) ExitRowRange(ctx *RowRangeContext) {} + +// EnterFnName is called when production fnName is entered. +func (s *BaseSLQListener) EnterFnName(ctx *FnNameContext) {} + +// ExitFnName is called when production fnName is exited. +func (s *BaseSLQListener) ExitFnName(ctx *FnNameContext) {} + +// EnterExpr is called when production expr is entered. +func (s *BaseSLQListener) EnterExpr(ctx *ExprContext) {} + +// ExitExpr is called when production expr is exited. +func (s *BaseSLQListener) ExitExpr(ctx *ExprContext) {} + +// EnterLiteral is called when production literal is entered. +func (s *BaseSLQListener) EnterLiteral(ctx *LiteralContext) {} + +// ExitLiteral is called when production literal is exited. +func (s *BaseSLQListener) ExitLiteral(ctx *LiteralContext) {} + +// EnterUnaryOperator is called when production unaryOperator is entered. +func (s *BaseSLQListener) EnterUnaryOperator(ctx *UnaryOperatorContext) {} + +// ExitUnaryOperator is called when production unaryOperator is exited. +func (s *BaseSLQListener) ExitUnaryOperator(ctx *UnaryOperatorContext) {} diff --git a/libsq/slq/slq_base_visitor.go b/libsq/slq/slq_base_visitor.go index 753ea57d..f8a7a327 100644 --- a/libsq/slq/slq_base_visitor.go +++ b/libsq/slq/slq_base_visitor.go @@ -1,12 +1,16 @@ -// Generated from ../grammar/SLQ.g4 by ANTLR 4.5.3. +// Code generated from /Users/neilotoole/work/moi/go/src/github.com/neilotoole/sq/grammar/SLQ.g4 by ANTLR 4.7.2. DO NOT EDIT. package slq // SLQ -import "github.com/pboyer/antlr4/runtime/Go/antlr" +import "github.com/antlr/antlr4/runtime/Go/antlr" type BaseSLQVisitor struct { *antlr.BaseParseTreeVisitor } +func (v *BaseSLQVisitor) VisitStmtList(ctx *StmtListContext) interface{} { + return v.VisitChildren(ctx) +} + func (v *BaseSLQVisitor) VisitQuery(ctx *QueryContext) interface{} { return v.VisitChildren(ctx) } @@ -23,11 +27,7 @@ func (v *BaseSLQVisitor) VisitCmpr(ctx *CmprContext) interface{} { return v.VisitChildren(ctx) } -func (v *BaseSLQVisitor) VisitArgs(ctx *ArgsContext) interface{} { - return v.VisitChildren(ctx) -} - -func (v *BaseSLQVisitor) VisitArg(ctx *ArgContext) interface{} { +func (v *BaseSLQVisitor) VisitFn(ctx *FnContext) interface{} { return v.VisitChildren(ctx) } @@ -39,6 +39,10 @@ func (v *BaseSLQVisitor) VisitJoinConstraint(ctx *JoinConstraintContext) interfa return v.VisitChildren(ctx) } +func (v *BaseSLQVisitor) VisitGroup(ctx *GroupContext) interface{} { + return v.VisitChildren(ctx) +} + func (v *BaseSLQVisitor) VisitSelElement(ctx *SelElementContext) interface{} { return v.VisitChildren(ctx) } @@ -54,3 +58,19 @@ func (v *BaseSLQVisitor) VisitDsElement(ctx *DsElementContext) interface{} { func (v *BaseSLQVisitor) VisitRowRange(ctx *RowRangeContext) interface{} { return v.VisitChildren(ctx) } + +func (v *BaseSLQVisitor) VisitFnName(ctx *FnNameContext) interface{} { + return v.VisitChildren(ctx) +} + +func (v *BaseSLQVisitor) VisitExpr(ctx *ExprContext) interface{} { + return v.VisitChildren(ctx) +} + +func (v *BaseSLQVisitor) VisitLiteral(ctx *LiteralContext) interface{} { + return v.VisitChildren(ctx) +} + +func (v *BaseSLQVisitor) VisitUnaryOperator(ctx *UnaryOperatorContext) interface{} { + return v.VisitChildren(ctx) +} diff --git a/libsq/slq/slq_lexer.go b/libsq/slq/slq_lexer.go index 510065b2..829627fd 100644 --- a/libsq/slq/slq_lexer.go +++ b/libsq/slq/slq_lexer.go @@ -1,4 +1,4 @@ -// Generated from ../grammar/SLQ.g4 by ANTLR 4.5.3. +// Code generated from /Users/neilotoole/work/moi/go/src/github.com/neilotoole/sq/grammar/SLQ.g4 by ANTLR 4.7.2. DO NOT EDIT. package slq @@ -6,7 +6,7 @@ import ( "fmt" "unicode" - "github.com/pboyer/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr" ) // Suppress unused import error @@ -14,164 +14,276 @@ var _ = fmt.Printf var _ = unicode.IsLetter var serializedLexerAtn = []uint16{ - 3, 1072, 54993, 33286, 44333, 17431, 44785, 36224, 43741, 2, 30, 242, 8, - 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, - 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, - 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, - 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, - 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, - 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, - 34, 9, 34, 3, 2, 3, 2, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, - 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 7, 6, 87, 10, 6, 12, 6, 14, 6, - 90, 11, 6, 3, 7, 6, 7, 93, 10, 7, 13, 7, 14, 7, 94, 3, 7, 3, 7, 3, 8, 3, - 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, - 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, - 15, 121, 10, 15, 3, 16, 3, 16, 3, 16, 7, 16, 126, 10, 16, 12, 16, 14, 16, - 129, 11, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 5, 17, 136, 10, 17, 3, - 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 7, 20, - 148, 10, 20, 12, 20, 14, 20, 151, 11, 20, 3, 21, 5, 21, 154, 10, 21, 3, - 21, 3, 21, 3, 21, 6, 21, 159, 10, 21, 13, 21, 14, 21, 160, 3, 21, 5, 21, - 164, 10, 21, 3, 21, 5, 21, 167, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 5, - 21, 173, 10, 21, 3, 21, 5, 21, 176, 10, 21, 3, 22, 3, 22, 3, 22, 7, 22, - 181, 10, 22, 12, 22, 14, 22, 184, 11, 22, 5, 22, 186, 10, 22, 3, 23, 3, - 23, 5, 23, 190, 10, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, - 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, - 29, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 214, 10, 30, 12, 30, 14, 30, 217, - 11, 30, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, - 5, 33, 228, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 234, 10, 34, 12, - 34, 14, 34, 237, 11, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 235, 2, 35, 3, - 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, - 25, 14, 27, 15, 29, 16, 31, 17, 33, 2, 35, 2, 37, 2, 39, 18, 41, 19, 43, - 2, 45, 2, 47, 20, 49, 21, 51, 22, 53, 23, 55, 24, 57, 25, 59, 26, 61, 27, - 63, 28, 65, 29, 67, 30, 3, 2, 12, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, - 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 36, - 36, 94, 94, 10, 2, 36, 36, 49, 49, 94, 94, 100, 100, 104, 104, 112, 112, - 116, 116, 118, 118, 5, 2, 50, 59, 67, 72, 99, 104, 3, 2, 50, 59, 3, 2, - 51, 59, 4, 2, 71, 71, 103, 103, 4, 2, 45, 45, 47, 47, 258, 2, 3, 3, 2, - 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, - 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, - 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, - 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, - 41, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, - 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, - 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, - 2, 2, 3, 69, 3, 2, 2, 2, 5, 74, 3, 2, 2, 2, 7, 79, 3, 2, 2, 2, 9, 81, 3, - 2, 2, 2, 11, 84, 3, 2, 2, 2, 13, 92, 3, 2, 2, 2, 15, 98, 3, 2, 2, 2, 17, - 100, 3, 2, 2, 2, 19, 102, 3, 2, 2, 2, 21, 104, 3, 2, 2, 2, 23, 106, 3, - 2, 2, 2, 25, 108, 3, 2, 2, 2, 27, 110, 3, 2, 2, 2, 29, 120, 3, 2, 2, 2, - 31, 122, 3, 2, 2, 2, 33, 132, 3, 2, 2, 2, 35, 137, 3, 2, 2, 2, 37, 143, - 3, 2, 2, 2, 39, 145, 3, 2, 2, 2, 41, 175, 3, 2, 2, 2, 43, 185, 3, 2, 2, - 2, 45, 187, 3, 2, 2, 2, 47, 193, 3, 2, 2, 2, 49, 196, 3, 2, 2, 2, 51, 198, - 3, 2, 2, 2, 53, 201, 3, 2, 2, 2, 55, 203, 3, 2, 2, 2, 57, 206, 3, 2, 2, - 2, 59, 209, 3, 2, 2, 2, 61, 218, 3, 2, 2, 2, 63, 221, 3, 2, 2, 2, 65, 227, - 3, 2, 2, 2, 67, 229, 3, 2, 2, 2, 69, 70, 7, 108, 2, 2, 70, 71, 7, 113, - 2, 2, 71, 72, 7, 107, 2, 2, 72, 73, 7, 112, 2, 2, 73, 4, 3, 2, 2, 2, 74, - 75, 7, 76, 2, 2, 75, 76, 7, 81, 2, 2, 76, 77, 7, 75, 2, 2, 77, 78, 7, 80, - 2, 2, 78, 6, 3, 2, 2, 2, 79, 80, 7, 108, 2, 2, 80, 8, 3, 2, 2, 2, 81, 82, - 7, 48, 2, 2, 82, 83, 7, 93, 2, 2, 83, 10, 3, 2, 2, 2, 84, 88, 9, 2, 2, - 2, 85, 87, 9, 3, 2, 2, 86, 85, 3, 2, 2, 2, 87, 90, 3, 2, 2, 2, 88, 86, - 3, 2, 2, 2, 88, 89, 3, 2, 2, 2, 89, 12, 3, 2, 2, 2, 90, 88, 3, 2, 2, 2, - 91, 93, 9, 4, 2, 2, 92, 91, 3, 2, 2, 2, 93, 94, 3, 2, 2, 2, 94, 92, 3, - 2, 2, 2, 94, 95, 3, 2, 2, 2, 95, 96, 3, 2, 2, 2, 96, 97, 8, 7, 2, 2, 97, - 14, 3, 2, 2, 2, 98, 99, 7, 42, 2, 2, 99, 16, 3, 2, 2, 2, 100, 101, 7, 43, - 2, 2, 101, 18, 3, 2, 2, 2, 102, 103, 7, 93, 2, 2, 103, 20, 3, 2, 2, 2, - 104, 105, 7, 95, 2, 2, 105, 22, 3, 2, 2, 2, 106, 107, 7, 46, 2, 2, 107, - 24, 3, 2, 2, 2, 108, 109, 7, 126, 2, 2, 109, 26, 3, 2, 2, 2, 110, 111, - 7, 60, 2, 2, 111, 28, 3, 2, 2, 2, 112, 113, 7, 112, 2, 2, 113, 114, 7, - 119, 2, 2, 114, 115, 7, 110, 2, 2, 115, 121, 7, 110, 2, 2, 116, 117, 7, - 80, 2, 2, 117, 118, 7, 87, 2, 2, 118, 119, 7, 78, 2, 2, 119, 121, 7, 78, - 2, 2, 120, 112, 3, 2, 2, 2, 120, 116, 3, 2, 2, 2, 121, 30, 3, 2, 2, 2, - 122, 127, 7, 36, 2, 2, 123, 126, 5, 33, 17, 2, 124, 126, 10, 5, 2, 2, 125, - 123, 3, 2, 2, 2, 125, 124, 3, 2, 2, 2, 126, 129, 3, 2, 2, 2, 127, 125, - 3, 2, 2, 2, 127, 128, 3, 2, 2, 2, 128, 130, 3, 2, 2, 2, 129, 127, 3, 2, - 2, 2, 130, 131, 7, 36, 2, 2, 131, 32, 3, 2, 2, 2, 132, 135, 7, 94, 2, 2, - 133, 136, 9, 6, 2, 2, 134, 136, 5, 35, 18, 2, 135, 133, 3, 2, 2, 2, 135, - 134, 3, 2, 2, 2, 136, 34, 3, 2, 2, 2, 137, 138, 7, 119, 2, 2, 138, 139, - 5, 37, 19, 2, 139, 140, 5, 37, 19, 2, 140, 141, 5, 37, 19, 2, 141, 142, - 5, 37, 19, 2, 142, 36, 3, 2, 2, 2, 143, 144, 9, 7, 2, 2, 144, 38, 3, 2, - 2, 2, 145, 149, 9, 8, 2, 2, 146, 148, 9, 8, 2, 2, 147, 146, 3, 2, 2, 2, - 148, 151, 3, 2, 2, 2, 149, 147, 3, 2, 2, 2, 149, 150, 3, 2, 2, 2, 150, - 40, 3, 2, 2, 2, 151, 149, 3, 2, 2, 2, 152, 154, 7, 47, 2, 2, 153, 152, - 3, 2, 2, 2, 153, 154, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 156, 5, 43, - 22, 2, 156, 158, 7, 48, 2, 2, 157, 159, 9, 8, 2, 2, 158, 157, 3, 2, 2, - 2, 159, 160, 3, 2, 2, 2, 160, 158, 3, 2, 2, 2, 160, 161, 3, 2, 2, 2, 161, - 163, 3, 2, 2, 2, 162, 164, 5, 45, 23, 2, 163, 162, 3, 2, 2, 2, 163, 164, - 3, 2, 2, 2, 164, 176, 3, 2, 2, 2, 165, 167, 7, 47, 2, 2, 166, 165, 3, 2, - 2, 2, 166, 167, 3, 2, 2, 2, 167, 168, 3, 2, 2, 2, 168, 169, 5, 43, 22, - 2, 169, 170, 5, 45, 23, 2, 170, 176, 3, 2, 2, 2, 171, 173, 7, 47, 2, 2, - 172, 171, 3, 2, 2, 2, 172, 173, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, - 176, 5, 43, 22, 2, 175, 153, 3, 2, 2, 2, 175, 166, 3, 2, 2, 2, 175, 172, - 3, 2, 2, 2, 176, 42, 3, 2, 2, 2, 177, 186, 7, 50, 2, 2, 178, 182, 9, 9, - 2, 2, 179, 181, 9, 8, 2, 2, 180, 179, 3, 2, 2, 2, 181, 184, 3, 2, 2, 2, - 182, 180, 3, 2, 2, 2, 182, 183, 3, 2, 2, 2, 183, 186, 3, 2, 2, 2, 184, - 182, 3, 2, 2, 2, 185, 177, 3, 2, 2, 2, 185, 178, 3, 2, 2, 2, 186, 44, 3, - 2, 2, 2, 187, 189, 9, 10, 2, 2, 188, 190, 9, 11, 2, 2, 189, 188, 3, 2, - 2, 2, 189, 190, 3, 2, 2, 2, 190, 191, 3, 2, 2, 2, 191, 192, 5, 43, 22, - 2, 192, 46, 3, 2, 2, 2, 193, 194, 7, 62, 2, 2, 194, 195, 7, 63, 2, 2, 195, - 48, 3, 2, 2, 2, 196, 197, 7, 62, 2, 2, 197, 50, 3, 2, 2, 2, 198, 199, 7, - 64, 2, 2, 199, 200, 7, 63, 2, 2, 200, 52, 3, 2, 2, 2, 201, 202, 7, 64, - 2, 2, 202, 54, 3, 2, 2, 2, 203, 204, 7, 35, 2, 2, 204, 205, 7, 63, 2, 2, - 205, 56, 3, 2, 2, 2, 206, 207, 7, 63, 2, 2, 207, 208, 7, 63, 2, 2, 208, - 58, 3, 2, 2, 2, 209, 210, 7, 48, 2, 2, 210, 215, 5, 11, 6, 2, 211, 212, - 7, 48, 2, 2, 212, 214, 5, 11, 6, 2, 213, 211, 3, 2, 2, 2, 214, 217, 3, - 2, 2, 2, 215, 213, 3, 2, 2, 2, 215, 216, 3, 2, 2, 2, 216, 60, 3, 2, 2, - 2, 217, 215, 3, 2, 2, 2, 218, 219, 7, 66, 2, 2, 219, 220, 5, 11, 6, 2, - 220, 62, 3, 2, 2, 2, 221, 222, 7, 48, 2, 2, 222, 64, 3, 2, 2, 2, 223, 228, - 5, 31, 16, 2, 224, 228, 5, 41, 21, 2, 225, 228, 5, 29, 15, 2, 226, 228, - 5, 59, 30, 2, 227, 223, 3, 2, 2, 2, 227, 224, 3, 2, 2, 2, 227, 225, 3, - 2, 2, 2, 227, 226, 3, 2, 2, 2, 228, 66, 3, 2, 2, 2, 229, 230, 7, 49, 2, - 2, 230, 231, 7, 49, 2, 2, 231, 235, 3, 2, 2, 2, 232, 234, 11, 2, 2, 2, - 233, 232, 3, 2, 2, 2, 234, 237, 3, 2, 2, 2, 235, 236, 3, 2, 2, 2, 235, - 233, 3, 2, 2, 2, 236, 238, 3, 2, 2, 2, 237, 235, 3, 2, 2, 2, 238, 239, - 7, 12, 2, 2, 239, 240, 3, 2, 2, 2, 240, 241, 8, 34, 2, 2, 241, 68, 3, 2, - 2, 2, 22, 2, 88, 94, 120, 125, 127, 135, 149, 153, 160, 163, 166, 172, - 175, 182, 185, 189, 215, 227, 235, 3, 8, 2, 2, + 3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 52, 466, + 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, + 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, + 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, + 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, + 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, + 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, + 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, + 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, + 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, + 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, + 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, + 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, + 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, + 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, + 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, + 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, + 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, + 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, + 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, + 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 14, 3, 15, 3, + 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, + 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, + 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 22, 3, 22, + 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, + 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 29, 3, 29, 3, 30, 3, 30, 7, 30, 269, + 10, 30, 12, 30, 14, 30, 272, 11, 30, 3, 31, 6, 31, 275, 10, 31, 13, 31, + 14, 31, 276, 3, 31, 3, 31, 3, 32, 3, 32, 3, 33, 3, 33, 3, 34, 3, 34, 3, + 35, 3, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, + 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 5, 39, 303, 10, 39, 3, 40, 3, 40, 3, + 41, 3, 41, 5, 41, 309, 10, 41, 3, 41, 3, 41, 3, 41, 6, 41, 314, 10, 41, + 13, 41, 14, 41, 315, 3, 41, 5, 41, 319, 10, 41, 3, 41, 5, 41, 322, 10, + 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 328, 10, 41, 3, 41, 5, 41, 331, + 10, 41, 3, 42, 3, 42, 3, 42, 7, 42, 336, 10, 42, 12, 42, 14, 42, 339, 11, + 42, 5, 42, 341, 10, 42, 3, 43, 3, 43, 5, 43, 345, 10, 43, 3, 43, 3, 43, + 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, + 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 7, 50, + 369, 10, 50, 12, 50, 14, 50, 372, 11, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, + 52, 3, 52, 7, 52, 380, 10, 52, 12, 52, 14, 52, 383, 11, 52, 3, 52, 3, 52, + 3, 53, 3, 53, 3, 53, 5, 53, 390, 10, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, + 54, 3, 54, 3, 55, 3, 55, 3, 56, 3, 56, 3, 57, 3, 57, 3, 58, 3, 58, 3, 59, + 3, 59, 3, 60, 3, 60, 3, 61, 3, 61, 3, 62, 3, 62, 3, 63, 3, 63, 3, 64, 3, + 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, + 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 73, 3, 73, 3, 74, 3, 74, 3, + 75, 3, 75, 3, 76, 3, 76, 3, 77, 3, 77, 3, 78, 3, 78, 3, 79, 3, 79, 3, 80, + 3, 80, 3, 81, 3, 81, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 7, 83, 458, + 10, 83, 12, 83, 14, 83, 461, 11, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 459, + 2, 84, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, + 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, + 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, + 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, + 39, 77, 40, 79, 41, 81, 42, 83, 2, 85, 2, 87, 43, 89, 44, 91, 45, 93, 46, + 95, 47, 97, 48, 99, 49, 101, 50, 103, 51, 105, 2, 107, 2, 109, 2, 111, + 2, 113, 2, 115, 2, 117, 2, 119, 2, 121, 2, 123, 2, 125, 2, 127, 2, 129, + 2, 131, 2, 133, 2, 135, 2, 137, 2, 139, 2, 141, 2, 143, 2, 145, 2, 147, + 2, 149, 2, 151, 2, 153, 2, 155, 2, 157, 2, 159, 2, 161, 2, 163, 2, 165, + 52, 3, 2, 37, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, + 97, 99, 124, 5, 2, 11, 12, 15, 15, 34, 34, 3, 2, 50, 59, 3, 2, 51, 59, + 4, 2, 71, 71, 103, 103, 4, 2, 45, 45, 47, 47, 4, 2, 36, 36, 94, 94, 10, + 2, 36, 36, 49, 49, 94, 94, 100, 100, 104, 104, 112, 112, 116, 116, 118, + 118, 5, 2, 50, 59, 67, 72, 99, 104, 4, 2, 67, 67, 99, 99, 4, 2, 68, 68, + 100, 100, 4, 2, 69, 69, 101, 101, 4, 2, 70, 70, 102, 102, 4, 2, 72, 72, + 104, 104, 4, 2, 73, 73, 105, 105, 4, 2, 74, 74, 106, 106, 4, 2, 75, 75, + 107, 107, 4, 2, 76, 76, 108, 108, 4, 2, 77, 77, 109, 109, 4, 2, 78, 78, + 110, 110, 4, 2, 79, 79, 111, 111, 4, 2, 80, 80, 112, 112, 4, 2, 81, 81, + 113, 113, 4, 2, 82, 82, 114, 114, 4, 2, 83, 83, 115, 115, 4, 2, 84, 84, + 116, 116, 4, 2, 85, 85, 117, 117, 4, 2, 86, 86, 118, 118, 4, 2, 87, 87, + 119, 119, 4, 2, 88, 88, 120, 120, 4, 2, 89, 89, 121, 121, 4, 2, 90, 90, + 122, 122, 4, 2, 91, 91, 123, 123, 4, 2, 92, 92, 124, 124, 2, 452, 2, 3, + 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, + 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, + 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, + 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, + 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, + 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, + 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, + 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, + 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, + 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, + 2, 2, 81, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, + 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, + 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 3, + 167, 3, 2, 2, 2, 5, 169, 3, 2, 2, 2, 7, 171, 3, 2, 2, 2, 9, 176, 3, 2, + 2, 2, 11, 181, 3, 2, 2, 2, 13, 183, 3, 2, 2, 2, 15, 189, 3, 2, 2, 2, 17, + 195, 3, 2, 2, 2, 19, 197, 3, 2, 2, 2, 21, 200, 3, 2, 2, 2, 23, 204, 3, + 2, 2, 2, 25, 208, 3, 2, 2, 2, 27, 212, 3, 2, 2, 2, 29, 216, 3, 2, 2, 2, + 31, 222, 3, 2, 2, 2, 33, 228, 3, 2, 2, 2, 35, 234, 3, 2, 2, 2, 37, 240, + 3, 2, 2, 2, 39, 243, 3, 2, 2, 2, 41, 245, 3, 2, 2, 2, 43, 247, 3, 2, 2, + 2, 45, 249, 3, 2, 2, 2, 47, 251, 3, 2, 2, 2, 49, 254, 3, 2, 2, 2, 51, 257, + 3, 2, 2, 2, 53, 259, 3, 2, 2, 2, 55, 262, 3, 2, 2, 2, 57, 264, 3, 2, 2, + 2, 59, 266, 3, 2, 2, 2, 61, 274, 3, 2, 2, 2, 63, 280, 3, 2, 2, 2, 65, 282, + 3, 2, 2, 2, 67, 284, 3, 2, 2, 2, 69, 286, 3, 2, 2, 2, 71, 288, 3, 2, 2, + 2, 73, 290, 3, 2, 2, 2, 75, 292, 3, 2, 2, 2, 77, 302, 3, 2, 2, 2, 79, 304, + 3, 2, 2, 2, 81, 330, 3, 2, 2, 2, 83, 340, 3, 2, 2, 2, 85, 342, 3, 2, 2, + 2, 87, 348, 3, 2, 2, 2, 89, 351, 3, 2, 2, 2, 91, 353, 3, 2, 2, 2, 93, 356, + 3, 2, 2, 2, 95, 358, 3, 2, 2, 2, 97, 361, 3, 2, 2, 2, 99, 364, 3, 2, 2, + 2, 101, 373, 3, 2, 2, 2, 103, 376, 3, 2, 2, 2, 105, 386, 3, 2, 2, 2, 107, + 391, 3, 2, 2, 2, 109, 397, 3, 2, 2, 2, 111, 399, 3, 2, 2, 2, 113, 401, + 3, 2, 2, 2, 115, 403, 3, 2, 2, 2, 117, 405, 3, 2, 2, 2, 119, 407, 3, 2, + 2, 2, 121, 409, 3, 2, 2, 2, 123, 411, 3, 2, 2, 2, 125, 413, 3, 2, 2, 2, + 127, 415, 3, 2, 2, 2, 129, 417, 3, 2, 2, 2, 131, 419, 3, 2, 2, 2, 133, + 421, 3, 2, 2, 2, 135, 423, 3, 2, 2, 2, 137, 425, 3, 2, 2, 2, 139, 427, + 3, 2, 2, 2, 141, 429, 3, 2, 2, 2, 143, 431, 3, 2, 2, 2, 145, 433, 3, 2, + 2, 2, 147, 435, 3, 2, 2, 2, 149, 437, 3, 2, 2, 2, 151, 439, 3, 2, 2, 2, + 153, 441, 3, 2, 2, 2, 155, 443, 3, 2, 2, 2, 157, 445, 3, 2, 2, 2, 159, + 447, 3, 2, 2, 2, 161, 449, 3, 2, 2, 2, 163, 451, 3, 2, 2, 2, 165, 453, + 3, 2, 2, 2, 167, 168, 7, 61, 2, 2, 168, 4, 3, 2, 2, 2, 169, 170, 7, 44, + 2, 2, 170, 6, 3, 2, 2, 2, 171, 172, 7, 108, 2, 2, 172, 173, 7, 113, 2, + 2, 173, 174, 7, 107, 2, 2, 174, 175, 7, 112, 2, 2, 175, 8, 3, 2, 2, 2, + 176, 177, 7, 76, 2, 2, 177, 178, 7, 81, 2, 2, 178, 179, 7, 75, 2, 2, 179, + 180, 7, 80, 2, 2, 180, 10, 3, 2, 2, 2, 181, 182, 7, 108, 2, 2, 182, 12, + 3, 2, 2, 2, 183, 184, 7, 105, 2, 2, 184, 185, 7, 116, 2, 2, 185, 186, 7, + 113, 2, 2, 186, 187, 7, 119, 2, 2, 187, 188, 7, 114, 2, 2, 188, 14, 3, + 2, 2, 2, 189, 190, 7, 73, 2, 2, 190, 191, 7, 84, 2, 2, 191, 192, 7, 81, + 2, 2, 192, 193, 7, 87, 2, 2, 193, 194, 7, 82, 2, 2, 194, 16, 3, 2, 2, 2, + 195, 196, 7, 105, 2, 2, 196, 18, 3, 2, 2, 2, 197, 198, 7, 48, 2, 2, 198, + 199, 7, 93, 2, 2, 199, 20, 3, 2, 2, 2, 200, 201, 7, 117, 2, 2, 201, 202, + 7, 119, 2, 2, 202, 203, 7, 111, 2, 2, 203, 22, 3, 2, 2, 2, 204, 205, 7, + 85, 2, 2, 205, 206, 7, 87, 2, 2, 206, 207, 7, 79, 2, 2, 207, 24, 3, 2, + 2, 2, 208, 209, 7, 99, 2, 2, 209, 210, 7, 120, 2, 2, 210, 211, 7, 105, + 2, 2, 211, 26, 3, 2, 2, 2, 212, 213, 7, 67, 2, 2, 213, 214, 7, 88, 2, 2, + 214, 215, 7, 73, 2, 2, 215, 28, 3, 2, 2, 2, 216, 217, 7, 101, 2, 2, 217, + 218, 7, 113, 2, 2, 218, 219, 7, 119, 2, 2, 219, 220, 7, 112, 2, 2, 220, + 221, 7, 118, 2, 2, 221, 30, 3, 2, 2, 2, 222, 223, 7, 69, 2, 2, 223, 224, + 7, 81, 2, 2, 224, 225, 7, 87, 2, 2, 225, 226, 7, 80, 2, 2, 226, 227, 7, + 86, 2, 2, 227, 32, 3, 2, 2, 2, 228, 229, 7, 121, 2, 2, 229, 230, 7, 106, + 2, 2, 230, 231, 7, 103, 2, 2, 231, 232, 7, 116, 2, 2, 232, 233, 7, 103, + 2, 2, 233, 34, 3, 2, 2, 2, 234, 235, 7, 89, 2, 2, 235, 236, 7, 74, 2, 2, + 236, 237, 7, 71, 2, 2, 237, 238, 7, 84, 2, 2, 238, 239, 7, 71, 2, 2, 239, + 36, 3, 2, 2, 2, 240, 241, 7, 126, 2, 2, 241, 242, 7, 126, 2, 2, 242, 38, + 3, 2, 2, 2, 243, 244, 7, 49, 2, 2, 244, 40, 3, 2, 2, 2, 245, 246, 7, 39, + 2, 2, 246, 42, 3, 2, 2, 2, 247, 248, 7, 45, 2, 2, 248, 44, 3, 2, 2, 2, + 249, 250, 7, 47, 2, 2, 250, 46, 3, 2, 2, 2, 251, 252, 7, 62, 2, 2, 252, + 253, 7, 62, 2, 2, 253, 48, 3, 2, 2, 2, 254, 255, 7, 64, 2, 2, 255, 256, + 7, 64, 2, 2, 256, 50, 3, 2, 2, 2, 257, 258, 7, 40, 2, 2, 258, 52, 3, 2, + 2, 2, 259, 260, 7, 40, 2, 2, 260, 261, 7, 40, 2, 2, 261, 54, 3, 2, 2, 2, + 262, 263, 7, 128, 2, 2, 263, 56, 3, 2, 2, 2, 264, 265, 7, 35, 2, 2, 265, + 58, 3, 2, 2, 2, 266, 270, 9, 2, 2, 2, 267, 269, 9, 3, 2, 2, 268, 267, 3, + 2, 2, 2, 269, 272, 3, 2, 2, 2, 270, 268, 3, 2, 2, 2, 270, 271, 3, 2, 2, + 2, 271, 60, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 273, 275, 9, 4, 2, 2, 274, + 273, 3, 2, 2, 2, 275, 276, 3, 2, 2, 2, 276, 274, 3, 2, 2, 2, 276, 277, + 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 279, 8, 31, 2, 2, 279, 62, 3, 2, + 2, 2, 280, 281, 7, 42, 2, 2, 281, 64, 3, 2, 2, 2, 282, 283, 7, 43, 2, 2, + 283, 66, 3, 2, 2, 2, 284, 285, 7, 93, 2, 2, 285, 68, 3, 2, 2, 2, 286, 287, + 7, 95, 2, 2, 287, 70, 3, 2, 2, 2, 288, 289, 7, 46, 2, 2, 289, 72, 3, 2, + 2, 2, 290, 291, 7, 126, 2, 2, 291, 74, 3, 2, 2, 2, 292, 293, 7, 60, 2, + 2, 293, 76, 3, 2, 2, 2, 294, 295, 7, 112, 2, 2, 295, 296, 7, 119, 2, 2, + 296, 297, 7, 110, 2, 2, 297, 303, 7, 110, 2, 2, 298, 299, 7, 80, 2, 2, + 299, 300, 7, 87, 2, 2, 300, 301, 7, 78, 2, 2, 301, 303, 7, 78, 2, 2, 302, + 294, 3, 2, 2, 2, 302, 298, 3, 2, 2, 2, 303, 78, 3, 2, 2, 2, 304, 305, 5, + 83, 42, 2, 305, 80, 3, 2, 2, 2, 306, 331, 5, 79, 40, 2, 307, 309, 7, 47, + 2, 2, 308, 307, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 310, 3, 2, 2, 2, + 310, 311, 5, 83, 42, 2, 311, 313, 7, 48, 2, 2, 312, 314, 9, 5, 2, 2, 313, + 312, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 313, 3, 2, 2, 2, 315, 316, + 3, 2, 2, 2, 316, 318, 3, 2, 2, 2, 317, 319, 5, 85, 43, 2, 318, 317, 3, + 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 331, 3, 2, 2, 2, 320, 322, 7, 47, 2, + 2, 321, 320, 3, 2, 2, 2, 321, 322, 3, 2, 2, 2, 322, 323, 3, 2, 2, 2, 323, + 324, 5, 83, 42, 2, 324, 325, 5, 85, 43, 2, 325, 331, 3, 2, 2, 2, 326, 328, + 7, 47, 2, 2, 327, 326, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 329, 3, 2, + 2, 2, 329, 331, 5, 83, 42, 2, 330, 306, 3, 2, 2, 2, 330, 308, 3, 2, 2, + 2, 330, 321, 3, 2, 2, 2, 330, 327, 3, 2, 2, 2, 331, 82, 3, 2, 2, 2, 332, + 341, 7, 50, 2, 2, 333, 337, 9, 6, 2, 2, 334, 336, 9, 5, 2, 2, 335, 334, + 3, 2, 2, 2, 336, 339, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 337, 338, 3, 2, + 2, 2, 338, 341, 3, 2, 2, 2, 339, 337, 3, 2, 2, 2, 340, 332, 3, 2, 2, 2, + 340, 333, 3, 2, 2, 2, 341, 84, 3, 2, 2, 2, 342, 344, 9, 7, 2, 2, 343, 345, + 9, 8, 2, 2, 344, 343, 3, 2, 2, 2, 344, 345, 3, 2, 2, 2, 345, 346, 3, 2, + 2, 2, 346, 347, 5, 83, 42, 2, 347, 86, 3, 2, 2, 2, 348, 349, 7, 62, 2, + 2, 349, 350, 7, 63, 2, 2, 350, 88, 3, 2, 2, 2, 351, 352, 7, 62, 2, 2, 352, + 90, 3, 2, 2, 2, 353, 354, 7, 64, 2, 2, 354, 355, 7, 63, 2, 2, 355, 92, + 3, 2, 2, 2, 356, 357, 7, 64, 2, 2, 357, 94, 3, 2, 2, 2, 358, 359, 7, 35, + 2, 2, 359, 360, 7, 63, 2, 2, 360, 96, 3, 2, 2, 2, 361, 362, 7, 63, 2, 2, + 362, 363, 7, 63, 2, 2, 363, 98, 3, 2, 2, 2, 364, 365, 7, 48, 2, 2, 365, + 370, 5, 59, 30, 2, 366, 367, 7, 48, 2, 2, 367, 369, 5, 59, 30, 2, 368, + 366, 3, 2, 2, 2, 369, 372, 3, 2, 2, 2, 370, 368, 3, 2, 2, 2, 370, 371, + 3, 2, 2, 2, 371, 100, 3, 2, 2, 2, 372, 370, 3, 2, 2, 2, 373, 374, 7, 66, + 2, 2, 374, 375, 5, 59, 30, 2, 375, 102, 3, 2, 2, 2, 376, 381, 7, 36, 2, + 2, 377, 380, 5, 105, 53, 2, 378, 380, 10, 9, 2, 2, 379, 377, 3, 2, 2, 2, + 379, 378, 3, 2, 2, 2, 380, 383, 3, 2, 2, 2, 381, 379, 3, 2, 2, 2, 381, + 382, 3, 2, 2, 2, 382, 384, 3, 2, 2, 2, 383, 381, 3, 2, 2, 2, 384, 385, + 7, 36, 2, 2, 385, 104, 3, 2, 2, 2, 386, 389, 7, 94, 2, 2, 387, 390, 9, + 10, 2, 2, 388, 390, 5, 107, 54, 2, 389, 387, 3, 2, 2, 2, 389, 388, 3, 2, + 2, 2, 390, 106, 3, 2, 2, 2, 391, 392, 7, 119, 2, 2, 392, 393, 5, 109, 55, + 2, 393, 394, 5, 109, 55, 2, 394, 395, 5, 109, 55, 2, 395, 396, 5, 109, + 55, 2, 396, 108, 3, 2, 2, 2, 397, 398, 9, 11, 2, 2, 398, 110, 3, 2, 2, + 2, 399, 400, 9, 5, 2, 2, 400, 112, 3, 2, 2, 2, 401, 402, 9, 12, 2, 2, 402, + 114, 3, 2, 2, 2, 403, 404, 9, 13, 2, 2, 404, 116, 3, 2, 2, 2, 405, 406, + 9, 14, 2, 2, 406, 118, 3, 2, 2, 2, 407, 408, 9, 15, 2, 2, 408, 120, 3, + 2, 2, 2, 409, 410, 9, 7, 2, 2, 410, 122, 3, 2, 2, 2, 411, 412, 9, 16, 2, + 2, 412, 124, 3, 2, 2, 2, 413, 414, 9, 17, 2, 2, 414, 126, 3, 2, 2, 2, 415, + 416, 9, 18, 2, 2, 416, 128, 3, 2, 2, 2, 417, 418, 9, 19, 2, 2, 418, 130, + 3, 2, 2, 2, 419, 420, 9, 20, 2, 2, 420, 132, 3, 2, 2, 2, 421, 422, 9, 21, + 2, 2, 422, 134, 3, 2, 2, 2, 423, 424, 9, 22, 2, 2, 424, 136, 3, 2, 2, 2, + 425, 426, 9, 23, 2, 2, 426, 138, 3, 2, 2, 2, 427, 428, 9, 24, 2, 2, 428, + 140, 3, 2, 2, 2, 429, 430, 9, 25, 2, 2, 430, 142, 3, 2, 2, 2, 431, 432, + 9, 26, 2, 2, 432, 144, 3, 2, 2, 2, 433, 434, 9, 27, 2, 2, 434, 146, 3, + 2, 2, 2, 435, 436, 9, 28, 2, 2, 436, 148, 3, 2, 2, 2, 437, 438, 9, 29, + 2, 2, 438, 150, 3, 2, 2, 2, 439, 440, 9, 30, 2, 2, 440, 152, 3, 2, 2, 2, + 441, 442, 9, 31, 2, 2, 442, 154, 3, 2, 2, 2, 443, 444, 9, 32, 2, 2, 444, + 156, 3, 2, 2, 2, 445, 446, 9, 33, 2, 2, 446, 158, 3, 2, 2, 2, 447, 448, + 9, 34, 2, 2, 448, 160, 3, 2, 2, 2, 449, 450, 9, 35, 2, 2, 450, 162, 3, + 2, 2, 2, 451, 452, 9, 36, 2, 2, 452, 164, 3, 2, 2, 2, 453, 454, 7, 49, + 2, 2, 454, 455, 7, 49, 2, 2, 455, 459, 3, 2, 2, 2, 456, 458, 11, 2, 2, + 2, 457, 456, 3, 2, 2, 2, 458, 461, 3, 2, 2, 2, 459, 460, 3, 2, 2, 2, 459, + 457, 3, 2, 2, 2, 460, 462, 3, 2, 2, 2, 461, 459, 3, 2, 2, 2, 462, 463, + 7, 12, 2, 2, 463, 464, 3, 2, 2, 2, 464, 465, 8, 83, 2, 2, 465, 166, 3, + 2, 2, 2, 20, 2, 270, 276, 302, 308, 315, 318, 321, 327, 330, 337, 340, + 344, 370, 379, 381, 389, 459, 3, 8, 2, 2, } var lexerDeserializer = antlr.NewATNDeserializer(nil) var lexerAtn = lexerDeserializer.DeserializeFromUInt16(serializedLexerAtn) +var lexerChannelNames = []string{ + "DEFAULT_TOKEN_CHANNEL", "HIDDEN", +} + var lexerModeNames = []string{ "DEFAULT_MODE", } var lexerLiteralNames = []string{ - "", "'join'", "'JOIN'", "'j'", "'.['", "", "", "'('", "')'", "'['", "']'", - "','", "'|'", "':'", "", "", "", "", "'<='", "'<'", "'>='", "'>'", "'!='", - "'=='", "", "", "'.'", + "", "';'", "'*'", "'join'", "'JOIN'", "'j'", "'group'", "'GROUP'", "'g'", + "'.['", "'sum'", "'SUM'", "'avg'", "'AVG'", "'count'", "'COUNT'", "'where'", + "'WHERE'", "'||'", "'/'", "'%'", "'+'", "'-'", "'<<'", "'>>'", "'&'", "'&&'", + "'~'", "'!'", "", "", "'('", "')'", "'['", "']'", "','", "'|'", "':'", + "", "", "", "'<='", "'<'", "'>='", "'>'", "'!='", "'=='", } var lexerSymbolicNames = []string{ - "", "", "", "", "", "ID", "WS", "LPAR", "RPAR", "LBRA", "RBRA", "COMMA", - "PIPE", "COLON", "NULL", "STRING", "INT", "NUMBER", "LT_EQ", "LT", "GT_EQ", - "GT", "NEQ", "EQ", "SEL", "DATASOURCE", "DOT", "VAL", "LINECOMMENT", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", + "", "", "", "", "", "", "", "", "", "", "", "ID", "WS", "LPAR", "RPAR", + "LBRA", "RBRA", "COMMA", "PIPE", "COLON", "NULL", "NN", "NUMBER", "LT_EQ", + "LT", "GT_EQ", "GT", "NEQ", "EQ", "SEL", "DATASOURCE", "STRING", "LINECOMMENT", } var lexerRuleNames = []string{ - "T__0", "T__1", "T__2", "T__3", "ID", "WS", "LPAR", "RPAR", "LBRA", "RBRA", - "COMMA", "PIPE", "COLON", "NULL", "STRING", "ESC", "UNICODE", "HEX", "INT", - "NUMBER", "INTF", "EXP", "LT_EQ", "LT", "GT_EQ", "GT", "NEQ", "EQ", "SEL", - "DATASOURCE", "DOT", "VAL", "LINECOMMENT", + "T__0", "T__1", "T__2", "T__3", "T__4", "T__5", "T__6", "T__7", "T__8", + "T__9", "T__10", "T__11", "T__12", "T__13", "T__14", "T__15", "T__16", + "T__17", "T__18", "T__19", "T__20", "T__21", "T__22", "T__23", "T__24", + "T__25", "T__26", "T__27", "ID", "WS", "LPAR", "RPAR", "LBRA", "RBRA", + "COMMA", "PIPE", "COLON", "NULL", "NN", "NUMBER", "INTF", "EXP", "LT_EQ", + "LT", "GT_EQ", "GT", "NEQ", "EQ", "SEL", "DATASOURCE", "STRING", "ESC", + "UNICODE", "HEX", "DIGIT", "A", "B", "C", "D", "E", "F", "G", "H", "I", + "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", + "Y", "Z", "LINECOMMENT", } type SLQLexer struct { *antlr.BaseLexer - modeNames []string + channelNames []string + modeNames []string // TODO: EOF string } -func NewSLQLexer(input antlr.CharStream) *SLQLexer { - var lexerDecisionToDFA = make([]*antlr.DFA, len(lexerAtn.DecisionToState)) +var lexerDecisionToDFA = make([]*antlr.DFA, len(lexerAtn.DecisionToState)) +func init() { for index, ds := range lexerAtn.DecisionToState { lexerDecisionToDFA[index] = antlr.NewDFA(ds, index) } +} + +func NewSLQLexer(input antlr.CharStream) *SLQLexer { l := new(SLQLexer) l.BaseLexer = antlr.NewBaseLexer(input) l.Interpreter = antlr.NewLexerATNSimulator(l, lexerAtn, lexerDecisionToDFA, antlr.NewPredictionContextCache()) + l.channelNames = lexerChannelNames l.modeNames = lexerModeNames l.RuleNames = lexerRuleNames l.LiteralNames = lexerLiteralNames @@ -188,28 +300,50 @@ const ( SLQLexerT__1 = 2 SLQLexerT__2 = 3 SLQLexerT__3 = 4 - SLQLexerID = 5 - SLQLexerWS = 6 - SLQLexerLPAR = 7 - SLQLexerRPAR = 8 - SLQLexerLBRA = 9 - SLQLexerRBRA = 10 - SLQLexerCOMMA = 11 - SLQLexerPIPE = 12 - SLQLexerCOLON = 13 - SLQLexerNULL = 14 - SLQLexerSTRING = 15 - SLQLexerINT = 16 - SLQLexerNUMBER = 17 - SLQLexerLT_EQ = 18 - SLQLexerLT = 19 - SLQLexerGT_EQ = 20 - SLQLexerGT = 21 - SLQLexerNEQ = 22 - SLQLexerEQ = 23 - SLQLexerSEL = 24 - SLQLexerDATASOURCE = 25 - SLQLexerDOT = 26 - SLQLexerVAL = 27 - SLQLexerLINECOMMENT = 28 + SLQLexerT__4 = 5 + SLQLexerT__5 = 6 + SLQLexerT__6 = 7 + SLQLexerT__7 = 8 + SLQLexerT__8 = 9 + SLQLexerT__9 = 10 + SLQLexerT__10 = 11 + SLQLexerT__11 = 12 + SLQLexerT__12 = 13 + SLQLexerT__13 = 14 + SLQLexerT__14 = 15 + SLQLexerT__15 = 16 + SLQLexerT__16 = 17 + SLQLexerT__17 = 18 + SLQLexerT__18 = 19 + SLQLexerT__19 = 20 + SLQLexerT__20 = 21 + SLQLexerT__21 = 22 + SLQLexerT__22 = 23 + SLQLexerT__23 = 24 + SLQLexerT__24 = 25 + SLQLexerT__25 = 26 + SLQLexerT__26 = 27 + SLQLexerT__27 = 28 + SLQLexerID = 29 + SLQLexerWS = 30 + SLQLexerLPAR = 31 + SLQLexerRPAR = 32 + SLQLexerLBRA = 33 + SLQLexerRBRA = 34 + SLQLexerCOMMA = 35 + SLQLexerPIPE = 36 + SLQLexerCOLON = 37 + SLQLexerNULL = 38 + SLQLexerNN = 39 + SLQLexerNUMBER = 40 + SLQLexerLT_EQ = 41 + SLQLexerLT = 42 + SLQLexerGT_EQ = 43 + SLQLexerGT = 44 + SLQLexerNEQ = 45 + SLQLexerEQ = 46 + SLQLexerSEL = 47 + SLQLexerDATASOURCE = 48 + SLQLexerSTRING = 49 + SLQLexerLINECOMMENT = 50 ) diff --git a/libsq/slq/slq_listener.go b/libsq/slq/slq_listener.go index e363d2c1..2626a7d7 100644 --- a/libsq/slq/slq_listener.go +++ b/libsq/slq/slq_listener.go @@ -1,12 +1,15 @@ -// Generated from ../grammar/SLQ.g4 by ANTLR 4.5.3. +// Code generated from /Users/neilotoole/work/moi/go/src/github.com/neilotoole/sq/grammar/SLQ.g4 by ANTLR 4.7.2. DO NOT EDIT. package slq // SLQ -import "github.com/pboyer/antlr4/runtime/Go/antlr" +import "github.com/antlr/antlr4/runtime/Go/antlr" // SLQListener is a complete listener for a parse tree produced by SLQParser. type SLQListener interface { antlr.ParseTreeListener + // EnterStmtList is called when entering the stmtList production. + EnterStmtList(c *StmtListContext) + // EnterQuery is called when entering the query production. EnterQuery(c *QueryContext) @@ -19,11 +22,8 @@ type SLQListener interface { // EnterCmpr is called when entering the cmpr production. EnterCmpr(c *CmprContext) - // EnterArgs is called when entering the args production. - EnterArgs(c *ArgsContext) - - // EnterArg is called when entering the arg production. - EnterArg(c *ArgContext) + // EnterFn is called when entering the fn production. + EnterFn(c *FnContext) // EnterJoin is called when entering the join production. EnterJoin(c *JoinContext) @@ -31,6 +31,9 @@ type SLQListener interface { // EnterJoinConstraint is called when entering the joinConstraint production. EnterJoinConstraint(c *JoinConstraintContext) + // EnterGroup is called when entering the group production. + EnterGroup(c *GroupContext) + // EnterSelElement is called when entering the selElement production. EnterSelElement(c *SelElementContext) @@ -43,6 +46,21 @@ type SLQListener interface { // EnterRowRange is called when entering the rowRange production. EnterRowRange(c *RowRangeContext) + // EnterFnName is called when entering the fnName production. + EnterFnName(c *FnNameContext) + + // EnterExpr is called when entering the expr production. + EnterExpr(c *ExprContext) + + // EnterLiteral is called when entering the literal production. + EnterLiteral(c *LiteralContext) + + // EnterUnaryOperator is called when entering the unaryOperator production. + EnterUnaryOperator(c *UnaryOperatorContext) + + // ExitStmtList is called when exiting the stmtList production. + ExitStmtList(c *StmtListContext) + // ExitQuery is called when exiting the query production. ExitQuery(c *QueryContext) @@ -55,11 +73,8 @@ type SLQListener interface { // ExitCmpr is called when exiting the cmpr production. ExitCmpr(c *CmprContext) - // ExitArgs is called when exiting the args production. - ExitArgs(c *ArgsContext) - - // ExitArg is called when exiting the arg production. - ExitArg(c *ArgContext) + // ExitFn is called when exiting the fn production. + ExitFn(c *FnContext) // ExitJoin is called when exiting the join production. ExitJoin(c *JoinContext) @@ -67,6 +82,9 @@ type SLQListener interface { // ExitJoinConstraint is called when exiting the joinConstraint production. ExitJoinConstraint(c *JoinConstraintContext) + // ExitGroup is called when exiting the group production. + ExitGroup(c *GroupContext) + // ExitSelElement is called when exiting the selElement production. ExitSelElement(c *SelElementContext) @@ -78,4 +96,16 @@ type SLQListener interface { // ExitRowRange is called when exiting the rowRange production. ExitRowRange(c *RowRangeContext) + + // ExitFnName is called when exiting the fnName production. + ExitFnName(c *FnNameContext) + + // ExitExpr is called when exiting the expr production. + ExitExpr(c *ExprContext) + + // ExitLiteral is called when exiting the literal production. + ExitLiteral(c *LiteralContext) + + // ExitUnaryOperator is called when exiting the unaryOperator production. + ExitUnaryOperator(c *UnaryOperatorContext) } diff --git a/libsq/slq/slq_parser.go b/libsq/slq/slq_parser.go index 793762a6..7e348f13 100644 --- a/libsq/slq/slq_parser.go +++ b/libsq/slq/slq_parser.go @@ -1,4 +1,4 @@ -// Generated from ../grammar/SLQ.g4 by ANTLR 4.5.3. +// Code generated from /Users/neilotoole/work/moi/go/src/github.com/neilotoole/sq/grammar/SLQ.g4 by ANTLR 4.7.2. DO NOT EDIT. package slq // SLQ import ( @@ -6,7 +6,7 @@ import ( "reflect" "strconv" - "github.com/pboyer/antlr4/runtime/Go/antlr" + "github.com/antlr/antlr4/runtime/Go/antlr" ) // Suppress unused import errors @@ -15,66 +15,122 @@ var _ = reflect.Copy var _ = strconv.Itoa var parserATN = []uint16{ - 3, 1072, 54993, 33286, 44333, 17431, 44785, 36224, 43741, 3, 30, 97, 4, - 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, - 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, - 13, 3, 2, 3, 2, 3, 2, 7, 2, 30, 10, 2, 12, 2, 14, 2, 33, 11, 2, 3, 3, 3, - 3, 3, 3, 7, 3, 38, 10, 3, 12, 3, 14, 3, 41, 11, 3, 3, 4, 3, 4, 3, 4, 3, - 4, 3, 4, 5, 4, 48, 10, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 7, 6, 55, 10, 6, - 12, 6, 14, 6, 58, 11, 6, 5, 6, 60, 10, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, - 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 74, 10, 9, 3, 10, 3, 10, - 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, - 13, 3, 13, 3, 13, 3, 13, 3, 13, 5, 13, 93, 10, 13, 3, 13, 3, 13, 3, 13, - 2, 2, 14, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 2, 5, 3, 2, 20, 25, - 4, 2, 7, 7, 26, 26, 3, 2, 3, 5, 97, 2, 26, 3, 2, 2, 2, 4, 34, 3, 2, 2, - 2, 6, 47, 3, 2, 2, 2, 8, 49, 3, 2, 2, 2, 10, 59, 3, 2, 2, 2, 12, 61, 3, - 2, 2, 2, 14, 63, 3, 2, 2, 2, 16, 73, 3, 2, 2, 2, 18, 75, 3, 2, 2, 2, 20, - 77, 3, 2, 2, 2, 22, 80, 3, 2, 2, 2, 24, 82, 3, 2, 2, 2, 26, 31, 5, 4, 3, - 2, 27, 28, 7, 14, 2, 2, 28, 30, 5, 4, 3, 2, 29, 27, 3, 2, 2, 2, 30, 33, - 3, 2, 2, 2, 31, 29, 3, 2, 2, 2, 31, 32, 3, 2, 2, 2, 32, 3, 3, 2, 2, 2, - 33, 31, 3, 2, 2, 2, 34, 39, 5, 6, 4, 2, 35, 36, 7, 13, 2, 2, 36, 38, 5, - 6, 4, 2, 37, 35, 3, 2, 2, 2, 38, 41, 3, 2, 2, 2, 39, 37, 3, 2, 2, 2, 39, - 40, 3, 2, 2, 2, 40, 5, 3, 2, 2, 2, 41, 39, 3, 2, 2, 2, 42, 48, 5, 20, 11, - 2, 43, 48, 5, 22, 12, 2, 44, 48, 5, 18, 10, 2, 45, 48, 5, 14, 8, 2, 46, - 48, 5, 24, 13, 2, 47, 42, 3, 2, 2, 2, 47, 43, 3, 2, 2, 2, 47, 44, 3, 2, - 2, 2, 47, 45, 3, 2, 2, 2, 47, 46, 3, 2, 2, 2, 48, 7, 3, 2, 2, 2, 49, 50, - 9, 2, 2, 2, 50, 9, 3, 2, 2, 2, 51, 56, 5, 12, 7, 2, 52, 53, 7, 13, 2, 2, - 53, 55, 5, 12, 7, 2, 54, 52, 3, 2, 2, 2, 55, 58, 3, 2, 2, 2, 56, 54, 3, - 2, 2, 2, 56, 57, 3, 2, 2, 2, 57, 60, 3, 2, 2, 2, 58, 56, 3, 2, 2, 2, 59, - 51, 3, 2, 2, 2, 59, 60, 3, 2, 2, 2, 60, 11, 3, 2, 2, 2, 61, 62, 9, 3, 2, - 2, 62, 13, 3, 2, 2, 2, 63, 64, 9, 4, 2, 2, 64, 65, 7, 9, 2, 2, 65, 66, - 5, 16, 9, 2, 66, 67, 7, 10, 2, 2, 67, 15, 3, 2, 2, 2, 68, 69, 7, 26, 2, - 2, 69, 70, 5, 8, 5, 2, 70, 71, 7, 26, 2, 2, 71, 74, 3, 2, 2, 2, 72, 74, - 7, 26, 2, 2, 73, 68, 3, 2, 2, 2, 73, 72, 3, 2, 2, 2, 74, 17, 3, 2, 2, 2, - 75, 76, 7, 26, 2, 2, 76, 19, 3, 2, 2, 2, 77, 78, 7, 27, 2, 2, 78, 79, 7, - 26, 2, 2, 79, 21, 3, 2, 2, 2, 80, 81, 7, 27, 2, 2, 81, 23, 3, 2, 2, 2, - 82, 92, 7, 6, 2, 2, 83, 84, 7, 18, 2, 2, 84, 85, 7, 15, 2, 2, 85, 93, 7, - 18, 2, 2, 86, 87, 7, 18, 2, 2, 87, 93, 7, 15, 2, 2, 88, 89, 7, 15, 2, 2, - 89, 93, 7, 18, 2, 2, 90, 93, 7, 18, 2, 2, 91, 93, 3, 2, 2, 2, 92, 83, 3, - 2, 2, 2, 92, 86, 3, 2, 2, 2, 92, 88, 3, 2, 2, 2, 92, 90, 3, 2, 2, 2, 92, - 91, 3, 2, 2, 2, 93, 94, 3, 2, 2, 2, 94, 95, 7, 12, 2, 2, 95, 25, 3, 2, - 2, 2, 9, 31, 39, 47, 56, 59, 73, 92, + 3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 52, 193, + 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, + 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, + 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, + 18, 3, 2, 7, 2, 38, 10, 2, 12, 2, 14, 2, 41, 11, 2, 3, 2, 3, 2, 6, 2, 45, + 10, 2, 13, 2, 14, 2, 46, 3, 2, 7, 2, 50, 10, 2, 12, 2, 14, 2, 53, 11, 2, + 3, 2, 7, 2, 56, 10, 2, 12, 2, 14, 2, 59, 11, 2, 3, 3, 3, 3, 3, 3, 7, 3, + 64, 10, 3, 12, 3, 14, 3, 67, 11, 3, 3, 4, 3, 4, 3, 4, 7, 4, 72, 10, 4, + 12, 4, 14, 4, 75, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, + 5, 5, 85, 10, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 7, 7, 94, 10, + 7, 12, 7, 14, 7, 97, 11, 7, 3, 7, 5, 7, 100, 10, 7, 3, 7, 3, 7, 3, 8, 3, + 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 5, 9, 114, 10, 9, 3, + 10, 3, 10, 3, 10, 3, 10, 3, 10, 7, 10, 121, 10, 10, 12, 10, 14, 10, 124, + 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, + 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 3, 14, 5, 14, 144, + 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, + 3, 16, 3, 16, 5, 16, 157, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, + 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, + 3, 16, 3, 16, 3, 16, 5, 16, 178, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, + 16, 184, 10, 16, 12, 16, 14, 16, 187, 11, 16, 3, 17, 3, 17, 3, 18, 3, 18, + 3, 18, 2, 3, 30, 19, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, + 30, 32, 34, 2, 12, 3, 2, 43, 48, 3, 2, 5, 7, 3, 2, 8, 10, 3, 2, 12, 19, + 4, 2, 4, 4, 21, 22, 3, 2, 23, 24, 3, 2, 25, 27, 3, 2, 43, 46, 4, 2, 40, + 42, 51, 51, 4, 2, 23, 24, 29, 30, 2, 209, 2, 39, 3, 2, 2, 2, 4, 60, 3, + 2, 2, 2, 6, 68, 3, 2, 2, 2, 8, 84, 3, 2, 2, 2, 10, 86, 3, 2, 2, 2, 12, + 88, 3, 2, 2, 2, 14, 103, 3, 2, 2, 2, 16, 113, 3, 2, 2, 2, 18, 115, 3, 2, + 2, 2, 20, 127, 3, 2, 2, 2, 22, 129, 3, 2, 2, 2, 24, 132, 3, 2, 2, 2, 26, + 134, 3, 2, 2, 2, 28, 147, 3, 2, 2, 2, 30, 156, 3, 2, 2, 2, 32, 188, 3, + 2, 2, 2, 34, 190, 3, 2, 2, 2, 36, 38, 7, 3, 2, 2, 37, 36, 3, 2, 2, 2, 38, + 41, 3, 2, 2, 2, 39, 37, 3, 2, 2, 2, 39, 40, 3, 2, 2, 2, 40, 42, 3, 2, 2, + 2, 41, 39, 3, 2, 2, 2, 42, 51, 5, 4, 3, 2, 43, 45, 7, 3, 2, 2, 44, 43, + 3, 2, 2, 2, 45, 46, 3, 2, 2, 2, 46, 44, 3, 2, 2, 2, 46, 47, 3, 2, 2, 2, + 47, 48, 3, 2, 2, 2, 48, 50, 5, 4, 3, 2, 49, 44, 3, 2, 2, 2, 50, 53, 3, + 2, 2, 2, 51, 49, 3, 2, 2, 2, 51, 52, 3, 2, 2, 2, 52, 57, 3, 2, 2, 2, 53, + 51, 3, 2, 2, 2, 54, 56, 7, 3, 2, 2, 55, 54, 3, 2, 2, 2, 56, 59, 3, 2, 2, + 2, 57, 55, 3, 2, 2, 2, 57, 58, 3, 2, 2, 2, 58, 3, 3, 2, 2, 2, 59, 57, 3, + 2, 2, 2, 60, 65, 5, 6, 4, 2, 61, 62, 7, 38, 2, 2, 62, 64, 5, 6, 4, 2, 63, + 61, 3, 2, 2, 2, 64, 67, 3, 2, 2, 2, 65, 63, 3, 2, 2, 2, 65, 66, 3, 2, 2, + 2, 66, 5, 3, 2, 2, 2, 67, 65, 3, 2, 2, 2, 68, 73, 5, 8, 5, 2, 69, 70, 7, + 37, 2, 2, 70, 72, 5, 8, 5, 2, 71, 69, 3, 2, 2, 2, 72, 75, 3, 2, 2, 2, 73, + 71, 3, 2, 2, 2, 73, 74, 3, 2, 2, 2, 74, 7, 3, 2, 2, 2, 75, 73, 3, 2, 2, + 2, 76, 85, 5, 22, 12, 2, 77, 85, 5, 24, 13, 2, 78, 85, 5, 20, 11, 2, 79, + 85, 5, 14, 8, 2, 80, 85, 5, 18, 10, 2, 81, 85, 5, 26, 14, 2, 82, 85, 5, + 12, 7, 2, 83, 85, 5, 30, 16, 2, 84, 76, 3, 2, 2, 2, 84, 77, 3, 2, 2, 2, + 84, 78, 3, 2, 2, 2, 84, 79, 3, 2, 2, 2, 84, 80, 3, 2, 2, 2, 84, 81, 3, + 2, 2, 2, 84, 82, 3, 2, 2, 2, 84, 83, 3, 2, 2, 2, 85, 9, 3, 2, 2, 2, 86, + 87, 9, 2, 2, 2, 87, 11, 3, 2, 2, 2, 88, 89, 5, 28, 15, 2, 89, 99, 7, 33, + 2, 2, 90, 95, 5, 30, 16, 2, 91, 92, 7, 37, 2, 2, 92, 94, 5, 30, 16, 2, + 93, 91, 3, 2, 2, 2, 94, 97, 3, 2, 2, 2, 95, 93, 3, 2, 2, 2, 95, 96, 3, + 2, 2, 2, 96, 100, 3, 2, 2, 2, 97, 95, 3, 2, 2, 2, 98, 100, 7, 4, 2, 2, + 99, 90, 3, 2, 2, 2, 99, 98, 3, 2, 2, 2, 99, 100, 3, 2, 2, 2, 100, 101, + 3, 2, 2, 2, 101, 102, 7, 34, 2, 2, 102, 13, 3, 2, 2, 2, 103, 104, 9, 3, + 2, 2, 104, 105, 7, 33, 2, 2, 105, 106, 5, 16, 9, 2, 106, 107, 7, 34, 2, + 2, 107, 15, 3, 2, 2, 2, 108, 109, 7, 49, 2, 2, 109, 110, 5, 10, 6, 2, 110, + 111, 7, 49, 2, 2, 111, 114, 3, 2, 2, 2, 112, 114, 7, 49, 2, 2, 113, 108, + 3, 2, 2, 2, 113, 112, 3, 2, 2, 2, 114, 17, 3, 2, 2, 2, 115, 116, 9, 4, + 2, 2, 116, 117, 7, 33, 2, 2, 117, 122, 7, 49, 2, 2, 118, 119, 7, 37, 2, + 2, 119, 121, 7, 49, 2, 2, 120, 118, 3, 2, 2, 2, 121, 124, 3, 2, 2, 2, 122, + 120, 3, 2, 2, 2, 122, 123, 3, 2, 2, 2, 123, 125, 3, 2, 2, 2, 124, 122, + 3, 2, 2, 2, 125, 126, 7, 34, 2, 2, 126, 19, 3, 2, 2, 2, 127, 128, 7, 49, + 2, 2, 128, 21, 3, 2, 2, 2, 129, 130, 7, 50, 2, 2, 130, 131, 7, 49, 2, 2, + 131, 23, 3, 2, 2, 2, 132, 133, 7, 50, 2, 2, 133, 25, 3, 2, 2, 2, 134, 143, + 7, 11, 2, 2, 135, 136, 7, 41, 2, 2, 136, 137, 7, 39, 2, 2, 137, 144, 7, + 41, 2, 2, 138, 139, 7, 41, 2, 2, 139, 144, 7, 39, 2, 2, 140, 141, 7, 39, + 2, 2, 141, 144, 7, 41, 2, 2, 142, 144, 7, 41, 2, 2, 143, 135, 3, 2, 2, + 2, 143, 138, 3, 2, 2, 2, 143, 140, 3, 2, 2, 2, 143, 142, 3, 2, 2, 2, 143, + 144, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 146, 7, 36, 2, 2, 146, 27, + 3, 2, 2, 2, 147, 148, 9, 5, 2, 2, 148, 29, 3, 2, 2, 2, 149, 150, 8, 16, + 1, 2, 150, 157, 7, 49, 2, 2, 151, 157, 5, 32, 17, 2, 152, 153, 5, 34, 18, + 2, 153, 154, 5, 30, 16, 11, 154, 157, 3, 2, 2, 2, 155, 157, 5, 12, 7, 2, + 156, 149, 3, 2, 2, 2, 156, 151, 3, 2, 2, 2, 156, 152, 3, 2, 2, 2, 156, + 155, 3, 2, 2, 2, 157, 185, 3, 2, 2, 2, 158, 159, 12, 10, 2, 2, 159, 160, + 7, 20, 2, 2, 160, 184, 5, 30, 16, 11, 161, 162, 12, 9, 2, 2, 162, 163, + 9, 6, 2, 2, 163, 184, 5, 30, 16, 10, 164, 165, 12, 8, 2, 2, 165, 166, 9, + 7, 2, 2, 166, 184, 5, 30, 16, 9, 167, 168, 12, 7, 2, 2, 168, 169, 9, 8, + 2, 2, 169, 184, 5, 30, 16, 8, 170, 171, 12, 6, 2, 2, 171, 172, 9, 9, 2, + 2, 172, 184, 5, 30, 16, 7, 173, 177, 12, 5, 2, 2, 174, 178, 7, 48, 2, 2, + 175, 178, 7, 47, 2, 2, 176, 178, 3, 2, 2, 2, 177, 174, 3, 2, 2, 2, 177, + 175, 3, 2, 2, 2, 177, 176, 3, 2, 2, 2, 178, 179, 3, 2, 2, 2, 179, 184, + 5, 30, 16, 6, 180, 181, 12, 4, 2, 2, 181, 182, 7, 28, 2, 2, 182, 184, 5, + 30, 16, 5, 183, 158, 3, 2, 2, 2, 183, 161, 3, 2, 2, 2, 183, 164, 3, 2, + 2, 2, 183, 167, 3, 2, 2, 2, 183, 170, 3, 2, 2, 2, 183, 173, 3, 2, 2, 2, + 183, 180, 3, 2, 2, 2, 184, 187, 3, 2, 2, 2, 185, 183, 3, 2, 2, 2, 185, + 186, 3, 2, 2, 2, 186, 31, 3, 2, 2, 2, 187, 185, 3, 2, 2, 2, 188, 189, 9, + 10, 2, 2, 189, 33, 3, 2, 2, 2, 190, 191, 9, 11, 2, 2, 191, 35, 3, 2, 2, + 2, 18, 39, 46, 51, 57, 65, 73, 84, 95, 99, 113, 122, 143, 156, 177, 183, + 185, } - var deserializer = antlr.NewATNDeserializer(nil) - var deserializedATN = deserializer.DeserializeFromUInt16(parserATN) var literalNames = []string{ - "", "'join'", "'JOIN'", "'j'", "'.['", "", "", "'('", "')'", "'['", "']'", - "','", "'|'", "':'", "", "", "", "", "'<='", "'<'", "'>='", "'>'", "'!='", - "'=='", "", "", "'.'", + "", "';'", "'*'", "'join'", "'JOIN'", "'j'", "'group'", "'GROUP'", "'g'", + "'.['", "'sum'", "'SUM'", "'avg'", "'AVG'", "'count'", "'COUNT'", "'where'", + "'WHERE'", "'||'", "'/'", "'%'", "'+'", "'-'", "'<<'", "'>>'", "'&'", "'&&'", + "'~'", "'!'", "", "", "'('", "')'", "'['", "']'", "','", "'|'", "':'", + "", "", "", "'<='", "'<'", "'>='", "'>'", "'!='", "'=='", } - var symbolicNames = []string{ - "", "", "", "", "", "ID", "WS", "LPAR", "RPAR", "LBRA", "RBRA", "COMMA", - "PIPE", "COLON", "NULL", "STRING", "INT", "NUMBER", "LT_EQ", "LT", "GT_EQ", - "GT", "NEQ", "EQ", "SEL", "DATASOURCE", "DOT", "VAL", "LINECOMMENT", + "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", + "", "", "", "", "", "", "", "", "", "", "", "ID", "WS", "LPAR", "RPAR", + "LBRA", "RBRA", "COMMA", "PIPE", "COLON", "NULL", "NN", "NUMBER", "LT_EQ", + "LT", "GT_EQ", "GT", "NEQ", "EQ", "SEL", "DATASOURCE", "STRING", "LINECOMMENT", } var ruleNames = []string{ - "query", "segment", "element", "cmpr", "args", "arg", "join", "joinConstraint", - "selElement", "dsTblElement", "dsElement", "rowRange", + "stmtList", "query", "segment", "element", "cmpr", "fn", "join", "joinConstraint", + "group", "selElement", "dsTblElement", "dsElement", "rowRange", "fnName", + "expr", "literal", "unaryOperator", +} +var decisionToDFA = make([]*antlr.DFA, len(deserializedATN.DecisionToState)) + +func init() { + for index, ds := range deserializedATN.DecisionToState { + decisionToDFA[index] = antlr.NewDFA(ds, index) + } } type SLQParser struct { @@ -82,18 +138,11 @@ type SLQParser struct { } func NewSLQParser(input antlr.TokenStream) *SLQParser { - var decisionToDFA = make([]*antlr.DFA, len(deserializedATN.DecisionToState)) - var sharedContextCache = antlr.NewPredictionContextCache() - - for index, ds := range deserializedATN.DecisionToState { - decisionToDFA[index] = antlr.NewDFA(ds, index) - } - this := new(SLQParser) this.BaseParser = antlr.NewBaseParser(input) - this.Interpreter = antlr.NewParserATNSimulator(this, deserializedATN, decisionToDFA, sharedContextCache) + this.Interpreter = antlr.NewParserATNSimulator(this, deserializedATN, decisionToDFA, antlr.NewPredictionContextCache()) this.RuleNames = ruleNames this.LiteralNames = literalNames this.SymbolicNames = symbolicNames @@ -109,48 +158,256 @@ const ( SLQParserT__1 = 2 SLQParserT__2 = 3 SLQParserT__3 = 4 - SLQParserID = 5 - SLQParserWS = 6 - SLQParserLPAR = 7 - SLQParserRPAR = 8 - SLQParserLBRA = 9 - SLQParserRBRA = 10 - SLQParserCOMMA = 11 - SLQParserPIPE = 12 - SLQParserCOLON = 13 - SLQParserNULL = 14 - SLQParserSTRING = 15 - SLQParserINT = 16 - SLQParserNUMBER = 17 - SLQParserLT_EQ = 18 - SLQParserLT = 19 - SLQParserGT_EQ = 20 - SLQParserGT = 21 - SLQParserNEQ = 22 - SLQParserEQ = 23 - SLQParserSEL = 24 - SLQParserDATASOURCE = 25 - SLQParserDOT = 26 - SLQParserVAL = 27 - SLQParserLINECOMMENT = 28 + SLQParserT__4 = 5 + SLQParserT__5 = 6 + SLQParserT__6 = 7 + SLQParserT__7 = 8 + SLQParserT__8 = 9 + SLQParserT__9 = 10 + SLQParserT__10 = 11 + SLQParserT__11 = 12 + SLQParserT__12 = 13 + SLQParserT__13 = 14 + SLQParserT__14 = 15 + SLQParserT__15 = 16 + SLQParserT__16 = 17 + SLQParserT__17 = 18 + SLQParserT__18 = 19 + SLQParserT__19 = 20 + SLQParserT__20 = 21 + SLQParserT__21 = 22 + SLQParserT__22 = 23 + SLQParserT__23 = 24 + SLQParserT__24 = 25 + SLQParserT__25 = 26 + SLQParserT__26 = 27 + SLQParserT__27 = 28 + SLQParserID = 29 + SLQParserWS = 30 + SLQParserLPAR = 31 + SLQParserRPAR = 32 + SLQParserLBRA = 33 + SLQParserRBRA = 34 + SLQParserCOMMA = 35 + SLQParserPIPE = 36 + SLQParserCOLON = 37 + SLQParserNULL = 38 + SLQParserNN = 39 + SLQParserNUMBER = 40 + SLQParserLT_EQ = 41 + SLQParserLT = 42 + SLQParserGT_EQ = 43 + SLQParserGT = 44 + SLQParserNEQ = 45 + SLQParserEQ = 46 + SLQParserSEL = 47 + SLQParserDATASOURCE = 48 + SLQParserSTRING = 49 + SLQParserLINECOMMENT = 50 ) // SLQParser rules. const ( - SLQParserRULE_query = 0 - SLQParserRULE_segment = 1 - SLQParserRULE_element = 2 - SLQParserRULE_cmpr = 3 - SLQParserRULE_args = 4 - SLQParserRULE_arg = 5 + SLQParserRULE_stmtList = 0 + SLQParserRULE_query = 1 + SLQParserRULE_segment = 2 + SLQParserRULE_element = 3 + SLQParserRULE_cmpr = 4 + SLQParserRULE_fn = 5 SLQParserRULE_join = 6 SLQParserRULE_joinConstraint = 7 - SLQParserRULE_selElement = 8 - SLQParserRULE_dsTblElement = 9 - SLQParserRULE_dsElement = 10 - SLQParserRULE_rowRange = 11 + SLQParserRULE_group = 8 + SLQParserRULE_selElement = 9 + SLQParserRULE_dsTblElement = 10 + SLQParserRULE_dsElement = 11 + SLQParserRULE_rowRange = 12 + SLQParserRULE_fnName = 13 + SLQParserRULE_expr = 14 + SLQParserRULE_literal = 15 + SLQParserRULE_unaryOperator = 16 ) +// IStmtListContext is an interface to support dynamic dispatch. +type IStmtListContext interface { + antlr.ParserRuleContext + + // GetParser returns the parser. + GetParser() antlr.Parser + + // IsStmtListContext differentiates from other interfaces. + IsStmtListContext() +} + +type StmtListContext struct { + *antlr.BaseParserRuleContext + parser antlr.Parser +} + +func NewEmptyStmtListContext() *StmtListContext { + var p = new(StmtListContext) + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(nil, -1) + p.RuleIndex = SLQParserRULE_stmtList + return p +} + +func (*StmtListContext) IsStmtListContext() {} + +func NewStmtListContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *StmtListContext { + var p = new(StmtListContext) + + p.BaseParserRuleContext = antlr.NewBaseParserRuleContext(parent, invokingState) + + p.parser = parser + p.RuleIndex = SLQParserRULE_stmtList + + return p +} + +func (s *StmtListContext) GetParser() antlr.Parser { return s.parser } + +func (s *StmtListContext) AllQuery() []IQueryContext { + var ts = s.GetTypedRuleContexts(reflect.TypeOf((*IQueryContext)(nil)).Elem()) + var tst = make([]IQueryContext, len(ts)) + + for i, t := range ts { + if t != nil { + tst[i] = t.(IQueryContext) + } + } + + return tst +} + +func (s *StmtListContext) Query(i int) IQueryContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IQueryContext)(nil)).Elem(), i) + + if t == nil { + return nil + } + + return t.(IQueryContext) +} + +func (s *StmtListContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *StmtListContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *StmtListContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(SLQListener); ok { + listenerT.EnterStmtList(s) + } +} + +func (s *StmtListContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(SLQListener); ok { + listenerT.ExitStmtList(s) + } +} + +func (s *StmtListContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { + switch t := visitor.(type) { + case SLQVisitor: + return t.VisitStmtList(s) + + default: + return t.VisitChildren(s) + } +} + +func (p *SLQParser) StmtList() (localctx IStmtListContext) { + localctx = NewStmtListContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 0, SLQParserRULE_stmtList) + var _la int + + defer func() { + p.ExitRule() + }() + + defer func() { + if err := recover(); err != nil { + if v, ok := err.(antlr.RecognitionException); ok { + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + } else { + panic(err) + } + } + }() + + var _alt int + + p.EnterOuterAlt(localctx, 1) + p.SetState(37) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + + for _la == SLQParserT__0 { + { + p.SetState(34) + p.Match(SLQParserT__0) + } + + p.SetState(39) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + } + { + p.SetState(40) + p.Query() + } + p.SetState(49) + p.GetErrorHandler().Sync(p) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 2, p.GetParserRuleContext()) + + for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { + if _alt == 1 { + p.SetState(42) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + + for ok := true; ok; ok = _la == SLQParserT__0 { + { + p.SetState(41) + p.Match(SLQParserT__0) + } + + p.SetState(44) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + } + { + p.SetState(46) + p.Query() + } + + } + p.SetState(51) + p.GetErrorHandler().Sync(p) + _alt = p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 2, p.GetParserRuleContext()) + } + p.SetState(55) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + + for _la == SLQParserT__0 { + { + p.SetState(52) + p.Match(SLQParserT__0) + } + + p.SetState(57) + p.GetErrorHandler().Sync(p) + _la = p.GetTokenStream().LA(1) + } + + return localctx +} + // IQueryContext is an interface to support dynamic dispatch. type IQueryContext interface { antlr.ParserRuleContext @@ -252,7 +509,7 @@ func (s *QueryContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *SLQParser) Query() (localctx IQueryContext) { localctx = NewQueryContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 0, SLQParserRULE_query) + p.EnterRule(localctx, 2, SLQParserRULE_query) var _la int defer func() { @@ -272,21 +529,25 @@ func (p *SLQParser) Query() (localctx IQueryContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(24) - p.Segment() - - p.SetState(29) + { + p.SetState(58) + p.Segment() + } + p.SetState(63) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SLQParserPIPE { - p.SetState(25) - p.Match(SLQParserPIPE) + { + p.SetState(59) + p.Match(SLQParserPIPE) + } + { + p.SetState(60) + p.Segment() + } - p.SetState(26) - p.Segment() - - p.SetState(31) + p.SetState(65) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -395,7 +656,7 @@ func (s *SegmentContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *SLQParser) Segment() (localctx ISegmentContext) { localctx = NewSegmentContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 2, SLQParserRULE_segment) + p.EnterRule(localctx, 4, SLQParserRULE_segment) var _la int defer func() { @@ -415,21 +676,26 @@ func (p *SLQParser) Segment() (localctx ISegmentContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(32) - p.Element() + { + p.SetState(66) + p.Element() + } - p.SetState(37) + p.SetState(71) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) for _la == SLQParserCOMMA { - p.SetState(33) - p.Match(SLQParserCOMMA) + { + p.SetState(67) + p.Match(SLQParserCOMMA) + } + { + p.SetState(68) + p.Element() + } - p.SetState(34) - p.Element() - - p.SetState(39) + p.SetState(73) p.GetErrorHandler().Sync(p) _la = p.GetTokenStream().LA(1) } @@ -515,6 +781,16 @@ func (s *ElementContext) Join() IJoinContext { return t.(IJoinContext) } +func (s *ElementContext) Group() IGroupContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IGroupContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(IGroupContext) +} + func (s *ElementContext) RowRange() IRowRangeContext { var t = s.GetTypedRuleContext(reflect.TypeOf((*IRowRangeContext)(nil)).Elem(), 0) @@ -525,6 +801,26 @@ func (s *ElementContext) RowRange() IRowRangeContext { return t.(IRowRangeContext) } +func (s *ElementContext) Fn() IFnContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IFnContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(IFnContext) +} + +func (s *ElementContext) Expr() IExprContext { + var t = s.GetTypedRuleContext(reflect.TypeOf((*IExprContext)(nil)).Elem(), 0) + + if t == nil { + return nil + } + + return t.(IExprContext) +} + func (s *ElementContext) GetRuleContext() antlr.RuleContext { return s } @@ -557,7 +853,7 @@ func (s *ElementContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *SLQParser) Element() (localctx IElementContext) { localctx = NewElementContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 4, SLQParserRULE_element) + p.EnterRule(localctx, 6, SLQParserRULE_element) defer func() { p.ExitRule() @@ -575,36 +871,64 @@ func (p *SLQParser) Element() (localctx IElementContext) { } }() - p.SetState(45) + p.SetState(82) p.GetErrorHandler().Sync(p) - - la_ := p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 2, p.GetParserRuleContext()) - - switch la_ { + switch p.GetInterpreter().AdaptivePredict(p.GetTokenStream(), 6, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(40) - p.DsTblElement() + { + p.SetState(74) + p.DsTblElement() + } case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(41) - p.DsElement() + { + p.SetState(75) + p.DsElement() + } case 3: p.EnterOuterAlt(localctx, 3) - p.SetState(42) - p.SelElement() + { + p.SetState(76) + p.SelElement() + } case 4: p.EnterOuterAlt(localctx, 4) - p.SetState(43) - p.Join() + { + p.SetState(77) + p.Join() + } case 5: p.EnterOuterAlt(localctx, 5) - p.SetState(44) - p.RowRange() + { + p.SetState(78) + p.Group() + } + + case 6: + p.EnterOuterAlt(localctx, 6) + { + p.SetState(79) + p.RowRange() + } + + case 7: + p.EnterOuterAlt(localctx, 7) + { + p.SetState(80) + p.Fn() + } + + case 8: + p.EnterOuterAlt(localctx, 8) + { + p.SetState(81) + p.expr(0) + } } @@ -705,7 +1029,7 @@ func (s *CmprContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *SLQParser) Cmpr() (localctx ICmprContext) { localctx = NewCmprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 6, SLQParserRULE_cmpr) + p.EnterRule(localctx, 8, SLQParserRULE_cmpr) var _la int defer func() { @@ -725,120 +1049,141 @@ func (p *SLQParser) Cmpr() (localctx ICmprContext) { }() p.EnterOuterAlt(localctx, 1) - p.SetState(47) - _la = p.GetTokenStream().LA(1) + { + p.SetState(84) + _la = p.GetTokenStream().LA(1) - if !(((_la)&-(0x1f+1)) == 0 && ((1<= 0; n = int(n/lenAlpha) - 1 { - - buf.WriteRune(rune(n%lenAlpha) + start) - } - - return util.ReverseString(buf.String()) -} - -//// GetSourceFileName returns the final component of the file/URL path. -//func GetSourceFileName(src *drvr.Source) (string, error) { -// -// sep := os.PathSeparator -// if strings.HasPrefix(src.Location, "http") { -// sep = '/' -// } -// -// // Why is this illegal? Should be ok to get a file from http root? -// parts := strings.Split(src.Location, string(sep)) -// if len(parts) == 0 || len(parts[len(parts)-1]) == 0 { -// return "", util.Errorf("illegal src [%s] location: %s", src.Handle, src.Location) -// } -// -// return parts[len(parts)-1], nil -//} - -// GetSourceFile returns a file handle for the location, which can be a local filepath -// or a URL. If it's a remote file it will be downloaded to a temp file. If cleanup -// is non-nil, it should always be invoked, even if err is non-nil. +// FetchFile returns a file handle for the location, which can be a local filepath +// or a URL. If it's a remote location, the file will be downloaded to a temp file. +// If file is non-nil, cleanFn will be non-nil (but could be no-op). // The returned file is open and the caller is responsible for closing it. -func GetSourceFile(location string) (file *os.File, mediatype string, cleanup func() error, err error) { - - lg.Debugf(location) +// +// Deprecated: use Fetcher.Fetch. +func FetchFile(log lg.Log, location string) (file *os.File, mediatype string, cleanFn func() error, err error) { + log.Debugf("attempting to fetch file from %s", location) pwd, err := os.Getwd() if err != nil { - return nil, "", nil, util.WrapError(err) + return nil, "", nil, errz.Wrap(err, "failed to get working dir") } src, err := getter.Detect(location, pwd, getter.Detectors) if err != nil { - return nil, "", nil, util.WrapError(err) + return nil, "", nil, errz.Wrap(err, "failed to detect file") } if strings.HasPrefix(src, "file://") { // It's a local file, we don't need to get it file, err = os.Open(location) if err != nil { - return file, "", nil, util.WrapError(err) + return nil, "", nil, errz.Wrap(err, "failed to open file") } mediatype = mime.TypeByExtension(filepath.Ext(file.Name())) @@ -92,14 +51,13 @@ func GetSourceFile(location string) (file *os.File, mediatype string, cleanup fu srcURL, err := url.ParseRequestURI(src) if err != nil { // should never happen - return nil, "", nil, util.WrapError(err) + return nil, "", nil, errz.Wrap(err, "failed to parse source URL") } // We want to save the fetched file to a temp file with the same name, but // it'll be called "download" if we can't determine the name. // TODO: should also look for the filename in the Content-Disposition dstFilename := "download" - if srcURL.Path != "" { parts := strings.Split(srcURL.Path, "/") if len(parts) > 0 { @@ -112,53 +70,56 @@ func GetSourceFile(location string) (file *os.File, mediatype string, cleanup fu tmpDir, err := ioutil.TempDir("", "sq_download_") if err != nil { - return nil, "", nil, util.WrapError(err) + return nil, "", nil, errz.Err(err) } - cleanup = func() error { - lg.Debugf("attempting to cleanup tmp dir: %s", tmpDir) - return util.WrapError(os.RemoveAll(tmpDir)) + cleanFn = func() error { + log.Debugf("attempting to cleanup tmp dir used for download: %s", tmpDir) + return errz.Wrap(os.RemoveAll(tmpDir), "failed to remove tmp dir") } dstFilepath := filepath.Join(tmpDir, dstFilename) - mediatype, remoteFilename, err := getterGetFile(dstFilepath, src) + mediatype, remoteFilename, err := getterGetFile(log, dstFilepath, src) if err != nil { - return nil, "", cleanup, util.Errorf("failed to get file %q: %v", location, err) + log.WarnIfError(cleanFn()) + return nil, "", cleanFn, errz.Errorf("failed to get file %q: %v", location, err) } if remoteFilename != "" && dstFilename != remoteFilename { // try to rename, but we don't really care if it doesn't work + // REVISIT: not sure what exactly this is supposed to be doing err2 := os.Rename(dstFilepath, filepath.Join(tmpDir, remoteFilename)) - lg.Warnf("failed to rename file to match remote name %q, but continuing regardless: %v", err2) + if err2 != nil { + log.Warnf("failed to rename file to match remote name %q, but continuing regardless: %v", err2) + } } file, err = os.Open(dstFilepath) if err != nil { - return file, "", nil, util.WrapError(err) + log.WarnIfError(cleanFn()) + return file, "", cleanFn, errz.Wrap(err, "failed to open file") } if mediatype == "" { mediatype = mime.TypeByExtension(filepath.Ext(file.Name())) } - mt := "unknown media type" - if mediatype != "" { - mt = mediatype + if mediatype == "" { + log.Debugf("downloaded [unknown media type] file to: %s", dstFilepath) + } else { + log.Debugf("downloaded [%s] file to: %s", mediatype, dstFilepath) } - lg.Debugf("downloaded [%s] file to: %s", mt, dstFilepath) - - return file, mediatype, cleanup, nil + return file, mediatype, cleanFn, nil } // getterGetFile extends the behavior of getter.GetFile to also return the -// media type (from Content-Type / Content-Disposition) if it's a HTTP/HTTPS +// media type (from Content-Datatype / Content-Disposition) if it's a HTTP/HTTPS // request, or "" if the type cannot be determined. If Content-Disposition specifies // a file name, it will be returned in "filename" (the dst is not affected). -func getterGetFile(dst string, src string) (mediatype string, filename string, err error) { - - lg.Debugf("attempting to fetch %q to %q", src, dst) +func getterGetFile(log lg.Log, dst string, src string) (mediatype string, filename string, err error) { + log.Debugf("attempting to fetch %q to %q", src, dst) getters := make(map[string]getter.Getter) for typ, gtr := range getter.Getters { @@ -179,17 +140,17 @@ func getterGetFile(dst string, src string) (mediatype string, filename string, e }).Get() if err != nil { - return "", "", util.WrapError(err) + return "", "", errz.Wrap(err, "failed to get file") } if httpGtr.resp != nil { - for _, hdr := range []string{"Content-Disposition", "Content-Type"} { + for _, hdr := range []string{"Content-Disposition", "Content-Datatype"} { val := httpGtr.resp.Header.Get(hdr) if val != "" { mt, params, err := mime.ParseMediaType(val) if err != nil { - lg.Warnf("failed to parse %s header: %v", hdr, err) + log.Warnf("failed to parse %s header: %v", hdr, err) continue } @@ -218,30 +179,29 @@ type httpGetter struct { // GetFile is copied from getter.HttpGetter.GetFile, with a little hack added. func (h *httpGetter) GetFile(dst string, u *url.URL) error { - resp, err := http.Get(u.String()) if err != nil { - return err + return errz.Wrapf(err, "") } h.resp = resp // this is our hack defer resp.Body.Close() if resp.StatusCode != 200 { - return fmt.Errorf("bad response code: %d", resp.StatusCode) + return errz.Errorf("bad response code: %d", resp.StatusCode) } // Create all the parent directories if err := os.MkdirAll(filepath.Dir(dst), 0755); err != nil { - return err + return errz.Wrapf(err, "") } f, err := os.Create(dst) if err != nil { - return err + return errz.Err(err) } defer f.Close() _, err = io.Copy(f, resp.Body) - return err + return errz.Err(err) } diff --git a/libsq/source/fetcher/legacy_test.go b/libsq/source/fetcher/legacy_test.go new file mode 100644 index 00000000..4fed4c0b --- /dev/null +++ b/libsq/source/fetcher/legacy_test.go @@ -0,0 +1,23 @@ +package fetcher_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/lg/testlg" + + "github.com/neilotoole/sq/libsq/source/fetcher" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestFetchFile(t *testing.T) { + file, mediatype, cleanup, err := fetcher.FetchFile(testlg.New(t), sakila.URLSubsetXLSX) + if cleanup != nil { + defer require.Nil(t, cleanup()) + } + require.Nil(t, err) + require.NotNil(t, file) + require.Equal(t, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", mediatype) + require.Nil(t, file.Close()) +} diff --git a/libsq/source/files.go b/libsq/source/files.go new file mode 100644 index 00000000..a7708f7c --- /dev/null +++ b/libsq/source/files.go @@ -0,0 +1,508 @@ +package source + +import ( + "context" + "io" + "io/ioutil" + "mime" + "net/url" + "os" + "path/filepath" + "strings" + "sync" + "time" + + "github.com/djherbis/fscache" + + "github.com/h2non/filetype" + "github.com/h2non/filetype/matchers" + "github.com/neilotoole/lg" + "golang.org/x/sync/errgroup" + + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/source/fetcher" +) + +// Files is the centralized API for interacting with files. +type Files struct { + // Note: It is expected that Files will in future have more + // capabilities, such as caching (on the filesystem) files that + // are fetched from URLs. + + log lg.Log + mu sync.Mutex + clnup *cleanup.Cleanup + fcache *fscache.FSCache + detectFns []TypeDetectorFunc +} + +// NewFiles returns a new Files instance. +func NewFiles(log lg.Log) (*Files, error) { + fs := &Files{log: log, clnup: cleanup.New()} + + tmpdir, err := ioutil.TempDir("", "") + if err != nil { + return nil, errz.Err(err) + } + + fs.clnup.AddE(func() error { + return errz.Err(os.RemoveAll(tmpdir)) + }) + + fcache, err := fscache.New(tmpdir, os.ModePerm, time.Hour) + if err != nil { + log.WarnIfFuncError(fs.clnup.Run) + return nil, errz.Err(err) + } + + fs.clnup.AddE(fcache.Clean) + fs.fcache = fcache + return fs, nil +} + +// AddTypeDetectors adds type detectors. +func (fs *Files) AddTypeDetectors(detectFns ...TypeDetectorFunc) { + fs.detectFns = append(fs.detectFns, detectFns...) +} + +// Size returns the file size of src.Location. This exists +// as a convenience function and something of a replacement +// for using os.Stat to get the file size. +func (fs *Files) Size(src *Source) (size int64, err error) { + r, err := fs.NewReader(context.Background(), src) + if err != nil { + return 0, err + } + + defer fs.log.WarnIfCloseError(r) + + size, err = io.Copy(ioutil.Discard, r) + if err != nil { + return 0, errz.Err(err) + } + + return size, nil +} + +// AddStdin copies f to fs's cache: the stdin data in f +// is later accessible via fs.NewReader(src) where src.Handle +// is StdinHandle; f's type can be detected via TypeStdin. +// Note that f is closed by this method. +// +// DESIGN: it's possible we'll ditch AddStdin and TypeStdin +// in some future version; this mechanism is a stopgap. +func (fs *Files) AddStdin(f *os.File) error { + fs.mu.Lock() + defer fs.mu.Unlock() + + // We don't need r, but we're responsible for closing it. + r, err := fs.addFile(f, StdinHandle) // f is closed by addFile + if err != nil { + return err + } + + return r.Close() +} + +// TypeStdin detects the type of stdin as previously added +// by AddStdin. An error is returned if AddStdin was not +// first invoked. If the type cannot be detected, TypeNone and +// nil are returned. +func (fs *Files) TypeStdin(ctx context.Context) (Type, error) { + if !fs.fcache.Exists(StdinHandle) { + return TypeNone, errz.New("must invoke AddStdin before invoking TypeStdin") + } + + typ, ok, err := fs.detectType(ctx, StdinHandle) + if err != nil { + return TypeNone, err + } + + if !ok { + return TypeNone, nil + } + + return typ, nil +} + +// add file copies f to fs's cache, returning a reader which the +// caller is responsible for closing. f is closed by this method. +func (fs *Files) addFile(f *os.File, key string) (fscache.ReadAtCloser, error) { + r, w, err := fs.fcache.Get(key) + if err != nil { + return nil, errz.Err(err) + } + + if w == nil { + fs.log.WarnIfCloseError(r) + return nil, errz.Errorf("failed to add to fscache (possibly previously added): %s", key) + } + + copied, err := io.Copy(w, f) + if err != nil { + fs.log.WarnIfCloseError(r) + return nil, errz.Err(err) + } + + fs.log.Debugf("Copied %d bytes to fscache from: %s", copied, key) + + err = errz.Combine(w.Close(), f.Close()) + if err != nil { + fs.log.WarnIfCloseError(r) + return nil, err + } + + return r, nil +} + +// NewReader returns a new ReadCloser for src.Location. +// If src.Handle is StdinHandle, AddStdin must first have +// been invoked. The caller must close the reader. +func (fs *Files) NewReader(ctx context.Context, src *Source) (io.ReadCloser, error) { + fs.mu.Lock() + defer fs.mu.Unlock() + + if ctx == nil { + ctx = context.Background() + } + + return fs.newReader(ctx, src.Location) +} + +// ReadAll is a convenience method to read the bytes of a source. +func (fs *Files) ReadAll(src *Source) ([]byte, error) { + r, err := fs.newReader(context.Background(), src.Location) + if err != nil { + return nil, err + } + + b, err := ioutil.ReadAll(r) + closeErr := r.Close() + if err != nil { + return nil, err + } + if closeErr != nil { + return nil, closeErr + } + + return b, nil +} + +func (fs *Files) newReader(ctx context.Context, loc string) (io.ReadCloser, error) { + if loc == StdinHandle { + r, w, err := fs.fcache.Get(StdinHandle) + if err != nil { + return nil, errz.Err(err) + } + if w != nil { + return nil, errz.New("@stdin not cached: has AddStdin been invoked yet?") + } + + return r, nil + } + + if !fs.fcache.Exists(loc) { + // cache miss + f, err := fs.openLocation(loc) + if err != nil { + fs.log.WarnIfCloseError(f) + return nil, err + } + + // Note that addFile closes f + r, err := fs.addFile(f, loc) + if err != nil { + return nil, err + } + return r, nil + } + + r, _, err := fs.fcache.Get(loc) + if err != nil { + return nil, err + } + + return r, nil +} + +// openLocation returns a file for loc. It is the caller's +// responsibility to close the returned file. +func (fs *Files) openLocation(loc string) (*os.File, error) { + var fpath string + var ok bool + var err error + + fpath, ok = isFpath(loc) + if !ok { + // It's not a local file path, maybe it's remote (http) + var u *url.URL + u, ok = HTTPURL(loc) + if !ok { + // We're out of luck, it's not a valid file location + return nil, errz.Errorf("invalid src location: %s", loc) + } + + // It's a remote file + fpath, err = fs.fetch(u.String()) + if err != nil { + return nil, err + } + } + + // we have a legitimate fpath + return fs.openFile(fpath) +} + +// openFile opens the file at fpath. It is the caller's +// responsibility to close the returned file. +func (fs *Files) openFile(fpath string) (*os.File, error) { + f, err := os.OpenFile(fpath, os.O_RDWR, 0666) + if err != nil { + return nil, errz.Err(err) + } + + return f, nil +} + +// fetch ensures that loc exists locally as a file. This may +// entail downloading the file via HTTPS etc. +func (fs *Files) fetch(loc string) (fpath string, err error) { + // This impl is a vestigial abomination from an early + // experiment. In particular, the FetchFile function + // can be completely simplified. + + var ok bool + if fpath, ok = isFpath(loc); ok { + // loc is already a local file path + return fpath, nil + } + + var u *url.URL + + if u, ok = HTTPURL(loc); !ok { + return "", errz.Errorf("not a valid file location: %q", loc) + } + + f, mediatype, cleanFn, err := fetcher.FetchFile(fs.log, u.String()) + fs.clnup.AddC(f) // f is kept open until fs.Close is called. + fs.clnup.AddE(cleanFn) + if err != nil { + return "", err + } + + fs.log.Debugf("fetched %q: mediatype=%s", loc, mediatype) + return f.Name(), nil +} + +// Close closes any open files. +func (fs *Files) Close() error { + return fs.clnup.Run() +} + +// Type returns the source type of location. +func (fs *Files) Type(ctx context.Context, loc string) (Type, error) { + ploc, err := parseLoc(loc) + if err != nil { + return TypeNone, err + } + + if ploc.typ != TypeNone { + return ploc.typ, nil + } + + if ploc.ext != "" { + mtype := mime.TypeByExtension(ploc.ext) + if mtype == "" { + fs.log.Debugf("unknown mime time for %q for %q", mtype, loc) + } else { + if typ, ok := typeFromMediaType(mtype); ok { + return typ, nil + } + fs.log.Debugf("unknown source type for media type %q for %q", mtype, loc) + } + } + + // Fall back to the byte detectors + typ, ok, err := fs.detectType(ctx, loc) + if err != nil { + return TypeNone, err + } + + if !ok { + return TypeNone, errz.Errorf("unable to determine type of %q", loc) + } + + return typ, nil +} + +func (fs *Files) detectType(ctx context.Context, loc string) (typ Type, ok bool, err error) { + if len(fs.detectFns) == 0 { + return TypeNone, false, nil + } + + type result struct { + typ Type + score float32 + } + + resultCh := make(chan result, len(fs.detectFns)) + readers := make([]io.ReadCloser, len(fs.detectFns)) + + fs.mu.Lock() + for i := 0; i < len(readers); i++ { + readers[i], err = fs.newReader(ctx, loc) + if err != nil { + fs.mu.Unlock() + return TypeNone, false, nil + } + } + fs.mu.Unlock() + + g, gctx := errgroup.WithContext(ctx) + + for i, detectFn := range fs.detectFns { + i, detectFn := i, detectFn + + g.Go(func() error { + select { + case <-gctx.Done(): + return gctx.Err() + default: + } + + r := readers[i] + defer fs.log.WarnIfCloseError(r) + + typ, score, err := detectFn(gctx, r) + if err != nil { + return err + } + + if score > 0 { + resultCh <- result{typ: typ, score: score} + } + return nil + }) + } + + err = g.Wait() + if err != nil { + return TypeNone, false, errz.Err(err) + } + close(resultCh) + + var highestScore float32 + for res := range resultCh { + if res.score > highestScore { + highestScore = res.score + typ = res.typ + } + } + + const detectScoreThreshold = 0.5 + if highestScore >= detectScoreThreshold { + return typ, true, nil + } + + return TypeNone, false, nil +} + +// DetectMagicNumber is a TypeDetectorFunc that uses an external +// pkg (h2non/filetype) to detect the "magic number" from +// the start of files. +func DetectMagicNumber(ctx context.Context, r io.Reader) (detected Type, score float32, err error) { + // We only have to pass the file header = first 261 bytes + head := make([]byte, 261) + _, err = r.Read(head) + if err != nil { + return TypeNone, 0, errz.Wrapf(err, "failed to read header") + } + + ftype, err := filetype.Match(head) + if err != nil { + if err != nil { + return TypeNone, 0, errz.Err(err) + } + } + + switch ftype { + default: + return TypeNone, 0, nil + case matchers.TypeXlsx: + // This doesn't seem to work, because .xlsx files are + // zipped, so the type returns as a zip. Perhaps there's + // something we can do about it, such as first extracting + // the zip, and then reading the inner magic number, but + // the xlsx.DetectXLSX func should catch the type anyway. + return typeXLSX, 1.0, nil + case matchers.TypeXls: + // TODO: our xlsx driver doesn't yet support XLS + return typeXLSX, 1.0, errz.Errorf("Microsoft XLS (%s) not currently supported", ftype) + case matchers.TypeSqlite: + return typeSL3, 1.0, nil + } +} + +// AbsLocation returns the absolute path of loc. That is, relative +// paths etc in loc are resolved. If loc is not a file path or +// it cannot be processed, loc is returned unmodified. +func AbsLocation(loc string) string { + if fpath, ok := isFpath(loc); ok { + return fpath + } + + return loc +} + +func isFpath(loc string) (fpath string, ok bool) { + if strings.ContainsRune(loc, ':') { + return "", false + } + + fpath, err := filepath.Abs(loc) + if err != nil { + return "", false + } + + return fpath, true +} + +// HTTPURL tests if s is a well-structured HTTP or HTTPS url, and +// if so, returns the url and true. +func HTTPURL(s string) (u *url.URL, ok bool) { + var err error + u, err = url.Parse(s) + if err != nil || u.Host == "" || !(u.Scheme == "http" || u.Scheme == "https") { + return nil, false + } + + return u, true +} + +// TempDirFile creates a new temporary file in a new temp dir, +// opens the file for reading and writing, and returns the resulting *os.File, +// as well as the parent dir. +// It is the caller's responsibility to close the file and remove the temp +// dir, which the returned cleanFn encapsulates. +func TempDirFile(filename string) (dir string, f *os.File, cleanFn func() error, err error) { + dir, err = ioutil.TempDir("", "sq_") + if err != nil { + return "", nil, nil, errz.Err(err) + } + + name := filepath.Join(dir, filename) + f, err = os.OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0600) + if err != nil { + // Silently delete the temp dir + _ = os.RemoveAll(dir) + + return "", nil, nil, errz.Err(err) + } + + cleanFn = func() error { + return errz.Append(f.Close(), os.RemoveAll(dir)) + } + + return dir, f, cleanFn, nil +} diff --git a/libsq/source/files_test.go b/libsq/source/files_test.go new file mode 100644 index 00000000..40ce9052 --- /dev/null +++ b/libsq/source/files_test.go @@ -0,0 +1,258 @@ +package source_test + +import ( + "context" + "io/ioutil" + "os" + "path/filepath" + "testing" + + "github.com/neilotoole/errgroup" + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/drivers/mysql" + "github.com/neilotoole/sq/drivers/postgres" + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/drivers/sqlserver" + "github.com/neilotoole/sq/drivers/xlsx" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" + "github.com/neilotoole/sq/testh/testsrc" +) + +func TestFiles_Type(t *testing.T) { + testCases := []struct { + loc string + wantType source.Type + wantErr bool + }{ + {loc: proj.Expand("sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sakila.db"), wantType: sqlite3.Type}, + {loc: proj.Abs(sakila.PathSL3), wantType: sqlite3.Type}, + {loc: proj.Abs("drivers/sqlite3/testdata/sakila_db"), wantType: sqlite3.Type}, + {loc: "sqlserver://sakila:p_ssW0rd@localhost?database=sakila", wantType: sqlserver.Type}, + {loc: "postgres://sakila:p_ssW0rd@localhost/sakila?sslmode=disable", wantType: postgres.Type}, + {loc: "mysql://sakila:p_ssW0rd@localhost/sakila", wantType: mysql.Type}, + {loc: proj.Abs(testsrc.PathXLSXTestHeader), wantType: xlsx.Type}, + {loc: proj.Abs("drivers/xlsx/testdata/test_header_xlsx"), wantType: xlsx.Type}, + {loc: sakila.URLSubsetXLSX, wantType: xlsx.Type}, + {loc: proj.Abs(sakila.PathCSVActor), wantType: csv.TypeCSV}, + {loc: proj.Abs("drivers/csv/testdata/person_csv"), wantType: csv.TypeCSV}, + {loc: sakila.URLActorCSV, wantType: csv.TypeCSV}, + {loc: proj.Abs("drivers/csv/testdata/person_tsv"), wantType: csv.TypeTSV}, + {loc: proj.Abs(sakila.PathTSVActor), wantType: csv.TypeTSV}, + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.loc, func(t *testing.T) { + fs, err := source.NewFiles(testlg.New(t)) + require.NoError(t, err) + fs.AddTypeDetectors(testh.TypeDetectors()...) + + gotType, gotErr := fs.Type(context.Background(), tc.loc) + if tc.wantErr { + require.Error(t, gotErr) + return + } + + require.NoError(t, gotErr) + require.Equal(t, tc.wantType, gotType) + }) + } +} + +func TestFiles_DetectType(t *testing.T) { + testCases := []struct { + loc string + wantType source.Type + wantOK bool + wantErr bool + }{ + //{loc: proj.Abs(sakila.PathSL3), wantType: sqlite3.Type, wantOK: true}, + //{loc: proj.Abs("drivers/sqlite3/testdata/sakila_db"), wantType: sqlite3.Type, wantOK: true}, + //{loc: proj.Abs(testsrc.PathXLSXTestHeader), wantType: xlsx.Type, wantOK: true}, + //{loc: proj.Abs("drivers/xlsx/testdata/test_header_xlsx"), wantType: xlsx.Type, wantOK: true}, + //{loc: proj.Abs("drivers/xlsx/testdata/test_noheader.xlsx"), wantType: xlsx.Type, wantOK: true}, + //{loc: proj.Abs("drivers/csv/testdata/person.csv"), wantType: csv.TypeCSV, wantOK: true}, + //{loc: proj.Abs("drivers/csv/testdata/person_noheader.csv"), wantType: csv.TypeCSV, wantOK: true}, + //{loc: proj.Abs("drivers/csv/testdata/person_csv"), wantType: csv.TypeCSV, wantOK: true}, + //{loc: proj.Abs("drivers/csv/testdata/person.tsv"), wantType: csv.TypeTSV, wantOK: true}, + //{loc: proj.Abs("drivers/csv/testdata/person_noheader.tsv"), wantType: csv.TypeTSV, wantOK: true}, + //{loc: proj.Abs("drivers/csv/testdata/person_tsv"), wantType: csv.TypeTSV, wantOK: true}, + {loc: proj.Abs("README.md"), wantType: source.TypeNone, wantOK: false}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(filepath.Base(tc.loc), func(t *testing.T) { + ctx := context.Background() + fs, err := source.NewFiles(testlg.New(t)) + require.NoError(t, err) + fs.AddTypeDetectors(testh.TypeDetectors()...) + + typ, ok, err := source.FilesDetectTypeFn(fs, ctx, tc.loc) + if tc.wantErr { + require.Error(t, err) + } else { + require.NoError(t, err) + } + + require.Equal(t, tc.wantOK, ok) + require.Equal(t, tc.wantType, typ) + }) + } +} + +func TestDetectMagicNumber(t *testing.T) { + testCases := []struct { + loc string + wantType source.Type + wantScore float32 + wantErr bool + }{ + {loc: proj.Abs(sakila.PathSL3), wantType: sqlite3.Type, wantScore: 1.0}, + {loc: proj.Abs("drivers/sqlite3/testdata/sakila_db"), wantType: sqlite3.Type, wantScore: 1.0}, + } + + for _, tc := range testCases { + tc := tc + + t.Run(filepath.Base(tc.loc), func(t *testing.T) { + f, err := os.Open(tc.loc) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, f.Close()) }) + + typ, score, err := source.DetectMagicNumber(context.Background(), f) + if tc.wantErr { + require.Error(t, err) + return + } + + require.NoError(t, err) + require.Equal(t, tc.wantType, typ) + require.Equal(t, tc.wantScore, score) + }) + } +} + +func TestFiles_NewReader(t *testing.T) { + fpath := sakila.PathCSVActor + wantBytes := proj.ReadFile(fpath) + + src := &source.Source{ + Handle: "@test_" + stringz.Uniq8(), + Type: csv.TypeCSV, + Location: proj.Abs(fpath), + } + + fs, err := source.NewFiles(testlg.New(t)) + require.NoError(t, err) + + g := &errgroup.Group{} + + for i := 0; i < 1000; i++ { + g.Go(func() error { + r, err := fs.NewReader(nil, src) + require.NoError(t, err) + + b, err := ioutil.ReadAll(r) + require.NoError(t, err) + + require.Equal(t, wantBytes, b) + return nil + }) + } + + err = g.Wait() + require.NoError(t, err) +} + +func TestFiles_Stdin(t *testing.T) { + testCases := []struct { + fpath string + wantType source.Type + wantErr bool + }{ + {fpath: proj.Abs(sakila.PathCSVActor), wantType: csv.TypeCSV}, + {fpath: proj.Abs(sakila.PathTSVActor), wantType: csv.TypeTSV}, + {fpath: proj.Abs(sakila.PathXLSX), wantType: xlsx.Type}, + } + + for _, tc := range testCases { + tc := tc + t.Run(testh.TName(tc.fpath), func(t *testing.T) { + th := testh.New(t) + fs := th.Files() + + f, err := os.Open(tc.fpath) + require.NoError(t, err) + + err = fs.AddStdin(f) // f is closed by AddStdin + require.NoError(t, err) + + typ, err := fs.TypeStdin(th.Context) + if tc.wantErr { + require.Error(t, err) + return + } + + require.Equal(t, tc.wantType, typ) + }) + } +} + +func TestFiles_Stdin_ErrorWrongOrder(t *testing.T) { + th := testh.New(t) + fs := th.Files() + + typ, err := fs.TypeStdin(th.Context) + require.Error(t, err, "should error because AddStdin not yet invoked") + require.Equal(t, source.TypeNone, typ) + + f, err := os.Open(proj.Abs(sakila.PathCSVActor)) + require.NoError(t, err) + + require.NoError(t, fs.AddStdin(f)) // AddStdin closes f + typ, err = fs.TypeStdin(th.Context) + require.NoError(t, err) + require.Equal(t, csv.TypeCSV, typ) +} + +func TestFiles_Size(t *testing.T) { + f, err := os.Open(proj.Abs(sakila.PathCSVActor)) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, f.Close()) }) + + fi, err := os.Stat(f.Name()) + require.NoError(t, err) + wantSize := fi.Size() + + th := testh.New(t) + fs := th.Files() + + gotSize, err := fs.Size(&source.Source{ + Handle: stringz.UniqSuffix("@h"), + Location: f.Name(), + }) + require.NoError(t, err) + require.Equal(t, wantSize, gotSize) + + f2, err := os.Open(proj.Abs(sakila.PathCSVActor)) + require.NoError(t, err) + // Verify that this works with @stdin as well + require.NoError(t, fs.AddStdin(f2)) + + gotSize2, err := fs.Size(&source.Source{ + Handle: "@stdin", + Location: "@stdin", + }) + require.NoError(t, err) + require.Equal(t, wantSize, gotSize2) +} diff --git a/libsq/source/handle.go b/libsq/source/handle.go new file mode 100644 index 00000000..e3f2427f --- /dev/null +++ b/libsq/source/handle.go @@ -0,0 +1,169 @@ +package source + +import ( + "regexp" + "strconv" + "strings" + "unicode" + + "github.com/neilotoole/sq/libsq/stringz" + + "github.com/neilotoole/sq/libsq/errz" +) + +var ( + handlePattern = regexp.MustCompile(`\A[@][a-zA-Z][a-zA-Z0-9_]*$`) + tablePattern = regexp.MustCompile(`\A[a-zA-Z_][a-zA-Z0-9_]*$`) +) + +// VerifyLegalHandle returns an error if handle is +// not an acceptable source handle value. +// Valid input must match: +// +// \A[@][a-zA-Z][a-zA-Z0-9_]*$ +func VerifyLegalHandle(handle string) error { + matches := handlePattern.MatchString(handle) + if !matches { + return errz.Errorf(`invalid data source handle %q: must begin with @, followed by a letter, followed by zero or more letters, digits, or underscores, e.g. "@my_db1"`, handle) + } + + return nil +} + +// verifyLegalTableName returns an error if table is not an +// acceptable table name. Valid input must match: +// +// \A[a-zA-Z_][a-zA-Z0-9_]*$` +// +func verifyLegalTableName(table string) error { + matches := tablePattern.MatchString(table) + if !matches { + return errz.Errorf(`invalid table name %q: must begin a letter or underscore, followed by zero or more letters, digits, or underscores, e.g. "tbl1" or "_tbl2"`, table) + } + return nil +} + +// handleTypeAliases is a map of type names to the +// more user-friendly suffix returned by SuggestHandle. +var handleTypeAliases = map[string]string{ + typeSL3.String(): "sqlite", + typePg.String(): "pg", + typeMS.String(): "mssql", + typeMy.String(): "my", +} + +// SuggestHandle suggests a handle based on location and type. +// If typ is TypeNone, the type will be inferred from loc. +// The takenFn is used to determine if a suggested handle +// is free to be used (e.g. "@sakila_csv" -> "@sakila_csv_1", etc). +// +// If the base name (derived from loc) contains illegal handle runes, +// those are replaced with underscore. If the handle would start with +// a number or underscore, it will be prefixed with "h" (for "handle"). +// Thus "123.xlsx" becomes "@h123_xlsx". +func SuggestHandle(typ Type, loc string, takenFn func(string) bool) (string, error) { + ploc, err := parseLoc(loc) + if err != nil { + return "", err + } + + if typ == TypeNone { + typ = ploc.typ + } + + // use the type name as the _ext suffix if possible + ext := typ.String() + if ext == "" { + if len(ploc.ext) > 0 { + ext = ploc.ext[1:] // trim the leading period in ".xlsx" etc + } + } + + if alias, ok := handleTypeAliases[ext]; ok { + ext = alias + } + // make sure there's nothing funky in ext or name + ext = stringz.SanitizeAlphaNumeric(ext, '_') + name := stringz.SanitizeAlphaNumeric(ploc.name, '_') + + // if the name is empty, we use "h" (for "handle"), e.g "@h". + if name == "" { + name = "h" + } else if !unicode.IsLetter([]rune(name)[0]) { + // If the first rune is not a letter, we prepend "h". + // So "123" becomes "h123", or "_123" becomes "h_123". + name = "h" + name + } + + base := "@" + name + if ext != "" { + base += "_" + ext + } + + // Beginning with base as candidate, check if + // candidate is taken; if so, append _N, where + // N is a count starting at 1. + candidate := base + var count int + for { + if count > 0 { + candidate = base + "_" + strconv.Itoa(count) + } + + if !takenFn(candidate) { + return candidate, nil + } + + count++ + } +} + +// ParseTableHandle attempts to parse a SLQ source handle and/or table name. +// Surrounding whitespace is trimmed. Examples of valid input values are: +// +// @handle.tblName +// @handle +// .tblName +func ParseTableHandle(input string) (handle, table string, err error) { + trimmed := strings.TrimSpace(input) + if trimmed == "" { + return "", "", errz.New("empty input") + } + + if strings.Contains(trimmed, ".") { + if trimmed[0] == '.' { + // starts with a period; so it's only the table name + err = verifyLegalTableName(trimmed[1:]) + if err != nil { + return "", "", err + } + return "", trimmed[1:], nil + } + + // input contains both handle and table + parts := strings.Split(trimmed, ".") + if len(parts) != 2 { + return "", "", errz.Errorf("invalid handle/table input %q", input) + } + + err = VerifyLegalHandle(parts[0]) + if err != nil { + return "", "", err + } + + err = verifyLegalTableName(parts[1]) + if err != nil { + return "", "", err + } + + return parts[0], parts[1], nil + } + + // input does not contain a period, therefore it must be a handle by itself + err = VerifyLegalHandle(trimmed) + if err != nil { + return "", "", err + } + + return trimmed, "", err +} diff --git a/libsq/source/handle_test.go b/libsq/source/handle_test.go new file mode 100644 index 00000000..35c24310 --- /dev/null +++ b/libsq/source/handle_test.go @@ -0,0 +1,141 @@ +package source_test + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/drivers/mysql" + "github.com/neilotoole/sq/drivers/postgres" + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/drivers/sqlserver" + "github.com/neilotoole/sq/drivers/xlsx" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/stringz" +) + +func TestVerifyLegalHandle(t *testing.T) { + var fails = []struct { + handle string + msg string + }{ + {"", "empty is invalid"}, + {" ", "no whitespace"}, + {"handle", "must start with @"}, + {"@", "needs at least one char"}, + {"1handle", "must start with @"}, + {"@ handle", "no whitespace"}, + {"@handle ", "no whitespace"}, + {"@handle#", "no special chars"}, + {"@1handle", "2nd char must be letter"}, + {"@1", "2nd char must be letter"}, + {"@?handle", "2nd char must be letter"}, + {"@?handle#", "no special chars"}, + {"@ha\nndle", "no newlines"}, + } + + for i, fail := range fails { + require.Error(t, source.VerifyLegalHandle(fail.handle), fmt.Sprintf("[%d] %s]", i, fail.msg)) + } + + var passes = []string{ + "@handle", + "@handle1", + "@h1", + "@h_", + "@h__", + "@h__1", + "@h__1__a___", + } + + for i, pass := range passes { + require.Nil(t, source.VerifyLegalHandle(pass), fmt.Sprintf("[%d] should pass", i)) + } +} + +func TestSuggestHandle(t *testing.T) { + testCases := []struct { + typ source.Type + loc string + want string + taken []string + }{ + {typ: csv.TypeCSV, loc: "/path/to/actor.csv", want: "@actor_csv"}, + {typ: source.TypeNone, loc: "/path/to/actor.csv", want: "@actor_csv"}, + {typ: xlsx.Type, loc: "/path/to/sakila.xlsx", want: "@sakila_xlsx"}, + {typ: xlsx.Type, loc: "/path/to/123_sakila.xlsx", want: "@h123_sakila_xlsx"}, + {typ: xlsx.Type, loc: "/path/to/__sakila.xlsx", want: "@h__sakila_xlsx"}, + {typ: xlsx.Type, loc: "/path/to/sakila.something.xlsx", want: "@sakila_something_xlsx"}, + {typ: xlsx.Type, loc: "/path/to/😀abc123😀", want: "@h_abc123__xlsx"}, + {typ: source.TypeNone, loc: "/path/to/sakila.xlsx", want: "@sakila_xlsx"}, + {typ: xlsx.Type, loc: "/path/to/sakila.xlsx", want: "@sakila_xlsx_2", taken: []string{"@sakila_xlsx", "@sakila_xlsx_1"}}, + {typ: sqlite3.Type, loc: "sqlite3:///path/to/sakila.db", want: "@sakila_sqlite"}, + {typ: source.TypeNone, loc: "sqlite3:///path/to/sakila.db", want: "@sakila_sqlite"}, + {typ: sqlite3.Type, loc: "/path/to/sakila.db", want: "@sakila_sqlite"}, + {typ: sqlserver.Type, loc: "sqlserver://sakila_p_ssW0rd@localhost?database=sakila", want: "@sakila_mssql"}, + {typ: source.TypeNone, loc: "sqlserver://sakila_p_ssW0rd@localhost?database=sakila", want: "@sakila_mssql"}, + {typ: source.TypeNone, loc: "sqlserver://sakila_p_ssW0rd@localhost?database=sakila", want: "@sakila_mssql_1", taken: []string{"@sakila_mssql"}}, + {typ: postgres.Type, loc: "postgres://sakila_p_ssW0rd@localhost/sakila?sslmode=disable", want: "@sakila_pg"}, + {typ: source.TypeNone, loc: "postgres://sakila_p_ssW0rd@localhost/sakila?sslmode=disable", want: "@sakila_pg"}, + {typ: postgres.Type, loc: "postgres://sakila_p_ssW0rd@localhost/sakila?sslmode=disable", want: "@sakila_pg"}, + {typ: mysql.Type, loc: "mysql://sakila_p_ssW0rd@localhost:3306/sakila", want: "@sakila_my"}, + {typ: source.TypeNone, loc: "mysql://sakila_p_ssW0rd@localhost:3306/sakila", want: "@sakila_my"}, + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.typ.String()+"__"+tc.loc, func(t *testing.T) { + takenFn := func(handle string) bool { + return stringz.InSlice(tc.taken, handle) + } + + got, err := source.SuggestHandle(tc.typ, tc.loc, takenFn) + require.NoError(t, err) + require.Equal(t, tc.want, got) + }) + } +} + +func TestParseTableHandle(t *testing.T) { + testCases := []struct { + input string + valid bool + handle string + table string + }{ + {"@handle1", true, "@handle1", ""}, + {" @handle1 ", true, "@handle1", ""}, + {"@handle1.tbl1", true, "@handle1", "tbl1"}, + {" @handle1.tbl1 ", true, "@handle1", "tbl1"}, + {"@handle1 .tbl1", false, "", ""}, + {"@handle1. tbl1", false, "", ""}, + {"@handle1 . tbl1", false, "", ""}, + {".tbl1", true, "", "tbl1"}, + {" .tbl1 ", true, "", "tbl1"}, + {" ._tbl1 ", true, "", "_tbl1"}, + {"invalidhandle", false, "", ""}, + {"invalidhandle.tbl1", false, "", ""}, + {"invalidhandle.@tbl1", false, "", ""}, + {".invalid table", false, "", ""}, + {"", false, "", ""}, + {" ", false, "", ""}, + } + + for i, tc := range testCases { + tc := tc + + t.Run(fmt.Sprintf("[%d]__%q", i, tc.input), func(t *testing.T) { + handle, table, err := source.ParseTableHandle(tc.input) + if tc.valid { + assert.NoError(t, err) + } else { + assert.Error(t, err) + } + assert.Equal(t, tc.handle, handle) + assert.Equal(t, tc.table, table) + }) + } +} diff --git a/libsq/source/internal_test.go b/libsq/source/internal_test.go new file mode 100644 index 00000000..8d5d0578 --- /dev/null +++ b/libsq/source/internal_test.go @@ -0,0 +1,97 @@ +package source + +import ( + "context" + "io/ioutil" + "testing" + + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" + "github.com/neilotoole/sq/testh/testsrc" +) + +func TestFiles_Open(t *testing.T) { + fs, err := NewFiles(testlg.New(t)) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, fs.Close()) }) + + src1 := &Source{ + Handle: "@t1", + Type: typeXLSX, + Location: proj.Abs(testsrc.PathXLSXTestHeader), + } + + f, err := fs.openLocation(src1.Location) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, f.Close()) }) + require.Equal(t, src1.Location, f.Name()) + + src2 := &Source{ + Handle: "@t1", + Type: typeCSV, + Location: sakila.URLActorCSV, + } + + f2, err := fs.openLocation(src2.Location) + require.NoError(t, err) + t.Cleanup(func() { assert.NoError(t, f2.Close()) }) + + b, err := ioutil.ReadAll(f2) + require.NoError(t, err) + require.Equal(t, proj.ReadFile(sakila.PathCSVActor), b) +} + +func TestParseLoc(t *testing.T) { + const ( + dbuser = "sakila" + dbpass = "p_ssW0rd" + ) + + testCases := []struct { + loc string + want parsedLoc + wantErr bool + }{ + {loc: "/path/to/sakila.xlsx", want: parsedLoc{name: "sakila", ext: ".xlsx"}}, + {loc: "relative/path/to/sakila.xlsx", want: parsedLoc{name: "sakila", ext: ".xlsx"}}, + {loc: "./relative/path/to/sakila.xlsx", want: parsedLoc{name: "sakila", ext: ".xlsx"}}, + {loc: "https://server:8080/path/to/sakila.xlsx", want: parsedLoc{scheme: "https", hostname: "server", port: 8080, name: "sakila", ext: ".xlsx"}}, + {loc: "http://server/path/to/sakila.xlsx?param=val¶m2=val2", want: parsedLoc{scheme: "http", hostname: "server", name: "sakila", ext: ".xlsx"}}, + {loc: "sqlite3:/path/to/sakila.db", want: parsedLoc{typ: typeSL3, scheme: "sqlite3", name: "sakila", ext: ".db", dsn: "/path/to/sakila.db"}}, + {loc: "sqlite3:/path/to/sakila.sqlite", want: parsedLoc{typ: typeSL3, scheme: "sqlite3", name: "sakila", ext: ".sqlite", dsn: "/path/to/sakila.sqlite"}}, + {loc: "sqlite3:/path/to/sakila", want: parsedLoc{typ: typeSL3, scheme: "sqlite3", name: "sakila", dsn: "/path/to/sakila"}}, + {loc: "sqlite3://path/to/sakila.db", want: parsedLoc{typ: typeSL3, scheme: "sqlite3", name: "sakila", ext: ".db", dsn: "path/to/sakila.db"}}, + {loc: "sqlite3:///path/to/sakila.db", want: parsedLoc{typ: typeSL3, scheme: "sqlite3", name: "sakila", ext: ".db", dsn: "/path/to/sakila.db"}}, + {loc: "sqlserver://sakila:p_ssW0rd@localhost?database=sakila", want: parsedLoc{typ: typeMS, scheme: "sqlserver", user: dbuser, pass: dbpass, hostname: "localhost", name: "sakila", dsn: "Password=p_ssW0rd;Server=localhost;User ID=sakila;database=sakila"}}, + {loc: "sqlserver://sakila:p_ssW0rd@server:1433?database=sakila", want: parsedLoc{typ: typeMS, scheme: "sqlserver", user: dbuser, pass: dbpass, hostname: "server", port: 1433, name: "sakila", dsn: "Password=p_ssW0rd;Port=1433;Server=server;User ID=sakila;database=sakila"}}, + {loc: "postgres://sakila:p_ssW0rd@localhost/sakila?sslmode=disable", want: parsedLoc{typ: typePg, scheme: "postgres", user: dbuser, pass: dbpass, hostname: "localhost", name: "sakila", dsn: "dbname=sakila host=localhost password=p_ssW0rd sslmode=disable user=sakila"}}, + {loc: "postgres://sakila:p_ssW0rd@server:5432/sakila?sslmode=disable", want: parsedLoc{typ: typePg, scheme: "postgres", user: dbuser, pass: dbpass, hostname: "server", port: 5432, name: "sakila", dsn: "dbname=sakila host=server password=p_ssW0rd port=5432 sslmode=disable user=sakila"}}, + {loc: "mysql://sakila:p_ssW0rd@localhost/sakila", want: parsedLoc{typ: typeMy, scheme: "mysql", user: dbuser, pass: dbpass, hostname: "localhost", name: "sakila", dsn: "sakila:p_ssW0rd@tcp(localhost:3306)/sakila"}}, + {loc: "mysql://sakila:p_ssW0rd@server:3306/sakila", want: parsedLoc{typ: typeMy, scheme: "mysql", user: dbuser, pass: dbpass, hostname: "server", port: 3306, name: "sakila", dsn: "sakila:p_ssW0rd@tcp(server:3306)/sakila"}}, + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.loc, func(t *testing.T) { + tc.want.loc = tc.loc // set this here rather than verbosely in the setup + got, gotErr := parseLoc(tc.loc) + if tc.wantErr { + require.Error(t, gotErr) + require.Nil(t, got) + return + } + + require.NoError(t, gotErr) + require.Equal(t, tc.want, *got) + }) + } +} + +// FilesDetectTypeFn exports Files.detectType for testing. +var FilesDetectTypeFn = func(fs *Files, ctx context.Context, loc string) (typ Type, ok bool, err error) { + return fs.detectType(ctx, loc) +} diff --git a/libsq/source/location.go b/libsq/source/location.go new file mode 100644 index 00000000..00e5bc5f --- /dev/null +++ b/libsq/source/location.go @@ -0,0 +1,238 @@ +package source + +import ( + "net/url" + "path" + "path/filepath" + "strconv" + "strings" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/xo/dburl" +) + +var dbSchemes = []string{ + "mysql", + "sqlserver", + "postgres", + "sqlite3", +} + +// LocationFileName returns the final component of the file/URL path. +func LocationFileName(src *Source) (string, error) { + if IsSQLLocation(src.Location) { + return "", errz.Errorf("location is not a file: %s", src.Location) + } + + ploc, err := parseLoc(src.Location) + if err != nil { + return "", err + } + + return ploc.name + ploc.ext, nil +} + +// IsSQLLocation returns true if source location loc seems to be +// a DSN for a SQL driver. +func IsSQLLocation(loc string) bool { + for _, dbScheme := range dbSchemes { + if strings.HasPrefix(loc, dbScheme+"://") { + return true + } + } + + return false +} + +// ShortLocation returns a short location string. For example, the +// base name (data.xlsx) for a file or for a DSN, user@host[:port]/db. +func ShortLocation(loc string) string { + if !IsSQLLocation(loc) { + // NOT a SQL location, must be a document (local filepath or URL). + + // Let's check if it's http + u, ok := HTTPURL(loc) + if ok { + name := path.Base(u.Path) + if name == "" || name == "/" || name == "." { + // Well, if we don't have a good name from u.Path, we'll + // fall back to the hostname. + name = u.Hostname() + } + return name + } + + // It's not a http URL, so it must be a filepath + loc = filepath.Clean(loc) + return filepath.Base(loc) + } + + // It's a SQL driver + u, err := dburl.Parse(loc) + if err != nil { + return loc + } + + if u.Scheme == "sqlite3" { + // special handling for sqlite + return path.Base(u.DSN) + } + + sb := strings.Builder{} + if u.User != nil && len(u.User.Username()) > 0 { + sb.WriteString(u.User.Username()) + sb.WriteString("@") + } + + sb.WriteString(u.Host) + if u.Path != "" { + sb.WriteString(u.Path) + // path contains the db name + return sb.String() + } + + // Else path is empty, db name was prob part of params + vals, err := url.ParseQuery(u.DSN) + if err != nil { + return loc + } + + db := vals.Get("database") + if db == "" { + return loc + } + + sb.WriteRune('/') + sb.WriteString(db) + return sb.String() +} + +// parsedLoc is a parsed representation of a source location. +type parsedLoc struct { + // loc is the original unparsed location value. + loc string + + // typ is the associated source driver type, which may + // be empty until later determination. + typ Type + + // scheme is the original location scheme + scheme string + + // user is the username, if applicable. + user string + + // pass is the password, if applicable. + pass string + + // hostname is the hostname, if applicable. + hostname string + + // port is the port number or 0 if not applicable. + port int + + // name is the "source name", e.g. "sakila". Typically this + // is the database name, but for a file location such + // as "/path/to/things.xlsx" it would be "things". + name string + + // ext is the file extension, if applicable. + ext string + + // dsn is the connection "data source name" that can be used in a + // call to sql/Open. Empty for non-SQL locations. + dsn string +} + +// parseLoc parses a location string. On return +// the typ field may not be set: further processing +// may be required. +func parseLoc(loc string) (*parsedLoc, error) { + ploc := &parsedLoc{loc: loc} + + if !strings.ContainsRune(loc, ':') { + // no scheme: it's just a file path + name := filepath.Base(loc) + ploc.ext = filepath.Ext(name) + if ploc.ext != "" { + name = name[:len(name)-len(ploc.ext)] + } + + ploc.name = name + return ploc, nil + } + + if u, ok := HTTPURL(loc); ok { + // It's a http or https URL + ploc.scheme = u.Scheme + ploc.hostname = u.Hostname() + if u.Port() != "" { + var err error + ploc.port, err = strconv.Atoi(u.Port()) + if err != nil { + return nil, errz.Wrapf(err, "parse location: invalid port %q: %q", u.Port(), loc) + } + } + + name := path.Base(u.Path) + ploc.ext = path.Ext(name) + if ploc.ext != "" { + name = name[:len(name)-len(ploc.ext)] + } + + ploc.name = name + return ploc, nil + } + + u, err := dburl.Parse(loc) + if err != nil { + return nil, errz.Err(err) + } + + ploc.scheme = u.OriginalScheme + ploc.dsn = u.DSN + ploc.user = u.User.Username() + ploc.pass, _ = u.User.Password() + + // sqlite3 is a special case, handle it now + if ploc.scheme == "sqlite3" { + ploc.typ = typeSL3 + name := path.Base(u.DSN) + ploc.ext = filepath.Ext(name) + if ploc.ext != "" { + name = name[:len(name)-len(ploc.ext)] + } + + ploc.name = name + return ploc, nil + } + + ploc.hostname = u.Hostname() + if u.Port() != "" { + ploc.port, err = strconv.Atoi(u.Port()) + if err != nil { + return nil, errz.Wrapf(err, "parse location: invalid port %q: %q", u.Port(), loc) + } + } + + switch ploc.scheme { + default: + return nil, errz.Errorf("parse location: invalid scheme: %s", loc) + case "sqlserver": + ploc.typ = typeMS + vals, err := url.ParseQuery(u.DSN) + if err != nil { + return nil, + errz.Wrapf(err, "parse location: %q", loc) + } + ploc.name = vals.Get("database") + case "postgres": + ploc.typ = typePg + ploc.name = strings.TrimPrefix(u.Path, "/") + case "mysql": + ploc.typ = typeMy + ploc.name = strings.TrimPrefix(u.Path, "/") + } + + return ploc, nil +} diff --git a/libsq/source/location_test.go b/libsq/source/location_test.go new file mode 100644 index 00000000..c13b2d3f --- /dev/null +++ b/libsq/source/location_test.go @@ -0,0 +1,35 @@ +package source_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/source" +) + +func TestIsSQL(t *testing.T) { + testCases := []struct { + loc string + want bool + }{ + {loc: "/path/to/data.xlsx", want: false}, + {loc: "relative/path/to/data.xlsx", want: false}, + {loc: "./relative/path/to/data.xlsx", want: false}, + {loc: "../relative/path/to/data.xlsx", want: false}, + {loc: "https://path/to/data.xlsx", want: false}, + {loc: "http://path/to/data.xlsx", want: false}, + {loc: "sqlite3:///path/to/sqlite.db", want: true}, + {loc: "sqlserver://sq:p_ssW0rd@localhost?database=sqtest", want: true}, + {loc: "postgres://sq:p_ssW0rd@localhost/sqtest?sslmode=disable", want: true}, + {loc: "mysql://sq:p_ssW0rd@tcp(localhost:3306)/sqtest", want: true}, + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.loc, func(t *testing.T) { + got := source.IsSQLLocation(tc.loc) + require.Equal(t, tc.want, got) + }) + } +} diff --git a/libsq/source/metadata.go b/libsq/source/metadata.go new file mode 100644 index 00000000..7edd7c5f --- /dev/null +++ b/libsq/source/metadata.go @@ -0,0 +1,159 @@ +package source + +import ( + "encoding/json" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// Metadata holds metadata for a source. +type Metadata struct { + // Handle is the source handle. + Handle string `json:"handle"` + + // Name is the base name of the source, e.g. the base filename + // or DB name etc. For example, "sakila". + Name string `json:"name"` + + // FQName is the full name of the data source, typically + // including catalog/schema etc. For example, "sakila.public" + FQName string `json:"fq_name"` + + // SourceType is the source driver type. + SourceType Type `json:"driver"` + + // DBDriverType is the type of the underling DB driver. + // This is the same value as SourceType for SQL database types. + DBDriverType Type `json:"db_driver"` + + // DBProduct is the DB product string, such as "PostgreSQL 9.6.17 on x86_64-pc-linux-gnu". + DBProduct string `json:"db_product"` + + // DBVersion is the DB version. + DBVersion string `json:"db_version"` + + // DBVars are configuration name-value pairs from the DB. + DBVars []DBVar `json:"db_variables,omitempty"` + + // Location is the source location such as a DB connection string, + // a file path, or a URL. + Location string `json:"location"` + + // User is the username, if applicable. + User string `json:"user,omitempty"` + + // Size is the physical size of the source in bytes, e.g. DB file size. + Size int64 `json:"size"` + + // Tables is the metadata for each table in the source. + Tables []*TableMetadata `json:"tables"` +} + +// TableNames is a convenience method that returns md's table names. +func (md *Metadata) TableNames() []string { + var names []string + for _, tblDef := range md.Tables { + names = append(names, tblDef.Name) + } + return names +} + +func (md *Metadata) String() string { + bytes, _ := json.Marshal(md) + return string(bytes) +} + +// DBVar models a key-value pair for driver config. +// REVISIT: maybe better named as SourceSetting or such? +type DBVar struct { + Name string `json:"name"` + Value string `json:"value"` +} + +// TableMetadata models table (or view) metadata. +type TableMetadata struct { + // Name is the table name, such as "actor". + Name string `json:"name"` + + // FQName is the fully-qualified name, such as "sakila.public.actor" + FQName string `json:"fq_name,omitempty"` + + // TableType indicates if this is a base table, view, etc. + // The value is driver dependent, e.g. "BASE TABLE" or "VIEW" for postgres. + TableType string `json:"tbl_type,omitempty"` + + // RowCount is the number of rows in the table. + RowCount int64 `json:"row_count"` + + // Size is the physical size of the table. For a view, this + // may be meaningless. + Size int64 `json:"tbl_size"` + + // Comment is the comment for the table. Typically empty. + Comment string `json:"comment,omitempty"` + + // Columns holds the metadata for the table's columns. + Columns []*ColMetadata `json:"columns"` +} + +func (t *TableMetadata) String() string { + bytes, _ := json.Marshal(t) + return string(bytes) +} + +// Column returns the named col or nil. +func (t *TableMetadata) Column(colName string) *ColMetadata { + for _, col := range t.Columns { + if col.Name == colName { + return col + } + } + + return nil +} + +// PKCols returns a possibly empty slice of cols that are part +// of the table primary key. +func (t *TableMetadata) PKCols() []*ColMetadata { + var pkCols []*ColMetadata + for _, col := range t.Columns { + if col.PrimaryKey { + pkCols = append(pkCols, col) + } + } + + return pkCols +} + +// ColMetadata models metadata for a particular column of a data source. +type ColMetadata struct { + Name string `json:"name"` + Position int64 `json:"position"` + PrimaryKey bool `json:"primary_key"` + BaseType string `json:"base_type"` + ColumnType string `json:"column_type"` + Kind sqlz.Kind `json:"kind"` + Nullable bool `json:"nullable"` + DefaultValue string `json:"default_value,omitempty"` + Comment string `json:"comment,omitempty"` + // TODO: Add foreign key field +} + +func (c *ColMetadata) String() string { + bytes, _ := json.Marshal(c) + return string(bytes) +} + +// TableFromSourceMetadata returns TableMetadata whose name matches +// tblName. +// +// Deprecated: Each driver should implement this correctly for a single table. +func TableFromSourceMetadata(srcMeta *Metadata, tblName string) (*TableMetadata, error) { + for _, tblMeta := range srcMeta.Tables { + if tblMeta.Name == tblName { + return tblMeta, nil + } + } + return nil, errz.Errorf("metadata for table %s not found", tblName) +} diff --git a/libsq/source/set.go b/libsq/source/set.go new file mode 100644 index 00000000..593b3def --- /dev/null +++ b/libsq/source/set.go @@ -0,0 +1,325 @@ +package source + +import ( + "encoding/json" + "strings" + "sync" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/stringz" +) + +const ( + msgUnknownSrc = `unknown data source %s` + msgNoActiveSrc = "no active data source" +) + +// Set is a set of sources. Typically it is loaded from config +// at a start of a run. +type Set struct { + mu sync.Mutex + data setData +} + +// setData holds Set's for the purposes of serialization +// to YAML etc (we don't want to expose setData's exported +// fields directly on Set.) +type setData struct { + ActiveSrc string `yaml:"active" json:"active"` + ScratchSrc string `yaml:"scratch" json:"scratch"` + Items []*Source `yaml:"items" json:"items"` +} + +// MarshalJSON implements json.Marshaler. +func (s *Set) MarshalJSON() ([]byte, error) { + s.mu.Lock() + defer s.mu.Unlock() + + return json.Marshal(s.data) +} + +// UnmarshalJSON implements json.Unmarshaler +func (s *Set) UnmarshalJSON(b []byte) error { + s.mu.Lock() + defer s.mu.Unlock() + + return json.Unmarshal(b, &s.data) +} + +// MarshalYAML implements yaml.Marshaler. +func (s *Set) MarshalYAML() (interface{}, error) { + s.mu.Lock() + defer s.mu.Unlock() + + return s.data, nil +} + +// UnmarshalYAML implements yaml.Unmarshaler. +func (s *Set) UnmarshalYAML(unmarshal func(interface{}) error) error { + s.mu.Lock() + defer s.mu.Unlock() + + return unmarshal(&s.data) +} + +// Items returns the sources as a slice. +func (s *Set) Items() []*Source { + s.mu.Lock() + defer s.mu.Unlock() + + return s.data.Items +} + +func (s *Set) String() string { + s.mu.Lock() + defer s.mu.Unlock() + + return stringz.SprintJSON(s) +} + +// Add adds src to s. +func (s *Set) Add(src *Source) error { + s.mu.Lock() + defer s.mu.Unlock() + + if i, _ := s.indexOf(src.Handle); i != -1 { + return errz.Errorf("data source with name %s already exists", src.Handle) + } + + s.data.Items = append(s.data.Items, src) + return nil +} + +// IndexOf returns the index of handle in s. +func (s *Set) IndexOf(handle string) (int, *Source) { + s.mu.Lock() + defer s.mu.Unlock() + + return s.indexOf(handle) +} + +// Exists returns true if handle already exists in the set. +func (s *Set) Exists(handle string) bool { + s.mu.Lock() + defer s.mu.Unlock() + + i, _ := s.indexOf(handle) + return i != -1 +} + +func (s *Set) indexOf(handle string) (int, *Source) { + for i, src := range s.data.Items { + if src.Handle == handle { + return i, src + } + } + + return -1, nil +} + +// Active returns the active source, or nil. +func (s *Set) Active() *Source { + s.mu.Lock() + defer s.mu.Unlock() + + return s.active() +} + +func (s *Set) active() *Source { + if s.data.ActiveSrc == "" { + return nil + } + + i, src := s.indexOf(s.data.ActiveSrc) + if i == -1 { + return nil + } + + return src +} + +// Scratch returns the scratch source, or nil. +func (s *Set) Scratch() *Source { + s.mu.Lock() + defer s.mu.Unlock() + + if s.data.ScratchSrc == "" { + return nil + } + + i, src := s.indexOf(s.data.ScratchSrc) + if i == -1 { + return nil + } + + return src +} + +// Get gets the src with handle, or returns an error. +func (s *Set) Get(handle string) (*Source, error) { + s.mu.Lock() + defer s.mu.Unlock() + + handle = strings.TrimSpace(handle) + if handle == "" { + return nil, errz.Errorf(msgUnknownSrc, handle) + } + + if !strings.HasPrefix(handle, "@") { + handle = "@" + handle + } + + // Special handling for "@active", which is the reserved + // handle for the active source. + if handle == ActiveHandle { + activeSrc := s.active() + if activeSrc == nil { + return nil, errz.New(msgNoActiveSrc) + } + return activeSrc, nil + } + + i, src := s.indexOf(handle) + if i == -1 { + return nil, errz.Errorf(msgUnknownSrc, handle) + } + + return src, nil +} + +// SetActive sets the active src, or unsets any active +// src if handle is empty. If handle does not +// exist, an error is returned. +func (s *Set) SetActive(handle string) (*Source, error) { + s.mu.Lock() + defer s.mu.Unlock() + + if handle == "" { + s.data.ActiveSrc = "" + return nil, nil + } + + for _, src := range s.data.Items { + if src.Handle == handle { + s.data.ActiveSrc = handle + return src, nil + } + } + + return nil, errz.Errorf(msgUnknownSrc, handle) +} + +// SetScratch sets the scratch src to handle. +func (s *Set) SetScratch(handle string) (*Source, error) { + s.mu.Lock() + defer s.mu.Unlock() + + if handle == "" { + s.data.ScratchSrc = "" + return nil, nil + } + for _, src := range s.data.Items { + if src.Handle == handle { + s.data.ScratchSrc = handle + return src, nil + } + } + + return nil, errz.Errorf(msgUnknownSrc, handle) +} + +// Remove removes from the set the src having handle. +func (s *Set) Remove(handle string) error { + s.mu.Lock() + defer s.mu.Unlock() + + if len(s.data.Items) == 0 { + return errz.Errorf(msgUnknownSrc, handle) + } + + i, _ := s.indexOf(handle) + if i == -1 { + return errz.Errorf(msgUnknownSrc, handle) + } + + if s.data.ActiveSrc == handle { + s.data.ActiveSrc = "" + } + + if s.data.ScratchSrc == handle { + s.data.ScratchSrc = "" + } + + if len(s.data.Items) == 1 { + s.data.Items = s.data.Items[0:0] + return nil + } + + pre := s.data.Items[:i] + post := s.data.Items[i+1:] + + s.data.Items = pre + s.data.Items = append(s.data.Items, post...) + return nil +} + +// VerifySetIntegrity verifies the internal state of s. +// Typically this func is invoked after s has been loaded +// from config, verifying that the config is not corrupt. +func VerifySetIntegrity(ss *Set) error { + if ss == nil { + return errz.New("source set is nil") + } + + ss.mu.Lock() + defer ss.mu.Unlock() + + handles := map[string]*Source{} + for i := range ss.data.Items { + src := ss.data.Items[i] + if src == nil { + return errz.Errorf("source set item %d is nil", i) + } + + err := verifyLegalSource(src) + if err != nil { + return errz.Wrapf(err, "source set item %d", i) + } + + if _, exists := handles[src.Handle]; exists { + return errz.Errorf("source set item %d duplicates handle %s", i, src.Handle) + } + + handles[src.Handle] = src + } + + if strings.TrimSpace(ss.data.ActiveSrc) != "" { + if _, exists := handles[ss.data.ActiveSrc]; !exists { + return errz.Errorf("active source %s does not exist in source set", ss.data.ActiveSrc) + } + } + + return nil +} + +// verifyLegalSource performs basic checking on source s. +func verifyLegalSource(s *Source) error { + if s == nil { + return errz.New("source is nil") + } + + err := VerifyLegalHandle(s.Handle) + if err != nil { + return err + } + + if strings.TrimSpace(s.Location) == "" { + return errz.New("source location is empty") + } + + if s.Type == TypeNone { + return errz.Errorf("source type is empty or unknown: %q", s.Type) + } + + return nil +} diff --git a/libsq/source/source.go b/libsq/source/source.go new file mode 100644 index 00000000..76a815a0 --- /dev/null +++ b/libsq/source/source.go @@ -0,0 +1,143 @@ +// Package source provides functionality for dealing with data sources. +package source + +import ( + "context" + "fmt" + "io" + "net/url" + "strings" + + "github.com/xo/dburl" + + "github.com/neilotoole/sq/libsq/options" +) + +// Type is a source type, e.g. "mysql", "postgres", "csv", etc. +type Type string + +func (t Type) String() string { + return string(t) +} + +// TypeNone is the zero value of driver.Type. +const TypeNone = Type("") + +const ( + // StdinHandle is the reserved handle for stdin pipe input. + StdinHandle = "@stdin" + + // ActiveHandle is the reserved handle for the active source. + // FIXME: it should be possible to use "@0" as the active handle, but + // the SLQ grammar doesn't currently allow it. Possibly change this + // value to "@0" after modifying the SLQ grammar. + ActiveHandle = "@active" + + // ScratchHandle is the reserved handle for the scratch source. + ScratchHandle = "@scratch" + + // JoinHandle is the reserved handle for the join db source. + JoinHandle = "@join" + + // MonotableName is the table name used for "mono-table" drivers + // such as CSV. Thus a source @address_csv will have its + // data accessible via @address_csv.data. + MonotableName = "data" +) + +// ReservedHandles returns a slice of the handle names that +// are reserved for sq use. +func ReservedHandles() []string { + return []string{StdinHandle, ActiveHandle, ScratchHandle, JoinHandle} +} + +// Source describes a data source. +type Source struct { + Handle string `yaml:"handle" json:"handle"` + Type Type `yaml:"type" json:"type"` + Location string `yaml:"location" json:"location"` + Options options.Options `yaml:"options,omitempty" json:"options,omitempty"` +} + +func (s *Source) String() string { + return fmt.Sprintf("%s | %s | %s", s.Handle, s.Type, s.RedactedLocation()) +} + +// RedactedLocation returns s.Location, with the password component +// of the location masked. +func (s *Source) RedactedLocation() string { + if s == nil { + return "" + } + loc := s.Location + + switch { + case loc == "": + return "" + case strings.HasPrefix(loc, "/"): + // It's a file + return loc + case strings.HasPrefix(loc, "http://"), strings.HasPrefix(loc, "https://"): + // TODO: technically a HTTP url could have a user:password component that could be masked + return loc + } + + // At this point, we expect it's a DSN + u, err := dburl.Parse(loc) + if err != nil { + // Shouldn't happen, but if it does, simply return the + // unmodified loc. + return loc + } + + // We want to mask the password, but our preferred **** + // text gets URL encoded, so we'll make this a two-step process. + u.User = url.UserPassword(u.User.Username(), "password") + return strings.Replace(u.String(), "password", "****", 1) +} + +// ShortLocation returns a short location string. For example, the +// base name (data.xlsx) for a file or for a DSN, user@host[:port]/db. +func (s *Source) ShortLocation() string { + if s == nil { + return "" + } + return ShortLocation(s.Location) +} + +const ( + typeSL3 = Type("sqlite3") + typePg = Type("postgres") + typeMS = Type("sqlserver") + typeMy = Type("mysql") + typeXLSX = Type("xlsx") + typeCSV = Type("csv") + typeTSV = Type("tsv") +) + +// TypeDetectorFunc interrogates a byte stream to determine +// the source driver type. A score is returned indicating the +// the confidence that the driver type has been detected. +// A score <= 0 is failure, a score >= 1 is success; intermediate +// values indicate some level of confidence. +// An error is returned only if an IO problem occurred. +// The implementation is responsible for closing r. +type TypeDetectorFunc func(ctx context.Context, r io.Reader) (detected Type, score float32, err error) + +// typeFromMediaType returns the driver type corresponding to mediatype. +// For example: +// +// xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet +// csv text/csv +func typeFromMediaType(mediatype string) (driverType Type, ok bool) { + switch { + case strings.Contains(mediatype, `application/vnd.openxmlformats-officedocument.spreadsheetml.sheet`): + return typeXLSX, true + case strings.Contains(mediatype, `text/csv`): + return typeCSV, true + case strings.Contains(mediatype, `text/tab-separated-values`): + return typeTSV, true + } + + return TypeNone, false +} diff --git a/libsq/source/source_test.go b/libsq/source/source_test.go new file mode 100644 index 00000000..04bdeda0 --- /dev/null +++ b/libsq/source/source_test.go @@ -0,0 +1,63 @@ +package source_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/source" +) + +func TestRedactedLocation(t *testing.T) { + testCases := []struct { + tname string + loc string + want string + }{ + {tname: "sqlite", loc: "/path/to/sqlite.db", want: "/path/to/sqlite.db"}, + {tname: "xlsx", loc: "/path/to/data.xlsx", want: "/path/to/data.xlsx"}, + {tname: "https", loc: "https://path/to/data.xlsx", want: "https://path/to/data.xlsx"}, + {tname: "http", loc: "http://path/to/data.xlsx", want: "http://path/to/data.xlsx"}, + {tname: "sqlserver", loc: "sqlserver://sq:p_ssW0rd@localhost?database=sqtest", want: "sqlserver://sq:****@localhost?database=sqtest"}, + {tname: "postgres", loc: "postgres://sq:p_ssW0rd@localhost/sqtest?sslmode=disable", want: "postgres://sq:****@localhost/sqtest?sslmode=disable"}, + {tname: "mysql", loc: "mysql://sq:p_ssW0rd@localhost:3306/sqtest", want: "mysql://sq:****@localhost:3306/sqtest"}, + {tname: "sqlite3", loc: "sqlite3:///path/to/sqlite.db", want: "sqlite3:/path/to/sqlite.db"}, // FIXME: how many slashes to we want, or zero slashes? + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.tname, func(t *testing.T) { + src := &source.Source{Location: tc.loc} + got := src.RedactedLocation() + t.Logf("%s --> %s", src.Location, got) + require.Equal(t, tc.want, got) + }) + } +} + +func TestShortLocation(t *testing.T) { + testCases := []struct { + tname string + loc string + want string + }{ + {tname: "sqlite3_scheme", loc: "sqlite3:///path/to/sqlite.db", want: "sqlite.db"}, + {tname: "sqlite3", loc: "/path/to/sqlite.db", want: "sqlite.db"}, + {tname: "xlsx", loc: "/path/to/data.xlsx", want: "data.xlsx"}, + {tname: "https", loc: "https://path/to/data.xlsx", want: "data.xlsx"}, + {tname: "http", loc: "http://path/to/data.xlsx", want: "data.xlsx"}, + {tname: "sqlserver", loc: "sqlserver://sq:p_ssw0rd@localhost?database=sqtest", want: "sq@localhost/sqtest"}, + {tname: "postgres", loc: "postgres://sq:p_ssW0rd@localhost/sqtest?sslmode=disable", want: "sq@localhost/sqtest"}, + {tname: "mysql", loc: "mysql://sq:p_ssW0rd@localhost:3306/sqtest", want: "sq@localhost:3306/sqtest"}, + {tname: "mysql", loc: "mysql://sq:p_ssW0rd@localhost/sqtest", want: "sq@localhost/sqtest"}, + } + + for _, tc := range testCases { + tc := tc + t.Run(tc.tname, func(t *testing.T) { + got := source.ShortLocation(tc.loc) + t.Logf("%s --> %s", tc.loc, got) + require.Equal(t, tc.want, got) + }) + } +} diff --git a/libsq/sqlbuilder/basebuilder.go b/libsq/sqlbuilder/basebuilder.go new file mode 100644 index 00000000..74bfcc13 --- /dev/null +++ b/libsq/sqlbuilder/basebuilder.go @@ -0,0 +1,341 @@ +package sqlbuilder + +import ( + "bytes" + "fmt" + "math" + "strings" + + "github.com/neilotoole/lg" + + "github.com/neilotoole/sq/libsq/ast" + "github.com/neilotoole/sq/libsq/errz" +) + +// baseOps is a map of SLQ operator (e.g. "==" or "!=") to its default SQL rendering. +var baseOps = map[string]string{ + `==`: `=`, +} + +// BaseOps returns a default map of SLQ operator (e.g. "==" or "!=") to its default SQL rendering. +// The returned map is a copy and can be safely modified by the caller. +func BaseOps() map[string]string { + ops := make(map[string]string, len(baseOps)) + for k, v := range baseOps { + ops[k] = v + } + return ops +} + +// BaseFragmentBuilder is a default implementation of sqlbuilder.FragmentBuilder. +type BaseFragmentBuilder struct { + Log lg.Log + // Quote is the driver-specific quote rune, e.g. " or ` + Quote string + ColQuote string + Ops map[string]string +} + +// Operator implements FragmentBuilder. +func (fb *BaseFragmentBuilder) Operator(op *ast.Operator) (string, error) { + if val, ok := fb.Ops[op.Text()]; ok { + return val, nil + } + + return op.Text(), nil +} + +// Where implements FragmentBuilder. +func (fb *BaseFragmentBuilder) Where(where *ast.Where) (string, error) { + sql, err := fb.Expr(where.Expr()) + if err != nil { + return "", err + } + + sql = "WHERE " + sql + return sql, nil +} + +// Expr implements FragmentBuilder. +func (fb *BaseFragmentBuilder) Expr(expr *ast.Expr) (string, error) { + var sql string + + for _, child := range expr.Children() { + switch child := child.(type) { + case *ast.Selector: + val := child.SelValue() + parts := strings.Split(val, ".") + identifier := fb.ColQuote + strings.Join(parts, fb.ColQuote+"."+fb.ColQuote) + fb.ColQuote + sql = sql + " " + identifier + case *ast.Operator: + val, err := fb.Operator(child) + if err != nil { + return "", err + } + sql = sql + " " + val + case *ast.Expr: + val, err := fb.Expr(child) + if err != nil { + return "", err + } + sql = sql + " " + val + + default: + sql = sql + " " + child.Text() + } + } + + fb.Log.Debugf("returning SQL fragment: %s", sql) + return sql, nil +} + +// SelectAll implements FragmentBuilder. +func (fb *BaseFragmentBuilder) SelectAll(tblSel *ast.TblSelector) (string, error) { + sql := fmt.Sprintf("SELECT * FROM %v%s%v", fb.Quote, tblSel.SelValue(), fb.Quote) + return sql, nil +} + +// Function implements FragmentBuilder. +func (fb *BaseFragmentBuilder) Function(fn *ast.Func) (string, error) { + fb.Log.Debugf("rendering function: %s", fn.FuncName()) + + buf := &bytes.Buffer{} + children := fn.Children() + + if len(children) == 0 { + // no children, let's just grab the direct text + + // HACK: this stuff basically doesn't work at all... + // but for COUNT(), here's a quick hack to make it work on some DBs + if fn.Context().GetText() == "count()" { + buf.WriteString("COUNT(*)") + } else { + buf.WriteString(fn.Context().GetText()) + } + + fb.Log.Debugf("returning SQL fragment: %s", buf.String()) + return buf.String(), nil + } + + buf.WriteString(fn.FuncName()) + buf.WriteRune('(') + for i, child := range children { + if i > 0 { + buf.WriteString(", ") + } + fb.Log.Debugf("child %d: %T", i, child) + + switch child := child.(type) { + case *ast.ColSelector: + buf.WriteString(child.SelValue()) + default: + fb.Log.Debugf("unknown child type") + } + } + + buf.WriteRune(')') + sql := buf.String() + + fb.Log.Debugf("returning SQL fragment: %s", sql) + return sql, nil +} + +// FromTable implements FragmentBuilder. +func (fb *BaseFragmentBuilder) FromTable(tblSel *ast.TblSelector) (string, error) { + tblName := tblSel.SelValue() + if tblName == "" { + return "", errz.Errorf("selector has empty table name: %q", tblSel.Text()) + } + + clause := fmt.Sprintf("FROM %v%s%v", fb.Quote, tblSel.SelValue(), fb.Quote) + fb.Log.Debugf("returning SQL fragment: %s", clause) + return clause, nil +} + +// Join implements FragmentBuilder. +func (fb *BaseFragmentBuilder) Join(fnJoin *ast.Join) (string, error) { + joinType := "INNER JOIN" + onClause := "" + + if len(fnJoin.Children()) == 0 { + joinType = "NATURAL JOIN" + } else { + joinExpr, ok := fnJoin.Children()[0].(*ast.JoinConstraint) + if !ok { + return "", errz.Errorf("expected *FnJoinExpr but got %T", fnJoin.Children()[0]) + } + + leftOperand := "" + operator := "" + rightOperand := "" + + if len(joinExpr.Children()) == 1 { + // It's a single col selector + colSel, ok := joinExpr.Children()[0].(*ast.ColSelector) + if !ok { + return "", errz.Errorf("expected *ColSelector but got %T", joinExpr.Children()[0]) + } + + leftOperand = fmt.Sprintf("%s%s%s.%s%s%s", fb.Quote, fnJoin.LeftTbl().SelValue(), fb.Quote, fb.Quote, colSel.SelValue(), fb.Quote) + operator = "==" + rightOperand = fmt.Sprintf("%s%s%s.%s%s%s", fb.Quote, fnJoin.RightTbl().SelValue(), fb.Quote, fb.Quote, colSel.SelValue(), fb.Quote) + } else { + leftOperand = joinExpr.Children()[0].Text()[1:] + operator = joinExpr.Children()[1].Text() + rightOperand = joinExpr.Children()[2].Text()[1:] + } + + if operator == "==" { + operator = "=" + } + + onClause = fmt.Sprintf(" ON %s %s %s", leftOperand, operator, rightOperand) + } + + sql := fmt.Sprintf("FROM %s%s%s %s %s%s%s", fb.Quote, fnJoin.LeftTbl().SelValue(), fb.Quote, joinType, fb.Quote, fnJoin.RightTbl().SelValue(), fb.Quote) + if onClause != "" { + sql = sql + " " + onClause + } + + fb.Log.Debugf("returning JOIN fragment: %s", sql) + return sql, nil +} + +// Range implements FragmentBuilder. +func (fb *BaseFragmentBuilder) Range(rr *ast.RowRange) (string, error) { + if rr == nil { + return "", nil + } + + if rr.Limit < 0 && rr.Offset < 0 { + return "", nil + } + + limit := "" + offset := "" + if rr.Limit > -1 { + limit = fmt.Sprintf(" LIMIT %d", rr.Limit) + } + if rr.Offset > -1 { + offset = fmt.Sprintf(" OFFSET %d", rr.Offset) + + if rr.Limit == -1 { + // MySQL requires a LIMIT if OFFSET is used. Therefore + // we make the LIMIT a very large number + limit = fmt.Sprintf(" LIMIT %d", math.MaxInt64) + } + } + + sql := limit + offset + fb.Log.Debugf("returning SQL fragment: %s", sql) + + return sql, nil +} + +// SelectCols implements FragmentBuilder. +func (fb *BaseFragmentBuilder) SelectCols(cols []ast.ColExpr) (string, error) { + fb.Log.Debugf("generating select clause for cols: %v", cols) + + if len(cols) == 0 { + return "SELECT *", nil + } + + vals := make([]string, len(cols)) + + for i, col := range cols { + colText, err := col.ColExpr() + if err != nil { + return "", errz.Errorf("unable to extract col expr from %q: %v", col, err) + } + + fn, ok := col.(*ast.Func) + if ok { + // it's a function + vals[i], err = fb.Function(fn) + if err != nil { + return "", err + } + continue + } + + if !col.IsColName() { + // it's a function or expression + vals[i] = colText // for now, we just return the raw text + continue + } + + // it's a column name, e.g. "uid" or "user.uid" + if !strings.ContainsRune(colText, '.') { + // it's a regular (non-scoped) col name, e.g. "uid" + vals[i] = fmt.Sprintf("%s%s%s", fb.Quote, colText, fb.Quote) + continue + } + + // the expr contains a period, so it's likely scoped, e.g. "user.uid" + parts := strings.Split(colText, ".") + if len(parts) != 2 { + return "", errz.Errorf("expected scoped col expr %q to have 2 parts, but got: %v", col, parts) + } + + vals[i] = fmt.Sprintf("%s%s%s.%s%s%s", fb.Quote, parts[0], fb.Quote, fb.Quote, parts[1], fb.Quote) + } + + text := "SELECT " + strings.Join(vals, ", ") + return text, nil +} + +// BaseQueryBuilder is a default implementation +// of sqlbuilder.QueryBuilder. +type BaseQueryBuilder struct { + SelectClause string + FromClause string + WhereClause string + RangeClause string + OrderByClause string +} + +// SetSelect implements QueryBuilder. +func (qb *BaseQueryBuilder) SetSelect(cols string) { + qb.SelectClause = cols +} + +// SetFrom implements QueryBuilder. +func (qb *BaseQueryBuilder) SetFrom(from string) { + qb.FromClause = from +} + +// SetWhere implements QueryBuilder. +func (qb *BaseQueryBuilder) SetWhere(where string) { + qb.WhereClause = where +} + +// SetRange implements QueryBuilder. +func (qb *BaseQueryBuilder) SetRange(rng string) { + qb.RangeClause = rng +} + +// SQL implements QueryBuilder. +func (qb *BaseQueryBuilder) SQL() (string, error) { + buf := &bytes.Buffer{} + + buf.WriteString(qb.SelectClause) + buf.WriteRune(' ') + buf.WriteString(qb.FromClause) + + if qb.WhereClause != "" { + buf.WriteRune(' ') + buf.WriteString(qb.WhereClause) + } + + if qb.OrderByClause != "" { + buf.WriteRune(' ') + buf.WriteString(qb.OrderByClause) + } + + if qb.RangeClause != "" { + buf.WriteRune(' ') + buf.WriteString(qb.RangeClause) + } + + return buf.String(), nil +} diff --git a/libsq/sqlbuilder/sqlbuilder.go b/libsq/sqlbuilder/sqlbuilder.go new file mode 100644 index 00000000..2bf397b4 --- /dev/null +++ b/libsq/sqlbuilder/sqlbuilder.go @@ -0,0 +1,55 @@ +// Package sqlbuilder contains functionality building SQL from +// the AST. +package sqlbuilder + +import ( + "github.com/neilotoole/sq/libsq/ast" +) + +// FragmentBuilder renders driver-specific SQL fragments. +type FragmentBuilder interface { + // FromTable renders a FROM table fragment. + FromTable(tblSel *ast.TblSelector) (string, error) + + // SelectCols renders a column names/expression fragment. + SelectCols(cols []ast.ColExpr) (string, error) + + // SelectAll renders a SELECT * fragment. + SelectAll(tblSel *ast.TblSelector) (string, error) + + // Range renders a row range fragment. + Range(rr *ast.RowRange) (string, error) + + // Join renders a join fragment. + Join(fnJoin *ast.Join) (string, error) + + // Function renders a function fragment. + Function(fn *ast.Func) (string, error) + + // Where renders a WHERE fragment. + Where(where *ast.Where) (string, error) + + // Expr renders an expression fragment. + Expr(expr *ast.Expr) (string, error) + + // Operator renders an operator fragment. + Operator(op *ast.Operator) (string, error) +} + +// QueryBuilder provides an abstraction for building a SQL query. +type QueryBuilder interface { + // SetSelect sets the columns to select. + SetSelect(cols string) + + // SetFrom sets the FROM clause. + SetFrom(from string) + + // SetWhere sets the WHERE clause. + SetWhere(where string) + + // SetRange sets the range clause. + SetRange(rng string) + + // SQL renders the SQL query. + SQL() (string, error) +} diff --git a/libsq/sqlmodel/internal_test.go b/libsq/sqlmodel/internal_test.go new file mode 100644 index 00000000..54c239b9 --- /dev/null +++ b/libsq/sqlmodel/internal_test.go @@ -0,0 +1,39 @@ +package sqlmodel + +import ( + "testing" + + "github.com/stretchr/testify/require" +) + +func TestTrimTrailingDelims(t *testing.T) { + delims := []string{";", "go", "Go", "gO", "GO"} + + testCases := map[string]string{ + "": "", + "\t": "", + " ": "", + ";": "", + "GO": "", + "go;": "", + "select * from food": "select * from food", + "select * from food;": "select * from food", + "select * from food ;": "select * from food", + "select * from food ; ": "select * from food", + "select * from food;go": "select * from food", + "select * from food;GO": "select * from food", + "select * from food;Go": "select * from food", + "select * from food;gO": "select * from food", + "select * from food; go": "select * from food", + "select * from food ; go ;;;go ": "select * from food", + "select * from food2go": "select * from food2go", + "select * from food2go;go": "select * from food2go", + "select * from food2go go": "select * from food2go", + "select * from food2go go go go": "select * from food2go", + } + + for input, want := range testCases { + got := trimTrailingDelims(input, delims...) + require.Equal(t, want, got) + } +} diff --git a/libsq/sqlmodel/split.go b/libsq/sqlmodel/split.go new file mode 100644 index 00000000..8c40cbf7 --- /dev/null +++ b/libsq/sqlmodel/split.go @@ -0,0 +1,212 @@ +package sqlmodel + +import ( + "bufio" + "bytes" + "io" + "io/ioutil" + "strings" + "unicode" + "unicode/utf8" + + "github.com/neilotoole/sq/libsq/errz" +) + +// StmtType is the type of SQL statement such as "select". +type StmtType string + +const ( + // StmtSelect is executed using sql.DB.Query. + StmtSelect = "select" + + // StmtOther is executed using sql.DB.Exec. + StmtOther = "other" +) + +// SplitSQL splits SQL text into multiple statements, +// demarcated by delim (typically a semicolon) or additional +// delim values such as "GO" or "GO;" +// For example, this is useful for splitting up a .sql file +// containing multiple statements. +// Empty lines and comment lines are not returned, nor are the +// separator elements themselves. +// +// This is a very rudimentary implementation. +// It currently only works if the delimiters are at the +// end of the line. Also, its ability to detect the correct +// statement type is limited. +func SplitSQL(input io.Reader, delim string, moreDelims ...string) (stmts []string, types []StmtType, err error) { + // NOTE: There are parser libraries such as xwb1989/sqlparser + // but from a quick look, it seems that they cannot parse + // all SQL dialects. Also, the input->parse->output process + // munges the input SQL when the tree is rendered back into + // SQL, and we want to pass the SQL statements through as + // unmolested as possible. It certainly is worth doing more + // research on what parsers are available and then + // hopefully we can ditch this brittle code. + + allDelims := append([]string{delim}, moreDelims...) + + data, err := ioutil.ReadAll(input) + if err != nil { + return nil, types, errz.Err(err) + } + + scanner := bufio.NewScanner(bytes.NewReader(data)) + sb := strings.Builder{} + + // First pass, ditch comments and empty lines + for scanner.Scan() { + err = scanner.Err() + if err != nil { + return nil, types, errz.Err(err) + } + + line := scanner.Text() + trimLine := strings.TrimSpace(line) + + switch { + case trimLine == "": + // Ignore empty lines? + continue + case strings.HasPrefix(trimLine, "--"): + // Ditch standalone comment lines + continue + } + + sb.WriteString(line) + sb.WriteRune('\n') + } + + firstPassResult := sb.String() + + // Second pass, split her up by delim at end of line + scanner = bufio.NewScanner(strings.NewReader(firstPassResult)) + buf := &bytes.Buffer{} + + for scanner.Scan() { + err = scanner.Err() + if err != nil { + return nil, types, errz.Err(err) + } + + line := scanner.Text() + // Trim any trailing whitespace + lineTrimRightSpace := strings.TrimRightFunc(line, unicode.IsSpace) + + // Trim any trailing delims + lineDelimTrimmed := trimTrailingDelims(lineTrimRightSpace, allDelims...) + if lineDelimTrimmed == lineTrimRightSpace { + // If this line doesn't have a trailing delim, we + // write the line into buf (along with its newline) + buf.WriteString(line) + buf.WriteRune('\n') + continue + } + + // Else we did find delims + + // else we've got a separator + // lineNoSep := strings.TrimSuffix(lineTrimRight, delim) + buf.WriteString(lineDelimTrimmed) + + // The statement is everything in buf + stmt := buf.String() + if strings.TrimSpace(stmt) != "" { + stmts = append(stmts, stmt) + } + + buf.Reset() + } + + // Catch the last line, which may not have a delim suffix + if buf.Len() > 0 { + stmts = append(stmts, buf.String()) + } + + for _, stmt := range stmts { + if strings.HasPrefix(strings.ToLower(strings.TrimSpace(stmt)), "select") { + types = append(types, StmtSelect) + } else { + types = append(types, StmtOther) + } + } + + return stmts, types, nil +} + +// trimTrailingDelims iteratively trims trailing whitespace +// and delims from line. If delim starts with a letter, care +// is taken that the delim is only stripped on a word boundary. +// For example, using delim "go": +// +// "select * from food go" --> "select * from food" +// "select * from food2go" --> "select * from food2go" +// "select * from food2go go" --> "select * from food2go" +// +// This implementation is mighty inefficient, don't use on +// the hot path. +func trimTrailingDelims(line string, delims ...string) string { + working := line + + for { + for _, delim := range delims { + if delim == "" { + // shouldn't happen + continue + } + working = trimDelimSuffix(working, delim) + } + + if working == "" || working == line { + break + } + + line = working + } + + return working +} + +func trimDelimSuffix(line, delim string) (stripped string) { + if line == "" || line == delim { + return "" + } + + // Trim any trailing whitespace + lineTrimRight := strings.TrimRightFunc(line, unicode.IsSpace) + if lineTrimRight == "" { + return "" + } + + if lineTrimRight == delim { + return "" + } + + // lineTrimRight contains at least some text + + // Take the case where delim is "go" and line is "select * from tblgo". + // We don't want to strip "go", so we verify that the previous + // rune isn't alphanumeric + r, _ := utf8.DecodeRuneInString(delim) + if !unicode.IsLetter(r) { + // If delim doesn't with a letter, just do the trim. + // We don't check for delim starting with a number. + stripped = strings.TrimSuffix(lineTrimRight, delim) + return stripped + } + + stripped = strings.TrimSuffix(lineTrimRight, delim) + if stripped == "" { + return "" + } + + // stripped is non-empty + r, _ = utf8.DecodeLastRuneInString(stripped) + if unicode.IsLetter(r) || unicode.IsNumber(r) { + // We can't allow this + return lineTrimRight + } + + return stripped +} diff --git a/libsq/sqlmodel/split_test.go b/libsq/sqlmodel/split_test.go new file mode 100644 index 00000000..9153c176 --- /dev/null +++ b/libsq/sqlmodel/split_test.go @@ -0,0 +1,222 @@ +package sqlmodel_test + +import ( + "strings" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/testh/proj" +) + +func TestSplitInput(t *testing.T) { + const sel, other = sqlmodel.StmtSelect, sqlmodel.StmtOther + + // convenience func to return a slice of n sqlmodel.StmtType. + nTypes := func(n int, typ sqlmodel.StmtType) []sqlmodel.StmtType { + types := make([]sqlmodel.StmtType, n) + for i := range types { + types[i] = typ + } + return types + } + + // testCases key is a group of tests, e.g. "postgres" or "sqlserver" + testCases := map[string][]struct { + name string + delim string + moreDelims []string + input string + wantCount int + wantContains []string + wantTypes []sqlmodel.StmtType + }{ + "simple": { + { + name: "select_1", + delim: ";", + input: "select * from my_table; ", + wantCount: 1, + wantContains: []string{"select * from my_table"}, + wantTypes: []sqlmodel.StmtType{sel}, + }, + { + name: "select_1_no_delim", + delim: ";", + input: "select * from my_table", + wantCount: 1, + wantContains: []string{"select * from my_table"}, + wantTypes: []sqlmodel.StmtType{sel}, + }, + { + name: "select_1_many_delim", + delim: ";", + input: "select * from my_table;\n;;", + wantCount: 1, + wantContains: []string{"select * from my_table"}, + wantTypes: []sqlmodel.StmtType{sel}, + }, + { + name: "select_2", + delim: ";", + input: "select * from my_table;\ndrop table my_table;", + wantCount: 2, + wantContains: []string{"select * from my_table", "drop table my_table"}, + wantTypes: []sqlmodel.StmtType{sel, other}, + }, + { + name: "select_2_no_trailing_delim", + delim: ";", + input: "select * from my_table;\ndrop table my_table", + wantCount: 2, + wantContains: []string{"select * from my_table", "drop table my_table"}, + wantTypes: []sqlmodel.StmtType{sel, other}, + }, + }, + "sqlite3": { + { + name: "sqlite3_type_test.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/sqlite3_type_test.sql")), + wantCount: 4, + wantTypes: nTypes(4, other), + }, + { + name: "sqlite3_address.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/sqlite3_address.sql")), + wantCount: 4, + wantTypes: nTypes(4, other), + }, + { + name: "sqlite3_person.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/sqlite3_person.sql")), + wantCount: 10, + wantTypes: nTypes(10, other), + }, + }, + "postgres": { + { + name: "sqtype_public_type_test.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/postgres_public_type_test.sql")), + wantCount: 5, + wantTypes: nTypes(5, other), + }, + { + name: "sqtest_public_address.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/postgres_public_address.sql")), + wantCount: 5, + wantTypes: nTypes(5, other), + }, + { + name: "sqtest_public_person.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/postgres_public_person.sql")), + wantCount: 11, + wantTypes: nTypes(11, other), + }, + }, + "sqlserver": { + { + name: "select_1_semi_go", + delim: ";", + moreDelims: []string{"go"}, + input: "select * from my_table;\ngo", + wantCount: 1, + wantContains: []string{"select * from my_table"}, + wantTypes: []sqlmodel.StmtType{sel}, + }, + { + name: "select_2", + delim: ";", + moreDelims: []string{"go"}, + input: "select * from my_table;\ndrop table my_table;", + wantCount: 2, + wantContains: []string{"select * from my_table", "drop table my_table"}, + wantTypes: []sqlmodel.StmtType{sel, other}, + }, + { + name: "sqtype_dbo_type_test.sql", + delim: ";", + moreDelims: []string{"go"}, + input: string(proj.ReadFile("libsq/sqlmodel/testdata/sqlserver_dbo_type_test.sql")), + wantCount: 5, + wantTypes: nTypes(5, other), + }, + { + name: "sqtest_dbo_address.sql", + delim: ";", + moreDelims: []string{"go"}, + input: string(proj.ReadFile("libsq/sqlmodel/testdata/sqlserver_dbo_address.sql")), + wantCount: 4, + wantTypes: nTypes(5, other), + }, + { + name: "sqtest_dbo_person.sql", + delim: ";", + moreDelims: []string{"go"}, + input: string(proj.ReadFile("libsq/sqlmodel/testdata/sqlserver_dbo_person.sql")), + wantCount: 10, + wantTypes: nTypes(10, other), + }, + }, + "mysql": { + { + name: "mysql_type_test.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/mysql_type_test.sql")), + wantCount: 5, + wantTypes: nTypes(5, other), + }, + { + name: "mysql_address.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/mysql_address.sql")), + wantCount: 4, + wantTypes: nTypes(5, other), + }, + { + name: "mysql_person.sql", + delim: ";", + input: string(proj.ReadFile("libsq/sqlmodel/testdata/mysql_person.sql")), + wantCount: 9, + wantTypes: nTypes(9, other), + }, + }, + } + + for groupName, testGroup := range testCases { + testGroup := testGroup + t.Run(groupName, func(t *testing.T) { + for _, tc := range testGroup { + tc := tc + t.Run(tc.name, func(t *testing.T) { + stmts, stmtTypes, err := sqlmodel.SplitSQL(strings.NewReader(tc.input), tc.delim, tc.moreDelims...) + require.NoError(t, err) + require.Equal(t, tc.wantCount, len(stmts)) + require.Equal(t, len(stmts), len(stmtTypes)) + + for i, stmtType := range stmtTypes { + require.Equal(t, tc.wantTypes[i], stmtType) + } + + for i, wantContains := range tc.wantContains { + require.Contains(t, stmts[i], wantContains) + } + + // Sanity check to verify that we've stripped trailing delims + allDelims := append([]string{tc.delim}, tc.moreDelims...) + for _, sep := range allDelims { + for _, stmt := range stmts { + require.False(t, strings.HasSuffix(stmt, sep)) + } + } + }) + } + }) + } +} diff --git a/libsq/sqlmodel/sqlmodel.go b/libsq/sqlmodel/sqlmodel.go new file mode 100644 index 00000000..98c260af --- /dev/null +++ b/libsq/sqlmodel/sqlmodel.go @@ -0,0 +1,126 @@ +// Package sqlmodel provides functionality for modeling SQL constructs. +package sqlmodel + +import ( + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// TableDef models a database table definition. +type TableDef struct { + // Name is the table name. + Name string `json:"name"` + + // PKColName is the name of the primary key column, or empty. + // + // Deprecated: this construct does not allow for composite PK. + PKColName string `json:"primary_key,omitempty"` + + // AutoIncrement, if true, indicates that a PK column + // should autoincrement. + // + // Deprecated: this construct does not allow for composite PK. + AutoIncrement bool `json:"auto_increment"` + + // Cols is the table's column definitions. + Cols []*ColDef `json:"cols"` +} + +// NewTableDef is a convenience constructor for creating +// a simple table definition. +func NewTableDef(tblName string, colNames []string, colKinds []sqlz.Kind) *TableDef { + tblDef := &TableDef{Name: tblName} + cols := make([]*ColDef, len(colNames)) + + for i := range colNames { + cols[i] = &ColDef{Table: tblDef, Name: colNames[i], Kind: colKinds[i]} + } + + tblDef.Cols = cols + return tblDef +} + +// ColNames returns a new slice containing the names +// of t's columns. +func (t *TableDef) ColNames() []string { + names := make([]string, len(t.Cols)) + for i, col := range t.Cols { + names[i] = col.Name + } + return names +} + +// ColKinds returns a new slice containing the kinds +// of t's columns. +func (t *TableDef) ColKinds() []sqlz.Kind { + kinds := make([]sqlz.Kind, len(t.Cols)) + for i, col := range t.Cols { + kinds[i] = col.Kind + } + return kinds +} + +func (t *TableDef) String() string { + return stringz.SprintJSON(t) +} + +// ColsByName returns the ColDefs for each named column, or an error if any column +// is not matched. +func (t *TableDef) ColsByName(cols []string) ([]*ColDef, error) { + defs := make([]*ColDef, len(cols)) + + for i, name := range cols { + found := false + for _, def := range t.Cols { + if def.Name == name { + defs[i] = def + found = true + break + } + } + + if !found { + return nil, errz.Errorf("could not find column definition %q in table %q", name, t.Name) + } + } + return defs, nil +} + +// FindCol returns the named ColDef or nil if not found. +func (t *TableDef) FindCol(name string) (*ColDef, error) { + for _, col := range t.Cols { + if col.Name == name { + return col, nil + } + } + return nil, errz.Errorf("could not find column definition %q in table %q", name, t.Name) +} + +// ColDef models a table column definition. +type ColDef struct { + Name string `json:"name"` + Table *TableDef `json:"-"` + Kind sqlz.Kind `json:"kind"` + + NotNull bool `json:"not_null"` + HasDefault bool `json:"has_default"` + + // Size typically applies to text fields, e.g. VARCHAR(255). + Size int `json:"size"` + + Unique bool `json:"unique"` + ForeignKey *FKConstraint `json:"foreign_key,omitempty"` +} + +// FKConstraint models a foreign key constraint. +type FKConstraint struct { + // RefTable is the name of the referenced parent table. + RefTable string `json:"ref_table"` + // RefCol is the name of the referenced col in the parent table. + RefCol string `json:"ref_col"` + // OnDelete is one of CASCADE or SET_NULL, defaults to CASCADE. + OnDelete string `json:"on_delete"` + // OnUpdate is one of CASCADE or SET_NULL, defaults to CASCADE. + OnUpdate string `json:"on_update"` +} diff --git a/libsq/sqlmodel/testdata/mysql_address.sql b/libsq/sqlmodel/testdata/mysql_address.sql new file mode 100644 index 00000000..b944c4ed --- /dev/null +++ b/libsq/sqlmodel/testdata/mysql_address.sql @@ -0,0 +1,17 @@ +create table address +( + address_id int auto_increment, + street varchar(255) not null, + city varchar(255) not null, + state varchar(255) not null, + zip varchar(255) null, + country varchar(255) not null, + constraint address_address_id_uindex + unique (address_id) +); + +alter table address + add primary key (address_id); + +INSERT INTO sqtest.address (street, city, state, zip, country) VALUES ('1600 Penn', 'Washington', 'DC', '12345', 'US'); +INSERT INTO sqtest.address (street, city, state, zip, country) VALUES ('999 Coleridge St', 'Ulan Bator', 'UB', '888', 'MN'); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/mysql_person.sql b/libsq/sqlmodel/testdata/mysql_person.sql new file mode 100644 index 00000000..7670a080 --- /dev/null +++ b/libsq/sqlmodel/testdata/mysql_person.sql @@ -0,0 +1,24 @@ +create table person +( + uid int auto_increment, + username varchar(64) not null, + email varchar(128) not null, + address_id int null, + constraint person_uid_uindex + unique (uid), + constraint person_username_uindex + unique (username), + constraint person_address_address_id_fk + foreign key (address_id) references address (address_id) +); + +alter table person + add primary key (uid); + +INSERT INTO sqtest.person (username, email, address_id) VALUES ('neilotoole', 'neilotoole@apache.org', 1); +INSERT INTO sqtest.person (username, email, address_id) VALUES ('ksoze', 'kaiser@soze.org', 2); +INSERT INTO sqtest.person (username, email, address_id) VALUES ('kubla', 'kubla@khan.mn', null); +INSERT INTO sqtest.person (username, email, address_id) VALUES ('tesla', 'nikola@tesla.rs', 1); +INSERT INTO sqtest.person (username, email, address_id) VALUES ('augustus', 'augustus@caesar.org', 2); +INSERT INTO sqtest.person (username, email, address_id) VALUES ('julius', 'julius@caesar.org', null); +INSERT INTO sqtest.person (username, email, address_id) VALUES ('plato', 'plato@athens.gr', 1); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/mysql_type_test.sql b/libsq/sqlmodel/testdata/mysql_type_test.sql new file mode 100644 index 00000000..1ad5a67e --- /dev/null +++ b/libsq/sqlmodel/testdata/mysql_type_test.sql @@ -0,0 +1,64 @@ +use sqtype; + +create table type_test +( + col_id int auto_increment primary key, + col_int int not null, + col_int_n int null, + col_bool tinyint(1) not null, + col_bool_n tinyint(1) null, + col_decimal decimal not null, + col_decimal_n decimal null, + col_tiny tinyint not null, + col_tiny_n tinyint null, + col_short smallint not null, + col_short_n smallint null, + col_long mediumtext not null, + col_long_n mediumtext null, + col_float float not null, + col_float_n float null, + col_double double not null, + col_double_n double null, + col_timestamp timestamp default CURRENT_TIMESTAMP not null, + col_timestamp_n timestamp null, + col_longlong mediumtext not null, + col_longlong_n mediumtext null, + col_int24 int(24) not null, + col_int24_n int(24) null, + col_date date not null, + col_date_n date null, + col_time time not null, + col_time_n time null, + col_datetime datetime not null, + col_datetime_n datetime null, + col_year year not null, + col_year_n year null, + col_varchar varchar(255) not null, + col_varchar_n varchar(255) null, + col_json json not null, + col_json_n json null, + col_enum enum ('a', 'b', 'c') not null, + col_enum_n enum ('a', 'b', 'c') null, + col_binary binary(8) not null, + col_binary_n binary(8) null, + col_varbinary varbinary(64) not null, + col_varbinary_n varbinary(64) null, + col_blob blob not null, + col_blob_n blob null, + col_tinyblob tinyblob not null, + col_tinyblob_n tinyblob null, + col_mediumblob mediumblob not null, + col_mediumblob_n mediumblob null, + col_longblob longblob not null, + col_longblob_n longblob null, + col_text text not null, + col_text_n text null, + col_longtext longtext not null, + col_longtext_n longtext null, + constraint type_test_col_id_uindex unique (col_id) +); + +alter table type_test add primary key (col_id); + +INSERT INTO type_test (col_int, col_int_n, col_bool, col_bool_n, col_decimal, col_decimal_n, col_tiny, col_tiny_n, col_short, col_short_n, col_long, col_long_n, col_float, col_float_n, col_double, col_double_n, col_timestamp, col_timestamp_n, col_longlong, col_longlong_n, col_int24, col_int24_n, col_date, col_date_n, col_time, col_time_n, col_datetime, col_datetime_n, col_year, col_year_n, col_varchar, col_varchar_n, col_json, col_json_n, col_enum, col_enum_n, col_binary, col_binary_n, col_varbinary, col_varbinary_n, col_blob, col_blob_n, col_tinyblob, col_tinyblob_n, col_mediumblob, col_mediumblob_n, col_longblob, col_longblob_n, col_text, col_text_n, col_longtext, col_longtext_n) VALUES (7, 7, 1, 1, 7, 7, 7, 7, 7, 7, '7', '7', 7.7, 7.7, 7.7, 7.7, '2016-07-31 13:14:45', '2016-07-31 13:14:51', '77', '77', 77, 77, '2016-07-31', '2016-07-31', '13:14:15', '13:14:15', '2016-07-31 13:15:55', '2016-07-31 13:16:00', 2016, 2016, 'hello world', 'hello world', '{"lastName": "Smith", "firstName": "John"}', '{"lastName": "Smith", "firstName": "John"}', 'a', 'a', 0x3132330000000000, 0x3132330000000000, 0x313233, 0x313233, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 0x313233, 0x313233, 0x313233, 0x313233, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 'hello world', 'hello world', 'hello world', 'hello world'); +INSERT INTO type_test (col_int, col_int_n, col_bool, col_bool_n, col_decimal, col_decimal_n, col_tiny, col_tiny_n, col_short, col_short_n, col_long, col_long_n, col_float, col_float_n, col_double, col_double_n, col_timestamp, col_timestamp_n, col_longlong, col_longlong_n, col_int24, col_int24_n, col_date, col_date_n, col_time, col_time_n, col_datetime, col_datetime_n, col_year, col_year_n, col_varchar, col_varchar_n, col_json, col_json_n, col_enum, col_enum_n, col_binary, col_binary_n, col_varbinary, col_varbinary_n, col_blob, col_blob_n, col_tinyblob, col_tinyblob_n, col_mediumblob, col_mediumblob_n, col_longblob, col_longblob_n, col_text, col_text_n, col_longtext, col_longtext_n) VALUES (7, null, 1, null, 7, null, 7, null, 7, null, '7', null, 7.7, null, 7.7, null, '2016-07-31 13:14:45', null, '77', null, 77, null, '2016-07-31', null, '13:14:15', null, '2016-07-31 13:15:55', null, 2016, null, 'hello world', null, '{"lastName": "Smith", "firstName": "John"}', null, 'a', null, 0x3132330000000000, null, 0x313233, null, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, null, 0x313233, null, 0x313233, null, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, null, 'hello world', null, 'hello world', null); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/postgres_public_address.sql b/libsq/sqlmodel/testdata/postgres_public_address.sql new file mode 100644 index 00000000..5ca7dd15 --- /dev/null +++ b/libsq/sqlmodel/testdata/postgres_public_address.sql @@ -0,0 +1,20 @@ +create table address +( + address_id integer not null + constraint address_pk + primary key, + street varchar(255) not null, + city varchar(255) not null, + state varchar(255) not null, + zip varchar(255), + country varchar(255) not null +); + +alter table address + owner to sq; + +create unique index address_address_id_uindex + on address (address_id); + +INSERT INTO public.address (address_id, street, city, state, zip, country) VALUES (1, '1600 Penn', 'Washington', 'DC', '12345', 'US'); +INSERT INTO public.address (address_id, street, city, state, zip, country) VALUES (2, '999 Coleridge St', 'Ulan Bator', 'UB', '888', 'MN'); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/postgres_public_person.sql b/libsq/sqlmodel/testdata/postgres_public_person.sql new file mode 100644 index 00000000..b71eb9cd --- /dev/null +++ b/libsq/sqlmodel/testdata/postgres_public_person.sql @@ -0,0 +1,28 @@ +create table person +( + uid serial not null + constraint person_pk + primary key, + username varchar(255) not null, + email varchar(255) not null, + address_id integer + constraint person_address_address_id_fk + references address +); + +alter table person + owner to sq; + +create unique index person_uid_uindex + on person (uid); + +create unique index person_username_uindex + on person (username); + +INSERT INTO public.person (uid, username, email, address_id) VALUES (3, 'kubla', 'kubla@khan.mn', null); +INSERT INTO public.person (uid, username, email, address_id) VALUES (6, 'julius', 'julius@caesar.org', null); +INSERT INTO public.person (uid, username, email, address_id) VALUES (7, 'plato', 'plato@athens.gr', 1); +INSERT INTO public.person (uid, username, email, address_id) VALUES (2, 'ksoze', 'kaiser@soze.org', 2); +INSERT INTO public.person (uid, username, email, address_id) VALUES (4, 'tesla', 'nikola@tesla.rs', 1); +INSERT INTO public.person (uid, username, email, address_id) VALUES (1, 'neilotoole', 'neilotoole@apache.org', 1); +INSERT INTO public.person (uid, username, email, address_id) VALUES (5, 'augustus', 'augustus@caesar.org', 2); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/postgres_public_type_test.sql b/libsq/sqlmodel/testdata/postgres_public_type_test.sql new file mode 100644 index 00000000..1d12f280 --- /dev/null +++ b/libsq/sqlmodel/testdata/postgres_public_type_test.sql @@ -0,0 +1,31 @@ +create table type_test +( + col_id serial not null + constraint type_test_pk + primary key, + col_int integer not null, + col_int_n integer, + col_varchar varchar(255) not null, + col_varchar_n varchar(255), + col_blob bytea not null, + col_blob_n bytea, + col_date date default '2016-07-31'::date not null, + col_date_n date, + col_timestamp timestamp default '2016-07-31 00:00:00'::timestamp without time zone not null, + col_timestamp_n timestamp, + col_timestamptz timestamp with time zone default '2016-07-31 00:00:00+00'::timestamp with time zone not null, + col_timestamptz_n timestamp with time zone, + col_time time default '12:00:00'::time without time zone not null, + col_time_n time, + col_timetz time with time zone default '12:00:00+00'::time with time zone not null, + col_timetz_n time with time zone +); + +alter table type_test + owner to sq; + +create unique index type_test_col_id_uindex + on type_test (col_id); + +INSERT INTO public.type_test (col_id, col_int, col_int_n, col_varchar, col_varchar_n, col_blob, col_blob_n, col_date, col_date_n, col_timestamp, col_timestamp_n, col_timestamptz, col_timestamptz_n, col_time, col_time_n, col_timetz, col_timetz_n) VALUES (2, 7, null, 'hello world', null, E'\\x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B', null, '2016-07-31', null, '2016-07-31 00:00:00.000000', null, '2016-07-31 00:00:00.000000', null, '12:00:00', null, '12:00:00.000000', null); +INSERT INTO public.type_test (col_id, col_int, col_int_n, col_varchar, col_varchar_n, col_blob, col_blob_n, col_date, col_date_n, col_timestamp, col_timestamp_n, col_timestamptz, col_timestamptz_n, col_time, col_time_n, col_timetz, col_timetz_n) VALUES (1, 7, 7, 'hello world', 'hello world', E'\\x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B', E'\\x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B', '2016-07-31', '2016-07-31', '2016-07-31 00:00:00.000000', '2016-07-31 00:00:00.000000', '2016-07-31 00:00:00.000000', '2016-07-31 00:00:00.000000', '12:00:00', '12:00:00', '12:00:00.000000', '12:00:00.000000'); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/sqlite3_address.sql b/libsq/sqlmodel/testdata/sqlite3_address.sql new file mode 100644 index 00000000..8fbb1c09 --- /dev/null +++ b/libsq/sqlmodel/testdata/sqlite3_address.sql @@ -0,0 +1,14 @@ +create table address +( + address_id INTEGER not null + primary key, + street TEXT not null, + city TEXT not null, + state TEXT, + zip TEXT, + country TEXT not null +); + +INSERT INTO address (address_id, street, city, state, zip, country) VALUES (1, '1600 Penn', 'Washington', 'DC', '12345', 'US'); +INSERT INTO address (address_id, street, city, state, zip, country) VALUES (2, '999 Coleridge', 'Ulan Bator', 'UB', '888', 'MN'); +INSERT INTO address (address_id, street, city, state, zip, country) VALUES (8, 'street', 'thecity', 'CO', '80302', 'USA'); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/sqlite3_person.sql b/libsq/sqlmodel/testdata/sqlite3_person.sql new file mode 100644 index 00000000..099e64a4 --- /dev/null +++ b/libsq/sqlmodel/testdata/sqlite3_person.sql @@ -0,0 +1,22 @@ +create table person +( + uid INTEGER PRIMARY KEY AUTOINCREMENT, + username TEXT not null, + email TEXT not null, + address_id int + references address +); + +create unique index person_uid_uindex + on person (uid); + +create unique index person_username_uindex + on person (username); + +INSERT INTO person (uid, username, email, address_id) VALUES (1, 'neilotoole', 'neilotoole@apache.org', null); +INSERT INTO person (uid, username, email, address_id) VALUES (2, 'ksoze', 'kaiser@soze.net', null); +INSERT INTO person (uid, username, email, address_id) VALUES (3, 'kubla', 'kubla@khan.mn', null); +INSERT INTO person (uid, username, email, address_id) VALUES (4, 'tesla', 'tesla@tesla.rs', null); +INSERT INTO person (uid, username, email, address_id) VALUES (5, 'augustus', 'augustus@caesar.org', null); +INSERT INTO person (uid, username, email, address_id) VALUES (6, 'julius', 'julius@caesar.org', null); +INSERT INTO person (uid, username, email, address_id) VALUES (7, 'plato', 'plato@athens.gr', null); diff --git a/libsq/sqlmodel/testdata/sqlite3_type_test.sql b/libsq/sqlmodel/testdata/sqlite3_type_test.sql new file mode 100644 index 00000000..657403d5 --- /dev/null +++ b/libsq/sqlmodel/testdata/sqlite3_type_test.sql @@ -0,0 +1,19 @@ +create table type_test +( + col_id INT not null + primary key, + col_int INT not null, + col_int_n INT, + col_double REAL not null, + col_double_n REAL, + col_text TEXT not null, + col_text_n TEXT, + col_blob BLOB not null, + col_blob_n BLOB +); + +create unique index type_test_col_id_uindex + on type_test (col_id); + +INSERT INTO type_test (col_id, col_int, col_int_n, col_double, col_double_n, col_text, col_text_n, col_blob, col_blob_n) VALUES (1, 7, 7, 7.7, 7.7, 'hello world', 'hello world', '474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B', '474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B'); +INSERT INTO type_test (col_id, col_int, col_int_n, col_double, col_double_n, col_text, col_text_n, col_blob, col_blob_n) VALUES (2, 7, null, 7.7, null, 'hello world', null, '474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B', null); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/sqlserver_dbo_address.sql b/libsq/sqlmodel/testdata/sqlserver_dbo_address.sql new file mode 100644 index 00000000..aa0c55f5 --- /dev/null +++ b/libsq/sqlmodel/testdata/sqlserver_dbo_address.sql @@ -0,0 +1,19 @@ +create table address +( + address_id int identity + constraint address_pk + primary key, + street varchar(255), + city varchar(255), + state varchar(255), + zip varchar(255), + country varchar(255) +) +go + +create unique index address_address_id_uindex + on address (address_id) +go + +INSERT INTO address (street, city, state, zip, country) VALUES ('1600 Penn', 'Washington', 'DC', '12345', 'US'); +INSERT INTO address (street, city, state, zip, country) VALUES ('999 Coleridge St', 'Ulan Bator', 'UB', '888', 'MN'); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/sqlserver_dbo_person.sql b/libsq/sqlmodel/testdata/sqlserver_dbo_person.sql new file mode 100644 index 00000000..270f9515 --- /dev/null +++ b/libsq/sqlmodel/testdata/sqlserver_dbo_person.sql @@ -0,0 +1,35 @@ +create table person +( + uid int identity + constraint person_pk + primary key, + username varchar(255) not null, + email varchar(255) not null, + address_id int + constraint person_address_address_id_fk + references address +) +go + +create unique index person_uid_uindex + on person (uid) +go + +create unique index person_username_uindex + on person (username) +go + +INSERT INTO person (username, email, address_id) +VALUES ('neilotoole', 'neilotoole@apache.org', 1); +INSERT INTO person (username, email, address_id) +VALUES ('ksoze', 'kaiser@soze.org', 2); +INSERT INTO person (username, email, address_id) +VALUES ('kubla', 'kublah@khan.mn', null); +INSERT INTO person (username, email, address_id) +VALUES ('tesla', 'nikola@tesla.rs', 1); +INSERT INTO person (username, email, address_id) +VALUES ('augustus', 'augustus@caesar.org', 2); +INSERT INTO person (username, email, address_id) +VALUES ('julius', 'julius@caesar.org', null); +INSERT INTO person (username, email, address_id) +VALUES ('plato', 'plato@athens.gr', 1); \ No newline at end of file diff --git a/libsq/sqlmodel/testdata/sqlserver_dbo_type_test.sql b/libsq/sqlmodel/testdata/sqlserver_dbo_type_test.sql new file mode 100644 index 00000000..3dfb3f0c --- /dev/null +++ b/libsq/sqlmodel/testdata/sqlserver_dbo_type_test.sql @@ -0,0 +1,56 @@ +create table type_test +( + col_id int identity + constraint type_test_pk + primary key nonclustered, + col_int int not null, + col_int_n int, + col_bool bit not null, + col_bool_n bit, + col_decimal decimal(18) not null, + col_decimal_n decimal(18), + col_float float not null, + col_float_n float, + col_date date not null, + col_date_n date, + col_datetime datetime not null, + col_datetime_n datetime, + col_datetime2 datetime2 not null, + col_datetime2_n datetime2, + col_smalldatetime smalldatetime not null, + col_smalldatetime_n smalldatetime, + col_time time not null, + col_time_n time, + col_bigint bigint not null, + col_bigint_n bigint, + col_smallint smallint not null, + col_smallint_n smallint, + col_tinyint tinyint not null, + col_tinyint_n tinyint, + col_money money not null, + col_money_n money, + col_smallmoney smallmoney not null, + col_smallmoney_n smallmoney, + col_char char(8) not null, + col_char_n char(8), + col_varchar varchar(8) not null, + col_varchar_n varchar(8), + col_nchar nchar(8) not null, + col_nchar_n nchar(8), + col_nvarchar nvarchar(8) not null, + col_nvarchar_n nvarchar(8), + col_binary binary(8) not null, + col_binary_n binary(8), + col_varbinary varbinary(8) not null, + col_varbinary_n varbinary(8) +) +go + + +create unique index type_test_col_id_uindex + on type_test (col_id) +go + +INSERT INTO sqtype.dbo.type_test (col_int, col_int_n, col_bool, col_bool_n, col_decimal, col_decimal_n, col_float, col_float_n, col_date, col_date_n, col_datetime, col_datetime_n, col_datetime2, col_datetime2_n, col_smalldatetime, col_smalldatetime_n, col_time, col_time_n, col_bigint, col_bigint_n, col_smallint, col_smallint_n, col_tinyint, col_tinyint_n, col_money, col_money_n, col_smallmoney, col_smallmoney_n, col_char, col_char_n, col_varchar, col_varchar_n, col_nchar, col_nchar_n, col_nvarchar, col_nvarchar_n, col_binary, col_binary_n, col_varbinary, col_varbinary_n) VALUES (7, 7, 1, 1, 7, 7, 7.7, 7.7, '2016-07-31', '2016-07-31', '2016-07-31 00:00:00.000', '2016-07-31 00:00:00.000', '2016-07-31 00:00:00.0000000', '2016-07-31 00:00:00.0000000', '2016-07-31 00:00:00', '2016-07-31 00:00:00', '12:00:00', '12:00:00', 77, 77, 77, 77, 77, 77, 77.7700, 77.7700, 77.7700, 77.7700, 'a ', 'a ', 'a', 'a', 'a ', 'a ', 'a', 'a', 0x3100000000000000, 0x3100000000000000, 0x31, 0x31); +INSERT INTO sqtype.dbo.type_test (col_int, col_int_n, col_bool, col_bool_n, col_decimal, col_decimal_n, col_float, col_float_n, col_date, col_date_n, col_datetime, col_datetime_n, col_datetime2, col_datetime2_n, col_smalldatetime, col_smalldatetime_n, col_time, col_time_n, col_bigint, col_bigint_n, col_smallint, col_smallint_n, col_tinyint, col_tinyint_n, col_money, col_money_n, col_smallmoney, col_smallmoney_n, col_char, col_char_n, col_varchar, col_varchar_n, col_nchar, col_nchar_n, col_nvarchar, col_nvarchar_n, col_binary, col_binary_n, col_varbinary, col_varbinary_n) VALUES (7, null, 1, null, 7, null, 7.7, null, '2016-07-31', null, '2016-07-31 00:00:00.000', null, '2016-07-31 00:00:00.0000000', null, '2016-07-31 00:00:00', null, '12:00:00', null, 77, null, 77, null, 77, null, 77.7700, null, 77.7700, null, 'a ', null, 'a', null, 'a ', null, 'a', null, 0x3100000000000000, null, 0x31, null); +INSERT INTO sqtype.dbo.type_test (col_int, col_int_n, col_bool, col_bool_n, col_decimal, col_decimal_n, col_float, col_float_n, col_date, col_date_n, col_datetime, col_datetime_n, col_datetime2, col_datetime2_n, col_smalldatetime, col_smalldatetime_n, col_time, col_time_n, col_bigint, col_bigint_n, col_smallint, col_smallint_n, col_tinyint, col_tinyint_n, col_money, col_money_n, col_smallmoney, col_smallmoney_n, col_char, col_char_n, col_varchar, col_varchar_n, col_nchar, col_nchar_n, col_nvarchar, col_nvarchar_n, col_binary, col_binary_n, col_varbinary, col_varbinary_n) VALUES (0, 0, 0, 0, 0, 0, 0, 0, '2016-07-31', '2016-07-31', '2016-07-31 00:00:00.000', '2016-07-31 00:00:00.000', '2016-07-31 00:00:00.0000000', '2016-07-31 00:00:00.0000000', '2016-07-31 00:00:00', '2016-07-31 00:00:00', '00:00:00', '00:00:00', 0, 0, 0, 0, 0, 0, 0.0000, 0.0000, 0.0000, 0.0000, ' ', ' ', '', '', ' ', ' ', '', '', 0x0000000000000000, 0x0000000000000000, 0x00, 0x00); \ No newline at end of file diff --git a/libsq/sqlz/kind.go b/libsq/sqlz/kind.go new file mode 100644 index 00000000..b201206f --- /dev/null +++ b/libsq/sqlz/kind.go @@ -0,0 +1,141 @@ +package sqlz + +import ( + "strings" + + "github.com/neilotoole/sq/libsq/errz" +) + +const ( + // KindUnknown indicates an unknown kind. + KindUnknown Kind = iota + + // KindNull indicates a NULL kind. + KindNull + + // KindText indicates a text kind. + KindText + + // KindInt indicates an integer kind. + KindInt + + // KindFloat indicates a float kind. + KindFloat + + // KindDecimal indicates a decimal kind. + KindDecimal + + // KindBool indicates a boolean kind. + KindBool + + // KindBytes indicates a bytes or blob kind. + KindBytes + + // KindDatetime indicates a date-time kind. + KindDatetime + + // KindDate indicates a date-only kind. + KindDate + + // KindTime indicates a time-only kind. + KindTime +) + +// Kind models a generic data kind, which ultimately maps +// to some more specific implementation data type, +// such as a SQL VARCHAR or JSON boolean. +type Kind int + +func (d Kind) String() string { + t, err := d.MarshalText() + if err != nil { + return "" + } + + return string(t) +} + +// MarshalJSON implements json.Marshaler. +func (d Kind) MarshalJSON() ([]byte, error) { + t, err := d.MarshalText() + if err != nil { + return nil, err + } + + return []byte(`"` + string(t) + `"`), nil +} + +// MarshalText implements encoding.TextMarshaler. +func (d Kind) MarshalText() ([]byte, error) { + var name string + switch d { + case KindUnknown: + name = "unknown" + case KindNull: + name = "null" + case KindText: + name = "text" + case KindInt: + name = "int" + case KindFloat: + name = "float" + case KindDecimal: + name = "decimal" + case KindBool: + name = "bool" + case KindDatetime: + name = "datetime" + case KindDate: + name = "date" + case KindTime: + name = "time" + case KindBytes: + name = "bytes" + default: + return nil, errz.Errorf("invalid data kind '%d'", d) + } + + return []byte(name), nil +} + +// UnmarshalText implements encoding.TextUnmarshaler. +func (d *Kind) UnmarshalText(text []byte) error { + kind, err := parse(string(text)) + if err != nil { + return err + } + + *d = kind + return nil +} + +// parse parses text and returns the appropriate kind, or +// an error. +func parse(text string) (Kind, error) { + switch strings.ToLower(text) { + default: + return KindUnknown, errz.Errorf("unrecognized kind name %q", text) + case "unknown": + return KindUnknown, nil + case "text": + return KindText, nil + case "int": + return KindInt, nil + case "float": + return KindFloat, nil + case "decimal": + return KindDecimal, nil + case "bool": + return KindBool, nil + case "datetime": + return KindDatetime, nil + case "date": + return KindDate, nil + case "time": + return KindTime, nil + case "bytes": + return KindBytes, nil + case "null": + return KindNull, nil + } +} diff --git a/libsq/sqlz/kind_test.go b/libsq/sqlz/kind_test.go new file mode 100644 index 00000000..3660dac1 --- /dev/null +++ b/libsq/sqlz/kind_test.go @@ -0,0 +1,59 @@ +package sqlz_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/sqlz" +) + +func TestKind(t *testing.T) { + testCases := map[sqlz.Kind]string{ + sqlz.KindUnknown: "unknown", + sqlz.KindNull: "null", + sqlz.KindText: "text", + sqlz.KindInt: "int", + sqlz.KindFloat: "float", + sqlz.KindDecimal: "decimal", + sqlz.KindBool: "bool", + sqlz.KindDatetime: "datetime", + sqlz.KindDate: "date", + sqlz.KindTime: "time", + sqlz.KindBytes: "bytes", + } + + for kind, testText := range testCases { + kind, testText := kind, testText + + t.Run(kind.String(), func(t *testing.T) { + gotBytes, err := kind.MarshalText() + require.NoError(t, err) + require.Equal(t, testText, string(gotBytes)) + + gotString := kind.String() + require.Equal(t, testText, gotString) + + gotJSON, err := kind.MarshalJSON() + require.NoError(t, err) + require.Equal(t, `"`+testText+`"`, string(gotJSON)) + + var dt2 sqlz.Kind + require.NoError(t, dt2.UnmarshalText([]byte(testText))) + require.True(t, kind == dt2) + }) + } + + d := sqlz.Kind(666) + bytes, err := d.MarshalText() + require.Error(t, err) + require.Nil(t, bytes) + + bytes, err = d.MarshalJSON() + require.Error(t, err) + require.Nil(t, bytes) + + d = sqlz.KindBytes // pick any valid type + require.Error(t, d.UnmarshalText([]byte("invalid_text"))) + require.Equal(t, sqlz.KindBytes, d, "d should not be mutated on UnmarshalText err") +} diff --git a/libsq/sqlz/nullbool.go b/libsq/sqlz/nullbool.go new file mode 100644 index 00000000..88031ebc --- /dev/null +++ b/libsq/sqlz/nullbool.go @@ -0,0 +1,37 @@ +package sqlz + +import ( + "database/sql" + "strings" +) + +// NullBool is similar to sql.NullBool, but accepts more boolean +// representations, e.g. "YES", "Y", "NO", "N", etc. These boolean +// values are returned by SQL Server and Postgres at times. +type NullBool struct { + sql.NullBool +} + +// Scan implements the Scanner interface. +func (n *NullBool) Scan(value interface{}) error { + if value == nil { + n.Bool, n.Valid = false, false + return nil + } + + if s, ok := value.(string); ok { + s = strings.ToLower(strings.TrimSpace(s)) + switch s { + case "yes", "y": + n.Bool, n.Valid = true, true + return nil + case "no", "n": + n.Bool, n.Valid = false, true + return nil + default: + // let sql.NullBool.Scan handle it + } + } + + return n.NullBool.Scan(value) +} diff --git a/libsq/sqlz/nullbool_test.go b/libsq/sqlz/nullbool_test.go new file mode 100644 index 00000000..3c96dab0 --- /dev/null +++ b/libsq/sqlz/nullbool_test.go @@ -0,0 +1,57 @@ +package sqlz_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/sqlz" +) + +func TestNullBool_Scan(t *testing.T) { + var tests = []struct { + input interface{} + expectValid bool + expectBool bool + }{ + {"yes", true, true}, + {"Yes", true, true}, + {"YES", true, true}, + {"Y", true, true}, + {" Yes ", true, true}, + + {"no", true, false}, + {"No", true, false}, + {"NO", true, false}, + {"N", true, false}, + {" No ", true, false}, + + // check that the pre-existing sql.NullBool stuff works + {"true", true, true}, + {true, true, true}, + {1, true, true}, + {"1", true, true}, + {"false", true, false}, + {false, true, false}, + {0, true, false}, + {"0", true, false}, + {"garbage", false, false}, + } + + for i, tt := range tests { + var nb sqlz.NullBool + + err := nb.Scan(tt.input) + if err != nil { + if tt.expectValid == false { + continue + } + t.Errorf("[%d] %q: did not expect error: %v", i, tt.input, err) + continue + } + + require.Nil(t, err, "[%d] %q: did not expect error: %v", i, tt.input, err) + require.Equal(t, tt.expectValid, nb.Valid, "[%d] %q: expected Valid to be %v but got %v", i, tt.input, tt.expectValid, nb.Valid) + require.Equal(t, tt.expectBool, nb.Bool, "[%d] %q: expected Bool to be %v but got %v", i, tt.input, tt.expectBool, nb.Bool) + } +} diff --git a/libsq/sqlz/record.go b/libsq/sqlz/record.go new file mode 100644 index 00000000..bd4b020d --- /dev/null +++ b/libsq/sqlz/record.go @@ -0,0 +1,220 @@ +package sqlz + +import ( + "database/sql" + "fmt" + "reflect" + "strconv" + "time" + + "github.com/neilotoole/sq/libsq/errz" +) + +// Record is a []interface{} row of field values returned from a query. +// +// In the codebase, we distinguish between a "Record" and +// a "ScanRow", although both are []interface{} and are closely related. +// +// An instance of ScanRow is passed to the sql rows.Scan method, and +// its elements may include implementations of the sql.Scanner interface +// such as sql.NullString, sql.NullInt64 or even driver-specific types. +// +// A Record is typically built from a ScanRow, unwrapping and +// munging elements such that the Record only contains standard types: +// +// nil, *int64, *float64, *bool, *string, *[]byte, *time.Time +// +// It is an error for a Record to contain elements of any other type. +type Record []interface{} + +// ValidRecord checks that each element of the record vals is +// of an acceptable type. On the first unacceptable element, +// the index of that element and an error are returned. On +// success (-1, nil) is returned. +// +// These acceptable types, per the stdlib sql pkg, are: +// nil, *int64, *float64, *bool, *string, *[]byte, *time.Time +func ValidRecord(recMeta RecordMeta, rec Record) (i int, err error) { + // FIXME: ValidRecord should check the values of rec to see if they match recMeta's kinds + + var val interface{} + for i, val = range rec { + switch val := val.(type) { + case nil, *int64, *float64, *bool, *string, *[]byte, *time.Time: + continue + default: + return i, errz.Errorf("field [%d] has unacceptable record value type %T", i, val) + } + } + + return -1, nil +} + +// FieldMeta is a bit of a strange entity, and in an ideal +// world, it wouldn't exist. It's here because: +// +// - The DB driver impls that sq utilizes (postgres, sqlite, etc) +// often have individual quirks (not reporting nullability etc) +// that necessitate modifying sql.ColumnType so that there's +// consistent behavior across the drivers. +// +// - We wanted to retain (and supplement) the method set of +// sql.ColumnType (basically, use the same "interface", even +// though sql.ColumnType is a struct, not interface) so that +// devs don't need to learn a whole new thing. +// +// - For that reason, stdlib sql.ColumnType needs to be +// supplemented with sqlz.Kind, and there needs to +// be a mechanism for modifying sql.ColumnType's fields. +// +// - But sql.ColumnType is sealed (its fields cannot be changed +// from outside its package). +// +// - Hence this construct where we have FieldMeta (which +// abstractly is an adapter around sql.ColumnType) and also +// a data holder struct (ColumnDataType), which permits the +// mutation of the column type fields. +// +// Likely there's a better design available than this one, +// but it suffices. +type FieldMeta struct { + data *ColumnTypeData +} + +// NewFieldMeta returns a new instance backed by the data arg. +func NewFieldMeta(data *ColumnTypeData) *FieldMeta { + return &FieldMeta{data: data} +} + +func (fm *FieldMeta) String() string { + nullMsg := "?" + if fm.data.HasNullable { + nullMsg = strconv.FormatBool(fm.data.Nullable) + } + + return fmt.Sprintf("{name:%s, kind:%s, dbtype:%s, scan:%s, nullable:%s}", + fm.data.Name, fm.data.Kind.String(), fm.data.DatabaseTypeName, fm.ScanType().String(), nullMsg) +} + +// Name is documented by sql.ColumnType.Name. +func (fm *FieldMeta) Name() string { + return fm.data.Name +} + +// Length is documented by sql.ColumnType.Length. +func (fm *FieldMeta) Length() (length int64, ok bool) { + return fm.data.Length, fm.data.HasLength +} + +// DecimalSize is documented by sql.ColumnType.DecimalSize. +func (fm *FieldMeta) DecimalSize() (precision, scale int64, ok bool) { + return fm.data.Precision, fm.data.Scale, fm.data.HasPrecisionScale +} + +// ScanType is documented by sql.ColumnType.ScanType. +func (fm *FieldMeta) ScanType() reflect.Type { + return fm.data.ScanType +} + +// Nullable is documented by sql.ColumnType.Nullable. +func (fm *FieldMeta) Nullable() (nullable, ok bool) { + return fm.data.Nullable, fm.data.HasNullable +} + +// DatabaseTypeName is documented by sql.ColumnType.DatabaseTypeName. +func (fm *FieldMeta) DatabaseTypeName() string { + return fm.data.DatabaseTypeName +} + +// Kind returns the data kind for the column. +func (fm *FieldMeta) Kind() Kind { + return fm.data.Kind +} + +// RecordMeta is a slice of *FieldMeta, encapsulating the metadata +// for a record. +type RecordMeta []*FieldMeta + +// Names returns the column names. +func (rm RecordMeta) Names() []string { + names := make([]string, len(rm)) + for i, col := range rm { + names[i] = col.Name() + } + + return names +} + +// NewScanRow returns a new []interface{} that can be scanned +// into by sql.Rows.Scan. +func (rm RecordMeta) NewScanRow() []interface{} { + dests := make([]interface{}, len(rm)) + + for i, col := range rm { + dests[i] = reflect.New(col.data.ScanType).Interface() + } + + return dests +} + +// Kinds returns the data kinds for the record. +func (rm RecordMeta) Kinds() []Kind { + kinds := make([]Kind, len(rm)) + for i, col := range rm { + kinds[i] = col.Kind() + } + + return kinds +} + +// ScanTypes returns the scan types for the record. +func (rm RecordMeta) ScanTypes() []reflect.Type { + scanTypes := make([]reflect.Type, len(rm)) + for i, col := range rm { + scanTypes[i] = col.ScanType() + } + + return scanTypes +} + +// ColumnTypeData contains the same data as sql.ColumnType +// as well SQ's derived data kind. This type exists with +// exported fields instead of methods (as on sql.ColumnType) +// due to the need to work with the fields for testing, and +// also because for some drivers it's useful to twiddle with +// the scan type. +// +// This is all a bit ugly. +type ColumnTypeData struct { + Name string + + HasNullable bool + HasLength bool + HasPrecisionScale bool + + Nullable bool + Length int64 + DatabaseTypeName string + Precision int64 + Scale int64 + ScanType reflect.Type + + Kind Kind +} + +// NewColumnTypeData returns a new instance with field values +// taken from col, supplemented with the kind param. +func NewColumnTypeData(col *sql.ColumnType, kind Kind) *ColumnTypeData { + ct := &ColumnTypeData{ + Name: col.Name(), + DatabaseTypeName: col.DatabaseTypeName(), + ScanType: col.ScanType(), + Kind: kind, + } + + ct.Nullable, ct.HasNullable = col.Nullable() + ct.Length, ct.HasLength = col.Length() + ct.Precision, ct.Scale, ct.HasPrecisionScale = col.DecimalSize() + + return ct +} diff --git a/libsq/sqlz/reflect.go b/libsq/sqlz/reflect.go new file mode 100644 index 00000000..75f64b9c --- /dev/null +++ b/libsq/sqlz/reflect.go @@ -0,0 +1,34 @@ +package sqlz + +import ( + "database/sql" + "reflect" + "time" +) + +// Cached results from reflect.TypeOf for commonly used types. +var ( + RTypeInt = reflect.TypeOf(0) + RTypeInt8 = reflect.TypeOf(int8(0)) + RTypeInt16 = reflect.TypeOf(int16(0)) + RTypeInt32 = reflect.TypeOf(int32(0)) + RTypeInt64 = reflect.TypeOf(int64(0)) + RTypeInt64P = reflect.TypeOf((*int64)(nil)) + RTypeNullInt64 = reflect.TypeOf(sql.NullInt64{}) + RTypeFloat32 = reflect.TypeOf(float32(0)) + RTypeFloat64 = reflect.TypeOf(float64(0)) + RTypeFloat64P = reflect.TypeOf((*float64)(nil)) + RTypeNullFloat64 = reflect.TypeOf(sql.NullFloat64{}) + RTypeBool = reflect.TypeOf(true) + RTypeBoolP = reflect.TypeOf((*bool)(nil)) + RTypeNullBool = reflect.TypeOf(sql.NullBool{}) + RTypeString = reflect.TypeOf("") + RTypeStringP = reflect.TypeOf((*string)(nil)) + RTypeNullString = reflect.TypeOf(sql.NullString{}) + RTypeTime = reflect.TypeOf(time.Time{}) + RTypeTimeP = reflect.TypeOf((*time.Time)(nil)) + RTypeNullTime = reflect.TypeOf(sql.NullTime{}) + RTypeBytes = reflect.TypeOf([]byte{}) + RTypeBytesP = reflect.TypeOf((*[]byte)(nil)) + RTypeNil = reflect.TypeOf(nil) +) diff --git a/libsq/sqlz/sqlz.go b/libsq/sqlz/sqlz.go new file mode 100644 index 00000000..1360ca2b --- /dev/null +++ b/libsq/sqlz/sqlz.go @@ -0,0 +1,60 @@ +// Package sqlz contains core types such as Kind and Record. +package sqlz + +import ( + "context" + "database/sql" + + "github.com/neilotoole/sq/libsq/errz" +) + +// Execer abstracts the ExecContext method +// from sql.DB and friends. +type Execer interface { + // ExecContext is documented by sql.DB.ExecContext. + ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) +} + +// Queryer abstracts the QueryContext and QueryRowContext +// methods from sql.DB and friends. +type Queryer interface { + // QueryContext is documented by sql.DB.QueryContext. + QueryContext(ctx context.Context, query string, args ...interface{}) (*sql.Rows, error) + + // QueryRowContext is documented by sql.DB.QueryRowContext. + QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row +} + +// Preparer abstracts the PrepareContext method from sql.DB and +// friends. +type Preparer interface { + // PrepareContext is documented by sql.DB.PrepareContext. + PrepareContext(ctx context.Context, query string) (*sql.Stmt, error) +} + +// DB is a union of Execer, Queryer and Preparer. DB's method +// set is implemented by sql.DB, sql.Conn and sql.Tx. +// This can probably be better named, as it conflicts +// with sql.DB. +type DB interface { + Execer + Queryer + Preparer +} + +// ExecResult invokes db.ExecContext, returning the count of rows +// affected and any error. +func ExecResult(ctx context.Context, db Execer, query string, args ...interface{}) (affected int64, err error) { + var res sql.Result + res, err = db.ExecContext(ctx, query, args...) + if err != nil { + return affected, errz.Err(err) + } + + affected, err = res.RowsAffected() + if err != nil { + return affected, errz.Err(err) + } + + return affected, nil +} diff --git a/libsq/sqlz/sqlz_test.go b/libsq/sqlz/sqlz_test.go new file mode 100644 index 00000000..0237f22e --- /dev/null +++ b/libsq/sqlz/sqlz_test.go @@ -0,0 +1,23 @@ +package sqlz_test + +import ( + "database/sql" + "reflect" + + "github.com/neilotoole/sq/libsq/sqlz" +) + +// stdlibColumnType exists to verify that sql.ColumnType +// and FieldMeta conform to a common (sql.ColumnType's) +// method set. +type stdlibColumnType interface { + Name() string + Length() (length int64, ok bool) + DecimalSize() (precision, scale int64, ok bool) + ScanType() reflect.Type + Nullable() (nullable, ok bool) + DatabaseTypeName() string +} + +var _ stdlibColumnType = (*sql.ColumnType)(nil) +var _ stdlibColumnType = (*sqlz.FieldMeta)(nil) diff --git a/libsq/stringz/stringz.go b/libsq/stringz/stringz.go new file mode 100644 index 00000000..cfb0ae07 --- /dev/null +++ b/libsq/stringz/stringz.go @@ -0,0 +1,305 @@ +// Package stringz contains string functions similar in spirit +// to the stdlib strings package. +package stringz + +import ( + "bytes" + "encoding/json" + "fmt" + "strconv" + "strings" + "time" + "unicode" + + "github.com/google/uuid" + + "github.com/neilotoole/sq/libsq/errz" +) + +// Reverse reverses the input string. +func Reverse(input string) string { + n := 0 + runes := make([]rune, len(input)) + for _, r := range input { + runes[n] = r + n++ + } + runes = runes[0:n] + // Reverse + for i := 0; i < n/2; i++ { + runes[i], runes[n-1-i] = runes[n-1-i], runes[i] + } + // Convert back to UTF-8. + return string(runes) +} + +// GenerateAlphaColName returns an Excel-style column name +// for index n, starting with A, B, C... and continuing +// to AA, AB, AC, etc... +func GenerateAlphaColName(n int) string { + return genAlphaCol(n, 'A', 26) +} + +func genAlphaCol(n int, start rune, lenAlpha int) string { + buf := &bytes.Buffer{} + for ; n >= 0; n = (n / lenAlpha) - 1 { + buf.WriteRune(rune(n%lenAlpha) + start) + } + + return Reverse(buf.String()) +} + +// ParseBool is an expansion of strconv.ParseBool that also +// accepts variants of "yes" and "no" (which are bool +// representations returned by some data sources). +func ParseBool(s string) (bool, error) { + switch s { + default: + b, err := strconv.ParseBool(s) + if err != nil { + return b, errz.Err(err) + } + return b, nil + case "yes", "Yes", "YES", "y", "Y": + return true, nil + case "no", "No", "NO", "n", "N": + return false, nil + } +} + +// InSlice returns true if the needle is present in the haystack. +func InSlice(haystack []string, needle string) bool { + return SliceIndex(haystack, needle) != -1 +} + +// SliceIndex returns the index of needle in haystack, or -1. +func SliceIndex(haystack []string, needle string) int { + for i, item := range haystack { + if item == needle { + return i + } + } + return -1 +} + +// FormatFloat formats f. This method exists to provide a standard +// float formatting across the codebase. +func FormatFloat(f float64) string { + return strconv.FormatFloat(f, 'f', -1, 64) +} + +// ByteSized returns a human-readable byte size, e.g. "2.1 MB", "3.0 TB", etc. +// TODO: replace this usage with "github.com/c2h5oh/datasize" +func ByteSized(size int64, precision int, sep string) string { + f := float64(size) + tpl := "%." + strconv.Itoa(precision) + "f" + sep + + switch { + case f >= yb: + return fmt.Sprintf(tpl+"YB", f/yb) + case f >= zb: + return fmt.Sprintf(tpl+"ZB", f/zb) + case f >= eb: + return fmt.Sprintf(tpl+"EB", f/eb) + case f >= pb: + return fmt.Sprintf(tpl+"PB", f/pb) + case f >= tb: + return fmt.Sprintf(tpl+"TB", f/tb) + case f >= gb: + return fmt.Sprintf(tpl+"GB", f/gb) + case f >= mb: + return fmt.Sprintf(tpl+"MB", f/mb) + case f >= kb: + return fmt.Sprintf(tpl+"KB", f/kb) + } + return fmt.Sprintf(tpl+"B", f) +} + +const ( + _ = iota // ignore first value by assigning to blank identifier + kb float64 = 1 << (10 * iota) + mb + gb + tb + pb + eb + zb + yb +) + +func SprintJSON(value interface{}) string { + j, err := json.MarshalIndent(value, "", " ") + if err != nil { + panic(err) + } + return string(j) +} + +// UUID returns a new UUID string. +func UUID() string { + return uuid.New().String() +} + +// Uniq32 returns a UUID-like string that only contains +// alphanumeric chars. The result has length 32. +func Uniq32() string { + return strings.ReplaceAll(UUID(), "-", "") +} + +// Uniq8 returns a UUID-like string that only contains +// alphanumeric chars. The result has length 8. +func Uniq8() string { + // I'm sure there's a more efficient way of doing this, but + // this is fine for now. + return Uniq32()[0:8] +} + +// UniqSuffix returns s with a unique suffix. +func UniqSuffix(s string) string { + return s + "_" + Uniq8() +} + +// Plu handles the most common (English language) case of +// pluralization. With arg s being "row(s) col(s)", Plu +// returns "row col" if arg i is 1, otherwise returns "rows cols". +func Plu(s string, i int) string { + if i == 1 { + return strings.Replace(s, "(s)", "", -1) + } + return strings.Replace(s, "(s)", "s", -1) +} + +// RepeatJoin returns a string consisting of count copies +// of s separated by sep. For example: +// +// stringz.RepeatJoin("?", 3, ", ") == "?, ?, ?" +func RepeatJoin(s string, count int, sep string) string { + if s == "" || count == 0 { + return "" + } + if count == 1 { + return s + } + + var b strings.Builder + b.Grow(len(s)*count + len(sep)*(count-1)) + for i := 0; i < count; i++ { + b.WriteString(s) + if i < count-1 { + b.WriteString(sep) + } + } + + return b.String() +} + +// Surround returns s prefixed and suffixed with w. +func Surround(s, w string) string { + sb := strings.Builder{} + sb.Grow(len(s) + len(w)*2) + sb.WriteString(w) + sb.WriteString(s) + sb.WriteString(w) + return sb.String() +} + +// SurroundSlice returns a new slice with each element +// of a prefixed and suffixed with w, unless a is nil, +// in which case nil is returned. +func SurroundSlice(a []string, w string) []string { + if a == nil { + return nil + } + if len(a) == 0 { + return []string{} + } + ret := make([]string, len(a)) + sb := strings.Builder{} + for i := 0; i < len(a); i++ { + sb.Grow(len(a[i]) + len(w)*2) + sb.WriteString(w) + sb.WriteString(a[i]) + sb.WriteString(w) + ret[i] = sb.String() + sb.Reset() + } + + return ret +} + +// PrefixSlice returns a new slice with each element +// of a prefixed with w, unless a is nil, in which +// case nil is returned. +func PrefixSlice(a []string, w string) []string { + if a == nil { + return nil + } + if len(a) == 0 { + return []string{} + } + ret := make([]string, len(a)) + sb := strings.Builder{} + for i := 0; i < len(a); i++ { + sb.Grow(len(a[i]) + len(w)) + sb.WriteString(w) + sb.WriteString(a[i]) + ret[i] = sb.String() + sb.Reset() + } + + return ret +} + +const ( + // DateFormat is the layout for dates (without a time component), such as 2006-01-02. + DateFormat = "2006-01-02" + + // TimeFormat is the layout for 24-hour time (without a date component), such as 15:04:05. + TimeFormat = "15:04:05" + + // DatetimeFormat is the layout for a date/time timestamp. + DatetimeFormat = time.RFC3339Nano +) + +// UniqTableName returns a new lower-case table name based on +// tbl, with a unique suffix, and a maximum length of 63. This +// value of 63 is chosen because it's less than the maximum table name +// length for Postgres, SQL Server, SQLite and MySQL. +func UniqTableName(tbl string) string { + const maxLength = 63 + tbl = strings.TrimSpace(tbl) + tbl = strings.ToLower(tbl) + if tbl == "" { + tbl = "tbl" + } + + suffix := "__" + Uniq8() + if len(tbl) > maxLength-len(suffix) { + tbl = tbl[0 : maxLength-len(suffix)] + } + tbl += suffix + + // paranoid sanitization + tbl = strings.Replace(tbl, "@", "_", -1) + tbl = strings.Replace(tbl, "/", "_", -1) + + return tbl +} + +// SanitizeAlphaNumeric replaces any non-alphanumeric +// runes of s with r (which is typically underscore). +// +// a#2%3.4_ --> a_2_3_4_ +func SanitizeAlphaNumeric(s string, r rune) string { + runes := []rune(s) + + for i, v := range runes { + switch { + case v == r, unicode.IsLetter(v), unicode.IsNumber(v): + default: + runes[i] = r + } + } + + return string(runes) +} diff --git a/libsq/stringz/stringz_test.go b/libsq/stringz/stringz_test.go new file mode 100644 index 00000000..8328efc8 --- /dev/null +++ b/libsq/stringz/stringz_test.go @@ -0,0 +1,245 @@ +package stringz_test + +import ( + "testing" + + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/stringz" +) + +func TestGenerateAlphaColName(t *testing.T) { + quantity := 704 + colNames := make([]string, quantity) + + for i := 0; i < quantity; i++ { + colNames[i] = stringz.GenerateAlphaColName(i) + } + + items := []struct { + index int + colName string + }{ + {0, "A"}, + {1, "B"}, + {25, "Z"}, + {26, "AA"}, + {27, "AB"}, + {51, "AZ"}, + {52, "BA"}, + {53, "BB"}, + {77, "BZ"}, + {78, "CA"}, + {701, "ZZ"}, + {702, "AAA"}, + {703, "AAB"}, + } + + for _, item := range items { + assert.Equal(t, item.colName, colNames[item.index]) + } +} + +func TestUUID(t *testing.T) { + for i := 0; i < 100; i++ { + u := stringz.Uniq32() + require.Equal(t, 32, len(u)) + } +} + +func TestPluralize(t *testing.T) { + testCases := []struct { + s string + i int + want string + }{ + {s: "row(s)", i: 0, want: "rows"}, + {s: "row(s)", i: 1, want: "row"}, + {s: "row(s)", i: 2, want: "rows"}, + {s: "row(s) col(s)", i: 0, want: "rows cols"}, + {s: "row(s) col(s)", i: 1, want: "row col"}, + {s: "row(s) col(s)", i: 2, want: "rows cols"}, + {s: "row(s)", i: 2, want: "rows"}, + {s: "rows", i: 0, want: "rows"}, + {s: "rows", i: 1, want: "rows"}, + {s: "rows", i: 2, want: "rows"}, + } + + for _, tc := range testCases { + got := stringz.Plu(tc.s, tc.i) + require.Equal(t, tc.want, got) + } +} + +func TestRepeatJoin(t *testing.T) { + testCases := []struct { + s string + count int + sep string + want string + }{ + {s: "", count: 0, sep: ",", want: ""}, + {s: "", count: 1, sep: ",", want: ""}, + {s: "?", count: 1, sep: ",", want: "?"}, + {s: "?", count: 2, sep: ",", want: "?,?"}, + {s: "?", count: 3, sep: ",", want: "?,?,?"}, + {s: "?", count: 3, sep: "", want: "???"}, + {s: "?", count: 0, sep: "", want: ""}, + {s: "?", count: 1, sep: "", want: "?"}, + {s: "?", count: 2, sep: "", want: "??"}, + {s: "?", count: 3, sep: "", want: "???"}, + } + + for _, tc := range testCases { + got := stringz.RepeatJoin(tc.s, tc.count, tc.sep) + require.Equal(t, tc.want, got) + } +} + +func TestSurround(t *testing.T) { + testCases := []struct { + s string + w string + want string + }{ + {s: "", w: "__", want: "____"}, + {s: "hello", w: "__", want: "__hello__"}, + } + + for _, tc := range testCases { + got := stringz.Surround(tc.s, tc.w) + require.Equal(t, tc.want, got) + } +} + +func TestSurroundSlice(t *testing.T) { + testCases := []struct { + a []string + w string + want []string + }{ + {a: nil, w: "__", want: nil}, + {a: []string{}, w: "__", want: []string{}}, + {a: []string{""}, w: "__", want: []string{"____"}}, + {a: []string{"hello", "world"}, w: "__", want: []string{"__hello__", "__world__"}}, + {a: []string{"hello", "world"}, w: "", want: []string{"hello", "world"}}, + } + + for _, tc := range testCases { + got := stringz.SurroundSlice(tc.a, tc.w) + require.Equal(t, tc.want, got) + } +} + +func TestPrefixSlice(t *testing.T) { + testCases := []struct { + a []string + w string + want []string + }{ + {a: nil, w: "__", want: nil}, + {a: []string{}, w: "__", want: []string{}}, + {a: []string{""}, w: "__", want: []string{"__"}}, + {a: []string{"hello", "world"}, w: "__", want: []string{"__hello", "__world"}}, + {a: []string{"hello", "world"}, w: "", want: []string{"hello", "world"}}, + } + + for _, tc := range testCases { + got := stringz.PrefixSlice(tc.a, tc.w) + require.Equal(t, tc.want, got) + } +} + +func TestParseBool(t *testing.T) { + testCases := map[string]bool{ + "1": true, + "t": true, + "true": true, + "TRUE": true, + "y": true, + "Y": true, + "yes": true, + "Yes": true, + "YES": true, + "0": false, + "f": false, + "false": false, + "False": false, + "n": false, + "N": false, + "no": false, + "No": false, + "NO": false, + } + + for input, wantBool := range testCases { + gotBool, gotErr := stringz.ParseBool(input) + require.NoError(t, gotErr) + require.Equal(t, wantBool, gotBool) + } + + invalid := []string{"", " ", " true ", "gibberish", "-1"} + for _, input := range invalid { + _, gotErr := stringz.ParseBool(input) + require.Error(t, gotErr) + } +} + +// TestSliceIndex_InSlice tests SliceIndex and InSlice. +func TestSliceIndex_InSlice(t *testing.T) { + const needle = "hello" + + testCases := []struct { + haystack []string + needle string + want int + }{ + {haystack: nil, needle: needle, want: -1}, + {haystack: []string{}, needle: needle, want: -1}, + {haystack: []string{needle}, needle: needle, want: 0}, + {haystack: []string{"a", needle}, needle: needle, want: 1}, + {haystack: []string{"a", needle, "c"}, needle: needle, want: 1}, + {haystack: []string{"a", "b", needle}, needle: needle, want: 2}, + } + + for _, tc := range testCases { + require.Equal(t, tc.want, stringz.SliceIndex(tc.haystack, tc.needle)) + // Also test sister func InSlice + require.Equal(t, tc.want >= 0, stringz.InSlice(tc.haystack, tc.needle)) + } +} + +func TestUniqTableName(t *testing.T) { + t.Parallel() + + testCases := []string{ + "", + "a", + "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa", + } + + for _, inputTblName := range testCases { + gotTblName := stringz.UniqTableName(inputTblName) + require.True(t, len(gotTblName) > 0) + require.True(t, len(gotTblName) < 64) + t.Logf("%d: %s", len(gotTblName), gotTblName) + } +} + +func TestSanitizeAlphaNumeric(t *testing.T) { + testCases := map[string]string{ + "": "", + " ": "_", + "_": "_", + "abc123": "abc123", + "_abc_123": "_abc_123", + "a#2%3.4_": "a_2_3_4_", + "😀abc123😀": "_abc123_", + } + + for input, want := range testCases { + got := stringz.SanitizeAlphaNumeric(input, '_') + require.Equal(t, want, got) + } +} diff --git a/libsq/util/util.go b/libsq/util/util.go deleted file mode 100644 index 9ba8cea3..00000000 --- a/libsq/util/util.go +++ /dev/null @@ -1,158 +0,0 @@ -package util - -import ( - "encoding/json" - "os" - - "fmt" - - "strconv" - - "io" - - "github.com/neilotoole/go-lg/lg" -) - -// Errorf returns a generic error, logging the fact of its creation. -func Errorf(format string, v ...interface{}) error { - return ErrorfN(1, format, v...) -} - -// Errorf is similar to Errorf, but allows specification of calldepth. -func ErrorfN(calldepth int, format string, v ...interface{}) error { - err := fmt.Errorf(format, v...) - lg.Depth(1+calldepth).Warnf("error created: %s", err.Error()) - return err -} - -func WrapError(err error) error { - - if err == nil { - return nil - } - err2 := fmt.Errorf(err.Error()) - lg.Depth(1).Warnf("wrapping error (%T): %s", err, err2.Error()) - return err -} - -// OrPanic panics if err is not nil. -func OrPanic(err error) { - if err != nil { - panic(err) - } -} - -// InArray returns true if the needle is present in the haystack. -func InArray(haystack []string, needle string) bool { - - for _, item := range haystack { - if item == needle { - return true - } - } - return false -} - -// ByteSized returns a human-readable byte size, e.g. "2.1 MB", "3.0 TB", etc. -func ByteSized(size int64, precision int, sep string) string { - - f := float64(size) - tpl := "%." + strconv.Itoa(precision) + "f" + sep - - switch { - case f >= yb: - return fmt.Sprintf(tpl+"YB", f/yb) - case f >= zb: - return fmt.Sprintf(tpl+"ZB", f/zb) - case f >= eb: - return fmt.Sprintf(tpl+"EB", f/eb) - case f >= pb: - return fmt.Sprintf(tpl+"PB", f/pb) - case f >= tb: - return fmt.Sprintf(tpl+"TB", f/tb) - case f >= gb: - return fmt.Sprintf(tpl+"GB", f/gb) - case f >= mb: - return fmt.Sprintf(tpl+"MB", f/mb) - case f >= kb: - return fmt.Sprintf(tpl+"KB", f/kb) - } - return fmt.Sprintf(tpl+"B", f) -} - -func ReverseString(input string) string { - n := 0 - runes := make([]rune, len(input)) - for _, r := range input { - runes[n] = r - n++ - } - runes = runes[0:n] - // Reverse - for i := 0; i < n/2; i++ { - runes[i], runes[n-1-i] = runes[n-1-i], runes[i] - } - // Convert back to UTF-8. - return string(runes) -} - -const ( - _ = iota // ignore first value by assigning to blank identifier - kb float64 = 1 << (10 * iota) - mb - gb - tb - pb - eb - zb - yb -) - -func SprintJSON(value interface{}) string { - - j, err := json.MarshalIndent(value, "", " ") - if err != nil { - panic(err) - } - return string(j) -} - -// FileExists return true if the file at path exists. -func FileExists(path string) (bool, error) { - _, err := os.Stat(path) - if err == nil { - return true, nil - } - if os.IsNotExist(err) { - return false, nil - } - return true, WrapError(err) -} - -// NewCRFilterReader returns a new Reader whose Read() method converts standalone -// carriage return '\r' bytes to newline '\n'. CRLF "\r\n" sequences are untouched. -// This is useful for reading from DOS format, e.g. a TSV file exported by -// Microsoft Excel. -func NewCRFilterReader(r io.Reader) io.Reader { - return &crFilterReader{r: r} -} - -type crFilterReader struct { - r io.Reader -} - -func (r *crFilterReader) Read(p []byte) (n int, err error) { - n, err = r.r.Read(p) - - for i := 0; i < n; i++ { - if p[i] == 13 { - if i+1 < n && p[i+1] == 10 { - continue // it's \r\n - } - // it's just \r by itself, replace - p[i] = 10 - } - } - - return n, err -} diff --git a/magefile.go b/magefile.go new file mode 100644 index 00000000..5eb840ee --- /dev/null +++ b/magefile.go @@ -0,0 +1,434 @@ +// +build mage + +// Magefile for building/test sq. This magefile was originally copied from +// the Hugo magefile, and may contain functionality that can be ditched. +package main + +// See https://magefile.org +// This file originally derived from the Hugo magefile, see https://github.com/gohugoio/hugo + +import ( + "fmt" + "io" + "log" + "net/http" + "os" + "path/filepath" + "runtime" + "strings" + "time" + + "github.com/magefile/mage/mg" + "github.com/magefile/mage/sh" +) + +const ( + packageName = "github.com/neilotoole/sq" +) + +var ldflags = "-X $PACKAGE/cli/buildinfo.Version=$BUILD_VERSION -X $PACKAGE/cli/buildinfo.Timestamp=$BUILD_TIMESTAMP -X $PACKAGE/cli/buildinfo.Commit=$BUILD_COMMIT" + +// allow user to override go executable by running as GO=xxx mage ... on unix-like systems +var gocmd = "go" + +func init() { + if exe := os.Getenv("GO"); exe != "" { + gocmd = exe + } + + // We want to use Go 1.11 modules even if the source lives inside GOPATH. + // The default is "auto". + os.Setenv("GO111MODULE", "on") +} + +var Default = Install + +func ldflagsEnv() map[string]string { + hash := gitHeadCommit(true) + + return map[string]string{ + "PACKAGE": packageName, + "BUILD_COMMIT": hash, + "BUILD_TIMESTAMP": time.Now().Format("2006-01-02T15:04:05Z0700"), + "BUILD_VERSION": generateBuildVersion(), + "BUILD_BRANCH": gitCurrentBranch(), + } +} + +// Clean cleans the dist dir, build dirs and sq binaries. +// We use `which` to iteratively find any binaries on the path +// named "sq" and delete them. +func Clean() error { + logIf(rmAll("./dist/*")) + logIf(rmAll("./grammar/build")) + + // Delete the sq binary that "go build" might produce + logIf(sh.Rm("./sq")) + + for { + // Find any other sq binaries + sqPath, err := sh.Output("which", "sq") + if err != nil || sqPath == "" { + break + } + + // Make sure it's actually our sq binary. We'll do this + // by checking the version output. + version, err := sh.Output(sqPath, "version") + if err != nil || !strings.HasPrefix(version, "sq v") { + break + } + + logIf(sh.Rm(sqPath)) + } + + return nil +} + +// Build builds sq. +func Build() error { + mg.Deps(Vet) + return sh.RunWith(ldflagsEnv(), gocmd, "build", "-ldflags", ldflags, "-tags", buildTags(), packageName) +} + +// BuildRace builds sq with race detector enabled +func BuildRace() error { + mg.Deps(Vet) + return sh.RunWith(ldflagsEnv(), gocmd, "build", "-race", "-ldflags", ldflags, "-tags", buildTags(), packageName) +} + +// Install installs the sq binary. +func Install() error { + mg.Deps(Vet) + return sh.RunWith(ldflagsEnv(), gocmd, "install", "-ldflags", ldflags, "-tags", buildTags(), packageName) +} + +// testGoFlags returns -test.short if isCI returns false. +func testGoFlags() string { + if isCI() { + return "" + } + + return "-test.short" +} + +// Test runs go test. +func Test() error { + mg.Deps(Vet) + env := map[string]string{"GOFLAGS": testGoFlags()} + return runCmd(env, gocmd, "test", "./...", "-tags", buildTags()) +} + +// TestAll runs go test including the "heavy" build tag. +func TestAll() error { + mg.Deps(Vet) + env := map[string]string{"GOFLAGS": testGoFlags()} + return runCmd(env, gocmd, "test", "./...", "-tags", "heavy") +} + +// Lint runs the golangci-lint linters. +// The golangci-lint binary must be installed: +// +// $ brew install golangci-lint +// +// See .golangci.yml for configuration. +func Lint() error { + return sh.RunV("golangci-lint", "run", "./...") +} + +// Vet runs go vet. +func Vet() error { + if err := sh.Run(gocmd, "vet", "./..."); err != nil { + fmt.Println("WARNING: issue reported by go vet:", err) + + // return fmt.Errorf("error running go vet: %v", err) + } + return nil +} + +// GenerateParser generates SLQ parser Go files from the +// antlr grammar. Note that the antlr generator tool is java-based. +func GenerateParser() error { + // https://www.antlr.org/download/antlr-4.8-complete.jar + + err := ensureJava() + if err != nil { + log.Println("java is required by antlr to generate the Go parser files, but java may not be available:", err) + return err + } + + jarPath, err := ensureAntlrJar() + if err != nil { + return err + } + + genDir, err := execAntlrGenerate(jarPath) + if err != nil { + return err + } + + log.Println("Antlr generated files to:", genDir) + err = updateParserFiles(genDir) + if err != nil { + return err + } + + // Finally clean up the generated files + return rmAll(filepath.Join(genDir, "*")) +} + +// updateParserFiles updates/copies files from genDir to +// the version-controlled slq dir. +func updateParserFiles(genDir string) error { + log.Println("Building generated parser files:", genDir) + err := sh.RunV("go", "build", "-v", genDir) + if err != nil { + return err + } + + log.Println("Deleting previous generated files from libsq/slq") + + err = rmAll("libsq/slq/*.go", "libsq/slq/*.token", "libsq/slq/*.interp") + if err != nil { + return err + } + + log.Println("Copying generated files to libsq/slq") + err = copyFilesToDir("libsq/slq", filepath.Join(genDir, "*")) + if err != nil { + return err + } + + return nil +} + +// execAntlrGenerate executes the antlr tool from jarPath, +// generates Go parser files into genDir. +func execAntlrGenerate(jarPath string) (genDir string, err error) { + log.Println("Using antlr jar:", jarPath) + + // The antlr tool is finicky about paths, so we're going + // to bypass this problem by using absolute paths. + grammarFile := filepath.Join("grammar", "SLQ.g4") + grammarFile, err = filepath.Abs(grammarFile) + if err != nil { + return "", err + } + + genDir = filepath.Join("grammar", "build", "slq") + genDir, err = filepath.Abs(genDir) + if err != nil { + return "", err + } + + // Make sure the output dir exists. + err = os.MkdirAll(genDir, 0700) + if err != nil { + return "", err + } + + // Delete any existing files in output dir. + err = rmAll(filepath.Join(genDir, "*")) + if err != nil { + return "", err + } + + err = sh.Run("java", + "-cp", jarPath, "org.antlr.v4.Tool", + "-listener", "-visitor", + "-package", "slq", + "-Dlanguage=Go", + "-o", genDir, + grammarFile, + ) + + if err != nil { + return "", err + } + + return genDir, nil +} + +// ensureJava ensures that java is available. +func ensureJava() error { + err := sh.Run("java", "-version") + if err != nil { + log.Println("Didn't find java executable") + return err + } + + log.Println("Found java executable") + return nil +} + +// ensureAntlrJar ensures that we have the antlr jar +// available, and returns the absolute path to the jar. +// The antlr jar can be found in grammar/build. +func ensureAntlrJar() (jarPath string, err error) { + const ( + baseDownloadURL = "https://www.antlr.org/download/" + jarName = "antlr-4.7.2-complete.jar" + ) + + // Make sure our grammar/build dir exists + err = os.MkdirAll(filepath.Join("grammar", "build"), 0700) + if err != nil { + return "", err + } + + path := filepath.Join("grammar", "build", jarName) + path, err = filepath.Abs(path) + panicIf(err) + + _, err = os.Stat(path) + if err == nil { + log.Println("Found antlr jar:", path) + return path, nil + } + + log.Println("Did not find antlr jar at:", path) + + // Create the file + f, err := os.Create(path) + if err != nil { + return "", err + } + defer f.Close() + + downloadURL := baseDownloadURL + jarName + log.Println("Downloading jar from:", downloadURL) + + // Get the data + resp, err := http.Get(downloadURL) + if err != nil { + return "", err + } + defer resp.Body.Close() + + // Write the body to file + _, err = io.Copy(f, resp.Body) + if err != nil { + return "", err + } + + log.Printf("Downloaded %d bytes to %s", resp.ContentLength, path) + return path, nil +} + +func runCmd(env map[string]string, cmd string, args ...string) error { + if mg.Verbose() { + return sh.RunWith(env, cmd, args...) + } + output, err := sh.OutputWith(env, cmd, args...) + if err != nil { + fmt.Fprint(os.Stderr, output) + } + + return err +} + +func isGoLatest() bool { + return strings.Contains(runtime.Version(), "1.14") +} + +func isCI() bool { + return os.Getenv("CI") != "" +} + +func buildTags() string { + if envtags := os.Getenv("BUILD_TAGS"); envtags != "" { + return envtags + } + return "none" +} + +func panicIf(err error) { + if err != nil { + panic(err) + } +} + +func logIf(err error) { + if err != nil { + log.Println(err) + } +} + +// rmAll deletes all files or dirs matching a pattern. +func rmAll(patterns ...string) error { + var allMatches []string + for _, pattern := range patterns { + matches, err := filepath.Glob(pattern) + if err != nil { + return err + } + allMatches = append(allMatches, matches...) + } + + for _, match := range allMatches { + log.Printf("rmAll: %s", match) + err := sh.Rm(match) + if err != nil { + return err + } + } + + return nil +} + +// copyFilesToDir copies all files matching a pattern to dstDir. +// Because of flattening that occurs, if multiple files have the +// same name in dstDir, the later file will be be the last one +// copied and thus take effect. Directories are skipped. +func copyFilesToDir(dstDir string, patterns ...string) error { + var allMatches []string + + for _, pattern := range patterns { + matches, err := filepath.Glob(pattern) + if err != nil { + return err + } + + for _, fname := range matches { + fi, err := os.Stat(fname) + if err != nil { + log.Printf("copyFilesToDir: skipping %s because: %v", fname, err) + continue + } + if fi.IsDir() { + log.Printf("copyFilesToDir: skipping %s because it's a dir", fname) + continue + } + + allMatches = append(allMatches, fname) + } + } + + for _, match := range allMatches { + _, name := filepath.Split(match) + dstFile := filepath.Join(dstDir, name) + log.Printf("copyFilesToDir: %s --> %s\n", match, dstFile) + + err := sh.Copy(dstFile, match) + if err != nil { + return err + } + } + + return nil +} + +// CheckDocker verifies that docker is running by executing echo +// on alpine. +func CheckDocker() error { + return execDocker("run", "-it", "alpine", "echo", "docker is working") +} + +// execDocker executes a docker command with args, returning +// any error. Example: +// +// execDocker("run", "-it", "alpine", "echo", "hello world") +func execDocker(cmd string, args ...string) error { + args = append([]string{cmd}, args...) + return sh.RunV("docker", args...) +} diff --git a/magefile_release.go b/magefile_release.go new file mode 100644 index 00000000..cf922332 --- /dev/null +++ b/magefile_release.go @@ -0,0 +1,201 @@ +// +build mage + +// This magefile contains release targets and related functions. +// Ultimately this should go away in favor of CI. + +package main + +import ( + "errors" + "fmt" + "os" + "path/filepath" + + "github.com/magefile/mage/mg" + "github.com/magefile/mage/sh" +) + +// Release is a mage namespace for release targets. +type Release mg.Namespace + +// Snapshot runs goreleaser on Docker in snapshot mode. +func (Release) Snapshot() error { + mg.Deps(CheckDocker) + wd, err := os.Getwd() + if err != nil { + return err + } + + err = execDocker("run", + "--rm", "--privileged", + "-v", wd+":/go/src/github.com/neilotoole/sq", + "-v", "/var/run/docker.sock:/var/run/docker.sock", + "-w", "/go/src/github.com/neilotoole/sq", + "neilotoole/xcgo:latest", + // actual args to goreleaser are next + "goreleaser", "--rm-dist", "--debug", "--snapshot") + return err +} + +// Release executes goreleaser on Docker. It will publish artifacts +// to github, brew, scoop, etc. +// +// To create a new tag, in this example: v0.5.1 +// $ git tag v0.5.1 && git push origin v0.5.1 +// +// To delete a tag: +// $ git push --delete origin v0.5.1 && git tag -d v0.5.1 +func (r Release) Release() error { + mg.Deps(r.GitIsReady, CheckDocker) + wd, err := os.Getwd() + if err != nil { + return err + } + + token, ok := os.LookupEnv("GITHUB_TOKEN") + if !ok || token == "" { + return errors.New("envar GITHUB_TOKEN is not set or is empty") + } + + args := []string{ + "--rm", "--privileged", + "-e", "GITHUB_TOKEN=" + token, + "-v", wd + ":/go/src/github.com/neilotoole/sq", + "-v", "/var/run/docker.sock:/var/run/docker.sock", + "-w", "/go/src/github.com/neilotoole/sq", + "neilotoole/xcgo:latest", + "goreleaser", "--rm-dist", + } + + snapLoginFile, ok := os.LookupEnv("SNAPCRAFT_LOGIN_FILE") + if ok { + localPath, err := filepath.Abs(snapLoginFile) + if err != nil { + return err + } + _, err = os.Stat(localPath) + if err != nil { + return fmt.Errorf("failed to stat $SNAPCRAFT_LOGIN_FILE: %w", err) + } + + args = append([]string{ + "-e", "SNAPCRAFT_LOGIN_FILE=/.snapcraft.login", + "-v", localPath + ":/.snapcraft.login"}, + args...) + } + + err = execDocker("run", args...) + + return err +} + +// GitIsReady returns an error if the working dir is dirty or +// if the commit for the latest tag is not the HEAD commit. +func (Release) GitIsReady() error { + if gitIsDirtyWorkingDir() { + return errors.New("working dir is dirty") + } + + if gitCommitForLatestTag() != gitHeadCommit(false) { + return errors.New("the HEAD commit is not commit for latest tag") + } + + fmt.Println("git is clean") + return nil +} + +// GitInfo prints some git info. +func (Release) GitInfo() { + fmt.Println("gitCurrentBranch:", gitCurrentBranch()) + fmt.Println("gitHeadCommit(long):", gitHeadCommit(false)) + fmt.Println("gitHeadCommit(short):", gitHeadCommit(true)) + fmt.Println("getLatestTag:", gitLatestTag()) + commitForLatestTag := gitCommitForLatestTag() + fmt.Println("gitCommitForLatestTag:", commitForLatestTag) + tag := gitTagForCommit(commitForLatestTag) + fmt.Println("gitTagForCommit:", tag) + fmt.Println("generateBuildVersion:", generateBuildVersion()) + fmt.Println("gitIsDirtyWorkingDir:", gitIsDirtyWorkingDir()) + if gitCommitForLatestTag() != gitHeadCommit(false) { + fmt.Println("\n*** HEAD commit is not commit for latest tag ***") + } +} + +func gitHeadCommit(short bool) string { + args := []string{"rev-parse", "HEAD"} + if short { + args = []string{"rev-parse", "--short", "HEAD"} + } + + hash, err := sh.Output("git", args...) + panicIf(err) + return hash +} + +func gitCommitForLatestTag() string { + hash, err := sh.Output("git", "rev-list", "--tags", "--max-count=1") + panicIf(err) + return hash +} + +func gitTagForCommit(commit string) string { + tag, err := sh.Output("git", "describe", "--tags", commit) + panicIf(err) + return tag +} + +func gitLatestTag() string { + commitForLatestTag := gitCommitForLatestTag() + tag := gitTagForCommit(commitForLatestTag) + return tag +} + +func gitCurrentBranch() string { + branch, err := sh.Output("git", "rev-parse", "--abbrev-ref", "HEAD") + panicIf(err) + return branch +} + +func gitIsDirtyWorkingDir() bool { + diff, err := sh.Output("git", "diff", "HEAD") + panicIf(err) + + // If no diff, then diff's output will be empty. + return diff != "" +} + +// BuildVersion prints the build version that would be +// incorporated into the sq binary. The build version is of +// the form TAG[-SUFFIX], for example "v0.5.9-dev". +// - If working dir is dirty, or if the HEAD commit does not +// match the latest tag commit, the suffix is "-wip" (Work In +// Progress), e.g. "v0.5.9-wip". +// - Else, if the branch is not master, the branch name is +// used as the suffix, e.g. "v0.5.9-dev". +// - Else, we're on master and the HEAD commit is the latest +// tag, so the suffix is omitted, e.g. "v0.5.9". +func (Release) BuildVersion() { + fmt.Println(generateBuildVersion()) +} + +func generateBuildVersion() string { + commitForLatestTag := gitCommitForLatestTag() + headCommit := gitHeadCommit(false) + latestTag := gitTagForCommit(commitForLatestTag) + currentBranch := gitCurrentBranch() + + // If working dis is dirty or we're not on the latest tag, + // then add a "-wip" suffix (Work In Progress). + isDirty := gitIsDirtyWorkingDir() + if isDirty || headCommit != commitForLatestTag { + return latestTag + "-wip" + } + + // Else, if the current branch is not master, append the + // branch. + if currentBranch != "master" { + return latestTag + "-" + currentBranch + } + + return latestTag +} diff --git a/magefile_sakila.go b/magefile_sakila.go new file mode 100644 index 00000000..631b2db0 --- /dev/null +++ b/magefile_sakila.go @@ -0,0 +1,147 @@ +// +build mage + +// This magefile contains targets for starting and stopping +// the Sakila test containers locally. + +package main + +import ( + "context" + "fmt" + "sync" + "time" + + "github.com/magefile/mage/mg" + "github.com/testcontainers/testcontainers-go/wait" + "golang.org/x/sync/errgroup" + + "github.com/testcontainers/testcontainers-go" +) + +// Sakila is the mage namespace for sakila targets. +type Sakila mg.Namespace + +const startupTimeout = time.Minute * 5 + +// containers is the set of database server containers required for +// integration testing. +// NOTE: The wait.ForLog mechanism is probably not fully correct for any of the +// containers (e.g. the string may appear multiple times in the log output), +// thus the containers may not have started fully when WaitingFor completes. +var containers = []testcontainers.ContainerRequest{ + { + Image: "sakiladb/sqlserver:2017-CU19", + Name: "sakiladb-sqlserver-2017", + ExposedPorts: []string{"14337:1433"}, + WaitingFor: wait.ForLog("Changed database context to 'sakila'.").WithStartupTimeout(startupTimeout), + }, + { + Image: "sakiladb/postgres:9", + Name: "sakiladb-postgres-9", + ExposedPorts: []string{"54329:5432"}, + WaitingFor: wait.ForLog("PostgreSQL init process complete; ready for start up.").WithStartupTimeout(startupTimeout), + }, + { + Image: "sakiladb/postgres:10", + Name: "sakiladb-postgres-10", + ExposedPorts: []string{"54330:5432"}, + WaitingFor: wait.ForLog("PostgreSQL init process complete; ready for start up.").WithStartupTimeout(startupTimeout), + }, + { + Image: "sakiladb/postgres:11", + Name: "sakiladb-postgres-11", + ExposedPorts: []string{"54331:5432"}, + WaitingFor: wait.ForLog("PostgreSQL init process complete; ready for start up.").WithStartupTimeout(startupTimeout), + }, + { + Image: "sakiladb/postgres:12", + Name: "sakiladb-postgres-12", + ExposedPorts: []string{"54332:5432"}, + WaitingFor: wait.ForLog("PostgreSQL init process complete; ready for start up.").WithStartupTimeout(startupTimeout), + }, + { + Image: "sakiladb/mysql:5.6", + Name: "sakiladb-mysql-5.6", + ExposedPorts: []string{"33066:3306"}, + WaitingFor: wait.ForLog("[Note] mysqld: ready for connections.").WithStartupTimeout(startupTimeout), + }, + { + Image: "sakiladb/mysql:5.7", + Name: "sakiladb-mysql-5.7", + ExposedPorts: []string{"33067:3306"}, + WaitingFor: wait.ForLog("[Note] mysqld: ready for connections.").WithStartupTimeout(startupTimeout), + }, + { + Image: "sakiladb/mysql:8", + Name: "sakiladb-mysql-8", + ExposedPorts: []string{"33068:3306"}, + WaitingFor: wait.ForLog("[Server] /usr/sbin/mysqld: ready for connections.").WithStartupTimeout(startupTimeout), + }, +} + +// StartAll starts all the sakila database server containers locally. +// Use RemoveAll to stop & remove the containers. +func (Sakila) StartAll() error { + const envarInfo = `export SQ_TEST_SRC__SAKILA_MY56=localhost:33066 +export SQ_TEST_SRC__SAKILA_MY57=localhost:33067 +export SQ_TEST_SRC__SAKILA_MY8=localhost:33068 +export SQ_TEST_SRC__SAKILA_PG9=localhost:54329 +export SQ_TEST_SRC__SAKILA_PG10=localhost:54330 +export SQ_TEST_SRC__SAKILA_PG11=localhost:54331 +export SQ_TEST_SRC__SAKILA_PG12=localhost:54332 +export SQ_TEST_SRC__SAKILA_MS17=localhost:14337` + + fmt.Println("Starting all containers...") + fmt.Printf("'src' the following:\n===\n%s\n===\n\n", envarInfo) + + errGroup, ctx := errgroup.WithContext(context.Background()) + + for _, container := range containers { + container := container + // The user invokes mage sakila:RemoveAll to remove all the containers. + container.SkipReaper = true + + errGroup.Go(func() error { + fmt.Printf("Starting container %s for %s\n", container.Name, container.Image) + + _, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{ + ContainerRequest: container, + Started: true, + }) + + if err != nil { + return fmt.Errorf("image %s: %w", container.Image, err) + } + + fmt.Printf("SUCCESS: started container %s for %s\n", container.Name, container.Image) + return nil + }) + } + + err := errGroup.Wait() + if err != nil { + fmt.Println("ERROR: problem reported trying to start all containers (some or all containers may actually have started)") + return err + } + + fmt.Println("SUCCESS: All database containers started") + + return nil +} + +// RemoveAll removes all the Sakila docker containers. +func (Sakila) RemoveAll() { + wg := &sync.WaitGroup{} + wg.Add(len(containers)) + for _, container := range containers { + container := container + + go func() { + defer wg.Done() + // We don't care if there's an error + _ = execDocker("rm", "-f", container.Name) + }() + } + + wg.Wait() +} diff --git a/main.go b/main.go index 9d3e806d..f5c21972 100644 --- a/main.go +++ b/main.go @@ -1,18 +1,28 @@ +// Package main contains sq's main function. package main import ( - // bootstrap is the first import, do not move - _ "github.com/neilotoole/sq/cmd/bootstrap" - + "context" "os" - "strings" + "os/signal" - "github.com/neilotoole/go-lg/lg" - "github.com/neilotoole/sq/cmd" + "github.com/neilotoole/sq/cli" ) func main() { - str := "\n" + strings.Repeat("*", 80) + "\n > " + strings.Join(os.Args, " ") + "\n" + strings.Repeat("*", 80) - lg.Debugf(str) - cmd.Execute() + ctx, cancelFn := context.WithCancel(context.Background()) + defer cancelFn() + + go func() { + stop := make(chan os.Signal, 1) + signal.Notify(stop, os.Interrupt) + + <-stop + cancelFn() + }() + + err := cli.Execute(ctx, os.Stdin, os.Stdout, os.Stderr, os.Args) + if err != nil { + os.Exit(1) + } } diff --git a/notifiers/doc.go b/notifiers/doc.go new file mode 100644 index 00000000..57840933 --- /dev/null +++ b/notifiers/doc.go @@ -0,0 +1,3 @@ +// notifiers is the containing package for notifier +// implementations. +package notifiers diff --git a/notifiers/hipchat/hipchat.go b/notifiers/hipchat/hipchat.go new file mode 100644 index 00000000..ea593484 --- /dev/null +++ b/notifiers/hipchat/hipchat.go @@ -0,0 +1,236 @@ +// Package hipchat is deprecated. +// Deprecated: don't use me +package hipchat + +import ( + "strconv" + + "net/url" + + "fmt" + + "strings" + + "math" + + "bytes" + + "time" + + "github.com/tbruyelle/hipchat-go/hipchat" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/notify" +) + +const typ = notify.DestType("hipchat") + +func init() { + notify.RegisterProvider(typ, &provider{}) +} + +type provider struct { +} + +func (p *provider) Destination( + typ notify.DestType, + target string, + label string, + credentials string, + labelAvailable func(label string) bool) (*notify.Destination, error) { + + if typ != typ { + return nil, errz.Errorf("hipchat: unsupported destination type %q", typ) + } + + api := hipchat.NewClient(credentials) + foundRoom, baseURL, err := getRoom(api, target) + if err != nil { + return nil, err + } + canonicalTarget := generateTargetURL(baseURL, strconv.Itoa(foundRoom.ID)) + + dest := ¬ify.Destination{Type: typ, Target: canonicalTarget, Credentials: credentials, Label: label} + if dest.Label == "" { + // need to generate the handle + h := foundRoom.Name + // check if we can just grab the room name + if labelAvailable(h) { + dest.Label = h + return dest, nil + } + + for i := 1; i < math.MaxInt32; i++ { + h = fmt.Sprintf("%s_%d", foundRoom.Name, i) + if labelAvailable(h) { + dest.Label = h + return dest, nil + } + } + + return nil, errz.Errorf("hipchat: unable to suggest label for %q notification destination %q", typ, target) + } + + // label was provided by the user, check if it's legal + err = notify.ValidHandle(label) + if err != nil { + return nil, errz.Wrap(err, "hipchat") + } + + return dest, nil +} + +func getRoom(api *hipchat.Client, target string) (*hipchat.Room, string, error) { + + opt := &hipchat.RoomsListOptions{IncludePrivate: true, IncludeArchived: true} + rooms, _, err := api.Room.List(opt) + if err != nil { + return nil, "", errz.Wrapf(err, "hipchat") + } + + baseURL, providedRoomID, err := parseTargetURL(target) + if err != nil { + return nil, "", err + } + + var foundRoom *hipchat.Room + intRoomID, err := strconv.Atoi(providedRoomID) + if err != nil { + // providedRoomID is not an int, hopefully it's the room name + for _, r := range rooms.Items { + if r.Name == providedRoomID { + foundRoom = &r + break + } + } + } else { + // providedRoomID is an int, it should match room.ID + for _, r := range rooms.Items { + if r.ID == intRoomID { + foundRoom = &r + break + } + } + } + + if foundRoom == nil { + return nil, "", errz.Errorf("hipchat: unable to find room matching target %q", target) + } + + return foundRoom, baseURL, nil +} + +func (p *provider) Notifier(dest notify.Destination) (notify.Notifier, error) { + if dest.Type != typ { + return nil, errz.Errorf("hipchat: unsupported destination type %q", dest.Type) + } + api := hipchat.NewClient(dest.Credentials) + room, _, err := getRoom(api, dest.Target) + if err != nil { + return nil, err + } + + return ¬ifier{dest: dest, api: api, room: room}, nil +} + +// parseTargetURL returns the base URL and room ID from a HipChat target URL. For example: +// +// https://api.hipchat.com/v2/room/12345 -> "https://api.hipchat.com/v2/", "12345" +// https://hipchat.acme.com/v2/room/12345 -> "https://hipchat.acme.com/v2/", "12345" +func parseTargetURL(targetURL string) (baseURL, roomID string, err error) { + + u, err := url.ParseRequestURI(targetURL) + if err != nil { + return "", "", errz.Wrapf(err, "hipchat: unable to parse target URL %q", targetURL) + } + + // e.g. "/v2/room/12345" -> [ "", "v2", "room", "12345"] + pathParts := strings.Split(u.EscapedPath(), "/") + + if len(pathParts) < 4 { + return "", "", errz.Errorf("hipchat: the API URL path should have at least 3 parts, but was: %s", targetURL) + } + if pathParts[1] != "v2" { + return "", "", errz.Errorf(`hipchat: only the v2 API is supported, but API URL was: %s`, targetURL) + } + + return fmt.Sprintf("https://%s/v2/", u.Host), pathParts[3], nil +} + +// generateTargetURL returns a canonical URL identifier for a hipchat room +func generateTargetURL(baseURL string, roomID string) string { + return fmt.Sprintf("%sroom/%s", baseURL, roomID) +} + +type notifier struct { + dest notify.Destination + api *hipchat.Client + room *hipchat.Room +} + +const tplJobEnded = ` + + + + +
Job ID%s
State%s
Started%s
Duration%s
+
%s
+` + +const tplJobNotEnded = ` + + + +
Job ID%s
State%s
Started%s
+
%s
+` + +func (n *notifier) Send(msg notify.Message) error { + + req := &hipchat.NotificationRequest{Message: msg.Text} + req.MessageFormat = "html" + req.From = "sq bot" + + buf := &bytes.Buffer{} + + buf.WriteString(msg.Text) + + if msg.Job != nil { + if buf.Len() > 0 { + buf.WriteString("
") + } + + switch msg.Job.State { + case notify.Completed: + req.Color = hipchat.ColorGreen + case notify.Failed: + req.Color = hipchat.ColorRed + } + + var started string + var duration string + + if msg.Job.Started == nil { + started = "-" + } else { + started = msg.Job.Started.Format(time.RFC3339) + } + + if msg.Job.Ended == nil { + html := fmt.Sprintf(tplJobNotEnded, msg.Job.ID, msg.Job.State, started, msg.Job.Stmt) + buf.WriteString(html) + } else { + duration = msg.Job.Ended.Sub(*msg.Job.Started).String() + html := fmt.Sprintf(tplJobEnded, msg.Job.ID, msg.Job.State, started, duration, msg.Job.Stmt) + buf.WriteString(html) + } + } + + req.Message = buf.String() + _, err := n.api.Room.Notification(strconv.Itoa(n.room.ID), req) + if err != nil { + return errz.Wrap(err, "hipchat") + } + + return nil +} diff --git a/notifiers/hipchat/hipchat_test.go b/notifiers/hipchat/hipchat_test.go new file mode 100644 index 00000000..7c41f38f --- /dev/null +++ b/notifiers/hipchat/hipchat_test.go @@ -0,0 +1,110 @@ +package hipchat + +import ( + "fmt" + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/notify" +) + +const testToken = `Q1dZ4yFDWGMJxt0u9kiBA0yoCNm5Ga0wvs7PO7Uk` +const testRoomName = `notifier-test` +const testRoomID = `3836173` +const baseURL = `https://api.hipchat.com/v2/` + +func TestProvider_Destination(t *testing.T) { + t.Skip() + available := func(string) bool { + return true + } + target := fmt.Sprintf("%sroom/%s", baseURL, testRoomName) + p := &provider{} + + dest, err := p.Destination( + typ, + target, + "", + testToken, + available) + + require.Nil(t, err) + require.NotNil(t, dest) +} + +func TestNotifier_Send(t *testing.T) { + t.Skip() + p := &provider{} + dest := newTestDestination(t, p) + + n, err := p.Notifier(*dest) + + require.Nil(t, err) + require.NotNil(t, n) + + err = n.Send(notify.Message{Text: "hello world"}) + require.Nil(t, err) + + jb := notify.New("@my1.tbluser | .uid, .username, .email") + jb.Start() + err = n.Send(notify.NewJobMessage(*jb)) + require.Nil(t, err) + jb.Fail() + err = n.Send(notify.NewJobMessage(*jb)) + require.Nil(t, err) + + jb = notify.New("@my1.tbluser | .uid, .username, .email") + jb.Start() + err = n.Send(notify.NewJobMessage(*jb)) + require.Nil(t, err) + jb.Complete() + err = n.Send(notify.NewJobMessage(*jb)) + require.Nil(t, err) + +} + +func newTestDestination(t *testing.T, p *provider) *notify.Destination { + + available := func(string) bool { + return true + } + target := fmt.Sprintf("%sroom/%s", baseURL, testRoomName) + dest, err := p.Destination( + typ, + target, + "", + testToken, + available) + + require.Nil(t, err) + return dest +} + +// https://api.hipchat.com/v2/room/12345 -> "https://api.hipchat.com/v2/", "12345" +// https://hipchat.acme.com/v2/room/12345 -> "https://hipchat.acme.com/v2/", "12345" +func Test_parseTargetURL(t *testing.T) { + t.Skip() + base, id, err := parseTargetURL("https://api.hipchat.com/v2/room/12345") + require.Nil(t, err) + require.Equal(t, "https://api.hipchat.com/v2/", base) + require.Equal(t, "12345", id) + + _, _, err = parseTargetURL("https://api.hipchat.com/v1/room/12345") + require.NotNil(t, err, "only v2 API supported") + _, _, err = parseTargetURL("https://api.hipchat.com/v3/room/12345") + require.NotNil(t, err, "only v3 API supported") + + base, id, err = parseTargetURL("https://hipchat.acme.com/v2/room/45678") + require.Nil(t, err) + require.Equal(t, "https://hipchat.acme.com/v2/", base) + require.Equal(t, "45678", id) +} + +func TestProvider_generateTargetURL(t *testing.T) { + t.Skip() + val := generateTargetURL("https://api.hipchat.com/v2/", "12345") + require.Equal(t, "https://api.hipchat.com/v2/room/12345", val) + val = generateTargetURL("https://hipchat.acme.com/v2/", "45678") + require.Equal(t, "https://hipchat.acme.com/v2/room/45678", val) +} diff --git a/notifiers/slack/slack.go b/notifiers/slack/slack.go new file mode 100644 index 00000000..19fa56e1 --- /dev/null +++ b/notifiers/slack/slack.go @@ -0,0 +1,212 @@ +// Package slack implements notifications for Slack. +package slack + +import ( + "fmt" + "math" + "time" + + "github.com/nlopes/slack" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/notify" +) + +const typ = notify.DestType("slack") + +func init() { + notify.RegisterProvider(typ, &provider{}) +} + +type notifier struct { + dest notify.Destination + api *slack.Client + channel *slack.Channel + // threads maps Job IDs to slack timestamps/threads + threads map[string]string +} + +func (n *notifier) Send(msg notify.Message) error { + _, err := n.getChannel() + if err != nil { + return err + } + + // threadTS holds the slack thread timestamp. + var threadTS string + + params := slack.PostMessageParameters{} + + params.AsUser = false + params.Username = "sq bot" + + if msg.Job != nil { + // let's check if there's already a thread for this Job ID + var ok bool + threadTS, ok = n.threads[msg.Job.ID] + if ok { + // there's already a thread associated with this Job ID; mark the params to indicate this + params.ThreadTimestamp = threadTS + } + + att := slack.Attachment{} + + if msg.Text == "" { + params.Markdown = true + att.Pretext = "Job " + string(msg.Job.State) + } + + att.MarkdownIn = []string{"fields", "pretext"} + + switch msg.Job.State { + case notify.Completed: + att.Color = "good" + case notify.Failed: + att.Color = "danger" + } + + var started string + var duration string + + if msg.Job.Started == nil { + started = "-" + } else { + started = fmt.Sprintf("", msg.Job.Started.Unix(), msg.Job.Started.Format(time.RFC3339)) + } + + if msg.Job.Ended == nil { + duration = "-" + } else { + duration = msg.Job.Ended.Sub(*msg.Job.Started).String() + } + + att.Fields = []slack.AttachmentField{ + {Title: "Job ID", Value: fmt.Sprintf("`%s`", msg.Job.ID), Short: true}, + {Title: "State", Value: string(msg.Job.State), Short: true}, + {Title: "Query", Value: fmt.Sprintf("```%s```", msg.Job.Stmt)}, + {Title: "Started", Value: started, Short: true}, + {Title: "Duration", Value: duration, Short: true}, + } + + params.Attachments = append(params.Attachments, att) + + } + + _, ts, err := n.api.PostMessage(n.channel.ID, msg.Text, params) + if err != nil { + return errz.Errorf( + "error sending message to Slack channel %q (%q): %v", + n.channel.Name, + n.dest.Label, + err) + } + + if msg.Job != nil { + // if threadTS is empty, then this msg is the first in this thread + if threadTS == "" { + // associate the timestamp with the Job ID + n.threads[msg.Job.ID] = ts + } + } + + return nil +} + +func (n *notifier) getChannel() (*slack.Channel, error) { + + if n.channel != nil { + return n.channel, nil + } + + channels, err := n.api.GetChannels(true) + if err != nil { + return nil, errz.Err(err) + } + + for _, c := range channels { + if c.ID == n.dest.Target { + n.channel = &c + return n.channel, nil + } + } + + return nil, errz.Errorf("did not find Slack channel [%s] for notification destination %q", n.dest.Target, n.dest.Label) +} + +func getChannel(channelName string, token string) (*slack.Channel, error) { + + api := slack.New(token) + channels, err := api.GetChannels(true) + if err != nil { + return nil, errz.Err(err) + } + for _, c := range channels { + + if c.Name == channelName { + return &c, nil + } + } + + return nil, errz.Errorf("did not find Slack channel %q", channelName) + +} + +type provider struct { +} + +func (p *provider) Destination( + typ notify.DestType, + target string, + label string, + credentials string, + labelAvailable func(label string) bool) (*notify.Destination, error) { + + if typ != typ { + return nil, errz.Errorf("unsupported destination type %q", typ) + } + + api := slack.New(credentials) + team, err := api.GetTeamInfo() + if err != nil { + return nil, errz.Err(err) + } + + channel, err := getChannel(target, credentials) + if err != nil { + return nil, err + } + + dest := ¬ify.Destination{Type: typ, Target: channel.ID, Label: label, Credentials: credentials} + if dest.Label == "" { + // need to generate the handle + h := fmt.Sprintf("%s_%s", team.Name, target) + if labelAvailable(h) { + dest.Label = h + return dest, nil + } + + for i := 1; i < math.MaxInt32; i++ { + h = fmt.Sprintf("%s_%s_%d", team.Name, target, i) + if labelAvailable(h) { + dest.Label = h + return dest, nil + } + } + + return nil, errz.Errorf("unable to suggest handle for %q notification destination %q", typ, target) + } + + err = notify.ValidHandle(label) + if err != nil { + return nil, err + } + + return dest, nil +} + +func (p *provider) Notifier(dest notify.Destination) (notify.Notifier, error) { + if dest.Type != typ { + return nil, errz.Errorf("unsupported destination type %q", dest.Type) + } + return ¬ifier{dest: dest, api: slack.New(dest.Credentials), threads: make(map[string]string)}, nil +} diff --git a/notifiers/slack/slack_test.go b/notifiers/slack/slack_test.go new file mode 100644 index 00000000..6e2634b4 --- /dev/null +++ b/notifiers/slack/slack_test.go @@ -0,0 +1,70 @@ +package slack + +import ( + "testing" + + "fmt" + "time" + + "github.com/nlopes/slack" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/libsq/errz" + "github.com/neilotoole/sq/libsq/notify" +) + +func TestNotifier_Send(t *testing.T) { + t.Skip() + p := &provider{} + d := newTestDestination(t, p) + n, err := p.Notifier(*d) + require.Nil(t, err) + slackNotifier, ok := n.(*notifier) + require.True(t, ok) + + text := fmt.Sprintf("hello world @ %d", time.Now().Unix()) + err = slackNotifier.Send(message(text)) + require.Nil(t, err) + + slackMsg, err := getLatestMessage(slackNotifier) + require.Nil(t, err) + require.Equal(t, text, slackMsg.Text) +} + +func message(text string) notify.Message { + return notify.Message{Text: text} +} + +func newTestDestination(t *testing.T, p *provider) *notify.Destination { + + available := func(handle string) bool { + return true + } + dest, err := p.Destination( + typ, + "notifier-test", + "", + "xoxp-89252929845-89246861280-181096637445-5978e0477c04316bcf348795fc911b8a", + available) + require.Nil(t, err) + return dest +} + +func getLatestMessage(n *notifier) (*slack.Message, error) { + channel, err := n.getChannel() + if err != nil { + return nil, err + } + + historyParams := slack.HistoryParameters{} + + history, err := n.api.GetChannelHistory(channel.ID, historyParams) + if err != nil { + return nil, errz.Err(err) + } + + if len(history.Messages) == 0 { + return nil, errz.Errorf("no messages in history for channel %q", n.dest.Label) + } + return &history.Messages[len(history.Messages)-1], nil +} diff --git a/test.sh b/test.sh deleted file mode 100755 index fed160cf..00000000 --- a/test.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -docker build -t sq-build . -docker run --rm -v "${PWD}":/go/src/github.com/neilotoole/sq sq-build bash -c "make test" diff --git a/test/csv/user_comma_header.csv b/test/csv/user_comma_header.csv deleted file mode 100644 index 72a1531b..00000000 --- a/test/csv/user_comma_header.csv +++ /dev/null @@ -1,8 +0,0 @@ -uid,username,email -1,neilotoole,neilotoole@apache.org -2,ksoze,kaiser@soze.org -3,kubla,kubla@khan.mn -4,tesla,nikola@tesla.rs -5,augustus,augustus@caesar.org -6,julius,julius@caesar.org -7,plato,plato@athens.gr diff --git a/test/csv/user_comma_noheader.csv b/test/csv/user_comma_noheader.csv deleted file mode 100644 index a9c583e5..00000000 --- a/test/csv/user_comma_noheader.csv +++ /dev/null @@ -1,7 +0,0 @@ -1,neilotoole,neilotoole@apache.org -2,ksoze,kaiser@soze.org -3,kubla,kubla@khan.mn -4,tesla,nikola@tesla.rs -5,augustus,augustus@caesar.org -6,julius,julius@caesar.org -7,plato,plato@athens.gr diff --git a/test/csv/user_header.tsv b/test/csv/user_header.tsv deleted file mode 100644 index 95bff9ad..00000000 --- a/test/csv/user_header.tsv +++ /dev/null @@ -1 +0,0 @@ -uid username email 1 neilotoole neilotoole@apache.org 2 ksoze kaiser@soze.org 3 kubla kubla@khan.mn 4 tesla nikola@tesla.rs 5 augustus augustus@caesar.org 6 julius julius@caesar.org 7 plato plato@athens.gr \ No newline at end of file diff --git a/test/csv/user_noheader.tsv b/test/csv/user_noheader.tsv deleted file mode 100644 index 77ff318c..00000000 --- a/test/csv/user_noheader.tsv +++ /dev/null @@ -1 +0,0 @@ -1 neilotoole neilotoole@apache.org 2 ksoze kaiser@soze.org 3 kubla kubla@khan.mn 4 tesla nikola@tesla.rs 5 augustus augustus@caesar.org 6 julius julius@caesar.org 7 plato plato@athens.gr \ No newline at end of file diff --git a/test/csv/user_pipe_header.csv b/test/csv/user_pipe_header.csv deleted file mode 100644 index 15a67ba1..00000000 --- a/test/csv/user_pipe_header.csv +++ /dev/null @@ -1,8 +0,0 @@ -uid|username|email -1|neilotoole|neilotoole@apache.org -2|ksoze|kaiser@soze.org -3|kubla|kubla@khan.mn -4|tesla|nikola@tesla.rs -5|augustus|augustus@caesar.org -6|julius|julius@caesar.org -7|plato|plato@athens.gr diff --git a/test/csv/user_semicolon_header.csv b/test/csv/user_semicolon_header.csv deleted file mode 100644 index 464af23a..00000000 --- a/test/csv/user_semicolon_header.csv +++ /dev/null @@ -1,8 +0,0 @@ -uid;username;email -1;neilotoole;neilotoole@apache.org -2;ksoze;kaiser@soze.org -3;kubla;kubla@khan.mn -4;tesla;nikola@tesla.rs -5;augustus;augustus@caesar.org -6;julius;julius@caesar.org -7;plato;plato@athens.gr diff --git a/test/gotestutil/testutil.go b/test/gotestutil/testutil.go deleted file mode 100644 index 9804a4a8..00000000 --- a/test/gotestutil/testutil.go +++ /dev/null @@ -1,49 +0,0 @@ -// Package gotestutil should be imported (as the first import, using _) by all -// sq test files so that logging and config are directed to appropriate files -// instead of using the default files. -package gotestutil - -import ( - "fmt" - "os" - "path/filepath" - - "github.com/mitchellh/go-homedir" - "github.com/neilotoole/go-lg/lg" -) - -func init() { - fmt.Println("gotestutil init()") - - cfgDir := configDir() - path := filepath.Join(cfgDir, "sq.test.log") - - parent := filepath.Dir(path) - err := os.MkdirAll(parent, os.ModePerm) - if err != nil { - panic(fmt.Sprintf("unable to create parent dir for test log file path %q: %v", path, err)) - return - } - - logFile, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0666) - if err != nil { - panic(fmt.Sprintf(" unable to initialize test log file %q: %v", path, err)) - } - - fmt.Printf("using test log file: %v\n", logFile.Name()) - - lg.Use(logFile) - -} - -// configDir returns the absolute path of "~/.sq/". -func configDir() string { - - home, err := homedir.Dir() - if err != nil { - fmt.Fprintf(os.Stderr, "unable to get user homedir: %v", err) - os.Exit(1) - } - - return filepath.Join(home, ".sq") -} diff --git a/test/mysql/sqtest1.sql b/test/mysql/sqtest1.sql deleted file mode 100644 index 787f34b6..00000000 --- a/test/mysql/sqtest1.sql +++ /dev/null @@ -1,122 +0,0 @@ -CREATE TABLE tbluser -( - uid INT(11) PRIMARY KEY NOT NULL AUTO_INCREMENT, - username VARCHAR(64) NOT NULL, - email VARCHAR(128) NOT NULL -); -CREATE UNIQUE INDEX tbluser_uid_uindex ON tbluser (uid); -CREATE UNIQUE INDEX tbluser_username_uindex ON tbluser (username); -CREATE TABLE tbladdress -( - address_id INT(11) PRIMARY KEY NOT NULL AUTO_INCREMENT, - street VARCHAR(255) NOT NULL, - city VARCHAR(255) NOT NULL, - state VARCHAR(255) NOT NULL, - zip VARCHAR(255), - country VARCHAR(255) NOT NULL, - uid INT(11) NOT NULL, - CONSTRAINT tbladdress_tbluser_uid_fk FOREIGN KEY (uid) REFERENCES tbluser (uid) -); -CREATE UNIQUE INDEX tbladdress_address_id_uindex ON tbladdress (address_id); -CREATE INDEX tbladdress_tbluser_uid_fk ON tbladdress (uid); -CREATE TABLE tblitem -( - item_id INT(11) PRIMARY KEY NOT NULL AUTO_INCREMENT, - name VARCHAR(255) NOT NULL, - price FLOAT NOT NULL -); -CREATE UNIQUE INDEX tblitem_iid_uindex ON tblitem (item_id); -CREATE UNIQUE INDEX tblitem_name_uindex ON tblitem (name); -CREATE TABLE `tblorder` -( - oid INT(11) PRIMARY KEY NOT NULL AUTO_INCREMENT, - uid INT(11) NOT NULL, - item_id INT(11) NOT NULL, - quantity INT(11) NOT NULL, - CONSTRAINT tblorder_tbluser_uid_fk FOREIGN KEY (uid) REFERENCES tbluser (uid), - CONSTRAINT tblorder_tblitem_iid_fk FOREIGN KEY (item_id) REFERENCES tblitem (item_id) -); -CREATE INDEX tblorder_tblitem_iid_fk ON `tblorder` (item_id); -CREATE UNIQUE INDEX tblorder_oid_uindex ON `tblorder` (oid); -CREATE INDEX tblorder_tbluser_uid_fk ON `tblorder` (uid); - -CREATE TABLE tblall -( - col_id INT(11) PRIMARY KEY NOT NULL AUTO_INCREMENT, - col_int INT(11) NOT NULL, - col_int_n INT(11), - col_bool TINYINT(1) NOT NULL, - col_bool_n TINYINT(1), - col_decimal DECIMAL(10) NOT NULL, - col_decimal_n DECIMAL(10), - col_tiny TINYINT(4) NOT NULL, - col_tiny_n TINYINT(4), - col_short SMALLINT(6) NOT NULL, - col_short_n SMALLINT(6), - col_long MEDIUMTEXT NOT NULL, - col_long_n MEDIUMTEXT, - col_float FLOAT NOT NULL, - col_float_n FLOAT, - col_double DOUBLE NOT NULL, - col_double_n DOUBLE, - col_timestamp TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, - col_timestamp_n TIMESTAMP NULL, - col_longlong MEDIUMTEXT NOT NULL, - col_longlong_n MEDIUMTEXT, - col_int24 INT(24) NOT NULL, - col_int24_n INT(24), - col_date DATE NOT NULL, - col_date_n DATE, - col_time TIME NOT NULL, - col_time_n TIME, - col_datetime DATETIME NOT NULL, - col_datetime_n DATETIME, - col_year YEAR(4) NOT NULL, - col_year_n YEAR(4), - col_varchar VARCHAR(255) NOT NULL, - col_varchar_n VARCHAR(255), - col_json JSON NOT NULL, - col_json_n JSON, - col_enum ENUM('a', 'b', 'c') NOT NULL, - col_enum_n ENUM('a', 'b', 'c'), - col_binary BINARY(8) NOT NULL, - col_binary_n BINARY(8), - col_varbinary VARBINARY(64) NOT NULL, - col_varbinary_n VARBINARY(64), - col_blob BLOB NOT NULL, - col_blob_n BLOB, - col_tinyblob TINYBLOB NOT NULL, - col_tinyblob_n TINYBLOB, - col_mediumblob MEDIUMBLOB NOT NULL, - col_mediumblob_n MEDIUMBLOB, - col_longblob LONGBLOB NOT NULL, - col_longblob_n LONGBLOB, - col_text TEXT NOT NULL, - col_text_n TEXT, - col_longtext LONGTEXT NOT NULL, - col_longtext_n LONGTEXT -); -CREATE UNIQUE INDEX tbl_all_types_col_id_uindex ON tblall (col_id); - -INSERT INTO sqtest1.tbluser (username, email) VALUES ('neilotoole', 'neilotoole@apache.org'); -INSERT INTO sqtest1.tbluser (username, email) VALUES ('ksoze', 'kaiser@soze.org'); -INSERT INTO sqtest1.tbluser (username, email) VALUES ('kubla', 'kubla@khan.mn'); -INSERT INTO sqtest1.tbluser (username, email) VALUES ('tesla', 'nikola@tesla.rs'); -INSERT INTO sqtest1.tbluser (username, email) VALUES ('augustus', 'augustus@caesar.org'); -INSERT INTO sqtest1.tbluser (username, email) VALUES ('julius', 'julius@caesar.org'); -INSERT INTO sqtest1.tbluser (username, email) VALUES ('plato', 'plato@athens.gr'); - -INSERT INTO sqtest1.tbladdress (street, city, state, zip, country, uid) VALUES ('1600 Penn', 'Washington', 'DC', '12345', 'US', 2); -INSERT INTO sqtest1.tbladdress (street, city, state, zip, country, uid) VALUES ('999 Coleridge St', 'Ulan Bator', 'UB', '888', 'MN', 3); - -INSERT INTO sqtest1.tblitem (name, price) VALUES ('Pantablack', 1000); -INSERT INTO sqtest1.tblitem (name, price) VALUES ('Unobtanium', 2000); -INSERT INTO sqtest1.tblitem (name, price) VALUES ('Plutonium', 1499.99); - -INSERT INTO sqtest1.`tblorder` (uid, item_id, quantity) VALUES (1, 1, 7); -INSERT INTO sqtest1.`tblorder` (uid, item_id, quantity) VALUES (2, 1, 11); -INSERT INTO sqtest1.`tblorder` (uid, item_id, quantity) VALUES (1, 3, 2); -INSERT INTO sqtest1.`tblorder` (uid, item_id, quantity) VALUES (3, 2, 22); - -INSERT INTO sqtest1.tblall (col_int, col_int_n, col_bool, col_bool_n, col_decimal, col_decimal_n, col_tiny, col_tiny_n, col_short, col_short_n, col_long, col_long_n, col_float, col_float_n, col_double, col_double_n, col_timestamp, col_timestamp_n, col_longlong, col_longlong_n, col_int24, col_int24_n, col_date, col_date_n, col_time, col_time_n, col_datetime, col_datetime_n, col_year, col_year_n, col_varchar, col_varchar_n, col_json, col_json_n, col_enum, col_enum_n, col_binary, col_binary_n, col_varbinary, col_varbinary_n, col_blob, col_blob_n, col_tinyblob, col_tinyblob_n, col_mediumblob, col_mediumblob_n, col_longblob, col_longblob_n, col_text, col_text_n, col_longtext, col_longtext_n) VALUES (7, 7, 0, 1, 7, 7, 7, 7, 7, 7, '7', '7', 7.7, 7.7, 7.7, 7.7, '2016-07-31 13:14:45', '2016-07-31 13:14:51', '77', '77', 77, 77, '2016-07-31', '2016-07-31', '13:14:15', '13:14:15', '2016-07-31 13:15:55', '2016-07-31 13:16:00', 2016, 2016, 'hello world', 'hello world', '{"lastName": "Smith", "firstName": "John"}', '{"lastName": "Smith", "firstName": "John"}', 'a', 'a', 0x3132330000000000, 0x3132330000000000, 123, 123, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 123, 123, 123, 123, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, 'hello world', 'hello world', 'hello world', 'hello world'); -INSERT INTO sqtest1.tblall (col_int, col_int_n, col_bool, col_bool_n, col_decimal, col_decimal_n, col_tiny, col_tiny_n, col_short, col_short_n, col_long, col_long_n, col_float, col_float_n, col_double, col_double_n, col_timestamp, col_timestamp_n, col_longlong, col_longlong_n, col_int24, col_int24_n, col_date, col_date_n, col_time, col_time_n, col_datetime, col_datetime_n, col_year, col_year_n, col_varchar, col_varchar_n, col_json, col_json_n, col_enum, col_enum_n, col_binary, col_binary_n, col_varbinary, col_varbinary_n, col_blob, col_blob_n, col_tinyblob, col_tinyblob_n, col_mediumblob, col_mediumblob_n, col_longblob, col_longblob_n, col_text, col_text_n, col_longtext, col_longtext_n) VALUES (7, null, 1, null, 7, null, 7, null, 7, null, '7', null, 7.7, null, 7.7, null, '2016-07-31 13:14:45', null, '77', null, 77, null, '2016-07-31', null, '13:14:15', null, '2016-07-31 13:15:55', null, 2016, null, 'hello world', null, '{"lastName": "Smith", "firstName": "John"}', null, 'a', null, 0x3132330000000000, null, 123, null, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, null, 123, null, 123, null, 0x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B, null, 'hello world', null, 'hello world', null); \ No newline at end of file diff --git a/test/mysql/start.sh b/test/mysql/start.sh deleted file mode 100755 index 7fb41276..00000000 --- a/test/mysql/start.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash - -docker run -p 3306:3306 -v `pwd`/sqtest1.sql:/docker-entrypoint-initdb.d/sqtest1.sql --restart=unless-stopped --name sq-mysql -e MYSQL_ROOT_PASSWORD=root -e MYSQL_USER=sq -e MYSQL_PASSWORD=sq -e MYSQL_DATABASE=sqtest1 -d mysql:5.7 \ No newline at end of file diff --git a/test/postgres/sqtest1.sql b/test/postgres/sqtest1.sql deleted file mode 100644 index 03ab4bd1..00000000 --- a/test/postgres/sqtest1.sql +++ /dev/null @@ -1,47 +0,0 @@ - -CREATE TABLE tblall -( - col_id INTEGER PRIMARY KEY NOT NULL, - col_int INTEGER NOT NULL, - col_int_n INTEGER, - col_varchar VARCHAR(255) NOT NULL, - col_varchar_n VARCHAR(255), - col_blob BYTEA, - col_blob_n BYTEA -); -CREATE UNIQUE INDEX tblall_col_id_uindex ON tblall (col_id); -CREATE TABLE tbluser -( - uid INTEGER PRIMARY KEY NOT NULL, - username VARCHAR(255) NOT NULL, - email VARCHAR(255) NOT NULL -); -CREATE UNIQUE INDEX tbluser_uid_uindex ON tbluser (uid); -CREATE UNIQUE INDEX tbluser_username_uindex ON tbluser (username); -CREATE TABLE tbladdress -( - address_id INTEGER PRIMARY KEY NOT NULL, - street VARCHAR(255) NOT NULL, - city VARCHAR(255) NOT NULL, - state VARCHAR(255) NOT NULL, - zip VARCHAR(255), - country VARCHAR(255) NOT NULL, - uid INTEGER, - CONSTRAINT tbladdress_user_uid_fk FOREIGN KEY (uid) REFERENCES tbluser (uid) -); -CREATE UNIQUE INDEX tbladdress_address_id_uindex ON tbladdress (address_id); - -INSERT INTO public.tblall (col_id, col_int, col_int_n, col_varchar, col_varchar_n, col_blob, col_blob_n) VALUES (2, 7, null, 'hello world', null, E'\\x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B', null); -INSERT INTO public.tblall (col_id, col_int, col_int_n, col_varchar, col_varchar_n, col_blob, col_blob_n) VALUES (1, 7, 7, 'hello world', 'hello world', E'\\x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B', E'\\x474946383761F600C200C400000000000D2828A0280FA12810EA3F1CA87857A87858EE837A828F8F82908F839090DFA887E0A888E5D7CFE5D8D0FCF5F1F7F7F7FFFFFF00000000000000000000000000000000000000000000000000000000000000000000000000000000000021F904093200120021FF0B4943435247424731303132FF00000C484C696E6F021000006D6E74725247422058595A2007CE00020009000600310000616373704D5346540000000049454320735247420000000000000000000000000000F6D6000100000000D32D4850202000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001163707274000001500000003364657363000001840000006C77747074000001F000000014626B707400000204000000147258595A00000218000000146758595A0000022C000000146258595A0000024000000014646D6E640000025400000070646D6464000002C400000088767565640000034C00000086766965FF77000003D4000000246C756D69000003F8000000146D6561730000040C0000002474656368000004300000000C725452430000043C0000080C675452430000043C0000080C625452430000043C0000080C7465787400000000436F70797269676874202863292031393938204865776C6574742D5061636B61726420436F6D70616E790000646573630000000000000012735247422049454336313936362D322E31000000000000000000000012735247422049454336313936362D322E31000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000058595A20000000000000F3510001FF0000000116CC58595A200000000000000000000000000000000058595A200000000000006FA2000038F50000039058595A2000000000000062990000B785000018DA58595A2000000000000024A000000F840000B6CF64657363000000000000001649454320687474703A2F2F7777772E6965632E636800000000000000000000001649454320687474703A2F2F7777772E6965632E63680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064657363000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D2073524742FF00000000000000000000002E4945432036313936362D322E312044656661756C742052474220636F6C6F7572207370616365202D20735247420000000000000000000000000000000000000000000064657363000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E3100000000000000000000002C5265666572656E63652056696577696E6720436F6E646974696F6E20696E2049454336313936362D322E31000000000000000000000000000000000000000000000000000076696577000000000013A4FE00145F2E0010CF140003EDCC0004130B00035C9E0000000158595A20FF00000000004C09560050000000571FE76D6561730000000000000001000000000000000000000000000000000000028F0000000273696720000000004352542063757276000000000000040000000005000A000F00140019001E00230028002D00320037003B00400045004A004F00540059005E00630068006D00720077007C00810086008B00900095009A009F00A400A900AE00B200B700BC00C100C600CB00D000D500DB00E000E500EB00F000F600FB01010107010D01130119011F0125012B01320138013E0145014C0152015901600167016E0175017C0183018B0192019A01A101A901B101B901C101C901D101D901E101E901F201FA0203020C02FF14021D0226022F02380241024B0254025D02670271027A0284028E029802A202AC02B602C102CB02D502E002EB02F50300030B03160321032D03380343034F035A03660372037E038A039603A203AE03BA03C703D303E003EC03F9040604130420042D043B0448045504630471047E048C049A04A804B604C404D304E104F004FE050D051C052B053A05490558056705770586059605A605B505C505D505E505F6060606160627063706480659066A067B068C069D06AF06C006D106E306F507070719072B073D074F076107740786079907AC07BF07D207E507F8080B081F08320846085A086E0882089608AA08BE08D208E708FB09100925093A094F0964FF0979098F09A409BA09CF09E509FB0A110A270A3D0A540A6A0A810A980AAE0AC50ADC0AF30B0B0B220B390B510B690B800B980BB00BC80BE10BF90C120C2A0C430C5C0C750C8E0CA70CC00CD90CF30D0D0D260D400D5A0D740D8E0DA90DC30DDE0DF80E130E2E0E490E640E7F0E9B0EB60ED20EEE0F090F250F410F5E0F7A0F960FB30FCF0FEC1009102610431061107E109B10B910D710F511131131114F116D118C11AA11C911E81207122612451264128412A312C312E31303132313431363138313A413C513E5140614271449146A148B14AD14CE14F01512153415561578159B15BD15E0160316261649166C168F16B216D616FA171D17411765178917FFAE17D217F7181B18401865188A18AF18D518FA19201945196B199119B719DD1A041A2A1A511A771A9E1AC51AEC1B141B3B1B631B8A1BB21BDA1C021C2A1C521C7B1CA31CCC1CF51D1E1D471D701D991DC31DEC1E161E401E6A1E941EBE1EE91F131F3E1F691F941FBF1FEA20152041206C209820C420F0211C2148217521A121CE21FB22272255228222AF22DD230A23382366239423C223F0241F244D247C24AB24DA250925382568259725C725F726272657268726B726E827182749277A27AB27DC280D283F287128A228D429062938296B299D29D02A022A352A682A9B2ACF2B022B362B692B9D2BD12C052C392C6E2CA22CD72D0C2D412D762DAB2DE1FF2E162E4C2E822EB72EEE2F242F5A2F912FC72FFE3035306C30A430DB3112314A318231BA31F2322A3263329B32D4330D3346337F33B833F1342B3465349E34D83513354D358735C235FD3637367236AE36E937243760379C37D738143850388C38C839053942397F39BC39F93A363A743AB23AEF3B2D3B6B3BAA3BE83C273C653CA43CE33D223D613DA13DE03E203E603EA03EE03F213F613FA23FE24023406440A640E74129416A41AC41EE4230427242B542F7433A437D43C044034447448A44CE45124555459A45DE4622466746AB46F04735477B47C04805484B489148D7491D496349A949F04A374A7D4AC44B0C4B534B9A4BE24C2A4C724CBA4D024DFF4A4D934DDC4E254E6E4EB74F004F494F934FDD5027507150BB51065150519B51E65231527C52C75313535F53AA53F65442548F54DB5528557555C2560F565C56A956F75744579257E0582F587D58CB591A596959B85A075A565AA65AF55B455B955BE55C355C865CD65D275D785DC95E1A5E6C5EBD5F0F5F615FB36005605760AA60FC614F61A261F56249629C62F06343639763EB6440649464E9653D659265E7663D669266E8673D679367E9683F689668EC6943699A69F16A486A9F6AF76B4F6BA76BFF6C576CAF6D086D606DB96E126E6B6EC46F1E6F786FD1702B708670E0713A719571F0724B72A67301735D73B87414747074CC7528758575E1763EFF769B76F8775677B37811786E78CC792A798979E77A467AA57B047B637BC27C217C817CE17D417DA17E017E627EC27F237F847FE5804780A8810A816B81CD8230829282F4835783BA841D848084E3854785AB860E867286D7873B879F8804886988CE8933899989FE8A648ACA8B308B968BFC8C638CCA8D318D988DFF8E668ECE8F368F9E9006906E90D6913F91A89211927A92E3934D93B69420948A94F4955F95C99634969F970A977597E0984C98B89924999099FC9A689AD59B429BAF9C1C9C899CF79D649DD29E409EAE9F1D9F8B9FFAA069A0D8A147A1B6A226A296A306A376A3E6A456A4C7A538A5A9A61AA68BA6FDA76EA7E0A852A8C4A937A9A9AAFF1CAA8FAB02AB75ABE9AC5CACD0AD44ADB8AE2DAEA1AF16AF8BB000B075B0EAB160B1D6B24BB2C2B338B3AEB425B49CB513B58AB601B679B6F0B768B7E0B859B8D1B94AB9C2BA3BBAB5BB2EBBA7BC21BC9BBD15BD8FBE0ABE84BEFFBF7ABFF5C070C0ECC167C1E3C25FC2DBC358C3D4C451C4CEC54BC5C8C646C6C3C741C7BFC83DC8BCC93AC9B9CA38CAB7CB36CBB6CC35CCB5CD35CDB5CE36CEB6CF37CFB8D039D0BAD13CD1BED23FD2C1D344D3C6D449D4CBD54ED5D1D655D6D8D75CD7E0D864D8E8D96CD9F1DA76DAFBDB80DC05DC8ADD10DD96DE1CDEA2DF29DFAFE036E0BDE144E1CCE253E2DBE363E3EBE473E4FCE584E60DE696E71FE7A9E832E8BC54E946E9D0EA5BEAE5EB70EBFBEC86ED11ED9CEE28EEB4EF40EFCCF058F0E5F172F1FFF28CF319F3A7F434F4C2F550F5DEF66DF6FBF78AF819F8A8F938F9C7FA57FAE7FB77FC07FC98FD29FDBAFE4BFEDCFF6DFFFF002C00000000F600C2000005FF60248E64699E68AAAE6CEBBE702CCF746DDF78AEEF7CEFFFC060509128228E0A6222994024158865340AAD3E97CF69B508157ABFE0B00C11289BCFE8B47ACD0E28C4F0B8FCAB68DBEFF8C47CCFEFD3C8788182667A7E8687882375838C776F89909171098D956C8F92999A3F8B969E66989BA2A3359D9F9EA1A4AAAB2BA6A79508ACB2B326AEAF8C85B4BAAC80B795B9BBC1A2B6BE81A9C2C83C57554E504E584746440A0704D6D7D8D9DADBDCDD04075CCE56CC4E47CD4FC9E925BD96DEEEEFF0D6A7C0EAC9949FF1F9FAD7A7C7F5C1C406ED1B08EF54AC7FE9D85522C8B09B4184E9020A6A4831DB3C88C92406AAC891C0458CC21436EA58B11F4861F73CFF91A468F2E42E8D7856366CE9929648463219D2AC290BE69D9C0477F20CD3C45C93A2549044C352A41AD0A7500F942BE70CC9B466E7920C8D715320D4AF401F6E7DD17522D8B324858E55E1D30EDAB7253FF95B7BA2EC46B878078AA5BB2265BBBC80E3EDE59BC26ECCC088BD7D249CA26D9BC490B7A9654CC2319BC898F9C9A5DCF854E6CC833957F6FC39F264D196D79436FD89DE502A59A434710A59C080DB036CE3BE4D02028408BF7F035FB1BB386ECC07C671610AD170E6E2BA73DF166E827A6FEB106E0BD01DDD36E836AE9339C71C5D7AF111BE7B0F0F6E7D84F1F203BEB339F80F6666F8DAA58B483FC3BCF1DCF2AD319730F661E61F740294D05EFF0BF9E1B6DD7198D9316030E345F6DF79FB2D989E6FD889A09D6DE57917611BF4D5E3971ACF5DF8A082E8ADC0E17B20DE16A01AE12153A08517E2769D0CBB85B8DD8C69D488925BE4E5681B8BC3B5C8DF7E1EFEC71D90680809109116C688DF82D525A9650407F618DF88F34174621ACF7597DF915A6299A587DCC508216B97884925644E3A78829AD565271D7E5FC2B986949A3C53D45152D0C6506E7C3A095F88D0A980270AD43DDA5B77893A68A4A5BA55945C34503471852463A2C1D17B3DB6992374BB65B824A42D2A18E996AD36C95D9DA71E382B47769488C88D0D31EA25A2B5AAA8A6701BCEF06A750FEE69E59996A2CA6C9F33B531E11EBC1EFA6BFF83A4CE4AAB7A4832A99EA4C4A2702A9F89267B26AED24A5261436756AA6297FEE519AEB7AEBE101C937A7E6826BCCF3A0BAD4E24AA3BA7B5D806FBACB6B8AD9A26B7ACD20BAE9BFE995B2EB0F8A11B6724D51204F1BB12E3B75D79ADDECBF0B1F4BAD86283E6BE0BE38516AFA1EB21190F446BB3FE628A210BF376BB5EAC5892FAAB9BE422D8B21A2F1B12F33E2A17AC74BB88267867C325337C67A45E42BCACBB0E3E38741A45FB71B43E49EF4973D851473D2C7A2203D79EC8CE225CF3B85BA331ED1CA19E31AAAD065F9B356F30E0A9B00B62FB4C29B07ABF19EDC590AC4B70DE338308F2AB6BAF9964874F97E0B3CD298F7D60DC67003AC7D7D78C3B40FF31A4976E7A1A36F7F84EAE92806E4DE01FDE76FAECB4BF72E9BF92A58BF1C0DBBC2D40EDC0072FC8B5D1AD1E70248AF76E2B77C237EF3CEA8B16EF8E84ADF3AE8DE0B23FAF7DF3CAFE673CE289247FBDC7B86D6F3EF09A1BCE0DF5C85B9F8DEFE7C77FBABF5A4F7F3C24AE13B0A87FF2F75F4CB0DF7319A8DC878D60F9EF80A75054A6EC17A6DD3DC61D2BD30E02275889A4059068027BA0370C48C10E062276CBC29D3658D73E0D76A370D9F3A00AD970BB0BA6616E7280C9DB4647C0D5D8707D7610DBAC6C43C2C4E5307684A3A1096F484487FCB05DC9EA61226488C29F14F189386C43A9826807CFC9C130552B8E13A1C845CDB421735A04CF00A5D8C4FF1A7671357728D8ACD887BF23F64B8897396317D3582B3686CF8DFB82A36AE4C8453A4E513776DCD511F3A84714F1118A77085A0A05E84016AA8887663CA49FD660254629519064545421C924C922D2318F90041F22B0A8C94D8AAA9344F423B92E79085276099091446560FCD8B640C22C81782BDF0A7789BACB995210308C8361D218B4DFF1F29865F8D8DE60E989AEF521356AB81D3291C9415454EF13BE72D0348F39B6E89CA60FC37423A9B6C94B6C99E99B7C08672637B61D72EEB29A9608261CA0D94BD8E9D29D1E8CDE6ED0492D5C2EED97F8949FE39CC5CF39A8D391BE0A654027A834E67DC299E9F467D694B9D00E66D13C05BDA2447F56510AFAFFD298D62CA127EAC4CC8EFAAF700AAD843C77B0052614E1A50F58000366BA0099CE94010B089E4D717AD39EC6AA0477B8E94E7B8AD3A112950177C899B78E4AD49C024FA646BDE903881085A3C006A27FB0034F993AD3E071D5A7521341509B4AD6AF22D50E661BC156A37AD6DA9955A6B6C4014CB62AD49E7A95A65C0DEB6FC6FAD59ABEF50E65536B5D7B0A57E099B5AB62EC41DDCC80D7B2DED5AC2CE06B53770AD5A1DA14B0EB59D05129EB54B71E969572D5AA50A18AD7C7DAD4AF7E75140424CBD6CD1215B3658300691B7BD3BB9EF6A855F4C15C997A5AAF9E36AA99C59758B56A54B6B616B31C62CF700EDB56DAF9F5ABA0BD8161063B58DF7296A7FF0B909464994BD7DAA2F551AEDDE963A17B3F9612D7ACE32D2BE59834D6D91617BDDF951C7509AB53DE7A57943980496B795A5FE33240B80ABAC37E695B54FAA2754B91626E7D09FBDCE6D248B7A2FDED6B9F3ADF9B0676B86D986F832DBB56D8AE37AA434D2F53A36B83DD12B6AEA6DD6C767F2A1C0173B5B8EF856DB7E88ADACB1AD6BE856583156360E2EEDE977615B670C3823AE0138FD6C16A60819127ECD91777564063A86A129202850770D7BF34A6ED7683BCE4FFAA2D4F5B2EEB7E3DBC360870D7BE88CDF05B7D7CD8A13EE01C9E8AB36BF47BE625DF96ABEDAD734D4FEBA8081019CD0CAE6E7CCB56564033990D057E7197093CE2C48E46CD766EFF70A19D8CE434307AAD64DD699FC30C68A322175622C8F4A2059D6110D7D5D4DC65E574B31CE8351B97B5A32EABE430CC863DDF59D1875E838B68FADCEB2E9AD38D1D30871BCBCA1EB3D9D7787DAF5D451B6B46CB74D67E66F6A92F8DDB03ABA0CBB355345F6FCD6B5CBBF6C76A38C6AA131DEB6157F8CF6DFE2AB7AC03EC3A7BF8A7E42EB0A9432CED6EAB78CD8DC6EF62CB90ECF07E9BCDB95643777F6B6EB0AE9BD66BB0F3952B8D0616B4F6E10656F386FB5A67FEEAEED188AE708D2B1EF18C031CDF6933C19FB9ED63CA32FC0C2C16ACA1255DDAF34EFAC4A89EB62D8DFD6F8E2F1BD2F85EB2CE10AE0692FB1BC5D64EC1C25B7D72C636FBE3BC15EFC5FF47B0EF00D4DCDED80638AC29CD5424116BBBC8866F1B947CE65733BBC8932EF8931F5C029A1B59D8381EBBC0C59C6E0688AC43ED067BD1CBD0E769637AE0A81570CCFB6DF2A717DBE5DEB6798E3DDE76E0A660AFD2467BBED9C0F59C337ACBEFBDB3CF693C733B18C00005C87C0130BFF9CD97FCE8834FF8C08F3ED3C8BD5DBEB72DB2513554B9F604FEB311BEF7A5A17A79CC73BEF69BFF7B1B2EDF79DB77BE00A03FFBDC9DDEF660DB14672BA8F8B021D7B7C9A6FDD4E8A6F6C36B4F7DEA1720B765B743E679CFF9CD63FEE985B6711BB26DF77F7B2B727A25B0DC8FAFB3909BC0F1D40D7DCF993B60EF57BFF7AAB6BCEF6D8F7BE9C75BCBF5F6741C066AFF0458325D675C08062E244071F28667B1D76FEA7762DD577DB5977FBB877BFC577BD8457A40377E86F6710B1056E7B73011A06C8A3654537361F7927A0C586D38D77544C57BF6B77D98674B86617D1468005C5659E42571D4F672A677364CF27F7DC772CF263592126A1CE769016873BD978115585E227083DE677FD4F779EEF6750C267729E702E40775E5F75FC72284D4B1819DB65953C771328881BC6783FAC77D347879E0575431566FAA775422982725B05605576868C37C95130148D7696A67692FF7830C308132E87D16C80638B888C0477458787319B75F13475438A07EEBE7657D766D2DE8737A776CE177533938818DB806195885B6D777AF076EFF6B07837848322408605C9669289821797802C5D7839578873EB68839684B4D777F565800927780858806AC8674B77878D0268A1AA769DD8225AFD2828B968C67E05EA87566DB378332887D24B004D2A00544D000AAF88491487FCE377CADA86EC6221C36D76F3B036DDC026368277EB5068BA7A68ABE97790EF0529E520E47210330C186F7B78638988E9466820CD86EF1485BCAA6741EF87F66A88E47C58F56687DE77879E0685E17A8793418926C687FB8C682BEE88A86088D31A778DB485790576E84488AB7D77BC54893FC4762A5A07D33A87918F87BDCF77D601794BC269184078110298915D96CE8665CA40563A73654DDF8931B39819DD7913A5090FF52799039D879F0F79023077EE41796F0E7902C67913725923E499518195737308C19798E3CB991AE367A0A476F2F68961A37882ED984821786B7B795B8F78451A8633E60183E19953C098718D85765598BFDE6905BA88FC1D65461267775269535399234C8963670833D9990A9C87D0F497579C797A4C7610C195590D99830C75589F9965BF97B56995FFA1792C50887887994E9B671BC287AAC39589CB5672088662FF99B73789671F8973B098506809334809519A996FDD88D4E768C510791ACE594C9669C001796DB267CC0699465A998A1B99CDFE8681EC906CB799B20797F87A89768868D66C09A128697888892CA987445689FD3F997FDB87FB6E79CFF3300136F1987FC38930A49915D496A841779DF0671EF99664579767D688FA4888E331998EDC991529803D180048392040DA0880769A055088B0CE98077698D11FA73F8790661C787B26767DEB8A1CA597D0E300D5326904E1043A7108638153C9F299806E98DFE59A0059A5EAAF95019E4096B163C440A9859999687498169D99C863560A1D14A3FAAA5C0A3918819981A099A568A90DCE75B6028A12A35464E3A7BC3F70AB1098C357A9BFC47A5EB695B14B9A546F3A374A9A6A7F3933D1995CA2998735AA7C1786341B6184BC4A7C4F9A5820A92DD68A7628A90BF67A41CDA64BDD9085845378C9AA9A673A596FA99656AA8909A9022E68296B063F3D4A9FF2A4A3B356A90522AAA069AA1F887A89E3A089BAA519F10A3501AA995AA956B78A0B0CA9CB967AB8FD71A4D6A090FEAA79F0A85550AA9E6C99C667A9BA7BA97CD94AC95F083F2E90B3449A7578A9B8FA888C28AA598DAAA6B1A095C601520DA045A88865F4AA9E38A912259A4951A8722C68497605556F00C2B8508C3D87DF5AA83A36852BE109CB305A66B28A0B4D074A16A7B8CF9A6049B67BC9988937A9E8489100519978AA86011CBAABF08A0D5A7B0B3E096C06A8C7C47891D9BADA3A699B7C79914529BD22AB0899AB24EFA853239ACE40A65180BB3E429B35D46B36DFA71D199812EBB0B9E598582E97740ABB20A0AA0DE28B2B270B4C4AA9020B6B4FF9580650C9098E23A9BF6A093862A9AB067B583109E5B85B397CA48F5A17D801A987909B1626B7493D6ADFC08B5ACF0AFFB1797366B716F1B086266536B6BAF4BA70E5481055B8000238A99BC276A2FBAB729F955934A830DE029551190B9BAB36D808EB079B7BD37896E0B642048AA8F5B8A391B6EA27102D069A5559A831C2B3FDE56B11A6AA49A47B75B41856B4BAA48BB7D86E63F83D8B3CE0A89011AB8A51B01041AAF442A9845E63F4546A8634AA6D707BCA53BBC2329AD3599BBFD53921A2ABDCB3BBA2F14BCD9B77B910AB2E08A7B96D8B9B3C35C8F1AA543ABBD72C3BD246098A22BACFCB8BAF1C35C77CBBB2C5BB484E199BD3B9DDF9B794F5ABDFFFFB6007F4B8C639A795C8B1A6F78BD59F988FFCBBA7D38AE62CA9EEA7B0695BB16FA4BAFE1FA7BF27B3EF49B8A848AB48189BF7CE1BEE14AA9F5EBA2C85B7FE589A46929C27441BBFD29BA8B1973BAAB7014EBB4B40AA8C58A5F3C3165B1210E4D07A7D129C1E4F9A8D3FAB55309AE182A9BB543B80249555D801007353B1A2BC3AE0B8C816AA2AF1B97E73BA8FD53C1AC404FA513AC085AA4988998189AA1038CC15439C1CE03C6AB10C4EF0AB2EBE9AC495C8A980BBB658A966EDC3CFDAA0A624C3A253CAF99F99F6A4CA28A99C4125C85FDA3AA75DB3FA07BBBBF9AB9B73BAC550CABC979A48D0C11815C0CB59B9CB33AABF54BACA49CC97B8C7BFDF3C768A430C57F5AA2A1CBC2A119CB984BC00969A35FDC1C905CA8A36CC5954CA2A6ACC3A3FCAB9B6CB9F103C25AFBAAD88BB361EA9F9A0B97212B3F8EBC0A9DEC0B00FBB5CA0CCA64ACC81FFCBA8FB87DC39CB6F2E3AD9A1BAB76BCA1820ABE466CCD7D2C3CAA1C032100003B'); - -INSERT INTO public.tbluser (uid, username, email) VALUES (1, 'neilotoole', 'neilotoole@apache.org'); -INSERT INTO public.tbluser (uid, username, email) VALUES (2, 'ksoze', 'kaiser@soze.org'); -INSERT INTO public.tbluser (uid, username, email) VALUES (3, 'kubla', 'kubla@khan.mn'); -INSERT INTO public.tbluser (uid, username, email) VALUES (4, 'tesla', 'nikola@tesla.rs'); -INSERT INTO public.tbluser (uid, username, email) VALUES (5, 'augustus', 'augustus@caesar.org'); -INSERT INTO public.tbluser (uid, username, email) VALUES (6, 'julius', 'julius@caesar.org'); -INSERT INTO public.tbluser (uid, username, email) VALUES (7, 'plato', 'plato@athens.gr'); - - -INSERT INTO public.tbladdress (address_id, street, city, state, zip, country, uid) VALUES (1, '1600 Penn', 'Washington', 'DC', '12345', 'US', 2); -INSERT INTO public.tbladdress (address_id, street, city, state, zip, country, uid) VALUES (2, '999 Coleridge St', 'Ulan Bator', 'UB', '888', 'MN', 3); \ No newline at end of file diff --git a/test/postgres/start.sh b/test/postgres/start.sh deleted file mode 100755 index 77fb9881..00000000 --- a/test/postgres/start.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -docker run -p 5432:5432 -v `pwd`/sqtest1.sql:/docker-entrypoint-initdb.d/sqtest1.sql --restart=unless-stopped --name sq-postgres -e POSTGRES_USER=sq -e POSTGRES_PASSWORD=sq -e POSTGRES_DB=sqtest1 -d postgres:9.5 - -# to connect using psql: -# psql -h localhost -d pqdb1 -U sq \ No newline at end of file diff --git a/test/smoke/smoke.sh b/test/smoke/smoke.sh deleted file mode 100755 index 16457091..00000000 --- a/test/smoke/smoke.sh +++ /dev/null @@ -1,154 +0,0 @@ -#!/usr/bin/env bash -# Very simplistic smoke test for sq, until we get comprehensive E2E testing in place. -# This is a basic test of functionality, not a comprehensive suite. -# This script should be executed via "make smoke" in the sq root dir. Data is -# stored in "$HOME/.sq/sq.smoke.log" and "$HOME/.sq/sq.smoke.yml" and those -# files are truncated before each run. -# - - - -export SQ_LOGFILE="$HOME/.sq/sq.smoke.log" -export SQ_CONFIGFILE="$HOME/.sq/sq.smoke.yml" -SQ_TEST_DS_MYSQL=${SQ_TEST_DS_MYSQL:='mysql://sq:sq@tcp(localhost:3306)/sqtest1'} -SQ_TEST_DS_POSTGRES=${SQ_TEST_DS_POSTGRES:='postgres://sq:sq@localhost/sqtest1?sslmode=disable'} - -echo ${SQ_TEST_DS_MYSQL} -echo ${SQ_TEST_DS_POSTGRES} - -cat /dev/null > ${SQ_LOGFILE} -cat /dev/null > ${SQ_CONFIGFILE} - -# Track the return codes for each command. At the end of the test run, if RES > 0, -# then we know there's an error. -RES=$((RES + $?)) -function trackResult() { - R=$? - -# RES=$((RES + R)) - - if [ ${R} -ne 0 ]; then - RES=$((RES + 1)) - >&2 printf "\n\e[1;97;41m BOLLIX \e[0m\n\n" - fi - -} - -sq add ${SQ_TEST_DS_MYSQL} @my1 ; trackResult -sq add ${SQ_TEST_DS_POSTGRES} @pg1 ; trackResult -sq add "sqlite3://`pwd`/test/sqlite/sqlite_db1" @sl1 ; trackResult - -sq add "`pwd`/test/xlsx/test_noheader.xlsx" @excel_noheader1 ; trackResult -sq add http://neilotoole.io/sq/test/test1.xlsx @excel_noheader2 ; trackResult -sq add "`pwd`/test/xlsx/test_header.xlsx" @excel_header1 --opts='header=true'; trackResult - - - -sq add "`pwd`/test/csv/user_comma_header.csv" @csv_user_comma_header1 --opts='header=true' ; trackResult -sq add "`pwd`/test/csv/user_comma_noheader.csv" @csv_user_comma_noheader1 ; trackResult -sq add "`pwd`/test/csv/user_pipe_header.csv" @csv_user_pipe_header1 --opts='header=true;delim=pipe' ; trackResult -sq add "`pwd`/test/csv/user_pipe_header.csv" @csv_user_pipe_header2 --opts='header=true;delim=|' ; trackResult -sq add "`pwd`/test/csv/user_semicolon_header.csv" @csv_user_semicolon_header1 --opts='header=true;delim=semi' ; trackResult -sq add "`pwd`/test/csv/user_header.tsv" @tsv_user_header1 --opts='header=true' ; trackResult -sq add "`pwd`/test/csv/user_noheader.tsv" @tsv_user_noheader1 ; trackResult - -echo "" -sq ls ; trackResult -echo "" -sq ping --all ; trackResult -echo "" -sq inspect -th @my1 ; trackResult -sq inspect -th @pg1 ; trackResult -sq inspect -th @excel_noheader1 ; trackResult -sq inspect -th @excel_noheader2 ; trackResult -sq inspect -th @excel_header1 ; trackResult -sq inspect -th @sl1 ; trackResult - -# inspect is not implemented for csv yet -#sq inspect -th @csv_comma_noheader1 ; trackResult - -echo "" - -# test some native sql -sq src @my1 ; trackResult -sq -jn 'SELECT * FROM tbluser' | jq -e '. | length == 7' ; trackResult -sq -jn 'SELECT * FROM tbluser' | jq -e '.[0] | length == 3' ; trackResult - -sq src @pg1 ; trackResult -sq -jn 'SELECT * FROM tbluser' | jq -e '. | length == 7' ; trackResult -sq -jn 'SELECT * FROM tbluser' | jq -e '.[0] | length == 3' ; trackResult - -# A loop might be useful below... -# Check that the returned JSON has 7 rows and 3 cols -sq src @csv_user_comma_header1 ; trackResult - -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - - -echo "" -sq src @csv_user_comma_noheader1 ; trackResult -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - -echo "" -sq src @csv_user_pipe_header1 ; trackResult -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - -echo "" -sq src @csv_user_semicolon_header1 ; trackResult -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - -echo "" -sq src @csv_user_pipe_header1 ; trackResult -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - -echo "" -sq src @csv_user_pipe_header2 ; trackResult -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - -echo "" -sq src @tsv_user_header1 ; trackResult -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - -echo "" -sq src @tsv_user_noheader1 ; trackResult -sq -j '.data' | jq -e '. | length == 7'; trackResult -sq -j '.data' | jq -e '.[0] | length == 3'; trackResult - - - -# test some joins - -sq -th '@my1.tbluser, @pg1.tbladdress | join(.uid) | .tbluser.uid, .email, .city, .country' ; trackResult -echo "" -sq '@excel_noheader1.user_sheet, @pg1.tbladdress | join(.A == .uid)' ; trackResult -echo "" -sq src @pg1 ; trackResult -sq src ; trackResult -sq src @my1 ; trackResult -sq -th '.tbluser' ; trackResult -sq -th '.tbluser | .[2:4]' ; trackResult -echo "" -sq rm @my1 ; trackResult -sq rm @pg1 ; trackResult -sq rm @excel_noheader1 ; trackResult -sq rm @excel_noheader2 ; trackResult -sq rm @excel_header1 ; trackResult -sq rm @sl1 ; trackResult - -echo -echo - -if [ ${RES} -eq 0 ]; then - printf "\n\e[1;97;42m G'MAN LADS \e[0m\n\n" - exit 0 -else - >&2 printf "\n\e[1;97;41m FOR FECK'S SAKE LADS \e[0m ${RES} failed, check log: ${SQ_LOGFILE}\n\n" - exit 1 -fi \ No newline at end of file diff --git a/test/sqlite/query.sql b/test/sqlite/query.sql deleted file mode 100644 index 89717681..00000000 --- a/test/sqlite/query.sql +++ /dev/null @@ -1 +0,0 @@ -select street, city from address NATURAL JOIN user \ No newline at end of file diff --git a/test/sqlite/sqlite_db1 b/test/sqlite/sqlite_db1 deleted file mode 100644 index d0d08b52..00000000 Binary files a/test/sqlite/sqlite_db1 and /dev/null differ diff --git a/test/testrunner/runner.go b/test/testrunner/runner.go deleted file mode 100644 index 41bffb2e..00000000 --- a/test/testrunner/runner.go +++ /dev/null @@ -1,105 +0,0 @@ -package main - -import ( - "github.com/neilotoole/gotils/testing" - - "path/filepath" - - "fmt" - "os" - - "github.com/mitchellh/go-homedir" - "github.com/neilotoole/go-lg/lg" - _ "github.com/neilotoole/sq/libsq/driver/impl" -) - -func main() { - //testing.Run(parser.TestScanner_Scan, parser.TestScanner_ScanString) - //testing.Run(parser.TestToken_equals, parser.TestToken_Includes) - //testing.Run(parser.TestParser_Parse) - //testing.Run(parser.TestParser_ParseError) - //testing.Run(parser.TestIsEven) - //testing.Run(parser.TestParse) - - //tests := []testing.Test{ - // token.TestScanner_Scan, - // token.TestScanner_ScanString, - // token.TestToken_equals, - // token.TestBuffer_IncludeExclude, - // token.TestNewBufferFromScanner, - // token.TestBuffer_CurserOps, - // token.TestBuffer_Until, - // parser.TestParser_Parse, - // parser.TestParser_ParseError, - // parser.TestIsEven, - //} - - //testing.Run(tests...) - // - //tests := []testing.Test{ - // //ir.TestIR_Build, - // ql.TestSegment, - // ql.TestTypes_IsNode, - // //ir.TestTypes_Actual, - // ql.TestToTreeString, - // ql.TestWalker, - // ql.TestChildIndex, - // ql.TestRowRange1, - // ql.TestRowRange2, - // ql.TestRowRange3, - // ql.TestRowRange4, - // ql.TestRowRange5, - // ql.TestRowRange6, - // ql.TestBuild2, - //} - tests := []testing.Test{ - ////ir.TestIR_Build, - //ql.TestSegment, - //ql.TestTypes_IsNode, - ////ir.TestTypes_Actual, - //ql.TestToTreeString, - //ql.TestWalker, - //ql.TestChildIndex, - //ql.TestRowRange1, - //ql.TestRowRange2, - //ql.TestRowRange3, - //ql.TestRowRange4, - //ql.TestRowRange5, - //ql.TestRowRange6, - query.TestBuild2, - //ql.TestInspector_findSegments, - query.TestInspector_findSelectableSegments, - } - - testing.Run("ql", tests...) - // - //tests = []testing.Test{ - // driver.TestDataSources, - // driver.TestSourceGetTypeFromRef, - // driver.TestSource_Driver, - // xslx.TestGenExcelColNames, - //} - // - //testing.Run("driver", tests...) - - //testing.Run(ir.TestSegment) -} - -func init() { - home, err := homedir.Dir() - if err != nil { - fmt.Fprintf(os.Stderr, "unable to get user homedir: %v", err) - os.Exit(1) - } - - path := filepath.Join(home, ".sq", "sq.log") - //os.Setenv("__LG_LOG_FILEPATH", path) - logFile, err := os.OpenFile(path, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666) - if err != nil { - fmt.Fprintf(os.Stderr, fmt.Sprintf("Error: unable to initialize log file: %v", err)) - os.Exit(1) - } - lg.Use(logFile) - - //lg.Exclude("github.com/neilotoole/sq/sq/ql") -} diff --git a/test/testrunner2/testrunner2.go b/test/testrunner2/testrunner2.go deleted file mode 100644 index 12528216..00000000 --- a/test/testrunner2/testrunner2.go +++ /dev/null @@ -1,174 +0,0 @@ -package main - -import ( - "fmt" - - "os" - - "io" - - "bytes" - "io/ioutil" - - "encoding/csv" - - "bufio" - - "github.com/neilotoole/sq/libsq/util" -) - -func main() { - - path := "/Users/neilotoole/nd/go/src/github.com/neilotoole/sq/test/csv/user_header.tsv" - - file, err := os.Open(path) - //_, err := os.Open(path) - util.OrPanic(err) - - //csv.NewReader(file) - // - //rd := bufio.NewReader(file) - ////rd := NewCRFilterReader(file) - //count := 0 - // - ////r2 := - // - //for { - // r, _, err := rd.ReadRune() - // if err == io.EOF { - // break - // } - // - // if err != nil { - // util.OrPanic(err) - // } - // - // if r == '\r' { - // fmt.Printf("-->%v\n", r) - // fmt.Printf(" %d: found a CR\n", count) - // } - // - // //fmt.Printf("%d: %s\n", count, string(r)) - // fmt.Printf("%s", string(r)) - // - // count++ - //} - // - //fmt.Printf("\ncount: %d\n", count) - // - //n := '\n' - //fmt.Printf("n: %v\n", n) - //bytes, err := ioutil.ReadFile(path) - //util.OrPanic(err) - ////ioutil.ReadFile() - // - //fmt.Println(bytes) - // - //fmt.Println("\n\n---\n\n") - //fmt.Println(string(bytes)) - // - //fmt.Println("doing it! \n\n\n") - // - crd := csv.NewReader(NewCRFilterReader(file)) - - for { - record, err := crd.Read() - if err == io.EOF { - break - } - util.OrPanic(err) - fmt.Println(record) - } - - fmt.Println("done with it! \n\n\n") - - text := "\ra\rb\r\nc\rd\n" - - fmt.Println([]byte(text)) - - rd := (NewCRFilterReader(bytes.NewReader([]byte(text)))) - - bytes, err := ioutil.ReadAll(rd) - - fmt.Println(bytes) - util.OrPanic(err) - fmt.Printf("\ndoing it again\n%s\nfinished\n", string(bytes)) - - bufio.NewReader() - -} - -type crFilterReader struct { - r io.Reader -} - -func (r *crFilterReader) Read(p []byte) (n int, err error) { - n, err = r.r.Read(p) - - for i := 0; i < n; i++ { - if p[i] == 13 { - if i+1 < n && p[i+1] == 10 { - continue // it's \r\n - } - // it's just \r by itself, replace - p[i] = 10 - } - } - - return n, err -} - -// NewCRFilterReader returns a new reader whose Read() method converts standalone -// carriage return '\r' bytes to newline '\n'. CRLF \r\n sequences are untouched. -// This is useful for reading from DOS format, e.g. a TSV file exported by -// Microsoft Excel. -func NewCRFilterReader(r io.Reader) io.Reader { - return &crFilterReader{r: r} -} - -// -//func (r *CRFilterReader) ReadRune() (rune, error) { -// -// r1, _, err := r.Reader.ReadRune() -// if r1 == '\r' { -// r1, _, err = r.Reader.ReadRune() -// if err == nil { -// if r1 != '\n' { -// -// r1 = '\n' -// } -// } -// r.UnreadRune() -// } -// -// return r1, err -//} -//type CRFilterReader struct { -// *bufio.Reader -//} -// -//func NewCRFilterReader(r io.Reader) io.Reader { -// -// //b := &bufio.Reader{} -// -// cr := &CRFilterReader{} -// cr.Reader = bufio.NewReader(r) -// return cr -//} -// -//func (r *CRFilterReader) ReadRune() (rune, error) { -// -// r1, _, err := r.Reader.ReadRune() -// if r1 == '\r' { -// r1, _, err = r.Reader.ReadRune() -// if err == nil { -// if r1 != '\n' { -// -// r1 = '\n' -// } -// } -// r.UnreadRune() -// } -// -// return r1, err -//} diff --git a/test/xlsx/test_header.xlsx b/test/xlsx/test_header.xlsx deleted file mode 100644 index 978d7a20..00000000 Binary files a/test/xlsx/test_header.xlsx and /dev/null differ diff --git a/test/xlsx/test_noheader.xlsx b/test/xlsx/test_noheader.xlsx deleted file mode 100644 index b027576f..00000000 Binary files a/test/xlsx/test_noheader.xlsx and /dev/null differ diff --git a/testh/fixt/fixt.go b/testh/fixt/fixt.go new file mode 100644 index 00000000..8ea44b64 --- /dev/null +++ b/testh/fixt/fixt.go @@ -0,0 +1,90 @@ +// Package fixt contains common test fixture values. +// It exists as its own package separate from testh mostly +// for semantic convenience. Broadly speaking, for any one +// database column, we want to test three values: the zero value, +// a non-zero value, and NULL (note that for some columns, e.g. +// primary key columns, NULL does not make sense). Thus for each +// value there is a ValueZ (zero) and Value (non-zero) item. +package fixt + +import ( + "time" + + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" +) + +// These consts are test fixtures for various data types. +const ( + Text string = "seven" + TextZ string = "" + Int int64 = 7 + IntZ int64 = 0 + Float float64 = 7.7 + FloatZ float64 = 0 + Decimal string = "77.77" + DecimalZ string = "0" + Money string = "77.77" + MoneyZ string = "0.00" + Bool bool = true + BoolZ bool = false + BitString string = "1001" + BitStringZ string = "0" + TimeOfDay string = "07:07:07" + TimeOfDayZ string = "00:00:00" + JSON string = `{"val": 7}` + JSONZ string = "{}" + EnumAlfa string = "alfa" + EnumBravo string = "bravo" + UUID string = "77777777-7777-7777-7777-777777777777" + UUIDZ string = "00000000-0000-0000-0000-000000000000" +) + +// These vars are text fixtures for various data types. +var ( + Bytes = []byte("seven") + BytesZ = []byte("") + Datetime = mustParseTime(time.RFC3339, "2017-07-07T07:07:07-00:00").UTC() + DatetimeZ = mustParseTime(time.RFC3339, "1989-11-09T00:00:00-00:00").UTC() + Date = mustParseTime(stringz.DateFormat, "2017-07-07").UTC() + DateZ = mustParseTime(stringz.DateFormat, "1989-11-09").UTC() +) + +func mustParseTime(layout, value string) time.Time { + t, err := time.ParseInLocation(layout, value, time.UTC) + if err != nil { + panic(err) + } + return t +} + +// ColNamePerKind returns a slice of column names, one column name for +// each kind (excepting KindUnknown and KindNull, unless withNull +// or withUnknown are set). If isIntBool is +// true, KindInt is returned for "col_bool", otherwise KindBool. +func ColNamePerKind(isIntBool bool, withNull bool, withUnknown bool) (colNames []string, kinds []sqlz.Kind) { + colNames = []string{"col_int", "col_float", "col_decimal", "col_bool", "col_text", "col_datetime", "col_date", "col_time", "col_bytes"} + kinds = []sqlz.Kind{sqlz.KindInt, sqlz.KindFloat, sqlz.KindDecimal, sqlz.KindBool, sqlz.KindText, sqlz.KindDatetime, sqlz.KindDate, sqlz.KindTime, sqlz.KindBytes} + + if isIntBool { + kinds[3] = sqlz.KindInt + } + + if withNull { + colNames = append(colNames, "col_null") + kinds = append(kinds, sqlz.KindNull) + } + if withUnknown { + colNames = append(colNames, "col_unknown") + kinds = append(kinds, sqlz.KindUnknown) + } + + return colNames, kinds +} + +// The gopher.gif image used for testing bytes. +const ( + GopherFilename = "gopher.gif" + GopherPath = "testh/fixt/testdata/gopher.gif" + GopherSize = 1788 // filesize in bytes +) diff --git a/testh/fixt/testdata/gopher.gif b/testh/fixt/testdata/gopher.gif new file mode 100644 index 00000000..1742dde3 Binary files /dev/null and b/testh/fixt/testdata/gopher.gif differ diff --git a/testh/proj/proj.go b/testh/proj/proj.go new file mode 100644 index 00000000..454789a9 --- /dev/null +++ b/testh/proj/proj.go @@ -0,0 +1,194 @@ +// Package proj contains test utilities for dealing with project +// paths and the like. The sq project dir is accessed via the +// Dir function. When proj's init function returns, certain envars +// such as SQ_ROOT are guaranteed to be set. Thus the following +// will work as expected: +// +// p := proj.Expand("${SQ_ROOT}/go.mod") +package proj + +import ( + "bufio" + "io/ioutil" + "os" + "path/filepath" +) + +const ( + // EnvRoot is the name of the envar holding the path of + // the sq project root. + EnvRoot = "SQ_ROOT" + + // EnvPassw is the name of the envar holding the standard + // password used for testing. + EnvPassw = "SQ_PASSW" + + // DefaultPassw is the default password used for testing. + DefaultPassw = "p_ssW0rd" + + EnvLogFile = "SQ_LOGFILE" +) + +var projDir string + +func init() { + envar, ok := os.LookupEnv(EnvPassw) + if !ok || envar == "" { + err := os.Setenv(EnvPassw, DefaultPassw) + if err != nil { + panic(err) + } + } + + var path string + envar, ok = os.LookupEnv(EnvRoot) + if !ok || envar == "" { + dir, err := os.Getwd() + if err != nil { + panic(err) + } + + for { + if isProjDir(dir) { + path = dir + break + } + + if os.IsPathSeparator(dir[len(dir)-1]) { + // per filepath.Dir contract, we're at the root + break + } + + dir = filepath.Dir(dir) + } + + if path == "" { + panic("unable to determine sq project dir") + } + + // If we get here, we've found the proj dir. + + // Set the env so that os.ExpandEnv etc can use the envar + err = os.Setenv(EnvRoot, path) + if err != nil { + panic(err) + } + + } else { + var err error + path, err = filepath.Abs(envar) + if err != nil { + panic(err) + } + + if !isProjDir(path) { + panic("envar " + EnvRoot + " does not appear to be sq project dir: " + envar) + } + } + + projDir = path +} + +// isProjDir returns true if dir contains a go.mod file +// containing sq's module declaration. Any io error panics. +func isProjDir(dir string) bool { + files, err := ioutil.ReadDir(dir) + if err != nil { + panic(err) + } + + var gotMatch bool + for _, fi := range files { + if fi.Name() == "go.mod" { + gotMatch = true + break + } + } + + if !gotMatch { + return false + } + + f, err := os.Open(filepath.Join(dir, "go.mod")) + if err != nil { + panic(err) + } + + gotMatch = false // reuse var + scanner := bufio.NewScanner(f) + for scanner.Scan() { + if scanner.Text() == `module github.com/neilotoole/sq` { + gotMatch = true + break + } + } + + err = f.Close() + if err != nil { + panic(err) + } + return gotMatch +} + +// Dir returns the absolute path to the root of the sq project, +// as set in envar EnvRoot or determined programmatically. +func Dir() string { + return projDir +} + +// Rel returns the relative path from the current +// working dir to path, where path is relative to the project dir. +// This is useful for accessing common test fixtures across +// packages. +func Rel(path string) string { + abs := filepath.Join(Dir(), path) + + cwd, err := os.Getwd() + if err != nil { + panic(err) + } + + relPath, err := filepath.Rel(cwd, abs) + if err != nil { + panic(err) + } + + return relPath +} + +// Abs returns the absolute path of projRelPath, +// where projRelPath is relative to the project dir. +func Abs(projRelPath string) string { + return filepath.Join(Dir(), projRelPath) +} + +// ReadFile is a convenience function for reading +// a file under the proj dir. It's equivalent to +// ioutil.ReadFile(proj.Abs(path)) but panics on any error. +func ReadFile(projRelPath string) []byte { + p := Abs(projRelPath) + d, err := ioutil.ReadFile(p) + if err != nil { + panic(err) + } + return d +} + +// Expand wraps os.ExpandEnv. This function is preferred +// as it ensures that envar SQ_ROOT is set (via +// proj's init function). +func Expand(s string) string { + return os.ExpandEnv(s) +} + +// Passw returns the password used for testing. +func Passw() string { + return os.Getenv(EnvPassw) +} + +// LogFile returns the path to sq's log file, as +// specified by EnvLogFile. If none set, the empty +// string is returned. +func LogFile() string { + return os.Getenv(EnvLogFile) +} diff --git a/testh/record.go b/testh/record.go new file mode 100644 index 00000000..7723a874 --- /dev/null +++ b/testh/record.go @@ -0,0 +1,219 @@ +package testh + +import ( + "fmt" + "reflect" + "sync" + "testing" + "time" + + "github.com/neilotoole/lg" + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/libsq/sqlz" +) + +// RecordSink is a testing impl of output.RecordWriter that +// captures invocations of that interface. +type RecordSink struct { + mu sync.Mutex + + // RecMeta holds the recMeta received via Open. + RecMeta sqlz.RecordMeta + + // Recs holds the records received via WriteRecords. + Recs []sqlz.Record + + // Closed tracks the times Close was invoked. + Closed []time.Time + + // Flushed tracks the times Flush was invoked. + Flushed []time.Time +} + +// Open implements libsq.RecordWriter. +func (r *RecordSink) Open(recMeta sqlz.RecordMeta) error { + r.mu.Lock() + defer r.mu.Unlock() + + r.RecMeta = recMeta + return nil +} + +// WriteRecords implements libsq.RecordWriter. +func (r *RecordSink) WriteRecords(recs []sqlz.Record) error { + r.mu.Lock() + defer r.mu.Unlock() + + r.Recs = append(r.Recs, recs...) + return nil +} + +// Flush implements libsq.RecordWriter. +func (r *RecordSink) Flush() error { + r.mu.Lock() + defer r.mu.Unlock() + r.Flushed = append(r.Flushed, time.Now()) + return nil +} + +// Close implements libsq.RecordWriter. +func (r *RecordSink) Close() error { + r.mu.Lock() + defer r.mu.Unlock() + r.Closed = append(r.Closed, time.Now()) + return nil +} + +var recSinkCache = map[string]*RecordSink{} +var recSinkMu sync.Mutex + +// RecordsFromTbl returns a cached copy of all records from handle.tbl. +// The function performs a "SELECT * FROM tbl" and caches (in a package +// variable) the returned recs and recMeta for subsequent calls. Thus +// if the underlying data source records are modified, the returned records +// may be inconsistent. +// +// This function effectively exists to speed up testing times. +func RecordsFromTbl(tb testing.TB, handle, tbl string) (recMeta sqlz.RecordMeta, recs []sqlz.Record) { + recSinkMu.Lock() + defer recSinkMu.Unlock() + + key := fmt.Sprintf("#rec_sink__%s__%s", handle, tbl) + sink, ok := recSinkCache[key] + if !ok { + th := New(tb) + th.Log = lg.Discard() + src := th.Source(handle) + var err error + sink, err = th.QuerySQL(src, "SELECT * FROM "+tbl) + require.NoError(tb, err) + recSinkCache[key] = sink + } + + // Make copies so that the caller can mutate their records + // without it affecting other callers + recMeta = make(sqlz.RecordMeta, len(sink.RecMeta)) + for i := range sink.RecMeta { + // Don't need to make a deep copy of each FieldMeta because + // the type is effectively immutable + recMeta[i] = sink.RecMeta[i] + } + + recs = CopyRecords(sink.Recs) + return recMeta, recs +} + +// NewRecordMeta builds a new RecordMeta instance for testing. +func NewRecordMeta(colNames []string, colKinds []sqlz.Kind) sqlz.RecordMeta { + recMeta := make(sqlz.RecordMeta, len(colNames)) + for i := range colNames { + kind := colKinds[i] + ct := &sqlz.ColumnTypeData{ + Name: colNames[i], + HasNullable: true, + Nullable: true, + DatabaseTypeName: sqlite3.DBTypeForKind(kind), + ScanType: KindScanType(kind), + Kind: kind, + } + + recMeta[i] = sqlz.NewFieldMeta(ct) + } + + return recMeta +} + +// KindScanType returns the default scan type for kind. The returned +// type is typically a sql.NullType. +func KindScanType(kind sqlz.Kind) reflect.Type { + switch kind { + default: + return sqlz.RTypeNullString + + case sqlz.KindText, sqlz.KindDecimal: + return sqlz.RTypeNullString + + case sqlz.KindInt: + return sqlz.RTypeNullInt64 + + case sqlz.KindBool: + return sqlz.RTypeNullBool + + case sqlz.KindFloat: + return sqlz.RTypeNullFloat64 + + case sqlz.KindBytes: + return sqlz.RTypeBytes + + case sqlz.KindDatetime: + return sqlz.RTypeNullTime + + case sqlz.KindDate: + return sqlz.RTypeNullTime + + case sqlz.KindTime: + return sqlz.RTypeNullTime + } +} + +// CopyRecords returns a deep copy of recs. +func CopyRecords(recs []sqlz.Record) []sqlz.Record { + if recs == nil { + return recs + } + + if len(recs) == 0 { + return []sqlz.Record{} + } + + r2 := make([]sqlz.Record, len(recs)) + for i := range recs { + r2[i] = CopyRecord(recs[i]) + } + return r2 +} + +// CopyRecord returns a deep copy of rec. +func CopyRecord(rec sqlz.Record) sqlz.Record { + if rec == nil { + return nil + } + + if len(rec) == 0 { + return sqlz.Record{} + } + + r2 := make(sqlz.Record, len(rec)) + for i := range rec { + val := rec[i] + switch val := val.(type) { + case nil: + continue + case *int64: + v := *val + r2[i] = &v + case *bool: + v := *val + r2[i] = &v + case *float64: + v := *val + r2[i] = &v + case *string: + v := *val + r2[i] = &v + case *[]byte: + b := make([]byte, len(*val)) + copy(b, *val) + r2[i] = &b + case *time.Time: + v := *val + r2[i] = &v + default: + panic(fmt.Sprintf("field [%d] has unacceptable record value type %T", i, val)) + } + } + + return r2 +} diff --git a/testh/sakila/sakila.go b/testh/sakila/sakila.go new file mode 100644 index 00000000..72499cd1 --- /dev/null +++ b/testh/sakila/sakila.go @@ -0,0 +1,107 @@ +// Package sakila holds test constants and such for the sakila test sources. +package sakila + +import ( + "github.com/neilotoole/sq/libsq/sqlz" +) + +// Sakila source handles. +const ( + XLSX = "@sakila_xlsx" + XLSXSubset = "@sakila_xlsx_subset" + XLSXNoHeader = "@sakila_xlsx_noheader" + CSVActor = "@sakila_csv_actor" + CSVActorHTTP = "@sakila_csv_actor_http" + CSVActorNoHeader = "@sakila_csv_actor_noheader" + TSVActor = "@sakila_tsv_actor" + TSVActorNoHeader = "@sakila_tsv_actor_noheader" + SL3 = "@sakila_sl3" + Pg9 = "@sakila_pg9" + Pg10 = "@sakila_pg10" + Pg11 = "@sakila_pg11" + Pg12 = "@sakila_pg12" + Pg = Pg12 + My56 = "@sakila_my56" + My57 = "@sakila_my57" + My8 = "@sakila_my8" + My = My8 + MS17 = "@sakila_ms17" + MS = MS17 +) + +// Collections of sakila source handles. +var ( + // All contains all the full sakila handles. It does not + // include monotable handles such as @sakila_csv_actor. + All = []string{SL3, Pg9, Pg10, Pg11, Pg12, My56, My57, My8, MS17, XLSX} + + // SQLAll contains all the sakila SQL handles. + SQLAll = []string{SL3, Pg9, Pg10, Pg11, Pg12, My56, My57, My8, MS17} + + // SQLLatest contains the handles for the latest + // version of each supported SQL database. This is provided + // in addition to SQLAll to enable quicker iterative testing + // during development. + SQLLatest = []string{SL3, Pg, My, MS} + + // PgAll contains the handles for all postgres versions. + PgAll = []string{Pg9, Pg10, Pg11, Pg12} + + // MyAll contains the handles for all MySQL versions. + MyAll = []string{My56, My57, My8} + + // MSAll contains the handles for all SQL Server versions. + MSAll = []string{MS17} + + // SQLAllExternal is the same as SQLAll, but only includes + // external (non-embedded) sources. That is, it excludes SL3. + SQLAllExternal = []string{Pg9, Pg10, Pg11, Pg12, My56, My57, My8, MS17} +) + +// Facts regarding the sakila database. +const ( + TblActor = "actor" + TblActorCount = 200 + TblFilm = "film" + TblFilmCount = 1000 + TblFilmActor = "film_actor" + TblFilmActorCount = 5462 + TblPayment = "payment" + TblPaymentCount = 16049 + + MillerEmail = "MARIA.MILLER@sakilacustomer.org" + MillerCustID = 7 + MillerAddrID = 11 + MillerCityID = 280 +) + +// Facts regarding the sakila database. +var ( + TblActorCols = []string{"actor_id", "first_name", "last_name", "last_update"} + TblActorColKinds = []sqlz.Kind{sqlz.KindInt, sqlz.KindText, sqlz.KindText, sqlz.KindDatetime} + TblFilmActorCols = []string{"actor_id", "film_id", "last_update"} + TblPaymentCols = []string{"payment_id", "customer_id", "staff_id", "rental_id", "amount", "payment_date", "last_update"} + AllTbls = []string{"actor", "address", "category", "city", "country", "customer", "film", "film_actor", "film_category", "film_text", "inventory", "language", "payment", "rental", "staff", "store"} + + // AllTblsExceptFilmText exists because our current postgres image is different + // from the others in that it doesn't have the film_text table. + // FIXME: delete AllTblsExceptFilmText when postgres image is updated to include film_text. + AllTblsExceptFilmText = []string{"actor", "address", "category", "city", "country", "customer", "film", "film_actor", "film_category", "inventory", "language", "payment", "rental", "staff", "store"} +) + +// URLs for sakila resources. +const ( + URLActorCSV = "https://sq.io/testdata/actor.csv" + URLSubsetXLSX = "https://sq.io/testdata/sakila_subset.xlsx" + URLXLSX = "https://sq.io/testdata/sakila.xlsx" +) + +// Paths for sakila resources. +const ( + PathSL3 = "drivers/sqlite3/testdata/sakila.db" + PathXLSX = "drivers/xlsx/testdata/sakila.xlsx" + PathXLSXSubset = "drivers/xlsx/testdata/sakila_subset.xlsx" + PathCSVActor = "drivers/csv/testdata/sakila-csv/actor.csv" + PathCSVActorNoHeader = "drivers/csv/testdata/sakila-csv-noheader/actor.csv" + PathTSVActor = "drivers/csv/testdata/sakila-tsv/actor.tsv" +) diff --git a/testh/sakila/sakila_test.go b/testh/sakila/sakila_test.go new file mode 100644 index 00000000..862015b3 --- /dev/null +++ b/testh/sakila/sakila_test.go @@ -0,0 +1,75 @@ +package sakila_test + +import ( + "testing" + + "github.com/stretchr/testify/require" + + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/sakila" +) + +// TestSakila_SQL is a sanity check for Sakila SQL test sources. +func TestSakila_SQL(t *testing.T) { + t.Parallel() + + // Verify that the latest-version aliases are as expected + require.Equal(t, sakila.Pg, sakila.Pg12) + require.Equal(t, sakila.My, sakila.My8) + require.Equal(t, sakila.MS, sakila.MS17) + + handles := sakila.SQLAll + for _, handle := range handles { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + sink, err := th.QuerySQL(src, "SELECT * FROM actor") + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } +} + +// TestSakila_XLSX is a sanity check for Sakila XLSX test sources. +func TestSakila_XLSX(t *testing.T) { + testh.SkipShort(t, true) + t.Parallel() + + handles := []string{sakila.XLSX, sakila.XLSXNoHeader} + for _, handle := range handles { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + + src := th.Source(handle) + sink, err := th.QuerySQL(src, "SELECT * FROM actor") + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } +} + +// TestSakila_CSV is a sanity check for Sakila CSV/TSV test sources. +func TestSakila_CSV(t *testing.T) { + t.Parallel() + + handles := []string{sakila.CSVActor, sakila.CSVActorNoHeader, sakila.TSVActor, sakila.TSVActorNoHeader} + for _, handle := range handles { + handle := handle + t.Run(handle, func(t *testing.T) { + t.Parallel() + + th := testh.New(t) + src := th.Source(handle) + // Note table "data" instead of "actor", because CSV is monotable + sink, err := th.QuerySQL(src, "SELECT * FROM data") + require.NoError(t, err) + require.Equal(t, sakila.TblActorCount, len(sink.Recs)) + }) + } +} diff --git a/testh/testdata/sources.sq.yml b/testh/testdata/sources.sq.yml new file mode 100644 index 00000000..1bc952ba --- /dev/null +++ b/testh/testdata/sources.sq.yml @@ -0,0 +1,118 @@ +sources: + items: + - handle: '@sakila_sl3' + type: sqlite3 + location: sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/sakila.db + - handle: '@sakila_pg9' + type: postgres + location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG9}/sakila?sslmode=disable + - handle: '@sakila_pg10' + type: postgres + location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG10}/sakila?sslmode=disable + - handle: '@sakila_pg11' + type: postgres + location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG11}/sakila?sslmode=disable + - handle: '@sakila_pg12' + type: postgres + location: postgres://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_PG12}/sakila?sslmode=disable + - handle: '@sakila_my56' + type: mysql + location: mysql://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MY56}/sakila + - handle: '@sakila_my57' + type: mysql + location: mysql://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MY57}/sakila + - handle: '@sakila_my8' + type: mysql + location: mysql://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MY8}/sakila + - handle: '@sakila_ms17' + type: sqlserver + location: sqlserver://sakila:p_ssW0rd@${SQ_TEST_SRC__SAKILA_MS17}?database=sakila + - handle: '@sakila_xlsx' + type: xlsx + location: "${SQ_ROOT}/drivers/xlsx/testdata/sakila.xlsx" + options: + header: + - "true" + - handle: '@sakila_xlsx_subset' + type: xlsx + location: "${SQ_ROOT}/drivers/xlsx/testdata/sakila_subset.xlsx" + options: + header: + - "true" + - handle: '@sakila_xlsx_noheader' + type: xlsx + location: "${SQ_ROOT}/drivers/xlsx/testdata/sakila_noheader.xlsx" + options: + header: + - "false" + - handle: '@sakila_csv_actor' + type: csv + location: "${SQ_ROOT}/drivers/csv/testdata/sakila-csv/actor.csv" + options: + header: + - "true" + - handle: '@sakila_csv_actor_http' + type: csv + location: "https://sq.io/testdata/actor.csv" + options: + header: + - "true" + - handle: '@sakila_csv_actor_noheader' + type: csv + location: "${SQ_ROOT}/drivers/csv/testdata/sakila-csv-noheader/actor.csv" + options: + header: + - "false" + - handle: '@sakila_tsv_actor' + type: tsv + location: "${SQ_ROOT}/drivers/csv/testdata/sakila-tsv/actor.tsv" + options: + header: + - "true" + - handle: '@sakila_tsv_actor_noheader' + type: tsv + location: "${SQ_ROOT}/drivers/csv/testdata/sakila-tsv-noheader/actor.tsv" + options: + header: + - "false" + + - handle: '@csv_person' + type: csv + location: "${SQ_ROOT}/drivers/csv/testdata/person.csv" + - handle: '@csv_person_big' + options: + header: + - "true" + type: csv + location: "${SQ_ROOT}/drivers/csv/testdata/person_big.csv" + - handle: '@csv_person_noheader' + type: csv + location: "${SQ_ROOT}/drivers/csv/testdata/person_noheader.csv" + - handle: '@tsv_person' + type: tsv + location: "${SQ_ROOT}/sq/drivers/csv/testdata/person.tsv" + - handle: '@tsv_person_noheader' + type: tsv + location: "${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv" + - handle: '@tsv_person_noheader_cols' + type: tsv + location: "${SQ_ROOT}/drivers/csv/testdata/person_noheader.tsv" + options: + cols: + - uid,username,email + - handle: '@xl_header' + type: xlsx + location: "${SQ_ROOT}/drivers/xlsx/testdata/test_header.xlsx" + - handle: '@xl_noheader' + type: xlsx + location: "${SQ_ROOT}/drivers/xlsx/testdata/test_noheader.xlsx" + - handle: '@ud_ppl' + type: ppl + location: "${SQ_ROOT}/drivers/userdriver/xmlud/testdata/people.xml" + - handle: '@ud_rss_nytimes_local' + type: rss + location: "${SQ_ROOT}/drivers/userdriver/xmlud/testdata/nytimes_local.rss.xml" + - handle: '@miscdb' + type: sqlite3 + location: "sqlite3://${SQ_ROOT}/drivers/sqlite3/testdata/misc.db" + diff --git a/testh/testh.go b/testh/testh.go new file mode 100644 index 00000000..143a036d --- /dev/null +++ b/testh/testh.go @@ -0,0 +1,607 @@ +// Package testh (test helper) contains functionality +// for testing. +package testh + +import ( + "context" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "reflect" + "strings" + "sync" + "testing" + + "github.com/neilotoole/lg" + "github.com/neilotoole/lg/testlg" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "gopkg.in/yaml.v2" + + "github.com/neilotoole/sq/cli/config" + "github.com/neilotoole/sq/cli/output" + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/drivers/mysql" + "github.com/neilotoole/sq/drivers/postgres" + "github.com/neilotoole/sq/drivers/sqlite3" + "github.com/neilotoole/sq/drivers/sqlserver" + "github.com/neilotoole/sq/drivers/userdriver" + "github.com/neilotoole/sq/drivers/userdriver/xmlud" + "github.com/neilotoole/sq/drivers/xlsx" + "github.com/neilotoole/sq/libsq" + "github.com/neilotoole/sq/libsq/cleanup" + "github.com/neilotoole/sq/libsq/driver" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlmodel" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" + "github.com/neilotoole/sq/testh/testsrc" +) + +// Helper encapsulates a test helper session. +type Helper struct { + mu sync.Mutex + T testing.TB + Log lg.Log + reg *driver.Registry + files *source.Files + dbases *driver.Databases + regOnce sync.Once + srcs *source.Set + srcCache map[string]*source.Source + Context context.Context + cancelFn context.CancelFunc + Cleanup *cleanup.Cleanup +} + +// New returns a new Helper. The helper's Close func will be +// automatically invoked via t.Cleanup. +func New(t testing.TB) *Helper { + h := &Helper{ + T: t, + Log: testlg.New(t), + Cleanup: cleanup.New(), + } + + ctx, cancelFn := context.WithCancel(context.Background()) + h.Context = ctx + h.cancelFn = cancelFn + + t.Cleanup(h.Close) + return h +} + +// NewWith is a convenience wrapper for New that also returns +// a Source for handle, an open Database and the SQLDriver. +// The function will fail if handle is not the handle for a +// source whose driver implements driver.SQLDriver. +func NewWith(t testing.TB, handle string) (*Helper, *source.Source, driver.Database, driver.SQLDriver) { + th := New(t) + src := th.Source(handle) + dbase := th.Open(src) + drvr := th.SQLDriverFor(src) + + return th, src, dbase, drvr +} + +// Close runs any cleanup tasks, failing h's testing.T if any cleanup +// error occurs. Close is automatically invoked via t.Cleanup, it does +// not need to be explicitly invoked unless desired. +func (h *Helper) Close() { + err := h.Cleanup.Run() + h.Log.WarnIfError(err) + assert.NoError(h.T, err) + h.cancelFn() +} + +// Source returns a test Source with the given handle. The source +// is loaded from the sq config file at TestSourcesConfigPath. Variables +// such as ${SQ_ROOT} in the config file are expanded. The same +// instance of *source.Source will be returned for multiple invocations +// of this method on the same Helper instance. +// +// For certain file-based source types, the returned src's Location +// may point to a copy of the file. This helps avoid tests dirtying +// a version-controlled data file. +// +// Any external database source (that is, any SQL source other than SQLite3) +// will have its location determined from an envar. Given a source @sakila_pg12, +// its location is derived from an envar SQ_TEST_SRC__SAKILA_PG12. If that envar +// is not set, the test calling this method will be skipped. +func (h *Helper) Source(handle string) *source.Source { + h.mu.Lock() + defer h.mu.Unlock() + t := h.T + + // If the handle refers to an external database, we will skip + // the test if the envar for the handle is not set. + if stringz.InSlice(sakila.SQLAllExternal, handle) { + // Skip the test if the envar for the handle is not set + handleEnvar := "SQ_TEST_SRC__" + strings.ToUpper(strings.TrimPrefix(handle, "@")) + if envar, ok := os.LookupEnv(handleEnvar); !ok || strings.TrimSpace(envar) == "" { + h.T.Skipf("Skip test %s because envar %q for %q is not set", + h.T.Name(), handleEnvar, handle) + } + } + + if h.srcs == nil { + // It might be expected that we would simply use the + // source set (h.srcs) to return the source, but this + // method also uses a cache. This is because this + // method makes a copy the data file of file-based sources + // as mentioned in the method godoc. + h.srcs = mustLoadSourceSet(t) + h.srcCache = map[string]*source.Source{} + } + + // If it's already in the cache, return it. + src, ok := h.srcCache[handle] + if ok { + return src + } + + src, err := h.srcs.Get(handle) + require.NoError(t, err, + "source %s was not found in %s", handle, testsrc.PathSrcsConfig) + + switch src.Type { + case sqlite3.Type: + // This could be easily generalized for CSV/XLSX etc. + fpath, err := sqlite3.PathFromSourceLocation(src) + require.NoError(t, err) + + srcFile, err := os.Open(fpath) + require.NoError(t, err) + defer func() { assert.NoError(t, srcFile.Close()) }() + + destFile, err := ioutil.TempFile("", "*_"+filepath.Base(src.Location)) + require.NoError(t, err) + defer func() { assert.NoError(t, destFile.Close()) }() + t.Cleanup(func() { + assert.NoError(t, os.Remove(destFile.Name())) + }) + + _, err = io.Copy(destFile, srcFile) + require.NoError(t, err) + + src.Location = "sqlite3:" + destFile.Name() + } + h.srcCache[handle] = src + return src +} + +// Open opens a Database for src via h's internal Databases +// instance: thus subsequent calls to Open may return the +// same Database instance. The opened Database will be closed +// during h.Close. +func (h *Helper) Open(src *source.Source) driver.Database { + dbase, err := h.Databases().Open(h.Context, src) + require.NoError(h.T, err) + return dbase +} + +// openNew opens a new Database. It is the caller's responsibility +// to close the returned Database. Unlike method Open, this method +// will always invoke the driver's Open method. +// +// Some of Helper's methods (e.g. DropTable) need to use openNew rather +// than Open, as the Database returned by Open can be closed by test code, +// potentially causing problems during Cleanup. +func (h *Helper) openNew(src *source.Source) driver.Database { + reg := h.Registry() + drvr, err := reg.DriverFor(src.Type) + require.NoError(h.T, err) + dbase, err := drvr.Open(h.Context, src) + require.NoError(h.T, err) + return dbase +} + +// SQLDriverFor is a convenience method to get src's driver.SQLDriver. +func (h *Helper) SQLDriverFor(src *source.Source) driver.SQLDriver { + reg := h.Registry() + drvr, err := reg.DriverFor(src.Type) + require.NoError(h.T, err) + sqlDrvr, ok := drvr.(driver.SQLDriver) + require.True(h.T, ok, "driver %T is not a driver.SQLDriver: ensure that the src passed to SQLDriverFor implements driver.SQLDriver", drvr) + return sqlDrvr +} + +// DriverFor is a convenience method to get src's driver.Driver. +func (h *Helper) DriverFor(src *source.Source) driver.Driver { + reg := h.Registry() + drvr, err := reg.DriverFor(src.Type) + require.NoError(h.T, err) + return drvr +} + +// RowCount returns the result of "SELECT COUNT(*) FROM tbl", +// failing h's test on any error. +func (h *Helper) RowCount(src *source.Source, tbl string) int64 { + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + query := "SELECT COUNT(*) FROM " + dbase.SQLDriver().Dialect().Enquote(tbl) + var count int64 + require.NoError(h.T, dbase.DB().QueryRowContext(h.Context, query).Scan(&count)) + return count +} + +// CreateTable creates a new table in src, and inserts data, returning +// the number of data rows inserted. If dropAfter is true, the created +// table is dropped when t.Cleanup is run. +func (h *Helper) CreateTable(dropAfter bool, src *source.Source, tblDef *sqlmodel.TableDef, data ...[]interface{}) (affected int64) { + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + require.NoError(h.T, dbase.SQLDriver().CreateTable(h.Context, dbase.DB(), tblDef)) + h.T.Logf("Created table %s.%s", src.Handle, tblDef.Name) + + if dropAfter { + h.Cleanup.Add(func() { h.DropTable(src, tblDef.Name) }) + } + + if len(data) == 0 { + return 0 + } + + return h.Insert(src, tblDef.Name, tblDef.ColNames(), data...) +} + +// Insert inserts data for cols into src.tbl, returning the number of +// data rows inserted. Note that the data arg may be mutated by +// the src's driver InsertMungeFunc. +func (h *Helper) Insert(src *source.Source, tbl string, cols []string, data ...[]interface{}) (affected int64) { + if len(data) == 0 { + return 0 + } + + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + execer, err := dbase.SQLDriver().PrepareInsertStmt(h.Context, dbase.DB(), tbl, cols) + require.NoError(h.T, err) + h.Cleanup.AddC(execer) + + for _, row := range data { + require.NoError(h.T, execer.Munge(row)) + count, err := execer.Exec(h.Context, row...) + require.NoError(h.T, err) + affected += count + } + + h.T.Logf("Inserted %d rows to %s.%s", affected, src.Handle, tbl) + return affected +} + +// CopyTable copies fromTable into a new table toTable. If +// toTable is empty, a table name is generated based on +// fromTable. The table name used is returned. +// If dropAfter is true, the table is dropped when t.Cleanup is run. +// If copyData is true, fromTable's data is also copied. +// Constraints (keys, defaults etc.) may not be copied. +func (h *Helper) CopyTable(dropAfter bool, src *source.Source, fromTable, toTable string, copyData bool) string { + if toTable == "" { + toTable = stringz.UniqSuffix(fromTable) + } + + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + copied, err := dbase.SQLDriver().CopyTable(h.Context, dbase.DB(), fromTable, toTable, copyData) + require.NoError(h.T, err) + if dropAfter { + h.Cleanup.Add(func() { h.DropTable(src, toTable) }) + } + + h.T.Logf("Copied table %s.%s --> %s.%s (copy data=%v; rows copied=%d])", + src.Handle, fromTable, src.Handle, toTable, copyData, copied) + return toTable +} + +// DropTable drops tbl from src. +func (h *Helper) DropTable(src *source.Source, tbl string) { + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + require.NoError(h.T, dbase.SQLDriver().DropTable(h.Context, dbase.DB(), tbl, true)) + h.T.Logf("Dropped %s.%s", src.Handle, tbl) +} + +// QuerySQL uses libsq.QuerySQL to execute SQL query +// against src, returning a sink to which all records have +// been written. Note that QuerySQL uses the +// same Database instance as returned by h.Open. +func (h *Helper) QuerySQL(src *source.Source, query string, args ...interface{}) (*RecordSink, error) { + dbase := h.Open(src) + + sink := &RecordSink{} + recw := output.NewRecordWriterAdapter(sink) + err := libsq.QuerySQL(h.Context, h.Log, dbase, recw, query, args...) + if err != nil { + return nil, err + } + + _, err = recw.Wait() + if err != nil { + return nil, err + } + return sink, nil +} + +// ExecSQL is a convenience wrapper for sql.DB.Exec that returns the +// rows affected, failing on any error. Note that ExecSQL uses the +// same Database instance as returned by h.Open. +func (h *Helper) ExecSQL(src *source.Source, query string, args ...interface{}) (affected int64) { + dbase := h.Open(src) + + res, err := dbase.DB().ExecContext(h.Context, query, args...) + + require.NoError(h.T, err) + + affected, err = res.RowsAffected() + require.NoError(h.T, err) + + return affected +} + +// InsertDefaultRow executes the equivalent +// of INSERT INTO tbl DEFAULT VALUES. +// It fails if a row was not inserted. +// +// Note that for some driver types, the driver does not +// support DEFAULT values for some col types. For example +// this method may fail for a MySQL column "col_text TEXT NOT NULL", +// as TEXT and BLOB cannot have a DEFAULT value. +func (h *Helper) InsertDefaultRow(src *source.Source, tbl string) { + drvr := h.SQLDriverFor(src) + var query string + + if src.Type == mysql.Type { + // One driver had to be different... + // We could push this mysql-specific logic down to the driver impl + // but prob not worth the effort just for one driver. + query = "INSERT INTO " + drvr.Dialect().Enquote(tbl) + " () VALUES ()" + } else { + query = "INSERT INTO " + drvr.Dialect().Enquote(tbl) + " DEFAULT VALUES" + } + + affected := h.ExecSQL(src, query) + require.Equal(h.T, int64(1), affected) +} + +// TruncateTable truncates tbl in src. +func (h *Helper) TruncateTable(src *source.Source, tbl string) (affected int64) { + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + affected, err := h.DriverFor(src).Truncate(h.Context, src, tbl, true) + require.NoError(h.T, err) + return affected +} + +// Registry returns the helper's registry instance, +// configured with standard providers. +func (h *Helper) Registry() *driver.Registry { + h.regOnce.Do(func() { + log := h.Log + h.reg = driver.NewRegistry(log) + h.dbases = driver.NewDatabases(log, h.reg, sqlite3.NewScratchSource) + h.Cleanup.AddC(h.dbases) + + var err error + h.files, err = source.NewFiles(log) + require.NoError(h.T, err) + h.Cleanup.AddC(h.files) + + h.files.AddTypeDetectors(source.DetectMagicNumber) + + h.reg.AddProvider(sqlite3.Type, &sqlite3.Provider{Log: log}) + h.reg.AddProvider(postgres.Type, &postgres.Provider{Log: log}) + h.reg.AddProvider(sqlserver.Type, &sqlserver.Provider{Log: log}) + h.reg.AddProvider(mysql.Type, &mysql.Provider{Log: log}) + csvp := &csv.Provider{Log: log, Scratcher: h.dbases, Files: h.files} + h.reg.AddProvider(csv.TypeCSV, csvp) + h.reg.AddProvider(csv.TypeTSV, csvp) + h.files.AddTypeDetectors(csv.DetectCSV, csv.DetectTSV) + + h.reg.AddProvider(xlsx.Type, &xlsx.Provider{Log: log, Scratcher: h.dbases, Files: h.files}) + h.files.AddTypeDetectors(xlsx.DetectXLSX) + + h.addUserDrivers() + }) + + return h.reg +} + +// addUserDrivers adds some user drivers to the registry. +func (h *Helper) addUserDrivers() { + userDriverDefs := DriverDefsFrom(h.T, testsrc.PathDriverDefPpl, testsrc.PathDriverDefRSS) + + // One day we may have more supported user driver genres. + userDriverImporters := map[string]userdriver.ImportFunc{ + xmlud.Genre: xmlud.Import, + } + + for _, userDriverDef := range userDriverDefs { + userDriverDef := userDriverDef + + errs := userdriver.ValidateDriverDef(userDriverDef) + require.Empty(h.T, errs) + + importFn, ok := userDriverImporters[userDriverDef.Genre] + require.True(h.T, ok, "unsupported genre %q for user driver %q specified via config", + userDriverDef.Genre, userDriverDef.Name) + + // For each user driver definition, we register a + // distinct userdriver.Provider instance. + udp := &userdriver.Provider{ + Log: h.Log, + DriverDef: userDriverDef, + ImportFn: importFn, + Scratcher: h.dbases, + Files: h.files, + } + + h.reg.AddProvider(source.Type(userDriverDef.Name), udp) + h.files.AddTypeDetectors(udp.TypeDetectors()...) + } +} + +// IsMonotable returns true if src's driver is monotable. +func (h *Helper) IsMonotable(src *source.Source) bool { + return h.DriverFor(src).DriverMetadata().Monotable +} + +// Databases returns the helper's Databases instance. +func (h *Helper) Databases() *driver.Databases { + _ = h.Registry() // h.dbases is initialized by h.Registry + return h.dbases +} + +// Files returns the helper's Files instance. +func (h *Helper) Files() *source.Files { + _ = h.Registry() // h.files is initialized by h.Registry + return h.files +} + +// NoDiff fails the test if src's metadata is substantially different +// when t.Cleanup runs vs when NoDiff is invoked. Effectively NoDiff +// takes before and after snapshots of src's metadata, and compares +// various elements such as the number of tables, table row counts, etc. +// NoDiff is useful for verifying that tests are leaving the database +// as they found it. +func (h *Helper) NoDiff(src *source.Source) { + // TODO: it should be possible to pass flag --sq:nodiff to "go test", + // in which case NoDiff would be applied to all sources returned + // from h.Source. + + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + before, err := dbase.SourceMetadata(h.Context) + require.NoError(h.T, err) + + h.Cleanup.Add(func() { + // Currently NoDiff just checks if the tables and each + // table's row count match. + + dbase := h.openNew(src) + defer h.Log.WarnIfCloseError(dbase) + + after, err := dbase.SourceMetadata(h.Context) + require.NoError(h.T, err) + require.Equal(h.T, before.TableNames(), after.TableNames()) + + for i, beforeTbl := range before.Tables { + assert.Equal(h.T, beforeTbl.RowCount, after.Tables[i].RowCount, + "row count for %q: %d, %d", beforeTbl.Name, beforeTbl.RowCount, after.Tables[i].RowCount) + } + }) +} + +func mustLoadSourceSet(t testing.TB) *source.Set { + hookExpand := func(data []byte) ([]byte, error) { + // expand vars such as "${SQ_ROOT}" + return []byte(proj.Expand(string(data))), nil + } + + fs := &config.YAMLFileStore{Path: proj.Rel(testsrc.PathSrcsConfig), HookLoad: hookExpand} + cfg, err := fs.Load() + require.NoError(t, err) + require.NotNil(t, cfg) + require.NotNil(t, cfg.Sources) + + return cfg.Sources +} + +// DriverDefsFrom builds DriverDef values from cfg files. +func DriverDefsFrom(t testing.TB, cfgFiles ...string) []*userdriver.DriverDef { + var userDriverDefs []*userdriver.DriverDef + for _, f := range cfgFiles { + ext := &config.Ext{} + require.NoError(t, yaml.Unmarshal(proj.ReadFile(f), ext)) + userDriverDefs = append(userDriverDefs, ext.UserDrivers...) + } + return userDriverDefs +} + +// SkipShort invokes t.Skip if testing.Short and arg skip are both true. +func SkipShort(t *testing.T, skip bool) { + if skip && testing.Short() { + t.Skip("Skipping long-running test because -short is true.") + } +} + +// Val returns the fully dereferenced value of i. If i +// is nil, nil is returned. If i has type *(*string), +// Val(i) returns string. +// Useful for testing. +func Val(i interface{}) interface{} { + if i == nil { + return nil + } + + v := reflect.ValueOf(i) + for { + if !v.IsValid() { + return nil + } + + switch v.Kind() { + default: + return v.Interface() + case reflect.Ptr, reflect.Interface: + if v.IsNil() { + return nil + } + v = v.Elem() + // Loop again + continue + } + } +} + +// TypeDetectors returns the common set of TypeDetectorFuncs. +func TypeDetectors() []source.TypeDetectorFunc { + return []source.TypeDetectorFunc{source.DetectMagicNumber, xlsx.DetectXLSX, csv.DetectCSV, csv.DetectTSV} +} + +// AssertCompareFunc matches several of the the testify/require funcs. +// It can be used to choose assertion comparision funcs in test cases. +type AssertCompareFunc func(require.TestingT, interface{}, interface{}, ...interface{}) + +// Verify that a sample of the require funcs match AssertCompareFunc. +var ( + _ AssertCompareFunc = require.Equal + _ AssertCompareFunc = require.GreaterOrEqual + _ AssertCompareFunc = require.Greater +) + +// TName is a convenience function for generating names to +// pass to t.Run. +// +// t.Run(testh.TName("mytest", 1), func(t *testing.T) { +// +// The most common usage is with test names that are file +// paths. +// +// testh.TName("path/to/file") --> "path_to_file" +func TName(args ...interface{}) string { + var strs []string + var s string + for _, a := range args { + s = fmt.Sprintf("%v", a) + s = strings.Replace(s, "/", "_", -1) + strs = append(strs, s) + } + + s = strings.Join(strs, "_") + if s == "" { + return "empty" + } + + return s +} diff --git a/testh/testh_test.go b/testh/testh_test.go new file mode 100644 index 00000000..16cf4600 --- /dev/null +++ b/testh/testh_test.go @@ -0,0 +1,179 @@ +package testh_test + +import ( + "io/ioutil" + "testing" + "time" + + "github.com/stretchr/testify/require" + "golang.org/x/sync/errgroup" + + "github.com/neilotoole/sq/drivers/csv" + "github.com/neilotoole/sq/libsq/source" + "github.com/neilotoole/sq/libsq/sqlz" + "github.com/neilotoole/sq/libsq/stringz" + "github.com/neilotoole/sq/testh" + "github.com/neilotoole/sq/testh/proj" + "github.com/neilotoole/sq/testh/sakila" +) + +func TestVal(t *testing.T) { + want := "hello" + var got interface{} + + if testh.Val(nil) != nil { + t.FailNow() + } + + var v0 interface{} + if testh.Val(v0) != nil { + t.FailNow() + } + + var v1 = want + var v1a interface{} = want + var v2 = &v1 + var v3 interface{} = &v1 + var v4 = &v2 + var v5 = &v4 + + vals := []interface{}{v1, v1a, v2, v3, v4, v5} + for _, val := range vals { + got = testh.Val(val) + + if got != want { + t.Errorf("expected %T(%v) but got %T(%v)", want, want, got, got) + } + } + + slice := []string{"a", "b"} + require.Equal(t, slice, testh.Val(slice)) + require.Equal(t, slice, testh.Val(&slice)) + + b := true + require.Equal(t, b, testh.Val(b)) + require.Equal(t, b, testh.Val(&b)) + + type structT struct { + f string + } + + st1 := structT{f: "hello"} + require.Equal(t, st1, testh.Val(st1)) + require.Equal(t, st1, testh.Val(&st1)) + + var c chan int + require.Nil(t, testh.Val(c)) + c = make(chan int, 10) + require.Equal(t, c, testh.Val(c)) + require.Equal(t, c, testh.Val(&c)) +} + +func TestCopyRecords(t *testing.T) { + var v1, v2, v3, v4, v5, v6 = int64(1), float64(1.1), true, "hello", []byte("hello"), time.Unix(0, 0) + + testCases := map[string][]sqlz.Record{ + "nil": nil, + "empty": {}, + "vals": { + {nil, &v1, &v2, &v3, &v4, &v5, &v6}, + // {nil, &v1, &v2, &v3, &v4, &v5, &v6}, + }, + } + + for name, recs := range testCases { + name, recs := name, recs + + t.Run(name, func(t *testing.T) { + recs2 := testh.CopyRecords(recs) + require.True(t, len(recs) == len(recs2)) + + if recs == nil { + require.True(t, recs2 == nil) + return + } + + for i := range recs { + require.True(t, len(recs[i]) == len(recs2[i])) + for j := range recs[i] { + if recs[i][j] == nil { + require.True(t, recs2[i][j] == nil) + continue + } + + require.False(t, recs[i][j] == recs2[i][j], + "pointer values should not be equal: %#v --> %#v", recs[i][j], recs2[i][j]) + + val1, val2 := testh.Val(recs[i][j]), testh.Val(recs2[i][j]) + require.Equal(t, val1, val2, + "dereferenced values should be equal: %#v --> %#v", val1, val2) + } + } + }) + } +} + +func TestRecordsFromTbl(t *testing.T) { + recMeta1, recs1 := testh.RecordsFromTbl(t, sakila.SL3, sakila.TblActor) + require.Equal(t, sakila.TblActorColKinds, recMeta1.Kinds()) + + recs1[0][0] = t.Name() + + recMeta2, recs2 := testh.RecordsFromTbl(t, sakila.SL3, sakila.TblActor) + require.False(t, &recMeta1 == &recMeta2, "should be distinct copies") + require.False(t, &recs1 == &recs2, "should be distinct copies") + require.NotEqual(t, recs1[0][0], recs2[0][0], "recs2 should not have the mutated value from recs1") +} + +func TestHelper_Files(t *testing.T) { + fpath := "drivers/csv/testdata/person.csv" + wantBytes := proj.ReadFile(fpath) + + src := &source.Source{ + Handle: "@test_" + stringz.Uniq8(), + Type: csv.TypeCSV, + Location: proj.Abs(fpath), + } + + th := testh.New(t) + fs := th.Files() + + typ, err := fs.Type(th.Context, src.Location) + require.NoError(t, err) + require.Equal(t, src.Type, typ) + + g, gctx := errgroup.WithContext(th.Context) + + for i := 0; i < 1000; i++ { + g.Go(func() error { + r, err := fs.NewReader(gctx, src) + require.NoError(t, err) + + b, err := ioutil.ReadAll(r) + require.NoError(t, err) + + require.Equal(t, wantBytes, b) + return nil + }) + } + + err = g.Wait() + require.NoError(t, err) +} + +func TestTName(t *testing.T) { + testCases := []struct { + a []interface{} + want string + }{ + {a: []interface{}{}, want: "empty"}, + {a: []interface{}{"test", 1}, want: "test_1"}, + {a: []interface{}{"/file/path/name"}, want: "_file_path_name"}, + } + + for _, tc := range testCases { + got := testh.TName(tc.a...) + require.Equal(t, tc.want, got) + } + +} diff --git a/testh/testsrc/testsrc.go b/testh/testsrc/testsrc.go new file mode 100644 index 00000000..fe1f9de6 --- /dev/null +++ b/testh/testsrc/testsrc.go @@ -0,0 +1,36 @@ +// Package testsrc holds testing constants (in addition +// to pkg sakila). +package testsrc + +// Handles for various test data sources. +const ( + CSVPerson = "@csv_person" + CSVPersonBig = "@csv_person_big" + CSVPersonNoHeader = "@csv_person_noheader" + + // PplUD is the handle of a user-defined "people" source. + PplUD = "@ud_ppl" + + // RSSNYTLocalUD is the handle of a user-defined RSS source. + RSSNYTLocalUD = "@ud_rss_nytimes_local" + + // MiscDB is the handle of SQLite DB with misc testing data. + MiscDB = "@miscdb" +) + +const ( + // TblTypes is a table in MiscDB. + TblTypes = "tbl_types" +) + +// Paths for various testdata. +const ( + // PathSrcsConfig is the path of the yml file containing + // the test sources template config file. + PathSrcsConfig = "/testh/testdata/sources.sq.yml" + + PathDriverDefPpl = "drivers/userdriver/xmlud/testdata/ppl.sq.yml" + PathDriverDefRSS = "drivers/userdriver/xmlud/testdata/rss.sq.yml" + + PathXLSXTestHeader = "drivers/xlsx/testdata/test_header.xlsx" +) diff --git a/tools/ST-4.0.8.jar b/tools/ST-4.0.8.jar deleted file mode 100644 index ef879198..00000000 Binary files a/tools/ST-4.0.8.jar and /dev/null differ diff --git a/tools/antlr4-4.5.4-SNAPSHOT.jar b/tools/antlr4-4.5.4-SNAPSHOT.jar deleted file mode 100644 index c877bf2c..00000000 Binary files a/tools/antlr4-4.5.4-SNAPSHOT.jar and /dev/null differ diff --git a/tools/gen-antlr.sh b/tools/gen-antlr.sh deleted file mode 100755 index 0c9ec47d..00000000 --- a/tools/gen-antlr.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env bash - - -rm -vf ../grammar/*.go -rm -vf ../grammar/*.bak -rm -vf ../grammar/*.tokens -rm -vf ../libsq/slq/* -java -Xmx500M -cp "./ST-4.0.8.jar:./antlr4-4.5.4-SNAPSHOT.jar" org.antlr.v4.Tool -listener -visitor -package "slq" -Dlanguage=Go ../grammar/SLQ.g4 - -# for some reason (luser error?), antlr is not respecting the -o (output) arg above, -# so need to manually move the generated files to the correct location. -mv -vf ../grammar/*.tokens ../libsq/slq/ -mv -vf ../grammar/*.go ../libsq/slq/ -rm -vf ../grammar/*.bak \ No newline at end of file diff --git a/vendor/github.com/aws/aws-sdk-go/LICENSE.txt b/vendor/github.com/aws/aws-sdk-go/LICENSE.txt deleted file mode 100644 index d6456956..00000000 --- a/vendor/github.com/aws/aws-sdk-go/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/vendor/github.com/aws/aws-sdk-go/NOTICE.txt b/vendor/github.com/aws/aws-sdk-go/NOTICE.txt deleted file mode 100644 index 5f14d116..00000000 --- a/vendor/github.com/aws/aws-sdk-go/NOTICE.txt +++ /dev/null @@ -1,3 +0,0 @@ -AWS SDK for Go -Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. -Copyright 2014-2015 Stripe, Inc. diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go b/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go deleted file mode 100644 index 56fdfc2b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go +++ /dev/null @@ -1,145 +0,0 @@ -// Package awserr represents API error interface accessors for the SDK. -package awserr - -// An Error wraps lower level errors with code, message and an original error. -// The underlying concrete error type may also satisfy other interfaces which -// can be to used to obtain more specific information about the error. -// -// Calling Error() or String() will always include the full information about -// an error based on its underlying type. -// -// Example: -// -// output, err := s3manage.Upload(svc, input, opts) -// if err != nil { -// if awsErr, ok := err.(awserr.Error); ok { -// // Get error details -// log.Println("Error:", awsErr.Code(), awsErr.Message()) -// -// // Prints out full error message, including original error if there was one. -// log.Println("Error:", awsErr.Error()) -// -// // Get original error -// if origErr := awsErr.OrigErr(); origErr != nil { -// // operate on original error. -// } -// } else { -// fmt.Println(err.Error()) -// } -// } -// -type Error interface { - // Satisfy the generic error interface. - error - - // Returns the short phrase depicting the classification of the error. - Code() string - - // Returns the error details message. - Message() string - - // Returns the original error if one was set. Nil is returned if not set. - OrigErr() error -} - -// BatchError is a batch of errors which also wraps lower level errors with -// code, message, and original errors. Calling Error() will include all errors -// that occurred in the batch. -// -// Deprecated: Replaced with BatchedErrors. Only defined for backwards -// compatibility. -type BatchError interface { - // Satisfy the generic error interface. - error - - // Returns the short phrase depicting the classification of the error. - Code() string - - // Returns the error details message. - Message() string - - // Returns the original error if one was set. Nil is returned if not set. - OrigErrs() []error -} - -// BatchedErrors is a batch of errors which also wraps lower level errors with -// code, message, and original errors. Calling Error() will include all errors -// that occurred in the batch. -// -// Replaces BatchError -type BatchedErrors interface { - // Satisfy the base Error interface. - Error - - // Returns the original error if one was set. Nil is returned if not set. - OrigErrs() []error -} - -// New returns an Error object described by the code, message, and origErr. -// -// If origErr satisfies the Error interface it will not be wrapped within a new -// Error object and will instead be returned. -func New(code, message string, origErr error) Error { - var errs []error - if origErr != nil { - errs = append(errs, origErr) - } - return newBaseError(code, message, errs) -} - -// NewBatchError returns an BatchedErrors with a collection of errors as an -// array of errors. -func NewBatchError(code, message string, errs []error) BatchedErrors { - return newBaseError(code, message, errs) -} - -// A RequestFailure is an interface to extract request failure information from -// an Error such as the request ID of the failed request returned by a service. -// RequestFailures may not always have a requestID value if the request failed -// prior to reaching the service such as a connection error. -// -// Example: -// -// output, err := s3manage.Upload(svc, input, opts) -// if err != nil { -// if reqerr, ok := err.(RequestFailure); ok { -// log.Println("Request failed", reqerr.Code(), reqerr.Message(), reqerr.RequestID()) -// } else { -// log.Println("Error:", err.Error()) -// } -// } -// -// Combined with awserr.Error: -// -// output, err := s3manage.Upload(svc, input, opts) -// if err != nil { -// if awsErr, ok := err.(awserr.Error); ok { -// // Generic AWS Error with Code, Message, and original error (if any) -// fmt.Println(awsErr.Code(), awsErr.Message(), awsErr.OrigErr()) -// -// if reqErr, ok := err.(awserr.RequestFailure); ok { -// // A service error occurred -// fmt.Println(reqErr.StatusCode(), reqErr.RequestID()) -// } -// } else { -// fmt.Println(err.Error()) -// } -// } -// -type RequestFailure interface { - Error - - // The status code of the HTTP response. - StatusCode() int - - // The request ID returned by the service for a request failure. This will - // be empty if no request ID is available such as the request failed due - // to a connection error. - RequestID() string -} - -// NewRequestFailure returns a new request error wrapper for the given Error -// provided. -func NewRequestFailure(err Error, statusCode int, reqID string) RequestFailure { - return newRequestError(err, statusCode, reqID) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go b/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go deleted file mode 100644 index 0202a008..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go +++ /dev/null @@ -1,194 +0,0 @@ -package awserr - -import "fmt" - -// SprintError returns a string of the formatted error code. -// -// Both extra and origErr are optional. If they are included their lines -// will be added, but if they are not included their lines will be ignored. -func SprintError(code, message, extra string, origErr error) string { - msg := fmt.Sprintf("%s: %s", code, message) - if extra != "" { - msg = fmt.Sprintf("%s\n\t%s", msg, extra) - } - if origErr != nil { - msg = fmt.Sprintf("%s\ncaused by: %s", msg, origErr.Error()) - } - return msg -} - -// A baseError wraps the code and message which defines an error. It also -// can be used to wrap an original error object. -// -// Should be used as the root for errors satisfying the awserr.Error. Also -// for any error which does not fit into a specific error wrapper type. -type baseError struct { - // Classification of error - code string - - // Detailed information about error - message string - - // Optional original error this error is based off of. Allows building - // chained errors. - errs []error -} - -// newBaseError returns an error object for the code, message, and errors. -// -// code is a short no whitespace phrase depicting the classification of -// the error that is being created. -// -// message is the free flow string containing detailed information about the -// error. -// -// origErrs is the error objects which will be nested under the new errors to -// be returned. -func newBaseError(code, message string, origErrs []error) *baseError { - b := &baseError{ - code: code, - message: message, - errs: origErrs, - } - - return b -} - -// Error returns the string representation of the error. -// -// See ErrorWithExtra for formatting. -// -// Satisfies the error interface. -func (b baseError) Error() string { - size := len(b.errs) - if size > 0 { - return SprintError(b.code, b.message, "", errorList(b.errs)) - } - - return SprintError(b.code, b.message, "", nil) -} - -// String returns the string representation of the error. -// Alias for Error to satisfy the stringer interface. -func (b baseError) String() string { - return b.Error() -} - -// Code returns the short phrase depicting the classification of the error. -func (b baseError) Code() string { - return b.code -} - -// Message returns the error details message. -func (b baseError) Message() string { - return b.message -} - -// OrigErr returns the original error if one was set. Nil is returned if no -// error was set. This only returns the first element in the list. If the full -// list is needed, use BatchedErrors. -func (b baseError) OrigErr() error { - switch len(b.errs) { - case 0: - return nil - case 1: - return b.errs[0] - default: - if err, ok := b.errs[0].(Error); ok { - return NewBatchError(err.Code(), err.Message(), b.errs[1:]) - } - return NewBatchError("BatchedErrors", - "multiple errors occurred", b.errs) - } -} - -// OrigErrs returns the original errors if one was set. An empty slice is -// returned if no error was set. -func (b baseError) OrigErrs() []error { - return b.errs -} - -// So that the Error interface type can be included as an anonymous field -// in the requestError struct and not conflict with the error.Error() method. -type awsError Error - -// A requestError wraps a request or service error. -// -// Composed of baseError for code, message, and original error. -type requestError struct { - awsError - statusCode int - requestID string -} - -// newRequestError returns a wrapped error with additional information for -// request status code, and service requestID. -// -// Should be used to wrap all request which involve service requests. Even if -// the request failed without a service response, but had an HTTP status code -// that may be meaningful. -// -// Also wraps original errors via the baseError. -func newRequestError(err Error, statusCode int, requestID string) *requestError { - return &requestError{ - awsError: err, - statusCode: statusCode, - requestID: requestID, - } -} - -// Error returns the string representation of the error. -// Satisfies the error interface. -func (r requestError) Error() string { - extra := fmt.Sprintf("status code: %d, request id: %s", - r.statusCode, r.requestID) - return SprintError(r.Code(), r.Message(), extra, r.OrigErr()) -} - -// String returns the string representation of the error. -// Alias for Error to satisfy the stringer interface. -func (r requestError) String() string { - return r.Error() -} - -// StatusCode returns the wrapped status code for the error -func (r requestError) StatusCode() int { - return r.statusCode -} - -// RequestID returns the wrapped requestID -func (r requestError) RequestID() string { - return r.requestID -} - -// OrigErrs returns the original errors if one was set. An empty slice is -// returned if no error was set. -func (r requestError) OrigErrs() []error { - if b, ok := r.awsError.(BatchedErrors); ok { - return b.OrigErrs() - } - return []error{r.OrigErr()} -} - -// An error list that satisfies the golang interface -type errorList []error - -// Error returns the string representation of the error. -// -// Satisfies the error interface. -func (e errorList) Error() string { - msg := "" - // How do we want to handle the array size being zero - if size := len(e); size > 0 { - for i := 0; i < size; i++ { - msg += fmt.Sprintf("%s", e[i].Error()) - // We check the next index to see if it is within the slice. - // If it is, then we append a newline. We do this, because unit tests - // could be broken with the additional '\n' - if i+1 < size { - msg += "\n" - } - } - } - return msg -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go deleted file mode 100644 index 1a3d106d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go +++ /dev/null @@ -1,108 +0,0 @@ -package awsutil - -import ( - "io" - "reflect" - "time" -) - -// Copy deeply copies a src structure to dst. Useful for copying request and -// response structures. -// -// Can copy between structs of different type, but will only copy fields which -// are assignable, and exist in both structs. Fields which are not assignable, -// or do not exist in both structs are ignored. -func Copy(dst, src interface{}) { - dstval := reflect.ValueOf(dst) - if !dstval.IsValid() { - panic("Copy dst cannot be nil") - } - - rcopy(dstval, reflect.ValueOf(src), true) -} - -// CopyOf returns a copy of src while also allocating the memory for dst. -// src must be a pointer type or this operation will fail. -func CopyOf(src interface{}) (dst interface{}) { - dsti := reflect.New(reflect.TypeOf(src).Elem()) - dst = dsti.Interface() - rcopy(dsti, reflect.ValueOf(src), true) - return -} - -// rcopy performs a recursive copy of values from the source to destination. -// -// root is used to skip certain aspects of the copy which are not valid -// for the root node of a object. -func rcopy(dst, src reflect.Value, root bool) { - if !src.IsValid() { - return - } - - switch src.Kind() { - case reflect.Ptr: - if _, ok := src.Interface().(io.Reader); ok { - if dst.Kind() == reflect.Ptr && dst.Elem().CanSet() { - dst.Elem().Set(src) - } else if dst.CanSet() { - dst.Set(src) - } - } else { - e := src.Type().Elem() - if dst.CanSet() && !src.IsNil() { - if _, ok := src.Interface().(*time.Time); !ok { - dst.Set(reflect.New(e)) - } else { - tempValue := reflect.New(e) - tempValue.Elem().Set(src.Elem()) - // Sets time.Time's unexported values - dst.Set(tempValue) - } - } - if src.Elem().IsValid() { - // Keep the current root state since the depth hasn't changed - rcopy(dst.Elem(), src.Elem(), root) - } - } - case reflect.Struct: - t := dst.Type() - for i := 0; i < t.NumField(); i++ { - name := t.Field(i).Name - srcVal := src.FieldByName(name) - dstVal := dst.FieldByName(name) - if srcVal.IsValid() && dstVal.CanSet() { - rcopy(dstVal, srcVal, false) - } - } - case reflect.Slice: - if src.IsNil() { - break - } - - s := reflect.MakeSlice(src.Type(), src.Len(), src.Cap()) - dst.Set(s) - for i := 0; i < src.Len(); i++ { - rcopy(dst.Index(i), src.Index(i), false) - } - case reflect.Map: - if src.IsNil() { - break - } - - s := reflect.MakeMap(src.Type()) - dst.Set(s) - for _, k := range src.MapKeys() { - v := src.MapIndex(k) - v2 := reflect.New(v.Type()).Elem() - rcopy(v2, v, false) - dst.SetMapIndex(k, v2) - } - default: - // Assign the value if possible. If its not assignable, the value would - // need to be converted and the impact of that may be unexpected, or is - // not compatible with the dst type. - if src.Type().AssignableTo(dst.Type()) { - dst.Set(src) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go deleted file mode 100644 index 0e75c5ee..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go +++ /dev/null @@ -1,265 +0,0 @@ -package awsutil_test - -import ( - "bytes" - "fmt" - "io" - "io/ioutil" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/stretchr/testify/assert" -) - -func ExampleCopy() { - type Foo struct { - A int - B []*string - } - - // Create the initial value - str1 := "hello" - str2 := "bye bye" - f1 := &Foo{A: 1, B: []*string{&str1, &str2}} - - // Do the copy - var f2 Foo - awsutil.Copy(&f2, f1) - - // Print the result - fmt.Println(awsutil.Prettify(f2)) - - // Output: - // { - // A: 1, - // B: ["hello","bye bye"] - // } -} - -func TestCopy1(t *testing.T) { - type Bar struct { - a *int - B *int - c int - D int - } - type Foo struct { - A int - B []*string - C map[string]*int - D *time.Time - E *Bar - } - - // Create the initial value - str1 := "hello" - str2 := "bye bye" - int1 := 1 - int2 := 2 - intPtr1 := 1 - intPtr2 := 2 - now := time.Now() - f1 := &Foo{ - A: 1, - B: []*string{&str1, &str2}, - C: map[string]*int{ - "A": &int1, - "B": &int2, - }, - D: &now, - E: &Bar{ - &intPtr1, - &intPtr2, - 2, - 3, - }, - } - - // Do the copy - var f2 Foo - awsutil.Copy(&f2, f1) - - // Values are equal - assert.Equal(t, f2.A, f1.A) - assert.Equal(t, f2.B, f1.B) - assert.Equal(t, f2.C, f1.C) - assert.Equal(t, f2.D, f1.D) - assert.Equal(t, f2.E.B, f1.E.B) - assert.Equal(t, f2.E.D, f1.E.D) - - // But pointers are not! - str3 := "nothello" - int3 := 57 - f2.A = 100 - *f2.B[0] = str3 - *f2.C["B"] = int3 - *f2.D = time.Now() - f2.E.a = &int3 - *f2.E.B = int3 - f2.E.c = 5 - f2.E.D = 5 - assert.NotEqual(t, f2.A, f1.A) - assert.NotEqual(t, f2.B, f1.B) - assert.NotEqual(t, f2.C, f1.C) - assert.NotEqual(t, f2.D, f1.D) - assert.NotEqual(t, f2.E.a, f1.E.a) - assert.NotEqual(t, f2.E.B, f1.E.B) - assert.NotEqual(t, f2.E.c, f1.E.c) - assert.NotEqual(t, f2.E.D, f1.E.D) -} - -func TestCopyNestedWithUnexported(t *testing.T) { - type Bar struct { - a int - B int - } - type Foo struct { - A string - B Bar - } - - f1 := &Foo{A: "string", B: Bar{a: 1, B: 2}} - - var f2 Foo - awsutil.Copy(&f2, f1) - - // Values match - assert.Equal(t, f2.A, f1.A) - assert.NotEqual(t, f2.B, f1.B) - assert.NotEqual(t, f2.B.a, f1.B.a) - assert.Equal(t, f2.B.B, f2.B.B) -} - -func TestCopyIgnoreNilMembers(t *testing.T) { - type Foo struct { - A *string - B []string - C map[string]string - } - - f := &Foo{} - assert.Nil(t, f.A) - assert.Nil(t, f.B) - assert.Nil(t, f.C) - - var f2 Foo - awsutil.Copy(&f2, f) - assert.Nil(t, f2.A) - assert.Nil(t, f2.B) - assert.Nil(t, f2.C) - - fcopy := awsutil.CopyOf(f) - f3 := fcopy.(*Foo) - assert.Nil(t, f3.A) - assert.Nil(t, f3.B) - assert.Nil(t, f3.C) -} - -func TestCopyPrimitive(t *testing.T) { - str := "hello" - var s string - awsutil.Copy(&s, &str) - assert.Equal(t, "hello", s) -} - -func TestCopyNil(t *testing.T) { - var s string - awsutil.Copy(&s, nil) - assert.Equal(t, "", s) -} - -func TestCopyReader(t *testing.T) { - var buf io.Reader = bytes.NewReader([]byte("hello world")) - var r io.Reader - awsutil.Copy(&r, buf) - b, err := ioutil.ReadAll(r) - assert.NoError(t, err) - assert.Equal(t, []byte("hello world"), b) - - // empty bytes because this is not a deep copy - b, err = ioutil.ReadAll(buf) - assert.NoError(t, err) - assert.Equal(t, []byte(""), b) -} - -func TestCopyDifferentStructs(t *testing.T) { - type SrcFoo struct { - A int - B []*string - C map[string]*int - SrcUnique string - SameNameDiffType int - unexportedPtr *int - ExportedPtr *int - } - type DstFoo struct { - A int - B []*string - C map[string]*int - DstUnique int - SameNameDiffType string - unexportedPtr *int - ExportedPtr *int - } - - // Create the initial value - str1 := "hello" - str2 := "bye bye" - int1 := 1 - int2 := 2 - f1 := &SrcFoo{ - A: 1, - B: []*string{&str1, &str2}, - C: map[string]*int{ - "A": &int1, - "B": &int2, - }, - SrcUnique: "unique", - SameNameDiffType: 1, - unexportedPtr: &int1, - ExportedPtr: &int2, - } - - // Do the copy - var f2 DstFoo - awsutil.Copy(&f2, f1) - - // Values are equal - assert.Equal(t, f2.A, f1.A) - assert.Equal(t, f2.B, f1.B) - assert.Equal(t, f2.C, f1.C) - assert.Equal(t, "unique", f1.SrcUnique) - assert.Equal(t, 1, f1.SameNameDiffType) - assert.Equal(t, 0, f2.DstUnique) - assert.Equal(t, "", f2.SameNameDiffType) - assert.Equal(t, int1, *f1.unexportedPtr) - assert.Nil(t, f2.unexportedPtr) - assert.Equal(t, int2, *f1.ExportedPtr) - assert.Equal(t, int2, *f2.ExportedPtr) -} - -func ExampleCopyOf() { - type Foo struct { - A int - B []*string - } - - // Create the initial value - str1 := "hello" - str2 := "bye bye" - f1 := &Foo{A: 1, B: []*string{&str1, &str2}} - - // Do the copy - v := awsutil.CopyOf(f1) - var f2 *Foo = v.(*Foo) - - // Print the result - fmt.Println(awsutil.Prettify(f2)) - - // Output: - // { - // A: 1, - // B: ["hello","bye bye"] - // } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go deleted file mode 100644 index 59fa4a55..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go +++ /dev/null @@ -1,27 +0,0 @@ -package awsutil - -import ( - "reflect" -) - -// DeepEqual returns if the two values are deeply equal like reflect.DeepEqual. -// In addition to this, this method will also dereference the input values if -// possible so the DeepEqual performed will not fail if one parameter is a -// pointer and the other is not. -// -// DeepEqual will not perform indirection of nested values of the input parameters. -func DeepEqual(a, b interface{}) bool { - ra := reflect.Indirect(reflect.ValueOf(a)) - rb := reflect.Indirect(reflect.ValueOf(b)) - - if raValid, rbValid := ra.IsValid(), rb.IsValid(); !raValid && !rbValid { - // If the elements are both nil, and of the same type the are equal - // If they are of different types they are not equal - return reflect.TypeOf(a) == reflect.TypeOf(b) - } else if raValid != rbValid { - // Both values must be valid to be equal - return false - } - - return reflect.DeepEqual(ra.Interface(), rb.Interface()) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go deleted file mode 100644 index 7a5db6e4..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go +++ /dev/null @@ -1,29 +0,0 @@ -package awsutil_test - -import ( - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/stretchr/testify/assert" -) - -func TestDeepEqual(t *testing.T) { - cases := []struct { - a, b interface{} - equal bool - }{ - {"a", "a", true}, - {"a", "b", false}, - {"a", aws.String(""), false}, - {"a", nil, false}, - {"a", aws.String("a"), true}, - {(*bool)(nil), (*bool)(nil), true}, - {(*bool)(nil), (*string)(nil), false}, - {nil, nil, true}, - } - - for i, c := range cases { - assert.Equal(t, c.equal, awsutil.DeepEqual(c.a, c.b), "%d, a:%v b:%v, %t", i, c.a, c.b, c.equal) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go deleted file mode 100644 index 11c52c38..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go +++ /dev/null @@ -1,222 +0,0 @@ -package awsutil - -import ( - "reflect" - "regexp" - "strconv" - "strings" - - "github.com/jmespath/go-jmespath" -) - -var indexRe = regexp.MustCompile(`(.+)\[(-?\d+)?\]$`) - -// rValuesAtPath returns a slice of values found in value v. The values -// in v are explored recursively so all nested values are collected. -func rValuesAtPath(v interface{}, path string, createPath, caseSensitive, nilTerm bool) []reflect.Value { - pathparts := strings.Split(path, "||") - if len(pathparts) > 1 { - for _, pathpart := range pathparts { - vals := rValuesAtPath(v, pathpart, createPath, caseSensitive, nilTerm) - if len(vals) > 0 { - return vals - } - } - return nil - } - - values := []reflect.Value{reflect.Indirect(reflect.ValueOf(v))} - components := strings.Split(path, ".") - for len(values) > 0 && len(components) > 0 { - var index *int64 - var indexStar bool - c := strings.TrimSpace(components[0]) - if c == "" { // no actual component, illegal syntax - return nil - } else if caseSensitive && c != "*" && strings.ToLower(c[0:1]) == c[0:1] { - // TODO normalize case for user - return nil // don't support unexported fields - } - - // parse this component - if m := indexRe.FindStringSubmatch(c); m != nil { - c = m[1] - if m[2] == "" { - index = nil - indexStar = true - } else { - i, _ := strconv.ParseInt(m[2], 10, 32) - index = &i - indexStar = false - } - } - - nextvals := []reflect.Value{} - for _, value := range values { - // pull component name out of struct member - if value.Kind() != reflect.Struct { - continue - } - - if c == "*" { // pull all members - for i := 0; i < value.NumField(); i++ { - if f := reflect.Indirect(value.Field(i)); f.IsValid() { - nextvals = append(nextvals, f) - } - } - continue - } - - value = value.FieldByNameFunc(func(name string) bool { - if c == name { - return true - } else if !caseSensitive && strings.ToLower(name) == strings.ToLower(c) { - return true - } - return false - }) - - if nilTerm && value.Kind() == reflect.Ptr && len(components[1:]) == 0 { - if !value.IsNil() { - value.Set(reflect.Zero(value.Type())) - } - return []reflect.Value{value} - } - - if createPath && value.Kind() == reflect.Ptr && value.IsNil() { - // TODO if the value is the terminus it should not be created - // if the value to be set to its position is nil. - value.Set(reflect.New(value.Type().Elem())) - value = value.Elem() - } else { - value = reflect.Indirect(value) - } - - if value.Kind() == reflect.Slice || value.Kind() == reflect.Map { - if !createPath && value.IsNil() { - value = reflect.ValueOf(nil) - } - } - - if value.IsValid() { - nextvals = append(nextvals, value) - } - } - values = nextvals - - if indexStar || index != nil { - nextvals = []reflect.Value{} - for _, valItem := range values { - value := reflect.Indirect(valItem) - if value.Kind() != reflect.Slice { - continue - } - - if indexStar { // grab all indices - for i := 0; i < value.Len(); i++ { - idx := reflect.Indirect(value.Index(i)) - if idx.IsValid() { - nextvals = append(nextvals, idx) - } - } - continue - } - - // pull out index - i := int(*index) - if i >= value.Len() { // check out of bounds - if createPath { - // TODO resize slice - } else { - continue - } - } else if i < 0 { // support negative indexing - i = value.Len() + i - } - value = reflect.Indirect(value.Index(i)) - - if value.Kind() == reflect.Slice || value.Kind() == reflect.Map { - if !createPath && value.IsNil() { - value = reflect.ValueOf(nil) - } - } - - if value.IsValid() { - nextvals = append(nextvals, value) - } - } - values = nextvals - } - - components = components[1:] - } - return values -} - -// ValuesAtPath returns a list of values at the case insensitive lexical -// path inside of a structure. -func ValuesAtPath(i interface{}, path string) ([]interface{}, error) { - result, err := jmespath.Search(path, i) - if err != nil { - return nil, err - } - - v := reflect.ValueOf(result) - if !v.IsValid() || (v.Kind() == reflect.Ptr && v.IsNil()) { - return nil, nil - } - if s, ok := result.([]interface{}); ok { - return s, err - } - if v.Kind() == reflect.Map && v.Len() == 0 { - return nil, nil - } - if v.Kind() == reflect.Slice { - out := make([]interface{}, v.Len()) - for i := 0; i < v.Len(); i++ { - out[i] = v.Index(i).Interface() - } - return out, nil - } - - return []interface{}{result}, nil -} - -// SetValueAtPath sets a value at the case insensitive lexical path inside -// of a structure. -func SetValueAtPath(i interface{}, path string, v interface{}) { - if rvals := rValuesAtPath(i, path, true, false, v == nil); rvals != nil { - for _, rval := range rvals { - if rval.Kind() == reflect.Ptr && rval.IsNil() { - continue - } - setValue(rval, v) - } - } -} - -func setValue(dstVal reflect.Value, src interface{}) { - if dstVal.Kind() == reflect.Ptr { - dstVal = reflect.Indirect(dstVal) - } - srcVal := reflect.ValueOf(src) - - if !srcVal.IsValid() { // src is literal nil - if dstVal.CanAddr() { - // Convert to pointer so that pointer's value can be nil'ed - // dstVal = dstVal.Addr() - } - dstVal.Set(reflect.Zero(dstVal.Type())) - - } else if srcVal.Kind() == reflect.Ptr { - if srcVal.IsNil() { - srcVal = reflect.Zero(dstVal.Type()) - } else { - srcVal = reflect.ValueOf(src).Elem() - } - dstVal.Set(srcVal) - } else { - dstVal.Set(srcVal) - } - -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go deleted file mode 100644 index b2225566..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go +++ /dev/null @@ -1,142 +0,0 @@ -package awsutil_test - -import ( - "testing" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/stretchr/testify/assert" -) - -type Struct struct { - A []Struct - z []Struct - B *Struct - D *Struct - C string - E map[string]string -} - -var data = Struct{ - A: []Struct{{C: "value1"}, {C: "value2"}, {C: "value3"}}, - z: []Struct{{C: "value1"}, {C: "value2"}, {C: "value3"}}, - B: &Struct{B: &Struct{C: "terminal"}, D: &Struct{C: "terminal2"}}, - C: "initial", -} -var data2 = Struct{A: []Struct{ - {A: []Struct{{C: "1"}, {C: "1"}, {C: "1"}, {C: "1"}, {C: "1"}}}, - {A: []Struct{{C: "2"}, {C: "2"}, {C: "2"}, {C: "2"}, {C: "2"}}}, -}} - -func TestValueAtPathSuccess(t *testing.T) { - var testCases = []struct { - expect []interface{} - data interface{} - path string - }{ - {[]interface{}{"initial"}, data, "C"}, - {[]interface{}{"value1"}, data, "A[0].C"}, - {[]interface{}{"value2"}, data, "A[1].C"}, - {[]interface{}{"value3"}, data, "A[2].C"}, - {[]interface{}{"value3"}, data, "a[2].c"}, - {[]interface{}{"value3"}, data, "A[-1].C"}, - {[]interface{}{"value1", "value2", "value3"}, data, "A[].C"}, - {[]interface{}{"terminal"}, data, "B . B . C"}, - {[]interface{}{"initial"}, data, "A.D.X || C"}, - {[]interface{}{"initial"}, data, "A[0].B || C"}, - {[]interface{}{ - Struct{A: []Struct{{C: "1"}, {C: "1"}, {C: "1"}, {C: "1"}, {C: "1"}}}, - Struct{A: []Struct{{C: "2"}, {C: "2"}, {C: "2"}, {C: "2"}, {C: "2"}}}, - }, data2, "A"}, - } - for i, c := range testCases { - v, err := awsutil.ValuesAtPath(c.data, c.path) - assert.NoError(t, err, "case %d, expected no error, %s", i, c.path) - assert.Equal(t, c.expect, v, "case %d, %s", i, c.path) - } -} - -func TestValueAtPathFailure(t *testing.T) { - var testCases = []struct { - expect []interface{} - errContains string - data interface{} - path string - }{ - {nil, "", data, "C.x"}, - {nil, "SyntaxError: Invalid token: tDot", data, ".x"}, - {nil, "", data, "X.Y.Z"}, - {nil, "", data, "A[100].C"}, - {nil, "", data, "A[3].C"}, - {nil, "", data, "B.B.C.Z"}, - {nil, "", data, "z[-1].C"}, - {nil, "", nil, "A.B.C"}, - {[]interface{}{}, "", Struct{}, "A"}, - {nil, "", data, "A[0].B.C"}, - {nil, "", data, "D"}, - } - - for i, c := range testCases { - v, err := awsutil.ValuesAtPath(c.data, c.path) - if c.errContains != "" { - assert.Contains(t, err.Error(), c.errContains, "case %d, expected error, %s", i, c.path) - continue - } else { - assert.NoError(t, err, "case %d, expected no error, %s", i, c.path) - } - assert.Equal(t, c.expect, v, "case %d, %s", i, c.path) - } -} - -func TestSetValueAtPathSuccess(t *testing.T) { - var s Struct - awsutil.SetValueAtPath(&s, "C", "test1") - awsutil.SetValueAtPath(&s, "B.B.C", "test2") - awsutil.SetValueAtPath(&s, "B.D.C", "test3") - assert.Equal(t, "test1", s.C) - assert.Equal(t, "test2", s.B.B.C) - assert.Equal(t, "test3", s.B.D.C) - - awsutil.SetValueAtPath(&s, "B.*.C", "test0") - assert.Equal(t, "test0", s.B.B.C) - assert.Equal(t, "test0", s.B.D.C) - - var s2 Struct - awsutil.SetValueAtPath(&s2, "b.b.c", "test0") - assert.Equal(t, "test0", s2.B.B.C) - awsutil.SetValueAtPath(&s2, "A", []Struct{{}}) - assert.Equal(t, []Struct{{}}, s2.A) - - str := "foo" - - s3 := Struct{} - awsutil.SetValueAtPath(&s3, "b.b.c", str) - assert.Equal(t, "foo", s3.B.B.C) - - s3 = Struct{B: &Struct{B: &Struct{C: str}}} - awsutil.SetValueAtPath(&s3, "b.b.c", nil) - assert.Equal(t, "", s3.B.B.C) - - s3 = Struct{} - awsutil.SetValueAtPath(&s3, "b.b.c", nil) - assert.Equal(t, "", s3.B.B.C) - - s3 = Struct{} - awsutil.SetValueAtPath(&s3, "b.b.c", &str) - assert.Equal(t, "foo", s3.B.B.C) - - var s4 struct{ Name *string } - awsutil.SetValueAtPath(&s4, "Name", str) - assert.Equal(t, str, *s4.Name) - - s4 = struct{ Name *string }{} - awsutil.SetValueAtPath(&s4, "Name", nil) - assert.Equal(t, (*string)(nil), s4.Name) - - s4 = struct{ Name *string }{Name: &str} - awsutil.SetValueAtPath(&s4, "Name", nil) - assert.Equal(t, (*string)(nil), s4.Name) - - s4 = struct{ Name *string }{} - awsutil.SetValueAtPath(&s4, "Name", &str) - assert.Equal(t, str, *s4.Name) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go deleted file mode 100644 index fc38172f..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go +++ /dev/null @@ -1,107 +0,0 @@ -package awsutil - -import ( - "bytes" - "fmt" - "io" - "reflect" - "strings" -) - -// Prettify returns the string representation of a value. -func Prettify(i interface{}) string { - var buf bytes.Buffer - prettify(reflect.ValueOf(i), 0, &buf) - return buf.String() -} - -// prettify will recursively walk value v to build a textual -// representation of the value. -func prettify(v reflect.Value, indent int, buf *bytes.Buffer) { - for v.Kind() == reflect.Ptr { - v = v.Elem() - } - - switch v.Kind() { - case reflect.Struct: - strtype := v.Type().String() - if strtype == "time.Time" { - fmt.Fprintf(buf, "%s", v.Interface()) - break - } else if strings.HasPrefix(strtype, "io.") { - buf.WriteString("") - break - } - - buf.WriteString("{\n") - - names := []string{} - for i := 0; i < v.Type().NumField(); i++ { - name := v.Type().Field(i).Name - f := v.Field(i) - if name[0:1] == strings.ToLower(name[0:1]) { - continue // ignore unexported fields - } - if (f.Kind() == reflect.Ptr || f.Kind() == reflect.Slice || f.Kind() == reflect.Map) && f.IsNil() { - continue // ignore unset fields - } - names = append(names, name) - } - - for i, n := range names { - val := v.FieldByName(n) - buf.WriteString(strings.Repeat(" ", indent+2)) - buf.WriteString(n + ": ") - prettify(val, indent+2, buf) - - if i < len(names)-1 { - buf.WriteString(",\n") - } - } - - buf.WriteString("\n" + strings.Repeat(" ", indent) + "}") - case reflect.Slice: - nl, id, id2 := "", "", "" - if v.Len() > 3 { - nl, id, id2 = "\n", strings.Repeat(" ", indent), strings.Repeat(" ", indent+2) - } - buf.WriteString("[" + nl) - for i := 0; i < v.Len(); i++ { - buf.WriteString(id2) - prettify(v.Index(i), indent+2, buf) - - if i < v.Len()-1 { - buf.WriteString("," + nl) - } - } - - buf.WriteString(nl + id + "]") - case reflect.Map: - buf.WriteString("{\n") - - for i, k := range v.MapKeys() { - buf.WriteString(strings.Repeat(" ", indent+2)) - buf.WriteString(k.String() + ": ") - prettify(v.MapIndex(k), indent+2, buf) - - if i < v.Len()-1 { - buf.WriteString(",\n") - } - } - - buf.WriteString("\n" + strings.Repeat(" ", indent) + "}") - default: - if !v.IsValid() { - fmt.Fprint(buf, "") - return - } - format := "%v" - switch v.Interface().(type) { - case string: - format = "%q" - case io.ReadSeeker, io.Reader: - format = "buffer(%p)" - } - fmt.Fprintf(buf, format, v.Interface()) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go b/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go deleted file mode 100644 index b6432f1a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go +++ /dev/null @@ -1,89 +0,0 @@ -package awsutil - -import ( - "bytes" - "fmt" - "reflect" - "strings" -) - -// StringValue returns the string representation of a value. -func StringValue(i interface{}) string { - var buf bytes.Buffer - stringValue(reflect.ValueOf(i), 0, &buf) - return buf.String() -} - -func stringValue(v reflect.Value, indent int, buf *bytes.Buffer) { - for v.Kind() == reflect.Ptr { - v = v.Elem() - } - - switch v.Kind() { - case reflect.Struct: - buf.WriteString("{\n") - - names := []string{} - for i := 0; i < v.Type().NumField(); i++ { - name := v.Type().Field(i).Name - f := v.Field(i) - if name[0:1] == strings.ToLower(name[0:1]) { - continue // ignore unexported fields - } - if (f.Kind() == reflect.Ptr || f.Kind() == reflect.Slice) && f.IsNil() { - continue // ignore unset fields - } - names = append(names, name) - } - - for i, n := range names { - val := v.FieldByName(n) - buf.WriteString(strings.Repeat(" ", indent+2)) - buf.WriteString(n + ": ") - stringValue(val, indent+2, buf) - - if i < len(names)-1 { - buf.WriteString(",\n") - } - } - - buf.WriteString("\n" + strings.Repeat(" ", indent) + "}") - case reflect.Slice: - nl, id, id2 := "", "", "" - if v.Len() > 3 { - nl, id, id2 = "\n", strings.Repeat(" ", indent), strings.Repeat(" ", indent+2) - } - buf.WriteString("[" + nl) - for i := 0; i < v.Len(); i++ { - buf.WriteString(id2) - stringValue(v.Index(i), indent+2, buf) - - if i < v.Len()-1 { - buf.WriteString("," + nl) - } - } - - buf.WriteString(nl + id + "]") - case reflect.Map: - buf.WriteString("{\n") - - for i, k := range v.MapKeys() { - buf.WriteString(strings.Repeat(" ", indent+2)) - buf.WriteString(k.String() + ": ") - stringValue(v.MapIndex(k), indent+2, buf) - - if i < v.Len()-1 { - buf.WriteString(",\n") - } - } - - buf.WriteString("\n" + strings.Repeat(" ", indent) + "}") - default: - format := "%v" - switch v.Interface().(type) { - case string: - format = "%q" - } - fmt.Fprintf(buf, format, v.Interface()) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/client/client.go b/vendor/github.com/aws/aws-sdk-go/aws/client/client.go deleted file mode 100644 index 7c0e7d9d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/client/client.go +++ /dev/null @@ -1,137 +0,0 @@ -package client - -import ( - "fmt" - "net/http/httputil" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" -) - -// A Config provides configuration to a service client instance. -type Config struct { - Config *aws.Config - Handlers request.Handlers - Endpoint, SigningRegion string -} - -// ConfigProvider provides a generic way for a service client to receive -// the ClientConfig without circular dependencies. -type ConfigProvider interface { - ClientConfig(serviceName string, cfgs ...*aws.Config) Config -} - -// A Client implements the base client request and response handling -// used by all service clients. -type Client struct { - request.Retryer - metadata.ClientInfo - - Config aws.Config - Handlers request.Handlers -} - -// New will return a pointer to a new initialized service client. -func New(cfg aws.Config, info metadata.ClientInfo, handlers request.Handlers, options ...func(*Client)) *Client { - svc := &Client{ - Config: cfg, - ClientInfo: info, - Handlers: handlers, - } - - switch retryer, ok := cfg.Retryer.(request.Retryer); { - case ok: - svc.Retryer = retryer - case cfg.Retryer != nil && cfg.Logger != nil: - s := fmt.Sprintf("WARNING: %T does not implement request.Retryer; using DefaultRetryer instead", cfg.Retryer) - cfg.Logger.Log(s) - fallthrough - default: - maxRetries := aws.IntValue(cfg.MaxRetries) - if cfg.MaxRetries == nil || maxRetries == aws.UseServiceDefaultRetries { - maxRetries = 3 - } - svc.Retryer = DefaultRetryer{NumMaxRetries: maxRetries} - } - - svc.AddDebugHandlers() - - for _, option := range options { - option(svc) - } - - return svc -} - -// NewRequest returns a new Request pointer for the service API -// operation and parameters. -func (c *Client) NewRequest(operation *request.Operation, params interface{}, data interface{}) *request.Request { - return request.New(c.Config, c.ClientInfo, c.Handlers, c.Retryer, operation, params, data) -} - -// AddDebugHandlers injects debug logging handlers into the service to log request -// debug information. -func (c *Client) AddDebugHandlers() { - if !c.Config.LogLevel.AtLeast(aws.LogDebug) { - return - } - - c.Handlers.Send.PushFront(logRequest) - c.Handlers.Send.PushBack(logResponse) -} - -const logReqMsg = `DEBUG: Request %s/%s Details: ----[ REQUEST POST-SIGN ]----------------------------- -%s ------------------------------------------------------` - -const logReqErrMsg = `DEBUG ERROR: Request %s/%s: ----[ REQUEST DUMP ERROR ]----------------------------- -%s ------------------------------------------------------` - -func logRequest(r *request.Request) { - logBody := r.Config.LogLevel.Matches(aws.LogDebugWithHTTPBody) - dumpedBody, err := httputil.DumpRequestOut(r.HTTPRequest, logBody) - if err != nil { - r.Config.Logger.Log(fmt.Sprintf(logReqErrMsg, r.ClientInfo.ServiceName, r.Operation.Name, err)) - return - } - - if logBody { - // Reset the request body because dumpRequest will re-wrap the r.HTTPRequest's - // Body as a NoOpCloser and will not be reset after read by the HTTP - // client reader. - r.ResetBody() - } - - r.Config.Logger.Log(fmt.Sprintf(logReqMsg, r.ClientInfo.ServiceName, r.Operation.Name, string(dumpedBody))) -} - -const logRespMsg = `DEBUG: Response %s/%s Details: ----[ RESPONSE ]-------------------------------------- -%s ------------------------------------------------------` - -const logRespErrMsg = `DEBUG ERROR: Response %s/%s: ----[ RESPONSE DUMP ERROR ]----------------------------- -%s ------------------------------------------------------` - -func logResponse(r *request.Request) { - var msg = "no response data" - if r.HTTPResponse != nil { - logBody := r.Config.LogLevel.Matches(aws.LogDebugWithHTTPBody) - dumpedBody, err := httputil.DumpResponse(r.HTTPResponse, logBody) - if err != nil { - r.Config.Logger.Log(fmt.Sprintf(logRespErrMsg, r.ClientInfo.ServiceName, r.Operation.Name, err)) - return - } - - msg = string(dumpedBody) - } else if r.Error != nil { - msg = r.Error.Error() - } - r.Config.Logger.Log(fmt.Sprintf(logRespMsg, r.ClientInfo.ServiceName, r.Operation.Name, msg)) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go b/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go deleted file mode 100644 index 43a3676b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go +++ /dev/null @@ -1,90 +0,0 @@ -package client - -import ( - "math/rand" - "sync" - "time" - - "github.com/aws/aws-sdk-go/aws/request" -) - -// DefaultRetryer implements basic retry logic using exponential backoff for -// most services. If you want to implement custom retry logic, implement the -// request.Retryer interface or create a structure type that composes this -// struct and override the specific methods. For example, to override only -// the MaxRetries method: -// -// type retryer struct { -// service.DefaultRetryer -// } -// -// // This implementation always has 100 max retries -// func (d retryer) MaxRetries() uint { return 100 } -type DefaultRetryer struct { - NumMaxRetries int -} - -// MaxRetries returns the number of maximum returns the service will use to make -// an individual API request. -func (d DefaultRetryer) MaxRetries() int { - return d.NumMaxRetries -} - -var seededRand = rand.New(&lockedSource{src: rand.NewSource(time.Now().UnixNano())}) - -// RetryRules returns the delay duration before retrying this request again -func (d DefaultRetryer) RetryRules(r *request.Request) time.Duration { - // Set the upper limit of delay in retrying at ~five minutes - minTime := 30 - throttle := d.shouldThrottle(r) - if throttle { - minTime = 500 - } - - retryCount := r.RetryCount - if retryCount > 13 { - retryCount = 13 - } else if throttle && retryCount > 8 { - retryCount = 8 - } - - delay := (1 << uint(retryCount)) * (seededRand.Intn(minTime) + minTime) - return time.Duration(delay) * time.Millisecond -} - -// ShouldRetry returns true if the request should be retried. -func (d DefaultRetryer) ShouldRetry(r *request.Request) bool { - if r.HTTPResponse.StatusCode >= 500 { - return true - } - return r.IsErrorRetryable() || d.shouldThrottle(r) -} - -// ShouldThrottle returns true if the request should be throttled. -func (d DefaultRetryer) shouldThrottle(r *request.Request) bool { - if r.HTTPResponse.StatusCode == 502 || - r.HTTPResponse.StatusCode == 503 || - r.HTTPResponse.StatusCode == 504 { - return true - } - return r.IsErrorThrottle() -} - -// lockedSource is a thread-safe implementation of rand.Source -type lockedSource struct { - lk sync.Mutex - src rand.Source -} - -func (r *lockedSource) Int63() (n int64) { - r.lk.Lock() - n = r.src.Int63() - r.lk.Unlock() - return -} - -func (r *lockedSource) Seed(seed int64) { - r.lk.Lock() - r.src.Seed(seed) - r.lk.Unlock() -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go b/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go deleted file mode 100644 index 4778056d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go +++ /dev/null @@ -1,12 +0,0 @@ -package metadata - -// ClientInfo wraps immutable data from the client.Client structure. -type ClientInfo struct { - ServiceName string - APIVersion string - Endpoint string - SigningName string - SigningRegion string - JSONVersion string - TargetPrefix string -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/config.go b/vendor/github.com/aws/aws-sdk-go/aws/config.go deleted file mode 100644 index fca92258..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/config.go +++ /dev/null @@ -1,422 +0,0 @@ -package aws - -import ( - "net/http" - "time" - - "github.com/aws/aws-sdk-go/aws/credentials" -) - -// UseServiceDefaultRetries instructs the config to use the service's own -// default number of retries. This will be the default action if -// Config.MaxRetries is nil also. -const UseServiceDefaultRetries = -1 - -// RequestRetryer is an alias for a type that implements the request.Retryer -// interface. -type RequestRetryer interface{} - -// A Config provides service configuration for service clients. By default, -// all clients will use the defaults.DefaultConfig tructure. -// -// // Create Session with MaxRetry configuration to be shared by multiple -// // service clients. -// sess, err := session.NewSession(&aws.Config{ -// MaxRetries: aws.Int(3), -// }) -// -// // Create S3 service client with a specific Region. -// svc := s3.New(sess, &aws.Config{ -// Region: aws.String("us-west-2"), -// }) -type Config struct { - // Enables verbose error printing of all credential chain errors. - // Should be used when wanting to see all errors while attempting to - // retrieve credentials. - CredentialsChainVerboseErrors *bool - - // The credentials object to use when signing requests. Defaults to a - // chain of credential providers to search for credentials in environment - // variables, shared credential file, and EC2 Instance Roles. - Credentials *credentials.Credentials - - // An optional endpoint URL (hostname only or fully qualified URI) - // that overrides the default generated endpoint for a client. Set this - // to `""` to use the default generated endpoint. - // - // @note You must still provide a `Region` value when specifying an - // endpoint for a client. - Endpoint *string - - // The region to send requests to. This parameter is required and must - // be configured globally or on a per-client basis unless otherwise - // noted. A full list of regions is found in the "Regions and Endpoints" - // document. - // - // @see http://docs.aws.amazon.com/general/latest/gr/rande.html - // AWS Regions and Endpoints - Region *string - - // Set this to `true` to disable SSL when sending requests. Defaults - // to `false`. - DisableSSL *bool - - // The HTTP client to use when sending requests. Defaults to - // `http.DefaultClient`. - HTTPClient *http.Client - - // An integer value representing the logging level. The default log level - // is zero (LogOff), which represents no logging. To enable logging set - // to a LogLevel Value. - LogLevel *LogLevelType - - // The logger writer interface to write logging messages to. Defaults to - // standard out. - Logger Logger - - // The maximum number of times that a request will be retried for failures. - // Defaults to -1, which defers the max retry setting to the service - // specific configuration. - MaxRetries *int - - // Retryer guides how HTTP requests should be retried in case of - // recoverable failures. - // - // When nil or the value does not implement the request.Retryer interface, - // the request.DefaultRetryer will be used. - // - // When both Retryer and MaxRetries are non-nil, the former is used and - // the latter ignored. - // - // To set the Retryer field in a type-safe manner and with chaining, use - // the request.WithRetryer helper function: - // - // cfg := request.WithRetryer(aws.NewConfig(), myRetryer) - // - Retryer RequestRetryer - - // Disables semantic parameter validation, which validates input for - // missing required fields and/or other semantic request input errors. - DisableParamValidation *bool - - // Disables the computation of request and response checksums, e.g., - // CRC32 checksums in Amazon DynamoDB. - DisableComputeChecksums *bool - - // Set this to `true` to force the request to use path-style addressing, - // i.e., `http://s3.amazonaws.com/BUCKET/KEY`. By default, the S3 client - // will use virtual hosted bucket addressing when possible - // (`http://BUCKET.s3.amazonaws.com/KEY`). - // - // @note This configuration option is specific to the Amazon S3 service. - // @see http://docs.aws.amazon.com/AmazonS3/latest/dev/VirtualHosting.html - // Amazon S3: Virtual Hosting of Buckets - S3ForcePathStyle *bool - - // Set this to `true` to disable the SDK adding the `Expect: 100-Continue` - // header to PUT requests over 2MB of content. 100-Continue instructs the - // HTTP client not to send the body until the service responds with a - // `continue` status. This is useful to prevent sending the request body - // until after the request is authenticated, and validated. - // - // http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html - // - // 100-Continue is only enabled for Go 1.6 and above. See `http.Transport`'s - // `ExpectContinueTimeout` for information on adjusting the continue wait - // timeout. https://golang.org/pkg/net/http/#Transport - // - // You should use this flag to disble 100-Continue if you experience issues - // with proxies or third party S3 compatible services. - S3Disable100Continue *bool - - // Set this to `true` to enable S3 Accelerate feature. For all operations - // compatible with S3 Accelerate will use the accelerate endpoint for - // requests. Requests not compatible will fall back to normal S3 requests. - // - // The bucket must be enable for accelerate to be used with S3 client with - // accelerate enabled. If the bucket is not enabled for accelerate an error - // will be returned. The bucket name must be DNS compatible to also work - // with accelerate. - // - // Not compatible with UseDualStack requests will fail if both flags are - // specified. - S3UseAccelerate *bool - - // Set this to `true` to disable the EC2Metadata client from overriding the - // default http.Client's Timeout. This is helpful if you do not want the - // EC2Metadata client to create a new http.Client. This options is only - // meaningful if you're not already using a custom HTTP client with the - // SDK. Enabled by default. - // - // Must be set and provided to the session.NewSession() in order to disable - // the EC2Metadata overriding the timeout for default credentials chain. - // - // Example: - // sess, err := session.NewSession(aws.NewConfig().WithEC2MetadataDiableTimeoutOverride(true)) - // - // svc := s3.New(sess) - // - EC2MetadataDisableTimeoutOverride *bool - - // Instructs the endpiont to be generated for a service client to - // be the dual stack endpoint. The dual stack endpoint will support - // both IPv4 and IPv6 addressing. - // - // Setting this for a service which does not support dual stack will fail - // to make requets. It is not recommended to set this value on the session - // as it will apply to all service clients created with the session. Even - // services which don't support dual stack endpoints. - // - // If the Endpoint config value is also provided the UseDualStack flag - // will be ignored. - // - // Only supported with. - // - // sess, err := session.NewSession() - // - // svc := s3.New(sess, &aws.Config{ - // UseDualStack: aws.Bool(true), - // }) - UseDualStack *bool - - // SleepDelay is an override for the func the SDK will call when sleeping - // during the lifecycle of a request. Specifically this will be used for - // request delays. This value should only be used for testing. To adjust - // the delay of a request see the aws/client.DefaultRetryer and - // aws/request.Retryer. - SleepDelay func(time.Duration) -} - -// NewConfig returns a new Config pointer that can be chained with builder -// methods to set multiple configuration values inline without using pointers. -// -// // Create Session with MaxRetry configuration to be shared by multiple -// // service clients. -// sess, err := session.NewSession(aws.NewConfig(). -// WithMaxRetries(3), -// ) -// -// // Create S3 service client with a specific Region. -// svc := s3.New(sess, aws.NewConfig(). -// WithRegion("us-west-2"), -// ) -func NewConfig() *Config { - return &Config{} -} - -// WithCredentialsChainVerboseErrors sets a config verbose errors boolean and returning -// a Config pointer. -func (c *Config) WithCredentialsChainVerboseErrors(verboseErrs bool) *Config { - c.CredentialsChainVerboseErrors = &verboseErrs - return c -} - -// WithCredentials sets a config Credentials value returning a Config pointer -// for chaining. -func (c *Config) WithCredentials(creds *credentials.Credentials) *Config { - c.Credentials = creds - return c -} - -// WithEndpoint sets a config Endpoint value returning a Config pointer for -// chaining. -func (c *Config) WithEndpoint(endpoint string) *Config { - c.Endpoint = &endpoint - return c -} - -// WithRegion sets a config Region value returning a Config pointer for -// chaining. -func (c *Config) WithRegion(region string) *Config { - c.Region = ®ion - return c -} - -// WithDisableSSL sets a config DisableSSL value returning a Config pointer -// for chaining. -func (c *Config) WithDisableSSL(disable bool) *Config { - c.DisableSSL = &disable - return c -} - -// WithHTTPClient sets a config HTTPClient value returning a Config pointer -// for chaining. -func (c *Config) WithHTTPClient(client *http.Client) *Config { - c.HTTPClient = client - return c -} - -// WithMaxRetries sets a config MaxRetries value returning a Config pointer -// for chaining. -func (c *Config) WithMaxRetries(max int) *Config { - c.MaxRetries = &max - return c -} - -// WithDisableParamValidation sets a config DisableParamValidation value -// returning a Config pointer for chaining. -func (c *Config) WithDisableParamValidation(disable bool) *Config { - c.DisableParamValidation = &disable - return c -} - -// WithDisableComputeChecksums sets a config DisableComputeChecksums value -// returning a Config pointer for chaining. -func (c *Config) WithDisableComputeChecksums(disable bool) *Config { - c.DisableComputeChecksums = &disable - return c -} - -// WithLogLevel sets a config LogLevel value returning a Config pointer for -// chaining. -func (c *Config) WithLogLevel(level LogLevelType) *Config { - c.LogLevel = &level - return c -} - -// WithLogger sets a config Logger value returning a Config pointer for -// chaining. -func (c *Config) WithLogger(logger Logger) *Config { - c.Logger = logger - return c -} - -// WithS3ForcePathStyle sets a config S3ForcePathStyle value returning a Config -// pointer for chaining. -func (c *Config) WithS3ForcePathStyle(force bool) *Config { - c.S3ForcePathStyle = &force - return c -} - -// WithS3Disable100Continue sets a config S3Disable100Continue value returning -// a Config pointer for chaining. -func (c *Config) WithS3Disable100Continue(disable bool) *Config { - c.S3Disable100Continue = &disable - return c -} - -// WithS3UseAccelerate sets a config S3UseAccelerate value returning a Config -// pointer for chaining. -func (c *Config) WithS3UseAccelerate(enable bool) *Config { - c.S3UseAccelerate = &enable - return c -} - -// WithUseDualStack sets a config UseDualStack value returning a Config -// pointer for chaining. -func (c *Config) WithUseDualStack(enable bool) *Config { - c.UseDualStack = &enable - return c -} - -// WithEC2MetadataDisableTimeoutOverride sets a config EC2MetadataDisableTimeoutOverride value -// returning a Config pointer for chaining. -func (c *Config) WithEC2MetadataDisableTimeoutOverride(enable bool) *Config { - c.EC2MetadataDisableTimeoutOverride = &enable - return c -} - -// WithSleepDelay overrides the function used to sleep while waiting for the -// next retry. Defaults to time.Sleep. -func (c *Config) WithSleepDelay(fn func(time.Duration)) *Config { - c.SleepDelay = fn - return c -} - -// MergeIn merges the passed in configs into the existing config object. -func (c *Config) MergeIn(cfgs ...*Config) { - for _, other := range cfgs { - mergeInConfig(c, other) - } -} - -func mergeInConfig(dst *Config, other *Config) { - if other == nil { - return - } - - if other.CredentialsChainVerboseErrors != nil { - dst.CredentialsChainVerboseErrors = other.CredentialsChainVerboseErrors - } - - if other.Credentials != nil { - dst.Credentials = other.Credentials - } - - if other.Endpoint != nil { - dst.Endpoint = other.Endpoint - } - - if other.Region != nil { - dst.Region = other.Region - } - - if other.DisableSSL != nil { - dst.DisableSSL = other.DisableSSL - } - - if other.HTTPClient != nil { - dst.HTTPClient = other.HTTPClient - } - - if other.LogLevel != nil { - dst.LogLevel = other.LogLevel - } - - if other.Logger != nil { - dst.Logger = other.Logger - } - - if other.MaxRetries != nil { - dst.MaxRetries = other.MaxRetries - } - - if other.Retryer != nil { - dst.Retryer = other.Retryer - } - - if other.DisableParamValidation != nil { - dst.DisableParamValidation = other.DisableParamValidation - } - - if other.DisableComputeChecksums != nil { - dst.DisableComputeChecksums = other.DisableComputeChecksums - } - - if other.S3ForcePathStyle != nil { - dst.S3ForcePathStyle = other.S3ForcePathStyle - } - - if other.S3Disable100Continue != nil { - dst.S3Disable100Continue = other.S3Disable100Continue - } - - if other.S3UseAccelerate != nil { - dst.S3UseAccelerate = other.S3UseAccelerate - } - - if other.UseDualStack != nil { - dst.UseDualStack = other.UseDualStack - } - - if other.EC2MetadataDisableTimeoutOverride != nil { - dst.EC2MetadataDisableTimeoutOverride = other.EC2MetadataDisableTimeoutOverride - } - - if other.SleepDelay != nil { - dst.SleepDelay = other.SleepDelay - } -} - -// Copy will return a shallow copy of the Config object. If any additional -// configurations are provided they will be merged into the new config returned. -func (c *Config) Copy(cfgs ...*Config) *Config { - dst := &Config{} - dst.MergeIn(c) - - for _, cfg := range cfgs { - dst.MergeIn(cfg) - } - - return dst -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/config_test.go b/vendor/github.com/aws/aws-sdk-go/aws/config_test.go deleted file mode 100644 index fe97a31f..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/config_test.go +++ /dev/null @@ -1,86 +0,0 @@ -package aws - -import ( - "net/http" - "reflect" - "testing" - - "github.com/aws/aws-sdk-go/aws/credentials" -) - -var testCredentials = credentials.NewStaticCredentials("AKID", "SECRET", "SESSION") - -var copyTestConfig = Config{ - Credentials: testCredentials, - Endpoint: String("CopyTestEndpoint"), - Region: String("COPY_TEST_AWS_REGION"), - DisableSSL: Bool(true), - HTTPClient: http.DefaultClient, - LogLevel: LogLevel(LogDebug), - Logger: NewDefaultLogger(), - MaxRetries: Int(3), - DisableParamValidation: Bool(true), - DisableComputeChecksums: Bool(true), - S3ForcePathStyle: Bool(true), -} - -func TestCopy(t *testing.T) { - want := copyTestConfig - got := copyTestConfig.Copy() - if !reflect.DeepEqual(*got, want) { - t.Errorf("Copy() = %+v", got) - t.Errorf(" want %+v", want) - } - - got.Region = String("other") - if got.Region == want.Region { - t.Errorf("Expect setting copy values not not reflect in source") - } -} - -func TestCopyReturnsNewInstance(t *testing.T) { - want := copyTestConfig - got := copyTestConfig.Copy() - if got == &want { - t.Errorf("Copy() = %p; want different instance as source %p", got, &want) - } -} - -var mergeTestZeroValueConfig = Config{} - -var mergeTestConfig = Config{ - Credentials: testCredentials, - Endpoint: String("MergeTestEndpoint"), - Region: String("MERGE_TEST_AWS_REGION"), - DisableSSL: Bool(true), - HTTPClient: http.DefaultClient, - LogLevel: LogLevel(LogDebug), - Logger: NewDefaultLogger(), - MaxRetries: Int(10), - DisableParamValidation: Bool(true), - DisableComputeChecksums: Bool(true), - S3ForcePathStyle: Bool(true), -} - -var mergeTests = []struct { - cfg *Config - in *Config - want *Config -}{ - {&Config{}, nil, &Config{}}, - {&Config{}, &mergeTestZeroValueConfig, &Config{}}, - {&Config{}, &mergeTestConfig, &mergeTestConfig}, -} - -func TestMerge(t *testing.T) { - for i, tt := range mergeTests { - got := tt.cfg.Copy() - got.MergeIn(tt.in) - if !reflect.DeepEqual(got, tt.want) { - t.Errorf("Config %d %+v", i, tt.cfg) - t.Errorf(" Merge(%+v)", tt.in) - t.Errorf(" got %+v", got) - t.Errorf(" want %+v", tt.want) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go b/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go deleted file mode 100644 index 3b73a7da..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go +++ /dev/null @@ -1,369 +0,0 @@ -package aws - -import "time" - -// String returns a pointer to the string value passed in. -func String(v string) *string { - return &v -} - -// StringValue returns the value of the string pointer passed in or -// "" if the pointer is nil. -func StringValue(v *string) string { - if v != nil { - return *v - } - return "" -} - -// StringSlice converts a slice of string values into a slice of -// string pointers -func StringSlice(src []string) []*string { - dst := make([]*string, len(src)) - for i := 0; i < len(src); i++ { - dst[i] = &(src[i]) - } - return dst -} - -// StringValueSlice converts a slice of string pointers into a slice of -// string values -func StringValueSlice(src []*string) []string { - dst := make([]string, len(src)) - for i := 0; i < len(src); i++ { - if src[i] != nil { - dst[i] = *(src[i]) - } - } - return dst -} - -// StringMap converts a string map of string values into a string -// map of string pointers -func StringMap(src map[string]string) map[string]*string { - dst := make(map[string]*string) - for k, val := range src { - v := val - dst[k] = &v - } - return dst -} - -// StringValueMap converts a string map of string pointers into a string -// map of string values -func StringValueMap(src map[string]*string) map[string]string { - dst := make(map[string]string) - for k, val := range src { - if val != nil { - dst[k] = *val - } - } - return dst -} - -// Bool returns a pointer to the bool value passed in. -func Bool(v bool) *bool { - return &v -} - -// BoolValue returns the value of the bool pointer passed in or -// false if the pointer is nil. -func BoolValue(v *bool) bool { - if v != nil { - return *v - } - return false -} - -// BoolSlice converts a slice of bool values into a slice of -// bool pointers -func BoolSlice(src []bool) []*bool { - dst := make([]*bool, len(src)) - for i := 0; i < len(src); i++ { - dst[i] = &(src[i]) - } - return dst -} - -// BoolValueSlice converts a slice of bool pointers into a slice of -// bool values -func BoolValueSlice(src []*bool) []bool { - dst := make([]bool, len(src)) - for i := 0; i < len(src); i++ { - if src[i] != nil { - dst[i] = *(src[i]) - } - } - return dst -} - -// BoolMap converts a string map of bool values into a string -// map of bool pointers -func BoolMap(src map[string]bool) map[string]*bool { - dst := make(map[string]*bool) - for k, val := range src { - v := val - dst[k] = &v - } - return dst -} - -// BoolValueMap converts a string map of bool pointers into a string -// map of bool values -func BoolValueMap(src map[string]*bool) map[string]bool { - dst := make(map[string]bool) - for k, val := range src { - if val != nil { - dst[k] = *val - } - } - return dst -} - -// Int returns a pointer to the int value passed in. -func Int(v int) *int { - return &v -} - -// IntValue returns the value of the int pointer passed in or -// 0 if the pointer is nil. -func IntValue(v *int) int { - if v != nil { - return *v - } - return 0 -} - -// IntSlice converts a slice of int values into a slice of -// int pointers -func IntSlice(src []int) []*int { - dst := make([]*int, len(src)) - for i := 0; i < len(src); i++ { - dst[i] = &(src[i]) - } - return dst -} - -// IntValueSlice converts a slice of int pointers into a slice of -// int values -func IntValueSlice(src []*int) []int { - dst := make([]int, len(src)) - for i := 0; i < len(src); i++ { - if src[i] != nil { - dst[i] = *(src[i]) - } - } - return dst -} - -// IntMap converts a string map of int values into a string -// map of int pointers -func IntMap(src map[string]int) map[string]*int { - dst := make(map[string]*int) - for k, val := range src { - v := val - dst[k] = &v - } - return dst -} - -// IntValueMap converts a string map of int pointers into a string -// map of int values -func IntValueMap(src map[string]*int) map[string]int { - dst := make(map[string]int) - for k, val := range src { - if val != nil { - dst[k] = *val - } - } - return dst -} - -// Int64 returns a pointer to the int64 value passed in. -func Int64(v int64) *int64 { - return &v -} - -// Int64Value returns the value of the int64 pointer passed in or -// 0 if the pointer is nil. -func Int64Value(v *int64) int64 { - if v != nil { - return *v - } - return 0 -} - -// Int64Slice converts a slice of int64 values into a slice of -// int64 pointers -func Int64Slice(src []int64) []*int64 { - dst := make([]*int64, len(src)) - for i := 0; i < len(src); i++ { - dst[i] = &(src[i]) - } - return dst -} - -// Int64ValueSlice converts a slice of int64 pointers into a slice of -// int64 values -func Int64ValueSlice(src []*int64) []int64 { - dst := make([]int64, len(src)) - for i := 0; i < len(src); i++ { - if src[i] != nil { - dst[i] = *(src[i]) - } - } - return dst -} - -// Int64Map converts a string map of int64 values into a string -// map of int64 pointers -func Int64Map(src map[string]int64) map[string]*int64 { - dst := make(map[string]*int64) - for k, val := range src { - v := val - dst[k] = &v - } - return dst -} - -// Int64ValueMap converts a string map of int64 pointers into a string -// map of int64 values -func Int64ValueMap(src map[string]*int64) map[string]int64 { - dst := make(map[string]int64) - for k, val := range src { - if val != nil { - dst[k] = *val - } - } - return dst -} - -// Float64 returns a pointer to the float64 value passed in. -func Float64(v float64) *float64 { - return &v -} - -// Float64Value returns the value of the float64 pointer passed in or -// 0 if the pointer is nil. -func Float64Value(v *float64) float64 { - if v != nil { - return *v - } - return 0 -} - -// Float64Slice converts a slice of float64 values into a slice of -// float64 pointers -func Float64Slice(src []float64) []*float64 { - dst := make([]*float64, len(src)) - for i := 0; i < len(src); i++ { - dst[i] = &(src[i]) - } - return dst -} - -// Float64ValueSlice converts a slice of float64 pointers into a slice of -// float64 values -func Float64ValueSlice(src []*float64) []float64 { - dst := make([]float64, len(src)) - for i := 0; i < len(src); i++ { - if src[i] != nil { - dst[i] = *(src[i]) - } - } - return dst -} - -// Float64Map converts a string map of float64 values into a string -// map of float64 pointers -func Float64Map(src map[string]float64) map[string]*float64 { - dst := make(map[string]*float64) - for k, val := range src { - v := val - dst[k] = &v - } - return dst -} - -// Float64ValueMap converts a string map of float64 pointers into a string -// map of float64 values -func Float64ValueMap(src map[string]*float64) map[string]float64 { - dst := make(map[string]float64) - for k, val := range src { - if val != nil { - dst[k] = *val - } - } - return dst -} - -// Time returns a pointer to the time.Time value passed in. -func Time(v time.Time) *time.Time { - return &v -} - -// TimeValue returns the value of the time.Time pointer passed in or -// time.Time{} if the pointer is nil. -func TimeValue(v *time.Time) time.Time { - if v != nil { - return *v - } - return time.Time{} -} - -// TimeUnixMilli returns a Unix timestamp in milliseconds from "January 1, 1970 UTC". -// The result is undefined if the Unix time cannot be represented by an int64. -// Which includes calling TimeUnixMilli on a zero Time is undefined. -// -// This utility is useful for service API's such as CloudWatch Logs which require -// their unix time values to be in milliseconds. -// -// See Go stdlib https://golang.org/pkg/time/#Time.UnixNano for more information. -func TimeUnixMilli(t time.Time) int64 { - return t.UnixNano() / int64(time.Millisecond/time.Nanosecond) -} - -// TimeSlice converts a slice of time.Time values into a slice of -// time.Time pointers -func TimeSlice(src []time.Time) []*time.Time { - dst := make([]*time.Time, len(src)) - for i := 0; i < len(src); i++ { - dst[i] = &(src[i]) - } - return dst -} - -// TimeValueSlice converts a slice of time.Time pointers into a slice of -// time.Time values -func TimeValueSlice(src []*time.Time) []time.Time { - dst := make([]time.Time, len(src)) - for i := 0; i < len(src); i++ { - if src[i] != nil { - dst[i] = *(src[i]) - } - } - return dst -} - -// TimeMap converts a string map of time.Time values into a string -// map of time.Time pointers -func TimeMap(src map[string]time.Time) map[string]*time.Time { - dst := make(map[string]*time.Time) - for k, val := range src { - v := val - dst[k] = &v - } - return dst -} - -// TimeValueMap converts a string map of time.Time pointers into a string -// map of time.Time values -func TimeValueMap(src map[string]*time.Time) map[string]time.Time { - dst := make(map[string]time.Time) - for k, val := range src { - if val != nil { - dst[k] = *val - } - } - return dst -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go b/vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go deleted file mode 100644 index df7a3e5d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go +++ /dev/null @@ -1,437 +0,0 @@ -package aws - -import ( - "testing" - "time" - - "github.com/stretchr/testify/assert" -) - -var testCasesStringSlice = [][]string{ - {"a", "b", "c", "d", "e"}, - {"a", "b", "", "", "e"}, -} - -func TestStringSlice(t *testing.T) { - for idx, in := range testCasesStringSlice { - if in == nil { - continue - } - out := StringSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := StringValueSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesStringValueSlice = [][]*string{ - {String("a"), String("b"), nil, String("c")}, -} - -func TestStringValueSlice(t *testing.T) { - for idx, in := range testCasesStringValueSlice { - if in == nil { - continue - } - out := StringValueSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - if in[i] == nil { - assert.Empty(t, out[i], "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, *(in[i]), out[i], "Unexpected value at idx %d", idx) - } - } - - out2 := StringSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - for i := range out2 { - if in[i] == nil { - assert.Empty(t, *(out2[i]), "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, in[i], out2[i], "Unexpected value at idx %d", idx) - } - } - } -} - -var testCasesStringMap = []map[string]string{ - {"a": "1", "b": "2", "c": "3"}, -} - -func TestStringMap(t *testing.T) { - for idx, in := range testCasesStringMap { - if in == nil { - continue - } - out := StringMap(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := StringValueMap(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesBoolSlice = [][]bool{ - {true, true, false, false}, -} - -func TestBoolSlice(t *testing.T) { - for idx, in := range testCasesBoolSlice { - if in == nil { - continue - } - out := BoolSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := BoolValueSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesBoolValueSlice = [][]*bool{} - -func TestBoolValueSlice(t *testing.T) { - for idx, in := range testCasesBoolValueSlice { - if in == nil { - continue - } - out := BoolValueSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - if in[i] == nil { - assert.Empty(t, out[i], "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, *(in[i]), out[i], "Unexpected value at idx %d", idx) - } - } - - out2 := BoolSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - for i := range out2 { - if in[i] == nil { - assert.Empty(t, *(out2[i]), "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, in[i], out2[i], "Unexpected value at idx %d", idx) - } - } - } -} - -var testCasesBoolMap = []map[string]bool{ - {"a": true, "b": false, "c": true}, -} - -func TestBoolMap(t *testing.T) { - for idx, in := range testCasesBoolMap { - if in == nil { - continue - } - out := BoolMap(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := BoolValueMap(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesIntSlice = [][]int{ - {1, 2, 3, 4}, -} - -func TestIntSlice(t *testing.T) { - for idx, in := range testCasesIntSlice { - if in == nil { - continue - } - out := IntSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := IntValueSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesIntValueSlice = [][]*int{} - -func TestIntValueSlice(t *testing.T) { - for idx, in := range testCasesIntValueSlice { - if in == nil { - continue - } - out := IntValueSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - if in[i] == nil { - assert.Empty(t, out[i], "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, *(in[i]), out[i], "Unexpected value at idx %d", idx) - } - } - - out2 := IntSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - for i := range out2 { - if in[i] == nil { - assert.Empty(t, *(out2[i]), "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, in[i], out2[i], "Unexpected value at idx %d", idx) - } - } - } -} - -var testCasesIntMap = []map[string]int{ - {"a": 3, "b": 2, "c": 1}, -} - -func TestIntMap(t *testing.T) { - for idx, in := range testCasesIntMap { - if in == nil { - continue - } - out := IntMap(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := IntValueMap(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesInt64Slice = [][]int64{ - {1, 2, 3, 4}, -} - -func TestInt64Slice(t *testing.T) { - for idx, in := range testCasesInt64Slice { - if in == nil { - continue - } - out := Int64Slice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := Int64ValueSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesInt64ValueSlice = [][]*int64{} - -func TestInt64ValueSlice(t *testing.T) { - for idx, in := range testCasesInt64ValueSlice { - if in == nil { - continue - } - out := Int64ValueSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - if in[i] == nil { - assert.Empty(t, out[i], "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, *(in[i]), out[i], "Unexpected value at idx %d", idx) - } - } - - out2 := Int64Slice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - for i := range out2 { - if in[i] == nil { - assert.Empty(t, *(out2[i]), "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, in[i], out2[i], "Unexpected value at idx %d", idx) - } - } - } -} - -var testCasesInt64Map = []map[string]int64{ - {"a": 3, "b": 2, "c": 1}, -} - -func TestInt64Map(t *testing.T) { - for idx, in := range testCasesInt64Map { - if in == nil { - continue - } - out := Int64Map(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := Int64ValueMap(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesFloat64Slice = [][]float64{ - {1, 2, 3, 4}, -} - -func TestFloat64Slice(t *testing.T) { - for idx, in := range testCasesFloat64Slice { - if in == nil { - continue - } - out := Float64Slice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := Float64ValueSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesFloat64ValueSlice = [][]*float64{} - -func TestFloat64ValueSlice(t *testing.T) { - for idx, in := range testCasesFloat64ValueSlice { - if in == nil { - continue - } - out := Float64ValueSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - if in[i] == nil { - assert.Empty(t, out[i], "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, *(in[i]), out[i], "Unexpected value at idx %d", idx) - } - } - - out2 := Float64Slice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - for i := range out2 { - if in[i] == nil { - assert.Empty(t, *(out2[i]), "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, in[i], out2[i], "Unexpected value at idx %d", idx) - } - } - } -} - -var testCasesFloat64Map = []map[string]float64{ - {"a": 3, "b": 2, "c": 1}, -} - -func TestFloat64Map(t *testing.T) { - for idx, in := range testCasesFloat64Map { - if in == nil { - continue - } - out := Float64Map(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := Float64ValueMap(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesTimeSlice = [][]time.Time{ - {time.Now(), time.Now().AddDate(100, 0, 0)}, -} - -func TestTimeSlice(t *testing.T) { - for idx, in := range testCasesTimeSlice { - if in == nil { - continue - } - out := TimeSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := TimeValueSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} - -var testCasesTimeValueSlice = [][]*time.Time{} - -func TestTimeValueSlice(t *testing.T) { - for idx, in := range testCasesTimeValueSlice { - if in == nil { - continue - } - out := TimeValueSlice(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - if in[i] == nil { - assert.Empty(t, out[i], "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, *(in[i]), out[i], "Unexpected value at idx %d", idx) - } - } - - out2 := TimeSlice(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - for i := range out2 { - if in[i] == nil { - assert.Empty(t, *(out2[i]), "Unexpected value at idx %d", idx) - } else { - assert.Equal(t, in[i], out2[i], "Unexpected value at idx %d", idx) - } - } - } -} - -var testCasesTimeMap = []map[string]time.Time{ - {"a": time.Now().AddDate(-100, 0, 0), "b": time.Now()}, -} - -func TestTimeMap(t *testing.T) { - for idx, in := range testCasesTimeMap { - if in == nil { - continue - } - out := TimeMap(in) - assert.Len(t, out, len(in), "Unexpected len at idx %d", idx) - for i := range out { - assert.Equal(t, in[i], *(out[i]), "Unexpected value at idx %d", idx) - } - - out2 := TimeValueMap(out) - assert.Len(t, out2, len(in), "Unexpected len at idx %d", idx) - assert.Equal(t, in, out2, "Unexpected value at idx %d", idx) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go b/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go deleted file mode 100644 index 8e12f82b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go +++ /dev/null @@ -1,182 +0,0 @@ -package corehandlers - -import ( - "bytes" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "regexp" - "runtime" - "strconv" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/request" -) - -// Interface for matching types which also have a Len method. -type lener interface { - Len() int -} - -// BuildContentLengthHandler builds the content length of a request based on the body, -// or will use the HTTPRequest.Header's "Content-Length" if defined. If unable -// to determine request body length and no "Content-Length" was specified it will panic. -// -// The Content-Length will only be aded to the request if the length of the body -// is greater than 0. If the body is empty or the current `Content-Length` -// header is <= 0, the header will also be stripped. -var BuildContentLengthHandler = request.NamedHandler{Name: "core.BuildContentLengthHandler", Fn: func(r *request.Request) { - var length int64 - - if slength := r.HTTPRequest.Header.Get("Content-Length"); slength != "" { - length, _ = strconv.ParseInt(slength, 10, 64) - } else { - switch body := r.Body.(type) { - case nil: - length = 0 - case lener: - length = int64(body.Len()) - case io.Seeker: - r.BodyStart, _ = body.Seek(0, 1) - end, _ := body.Seek(0, 2) - body.Seek(r.BodyStart, 0) // make sure to seek back to original location - length = end - r.BodyStart - default: - panic("Cannot get length of body, must provide `ContentLength`") - } - } - - if length > 0 { - r.HTTPRequest.ContentLength = length - r.HTTPRequest.Header.Set("Content-Length", fmt.Sprintf("%d", length)) - } else { - r.HTTPRequest.ContentLength = 0 - r.HTTPRequest.Header.Del("Content-Length") - } -}} - -// SDKVersionUserAgentHandler is a request handler for adding the SDK Version to the user agent. -var SDKVersionUserAgentHandler = request.NamedHandler{ - Name: "core.SDKVersionUserAgentHandler", - Fn: request.MakeAddToUserAgentHandler(aws.SDKName, aws.SDKVersion, - runtime.Version(), runtime.GOOS, runtime.GOARCH), -} - -var reStatusCode = regexp.MustCompile(`^(\d{3})`) - -// ValidateReqSigHandler is a request handler to ensure that the request's -// signature doesn't expire before it is sent. This can happen when a request -// is built and signed signficantly before it is sent. Or signficant delays -// occur whne retrying requests that would cause the signature to expire. -var ValidateReqSigHandler = request.NamedHandler{ - Name: "core.ValidateReqSigHandler", - Fn: func(r *request.Request) { - // Unsigned requests are not signed - if r.Config.Credentials == credentials.AnonymousCredentials { - return - } - - signedTime := r.Time - if !r.LastSignedAt.IsZero() { - signedTime = r.LastSignedAt - } - - // 10 minutes to allow for some clock skew/delays in transmission. - // Would be improved with aws/aws-sdk-go#423 - if signedTime.Add(10 * time.Minute).After(time.Now()) { - return - } - - fmt.Println("request expired, resigning") - r.Sign() - }, -} - -// SendHandler is a request handler to send service request using HTTP client. -var SendHandler = request.NamedHandler{Name: "core.SendHandler", Fn: func(r *request.Request) { - var err error - r.HTTPResponse, err = r.Config.HTTPClient.Do(r.HTTPRequest) - if err != nil { - // Prevent leaking if an HTTPResponse was returned. Clean up - // the body. - if r.HTTPResponse != nil { - r.HTTPResponse.Body.Close() - } - // Capture the case where url.Error is returned for error processing - // response. e.g. 301 without location header comes back as string - // error and r.HTTPResponse is nil. Other url redirect errors will - // comeback in a similar method. - if e, ok := err.(*url.Error); ok && e.Err != nil { - if s := reStatusCode.FindStringSubmatch(e.Err.Error()); s != nil { - code, _ := strconv.ParseInt(s[1], 10, 64) - r.HTTPResponse = &http.Response{ - StatusCode: int(code), - Status: http.StatusText(int(code)), - Body: ioutil.NopCloser(bytes.NewReader([]byte{})), - } - return - } - } - if r.HTTPResponse == nil { - // Add a dummy request response object to ensure the HTTPResponse - // value is consistent. - r.HTTPResponse = &http.Response{ - StatusCode: int(0), - Status: http.StatusText(int(0)), - Body: ioutil.NopCloser(bytes.NewReader([]byte{})), - } - } - // Catch all other request errors. - r.Error = awserr.New("RequestError", "send request failed", err) - r.Retryable = aws.Bool(true) // network errors are retryable - } -}} - -// ValidateResponseHandler is a request handler to validate service response. -var ValidateResponseHandler = request.NamedHandler{Name: "core.ValidateResponseHandler", Fn: func(r *request.Request) { - if r.HTTPResponse.StatusCode == 0 || r.HTTPResponse.StatusCode >= 300 { - // this may be replaced by an UnmarshalError handler - r.Error = awserr.New("UnknownError", "unknown error", nil) - } -}} - -// AfterRetryHandler performs final checks to determine if the request should -// be retried and how long to delay. -var AfterRetryHandler = request.NamedHandler{Name: "core.AfterRetryHandler", Fn: func(r *request.Request) { - // If one of the other handlers already set the retry state - // we don't want to override it based on the service's state - if r.Retryable == nil { - r.Retryable = aws.Bool(r.ShouldRetry(r)) - } - - if r.WillRetry() { - r.RetryDelay = r.RetryRules(r) - r.Config.SleepDelay(r.RetryDelay) - - // when the expired token exception occurs the credentials - // need to be expired locally so that the next request to - // get credentials will trigger a credentials refresh. - if r.IsErrorExpired() { - r.Config.Credentials.Expire() - } - - r.RetryCount++ - r.Error = nil - } -}} - -// ValidateEndpointHandler is a request handler to validate a request had the -// appropriate Region and Endpoint set. Will set r.Error if the endpoint or -// region is not valid. -var ValidateEndpointHandler = request.NamedHandler{Name: "core.ValidateEndpointHandler", Fn: func(r *request.Request) { - if r.ClientInfo.SigningRegion == "" && aws.StringValue(r.Config.Region) == "" { - r.Error = aws.ErrMissingRegion - } else if r.ClientInfo.Endpoint == "" { - r.Error = aws.ErrMissingEndpoint - } -}} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go b/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go deleted file mode 100644 index ec9d78fa..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go +++ /dev/null @@ -1,232 +0,0 @@ -package corehandlers_test - -import ( - "bytes" - "fmt" - "io/ioutil" - "net/http" - "net/http/httptest" - "os" - "testing" - "time" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/corehandlers" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" -) - -func TestValidateEndpointHandler(t *testing.T) { - os.Clearenv() - - svc := awstesting.NewClient(aws.NewConfig().WithRegion("us-west-2")) - svc.Handlers.Clear() - svc.Handlers.Validate.PushBackNamed(corehandlers.ValidateEndpointHandler) - - req := svc.NewRequest(&request.Operation{Name: "Operation"}, nil, nil) - err := req.Build() - - assert.NoError(t, err) -} - -func TestValidateEndpointHandlerErrorRegion(t *testing.T) { - os.Clearenv() - - svc := awstesting.NewClient() - svc.Handlers.Clear() - svc.Handlers.Validate.PushBackNamed(corehandlers.ValidateEndpointHandler) - - req := svc.NewRequest(&request.Operation{Name: "Operation"}, nil, nil) - err := req.Build() - - assert.Error(t, err) - assert.Equal(t, aws.ErrMissingRegion, err) -} - -type mockCredsProvider struct { - expired bool - retrieveCalled bool -} - -func (m *mockCredsProvider) Retrieve() (credentials.Value, error) { - m.retrieveCalled = true - return credentials.Value{ProviderName: "mockCredsProvider"}, nil -} - -func (m *mockCredsProvider) IsExpired() bool { - return m.expired -} - -func TestAfterRetryRefreshCreds(t *testing.T) { - os.Clearenv() - credProvider := &mockCredsProvider{} - - svc := awstesting.NewClient(&aws.Config{ - Credentials: credentials.NewCredentials(credProvider), - MaxRetries: aws.Int(1), - }) - - svc.Handlers.Clear() - svc.Handlers.ValidateResponse.PushBack(func(r *request.Request) { - r.Error = awserr.New("UnknownError", "", nil) - r.HTTPResponse = &http.Response{StatusCode: 400, Body: ioutil.NopCloser(bytes.NewBuffer([]byte{}))} - }) - svc.Handlers.UnmarshalError.PushBack(func(r *request.Request) { - r.Error = awserr.New("ExpiredTokenException", "", nil) - }) - svc.Handlers.AfterRetry.PushBackNamed(corehandlers.AfterRetryHandler) - - assert.True(t, svc.Config.Credentials.IsExpired(), "Expect to start out expired") - assert.False(t, credProvider.retrieveCalled) - - req := svc.NewRequest(&request.Operation{Name: "Operation"}, nil, nil) - req.Send() - - assert.True(t, svc.Config.Credentials.IsExpired()) - assert.False(t, credProvider.retrieveCalled) - - _, err := svc.Config.Credentials.Get() - assert.NoError(t, err) - assert.True(t, credProvider.retrieveCalled) -} - -type testSendHandlerTransport struct{} - -func (t *testSendHandlerTransport) RoundTrip(r *http.Request) (*http.Response, error) { - return nil, fmt.Errorf("mock error") -} - -func TestSendHandlerError(t *testing.T) { - svc := awstesting.NewClient(&aws.Config{ - HTTPClient: &http.Client{ - Transport: &testSendHandlerTransport{}, - }, - }) - svc.Handlers.Clear() - svc.Handlers.Send.PushBackNamed(corehandlers.SendHandler) - r := svc.NewRequest(&request.Operation{Name: "Operation"}, nil, nil) - - r.Send() - - assert.Error(t, r.Error) - assert.NotNil(t, r.HTTPResponse) -} - -func TestValidateReqSigHandler(t *testing.T) { - cases := []struct { - Req *request.Request - Resign bool - }{ - { - Req: &request.Request{ - Config: aws.Config{Credentials: credentials.AnonymousCredentials}, - Time: time.Now().Add(-15 * time.Minute), - }, - Resign: false, - }, - { - Req: &request.Request{ - Time: time.Now().Add(-15 * time.Minute), - }, - Resign: true, - }, - { - Req: &request.Request{ - Time: time.Now().Add(-1 * time.Minute), - }, - Resign: false, - }, - } - - for i, c := range cases { - resigned := false - c.Req.Handlers.Sign.PushBack(func(r *request.Request) { - resigned = true - }) - - corehandlers.ValidateReqSigHandler.Fn(c.Req) - - assert.NoError(t, c.Req.Error, "%d, expect no error", i) - assert.Equal(t, c.Resign, resigned, "%d, expected resigning to match", i) - } -} - -func setupContentLengthTestServer(t *testing.T, hasContentLength bool, contentLength int64) *httptest.Server { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - _, ok := r.Header["Content-Length"] - assert.Equal(t, hasContentLength, ok, "expect content length to be set, %t", hasContentLength) - assert.Equal(t, contentLength, r.ContentLength) - - b, err := ioutil.ReadAll(r.Body) - assert.NoError(t, err) - r.Body.Close() - - authHeader := r.Header.Get("Authorization") - if hasContentLength { - assert.Contains(t, authHeader, "content-length") - } else { - assert.NotContains(t, authHeader, "content-length") - } - - assert.Equal(t, contentLength, int64(len(b))) - })) - - return server -} - -func TestBuildContentLength_ZeroBody(t *testing.T) { - server := setupContentLengthTestServer(t, false, 0) - - svc := s3.New(unit.Session, &aws.Config{ - Endpoint: aws.String(server.URL), - S3ForcePathStyle: aws.Bool(true), - DisableSSL: aws.Bool(true), - }) - _, err := svc.GetObject(&s3.GetObjectInput{ - Bucket: aws.String("bucketname"), - Key: aws.String("keyname"), - }) - - assert.NoError(t, err) -} - -func TestBuildContentLength_NegativeBody(t *testing.T) { - server := setupContentLengthTestServer(t, false, 0) - - svc := s3.New(unit.Session, &aws.Config{ - Endpoint: aws.String(server.URL), - S3ForcePathStyle: aws.Bool(true), - DisableSSL: aws.Bool(true), - }) - req, _ := svc.GetObjectRequest(&s3.GetObjectInput{ - Bucket: aws.String("bucketname"), - Key: aws.String("keyname"), - }) - - req.HTTPRequest.Header.Set("Content-Length", "-1") - - assert.NoError(t, req.Send()) -} - -func TestBuildContentLength_WithBody(t *testing.T) { - server := setupContentLengthTestServer(t, true, 1024) - - svc := s3.New(unit.Session, &aws.Config{ - Endpoint: aws.String(server.URL), - S3ForcePathStyle: aws.Bool(true), - DisableSSL: aws.Bool(true), - }) - _, err := svc.PutObject(&s3.PutObjectInput{ - Bucket: aws.String("bucketname"), - Key: aws.String("keyname"), - Body: bytes.NewReader(make([]byte, 1024)), - }) - - assert.NoError(t, err) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go b/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go deleted file mode 100644 index 7d50b155..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go +++ /dev/null @@ -1,17 +0,0 @@ -package corehandlers - -import "github.com/aws/aws-sdk-go/aws/request" - -// ValidateParametersHandler is a request handler to validate the input parameters. -// Validating parameters only has meaning if done prior to the request being sent. -var ValidateParametersHandler = request.NamedHandler{Name: "core.ValidateParametersHandler", Fn: func(r *request.Request) { - if !r.ParamsFilled() { - return - } - - if v, ok := r.Params.(request.Validator); ok { - if err := v.Validate(); err != nil { - r.Error = err - } - } -}} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go b/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go deleted file mode 100644 index 66973ca0..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go +++ /dev/null @@ -1,254 +0,0 @@ -package corehandlers_test - -import ( - "fmt" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/corehandlers" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/kinesis" - "github.com/stretchr/testify/require" -) - -var testSvc = func() *client.Client { - s := &client.Client{ - Config: aws.Config{}, - ClientInfo: metadata.ClientInfo{ - ServiceName: "mock-service", - APIVersion: "2015-01-01", - }, - } - return s -}() - -type StructShape struct { - _ struct{} `type:"structure"` - - RequiredList []*ConditionalStructShape `required:"true"` - RequiredMap map[string]*ConditionalStructShape `required:"true"` - RequiredBool *bool `required:"true"` - OptionalStruct *ConditionalStructShape - - hiddenParameter *string -} - -func (s *StructShape) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "StructShape"} - if s.RequiredList == nil { - invalidParams.Add(request.NewErrParamRequired("RequiredList")) - } - if s.RequiredMap == nil { - invalidParams.Add(request.NewErrParamRequired("RequiredMap")) - } - if s.RequiredBool == nil { - invalidParams.Add(request.NewErrParamRequired("RequiredBool")) - } - if s.RequiredList != nil { - for i, v := range s.RequiredList { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "RequiredList", i), err.(request.ErrInvalidParams)) - } - } - } - if s.RequiredMap != nil { - for i, v := range s.RequiredMap { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "RequiredMap", i), err.(request.ErrInvalidParams)) - } - } - } - if s.OptionalStruct != nil { - if err := s.OptionalStruct.Validate(); err != nil { - invalidParams.AddNested("OptionalStruct", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ConditionalStructShape struct { - _ struct{} `type:"structure"` - - Name *string `required:"true"` -} - -func (s *ConditionalStructShape) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ConditionalStructShape"} - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -func TestNoErrors(t *testing.T) { - input := &StructShape{ - RequiredList: []*ConditionalStructShape{}, - RequiredMap: map[string]*ConditionalStructShape{ - "key1": {Name: aws.String("Name")}, - "key2": {Name: aws.String("Name")}, - }, - RequiredBool: aws.Bool(true), - OptionalStruct: &ConditionalStructShape{Name: aws.String("Name")}, - } - - req := testSvc.NewRequest(&request.Operation{}, input, nil) - corehandlers.ValidateParametersHandler.Fn(req) - require.NoError(t, req.Error) -} - -func TestMissingRequiredParameters(t *testing.T) { - input := &StructShape{} - req := testSvc.NewRequest(&request.Operation{}, input, nil) - corehandlers.ValidateParametersHandler.Fn(req) - - require.Error(t, req.Error) - assert.Equal(t, "InvalidParameter", req.Error.(awserr.Error).Code()) - assert.Equal(t, "3 validation error(s) found.", req.Error.(awserr.Error).Message()) - - errs := req.Error.(awserr.BatchedErrors).OrigErrs() - assert.Len(t, errs, 3) - assert.Equal(t, "ParamRequiredError: missing required field, StructShape.RequiredList.", errs[0].Error()) - assert.Equal(t, "ParamRequiredError: missing required field, StructShape.RequiredMap.", errs[1].Error()) - assert.Equal(t, "ParamRequiredError: missing required field, StructShape.RequiredBool.", errs[2].Error()) - - assert.Equal(t, "InvalidParameter: 3 validation error(s) found.\n- missing required field, StructShape.RequiredList.\n- missing required field, StructShape.RequiredMap.\n- missing required field, StructShape.RequiredBool.\n", req.Error.Error()) -} - -func TestNestedMissingRequiredParameters(t *testing.T) { - input := &StructShape{ - RequiredList: []*ConditionalStructShape{{}}, - RequiredMap: map[string]*ConditionalStructShape{ - "key1": {Name: aws.String("Name")}, - "key2": {}, - }, - RequiredBool: aws.Bool(true), - OptionalStruct: &ConditionalStructShape{}, - } - - req := testSvc.NewRequest(&request.Operation{}, input, nil) - corehandlers.ValidateParametersHandler.Fn(req) - - require.Error(t, req.Error) - assert.Equal(t, "InvalidParameter", req.Error.(awserr.Error).Code()) - assert.Equal(t, "3 validation error(s) found.", req.Error.(awserr.Error).Message()) - - errs := req.Error.(awserr.BatchedErrors).OrigErrs() - assert.Len(t, errs, 3) - assert.Equal(t, "ParamRequiredError: missing required field, StructShape.RequiredList[0].Name.", errs[0].Error()) - assert.Equal(t, "ParamRequiredError: missing required field, StructShape.RequiredMap[key2].Name.", errs[1].Error()) - assert.Equal(t, "ParamRequiredError: missing required field, StructShape.OptionalStruct.Name.", errs[2].Error()) -} - -type testInput struct { - StringField *string `min:"5"` - ListField []string `min:"3"` - MapField map[string]string `min:"4"` -} - -func (s testInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "testInput"} - if s.StringField != nil && len(*s.StringField) < 5 { - invalidParams.Add(request.NewErrParamMinLen("StringField", 5)) - } - if s.ListField != nil && len(s.ListField) < 3 { - invalidParams.Add(request.NewErrParamMinLen("ListField", 3)) - } - if s.MapField != nil && len(s.MapField) < 4 { - invalidParams.Add(request.NewErrParamMinLen("MapField", 4)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -var testsFieldMin = []struct { - err awserr.Error - in testInput -}{ - { - err: func() awserr.Error { - invalidParams := request.ErrInvalidParams{Context: "testInput"} - invalidParams.Add(request.NewErrParamMinLen("StringField", 5)) - return invalidParams - }(), - in: testInput{StringField: aws.String("abcd")}, - }, - { - err: func() awserr.Error { - invalidParams := request.ErrInvalidParams{Context: "testInput"} - invalidParams.Add(request.NewErrParamMinLen("StringField", 5)) - invalidParams.Add(request.NewErrParamMinLen("ListField", 3)) - return invalidParams - }(), - in: testInput{StringField: aws.String("abcd"), ListField: []string{"a", "b"}}, - }, - { - err: func() awserr.Error { - invalidParams := request.ErrInvalidParams{Context: "testInput"} - invalidParams.Add(request.NewErrParamMinLen("StringField", 5)) - invalidParams.Add(request.NewErrParamMinLen("ListField", 3)) - invalidParams.Add(request.NewErrParamMinLen("MapField", 4)) - return invalidParams - }(), - in: testInput{StringField: aws.String("abcd"), ListField: []string{"a", "b"}, MapField: map[string]string{"a": "a", "b": "b"}}, - }, - { - err: nil, - in: testInput{StringField: aws.String("abcde"), - ListField: []string{"a", "b", "c"}, MapField: map[string]string{"a": "a", "b": "b", "c": "c", "d": "d"}}, - }, -} - -func TestValidateFieldMinParameter(t *testing.T) { - for i, c := range testsFieldMin { - req := testSvc.NewRequest(&request.Operation{}, &c.in, nil) - corehandlers.ValidateParametersHandler.Fn(req) - - assert.Equal(t, c.err, req.Error, "%d case failed", i) - } -} - -func BenchmarkValidateAny(b *testing.B) { - input := &kinesis.PutRecordsInput{ - StreamName: aws.String("stream"), - } - for i := 0; i < 100; i++ { - record := &kinesis.PutRecordsRequestEntry{ - Data: make([]byte, 10000), - PartitionKey: aws.String("partition"), - } - input.Records = append(input.Records, record) - } - - req, _ := kinesis.New(unit.Session).PutRecordsRequest(input) - - b.ResetTimer() - for i := 0; i < b.N; i++ { - corehandlers.ValidateParametersHandler.Fn(req) - if err := req.Error; err != nil { - b.Fatalf("validation failed: %v", err) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go deleted file mode 100644 index 857311f6..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go +++ /dev/null @@ -1,100 +0,0 @@ -package credentials - -import ( - "github.com/aws/aws-sdk-go/aws/awserr" -) - -var ( - // ErrNoValidProvidersFoundInChain Is returned when there are no valid - // providers in the ChainProvider. - // - // This has been deprecated. For verbose error messaging set - // aws.Config.CredentialsChainVerboseErrors to true - // - // @readonly - ErrNoValidProvidersFoundInChain = awserr.New("NoCredentialProviders", - `no valid providers in chain. Deprecated. - For verbose messaging see aws.Config.CredentialsChainVerboseErrors`, - nil) -) - -// A ChainProvider will search for a provider which returns credentials -// and cache that provider until Retrieve is called again. -// -// The ChainProvider provides a way of chaining multiple providers together -// which will pick the first available using priority order of the Providers -// in the list. -// -// If none of the Providers retrieve valid credentials Value, ChainProvider's -// Retrieve() will return the error ErrNoValidProvidersFoundInChain. -// -// If a Provider is found which returns valid credentials Value ChainProvider -// will cache that Provider for all calls to IsExpired(), until Retrieve is -// called again. -// -// Example of ChainProvider to be used with an EnvProvider and EC2RoleProvider. -// In this example EnvProvider will first check if any credentials are available -// vai the environment variables. If there are none ChainProvider will check -// the next Provider in the list, EC2RoleProvider in this case. If EC2RoleProvider -// does not return any credentials ChainProvider will return the error -// ErrNoValidProvidersFoundInChain -// -// creds := NewChainCredentials( -// []Provider{ -// &EnvProvider{}, -// &EC2RoleProvider{ -// Client: ec2metadata.New(sess), -// }, -// }) -// -// // Usage of ChainCredentials with aws.Config -// svc := ec2.New(&aws.Config{Credentials: creds}) -// -type ChainProvider struct { - Providers []Provider - curr Provider - VerboseErrors bool -} - -// NewChainCredentials returns a pointer to a new Credentials object -// wrapping a chain of providers. -func NewChainCredentials(providers []Provider) *Credentials { - return NewCredentials(&ChainProvider{ - Providers: append([]Provider{}, providers...), - }) -} - -// Retrieve returns the credentials value or error if no provider returned -// without error. -// -// If a provider is found it will be cached and any calls to IsExpired() -// will return the expired state of the cached provider. -func (c *ChainProvider) Retrieve() (Value, error) { - var errs []error - for _, p := range c.Providers { - creds, err := p.Retrieve() - if err == nil { - c.curr = p - return creds, nil - } - errs = append(errs, err) - } - c.curr = nil - - var err error - err = ErrNoValidProvidersFoundInChain - if c.VerboseErrors { - err = awserr.NewBatchError("NoCredentialProviders", "no valid providers in chain", errs) - } - return Value{}, err -} - -// IsExpired will returned the expired state of the currently cached provider -// if there is one. If there is no current provider, true will be returned. -func (c *ChainProvider) IsExpired() bool { - if c.curr != nil { - return c.curr.IsExpired() - } - - return true -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go deleted file mode 100644 index 3b393a2e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go +++ /dev/null @@ -1,154 +0,0 @@ -package credentials - -import ( - "testing" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/stretchr/testify/assert" -) - -type secondStubProvider struct { - creds Value - expired bool - err error -} - -func (s *secondStubProvider) Retrieve() (Value, error) { - s.expired = false - s.creds.ProviderName = "secondStubProvider" - return s.creds, s.err -} -func (s *secondStubProvider) IsExpired() bool { - return s.expired -} - -func TestChainProviderWithNames(t *testing.T) { - p := &ChainProvider{ - Providers: []Provider{ - &stubProvider{err: awserr.New("FirstError", "first provider error", nil)}, - &stubProvider{err: awserr.New("SecondError", "second provider error", nil)}, - &secondStubProvider{ - creds: Value{ - AccessKeyID: "AKIF", - SecretAccessKey: "NOSECRET", - SessionToken: "", - }, - }, - &stubProvider{ - creds: Value{ - AccessKeyID: "AKID", - SecretAccessKey: "SECRET", - SessionToken: "", - }, - }, - }, - } - - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - assert.Equal(t, "secondStubProvider", creds.ProviderName, "Expect provider name to match") - - // Also check credentials - assert.Equal(t, "AKIF", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "NOSECRET", creds.SecretAccessKey, "Expect secret access key to match") - assert.Empty(t, creds.SessionToken, "Expect session token to be empty") - -} - -func TestChainProviderGet(t *testing.T) { - p := &ChainProvider{ - Providers: []Provider{ - &stubProvider{err: awserr.New("FirstError", "first provider error", nil)}, - &stubProvider{err: awserr.New("SecondError", "second provider error", nil)}, - &stubProvider{ - creds: Value{ - AccessKeyID: "AKID", - SecretAccessKey: "SECRET", - SessionToken: "", - }, - }, - }, - } - - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - assert.Equal(t, "AKID", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "SECRET", creds.SecretAccessKey, "Expect secret access key to match") - assert.Empty(t, creds.SessionToken, "Expect session token to be empty") -} - -func TestChainProviderIsExpired(t *testing.T) { - stubProvider := &stubProvider{expired: true} - p := &ChainProvider{ - Providers: []Provider{ - stubProvider, - }, - } - - assert.True(t, p.IsExpired(), "Expect expired to be true before any Retrieve") - _, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - assert.False(t, p.IsExpired(), "Expect not expired after retrieve") - - stubProvider.expired = true - assert.True(t, p.IsExpired(), "Expect return of expired provider") - - _, err = p.Retrieve() - assert.False(t, p.IsExpired(), "Expect not expired after retrieve") -} - -func TestChainProviderWithNoProvider(t *testing.T) { - p := &ChainProvider{ - Providers: []Provider{}, - } - - assert.True(t, p.IsExpired(), "Expect expired with no providers") - _, err := p.Retrieve() - assert.Equal(t, - ErrNoValidProvidersFoundInChain, - err, - "Expect no providers error returned") -} - -func TestChainProviderWithNoValidProvider(t *testing.T) { - errs := []error{ - awserr.New("FirstError", "first provider error", nil), - awserr.New("SecondError", "second provider error", nil), - } - p := &ChainProvider{ - Providers: []Provider{ - &stubProvider{err: errs[0]}, - &stubProvider{err: errs[1]}, - }, - } - - assert.True(t, p.IsExpired(), "Expect expired with no providers") - _, err := p.Retrieve() - - assert.Equal(t, - ErrNoValidProvidersFoundInChain, - err, - "Expect no providers error returned") -} - -func TestChainProviderWithNoValidProviderWithVerboseEnabled(t *testing.T) { - errs := []error{ - awserr.New("FirstError", "first provider error", nil), - awserr.New("SecondError", "second provider error", nil), - } - p := &ChainProvider{ - VerboseErrors: true, - Providers: []Provider{ - &stubProvider{err: errs[0]}, - &stubProvider{err: errs[1]}, - }, - } - - assert.True(t, p.IsExpired(), "Expect expired with no providers") - _, err := p.Retrieve() - - assert.Equal(t, - awserr.NewBatchError("NoCredentialProviders", "no valid providers in chain", errs), - err, - "Expect no providers error returned") -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go deleted file mode 100644 index 7b8ebf5f..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go +++ /dev/null @@ -1,223 +0,0 @@ -// Package credentials provides credential retrieval and management -// -// The Credentials is the primary method of getting access to and managing -// credentials Values. Using dependency injection retrieval of the credential -// values is handled by a object which satisfies the Provider interface. -// -// By default the Credentials.Get() will cache the successful result of a -// Provider's Retrieve() until Provider.IsExpired() returns true. At which -// point Credentials will call Provider's Retrieve() to get new credential Value. -// -// The Provider is responsible for determining when credentials Value have expired. -// It is also important to note that Credentials will always call Retrieve the -// first time Credentials.Get() is called. -// -// Example of using the environment variable credentials. -// -// creds := NewEnvCredentials() -// -// // Retrieve the credentials value -// credValue, err := creds.Get() -// if err != nil { -// // handle error -// } -// -// Example of forcing credentials to expire and be refreshed on the next Get(). -// This may be helpful to proactively expire credentials and refresh them sooner -// than they would naturally expire on their own. -// -// creds := NewCredentials(&EC2RoleProvider{}) -// creds.Expire() -// credsValue, err := creds.Get() -// // New credentials will be retrieved instead of from cache. -// -// -// Custom Provider -// -// Each Provider built into this package also provides a helper method to generate -// a Credentials pointer setup with the provider. To use a custom Provider just -// create a type which satisfies the Provider interface and pass it to the -// NewCredentials method. -// -// type MyProvider struct{} -// func (m *MyProvider) Retrieve() (Value, error) {...} -// func (m *MyProvider) IsExpired() bool {...} -// -// creds := NewCredentials(&MyProvider{}) -// credValue, err := creds.Get() -// -package credentials - -import ( - "sync" - "time" -) - -// AnonymousCredentials is an empty Credential object that can be used as -// dummy placeholder credentials for requests that do not need signed. -// -// This Credentials can be used to configure a service to not sign requests -// when making service API calls. For example, when accessing public -// s3 buckets. -// -// svc := s3.New(&aws.Config{Credentials: AnonymousCredentials}) -// // Access public S3 buckets. -// -// @readonly -var AnonymousCredentials = NewStaticCredentials("", "", "") - -// A Value is the AWS credentials value for individual credential fields. -type Value struct { - // AWS Access key ID - AccessKeyID string - - // AWS Secret Access Key - SecretAccessKey string - - // AWS Session Token - SessionToken string - - // Provider used to get credentials - ProviderName string -} - -// A Provider is the interface for any component which will provide credentials -// Value. A provider is required to manage its own Expired state, and what to -// be expired means. -// -// The Provider should not need to implement its own mutexes, because -// that will be managed by Credentials. -type Provider interface { - // Refresh returns nil if it successfully retrieved the value. - // Error is returned if the value were not obtainable, or empty. - Retrieve() (Value, error) - - // IsExpired returns if the credentials are no longer valid, and need - // to be retrieved. - IsExpired() bool -} - -// A Expiry provides shared expiration logic to be used by credentials -// providers to implement expiry functionality. -// -// The best method to use this struct is as an anonymous field within the -// provider's struct. -// -// Example: -// type EC2RoleProvider struct { -// Expiry -// ... -// } -type Expiry struct { - // The date/time when to expire on - expiration time.Time - - // If set will be used by IsExpired to determine the current time. - // Defaults to time.Now if CurrentTime is not set. Available for testing - // to be able to mock out the current time. - CurrentTime func() time.Time -} - -// SetExpiration sets the expiration IsExpired will check when called. -// -// If window is greater than 0 the expiration time will be reduced by the -// window value. -// -// Using a window is helpful to trigger credentials to expire sooner than -// the expiration time given to ensure no requests are made with expired -// tokens. -func (e *Expiry) SetExpiration(expiration time.Time, window time.Duration) { - e.expiration = expiration - if window > 0 { - e.expiration = e.expiration.Add(-window) - } -} - -// IsExpired returns if the credentials are expired. -func (e *Expiry) IsExpired() bool { - if e.CurrentTime == nil { - e.CurrentTime = time.Now - } - return e.expiration.Before(e.CurrentTime()) -} - -// A Credentials provides synchronous safe retrieval of AWS credentials Value. -// Credentials will cache the credentials value until they expire. Once the value -// expires the next Get will attempt to retrieve valid credentials. -// -// Credentials is safe to use across multiple goroutines and will manage the -// synchronous state so the Providers do not need to implement their own -// synchronization. -// -// The first Credentials.Get() will always call Provider.Retrieve() to get the -// first instance of the credentials Value. All calls to Get() after that -// will return the cached credentials Value until IsExpired() returns true. -type Credentials struct { - creds Value - forceRefresh bool - m sync.Mutex - - provider Provider -} - -// NewCredentials returns a pointer to a new Credentials with the provider set. -func NewCredentials(provider Provider) *Credentials { - return &Credentials{ - provider: provider, - forceRefresh: true, - } -} - -// Get returns the credentials value, or error if the credentials Value failed -// to be retrieved. -// -// Will return the cached credentials Value if it has not expired. If the -// credentials Value has expired the Provider's Retrieve() will be called -// to refresh the credentials. -// -// If Credentials.Expire() was called the credentials Value will be force -// expired, and the next call to Get() will cause them to be refreshed. -func (c *Credentials) Get() (Value, error) { - c.m.Lock() - defer c.m.Unlock() - - if c.isExpired() { - creds, err := c.provider.Retrieve() - if err != nil { - return Value{}, err - } - c.creds = creds - c.forceRefresh = false - } - - return c.creds, nil -} - -// Expire expires the credentials and forces them to be retrieved on the -// next call to Get(). -// -// This will override the Provider's expired state, and force Credentials -// to call the Provider's Retrieve(). -func (c *Credentials) Expire() { - c.m.Lock() - defer c.m.Unlock() - - c.forceRefresh = true -} - -// IsExpired returns if the credentials are no longer valid, and need -// to be retrieved. -// -// If the Credentials were forced to be expired with Expire() this will -// reflect that override. -func (c *Credentials) IsExpired() bool { - c.m.Lock() - defer c.m.Unlock() - - return c.isExpired() -} - -// isExpired helper method wrapping the definition of expired credentials. -func (c *Credentials) isExpired() bool { - return c.forceRefresh || c.provider.IsExpired() -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials_test.go deleted file mode 100644 index 7b79ba98..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials_test.go +++ /dev/null @@ -1,73 +0,0 @@ -package credentials - -import ( - "testing" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/stretchr/testify/assert" -) - -type stubProvider struct { - creds Value - expired bool - err error -} - -func (s *stubProvider) Retrieve() (Value, error) { - s.expired = false - s.creds.ProviderName = "stubProvider" - return s.creds, s.err -} -func (s *stubProvider) IsExpired() bool { - return s.expired -} - -func TestCredentialsGet(t *testing.T) { - c := NewCredentials(&stubProvider{ - creds: Value{ - AccessKeyID: "AKID", - SecretAccessKey: "SECRET", - SessionToken: "", - }, - expired: true, - }) - - creds, err := c.Get() - assert.Nil(t, err, "Expected no error") - assert.Equal(t, "AKID", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "SECRET", creds.SecretAccessKey, "Expect secret access key to match") - assert.Empty(t, creds.SessionToken, "Expect session token to be empty") -} - -func TestCredentialsGetWithError(t *testing.T) { - c := NewCredentials(&stubProvider{err: awserr.New("provider error", "", nil), expired: true}) - - _, err := c.Get() - assert.Equal(t, "provider error", err.(awserr.Error).Code(), "Expected provider error") -} - -func TestCredentialsExpire(t *testing.T) { - stub := &stubProvider{} - c := NewCredentials(stub) - - stub.expired = false - assert.True(t, c.IsExpired(), "Expected to start out expired") - c.Expire() - assert.True(t, c.IsExpired(), "Expected to be expired") - - c.forceRefresh = false - assert.False(t, c.IsExpired(), "Expected not to be expired") - - stub.expired = true - assert.True(t, c.IsExpired(), "Expected to be expired") -} - -func TestCredentialsGetWithProviderName(t *testing.T) { - stub := &stubProvider{} - - c := NewCredentials(stub) - - creds, err := c.Get() - assert.Nil(t, err, "Expected no error") - assert.Equal(t, creds.ProviderName, "stubProvider", "Expected provider name to match") -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go deleted file mode 100644 index aa9d689a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go +++ /dev/null @@ -1,178 +0,0 @@ -package ec2rolecreds - -import ( - "bufio" - "encoding/json" - "fmt" - "path" - "strings" - "time" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/ec2metadata" -) - -// ProviderName provides a name of EC2Role provider -const ProviderName = "EC2RoleProvider" - -// A EC2RoleProvider retrieves credentials from the EC2 service, and keeps track if -// those credentials are expired. -// -// Example how to configure the EC2RoleProvider with custom http Client, Endpoint -// or ExpiryWindow -// -// p := &ec2rolecreds.EC2RoleProvider{ -// // Pass in a custom timeout to be used when requesting -// // IAM EC2 Role credentials. -// Client: ec2metadata.New(sess, aws.Config{ -// HTTPClient: &http.Client{Timeout: 10 * time.Second}, -// }), -// -// // Do not use early expiry of credentials. If a non zero value is -// // specified the credentials will be expired early -// ExpiryWindow: 0, -// } -type EC2RoleProvider struct { - credentials.Expiry - - // Required EC2Metadata client to use when connecting to EC2 metadata service. - Client *ec2metadata.EC2Metadata - - // ExpiryWindow will allow the credentials to trigger refreshing prior to - // the credentials actually expiring. This is beneficial so race conditions - // with expiring credentials do not cause request to fail unexpectedly - // due to ExpiredTokenException exceptions. - // - // So a ExpiryWindow of 10s would cause calls to IsExpired() to return true - // 10 seconds before the credentials are actually expired. - // - // If ExpiryWindow is 0 or less it will be ignored. - ExpiryWindow time.Duration -} - -// NewCredentials returns a pointer to a new Credentials object wrapping -// the EC2RoleProvider. Takes a ConfigProvider to create a EC2Metadata client. -// The ConfigProvider is satisfied by the session.Session type. -func NewCredentials(c client.ConfigProvider, options ...func(*EC2RoleProvider)) *credentials.Credentials { - p := &EC2RoleProvider{ - Client: ec2metadata.New(c), - } - - for _, option := range options { - option(p) - } - - return credentials.NewCredentials(p) -} - -// NewCredentialsWithClient returns a pointer to a new Credentials object wrapping -// the EC2RoleProvider. Takes a EC2Metadata client to use when connecting to EC2 -// metadata service. -func NewCredentialsWithClient(client *ec2metadata.EC2Metadata, options ...func(*EC2RoleProvider)) *credentials.Credentials { - p := &EC2RoleProvider{ - Client: client, - } - - for _, option := range options { - option(p) - } - - return credentials.NewCredentials(p) -} - -// Retrieve retrieves credentials from the EC2 service. -// Error will be returned if the request fails, or unable to extract -// the desired credentials. -func (m *EC2RoleProvider) Retrieve() (credentials.Value, error) { - credsList, err := requestCredList(m.Client) - if err != nil { - return credentials.Value{ProviderName: ProviderName}, err - } - - if len(credsList) == 0 { - return credentials.Value{ProviderName: ProviderName}, awserr.New("EmptyEC2RoleList", "empty EC2 Role list", nil) - } - credsName := credsList[0] - - roleCreds, err := requestCred(m.Client, credsName) - if err != nil { - return credentials.Value{ProviderName: ProviderName}, err - } - - m.SetExpiration(roleCreds.Expiration, m.ExpiryWindow) - - return credentials.Value{ - AccessKeyID: roleCreds.AccessKeyID, - SecretAccessKey: roleCreds.SecretAccessKey, - SessionToken: roleCreds.Token, - ProviderName: ProviderName, - }, nil -} - -// A ec2RoleCredRespBody provides the shape for unmarshalling credential -// request responses. -type ec2RoleCredRespBody struct { - // Success State - Expiration time.Time - AccessKeyID string - SecretAccessKey string - Token string - - // Error state - Code string - Message string -} - -const iamSecurityCredsPath = "/iam/security-credentials" - -// requestCredList requests a list of credentials from the EC2 service. -// If there are no credentials, or there is an error making or receiving the request -func requestCredList(client *ec2metadata.EC2Metadata) ([]string, error) { - resp, err := client.GetMetadata(iamSecurityCredsPath) - if err != nil { - return nil, awserr.New("EC2RoleRequestError", "no EC2 instance role found", err) - } - - credsList := []string{} - s := bufio.NewScanner(strings.NewReader(resp)) - for s.Scan() { - credsList = append(credsList, s.Text()) - } - - if err := s.Err(); err != nil { - return nil, awserr.New("SerializationError", "failed to read EC2 instance role from metadata service", err) - } - - return credsList, nil -} - -// requestCred requests the credentials for a specific credentials from the EC2 service. -// -// If the credentials cannot be found, or there is an error reading the response -// and error will be returned. -func requestCred(client *ec2metadata.EC2Metadata, credsName string) (ec2RoleCredRespBody, error) { - resp, err := client.GetMetadata(path.Join(iamSecurityCredsPath, credsName)) - if err != nil { - return ec2RoleCredRespBody{}, - awserr.New("EC2RoleRequestError", - fmt.Sprintf("failed to get %s EC2 instance role credentials", credsName), - err) - } - - respCreds := ec2RoleCredRespBody{} - if err := json.NewDecoder(strings.NewReader(resp)).Decode(&respCreds); err != nil { - return ec2RoleCredRespBody{}, - awserr.New("SerializationError", - fmt.Sprintf("failed to decode %s EC2 instance role credentials", credsName), - err) - } - - if respCreds.Code != "Success" { - // If an error code was returned something failed requesting the role. - return ec2RoleCredRespBody{}, awserr.New(respCreds.Code, respCreds.Message, nil) - } - - return respCreds, nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider_test.go deleted file mode 100644 index cccd4bff..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider_test.go +++ /dev/null @@ -1,159 +0,0 @@ -package ec2rolecreds_test - -import ( - "fmt" - "net/http" - "net/http/httptest" - "testing" - "time" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds" - "github.com/aws/aws-sdk-go/aws/ec2metadata" - "github.com/aws/aws-sdk-go/awstesting/unit" -) - -const credsRespTmpl = `{ - "Code": "Success", - "Type": "AWS-HMAC", - "AccessKeyId" : "accessKey", - "SecretAccessKey" : "secret", - "Token" : "token", - "Expiration" : "%s", - "LastUpdated" : "2009-11-23T0:00:00Z" -}` - -const credsFailRespTmpl = `{ - "Code": "ErrorCode", - "Message": "ErrorMsg", - "LastUpdated": "2009-11-23T0:00:00Z" -}` - -func initTestServer(expireOn string, failAssume bool) *httptest.Server { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - if r.URL.Path == "/latest/meta-data/iam/security-credentials" { - fmt.Fprintln(w, "RoleName") - } else if r.URL.Path == "/latest/meta-data/iam/security-credentials/RoleName" { - if failAssume { - fmt.Fprintf(w, credsFailRespTmpl) - } else { - fmt.Fprintf(w, credsRespTmpl, expireOn) - } - } else { - http.Error(w, "bad request", http.StatusBadRequest) - } - })) - - return server -} - -func TestEC2RoleProvider(t *testing.T) { - server := initTestServer("2014-12-16T01:51:37Z", false) - defer server.Close() - - p := &ec2rolecreds.EC2RoleProvider{ - Client: ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}), - } - - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error, %v", err) - - assert.Equal(t, "accessKey", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Equal(t, "token", creds.SessionToken, "Expect session token to match") -} - -func TestEC2RoleProviderFailAssume(t *testing.T) { - server := initTestServer("2014-12-16T01:51:37Z", true) - defer server.Close() - - p := &ec2rolecreds.EC2RoleProvider{ - Client: ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}), - } - - creds, err := p.Retrieve() - assert.Error(t, err, "Expect error") - - e := err.(awserr.Error) - assert.Equal(t, "ErrorCode", e.Code()) - assert.Equal(t, "ErrorMsg", e.Message()) - assert.Nil(t, e.OrigErr()) - - assert.Equal(t, "", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "", creds.SecretAccessKey, "Expect secret access key to match") - assert.Equal(t, "", creds.SessionToken, "Expect session token to match") -} - -func TestEC2RoleProviderIsExpired(t *testing.T) { - server := initTestServer("2014-12-16T01:51:37Z", false) - defer server.Close() - - p := &ec2rolecreds.EC2RoleProvider{ - Client: ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}), - } - p.CurrentTime = func() time.Time { - return time.Date(2014, 12, 15, 21, 26, 0, 0, time.UTC) - } - - assert.True(t, p.IsExpired(), "Expect creds to be expired before retrieve.") - - _, err := p.Retrieve() - assert.Nil(t, err, "Expect no error, %v", err) - - assert.False(t, p.IsExpired(), "Expect creds to not be expired after retrieve.") - - p.CurrentTime = func() time.Time { - return time.Date(3014, 12, 15, 21, 26, 0, 0, time.UTC) - } - - assert.True(t, p.IsExpired(), "Expect creds to be expired.") -} - -func TestEC2RoleProviderExpiryWindowIsExpired(t *testing.T) { - server := initTestServer("2014-12-16T01:51:37Z", false) - defer server.Close() - - p := &ec2rolecreds.EC2RoleProvider{ - Client: ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}), - ExpiryWindow: time.Hour * 1, - } - p.CurrentTime = func() time.Time { - return time.Date(2014, 12, 15, 0, 51, 37, 0, time.UTC) - } - - assert.True(t, p.IsExpired(), "Expect creds to be expired before retrieve.") - - _, err := p.Retrieve() - assert.Nil(t, err, "Expect no error, %v", err) - - assert.False(t, p.IsExpired(), "Expect creds to not be expired after retrieve.") - - p.CurrentTime = func() time.Time { - return time.Date(2014, 12, 16, 0, 55, 37, 0, time.UTC) - } - - assert.True(t, p.IsExpired(), "Expect creds to be expired.") -} - -func BenchmarkEC3RoleProvider(b *testing.B) { - server := initTestServer("2014-12-16T01:51:37Z", false) - defer server.Close() - - p := &ec2rolecreds.EC2RoleProvider{ - Client: ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}), - } - _, err := p.Retrieve() - if err != nil { - b.Fatal(err) - } - - b.ResetTimer() - for i := 0; i < b.N; i++ { - if _, err := p.Retrieve(); err != nil { - b.Fatal(err) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go deleted file mode 100644 index a4cec5c5..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go +++ /dev/null @@ -1,191 +0,0 @@ -// Package endpointcreds provides support for retrieving credentials from an -// arbitrary HTTP endpoint. -// -// The credentials endpoint Provider can receive both static and refreshable -// credentials that will expire. Credentials are static when an "Expiration" -// value is not provided in the endpoint's response. -// -// Static credentials will never expire once they have been retrieved. The format -// of the static credentials response: -// { -// "AccessKeyId" : "MUA...", -// "SecretAccessKey" : "/7PC5om....", -// } -// -// Refreshable credentials will expire within the "ExpiryWindow" of the Expiration -// value in the response. The format of the refreshable credentials response: -// { -// "AccessKeyId" : "MUA...", -// "SecretAccessKey" : "/7PC5om....", -// "Token" : "AQoDY....=", -// "Expiration" : "2016-02-25T06:03:31Z" -// } -// -// Errors should be returned in the following format and only returned with 400 -// or 500 HTTP status codes. -// { -// "code": "ErrorCode", -// "message": "Helpful error message." -// } -package endpointcreds - -import ( - "encoding/json" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/request" -) - -// ProviderName is the name of the credentials provider. -const ProviderName = `CredentialsEndpointProvider` - -// Provider satisfies the credentials.Provider interface, and is a client to -// retrieve credentials from an arbitrary endpoint. -type Provider struct { - staticCreds bool - credentials.Expiry - - // Requires a AWS Client to make HTTP requests to the endpoint with. - // the Endpoint the request will be made to is provided by the aws.Config's - // Endpoint value. - Client *client.Client - - // ExpiryWindow will allow the credentials to trigger refreshing prior to - // the credentials actually expiring. This is beneficial so race conditions - // with expiring credentials do not cause request to fail unexpectedly - // due to ExpiredTokenException exceptions. - // - // So a ExpiryWindow of 10s would cause calls to IsExpired() to return true - // 10 seconds before the credentials are actually expired. - // - // If ExpiryWindow is 0 or less it will be ignored. - ExpiryWindow time.Duration -} - -// NewProviderClient returns a credentials Provider for retrieving AWS credentials -// from arbitrary endpoint. -func NewProviderClient(cfg aws.Config, handlers request.Handlers, endpoint string, options ...func(*Provider)) credentials.Provider { - p := &Provider{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "CredentialsEndpoint", - Endpoint: endpoint, - }, - handlers, - ), - } - - p.Client.Handlers.Unmarshal.PushBack(unmarshalHandler) - p.Client.Handlers.UnmarshalError.PushBack(unmarshalError) - p.Client.Handlers.Validate.Clear() - p.Client.Handlers.Validate.PushBack(validateEndpointHandler) - - for _, option := range options { - option(p) - } - - return p -} - -// NewCredentialsClient returns a Credentials wrapper for retrieving credentials -// from an arbitrary endpoint concurrently. The client will request the -func NewCredentialsClient(cfg aws.Config, handlers request.Handlers, endpoint string, options ...func(*Provider)) *credentials.Credentials { - return credentials.NewCredentials(NewProviderClient(cfg, handlers, endpoint, options...)) -} - -// IsExpired returns true if the credentials retrieved are expired, or not yet -// retrieved. -func (p *Provider) IsExpired() bool { - if p.staticCreds { - return false - } - return p.Expiry.IsExpired() -} - -// Retrieve will attempt to request the credentials from the endpoint the Provider -// was configured for. And error will be returned if the retrieval fails. -func (p *Provider) Retrieve() (credentials.Value, error) { - resp, err := p.getCredentials() - if err != nil { - return credentials.Value{ProviderName: ProviderName}, - awserr.New("CredentialsEndpointError", "failed to load credentials", err) - } - - if resp.Expiration != nil { - p.SetExpiration(*resp.Expiration, p.ExpiryWindow) - } else { - p.staticCreds = true - } - - return credentials.Value{ - AccessKeyID: resp.AccessKeyID, - SecretAccessKey: resp.SecretAccessKey, - SessionToken: resp.Token, - ProviderName: ProviderName, - }, nil -} - -type getCredentialsOutput struct { - Expiration *time.Time - AccessKeyID string - SecretAccessKey string - Token string -} - -type errorOutput struct { - Code string `json:"code"` - Message string `json:"message"` -} - -func (p *Provider) getCredentials() (*getCredentialsOutput, error) { - op := &request.Operation{ - Name: "GetCredentials", - HTTPMethod: "GET", - } - - out := &getCredentialsOutput{} - req := p.Client.NewRequest(op, nil, out) - req.HTTPRequest.Header.Set("Accept", "application/json") - - return out, req.Send() -} - -func validateEndpointHandler(r *request.Request) { - if len(r.ClientInfo.Endpoint) == 0 { - r.Error = aws.ErrMissingEndpoint - } -} - -func unmarshalHandler(r *request.Request) { - defer r.HTTPResponse.Body.Close() - - out := r.Data.(*getCredentialsOutput) - if err := json.NewDecoder(r.HTTPResponse.Body).Decode(&out); err != nil { - r.Error = awserr.New("SerializationError", - "failed to decode endpoint credentials", - err, - ) - } -} - -func unmarshalError(r *request.Request) { - defer r.HTTPResponse.Body.Close() - - var errOut errorOutput - if err := json.NewDecoder(r.HTTPResponse.Body).Decode(&errOut); err != nil { - r.Error = awserr.New("SerializationError", - "failed to decode endpoint credentials", - err, - ) - } - - // Response body format is not consistent between metadata endpoints. - // Grab the error message as a string and include that as the source error - r.Error = awserr.New(errOut.Code, errOut.Message, nil) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider_test.go deleted file mode 100644 index ad057a35..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider_test.go +++ /dev/null @@ -1,111 +0,0 @@ -package endpointcreds_test - -import ( - "encoding/json" - "fmt" - "net/http" - "net/http/httptest" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/stretchr/testify/assert" -) - -func TestRetrieveRefreshableCredentials(t *testing.T) { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - assert.Equal(t, "/path/to/endpoint", r.URL.Path) - assert.Equal(t, "application/json", r.Header.Get("Accept")) - assert.Equal(t, "else", r.URL.Query().Get("something")) - - encoder := json.NewEncoder(w) - err := encoder.Encode(map[string]interface{}{ - "AccessKeyID": "AKID", - "SecretAccessKey": "SECRET", - "Token": "TOKEN", - "Expiration": time.Now().Add(1 * time.Hour), - }) - - if err != nil { - fmt.Println("failed to write out creds", err) - } - })) - - client := endpointcreds.NewProviderClient(*unit.Session.Config, - unit.Session.Handlers, - server.URL+"/path/to/endpoint?something=else", - ) - creds, err := client.Retrieve() - - assert.NoError(t, err) - - assert.Equal(t, "AKID", creds.AccessKeyID) - assert.Equal(t, "SECRET", creds.SecretAccessKey) - assert.Equal(t, "TOKEN", creds.SessionToken) - assert.False(t, client.IsExpired()) - - client.(*endpointcreds.Provider).CurrentTime = func() time.Time { - return time.Now().Add(2 * time.Hour) - } - - assert.True(t, client.IsExpired()) -} - -func TestRetrieveStaticCredentials(t *testing.T) { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - encoder := json.NewEncoder(w) - err := encoder.Encode(map[string]interface{}{ - "AccessKeyID": "AKID", - "SecretAccessKey": "SECRET", - }) - - if err != nil { - fmt.Println("failed to write out creds", err) - } - })) - - client := endpointcreds.NewProviderClient(*unit.Session.Config, unit.Session.Handlers, server.URL) - creds, err := client.Retrieve() - - assert.NoError(t, err) - - assert.Equal(t, "AKID", creds.AccessKeyID) - assert.Equal(t, "SECRET", creds.SecretAccessKey) - assert.Empty(t, creds.SessionToken) - assert.False(t, client.IsExpired()) -} - -func TestFailedRetrieveCredentials(t *testing.T) { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - w.WriteHeader(400) - encoder := json.NewEncoder(w) - err := encoder.Encode(map[string]interface{}{ - "Code": "Error", - "Message": "Message", - }) - - if err != nil { - fmt.Println("failed to write error", err) - } - })) - - client := endpointcreds.NewProviderClient(*unit.Session.Config, unit.Session.Handlers, server.URL) - creds, err := client.Retrieve() - - assert.Error(t, err) - aerr := err.(awserr.Error) - - assert.Equal(t, "CredentialsEndpointError", aerr.Code()) - assert.Equal(t, "failed to load credentials", aerr.Message()) - - aerr = aerr.OrigErr().(awserr.Error) - assert.Equal(t, "Error", aerr.Code()) - assert.Equal(t, "Message", aerr.Message()) - - assert.Empty(t, creds.AccessKeyID) - assert.Empty(t, creds.SecretAccessKey) - assert.Empty(t, creds.SessionToken) - assert.True(t, client.IsExpired()) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go deleted file mode 100644 index 96655bc4..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go +++ /dev/null @@ -1,77 +0,0 @@ -package credentials - -import ( - "os" - - "github.com/aws/aws-sdk-go/aws/awserr" -) - -// EnvProviderName provides a name of Env provider -const EnvProviderName = "EnvProvider" - -var ( - // ErrAccessKeyIDNotFound is returned when the AWS Access Key ID can't be - // found in the process's environment. - // - // @readonly - ErrAccessKeyIDNotFound = awserr.New("EnvAccessKeyNotFound", "AWS_ACCESS_KEY_ID or AWS_ACCESS_KEY not found in environment", nil) - - // ErrSecretAccessKeyNotFound is returned when the AWS Secret Access Key - // can't be found in the process's environment. - // - // @readonly - ErrSecretAccessKeyNotFound = awserr.New("EnvSecretNotFound", "AWS_SECRET_ACCESS_KEY or AWS_SECRET_KEY not found in environment", nil) -) - -// A EnvProvider retrieves credentials from the environment variables of the -// running process. Environment credentials never expire. -// -// Environment variables used: -// -// * Access Key ID: AWS_ACCESS_KEY_ID or AWS_ACCESS_KEY -// * Secret Access Key: AWS_SECRET_ACCESS_KEY or AWS_SECRET_KEY -type EnvProvider struct { - retrieved bool -} - -// NewEnvCredentials returns a pointer to a new Credentials object -// wrapping the environment variable provider. -func NewEnvCredentials() *Credentials { - return NewCredentials(&EnvProvider{}) -} - -// Retrieve retrieves the keys from the environment. -func (e *EnvProvider) Retrieve() (Value, error) { - e.retrieved = false - - id := os.Getenv("AWS_ACCESS_KEY_ID") - if id == "" { - id = os.Getenv("AWS_ACCESS_KEY") - } - - secret := os.Getenv("AWS_SECRET_ACCESS_KEY") - if secret == "" { - secret = os.Getenv("AWS_SECRET_KEY") - } - - if id == "" { - return Value{ProviderName: EnvProviderName}, ErrAccessKeyIDNotFound - } - - if secret == "" { - return Value{ProviderName: EnvProviderName}, ErrSecretAccessKeyNotFound - } - - e.retrieved = true - return Value{ - AccessKeyID: id, - SecretAccessKey: secret, - SessionToken: os.Getenv("AWS_SESSION_TOKEN"), - ProviderName: EnvProviderName, - }, nil -} - -// IsExpired returns if the credentials have been retrieved. -func (e *EnvProvider) IsExpired() bool { - return !e.retrieved -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider_test.go deleted file mode 100644 index d309cb12..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider_test.go +++ /dev/null @@ -1,71 +0,0 @@ -package credentials - -import ( - "os" - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestEnvProviderRetrieve(t *testing.T) { - os.Clearenv() - os.Setenv("AWS_ACCESS_KEY_ID", "access") - os.Setenv("AWS_SECRET_ACCESS_KEY", "secret") - os.Setenv("AWS_SESSION_TOKEN", "token") - - e := EnvProvider{} - creds, err := e.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "access", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Equal(t, "token", creds.SessionToken, "Expect session token to match") -} - -func TestEnvProviderIsExpired(t *testing.T) { - os.Clearenv() - os.Setenv("AWS_ACCESS_KEY_ID", "access") - os.Setenv("AWS_SECRET_ACCESS_KEY", "secret") - os.Setenv("AWS_SESSION_TOKEN", "token") - - e := EnvProvider{} - - assert.True(t, e.IsExpired(), "Expect creds to be expired before retrieve.") - - _, err := e.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.False(t, e.IsExpired(), "Expect creds to not be expired after retrieve.") -} - -func TestEnvProviderNoAccessKeyID(t *testing.T) { - os.Clearenv() - os.Setenv("AWS_SECRET_ACCESS_KEY", "secret") - - e := EnvProvider{} - creds, err := e.Retrieve() - assert.Equal(t, ErrAccessKeyIDNotFound, err, "ErrAccessKeyIDNotFound expected, but was %#v error: %#v", creds, err) -} - -func TestEnvProviderNoSecretAccessKey(t *testing.T) { - os.Clearenv() - os.Setenv("AWS_ACCESS_KEY_ID", "access") - - e := EnvProvider{} - creds, err := e.Retrieve() - assert.Equal(t, ErrSecretAccessKeyNotFound, err, "ErrSecretAccessKeyNotFound expected, but was %#v error: %#v", creds, err) -} - -func TestEnvProviderAlternateNames(t *testing.T) { - os.Clearenv() - os.Setenv("AWS_ACCESS_KEY", "access") - os.Setenv("AWS_SECRET_KEY", "secret") - - e := EnvProvider{} - creds, err := e.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "access", creds.AccessKeyID, "Expected access key ID") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expected secret access key") - assert.Empty(t, creds.SessionToken, "Expected no token") -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/example.ini b/vendor/github.com/aws/aws-sdk-go/aws/credentials/example.ini deleted file mode 100644 index 7fc91d9d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/example.ini +++ /dev/null @@ -1,12 +0,0 @@ -[default] -aws_access_key_id = accessKey -aws_secret_access_key = secret -aws_session_token = token - -[no_token] -aws_access_key_id = accessKey -aws_secret_access_key = secret - -[with_colon] -aws_access_key_id: accessKey -aws_secret_access_key: secret diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go deleted file mode 100644 index 7fb7cbf0..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go +++ /dev/null @@ -1,151 +0,0 @@ -package credentials - -import ( - "fmt" - "os" - "path/filepath" - - "github.com/go-ini/ini" - - "github.com/aws/aws-sdk-go/aws/awserr" -) - -// SharedCredsProviderName provides a name of SharedCreds provider -const SharedCredsProviderName = "SharedCredentialsProvider" - -var ( - // ErrSharedCredentialsHomeNotFound is emitted when the user directory cannot be found. - // - // @readonly - ErrSharedCredentialsHomeNotFound = awserr.New("UserHomeNotFound", "user home directory not found.", nil) -) - -// A SharedCredentialsProvider retrieves credentials from the current user's home -// directory, and keeps track if those credentials are expired. -// -// Profile ini file example: $HOME/.aws/credentials -type SharedCredentialsProvider struct { - // Path to the shared credentials file. - // - // If empty will look for "AWS_SHARED_CREDENTIALS_FILE" env variable. If the - // env value is empty will default to current user's home directory. - // Linux/OSX: "$HOME/.aws/credentials" - // Windows: "%USERPROFILE%\.aws\credentials" - Filename string - - // AWS Profile to extract credentials from the shared credentials file. If empty - // will default to environment variable "AWS_PROFILE" or "default" if - // environment variable is also not set. - Profile string - - // retrieved states if the credentials have been successfully retrieved. - retrieved bool -} - -// NewSharedCredentials returns a pointer to a new Credentials object -// wrapping the Profile file provider. -func NewSharedCredentials(filename, profile string) *Credentials { - return NewCredentials(&SharedCredentialsProvider{ - Filename: filename, - Profile: profile, - }) -} - -// Retrieve reads and extracts the shared credentials from the current -// users home directory. -func (p *SharedCredentialsProvider) Retrieve() (Value, error) { - p.retrieved = false - - filename, err := p.filename() - if err != nil { - return Value{ProviderName: SharedCredsProviderName}, err - } - - creds, err := loadProfile(filename, p.profile()) - if err != nil { - return Value{ProviderName: SharedCredsProviderName}, err - } - - p.retrieved = true - return creds, nil -} - -// IsExpired returns if the shared credentials have expired. -func (p *SharedCredentialsProvider) IsExpired() bool { - return !p.retrieved -} - -// loadProfiles loads from the file pointed to by shared credentials filename for profile. -// The credentials retrieved from the profile will be returned or error. Error will be -// returned if it fails to read from the file, or the data is invalid. -func loadProfile(filename, profile string) (Value, error) { - config, err := ini.Load(filename) - if err != nil { - return Value{ProviderName: SharedCredsProviderName}, awserr.New("SharedCredsLoad", "failed to load shared credentials file", err) - } - iniProfile, err := config.GetSection(profile) - if err != nil { - return Value{ProviderName: SharedCredsProviderName}, awserr.New("SharedCredsLoad", "failed to get profile", err) - } - - id, err := iniProfile.GetKey("aws_access_key_id") - if err != nil { - return Value{ProviderName: SharedCredsProviderName}, awserr.New("SharedCredsAccessKey", - fmt.Sprintf("shared credentials %s in %s did not contain aws_access_key_id", profile, filename), - err) - } - - secret, err := iniProfile.GetKey("aws_secret_access_key") - if err != nil { - return Value{ProviderName: SharedCredsProviderName}, awserr.New("SharedCredsSecret", - fmt.Sprintf("shared credentials %s in %s did not contain aws_secret_access_key", profile, filename), - nil) - } - - // Default to empty string if not found - token := iniProfile.Key("aws_session_token") - - return Value{ - AccessKeyID: id.String(), - SecretAccessKey: secret.String(), - SessionToken: token.String(), - ProviderName: SharedCredsProviderName, - }, nil -} - -// filename returns the filename to use to read AWS shared credentials. -// -// Will return an error if the user's home directory path cannot be found. -func (p *SharedCredentialsProvider) filename() (string, error) { - if p.Filename == "" { - if p.Filename = os.Getenv("AWS_SHARED_CREDENTIALS_FILE"); p.Filename != "" { - return p.Filename, nil - } - - homeDir := os.Getenv("HOME") // *nix - if homeDir == "" { // Windows - homeDir = os.Getenv("USERPROFILE") - } - if homeDir == "" { - return "", ErrSharedCredentialsHomeNotFound - } - - p.Filename = filepath.Join(homeDir, ".aws", "credentials") - } - - return p.Filename, nil -} - -// profile returns the AWS shared credentials profile. If empty will read -// environment variable "AWS_PROFILE". If that is not set profile will -// return "default". -func (p *SharedCredentialsProvider) profile() string { - if p.Profile == "" { - p.Profile = os.Getenv("AWS_PROFILE") - } - if p.Profile == "" { - p.Profile = "default" - } - - return p.Profile -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider_test.go deleted file mode 100644 index 6b4093a1..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider_test.go +++ /dev/null @@ -1,116 +0,0 @@ -package credentials - -import ( - "os" - "path/filepath" - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestSharedCredentialsProvider(t *testing.T) { - os.Clearenv() - - p := SharedCredentialsProvider{Filename: "example.ini", Profile: ""} - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "accessKey", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Equal(t, "token", creds.SessionToken, "Expect session token to match") -} - -func TestSharedCredentialsProviderIsExpired(t *testing.T) { - os.Clearenv() - - p := SharedCredentialsProvider{Filename: "example.ini", Profile: ""} - - assert.True(t, p.IsExpired(), "Expect creds to be expired before retrieve") - - _, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.False(t, p.IsExpired(), "Expect creds to not be expired after retrieve") -} - -func TestSharedCredentialsProviderWithAWS_SHARED_CREDENTIALS_FILE(t *testing.T) { - os.Clearenv() - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", "example.ini") - p := SharedCredentialsProvider{} - creds, err := p.Retrieve() - - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "accessKey", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Equal(t, "token", creds.SessionToken, "Expect session token to match") -} - -func TestSharedCredentialsProviderWithAWS_SHARED_CREDENTIALS_FILEAbsPath(t *testing.T) { - os.Clearenv() - wd, err := os.Getwd() - assert.NoError(t, err) - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", filepath.Join(wd, "example.ini")) - p := SharedCredentialsProvider{} - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "accessKey", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Equal(t, "token", creds.SessionToken, "Expect session token to match") -} - -func TestSharedCredentialsProviderWithAWS_PROFILE(t *testing.T) { - os.Clearenv() - os.Setenv("AWS_PROFILE", "no_token") - - p := SharedCredentialsProvider{Filename: "example.ini", Profile: ""} - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "accessKey", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Empty(t, creds.SessionToken, "Expect no token") -} - -func TestSharedCredentialsProviderWithoutTokenFromProfile(t *testing.T) { - os.Clearenv() - - p := SharedCredentialsProvider{Filename: "example.ini", Profile: "no_token"} - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "accessKey", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Empty(t, creds.SessionToken, "Expect no token") -} - -func TestSharedCredentialsProviderColonInCredFile(t *testing.T) { - os.Clearenv() - - p := SharedCredentialsProvider{Filename: "example.ini", Profile: "with_colon"} - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "accessKey", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "secret", creds.SecretAccessKey, "Expect secret access key to match") - assert.Empty(t, creds.SessionToken, "Expect no token") -} - -func BenchmarkSharedCredentialsProvider(b *testing.B) { - os.Clearenv() - - p := SharedCredentialsProvider{Filename: "example.ini", Profile: ""} - _, err := p.Retrieve() - if err != nil { - b.Fatal(err) - } - - b.ResetTimer() - for i := 0; i < b.N; i++ { - _, err := p.Retrieve() - if err != nil { - b.Fatal(err) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go deleted file mode 100644 index 4f5dab3f..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go +++ /dev/null @@ -1,57 +0,0 @@ -package credentials - -import ( - "github.com/aws/aws-sdk-go/aws/awserr" -) - -// StaticProviderName provides a name of Static provider -const StaticProviderName = "StaticProvider" - -var ( - // ErrStaticCredentialsEmpty is emitted when static credentials are empty. - // - // @readonly - ErrStaticCredentialsEmpty = awserr.New("EmptyStaticCreds", "static credentials are empty", nil) -) - -// A StaticProvider is a set of credentials which are set programmatically, -// and will never expire. -type StaticProvider struct { - Value -} - -// NewStaticCredentials returns a pointer to a new Credentials object -// wrapping a static credentials value provider. -func NewStaticCredentials(id, secret, token string) *Credentials { - return NewCredentials(&StaticProvider{Value: Value{ - AccessKeyID: id, - SecretAccessKey: secret, - SessionToken: token, - }}) -} - -// NewStaticCredentialsFromCreds returns a pointer to a new Credentials object -// wrapping the static credentials value provide. Same as NewStaticCredentials -// but takes the creds Value instead of individual fields -func NewStaticCredentialsFromCreds(creds Value) *Credentials { - return NewCredentials(&StaticProvider{Value: creds}) -} - -// Retrieve returns the credentials or error if the credentials are invalid. -func (s *StaticProvider) Retrieve() (Value, error) { - if s.AccessKeyID == "" || s.SecretAccessKey == "" { - return Value{ProviderName: StaticProviderName}, ErrStaticCredentialsEmpty - } - - if len(s.Value.ProviderName) == 0 { - s.Value.ProviderName = StaticProviderName - } - return s.Value, nil -} - -// IsExpired returns if the credentials are expired. -// -// For StaticProvider, the credentials never expired. -func (s *StaticProvider) IsExpired() bool { - return false -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider_test.go deleted file mode 100644 index 46521876..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider_test.go +++ /dev/null @@ -1,35 +0,0 @@ -package credentials - -import ( - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestStaticProviderGet(t *testing.T) { - s := StaticProvider{ - Value: Value{ - AccessKeyID: "AKID", - SecretAccessKey: "SECRET", - SessionToken: "", - }, - } - - creds, err := s.Retrieve() - assert.Nil(t, err, "Expect no error") - assert.Equal(t, "AKID", creds.AccessKeyID, "Expect access key ID to match") - assert.Equal(t, "SECRET", creds.SecretAccessKey, "Expect secret access key to match") - assert.Empty(t, creds.SessionToken, "Expect no session token") -} - -func TestStaticProviderIsExpired(t *testing.T) { - s := StaticProvider{ - Value: Value{ - AccessKeyID: "AKID", - SecretAccessKey: "SECRET", - SessionToken: "", - }, - } - - assert.False(t, s.IsExpired(), "Expect static credentials to never expire") -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go deleted file mode 100644 index 30c847ae..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go +++ /dev/null @@ -1,161 +0,0 @@ -// Package stscreds are credential Providers to retrieve STS AWS credentials. -// -// STS provides multiple ways to retrieve credentials which can be used when making -// future AWS service API operation calls. -package stscreds - -import ( - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/service/sts" -) - -// ProviderName provides a name of AssumeRole provider -const ProviderName = "AssumeRoleProvider" - -// AssumeRoler represents the minimal subset of the STS client API used by this provider. -type AssumeRoler interface { - AssumeRole(input *sts.AssumeRoleInput) (*sts.AssumeRoleOutput, error) -} - -// DefaultDuration is the default amount of time in minutes that the credentials -// will be valid for. -var DefaultDuration = time.Duration(15) * time.Minute - -// AssumeRoleProvider retrieves temporary credentials from the STS service, and -// keeps track of their expiration time. This provider must be used explicitly, -// as it is not included in the credentials chain. -type AssumeRoleProvider struct { - credentials.Expiry - - // STS client to make assume role request with. - Client AssumeRoler - - // Role to be assumed. - RoleARN string - - // Session name, if you wish to reuse the credentials elsewhere. - RoleSessionName string - - // Expiry duration of the STS credentials. Defaults to 15 minutes if not set. - Duration time.Duration - - // Optional ExternalID to pass along, defaults to nil if not set. - ExternalID *string - - // The policy plain text must be 2048 bytes or shorter. However, an internal - // conversion compresses it into a packed binary format with a separate limit. - // The PackedPolicySize response element indicates by percentage how close to - // the upper size limit the policy is, with 100% equaling the maximum allowed - // size. - Policy *string - - // The identification number of the MFA device that is associated with the user - // who is making the AssumeRole call. Specify this value if the trust policy - // of the role being assumed includes a condition that requires MFA authentication. - // The value is either the serial number for a hardware device (such as GAHT12345678) - // or an Amazon Resource Name (ARN) for a virtual device (such as arn:aws:iam::123456789012:mfa/user). - SerialNumber *string - - // The value provided by the MFA device, if the trust policy of the role being - // assumed requires MFA (that is, if the policy includes a condition that tests - // for MFA). If the role being assumed requires MFA and if the TokenCode value - // is missing or expired, the AssumeRole call returns an "access denied" error. - TokenCode *string - - // ExpiryWindow will allow the credentials to trigger refreshing prior to - // the credentials actually expiring. This is beneficial so race conditions - // with expiring credentials do not cause request to fail unexpectedly - // due to ExpiredTokenException exceptions. - // - // So a ExpiryWindow of 10s would cause calls to IsExpired() to return true - // 10 seconds before the credentials are actually expired. - // - // If ExpiryWindow is 0 or less it will be ignored. - ExpiryWindow time.Duration -} - -// NewCredentials returns a pointer to a new Credentials object wrapping the -// AssumeRoleProvider. The credentials will expire every 15 minutes and the -// role will be named after a nanosecond timestamp of this operation. -// -// Takes a Config provider to create the STS client. The ConfigProvider is -// satisfied by the session.Session type. -func NewCredentials(c client.ConfigProvider, roleARN string, options ...func(*AssumeRoleProvider)) *credentials.Credentials { - p := &AssumeRoleProvider{ - Client: sts.New(c), - RoleARN: roleARN, - Duration: DefaultDuration, - } - - for _, option := range options { - option(p) - } - - return credentials.NewCredentials(p) -} - -// NewCredentialsWithClient returns a pointer to a new Credentials object wrapping the -// AssumeRoleProvider. The credentials will expire every 15 minutes and the -// role will be named after a nanosecond timestamp of this operation. -// -// Takes an AssumeRoler which can be satisfiede by the STS client. -func NewCredentialsWithClient(svc AssumeRoler, roleARN string, options ...func(*AssumeRoleProvider)) *credentials.Credentials { - p := &AssumeRoleProvider{ - Client: svc, - RoleARN: roleARN, - Duration: DefaultDuration, - } - - for _, option := range options { - option(p) - } - - return credentials.NewCredentials(p) -} - -// Retrieve generates a new set of temporary credentials using STS. -func (p *AssumeRoleProvider) Retrieve() (credentials.Value, error) { - - // Apply defaults where parameters are not set. - if p.RoleSessionName == "" { - // Try to work out a role name that will hopefully end up unique. - p.RoleSessionName = fmt.Sprintf("%d", time.Now().UTC().UnixNano()) - } - if p.Duration == 0 { - // Expire as often as AWS permits. - p.Duration = DefaultDuration - } - input := &sts.AssumeRoleInput{ - DurationSeconds: aws.Int64(int64(p.Duration / time.Second)), - RoleArn: aws.String(p.RoleARN), - RoleSessionName: aws.String(p.RoleSessionName), - ExternalId: p.ExternalID, - } - if p.Policy != nil { - input.Policy = p.Policy - } - if p.SerialNumber != nil && p.TokenCode != nil { - input.SerialNumber = p.SerialNumber - input.TokenCode = p.TokenCode - } - roleOutput, err := p.Client.AssumeRole(input) - - if err != nil { - return credentials.Value{ProviderName: ProviderName}, err - } - - // We will proactively generate new credentials before they expire. - p.SetExpiration(*roleOutput.Credentials.Expiration, p.ExpiryWindow) - - return credentials.Value{ - AccessKeyID: *roleOutput.Credentials.AccessKeyId, - SecretAccessKey: *roleOutput.Credentials.SecretAccessKey, - SessionToken: *roleOutput.Credentials.SessionToken, - ProviderName: ProviderName, - }, nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider_test.go b/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider_test.go deleted file mode 100644 index 6bd6e919..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider_test.go +++ /dev/null @@ -1,56 +0,0 @@ -package stscreds - -import ( - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/service/sts" - "github.com/stretchr/testify/assert" -) - -type stubSTS struct { -} - -func (s *stubSTS) AssumeRole(input *sts.AssumeRoleInput) (*sts.AssumeRoleOutput, error) { - expiry := time.Now().Add(60 * time.Minute) - return &sts.AssumeRoleOutput{ - Credentials: &sts.Credentials{ - // Just reflect the role arn to the provider. - AccessKeyId: input.RoleArn, - SecretAccessKey: aws.String("assumedSecretAccessKey"), - SessionToken: aws.String("assumedSessionToken"), - Expiration: &expiry, - }, - }, nil -} - -func TestAssumeRoleProvider(t *testing.T) { - stub := &stubSTS{} - p := &AssumeRoleProvider{ - Client: stub, - RoleARN: "roleARN", - } - - creds, err := p.Retrieve() - assert.Nil(t, err, "Expect no error") - - assert.Equal(t, "roleARN", creds.AccessKeyID, "Expect access key ID to be reflected role ARN") - assert.Equal(t, "assumedSecretAccessKey", creds.SecretAccessKey, "Expect secret access key to match") - assert.Equal(t, "assumedSessionToken", creds.SessionToken, "Expect session token to match") -} - -func BenchmarkAssumeRoleProvider(b *testing.B) { - stub := &stubSTS{} - p := &AssumeRoleProvider{ - Client: stub, - RoleARN: "roleARN", - } - - b.ResetTimer() - for i := 0; i < b.N; i++ { - if _, err := p.Retrieve(); err != nil { - b.Fatal(err) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults.go b/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults.go deleted file mode 100644 index 8dbbf670..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults.go +++ /dev/null @@ -1,130 +0,0 @@ -// Package defaults is a collection of helpers to retrieve the SDK's default -// configuration and handlers. -// -// Generally this package shouldn't be used directly, but session.Session -// instead. This package is useful when you need to reset the defaults -// of a session or service client to the SDK defaults before setting -// additional parameters. -package defaults - -import ( - "fmt" - "net/http" - "os" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/corehandlers" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds" - "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds" - "github.com/aws/aws-sdk-go/aws/ec2metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/endpoints" -) - -// A Defaults provides a collection of default values for SDK clients. -type Defaults struct { - Config *aws.Config - Handlers request.Handlers -} - -// Get returns the SDK's default values with Config and handlers pre-configured. -func Get() Defaults { - cfg := Config() - handlers := Handlers() - cfg.Credentials = CredChain(cfg, handlers) - - return Defaults{ - Config: cfg, - Handlers: handlers, - } -} - -// Config returns the default configuration without credentials. -// To retrieve a config with credentials also included use -// `defaults.Get().Config` instead. -// -// Generally you shouldn't need to use this method directly, but -// is available if you need to reset the configuration of an -// existing service client or session. -func Config() *aws.Config { - return aws.NewConfig(). - WithCredentials(credentials.AnonymousCredentials). - WithRegion(os.Getenv("AWS_REGION")). - WithHTTPClient(http.DefaultClient). - WithMaxRetries(aws.UseServiceDefaultRetries). - WithLogger(aws.NewDefaultLogger()). - WithLogLevel(aws.LogOff). - WithSleepDelay(time.Sleep) -} - -// Handlers returns the default request handlers. -// -// Generally you shouldn't need to use this method directly, but -// is available if you need to reset the request handlers of an -// existing service client or session. -func Handlers() request.Handlers { - var handlers request.Handlers - - handlers.Validate.PushBackNamed(corehandlers.ValidateEndpointHandler) - handlers.Validate.AfterEachFn = request.HandlerListStopOnError - handlers.Build.PushBackNamed(corehandlers.SDKVersionUserAgentHandler) - handlers.Build.AfterEachFn = request.HandlerListStopOnError - handlers.Sign.PushBackNamed(corehandlers.BuildContentLengthHandler) - handlers.Send.PushBackNamed(corehandlers.ValidateReqSigHandler) - handlers.Send.PushBackNamed(corehandlers.SendHandler) - handlers.AfterRetry.PushBackNamed(corehandlers.AfterRetryHandler) - handlers.ValidateResponse.PushBackNamed(corehandlers.ValidateResponseHandler) - - return handlers -} - -// CredChain returns the default credential chain. -// -// Generally you shouldn't need to use this method directly, but -// is available if you need to reset the credentials of an -// existing service client or session's Config. -func CredChain(cfg *aws.Config, handlers request.Handlers) *credentials.Credentials { - return credentials.NewCredentials(&credentials.ChainProvider{ - VerboseErrors: aws.BoolValue(cfg.CredentialsChainVerboseErrors), - Providers: []credentials.Provider{ - &credentials.EnvProvider{}, - &credentials.SharedCredentialsProvider{Filename: "", Profile: ""}, - RemoteCredProvider(*cfg, handlers), - }, - }) -} - -// RemoteCredProvider returns a credenitials provider for the default remote -// endpoints such as EC2 or ECS Roles. -func RemoteCredProvider(cfg aws.Config, handlers request.Handlers) credentials.Provider { - ecsCredURI := os.Getenv("AWS_CONTAINER_CREDENTIALS_RELATIVE_URI") - - if len(ecsCredURI) > 0 { - return ecsCredProvider(cfg, handlers, ecsCredURI) - } - - return ec2RoleProvider(cfg, handlers) -} - -func ecsCredProvider(cfg aws.Config, handlers request.Handlers, uri string) credentials.Provider { - const host = `169.254.170.2` - - return endpointcreds.NewProviderClient(cfg, handlers, - fmt.Sprintf("http://%s%s", host, uri), - func(p *endpointcreds.Provider) { - p.ExpiryWindow = 5 * time.Minute - }, - ) -} - -func ec2RoleProvider(cfg aws.Config, handlers request.Handlers) credentials.Provider { - endpoint, signingRegion := endpoints.EndpointForRegion(ec2metadata.ServiceName, - aws.StringValue(cfg.Region), true, false) - - return &ec2rolecreds.EC2RoleProvider{ - Client: ec2metadata.NewClient(cfg, handlers, endpoint, signingRegion), - ExpiryWindow: 5 * time.Minute, - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults_test.go b/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults_test.go deleted file mode 100644 index 68226743..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults_test.go +++ /dev/null @@ -1,39 +0,0 @@ -package defaults - -import ( - "fmt" - "os" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds" - "github.com/aws/aws-sdk-go/aws/credentials/endpointcreds" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/stretchr/testify/assert" -) - -func TestECSCredProvider(t *testing.T) { - defer os.Clearenv() - os.Setenv("AWS_CONTAINER_CREDENTIALS_RELATIVE_URI", "/abc/123") - - provider := RemoteCredProvider(aws.Config{}, request.Handlers{}) - - assert.NotNil(t, provider) - - ecsProvider, ok := provider.(*endpointcreds.Provider) - assert.NotNil(t, ecsProvider) - assert.True(t, ok) - - assert.Equal(t, fmt.Sprintf("http://169.254.170.2/abc/123"), - ecsProvider.Client.Endpoint) -} - -func TestDefaultEC2RoleProvider(t *testing.T) { - provider := RemoteCredProvider(aws.Config{}, request.Handlers{}) - - assert.NotNil(t, provider) - - ec2Provider, ok := provider.(*ec2rolecreds.EC2RoleProvider) - assert.NotNil(t, ec2Provider) - assert.True(t, ok) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go b/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go deleted file mode 100644 index e5755d11..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go +++ /dev/null @@ -1,162 +0,0 @@ -package ec2metadata - -import ( - "encoding/json" - "fmt" - "net/http" - "path" - "strings" - "time" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" -) - -// GetMetadata uses the path provided to request information from the EC2 -// instance metdata service. The content will be returned as a string, or -// error if the request failed. -func (c *EC2Metadata) GetMetadata(p string) (string, error) { - op := &request.Operation{ - Name: "GetMetadata", - HTTPMethod: "GET", - HTTPPath: path.Join("/", "meta-data", p), - } - - output := &metadataOutput{} - req := c.NewRequest(op, nil, output) - - return output.Content, req.Send() -} - -// GetUserData returns the userdata that was configured for the service. If -// there is no user-data setup for the EC2 instance a "NotFoundError" error -// code will be returned. -func (c *EC2Metadata) GetUserData() (string, error) { - op := &request.Operation{ - Name: "GetUserData", - HTTPMethod: "GET", - HTTPPath: path.Join("/", "user-data"), - } - - output := &metadataOutput{} - req := c.NewRequest(op, nil, output) - req.Handlers.UnmarshalError.PushBack(func(r *request.Request) { - if r.HTTPResponse.StatusCode == http.StatusNotFound { - r.Error = awserr.New("NotFoundError", "user-data not found", r.Error) - } - }) - - return output.Content, req.Send() -} - -// GetDynamicData uses the path provided to request information from the EC2 -// instance metadata service for dynamic data. The content will be returned -// as a string, or error if the request failed. -func (c *EC2Metadata) GetDynamicData(p string) (string, error) { - op := &request.Operation{ - Name: "GetDynamicData", - HTTPMethod: "GET", - HTTPPath: path.Join("/", "dynamic", p), - } - - output := &metadataOutput{} - req := c.NewRequest(op, nil, output) - - return output.Content, req.Send() -} - -// GetInstanceIdentityDocument retrieves an identity document describing an -// instance. Error is returned if the request fails or is unable to parse -// the response. -func (c *EC2Metadata) GetInstanceIdentityDocument() (EC2InstanceIdentityDocument, error) { - resp, err := c.GetDynamicData("instance-identity/document") - if err != nil { - return EC2InstanceIdentityDocument{}, - awserr.New("EC2MetadataRequestError", - "failed to get EC2 instance identity document", err) - } - - doc := EC2InstanceIdentityDocument{} - if err := json.NewDecoder(strings.NewReader(resp)).Decode(&doc); err != nil { - return EC2InstanceIdentityDocument{}, - awserr.New("SerializationError", - "failed to decode EC2 instance identity document", err) - } - - return doc, nil -} - -// IAMInfo retrieves IAM info from the metadata API -func (c *EC2Metadata) IAMInfo() (EC2IAMInfo, error) { - resp, err := c.GetMetadata("iam/info") - if err != nil { - return EC2IAMInfo{}, - awserr.New("EC2MetadataRequestError", - "failed to get EC2 IAM info", err) - } - - info := EC2IAMInfo{} - if err := json.NewDecoder(strings.NewReader(resp)).Decode(&info); err != nil { - return EC2IAMInfo{}, - awserr.New("SerializationError", - "failed to decode EC2 IAM info", err) - } - - if info.Code != "Success" { - errMsg := fmt.Sprintf("failed to get EC2 IAM Info (%s)", info.Code) - return EC2IAMInfo{}, - awserr.New("EC2MetadataError", errMsg, nil) - } - - return info, nil -} - -// Region returns the region the instance is running in. -func (c *EC2Metadata) Region() (string, error) { - resp, err := c.GetMetadata("placement/availability-zone") - if err != nil { - return "", err - } - - // returns region without the suffix. Eg: us-west-2a becomes us-west-2 - return resp[:len(resp)-1], nil -} - -// Available returns if the application has access to the EC2 Metadata service. -// Can be used to determine if application is running within an EC2 Instance and -// the metadata service is available. -func (c *EC2Metadata) Available() bool { - if _, err := c.GetMetadata("instance-id"); err != nil { - return false - } - - return true -} - -// An EC2IAMInfo provides the shape for unmarshalling -// an IAM info from the metadata API -type EC2IAMInfo struct { - Code string - LastUpdated time.Time - InstanceProfileArn string - InstanceProfileID string -} - -// An EC2InstanceIdentityDocument provides the shape for unmarshalling -// an instance identity document -type EC2InstanceIdentityDocument struct { - DevpayProductCodes []string `json:"devpayProductCodes"` - AvailabilityZone string `json:"availabilityZone"` - PrivateIP string `json:"privateIp"` - Version string `json:"version"` - Region string `json:"region"` - InstanceID string `json:"instanceId"` - BillingProducts []string `json:"billingProducts"` - InstanceType string `json:"instanceType"` - AccountID string `json:"accountId"` - PendingTime time.Time `json:"pendingTime"` - ImageID string `json:"imageId"` - KernelID string `json:"kernelId"` - RamdiskID string `json:"ramdiskId"` - Architecture string `json:"architecture"` -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api_test.go b/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api_test.go deleted file mode 100644 index 35e75782..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api_test.go +++ /dev/null @@ -1,242 +0,0 @@ -package ec2metadata_test - -import ( - "bytes" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/http/httptest" - "path" - "strings" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/ec2metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" -) - -const instanceIdentityDocument = `{ - "devpayProductCodes" : null, - "availabilityZone" : "us-east-1d", - "privateIp" : "10.158.112.84", - "version" : "2010-08-31", - "region" : "us-east-1", - "instanceId" : "i-1234567890abcdef0", - "billingProducts" : null, - "instanceType" : "t1.micro", - "accountId" : "123456789012", - "pendingTime" : "2015-11-19T16:32:11Z", - "imageId" : "ami-5fb8c835", - "kernelId" : "aki-919dcaf8", - "ramdiskId" : null, - "architecture" : "x86_64" -}` - -const validIamInfo = `{ - "Code" : "Success", - "LastUpdated" : "2016-03-17T12:27:32Z", - "InstanceProfileArn" : "arn:aws:iam::123456789012:instance-profile/my-instance-profile", - "InstanceProfileId" : "AIPAABCDEFGHIJKLMN123" -}` - -const unsuccessfulIamInfo = `{ - "Code" : "Failed", - "LastUpdated" : "2016-03-17T12:27:32Z", - "InstanceProfileArn" : "arn:aws:iam::123456789012:instance-profile/my-instance-profile", - "InstanceProfileId" : "AIPAABCDEFGHIJKLMN123" -}` - -func initTestServer(path string, resp string) *httptest.Server { - return httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - if r.RequestURI != path { - http.Error(w, "not found", http.StatusNotFound) - return - } - - w.Write([]byte(resp)) - })) -} - -func TestEndpoint(t *testing.T) { - c := ec2metadata.New(unit.Session) - op := &request.Operation{ - Name: "GetMetadata", - HTTPMethod: "GET", - HTTPPath: path.Join("/", "meta-data", "testpath"), - } - - req := c.NewRequest(op, nil, nil) - assert.Equal(t, "http://169.254.169.254/latest", req.ClientInfo.Endpoint) - assert.Equal(t, "http://169.254.169.254/latest/meta-data/testpath", req.HTTPRequest.URL.String()) -} - -func TestGetMetadata(t *testing.T) { - server := initTestServer( - "/latest/meta-data/some/path", - "success", // real response includes suffix - ) - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - resp, err := c.GetMetadata("some/path") - - assert.NoError(t, err) - assert.Equal(t, "success", resp) -} - -func TestGetUserData(t *testing.T) { - server := initTestServer( - "/latest/user-data", - "success", // real response includes suffix - ) - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - resp, err := c.GetUserData() - - assert.NoError(t, err) - assert.Equal(t, "success", resp) -} - -func TestGetUserData_Error(t *testing.T) { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - reader := strings.NewReader(` - - - - 404 - Not Found - - -

404 - Not Found

- -`) - w.Header().Set("Content-Type", "text/html") - w.Header().Set("Content-Length", fmt.Sprintf("%d", reader.Len())) - w.WriteHeader(http.StatusNotFound) - io.Copy(w, reader) - })) - - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - resp, err := c.GetUserData() - assert.Error(t, err) - assert.Empty(t, resp) - - aerr, ok := err.(awserr.Error) - assert.True(t, ok) - assert.Equal(t, "NotFoundError", aerr.Code()) -} - -func TestGetRegion(t *testing.T) { - server := initTestServer( - "/latest/meta-data/placement/availability-zone", - "us-west-2a", // real response includes suffix - ) - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - region, err := c.Region() - - assert.NoError(t, err) - assert.Equal(t, "us-west-2", region) -} - -func TestMetadataAvailable(t *testing.T) { - server := initTestServer( - "/latest/meta-data/instance-id", - "instance-id", - ) - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - available := c.Available() - - assert.True(t, available) -} - -func TestMetadataIAMInfo_success(t *testing.T) { - server := initTestServer( - "/latest/meta-data/iam/info", - validIamInfo, - ) - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - iamInfo, err := c.IAMInfo() - assert.NoError(t, err) - assert.Equal(t, "Success", iamInfo.Code) - assert.Equal(t, "arn:aws:iam::123456789012:instance-profile/my-instance-profile", iamInfo.InstanceProfileArn) - assert.Equal(t, "AIPAABCDEFGHIJKLMN123", iamInfo.InstanceProfileID) -} - -func TestMetadataIAMInfo_failure(t *testing.T) { - server := initTestServer( - "/latest/meta-data/iam/info", - unsuccessfulIamInfo, - ) - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - iamInfo, err := c.IAMInfo() - assert.NotNil(t, err) - assert.Equal(t, "", iamInfo.Code) - assert.Equal(t, "", iamInfo.InstanceProfileArn) - assert.Equal(t, "", iamInfo.InstanceProfileID) -} - -func TestMetadataNotAvailable(t *testing.T) { - c := ec2metadata.New(unit.Session) - c.Handlers.Send.Clear() - c.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &http.Response{ - StatusCode: int(0), - Status: http.StatusText(int(0)), - Body: ioutil.NopCloser(bytes.NewReader([]byte{})), - } - r.Error = awserr.New("RequestError", "send request failed", nil) - r.Retryable = aws.Bool(true) // network errors are retryable - }) - - available := c.Available() - - assert.False(t, available) -} - -func TestMetadataErrorResponse(t *testing.T) { - c := ec2metadata.New(unit.Session) - c.Handlers.Send.Clear() - c.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &http.Response{ - StatusCode: http.StatusBadRequest, - Status: http.StatusText(http.StatusBadRequest), - Body: ioutil.NopCloser(strings.NewReader("error message text")), - } - r.Retryable = aws.Bool(false) // network errors are retryable - }) - - data, err := c.GetMetadata("uri/path") - assert.Empty(t, data) - assert.Contains(t, err.Error(), "error message text") -} - -func TestEC2RoleProviderInstanceIdentity(t *testing.T) { - server := initTestServer( - "/latest/dynamic/instance-identity/document", - instanceIdentityDocument, - ) - defer server.Close() - c := ec2metadata.New(unit.Session, &aws.Config{Endpoint: aws.String(server.URL + "/latest")}) - - doc, err := c.GetInstanceIdentityDocument() - assert.Nil(t, err, "Expect no error, %v", err) - assert.Equal(t, doc.AccountID, "123456789012") - assert.Equal(t, doc.AvailabilityZone, "us-east-1d") - assert.Equal(t, doc.Region, "us-east-1") -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go b/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go deleted file mode 100644 index 5b4379db..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go +++ /dev/null @@ -1,124 +0,0 @@ -// Package ec2metadata provides the client for making API calls to the -// EC2 Metadata service. -package ec2metadata - -import ( - "bytes" - "errors" - "io" - "net/http" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" -) - -// ServiceName is the name of the service. -const ServiceName = "ec2metadata" - -// A EC2Metadata is an EC2 Metadata service Client. -type EC2Metadata struct { - *client.Client -} - -// New creates a new instance of the EC2Metadata client with a session. -// This client is safe to use across multiple goroutines. -// -// -// Example: -// // Create a EC2Metadata client from just a session. -// svc := ec2metadata.New(mySession) -// -// // Create a EC2Metadata client with additional configuration -// svc := ec2metadata.New(mySession, aws.NewConfig().WithLogLevel(aws.LogDebugHTTPBody)) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *EC2Metadata { - c := p.ClientConfig(ServiceName, cfgs...) - return NewClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// NewClient returns a new EC2Metadata client. Should be used to create -// a client when not using a session. Generally using just New with a session -// is preferred. -// -// If an unmodified HTTP client is provided from the stdlib default, or no client -// the EC2RoleProvider's EC2Metadata HTTP client's timeout will be shortened. -// To disable this set Config.EC2MetadataDisableTimeoutOverride to false. Enabled by default. -func NewClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string, opts ...func(*client.Client)) *EC2Metadata { - if !aws.BoolValue(cfg.EC2MetadataDisableTimeoutOverride) && httpClientZero(cfg.HTTPClient) { - // If the http client is unmodified and this feature is not disabled - // set custom timeouts for EC2Metadata requests. - cfg.HTTPClient = &http.Client{ - // use a shorter timeout than default because the metadata - // service is local if it is running, and to fail faster - // if not running on an ec2 instance. - Timeout: 5 * time.Second, - } - } - - svc := &EC2Metadata{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - Endpoint: endpoint, - APIVersion: "latest", - }, - handlers, - ), - } - - svc.Handlers.Unmarshal.PushBack(unmarshalHandler) - svc.Handlers.UnmarshalError.PushBack(unmarshalError) - svc.Handlers.Validate.Clear() - svc.Handlers.Validate.PushBack(validateEndpointHandler) - - // Add additional options to the service config - for _, option := range opts { - option(svc.Client) - } - - return svc -} - -func httpClientZero(c *http.Client) bool { - return c == nil || (c.Transport == nil && c.CheckRedirect == nil && c.Jar == nil && c.Timeout == 0) -} - -type metadataOutput struct { - Content string -} - -func unmarshalHandler(r *request.Request) { - defer r.HTTPResponse.Body.Close() - b := &bytes.Buffer{} - if _, err := io.Copy(b, r.HTTPResponse.Body); err != nil { - r.Error = awserr.New("SerializationError", "unable to unmarshal EC2 metadata respose", err) - return - } - - if data, ok := r.Data.(*metadataOutput); ok { - data.Content = b.String() - } -} - -func unmarshalError(r *request.Request) { - defer r.HTTPResponse.Body.Close() - b := &bytes.Buffer{} - if _, err := io.Copy(b, r.HTTPResponse.Body); err != nil { - r.Error = awserr.New("SerializationError", "unable to unmarshal EC2 metadata error respose", err) - return - } - - // Response body format is not consistent between metadata endpoints. - // Grab the error message as a string and include that as the source error - r.Error = awserr.New("EC2MetadataError", "failed to make EC2Metadata request", errors.New(b.String())) -} - -func validateEndpointHandler(r *request.Request) { - if r.ClientInfo.Endpoint == "" { - r.Error = aws.ErrMissingEndpoint - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service_test.go b/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service_test.go deleted file mode 100644 index c2bc2158..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service_test.go +++ /dev/null @@ -1,78 +0,0 @@ -package ec2metadata_test - -import ( - "net/http" - "net/http/httptest" - "sync" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/ec2metadata" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/stretchr/testify/assert" -) - -func TestClientOverrideDefaultHTTPClientTimeout(t *testing.T) { - svc := ec2metadata.New(unit.Session) - - assert.NotEqual(t, http.DefaultClient, svc.Config.HTTPClient) - assert.Equal(t, 5*time.Second, svc.Config.HTTPClient.Timeout) -} - -func TestClientNotOverrideDefaultHTTPClientTimeout(t *testing.T) { - http.DefaultClient.Transport = &http.Transport{} - defer func() { - http.DefaultClient.Transport = nil - }() - - svc := ec2metadata.New(unit.Session) - - assert.Equal(t, http.DefaultClient, svc.Config.HTTPClient) - - tr, ok := svc.Config.HTTPClient.Transport.(*http.Transport) - assert.True(t, ok) - assert.NotNil(t, tr) - assert.Nil(t, tr.Dial) -} - -func TestClientDisableOverrideDefaultHTTPClientTimeout(t *testing.T) { - svc := ec2metadata.New(unit.Session, aws.NewConfig().WithEC2MetadataDisableTimeoutOverride(true)) - - assert.Equal(t, http.DefaultClient, svc.Config.HTTPClient) -} - -func TestClientOverrideDefaultHTTPClientTimeoutRace(t *testing.T) { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - w.Write([]byte("us-east-1a")) - })) - - cfg := aws.NewConfig().WithEndpoint(server.URL) - runEC2MetadataClients(t, cfg, 100) -} - -func TestClientOverrideDefaultHTTPClientTimeoutRaceWithTransport(t *testing.T) { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - w.Write([]byte("us-east-1a")) - })) - - cfg := aws.NewConfig().WithEndpoint(server.URL).WithHTTPClient(&http.Client{ - Transport: http.DefaultTransport, - }) - - runEC2MetadataClients(t, cfg, 100) -} - -func runEC2MetadataClients(t *testing.T, cfg *aws.Config, atOnce int) { - var wg sync.WaitGroup - wg.Add(atOnce) - for i := 0; i < atOnce; i++ { - go func() { - svc := ec2metadata.New(unit.Session, cfg) - _, err := svc.Region() - assert.NoError(t, err) - wg.Done() - }() - } - wg.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/errors.go b/vendor/github.com/aws/aws-sdk-go/aws/errors.go deleted file mode 100644 index 57663616..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/errors.go +++ /dev/null @@ -1,17 +0,0 @@ -package aws - -import "github.com/aws/aws-sdk-go/aws/awserr" - -var ( - // ErrMissingRegion is an error that is returned if region configuration is - // not found. - // - // @readonly - ErrMissingRegion = awserr.New("MissingRegion", "could not find region configuration", nil) - - // ErrMissingEndpoint is an error that is returned if an endpoint cannot be - // resolved for a service. - // - // @readonly - ErrMissingEndpoint = awserr.New("MissingEndpoint", "'Endpoint' configuration is required for this service", nil) -) diff --git a/vendor/github.com/aws/aws-sdk-go/aws/logger.go b/vendor/github.com/aws/aws-sdk-go/aws/logger.go deleted file mode 100644 index db87188e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/logger.go +++ /dev/null @@ -1,112 +0,0 @@ -package aws - -import ( - "log" - "os" -) - -// A LogLevelType defines the level logging should be performed at. Used to instruct -// the SDK which statements should be logged. -type LogLevelType uint - -// LogLevel returns the pointer to a LogLevel. Should be used to workaround -// not being able to take the address of a non-composite literal. -func LogLevel(l LogLevelType) *LogLevelType { - return &l -} - -// Value returns the LogLevel value or the default value LogOff if the LogLevel -// is nil. Safe to use on nil value LogLevelTypes. -func (l *LogLevelType) Value() LogLevelType { - if l != nil { - return *l - } - return LogOff -} - -// Matches returns true if the v LogLevel is enabled by this LogLevel. Should be -// used with logging sub levels. Is safe to use on nil value LogLevelTypes. If -// LogLevel is nill, will default to LogOff comparison. -func (l *LogLevelType) Matches(v LogLevelType) bool { - c := l.Value() - return c&v == v -} - -// AtLeast returns true if this LogLevel is at least high enough to satisfies v. -// Is safe to use on nil value LogLevelTypes. If LogLevel is nill, will default -// to LogOff comparison. -func (l *LogLevelType) AtLeast(v LogLevelType) bool { - c := l.Value() - return c >= v -} - -const ( - // LogOff states that no logging should be performed by the SDK. This is the - // default state of the SDK, and should be use to disable all logging. - LogOff LogLevelType = iota * 0x1000 - - // LogDebug state that debug output should be logged by the SDK. This should - // be used to inspect request made and responses received. - LogDebug -) - -// Debug Logging Sub Levels -const ( - // LogDebugWithSigning states that the SDK should log request signing and - // presigning events. This should be used to log the signing details of - // requests for debugging. Will also enable LogDebug. - LogDebugWithSigning LogLevelType = LogDebug | (1 << iota) - - // LogDebugWithHTTPBody states the SDK should log HTTP request and response - // HTTP bodys in addition to the headers and path. This should be used to - // see the body content of requests and responses made while using the SDK - // Will also enable LogDebug. - LogDebugWithHTTPBody - - // LogDebugWithRequestRetries states the SDK should log when service requests will - // be retried. This should be used to log when you want to log when service - // requests are being retried. Will also enable LogDebug. - LogDebugWithRequestRetries - - // LogDebugWithRequestErrors states the SDK should log when service requests fail - // to build, send, validate, or unmarshal. - LogDebugWithRequestErrors -) - -// A Logger is a minimalistic interface for the SDK to log messages to. Should -// be used to provide custom logging writers for the SDK to use. -type Logger interface { - Log(...interface{}) -} - -// A LoggerFunc is a convenience type to convert a function taking a variadic -// list of arguments and wrap it so the Logger interface can be used. -// -// Example: -// s3.New(sess, &aws.Config{Logger: aws.LoggerFunc(func(args ...interface{}) { -// fmt.Fprintln(os.Stdout, args...) -// })}) -type LoggerFunc func(...interface{}) - -// Log calls the wrapped function with the arguments provided -func (f LoggerFunc) Log(args ...interface{}) { - f(args...) -} - -// NewDefaultLogger returns a Logger which will write log messages to stdout, and -// use same formatting runes as the stdlib log.Logger -func NewDefaultLogger() Logger { - return &defaultLogger{ - logger: log.New(os.Stdout, "", log.LstdFlags), - } -} - -// A defaultLogger provides a minimalistic logger satisfying the Logger interface. -type defaultLogger struct { - logger *log.Logger -} - -// Log logs the parameters to the stdlib logger. See log.Println. -func (l defaultLogger) Log(args ...interface{}) { - l.logger.Println(args...) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go b/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go deleted file mode 100644 index 5279c19c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go +++ /dev/null @@ -1,187 +0,0 @@ -package request - -import ( - "fmt" - "strings" -) - -// A Handlers provides a collection of request handlers for various -// stages of handling requests. -type Handlers struct { - Validate HandlerList - Build HandlerList - Sign HandlerList - Send HandlerList - ValidateResponse HandlerList - Unmarshal HandlerList - UnmarshalMeta HandlerList - UnmarshalError HandlerList - Retry HandlerList - AfterRetry HandlerList -} - -// Copy returns of this handler's lists. -func (h *Handlers) Copy() Handlers { - return Handlers{ - Validate: h.Validate.copy(), - Build: h.Build.copy(), - Sign: h.Sign.copy(), - Send: h.Send.copy(), - ValidateResponse: h.ValidateResponse.copy(), - Unmarshal: h.Unmarshal.copy(), - UnmarshalError: h.UnmarshalError.copy(), - UnmarshalMeta: h.UnmarshalMeta.copy(), - Retry: h.Retry.copy(), - AfterRetry: h.AfterRetry.copy(), - } -} - -// Clear removes callback functions for all handlers -func (h *Handlers) Clear() { - h.Validate.Clear() - h.Build.Clear() - h.Send.Clear() - h.Sign.Clear() - h.Unmarshal.Clear() - h.UnmarshalMeta.Clear() - h.UnmarshalError.Clear() - h.ValidateResponse.Clear() - h.Retry.Clear() - h.AfterRetry.Clear() -} - -// A HandlerListRunItem represents an entry in the HandlerList which -// is being run. -type HandlerListRunItem struct { - Index int - Handler NamedHandler - Request *Request -} - -// A HandlerList manages zero or more handlers in a list. -type HandlerList struct { - list []NamedHandler - - // Called after each request handler in the list is called. If set - // and the func returns true the HandlerList will continue to iterate - // over the request handlers. If false is returned the HandlerList - // will stop iterating. - // - // Should be used if extra logic to be performed between each handler - // in the list. This can be used to terminate a list's iteration - // based on a condition such as error like, HandlerListStopOnError. - // Or for logging like HandlerListLogItem. - AfterEachFn func(item HandlerListRunItem) bool -} - -// A NamedHandler is a struct that contains a name and function callback. -type NamedHandler struct { - Name string - Fn func(*Request) -} - -// copy creates a copy of the handler list. -func (l *HandlerList) copy() HandlerList { - n := HandlerList{ - AfterEachFn: l.AfterEachFn, - } - n.list = append([]NamedHandler{}, l.list...) - return n -} - -// Clear clears the handler list. -func (l *HandlerList) Clear() { - l.list = []NamedHandler{} -} - -// Len returns the number of handlers in the list. -func (l *HandlerList) Len() int { - return len(l.list) -} - -// PushBack pushes handler f to the back of the handler list. -func (l *HandlerList) PushBack(f func(*Request)) { - l.list = append(l.list, NamedHandler{"__anonymous", f}) -} - -// PushFront pushes handler f to the front of the handler list. -func (l *HandlerList) PushFront(f func(*Request)) { - l.list = append([]NamedHandler{{"__anonymous", f}}, l.list...) -} - -// PushBackNamed pushes named handler f to the back of the handler list. -func (l *HandlerList) PushBackNamed(n NamedHandler) { - l.list = append(l.list, n) -} - -// PushFrontNamed pushes named handler f to the front of the handler list. -func (l *HandlerList) PushFrontNamed(n NamedHandler) { - l.list = append([]NamedHandler{n}, l.list...) -} - -// Remove removes a NamedHandler n -func (l *HandlerList) Remove(n NamedHandler) { - newlist := []NamedHandler{} - for _, m := range l.list { - if m.Name != n.Name { - newlist = append(newlist, m) - } - } - l.list = newlist -} - -// Run executes all handlers in the list with a given request object. -func (l *HandlerList) Run(r *Request) { - for i, h := range l.list { - h.Fn(r) - item := HandlerListRunItem{ - Index: i, Handler: h, Request: r, - } - if l.AfterEachFn != nil && !l.AfterEachFn(item) { - return - } - } -} - -// HandlerListLogItem logs the request handler and the state of the -// request's Error value. Always returns true to continue iterating -// request handlers in a HandlerList. -func HandlerListLogItem(item HandlerListRunItem) bool { - if item.Request.Config.Logger == nil { - return true - } - item.Request.Config.Logger.Log("DEBUG: RequestHandler", - item.Index, item.Handler.Name, item.Request.Error) - - return true -} - -// HandlerListStopOnError returns false to stop the HandlerList iterating -// over request handlers if Request.Error is not nil. True otherwise -// to continue iterating. -func HandlerListStopOnError(item HandlerListRunItem) bool { - return item.Request.Error == nil -} - -// MakeAddToUserAgentHandler will add the name/version pair to the User-Agent request -// header. If the extra parameters are provided they will be added as metadata to the -// name/version pair resulting in the following format. -// "name/version (extra0; extra1; ...)" -// The user agent part will be concatenated with this current request's user agent string. -func MakeAddToUserAgentHandler(name, version string, extra ...string) func(*Request) { - ua := fmt.Sprintf("%s/%s", name, version) - if len(extra) > 0 { - ua += fmt.Sprintf(" (%s)", strings.Join(extra, "; ")) - } - return func(r *Request) { - AddToUserAgent(r, ua) - } -} - -// MakeAddToUserAgentFreeFormHandler adds the input to the User-Agent request header. -// The input string will be concatenated with the current request's user agent string. -func MakeAddToUserAgentFreeFormHandler(s string) func(*Request) { - return func(r *Request) { - AddToUserAgent(r, s) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/handlers_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/handlers_test.go deleted file mode 100644 index b32a6510..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/handlers_test.go +++ /dev/null @@ -1,87 +0,0 @@ -package request_test - -import ( - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" -) - -func TestHandlerList(t *testing.T) { - s := "" - r := &request.Request{} - l := request.HandlerList{} - l.PushBack(func(r *request.Request) { - s += "a" - r.Data = s - }) - l.Run(r) - assert.Equal(t, "a", s) - assert.Equal(t, "a", r.Data) -} - -func TestMultipleHandlers(t *testing.T) { - r := &request.Request{} - l := request.HandlerList{} - l.PushBack(func(r *request.Request) { r.Data = nil }) - l.PushFront(func(r *request.Request) { r.Data = aws.Bool(true) }) - l.Run(r) - if r.Data != nil { - t.Error("Expected handler to execute") - } -} - -func TestNamedHandlers(t *testing.T) { - l := request.HandlerList{} - named := request.NamedHandler{Name: "Name", Fn: func(r *request.Request) {}} - named2 := request.NamedHandler{Name: "NotName", Fn: func(r *request.Request) {}} - l.PushBackNamed(named) - l.PushBackNamed(named) - l.PushBackNamed(named2) - l.PushBack(func(r *request.Request) {}) - assert.Equal(t, 4, l.Len()) - l.Remove(named) - assert.Equal(t, 2, l.Len()) -} - -func TestLoggedHandlers(t *testing.T) { - expectedHandlers := []string{"name1", "name2"} - l := request.HandlerList{} - loggedHandlers := []string{} - l.AfterEachFn = request.HandlerListLogItem - cfg := aws.Config{Logger: aws.LoggerFunc(func(args ...interface{}) { - loggedHandlers = append(loggedHandlers, args[2].(string)) - })} - - named1 := request.NamedHandler{Name: "name1", Fn: func(r *request.Request) {}} - named2 := request.NamedHandler{Name: "name2", Fn: func(r *request.Request) {}} - l.PushBackNamed(named1) - l.PushBackNamed(named2) - l.Run(&request.Request{Config: cfg}) - - assert.Equal(t, expectedHandlers, loggedHandlers) -} - -func TestStopHandlers(t *testing.T) { - l := request.HandlerList{} - stopAt := 1 - l.AfterEachFn = func(item request.HandlerListRunItem) bool { - return item.Index != stopAt - } - - called := 0 - l.PushBackNamed(request.NamedHandler{Name: "name1", Fn: func(r *request.Request) { - called++ - }}) - l.PushBackNamed(request.NamedHandler{Name: "name2", Fn: func(r *request.Request) { - called++ - }}) - l.PushBackNamed(request.NamedHandler{Name: "name3", Fn: func(r *request.Request) { - assert.Fail(t, "third handler should not be called") - }}) - l.Run(&request.Request{}) - - assert.Equal(t, 2, called, "Expect only two handlers to be called") -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go b/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go deleted file mode 100644 index 79f79602..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go +++ /dev/null @@ -1,24 +0,0 @@ -package request - -import ( - "io" - "net/http" - "net/url" -) - -func copyHTTPRequest(r *http.Request, body io.ReadCloser) *http.Request { - req := new(http.Request) - *req = *r - req.URL = &url.URL{} - *req.URL = *r.URL - req.Body = body - - req.Header = http.Header{} - for k, v := range r.Header { - for _, vv := range v { - req.Header.Add(k, vv) - } - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_copy_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_copy_test.go deleted file mode 100644 index 4a4f8550..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_copy_test.go +++ /dev/null @@ -1,34 +0,0 @@ -package request - -import ( - "bytes" - "io/ioutil" - "net/http" - "net/url" - "sync" - "testing" -) - -func TestRequestCopyRace(t *testing.T) { - origReq := &http.Request{URL: &url.URL{}, Header: http.Header{}} - origReq.Header.Set("Header", "OrigValue") - - var wg sync.WaitGroup - for i := 0; i < 100; i++ { - wg.Add(1) - go func() { - req := copyHTTPRequest(origReq, ioutil.NopCloser(&bytes.Buffer{})) - req.Header.Set("Header", "Value") - go func() { - req2 := copyHTTPRequest(req, ioutil.NopCloser(&bytes.Buffer{})) - req2.Header.Add("Header", "Value2") - }() - _ = req.Header.Get("Header") - wg.Done() - }() - _ = origReq.Header.Get("Header") - } - origReq.Header.Get("Header") - - wg.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_retry_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_retry_test.go deleted file mode 100644 index fc0f46fb..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_retry_test.go +++ /dev/null @@ -1,37 +0,0 @@ -// +build go1.5 - -package request_test - -import ( - "errors" - "strings" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/mock" - "github.com/stretchr/testify/assert" -) - -func TestRequestCancelRetry(t *testing.T) { - c := make(chan struct{}) - - reqNum := 0 - s := mock.NewMockClient(aws.NewConfig().WithMaxRetries(10)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.Clear() - s.Handlers.UnmarshalMeta.Clear() - s.Handlers.UnmarshalError.Clear() - s.Handlers.Send.PushFront(func(r *request.Request) { - reqNum++ - r.Error = errors.New("net/http: canceled") - }) - out := &testData{} - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, out) - r.HTTPRequest.Cancel = c - close(c) - - err := r.Send() - assert.True(t, strings.Contains(err.Error(), "canceled")) - assert.Equal(t, 1, reqNum) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go b/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go deleted file mode 100644 index 02f07f4a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go +++ /dev/null @@ -1,58 +0,0 @@ -package request - -import ( - "io" - "sync" -) - -// offsetReader is a thread-safe io.ReadCloser to prevent racing -// with retrying requests -type offsetReader struct { - buf io.ReadSeeker - lock sync.Mutex - closed bool -} - -func newOffsetReader(buf io.ReadSeeker, offset int64) *offsetReader { - reader := &offsetReader{} - buf.Seek(offset, 0) - - reader.buf = buf - return reader -} - -// Close will close the instance of the offset reader's access to -// the underlying io.ReadSeeker. -func (o *offsetReader) Close() error { - o.lock.Lock() - defer o.lock.Unlock() - o.closed = true - return nil -} - -// Read is a thread-safe read of the underlying io.ReadSeeker -func (o *offsetReader) Read(p []byte) (int, error) { - o.lock.Lock() - defer o.lock.Unlock() - - if o.closed { - return 0, io.EOF - } - - return o.buf.Read(p) -} - -// Seek is a thread-safe seeking operation. -func (o *offsetReader) Seek(offset int64, whence int) (int64, error) { - o.lock.Lock() - defer o.lock.Unlock() - - return o.buf.Seek(offset, whence) -} - -// CloseAndCopy will return a new offsetReader with a copy of the old buffer -// and close the old buffer. -func (o *offsetReader) CloseAndCopy(offset int64) *offsetReader { - o.Close() - return newOffsetReader(o.buf, offset) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader_test.go deleted file mode 100644 index 01856e31..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader_test.go +++ /dev/null @@ -1,139 +0,0 @@ -package request - -import ( - "bytes" - "io" - "math/rand" - "sync" - "testing" - "time" - - "github.com/stretchr/testify/assert" -) - -func TestOffsetReaderRead(t *testing.T) { - buf := []byte("testData") - reader := &offsetReader{buf: bytes.NewReader(buf)} - - tempBuf := make([]byte, len(buf)) - - n, err := reader.Read(tempBuf) - - assert.Equal(t, n, len(buf)) - assert.Nil(t, err) - assert.Equal(t, buf, tempBuf) -} - -func TestOffsetReaderSeek(t *testing.T) { - buf := []byte("testData") - reader := newOffsetReader(bytes.NewReader(buf), 0) - - orig, err := reader.Seek(0, 1) - assert.NoError(t, err) - assert.Equal(t, int64(0), orig) - - n, err := reader.Seek(0, 2) - assert.NoError(t, err) - assert.Equal(t, int64(len(buf)), n) - - n, err = reader.Seek(orig, 0) - assert.NoError(t, err) - assert.Equal(t, int64(0), n) -} - -func TestOffsetReaderClose(t *testing.T) { - buf := []byte("testData") - reader := &offsetReader{buf: bytes.NewReader(buf)} - - err := reader.Close() - assert.Nil(t, err) - - tempBuf := make([]byte, len(buf)) - n, err := reader.Read(tempBuf) - assert.Equal(t, n, 0) - assert.Equal(t, err, io.EOF) -} - -func TestOffsetReaderCloseAndCopy(t *testing.T) { - buf := []byte("testData") - tempBuf := make([]byte, len(buf)) - reader := &offsetReader{buf: bytes.NewReader(buf)} - - newReader := reader.CloseAndCopy(0) - - n, err := reader.Read(tempBuf) - assert.Equal(t, n, 0) - assert.Equal(t, err, io.EOF) - - n, err = newReader.Read(tempBuf) - assert.Equal(t, n, len(buf)) - assert.Nil(t, err) - assert.Equal(t, buf, tempBuf) -} - -func TestOffsetReaderCloseAndCopyOffset(t *testing.T) { - buf := []byte("testData") - tempBuf := make([]byte, len(buf)) - reader := &offsetReader{buf: bytes.NewReader(buf)} - - newReader := reader.CloseAndCopy(4) - n, err := newReader.Read(tempBuf) - assert.Equal(t, n, len(buf)-4) - assert.Nil(t, err) - - expected := []byte{'D', 'a', 't', 'a', 0, 0, 0, 0} - assert.Equal(t, expected, tempBuf) -} - -func TestOffsetReaderRace(t *testing.T) { - wg := sync.WaitGroup{} - - f := func(reader *offsetReader) { - defer wg.Done() - var err error - buf := make([]byte, 1) - _, err = reader.Read(buf) - for err != io.EOF { - _, err = reader.Read(buf) - } - - } - - closeFn := func(reader *offsetReader) { - defer wg.Done() - time.Sleep(time.Duration(rand.Intn(20)+1) * time.Millisecond) - reader.Close() - } - for i := 0; i < 50; i++ { - reader := &offsetReader{buf: bytes.NewReader(make([]byte, 1024*1024))} - wg.Add(1) - go f(reader) - wg.Add(1) - go closeFn(reader) - } - wg.Wait() -} - -func BenchmarkOffsetReader(b *testing.B) { - bufSize := 1024 * 1024 * 100 - buf := make([]byte, bufSize) - reader := &offsetReader{buf: bytes.NewReader(buf)} - - tempBuf := make([]byte, 1024) - - for i := 0; i < b.N; i++ { - reader.Read(tempBuf) - } -} - -func BenchmarkBytesReader(b *testing.B) { - bufSize := 1024 * 1024 * 100 - buf := make([]byte, bufSize) - reader := bytes.NewReader(buf) - - tempBuf := make([]byte, 1024) - - for i := 0; i < b.N; i++ { - reader.Read(tempBuf) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/request.go b/vendor/github.com/aws/aws-sdk-go/aws/request/request.go deleted file mode 100644 index 8ef9715c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/request.go +++ /dev/null @@ -1,344 +0,0 @@ -package request - -import ( - "bytes" - "fmt" - "io" - "net/http" - "net/url" - "reflect" - "strings" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client/metadata" -) - -// A Request is the service request to be made. -type Request struct { - Config aws.Config - ClientInfo metadata.ClientInfo - Handlers Handlers - - Retryer - Time time.Time - ExpireTime time.Duration - Operation *Operation - HTTPRequest *http.Request - HTTPResponse *http.Response - Body io.ReadSeeker - BodyStart int64 // offset from beginning of Body that the request body starts - Params interface{} - Error error - Data interface{} - RequestID string - RetryCount int - Retryable *bool - RetryDelay time.Duration - NotHoist bool - SignedHeaderVals http.Header - LastSignedAt time.Time - - built bool - - // Need to persist an intermideant body betweend the input Body and HTTP - // request body because the HTTP Client's transport can maintain a reference - // to the HTTP request's body after the client has returned. This value is - // safe to use concurrently and rewraps the input Body for each HTTP request. - safeBody *offsetReader -} - -// An Operation is the service API operation to be made. -type Operation struct { - Name string - HTTPMethod string - HTTPPath string - *Paginator -} - -// Paginator keeps track of pagination configuration for an API operation. -type Paginator struct { - InputTokens []string - OutputTokens []string - LimitToken string - TruncationToken string -} - -// New returns a new Request pointer for the service API -// operation and parameters. -// -// Params is any value of input parameters to be the request payload. -// Data is pointer value to an object which the request's response -// payload will be deserialized to. -func New(cfg aws.Config, clientInfo metadata.ClientInfo, handlers Handlers, - retryer Retryer, operation *Operation, params interface{}, data interface{}) *Request { - - method := operation.HTTPMethod - if method == "" { - method = "POST" - } - - httpReq, _ := http.NewRequest(method, "", nil) - - var err error - httpReq.URL, err = url.Parse(clientInfo.Endpoint + operation.HTTPPath) - if err != nil { - httpReq.URL = &url.URL{} - err = awserr.New("InvalidEndpointURL", "invalid endpoint uri", err) - } - - r := &Request{ - Config: cfg, - ClientInfo: clientInfo, - Handlers: handlers.Copy(), - - Retryer: retryer, - Time: time.Now(), - ExpireTime: 0, - Operation: operation, - HTTPRequest: httpReq, - Body: nil, - Params: params, - Error: err, - Data: data, - } - r.SetBufferBody([]byte{}) - - return r -} - -// WillRetry returns if the request's can be retried. -func (r *Request) WillRetry() bool { - return r.Error != nil && aws.BoolValue(r.Retryable) && r.RetryCount < r.MaxRetries() -} - -// ParamsFilled returns if the request's parameters have been populated -// and the parameters are valid. False is returned if no parameters are -// provided or invalid. -func (r *Request) ParamsFilled() bool { - return r.Params != nil && reflect.ValueOf(r.Params).Elem().IsValid() -} - -// DataFilled returns true if the request's data for response deserialization -// target has been set and is a valid. False is returned if data is not -// set, or is invalid. -func (r *Request) DataFilled() bool { - return r.Data != nil && reflect.ValueOf(r.Data).Elem().IsValid() -} - -// SetBufferBody will set the request's body bytes that will be sent to -// the service API. -func (r *Request) SetBufferBody(buf []byte) { - r.SetReaderBody(bytes.NewReader(buf)) -} - -// SetStringBody sets the body of the request to be backed by a string. -func (r *Request) SetStringBody(s string) { - r.SetReaderBody(strings.NewReader(s)) -} - -// SetReaderBody will set the request's body reader. -func (r *Request) SetReaderBody(reader io.ReadSeeker) { - r.Body = reader - r.ResetBody() -} - -// Presign returns the request's signed URL. Error will be returned -// if the signing fails. -func (r *Request) Presign(expireTime time.Duration) (string, error) { - r.ExpireTime = expireTime - r.NotHoist = false - r.Sign() - if r.Error != nil { - return "", r.Error - } - return r.HTTPRequest.URL.String(), nil -} - -// PresignRequest behaves just like presign, but hoists all headers and signs them. -// Also returns the signed hash back to the user -func (r *Request) PresignRequest(expireTime time.Duration) (string, http.Header, error) { - r.ExpireTime = expireTime - r.NotHoist = true - r.Sign() - if r.Error != nil { - return "", nil, r.Error - } - return r.HTTPRequest.URL.String(), r.SignedHeaderVals, nil -} - -func debugLogReqError(r *Request, stage string, retrying bool, err error) { - if !r.Config.LogLevel.Matches(aws.LogDebugWithRequestErrors) { - return - } - - retryStr := "not retrying" - if retrying { - retryStr = "will retry" - } - - r.Config.Logger.Log(fmt.Sprintf("DEBUG: %s %s/%s failed, %s, error %v", - stage, r.ClientInfo.ServiceName, r.Operation.Name, retryStr, err)) -} - -// Build will build the request's object so it can be signed and sent -// to the service. Build will also validate all the request's parameters. -// Anny additional build Handlers set on this request will be run -// in the order they were set. -// -// The request will only be built once. Multiple calls to build will have -// no effect. -// -// If any Validate or Build errors occur the build will stop and the error -// which occurred will be returned. -func (r *Request) Build() error { - if !r.built { - r.Handlers.Validate.Run(r) - if r.Error != nil { - debugLogReqError(r, "Validate Request", false, r.Error) - return r.Error - } - r.Handlers.Build.Run(r) - if r.Error != nil { - debugLogReqError(r, "Build Request", false, r.Error) - return r.Error - } - r.built = true - } - - return r.Error -} - -// Sign will sign the request returning error if errors are encountered. -// -// Send will build the request prior to signing. All Sign Handlers will -// be executed in the order they were set. -func (r *Request) Sign() error { - r.Build() - if r.Error != nil { - debugLogReqError(r, "Build Request", false, r.Error) - return r.Error - } - - r.Handlers.Sign.Run(r) - return r.Error -} - -// ResetBody rewinds the request body backto its starting position, and -// set's the HTTP Request body reference. When the body is read prior -// to being sent in the HTTP request it will need to be rewound. -func (r *Request) ResetBody() { - if r.safeBody != nil { - r.safeBody.Close() - } - - r.safeBody = newOffsetReader(r.Body, r.BodyStart) - r.HTTPRequest.Body = r.safeBody -} - -// GetBody will return an io.ReadSeeker of the Request's underlying -// input body with a concurrency safe wrapper. -func (r *Request) GetBody() io.ReadSeeker { - return r.safeBody -} - -// Send will send the request returning error if errors are encountered. -// -// Send will sign the request prior to sending. All Send Handlers will -// be executed in the order they were set. -// -// Canceling a request is non-deterministic. If a request has been canceled, -// then the transport will choose, randomly, one of the state channels during -// reads or getting the connection. -// -// readLoop() and getConn(req *Request, cm connectMethod) -// https://github.com/golang/go/blob/master/src/net/http/transport.go -// -// Send will not close the request.Request's body. -func (r *Request) Send() error { - for { - if aws.BoolValue(r.Retryable) { - if r.Config.LogLevel.Matches(aws.LogDebugWithRequestRetries) { - r.Config.Logger.Log(fmt.Sprintf("DEBUG: Retrying Request %s/%s, attempt %d", - r.ClientInfo.ServiceName, r.Operation.Name, r.RetryCount)) - } - - // The previous http.Request will have a reference to the r.Body - // and the HTTP Client's Transport may still be reading from - // the request's body even though the Client's Do returned. - r.HTTPRequest = copyHTTPRequest(r.HTTPRequest, nil) - r.ResetBody() - - // Closing response body to ensure that no response body is leaked - // between retry attempts. - if r.HTTPResponse != nil && r.HTTPResponse.Body != nil { - r.HTTPResponse.Body.Close() - } - } - - r.Sign() - if r.Error != nil { - return r.Error - } - - r.Retryable = nil - - r.Handlers.Send.Run(r) - if r.Error != nil { - if strings.Contains(r.Error.Error(), "net/http: request canceled") { - return r.Error - } - - err := r.Error - r.Handlers.Retry.Run(r) - r.Handlers.AfterRetry.Run(r) - if r.Error != nil { - debugLogReqError(r, "Send Request", false, r.Error) - return r.Error - } - debugLogReqError(r, "Send Request", true, err) - continue - } - r.Handlers.UnmarshalMeta.Run(r) - r.Handlers.ValidateResponse.Run(r) - if r.Error != nil { - err := r.Error - r.Handlers.UnmarshalError.Run(r) - r.Handlers.Retry.Run(r) - r.Handlers.AfterRetry.Run(r) - if r.Error != nil { - debugLogReqError(r, "Validate Response", false, r.Error) - return r.Error - } - debugLogReqError(r, "Validate Response", true, err) - continue - } - - r.Handlers.Unmarshal.Run(r) - if r.Error != nil { - err := r.Error - r.Handlers.Retry.Run(r) - r.Handlers.AfterRetry.Run(r) - if r.Error != nil { - debugLogReqError(r, "Unmarshal Response", false, r.Error) - return r.Error - } - debugLogReqError(r, "Unmarshal Response", true, err) - continue - } - - break - } - - return nil -} - -// AddToUserAgent adds the string to the end of the request's current user agent. -func AddToUserAgent(r *Request, s string) { - curUA := r.HTTPRequest.Header.Get("User-Agent") - if len(curUA) > 0 { - s = curUA + " " + s - } - r.HTTPRequest.Header.Set("User-Agent", s) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_6_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_6_test.go deleted file mode 100644 index afa0d946..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_6_test.go +++ /dev/null @@ -1,33 +0,0 @@ -// +build go1.6 - -package request_test - -import ( - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/defaults" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/endpoints" -) - -// go version 1.4 and 1.5 do not return an error. Version 1.5 will url encode -// the uri while 1.4 will not -func TestRequestInvalidEndpoint(t *testing.T) { - endpoint, _ := endpoints.NormalizeEndpoint("localhost:80 ", "test-service", "test-region", false, false) - r := request.New( - aws.Config{}, - metadata.ClientInfo{Endpoint: endpoint}, - defaults.Handlers(), - client.DefaultRetryer{}, - &request.Operation{}, - nil, - nil, - ) - - assert.Error(t, r.Error) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go b/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go deleted file mode 100644 index 2939ec47..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go +++ /dev/null @@ -1,104 +0,0 @@ -package request - -import ( - "reflect" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awsutil" -) - -//type Paginater interface { -// HasNextPage() bool -// NextPage() *Request -// EachPage(fn func(data interface{}, isLastPage bool) (shouldContinue bool)) error -//} - -// HasNextPage returns true if this request has more pages of data available. -func (r *Request) HasNextPage() bool { - return len(r.nextPageTokens()) > 0 -} - -// nextPageTokens returns the tokens to use when asking for the next page of -// data. -func (r *Request) nextPageTokens() []interface{} { - if r.Operation.Paginator == nil { - return nil - } - - if r.Operation.TruncationToken != "" { - tr, _ := awsutil.ValuesAtPath(r.Data, r.Operation.TruncationToken) - if len(tr) == 0 { - return nil - } - - switch v := tr[0].(type) { - case *bool: - if !aws.BoolValue(v) { - return nil - } - case bool: - if v == false { - return nil - } - } - } - - tokens := []interface{}{} - tokenAdded := false - for _, outToken := range r.Operation.OutputTokens { - v, _ := awsutil.ValuesAtPath(r.Data, outToken) - if len(v) > 0 { - tokens = append(tokens, v[0]) - tokenAdded = true - } else { - tokens = append(tokens, nil) - } - } - if !tokenAdded { - return nil - } - - return tokens -} - -// NextPage returns a new Request that can be executed to return the next -// page of result data. Call .Send() on this request to execute it. -func (r *Request) NextPage() *Request { - tokens := r.nextPageTokens() - if len(tokens) == 0 { - return nil - } - - data := reflect.New(reflect.TypeOf(r.Data).Elem()).Interface() - nr := New(r.Config, r.ClientInfo, r.Handlers, r.Retryer, r.Operation, awsutil.CopyOf(r.Params), data) - for i, intok := range nr.Operation.InputTokens { - awsutil.SetValueAtPath(nr.Params, intok, tokens[i]) - } - return nr -} - -// EachPage iterates over each page of a paginated request object. The fn -// parameter should be a function with the following sample signature: -// -// func(page *T, lastPage bool) bool { -// return true // return false to stop iterating -// } -// -// Where "T" is the structure type matching the output structure of the given -// operation. For example, a request object generated by -// DynamoDB.ListTablesRequest() would expect to see dynamodb.ListTablesOutput -// as the structure "T". The lastPage value represents whether the page is -// the last page of data or not. The return value of this function should -// return true to keep iterating or false to stop. -func (r *Request) EachPage(fn func(data interface{}, isLastPage bool) (shouldContinue bool)) error { - for page := r; page != nil; page = page.NextPage() { - if err := page.Send(); err != nil { - return err - } - if getNextPage := fn(page.Data, !page.HasNextPage()); !getNextPage { - return page.Error - } - } - - return nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination_test.go deleted file mode 100644 index 725ea25c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination_test.go +++ /dev/null @@ -1,455 +0,0 @@ -package request_test - -import ( - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/dynamodb" - "github.com/aws/aws-sdk-go/service/route53" - "github.com/aws/aws-sdk-go/service/s3" -) - -// Use DynamoDB methods for simplicity -func TestPaginationQueryPage(t *testing.T) { - db := dynamodb.New(unit.Session) - tokens, pages, numPages, gotToEnd := []map[string]*dynamodb.AttributeValue{}, []map[string]*dynamodb.AttributeValue{}, 0, false - - reqNum := 0 - resps := []*dynamodb.QueryOutput{ - { - LastEvaluatedKey: map[string]*dynamodb.AttributeValue{"key": {S: aws.String("key1")}}, - Count: aws.Int64(1), - Items: []map[string]*dynamodb.AttributeValue{ - { - "key": {S: aws.String("key1")}, - }, - }, - }, - { - LastEvaluatedKey: map[string]*dynamodb.AttributeValue{"key": {S: aws.String("key2")}}, - Count: aws.Int64(1), - Items: []map[string]*dynamodb.AttributeValue{ - { - "key": {S: aws.String("key2")}, - }, - }, - }, - { - LastEvaluatedKey: map[string]*dynamodb.AttributeValue{}, - Count: aws.Int64(1), - Items: []map[string]*dynamodb.AttributeValue{ - { - "key": {S: aws.String("key3")}, - }, - }, - }, - } - - db.Handlers.Send.Clear() // mock sending - db.Handlers.Unmarshal.Clear() - db.Handlers.UnmarshalMeta.Clear() - db.Handlers.ValidateResponse.Clear() - db.Handlers.Build.PushBack(func(r *request.Request) { - in := r.Params.(*dynamodb.QueryInput) - if in == nil { - tokens = append(tokens, nil) - } else if len(in.ExclusiveStartKey) != 0 { - tokens = append(tokens, in.ExclusiveStartKey) - } - }) - db.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = resps[reqNum] - reqNum++ - }) - - params := &dynamodb.QueryInput{ - Limit: aws.Int64(2), - TableName: aws.String("tablename"), - } - err := db.QueryPages(params, func(p *dynamodb.QueryOutput, last bool) bool { - numPages++ - for _, item := range p.Items { - pages = append(pages, item) - } - if last { - if gotToEnd { - assert.Fail(t, "last=true happened twice") - } - gotToEnd = true - } - return true - }) - assert.Nil(t, err) - - assert.Equal(t, - []map[string]*dynamodb.AttributeValue{ - {"key": {S: aws.String("key1")}}, - {"key": {S: aws.String("key2")}}, - }, tokens) - assert.Equal(t, - []map[string]*dynamodb.AttributeValue{ - {"key": {S: aws.String("key1")}}, - {"key": {S: aws.String("key2")}}, - {"key": {S: aws.String("key3")}}, - }, pages) - assert.Equal(t, 3, numPages) - assert.True(t, gotToEnd) - assert.Nil(t, params.ExclusiveStartKey) -} - -// Use DynamoDB methods for simplicity -func TestPagination(t *testing.T) { - db := dynamodb.New(unit.Session) - tokens, pages, numPages, gotToEnd := []string{}, []string{}, 0, false - - reqNum := 0 - resps := []*dynamodb.ListTablesOutput{ - {TableNames: []*string{aws.String("Table1"), aws.String("Table2")}, LastEvaluatedTableName: aws.String("Table2")}, - {TableNames: []*string{aws.String("Table3"), aws.String("Table4")}, LastEvaluatedTableName: aws.String("Table4")}, - {TableNames: []*string{aws.String("Table5")}}, - } - - db.Handlers.Send.Clear() // mock sending - db.Handlers.Unmarshal.Clear() - db.Handlers.UnmarshalMeta.Clear() - db.Handlers.ValidateResponse.Clear() - db.Handlers.Build.PushBack(func(r *request.Request) { - in := r.Params.(*dynamodb.ListTablesInput) - if in == nil { - tokens = append(tokens, "") - } else if in.ExclusiveStartTableName != nil { - tokens = append(tokens, *in.ExclusiveStartTableName) - } - }) - db.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = resps[reqNum] - reqNum++ - }) - - params := &dynamodb.ListTablesInput{Limit: aws.Int64(2)} - err := db.ListTablesPages(params, func(p *dynamodb.ListTablesOutput, last bool) bool { - numPages++ - for _, t := range p.TableNames { - pages = append(pages, *t) - } - if last { - if gotToEnd { - assert.Fail(t, "last=true happened twice") - } - gotToEnd = true - } - return true - }) - - assert.Equal(t, []string{"Table2", "Table4"}, tokens) - assert.Equal(t, []string{"Table1", "Table2", "Table3", "Table4", "Table5"}, pages) - assert.Equal(t, 3, numPages) - assert.True(t, gotToEnd) - assert.Nil(t, err) - assert.Nil(t, params.ExclusiveStartTableName) -} - -// Use DynamoDB methods for simplicity -func TestPaginationEachPage(t *testing.T) { - db := dynamodb.New(unit.Session) - tokens, pages, numPages, gotToEnd := []string{}, []string{}, 0, false - - reqNum := 0 - resps := []*dynamodb.ListTablesOutput{ - {TableNames: []*string{aws.String("Table1"), aws.String("Table2")}, LastEvaluatedTableName: aws.String("Table2")}, - {TableNames: []*string{aws.String("Table3"), aws.String("Table4")}, LastEvaluatedTableName: aws.String("Table4")}, - {TableNames: []*string{aws.String("Table5")}}, - } - - db.Handlers.Send.Clear() // mock sending - db.Handlers.Unmarshal.Clear() - db.Handlers.UnmarshalMeta.Clear() - db.Handlers.ValidateResponse.Clear() - db.Handlers.Build.PushBack(func(r *request.Request) { - in := r.Params.(*dynamodb.ListTablesInput) - if in == nil { - tokens = append(tokens, "") - } else if in.ExclusiveStartTableName != nil { - tokens = append(tokens, *in.ExclusiveStartTableName) - } - }) - db.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = resps[reqNum] - reqNum++ - }) - - params := &dynamodb.ListTablesInput{Limit: aws.Int64(2)} - req, _ := db.ListTablesRequest(params) - err := req.EachPage(func(p interface{}, last bool) bool { - numPages++ - for _, t := range p.(*dynamodb.ListTablesOutput).TableNames { - pages = append(pages, *t) - } - if last { - if gotToEnd { - assert.Fail(t, "last=true happened twice") - } - gotToEnd = true - } - - return true - }) - - assert.Equal(t, []string{"Table2", "Table4"}, tokens) - assert.Equal(t, []string{"Table1", "Table2", "Table3", "Table4", "Table5"}, pages) - assert.Equal(t, 3, numPages) - assert.True(t, gotToEnd) - assert.Nil(t, err) -} - -// Use DynamoDB methods for simplicity -func TestPaginationEarlyExit(t *testing.T) { - db := dynamodb.New(unit.Session) - numPages, gotToEnd := 0, false - - reqNum := 0 - resps := []*dynamodb.ListTablesOutput{ - {TableNames: []*string{aws.String("Table1"), aws.String("Table2")}, LastEvaluatedTableName: aws.String("Table2")}, - {TableNames: []*string{aws.String("Table3"), aws.String("Table4")}, LastEvaluatedTableName: aws.String("Table4")}, - {TableNames: []*string{aws.String("Table5")}}, - } - - db.Handlers.Send.Clear() // mock sending - db.Handlers.Unmarshal.Clear() - db.Handlers.UnmarshalMeta.Clear() - db.Handlers.ValidateResponse.Clear() - db.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = resps[reqNum] - reqNum++ - }) - - params := &dynamodb.ListTablesInput{Limit: aws.Int64(2)} - err := db.ListTablesPages(params, func(p *dynamodb.ListTablesOutput, last bool) bool { - numPages++ - if numPages == 2 { - return false - } - if last { - if gotToEnd { - assert.Fail(t, "last=true happened twice") - } - gotToEnd = true - } - return true - }) - - assert.Equal(t, 2, numPages) - assert.False(t, gotToEnd) - assert.Nil(t, err) -} - -func TestSkipPagination(t *testing.T) { - client := s3.New(unit.Session) - client.Handlers.Send.Clear() // mock sending - client.Handlers.Unmarshal.Clear() - client.Handlers.UnmarshalMeta.Clear() - client.Handlers.ValidateResponse.Clear() - client.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = &s3.HeadBucketOutput{} - }) - - req, _ := client.HeadBucketRequest(&s3.HeadBucketInput{Bucket: aws.String("bucket")}) - - numPages, gotToEnd := 0, false - req.EachPage(func(p interface{}, last bool) bool { - numPages++ - if last { - gotToEnd = true - } - return true - }) - assert.Equal(t, 1, numPages) - assert.True(t, gotToEnd) -} - -// Use S3 for simplicity -func TestPaginationTruncation(t *testing.T) { - client := s3.New(unit.Session) - - reqNum := 0 - resps := []*s3.ListObjectsOutput{ - {IsTruncated: aws.Bool(true), Contents: []*s3.Object{{Key: aws.String("Key1")}}}, - {IsTruncated: aws.Bool(true), Contents: []*s3.Object{{Key: aws.String("Key2")}}}, - {IsTruncated: aws.Bool(false), Contents: []*s3.Object{{Key: aws.String("Key3")}}}, - {IsTruncated: aws.Bool(true), Contents: []*s3.Object{{Key: aws.String("Key4")}}}, - } - - client.Handlers.Send.Clear() // mock sending - client.Handlers.Unmarshal.Clear() - client.Handlers.UnmarshalMeta.Clear() - client.Handlers.ValidateResponse.Clear() - client.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = resps[reqNum] - reqNum++ - }) - - params := &s3.ListObjectsInput{Bucket: aws.String("bucket")} - - results := []string{} - err := client.ListObjectsPages(params, func(p *s3.ListObjectsOutput, last bool) bool { - results = append(results, *p.Contents[0].Key) - return true - }) - - assert.Equal(t, []string{"Key1", "Key2", "Key3"}, results) - assert.Nil(t, err) - - // Try again without truncation token at all - reqNum = 0 - resps[1].IsTruncated = nil - resps[2].IsTruncated = aws.Bool(true) - results = []string{} - err = client.ListObjectsPages(params, func(p *s3.ListObjectsOutput, last bool) bool { - results = append(results, *p.Contents[0].Key) - return true - }) - - assert.Equal(t, []string{"Key1", "Key2"}, results) - assert.Nil(t, err) -} - -func TestPaginationNilToken(t *testing.T) { - client := route53.New(unit.Session) - - reqNum := 0 - resps := []*route53.ListResourceRecordSetsOutput{ - { - ResourceRecordSets: []*route53.ResourceRecordSet{ - {Name: aws.String("first.example.com.")}, - }, - IsTruncated: aws.Bool(true), - NextRecordName: aws.String("second.example.com."), - NextRecordType: aws.String("MX"), - NextRecordIdentifier: aws.String("second"), - MaxItems: aws.String("1"), - }, - { - ResourceRecordSets: []*route53.ResourceRecordSet{ - {Name: aws.String("second.example.com.")}, - }, - IsTruncated: aws.Bool(true), - NextRecordName: aws.String("third.example.com."), - NextRecordType: aws.String("MX"), - MaxItems: aws.String("1"), - }, - { - ResourceRecordSets: []*route53.ResourceRecordSet{ - {Name: aws.String("third.example.com.")}, - }, - IsTruncated: aws.Bool(false), - MaxItems: aws.String("1"), - }, - } - client.Handlers.Send.Clear() // mock sending - client.Handlers.Unmarshal.Clear() - client.Handlers.UnmarshalMeta.Clear() - client.Handlers.ValidateResponse.Clear() - - idents := []string{} - client.Handlers.Build.PushBack(func(r *request.Request) { - p := r.Params.(*route53.ListResourceRecordSetsInput) - idents = append(idents, aws.StringValue(p.StartRecordIdentifier)) - - }) - client.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = resps[reqNum] - reqNum++ - }) - - params := &route53.ListResourceRecordSetsInput{ - HostedZoneId: aws.String("id-zone"), - } - - results := []string{} - err := client.ListResourceRecordSetsPages(params, func(p *route53.ListResourceRecordSetsOutput, last bool) bool { - results = append(results, *p.ResourceRecordSets[0].Name) - return true - }) - - assert.NoError(t, err) - assert.Equal(t, []string{"", "second", ""}, idents) - assert.Equal(t, []string{"first.example.com.", "second.example.com.", "third.example.com."}, results) -} - -// Benchmarks -var benchResps = []*dynamodb.ListTablesOutput{ - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE"), aws.String("NXT")}, LastEvaluatedTableName: aws.String("NXT")}, - {TableNames: []*string{aws.String("TABLE")}}, -} - -var benchDb = func() *dynamodb.DynamoDB { - db := dynamodb.New(unit.Session) - db.Handlers.Send.Clear() // mock sending - db.Handlers.Unmarshal.Clear() - db.Handlers.UnmarshalMeta.Clear() - db.Handlers.ValidateResponse.Clear() - return db -} - -func BenchmarkCodegenIterator(b *testing.B) { - reqNum := 0 - db := benchDb() - db.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = benchResps[reqNum] - reqNum++ - }) - - input := &dynamodb.ListTablesInput{Limit: aws.Int64(2)} - iter := func(fn func(*dynamodb.ListTablesOutput, bool) bool) error { - page, _ := db.ListTablesRequest(input) - for ; page != nil; page = page.NextPage() { - page.Send() - out := page.Data.(*dynamodb.ListTablesOutput) - if result := fn(out, !page.HasNextPage()); page.Error != nil || !result { - return page.Error - } - } - return nil - } - - for i := 0; i < b.N; i++ { - reqNum = 0 - iter(func(p *dynamodb.ListTablesOutput, last bool) bool { - return true - }) - } -} - -func BenchmarkEachPageIterator(b *testing.B) { - reqNum := 0 - db := benchDb() - db.Handlers.Unmarshal.PushBack(func(r *request.Request) { - r.Data = benchResps[reqNum] - reqNum++ - }) - - input := &dynamodb.ListTablesInput{Limit: aws.Int64(2)} - for i := 0; i < b.N; i++ { - reqNum = 0 - req, _ := db.ListTablesRequest(input) - req.EachPage(func(p interface{}, last bool) bool { - return true - }) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/request_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/request_test.go deleted file mode 100644 index 16bdd615..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/request_test.go +++ /dev/null @@ -1,380 +0,0 @@ -package request_test - -import ( - "bytes" - "encoding/json" - "errors" - "fmt" - "io" - "io/ioutil" - "net/http" - "runtime" - "testing" - "time" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" -) - -type testData struct { - Data string -} - -func body(str string) io.ReadCloser { - return ioutil.NopCloser(bytes.NewReader([]byte(str))) -} - -func unmarshal(req *request.Request) { - defer req.HTTPResponse.Body.Close() - if req.Data != nil { - json.NewDecoder(req.HTTPResponse.Body).Decode(req.Data) - } - return -} - -func unmarshalError(req *request.Request) { - bodyBytes, err := ioutil.ReadAll(req.HTTPResponse.Body) - if err != nil { - req.Error = awserr.New("UnmarshaleError", req.HTTPResponse.Status, err) - return - } - if len(bodyBytes) == 0 { - req.Error = awserr.NewRequestFailure( - awserr.New("UnmarshaleError", req.HTTPResponse.Status, fmt.Errorf("empty body")), - req.HTTPResponse.StatusCode, - "", - ) - return - } - var jsonErr jsonErrorResponse - if err := json.Unmarshal(bodyBytes, &jsonErr); err != nil { - req.Error = awserr.New("UnmarshaleError", "JSON unmarshal", err) - return - } - req.Error = awserr.NewRequestFailure( - awserr.New(jsonErr.Code, jsonErr.Message, nil), - req.HTTPResponse.StatusCode, - "", - ) -} - -type jsonErrorResponse struct { - Code string `json:"__type"` - Message string `json:"message"` -} - -// test that retries occur for 5xx status codes -func TestRequestRecoverRetry5xx(t *testing.T) { - reqNum := 0 - reqs := []http.Response{ - {StatusCode: 500, Body: body(`{"__type":"UnknownError","message":"An error occurred."}`)}, - {StatusCode: 501, Body: body(`{"__type":"UnknownError","message":"An error occurred."}`)}, - {StatusCode: 200, Body: body(`{"data":"valid"}`)}, - } - - s := awstesting.NewClient(aws.NewConfig().WithMaxRetries(10)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &reqs[reqNum] - reqNum++ - }) - out := &testData{} - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, out) - err := r.Send() - assert.Nil(t, err) - assert.Equal(t, 2, int(r.RetryCount)) - assert.Equal(t, "valid", out.Data) -} - -// test that retries occur for 4xx status codes with a response type that can be retried - see `shouldRetry` -func TestRequestRecoverRetry4xxRetryable(t *testing.T) { - reqNum := 0 - reqs := []http.Response{ - {StatusCode: 400, Body: body(`{"__type":"Throttling","message":"Rate exceeded."}`)}, - {StatusCode: 429, Body: body(`{"__type":"ProvisionedThroughputExceededException","message":"Rate exceeded."}`)}, - {StatusCode: 200, Body: body(`{"data":"valid"}`)}, - } - - s := awstesting.NewClient(aws.NewConfig().WithMaxRetries(10)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &reqs[reqNum] - reqNum++ - }) - out := &testData{} - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, out) - err := r.Send() - assert.Nil(t, err) - assert.Equal(t, 2, int(r.RetryCount)) - assert.Equal(t, "valid", out.Data) -} - -// test that retries don't occur for 4xx status codes with a response type that can't be retried -func TestRequest4xxUnretryable(t *testing.T) { - s := awstesting.NewClient(aws.NewConfig().WithMaxRetries(10)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &http.Response{StatusCode: 401, Body: body(`{"__type":"SignatureDoesNotMatch","message":"Signature does not match."}`)} - }) - out := &testData{} - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, out) - err := r.Send() - assert.NotNil(t, err) - if e, ok := err.(awserr.RequestFailure); ok { - assert.Equal(t, 401, e.StatusCode()) - } else { - assert.Fail(t, "Expected error to be a service failure") - } - assert.Equal(t, "SignatureDoesNotMatch", err.(awserr.Error).Code()) - assert.Equal(t, "Signature does not match.", err.(awserr.Error).Message()) - assert.Equal(t, 0, int(r.RetryCount)) -} - -func TestRequestExhaustRetries(t *testing.T) { - delays := []time.Duration{} - sleepDelay := func(delay time.Duration) { - delays = append(delays, delay) - } - - reqNum := 0 - reqs := []http.Response{ - {StatusCode: 500, Body: body(`{"__type":"UnknownError","message":"An error occurred."}`)}, - {StatusCode: 500, Body: body(`{"__type":"UnknownError","message":"An error occurred."}`)}, - {StatusCode: 500, Body: body(`{"__type":"UnknownError","message":"An error occurred."}`)}, - {StatusCode: 500, Body: body(`{"__type":"UnknownError","message":"An error occurred."}`)}, - } - - s := awstesting.NewClient(aws.NewConfig().WithSleepDelay(sleepDelay)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &reqs[reqNum] - reqNum++ - }) - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, nil) - err := r.Send() - assert.NotNil(t, err) - if e, ok := err.(awserr.RequestFailure); ok { - assert.Equal(t, 500, e.StatusCode()) - } else { - assert.Fail(t, "Expected error to be a service failure") - } - assert.Equal(t, "UnknownError", err.(awserr.Error).Code()) - assert.Equal(t, "An error occurred.", err.(awserr.Error).Message()) - assert.Equal(t, 3, int(r.RetryCount)) - - expectDelays := []struct{ min, max time.Duration }{{30, 59}, {60, 118}, {120, 236}} - for i, v := range delays { - min := expectDelays[i].min * time.Millisecond - max := expectDelays[i].max * time.Millisecond - assert.True(t, min <= v && v <= max, - "Expect delay to be within range, i:%d, v:%s, min:%s, max:%s", i, v, min, max) - } -} - -// test that the request is retried after the credentials are expired. -func TestRequestRecoverExpiredCreds(t *testing.T) { - reqNum := 0 - reqs := []http.Response{ - {StatusCode: 400, Body: body(`{"__type":"ExpiredTokenException","message":"expired token"}`)}, - {StatusCode: 200, Body: body(`{"data":"valid"}`)}, - } - - s := awstesting.NewClient(&aws.Config{MaxRetries: aws.Int(10), Credentials: credentials.NewStaticCredentials("AKID", "SECRET", "")}) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - - credExpiredBeforeRetry := false - credExpiredAfterRetry := false - - s.Handlers.AfterRetry.PushBack(func(r *request.Request) { - credExpiredAfterRetry = r.Config.Credentials.IsExpired() - }) - - s.Handlers.Sign.Clear() - s.Handlers.Sign.PushBack(func(r *request.Request) { - r.Config.Credentials.Get() - }) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &reqs[reqNum] - reqNum++ - }) - out := &testData{} - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, out) - err := r.Send() - assert.Nil(t, err) - - assert.False(t, credExpiredBeforeRetry, "Expect valid creds before retry check") - assert.True(t, credExpiredAfterRetry, "Expect expired creds after retry check") - assert.False(t, s.Config.Credentials.IsExpired(), "Expect valid creds after cred expired recovery") - - assert.Equal(t, 1, int(r.RetryCount)) - assert.Equal(t, "valid", out.Data) -} - -func TestMakeAddtoUserAgentHandler(t *testing.T) { - fn := request.MakeAddToUserAgentHandler("name", "version", "extra1", "extra2") - r := &request.Request{HTTPRequest: &http.Request{Header: http.Header{}}} - r.HTTPRequest.Header.Set("User-Agent", "foo/bar") - fn(r) - - assert.Equal(t, "foo/bar name/version (extra1; extra2)", r.HTTPRequest.Header.Get("User-Agent")) -} - -func TestMakeAddtoUserAgentFreeFormHandler(t *testing.T) { - fn := request.MakeAddToUserAgentFreeFormHandler("name/version (extra1; extra2)") - r := &request.Request{HTTPRequest: &http.Request{Header: http.Header{}}} - r.HTTPRequest.Header.Set("User-Agent", "foo/bar") - fn(r) - - assert.Equal(t, "foo/bar name/version (extra1; extra2)", r.HTTPRequest.Header.Get("User-Agent")) -} - -func TestRequestUserAgent(t *testing.T) { - s := awstesting.NewClient(&aws.Config{Region: aws.String("us-east-1")}) - // s.Handlers.Validate.Clear() - - req := s.NewRequest(&request.Operation{Name: "Operation"}, nil, &testData{}) - req.HTTPRequest.Header.Set("User-Agent", "foo/bar") - assert.NoError(t, req.Build()) - - expectUA := fmt.Sprintf("foo/bar %s/%s (%s; %s; %s)", - aws.SDKName, aws.SDKVersion, runtime.Version(), runtime.GOOS, runtime.GOARCH) - assert.Equal(t, expectUA, req.HTTPRequest.Header.Get("User-Agent")) -} - -func TestRequestThrottleRetries(t *testing.T) { - delays := []time.Duration{} - sleepDelay := func(delay time.Duration) { - delays = append(delays, delay) - } - - reqNum := 0 - reqs := []http.Response{ - {StatusCode: 500, Body: body(`{"__type":"Throttling","message":"An error occurred."}`)}, - {StatusCode: 500, Body: body(`{"__type":"Throttling","message":"An error occurred."}`)}, - {StatusCode: 500, Body: body(`{"__type":"Throttling","message":"An error occurred."}`)}, - {StatusCode: 500, Body: body(`{"__type":"Throttling","message":"An error occurred."}`)}, - } - - s := awstesting.NewClient(aws.NewConfig().WithSleepDelay(sleepDelay)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &reqs[reqNum] - reqNum++ - }) - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, nil) - err := r.Send() - assert.NotNil(t, err) - if e, ok := err.(awserr.RequestFailure); ok { - assert.Equal(t, 500, e.StatusCode()) - } else { - assert.Fail(t, "Expected error to be a service failure") - } - assert.Equal(t, "Throttling", err.(awserr.Error).Code()) - assert.Equal(t, "An error occurred.", err.(awserr.Error).Message()) - assert.Equal(t, 3, int(r.RetryCount)) - - expectDelays := []struct{ min, max time.Duration }{{500, 999}, {1000, 1998}, {2000, 3996}} - for i, v := range delays { - min := expectDelays[i].min * time.Millisecond - max := expectDelays[i].max * time.Millisecond - assert.True(t, min <= v && v <= max, - "Expect delay to be within range, i:%d, v:%s, min:%s, max:%s", i, v, min, max) - } -} - -// test that retries occur for request timeouts when response.Body can be nil -func TestRequestRecoverTimeoutWithNilBody(t *testing.T) { - reqNum := 0 - reqs := []*http.Response{ - {StatusCode: 0, Body: nil}, // body can be nil when requests time out - {StatusCode: 200, Body: body(`{"data":"valid"}`)}, - } - errors := []error{ - errors.New("timeout"), nil, - } - - s := awstesting.NewClient(aws.NewConfig().WithMaxRetries(10)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - s.Handlers.AfterRetry.Clear() // force retry on all errors - s.Handlers.AfterRetry.PushBack(func(r *request.Request) { - if r.Error != nil { - r.Error = nil - r.Retryable = aws.Bool(true) - r.RetryCount++ - } - }) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = reqs[reqNum] - r.Error = errors[reqNum] - reqNum++ - }) - out := &testData{} - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, out) - err := r.Send() - assert.Nil(t, err) - assert.Equal(t, 1, int(r.RetryCount)) - assert.Equal(t, "valid", out.Data) -} - -func TestRequestRecoverTimeoutWithNilResponse(t *testing.T) { - reqNum := 0 - reqs := []*http.Response{ - nil, - {StatusCode: 200, Body: body(`{"data":"valid"}`)}, - } - errors := []error{ - errors.New("timeout"), - nil, - } - - s := awstesting.NewClient(aws.NewConfig().WithMaxRetries(10)) - s.Handlers.Validate.Clear() - s.Handlers.Unmarshal.PushBack(unmarshal) - s.Handlers.UnmarshalError.PushBack(unmarshalError) - s.Handlers.AfterRetry.Clear() // force retry on all errors - s.Handlers.AfterRetry.PushBack(func(r *request.Request) { - if r.Error != nil { - r.Error = nil - r.Retryable = aws.Bool(true) - r.RetryCount++ - } - }) - s.Handlers.Send.Clear() // mock sending - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = reqs[reqNum] - r.Error = errors[reqNum] - reqNum++ - }) - out := &testData{} - r := s.NewRequest(&request.Operation{Name: "Operation"}, nil, out) - err := r.Send() - assert.Nil(t, err) - assert.Equal(t, 1, int(r.RetryCount)) - assert.Equal(t, "valid", out.Data) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go b/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go deleted file mode 100644 index 8cc8b015..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go +++ /dev/null @@ -1,101 +0,0 @@ -package request - -import ( - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" -) - -// Retryer is an interface to control retry logic for a given service. -// The default implementation used by most services is the service.DefaultRetryer -// structure, which contains basic retry logic using exponential backoff. -type Retryer interface { - RetryRules(*Request) time.Duration - ShouldRetry(*Request) bool - MaxRetries() int -} - -// WithRetryer sets a config Retryer value to the given Config returning it -// for chaining. -func WithRetryer(cfg *aws.Config, retryer Retryer) *aws.Config { - cfg.Retryer = retryer - return cfg -} - -// retryableCodes is a collection of service response codes which are retry-able -// without any further action. -var retryableCodes = map[string]struct{}{ - "RequestError": {}, - "RequestTimeout": {}, -} - -var throttleCodes = map[string]struct{}{ - "ProvisionedThroughputExceededException": {}, - "Throttling": {}, - "ThrottlingException": {}, - "RequestLimitExceeded": {}, - "RequestThrottled": {}, - "LimitExceededException": {}, // Deleting 10+ DynamoDb tables at once - "TooManyRequestsException": {}, // Lambda functions -} - -// credsExpiredCodes is a collection of error codes which signify the credentials -// need to be refreshed. Expired tokens require refreshing of credentials, and -// resigning before the request can be retried. -var credsExpiredCodes = map[string]struct{}{ - "ExpiredToken": {}, - "ExpiredTokenException": {}, - "RequestExpired": {}, // EC2 Only -} - -func isCodeThrottle(code string) bool { - _, ok := throttleCodes[code] - return ok -} - -func isCodeRetryable(code string) bool { - if _, ok := retryableCodes[code]; ok { - return true - } - - return isCodeExpiredCreds(code) -} - -func isCodeExpiredCreds(code string) bool { - _, ok := credsExpiredCodes[code] - return ok -} - -// IsErrorRetryable returns whether the error is retryable, based on its Code. -// Returns false if the request has no Error set. -func (r *Request) IsErrorRetryable() bool { - if r.Error != nil { - if err, ok := r.Error.(awserr.Error); ok { - return isCodeRetryable(err.Code()) - } - } - return false -} - -// IsErrorThrottle returns whether the error is to be throttled based on its code. -// Returns false if the request has no Error set -func (r *Request) IsErrorThrottle() bool { - if r.Error != nil { - if err, ok := r.Error.(awserr.Error); ok { - return isCodeThrottle(err.Code()) - } - } - return false -} - -// IsErrorExpired returns whether the error code is a credential expiry error. -// Returns false if the request has no Error set. -func (r *Request) IsErrorExpired() bool { - if r.Error != nil { - if err, ok := r.Error.(awserr.Error); ok { - return isCodeExpiredCreds(err.Code()) - } - } - return false -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/retryer_test.go b/vendor/github.com/aws/aws-sdk-go/aws/request/retryer_test.go deleted file mode 100644 index b1926e3d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/retryer_test.go +++ /dev/null @@ -1,16 +0,0 @@ -package request - -import ( - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws/awserr" -) - -func TestRequestThrottling(t *testing.T) { - req := Request{} - - req.Error = awserr.New("Throttling", "", nil) - assert.True(t, req.IsErrorThrottle()) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go b/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go deleted file mode 100644 index 2520286b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go +++ /dev/null @@ -1,234 +0,0 @@ -package request - -import ( - "bytes" - "fmt" - - "github.com/aws/aws-sdk-go/aws/awserr" -) - -const ( - // InvalidParameterErrCode is the error code for invalid parameters errors - InvalidParameterErrCode = "InvalidParameter" - // ParamRequiredErrCode is the error code for required parameter errors - ParamRequiredErrCode = "ParamRequiredError" - // ParamMinValueErrCode is the error code for fields with too low of a - // number value. - ParamMinValueErrCode = "ParamMinValueError" - // ParamMinLenErrCode is the error code for fields without enough elements. - ParamMinLenErrCode = "ParamMinLenError" -) - -// Validator provides a way for types to perform validation logic on their -// input values that external code can use to determine if a type's values -// are valid. -type Validator interface { - Validate() error -} - -// An ErrInvalidParams provides wrapping of invalid parameter errors found when -// validating API operation input parameters. -type ErrInvalidParams struct { - // Context is the base context of the invalid parameter group. - Context string - errs []ErrInvalidParam -} - -// Add adds a new invalid parameter error to the collection of invalid -// parameters. The context of the invalid parameter will be updated to reflect -// this collection. -func (e *ErrInvalidParams) Add(err ErrInvalidParam) { - err.SetContext(e.Context) - e.errs = append(e.errs, err) -} - -// AddNested adds the invalid parameter errors from another ErrInvalidParams -// value into this collection. The nested errors will have their nested context -// updated and base context to reflect the merging. -// -// Use for nested validations errors. -func (e *ErrInvalidParams) AddNested(nestedCtx string, nested ErrInvalidParams) { - for _, err := range nested.errs { - err.SetContext(e.Context) - err.AddNestedContext(nestedCtx) - e.errs = append(e.errs, err) - } -} - -// Len returns the number of invalid parameter errors -func (e ErrInvalidParams) Len() int { - return len(e.errs) -} - -// Code returns the code of the error -func (e ErrInvalidParams) Code() string { - return InvalidParameterErrCode -} - -// Message returns the message of the error -func (e ErrInvalidParams) Message() string { - return fmt.Sprintf("%d validation error(s) found.", len(e.errs)) -} - -// Error returns the string formatted form of the invalid parameters. -func (e ErrInvalidParams) Error() string { - w := &bytes.Buffer{} - fmt.Fprintf(w, "%s: %s\n", e.Code(), e.Message()) - - for _, err := range e.errs { - fmt.Fprintf(w, "- %s\n", err.Message()) - } - - return w.String() -} - -// OrigErr returns the invalid parameters as a awserr.BatchedErrors value -func (e ErrInvalidParams) OrigErr() error { - return awserr.NewBatchError( - InvalidParameterErrCode, e.Message(), e.OrigErrs()) -} - -// OrigErrs returns a slice of the invalid parameters -func (e ErrInvalidParams) OrigErrs() []error { - errs := make([]error, len(e.errs)) - for i := 0; i < len(errs); i++ { - errs[i] = e.errs[i] - } - - return errs -} - -// An ErrInvalidParam represents an invalid parameter error type. -type ErrInvalidParam interface { - awserr.Error - - // Field name the error occurred on. - Field() string - - // SetContext updates the context of the error. - SetContext(string) - - // AddNestedContext updates the error's context to include a nested level. - AddNestedContext(string) -} - -type errInvalidParam struct { - context string - nestedContext string - field string - code string - msg string -} - -// Code returns the error code for the type of invalid parameter. -func (e *errInvalidParam) Code() string { - return e.code -} - -// Message returns the reason the parameter was invalid, and its context. -func (e *errInvalidParam) Message() string { - return fmt.Sprintf("%s, %s.", e.msg, e.Field()) -} - -// Error returns the string version of the invalid parameter error. -func (e *errInvalidParam) Error() string { - return fmt.Sprintf("%s: %s", e.code, e.Message()) -} - -// OrigErr returns nil, Implemented for awserr.Error interface. -func (e *errInvalidParam) OrigErr() error { - return nil -} - -// Field Returns the field and context the error occurred. -func (e *errInvalidParam) Field() string { - field := e.context - if len(field) > 0 { - field += "." - } - if len(e.nestedContext) > 0 { - field += fmt.Sprintf("%s.", e.nestedContext) - } - field += e.field - - return field -} - -// SetContext updates the base context of the error. -func (e *errInvalidParam) SetContext(ctx string) { - e.context = ctx -} - -// AddNestedContext prepends a context to the field's path. -func (e *errInvalidParam) AddNestedContext(ctx string) { - if len(e.nestedContext) == 0 { - e.nestedContext = ctx - } else { - e.nestedContext = fmt.Sprintf("%s.%s", ctx, e.nestedContext) - } - -} - -// An ErrParamRequired represents an required parameter error. -type ErrParamRequired struct { - errInvalidParam -} - -// NewErrParamRequired creates a new required parameter error. -func NewErrParamRequired(field string) *ErrParamRequired { - return &ErrParamRequired{ - errInvalidParam{ - code: ParamRequiredErrCode, - field: field, - msg: fmt.Sprintf("missing required field"), - }, - } -} - -// An ErrParamMinValue represents a minimum value parameter error. -type ErrParamMinValue struct { - errInvalidParam - min float64 -} - -// NewErrParamMinValue creates a new minimum value parameter error. -func NewErrParamMinValue(field string, min float64) *ErrParamMinValue { - return &ErrParamMinValue{ - errInvalidParam: errInvalidParam{ - code: ParamMinValueErrCode, - field: field, - msg: fmt.Sprintf("minimum field value of %v", min), - }, - min: min, - } -} - -// MinValue returns the field's require minimum value. -// -// float64 is returned for both int and float min values. -func (e *ErrParamMinValue) MinValue() float64 { - return e.min -} - -// An ErrParamMinLen represents a minimum length parameter error. -type ErrParamMinLen struct { - errInvalidParam - min int -} - -// NewErrParamMinLen creates a new minimum length parameter error. -func NewErrParamMinLen(field string, min int) *ErrParamMinLen { - return &ErrParamMinLen{ - errInvalidParam: errInvalidParam{ - code: ParamMinValueErrCode, - field: field, - msg: fmt.Sprintf("minimum field size of %v", min), - }, - min: min, - } -} - -// MinLen returns the field's required minimum length. -func (e *ErrParamMinLen) MinLen() int { - return e.min -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go b/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go deleted file mode 100644 index 097d3237..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go +++ /dev/null @@ -1,223 +0,0 @@ -/* -Package session provides configuration for the SDK's service clients. - -Sessions can be shared across all service clients that share the same base -configuration. The Session is built from the SDK's default configuration and -request handlers. - -Sessions should be cached when possible, because creating a new Session will -load all configuration values from the environment, and config files each time -the Session is created. Sharing the Session value across all of your service -clients will ensure the configuration is loaded the fewest number of times possible. - -Concurrency - -Sessions are safe to use concurrently as long as the Session is not being -modified. The SDK will not modify the Session once the Session has been created. -Creating service clients concurrently from a shared Session is safe. - -Sessions from Shared Config - -Sessions can be created using the method above that will only load the -additional config if the AWS_SDK_LOAD_CONFIG environment variable is set. -Alternatively you can explicitly create a Session with shared config enabled. -To do this you can use NewSessionWithOptions to configure how the Session will -be created. Using the NewSessionWithOptions with SharedConfigState set to -SharedConfigEnabled will create the session as if the AWS_SDK_LOAD_CONFIG -environment variable was set. - -Creating Sessions - -When creating Sessions optional aws.Config values can be passed in that will -override the default, or loaded config values the Session is being created -with. This allows you to provide additional, or case based, configuration -as needed. - -By default NewSession will only load credentials from the shared credentials -file (~/.aws/credentials). If the AWS_SDK_LOAD_CONFIG environment variable is -set to a truthy value the Session will be created from the configuration -values from the shared config (~/.aws/config) and shared credentials -(~/.aws/credentials) files. See the section Sessions from Shared Config for -more information. - -Create a Session with the default config and request handlers. With credentials -region, and profile loaded from the environment and shared config automatically. -Requires the AWS_PROFILE to be set, or "default" is used. - - // Create Session - sess, err := session.NewSession() - - // Create a Session with a custom region - sess, err := session.NewSession(&aws.Config{Region: aws.String("us-east-1")}) - - // Create a S3 client instance from a session - sess, err := session.NewSession() - if err != nil { - // Handle Session creation error - } - svc := s3.New(sess) - -Create Session With Option Overrides - -In addition to NewSession, Sessions can be created using NewSessionWithOptions. -This func allows you to control and override how the Session will be created -through code instead of being driven by environment variables only. - -Use NewSessionWithOptions when you want to provide the config profile, or -override the shared config state (AWS_SDK_LOAD_CONFIG). - - // Equivalent to session.New - sess, err := session.NewSessionWithOptions(session.Options{}) - - // Specify profile to load for the session's config - sess, err := session.NewSessionWithOptions(session.Options{ - Profile: "profile_name", - }) - - // Specify profile for config and region for requests - sess, err := session.NewSessionWithOptions(session.Options{ - Config: aws.Config{Region: aws.String("us-east-1")}, - Profile: "profile_name", - }) - - // Force enable Shared Config support - sess, err := session.NewSessionWithOptions(session.Options{ - SharedConfigState: SharedConfigEnable, - }) - -Adding Handlers - -You can add handlers to a session for processing HTTP requests. All service -clients that use the session inherit the handlers. For example, the following -handler logs every request and its payload made by a service client: - - // Create a session, and add additional handlers for all service - // clients created with the Session to inherit. Adds logging handler. - sess, err := session.NewSession() - sess.Handlers.Send.PushFront(func(r *request.Request) { - // Log every request made and its payload - logger.Println("Request: %s/%s, Payload: %s", - r.ClientInfo.ServiceName, r.Operation, r.Params) - }) - -Deprecated "New" function - -The New session function has been deprecated because it does not provide good -way to return errors that occur when loading the configuration files and values. -Because of this, NewSession was created so errors can be retrieved when -creating a session fails. - -Shared Config Fields - -By default the SDK will only load the shared credentials file's (~/.aws/credentials) -credentials values, and all other config is provided by the environment variables, -SDK defaults, and user provided aws.Config values. - -If the AWS_SDK_LOAD_CONFIG environment variable is set, or SharedConfigEnable -option is used to create the Session the full shared config values will be -loaded. This includes credentials, region, and support for assume role. In -addition the Session will load its configuration from both the shared config -file (~/.aws/config) and shared credentials file (~/.aws/credentials). Both -files have the same format. - -If both config files are present the configuration from both files will be -read. The Session will be created from configuration values from the shared -credentials file (~/.aws/credentials) over those in the shared credentials -file (~/.aws/config). - -Credentials are the values the SDK should use for authenticating requests with -AWS Services. They arfrom a configuration file will need to include both -aws_access_key_id and aws_secret_access_key must be provided together in the -same file to be considered valid. The values will be ignored if not a complete -group. aws_session_token is an optional field that can be provided if both of -the other two fields are also provided. - - aws_access_key_id = AKID - aws_secret_access_key = SECRET - aws_session_token = TOKEN - -Assume Role values allow you to configure the SDK to assume an IAM role using -a set of credentials provided in a config file via the source_profile field. -Both "role_arn" and "source_profile" are required. The SDK does not support -assuming a role with MFA token Via the Session's constructor. You can use the -stscreds.AssumeRoleProvider credentials provider to specify custom -configuration and support for MFA. - - role_arn = arn:aws:iam:::role/ - source_profile = profile_with_creds - external_id = 1234 - mfa_serial = not supported! - role_session_name = session_name - -Region is the region the SDK should use for looking up AWS service endpoints -and signing requests. - - region = us-east-1 - -Environment Variables - -When a Session is created several environment variables can be set to adjust -how the SDK functions, and what configuration data it loads when creating -Sessions. All environment values are optional, but some values like credentials -require multiple of the values to set or the partial values will be ignored. -All environment variable values are strings unless otherwise noted. - -Environment configuration values. If set both Access Key ID and Secret Access -Key must be provided. Session Token and optionally also be provided, but is -not required. - - # Access Key ID - AWS_ACCESS_KEY_ID=AKID - AWS_ACCESS_KEY=AKID # only read if AWS_ACCESS_KEY_ID is not set. - - # Secret Access Key - AWS_SECRET_ACCESS_KEY=SECRET - AWS_SECRET_KEY=SECRET=SECRET # only read if AWS_SECRET_ACCESS_KEY is not set. - - # Session Token - AWS_SESSION_TOKEN=TOKEN - -Region value will instruct the SDK where to make service API requests to. If is -not provided in the environment the region must be provided before a service -client request is made. - - AWS_REGION=us-east-1 - - # AWS_DEFAULT_REGION is only read if AWS_SDK_LOAD_CONFIG is also set, - # and AWS_REGION is not also set. - AWS_DEFAULT_REGION=us-east-1 - -Profile name the SDK should load use when loading shared config from the -configuration files. If not provided "default" will be used as the profile name. - - AWS_PROFILE=my_profile - - # AWS_DEFAULT_PROFILE is only read if AWS_SDK_LOAD_CONFIG is also set, - # and AWS_PROFILE is not also set. - AWS_DEFAULT_PROFILE=my_profile - -SDK load config instructs the SDK to load the shared config in addition to -shared credentials. This also expands the configuration loaded so the shared -credentials will have parity with the shared config file. This also enables -Region and Profile support for the AWS_DEFAULT_REGION and AWS_DEFAULT_PROFILE -env values as well. - - AWS_SDK_LOAD_CONFIG=1 - -Shared credentials file path can be set to instruct the SDK to use an alternative -file for the shared credentials. If not set the file will be loaded from -$HOME/.aws/credentials on Linux/Unix based systems, and -%USERPROFILE%\.aws\credentials on Windows. - - AWS_SHARED_CREDENTIALS_FILE=$HOME/my_shared_credentials - -Shared config file path can be set to instruct the SDK to use an alternative -file for the shared config. If not set the file will be loaded from -$HOME/.aws/config on Linux/Unix based systems, and -%USERPROFILE%\.aws\config on Windows. - - AWS_CONFIG_FILE=$HOME/my_shared_config - - -*/ -package session diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go b/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go deleted file mode 100644 index d2f0c844..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go +++ /dev/null @@ -1,188 +0,0 @@ -package session - -import ( - "os" - "path/filepath" - "strconv" - - "github.com/aws/aws-sdk-go/aws/credentials" -) - -// envConfig is a collection of environment values the SDK will read -// setup config from. All environment values are optional. But some values -// such as credentials require multiple values to be complete or the values -// will be ignored. -type envConfig struct { - // Environment configuration values. If set both Access Key ID and Secret Access - // Key must be provided. Session Token and optionally also be provided, but is - // not required. - // - // # Access Key ID - // AWS_ACCESS_KEY_ID=AKID - // AWS_ACCESS_KEY=AKID # only read if AWS_ACCESS_KEY_ID is not set. - // - // # Secret Access Key - // AWS_SECRET_ACCESS_KEY=SECRET - // AWS_SECRET_KEY=SECRET=SECRET # only read if AWS_SECRET_ACCESS_KEY is not set. - // - // # Session Token - // AWS_SESSION_TOKEN=TOKEN - Creds credentials.Value - - // Region value will instruct the SDK where to make service API requests to. If is - // not provided in the environment the region must be provided before a service - // client request is made. - // - // AWS_REGION=us-east-1 - // - // # AWS_DEFAULT_REGION is only read if AWS_SDK_LOAD_CONFIG is also set, - // # and AWS_REGION is not also set. - // AWS_DEFAULT_REGION=us-east-1 - Region string - - // Profile name the SDK should load use when loading shared configuration from the - // shared configuration files. If not provided "default" will be used as the - // profile name. - // - // AWS_PROFILE=my_profile - // - // # AWS_DEFAULT_PROFILE is only read if AWS_SDK_LOAD_CONFIG is also set, - // # and AWS_PROFILE is not also set. - // AWS_DEFAULT_PROFILE=my_profile - Profile string - - // SDK load config instructs the SDK to load the shared config in addition to - // shared credentials. This also expands the configuration loaded from the shared - // credentials to have parity with the shared config file. This also enables - // Region and Profile support for the AWS_DEFAULT_REGION and AWS_DEFAULT_PROFILE - // env values as well. - // - // AWS_SDK_LOAD_CONFIG=1 - EnableSharedConfig bool - - // Shared credentials file path can be set to instruct the SDK to use an alternate - // file for the shared credentials. If not set the file will be loaded from - // $HOME/.aws/credentials on Linux/Unix based systems, and - // %USERPROFILE%\.aws\credentials on Windows. - // - // AWS_SHARED_CREDENTIALS_FILE=$HOME/my_shared_credentials - SharedCredentialsFile string - - // Shared config file path can be set to instruct the SDK to use an alternate - // file for the shared config. If not set the file will be loaded from - // $HOME/.aws/config on Linux/Unix based systems, and - // %USERPROFILE%\.aws\config on Windows. - // - // AWS_CONFIG_FILE=$HOME/my_shared_config - SharedConfigFile string -} - -var ( - credAccessEnvKey = []string{ - "AWS_ACCESS_KEY_ID", - "AWS_ACCESS_KEY", - } - credSecretEnvKey = []string{ - "AWS_SECRET_ACCESS_KEY", - "AWS_SECRET_KEY", - } - credSessionEnvKey = []string{ - "AWS_SESSION_TOKEN", - } - - regionEnvKeys = []string{ - "AWS_REGION", - "AWS_DEFAULT_REGION", // Only read if AWS_SDK_LOAD_CONFIG is also set - } - profileEnvKeys = []string{ - "AWS_PROFILE", - "AWS_DEFAULT_PROFILE", // Only read if AWS_SDK_LOAD_CONFIG is also set - } -) - -// loadEnvConfig retrieves the SDK's environment configuration. -// See `envConfig` for the values that will be retrieved. -// -// If the environment variable `AWS_SDK_LOAD_CONFIG` is set to a truthy value -// the shared SDK config will be loaded in addition to the SDK's specific -// configuration values. -func loadEnvConfig() envConfig { - enableSharedConfig, _ := strconv.ParseBool(os.Getenv("AWS_SDK_LOAD_CONFIG")) - return envConfigLoad(enableSharedConfig) -} - -// loadEnvSharedConfig retrieves the SDK's environment configuration, and the -// SDK shared config. See `envConfig` for the values that will be retrieved. -// -// Loads the shared configuration in addition to the SDK's specific configuration. -// This will load the same values as `loadEnvConfig` if the `AWS_SDK_LOAD_CONFIG` -// environment variable is set. -func loadSharedEnvConfig() envConfig { - return envConfigLoad(true) -} - -func envConfigLoad(enableSharedConfig bool) envConfig { - cfg := envConfig{} - - cfg.EnableSharedConfig = enableSharedConfig - - setFromEnvVal(&cfg.Creds.AccessKeyID, credAccessEnvKey) - setFromEnvVal(&cfg.Creds.SecretAccessKey, credSecretEnvKey) - setFromEnvVal(&cfg.Creds.SessionToken, credSessionEnvKey) - - // Require logical grouping of credentials - if len(cfg.Creds.AccessKeyID) == 0 || len(cfg.Creds.SecretAccessKey) == 0 { - cfg.Creds = credentials.Value{} - } else { - cfg.Creds.ProviderName = "EnvConfigCredentials" - } - - regionKeys := regionEnvKeys - profileKeys := profileEnvKeys - if !cfg.EnableSharedConfig { - regionKeys = regionKeys[:1] - profileKeys = profileKeys[:1] - } - - setFromEnvVal(&cfg.Region, regionKeys) - setFromEnvVal(&cfg.Profile, profileKeys) - - cfg.SharedCredentialsFile = sharedCredentialsFilename() - cfg.SharedConfigFile = sharedConfigFilename() - - return cfg -} - -func setFromEnvVal(dst *string, keys []string) { - for _, k := range keys { - if v := os.Getenv(k); len(v) > 0 { - *dst = v - break - } - } -} - -func sharedCredentialsFilename() string { - if name := os.Getenv("AWS_SHARED_CREDENTIALS_FILE"); len(name) > 0 { - return name - } - - return filepath.Join(userHomeDir(), ".aws", "credentials") -} - -func sharedConfigFilename() string { - if name := os.Getenv("AWS_CONFIG_FILE"); len(name) > 0 { - return name - } - - return filepath.Join(userHomeDir(), ".aws", "config") -} - -func userHomeDir() string { - homeDir := os.Getenv("HOME") // *nix - if len(homeDir) == 0 { // windows - homeDir = os.Getenv("USERPROFILE") - } - - return homeDir -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/env_config_test.go b/vendor/github.com/aws/aws-sdk-go/aws/session/env_config_test.go deleted file mode 100644 index 5a6aa7d8..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/env_config_test.go +++ /dev/null @@ -1,276 +0,0 @@ -package session - -import ( - "os" - "path/filepath" - "strings" - "testing" - - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/stretchr/testify/assert" -) - -func TestLoadEnvConfig_Creds(t *testing.T) { - env := stashEnv() - defer popEnv(env) - - cases := []struct { - Env map[string]string - Val credentials.Value - }{ - { - Env: map[string]string{ - "AWS_ACCESS_KEY": "AKID", - }, - Val: credentials.Value{}, - }, - { - Env: map[string]string{ - "AWS_ACCESS_KEY_ID": "AKID", - }, - Val: credentials.Value{}, - }, - { - Env: map[string]string{ - "AWS_SECRET_KEY": "SECRET", - }, - Val: credentials.Value{}, - }, - { - Env: map[string]string{ - "AWS_SECRET_ACCESS_KEY": "SECRET", - }, - Val: credentials.Value{}, - }, - { - Env: map[string]string{ - "AWS_ACCESS_KEY_ID": "AKID", - "AWS_SECRET_ACCESS_KEY": "SECRET", - }, - Val: credentials.Value{ - AccessKeyID: "AKID", SecretAccessKey: "SECRET", - ProviderName: "EnvConfigCredentials", - }, - }, - { - Env: map[string]string{ - "AWS_ACCESS_KEY": "AKID", - "AWS_SECRET_KEY": "SECRET", - }, - Val: credentials.Value{ - AccessKeyID: "AKID", SecretAccessKey: "SECRET", - ProviderName: "EnvConfigCredentials", - }, - }, - { - Env: map[string]string{ - "AWS_ACCESS_KEY": "AKID", - "AWS_SECRET_KEY": "SECRET", - "AWS_SESSION_TOKEN": "TOKEN", - }, - Val: credentials.Value{ - AccessKeyID: "AKID", SecretAccessKey: "SECRET", SessionToken: "TOKEN", - ProviderName: "EnvConfigCredentials", - }, - }, - } - - for _, c := range cases { - os.Clearenv() - - for k, v := range c.Env { - os.Setenv(k, v) - } - - cfg := loadEnvConfig() - assert.Equal(t, c.Val, cfg.Creds) - } -} - -func TestLoadEnvConfig(t *testing.T) { - env := stashEnv() - defer popEnv(env) - - cases := []struct { - Env map[string]string - Region, Profile string - UseSharedConfigCall bool - }{ - { - Env: map[string]string{ - "AWS_REGION": "region", - "AWS_PROFILE": "profile", - }, - Region: "region", Profile: "profile", - }, - { - Env: map[string]string{ - "AWS_REGION": "region", - "AWS_DEFAULT_REGION": "default_region", - "AWS_PROFILE": "profile", - "AWS_DEFAULT_PROFILE": "default_profile", - }, - Region: "region", Profile: "profile", - }, - { - Env: map[string]string{ - "AWS_REGION": "region", - "AWS_DEFAULT_REGION": "default_region", - "AWS_PROFILE": "profile", - "AWS_DEFAULT_PROFILE": "default_profile", - "AWS_SDK_LOAD_CONFIG": "1", - }, - Region: "region", Profile: "profile", - }, - { - Env: map[string]string{ - "AWS_DEFAULT_REGION": "default_region", - "AWS_DEFAULT_PROFILE": "default_profile", - }, - }, - { - Env: map[string]string{ - "AWS_DEFAULT_REGION": "default_region", - "AWS_DEFAULT_PROFILE": "default_profile", - "AWS_SDK_LOAD_CONFIG": "1", - }, - Region: "default_region", Profile: "default_profile", - }, - { - Env: map[string]string{ - "AWS_REGION": "region", - "AWS_PROFILE": "profile", - }, - Region: "region", Profile: "profile", - UseSharedConfigCall: true, - }, - { - Env: map[string]string{ - "AWS_REGION": "region", - "AWS_DEFAULT_REGION": "default_region", - "AWS_PROFILE": "profile", - "AWS_DEFAULT_PROFILE": "default_profile", - }, - Region: "region", Profile: "profile", - UseSharedConfigCall: true, - }, - { - Env: map[string]string{ - "AWS_REGION": "region", - "AWS_DEFAULT_REGION": "default_region", - "AWS_PROFILE": "profile", - "AWS_DEFAULT_PROFILE": "default_profile", - "AWS_SDK_LOAD_CONFIG": "1", - }, - Region: "region", Profile: "profile", - UseSharedConfigCall: true, - }, - { - Env: map[string]string{ - "AWS_DEFAULT_REGION": "default_region", - "AWS_DEFAULT_PROFILE": "default_profile", - }, - Region: "default_region", Profile: "default_profile", - UseSharedConfigCall: true, - }, - { - Env: map[string]string{ - "AWS_DEFAULT_REGION": "default_region", - "AWS_DEFAULT_PROFILE": "default_profile", - "AWS_SDK_LOAD_CONFIG": "1", - }, - Region: "default_region", Profile: "default_profile", - UseSharedConfigCall: true, - }, - } - - for _, c := range cases { - os.Clearenv() - - for k, v := range c.Env { - os.Setenv(k, v) - } - - var cfg envConfig - if c.UseSharedConfigCall { - cfg = loadSharedEnvConfig() - } else { - cfg = loadEnvConfig() - } - - assert.Equal(t, c.Region, cfg.Region) - assert.Equal(t, c.Profile, cfg.Profile) - } -} - -func TestSharedCredsFilename(t *testing.T) { - env := stashEnv() - defer popEnv(env) - - os.Setenv("USERPROFILE", "profile_dir") - expect := filepath.Join("profile_dir", ".aws", "credentials") - name := sharedCredentialsFilename() - assert.Equal(t, expect, name) - - os.Setenv("HOME", "home_dir") - expect = filepath.Join("home_dir", ".aws", "credentials") - name = sharedCredentialsFilename() - assert.Equal(t, expect, name) - - expect = filepath.Join("path/to/credentials/file") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", expect) - name = sharedCredentialsFilename() - assert.Equal(t, expect, name) -} - -func TestSharedConfigFilename(t *testing.T) { - env := stashEnv() - defer popEnv(env) - - os.Setenv("USERPROFILE", "profile_dir") - expect := filepath.Join("profile_dir", ".aws", "config") - name := sharedConfigFilename() - assert.Equal(t, expect, name) - - os.Setenv("HOME", "home_dir") - expect = filepath.Join("home_dir", ".aws", "config") - name = sharedConfigFilename() - assert.Equal(t, expect, name) - - expect = filepath.Join("path/to/config/file") - os.Setenv("AWS_CONFIG_FILE", expect) - name = sharedConfigFilename() - assert.Equal(t, expect, name) -} - -func TestSetEnvValue(t *testing.T) { - env := stashEnv() - defer popEnv(env) - - os.Setenv("empty_key", "") - os.Setenv("second_key", "2") - os.Setenv("third_key", "3") - - var dst string - setFromEnvVal(&dst, []string{ - "empty_key", "first_key", "second_key", "third_key", - }) - - assert.Equal(t, "2", dst) -} - -func stashEnv() []string { - env := os.Environ() - os.Clearenv() - - return env -} - -func popEnv(env []string) { - os.Clearenv() - - for _, e := range env { - p := strings.SplitN(e, "=", 2) - os.Setenv(p[0], p[1]) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/session.go b/vendor/github.com/aws/aws-sdk-go/aws/session/session.go deleted file mode 100644 index 602f4e1e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/session.go +++ /dev/null @@ -1,393 +0,0 @@ -package session - -import ( - "fmt" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/corehandlers" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/credentials/stscreds" - "github.com/aws/aws-sdk-go/aws/defaults" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/endpoints" -) - -// A Session provides a central location to create service clients from and -// store configurations and request handlers for those services. -// -// Sessions are safe to create service clients concurrently, but it is not safe -// to mutate the Session concurrently. -// -// The Session satisfies the service client's client.ClientConfigProvider. -type Session struct { - Config *aws.Config - Handlers request.Handlers -} - -// New creates a new instance of the handlers merging in the provided configs -// on top of the SDK's default configurations. Once the Session is created it -// can be mutated to modify the Config or Handlers. The Session is safe to be -// read concurrently, but it should not be written to concurrently. -// -// If the AWS_SDK_LOAD_CONFIG environment is set to a truthy value, the New -// method could now encounter an error when loading the configuration. When -// The environment variable is set, and an error occurs, New will return a -// session that will fail all requests reporting the error that occured while -// loading the session. Use NewSession to get the error when creating the -// session. -// -// If the AWS_SDK_LOAD_CONFIG environment variable is set to a truthy value -// the shared config file (~/.aws/config) will also be loaded, in addition to -// the shared credentials file (~/.aws/config). Values set in both the -// shared config, and shared credentials will be taken from the shared -// credentials file. -// -// Deprecated: Use NewSession functiions to create sessions instead. NewSession -// has the same functionality as New except an error can be returned when the -// func is called instead of waiting to receive an error until a request is made. -func New(cfgs ...*aws.Config) *Session { - // load initial config from environment - envCfg := loadEnvConfig() - - if envCfg.EnableSharedConfig { - s, err := newSession(envCfg, cfgs...) - if err != nil { - // Old session.New expected all errors to be discovered when - // a request is made, and would report the errors then. This - // needs to be replicated if an error occurs while creating - // the session. - msg := "failed to create session with AWS_SDK_LOAD_CONFIG enabled. " + - "Use session.NewSession to handle errors occuring during session creation." - - // Session creation failed, need to report the error and prevent - // any requests from succeeding. - s = &Session{Config: defaults.Config()} - s.Config.MergeIn(cfgs...) - s.Config.Logger.Log("ERROR:", msg, "Error:", err) - s.Handlers.Validate.PushBack(func(r *request.Request) { - r.Error = err - }) - } - return s - } - - return oldNewSession(cfgs...) -} - -// NewSession returns a new Session created from SDK defaults, config files, -// environment, and user provided config files. Once the Session is created -// it can be mutated to modify the Config or Handlers. The Session is safe to -// be read concurrently, but it should not be written to concurrently. -// -// If the AWS_SDK_LOAD_CONFIG environment variable is set to a truthy value -// the shared config file (~/.aws/config) will also be loaded in addition to -// the shared credentials file (~/.aws/config). Values set in both the -// shared config, and shared credentials will be taken from the shared -// credentials file. Enabling the Shared Config will also allow the Session -// to be built with retrieving credentials with AssumeRole set in the config. -// -// See the NewSessionWithOptions func for information on how to override or -// control through code how the Session will be created. Such as specifing the -// config profile, and controlling if shared config is enabled or not. -func NewSession(cfgs ...*aws.Config) (*Session, error) { - envCfg := loadEnvConfig() - - return newSession(envCfg, cfgs...) -} - -// SharedConfigState provides the ability to optionally override the state -// of the session's creation based on the shared config being enabled or -// disabled. -type SharedConfigState int - -const ( - // SharedConfigStateFromEnv does not override any state of the - // AWS_SDK_LOAD_CONFIG env var. It is the default value of the - // SharedConfigState type. - SharedConfigStateFromEnv SharedConfigState = iota - - // SharedConfigDisable overrides the AWS_SDK_LOAD_CONFIG env var value - // and disables the shared config functionality. - SharedConfigDisable - - // SharedConfigEnable overrides the AWS_SDK_LOAD_CONFIG env var value - // and enables the shared config functionality. - SharedConfigEnable -) - -// Options provides the means to control how a Session is created and what -// configuration values will be loaded. -// -type Options struct { - // Provides config values for the SDK to use when creating service clients - // and making API requests to services. Any value set in with this field - // will override the associated value provided by the SDK defaults, - // environment or config files where relevent. - // - // If not set, configuration values from from SDK defaults, environment, - // config will be used. - Config aws.Config - - // Overrides the config profile the Session should be created from. If not - // set the value of the environment variable will be loaded (AWS_PROFILE, - // or AWS_DEFAULT_PROFILE if the Shared Config is enabled). - // - // If not set and environment variables are not set the "default" - // (DefaultSharedConfigProfile) will be used as the profile to load the - // session config from. - Profile string - - // Instructs how the Session will be created based on the AWS_SDK_LOAD_CONFIG - // environment variable. By default a Session will be created using the - // value provided by the AWS_SDK_LOAD_CONFIG environment variable. - // - // Setting this value to SharedConfigEnable or SharedConfigDisable - // will allow you to override the AWS_SDK_LOAD_CONFIG environment variable - // and enable or disable the shared config functionality. - SharedConfigState SharedConfigState -} - -// NewSessionWithOptions returns a new Session created from SDK defaults, config files, -// environment, and user provided config files. This func uses the Options -// values to configure how the Session is created. -// -// If the AWS_SDK_LOAD_CONFIG environment variable is set to a truthy value -// the shared config file (~/.aws/config) will also be loaded in addition to -// the shared credentials file (~/.aws/config). Values set in both the -// shared config, and shared credentials will be taken from the shared -// credentials file. Enabling the Shared Config will also allow the Session -// to be built with retrieving credentials with AssumeRole set in the config. -// -// // Equivalent to session.New -// sess, err := session.NewSessionWithOptions(session.Options{}) -// -// // Specify profile to load for the session's config -// sess, err := session.NewSessionWithOptions(session.Options{ -// Profile: "profile_name", -// }) -// -// // Specify profile for config and region for requests -// sess, err := session.NewSessionWithOptions(session.Options{ -// Config: aws.Config{Region: aws.String("us-east-1")}, -// Profile: "profile_name", -// }) -// -// // Force enable Shared Config support -// sess, err := session.NewSessionWithOptions(session.Options{ -// SharedConfigState: SharedConfigEnable, -// }) -func NewSessionWithOptions(opts Options) (*Session, error) { - var envCfg envConfig - if opts.SharedConfigState == SharedConfigEnable { - envCfg = loadSharedEnvConfig() - } else { - envCfg = loadEnvConfig() - } - - if len(opts.Profile) > 0 { - envCfg.Profile = opts.Profile - } - - switch opts.SharedConfigState { - case SharedConfigDisable: - envCfg.EnableSharedConfig = false - case SharedConfigEnable: - envCfg.EnableSharedConfig = true - } - - return newSession(envCfg, &opts.Config) -} - -// Must is a helper function to ensure the Session is valid and there was no -// error when calling a NewSession function. -// -// This helper is intended to be used in variable initialization to load the -// Session and configuration at startup. Such as: -// -// var sess = session.Must(session.NewSession()) -func Must(sess *Session, err error) *Session { - if err != nil { - panic(err) - } - - return sess -} - -func oldNewSession(cfgs ...*aws.Config) *Session { - cfg := defaults.Config() - handlers := defaults.Handlers() - - // Apply the passed in configs so the configuration can be applied to the - // default credential chain - cfg.MergeIn(cfgs...) - cfg.Credentials = defaults.CredChain(cfg, handlers) - - // Reapply any passed in configs to override credentials if set - cfg.MergeIn(cfgs...) - - s := &Session{ - Config: cfg, - Handlers: handlers, - } - - initHandlers(s) - - return s -} - -func newSession(envCfg envConfig, cfgs ...*aws.Config) (*Session, error) { - cfg := defaults.Config() - handlers := defaults.Handlers() - - // Get a merged version of the user provided config to determine if - // credentials were. - userCfg := &aws.Config{} - userCfg.MergeIn(cfgs...) - - // Order config files will be loaded in with later files overwriting - // previous config file values. - cfgFiles := []string{envCfg.SharedConfigFile, envCfg.SharedCredentialsFile} - if !envCfg.EnableSharedConfig { - // The shared config file (~/.aws/config) is only loaded if instructed - // to load via the envConfig.EnableSharedConfig (AWS_SDK_LOAD_CONFIG). - cfgFiles = cfgFiles[1:] - } - - // Load additional config from file(s) - sharedCfg, err := loadSharedConfig(envCfg.Profile, cfgFiles) - if err != nil { - return nil, err - } - - mergeConfigSrcs(cfg, userCfg, envCfg, sharedCfg, handlers) - - s := &Session{ - Config: cfg, - Handlers: handlers, - } - - initHandlers(s) - - return s, nil -} - -func mergeConfigSrcs(cfg, userCfg *aws.Config, envCfg envConfig, sharedCfg sharedConfig, handlers request.Handlers) { - // Merge in user provided configuration - cfg.MergeIn(userCfg) - - // Region if not already set by user - if len(aws.StringValue(cfg.Region)) == 0 { - if len(envCfg.Region) > 0 { - cfg.WithRegion(envCfg.Region) - } else if envCfg.EnableSharedConfig && len(sharedCfg.Region) > 0 { - cfg.WithRegion(sharedCfg.Region) - } - } - - // Configure credentials if not already set - if cfg.Credentials == credentials.AnonymousCredentials && userCfg.Credentials == nil { - if len(envCfg.Creds.AccessKeyID) > 0 { - cfg.Credentials = credentials.NewStaticCredentialsFromCreds( - envCfg.Creds, - ) - } else if envCfg.EnableSharedConfig && len(sharedCfg.AssumeRole.RoleARN) > 0 && sharedCfg.AssumeRoleSource != nil { - cfgCp := *cfg - cfgCp.Credentials = credentials.NewStaticCredentialsFromCreds( - sharedCfg.AssumeRoleSource.Creds, - ) - cfg.Credentials = stscreds.NewCredentials( - &Session{ - Config: &cfgCp, - Handlers: handlers.Copy(), - }, - sharedCfg.AssumeRole.RoleARN, - func(opt *stscreds.AssumeRoleProvider) { - opt.RoleSessionName = sharedCfg.AssumeRole.RoleSessionName - - if len(sharedCfg.AssumeRole.ExternalID) > 0 { - opt.ExternalID = aws.String(sharedCfg.AssumeRole.ExternalID) - } - - // MFA not supported - }, - ) - } else if len(sharedCfg.Creds.AccessKeyID) > 0 { - cfg.Credentials = credentials.NewStaticCredentialsFromCreds( - sharedCfg.Creds, - ) - } else { - // Fallback to default credentials provider, include mock errors - // for the credential chain so user can identify why credentials - // failed to be retrieved. - cfg.Credentials = credentials.NewCredentials(&credentials.ChainProvider{ - VerboseErrors: aws.BoolValue(cfg.CredentialsChainVerboseErrors), - Providers: []credentials.Provider{ - &credProviderError{Err: awserr.New("EnvAccessKeyNotFound", "failed to find credentials in the environment.", nil)}, - &credProviderError{Err: awserr.New("SharedCredsLoad", fmt.Sprintf("failed to load profile, %s.", envCfg.Profile), nil)}, - defaults.RemoteCredProvider(*cfg, handlers), - }, - }) - } - } -} - -type credProviderError struct { - Err error -} - -var emptyCreds = credentials.Value{} - -func (c credProviderError) Retrieve() (credentials.Value, error) { - return credentials.Value{}, c.Err -} -func (c credProviderError) IsExpired() bool { - return true -} - -func initHandlers(s *Session) { - // Add the Validate parameter handler if it is not disabled. - s.Handlers.Validate.Remove(corehandlers.ValidateParametersHandler) - if !aws.BoolValue(s.Config.DisableParamValidation) { - s.Handlers.Validate.PushBackNamed(corehandlers.ValidateParametersHandler) - } -} - -// Copy creates and returns a copy of the current Session, coping the config -// and handlers. If any additional configs are provided they will be merged -// on top of the Session's copied config. -// -// // Create a copy of the current Session, configured for the us-west-2 region. -// sess.Copy(&aws.Config{Region: aws.String("us-west-2")}) -func (s *Session) Copy(cfgs ...*aws.Config) *Session { - newSession := &Session{ - Config: s.Config.Copy(cfgs...), - Handlers: s.Handlers.Copy(), - } - - initHandlers(newSession) - - return newSession -} - -// ClientConfig satisfies the client.ConfigProvider interface and is used to -// configure the service client instances. Passing the Session to the service -// client's constructor (New) will use this method to configure the client. -func (s *Session) ClientConfig(serviceName string, cfgs ...*aws.Config) client.Config { - s = s.Copy(cfgs...) - endpoint, signingRegion := endpoints.NormalizeEndpoint( - aws.StringValue(s.Config.Endpoint), - serviceName, - aws.StringValue(s.Config.Region), - aws.BoolValue(s.Config.DisableSSL), - aws.BoolValue(s.Config.UseDualStack), - ) - - return client.Config{ - Config: s.Config, - Handlers: s.Handlers, - Endpoint: endpoint, - SigningRegion: signingRegion, - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/session_test.go b/vendor/github.com/aws/aws-sdk-go/aws/session/session_test.go deleted file mode 100644 index f8a8ae4b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/session_test.go +++ /dev/null @@ -1,344 +0,0 @@ -package session - -import ( - "bytes" - "fmt" - "net/http" - "net/http/httptest" - "os" - "testing" - "time" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/defaults" - "github.com/aws/aws-sdk-go/service/s3" -) - -func TestNewDefaultSession(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - s := New(&aws.Config{Region: aws.String("region")}) - - assert.Equal(t, "region", *s.Config.Region) - assert.Equal(t, http.DefaultClient, s.Config.HTTPClient) - assert.NotNil(t, s.Config.Logger) - assert.Equal(t, aws.LogOff, *s.Config.LogLevel) -} - -func TestNew_WithCustomCreds(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - customCreds := credentials.NewStaticCredentials("AKID", "SECRET", "TOKEN") - s := New(&aws.Config{Credentials: customCreds}) - - assert.Equal(t, customCreds, s.Config.Credentials) -} - -type mockLogger struct { - *bytes.Buffer -} - -func (w mockLogger) Log(args ...interface{}) { - fmt.Fprintln(w, args...) -} - -func TestNew_WithSessionLoadError(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_SDK_LOAD_CONFIG", "1") - os.Setenv("AWS_CONFIG_FILE", testConfigFilename) - os.Setenv("AWS_PROFILE", "assume_role_invalid_source_profile") - - logger := bytes.Buffer{} - s := New(&aws.Config{Logger: &mockLogger{&logger}}) - - assert.NotNil(t, s) - - svc := s3.New(s) - _, err := svc.ListBuckets(&s3.ListBucketsInput{}) - - assert.Error(t, err) - assert.Contains(t, logger.String(), "ERROR: failed to create session with AWS_SDK_LOAD_CONFIG enabled") - assert.Contains(t, err.Error(), SharedConfigAssumeRoleError{ - RoleARN: "assume_role_invalid_source_profile_role_arn", - }.Error()) -} - -func TestSessionCopy(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_REGION", "orig_region") - - s := Session{ - Config: defaults.Config(), - Handlers: defaults.Handlers(), - } - - newSess := s.Copy(&aws.Config{Region: aws.String("new_region")}) - - assert.Equal(t, "orig_region", *s.Config.Region) - assert.Equal(t, "new_region", *newSess.Config.Region) -} - -func TestSessionClientConfig(t *testing.T) { - s, err := NewSession(&aws.Config{Region: aws.String("orig_region")}) - assert.NoError(t, err) - - cfg := s.ClientConfig("s3", &aws.Config{Region: aws.String("us-west-2")}) - - assert.Equal(t, "https://s3-us-west-2.amazonaws.com", cfg.Endpoint) - assert.Empty(t, cfg.SigningRegion) - assert.Equal(t, "us-west-2", *cfg.Config.Region) -} - -func TestNewSession_NoCredentials(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - s, err := NewSession() - assert.NoError(t, err) - - assert.NotNil(t, s.Config.Credentials) - assert.NotEqual(t, credentials.AnonymousCredentials, s.Config.Credentials) -} - -func TestNewSessionWithOptions_OverrideProfile(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_SDK_LOAD_CONFIG", "1") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", testConfigFilename) - os.Setenv("AWS_PROFILE", "other_profile") - - s, err := NewSessionWithOptions(Options{ - Profile: "full_profile", - }) - assert.NoError(t, err) - - assert.Equal(t, "full_profile_region", *s.Config.Region) - - creds, err := s.Config.Credentials.Get() - assert.NoError(t, err) - assert.Equal(t, "full_profile_akid", creds.AccessKeyID) - assert.Equal(t, "full_profile_secret", creds.SecretAccessKey) - assert.Empty(t, creds.SessionToken) - assert.Contains(t, creds.ProviderName, "SharedConfigCredentials") -} - -func TestNewSessionWithOptions_OverrideSharedConfigEnable(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_SDK_LOAD_CONFIG", "0") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", testConfigFilename) - os.Setenv("AWS_PROFILE", "full_profile") - - s, err := NewSessionWithOptions(Options{ - SharedConfigState: SharedConfigEnable, - }) - assert.NoError(t, err) - - assert.Equal(t, "full_profile_region", *s.Config.Region) - - creds, err := s.Config.Credentials.Get() - assert.NoError(t, err) - assert.Equal(t, "full_profile_akid", creds.AccessKeyID) - assert.Equal(t, "full_profile_secret", creds.SecretAccessKey) - assert.Empty(t, creds.SessionToken) - assert.Contains(t, creds.ProviderName, "SharedConfigCredentials") -} - -func TestNewSessionWithOptions_OverrideSharedConfigDisable(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_SDK_LOAD_CONFIG", "1") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", testConfigFilename) - os.Setenv("AWS_PROFILE", "full_profile") - - s, err := NewSessionWithOptions(Options{ - SharedConfigState: SharedConfigDisable, - }) - assert.NoError(t, err) - - assert.Empty(t, *s.Config.Region) - - creds, err := s.Config.Credentials.Get() - assert.NoError(t, err) - assert.Equal(t, "full_profile_akid", creds.AccessKeyID) - assert.Equal(t, "full_profile_secret", creds.SecretAccessKey) - assert.Empty(t, creds.SessionToken) - assert.Contains(t, creds.ProviderName, "SharedConfigCredentials") -} - -func TestNewSessionWithOptions_Overrides(t *testing.T) { - cases := []struct { - InEnvs map[string]string - InProfile string - OutRegion string - OutCreds credentials.Value - }{ - { - InEnvs: map[string]string{ - "AWS_SDK_LOAD_CONFIG": "0", - "AWS_SHARED_CREDENTIALS_FILE": testConfigFilename, - "AWS_PROFILE": "other_profile", - }, - InProfile: "full_profile", - OutRegion: "full_profile_region", - OutCreds: credentials.Value{ - AccessKeyID: "full_profile_akid", - SecretAccessKey: "full_profile_secret", - ProviderName: "SharedConfigCredentials", - }, - }, - { - InEnvs: map[string]string{ - "AWS_SDK_LOAD_CONFIG": "0", - "AWS_SHARED_CREDENTIALS_FILE": testConfigFilename, - "AWS_REGION": "env_region", - "AWS_ACCESS_KEY": "env_akid", - "AWS_SECRET_ACCESS_KEY": "env_secret", - "AWS_PROFILE": "other_profile", - }, - InProfile: "full_profile", - OutRegion: "env_region", - OutCreds: credentials.Value{ - AccessKeyID: "env_akid", - SecretAccessKey: "env_secret", - ProviderName: "EnvConfigCredentials", - }, - }, - { - InEnvs: map[string]string{ - "AWS_SDK_LOAD_CONFIG": "0", - "AWS_SHARED_CREDENTIALS_FILE": testConfigFilename, - "AWS_CONFIG_FILE": testConfigOtherFilename, - "AWS_PROFILE": "shared_profile", - }, - InProfile: "config_file_load_order", - OutRegion: "shared_config_region", - OutCreds: credentials.Value{ - AccessKeyID: "shared_config_akid", - SecretAccessKey: "shared_config_secret", - ProviderName: "SharedConfigCredentials", - }, - }, - } - - for _, c := range cases { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - for k, v := range c.InEnvs { - os.Setenv(k, v) - } - - s, err := NewSessionWithOptions(Options{ - Profile: c.InProfile, - SharedConfigState: SharedConfigEnable, - }) - assert.NoError(t, err) - - creds, err := s.Config.Credentials.Get() - assert.NoError(t, err) - assert.Equal(t, c.OutRegion, *s.Config.Region) - assert.Equal(t, c.OutCreds.AccessKeyID, creds.AccessKeyID) - assert.Equal(t, c.OutCreds.SecretAccessKey, creds.SecretAccessKey) - assert.Equal(t, c.OutCreds.SessionToken, creds.SessionToken) - assert.Contains(t, creds.ProviderName, c.OutCreds.ProviderName) - } -} - -func TestSesisonAssumeRole(t *testing.T) { - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_REGION", "us-east-1") - os.Setenv("AWS_SDK_LOAD_CONFIG", "1") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", testConfigFilename) - os.Setenv("AWS_PROFILE", "assume_role_w_creds") - - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - const respMsg = ` - - - - arn:aws:sts::account_id:assumed-role/role/session_name - AKID:session_name - - - AKID - SECRET - SESSION_TOKEN - %s - - - - request-id - - -` - w.Write([]byte(fmt.Sprintf(respMsg, time.Now().Add(15*time.Minute).Format("2006-01-02T15:04:05Z")))) - })) - - s, err := NewSession(&aws.Config{Endpoint: aws.String(server.URL), DisableSSL: aws.Bool(true)}) - - creds, err := s.Config.Credentials.Get() - assert.NoError(t, err) - assert.Equal(t, "AKID", creds.AccessKeyID) - assert.Equal(t, "SECRET", creds.SecretAccessKey) - assert.Equal(t, "SESSION_TOKEN", creds.SessionToken) - assert.Contains(t, creds.ProviderName, "AssumeRoleProvider") -} - -func TestSessionAssumeRole_DisableSharedConfig(t *testing.T) { - // Backwards compatibility with Shared config disabled - // assume role should not be built into the config. - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_SDK_LOAD_CONFIG", "0") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", testConfigFilename) - os.Setenv("AWS_PROFILE", "assume_role_w_creds") - - s, err := NewSession() - assert.NoError(t, err) - - creds, err := s.Config.Credentials.Get() - assert.NoError(t, err) - assert.Equal(t, "assume_role_w_creds_akid", creds.AccessKeyID) - assert.Equal(t, "assume_role_w_creds_secret", creds.SecretAccessKey) - assert.Contains(t, creds.ProviderName, "SharedConfigCredentials") -} - -func TestSessionAssumeRole_InvalidSourceProfile(t *testing.T) { - // Backwards compatibility with Shared config disabled - // assume role should not be built into the config. - oldEnv := initSessionTestEnv() - defer popEnv(oldEnv) - - os.Setenv("AWS_SDK_LOAD_CONFIG", "1") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", testConfigFilename) - os.Setenv("AWS_PROFILE", "assume_role_invalid_source_profile") - - s, err := NewSession() - assert.Error(t, err) - assert.Contains(t, err.Error(), "SharedConfigAssumeRoleError: failed to load assume role") - assert.Nil(t, s) -} - -func initSessionTestEnv() (oldEnv []string) { - oldEnv = stashEnv() - os.Setenv("AWS_CONFIG_FILE", "file_not_exists") - os.Setenv("AWS_SHARED_CREDENTIALS_FILE", "file_not_exists") - - return oldEnv -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go b/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go deleted file mode 100644 index 0147eede..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go +++ /dev/null @@ -1,294 +0,0 @@ -package session - -import ( - "fmt" - "os" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/go-ini/ini" -) - -const ( - // Static Credentials group - accessKeyIDKey = `aws_access_key_id` // group required - secretAccessKey = `aws_secret_access_key` // group required - sessionTokenKey = `aws_session_token` // optional - - // Assume Role Credentials group - roleArnKey = `role_arn` // group required - sourceProfileKey = `source_profile` // group required - externalIDKey = `external_id` // optional - mfaSerialKey = `mfa_serial` // optional - roleSessionNameKey = `role_session_name` // optional - - // Additional Config fields - regionKey = `region` - - // DefaultSharedConfigProfile is the default profile to be used when - // loading configuration from the config files if another profile name - // is not provided. - DefaultSharedConfigProfile = `default` -) - -type assumeRoleConfig struct { - RoleARN string - SourceProfile string - ExternalID string - MFASerial string - RoleSessionName string -} - -// sharedConfig represents the configuration fields of the SDK config files. -type sharedConfig struct { - // Credentials values from the config file. Both aws_access_key_id - // and aws_secret_access_key must be provided together in the same file - // to be considered valid. The values will be ignored if not a complete group. - // aws_session_token is an optional field that can be provided if both of the - // other two fields are also provided. - // - // aws_access_key_id - // aws_secret_access_key - // aws_session_token - Creds credentials.Value - - AssumeRole assumeRoleConfig - AssumeRoleSource *sharedConfig - - // Region is the region the SDK should use for looking up AWS service endpoints - // and signing requests. - // - // region - Region string -} - -type sharedConfigFile struct { - Filename string - IniData *ini.File -} - -// loadSharedConfig retrieves the configuration from the list of files -// using the profile provided. The order the files are listed will determine -// precedence. Values in subsequent files will overwrite values defined in -// earlier files. -// -// For example, given two files A and B. Both define credentials. If the order -// of the files are A then B, B's credential values will be used instead of A's. -// -// See sharedConfig.setFromFile for information how the config files -// will be loaded. -func loadSharedConfig(profile string, filenames []string) (sharedConfig, error) { - if len(profile) == 0 { - profile = DefaultSharedConfigProfile - } - - files, err := loadSharedConfigIniFiles(filenames) - if err != nil { - return sharedConfig{}, err - } - - cfg := sharedConfig{} - if err = cfg.setFromIniFiles(profile, files); err != nil { - return sharedConfig{}, err - } - - if len(cfg.AssumeRole.SourceProfile) > 0 { - if err := cfg.setAssumeRoleSource(profile, files); err != nil { - return sharedConfig{}, err - } - } - - return cfg, nil -} - -func loadSharedConfigIniFiles(filenames []string) ([]sharedConfigFile, error) { - files := make([]sharedConfigFile, 0, len(filenames)) - - for _, filename := range filenames { - if _, err := os.Stat(filename); os.IsNotExist(err) { - // Trim files from the list that don't exist. - continue - } - - f, err := ini.Load(filename) - if err != nil { - return nil, SharedConfigLoadError{Filename: filename} - } - - files = append(files, sharedConfigFile{ - Filename: filename, IniData: f, - }) - } - - return files, nil -} - -func (cfg *sharedConfig) setAssumeRoleSource(origProfile string, files []sharedConfigFile) error { - var assumeRoleSrc sharedConfig - - // Multiple level assume role chains are not support - if cfg.AssumeRole.SourceProfile == origProfile { - assumeRoleSrc = *cfg - assumeRoleSrc.AssumeRole = assumeRoleConfig{} - } else { - err := assumeRoleSrc.setFromIniFiles(cfg.AssumeRole.SourceProfile, files) - if err != nil { - return err - } - } - - if len(assumeRoleSrc.Creds.AccessKeyID) == 0 { - return SharedConfigAssumeRoleError{RoleARN: cfg.AssumeRole.RoleARN} - } - - cfg.AssumeRoleSource = &assumeRoleSrc - - return nil -} - -func (cfg *sharedConfig) setFromIniFiles(profile string, files []sharedConfigFile) error { - // Trim files from the list that don't exist. - for _, f := range files { - if err := cfg.setFromIniFile(profile, f); err != nil { - if _, ok := err.(SharedConfigProfileNotExistsError); ok { - // Ignore proviles missings - continue - } - return err - } - } - - return nil -} - -// setFromFile loads the configuration from the file using -// the profile provided. A sharedConfig pointer type value is used so that -// multiple config file loadings can be chained. -// -// Only loads complete logically grouped values, and will not set fields in cfg -// for incomplete grouped values in the config. Such as credentials. For example -// if a config file only includes aws_access_key_id but no aws_secret_access_key -// the aws_access_key_id will be ignored. -func (cfg *sharedConfig) setFromIniFile(profile string, file sharedConfigFile) error { - section, err := file.IniData.GetSection(profile) - if err != nil { - // Fallback to to alternate profile name: profile - section, err = file.IniData.GetSection(fmt.Sprintf("profile %s", profile)) - if err != nil { - return SharedConfigProfileNotExistsError{Profile: profile, Err: err} - } - } - - // Shared Credentials - akid := section.Key(accessKeyIDKey).String() - secret := section.Key(secretAccessKey).String() - if len(akid) > 0 && len(secret) > 0 { - cfg.Creds = credentials.Value{ - AccessKeyID: akid, - SecretAccessKey: secret, - SessionToken: section.Key(sessionTokenKey).String(), - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", file.Filename), - } - } - - // Assume Role - roleArn := section.Key(roleArnKey).String() - srcProfile := section.Key(sourceProfileKey).String() - if len(roleArn) > 0 && len(srcProfile) > 0 { - cfg.AssumeRole = assumeRoleConfig{ - RoleARN: roleArn, - SourceProfile: srcProfile, - ExternalID: section.Key(externalIDKey).String(), - MFASerial: section.Key(mfaSerialKey).String(), - RoleSessionName: section.Key(roleSessionNameKey).String(), - } - } - - // Region - if v := section.Key(regionKey).String(); len(v) > 0 { - cfg.Region = v - } - - return nil -} - -// SharedConfigLoadError is an error for the shared config file failed to load. -type SharedConfigLoadError struct { - Filename string - Err error -} - -// Code is the short id of the error. -func (e SharedConfigLoadError) Code() string { - return "SharedConfigLoadError" -} - -// Message is the description of the error -func (e SharedConfigLoadError) Message() string { - return fmt.Sprintf("failed to load config file, %s", e.Filename) -} - -// OrigErr is the underlying error that caused the failure. -func (e SharedConfigLoadError) OrigErr() error { - return e.Err -} - -// Error satisfies the error interface. -func (e SharedConfigLoadError) Error() string { - return awserr.SprintError(e.Code(), e.Message(), "", e.Err) -} - -// SharedConfigProfileNotExistsError is an error for the shared config when -// the profile was not find in the config file. -type SharedConfigProfileNotExistsError struct { - Profile string - Err error -} - -// Code is the short id of the error. -func (e SharedConfigProfileNotExistsError) Code() string { - return "SharedConfigProfileNotExistsError" -} - -// Message is the description of the error -func (e SharedConfigProfileNotExistsError) Message() string { - return fmt.Sprintf("failed to get profile, %s", e.Profile) -} - -// OrigErr is the underlying error that caused the failure. -func (e SharedConfigProfileNotExistsError) OrigErr() error { - return e.Err -} - -// Error satisfies the error interface. -func (e SharedConfigProfileNotExistsError) Error() string { - return awserr.SprintError(e.Code(), e.Message(), "", e.Err) -} - -// SharedConfigAssumeRoleError is an error for the shared config when the -// profile contains assume role information, but that information is invalid -// or not complete. -type SharedConfigAssumeRoleError struct { - RoleARN string -} - -// Code is the short id of the error. -func (e SharedConfigAssumeRoleError) Code() string { - return "SharedConfigAssumeRoleError" -} - -// Message is the description of the error -func (e SharedConfigAssumeRoleError) Message() string { - return fmt.Sprintf("failed to load assume role for %s, source profile has no shared credentials", - e.RoleARN) -} - -// OrigErr is the underlying error that caused the failure. -func (e SharedConfigAssumeRoleError) OrigErr() error { - return nil -} - -// Error satisfies the error interface. -func (e SharedConfigAssumeRoleError) Error() string { - return awserr.SprintError(e.Code(), e.Message(), "", nil) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config_test.go b/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config_test.go deleted file mode 100644 index 1a164d46..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config_test.go +++ /dev/null @@ -1,264 +0,0 @@ -package session - -import ( - "fmt" - "path/filepath" - "testing" - - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/go-ini/ini" - "github.com/stretchr/testify/assert" -) - -var ( - testConfigFilename = filepath.Join("testdata", "shared_config") - testConfigOtherFilename = filepath.Join("testdata", "shared_config_other") -) - -func TestLoadSharedConfig(t *testing.T) { - cases := []struct { - Filenames []string - Profile string - Expected sharedConfig - Err error - }{ - { - Filenames: []string{"file_not_exists"}, - Profile: "default", - }, - { - Filenames: []string{testConfigFilename}, - Expected: sharedConfig{ - Region: "default_region", - }, - }, - { - Filenames: []string{testConfigOtherFilename, testConfigFilename}, - Profile: "config_file_load_order", - Expected: sharedConfig{ - Region: "shared_config_region", - Creds: credentials.Value{ - AccessKeyID: "shared_config_akid", - SecretAccessKey: "shared_config_secret", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigFilename), - }, - }, - }, - { - Filenames: []string{testConfigFilename, testConfigOtherFilename}, - Profile: "config_file_load_order", - Expected: sharedConfig{ - Region: "shared_config_other_region", - Creds: credentials.Value{ - AccessKeyID: "shared_config_other_akid", - SecretAccessKey: "shared_config_other_secret", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigOtherFilename), - }, - }, - }, - { - Filenames: []string{testConfigOtherFilename, testConfigFilename}, - Profile: "assume_role", - Expected: sharedConfig{ - AssumeRole: assumeRoleConfig{ - RoleARN: "assume_role_role_arn", - SourceProfile: "complete_creds", - }, - AssumeRoleSource: &sharedConfig{ - Creds: credentials.Value{ - AccessKeyID: "complete_creds_akid", - SecretAccessKey: "complete_creds_secret", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigFilename), - }, - }, - }, - }, - { - Filenames: []string{testConfigOtherFilename, testConfigFilename}, - Profile: "assume_role_invalid_source_profile", - Expected: sharedConfig{ - AssumeRole: assumeRoleConfig{ - RoleARN: "assume_role_invalid_source_profile_role_arn", - SourceProfile: "profile_not_exists", - }, - }, - Err: SharedConfigAssumeRoleError{RoleARN: "assume_role_invalid_source_profile_role_arn"}, - }, - { - Filenames: []string{testConfigOtherFilename, testConfigFilename}, - Profile: "assume_role_w_creds", - Expected: sharedConfig{ - Creds: credentials.Value{ - AccessKeyID: "assume_role_w_creds_akid", - SecretAccessKey: "assume_role_w_creds_secret", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigFilename), - }, - AssumeRole: assumeRoleConfig{ - RoleARN: "assume_role_w_creds_role_arn", - SourceProfile: "assume_role_w_creds", - ExternalID: "1234", - RoleSessionName: "assume_role_w_creds_session_name", - }, - AssumeRoleSource: &sharedConfig{ - Creds: credentials.Value{ - AccessKeyID: "assume_role_w_creds_akid", - SecretAccessKey: "assume_role_w_creds_secret", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigFilename), - }, - }, - }, - }, - { - Filenames: []string{testConfigOtherFilename, testConfigFilename}, - Profile: "assume_role_wo_creds", - Expected: sharedConfig{ - AssumeRole: assumeRoleConfig{ - RoleARN: "assume_role_wo_creds_role_arn", - SourceProfile: "assume_role_wo_creds", - }, - }, - Err: SharedConfigAssumeRoleError{RoleARN: "assume_role_wo_creds_role_arn"}, - }, - { - Filenames: []string{filepath.Join("testdata", "shared_config_invalid_ini")}, - Profile: "profile_name", - Err: SharedConfigLoadError{Filename: filepath.Join("testdata", "shared_config_invalid_ini")}, - }, - } - - for i, c := range cases { - cfg, err := loadSharedConfig(c.Profile, c.Filenames) - if c.Err != nil { - assert.Contains(t, err.Error(), c.Err.Error(), "expected error, %d", i) - continue - } - - assert.NoError(t, err, "unexpected error, %d", i) - assert.Equal(t, c.Expected, cfg, "not equal, %d", i) - } -} - -func TestLoadSharedConfigFromFile(t *testing.T) { - filename := testConfigFilename - f, err := ini.Load(filename) - if err != nil { - t.Fatalf("failed to load test config file, %s, %v", filename, err) - } - iniFile := sharedConfigFile{IniData: f, Filename: filename} - - cases := []struct { - Profile string - Expected sharedConfig - Err error - }{ - { - Profile: "default", - Expected: sharedConfig{Region: "default_region"}, - }, - { - Profile: "alt_profile_name", - Expected: sharedConfig{Region: "alt_profile_name_region"}, - }, - { - Profile: "short_profile_name_first", - Expected: sharedConfig{Region: "short_profile_name_first_short"}, - }, - { - Profile: "partial_creds", - Expected: sharedConfig{}, - }, - { - Profile: "complete_creds", - Expected: sharedConfig{ - Creds: credentials.Value{ - AccessKeyID: "complete_creds_akid", - SecretAccessKey: "complete_creds_secret", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigFilename), - }, - }, - }, - { - Profile: "complete_creds_with_token", - Expected: sharedConfig{ - Creds: credentials.Value{ - AccessKeyID: "complete_creds_with_token_akid", - SecretAccessKey: "complete_creds_with_token_secret", - SessionToken: "complete_creds_with_token_token", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigFilename), - }, - }, - }, - { - Profile: "full_profile", - Expected: sharedConfig{ - Creds: credentials.Value{ - AccessKeyID: "full_profile_akid", - SecretAccessKey: "full_profile_secret", - ProviderName: fmt.Sprintf("SharedConfigCredentials: %s", testConfigFilename), - }, - Region: "full_profile_region", - }, - }, - { - Profile: "partial_assume_role", - Expected: sharedConfig{}, - }, - { - Profile: "assume_role", - Expected: sharedConfig{ - AssumeRole: assumeRoleConfig{ - RoleARN: "assume_role_role_arn", - SourceProfile: "complete_creds", - }, - }, - }, - { - Profile: "does_not_exists", - Err: SharedConfigProfileNotExistsError{Profile: "does_not_exists"}, - }, - } - - for i, c := range cases { - cfg := sharedConfig{} - - err := cfg.setFromIniFile(c.Profile, iniFile) - if c.Err != nil { - assert.Contains(t, err.Error(), c.Err.Error(), "expected error, %d", i) - continue - } - - assert.NoError(t, err, "unexpected error, %d", i) - assert.Equal(t, c.Expected, cfg, "not equal, %d", i) - } -} - -func TestLoadSharedConfigIniFiles(t *testing.T) { - cases := []struct { - Filenames []string - Expected []sharedConfigFile - }{ - { - Filenames: []string{"not_exists", testConfigFilename}, - Expected: []sharedConfigFile{ - {Filename: testConfigFilename}, - }, - }, - { - Filenames: []string{testConfigFilename, testConfigOtherFilename}, - Expected: []sharedConfigFile{ - {Filename: testConfigFilename}, - {Filename: testConfigOtherFilename}, - }, - }, - } - - for i, c := range cases { - files, err := loadSharedConfigIniFiles(c.Filenames) - assert.NoError(t, err, "unexpected error, %d", i) - assert.Equal(t, len(c.Expected), len(files), "expected num files, %d", i) - - for i, expectedFile := range c.Expected { - assert.Equal(t, expectedFile.Filename, files[i].Filename) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config b/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config deleted file mode 100644 index e41fe213..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config +++ /dev/null @@ -1,60 +0,0 @@ -[default] -s3 = - unsupported_key=123 - other_unsupported=abc - -region = default_region - -[profile alt_profile_name] -region = alt_profile_name_region - -[short_profile_name_first] -region = short_profile_name_first_short - -[profile short_profile_name_first] -region = short_profile_name_first_alt - -[partial_creds] -aws_access_key_id = partial_creds_akid - -[complete_creds] -aws_access_key_id = complete_creds_akid -aws_secret_access_key = complete_creds_secret - -[complete_creds_with_token] -aws_access_key_id = complete_creds_with_token_akid -aws_secret_access_key = complete_creds_with_token_secret -aws_session_token = complete_creds_with_token_token - -[full_profile] -aws_access_key_id = full_profile_akid -aws_secret_access_key = full_profile_secret -region = full_profile_region - -[config_file_load_order] -region = shared_config_region -aws_access_key_id = shared_config_akid -aws_secret_access_key = shared_config_secret - -[partial_assume_role] -role_arn = partial_assume_role_role_arn - -[assume_role] -role_arn = assume_role_role_arn -source_profile = complete_creds - -[assume_role_invalid_source_profile] -role_arn = assume_role_invalid_source_profile_role_arn -source_profile = profile_not_exists - -[assume_role_w_creds] -role_arn = assume_role_w_creds_role_arn -source_profile = assume_role_w_creds -external_id = 1234 -role_session_name = assume_role_w_creds_session_name -aws_access_key_id = assume_role_w_creds_akid -aws_secret_access_key = assume_role_w_creds_secret - -[assume_role_wo_creds] -role_arn = assume_role_wo_creds_role_arn -source_profile = assume_role_wo_creds diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini b/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini deleted file mode 100644 index 4db03895..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini +++ /dev/null @@ -1 +0,0 @@ -[profile_nam diff --git a/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_other b/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_other deleted file mode 100644 index 615831b1..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_other +++ /dev/null @@ -1,17 +0,0 @@ -[default] -region = default_region - -[partial_creds] -aws_access_key_id = AKID - -[profile alt_profile_name] -region = alt_profile_name_region - -[creds_from_credentials] -aws_access_key_id = creds_from_config_akid -aws_secret_access_key = creds_from_config_secret - -[config_file_load_order] -region = shared_config_other_region -aws_access_key_id = shared_config_other_akid -aws_secret_access_key = shared_config_other_secret diff --git a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_test.go b/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_test.go deleted file mode 100644 index e4329c62..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_test.go +++ /dev/null @@ -1,77 +0,0 @@ -package v4_test - -import ( - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" - "github.com/stretchr/testify/assert" -) - -func TestPresignHandler(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.PutObjectRequest(&s3.PutObjectInput{ - Bucket: aws.String("bucket"), - Key: aws.String("key"), - ContentDisposition: aws.String("a+b c$d"), - ACL: aws.String("public-read"), - }) - req.Time = time.Unix(0, 0) - urlstr, err := req.Presign(5 * time.Minute) - - assert.NoError(t, err) - - expectedDate := "19700101T000000Z" - expectedHeaders := "content-disposition;host;x-amz-acl" - expectedSig := "b2754ba8ffeb74a40b94767017e24c4672107d6d5a894648d5d332ca61f5ffe4" - expectedCred := "AKID/19700101/mock-region/s3/aws4_request" - - u, _ := url.Parse(urlstr) - urlQ := u.Query() - assert.Equal(t, expectedSig, urlQ.Get("X-Amz-Signature")) - assert.Equal(t, expectedCred, urlQ.Get("X-Amz-Credential")) - assert.Equal(t, expectedHeaders, urlQ.Get("X-Amz-SignedHeaders")) - assert.Equal(t, expectedDate, urlQ.Get("X-Amz-Date")) - assert.Equal(t, "300", urlQ.Get("X-Amz-Expires")) - - assert.NotContains(t, urlstr, "+") // + encoded as %20 -} - -func TestPresignRequest(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.PutObjectRequest(&s3.PutObjectInput{ - Bucket: aws.String("bucket"), - Key: aws.String("key"), - ContentDisposition: aws.String("a+b c$d"), - ACL: aws.String("public-read"), - }) - req.Time = time.Unix(0, 0) - urlstr, headers, err := req.PresignRequest(5 * time.Minute) - - assert.NoError(t, err) - - expectedDate := "19700101T000000Z" - expectedHeaders := "content-disposition;host;x-amz-acl;x-amz-content-sha256" - expectedSig := "0d200ba61501d752acd06f39ef4dbe7d83ffd5ea15978dc3476dfc00b8eb574e" - expectedCred := "AKID/19700101/mock-region/s3/aws4_request" - expectedHeaderMap := http.Header{ - "x-amz-acl": []string{"public-read"}, - "content-disposition": []string{"a+b c$d"}, - "x-amz-content-sha256": []string{"UNSIGNED-PAYLOAD"}, - } - - u, _ := url.Parse(urlstr) - urlQ := u.Query() - assert.Equal(t, expectedSig, urlQ.Get("X-Amz-Signature")) - assert.Equal(t, expectedCred, urlQ.Get("X-Amz-Credential")) - assert.Equal(t, expectedHeaders, urlQ.Get("X-Amz-SignedHeaders")) - assert.Equal(t, expectedDate, urlQ.Get("X-Amz-Date")) - assert.Equal(t, expectedHeaderMap, headers) - assert.Equal(t, "300", urlQ.Get("X-Amz-Expires")) - - assert.NotContains(t, urlstr, "+") // + encoded as %20 -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go b/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go deleted file mode 100644 index 244c86da..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go +++ /dev/null @@ -1,82 +0,0 @@ -package v4 - -import ( - "net/http" - "strings" -) - -// validator houses a set of rule needed for validation of a -// string value -type rules []rule - -// rule interface allows for more flexible rules and just simply -// checks whether or not a value adheres to that rule -type rule interface { - IsValid(value string) bool -} - -// IsValid will iterate through all rules and see if any rules -// apply to the value and supports nested rules -func (r rules) IsValid(value string) bool { - for _, rule := range r { - if rule.IsValid(value) { - return true - } - } - return false -} - -// mapRule generic rule for maps -type mapRule map[string]struct{} - -// IsValid for the map rule satisfies whether it exists in the map -func (m mapRule) IsValid(value string) bool { - _, ok := m[value] - return ok -} - -// whitelist is a generic rule for whitelisting -type whitelist struct { - rule -} - -// IsValid for whitelist checks if the value is within the whitelist -func (w whitelist) IsValid(value string) bool { - return w.rule.IsValid(value) -} - -// blacklist is a generic rule for blacklisting -type blacklist struct { - rule -} - -// IsValid for whitelist checks if the value is within the whitelist -func (b blacklist) IsValid(value string) bool { - return !b.rule.IsValid(value) -} - -type patterns []string - -// IsValid for patterns checks each pattern and returns if a match has -// been found -func (p patterns) IsValid(value string) bool { - for _, pattern := range p { - if strings.HasPrefix(http.CanonicalHeaderKey(value), pattern) { - return true - } - } - return false -} - -// inclusiveRules rules allow for rules to depend on one another -type inclusiveRules []rule - -// IsValid will return true if all rules are true -func (r inclusiveRules) IsValid(value string) bool { - for _, rule := range r { - if !rule.IsValid(value) { - return false - } - } - return true -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules_test.go b/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules_test.go deleted file mode 100644 index 7dfddc87..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules_test.go +++ /dev/null @@ -1,57 +0,0 @@ -package v4 - -import ( - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestRuleCheckWhitelist(t *testing.T) { - w := whitelist{ - mapRule{ - "Cache-Control": struct{}{}, - }, - } - - assert.True(t, w.IsValid("Cache-Control")) - assert.False(t, w.IsValid("Cache-")) -} - -func TestRuleCheckBlacklist(t *testing.T) { - b := blacklist{ - mapRule{ - "Cache-Control": struct{}{}, - }, - } - - assert.False(t, b.IsValid("Cache-Control")) - assert.True(t, b.IsValid("Cache-")) -} - -func TestRuleCheckPattern(t *testing.T) { - p := patterns{"X-Amz-Meta-"} - - assert.True(t, p.IsValid("X-Amz-Meta-")) - assert.True(t, p.IsValid("X-Amz-Meta-Star")) - assert.False(t, p.IsValid("Cache-")) -} - -func TestRuleComplexWhitelist(t *testing.T) { - w := rules{ - whitelist{ - mapRule{ - "Cache-Control": struct{}{}, - }, - }, - patterns{"X-Amz-Meta-"}, - } - - r := rules{ - inclusiveRules{patterns{"X-Amz-"}, blacklist{w}}, - } - - assert.True(t, r.IsValid("X-Amz-Blah")) - assert.False(t, r.IsValid("X-Amz-Meta-")) - assert.False(t, r.IsValid("X-Amz-Meta-Star")) - assert.False(t, r.IsValid("Cache-Control")) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go b/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go deleted file mode 100644 index eb79ded9..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go +++ /dev/null @@ -1,662 +0,0 @@ -// Package v4 implements signing for AWS V4 signer -// -// Provides request signing for request that need to be signed with -// AWS V4 Signatures. -package v4 - -import ( - "bytes" - "crypto/hmac" - "crypto/sha256" - "encoding/hex" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "sort" - "strconv" - "strings" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/rest" -) - -const ( - authHeaderPrefix = "AWS4-HMAC-SHA256" - timeFormat = "20060102T150405Z" - shortTimeFormat = "20060102" - - // emptyStringSHA256 is a SHA256 of an empty string - emptyStringSHA256 = `e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855` -) - -var ignoredHeaders = rules{ - blacklist{ - mapRule{ - "Authorization": struct{}{}, - "User-Agent": struct{}{}, - }, - }, -} - -// requiredSignedHeaders is a whitelist for build canonical headers. -var requiredSignedHeaders = rules{ - whitelist{ - mapRule{ - "Cache-Control": struct{}{}, - "Content-Disposition": struct{}{}, - "Content-Encoding": struct{}{}, - "Content-Language": struct{}{}, - "Content-Md5": struct{}{}, - "Content-Type": struct{}{}, - "Expires": struct{}{}, - "If-Match": struct{}{}, - "If-Modified-Since": struct{}{}, - "If-None-Match": struct{}{}, - "If-Unmodified-Since": struct{}{}, - "Range": struct{}{}, - "X-Amz-Acl": struct{}{}, - "X-Amz-Copy-Source": struct{}{}, - "X-Amz-Copy-Source-If-Match": struct{}{}, - "X-Amz-Copy-Source-If-Modified-Since": struct{}{}, - "X-Amz-Copy-Source-If-None-Match": struct{}{}, - "X-Amz-Copy-Source-If-Unmodified-Since": struct{}{}, - "X-Amz-Copy-Source-Range": struct{}{}, - "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Algorithm": struct{}{}, - "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key": struct{}{}, - "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key-Md5": struct{}{}, - "X-Amz-Grant-Full-control": struct{}{}, - "X-Amz-Grant-Read": struct{}{}, - "X-Amz-Grant-Read-Acp": struct{}{}, - "X-Amz-Grant-Write": struct{}{}, - "X-Amz-Grant-Write-Acp": struct{}{}, - "X-Amz-Metadata-Directive": struct{}{}, - "X-Amz-Mfa": struct{}{}, - "X-Amz-Request-Payer": struct{}{}, - "X-Amz-Server-Side-Encryption": struct{}{}, - "X-Amz-Server-Side-Encryption-Aws-Kms-Key-Id": struct{}{}, - "X-Amz-Server-Side-Encryption-Customer-Algorithm": struct{}{}, - "X-Amz-Server-Side-Encryption-Customer-Key": struct{}{}, - "X-Amz-Server-Side-Encryption-Customer-Key-Md5": struct{}{}, - "X-Amz-Storage-Class": struct{}{}, - "X-Amz-Website-Redirect-Location": struct{}{}, - }, - }, - patterns{"X-Amz-Meta-"}, -} - -// allowedHoisting is a whitelist for build query headers. The boolean value -// represents whether or not it is a pattern. -var allowedQueryHoisting = inclusiveRules{ - blacklist{requiredSignedHeaders}, - patterns{"X-Amz-"}, -} - -// Signer applies AWS v4 signing to given request. Use this to sign requests -// that need to be signed with AWS V4 Signatures. -type Signer struct { - // The authentication credentials the request will be signed against. - // This value must be set to sign requests. - Credentials *credentials.Credentials - - // Sets the log level the signer should use when reporting information to - // the logger. If the logger is nil nothing will be logged. See - // aws.LogLevelType for more information on available logging levels - // - // By default nothing will be logged. - Debug aws.LogLevelType - - // The logger loging information will be written to. If there the logger - // is nil, nothing will be logged. - Logger aws.Logger - - // Disables the Signer's moving HTTP header key/value pairs from the HTTP - // request header to the request's query string. This is most commonly used - // with pre-signed requests preventing headers from being added to the - // request's query string. - DisableHeaderHoisting bool - - // currentTimeFn returns the time value which represents the current time. - // This value should only be used for testing. If it is nil the default - // time.Now will be used. - currentTimeFn func() time.Time -} - -// NewSigner returns a Signer pointer configured with the credentials and optional -// option values provided. If not options are provided the Signer will use its -// default configuration. -func NewSigner(credentials *credentials.Credentials, options ...func(*Signer)) *Signer { - v4 := &Signer{ - Credentials: credentials, - } - - for _, option := range options { - option(v4) - } - - return v4 -} - -type signingCtx struct { - ServiceName string - Region string - Request *http.Request - Body io.ReadSeeker - Query url.Values - Time time.Time - ExpireTime time.Duration - SignedHeaderVals http.Header - - credValues credentials.Value - isPresign bool - formattedTime string - formattedShortTime string - - bodyDigest string - signedHeaders string - canonicalHeaders string - canonicalString string - credentialString string - stringToSign string - signature string - authorization string -} - -// Sign signs AWS v4 requests with the provided body, service name, region the -// request is made to, and time the request is signed at. The signTime allows -// you to specify that a request is signed for the future, and cannot be -// used until then. -// -// Returns a list of HTTP headers that were included in the signature or an -// error if signing the request failed. Generally for signed requests this value -// is not needed as the full request context will be captured by the http.Request -// value. It is included for reference though. -// -// Sign will set the request's Body to be the `body` parameter passed in. If -// the body is not already an io.ReadCloser, it will be wrapped within one. If -// a `nil` body parameter passed to Sign, the request's Body field will be -// also set to nil. Its important to note that this functionality will not -// change the request's ContentLength of the request. -// -// Sign differs from Presign in that it will sign the request using HTTP -// header values. This type of signing is intended for http.Request values that -// will not be shared, or are shared in a way the header values on the request -// will not be lost. -// -// The requests body is an io.ReadSeeker so the SHA256 of the body can be -// generated. To bypass the signer computing the hash you can set the -// "X-Amz-Content-Sha256" header with a precomputed value. The signer will -// only compute the hash if the request header value is empty. -func (v4 Signer) Sign(r *http.Request, body io.ReadSeeker, service, region string, signTime time.Time) (http.Header, error) { - return v4.signWithBody(r, body, service, region, 0, signTime) -} - -// Presign signs AWS v4 requests with the provided body, service name, region -// the request is made to, and time the request is signed at. The signTime -// allows you to specify that a request is signed for the future, and cannot -// be used until then. -// -// Returns a list of HTTP headers that were included in the signature or an -// error if signing the request failed. For presigned requests these headers -// and their values must be included on the HTTP request when it is made. This -// is helpful to know what header values need to be shared with the party the -// presigned request will be distributed to. -// -// Presign differs from Sign in that it will sign the request using query string -// instead of header values. This allows you to share the Presigned Request's -// URL with third parties, or distribute it throughout your system with minimal -// dependencies. -// -// Presign also takes an exp value which is the duration the -// signed request will be valid after the signing time. This is allows you to -// set when the request will expire. -// -// The requests body is an io.ReadSeeker so the SHA256 of the body can be -// generated. To bypass the signer computing the hash you can set the -// "X-Amz-Content-Sha256" header with a precomputed value. The signer will -// only compute the hash if the request header value is empty. -// -// Presigning a S3 request will not compute the body's SHA256 hash by default. -// This is done due to the general use case for S3 presigned URLs is to share -// PUT/GET capabilities. If you would like to include the body's SHA256 in the -// presigned request's signature you can set the "X-Amz-Content-Sha256" -// HTTP header and that will be included in the request's signature. -func (v4 Signer) Presign(r *http.Request, body io.ReadSeeker, service, region string, exp time.Duration, signTime time.Time) (http.Header, error) { - return v4.signWithBody(r, body, service, region, exp, signTime) -} - -func (v4 Signer) signWithBody(r *http.Request, body io.ReadSeeker, service, region string, exp time.Duration, signTime time.Time) (http.Header, error) { - currentTimeFn := v4.currentTimeFn - if currentTimeFn == nil { - currentTimeFn = time.Now - } - - ctx := &signingCtx{ - Request: r, - Body: body, - Query: r.URL.Query(), - Time: signTime, - ExpireTime: exp, - isPresign: exp != 0, - ServiceName: service, - Region: region, - } - - if ctx.isRequestSigned() { - ctx.Time = currentTimeFn() - ctx.handlePresignRemoval() - } - - var err error - ctx.credValues, err = v4.Credentials.Get() - if err != nil { - return http.Header{}, err - } - - ctx.assignAmzQueryValues() - ctx.build(v4.DisableHeaderHoisting) - - // If the request is not presigned the body should be attached to it. This - // prevents the confusion of wanting to send a signed request without - // the body the request was signed for attached. - if !ctx.isPresign { - var reader io.ReadCloser - if body != nil { - var ok bool - if reader, ok = body.(io.ReadCloser); !ok { - reader = ioutil.NopCloser(body) - } - } - r.Body = reader - } - - if v4.Debug.Matches(aws.LogDebugWithSigning) { - v4.logSigningInfo(ctx) - } - - return ctx.SignedHeaderVals, nil -} - -func (ctx *signingCtx) handlePresignRemoval() { - if !ctx.isPresign { - return - } - - // The credentials have expired for this request. The current signing - // is invalid, and needs to be request because the request will fail. - ctx.removePresign() - - // Update the request's query string to ensure the values stays in - // sync in the case retrieving the new credentials fails. - ctx.Request.URL.RawQuery = ctx.Query.Encode() -} - -func (ctx *signingCtx) assignAmzQueryValues() { - if ctx.isPresign { - ctx.Query.Set("X-Amz-Algorithm", authHeaderPrefix) - if ctx.credValues.SessionToken != "" { - ctx.Query.Set("X-Amz-Security-Token", ctx.credValues.SessionToken) - } else { - ctx.Query.Del("X-Amz-Security-Token") - } - - return - } - - if ctx.credValues.SessionToken != "" { - ctx.Request.Header.Set("X-Amz-Security-Token", ctx.credValues.SessionToken) - } -} - -// SignRequestHandler is a named request handler the SDK will use to sign -// service client request with using the V4 signature. -var SignRequestHandler = request.NamedHandler{ - Name: "v4.SignRequestHandler", Fn: SignSDKRequest, -} - -// SignSDKRequest signs an AWS request with the V4 signature. This -// request handler is bested used only with the SDK's built in service client's -// API operation requests. -// -// This function should not be used on its on its own, but in conjunction with -// an AWS service client's API operation call. To sign a standalone request -// not created by a service client's API operation method use the "Sign" or -// "Presign" functions of the "Signer" type. -// -// If the credentials of the request's config are set to -// credentials.AnonymousCredentials the request will not be signed. -func SignSDKRequest(req *request.Request) { - signSDKRequestWithCurrTime(req, time.Now) -} -func signSDKRequestWithCurrTime(req *request.Request, curTimeFn func() time.Time) { - // If the request does not need to be signed ignore the signing of the - // request if the AnonymousCredentials object is used. - if req.Config.Credentials == credentials.AnonymousCredentials { - return - } - - region := req.ClientInfo.SigningRegion - if region == "" { - region = aws.StringValue(req.Config.Region) - } - - name := req.ClientInfo.SigningName - if name == "" { - name = req.ClientInfo.ServiceName - } - - v4 := NewSigner(req.Config.Credentials, func(v4 *Signer) { - v4.Debug = req.Config.LogLevel.Value() - v4.Logger = req.Config.Logger - v4.DisableHeaderHoisting = req.NotHoist - v4.currentTimeFn = curTimeFn - }) - - signingTime := req.Time - if !req.LastSignedAt.IsZero() { - signingTime = req.LastSignedAt - } - - signedHeaders, err := v4.signWithBody(req.HTTPRequest, req.GetBody(), - name, region, req.ExpireTime, signingTime, - ) - if err != nil { - req.Error = err - req.SignedHeaderVals = nil - return - } - - req.SignedHeaderVals = signedHeaders - req.LastSignedAt = curTimeFn() -} - -const logSignInfoMsg = `DEBUG: Request Signature: ----[ CANONICAL STRING ]----------------------------- -%s ----[ STRING TO SIGN ]-------------------------------- -%s%s ------------------------------------------------------` -const logSignedURLMsg = ` ----[ SIGNED URL ]------------------------------------ -%s` - -func (v4 *Signer) logSigningInfo(ctx *signingCtx) { - signedURLMsg := "" - if ctx.isPresign { - signedURLMsg = fmt.Sprintf(logSignedURLMsg, ctx.Request.URL.String()) - } - msg := fmt.Sprintf(logSignInfoMsg, ctx.canonicalString, ctx.stringToSign, signedURLMsg) - v4.Logger.Log(msg) -} - -func (ctx *signingCtx) build(disableHeaderHoisting bool) { - ctx.buildTime() // no depends - ctx.buildCredentialString() // no depends - - unsignedHeaders := ctx.Request.Header - if ctx.isPresign { - if !disableHeaderHoisting { - urlValues := url.Values{} - urlValues, unsignedHeaders = buildQuery(allowedQueryHoisting, unsignedHeaders) // no depends - for k := range urlValues { - ctx.Query[k] = urlValues[k] - } - } - } - - ctx.buildBodyDigest() - ctx.buildCanonicalHeaders(ignoredHeaders, unsignedHeaders) - ctx.buildCanonicalString() // depends on canon headers / signed headers - ctx.buildStringToSign() // depends on canon string - ctx.buildSignature() // depends on string to sign - - if ctx.isPresign { - ctx.Request.URL.RawQuery += "&X-Amz-Signature=" + ctx.signature - } else { - parts := []string{ - authHeaderPrefix + " Credential=" + ctx.credValues.AccessKeyID + "/" + ctx.credentialString, - "SignedHeaders=" + ctx.signedHeaders, - "Signature=" + ctx.signature, - } - ctx.Request.Header.Set("Authorization", strings.Join(parts, ", ")) - } -} - -func (ctx *signingCtx) buildTime() { - ctx.formattedTime = ctx.Time.UTC().Format(timeFormat) - ctx.formattedShortTime = ctx.Time.UTC().Format(shortTimeFormat) - - if ctx.isPresign { - duration := int64(ctx.ExpireTime / time.Second) - ctx.Query.Set("X-Amz-Date", ctx.formattedTime) - ctx.Query.Set("X-Amz-Expires", strconv.FormatInt(duration, 10)) - } else { - ctx.Request.Header.Set("X-Amz-Date", ctx.formattedTime) - } -} - -func (ctx *signingCtx) buildCredentialString() { - ctx.credentialString = strings.Join([]string{ - ctx.formattedShortTime, - ctx.Region, - ctx.ServiceName, - "aws4_request", - }, "/") - - if ctx.isPresign { - ctx.Query.Set("X-Amz-Credential", ctx.credValues.AccessKeyID+"/"+ctx.credentialString) - } -} - -func buildQuery(r rule, header http.Header) (url.Values, http.Header) { - query := url.Values{} - unsignedHeaders := http.Header{} - for k, h := range header { - if r.IsValid(k) { - query[k] = h - } else { - unsignedHeaders[k] = h - } - } - - return query, unsignedHeaders -} -func (ctx *signingCtx) buildCanonicalHeaders(r rule, header http.Header) { - var headers []string - headers = append(headers, "host") - for k, v := range header { - canonicalKey := http.CanonicalHeaderKey(k) - if !r.IsValid(canonicalKey) { - continue // ignored header - } - if ctx.SignedHeaderVals == nil { - ctx.SignedHeaderVals = make(http.Header) - } - - lowerCaseKey := strings.ToLower(k) - if _, ok := ctx.SignedHeaderVals[lowerCaseKey]; ok { - // include additional values - ctx.SignedHeaderVals[lowerCaseKey] = append(ctx.SignedHeaderVals[lowerCaseKey], v...) - continue - } - - headers = append(headers, lowerCaseKey) - ctx.SignedHeaderVals[lowerCaseKey] = v - } - sort.Strings(headers) - - ctx.signedHeaders = strings.Join(headers, ";") - - if ctx.isPresign { - ctx.Query.Set("X-Amz-SignedHeaders", ctx.signedHeaders) - } - - headerValues := make([]string, len(headers)) - for i, k := range headers { - if k == "host" { - headerValues[i] = "host:" + ctx.Request.URL.Host - } else { - headerValues[i] = k + ":" + - strings.Join(ctx.SignedHeaderVals[k], ",") - } - } - - ctx.canonicalHeaders = strings.Join(stripExcessSpaces(headerValues), "\n") -} - -func (ctx *signingCtx) buildCanonicalString() { - ctx.Request.URL.RawQuery = strings.Replace(ctx.Query.Encode(), "+", "%20", -1) - uri := ctx.Request.URL.Opaque - if uri != "" { - uri = "/" + strings.Join(strings.Split(uri, "/")[3:], "/") - } else { - uri = ctx.Request.URL.Path - } - if uri == "" { - uri = "/" - } - - if ctx.ServiceName != "s3" { - uri = rest.EscapePath(uri, false) - } - - ctx.canonicalString = strings.Join([]string{ - ctx.Request.Method, - uri, - ctx.Request.URL.RawQuery, - ctx.canonicalHeaders + "\n", - ctx.signedHeaders, - ctx.bodyDigest, - }, "\n") -} - -func (ctx *signingCtx) buildStringToSign() { - ctx.stringToSign = strings.Join([]string{ - authHeaderPrefix, - ctx.formattedTime, - ctx.credentialString, - hex.EncodeToString(makeSha256([]byte(ctx.canonicalString))), - }, "\n") -} - -func (ctx *signingCtx) buildSignature() { - secret := ctx.credValues.SecretAccessKey - date := makeHmac([]byte("AWS4"+secret), []byte(ctx.formattedShortTime)) - region := makeHmac(date, []byte(ctx.Region)) - service := makeHmac(region, []byte(ctx.ServiceName)) - credentials := makeHmac(service, []byte("aws4_request")) - signature := makeHmac(credentials, []byte(ctx.stringToSign)) - ctx.signature = hex.EncodeToString(signature) -} - -func (ctx *signingCtx) buildBodyDigest() { - hash := ctx.Request.Header.Get("X-Amz-Content-Sha256") - if hash == "" { - if ctx.isPresign && ctx.ServiceName == "s3" { - hash = "UNSIGNED-PAYLOAD" - } else if ctx.Body == nil { - hash = emptyStringSHA256 - } else { - hash = hex.EncodeToString(makeSha256Reader(ctx.Body)) - } - if ctx.ServiceName == "s3" || ctx.ServiceName == "glacier" { - ctx.Request.Header.Set("X-Amz-Content-Sha256", hash) - } - } - ctx.bodyDigest = hash -} - -// isRequestSigned returns if the request is currently signed or presigned -func (ctx *signingCtx) isRequestSigned() bool { - if ctx.isPresign && ctx.Query.Get("X-Amz-Signature") != "" { - return true - } - if ctx.Request.Header.Get("Authorization") != "" { - return true - } - - return false -} - -// unsign removes signing flags for both signed and presigned requests. -func (ctx *signingCtx) removePresign() { - ctx.Query.Del("X-Amz-Algorithm") - ctx.Query.Del("X-Amz-Signature") - ctx.Query.Del("X-Amz-Security-Token") - ctx.Query.Del("X-Amz-Date") - ctx.Query.Del("X-Amz-Expires") - ctx.Query.Del("X-Amz-Credential") - ctx.Query.Del("X-Amz-SignedHeaders") -} - -func makeHmac(key []byte, data []byte) []byte { - hash := hmac.New(sha256.New, key) - hash.Write(data) - return hash.Sum(nil) -} - -func makeSha256(data []byte) []byte { - hash := sha256.New() - hash.Write(data) - return hash.Sum(nil) -} - -func makeSha256Reader(reader io.ReadSeeker) []byte { - hash := sha256.New() - start, _ := reader.Seek(0, 1) - defer reader.Seek(start, 0) - - io.Copy(hash, reader) - return hash.Sum(nil) -} - -const doubleSpaces = " " - -var doubleSpaceBytes = []byte(doubleSpaces) - -func stripExcessSpaces(headerVals []string) []string { - vals := make([]string, len(headerVals)) - for i, str := range headerVals { - // Trim leading and trailing spaces - trimmed := strings.TrimSpace(str) - - idx := strings.Index(trimmed, doubleSpaces) - var buf []byte - for idx > -1 { - // Multiple adjacent spaces found - if buf == nil { - // first time create the buffer - buf = []byte(trimmed) - } - - stripToIdx := -1 - for j := idx + 1; j < len(buf); j++ { - if buf[j] != ' ' { - buf = append(buf[:idx+1], buf[j:]...) - stripToIdx = j - break - } - } - - if stripToIdx >= 0 { - idx = bytes.Index(buf[stripToIdx:], doubleSpaceBytes) - if idx >= 0 { - idx += stripToIdx - } - } else { - idx = -1 - } - } - - if buf != nil { - vals[i] = string(buf) - } else { - vals[i] = trimmed - } - } - return vals -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4_test.go b/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4_test.go deleted file mode 100644 index fec1db18..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4_test.go +++ /dev/null @@ -1,416 +0,0 @@ -package v4 - -import ( - "bytes" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/http/httptest" - "strings" - "testing" - "time" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" -) - -func TestStripExcessHeaders(t *testing.T) { - vals := []string{ - "123", - "1 2 3", - " 1 2 3", - "1 2 3", - "1 23", - "1 2 3", - "1 2 ", - " 1 2 ", - } - - expected := []string{ - "123", - "1 2 3", - "1 2 3", - "1 2 3", - "1 23", - "1 2 3", - "1 2", - "1 2", - } - - newVals := stripExcessSpaces(vals) - for i := 0; i < len(newVals); i++ { - assert.Equal(t, expected[i], newVals[i], "test: %d", i) - } -} - -func buildRequest(serviceName, region, body string) (*http.Request, io.ReadSeeker) { - endpoint := "https://" + serviceName + "." + region + ".amazonaws.com" - reader := strings.NewReader(body) - req, _ := http.NewRequest("POST", endpoint, reader) - req.URL.Opaque = "//example.org/bucket/key-._~,!@#$%^&*()" - req.Header.Add("X-Amz-Target", "prefix.Operation") - req.Header.Add("Content-Type", "application/x-amz-json-1.0") - req.Header.Add("Content-Length", string(len(body))) - req.Header.Add("X-Amz-Meta-Other-Header", "some-value=!@#$%^&* (+)") - req.Header.Add("X-Amz-Meta-Other-Header_With_Underscore", "some-value=!@#$%^&* (+)") - req.Header.Add("X-amz-Meta-Other-Header_With_Underscore", "some-value=!@#$%^&* (+)") - return req, reader -} - -func buildSigner() Signer { - return Signer{ - Credentials: credentials.NewStaticCredentials("AKID", "SECRET", "SESSION"), - } -} - -func removeWS(text string) string { - text = strings.Replace(text, " ", "", -1) - text = strings.Replace(text, "\n", "", -1) - text = strings.Replace(text, "\t", "", -1) - return text -} - -func assertEqual(t *testing.T, expected, given string) { - if removeWS(expected) != removeWS(given) { - t.Errorf("\nExpected: %s\nGiven: %s", expected, given) - } -} - -func TestPresignRequest(t *testing.T) { - req, body := buildRequest("dynamodb", "us-east-1", "{}") - - signer := buildSigner() - signer.Presign(req, body, "dynamodb", "us-east-1", 300*time.Second, time.Unix(0, 0)) - - expectedDate := "19700101T000000Z" - expectedHeaders := "content-length;content-type;host;x-amz-meta-other-header;x-amz-meta-other-header_with_underscore" - expectedSig := "ea7856749041f727690c580569738282e99c79355fe0d8f125d3b5535d2ece83" - expectedCred := "AKID/19700101/us-east-1/dynamodb/aws4_request" - expectedTarget := "prefix.Operation" - - q := req.URL.Query() - assert.Equal(t, expectedSig, q.Get("X-Amz-Signature")) - assert.Equal(t, expectedCred, q.Get("X-Amz-Credential")) - assert.Equal(t, expectedHeaders, q.Get("X-Amz-SignedHeaders")) - assert.Equal(t, expectedDate, q.Get("X-Amz-Date")) - assert.Empty(t, q.Get("X-Amz-Meta-Other-Header")) - assert.Equal(t, expectedTarget, q.Get("X-Amz-Target")) -} - -func TestSignRequest(t *testing.T) { - req, body := buildRequest("dynamodb", "us-east-1", "{}") - signer := buildSigner() - signer.Sign(req, body, "dynamodb", "us-east-1", time.Unix(0, 0)) - - expectedDate := "19700101T000000Z" - expectedSig := "AWS4-HMAC-SHA256 Credential=AKID/19700101/us-east-1/dynamodb/aws4_request, SignedHeaders=content-length;content-type;host;x-amz-date;x-amz-meta-other-header;x-amz-meta-other-header_with_underscore;x-amz-security-token;x-amz-target, Signature=ea766cabd2ec977d955a3c2bae1ae54f4515d70752f2207618396f20aa85bd21" - - q := req.Header - assert.Equal(t, expectedSig, q.Get("Authorization")) - assert.Equal(t, expectedDate, q.Get("X-Amz-Date")) -} - -func TestSignBodyS3(t *testing.T) { - req, body := buildRequest("s3", "us-east-1", "hello") - signer := buildSigner() - signer.Sign(req, body, "s3", "us-east-1", time.Now()) - hash := req.Header.Get("X-Amz-Content-Sha256") - assert.Equal(t, "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824", hash) -} - -func TestSignBodyGlacier(t *testing.T) { - req, body := buildRequest("glacier", "us-east-1", "hello") - signer := buildSigner() - signer.Sign(req, body, "glacier", "us-east-1", time.Now()) - hash := req.Header.Get("X-Amz-Content-Sha256") - assert.Equal(t, "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824", hash) -} - -func TestPresignEmptyBodyS3(t *testing.T) { - req, body := buildRequest("s3", "us-east-1", "hello") - signer := buildSigner() - signer.Presign(req, body, "s3", "us-east-1", 5*time.Minute, time.Now()) - hash := req.Header.Get("X-Amz-Content-Sha256") - assert.Equal(t, "UNSIGNED-PAYLOAD", hash) -} - -func TestSignPrecomputedBodyChecksum(t *testing.T) { - req, body := buildRequest("dynamodb", "us-east-1", "hello") - req.Header.Set("X-Amz-Content-Sha256", "PRECOMPUTED") - signer := buildSigner() - signer.Sign(req, body, "dynamodb", "us-east-1", time.Now()) - hash := req.Header.Get("X-Amz-Content-Sha256") - assert.Equal(t, "PRECOMPUTED", hash) -} - -func TestAnonymousCredentials(t *testing.T) { - svc := awstesting.NewClient(&aws.Config{Credentials: credentials.AnonymousCredentials}) - r := svc.NewRequest( - &request.Operation{ - Name: "BatchGetItem", - HTTPMethod: "POST", - HTTPPath: "/", - }, - nil, - nil, - ) - SignSDKRequest(r) - - urlQ := r.HTTPRequest.URL.Query() - assert.Empty(t, urlQ.Get("X-Amz-Signature")) - assert.Empty(t, urlQ.Get("X-Amz-Credential")) - assert.Empty(t, urlQ.Get("X-Amz-SignedHeaders")) - assert.Empty(t, urlQ.Get("X-Amz-Date")) - - hQ := r.HTTPRequest.Header - assert.Empty(t, hQ.Get("Authorization")) - assert.Empty(t, hQ.Get("X-Amz-Date")) -} - -func TestIgnoreResignRequestWithValidCreds(t *testing.T) { - svc := awstesting.NewClient(&aws.Config{ - Credentials: credentials.NewStaticCredentials("AKID", "SECRET", "SESSION"), - Region: aws.String("us-west-2"), - }) - r := svc.NewRequest( - &request.Operation{ - Name: "BatchGetItem", - HTTPMethod: "POST", - HTTPPath: "/", - }, - nil, - nil, - ) - - SignSDKRequest(r) - sig := r.HTTPRequest.Header.Get("Authorization") - - signSDKRequestWithCurrTime(r, func() time.Time { - // Simulate one second has passed so that signature's date changes - // when it is resigned. - return time.Now().Add(1 * time.Second) - }) - assert.NotEqual(t, sig, r.HTTPRequest.Header.Get("Authorization")) -} - -func TestIgnorePreResignRequestWithValidCreds(t *testing.T) { - svc := awstesting.NewClient(&aws.Config{ - Credentials: credentials.NewStaticCredentials("AKID", "SECRET", "SESSION"), - Region: aws.String("us-west-2"), - }) - r := svc.NewRequest( - &request.Operation{ - Name: "BatchGetItem", - HTTPMethod: "POST", - HTTPPath: "/", - }, - nil, - nil, - ) - r.ExpireTime = time.Minute * 10 - - SignSDKRequest(r) - sig := r.HTTPRequest.URL.Query().Get("X-Amz-Signature") - - fmt.Println(sig) - signSDKRequestWithCurrTime(r, func() time.Time { - // Simulate one second has passed so that signature's date changes - // when it is resigned. - return time.Now().Add(1 * time.Second) - }) - assert.NotEqual(t, sig, r.HTTPRequest.URL.Query().Get("X-Amz-Signature")) -} - -func TestResignRequestExpiredCreds(t *testing.T) { - creds := credentials.NewStaticCredentials("AKID", "SECRET", "SESSION") - svc := awstesting.NewClient(&aws.Config{Credentials: creds}) - r := svc.NewRequest( - &request.Operation{ - Name: "BatchGetItem", - HTTPMethod: "POST", - HTTPPath: "/", - }, - nil, - nil, - ) - SignSDKRequest(r) - querySig := r.HTTPRequest.Header.Get("Authorization") - var origSignedHeaders string - for _, p := range strings.Split(querySig, ", ") { - if strings.HasPrefix(p, "SignedHeaders=") { - origSignedHeaders = p[len("SignedHeaders="):] - break - } - } - assert.NotEmpty(t, origSignedHeaders) - assert.NotContains(t, origSignedHeaders, "authorization") - origSignedAt := r.LastSignedAt - - creds.Expire() - - signSDKRequestWithCurrTime(r, func() time.Time { - // Simulate one second has passed so that signature's date changes - // when it is resigned. - return time.Now().Add(1 * time.Second) - }) - updatedQuerySig := r.HTTPRequest.Header.Get("Authorization") - assert.NotEqual(t, querySig, updatedQuerySig) - - var updatedSignedHeaders string - for _, p := range strings.Split(updatedQuerySig, ", ") { - if strings.HasPrefix(p, "SignedHeaders=") { - updatedSignedHeaders = p[len("SignedHeaders="):] - break - } - } - assert.NotEmpty(t, updatedSignedHeaders) - assert.NotContains(t, updatedQuerySig, "authorization") - assert.NotEqual(t, origSignedAt, r.LastSignedAt) -} - -func TestPreResignRequestExpiredCreds(t *testing.T) { - provider := &credentials.StaticProvider{Value: credentials.Value{ - AccessKeyID: "AKID", - SecretAccessKey: "SECRET", - SessionToken: "SESSION", - }} - creds := credentials.NewCredentials(provider) - svc := awstesting.NewClient(&aws.Config{Credentials: creds}) - r := svc.NewRequest( - &request.Operation{ - Name: "BatchGetItem", - HTTPMethod: "POST", - HTTPPath: "/", - }, - nil, - nil, - ) - r.ExpireTime = time.Minute * 10 - - SignSDKRequest(r) - querySig := r.HTTPRequest.URL.Query().Get("X-Amz-Signature") - signedHeaders := r.HTTPRequest.URL.Query().Get("X-Amz-SignedHeaders") - assert.NotEmpty(t, signedHeaders) - origSignedAt := r.LastSignedAt - - creds.Expire() - - signSDKRequestWithCurrTime(r, func() time.Time { - // Simulate the request occurred 15 minutes in the past - return time.Now().Add(-48 * time.Hour) - }) - assert.NotEqual(t, querySig, r.HTTPRequest.URL.Query().Get("X-Amz-Signature")) - resignedHeaders := r.HTTPRequest.URL.Query().Get("X-Amz-SignedHeaders") - assert.Equal(t, signedHeaders, resignedHeaders) - assert.NotContains(t, signedHeaders, "x-amz-signedHeaders") - assert.NotEqual(t, origSignedAt, r.LastSignedAt) -} - -func TestResignRequestExpiredRequest(t *testing.T) { - creds := credentials.NewStaticCredentials("AKID", "SECRET", "SESSION") - svc := awstesting.NewClient(&aws.Config{Credentials: creds}) - r := svc.NewRequest( - &request.Operation{ - Name: "BatchGetItem", - HTTPMethod: "POST", - HTTPPath: "/", - }, - nil, - nil, - ) - - SignSDKRequest(r) - querySig := r.HTTPRequest.Header.Get("Authorization") - origSignedAt := r.LastSignedAt - - signSDKRequestWithCurrTime(r, func() time.Time { - // Simulate the request occurred 15 minutes in the past - return time.Now().Add(15 * time.Minute) - }) - assert.NotEqual(t, querySig, r.HTTPRequest.Header.Get("Authorization")) - assert.NotEqual(t, origSignedAt, r.LastSignedAt) -} - -func TestSignWithRequestBody(t *testing.T) { - creds := credentials.NewStaticCredentials("AKID", "SECRET", "SESSION") - signer := NewSigner(creds) - - expectBody := []byte("abc123") - - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - b, err := ioutil.ReadAll(r.Body) - r.Body.Close() - assert.NoError(t, err) - assert.Equal(t, expectBody, b) - w.WriteHeader(http.StatusOK) - })) - - req, err := http.NewRequest("POST", server.URL, nil) - - _, err = signer.Sign(req, bytes.NewReader(expectBody), "service", "region", time.Now()) - assert.NoError(t, err) - - resp, err := http.DefaultClient.Do(req) - assert.NoError(t, err) - assert.Equal(t, http.StatusOK, resp.StatusCode) -} - -func TestSignWithRequestBody_Overwrite(t *testing.T) { - creds := credentials.NewStaticCredentials("AKID", "SECRET", "SESSION") - signer := NewSigner(creds) - - var expectBody []byte - - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - b, err := ioutil.ReadAll(r.Body) - r.Body.Close() - assert.NoError(t, err) - assert.Equal(t, len(expectBody), len(b)) - w.WriteHeader(http.StatusOK) - })) - - req, err := http.NewRequest("GET", server.URL, strings.NewReader("invalid body")) - - _, err = signer.Sign(req, nil, "service", "region", time.Now()) - req.ContentLength = 0 - - assert.NoError(t, err) - - resp, err := http.DefaultClient.Do(req) - assert.NoError(t, err) - assert.Equal(t, http.StatusOK, resp.StatusCode) -} - -func BenchmarkPresignRequest(b *testing.B) { - signer := buildSigner() - req, body := buildRequest("dynamodb", "us-east-1", "{}") - for i := 0; i < b.N; i++ { - signer.Presign(req, body, "dynamodb", "us-east-1", 300*time.Second, time.Now()) - } -} - -func BenchmarkSignRequest(b *testing.B) { - signer := buildSigner() - req, body := buildRequest("dynamodb", "us-east-1", "{}") - for i := 0; i < b.N; i++ { - signer.Sign(req, body, "dynamodb", "us-east-1", time.Now()) - } -} - -func BenchmarkStripExcessSpaces(b *testing.B) { - vals := []string{ - `AWS4-HMAC-SHA256 Credential=AKIDFAKEIDFAKEID/20160628/us-west-2/s3/aws4_request, SignedHeaders=host;x-amz-date, Signature=1234567890abcdef1234567890abcdef1234567890abcdef`, - `123 321 123 321`, - ` 123 321 123 321 `, - } - - b.ResetTimer() - for i := 0; i < b.N; i++ { - stripExcessSpaces(vals) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/types.go b/vendor/github.com/aws/aws-sdk-go/aws/types.go deleted file mode 100644 index fa014b49..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/types.go +++ /dev/null @@ -1,106 +0,0 @@ -package aws - -import ( - "io" - "sync" -) - -// ReadSeekCloser wraps a io.Reader returning a ReaderSeekerCloser -func ReadSeekCloser(r io.Reader) ReaderSeekerCloser { - return ReaderSeekerCloser{r} -} - -// ReaderSeekerCloser represents a reader that can also delegate io.Seeker and -// io.Closer interfaces to the underlying object if they are available. -type ReaderSeekerCloser struct { - r io.Reader -} - -// Read reads from the reader up to size of p. The number of bytes read, and -// error if it occurred will be returned. -// -// If the reader is not an io.Reader zero bytes read, and nil error will be returned. -// -// Performs the same functionality as io.Reader Read -func (r ReaderSeekerCloser) Read(p []byte) (int, error) { - switch t := r.r.(type) { - case io.Reader: - return t.Read(p) - } - return 0, nil -} - -// Seek sets the offset for the next Read to offset, interpreted according to -// whence: 0 means relative to the origin of the file, 1 means relative to the -// current offset, and 2 means relative to the end. Seek returns the new offset -// and an error, if any. -// -// If the ReaderSeekerCloser is not an io.Seeker nothing will be done. -func (r ReaderSeekerCloser) Seek(offset int64, whence int) (int64, error) { - switch t := r.r.(type) { - case io.Seeker: - return t.Seek(offset, whence) - } - return int64(0), nil -} - -// Close closes the ReaderSeekerCloser. -// -// If the ReaderSeekerCloser is not an io.Closer nothing will be done. -func (r ReaderSeekerCloser) Close() error { - switch t := r.r.(type) { - case io.Closer: - return t.Close() - } - return nil -} - -// A WriteAtBuffer provides a in memory buffer supporting the io.WriterAt interface -// Can be used with the s3manager.Downloader to download content to a buffer -// in memory. Safe to use concurrently. -type WriteAtBuffer struct { - buf []byte - m sync.Mutex - - // GrowthCoeff defines the growth rate of the internal buffer. By - // default, the growth rate is 1, where expanding the internal - // buffer will allocate only enough capacity to fit the new expected - // length. - GrowthCoeff float64 -} - -// NewWriteAtBuffer creates a WriteAtBuffer with an internal buffer -// provided by buf. -func NewWriteAtBuffer(buf []byte) *WriteAtBuffer { - return &WriteAtBuffer{buf: buf} -} - -// WriteAt writes a slice of bytes to a buffer starting at the position provided -// The number of bytes written will be returned, or error. Can overwrite previous -// written slices if the write ats overlap. -func (b *WriteAtBuffer) WriteAt(p []byte, pos int64) (n int, err error) { - pLen := len(p) - expLen := pos + int64(pLen) - b.m.Lock() - defer b.m.Unlock() - if int64(len(b.buf)) < expLen { - if int64(cap(b.buf)) < expLen { - if b.GrowthCoeff < 1 { - b.GrowthCoeff = 1 - } - newBuf := make([]byte, expLen, int64(b.GrowthCoeff*float64(expLen))) - copy(newBuf, b.buf) - b.buf = newBuf - } - b.buf = b.buf[:expLen] - } - copy(b.buf[pos:], p) - return pLen, nil -} - -// Bytes returns a slice of bytes written to the buffer. -func (b *WriteAtBuffer) Bytes() []byte { - b.m.Lock() - defer b.m.Unlock() - return b.buf[:len(b.buf):len(b.buf)] -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/types_test.go b/vendor/github.com/aws/aws-sdk-go/aws/types_test.go deleted file mode 100644 index a7cd93b8..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/types_test.go +++ /dev/null @@ -1,75 +0,0 @@ -package aws - -import ( - "math/rand" - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestWriteAtBuffer(t *testing.T) { - b := &WriteAtBuffer{} - - n, err := b.WriteAt([]byte{1}, 0) - assert.NoError(t, err) - assert.Equal(t, 1, n) - - n, err = b.WriteAt([]byte{1, 1, 1}, 5) - assert.NoError(t, err) - assert.Equal(t, 3, n) - - n, err = b.WriteAt([]byte{2}, 1) - assert.NoError(t, err) - assert.Equal(t, 1, n) - - n, err = b.WriteAt([]byte{3}, 2) - assert.NoError(t, err) - assert.Equal(t, 1, n) - - assert.Equal(t, []byte{1, 2, 3, 0, 0, 1, 1, 1}, b.Bytes()) -} - -func BenchmarkWriteAtBuffer(b *testing.B) { - buf := &WriteAtBuffer{} - r := rand.New(rand.NewSource(1)) - - b.ResetTimer() - for i := 0; i < b.N; i++ { - to := r.Intn(10) * 4096 - bs := make([]byte, to) - buf.WriteAt(bs, r.Int63n(10)*4096) - } -} - -func BenchmarkWriteAtBufferOrderedWrites(b *testing.B) { - // test the performance of a WriteAtBuffer when written in an - // ordered fashion. This is similar to the behavior of the - // s3.Downloader, since downloads the first chunk of the file, then - // the second, and so on. - // - // This test simulates a 150MB file being written in 30 ordered 5MB chunks. - chunk := int64(5e6) - max := chunk * 30 - // we'll write the same 5MB chunk every time - tmp := make([]byte, chunk) - for i := 0; i < b.N; i++ { - buf := &WriteAtBuffer{} - for i := int64(0); i < max; i += chunk { - buf.WriteAt(tmp, i) - } - } -} - -func BenchmarkWriteAtBufferParallel(b *testing.B) { - buf := &WriteAtBuffer{} - r := rand.New(rand.NewSource(1)) - - b.ResetTimer() - b.RunParallel(func(pb *testing.PB) { - for pb.Next() { - to := r.Intn(10) * 4096 - bs := make([]byte, to) - buf.WriteAt(bs, r.Int63n(10)*4096) - } - }) -} diff --git a/vendor/github.com/aws/aws-sdk-go/aws/version.go b/vendor/github.com/aws/aws-sdk-go/aws/version.go deleted file mode 100644 index 472f38cd..00000000 --- a/vendor/github.com/aws/aws-sdk-go/aws/version.go +++ /dev/null @@ -1,8 +0,0 @@ -// Package aws provides core functionality for making requests to AWS services. -package aws - -// SDKName is the name of this AWS SDK -const SDKName = "aws-sdk-go" - -// SDKVersion is the version of this SDK -const SDKVersion = "1.4.14" diff --git a/vendor/github.com/aws/aws-sdk-go/awstesting/assert.go b/vendor/github.com/aws/aws-sdk-go/awstesting/assert.go deleted file mode 100644 index 10ad7276..00000000 --- a/vendor/github.com/aws/aws-sdk-go/awstesting/assert.go +++ /dev/null @@ -1,163 +0,0 @@ -package awstesting - -import ( - "encoding/json" - "encoding/xml" - "fmt" - "net/url" - "reflect" - "regexp" - "sort" - "testing" -) - -// Match is a testing helper to test for testing error by comparing expected -// with a regular expression. -func Match(t *testing.T, regex, expected string) { - if !regexp.MustCompile(regex).Match([]byte(expected)) { - t.Errorf("%q\n\tdoes not match /%s/", expected, regex) - } -} - -// AssertURL verifies the expected URL is matches the actual. -func AssertURL(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool { - expectURL, err := url.Parse(expect) - if err != nil { - t.Errorf(errMsg("unable to parse expected URL", err, msgAndArgs)) - return false - } - actualURL, err := url.Parse(actual) - if err != nil { - t.Errorf(errMsg("unable to parse actual URL", err, msgAndArgs)) - return false - } - - equal(t, expectURL.Host, actualURL.Host, msgAndArgs...) - equal(t, expectURL.Scheme, actualURL.Scheme, msgAndArgs...) - equal(t, expectURL.Path, actualURL.Path, msgAndArgs...) - - return AssertQuery(t, expectURL.Query().Encode(), actualURL.Query().Encode(), msgAndArgs...) -} - -// AssertQuery verifies the expect HTTP query string matches the actual. -func AssertQuery(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool { - expectQ, err := url.ParseQuery(expect) - if err != nil { - t.Errorf(errMsg("unable to parse expected Query", err, msgAndArgs)) - return false - } - actualQ, err := url.ParseQuery(expect) - if err != nil { - t.Errorf(errMsg("unable to parse actual Query", err, msgAndArgs)) - return false - } - - // Make sure the keys are the same - if !equal(t, queryValueKeys(expectQ), queryValueKeys(actualQ), msgAndArgs...) { - return false - } - - for k, expectQVals := range expectQ { - sort.Strings(expectQVals) - actualQVals := actualQ[k] - sort.Strings(actualQVals) - equal(t, expectQVals, actualQVals, msgAndArgs...) - } - - return true -} - -// AssertJSON verifies that the expect json string matches the actual. -func AssertJSON(t *testing.T, expect, actual string, msgAndArgs ...interface{}) bool { - expectVal := map[string]interface{}{} - if err := json.Unmarshal([]byte(expect), &expectVal); err != nil { - t.Errorf(errMsg("unable to parse expected JSON", err, msgAndArgs...)) - return false - } - - actualVal := map[string]interface{}{} - if err := json.Unmarshal([]byte(actual), &actualVal); err != nil { - t.Errorf(errMsg("unable to parse actual JSON", err, msgAndArgs...)) - return false - } - - return equal(t, expectVal, actualVal, msgAndArgs...) -} - -// AssertXML verifies that the expect xml string matches the actual. -func AssertXML(t *testing.T, expect, actual string, container interface{}, msgAndArgs ...interface{}) bool { - expectVal := container - if err := xml.Unmarshal([]byte(expect), &expectVal); err != nil { - t.Errorf(errMsg("unable to parse expected XML", err, msgAndArgs...)) - } - - actualVal := container - if err := xml.Unmarshal([]byte(actual), &actualVal); err != nil { - t.Errorf(errMsg("unable to parse actual XML", err, msgAndArgs...)) - } - return equal(t, expectVal, actualVal, msgAndArgs...) -} - -// objectsAreEqual determines if two objects are considered equal. -// -// This function does no assertion of any kind. -// -// Based on github.com/stretchr/testify/assert.ObjectsAreEqual -// Copied locally to prevent non-test build dependencies on testify -func objectsAreEqual(expected, actual interface{}) bool { - if expected == nil || actual == nil { - return expected == actual - } - - return reflect.DeepEqual(expected, actual) -} - -// Equal asserts that two objects are equal. -// -// assert.Equal(t, 123, 123, "123 and 123 should be equal") -// -// Returns whether the assertion was successful (true) or not (false). -// -// Based on github.com/stretchr/testify/assert.Equal -// Copied locally to prevent non-test build dependencies on testify -func equal(t *testing.T, expected, actual interface{}, msgAndArgs ...interface{}) bool { - if !objectsAreEqual(expected, actual) { - t.Errorf("Not Equal:\n\t%#v (expected)\n\t%#v (actual), %s", - expected, actual, messageFromMsgAndArgs(msgAndArgs)) - return false - } - - return true -} - -func errMsg(baseMsg string, err error, msgAndArgs ...interface{}) string { - message := messageFromMsgAndArgs(msgAndArgs) - if message != "" { - message += ", " - } - return fmt.Sprintf("%s%s, %v", message, baseMsg, err) -} - -// Based on github.com/stretchr/testify/assert.messageFromMsgAndArgs -// Copied locally to prevent non-test build dependencies on testify -func messageFromMsgAndArgs(msgAndArgs []interface{}) string { - if len(msgAndArgs) == 0 || msgAndArgs == nil { - return "" - } - if len(msgAndArgs) == 1 { - return msgAndArgs[0].(string) - } - if len(msgAndArgs) > 1 { - return fmt.Sprintf(msgAndArgs[0].(string), msgAndArgs[1:]...) - } - return "" -} - -func queryValueKeys(v url.Values) []string { - keys := make([]string, 0, len(v)) - for k := range v { - keys = append(keys, k) - } - sort.Strings(keys) - return keys -} diff --git a/vendor/github.com/aws/aws-sdk-go/awstesting/assert_test.go b/vendor/github.com/aws/aws-sdk-go/awstesting/assert_test.go deleted file mode 100644 index 45903a5d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/awstesting/assert_test.go +++ /dev/null @@ -1,64 +0,0 @@ -package awstesting_test - -import ( - "encoding/xml" - "testing" - - "github.com/aws/aws-sdk-go/awstesting" -) - -func TestAssertJSON(t *testing.T) { - cases := []struct { - e, a string - asserts bool - }{ - { - e: `{"RecursiveStruct":{"RecursiveMap":{"foo":{"NoRecurse":"foo"},"bar":{"NoRecurse":"bar"}}}}`, - a: `{"RecursiveStruct":{"RecursiveMap":{"bar":{"NoRecurse":"bar"},"foo":{"NoRecurse":"foo"}}}}`, - asserts: true, - }, - } - - for i, c := range cases { - mockT := &testing.T{} - if awstesting.AssertJSON(mockT, c.e, c.a) != c.asserts { - t.Error("Assert JSON result was not expected.", i) - } - } -} - -func TestAssertXML(t *testing.T) { - cases := []struct { - e, a string - asserts bool - container struct { - XMLName xml.Name `xml:"OperationRequest"` - NS string `xml:"xmlns,attr"` - RecursiveStruct struct { - RecursiveMap struct { - Entries []struct { - XMLName xml.Name `xml:"entries"` - Key string `xml:"key"` - Value struct { - XMLName xml.Name `xml:"value"` - NoRecurse string - } - } - } - } - } - }{ - { - e: `foofoobarbar`, - a: `barbarfoofoo`, - asserts: true, - }, - } - - for i, c := range cases { - // mockT := &testing.T{} - if awstesting.AssertXML(t, c.e, c.a, c.container) != c.asserts { - t.Error("Assert XML result was not expected.", i) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/awstesting/client.go b/vendor/github.com/aws/aws-sdk-go/awstesting/client.go deleted file mode 100644 index ca64a447..00000000 --- a/vendor/github.com/aws/aws-sdk-go/awstesting/client.go +++ /dev/null @@ -1,20 +0,0 @@ -package awstesting - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/defaults" -) - -// NewClient creates and initializes a generic service client for testing. -func NewClient(cfgs ...*aws.Config) *client.Client { - info := metadata.ClientInfo{ - Endpoint: "http://endpoint", - SigningName: "", - } - def := defaults.Get() - def.Config.MergeIn(cfgs...) - - return client.New(*def.Config, info, def.Handlers) -} diff --git a/vendor/github.com/aws/aws-sdk-go/awstesting/mock/mock.go b/vendor/github.com/aws/aws-sdk-go/awstesting/mock/mock.go deleted file mode 100644 index 9f180074..00000000 --- a/vendor/github.com/aws/aws-sdk-go/awstesting/mock/mock.go +++ /dev/null @@ -1,43 +0,0 @@ -package mock - -import ( - "net/http" - "net/http/httptest" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/session" -) - -// Session is a mock session which is used to hit the mock server -var Session = session.Must(session.NewSession(&aws.Config{ - DisableSSL: aws.Bool(true), - Endpoint: aws.String(server.URL[7:]), -})) - -// server is the mock server that simply writes a 200 status back to the client -var server = httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - w.WriteHeader(http.StatusOK) -})) - -// NewMockClient creates and initializes a client that will connect to the -// mock server -func NewMockClient(cfgs ...*aws.Config) *client.Client { - c := Session.ClientConfig("Mock", cfgs...) - - svc := client.New( - *c.Config, - metadata.ClientInfo{ - ServiceName: "Mock", - SigningRegion: c.SigningRegion, - Endpoint: c.Endpoint, - APIVersion: "2015-12-08", - JSONVersion: "1.1", - TargetPrefix: "MockServer", - }, - c.Handlers, - ) - - return svc -} diff --git a/vendor/github.com/aws/aws-sdk-go/awstesting/unit/unit.go b/vendor/github.com/aws/aws-sdk-go/awstesting/unit/unit.go deleted file mode 100644 index 1c6e6054..00000000 --- a/vendor/github.com/aws/aws-sdk-go/awstesting/unit/unit.go +++ /dev/null @@ -1,13 +0,0 @@ -// Package unit performs initialization and validation for unit tests -package unit - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/credentials" - "github.com/aws/aws-sdk-go/aws/session" -) - -// Session is a shared session for unit tests to use. -var Session = session.Must(session.NewSession(aws.NewConfig(). - WithCredentials(credentials.NewStaticCredentials("AKID", "SECRET", "SESSION")). - WithRegion("mock-region"))) diff --git a/vendor/github.com/aws/aws-sdk-go/awstesting/util.go b/vendor/github.com/aws/aws-sdk-go/awstesting/util.go deleted file mode 100644 index 77c296e9..00000000 --- a/vendor/github.com/aws/aws-sdk-go/awstesting/util.go +++ /dev/null @@ -1,67 +0,0 @@ -package awstesting - -import ( - "io" - - "github.com/aws/aws-sdk-go/private/util" -) - -// ZeroReader is a io.Reader which will always write zeros to the byte slice provided. -type ZeroReader struct{} - -// Read fills the provided byte slice with zeros returning the number of bytes written. -func (r *ZeroReader) Read(b []byte) (int, error) { - for i := 0; i < len(b); i++ { - b[i] = 0 - } - return len(b), nil -} - -// ReadCloser is a io.ReadCloser for unit testing. -// Designed to test for leaks and whether a handle has -// been closed -type ReadCloser struct { - Size int - Closed bool - set bool - FillData func(bool, []byte, int, int) -} - -// Read will call FillData and fill it with whatever data needed. -// Decrements the size until zero, then return io.EOF. -func (r *ReadCloser) Read(b []byte) (int, error) { - if r.Closed { - return 0, io.EOF - } - - delta := len(b) - if delta > r.Size { - delta = r.Size - } - r.Size -= delta - - for i := 0; i < delta; i++ { - b[i] = 'a' - } - - if r.FillData != nil { - r.FillData(r.set, b, r.Size, delta) - } - r.set = true - - if r.Size > 0 { - return delta, nil - } - return delta, io.EOF -} - -// Close sets Closed to true and returns no error -func (r *ReadCloser) Close() error { - r.Closed = true - return nil -} - -// SortedKeys returns a sorted slice of keys of a map. -func SortedKeys(m map[string]interface{}) []string { - return util.SortedKeys(m) -} diff --git a/vendor/github.com/aws/aws-sdk-go/awstesting/util_test.go b/vendor/github.com/aws/aws-sdk-go/awstesting/util_test.go deleted file mode 100644 index 4b03db01..00000000 --- a/vendor/github.com/aws/aws-sdk-go/awstesting/util_test.go +++ /dev/null @@ -1,49 +0,0 @@ -package awstesting_test - -import ( - "io" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/awstesting" -) - -func TestReadCloserClose(t *testing.T) { - rc := awstesting.ReadCloser{Size: 1} - err := rc.Close() - - assert.Nil(t, err) - assert.True(t, rc.Closed) - assert.Equal(t, rc.Size, 1) -} - -func TestReadCloserRead(t *testing.T) { - rc := awstesting.ReadCloser{Size: 5} - b := make([]byte, 2) - - n, err := rc.Read(b) - - assert.Nil(t, err) - assert.Equal(t, n, 2) - assert.False(t, rc.Closed) - assert.Equal(t, rc.Size, 3) - - err = rc.Close() - assert.Nil(t, err) - n, err = rc.Read(b) - assert.Equal(t, err, io.EOF) - assert.Equal(t, n, 0) -} - -func TestReadCloserReadAll(t *testing.T) { - rc := awstesting.ReadCloser{Size: 5} - b := make([]byte, 5) - - n, err := rc.Read(b) - - assert.Equal(t, err, io.EOF) - assert.Equal(t, n, 5) - assert.False(t, rc.Closed) - assert.Equal(t, rc.Size, 0) -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints.go b/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints.go deleted file mode 100644 index b4ad7405..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints.go +++ /dev/null @@ -1,70 +0,0 @@ -// Package endpoints validates regional endpoints for services. -package endpoints - -//go:generate go run ../model/cli/gen-endpoints/main.go endpoints.json endpoints_map.go -//go:generate gofmt -s -w endpoints_map.go - -import ( - "fmt" - "regexp" - "strings" -) - -// NormalizeEndpoint takes and endpoint and service API information to return a -// normalized endpoint and signing region. If the endpoint is not an empty string -// the service name and region will be used to look up the service's API endpoint. -// If the endpoint is provided the scheme will be added if it is not present. -func NormalizeEndpoint(endpoint, serviceName, region string, disableSSL, useDualStack bool) (normEndpoint, signingRegion string) { - if endpoint == "" { - return EndpointForRegion(serviceName, region, disableSSL, useDualStack) - } - - return AddScheme(endpoint, disableSSL), "" -} - -// EndpointForRegion returns an endpoint and its signing region for a service and region. -// if the service and region pair are not found endpoint and signingRegion will be empty. -func EndpointForRegion(svcName, region string, disableSSL, useDualStack bool) (endpoint, signingRegion string) { - dualStackField := "" - if useDualStack { - dualStackField = "/dualstack" - } - - derivedKeys := []string{ - region + "/" + svcName + dualStackField, - region + "/*" + dualStackField, - "*/" + svcName + dualStackField, - "*/*" + dualStackField, - } - - for _, key := range derivedKeys { - if val, ok := endpointsMap.Endpoints[key]; ok { - ep := val.Endpoint - ep = strings.Replace(ep, "{region}", region, -1) - ep = strings.Replace(ep, "{service}", svcName, -1) - - endpoint = ep - signingRegion = val.SigningRegion - break - } - } - - return AddScheme(endpoint, disableSSL), signingRegion -} - -// Regular expression to determine if the endpoint string is prefixed with a scheme. -var schemeRE = regexp.MustCompile("^([^:]+)://") - -// AddScheme adds the HTTP or HTTPS schemes to a endpoint URL if there is no -// scheme. If disableSSL is true HTTP will be added instead of the default HTTPS. -func AddScheme(endpoint string, disableSSL bool) string { - if endpoint != "" && !schemeRE.MatchString(endpoint) { - scheme := "https" - if disableSSL { - scheme = "http" - } - endpoint = fmt.Sprintf("%s://%s", scheme, endpoint) - } - - return endpoint -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints.json b/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints.json deleted file mode 100644 index c5bf3c7c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints.json +++ /dev/null @@ -1,78 +0,0 @@ -{ - "version": 2, - "endpoints": { - "*/*": { - "endpoint": "{service}.{region}.amazonaws.com" - }, - "cn-north-1/*": { - "endpoint": "{service}.{region}.amazonaws.com.cn", - "signatureVersion": "v4" - }, - "cn-north-1/ec2metadata": { - "endpoint": "http://169.254.169.254/latest" - }, - "us-gov-west-1/iam": { - "endpoint": "iam.us-gov.amazonaws.com" - }, - "us-gov-west-1/sts": { - "endpoint": "sts.us-gov-west-1.amazonaws.com" - }, - "us-gov-west-1/s3": { - "endpoint": "s3-{region}.amazonaws.com" - }, - "us-gov-west-1/ec2metadata": { - "endpoint": "http://169.254.169.254/latest" - }, - "*/cloudfront": { - "endpoint": "cloudfront.amazonaws.com", - "signingRegion": "us-east-1" - }, - "*/cloudsearchdomain": { - "endpoint": "", - "signingRegion": "us-east-1" - }, - "*/data.iot": { - "endpoint": "", - "signingRegion": "us-east-1" - }, - "*/ec2metadata": { - "endpoint": "http://169.254.169.254/latest" - }, - "*/iam": { - "endpoint": "iam.amazonaws.com", - "signingRegion": "us-east-1" - }, - "*/importexport": { - "endpoint": "importexport.amazonaws.com", - "signingRegion": "us-east-1" - }, - "*/route53": { - "endpoint": "route53.amazonaws.com", - "signingRegion": "us-east-1" - }, - "*/sts": { - "endpoint": "sts.amazonaws.com", - "signingRegion": "us-east-1" - }, - "*/waf": { - "endpoint": "waf.amazonaws.com", - "signingRegion": "us-east-1" - }, - "us-east-1/sdb": { - "endpoint": "sdb.amazonaws.com", - "signingRegion": "us-east-1" - }, - "*/s3": { - "endpoint": "s3-{region}.amazonaws.com" - }, - "*/s3/dualstack": { - "endpoint": "s3.dualstack.{region}.amazonaws.com" - }, - "us-east-1/s3": { - "endpoint": "s3.amazonaws.com" - }, - "eu-central-1/s3": { - "endpoint": "{service}.{region}.amazonaws.com" - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints_map.go b/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints_map.go deleted file mode 100644 index a81d158c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints_map.go +++ /dev/null @@ -1,91 +0,0 @@ -package endpoints - -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -type endpointStruct struct { - Version int - Endpoints map[string]endpointEntry -} - -type endpointEntry struct { - Endpoint string - SigningRegion string -} - -var endpointsMap = endpointStruct{ - Version: 2, - Endpoints: map[string]endpointEntry{ - "*/*": { - Endpoint: "{service}.{region}.amazonaws.com", - }, - "*/cloudfront": { - Endpoint: "cloudfront.amazonaws.com", - SigningRegion: "us-east-1", - }, - "*/cloudsearchdomain": { - Endpoint: "", - SigningRegion: "us-east-1", - }, - "*/data.iot": { - Endpoint: "", - SigningRegion: "us-east-1", - }, - "*/ec2metadata": { - Endpoint: "http://169.254.169.254/latest", - }, - "*/iam": { - Endpoint: "iam.amazonaws.com", - SigningRegion: "us-east-1", - }, - "*/importexport": { - Endpoint: "importexport.amazonaws.com", - SigningRegion: "us-east-1", - }, - "*/route53": { - Endpoint: "route53.amazonaws.com", - SigningRegion: "us-east-1", - }, - "*/s3": { - Endpoint: "s3-{region}.amazonaws.com", - }, - "*/s3/dualstack": { - Endpoint: "s3.dualstack.{region}.amazonaws.com", - }, - "*/sts": { - Endpoint: "sts.amazonaws.com", - SigningRegion: "us-east-1", - }, - "*/waf": { - Endpoint: "waf.amazonaws.com", - SigningRegion: "us-east-1", - }, - "cn-north-1/*": { - Endpoint: "{service}.{region}.amazonaws.com.cn", - }, - "cn-north-1/ec2metadata": { - Endpoint: "http://169.254.169.254/latest", - }, - "eu-central-1/s3": { - Endpoint: "{service}.{region}.amazonaws.com", - }, - "us-east-1/s3": { - Endpoint: "s3.amazonaws.com", - }, - "us-east-1/sdb": { - Endpoint: "sdb.amazonaws.com", - SigningRegion: "us-east-1", - }, - "us-gov-west-1/ec2metadata": { - Endpoint: "http://169.254.169.254/latest", - }, - "us-gov-west-1/iam": { - Endpoint: "iam.us-gov.amazonaws.com", - }, - "us-gov-west-1/s3": { - Endpoint: "s3-{region}.amazonaws.com", - }, - "us-gov-west-1/sts": { - Endpoint: "sts.us-gov-west-1.amazonaws.com", - }, - }, -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints_test.go b/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints_test.go deleted file mode 100644 index 271f8652..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/endpoints/endpoints_test.go +++ /dev/null @@ -1,65 +0,0 @@ -package endpoints_test - -import ( - "fmt" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/private/endpoints" -) - -func TestGenericEndpoint(t *testing.T) { - name := "service" - region := "mock-region-1" - - ep, sr := endpoints.EndpointForRegion(name, region, false, false) - assert.Equal(t, fmt.Sprintf("https://%s.%s.amazonaws.com", name, region), ep) - assert.Empty(t, sr) -} - -func TestGlobalEndpoints(t *testing.T) { - region := "mock-region-1" - svcs := []string{"cloudfront", "iam", "importexport", "route53", "sts", "waf"} - - for _, name := range svcs { - ep, sr := endpoints.EndpointForRegion(name, region, false, false) - assert.Equal(t, fmt.Sprintf("https://%s.amazonaws.com", name), ep) - assert.Equal(t, "us-east-1", sr) - } -} - -func TestDualStackEndpoint(t *testing.T) { - ep, sr := endpoints.EndpointForRegion("s3", "mock-region-1", false, true) - assert.Equal(t, "https://s3.dualstack.mock-region-1.amazonaws.com", ep) - assert.Equal(t, "", sr) - - ep, sr = endpoints.EndpointForRegion("mock-svc", "mock-region-1", false, true) - assert.Equal(t, "", ep) - assert.Equal(t, "", sr) - - ep, sr = endpoints.EndpointForRegion("s3", "mock-region-1", false, false) - assert.Equal(t, "https://s3-mock-region-1.amazonaws.com", ep) - assert.Equal(t, "", sr) -} - -func TestServicesInCN(t *testing.T) { - region := "cn-north-1" - svcs := []string{"cloudfront", "iam", "importexport", "route53", "sts", "s3", "waf"} - - for _, name := range svcs { - ep, sr := endpoints.EndpointForRegion(name, region, false, false) - assert.Equal(t, fmt.Sprintf("https://%s.%s.amazonaws.com.cn", name, region), ep) - assert.Empty(t, sr) - } -} - -func TestEC2MetadataEndpoints(t *testing.T) { - regions := []string{"us-east-1", "us-gov-west-1", "cn-north-1", "mock-region-1"} - - for _, region := range regions { - ep, sr := endpoints.EndpointForRegion("ec2metadata", region, false, false) - assert.Equal(t, "http://169.254.169.254/latest", ep) - assert.Equal(t, "", sr) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build.go deleted file mode 100644 index bb0dae97..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build.go +++ /dev/null @@ -1,35 +0,0 @@ -// Package ec2query provides serialization of AWS EC2 requests and responses. -package ec2query - -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/input/ec2.json build_test.go - -import ( - "net/url" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/query/queryutil" -) - -// BuildHandler is a named request handler for building ec2query protocol requests -var BuildHandler = request.NamedHandler{Name: "awssdk.ec2query.Build", Fn: Build} - -// Build builds a request for the EC2 protocol. -func Build(r *request.Request) { - body := url.Values{ - "Action": {r.Operation.Name}, - "Version": {r.ClientInfo.APIVersion}, - } - if err := queryutil.Parse(body, r.Params, true); err != nil { - r.Error = awserr.New("SerializationError", "failed encoding EC2 Query request", err) - } - - if r.ExpireTime == 0 { - r.HTTPRequest.Method = "POST" - r.HTTPRequest.Header.Set("Content-Type", "application/x-www-form-urlencoded; charset=utf-8") - r.SetBufferBody([]byte(body.Encode())) - } else { // This is a pre-signed request - r.HTTPRequest.Method = "GET" - r.HTTPRequest.URL.RawQuery = body.Encode() - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_bench_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_bench_test.go deleted file mode 100644 index e135b936..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_bench_test.go +++ /dev/null @@ -1,85 +0,0 @@ -// +build bench - -package ec2query_test - -import ( - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/private/protocol/ec2query" - "github.com/aws/aws-sdk-go/service/ec2" -) - -func BenchmarkEC2QueryBuild_Complex_ec2AuthorizeSecurityGroupEgress(b *testing.B) { - params := &ec2.AuthorizeSecurityGroupEgressInput{ - GroupId: aws.String("String"), // Required - CidrIp: aws.String("String"), - DryRun: aws.Bool(true), - FromPort: aws.Int64(1), - IpPermissions: []*ec2.IpPermission{ - { // Required - FromPort: aws.Int64(1), - IpProtocol: aws.String("String"), - IpRanges: []*ec2.IpRange{ - { // Required - CidrIp: aws.String("String"), - }, - // More values... - }, - PrefixListIds: []*ec2.PrefixListId{ - { // Required - PrefixListId: aws.String("String"), - }, - // More values... - }, - ToPort: aws.Int64(1), - UserIdGroupPairs: []*ec2.UserIdGroupPair{ - { // Required - GroupId: aws.String("String"), - GroupName: aws.String("String"), - UserId: aws.String("String"), - }, - // More values... - }, - }, - // More values... - }, - IpProtocol: aws.String("String"), - SourceSecurityGroupName: aws.String("String"), - SourceSecurityGroupOwnerId: aws.String("String"), - ToPort: aws.Int64(1), - } - - benchEC2QueryBuild(b, "AuthorizeSecurityGroupEgress", params) -} - -func BenchmarkEC2QueryBuild_Simple_ec2AttachNetworkInterface(b *testing.B) { - params := &ec2.AttachNetworkInterfaceInput{ - DeviceIndex: aws.Int64(1), // Required - InstanceId: aws.String("String"), // Required - NetworkInterfaceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - - benchEC2QueryBuild(b, "AttachNetworkInterface", params) -} - -func benchEC2QueryBuild(b *testing.B, opName string, params interface{}) { - svc := awstesting.NewClient() - svc.ServiceName = "ec2" - svc.APIVersion = "2015-04-15" - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(&request.Operation{ - Name: opName, - HTTPMethod: "POST", - HTTPPath: "/", - }, params, nil) - ec2query.Build(r) - if r.Error != nil { - b.Fatal("Unexpected error", r.Error) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_test.go deleted file mode 100644 index 7dd00a93..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_test.go +++ /dev/null @@ -1,1378 +0,0 @@ -package ec2query_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/ec2query" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService1ProtocolTest client from just a session. -// svc := inputservice1protocoltest.New(mySession) -// -// // Create a InputService1ProtocolTest client with additional configuration -// svc := inputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService1ProtocolTest { - c := p.ClientConfig("inputservice1protocoltest", cfgs...) - return newInputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService1ProtocolTest { - svc := &InputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService1TestCaseOperation1 = "OperationName" - -// InputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation1Request method. -// req, resp := client.InputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputService1TestCaseOperation1Input) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService1TestShapeInputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputService1TestCaseOperation1Input) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) { - req, out := c.InputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService1TestShapeInputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Bar *string `type:"string"` - - Foo *string `type:"string"` -} - -type InputService1TestShapeInputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService2ProtocolTest client from just a session. -// svc := inputservice2protocoltest.New(mySession) -// -// // Create a InputService2ProtocolTest client with additional configuration -// svc := inputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService2ProtocolTest { - c := p.ClientConfig("inputservice2protocoltest", cfgs...) - return newInputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService2ProtocolTest { - svc := &InputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService2TestCaseOperation1 = "OperationName" - -// InputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService2TestCaseOperation1Request method. -// req, resp := client.InputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputService2TestCaseOperation1Input) (req *request.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService2TestShapeInputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService2TestShapeInputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputService2TestCaseOperation1Input) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) { - req, out := c.InputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService2TestShapeInputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Bar *string `locationName:"barLocationName" type:"string"` - - Foo *string `type:"string"` - - Yuck *string `locationName:"yuckLocationName" queryName:"yuckQueryName" type:"string"` -} - -type InputService2TestShapeInputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService3ProtocolTest client from just a session. -// svc := inputservice3protocoltest.New(mySession) -// -// // Create a InputService3ProtocolTest client with additional configuration -// svc := inputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService3ProtocolTest { - c := p.ClientConfig("inputservice3protocoltest", cfgs...) - return newInputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService3ProtocolTest { - svc := &InputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService3TestCaseOperation1 = "OperationName" - -// InputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation1Request method. -// req, resp := client.InputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputService3TestCaseOperation1Input) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService3TestShapeInputService3TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputService3TestCaseOperation1Input) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) { - req, out := c.InputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService3TestShapeInputService3TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - StructArg *InputService3TestShapeStructType `locationName:"Struct" type:"structure"` -} - -type InputService3TestShapeInputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService3TestShapeStructType struct { - _ struct{} `type:"structure"` - - ScalarArg *string `locationName:"Scalar" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService4ProtocolTest client from just a session. -// svc := inputservice4protocoltest.New(mySession) -// -// // Create a InputService4ProtocolTest client with additional configuration -// svc := inputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService4ProtocolTest { - c := p.ClientConfig("inputservice4protocoltest", cfgs...) - return newInputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService4ProtocolTest { - svc := &InputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService4TestCaseOperation1 = "OperationName" - -// InputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService4TestCaseOperation1Request method. -// req, resp := client.InputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputService4TestCaseOperation1Input) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService4TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService4TestShapeInputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService4TestShapeInputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputService4TestCaseOperation1Input) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) { - req, out := c.InputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService4TestShapeInputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - ListArg []*string `type:"list"` -} - -type InputService4TestShapeInputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService5ProtocolTest client from just a session. -// svc := inputservice5protocoltest.New(mySession) -// -// // Create a InputService5ProtocolTest client with additional configuration -// svc := inputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService5ProtocolTest { - c := p.ClientConfig("inputservice5protocoltest", cfgs...) - return newInputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService5ProtocolTest { - svc := &InputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService5TestCaseOperation1 = "OperationName" - -// InputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation1Request method. -// req, resp := client.InputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputService5TestCaseOperation1Input) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputService5TestCaseOperation1Input) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) { - req, out := c.InputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService5TestShapeInputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - ListArg []*string `locationName:"ListMemberName" locationNameList:"item" type:"list"` -} - -type InputService5TestShapeInputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService6ProtocolTest client from just a session. -// svc := inputservice6protocoltest.New(mySession) -// -// // Create a InputService6ProtocolTest client with additional configuration -// svc := inputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService6ProtocolTest { - c := p.ClientConfig("inputservice6protocoltest", cfgs...) - return newInputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService6ProtocolTest { - svc := &InputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService6TestCaseOperation1 = "OperationName" - -// InputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService6TestCaseOperation1Request method. -// req, resp := client.InputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputService6TestCaseOperation1Input) (req *request.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService6TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService6TestShapeInputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService6TestShapeInputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputService6TestCaseOperation1Input) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) { - req, out := c.InputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService6TestShapeInputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - ListArg []*string `locationName:"ListMemberName" queryName:"ListQueryName" locationNameList:"item" type:"list"` -} - -type InputService6TestShapeInputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService7ProtocolTest client from just a session. -// svc := inputservice7protocoltest.New(mySession) -// -// // Create a InputService7ProtocolTest client with additional configuration -// svc := inputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService7ProtocolTest { - c := p.ClientConfig("inputservice7protocoltest", cfgs...) - return newInputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService7ProtocolTest { - svc := &InputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService7TestCaseOperation1 = "OperationName" - -// InputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService7TestCaseOperation1Request method. -// req, resp := client.InputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputService7TestCaseOperation1Input) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService7TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService7TestShapeInputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService7TestShapeInputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputService7TestCaseOperation1Input) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) { - req, out := c.InputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService7TestShapeInputService7TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - // BlobArg is automatically base64 encoded/decoded by the SDK. - BlobArg []byte `type:"blob"` -} - -type InputService7TestShapeInputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService8ProtocolTest client from just a session. -// svc := inputservice8protocoltest.New(mySession) -// -// // Create a InputService8ProtocolTest client with additional configuration -// svc := inputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService8ProtocolTest { - c := p.ClientConfig("inputservice8protocoltest", cfgs...) - return newInputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService8ProtocolTest { - svc := &InputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService8TestCaseOperation1 = "OperationName" - -// InputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService8TestCaseOperation1Request method. -// req, resp := client.InputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1Request(input *InputService8TestShapeInputService8TestCaseOperation1Input) (req *request.Request, output *InputService8TestShapeInputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService8TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService8TestShapeInputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService8TestShapeInputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *InputService8TestShapeInputService8TestCaseOperation1Input) (*InputService8TestShapeInputService8TestCaseOperation1Output, error) { - req, out := c.InputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService8TestShapeInputService8TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - TimeArg *time.Time `type:"timestamp" timestampFormat:"iso8601"` -} - -type InputService8TestShapeInputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService9ProtocolTest client from just a session. -// svc := inputservice9protocoltest.New(mySession) -// -// // Create a InputService9ProtocolTest client with additional configuration -// svc := inputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService9ProtocolTest { - c := p.ClientConfig("inputservice9protocoltest", cfgs...) - return newInputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService9ProtocolTest { - svc := &InputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService9TestCaseOperation1 = "OperationName" - -// InputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService9TestCaseOperation1Request method. -// req, resp := client.InputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1Request(input *InputService9TestShapeInputShape) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService9TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService9TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService9TestShapeInputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation1Output, error) { - req, out := c.InputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService9TestCaseOperation2 = "OperationName" - -// InputService9TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService9TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService9TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService9TestCaseOperation2Request method. -// req, resp := client.InputService9TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService9ProtocolTest) InputService9TestCaseOperation2Request(input *InputService9TestShapeInputShape) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService9TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService9TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService9TestShapeInputService9TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService9ProtocolTest) InputService9TestCaseOperation2(input *InputService9TestShapeInputShape) (*InputService9TestShapeInputService9TestCaseOperation2Output, error) { - req, out := c.InputService9TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService9TestShapeInputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService9TestShapeInputService9TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService9TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Token *string `type:"string" idempotencyToken:"true"` -} - -// -// Tests begin here -// - -func TestInputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputService1TestCaseOperation1Input{ - Bar: aws.String("val2"), - Foo: aws.String("val1"), - } - req, _ := svc.InputService1TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&Bar=val2&Foo=val1&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService2ProtocolTestStructureWithLocationNameAndQueryNameAppliedToMembersCase1(t *testing.T) { - svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService2TestShapeInputService2TestCaseOperation1Input{ - Bar: aws.String("val2"), - Foo: aws.String("val1"), - Yuck: aws.String("val3"), - } - req, _ := svc.InputService2TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&BarLocationName=val2&Foo=val1&Version=2014-01-01&yuckQueryName=val3`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService3ProtocolTestNestedStructureMembersCase1(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputService3TestCaseOperation1Input{ - StructArg: &InputService3TestShapeStructType{ - ScalarArg: aws.String("foo"), - }, - } - req, _ := svc.InputService3TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&Struct.Scalar=foo&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService4ProtocolTestListTypesCase1(t *testing.T) { - svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService4TestShapeInputService4TestCaseOperation1Input{ - ListArg: []*string{ - aws.String("foo"), - aws.String("bar"), - aws.String("baz"), - }, - } - req, _ := svc.InputService4TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListArg.1=foo&ListArg.2=bar&ListArg.3=baz&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService5ProtocolTestListWithLocationNameAppliedToMemberCase1(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputService5TestCaseOperation1Input{ - ListArg: []*string{ - aws.String("a"), - aws.String("b"), - aws.String("c"), - }, - } - req, _ := svc.InputService5TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListMemberName.1=a&ListMemberName.2=b&ListMemberName.3=c&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService6ProtocolTestListWithLocationNameAndQueryNameCase1(t *testing.T) { - svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService6TestShapeInputService6TestCaseOperation1Input{ - ListArg: []*string{ - aws.String("a"), - aws.String("b"), - aws.String("c"), - }, - } - req, _ := svc.InputService6TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListQueryName.1=a&ListQueryName.2=b&ListQueryName.3=c&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService7ProtocolTestBase64EncodedBlobsCase1(t *testing.T) { - svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService7TestShapeInputService7TestCaseOperation1Input{ - BlobArg: []byte("foo"), - } - req, _ := svc.InputService7TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&BlobArg=Zm9v&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService8ProtocolTestTimestampValuesCase1(t *testing.T) { - svc := NewInputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService8TestShapeInputService8TestCaseOperation1Input{ - TimeArg: aws.Time(time.Unix(1422172800, 0)), - } - req, _ := svc.InputService8TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&TimeArg=2015-01-25T08%3A00%3A00Z&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService9ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) { - svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService9TestShapeInputShape{ - Token: aws.String("abc123"), - } - req, _ := svc.InputService9TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Token=abc123`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService9ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) { - svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService9TestShapeInputShape{} - req, _ := svc.InputService9TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - ec2query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Token=00000000-0000-4000-8000-000000000000`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal.go deleted file mode 100644 index 631e63c0..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal.go +++ /dev/null @@ -1,63 +0,0 @@ -package ec2query - -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/output/ec2.json unmarshal_test.go - -import ( - "encoding/xml" - "io" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" -) - -// UnmarshalHandler is a named request handler for unmarshaling ec2query protocol requests -var UnmarshalHandler = request.NamedHandler{Name: "awssdk.ec2query.Unmarshal", Fn: Unmarshal} - -// UnmarshalMetaHandler is a named request handler for unmarshaling ec2query protocol request metadata -var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.ec2query.UnmarshalMeta", Fn: UnmarshalMeta} - -// UnmarshalErrorHandler is a named request handler for unmarshaling ec2query protocol request errors -var UnmarshalErrorHandler = request.NamedHandler{Name: "awssdk.ec2query.UnmarshalError", Fn: UnmarshalError} - -// Unmarshal unmarshals a response body for the EC2 protocol. -func Unmarshal(r *request.Request) { - defer r.HTTPResponse.Body.Close() - if r.DataFilled() { - decoder := xml.NewDecoder(r.HTTPResponse.Body) - err := xmlutil.UnmarshalXML(r.Data, decoder, "") - if err != nil { - r.Error = awserr.New("SerializationError", "failed decoding EC2 Query response", err) - return - } - } -} - -// UnmarshalMeta unmarshals response headers for the EC2 protocol. -func UnmarshalMeta(r *request.Request) { - // TODO implement unmarshaling of request IDs -} - -type xmlErrorResponse struct { - XMLName xml.Name `xml:"Response"` - Code string `xml:"Errors>Error>Code"` - Message string `xml:"Errors>Error>Message"` - RequestID string `xml:"RequestID"` -} - -// UnmarshalError unmarshals a response error for the EC2 protocol. -func UnmarshalError(r *request.Request) { - defer r.HTTPResponse.Body.Close() - - resp := &xmlErrorResponse{} - err := xml.NewDecoder(r.HTTPResponse.Body).Decode(resp) - if err != nil && err != io.EOF { - r.Error = awserr.New("SerializationError", "failed decoding EC2 Query error response", err) - } else { - r.Error = awserr.NewRequestFailure( - awserr.New(resp.Code, resp.Message, nil), - r.HTTPResponse.StatusCode, - resp.RequestID, - ) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal_test.go deleted file mode 100644 index 2b57eddc..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal_test.go +++ /dev/null @@ -1,1252 +0,0 @@ -package ec2query_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/ec2query" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService1ProtocolTest client from just a session. -// svc := outputservice1protocoltest.New(mySession) -// -// // Create a OutputService1ProtocolTest client with additional configuration -// svc := outputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService1ProtocolTest { - c := p.ClientConfig("outputservice1protocoltest", cfgs...) - return newOutputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService1ProtocolTest { - svc := &OutputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService1TestCaseOperation1 = "OperationName" - -// OutputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService1TestCaseOperation1Request method. -// req, resp := client.OutputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1Request(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (req *request.Request, output *OutputService1TestShapeOutputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService1TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService1TestShapeOutputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService1TestShapeOutputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (*OutputService1TestShapeOutputService1TestCaseOperation1Output, error) { - req, out := c.OutputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Char *string `type:"character"` - - Double *float64 `type:"double"` - - FalseBool *bool `type:"boolean"` - - Float *float64 `type:"float"` - - Long *int64 `type:"long"` - - Num *int64 `locationName:"FooNum" type:"integer"` - - Str *string `type:"string"` - - TrueBool *bool `type:"boolean"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService2ProtocolTest client from just a session. -// svc := outputservice2protocoltest.New(mySession) -// -// // Create a OutputService2ProtocolTest client with additional configuration -// svc := outputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService2ProtocolTest { - c := p.ClientConfig("outputservice2protocoltest", cfgs...) - return newOutputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService2ProtocolTest { - svc := &OutputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService2TestCaseOperation1 = "OperationName" - -// OutputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService2TestCaseOperation1Request method. -// req, resp := client.OutputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1Request(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (req *request.Request, output *OutputService2TestShapeOutputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService2TestShapeOutputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService2TestShapeOutputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (*OutputService2TestShapeOutputService2TestCaseOperation1Output, error) { - req, out := c.OutputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - // Blob is automatically base64 encoded/decoded by the SDK. - Blob []byte `type:"blob"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService3ProtocolTest client from just a session. -// svc := outputservice3protocoltest.New(mySession) -// -// // Create a OutputService3ProtocolTest client with additional configuration -// svc := outputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService3ProtocolTest { - c := p.ClientConfig("outputservice3protocoltest", cfgs...) - return newOutputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService3ProtocolTest { - svc := &OutputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService3TestCaseOperation1 = "OperationName" - -// OutputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService3TestCaseOperation1Request method. -// req, resp := client.OutputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1Request(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (req *request.Request, output *OutputService3TestShapeOutputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService3TestShapeOutputService3TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService3TestShapeOutputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (*OutputService3TestShapeOutputService3TestCaseOperation1Output, error) { - req, out := c.OutputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService4ProtocolTest client from just a session. -// svc := outputservice4protocoltest.New(mySession) -// -// // Create a OutputService4ProtocolTest client with additional configuration -// svc := outputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService4ProtocolTest { - c := p.ClientConfig("outputservice4protocoltest", cfgs...) - return newOutputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService4ProtocolTest { - svc := &OutputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService4TestCaseOperation1 = "OperationName" - -// OutputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService4TestCaseOperation1Request method. -// req, resp := client.OutputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1Request(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (req *request.Request, output *OutputService4TestShapeOutputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService4TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService4TestShapeOutputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService4TestShapeOutputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (*OutputService4TestShapeOutputService4TestCaseOperation1Output, error) { - req, out := c.OutputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `locationNameList:"item" type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService5ProtocolTest client from just a session. -// svc := outputservice5protocoltest.New(mySession) -// -// // Create a OutputService5ProtocolTest client with additional configuration -// svc := outputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService5ProtocolTest { - c := p.ClientConfig("outputservice5protocoltest", cfgs...) - return newOutputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService5ProtocolTest { - svc := &OutputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService5TestCaseOperation1 = "OperationName" - -// OutputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService5TestCaseOperation1Request method. -// req, resp := client.OutputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1Request(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (req *request.Request, output *OutputService5TestShapeOutputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService5TestShapeOutputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService5TestShapeOutputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (*OutputService5TestShapeOutputService5TestCaseOperation1Output, error) { - req, out := c.OutputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService6ProtocolTest client from just a session. -// svc := outputservice6protocoltest.New(mySession) -// -// // Create a OutputService6ProtocolTest client with additional configuration -// svc := outputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService6ProtocolTest { - c := p.ClientConfig("outputservice6protocoltest", cfgs...) - return newOutputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService6ProtocolTest { - svc := &OutputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService6TestCaseOperation1 = "OperationName" - -// OutputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService6TestCaseOperation1Request method. -// req, resp := client.OutputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1Request(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (req *request.Request, output *OutputService6TestShapeOutputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService6TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService6TestShapeOutputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService6TestShapeOutputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (*OutputService6TestShapeOutputService6TestCaseOperation1Output, error) { - req, out := c.OutputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*OutputService6TestShapeStructureType `type:"map"` -} - -type OutputService6TestShapeStructureType struct { - _ struct{} `type:"structure"` - - Foo *string `locationName:"foo" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService7ProtocolTest client from just a session. -// svc := outputservice7protocoltest.New(mySession) -// -// // Create a OutputService7ProtocolTest client with additional configuration -// svc := outputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService7ProtocolTest { - c := p.ClientConfig("outputservice7protocoltest", cfgs...) - return newOutputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService7ProtocolTest { - svc := &OutputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService7TestCaseOperation1 = "OperationName" - -// OutputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService7TestCaseOperation1Request method. -// req, resp := client.OutputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1Request(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (req *request.Request, output *OutputService7TestShapeOutputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService7TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService7TestShapeOutputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService7TestShapeOutputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (*OutputService7TestShapeOutputService7TestCaseOperation1Output, error) { - req, out := c.OutputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*string `type:"map" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService8ProtocolTest client from just a session. -// svc := outputservice8protocoltest.New(mySession) -// -// // Create a OutputService8ProtocolTest client with additional configuration -// svc := outputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService8ProtocolTest { - c := p.ClientConfig("outputservice8protocoltest", cfgs...) - return newOutputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService8ProtocolTest { - svc := &OutputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService8TestCaseOperation1 = "OperationName" - -// OutputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService8TestCaseOperation1Request method. -// req, resp := client.OutputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1Request(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (req *request.Request, output *OutputService8TestShapeOutputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService8TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService8TestShapeOutputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService8TestShapeOutputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (*OutputService8TestShapeOutputService8TestCaseOperation1Output, error) { - req, out := c.OutputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*string `locationNameKey:"foo" locationNameValue:"bar" type:"map" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService9ProtocolTest client from just a session. -// svc := outputservice9protocoltest.New(mySession) -// -// // Create a OutputService9ProtocolTest client with additional configuration -// svc := outputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService9ProtocolTest { - c := p.ClientConfig("outputservice9protocoltest", cfgs...) - return newOutputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService9ProtocolTest { - svc := &OutputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService9TestCaseOperation1 = "OperationName" - -// OutputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService9TestCaseOperation1Request method. -// req, resp := client.OutputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1Request(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (req *request.Request, output *OutputService9TestShapeOutputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService9TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService9TestShapeOutputService9TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService9TestShapeOutputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (*OutputService9TestShapeOutputService9TestCaseOperation1Output, error) { - req, out := c.OutputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Foo *string `type:"string"` -} - -// -// Tests begin here -// - -func TestOutputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewOutputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("myname123falsetrue1.21.3200arequest-id")) - req, out := svc.OutputService1TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.Char) - assert.Equal(t, 1.3, *out.Double) - assert.Equal(t, false, *out.FalseBool) - assert.Equal(t, 1.2, *out.Float) - assert.Equal(t, int64(200), *out.Long) - assert.Equal(t, int64(123), *out.Num) - assert.Equal(t, "myname", *out.Str) - assert.Equal(t, true, *out.TrueBool) - -} - -func TestOutputService2ProtocolTestBlobCase1(t *testing.T) { - svc := NewOutputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("dmFsdWU=requestid")) - req, out := svc.OutputService2TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "value", string(out.Blob)) - -} - -func TestOutputService3ProtocolTestListsCase1(t *testing.T) { - svc := NewOutputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123requestid")) - req, out := svc.OutputService3TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService4ProtocolTestListWithCustomMemberNameCase1(t *testing.T) { - svc := NewOutputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123requestid")) - req, out := svc.OutputService4TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService5ProtocolTestFlattenedListCase1(t *testing.T) { - svc := NewOutputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123requestid")) - req, out := svc.OutputService5TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService6ProtocolTestNormalMapCase1(t *testing.T) { - svc := NewOutputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbamrequestid")) - req, out := svc.OutputService6TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"].Foo) - assert.Equal(t, "bar", *out.Map["qux"].Foo) - -} - -func TestOutputService7ProtocolTestFlattenedMapCase1(t *testing.T) { - svc := NewOutputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbamrequestid")) - req, out := svc.OutputService7TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"]) - assert.Equal(t, "bar", *out.Map["qux"]) - -} - -func TestOutputService8ProtocolTestNamedMapCase1(t *testing.T) { - svc := NewOutputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbamrequestid")) - req, out := svc.OutputService8TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"]) - assert.Equal(t, "bar", *out.Map["qux"]) - -} - -func TestOutputService9ProtocolTestEmptyStringCase1(t *testing.T) { - svc := NewOutputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("requestid")) - req, out := svc.OutputService9TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - ec2query.UnmarshalMeta(req) - ec2query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "", *out.Foo) - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go deleted file mode 100644 index 53831dff..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go +++ /dev/null @@ -1,75 +0,0 @@ -package protocol - -import ( - "crypto/rand" - "fmt" - "reflect" -) - -// RandReader is the random reader the protocol package will use to read -// random bytes from. This is exported for testing, and should not be used. -var RandReader = rand.Reader - -const idempotencyTokenFillTag = `idempotencyToken` - -// CanSetIdempotencyToken returns true if the struct field should be -// automatically populated with a Idempotency token. -// -// Only *string and string type fields that are tagged with idempotencyToken -// which are not already set can be auto filled. -func CanSetIdempotencyToken(v reflect.Value, f reflect.StructField) bool { - switch u := v.Interface().(type) { - // To auto fill an Idempotency token the field must be a string, - // tagged for auto fill, and have a zero value. - case *string: - return u == nil && len(f.Tag.Get(idempotencyTokenFillTag)) != 0 - case string: - return len(u) == 0 && len(f.Tag.Get(idempotencyTokenFillTag)) != 0 - } - - return false -} - -// GetIdempotencyToken returns a randomly generated idempotency token. -func GetIdempotencyToken() string { - b := make([]byte, 16) - RandReader.Read(b) - - return UUIDVersion4(b) -} - -// SetIdempotencyToken will set the value provided with a Idempotency Token. -// Given that the value can be set. Will panic if value is not setable. -func SetIdempotencyToken(v reflect.Value) { - if v.Kind() == reflect.Ptr { - if v.IsNil() && v.CanSet() { - v.Set(reflect.New(v.Type().Elem())) - } - v = v.Elem() - } - v = reflect.Indirect(v) - - if !v.CanSet() { - panic(fmt.Sprintf("unable to set idempotnecy token %v", v)) - } - - b := make([]byte, 16) - _, err := rand.Read(b) - if err != nil { - // TODO handle error - return - } - - v.Set(reflect.ValueOf(UUIDVersion4(b))) -} - -// UUIDVersion4 returns a Version 4 random UUID from the byte slice provided -func UUIDVersion4(u []byte) string { - // https://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_.28random.29 - // 13th character is "4" - u[6] = (u[6] | 0x40) & 0x4F - // 17th character is "8", "9", "a", or "b" - u[8] = (u[8] | 0x80) & 0xBF - - return fmt.Sprintf(`%X-%X-%X-%X-%X`, u[0:4], u[4:6], u[6:8], u[8:10], u[10:]) -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency_test.go deleted file mode 100644 index b6ea2356..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency_test.go +++ /dev/null @@ -1,106 +0,0 @@ -package protocol_test - -import ( - "reflect" - "testing" - - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/stretchr/testify/assert" -) - -func TestCanSetIdempotencyToken(t *testing.T) { - cases := []struct { - CanSet bool - Case interface{} - }{ - { - true, - struct { - Field *string `idempotencyToken:"true"` - }{}, - }, - { - true, - struct { - Field string `idempotencyToken:"true"` - }{}, - }, - { - false, - struct { - Field *string `idempotencyToken:"true"` - }{Field: new(string)}, - }, - { - false, - struct { - Field string `idempotencyToken:"true"` - }{Field: "value"}, - }, - { - false, - struct { - Field *int `idempotencyToken:"true"` - }{}, - }, - { - false, - struct { - Field *string - }{}, - }, - } - - for i, c := range cases { - v := reflect.Indirect(reflect.ValueOf(c.Case)) - ty := v.Type() - canSet := protocol.CanSetIdempotencyToken(v.Field(0), ty.Field(0)) - assert.Equal(t, c.CanSet, canSet, "Expect case %d can set to match", i) - } -} - -func TestSetIdempotencyToken(t *testing.T) { - cases := []struct { - Case interface{} - }{ - { - &struct { - Field *string `idempotencyToken:"true"` - }{}, - }, - { - &struct { - Field string `idempotencyToken:"true"` - }{}, - }, - { - &struct { - Field *string `idempotencyToken:"true"` - }{Field: new(string)}, - }, - { - &struct { - Field string `idempotencyToken:"true"` - }{Field: ""}, - }, - } - - for i, c := range cases { - v := reflect.Indirect(reflect.ValueOf(c.Case)) - - protocol.SetIdempotencyToken(v.Field(0)) - assert.NotEmpty(t, v.Field(0).Interface(), "Expect case %d to be set", i) - } -} - -func TestUUIDVersion4(t *testing.T) { - uuid := protocol.UUIDVersion4(make([]byte, 16)) - assert.Equal(t, `00000000-0000-4000-8000-000000000000`, uuid) - - b := make([]byte, 16) - for i := 0; i < len(b); i++ { - b[i] = 1 - } - uuid = protocol.UUIDVersion4(b) - assert.Equal(t, `01010101-0101-4101-8101-010101010101`, uuid) -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go deleted file mode 100644 index 4504efe2..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go +++ /dev/null @@ -1,254 +0,0 @@ -// Package jsonutil provides JSON serialization of AWS requests and responses. -package jsonutil - -import ( - "bytes" - "encoding/base64" - "fmt" - "reflect" - "sort" - "strconv" - "time" - - "github.com/aws/aws-sdk-go/private/protocol" -) - -var timeType = reflect.ValueOf(time.Time{}).Type() -var byteSliceType = reflect.ValueOf([]byte{}).Type() - -// BuildJSON builds a JSON string for a given object v. -func BuildJSON(v interface{}) ([]byte, error) { - var buf bytes.Buffer - - err := buildAny(reflect.ValueOf(v), &buf, "") - return buf.Bytes(), err -} - -func buildAny(value reflect.Value, buf *bytes.Buffer, tag reflect.StructTag) error { - value = reflect.Indirect(value) - if !value.IsValid() { - return nil - } - - vtype := value.Type() - - t := tag.Get("type") - if t == "" { - switch vtype.Kind() { - case reflect.Struct: - // also it can't be a time object - if value.Type() != timeType { - t = "structure" - } - case reflect.Slice: - // also it can't be a byte slice - if _, ok := value.Interface().([]byte); !ok { - t = "list" - } - case reflect.Map: - t = "map" - } - } - - switch t { - case "structure": - if field, ok := vtype.FieldByName("_"); ok { - tag = field.Tag - } - return buildStruct(value, buf, tag) - case "list": - return buildList(value, buf, tag) - case "map": - return buildMap(value, buf, tag) - default: - return buildScalar(value, buf, tag) - } -} - -func buildStruct(value reflect.Value, buf *bytes.Buffer, tag reflect.StructTag) error { - if !value.IsValid() { - return nil - } - - // unwrap payloads - if payload := tag.Get("payload"); payload != "" { - field, _ := value.Type().FieldByName(payload) - tag = field.Tag - value = elemOf(value.FieldByName(payload)) - - if !value.IsValid() { - return nil - } - } - - buf.WriteByte('{') - - t := value.Type() - first := true - for i := 0; i < t.NumField(); i++ { - member := value.Field(i) - field := t.Field(i) - - if field.PkgPath != "" { - continue // ignore unexported fields - } - if field.Tag.Get("json") == "-" { - continue - } - if field.Tag.Get("location") != "" { - continue // ignore non-body elements - } - - if protocol.CanSetIdempotencyToken(member, field) { - token := protocol.GetIdempotencyToken() - member = reflect.ValueOf(&token) - } - - if (member.Kind() == reflect.Ptr || member.Kind() == reflect.Slice || member.Kind() == reflect.Map) && member.IsNil() { - continue // ignore unset fields - } - - if first { - first = false - } else { - buf.WriteByte(',') - } - - // figure out what this field is called - name := field.Name - if locName := field.Tag.Get("locationName"); locName != "" { - name = locName - } - - writeString(name, buf) - buf.WriteString(`:`) - - err := buildAny(member, buf, field.Tag) - if err != nil { - return err - } - - } - - buf.WriteString("}") - - return nil -} - -func buildList(value reflect.Value, buf *bytes.Buffer, tag reflect.StructTag) error { - buf.WriteString("[") - - for i := 0; i < value.Len(); i++ { - buildAny(value.Index(i), buf, "") - - if i < value.Len()-1 { - buf.WriteString(",") - } - } - - buf.WriteString("]") - - return nil -} - -type sortedValues []reflect.Value - -func (sv sortedValues) Len() int { return len(sv) } -func (sv sortedValues) Swap(i, j int) { sv[i], sv[j] = sv[j], sv[i] } -func (sv sortedValues) Less(i, j int) bool { return sv[i].String() < sv[j].String() } - -func buildMap(value reflect.Value, buf *bytes.Buffer, tag reflect.StructTag) error { - buf.WriteString("{") - - sv := sortedValues(value.MapKeys()) - sort.Sort(sv) - - for i, k := range sv { - if i > 0 { - buf.WriteByte(',') - } - - writeString(k.String(), buf) - buf.WriteString(`:`) - - buildAny(value.MapIndex(k), buf, "") - } - - buf.WriteString("}") - - return nil -} - -func buildScalar(value reflect.Value, buf *bytes.Buffer, tag reflect.StructTag) error { - switch value.Kind() { - case reflect.String: - writeString(value.String(), buf) - case reflect.Bool: - buf.WriteString(strconv.FormatBool(value.Bool())) - case reflect.Int64: - buf.WriteString(strconv.FormatInt(value.Int(), 10)) - case reflect.Float64: - buf.WriteString(strconv.FormatFloat(value.Float(), 'f', -1, 64)) - default: - switch value.Type() { - case timeType: - converted := value.Interface().(time.Time) - buf.WriteString(strconv.FormatInt(converted.UTC().Unix(), 10)) - case byteSliceType: - if !value.IsNil() { - converted := value.Interface().([]byte) - buf.WriteByte('"') - if len(converted) < 1024 { - // for small buffers, using Encode directly is much faster. - dst := make([]byte, base64.StdEncoding.EncodedLen(len(converted))) - base64.StdEncoding.Encode(dst, converted) - buf.Write(dst) - } else { - // for large buffers, avoid unnecessary extra temporary - // buffer space. - enc := base64.NewEncoder(base64.StdEncoding, buf) - enc.Write(converted) - enc.Close() - } - buf.WriteByte('"') - } - default: - return fmt.Errorf("unsupported JSON value %v (%s)", value.Interface(), value.Type()) - } - } - return nil -} - -func writeString(s string, buf *bytes.Buffer) { - buf.WriteByte('"') - for _, r := range s { - if r == '"' { - buf.WriteString(`\"`) - } else if r == '\\' { - buf.WriteString(`\\`) - } else if r == '\b' { - buf.WriteString(`\b`) - } else if r == '\f' { - buf.WriteString(`\f`) - } else if r == '\r' { - buf.WriteString(`\r`) - } else if r == '\t' { - buf.WriteString(`\t`) - } else if r == '\n' { - buf.WriteString(`\n`) - } else if r < 32 { - fmt.Fprintf(buf, "\\u%0.4x", r) - } else { - buf.WriteRune(r) - } - } - buf.WriteByte('"') -} - -// Returns the reflection element of a value, if it is a pointer. -func elemOf(value reflect.Value) reflect.Value { - for value.Kind() == reflect.Ptr { - value = value.Elem() - } - return value -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build_test.go deleted file mode 100644 index cb9cc458..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build_test.go +++ /dev/null @@ -1,100 +0,0 @@ -package jsonutil_test - -import ( - "encoding/json" - "testing" - "time" - - "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil" - "github.com/stretchr/testify/assert" -) - -func S(s string) *string { - return &s -} - -func D(s int64) *int64 { - return &s -} - -func F(s float64) *float64 { - return &s -} - -func T(s time.Time) *time.Time { - return &s -} - -type J struct { - S *string - SS []string - D *int64 - F *float64 - T *time.Time -} - -var jsonTests = []struct { - in interface{} - out string - err string -}{ - { - J{}, - `{}`, - ``, - }, - { - J{ - S: S("str"), - SS: []string{"A", "B", "C"}, - D: D(123), - F: F(4.56), - T: T(time.Unix(987, 0)), - }, - `{"S":"str","SS":["A","B","C"],"D":123,"F":4.56,"T":987}`, - ``, - }, - { - J{ - S: S(`"''"`), - }, - `{"S":"\"''\""}`, - ``, - }, - { - J{ - S: S("\x00føø\u00FF\n\\\"\r\t\b\f"), - }, - `{"S":"\u0000føøÿ\n\\\"\r\t\b\f"}`, - ``, - }, -} - -func TestBuildJSON(t *testing.T) { - for _, test := range jsonTests { - out, err := jsonutil.BuildJSON(test.in) - if test.err != "" { - assert.Error(t, err) - assert.Contains(t, err.Error(), test.err) - } else { - assert.NoError(t, err) - assert.Equal(t, string(out), test.out) - } - } -} - -func BenchmarkBuildJSON(b *testing.B) { - for i := 0; i < b.N; i++ { - for _, test := range jsonTests { - jsonutil.BuildJSON(test.in) - } - } -} - -func BenchmarkStdlibJSON(b *testing.B) { - for i := 0; i < b.N; i++ { - for _, test := range jsonTests { - json.Marshal(test.in) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go deleted file mode 100644 index fea53561..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go +++ /dev/null @@ -1,213 +0,0 @@ -package jsonutil - -import ( - "encoding/base64" - "encoding/json" - "fmt" - "io" - "io/ioutil" - "reflect" - "time" -) - -// UnmarshalJSON reads a stream and unmarshals the results in object v. -func UnmarshalJSON(v interface{}, stream io.Reader) error { - var out interface{} - - b, err := ioutil.ReadAll(stream) - if err != nil { - return err - } - - if len(b) == 0 { - return nil - } - - if err := json.Unmarshal(b, &out); err != nil { - return err - } - - return unmarshalAny(reflect.ValueOf(v), out, "") -} - -func unmarshalAny(value reflect.Value, data interface{}, tag reflect.StructTag) error { - vtype := value.Type() - if vtype.Kind() == reflect.Ptr { - vtype = vtype.Elem() // check kind of actual element type - } - - t := tag.Get("type") - if t == "" { - switch vtype.Kind() { - case reflect.Struct: - // also it can't be a time object - if _, ok := value.Interface().(*time.Time); !ok { - t = "structure" - } - case reflect.Slice: - // also it can't be a byte slice - if _, ok := value.Interface().([]byte); !ok { - t = "list" - } - case reflect.Map: - t = "map" - } - } - - switch t { - case "structure": - if field, ok := vtype.FieldByName("_"); ok { - tag = field.Tag - } - return unmarshalStruct(value, data, tag) - case "list": - return unmarshalList(value, data, tag) - case "map": - return unmarshalMap(value, data, tag) - default: - return unmarshalScalar(value, data, tag) - } -} - -func unmarshalStruct(value reflect.Value, data interface{}, tag reflect.StructTag) error { - if data == nil { - return nil - } - mapData, ok := data.(map[string]interface{}) - if !ok { - return fmt.Errorf("JSON value is not a structure (%#v)", data) - } - - t := value.Type() - if value.Kind() == reflect.Ptr { - if value.IsNil() { // create the structure if it's nil - s := reflect.New(value.Type().Elem()) - value.Set(s) - value = s - } - - value = value.Elem() - t = t.Elem() - } - - // unwrap any payloads - if payload := tag.Get("payload"); payload != "" { - field, _ := t.FieldByName(payload) - return unmarshalAny(value.FieldByName(payload), data, field.Tag) - } - - for i := 0; i < t.NumField(); i++ { - field := t.Field(i) - if field.PkgPath != "" { - continue // ignore unexported fields - } - - // figure out what this field is called - name := field.Name - if locName := field.Tag.Get("locationName"); locName != "" { - name = locName - } - - member := value.FieldByIndex(field.Index) - err := unmarshalAny(member, mapData[name], field.Tag) - if err != nil { - return err - } - } - return nil -} - -func unmarshalList(value reflect.Value, data interface{}, tag reflect.StructTag) error { - if data == nil { - return nil - } - listData, ok := data.([]interface{}) - if !ok { - return fmt.Errorf("JSON value is not a list (%#v)", data) - } - - if value.IsNil() { - l := len(listData) - value.Set(reflect.MakeSlice(value.Type(), l, l)) - } - - for i, c := range listData { - err := unmarshalAny(value.Index(i), c, "") - if err != nil { - return err - } - } - - return nil -} - -func unmarshalMap(value reflect.Value, data interface{}, tag reflect.StructTag) error { - if data == nil { - return nil - } - mapData, ok := data.(map[string]interface{}) - if !ok { - return fmt.Errorf("JSON value is not a map (%#v)", data) - } - - if value.IsNil() { - value.Set(reflect.MakeMap(value.Type())) - } - - for k, v := range mapData { - kvalue := reflect.ValueOf(k) - vvalue := reflect.New(value.Type().Elem()).Elem() - - unmarshalAny(vvalue, v, "") - value.SetMapIndex(kvalue, vvalue) - } - - return nil -} - -func unmarshalScalar(value reflect.Value, data interface{}, tag reflect.StructTag) error { - errf := func() error { - return fmt.Errorf("unsupported value: %v (%s)", value.Interface(), value.Type()) - } - - switch d := data.(type) { - case nil: - return nil // nothing to do here - case string: - switch value.Interface().(type) { - case *string: - value.Set(reflect.ValueOf(&d)) - case []byte: - b, err := base64.StdEncoding.DecodeString(d) - if err != nil { - return err - } - value.Set(reflect.ValueOf(b)) - default: - return errf() - } - case float64: - switch value.Interface().(type) { - case *int64: - di := int64(d) - value.Set(reflect.ValueOf(&di)) - case *float64: - value.Set(reflect.ValueOf(&d)) - case *time.Time: - t := time.Unix(int64(d), 0).UTC() - value.Set(reflect.ValueOf(&t)) - default: - return errf() - } - case bool: - switch value.Interface().(type) { - case *bool: - value.Set(reflect.ValueOf(&d)) - default: - return errf() - } - default: - return fmt.Errorf("unsupported JSON value (%v)", data) - } - return nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_bench_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_bench_test.go deleted file mode 100644 index 563caa05..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_bench_test.go +++ /dev/null @@ -1,71 +0,0 @@ -// +build bench - -package jsonrpc_test - -import ( - "bytes" - "encoding/json" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" - "github.com/aws/aws-sdk-go/service/dynamodb" - "github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute" -) - -func BenchmarkJSONRPCBuild_Simple_dynamodbPutItem(b *testing.B) { - svc := awstesting.NewClient() - - params := getDynamodbPutItemParams(b) - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(&request.Operation{Name: "Operation"}, params, nil) - jsonrpc.Build(r) - if r.Error != nil { - b.Fatal("Unexpected error", r.Error) - } - } -} - -func BenchmarkJSONUtilBuild_Simple_dynamodbPutItem(b *testing.B) { - svc := awstesting.NewClient() - - params := getDynamodbPutItemParams(b) - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(&request.Operation{Name: "Operation"}, params, nil) - _, err := jsonutil.BuildJSON(r.Params) - if err != nil { - b.Fatal("Unexpected error", err) - } - } -} - -func BenchmarkEncodingJSONMarshal_Simple_dynamodbPutItem(b *testing.B) { - params := getDynamodbPutItemParams(b) - - for i := 0; i < b.N; i++ { - buf := &bytes.Buffer{} - encoder := json.NewEncoder(buf) - if err := encoder.Encode(params); err != nil { - b.Fatal("Unexpected error", err) - } - } -} - -func getDynamodbPutItemParams(b *testing.B) *dynamodb.PutItemInput { - av, err := dynamodbattribute.ConvertToMap(struct { - Key string - Data string - }{Key: "MyKey", Data: "MyData"}) - if err != nil { - b.Fatal("benchPutItem, expect no ConvertToMap errors", err) - } - return &dynamodb.PutItemInput{ - Item: av, - TableName: aws.String("tablename"), - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_test.go deleted file mode 100644 index 42d9ab0e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_test.go +++ /dev/null @@ -1,1637 +0,0 @@ -package jsonrpc_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService1ProtocolTest client from just a session. -// svc := inputservice1protocoltest.New(mySession) -// -// // Create a InputService1ProtocolTest client with additional configuration -// svc := inputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService1ProtocolTest { - c := p.ClientConfig("inputservice1protocoltest", cfgs...) - return newInputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService1ProtocolTest { - svc := &InputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "1.1", - TargetPrefix: "com.amazonaws.foo", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService1TestCaseOperation1 = "OperationName" - -// InputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation1Request method. -// req, resp := client.InputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputService1TestCaseOperation1Input) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService1TestShapeInputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputService1TestCaseOperation1Input) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) { - req, out := c.InputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService1TestShapeInputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Name *string `type:"string"` -} - -type InputService1TestShapeInputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService2ProtocolTest client from just a session. -// svc := inputservice2protocoltest.New(mySession) -// -// // Create a InputService2ProtocolTest client with additional configuration -// svc := inputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService2ProtocolTest { - c := p.ClientConfig("inputservice2protocoltest", cfgs...) - return newInputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService2ProtocolTest { - svc := &InputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "1.1", - TargetPrefix: "com.amazonaws.foo", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService2TestCaseOperation1 = "OperationName" - -// InputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService2TestCaseOperation1Request method. -// req, resp := client.InputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputService2TestCaseOperation1Input) (req *request.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService2TestShapeInputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService2TestShapeInputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputService2TestCaseOperation1Input) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) { - req, out := c.InputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService2TestShapeInputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - TimeArg *time.Time `type:"timestamp" timestampFormat:"unix"` -} - -type InputService2TestShapeInputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService3ProtocolTest client from just a session. -// svc := inputservice3protocoltest.New(mySession) -// -// // Create a InputService3ProtocolTest client with additional configuration -// svc := inputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService3ProtocolTest { - c := p.ClientConfig("inputservice3protocoltest", cfgs...) - return newInputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService3ProtocolTest { - svc := &InputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "1.1", - TargetPrefix: "com.amazonaws.foo", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService3TestCaseOperation1 = "OperationName" - -// InputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation1Request method. -// req, resp := client.InputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService3TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) { - req, out := c.InputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService3TestCaseOperation2 = "OperationName" - -// InputService3TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation2Request method. -// req, resp := client.InputService3TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation2Request(input *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &InputService3TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation2Output, error) { - req, out := c.InputService3TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService3TestShapeInputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService3TestShapeInputService3TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService3TestShapeInputShape struct { - _ struct{} `type:"structure"` - - // BlobArg is automatically base64 encoded/decoded by the SDK. - BlobArg []byte `type:"blob"` - - BlobMap map[string][]byte `type:"map"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService4ProtocolTest client from just a session. -// svc := inputservice4protocoltest.New(mySession) -// -// // Create a InputService4ProtocolTest client with additional configuration -// svc := inputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService4ProtocolTest { - c := p.ClientConfig("inputservice4protocoltest", cfgs...) - return newInputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService4ProtocolTest { - svc := &InputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "1.1", - TargetPrefix: "com.amazonaws.foo", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService4TestCaseOperation1 = "OperationName" - -// InputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService4TestCaseOperation1Request method. -// req, resp := client.InputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputService4TestCaseOperation1Input) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService4TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService4TestShapeInputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService4TestShapeInputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputService4TestCaseOperation1Input) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) { - req, out := c.InputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService4TestShapeInputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - ListParam [][]byte `type:"list"` -} - -type InputService4TestShapeInputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService5ProtocolTest client from just a session. -// svc := inputservice5protocoltest.New(mySession) -// -// // Create a InputService5ProtocolTest client with additional configuration -// svc := inputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService5ProtocolTest { - c := p.ClientConfig("inputservice5protocoltest", cfgs...) - return newInputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService5ProtocolTest { - svc := &InputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "1.1", - TargetPrefix: "com.amazonaws.foo", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService5TestCaseOperation1 = "OperationName" - -// InputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation1Request method. -// req, resp := client.InputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) { - req, out := c.InputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService5TestCaseOperation2 = "OperationName" - -// InputService5TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation2Request method. -// req, resp := client.InputService5TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation2Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation2(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation2Output, error) { - req, out := c.InputService5TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -const opInputService5TestCaseOperation3 = "OperationName" - -// InputService5TestCaseOperation3Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation3 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation3 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation3Request method. -// req, resp := client.InputService5TestCaseOperation3Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation3Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation3Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation3, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation3Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation3(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation3Output, error) { - req, out := c.InputService5TestCaseOperation3Request(input) - err := req.Send() - return out, err -} - -const opInputService5TestCaseOperation4 = "OperationName" - -// InputService5TestCaseOperation4Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation4 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation4 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation4Request method. -// req, resp := client.InputService5TestCaseOperation4Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation4Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation4Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation4, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation4Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation4(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation4Output, error) { - req, out := c.InputService5TestCaseOperation4Request(input) - err := req.Send() - return out, err -} - -const opInputService5TestCaseOperation5 = "OperationName" - -// InputService5TestCaseOperation5Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation5 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation5 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation5Request method. -// req, resp := client.InputService5TestCaseOperation5Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation5Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation5Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation5, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation5Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation5(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation5Output, error) { - req, out := c.InputService5TestCaseOperation5Request(input) - err := req.Send() - return out, err -} - -const opInputService5TestCaseOperation6 = "OperationName" - -// InputService5TestCaseOperation6Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation6 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation6 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation6Request method. -// req, resp := client.InputService5TestCaseOperation6Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation6Request(input *InputService5TestShapeInputShape) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation6Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation6, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation6Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation6(input *InputService5TestShapeInputShape) (*InputService5TestShapeInputService5TestCaseOperation6Output, error) { - req, out := c.InputService5TestCaseOperation6Request(input) - err := req.Send() - return out, err -} - -type InputService5TestShapeInputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService5TestShapeInputService5TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService5TestShapeInputService5TestCaseOperation3Output struct { - _ struct{} `type:"structure"` -} - -type InputService5TestShapeInputService5TestCaseOperation4Output struct { - _ struct{} `type:"structure"` -} - -type InputService5TestShapeInputService5TestCaseOperation5Output struct { - _ struct{} `type:"structure"` -} - -type InputService5TestShapeInputService5TestCaseOperation6Output struct { - _ struct{} `type:"structure"` -} - -type InputService5TestShapeInputShape struct { - _ struct{} `type:"structure"` - - RecursiveStruct *InputService5TestShapeRecursiveStructType `type:"structure"` -} - -type InputService5TestShapeRecursiveStructType struct { - _ struct{} `type:"structure"` - - NoRecurse *string `type:"string"` - - RecursiveList []*InputService5TestShapeRecursiveStructType `type:"list"` - - RecursiveMap map[string]*InputService5TestShapeRecursiveStructType `type:"map"` - - RecursiveStruct *InputService5TestShapeRecursiveStructType `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService6ProtocolTest client from just a session. -// svc := inputservice6protocoltest.New(mySession) -// -// // Create a InputService6ProtocolTest client with additional configuration -// svc := inputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService6ProtocolTest { - c := p.ClientConfig("inputservice6protocoltest", cfgs...) - return newInputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService6ProtocolTest { - svc := &InputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "1.1", - TargetPrefix: "com.amazonaws.foo", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService6TestCaseOperation1 = "OperationName" - -// InputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService6TestCaseOperation1Request method. -// req, resp := client.InputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputService6TestCaseOperation1Input) (req *request.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService6TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService6TestShapeInputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService6TestShapeInputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputService6TestCaseOperation1Input) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) { - req, out := c.InputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService6TestShapeInputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Map map[string]*string `type:"map"` -} - -type InputService6TestShapeInputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService7ProtocolTest client from just a session. -// svc := inputservice7protocoltest.New(mySession) -// -// // Create a InputService7ProtocolTest client with additional configuration -// svc := inputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService7ProtocolTest { - c := p.ClientConfig("inputservice7protocoltest", cfgs...) - return newInputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService7ProtocolTest { - svc := &InputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - JSONVersion: "", - TargetPrefix: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService7TestCaseOperation1 = "OperationName" - -// InputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService7TestCaseOperation1Request method. -// req, resp := client.InputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputShape) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService7TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService7TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService7TestShapeInputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputShape) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) { - req, out := c.InputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService7TestCaseOperation2 = "OperationName" - -// InputService7TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService7TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService7TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService7TestCaseOperation2Request method. -// req, resp := client.InputService7TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService7ProtocolTest) InputService7TestCaseOperation2Request(input *InputService7TestShapeInputShape) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService7TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService7TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService7TestShapeInputService7TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService7ProtocolTest) InputService7TestCaseOperation2(input *InputService7TestShapeInputShape) (*InputService7TestShapeInputService7TestCaseOperation2Output, error) { - req, out := c.InputService7TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService7TestShapeInputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService7TestShapeInputService7TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService7TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Token *string `type:"string" idempotencyToken:"true"` -} - -// -// Tests begin here -// - -func TestInputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputService1TestCaseOperation1Input{ - Name: aws.String("myname"), - } - req, _ := svc.InputService1TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Name":"myname"}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService2ProtocolTestTimestampValuesCase1(t *testing.T) { - svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService2TestShapeInputService2TestCaseOperation1Input{ - TimeArg: aws.Time(time.Unix(1422172800, 0)), - } - req, _ := svc.InputService2TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"TimeArg":1422172800}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService3ProtocolTestBase64EncodedBlobsCase1(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputShape{ - BlobArg: []byte("foo"), - } - req, _ := svc.InputService3TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"BlobArg":"Zm9v"}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService3ProtocolTestBase64EncodedBlobsCase2(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputShape{ - BlobMap: map[string][]byte{ - "key1": []byte("foo"), - "key2": []byte("bar"), - }, - } - req, _ := svc.InputService3TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"BlobMap":{"key1":"Zm9v","key2":"YmFy"}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService4ProtocolTestNestedBlobsCase1(t *testing.T) { - svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService4TestShapeInputService4TestCaseOperation1Input{ - ListParam: [][]byte{ - []byte("foo"), - []byte("bar"), - }, - } - req, _ := svc.InputService4TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"ListParam":["Zm9v","YmFy"]}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService5ProtocolTestRecursiveShapesCase1(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputShape{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - } - req, _ := svc.InputService5TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"NoRecurse":"foo"}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService5ProtocolTestRecursiveShapesCase2(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputShape{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - } - req, _ := svc.InputService5TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveStruct":{"NoRecurse":"foo"}}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService5ProtocolTestRecursiveShapesCase3(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputShape{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - }, - }, - } - req, _ := svc.InputService5TestCaseOperation3Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveStruct":{"RecursiveStruct":{"RecursiveStruct":{"NoRecurse":"foo"}}}}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService5ProtocolTestRecursiveShapesCase4(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputShape{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - RecursiveList: []*InputService5TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - NoRecurse: aws.String("bar"), - }, - }, - }, - } - req, _ := svc.InputService5TestCaseOperation4Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveList":[{"NoRecurse":"foo"},{"NoRecurse":"bar"}]}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService5ProtocolTestRecursiveShapesCase5(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputShape{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - RecursiveList: []*InputService5TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - NoRecurse: aws.String("bar"), - }, - }, - }, - }, - } - req, _ := svc.InputService5TestCaseOperation5Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveList":[{"NoRecurse":"foo"},{"RecursiveStruct":{"NoRecurse":"bar"}}]}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService5ProtocolTestRecursiveShapesCase6(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputShape{ - RecursiveStruct: &InputService5TestShapeRecursiveStructType{ - RecursiveMap: map[string]*InputService5TestShapeRecursiveStructType{ - "bar": { - NoRecurse: aws.String("bar"), - }, - "foo": { - NoRecurse: aws.String("foo"), - }, - }, - }, - } - req, _ := svc.InputService5TestCaseOperation6Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveMap":{"foo":{"NoRecurse":"foo"},"bar":{"NoRecurse":"bar"}}}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService6ProtocolTestEmptyMapsCase1(t *testing.T) { - svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService6TestShapeInputService6TestCaseOperation1Input{ - Map: map[string]*string{}, - } - req, _ := svc.InputService6TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Map":{}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "application/x-amz-json-1.1", r.Header.Get("Content-Type")) - assert.Equal(t, "com.amazonaws.foo.OperationName", r.Header.Get("X-Amz-Target")) - -} - -func TestInputService7ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) { - svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService7TestShapeInputShape{ - Token: aws.String("abc123"), - } - req, _ := svc.InputService7TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Token":"abc123"}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService7ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) { - svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService7TestShapeInputShape{} - req, _ := svc.InputService7TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - jsonrpc.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Token":"00000000-0000-4000-8000-000000000000"}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go deleted file mode 100644 index d5490cd7..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go +++ /dev/null @@ -1,111 +0,0 @@ -// Package jsonrpc provides JSON RPC utilities for serialization of AWS -// requests and responses. -package jsonrpc - -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/input/json.json build_test.go -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/output/json.json unmarshal_test.go - -import ( - "encoding/json" - "io/ioutil" - "strings" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/json/jsonutil" - "github.com/aws/aws-sdk-go/private/protocol/rest" -) - -var emptyJSON = []byte("{}") - -// BuildHandler is a named request handler for building jsonrpc protocol requests -var BuildHandler = request.NamedHandler{Name: "awssdk.jsonrpc.Build", Fn: Build} - -// UnmarshalHandler is a named request handler for unmarshaling jsonrpc protocol requests -var UnmarshalHandler = request.NamedHandler{Name: "awssdk.jsonrpc.Unmarshal", Fn: Unmarshal} - -// UnmarshalMetaHandler is a named request handler for unmarshaling jsonrpc protocol request metadata -var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.jsonrpc.UnmarshalMeta", Fn: UnmarshalMeta} - -// UnmarshalErrorHandler is a named request handler for unmarshaling jsonrpc protocol request errors -var UnmarshalErrorHandler = request.NamedHandler{Name: "awssdk.jsonrpc.UnmarshalError", Fn: UnmarshalError} - -// Build builds a JSON payload for a JSON RPC request. -func Build(req *request.Request) { - var buf []byte - var err error - if req.ParamsFilled() { - buf, err = jsonutil.BuildJSON(req.Params) - if err != nil { - req.Error = awserr.New("SerializationError", "failed encoding JSON RPC request", err) - return - } - } else { - buf = emptyJSON - } - - if req.ClientInfo.TargetPrefix != "" || string(buf) != "{}" { - req.SetBufferBody(buf) - } - - if req.ClientInfo.TargetPrefix != "" { - target := req.ClientInfo.TargetPrefix + "." + req.Operation.Name - req.HTTPRequest.Header.Add("X-Amz-Target", target) - } - if req.ClientInfo.JSONVersion != "" { - jsonVersion := req.ClientInfo.JSONVersion - req.HTTPRequest.Header.Add("Content-Type", "application/x-amz-json-"+jsonVersion) - } -} - -// Unmarshal unmarshals a response for a JSON RPC service. -func Unmarshal(req *request.Request) { - defer req.HTTPResponse.Body.Close() - if req.DataFilled() { - err := jsonutil.UnmarshalJSON(req.Data, req.HTTPResponse.Body) - if err != nil { - req.Error = awserr.New("SerializationError", "failed decoding JSON RPC response", err) - } - } - return -} - -// UnmarshalMeta unmarshals headers from a response for a JSON RPC service. -func UnmarshalMeta(req *request.Request) { - rest.UnmarshalMeta(req) -} - -// UnmarshalError unmarshals an error response for a JSON RPC service. -func UnmarshalError(req *request.Request) { - defer req.HTTPResponse.Body.Close() - bodyBytes, err := ioutil.ReadAll(req.HTTPResponse.Body) - if err != nil { - req.Error = awserr.New("SerializationError", "failed reading JSON RPC error response", err) - return - } - if len(bodyBytes) == 0 { - req.Error = awserr.NewRequestFailure( - awserr.New("SerializationError", req.HTTPResponse.Status, nil), - req.HTTPResponse.StatusCode, - "", - ) - return - } - var jsonErr jsonErrorResponse - if err := json.Unmarshal(bodyBytes, &jsonErr); err != nil { - req.Error = awserr.New("SerializationError", "failed decoding JSON RPC error response", err) - return - } - - codes := strings.SplitN(jsonErr.Code, "#", 2) - req.Error = awserr.NewRequestFailure( - awserr.New(codes[len(codes)-1], jsonErr.Message, nil), - req.HTTPResponse.StatusCode, - req.RequestID, - ) -} - -type jsonErrorResponse struct { - Code string `json:"__type"` - Message string `json:"message"` -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_test.go deleted file mode 100644 index e1fcac8b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_test.go +++ /dev/null @@ -1,967 +0,0 @@ -package jsonrpc_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService1ProtocolTest client from just a session. -// svc := outputservice1protocoltest.New(mySession) -// -// // Create a OutputService1ProtocolTest client with additional configuration -// svc := outputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService1ProtocolTest { - c := p.ClientConfig("outputservice1protocoltest", cfgs...) - return newOutputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService1ProtocolTest { - svc := &OutputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "", - TargetPrefix: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService1TestCaseOperation1 = "OperationName" - -// OutputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService1TestCaseOperation1Request method. -// req, resp := client.OutputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1Request(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (req *request.Request, output *OutputService1TestShapeOutputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService1TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService1TestShapeOutputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService1TestShapeOutputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (*OutputService1TestShapeOutputService1TestCaseOperation1Output, error) { - req, out := c.OutputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Char *string `type:"character"` - - Double *float64 `type:"double"` - - FalseBool *bool `type:"boolean"` - - Float *float64 `type:"float"` - - Long *int64 `type:"long"` - - Num *int64 `type:"integer"` - - Str *string `type:"string"` - - TrueBool *bool `type:"boolean"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService2ProtocolTest client from just a session. -// svc := outputservice2protocoltest.New(mySession) -// -// // Create a OutputService2ProtocolTest client with additional configuration -// svc := outputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService2ProtocolTest { - c := p.ClientConfig("outputservice2protocoltest", cfgs...) - return newOutputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService2ProtocolTest { - svc := &OutputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "", - TargetPrefix: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService2TestCaseOperation1 = "OperationName" - -// OutputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService2TestCaseOperation1Request method. -// req, resp := client.OutputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1Request(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (req *request.Request, output *OutputService2TestShapeOutputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService2TestShapeOutputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService2TestShapeOutputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (*OutputService2TestShapeOutputService2TestCaseOperation1Output, error) { - req, out := c.OutputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService2TestShapeBlobContainer struct { - _ struct{} `type:"structure"` - - // Foo is automatically base64 encoded/decoded by the SDK. - Foo []byte `locationName:"foo" type:"blob"` -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - // BlobMember is automatically base64 encoded/decoded by the SDK. - BlobMember []byte `type:"blob"` - - StructMember *OutputService2TestShapeBlobContainer `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService3ProtocolTest client from just a session. -// svc := outputservice3protocoltest.New(mySession) -// -// // Create a OutputService3ProtocolTest client with additional configuration -// svc := outputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService3ProtocolTest { - c := p.ClientConfig("outputservice3protocoltest", cfgs...) - return newOutputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService3ProtocolTest { - svc := &OutputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "", - TargetPrefix: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService3TestCaseOperation1 = "OperationName" - -// OutputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService3TestCaseOperation1Request method. -// req, resp := client.OutputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1Request(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (req *request.Request, output *OutputService3TestShapeOutputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService3TestShapeOutputService3TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService3TestShapeOutputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (*OutputService3TestShapeOutputService3TestCaseOperation1Output, error) { - req, out := c.OutputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - StructMember *OutputService3TestShapeTimeContainer `type:"structure"` - - TimeMember *time.Time `type:"timestamp" timestampFormat:"unix"` -} - -type OutputService3TestShapeTimeContainer struct { - _ struct{} `type:"structure"` - - Foo *time.Time `locationName:"foo" type:"timestamp" timestampFormat:"unix"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService4ProtocolTest client from just a session. -// svc := outputservice4protocoltest.New(mySession) -// -// // Create a OutputService4ProtocolTest client with additional configuration -// svc := outputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService4ProtocolTest { - c := p.ClientConfig("outputservice4protocoltest", cfgs...) - return newOutputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService4ProtocolTest { - svc := &OutputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "", - TargetPrefix: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService4TestCaseOperation1 = "OperationName" - -// OutputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService4TestCaseOperation1Request method. -// req, resp := client.OutputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1Request(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (req *request.Request, output *OutputService4TestShapeOutputShape) { - op := &request.Operation{ - Name: opOutputService4TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService4TestShapeOutputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService4TestShapeOutputShape{} - req.Data = output - return -} - -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (*OutputService4TestShapeOutputShape, error) { - req, out := c.OutputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opOutputService4TestCaseOperation2 = "OperationName" - -// OutputService4TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the OutputService4TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService4TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService4TestCaseOperation2Request method. -// req, resp := client.OutputService4TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation2Request(input *OutputService4TestShapeOutputService4TestCaseOperation2Input) (req *request.Request, output *OutputService4TestShapeOutputShape) { - op := &request.Operation{ - Name: opOutputService4TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService4TestShapeOutputService4TestCaseOperation2Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService4TestShapeOutputShape{} - req.Data = output - return -} - -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation2(input *OutputService4TestShapeOutputService4TestCaseOperation2Input) (*OutputService4TestShapeOutputShape, error) { - req, out := c.OutputService4TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService4TestShapeOutputService4TestCaseOperation2Input struct { - _ struct{} `type:"structure"` -} - -type OutputService4TestShapeOutputShape struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list"` - - ListMemberMap []map[string]*string `type:"list"` - - ListMemberStruct []*OutputService4TestShapeStructType `type:"list"` -} - -type OutputService4TestShapeStructType struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService5ProtocolTest client from just a session. -// svc := outputservice5protocoltest.New(mySession) -// -// // Create a OutputService5ProtocolTest client with additional configuration -// svc := outputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService5ProtocolTest { - c := p.ClientConfig("outputservice5protocoltest", cfgs...) - return newOutputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService5ProtocolTest { - svc := &OutputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "", - TargetPrefix: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService5TestCaseOperation1 = "OperationName" - -// OutputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService5TestCaseOperation1Request method. -// req, resp := client.OutputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1Request(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (req *request.Request, output *OutputService5TestShapeOutputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService5TestShapeOutputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService5TestShapeOutputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (*OutputService5TestShapeOutputService5TestCaseOperation1Output, error) { - req, out := c.OutputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - MapMember map[string][]*int64 `type:"map"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService6ProtocolTest client from just a session. -// svc := outputservice6protocoltest.New(mySession) -// -// // Create a OutputService6ProtocolTest client with additional configuration -// svc := outputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService6ProtocolTest { - c := p.ClientConfig("outputservice6protocoltest", cfgs...) - return newOutputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService6ProtocolTest { - svc := &OutputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - JSONVersion: "", - TargetPrefix: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService6TestCaseOperation1 = "OperationName" - -// OutputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService6TestCaseOperation1Request method. -// req, resp := client.OutputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1Request(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (req *request.Request, output *OutputService6TestShapeOutputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService6TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService6TestShapeOutputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService6TestShapeOutputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (*OutputService6TestShapeOutputService6TestCaseOperation1Output, error) { - req, out := c.OutputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - StrType *string `type:"string"` -} - -// -// Tests begin here -// - -func TestOutputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewOutputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"Str\": \"myname\", \"Num\": 123, \"FalseBool\": false, \"TrueBool\": true, \"Float\": 1.2, \"Double\": 1.3, \"Long\": 200, \"Char\": \"a\"}")) - req, out := svc.OutputService1TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - jsonrpc.UnmarshalMeta(req) - jsonrpc.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.Char) - assert.Equal(t, 1.3, *out.Double) - assert.Equal(t, false, *out.FalseBool) - assert.Equal(t, 1.2, *out.Float) - assert.Equal(t, int64(200), *out.Long) - assert.Equal(t, int64(123), *out.Num) - assert.Equal(t, "myname", *out.Str) - assert.Equal(t, true, *out.TrueBool) - -} - -func TestOutputService2ProtocolTestBlobMembersCase1(t *testing.T) { - svc := NewOutputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"BlobMember\": \"aGkh\", \"StructMember\": {\"foo\": \"dGhlcmUh\"}}")) - req, out := svc.OutputService2TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - jsonrpc.UnmarshalMeta(req) - jsonrpc.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "hi!", string(out.BlobMember)) - assert.Equal(t, "there!", string(out.StructMember.Foo)) - -} - -func TestOutputService3ProtocolTestTimestampMembersCase1(t *testing.T) { - svc := NewOutputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"TimeMember\": 1398796238, \"StructMember\": {\"foo\": 1398796238}}")) - req, out := svc.OutputService3TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - jsonrpc.UnmarshalMeta(req) - jsonrpc.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, time.Unix(1.398796238e+09, 0).UTC().String(), out.StructMember.Foo.String()) - assert.Equal(t, time.Unix(1.398796238e+09, 0).UTC().String(), out.TimeMember.String()) - -} - -func TestOutputService4ProtocolTestListsCase1(t *testing.T) { - svc := NewOutputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"ListMember\": [\"a\", \"b\"]}")) - req, out := svc.OutputService4TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - jsonrpc.UnmarshalMeta(req) - jsonrpc.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.ListMember[0]) - assert.Equal(t, "b", *out.ListMember[1]) - -} - -func TestOutputService4ProtocolTestListsCase2(t *testing.T) { - svc := NewOutputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"ListMember\": [\"a\", null], \"ListMemberMap\": [{}, null, null, {}], \"ListMemberStruct\": [{}, null, null, {}]}")) - req, out := svc.OutputService4TestCaseOperation2Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - jsonrpc.UnmarshalMeta(req) - jsonrpc.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.ListMember[0]) - assert.Nil(t, out.ListMember[1]) - assert.Nil(t, out.ListMemberMap[1]) - assert.Nil(t, out.ListMemberMap[2]) - assert.Nil(t, out.ListMemberStruct[1]) - assert.Nil(t, out.ListMemberStruct[2]) - -} - -func TestOutputService5ProtocolTestMapsCase1(t *testing.T) { - svc := NewOutputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"MapMember\": {\"a\": [1, 2], \"b\": [3, 4]}}")) - req, out := svc.OutputService5TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - jsonrpc.UnmarshalMeta(req) - jsonrpc.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, int64(1), *out.MapMember["a"][0]) - assert.Equal(t, int64(2), *out.MapMember["a"][1]) - assert.Equal(t, int64(3), *out.MapMember["b"][0]) - assert.Equal(t, int64(4), *out.MapMember["b"][1]) - -} - -func TestOutputService6ProtocolTestIgnoresExtraDataCase1(t *testing.T) { - svc := NewOutputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"foo\": \"bar\"}")) - req, out := svc.OutputService6TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - jsonrpc.UnmarshalMeta(req) - jsonrpc.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol_test.go deleted file mode 100644 index 6ba44124..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol_test.go +++ /dev/null @@ -1,203 +0,0 @@ -package protocol_test - -import ( - "fmt" - "net/http" - "net/url" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/ec2query" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" - "github.com/aws/aws-sdk-go/private/protocol/query" - "github.com/aws/aws-sdk-go/private/protocol/rest" - "github.com/aws/aws-sdk-go/private/protocol/restjson" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -func xmlData(set bool, b []byte, size, delta int) { - if !set { - copy(b, []byte("")) - } - if size == 0 { - copy(b[delta-len(""):], []byte("")) - } -} - -func jsonData(set bool, b []byte, size, delta int) { - if !set { - copy(b, []byte("{\"A\": \"")) - } - if size == 0 { - copy(b[delta-len("\"}"):], []byte("\"}")) - } -} - -func buildNewRequest(data interface{}) *request.Request { - v := url.Values{} - v.Set("test", "TEST") - v.Add("test1", "TEST1") - - req := &request.Request{ - HTTPRequest: &http.Request{ - Header: make(http.Header), - Body: &awstesting.ReadCloser{Size: 2048}, - URL: &url.URL{ - RawQuery: v.Encode(), - }, - }, - Params: &struct { - LocationName string `locationName:"test"` - }{ - "Test", - }, - ClientInfo: metadata.ClientInfo{ - ServiceName: "test", - TargetPrefix: "test", - JSONVersion: "test", - APIVersion: "test", - Endpoint: "test", - SigningName: "test", - SigningRegion: "test", - }, - Operation: &request.Operation{ - Name: "test", - }, - } - req.HTTPResponse = &http.Response{ - Body: &awstesting.ReadCloser{Size: 2048}, - Header: http.Header{ - "X-Amzn-Requestid": []string{"1"}, - }, - StatusCode: http.StatusOK, - } - - if data == nil { - data = &struct { - _ struct{} `type:"structure"` - LocationName *string `locationName:"testName"` - Location *string `location:"statusCode"` - A *string `type:"string"` - }{} - } - - req.Data = data - - return req -} - -type expected struct { - dataType int - closed bool - size int - errExists bool -} - -const ( - jsonType = iota - xmlType -) - -func checkForLeak(data interface{}, build, fn func(*request.Request), t *testing.T, result expected) { - req := buildNewRequest(data) - reader := req.HTTPResponse.Body.(*awstesting.ReadCloser) - switch result.dataType { - case jsonType: - reader.FillData = jsonData - case xmlType: - reader.FillData = xmlData - } - build(req) - fn(req) - - if result.errExists { - assert.NotNil(t, req.Error) - } else { - fmt.Println(req.Error) - assert.Nil(t, req.Error) - } - - assert.Equal(t, reader.Closed, result.closed) - assert.Equal(t, reader.Size, result.size) -} - -func TestJSONRpc(t *testing.T) { - checkForLeak(nil, jsonrpc.Build, jsonrpc.Unmarshal, t, expected{jsonType, true, 0, false}) - checkForLeak(nil, jsonrpc.Build, jsonrpc.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) - checkForLeak(nil, jsonrpc.Build, jsonrpc.UnmarshalError, t, expected{jsonType, true, 0, true}) -} - -func TestQuery(t *testing.T) { - checkForLeak(nil, query.Build, query.Unmarshal, t, expected{jsonType, true, 0, false}) - checkForLeak(nil, query.Build, query.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) - checkForLeak(nil, query.Build, query.UnmarshalError, t, expected{jsonType, true, 0, true}) -} - -func TestRest(t *testing.T) { - // case 1: Payload io.ReadSeeker - checkForLeak(nil, rest.Build, rest.Unmarshal, t, expected{jsonType, false, 2048, false}) - checkForLeak(nil, query.Build, query.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) - - // case 2: Payload *string - // should close the body - dataStr := struct { - _ struct{} `type:"structure" payload:"Payload"` - LocationName *string `locationName:"testName"` - Location *string `location:"statusCode"` - A *string `type:"string"` - Payload *string `locationName:"payload" type:"blob" required:"true"` - }{} - checkForLeak(&dataStr, rest.Build, rest.Unmarshal, t, expected{jsonType, true, 0, false}) - checkForLeak(&dataStr, query.Build, query.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) - - // case 3: Payload []byte - // should close the body - dataBytes := struct { - _ struct{} `type:"structure" payload:"Payload"` - LocationName *string `locationName:"testName"` - Location *string `location:"statusCode"` - A *string `type:"string"` - Payload []byte `locationName:"payload" type:"blob" required:"true"` - }{} - checkForLeak(&dataBytes, rest.Build, rest.Unmarshal, t, expected{jsonType, true, 0, false}) - checkForLeak(&dataBytes, query.Build, query.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) - - // case 4: Payload unsupported type - // should close the body - dataUnsupported := struct { - _ struct{} `type:"structure" payload:"Payload"` - LocationName *string `locationName:"testName"` - Location *string `location:"statusCode"` - A *string `type:"string"` - Payload string `locationName:"payload" type:"blob" required:"true"` - }{} - checkForLeak(&dataUnsupported, rest.Build, rest.Unmarshal, t, expected{jsonType, true, 0, true}) - checkForLeak(&dataUnsupported, query.Build, query.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) -} - -func TestRestJSON(t *testing.T) { - checkForLeak(nil, restjson.Build, restjson.Unmarshal, t, expected{jsonType, true, 0, false}) - checkForLeak(nil, restjson.Build, restjson.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) - checkForLeak(nil, restjson.Build, restjson.UnmarshalError, t, expected{jsonType, true, 0, true}) -} - -func TestRestXML(t *testing.T) { - checkForLeak(nil, restxml.Build, restxml.Unmarshal, t, expected{xmlType, true, 0, false}) - checkForLeak(nil, restxml.Build, restxml.UnmarshalMeta, t, expected{xmlType, false, 2048, false}) - checkForLeak(nil, restxml.Build, restxml.UnmarshalError, t, expected{xmlType, true, 0, true}) -} - -func TestXML(t *testing.T) { - checkForLeak(nil, ec2query.Build, ec2query.Unmarshal, t, expected{jsonType, true, 0, false}) - checkForLeak(nil, ec2query.Build, ec2query.UnmarshalMeta, t, expected{jsonType, false, 2048, false}) - checkForLeak(nil, ec2query.Build, ec2query.UnmarshalError, t, expected{jsonType, true, 0, true}) -} - -func TestProtocol(t *testing.T) { - checkForLeak(nil, restxml.Build, protocol.UnmarshalDiscardBody, t, expected{xmlType, true, 0, false}) -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go deleted file mode 100644 index c705481c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go +++ /dev/null @@ -1,36 +0,0 @@ -// Package query provides serialization of AWS query requests, and responses. -package query - -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/input/query.json build_test.go - -import ( - "net/url" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/query/queryutil" -) - -// BuildHandler is a named request handler for building query protocol requests -var BuildHandler = request.NamedHandler{Name: "awssdk.query.Build", Fn: Build} - -// Build builds a request for an AWS Query service. -func Build(r *request.Request) { - body := url.Values{ - "Action": {r.Operation.Name}, - "Version": {r.ClientInfo.APIVersion}, - } - if err := queryutil.Parse(body, r.Params, false); err != nil { - r.Error = awserr.New("SerializationError", "failed encoding Query request", err) - return - } - - if r.ExpireTime == 0 { - r.HTTPRequest.Method = "POST" - r.HTTPRequest.Header.Set("Content-Type", "application/x-www-form-urlencoded; charset=utf-8") - r.SetBufferBody([]byte(body.Encode())) - } else { // This is a pre-signed request - r.HTTPRequest.Method = "GET" - r.HTTPRequest.URL.RawQuery = body.Encode() - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build_test.go deleted file mode 100644 index 1496e94d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build_test.go +++ /dev/null @@ -1,2680 +0,0 @@ -package query_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/query" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService1ProtocolTest client from just a session. -// svc := inputservice1protocoltest.New(mySession) -// -// // Create a InputService1ProtocolTest client with additional configuration -// svc := inputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService1ProtocolTest { - c := p.ClientConfig("inputservice1protocoltest", cfgs...) - return newInputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService1ProtocolTest { - svc := &InputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService1TestCaseOperation1 = "OperationName" - -// InputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation1Request method. -// req, resp := client.InputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputShape) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService1TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputShape) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) { - req, out := c.InputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService1TestCaseOperation2 = "OperationName" - -// InputService1TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation2Request method. -// req, resp := client.InputService1TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation2Request(input *InputService1TestShapeInputShape) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &InputService1TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation2(input *InputService1TestShapeInputShape) (*InputService1TestShapeInputService1TestCaseOperation2Output, error) { - req, out := c.InputService1TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -const opInputService1TestCaseOperation3 = "OperationName" - -// InputService1TestCaseOperation3Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation3 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation3 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation3Request method. -// req, resp := client.InputService1TestCaseOperation3Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation3Request(input *InputService1TestShapeInputShape) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation3Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation3, - HTTPPath: "/", - } - - if input == nil { - input = &InputService1TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation3Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation3(input *InputService1TestShapeInputShape) (*InputService1TestShapeInputService1TestCaseOperation3Output, error) { - req, out := c.InputService1TestCaseOperation3Request(input) - err := req.Send() - return out, err -} - -type InputService1TestShapeInputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputService1TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputService1TestCaseOperation3Output struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Bar *string `type:"string"` - - Baz *bool `type:"boolean"` - - Foo *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService2ProtocolTest client from just a session. -// svc := inputservice2protocoltest.New(mySession) -// -// // Create a InputService2ProtocolTest client with additional configuration -// svc := inputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService2ProtocolTest { - c := p.ClientConfig("inputservice2protocoltest", cfgs...) - return newInputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService2ProtocolTest { - svc := &InputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService2TestCaseOperation1 = "OperationName" - -// InputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService2TestCaseOperation1Request method. -// req, resp := client.InputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputService2TestCaseOperation1Input) (req *request.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService2TestShapeInputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService2TestShapeInputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputService2TestCaseOperation1Input) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) { - req, out := c.InputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService2TestShapeInputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - StructArg *InputService2TestShapeStructType `type:"structure"` -} - -type InputService2TestShapeInputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService2TestShapeStructType struct { - _ struct{} `type:"structure"` - - ScalarArg *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService3ProtocolTest client from just a session. -// svc := inputservice3protocoltest.New(mySession) -// -// // Create a InputService3ProtocolTest client with additional configuration -// svc := inputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService3ProtocolTest { - c := p.ClientConfig("inputservice3protocoltest", cfgs...) - return newInputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService3ProtocolTest { - svc := &InputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService3TestCaseOperation1 = "OperationName" - -// InputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation1Request method. -// req, resp := client.InputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService3TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) { - req, out := c.InputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService3TestCaseOperation2 = "OperationName" - -// InputService3TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation2Request method. -// req, resp := client.InputService3TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation2Request(input *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &InputService3TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation2Output, error) { - req, out := c.InputService3TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService3TestShapeInputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService3TestShapeInputService3TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService3TestShapeInputShape struct { - _ struct{} `type:"structure"` - - ListArg []*string `type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService4ProtocolTest client from just a session. -// svc := inputservice4protocoltest.New(mySession) -// -// // Create a InputService4ProtocolTest client with additional configuration -// svc := inputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService4ProtocolTest { - c := p.ClientConfig("inputservice4protocoltest", cfgs...) - return newInputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService4ProtocolTest { - svc := &InputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService4TestCaseOperation1 = "OperationName" - -// InputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService4TestCaseOperation1Request method. -// req, resp := client.InputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputShape) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService4TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService4TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService4TestShapeInputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputShape) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) { - req, out := c.InputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService4TestCaseOperation2 = "OperationName" - -// InputService4TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService4TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService4TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService4TestCaseOperation2Request method. -// req, resp := client.InputService4TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService4ProtocolTest) InputService4TestCaseOperation2Request(input *InputService4TestShapeInputShape) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService4TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &InputService4TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService4TestShapeInputService4TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService4ProtocolTest) InputService4TestCaseOperation2(input *InputService4TestShapeInputShape) (*InputService4TestShapeInputService4TestCaseOperation2Output, error) { - req, out := c.InputService4TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService4TestShapeInputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService4TestShapeInputService4TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService4TestShapeInputShape struct { - _ struct{} `type:"structure"` - - ListArg []*string `type:"list" flattened:"true"` - - NamedListArg []*string `locationNameList:"Foo" type:"list" flattened:"true"` - - ScalarArg *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService5ProtocolTest client from just a session. -// svc := inputservice5protocoltest.New(mySession) -// -// // Create a InputService5ProtocolTest client with additional configuration -// svc := inputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService5ProtocolTest { - c := p.ClientConfig("inputservice5protocoltest", cfgs...) - return newInputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService5ProtocolTest { - svc := &InputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService5TestCaseOperation1 = "OperationName" - -// InputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation1Request method. -// req, resp := client.InputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputService5TestCaseOperation1Input) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService5TestShapeInputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputService5TestCaseOperation1Input) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) { - req, out := c.InputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService5TestShapeInputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - MapArg map[string]*string `type:"map" flattened:"true"` -} - -type InputService5TestShapeInputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService6ProtocolTest client from just a session. -// svc := inputservice6protocoltest.New(mySession) -// -// // Create a InputService6ProtocolTest client with additional configuration -// svc := inputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService6ProtocolTest { - c := p.ClientConfig("inputservice6protocoltest", cfgs...) - return newInputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService6ProtocolTest { - svc := &InputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService6TestCaseOperation1 = "OperationName" - -// InputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService6TestCaseOperation1Request method. -// req, resp := client.InputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputService6TestCaseOperation1Input) (req *request.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService6TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService6TestShapeInputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService6TestShapeInputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputService6TestCaseOperation1Input) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) { - req, out := c.InputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService6TestShapeInputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - ListArg []*string `locationNameList:"item" type:"list"` -} - -type InputService6TestShapeInputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService7ProtocolTest client from just a session. -// svc := inputservice7protocoltest.New(mySession) -// -// // Create a InputService7ProtocolTest client with additional configuration -// svc := inputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService7ProtocolTest { - c := p.ClientConfig("inputservice7protocoltest", cfgs...) - return newInputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService7ProtocolTest { - svc := &InputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService7TestCaseOperation1 = "OperationName" - -// InputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService7TestCaseOperation1Request method. -// req, resp := client.InputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputService7TestCaseOperation1Input) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService7TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService7TestShapeInputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService7TestShapeInputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputService7TestCaseOperation1Input) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) { - req, out := c.InputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService7TestShapeInputService7TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - ListArg []*string `locationNameList:"ListArgLocation" type:"list" flattened:"true"` - - ScalarArg *string `type:"string"` -} - -type InputService7TestShapeInputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService8ProtocolTest client from just a session. -// svc := inputservice8protocoltest.New(mySession) -// -// // Create a InputService8ProtocolTest client with additional configuration -// svc := inputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService8ProtocolTest { - c := p.ClientConfig("inputservice8protocoltest", cfgs...) - return newInputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService8ProtocolTest { - svc := &InputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService8TestCaseOperation1 = "OperationName" - -// InputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService8TestCaseOperation1Request method. -// req, resp := client.InputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1Request(input *InputService8TestShapeInputService8TestCaseOperation1Input) (req *request.Request, output *InputService8TestShapeInputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService8TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService8TestShapeInputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService8TestShapeInputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *InputService8TestShapeInputService8TestCaseOperation1Input) (*InputService8TestShapeInputService8TestCaseOperation1Output, error) { - req, out := c.InputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService8TestShapeInputService8TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - MapArg map[string]*string `type:"map"` -} - -type InputService8TestShapeInputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService9ProtocolTest client from just a session. -// svc := inputservice9protocoltest.New(mySession) -// -// // Create a InputService9ProtocolTest client with additional configuration -// svc := inputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService9ProtocolTest { - c := p.ClientConfig("inputservice9protocoltest", cfgs...) - return newInputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService9ProtocolTest { - svc := &InputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService9TestCaseOperation1 = "OperationName" - -// InputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService9TestCaseOperation1Request method. -// req, resp := client.InputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1Request(input *InputService9TestShapeInputService9TestCaseOperation1Input) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService9TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService9TestShapeInputService9TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService9TestShapeInputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *InputService9TestShapeInputService9TestCaseOperation1Input) (*InputService9TestShapeInputService9TestCaseOperation1Output, error) { - req, out := c.InputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService9TestShapeInputService9TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - MapArg map[string]*string `locationNameKey:"TheKey" locationNameValue:"TheValue" type:"map"` -} - -type InputService9TestShapeInputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService10ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService10ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService10ProtocolTest client from just a session. -// svc := inputservice10protocoltest.New(mySession) -// -// // Create a InputService10ProtocolTest client with additional configuration -// svc := inputservice10protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService10ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService10ProtocolTest { - c := p.ClientConfig("inputservice10protocoltest", cfgs...) - return newInputService10ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService10ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService10ProtocolTest { - svc := &InputService10ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice10protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService10ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService10ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService10TestCaseOperation1 = "OperationName" - -// InputService10TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService10TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService10TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService10TestCaseOperation1Request method. -// req, resp := client.InputService10TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService10ProtocolTest) InputService10TestCaseOperation1Request(input *InputService10TestShapeInputService10TestCaseOperation1Input) (req *request.Request, output *InputService10TestShapeInputService10TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService10TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService10TestShapeInputService10TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService10TestShapeInputService10TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService10ProtocolTest) InputService10TestCaseOperation1(input *InputService10TestShapeInputService10TestCaseOperation1Input) (*InputService10TestShapeInputService10TestCaseOperation1Output, error) { - req, out := c.InputService10TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService10TestShapeInputService10TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - // BlobArg is automatically base64 encoded/decoded by the SDK. - BlobArg []byte `type:"blob"` -} - -type InputService10TestShapeInputService10TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService11ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService11ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService11ProtocolTest client from just a session. -// svc := inputservice11protocoltest.New(mySession) -// -// // Create a InputService11ProtocolTest client with additional configuration -// svc := inputservice11protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService11ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService11ProtocolTest { - c := p.ClientConfig("inputservice11protocoltest", cfgs...) - return newInputService11ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService11ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService11ProtocolTest { - svc := &InputService11ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice11protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService11ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService11ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService11TestCaseOperation1 = "OperationName" - -// InputService11TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService11TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService11TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService11TestCaseOperation1Request method. -// req, resp := client.InputService11TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService11ProtocolTest) InputService11TestCaseOperation1Request(input *InputService11TestShapeInputService11TestCaseOperation1Input) (req *request.Request, output *InputService11TestShapeInputService11TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService11TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService11TestShapeInputService11TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService11TestShapeInputService11TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService11ProtocolTest) InputService11TestCaseOperation1(input *InputService11TestShapeInputService11TestCaseOperation1Input) (*InputService11TestShapeInputService11TestCaseOperation1Output, error) { - req, out := c.InputService11TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService11TestShapeInputService11TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - TimeArg *time.Time `type:"timestamp" timestampFormat:"iso8601"` -} - -type InputService11TestShapeInputService11TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService12ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService12ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService12ProtocolTest client from just a session. -// svc := inputservice12protocoltest.New(mySession) -// -// // Create a InputService12ProtocolTest client with additional configuration -// svc := inputservice12protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService12ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService12ProtocolTest { - c := p.ClientConfig("inputservice12protocoltest", cfgs...) - return newInputService12ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService12ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService12ProtocolTest { - svc := &InputService12ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice12protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService12ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService12ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService12TestCaseOperation1 = "OperationName" - -// InputService12TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation1Request method. -// req, resp := client.InputService12TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation1Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation1(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation1Output, error) { - req, out := c.InputService12TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService12TestCaseOperation2 = "OperationName" - -// InputService12TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation2Request method. -// req, resp := client.InputService12TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation2Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation2(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation2Output, error) { - req, out := c.InputService12TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -const opInputService12TestCaseOperation3 = "OperationName" - -// InputService12TestCaseOperation3Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation3 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation3 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation3Request method. -// req, resp := client.InputService12TestCaseOperation3Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation3Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation3Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation3, - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation3Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation3(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation3Output, error) { - req, out := c.InputService12TestCaseOperation3Request(input) - err := req.Send() - return out, err -} - -const opInputService12TestCaseOperation4 = "OperationName" - -// InputService12TestCaseOperation4Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation4 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation4 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation4Request method. -// req, resp := client.InputService12TestCaseOperation4Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation4Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation4Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation4, - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation4Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation4(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation4Output, error) { - req, out := c.InputService12TestCaseOperation4Request(input) - err := req.Send() - return out, err -} - -const opInputService12TestCaseOperation5 = "OperationName" - -// InputService12TestCaseOperation5Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation5 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation5 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation5Request method. -// req, resp := client.InputService12TestCaseOperation5Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation5Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation5Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation5, - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation5Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation5(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation5Output, error) { - req, out := c.InputService12TestCaseOperation5Request(input) - err := req.Send() - return out, err -} - -const opInputService12TestCaseOperation6 = "OperationName" - -// InputService12TestCaseOperation6Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation6 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation6 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation6Request method. -// req, resp := client.InputService12TestCaseOperation6Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation6Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation6Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation6, - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation6Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation6(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation6Output, error) { - req, out := c.InputService12TestCaseOperation6Request(input) - err := req.Send() - return out, err -} - -type InputService12TestShapeInputService12TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputService12TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputService12TestCaseOperation3Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputService12TestCaseOperation4Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputService12TestCaseOperation5Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputService12TestCaseOperation6Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputShape struct { - _ struct{} `type:"structure"` - - RecursiveStruct *InputService12TestShapeRecursiveStructType `type:"structure"` -} - -type InputService12TestShapeRecursiveStructType struct { - _ struct{} `type:"structure"` - - NoRecurse *string `type:"string"` - - RecursiveList []*InputService12TestShapeRecursiveStructType `type:"list"` - - RecursiveMap map[string]*InputService12TestShapeRecursiveStructType `type:"map"` - - RecursiveStruct *InputService12TestShapeRecursiveStructType `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService13ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService13ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService13ProtocolTest client from just a session. -// svc := inputservice13protocoltest.New(mySession) -// -// // Create a InputService13ProtocolTest client with additional configuration -// svc := inputservice13protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService13ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService13ProtocolTest { - c := p.ClientConfig("inputservice13protocoltest", cfgs...) - return newInputService13ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService13ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService13ProtocolTest { - svc := &InputService13ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice13protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService13ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService13ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService13TestCaseOperation1 = "OperationName" - -// InputService13TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService13TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService13TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService13TestCaseOperation1Request method. -// req, resp := client.InputService13TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService13ProtocolTest) InputService13TestCaseOperation1Request(input *InputService13TestShapeInputShape) (req *request.Request, output *InputService13TestShapeInputService13TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService13TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService13TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService13TestShapeInputService13TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService13ProtocolTest) InputService13TestCaseOperation1(input *InputService13TestShapeInputShape) (*InputService13TestShapeInputService13TestCaseOperation1Output, error) { - req, out := c.InputService13TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService13TestCaseOperation2 = "OperationName" - -// InputService13TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService13TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService13TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService13TestCaseOperation2Request method. -// req, resp := client.InputService13TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService13ProtocolTest) InputService13TestCaseOperation2Request(input *InputService13TestShapeInputShape) (req *request.Request, output *InputService13TestShapeInputService13TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService13TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService13TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService13TestShapeInputService13TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService13ProtocolTest) InputService13TestCaseOperation2(input *InputService13TestShapeInputShape) (*InputService13TestShapeInputService13TestCaseOperation2Output, error) { - req, out := c.InputService13TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService13TestShapeInputService13TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService13TestShapeInputService13TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService13TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Token *string `type:"string" idempotencyToken:"true"` -} - -// -// Tests begin here -// - -func TestInputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputShape{ - Bar: aws.String("val2"), - Foo: aws.String("val1"), - } - req, _ := svc.InputService1TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&Bar=val2&Foo=val1&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService1ProtocolTestScalarMembersCase2(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputShape{ - Baz: aws.Bool(true), - } - req, _ := svc.InputService1TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&Baz=true&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService1ProtocolTestScalarMembersCase3(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputShape{ - Baz: aws.Bool(false), - } - req, _ := svc.InputService1TestCaseOperation3Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&Baz=false&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService2ProtocolTestNestedStructureMembersCase1(t *testing.T) { - svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService2TestShapeInputService2TestCaseOperation1Input{ - StructArg: &InputService2TestShapeStructType{ - ScalarArg: aws.String("foo"), - }, - } - req, _ := svc.InputService2TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&StructArg.ScalarArg=foo&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService3ProtocolTestListTypesCase1(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputShape{ - ListArg: []*string{ - aws.String("foo"), - aws.String("bar"), - aws.String("baz"), - }, - } - req, _ := svc.InputService3TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListArg.member.1=foo&ListArg.member.2=bar&ListArg.member.3=baz&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService3ProtocolTestListTypesCase2(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputShape{ - ListArg: []*string{}, - } - req, _ := svc.InputService3TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListArg=&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService4ProtocolTestFlattenedListCase1(t *testing.T) { - svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService4TestShapeInputShape{ - ListArg: []*string{ - aws.String("a"), - aws.String("b"), - aws.String("c"), - }, - ScalarArg: aws.String("foo"), - } - req, _ := svc.InputService4TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListArg.1=a&ListArg.2=b&ListArg.3=c&ScalarArg=foo&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService4ProtocolTestFlattenedListCase2(t *testing.T) { - svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService4TestShapeInputShape{ - NamedListArg: []*string{ - aws.String("a"), - }, - } - req, _ := svc.InputService4TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&Foo.1=a&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService5ProtocolTestSerializeFlattenedMapTypeCase1(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputService5TestCaseOperation1Input{ - MapArg: map[string]*string{ - "key1": aws.String("val1"), - "key2": aws.String("val2"), - }, - } - req, _ := svc.InputService5TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&MapArg.1.key=key1&MapArg.1.value=val1&MapArg.2.key=key2&MapArg.2.value=val2&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService6ProtocolTestNonFlattenedListWithLocationNameCase1(t *testing.T) { - svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService6TestShapeInputService6TestCaseOperation1Input{ - ListArg: []*string{ - aws.String("a"), - aws.String("b"), - aws.String("c"), - }, - } - req, _ := svc.InputService6TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListArg.item.1=a&ListArg.item.2=b&ListArg.item.3=c&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService7ProtocolTestFlattenedListWithLocationNameCase1(t *testing.T) { - svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService7TestShapeInputService7TestCaseOperation1Input{ - ListArg: []*string{ - aws.String("a"), - aws.String("b"), - aws.String("c"), - }, - ScalarArg: aws.String("foo"), - } - req, _ := svc.InputService7TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&ListArgLocation.1=a&ListArgLocation.2=b&ListArgLocation.3=c&ScalarArg=foo&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService8ProtocolTestSerializeMapTypeCase1(t *testing.T) { - svc := NewInputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService8TestShapeInputService8TestCaseOperation1Input{ - MapArg: map[string]*string{ - "key1": aws.String("val1"), - "key2": aws.String("val2"), - }, - } - req, _ := svc.InputService8TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&MapArg.entry.1.key=key1&MapArg.entry.1.value=val1&MapArg.entry.2.key=key2&MapArg.entry.2.value=val2&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService9ProtocolTestSerializeMapTypeWithLocationNameCase1(t *testing.T) { - svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService9TestShapeInputService9TestCaseOperation1Input{ - MapArg: map[string]*string{ - "key1": aws.String("val1"), - "key2": aws.String("val2"), - }, - } - req, _ := svc.InputService9TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&MapArg.entry.1.TheKey=key1&MapArg.entry.1.TheValue=val1&MapArg.entry.2.TheKey=key2&MapArg.entry.2.TheValue=val2&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService10ProtocolTestBase64EncodedBlobsCase1(t *testing.T) { - svc := NewInputService10ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService10TestShapeInputService10TestCaseOperation1Input{ - BlobArg: []byte("foo"), - } - req, _ := svc.InputService10TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&BlobArg=Zm9v&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService11ProtocolTestTimestampValuesCase1(t *testing.T) { - svc := NewInputService11ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService11TestShapeInputService11TestCaseOperation1Input{ - TimeArg: aws.Time(time.Unix(1422172800, 0)), - } - req, _ := svc.InputService11TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&TimeArg=2015-01-25T08%3A00%3A00Z&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestRecursiveShapesCase1(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - } - req, _ := svc.InputService12TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&RecursiveStruct.NoRecurse=foo&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestRecursiveShapesCase2(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - } - req, _ := svc.InputService12TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&RecursiveStruct.RecursiveStruct.NoRecurse=foo&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestRecursiveShapesCase3(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - }, - }, - } - req, _ := svc.InputService12TestCaseOperation3Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&RecursiveStruct.RecursiveStruct.RecursiveStruct.RecursiveStruct.NoRecurse=foo&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestRecursiveShapesCase4(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - RecursiveList: []*InputService12TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - NoRecurse: aws.String("bar"), - }, - }, - }, - } - req, _ := svc.InputService12TestCaseOperation4Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&RecursiveStruct.RecursiveList.member.1.NoRecurse=foo&RecursiveStruct.RecursiveList.member.2.NoRecurse=bar&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestRecursiveShapesCase5(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - RecursiveList: []*InputService12TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - NoRecurse: aws.String("bar"), - }, - }, - }, - }, - } - req, _ := svc.InputService12TestCaseOperation5Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&RecursiveStruct.RecursiveList.member.1.NoRecurse=foo&RecursiveStruct.RecursiveList.member.2.RecursiveStruct.NoRecurse=bar&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestRecursiveShapesCase6(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{ - RecursiveStruct: &InputService12TestShapeRecursiveStructType{ - RecursiveMap: map[string]*InputService12TestShapeRecursiveStructType{ - "bar": { - NoRecurse: aws.String("bar"), - }, - "foo": { - NoRecurse: aws.String("foo"), - }, - }, - }, - } - req, _ := svc.InputService12TestCaseOperation6Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Action=OperationName&RecursiveStruct.RecursiveMap.entry.1.key=foo&RecursiveStruct.RecursiveMap.entry.1.value.NoRecurse=foo&RecursiveStruct.RecursiveMap.entry.2.key=bar&RecursiveStruct.RecursiveMap.entry.2.value.NoRecurse=bar&Version=2014-01-01`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService13ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) { - svc := NewInputService13ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService13TestShapeInputShape{ - Token: aws.String("abc123"), - } - req, _ := svc.InputService13TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Token=abc123`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService13ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) { - svc := NewInputService13ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService13TestShapeInputShape{} - req, _ := svc.InputService13TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - query.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertQuery(t, `Token=00000000-0000-4000-8000-000000000000`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go deleted file mode 100644 index 60ea0bd1..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go +++ /dev/null @@ -1,230 +0,0 @@ -package queryutil - -import ( - "encoding/base64" - "fmt" - "net/url" - "reflect" - "sort" - "strconv" - "strings" - "time" - - "github.com/aws/aws-sdk-go/private/protocol" -) - -// Parse parses an object i and fills a url.Values object. The isEC2 flag -// indicates if this is the EC2 Query sub-protocol. -func Parse(body url.Values, i interface{}, isEC2 bool) error { - q := queryParser{isEC2: isEC2} - return q.parseValue(body, reflect.ValueOf(i), "", "") -} - -func elemOf(value reflect.Value) reflect.Value { - for value.Kind() == reflect.Ptr { - value = value.Elem() - } - return value -} - -type queryParser struct { - isEC2 bool -} - -func (q *queryParser) parseValue(v url.Values, value reflect.Value, prefix string, tag reflect.StructTag) error { - value = elemOf(value) - - // no need to handle zero values - if !value.IsValid() { - return nil - } - - t := tag.Get("type") - if t == "" { - switch value.Kind() { - case reflect.Struct: - t = "structure" - case reflect.Slice: - t = "list" - case reflect.Map: - t = "map" - } - } - - switch t { - case "structure": - return q.parseStruct(v, value, prefix) - case "list": - return q.parseList(v, value, prefix, tag) - case "map": - return q.parseMap(v, value, prefix, tag) - default: - return q.parseScalar(v, value, prefix, tag) - } -} - -func (q *queryParser) parseStruct(v url.Values, value reflect.Value, prefix string) error { - if !value.IsValid() { - return nil - } - - t := value.Type() - for i := 0; i < value.NumField(); i++ { - elemValue := elemOf(value.Field(i)) - field := t.Field(i) - - if field.PkgPath != "" { - continue // ignore unexported fields - } - - if protocol.CanSetIdempotencyToken(value.Field(i), field) { - token := protocol.GetIdempotencyToken() - elemValue = reflect.ValueOf(token) - } - - var name string - if q.isEC2 { - name = field.Tag.Get("queryName") - } - if name == "" { - if field.Tag.Get("flattened") != "" && field.Tag.Get("locationNameList") != "" { - name = field.Tag.Get("locationNameList") - } else if locName := field.Tag.Get("locationName"); locName != "" { - name = locName - } - if name != "" && q.isEC2 { - name = strings.ToUpper(name[0:1]) + name[1:] - } - } - if name == "" { - name = field.Name - } - - if prefix != "" { - name = prefix + "." + name - } - - if err := q.parseValue(v, elemValue, name, field.Tag); err != nil { - return err - } - } - return nil -} - -func (q *queryParser) parseList(v url.Values, value reflect.Value, prefix string, tag reflect.StructTag) error { - // If it's empty, generate an empty value - if !value.IsNil() && value.Len() == 0 { - v.Set(prefix, "") - return nil - } - - // check for unflattened list member - if !q.isEC2 && tag.Get("flattened") == "" { - prefix += ".member" - } - - for i := 0; i < value.Len(); i++ { - slicePrefix := prefix - if slicePrefix == "" { - slicePrefix = strconv.Itoa(i + 1) - } else { - slicePrefix = slicePrefix + "." + strconv.Itoa(i+1) - } - if err := q.parseValue(v, value.Index(i), slicePrefix, ""); err != nil { - return err - } - } - return nil -} - -func (q *queryParser) parseMap(v url.Values, value reflect.Value, prefix string, tag reflect.StructTag) error { - // If it's empty, generate an empty value - if !value.IsNil() && value.Len() == 0 { - v.Set(prefix, "") - return nil - } - - // check for unflattened list member - if !q.isEC2 && tag.Get("flattened") == "" { - prefix += ".entry" - } - - // sort keys for improved serialization consistency. - // this is not strictly necessary for protocol support. - mapKeyValues := value.MapKeys() - mapKeys := map[string]reflect.Value{} - mapKeyNames := make([]string, len(mapKeyValues)) - for i, mapKey := range mapKeyValues { - name := mapKey.String() - mapKeys[name] = mapKey - mapKeyNames[i] = name - } - sort.Strings(mapKeyNames) - - for i, mapKeyName := range mapKeyNames { - mapKey := mapKeys[mapKeyName] - mapValue := value.MapIndex(mapKey) - - kname := tag.Get("locationNameKey") - if kname == "" { - kname = "key" - } - vname := tag.Get("locationNameValue") - if vname == "" { - vname = "value" - } - - // serialize key - var keyName string - if prefix == "" { - keyName = strconv.Itoa(i+1) + "." + kname - } else { - keyName = prefix + "." + strconv.Itoa(i+1) + "." + kname - } - - if err := q.parseValue(v, mapKey, keyName, ""); err != nil { - return err - } - - // serialize value - var valueName string - if prefix == "" { - valueName = strconv.Itoa(i+1) + "." + vname - } else { - valueName = prefix + "." + strconv.Itoa(i+1) + "." + vname - } - - if err := q.parseValue(v, mapValue, valueName, ""); err != nil { - return err - } - } - - return nil -} - -func (q *queryParser) parseScalar(v url.Values, r reflect.Value, name string, tag reflect.StructTag) error { - switch value := r.Interface().(type) { - case string: - v.Set(name, value) - case []byte: - if !r.IsNil() { - v.Set(name, base64.StdEncoding.EncodeToString(value)) - } - case bool: - v.Set(name, strconv.FormatBool(value)) - case int64: - v.Set(name, strconv.FormatInt(value, 10)) - case int: - v.Set(name, strconv.Itoa(value)) - case float64: - v.Set(name, strconv.FormatFloat(value, 'f', -1, 64)) - case float32: - v.Set(name, strconv.FormatFloat(float64(value), 'f', -1, 32)) - case time.Time: - const ISO8601UTC = "2006-01-02T15:04:05Z" - v.Set(name, value.UTC().Format(ISO8601UTC)) - default: - return fmt.Errorf("unsupported value for param %s: %v (%s)", name, r.Interface(), r.Type().Name()) - } - return nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go deleted file mode 100644 index a3ea4095..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go +++ /dev/null @@ -1,35 +0,0 @@ -package query - -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/output/query.json unmarshal_test.go - -import ( - "encoding/xml" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" -) - -// UnmarshalHandler is a named request handler for unmarshaling query protocol requests -var UnmarshalHandler = request.NamedHandler{Name: "awssdk.query.Unmarshal", Fn: Unmarshal} - -// UnmarshalMetaHandler is a named request handler for unmarshaling query protocol request metadata -var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.query.UnmarshalMeta", Fn: UnmarshalMeta} - -// Unmarshal unmarshals a response for an AWS Query service. -func Unmarshal(r *request.Request) { - defer r.HTTPResponse.Body.Close() - if r.DataFilled() { - decoder := xml.NewDecoder(r.HTTPResponse.Body) - err := xmlutil.UnmarshalXML(r.Data, decoder, r.Operation.Name+"Result") - if err != nil { - r.Error = awserr.New("SerializationError", "failed decoding Query response", err) - return - } - } -} - -// UnmarshalMeta unmarshals header response values for an AWS Query service. -func UnmarshalMeta(r *request.Request) { - r.RequestID = r.HTTPResponse.Header.Get("X-Amzn-Requestid") -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go deleted file mode 100644 index f2142961..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go +++ /dev/null @@ -1,66 +0,0 @@ -package query - -import ( - "encoding/xml" - "io/ioutil" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" -) - -type xmlErrorResponse struct { - XMLName xml.Name `xml:"ErrorResponse"` - Code string `xml:"Error>Code"` - Message string `xml:"Error>Message"` - RequestID string `xml:"RequestId"` -} - -type xmlServiceUnavailableResponse struct { - XMLName xml.Name `xml:"ServiceUnavailableException"` -} - -// UnmarshalErrorHandler is a name request handler to unmarshal request errors -var UnmarshalErrorHandler = request.NamedHandler{Name: "awssdk.query.UnmarshalError", Fn: UnmarshalError} - -// UnmarshalError unmarshals an error response for an AWS Query service. -func UnmarshalError(r *request.Request) { - defer r.HTTPResponse.Body.Close() - - bodyBytes, err := ioutil.ReadAll(r.HTTPResponse.Body) - if err != nil { - r.Error = awserr.New("SerializationError", "failed to read from query HTTP response body", err) - return - } - - // First check for specific error - resp := xmlErrorResponse{} - decodeErr := xml.Unmarshal(bodyBytes, &resp) - if decodeErr == nil { - reqID := resp.RequestID - if reqID == "" { - reqID = r.RequestID - } - r.Error = awserr.NewRequestFailure( - awserr.New(resp.Code, resp.Message, nil), - r.HTTPResponse.StatusCode, - reqID, - ) - return - } - - // Check for unhandled error - servUnavailResp := xmlServiceUnavailableResponse{} - unavailErr := xml.Unmarshal(bodyBytes, &servUnavailResp) - if unavailErr == nil { - r.Error = awserr.NewRequestFailure( - awserr.New("ServiceUnavailableException", "service is unavailable", nil), - r.HTTPResponse.StatusCode, - r.RequestID, - ) - return - } - - // Failed to retrieve any error message from the response body - r.Error = awserr.New("SerializationError", - "failed to decode query XML error response", decodeErr) -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_test.go deleted file mode 100644 index dbe0d99e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_test.go +++ /dev/null @@ -1,2068 +0,0 @@ -package query_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/query" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService1ProtocolTest client from just a session. -// svc := outputservice1protocoltest.New(mySession) -// -// // Create a OutputService1ProtocolTest client with additional configuration -// svc := outputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService1ProtocolTest { - c := p.ClientConfig("outputservice1protocoltest", cfgs...) - return newOutputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService1ProtocolTest { - svc := &OutputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService1TestCaseOperation1 = "OperationName" - -// OutputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService1TestCaseOperation1Request method. -// req, resp := client.OutputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1Request(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (req *request.Request, output *OutputService1TestShapeOutputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService1TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService1TestShapeOutputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService1TestShapeOutputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (*OutputService1TestShapeOutputService1TestCaseOperation1Output, error) { - req, out := c.OutputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Char *string `type:"character"` - - Double *float64 `type:"double"` - - FalseBool *bool `type:"boolean"` - - Float *float64 `type:"float"` - - Long *int64 `type:"long"` - - Num *int64 `locationName:"FooNum" type:"integer"` - - Str *string `type:"string"` - - Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - TrueBool *bool `type:"boolean"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService2ProtocolTest client from just a session. -// svc := outputservice2protocoltest.New(mySession) -// -// // Create a OutputService2ProtocolTest client with additional configuration -// svc := outputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService2ProtocolTest { - c := p.ClientConfig("outputservice2protocoltest", cfgs...) - return newOutputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService2ProtocolTest { - svc := &OutputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService2TestCaseOperation1 = "OperationName" - -// OutputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService2TestCaseOperation1Request method. -// req, resp := client.OutputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1Request(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (req *request.Request, output *OutputService2TestShapeOutputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService2TestShapeOutputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService2TestShapeOutputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (*OutputService2TestShapeOutputService2TestCaseOperation1Output, error) { - req, out := c.OutputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Num *int64 `type:"integer"` - - Str *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService3ProtocolTest client from just a session. -// svc := outputservice3protocoltest.New(mySession) -// -// // Create a OutputService3ProtocolTest client with additional configuration -// svc := outputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService3ProtocolTest { - c := p.ClientConfig("outputservice3protocoltest", cfgs...) - return newOutputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService3ProtocolTest { - svc := &OutputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService3TestCaseOperation1 = "OperationName" - -// OutputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService3TestCaseOperation1Request method. -// req, resp := client.OutputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1Request(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (req *request.Request, output *OutputService3TestShapeOutputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService3TestShapeOutputService3TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService3TestShapeOutputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (*OutputService3TestShapeOutputService3TestCaseOperation1Output, error) { - req, out := c.OutputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - // Blob is automatically base64 encoded/decoded by the SDK. - Blob []byte `type:"blob"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService4ProtocolTest client from just a session. -// svc := outputservice4protocoltest.New(mySession) -// -// // Create a OutputService4ProtocolTest client with additional configuration -// svc := outputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService4ProtocolTest { - c := p.ClientConfig("outputservice4protocoltest", cfgs...) - return newOutputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService4ProtocolTest { - svc := &OutputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService4TestCaseOperation1 = "OperationName" - -// OutputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService4TestCaseOperation1Request method. -// req, resp := client.OutputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1Request(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (req *request.Request, output *OutputService4TestShapeOutputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService4TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService4TestShapeOutputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService4TestShapeOutputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (*OutputService4TestShapeOutputService4TestCaseOperation1Output, error) { - req, out := c.OutputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService5ProtocolTest client from just a session. -// svc := outputservice5protocoltest.New(mySession) -// -// // Create a OutputService5ProtocolTest client with additional configuration -// svc := outputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService5ProtocolTest { - c := p.ClientConfig("outputservice5protocoltest", cfgs...) - return newOutputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService5ProtocolTest { - svc := &OutputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService5TestCaseOperation1 = "OperationName" - -// OutputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService5TestCaseOperation1Request method. -// req, resp := client.OutputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1Request(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (req *request.Request, output *OutputService5TestShapeOutputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService5TestShapeOutputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService5TestShapeOutputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (*OutputService5TestShapeOutputService5TestCaseOperation1Output, error) { - req, out := c.OutputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `locationNameList:"item" type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService6ProtocolTest client from just a session. -// svc := outputservice6protocoltest.New(mySession) -// -// // Create a OutputService6ProtocolTest client with additional configuration -// svc := outputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService6ProtocolTest { - c := p.ClientConfig("outputservice6protocoltest", cfgs...) - return newOutputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService6ProtocolTest { - svc := &OutputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService6TestCaseOperation1 = "OperationName" - -// OutputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService6TestCaseOperation1Request method. -// req, resp := client.OutputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1Request(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (req *request.Request, output *OutputService6TestShapeOutputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService6TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService6TestShapeOutputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService6TestShapeOutputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (*OutputService6TestShapeOutputService6TestCaseOperation1Output, error) { - req, out := c.OutputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService7ProtocolTest client from just a session. -// svc := outputservice7protocoltest.New(mySession) -// -// // Create a OutputService7ProtocolTest client with additional configuration -// svc := outputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService7ProtocolTest { - c := p.ClientConfig("outputservice7protocoltest", cfgs...) - return newOutputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService7ProtocolTest { - svc := &OutputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService7TestCaseOperation1 = "OperationName" - -// OutputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService7TestCaseOperation1Request method. -// req, resp := client.OutputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1Request(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (req *request.Request, output *OutputService7TestShapeOutputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService7TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService7TestShapeOutputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService7TestShapeOutputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (*OutputService7TestShapeOutputService7TestCaseOperation1Output, error) { - req, out := c.OutputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService8ProtocolTest client from just a session. -// svc := outputservice8protocoltest.New(mySession) -// -// // Create a OutputService8ProtocolTest client with additional configuration -// svc := outputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService8ProtocolTest { - c := p.ClientConfig("outputservice8protocoltest", cfgs...) - return newOutputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService8ProtocolTest { - svc := &OutputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService8TestCaseOperation1 = "OperationName" - -// OutputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService8TestCaseOperation1Request method. -// req, resp := client.OutputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1Request(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (req *request.Request, output *OutputService8TestShapeOutputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService8TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService8TestShapeOutputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService8TestShapeOutputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (*OutputService8TestShapeOutputService8TestCaseOperation1Output, error) { - req, out := c.OutputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - List []*OutputService8TestShapeStructureShape `type:"list"` -} - -type OutputService8TestShapeStructureShape struct { - _ struct{} `type:"structure"` - - Bar *string `type:"string"` - - Baz *string `type:"string"` - - Foo *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService9ProtocolTest client from just a session. -// svc := outputservice9protocoltest.New(mySession) -// -// // Create a OutputService9ProtocolTest client with additional configuration -// svc := outputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService9ProtocolTest { - c := p.ClientConfig("outputservice9protocoltest", cfgs...) - return newOutputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService9ProtocolTest { - svc := &OutputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService9TestCaseOperation1 = "OperationName" - -// OutputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService9TestCaseOperation1Request method. -// req, resp := client.OutputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1Request(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (req *request.Request, output *OutputService9TestShapeOutputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService9TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService9TestShapeOutputService9TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService9TestShapeOutputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (*OutputService9TestShapeOutputService9TestCaseOperation1Output, error) { - req, out := c.OutputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - List []*OutputService9TestShapeStructureShape `type:"list" flattened:"true"` -} - -type OutputService9TestShapeStructureShape struct { - _ struct{} `type:"structure"` - - Bar *string `type:"string"` - - Baz *string `type:"string"` - - Foo *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService10ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService10ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService10ProtocolTest client from just a session. -// svc := outputservice10protocoltest.New(mySession) -// -// // Create a OutputService10ProtocolTest client with additional configuration -// svc := outputservice10protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService10ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService10ProtocolTest { - c := p.ClientConfig("outputservice10protocoltest", cfgs...) - return newOutputService10ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService10ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService10ProtocolTest { - svc := &OutputService10ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice10protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService10ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService10ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService10TestCaseOperation1 = "OperationName" - -// OutputService10TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService10TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService10TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService10TestCaseOperation1Request method. -// req, resp := client.OutputService10TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1Request(input *OutputService10TestShapeOutputService10TestCaseOperation1Input) (req *request.Request, output *OutputService10TestShapeOutputService10TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService10TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService10TestShapeOutputService10TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService10TestShapeOutputService10TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1(input *OutputService10TestShapeOutputService10TestCaseOperation1Input) (*OutputService10TestShapeOutputService10TestCaseOperation1Output, error) { - req, out := c.OutputService10TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService10TestShapeOutputService10TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService10TestShapeOutputService10TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - List []*string `locationNameList:"NamedList" type:"list" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService11ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService11ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService11ProtocolTest client from just a session. -// svc := outputservice11protocoltest.New(mySession) -// -// // Create a OutputService11ProtocolTest client with additional configuration -// svc := outputservice11protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService11ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService11ProtocolTest { - c := p.ClientConfig("outputservice11protocoltest", cfgs...) - return newOutputService11ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService11ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService11ProtocolTest { - svc := &OutputService11ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice11protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService11ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService11ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService11TestCaseOperation1 = "OperationName" - -// OutputService11TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService11TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService11TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService11TestCaseOperation1Request method. -// req, resp := client.OutputService11TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1Request(input *OutputService11TestShapeOutputService11TestCaseOperation1Input) (req *request.Request, output *OutputService11TestShapeOutputService11TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService11TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService11TestShapeOutputService11TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService11TestShapeOutputService11TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1(input *OutputService11TestShapeOutputService11TestCaseOperation1Input) (*OutputService11TestShapeOutputService11TestCaseOperation1Output, error) { - req, out := c.OutputService11TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService11TestShapeOutputService11TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService11TestShapeOutputService11TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*OutputService11TestShapeStructType `type:"map"` -} - -type OutputService11TestShapeStructType struct { - _ struct{} `type:"structure"` - - Foo *string `locationName:"foo" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService12ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService12ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService12ProtocolTest client from just a session. -// svc := outputservice12protocoltest.New(mySession) -// -// // Create a OutputService12ProtocolTest client with additional configuration -// svc := outputservice12protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService12ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService12ProtocolTest { - c := p.ClientConfig("outputservice12protocoltest", cfgs...) - return newOutputService12ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService12ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService12ProtocolTest { - svc := &OutputService12ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice12protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService12ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService12ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService12TestCaseOperation1 = "OperationName" - -// OutputService12TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService12TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService12TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService12TestCaseOperation1Request method. -// req, resp := client.OutputService12TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService12ProtocolTest) OutputService12TestCaseOperation1Request(input *OutputService12TestShapeOutputService12TestCaseOperation1Input) (req *request.Request, output *OutputService12TestShapeOutputService12TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService12TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService12TestShapeOutputService12TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService12TestShapeOutputService12TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService12ProtocolTest) OutputService12TestCaseOperation1(input *OutputService12TestShapeOutputService12TestCaseOperation1Input) (*OutputService12TestShapeOutputService12TestCaseOperation1Output, error) { - req, out := c.OutputService12TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService12TestShapeOutputService12TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService12TestShapeOutputService12TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*string `type:"map" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService13ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService13ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService13ProtocolTest client from just a session. -// svc := outputservice13protocoltest.New(mySession) -// -// // Create a OutputService13ProtocolTest client with additional configuration -// svc := outputservice13protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService13ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService13ProtocolTest { - c := p.ClientConfig("outputservice13protocoltest", cfgs...) - return newOutputService13ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService13ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService13ProtocolTest { - svc := &OutputService13ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice13protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService13ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService13ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService13TestCaseOperation1 = "OperationName" - -// OutputService13TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService13TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService13TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService13TestCaseOperation1Request method. -// req, resp := client.OutputService13TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService13ProtocolTest) OutputService13TestCaseOperation1Request(input *OutputService13TestShapeOutputService13TestCaseOperation1Input) (req *request.Request, output *OutputService13TestShapeOutputService13TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService13TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService13TestShapeOutputService13TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService13TestShapeOutputService13TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService13ProtocolTest) OutputService13TestCaseOperation1(input *OutputService13TestShapeOutputService13TestCaseOperation1Input) (*OutputService13TestShapeOutputService13TestCaseOperation1Output, error) { - req, out := c.OutputService13TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService13TestShapeOutputService13TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService13TestShapeOutputService13TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*string `locationName:"Attribute" locationNameKey:"Name" locationNameValue:"Value" type:"map" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService14ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService14ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService14ProtocolTest client from just a session. -// svc := outputservice14protocoltest.New(mySession) -// -// // Create a OutputService14ProtocolTest client with additional configuration -// svc := outputservice14protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService14ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService14ProtocolTest { - c := p.ClientConfig("outputservice14protocoltest", cfgs...) - return newOutputService14ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService14ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService14ProtocolTest { - svc := &OutputService14ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice14protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService14ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService14ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService14TestCaseOperation1 = "OperationName" - -// OutputService14TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService14TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService14TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService14TestCaseOperation1Request method. -// req, resp := client.OutputService14TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService14ProtocolTest) OutputService14TestCaseOperation1Request(input *OutputService14TestShapeOutputService14TestCaseOperation1Input) (req *request.Request, output *OutputService14TestShapeOutputService14TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService14TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService14TestShapeOutputService14TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService14TestShapeOutputService14TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService14ProtocolTest) OutputService14TestCaseOperation1(input *OutputService14TestShapeOutputService14TestCaseOperation1Input) (*OutputService14TestShapeOutputService14TestCaseOperation1Output, error) { - req, out := c.OutputService14TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService14TestShapeOutputService14TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService14TestShapeOutputService14TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*string `locationNameKey:"foo" locationNameValue:"bar" type:"map" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService15ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService15ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService15ProtocolTest client from just a session. -// svc := outputservice15protocoltest.New(mySession) -// -// // Create a OutputService15ProtocolTest client with additional configuration -// svc := outputservice15protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService15ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService15ProtocolTest { - c := p.ClientConfig("outputservice15protocoltest", cfgs...) - return newOutputService15ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService15ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService15ProtocolTest { - svc := &OutputService15ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice15protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService15ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService15ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService15TestCaseOperation1 = "OperationName" - -// OutputService15TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService15TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService15TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService15TestCaseOperation1Request method. -// req, resp := client.OutputService15TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService15ProtocolTest) OutputService15TestCaseOperation1Request(input *OutputService15TestShapeOutputService15TestCaseOperation1Input) (req *request.Request, output *OutputService15TestShapeOutputService15TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService15TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService15TestShapeOutputService15TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService15TestShapeOutputService15TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService15ProtocolTest) OutputService15TestCaseOperation1(input *OutputService15TestShapeOutputService15TestCaseOperation1Input) (*OutputService15TestShapeOutputService15TestCaseOperation1Output, error) { - req, out := c.OutputService15TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService15TestShapeOutputService15TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService15TestShapeOutputService15TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Foo *string `type:"string"` -} - -// -// Tests begin here -// - -func TestOutputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewOutputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("myname123falsetrue1.21.3200a2015-01-25T08:00:00Zrequest-id")) - req, out := svc.OutputService1TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.Char) - assert.Equal(t, 1.3, *out.Double) - assert.Equal(t, false, *out.FalseBool) - assert.Equal(t, 1.2, *out.Float) - assert.Equal(t, int64(200), *out.Long) - assert.Equal(t, int64(123), *out.Num) - assert.Equal(t, "myname", *out.Str) - assert.Equal(t, time.Unix(1.4221728e+09, 0).UTC().String(), out.Timestamp.String()) - assert.Equal(t, true, *out.TrueBool) - -} - -func TestOutputService2ProtocolTestNotAllMembersInResponseCase1(t *testing.T) { - svc := NewOutputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("mynamerequest-id")) - req, out := svc.OutputService2TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "myname", *out.Str) - -} - -func TestOutputService3ProtocolTestBlobCase1(t *testing.T) { - svc := NewOutputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("dmFsdWU=requestid")) - req, out := svc.OutputService3TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "value", string(out.Blob)) - -} - -func TestOutputService4ProtocolTestListsCase1(t *testing.T) { - svc := NewOutputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123requestid")) - req, out := svc.OutputService4TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService5ProtocolTestListWithCustomMemberNameCase1(t *testing.T) { - svc := NewOutputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123requestid")) - req, out := svc.OutputService5TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService6ProtocolTestFlattenedListCase1(t *testing.T) { - svc := NewOutputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123requestid")) - req, out := svc.OutputService6TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService7ProtocolTestFlattenedSingleElementListCase1(t *testing.T) { - svc := NewOutputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abcrequestid")) - req, out := svc.OutputService7TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - -} - -func TestOutputService8ProtocolTestListOfStructuresCase1(t *testing.T) { - svc := NewOutputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("firstfoofirstbarfirstbazsecondfoosecondbarsecondbazrequestid")) - req, out := svc.OutputService8TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "firstbar", *out.List[0].Bar) - assert.Equal(t, "firstbaz", *out.List[0].Baz) - assert.Equal(t, "firstfoo", *out.List[0].Foo) - assert.Equal(t, "secondbar", *out.List[1].Bar) - assert.Equal(t, "secondbaz", *out.List[1].Baz) - assert.Equal(t, "secondfoo", *out.List[1].Foo) - -} - -func TestOutputService9ProtocolTestFlattenedListOfStructuresCase1(t *testing.T) { - svc := NewOutputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("firstfoofirstbarfirstbazsecondfoosecondbarsecondbazrequestid")) - req, out := svc.OutputService9TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "firstbar", *out.List[0].Bar) - assert.Equal(t, "firstbaz", *out.List[0].Baz) - assert.Equal(t, "firstfoo", *out.List[0].Foo) - assert.Equal(t, "secondbar", *out.List[1].Bar) - assert.Equal(t, "secondbaz", *out.List[1].Baz) - assert.Equal(t, "secondfoo", *out.List[1].Foo) - -} - -func TestOutputService10ProtocolTestFlattenedListWithLocationNameCase1(t *testing.T) { - svc := NewOutputService10ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abrequestid")) - req, out := svc.OutputService10TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.List[0]) - assert.Equal(t, "b", *out.List[1]) - -} - -func TestOutputService11ProtocolTestNormalMapCase1(t *testing.T) { - svc := NewOutputService11ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbamrequestid")) - req, out := svc.OutputService11TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"].Foo) - assert.Equal(t, "bar", *out.Map["qux"].Foo) - -} - -func TestOutputService12ProtocolTestFlattenedMapCase1(t *testing.T) { - svc := NewOutputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbamrequestid")) - req, out := svc.OutputService12TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"]) - assert.Equal(t, "bar", *out.Map["qux"]) - -} - -func TestOutputService13ProtocolTestFlattenedMapInShapeDefinitionCase1(t *testing.T) { - svc := NewOutputService13ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarrequestid")) - req, out := svc.OutputService13TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bar", *out.Map["qux"]) - -} - -func TestOutputService14ProtocolTestNamedMapCase1(t *testing.T) { - svc := NewOutputService14ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbamrequestid")) - req, out := svc.OutputService14TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"]) - assert.Equal(t, "bar", *out.Map["qux"]) - -} - -func TestOutputService15ProtocolTestEmptyStringCase1(t *testing.T) { - svc := NewOutputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("requestid")) - req, out := svc.OutputService15TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - query.UnmarshalMeta(req) - query.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "", *out.Foo) - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go deleted file mode 100644 index 5f412516..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go +++ /dev/null @@ -1,256 +0,0 @@ -// Package rest provides RESTful serialization of AWS requests and responses. -package rest - -import ( - "bytes" - "encoding/base64" - "fmt" - "io" - "net/http" - "net/url" - "path" - "reflect" - "strconv" - "strings" - "time" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" -) - -// RFC822 returns an RFC822 formatted timestamp for AWS protocols -const RFC822 = "Mon, 2 Jan 2006 15:04:05 GMT" - -// Whether the byte value can be sent without escaping in AWS URLs -var noEscape [256]bool - -var errValueNotSet = fmt.Errorf("value not set") - -func init() { - for i := 0; i < len(noEscape); i++ { - // AWS expects every character except these to be escaped - noEscape[i] = (i >= 'A' && i <= 'Z') || - (i >= 'a' && i <= 'z') || - (i >= '0' && i <= '9') || - i == '-' || - i == '.' || - i == '_' || - i == '~' - } -} - -// BuildHandler is a named request handler for building rest protocol requests -var BuildHandler = request.NamedHandler{Name: "awssdk.rest.Build", Fn: Build} - -// Build builds the REST component of a service request. -func Build(r *request.Request) { - if r.ParamsFilled() { - v := reflect.ValueOf(r.Params).Elem() - buildLocationElements(r, v) - buildBody(r, v) - } -} - -func buildLocationElements(r *request.Request, v reflect.Value) { - query := r.HTTPRequest.URL.Query() - - for i := 0; i < v.NumField(); i++ { - m := v.Field(i) - if n := v.Type().Field(i).Name; n[0:1] == strings.ToLower(n[0:1]) { - continue - } - - if m.IsValid() { - field := v.Type().Field(i) - name := field.Tag.Get("locationName") - if name == "" { - name = field.Name - } - if m.Kind() == reflect.Ptr { - m = m.Elem() - } - if !m.IsValid() { - continue - } - - var err error - switch field.Tag.Get("location") { - case "headers": // header maps - err = buildHeaderMap(&r.HTTPRequest.Header, m, field.Tag.Get("locationName")) - case "header": - err = buildHeader(&r.HTTPRequest.Header, m, name) - case "uri": - err = buildURI(r.HTTPRequest.URL, m, name) - case "querystring": - err = buildQueryString(query, m, name) - } - r.Error = err - } - if r.Error != nil { - return - } - } - - r.HTTPRequest.URL.RawQuery = query.Encode() - updatePath(r.HTTPRequest.URL, r.HTTPRequest.URL.Path) -} - -func buildBody(r *request.Request, v reflect.Value) { - if field, ok := v.Type().FieldByName("_"); ok { - if payloadName := field.Tag.Get("payload"); payloadName != "" { - pfield, _ := v.Type().FieldByName(payloadName) - if ptag := pfield.Tag.Get("type"); ptag != "" && ptag != "structure" { - payload := reflect.Indirect(v.FieldByName(payloadName)) - if payload.IsValid() && payload.Interface() != nil { - switch reader := payload.Interface().(type) { - case io.ReadSeeker: - r.SetReaderBody(reader) - case []byte: - r.SetBufferBody(reader) - case string: - r.SetStringBody(reader) - default: - r.Error = awserr.New("SerializationError", - "failed to encode REST request", - fmt.Errorf("unknown payload type %s", payload.Type())) - } - } - } - } - } -} - -func buildHeader(header *http.Header, v reflect.Value, name string) error { - str, err := convertType(v) - if err == errValueNotSet { - return nil - } else if err != nil { - return awserr.New("SerializationError", "failed to encode REST request", err) - } - - header.Add(name, str) - - return nil -} - -func buildHeaderMap(header *http.Header, v reflect.Value, prefix string) error { - for _, key := range v.MapKeys() { - str, err := convertType(v.MapIndex(key)) - if err == errValueNotSet { - continue - } else if err != nil { - return awserr.New("SerializationError", "failed to encode REST request", err) - - } - - header.Add(prefix+key.String(), str) - } - return nil -} - -func buildURI(u *url.URL, v reflect.Value, name string) error { - value, err := convertType(v) - if err == errValueNotSet { - return nil - } else if err != nil { - return awserr.New("SerializationError", "failed to encode REST request", err) - } - - uri := u.Path - uri = strings.Replace(uri, "{"+name+"}", EscapePath(value, true), -1) - uri = strings.Replace(uri, "{"+name+"+}", EscapePath(value, false), -1) - u.Path = uri - - return nil -} - -func buildQueryString(query url.Values, v reflect.Value, name string) error { - switch value := v.Interface().(type) { - case []*string: - for _, item := range value { - query.Add(name, *item) - } - case map[string]*string: - for key, item := range value { - query.Add(key, *item) - } - case map[string][]*string: - for key, items := range value { - for _, item := range items { - query.Add(key, *item) - } - } - default: - str, err := convertType(v) - if err == errValueNotSet { - return nil - } else if err != nil { - return awserr.New("SerializationError", "failed to encode REST request", err) - } - query.Set(name, str) - } - - return nil -} - -func updatePath(url *url.URL, urlPath string) { - scheme, query := url.Scheme, url.RawQuery - - hasSlash := strings.HasSuffix(urlPath, "/") - - // clean up path - urlPath = path.Clean(urlPath) - if hasSlash && !strings.HasSuffix(urlPath, "/") { - urlPath += "/" - } - - // get formatted URL minus scheme so we can build this into Opaque - url.Scheme, url.Path, url.RawQuery = "", "", "" - s := url.String() - url.Scheme = scheme - url.RawQuery = query - - // build opaque URI - url.Opaque = s + urlPath -} - -// EscapePath escapes part of a URL path in Amazon style -func EscapePath(path string, encodeSep bool) string { - var buf bytes.Buffer - for i := 0; i < len(path); i++ { - c := path[i] - if noEscape[c] || (c == '/' && !encodeSep) { - buf.WriteByte(c) - } else { - fmt.Fprintf(&buf, "%%%02X", c) - } - } - return buf.String() -} - -func convertType(v reflect.Value) (string, error) { - v = reflect.Indirect(v) - if !v.IsValid() { - return "", errValueNotSet - } - - var str string - switch value := v.Interface().(type) { - case string: - str = value - case []byte: - str = base64.StdEncoding.EncodeToString(value) - case bool: - str = strconv.FormatBool(value) - case int64: - str = strconv.FormatInt(value, 10) - case float64: - str = strconv.FormatFloat(value, 'f', -1, 64) - case time.Time: - str = value.UTC().Format(RFC822) - default: - err := fmt.Errorf("Unsupported value for param %v (%s)", v.Interface(), v.Type()) - return "", err - } - return str, nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go deleted file mode 100644 index 4366de2e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go +++ /dev/null @@ -1,45 +0,0 @@ -package rest - -import "reflect" - -// PayloadMember returns the payload field member of i if there is one, or nil. -func PayloadMember(i interface{}) interface{} { - if i == nil { - return nil - } - - v := reflect.ValueOf(i).Elem() - if !v.IsValid() { - return nil - } - if field, ok := v.Type().FieldByName("_"); ok { - if payloadName := field.Tag.Get("payload"); payloadName != "" { - field, _ := v.Type().FieldByName(payloadName) - if field.Tag.Get("type") != "structure" { - return nil - } - - payload := v.FieldByName(payloadName) - if payload.IsValid() || (payload.Kind() == reflect.Ptr && !payload.IsNil()) { - return payload.Interface() - } - } - } - return nil -} - -// PayloadType returns the type of a payload field member of i if there is one, or "". -func PayloadType(i interface{}) string { - v := reflect.Indirect(reflect.ValueOf(i)) - if !v.IsValid() { - return "" - } - if field, ok := v.Type().FieldByName("_"); ok { - if payloadName := field.Tag.Get("payload"); payloadName != "" { - if member, ok := v.Type().FieldByName(payloadName); ok { - return member.Tag.Get("type") - } - } - } - return "" -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go deleted file mode 100644 index 2cba1d9a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go +++ /dev/null @@ -1,198 +0,0 @@ -package rest - -import ( - "encoding/base64" - "fmt" - "io" - "io/ioutil" - "net/http" - "reflect" - "strconv" - "strings" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" -) - -// UnmarshalHandler is a named request handler for unmarshaling rest protocol requests -var UnmarshalHandler = request.NamedHandler{Name: "awssdk.rest.Unmarshal", Fn: Unmarshal} - -// UnmarshalMetaHandler is a named request handler for unmarshaling rest protocol request metadata -var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.rest.UnmarshalMeta", Fn: UnmarshalMeta} - -// Unmarshal unmarshals the REST component of a response in a REST service. -func Unmarshal(r *request.Request) { - if r.DataFilled() { - v := reflect.Indirect(reflect.ValueOf(r.Data)) - unmarshalBody(r, v) - } -} - -// UnmarshalMeta unmarshals the REST metadata of a response in a REST service -func UnmarshalMeta(r *request.Request) { - r.RequestID = r.HTTPResponse.Header.Get("X-Amzn-Requestid") - if r.RequestID == "" { - // Alternative version of request id in the header - r.RequestID = r.HTTPResponse.Header.Get("X-Amz-Request-Id") - } - if r.DataFilled() { - v := reflect.Indirect(reflect.ValueOf(r.Data)) - unmarshalLocationElements(r, v) - } -} - -func unmarshalBody(r *request.Request, v reflect.Value) { - if field, ok := v.Type().FieldByName("_"); ok { - if payloadName := field.Tag.Get("payload"); payloadName != "" { - pfield, _ := v.Type().FieldByName(payloadName) - if ptag := pfield.Tag.Get("type"); ptag != "" && ptag != "structure" { - payload := v.FieldByName(payloadName) - if payload.IsValid() { - switch payload.Interface().(type) { - case []byte: - defer r.HTTPResponse.Body.Close() - b, err := ioutil.ReadAll(r.HTTPResponse.Body) - if err != nil { - r.Error = awserr.New("SerializationError", "failed to decode REST response", err) - } else { - payload.Set(reflect.ValueOf(b)) - } - case *string: - defer r.HTTPResponse.Body.Close() - b, err := ioutil.ReadAll(r.HTTPResponse.Body) - if err != nil { - r.Error = awserr.New("SerializationError", "failed to decode REST response", err) - } else { - str := string(b) - payload.Set(reflect.ValueOf(&str)) - } - default: - switch payload.Type().String() { - case "io.ReadSeeker": - payload.Set(reflect.ValueOf(aws.ReadSeekCloser(r.HTTPResponse.Body))) - case "aws.ReadSeekCloser", "io.ReadCloser": - payload.Set(reflect.ValueOf(r.HTTPResponse.Body)) - default: - io.Copy(ioutil.Discard, r.HTTPResponse.Body) - defer r.HTTPResponse.Body.Close() - r.Error = awserr.New("SerializationError", - "failed to decode REST response", - fmt.Errorf("unknown payload type %s", payload.Type())) - } - } - } - } - } - } -} - -func unmarshalLocationElements(r *request.Request, v reflect.Value) { - for i := 0; i < v.NumField(); i++ { - m, field := v.Field(i), v.Type().Field(i) - if n := field.Name; n[0:1] == strings.ToLower(n[0:1]) { - continue - } - - if m.IsValid() { - name := field.Tag.Get("locationName") - if name == "" { - name = field.Name - } - - switch field.Tag.Get("location") { - case "statusCode": - unmarshalStatusCode(m, r.HTTPResponse.StatusCode) - case "header": - err := unmarshalHeader(m, r.HTTPResponse.Header.Get(name)) - if err != nil { - r.Error = awserr.New("SerializationError", "failed to decode REST response", err) - break - } - case "headers": - prefix := field.Tag.Get("locationName") - err := unmarshalHeaderMap(m, r.HTTPResponse.Header, prefix) - if err != nil { - r.Error = awserr.New("SerializationError", "failed to decode REST response", err) - break - } - } - } - if r.Error != nil { - return - } - } -} - -func unmarshalStatusCode(v reflect.Value, statusCode int) { - if !v.IsValid() { - return - } - - switch v.Interface().(type) { - case *int64: - s := int64(statusCode) - v.Set(reflect.ValueOf(&s)) - } -} - -func unmarshalHeaderMap(r reflect.Value, headers http.Header, prefix string) error { - switch r.Interface().(type) { - case map[string]*string: // we only support string map value types - out := map[string]*string{} - for k, v := range headers { - k = http.CanonicalHeaderKey(k) - if strings.HasPrefix(strings.ToLower(k), strings.ToLower(prefix)) { - out[k[len(prefix):]] = &v[0] - } - } - r.Set(reflect.ValueOf(out)) - } - return nil -} - -func unmarshalHeader(v reflect.Value, header string) error { - if !v.IsValid() || (header == "" && v.Elem().Kind() != reflect.String) { - return nil - } - - switch v.Interface().(type) { - case *string: - v.Set(reflect.ValueOf(&header)) - case []byte: - b, err := base64.StdEncoding.DecodeString(header) - if err != nil { - return err - } - v.Set(reflect.ValueOf(&b)) - case *bool: - b, err := strconv.ParseBool(header) - if err != nil { - return err - } - v.Set(reflect.ValueOf(&b)) - case *int64: - i, err := strconv.ParseInt(header, 10, 64) - if err != nil { - return err - } - v.Set(reflect.ValueOf(&i)) - case *float64: - f, err := strconv.ParseFloat(header, 64) - if err != nil { - return err - } - v.Set(reflect.ValueOf(&f)) - case *time.Time: - t, err := time.Parse(RFC822, header) - if err != nil { - return err - } - v.Set(reflect.ValueOf(&t)) - default: - err := fmt.Errorf("Unsupported value for param %v (%s)", v.Interface(), v.Type()) - return err - } - return nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_bench_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_bench_test.go deleted file mode 100644 index 31e1d6c0..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_bench_test.go +++ /dev/null @@ -1,356 +0,0 @@ -// +build bench - -package restjson_test - -import ( - "bytes" - "encoding/json" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/private/protocol/rest" - "github.com/aws/aws-sdk-go/private/protocol/restjson" - "github.com/aws/aws-sdk-go/service/elastictranscoder" -) - -func BenchmarkRESTJSONBuild_Complex_elastictranscoderCreateJobInput(b *testing.B) { - svc := awstesting.NewClient() - svc.ServiceName = "elastictranscoder" - svc.APIVersion = "2012-09-25" - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(&request.Operation{Name: "CreateJobInput"}, restjsonBuildParms, nil) - restjson.Build(r) - if r.Error != nil { - b.Fatal("Unexpected error", r.Error) - } - } -} - -func BenchmarkRESTBuild_Complex_elastictranscoderCreateJobInput(b *testing.B) { - svc := awstesting.NewClient() - svc.ServiceName = "elastictranscoder" - svc.APIVersion = "2012-09-25" - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(&request.Operation{Name: "CreateJobInput"}, restjsonBuildParms, nil) - rest.Build(r) - if r.Error != nil { - b.Fatal("Unexpected error", r.Error) - } - } -} - -func BenchmarkEncodingJSONMarshal_Complex_elastictranscoderCreateJobInput(b *testing.B) { - params := restjsonBuildParms - - for i := 0; i < b.N; i++ { - buf := &bytes.Buffer{} - encoder := json.NewEncoder(buf) - if err := encoder.Encode(params); err != nil { - b.Fatal("Unexpected error", err) - } - } -} - -func BenchmarkRESTJSONBuild_Simple_elastictranscoderListJobsByPipeline(b *testing.B) { - svc := awstesting.NewClient() - svc.ServiceName = "elastictranscoder" - svc.APIVersion = "2012-09-25" - - params := &elastictranscoder.ListJobsByPipelineInput{ - PipelineId: aws.String("Id"), // Required - Ascending: aws.String("Ascending"), - PageToken: aws.String("Id"), - } - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(&request.Operation{Name: "ListJobsByPipeline"}, params, nil) - restjson.Build(r) - if r.Error != nil { - b.Fatal("Unexpected error", r.Error) - } - } -} - -func BenchmarkRESTBuild_Simple_elastictranscoderListJobsByPipeline(b *testing.B) { - svc := awstesting.NewClient() - svc.ServiceName = "elastictranscoder" - svc.APIVersion = "2012-09-25" - - params := &elastictranscoder.ListJobsByPipelineInput{ - PipelineId: aws.String("Id"), // Required - Ascending: aws.String("Ascending"), - PageToken: aws.String("Id"), - } - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(&request.Operation{Name: "ListJobsByPipeline"}, params, nil) - rest.Build(r) - if r.Error != nil { - b.Fatal("Unexpected error", r.Error) - } - } -} - -func BenchmarkEncodingJSONMarshal_Simple_elastictranscoderListJobsByPipeline(b *testing.B) { - params := &elastictranscoder.ListJobsByPipelineInput{ - PipelineId: aws.String("Id"), // Required - Ascending: aws.String("Ascending"), - PageToken: aws.String("Id"), - } - - for i := 0; i < b.N; i++ { - buf := &bytes.Buffer{} - encoder := json.NewEncoder(buf) - if err := encoder.Encode(params); err != nil { - b.Fatal("Unexpected error", err) - } - } -} - -var restjsonBuildParms = &elastictranscoder.CreateJobInput{ - Input: &elastictranscoder.JobInput{ // Required - AspectRatio: aws.String("AspectRatio"), - Container: aws.String("JobContainer"), - DetectedProperties: &elastictranscoder.DetectedProperties{ - DurationMillis: aws.Int64(1), - FileSize: aws.Int64(1), - FrameRate: aws.String("FloatString"), - Height: aws.Int64(1), - Width: aws.Int64(1), - }, - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - FrameRate: aws.String("FrameRate"), - Interlaced: aws.String("Interlaced"), - Key: aws.String("Key"), - Resolution: aws.String("Resolution"), - }, - PipelineId: aws.String("Id"), // Required - Output: &elastictranscoder.CreateJobOutput{ - AlbumArt: &elastictranscoder.JobAlbumArt{ - Artwork: []*elastictranscoder.Artwork{ - { // Required - AlbumArtFormat: aws.String("JpgOrPng"), - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - MaxHeight: aws.String("DigitsOrAuto"), - MaxWidth: aws.String("DigitsOrAuto"), - PaddingPolicy: aws.String("PaddingPolicy"), - SizingPolicy: aws.String("SizingPolicy"), - }, - // More values... - }, - MergePolicy: aws.String("MergePolicy"), - }, - Captions: &elastictranscoder.Captions{ - CaptionFormats: []*elastictranscoder.CaptionFormat{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Format: aws.String("CaptionFormatFormat"), - Pattern: aws.String("CaptionFormatPattern"), - }, - // More values... - }, - CaptionSources: []*elastictranscoder.CaptionSource{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("Key"), - Label: aws.String("Name"), - Language: aws.String("Key"), - TimeOffset: aws.String("TimeOffset"), - }, - // More values... - }, - MergePolicy: aws.String("CaptionMergePolicy"), - }, - Composition: []*elastictranscoder.Clip{ - { // Required - TimeSpan: &elastictranscoder.TimeSpan{ - Duration: aws.String("Time"), - StartTime: aws.String("Time"), - }, - }, - // More values... - }, - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("Key"), - PresetId: aws.String("Id"), - Rotate: aws.String("Rotate"), - SegmentDuration: aws.String("FloatString"), - ThumbnailEncryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - ThumbnailPattern: aws.String("ThumbnailPattern"), - Watermarks: []*elastictranscoder.JobWatermark{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - PresetWatermarkId: aws.String("PresetWatermarkId"), - }, - // More values... - }, - }, - OutputKeyPrefix: aws.String("Key"), - Outputs: []*elastictranscoder.CreateJobOutput{ - { // Required - AlbumArt: &elastictranscoder.JobAlbumArt{ - Artwork: []*elastictranscoder.Artwork{ - { // Required - AlbumArtFormat: aws.String("JpgOrPng"), - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - MaxHeight: aws.String("DigitsOrAuto"), - MaxWidth: aws.String("DigitsOrAuto"), - PaddingPolicy: aws.String("PaddingPolicy"), - SizingPolicy: aws.String("SizingPolicy"), - }, - // More values... - }, - MergePolicy: aws.String("MergePolicy"), - }, - Captions: &elastictranscoder.Captions{ - CaptionFormats: []*elastictranscoder.CaptionFormat{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Format: aws.String("CaptionFormatFormat"), - Pattern: aws.String("CaptionFormatPattern"), - }, - // More values... - }, - CaptionSources: []*elastictranscoder.CaptionSource{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("Key"), - Label: aws.String("Name"), - Language: aws.String("Key"), - TimeOffset: aws.String("TimeOffset"), - }, - // More values... - }, - MergePolicy: aws.String("CaptionMergePolicy"), - }, - Composition: []*elastictranscoder.Clip{ - { // Required - TimeSpan: &elastictranscoder.TimeSpan{ - Duration: aws.String("Time"), - StartTime: aws.String("Time"), - }, - }, - // More values... - }, - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("Key"), - PresetId: aws.String("Id"), - Rotate: aws.String("Rotate"), - SegmentDuration: aws.String("FloatString"), - ThumbnailEncryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - ThumbnailPattern: aws.String("ThumbnailPattern"), - Watermarks: []*elastictranscoder.JobWatermark{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - PresetWatermarkId: aws.String("PresetWatermarkId"), - }, - // More values... - }, - }, - // More values... - }, - Playlists: []*elastictranscoder.CreateJobPlaylist{ - { // Required - Format: aws.String("PlaylistFormat"), - HlsContentProtection: &elastictranscoder.HlsContentProtection{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - KeyStoragePolicy: aws.String("KeyStoragePolicy"), - LicenseAcquisitionUrl: aws.String("ZeroTo512String"), - Method: aws.String("HlsContentProtectionMethod"), - }, - Name: aws.String("Filename"), - OutputKeys: []*string{ - aws.String("Key"), // Required - // More values... - }, - PlayReadyDrm: &elastictranscoder.PlayReadyDrm{ - Format: aws.String("PlayReadyDrmFormatString"), - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("NonEmptyBase64EncodedString"), - KeyId: aws.String("KeyIdGuid"), - KeyMd5: aws.String("NonEmptyBase64EncodedString"), - LicenseAcquisitionUrl: aws.String("OneTo512String"), - }, - }, - // More values... - }, - UserMetadata: map[string]*string{ - "Key": aws.String("String"), // Required - // More values... - }, -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_test.go deleted file mode 100644 index a12e6fb8..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_test.go +++ /dev/null @@ -1,3524 +0,0 @@ -package restjson_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/restjson" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService1ProtocolTest client from just a session. -// svc := inputservice1protocoltest.New(mySession) -// -// // Create a InputService1ProtocolTest client with additional configuration -// svc := inputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService1ProtocolTest { - c := p.ClientConfig("inputservice1protocoltest", cfgs...) - return newInputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService1ProtocolTest { - svc := &InputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService1TestCaseOperation1 = "OperationName" - -// InputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation1Request method. -// req, resp := client.InputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputService1TestCaseOperation1Input) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobs", - } - - if input == nil { - input = &InputService1TestShapeInputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputService1TestCaseOperation1Input) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) { - req, out := c.InputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService1TestShapeInputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService2ProtocolTest client from just a session. -// svc := inputservice2protocoltest.New(mySession) -// -// // Create a InputService2ProtocolTest client with additional configuration -// svc := inputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService2ProtocolTest { - c := p.ClientConfig("inputservice2protocoltest", cfgs...) - return newInputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService2ProtocolTest { - svc := &InputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService2TestCaseOperation1 = "OperationName" - -// InputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService2TestCaseOperation1Request method. -// req, resp := client.InputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputService2TestCaseOperation1Input) (req *request.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService2TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService2TestShapeInputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService2TestShapeInputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputService2TestCaseOperation1Input) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) { - req, out := c.InputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService2TestShapeInputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - PipelineId *string `location:"uri" type:"string"` -} - -type InputService2TestShapeInputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService3ProtocolTest client from just a session. -// svc := inputservice3protocoltest.New(mySession) -// -// // Create a InputService3ProtocolTest client with additional configuration -// svc := inputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService3ProtocolTest { - c := p.ClientConfig("inputservice3protocoltest", cfgs...) - return newInputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService3ProtocolTest { - svc := &InputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService3TestCaseOperation1 = "OperationName" - -// InputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation1Request method. -// req, resp := client.InputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputService3TestCaseOperation1Input) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService3TestShapeInputService3TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputService3TestCaseOperation1Input) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) { - req, out := c.InputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService3TestShapeInputService3TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Foo *string `location:"uri" locationName:"PipelineId" type:"string"` -} - -type InputService3TestShapeInputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService4ProtocolTest client from just a session. -// svc := inputservice4protocoltest.New(mySession) -// -// // Create a InputService4ProtocolTest client with additional configuration -// svc := inputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService4ProtocolTest { - c := p.ClientConfig("inputservice4protocoltest", cfgs...) - return newInputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService4ProtocolTest { - svc := &InputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService4TestCaseOperation1 = "OperationName" - -// InputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService4TestCaseOperation1Request method. -// req, resp := client.InputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputService4TestCaseOperation1Input) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService4TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService4TestShapeInputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService4TestShapeInputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputService4TestCaseOperation1Input) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) { - req, out := c.InputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService4TestShapeInputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Items []*string `location:"querystring" locationName:"item" type:"list"` -} - -type InputService4TestShapeInputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService5ProtocolTest client from just a session. -// svc := inputservice5protocoltest.New(mySession) -// -// // Create a InputService5ProtocolTest client with additional configuration -// svc := inputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService5ProtocolTest { - c := p.ClientConfig("inputservice5protocoltest", cfgs...) - return newInputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService5ProtocolTest { - svc := &InputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService5TestCaseOperation1 = "OperationName" - -// InputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation1Request method. -// req, resp := client.InputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputService5TestCaseOperation1Input) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService5TestShapeInputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputService5TestCaseOperation1Input) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) { - req, out := c.InputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService5TestShapeInputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - PipelineId *string `location:"uri" type:"string"` - - QueryDoc map[string]*string `location:"querystring" type:"map"` -} - -type InputService5TestShapeInputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService6ProtocolTest client from just a session. -// svc := inputservice6protocoltest.New(mySession) -// -// // Create a InputService6ProtocolTest client with additional configuration -// svc := inputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService6ProtocolTest { - c := p.ClientConfig("inputservice6protocoltest", cfgs...) - return newInputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService6ProtocolTest { - svc := &InputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService6TestCaseOperation1 = "OperationName" - -// InputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService6TestCaseOperation1Request method. -// req, resp := client.InputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputService6TestCaseOperation1Input) (req *request.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService6TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService6TestShapeInputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService6TestShapeInputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputService6TestCaseOperation1Input) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) { - req, out := c.InputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService6TestShapeInputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - PipelineId *string `location:"uri" type:"string"` - - QueryDoc map[string][]*string `location:"querystring" type:"map"` -} - -type InputService6TestShapeInputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService7ProtocolTest client from just a session. -// svc := inputservice7protocoltest.New(mySession) -// -// // Create a InputService7ProtocolTest client with additional configuration -// svc := inputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService7ProtocolTest { - c := p.ClientConfig("inputservice7protocoltest", cfgs...) - return newInputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService7ProtocolTest { - svc := &InputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService7TestCaseOperation1 = "OperationName" - -// InputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService7TestCaseOperation1Request method. -// req, resp := client.InputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputService7TestCaseOperation1Input) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService7TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService7TestShapeInputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService7TestShapeInputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputService7TestCaseOperation1Input) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) { - req, out := c.InputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService7TestShapeInputService7TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Ascending *string `location:"querystring" locationName:"Ascending" type:"string"` - - PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` - - PipelineId *string `location:"uri" locationName:"PipelineId" type:"string"` -} - -type InputService7TestShapeInputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService8ProtocolTest client from just a session. -// svc := inputservice8protocoltest.New(mySession) -// -// // Create a InputService8ProtocolTest client with additional configuration -// svc := inputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService8ProtocolTest { - c := p.ClientConfig("inputservice8protocoltest", cfgs...) - return newInputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService8ProtocolTest { - svc := &InputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService8TestCaseOperation1 = "OperationName" - -// InputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService8TestCaseOperation1Request method. -// req, resp := client.InputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1Request(input *InputService8TestShapeInputService8TestCaseOperation1Input) (req *request.Request, output *InputService8TestShapeInputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService8TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService8TestShapeInputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService8TestShapeInputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *InputService8TestShapeInputService8TestCaseOperation1Input) (*InputService8TestShapeInputService8TestCaseOperation1Output, error) { - req, out := c.InputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService8TestShapeInputService8TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Ascending *string `location:"querystring" locationName:"Ascending" type:"string"` - - Config *InputService8TestShapeStructType `type:"structure"` - - PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` - - PipelineId *string `location:"uri" locationName:"PipelineId" type:"string"` -} - -type InputService8TestShapeInputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService8TestShapeStructType struct { - _ struct{} `type:"structure"` - - A *string `type:"string"` - - B *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService9ProtocolTest client from just a session. -// svc := inputservice9protocoltest.New(mySession) -// -// // Create a InputService9ProtocolTest client with additional configuration -// svc := inputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService9ProtocolTest { - c := p.ClientConfig("inputservice9protocoltest", cfgs...) - return newInputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService9ProtocolTest { - svc := &InputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService9TestCaseOperation1 = "OperationName" - -// InputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService9TestCaseOperation1Request method. -// req, resp := client.InputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1Request(input *InputService9TestShapeInputService9TestCaseOperation1Input) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService9TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService9TestShapeInputService9TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService9TestShapeInputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *InputService9TestShapeInputService9TestCaseOperation1Input) (*InputService9TestShapeInputService9TestCaseOperation1Output, error) { - req, out := c.InputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService9TestShapeInputService9TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Ascending *string `location:"querystring" locationName:"Ascending" type:"string"` - - Checksum *string `location:"header" locationName:"x-amz-checksum" type:"string"` - - Config *InputService9TestShapeStructType `type:"structure"` - - PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` - - PipelineId *string `location:"uri" locationName:"PipelineId" type:"string"` -} - -type InputService9TestShapeInputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService9TestShapeStructType struct { - _ struct{} `type:"structure"` - - A *string `type:"string"` - - B *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService10ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService10ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService10ProtocolTest client from just a session. -// svc := inputservice10protocoltest.New(mySession) -// -// // Create a InputService10ProtocolTest client with additional configuration -// svc := inputservice10protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService10ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService10ProtocolTest { - c := p.ClientConfig("inputservice10protocoltest", cfgs...) - return newInputService10ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService10ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService10ProtocolTest { - svc := &InputService10ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice10protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService10ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService10ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService10TestCaseOperation1 = "OperationName" - -// InputService10TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService10TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService10TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService10TestCaseOperation1Request method. -// req, resp := client.InputService10TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService10ProtocolTest) InputService10TestCaseOperation1Request(input *InputService10TestShapeInputService10TestCaseOperation1Input) (req *request.Request, output *InputService10TestShapeInputService10TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService10TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/vaults/{vaultName}/archives", - } - - if input == nil { - input = &InputService10TestShapeInputService10TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService10TestShapeInputService10TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService10ProtocolTest) InputService10TestCaseOperation1(input *InputService10TestShapeInputService10TestCaseOperation1Input) (*InputService10TestShapeInputService10TestCaseOperation1Output, error) { - req, out := c.InputService10TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService10TestShapeInputService10TestCaseOperation1Input struct { - _ struct{} `type:"structure" payload:"Body"` - - Body io.ReadSeeker `locationName:"body" type:"blob"` - - Checksum *string `location:"header" locationName:"x-amz-sha256-tree-hash" type:"string"` - - // VaultName is a required field - VaultName *string `location:"uri" locationName:"vaultName" type:"string" required:"true"` -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *InputService10TestShapeInputService10TestCaseOperation1Input) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "InputService10TestShapeInputService10TestCaseOperation1Input"} - if s.VaultName == nil { - invalidParams.Add(request.NewErrParamRequired("VaultName")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type InputService10TestShapeInputService10TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService11ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService11ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService11ProtocolTest client from just a session. -// svc := inputservice11protocoltest.New(mySession) -// -// // Create a InputService11ProtocolTest client with additional configuration -// svc := inputservice11protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService11ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService11ProtocolTest { - c := p.ClientConfig("inputservice11protocoltest", cfgs...) - return newInputService11ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService11ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService11ProtocolTest { - svc := &InputService11ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice11protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService11ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService11ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService11TestCaseOperation1 = "OperationName" - -// InputService11TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService11TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService11TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService11TestCaseOperation1Request method. -// req, resp := client.InputService11TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService11ProtocolTest) InputService11TestCaseOperation1Request(input *InputService11TestShapeInputService11TestCaseOperation1Input) (req *request.Request, output *InputService11TestShapeInputService11TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService11TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/{Foo}", - } - - if input == nil { - input = &InputService11TestShapeInputService11TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService11TestShapeInputService11TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService11ProtocolTest) InputService11TestCaseOperation1(input *InputService11TestShapeInputService11TestCaseOperation1Input) (*InputService11TestShapeInputService11TestCaseOperation1Output, error) { - req, out := c.InputService11TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService11TestShapeInputService11TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - // Bar is automatically base64 encoded/decoded by the SDK. - Bar []byte `type:"blob"` - - // Foo is a required field - Foo *string `location:"uri" locationName:"Foo" type:"string" required:"true"` -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *InputService11TestShapeInputService11TestCaseOperation1Input) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "InputService11TestShapeInputService11TestCaseOperation1Input"} - if s.Foo == nil { - invalidParams.Add(request.NewErrParamRequired("Foo")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type InputService11TestShapeInputService11TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService12ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService12ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService12ProtocolTest client from just a session. -// svc := inputservice12protocoltest.New(mySession) -// -// // Create a InputService12ProtocolTest client with additional configuration -// svc := inputservice12protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService12ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService12ProtocolTest { - c := p.ClientConfig("inputservice12protocoltest", cfgs...) - return newInputService12ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService12ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService12ProtocolTest { - svc := &InputService12ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice12protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService12ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService12ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService12TestCaseOperation1 = "OperationName" - -// InputService12TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation1Request method. -// req, resp := client.InputService12TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation1Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation1(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation1Output, error) { - req, out := c.InputService12TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService12TestCaseOperation2 = "OperationName" - -// InputService12TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation2Request method. -// req, resp := client.InputService12TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation2Request(input *InputService12TestShapeInputShape) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService12TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation2(input *InputService12TestShapeInputShape) (*InputService12TestShapeInputService12TestCaseOperation2Output, error) { - req, out := c.InputService12TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService12TestShapeInputService12TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputService12TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService12TestShapeInputShape struct { - _ struct{} `type:"structure" payload:"Foo"` - - Foo []byte `locationName:"foo" type:"blob"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService13ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService13ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService13ProtocolTest client from just a session. -// svc := inputservice13protocoltest.New(mySession) -// -// // Create a InputService13ProtocolTest client with additional configuration -// svc := inputservice13protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService13ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService13ProtocolTest { - c := p.ClientConfig("inputservice13protocoltest", cfgs...) - return newInputService13ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService13ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService13ProtocolTest { - svc := &InputService13ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice13protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService13ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService13ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService13TestCaseOperation1 = "OperationName" - -// InputService13TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService13TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService13TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService13TestCaseOperation1Request method. -// req, resp := client.InputService13TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService13ProtocolTest) InputService13TestCaseOperation1Request(input *InputService13TestShapeInputShape) (req *request.Request, output *InputService13TestShapeInputService13TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService13TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService13TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService13TestShapeInputService13TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService13ProtocolTest) InputService13TestCaseOperation1(input *InputService13TestShapeInputShape) (*InputService13TestShapeInputService13TestCaseOperation1Output, error) { - req, out := c.InputService13TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService13TestCaseOperation2 = "OperationName" - -// InputService13TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService13TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService13TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService13TestCaseOperation2Request method. -// req, resp := client.InputService13TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService13ProtocolTest) InputService13TestCaseOperation2Request(input *InputService13TestShapeInputShape) (req *request.Request, output *InputService13TestShapeInputService13TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService13TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService13TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService13TestShapeInputService13TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService13ProtocolTest) InputService13TestCaseOperation2(input *InputService13TestShapeInputShape) (*InputService13TestShapeInputService13TestCaseOperation2Output, error) { - req, out := c.InputService13TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService13TestShapeFooShape struct { - _ struct{} `locationName:"foo" type:"structure"` - - Baz *string `locationName:"baz" type:"string"` -} - -type InputService13TestShapeInputService13TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService13TestShapeInputService13TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService13TestShapeInputShape struct { - _ struct{} `type:"structure" payload:"Foo"` - - Foo *InputService13TestShapeFooShape `locationName:"foo" type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService14ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService14ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService14ProtocolTest client from just a session. -// svc := inputservice14protocoltest.New(mySession) -// -// // Create a InputService14ProtocolTest client with additional configuration -// svc := inputservice14protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService14ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService14ProtocolTest { - c := p.ClientConfig("inputservice14protocoltest", cfgs...) - return newInputService14ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService14ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService14ProtocolTest { - svc := &InputService14ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice14protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService14ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService14ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService14TestCaseOperation1 = "OperationName" - -// InputService14TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService14TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService14TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService14TestCaseOperation1Request method. -// req, resp := client.InputService14TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService14ProtocolTest) InputService14TestCaseOperation1Request(input *InputService14TestShapeInputShape) (req *request.Request, output *InputService14TestShapeInputService14TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService14TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService14TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService14TestShapeInputService14TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService14ProtocolTest) InputService14TestCaseOperation1(input *InputService14TestShapeInputShape) (*InputService14TestShapeInputService14TestCaseOperation1Output, error) { - req, out := c.InputService14TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService14TestCaseOperation2 = "OperationName" - -// InputService14TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService14TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService14TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService14TestCaseOperation2Request method. -// req, resp := client.InputService14TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService14ProtocolTest) InputService14TestCaseOperation2Request(input *InputService14TestShapeInputShape) (req *request.Request, output *InputService14TestShapeInputService14TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService14TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path?abc=mno", - } - - if input == nil { - input = &InputService14TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService14TestShapeInputService14TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService14ProtocolTest) InputService14TestCaseOperation2(input *InputService14TestShapeInputShape) (*InputService14TestShapeInputService14TestCaseOperation2Output, error) { - req, out := c.InputService14TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService14TestShapeInputService14TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService14TestShapeInputService14TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService14TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Foo *string `location:"querystring" locationName:"param-name" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService15ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService15ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService15ProtocolTest client from just a session. -// svc := inputservice15protocoltest.New(mySession) -// -// // Create a InputService15ProtocolTest client with additional configuration -// svc := inputservice15protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService15ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService15ProtocolTest { - c := p.ClientConfig("inputservice15protocoltest", cfgs...) - return newInputService15ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService15ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService15ProtocolTest { - svc := &InputService15ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice15protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService15ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService15ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService15TestCaseOperation1 = "OperationName" - -// InputService15TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService15TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService15TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService15TestCaseOperation1Request method. -// req, resp := client.InputService15TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService15ProtocolTest) InputService15TestCaseOperation1Request(input *InputService15TestShapeInputShape) (req *request.Request, output *InputService15TestShapeInputService15TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService15TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService15TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService15TestShapeInputService15TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService15ProtocolTest) InputService15TestCaseOperation1(input *InputService15TestShapeInputShape) (*InputService15TestShapeInputService15TestCaseOperation1Output, error) { - req, out := c.InputService15TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService15TestCaseOperation2 = "OperationName" - -// InputService15TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService15TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService15TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService15TestCaseOperation2Request method. -// req, resp := client.InputService15TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService15ProtocolTest) InputService15TestCaseOperation2Request(input *InputService15TestShapeInputShape) (req *request.Request, output *InputService15TestShapeInputService15TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService15TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService15TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService15TestShapeInputService15TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService15ProtocolTest) InputService15TestCaseOperation2(input *InputService15TestShapeInputShape) (*InputService15TestShapeInputService15TestCaseOperation2Output, error) { - req, out := c.InputService15TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -const opInputService15TestCaseOperation3 = "OperationName" - -// InputService15TestCaseOperation3Request generates a "aws/request.Request" representing the -// client's request for the InputService15TestCaseOperation3 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService15TestCaseOperation3 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService15TestCaseOperation3Request method. -// req, resp := client.InputService15TestCaseOperation3Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService15ProtocolTest) InputService15TestCaseOperation3Request(input *InputService15TestShapeInputShape) (req *request.Request, output *InputService15TestShapeInputService15TestCaseOperation3Output) { - op := &request.Operation{ - Name: opInputService15TestCaseOperation3, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService15TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService15TestShapeInputService15TestCaseOperation3Output{} - req.Data = output - return -} - -func (c *InputService15ProtocolTest) InputService15TestCaseOperation3(input *InputService15TestShapeInputShape) (*InputService15TestShapeInputService15TestCaseOperation3Output, error) { - req, out := c.InputService15TestCaseOperation3Request(input) - err := req.Send() - return out, err -} - -const opInputService15TestCaseOperation4 = "OperationName" - -// InputService15TestCaseOperation4Request generates a "aws/request.Request" representing the -// client's request for the InputService15TestCaseOperation4 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService15TestCaseOperation4 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService15TestCaseOperation4Request method. -// req, resp := client.InputService15TestCaseOperation4Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService15ProtocolTest) InputService15TestCaseOperation4Request(input *InputService15TestShapeInputShape) (req *request.Request, output *InputService15TestShapeInputService15TestCaseOperation4Output) { - op := &request.Operation{ - Name: opInputService15TestCaseOperation4, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService15TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService15TestShapeInputService15TestCaseOperation4Output{} - req.Data = output - return -} - -func (c *InputService15ProtocolTest) InputService15TestCaseOperation4(input *InputService15TestShapeInputShape) (*InputService15TestShapeInputService15TestCaseOperation4Output, error) { - req, out := c.InputService15TestCaseOperation4Request(input) - err := req.Send() - return out, err -} - -const opInputService15TestCaseOperation5 = "OperationName" - -// InputService15TestCaseOperation5Request generates a "aws/request.Request" representing the -// client's request for the InputService15TestCaseOperation5 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService15TestCaseOperation5 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService15TestCaseOperation5Request method. -// req, resp := client.InputService15TestCaseOperation5Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService15ProtocolTest) InputService15TestCaseOperation5Request(input *InputService15TestShapeInputShape) (req *request.Request, output *InputService15TestShapeInputService15TestCaseOperation5Output) { - op := &request.Operation{ - Name: opInputService15TestCaseOperation5, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService15TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService15TestShapeInputService15TestCaseOperation5Output{} - req.Data = output - return -} - -func (c *InputService15ProtocolTest) InputService15TestCaseOperation5(input *InputService15TestShapeInputShape) (*InputService15TestShapeInputService15TestCaseOperation5Output, error) { - req, out := c.InputService15TestCaseOperation5Request(input) - err := req.Send() - return out, err -} - -const opInputService15TestCaseOperation6 = "OperationName" - -// InputService15TestCaseOperation6Request generates a "aws/request.Request" representing the -// client's request for the InputService15TestCaseOperation6 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService15TestCaseOperation6 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService15TestCaseOperation6Request method. -// req, resp := client.InputService15TestCaseOperation6Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService15ProtocolTest) InputService15TestCaseOperation6Request(input *InputService15TestShapeInputShape) (req *request.Request, output *InputService15TestShapeInputService15TestCaseOperation6Output) { - op := &request.Operation{ - Name: opInputService15TestCaseOperation6, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService15TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService15TestShapeInputService15TestCaseOperation6Output{} - req.Data = output - return -} - -func (c *InputService15ProtocolTest) InputService15TestCaseOperation6(input *InputService15TestShapeInputShape) (*InputService15TestShapeInputService15TestCaseOperation6Output, error) { - req, out := c.InputService15TestCaseOperation6Request(input) - err := req.Send() - return out, err -} - -type InputService15TestShapeInputService15TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService15TestShapeInputService15TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService15TestShapeInputService15TestCaseOperation3Output struct { - _ struct{} `type:"structure"` -} - -type InputService15TestShapeInputService15TestCaseOperation4Output struct { - _ struct{} `type:"structure"` -} - -type InputService15TestShapeInputService15TestCaseOperation5Output struct { - _ struct{} `type:"structure"` -} - -type InputService15TestShapeInputService15TestCaseOperation6Output struct { - _ struct{} `type:"structure"` -} - -type InputService15TestShapeInputShape struct { - _ struct{} `type:"structure"` - - RecursiveStruct *InputService15TestShapeRecursiveStructType `type:"structure"` -} - -type InputService15TestShapeRecursiveStructType struct { - _ struct{} `type:"structure"` - - NoRecurse *string `type:"string"` - - RecursiveList []*InputService15TestShapeRecursiveStructType `type:"list"` - - RecursiveMap map[string]*InputService15TestShapeRecursiveStructType `type:"map"` - - RecursiveStruct *InputService15TestShapeRecursiveStructType `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService16ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService16ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService16ProtocolTest client from just a session. -// svc := inputservice16protocoltest.New(mySession) -// -// // Create a InputService16ProtocolTest client with additional configuration -// svc := inputservice16protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService16ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService16ProtocolTest { - c := p.ClientConfig("inputservice16protocoltest", cfgs...) - return newInputService16ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService16ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService16ProtocolTest { - svc := &InputService16ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice16protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService16ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService16ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService16TestCaseOperation1 = "OperationName" - -// InputService16TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService16TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService16TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService16TestCaseOperation1Request method. -// req, resp := client.InputService16TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService16ProtocolTest) InputService16TestCaseOperation1Request(input *InputService16TestShapeInputShape) (req *request.Request, output *InputService16TestShapeInputService16TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService16TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService16TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService16TestShapeInputService16TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService16ProtocolTest) InputService16TestCaseOperation1(input *InputService16TestShapeInputShape) (*InputService16TestShapeInputService16TestCaseOperation1Output, error) { - req, out := c.InputService16TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService16TestCaseOperation2 = "OperationName" - -// InputService16TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService16TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService16TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService16TestCaseOperation2Request method. -// req, resp := client.InputService16TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService16ProtocolTest) InputService16TestCaseOperation2Request(input *InputService16TestShapeInputShape) (req *request.Request, output *InputService16TestShapeInputService16TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService16TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService16TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService16TestShapeInputService16TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService16ProtocolTest) InputService16TestCaseOperation2(input *InputService16TestShapeInputShape) (*InputService16TestShapeInputService16TestCaseOperation2Output, error) { - req, out := c.InputService16TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService16TestShapeInputService16TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService16TestShapeInputService16TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService16TestShapeInputShape struct { - _ struct{} `type:"structure"` - - TimeArg *time.Time `type:"timestamp" timestampFormat:"unix"` - - TimeArgInHeader *time.Time `location:"header" locationName:"x-amz-timearg" type:"timestamp" timestampFormat:"rfc822"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService17ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService17ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService17ProtocolTest client from just a session. -// svc := inputservice17protocoltest.New(mySession) -// -// // Create a InputService17ProtocolTest client with additional configuration -// svc := inputservice17protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService17ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService17ProtocolTest { - c := p.ClientConfig("inputservice17protocoltest", cfgs...) - return newInputService17ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService17ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService17ProtocolTest { - svc := &InputService17ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice17protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService17ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService17ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService17TestCaseOperation1 = "OperationName" - -// InputService17TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService17TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService17TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService17TestCaseOperation1Request method. -// req, resp := client.InputService17TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService17ProtocolTest) InputService17TestCaseOperation1Request(input *InputService17TestShapeInputService17TestCaseOperation1Input) (req *request.Request, output *InputService17TestShapeInputService17TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService17TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService17TestShapeInputService17TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService17TestShapeInputService17TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService17ProtocolTest) InputService17TestCaseOperation1(input *InputService17TestShapeInputService17TestCaseOperation1Input) (*InputService17TestShapeInputService17TestCaseOperation1Output, error) { - req, out := c.InputService17TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService17TestShapeInputService17TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - TimeArg *time.Time `locationName:"timestamp_location" type:"timestamp" timestampFormat:"unix"` -} - -type InputService17TestShapeInputService17TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService18ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService18ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService18ProtocolTest client from just a session. -// svc := inputservice18protocoltest.New(mySession) -// -// // Create a InputService18ProtocolTest client with additional configuration -// svc := inputservice18protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService18ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService18ProtocolTest { - c := p.ClientConfig("inputservice18protocoltest", cfgs...) - return newInputService18ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService18ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService18ProtocolTest { - svc := &InputService18ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice18protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService18ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService18ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService18TestCaseOperation1 = "OperationName" - -// InputService18TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService18TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService18TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService18TestCaseOperation1Request method. -// req, resp := client.InputService18TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService18ProtocolTest) InputService18TestCaseOperation1Request(input *InputService18TestShapeInputService18TestCaseOperation1Input) (req *request.Request, output *InputService18TestShapeInputService18TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService18TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService18TestShapeInputService18TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService18TestShapeInputService18TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService18ProtocolTest) InputService18TestCaseOperation1(input *InputService18TestShapeInputService18TestCaseOperation1Input) (*InputService18TestShapeInputService18TestCaseOperation1Output, error) { - req, out := c.InputService18TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService18TestShapeInputService18TestCaseOperation1Input struct { - _ struct{} `type:"structure" payload:"Foo"` - - Foo *string `locationName:"foo" type:"string"` -} - -type InputService18TestShapeInputService18TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService19ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService19ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService19ProtocolTest client from just a session. -// svc := inputservice19protocoltest.New(mySession) -// -// // Create a InputService19ProtocolTest client with additional configuration -// svc := inputservice19protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService19ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService19ProtocolTest { - c := p.ClientConfig("inputservice19protocoltest", cfgs...) - return newInputService19ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService19ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService19ProtocolTest { - svc := &InputService19ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice19protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService19ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService19ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService19TestCaseOperation1 = "OperationName" - -// InputService19TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService19TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService19TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService19TestCaseOperation1Request method. -// req, resp := client.InputService19TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService19ProtocolTest) InputService19TestCaseOperation1Request(input *InputService19TestShapeInputShape) (req *request.Request, output *InputService19TestShapeInputService19TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService19TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService19TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService19TestShapeInputService19TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService19ProtocolTest) InputService19TestCaseOperation1(input *InputService19TestShapeInputShape) (*InputService19TestShapeInputService19TestCaseOperation1Output, error) { - req, out := c.InputService19TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService19TestCaseOperation2 = "OperationName" - -// InputService19TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService19TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService19TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService19TestCaseOperation2Request method. -// req, resp := client.InputService19TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService19ProtocolTest) InputService19TestCaseOperation2Request(input *InputService19TestShapeInputShape) (req *request.Request, output *InputService19TestShapeInputService19TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService19TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService19TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService19TestShapeInputService19TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService19ProtocolTest) InputService19TestCaseOperation2(input *InputService19TestShapeInputShape) (*InputService19TestShapeInputService19TestCaseOperation2Output, error) { - req, out := c.InputService19TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService19TestShapeInputService19TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService19TestShapeInputService19TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService19TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Token *string `type:"string" idempotencyToken:"true"` -} - -// -// Tests begin here -// - -func TestInputService1ProtocolTestNoParametersCase1(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - req, _ := svc.InputService1TestCaseOperation1Request(nil) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobs", r.URL.String()) - - // assert headers - -} - -func TestInputService2ProtocolTestURIParameterOnlyWithNoLocationNameCase1(t *testing.T) { - svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService2TestShapeInputService2TestCaseOperation1Input{ - PipelineId: aws.String("foo"), - } - req, _ := svc.InputService2TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/foo", r.URL.String()) - - // assert headers - -} - -func TestInputService3ProtocolTestURIParameterOnlyWithLocationNameCase1(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputService3TestCaseOperation1Input{ - Foo: aws.String("bar"), - } - req, _ := svc.InputService3TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/bar", r.URL.String()) - - // assert headers - -} - -func TestInputService4ProtocolTestQuerystringListOfStringsCase1(t *testing.T) { - svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService4TestShapeInputService4TestCaseOperation1Input{ - Items: []*string{ - aws.String("value1"), - aws.String("value2"), - }, - } - req, _ := svc.InputService4TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path?item=value1&item=value2", r.URL.String()) - - // assert headers - -} - -func TestInputService5ProtocolTestStringToStringMapsInQuerystringCase1(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputService5TestCaseOperation1Input{ - PipelineId: aws.String("foo"), - QueryDoc: map[string]*string{ - "bar": aws.String("baz"), - "fizz": aws.String("buzz"), - }, - } - req, _ := svc.InputService5TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/foo?bar=baz&fizz=buzz", r.URL.String()) - - // assert headers - -} - -func TestInputService6ProtocolTestStringToStringListMapsInQuerystringCase1(t *testing.T) { - svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService6TestShapeInputService6TestCaseOperation1Input{ - PipelineId: aws.String("id"), - QueryDoc: map[string][]*string{ - "fizz": { - aws.String("buzz"), - aws.String("pop"), - }, - "foo": { - aws.String("bar"), - aws.String("baz"), - }, - }, - } - req, _ := svc.InputService6TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/id?foo=bar&foo=baz&fizz=buzz&fizz=pop", r.URL.String()) - - // assert headers - -} - -func TestInputService7ProtocolTestURIParameterAndQuerystringParamsCase1(t *testing.T) { - svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService7TestShapeInputService7TestCaseOperation1Input{ - Ascending: aws.String("true"), - PageToken: aws.String("bar"), - PipelineId: aws.String("foo"), - } - req, _ := svc.InputService7TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/foo?Ascending=true&PageToken=bar", r.URL.String()) - - // assert headers - -} - -func TestInputService8ProtocolTestURIParameterQuerystringParamsAndJSONBodyCase1(t *testing.T) { - svc := NewInputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService8TestShapeInputService8TestCaseOperation1Input{ - Ascending: aws.String("true"), - Config: &InputService8TestShapeStructType{ - A: aws.String("one"), - B: aws.String("two"), - }, - PageToken: aws.String("bar"), - PipelineId: aws.String("foo"), - } - req, _ := svc.InputService8TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Config":{"A":"one","B":"two"}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/foo?Ascending=true&PageToken=bar", r.URL.String()) - - // assert headers - -} - -func TestInputService9ProtocolTestURIParameterQuerystringParamsHeadersAndJSONBodyCase1(t *testing.T) { - svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService9TestShapeInputService9TestCaseOperation1Input{ - Ascending: aws.String("true"), - Checksum: aws.String("12345"), - Config: &InputService9TestShapeStructType{ - A: aws.String("one"), - B: aws.String("two"), - }, - PageToken: aws.String("bar"), - PipelineId: aws.String("foo"), - } - req, _ := svc.InputService9TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Config":{"A":"one","B":"two"}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/foo?Ascending=true&PageToken=bar", r.URL.String()) - - // assert headers - assert.Equal(t, "12345", r.Header.Get("x-amz-checksum")) - -} - -func TestInputService10ProtocolTestStreamingPayloadCase1(t *testing.T) { - svc := NewInputService10ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService10TestShapeInputService10TestCaseOperation1Input{ - Body: aws.ReadSeekCloser(bytes.NewBufferString("contents")), - Checksum: aws.String("foo"), - VaultName: aws.String("name"), - } - req, _ := svc.InputService10TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - assert.Equal(t, `contents`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/vaults/name/archives", r.URL.String()) - - // assert headers - assert.Equal(t, "foo", r.Header.Get("x-amz-sha256-tree-hash")) - -} - -func TestInputService11ProtocolTestSerializeBlobsInBodyCase1(t *testing.T) { - svc := NewInputService11ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService11TestShapeInputService11TestCaseOperation1Input{ - Bar: []byte("Blob param"), - Foo: aws.String("foo_name"), - } - req, _ := svc.InputService11TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Bar":"QmxvYiBwYXJhbQ=="}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/foo_name", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestBlobPayloadCase1(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{ - Foo: []byte("bar"), - } - req, _ := svc.InputService12TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - assert.Equal(t, `bar`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService12ProtocolTestBlobPayloadCase2(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputShape{} - req, _ := svc.InputService12TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService13ProtocolTestStructurePayloadCase1(t *testing.T) { - svc := NewInputService13ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService13TestShapeInputShape{ - Foo: &InputService13TestShapeFooShape{ - Baz: aws.String("bar"), - }, - } - req, _ := svc.InputService13TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"baz":"bar"}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService13ProtocolTestStructurePayloadCase2(t *testing.T) { - svc := NewInputService13ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService13TestShapeInputShape{} - req, _ := svc.InputService13TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService14ProtocolTestOmitsNullQueryParamsButSerializesEmptyStringsCase1(t *testing.T) { - svc := NewInputService14ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService14TestShapeInputShape{} - req, _ := svc.InputService14TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService14ProtocolTestOmitsNullQueryParamsButSerializesEmptyStringsCase2(t *testing.T) { - svc := NewInputService14ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService14TestShapeInputShape{ - Foo: aws.String(""), - } - req, _ := svc.InputService14TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path?abc=mno¶m-name=", r.URL.String()) - - // assert headers - -} - -func TestInputService15ProtocolTestRecursiveShapesCase1(t *testing.T) { - svc := NewInputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService15TestShapeInputShape{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - } - req, _ := svc.InputService15TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"NoRecurse":"foo"}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService15ProtocolTestRecursiveShapesCase2(t *testing.T) { - svc := NewInputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService15TestShapeInputShape{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - } - req, _ := svc.InputService15TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveStruct":{"NoRecurse":"foo"}}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService15ProtocolTestRecursiveShapesCase3(t *testing.T) { - svc := NewInputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService15TestShapeInputShape{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - }, - }, - } - req, _ := svc.InputService15TestCaseOperation3Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveStruct":{"RecursiveStruct":{"RecursiveStruct":{"NoRecurse":"foo"}}}}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService15ProtocolTestRecursiveShapesCase4(t *testing.T) { - svc := NewInputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService15TestShapeInputShape{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - RecursiveList: []*InputService15TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - NoRecurse: aws.String("bar"), - }, - }, - }, - } - req, _ := svc.InputService15TestCaseOperation4Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveList":[{"NoRecurse":"foo"},{"NoRecurse":"bar"}]}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService15ProtocolTestRecursiveShapesCase5(t *testing.T) { - svc := NewInputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService15TestShapeInputShape{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - RecursiveList: []*InputService15TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - NoRecurse: aws.String("bar"), - }, - }, - }, - }, - } - req, _ := svc.InputService15TestCaseOperation5Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveList":[{"NoRecurse":"foo"},{"RecursiveStruct":{"NoRecurse":"bar"}}]}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService15ProtocolTestRecursiveShapesCase6(t *testing.T) { - svc := NewInputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService15TestShapeInputShape{ - RecursiveStruct: &InputService15TestShapeRecursiveStructType{ - RecursiveMap: map[string]*InputService15TestShapeRecursiveStructType{ - "bar": { - NoRecurse: aws.String("bar"), - }, - "foo": { - NoRecurse: aws.String("foo"), - }, - }, - }, - } - req, _ := svc.InputService15TestCaseOperation6Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"RecursiveStruct":{"RecursiveMap":{"foo":{"NoRecurse":"foo"},"bar":{"NoRecurse":"bar"}}}}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService16ProtocolTestTimestampValuesCase1(t *testing.T) { - svc := NewInputService16ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService16TestShapeInputShape{ - TimeArg: aws.Time(time.Unix(1422172800, 0)), - } - req, _ := svc.InputService16TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"TimeArg":1422172800}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService16ProtocolTestTimestampValuesCase2(t *testing.T) { - svc := NewInputService16ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService16TestShapeInputShape{ - TimeArgInHeader: aws.Time(time.Unix(1422172800, 0)), - } - req, _ := svc.InputService16TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - assert.Equal(t, "Sun, 25 Jan 2015 08:00:00 GMT", r.Header.Get("x-amz-timearg")) - -} - -func TestInputService17ProtocolTestNamedLocationsInJSONBodyCase1(t *testing.T) { - svc := NewInputService17ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService17TestShapeInputService17TestCaseOperation1Input{ - TimeArg: aws.Time(time.Unix(1422172800, 0)), - } - req, _ := svc.InputService17TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"timestamp_location":1422172800}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService18ProtocolTestStringPayloadCase1(t *testing.T) { - svc := NewInputService18ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService18TestShapeInputService18TestCaseOperation1Input{ - Foo: aws.String("bar"), - } - req, _ := svc.InputService18TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - assert.Equal(t, `bar`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService19ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) { - svc := NewInputService19ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService19TestShapeInputShape{ - Token: aws.String("abc123"), - } - req, _ := svc.InputService19TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Token":"abc123"}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService19ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) { - svc := NewInputService19ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService19TestShapeInputShape{} - req, _ := svc.InputService19TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restjson.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body, _ := ioutil.ReadAll(r.Body) - awstesting.AssertJSON(t, `{"Token":"00000000-0000-4000-8000-000000000000"}`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go deleted file mode 100644 index 9e98525b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go +++ /dev/null @@ -1,92 +0,0 @@ -// Package restjson provides RESTful JSON serialization of AWS -// requests and responses. -package restjson - -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/input/rest-json.json build_test.go -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/output/rest-json.json unmarshal_test.go - -import ( - "encoding/json" - "io/ioutil" - "strings" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" - "github.com/aws/aws-sdk-go/private/protocol/rest" -) - -// BuildHandler is a named request handler for building restjson protocol requests -var BuildHandler = request.NamedHandler{Name: "awssdk.restjson.Build", Fn: Build} - -// UnmarshalHandler is a named request handler for unmarshaling restjson protocol requests -var UnmarshalHandler = request.NamedHandler{Name: "awssdk.restjson.Unmarshal", Fn: Unmarshal} - -// UnmarshalMetaHandler is a named request handler for unmarshaling restjson protocol request metadata -var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.restjson.UnmarshalMeta", Fn: UnmarshalMeta} - -// UnmarshalErrorHandler is a named request handler for unmarshaling restjson protocol request errors -var UnmarshalErrorHandler = request.NamedHandler{Name: "awssdk.restjson.UnmarshalError", Fn: UnmarshalError} - -// Build builds a request for the REST JSON protocol. -func Build(r *request.Request) { - rest.Build(r) - - if t := rest.PayloadType(r.Params); t == "structure" || t == "" { - jsonrpc.Build(r) - } -} - -// Unmarshal unmarshals a response body for the REST JSON protocol. -func Unmarshal(r *request.Request) { - if t := rest.PayloadType(r.Data); t == "structure" || t == "" { - jsonrpc.Unmarshal(r) - } else { - rest.Unmarshal(r) - } -} - -// UnmarshalMeta unmarshals response headers for the REST JSON protocol. -func UnmarshalMeta(r *request.Request) { - rest.UnmarshalMeta(r) -} - -// UnmarshalError unmarshals a response error for the REST JSON protocol. -func UnmarshalError(r *request.Request) { - defer r.HTTPResponse.Body.Close() - code := r.HTTPResponse.Header.Get("X-Amzn-Errortype") - bodyBytes, err := ioutil.ReadAll(r.HTTPResponse.Body) - if err != nil { - r.Error = awserr.New("SerializationError", "failed reading REST JSON error response", err) - return - } - if len(bodyBytes) == 0 { - r.Error = awserr.NewRequestFailure( - awserr.New("SerializationError", r.HTTPResponse.Status, nil), - r.HTTPResponse.StatusCode, - "", - ) - return - } - var jsonErr jsonErrorResponse - if err := json.Unmarshal(bodyBytes, &jsonErr); err != nil { - r.Error = awserr.New("SerializationError", "failed decoding REST JSON error response", err) - return - } - - if code == "" { - code = jsonErr.Code - } - - code = strings.SplitN(code, ":", 2)[0] - r.Error = awserr.NewRequestFailure( - awserr.New(code, jsonErr.Message, nil), - r.HTTPResponse.StatusCode, - r.RequestID, - ) -} - -type jsonErrorResponse struct { - Code string `json:"code"` - Message string `json:"message"` -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_test.go deleted file mode 100644 index d6590c9b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_test.go +++ /dev/null @@ -1,1560 +0,0 @@ -package restjson_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/restjson" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService1ProtocolTest client from just a session. -// svc := outputservice1protocoltest.New(mySession) -// -// // Create a OutputService1ProtocolTest client with additional configuration -// svc := outputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService1ProtocolTest { - c := p.ClientConfig("outputservice1protocoltest", cfgs...) - return newOutputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService1ProtocolTest { - svc := &OutputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService1TestCaseOperation1 = "OperationName" - -// OutputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService1TestCaseOperation1Request method. -// req, resp := client.OutputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1Request(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (req *request.Request, output *OutputService1TestShapeOutputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService1TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService1TestShapeOutputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService1TestShapeOutputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (*OutputService1TestShapeOutputService1TestCaseOperation1Output, error) { - req, out := c.OutputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Char *string `type:"character"` - - Double *float64 `type:"double"` - - FalseBool *bool `type:"boolean"` - - Float *float64 `type:"float"` - - ImaHeader *string `location:"header" type:"string"` - - ImaHeaderLocation *string `location:"header" locationName:"X-Foo" type:"string"` - - Long *int64 `type:"long"` - - Num *int64 `type:"integer"` - - Status *int64 `location:"statusCode" type:"integer"` - - Str *string `type:"string"` - - TrueBool *bool `type:"boolean"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService2ProtocolTest client from just a session. -// svc := outputservice2protocoltest.New(mySession) -// -// // Create a OutputService2ProtocolTest client with additional configuration -// svc := outputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService2ProtocolTest { - c := p.ClientConfig("outputservice2protocoltest", cfgs...) - return newOutputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService2ProtocolTest { - svc := &OutputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService2TestCaseOperation1 = "OperationName" - -// OutputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService2TestCaseOperation1Request method. -// req, resp := client.OutputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1Request(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (req *request.Request, output *OutputService2TestShapeOutputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService2TestShapeOutputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService2TestShapeOutputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (*OutputService2TestShapeOutputService2TestCaseOperation1Output, error) { - req, out := c.OutputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService2TestShapeBlobContainer struct { - _ struct{} `type:"structure"` - - // Foo is automatically base64 encoded/decoded by the SDK. - Foo []byte `locationName:"foo" type:"blob"` -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - // BlobMember is automatically base64 encoded/decoded by the SDK. - BlobMember []byte `type:"blob"` - - StructMember *OutputService2TestShapeBlobContainer `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService3ProtocolTest client from just a session. -// svc := outputservice3protocoltest.New(mySession) -// -// // Create a OutputService3ProtocolTest client with additional configuration -// svc := outputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService3ProtocolTest { - c := p.ClientConfig("outputservice3protocoltest", cfgs...) - return newOutputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService3ProtocolTest { - svc := &OutputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService3TestCaseOperation1 = "OperationName" - -// OutputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService3TestCaseOperation1Request method. -// req, resp := client.OutputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1Request(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (req *request.Request, output *OutputService3TestShapeOutputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService3TestShapeOutputService3TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService3TestShapeOutputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (*OutputService3TestShapeOutputService3TestCaseOperation1Output, error) { - req, out := c.OutputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - StructMember *OutputService3TestShapeTimeContainer `type:"structure"` - - TimeMember *time.Time `type:"timestamp" timestampFormat:"unix"` -} - -type OutputService3TestShapeTimeContainer struct { - _ struct{} `type:"structure"` - - Foo *time.Time `locationName:"foo" type:"timestamp" timestampFormat:"unix"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService4ProtocolTest client from just a session. -// svc := outputservice4protocoltest.New(mySession) -// -// // Create a OutputService4ProtocolTest client with additional configuration -// svc := outputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService4ProtocolTest { - c := p.ClientConfig("outputservice4protocoltest", cfgs...) - return newOutputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService4ProtocolTest { - svc := &OutputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService4TestCaseOperation1 = "OperationName" - -// OutputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService4TestCaseOperation1Request method. -// req, resp := client.OutputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1Request(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (req *request.Request, output *OutputService4TestShapeOutputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService4TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService4TestShapeOutputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService4TestShapeOutputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (*OutputService4TestShapeOutputService4TestCaseOperation1Output, error) { - req, out := c.OutputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService5ProtocolTest client from just a session. -// svc := outputservice5protocoltest.New(mySession) -// -// // Create a OutputService5ProtocolTest client with additional configuration -// svc := outputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService5ProtocolTest { - c := p.ClientConfig("outputservice5protocoltest", cfgs...) - return newOutputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService5ProtocolTest { - svc := &OutputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService5TestCaseOperation1 = "OperationName" - -// OutputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService5TestCaseOperation1Request method. -// req, resp := client.OutputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1Request(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (req *request.Request, output *OutputService5TestShapeOutputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService5TestShapeOutputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService5TestShapeOutputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (*OutputService5TestShapeOutputService5TestCaseOperation1Output, error) { - req, out := c.OutputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*OutputService5TestShapeSingleStruct `type:"list"` -} - -type OutputService5TestShapeSingleStruct struct { - _ struct{} `type:"structure"` - - Foo *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService6ProtocolTest client from just a session. -// svc := outputservice6protocoltest.New(mySession) -// -// // Create a OutputService6ProtocolTest client with additional configuration -// svc := outputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService6ProtocolTest { - c := p.ClientConfig("outputservice6protocoltest", cfgs...) - return newOutputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService6ProtocolTest { - svc := &OutputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService6TestCaseOperation1 = "OperationName" - -// OutputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService6TestCaseOperation1Request method. -// req, resp := client.OutputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1Request(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (req *request.Request, output *OutputService6TestShapeOutputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService6TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService6TestShapeOutputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService6TestShapeOutputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (*OutputService6TestShapeOutputService6TestCaseOperation1Output, error) { - req, out := c.OutputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - MapMember map[string][]*int64 `type:"map"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService7ProtocolTest client from just a session. -// svc := outputservice7protocoltest.New(mySession) -// -// // Create a OutputService7ProtocolTest client with additional configuration -// svc := outputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService7ProtocolTest { - c := p.ClientConfig("outputservice7protocoltest", cfgs...) - return newOutputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService7ProtocolTest { - svc := &OutputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService7TestCaseOperation1 = "OperationName" - -// OutputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService7TestCaseOperation1Request method. -// req, resp := client.OutputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1Request(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (req *request.Request, output *OutputService7TestShapeOutputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService7TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService7TestShapeOutputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService7TestShapeOutputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (*OutputService7TestShapeOutputService7TestCaseOperation1Output, error) { - req, out := c.OutputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - MapMember map[string]*time.Time `type:"map"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService8ProtocolTest client from just a session. -// svc := outputservice8protocoltest.New(mySession) -// -// // Create a OutputService8ProtocolTest client with additional configuration -// svc := outputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService8ProtocolTest { - c := p.ClientConfig("outputservice8protocoltest", cfgs...) - return newOutputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService8ProtocolTest { - svc := &OutputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService8TestCaseOperation1 = "OperationName" - -// OutputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService8TestCaseOperation1Request method. -// req, resp := client.OutputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1Request(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (req *request.Request, output *OutputService8TestShapeOutputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService8TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService8TestShapeOutputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService8TestShapeOutputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (*OutputService8TestShapeOutputService8TestCaseOperation1Output, error) { - req, out := c.OutputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - StrType *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService9ProtocolTest client from just a session. -// svc := outputservice9protocoltest.New(mySession) -// -// // Create a OutputService9ProtocolTest client with additional configuration -// svc := outputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService9ProtocolTest { - c := p.ClientConfig("outputservice9protocoltest", cfgs...) - return newOutputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService9ProtocolTest { - svc := &OutputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService9TestCaseOperation1 = "OperationName" - -// OutputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService9TestCaseOperation1Request method. -// req, resp := client.OutputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1Request(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (req *request.Request, output *OutputService9TestShapeOutputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService9TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService9TestShapeOutputService9TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService9TestShapeOutputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (*OutputService9TestShapeOutputService9TestCaseOperation1Output, error) { - req, out := c.OutputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - AllHeaders map[string]*string `location:"headers" type:"map"` - - PrefixedHeaders map[string]*string `location:"headers" locationName:"X-" type:"map"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService10ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService10ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService10ProtocolTest client from just a session. -// svc := outputservice10protocoltest.New(mySession) -// -// // Create a OutputService10ProtocolTest client with additional configuration -// svc := outputservice10protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService10ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService10ProtocolTest { - c := p.ClientConfig("outputservice10protocoltest", cfgs...) - return newOutputService10ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService10ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService10ProtocolTest { - svc := &OutputService10ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice10protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService10ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService10ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService10TestCaseOperation1 = "OperationName" - -// OutputService10TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService10TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService10TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService10TestCaseOperation1Request method. -// req, resp := client.OutputService10TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1Request(input *OutputService10TestShapeOutputService10TestCaseOperation1Input) (req *request.Request, output *OutputService10TestShapeOutputService10TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService10TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService10TestShapeOutputService10TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService10TestShapeOutputService10TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1(input *OutputService10TestShapeOutputService10TestCaseOperation1Input) (*OutputService10TestShapeOutputService10TestCaseOperation1Output, error) { - req, out := c.OutputService10TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService10TestShapeBodyStructure struct { - _ struct{} `type:"structure"` - - Foo *string `type:"string"` -} - -type OutputService10TestShapeOutputService10TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService10TestShapeOutputService10TestCaseOperation1Output struct { - _ struct{} `type:"structure" payload:"Data"` - - Data *OutputService10TestShapeBodyStructure `type:"structure"` - - Header *string `location:"header" locationName:"X-Foo" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService11ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService11ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService11ProtocolTest client from just a session. -// svc := outputservice11protocoltest.New(mySession) -// -// // Create a OutputService11ProtocolTest client with additional configuration -// svc := outputservice11protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService11ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService11ProtocolTest { - c := p.ClientConfig("outputservice11protocoltest", cfgs...) - return newOutputService11ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService11ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService11ProtocolTest { - svc := &OutputService11ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice11protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService11ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService11ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService11TestCaseOperation1 = "OperationName" - -// OutputService11TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService11TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService11TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService11TestCaseOperation1Request method. -// req, resp := client.OutputService11TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1Request(input *OutputService11TestShapeOutputService11TestCaseOperation1Input) (req *request.Request, output *OutputService11TestShapeOutputService11TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService11TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService11TestShapeOutputService11TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService11TestShapeOutputService11TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1(input *OutputService11TestShapeOutputService11TestCaseOperation1Input) (*OutputService11TestShapeOutputService11TestCaseOperation1Output, error) { - req, out := c.OutputService11TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService11TestShapeOutputService11TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService11TestShapeOutputService11TestCaseOperation1Output struct { - _ struct{} `type:"structure" payload:"Stream"` - - Stream []byte `type:"blob"` -} - -// -// Tests begin here -// - -func TestOutputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewOutputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"Str\": \"myname\", \"Num\": 123, \"FalseBool\": false, \"TrueBool\": true, \"Float\": 1.2, \"Double\": 1.3, \"Long\": 200, \"Char\": \"a\"}")) - req, out := svc.OutputService1TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - req.HTTPResponse.Header.Set("ImaHeader", "test") - req.HTTPResponse.Header.Set("X-Foo", "abc") - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.Char) - assert.Equal(t, 1.3, *out.Double) - assert.Equal(t, false, *out.FalseBool) - assert.Equal(t, 1.2, *out.Float) - assert.Equal(t, "test", *out.ImaHeader) - assert.Equal(t, "abc", *out.ImaHeaderLocation) - assert.Equal(t, int64(200), *out.Long) - assert.Equal(t, int64(123), *out.Num) - assert.Equal(t, int64(200), *out.Status) - assert.Equal(t, "myname", *out.Str) - assert.Equal(t, true, *out.TrueBool) - -} - -func TestOutputService2ProtocolTestBlobMembersCase1(t *testing.T) { - svc := NewOutputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"BlobMember\": \"aGkh\", \"StructMember\": {\"foo\": \"dGhlcmUh\"}}")) - req, out := svc.OutputService2TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "hi!", string(out.BlobMember)) - assert.Equal(t, "there!", string(out.StructMember.Foo)) - -} - -func TestOutputService3ProtocolTestTimestampMembersCase1(t *testing.T) { - svc := NewOutputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"TimeMember\": 1398796238, \"StructMember\": {\"foo\": 1398796238}}")) - req, out := svc.OutputService3TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, time.Unix(1.398796238e+09, 0).UTC().String(), out.StructMember.Foo.String()) - assert.Equal(t, time.Unix(1.398796238e+09, 0).UTC().String(), out.TimeMember.String()) - -} - -func TestOutputService4ProtocolTestListsCase1(t *testing.T) { - svc := NewOutputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"ListMember\": [\"a\", \"b\"]}")) - req, out := svc.OutputService4TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.ListMember[0]) - assert.Equal(t, "b", *out.ListMember[1]) - -} - -func TestOutputService5ProtocolTestListsWithStructureMemberCase1(t *testing.T) { - svc := NewOutputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"ListMember\": [{\"Foo\": \"a\"}, {\"Foo\": \"b\"}]}")) - req, out := svc.OutputService5TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.ListMember[0].Foo) - assert.Equal(t, "b", *out.ListMember[1].Foo) - -} - -func TestOutputService6ProtocolTestMapsCase1(t *testing.T) { - svc := NewOutputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"MapMember\": {\"a\": [1, 2], \"b\": [3, 4]}}")) - req, out := svc.OutputService6TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, int64(1), *out.MapMember["a"][0]) - assert.Equal(t, int64(2), *out.MapMember["a"][1]) - assert.Equal(t, int64(3), *out.MapMember["b"][0]) - assert.Equal(t, int64(4), *out.MapMember["b"][1]) - -} - -func TestOutputService7ProtocolTestComplexMapValuesCase1(t *testing.T) { - svc := NewOutputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"MapMember\": {\"a\": 1398796238, \"b\": 1398796238}}")) - req, out := svc.OutputService7TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, time.Unix(1.398796238e+09, 0).UTC().String(), out.MapMember["a"].String()) - assert.Equal(t, time.Unix(1.398796238e+09, 0).UTC().String(), out.MapMember["b"].String()) - -} - -func TestOutputService8ProtocolTestIgnoresExtraDataCase1(t *testing.T) { - svc := NewOutputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"foo\": \"bar\"}")) - req, out := svc.OutputService8TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - -} - -func TestOutputService9ProtocolTestSupportsHeaderMapsCase1(t *testing.T) { - svc := NewOutputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{}")) - req, out := svc.OutputService9TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - req.HTTPResponse.Header.Set("Content-Length", "10") - req.HTTPResponse.Header.Set("X-Bam", "boo") - req.HTTPResponse.Header.Set("X-Foo", "bar") - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "10", *out.AllHeaders["Content-Length"]) - assert.Equal(t, "boo", *out.AllHeaders["X-Bam"]) - assert.Equal(t, "bar", *out.AllHeaders["X-Foo"]) - assert.Equal(t, "boo", *out.PrefixedHeaders["Bam"]) - assert.Equal(t, "bar", *out.PrefixedHeaders["Foo"]) - -} - -func TestOutputService10ProtocolTestJSONPayloadCase1(t *testing.T) { - svc := NewOutputService10ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("{\"Foo\": \"abc\"}")) - req, out := svc.OutputService10TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - req.HTTPResponse.Header.Set("X-Foo", "baz") - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.Data.Foo) - assert.Equal(t, "baz", *out.Header) - -} - -func TestOutputService11ProtocolTestStreamingPayloadCase1(t *testing.T) { - svc := NewOutputService11ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc")) - req, out := svc.OutputService11TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restjson.UnmarshalMeta(req) - restjson.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", string(out.Stream)) - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_bench_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_bench_test.go deleted file mode 100644 index 67fd16d1..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_bench_test.go +++ /dev/null @@ -1,247 +0,0 @@ -// +build bench - -package restxml_test - -import ( - "testing" - - "bytes" - "encoding/xml" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/private/protocol/restxml" - "github.com/aws/aws-sdk-go/service/cloudfront" -) - -func BenchmarkRESTXMLBuild_Complex_cloudfrontCreateDistribution(b *testing.B) { - params := restxmlBuildCreateDistroParms - - op := &request.Operation{ - Name: "CreateDistribution", - HTTPMethod: "POST", - HTTPPath: "/2015-04-17/distribution/{DistributionId}/invalidation", - } - - benchRESTXMLBuild(b, op, params) -} - -func BenchmarkRESTXMLBuild_Simple_cloudfrontDeleteStreamingDistribution(b *testing.B) { - params := &cloudfront.DeleteDistributionInput{ - Id: aws.String("string"), // Required - IfMatch: aws.String("string"), - } - op := &request.Operation{ - Name: "DeleteStreamingDistribution", - HTTPMethod: "DELETE", - HTTPPath: "/2015-04-17/streaming-distribution/{Id}", - } - benchRESTXMLBuild(b, op, params) -} - -func BenchmarkEncodingXMLMarshal_Simple_cloudfrontDeleteStreamingDistribution(b *testing.B) { - params := &cloudfront.DeleteDistributionInput{ - Id: aws.String("string"), // Required - IfMatch: aws.String("string"), - } - - for i := 0; i < b.N; i++ { - buf := &bytes.Buffer{} - encoder := xml.NewEncoder(buf) - if err := encoder.Encode(params); err != nil { - b.Fatal("Unexpected error", err) - } - } -} - -func benchRESTXMLBuild(b *testing.B, op *request.Operation, params interface{}) { - svc := awstesting.NewClient() - svc.ServiceName = "cloudfront" - svc.APIVersion = "2015-04-17" - - for i := 0; i < b.N; i++ { - r := svc.NewRequest(op, params, nil) - restxml.Build(r) - if r.Error != nil { - b.Fatal("Unexpected error", r.Error) - } - } -} - -var restxmlBuildCreateDistroParms = &cloudfront.CreateDistributionInput{ - DistributionConfig: &cloudfront.DistributionConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - DefaultCacheBehavior: &cloudfront.DefaultCacheBehavior{ // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - Enabled: aws.Bool(true), // Required - Origins: &cloudfront.Origins{ // Required - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.Origin{ - { // Required - DomainName: aws.String("string"), // Required - Id: aws.String("string"), // Required - CustomOriginConfig: &cloudfront.CustomOriginConfig{ - HTTPPort: aws.Int64(1), // Required - HTTPSPort: aws.Int64(1), // Required - OriginProtocolPolicy: aws.String("OriginProtocolPolicy"), // Required - }, - OriginPath: aws.String("string"), - S3OriginConfig: &cloudfront.S3OriginConfig{ - OriginAccessIdentity: aws.String("string"), // Required - }, - }, - // More values... - }, - }, - Aliases: &cloudfront.Aliases{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - CacheBehaviors: &cloudfront.CacheBehaviors{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CacheBehavior{ - { // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - PathPattern: aws.String("string"), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - // More values... - }, - }, - CustomErrorResponses: &cloudfront.CustomErrorResponses{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CustomErrorResponse{ - { // Required - ErrorCode: aws.Int64(1), // Required - ErrorCachingMinTTL: aws.Int64(1), - ResponseCode: aws.String("string"), - ResponsePagePath: aws.String("string"), - }, - // More values... - }, - }, - DefaultRootObject: aws.String("string"), - Logging: &cloudfront.LoggingConfig{ - Bucket: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - IncludeCookies: aws.Bool(true), // Required - Prefix: aws.String("string"), // Required - }, - PriceClass: aws.String("PriceClass"), - Restrictions: &cloudfront.Restrictions{ - GeoRestriction: &cloudfront.GeoRestriction{ // Required - Quantity: aws.Int64(1), // Required - RestrictionType: aws.String("GeoRestrictionType"), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - ViewerCertificate: &cloudfront.ViewerCertificate{ - CloudFrontDefaultCertificate: aws.Bool(true), - IAMCertificateId: aws.String("string"), - MinimumProtocolVersion: aws.String("MinimumProtocolVersion"), - SSLSupportMethod: aws.String("SSLSupportMethod"), - }, - }, -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_test.go deleted file mode 100644 index 6263877e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_test.go +++ /dev/null @@ -1,4406 +0,0 @@ -package restxml_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/restxml" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService1ProtocolTest client from just a session. -// svc := inputservice1protocoltest.New(mySession) -// -// // Create a InputService1ProtocolTest client with additional configuration -// svc := inputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService1ProtocolTest { - c := p.ClientConfig("inputservice1protocoltest", cfgs...) - return newInputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService1ProtocolTest { - svc := &InputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService1TestCaseOperation1 = "OperationName" - -// InputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation1Request method. -// req, resp := client.InputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1Request(input *InputService1TestShapeInputShape) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService1TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation1(input *InputService1TestShapeInputShape) (*InputService1TestShapeInputService1TestCaseOperation1Output, error) { - req, out := c.InputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService1TestCaseOperation2 = "OperationName" - -// InputService1TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation2Request method. -// req, resp := client.InputService1TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation2Request(input *InputService1TestShapeInputShape) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation2, - HTTPMethod: "PUT", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService1TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation2(input *InputService1TestShapeInputShape) (*InputService1TestShapeInputService1TestCaseOperation2Output, error) { - req, out := c.InputService1TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -const opInputService1TestCaseOperation3 = "OperationName" - -// InputService1TestCaseOperation3Request generates a "aws/request.Request" representing the -// client's request for the InputService1TestCaseOperation3 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService1TestCaseOperation3 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService1TestCaseOperation3Request method. -// req, resp := client.InputService1TestCaseOperation3Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService1ProtocolTest) InputService1TestCaseOperation3Request(input *InputService1TestShapeInputService1TestCaseOperation3Input) (req *request.Request, output *InputService1TestShapeInputService1TestCaseOperation3Output) { - op := &request.Operation{ - Name: opInputService1TestCaseOperation3, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService1TestShapeInputService1TestCaseOperation3Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService1TestShapeInputService1TestCaseOperation3Output{} - req.Data = output - return -} - -func (c *InputService1ProtocolTest) InputService1TestCaseOperation3(input *InputService1TestShapeInputService1TestCaseOperation3Input) (*InputService1TestShapeInputService1TestCaseOperation3Output, error) { - req, out := c.InputService1TestCaseOperation3Request(input) - err := req.Send() - return out, err -} - -type InputService1TestShapeInputService1TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputService1TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputService1TestCaseOperation3Input struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputService1TestCaseOperation3Output struct { - _ struct{} `type:"structure"` -} - -type InputService1TestShapeInputShape struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - Description *string `type:"string"` - - Name *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService2ProtocolTest client from just a session. -// svc := inputservice2protocoltest.New(mySession) -// -// // Create a InputService2ProtocolTest client with additional configuration -// svc := inputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService2ProtocolTest { - c := p.ClientConfig("inputservice2protocoltest", cfgs...) - return newInputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService2ProtocolTest { - svc := &InputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService2TestCaseOperation1 = "OperationName" - -// InputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService2TestCaseOperation1Request method. -// req, resp := client.InputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1Request(input *InputService2TestShapeInputService2TestCaseOperation1Input) (req *request.Request, output *InputService2TestShapeInputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService2TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService2TestShapeInputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService2TestShapeInputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService2ProtocolTest) InputService2TestCaseOperation1(input *InputService2TestShapeInputService2TestCaseOperation1Input) (*InputService2TestShapeInputService2TestCaseOperation1Output, error) { - req, out := c.InputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService2TestShapeInputService2TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - First *bool `type:"boolean"` - - Fourth *int64 `type:"integer"` - - Second *bool `type:"boolean"` - - Third *float64 `type:"float"` -} - -type InputService2TestShapeInputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService3ProtocolTest client from just a session. -// svc := inputservice3protocoltest.New(mySession) -// -// // Create a InputService3ProtocolTest client with additional configuration -// svc := inputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService3ProtocolTest { - c := p.ClientConfig("inputservice3protocoltest", cfgs...) - return newInputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService3ProtocolTest { - svc := &InputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService3TestCaseOperation1 = "OperationName" - -// InputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation1Request method. -// req, resp := client.InputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1Request(input *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService3TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation1(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation1Output, error) { - req, out := c.InputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService3TestCaseOperation2 = "OperationName" - -// InputService3TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService3TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService3TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService3TestCaseOperation2Request method. -// req, resp := client.InputService3TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService3ProtocolTest) InputService3TestCaseOperation2Request(input *InputService3TestShapeInputShape) (req *request.Request, output *InputService3TestShapeInputService3TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService3TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService3TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService3TestShapeInputService3TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService3ProtocolTest) InputService3TestCaseOperation2(input *InputService3TestShapeInputShape) (*InputService3TestShapeInputService3TestCaseOperation2Output, error) { - req, out := c.InputService3TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService3TestShapeInputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService3TestShapeInputService3TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService3TestShapeInputShape struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - Description *string `type:"string"` - - SubStructure *InputService3TestShapeSubStructure `type:"structure"` -} - -type InputService3TestShapeSubStructure struct { - _ struct{} `type:"structure"` - - Bar *string `type:"string"` - - Foo *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService4ProtocolTest client from just a session. -// svc := inputservice4protocoltest.New(mySession) -// -// // Create a InputService4ProtocolTest client with additional configuration -// svc := inputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService4ProtocolTest { - c := p.ClientConfig("inputservice4protocoltest", cfgs...) - return newInputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService4ProtocolTest { - svc := &InputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService4TestCaseOperation1 = "OperationName" - -// InputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService4TestCaseOperation1Request method. -// req, resp := client.InputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1Request(input *InputService4TestShapeInputService4TestCaseOperation1Input) (req *request.Request, output *InputService4TestShapeInputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService4TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService4TestShapeInputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService4TestShapeInputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService4ProtocolTest) InputService4TestCaseOperation1(input *InputService4TestShapeInputService4TestCaseOperation1Input) (*InputService4TestShapeInputService4TestCaseOperation1Output, error) { - req, out := c.InputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService4TestShapeInputService4TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - Description *string `type:"string"` - - SubStructure *InputService4TestShapeSubStructure `type:"structure"` -} - -type InputService4TestShapeInputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService4TestShapeSubStructure struct { - _ struct{} `type:"structure"` - - Bar *string `type:"string"` - - Foo *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService5ProtocolTest client from just a session. -// svc := inputservice5protocoltest.New(mySession) -// -// // Create a InputService5ProtocolTest client with additional configuration -// svc := inputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService5ProtocolTest { - c := p.ClientConfig("inputservice5protocoltest", cfgs...) - return newInputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService5ProtocolTest { - svc := &InputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService5TestCaseOperation1 = "OperationName" - -// InputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService5TestCaseOperation1Request method. -// req, resp := client.InputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1Request(input *InputService5TestShapeInputService5TestCaseOperation1Input) (req *request.Request, output *InputService5TestShapeInputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService5TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService5TestShapeInputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService5TestShapeInputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService5ProtocolTest) InputService5TestCaseOperation1(input *InputService5TestShapeInputService5TestCaseOperation1Input) (*InputService5TestShapeInputService5TestCaseOperation1Output, error) { - req, out := c.InputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService5TestShapeInputService5TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - ListParam []*string `type:"list"` -} - -type InputService5TestShapeInputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService6ProtocolTest client from just a session. -// svc := inputservice6protocoltest.New(mySession) -// -// // Create a InputService6ProtocolTest client with additional configuration -// svc := inputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService6ProtocolTest { - c := p.ClientConfig("inputservice6protocoltest", cfgs...) - return newInputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService6ProtocolTest { - svc := &InputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService6TestCaseOperation1 = "OperationName" - -// InputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService6TestCaseOperation1Request method. -// req, resp := client.InputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1Request(input *InputService6TestShapeInputService6TestCaseOperation1Input) (req *request.Request, output *InputService6TestShapeInputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService6TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService6TestShapeInputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService6TestShapeInputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService6ProtocolTest) InputService6TestCaseOperation1(input *InputService6TestShapeInputService6TestCaseOperation1Input) (*InputService6TestShapeInputService6TestCaseOperation1Output, error) { - req, out := c.InputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService6TestShapeInputService6TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - ListParam []*string `locationName:"AlternateName" locationNameList:"NotMember" type:"list"` -} - -type InputService6TestShapeInputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService7ProtocolTest client from just a session. -// svc := inputservice7protocoltest.New(mySession) -// -// // Create a InputService7ProtocolTest client with additional configuration -// svc := inputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService7ProtocolTest { - c := p.ClientConfig("inputservice7protocoltest", cfgs...) - return newInputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService7ProtocolTest { - svc := &InputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService7TestCaseOperation1 = "OperationName" - -// InputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService7TestCaseOperation1Request method. -// req, resp := client.InputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1Request(input *InputService7TestShapeInputService7TestCaseOperation1Input) (req *request.Request, output *InputService7TestShapeInputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService7TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService7TestShapeInputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService7TestShapeInputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService7ProtocolTest) InputService7TestCaseOperation1(input *InputService7TestShapeInputService7TestCaseOperation1Input) (*InputService7TestShapeInputService7TestCaseOperation1Output, error) { - req, out := c.InputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService7TestShapeInputService7TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - ListParam []*string `type:"list" flattened:"true"` -} - -type InputService7TestShapeInputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService8ProtocolTest client from just a session. -// svc := inputservice8protocoltest.New(mySession) -// -// // Create a InputService8ProtocolTest client with additional configuration -// svc := inputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService8ProtocolTest { - c := p.ClientConfig("inputservice8protocoltest", cfgs...) - return newInputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService8ProtocolTest { - svc := &InputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService8TestCaseOperation1 = "OperationName" - -// InputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService8TestCaseOperation1Request method. -// req, resp := client.InputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1Request(input *InputService8TestShapeInputService8TestCaseOperation1Input) (req *request.Request, output *InputService8TestShapeInputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService8TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService8TestShapeInputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService8TestShapeInputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService8ProtocolTest) InputService8TestCaseOperation1(input *InputService8TestShapeInputService8TestCaseOperation1Input) (*InputService8TestShapeInputService8TestCaseOperation1Output, error) { - req, out := c.InputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService8TestShapeInputService8TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - ListParam []*string `locationName:"item" type:"list" flattened:"true"` -} - -type InputService8TestShapeInputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService9ProtocolTest client from just a session. -// svc := inputservice9protocoltest.New(mySession) -// -// // Create a InputService9ProtocolTest client with additional configuration -// svc := inputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService9ProtocolTest { - c := p.ClientConfig("inputservice9protocoltest", cfgs...) - return newInputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService9ProtocolTest { - svc := &InputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService9TestCaseOperation1 = "OperationName" - -// InputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService9TestCaseOperation1Request method. -// req, resp := client.InputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1Request(input *InputService9TestShapeInputService9TestCaseOperation1Input) (req *request.Request, output *InputService9TestShapeInputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService9TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService9TestShapeInputService9TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService9TestShapeInputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService9ProtocolTest) InputService9TestCaseOperation1(input *InputService9TestShapeInputService9TestCaseOperation1Input) (*InputService9TestShapeInputService9TestCaseOperation1Output, error) { - req, out := c.InputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService9TestShapeInputService9TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - ListParam []*InputService9TestShapeSingleFieldStruct `locationName:"item" type:"list" flattened:"true"` -} - -type InputService9TestShapeInputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService9TestShapeSingleFieldStruct struct { - _ struct{} `type:"structure"` - - Element *string `locationName:"value" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService10ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService10ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService10ProtocolTest client from just a session. -// svc := inputservice10protocoltest.New(mySession) -// -// // Create a InputService10ProtocolTest client with additional configuration -// svc := inputservice10protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService10ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService10ProtocolTest { - c := p.ClientConfig("inputservice10protocoltest", cfgs...) - return newInputService10ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService10ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService10ProtocolTest { - svc := &InputService10ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice10protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService10ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService10ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService10TestCaseOperation1 = "OperationName" - -// InputService10TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService10TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService10TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService10TestCaseOperation1Request method. -// req, resp := client.InputService10TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService10ProtocolTest) InputService10TestCaseOperation1Request(input *InputService10TestShapeInputService10TestCaseOperation1Input) (req *request.Request, output *InputService10TestShapeInputService10TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService10TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/2014-01-01/hostedzone", - } - - if input == nil { - input = &InputService10TestShapeInputService10TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService10TestShapeInputService10TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService10ProtocolTest) InputService10TestCaseOperation1(input *InputService10TestShapeInputService10TestCaseOperation1Input) (*InputService10TestShapeInputService10TestCaseOperation1Output, error) { - req, out := c.InputService10TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService10TestShapeInputService10TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - StructureParam *InputService10TestShapeStructureShape `type:"structure"` -} - -type InputService10TestShapeInputService10TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService10TestShapeStructureShape struct { - _ struct{} `type:"structure"` - - // B is automatically base64 encoded/decoded by the SDK. - B []byte `locationName:"b" type:"blob"` - - T *time.Time `locationName:"t" type:"timestamp" timestampFormat:"iso8601"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService11ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService11ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService11ProtocolTest client from just a session. -// svc := inputservice11protocoltest.New(mySession) -// -// // Create a InputService11ProtocolTest client with additional configuration -// svc := inputservice11protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService11ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService11ProtocolTest { - c := p.ClientConfig("inputservice11protocoltest", cfgs...) - return newInputService11ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService11ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService11ProtocolTest { - svc := &InputService11ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice11protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService11ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService11ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService11TestCaseOperation1 = "OperationName" - -// InputService11TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService11TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService11TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService11TestCaseOperation1Request method. -// req, resp := client.InputService11TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService11ProtocolTest) InputService11TestCaseOperation1Request(input *InputService11TestShapeInputService11TestCaseOperation1Input) (req *request.Request, output *InputService11TestShapeInputService11TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService11TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService11TestShapeInputService11TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService11TestShapeInputService11TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService11ProtocolTest) InputService11TestCaseOperation1(input *InputService11TestShapeInputService11TestCaseOperation1Input) (*InputService11TestShapeInputService11TestCaseOperation1Output, error) { - req, out := c.InputService11TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService11TestShapeInputService11TestCaseOperation1Input struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - Foo map[string]*string `location:"headers" locationName:"x-foo-" type:"map"` -} - -type InputService11TestShapeInputService11TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService12ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService12ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService12ProtocolTest client from just a session. -// svc := inputservice12protocoltest.New(mySession) -// -// // Create a InputService12ProtocolTest client with additional configuration -// svc := inputservice12protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService12ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService12ProtocolTest { - c := p.ClientConfig("inputservice12protocoltest", cfgs...) - return newInputService12ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService12ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService12ProtocolTest { - svc := &InputService12ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice12protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService12ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService12ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService12TestCaseOperation1 = "OperationName" - -// InputService12TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService12TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService12TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService12TestCaseOperation1Request method. -// req, resp := client.InputService12TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService12ProtocolTest) InputService12TestCaseOperation1Request(input *InputService12TestShapeInputService12TestCaseOperation1Input) (req *request.Request, output *InputService12TestShapeInputService12TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService12TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService12TestShapeInputService12TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService12TestShapeInputService12TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService12ProtocolTest) InputService12TestCaseOperation1(input *InputService12TestShapeInputService12TestCaseOperation1Input) (*InputService12TestShapeInputService12TestCaseOperation1Output, error) { - req, out := c.InputService12TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService12TestShapeInputService12TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Items []*string `location:"querystring" locationName:"item" type:"list"` -} - -type InputService12TestShapeInputService12TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService13ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService13ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService13ProtocolTest client from just a session. -// svc := inputservice13protocoltest.New(mySession) -// -// // Create a InputService13ProtocolTest client with additional configuration -// svc := inputservice13protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService13ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService13ProtocolTest { - c := p.ClientConfig("inputservice13protocoltest", cfgs...) - return newInputService13ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService13ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService13ProtocolTest { - svc := &InputService13ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice13protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService13ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService13ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService13TestCaseOperation1 = "OperationName" - -// InputService13TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService13TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService13TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService13TestCaseOperation1Request method. -// req, resp := client.InputService13TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService13ProtocolTest) InputService13TestCaseOperation1Request(input *InputService13TestShapeInputService13TestCaseOperation1Input) (req *request.Request, output *InputService13TestShapeInputService13TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService13TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService13TestShapeInputService13TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService13TestShapeInputService13TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService13ProtocolTest) InputService13TestCaseOperation1(input *InputService13TestShapeInputService13TestCaseOperation1Input) (*InputService13TestShapeInputService13TestCaseOperation1Output, error) { - req, out := c.InputService13TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService13TestShapeInputService13TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - PipelineId *string `location:"uri" type:"string"` - - QueryDoc map[string]*string `location:"querystring" type:"map"` -} - -type InputService13TestShapeInputService13TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService14ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService14ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService14ProtocolTest client from just a session. -// svc := inputservice14protocoltest.New(mySession) -// -// // Create a InputService14ProtocolTest client with additional configuration -// svc := inputservice14protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService14ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService14ProtocolTest { - c := p.ClientConfig("inputservice14protocoltest", cfgs...) - return newInputService14ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService14ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService14ProtocolTest { - svc := &InputService14ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice14protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService14ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService14ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService14TestCaseOperation1 = "OperationName" - -// InputService14TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService14TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService14TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService14TestCaseOperation1Request method. -// req, resp := client.InputService14TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService14ProtocolTest) InputService14TestCaseOperation1Request(input *InputService14TestShapeInputService14TestCaseOperation1Input) (req *request.Request, output *InputService14TestShapeInputService14TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService14TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/2014-01-01/jobsByPipeline/{PipelineId}", - } - - if input == nil { - input = &InputService14TestShapeInputService14TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService14TestShapeInputService14TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService14ProtocolTest) InputService14TestCaseOperation1(input *InputService14TestShapeInputService14TestCaseOperation1Input) (*InputService14TestShapeInputService14TestCaseOperation1Output, error) { - req, out := c.InputService14TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService14TestShapeInputService14TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - PipelineId *string `location:"uri" type:"string"` - - QueryDoc map[string][]*string `location:"querystring" type:"map"` -} - -type InputService14TestShapeInputService14TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService15ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService15ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService15ProtocolTest client from just a session. -// svc := inputservice15protocoltest.New(mySession) -// -// // Create a InputService15ProtocolTest client with additional configuration -// svc := inputservice15protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService15ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService15ProtocolTest { - c := p.ClientConfig("inputservice15protocoltest", cfgs...) - return newInputService15ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService15ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService15ProtocolTest { - svc := &InputService15ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice15protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService15ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService15ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService15TestCaseOperation1 = "OperationName" - -// InputService15TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService15TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService15TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService15TestCaseOperation1Request method. -// req, resp := client.InputService15TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService15ProtocolTest) InputService15TestCaseOperation1Request(input *InputService15TestShapeInputService15TestCaseOperation1Input) (req *request.Request, output *InputService15TestShapeInputService15TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService15TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService15TestShapeInputService15TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService15TestShapeInputService15TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService15ProtocolTest) InputService15TestCaseOperation1(input *InputService15TestShapeInputService15TestCaseOperation1Input) (*InputService15TestShapeInputService15TestCaseOperation1Output, error) { - req, out := c.InputService15TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService15TestShapeInputService15TestCaseOperation1Input struct { - _ struct{} `type:"structure" payload:"Foo"` - - Foo *string `locationName:"foo" type:"string"` -} - -type InputService15TestShapeInputService15TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService16ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService16ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService16ProtocolTest client from just a session. -// svc := inputservice16protocoltest.New(mySession) -// -// // Create a InputService16ProtocolTest client with additional configuration -// svc := inputservice16protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService16ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService16ProtocolTest { - c := p.ClientConfig("inputservice16protocoltest", cfgs...) - return newInputService16ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService16ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService16ProtocolTest { - svc := &InputService16ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice16protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService16ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService16ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService16TestCaseOperation1 = "OperationName" - -// InputService16TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService16TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService16TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService16TestCaseOperation1Request method. -// req, resp := client.InputService16TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService16ProtocolTest) InputService16TestCaseOperation1Request(input *InputService16TestShapeInputShape) (req *request.Request, output *InputService16TestShapeInputService16TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService16TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService16TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService16TestShapeInputService16TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService16ProtocolTest) InputService16TestCaseOperation1(input *InputService16TestShapeInputShape) (*InputService16TestShapeInputService16TestCaseOperation1Output, error) { - req, out := c.InputService16TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService16TestCaseOperation2 = "OperationName" - -// InputService16TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService16TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService16TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService16TestCaseOperation2Request method. -// req, resp := client.InputService16TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService16ProtocolTest) InputService16TestCaseOperation2Request(input *InputService16TestShapeInputShape) (req *request.Request, output *InputService16TestShapeInputService16TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService16TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService16TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService16TestShapeInputService16TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService16ProtocolTest) InputService16TestCaseOperation2(input *InputService16TestShapeInputShape) (*InputService16TestShapeInputService16TestCaseOperation2Output, error) { - req, out := c.InputService16TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService16TestShapeInputService16TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService16TestShapeInputService16TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService16TestShapeInputShape struct { - _ struct{} `type:"structure" payload:"Foo"` - - Foo []byte `locationName:"foo" type:"blob"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService17ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService17ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService17ProtocolTest client from just a session. -// svc := inputservice17protocoltest.New(mySession) -// -// // Create a InputService17ProtocolTest client with additional configuration -// svc := inputservice17protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService17ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService17ProtocolTest { - c := p.ClientConfig("inputservice17protocoltest", cfgs...) - return newInputService17ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService17ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService17ProtocolTest { - svc := &InputService17ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice17protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService17ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService17ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService17TestCaseOperation1 = "OperationName" - -// InputService17TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService17TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService17TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService17TestCaseOperation1Request method. -// req, resp := client.InputService17TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService17ProtocolTest) InputService17TestCaseOperation1Request(input *InputService17TestShapeInputShape) (req *request.Request, output *InputService17TestShapeInputService17TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService17TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService17TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService17TestShapeInputService17TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService17ProtocolTest) InputService17TestCaseOperation1(input *InputService17TestShapeInputShape) (*InputService17TestShapeInputService17TestCaseOperation1Output, error) { - req, out := c.InputService17TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService17TestCaseOperation2 = "OperationName" - -// InputService17TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService17TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService17TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService17TestCaseOperation2Request method. -// req, resp := client.InputService17TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService17ProtocolTest) InputService17TestCaseOperation2Request(input *InputService17TestShapeInputShape) (req *request.Request, output *InputService17TestShapeInputService17TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService17TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService17TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService17TestShapeInputService17TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService17ProtocolTest) InputService17TestCaseOperation2(input *InputService17TestShapeInputShape) (*InputService17TestShapeInputService17TestCaseOperation2Output, error) { - req, out := c.InputService17TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -const opInputService17TestCaseOperation3 = "OperationName" - -// InputService17TestCaseOperation3Request generates a "aws/request.Request" representing the -// client's request for the InputService17TestCaseOperation3 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService17TestCaseOperation3 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService17TestCaseOperation3Request method. -// req, resp := client.InputService17TestCaseOperation3Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService17ProtocolTest) InputService17TestCaseOperation3Request(input *InputService17TestShapeInputShape) (req *request.Request, output *InputService17TestShapeInputService17TestCaseOperation3Output) { - op := &request.Operation{ - Name: opInputService17TestCaseOperation3, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService17TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService17TestShapeInputService17TestCaseOperation3Output{} - req.Data = output - return -} - -func (c *InputService17ProtocolTest) InputService17TestCaseOperation3(input *InputService17TestShapeInputShape) (*InputService17TestShapeInputService17TestCaseOperation3Output, error) { - req, out := c.InputService17TestCaseOperation3Request(input) - err := req.Send() - return out, err -} - -const opInputService17TestCaseOperation4 = "OperationName" - -// InputService17TestCaseOperation4Request generates a "aws/request.Request" representing the -// client's request for the InputService17TestCaseOperation4 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService17TestCaseOperation4 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService17TestCaseOperation4Request method. -// req, resp := client.InputService17TestCaseOperation4Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService17ProtocolTest) InputService17TestCaseOperation4Request(input *InputService17TestShapeInputShape) (req *request.Request, output *InputService17TestShapeInputService17TestCaseOperation4Output) { - op := &request.Operation{ - Name: opInputService17TestCaseOperation4, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService17TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService17TestShapeInputService17TestCaseOperation4Output{} - req.Data = output - return -} - -func (c *InputService17ProtocolTest) InputService17TestCaseOperation4(input *InputService17TestShapeInputShape) (*InputService17TestShapeInputService17TestCaseOperation4Output, error) { - req, out := c.InputService17TestCaseOperation4Request(input) - err := req.Send() - return out, err -} - -type InputService17TestShapeFooShape struct { - _ struct{} `locationName:"foo" type:"structure"` - - Baz *string `locationName:"baz" type:"string"` -} - -type InputService17TestShapeInputService17TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService17TestShapeInputService17TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService17TestShapeInputService17TestCaseOperation3Output struct { - _ struct{} `type:"structure"` -} - -type InputService17TestShapeInputService17TestCaseOperation4Output struct { - _ struct{} `type:"structure"` -} - -type InputService17TestShapeInputShape struct { - _ struct{} `type:"structure" payload:"Foo"` - - Foo *InputService17TestShapeFooShape `locationName:"foo" type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService18ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService18ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService18ProtocolTest client from just a session. -// svc := inputservice18protocoltest.New(mySession) -// -// // Create a InputService18ProtocolTest client with additional configuration -// svc := inputservice18protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService18ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService18ProtocolTest { - c := p.ClientConfig("inputservice18protocoltest", cfgs...) - return newInputService18ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService18ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService18ProtocolTest { - svc := &InputService18ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice18protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService18ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService18ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService18TestCaseOperation1 = "OperationName" - -// InputService18TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService18TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService18TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService18TestCaseOperation1Request method. -// req, resp := client.InputService18TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService18ProtocolTest) InputService18TestCaseOperation1Request(input *InputService18TestShapeInputService18TestCaseOperation1Input) (req *request.Request, output *InputService18TestShapeInputService18TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService18TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &InputService18TestShapeInputService18TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService18TestShapeInputService18TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService18ProtocolTest) InputService18TestCaseOperation1(input *InputService18TestShapeInputService18TestCaseOperation1Input) (*InputService18TestShapeInputService18TestCaseOperation1Output, error) { - req, out := c.InputService18TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService18TestShapeGrant struct { - _ struct{} `locationName:"Grant" type:"structure"` - - Grantee *InputService18TestShapeGrantee `type:"structure"` -} - -type InputService18TestShapeGrantee struct { - _ struct{} `type:"structure" xmlPrefix:"xsi" xmlURI:"http://www.w3.org/2001/XMLSchema-instance"` - - EmailAddress *string `type:"string"` - - Type *string `locationName:"xsi:type" type:"string" xmlAttribute:"true"` -} - -type InputService18TestShapeInputService18TestCaseOperation1Input struct { - _ struct{} `type:"structure" payload:"Grant"` - - Grant *InputService18TestShapeGrant `locationName:"Grant" type:"structure"` -} - -type InputService18TestShapeInputService18TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService19ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService19ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService19ProtocolTest client from just a session. -// svc := inputservice19protocoltest.New(mySession) -// -// // Create a InputService19ProtocolTest client with additional configuration -// svc := inputservice19protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService19ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService19ProtocolTest { - c := p.ClientConfig("inputservice19protocoltest", cfgs...) - return newInputService19ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService19ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService19ProtocolTest { - svc := &InputService19ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice19protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService19ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService19ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService19TestCaseOperation1 = "OperationName" - -// InputService19TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService19TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService19TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService19TestCaseOperation1Request method. -// req, resp := client.InputService19TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService19ProtocolTest) InputService19TestCaseOperation1Request(input *InputService19TestShapeInputService19TestCaseOperation1Input) (req *request.Request, output *InputService19TestShapeInputService19TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService19TestCaseOperation1, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &InputService19TestShapeInputService19TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService19TestShapeInputService19TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService19ProtocolTest) InputService19TestCaseOperation1(input *InputService19TestShapeInputService19TestCaseOperation1Input) (*InputService19TestShapeInputService19TestCaseOperation1Output, error) { - req, out := c.InputService19TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService19TestShapeInputService19TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - Bucket *string `location:"uri" type:"string"` - - Key *string `location:"uri" type:"string"` -} - -type InputService19TestShapeInputService19TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService20ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService20ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService20ProtocolTest client from just a session. -// svc := inputservice20protocoltest.New(mySession) -// -// // Create a InputService20ProtocolTest client with additional configuration -// svc := inputservice20protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService20ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService20ProtocolTest { - c := p.ClientConfig("inputservice20protocoltest", cfgs...) - return newInputService20ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService20ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService20ProtocolTest { - svc := &InputService20ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice20protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService20ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService20ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService20TestCaseOperation1 = "OperationName" - -// InputService20TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService20TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService20TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService20TestCaseOperation1Request method. -// req, resp := client.InputService20TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService20ProtocolTest) InputService20TestCaseOperation1Request(input *InputService20TestShapeInputShape) (req *request.Request, output *InputService20TestShapeInputService20TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService20TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService20TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService20TestShapeInputService20TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService20ProtocolTest) InputService20TestCaseOperation1(input *InputService20TestShapeInputShape) (*InputService20TestShapeInputService20TestCaseOperation1Output, error) { - req, out := c.InputService20TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService20TestCaseOperation2 = "OperationName" - -// InputService20TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService20TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService20TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService20TestCaseOperation2Request method. -// req, resp := client.InputService20TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService20ProtocolTest) InputService20TestCaseOperation2Request(input *InputService20TestShapeInputShape) (req *request.Request, output *InputService20TestShapeInputService20TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService20TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path?abc=mno", - } - - if input == nil { - input = &InputService20TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService20TestShapeInputService20TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService20ProtocolTest) InputService20TestCaseOperation2(input *InputService20TestShapeInputShape) (*InputService20TestShapeInputService20TestCaseOperation2Output, error) { - req, out := c.InputService20TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService20TestShapeInputService20TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService20TestShapeInputService20TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService20TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Foo *string `location:"querystring" locationName:"param-name" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService21ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService21ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService21ProtocolTest client from just a session. -// svc := inputservice21protocoltest.New(mySession) -// -// // Create a InputService21ProtocolTest client with additional configuration -// svc := inputservice21protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService21ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService21ProtocolTest { - c := p.ClientConfig("inputservice21protocoltest", cfgs...) - return newInputService21ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService21ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService21ProtocolTest { - svc := &InputService21ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice21protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService21ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService21ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService21TestCaseOperation1 = "OperationName" - -// InputService21TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService21TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService21TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService21TestCaseOperation1Request method. -// req, resp := client.InputService21TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService21ProtocolTest) InputService21TestCaseOperation1Request(input *InputService21TestShapeInputShape) (req *request.Request, output *InputService21TestShapeInputService21TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService21TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService21TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService21TestShapeInputService21TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService21ProtocolTest) InputService21TestCaseOperation1(input *InputService21TestShapeInputShape) (*InputService21TestShapeInputService21TestCaseOperation1Output, error) { - req, out := c.InputService21TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService21TestCaseOperation2 = "OperationName" - -// InputService21TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService21TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService21TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService21TestCaseOperation2Request method. -// req, resp := client.InputService21TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService21ProtocolTest) InputService21TestCaseOperation2Request(input *InputService21TestShapeInputShape) (req *request.Request, output *InputService21TestShapeInputService21TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService21TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService21TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService21TestShapeInputService21TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService21ProtocolTest) InputService21TestCaseOperation2(input *InputService21TestShapeInputShape) (*InputService21TestShapeInputService21TestCaseOperation2Output, error) { - req, out := c.InputService21TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -const opInputService21TestCaseOperation3 = "OperationName" - -// InputService21TestCaseOperation3Request generates a "aws/request.Request" representing the -// client's request for the InputService21TestCaseOperation3 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService21TestCaseOperation3 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService21TestCaseOperation3Request method. -// req, resp := client.InputService21TestCaseOperation3Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService21ProtocolTest) InputService21TestCaseOperation3Request(input *InputService21TestShapeInputShape) (req *request.Request, output *InputService21TestShapeInputService21TestCaseOperation3Output) { - op := &request.Operation{ - Name: opInputService21TestCaseOperation3, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService21TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService21TestShapeInputService21TestCaseOperation3Output{} - req.Data = output - return -} - -func (c *InputService21ProtocolTest) InputService21TestCaseOperation3(input *InputService21TestShapeInputShape) (*InputService21TestShapeInputService21TestCaseOperation3Output, error) { - req, out := c.InputService21TestCaseOperation3Request(input) - err := req.Send() - return out, err -} - -const opInputService21TestCaseOperation4 = "OperationName" - -// InputService21TestCaseOperation4Request generates a "aws/request.Request" representing the -// client's request for the InputService21TestCaseOperation4 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService21TestCaseOperation4 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService21TestCaseOperation4Request method. -// req, resp := client.InputService21TestCaseOperation4Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService21ProtocolTest) InputService21TestCaseOperation4Request(input *InputService21TestShapeInputShape) (req *request.Request, output *InputService21TestShapeInputService21TestCaseOperation4Output) { - op := &request.Operation{ - Name: opInputService21TestCaseOperation4, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService21TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService21TestShapeInputService21TestCaseOperation4Output{} - req.Data = output - return -} - -func (c *InputService21ProtocolTest) InputService21TestCaseOperation4(input *InputService21TestShapeInputShape) (*InputService21TestShapeInputService21TestCaseOperation4Output, error) { - req, out := c.InputService21TestCaseOperation4Request(input) - err := req.Send() - return out, err -} - -const opInputService21TestCaseOperation5 = "OperationName" - -// InputService21TestCaseOperation5Request generates a "aws/request.Request" representing the -// client's request for the InputService21TestCaseOperation5 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService21TestCaseOperation5 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService21TestCaseOperation5Request method. -// req, resp := client.InputService21TestCaseOperation5Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService21ProtocolTest) InputService21TestCaseOperation5Request(input *InputService21TestShapeInputShape) (req *request.Request, output *InputService21TestShapeInputService21TestCaseOperation5Output) { - op := &request.Operation{ - Name: opInputService21TestCaseOperation5, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService21TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService21TestShapeInputService21TestCaseOperation5Output{} - req.Data = output - return -} - -func (c *InputService21ProtocolTest) InputService21TestCaseOperation5(input *InputService21TestShapeInputShape) (*InputService21TestShapeInputService21TestCaseOperation5Output, error) { - req, out := c.InputService21TestCaseOperation5Request(input) - err := req.Send() - return out, err -} - -const opInputService21TestCaseOperation6 = "OperationName" - -// InputService21TestCaseOperation6Request generates a "aws/request.Request" representing the -// client's request for the InputService21TestCaseOperation6 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService21TestCaseOperation6 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService21TestCaseOperation6Request method. -// req, resp := client.InputService21TestCaseOperation6Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService21ProtocolTest) InputService21TestCaseOperation6Request(input *InputService21TestShapeInputShape) (req *request.Request, output *InputService21TestShapeInputService21TestCaseOperation6Output) { - op := &request.Operation{ - Name: opInputService21TestCaseOperation6, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService21TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService21TestShapeInputService21TestCaseOperation6Output{} - req.Data = output - return -} - -func (c *InputService21ProtocolTest) InputService21TestCaseOperation6(input *InputService21TestShapeInputShape) (*InputService21TestShapeInputService21TestCaseOperation6Output, error) { - req, out := c.InputService21TestCaseOperation6Request(input) - err := req.Send() - return out, err -} - -type InputService21TestShapeInputService21TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService21TestShapeInputService21TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService21TestShapeInputService21TestCaseOperation3Output struct { - _ struct{} `type:"structure"` -} - -type InputService21TestShapeInputService21TestCaseOperation4Output struct { - _ struct{} `type:"structure"` -} - -type InputService21TestShapeInputService21TestCaseOperation5Output struct { - _ struct{} `type:"structure"` -} - -type InputService21TestShapeInputService21TestCaseOperation6Output struct { - _ struct{} `type:"structure"` -} - -type InputService21TestShapeInputShape struct { - _ struct{} `locationName:"OperationRequest" type:"structure" xmlURI:"https://foo/"` - - RecursiveStruct *InputService21TestShapeRecursiveStructType `type:"structure"` -} - -type InputService21TestShapeRecursiveStructType struct { - _ struct{} `type:"structure"` - - NoRecurse *string `type:"string"` - - RecursiveList []*InputService21TestShapeRecursiveStructType `type:"list"` - - RecursiveMap map[string]*InputService21TestShapeRecursiveStructType `type:"map"` - - RecursiveStruct *InputService21TestShapeRecursiveStructType `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService22ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService22ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService22ProtocolTest client from just a session. -// svc := inputservice22protocoltest.New(mySession) -// -// // Create a InputService22ProtocolTest client with additional configuration -// svc := inputservice22protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService22ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService22ProtocolTest { - c := p.ClientConfig("inputservice22protocoltest", cfgs...) - return newInputService22ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService22ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService22ProtocolTest { - svc := &InputService22ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice22protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService22ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService22ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService22TestCaseOperation1 = "OperationName" - -// InputService22TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService22TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService22TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService22TestCaseOperation1Request method. -// req, resp := client.InputService22TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService22ProtocolTest) InputService22TestCaseOperation1Request(input *InputService22TestShapeInputService22TestCaseOperation1Input) (req *request.Request, output *InputService22TestShapeInputService22TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService22TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService22TestShapeInputService22TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService22TestShapeInputService22TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService22ProtocolTest) InputService22TestCaseOperation1(input *InputService22TestShapeInputService22TestCaseOperation1Input) (*InputService22TestShapeInputService22TestCaseOperation1Output, error) { - req, out := c.InputService22TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type InputService22TestShapeInputService22TestCaseOperation1Input struct { - _ struct{} `type:"structure"` - - TimeArgInHeader *time.Time `location:"header" locationName:"x-amz-timearg" type:"timestamp" timestampFormat:"rfc822"` -} - -type InputService22TestShapeInputService22TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type InputService23ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the InputService23ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a InputService23ProtocolTest client from just a session. -// svc := inputservice23protocoltest.New(mySession) -// -// // Create a InputService23ProtocolTest client with additional configuration -// svc := inputservice23protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewInputService23ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *InputService23ProtocolTest { - c := p.ClientConfig("inputservice23protocoltest", cfgs...) - return newInputService23ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newInputService23ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *InputService23ProtocolTest { - svc := &InputService23ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "inputservice23protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2014-01-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a InputService23ProtocolTest operation and runs any -// custom request initialization. -func (c *InputService23ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opInputService23TestCaseOperation1 = "OperationName" - -// InputService23TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the InputService23TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService23TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService23TestCaseOperation1Request method. -// req, resp := client.InputService23TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService23ProtocolTest) InputService23TestCaseOperation1Request(input *InputService23TestShapeInputShape) (req *request.Request, output *InputService23TestShapeInputService23TestCaseOperation1Output) { - op := &request.Operation{ - Name: opInputService23TestCaseOperation1, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService23TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService23TestShapeInputService23TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *InputService23ProtocolTest) InputService23TestCaseOperation1(input *InputService23TestShapeInputShape) (*InputService23TestShapeInputService23TestCaseOperation1Output, error) { - req, out := c.InputService23TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opInputService23TestCaseOperation2 = "OperationName" - -// InputService23TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the InputService23TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the InputService23TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the InputService23TestCaseOperation2Request method. -// req, resp := client.InputService23TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *InputService23ProtocolTest) InputService23TestCaseOperation2Request(input *InputService23TestShapeInputShape) (req *request.Request, output *InputService23TestShapeInputService23TestCaseOperation2Output) { - op := &request.Operation{ - Name: opInputService23TestCaseOperation2, - HTTPMethod: "POST", - HTTPPath: "/path", - } - - if input == nil { - input = &InputService23TestShapeInputShape{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &InputService23TestShapeInputService23TestCaseOperation2Output{} - req.Data = output - return -} - -func (c *InputService23ProtocolTest) InputService23TestCaseOperation2(input *InputService23TestShapeInputShape) (*InputService23TestShapeInputService23TestCaseOperation2Output, error) { - req, out := c.InputService23TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type InputService23TestShapeInputService23TestCaseOperation1Output struct { - _ struct{} `type:"structure"` -} - -type InputService23TestShapeInputService23TestCaseOperation2Output struct { - _ struct{} `type:"structure"` -} - -type InputService23TestShapeInputShape struct { - _ struct{} `type:"structure"` - - Token *string `type:"string" idempotencyToken:"true"` -} - -// -// Tests begin here -// - -func TestInputService1ProtocolTestBasicXMLSerializationCase1(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputShape{ - Description: aws.String("bar"), - Name: aws.String("foo"), - } - req, _ := svc.InputService1TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `barfoo`, util.Trim(string(body)), InputService1TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService1ProtocolTestBasicXMLSerializationCase2(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputShape{ - Description: aws.String("bar"), - Name: aws.String("foo"), - } - req, _ := svc.InputService1TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `barfoo`, util.Trim(string(body)), InputService1TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService1ProtocolTestBasicXMLSerializationCase3(t *testing.T) { - svc := NewInputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService1TestShapeInputService1TestCaseOperation3Input{} - req, _ := svc.InputService1TestCaseOperation3Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService2ProtocolTestSerializeOtherScalarTypesCase1(t *testing.T) { - svc := NewInputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService2TestShapeInputService2TestCaseOperation1Input{ - First: aws.Bool(true), - Fourth: aws.Int64(3), - Second: aws.Bool(false), - Third: aws.Float64(1.2), - } - req, _ := svc.InputService2TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `true3false1.2`, util.Trim(string(body)), InputService2TestShapeInputService2TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService3ProtocolTestNestedStructuresCase1(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputShape{ - Description: aws.String("baz"), - SubStructure: &InputService3TestShapeSubStructure{ - Bar: aws.String("b"), - Foo: aws.String("a"), - }, - } - req, _ := svc.InputService3TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `bazba`, util.Trim(string(body)), InputService3TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService3ProtocolTestNestedStructuresCase2(t *testing.T) { - svc := NewInputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService3TestShapeInputShape{ - Description: aws.String("baz"), - SubStructure: &InputService3TestShapeSubStructure{ - Foo: aws.String("a"), - }, - } - req, _ := svc.InputService3TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `baza`, util.Trim(string(body)), InputService3TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService4ProtocolTestNestedStructuresCase1(t *testing.T) { - svc := NewInputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService4TestShapeInputService4TestCaseOperation1Input{ - Description: aws.String("baz"), - SubStructure: &InputService4TestShapeSubStructure{}, - } - req, _ := svc.InputService4TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `baz`, util.Trim(string(body)), InputService4TestShapeInputService4TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService5ProtocolTestNonFlattenedListsCase1(t *testing.T) { - svc := NewInputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService5TestShapeInputService5TestCaseOperation1Input{ - ListParam: []*string{ - aws.String("one"), - aws.String("two"), - aws.String("three"), - }, - } - req, _ := svc.InputService5TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `onetwothree`, util.Trim(string(body)), InputService5TestShapeInputService5TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService6ProtocolTestNonFlattenedListsWithLocationNameCase1(t *testing.T) { - svc := NewInputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService6TestShapeInputService6TestCaseOperation1Input{ - ListParam: []*string{ - aws.String("one"), - aws.String("two"), - aws.String("three"), - }, - } - req, _ := svc.InputService6TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `onetwothree`, util.Trim(string(body)), InputService6TestShapeInputService6TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService7ProtocolTestFlattenedListsCase1(t *testing.T) { - svc := NewInputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService7TestShapeInputService7TestCaseOperation1Input{ - ListParam: []*string{ - aws.String("one"), - aws.String("two"), - aws.String("three"), - }, - } - req, _ := svc.InputService7TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `onetwothree`, util.Trim(string(body)), InputService7TestShapeInputService7TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService8ProtocolTestFlattenedListsWithLocationNameCase1(t *testing.T) { - svc := NewInputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService8TestShapeInputService8TestCaseOperation1Input{ - ListParam: []*string{ - aws.String("one"), - aws.String("two"), - aws.String("three"), - }, - } - req, _ := svc.InputService8TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `onetwothree`, util.Trim(string(body)), InputService8TestShapeInputService8TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService9ProtocolTestListOfStructuresCase1(t *testing.T) { - svc := NewInputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService9TestShapeInputService9TestCaseOperation1Input{ - ListParam: []*InputService9TestShapeSingleFieldStruct{ - { - Element: aws.String("one"), - }, - { - Element: aws.String("two"), - }, - { - Element: aws.String("three"), - }, - }, - } - req, _ := svc.InputService9TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `onetwothree`, util.Trim(string(body)), InputService9TestShapeInputService9TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService10ProtocolTestBlobAndTimestampShapesCase1(t *testing.T) { - svc := NewInputService10ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService10TestShapeInputService10TestCaseOperation1Input{ - StructureParam: &InputService10TestShapeStructureShape{ - B: []byte("foo"), - T: aws.Time(time.Unix(1422172800, 0)), - }, - } - req, _ := svc.InputService10TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `Zm9v2015-01-25T08:00:00Z`, util.Trim(string(body)), InputService10TestShapeInputService10TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/hostedzone", r.URL.String()) - - // assert headers - -} - -func TestInputService11ProtocolTestHeaderMapsCase1(t *testing.T) { - svc := NewInputService11ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService11TestShapeInputService11TestCaseOperation1Input{ - Foo: map[string]*string{ - "a": aws.String("b"), - "c": aws.String("d"), - }, - } - req, _ := svc.InputService11TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - assert.Equal(t, "b", r.Header.Get("x-foo-a")) - assert.Equal(t, "d", r.Header.Get("x-foo-c")) - -} - -func TestInputService12ProtocolTestQuerystringListOfStringsCase1(t *testing.T) { - svc := NewInputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService12TestShapeInputService12TestCaseOperation1Input{ - Items: []*string{ - aws.String("value1"), - aws.String("value2"), - }, - } - req, _ := svc.InputService12TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path?item=value1&item=value2", r.URL.String()) - - // assert headers - -} - -func TestInputService13ProtocolTestStringToStringMapsInQuerystringCase1(t *testing.T) { - svc := NewInputService13ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService13TestShapeInputService13TestCaseOperation1Input{ - PipelineId: aws.String("foo"), - QueryDoc: map[string]*string{ - "bar": aws.String("baz"), - "fizz": aws.String("buzz"), - }, - } - req, _ := svc.InputService13TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/foo?bar=baz&fizz=buzz", r.URL.String()) - - // assert headers - -} - -func TestInputService14ProtocolTestStringToStringListMapsInQuerystringCase1(t *testing.T) { - svc := NewInputService14ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService14TestShapeInputService14TestCaseOperation1Input{ - PipelineId: aws.String("id"), - QueryDoc: map[string][]*string{ - "fizz": { - aws.String("buzz"), - aws.String("pop"), - }, - "foo": { - aws.String("bar"), - aws.String("baz"), - }, - }, - } - req, _ := svc.InputService14TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/2014-01-01/jobsByPipeline/id?foo=bar&foo=baz&fizz=buzz&fizz=pop", r.URL.String()) - - // assert headers - -} - -func TestInputService15ProtocolTestStringPayloadCase1(t *testing.T) { - svc := NewInputService15ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService15TestShapeInputService15TestCaseOperation1Input{ - Foo: aws.String("bar"), - } - req, _ := svc.InputService15TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - assert.Equal(t, `bar`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService16ProtocolTestBlobPayloadCase1(t *testing.T) { - svc := NewInputService16ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService16TestShapeInputShape{ - Foo: []byte("bar"), - } - req, _ := svc.InputService16TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - assert.Equal(t, `bar`, util.Trim(string(body))) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService16ProtocolTestBlobPayloadCase2(t *testing.T) { - svc := NewInputService16ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService16TestShapeInputShape{} - req, _ := svc.InputService16TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService17ProtocolTestStructurePayloadCase1(t *testing.T) { - svc := NewInputService17ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService17TestShapeInputShape{ - Foo: &InputService17TestShapeFooShape{ - Baz: aws.String("bar"), - }, - } - req, _ := svc.InputService17TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `bar`, util.Trim(string(body)), InputService17TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService17ProtocolTestStructurePayloadCase2(t *testing.T) { - svc := NewInputService17ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService17TestShapeInputShape{} - req, _ := svc.InputService17TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService17ProtocolTestStructurePayloadCase3(t *testing.T) { - svc := NewInputService17ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService17TestShapeInputShape{ - Foo: &InputService17TestShapeFooShape{}, - } - req, _ := svc.InputService17TestCaseOperation3Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, ``, util.Trim(string(body)), InputService17TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService17ProtocolTestStructurePayloadCase4(t *testing.T) { - svc := NewInputService17ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService17TestShapeInputShape{} - req, _ := svc.InputService17TestCaseOperation4Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService18ProtocolTestXMLAttributeCase1(t *testing.T) { - svc := NewInputService18ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService18TestShapeInputService18TestCaseOperation1Input{ - Grant: &InputService18TestShapeGrant{ - Grantee: &InputService18TestShapeGrantee{ - EmailAddress: aws.String("foo@example.com"), - Type: aws.String("CanonicalUser"), - }, - }, - } - req, _ := svc.InputService18TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `foo@example.com`, util.Trim(string(body)), InputService18TestShapeInputService18TestCaseOperation1Input{}) - - // assert URL - awstesting.AssertURL(t, "https://test/", r.URL.String()) - - // assert headers - -} - -func TestInputService19ProtocolTestGreedyKeysCase1(t *testing.T) { - svc := NewInputService19ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService19TestShapeInputService19TestCaseOperation1Input{ - Bucket: aws.String("my/bucket"), - Key: aws.String("testing /123"), - } - req, _ := svc.InputService19TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/my%2Fbucket/testing%20/123", r.URL.String()) - - // assert headers - -} - -func TestInputService20ProtocolTestOmitsNullQueryParamsButSerializesEmptyStringsCase1(t *testing.T) { - svc := NewInputService20ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService20TestShapeInputShape{} - req, _ := svc.InputService20TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService20ProtocolTestOmitsNullQueryParamsButSerializesEmptyStringsCase2(t *testing.T) { - svc := NewInputService20ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService20TestShapeInputShape{ - Foo: aws.String(""), - } - req, _ := svc.InputService20TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path?abc=mno¶m-name=", r.URL.String()) - - // assert headers - -} - -func TestInputService21ProtocolTestRecursiveShapesCase1(t *testing.T) { - svc := NewInputService21ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService21TestShapeInputShape{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - } - req, _ := svc.InputService21TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `foo`, util.Trim(string(body)), InputService21TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService21ProtocolTestRecursiveShapesCase2(t *testing.T) { - svc := NewInputService21ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService21TestShapeInputShape{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - } - req, _ := svc.InputService21TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `foo`, util.Trim(string(body)), InputService21TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService21ProtocolTestRecursiveShapesCase3(t *testing.T) { - svc := NewInputService21ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService21TestShapeInputShape{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - NoRecurse: aws.String("foo"), - }, - }, - }, - }, - } - req, _ := svc.InputService21TestCaseOperation3Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `foo`, util.Trim(string(body)), InputService21TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService21ProtocolTestRecursiveShapesCase4(t *testing.T) { - svc := NewInputService21ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService21TestShapeInputShape{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - RecursiveList: []*InputService21TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - NoRecurse: aws.String("bar"), - }, - }, - }, - } - req, _ := svc.InputService21TestCaseOperation4Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `foobar`, util.Trim(string(body)), InputService21TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService21ProtocolTestRecursiveShapesCase5(t *testing.T) { - svc := NewInputService21ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService21TestShapeInputShape{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - RecursiveList: []*InputService21TestShapeRecursiveStructType{ - { - NoRecurse: aws.String("foo"), - }, - { - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - NoRecurse: aws.String("bar"), - }, - }, - }, - }, - } - req, _ := svc.InputService21TestCaseOperation5Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `foobar`, util.Trim(string(body)), InputService21TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService21ProtocolTestRecursiveShapesCase6(t *testing.T) { - svc := NewInputService21ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService21TestShapeInputShape{ - RecursiveStruct: &InputService21TestShapeRecursiveStructType{ - RecursiveMap: map[string]*InputService21TestShapeRecursiveStructType{ - "bar": { - NoRecurse: aws.String("bar"), - }, - "foo": { - NoRecurse: aws.String("foo"), - }, - }, - }, - } - req, _ := svc.InputService21TestCaseOperation6Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `foofoobarbar`, util.Trim(string(body)), InputService21TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService22ProtocolTestTimestampInHeaderCase1(t *testing.T) { - svc := NewInputService22ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService22TestShapeInputService22TestCaseOperation1Input{ - TimeArgInHeader: aws.Time(time.Unix(1422172800, 0)), - } - req, _ := svc.InputService22TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - assert.Equal(t, "Sun, 25 Jan 2015 08:00:00 GMT", r.Header.Get("x-amz-timearg")) - -} - -func TestInputService23ProtocolTestIdempotencyTokenAutoFillCase1(t *testing.T) { - svc := NewInputService23ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService23TestShapeInputShape{ - Token: aws.String("abc123"), - } - req, _ := svc.InputService23TestCaseOperation1Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `abc123`, util.Trim(string(body)), InputService23TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} - -func TestInputService23ProtocolTestIdempotencyTokenAutoFillCase2(t *testing.T) { - svc := NewInputService23ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - input := &InputService23TestShapeInputShape{} - req, _ := svc.InputService23TestCaseOperation2Request(input) - r := req.HTTPRequest - - // build request - restxml.Build(req) - assert.NoError(t, req.Error) - - // assert body - assert.NotNil(t, r.Body) - body := util.SortXML(r.Body) - awstesting.AssertXML(t, `00000000-0000-4000-8000-000000000000`, util.Trim(string(body)), InputService23TestShapeInputShape{}) - - // assert URL - awstesting.AssertURL(t, "https://test/path", r.URL.String()) - - // assert headers - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/restxml.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/restxml.go deleted file mode 100644 index c74b97e1..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/restxml.go +++ /dev/null @@ -1,69 +0,0 @@ -// Package restxml provides RESTful XML serialization of AWS -// requests and responses. -package restxml - -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/input/rest-xml.json build_test.go -//go:generate go run ../../../models/protocol_tests/generate.go ../../../models/protocol_tests/output/rest-xml.json unmarshal_test.go - -import ( - "bytes" - "encoding/xml" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/query" - "github.com/aws/aws-sdk-go/private/protocol/rest" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" -) - -// BuildHandler is a named request handler for building restxml protocol requests -var BuildHandler = request.NamedHandler{Name: "awssdk.restxml.Build", Fn: Build} - -// UnmarshalHandler is a named request handler for unmarshaling restxml protocol requests -var UnmarshalHandler = request.NamedHandler{Name: "awssdk.restxml.Unmarshal", Fn: Unmarshal} - -// UnmarshalMetaHandler is a named request handler for unmarshaling restxml protocol request metadata -var UnmarshalMetaHandler = request.NamedHandler{Name: "awssdk.restxml.UnmarshalMeta", Fn: UnmarshalMeta} - -// UnmarshalErrorHandler is a named request handler for unmarshaling restxml protocol request errors -var UnmarshalErrorHandler = request.NamedHandler{Name: "awssdk.restxml.UnmarshalError", Fn: UnmarshalError} - -// Build builds a request payload for the REST XML protocol. -func Build(r *request.Request) { - rest.Build(r) - - if t := rest.PayloadType(r.Params); t == "structure" || t == "" { - var buf bytes.Buffer - err := xmlutil.BuildXML(r.Params, xml.NewEncoder(&buf)) - if err != nil { - r.Error = awserr.New("SerializationError", "failed to encode rest XML request", err) - return - } - r.SetBufferBody(buf.Bytes()) - } -} - -// Unmarshal unmarshals a payload response for the REST XML protocol. -func Unmarshal(r *request.Request) { - if t := rest.PayloadType(r.Data); t == "structure" || t == "" { - defer r.HTTPResponse.Body.Close() - decoder := xml.NewDecoder(r.HTTPResponse.Body) - err := xmlutil.UnmarshalXML(r.Data, decoder, "") - if err != nil { - r.Error = awserr.New("SerializationError", "failed to decode REST XML response", err) - return - } - } else { - rest.Unmarshal(r) - } -} - -// UnmarshalMeta unmarshals response headers for the REST XML protocol. -func UnmarshalMeta(r *request.Request) { - rest.UnmarshalMeta(r) -} - -// UnmarshalError unmarshals a response error for the REST XML protocol. -func UnmarshalError(r *request.Request) { - query.UnmarshalError(r) -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/unmarshal_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/unmarshal_test.go deleted file mode 100644 index 700edb49..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/unmarshal_test.go +++ /dev/null @@ -1,1778 +0,0 @@ -package restxml_test - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "net/url" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/restxml" - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" - "github.com/aws/aws-sdk-go/private/util" - "github.com/stretchr/testify/assert" -) - -var _ bytes.Buffer // always import bytes -var _ http.Request -var _ json.Marshaler -var _ time.Time -var _ xmlutil.XMLNode -var _ xml.Attr -var _ = ioutil.Discard -var _ = util.Trim("") -var _ = url.Values{} -var _ = io.EOF -var _ = aws.String -var _ = fmt.Println - -func init() { - protocol.RandReader = &awstesting.ZeroReader{} -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService1ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService1ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService1ProtocolTest client from just a session. -// svc := outputservice1protocoltest.New(mySession) -// -// // Create a OutputService1ProtocolTest client with additional configuration -// svc := outputservice1protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService1ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService1ProtocolTest { - c := p.ClientConfig("outputservice1protocoltest", cfgs...) - return newOutputService1ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService1ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService1ProtocolTest { - svc := &OutputService1ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice1protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService1ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService1ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService1TestCaseOperation1 = "OperationName" - -// OutputService1TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService1TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService1TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService1TestCaseOperation1Request method. -// req, resp := client.OutputService1TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1Request(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (req *request.Request, output *OutputService1TestShapeOutputShape) { - op := &request.Operation{ - Name: opOutputService1TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService1TestShapeOutputService1TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService1TestShapeOutputShape{} - req.Data = output - return -} - -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation1(input *OutputService1TestShapeOutputService1TestCaseOperation1Input) (*OutputService1TestShapeOutputShape, error) { - req, out := c.OutputService1TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -const opOutputService1TestCaseOperation2 = "OperationName" - -// OutputService1TestCaseOperation2Request generates a "aws/request.Request" representing the -// client's request for the OutputService1TestCaseOperation2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService1TestCaseOperation2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService1TestCaseOperation2Request method. -// req, resp := client.OutputService1TestCaseOperation2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation2Request(input *OutputService1TestShapeOutputService1TestCaseOperation2Input) (req *request.Request, output *OutputService1TestShapeOutputShape) { - op := &request.Operation{ - Name: opOutputService1TestCaseOperation2, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService1TestShapeOutputService1TestCaseOperation2Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService1TestShapeOutputShape{} - req.Data = output - return -} - -func (c *OutputService1ProtocolTest) OutputService1TestCaseOperation2(input *OutputService1TestShapeOutputService1TestCaseOperation2Input) (*OutputService1TestShapeOutputShape, error) { - req, out := c.OutputService1TestCaseOperation2Request(input) - err := req.Send() - return out, err -} - -type OutputService1TestShapeOutputService1TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService1TestShapeOutputService1TestCaseOperation2Input struct { - _ struct{} `type:"structure"` -} - -type OutputService1TestShapeOutputShape struct { - _ struct{} `type:"structure"` - - Char *string `type:"character"` - - Double *float64 `type:"double"` - - FalseBool *bool `type:"boolean"` - - Float *float64 `type:"float"` - - ImaHeader *string `location:"header" type:"string"` - - ImaHeaderLocation *string `location:"header" locationName:"X-Foo" type:"string"` - - Long *int64 `type:"long"` - - Num *int64 `locationName:"FooNum" type:"integer"` - - Str *string `type:"string"` - - Timestamp *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - TrueBool *bool `type:"boolean"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService2ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService2ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService2ProtocolTest client from just a session. -// svc := outputservice2protocoltest.New(mySession) -// -// // Create a OutputService2ProtocolTest client with additional configuration -// svc := outputservice2protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService2ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService2ProtocolTest { - c := p.ClientConfig("outputservice2protocoltest", cfgs...) - return newOutputService2ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService2ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService2ProtocolTest { - svc := &OutputService2ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice2protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService2ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService2ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService2TestCaseOperation1 = "OperationName" - -// OutputService2TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService2TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService2TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService2TestCaseOperation1Request method. -// req, resp := client.OutputService2TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1Request(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (req *request.Request, output *OutputService2TestShapeOutputService2TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService2TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService2TestShapeOutputService2TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService2TestShapeOutputService2TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService2ProtocolTest) OutputService2TestCaseOperation1(input *OutputService2TestShapeOutputService2TestCaseOperation1Input) (*OutputService2TestShapeOutputService2TestCaseOperation1Output, error) { - req, out := c.OutputService2TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService2TestShapeOutputService2TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - // Blob is automatically base64 encoded/decoded by the SDK. - Blob []byte `type:"blob"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService3ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService3ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService3ProtocolTest client from just a session. -// svc := outputservice3protocoltest.New(mySession) -// -// // Create a OutputService3ProtocolTest client with additional configuration -// svc := outputservice3protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService3ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService3ProtocolTest { - c := p.ClientConfig("outputservice3protocoltest", cfgs...) - return newOutputService3ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService3ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService3ProtocolTest { - svc := &OutputService3ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice3protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService3ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService3ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService3TestCaseOperation1 = "OperationName" - -// OutputService3TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService3TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService3TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService3TestCaseOperation1Request method. -// req, resp := client.OutputService3TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1Request(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (req *request.Request, output *OutputService3TestShapeOutputService3TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService3TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService3TestShapeOutputService3TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService3TestShapeOutputService3TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService3ProtocolTest) OutputService3TestCaseOperation1(input *OutputService3TestShapeOutputService3TestCaseOperation1Input) (*OutputService3TestShapeOutputService3TestCaseOperation1Output, error) { - req, out := c.OutputService3TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService3TestShapeOutputService3TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService4ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService4ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService4ProtocolTest client from just a session. -// svc := outputservice4protocoltest.New(mySession) -// -// // Create a OutputService4ProtocolTest client with additional configuration -// svc := outputservice4protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService4ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService4ProtocolTest { - c := p.ClientConfig("outputservice4protocoltest", cfgs...) - return newOutputService4ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService4ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService4ProtocolTest { - svc := &OutputService4ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice4protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService4ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService4ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService4TestCaseOperation1 = "OperationName" - -// OutputService4TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService4TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService4TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService4TestCaseOperation1Request method. -// req, resp := client.OutputService4TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1Request(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (req *request.Request, output *OutputService4TestShapeOutputService4TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService4TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService4TestShapeOutputService4TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService4TestShapeOutputService4TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService4ProtocolTest) OutputService4TestCaseOperation1(input *OutputService4TestShapeOutputService4TestCaseOperation1Input) (*OutputService4TestShapeOutputService4TestCaseOperation1Output, error) { - req, out := c.OutputService4TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService4TestShapeOutputService4TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `locationNameList:"item" type:"list"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService5ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService5ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService5ProtocolTest client from just a session. -// svc := outputservice5protocoltest.New(mySession) -// -// // Create a OutputService5ProtocolTest client with additional configuration -// svc := outputservice5protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService5ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService5ProtocolTest { - c := p.ClientConfig("outputservice5protocoltest", cfgs...) - return newOutputService5ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService5ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService5ProtocolTest { - svc := &OutputService5ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice5protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService5ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService5ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService5TestCaseOperation1 = "OperationName" - -// OutputService5TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService5TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService5TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService5TestCaseOperation1Request method. -// req, resp := client.OutputService5TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1Request(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (req *request.Request, output *OutputService5TestShapeOutputService5TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService5TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService5TestShapeOutputService5TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService5TestShapeOutputService5TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService5ProtocolTest) OutputService5TestCaseOperation1(input *OutputService5TestShapeOutputService5TestCaseOperation1Input) (*OutputService5TestShapeOutputService5TestCaseOperation1Output, error) { - req, out := c.OutputService5TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService5TestShapeOutputService5TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - ListMember []*string `type:"list" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService6ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService6ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService6ProtocolTest client from just a session. -// svc := outputservice6protocoltest.New(mySession) -// -// // Create a OutputService6ProtocolTest client with additional configuration -// svc := outputservice6protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService6ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService6ProtocolTest { - c := p.ClientConfig("outputservice6protocoltest", cfgs...) - return newOutputService6ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService6ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService6ProtocolTest { - svc := &OutputService6ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice6protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService6ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService6ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService6TestCaseOperation1 = "OperationName" - -// OutputService6TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService6TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService6TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService6TestCaseOperation1Request method. -// req, resp := client.OutputService6TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1Request(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (req *request.Request, output *OutputService6TestShapeOutputService6TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService6TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService6TestShapeOutputService6TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService6TestShapeOutputService6TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService6ProtocolTest) OutputService6TestCaseOperation1(input *OutputService6TestShapeOutputService6TestCaseOperation1Input) (*OutputService6TestShapeOutputService6TestCaseOperation1Output, error) { - req, out := c.OutputService6TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService6TestShapeOutputService6TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*OutputService6TestShapeSingleStructure `type:"map"` -} - -type OutputService6TestShapeSingleStructure struct { - _ struct{} `type:"structure"` - - Foo *string `locationName:"foo" type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService7ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService7ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService7ProtocolTest client from just a session. -// svc := outputservice7protocoltest.New(mySession) -// -// // Create a OutputService7ProtocolTest client with additional configuration -// svc := outputservice7protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService7ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService7ProtocolTest { - c := p.ClientConfig("outputservice7protocoltest", cfgs...) - return newOutputService7ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService7ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService7ProtocolTest { - svc := &OutputService7ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice7protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService7ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService7ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService7TestCaseOperation1 = "OperationName" - -// OutputService7TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService7TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService7TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService7TestCaseOperation1Request method. -// req, resp := client.OutputService7TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1Request(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (req *request.Request, output *OutputService7TestShapeOutputService7TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService7TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService7TestShapeOutputService7TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService7TestShapeOutputService7TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService7ProtocolTest) OutputService7TestCaseOperation1(input *OutputService7TestShapeOutputService7TestCaseOperation1Input) (*OutputService7TestShapeOutputService7TestCaseOperation1Output, error) { - req, out := c.OutputService7TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService7TestShapeOutputService7TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*string `type:"map" flattened:"true"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService8ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService8ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService8ProtocolTest client from just a session. -// svc := outputservice8protocoltest.New(mySession) -// -// // Create a OutputService8ProtocolTest client with additional configuration -// svc := outputservice8protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService8ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService8ProtocolTest { - c := p.ClientConfig("outputservice8protocoltest", cfgs...) - return newOutputService8ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService8ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService8ProtocolTest { - svc := &OutputService8ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice8protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService8ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService8ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService8TestCaseOperation1 = "OperationName" - -// OutputService8TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService8TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService8TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService8TestCaseOperation1Request method. -// req, resp := client.OutputService8TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1Request(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (req *request.Request, output *OutputService8TestShapeOutputService8TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService8TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService8TestShapeOutputService8TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService8TestShapeOutputService8TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService8ProtocolTest) OutputService8TestCaseOperation1(input *OutputService8TestShapeOutputService8TestCaseOperation1Input) (*OutputService8TestShapeOutputService8TestCaseOperation1Output, error) { - req, out := c.OutputService8TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService8TestShapeOutputService8TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Map map[string]*string `locationNameKey:"foo" locationNameValue:"bar" type:"map"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService9ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService9ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService9ProtocolTest client from just a session. -// svc := outputservice9protocoltest.New(mySession) -// -// // Create a OutputService9ProtocolTest client with additional configuration -// svc := outputservice9protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService9ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService9ProtocolTest { - c := p.ClientConfig("outputservice9protocoltest", cfgs...) - return newOutputService9ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService9ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService9ProtocolTest { - svc := &OutputService9ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice9protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService9ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService9ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService9TestCaseOperation1 = "OperationName" - -// OutputService9TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService9TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService9TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService9TestCaseOperation1Request method. -// req, resp := client.OutputService9TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1Request(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (req *request.Request, output *OutputService9TestShapeOutputService9TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService9TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService9TestShapeOutputService9TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService9TestShapeOutputService9TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService9ProtocolTest) OutputService9TestCaseOperation1(input *OutputService9TestShapeOutputService9TestCaseOperation1Input) (*OutputService9TestShapeOutputService9TestCaseOperation1Output, error) { - req, out := c.OutputService9TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService9TestShapeOutputService9TestCaseOperation1Output struct { - _ struct{} `type:"structure" payload:"Data"` - - Data *OutputService9TestShapeSingleStructure `type:"structure"` - - Header *string `location:"header" locationName:"X-Foo" type:"string"` -} - -type OutputService9TestShapeSingleStructure struct { - _ struct{} `type:"structure"` - - Foo *string `type:"string"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService10ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService10ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService10ProtocolTest client from just a session. -// svc := outputservice10protocoltest.New(mySession) -// -// // Create a OutputService10ProtocolTest client with additional configuration -// svc := outputservice10protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService10ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService10ProtocolTest { - c := p.ClientConfig("outputservice10protocoltest", cfgs...) - return newOutputService10ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService10ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService10ProtocolTest { - svc := &OutputService10ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice10protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService10ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService10ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService10TestCaseOperation1 = "OperationName" - -// OutputService10TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService10TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService10TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService10TestCaseOperation1Request method. -// req, resp := client.OutputService10TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1Request(input *OutputService10TestShapeOutputService10TestCaseOperation1Input) (req *request.Request, output *OutputService10TestShapeOutputService10TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService10TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService10TestShapeOutputService10TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService10TestShapeOutputService10TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService10ProtocolTest) OutputService10TestCaseOperation1(input *OutputService10TestShapeOutputService10TestCaseOperation1Input) (*OutputService10TestShapeOutputService10TestCaseOperation1Output, error) { - req, out := c.OutputService10TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService10TestShapeOutputService10TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService10TestShapeOutputService10TestCaseOperation1Output struct { - _ struct{} `type:"structure" payload:"Stream"` - - Stream []byte `type:"blob"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService11ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService11ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService11ProtocolTest client from just a session. -// svc := outputservice11protocoltest.New(mySession) -// -// // Create a OutputService11ProtocolTest client with additional configuration -// svc := outputservice11protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService11ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService11ProtocolTest { - c := p.ClientConfig("outputservice11protocoltest", cfgs...) - return newOutputService11ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService11ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService11ProtocolTest { - svc := &OutputService11ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice11protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService11ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService11ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService11TestCaseOperation1 = "OperationName" - -// OutputService11TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService11TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService11TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService11TestCaseOperation1Request method. -// req, resp := client.OutputService11TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1Request(input *OutputService11TestShapeOutputService11TestCaseOperation1Input) (req *request.Request, output *OutputService11TestShapeOutputService11TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService11TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService11TestShapeOutputService11TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService11TestShapeOutputService11TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService11ProtocolTest) OutputService11TestCaseOperation1(input *OutputService11TestShapeOutputService11TestCaseOperation1Input) (*OutputService11TestShapeOutputService11TestCaseOperation1Output, error) { - req, out := c.OutputService11TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService11TestShapeOutputService11TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService11TestShapeOutputService11TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Char *string `location:"header" locationName:"x-char" type:"character"` - - Double *float64 `location:"header" locationName:"x-double" type:"double"` - - FalseBool *bool `location:"header" locationName:"x-false-bool" type:"boolean"` - - Float *float64 `location:"header" locationName:"x-float" type:"float"` - - Integer *int64 `location:"header" locationName:"x-int" type:"integer"` - - Long *int64 `location:"header" locationName:"x-long" type:"long"` - - Str *string `location:"header" locationName:"x-str" type:"string"` - - Timestamp *time.Time `location:"header" locationName:"x-timestamp" type:"timestamp" timestampFormat:"iso8601"` - - TrueBool *bool `location:"header" locationName:"x-true-bool" type:"boolean"` -} - -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type OutputService12ProtocolTest struct { - *client.Client -} - -// New creates a new instance of the OutputService12ProtocolTest client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a OutputService12ProtocolTest client from just a session. -// svc := outputservice12protocoltest.New(mySession) -// -// // Create a OutputService12ProtocolTest client with additional configuration -// svc := outputservice12protocoltest.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func NewOutputService12ProtocolTest(p client.ConfigProvider, cfgs ...*aws.Config) *OutputService12ProtocolTest { - c := p.ClientConfig("outputservice12protocoltest", cfgs...) - return newOutputService12ProtocolTestClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newOutputService12ProtocolTestClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *OutputService12ProtocolTest { - svc := &OutputService12ProtocolTest{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: "outputservice12protocoltest", - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - return svc -} - -// newRequest creates a new request for a OutputService12ProtocolTest operation and runs any -// custom request initialization. -func (c *OutputService12ProtocolTest) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - return req -} - -const opOutputService12TestCaseOperation1 = "OperationName" - -// OutputService12TestCaseOperation1Request generates a "aws/request.Request" representing the -// client's request for the OutputService12TestCaseOperation1 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the OutputService12TestCaseOperation1 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the OutputService12TestCaseOperation1Request method. -// req, resp := client.OutputService12TestCaseOperation1Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *OutputService12ProtocolTest) OutputService12TestCaseOperation1Request(input *OutputService12TestShapeOutputService12TestCaseOperation1Input) (req *request.Request, output *OutputService12TestShapeOutputService12TestCaseOperation1Output) { - op := &request.Operation{ - Name: opOutputService12TestCaseOperation1, - HTTPPath: "/", - } - - if input == nil { - input = &OutputService12TestShapeOutputService12TestCaseOperation1Input{} - } - - req = c.newRequest(op, input, output) - output = &OutputService12TestShapeOutputService12TestCaseOperation1Output{} - req.Data = output - return -} - -func (c *OutputService12ProtocolTest) OutputService12TestCaseOperation1(input *OutputService12TestShapeOutputService12TestCaseOperation1Input) (*OutputService12TestShapeOutputService12TestCaseOperation1Output, error) { - req, out := c.OutputService12TestCaseOperation1Request(input) - err := req.Send() - return out, err -} - -type OutputService12TestShapeOutputService12TestCaseOperation1Input struct { - _ struct{} `type:"structure"` -} - -type OutputService12TestShapeOutputService12TestCaseOperation1Output struct { - _ struct{} `type:"structure"` - - Foo *string `type:"string"` -} - -// -// Tests begin here -// - -func TestOutputService1ProtocolTestScalarMembersCase1(t *testing.T) { - svc := NewOutputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("myname123falsetrue1.21.3200a2015-01-25T08:00:00Z")) - req, out := svc.OutputService1TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - req.HTTPResponse.Header.Set("ImaHeader", "test") - req.HTTPResponse.Header.Set("X-Foo", "abc") - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.Char) - assert.Equal(t, 1.3, *out.Double) - assert.Equal(t, false, *out.FalseBool) - assert.Equal(t, 1.2, *out.Float) - assert.Equal(t, "test", *out.ImaHeader) - assert.Equal(t, "abc", *out.ImaHeaderLocation) - assert.Equal(t, int64(200), *out.Long) - assert.Equal(t, int64(123), *out.Num) - assert.Equal(t, "myname", *out.Str) - assert.Equal(t, time.Unix(1.4221728e+09, 0).UTC().String(), out.Timestamp.String()) - assert.Equal(t, true, *out.TrueBool) - -} - -func TestOutputService1ProtocolTestScalarMembersCase2(t *testing.T) { - svc := NewOutputService1ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("123falsetrue1.21.3200a2015-01-25T08:00:00Z")) - req, out := svc.OutputService1TestCaseOperation2Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - req.HTTPResponse.Header.Set("ImaHeader", "test") - req.HTTPResponse.Header.Set("X-Foo", "abc") - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.Char) - assert.Equal(t, 1.3, *out.Double) - assert.Equal(t, false, *out.FalseBool) - assert.Equal(t, 1.2, *out.Float) - assert.Equal(t, "test", *out.ImaHeader) - assert.Equal(t, "abc", *out.ImaHeaderLocation) - assert.Equal(t, int64(200), *out.Long) - assert.Equal(t, int64(123), *out.Num) - assert.Equal(t, "", *out.Str) - assert.Equal(t, time.Unix(1.4221728e+09, 0).UTC().String(), out.Timestamp.String()) - assert.Equal(t, true, *out.TrueBool) - -} - -func TestOutputService2ProtocolTestBlobCase1(t *testing.T) { - svc := NewOutputService2ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("dmFsdWU=")) - req, out := svc.OutputService2TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "value", string(out.Blob)) - -} - -func TestOutputService3ProtocolTestListsCase1(t *testing.T) { - svc := NewOutputService3ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123")) - req, out := svc.OutputService3TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService4ProtocolTestListWithCustomMemberNameCase1(t *testing.T) { - svc := NewOutputService4ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123")) - req, out := svc.OutputService4TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService5ProtocolTestFlattenedListCase1(t *testing.T) { - svc := NewOutputService5ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc123")) - req, out := svc.OutputService5TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.ListMember[0]) - assert.Equal(t, "123", *out.ListMember[1]) - -} - -func TestOutputService6ProtocolTestNormalMapCase1(t *testing.T) { - svc := NewOutputService6ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbam")) - req, out := svc.OutputService6TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"].Foo) - assert.Equal(t, "bar", *out.Map["qux"].Foo) - -} - -func TestOutputService7ProtocolTestFlattenedMapCase1(t *testing.T) { - svc := NewOutputService7ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbam")) - req, out := svc.OutputService7TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"]) - assert.Equal(t, "bar", *out.Map["qux"]) - -} - -func TestOutputService8ProtocolTestNamedMapCase1(t *testing.T) { - svc := NewOutputService8ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("quxbarbazbam")) - req, out := svc.OutputService8TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "bam", *out.Map["baz"]) - assert.Equal(t, "bar", *out.Map["qux"]) - -} - -func TestOutputService9ProtocolTestXMLPayloadCase1(t *testing.T) { - svc := NewOutputService9ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc")) - req, out := svc.OutputService9TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - req.HTTPResponse.Header.Set("X-Foo", "baz") - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", *out.Data.Foo) - assert.Equal(t, "baz", *out.Header) - -} - -func TestOutputService10ProtocolTestStreamingPayloadCase1(t *testing.T) { - svc := NewOutputService10ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("abc")) - req, out := svc.OutputService10TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "abc", string(out.Stream)) - -} - -func TestOutputService11ProtocolTestScalarMembersInHeadersCase1(t *testing.T) { - svc := NewOutputService11ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("")) - req, out := svc.OutputService11TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - req.HTTPResponse.Header.Set("x-char", "a") - req.HTTPResponse.Header.Set("x-double", "1.5") - req.HTTPResponse.Header.Set("x-false-bool", "false") - req.HTTPResponse.Header.Set("x-float", "1.5") - req.HTTPResponse.Header.Set("x-int", "1") - req.HTTPResponse.Header.Set("x-long", "100") - req.HTTPResponse.Header.Set("x-str", "string") - req.HTTPResponse.Header.Set("x-timestamp", "Sun, 25 Jan 2015 08:00:00 GMT") - req.HTTPResponse.Header.Set("x-true-bool", "true") - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "a", *out.Char) - assert.Equal(t, 1.5, *out.Double) - assert.Equal(t, false, *out.FalseBool) - assert.Equal(t, 1.5, *out.Float) - assert.Equal(t, int64(1), *out.Integer) - assert.Equal(t, int64(100), *out.Long) - assert.Equal(t, "string", *out.Str) - assert.Equal(t, time.Unix(1.4221728e+09, 0).UTC().String(), out.Timestamp.String()) - assert.Equal(t, true, *out.TrueBool) - -} - -func TestOutputService12ProtocolTestEmptyStringCase1(t *testing.T) { - svc := NewOutputService12ProtocolTest(unit.Session, &aws.Config{Endpoint: aws.String("https://test")}) - - buf := bytes.NewReader([]byte("requestid")) - req, out := svc.OutputService12TestCaseOperation1Request(nil) - req.HTTPResponse = &http.Response{StatusCode: 200, Body: ioutil.NopCloser(buf), Header: http.Header{}} - - // set headers - - // unmarshal response - restxml.UnmarshalMeta(req) - restxml.Unmarshal(req) - assert.NoError(t, req.Error) - - // assert response - assert.NotNil(t, out) // ensure out variable is used - assert.Equal(t, "", *out.Foo) - -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go deleted file mode 100644 index da1a6811..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go +++ /dev/null @@ -1,21 +0,0 @@ -package protocol - -import ( - "io" - "io/ioutil" - - "github.com/aws/aws-sdk-go/aws/request" -) - -// UnmarshalDiscardBodyHandler is a named request handler to empty and close a response's body -var UnmarshalDiscardBodyHandler = request.NamedHandler{Name: "awssdk.shared.UnmarshalDiscardBody", Fn: UnmarshalDiscardBody} - -// UnmarshalDiscardBody is a request handler to empty a response's body and closing it. -func UnmarshalDiscardBody(r *request.Request) { - if r.HTTPResponse == nil || r.HTTPResponse.Body == nil { - return - } - - io.Copy(ioutil.Discard, r.HTTPResponse.Body) - r.HTTPResponse.Body.Close() -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_test.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_test.go deleted file mode 100644 index 2733e993..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_test.go +++ /dev/null @@ -1,40 +0,0 @@ -package protocol_test - -import ( - "net/http" - "strings" - "testing" - - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/stretchr/testify/assert" -) - -type mockCloser struct { - *strings.Reader - Closed bool -} - -func (m *mockCloser) Close() error { - m.Closed = true - return nil -} - -func TestUnmarshalDrainBody(t *testing.T) { - b := &mockCloser{Reader: strings.NewReader("example body")} - r := &request.Request{HTTPResponse: &http.Response{ - Body: b, - }} - - protocol.UnmarshalDiscardBody(r) - assert.NoError(t, r.Error) - assert.Equal(t, 0, b.Len()) - assert.True(t, b.Closed) -} - -func TestUnmarshalDrainBodyNoBody(t *testing.T) { - r := &request.Request{HTTPResponse: &http.Response{}} - - protocol.UnmarshalDiscardBody(r) - assert.NoError(t, r.Error) -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go deleted file mode 100644 index 221029ba..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go +++ /dev/null @@ -1,293 +0,0 @@ -// Package xmlutil provides XML serialization of AWS requests and responses. -package xmlutil - -import ( - "encoding/base64" - "encoding/xml" - "fmt" - "reflect" - "sort" - "strconv" - "time" - - "github.com/aws/aws-sdk-go/private/protocol" -) - -// BuildXML will serialize params into an xml.Encoder. -// Error will be returned if the serialization of any of the params or nested values fails. -func BuildXML(params interface{}, e *xml.Encoder) error { - b := xmlBuilder{encoder: e, namespaces: map[string]string{}} - root := NewXMLElement(xml.Name{}) - if err := b.buildValue(reflect.ValueOf(params), root, ""); err != nil { - return err - } - for _, c := range root.Children { - for _, v := range c { - return StructToXML(e, v, false) - } - } - return nil -} - -// Returns the reflection element of a value, if it is a pointer. -func elemOf(value reflect.Value) reflect.Value { - for value.Kind() == reflect.Ptr { - value = value.Elem() - } - return value -} - -// A xmlBuilder serializes values from Go code to XML -type xmlBuilder struct { - encoder *xml.Encoder - namespaces map[string]string -} - -// buildValue generic XMLNode builder for any type. Will build value for their specific type -// struct, list, map, scalar. -// -// Also takes a "type" tag value to set what type a value should be converted to XMLNode as. If -// type is not provided reflect will be used to determine the value's type. -func (b *xmlBuilder) buildValue(value reflect.Value, current *XMLNode, tag reflect.StructTag) error { - value = elemOf(value) - if !value.IsValid() { // no need to handle zero values - return nil - } else if tag.Get("location") != "" { // don't handle non-body location values - return nil - } - - t := tag.Get("type") - if t == "" { - switch value.Kind() { - case reflect.Struct: - t = "structure" - case reflect.Slice: - t = "list" - case reflect.Map: - t = "map" - } - } - - switch t { - case "structure": - if field, ok := value.Type().FieldByName("_"); ok { - tag = tag + reflect.StructTag(" ") + field.Tag - } - return b.buildStruct(value, current, tag) - case "list": - return b.buildList(value, current, tag) - case "map": - return b.buildMap(value, current, tag) - default: - return b.buildScalar(value, current, tag) - } -} - -// buildStruct adds a struct and its fields to the current XMLNode. All fields any any nested -// types are converted to XMLNodes also. -func (b *xmlBuilder) buildStruct(value reflect.Value, current *XMLNode, tag reflect.StructTag) error { - if !value.IsValid() { - return nil - } - - fieldAdded := false - - // unwrap payloads - if payload := tag.Get("payload"); payload != "" { - field, _ := value.Type().FieldByName(payload) - tag = field.Tag - value = elemOf(value.FieldByName(payload)) - - if !value.IsValid() { - return nil - } - } - - child := NewXMLElement(xml.Name{Local: tag.Get("locationName")}) - - // there is an xmlNamespace associated with this struct - if prefix, uri := tag.Get("xmlPrefix"), tag.Get("xmlURI"); uri != "" { - ns := xml.Attr{ - Name: xml.Name{Local: "xmlns"}, - Value: uri, - } - if prefix != "" { - b.namespaces[prefix] = uri // register the namespace - ns.Name.Local = "xmlns:" + prefix - } - - child.Attr = append(child.Attr, ns) - } - - t := value.Type() - for i := 0; i < value.NumField(); i++ { - member := elemOf(value.Field(i)) - field := t.Field(i) - - if field.PkgPath != "" { - continue // ignore unexported fields - } - - mTag := field.Tag - if mTag.Get("location") != "" { // skip non-body members - continue - } - - if protocol.CanSetIdempotencyToken(value.Field(i), field) { - token := protocol.GetIdempotencyToken() - member = reflect.ValueOf(token) - } - - memberName := mTag.Get("locationName") - if memberName == "" { - memberName = field.Name - mTag = reflect.StructTag(string(mTag) + ` locationName:"` + memberName + `"`) - } - if err := b.buildValue(member, child, mTag); err != nil { - return err - } - - fieldAdded = true - } - - if fieldAdded { // only append this child if we have one ore more valid members - current.AddChild(child) - } - - return nil -} - -// buildList adds the value's list items to the current XMLNode as children nodes. All -// nested values in the list are converted to XMLNodes also. -func (b *xmlBuilder) buildList(value reflect.Value, current *XMLNode, tag reflect.StructTag) error { - if value.IsNil() { // don't build omitted lists - return nil - } - - // check for unflattened list member - flattened := tag.Get("flattened") != "" - - xname := xml.Name{Local: tag.Get("locationName")} - if flattened { - for i := 0; i < value.Len(); i++ { - child := NewXMLElement(xname) - current.AddChild(child) - if err := b.buildValue(value.Index(i), child, ""); err != nil { - return err - } - } - } else { - list := NewXMLElement(xname) - current.AddChild(list) - - for i := 0; i < value.Len(); i++ { - iname := tag.Get("locationNameList") - if iname == "" { - iname = "member" - } - - child := NewXMLElement(xml.Name{Local: iname}) - list.AddChild(child) - if err := b.buildValue(value.Index(i), child, ""); err != nil { - return err - } - } - } - - return nil -} - -// buildMap adds the value's key/value pairs to the current XMLNode as children nodes. All -// nested values in the map are converted to XMLNodes also. -// -// Error will be returned if it is unable to build the map's values into XMLNodes -func (b *xmlBuilder) buildMap(value reflect.Value, current *XMLNode, tag reflect.StructTag) error { - if value.IsNil() { // don't build omitted maps - return nil - } - - maproot := NewXMLElement(xml.Name{Local: tag.Get("locationName")}) - current.AddChild(maproot) - current = maproot - - kname, vname := "key", "value" - if n := tag.Get("locationNameKey"); n != "" { - kname = n - } - if n := tag.Get("locationNameValue"); n != "" { - vname = n - } - - // sorting is not required for compliance, but it makes testing easier - keys := make([]string, value.Len()) - for i, k := range value.MapKeys() { - keys[i] = k.String() - } - sort.Strings(keys) - - for _, k := range keys { - v := value.MapIndex(reflect.ValueOf(k)) - - mapcur := current - if tag.Get("flattened") == "" { // add "entry" tag to non-flat maps - child := NewXMLElement(xml.Name{Local: "entry"}) - mapcur.AddChild(child) - mapcur = child - } - - kchild := NewXMLElement(xml.Name{Local: kname}) - kchild.Text = k - vchild := NewXMLElement(xml.Name{Local: vname}) - mapcur.AddChild(kchild) - mapcur.AddChild(vchild) - - if err := b.buildValue(v, vchild, ""); err != nil { - return err - } - } - - return nil -} - -// buildScalar will convert the value into a string and append it as a attribute or child -// of the current XMLNode. -// -// The value will be added as an attribute if tag contains a "xmlAttribute" attribute value. -// -// Error will be returned if the value type is unsupported. -func (b *xmlBuilder) buildScalar(value reflect.Value, current *XMLNode, tag reflect.StructTag) error { - var str string - switch converted := value.Interface().(type) { - case string: - str = converted - case []byte: - if !value.IsNil() { - str = base64.StdEncoding.EncodeToString(converted) - } - case bool: - str = strconv.FormatBool(converted) - case int64: - str = strconv.FormatInt(converted, 10) - case int: - str = strconv.Itoa(converted) - case float64: - str = strconv.FormatFloat(converted, 'f', -1, 64) - case float32: - str = strconv.FormatFloat(float64(converted), 'f', -1, 32) - case time.Time: - const ISO8601UTC = "2006-01-02T15:04:05Z" - str = converted.UTC().Format(ISO8601UTC) - default: - return fmt.Errorf("unsupported value for param %s: %v (%s)", - tag.Get("locationName"), value.Interface(), value.Type().Name()) - } - - xname := xml.Name{Local: tag.Get("locationName")} - if tag.Get("xmlAttribute") != "" { // put into current node's attribute list - attr := xml.Attr{Name: xname, Value: str} - current.Attr = append(current.Attr, attr) - } else { // regular text node - current.AddChild(&XMLNode{Name: xname, Text: str}) - } - return nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go deleted file mode 100644 index 49f291a8..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go +++ /dev/null @@ -1,260 +0,0 @@ -package xmlutil - -import ( - "encoding/base64" - "encoding/xml" - "fmt" - "io" - "reflect" - "strconv" - "strings" - "time" -) - -// UnmarshalXML deserializes an xml.Decoder into the container v. V -// needs to match the shape of the XML expected to be decoded. -// If the shape doesn't match unmarshaling will fail. -func UnmarshalXML(v interface{}, d *xml.Decoder, wrapper string) error { - n, _ := XMLToStruct(d, nil) - if n.Children != nil { - for _, root := range n.Children { - for _, c := range root { - if wrappedChild, ok := c.Children[wrapper]; ok { - c = wrappedChild[0] // pull out wrapped element - } - - err := parse(reflect.ValueOf(v), c, "") - if err != nil { - if err == io.EOF { - return nil - } - return err - } - } - } - return nil - } - return nil -} - -// parse deserializes any value from the XMLNode. The type tag is used to infer the type, or reflect -// will be used to determine the type from r. -func parse(r reflect.Value, node *XMLNode, tag reflect.StructTag) error { - rtype := r.Type() - if rtype.Kind() == reflect.Ptr { - rtype = rtype.Elem() // check kind of actual element type - } - - t := tag.Get("type") - if t == "" { - switch rtype.Kind() { - case reflect.Struct: - t = "structure" - case reflect.Slice: - t = "list" - case reflect.Map: - t = "map" - } - } - - switch t { - case "structure": - if field, ok := rtype.FieldByName("_"); ok { - tag = field.Tag - } - return parseStruct(r, node, tag) - case "list": - return parseList(r, node, tag) - case "map": - return parseMap(r, node, tag) - default: - return parseScalar(r, node, tag) - } -} - -// parseStruct deserializes a structure and its fields from an XMLNode. Any nested -// types in the structure will also be deserialized. -func parseStruct(r reflect.Value, node *XMLNode, tag reflect.StructTag) error { - t := r.Type() - if r.Kind() == reflect.Ptr { - if r.IsNil() { // create the structure if it's nil - s := reflect.New(r.Type().Elem()) - r.Set(s) - r = s - } - - r = r.Elem() - t = t.Elem() - } - - // unwrap any payloads - if payload := tag.Get("payload"); payload != "" { - field, _ := t.FieldByName(payload) - return parseStruct(r.FieldByName(payload), node, field.Tag) - } - - for i := 0; i < t.NumField(); i++ { - field := t.Field(i) - if c := field.Name[0:1]; strings.ToLower(c) == c { - continue // ignore unexported fields - } - - // figure out what this field is called - name := field.Name - if field.Tag.Get("flattened") != "" && field.Tag.Get("locationNameList") != "" { - name = field.Tag.Get("locationNameList") - } else if locName := field.Tag.Get("locationName"); locName != "" { - name = locName - } - - // try to find the field by name in elements - elems := node.Children[name] - - if elems == nil { // try to find the field in attributes - for _, a := range node.Attr { - if name == a.Name.Local { - // turn this into a text node for de-serializing - elems = []*XMLNode{{Text: a.Value}} - } - } - } - - member := r.FieldByName(field.Name) - for _, elem := range elems { - err := parse(member, elem, field.Tag) - if err != nil { - return err - } - } - } - return nil -} - -// parseList deserializes a list of values from an XML node. Each list entry -// will also be deserialized. -func parseList(r reflect.Value, node *XMLNode, tag reflect.StructTag) error { - t := r.Type() - - if tag.Get("flattened") == "" { // look at all item entries - mname := "member" - if name := tag.Get("locationNameList"); name != "" { - mname = name - } - - if Children, ok := node.Children[mname]; ok { - if r.IsNil() { - r.Set(reflect.MakeSlice(t, len(Children), len(Children))) - } - - for i, c := range Children { - err := parse(r.Index(i), c, "") - if err != nil { - return err - } - } - } - } else { // flattened list means this is a single element - if r.IsNil() { - r.Set(reflect.MakeSlice(t, 0, 0)) - } - - childR := reflect.Zero(t.Elem()) - r.Set(reflect.Append(r, childR)) - err := parse(r.Index(r.Len()-1), node, "") - if err != nil { - return err - } - } - - return nil -} - -// parseMap deserializes a map from an XMLNode. The direct children of the XMLNode -// will also be deserialized as map entries. -func parseMap(r reflect.Value, node *XMLNode, tag reflect.StructTag) error { - if r.IsNil() { - r.Set(reflect.MakeMap(r.Type())) - } - - if tag.Get("flattened") == "" { // look at all child entries - for _, entry := range node.Children["entry"] { - parseMapEntry(r, entry, tag) - } - } else { // this element is itself an entry - parseMapEntry(r, node, tag) - } - - return nil -} - -// parseMapEntry deserializes a map entry from a XML node. -func parseMapEntry(r reflect.Value, node *XMLNode, tag reflect.StructTag) error { - kname, vname := "key", "value" - if n := tag.Get("locationNameKey"); n != "" { - kname = n - } - if n := tag.Get("locationNameValue"); n != "" { - vname = n - } - - keys, ok := node.Children[kname] - values := node.Children[vname] - if ok { - for i, key := range keys { - keyR := reflect.ValueOf(key.Text) - value := values[i] - valueR := reflect.New(r.Type().Elem()).Elem() - - parse(valueR, value, "") - r.SetMapIndex(keyR, valueR) - } - } - return nil -} - -// parseScaller deserializes an XMLNode value into a concrete type based on the -// interface type of r. -// -// Error is returned if the deserialization fails due to invalid type conversion, -// or unsupported interface type. -func parseScalar(r reflect.Value, node *XMLNode, tag reflect.StructTag) error { - switch r.Interface().(type) { - case *string: - r.Set(reflect.ValueOf(&node.Text)) - return nil - case []byte: - b, err := base64.StdEncoding.DecodeString(node.Text) - if err != nil { - return err - } - r.Set(reflect.ValueOf(b)) - case *bool: - v, err := strconv.ParseBool(node.Text) - if err != nil { - return err - } - r.Set(reflect.ValueOf(&v)) - case *int64: - v, err := strconv.ParseInt(node.Text, 10, 64) - if err != nil { - return err - } - r.Set(reflect.ValueOf(&v)) - case *float64: - v, err := strconv.ParseFloat(node.Text, 64) - if err != nil { - return err - } - r.Set(reflect.ValueOf(&v)) - case *time.Time: - const ISO8601UTC = "2006-01-02T15:04:05Z" - t, err := time.Parse(ISO8601UTC, node.Text) - if err != nil { - return err - } - r.Set(reflect.ValueOf(&t)) - default: - return fmt.Errorf("unsupported value: %v (%s)", r.Interface(), r.Type()) - } - return nil -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go b/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go deleted file mode 100644 index 72c198a9..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go +++ /dev/null @@ -1,105 +0,0 @@ -package xmlutil - -import ( - "encoding/xml" - "io" - "sort" -) - -// A XMLNode contains the values to be encoded or decoded. -type XMLNode struct { - Name xml.Name `json:",omitempty"` - Children map[string][]*XMLNode `json:",omitempty"` - Text string `json:",omitempty"` - Attr []xml.Attr `json:",omitempty"` -} - -// NewXMLElement returns a pointer to a new XMLNode initialized to default values. -func NewXMLElement(name xml.Name) *XMLNode { - return &XMLNode{ - Name: name, - Children: map[string][]*XMLNode{}, - Attr: []xml.Attr{}, - } -} - -// AddChild adds child to the XMLNode. -func (n *XMLNode) AddChild(child *XMLNode) { - if _, ok := n.Children[child.Name.Local]; !ok { - n.Children[child.Name.Local] = []*XMLNode{} - } - n.Children[child.Name.Local] = append(n.Children[child.Name.Local], child) -} - -// XMLToStruct converts a xml.Decoder stream to XMLNode with nested values. -func XMLToStruct(d *xml.Decoder, s *xml.StartElement) (*XMLNode, error) { - out := &XMLNode{} - for { - tok, err := d.Token() - if tok == nil || err == io.EOF { - break - } - if err != nil { - return out, err - } - - switch typed := tok.(type) { - case xml.CharData: - out.Text = string(typed.Copy()) - case xml.StartElement: - el := typed.Copy() - out.Attr = el.Attr - if out.Children == nil { - out.Children = map[string][]*XMLNode{} - } - - name := typed.Name.Local - slice := out.Children[name] - if slice == nil { - slice = []*XMLNode{} - } - node, e := XMLToStruct(d, &el) - if e != nil { - return out, e - } - node.Name = typed.Name - slice = append(slice, node) - out.Children[name] = slice - case xml.EndElement: - if s != nil && s.Name.Local == typed.Name.Local { // matching end token - return out, nil - } - } - } - return out, nil -} - -// StructToXML writes an XMLNode to a xml.Encoder as tokens. -func StructToXML(e *xml.Encoder, node *XMLNode, sorted bool) error { - e.EncodeToken(xml.StartElement{Name: node.Name, Attr: node.Attr}) - - if node.Text != "" { - e.EncodeToken(xml.CharData([]byte(node.Text))) - } else if sorted { - sortedNames := []string{} - for k := range node.Children { - sortedNames = append(sortedNames, k) - } - sort.Strings(sortedNames) - - for _, k := range sortedNames { - for _, v := range node.Children[k] { - StructToXML(e, v, sorted) - } - } - } else { - for _, c := range node.Children { - for _, v := range c { - StructToXML(e, v, sorted) - } - } - } - - e.EncodeToken(xml.EndElement{Name: node.Name}) - return e.Flush() -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/util/sort_keys.go b/vendor/github.com/aws/aws-sdk-go/private/util/sort_keys.go deleted file mode 100644 index 48000565..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/util/sort_keys.go +++ /dev/null @@ -1,14 +0,0 @@ -package util - -import "sort" - -// SortedKeys returns a sorted slice of keys of a map. -func SortedKeys(m map[string]interface{}) []string { - i, sorted := 0, make([]string, len(m)) - for k := range m { - sorted[i] = k - i++ - } - sort.Strings(sorted) - return sorted -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/util/util.go b/vendor/github.com/aws/aws-sdk-go/private/util/util.go deleted file mode 100644 index 5f2dab25..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/util/util.go +++ /dev/null @@ -1,109 +0,0 @@ -package util - -import ( - "bytes" - "encoding/xml" - "fmt" - "go/format" - "io" - "reflect" - "regexp" - "strings" - - "github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil" -) - -// GoFmt returns the Go formated string of the input. -// -// Panics if the format fails. -func GoFmt(buf string) string { - formatted, err := format.Source([]byte(buf)) - if err != nil { - panic(fmt.Errorf("%s\nOriginal code:\n%s", err.Error(), buf)) - } - return string(formatted) -} - -var reTrim = regexp.MustCompile(`\s{2,}`) - -// Trim removes all leading and trailing white space. -// -// All consecutive spaces will be reduced to a single space. -func Trim(s string) string { - return strings.TrimSpace(reTrim.ReplaceAllString(s, " ")) -} - -// Capitalize capitalizes the first character of the string. -func Capitalize(s string) string { - if len(s) == 1 { - return strings.ToUpper(s) - } - return strings.ToUpper(s[0:1]) + s[1:] -} - -// SortXML sorts the reader's XML elements -func SortXML(r io.Reader) string { - var buf bytes.Buffer - d := xml.NewDecoder(r) - root, _ := xmlutil.XMLToStruct(d, nil) - e := xml.NewEncoder(&buf) - xmlutil.StructToXML(e, root, true) - return buf.String() -} - -// PrettyPrint generates a human readable representation of the value v. -// All values of v are recursively found and pretty printed also. -func PrettyPrint(v interface{}) string { - value := reflect.ValueOf(v) - switch value.Kind() { - case reflect.Struct: - str := fullName(value.Type()) + "{\n" - for i := 0; i < value.NumField(); i++ { - l := string(value.Type().Field(i).Name[0]) - if strings.ToUpper(l) == l { - str += value.Type().Field(i).Name + ": " - str += PrettyPrint(value.Field(i).Interface()) - str += ",\n" - } - } - str += "}" - return str - case reflect.Map: - str := "map[" + fullName(value.Type().Key()) + "]" + fullName(value.Type().Elem()) + "{\n" - for _, k := range value.MapKeys() { - str += "\"" + k.String() + "\": " - str += PrettyPrint(value.MapIndex(k).Interface()) - str += ",\n" - } - str += "}" - return str - case reflect.Ptr: - if e := value.Elem(); e.IsValid() { - return "&" + PrettyPrint(e.Interface()) - } - return "nil" - case reflect.Slice: - str := "[]" + fullName(value.Type().Elem()) + "{\n" - for i := 0; i < value.Len(); i++ { - str += PrettyPrint(value.Index(i).Interface()) - str += ",\n" - } - str += "}" - return str - default: - return fmt.Sprintf("%#v", v) - } -} - -func pkgName(t reflect.Type) string { - pkg := t.PkgPath() - c := strings.Split(pkg, "/") - return c[len(c)-1] -} - -func fullName(t reflect.Type) string { - if pkg := pkgName(t); pkg != "" { - return pkg + "." + t.Name() - } - return t.Name() -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/waiter/waiter.go b/vendor/github.com/aws/aws-sdk-go/private/waiter/waiter.go deleted file mode 100644 index b51e9449..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/waiter/waiter.go +++ /dev/null @@ -1,134 +0,0 @@ -package waiter - -import ( - "fmt" - "reflect" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -// A Config provides a collection of configuration values to setup a generated -// waiter code with. -type Config struct { - Name string - Delay int - MaxAttempts int - Operation string - Acceptors []WaitAcceptor -} - -// A WaitAcceptor provides the information needed to wait for an API operation -// to complete. -type WaitAcceptor struct { - Expected interface{} - Matcher string - State string - Argument string -} - -// A Waiter provides waiting for an operation to complete. -type Waiter struct { - Config - Client interface{} - Input interface{} -} - -// Wait waits for an operation to complete, expire max attempts, or fail. Error -// is returned if the operation fails. -func (w *Waiter) Wait() error { - client := reflect.ValueOf(w.Client) - in := reflect.ValueOf(w.Input) - method := client.MethodByName(w.Config.Operation + "Request") - - for i := 0; i < w.MaxAttempts; i++ { - res := method.Call([]reflect.Value{in}) - req := res[0].Interface().(*request.Request) - req.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Waiter")) - - err := req.Send() - for _, a := range w.Acceptors { - result := false - var vals []interface{} - switch a.Matcher { - case "pathAll", "path": - // Require all matches to be equal for result to match - vals, _ = awsutil.ValuesAtPath(req.Data, a.Argument) - if len(vals) == 0 { - break - } - result = true - for _, val := range vals { - if !awsutil.DeepEqual(val, a.Expected) { - result = false - break - } - } - case "pathAny": - // Only a single match needs to equal for the result to match - vals, _ = awsutil.ValuesAtPath(req.Data, a.Argument) - for _, val := range vals { - if awsutil.DeepEqual(val, a.Expected) { - result = true - break - } - } - case "status": - s := a.Expected.(int) - result = s == req.HTTPResponse.StatusCode - case "error": - if aerr, ok := err.(awserr.Error); ok { - result = aerr.Code() == a.Expected.(string) - } - case "pathList": - // ignored matcher - default: - logf(client, "WARNING: Waiter for %s encountered unexpected matcher: %s", - w.Config.Operation, a.Matcher) - } - - if !result { - // If there was no matching result found there is nothing more to do - // for this response, retry the request. - continue - } - - switch a.State { - case "success": - // waiter completed - return nil - case "failure": - // Waiter failure state triggered - return awserr.New("ResourceNotReady", - fmt.Sprintf("failed waiting for successful resource state"), err) - case "retry": - // clear the error and retry the operation - err = nil - default: - logf(client, "WARNING: Waiter for %s encountered unexpected state: %s", - w.Config.Operation, a.State) - } - } - if err != nil { - return err - } - - time.Sleep(time.Second * time.Duration(w.Delay)) - } - - return awserr.New("ResourceNotReady", - fmt.Sprintf("exceeded %d wait attempts", w.MaxAttempts), nil) -} - -func logf(client reflect.Value, msg string, args ...interface{}) { - cfgVal := client.FieldByName("Config") - if !cfgVal.IsValid() { - return - } - if cfg, ok := cfgVal.Interface().(*aws.Config); ok && cfg.Logger != nil { - cfg.Logger.Log(fmt.Sprintf(msg, args...)) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/private/waiter/waiter_test.go b/vendor/github.com/aws/aws-sdk-go/private/waiter/waiter_test.go deleted file mode 100644 index 28fac259..00000000 --- a/vendor/github.com/aws/aws-sdk-go/private/waiter/waiter_test.go +++ /dev/null @@ -1,401 +0,0 @@ -package waiter_test - -import ( - "bytes" - "io/ioutil" - "net/http" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/private/waiter" -) - -type mockClient struct { - *client.Client -} -type MockInput struct{} -type MockOutput struct { - States []*MockState -} -type MockState struct { - State *string -} - -func (c *mockClient) MockRequest(input *MockInput) (*request.Request, *MockOutput) { - op := &request.Operation{ - Name: "Mock", - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &MockInput{} - } - - output := &MockOutput{} - req := c.NewRequest(op, input, output) - req.Data = output - return req, output -} - -func TestWaiterPathAll(t *testing.T) { - svc := &mockClient{Client: awstesting.NewClient(&aws.Config{ - Region: aws.String("mock-region"), - })} - svc.Handlers.Send.Clear() // mock sending - svc.Handlers.Unmarshal.Clear() - svc.Handlers.UnmarshalMeta.Clear() - svc.Handlers.ValidateResponse.Clear() - - reqNum := 0 - resps := []*MockOutput{ - { // Request 1 - States: []*MockState{ - {State: aws.String("pending")}, - {State: aws.String("pending")}, - }, - }, - { // Request 2 - States: []*MockState{ - {State: aws.String("running")}, - {State: aws.String("pending")}, - }, - }, - { // Request 3 - States: []*MockState{ - {State: aws.String("running")}, - {State: aws.String("running")}, - }, - }, - } - - numBuiltReq := 0 - svc.Handlers.Build.PushBack(func(r *request.Request) { - numBuiltReq++ - }) - svc.Handlers.Unmarshal.PushBack(func(r *request.Request) { - if reqNum >= len(resps) { - assert.Fail(t, "too many polling requests made") - return - } - r.Data = resps[reqNum] - reqNum++ - }) - - waiterCfg := waiter.Config{ - Operation: "Mock", - Delay: 0, - MaxAttempts: 10, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "States[].State", - Expected: "running", - }, - }, - } - w := waiter.Waiter{ - Client: svc, - Input: &MockInput{}, - Config: waiterCfg, - } - - err := w.Wait() - assert.NoError(t, err) - assert.Equal(t, 3, numBuiltReq) - assert.Equal(t, 3, reqNum) -} - -func TestWaiterPath(t *testing.T) { - svc := &mockClient{Client: awstesting.NewClient(&aws.Config{ - Region: aws.String("mock-region"), - })} - svc.Handlers.Send.Clear() // mock sending - svc.Handlers.Unmarshal.Clear() - svc.Handlers.UnmarshalMeta.Clear() - svc.Handlers.ValidateResponse.Clear() - - reqNum := 0 - resps := []*MockOutput{ - { // Request 1 - States: []*MockState{ - {State: aws.String("pending")}, - {State: aws.String("pending")}, - }, - }, - { // Request 2 - States: []*MockState{ - {State: aws.String("running")}, - {State: aws.String("pending")}, - }, - }, - { // Request 3 - States: []*MockState{ - {State: aws.String("running")}, - {State: aws.String("running")}, - }, - }, - } - - numBuiltReq := 0 - svc.Handlers.Build.PushBack(func(r *request.Request) { - numBuiltReq++ - }) - svc.Handlers.Unmarshal.PushBack(func(r *request.Request) { - if reqNum >= len(resps) { - assert.Fail(t, "too many polling requests made") - return - } - r.Data = resps[reqNum] - reqNum++ - }) - - waiterCfg := waiter.Config{ - Operation: "Mock", - Delay: 0, - MaxAttempts: 10, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "States[].State", - Expected: "running", - }, - }, - } - w := waiter.Waiter{ - Client: svc, - Input: &MockInput{}, - Config: waiterCfg, - } - - err := w.Wait() - assert.NoError(t, err) - assert.Equal(t, 3, numBuiltReq) - assert.Equal(t, 3, reqNum) -} - -func TestWaiterFailure(t *testing.T) { - svc := &mockClient{Client: awstesting.NewClient(&aws.Config{ - Region: aws.String("mock-region"), - })} - svc.Handlers.Send.Clear() // mock sending - svc.Handlers.Unmarshal.Clear() - svc.Handlers.UnmarshalMeta.Clear() - svc.Handlers.ValidateResponse.Clear() - - reqNum := 0 - resps := []*MockOutput{ - { // Request 1 - States: []*MockState{ - {State: aws.String("pending")}, - {State: aws.String("pending")}, - }, - }, - { // Request 2 - States: []*MockState{ - {State: aws.String("running")}, - {State: aws.String("pending")}, - }, - }, - { // Request 3 - States: []*MockState{ - {State: aws.String("running")}, - {State: aws.String("stopping")}, - }, - }, - } - - numBuiltReq := 0 - svc.Handlers.Build.PushBack(func(r *request.Request) { - numBuiltReq++ - }) - svc.Handlers.Unmarshal.PushBack(func(r *request.Request) { - if reqNum >= len(resps) { - assert.Fail(t, "too many polling requests made") - return - } - r.Data = resps[reqNum] - reqNum++ - }) - - waiterCfg := waiter.Config{ - Operation: "Mock", - Delay: 0, - MaxAttempts: 10, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "States[].State", - Expected: "running", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "States[].State", - Expected: "stopping", - }, - }, - } - w := waiter.Waiter{ - Client: svc, - Input: &MockInput{}, - Config: waiterCfg, - } - - err := w.Wait().(awserr.Error) - assert.Error(t, err) - assert.Equal(t, "ResourceNotReady", err.Code()) - assert.Equal(t, "failed waiting for successful resource state", err.Message()) - assert.Equal(t, 3, numBuiltReq) - assert.Equal(t, 3, reqNum) -} - -func TestWaiterError(t *testing.T) { - svc := &mockClient{Client: awstesting.NewClient(&aws.Config{ - Region: aws.String("mock-region"), - })} - svc.Handlers.Send.Clear() // mock sending - svc.Handlers.Unmarshal.Clear() - svc.Handlers.UnmarshalMeta.Clear() - svc.Handlers.UnmarshalError.Clear() - svc.Handlers.ValidateResponse.Clear() - - reqNum := 0 - resps := []*MockOutput{ - { // Request 1 - States: []*MockState{ - {State: aws.String("pending")}, - {State: aws.String("pending")}, - }, - }, - { // Request 2, error case - }, - { // Request 3 - States: []*MockState{ - {State: aws.String("running")}, - {State: aws.String("running")}, - }, - }, - } - - numBuiltReq := 0 - svc.Handlers.Build.PushBack(func(r *request.Request) { - numBuiltReq++ - }) - svc.Handlers.Send.PushBack(func(r *request.Request) { - code := 200 - if reqNum == 1 { - code = 400 - } - r.HTTPResponse = &http.Response{ - StatusCode: code, - Status: http.StatusText(code), - Body: ioutil.NopCloser(bytes.NewReader([]byte{})), - } - }) - svc.Handlers.Unmarshal.PushBack(func(r *request.Request) { - if reqNum >= len(resps) { - assert.Fail(t, "too many polling requests made") - return - } - r.Data = resps[reqNum] - reqNum++ - }) - svc.Handlers.UnmarshalMeta.PushBack(func(r *request.Request) { - if reqNum == 1 { - r.Error = awserr.New("MockException", "mock exception message", nil) - // If there was an error unmarshal error will be called instead of unmarshal - // need to increment count here also - reqNum++ - } - }) - - waiterCfg := waiter.Config{ - Operation: "Mock", - Delay: 0, - MaxAttempts: 10, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "States[].State", - Expected: "running", - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "MockException", - }, - }, - } - w := waiter.Waiter{ - Client: svc, - Input: &MockInput{}, - Config: waiterCfg, - } - - err := w.Wait() - assert.NoError(t, err) - assert.Equal(t, 3, numBuiltReq) - assert.Equal(t, 3, reqNum) -} - -func TestWaiterStatus(t *testing.T) { - svc := &mockClient{Client: awstesting.NewClient(&aws.Config{ - Region: aws.String("mock-region"), - })} - svc.Handlers.Send.Clear() // mock sending - svc.Handlers.Unmarshal.Clear() - svc.Handlers.UnmarshalMeta.Clear() - svc.Handlers.ValidateResponse.Clear() - - reqNum := 0 - svc.Handlers.Build.PushBack(func(r *request.Request) { - reqNum++ - }) - svc.Handlers.Send.PushBack(func(r *request.Request) { - code := 200 - if reqNum == 3 { - code = 404 - r.Error = awserr.New("NotFound", "Not Found", nil) - } - r.HTTPResponse = &http.Response{ - StatusCode: code, - Status: http.StatusText(code), - Body: ioutil.NopCloser(bytes.NewReader([]byte{})), - } - }) - - waiterCfg := waiter.Config{ - Operation: "Mock", - Delay: 0, - MaxAttempts: 10, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 404, - }, - }, - } - w := waiter.Waiter{ - Client: svc, - Input: &MockInput{}, - Config: waiterCfg, - } - - err := w.Wait() - assert.NoError(t, err) - assert.Equal(t, 3, reqNum) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/api.go b/vendor/github.com/aws/aws-sdk-go/service/cloudfront/api.go deleted file mode 100644 index a663f055..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/api.go +++ /dev/null @@ -1,6132 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package cloudfront provides a client for Amazon CloudFront. -package cloudfront - -import ( - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -const opCreateCloudFrontOriginAccessIdentity = "CreateCloudFrontOriginAccessIdentity2016_09_07" - -// CreateCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the -// client's request for the CreateCloudFrontOriginAccessIdentity operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateCloudFrontOriginAccessIdentity method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateCloudFrontOriginAccessIdentityRequest method. -// req, resp := client.CreateCloudFrontOriginAccessIdentityRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) CreateCloudFrontOriginAccessIdentityRequest(input *CreateCloudFrontOriginAccessIdentityInput) (req *request.Request, output *CreateCloudFrontOriginAccessIdentityOutput) { - op := &request.Operation{ - Name: opCreateCloudFrontOriginAccessIdentity, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/origin-access-identity/cloudfront", - } - - if input == nil { - input = &CreateCloudFrontOriginAccessIdentityInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateCloudFrontOriginAccessIdentityOutput{} - req.Data = output - return -} - -// Create a new origin access identity. -func (c *CloudFront) CreateCloudFrontOriginAccessIdentity(input *CreateCloudFrontOriginAccessIdentityInput) (*CreateCloudFrontOriginAccessIdentityOutput, error) { - req, out := c.CreateCloudFrontOriginAccessIdentityRequest(input) - err := req.Send() - return out, err -} - -const opCreateDistribution = "CreateDistribution2016_09_07" - -// CreateDistributionRequest generates a "aws/request.Request" representing the -// client's request for the CreateDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateDistributionRequest method. -// req, resp := client.CreateDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) CreateDistributionRequest(input *CreateDistributionInput) (req *request.Request, output *CreateDistributionOutput) { - op := &request.Operation{ - Name: opCreateDistribution, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/distribution", - } - - if input == nil { - input = &CreateDistributionInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateDistributionOutput{} - req.Data = output - return -} - -// Create a new distribution. -func (c *CloudFront) CreateDistribution(input *CreateDistributionInput) (*CreateDistributionOutput, error) { - req, out := c.CreateDistributionRequest(input) - err := req.Send() - return out, err -} - -const opCreateDistributionWithTags = "CreateDistributionWithTags2016_09_07" - -// CreateDistributionWithTagsRequest generates a "aws/request.Request" representing the -// client's request for the CreateDistributionWithTags operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateDistributionWithTags method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateDistributionWithTagsRequest method. -// req, resp := client.CreateDistributionWithTagsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) CreateDistributionWithTagsRequest(input *CreateDistributionWithTagsInput) (req *request.Request, output *CreateDistributionWithTagsOutput) { - op := &request.Operation{ - Name: opCreateDistributionWithTags, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/distribution?WithTags", - } - - if input == nil { - input = &CreateDistributionWithTagsInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateDistributionWithTagsOutput{} - req.Data = output - return -} - -// Create a new distribution with tags. -func (c *CloudFront) CreateDistributionWithTags(input *CreateDistributionWithTagsInput) (*CreateDistributionWithTagsOutput, error) { - req, out := c.CreateDistributionWithTagsRequest(input) - err := req.Send() - return out, err -} - -const opCreateInvalidation = "CreateInvalidation2016_09_07" - -// CreateInvalidationRequest generates a "aws/request.Request" representing the -// client's request for the CreateInvalidation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateInvalidation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateInvalidationRequest method. -// req, resp := client.CreateInvalidationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) CreateInvalidationRequest(input *CreateInvalidationInput) (req *request.Request, output *CreateInvalidationOutput) { - op := &request.Operation{ - Name: opCreateInvalidation, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/distribution/{DistributionId}/invalidation", - } - - if input == nil { - input = &CreateInvalidationInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateInvalidationOutput{} - req.Data = output - return -} - -// Create a new invalidation. -func (c *CloudFront) CreateInvalidation(input *CreateInvalidationInput) (*CreateInvalidationOutput, error) { - req, out := c.CreateInvalidationRequest(input) - err := req.Send() - return out, err -} - -const opCreateStreamingDistribution = "CreateStreamingDistribution2016_09_07" - -// CreateStreamingDistributionRequest generates a "aws/request.Request" representing the -// client's request for the CreateStreamingDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateStreamingDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateStreamingDistributionRequest method. -// req, resp := client.CreateStreamingDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) CreateStreamingDistributionRequest(input *CreateStreamingDistributionInput) (req *request.Request, output *CreateStreamingDistributionOutput) { - op := &request.Operation{ - Name: opCreateStreamingDistribution, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/streaming-distribution", - } - - if input == nil { - input = &CreateStreamingDistributionInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateStreamingDistributionOutput{} - req.Data = output - return -} - -// Create a new streaming distribution. -func (c *CloudFront) CreateStreamingDistribution(input *CreateStreamingDistributionInput) (*CreateStreamingDistributionOutput, error) { - req, out := c.CreateStreamingDistributionRequest(input) - err := req.Send() - return out, err -} - -const opCreateStreamingDistributionWithTags = "CreateStreamingDistributionWithTags2016_09_07" - -// CreateStreamingDistributionWithTagsRequest generates a "aws/request.Request" representing the -// client's request for the CreateStreamingDistributionWithTags operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateStreamingDistributionWithTags method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateStreamingDistributionWithTagsRequest method. -// req, resp := client.CreateStreamingDistributionWithTagsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) CreateStreamingDistributionWithTagsRequest(input *CreateStreamingDistributionWithTagsInput) (req *request.Request, output *CreateStreamingDistributionWithTagsOutput) { - op := &request.Operation{ - Name: opCreateStreamingDistributionWithTags, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/streaming-distribution?WithTags", - } - - if input == nil { - input = &CreateStreamingDistributionWithTagsInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateStreamingDistributionWithTagsOutput{} - req.Data = output - return -} - -// Create a new streaming distribution with tags. -func (c *CloudFront) CreateStreamingDistributionWithTags(input *CreateStreamingDistributionWithTagsInput) (*CreateStreamingDistributionWithTagsOutput, error) { - req, out := c.CreateStreamingDistributionWithTagsRequest(input) - err := req.Send() - return out, err -} - -const opDeleteCloudFrontOriginAccessIdentity = "DeleteCloudFrontOriginAccessIdentity2016_09_07" - -// DeleteCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the -// client's request for the DeleteCloudFrontOriginAccessIdentity operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteCloudFrontOriginAccessIdentity method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteCloudFrontOriginAccessIdentityRequest method. -// req, resp := client.DeleteCloudFrontOriginAccessIdentityRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) DeleteCloudFrontOriginAccessIdentityRequest(input *DeleteCloudFrontOriginAccessIdentityInput) (req *request.Request, output *DeleteCloudFrontOriginAccessIdentityOutput) { - op := &request.Operation{ - Name: opDeleteCloudFrontOriginAccessIdentity, - HTTPMethod: "DELETE", - HTTPPath: "/2016-09-07/origin-access-identity/cloudfront/{Id}", - } - - if input == nil { - input = &DeleteCloudFrontOriginAccessIdentityInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteCloudFrontOriginAccessIdentityOutput{} - req.Data = output - return -} - -// Delete an origin access identity. -func (c *CloudFront) DeleteCloudFrontOriginAccessIdentity(input *DeleteCloudFrontOriginAccessIdentityInput) (*DeleteCloudFrontOriginAccessIdentityOutput, error) { - req, out := c.DeleteCloudFrontOriginAccessIdentityRequest(input) - err := req.Send() - return out, err -} - -const opDeleteDistribution = "DeleteDistribution2016_09_07" - -// DeleteDistributionRequest generates a "aws/request.Request" representing the -// client's request for the DeleteDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteDistributionRequest method. -// req, resp := client.DeleteDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) DeleteDistributionRequest(input *DeleteDistributionInput) (req *request.Request, output *DeleteDistributionOutput) { - op := &request.Operation{ - Name: opDeleteDistribution, - HTTPMethod: "DELETE", - HTTPPath: "/2016-09-07/distribution/{Id}", - } - - if input == nil { - input = &DeleteDistributionInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteDistributionOutput{} - req.Data = output - return -} - -// Delete a distribution. -func (c *CloudFront) DeleteDistribution(input *DeleteDistributionInput) (*DeleteDistributionOutput, error) { - req, out := c.DeleteDistributionRequest(input) - err := req.Send() - return out, err -} - -const opDeleteStreamingDistribution = "DeleteStreamingDistribution2016_09_07" - -// DeleteStreamingDistributionRequest generates a "aws/request.Request" representing the -// client's request for the DeleteStreamingDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteStreamingDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteStreamingDistributionRequest method. -// req, resp := client.DeleteStreamingDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) DeleteStreamingDistributionRequest(input *DeleteStreamingDistributionInput) (req *request.Request, output *DeleteStreamingDistributionOutput) { - op := &request.Operation{ - Name: opDeleteStreamingDistribution, - HTTPMethod: "DELETE", - HTTPPath: "/2016-09-07/streaming-distribution/{Id}", - } - - if input == nil { - input = &DeleteStreamingDistributionInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteStreamingDistributionOutput{} - req.Data = output - return -} - -// Delete a streaming distribution. -func (c *CloudFront) DeleteStreamingDistribution(input *DeleteStreamingDistributionInput) (*DeleteStreamingDistributionOutput, error) { - req, out := c.DeleteStreamingDistributionRequest(input) - err := req.Send() - return out, err -} - -const opGetCloudFrontOriginAccessIdentity = "GetCloudFrontOriginAccessIdentity2016_09_07" - -// GetCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the -// client's request for the GetCloudFrontOriginAccessIdentity operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetCloudFrontOriginAccessIdentity method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetCloudFrontOriginAccessIdentityRequest method. -// req, resp := client.GetCloudFrontOriginAccessIdentityRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) GetCloudFrontOriginAccessIdentityRequest(input *GetCloudFrontOriginAccessIdentityInput) (req *request.Request, output *GetCloudFrontOriginAccessIdentityOutput) { - op := &request.Operation{ - Name: opGetCloudFrontOriginAccessIdentity, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/origin-access-identity/cloudfront/{Id}", - } - - if input == nil { - input = &GetCloudFrontOriginAccessIdentityInput{} - } - - req = c.newRequest(op, input, output) - output = &GetCloudFrontOriginAccessIdentityOutput{} - req.Data = output - return -} - -// Get the information about an origin access identity. -func (c *CloudFront) GetCloudFrontOriginAccessIdentity(input *GetCloudFrontOriginAccessIdentityInput) (*GetCloudFrontOriginAccessIdentityOutput, error) { - req, out := c.GetCloudFrontOriginAccessIdentityRequest(input) - err := req.Send() - return out, err -} - -const opGetCloudFrontOriginAccessIdentityConfig = "GetCloudFrontOriginAccessIdentityConfig2016_09_07" - -// GetCloudFrontOriginAccessIdentityConfigRequest generates a "aws/request.Request" representing the -// client's request for the GetCloudFrontOriginAccessIdentityConfig operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetCloudFrontOriginAccessIdentityConfig method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetCloudFrontOriginAccessIdentityConfigRequest method. -// req, resp := client.GetCloudFrontOriginAccessIdentityConfigRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfigRequest(input *GetCloudFrontOriginAccessIdentityConfigInput) (req *request.Request, output *GetCloudFrontOriginAccessIdentityConfigOutput) { - op := &request.Operation{ - Name: opGetCloudFrontOriginAccessIdentityConfig, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/origin-access-identity/cloudfront/{Id}/config", - } - - if input == nil { - input = &GetCloudFrontOriginAccessIdentityConfigInput{} - } - - req = c.newRequest(op, input, output) - output = &GetCloudFrontOriginAccessIdentityConfigOutput{} - req.Data = output - return -} - -// Get the configuration information about an origin access identity. -func (c *CloudFront) GetCloudFrontOriginAccessIdentityConfig(input *GetCloudFrontOriginAccessIdentityConfigInput) (*GetCloudFrontOriginAccessIdentityConfigOutput, error) { - req, out := c.GetCloudFrontOriginAccessIdentityConfigRequest(input) - err := req.Send() - return out, err -} - -const opGetDistribution = "GetDistribution2016_09_07" - -// GetDistributionRequest generates a "aws/request.Request" representing the -// client's request for the GetDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetDistributionRequest method. -// req, resp := client.GetDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) GetDistributionRequest(input *GetDistributionInput) (req *request.Request, output *GetDistributionOutput) { - op := &request.Operation{ - Name: opGetDistribution, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/distribution/{Id}", - } - - if input == nil { - input = &GetDistributionInput{} - } - - req = c.newRequest(op, input, output) - output = &GetDistributionOutput{} - req.Data = output - return -} - -// Get the information about a distribution. -func (c *CloudFront) GetDistribution(input *GetDistributionInput) (*GetDistributionOutput, error) { - req, out := c.GetDistributionRequest(input) - err := req.Send() - return out, err -} - -const opGetDistributionConfig = "GetDistributionConfig2016_09_07" - -// GetDistributionConfigRequest generates a "aws/request.Request" representing the -// client's request for the GetDistributionConfig operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetDistributionConfig method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetDistributionConfigRequest method. -// req, resp := client.GetDistributionConfigRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) GetDistributionConfigRequest(input *GetDistributionConfigInput) (req *request.Request, output *GetDistributionConfigOutput) { - op := &request.Operation{ - Name: opGetDistributionConfig, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/distribution/{Id}/config", - } - - if input == nil { - input = &GetDistributionConfigInput{} - } - - req = c.newRequest(op, input, output) - output = &GetDistributionConfigOutput{} - req.Data = output - return -} - -// Get the configuration information about a distribution. -func (c *CloudFront) GetDistributionConfig(input *GetDistributionConfigInput) (*GetDistributionConfigOutput, error) { - req, out := c.GetDistributionConfigRequest(input) - err := req.Send() - return out, err -} - -const opGetInvalidation = "GetInvalidation2016_09_07" - -// GetInvalidationRequest generates a "aws/request.Request" representing the -// client's request for the GetInvalidation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetInvalidation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetInvalidationRequest method. -// req, resp := client.GetInvalidationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) GetInvalidationRequest(input *GetInvalidationInput) (req *request.Request, output *GetInvalidationOutput) { - op := &request.Operation{ - Name: opGetInvalidation, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/distribution/{DistributionId}/invalidation/{Id}", - } - - if input == nil { - input = &GetInvalidationInput{} - } - - req = c.newRequest(op, input, output) - output = &GetInvalidationOutput{} - req.Data = output - return -} - -// Get the information about an invalidation. -func (c *CloudFront) GetInvalidation(input *GetInvalidationInput) (*GetInvalidationOutput, error) { - req, out := c.GetInvalidationRequest(input) - err := req.Send() - return out, err -} - -const opGetStreamingDistribution = "GetStreamingDistribution2016_09_07" - -// GetStreamingDistributionRequest generates a "aws/request.Request" representing the -// client's request for the GetStreamingDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetStreamingDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetStreamingDistributionRequest method. -// req, resp := client.GetStreamingDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) GetStreamingDistributionRequest(input *GetStreamingDistributionInput) (req *request.Request, output *GetStreamingDistributionOutput) { - op := &request.Operation{ - Name: opGetStreamingDistribution, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/streaming-distribution/{Id}", - } - - if input == nil { - input = &GetStreamingDistributionInput{} - } - - req = c.newRequest(op, input, output) - output = &GetStreamingDistributionOutput{} - req.Data = output - return -} - -// Get the information about a streaming distribution. -func (c *CloudFront) GetStreamingDistribution(input *GetStreamingDistributionInput) (*GetStreamingDistributionOutput, error) { - req, out := c.GetStreamingDistributionRequest(input) - err := req.Send() - return out, err -} - -const opGetStreamingDistributionConfig = "GetStreamingDistributionConfig2016_09_07" - -// GetStreamingDistributionConfigRequest generates a "aws/request.Request" representing the -// client's request for the GetStreamingDistributionConfig operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetStreamingDistributionConfig method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetStreamingDistributionConfigRequest method. -// req, resp := client.GetStreamingDistributionConfigRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) GetStreamingDistributionConfigRequest(input *GetStreamingDistributionConfigInput) (req *request.Request, output *GetStreamingDistributionConfigOutput) { - op := &request.Operation{ - Name: opGetStreamingDistributionConfig, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/streaming-distribution/{Id}/config", - } - - if input == nil { - input = &GetStreamingDistributionConfigInput{} - } - - req = c.newRequest(op, input, output) - output = &GetStreamingDistributionConfigOutput{} - req.Data = output - return -} - -// Get the configuration information about a streaming distribution. -func (c *CloudFront) GetStreamingDistributionConfig(input *GetStreamingDistributionConfigInput) (*GetStreamingDistributionConfigOutput, error) { - req, out := c.GetStreamingDistributionConfigRequest(input) - err := req.Send() - return out, err -} - -const opListCloudFrontOriginAccessIdentities = "ListCloudFrontOriginAccessIdentities2016_09_07" - -// ListCloudFrontOriginAccessIdentitiesRequest generates a "aws/request.Request" representing the -// client's request for the ListCloudFrontOriginAccessIdentities operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListCloudFrontOriginAccessIdentities method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListCloudFrontOriginAccessIdentitiesRequest method. -// req, resp := client.ListCloudFrontOriginAccessIdentitiesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesRequest(input *ListCloudFrontOriginAccessIdentitiesInput) (req *request.Request, output *ListCloudFrontOriginAccessIdentitiesOutput) { - op := &request.Operation{ - Name: opListCloudFrontOriginAccessIdentities, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/origin-access-identity/cloudfront", - Paginator: &request.Paginator{ - InputTokens: []string{"Marker"}, - OutputTokens: []string{"CloudFrontOriginAccessIdentityList.NextMarker"}, - LimitToken: "MaxItems", - TruncationToken: "CloudFrontOriginAccessIdentityList.IsTruncated", - }, - } - - if input == nil { - input = &ListCloudFrontOriginAccessIdentitiesInput{} - } - - req = c.newRequest(op, input, output) - output = &ListCloudFrontOriginAccessIdentitiesOutput{} - req.Data = output - return -} - -// List origin access identities. -func (c *CloudFront) ListCloudFrontOriginAccessIdentities(input *ListCloudFrontOriginAccessIdentitiesInput) (*ListCloudFrontOriginAccessIdentitiesOutput, error) { - req, out := c.ListCloudFrontOriginAccessIdentitiesRequest(input) - err := req.Send() - return out, err -} - -// ListCloudFrontOriginAccessIdentitiesPages iterates over the pages of a ListCloudFrontOriginAccessIdentities operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListCloudFrontOriginAccessIdentities method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListCloudFrontOriginAccessIdentities operation. -// pageNum := 0 -// err := client.ListCloudFrontOriginAccessIdentitiesPages(params, -// func(page *ListCloudFrontOriginAccessIdentitiesOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *CloudFront) ListCloudFrontOriginAccessIdentitiesPages(input *ListCloudFrontOriginAccessIdentitiesInput, fn func(p *ListCloudFrontOriginAccessIdentitiesOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListCloudFrontOriginAccessIdentitiesRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListCloudFrontOriginAccessIdentitiesOutput), lastPage) - }) -} - -const opListDistributions = "ListDistributions2016_09_07" - -// ListDistributionsRequest generates a "aws/request.Request" representing the -// client's request for the ListDistributions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListDistributions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListDistributionsRequest method. -// req, resp := client.ListDistributionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) ListDistributionsRequest(input *ListDistributionsInput) (req *request.Request, output *ListDistributionsOutput) { - op := &request.Operation{ - Name: opListDistributions, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/distribution", - Paginator: &request.Paginator{ - InputTokens: []string{"Marker"}, - OutputTokens: []string{"DistributionList.NextMarker"}, - LimitToken: "MaxItems", - TruncationToken: "DistributionList.IsTruncated", - }, - } - - if input == nil { - input = &ListDistributionsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListDistributionsOutput{} - req.Data = output - return -} - -// List distributions. -func (c *CloudFront) ListDistributions(input *ListDistributionsInput) (*ListDistributionsOutput, error) { - req, out := c.ListDistributionsRequest(input) - err := req.Send() - return out, err -} - -// ListDistributionsPages iterates over the pages of a ListDistributions operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListDistributions method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListDistributions operation. -// pageNum := 0 -// err := client.ListDistributionsPages(params, -// func(page *ListDistributionsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *CloudFront) ListDistributionsPages(input *ListDistributionsInput, fn func(p *ListDistributionsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListDistributionsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListDistributionsOutput), lastPage) - }) -} - -const opListDistributionsByWebACLId = "ListDistributionsByWebACLId2016_09_07" - -// ListDistributionsByWebACLIdRequest generates a "aws/request.Request" representing the -// client's request for the ListDistributionsByWebACLId operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListDistributionsByWebACLId method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListDistributionsByWebACLIdRequest method. -// req, resp := client.ListDistributionsByWebACLIdRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) ListDistributionsByWebACLIdRequest(input *ListDistributionsByWebACLIdInput) (req *request.Request, output *ListDistributionsByWebACLIdOutput) { - op := &request.Operation{ - Name: opListDistributionsByWebACLId, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/distributionsByWebACLId/{WebACLId}", - } - - if input == nil { - input = &ListDistributionsByWebACLIdInput{} - } - - req = c.newRequest(op, input, output) - output = &ListDistributionsByWebACLIdOutput{} - req.Data = output - return -} - -// List the distributions that are associated with a specified AWS WAF web ACL. -func (c *CloudFront) ListDistributionsByWebACLId(input *ListDistributionsByWebACLIdInput) (*ListDistributionsByWebACLIdOutput, error) { - req, out := c.ListDistributionsByWebACLIdRequest(input) - err := req.Send() - return out, err -} - -const opListInvalidations = "ListInvalidations2016_09_07" - -// ListInvalidationsRequest generates a "aws/request.Request" representing the -// client's request for the ListInvalidations operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListInvalidations method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListInvalidationsRequest method. -// req, resp := client.ListInvalidationsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) ListInvalidationsRequest(input *ListInvalidationsInput) (req *request.Request, output *ListInvalidationsOutput) { - op := &request.Operation{ - Name: opListInvalidations, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/distribution/{DistributionId}/invalidation", - Paginator: &request.Paginator{ - InputTokens: []string{"Marker"}, - OutputTokens: []string{"InvalidationList.NextMarker"}, - LimitToken: "MaxItems", - TruncationToken: "InvalidationList.IsTruncated", - }, - } - - if input == nil { - input = &ListInvalidationsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListInvalidationsOutput{} - req.Data = output - return -} - -// List invalidation batches. -func (c *CloudFront) ListInvalidations(input *ListInvalidationsInput) (*ListInvalidationsOutput, error) { - req, out := c.ListInvalidationsRequest(input) - err := req.Send() - return out, err -} - -// ListInvalidationsPages iterates over the pages of a ListInvalidations operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListInvalidations method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListInvalidations operation. -// pageNum := 0 -// err := client.ListInvalidationsPages(params, -// func(page *ListInvalidationsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *CloudFront) ListInvalidationsPages(input *ListInvalidationsInput, fn func(p *ListInvalidationsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListInvalidationsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListInvalidationsOutput), lastPage) - }) -} - -const opListStreamingDistributions = "ListStreamingDistributions2016_09_07" - -// ListStreamingDistributionsRequest generates a "aws/request.Request" representing the -// client's request for the ListStreamingDistributions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListStreamingDistributions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListStreamingDistributionsRequest method. -// req, resp := client.ListStreamingDistributionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) ListStreamingDistributionsRequest(input *ListStreamingDistributionsInput) (req *request.Request, output *ListStreamingDistributionsOutput) { - op := &request.Operation{ - Name: opListStreamingDistributions, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/streaming-distribution", - Paginator: &request.Paginator{ - InputTokens: []string{"Marker"}, - OutputTokens: []string{"StreamingDistributionList.NextMarker"}, - LimitToken: "MaxItems", - TruncationToken: "StreamingDistributionList.IsTruncated", - }, - } - - if input == nil { - input = &ListStreamingDistributionsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListStreamingDistributionsOutput{} - req.Data = output - return -} - -// List streaming distributions. -func (c *CloudFront) ListStreamingDistributions(input *ListStreamingDistributionsInput) (*ListStreamingDistributionsOutput, error) { - req, out := c.ListStreamingDistributionsRequest(input) - err := req.Send() - return out, err -} - -// ListStreamingDistributionsPages iterates over the pages of a ListStreamingDistributions operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListStreamingDistributions method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListStreamingDistributions operation. -// pageNum := 0 -// err := client.ListStreamingDistributionsPages(params, -// func(page *ListStreamingDistributionsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *CloudFront) ListStreamingDistributionsPages(input *ListStreamingDistributionsInput, fn func(p *ListStreamingDistributionsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListStreamingDistributionsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListStreamingDistributionsOutput), lastPage) - }) -} - -const opListTagsForResource = "ListTagsForResource2016_09_07" - -// ListTagsForResourceRequest generates a "aws/request.Request" representing the -// client's request for the ListTagsForResource operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTagsForResource method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTagsForResourceRequest method. -// req, resp := client.ListTagsForResourceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput) { - op := &request.Operation{ - Name: opListTagsForResource, - HTTPMethod: "GET", - HTTPPath: "/2016-09-07/tagging", - } - - if input == nil { - input = &ListTagsForResourceInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTagsForResourceOutput{} - req.Data = output - return -} - -// List tags for a CloudFront resource. -func (c *CloudFront) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) { - req, out := c.ListTagsForResourceRequest(input) - err := req.Send() - return out, err -} - -const opTagResource = "TagResource2016_09_07" - -// TagResourceRequest generates a "aws/request.Request" representing the -// client's request for the TagResource operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the TagResource method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the TagResourceRequest method. -// req, resp := client.TagResourceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput) { - op := &request.Operation{ - Name: opTagResource, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/tagging?Operation=Tag", - } - - if input == nil { - input = &TagResourceInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &TagResourceOutput{} - req.Data = output - return -} - -// Add tags to a CloudFront resource. -func (c *CloudFront) TagResource(input *TagResourceInput) (*TagResourceOutput, error) { - req, out := c.TagResourceRequest(input) - err := req.Send() - return out, err -} - -const opUntagResource = "UntagResource2016_09_07" - -// UntagResourceRequest generates a "aws/request.Request" representing the -// client's request for the UntagResource operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UntagResource method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UntagResourceRequest method. -// req, resp := client.UntagResourceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput) { - op := &request.Operation{ - Name: opUntagResource, - HTTPMethod: "POST", - HTTPPath: "/2016-09-07/tagging?Operation=Untag", - } - - if input == nil { - input = &UntagResourceInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &UntagResourceOutput{} - req.Data = output - return -} - -// Remove tags from a CloudFront resource. -func (c *CloudFront) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error) { - req, out := c.UntagResourceRequest(input) - err := req.Send() - return out, err -} - -const opUpdateCloudFrontOriginAccessIdentity = "UpdateCloudFrontOriginAccessIdentity2016_09_07" - -// UpdateCloudFrontOriginAccessIdentityRequest generates a "aws/request.Request" representing the -// client's request for the UpdateCloudFrontOriginAccessIdentity operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateCloudFrontOriginAccessIdentity method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateCloudFrontOriginAccessIdentityRequest method. -// req, resp := client.UpdateCloudFrontOriginAccessIdentityRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) UpdateCloudFrontOriginAccessIdentityRequest(input *UpdateCloudFrontOriginAccessIdentityInput) (req *request.Request, output *UpdateCloudFrontOriginAccessIdentityOutput) { - op := &request.Operation{ - Name: opUpdateCloudFrontOriginAccessIdentity, - HTTPMethod: "PUT", - HTTPPath: "/2016-09-07/origin-access-identity/cloudfront/{Id}/config", - } - - if input == nil { - input = &UpdateCloudFrontOriginAccessIdentityInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateCloudFrontOriginAccessIdentityOutput{} - req.Data = output - return -} - -// Update an origin access identity. -func (c *CloudFront) UpdateCloudFrontOriginAccessIdentity(input *UpdateCloudFrontOriginAccessIdentityInput) (*UpdateCloudFrontOriginAccessIdentityOutput, error) { - req, out := c.UpdateCloudFrontOriginAccessIdentityRequest(input) - err := req.Send() - return out, err -} - -const opUpdateDistribution = "UpdateDistribution2016_09_07" - -// UpdateDistributionRequest generates a "aws/request.Request" representing the -// client's request for the UpdateDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateDistributionRequest method. -// req, resp := client.UpdateDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) UpdateDistributionRequest(input *UpdateDistributionInput) (req *request.Request, output *UpdateDistributionOutput) { - op := &request.Operation{ - Name: opUpdateDistribution, - HTTPMethod: "PUT", - HTTPPath: "/2016-09-07/distribution/{Id}/config", - } - - if input == nil { - input = &UpdateDistributionInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateDistributionOutput{} - req.Data = output - return -} - -// Update a distribution. -func (c *CloudFront) UpdateDistribution(input *UpdateDistributionInput) (*UpdateDistributionOutput, error) { - req, out := c.UpdateDistributionRequest(input) - err := req.Send() - return out, err -} - -const opUpdateStreamingDistribution = "UpdateStreamingDistribution2016_09_07" - -// UpdateStreamingDistributionRequest generates a "aws/request.Request" representing the -// client's request for the UpdateStreamingDistribution operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateStreamingDistribution method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateStreamingDistributionRequest method. -// req, resp := client.UpdateStreamingDistributionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *CloudFront) UpdateStreamingDistributionRequest(input *UpdateStreamingDistributionInput) (req *request.Request, output *UpdateStreamingDistributionOutput) { - op := &request.Operation{ - Name: opUpdateStreamingDistribution, - HTTPMethod: "PUT", - HTTPPath: "/2016-09-07/streaming-distribution/{Id}/config", - } - - if input == nil { - input = &UpdateStreamingDistributionInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateStreamingDistributionOutput{} - req.Data = output - return -} - -// Update a streaming distribution. -func (c *CloudFront) UpdateStreamingDistribution(input *UpdateStreamingDistributionInput) (*UpdateStreamingDistributionOutput, error) { - req, out := c.UpdateStreamingDistributionRequest(input) - err := req.Send() - return out, err -} - -// A complex type that lists the AWS accounts, if any, that you included in -// the TrustedSigners complex type for the default cache behavior or for any -// of the other cache behaviors for this distribution. These are accounts that -// you want to allow to create signed URLs for private content. -type ActiveTrustedSigners struct { - _ struct{} `type:"structure"` - - // Each active trusted signer. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // A complex type that contains one Signer complex type for each unique trusted - // signer that is specified in the TrustedSigners complex type, including trusted - // signers in the default cache behavior and in all of the other cache behaviors. - Items []*Signer `locationNameList:"Signer" type:"list"` - - // The number of unique trusted signers included in all cache behaviors. For - // example, if three cache behaviors all list the same three AWS accounts, the - // value of Quantity for ActiveTrustedSigners will be 3. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s ActiveTrustedSigners) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ActiveTrustedSigners) GoString() string { - return s.String() -} - -// A complex type that contains information about CNAMEs (alternate domain names), -// if any, for this distribution. -type Aliases struct { - _ struct{} `type:"structure"` - - // Optional: A complex type that contains CNAME elements, if any, for this distribution. - // If Quantity is 0, you can omit Items. - Items []*string `locationNameList:"CNAME" type:"list"` - - // The number of CNAMEs, if any, for this distribution. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s Aliases) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Aliases) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Aliases) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Aliases"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that controls which HTTP methods CloudFront processes and -// forwards to your Amazon S3 bucket or your custom origin. There are three -// choices: - CloudFront forwards only GET and HEAD requests. - CloudFront forwards -// only GET, HEAD and OPTIONS requests. - CloudFront forwards GET, HEAD, OPTIONS, -// PUT, PATCH, POST, and DELETE requests. If you pick the third choice, you -// may need to restrict access to your Amazon S3 bucket or to your custom origin -// so users can't perform operations that you don't want them to. For example, -// you may not want users to have permission to delete objects from your origin. -type AllowedMethods struct { - _ struct{} `type:"structure"` - - // A complex type that controls whether CloudFront caches the response to requests - // using the specified HTTP methods. There are two choices: - CloudFront caches - // responses to GET and HEAD requests. - CloudFront caches responses to GET, - // HEAD, and OPTIONS requests. If you pick the second choice for your S3 Origin, - // you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers - // and Origin headers for the responses to be cached correctly. - CachedMethods *CachedMethods `type:"structure"` - - // A complex type that contains the HTTP methods that you want CloudFront to - // process and forward to your origin. - // - // Items is a required field - Items []*string `locationNameList:"Method" type:"list" required:"true"` - - // The number of HTTP methods that you want CloudFront to forward to your origin. - // Valid values are 2 (for GET and HEAD requests), 3 (for GET, HEAD and OPTIONS - // requests) and 7 (for GET, HEAD, OPTIONS, PUT, PATCH, POST, and DELETE requests). - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s AllowedMethods) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AllowedMethods) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AllowedMethods) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AllowedMethods"} - if s.Items == nil { - invalidParams.Add(request.NewErrParamRequired("Items")) - } - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - if s.CachedMethods != nil { - if err := s.CachedMethods.Validate(); err != nil { - invalidParams.AddNested("CachedMethods", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that describes how CloudFront processes requests. You can -// create up to 10 cache behaviors.You must create at least as many cache behaviors -// (including the default cache behavior) as you have origins if you want CloudFront -// to distribute objects from all of the origins. Each cache behavior specifies -// the one origin from which you want CloudFront to get objects. If you have -// two origins and only the default cache behavior, the default cache behavior -// will cause CloudFront to get objects from one of the origins, but the other -// origin will never be used. If you don't want to specify any cache behaviors, -// include only an empty CacheBehaviors element. Don't include an empty CacheBehavior -// element, or CloudFront returns a MalformedXML error. To delete all cache -// behaviors in an existing distribution, update the distribution configuration -// and include only an empty CacheBehaviors element. To add, change, or remove -// one or more cache behaviors, update the distribution configuration and specify -// all of the cache behaviors that you want to include in the updated distribution. -type CacheBehavior struct { - _ struct{} `type:"structure"` - - // A complex type that controls which HTTP methods CloudFront processes and - // forwards to your Amazon S3 bucket or your custom origin. There are three - // choices: - CloudFront forwards only GET and HEAD requests. - CloudFront forwards - // only GET, HEAD and OPTIONS requests. - CloudFront forwards GET, HEAD, OPTIONS, - // PUT, PATCH, POST, and DELETE requests. If you pick the third choice, you - // may need to restrict access to your Amazon S3 bucket or to your custom origin - // so users can't perform operations that you don't want them to. For example, - // you may not want users to have permission to delete objects from your origin. - AllowedMethods *AllowedMethods `type:"structure"` - - // Whether you want CloudFront to automatically compress content for web requests - // that include Accept-Encoding: gzip in the request header. If so, specify - // true; if not, specify false. CloudFront compresses files larger than 1000 - // bytes and less than 1 megabyte for both Amazon S3 and custom origins. When - // a CloudFront edge location is unusually busy, some files might not be compressed. - // The value of the Content-Type header must be on the list of file types that - // CloudFront will compress. For the current list, see Serving Compressed Content - // (http://docs.aws.amazon.com/console/cloudfront/compressed-content) in the - // Amazon CloudFront Developer Guide. If you configure CloudFront to compress - // content, CloudFront removes the ETag response header from the objects that - // it compresses. The ETag header indicates that the version in a CloudFront - // edge cache is identical to the version on the origin server, but after compression - // the two versions are no longer identical. As a result, for compressed objects, - // CloudFront can't use the ETag header to determine whether an expired object - // in the CloudFront edge cache is still the latest version. - Compress *bool `type:"boolean"` - - // If you don't configure your origin to add a Cache-Control max-age directive - // or an Expires header, DefaultTTL is the default amount of time (in seconds) - // that an object is in a CloudFront cache before CloudFront forwards another - // request to your origin to determine whether the object has been updated. - // The value that you specify applies only when your origin does not add HTTP - // headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires - // to objects. You can specify a value from 0 to 3,153,600,000 seconds (100 - // years). - DefaultTTL *int64 `type:"long"` - - // A complex type that specifies how CloudFront handles query strings, cookies - // and headers. - // - // ForwardedValues is a required field - ForwardedValues *ForwardedValues `type:"structure" required:"true"` - - // The maximum amount of time (in seconds) that an object is in a CloudFront - // cache before CloudFront forwards another request to your origin to determine - // whether the object has been updated. The value that you specify applies only - // when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control - // s-maxage, and Expires to objects. You can specify a value from 0 to 3,153,600,000 - // seconds (100 years). - MaxTTL *int64 `type:"long"` - - // The minimum amount of time that you want objects to stay in CloudFront caches - // before CloudFront queries your origin to see whether the object has been - // updated.You can specify a value from 0 to 3,153,600,000 seconds (100 years). - // - // MinTTL is a required field - MinTTL *int64 `type:"long" required:"true"` - - // The pattern (for example, images/*.jpg) that specifies which requests you - // want this cache behavior to apply to. When CloudFront receives an end-user - // request, the requested path is compared with path patterns in the order in - // which cache behaviors are listed in the distribution. The path pattern for - // the default cache behavior is * and cannot be changed. If the request for - // an object does not match the path pattern for any cache behaviors, CloudFront - // applies the behavior in the default cache behavior. - // - // PathPattern is a required field - PathPattern *string `type:"string" required:"true"` - - // Indicates whether you want to distribute media files in Microsoft Smooth - // Streaming format using the origin that is associated with this cache behavior. - // If so, specify true; if not, specify false. - SmoothStreaming *bool `type:"boolean"` - - // The value of ID for the origin that you want CloudFront to route requests - // to when a request matches the path pattern either for a cache behavior or - // for the default cache behavior. - // - // TargetOriginId is a required field - TargetOriginId *string `type:"string" required:"true"` - - // A complex type that specifies the AWS accounts, if any, that you want to - // allow to create signed URLs for private content. If you want to require signed - // URLs in requests for objects in the target origin that match the PathPattern - // for this cache behavior, specify true for Enabled, and specify the applicable - // values for Quantity and Items. For more information, go to Using a Signed - // URL to Serve Private Content in the Amazon CloudFront Developer Guide. If - // you don't want to require signed URLs in requests for objects that match - // PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To - // add, change, or remove one or more trusted signers, change Enabled to true - // (if it's currently false), change Quantity as applicable, and specify all - // of the trusted signers that you want to include in the updated distribution. - // - // TrustedSigners is a required field - TrustedSigners *TrustedSigners `type:"structure" required:"true"` - - // Use this element to specify the protocol that users can use to access the - // files in the origin specified by TargetOriginId when a request matches the - // path pattern in PathPattern. If you want CloudFront to allow end users to - // use any available protocol, specify allow-all. If you want CloudFront to - // require HTTPS, specify https. If you want CloudFront to respond to an HTTP - // request with an HTTP status code of 301 (Moved Permanently) and the HTTPS - // URL, specify redirect-to-https. The viewer then resubmits the request using - // the HTTPS URL. - // - // ViewerProtocolPolicy is a required field - ViewerProtocolPolicy *string `type:"string" required:"true" enum:"ViewerProtocolPolicy"` -} - -// String returns the string representation -func (s CacheBehavior) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CacheBehavior) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CacheBehavior) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CacheBehavior"} - if s.ForwardedValues == nil { - invalidParams.Add(request.NewErrParamRequired("ForwardedValues")) - } - if s.MinTTL == nil { - invalidParams.Add(request.NewErrParamRequired("MinTTL")) - } - if s.PathPattern == nil { - invalidParams.Add(request.NewErrParamRequired("PathPattern")) - } - if s.TargetOriginId == nil { - invalidParams.Add(request.NewErrParamRequired("TargetOriginId")) - } - if s.TrustedSigners == nil { - invalidParams.Add(request.NewErrParamRequired("TrustedSigners")) - } - if s.ViewerProtocolPolicy == nil { - invalidParams.Add(request.NewErrParamRequired("ViewerProtocolPolicy")) - } - if s.AllowedMethods != nil { - if err := s.AllowedMethods.Validate(); err != nil { - invalidParams.AddNested("AllowedMethods", err.(request.ErrInvalidParams)) - } - } - if s.ForwardedValues != nil { - if err := s.ForwardedValues.Validate(); err != nil { - invalidParams.AddNested("ForwardedValues", err.(request.ErrInvalidParams)) - } - } - if s.TrustedSigners != nil { - if err := s.TrustedSigners.Validate(); err != nil { - invalidParams.AddNested("TrustedSigners", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains zero or more CacheBehavior elements. -type CacheBehaviors struct { - _ struct{} `type:"structure"` - - // Optional: A complex type that contains cache behaviors for this distribution. - // If Quantity is 0, you can omit Items. - Items []*CacheBehavior `locationNameList:"CacheBehavior" type:"list"` - - // The number of cache behaviors for this distribution. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s CacheBehaviors) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CacheBehaviors) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CacheBehaviors) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CacheBehaviors"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - if s.Items != nil { - for i, v := range s.Items { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Items", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that controls whether CloudFront caches the response to requests -// using the specified HTTP methods. There are two choices: - CloudFront caches -// responses to GET and HEAD requests. - CloudFront caches responses to GET, -// HEAD, and OPTIONS requests. If you pick the second choice for your S3 Origin, -// you may need to forward Access-Control-Request-Method, Access-Control-Request-Headers -// and Origin headers for the responses to be cached correctly. -type CachedMethods struct { - _ struct{} `type:"structure"` - - // A complex type that contains the HTTP methods that you want CloudFront to - // cache responses to. - // - // Items is a required field - Items []*string `locationNameList:"Method" type:"list" required:"true"` - - // The number of HTTP methods for which you want CloudFront to cache responses. - // Valid values are 2 (for caching responses to GET and HEAD requests) and 3 - // (for caching responses to GET, HEAD, and OPTIONS requests). - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s CachedMethods) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CachedMethods) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CachedMethods) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CachedMethods"} - if s.Items == nil { - invalidParams.Add(request.NewErrParamRequired("Items")) - } - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that specifies the whitelisted cookies, if any, that you want -// CloudFront to forward to your origin that is associated with this cache behavior. -type CookieNames struct { - _ struct{} `type:"structure"` - - // Optional: A complex type that contains whitelisted cookies for this cache - // behavior. If Quantity is 0, you can omit Items. - Items []*string `locationNameList:"Name" type:"list"` - - // The number of whitelisted cookies for this cache behavior. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s CookieNames) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CookieNames) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CookieNames) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CookieNames"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that specifies the cookie preferences associated with this -// cache behavior. -type CookiePreference struct { - _ struct{} `type:"structure"` - - // Use this element to specify whether you want CloudFront to forward cookies - // to the origin that is associated with this cache behavior. You can specify - // all, none or whitelist. If you choose All, CloudFront forwards all cookies - // regardless of how many your application uses. - // - // Forward is a required field - Forward *string `type:"string" required:"true" enum:"ItemSelection"` - - // A complex type that specifies the whitelisted cookies, if any, that you want - // CloudFront to forward to your origin that is associated with this cache behavior. - WhitelistedNames *CookieNames `type:"structure"` -} - -// String returns the string representation -func (s CookiePreference) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CookiePreference) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CookiePreference) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CookiePreference"} - if s.Forward == nil { - invalidParams.Add(request.NewErrParamRequired("Forward")) - } - if s.WhitelistedNames != nil { - if err := s.WhitelistedNames.Validate(); err != nil { - invalidParams.AddNested("WhitelistedNames", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The request to create a new origin access identity. -type CreateCloudFrontOriginAccessIdentityInput struct { - _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` - - // The origin access identity's configuration information. - // - // CloudFrontOriginAccessIdentityConfig is a required field - CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `locationName:"CloudFrontOriginAccessIdentityConfig" type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateCloudFrontOriginAccessIdentityInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateCloudFrontOriginAccessIdentityInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateCloudFrontOriginAccessIdentityInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateCloudFrontOriginAccessIdentityInput"} - if s.CloudFrontOriginAccessIdentityConfig == nil { - invalidParams.Add(request.NewErrParamRequired("CloudFrontOriginAccessIdentityConfig")) - } - if s.CloudFrontOriginAccessIdentityConfig != nil { - if err := s.CloudFrontOriginAccessIdentityConfig.Validate(); err != nil { - invalidParams.AddNested("CloudFrontOriginAccessIdentityConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type CreateCloudFrontOriginAccessIdentityOutput struct { - _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentity"` - - // The origin access identity's information. - CloudFrontOriginAccessIdentity *OriginAccessIdentity `type:"structure"` - - // The current version of the origin access identity created. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The fully qualified URI of the new origin access identity just created. For - // example: https://cloudfront.amazonaws.com/2010-11-01/origin-access-identity/cloudfront/E74FTE3AJFJ256A. - Location *string `location:"header" locationName:"Location" type:"string"` -} - -// String returns the string representation -func (s CreateCloudFrontOriginAccessIdentityOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateCloudFrontOriginAccessIdentityOutput) GoString() string { - return s.String() -} - -// The request to create a new distribution. -type CreateDistributionInput struct { - _ struct{} `type:"structure" payload:"DistributionConfig"` - - // The distribution's configuration information. - // - // DistributionConfig is a required field - DistributionConfig *DistributionConfig `locationName:"DistributionConfig" type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateDistributionInput"} - if s.DistributionConfig == nil { - invalidParams.Add(request.NewErrParamRequired("DistributionConfig")) - } - if s.DistributionConfig != nil { - if err := s.DistributionConfig.Validate(); err != nil { - invalidParams.AddNested("DistributionConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type CreateDistributionOutput struct { - _ struct{} `type:"structure" payload:"Distribution"` - - // The distribution's information. - Distribution *Distribution `type:"structure"` - - // The current version of the distribution created. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The fully qualified URI of the new distribution resource just created. For - // example: https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5. - Location *string `location:"header" locationName:"Location" type:"string"` -} - -// String returns the string representation -func (s CreateDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateDistributionOutput) GoString() string { - return s.String() -} - -// The request to create a new distribution with tags -type CreateDistributionWithTagsInput struct { - _ struct{} `type:"structure" payload:"DistributionConfigWithTags"` - - // The distribution's configuration information. - // - // DistributionConfigWithTags is a required field - DistributionConfigWithTags *DistributionConfigWithTags `locationName:"DistributionConfigWithTags" type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateDistributionWithTagsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateDistributionWithTagsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateDistributionWithTagsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateDistributionWithTagsInput"} - if s.DistributionConfigWithTags == nil { - invalidParams.Add(request.NewErrParamRequired("DistributionConfigWithTags")) - } - if s.DistributionConfigWithTags != nil { - if err := s.DistributionConfigWithTags.Validate(); err != nil { - invalidParams.AddNested("DistributionConfigWithTags", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type CreateDistributionWithTagsOutput struct { - _ struct{} `type:"structure" payload:"Distribution"` - - // The distribution's information. - Distribution *Distribution `type:"structure"` - - // The current version of the distribution created. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The fully qualified URI of the new distribution resource just created. For - // example: https://cloudfront.amazonaws.com/2010-11-01/distribution/EDFDVBD632BHDS5. - Location *string `location:"header" locationName:"Location" type:"string"` -} - -// String returns the string representation -func (s CreateDistributionWithTagsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateDistributionWithTagsOutput) GoString() string { - return s.String() -} - -// The request to create an invalidation. -type CreateInvalidationInput struct { - _ struct{} `type:"structure" payload:"InvalidationBatch"` - - // The distribution's id. - // - // DistributionId is a required field - DistributionId *string `location:"uri" locationName:"DistributionId" type:"string" required:"true"` - - // The batch information for the invalidation. - // - // InvalidationBatch is a required field - InvalidationBatch *InvalidationBatch `locationName:"InvalidationBatch" type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateInvalidationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateInvalidationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateInvalidationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateInvalidationInput"} - if s.DistributionId == nil { - invalidParams.Add(request.NewErrParamRequired("DistributionId")) - } - if s.InvalidationBatch == nil { - invalidParams.Add(request.NewErrParamRequired("InvalidationBatch")) - } - if s.InvalidationBatch != nil { - if err := s.InvalidationBatch.Validate(); err != nil { - invalidParams.AddNested("InvalidationBatch", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type CreateInvalidationOutput struct { - _ struct{} `type:"structure" payload:"Invalidation"` - - // The invalidation's information. - Invalidation *Invalidation `type:"structure"` - - // The fully qualified URI of the distribution and invalidation batch request, - // including the Invalidation ID. - Location *string `location:"header" locationName:"Location" type:"string"` -} - -// String returns the string representation -func (s CreateInvalidationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateInvalidationOutput) GoString() string { - return s.String() -} - -// The request to create a new streaming distribution. -type CreateStreamingDistributionInput struct { - _ struct{} `type:"structure" payload:"StreamingDistributionConfig"` - - // The streaming distribution's configuration information. - // - // StreamingDistributionConfig is a required field - StreamingDistributionConfig *StreamingDistributionConfig `locationName:"StreamingDistributionConfig" type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateStreamingDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateStreamingDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateStreamingDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateStreamingDistributionInput"} - if s.StreamingDistributionConfig == nil { - invalidParams.Add(request.NewErrParamRequired("StreamingDistributionConfig")) - } - if s.StreamingDistributionConfig != nil { - if err := s.StreamingDistributionConfig.Validate(); err != nil { - invalidParams.AddNested("StreamingDistributionConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type CreateStreamingDistributionOutput struct { - _ struct{} `type:"structure" payload:"StreamingDistribution"` - - // The current version of the streaming distribution created. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The fully qualified URI of the new streaming distribution resource just created. - // For example: https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8. - Location *string `location:"header" locationName:"Location" type:"string"` - - // The streaming distribution's information. - StreamingDistribution *StreamingDistribution `type:"structure"` -} - -// String returns the string representation -func (s CreateStreamingDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateStreamingDistributionOutput) GoString() string { - return s.String() -} - -// The request to create a new streaming distribution with tags. -type CreateStreamingDistributionWithTagsInput struct { - _ struct{} `type:"structure" payload:"StreamingDistributionConfigWithTags"` - - // The streaming distribution's configuration information. - // - // StreamingDistributionConfigWithTags is a required field - StreamingDistributionConfigWithTags *StreamingDistributionConfigWithTags `locationName:"StreamingDistributionConfigWithTags" type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateStreamingDistributionWithTagsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateStreamingDistributionWithTagsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateStreamingDistributionWithTagsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateStreamingDistributionWithTagsInput"} - if s.StreamingDistributionConfigWithTags == nil { - invalidParams.Add(request.NewErrParamRequired("StreamingDistributionConfigWithTags")) - } - if s.StreamingDistributionConfigWithTags != nil { - if err := s.StreamingDistributionConfigWithTags.Validate(); err != nil { - invalidParams.AddNested("StreamingDistributionConfigWithTags", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type CreateStreamingDistributionWithTagsOutput struct { - _ struct{} `type:"structure" payload:"StreamingDistribution"` - - // The current version of the streaming distribution created. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The fully qualified URI of the new streaming distribution resource just created. - // For example: https://cloudfront.amazonaws.com/2010-11-01/streaming-distribution/EGTXBD79H29TRA8. - Location *string `location:"header" locationName:"Location" type:"string"` - - // The streaming distribution's information. - StreamingDistribution *StreamingDistribution `type:"structure"` -} - -// String returns the string representation -func (s CreateStreamingDistributionWithTagsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateStreamingDistributionWithTagsOutput) GoString() string { - return s.String() -} - -// A complex type that describes how you'd prefer CloudFront to respond to requests -// that result in either a 4xx or 5xx response. You can control whether a custom -// error page should be displayed, what the desired response code should be -// for this error page and how long should the error response be cached by CloudFront. -// If you don't want to specify any custom error responses, include only an -// empty CustomErrorResponses element. To delete all custom error responses -// in an existing distribution, update the distribution configuration and include -// only an empty CustomErrorResponses element. To add, change, or remove one -// or more custom error responses, update the distribution configuration and -// specify all of the custom error responses that you want to include in the -// updated distribution. -type CustomErrorResponse struct { - _ struct{} `type:"structure"` - - // The minimum amount of time you want HTTP error codes to stay in CloudFront - // caches before CloudFront queries your origin to see whether the object has - // been updated. You can specify a value from 0 to 31,536,000. - ErrorCachingMinTTL *int64 `type:"long"` - - // The 4xx or 5xx HTTP status code that you want to customize. For a list of - // HTTP status codes that you can customize, see CloudFront documentation. - // - // ErrorCode is a required field - ErrorCode *int64 `type:"integer" required:"true"` - - // The HTTP status code that you want CloudFront to return with the custom error - // page to the viewer. For a list of HTTP status codes that you can replace, - // see CloudFront Documentation. - ResponseCode *string `type:"string"` - - // The path of the custom error page (for example, /custom_404.html). The path - // is relative to the distribution and must begin with a slash (/). If the path - // includes any non-ASCII characters or unsafe characters as defined in RFC - // 1783 (http://www.ietf.org/rfc/rfc1738.txt), URL encode those characters. - // Do not URL encode any other characters in the path, or CloudFront will not - // return the custom error page to the viewer. - ResponsePagePath *string `type:"string"` -} - -// String returns the string representation -func (s CustomErrorResponse) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CustomErrorResponse) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CustomErrorResponse) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CustomErrorResponse"} - if s.ErrorCode == nil { - invalidParams.Add(request.NewErrParamRequired("ErrorCode")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains zero or more CustomErrorResponse elements. -type CustomErrorResponses struct { - _ struct{} `type:"structure"` - - // Optional: A complex type that contains custom error responses for this distribution. - // If Quantity is 0, you can omit Items. - Items []*CustomErrorResponse `locationNameList:"CustomErrorResponse" type:"list"` - - // The number of custom error responses for this distribution. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s CustomErrorResponses) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CustomErrorResponses) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CustomErrorResponses) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CustomErrorResponses"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - if s.Items != nil { - for i, v := range s.Items { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Items", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the list of Custom Headers for each origin. -type CustomHeaders struct { - _ struct{} `type:"structure"` - - // A complex type that contains the custom headers for this Origin. - Items []*OriginCustomHeader `locationNameList:"OriginCustomHeader" type:"list"` - - // The number of custom headers for this origin. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s CustomHeaders) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CustomHeaders) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CustomHeaders) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CustomHeaders"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - if s.Items != nil { - for i, v := range s.Items { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Items", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A customer origin. -type CustomOriginConfig struct { - _ struct{} `type:"structure"` - - // The HTTP port the custom origin listens on. - // - // HTTPPort is a required field - HTTPPort *int64 `type:"integer" required:"true"` - - // The HTTPS port the custom origin listens on. - // - // HTTPSPort is a required field - HTTPSPort *int64 `type:"integer" required:"true"` - - // The origin protocol policy to apply to your origin. - // - // OriginProtocolPolicy is a required field - OriginProtocolPolicy *string `type:"string" required:"true" enum:"OriginProtocolPolicy"` - - // The SSL/TLS protocols that you want CloudFront to use when communicating - // with your origin over HTTPS. - OriginSslProtocols *OriginSslProtocols `type:"structure"` -} - -// String returns the string representation -func (s CustomOriginConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CustomOriginConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CustomOriginConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CustomOriginConfig"} - if s.HTTPPort == nil { - invalidParams.Add(request.NewErrParamRequired("HTTPPort")) - } - if s.HTTPSPort == nil { - invalidParams.Add(request.NewErrParamRequired("HTTPSPort")) - } - if s.OriginProtocolPolicy == nil { - invalidParams.Add(request.NewErrParamRequired("OriginProtocolPolicy")) - } - if s.OriginSslProtocols != nil { - if err := s.OriginSslProtocols.Validate(); err != nil { - invalidParams.AddNested("OriginSslProtocols", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that describes the default cache behavior if you do not specify -// a CacheBehavior element or if files don't match any of the values of PathPattern -// in CacheBehavior elements.You must create exactly one default cache behavior. -type DefaultCacheBehavior struct { - _ struct{} `type:"structure"` - - // A complex type that controls which HTTP methods CloudFront processes and - // forwards to your Amazon S3 bucket or your custom origin. There are three - // choices: - CloudFront forwards only GET and HEAD requests. - CloudFront forwards - // only GET, HEAD and OPTIONS requests. - CloudFront forwards GET, HEAD, OPTIONS, - // PUT, PATCH, POST, and DELETE requests. If you pick the third choice, you - // may need to restrict access to your Amazon S3 bucket or to your custom origin - // so users can't perform operations that you don't want them to. For example, - // you may not want users to have permission to delete objects from your origin. - AllowedMethods *AllowedMethods `type:"structure"` - - // Whether you want CloudFront to automatically compress content for web requests - // that include Accept-Encoding: gzip in the request header. If so, specify - // true; if not, specify false. CloudFront compresses files larger than 1000 - // bytes and less than 1 megabyte for both Amazon S3 and custom origins. When - // a CloudFront edge location is unusually busy, some files might not be compressed. - // The value of the Content-Type header must be on the list of file types that - // CloudFront will compress. For the current list, see Serving Compressed Content - // (http://docs.aws.amazon.com/console/cloudfront/compressed-content) in the - // Amazon CloudFront Developer Guide. If you configure CloudFront to compress - // content, CloudFront removes the ETag response header from the objects that - // it compresses. The ETag header indicates that the version in a CloudFront - // edge cache is identical to the version on the origin server, but after compression - // the two versions are no longer identical. As a result, for compressed objects, - // CloudFront can't use the ETag header to determine whether an expired object - // in the CloudFront edge cache is still the latest version. - Compress *bool `type:"boolean"` - - // If you don't configure your origin to add a Cache-Control max-age directive - // or an Expires header, DefaultTTL is the default amount of time (in seconds) - // that an object is in a CloudFront cache before CloudFront forwards another - // request to your origin to determine whether the object has been updated. - // The value that you specify applies only when your origin does not add HTTP - // headers such as Cache-Control max-age, Cache-Control s-maxage, and Expires - // to objects. You can specify a value from 0 to 3,153,600,000 seconds (100 - // years). - DefaultTTL *int64 `type:"long"` - - // A complex type that specifies how CloudFront handles query strings, cookies - // and headers. - // - // ForwardedValues is a required field - ForwardedValues *ForwardedValues `type:"structure" required:"true"` - - // The maximum amount of time (in seconds) that an object is in a CloudFront - // cache before CloudFront forwards another request to your origin to determine - // whether the object has been updated. The value that you specify applies only - // when your origin adds HTTP headers such as Cache-Control max-age, Cache-Control - // s-maxage, and Expires to objects. You can specify a value from 0 to 3,153,600,000 - // seconds (100 years). - MaxTTL *int64 `type:"long"` - - // The minimum amount of time that you want objects to stay in CloudFront caches - // before CloudFront queries your origin to see whether the object has been - // updated.You can specify a value from 0 to 3,153,600,000 seconds (100 years). - // - // MinTTL is a required field - MinTTL *int64 `type:"long" required:"true"` - - // Indicates whether you want to distribute media files in Microsoft Smooth - // Streaming format using the origin that is associated with this cache behavior. - // If so, specify true; if not, specify false. - SmoothStreaming *bool `type:"boolean"` - - // The value of ID for the origin that you want CloudFront to route requests - // to when a request matches the path pattern either for a cache behavior or - // for the default cache behavior. - // - // TargetOriginId is a required field - TargetOriginId *string `type:"string" required:"true"` - - // A complex type that specifies the AWS accounts, if any, that you want to - // allow to create signed URLs for private content. If you want to require signed - // URLs in requests for objects in the target origin that match the PathPattern - // for this cache behavior, specify true for Enabled, and specify the applicable - // values for Quantity and Items. For more information, go to Using a Signed - // URL to Serve Private Content in the Amazon CloudFront Developer Guide. If - // you don't want to require signed URLs in requests for objects that match - // PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To - // add, change, or remove one or more trusted signers, change Enabled to true - // (if it's currently false), change Quantity as applicable, and specify all - // of the trusted signers that you want to include in the updated distribution. - // - // TrustedSigners is a required field - TrustedSigners *TrustedSigners `type:"structure" required:"true"` - - // Use this element to specify the protocol that users can use to access the - // files in the origin specified by TargetOriginId when a request matches the - // path pattern in PathPattern. If you want CloudFront to allow end users to - // use any available protocol, specify allow-all. If you want CloudFront to - // require HTTPS, specify https. If you want CloudFront to respond to an HTTP - // request with an HTTP status code of 301 (Moved Permanently) and the HTTPS - // URL, specify redirect-to-https. The viewer then resubmits the request using - // the HTTPS URL. - // - // ViewerProtocolPolicy is a required field - ViewerProtocolPolicy *string `type:"string" required:"true" enum:"ViewerProtocolPolicy"` -} - -// String returns the string representation -func (s DefaultCacheBehavior) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DefaultCacheBehavior) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DefaultCacheBehavior) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DefaultCacheBehavior"} - if s.ForwardedValues == nil { - invalidParams.Add(request.NewErrParamRequired("ForwardedValues")) - } - if s.MinTTL == nil { - invalidParams.Add(request.NewErrParamRequired("MinTTL")) - } - if s.TargetOriginId == nil { - invalidParams.Add(request.NewErrParamRequired("TargetOriginId")) - } - if s.TrustedSigners == nil { - invalidParams.Add(request.NewErrParamRequired("TrustedSigners")) - } - if s.ViewerProtocolPolicy == nil { - invalidParams.Add(request.NewErrParamRequired("ViewerProtocolPolicy")) - } - if s.AllowedMethods != nil { - if err := s.AllowedMethods.Validate(); err != nil { - invalidParams.AddNested("AllowedMethods", err.(request.ErrInvalidParams)) - } - } - if s.ForwardedValues != nil { - if err := s.ForwardedValues.Validate(); err != nil { - invalidParams.AddNested("ForwardedValues", err.(request.ErrInvalidParams)) - } - } - if s.TrustedSigners != nil { - if err := s.TrustedSigners.Validate(); err != nil { - invalidParams.AddNested("TrustedSigners", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The request to delete a origin access identity. -type DeleteCloudFrontOriginAccessIdentityInput struct { - _ struct{} `type:"structure"` - - // The origin access identity's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The value of the ETag header you received from a previous GET or PUT request. - // For example: E2QWRUHAPOMQZL. - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` -} - -// String returns the string representation -func (s DeleteCloudFrontOriginAccessIdentityInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteCloudFrontOriginAccessIdentityInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteCloudFrontOriginAccessIdentityInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteCloudFrontOriginAccessIdentityInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteCloudFrontOriginAccessIdentityOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteCloudFrontOriginAccessIdentityOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteCloudFrontOriginAccessIdentityOutput) GoString() string { - return s.String() -} - -// The request to delete a distribution. -type DeleteDistributionInput struct { - _ struct{} `type:"structure"` - - // The distribution id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The value of the ETag header you received when you disabled the distribution. - // For example: E2QWRUHAPOMQZL. - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` -} - -// String returns the string representation -func (s DeleteDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteDistributionInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteDistributionOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteDistributionOutput) GoString() string { - return s.String() -} - -// The request to delete a streaming distribution. -type DeleteStreamingDistributionInput struct { - _ struct{} `type:"structure"` - - // The distribution id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The value of the ETag header you received when you disabled the streaming - // distribution. For example: E2QWRUHAPOMQZL. - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` -} - -// String returns the string representation -func (s DeleteStreamingDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteStreamingDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteStreamingDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteStreamingDistributionInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteStreamingDistributionOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteStreamingDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteStreamingDistributionOutput) GoString() string { - return s.String() -} - -// A distribution. -type Distribution struct { - _ struct{} `type:"structure"` - - // The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, - // where 123456789012 is your AWS account Id. - // - // ARN is a required field - ARN *string `type:"string" required:"true"` - - // CloudFront automatically adds this element to the response only if you've - // set up the distribution to serve private content with signed URLs. The element - // lists the key pair IDs that CloudFront is aware of for each trusted signer. - // The Signer child element lists the AWS account number of the trusted signer - // (or an empty Self element if the signer is you). The Signer element also - // includes the IDs of any active key pairs associated with the trusted signer's - // AWS account. If no KeyPairId element appears for a Signer, that signer can't - // create working signed URLs. - // - // ActiveTrustedSigners is a required field - ActiveTrustedSigners *ActiveTrustedSigners `type:"structure" required:"true"` - - // The current configuration information for the distribution. - // - // DistributionConfig is a required field - DistributionConfig *DistributionConfig `type:"structure" required:"true"` - - // The domain name corresponding to the distribution. For example: d604721fxaaqy9.cloudfront.net. - // - // DomainName is a required field - DomainName *string `type:"string" required:"true"` - - // The identifier for the distribution. For example: EDFDVBD632BHDS5. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The number of invalidation batches currently in progress. - // - // InProgressInvalidationBatches is a required field - InProgressInvalidationBatches *int64 `type:"integer" required:"true"` - - // The date and time the distribution was last modified. - // - // LastModifiedTime is a required field - LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // This response element indicates the current status of the distribution. When - // the status is Deployed, the distribution's information is fully propagated - // throughout the Amazon CloudFront system. - // - // Status is a required field - Status *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s Distribution) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Distribution) GoString() string { - return s.String() -} - -// A distribution Configuration. -type DistributionConfig struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about CNAMEs (alternate domain names), - // if any, for this distribution. - Aliases *Aliases `type:"structure"` - - // A complex type that contains zero or more CacheBehavior elements. - CacheBehaviors *CacheBehaviors `type:"structure"` - - // A unique number that ensures the request can't be replayed. If the CallerReference - // is new (no matter the content of the DistributionConfig object), a new distribution - // is created. If the CallerReference is a value you already sent in a previous - // request to create a distribution, and the content of the DistributionConfig - // is identical to the original request (ignoring white space), the response - // includes the same information returned to the original request. If the CallerReference - // is a value you already sent in a previous request to create a distribution - // but the content of the DistributionConfig is different from the original - // request, CloudFront returns a DistributionAlreadyExists error. - // - // CallerReference is a required field - CallerReference *string `type:"string" required:"true"` - - // Any comments you want to include about the distribution. - // - // Comment is a required field - Comment *string `type:"string" required:"true"` - - // A complex type that contains zero or more CustomErrorResponse elements. - CustomErrorResponses *CustomErrorResponses `type:"structure"` - - // A complex type that describes the default cache behavior if you do not specify - // a CacheBehavior element or if files don't match any of the values of PathPattern - // in CacheBehavior elements.You must create exactly one default cache behavior. - // - // DefaultCacheBehavior is a required field - DefaultCacheBehavior *DefaultCacheBehavior `type:"structure" required:"true"` - - // The object that you want CloudFront to return (for example, index.html) when - // an end user requests the root URL for your distribution (http://www.example.com) - // instead of an object in your distribution (http://www.example.com/index.html). - // Specifying a default root object avoids exposing the contents of your distribution. - // If you don't want to specify a default root object when you create a distribution, - // include an empty DefaultRootObject element. To delete the default root object - // from an existing distribution, update the distribution configuration and - // include an empty DefaultRootObject element. To replace the default root object, - // update the distribution configuration and specify the new object. - DefaultRootObject *string `type:"string"` - - // Whether the distribution is enabled to accept end user requests for content. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // (Optional) Specify the maximum HTTP version that you want viewers to use - // to communicate with CloudFront. The default value for new web distributions - // is http2. Viewers that don't support HTTP/2 will automatically use an earlier - // version. - HttpVersion *string `type:"string" enum:"HttpVersion"` - - // A complex type that controls whether access logs are written for the distribution. - Logging *LoggingConfig `type:"structure"` - - // A complex type that contains information about origins for this distribution. - // - // Origins is a required field - Origins *Origins `type:"structure" required:"true"` - - // A complex type that contains information about price class for this distribution. - PriceClass *string `type:"string" enum:"PriceClass"` - - // A complex type that identifies ways in which you want to restrict distribution - // of your content. - Restrictions *Restrictions `type:"structure"` - - // A complex type that contains information about viewer certificates for this - // distribution. - ViewerCertificate *ViewerCertificate `type:"structure"` - - // (Optional) If you're using AWS WAF to filter CloudFront requests, the Id - // of the AWS WAF web ACL that is associated with the distribution. - WebACLId *string `type:"string"` -} - -// String returns the string representation -func (s DistributionConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DistributionConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DistributionConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DistributionConfig"} - if s.CallerReference == nil { - invalidParams.Add(request.NewErrParamRequired("CallerReference")) - } - if s.Comment == nil { - invalidParams.Add(request.NewErrParamRequired("Comment")) - } - if s.DefaultCacheBehavior == nil { - invalidParams.Add(request.NewErrParamRequired("DefaultCacheBehavior")) - } - if s.Enabled == nil { - invalidParams.Add(request.NewErrParamRequired("Enabled")) - } - if s.Origins == nil { - invalidParams.Add(request.NewErrParamRequired("Origins")) - } - if s.Aliases != nil { - if err := s.Aliases.Validate(); err != nil { - invalidParams.AddNested("Aliases", err.(request.ErrInvalidParams)) - } - } - if s.CacheBehaviors != nil { - if err := s.CacheBehaviors.Validate(); err != nil { - invalidParams.AddNested("CacheBehaviors", err.(request.ErrInvalidParams)) - } - } - if s.CustomErrorResponses != nil { - if err := s.CustomErrorResponses.Validate(); err != nil { - invalidParams.AddNested("CustomErrorResponses", err.(request.ErrInvalidParams)) - } - } - if s.DefaultCacheBehavior != nil { - if err := s.DefaultCacheBehavior.Validate(); err != nil { - invalidParams.AddNested("DefaultCacheBehavior", err.(request.ErrInvalidParams)) - } - } - if s.Logging != nil { - if err := s.Logging.Validate(); err != nil { - invalidParams.AddNested("Logging", err.(request.ErrInvalidParams)) - } - } - if s.Origins != nil { - if err := s.Origins.Validate(); err != nil { - invalidParams.AddNested("Origins", err.(request.ErrInvalidParams)) - } - } - if s.Restrictions != nil { - if err := s.Restrictions.Validate(); err != nil { - invalidParams.AddNested("Restrictions", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A distribution Configuration and a list of tags to be associated with the -// distribution. -type DistributionConfigWithTags struct { - _ struct{} `type:"structure"` - - // A distribution Configuration. - // - // DistributionConfig is a required field - DistributionConfig *DistributionConfig `type:"structure" required:"true"` - - // A complex type that contains zero or more Tag elements. - // - // Tags is a required field - Tags *Tags `type:"structure" required:"true"` -} - -// String returns the string representation -func (s DistributionConfigWithTags) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DistributionConfigWithTags) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DistributionConfigWithTags) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DistributionConfigWithTags"} - if s.DistributionConfig == nil { - invalidParams.Add(request.NewErrParamRequired("DistributionConfig")) - } - if s.Tags == nil { - invalidParams.Add(request.NewErrParamRequired("Tags")) - } - if s.DistributionConfig != nil { - if err := s.DistributionConfig.Validate(); err != nil { - invalidParams.AddNested("DistributionConfig", err.(request.ErrInvalidParams)) - } - } - if s.Tags != nil { - if err := s.Tags.Validate(); err != nil { - invalidParams.AddNested("Tags", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A distribution list. -type DistributionList struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether more distributions remain to be listed. If - // your results were truncated, you can make a follow-up pagination request - // using the Marker request parameter to retrieve more distributions in the - // list. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // A complex type that contains one DistributionSummary element for each distribution - // that was created by the current AWS account. - Items []*DistributionSummary `locationNameList:"DistributionSummary" type:"list"` - - // The value you provided for the Marker request parameter. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value you provided for the MaxItems request parameter. - // - // MaxItems is a required field - MaxItems *int64 `type:"integer" required:"true"` - - // If IsTruncated is true, this element is present and contains the value you - // can use for the Marker request parameter to continue listing your distributions - // where they left off. - NextMarker *string `type:"string"` - - // The number of distributions that were created by the current AWS account. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s DistributionList) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DistributionList) GoString() string { - return s.String() -} - -// A summary of the information for an Amazon CloudFront distribution. -type DistributionSummary struct { - _ struct{} `type:"structure"` - - // The ARN (Amazon Resource Name) for the distribution. For example: arn:aws:cloudfront::123456789012:distribution/EDFDVBD632BHDS5, - // where 123456789012 is your AWS account Id. - // - // ARN is a required field - ARN *string `type:"string" required:"true"` - - // A complex type that contains information about CNAMEs (alternate domain names), - // if any, for this distribution. - // - // Aliases is a required field - Aliases *Aliases `type:"structure" required:"true"` - - // A complex type that contains zero or more CacheBehavior elements. - // - // CacheBehaviors is a required field - CacheBehaviors *CacheBehaviors `type:"structure" required:"true"` - - // The comment originally specified when this distribution was created. - // - // Comment is a required field - Comment *string `type:"string" required:"true"` - - // A complex type that contains zero or more CustomErrorResponses elements. - // - // CustomErrorResponses is a required field - CustomErrorResponses *CustomErrorResponses `type:"structure" required:"true"` - - // A complex type that describes the default cache behavior if you do not specify - // a CacheBehavior element or if files don't match any of the values of PathPattern - // in CacheBehavior elements.You must create exactly one default cache behavior. - // - // DefaultCacheBehavior is a required field - DefaultCacheBehavior *DefaultCacheBehavior `type:"structure" required:"true"` - - // The domain name corresponding to the distribution. For example: d604721fxaaqy9.cloudfront.net. - // - // DomainName is a required field - DomainName *string `type:"string" required:"true"` - - // Whether the distribution is enabled to accept end user requests for content. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // Specify the maximum HTTP version that you want viewers to use to communicate - // with CloudFront. The default value for new web distributions is http2. Viewers - // that don't support HTTP/2 will automatically use an earlier version. - // - // HttpVersion is a required field - HttpVersion *string `type:"string" required:"true" enum:"HttpVersion"` - - // The identifier for the distribution. For example: EDFDVBD632BHDS5. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The date and time the distribution was last modified. - // - // LastModifiedTime is a required field - LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // A complex type that contains information about origins for this distribution. - // - // Origins is a required field - Origins *Origins `type:"structure" required:"true"` - - // PriceClass is a required field - PriceClass *string `type:"string" required:"true" enum:"PriceClass"` - - // A complex type that identifies ways in which you want to restrict distribution - // of your content. - // - // Restrictions is a required field - Restrictions *Restrictions `type:"structure" required:"true"` - - // This response element indicates the current status of the distribution. When - // the status is Deployed, the distribution's information is fully propagated - // throughout the Amazon CloudFront system. - // - // Status is a required field - Status *string `type:"string" required:"true"` - - // A complex type that contains information about viewer certificates for this - // distribution. - // - // ViewerCertificate is a required field - ViewerCertificate *ViewerCertificate `type:"structure" required:"true"` - - // The Web ACL Id (if any) associated with the distribution. - // - // WebACLId is a required field - WebACLId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DistributionSummary) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DistributionSummary) GoString() string { - return s.String() -} - -// A complex type that specifies how CloudFront handles query strings, cookies -// and headers. -type ForwardedValues struct { - _ struct{} `type:"structure"` - - // A complex type that specifies how CloudFront handles cookies. - // - // Cookies is a required field - Cookies *CookiePreference `type:"structure" required:"true"` - - // A complex type that specifies the Headers, if any, that you want CloudFront - // to vary upon for this cache behavior. - Headers *Headers `type:"structure"` - - // Indicates whether you want CloudFront to forward query strings to the origin - // that is associated with this cache behavior and cache based on the query - // string parameters. CloudFront behavior depends on the value of QueryString - // and on the values that you specify for QueryStringCacheKeys, if any: - // - // If you specify true for QueryString and you don't specify any values for - // QueryStringCacheKeys, CloudFront forwards all query string parameters to - // the origin and caches based on all query string parameters. Depending on - // how many query string parameters and values you have, this can adversely - // affect performance because CloudFront must forward more requests to the origin. - // If you specify true for QueryString and you specify one or more values for - // QueryStringCacheKeys, CloudFront forwards all query string parameters to - // the origin, but it only caches based on the query string parameters that - // you specify. If you specify false for QueryString, CloudFront doesn't forward - // any query string parameters to the origin, and doesn't cache based on query - // string parameters. - // - // QueryString is a required field - QueryString *bool `type:"boolean" required:"true"` - - // A complex type that contains information about the query string parameters - // that you want CloudFront to use for caching for this cache behavior. - QueryStringCacheKeys *QueryStringCacheKeys `type:"structure"` -} - -// String returns the string representation -func (s ForwardedValues) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ForwardedValues) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ForwardedValues) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ForwardedValues"} - if s.Cookies == nil { - invalidParams.Add(request.NewErrParamRequired("Cookies")) - } - if s.QueryString == nil { - invalidParams.Add(request.NewErrParamRequired("QueryString")) - } - if s.Cookies != nil { - if err := s.Cookies.Validate(); err != nil { - invalidParams.AddNested("Cookies", err.(request.ErrInvalidParams)) - } - } - if s.Headers != nil { - if err := s.Headers.Validate(); err != nil { - invalidParams.AddNested("Headers", err.(request.ErrInvalidParams)) - } - } - if s.QueryStringCacheKeys != nil { - if err := s.QueryStringCacheKeys.Validate(); err != nil { - invalidParams.AddNested("QueryStringCacheKeys", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that controls the countries in which your content is distributed. -// For more information about geo restriction, go to Customizing Error Responses -// in the Amazon CloudFront Developer Guide. CloudFront determines the location -// of your users using MaxMind GeoIP databases. For information about the accuracy -// of these databases, see How accurate are your GeoIP databases? on the MaxMind -// website. -type GeoRestriction struct { - _ struct{} `type:"structure"` - - // A complex type that contains a Location element for each country in which - // you want CloudFront either to distribute your content (whitelist) or not - // distribute your content (blacklist). The Location element is a two-letter, - // uppercase country code for a country that you want to include in your blacklist - // or whitelist. Include one Location element for each country. CloudFront and - // MaxMind both use ISO 3166 country codes. For the current list of countries - // and the corresponding codes, see ISO 3166-1-alpha-2 code on the International - // Organization for Standardization website. You can also refer to the country - // list in the CloudFront console, which includes both country names and codes. - Items []*string `locationNameList:"Location" type:"list"` - - // When geo restriction is enabled, this is the number of countries in your - // whitelist or blacklist. Otherwise, when it is not enabled, Quantity is 0, - // and you can omit Items. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` - - // The method that you want to use to restrict distribution of your content - // by country: - none: No geo restriction is enabled, meaning access to content - // is not restricted by client geo location. - blacklist: The Location elements - // specify the countries in which you do not want CloudFront to distribute your - // content. - whitelist: The Location elements specify the countries in which - // you want CloudFront to distribute your content. - // - // RestrictionType is a required field - RestrictionType *string `type:"string" required:"true" enum:"GeoRestrictionType"` -} - -// String returns the string representation -func (s GeoRestriction) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GeoRestriction) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GeoRestriction) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GeoRestriction"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - if s.RestrictionType == nil { - invalidParams.Add(request.NewErrParamRequired("RestrictionType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The request to get an origin access identity's configuration. -type GetCloudFrontOriginAccessIdentityConfigInput struct { - _ struct{} `type:"structure"` - - // The identity's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetCloudFrontOriginAccessIdentityConfigInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCloudFrontOriginAccessIdentityConfigInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetCloudFrontOriginAccessIdentityConfigInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetCloudFrontOriginAccessIdentityConfigInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type GetCloudFrontOriginAccessIdentityConfigOutput struct { - _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` - - // The origin access identity's configuration information. - CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `type:"structure"` - - // The current version of the configuration. For example: E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` -} - -// String returns the string representation -func (s GetCloudFrontOriginAccessIdentityConfigOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCloudFrontOriginAccessIdentityConfigOutput) GoString() string { - return s.String() -} - -// The request to get an origin access identity's information. -type GetCloudFrontOriginAccessIdentityInput struct { - _ struct{} `type:"structure"` - - // The identity's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetCloudFrontOriginAccessIdentityInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCloudFrontOriginAccessIdentityInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetCloudFrontOriginAccessIdentityInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetCloudFrontOriginAccessIdentityInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type GetCloudFrontOriginAccessIdentityOutput struct { - _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentity"` - - // The origin access identity's information. - CloudFrontOriginAccessIdentity *OriginAccessIdentity `type:"structure"` - - // The current version of the origin access identity's information. For example: - // E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` -} - -// String returns the string representation -func (s GetCloudFrontOriginAccessIdentityOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCloudFrontOriginAccessIdentityOutput) GoString() string { - return s.String() -} - -// The request to get a distribution configuration. -type GetDistributionConfigInput struct { - _ struct{} `type:"structure"` - - // The distribution's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetDistributionConfigInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetDistributionConfigInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetDistributionConfigInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetDistributionConfigInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type GetDistributionConfigOutput struct { - _ struct{} `type:"structure" payload:"DistributionConfig"` - - // The distribution's configuration information. - DistributionConfig *DistributionConfig `type:"structure"` - - // The current version of the configuration. For example: E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` -} - -// String returns the string representation -func (s GetDistributionConfigOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetDistributionConfigOutput) GoString() string { - return s.String() -} - -// The request to get a distribution's information. -type GetDistributionInput struct { - _ struct{} `type:"structure"` - - // The distribution's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetDistributionInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type GetDistributionOutput struct { - _ struct{} `type:"structure" payload:"Distribution"` - - // The distribution's information. - Distribution *Distribution `type:"structure"` - - // The current version of the distribution's information. For example: E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` -} - -// String returns the string representation -func (s GetDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetDistributionOutput) GoString() string { - return s.String() -} - -// The request to get an invalidation's information. -type GetInvalidationInput struct { - _ struct{} `type:"structure"` - - // The distribution's id. - // - // DistributionId is a required field - DistributionId *string `location:"uri" locationName:"DistributionId" type:"string" required:"true"` - - // The invalidation's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetInvalidationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetInvalidationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetInvalidationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetInvalidationInput"} - if s.DistributionId == nil { - invalidParams.Add(request.NewErrParamRequired("DistributionId")) - } - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type GetInvalidationOutput struct { - _ struct{} `type:"structure" payload:"Invalidation"` - - // The invalidation's information. - Invalidation *Invalidation `type:"structure"` -} - -// String returns the string representation -func (s GetInvalidationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetInvalidationOutput) GoString() string { - return s.String() -} - -// To request to get a streaming distribution configuration. -type GetStreamingDistributionConfigInput struct { - _ struct{} `type:"structure"` - - // The streaming distribution's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetStreamingDistributionConfigInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetStreamingDistributionConfigInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetStreamingDistributionConfigInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetStreamingDistributionConfigInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type GetStreamingDistributionConfigOutput struct { - _ struct{} `type:"structure" payload:"StreamingDistributionConfig"` - - // The current version of the configuration. For example: E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The streaming distribution's configuration information. - StreamingDistributionConfig *StreamingDistributionConfig `type:"structure"` -} - -// String returns the string representation -func (s GetStreamingDistributionConfigOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetStreamingDistributionConfigOutput) GoString() string { - return s.String() -} - -// The request to get a streaming distribution's information. -type GetStreamingDistributionInput struct { - _ struct{} `type:"structure"` - - // The streaming distribution's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetStreamingDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetStreamingDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetStreamingDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetStreamingDistributionInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type GetStreamingDistributionOutput struct { - _ struct{} `type:"structure" payload:"StreamingDistribution"` - - // The current version of the streaming distribution's information. For example: - // E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The streaming distribution's information. - StreamingDistribution *StreamingDistribution `type:"structure"` -} - -// String returns the string representation -func (s GetStreamingDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetStreamingDistributionOutput) GoString() string { - return s.String() -} - -// A complex type that specifies the headers that you want CloudFront to forward -// to the origin for this cache behavior. For the headers that you specify, -// CloudFront also caches separate versions of a given object based on the header -// values in viewer requests; this is known as varying on headers. For example, -// suppose viewer requests for logo.jpg contain a custom Product header that -// has a value of either Acme or Apex, and you configure CloudFront to vary -// on the Product header. CloudFront forwards the Product header to the origin -// and caches the response from the origin once for each header value. -type Headers struct { - _ struct{} `type:"structure"` - - // Optional: A complex type that contains a Name element for each header that - // you want CloudFront to forward to the origin and to vary on for this cache - // behavior. If Quantity is 0, omit Items. - Items []*string `locationNameList:"Name" type:"list"` - - // The number of different headers that you want CloudFront to forward to the - // origin and to vary on for this cache behavior. The maximum number of headers - // that you can specify by name is 10. If you want CloudFront to forward all - // headers to the origin and vary on all of them, specify 1 for Quantity and - // * for Name. If you don't want CloudFront to forward any additional headers - // to the origin or to vary on any headers, specify 0 for Quantity and omit - // Items. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s Headers) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Headers) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Headers) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Headers"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// An invalidation. -type Invalidation struct { - _ struct{} `type:"structure"` - - // The date and time the invalidation request was first made. - // - // CreateTime is a required field - CreateTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // The identifier for the invalidation request. For example: IDFDVBD632BHDS5. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The current invalidation information for the batch request. - // - // InvalidationBatch is a required field - InvalidationBatch *InvalidationBatch `type:"structure" required:"true"` - - // The status of the invalidation request. When the invalidation batch is finished, - // the status is Completed. - // - // Status is a required field - Status *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s Invalidation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Invalidation) GoString() string { - return s.String() -} - -// An invalidation batch. -type InvalidationBatch struct { - _ struct{} `type:"structure"` - - // A unique name that ensures the request can't be replayed. If the CallerReference - // is new (no matter the content of the Path object), a new distribution is - // created. If the CallerReference is a value you already sent in a previous - // request to create an invalidation batch, and the content of each Path element - // is identical to the original request, the response includes the same information - // returned to the original request. If the CallerReference is a value you already - // sent in a previous request to create a distribution but the content of any - // Path is different from the original request, CloudFront returns an InvalidationBatchAlreadyExists - // error. - // - // CallerReference is a required field - CallerReference *string `type:"string" required:"true"` - - // The path of the object to invalidate. The path is relative to the distribution - // and must begin with a slash (/). You must enclose each invalidation object - // with the Path element tags. If the path includes non-ASCII characters or - // unsafe characters as defined in RFC 1783 (http://www.ietf.org/rfc/rfc1738.txt), - // URL encode those characters. Do not URL encode any other characters in the - // path, or CloudFront will not invalidate the old version of the updated object. - // - // Paths is a required field - Paths *Paths `type:"structure" required:"true"` -} - -// String returns the string representation -func (s InvalidationBatch) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InvalidationBatch) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *InvalidationBatch) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "InvalidationBatch"} - if s.CallerReference == nil { - invalidParams.Add(request.NewErrParamRequired("CallerReference")) - } - if s.Paths == nil { - invalidParams.Add(request.NewErrParamRequired("Paths")) - } - if s.Paths != nil { - if err := s.Paths.Validate(); err != nil { - invalidParams.AddNested("Paths", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// An invalidation list. -type InvalidationList struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether more invalidation batch requests remain to - // be listed. If your results were truncated, you can make a follow-up pagination - // request using the Marker request parameter to retrieve more invalidation - // batches in the list. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // A complex type that contains one InvalidationSummary element for each invalidation - // batch that was created by the current AWS account. - Items []*InvalidationSummary `locationNameList:"InvalidationSummary" type:"list"` - - // The value you provided for the Marker request parameter. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value you provided for the MaxItems request parameter. - // - // MaxItems is a required field - MaxItems *int64 `type:"integer" required:"true"` - - // If IsTruncated is true, this element is present and contains the value you - // can use for the Marker request parameter to continue listing your invalidation - // batches where they left off. - NextMarker *string `type:"string"` - - // The number of invalidation batches that were created by the current AWS account. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s InvalidationList) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InvalidationList) GoString() string { - return s.String() -} - -// Summary of an invalidation request. -type InvalidationSummary struct { - _ struct{} `type:"structure"` - - // CreateTime is a required field - CreateTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // The unique ID for an invalidation request. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The status of an invalidation request. - // - // Status is a required field - Status *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s InvalidationSummary) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InvalidationSummary) GoString() string { - return s.String() -} - -// A complex type that lists the active CloudFront key pairs, if any, that are -// associated with AwsAccountNumber. -type KeyPairIds struct { - _ struct{} `type:"structure"` - - // A complex type that lists the active CloudFront key pairs, if any, that are - // associated with AwsAccountNumber. - Items []*string `locationNameList:"KeyPairId" type:"list"` - - // The number of active CloudFront key pairs for AwsAccountNumber. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s KeyPairIds) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s KeyPairIds) GoString() string { - return s.String() -} - -// The request to list origin access identities. -type ListCloudFrontOriginAccessIdentitiesInput struct { - _ struct{} `type:"structure"` - - // Use this when paginating results to indicate where to begin in your list - // of origin access identities. The results include identities in the list that - // occur after the marker. To get the next page of results, set the Marker to - // the value of the NextMarker from the current page's response (which is also - // the ID of the last identity on that page). - Marker *string `location:"querystring" locationName:"Marker" type:"string"` - - // The maximum number of origin access identities you want in the response body. - MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` -} - -// String returns the string representation -func (s ListCloudFrontOriginAccessIdentitiesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListCloudFrontOriginAccessIdentitiesInput) GoString() string { - return s.String() -} - -// The returned result of the corresponding request. -type ListCloudFrontOriginAccessIdentitiesOutput struct { - _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityList"` - - // The CloudFrontOriginAccessIdentityList type. - CloudFrontOriginAccessIdentityList *OriginAccessIdentityList `type:"structure"` -} - -// String returns the string representation -func (s ListCloudFrontOriginAccessIdentitiesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListCloudFrontOriginAccessIdentitiesOutput) GoString() string { - return s.String() -} - -// The request to list distributions that are associated with a specified AWS -// WAF web ACL. -type ListDistributionsByWebACLIdInput struct { - _ struct{} `type:"structure"` - - // Use Marker and MaxItems to control pagination of results. If you have more - // than MaxItems distributions that satisfy the request, the response includes - // a NextMarker element. To get the next page of results, submit another request. - // For the value of Marker, specify the value of NextMarker from the last response. - // (For the first request, omit Marker.) - Marker *string `location:"querystring" locationName:"Marker" type:"string"` - - // The maximum number of distributions that you want CloudFront to return in - // the response body. The maximum and default values are both 100. - MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` - - // The Id of the AWS WAF web ACL for which you want to list the associated distributions. - // If you specify "null" for the Id, the request returns a list of the distributions - // that aren't associated with a web ACL. - // - // WebACLId is a required field - WebACLId *string `location:"uri" locationName:"WebACLId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ListDistributionsByWebACLIdInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListDistributionsByWebACLIdInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListDistributionsByWebACLIdInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListDistributionsByWebACLIdInput"} - if s.WebACLId == nil { - invalidParams.Add(request.NewErrParamRequired("WebACLId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The response to a request to list the distributions that are associated with -// a specified AWS WAF web ACL. -type ListDistributionsByWebACLIdOutput struct { - _ struct{} `type:"structure" payload:"DistributionList"` - - // The DistributionList type. - DistributionList *DistributionList `type:"structure"` -} - -// String returns the string representation -func (s ListDistributionsByWebACLIdOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListDistributionsByWebACLIdOutput) GoString() string { - return s.String() -} - -// The request to list your distributions. -type ListDistributionsInput struct { - _ struct{} `type:"structure"` - - // Use Marker and MaxItems to control pagination of results. If you have more - // than MaxItems distributions that satisfy the request, the response includes - // a NextMarker element. To get the next page of results, submit another request. - // For the value of Marker, specify the value of NextMarker from the last response. - // (For the first request, omit Marker.) - Marker *string `location:"querystring" locationName:"Marker" type:"string"` - - // The maximum number of distributions that you want CloudFront to return in - // the response body. The maximum and default values are both 100. - MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` -} - -// String returns the string representation -func (s ListDistributionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListDistributionsInput) GoString() string { - return s.String() -} - -// The returned result of the corresponding request. -type ListDistributionsOutput struct { - _ struct{} `type:"structure" payload:"DistributionList"` - - // The DistributionList type. - DistributionList *DistributionList `type:"structure"` -} - -// String returns the string representation -func (s ListDistributionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListDistributionsOutput) GoString() string { - return s.String() -} - -// The request to list invalidations. -type ListInvalidationsInput struct { - _ struct{} `type:"structure"` - - // The distribution's id. - // - // DistributionId is a required field - DistributionId *string `location:"uri" locationName:"DistributionId" type:"string" required:"true"` - - // Use this parameter when paginating results to indicate where to begin in - // your list of invalidation batches. Because the results are returned in decreasing - // order from most recent to oldest, the most recent results are on the first - // page, the second page will contain earlier results, and so on. To get the - // next page of results, set the Marker to the value of the NextMarker from - // the current page's response. This value is the same as the ID of the last - // invalidation batch on that page. - Marker *string `location:"querystring" locationName:"Marker" type:"string"` - - // The maximum number of invalidation batches you want in the response body. - MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` -} - -// String returns the string representation -func (s ListInvalidationsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListInvalidationsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListInvalidationsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListInvalidationsInput"} - if s.DistributionId == nil { - invalidParams.Add(request.NewErrParamRequired("DistributionId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type ListInvalidationsOutput struct { - _ struct{} `type:"structure" payload:"InvalidationList"` - - // Information about invalidation batches. - InvalidationList *InvalidationList `type:"structure"` -} - -// String returns the string representation -func (s ListInvalidationsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListInvalidationsOutput) GoString() string { - return s.String() -} - -// The request to list your streaming distributions. -type ListStreamingDistributionsInput struct { - _ struct{} `type:"structure"` - - // Use this when paginating results to indicate where to begin in your list - // of streaming distributions. The results include distributions in the list - // that occur after the marker. To get the next page of results, set the Marker - // to the value of the NextMarker from the current page's response (which is - // also the ID of the last distribution on that page). - Marker *string `location:"querystring" locationName:"Marker" type:"string"` - - // The maximum number of streaming distributions you want in the response body. - MaxItems *int64 `location:"querystring" locationName:"MaxItems" type:"integer"` -} - -// String returns the string representation -func (s ListStreamingDistributionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListStreamingDistributionsInput) GoString() string { - return s.String() -} - -// The returned result of the corresponding request. -type ListStreamingDistributionsOutput struct { - _ struct{} `type:"structure" payload:"StreamingDistributionList"` - - // The StreamingDistributionList type. - StreamingDistributionList *StreamingDistributionList `type:"structure"` -} - -// String returns the string representation -func (s ListStreamingDistributionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListStreamingDistributionsOutput) GoString() string { - return s.String() -} - -// The request to list tags for a CloudFront resource. -type ListTagsForResourceInput struct { - _ struct{} `type:"structure"` - - // An ARN of a CloudFront resource. - // - // Resource is a required field - Resource *string `location:"querystring" locationName:"Resource" type:"string" required:"true"` -} - -// String returns the string representation -func (s ListTagsForResourceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForResourceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTagsForResourceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTagsForResourceInput"} - if s.Resource == nil { - invalidParams.Add(request.NewErrParamRequired("Resource")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type ListTagsForResourceOutput struct { - _ struct{} `type:"structure" payload:"Tags"` - - // A complex type that contains zero or more Tag elements. - // - // Tags is a required field - Tags *Tags `type:"structure" required:"true"` -} - -// String returns the string representation -func (s ListTagsForResourceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForResourceOutput) GoString() string { - return s.String() -} - -// A complex type that controls whether access logs are written for the distribution. -type LoggingConfig struct { - _ struct{} `type:"structure"` - - // The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com. - // - // Bucket is a required field - Bucket *string `type:"string" required:"true"` - - // Specifies whether you want CloudFront to save access logs to an Amazon S3 - // bucket. If you do not want to enable logging when you create a distribution - // or if you want to disable logging for an existing distribution, specify false - // for Enabled, and specify empty Bucket and Prefix elements. If you specify - // false for Enabled but you specify values for Bucket, prefix and IncludeCookies, - // the values are automatically deleted. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // Specifies whether you want CloudFront to include cookies in access logs, - // specify true for IncludeCookies. If you choose to include cookies in logs, - // CloudFront logs all cookies regardless of how you configure the cache behaviors - // for this distribution. If you do not want to include cookies when you create - // a distribution or if you want to disable include cookies for an existing - // distribution, specify false for IncludeCookies. - // - // IncludeCookies is a required field - IncludeCookies *bool `type:"boolean" required:"true"` - - // An optional string that you want CloudFront to prefix to the access log filenames - // for this distribution, for example, myprefix/. If you want to enable logging, - // but you do not want to specify a prefix, you still must include an empty - // Prefix element in the Logging element. - // - // Prefix is a required field - Prefix *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s LoggingConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LoggingConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *LoggingConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "LoggingConfig"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Enabled == nil { - invalidParams.Add(request.NewErrParamRequired("Enabled")) - } - if s.IncludeCookies == nil { - invalidParams.Add(request.NewErrParamRequired("IncludeCookies")) - } - if s.Prefix == nil { - invalidParams.Add(request.NewErrParamRequired("Prefix")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that describes the Amazon S3 bucket or the HTTP server (for -// example, a web server) from which CloudFront gets your files.You must create -// at least one origin. -type Origin struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about the custom headers associated - // with this Origin. - CustomHeaders *CustomHeaders `type:"structure"` - - // A complex type that contains information about a custom origin. If the origin - // is an Amazon S3 bucket, use the S3OriginConfig element instead. - CustomOriginConfig *CustomOriginConfig `type:"structure"` - - // Amazon S3 origins: The DNS name of the Amazon S3 bucket from which you want - // CloudFront to get objects for this origin, for example, myawsbucket.s3.amazonaws.com. - // Custom origins: The DNS domain name for the HTTP server from which you want - // CloudFront to get objects for this origin, for example, www.example.com. - // - // DomainName is a required field - DomainName *string `type:"string" required:"true"` - - // A unique identifier for the origin. The value of Id must be unique within - // the distribution. You use the value of Id when you create a cache behavior. - // The Id identifies the origin that CloudFront routes a request to when the - // request matches the path pattern for that cache behavior. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // An optional element that causes CloudFront to request your content from a - // directory in your Amazon S3 bucket or your custom origin. When you include - // the OriginPath element, specify the directory name, beginning with a /. CloudFront - // appends the directory name to the value of DomainName. - OriginPath *string `type:"string"` - - // A complex type that contains information about the Amazon S3 origin. If the - // origin is a custom origin, use the CustomOriginConfig element instead. - S3OriginConfig *S3OriginConfig `type:"structure"` -} - -// String returns the string representation -func (s Origin) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Origin) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Origin) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Origin"} - if s.DomainName == nil { - invalidParams.Add(request.NewErrParamRequired("DomainName")) - } - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.CustomHeaders != nil { - if err := s.CustomHeaders.Validate(); err != nil { - invalidParams.AddNested("CustomHeaders", err.(request.ErrInvalidParams)) - } - } - if s.CustomOriginConfig != nil { - if err := s.CustomOriginConfig.Validate(); err != nil { - invalidParams.AddNested("CustomOriginConfig", err.(request.ErrInvalidParams)) - } - } - if s.S3OriginConfig != nil { - if err := s.S3OriginConfig.Validate(); err != nil { - invalidParams.AddNested("S3OriginConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// CloudFront origin access identity. -type OriginAccessIdentity struct { - _ struct{} `type:"structure"` - - // The current configuration information for the identity. - CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `type:"structure"` - - // The ID for the origin access identity. For example: E74FTE3AJFJ256A. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The Amazon S3 canonical user ID for the origin access identity, which you - // use when giving the origin access identity read permission to an object in - // Amazon S3. - // - // S3CanonicalUserId is a required field - S3CanonicalUserId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s OriginAccessIdentity) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s OriginAccessIdentity) GoString() string { - return s.String() -} - -// Origin access identity configuration. -type OriginAccessIdentityConfig struct { - _ struct{} `type:"structure"` - - // A unique number that ensures the request can't be replayed. If the CallerReference - // is new (no matter the content of the CloudFrontOriginAccessIdentityConfig - // object), a new origin access identity is created. If the CallerReference - // is a value you already sent in a previous request to create an identity, - // and the content of the CloudFrontOriginAccessIdentityConfig is identical - // to the original request (ignoring white space), the response includes the - // same information returned to the original request. If the CallerReference - // is a value you already sent in a previous request to create an identity but - // the content of the CloudFrontOriginAccessIdentityConfig is different from - // the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists - // error. - // - // CallerReference is a required field - CallerReference *string `type:"string" required:"true"` - - // Any comments you want to include about the origin access identity. - // - // Comment is a required field - Comment *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s OriginAccessIdentityConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s OriginAccessIdentityConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *OriginAccessIdentityConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "OriginAccessIdentityConfig"} - if s.CallerReference == nil { - invalidParams.Add(request.NewErrParamRequired("CallerReference")) - } - if s.Comment == nil { - invalidParams.Add(request.NewErrParamRequired("Comment")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The CloudFrontOriginAccessIdentityList type. -type OriginAccessIdentityList struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether more origin access identities remain to be - // listed. If your results were truncated, you can make a follow-up pagination - // request using the Marker request parameter to retrieve more items in the - // list. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // A complex type that contains one CloudFrontOriginAccessIdentitySummary element - // for each origin access identity that was created by the current AWS account. - Items []*OriginAccessIdentitySummary `locationNameList:"CloudFrontOriginAccessIdentitySummary" type:"list"` - - // The value you provided for the Marker request parameter. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value you provided for the MaxItems request parameter. - // - // MaxItems is a required field - MaxItems *int64 `type:"integer" required:"true"` - - // If IsTruncated is true, this element is present and contains the value you - // can use for the Marker request parameter to continue listing your origin - // access identities where they left off. - NextMarker *string `type:"string"` - - // The number of CloudFront origin access identities that were created by the - // current AWS account. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s OriginAccessIdentityList) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s OriginAccessIdentityList) GoString() string { - return s.String() -} - -// Summary of the information about a CloudFront origin access identity. -type OriginAccessIdentitySummary struct { - _ struct{} `type:"structure"` - - // The comment for this origin access identity, as originally specified when - // created. - // - // Comment is a required field - Comment *string `type:"string" required:"true"` - - // The ID for the origin access identity. For example: E74FTE3AJFJ256A. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The Amazon S3 canonical user ID for the origin access identity, which you - // use when giving the origin access identity read permission to an object in - // Amazon S3. - // - // S3CanonicalUserId is a required field - S3CanonicalUserId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s OriginAccessIdentitySummary) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s OriginAccessIdentitySummary) GoString() string { - return s.String() -} - -// A complex type that contains information related to a Header -type OriginCustomHeader struct { - _ struct{} `type:"structure"` - - // The header's name. - // - // HeaderName is a required field - HeaderName *string `type:"string" required:"true"` - - // The header's value. - // - // HeaderValue is a required field - HeaderValue *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s OriginCustomHeader) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s OriginCustomHeader) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *OriginCustomHeader) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "OriginCustomHeader"} - if s.HeaderName == nil { - invalidParams.Add(request.NewErrParamRequired("HeaderName")) - } - if s.HeaderValue == nil { - invalidParams.Add(request.NewErrParamRequired("HeaderValue")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the list of SSL/TLS protocols that you want -// CloudFront to use when communicating with your origin over HTTPS. -type OriginSslProtocols struct { - _ struct{} `type:"structure"` - - // A complex type that contains one SslProtocol element for each SSL/TLS protocol - // that you want to allow CloudFront to use when establishing an HTTPS connection - // with this origin. - // - // Items is a required field - Items []*string `locationNameList:"SslProtocol" type:"list" required:"true"` - - // The number of SSL/TLS protocols that you want to allow CloudFront to use - // when establishing an HTTPS connection with this origin. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s OriginSslProtocols) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s OriginSslProtocols) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *OriginSslProtocols) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "OriginSslProtocols"} - if s.Items == nil { - invalidParams.Add(request.NewErrParamRequired("Items")) - } - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about origins for this distribution. -type Origins struct { - _ struct{} `type:"structure"` - - // A complex type that contains origins for this distribution. - Items []*Origin `locationNameList:"Origin" min:"1" type:"list"` - - // The number of origins for this distribution. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s Origins) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Origins) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Origins) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Origins"} - if s.Items != nil && len(s.Items) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Items", 1)) - } - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - if s.Items != nil { - for i, v := range s.Items { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Items", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the objects that you want -// to invalidate. -type Paths struct { - _ struct{} `type:"structure"` - - // A complex type that contains a list of the objects that you want to invalidate. - Items []*string `locationNameList:"Path" type:"list"` - - // The number of objects that you want to invalidate. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s Paths) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Paths) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Paths) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Paths"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type QueryStringCacheKeys struct { - _ struct{} `type:"structure"` - - // Optional: A list that contains the query string parameters that you want - // CloudFront to use as a basis for caching for this cache behavior. If Quantity - // is 0, you can omit Items. - Items []*string `locationNameList:"Name" type:"list"` - - // The number of whitelisted query string parameters for this cache behavior. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s QueryStringCacheKeys) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s QueryStringCacheKeys) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *QueryStringCacheKeys) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "QueryStringCacheKeys"} - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that identifies ways in which you want to restrict distribution -// of your content. -type Restrictions struct { - _ struct{} `type:"structure"` - - // A complex type that controls the countries in which your content is distributed. - // For more information about geo restriction, go to Customizing Error Responses - // in the Amazon CloudFront Developer Guide. CloudFront determines the location - // of your users using MaxMind GeoIP databases. For information about the accuracy - // of these databases, see How accurate are your GeoIP databases? on the MaxMind - // website. - // - // GeoRestriction is a required field - GeoRestriction *GeoRestriction `type:"structure" required:"true"` -} - -// String returns the string representation -func (s Restrictions) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Restrictions) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Restrictions) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Restrictions"} - if s.GeoRestriction == nil { - invalidParams.Add(request.NewErrParamRequired("GeoRestriction")) - } - if s.GeoRestriction != nil { - if err := s.GeoRestriction.Validate(); err != nil { - invalidParams.AddNested("GeoRestriction", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the Amazon S3 bucket from -// which you want CloudFront to get your media files for distribution. -type S3Origin struct { - _ struct{} `type:"structure"` - - // The DNS name of the S3 origin. - // - // DomainName is a required field - DomainName *string `type:"string" required:"true"` - - // Your S3 origin's origin access identity. - // - // OriginAccessIdentity is a required field - OriginAccessIdentity *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s S3Origin) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s S3Origin) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *S3Origin) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "S3Origin"} - if s.DomainName == nil { - invalidParams.Add(request.NewErrParamRequired("DomainName")) - } - if s.OriginAccessIdentity == nil { - invalidParams.Add(request.NewErrParamRequired("OriginAccessIdentity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the Amazon S3 origin. If the -// origin is a custom origin, use the CustomOriginConfig element instead. -type S3OriginConfig struct { - _ struct{} `type:"structure"` - - // The CloudFront origin access identity to associate with the origin. Use an - // origin access identity to configure the origin so that end users can only - // access objects in an Amazon S3 bucket through CloudFront. If you want end - // users to be able to access objects using either the CloudFront URL or the - // Amazon S3 URL, specify an empty OriginAccessIdentity element. To delete the - // origin access identity from an existing distribution, update the distribution - // configuration and include an empty OriginAccessIdentity element. To replace - // the origin access identity, update the distribution configuration and specify - // the new origin access identity. Use the format origin-access-identity/cloudfront/Id - // where Id is the value that CloudFront returned in the Id element when you - // created the origin access identity. - // - // OriginAccessIdentity is a required field - OriginAccessIdentity *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s S3OriginConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s S3OriginConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *S3OriginConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "S3OriginConfig"} - if s.OriginAccessIdentity == nil { - invalidParams.Add(request.NewErrParamRequired("OriginAccessIdentity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that lists the AWS accounts that were included in the TrustedSigners -// complex type, as well as their active CloudFront key pair IDs, if any. -type Signer struct { - _ struct{} `type:"structure"` - - // Specifies an AWS account that can create signed URLs. Values: self, which - // indicates that the AWS account that was used to create the distribution can - // created signed URLs, or an AWS account number. Omit the dashes in the account - // number. - AwsAccountNumber *string `type:"string"` - - // A complex type that lists the active CloudFront key pairs, if any, that are - // associated with AwsAccountNumber. - KeyPairIds *KeyPairIds `type:"structure"` -} - -// String returns the string representation -func (s Signer) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Signer) GoString() string { - return s.String() -} - -// A streaming distribution. -type StreamingDistribution struct { - _ struct{} `type:"structure"` - - // The ARN (Amazon Resource Name) for the streaming distribution. For example: - // arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5, - // where 123456789012 is your AWS account Id. - // - // ARN is a required field - ARN *string `type:"string" required:"true"` - - // CloudFront automatically adds this element to the response only if you've - // set up the distribution to serve private content with signed URLs. The element - // lists the key pair IDs that CloudFront is aware of for each trusted signer. - // The Signer child element lists the AWS account number of the trusted signer - // (or an empty Self element if the signer is you). The Signer element also - // includes the IDs of any active key pairs associated with the trusted signer's - // AWS account. If no KeyPairId element appears for a Signer, that signer can't - // create working signed URLs. - // - // ActiveTrustedSigners is a required field - ActiveTrustedSigners *ActiveTrustedSigners `type:"structure" required:"true"` - - // The domain name corresponding to the streaming distribution. For example: - // s5c39gqb8ow64r.cloudfront.net. - // - // DomainName is a required field - DomainName *string `type:"string" required:"true"` - - // The identifier for the streaming distribution. For example: EGTXBD79H29TRA8. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The date and time the distribution was last modified. - LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // The current status of the streaming distribution. When the status is Deployed, - // the distribution's information is fully propagated throughout the Amazon - // CloudFront system. - // - // Status is a required field - Status *string `type:"string" required:"true"` - - // The current configuration information for the streaming distribution. - // - // StreamingDistributionConfig is a required field - StreamingDistributionConfig *StreamingDistributionConfig `type:"structure" required:"true"` -} - -// String returns the string representation -func (s StreamingDistribution) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamingDistribution) GoString() string { - return s.String() -} - -// The configuration for the streaming distribution. -type StreamingDistributionConfig struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about CNAMEs (alternate domain names), - // if any, for this streaming distribution. - Aliases *Aliases `type:"structure"` - - // A unique number that ensures the request can't be replayed. If the CallerReference - // is new (no matter the content of the StreamingDistributionConfig object), - // a new streaming distribution is created. If the CallerReference is a value - // you already sent in a previous request to create a streaming distribution, - // and the content of the StreamingDistributionConfig is identical to the original - // request (ignoring white space), the response includes the same information - // returned to the original request. If the CallerReference is a value you already - // sent in a previous request to create a streaming distribution but the content - // of the StreamingDistributionConfig is different from the original request, - // CloudFront returns a DistributionAlreadyExists error. - // - // CallerReference is a required field - CallerReference *string `type:"string" required:"true"` - - // Any comments you want to include about the streaming distribution. - // - // Comment is a required field - Comment *string `type:"string" required:"true"` - - // Whether the streaming distribution is enabled to accept end user requests - // for content. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // A complex type that controls whether access logs are written for the streaming - // distribution. - Logging *StreamingLoggingConfig `type:"structure"` - - // A complex type that contains information about price class for this streaming - // distribution. - PriceClass *string `type:"string" enum:"PriceClass"` - - // A complex type that contains information about the Amazon S3 bucket from - // which you want CloudFront to get your media files for distribution. - // - // S3Origin is a required field - S3Origin *S3Origin `type:"structure" required:"true"` - - // A complex type that specifies the AWS accounts, if any, that you want to - // allow to create signed URLs for private content. If you want to require signed - // URLs in requests for objects in the target origin that match the PathPattern - // for this cache behavior, specify true for Enabled, and specify the applicable - // values for Quantity and Items. For more information, go to Using a Signed - // URL to Serve Private Content in the Amazon CloudFront Developer Guide. If - // you don't want to require signed URLs in requests for objects that match - // PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To - // add, change, or remove one or more trusted signers, change Enabled to true - // (if it's currently false), change Quantity as applicable, and specify all - // of the trusted signers that you want to include in the updated distribution. - // - // TrustedSigners is a required field - TrustedSigners *TrustedSigners `type:"structure" required:"true"` -} - -// String returns the string representation -func (s StreamingDistributionConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamingDistributionConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *StreamingDistributionConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "StreamingDistributionConfig"} - if s.CallerReference == nil { - invalidParams.Add(request.NewErrParamRequired("CallerReference")) - } - if s.Comment == nil { - invalidParams.Add(request.NewErrParamRequired("Comment")) - } - if s.Enabled == nil { - invalidParams.Add(request.NewErrParamRequired("Enabled")) - } - if s.S3Origin == nil { - invalidParams.Add(request.NewErrParamRequired("S3Origin")) - } - if s.TrustedSigners == nil { - invalidParams.Add(request.NewErrParamRequired("TrustedSigners")) - } - if s.Aliases != nil { - if err := s.Aliases.Validate(); err != nil { - invalidParams.AddNested("Aliases", err.(request.ErrInvalidParams)) - } - } - if s.Logging != nil { - if err := s.Logging.Validate(); err != nil { - invalidParams.AddNested("Logging", err.(request.ErrInvalidParams)) - } - } - if s.S3Origin != nil { - if err := s.S3Origin.Validate(); err != nil { - invalidParams.AddNested("S3Origin", err.(request.ErrInvalidParams)) - } - } - if s.TrustedSigners != nil { - if err := s.TrustedSigners.Validate(); err != nil { - invalidParams.AddNested("TrustedSigners", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A streaming distribution Configuration and a list of tags to be associated -// with the streaming distribution. -type StreamingDistributionConfigWithTags struct { - _ struct{} `type:"structure"` - - // A streaming distribution Configuration. - // - // StreamingDistributionConfig is a required field - StreamingDistributionConfig *StreamingDistributionConfig `type:"structure" required:"true"` - - // A complex type that contains zero or more Tag elements. - // - // Tags is a required field - Tags *Tags `type:"structure" required:"true"` -} - -// String returns the string representation -func (s StreamingDistributionConfigWithTags) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamingDistributionConfigWithTags) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *StreamingDistributionConfigWithTags) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "StreamingDistributionConfigWithTags"} - if s.StreamingDistributionConfig == nil { - invalidParams.Add(request.NewErrParamRequired("StreamingDistributionConfig")) - } - if s.Tags == nil { - invalidParams.Add(request.NewErrParamRequired("Tags")) - } - if s.StreamingDistributionConfig != nil { - if err := s.StreamingDistributionConfig.Validate(); err != nil { - invalidParams.AddNested("StreamingDistributionConfig", err.(request.ErrInvalidParams)) - } - } - if s.Tags != nil { - if err := s.Tags.Validate(); err != nil { - invalidParams.AddNested("Tags", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A streaming distribution list. -type StreamingDistributionList struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether more streaming distributions remain to be listed. - // If your results were truncated, you can make a follow-up pagination request - // using the Marker request parameter to retrieve more distributions in the - // list. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // A complex type that contains one StreamingDistributionSummary element for - // each distribution that was created by the current AWS account. - Items []*StreamingDistributionSummary `locationNameList:"StreamingDistributionSummary" type:"list"` - - // The value you provided for the Marker request parameter. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value you provided for the MaxItems request parameter. - // - // MaxItems is a required field - MaxItems *int64 `type:"integer" required:"true"` - - // If IsTruncated is true, this element is present and contains the value you - // can use for the Marker request parameter to continue listing your streaming - // distributions where they left off. - NextMarker *string `type:"string"` - - // The number of streaming distributions that were created by the current AWS - // account. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s StreamingDistributionList) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamingDistributionList) GoString() string { - return s.String() -} - -// A summary of the information for an Amazon CloudFront streaming distribution. -type StreamingDistributionSummary struct { - _ struct{} `type:"structure"` - - // The ARN (Amazon Resource Name) for the streaming distribution. For example: - // arn:aws:cloudfront::123456789012:streaming-distribution/EDFDVBD632BHDS5, - // where 123456789012 is your AWS account Id. - // - // ARN is a required field - ARN *string `type:"string" required:"true"` - - // A complex type that contains information about CNAMEs (alternate domain names), - // if any, for this streaming distribution. - // - // Aliases is a required field - Aliases *Aliases `type:"structure" required:"true"` - - // The comment originally specified when this distribution was created. - // - // Comment is a required field - Comment *string `type:"string" required:"true"` - - // The domain name corresponding to the distribution. For example: d604721fxaaqy9.cloudfront.net. - // - // DomainName is a required field - DomainName *string `type:"string" required:"true"` - - // Whether the distribution is enabled to accept end user requests for content. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // The identifier for the distribution. For example: EDFDVBD632BHDS5. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The date and time the distribution was last modified. - // - // LastModifiedTime is a required field - LastModifiedTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // PriceClass is a required field - PriceClass *string `type:"string" required:"true" enum:"PriceClass"` - - // A complex type that contains information about the Amazon S3 bucket from - // which you want CloudFront to get your media files for distribution. - // - // S3Origin is a required field - S3Origin *S3Origin `type:"structure" required:"true"` - - // Indicates the current status of the distribution. When the status is Deployed, - // the distribution's information is fully propagated throughout the Amazon - // CloudFront system. - // - // Status is a required field - Status *string `type:"string" required:"true"` - - // A complex type that specifies the AWS accounts, if any, that you want to - // allow to create signed URLs for private content. If you want to require signed - // URLs in requests for objects in the target origin that match the PathPattern - // for this cache behavior, specify true for Enabled, and specify the applicable - // values for Quantity and Items. For more information, go to Using a Signed - // URL to Serve Private Content in the Amazon CloudFront Developer Guide. If - // you don't want to require signed URLs in requests for objects that match - // PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To - // add, change, or remove one or more trusted signers, change Enabled to true - // (if it's currently false), change Quantity as applicable, and specify all - // of the trusted signers that you want to include in the updated distribution. - // - // TrustedSigners is a required field - TrustedSigners *TrustedSigners `type:"structure" required:"true"` -} - -// String returns the string representation -func (s StreamingDistributionSummary) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamingDistributionSummary) GoString() string { - return s.String() -} - -// A complex type that controls whether access logs are written for this streaming -// distribution. -type StreamingLoggingConfig struct { - _ struct{} `type:"structure"` - - // The Amazon S3 bucket to store the access logs in, for example, myawslogbucket.s3.amazonaws.com. - // - // Bucket is a required field - Bucket *string `type:"string" required:"true"` - - // Specifies whether you want CloudFront to save access logs to an Amazon S3 - // bucket. If you do not want to enable logging when you create a streaming - // distribution or if you want to disable logging for an existing streaming - // distribution, specify false for Enabled, and specify empty Bucket and Prefix - // elements. If you specify false for Enabled but you specify values for Bucket - // and Prefix, the values are automatically deleted. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // An optional string that you want CloudFront to prefix to the access log filenames - // for this streaming distribution, for example, myprefix/. If you want to enable - // logging, but you do not want to specify a prefix, you still must include - // an empty Prefix element in the Logging element. - // - // Prefix is a required field - Prefix *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s StreamingLoggingConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamingLoggingConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *StreamingLoggingConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "StreamingLoggingConfig"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Enabled == nil { - invalidParams.Add(request.NewErrParamRequired("Enabled")) - } - if s.Prefix == nil { - invalidParams.Add(request.NewErrParamRequired("Prefix")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains Tag key and Tag value. -type Tag struct { - _ struct{} `type:"structure"` - - // A string that contains Tag key. The string length should be between 1 and - // 128 characters. Valid characters include a-z, A-Z, 0-9, space, and the special - // characters _ - . : / = + @. - // - // Key is a required field - Key *string `min:"1" type:"string" required:"true"` - - // A string that contains an optional Tag value. The string length should be - // between 0 and 256 characters. Valid characters include a-z, A-Z, 0-9, space, - // and the special characters _ - . : / = + @. - Value *string `type:"string"` -} - -// String returns the string representation -func (s Tag) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Tag) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Tag) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Tag"} - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains zero or more Tag elements. -type TagKeys struct { - _ struct{} `type:"structure"` - - // A complex type that contains Tag key elements - Items []*string `locationNameList:"Key" type:"list"` -} - -// String returns the string representation -func (s TagKeys) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TagKeys) GoString() string { - return s.String() -} - -// The request to add tags to a CloudFront resource. -type TagResourceInput struct { - _ struct{} `type:"structure" payload:"Tags"` - - // An ARN of a CloudFront resource. - // - // Resource is a required field - Resource *string `location:"querystring" locationName:"Resource" type:"string" required:"true"` - - // A complex type that contains zero or more Tag elements. - // - // Tags is a required field - Tags *Tags `locationName:"Tags" type:"structure" required:"true"` -} - -// String returns the string representation -func (s TagResourceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TagResourceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TagResourceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TagResourceInput"} - if s.Resource == nil { - invalidParams.Add(request.NewErrParamRequired("Resource")) - } - if s.Tags == nil { - invalidParams.Add(request.NewErrParamRequired("Tags")) - } - if s.Tags != nil { - if err := s.Tags.Validate(); err != nil { - invalidParams.AddNested("Tags", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type TagResourceOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s TagResourceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TagResourceOutput) GoString() string { - return s.String() -} - -// A complex type that contains zero or more Tag elements. -type Tags struct { - _ struct{} `type:"structure"` - - // A complex type that contains Tag elements - Items []*Tag `locationNameList:"Tag" type:"list"` -} - -// String returns the string representation -func (s Tags) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Tags) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Tags) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Tags"} - if s.Items != nil { - for i, v := range s.Items { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Items", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that specifies the AWS accounts, if any, that you want to -// allow to create signed URLs for private content. If you want to require signed -// URLs in requests for objects in the target origin that match the PathPattern -// for this cache behavior, specify true for Enabled, and specify the applicable -// values for Quantity and Items. For more information, go to Using a Signed -// URL to Serve Private Content in the Amazon CloudFront Developer Guide. If -// you don't want to require signed URLs in requests for objects that match -// PathPattern, specify false for Enabled and 0 for Quantity. Omit Items. To -// add, change, or remove one or more trusted signers, change Enabled to true -// (if it's currently false), change Quantity as applicable, and specify all -// of the trusted signers that you want to include in the updated distribution. -type TrustedSigners struct { - _ struct{} `type:"structure"` - - // Specifies whether you want to require end users to use signed URLs to access - // the files specified by PathPattern and TargetOriginId. - // - // Enabled is a required field - Enabled *bool `type:"boolean" required:"true"` - - // Optional: A complex type that contains trusted signers for this cache behavior. - // If Quantity is 0, you can omit Items. - Items []*string `locationNameList:"AwsAccountNumber" type:"list"` - - // The number of trusted signers for this cache behavior. - // - // Quantity is a required field - Quantity *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s TrustedSigners) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TrustedSigners) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TrustedSigners) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TrustedSigners"} - if s.Enabled == nil { - invalidParams.Add(request.NewErrParamRequired("Enabled")) - } - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The request to remove tags from a CloudFront resource. -type UntagResourceInput struct { - _ struct{} `type:"structure" payload:"TagKeys"` - - // An ARN of a CloudFront resource. - // - // Resource is a required field - Resource *string `location:"querystring" locationName:"Resource" type:"string" required:"true"` - - // A complex type that contains zero or more Tag key elements. - // - // TagKeys is a required field - TagKeys *TagKeys `locationName:"TagKeys" type:"structure" required:"true"` -} - -// String returns the string representation -func (s UntagResourceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UntagResourceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UntagResourceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UntagResourceInput"} - if s.Resource == nil { - invalidParams.Add(request.NewErrParamRequired("Resource")) - } - if s.TagKeys == nil { - invalidParams.Add(request.NewErrParamRequired("TagKeys")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type UntagResourceOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s UntagResourceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UntagResourceOutput) GoString() string { - return s.String() -} - -// The request to update an origin access identity. -type UpdateCloudFrontOriginAccessIdentityInput struct { - _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentityConfig"` - - // The identity's configuration information. - // - // CloudFrontOriginAccessIdentityConfig is a required field - CloudFrontOriginAccessIdentityConfig *OriginAccessIdentityConfig `locationName:"CloudFrontOriginAccessIdentityConfig" type:"structure" required:"true"` - - // The identity's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The value of the ETag header you received when retrieving the identity's - // configuration. For example: E2QWRUHAPOMQZL. - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` -} - -// String returns the string representation -func (s UpdateCloudFrontOriginAccessIdentityInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateCloudFrontOriginAccessIdentityInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateCloudFrontOriginAccessIdentityInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateCloudFrontOriginAccessIdentityInput"} - if s.CloudFrontOriginAccessIdentityConfig == nil { - invalidParams.Add(request.NewErrParamRequired("CloudFrontOriginAccessIdentityConfig")) - } - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.CloudFrontOriginAccessIdentityConfig != nil { - if err := s.CloudFrontOriginAccessIdentityConfig.Validate(); err != nil { - invalidParams.AddNested("CloudFrontOriginAccessIdentityConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type UpdateCloudFrontOriginAccessIdentityOutput struct { - _ struct{} `type:"structure" payload:"CloudFrontOriginAccessIdentity"` - - // The origin access identity's information. - CloudFrontOriginAccessIdentity *OriginAccessIdentity `type:"structure"` - - // The current version of the configuration. For example: E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` -} - -// String returns the string representation -func (s UpdateCloudFrontOriginAccessIdentityOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateCloudFrontOriginAccessIdentityOutput) GoString() string { - return s.String() -} - -// The request to update a distribution. -type UpdateDistributionInput struct { - _ struct{} `type:"structure" payload:"DistributionConfig"` - - // The distribution's configuration information. - // - // DistributionConfig is a required field - DistributionConfig *DistributionConfig `locationName:"DistributionConfig" type:"structure" required:"true"` - - // The distribution's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The value of the ETag header you received when retrieving the distribution's - // configuration. For example: E2QWRUHAPOMQZL. - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` -} - -// String returns the string representation -func (s UpdateDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateDistributionInput"} - if s.DistributionConfig == nil { - invalidParams.Add(request.NewErrParamRequired("DistributionConfig")) - } - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.DistributionConfig != nil { - if err := s.DistributionConfig.Validate(); err != nil { - invalidParams.AddNested("DistributionConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type UpdateDistributionOutput struct { - _ struct{} `type:"structure" payload:"Distribution"` - - // The distribution's information. - Distribution *Distribution `type:"structure"` - - // The current version of the configuration. For example: E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` -} - -// String returns the string representation -func (s UpdateDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateDistributionOutput) GoString() string { - return s.String() -} - -// The request to update a streaming distribution. -type UpdateStreamingDistributionInput struct { - _ struct{} `type:"structure" payload:"StreamingDistributionConfig"` - - // The streaming distribution's id. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The value of the ETag header you received when retrieving the streaming distribution's - // configuration. For example: E2QWRUHAPOMQZL. - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - - // The streaming distribution's configuration information. - // - // StreamingDistributionConfig is a required field - StreamingDistributionConfig *StreamingDistributionConfig `locationName:"StreamingDistributionConfig" type:"structure" required:"true"` -} - -// String returns the string representation -func (s UpdateStreamingDistributionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateStreamingDistributionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateStreamingDistributionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateStreamingDistributionInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.StreamingDistributionConfig == nil { - invalidParams.Add(request.NewErrParamRequired("StreamingDistributionConfig")) - } - if s.StreamingDistributionConfig != nil { - if err := s.StreamingDistributionConfig.Validate(); err != nil { - invalidParams.AddNested("StreamingDistributionConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The returned result of the corresponding request. -type UpdateStreamingDistributionOutput struct { - _ struct{} `type:"structure" payload:"StreamingDistribution"` - - // The current version of the configuration. For example: E2QWRUHAPOMQZL. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // The streaming distribution's information. - StreamingDistribution *StreamingDistribution `type:"structure"` -} - -// String returns the string representation -func (s UpdateStreamingDistributionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateStreamingDistributionOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about viewer certificates for this -// distribution. -type ViewerCertificate struct { - _ struct{} `type:"structure"` - - // If you want viewers to use HTTPS to request your objects and you're using - // an alternate domain name in your object URLs (for example, https://example.com/logo.jpg), - // specify the ACM certificate ARN of the custom viewer certificate for this - // distribution. Specify either this value, IAMCertificateId, or CloudFrontDefaultCertificate. - ACMCertificateArn *string `type:"string"` - - // Note: this field is deprecated. Please use one of [ACMCertificateArn, IAMCertificateId, - // CloudFrontDefaultCertificate]. - Certificate *string `deprecated:"true" type:"string"` - - // Note: this field is deprecated. Please use one of [ACMCertificateArn, IAMCertificateId, - // CloudFrontDefaultCertificate]. - CertificateSource *string `deprecated:"true" type:"string" enum:"CertificateSource"` - - // If you want viewers to use HTTPS to request your objects and you're using - // the CloudFront domain name of your distribution in your object URLs (for - // example, https://d111111abcdef8.cloudfront.net/logo.jpg), set to true. Omit - // this value if you are setting an ACMCertificateArn or IAMCertificateId. - CloudFrontDefaultCertificate *bool `type:"boolean"` - - // If you want viewers to use HTTPS to request your objects and you're using - // an alternate domain name in your object URLs (for example, https://example.com/logo.jpg), - // specify the IAM certificate identifier of the custom viewer certificate for - // this distribution. Specify either this value, ACMCertificateArn, or CloudFrontDefaultCertificate. - IAMCertificateId *string `type:"string"` - - // Specify the minimum version of the SSL protocol that you want CloudFront - // to use, SSLv3 or TLSv1, for HTTPS connections. CloudFront will serve your - // objects only to browsers or devices that support at least the SSL version - // that you specify. The TLSv1 protocol is more secure, so we recommend that - // you specify SSLv3 only if your users are using browsers or devices that don't - // support TLSv1. If you're using a custom certificate (if you specify a value - // for IAMCertificateId) and if you're using dedicated IP (if you specify vip - // for SSLSupportMethod), you can choose SSLv3 or TLSv1 as the MinimumProtocolVersion. - // If you're using a custom certificate (if you specify a value for IAMCertificateId) - // and if you're using SNI (if you specify sni-only for SSLSupportMethod), you - // must specify TLSv1 for MinimumProtocolVersion. - MinimumProtocolVersion *string `type:"string" enum:"MinimumProtocolVersion"` - - // If you specify a value for IAMCertificateId, you must also specify how you - // want CloudFront to serve HTTPS requests. Valid values are vip and sni-only. - // If you specify vip, CloudFront uses dedicated IP addresses for your content - // and can respond to HTTPS requests from any viewer. However, you must request - // permission to use this feature, and you incur additional monthly charges. - // If you specify sni-only, CloudFront can only respond to HTTPS requests from - // viewers that support Server Name Indication (SNI). All modern browsers support - // SNI, but some browsers still in use don't support SNI. Do not specify a value - // for SSLSupportMethod if you specified true for CloudFrontDefaultCertificate. - SSLSupportMethod *string `type:"string" enum:"SSLSupportMethod"` -} - -// String returns the string representation -func (s ViewerCertificate) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ViewerCertificate) GoString() string { - return s.String() -} - -const ( - // CertificateSourceCloudfront is a CertificateSource enum value - CertificateSourceCloudfront = "cloudfront" - - // CertificateSourceIam is a CertificateSource enum value - CertificateSourceIam = "iam" - - // CertificateSourceAcm is a CertificateSource enum value - CertificateSourceAcm = "acm" -) - -const ( - // GeoRestrictionTypeBlacklist is a GeoRestrictionType enum value - GeoRestrictionTypeBlacklist = "blacklist" - - // GeoRestrictionTypeWhitelist is a GeoRestrictionType enum value - GeoRestrictionTypeWhitelist = "whitelist" - - // GeoRestrictionTypeNone is a GeoRestrictionType enum value - GeoRestrictionTypeNone = "none" -) - -const ( - // HttpVersionHttp11 is a HttpVersion enum value - HttpVersionHttp11 = "http1.1" - - // HttpVersionHttp2 is a HttpVersion enum value - HttpVersionHttp2 = "http2" -) - -const ( - // ItemSelectionNone is a ItemSelection enum value - ItemSelectionNone = "none" - - // ItemSelectionWhitelist is a ItemSelection enum value - ItemSelectionWhitelist = "whitelist" - - // ItemSelectionAll is a ItemSelection enum value - ItemSelectionAll = "all" -) - -const ( - // MethodGet is a Method enum value - MethodGet = "GET" - - // MethodHead is a Method enum value - MethodHead = "HEAD" - - // MethodPost is a Method enum value - MethodPost = "POST" - - // MethodPut is a Method enum value - MethodPut = "PUT" - - // MethodPatch is a Method enum value - MethodPatch = "PATCH" - - // MethodOptions is a Method enum value - MethodOptions = "OPTIONS" - - // MethodDelete is a Method enum value - MethodDelete = "DELETE" -) - -const ( - // MinimumProtocolVersionSslv3 is a MinimumProtocolVersion enum value - MinimumProtocolVersionSslv3 = "SSLv3" - - // MinimumProtocolVersionTlsv1 is a MinimumProtocolVersion enum value - MinimumProtocolVersionTlsv1 = "TLSv1" -) - -const ( - // OriginProtocolPolicyHttpOnly is a OriginProtocolPolicy enum value - OriginProtocolPolicyHttpOnly = "http-only" - - // OriginProtocolPolicyMatchViewer is a OriginProtocolPolicy enum value - OriginProtocolPolicyMatchViewer = "match-viewer" - - // OriginProtocolPolicyHttpsOnly is a OriginProtocolPolicy enum value - OriginProtocolPolicyHttpsOnly = "https-only" -) - -const ( - // PriceClassPriceClass100 is a PriceClass enum value - PriceClassPriceClass100 = "PriceClass_100" - - // PriceClassPriceClass200 is a PriceClass enum value - PriceClassPriceClass200 = "PriceClass_200" - - // PriceClassPriceClassAll is a PriceClass enum value - PriceClassPriceClassAll = "PriceClass_All" -) - -const ( - // SSLSupportMethodSniOnly is a SSLSupportMethod enum value - SSLSupportMethodSniOnly = "sni-only" - - // SSLSupportMethodVip is a SSLSupportMethod enum value - SSLSupportMethodVip = "vip" -) - -const ( - // SslProtocolSslv3 is a SslProtocol enum value - SslProtocolSslv3 = "SSLv3" - - // SslProtocolTlsv1 is a SslProtocol enum value - SslProtocolTlsv1 = "TLSv1" - - // SslProtocolTlsv11 is a SslProtocol enum value - SslProtocolTlsv11 = "TLSv1.1" - - // SslProtocolTlsv12 is a SslProtocol enum value - SslProtocolTlsv12 = "TLSv1.2" -) - -const ( - // ViewerProtocolPolicyAllowAll is a ViewerProtocolPolicy enum value - ViewerProtocolPolicyAllowAll = "allow-all" - - // ViewerProtocolPolicyHttpsOnly is a ViewerProtocolPolicy enum value - ViewerProtocolPolicyHttpsOnly = "https-only" - - // ViewerProtocolPolicyRedirectToHttps is a ViewerProtocolPolicy enum value - ViewerProtocolPolicyRedirectToHttps = "redirect-to-https" -) diff --git a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/cloudfront/examples_test.go deleted file mode 100644 index baffb25a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/examples_test.go +++ /dev/null @@ -1,1481 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package cloudfront_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/cloudfront" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleCloudFront_CreateCloudFrontOriginAccessIdentity() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.CreateCloudFrontOriginAccessIdentityInput{ - CloudFrontOriginAccessIdentityConfig: &cloudfront.OriginAccessIdentityConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - }, - } - resp, err := svc.CreateCloudFrontOriginAccessIdentity(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_CreateDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.CreateDistributionInput{ - DistributionConfig: &cloudfront.DistributionConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - DefaultCacheBehavior: &cloudfront.DefaultCacheBehavior{ // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - QueryStringCacheKeys: &cloudfront.QueryStringCacheKeys{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - Compress: aws.Bool(true), - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - Enabled: aws.Bool(true), // Required - Origins: &cloudfront.Origins{ // Required - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.Origin{ - { // Required - DomainName: aws.String("string"), // Required - Id: aws.String("string"), // Required - CustomHeaders: &cloudfront.CustomHeaders{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.OriginCustomHeader{ - { // Required - HeaderName: aws.String("string"), // Required - HeaderValue: aws.String("string"), // Required - }, - // More values... - }, - }, - CustomOriginConfig: &cloudfront.CustomOriginConfig{ - HTTPPort: aws.Int64(1), // Required - HTTPSPort: aws.Int64(1), // Required - OriginProtocolPolicy: aws.String("OriginProtocolPolicy"), // Required - OriginSslProtocols: &cloudfront.OriginSslProtocols{ - Items: []*string{ // Required - aws.String("SslProtocol"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - OriginPath: aws.String("string"), - S3OriginConfig: &cloudfront.S3OriginConfig{ - OriginAccessIdentity: aws.String("string"), // Required - }, - }, - // More values... - }, - }, - Aliases: &cloudfront.Aliases{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - CacheBehaviors: &cloudfront.CacheBehaviors{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CacheBehavior{ - { // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - QueryStringCacheKeys: &cloudfront.QueryStringCacheKeys{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - PathPattern: aws.String("string"), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - Compress: aws.Bool(true), - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - // More values... - }, - }, - CustomErrorResponses: &cloudfront.CustomErrorResponses{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CustomErrorResponse{ - { // Required - ErrorCode: aws.Int64(1), // Required - ErrorCachingMinTTL: aws.Int64(1), - ResponseCode: aws.String("string"), - ResponsePagePath: aws.String("string"), - }, - // More values... - }, - }, - DefaultRootObject: aws.String("string"), - HttpVersion: aws.String("HttpVersion"), - Logging: &cloudfront.LoggingConfig{ - Bucket: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - IncludeCookies: aws.Bool(true), // Required - Prefix: aws.String("string"), // Required - }, - PriceClass: aws.String("PriceClass"), - Restrictions: &cloudfront.Restrictions{ - GeoRestriction: &cloudfront.GeoRestriction{ // Required - Quantity: aws.Int64(1), // Required - RestrictionType: aws.String("GeoRestrictionType"), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - ViewerCertificate: &cloudfront.ViewerCertificate{ - ACMCertificateArn: aws.String("string"), - Certificate: aws.String("string"), - CertificateSource: aws.String("CertificateSource"), - CloudFrontDefaultCertificate: aws.Bool(true), - IAMCertificateId: aws.String("string"), - MinimumProtocolVersion: aws.String("MinimumProtocolVersion"), - SSLSupportMethod: aws.String("SSLSupportMethod"), - }, - WebACLId: aws.String("string"), - }, - } - resp, err := svc.CreateDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_CreateDistributionWithTags() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.CreateDistributionWithTagsInput{ - DistributionConfigWithTags: &cloudfront.DistributionConfigWithTags{ // Required - DistributionConfig: &cloudfront.DistributionConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - DefaultCacheBehavior: &cloudfront.DefaultCacheBehavior{ // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - QueryStringCacheKeys: &cloudfront.QueryStringCacheKeys{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - Compress: aws.Bool(true), - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - Enabled: aws.Bool(true), // Required - Origins: &cloudfront.Origins{ // Required - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.Origin{ - { // Required - DomainName: aws.String("string"), // Required - Id: aws.String("string"), // Required - CustomHeaders: &cloudfront.CustomHeaders{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.OriginCustomHeader{ - { // Required - HeaderName: aws.String("string"), // Required - HeaderValue: aws.String("string"), // Required - }, - // More values... - }, - }, - CustomOriginConfig: &cloudfront.CustomOriginConfig{ - HTTPPort: aws.Int64(1), // Required - HTTPSPort: aws.Int64(1), // Required - OriginProtocolPolicy: aws.String("OriginProtocolPolicy"), // Required - OriginSslProtocols: &cloudfront.OriginSslProtocols{ - Items: []*string{ // Required - aws.String("SslProtocol"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - OriginPath: aws.String("string"), - S3OriginConfig: &cloudfront.S3OriginConfig{ - OriginAccessIdentity: aws.String("string"), // Required - }, - }, - // More values... - }, - }, - Aliases: &cloudfront.Aliases{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - CacheBehaviors: &cloudfront.CacheBehaviors{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CacheBehavior{ - { // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - QueryStringCacheKeys: &cloudfront.QueryStringCacheKeys{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - PathPattern: aws.String("string"), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - Compress: aws.Bool(true), - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - // More values... - }, - }, - CustomErrorResponses: &cloudfront.CustomErrorResponses{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CustomErrorResponse{ - { // Required - ErrorCode: aws.Int64(1), // Required - ErrorCachingMinTTL: aws.Int64(1), - ResponseCode: aws.String("string"), - ResponsePagePath: aws.String("string"), - }, - // More values... - }, - }, - DefaultRootObject: aws.String("string"), - HttpVersion: aws.String("HttpVersion"), - Logging: &cloudfront.LoggingConfig{ - Bucket: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - IncludeCookies: aws.Bool(true), // Required - Prefix: aws.String("string"), // Required - }, - PriceClass: aws.String("PriceClass"), - Restrictions: &cloudfront.Restrictions{ - GeoRestriction: &cloudfront.GeoRestriction{ // Required - Quantity: aws.Int64(1), // Required - RestrictionType: aws.String("GeoRestrictionType"), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - ViewerCertificate: &cloudfront.ViewerCertificate{ - ACMCertificateArn: aws.String("string"), - Certificate: aws.String("string"), - CertificateSource: aws.String("CertificateSource"), - CloudFrontDefaultCertificate: aws.Bool(true), - IAMCertificateId: aws.String("string"), - MinimumProtocolVersion: aws.String("MinimumProtocolVersion"), - SSLSupportMethod: aws.String("SSLSupportMethod"), - }, - WebACLId: aws.String("string"), - }, - Tags: &cloudfront.Tags{ // Required - Items: []*cloudfront.Tag{ - { // Required - Key: aws.String("TagKey"), // Required - Value: aws.String("TagValue"), - }, - // More values... - }, - }, - }, - } - resp, err := svc.CreateDistributionWithTags(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_CreateInvalidation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.CreateInvalidationInput{ - DistributionId: aws.String("string"), // Required - InvalidationBatch: &cloudfront.InvalidationBatch{ // Required - CallerReference: aws.String("string"), // Required - Paths: &cloudfront.Paths{ // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - } - resp, err := svc.CreateInvalidation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_CreateStreamingDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.CreateStreamingDistributionInput{ - StreamingDistributionConfig: &cloudfront.StreamingDistributionConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - S3Origin: &cloudfront.S3Origin{ // Required - DomainName: aws.String("string"), // Required - OriginAccessIdentity: aws.String("string"), // Required - }, - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - Aliases: &cloudfront.Aliases{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - Logging: &cloudfront.StreamingLoggingConfig{ - Bucket: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - Prefix: aws.String("string"), // Required - }, - PriceClass: aws.String("PriceClass"), - }, - } - resp, err := svc.CreateStreamingDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_CreateStreamingDistributionWithTags() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.CreateStreamingDistributionWithTagsInput{ - StreamingDistributionConfigWithTags: &cloudfront.StreamingDistributionConfigWithTags{ // Required - StreamingDistributionConfig: &cloudfront.StreamingDistributionConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - S3Origin: &cloudfront.S3Origin{ // Required - DomainName: aws.String("string"), // Required - OriginAccessIdentity: aws.String("string"), // Required - }, - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - Aliases: &cloudfront.Aliases{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - Logging: &cloudfront.StreamingLoggingConfig{ - Bucket: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - Prefix: aws.String("string"), // Required - }, - PriceClass: aws.String("PriceClass"), - }, - Tags: &cloudfront.Tags{ // Required - Items: []*cloudfront.Tag{ - { // Required - Key: aws.String("TagKey"), // Required - Value: aws.String("TagValue"), - }, - // More values... - }, - }, - }, - } - resp, err := svc.CreateStreamingDistributionWithTags(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_DeleteCloudFrontOriginAccessIdentity() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.DeleteCloudFrontOriginAccessIdentityInput{ - Id: aws.String("string"), // Required - IfMatch: aws.String("string"), - } - resp, err := svc.DeleteCloudFrontOriginAccessIdentity(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_DeleteDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.DeleteDistributionInput{ - Id: aws.String("string"), // Required - IfMatch: aws.String("string"), - } - resp, err := svc.DeleteDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_DeleteStreamingDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.DeleteStreamingDistributionInput{ - Id: aws.String("string"), // Required - IfMatch: aws.String("string"), - } - resp, err := svc.DeleteStreamingDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_GetCloudFrontOriginAccessIdentity() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.GetCloudFrontOriginAccessIdentityInput{ - Id: aws.String("string"), // Required - } - resp, err := svc.GetCloudFrontOriginAccessIdentity(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_GetCloudFrontOriginAccessIdentityConfig() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.GetCloudFrontOriginAccessIdentityConfigInput{ - Id: aws.String("string"), // Required - } - resp, err := svc.GetCloudFrontOriginAccessIdentityConfig(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_GetDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.GetDistributionInput{ - Id: aws.String("string"), // Required - } - resp, err := svc.GetDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_GetDistributionConfig() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.GetDistributionConfigInput{ - Id: aws.String("string"), // Required - } - resp, err := svc.GetDistributionConfig(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_GetInvalidation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.GetInvalidationInput{ - DistributionId: aws.String("string"), // Required - Id: aws.String("string"), // Required - } - resp, err := svc.GetInvalidation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_GetStreamingDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.GetStreamingDistributionInput{ - Id: aws.String("string"), // Required - } - resp, err := svc.GetStreamingDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_GetStreamingDistributionConfig() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.GetStreamingDistributionConfigInput{ - Id: aws.String("string"), // Required - } - resp, err := svc.GetStreamingDistributionConfig(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_ListCloudFrontOriginAccessIdentities() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.ListCloudFrontOriginAccessIdentitiesInput{ - Marker: aws.String("string"), - MaxItems: aws.Int64(1), - } - resp, err := svc.ListCloudFrontOriginAccessIdentities(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_ListDistributions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.ListDistributionsInput{ - Marker: aws.String("string"), - MaxItems: aws.Int64(1), - } - resp, err := svc.ListDistributions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_ListDistributionsByWebACLId() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.ListDistributionsByWebACLIdInput{ - WebACLId: aws.String("string"), // Required - Marker: aws.String("string"), - MaxItems: aws.Int64(1), - } - resp, err := svc.ListDistributionsByWebACLId(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_ListInvalidations() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.ListInvalidationsInput{ - DistributionId: aws.String("string"), // Required - Marker: aws.String("string"), - MaxItems: aws.Int64(1), - } - resp, err := svc.ListInvalidations(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_ListStreamingDistributions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.ListStreamingDistributionsInput{ - Marker: aws.String("string"), - MaxItems: aws.Int64(1), - } - resp, err := svc.ListStreamingDistributions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_ListTagsForResource() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.ListTagsForResourceInput{ - Resource: aws.String("ResourceARN"), // Required - } - resp, err := svc.ListTagsForResource(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_TagResource() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.TagResourceInput{ - Resource: aws.String("ResourceARN"), // Required - Tags: &cloudfront.Tags{ // Required - Items: []*cloudfront.Tag{ - { // Required - Key: aws.String("TagKey"), // Required - Value: aws.String("TagValue"), - }, - // More values... - }, - }, - } - resp, err := svc.TagResource(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_UntagResource() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.UntagResourceInput{ - Resource: aws.String("ResourceARN"), // Required - TagKeys: &cloudfront.TagKeys{ // Required - Items: []*string{ - aws.String("TagKey"), // Required - // More values... - }, - }, - } - resp, err := svc.UntagResource(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_UpdateCloudFrontOriginAccessIdentity() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.UpdateCloudFrontOriginAccessIdentityInput{ - CloudFrontOriginAccessIdentityConfig: &cloudfront.OriginAccessIdentityConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - }, - Id: aws.String("string"), // Required - IfMatch: aws.String("string"), - } - resp, err := svc.UpdateCloudFrontOriginAccessIdentity(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_UpdateDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.UpdateDistributionInput{ - DistributionConfig: &cloudfront.DistributionConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - DefaultCacheBehavior: &cloudfront.DefaultCacheBehavior{ // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - QueryStringCacheKeys: &cloudfront.QueryStringCacheKeys{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - Compress: aws.Bool(true), - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - Enabled: aws.Bool(true), // Required - Origins: &cloudfront.Origins{ // Required - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.Origin{ - { // Required - DomainName: aws.String("string"), // Required - Id: aws.String("string"), // Required - CustomHeaders: &cloudfront.CustomHeaders{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.OriginCustomHeader{ - { // Required - HeaderName: aws.String("string"), // Required - HeaderValue: aws.String("string"), // Required - }, - // More values... - }, - }, - CustomOriginConfig: &cloudfront.CustomOriginConfig{ - HTTPPort: aws.Int64(1), // Required - HTTPSPort: aws.Int64(1), // Required - OriginProtocolPolicy: aws.String("OriginProtocolPolicy"), // Required - OriginSslProtocols: &cloudfront.OriginSslProtocols{ - Items: []*string{ // Required - aws.String("SslProtocol"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - OriginPath: aws.String("string"), - S3OriginConfig: &cloudfront.S3OriginConfig{ - OriginAccessIdentity: aws.String("string"), // Required - }, - }, - // More values... - }, - }, - Aliases: &cloudfront.Aliases{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - CacheBehaviors: &cloudfront.CacheBehaviors{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CacheBehavior{ - { // Required - ForwardedValues: &cloudfront.ForwardedValues{ // Required - Cookies: &cloudfront.CookiePreference{ // Required - Forward: aws.String("ItemSelection"), // Required - WhitelistedNames: &cloudfront.CookieNames{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - QueryString: aws.Bool(true), // Required - Headers: &cloudfront.Headers{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - QueryStringCacheKeys: &cloudfront.QueryStringCacheKeys{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - MinTTL: aws.Int64(1), // Required - PathPattern: aws.String("string"), // Required - TargetOriginId: aws.String("string"), // Required - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - ViewerProtocolPolicy: aws.String("ViewerProtocolPolicy"), // Required - AllowedMethods: &cloudfront.AllowedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - CachedMethods: &cloudfront.CachedMethods{ - Items: []*string{ // Required - aws.String("Method"), // Required - // More values... - }, - Quantity: aws.Int64(1), // Required - }, - }, - Compress: aws.Bool(true), - DefaultTTL: aws.Int64(1), - MaxTTL: aws.Int64(1), - SmoothStreaming: aws.Bool(true), - }, - // More values... - }, - }, - CustomErrorResponses: &cloudfront.CustomErrorResponses{ - Quantity: aws.Int64(1), // Required - Items: []*cloudfront.CustomErrorResponse{ - { // Required - ErrorCode: aws.Int64(1), // Required - ErrorCachingMinTTL: aws.Int64(1), - ResponseCode: aws.String("string"), - ResponsePagePath: aws.String("string"), - }, - // More values... - }, - }, - DefaultRootObject: aws.String("string"), - HttpVersion: aws.String("HttpVersion"), - Logging: &cloudfront.LoggingConfig{ - Bucket: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - IncludeCookies: aws.Bool(true), // Required - Prefix: aws.String("string"), // Required - }, - PriceClass: aws.String("PriceClass"), - Restrictions: &cloudfront.Restrictions{ - GeoRestriction: &cloudfront.GeoRestriction{ // Required - Quantity: aws.Int64(1), // Required - RestrictionType: aws.String("GeoRestrictionType"), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - }, - ViewerCertificate: &cloudfront.ViewerCertificate{ - ACMCertificateArn: aws.String("string"), - Certificate: aws.String("string"), - CertificateSource: aws.String("CertificateSource"), - CloudFrontDefaultCertificate: aws.Bool(true), - IAMCertificateId: aws.String("string"), - MinimumProtocolVersion: aws.String("MinimumProtocolVersion"), - SSLSupportMethod: aws.String("SSLSupportMethod"), - }, - WebACLId: aws.String("string"), - }, - Id: aws.String("string"), // Required - IfMatch: aws.String("string"), - } - resp, err := svc.UpdateDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleCloudFront_UpdateStreamingDistribution() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := cloudfront.New(sess) - - params := &cloudfront.UpdateStreamingDistributionInput{ - Id: aws.String("string"), // Required - StreamingDistributionConfig: &cloudfront.StreamingDistributionConfig{ // Required - CallerReference: aws.String("string"), // Required - Comment: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - S3Origin: &cloudfront.S3Origin{ // Required - DomainName: aws.String("string"), // Required - OriginAccessIdentity: aws.String("string"), // Required - }, - TrustedSigners: &cloudfront.TrustedSigners{ // Required - Enabled: aws.Bool(true), // Required - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - Aliases: &cloudfront.Aliases{ - Quantity: aws.Int64(1), // Required - Items: []*string{ - aws.String("string"), // Required - // More values... - }, - }, - Logging: &cloudfront.StreamingLoggingConfig{ - Bucket: aws.String("string"), // Required - Enabled: aws.Bool(true), // Required - Prefix: aws.String("string"), // Required - }, - PriceClass: aws.String("PriceClass"), - }, - IfMatch: aws.String("string"), - } - resp, err := svc.UpdateStreamingDistribution(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/service.go b/vendor/github.com/aws/aws-sdk-go/service/cloudfront/service.go deleted file mode 100644 index a4bf396a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/service.go +++ /dev/null @@ -1,90 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package cloudfront - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -// Amazon CloudFront is a global content delivery network (CDN) service that -// accelerates delivery of your websites, APIs, video content or other web assets. -// It integrates with other Amazon Web Services products to give developers -// and businesses an easy way to accelerate content to end users with no minimum -// usage commitments. -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type CloudFront struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "cloudfront" - -// New creates a new instance of the CloudFront client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a CloudFront client from just a session. -// svc := cloudfront.New(mySession) -// -// // Create a CloudFront client with additional configuration -// svc := cloudfront.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *CloudFront { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *CloudFront { - svc := &CloudFront{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2016-09-07", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a CloudFront operation and runs any -// custom request initialization. -func (c *CloudFront) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/cloudfront/waiters.go deleted file mode 100644 index c14e9d10..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/cloudfront/waiters.go +++ /dev/null @@ -1,88 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package cloudfront - -import ( - "github.com/aws/aws-sdk-go/private/waiter" -) - -// WaitUntilDistributionDeployed uses the CloudFront API operation -// GetDistribution to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *CloudFront) WaitUntilDistributionDeployed(input *GetDistributionInput) error { - waiterCfg := waiter.Config{ - Operation: "GetDistribution", - Delay: 60, - MaxAttempts: 25, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "Distribution.Status", - Expected: "Deployed", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilInvalidationCompleted uses the CloudFront API operation -// GetInvalidation to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *CloudFront) WaitUntilInvalidationCompleted(input *GetInvalidationInput) error { - waiterCfg := waiter.Config{ - Operation: "GetInvalidation", - Delay: 20, - MaxAttempts: 30, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "Invalidation.Status", - Expected: "Completed", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilStreamingDistributionDeployed uses the CloudFront API operation -// GetStreamingDistribution to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *CloudFront) WaitUntilStreamingDistributionDeployed(input *GetStreamingDistributionInput) error { - waiterCfg := waiter.Config{ - Operation: "GetStreamingDistribution", - Delay: 60, - MaxAttempts: 25, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "StreamingDistribution.Status", - Expected: "Deployed", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go deleted file mode 100644 index 5cee6301..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go +++ /dev/null @@ -1,6811 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package dynamodb provides a client for Amazon DynamoDB. -package dynamodb - -import ( - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -const opBatchGetItem = "BatchGetItem" - -// BatchGetItemRequest generates a "aws/request.Request" representing the -// client's request for the BatchGetItem operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the BatchGetItem method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the BatchGetItemRequest method. -// req, resp := client.BatchGetItemRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) BatchGetItemRequest(input *BatchGetItemInput) (req *request.Request, output *BatchGetItemOutput) { - op := &request.Operation{ - Name: opBatchGetItem, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"RequestItems"}, - OutputTokens: []string{"UnprocessedKeys"}, - LimitToken: "", - TruncationToken: "", - }, - } - - if input == nil { - input = &BatchGetItemInput{} - } - - req = c.newRequest(op, input, output) - output = &BatchGetItemOutput{} - req.Data = output - return -} - -// The BatchGetItem operation returns the attributes of one or more items from -// one or more tables. You identify requested items by primary key. -// -// A single operation can retrieve up to 16 MB of data, which can contain as -// many as 100 items. BatchGetItem will return a partial result if the response -// size limit is exceeded, the table's provisioned throughput is exceeded, or -// an internal processing failure occurs. If a partial result is returned, the -// operation returns a value for UnprocessedKeys. You can use this value to -// retry the operation starting with the next item to get. -// -// If you request more than 100 items BatchGetItem will return a ValidationException -// with the message "Too many items requested for the BatchGetItem call". -// -// For example, if you ask to retrieve 100 items, but each individual item -// is 300 KB in size, the system returns 52 items (so as not to exceed the 16 -// MB limit). It also returns an appropriate UnprocessedKeys value so you can -// get the next page of results. If desired, your application can include its -// own logic to assemble the pages of results into one data set. -// -// If none of the items can be processed due to insufficient provisioned throughput -// on all of the tables in the request, then BatchGetItem will return a ProvisionedThroughputExceededException. -// If at least one of the items is successfully processed, then BatchGetItem -// completes successfully, while returning the keys of the unread items in UnprocessedKeys. -// -// If DynamoDB returns any unprocessed items, you should retry the batch operation -// on those items. However, we strongly recommend that you use an exponential -// backoff algorithm. If you retry the batch operation immediately, the underlying -// read or write requests can still fail due to throttling on the individual -// tables. If you delay the batch operation using exponential backoff, the individual -// requests in the batch are much more likely to succeed. -// -// For more information, see Batch Operations and Error Handling (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#BatchOperations) -// in the Amazon DynamoDB Developer Guide. -// -// By default, BatchGetItem performs eventually consistent reads on every -// table in the request. If you want strongly consistent reads instead, you -// can set ConsistentRead to true for any or all tables. -// -// In order to minimize response latency, BatchGetItem retrieves items in parallel. -// -// When designing your application, keep in mind that DynamoDB does not return -// items in any particular order. To help parse the response by item, include -// the primary key values for the items in your request in the AttributesToGet -// parameter. -// -// If a requested item does not exist, it is not returned in the result. Requests -// for nonexistent items consume the minimum read capacity units according to -// the type of read. For more information, see Capacity Units Calculations (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#CapacityUnitCalculations) -// in the Amazon DynamoDB Developer Guide. -func (c *DynamoDB) BatchGetItem(input *BatchGetItemInput) (*BatchGetItemOutput, error) { - req, out := c.BatchGetItemRequest(input) - err := req.Send() - return out, err -} - -// BatchGetItemPages iterates over the pages of a BatchGetItem operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See BatchGetItem method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a BatchGetItem operation. -// pageNum := 0 -// err := client.BatchGetItemPages(params, -// func(page *BatchGetItemOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *DynamoDB) BatchGetItemPages(input *BatchGetItemInput, fn func(p *BatchGetItemOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.BatchGetItemRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*BatchGetItemOutput), lastPage) - }) -} - -const opBatchWriteItem = "BatchWriteItem" - -// BatchWriteItemRequest generates a "aws/request.Request" representing the -// client's request for the BatchWriteItem operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the BatchWriteItem method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the BatchWriteItemRequest method. -// req, resp := client.BatchWriteItemRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) BatchWriteItemRequest(input *BatchWriteItemInput) (req *request.Request, output *BatchWriteItemOutput) { - op := &request.Operation{ - Name: opBatchWriteItem, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &BatchWriteItemInput{} - } - - req = c.newRequest(op, input, output) - output = &BatchWriteItemOutput{} - req.Data = output - return -} - -// The BatchWriteItem operation puts or deletes multiple items in one or more -// tables. A single call to BatchWriteItem can write up to 16 MB of data, which -// can comprise as many as 25 put or delete requests. Individual items to be -// written can be as large as 400 KB. -// -// BatchWriteItem cannot update items. To update items, use the UpdateItem -// API. -// -// The individual PutItem and DeleteItem operations specified in BatchWriteItem -// are atomic; however BatchWriteItem as a whole is not. If any requested operations -// fail because the table's provisioned throughput is exceeded or an internal -// processing failure occurs, the failed operations are returned in the UnprocessedItems -// response parameter. You can investigate and optionally resend the requests. -// Typically, you would call BatchWriteItem in a loop. Each iteration would -// check for unprocessed items and submit a new BatchWriteItem request with -// those unprocessed items until all items have been processed. -// -// Note that if none of the items can be processed due to insufficient provisioned -// throughput on all of the tables in the request, then BatchWriteItem will -// return a ProvisionedThroughputExceededException. -// -// If DynamoDB returns any unprocessed items, you should retry the batch operation -// on those items. However, we strongly recommend that you use an exponential -// backoff algorithm. If you retry the batch operation immediately, the underlying -// read or write requests can still fail due to throttling on the individual -// tables. If you delay the batch operation using exponential backoff, the individual -// requests in the batch are much more likely to succeed. -// -// For more information, see Batch Operations and Error Handling (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#BatchOperations) -// in the Amazon DynamoDB Developer Guide. -// -// With BatchWriteItem, you can efficiently write or delete large amounts -// of data, such as from Amazon Elastic MapReduce (EMR), or copy data from another -// database into DynamoDB. In order to improve performance with these large-scale -// operations, BatchWriteItem does not behave in the same way as individual -// PutItem and DeleteItem calls would. For example, you cannot specify conditions -// on individual put and delete requests, and BatchWriteItem does not return -// deleted items in the response. -// -// If you use a programming language that supports concurrency, you can use -// threads to write items in parallel. Your application must include the necessary -// logic to manage the threads. With languages that don't support threading, -// you must update or delete the specified items one at a time. In both situations, -// BatchWriteItem provides an alternative where the API performs the specified -// put and delete operations in parallel, giving you the power of the thread -// pool approach without having to introduce complexity into your application. -// -// Parallel processing reduces latency, but each specified put and delete request -// consumes the same number of write capacity units whether it is processed -// in parallel or not. Delete operations on nonexistent items consume one write -// capacity unit. -// -// If one or more of the following is true, DynamoDB rejects the entire batch -// write operation: -// -// One or more tables specified in the BatchWriteItem request does not exist. -// -// Primary key attributes specified on an item in the request do not match -// those in the corresponding table's primary key schema. -// -// You try to perform multiple operations on the same item in the same BatchWriteItem -// request. For example, you cannot put and delete the same item in the same -// BatchWriteItem request. -// -// There are more than 25 requests in the batch. -// -// Any individual item in a batch exceeds 400 KB. -// -// The total request size exceeds 16 MB. -func (c *DynamoDB) BatchWriteItem(input *BatchWriteItemInput) (*BatchWriteItemOutput, error) { - req, out := c.BatchWriteItemRequest(input) - err := req.Send() - return out, err -} - -const opCreateTable = "CreateTable" - -// CreateTableRequest generates a "aws/request.Request" representing the -// client's request for the CreateTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateTableRequest method. -// req, resp := client.CreateTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) CreateTableRequest(input *CreateTableInput) (req *request.Request, output *CreateTableOutput) { - op := &request.Operation{ - Name: opCreateTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateTableInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateTableOutput{} - req.Data = output - return -} - -// The CreateTable operation adds a new table to your account. In an AWS account, -// table names must be unique within each region. That is, you can have two -// tables with same name if you create the tables in different regions. -// -// CreateTable is an asynchronous operation. Upon receiving a CreateTable -// request, DynamoDB immediately returns a response with a TableStatus of CREATING. -// After the table is created, DynamoDB sets the TableStatus to ACTIVE. You -// can perform read and write operations only on an ACTIVE table. -// -// You can optionally define secondary indexes on the new table, as part of -// the CreateTable operation. If you want to create multiple tables with secondary -// indexes on them, you must create the tables sequentially. Only one table -// with secondary indexes can be in the CREATING state at any given time. -// -// You can use the DescribeTable API to check the table status. -func (c *DynamoDB) CreateTable(input *CreateTableInput) (*CreateTableOutput, error) { - req, out := c.CreateTableRequest(input) - err := req.Send() - return out, err -} - -const opDeleteItem = "DeleteItem" - -// DeleteItemRequest generates a "aws/request.Request" representing the -// client's request for the DeleteItem operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteItem method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteItemRequest method. -// req, resp := client.DeleteItemRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) DeleteItemRequest(input *DeleteItemInput) (req *request.Request, output *DeleteItemOutput) { - op := &request.Operation{ - Name: opDeleteItem, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteItemInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteItemOutput{} - req.Data = output - return -} - -// Deletes a single item in a table by primary key. You can perform a conditional -// delete operation that deletes the item if it exists, or if it has an expected -// attribute value. -// -// In addition to deleting an item, you can also return the item's attribute -// values in the same operation, using the ReturnValues parameter. -// -// Unless you specify conditions, the DeleteItem is an idempotent operation; -// running it multiple times on the same item or attribute does not result in -// an error response. -// -// Conditional deletes are useful for deleting items only if specific conditions -// are met. If those conditions are met, DynamoDB performs the delete. Otherwise, -// the item is not deleted. -func (c *DynamoDB) DeleteItem(input *DeleteItemInput) (*DeleteItemOutput, error) { - req, out := c.DeleteItemRequest(input) - err := req.Send() - return out, err -} - -const opDeleteTable = "DeleteTable" - -// DeleteTableRequest generates a "aws/request.Request" representing the -// client's request for the DeleteTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteTableRequest method. -// req, resp := client.DeleteTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) DeleteTableRequest(input *DeleteTableInput) (req *request.Request, output *DeleteTableOutput) { - op := &request.Operation{ - Name: opDeleteTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteTableInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteTableOutput{} - req.Data = output - return -} - -// The DeleteTable operation deletes a table and all of its items. After a DeleteTable -// request, the specified table is in the DELETING state until DynamoDB completes -// the deletion. If the table is in the ACTIVE state, you can delete it. If -// a table is in CREATING or UPDATING states, then DynamoDB returns a ResourceInUseException. -// If the specified table does not exist, DynamoDB returns a ResourceNotFoundException. -// If table is already in the DELETING state, no error is returned. -// -// DynamoDB might continue to accept data read and write operations, such -// as GetItem and PutItem, on a table in the DELETING state until the table -// deletion is complete. -// -// When you delete a table, any indexes on that table are also deleted. -// -// If you have DynamoDB Streams enabled on the table, then the corresponding -// stream on that table goes into the DISABLED state, and the stream is automatically -// deleted after 24 hours. -// -// Use the DescribeTable API to check the status of the table. -func (c *DynamoDB) DeleteTable(input *DeleteTableInput) (*DeleteTableOutput, error) { - req, out := c.DeleteTableRequest(input) - err := req.Send() - return out, err -} - -const opDescribeLimits = "DescribeLimits" - -// DescribeLimitsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeLimits operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeLimits method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeLimitsRequest method. -// req, resp := client.DescribeLimitsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) DescribeLimitsRequest(input *DescribeLimitsInput) (req *request.Request, output *DescribeLimitsOutput) { - op := &request.Operation{ - Name: opDescribeLimits, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeLimitsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeLimitsOutput{} - req.Data = output - return -} - -// Returns the current provisioned-capacity limits for your AWS account in a -// region, both for the region as a whole and for any one DynamoDB table that -// you create there. -// -// When you establish an AWS account, the account has initial limits on the -// maximum read capacity units and write capacity units that you can provision -// across all of your DynamoDB tables in a given region. Also, there are per-table -// limits that apply when you create a table there. For more information, see -// Limits (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) -// page in the Amazon DynamoDB Developer Guide. -// -// Although you can increase these limits by filing a case at AWS Support Center -// (https://console.aws.amazon.com/support/home#/), obtaining the increase is -// not instantaneous. The DescribeLimits API lets you write code to compare -// the capacity you are currently using to those limits imposed by your account -// so that you have enough time to apply for an increase before you hit a limit. -// -// For example, you could use one of the AWS SDKs to do the following: -// -// Call DescribeLimits for a particular region to obtain your current account -// limits on provisioned capacity there. -// -// Create a variable to hold the aggregate read capacity units provisioned -// for all your tables in that region, and one to hold the aggregate write capacity -// units. Zero them both. -// -// Call ListTables to obtain a list of all your DynamoDB tables. -// -// For each table name listed by ListTables, do the following: -// -// Call DescribeTable with the table name. -// -// Use the data returned by DescribeTable to add the read capacity units and -// write capacity units provisioned for the table itself to your variables. -// -// If the table has one or more global secondary indexes (GSIs), loop over -// these GSIs and add their provisioned capacity values to your variables as -// well. -// -// Report the account limits for that region returned by DescribeLimits, -// along with the total current provisioned capacity levels you have calculated. -// -// This will let you see whether you are getting close to your account-level -// limits. -// -// The per-table limits apply only when you are creating a new table. They -// restrict the sum of the provisioned capacity of the new table itself and -// all its global secondary indexes. -// -// For existing tables and their GSIs, DynamoDB will not let you increase provisioned -// capacity extremely rapidly, but the only upper limit that applies is that -// the aggregate provisioned capacity over all your tables and GSIs cannot exceed -// either of the per-account limits. -// -// DescribeLimits should only be called periodically. You can expect throttling -// errors if you call it more than once in a minute. -// -// The DescribeLimits Request element has no content. -func (c *DynamoDB) DescribeLimits(input *DescribeLimitsInput) (*DescribeLimitsOutput, error) { - req, out := c.DescribeLimitsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeTable = "DescribeTable" - -// DescribeTableRequest generates a "aws/request.Request" representing the -// client's request for the DescribeTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeTableRequest method. -// req, resp := client.DescribeTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) DescribeTableRequest(input *DescribeTableInput) (req *request.Request, output *DescribeTableOutput) { - op := &request.Operation{ - Name: opDescribeTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeTableInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeTableOutput{} - req.Data = output - return -} - -// Returns information about the table, including the current status of the -// table, when it was created, the primary key schema, and any indexes on the -// table. -// -// If you issue a DescribeTable request immediately after a CreateTable request, -// DynamoDB might return a ResourceNotFoundException. This is because DescribeTable -// uses an eventually consistent query, and the metadata for your table might -// not be available at that moment. Wait for a few seconds, and then try the -// DescribeTable request again. -func (c *DynamoDB) DescribeTable(input *DescribeTableInput) (*DescribeTableOutput, error) { - req, out := c.DescribeTableRequest(input) - err := req.Send() - return out, err -} - -const opGetItem = "GetItem" - -// GetItemRequest generates a "aws/request.Request" representing the -// client's request for the GetItem operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetItem method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetItemRequest method. -// req, resp := client.GetItemRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) GetItemRequest(input *GetItemInput) (req *request.Request, output *GetItemOutput) { - op := &request.Operation{ - Name: opGetItem, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetItemInput{} - } - - req = c.newRequest(op, input, output) - output = &GetItemOutput{} - req.Data = output - return -} - -// The GetItem operation returns a set of attributes for the item with the given -// primary key. If there is no matching item, GetItem does not return any data. -// -// GetItem provides an eventually consistent read by default. If your application -// requires a strongly consistent read, set ConsistentRead to true. Although -// a strongly consistent read might take more time than an eventually consistent -// read, it always returns the last updated value. -func (c *DynamoDB) GetItem(input *GetItemInput) (*GetItemOutput, error) { - req, out := c.GetItemRequest(input) - err := req.Send() - return out, err -} - -const opListTables = "ListTables" - -// ListTablesRequest generates a "aws/request.Request" representing the -// client's request for the ListTables operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTables method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTablesRequest method. -// req, resp := client.ListTablesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) ListTablesRequest(input *ListTablesInput) (req *request.Request, output *ListTablesOutput) { - op := &request.Operation{ - Name: opListTables, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"ExclusiveStartTableName"}, - OutputTokens: []string{"LastEvaluatedTableName"}, - LimitToken: "Limit", - TruncationToken: "", - }, - } - - if input == nil { - input = &ListTablesInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTablesOutput{} - req.Data = output - return -} - -// Returns an array of table names associated with the current account and endpoint. -// The output from ListTables is paginated, with each page returning a maximum -// of 100 table names. -func (c *DynamoDB) ListTables(input *ListTablesInput) (*ListTablesOutput, error) { - req, out := c.ListTablesRequest(input) - err := req.Send() - return out, err -} - -// ListTablesPages iterates over the pages of a ListTables operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListTables method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListTables operation. -// pageNum := 0 -// err := client.ListTablesPages(params, -// func(page *ListTablesOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *DynamoDB) ListTablesPages(input *ListTablesInput, fn func(p *ListTablesOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListTablesRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListTablesOutput), lastPage) - }) -} - -const opPutItem = "PutItem" - -// PutItemRequest generates a "aws/request.Request" representing the -// client's request for the PutItem operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutItem method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutItemRequest method. -// req, resp := client.PutItemRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) PutItemRequest(input *PutItemInput) (req *request.Request, output *PutItemOutput) { - op := &request.Operation{ - Name: opPutItem, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &PutItemInput{} - } - - req = c.newRequest(op, input, output) - output = &PutItemOutput{} - req.Data = output - return -} - -// Creates a new item, or replaces an old item with a new item. If an item that -// has the same primary key as the new item already exists in the specified -// table, the new item completely replaces the existing item. You can perform -// a conditional put operation (add a new item if one with the specified primary -// key doesn't exist), or replace an existing item if it has certain attribute -// values. -// -// In addition to putting an item, you can also return the item's attribute -// values in the same operation, using the ReturnValues parameter. -// -// When you add an item, the primary key attribute(s) are the only required -// attributes. Attribute values cannot be null. String and Binary type attributes -// must have lengths greater than zero. Set type attributes cannot be empty. -// Requests with empty values will be rejected with a ValidationException exception. -// -// You can request that PutItem return either a copy of the original item (before -// the update) or a copy of the updated item (after the update). For more information, -// see the ReturnValues description below. -// -// To prevent a new item from replacing an existing item, use a conditional -// expression that contains the attribute_not_exists function with the name -// of the attribute being used as the partition key for the table. Since every -// record must contain that attribute, the attribute_not_exists function will -// only succeed if no matching item exists. -// -// For more information about using this API, see Working with Items (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html) -// in the Amazon DynamoDB Developer Guide. -func (c *DynamoDB) PutItem(input *PutItemInput) (*PutItemOutput, error) { - req, out := c.PutItemRequest(input) - err := req.Send() - return out, err -} - -const opQuery = "Query" - -// QueryRequest generates a "aws/request.Request" representing the -// client's request for the Query operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the Query method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the QueryRequest method. -// req, resp := client.QueryRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) QueryRequest(input *QueryInput) (req *request.Request, output *QueryOutput) { - op := &request.Operation{ - Name: opQuery, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"ExclusiveStartKey"}, - OutputTokens: []string{"LastEvaluatedKey"}, - LimitToken: "Limit", - TruncationToken: "", - }, - } - - if input == nil { - input = &QueryInput{} - } - - req = c.newRequest(op, input, output) - output = &QueryOutput{} - req.Data = output - return -} - -// A Query operation uses the primary key of a table or a secondary index to -// directly access items from that table or index. -// -// Use the KeyConditionExpression parameter to provide a specific value for -// the partition key. The Query operation will return all of the items from -// the table or index with that partition key value. You can optionally narrow -// the scope of the Query operation by specifying a sort key value and a comparison -// operator in KeyConditionExpression. You can use the ScanIndexForward parameter -// to get results in forward or reverse order, by sort key. -// -// Queries that do not return results consume the minimum number of read capacity -// units for that type of read operation. -// -// If the total number of items meeting the query criteria exceeds the result -// set size limit of 1 MB, the query stops and results are returned to the user -// with the LastEvaluatedKey element to continue the query in a subsequent operation. -// Unlike a Scan operation, a Query operation never returns both an empty result -// set and a LastEvaluatedKey value. LastEvaluatedKey is only provided if you -// have used the Limit parameter, or if the result set exceeds 1 MB (prior to -// applying a filter). -// -// You can query a table, a local secondary index, or a global secondary index. -// For a query on a table or on a local secondary index, you can set the ConsistentRead -// parameter to true and obtain a strongly consistent result. Global secondary -// indexes support eventually consistent reads only, so do not specify ConsistentRead -// when querying a global secondary index. -func (c *DynamoDB) Query(input *QueryInput) (*QueryOutput, error) { - req, out := c.QueryRequest(input) - err := req.Send() - return out, err -} - -// QueryPages iterates over the pages of a Query operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See Query method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a Query operation. -// pageNum := 0 -// err := client.QueryPages(params, -// func(page *QueryOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *DynamoDB) QueryPages(input *QueryInput, fn func(p *QueryOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.QueryRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*QueryOutput), lastPage) - }) -} - -const opScan = "Scan" - -// ScanRequest generates a "aws/request.Request" representing the -// client's request for the Scan operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the Scan method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ScanRequest method. -// req, resp := client.ScanRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) ScanRequest(input *ScanInput) (req *request.Request, output *ScanOutput) { - op := &request.Operation{ - Name: opScan, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"ExclusiveStartKey"}, - OutputTokens: []string{"LastEvaluatedKey"}, - LimitToken: "Limit", - TruncationToken: "", - }, - } - - if input == nil { - input = &ScanInput{} - } - - req = c.newRequest(op, input, output) - output = &ScanOutput{} - req.Data = output - return -} - -// The Scan operation returns one or more items and item attributes by accessing -// every item in a table or a secondary index. To have DynamoDB return fewer -// items, you can provide a ScanFilter operation. -// -// If the total number of scanned items exceeds the maximum data set size limit -// of 1 MB, the scan stops and results are returned to the user as a LastEvaluatedKey -// value to continue the scan in a subsequent operation. The results also include -// the number of items exceeding the limit. A scan can result in no table data -// meeting the filter criteria. -// -// By default, Scan operations proceed sequentially; however, for faster performance -// on a large table or secondary index, applications can request a parallel -// Scan operation by providing the Segment and TotalSegments parameters. For -// more information, see Parallel Scan (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#QueryAndScanParallelScan) -// in the Amazon DynamoDB Developer Guide. -// -// By default, Scan uses eventually consistent reads when accessing the data -// in a table; therefore, the result set might not include the changes to data -// in the table immediately before the operation began. If you need a consistent -// copy of the data, as of the time that the Scan begins, you can set the ConsistentRead -// parameter to true. -func (c *DynamoDB) Scan(input *ScanInput) (*ScanOutput, error) { - req, out := c.ScanRequest(input) - err := req.Send() - return out, err -} - -// ScanPages iterates over the pages of a Scan operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See Scan method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a Scan operation. -// pageNum := 0 -// err := client.ScanPages(params, -// func(page *ScanOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *DynamoDB) ScanPages(input *ScanInput, fn func(p *ScanOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ScanRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ScanOutput), lastPage) - }) -} - -const opUpdateItem = "UpdateItem" - -// UpdateItemRequest generates a "aws/request.Request" representing the -// client's request for the UpdateItem operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateItem method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateItemRequest method. -// req, resp := client.UpdateItemRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) UpdateItemRequest(input *UpdateItemInput) (req *request.Request, output *UpdateItemOutput) { - op := &request.Operation{ - Name: opUpdateItem, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &UpdateItemInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateItemOutput{} - req.Data = output - return -} - -// Edits an existing item's attributes, or adds a new item to the table if it -// does not already exist. You can put, delete, or add attribute values. You -// can also perform a conditional update on an existing item (insert a new attribute -// name-value pair if it doesn't exist, or replace an existing name-value pair -// if it has certain expected attribute values). -// -// You can also return the item's attribute values in the same UpdateItem operation -// using the ReturnValues parameter. -func (c *DynamoDB) UpdateItem(input *UpdateItemInput) (*UpdateItemOutput, error) { - req, out := c.UpdateItemRequest(input) - err := req.Send() - return out, err -} - -const opUpdateTable = "UpdateTable" - -// UpdateTableRequest generates a "aws/request.Request" representing the -// client's request for the UpdateTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateTableRequest method. -// req, resp := client.UpdateTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *DynamoDB) UpdateTableRequest(input *UpdateTableInput) (req *request.Request, output *UpdateTableOutput) { - op := &request.Operation{ - Name: opUpdateTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &UpdateTableInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateTableOutput{} - req.Data = output - return -} - -// Modifies the provisioned throughput settings, global secondary indexes, or -// DynamoDB Streams settings for a given table. -// -// You can only perform one of the following operations at once: -// -// Modify the provisioned throughput settings of the table. -// -// Enable or disable Streams on the table. -// -// Remove a global secondary index from the table. -// -// Create a new global secondary index on the table. Once the index begins -// backfilling, you can use UpdateTable to perform other operations. -// -// UpdateTable is an asynchronous operation; while it is executing, the -// table status changes from ACTIVE to UPDATING. While it is UPDATING, you cannot -// issue another UpdateTable request. When the table returns to the ACTIVE state, -// the UpdateTable operation is complete. -func (c *DynamoDB) UpdateTable(input *UpdateTableInput) (*UpdateTableOutput, error) { - req, out := c.UpdateTableRequest(input) - err := req.Send() - return out, err -} - -// Represents an attribute for describing the key schema for the table and indexes. -type AttributeDefinition struct { - _ struct{} `type:"structure"` - - // A name for the attribute. - // - // AttributeName is a required field - AttributeName *string `min:"1" type:"string" required:"true"` - - // The data type for the attribute, where: - // - // S - the attribute is of type String - // - // N - the attribute is of type Number - // - // B - the attribute is of type Binary - // - // AttributeType is a required field - AttributeType *string `type:"string" required:"true" enum:"ScalarAttributeType"` -} - -// String returns the string representation -func (s AttributeDefinition) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttributeDefinition) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AttributeDefinition) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AttributeDefinition"} - if s.AttributeName == nil { - invalidParams.Add(request.NewErrParamRequired("AttributeName")) - } - if s.AttributeName != nil && len(*s.AttributeName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AttributeName", 1)) - } - if s.AttributeType == nil { - invalidParams.Add(request.NewErrParamRequired("AttributeType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the data for an attribute. You can set one, and only one, of the -// elements. -// -// Each attribute in an item is a name-value pair. An attribute can be single-valued -// or multi-valued set. For example, a book item can have title and authors -// attributes. Each book has one title but can have many authors. The multi-valued -// attribute is a set; duplicate values are not allowed. -type AttributeValue struct { - _ struct{} `type:"structure"` - - // A Binary data type. - // - // B is automatically base64 encoded/decoded by the SDK. - B []byte `type:"blob"` - - // A Boolean data type. - BOOL *bool `type:"boolean"` - - // A Binary Set data type. - BS [][]byte `type:"list"` - - // A List of attribute values. - L []*AttributeValue `type:"list"` - - // A Map of attribute values. - M map[string]*AttributeValue `type:"map"` - - // A Number data type. - N *string `type:"string"` - - // A Number Set data type. - NS []*string `type:"list"` - - // A Null data type. - NULL *bool `type:"boolean"` - - // A String data type. - S *string `type:"string"` - - // A String Set data type. - SS []*string `type:"list"` -} - -// String returns the string representation -func (s AttributeValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttributeValue) GoString() string { - return s.String() -} - -// For the UpdateItem operation, represents the attributes to be modified, the -// action to perform on each, and the new value for each. -// -// You cannot use UpdateItem to update any primary key attributes. Instead, -// you will need to delete the item, and then use PutItem to create a new item -// with new attributes. -// -// Attribute values cannot be null; string and binary type attributes must -// have lengths greater than zero; and set type attributes must not be empty. -// Requests with empty values will be rejected with a ValidationException exception. -type AttributeValueUpdate struct { - _ struct{} `type:"structure"` - - // Specifies how to perform the update. Valid values are PUT (default), DELETE, - // and ADD. The behavior depends on whether the specified primary key already - // exists in the table. - // - // If an item with the specified Key is found in the table: - // - // PUT - Adds the specified attribute to the item. If the attribute already - // exists, it is replaced by the new value. - // - // DELETE - If no value is specified, the attribute and its value are removed - // from the item. The data type of the specified value must match the existing - // value's data type. - // - // If a set of values is specified, then those values are subtracted from the - // old set. For example, if the attribute value was the set [a,b,c] and the - // DELETE action specified [a,c], then the final attribute value would be [b]. - // Specifying an empty set is an error. - // - // ADD - If the attribute does not already exist, then the attribute and - // its values are added to the item. If the attribute does exist, then the behavior - // of ADD depends on the data type of the attribute: - // - // If the existing attribute is a number, and if Value is also a number, - // then the Value is mathematically added to the existing attribute. If Value - // is a negative number, then it is subtracted from the existing attribute. - // - // If you use ADD to increment or decrement a number value for an item that - // doesn't exist before the update, DynamoDB uses 0 as the initial value. - // - // In addition, if you use ADD to update an existing item, and intend to increment - // or decrement an attribute value which does not yet exist, DynamoDB uses 0 - // as the initial value. For example, suppose that the item you want to update - // does not yet have an attribute named itemcount, but you decide to ADD the - // number 3 to this attribute anyway, even though it currently does not exist. - // DynamoDB will create the itemcount attribute, set its initial value to 0, - // and finally add 3 to it. The result will be a new itemcount attribute in - // the item, with a value of 3. - // - // If the existing data type is a set, and if the Value is also a set, then - // the Value is added to the existing set. (This is a set operation, not mathematical - // addition.) For example, if the attribute value was the set [1,2], and the - // ADD action specified [3], then the final attribute value would be [1,2,3]. - // An error occurs if an Add action is specified for a set attribute and the - // attribute type specified does not match the existing set type. - // - // Both sets must have the same primitive data type. For example, if the existing - // data type is a set of strings, the Value must also be a set of strings. The - // same holds true for number sets and binary sets. - // - // This action is only valid for an existing attribute whose data type is - // number or is a set. Do not use ADD for any other data types. - // - // If no item with the specified Key is found: - // - // PUT - DynamoDB creates a new item with the specified primary key, and - // then adds the attribute. - // - // DELETE - Nothing happens; there is no attribute to delete. - // - // ADD - DynamoDB creates an item with the supplied primary key and number - // (or set of numbers) for the attribute value. The only data types allowed - // are number and number set; no other data types can be specified. - Action *string `type:"string" enum:"AttributeAction"` - - // Represents the data for an attribute. You can set one, and only one, of the - // elements. - // - // Each attribute in an item is a name-value pair. An attribute can be single-valued - // or multi-valued set. For example, a book item can have title and authors - // attributes. Each book has one title but can have many authors. The multi-valued - // attribute is a set; duplicate values are not allowed. - Value *AttributeValue `type:"structure"` -} - -// String returns the string representation -func (s AttributeValueUpdate) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttributeValueUpdate) GoString() string { - return s.String() -} - -// Represents the input of a BatchGetItem operation. -type BatchGetItemInput struct { - _ struct{} `type:"structure"` - - // A map of one or more table names and, for each table, a map that describes - // one or more items to retrieve from that table. Each table name can be used - // only once per BatchGetItem request. - // - // Each element in the map of items to retrieve consists of the following: - // - // ConsistentRead - If true, a strongly consistent read is used; if false - // (the default), an eventually consistent read is used. - // - // ExpressionAttributeNames - One or more substitution tokens for attribute - // names in the ProjectionExpression parameter. The following are some use cases - // for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - // - // Keys - An array of primary key attribute values that define specific - // items in the table. For each primary key, you must provide all of the key - // attributes. For example, with a simple primary key, you only need to provide - // the partition key value. For a composite key, you must provide both the partition - // key value and the sort key value. - // - // ProjectionExpression - A string that identifies one or more attributes - // to retrieve from the table. These attributes can include scalars, sets, or - // elements of a JSON document. The attributes in the expression must be separated - // by commas. - // - // If no attribute names are specified, then all attributes will be returned. - // If any of the requested attributes are not found, they will not appear in - // the result. - // - // For more information, see Accessing Item Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - // - // AttributesToGet - - // - // This is a legacy parameter, for backward compatibility. New applications - // should use ProjectionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // This parameter allows you to retrieve attributes of type List or Map; however, - // it cannot retrieve individual elements within a List or a Map. - // - // The names of one or more attributes to retrieve. If no attribute names - // are provided, then all attributes will be returned. If any of the requested - // attributes are not found, they will not appear in the result. - // - // Note that AttributesToGet has no effect on provisioned throughput consumption. - // DynamoDB determines capacity units consumed based on item size, not on the - // amount of data that is returned to an application. - // - // RequestItems is a required field - RequestItems map[string]*KeysAndAttributes `min:"1" type:"map" required:"true"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` -} - -// String returns the string representation -func (s BatchGetItemInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BatchGetItemInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *BatchGetItemInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "BatchGetItemInput"} - if s.RequestItems == nil { - invalidParams.Add(request.NewErrParamRequired("RequestItems")) - } - if s.RequestItems != nil && len(s.RequestItems) < 1 { - invalidParams.Add(request.NewErrParamMinLen("RequestItems", 1)) - } - if s.RequestItems != nil { - for i, v := range s.RequestItems { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "RequestItems", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a BatchGetItem operation. -type BatchGetItemOutput struct { - _ struct{} `type:"structure"` - - // The read capacity units consumed by the operation. - // - // Each element consists of: - // - // TableName - The table that consumed the provisioned throughput. - // - // CapacityUnits - The total number of capacity units consumed. - ConsumedCapacity []*ConsumedCapacity `type:"list"` - - // A map of table name to a list of items. Each object in Responses consists - // of a table name, along with a map of attribute data consisting of the data - // type and attribute value. - Responses map[string][]map[string]*AttributeValue `type:"map"` - - // A map of tables and their respective keys that were not processed with the - // current response. The UnprocessedKeys value is in the same form as RequestItems, - // so the value can be provided directly to a subsequent BatchGetItem operation. - // For more information, see RequestItems in the Request Parameters section. - // - // Each element consists of: - // - // Keys - An array of primary key attribute values that define specific - // items in the table. - // - // AttributesToGet - One or more attributes to be retrieved from the table - // or index. By default, all attributes are returned. If a requested attribute - // is not found, it does not appear in the result. - // - // ConsistentRead - The consistency of a read operation. If set to true, - // then a strongly consistent read is used; otherwise, an eventually consistent - // read is used. - // - // If there are no unprocessed keys remaining, the response contains an empty - // UnprocessedKeys map. - UnprocessedKeys map[string]*KeysAndAttributes `min:"1" type:"map"` -} - -// String returns the string representation -func (s BatchGetItemOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BatchGetItemOutput) GoString() string { - return s.String() -} - -// Represents the input of a BatchWriteItem operation. -type BatchWriteItemInput struct { - _ struct{} `type:"structure"` - - // A map of one or more table names and, for each table, a list of operations - // to be performed (DeleteRequest or PutRequest). Each element in the map consists - // of the following: - // - // DeleteRequest - Perform a DeleteItem operation on the specified item. - // The item to be deleted is identified by a Key subelement: - // - // Key - A map of primary key attribute values that uniquely identify the - // ! item. Each entry in this map consists of an attribute name and an attribute - // value. For each primary key, you must provide all of the key attributes. - // For example, with a simple primary key, you only need to provide a value - // for the partition key. For a composite primary key, you must provide values - // for both the partition key and the sort key. - // - // PutRequest - Perform a PutItem operation on the specified item. The - // item to be put is identified by an Item subelement: - // - // Item - A map of attributes and their values. Each entry in this map consists - // of an attribute name and an attribute value. Attribute values must not be - // null; string and binary type attributes must have lengths greater than zero; - // and set type attributes must not be empty. Requests that contain empty values - // will be rejected with a ValidationException exception. - // - // If you specify any attributes that are part of an index key, then the data - // types for those attributes must match those of the schema in the table's - // attribute definition. - // - // RequestItems is a required field - RequestItems map[string][]*WriteRequest `min:"1" type:"map" required:"true"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - - // Determines whether item collection metrics are returned. If set to SIZE, - // the response includes statistics about item collections, if any, that were - // modified during the operation are returned in the response. If set to NONE - // (the default), no statistics are returned. - ReturnItemCollectionMetrics *string `type:"string" enum:"ReturnItemCollectionMetrics"` -} - -// String returns the string representation -func (s BatchWriteItemInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BatchWriteItemInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *BatchWriteItemInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "BatchWriteItemInput"} - if s.RequestItems == nil { - invalidParams.Add(request.NewErrParamRequired("RequestItems")) - } - if s.RequestItems != nil && len(s.RequestItems) < 1 { - invalidParams.Add(request.NewErrParamMinLen("RequestItems", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a BatchWriteItem operation. -type BatchWriteItemOutput struct { - _ struct{} `type:"structure"` - - // The capacity units consumed by the operation. - // - // Each element consists of: - // - // TableName - The table that consumed the provisioned throughput. - // - // CapacityUnits - The total number of capacity units consumed. - ConsumedCapacity []*ConsumedCapacity `type:"list"` - - // A list of tables that were processed by BatchWriteItem and, for each table, - // information about any item collections that were affected by individual DeleteItem - // or PutItem operations. - // - // Each entry consists of the following subelements: - // - // ItemCollectionKey - The partition key value of the item collection. This - // is the same as the partition key value of the item. - // - // SizeEstimateRange - An estimate of item collection size, expressed in - // GB. This is a two-element array containing a lower bound and an upper bound - // for the estimate. The estimate includes the size of all the items in the - // table, plus the size of all attributes projected into all of the local secondary - // indexes on the table. Use this estimate to measure whether a local secondary - // index is approaching its size limit. - // - // The estimate is subject to change over time; therefore, do not rely on the - // precision or accuracy of the estimate. - ItemCollectionMetrics map[string][]*ItemCollectionMetrics `type:"map"` - - // A map of tables and requests against those tables that were not processed. - // The UnprocessedItems value is in the same form as RequestItems, so you can - // provide this value directly to a subsequent BatchGetItem operation. For more - // information, see RequestItems in the Request Parameters section. - // - // Each UnprocessedItems entry consists of a table name and, for that table, - // a list of operations to perform (DeleteRequest or PutRequest). - // - // DeleteRequest - Perform a DeleteItem operation on the specified item. - // The item to be deleted is identified by a Key subelement: - // - // Key - A map of primary key attribute values that uniquely identify the - // item. Each entry in this map consists of an attribute name and an attribute - // value. - // - // PutRequest - Perform a PutItem operation on the specified item. The - // item to be put is identified by an Item subelement: - // - // Item - A map of attributes and their values. Each entry in this map consists - // of an attribute name and an attribute value. Attribute values must not be - // null; string and binary type attributes must have lengths greater than zero; - // and set type attributes must not be empty. Requests that contain empty values - // will be rejected with a ValidationException exception. - // - // If you specify any attributes that are part of an index key, then the data - // types for those attributes must match those of the schema in the table's - // attribute definition. - // - // If there are no unprocessed items remaining, the response contains an - // empty UnprocessedItems map. - UnprocessedItems map[string][]*WriteRequest `min:"1" type:"map"` -} - -// String returns the string representation -func (s BatchWriteItemOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BatchWriteItemOutput) GoString() string { - return s.String() -} - -// Represents the amount of provisioned throughput capacity consumed on a table -// or an index. -type Capacity struct { - _ struct{} `type:"structure"` - - // The total number of capacity units consumed on a table or an index. - CapacityUnits *float64 `type:"double"` -} - -// String returns the string representation -func (s Capacity) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Capacity) GoString() string { - return s.String() -} - -// Represents the selection criteria for a Query or Scan operation: -// -// For a Query operation, Condition is used for specifying the KeyConditions -// to use when querying a table or an index. For KeyConditions, only the following -// comparison operators are supported: -// -// EQ | LE | LT | GE | GT | BEGINS_WITH | BETWEEN -// -// Condition is also used in a QueryFilter, which evaluates the query results -// and returns only the desired values. -// -// For a Scan operation, Condition is used in a ScanFilter, which evaluates -// the scan results and returns only the desired values. -type Condition struct { - _ struct{} `type:"structure"` - - // One or more values to evaluate against the supplied attribute. The number - // of values in the list depends on the ComparisonOperator being used. - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For Binary, DynamoDB treats each byte of the binary data as unsigned when - // it compares binary values. - AttributeValueList []*AttributeValue `type:"list"` - - // A comparator for evaluating attributes. For example, equals, greater than, - // less than, etc. - // - // The following comparison operators are available: - // - // EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS - // | BEGINS_WITH | IN | BETWEEN - // - // The following are descriptions of each comparison operator. - // - // EQ : Equal. EQ is supported for all datatypes, including lists and maps. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, Binary, String Set, Number Set, or Binary Set. If an item - // contains an AttributeValue element of a different type than the one provided - // in the request, the value does not match. For example, {"S":"6"} does not - // equal {"N":"6"}. Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // NE : Not equal. NE is supported for all datatypes, including lists and - // maps. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, Binary, String Set, Number Set, or Binary Set. If an item contains - // an AttributeValue of a different type than the one provided in the request, - // the value does not match. For example, {"S":"6"} does not equal {"N":"6"}. - // Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // LE : Less than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // LT : Less than. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GE : Greater than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GT : Greater than. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // NOT_NULL : The attribute exists. NOT_NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the existence of an attribute, not its data type. - // If the data type of attribute "a" is null, and you evaluate it using NOT_NULL, - // the result is a Boolean true. This result is because the attribute "a" exists; - // its data type is not relevant to the NOT_NULL comparison operator. - // - // NULL : The attribute does not exist. NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the nonexistence of an attribute, not its data - // type. If the data type of attribute "a" is null, and you evaluate it using - // NULL, the result is a Boolean false. This is because the attribute "a" exists; - // its data type is not relevant to the NULL comparison operator. - // - // CONTAINS : Checks for a subsequence, or value in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is of type String, then the operator checks for a substring match. - // If the target attribute of the comparison is of type Binary, then the operator - // looks for a subsequence of the target that matches the input. If the target - // attribute of the comparison is a set ("SS", "NS", or "BS"), then the operator - // evaluates to true if it finds an exact match with any member of the set. - // - // CONTAINS is supported for lists: When evaluating "a CONTAINS b", "a" can - // be a list; however, "b" cannot be a set, a map, or a list. - // - // NOT_CONTAINS : Checks for absence of a subsequence, or absence of a value - // in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is a String, then the operator checks for the absence of a substring - // match. If the target attribute of the comparison is Binary, then the operator - // checks for the absence of a subsequence of the target that matches the input. - // If the target attribute of the comparison is a set ("SS", "NS", or "BS"), - // then the operator evaluates to true if it does not find an exact match with - // any member of the set. - // - // NOT_CONTAINS is supported for lists: When evaluating "a NOT CONTAINS b", - // "a" can be a list; however, "b" cannot be a set, a map, or a list. - // - // BEGINS_WITH : Checks for a prefix. - // - // AttributeValueList can contain only one AttributeValue of type String or - // Binary (not a Number or a set type). The target attribute of the comparison - // must be of type String or Binary (not a Number or a set type). - // - // IN : Checks for matching elements within two sets. - // - // AttributeValueList can contain one or more AttributeValue elements of type - // String, Number, or Binary (not a set type). These attributes are compared - // against an existing set type attribute of an item. If any elements of the - // input set are present in the item attribute, the expression evaluates to - // true. - // - // BETWEEN : Greater than or equal to the first value, and less than or - // equal to the second value. - // - // AttributeValueList must contain two AttributeValue elements of the same - // type, either String, Number, or Binary (not a set type). A target attribute - // matches if the target value is greater than, or equal to, the first element - // and less than, or equal to, the second element. If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not compare to {"N":"6"}. Also, - // {"N":"6"} does not compare to {"NS":["6", "2", "1"]} - // - // For usage examples of AttributeValueList and ComparisonOperator, see Legacy - // Conditional Parameters (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html) - // in the Amazon DynamoDB Developer Guide. - // - // ComparisonOperator is a required field - ComparisonOperator *string `type:"string" required:"true" enum:"ComparisonOperator"` -} - -// String returns the string representation -func (s Condition) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Condition) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Condition) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Condition"} - if s.ComparisonOperator == nil { - invalidParams.Add(request.NewErrParamRequired("ComparisonOperator")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The capacity units consumed by an operation. The data returned includes the -// total provisioned throughput consumed, along with statistics for the table -// and any indexes involved in the operation. ConsumedCapacity is only returned -// if the request asked for it. For more information, see Provisioned Throughput -// (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html) -// in the Amazon DynamoDB Developer Guide. -type ConsumedCapacity struct { - _ struct{} `type:"structure"` - - // The total number of capacity units consumed by the operation. - CapacityUnits *float64 `type:"double"` - - // The amount of throughput consumed on each global index affected by the operation. - GlobalSecondaryIndexes map[string]*Capacity `type:"map"` - - // The amount of throughput consumed on each local index affected by the operation. - LocalSecondaryIndexes map[string]*Capacity `type:"map"` - - // The amount of throughput consumed on the table affected by the operation. - Table *Capacity `type:"structure"` - - // The name of the table that was affected by the operation. - TableName *string `min:"3" type:"string"` -} - -// String returns the string representation -func (s ConsumedCapacity) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ConsumedCapacity) GoString() string { - return s.String() -} - -// Represents a new global secondary index to be added to an existing table. -type CreateGlobalSecondaryIndexAction struct { - _ struct{} `type:"structure"` - - // The name of the global secondary index to be created. - // - // IndexName is a required field - IndexName *string `min:"3" type:"string" required:"true"` - - // The key schema for the global secondary index. - // - // KeySchema is a required field - KeySchema []*KeySchemaElement `min:"1" type:"list" required:"true"` - - // Represents attributes that are copied (projected) from the table into an - // index. These are in addition to the primary key attributes and index key - // attributes, which are automatically projected. - // - // Projection is a required field - Projection *Projection `type:"structure" required:"true"` - - // Represents the provisioned throughput settings for a specified table or index. - // The settings can be modified using the UpdateTable operation. - // - // For current minimum and maximum provisioned throughput values, see Limits - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProvisionedThroughput is a required field - ProvisionedThroughput *ProvisionedThroughput `type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateGlobalSecondaryIndexAction) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateGlobalSecondaryIndexAction) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateGlobalSecondaryIndexAction) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateGlobalSecondaryIndexAction"} - if s.IndexName == nil { - invalidParams.Add(request.NewErrParamRequired("IndexName")) - } - if s.IndexName != nil && len(*s.IndexName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("IndexName", 3)) - } - if s.KeySchema == nil { - invalidParams.Add(request.NewErrParamRequired("KeySchema")) - } - if s.KeySchema != nil && len(s.KeySchema) < 1 { - invalidParams.Add(request.NewErrParamMinLen("KeySchema", 1)) - } - if s.Projection == nil { - invalidParams.Add(request.NewErrParamRequired("Projection")) - } - if s.ProvisionedThroughput == nil { - invalidParams.Add(request.NewErrParamRequired("ProvisionedThroughput")) - } - if s.KeySchema != nil { - for i, v := range s.KeySchema { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "KeySchema", i), err.(request.ErrInvalidParams)) - } - } - } - if s.Projection != nil { - if err := s.Projection.Validate(); err != nil { - invalidParams.AddNested("Projection", err.(request.ErrInvalidParams)) - } - } - if s.ProvisionedThroughput != nil { - if err := s.ProvisionedThroughput.Validate(); err != nil { - invalidParams.AddNested("ProvisionedThroughput", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the input of a CreateTable operation. -type CreateTableInput struct { - _ struct{} `type:"structure"` - - // An array of attributes that describe the key schema for the table and indexes. - // - // AttributeDefinitions is a required field - AttributeDefinitions []*AttributeDefinition `type:"list" required:"true"` - - // One or more global secondary indexes (the maximum is five) to be created - // on the table. Each global secondary index in the array includes the following: - // - // IndexName - The name of the global secondary index. Must be unique only - // for this table. - // - // KeySchema - Specifies the key schema for the global secondary index. - // - // Projection - Specifies attributes that are copied (projected) from the - // table into the index. These are in addition to the primary key attributes - // and index key attributes, which are automatically projected. Each attribute - // specification is composed of: - // - // ProjectionType - One of the following: - // - // KEYS_ONLY - Only the index and primary keys are projected into the index. - // - // INCLUDE - Only the specified table attributes are projected into the - // index. The list of projected attributes are in NonKeyAttributes. - // - // ALL - All of the table attributes are projected into the index. - // - // NonKeyAttributes - A list of one or more non-key attribute names that - // are projected into the secondary index. The total count of attributes provided - // in NonKeyAttributes, summed across all of the secondary indexes, must not - // exceed 20. If you project the same attribute into two different indexes, - // this counts as two distinct attributes when determining the total. - // - // ProvisionedThroughput - The provisioned throughput settings for the - // global secondary index, consisting of read and write capacity units. - GlobalSecondaryIndexes []*GlobalSecondaryIndex `type:"list"` - - // Specifies the attributes that make up the primary key for a table or an index. - // The attributes in KeySchema must also be defined in the AttributeDefinitions - // array. For more information, see Data Model (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html) - // in the Amazon DynamoDB Developer Guide. - // - // Each KeySchemaElement in the array is composed of: - // - // AttributeName - The name of this key attribute. - // - // KeyType - The role that the key attribute will assume: - // - // HASH - partition key - // - // RANGE - sort key - // - // The partition key of an item is also known as its hash attribute. The - // term "hash attribute" derives from DynamoDB' usage of an internal hash function - // to evenly distribute data items across partitions, based on their partition - // key values. - // - // The sort key of an item is also known as its range attribute. The term "range - // attribute" derives from the way DynamoDB stores items with the same partition - // key physically close together, in sorted order by the sort key value. - // - // For a simple primary key (partition key), you must provide exactly one - // element with a KeyType of HASH. - // - // For a composite primary key (partition key and sort key), you must provide - // exactly two elements, in this order: The first element must have a KeyType - // of HASH, and the second element must have a KeyType of RANGE. - // - // For more information, see Specifying the Primary Key (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#WorkingWithTables.primary.key) - // in the Amazon DynamoDB Developer Guide. - // - // KeySchema is a required field - KeySchema []*KeySchemaElement `min:"1" type:"list" required:"true"` - - // One or more local secondary indexes (the maximum is five) to be created on - // the table. Each index is scoped to a given partition key value. There is - // a 10 GB size limit per partition key value; otherwise, the size of a local - // secondary index is unconstrained. - // - // Each local secondary index in the array includes the following: - // - // IndexName - The name of the local secondary index. Must be unique only - // for this table. - // - // KeySchema - Specifies the key schema for the local secondary index. - // The key schema must begin with the same partition key as the table. - // - // Projection - Specifies attributes that are copied (projected) from the - // table into the index. These are in addition to the primary key attributes - // and index key attributes, which are automatically projected. Each attribute - // specification is composed of: - // - // ProjectionType - One of the following: - // - // KEYS_ONLY - Only the index and primary keys are projected into the index. - // - // INCLUDE - Only the specified table attributes are projected into the - // index. The list of projected attributes are in NonKeyAttributes. - // - // ALL - All of the table attributes are projected into the index. - // - // NonKeyAttributes - A list of one or more non-key attribute names that - // are projected into the secondary index. The total count of attributes provided - // in NonKeyAttributes, summed across all of the secondary indexes, must not - // exceed 20. If you project the same attribute into two different indexes, - // this counts as two distinct attributes when determining the total. - LocalSecondaryIndexes []*LocalSecondaryIndex `type:"list"` - - // Represents the provisioned throughput settings for a specified table or index. - // The settings can be modified using the UpdateTable operation. - // - // For current minimum and maximum provisioned throughput values, see Limits - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProvisionedThroughput is a required field - ProvisionedThroughput *ProvisionedThroughput `type:"structure" required:"true"` - - // The settings for DynamoDB Streams on the table. These settings consist of: - // - // StreamEnabled - Indicates whether Streams is to be enabled (true) or - // disabled (false). - // - // StreamViewType - When an item in the table is modified, StreamViewType - // determines what information is written to the table's stream. Valid values - // for StreamViewType are: - // - // KEYS_ONLY - Only the key attributes of the modified item are written - // to the stream. - // - // NEW_IMAGE - The entire item, as it appears after it was modified, is - // written to the stream. - // - // OLD_IMAGE - The entire item, as it appeared before it was modified, is - // written to the stream. - // - // NEW_AND_OLD_IMAGES - Both the new and the old item images of the item - // are written to the stream. - StreamSpecification *StreamSpecification `type:"structure"` - - // The name of the table to create. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateTableInput"} - if s.AttributeDefinitions == nil { - invalidParams.Add(request.NewErrParamRequired("AttributeDefinitions")) - } - if s.KeySchema == nil { - invalidParams.Add(request.NewErrParamRequired("KeySchema")) - } - if s.KeySchema != nil && len(s.KeySchema) < 1 { - invalidParams.Add(request.NewErrParamMinLen("KeySchema", 1)) - } - if s.ProvisionedThroughput == nil { - invalidParams.Add(request.NewErrParamRequired("ProvisionedThroughput")) - } - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - if s.AttributeDefinitions != nil { - for i, v := range s.AttributeDefinitions { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "AttributeDefinitions", i), err.(request.ErrInvalidParams)) - } - } - } - if s.GlobalSecondaryIndexes != nil { - for i, v := range s.GlobalSecondaryIndexes { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "GlobalSecondaryIndexes", i), err.(request.ErrInvalidParams)) - } - } - } - if s.KeySchema != nil { - for i, v := range s.KeySchema { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "KeySchema", i), err.(request.ErrInvalidParams)) - } - } - } - if s.LocalSecondaryIndexes != nil { - for i, v := range s.LocalSecondaryIndexes { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "LocalSecondaryIndexes", i), err.(request.ErrInvalidParams)) - } - } - } - if s.ProvisionedThroughput != nil { - if err := s.ProvisionedThroughput.Validate(); err != nil { - invalidParams.AddNested("ProvisionedThroughput", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a CreateTable operation. -type CreateTableOutput struct { - _ struct{} `type:"structure"` - - // Represents the properties of a table. - TableDescription *TableDescription `type:"structure"` -} - -// String returns the string representation -func (s CreateTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTableOutput) GoString() string { - return s.String() -} - -// Represents a global secondary index to be deleted from an existing table. -type DeleteGlobalSecondaryIndexAction struct { - _ struct{} `type:"structure"` - - // The name of the global secondary index to be deleted. - // - // IndexName is a required field - IndexName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteGlobalSecondaryIndexAction) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteGlobalSecondaryIndexAction) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteGlobalSecondaryIndexAction) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteGlobalSecondaryIndexAction"} - if s.IndexName == nil { - invalidParams.Add(request.NewErrParamRequired("IndexName")) - } - if s.IndexName != nil && len(*s.IndexName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("IndexName", 3)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the input of a DeleteItem operation. -type DeleteItemInput struct { - _ struct{} `type:"structure"` - - // A condition that must be satisfied in order for a conditional DeleteItem - // to succeed. - // - // An expression can contain any of the following: - // - // Functions: attribute_exists | attribute_not_exists | attribute_type | - // contains | begins_with | size - // - // These function names are case-sensitive. - // - // Comparison operators: = | <> | < | > | <= | - // >= | BETWEEN | IN - // - // Logical operators: AND | OR | NOT - // - // For more information on condition expressions, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - // - // ConditionExpression replaces the legacy ConditionalOperator and Expected - // parameters. - ConditionExpression *string `type:"string"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ConditionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // A logical operator to apply to the conditions in the Expected map: - // - // AND - If all of the conditions evaluate to true, then the entire map - // evaluates to true. - // - // OR - If at least one of the conditions evaluate to true, then the entire - // map evaluates to true. - // - // If you omit ConditionalOperator, then AND is the default. - // - // The operation will succeed only if the entire map evaluates to true. - // - // This parameter does not support attributes of type List or Map. - ConditionalOperator *string `type:"string" enum:"ConditionalOperator"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ConditionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // A map of attribute/condition pairs. Expected provides a conditional block - // for the DeleteItem operation. - // - // Each element of Expected consists of an attribute name, a comparison operator, - // and one or more values. DynamoDB compares the attribute with the value(s) - // you supplied, using the comparison operator. For each Expected element, the - // result of the evaluation is either true or false. - // - // If you specify more than one element in the Expected map, then by default - // all of the conditions must evaluate to true. In other words, the conditions - // are ANDed together. (You can use the ConditionalOperator parameter to OR - // the conditions instead. If you do this, then at least one of the conditions - // must evaluate to true, rather than all of them.) - // - // If the Expected map evaluates to true, then the conditional operation succeeds; - // otherwise, it fails. - // - // Expected contains the following: - // - // AttributeValueList - One or more values to evaluate against the supplied - // attribute. The number of values in the list depends on the ComparisonOperator - // being used. - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For type Binary, DynamoDB treats each byte of the binary data as unsigned - // when it compares binary values. - // - // ComparisonOperator - A comparator for evaluating attributes in the AttributeValueList. - // When performing the comparison, DynamoDB uses strongly consistent reads. - // - // The following comparison operators are available: - // - // EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS - // | BEGINS_WITH | IN | BETWEEN - // - // The following are descriptions of each comparison operator. - // - // EQ : Equal. EQ is supported for all datatypes, including lists and maps. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, Binary, String Set, Number Set, or Binary Set. If an item - // contains an AttributeValue element of a different type than the one provided - // in the request, the value does not match. For example, {"S":"6"} does not - // equal {"N":"6"}. Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // NE : Not equal. NE is supported for all datatypes, including lists and - // maps. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, Binary, String Set, Number Set, or Binary Set. If an item contains - // an AttributeValue of a different type than the one provided in the request, - // the value does not match. For example, {"S":"6"} does not equal {"N":"6"}. - // Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // LE : Less than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // LT : Less than. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GE : Greater than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GT : Greater than. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // NOT_NULL : The attribute exists. NOT_NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the existence of an attribute, not its data type. - // If the data type of attribute "a" is null, and you evaluate it using NOT_NULL, - // the result is a Boolean true. This result is because the attribute "a" exists; - // its data type is not relevant to the NOT_NULL comparison operator. - // - // NULL : The attribute does not exist. NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the nonexistence of an attribute, not its data - // type. If the data type of attribute "a" is null, and you evaluate it using - // NULL, the result is a Boolean false. This is because the attribute "a" exists; - // its data type is not relevant to the NULL comparison operator. - // - // CONTAINS : Checks for a subsequence, or value in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is of type String, then the operator checks for a substring match. - // If the target attribute of the comparison is of type Binary, then the operator - // looks for a subsequence of the target that matches the input. If the target - // attribute of the comparison is a set ("SS", "NS", or "BS"), then the operator - // evaluates to true if it finds an exact match with any member of the set. - // - // CONTAINS is supported for lists: When evaluating "a CONTAINS b", "a" can - // be a list; however, "b" cannot be a set, a map, or a list. - // - // NOT_CONTAINS : Checks for absence of a subsequence, or absence of a value - // in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is a String, then the operator checks for the absence of a substring - // match. If the target attribute of the comparison is Binary, then the operator - // checks for the absence of a subsequence of the target that matches the input. - // If the target attribute of the comparison is a set ("SS", "NS", or "BS"), - // then the operator evaluates to true if it does not find an exact match with - // any member of the set. - // - // NOT_CONTAINS is supported for lists: When evaluating "a NOT CONTAINS b", - // "a" can be a list; however, "b" cannot be a set, a map, or a list. - // - // BEGINS_WITH : Checks for a prefix. - // - // AttributeValueList can contain only one AttributeValue of type String or - // Binary (not a Number or a set type). The target attribute of the comparison - // must be of type String or Binary (not a Number or a set type). - // - // IN : Checks for matching elements within two sets. - // - // AttributeValueList can contain one or more AttributeValue elements of type - // String, Number, or Binary (not a set type). These attributes are compared - // against an existing set type attribute of an item. If any elements of the - // input set are present in the item attribute, the expression evaluates to - // true. - // - // BETWEEN : Greater than or equal to the first value, and less than or - // equal to the second value. - // - // AttributeValueList must contain two AttributeValue elements of the same - // type, either String, Number, or Binary (not a set type). A target attribute - // matches if the target value is greater than, or equal to, the first element - // and less than, or equal to, the second element. If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not compare to {"N":"6"}. Also, - // {"N":"6"} does not compare to {"NS":["6", "2", "1"]} - // - // For usage examples of AttributeValueList and ComparisonOperator, see - // Legacy Conditional Parameters (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html) - // in the Amazon DynamoDB Developer Guide. - // - // For backward compatibility with previous DynamoDB releases, the following - // parameters can be used instead of AttributeValueList and ComparisonOperator: - // - // Value - A value for DynamoDB to compare with an attribute. - // - // Exists - A Boolean value that causes DynamoDB to evaluate the value before - // attempting the conditional operation: - // - // If Exists is true, DynamoDB will check to see if that attribute value - // already exists in the table. If it is found, then the condition evaluates - // to true; otherwise the condition evaluate to false. - // - // If Exists is false, DynamoDB assumes that the attribute value does not - // exist in the table. If in fact the value does not exist, then the assumption - // is valid and the condition evaluates to true. If the value is found, despite - // the assumption that it does not exist, the condition evaluates to false. - // - // Note that the default value for Exists is true. - // - // The Value and Exists parameters are incompatible with AttributeValueList - // and ComparisonOperator. Note that if you use both sets of parameters at once, - // DynamoDB will return a ValidationException exception. - // - // This parameter does not support attributes of type List or Map. - Expected map[string]*ExpectedAttributeValue `type:"map"` - - // One or more substitution tokens for attribute names in an expression. The - // following are some use cases for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeNames map[string]*string `type:"map"` - - // One or more values that can be substituted in an expression. - // - // Use the : (colon) character in an expression to dereference an attribute - // value. For example, suppose that you wanted to check whether the value of - // the ProductStatus attribute was one of the following: - // - // Available | Backordered | Discontinued - // - // You would first need to specify ExpressionAttributeValues as follows: - // - // { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} - // } - // - // You could then use these values in an expression, such as this: - // - // ProductStatus IN (:avail, :back, :disc) - // - // For more information on expression attribute values, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeValues map[string]*AttributeValue `type:"map"` - - // A map of attribute names to AttributeValue objects, representing the primary - // key of the item to delete. - // - // For the primary key, you must provide all of the attributes. For example, - // with a simple primary key, you only need to provide a value for the partition - // key. For a composite primary key, you must provide values for both the partition - // key and the sort key. - // - // Key is a required field - Key map[string]*AttributeValue `type:"map" required:"true"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - - // Determines whether item collection metrics are returned. If set to SIZE, - // the response includes statistics about item collections, if any, that were - // modified during the operation are returned in the response. If set to NONE - // (the default), no statistics are returned. - ReturnItemCollectionMetrics *string `type:"string" enum:"ReturnItemCollectionMetrics"` - - // Use ReturnValues if you want to get the item attributes as they appeared - // before they were deleted. For DeleteItem, the valid values are: - // - // NONE - If ReturnValues is not specified, or if its value is NONE, then - // nothing is returned. (This setting is the default for ReturnValues.) - // - // ALL_OLD - The content of the old item is returned. - // - // The ReturnValues parameter is used by several DynamoDB operations; however, - // DeleteItem does not recognize any values other than NONE or ALL_OLD. - ReturnValues *string `type:"string" enum:"ReturnValue"` - - // The name of the table from which to delete the item. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteItemInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteItemInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteItemInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteItemInput"} - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a DeleteItem operation. -type DeleteItemOutput struct { - _ struct{} `type:"structure"` - - // A map of attribute names to AttributeValue objects, representing the item - // as it appeared before the DeleteItem operation. This map appears in the response - // only if ReturnValues was specified as ALL_OLD in the request. - Attributes map[string]*AttributeValue `type:"map"` - - // The capacity units consumed by an operation. The data returned includes the - // total provisioned throughput consumed, along with statistics for the table - // and any indexes involved in the operation. ConsumedCapacity is only returned - // if the request asked for it. For more information, see Provisioned Throughput - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html) - // in the Amazon DynamoDB Developer Guide. - ConsumedCapacity *ConsumedCapacity `type:"structure"` - - // Information about item collections, if any, that were affected by the operation. - // ItemCollectionMetrics is only returned if the request asked for it. If the - // table does not have any local secondary indexes, this information is not - // returned in the response. - // - // Each ItemCollectionMetrics element consists of: - // - // ItemCollectionKey - The partition key value of the item collection. This - // is the same as the partition key value of the item itself. - // - // SizeEstimateRange - An estimate of item collection size, in gigabytes. - // This value is a two-element array containing a lower bound and an upper bound - // for the estimate. The estimate includes the size of all the items in the - // table, plus the size of all attributes projected into all of the local secondary - // indexes on that table. Use this estimate to measure whether a local secondary - // index is approaching its size limit. - // - // The estimate is subject to change over time; therefore, do not rely on the - // precision or accuracy of the estimate. - ItemCollectionMetrics *ItemCollectionMetrics `type:"structure"` -} - -// String returns the string representation -func (s DeleteItemOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteItemOutput) GoString() string { - return s.String() -} - -// Represents a request to perform a DeleteItem operation on an item. -type DeleteRequest struct { - _ struct{} `type:"structure"` - - // A map of attribute name to attribute values, representing the primary key - // of the item to delete. All of the table's primary key attributes must be - // specified, and their data types must match those of the table's key schema. - // - // Key is a required field - Key map[string]*AttributeValue `type:"map" required:"true"` -} - -// String returns the string representation -func (s DeleteRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteRequest) GoString() string { - return s.String() -} - -// Represents the input of a DeleteTable operation. -type DeleteTableInput struct { - _ struct{} `type:"structure"` - - // The name of the table to delete. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteTableInput"} - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a DeleteTable operation. -type DeleteTableOutput struct { - _ struct{} `type:"structure"` - - // Represents the properties of a table. - TableDescription *TableDescription `type:"structure"` -} - -// String returns the string representation -func (s DeleteTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTableOutput) GoString() string { - return s.String() -} - -// Represents the input of a DescribeLimits operation. Has no content. -type DescribeLimitsInput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DescribeLimitsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeLimitsInput) GoString() string { - return s.String() -} - -// Represents the output of a DescribeLimits operation. -type DescribeLimitsOutput struct { - _ struct{} `type:"structure"` - - // The maximum total read capacity units that your account allows you to provision - // across all of your tables in this region. - AccountMaxReadCapacityUnits *int64 `min:"1" type:"long"` - - // The maximum total write capacity units that your account allows you to provision - // across all of your tables in this region. - AccountMaxWriteCapacityUnits *int64 `min:"1" type:"long"` - - // The maximum read capacity units that your account allows you to provision - // for a new table that you are creating in this region, including the read - // capacity units provisioned for its global secondary indexes (GSIs). - TableMaxReadCapacityUnits *int64 `min:"1" type:"long"` - - // The maximum write capacity units that your account allows you to provision - // for a new table that you are creating in this region, including the write - // capacity units provisioned for its global secondary indexes (GSIs). - TableMaxWriteCapacityUnits *int64 `min:"1" type:"long"` -} - -// String returns the string representation -func (s DescribeLimitsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeLimitsOutput) GoString() string { - return s.String() -} - -// Represents the input of a DescribeTable operation. -type DescribeTableInput struct { - _ struct{} `type:"structure"` - - // The name of the table to describe. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeTableInput"} - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a DescribeTable operation. -type DescribeTableOutput struct { - _ struct{} `type:"structure"` - - // Represents the properties of a table. - Table *TableDescription `type:"structure"` -} - -// String returns the string representation -func (s DescribeTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeTableOutput) GoString() string { - return s.String() -} - -// Represents a condition to be compared with an attribute value. This condition -// can be used with DeleteItem, PutItem or UpdateItem operations; if the comparison -// evaluates to true, the operation succeeds; if not, the operation fails. You -// can use ExpectedAttributeValue in one of two different ways: -// -// Use AttributeValueList to specify one or more values to compare against -// an attribute. Use ComparisonOperator to specify how you want to perform the -// comparison. If the comparison evaluates to true, then the conditional operation -// succeeds. -// -// Use Value to specify a value that DynamoDB will compare against an attribute. -// If the values match, then ExpectedAttributeValue evaluates to true and the -// conditional operation succeeds. Optionally, you can also set Exists to false, -// indicating that you do not expect to find the attribute value in the table. -// In this case, the conditional operation succeeds only if the comparison evaluates -// to false. -// -// Value and Exists are incompatible with AttributeValueList and ComparisonOperator. -// Note that if you use both sets of parameters at once, DynamoDB will return -// a ValidationException exception. -type ExpectedAttributeValue struct { - _ struct{} `type:"structure"` - - // One or more values to evaluate against the supplied attribute. The number - // of values in the list depends on the ComparisonOperator being used. - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For Binary, DynamoDB treats each byte of the binary data as unsigned when - // it compares binary values. - // - // For information on specifying data types in JSON, see JSON Data Format (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataFormat.html) - // in the Amazon DynamoDB Developer Guide. - AttributeValueList []*AttributeValue `type:"list"` - - // A comparator for evaluating attributes in the AttributeValueList. For example, - // equals, greater than, less than, etc. - // - // The following comparison operators are available: - // - // EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS - // | BEGINS_WITH | IN | BETWEEN - // - // The following are descriptions of each comparison operator. - // - // EQ : Equal. EQ is supported for all datatypes, including lists and maps. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, Binary, String Set, Number Set, or Binary Set. If an item - // contains an AttributeValue element of a different type than the one provided - // in the request, the value does not match. For example, {"S":"6"} does not - // equal {"N":"6"}. Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // NE : Not equal. NE is supported for all datatypes, including lists and - // maps. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, Binary, String Set, Number Set, or Binary Set. If an item contains - // an AttributeValue of a different type than the one provided in the request, - // the value does not match. For example, {"S":"6"} does not equal {"N":"6"}. - // Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // LE : Less than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // LT : Less than. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GE : Greater than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GT : Greater than. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // NOT_NULL : The attribute exists. NOT_NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the existence of an attribute, not its data type. - // If the data type of attribute "a" is null, and you evaluate it using NOT_NULL, - // the result is a Boolean true. This result is because the attribute "a" exists; - // its data type is not relevant to the NOT_NULL comparison operator. - // - // NULL : The attribute does not exist. NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the nonexistence of an attribute, not its data - // type. If the data type of attribute "a" is null, and you evaluate it using - // NULL, the result is a Boolean false. This is because the attribute "a" exists; - // its data type is not relevant to the NULL comparison operator. - // - // CONTAINS : Checks for a subsequence, or value in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is of type String, then the operator checks for a substring match. - // If the target attribute of the comparison is of type Binary, then the operator - // looks for a subsequence of the target that matches the input. If the target - // attribute of the comparison is a set ("SS", "NS", or "BS"), then the operator - // evaluates to true if it finds an exact match with any member of the set. - // - // CONTAINS is supported for lists: When evaluating "a CONTAINS b", "a" can - // be a list; however, "b" cannot be a set, a map, or a list. - // - // NOT_CONTAINS : Checks for absence of a subsequence, or absence of a value - // in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is a String, then the operator checks for the absence of a substring - // match. If the target attribute of the comparison is Binary, then the operator - // checks for the absence of a subsequence of the target that matches the input. - // If the target attribute of the comparison is a set ("SS", "NS", or "BS"), - // then the operator evaluates to true if it does not find an exact match with - // any member of the set. - // - // NOT_CONTAINS is supported for lists: When evaluating "a NOT CONTAINS b", - // "a" can be a list; however, "b" cannot be a set, a map, or a list. - // - // BEGINS_WITH : Checks for a prefix. - // - // AttributeValueList can contain only one AttributeValue of type String or - // Binary (not a Number or a set type). The target attribute of the comparison - // must be of type String or Binary (not a Number or a set type). - // - // IN : Checks for matching elements within two sets. - // - // AttributeValueList can contain one or more AttributeValue elements of type - // String, Number, or Binary (not a set type). These attributes are compared - // against an existing set type attribute of an item. If any elements of the - // input set are present in the item attribute, the expression evaluates to - // true. - // - // BETWEEN : Greater than or equal to the first value, and less than or - // equal to the second value. - // - // AttributeValueList must contain two AttributeValue elements of the same - // type, either String, Number, or Binary (not a set type). A target attribute - // matches if the target value is greater than, or equal to, the first element - // and less than, or equal to, the second element. If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not compare to {"N":"6"}. Also, - // {"N":"6"} does not compare to {"NS":["6", "2", "1"]} - ComparisonOperator *string `type:"string" enum:"ComparisonOperator"` - - // Causes DynamoDB to evaluate the value before attempting a conditional operation: - // - // If Exists is true, DynamoDB will check to see if that attribute value - // already exists in the table. If it is found, then the operation succeeds. - // If it is not found, the operation fails with a ConditionalCheckFailedException. - // - // If Exists is false, DynamoDB assumes that the attribute value does not - // exist in the table. If in fact the value does not exist, then the assumption - // is valid and the operation succeeds. If the value is found, despite the assumption - // that it does not exist, the operation fails with a ConditionalCheckFailedException. - // - // The default setting for Exists is true. If you supply a Value all by itself, - // DynamoDB assumes the attribute exists: You don't have to set Exists to true, - // because it is implied. - // - // DynamoDB returns a ValidationException if: - // - // Exists is true but there is no Value to check. (You expect a value to - // exist, but don't specify what that value is.) - // - // Exists is false but you also provide a Value. (You cannot expect an attribute - // to have a value, while also expecting it not to exist.) - Exists *bool `type:"boolean"` - - // Represents the data for an attribute. You can set one, and only one, of the - // elements. - // - // Each attribute in an item is a name-value pair. An attribute can be single-valued - // or multi-valued set. For example, a book item can have title and authors - // attributes. Each book has one title but can have many authors. The multi-valued - // attribute is a set; duplicate values are not allowed. - Value *AttributeValue `type:"structure"` -} - -// String returns the string representation -func (s ExpectedAttributeValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ExpectedAttributeValue) GoString() string { - return s.String() -} - -// Represents the input of a GetItem operation. -type GetItemInput struct { - _ struct{} `type:"structure"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ProjectionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // This parameter allows you to retrieve attributes of type List or Map; however, - // it cannot retrieve individual elements within a List or a Map. - // - // The names of one or more attributes to retrieve. If no attribute names - // are provided, then all attributes will be returned. If any of the requested - // attributes are not found, they will not appear in the result. - // - // Note that AttributesToGet has no effect on provisioned throughput consumption. - // DynamoDB determines capacity units consumed based on item size, not on the - // amount of data that is returned to an application. - AttributesToGet []*string `min:"1" type:"list"` - - // Determines the read consistency model: If set to true, then the operation - // uses strongly consistent reads; otherwise, the operation uses eventually - // consistent reads. - ConsistentRead *bool `type:"boolean"` - - // One or more substitution tokens for attribute names in an expression. The - // following are some use cases for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeNames map[string]*string `type:"map"` - - // A map of attribute names to AttributeValue objects, representing the primary - // key of the item to retrieve. - // - // For the primary key, you must provide all of the attributes. For example, - // with a simple primary key, you only need to provide a value for the partition - // key. For a composite primary key, you must provide values for both the partition - // key and the sort key. - // - // Key is a required field - Key map[string]*AttributeValue `type:"map" required:"true"` - - // A string that identifies one or more attributes to retrieve from the table. - // These attributes can include scalars, sets, or elements of a JSON document. - // The attributes in the expression must be separated by commas. - // - // If no attribute names are specified, then all attributes will be returned. - // If any of the requested attributes are not found, they will not appear in - // the result. - // - // For more information, see Accessing Item Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProjectionExpression replaces the legacy AttributesToGet parameter. - ProjectionExpression *string `type:"string"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - - // The name of the table containing the requested item. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetItemInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetItemInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetItemInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetItemInput"} - if s.AttributesToGet != nil && len(s.AttributesToGet) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AttributesToGet", 1)) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a GetItem operation. -type GetItemOutput struct { - _ struct{} `type:"structure"` - - // The capacity units consumed by an operation. The data returned includes the - // total provisioned throughput consumed, along with statistics for the table - // and any indexes involved in the operation. ConsumedCapacity is only returned - // if the request asked for it. For more information, see Provisioned Throughput - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html) - // in the Amazon DynamoDB Developer Guide. - ConsumedCapacity *ConsumedCapacity `type:"structure"` - - // A map of attribute names to AttributeValue objects, as specified by AttributesToGet. - Item map[string]*AttributeValue `type:"map"` -} - -// String returns the string representation -func (s GetItemOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetItemOutput) GoString() string { - return s.String() -} - -// Represents the properties of a global secondary index. -type GlobalSecondaryIndex struct { - _ struct{} `type:"structure"` - - // The name of the global secondary index. The name must be unique among all - // other indexes on this table. - // - // IndexName is a required field - IndexName *string `min:"3" type:"string" required:"true"` - - // The complete key schema for a global secondary index, which consists of one - // or more pairs of attribute names and key types: - // - // HASH - partition key - // - // RANGE - sort key - // - // The partition key of an item is also known as its hash attribute. The - // term "hash attribute" derives from DynamoDB' usage of an internal hash function - // to evenly distribute data items across partitions, based on their partition - // key values. - // - // The sort key of an item is also known as its range attribute. The term "range - // attribute" derives from the way DynamoDB stores items with the same partition - // key physically close together, in sorted order by the sort key value. - // - // KeySchema is a required field - KeySchema []*KeySchemaElement `min:"1" type:"list" required:"true"` - - // Represents attributes that are copied (projected) from the table into an - // index. These are in addition to the primary key attributes and index key - // attributes, which are automatically projected. - // - // Projection is a required field - Projection *Projection `type:"structure" required:"true"` - - // Represents the provisioned throughput settings for a specified table or index. - // The settings can be modified using the UpdateTable operation. - // - // For current minimum and maximum provisioned throughput values, see Limits - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProvisionedThroughput is a required field - ProvisionedThroughput *ProvisionedThroughput `type:"structure" required:"true"` -} - -// String returns the string representation -func (s GlobalSecondaryIndex) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GlobalSecondaryIndex) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GlobalSecondaryIndex) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GlobalSecondaryIndex"} - if s.IndexName == nil { - invalidParams.Add(request.NewErrParamRequired("IndexName")) - } - if s.IndexName != nil && len(*s.IndexName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("IndexName", 3)) - } - if s.KeySchema == nil { - invalidParams.Add(request.NewErrParamRequired("KeySchema")) - } - if s.KeySchema != nil && len(s.KeySchema) < 1 { - invalidParams.Add(request.NewErrParamMinLen("KeySchema", 1)) - } - if s.Projection == nil { - invalidParams.Add(request.NewErrParamRequired("Projection")) - } - if s.ProvisionedThroughput == nil { - invalidParams.Add(request.NewErrParamRequired("ProvisionedThroughput")) - } - if s.KeySchema != nil { - for i, v := range s.KeySchema { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "KeySchema", i), err.(request.ErrInvalidParams)) - } - } - } - if s.Projection != nil { - if err := s.Projection.Validate(); err != nil { - invalidParams.AddNested("Projection", err.(request.ErrInvalidParams)) - } - } - if s.ProvisionedThroughput != nil { - if err := s.ProvisionedThroughput.Validate(); err != nil { - invalidParams.AddNested("ProvisionedThroughput", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the properties of a global secondary index. -type GlobalSecondaryIndexDescription struct { - _ struct{} `type:"structure"` - - // Indicates whether the index is currently backfilling. Backfilling is the - // process of reading items from the table and determining whether they can - // be added to the index. (Not all items will qualify: For example, a partition - // key cannot have any duplicate values.) If an item can be added to the index, - // DynamoDB will do so. After all items have been processed, the backfilling - // operation is complete and Backfilling is false. - // - // For indexes that were created during a CreateTable operation, the Backfilling - // attribute does not appear in the DescribeTable output. - Backfilling *bool `type:"boolean"` - - // The Amazon Resource Name (ARN) that uniquely identifies the index. - IndexArn *string `type:"string"` - - // The name of the global secondary index. - IndexName *string `min:"3" type:"string"` - - // The total size of the specified index, in bytes. DynamoDB updates this value - // approximately every six hours. Recent changes might not be reflected in this - // value. - IndexSizeBytes *int64 `type:"long"` - - // The current state of the global secondary index: - // - // CREATING - The index is being created. - // - // UPDATING - The index is being updated. - // - // DELETING - The index is being deleted. - // - // ACTIVE - The index is ready for use. - IndexStatus *string `type:"string" enum:"IndexStatus"` - - // The number of items in the specified index. DynamoDB updates this value approximately - // every six hours. Recent changes might not be reflected in this value. - ItemCount *int64 `type:"long"` - - // The complete key schema for a global secondary index, which consists of one - // or more pairs of attribute names and key types: - // - // HASH - partition key - // - // RANGE - sort key - // - // The partition key of an item is also known as its hash attribute. The - // term "hash attribute" derives from DynamoDB' usage of an internal hash function - // to evenly distribute data items across partitions, based on their partition - // key values. - // - // The sort key of an item is also known as its range attribute. The term "range - // attribute" derives from the way DynamoDB stores items with the same partition - // key physically close together, in sorted order by the sort key value. - KeySchema []*KeySchemaElement `min:"1" type:"list"` - - // Represents attributes that are copied (projected) from the table into an - // index. These are in addition to the primary key attributes and index key - // attributes, which are automatically projected. - Projection *Projection `type:"structure"` - - // Represents the provisioned throughput settings for the table, consisting - // of read and write capacity units, along with data about increases and decreases. - ProvisionedThroughput *ProvisionedThroughputDescription `type:"structure"` -} - -// String returns the string representation -func (s GlobalSecondaryIndexDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GlobalSecondaryIndexDescription) GoString() string { - return s.String() -} - -// Represents one of the following: -// -// A new global secondary index to be added to an existing table. -// -// New provisioned throughput parameters for an existing global secondary -// index. -// -// An existing global secondary index to be removed from an existing table. -type GlobalSecondaryIndexUpdate struct { - _ struct{} `type:"structure"` - - // The parameters required for creating a global secondary index on an existing - // table: - // - // IndexName - // - // KeySchema - // - // AttributeDefinitions - // - // Projection - // - // ProvisionedThroughput - Create *CreateGlobalSecondaryIndexAction `type:"structure"` - - // The name of an existing global secondary index to be removed. - Delete *DeleteGlobalSecondaryIndexAction `type:"structure"` - - // The name of an existing global secondary index, along with new provisioned - // throughput settings to be applied to that index. - Update *UpdateGlobalSecondaryIndexAction `type:"structure"` -} - -// String returns the string representation -func (s GlobalSecondaryIndexUpdate) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GlobalSecondaryIndexUpdate) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GlobalSecondaryIndexUpdate) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GlobalSecondaryIndexUpdate"} - if s.Create != nil { - if err := s.Create.Validate(); err != nil { - invalidParams.AddNested("Create", err.(request.ErrInvalidParams)) - } - } - if s.Delete != nil { - if err := s.Delete.Validate(); err != nil { - invalidParams.AddNested("Delete", err.(request.ErrInvalidParams)) - } - } - if s.Update != nil { - if err := s.Update.Validate(); err != nil { - invalidParams.AddNested("Update", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Information about item collections, if any, that were affected by the operation. -// ItemCollectionMetrics is only returned if the request asked for it. If the -// table does not have any local secondary indexes, this information is not -// returned in the response. -type ItemCollectionMetrics struct { - _ struct{} `type:"structure"` - - // The partition key value of the item collection. This value is the same as - // the partition key value of the item. - ItemCollectionKey map[string]*AttributeValue `type:"map"` - - // An estimate of item collection size, in gigabytes. This value is a two-element - // array containing a lower bound and an upper bound for the estimate. The estimate - // includes the size of all the items in the table, plus the size of all attributes - // projected into all of the local secondary indexes on that table. Use this - // estimate to measure whether a local secondary index is approaching its size - // limit. - // - // The estimate is subject to change over time; therefore, do not rely on the - // precision or accuracy of the estimate. - SizeEstimateRangeGB []*float64 `type:"list"` -} - -// String returns the string representation -func (s ItemCollectionMetrics) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ItemCollectionMetrics) GoString() string { - return s.String() -} - -// Represents a single element of a key schema. A key schema specifies the attributes -// that make up the primary key of a table, or the key attributes of an index. -// -// A KeySchemaElement represents exactly one attribute of the primary key. -// For example, a simple primary key would be represented by one KeySchemaElement -// (for the partition key). A composite primary key would require one KeySchemaElement -// for the partition key, and another KeySchemaElement for the sort key. -// -// A KeySchemaElement must be a scalar, top-level attribute (not a nested attribute). -// The data type must be one of String, Number, or Binary. The attribute cannot -// be nested within a List or a Map. -type KeySchemaElement struct { - _ struct{} `type:"structure"` - - // The name of a key attribute. - // - // AttributeName is a required field - AttributeName *string `min:"1" type:"string" required:"true"` - - // The role that this key attribute will assume: - // - // HASH - partition key - // - // RANGE - sort key - // - // The partition key of an item is also known as its hash attribute. The - // term "hash attribute" derives from DynamoDB' usage of an internal hash function - // to evenly distribute data items across partitions, based on their partition - // key values. - // - // The sort key of an item is also known as its range attribute. The term "range - // attribute" derives from the way DynamoDB stores items with the same partition - // key physically close together, in sorted order by the sort key value. - // - // KeyType is a required field - KeyType *string `type:"string" required:"true" enum:"KeyType"` -} - -// String returns the string representation -func (s KeySchemaElement) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s KeySchemaElement) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *KeySchemaElement) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "KeySchemaElement"} - if s.AttributeName == nil { - invalidParams.Add(request.NewErrParamRequired("AttributeName")) - } - if s.AttributeName != nil && len(*s.AttributeName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AttributeName", 1)) - } - if s.KeyType == nil { - invalidParams.Add(request.NewErrParamRequired("KeyType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents a set of primary keys and, for each key, the attributes to retrieve -// from the table. -// -// For each primary key, you must provide all of the key attributes. For example, -// with a simple primary key, you only need to provide the partition key. For -// a composite primary key, you must provide both the partition key and the -// sort key. -type KeysAndAttributes struct { - _ struct{} `type:"structure"` - - // One or more attributes to retrieve from the table or index. If no attribute - // names are specified then all attributes will be returned. If any of the specified - // attributes are not found, they will not appear in the result. - AttributesToGet []*string `min:"1" type:"list"` - - // The consistency of a read operation. If set to true, then a strongly consistent - // read is used; otherwise, an eventually consistent read is used. - ConsistentRead *bool `type:"boolean"` - - // One or more substitution tokens for attribute names in an expression. The - // following are some use cases for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeNames map[string]*string `type:"map"` - - // The primary key attribute values that define the items and the attributes - // associated with the items. - // - // Keys is a required field - Keys []map[string]*AttributeValue `min:"1" type:"list" required:"true"` - - // A string that identifies one or more attributes to retrieve from the table. - // These attributes can include scalars, sets, or elements of a JSON document. - // The attributes in the ProjectionExpression must be separated by commas. - // - // If no attribute names are specified, then all attributes will be returned. - // If any of the requested attributes are not found, they will not appear in - // the result. - // - // For more information, see Accessing Item Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProjectionExpression replaces the legacy AttributesToGet parameter. - ProjectionExpression *string `type:"string"` -} - -// String returns the string representation -func (s KeysAndAttributes) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s KeysAndAttributes) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *KeysAndAttributes) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "KeysAndAttributes"} - if s.AttributesToGet != nil && len(s.AttributesToGet) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AttributesToGet", 1)) - } - if s.Keys == nil { - invalidParams.Add(request.NewErrParamRequired("Keys")) - } - if s.Keys != nil && len(s.Keys) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Keys", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the input of a ListTables operation. -type ListTablesInput struct { - _ struct{} `type:"structure"` - - // The first table name that this operation will evaluate. Use the value that - // was returned for LastEvaluatedTableName in a previous operation, so that - // you can obtain the next page of results. - ExclusiveStartTableName *string `min:"3" type:"string"` - - // A maximum number of table names to return. If this parameter is not specified, - // the limit is 100. - Limit *int64 `min:"1" type:"integer"` -} - -// String returns the string representation -func (s ListTablesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTablesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTablesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTablesInput"} - if s.ExclusiveStartTableName != nil && len(*s.ExclusiveStartTableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("ExclusiveStartTableName", 3)) - } - if s.Limit != nil && *s.Limit < 1 { - invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a ListTables operation. -type ListTablesOutput struct { - _ struct{} `type:"structure"` - - // The name of the last table in the current page of results. Use this value - // as the ExclusiveStartTableName in a new request to obtain the next page of - // results, until all the table names are returned. - // - // If you do not receive a LastEvaluatedTableName value in the response, this - // means that there are no more table names to be retrieved. - LastEvaluatedTableName *string `min:"3" type:"string"` - - // The names of the tables associated with the current account at the current - // endpoint. The maximum size of this array is 100. - // - // If LastEvaluatedTableName also appears in the output, you can use this value - // as the ExclusiveStartTableName parameter in a subsequent ListTables request - // and obtain the next page of results. - TableNames []*string `type:"list"` -} - -// String returns the string representation -func (s ListTablesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTablesOutput) GoString() string { - return s.String() -} - -// Represents the properties of a local secondary index. -type LocalSecondaryIndex struct { - _ struct{} `type:"structure"` - - // The name of the local secondary index. The name must be unique among all - // other indexes on this table. - // - // IndexName is a required field - IndexName *string `min:"3" type:"string" required:"true"` - - // The complete key schema for the local secondary index, consisting of one - // or more pairs of attribute names and key types: - // - // HASH - partition key - // - // RANGE - sort key - // - // The partition key of an item is also known as its hash attribute. The - // term "hash attribute" derives from DynamoDB' usage of an internal hash function - // to evenly distribute data items across partitions, based on their partition - // key values. - // - // The sort key of an item is also known as its range attribute. The term "range - // attribute" derives from the way DynamoDB stores items with the same partition - // key physically close together, in sorted order by the sort key value. - // - // KeySchema is a required field - KeySchema []*KeySchemaElement `min:"1" type:"list" required:"true"` - - // Represents attributes that are copied (projected) from the table into an - // index. These are in addition to the primary key attributes and index key - // attributes, which are automatically projected. - // - // Projection is a required field - Projection *Projection `type:"structure" required:"true"` -} - -// String returns the string representation -func (s LocalSecondaryIndex) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LocalSecondaryIndex) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *LocalSecondaryIndex) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "LocalSecondaryIndex"} - if s.IndexName == nil { - invalidParams.Add(request.NewErrParamRequired("IndexName")) - } - if s.IndexName != nil && len(*s.IndexName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("IndexName", 3)) - } - if s.KeySchema == nil { - invalidParams.Add(request.NewErrParamRequired("KeySchema")) - } - if s.KeySchema != nil && len(s.KeySchema) < 1 { - invalidParams.Add(request.NewErrParamMinLen("KeySchema", 1)) - } - if s.Projection == nil { - invalidParams.Add(request.NewErrParamRequired("Projection")) - } - if s.KeySchema != nil { - for i, v := range s.KeySchema { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "KeySchema", i), err.(request.ErrInvalidParams)) - } - } - } - if s.Projection != nil { - if err := s.Projection.Validate(); err != nil { - invalidParams.AddNested("Projection", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the properties of a local secondary index. -type LocalSecondaryIndexDescription struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) that uniquely identifies the index. - IndexArn *string `type:"string"` - - // Represents the name of the local secondary index. - IndexName *string `min:"3" type:"string"` - - // The total size of the specified index, in bytes. DynamoDB updates this value - // approximately every six hours. Recent changes might not be reflected in this - // value. - IndexSizeBytes *int64 `type:"long"` - - // The number of items in the specified index. DynamoDB updates this value approximately - // every six hours. Recent changes might not be reflected in this value. - ItemCount *int64 `type:"long"` - - // The complete key schema for the local secondary index, consisting of one - // or more pairs of attribute names and key types: - // - // HASH - partition key - // - // RANGE - sort key - // - // The partition key of an item is also known as its hash attribute. The - // term "hash attribute" derives from DynamoDB' usage of an internal hash function - // to evenly distribute data items across partitions, based on their partition - // key values. - // - // The sort key of an item is also known as its range attribute. The term "range - // attribute" derives from the way DynamoDB stores items with the same partition - // key physically close together, in sorted order by the sort key value. - KeySchema []*KeySchemaElement `min:"1" type:"list"` - - // Represents attributes that are copied (projected) from the table into an - // index. These are in addition to the primary key attributes and index key - // attributes, which are automatically projected. - Projection *Projection `type:"structure"` -} - -// String returns the string representation -func (s LocalSecondaryIndexDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LocalSecondaryIndexDescription) GoString() string { - return s.String() -} - -// Represents attributes that are copied (projected) from the table into an -// index. These are in addition to the primary key attributes and index key -// attributes, which are automatically projected. -type Projection struct { - _ struct{} `type:"structure"` - - // Represents the non-key attribute names which will be projected into the index. - // - // For local secondary indexes, the total count of NonKeyAttributes summed - // across all of the local secondary indexes, must not exceed 20. If you project - // the same attribute into two different indexes, this counts as two distinct - // attributes when determining the total. - NonKeyAttributes []*string `min:"1" type:"list"` - - // The set of attributes that are projected into the index: - // - // KEYS_ONLY - Only the index and primary keys are projected into the index. - // - // INCLUDE - Only the specified table attributes are projected into the - // index. The list of projected attributes are in NonKeyAttributes. - // - // ALL - All of the table attributes are projected into the index. - ProjectionType *string `type:"string" enum:"ProjectionType"` -} - -// String returns the string representation -func (s Projection) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Projection) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Projection) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Projection"} - if s.NonKeyAttributes != nil && len(s.NonKeyAttributes) < 1 { - invalidParams.Add(request.NewErrParamMinLen("NonKeyAttributes", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the provisioned throughput settings for a specified table or index. -// The settings can be modified using the UpdateTable operation. -// -// For current minimum and maximum provisioned throughput values, see Limits -// (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) -// in the Amazon DynamoDB Developer Guide. -type ProvisionedThroughput struct { - _ struct{} `type:"structure"` - - // The maximum number of strongly consistent reads consumed per second before - // DynamoDB returns a ThrottlingException. For more information, see Specifying - // Read and Write Requirements (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput) - // in the Amazon DynamoDB Developer Guide. - // - // ReadCapacityUnits is a required field - ReadCapacityUnits *int64 `min:"1" type:"long" required:"true"` - - // The maximum number of writes consumed per second before DynamoDB returns - // a ThrottlingException. For more information, see Specifying Read and Write - // Requirements (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput) - // in the Amazon DynamoDB Developer Guide. - // - // WriteCapacityUnits is a required field - WriteCapacityUnits *int64 `min:"1" type:"long" required:"true"` -} - -// String returns the string representation -func (s ProvisionedThroughput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ProvisionedThroughput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ProvisionedThroughput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ProvisionedThroughput"} - if s.ReadCapacityUnits == nil { - invalidParams.Add(request.NewErrParamRequired("ReadCapacityUnits")) - } - if s.ReadCapacityUnits != nil && *s.ReadCapacityUnits < 1 { - invalidParams.Add(request.NewErrParamMinValue("ReadCapacityUnits", 1)) - } - if s.WriteCapacityUnits == nil { - invalidParams.Add(request.NewErrParamRequired("WriteCapacityUnits")) - } - if s.WriteCapacityUnits != nil && *s.WriteCapacityUnits < 1 { - invalidParams.Add(request.NewErrParamMinValue("WriteCapacityUnits", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the provisioned throughput settings for the table, consisting -// of read and write capacity units, along with data about increases and decreases. -type ProvisionedThroughputDescription struct { - _ struct{} `type:"structure"` - - // The date and time of the last provisioned throughput decrease for this table. - LastDecreaseDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` - - // The date and time of the last provisioned throughput increase for this table. - LastIncreaseDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` - - // The number of provisioned throughput decreases for this table during this - // UTC calendar day. For current maximums on provisioned throughput decreases, - // see Limits (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) - // in the Amazon DynamoDB Developer Guide. - NumberOfDecreasesToday *int64 `min:"1" type:"long"` - - // The maximum number of strongly consistent reads consumed per second before - // DynamoDB returns a ThrottlingException. Eventually consistent reads require - // less effort than strongly consistent reads, so a setting of 50 ReadCapacityUnits - // per second provides 100 eventually consistent ReadCapacityUnits per second. - ReadCapacityUnits *int64 `min:"1" type:"long"` - - // The maximum number of writes consumed per second before DynamoDB returns - // a ThrottlingException. - WriteCapacityUnits *int64 `min:"1" type:"long"` -} - -// String returns the string representation -func (s ProvisionedThroughputDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ProvisionedThroughputDescription) GoString() string { - return s.String() -} - -// Represents the input of a PutItem operation. -type PutItemInput struct { - _ struct{} `type:"structure"` - - // A condition that must be satisfied in order for a conditional PutItem operation - // to succeed. - // - // An expression can contain any of the following: - // - // Functions: attribute_exists | attribute_not_exists | attribute_type | - // contains | begins_with | size - // - // These function names are case-sensitive. - // - // Comparison operators: = | <> | < | > | <= | - // >= | BETWEEN | IN - // - // Logical operators: AND | OR | NOT - // - // For more information on condition expressions, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - // - // ConditionExpression replaces the legacy ConditionalOperator and Expected - // parameters. - ConditionExpression *string `type:"string"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ConditionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // A logical operator to apply to the conditions in the Expected map: - // - // AND - If all of the conditions evaluate to true, then the entire map - // evaluates to true. - // - // OR - If at least one of the conditions evaluate to true, then the entire - // map evaluates to true. - // - // If you omit ConditionalOperator, then AND is the default. - // - // The operation will succeed only if the entire map evaluates to true. - // - // This parameter does not support attributes of type List or Map. - ConditionalOperator *string `type:"string" enum:"ConditionalOperator"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ConditionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // A map of attribute/condition pairs. Expected provides a conditional block - // for the PutItem operation. - // - // This parameter does not support attributes of type List or Map. - // - // Each element of Expected consists of an attribute name, a comparison operator, - // and one or more values. DynamoDB compares the attribute with the value(s) - // you supplied, using the comparison operator. For each Expected element, the - // result of the evaluation is either true or false. - // - // If you specify more than one element in the Expected map, then by default - // all of the conditions must evaluate to true. In other words, the conditions - // are ANDed together. (You can use the ConditionalOperator parameter to OR - // the conditions instead. If you do this, then at least one of the conditions - // must evaluate to true, rather than all of them.) - // - // If the Expected map evaluates to true, then the conditional operation succeeds; - // otherwise, it fails. - // - // Expected contains the following: - // - // AttributeValueList - One or more values to evaluate against the supplied - // attribute. The number of values in the list depends on the ComparisonOperator - // being used. - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For type Binary, DynamoDB treats each byte of the binary data as unsigned - // when it compares binary values. - // - // ComparisonOperator - A comparator for evaluating attributes in the AttributeValueList. - // When performing the comparison, DynamoDB uses strongly consistent reads. - // - // The following comparison operators are available: - // - // EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS - // | BEGINS_WITH | IN | BETWEEN - // - // The following are descriptions of each comparison operator. - // - // EQ : Equal. EQ is supported for all datatypes, including lists and maps. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, Binary, String Set, Number Set, or Binary Set. If an item - // contains an AttributeValue element of a different type than the one provided - // in the request, the value does not match. For example, {"S":"6"} does not - // equal {"N":"6"}. Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // NE : Not equal. NE is supported for all datatypes, including lists and - // maps. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, Binary, String Set, Number Set, or Binary Set. If an item contains - // an AttributeValue of a different type than the one provided in the request, - // the value does not match. For example, {"S":"6"} does not equal {"N":"6"}. - // Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // LE : Less than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // LT : Less than. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GE : Greater than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GT : Greater than. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // NOT_NULL : The attribute exists. NOT_NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the existence of an attribute, not its data type. - // If the data type of attribute "a" is null, and you evaluate it using NOT_NULL, - // the result is a Boolean true. This result is because the attribute "a" exists; - // its data type is not relevant to the NOT_NULL comparison operator. - // - // NULL : The attribute does not exist. NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the nonexistence of an attribute, not its data - // type. If the data type of attribute "a" is null, and you evaluate it using - // NULL, the result is a Boolean false. This is because the attribute "a" exists; - // its data type is not relevant to the NULL comparison operator. - // - // CONTAINS : Checks for a subsequence, or value in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is of type String, then the operator checks for a substring match. - // If the target attribute of the comparison is of type Binary, then the operator - // looks for a subsequence of the target that matches the input. If the target - // attribute of the comparison is a set ("SS", "NS", or "BS"), then the operator - // evaluates to true if it finds an exact match with any member of the set. - // - // CONTAINS is supported for lists: When evaluating "a CONTAINS b", "a" can - // be a list; however, "b" cannot be a set, a map, or a list. - // - // NOT_CONTAINS : Checks for absence of a subsequence, or absence of a value - // in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is a String, then the operator checks for the absence of a substring - // match. If the target attribute of the comparison is Binary, then the operator - // checks for the absence of a subsequence of the target that matches the input. - // If the target attribute of the comparison is a set ("SS", "NS", or "BS"), - // then the operator evaluates to true if it does not find an exact match with - // any member of the set. - // - // NOT_CONTAINS is supported for lists: When evaluating "a NOT CONTAINS b", - // "a" can be a list; however, "b" cannot be a set, a map, or a list. - // - // BEGINS_WITH : Checks for a prefix. - // - // AttributeValueList can contain only one AttributeValue of type String or - // Binary (not a Number or a set type). The target attribute of the comparison - // must be of type String or Binary (not a Number or a set type). - // - // IN : Checks for matching elements within two sets. - // - // AttributeValueList can contain one or more AttributeValue elements of type - // String, Number, or Binary (not a set type). These attributes are compared - // against an existing set type attribute of an item. If any elements of the - // input set are present in the item attribute, the expression evaluates to - // true. - // - // BETWEEN : Greater than or equal to the first value, and less than or - // equal to the second value. - // - // AttributeValueList must contain two AttributeValue elements of the same - // type, either String, Number, or Binary (not a set type). A target attribute - // matches if the target value is greater than, or equal to, the first element - // and less than, or equal to, the second element. If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not compare to {"N":"6"}. Also, - // {"N":"6"} does not compare to {"NS":["6", "2", "1"]} - // - // For usage examples of AttributeValueList and ComparisonOperator, see - // Legacy Conditional Parameters (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html) - // in the Amazon DynamoDB Developer Guide. - // - // For backward compatibility with previous DynamoDB releases, the following - // parameters can be used instead of AttributeValueList and ComparisonOperator: - // - // Value - A value for DynamoDB to compare with an attribute. - // - // Exists - A Boolean value that causes DynamoDB to evaluate the value before - // attempting the conditional operation: - // - // If Exists is true, DynamoDB will check to see if that attribute value - // already exists in the table. If it is found, then the condition evaluates - // to true; otherwise the condition evaluate to false. - // - // If Exists is false, DynamoDB assumes that the attribute value does not - // exist in the table. If in fact the value does not exist, then the assumption - // is valid and the condition evaluates to true. If the value is found, despite - // the assumption that it does not exist, the condition evaluates to false. - // - // Note that the default value for Exists is true. - // - // The Value and Exists parameters are incompatible with AttributeValueList - // and ComparisonOperator. Note that if you use both sets of parameters at once, - // DynamoDB will return a ValidationException exception. - Expected map[string]*ExpectedAttributeValue `type:"map"` - - // One or more substitution tokens for attribute names in an expression. The - // following are some use cases for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeNames map[string]*string `type:"map"` - - // One or more values that can be substituted in an expression. - // - // Use the : (colon) character in an expression to dereference an attribute - // value. For example, suppose that you wanted to check whether the value of - // the ProductStatus attribute was one of the following: - // - // Available | Backordered | Discontinued - // - // You would first need to specify ExpressionAttributeValues as follows: - // - // { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} - // } - // - // You could then use these values in an expression, such as this: - // - // ProductStatus IN (:avail, :back, :disc) - // - // For more information on expression attribute values, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeValues map[string]*AttributeValue `type:"map"` - - // A map of attribute name/value pairs, one for each attribute. Only the primary - // key attributes are required; you can optionally provide other attribute name-value - // pairs for the item. - // - // You must provide all of the attributes for the primary key. For example, - // with a simple primary key, you only need to provide a value for the partition - // key. For a composite primary key, you must provide both values for both the - // partition key and the sort key. - // - // If you specify any attributes that are part of an index key, then the data - // types for those attributes must match those of the schema in the table's - // attribute definition. - // - // For more information about primary keys, see Primary Key (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html#DataModelPrimaryKey) - // in the Amazon DynamoDB Developer Guide. - // - // Each element in the Item map is an AttributeValue object. - // - // Item is a required field - Item map[string]*AttributeValue `type:"map" required:"true"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - - // Determines whether item collection metrics are returned. If set to SIZE, - // the response includes statistics about item collections, if any, that were - // modified during the operation are returned in the response. If set to NONE - // (the default), no statistics are returned. - ReturnItemCollectionMetrics *string `type:"string" enum:"ReturnItemCollectionMetrics"` - - // Use ReturnValues if you want to get the item attributes as they appeared - // before they were updated with the PutItem request. For PutItem, the valid - // values are: - // - // NONE - If ReturnValues is not specified, or if its value is NONE, then - // nothing is returned. (This setting is the default for ReturnValues.) - // - // ALL_OLD - If PutItem overwrote an attribute name-value pair, then the - // content of the old item is returned. - // - // The ReturnValues parameter is used by several DynamoDB operations; however, - // PutItem does not recognize any values other than NONE or ALL_OLD. - ReturnValues *string `type:"string" enum:"ReturnValue"` - - // The name of the table to contain the item. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s PutItemInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutItemInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutItemInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutItemInput"} - if s.Item == nil { - invalidParams.Add(request.NewErrParamRequired("Item")) - } - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a PutItem operation. -type PutItemOutput struct { - _ struct{} `type:"structure"` - - // The attribute values as they appeared before the PutItem operation, but only - // if ReturnValues is specified as ALL_OLD in the request. Each element consists - // of an attribute name and an attribute value. - Attributes map[string]*AttributeValue `type:"map"` - - // The capacity units consumed by an operation. The data returned includes the - // total provisioned throughput consumed, along with statistics for the table - // and any indexes involved in the operation. ConsumedCapacity is only returned - // if the request asked for it. For more information, see Provisioned Throughput - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html) - // in the Amazon DynamoDB Developer Guide. - ConsumedCapacity *ConsumedCapacity `type:"structure"` - - // Information about item collections, if any, that were affected by the operation. - // ItemCollectionMetrics is only returned if the request asked for it. If the - // table does not have any local secondary indexes, this information is not - // returned in the response. - // - // Each ItemCollectionMetrics element consists of: - // - // ItemCollectionKey - The partition key value of the item collection. This - // is the same as the partition key value of the item itself. - // - // SizeEstimateRange - An estimate of item collection size, in gigabytes. - // This value is a two-element array containing a lower bound and an upper bound - // for the estimate. The estimate includes the size of all the items in the - // table, plus the size of all attributes projected into all of the local secondary - // indexes on that table. Use this estimate to measure whether a local secondary - // index is approaching its size limit. - // - // The estimate is subject to change over time; therefore, do not rely on the - // precision or accuracy of the estimate. - ItemCollectionMetrics *ItemCollectionMetrics `type:"structure"` -} - -// String returns the string representation -func (s PutItemOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutItemOutput) GoString() string { - return s.String() -} - -// Represents a request to perform a PutItem operation on an item. -type PutRequest struct { - _ struct{} `type:"structure"` - - // A map of attribute name to attribute values, representing the primary key - // of an item to be processed by PutItem. All of the table's primary key attributes - // must be specified, and their data types must match those of the table's key - // schema. If any attributes are present in the item which are part of an index - // key schema for the table, their types must match the index key schema. - // - // Item is a required field - Item map[string]*AttributeValue `type:"map" required:"true"` -} - -// String returns the string representation -func (s PutRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutRequest) GoString() string { - return s.String() -} - -// Represents the input of a Query operation. -type QueryInput struct { - _ struct{} `type:"structure"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ProjectionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // This parameter allows you to retrieve attributes of type List or Map; however, - // it cannot retrieve individual elements within a List or a Map. - // - // The names of one or more attributes to retrieve. If no attribute names - // are provided, then all attributes will be returned. If any of the requested - // attributes are not found, they will not appear in the result. - // - // Note that AttributesToGet has no effect on provisioned throughput consumption. - // DynamoDB determines capacity units consumed based on item size, not on the - // amount of data that is returned to an application. - // - // You cannot use both AttributesToGet and Select together in a Query request, - // unless the value for Select is SPECIFIC_ATTRIBUTES. (This usage is equivalent - // to specifying AttributesToGet without any value for Select.) - // - // If you query a local secondary index and request only attributes that are - // projected into that index, the operation will read only the index and not - // the table. If any of the requested attributes are not projected into the - // local secondary index, DynamoDB will fetch each of these attributes from - // the parent table. This extra fetching incurs additional throughput cost and - // latency. - // - // If you query a global secondary index, you can only request attributes that - // are projected into the index. Global secondary index queries cannot fetch - // attributes from the parent table. - AttributesToGet []*string `min:"1" type:"list"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use FilterExpression instead. Do not combine legacy parameters and - // expression parameters in a single API call; otherwise, DynamoDB will return - // a ValidationException exception. - // - // A logical operator to apply to the conditions in a QueryFilter map: - // - // AND - If all of the conditions evaluate to true, then the entire map - // evaluates to true. - // - // OR - If at least one of the conditions evaluate to true, then the entire - // map evaluates to true. - // - // If you omit ConditionalOperator, then AND is the default. - // - // The operation will succeed only if the entire map evaluates to true. - // - // This parameter does not support attributes of type List or Map. - ConditionalOperator *string `type:"string" enum:"ConditionalOperator"` - - // Determines the read consistency model: If set to true, then the operation - // uses strongly consistent reads; otherwise, the operation uses eventually - // consistent reads. - // - // Strongly consistent reads are not supported on global secondary indexes. - // If you query a global secondary index with ConsistentRead set to true, you - // will receive a ValidationException. - ConsistentRead *bool `type:"boolean"` - - // The primary key of the first item that this operation will evaluate. Use - // the value that was returned for LastEvaluatedKey in the previous operation. - // - // The data type for ExclusiveStartKey must be String, Number or Binary. No - // set data types are allowed. - ExclusiveStartKey map[string]*AttributeValue `type:"map"` - - // One or more substitution tokens for attribute names in an expression. The - // following are some use cases for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeNames map[string]*string `type:"map"` - - // One or more values that can be substituted in an expression. - // - // Use the : (colon) character in an expression to dereference an attribute - // value. For example, suppose that you wanted to check whether the value of - // the ProductStatus attribute was one of the following: - // - // Available | Backordered | Discontinued - // - // You would first need to specify ExpressionAttributeValues as follows: - // - // { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} - // } - // - // You could then use these values in an expression, such as this: - // - // ProductStatus IN (:avail, :back, :disc) - // - // For more information on expression attribute values, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeValues map[string]*AttributeValue `type:"map"` - - // A string that contains conditions that DynamoDB applies after the Query operation, - // but before the data is returned to you. Items that do not satisfy the FilterExpression - // criteria are not returned. - // - // A FilterExpression is applied after the items have already been read; the - // process of filtering does not consume any additional read capacity units. - // - // For more information, see Filter Expressions (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#FilteringResults) - // in the Amazon DynamoDB Developer Guide. - // - // FilterExpression replaces the legacy QueryFilter and ConditionalOperator - // parameters. - FilterExpression *string `type:"string"` - - // The name of an index to query. This index can be any local secondary index - // or global secondary index on the table. Note that if you use the IndexName - // parameter, you must also provide TableName. - IndexName *string `min:"3" type:"string"` - - // The condition that specifies the key value(s) for items to be retrieved by - // the Query action. - // - // The condition must perform an equality test on a single partition key value. - // The condition can also perform one of several comparison tests on a single - // sort key value. Query can use KeyConditionExpression to retrieve one item - // with a given partition key value and sort key value, or several items that - // have the same partition key value but different sort key values. - // - // The partition key equality test is required, and must be specified in the - // following format: - // - // partitionKeyName = :partitionkeyval - // - // If you also want to provide a condition for the sort key, it must be combined - // using AND with the condition for the sort key. Following is an example, using - // the = comparison operator for the sort key: - // - // partitionKeyName = :partitionkeyval AND sortKeyName = :sortkeyval - // - // Valid comparisons for the sort key condition are as follows: - // - // sortKeyName = :sortkeyval - true if the sort key value is equal to :sortkeyval. - // - // sortKeyName < :sortkeyval - true if the sort key value is less than :sortkeyval. - // - // sortKeyName <= :sortkeyval - true if the sort key value is less than - // or equal to :sortkeyval. - // - // sortKeyName > :sortkeyval - true if the sort key value is greater than - // :sortkeyval. - // - // sortKeyName >= :sortkeyval - true if the sort key value is greater than - // or equal to :sortkeyval. - // - // sortKeyName BETWEEN :sortkeyval1 AND :sortkeyval2 - true if the sort - // key value is greater than or equal to :sortkeyval1, and less than or equal - // to :sortkeyval2. - // - // begins_with ( sortKeyName, :sortkeyval ) - true if the sort key value - // begins with a particular operand. (You cannot use this function with a sort - // key that is of type Number.) Note that the function name begins_with is case-sensitive. - // - // Use the ExpressionAttributeValues parameter to replace tokens such as - // :partitionval and :sortval with actual values at runtime. - // - // You can optionally use the ExpressionAttributeNames parameter to replace - // the names of the partition key and sort key with placeholder tokens. This - // option might be necessary if an attribute name conflicts with a DynamoDB - // reserved word. For example, the following KeyConditionExpression parameter - // causes an error because Size is a reserved word: - // - // Size = :myval - // - // To work around this, define a placeholder (such a #S) to represent the - // attribute name Size. KeyConditionExpression then is as follows: - // - // #S = :myval - // - // For a list of reserved words, see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide. - // - // For more information on ExpressionAttributeNames and ExpressionAttributeValues, - // see Using Placeholders for Attribute Names and Values (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ExpressionPlaceholders.html) - // in the Amazon DynamoDB Developer Guide. - // - // KeyConditionExpression replaces the legacy KeyConditions parameter. - KeyConditionExpression *string `type:"string"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use KeyConditionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // The selection criteria for the query. For a query on a table, you can have - // conditions only on the table primary key attributes. You must provide the - // partition key name and value as an EQ condition. You can optionally provide - // a second condition, referring to the sort key. - // - // If you don't provide a sort key condition, all of the items that match - // the partition key will be retrieved. If a FilterExpression or QueryFilter - // is present, it will be applied after the items are retrieved. - // - // For a query on an index, you can have conditions only on the index key - // attributes. You must provide the index partition key name and value as an - // EQ condition. You can optionally provide a second condition, referring to - // the index sort key. - // - // Each KeyConditions element consists of an attribute name to compare, along - // with the following: - // - // AttributeValueList - One or more values to evaluate against the supplied - // attribute. The number of values in the list depends on the ComparisonOperator - // being used. - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For Binary, DynamoDB treats each byte of the binary data as unsigned when - // it compares binary values. - // - // ComparisonOperator - A comparator for evaluating attributes, for example, - // equals, greater than, less than, and so on. - // - // For KeyConditions, only the following comparison operators are supported: - // - // EQ | LE | LT | GE | GT | BEGINS_WITH | BETWEEN - // - // The following are descriptions of these comparison operators. - // - // EQ : Equal. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one specified in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not equal {"NS":["6", "2", "1"]}. - // - // LE : Less than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // LT : Less than. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GE : Greater than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GT : Greater than. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // BEGINS_WITH : Checks for a prefix. - // - // AttributeValueList can contain only one AttributeValue of type String or - // Binary (not a Number or a set type). The target attribute of the comparison - // must be of type String or Binary (not a Number or a set type). - // - // BETWEEN : Greater than or equal to the first value, and less than or - // equal to the second value. - // - // AttributeValueList must contain two AttributeValue elements of the same - // type, either String, Number, or Binary (not a set type). A target attribute - // matches if the target value is greater than, or equal to, the first element - // and less than, or equal to, the second element. If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not compare to {"N":"6"}. Also, - // {"N":"6"} does not compare to {"NS":["6", "2", "1"]} - // - // For usage examples of AttributeValueList and ComparisonOperator, see - // Legacy Conditional Parameters (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html) - // in the Amazon DynamoDB Developer Guide. - KeyConditions map[string]*Condition `type:"map"` - - // The maximum number of items to evaluate (not necessarily the number of matching - // items). If DynamoDB processes the number of items up to the limit while processing - // the results, it stops the operation and returns the matching values up to - // that point, and a key in LastEvaluatedKey to apply in a subsequent operation, - // so that you can pick up where you left off. Also, if the processed data set - // size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation - // and returns the matching values up to the limit, and a key in LastEvaluatedKey - // to apply in a subsequent operation to continue the operation. For more information, - // see Query and Scan (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html) - // in the Amazon DynamoDB Developer Guide. - Limit *int64 `min:"1" type:"integer"` - - // A string that identifies one or more attributes to retrieve from the table. - // These attributes can include scalars, sets, or elements of a JSON document. - // The attributes in the expression must be separated by commas. - // - // If no attribute names are specified, then all attributes will be returned. - // If any of the requested attributes are not found, they will not appear in - // the result. - // - // For more information, see Accessing Item Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProjectionExpression replaces the legacy AttributesToGet parameter. - ProjectionExpression *string `type:"string"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use FilterExpression instead. Do not combine legacy parameters and - // expression parameters in a single API call; otherwise, DynamoDB will return - // a ValidationException exception. - // - // A condition that evaluates the query results after the items are read and - // returns only the desired values. - // - // This parameter does not support attributes of type List or Map. - // - // A QueryFilter is applied after the items have already been read; the process - // of filtering does not consume any additional read capacity units. - // - // If you provide more than one condition in the QueryFilter map, then by - // default all of the conditions must evaluate to true. In other words, the - // conditions are ANDed together. (You can use the ConditionalOperator parameter - // to OR the conditions instead. If you do this, then at least one of the conditions - // must evaluate to true, rather than all of them.) - // - // Note that QueryFilter does not allow key attributes. You cannot define a - // filter condition on a partition key or a sort key. - // - // Each QueryFilter element consists of an attribute name to compare, along - // with the following: - // - // AttributeValueList - One or more values to evaluate against the supplied - // attribute. The number of values in the list depends on the operator specified - // in ComparisonOperator. - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For type Binary, DynamoDB treats each byte of the binary data as unsigned - // when it compares binary values. - // - // For information on specifying data types in JSON, see JSON Data Format (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataFormat.html) - // in the Amazon DynamoDB Developer Guide. - // - // ComparisonOperator - A comparator for evaluating attributes. For example, - // equals, greater than, less than, etc. - // - // The following comparison operators are available: - // - // EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS - // | BEGINS_WITH | IN | BETWEEN - // - // For complete descriptions of all comparison operators, see the Condition - // (http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Condition.html) - // data type. - QueryFilter map[string]*Condition `type:"map"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - - // Specifies the order for index traversal: If true (default), the traversal - // is performed in ascending order; if false, the traversal is performed in - // descending order. - // - // Items with the same partition key value are stored in sorted order by sort - // key. If the sort key data type is Number, the results are stored in numeric - // order. For type String, the results are stored in order of ASCII character - // code values. For type Binary, DynamoDB treats each byte of the binary data - // as unsigned. - // - // If ScanIndexForward is true, DynamoDB returns the results in the order in - // which they are stored (by sort key value). This is the default behavior. - // If ScanIndexForward is false, DynamoDB reads the results in reverse order - // by sort key value, and then returns the results to the client. - ScanIndexForward *bool `type:"boolean"` - - // The attributes to be returned in the result. You can retrieve all item attributes, - // specific item attributes, the count of matching items, or in the case of - // an index, some or all of the attributes projected into the index. - // - // ALL_ATTRIBUTES - Returns all of the item attributes from the specified - // table or index. If you query a local secondary index, then for each matching - // item in the index DynamoDB will fetch the entire item from the parent table. - // If the index is configured to project all item attributes, then all of the - // data can be obtained from the local secondary index, and no fetching is required. - // - // ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves - // all attributes that have been projected into the index. If the index is configured - // to project all attributes, this return value is equivalent to specifying - // ALL_ATTRIBUTES. - // - // COUNT - Returns the number of matching items, rather than the matching - // items themselves. - // - // SPECIFIC_ATTRIBUTES - Returns only the attributes listed in AttributesToGet. - // This return value is equivalent to specifying AttributesToGet without specifying - // any value for Select. - // - // If you query a local secondary index and request only attributes that are - // projected into that index, the operation will read only the index and not - // the table. If any of the requested attributes are not projected into the - // local secondary index, DynamoDB will fetch each of these attributes from - // the parent table. This extra fetching incurs additional throughput cost and - // latency. - // - // If you query a global secondary index, you can only request attributes that - // are projected into the index. Global secondary index queries cannot fetch - // attributes from the parent table. - // - // If neither Select nor AttributesToGet are specified, DynamoDB defaults - // to ALL_ATTRIBUTES when accessing a table, and ALL_PROJECTED_ATTRIBUTES when - // accessing an index. You cannot use both Select and AttributesToGet together - // in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. - // (This usage is equivalent to specifying AttributesToGet without any value - // for Select.) - // - // If you use the ProjectionExpression parameter, then the value for Select - // can only be SPECIFIC_ATTRIBUTES. Any other value for Select will return an - // error. - Select *string `type:"string" enum:"Select"` - - // The name of the table containing the requested items. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s QueryInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s QueryInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *QueryInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "QueryInput"} - if s.AttributesToGet != nil && len(s.AttributesToGet) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AttributesToGet", 1)) - } - if s.IndexName != nil && len(*s.IndexName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("IndexName", 3)) - } - if s.Limit != nil && *s.Limit < 1 { - invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) - } - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - if s.KeyConditions != nil { - for i, v := range s.KeyConditions { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "KeyConditions", i), err.(request.ErrInvalidParams)) - } - } - } - if s.QueryFilter != nil { - for i, v := range s.QueryFilter { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "QueryFilter", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a Query operation. -type QueryOutput struct { - _ struct{} `type:"structure"` - - // The capacity units consumed by an operation. The data returned includes the - // total provisioned throughput consumed, along with statistics for the table - // and any indexes involved in the operation. ConsumedCapacity is only returned - // if the request asked for it. For more information, see Provisioned Throughput - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html) - // in the Amazon DynamoDB Developer Guide. - ConsumedCapacity *ConsumedCapacity `type:"structure"` - - // The number of items in the response. - // - // If you used a QueryFilter in the request, then Count is the number of items - // returned after the filter was applied, and ScannedCount is the number of - // matching items before the filter was applied. - // - // If you did not use a filter in the request, then Count and ScannedCount - // are the same. - Count *int64 `type:"integer"` - - // An array of item attributes that match the query criteria. Each element in - // this array consists of an attribute name and the value for that attribute. - Items []map[string]*AttributeValue `type:"list"` - - // The primary key of the item where the operation stopped, inclusive of the - // previous result set. Use this value to start a new operation, excluding this - // value in the new request. - // - // If LastEvaluatedKey is empty, then the "last page" of results has been processed - // and there is no more data to be retrieved. - // - // If LastEvaluatedKey is not empty, it does not necessarily mean that there - // is more data in the result set. The only way to know when you have reached - // the end of the result set is when LastEvaluatedKey is empty. - LastEvaluatedKey map[string]*AttributeValue `type:"map"` - - // The number of items evaluated, before any QueryFilter is applied. A high - // ScannedCount value with few, or no, Count results indicates an inefficient - // Query operation. For more information, see Count and ScannedCount (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#Count) - // in the Amazon DynamoDB Developer Guide. - // - // If you did not use a filter in the request, then ScannedCount is the same - // as Count. - ScannedCount *int64 `type:"integer"` -} - -// String returns the string representation -func (s QueryOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s QueryOutput) GoString() string { - return s.String() -} - -// Represents the input of a Scan operation. -type ScanInput struct { - _ struct{} `type:"structure"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ProjectionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // This parameter allows you to retrieve attributes of type List or Map; however, - // it cannot retrieve individual elements within a List or a Map. - // - // The names of one or more attributes to retrieve. If no attribute names - // are provided, then all attributes will be returned. If any of the requested - // attributes are not found, they will not appear in the result. - // - // Note that AttributesToGet has no effect on provisioned throughput consumption. - // DynamoDB determines capacity units consumed based on item size, not on the - // amount of data that is returned to an application. - AttributesToGet []*string `min:"1" type:"list"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use FilterExpression instead. Do not combine legacy parameters and - // expression parameters in a single API call; otherwise, DynamoDB will return - // a ValidationException exception. - // - // A logical operator to apply to the conditions in a ScanFilter map: - // - // AND - If all of the conditions evaluate to true, then the entire map - // evaluates to true. - // - // OR - If at least one of the conditions evaluate to true, then the entire - // map evaluates to true. - // - // If you omit ConditionalOperator, then AND is the default. - // - // The operation will succeed only if the entire map evaluates to true. - // - // This parameter does not support attributes of type List or Map. - ConditionalOperator *string `type:"string" enum:"ConditionalOperator"` - - // A Boolean value that determines the read consistency model during the scan: - // - // If ConsistentRead is false, then the data returned from Scan might not - // contain the results from other recently completed write operations (PutItem, - // UpdateItem or DeleteItem). - // - // If ConsistentRead is true, then all of the write operations that completed - // before the Scan began are guaranteed to be contained in the Scan response. - // - // The default setting for ConsistentRead is false. - // - // The ConsistentRead parameter is not supported on global secondary indexes. - // If you scan a global secondary index with ConsistentRead set to true, you - // will receive a ValidationException. - ConsistentRead *bool `type:"boolean"` - - // The primary key of the first item that this operation will evaluate. Use - // the value that was returned for LastEvaluatedKey in the previous operation. - // - // The data type for ExclusiveStartKey must be String, Number or Binary. No - // set data types are allowed. - // - // In a parallel scan, a Scan request that includes ExclusiveStartKey must - // specify the same segment whose previous Scan returned the corresponding value - // of LastEvaluatedKey. - ExclusiveStartKey map[string]*AttributeValue `type:"map"` - - // One or more substitution tokens for attribute names in an expression. The - // following are some use cases for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeNames map[string]*string `type:"map"` - - // One or more values that can be substituted in an expression. - // - // Use the : (colon) character in an expression to dereference an attribute - // value. For example, suppose that you wanted to check whether the value of - // the ProductStatus attribute was one of the following: - // - // Available | Backordered | Discontinued - // - // You would first need to specify ExpressionAttributeValues as follows: - // - // { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} - // } - // - // You could then use these values in an expression, such as this: - // - // ProductStatus IN (:avail, :back, :disc) - // - // For more information on expression attribute values, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeValues map[string]*AttributeValue `type:"map"` - - // A string that contains conditions that DynamoDB applies after the Scan operation, - // but before the data is returned to you. Items that do not satisfy the FilterExpression - // criteria are not returned. - // - // A FilterExpression is applied after the items have already been read; the - // process of filtering does not consume any additional read capacity units. - // - // For more information, see Filter Expressions (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#FilteringResults) - // in the Amazon DynamoDB Developer Guide. - // - // FilterExpression replaces the legacy ScanFilter and ConditionalOperator - // parameters. - FilterExpression *string `type:"string"` - - // The name of a secondary index to scan. This index can be any local secondary - // index or global secondary index. Note that if you use the IndexName parameter, - // you must also provide TableName. - IndexName *string `min:"3" type:"string"` - - // The maximum number of items to evaluate (not necessarily the number of matching - // items). If DynamoDB processes the number of items up to the limit while processing - // the results, it stops the operation and returns the matching values up to - // that point, and a key in LastEvaluatedKey to apply in a subsequent operation, - // so that you can pick up where you left off. Also, if the processed data set - // size exceeds 1 MB before DynamoDB reaches this limit, it stops the operation - // and returns the matching values up to the limit, and a key in LastEvaluatedKey - // to apply in a subsequent operation to continue the operation. For more information, - // see Query and Scan (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html) - // in the Amazon DynamoDB Developer Guide. - Limit *int64 `min:"1" type:"integer"` - - // A string that identifies one or more attributes to retrieve from the specified - // table or index. These attributes can include scalars, sets, or elements of - // a JSON document. The attributes in the expression must be separated by commas. - // - // If no attribute names are specified, then all attributes will be returned. - // If any of the requested attributes are not found, they will not appear in - // the result. - // - // For more information, see Accessing Item Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProjectionExpression replaces the legacy AttributesToGet parameter. - ProjectionExpression *string `type:"string"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use FilterExpression instead. Do not combine legacy parameters and - // expression parameters in a single API call; otherwise, DynamoDB will return - // a ValidationException exception. - // - // A condition that evaluates the scan results and returns only the desired - // values. - // - // This parameter does not support attributes of type List or Map. - // - // If you specify more than one condition in the ScanFilter map, then by default - // all of the conditions must evaluate to true. In other words, the conditions - // are ANDed together. (You can use the ConditionalOperator parameter to OR - // the conditions instead. If you do this, then at least one of the conditions - // must evaluate to true, rather than all of them.) - // - // Each ScanFilter element consists of an attribute name to compare, along - // with the following: - // - // AttributeValueList - One or more values to evaluate against the supplied - // attribute. The number of values in the list depends on the operator specified - // in ComparisonOperator . - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For Binary, DynamoDB treats each byte of the binary data as unsigned when - // it compares binary values. - // - // For information on specifying data types in JSON, see JSON Data Format (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataFormat.html) - // in the Amazon DynamoDB Developer Guide. - // - // ComparisonOperator - A comparator for evaluating attributes. For example, - // equals, greater than, less than, etc. - // - // The following comparison operators are available: - // - // EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS - // | BEGINS_WITH | IN | BETWEEN - // - // For complete descriptions of all comparison operators, see Condition (http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Condition.html). - ScanFilter map[string]*Condition `type:"map"` - - // For a parallel Scan request, Segment identifies an individual segment to - // be scanned by an application worker. - // - // Segment IDs are zero-based, so the first segment is always 0. For example, - // if you want to use four application threads to scan a table or an index, - // then the first thread specifies a Segment value of 0, the second thread specifies - // 1, and so on. - // - // The value of LastEvaluatedKey returned from a parallel Scan request must - // be used as ExclusiveStartKey with the same segment ID in a subsequent Scan - // operation. - // - // The value for Segment must be greater than or equal to 0, and less than - // the value provided for TotalSegments. - // - // If you provide Segment, you must also provide TotalSegments. - Segment *int64 `type:"integer"` - - // The attributes to be returned in the result. You can retrieve all item attributes, - // specific item attributes, or the count of matching items. - // - // ALL_ATTRIBUTES - Returns all of the item attributes. - // - // ALL_PROJECTED_ATTRIBUTES - Allowed only when querying an index. Retrieves - // all attributes that have been projected into the index. If the index is configured - // to project all attributes, this return value is equivalent to specifying - // ALL_ATTRIBUTES. - // - // COUNT - Returns the number of matching items, rather than the matching - // items themselves. - // - // SPECIFIC_ATTRIBUTES - Returns only the attributes listed in AttributesToGet. - // This return value is equivalent to specifying AttributesToGet without specifying - // any value for Select. - // - // If neither Select nor AttributesToGet are specified, DynamoDB defaults - // to ALL_ATTRIBUTES. You cannot use both AttributesToGet and Select together - // in a single request, unless the value for Select is SPECIFIC_ATTRIBUTES. - // (This usage is equivalent to specifying AttributesToGet without any value - // for Select.) - Select *string `type:"string" enum:"Select"` - - // The name of the table containing the requested items; or, if you provide - // IndexName, the name of the table to which that index belongs. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` - - // For a parallel Scan request, TotalSegments represents the total number of - // segments into which the Scan operation will be divided. The value of TotalSegments - // corresponds to the number of application workers that will perform the parallel - // scan. For example, if you want to use four application threads to scan a - // table or an index, specify a TotalSegments value of 4. - // - // The value for TotalSegments must be greater than or equal to 1, and less - // than or equal to 1000000. If you specify a TotalSegments value of 1, the - // Scan operation will be sequential rather than parallel. - // - // If you specify TotalSegments, you must also specify Segment. - TotalSegments *int64 `min:"1" type:"integer"` -} - -// String returns the string representation -func (s ScanInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScanInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ScanInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ScanInput"} - if s.AttributesToGet != nil && len(s.AttributesToGet) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AttributesToGet", 1)) - } - if s.IndexName != nil && len(*s.IndexName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("IndexName", 3)) - } - if s.Limit != nil && *s.Limit < 1 { - invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) - } - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - if s.TotalSegments != nil && *s.TotalSegments < 1 { - invalidParams.Add(request.NewErrParamMinValue("TotalSegments", 1)) - } - if s.ScanFilter != nil { - for i, v := range s.ScanFilter { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "ScanFilter", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of a Scan operation. -type ScanOutput struct { - _ struct{} `type:"structure"` - - // The capacity units consumed by an operation. The data returned includes the - // total provisioned throughput consumed, along with statistics for the table - // and any indexes involved in the operation. ConsumedCapacity is only returned - // if the request asked for it. For more information, see Provisioned Throughput - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html) - // in the Amazon DynamoDB Developer Guide. - ConsumedCapacity *ConsumedCapacity `type:"structure"` - - // The number of items in the response. - // - // If you set ScanFilter in the request, then Count is the number of items - // returned after the filter was applied, and ScannedCount is the number of - // matching items before the filter was applied. - // - // If you did not use a filter in the request, then Count is the same as ScannedCount. - Count *int64 `type:"integer"` - - // An array of item attributes that match the scan criteria. Each element in - // this array consists of an attribute name and the value for that attribute. - Items []map[string]*AttributeValue `type:"list"` - - // The primary key of the item where the operation stopped, inclusive of the - // previous result set. Use this value to start a new operation, excluding this - // value in the new request. - // - // If LastEvaluatedKey is empty, then the "last page" of results has been processed - // and there is no more data to be retrieved. - // - // If LastEvaluatedKey is not empty, it does not necessarily mean that there - // is more data in the result set. The only way to know when you have reached - // the end of the result set is when LastEvaluatedKey is empty. - LastEvaluatedKey map[string]*AttributeValue `type:"map"` - - // The number of items evaluated, before any ScanFilter is applied. A high ScannedCount - // value with few, or no, Count results indicates an inefficient Scan operation. - // For more information, see Count and ScannedCount (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html#Count) - // in the Amazon DynamoDB Developer Guide. - // - // If you did not use a filter in the request, then ScannedCount is the same - // as Count. - ScannedCount *int64 `type:"integer"` -} - -// String returns the string representation -func (s ScanOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScanOutput) GoString() string { - return s.String() -} - -// Represents the DynamoDB Streams configuration for a table in DynamoDB. -type StreamSpecification struct { - _ struct{} `type:"structure"` - - // Indicates whether DynamoDB Streams is enabled (true) or disabled (false) - // on the table. - StreamEnabled *bool `type:"boolean"` - - // The DynamoDB Streams settings for the table. These settings consist of: - // - // StreamEnabled - Indicates whether DynamoDB Streams is enabled (true) - // or disabled (false) on the table. - // - // StreamViewType - When an item in the table is modified, StreamViewType - // determines what information is written to the stream for this table. Valid - // values for StreamViewType are: - // - // KEYS_ONLY - Only the key attributes of the modified item are written - // to the stream. - // - // NEW_IMAGE - The entire item, as it appears after it was modified, is - // written to the stream. - // - // OLD_IMAGE - The entire item, as it appeared before it was modified, is - // written to the stream. - // - // NEW_AND_OLD_IMAGES - Both the new and the old item images of the item - // are written to the stream. - StreamViewType *string `type:"string" enum:"StreamViewType"` -} - -// String returns the string representation -func (s StreamSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamSpecification) GoString() string { - return s.String() -} - -// Represents the properties of a table. -type TableDescription struct { - _ struct{} `type:"structure"` - - // An array of AttributeDefinition objects. Each of these objects describes - // one attribute in the table and index key schema. - // - // Each AttributeDefinition object in this array is composed of: - // - // AttributeName - The name of the attribute. - // - // AttributeType - The data type for the attribute. - AttributeDefinitions []*AttributeDefinition `type:"list"` - - // The date and time when the table was created, in UNIX epoch time (http://www.epochconverter.com/) - // format. - CreationDateTime *time.Time `type:"timestamp" timestampFormat:"unix"` - - // The global secondary indexes, if any, on the table. Each index is scoped - // to a given partition key value. Each element is composed of: - // - // Backfilling - If true, then the index is currently in the backfilling - // phase. Backfilling occurs only when a new global secondary index is added - // to the table; it is the process by which DynamoDB populates the new index - // with data from the table. (This attribute does not appear for indexes that - // were created during a CreateTable operation.) - // - // IndexName - The name of the global secondary index. - // - // IndexSizeBytes - The total size of the global secondary index, in bytes. - // DynamoDB updates this value approximately every six hours. Recent changes - // might not be reflected in this value. - // - // IndexStatus - The current status of the global secondary index: - // - // CREATING - The index is being created. - // - // UPDATING - The index is being updated. - // - // DELETING - The index is being deleted. - // - // ACTIVE - The index is ready for use. - // - // ItemCount - The number of items in the global secondary index. DynamoDB - // updates this value approximately every six hours. Recent changes might not - // be reflected in this value. - // - // KeySchema - Specifies the complete index key schema. The attribute names - // in the key schema must be between 1 and 255 characters (inclusive). The key - // schema must begin with the same partition key as the table. - // - // Projection - Specifies attributes that are copied (projected) from the - // table into the index. These are in addition to the primary key attributes - // and index key attributes, which are automatically projected. Each attribute - // specification is composed of: - // - // ProjectionType - One of the following: - // - // KEYS_ONLY - Only the index and primary keys are projected into the index. - // - // INCLUDE - Only the specified table attributes are projected into the - // index. The list of projected attributes are in NonKeyAttributes. - // - // ALL - All of the table attributes are projected into the index. - // - // NonKeyAttributes - A list of one or more non-key attribute names that - // are projected into the secondary index. The total count of attributes provided - // in NonKeyAttributes, summed across all of the secondary indexes, must not - // exceed 20. If you project the same attribute into two different indexes, - // this counts as two distinct attributes when determining the total. - // - // ProvisionedThroughput - The provisioned throughput settings for the - // global secondary index, consisting of read and write capacity units, along - // with data about increases and decreases. - // - // If the table is in the DELETING state, no information about indexes will - // be returned. - GlobalSecondaryIndexes []*GlobalSecondaryIndexDescription `type:"list"` - - // The number of items in the specified table. DynamoDB updates this value approximately - // every six hours. Recent changes might not be reflected in this value. - ItemCount *int64 `type:"long"` - - // The primary key structure for the table. Each KeySchemaElement consists of: - // - // AttributeName - The name of the attribute. - // - // KeyType - The role of the attribute: - // - // HASH - partition key - // - // RANGE - sort key - // - // The partition key of an item is also known as its hash attribute. The - // term "hash attribute" derives from DynamoDB' usage of an internal hash function - // to evenly distribute data items across partitions, based on their partition - // key values. - // - // The sort key of an item is also known as its range attribute. The term "range - // attribute" derives from the way DynamoDB stores items with the same partition - // key physically close together, in sorted order by the sort key value. - // - // For more information about primary keys, see Primary Key (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DataModel.html#DataModelPrimaryKey) - // in the Amazon DynamoDB Developer Guide. - KeySchema []*KeySchemaElement `min:"1" type:"list"` - - // The Amazon Resource Name (ARN) that uniquely identifies the latest stream - // for this table. - LatestStreamArn *string `min:"37" type:"string"` - - // A timestamp, in ISO 8601 format, for this stream. - // - // Note that LatestStreamLabel is not a unique identifier for the stream, because - // it is possible that a stream from another table might have the same timestamp. - // However, the combination of the following three elements is guaranteed to - // be unique: - // - // the AWS customer ID. - // - // the table name. - // - // the StreamLabel. - LatestStreamLabel *string `type:"string"` - - // Represents one or more local secondary indexes on the table. Each index is - // scoped to a given partition key value. Tables with one or more local secondary - // indexes are subject to an item collection size limit, where the amount of - // data within a given item collection cannot exceed 10 GB. Each element is - // composed of: - // - // IndexName - The name of the local secondary index. - // - // KeySchema - Specifies the complete index key schema. The attribute names - // in the key schema must be between 1 and 255 characters (inclusive). The key - // schema must begin with the same partition key as the table. - // - // Projection - Specifies attributes that are copied (projected) from the - // table into the index. These are in addition to the primary key attributes - // and index key attributes, which are automatically projected. Each attribute - // specification is composed of: - // - // ProjectionType - One of the following: - // - // KEYS_ONLY - Only the index and primary keys are projected into the index. - // - // INCLUDE - Only the specified table attributes are projected into the - // index. The list of projected attributes are in NonKeyAttributes. - // - // ALL - All of the table attributes are projected into the index. - // - // NonKeyAttributes - A list of one or more non-key attribute names that - // are projected into the secondary index. The total count of attributes provided - // in NonKeyAttributes, summed across all of the secondary indexes, must not - // exceed 20. If you project the same attribute into two different indexes, - // this counts as two distinct attributes when determining the total. - // - // IndexSizeBytes - Represents the total size of the index, in bytes. - // DynamoDB updates this value approximately every six hours. Recent changes - // might not be reflected in this value. - // - // ItemCount - Represents the number of items in the index. DynamoDB updates - // this value approximately every six hours. Recent changes might not be reflected - // in this value. - // - // If the table is in the DELETING state, no information about indexes will - // be returned. - LocalSecondaryIndexes []*LocalSecondaryIndexDescription `type:"list"` - - // The provisioned throughput settings for the table, consisting of read and - // write capacity units, along with data about increases and decreases. - ProvisionedThroughput *ProvisionedThroughputDescription `type:"structure"` - - // The current DynamoDB Streams configuration for the table. - StreamSpecification *StreamSpecification `type:"structure"` - - // The Amazon Resource Name (ARN) that uniquely identifies the table. - TableArn *string `type:"string"` - - // The name of the table. - TableName *string `min:"3" type:"string"` - - // The total size of the specified table, in bytes. DynamoDB updates this value - // approximately every six hours. Recent changes might not be reflected in this - // value. - TableSizeBytes *int64 `type:"long"` - - // The current state of the table: - // - // CREATING - The table is being created. - // - // UPDATING - The table is being updated. - // - // DELETING - The table is being deleted. - // - // ACTIVE - The table is ready for use. - TableStatus *string `type:"string" enum:"TableStatus"` -} - -// String returns the string representation -func (s TableDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TableDescription) GoString() string { - return s.String() -} - -// Represents the new provisioned throughput settings to be applied to a global -// secondary index. -type UpdateGlobalSecondaryIndexAction struct { - _ struct{} `type:"structure"` - - // The name of the global secondary index to be updated. - // - // IndexName is a required field - IndexName *string `min:"3" type:"string" required:"true"` - - // Represents the provisioned throughput settings for a specified table or index. - // The settings can be modified using the UpdateTable operation. - // - // For current minimum and maximum provisioned throughput values, see Limits - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) - // in the Amazon DynamoDB Developer Guide. - // - // ProvisionedThroughput is a required field - ProvisionedThroughput *ProvisionedThroughput `type:"structure" required:"true"` -} - -// String returns the string representation -func (s UpdateGlobalSecondaryIndexAction) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateGlobalSecondaryIndexAction) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateGlobalSecondaryIndexAction) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateGlobalSecondaryIndexAction"} - if s.IndexName == nil { - invalidParams.Add(request.NewErrParamRequired("IndexName")) - } - if s.IndexName != nil && len(*s.IndexName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("IndexName", 3)) - } - if s.ProvisionedThroughput == nil { - invalidParams.Add(request.NewErrParamRequired("ProvisionedThroughput")) - } - if s.ProvisionedThroughput != nil { - if err := s.ProvisionedThroughput.Validate(); err != nil { - invalidParams.AddNested("ProvisionedThroughput", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the input of an UpdateItem operation. -type UpdateItemInput struct { - _ struct{} `type:"structure"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use UpdateExpression instead. Do not combine legacy parameters and - // expression parameters in a single API call; otherwise, DynamoDB will return - // a ValidationException exception. - // - // This parameter can be used for modifying top-level attributes; however, - // it does not support individual list or map elements. - // - // The names of attributes to be modified, the action to perform on each, - // and the new value for each. If you are updating an attribute that is an index - // key attribute for any indexes on that table, the attribute type must match - // the index key type defined in the AttributesDefinition of the table description. - // You can use UpdateItem to update any non-key attributes. - // - // Attribute values cannot be null. String and Binary type attributes must - // have lengths greater than zero. Set type attributes must not be empty. Requests - // with empty values will be rejected with a ValidationException exception. - // - // Each AttributeUpdates element consists of an attribute name to modify, along - // with the following: - // - // Value - The new value, if applicable, for this attribute. - // - // Action - A value that specifies how to perform the update. This action - // is only valid for an existing attribute whose data type is Number or is a - // set; do not use ADD for other data types. - // - // If an item with the specified primary key is found in the table, the following - // values perform the following actions: - // - // PUT - Adds the specified attribute to the item. If the attribute already - // exists, it is replaced by the new value. - // - // DELETE - Removes the attribute and its value, if no value is specified - // for DELETE. The data type of the specified value must match the existing - // value's data type. - // - // If a set of values is specified, then those values are subtracted from the - // old set. For example, if the attribute value was the set [a,b,c] and the - // DELETE action specifies [a,c], then the final attribute value is [b]. Specifying - // an empty set is an error. - // - // ADD - Adds the specified value to the item, if the attribute does not - // already exist. If the attribute does exist, then the behavior of ADD depends - // on the data type of the attribute: - // - // If the existing attribute is a number, and if Value is also a number, - // then Value is mathematically added to the existing attribute. If Value is - // a negative number, then it is subtracted from the existing attribute. - // - // If you use ADD to increment or decrement a number value for an item that - // doesn't exist before the update, DynamoDB uses 0 as the initial value. - // - // Similarly, if you use ADD for an existing item to increment or decrement - // an attribute value that doesn't exist before the update, DynamoDB uses 0 - // as the initial value. For example, suppose that the item you want to update - // doesn't have an attribute named itemcount, but you decide to ADD the number - // 3 to this attribute anyway. DynamoDB will create the itemcount attribute, - // set its initial value to 0, and finally add 3 to it. The result will be a - // new itemcount attribute, with a value of 3. - // - // If the existing data type is a set, and if Value is also a set, then - // Value is appended to the existing set. For example, if the attribute value - // is the set [1,2], and the ADD action specified [3], then the final attribute - // value is [1,2,3]. An error occurs if an ADD action is specified for a set - // attribute and the attribute type specified does not match the existing set - // type. - // - // Both sets must have the same primitive data type. For example, if the existing - // data type is a set of strings, Value must also be a set of strings. - // - // If no item with the specified key is found in the table, the following - // values perform the following actions: - // - // PUT - Causes DynamoDB to create a new item with the specified primary - // key, and then adds the attribute. - // - // DELETE - Nothing happens, because attributes cannot be deleted from a - // nonexistent item. The operation succeeds, but DynamoDB does not create a - // new item. - // - // ADD - Causes DynamoDB to create an item with the supplied primary key - // and number (or set of numbers) for the attribute value. The only data types - // allowed are Number and Number Set. - // - // If you provide any attributes that are part of an index key, then the - // data types for those attributes must match those of the schema in the table's - // attribute definition. - AttributeUpdates map[string]*AttributeValueUpdate `type:"map"` - - // A condition that must be satisfied in order for a conditional update to succeed. - // - // An expression can contain any of the following: - // - // Functions: attribute_exists | attribute_not_exists | attribute_type | - // contains | begins_with | size - // - // These function names are case-sensitive. - // - // Comparison operators: = | <> | < | > | <= | - // >= | BETWEEN | IN - // - // Logical operators: AND | OR | NOT - // - // For more information on condition expressions, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - // - // ConditionExpression replaces the legacy ConditionalOperator and Expected - // parameters. - ConditionExpression *string `type:"string"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ConditionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // A logical operator to apply to the conditions in the Expected map: - // - // AND - If all of the conditions evaluate to true, then the entire map - // evaluates to true. - // - // OR - If at least one of the conditions evaluate to true, then the entire - // map evaluates to true. - // - // If you omit ConditionalOperator, then AND is the default. - // - // The operation will succeed only if the entire map evaluates to true. - // - // This parameter does not support attributes of type List or Map. - ConditionalOperator *string `type:"string" enum:"ConditionalOperator"` - - // This is a legacy parameter, for backward compatibility. New applications - // should use ConditionExpression instead. Do not combine legacy parameters - // and expression parameters in a single API call; otherwise, DynamoDB will - // return a ValidationException exception. - // - // A map of attribute/condition pairs. Expected provides a conditional block - // for the UpdateItem operation. - // - // Each element of Expected consists of an attribute name, a comparison operator, - // and one or more values. DynamoDB compares the attribute with the value(s) - // you supplied, using the comparison operator. For each Expected element, the - // result of the evaluation is either true or false. - // - // If you specify more than one element in the Expected map, then by default - // all of the conditions must evaluate to true. In other words, the conditions - // are ANDed together. (You can use the ConditionalOperator parameter to OR - // the conditions instead. If you do this, then at least one of the conditions - // must evaluate to true, rather than all of them.) - // - // If the Expected map evaluates to true, then the conditional operation succeeds; - // otherwise, it fails. - // - // Expected contains the following: - // - // AttributeValueList - One or more values to evaluate against the supplied - // attribute. The number of values in the list depends on the ComparisonOperator - // being used. - // - // For type Number, value comparisons are numeric. - // - // String value comparisons for greater than, equals, or less than are based - // on ASCII character code values. For example, a is greater than A, and a is - // greater than B. For a list of code values, see http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters - // (http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters). - // - // For type Binary, DynamoDB treats each byte of the binary data as unsigned - // when it compares binary values. - // - // ComparisonOperator - A comparator for evaluating attributes in the AttributeValueList. - // When performing the comparison, DynamoDB uses strongly consistent reads. - // - // The following comparison operators are available: - // - // EQ | NE | LE | LT | GE | GT | NOT_NULL | NULL | CONTAINS | NOT_CONTAINS - // | BEGINS_WITH | IN | BETWEEN - // - // The following are descriptions of each comparison operator. - // - // EQ : Equal. EQ is supported for all datatypes, including lists and maps. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, Binary, String Set, Number Set, or Binary Set. If an item - // contains an AttributeValue element of a different type than the one provided - // in the request, the value does not match. For example, {"S":"6"} does not - // equal {"N":"6"}. Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // NE : Not equal. NE is supported for all datatypes, including lists and - // maps. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, Binary, String Set, Number Set, or Binary Set. If an item contains - // an AttributeValue of a different type than the one provided in the request, - // the value does not match. For example, {"S":"6"} does not equal {"N":"6"}. - // Also, {"N":"6"} does not equal {"NS":["6", "2", "1"]}. - // - // LE : Less than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // LT : Less than. - // - // AttributeValueList can contain only one AttributeValue of type String, - // Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GE : Greater than or equal. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // GT : Greater than. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not equal {"N":"6"}. Also, {"N":"6"} - // does not compare to {"NS":["6", "2", "1"]}. - // - // NOT_NULL : The attribute exists. NOT_NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the existence of an attribute, not its data type. - // If the data type of attribute "a" is null, and you evaluate it using NOT_NULL, - // the result is a Boolean true. This result is because the attribute "a" exists; - // its data type is not relevant to the NOT_NULL comparison operator. - // - // NULL : The attribute does not exist. NULL is supported for all datatypes, - // including lists and maps. - // - // This operator tests for the nonexistence of an attribute, not its data - // type. If the data type of attribute "a" is null, and you evaluate it using - // NULL, the result is a Boolean false. This is because the attribute "a" exists; - // its data type is not relevant to the NULL comparison operator. - // - // CONTAINS : Checks for a subsequence, or value in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is of type String, then the operator checks for a substring match. - // If the target attribute of the comparison is of type Binary, then the operator - // looks for a subsequence of the target that matches the input. If the target - // attribute of the comparison is a set ("SS", "NS", or "BS"), then the operator - // evaluates to true if it finds an exact match with any member of the set. - // - // CONTAINS is supported for lists: When evaluating "a CONTAINS b", "a" can - // be a list; however, "b" cannot be a set, a map, or a list. - // - // NOT_CONTAINS : Checks for absence of a subsequence, or absence of a value - // in a set. - // - // AttributeValueList can contain only one AttributeValue element of type - // String, Number, or Binary (not a set type). If the target attribute of the - // comparison is a String, then the operator checks for the absence of a substring - // match. If the target attribute of the comparison is Binary, then the operator - // checks for the absence of a subsequence of the target that matches the input. - // If the target attribute of the comparison is a set ("SS", "NS", or "BS"), - // then the operator evaluates to true if it does not find an exact match with - // any member of the set. - // - // NOT_CONTAINS is supported for lists: When evaluating "a NOT CONTAINS b", - // "a" can be a list; however, "b" cannot be a set, a map, or a list. - // - // BEGINS_WITH : Checks for a prefix. - // - // AttributeValueList can contain only one AttributeValue of type String or - // Binary (not a Number or a set type). The target attribute of the comparison - // must be of type String or Binary (not a Number or a set type). - // - // IN : Checks for matching elements within two sets. - // - // AttributeValueList can contain one or more AttributeValue elements of type - // String, Number, or Binary (not a set type). These attributes are compared - // against an existing set type attribute of an item. If any elements of the - // input set are present in the item attribute, the expression evaluates to - // true. - // - // BETWEEN : Greater than or equal to the first value, and less than or - // equal to the second value. - // - // AttributeValueList must contain two AttributeValue elements of the same - // type, either String, Number, or Binary (not a set type). A target attribute - // matches if the target value is greater than, or equal to, the first element - // and less than, or equal to, the second element. If an item contains an AttributeValue - // element of a different type than the one provided in the request, the value - // does not match. For example, {"S":"6"} does not compare to {"N":"6"}. Also, - // {"N":"6"} does not compare to {"NS":["6", "2", "1"]} - // - // For usage examples of AttributeValueList and ComparisonOperator, see - // Legacy Conditional Parameters (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/LegacyConditionalParameters.html) - // in the Amazon DynamoDB Developer Guide. - // - // For backward compatibility with previous DynamoDB releases, the following - // parameters can be used instead of AttributeValueList and ComparisonOperator: - // - // Value - A value for DynamoDB to compare with an attribute. - // - // Exists - A Boolean value that causes DynamoDB to evaluate the value before - // attempting the conditional operation: - // - // If Exists is true, DynamoDB will check to see if that attribute value - // already exists in the table. If it is found, then the condition evaluates - // to true; otherwise the condition evaluate to false. - // - // If Exists is false, DynamoDB assumes that the attribute value does not - // exist in the table. If in fact the value does not exist, then the assumption - // is valid and the condition evaluates to true. If the value is found, despite - // the assumption that it does not exist, the condition evaluates to false. - // - // Note that the default value for Exists is true. - // - // The Value and Exists parameters are incompatible with AttributeValueList - // and ComparisonOperator. Note that if you use both sets of parameters at once, - // DynamoDB will return a ValidationException exception. - // - // This parameter does not support attributes of type List or Map. - Expected map[string]*ExpectedAttributeValue `type:"map"` - - // One or more substitution tokens for attribute names in an expression. The - // following are some use cases for using ExpressionAttributeNames: - // - // To access an attribute whose name conflicts with a DynamoDB reserved word. - // - // To create a placeholder for repeating occurrences of an attribute name - // in an expression. - // - // To prevent special characters in an attribute name from being misinterpreted - // in an expression. - // - // Use the # character in an expression to dereference an attribute name. - // For example, consider the following attribute name: - // - // Percentile - // - // The name of this attribute conflicts with a reserved word, so it cannot - // be used directly in an expression. (For the complete list of reserved words, - // see Reserved Words (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ReservedWords.html) - // in the Amazon DynamoDB Developer Guide). To work around this, you could specify - // the following for ExpressionAttributeNames: - // - // {"#P":"Percentile"} - // - // You could then use this substitution in an expression, as in this example: - // - // #P = :val - // - // Tokens that begin with the : character are expression attribute values, - // which are placeholders for the actual value at runtime. - // - // For more information on expression attribute names, see Accessing Item - // Attributes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.AccessingItemAttributes.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeNames map[string]*string `type:"map"` - - // One or more values that can be substituted in an expression. - // - // Use the : (colon) character in an expression to dereference an attribute - // value. For example, suppose that you wanted to check whether the value of - // the ProductStatus attribute was one of the following: - // - // Available | Backordered | Discontinued - // - // You would first need to specify ExpressionAttributeValues as follows: - // - // { ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} - // } - // - // You could then use these values in an expression, such as this: - // - // ProductStatus IN (:avail, :back, :disc) - // - // For more information on expression attribute values, see Specifying Conditions - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.SpecifyingConditions.html) - // in the Amazon DynamoDB Developer Guide. - ExpressionAttributeValues map[string]*AttributeValue `type:"map"` - - // The primary key of the item to be updated. Each element consists of an attribute - // name and a value for that attribute. - // - // For the primary key, you must provide all of the attributes. For example, - // with a simple primary key, you only need to provide a value for the partition - // key. For a composite primary key, you must provide values for both the partition - // key and the sort key. - // - // Key is a required field - Key map[string]*AttributeValue `type:"map" required:"true"` - - // Determines the level of detail about provisioned throughput consumption that - // is returned in the response: - // - // INDEXES - The response includes the aggregate ConsumedCapacity for the - // operation, together with ConsumedCapacity for each table and secondary index - // that was accessed. - // - // Note that some operations, such as GetItem and BatchGetItem, do not access - // any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity - // information for table(s). - // - // TOTAL - The response includes only the aggregate ConsumedCapacity for - // the operation. - // - // NONE - No ConsumedCapacity details are included in the response. - ReturnConsumedCapacity *string `type:"string" enum:"ReturnConsumedCapacity"` - - // Determines whether item collection metrics are returned. If set to SIZE, - // the response includes statistics about item collections, if any, that were - // modified during the operation are returned in the response. If set to NONE - // (the default), no statistics are returned. - ReturnItemCollectionMetrics *string `type:"string" enum:"ReturnItemCollectionMetrics"` - - // Use ReturnValues if you want to get the item attributes as they appeared - // either before or after they were updated. For UpdateItem, the valid values - // are: - // - // NONE - If ReturnValues is not specified, or if its value is NONE, then - // nothing is returned. (This setting is the default for ReturnValues.) - // - // ALL_OLD - If UpdateItem overwrote an attribute name-value pair, then - // the content of the old item is returned. - // - // UPDATED_OLD - The old versions of only the updated attributes are returned. - // - // ALL_NEW - All of the attributes of the new version of the item are returned. - // - // UPDATED_NEW - The new versions of only the updated attributes are returned. - // - // There is no additional cost associated with requesting a return value - // aside from the small network and processing overhead of receiving a larger - // response. No Read Capacity Units are consumed. - // - // Values returned are strongly consistent - ReturnValues *string `type:"string" enum:"ReturnValue"` - - // The name of the table containing the item to update. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` - - // An expression that defines one or more attributes to be updated, the action - // to be performed on them, and new value(s) for them. - // - // The following action values are available for UpdateExpression. - // - // SET - Adds one or more attributes and values to an item. If any of these - // attribute already exist, they are replaced by the new values. You can also - // use SET to add or subtract from an attribute that is of type Number. For - // example: SET myNum = myNum + :val - // - // SET supports the following functions: - // - // if_not_exists (path, operand) - if the item does not contain an attribute - // at the specified path, then if_not_exists evaluates to operand; otherwise, - // it evaluates to path. You can use this function to avoid overwriting an attribute - // that may already be present in the item. - // - // list_append (operand, operand) - evaluates to a list with a new element - // added to it. You can append the new element to the start or the end of the - // list by reversing the order of the operands. - // - // These function names are case-sensitive. - // - // REMOVE - Removes one or more attributes from an item. - // - // ADD - Adds the specified value to the item, if the attribute does not - // already exist. If the attribute does exist, then the behavior of ADD depends - // on the data type of the attribute: - // - // If the existing attribute is a number, and if Value is also a number, - // then Value is mathematically added to the existing attribute. If Value is - // a negative number, then it is subtracted from the existing attribute. - // - // If you use ADD to increment or decrement a number value for an item that - // doesn't exist before the update, DynamoDB uses 0 as the initial value. - // - // Similarly, if you use ADD for an existing item to increment or decrement - // an attribute value that doesn't exist before the update, DynamoDB uses 0 - // as the initial value. For example, suppose that the item you want to update - // doesn't have an attribute named itemcount, but you decide to ADD the number - // 3 to this attribute anyway. DynamoDB will create the itemcount attribute, - // set its initial value to 0, and finally add 3 to it. The result will be a - // new itemcount attribute in the item, with a value of 3. - // - // If the existing data type is a set and if Value is also a set, then Value - // is added to the existing set. For example, if the attribute value is the - // set [1,2], and the ADD action specified [3], then the final attribute value - // is [1,2,3]. An error occurs if an ADD action is specified for a set attribute - // and the attribute type specified does not match the existing set type. - // - // Both sets must have the same primitive data type. For example, if the existing - // data type is a set of strings, the Value must also be a set of strings. - // - // The ADD action only supports Number and set data types. In addition, - // ADD can only be used on top-level attributes, not nested attributes. - // - // DELETE - Deletes an element from a set. - // - // If a set of values is specified, then those values are subtracted from the - // old set. For example, if the attribute value was the set [a,b,c] and the - // DELETE action specifies [a,c], then the final attribute value is [b]. Specifying - // an empty set is an error. - // - // The DELETE action only supports set data types. In addition, DELETE can - // only be used on top-level attributes, not nested attributes. - // - // You can have many actions in a single expression, such as the following: - // SET a=:value1, b=:value2 DELETE :value3, :value4, :value5 - // - // For more information on update expressions, see Modifying Items and Attributes - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.Modifying.html) - // in the Amazon DynamoDB Developer Guide. - // - // UpdateExpression replaces the legacy AttributeUpdates parameter. - UpdateExpression *string `type:"string"` -} - -// String returns the string representation -func (s UpdateItemInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateItemInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateItemInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateItemInput"} - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of an UpdateItem operation. -type UpdateItemOutput struct { - _ struct{} `type:"structure"` - - // A map of attribute values as they appeared before the UpdateItem operation. - // This map only appears if ReturnValues was specified as something other than - // NONE in the request. Each element represents one attribute. - Attributes map[string]*AttributeValue `type:"map"` - - // The capacity units consumed by an operation. The data returned includes the - // total provisioned throughput consumed, along with statistics for the table - // and any indexes involved in the operation. ConsumedCapacity is only returned - // if the request asked for it. For more information, see Provisioned Throughput - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughputIntro.html) - // in the Amazon DynamoDB Developer Guide. - ConsumedCapacity *ConsumedCapacity `type:"structure"` - - // Information about item collections, if any, that were affected by the operation. - // ItemCollectionMetrics is only returned if the request asked for it. If the - // table does not have any local secondary indexes, this information is not - // returned in the response. - ItemCollectionMetrics *ItemCollectionMetrics `type:"structure"` -} - -// String returns the string representation -func (s UpdateItemOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateItemOutput) GoString() string { - return s.String() -} - -// Represents the input of an UpdateTable operation. -type UpdateTableInput struct { - _ struct{} `type:"structure"` - - // An array of attributes that describe the key schema for the table and indexes. - // If you are adding a new global secondary index to the table, AttributeDefinitions - // must include the key element(s) of the new index. - AttributeDefinitions []*AttributeDefinition `type:"list"` - - // An array of one or more global secondary indexes for the table. For each - // index in the array, you can request one action: - // - // Create - add a new global secondary index to the table. - // - // Update - modify the provisioned throughput settings of an existing global - // secondary index. - // - // Delete - remove a global secondary index from the table. - // - // For more information, see Managing Global Secondary Indexes (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GSI.OnlineOps.html) - // in the Amazon DynamoDB Developer Guide. - GlobalSecondaryIndexUpdates []*GlobalSecondaryIndexUpdate `type:"list"` - - // Represents the provisioned throughput settings for a specified table or index. - // The settings can be modified using the UpdateTable operation. - // - // For current minimum and maximum provisioned throughput values, see Limits - // (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) - // in the Amazon DynamoDB Developer Guide. - ProvisionedThroughput *ProvisionedThroughput `type:"structure"` - - // Represents the DynamoDB Streams configuration for the table. - // - // You will receive a ResourceInUseException if you attempt to enable a stream - // on a table that already has a stream, or if you attempt to disable a stream - // on a table which does not have a stream. - StreamSpecification *StreamSpecification `type:"structure"` - - // The name of the table to be updated. - // - // TableName is a required field - TableName *string `min:"3" type:"string" required:"true"` -} - -// String returns the string representation -func (s UpdateTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateTableInput"} - if s.TableName == nil { - invalidParams.Add(request.NewErrParamRequired("TableName")) - } - if s.TableName != nil && len(*s.TableName) < 3 { - invalidParams.Add(request.NewErrParamMinLen("TableName", 3)) - } - if s.AttributeDefinitions != nil { - for i, v := range s.AttributeDefinitions { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "AttributeDefinitions", i), err.(request.ErrInvalidParams)) - } - } - } - if s.GlobalSecondaryIndexUpdates != nil { - for i, v := range s.GlobalSecondaryIndexUpdates { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "GlobalSecondaryIndexUpdates", i), err.(request.ErrInvalidParams)) - } - } - } - if s.ProvisionedThroughput != nil { - if err := s.ProvisionedThroughput.Validate(); err != nil { - invalidParams.AddNested("ProvisionedThroughput", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output of an UpdateTable operation. -type UpdateTableOutput struct { - _ struct{} `type:"structure"` - - // Represents the properties of a table. - TableDescription *TableDescription `type:"structure"` -} - -// String returns the string representation -func (s UpdateTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateTableOutput) GoString() string { - return s.String() -} - -// Represents an operation to perform - either DeleteItem or PutItem. You can -// only request one of these operations, not both, in a single WriteRequest. -// If you do need to perform both of these operations, you will need to provide -// two separate WriteRequest objects. -type WriteRequest struct { - _ struct{} `type:"structure"` - - // A request to perform a DeleteItem operation. - DeleteRequest *DeleteRequest `type:"structure"` - - // A request to perform a PutItem operation. - PutRequest *PutRequest `type:"structure"` -} - -// String returns the string representation -func (s WriteRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s WriteRequest) GoString() string { - return s.String() -} - -const ( - // AttributeActionAdd is a AttributeAction enum value - AttributeActionAdd = "ADD" - - // AttributeActionPut is a AttributeAction enum value - AttributeActionPut = "PUT" - - // AttributeActionDelete is a AttributeAction enum value - AttributeActionDelete = "DELETE" -) - -const ( - // ComparisonOperatorEq is a ComparisonOperator enum value - ComparisonOperatorEq = "EQ" - - // ComparisonOperatorNe is a ComparisonOperator enum value - ComparisonOperatorNe = "NE" - - // ComparisonOperatorIn is a ComparisonOperator enum value - ComparisonOperatorIn = "IN" - - // ComparisonOperatorLe is a ComparisonOperator enum value - ComparisonOperatorLe = "LE" - - // ComparisonOperatorLt is a ComparisonOperator enum value - ComparisonOperatorLt = "LT" - - // ComparisonOperatorGe is a ComparisonOperator enum value - ComparisonOperatorGe = "GE" - - // ComparisonOperatorGt is a ComparisonOperator enum value - ComparisonOperatorGt = "GT" - - // ComparisonOperatorBetween is a ComparisonOperator enum value - ComparisonOperatorBetween = "BETWEEN" - - // ComparisonOperatorNotNull is a ComparisonOperator enum value - ComparisonOperatorNotNull = "NOT_NULL" - - // ComparisonOperatorNull is a ComparisonOperator enum value - ComparisonOperatorNull = "NULL" - - // ComparisonOperatorContains is a ComparisonOperator enum value - ComparisonOperatorContains = "CONTAINS" - - // ComparisonOperatorNotContains is a ComparisonOperator enum value - ComparisonOperatorNotContains = "NOT_CONTAINS" - - // ComparisonOperatorBeginsWith is a ComparisonOperator enum value - ComparisonOperatorBeginsWith = "BEGINS_WITH" -) - -const ( - // ConditionalOperatorAnd is a ConditionalOperator enum value - ConditionalOperatorAnd = "AND" - - // ConditionalOperatorOr is a ConditionalOperator enum value - ConditionalOperatorOr = "OR" -) - -const ( - // IndexStatusCreating is a IndexStatus enum value - IndexStatusCreating = "CREATING" - - // IndexStatusUpdating is a IndexStatus enum value - IndexStatusUpdating = "UPDATING" - - // IndexStatusDeleting is a IndexStatus enum value - IndexStatusDeleting = "DELETING" - - // IndexStatusActive is a IndexStatus enum value - IndexStatusActive = "ACTIVE" -) - -const ( - // KeyTypeHash is a KeyType enum value - KeyTypeHash = "HASH" - - // KeyTypeRange is a KeyType enum value - KeyTypeRange = "RANGE" -) - -const ( - // ProjectionTypeAll is a ProjectionType enum value - ProjectionTypeAll = "ALL" - - // ProjectionTypeKeysOnly is a ProjectionType enum value - ProjectionTypeKeysOnly = "KEYS_ONLY" - - // ProjectionTypeInclude is a ProjectionType enum value - ProjectionTypeInclude = "INCLUDE" -) - -// Determines the level of detail about provisioned throughput consumption that -// is returned in the response: -// -// INDEXES - The response includes the aggregate ConsumedCapacity for the -// operation, together with ConsumedCapacity for each table and secondary index -// that was accessed. -// -// Note that some operations, such as GetItem and BatchGetItem, do not access -// any indexes at all. In these cases, specifying INDEXES will only return ConsumedCapacity -// information for table(s). -// -// TOTAL - The response includes only the aggregate ConsumedCapacity for -// the operation. -// -// NONE - No ConsumedCapacity details are included in the response. -const ( - // ReturnConsumedCapacityIndexes is a ReturnConsumedCapacity enum value - ReturnConsumedCapacityIndexes = "INDEXES" - - // ReturnConsumedCapacityTotal is a ReturnConsumedCapacity enum value - ReturnConsumedCapacityTotal = "TOTAL" - - // ReturnConsumedCapacityNone is a ReturnConsumedCapacity enum value - ReturnConsumedCapacityNone = "NONE" -) - -const ( - // ReturnItemCollectionMetricsSize is a ReturnItemCollectionMetrics enum value - ReturnItemCollectionMetricsSize = "SIZE" - - // ReturnItemCollectionMetricsNone is a ReturnItemCollectionMetrics enum value - ReturnItemCollectionMetricsNone = "NONE" -) - -const ( - // ReturnValueNone is a ReturnValue enum value - ReturnValueNone = "NONE" - - // ReturnValueAllOld is a ReturnValue enum value - ReturnValueAllOld = "ALL_OLD" - - // ReturnValueUpdatedOld is a ReturnValue enum value - ReturnValueUpdatedOld = "UPDATED_OLD" - - // ReturnValueAllNew is a ReturnValue enum value - ReturnValueAllNew = "ALL_NEW" - - // ReturnValueUpdatedNew is a ReturnValue enum value - ReturnValueUpdatedNew = "UPDATED_NEW" -) - -const ( - // ScalarAttributeTypeS is a ScalarAttributeType enum value - ScalarAttributeTypeS = "S" - - // ScalarAttributeTypeN is a ScalarAttributeType enum value - ScalarAttributeTypeN = "N" - - // ScalarAttributeTypeB is a ScalarAttributeType enum value - ScalarAttributeTypeB = "B" -) - -const ( - // SelectAllAttributes is a Select enum value - SelectAllAttributes = "ALL_ATTRIBUTES" - - // SelectAllProjectedAttributes is a Select enum value - SelectAllProjectedAttributes = "ALL_PROJECTED_ATTRIBUTES" - - // SelectSpecificAttributes is a Select enum value - SelectSpecificAttributes = "SPECIFIC_ATTRIBUTES" - - // SelectCount is a Select enum value - SelectCount = "COUNT" -) - -const ( - // StreamViewTypeNewImage is a StreamViewType enum value - StreamViewTypeNewImage = "NEW_IMAGE" - - // StreamViewTypeOldImage is a StreamViewType enum value - StreamViewTypeOldImage = "OLD_IMAGE" - - // StreamViewTypeNewAndOldImages is a StreamViewType enum value - StreamViewTypeNewAndOldImages = "NEW_AND_OLD_IMAGES" - - // StreamViewTypeKeysOnly is a StreamViewType enum value - StreamViewTypeKeysOnly = "KEYS_ONLY" -) - -const ( - // TableStatusCreating is a TableStatus enum value - TableStatusCreating = "CREATING" - - // TableStatusUpdating is a TableStatus enum value - TableStatusUpdating = "UPDATING" - - // TableStatusDeleting is a TableStatus enum value - TableStatusDeleting = "DELETING" - - // TableStatusActive is a TableStatus enum value - TableStatusActive = "ACTIVE" -) diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations.go deleted file mode 100644 index 51843cd7..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations.go +++ /dev/null @@ -1,98 +0,0 @@ -package dynamodb - -import ( - "bytes" - "hash/crc32" - "io" - "io/ioutil" - "math" - "strconv" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/request" -) - -type retryer struct { - client.DefaultRetryer -} - -func (d retryer) RetryRules(r *request.Request) time.Duration { - delay := time.Duration(math.Pow(2, float64(r.RetryCount))) * 50 - return delay * time.Millisecond -} - -func init() { - initClient = func(c *client.Client) { - r := retryer{} - if c.Config.MaxRetries == nil || aws.IntValue(c.Config.MaxRetries) == aws.UseServiceDefaultRetries { - r.NumMaxRetries = 10 - } else { - r.NumMaxRetries = *c.Config.MaxRetries - } - c.Retryer = r - - c.Handlers.Build.PushBack(disableCompression) - c.Handlers.Unmarshal.PushFront(validateCRC32) - } -} - -func drainBody(b io.ReadCloser, length int64) (out *bytes.Buffer, err error) { - if length < 0 { - length = 0 - } - buf := bytes.NewBuffer(make([]byte, 0, length)) - - if _, err = buf.ReadFrom(b); err != nil { - return nil, err - } - if err = b.Close(); err != nil { - return nil, err - } - return buf, nil -} - -func disableCompression(r *request.Request) { - r.HTTPRequest.Header.Set("Accept-Encoding", "identity") -} - -func validateCRC32(r *request.Request) { - if r.Error != nil { - return // already have an error, no need to verify CRC - } - - // Checksum validation is off, skip - if aws.BoolValue(r.Config.DisableComputeChecksums) { - return - } - - // Try to get CRC from response - header := r.HTTPResponse.Header.Get("X-Amz-Crc32") - if header == "" { - return // No header, skip - } - - expected, err := strconv.ParseUint(header, 10, 32) - if err != nil { - return // Could not determine CRC value, skip - } - - buf, err := drainBody(r.HTTPResponse.Body, r.HTTPResponse.ContentLength) - if err != nil { // failed to read the response body, skip - return - } - - // Reset body for subsequent reads - r.HTTPResponse.Body = ioutil.NopCloser(bytes.NewReader(buf.Bytes())) - - // Compute the CRC checksum - crc := crc32.ChecksumIEEE(buf.Bytes()) - - if crc != uint32(expected) { - // CRC does not match, set a retryable error - r.Retryable = aws.Bool(true) - r.Error = awserr.New("CRC32CheckFailed", "CRC32 integrity check failed", nil) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations_test.go deleted file mode 100644 index 194b5179..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations_test.go +++ /dev/null @@ -1,106 +0,0 @@ -package dynamodb_test - -import ( - "bytes" - "io/ioutil" - "net/http" - "os" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/dynamodb" -) - -var db *dynamodb.DynamoDB - -func TestMain(m *testing.M) { - db = dynamodb.New(unit.Session, &aws.Config{ - MaxRetries: aws.Int(2), - }) - db.Handlers.Send.Clear() // mock sending - - os.Exit(m.Run()) -} - -func mockCRCResponse(svc *dynamodb.DynamoDB, status int, body, crc string) (req *request.Request) { - header := http.Header{} - header.Set("x-amz-crc32", crc) - - req, _ = svc.ListTablesRequest(nil) - req.Handlers.Send.PushBack(func(*request.Request) { - req.HTTPResponse = &http.Response{ - ContentLength: int64(len(body)), - StatusCode: status, - Body: ioutil.NopCloser(bytes.NewReader([]byte(body))), - Header: header, - } - }) - req.Send() - return -} - -func TestDefaultRetryRules(t *testing.T) { - d := dynamodb.New(unit.Session, &aws.Config{MaxRetries: aws.Int(-1)}) - assert.Equal(t, d.MaxRetries(), 10) -} - -func TestCustomRetryRules(t *testing.T) { - d := dynamodb.New(unit.Session, &aws.Config{MaxRetries: aws.Int(2)}) - assert.Equal(t, d.MaxRetries(), 2) -} - -func TestValidateCRC32NoHeaderSkip(t *testing.T) { - req := mockCRCResponse(db, 200, "{}", "") - assert.NoError(t, req.Error) -} - -func TestValidateCRC32InvalidHeaderSkip(t *testing.T) { - req := mockCRCResponse(db, 200, "{}", "ABC") - assert.NoError(t, req.Error) -} - -func TestValidateCRC32AlreadyErrorSkip(t *testing.T) { - req := mockCRCResponse(db, 400, "{}", "1234") - assert.Error(t, req.Error) - - assert.NotEqual(t, "CRC32CheckFailed", req.Error.(awserr.Error).Code()) -} - -func TestValidateCRC32IsValid(t *testing.T) { - req := mockCRCResponse(db, 200, `{"TableNames":["A"]}`, "3090163698") - assert.NoError(t, req.Error) - - // CRC check does not affect output parsing - out := req.Data.(*dynamodb.ListTablesOutput) - assert.Equal(t, "A", *out.TableNames[0]) -} - -func TestValidateCRC32DoesNotMatch(t *testing.T) { - req := mockCRCResponse(db, 200, "{}", "1234") - assert.Error(t, req.Error) - - assert.Equal(t, "CRC32CheckFailed", req.Error.(awserr.Error).Code()) - assert.Equal(t, 2, req.RetryCount) -} - -func TestValidateCRC32DoesNotMatchNoComputeChecksum(t *testing.T) { - svc := dynamodb.New(unit.Session, &aws.Config{ - MaxRetries: aws.Int(2), - DisableComputeChecksums: aws.Bool(true), - }) - svc.Handlers.Send.Clear() // mock sending - - req := mockCRCResponse(svc, 200, `{"TableNames":["A"]}`, "1234") - assert.NoError(t, req.Error) - - assert.Equal(t, 0, int(req.RetryCount)) - - // CRC check disabled. Does not affect output parsing - out := req.Data.(*dynamodb.ListTablesOutput) - assert.Equal(t, "A", *out.TableNames[0]) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter.go deleted file mode 100644 index e38e41da..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter.go +++ /dev/null @@ -1,443 +0,0 @@ -package dynamodbattribute - -import ( - "bytes" - "encoding/json" - "fmt" - "reflect" - "runtime" - "strconv" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/service/dynamodb" -) - -// ConvertToMap accepts a map[string]interface{} or struct and converts it to a -// map[string]*dynamodb.AttributeValue. -// -// If in contains any structs, it is first JSON encoded/decoded it to convert it -// to a map[string]interface{}, so `json` struct tags are respected. -// -// Deprecated: Use MarshalMap instead -func ConvertToMap(in interface{}) (item map[string]*dynamodb.AttributeValue, err error) { - defer func() { - if r := recover(); r != nil { - if e, ok := r.(runtime.Error); ok { - err = e - } else if s, ok := r.(string); ok { - err = fmt.Errorf(s) - } else { - err = r.(error) - } - item = nil - } - }() - - if in == nil { - return nil, awserr.New("SerializationError", - "in must be a map[string]interface{} or struct, got ", nil) - } - - v := reflect.ValueOf(in) - if v.Kind() != reflect.Struct && !(v.Kind() == reflect.Map && v.Type().Key().Kind() == reflect.String) { - return nil, awserr.New("SerializationError", - fmt.Sprintf("in must be a map[string]interface{} or struct, got %s", - v.Type().String()), - nil) - } - - if isTyped(reflect.TypeOf(in)) { - var out map[string]interface{} - in = convertToUntyped(in, out) - } - - item = make(map[string]*dynamodb.AttributeValue) - for k, v := range in.(map[string]interface{}) { - item[k] = convertTo(v) - } - - return item, nil -} - -// ConvertFromMap accepts a map[string]*dynamodb.AttributeValue and converts it to a -// map[string]interface{} or struct. -// -// If v points to a struct, the result is first converted it to a -// map[string]interface{}, then JSON encoded/decoded it to convert to a struct, -// so `json` struct tags are respected. -// -// Deprecated: Use UnmarshalMap instead -func ConvertFromMap(item map[string]*dynamodb.AttributeValue, v interface{}) (err error) { - defer func() { - if r := recover(); r != nil { - if e, ok := r.(runtime.Error); ok { - err = e - } else if s, ok := r.(string); ok { - err = fmt.Errorf(s) - } else { - err = r.(error) - } - item = nil - } - }() - - rv := reflect.ValueOf(v) - if rv.Kind() != reflect.Ptr || rv.IsNil() { - return awserr.New("SerializationError", - fmt.Sprintf("v must be a non-nil pointer to a map[string]interface{} or struct, got %s", - rv.Type()), - nil) - } - if rv.Elem().Kind() != reflect.Struct && !(rv.Elem().Kind() == reflect.Map && rv.Elem().Type().Key().Kind() == reflect.String) { - return awserr.New("SerializationError", - fmt.Sprintf("v must be a non-nil pointer to a map[string]interface{} or struct, got %s", - rv.Type()), - nil) - } - - m := make(map[string]interface{}) - for k, v := range item { - m[k] = convertFrom(v) - } - - if isTyped(reflect.TypeOf(v)) { - err = convertToTyped(m, v) - } else { - rv.Elem().Set(reflect.ValueOf(m)) - } - - return err -} - -// ConvertToList accepts an array or slice and converts it to a -// []*dynamodb.AttributeValue. -// -// Converting []byte fields to dynamodb.AttributeValue are only currently supported -// if the input is a map[string]interface{} type. []byte within typed structs are not -// converted correctly and are converted into base64 strings. This is a known bug, -// and will be fixed in a later release. -// -// If in contains any structs, it is first JSON encoded/decoded it to convert it -// to a []interface{}, so `json` struct tags are respected. -// -// Deprecated: Use MarshalList instead -func ConvertToList(in interface{}) (item []*dynamodb.AttributeValue, err error) { - defer func() { - if r := recover(); r != nil { - if e, ok := r.(runtime.Error); ok { - err = e - } else if s, ok := r.(string); ok { - err = fmt.Errorf(s) - } else { - err = r.(error) - } - item = nil - } - }() - - if in == nil { - return nil, awserr.New("SerializationError", - "in must be an array or slice, got ", - nil) - } - - v := reflect.ValueOf(in) - if v.Kind() != reflect.Array && v.Kind() != reflect.Slice { - return nil, awserr.New("SerializationError", - fmt.Sprintf("in must be an array or slice, got %s", - v.Type().String()), - nil) - } - - if isTyped(reflect.TypeOf(in)) { - var out []interface{} - in = convertToUntyped(in, out) - } - - item = make([]*dynamodb.AttributeValue, 0, len(in.([]interface{}))) - for _, v := range in.([]interface{}) { - item = append(item, convertTo(v)) - } - - return item, nil -} - -// ConvertFromList accepts a []*dynamodb.AttributeValue and converts it to an array or -// slice. -// -// If v contains any structs, the result is first converted it to a -// []interface{}, then JSON encoded/decoded it to convert to a typed array or -// slice, so `json` struct tags are respected. -// -// Deprecated: Use UnmarshalList instead -func ConvertFromList(item []*dynamodb.AttributeValue, v interface{}) (err error) { - defer func() { - if r := recover(); r != nil { - if e, ok := r.(runtime.Error); ok { - err = e - } else if s, ok := r.(string); ok { - err = fmt.Errorf(s) - } else { - err = r.(error) - } - item = nil - } - }() - - rv := reflect.ValueOf(v) - if rv.Kind() != reflect.Ptr || rv.IsNil() { - return awserr.New("SerializationError", - fmt.Sprintf("v must be a non-nil pointer to an array or slice, got %s", - rv.Type()), - nil) - } - if rv.Elem().Kind() != reflect.Array && rv.Elem().Kind() != reflect.Slice { - return awserr.New("SerializationError", - fmt.Sprintf("v must be a non-nil pointer to an array or slice, got %s", - rv.Type()), - nil) - } - - l := make([]interface{}, 0, len(item)) - for _, v := range item { - l = append(l, convertFrom(v)) - } - - if isTyped(reflect.TypeOf(v)) { - err = convertToTyped(l, v) - } else { - rv.Elem().Set(reflect.ValueOf(l)) - } - - return err -} - -// ConvertTo accepts any interface{} and converts it to a *dynamodb.AttributeValue. -// -// If in contains any structs, it is first JSON encoded/decoded it to convert it -// to a interface{}, so `json` struct tags are respected. -// -// Deprecated: Use Marshal instead -func ConvertTo(in interface{}) (item *dynamodb.AttributeValue, err error) { - defer func() { - if r := recover(); r != nil { - if e, ok := r.(runtime.Error); ok { - err = e - } else if s, ok := r.(string); ok { - err = fmt.Errorf(s) - } else { - err = r.(error) - } - item = nil - } - }() - - if in != nil && isTyped(reflect.TypeOf(in)) { - var out interface{} - in = convertToUntyped(in, out) - } - - item = convertTo(in) - return item, nil -} - -// ConvertFrom accepts a *dynamodb.AttributeValue and converts it to any interface{}. -// -// If v contains any structs, the result is first converted it to a interface{}, -// then JSON encoded/decoded it to convert to a struct, so `json` struct tags -// are respected. -// -// Deprecated: Use Unmarshal instead -func ConvertFrom(item *dynamodb.AttributeValue, v interface{}) (err error) { - defer func() { - if r := recover(); r != nil { - if e, ok := r.(runtime.Error); ok { - err = e - } else if s, ok := r.(string); ok { - err = fmt.Errorf(s) - } else { - err = r.(error) - } - item = nil - } - }() - - rv := reflect.ValueOf(v) - if rv.Kind() != reflect.Ptr || rv.IsNil() { - return awserr.New("SerializationError", - fmt.Sprintf("v must be a non-nil pointer to an interface{} or struct, got %s", - rv.Type()), - nil) - } - if rv.Elem().Kind() != reflect.Interface && rv.Elem().Kind() != reflect.Struct { - return awserr.New("SerializationError", - fmt.Sprintf("v must be a non-nil pointer to an interface{} or struct, got %s", - rv.Type()), - nil) - } - - res := convertFrom(item) - - if isTyped(reflect.TypeOf(v)) { - err = convertToTyped(res, v) - } else if res != nil { - rv.Elem().Set(reflect.ValueOf(res)) - } - - return err -} - -func isTyped(v reflect.Type) bool { - switch v.Kind() { - case reflect.Struct: - return true - case reflect.Array, reflect.Slice: - if isTyped(v.Elem()) { - return true - } - case reflect.Map: - if isTyped(v.Key()) { - return true - } - if isTyped(v.Elem()) { - return true - } - case reflect.Ptr: - return isTyped(v.Elem()) - } - return false -} - -func convertToUntyped(in, out interface{}) interface{} { - b, err := json.Marshal(in) - if err != nil { - panic(err) - } - - decoder := json.NewDecoder(bytes.NewReader(b)) - decoder.UseNumber() - err = decoder.Decode(&out) - if err != nil { - panic(err) - } - - return out -} - -func convertToTyped(in, out interface{}) error { - b, err := json.Marshal(in) - if err != nil { - return err - } - - decoder := json.NewDecoder(bytes.NewReader(b)) - return decoder.Decode(&out) -} - -func convertTo(in interface{}) *dynamodb.AttributeValue { - a := &dynamodb.AttributeValue{} - - if in == nil { - a.NULL = new(bool) - *a.NULL = true - return a - } - - if m, ok := in.(map[string]interface{}); ok { - a.M = make(map[string]*dynamodb.AttributeValue) - for k, v := range m { - a.M[k] = convertTo(v) - } - return a - } - - v := reflect.ValueOf(in) - switch v.Kind() { - case reflect.Bool: - a.BOOL = new(bool) - *a.BOOL = v.Bool() - case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: - a.N = new(string) - *a.N = strconv.FormatInt(v.Int(), 10) - case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: - a.N = new(string) - *a.N = strconv.FormatUint(v.Uint(), 10) - case reflect.Float32, reflect.Float64: - a.N = new(string) - *a.N = strconv.FormatFloat(v.Float(), 'f', -1, 64) - case reflect.String: - if n, ok := in.(json.Number); ok { - a.N = new(string) - *a.N = n.String() - } else { - a.S = new(string) - *a.S = v.String() - } - case reflect.Slice: - switch v.Type() { - case reflect.TypeOf(([]byte)(nil)): - a.B = v.Bytes() - default: - a.L = make([]*dynamodb.AttributeValue, v.Len()) - for i := 0; i < v.Len(); i++ { - a.L[i] = convertTo(v.Index(i).Interface()) - } - } - default: - panic(fmt.Sprintf("the type %s is not supported", v.Type().String())) - } - - return a -} - -func convertFrom(a *dynamodb.AttributeValue) interface{} { - if a.S != nil { - return *a.S - } - - if a.N != nil { - // Number is tricky b/c we don't know which numeric type to use. Here we - // simply try the different types from most to least restrictive. - if n, err := strconv.ParseInt(*a.N, 10, 64); err == nil { - return int(n) - } - if n, err := strconv.ParseUint(*a.N, 10, 64); err == nil { - return uint(n) - } - n, err := strconv.ParseFloat(*a.N, 64) - if err != nil { - panic(err) - } - return n - } - - if a.BOOL != nil { - return *a.BOOL - } - - if a.NULL != nil { - return nil - } - - if a.M != nil { - m := make(map[string]interface{}) - for k, v := range a.M { - m[k] = convertFrom(v) - } - return m - } - - if a.L != nil { - l := make([]interface{}, len(a.L)) - for index, v := range a.L { - l[index] = convertFrom(v) - } - return l - } - - if a.B != nil { - return a.B - } - - panic(fmt.Sprintf("%#v is not a supported dynamodb.AttributeValue", a)) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_examples_test.go deleted file mode 100644 index 67b65fae..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_examples_test.go +++ /dev/null @@ -1,80 +0,0 @@ -package dynamodbattribute_test - -import ( - "fmt" - "reflect" - - "github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute" -) - -func ExampleConvertTo() { - type Record struct { - MyField string - Letters []string - Numbers []int - } - - r := Record{ - MyField: "MyFieldValue", - Letters: []string{"a", "b", "c", "d"}, - Numbers: []int{1, 2, 3}, - } - av, err := dynamodbattribute.ConvertTo(r) - fmt.Println("err", err) - fmt.Println("MyField", av.M["MyField"]) - fmt.Println("Letters", av.M["Letters"]) - fmt.Println("Numbers", av.M["Numbers"]) - - // Output: - // err - // MyField { - // S: "MyFieldValue" - // } - // Letters { - // L: [ - // { - // S: "a" - // }, - // { - // S: "b" - // }, - // { - // S: "c" - // }, - // { - // S: "d" - // } - // ] - // } - // Numbers { - // L: [{ - // N: "1" - // },{ - // N: "2" - // },{ - // N: "3" - // }] - // } -} - -func ExampleConvertFrom() { - type Record struct { - MyField string - Letters []string - A2Num map[string]int - } - - r := Record{ - MyField: "MyFieldValue", - Letters: []string{"a", "b", "c", "d"}, - A2Num: map[string]int{"a": 1, "b": 2, "c": 3}, - } - av, err := dynamodbattribute.ConvertTo(r) - - r2 := Record{} - err = dynamodbattribute.ConvertFrom(av, &r2) - fmt.Println(err, reflect.DeepEqual(r, r2)) - - // Output: - // true -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_test.go deleted file mode 100644 index a73cd22c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_test.go +++ /dev/null @@ -1,498 +0,0 @@ -package dynamodbattribute - -import ( - "math" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/service/dynamodb" -) - -type mySimpleStruct struct { - String string - Int int - Uint uint - Float32 float32 - Float64 float64 - Bool bool - Null *interface{} -} - -type myComplexStruct struct { - Simple []mySimpleStruct -} - -type converterTestInput struct { - input interface{} - expected interface{} - err awserr.Error - inputType string // "enum" of types -} - -var trueValue = true -var falseValue = false - -var converterScalarInputs = []converterTestInput{ - { - input: nil, - expected: &dynamodb.AttributeValue{NULL: &trueValue}, - }, - { - input: "some string", - expected: &dynamodb.AttributeValue{S: aws.String("some string")}, - }, - { - input: true, - expected: &dynamodb.AttributeValue{BOOL: &trueValue}, - }, - { - input: false, - expected: &dynamodb.AttributeValue{BOOL: &falseValue}, - }, - { - input: 3.14, - expected: &dynamodb.AttributeValue{N: aws.String("3.14")}, - }, - { - input: math.MaxFloat32, - expected: &dynamodb.AttributeValue{N: aws.String("340282346638528860000000000000000000000")}, - }, - { - input: math.MaxFloat64, - expected: &dynamodb.AttributeValue{N: aws.String("179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")}, - }, - { - input: 12, - expected: &dynamodb.AttributeValue{N: aws.String("12")}, - }, - { - input: mySimpleStruct{}, - expected: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {S: aws.String("")}, - "Uint": {N: aws.String("0")}, - }, - }, - inputType: "mySimpleStruct", - }, -} - -var converterMapTestInputs = []converterTestInput{ - // Scalar tests - { - input: nil, - err: awserr.New("SerializationError", "in must be a map[string]interface{} or struct, got ", nil), - }, - { - input: map[string]interface{}{"string": "some string"}, - expected: map[string]*dynamodb.AttributeValue{"string": {S: aws.String("some string")}}, - }, - { - input: map[string]interface{}{"bool": true}, - expected: map[string]*dynamodb.AttributeValue{"bool": {BOOL: &trueValue}}, - }, - { - input: map[string]interface{}{"bool": false}, - expected: map[string]*dynamodb.AttributeValue{"bool": {BOOL: &falseValue}}, - }, - { - input: map[string]interface{}{"null": nil}, - expected: map[string]*dynamodb.AttributeValue{"null": {NULL: &trueValue}}, - }, - { - input: map[string]interface{}{"float": 3.14}, - expected: map[string]*dynamodb.AttributeValue{"float": {N: aws.String("3.14")}}, - }, - { - input: map[string]interface{}{"float": math.MaxFloat32}, - expected: map[string]*dynamodb.AttributeValue{"float": {N: aws.String("340282346638528860000000000000000000000")}}, - }, - { - input: map[string]interface{}{"float": math.MaxFloat64}, - expected: map[string]*dynamodb.AttributeValue{"float": {N: aws.String("179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")}}, - }, - { - input: map[string]interface{}{"int": int(12)}, - expected: map[string]*dynamodb.AttributeValue{"int": {N: aws.String("12")}}, - }, - { - input: map[string]interface{}{"byte": []byte{48, 49}}, - expected: map[string]*dynamodb.AttributeValue{"byte": {B: []byte{48, 49}}}, - }, - // List - { - input: map[string]interface{}{"list": []interface{}{"a string", 12, 3.14, true, nil, false}}, - expected: map[string]*dynamodb.AttributeValue{ - "list": { - L: []*dynamodb.AttributeValue{ - {S: aws.String("a string")}, - {N: aws.String("12")}, - {N: aws.String("3.14")}, - {BOOL: &trueValue}, - {NULL: &trueValue}, - {BOOL: &falseValue}, - }, - }, - }, - }, - // Map - { - input: map[string]interface{}{"map": map[string]interface{}{"nestedint": 12}}, - expected: map[string]*dynamodb.AttributeValue{ - "map": { - M: map[string]*dynamodb.AttributeValue{ - "nestedint": { - N: aws.String("12"), - }, - }, - }, - }, - }, - // Structs - { - input: mySimpleStruct{}, - expected: map[string]*dynamodb.AttributeValue{ - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {S: aws.String("")}, - "Uint": {N: aws.String("0")}, - }, - inputType: "mySimpleStruct", - }, - { - input: myComplexStruct{}, - expected: map[string]*dynamodb.AttributeValue{ - "Simple": {NULL: &trueValue}, - }, - inputType: "myComplexStruct", - }, - { - input: myComplexStruct{Simple: []mySimpleStruct{{Int: -2}, {Uint: 5}}}, - expected: map[string]*dynamodb.AttributeValue{ - "Simple": { - L: []*dynamodb.AttributeValue{ - { - M: map[string]*dynamodb.AttributeValue{ - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("-2")}, - "Null": {NULL: &trueValue}, - "String": {S: aws.String("")}, - "Uint": {N: aws.String("0")}, - }, - }, - { - M: map[string]*dynamodb.AttributeValue{ - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {S: aws.String("")}, - "Uint": {N: aws.String("5")}, - }, - }, - }, - }, - }, - inputType: "myComplexStruct", - }, -} - -var converterListTestInputs = []converterTestInput{ - { - input: nil, - err: awserr.New("SerializationError", "in must be an array or slice, got ", nil), - }, - { - input: []interface{}{}, - expected: []*dynamodb.AttributeValue{}, - }, - { - input: []interface{}{"a string", 12, 3.14, true, nil, false}, - expected: []*dynamodb.AttributeValue{ - {S: aws.String("a string")}, - {N: aws.String("12")}, - {N: aws.String("3.14")}, - {BOOL: &trueValue}, - {NULL: &trueValue}, - {BOOL: &falseValue}, - }, - }, - { - input: []mySimpleStruct{{}}, - expected: []*dynamodb.AttributeValue{ - { - M: map[string]*dynamodb.AttributeValue{ - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {S: aws.String("")}, - "Uint": {N: aws.String("0")}, - }, - }, - }, - inputType: "mySimpleStruct", - }, -} - -func TestConvertTo(t *testing.T) { - for _, test := range converterScalarInputs { - testConvertTo(t, test) - } -} - -func testConvertTo(t *testing.T, test converterTestInput) { - actual, err := ConvertTo(test.input) - if test.err != nil { - if err == nil { - t.Errorf("ConvertTo with input %#v retured %#v, expected error `%s`", test.input, actual, test.err) - } else if err.Error() != test.err.Error() { - t.Errorf("ConvertTo with input %#v retured error `%s`, expected error `%s`", test.input, err, test.err) - } - } else { - if err != nil { - t.Errorf("ConvertTo with input %#v retured error `%s`", test.input, err) - } - compareObjects(t, test.expected, actual) - } -} - -func TestConvertFrom(t *testing.T) { - // Using the same inputs from TestConvertTo, test the reverse mapping. - for _, test := range converterScalarInputs { - if test.expected != nil { - testConvertFrom(t, test) - } - } -} - -func testConvertFrom(t *testing.T, test converterTestInput) { - switch test.inputType { - case "mySimpleStruct": - var actual mySimpleStruct - if err := ConvertFrom(test.expected.(*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFrom with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - case "myComplexStruct": - var actual myComplexStruct - if err := ConvertFrom(test.expected.(*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFrom with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - default: - var actual interface{} - if err := ConvertFrom(test.expected.(*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFrom with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - } -} - -func TestConvertFromError(t *testing.T) { - // Test that we get an error using ConvertFrom to convert to a map. - var actual map[string]interface{} - expected := awserr.New("SerializationError", `v must be a non-nil pointer to an interface{} or struct, got *map[string]interface {}`, nil).Error() - if err := ConvertFrom(nil, &actual); err == nil { - t.Errorf("ConvertFrom with input %#v returned no error, expected error `%s`", nil, expected) - } else if err.Error() != expected { - t.Errorf("ConvertFrom with input %#v returned error `%s`, expected error `%s`", nil, err, expected) - } - - // Test that we get an error using ConvertFrom to convert to a list. - var actual2 []interface{} - expected = awserr.New("SerializationError", `v must be a non-nil pointer to an interface{} or struct, got *[]interface {}`, nil).Error() - if err := ConvertFrom(nil, &actual2); err == nil { - t.Errorf("ConvertFrom with input %#v returned no error, expected error `%s`", nil, expected) - } else if err.Error() != expected { - t.Errorf("ConvertFrom with input %#v returned error `%s`, expected error `%s`", nil, err, expected) - } -} - -func TestConvertToMap(t *testing.T) { - for _, test := range converterMapTestInputs { - testConvertToMap(t, test) - } -} - -func testConvertToMap(t *testing.T, test converterTestInput) { - actual, err := ConvertToMap(test.input) - if test.err != nil { - if err == nil { - t.Errorf("ConvertToMap with input %#v retured %#v, expected error `%s`", test.input, actual, test.err) - } else if err.Error() != test.err.Error() { - t.Errorf("ConvertToMap with input %#v retured error `%s`, expected error `%s`", test.input, err, test.err) - } - } else { - if err != nil { - t.Errorf("ConvertToMap with input %#v retured error `%s`", test.input, err) - } - compareObjects(t, test.expected, actual) - } -} - -func TestConvertFromMap(t *testing.T) { - // Using the same inputs from TestConvertToMap, test the reverse mapping. - for _, test := range converterMapTestInputs { - if test.expected != nil { - testConvertFromMap(t, test) - } - } -} - -func testConvertFromMap(t *testing.T, test converterTestInput) { - switch test.inputType { - case "mySimpleStruct": - var actual mySimpleStruct - if err := ConvertFromMap(test.expected.(map[string]*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFromMap with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - case "myComplexStruct": - var actual myComplexStruct - if err := ConvertFromMap(test.expected.(map[string]*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFromMap with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - default: - var actual map[string]interface{} - if err := ConvertFromMap(test.expected.(map[string]*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFromMap with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - } -} - -func TestConvertFromMapError(t *testing.T) { - // Test that we get an error using ConvertFromMap to convert to an interface{}. - var actual interface{} - expected := awserr.New("SerializationError", `v must be a non-nil pointer to a map[string]interface{} or struct, got *interface {}`, nil).Error() - if err := ConvertFromMap(nil, &actual); err == nil { - t.Errorf("ConvertFromMap with input %#v returned no error, expected error `%s`", nil, expected) - } else if err.Error() != expected { - t.Errorf("ConvertFromMap with input %#v returned error `%s`, expected error `%s`", nil, err, expected) - } - - // Test that we get an error using ConvertFromMap to convert to a slice. - var actual2 []interface{} - expected = awserr.New("SerializationError", `v must be a non-nil pointer to a map[string]interface{} or struct, got *[]interface {}`, nil).Error() - if err := ConvertFromMap(nil, &actual2); err == nil { - t.Errorf("ConvertFromMap with input %#v returned no error, expected error `%s`", nil, expected) - } else if err.Error() != expected { - t.Errorf("ConvertFromMap with input %#v returned error `%s`, expected error `%s`", nil, err, expected) - } -} - -func TestConvertToList(t *testing.T) { - for _, test := range converterListTestInputs { - testConvertToList(t, test) - } -} - -func testConvertToList(t *testing.T, test converterTestInput) { - actual, err := ConvertToList(test.input) - if test.err != nil { - if err == nil { - t.Errorf("ConvertToList with input %#v retured %#v, expected error `%s`", test.input, actual, test.err) - } else if err.Error() != test.err.Error() { - t.Errorf("ConvertToList with input %#v retured error `%s`, expected error `%s`", test.input, err, test.err) - } - } else { - if err != nil { - t.Errorf("ConvertToList with input %#v retured error `%s`", test.input, err) - } - compareObjects(t, test.expected, actual) - } -} - -func TestConvertFromList(t *testing.T) { - // Using the same inputs from TestConvertToList, test the reverse mapping. - for _, test := range converterListTestInputs { - if test.expected != nil { - testConvertFromList(t, test) - } - } -} - -func testConvertFromList(t *testing.T, test converterTestInput) { - switch test.inputType { - case "mySimpleStruct": - var actual []mySimpleStruct - if err := ConvertFromList(test.expected.([]*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFromList with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - case "myComplexStruct": - var actual []myComplexStruct - if err := ConvertFromList(test.expected.([]*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFromList with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - default: - var actual []interface{} - if err := ConvertFromList(test.expected.([]*dynamodb.AttributeValue), &actual); err != nil { - t.Errorf("ConvertFromList with input %#v retured error `%s`", test.expected, err) - } - compareObjects(t, test.input, actual) - } -} - -func TestConvertFromListError(t *testing.T) { - // Test that we get an error using ConvertFromList to convert to a map. - var actual map[string]interface{} - expected := awserr.New("SerializationError", `v must be a non-nil pointer to an array or slice, got *map[string]interface {}`, nil).Error() - if err := ConvertFromList(nil, &actual); err == nil { - t.Errorf("ConvertFromList with input %#v returned no error, expected error `%s`", nil, expected) - } else if err.Error() != expected { - t.Errorf("ConvertFromList with input %#v returned error `%s`, expected error `%s`", nil, err, expected) - } - - // Test that we get an error using ConvertFromList to convert to a struct. - var actual2 myComplexStruct - expected = awserr.New("SerializationError", `v must be a non-nil pointer to an array or slice, got *dynamodbattribute.myComplexStruct`, nil).Error() - if err := ConvertFromList(nil, &actual2); err == nil { - t.Errorf("ConvertFromList with input %#v returned no error, expected error `%s`", nil, expected) - } else if err.Error() != expected { - t.Errorf("ConvertFromList with input %#v returned error `%s`, expected error `%s`", nil, err, expected) - } - - // Test that we get an error using ConvertFromList to convert to an interface{}. - var actual3 interface{} - expected = awserr.New("SerializationError", `v must be a non-nil pointer to an array or slice, got *interface {}`, nil).Error() - if err := ConvertFromList(nil, &actual3); err == nil { - t.Errorf("ConvertFromList with input %#v returned no error, expected error `%s`", nil, expected) - } else if err.Error() != expected { - t.Errorf("ConvertFromList with input %#v returned error `%s`, expected error `%s`", nil, err, expected) - } -} - -func BenchmarkConvertTo(b *testing.B) { - d := mySimpleStruct{ - String: "abc", - Int: 123, - Uint: 123, - Float32: 123.321, - Float64: 123.321, - Bool: true, - Null: nil, - } - for i := 0; i < b.N; i++ { - _, err := ConvertTo(d) - if err != nil { - b.Fatal("unexpected error", err) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode.go deleted file mode 100644 index 582bb134..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode.go +++ /dev/null @@ -1,664 +0,0 @@ -package dynamodbattribute - -import ( - "fmt" - "reflect" - "strconv" - "time" - - "github.com/aws/aws-sdk-go/service/dynamodb" -) - -// An Unmarshaler is an interface to provide custom unmarshaling of -// AttributeValues. Use this to provide custom logic determining -// how AttributeValues should be unmarshaled. -// type ExampleUnmarshaler struct { -// Value int -// } -// -// type (u *exampleUnmarshaler) UnmarshalDynamoDBAttributeValue(av *dynamodb.AttributeValue) error { -// if av.N == nil { -// return nil -// } -// -// n, err := strconv.ParseInt(*av.N, 10, 0) -// if err != nil { -// return err -// } -// -// u.Value = n -// return nil -// } -type Unmarshaler interface { - UnmarshalDynamoDBAttributeValue(*dynamodb.AttributeValue) error -} - -// Unmarshal will unmarshal DynamoDB AttributeValues to Go value types. -// Both generic interface{} and concrete types are valid unmarshal -// destination types. -// -// Unmarshal will allocate maps, slices, and pointers as needed to -// unmarshal the AttributeValue into the provided type value. -// -// When unmarshaling AttributeValues into structs Unmarshal matches -// the field names of the struct to the AttributeValue Map keys. -// Initially it will look for exact field name matching, but will -// fall back to case insensitive if not exact match is found. -// -// With the exception of omitempty, omitemptyelem, binaryset, numberset -// and stringset all struct tags used by Marshal are also used by -// Unmarshal. -// -// When decoding AttributeValues to interfaces Unmarshal will use the -// following types. -// -// []byte, AV Binary (B) -// [][]byte, AV Binary Set (BS) -// bool, AV Boolean (BOOL) -// []interface{}, AV List (L) -// map[string]interface{}, AV Map (M) -// float64, AV Number (N) -// Number, AV Number (N) with UseNumber set -// []float64, AV Number Set (NS) -// []Number, AV Number Set (NS) with UseNumber set -// string, AV String (S) -// []string, AV String Set (SS) -// -// If the Decoder option, UseNumber is set numbers will be unmarshaled -// as Number values instead of float64. Use this to maintain the original -// string formating of the number as it was represented in the AttributeValue. -// In addition provides additional opportunities to parse the number -// string based on individual use cases. -// -// When unmarshaling any error that occurs will halt the unmarshal -// and return the error. -// -// The output value provided must be a non-nil pointer -func Unmarshal(av *dynamodb.AttributeValue, out interface{}) error { - return NewDecoder().Decode(av, out) -} - -// UnmarshalMap is an alias for Unmarshal which unmarshals from -// a map of AttributeValues. -// -// The output value provided must be a non-nil pointer -func UnmarshalMap(m map[string]*dynamodb.AttributeValue, out interface{}) error { - return NewDecoder().Decode(&dynamodb.AttributeValue{M: m}, out) -} - -// UnmarshalList is an alias for Unmarshal func which unmarshals -// a slice of AttributeValues. -// -// The output value provided must be a non-nil pointer -func UnmarshalList(l []*dynamodb.AttributeValue, out interface{}) error { - return NewDecoder().Decode(&dynamodb.AttributeValue{L: l}, out) -} - -// A Decoder provides unmarshaling AttributeValues to Go value types. -type Decoder struct { - MarshalOptions - - // Instructs the decoder to decode AttributeValue Numbers as - // Number type instead of float64 when the destination type - // is interface{}. Similar to encoding/json.Number - UseNumber bool -} - -// NewDecoder creates a new Decoder with default configuration. Use -// the `opts` functional options to override the default configuration. -func NewDecoder(opts ...func(*Decoder)) *Decoder { - d := &Decoder{ - MarshalOptions: MarshalOptions{ - SupportJSONTags: true, - }, - } - for _, o := range opts { - o(d) - } - - return d -} - -// Decode will unmarshal an AttributeValue into a Go value type. An error -// will be return if the decoder is unable to unmarshal the AttributeValue -// to the provide Go value type. -// -// The output value provided must be a non-nil pointer -func (d *Decoder) Decode(av *dynamodb.AttributeValue, out interface{}, opts ...func(*Decoder)) error { - v := reflect.ValueOf(out) - if v.Kind() != reflect.Ptr || v.IsNil() || !v.IsValid() { - return &InvalidUnmarshalError{Type: reflect.TypeOf(out)} - } - - return d.decode(av, v, tag{}) -} - -var stringInterfaceMapType = reflect.TypeOf(map[string]interface{}(nil)) -var byteSliceType = reflect.TypeOf([]byte(nil)) -var byteSliceSlicetype = reflect.TypeOf([][]byte(nil)) -var numberType = reflect.TypeOf(Number("")) - -func (d *Decoder) decode(av *dynamodb.AttributeValue, v reflect.Value, fieldTag tag) error { - var u Unmarshaler - if av == nil || av.NULL != nil { - u, v = indirect(v, true) - if u != nil { - return u.UnmarshalDynamoDBAttributeValue(av) - } - return d.decodeNull(v) - } - - u, v = indirect(v, false) - if u != nil { - return u.UnmarshalDynamoDBAttributeValue(av) - } - - switch { - case len(av.B) != 0: - return d.decodeBinary(av.B, v) - case av.BOOL != nil: - return d.decodeBool(av.BOOL, v) - case len(av.BS) != 0: - return d.decodeBinarySet(av.BS, v) - case len(av.L) != 0: - return d.decodeList(av.L, v) - case len(av.M) != 0: - return d.decodeMap(av.M, v) - case av.N != nil: - return d.decodeNumber(av.N, v) - case len(av.NS) != 0: - return d.decodeNumberSet(av.NS, v) - case av.S != nil: - return d.decodeString(av.S, v, fieldTag) - case len(av.SS) != 0: - return d.decodeStringSet(av.SS, v) - } - - return nil -} - -func (d *Decoder) decodeBinary(b []byte, v reflect.Value) error { - if v.Kind() == reflect.Interface { - buf := make([]byte, len(b)) - copy(buf, b) - v.Set(reflect.ValueOf(buf)) - return nil - } - - if v.Kind() != reflect.Slice { - return &UnmarshalTypeError{Value: "binary", Type: v.Type()} - } - - if v.Type() == byteSliceType { - // Optimization for []byte types - if v.IsNil() || v.Cap() < len(b) { - v.Set(reflect.MakeSlice(byteSliceType, len(b), len(b))) - } else if v.Len() != len(b) { - v.SetLen(len(b)) - } - copy(v.Interface().([]byte), b) - return nil - } - - switch v.Type().Elem().Kind() { - case reflect.Uint8: - // Fallback to reflection copy for type aliased of []byte type - if v.IsNil() || v.Cap() < len(b) { - v.Set(reflect.MakeSlice(v.Type(), len(b), len(b))) - } else if v.Len() != len(b) { - v.SetLen(len(b)) - } - for i := 0; i < len(b); i++ { - v.Index(i).SetUint(uint64(b[i])) - } - default: - if v.Kind() == reflect.Array && v.Type().Elem().Kind() == reflect.Uint8 { - reflect.Copy(v, reflect.ValueOf(b)) - break - } - return &UnmarshalTypeError{Value: "binary", Type: v.Type()} - } - - return nil -} - -func (d *Decoder) decodeBool(b *bool, v reflect.Value) error { - switch v.Kind() { - case reflect.Bool, reflect.Interface: - v.Set(reflect.ValueOf(*b)) - default: - return &UnmarshalTypeError{Value: "bool", Type: v.Type()} - } - - return nil -} - -func (d *Decoder) decodeBinarySet(bs [][]byte, v reflect.Value) error { - switch v.Kind() { - case reflect.Slice: - // Make room for the slice elements if needed - if v.IsNil() || v.Cap() < len(bs) { - // What about if ignoring nil/empty values? - v.Set(reflect.MakeSlice(v.Type(), 0, len(bs))) - } - case reflect.Array: - // Limited to capacity of existing array. - case reflect.Interface: - set := make([][]byte, len(bs)) - for i, b := range bs { - if err := d.decodeBinary(b, reflect.ValueOf(&set[i]).Elem()); err != nil { - return err - } - } - v.Set(reflect.ValueOf(set)) - return nil - default: - return &UnmarshalTypeError{Value: "binary set", Type: v.Type()} - } - - for i := 0; i < v.Cap() && i < len(bs); i++ { - v.SetLen(i + 1) - u, elem := indirect(v.Index(i), false) - if u != nil { - return u.UnmarshalDynamoDBAttributeValue(&dynamodb.AttributeValue{BS: bs}) - } - if err := d.decodeBinary(bs[i], elem); err != nil { - return err - } - } - - return nil -} - -func (d *Decoder) decodeNumber(n *string, v reflect.Value) error { - switch v.Kind() { - case reflect.Interface: - i, err := d.decodeNumberToInterface(n) - if err != nil { - return err - } - v.Set(reflect.ValueOf(i)) - return nil - case reflect.String: - if v.Type() == numberType { // Support Number value type - v.Set(reflect.ValueOf(Number(*n))) - return nil - } - v.Set(reflect.ValueOf(*n)) - case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: - i, err := strconv.ParseInt(*n, 10, 64) - if err != nil { - return err - } - if v.OverflowInt(i) { - return &UnmarshalTypeError{ - Value: fmt.Sprintf("number overflow, %s", *n), - Type: v.Type(), - } - } - v.SetInt(i) - case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: - i, err := strconv.ParseUint(*n, 10, 64) - if err != nil { - return err - } - if v.OverflowUint(i) { - return &UnmarshalTypeError{ - Value: fmt.Sprintf("number overflow, %s", *n), - Type: v.Type(), - } - } - v.SetUint(i) - case reflect.Float32, reflect.Float64: - i, err := strconv.ParseFloat(*n, 64) - if err != nil { - return err - } - if v.OverflowFloat(i) { - return &UnmarshalTypeError{ - Value: fmt.Sprintf("number overflow, %s", *n), - Type: v.Type(), - } - } - v.SetFloat(i) - default: - return &UnmarshalTypeError{Value: "number", Type: v.Type()} - } - - return nil -} - -func (d *Decoder) decodeNumberToInterface(n *string) (interface{}, error) { - if d.UseNumber { - return Number(*n), nil - } - - // Default to float64 for all numbers - return strconv.ParseFloat(*n, 64) -} - -func (d *Decoder) decodeNumberSet(ns []*string, v reflect.Value) error { - switch v.Kind() { - case reflect.Slice: - // Make room for the slice elements if needed - if v.IsNil() || v.Cap() < len(ns) { - // What about if ignoring nil/empty values? - v.Set(reflect.MakeSlice(v.Type(), 0, len(ns))) - } - case reflect.Array: - // Limited to capacity of existing array. - case reflect.Interface: - if d.UseNumber { - set := make([]Number, len(ns)) - for i, n := range ns { - if err := d.decodeNumber(n, reflect.ValueOf(&set[i]).Elem()); err != nil { - return err - } - } - v.Set(reflect.ValueOf(set)) - } else { - set := make([]float64, len(ns)) - for i, n := range ns { - if err := d.decodeNumber(n, reflect.ValueOf(&set[i]).Elem()); err != nil { - return err - } - } - v.Set(reflect.ValueOf(set)) - } - return nil - default: - return &UnmarshalTypeError{Value: "number set", Type: v.Type()} - } - - for i := 0; i < v.Cap() && i < len(ns); i++ { - v.SetLen(i + 1) - u, elem := indirect(v.Index(i), false) - if u != nil { - return u.UnmarshalDynamoDBAttributeValue(&dynamodb.AttributeValue{NS: ns}) - } - if err := d.decodeNumber(ns[i], elem); err != nil { - return err - } - } - - return nil -} - -func (d *Decoder) decodeList(avList []*dynamodb.AttributeValue, v reflect.Value) error { - switch v.Kind() { - case reflect.Slice: - // Make room for the slice elements if needed - if v.IsNil() || v.Cap() < len(avList) { - // What about if ignoring nil/empty values? - v.Set(reflect.MakeSlice(v.Type(), 0, len(avList))) - } - case reflect.Array: - // Limited to capacity of existing array. - case reflect.Interface: - s := make([]interface{}, len(avList)) - for i, av := range avList { - if err := d.decode(av, reflect.ValueOf(&s[i]).Elem(), tag{}); err != nil { - return err - } - } - v.Set(reflect.ValueOf(s)) - return nil - default: - return &UnmarshalTypeError{Value: "list", Type: v.Type()} - } - - // If v is not a slice, array - for i := 0; i < v.Cap() && i < len(avList); i++ { - v.SetLen(i + 1) - if err := d.decode(avList[i], v.Index(i), tag{}); err != nil { - return err - } - } - - return nil -} - -func (d *Decoder) decodeMap(avMap map[string]*dynamodb.AttributeValue, v reflect.Value) error { - switch v.Kind() { - case reflect.Map: - t := v.Type() - if t.Key().Kind() != reflect.String { - return &UnmarshalTypeError{Value: "map string key", Type: t.Key()} - } - if v.IsNil() { - v.Set(reflect.MakeMap(t)) - } - case reflect.Struct: - case reflect.Interface: - v.Set(reflect.MakeMap(stringInterfaceMapType)) - v = v.Elem() - default: - return &UnmarshalTypeError{Value: "map", Type: v.Type()} - } - - if v.Kind() == reflect.Map { - for k, av := range avMap { - key := reflect.ValueOf(k) - elem := reflect.New(v.Type().Elem()).Elem() - if err := d.decode(av, elem, tag{}); err != nil { - return err - } - v.SetMapIndex(key, elem) - } - } else if v.Kind() == reflect.Struct { - fields := unionStructFields(v.Type(), d.MarshalOptions) - for k, av := range avMap { - if f, ok := fieldByName(fields, k); ok { - fv := fieldByIndex(v, f.Index, func(v *reflect.Value) bool { - v.Set(reflect.New(v.Type().Elem())) - return true // to continue the loop. - }) - if err := d.decode(av, fv, f.tag); err != nil { - return err - } - } - } - } - - return nil -} - -func (d *Decoder) decodeNull(v reflect.Value) error { - if v.IsValid() && v.CanSet() { - v.Set(reflect.Zero(v.Type())) - } - - return nil -} - -func (d *Decoder) decodeString(s *string, v reflect.Value, fieldTag tag) error { - if fieldTag.AsString { - return d.decodeNumber(s, v) - } - - // To maintain backwards compatibility with ConvertFrom family of methods which - // converted strings to time.Time structs - if _, ok := v.Interface().(time.Time); ok { - t, err := time.Parse(time.RFC3339, *s) - if err != nil { - return err - } - v.Set(reflect.ValueOf(t)) - return nil - } - - switch v.Kind() { - case reflect.String: - v.SetString(*s) - case reflect.Interface: - // Ensure type aliasing is handled properly - v.Set(reflect.ValueOf(*s).Convert(v.Type())) - default: - return &UnmarshalTypeError{Value: "string", Type: v.Type()} - } - - return nil -} - -func (d *Decoder) decodeStringSet(ss []*string, v reflect.Value) error { - switch v.Kind() { - case reflect.Slice: - // Make room for the slice elements if needed - if v.IsNil() || v.Cap() < len(ss) { - v.Set(reflect.MakeSlice(v.Type(), 0, len(ss))) - } - case reflect.Array: - // Limited to capacity of existing array. - case reflect.Interface: - set := make([]string, len(ss)) - for i, s := range ss { - if err := d.decodeString(s, reflect.ValueOf(&set[i]).Elem(), tag{}); err != nil { - return err - } - } - v.Set(reflect.ValueOf(set)) - return nil - default: - return &UnmarshalTypeError{Value: "string set", Type: v.Type()} - } - - for i := 0; i < v.Cap() && i < len(ss); i++ { - v.SetLen(i + 1) - u, elem := indirect(v.Index(i), false) - if u != nil { - return u.UnmarshalDynamoDBAttributeValue(&dynamodb.AttributeValue{SS: ss}) - } - if err := d.decodeString(ss[i], elem, tag{}); err != nil { - return err - } - } - - return nil -} - -// indirect will walk a value's interface or pointer value types. Returning -// the final value or the value a unmarshaler is defined on. -// -// Based on the enoding/json type reflect value type indirection in Go Stdlib -// https://golang.org/src/encoding/json/decode.go indirect func. -func indirect(v reflect.Value, decodingNull bool) (Unmarshaler, reflect.Value) { - if v.Kind() != reflect.Ptr && v.Type().Name() != "" && v.CanAddr() { - v = v.Addr() - } - for { - if v.Kind() == reflect.Interface && !v.IsNil() { - e := v.Elem() - if e.Kind() == reflect.Ptr && !e.IsNil() && (!decodingNull || e.Elem().Kind() == reflect.Ptr) { - v = e - continue - } - } - if v.Kind() != reflect.Ptr { - break - } - if v.Elem().Kind() != reflect.Ptr && decodingNull && v.CanSet() { - break - } - if v.IsNil() { - v.Set(reflect.New(v.Type().Elem())) - } - if v.Type().NumMethod() > 0 { - if u, ok := v.Interface().(Unmarshaler); ok { - return u, reflect.Value{} - } - } - v = v.Elem() - } - - return nil, v -} - -// A Number represents a Attributevalue number literal. -type Number string - -// Float64 attempts to cast the number ot a float64, returning -// the result of the case or error if the case failed. -func (n Number) Float64() (float64, error) { - return strconv.ParseFloat(string(n), 64) -} - -// Int64 attempts to cast the number ot a int64, returning -// the result of the case or error if the case failed. -func (n Number) Int64() (int64, error) { - return strconv.ParseInt(string(n), 10, 64) -} - -// Uint64 attempts to cast the number ot a uint64, returning -// the result of the case or error if the case failed. -func (n Number) Uint64() (uint64, error) { - return strconv.ParseUint(string(n), 10, 64) -} - -// String returns the raw number represented as a string -func (n Number) String() string { - return string(n) -} - -type emptyOrigError struct{} - -func (e emptyOrigError) OrigErr() error { - return nil -} - -// An UnmarshalTypeError is an error type representing a error -// unmarshaling the AttributeValue's element to a Go value type. -// Includes details about the AttributeValue type and Go value type. -type UnmarshalTypeError struct { - emptyOrigError - Value string - Type reflect.Type -} - -// Error returns the string representation of the error. -// satisfying the error interface -func (e *UnmarshalTypeError) Error() string { - return fmt.Sprintf("%s: %s", e.Code(), e.Message()) -} - -// Code returns the code of the error, satisfying the awserr.Error -// interface. -func (e *UnmarshalTypeError) Code() string { - return "UnmarshalTypeError" -} - -// Message returns the detailed message of the error, satisfying -// the awserr.Error interface. -func (e *UnmarshalTypeError) Message() string { - return "cannot unmarshal " + e.Value + " into Go value of type " + e.Type.String() -} - -// An InvalidUnmarshalError is an error type representing an invalid type -// encountered while unmarshaling a AttributeValue to a Go value type. -type InvalidUnmarshalError struct { - emptyOrigError - Type reflect.Type -} - -// Error returns the string representation of the error. -// satisfying the error interface -func (e *InvalidUnmarshalError) Error() string { - return fmt.Sprintf("%s: %s", e.Code(), e.Message()) -} - -// Code returns the code of the error, satisfying the awserr.Error -// interface. -func (e *InvalidUnmarshalError) Code() string { - return "InvalidUnmarshalError" -} - -// Message returns the detailed message of the error, satisfying -// the awserr.Error interface. -func (e *InvalidUnmarshalError) Message() string { - if e.Type == nil { - return "cannot unmarshal to nil value" - } - if e.Type.Kind() != reflect.Ptr { - return "cannot unmarshal to non-pointer value, got " + e.Type.String() - } - return "cannot unmarshal to nil value, " + e.Type.String() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode_test.go deleted file mode 100644 index 234efecf..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode_test.go +++ /dev/null @@ -1,427 +0,0 @@ -package dynamodbattribute - -import ( - "fmt" - "reflect" - "strconv" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/service/dynamodb" - "github.com/stretchr/testify/assert" -) - -func TestUnmarshalErrorTypes(t *testing.T) { - var _ awserr.Error = (*UnmarshalTypeError)(nil) - var _ awserr.Error = (*InvalidUnmarshalError)(nil) -} - -func TestUnmarshalShared(t *testing.T) { - for i, c := range sharedTestCases { - err := Unmarshal(c.in, c.actual) - assertConvertTest(t, i, c.actual, c.expected, err, c.err) - } -} - -func TestUnmarshal(t *testing.T) { - cases := []struct { - in *dynamodb.AttributeValue - actual, expected interface{} - err error - }{ - //------------ - // Sets - //------------ - { - in: &dynamodb.AttributeValue{BS: [][]byte{ - {48, 49}, {50, 51}, - }}, - actual: &[][]byte{}, - expected: [][]byte{{48, 49}, {50, 51}}, - }, - { - in: &dynamodb.AttributeValue{NS: []*string{ - aws.String("123"), aws.String("321"), - }}, - actual: &[]int{}, - expected: []int{123, 321}, - }, - { - in: &dynamodb.AttributeValue{NS: []*string{ - aws.String("123"), aws.String("321"), - }}, - actual: &[]interface{}{}, - expected: []interface{}{123., 321.}, - }, - { - in: &dynamodb.AttributeValue{SS: []*string{ - aws.String("abc"), aws.String("123"), - }}, - actual: &[]string{}, - expected: &[]string{"abc", "123"}, - }, - { - in: &dynamodb.AttributeValue{SS: []*string{ - aws.String("abc"), aws.String("123"), - }}, - actual: &[]*string{}, - expected: &[]*string{aws.String("abc"), aws.String("123")}, - }, - //------------ - // Interfaces - //------------ - { - in: &dynamodb.AttributeValue{B: []byte{48, 49}}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: []byte{48, 49}, - }, - { - in: &dynamodb.AttributeValue{BS: [][]byte{ - {48, 49}, {50, 51}, - }}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: [][]byte{{48, 49}, {50, 51}}, - }, - { - in: &dynamodb.AttributeValue{BOOL: aws.Bool(true)}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: bool(true), - }, - { - in: &dynamodb.AttributeValue{L: []*dynamodb.AttributeValue{ - {S: aws.String("abc")}, {S: aws.String("123")}, - }}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: []interface{}{"abc", "123"}, - }, - { - in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{ - "123": {S: aws.String("abc")}, - "abc": {S: aws.String("123")}, - }}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: map[string]interface{}{"123": "abc", "abc": "123"}, - }, - { - in: &dynamodb.AttributeValue{N: aws.String("123")}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: float64(123), - }, - { - in: &dynamodb.AttributeValue{NS: []*string{ - aws.String("123"), aws.String("321"), - }}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: []float64{123., 321.}, - }, - { - in: &dynamodb.AttributeValue{S: aws.String("123")}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: "123", - }, - { - in: &dynamodb.AttributeValue{SS: []*string{ - aws.String("123"), aws.String("321"), - }}, - actual: func() interface{} { - var v interface{} - return &v - }(), - expected: []string{"123", "321"}, - }, - { - in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{ - "abc": {S: aws.String("123")}, - "Cba": {S: aws.String("321")}, - }}, - actual: &struct{ Abc, Cba string }{}, - expected: struct{ Abc, Cba string }{Abc: "123", Cba: "321"}, - }, - { - in: &dynamodb.AttributeValue{N: aws.String("512")}, - actual: new(uint8), - err: &UnmarshalTypeError{ - Value: fmt.Sprintf("number overflow, 512"), - Type: reflect.TypeOf(uint8(0)), - }, - }, - } - - for i, c := range cases { - err := Unmarshal(c.in, c.actual) - assertConvertTest(t, i, c.actual, c.expected, err, c.err) - } -} - -func TestInterfaceInput(t *testing.T) { - var v interface{} - expected := []interface{}{"abc", "123"} - err := Unmarshal(&dynamodb.AttributeValue{L: []*dynamodb.AttributeValue{ - {S: aws.String("abc")}, {S: aws.String("123")}, - }}, &v) - assertConvertTest(t, 0, v, expected, err, nil) -} - -func TestUnmarshalError(t *testing.T) { - cases := []struct { - in *dynamodb.AttributeValue - actual, expected interface{} - err error - }{ - { - in: &dynamodb.AttributeValue{}, - actual: int(0), - expected: nil, - err: &InvalidUnmarshalError{Type: reflect.TypeOf(int(0))}, - }, - } - - for i, c := range cases { - err := Unmarshal(c.in, c.actual) - assertConvertTest(t, i, c.actual, c.expected, err, c.err) - } -} - -func TestUnmarshalListShared(t *testing.T) { - for i, c := range sharedListTestCases { - err := UnmarshalList(c.in, c.actual) - assertConvertTest(t, i, c.actual, c.expected, err, c.err) - } -} - -func TestUnmarshalListError(t *testing.T) { - cases := []struct { - in []*dynamodb.AttributeValue - actual, expected interface{} - err error - }{ - { - in: []*dynamodb.AttributeValue{}, - actual: []interface{}{}, - expected: nil, - err: &InvalidUnmarshalError{Type: reflect.TypeOf([]interface{}{})}, - }, - } - - for i, c := range cases { - err := UnmarshalList(c.in, c.actual) - assertConvertTest(t, i, c.actual, c.expected, err, c.err) - } -} - -func TestUnmarshalMapShared(t *testing.T) { - for i, c := range sharedMapTestCases { - err := UnmarshalMap(c.in, c.actual) - assertConvertTest(t, i, c.actual, c.expected, err, c.err) - } -} - -func TestUnmarshalMapError(t *testing.T) { - cases := []struct { - in map[string]*dynamodb.AttributeValue - actual, expected interface{} - err error - }{ - { - in: map[string]*dynamodb.AttributeValue{}, - actual: map[string]interface{}{}, - expected: nil, - err: &InvalidUnmarshalError{Type: reflect.TypeOf(map[string]interface{}{})}, - }, - { - in: map[string]*dynamodb.AttributeValue{ - "BOOL": {BOOL: aws.Bool(true)}, - }, - actual: &map[int]interface{}{}, - expected: nil, - err: &UnmarshalTypeError{Value: "map string key", Type: reflect.TypeOf(int(0))}, - }, - } - - for i, c := range cases { - err := UnmarshalMap(c.in, c.actual) - assertConvertTest(t, i, c.actual, c.expected, err, c.err) - } -} - -type unmarshalUnmarshaler struct { - Value string - Value2 int - Value3 bool - Value4 time.Time -} - -func (u *unmarshalUnmarshaler) UnmarshalDynamoDBAttributeValue(av *dynamodb.AttributeValue) error { - if av.M == nil { - return fmt.Errorf("expected AttributeValue to be map") - } - - if v, ok := av.M["abc"]; !ok { - return fmt.Errorf("expected `abc` map key") - } else if v.S == nil { - return fmt.Errorf("expected `abc` map value string") - } else { - u.Value = *v.S - } - - if v, ok := av.M["def"]; !ok { - return fmt.Errorf("expected `def` map key") - } else if v.N == nil { - return fmt.Errorf("expected `def` map value number") - } else { - n, err := strconv.ParseInt(*v.N, 10, 64) - if err != nil { - return err - } - u.Value2 = int(n) - } - - if v, ok := av.M["ghi"]; !ok { - return fmt.Errorf("expected `ghi` map key") - } else if v.BOOL == nil { - return fmt.Errorf("expected `ghi` map value number") - } else { - u.Value3 = *v.BOOL - } - - if v, ok := av.M["jkl"]; !ok { - return fmt.Errorf("expected `jkl` map key") - } else if v.S == nil { - return fmt.Errorf("expected `jkl` map value string") - } else { - t, err := time.Parse(time.RFC3339, *v.S) - if err != nil { - return err - } - u.Value4 = t - } - - return nil -} - -func TestUnmarshalUnmashaler(t *testing.T) { - u := &unmarshalUnmarshaler{} - av := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "abc": {S: aws.String("value")}, - "def": {N: aws.String("123")}, - "ghi": {BOOL: aws.Bool(true)}, - "jkl": {S: aws.String("2016-05-03T17:06:26.209072Z")}, - }, - } - - err := Unmarshal(av, u) - assert.NoError(t, err) - - assert.Equal(t, "value", u.Value) - assert.Equal(t, 123, u.Value2) - assert.Equal(t, true, u.Value3) - assert.Equal(t, testDate, u.Value4) -} - -func TestDecodeUseNumber(t *testing.T) { - u := map[string]interface{}{} - av := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "abc": {S: aws.String("value")}, - "def": {N: aws.String("123")}, - "ghi": {BOOL: aws.Bool(true)}, - }, - } - - decoder := NewDecoder(func(d *Decoder) { - d.UseNumber = true - }) - err := decoder.Decode(av, &u) - assert.NoError(t, err) - - assert.Equal(t, "value", u["abc"]) - n, ok := u["def"].(Number) - assert.True(t, ok) - assert.Equal(t, "123", n.String()) - assert.Equal(t, true, u["ghi"]) -} - -func TestDecodeUseNumberNumberSet(t *testing.T) { - u := map[string]interface{}{} - av := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "ns": { - NS: []*string{ - aws.String("123"), aws.String("321"), - }, - }, - }, - } - - decoder := NewDecoder(func(d *Decoder) { - d.UseNumber = true - }) - err := decoder.Decode(av, &u) - assert.NoError(t, err) - - ns, ok := u["ns"].([]Number) - assert.True(t, ok) - - assert.Equal(t, "123", ns[0].String()) - assert.Equal(t, "321", ns[1].String()) -} - -func TestDecodeEmbeddedPointerStruct(t *testing.T) { - type B struct { - Bint int - } - type C struct { - Cint int - } - type A struct { - Aint int - *B - *C - } - av := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Aint": { - N: aws.String("321"), - }, - "Bint": { - N: aws.String("123"), - }, - }, - } - decoder := NewDecoder() - a := A{} - err := decoder.Decode(av, &a) - assert.NoError(t, err) - assert.Equal(t, 321, a.Aint) - // Embedded pointer struct can be created automatically. - assert.Equal(t, 123, a.Bint) - // But not for absent fields. - assert.Nil(t, a.C) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/doc.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/doc.go deleted file mode 100644 index b603b584..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/doc.go +++ /dev/null @@ -1,67 +0,0 @@ -// Package dynamodbattribute provides marshaling utilities for marshaling to -// dynamodb.AttributeValue types and unmarshaling to Go value types. These -// utilities allow you to marshal slices, maps, structs, and scalar values -// to and from dynamodb.AttributeValue. These are useful when marshaling -// Go value tyes to dynamodb.AttributeValue for DynamoDB requests, or -// unmarshaling the dynamodb.AttributeValue back into a Go value type. -// -// Marshal Go value types to dynamodb.AttributeValue: See (ExampleMarshal) -// -// type Record struct { -// MyField string -// Letters []string -// A2Num map[string]int -// } -// -// ... -// -// r := Record{ -// MyField: "dynamodbattribute.Marshal example", -// Letters: []string{"a", "b", "c", "d"}, -// A2Num: map[string]int{"a": 1, "b": 2, "c": 3}, -// } -// av, err := dynamodbattribute.Marshal(r) -// fmt.Println(av, err) -// -// Unmarshal dynamodb.AttributeValue to Go value type: See (ExampleUnmarshal) -// -// r2 := Record{} -// err = dynamodbattribute.Unmarshal(av, &r2) -// fmt.Println(err, reflect.DeepEqual(r, r2)) -// -// Marshal Go value type for DynamoDB.PutItem: -// -// sess, err := session.NewSession() -// if err != nil { -// fmt.Println("Failed create session", err) -// return -// } -// -// svc := dynamodb.New(sess) -// item, err := dynamodbattribute.MarshalMap(r) -// if err != nil { -// fmt.Println("Failed to convert", err) -// return -// } -// result, err := svc.PutItem(&dynamodb.PutItemInput{ -// Item: item, -// TableName: aws.String("exampleTable"), -// }) -// -// -// -// The ConvertTo, ConvertToList, ConvertToMap, ConvertFrom, ConvertFromMap -// and ConvertFromList methods have been deprecated. The Marshal and Unmarshal -// functions should be used instead. The ConvertTo|From marshallers do not -// support BinarySet, NumberSet, nor StringSets, and will incorrect marshal -// binary data fields in structs as base64 strings. -// -// The Marshal and Unmarshal functions correct this behavior, and removes -// the reliance on encoding.json. `json` struct tags are still supported. In -// addition support for a new struct tag `dynamodbav` was added. Support for -// the json.Marshaler and json.Unmarshaler interfaces have been removed and -// replaced with have been replaced with dynamodbattribute.Marshaler and -// dynamodbattribute.Unmarshaler interfaces. -// -// `time.Time` is marshaled as RFC3339 format. -package dynamodbattribute diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode.go deleted file mode 100644 index 632f4018..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode.go +++ /dev/null @@ -1,585 +0,0 @@ -package dynamodbattribute - -import ( - "fmt" - "reflect" - "strconv" - "time" - - "github.com/aws/aws-sdk-go/service/dynamodb" -) - -// A Marshaler is an interface to provide custom marshaling of Go value types -// to AttributeValues. Use this to provide custom logic determining how a -// Go Value type should be marshaled. -// -// type ExampleMarshaler struct { -// Value int -// } -// type (m *ExampleMarshaler) MarshalDynamoDBAttributeValue(av *dynamodb.AttributeValue) error { -// n := fmt.Sprintf("%v", m.Value) -// av.N = &n -// -// return nil -// } -// -type Marshaler interface { - MarshalDynamoDBAttributeValue(*dynamodb.AttributeValue) error -} - -// Marshal will serialize the passed in Go value type into a DynamoDB AttributeValue -// type. This value can be used in DynamoDB API operations to simplify marshaling -// your Go value types into AttributeValues. -// -// Marshal will recursively transverse the passed in value marshaling its -// contents into a AttributeValue. Marshal supports basic scalars -// (int,uint,float,bool,string), maps, slices, and structs. Anonymous -// nested types are flattened based on Go anonymous type visibility. -// -// Marshaling slices to AttributeValue will default to a List for all -// types except for []byte and [][]byte. []byte will be marshaled as -// Binary data (B), and [][]byte will be marshaled as binary data set -// (BS). -// -// `dynamodbav` struct tag can be used to control how the value will be -// marshaled into a AttributeValue. -// -// // Field is ignored -// Field int `dynamodbav:"-"` -// -// // Field AttributeValue map key "myName" -// Field int `dynamodbav:"myName"` -// -// // Field AttributeValue map key "myName", and -// // Field is omitted if it is empty -// Field int `dynamodbav:"myName,omitempty"` -// -// // Field AttributeValue map key "Field", and -// // Field is omitted if it is empty -// Field int `dynamodbav:",omitempty"` -// -// // Field's elems will be omitted if empty -// // only valid for slices, and maps. -// Field []string `dynamodbav:",omitemptyelem"` -// -// // Field will be marshaled as a AttributeValue string -// // only value for number types, (int,uint,float) -// Field int `dynamodbav:",string"` -// -// // Field will be marshaled as a binary set -// Field [][]byte `dynamodbav:",binaryset"` -// -// // Field will be marshaled as a number set -// Field []int `dynamodbav:",numberset"` -// -// // Field will be marshaled as a string set -// Field []string `dynamodbav:",stringset"` -// -// The omitempty tag is only used during Marshaling and is ignored for -// Unmarshal. Any zero value or a value when marshaled results in a -// AttributeValue NULL will be added to AttributeValue Maps during struct -// marshal. The omitemptyelem tag works the same as omitempty except it -// applies to maps and slices instead of struct fields, and will not be -// included in the marshaled AttributeValue Map, List, or Set. -// -// For convenience and backwards compatibility with ConvertTo functions -// json struct tags are supported by the Marshal and Unmarshal. If -// both json and dynamodbav struct tags are provided the json tag will -// be ignored in favor of dynamodbav. -// -// All struct fields and with anonymous fields, are marshaled unless the -// any of the following conditions are meet. -// -// - the field is not exported -// - json or dynamodbav field tag is "-" -// - json or dynamodbav field tag specifies "omitempty", and is empty. -// -// Pointer and interfaces values encode as the value pointed to or contained -// in the interface. A nil value encodes as the AttributeValue NULL value. -// -// Channel, complex, and function values are not encoded and will be skipped -// when walking the value to be marshaled. -// -// When marshaling any error that occurs will halt the marshal and return -// the error. -// -// Marshal cannot represent cyclic data structures and will not handle them. -// Passing cyclic structures to Marshal will result in an infinite recursion. -func Marshal(in interface{}) (*dynamodb.AttributeValue, error) { - return NewEncoder().Encode(in) -} - -// MarshalMap is an alias for Marshal func which marshals Go value -// type to a map of AttributeValues. -func MarshalMap(in interface{}) (map[string]*dynamodb.AttributeValue, error) { - av, err := NewEncoder().Encode(in) - if err != nil || av == nil || av.M == nil { - return map[string]*dynamodb.AttributeValue{}, err - } - - return av.M, nil -} - -// MarshalList is an alias for Marshal func which marshals Go value -// type to a slice of AttributeValues. -func MarshalList(in interface{}) ([]*dynamodb.AttributeValue, error) { - av, err := NewEncoder().Encode(in) - if err != nil || av == nil || av.L == nil { - return []*dynamodb.AttributeValue{}, err - } - - return av.L, nil -} - -// A MarshalOptions is a collection of options shared between marshaling -// and unmarshaling -type MarshalOptions struct { - // States that the encoding/json struct tags should be supported. - // if a `dynamodbav` struct tag is also provided the encoding/json - // tag will be ignored. - // - // Enabled by default. - SupportJSONTags bool -} - -// An Encoder provides marshaling Go value types to AttributeValues. -type Encoder struct { - MarshalOptions - - // Empty strings, "", will be marked as NULL AttributeValue types. - // Empty strings are not valid values for DynamoDB. Will not apply - // to lists, sets, or maps. Use the struct tag `omitemptyelem` - // to skip empty (zero) values in lists, sets and maps. - // - // Enabled by default. - NullEmptyString bool -} - -// NewEncoder creates a new Encoder with default configuration. Use -// the `opts` functional options to override the default configuration. -func NewEncoder(opts ...func(*Encoder)) *Encoder { - e := &Encoder{ - MarshalOptions: MarshalOptions{ - SupportJSONTags: true, - }, - NullEmptyString: true, - } - for _, o := range opts { - o(e) - } - - return e -} - -// Encode will marshal a Go value type to an AttributeValue. Returning -// the AttributeValue constructed or error. -func (e *Encoder) Encode(in interface{}) (*dynamodb.AttributeValue, error) { - av := &dynamodb.AttributeValue{} - if err := e.encode(av, reflect.ValueOf(in), tag{}); err != nil { - return nil, err - } - - return av, nil -} - -func fieldByIndex(v reflect.Value, index []int, - OnEmbeddedNilStruct func(*reflect.Value) bool) reflect.Value { - fv := v - for i, x := range index { - if i > 0 { - if fv.Kind() == reflect.Ptr && fv.Type().Elem().Kind() == reflect.Struct { - if fv.IsNil() && !OnEmbeddedNilStruct(&fv) { - break - } - fv = fv.Elem() - } - } - fv = fv.Field(x) - } - return fv -} - -func (e *Encoder) encode(av *dynamodb.AttributeValue, v reflect.Value, fieldTag tag) error { - // We should check for omitted values first before dereferencing. - if fieldTag.OmitEmpty && emptyValue(v) { - encodeNull(av) - return nil - } - - // Handle both pointers and interface conversion into types - v = valueElem(v) - - if v.Kind() != reflect.Invalid { - if used, err := tryMarshaler(av, v); used { - return err - } - } - - switch v.Kind() { - case reflect.Invalid: - encodeNull(av) - case reflect.Struct: - return e.encodeStruct(av, v) - case reflect.Map: - return e.encodeMap(av, v, fieldTag) - case reflect.Slice, reflect.Array: - return e.encodeSlice(av, v, fieldTag) - case reflect.Chan, reflect.Func, reflect.UnsafePointer: - // do nothing for unsupported types - default: - return e.encodeScalar(av, v, fieldTag) - } - - return nil -} - -func (e *Encoder) encodeStruct(av *dynamodb.AttributeValue, v reflect.Value) error { - - // To maintain backwards compatibility with ConvertTo family of methods which - // converted time.Time structs to strings - if t, ok := v.Interface().(time.Time); ok { - s := t.Format(time.RFC3339Nano) - av.S = &s - return nil - } - - av.M = map[string]*dynamodb.AttributeValue{} - fields := unionStructFields(v.Type(), e.MarshalOptions) - for _, f := range fields { - if f.Name == "" { - return &InvalidMarshalError{msg: "map key cannot be empty"} - } - - found := true - fv := fieldByIndex(v, f.Index, func(v *reflect.Value) bool { - found = false - return false // to break the loop. - }) - if !found { - continue - } - elem := &dynamodb.AttributeValue{} - err := e.encode(elem, fv, f.tag) - if err != nil { - return err - } - skip, err := keepOrOmitEmpty(f.OmitEmpty, elem, err) - if err != nil { - return err - } else if skip { - continue - } - - av.M[f.Name] = elem - } - if len(av.M) == 0 { - encodeNull(av) - } - - return nil -} - -func (e *Encoder) encodeMap(av *dynamodb.AttributeValue, v reflect.Value, fieldTag tag) error { - av.M = map[string]*dynamodb.AttributeValue{} - for _, key := range v.MapKeys() { - keyName := fmt.Sprint(key.Interface()) - if keyName == "" { - return &InvalidMarshalError{msg: "map key cannot be empty"} - } - - elemVal := v.MapIndex(key) - elem := &dynamodb.AttributeValue{} - err := e.encode(elem, elemVal, tag{}) - skip, err := keepOrOmitEmpty(fieldTag.OmitEmptyElem, elem, err) - if err != nil { - return err - } else if skip { - continue - } - - av.M[keyName] = elem - } - if len(av.M) == 0 { - encodeNull(av) - } - - return nil -} - -func (e *Encoder) encodeSlice(av *dynamodb.AttributeValue, v reflect.Value, fieldTag tag) error { - switch v.Type().Elem().Kind() { - case reflect.Uint8: - b := v.Bytes() - if len(b) == 0 { - encodeNull(av) - return nil - } - av.B = append([]byte{}, b...) - default: - var elemFn func(dynamodb.AttributeValue) error - - if fieldTag.AsBinSet || v.Type() == byteSliceSlicetype { // Binary Set - av.BS = make([][]byte, 0, v.Len()) - elemFn = func(elem dynamodb.AttributeValue) error { - if elem.B == nil { - return &InvalidMarshalError{msg: "binary set must only contain non-nil byte slices"} - } - av.BS = append(av.BS, elem.B) - return nil - } - } else if fieldTag.AsNumSet { // Number Set - av.NS = make([]*string, 0, v.Len()) - elemFn = func(elem dynamodb.AttributeValue) error { - if elem.N == nil { - return &InvalidMarshalError{msg: "number set must only contain non-nil string numbers"} - } - av.NS = append(av.NS, elem.N) - return nil - } - } else if fieldTag.AsStrSet { // String Set - av.SS = make([]*string, 0, v.Len()) - elemFn = func(elem dynamodb.AttributeValue) error { - if elem.S == nil { - return &InvalidMarshalError{msg: "string set must only contain non-nil strings"} - } - av.SS = append(av.SS, elem.S) - return nil - } - } else { // List - av.L = make([]*dynamodb.AttributeValue, 0, v.Len()) - elemFn = func(elem dynamodb.AttributeValue) error { - av.L = append(av.L, &elem) - return nil - } - } - - if n, err := e.encodeList(v, fieldTag, elemFn); err != nil { - return err - } else if n == 0 { - encodeNull(av) - } - } - - return nil -} - -func (e *Encoder) encodeList(v reflect.Value, fieldTag tag, elemFn func(dynamodb.AttributeValue) error) (int, error) { - count := 0 - for i := 0; i < v.Len(); i++ { - elem := dynamodb.AttributeValue{} - err := e.encode(&elem, v.Index(i), tag{OmitEmpty: fieldTag.OmitEmptyElem}) - skip, err := keepOrOmitEmpty(fieldTag.OmitEmptyElem, &elem, err) - if err != nil { - return 0, err - } else if skip { - continue - } - - if err := elemFn(elem); err != nil { - return 0, err - } - count++ - } - - return count, nil -} - -func (e *Encoder) encodeScalar(av *dynamodb.AttributeValue, v reflect.Value, fieldTag tag) error { - if v.Type() == numberType { - s := v.String() - if fieldTag.AsString { - av.S = &s - } else { - av.N = &s - } - return nil - } - - switch v.Kind() { - case reflect.Bool: - av.BOOL = new(bool) - *av.BOOL = v.Bool() - case reflect.String: - if err := e.encodeString(av, v); err != nil { - return err - } - default: - // Fallback to encoding numbers, will return invalid type if not supported - if err := e.encodeNumber(av, v); err != nil { - return err - } - if fieldTag.AsString && av.NULL == nil && av.N != nil { - av.S = av.N - av.N = nil - } - } - - return nil -} - -func (e *Encoder) encodeNumber(av *dynamodb.AttributeValue, v reflect.Value) error { - if used, err := tryMarshaler(av, v); used { - return err - } - - var out string - switch v.Kind() { - case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: - out = encodeInt(v.Int()) - case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: - out = encodeUint(v.Uint()) - case reflect.Float32, reflect.Float64: - out = encodeFloat(v.Float()) - default: - return &unsupportedMarshalTypeError{Type: v.Type()} - } - - av.N = &out - - return nil -} - -func (e *Encoder) encodeString(av *dynamodb.AttributeValue, v reflect.Value) error { - if used, err := tryMarshaler(av, v); used { - return err - } - - switch v.Kind() { - case reflect.String: - s := v.String() - if len(s) == 0 && e.NullEmptyString { - encodeNull(av) - } else { - av.S = &s - } - default: - return &unsupportedMarshalTypeError{Type: v.Type()} - } - - return nil -} - -func encodeInt(i int64) string { - return strconv.FormatInt(i, 10) -} -func encodeUint(u uint64) string { - return strconv.FormatUint(u, 10) -} -func encodeFloat(f float64) string { - return strconv.FormatFloat(f, 'f', -1, 64) -} -func encodeNull(av *dynamodb.AttributeValue) { - t := true - *av = dynamodb.AttributeValue{NULL: &t} -} - -func valueElem(v reflect.Value) reflect.Value { - switch v.Kind() { - case reflect.Interface, reflect.Ptr: - for v.Kind() == reflect.Interface || v.Kind() == reflect.Ptr { - v = v.Elem() - } - } - - return v -} - -func emptyValue(v reflect.Value) bool { - switch v.Kind() { - case reflect.Array, reflect.Map, reflect.Slice, reflect.String: - return v.Len() == 0 - case reflect.Bool: - return !v.Bool() - case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: - return v.Int() == 0 - case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: - return v.Uint() == 0 - case reflect.Float32, reflect.Float64: - return v.Float() == 0 - case reflect.Interface, reflect.Ptr: - return v.IsNil() - } - return false -} - -func tryMarshaler(av *dynamodb.AttributeValue, v reflect.Value) (bool, error) { - if v.Kind() != reflect.Ptr && v.Type().Name() != "" && v.CanAddr() { - v = v.Addr() - } - - if v.Type().NumMethod() == 0 { - return false, nil - } - - if m, ok := v.Interface().(Marshaler); ok { - return true, m.MarshalDynamoDBAttributeValue(av) - } - - return false, nil -} - -func keepOrOmitEmpty(omitEmpty bool, av *dynamodb.AttributeValue, err error) (bool, error) { - if err != nil { - if _, ok := err.(*unsupportedMarshalTypeError); ok { - return true, nil - } - return false, err - } - - if av.NULL != nil && omitEmpty { - return true, nil - } - - return false, nil -} - -// An InvalidMarshalError is an error type representing an error -// occurring when marshaling a Go value type to an AttributeValue. -type InvalidMarshalError struct { - emptyOrigError - msg string -} - -// Error returns the string representation of the error. -// satisfying the error interface -func (e *InvalidMarshalError) Error() string { - return fmt.Sprintf("%s: %s", e.Code(), e.Message()) -} - -// Code returns the code of the error, satisfying the awserr.Error -// interface. -func (e *InvalidMarshalError) Code() string { - return "InvalidMarshalError" -} - -// Message returns the detailed message of the error, satisfying -// the awserr.Error interface. -func (e *InvalidMarshalError) Message() string { - return e.msg -} - -// An unsupportedMarshalTypeError represents a Go value type -// which cannot be marshaled into an AttributeValue and should -// be skipped by the marshaler. -type unsupportedMarshalTypeError struct { - emptyOrigError - Type reflect.Type -} - -// Error returns the string representation of the error. -// satisfying the error interface -func (e *unsupportedMarshalTypeError) Error() string { - return fmt.Sprintf("%s: %s", e.Code(), e.Message()) -} - -// Code returns the code of the error, satisfying the awserr.Error -// interface. -func (e *unsupportedMarshalTypeError) Code() string { - return "unsupportedMarshalTypeError" -} - -// Message returns the detailed message of the error, satisfying -// the awserr.Error interface. -func (e *unsupportedMarshalTypeError) Message() string { - return "Go value type " + e.Type.String() + " is not supported" -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode_test.go deleted file mode 100644 index dbc005ef..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode_test.go +++ /dev/null @@ -1,178 +0,0 @@ -package dynamodbattribute - -import ( - "fmt" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/service/dynamodb" - "github.com/stretchr/testify/assert" -) - -func TestMarshalErrorTypes(t *testing.T) { - var _ awserr.Error = (*InvalidMarshalError)(nil) - var _ awserr.Error = (*unsupportedMarshalTypeError)(nil) -} - -func TestMarshalShared(t *testing.T) { - for i, c := range sharedTestCases { - av, err := Marshal(c.expected) - assertConvertTest(t, i, av, c.in, err, c.err) - } -} - -func TestMarshalListShared(t *testing.T) { - for i, c := range sharedListTestCases { - av, err := MarshalList(c.expected) - assertConvertTest(t, i, av, c.in, err, c.err) - } -} - -func TestMarshalMapShared(t *testing.T) { - for i, c := range sharedMapTestCases { - av, err := MarshalMap(c.expected) - assertConvertTest(t, i, av, c.in, err, c.err) - } -} - -type marshalMarshaler struct { - Value string - Value2 int - Value3 bool - Value4 time.Time -} - -func (m *marshalMarshaler) MarshalDynamoDBAttributeValue(av *dynamodb.AttributeValue) error { - av.M = map[string]*dynamodb.AttributeValue{ - "abc": {S: &m.Value}, - "def": {N: aws.String(fmt.Sprintf("%d", m.Value2))}, - "ghi": {BOOL: &m.Value3}, - "jkl": {S: aws.String(m.Value4.Format(time.RFC3339Nano))}, - } - - return nil -} - -func TestMarshalMashaler(t *testing.T) { - m := &marshalMarshaler{ - Value: "value", - Value2: 123, - Value3: true, - Value4: testDate, - } - - expect := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "abc": {S: aws.String("value")}, - "def": {N: aws.String("123")}, - "ghi": {BOOL: aws.Bool(true)}, - "jkl": {S: aws.String("2016-05-03T17:06:26.209072Z")}, - }, - } - - actual, err := Marshal(m) - assert.NoError(t, err) - - assert.Equal(t, expect, actual) -} - -type testOmitEmptyElemListStruct struct { - Values []string `dynamodbav:",omitemptyelem"` -} - -type testOmitEmptyElemMapStruct struct { - Values map[string]interface{} `dynamodbav:",omitemptyelem"` -} - -func TestMarshalListOmitEmptyElem(t *testing.T) { - expect := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Values": {L: []*dynamodb.AttributeValue{ - {S: aws.String("abc")}, - {S: aws.String("123")}, - }}, - }, - } - - m := testOmitEmptyElemListStruct{Values: []string{"abc", "", "123"}} - - actual, err := Marshal(m) - assert.NoError(t, err) - assert.Equal(t, expect, actual) -} - -func TestMarshalMapOmitEmptyElem(t *testing.T) { - expect := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Values": {M: map[string]*dynamodb.AttributeValue{ - "abc": {N: aws.String("123")}, - "klm": {S: aws.String("abc")}, - }}, - }, - } - - m := testOmitEmptyElemMapStruct{Values: map[string]interface{}{ - "abc": 123., - "efg": nil, - "hij": "", - "klm": "abc", - }} - - actual, err := Marshal(m) - assert.NoError(t, err) - assert.Equal(t, expect, actual) -} - -type testOmitEmptyScalar struct { - IntZero int `dynamodbav:",omitempty"` - IntPtrNil *int `dynamodbav:",omitempty"` - IntPtrSetZero *int `dynamodbav:",omitempty"` -} - -func TestMarshalOmitEmpty(t *testing.T) { - expect := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "IntPtrSetZero": {N: aws.String("0")}, - }, - } - - m := testOmitEmptyScalar{IntPtrSetZero: aws.Int(0)} - - actual, err := Marshal(m) - assert.NoError(t, err) - assert.Equal(t, expect, actual) -} - -func TestEncodeEmbeddedPointerStruct(t *testing.T) { - type B struct { - Bint int - } - type C struct { - Cint int - } - type A struct { - Aint int - *B - *C - } - a := A{Aint: 321, B: &B{123}} - assert.Equal(t, 321, a.Aint) - assert.Equal(t, 123, a.Bint) - assert.Nil(t, a.C) - - actual, err := Marshal(a) - assert.NoError(t, err) - expect := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Aint": { - N: aws.String("321"), - }, - "Bint": { - N: aws.String("123"), - }, - }, - } - assert.Equal(t, expect, actual) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field.go deleted file mode 100644 index 1fe0d350..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field.go +++ /dev/null @@ -1,269 +0,0 @@ -package dynamodbattribute - -import ( - "reflect" - "sort" - "strings" -) - -type field struct { - tag - - Name string - NameFromTag bool - - Index []int - Type reflect.Type -} - -func fieldByName(fields []field, name string) (field, bool) { - foldExists := false - foldField := field{} - - for _, f := range fields { - if f.Name == name { - return f, true - } - if !foldExists && strings.EqualFold(f.Name, name) { - foldField = f - foldExists = true - } - } - - return foldField, foldExists -} - -func buildField(pIdx []int, i int, sf reflect.StructField, fieldTag tag) field { - f := field{ - Name: sf.Name, - Type: sf.Type, - tag: fieldTag, - } - if len(fieldTag.Name) != 0 { - f.NameFromTag = true - f.Name = fieldTag.Name - } - - f.Index = make([]int, len(pIdx)+1) - copy(f.Index, pIdx) - f.Index[len(pIdx)] = i - - return f -} - -func unionStructFields(t reflect.Type, opts MarshalOptions) []field { - fields := enumFields(t, opts) - - sort.Sort(fieldsByName(fields)) - - fields = visibleFields(fields) - - return fields -} - -// enumFields will recursively iterate through a structure and its nested -// anonymous fields. -// -// Based on the enoding/json struct field enumeration of the Go Stdlib -// https://golang.org/src/encoding/json/encode.go typeField func. -func enumFields(t reflect.Type, opts MarshalOptions) []field { - // Fields to explore - current := []field{} - next := []field{{Type: t}} - - // count of queued names - count := map[reflect.Type]int{} - nextCount := map[reflect.Type]int{} - - visited := map[reflect.Type]struct{}{} - fields := []field{} - - for len(next) > 0 { - current, next = next, current[:0] - count, nextCount = nextCount, map[reflect.Type]int{} - - for _, f := range current { - if _, ok := visited[f.Type]; ok { - continue - } - visited[f.Type] = struct{}{} - - for i := 0; i < f.Type.NumField(); i++ { - sf := f.Type.Field(i) - if sf.PkgPath != "" && !sf.Anonymous { - // Ignore unexported and non-anonymous fields - // unexported but anonymous field may still be used if - // the type has exported nested fields - continue - } - - fieldTag := tag{} - fieldTag.parseAVTag(sf.Tag) - if opts.SupportJSONTags && fieldTag == (tag{}) { - fieldTag.parseJSONTag(sf.Tag) - } - - if fieldTag.Ignore { - continue - } - - ft := sf.Type - if ft.Name() == "" && ft.Kind() == reflect.Ptr { - ft = ft.Elem() - } - - structField := buildField(f.Index, i, sf, fieldTag) - structField.Type = ft - - if !sf.Anonymous || ft.Kind() != reflect.Struct { - fields = append(fields, structField) - if count[f.Type] > 1 { - // If there were multiple instances, add a second, - // so that the annihilation code will see a duplicate. - // It only cares about the distinction between 1 or 2, - // so don't bother generating any more copies. - fields = append(fields, structField) - } - continue - } - - // Record new anon struct to explore next round - nextCount[ft]++ - if nextCount[ft] == 1 { - next = append(next, structField) - } - } - } - } - - return fields -} - -// visibleFields will return a slice of fields which are visible based on -// Go's standard visiblity rules with the exception of ties being broken -// by depth and struct tag naming. -// -// Based on the enoding/json field filtering of the Go Stdlib -// https://golang.org/src/encoding/json/encode.go typeField func. -func visibleFields(fields []field) []field { - // Delete all fields that are hidden by the Go rules for embedded fields, - // except that fields with JSON tags are promoted. - - // The fields are sorted in primary order of name, secondary order - // of field index length. Loop over names; for each name, delete - // hidden fields by choosing the one dominant field that survives. - out := fields[:0] - for advance, i := 0, 0; i < len(fields); i += advance { - // One iteration per name. - // Find the sequence of fields with the name of this first field. - fi := fields[i] - name := fi.Name - for advance = 1; i+advance < len(fields); advance++ { - fj := fields[i+advance] - if fj.Name != name { - break - } - } - if advance == 1 { // Only one field with this name - out = append(out, fi) - continue - } - dominant, ok := dominantField(fields[i : i+advance]) - if ok { - out = append(out, dominant) - } - } - - fields = out - sort.Sort(fieldsByIndex(fields)) - - return fields -} - -// dominantField looks through the fields, all of which are known to -// have the same name, to find the single field that dominates the -// others using Go's embedding rules, modified by the presence of -// JSON tags. If there are multiple top-level fields, the boolean -// will be false: This condition is an error in Go and we skip all -// the fields. -// -// Based on the enoding/json field filtering of the Go Stdlib -// https://golang.org/src/encoding/json/encode.go dominantField func. -func dominantField(fields []field) (field, bool) { - // The fields are sorted in increasing index-length order. The winner - // must therefore be one with the shortest index length. Drop all - // longer entries, which is easy: just truncate the slice. - length := len(fields[0].Index) - tagged := -1 // Index of first tagged field. - for i, f := range fields { - if len(f.Index) > length { - fields = fields[:i] - break - } - if f.NameFromTag { - if tagged >= 0 { - // Multiple tagged fields at the same level: conflict. - // Return no field. - return field{}, false - } - tagged = i - } - } - if tagged >= 0 { - return fields[tagged], true - } - // All remaining fields have the same length. If there's more than one, - // we have a conflict (two fields named "X" at the same level) and we - // return no field. - if len(fields) > 1 { - return field{}, false - } - return fields[0], true -} - -// fieldsByName sorts field by name, breaking ties with depth, -// then breaking ties with "name came from json tag", then -// breaking ties with index sequence. -// -// Based on the enoding/json field filtering of the Go Stdlib -// https://golang.org/src/encoding/json/encode.go fieldsByName type. -type fieldsByName []field - -func (x fieldsByName) Len() int { return len(x) } - -func (x fieldsByName) Swap(i, j int) { x[i], x[j] = x[j], x[i] } - -func (x fieldsByName) Less(i, j int) bool { - if x[i].Name != x[j].Name { - return x[i].Name < x[j].Name - } - if len(x[i].Index) != len(x[j].Index) { - return len(x[i].Index) < len(x[j].Index) - } - if x[i].NameFromTag != x[j].NameFromTag { - return x[i].NameFromTag - } - return fieldsByIndex(x).Less(i, j) -} - -// fieldsByIndex sorts field by index sequence. -// -// Based on the enoding/json field filtering of the Go Stdlib -// https://golang.org/src/encoding/json/encode.go fieldsByIndex type. -type fieldsByIndex []field - -func (x fieldsByIndex) Len() int { return len(x) } - -func (x fieldsByIndex) Swap(i, j int) { x[i], x[j] = x[j], x[i] } - -func (x fieldsByIndex) Less(i, j int) bool { - for k, xik := range x[i].Index { - if k >= len(x[j].Index) { - return false - } - if xik != x[j].Index[k] { - return xik < x[j].Index[k] - } - } - return len(x[i].Index) < len(x[j].Index) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field_test.go deleted file mode 100644 index 58ee17b1..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field_test.go +++ /dev/null @@ -1,110 +0,0 @@ -package dynamodbattribute - -import ( - "reflect" - "testing" - - "github.com/stretchr/testify/assert" -) - -type testUnionValues struct { - Name string - Value interface{} -} - -type unionSimple struct { - A int - B string - C []string -} - -type unionComplex struct { - unionSimple - A int -} - -type unionTagged struct { - A int `json:"A"` -} - -type unionTaggedComplex struct { - unionSimple - unionTagged - B string -} - -func TestUnionStructFields(t *testing.T) { - var cases = []struct { - in interface{} - expect []testUnionValues - }{ - { - in: unionSimple{1, "2", []string{"abc"}}, - expect: []testUnionValues{ - {"A", 1}, - {"B", "2"}, - {"C", []string{"abc"}}, - }, - }, - { - in: unionComplex{ - unionSimple: unionSimple{1, "2", []string{"abc"}}, - A: 2, - }, - expect: []testUnionValues{ - {"B", "2"}, - {"C", []string{"abc"}}, - {"A", 2}, - }, - }, - { - in: unionTaggedComplex{ - unionSimple: unionSimple{1, "2", []string{"abc"}}, - unionTagged: unionTagged{3}, - B: "3", - }, - expect: []testUnionValues{ - {"C", []string{"abc"}}, - {"A", 3}, - {"B", "3"}, - }, - }, - } - - for i, c := range cases { - v := reflect.ValueOf(c.in) - - fields := unionStructFields(v.Type(), MarshalOptions{SupportJSONTags: true}) - for j, f := range fields { - expected := c.expect[j] - assert.Equal(t, expected.Name, f.Name, "case %d, field %d", i, j) - actual := v.FieldByIndex(f.Index).Interface() - assert.EqualValues(t, expected.Value, actual, "case %d, field %d", i, j) - } - } -} - -func TestFieldByName(t *testing.T) { - fields := []field{ - {Name: "Abc"}, {Name: "mixCase"}, {Name: "UPPERCASE"}, - } - - cases := []struct { - Name, FieldName string - Found bool - }{ - {"abc", "Abc", true}, {"ABC", "Abc", true}, {"Abc", "Abc", true}, - {"123", "", false}, - {"ab", "", false}, - {"MixCase", "mixCase", true}, - {"uppercase", "UPPERCASE", true}, {"UPPERCASE", "UPPERCASE", true}, - } - - for _, c := range cases { - f, ok := fieldByName(fields, c.Name) - assert.Equal(t, c.Found, ok) - if ok { - assert.Equal(t, c.FieldName, f.Name) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_examples_test.go deleted file mode 100644 index 28e915e3..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_examples_test.go +++ /dev/null @@ -1,104 +0,0 @@ -package dynamodbattribute_test - -import ( - "fmt" - "reflect" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/service/dynamodb" - "github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute" -) - -func ExampleMarshal() { - type Record struct { - Bytes []byte - MyField string - Letters []string - Numbers []int - } - - r := Record{ - Bytes: []byte{48, 49}, - MyField: "MyFieldValue", - Letters: []string{"a", "b", "c", "d"}, - Numbers: []int{1, 2, 3}, - } - av, err := dynamodbattribute.Marshal(r) - fmt.Println("err", err) - fmt.Println("Bytes", av.M["Bytes"]) - fmt.Println("MyField", av.M["MyField"]) - fmt.Println("Letters", av.M["Letters"]) - fmt.Println("Numbers", av.M["Numbers"]) - - // Output: - // err - // Bytes { - // B: [48,49] - // } - // MyField { - // S: "MyFieldValue" - // } - // Letters { - // L: [ - // { - // S: "a" - // }, - // { - // S: "b" - // }, - // { - // S: "c" - // }, - // { - // S: "d" - // } - // ] - // } - // Numbers { - // L: [{ - // N: "1" - // },{ - // N: "2" - // },{ - // N: "3" - // }] - // } -} - -func ExampleUnmarshal() { - type Record struct { - Bytes []byte - MyField string - Letters []string - A2Num map[string]int - } - - expect := Record{ - Bytes: []byte{48, 49}, - MyField: "MyFieldValue", - Letters: []string{"a", "b", "c", "d"}, - A2Num: map[string]int{"a": 1, "b": 2, "c": 3}, - } - - av := &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Bytes": {B: []byte{48, 49}}, - "MyField": {S: aws.String("MyFieldValue")}, - "Letters": {L: []*dynamodb.AttributeValue{ - {S: aws.String("a")}, {S: aws.String("b")}, {S: aws.String("c")}, {S: aws.String("d")}, - }}, - "A2Num": {M: map[string]*dynamodb.AttributeValue{ - "a": {N: aws.String("1")}, - "b": {N: aws.String("2")}, - "c": {N: aws.String("3")}, - }}, - }, - } - - actual := Record{} - err := dynamodbattribute.Unmarshal(av, &actual) - fmt.Println(err, reflect.DeepEqual(expect, actual)) - - // Output: - // true -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_test.go deleted file mode 100644 index 819bbc6c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_test.go +++ /dev/null @@ -1,526 +0,0 @@ -package dynamodbattribute - -import ( - "math" - "reflect" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/service/dynamodb" -) - -type simpleMarshalStruct struct { - Byte []byte - String string - Int int - Uint uint - Float32 float32 - Float64 float64 - Bool bool - Null *interface{} -} - -type complexMarshalStruct struct { - Simple []simpleMarshalStruct -} - -type myByteStruct struct { - Byte []byte -} - -type myByteSetStruct struct { - ByteSet [][]byte -} - -type marshallerTestInput struct { - input interface{} - expected interface{} - err awserr.Error -} - -var marshalerScalarInputs = []marshallerTestInput{ - { - input: nil, - expected: &dynamodb.AttributeValue{NULL: &trueValue}, - }, - { - input: "some string", - expected: &dynamodb.AttributeValue{S: aws.String("some string")}, - }, - { - input: true, - expected: &dynamodb.AttributeValue{BOOL: &trueValue}, - }, - { - input: false, - expected: &dynamodb.AttributeValue{BOOL: &falseValue}, - }, - { - input: 3.14, - expected: &dynamodb.AttributeValue{N: aws.String("3.14")}, - }, - { - input: math.MaxFloat32, - expected: &dynamodb.AttributeValue{N: aws.String("340282346638528860000000000000000000000")}, - }, - { - input: math.MaxFloat64, - expected: &dynamodb.AttributeValue{N: aws.String("179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")}, - }, - { - input: 12, - expected: &dynamodb.AttributeValue{N: aws.String("12")}, - }, - { - input: Number("12"), - expected: &dynamodb.AttributeValue{N: aws.String("12")}, - }, - { - input: simpleMarshalStruct{}, - expected: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Byte": {NULL: &trueValue}, - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {NULL: &trueValue}, - "Uint": {N: aws.String("0")}, - }, - }, - }, -} - -var marshallerMapTestInputs = []marshallerTestInput{ - // Scalar tests - { - input: nil, - expected: map[string]*dynamodb.AttributeValue{}, - }, - { - input: map[string]interface{}{"string": "some string"}, - expected: map[string]*dynamodb.AttributeValue{"string": {S: aws.String("some string")}}, - }, - { - input: map[string]interface{}{"bool": true}, - expected: map[string]*dynamodb.AttributeValue{"bool": {BOOL: &trueValue}}, - }, - { - input: map[string]interface{}{"bool": false}, - expected: map[string]*dynamodb.AttributeValue{"bool": {BOOL: &falseValue}}, - }, - { - input: map[string]interface{}{"null": nil}, - expected: map[string]*dynamodb.AttributeValue{"null": {NULL: &trueValue}}, - }, - { - input: map[string]interface{}{"float": 3.14}, - expected: map[string]*dynamodb.AttributeValue{"float": {N: aws.String("3.14")}}, - }, - { - input: map[string]interface{}{"float": math.MaxFloat32}, - expected: map[string]*dynamodb.AttributeValue{"float": {N: aws.String("340282346638528860000000000000000000000")}}, - }, - { - input: map[string]interface{}{"float": math.MaxFloat64}, - expected: map[string]*dynamodb.AttributeValue{"float": {N: aws.String("179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")}}, - }, - { - input: map[string]interface{}{"num": 12.}, - expected: map[string]*dynamodb.AttributeValue{"num": {N: aws.String("12")}}, - }, - { - input: map[string]interface{}{"byte": []byte{48, 49}}, - expected: map[string]*dynamodb.AttributeValue{"byte": {B: []byte{48, 49}}}, - }, - { - input: struct{ Byte []byte }{Byte: []byte{48, 49}}, - expected: map[string]*dynamodb.AttributeValue{"Byte": {B: []byte{48, 49}}}, - }, - { - input: map[string]interface{}{"byte_set": [][]byte{{48, 49}, {50, 51}}}, - expected: map[string]*dynamodb.AttributeValue{"byte_set": {BS: [][]byte{{48, 49}, {50, 51}}}}, - }, - { - input: struct{ ByteSet [][]byte }{ByteSet: [][]byte{{48, 49}, {50, 51}}}, - expected: map[string]*dynamodb.AttributeValue{"ByteSet": {BS: [][]byte{{48, 49}, {50, 51}}}}, - }, - // List - { - input: map[string]interface{}{"list": []interface{}{"a string", 12., 3.14, true, nil, false}}, - expected: map[string]*dynamodb.AttributeValue{ - "list": { - L: []*dynamodb.AttributeValue{ - {S: aws.String("a string")}, - {N: aws.String("12")}, - {N: aws.String("3.14")}, - {BOOL: &trueValue}, - {NULL: &trueValue}, - {BOOL: &falseValue}, - }, - }, - }, - }, - // Map - { - input: map[string]interface{}{"map": map[string]interface{}{"nestednum": 12.}}, - expected: map[string]*dynamodb.AttributeValue{ - "map": { - M: map[string]*dynamodb.AttributeValue{ - "nestednum": { - N: aws.String("12"), - }, - }, - }, - }, - }, - // Structs - { - input: simpleMarshalStruct{}, - expected: map[string]*dynamodb.AttributeValue{ - "Byte": {NULL: &trueValue}, - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {NULL: &trueValue}, - "Uint": {N: aws.String("0")}, - }, - }, - { - input: complexMarshalStruct{}, - expected: map[string]*dynamodb.AttributeValue{ - "Simple": {NULL: &trueValue}, - }, - }, - { - input: struct { - Simple []string `json:"simple"` - }{}, - expected: map[string]*dynamodb.AttributeValue{ - "simple": {NULL: &trueValue}, - }, - }, - { - input: struct { - Simple []string `json:"simple,omitempty"` - }{}, - expected: map[string]*dynamodb.AttributeValue{}, - }, - { - input: struct { - Simple []string `json:"-"` - }{}, - expected: map[string]*dynamodb.AttributeValue{}, - }, - { - input: complexMarshalStruct{Simple: []simpleMarshalStruct{{Int: -2}, {Uint: 5}}}, - expected: map[string]*dynamodb.AttributeValue{ - "Simple": { - L: []*dynamodb.AttributeValue{ - { - M: map[string]*dynamodb.AttributeValue{ - "Byte": {NULL: &trueValue}, - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("-2")}, - "Null": {NULL: &trueValue}, - "String": {NULL: &trueValue}, - "Uint": {N: aws.String("0")}, - }, - }, - { - M: map[string]*dynamodb.AttributeValue{ - "Byte": {NULL: &trueValue}, - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {NULL: &trueValue}, - "Uint": {N: aws.String("5")}, - }, - }, - }, - }, - }, - }, -} - -var marshallerListTestInputs = []marshallerTestInput{ - { - input: nil, - expected: []*dynamodb.AttributeValue{}, - }, - { - input: []interface{}{}, - expected: []*dynamodb.AttributeValue{}, - }, - { - input: []simpleMarshalStruct{}, - expected: []*dynamodb.AttributeValue{}, - }, - { - input: []interface{}{"a string", 12., 3.14, true, nil, false}, - expected: []*dynamodb.AttributeValue{ - {S: aws.String("a string")}, - {N: aws.String("12")}, - {N: aws.String("3.14")}, - {BOOL: &trueValue}, - {NULL: &trueValue}, - {BOOL: &falseValue}, - }, - }, - { - input: []simpleMarshalStruct{{}}, - expected: []*dynamodb.AttributeValue{ - { - M: map[string]*dynamodb.AttributeValue{ - "Byte": {NULL: &trueValue}, - "Bool": {BOOL: &falseValue}, - "Float32": {N: aws.String("0")}, - "Float64": {N: aws.String("0")}, - "Int": {N: aws.String("0")}, - "Null": {NULL: &trueValue}, - "String": {NULL: &trueValue}, - "Uint": {N: aws.String("0")}, - }, - }, - }, - }, -} - -func Test_New_Marshal(t *testing.T) { - for _, test := range marshalerScalarInputs { - testMarshal(t, test) - } -} - -func testMarshal(t *testing.T, test marshallerTestInput) { - actual, err := Marshal(test.input) - if test.err != nil { - if err == nil { - t.Errorf("Marshal with input %#v retured %#v, expected error `%s`", test.input, actual, test.err) - } else if err.Error() != test.err.Error() { - t.Errorf("Marshal with input %#v retured error `%s`, expected error `%s`", test.input, err, test.err) - } - } else { - if err != nil { - t.Errorf("Marshal with input %#v retured error `%s`", test.input, err) - } - compareObjects(t, test.expected, actual) - } -} - -func Test_New_Unmarshal(t *testing.T) { - // Using the same inputs from Marshal, test the reverse mapping. - for i, test := range marshalerScalarInputs { - if test.input == nil { - continue - } - actual := reflect.New(reflect.TypeOf(test.input)).Interface() - if err := Unmarshal(test.expected.(*dynamodb.AttributeValue), actual); err != nil { - t.Errorf("Unmarshal %d, with input %#v retured error `%s`", i+1, test.expected, err) - } - compareObjects(t, test.input, reflect.ValueOf(actual).Elem().Interface()) - } -} - -func Test_New_UnmarshalError(t *testing.T) { - // Test that we get an error using Unmarshal to convert to a nil value. - expected := &InvalidUnmarshalError{Type: reflect.TypeOf(nil)} - if err := Unmarshal(nil, nil); err == nil { - t.Errorf("Unmarshal with input %T returned no error, expected error `%v`", nil, expected) - } else if err.Error() != expected.Error() { - t.Errorf("Unmarshal with input %T returned error `%v`, expected error `%v`", nil, err, expected) - } - - // Test that we get an error using Unmarshal to convert to a non-pointer value. - var actual map[string]interface{} - expected = &InvalidUnmarshalError{Type: reflect.TypeOf(actual)} - if err := Unmarshal(nil, actual); err == nil { - t.Errorf("Unmarshal with input %T returned no error, expected error `%v`", actual, expected) - } else if err.Error() != expected.Error() { - t.Errorf("Unmarshal with input %T returned error `%v`, expected error `%v`", actual, err, expected) - } - - // Test that we get an error using Unmarshal to convert to nil struct. - var actual2 *struct{ A int } - expected = &InvalidUnmarshalError{Type: reflect.TypeOf(actual2)} - if err := Unmarshal(nil, actual2); err == nil { - t.Errorf("Unmarshal with input %T returned no error, expected error `%v`", actual2, expected) - } else if err.Error() != expected.Error() { - t.Errorf("Unmarshal with input %T returned error `%v`, expected error `%v`", actual2, err, expected) - } -} - -func Test_New_MarshalMap(t *testing.T) { - for _, test := range marshallerMapTestInputs { - testMarshalMap(t, test) - } -} - -func testMarshalMap(t *testing.T, test marshallerTestInput) { - actual, err := MarshalMap(test.input) - if test.err != nil { - if err == nil { - t.Errorf("MarshalMap with input %#v retured %#v, expected error `%s`", test.input, actual, test.err) - } else if err.Error() != test.err.Error() { - t.Errorf("MarshalMap with input %#v retured error `%s`, expected error `%s`", test.input, err, test.err) - } - } else { - if err != nil { - t.Errorf("MarshalMap with input %#v retured error `%s`", test.input, err) - } - compareObjects(t, test.expected, actual) - } -} - -func Test_New_UnmarshalMap(t *testing.T) { - // Using the same inputs from MarshalMap, test the reverse mapping. - for i, test := range marshallerMapTestInputs { - if test.input == nil { - continue - } - actual := reflect.New(reflect.TypeOf(test.input)).Interface() - if err := UnmarshalMap(test.expected.(map[string]*dynamodb.AttributeValue), actual); err != nil { - t.Errorf("Unmarshal %d, with input %#v retured error `%s`", i+1, test.expected, err) - } - compareObjects(t, test.input, reflect.ValueOf(actual).Elem().Interface()) - } -} - -func Test_New_UnmarshalMapError(t *testing.T) { - // Test that we get an error using UnmarshalMap to convert to a nil value. - expected := &InvalidUnmarshalError{Type: reflect.TypeOf(nil)} - if err := UnmarshalMap(nil, nil); err == nil { - t.Errorf("UnmarshalMap with input %T returned no error, expected error `%v`", nil, expected) - } else if err.Error() != expected.Error() { - t.Errorf("UnmarshalMap with input %T returned error `%v`, expected error `%v`", nil, err, expected) - } - - // Test that we get an error using UnmarshalMap to convert to a non-pointer value. - var actual map[string]interface{} - expected = &InvalidUnmarshalError{Type: reflect.TypeOf(actual)} - if err := UnmarshalMap(nil, actual); err == nil { - t.Errorf("UnmarshalMap with input %T returned no error, expected error `%v`", actual, expected) - } else if err.Error() != expected.Error() { - t.Errorf("UnmarshalMap with input %T returned error `%v`, expected error `%v`", actual, err, expected) - } - - // Test that we get an error using UnmarshalMap to convert to nil struct. - var actual2 *struct{ A int } - expected = &InvalidUnmarshalError{Type: reflect.TypeOf(actual2)} - if err := UnmarshalMap(nil, actual2); err == nil { - t.Errorf("UnmarshalMap with input %T returned no error, expected error `%v`", actual2, expected) - } else if err.Error() != expected.Error() { - t.Errorf("UnmarshalMap with input %T returned error `%v`, expected error `%v`", actual2, err, expected) - } -} - -func Test_New_MarshalList(t *testing.T) { - for _, test := range marshallerListTestInputs { - testMarshalList(t, test) - } -} - -func testMarshalList(t *testing.T, test marshallerTestInput) { - actual, err := MarshalList(test.input) - if test.err != nil { - if err == nil { - t.Errorf("MarshalList with input %#v retured %#v, expected error `%s`", test.input, actual, test.err) - } else if err.Error() != test.err.Error() { - t.Errorf("MarshalList with input %#v retured error `%s`, expected error `%s`", test.input, err, test.err) - } - } else { - if err != nil { - t.Errorf("MarshalList with input %#v retured error `%s`", test.input, err) - } - compareObjects(t, test.expected, actual) - } -} - -func Test_New_UnmarshalList(t *testing.T) { - // Using the same inputs from MarshalList, test the reverse mapping. - for i, test := range marshallerListTestInputs { - if test.input == nil { - continue - } - iv := reflect.ValueOf(test.input) - - actual := reflect.New(iv.Type()) - if iv.Kind() == reflect.Slice { - actual.Elem().Set(reflect.MakeSlice(iv.Type(), iv.Len(), iv.Cap())) - } - - if err := UnmarshalList(test.expected.([]*dynamodb.AttributeValue), actual.Interface()); err != nil { - t.Errorf("Unmarshal %d, with input %#v retured error `%s`", i+1, test.expected, err) - } - compareObjects(t, test.input, actual.Elem().Interface()) - } -} - -func Test_New_UnmarshalListError(t *testing.T) { - // Test that we get an error using UnmarshalList to convert to a nil value. - expected := &InvalidUnmarshalError{Type: reflect.TypeOf(nil)} - if err := UnmarshalList(nil, nil); err == nil { - t.Errorf("UnmarshalList with input %T returned no error, expected error `%v`", nil, expected) - } else if err.Error() != expected.Error() { - t.Errorf("UnmarshalList with input %T returned error `%v`, expected error `%v`", nil, err, expected) - } - - // Test that we get an error using UnmarshalList to convert to a non-pointer value. - var actual map[string]interface{} - expected = &InvalidUnmarshalError{Type: reflect.TypeOf(actual)} - if err := UnmarshalList(nil, actual); err == nil { - t.Errorf("UnmarshalList with input %T returned no error, expected error `%v`", actual, expected) - } else if err.Error() != expected.Error() { - t.Errorf("UnmarshalList with input %T returned error `%v`, expected error `%v`", actual, err, expected) - } - - // Test that we get an error using UnmarshalList to convert to nil struct. - var actual2 *struct{ A int } - expected = &InvalidUnmarshalError{Type: reflect.TypeOf(actual2)} - if err := UnmarshalList(nil, actual2); err == nil { - t.Errorf("UnmarshalList with input %T returned no error, expected error `%v`", actual2, expected) - } else if err.Error() != expected.Error() { - t.Errorf("UnmarshalList with input %T returned error `%v`, expected error `%v`", actual2, err, expected) - } -} - -func compareObjects(t *testing.T, expected interface{}, actual interface{}) { - if !reflect.DeepEqual(expected, actual) { - ev := reflect.ValueOf(expected) - av := reflect.ValueOf(actual) - t.Errorf("\nExpected kind(%s,%T):\n%s\nActual kind(%s,%T):\n%s\n", - ev.Kind(), - ev.Interface(), - awsutil.Prettify(expected), - av.Kind(), - ev.Interface(), - awsutil.Prettify(actual)) - } -} - -func BenchmarkMarshal(b *testing.B) { - d := simpleMarshalStruct{ - String: "abc", - Int: 123, - Uint: 123, - Float32: 123.321, - Float64: 123.321, - Bool: true, - Null: nil, - } - for i := 0; i < b.N; i++ { - _, err := Marshal(d) - if err != nil { - b.Fatal("unexpected error", err) - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/shared_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/shared_test.go deleted file mode 100644 index 3546ec30..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/shared_test.go +++ /dev/null @@ -1,389 +0,0 @@ -package dynamodbattribute - -import ( - "reflect" - "testing" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/service/dynamodb" - "github.com/stretchr/testify/assert" -) - -type testBinarySetStruct struct { - Binarys [][]byte `dynamodbav:",binaryset"` -} -type testNumberSetStruct struct { - Numbers []int `dynamodbav:",numberset"` -} -type testStringSetStruct struct { - Strings []string `dynamodbav:",stringset"` -} - -type testIntAsStringStruct struct { - Value int `dynamodbav:",string"` -} - -type testOmitEmptyStruct struct { - Value string `dynamodbav:",omitempty"` - Value2 *string `dynamodbav:",omitempty"` - Value3 int -} - -type testAliasedString string -type testAliasedStringSlice []string -type testAliasedInt int -type testAliasedIntSlice []int -type testAliasedMap map[string]int -type testAliasedSlice []string -type testAliasedByteSlice []byte - -type testAliasedStruct struct { - Value testAliasedString - Value2 testAliasedInt - Value3 testAliasedMap - Value4 testAliasedSlice - - Value5 testAliasedByteSlice - Value6 []testAliasedInt - Value7 []testAliasedString - - Value8 []testAliasedByteSlice `dynamodbav:",binaryset"` - Value9 []testAliasedInt `dynamodbav:",numberset"` - Value10 []testAliasedString `dynamodbav:",stringset"` - - Value11 testAliasedIntSlice - Value12 testAliasedStringSlice -} - -type testNamedPointer *int - -var testDate, _ = time.Parse(time.RFC3339, "2016-05-03T17:06:26.209072Z") - -var sharedTestCases = []struct { - in *dynamodb.AttributeValue - actual, expected interface{} - err error -}{ - { // Binary slice - in: &dynamodb.AttributeValue{B: []byte{48, 49}}, - actual: &[]byte{}, - expected: []byte{48, 49}, - }, - { // Binary slice - in: &dynamodb.AttributeValue{B: []byte{48, 49}}, - actual: &[]byte{}, - expected: []byte{48, 49}, - }, - { // Binary slice oversized - in: &dynamodb.AttributeValue{B: []byte{48, 49}}, - actual: func() *[]byte { - v := make([]byte, 0, 10) - return &v - }(), - expected: []byte{48, 49}, - }, - { // Binary slice pointer - in: &dynamodb.AttributeValue{B: []byte{48, 49}}, - actual: func() **[]byte { - v := make([]byte, 0, 10) - v2 := &v - return &v2 - }(), - expected: []byte{48, 49}, - }, - { // Bool - in: &dynamodb.AttributeValue{BOOL: aws.Bool(true)}, - actual: new(bool), - expected: true, - }, - { // List - in: &dynamodb.AttributeValue{L: []*dynamodb.AttributeValue{ - {N: aws.String("123")}, - }}, - actual: &[]int{}, - expected: []int{123}, - }, - { // Map, interface - in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{ - "abc": {N: aws.String("123")}, - }}, - actual: &map[string]int{}, - expected: map[string]int{"abc": 123}, - }, - { // Map, struct - in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{ - "Abc": {N: aws.String("123")}, - }}, - actual: &struct{ Abc int }{}, - expected: struct{ Abc int }{Abc: 123}, - }, - { // Map, struct - in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{ - "abc": {N: aws.String("123")}, - }}, - actual: &struct { - Abc int `json:"abc" dynamodbav:"abc"` - }{}, - expected: struct { - Abc int `json:"abc" dynamodbav:"abc"` - }{Abc: 123}, - }, - { // Number, int - in: &dynamodb.AttributeValue{N: aws.String("123")}, - actual: new(int), - expected: 123, - }, - { // Number, Float - in: &dynamodb.AttributeValue{N: aws.String("123.1")}, - actual: new(float64), - expected: float64(123.1), - }, - { // Null - in: &dynamodb.AttributeValue{NULL: aws.Bool(true)}, - actual: new(string), - expected: "", - }, - { // Null ptr - in: &dynamodb.AttributeValue{NULL: aws.Bool(true)}, - actual: new(*string), - expected: nil, - }, - { // String - in: &dynamodb.AttributeValue{S: aws.String("abc")}, - actual: new(string), - expected: "abc", - }, - { // Binary Set - in: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Binarys": {BS: [][]byte{{48, 49}, {50, 51}}}, - }, - }, - actual: &testBinarySetStruct{}, - expected: testBinarySetStruct{Binarys: [][]byte{{48, 49}, {50, 51}}}, - }, - { // Number Set - in: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Numbers": {NS: []*string{aws.String("123"), aws.String("321")}}, - }, - }, - actual: &testNumberSetStruct{}, - expected: testNumberSetStruct{Numbers: []int{123, 321}}, - }, - { // String Set - in: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Strings": {SS: []*string{aws.String("abc"), aws.String("efg")}}, - }, - }, - actual: &testStringSetStruct{}, - expected: testStringSetStruct{Strings: []string{"abc", "efg"}}, - }, - { // Int value as string - in: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Value": {S: aws.String("123")}, - }, - }, - actual: &testIntAsStringStruct{}, - expected: testIntAsStringStruct{Value: 123}, - }, - { // Omitempty - in: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Value3": {N: aws.String("0")}, - }, - }, - actual: &testOmitEmptyStruct{}, - expected: testOmitEmptyStruct{Value: "", Value2: nil, Value3: 0}, - }, - { // aliased type - in: &dynamodb.AttributeValue{ - M: map[string]*dynamodb.AttributeValue{ - "Value": {S: aws.String("123")}, - "Value2": {N: aws.String("123")}, - "Value3": {M: map[string]*dynamodb.AttributeValue{ - "Key": {N: aws.String("321")}, - }}, - "Value4": {L: []*dynamodb.AttributeValue{ - {S: aws.String("1")}, - {S: aws.String("2")}, - {S: aws.String("3")}, - }}, - "Value5": {B: []byte{0, 1, 2}}, - "Value6": {L: []*dynamodb.AttributeValue{ - {N: aws.String("1")}, - {N: aws.String("2")}, - {N: aws.String("3")}, - }}, - "Value7": {L: []*dynamodb.AttributeValue{ - {S: aws.String("1")}, - {S: aws.String("2")}, - {S: aws.String("3")}, - }}, - "Value8": {BS: [][]byte{ - {0, 1, 2}, {3, 4, 5}, - }}, - "Value9": {NS: []*string{ - aws.String("1"), - aws.String("2"), - aws.String("3"), - }}, - "Value10": {SS: []*string{ - aws.String("1"), - aws.String("2"), - aws.String("3"), - }}, - "Value11": {L: []*dynamodb.AttributeValue{ - {N: aws.String("1")}, - {N: aws.String("2")}, - {N: aws.String("3")}, - }}, - "Value12": {L: []*dynamodb.AttributeValue{ - {S: aws.String("1")}, - {S: aws.String("2")}, - {S: aws.String("3")}, - }}, - }, - }, - actual: &testAliasedStruct{}, - expected: testAliasedStruct{ - Value: "123", Value2: 123, - Value3: testAliasedMap{ - "Key": 321, - }, - Value4: testAliasedSlice{"1", "2", "3"}, - Value5: testAliasedByteSlice{0, 1, 2}, - Value6: []testAliasedInt{1, 2, 3}, - Value7: []testAliasedString{"1", "2", "3"}, - Value8: []testAliasedByteSlice{ - {0, 1, 2}, - {3, 4, 5}, - }, - Value9: []testAliasedInt{1, 2, 3}, - Value10: []testAliasedString{"1", "2", "3"}, - Value11: testAliasedIntSlice{1, 2, 3}, - Value12: testAliasedStringSlice{"1", "2", "3"}, - }, - }, - { - in: &dynamodb.AttributeValue{N: aws.String("123")}, - actual: new(testNamedPointer), - expected: testNamedPointer(aws.Int(123)), - }, - { // time.Time - in: &dynamodb.AttributeValue{S: aws.String("2016-05-03T17:06:26.209072Z")}, - actual: new(time.Time), - expected: testDate, - }, - { // time.Time List - in: &dynamodb.AttributeValue{L: []*dynamodb.AttributeValue{ - {S: aws.String("2016-05-03T17:06:26.209072Z")}, - {S: aws.String("2016-05-04T17:06:26.209072Z")}, - }}, - actual: new([]time.Time), - expected: []time.Time{testDate, testDate.Add(24 * time.Hour)}, - }, - { // time.Time struct - in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{ - "abc": {S: aws.String("2016-05-03T17:06:26.209072Z")}, - }}, - actual: &struct { - Abc time.Time `json:"abc" dynamodbav:"abc"` - }{}, - expected: struct { - Abc time.Time `json:"abc" dynamodbav:"abc"` - }{Abc: testDate}, - }, - { // time.Time ptr struct - in: &dynamodb.AttributeValue{M: map[string]*dynamodb.AttributeValue{ - "abc": {S: aws.String("2016-05-03T17:06:26.209072Z")}, - }}, - actual: &struct { - Abc *time.Time `json:"abc" dynamodbav:"abc"` - }{}, - expected: struct { - Abc *time.Time `json:"abc" dynamodbav:"abc"` - }{Abc: &testDate}, - }, -} - -var sharedListTestCases = []struct { - in []*dynamodb.AttributeValue - actual, expected interface{} - err error -}{ - { - in: []*dynamodb.AttributeValue{ - {B: []byte{48, 49}}, - {BOOL: aws.Bool(true)}, - {N: aws.String("123")}, - {S: aws.String("123")}, - }, - actual: func() *[]interface{} { - v := []interface{}{} - return &v - }(), - expected: []interface{}{[]byte{48, 49}, true, 123., "123"}, - }, - { - in: []*dynamodb.AttributeValue{ - {N: aws.String("1")}, - {N: aws.String("2")}, - {N: aws.String("3")}, - }, - actual: &[]interface{}{}, - expected: []interface{}{1., 2., 3.}, - }, -} - -var sharedMapTestCases = []struct { - in map[string]*dynamodb.AttributeValue - actual, expected interface{} - err error -}{ - { - in: map[string]*dynamodb.AttributeValue{ - "B": {B: []byte{48, 49}}, - "BOOL": {BOOL: aws.Bool(true)}, - "N": {N: aws.String("123")}, - "S": {S: aws.String("123")}, - }, - actual: &map[string]interface{}{}, - expected: map[string]interface{}{ - "B": []byte{48, 49}, "BOOL": true, - "N": 123., "S": "123", - }, - }, -} - -func assertConvertTest(t *testing.T, i int, actual, expected interface{}, err, expectedErr error) { - i++ - if expectedErr != nil { - if err != nil { - assert.Equal(t, expectedErr, err, "case %d", i) - } else { - assert.Fail(t, "", "case %d, expected error, %v", i) - } - } else if err != nil { - assert.Fail(t, "", "case %d, expect no error, got %v", i, err) - } else { - assert.Equal(t, ptrToValue(expected), ptrToValue(actual), "case %d", i) - } -} - -func ptrToValue(in interface{}) interface{} { - v := reflect.ValueOf(in) - if v.Kind() == reflect.Ptr { - v = v.Elem() - } - if !v.IsValid() { - return nil - } - if v.Kind() == reflect.Ptr { - return ptrToValue(v.Interface()) - } - return v.Interface() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag.go deleted file mode 100644 index 0b63eb7d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag.go +++ /dev/null @@ -1,65 +0,0 @@ -package dynamodbattribute - -import ( - "reflect" - "strings" -) - -type tag struct { - Name string - Ignore bool - OmitEmpty bool - OmitEmptyElem bool - AsString bool - AsBinSet, AsNumSet, AsStrSet bool -} - -func (t *tag) parseAVTag(structTag reflect.StructTag) { - tagStr := structTag.Get("dynamodbav") - if len(tagStr) == 0 { - return - } - - t.parseTagStr(tagStr) -} - -func (t *tag) parseJSONTag(structTag reflect.StructTag) { - tagStr := structTag.Get("json") - if len(tagStr) == 0 { - return - } - - t.parseTagStr(tagStr) -} - -func (t *tag) parseTagStr(tagStr string) { - parts := strings.SplitN(tagStr, ",", 2) - if len(parts) == 0 { - return - } - - if name := parts[0]; name == "-" { - t.Name = "" - t.Ignore = true - } else { - t.Name = name - t.Ignore = false - } - - for _, opt := range parts[1:] { - switch opt { - case "omitempty": - t.OmitEmpty = true - case "omitemptyelem": - t.OmitEmptyElem = true - case "string": - t.AsString = true - case "binaryset": - t.AsBinSet = true - case "numberset": - t.AsNumSet = true - case "stringset": - t.AsStrSet = true - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag_test.go deleted file mode 100644 index 09701036..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag_test.go +++ /dev/null @@ -1,45 +0,0 @@ -package dynamodbattribute - -import ( - "reflect" - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestTagParse(t *testing.T) { - cases := []struct { - in reflect.StructTag - json, av bool - expect tag - }{ - {`json:""`, true, false, tag{}}, - {`json:"name"`, true, false, tag{Name: "name"}}, - {`json:"name,omitempty"`, true, false, tag{Name: "name", OmitEmpty: true}}, - {`json:"-"`, true, false, tag{Ignore: true}}, - {`json:",omitempty"`, true, false, tag{OmitEmpty: true}}, - {`json:",string"`, true, false, tag{AsString: true}}, - {`dynamodbav:""`, false, true, tag{}}, - {`dynamodbav:","`, false, true, tag{}}, - {`dynamodbav:"name"`, false, true, tag{Name: "name"}}, - {`dynamodbav:"name"`, false, true, tag{Name: "name"}}, - {`dynamodbav:"-"`, false, true, tag{Ignore: true}}, - {`dynamodbav:",omitempty"`, false, true, tag{OmitEmpty: true}}, - {`dynamodbav:",omitemptyelem"`, false, true, tag{OmitEmptyElem: true}}, - {`dynamodbav:",string"`, false, true, tag{AsString: true}}, - {`dynamodbav:",binaryset"`, false, true, tag{AsBinSet: true}}, - {`dynamodbav:",numberset"`, false, true, tag{AsNumSet: true}}, - {`dynamodbav:",stringset"`, false, true, tag{AsStrSet: true}}, - } - - for i, c := range cases { - actual := tag{} - if c.json { - actual.parseJSONTag(c.in) - } - if c.av { - actual.parseAVTag(c.in) - } - assert.Equal(t, c.expect, actual, "case %d", i+1) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/examples_test.go deleted file mode 100644 index 0a96cd8d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/examples_test.go +++ /dev/null @@ -1,1437 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package dynamodb_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/dynamodb" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleDynamoDB_BatchGetItem() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.BatchGetItemInput{ - RequestItems: map[string]*dynamodb.KeysAndAttributes{ // Required - "Key": { // Required - Keys: []map[string]*dynamodb.AttributeValue{ // Required - { // Required - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - // More values... - }, - AttributesToGet: []*string{ - aws.String("AttributeName"), // Required - // More values... - }, - ConsistentRead: aws.Bool(true), - ExpressionAttributeNames: map[string]*string{ - "Key": aws.String("AttributeName"), // Required - // More values... - }, - ProjectionExpression: aws.String("ProjectionExpression"), - }, - // More values... - }, - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - } - resp, err := svc.BatchGetItem(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_BatchWriteItem() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.BatchWriteItemInput{ - RequestItems: map[string][]*dynamodb.WriteRequest{ // Required - "Key": { // Required - { // Required - DeleteRequest: &dynamodb.DeleteRequest{ - Key: map[string]*dynamodb.AttributeValue{ // Required - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - }, - PutRequest: &dynamodb.PutRequest{ - Item: map[string]*dynamodb.AttributeValue{ // Required - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - }, - }, - // More values... - }, - // More values... - }, - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - ReturnItemCollectionMetrics: aws.String("ReturnItemCollectionMetrics"), - } - resp, err := svc.BatchWriteItem(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_CreateTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.CreateTableInput{ - AttributeDefinitions: []*dynamodb.AttributeDefinition{ // Required - { // Required - AttributeName: aws.String("KeySchemaAttributeName"), // Required - AttributeType: aws.String("ScalarAttributeType"), // Required - }, - // More values... - }, - KeySchema: []*dynamodb.KeySchemaElement{ // Required - { // Required - AttributeName: aws.String("KeySchemaAttributeName"), // Required - KeyType: aws.String("KeyType"), // Required - }, - // More values... - }, - ProvisionedThroughput: &dynamodb.ProvisionedThroughput{ // Required - ReadCapacityUnits: aws.Int64(1), // Required - WriteCapacityUnits: aws.Int64(1), // Required - }, - TableName: aws.String("TableName"), // Required - GlobalSecondaryIndexes: []*dynamodb.GlobalSecondaryIndex{ - { // Required - IndexName: aws.String("IndexName"), // Required - KeySchema: []*dynamodb.KeySchemaElement{ // Required - { // Required - AttributeName: aws.String("KeySchemaAttributeName"), // Required - KeyType: aws.String("KeyType"), // Required - }, - // More values... - }, - Projection: &dynamodb.Projection{ // Required - NonKeyAttributes: []*string{ - aws.String("NonKeyAttributeName"), // Required - // More values... - }, - ProjectionType: aws.String("ProjectionType"), - }, - ProvisionedThroughput: &dynamodb.ProvisionedThroughput{ // Required - ReadCapacityUnits: aws.Int64(1), // Required - WriteCapacityUnits: aws.Int64(1), // Required - }, - }, - // More values... - }, - LocalSecondaryIndexes: []*dynamodb.LocalSecondaryIndex{ - { // Required - IndexName: aws.String("IndexName"), // Required - KeySchema: []*dynamodb.KeySchemaElement{ // Required - { // Required - AttributeName: aws.String("KeySchemaAttributeName"), // Required - KeyType: aws.String("KeyType"), // Required - }, - // More values... - }, - Projection: &dynamodb.Projection{ // Required - NonKeyAttributes: []*string{ - aws.String("NonKeyAttributeName"), // Required - // More values... - }, - ProjectionType: aws.String("ProjectionType"), - }, - }, - // More values... - }, - StreamSpecification: &dynamodb.StreamSpecification{ - StreamEnabled: aws.Bool(true), - StreamViewType: aws.String("StreamViewType"), - }, - } - resp, err := svc.CreateTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_DeleteItem() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.DeleteItemInput{ - Key: map[string]*dynamodb.AttributeValue{ // Required - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - TableName: aws.String("TableName"), // Required - ConditionExpression: aws.String("ConditionExpression"), - ConditionalOperator: aws.String("ConditionalOperator"), - Expected: map[string]*dynamodb.ExpectedAttributeValue{ - "Key": { // Required - AttributeValueList: []*dynamodb.AttributeValue{ - { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ComparisonOperator: aws.String("ComparisonOperator"), - Exists: aws.Bool(true), - Value: &dynamodb.AttributeValue{ - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - }, - // More values... - }, - ExpressionAttributeNames: map[string]*string{ - "Key": aws.String("AttributeName"), // Required - // More values... - }, - ExpressionAttributeValues: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - ReturnItemCollectionMetrics: aws.String("ReturnItemCollectionMetrics"), - ReturnValues: aws.String("ReturnValue"), - } - resp, err := svc.DeleteItem(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_DeleteTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.DeleteTableInput{ - TableName: aws.String("TableName"), // Required - } - resp, err := svc.DeleteTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_DescribeLimits() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - var params *dynamodb.DescribeLimitsInput - resp, err := svc.DescribeLimits(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_DescribeTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.DescribeTableInput{ - TableName: aws.String("TableName"), // Required - } - resp, err := svc.DescribeTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_GetItem() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.GetItemInput{ - Key: map[string]*dynamodb.AttributeValue{ // Required - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - TableName: aws.String("TableName"), // Required - AttributesToGet: []*string{ - aws.String("AttributeName"), // Required - // More values... - }, - ConsistentRead: aws.Bool(true), - ExpressionAttributeNames: map[string]*string{ - "Key": aws.String("AttributeName"), // Required - // More values... - }, - ProjectionExpression: aws.String("ProjectionExpression"), - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - } - resp, err := svc.GetItem(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_ListTables() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.ListTablesInput{ - ExclusiveStartTableName: aws.String("TableName"), - Limit: aws.Int64(1), - } - resp, err := svc.ListTables(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_PutItem() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.PutItemInput{ - Item: map[string]*dynamodb.AttributeValue{ // Required - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - TableName: aws.String("TableName"), // Required - ConditionExpression: aws.String("ConditionExpression"), - ConditionalOperator: aws.String("ConditionalOperator"), - Expected: map[string]*dynamodb.ExpectedAttributeValue{ - "Key": { // Required - AttributeValueList: []*dynamodb.AttributeValue{ - { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ComparisonOperator: aws.String("ComparisonOperator"), - Exists: aws.Bool(true), - Value: &dynamodb.AttributeValue{ - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - }, - // More values... - }, - ExpressionAttributeNames: map[string]*string{ - "Key": aws.String("AttributeName"), // Required - // More values... - }, - ExpressionAttributeValues: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - ReturnItemCollectionMetrics: aws.String("ReturnItemCollectionMetrics"), - ReturnValues: aws.String("ReturnValue"), - } - resp, err := svc.PutItem(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_Query() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.QueryInput{ - TableName: aws.String("TableName"), // Required - AttributesToGet: []*string{ - aws.String("AttributeName"), // Required - // More values... - }, - ConditionalOperator: aws.String("ConditionalOperator"), - ConsistentRead: aws.Bool(true), - ExclusiveStartKey: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ExpressionAttributeNames: map[string]*string{ - "Key": aws.String("AttributeName"), // Required - // More values... - }, - ExpressionAttributeValues: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - FilterExpression: aws.String("ConditionExpression"), - IndexName: aws.String("IndexName"), - KeyConditionExpression: aws.String("KeyExpression"), - KeyConditions: map[string]*dynamodb.Condition{ - "Key": { // Required - ComparisonOperator: aws.String("ComparisonOperator"), // Required - AttributeValueList: []*dynamodb.AttributeValue{ - { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - }, - // More values... - }, - Limit: aws.Int64(1), - ProjectionExpression: aws.String("ProjectionExpression"), - QueryFilter: map[string]*dynamodb.Condition{ - "Key": { // Required - ComparisonOperator: aws.String("ComparisonOperator"), // Required - AttributeValueList: []*dynamodb.AttributeValue{ - { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - }, - // More values... - }, - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - ScanIndexForward: aws.Bool(true), - Select: aws.String("Select"), - } - resp, err := svc.Query(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_Scan() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.ScanInput{ - TableName: aws.String("TableName"), // Required - AttributesToGet: []*string{ - aws.String("AttributeName"), // Required - // More values... - }, - ConditionalOperator: aws.String("ConditionalOperator"), - ConsistentRead: aws.Bool(true), - ExclusiveStartKey: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ExpressionAttributeNames: map[string]*string{ - "Key": aws.String("AttributeName"), // Required - // More values... - }, - ExpressionAttributeValues: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - FilterExpression: aws.String("ConditionExpression"), - IndexName: aws.String("IndexName"), - Limit: aws.Int64(1), - ProjectionExpression: aws.String("ProjectionExpression"), - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - ScanFilter: map[string]*dynamodb.Condition{ - "Key": { // Required - ComparisonOperator: aws.String("ComparisonOperator"), // Required - AttributeValueList: []*dynamodb.AttributeValue{ - { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - }, - // More values... - }, - Segment: aws.Int64(1), - Select: aws.String("Select"), - TotalSegments: aws.Int64(1), - } - resp, err := svc.Scan(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_UpdateItem() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.UpdateItemInput{ - Key: map[string]*dynamodb.AttributeValue{ // Required - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - TableName: aws.String("TableName"), // Required - AttributeUpdates: map[string]*dynamodb.AttributeValueUpdate{ - "Key": { // Required - Action: aws.String("AttributeAction"), - Value: &dynamodb.AttributeValue{ - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - }, - // More values... - }, - ConditionExpression: aws.String("ConditionExpression"), - ConditionalOperator: aws.String("ConditionalOperator"), - Expected: map[string]*dynamodb.ExpectedAttributeValue{ - "Key": { // Required - AttributeValueList: []*dynamodb.AttributeValue{ - { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ComparisonOperator: aws.String("ComparisonOperator"), - Exists: aws.Bool(true), - Value: &dynamodb.AttributeValue{ - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - }, - // More values... - }, - ExpressionAttributeNames: map[string]*string{ - "Key": aws.String("AttributeName"), // Required - // More values... - }, - ExpressionAttributeValues: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - B: []byte("PAYLOAD"), - BOOL: aws.Bool(true), - BS: [][]byte{ - []byte("PAYLOAD"), // Required - // More values... - }, - L: []*dynamodb.AttributeValue{ - { // Required - // Recursive values... - }, - // More values... - }, - M: map[string]*dynamodb.AttributeValue{ - "Key": { // Required - // Recursive values... - }, - // More values... - }, - N: aws.String("NumberAttributeValue"), - NS: []*string{ - aws.String("NumberAttributeValue"), // Required - // More values... - }, - NULL: aws.Bool(true), - S: aws.String("StringAttributeValue"), - SS: []*string{ - aws.String("StringAttributeValue"), // Required - // More values... - }, - }, - // More values... - }, - ReturnConsumedCapacity: aws.String("ReturnConsumedCapacity"), - ReturnItemCollectionMetrics: aws.String("ReturnItemCollectionMetrics"), - ReturnValues: aws.String("ReturnValue"), - UpdateExpression: aws.String("UpdateExpression"), - } - resp, err := svc.UpdateItem(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleDynamoDB_UpdateTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := dynamodb.New(sess) - - params := &dynamodb.UpdateTableInput{ - TableName: aws.String("TableName"), // Required - AttributeDefinitions: []*dynamodb.AttributeDefinition{ - { // Required - AttributeName: aws.String("KeySchemaAttributeName"), // Required - AttributeType: aws.String("ScalarAttributeType"), // Required - }, - // More values... - }, - GlobalSecondaryIndexUpdates: []*dynamodb.GlobalSecondaryIndexUpdate{ - { // Required - Create: &dynamodb.CreateGlobalSecondaryIndexAction{ - IndexName: aws.String("IndexName"), // Required - KeySchema: []*dynamodb.KeySchemaElement{ // Required - { // Required - AttributeName: aws.String("KeySchemaAttributeName"), // Required - KeyType: aws.String("KeyType"), // Required - }, - // More values... - }, - Projection: &dynamodb.Projection{ // Required - NonKeyAttributes: []*string{ - aws.String("NonKeyAttributeName"), // Required - // More values... - }, - ProjectionType: aws.String("ProjectionType"), - }, - ProvisionedThroughput: &dynamodb.ProvisionedThroughput{ // Required - ReadCapacityUnits: aws.Int64(1), // Required - WriteCapacityUnits: aws.Int64(1), // Required - }, - }, - Delete: &dynamodb.DeleteGlobalSecondaryIndexAction{ - IndexName: aws.String("IndexName"), // Required - }, - Update: &dynamodb.UpdateGlobalSecondaryIndexAction{ - IndexName: aws.String("IndexName"), // Required - ProvisionedThroughput: &dynamodb.ProvisionedThroughput{ // Required - ReadCapacityUnits: aws.Int64(1), // Required - WriteCapacityUnits: aws.Int64(1), // Required - }, - }, - }, - // More values... - }, - ProvisionedThroughput: &dynamodb.ProvisionedThroughput{ - ReadCapacityUnits: aws.Int64(1), // Required - WriteCapacityUnits: aws.Int64(1), // Required - }, - StreamSpecification: &dynamodb.StreamSpecification{ - StreamEnabled: aws.Bool(true), - StreamViewType: aws.String("StreamViewType"), - }, - } - resp, err := svc.UpdateTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/service.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/service.go deleted file mode 100644 index 2af4076f..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/service.go +++ /dev/null @@ -1,202 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package dynamodb - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" -) - -// This is the Amazon DynamoDB API Reference. This guide provides descriptions -// of the low-level DynamoDB API. -// -// This guide is intended for use with the following DynamoDB documentation: -// -// Amazon DynamoDB Getting Started Guide (http://docs.aws.amazon.com/amazondynamodb/latest/gettingstartedguide/) -// - provides hands-on exercises that help you learn the basics of working with -// DynamoDB. If you are new to DynamoDB, we recommend that you begin with the -// Getting Started Guide. -// -// Amazon DynamoDB Developer Guide (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/) -// - contains detailed information about DynamoDB concepts, usage, and best -// practices. -// -// Amazon DynamoDB Streams API Reference (http://docs.aws.amazon.com/dynamodbstreams/latest/APIReference/) -// - provides descriptions and samples of the DynamoDB Streams API. (For more -// information, see Capturing Table Activity with DynamoDB Streams (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Streams.html) -// in the Amazon DynamoDB Developer Guide.) -// -// Instead of making the requests to the low-level DynamoDB API directly -// from your application, we recommend that you use the AWS Software Development -// Kits (SDKs). The easy-to-use libraries in the AWS SDKs make it unnecessary -// to call the low-level DynamoDB API directly from your application. The libraries -// take care of request authentication, serialization, and connection management. -// For more information, see Using the AWS SDKs with DynamoDB (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/UsingAWSSDK.html) -// in the Amazon DynamoDB Developer Guide. -// -// If you decide to code against the low-level DynamoDB API directly, you will -// need to write the necessary code to authenticate your requests. For more -// information on signing your requests, see Using the DynamoDB API (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/API.html) -// in the Amazon DynamoDB Developer Guide. -// -// The following are short descriptions of each low-level API action, organized -// by function. -// -// Managing Tables -// -// CreateTable - Creates a table with user-specified provisioned throughput -// settings. You must define a primary key for the table - either a simple primary -// key (partition key), or a composite primary key (partition key and sort key). -// Optionally, you can create one or more secondary indexes, which provide fast -// data access using non-key attributes. -// -// DescribeTable - Returns metadata for a table, such as table size, status, -// and index information. -// -// UpdateTable - Modifies the provisioned throughput settings for a table. -// Optionally, you can modify the provisioned throughput settings for global -// secondary indexes on the table. -// -// ListTables - Returns a list of all tables associated with the current -// AWS account and endpoint. -// -// DeleteTable - Deletes a table and all of its indexes. -// -// For conceptual information about managing tables, see Working with Tables -// (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html) -// in the Amazon DynamoDB Developer Guide. -// -// Reading Data -// -// GetItem - Returns a set of attributes for the item that has a given primary -// key. By default, GetItem performs an eventually consistent read; however, -// applications can request a strongly consistent read instead. -// -// BatchGetItem - Performs multiple GetItem requests for data items using -// their primary keys, from one table or multiple tables. The response from -// BatchGetItem has a size limit of 16 MB and returns a maximum of 100 items. -// Both eventually consistent and strongly consistent reads can be used. -// -// Query - Returns one or more items from a table or a secondary index. -// You must provide a specific value for the partition key. You can narrow the -// scope of the query using comparison operators against a sort key value, or -// on the index key. Query supports either eventual or strong consistency. A -// single response has a size limit of 1 MB. -// -// Scan - Reads every item in a table; the result set is eventually consistent. -// You can limit the number of items returned by filtering the data attributes, -// using conditional expressions. Scan can be used to enable ad-hoc querying -// of a table against non-key attributes; however, since this is a full table -// scan without using an index, Scan should not be used for any application -// query use case that requires predictable performance. -// -// For conceptual information about reading data, see Working with Items -// (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html) -// and Query and Scan Operations (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html) -// in the Amazon DynamoDB Developer Guide. -// -// Modifying Data -// -// PutItem - Creates a new item, or replaces an existing item with a new -// item (including all the attributes). By default, if an item in the table -// already exists with the same primary key, the new item completely replaces -// the existing item. You can use conditional operators to replace an item only -// if its attribute values match certain conditions, or to insert a new item -// only if that item doesn't already exist. -// -// UpdateItem - Modifies the attributes of an existing item. You can also -// use conditional operators to perform an update only if the item's attribute -// values match certain conditions. -// -// DeleteItem - Deletes an item in a table by primary key. You can use conditional -// operators to perform a delete an item only if the item's attribute values -// match certain conditions. -// -// BatchWriteItem - Performs multiple PutItem and DeleteItem requests across -// multiple tables in a single request. A failure of any request(s) in the batch -// will not cause the entire BatchWriteItem operation to fail. Supports batches -// of up to 25 items to put or delete, with a maximum total request size of -// 16 MB. -// -// For conceptual information about modifying data, see Working with Items -// (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithItems.html) -// and Query and Scan Operations (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/QueryAndScan.html) -// in the Amazon DynamoDB Developer Guide. -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type DynamoDB struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "dynamodb" - -// New creates a new instance of the DynamoDB client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a DynamoDB client from just a session. -// svc := dynamodb.New(mySession) -// -// // Create a DynamoDB client with additional configuration -// svc := dynamodb.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *DynamoDB { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *DynamoDB { - svc := &DynamoDB{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2012-08-10", - JSONVersion: "1.0", - TargetPrefix: "DynamoDB_20120810", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a DynamoDB operation and runs any -// custom request initialization. -func (c *DynamoDB) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/dynamodb/waiters.go deleted file mode 100644 index 57e1264b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/dynamodb/waiters.go +++ /dev/null @@ -1,67 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package dynamodb - -import ( - "github.com/aws/aws-sdk-go/private/waiter" -) - -// WaitUntilTableExists uses the DynamoDB API operation -// DescribeTable to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *DynamoDB) WaitUntilTableExists(input *DescribeTableInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeTable", - Delay: 20, - MaxAttempts: 25, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "Table.TableStatus", - Expected: "ACTIVE", - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "ResourceNotFoundException", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilTableNotExists uses the DynamoDB API operation -// DescribeTable to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *DynamoDB) WaitUntilTableNotExists(input *DescribeTableInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeTable", - Delay: 20, - MaxAttempts: 25, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "error", - Argument: "", - Expected: "ResourceNotFoundException", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go b/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go deleted file mode 100644 index 11df08c2..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go +++ /dev/null @@ -1,35249 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package ec2 provides a client for Amazon Elastic Compute Cloud. -package ec2 - -import ( - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/ec2query" -) - -const opAcceptReservedInstancesExchangeQuote = "AcceptReservedInstancesExchangeQuote" - -// AcceptReservedInstancesExchangeQuoteRequest generates a "aws/request.Request" representing the -// client's request for the AcceptReservedInstancesExchangeQuote operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AcceptReservedInstancesExchangeQuote method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AcceptReservedInstancesExchangeQuoteRequest method. -// req, resp := client.AcceptReservedInstancesExchangeQuoteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AcceptReservedInstancesExchangeQuoteRequest(input *AcceptReservedInstancesExchangeQuoteInput) (req *request.Request, output *AcceptReservedInstancesExchangeQuoteOutput) { - op := &request.Operation{ - Name: opAcceptReservedInstancesExchangeQuote, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AcceptReservedInstancesExchangeQuoteInput{} - } - - req = c.newRequest(op, input, output) - output = &AcceptReservedInstancesExchangeQuoteOutput{} - req.Data = output - return -} - -// Purchases Convertible Reserved Instance offerings described in the GetReservedInstancesExchangeQuote -// call. -func (c *EC2) AcceptReservedInstancesExchangeQuote(input *AcceptReservedInstancesExchangeQuoteInput) (*AcceptReservedInstancesExchangeQuoteOutput, error) { - req, out := c.AcceptReservedInstancesExchangeQuoteRequest(input) - err := req.Send() - return out, err -} - -const opAcceptVpcPeeringConnection = "AcceptVpcPeeringConnection" - -// AcceptVpcPeeringConnectionRequest generates a "aws/request.Request" representing the -// client's request for the AcceptVpcPeeringConnection operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AcceptVpcPeeringConnection method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AcceptVpcPeeringConnectionRequest method. -// req, resp := client.AcceptVpcPeeringConnectionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AcceptVpcPeeringConnectionRequest(input *AcceptVpcPeeringConnectionInput) (req *request.Request, output *AcceptVpcPeeringConnectionOutput) { - op := &request.Operation{ - Name: opAcceptVpcPeeringConnection, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AcceptVpcPeeringConnectionInput{} - } - - req = c.newRequest(op, input, output) - output = &AcceptVpcPeeringConnectionOutput{} - req.Data = output - return -} - -// Accept a VPC peering connection request. To accept a request, the VPC peering -// connection must be in the pending-acceptance state, and you must be the owner -// of the peer VPC. Use the DescribeVpcPeeringConnections request to view your -// outstanding VPC peering connection requests. -func (c *EC2) AcceptVpcPeeringConnection(input *AcceptVpcPeeringConnectionInput) (*AcceptVpcPeeringConnectionOutput, error) { - req, out := c.AcceptVpcPeeringConnectionRequest(input) - err := req.Send() - return out, err -} - -const opAllocateAddress = "AllocateAddress" - -// AllocateAddressRequest generates a "aws/request.Request" representing the -// client's request for the AllocateAddress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AllocateAddress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AllocateAddressRequest method. -// req, resp := client.AllocateAddressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AllocateAddressRequest(input *AllocateAddressInput) (req *request.Request, output *AllocateAddressOutput) { - op := &request.Operation{ - Name: opAllocateAddress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AllocateAddressInput{} - } - - req = c.newRequest(op, input, output) - output = &AllocateAddressOutput{} - req.Data = output - return -} - -// Acquires an Elastic IP address. -// -// An Elastic IP address is for use either in the EC2-Classic platform or in -// a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) AllocateAddress(input *AllocateAddressInput) (*AllocateAddressOutput, error) { - req, out := c.AllocateAddressRequest(input) - err := req.Send() - return out, err -} - -const opAllocateHosts = "AllocateHosts" - -// AllocateHostsRequest generates a "aws/request.Request" representing the -// client's request for the AllocateHosts operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AllocateHosts method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AllocateHostsRequest method. -// req, resp := client.AllocateHostsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AllocateHostsRequest(input *AllocateHostsInput) (req *request.Request, output *AllocateHostsOutput) { - op := &request.Operation{ - Name: opAllocateHosts, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AllocateHostsInput{} - } - - req = c.newRequest(op, input, output) - output = &AllocateHostsOutput{} - req.Data = output - return -} - -// Allocates a Dedicated Host to your account. At minimum you need to specify -// the instance size type, Availability Zone, and quantity of hosts you want -// to allocate. -func (c *EC2) AllocateHosts(input *AllocateHostsInput) (*AllocateHostsOutput, error) { - req, out := c.AllocateHostsRequest(input) - err := req.Send() - return out, err -} - -const opAssignPrivateIpAddresses = "AssignPrivateIpAddresses" - -// AssignPrivateIpAddressesRequest generates a "aws/request.Request" representing the -// client's request for the AssignPrivateIpAddresses operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssignPrivateIpAddresses method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssignPrivateIpAddressesRequest method. -// req, resp := client.AssignPrivateIpAddressesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AssignPrivateIpAddressesRequest(input *AssignPrivateIpAddressesInput) (req *request.Request, output *AssignPrivateIpAddressesOutput) { - op := &request.Operation{ - Name: opAssignPrivateIpAddresses, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AssignPrivateIpAddressesInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &AssignPrivateIpAddressesOutput{} - req.Data = output - return -} - -// Assigns one or more secondary private IP addresses to the specified network -// interface. You can specify one or more specific secondary IP addresses, or -// you can specify the number of secondary IP addresses to be automatically -// assigned within the subnet's CIDR block range. The number of secondary IP -// addresses that you can assign to an instance varies by instance type. For -// information about instance types, see Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html) -// in the Amazon Elastic Compute Cloud User Guide. For more information about -// Elastic IP addresses, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// AssignPrivateIpAddresses is available only in EC2-VPC. -func (c *EC2) AssignPrivateIpAddresses(input *AssignPrivateIpAddressesInput) (*AssignPrivateIpAddressesOutput, error) { - req, out := c.AssignPrivateIpAddressesRequest(input) - err := req.Send() - return out, err -} - -const opAssociateAddress = "AssociateAddress" - -// AssociateAddressRequest generates a "aws/request.Request" representing the -// client's request for the AssociateAddress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssociateAddress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssociateAddressRequest method. -// req, resp := client.AssociateAddressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AssociateAddressRequest(input *AssociateAddressInput) (req *request.Request, output *AssociateAddressOutput) { - op := &request.Operation{ - Name: opAssociateAddress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AssociateAddressInput{} - } - - req = c.newRequest(op, input, output) - output = &AssociateAddressOutput{} - req.Data = output - return -} - -// Associates an Elastic IP address with an instance or a network interface. -// -// An Elastic IP address is for use in either the EC2-Classic platform or in -// a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// [EC2-Classic, VPC in an EC2-VPC-only account] If the Elastic IP address -// is already associated with a different instance, it is disassociated from -// that instance and associated with the specified instance. -// -// [VPC in an EC2-Classic account] If you don't specify a private IP address, -// the Elastic IP address is associated with the primary IP address. If the -// Elastic IP address is already associated with a different instance or a network -// interface, you get an error unless you allow reassociation. -// -// This is an idempotent operation. If you perform the operation more than -// once, Amazon EC2 doesn't return an error, and you may be charged for each -// time the Elastic IP address is remapped to the same instance. For more information, -// see the Elastic IP Addresses section of Amazon EC2 Pricing (http://aws.amazon.com/ec2/pricing/). -func (c *EC2) AssociateAddress(input *AssociateAddressInput) (*AssociateAddressOutput, error) { - req, out := c.AssociateAddressRequest(input) - err := req.Send() - return out, err -} - -const opAssociateDhcpOptions = "AssociateDhcpOptions" - -// AssociateDhcpOptionsRequest generates a "aws/request.Request" representing the -// client's request for the AssociateDhcpOptions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssociateDhcpOptions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssociateDhcpOptionsRequest method. -// req, resp := client.AssociateDhcpOptionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AssociateDhcpOptionsRequest(input *AssociateDhcpOptionsInput) (req *request.Request, output *AssociateDhcpOptionsOutput) { - op := &request.Operation{ - Name: opAssociateDhcpOptions, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AssociateDhcpOptionsInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &AssociateDhcpOptionsOutput{} - req.Data = output - return -} - -// Associates a set of DHCP options (that you've previously created) with the -// specified VPC, or associates no DHCP options with the VPC. -// -// After you associate the options with the VPC, any existing instances and -// all new instances that you launch in that VPC use the options. You don't -// need to restart or relaunch the instances. They automatically pick up the -// changes within a few hours, depending on how frequently the instance renews -// its DHCP lease. You can explicitly renew the lease using the operating system -// on the instance. -// -// For more information, see DHCP Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) AssociateDhcpOptions(input *AssociateDhcpOptionsInput) (*AssociateDhcpOptionsOutput, error) { - req, out := c.AssociateDhcpOptionsRequest(input) - err := req.Send() - return out, err -} - -const opAssociateRouteTable = "AssociateRouteTable" - -// AssociateRouteTableRequest generates a "aws/request.Request" representing the -// client's request for the AssociateRouteTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssociateRouteTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssociateRouteTableRequest method. -// req, resp := client.AssociateRouteTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AssociateRouteTableRequest(input *AssociateRouteTableInput) (req *request.Request, output *AssociateRouteTableOutput) { - op := &request.Operation{ - Name: opAssociateRouteTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AssociateRouteTableInput{} - } - - req = c.newRequest(op, input, output) - output = &AssociateRouteTableOutput{} - req.Data = output - return -} - -// Associates a subnet with a route table. The subnet and route table must be -// in the same VPC. This association causes traffic originating from the subnet -// to be routed according to the routes in the route table. The action returns -// an association ID, which you need in order to disassociate the route table -// from the subnet later. A route table can be associated with multiple subnets. -// -// For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) AssociateRouteTable(input *AssociateRouteTableInput) (*AssociateRouteTableOutput, error) { - req, out := c.AssociateRouteTableRequest(input) - err := req.Send() - return out, err -} - -const opAttachClassicLinkVpc = "AttachClassicLinkVpc" - -// AttachClassicLinkVpcRequest generates a "aws/request.Request" representing the -// client's request for the AttachClassicLinkVpc operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AttachClassicLinkVpc method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AttachClassicLinkVpcRequest method. -// req, resp := client.AttachClassicLinkVpcRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AttachClassicLinkVpcRequest(input *AttachClassicLinkVpcInput) (req *request.Request, output *AttachClassicLinkVpcOutput) { - op := &request.Operation{ - Name: opAttachClassicLinkVpc, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AttachClassicLinkVpcInput{} - } - - req = c.newRequest(op, input, output) - output = &AttachClassicLinkVpcOutput{} - req.Data = output - return -} - -// Links an EC2-Classic instance to a ClassicLink-enabled VPC through one or -// more of the VPC's security groups. You cannot link an EC2-Classic instance -// to more than one VPC at a time. You can only link an instance that's in the -// running state. An instance is automatically unlinked from a VPC when it's -// stopped - you can link it to the VPC again when you restart it. -// -// After you've linked an instance, you cannot change the VPC security groups -// that are associated with it. To change the security groups, you must first -// unlink the instance, and then link it again. -// -// Linking your instance to a VPC is sometimes referred to as attaching your -// instance. -func (c *EC2) AttachClassicLinkVpc(input *AttachClassicLinkVpcInput) (*AttachClassicLinkVpcOutput, error) { - req, out := c.AttachClassicLinkVpcRequest(input) - err := req.Send() - return out, err -} - -const opAttachInternetGateway = "AttachInternetGateway" - -// AttachInternetGatewayRequest generates a "aws/request.Request" representing the -// client's request for the AttachInternetGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AttachInternetGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AttachInternetGatewayRequest method. -// req, resp := client.AttachInternetGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AttachInternetGatewayRequest(input *AttachInternetGatewayInput) (req *request.Request, output *AttachInternetGatewayOutput) { - op := &request.Operation{ - Name: opAttachInternetGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AttachInternetGatewayInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &AttachInternetGatewayOutput{} - req.Data = output - return -} - -// Attaches an Internet gateway to a VPC, enabling connectivity between the -// Internet and the VPC. For more information about your VPC and Internet gateway, -// see the Amazon Virtual Private Cloud User Guide (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/). -func (c *EC2) AttachInternetGateway(input *AttachInternetGatewayInput) (*AttachInternetGatewayOutput, error) { - req, out := c.AttachInternetGatewayRequest(input) - err := req.Send() - return out, err -} - -const opAttachNetworkInterface = "AttachNetworkInterface" - -// AttachNetworkInterfaceRequest generates a "aws/request.Request" representing the -// client's request for the AttachNetworkInterface operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AttachNetworkInterface method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AttachNetworkInterfaceRequest method. -// req, resp := client.AttachNetworkInterfaceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AttachNetworkInterfaceRequest(input *AttachNetworkInterfaceInput) (req *request.Request, output *AttachNetworkInterfaceOutput) { - op := &request.Operation{ - Name: opAttachNetworkInterface, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AttachNetworkInterfaceInput{} - } - - req = c.newRequest(op, input, output) - output = &AttachNetworkInterfaceOutput{} - req.Data = output - return -} - -// Attaches a network interface to an instance. -func (c *EC2) AttachNetworkInterface(input *AttachNetworkInterfaceInput) (*AttachNetworkInterfaceOutput, error) { - req, out := c.AttachNetworkInterfaceRequest(input) - err := req.Send() - return out, err -} - -const opAttachVolume = "AttachVolume" - -// AttachVolumeRequest generates a "aws/request.Request" representing the -// client's request for the AttachVolume operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AttachVolume method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AttachVolumeRequest method. -// req, resp := client.AttachVolumeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AttachVolumeRequest(input *AttachVolumeInput) (req *request.Request, output *VolumeAttachment) { - op := &request.Operation{ - Name: opAttachVolume, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AttachVolumeInput{} - } - - req = c.newRequest(op, input, output) - output = &VolumeAttachment{} - req.Data = output - return -} - -// Attaches an EBS volume to a running or stopped instance and exposes it to -// the instance with the specified device name. -// -// Encrypted EBS volumes may only be attached to instances that support Amazon -// EBS encryption. For more information, see Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// For a list of supported device names, see Attaching an EBS Volume to an -// Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html). -// Any device names that aren't reserved for instance store volumes can be used -// for EBS volumes. For more information, see Amazon EC2 Instance Store (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// If a volume has an AWS Marketplace product code: -// -// The volume can be attached only to a stopped instance. -// -// AWS Marketplace product codes are copied from the volume to the instance. -// -// You must be subscribed to the product. -// -// The instance type and operating system of the instance must support the -// product. For example, you can't detach a volume from a Windows instance and -// attach it to a Linux instance. -// -// For an overview of the AWS Marketplace, see Introducing AWS Marketplace -// (https://aws.amazon.com/marketplace/help/200900000). -// -// For more information about EBS volumes, see Attaching Amazon EBS Volumes -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-attaching-volume.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) AttachVolume(input *AttachVolumeInput) (*VolumeAttachment, error) { - req, out := c.AttachVolumeRequest(input) - err := req.Send() - return out, err -} - -const opAttachVpnGateway = "AttachVpnGateway" - -// AttachVpnGatewayRequest generates a "aws/request.Request" representing the -// client's request for the AttachVpnGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AttachVpnGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AttachVpnGatewayRequest method. -// req, resp := client.AttachVpnGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AttachVpnGatewayRequest(input *AttachVpnGatewayInput) (req *request.Request, output *AttachVpnGatewayOutput) { - op := &request.Operation{ - Name: opAttachVpnGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AttachVpnGatewayInput{} - } - - req = c.newRequest(op, input, output) - output = &AttachVpnGatewayOutput{} - req.Data = output - return -} - -// Attaches a virtual private gateway to a VPC. For more information, see Adding -// a Hardware Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) AttachVpnGateway(input *AttachVpnGatewayInput) (*AttachVpnGatewayOutput, error) { - req, out := c.AttachVpnGatewayRequest(input) - err := req.Send() - return out, err -} - -const opAuthorizeSecurityGroupEgress = "AuthorizeSecurityGroupEgress" - -// AuthorizeSecurityGroupEgressRequest generates a "aws/request.Request" representing the -// client's request for the AuthorizeSecurityGroupEgress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AuthorizeSecurityGroupEgress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AuthorizeSecurityGroupEgressRequest method. -// req, resp := client.AuthorizeSecurityGroupEgressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AuthorizeSecurityGroupEgressRequest(input *AuthorizeSecurityGroupEgressInput) (req *request.Request, output *AuthorizeSecurityGroupEgressOutput) { - op := &request.Operation{ - Name: opAuthorizeSecurityGroupEgress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AuthorizeSecurityGroupEgressInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &AuthorizeSecurityGroupEgressOutput{} - req.Data = output - return -} - -// [EC2-VPC only] Adds one or more egress rules to a security group for use -// with a VPC. Specifically, this action permits instances to send traffic to -// one or more destination CIDR IP address ranges, or to one or more destination -// security groups for the same VPC. This action doesn't apply to security groups -// for use in EC2-Classic. For more information, see Security Groups for Your -// VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html) -// in the Amazon Virtual Private Cloud User Guide. -// -// You can have up to 50 rules per security group (covering both ingress and -// egress rules). -// -// Each rule consists of the protocol (for example, TCP), plus either a CIDR -// range or a source group. For the TCP and UDP protocols, you must also specify -// the destination port or port range. For the ICMP protocol, you must also -// specify the ICMP type and code. You can use -1 for the type or code to mean -// all types or all codes. -// -// Rule changes are propagated to affected instances as quickly as possible. -// However, a small delay might occur. -func (c *EC2) AuthorizeSecurityGroupEgress(input *AuthorizeSecurityGroupEgressInput) (*AuthorizeSecurityGroupEgressOutput, error) { - req, out := c.AuthorizeSecurityGroupEgressRequest(input) - err := req.Send() - return out, err -} - -const opAuthorizeSecurityGroupIngress = "AuthorizeSecurityGroupIngress" - -// AuthorizeSecurityGroupIngressRequest generates a "aws/request.Request" representing the -// client's request for the AuthorizeSecurityGroupIngress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AuthorizeSecurityGroupIngress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AuthorizeSecurityGroupIngressRequest method. -// req, resp := client.AuthorizeSecurityGroupIngressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) AuthorizeSecurityGroupIngressRequest(input *AuthorizeSecurityGroupIngressInput) (req *request.Request, output *AuthorizeSecurityGroupIngressOutput) { - op := &request.Operation{ - Name: opAuthorizeSecurityGroupIngress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AuthorizeSecurityGroupIngressInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &AuthorizeSecurityGroupIngressOutput{} - req.Data = output - return -} - -// Adds one or more ingress rules to a security group. -// -// EC2-Classic: You can have up to 100 rules per group. -// -// EC2-VPC: You can have up to 50 rules per group (covering both ingress and -// egress rules). -// -// Rule changes are propagated to instances within the security group as quickly -// as possible. However, a small delay might occur. -// -// [EC2-Classic] This action gives one or more CIDR IP address ranges permission -// to access a security group in your account, or gives one or more security -// groups (called the source groups) permission to access a security group for -// your account. A source group can be for your own AWS account, or another. -// -// [EC2-VPC] This action gives one or more CIDR IP address ranges permission -// to access a security group in your VPC, or gives one or more other security -// groups (called the source groups) permission to access a security group for -// your VPC. The security groups must all be for the same VPC. -func (c *EC2) AuthorizeSecurityGroupIngress(input *AuthorizeSecurityGroupIngressInput) (*AuthorizeSecurityGroupIngressOutput, error) { - req, out := c.AuthorizeSecurityGroupIngressRequest(input) - err := req.Send() - return out, err -} - -const opBundleInstance = "BundleInstance" - -// BundleInstanceRequest generates a "aws/request.Request" representing the -// client's request for the BundleInstance operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the BundleInstance method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the BundleInstanceRequest method. -// req, resp := client.BundleInstanceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) BundleInstanceRequest(input *BundleInstanceInput) (req *request.Request, output *BundleInstanceOutput) { - op := &request.Operation{ - Name: opBundleInstance, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &BundleInstanceInput{} - } - - req = c.newRequest(op, input, output) - output = &BundleInstanceOutput{} - req.Data = output - return -} - -// Bundles an Amazon instance store-backed Windows instance. -// -// During bundling, only the root device volume (C:\) is bundled. Data on other -// instance store volumes is not preserved. -// -// This action is not applicable for Linux/Unix instances or Windows instances -// that are backed by Amazon EBS. -// -// For more information, see Creating an Instance Store-Backed Windows AMI -// (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/Creating_InstanceStoreBacked_WinAMI.html). -func (c *EC2) BundleInstance(input *BundleInstanceInput) (*BundleInstanceOutput, error) { - req, out := c.BundleInstanceRequest(input) - err := req.Send() - return out, err -} - -const opCancelBundleTask = "CancelBundleTask" - -// CancelBundleTaskRequest generates a "aws/request.Request" representing the -// client's request for the CancelBundleTask operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelBundleTask method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelBundleTaskRequest method. -// req, resp := client.CancelBundleTaskRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CancelBundleTaskRequest(input *CancelBundleTaskInput) (req *request.Request, output *CancelBundleTaskOutput) { - op := &request.Operation{ - Name: opCancelBundleTask, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CancelBundleTaskInput{} - } - - req = c.newRequest(op, input, output) - output = &CancelBundleTaskOutput{} - req.Data = output - return -} - -// Cancels a bundling operation for an instance store-backed Windows instance. -func (c *EC2) CancelBundleTask(input *CancelBundleTaskInput) (*CancelBundleTaskOutput, error) { - req, out := c.CancelBundleTaskRequest(input) - err := req.Send() - return out, err -} - -const opCancelConversionTask = "CancelConversionTask" - -// CancelConversionTaskRequest generates a "aws/request.Request" representing the -// client's request for the CancelConversionTask operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelConversionTask method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelConversionTaskRequest method. -// req, resp := client.CancelConversionTaskRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CancelConversionTaskRequest(input *CancelConversionTaskInput) (req *request.Request, output *CancelConversionTaskOutput) { - op := &request.Operation{ - Name: opCancelConversionTask, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CancelConversionTaskInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &CancelConversionTaskOutput{} - req.Data = output - return -} - -// Cancels an active conversion task. The task can be the import of an instance -// or volume. The action removes all artifacts of the conversion, including -// a partially uploaded volume or instance. If the conversion is complete or -// is in the process of transferring the final disk image, the command fails -// and returns an exception. -// -// For more information, see Importing a Virtual Machine Using the Amazon EC2 -// CLI (http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/ec2-cli-vmimport-export.html). -func (c *EC2) CancelConversionTask(input *CancelConversionTaskInput) (*CancelConversionTaskOutput, error) { - req, out := c.CancelConversionTaskRequest(input) - err := req.Send() - return out, err -} - -const opCancelExportTask = "CancelExportTask" - -// CancelExportTaskRequest generates a "aws/request.Request" representing the -// client's request for the CancelExportTask operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelExportTask method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelExportTaskRequest method. -// req, resp := client.CancelExportTaskRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CancelExportTaskRequest(input *CancelExportTaskInput) (req *request.Request, output *CancelExportTaskOutput) { - op := &request.Operation{ - Name: opCancelExportTask, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CancelExportTaskInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &CancelExportTaskOutput{} - req.Data = output - return -} - -// Cancels an active export task. The request removes all artifacts of the export, -// including any partially-created Amazon S3 objects. If the export task is -// complete or is in the process of transferring the final disk image, the command -// fails and returns an error. -func (c *EC2) CancelExportTask(input *CancelExportTaskInput) (*CancelExportTaskOutput, error) { - req, out := c.CancelExportTaskRequest(input) - err := req.Send() - return out, err -} - -const opCancelImportTask = "CancelImportTask" - -// CancelImportTaskRequest generates a "aws/request.Request" representing the -// client's request for the CancelImportTask operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelImportTask method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelImportTaskRequest method. -// req, resp := client.CancelImportTaskRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CancelImportTaskRequest(input *CancelImportTaskInput) (req *request.Request, output *CancelImportTaskOutput) { - op := &request.Operation{ - Name: opCancelImportTask, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CancelImportTaskInput{} - } - - req = c.newRequest(op, input, output) - output = &CancelImportTaskOutput{} - req.Data = output - return -} - -// Cancels an in-process import virtual machine or import snapshot task. -func (c *EC2) CancelImportTask(input *CancelImportTaskInput) (*CancelImportTaskOutput, error) { - req, out := c.CancelImportTaskRequest(input) - err := req.Send() - return out, err -} - -const opCancelReservedInstancesListing = "CancelReservedInstancesListing" - -// CancelReservedInstancesListingRequest generates a "aws/request.Request" representing the -// client's request for the CancelReservedInstancesListing operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelReservedInstancesListing method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelReservedInstancesListingRequest method. -// req, resp := client.CancelReservedInstancesListingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CancelReservedInstancesListingRequest(input *CancelReservedInstancesListingInput) (req *request.Request, output *CancelReservedInstancesListingOutput) { - op := &request.Operation{ - Name: opCancelReservedInstancesListing, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CancelReservedInstancesListingInput{} - } - - req = c.newRequest(op, input, output) - output = &CancelReservedInstancesListingOutput{} - req.Data = output - return -} - -// Cancels the specified Reserved Instance listing in the Reserved Instance -// Marketplace. -// -// For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CancelReservedInstancesListing(input *CancelReservedInstancesListingInput) (*CancelReservedInstancesListingOutput, error) { - req, out := c.CancelReservedInstancesListingRequest(input) - err := req.Send() - return out, err -} - -const opCancelSpotFleetRequests = "CancelSpotFleetRequests" - -// CancelSpotFleetRequestsRequest generates a "aws/request.Request" representing the -// client's request for the CancelSpotFleetRequests operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelSpotFleetRequests method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelSpotFleetRequestsRequest method. -// req, resp := client.CancelSpotFleetRequestsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CancelSpotFleetRequestsRequest(input *CancelSpotFleetRequestsInput) (req *request.Request, output *CancelSpotFleetRequestsOutput) { - op := &request.Operation{ - Name: opCancelSpotFleetRequests, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CancelSpotFleetRequestsInput{} - } - - req = c.newRequest(op, input, output) - output = &CancelSpotFleetRequestsOutput{} - req.Data = output - return -} - -// Cancels the specified Spot fleet requests. -// -// After you cancel a Spot fleet request, the Spot fleet launches no new Spot -// instances. You must specify whether the Spot fleet should also terminate -// its Spot instances. If you terminate the instances, the Spot fleet request -// enters the cancelled_terminating state. Otherwise, the Spot fleet request -// enters the cancelled_running state and the instances continue to run until -// they are interrupted or you terminate them manually. -func (c *EC2) CancelSpotFleetRequests(input *CancelSpotFleetRequestsInput) (*CancelSpotFleetRequestsOutput, error) { - req, out := c.CancelSpotFleetRequestsRequest(input) - err := req.Send() - return out, err -} - -const opCancelSpotInstanceRequests = "CancelSpotInstanceRequests" - -// CancelSpotInstanceRequestsRequest generates a "aws/request.Request" representing the -// client's request for the CancelSpotInstanceRequests operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelSpotInstanceRequests method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelSpotInstanceRequestsRequest method. -// req, resp := client.CancelSpotInstanceRequestsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CancelSpotInstanceRequestsRequest(input *CancelSpotInstanceRequestsInput) (req *request.Request, output *CancelSpotInstanceRequestsOutput) { - op := &request.Operation{ - Name: opCancelSpotInstanceRequests, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CancelSpotInstanceRequestsInput{} - } - - req = c.newRequest(op, input, output) - output = &CancelSpotInstanceRequestsOutput{} - req.Data = output - return -} - -// Cancels one or more Spot instance requests. Spot instances are instances -// that Amazon EC2 starts on your behalf when the bid price that you specify -// exceeds the current Spot price. Amazon EC2 periodically sets the Spot price -// based on available Spot instance capacity and current Spot instance requests. -// For more information, see Spot Instance Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// Canceling a Spot instance request does not terminate running Spot instances -// associated with the request. -func (c *EC2) CancelSpotInstanceRequests(input *CancelSpotInstanceRequestsInput) (*CancelSpotInstanceRequestsOutput, error) { - req, out := c.CancelSpotInstanceRequestsRequest(input) - err := req.Send() - return out, err -} - -const opConfirmProductInstance = "ConfirmProductInstance" - -// ConfirmProductInstanceRequest generates a "aws/request.Request" representing the -// client's request for the ConfirmProductInstance operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ConfirmProductInstance method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ConfirmProductInstanceRequest method. -// req, resp := client.ConfirmProductInstanceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ConfirmProductInstanceRequest(input *ConfirmProductInstanceInput) (req *request.Request, output *ConfirmProductInstanceOutput) { - op := &request.Operation{ - Name: opConfirmProductInstance, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ConfirmProductInstanceInput{} - } - - req = c.newRequest(op, input, output) - output = &ConfirmProductInstanceOutput{} - req.Data = output - return -} - -// Determines whether a product code is associated with an instance. This action -// can only be used by the owner of the product code. It is useful when a product -// code owner needs to verify whether another user's instance is eligible for -// support. -func (c *EC2) ConfirmProductInstance(input *ConfirmProductInstanceInput) (*ConfirmProductInstanceOutput, error) { - req, out := c.ConfirmProductInstanceRequest(input) - err := req.Send() - return out, err -} - -const opCopyImage = "CopyImage" - -// CopyImageRequest generates a "aws/request.Request" representing the -// client's request for the CopyImage operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CopyImage method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CopyImageRequest method. -// req, resp := client.CopyImageRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CopyImageRequest(input *CopyImageInput) (req *request.Request, output *CopyImageOutput) { - op := &request.Operation{ - Name: opCopyImage, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CopyImageInput{} - } - - req = c.newRequest(op, input, output) - output = &CopyImageOutput{} - req.Data = output - return -} - -// Initiates the copy of an AMI from the specified source region to the current -// region. You specify the destination region by using its endpoint when making -// the request. -// -// For more information, see Copying AMIs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/CopyingAMIs.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CopyImage(input *CopyImageInput) (*CopyImageOutput, error) { - req, out := c.CopyImageRequest(input) - err := req.Send() - return out, err -} - -const opCopySnapshot = "CopySnapshot" - -// CopySnapshotRequest generates a "aws/request.Request" representing the -// client's request for the CopySnapshot operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CopySnapshot method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CopySnapshotRequest method. -// req, resp := client.CopySnapshotRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CopySnapshotRequest(input *CopySnapshotInput) (req *request.Request, output *CopySnapshotOutput) { - op := &request.Operation{ - Name: opCopySnapshot, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CopySnapshotInput{} - } - - req = c.newRequest(op, input, output) - output = &CopySnapshotOutput{} - req.Data = output - return -} - -// Copies a point-in-time snapshot of an EBS volume and stores it in Amazon -// S3. You can copy the snapshot within the same region or from one region to -// another. You can use the snapshot to create EBS volumes or Amazon Machine -// Images (AMIs). The snapshot is copied to the regional endpoint that you send -// the HTTP request to. -// -// Copies of encrypted EBS snapshots remain encrypted. Copies of unencrypted -// snapshots remain unencrypted, unless the Encrypted flag is specified during -// the snapshot copy operation. By default, encrypted snapshot copies use the -// default AWS Key Management Service (AWS KMS) customer master key (CMK); however, -// you can specify a non-default CMK with the KmsKeyId parameter. -// -// To copy an encrypted snapshot that has been shared from another account, -// you must have permissions for the CMK used to encrypt the snapshot. -// -// Snapshots created by the CopySnapshot action have an arbitrary volume -// ID that should not be used for any purpose. -// -// For more information, see Copying an Amazon EBS Snapshot (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-copy-snapshot.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CopySnapshot(input *CopySnapshotInput) (*CopySnapshotOutput, error) { - req, out := c.CopySnapshotRequest(input) - err := req.Send() - return out, err -} - -const opCreateCustomerGateway = "CreateCustomerGateway" - -// CreateCustomerGatewayRequest generates a "aws/request.Request" representing the -// client's request for the CreateCustomerGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateCustomerGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateCustomerGatewayRequest method. -// req, resp := client.CreateCustomerGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateCustomerGatewayRequest(input *CreateCustomerGatewayInput) (req *request.Request, output *CreateCustomerGatewayOutput) { - op := &request.Operation{ - Name: opCreateCustomerGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateCustomerGatewayInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateCustomerGatewayOutput{} - req.Data = output - return -} - -// Provides information to AWS about your VPN customer gateway device. The customer -// gateway is the appliance at your end of the VPN connection. (The device on -// the AWS side of the VPN connection is the virtual private gateway.) You must -// provide the Internet-routable IP address of the customer gateway's external -// interface. The IP address must be static and may be behind a device performing -// network address translation (NAT). -// -// For devices that use Border Gateway Protocol (BGP), you can also provide -// the device's BGP Autonomous System Number (ASN). You can use an existing -// ASN assigned to your network. If you don't have an ASN already, you can use -// a private ASN (in the 64512 - 65534 range). -// -// Amazon EC2 supports all 2-byte ASN numbers in the range of 1 - 65534, with -// the exception of 7224, which is reserved in the us-east-1 region, and 9059, -// which is reserved in the eu-west-1 region. -// -// For more information about VPN customer gateways, see Adding a Hardware -// Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -// -// You cannot create more than one customer gateway with the same VPN type, -// IP address, and BGP ASN parameter values. If you run an identical request -// more than one time, the first request creates the customer gateway, and subsequent -// requests return information about the existing customer gateway. The subsequent -// requests do not create new customer gateway resources. -func (c *EC2) CreateCustomerGateway(input *CreateCustomerGatewayInput) (*CreateCustomerGatewayOutput, error) { - req, out := c.CreateCustomerGatewayRequest(input) - err := req.Send() - return out, err -} - -const opCreateDhcpOptions = "CreateDhcpOptions" - -// CreateDhcpOptionsRequest generates a "aws/request.Request" representing the -// client's request for the CreateDhcpOptions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateDhcpOptions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateDhcpOptionsRequest method. -// req, resp := client.CreateDhcpOptionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateDhcpOptionsRequest(input *CreateDhcpOptionsInput) (req *request.Request, output *CreateDhcpOptionsOutput) { - op := &request.Operation{ - Name: opCreateDhcpOptions, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateDhcpOptionsInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateDhcpOptionsOutput{} - req.Data = output - return -} - -// Creates a set of DHCP options for your VPC. After creating the set, you must -// associate it with the VPC, causing all existing and new instances that you -// launch in the VPC to use this set of DHCP options. The following are the -// individual DHCP options you can specify. For more information about the options, -// see RFC 2132 (http://www.ietf.org/rfc/rfc2132.txt). -// -// domain-name-servers - The IP addresses of up to four domain name servers, -// or AmazonProvidedDNS. The default DHCP option set specifies AmazonProvidedDNS. -// If specifying more than one domain name server, specify the IP addresses -// in a single parameter, separated by commas. If you want your instance to -// receive a custom DNS hostname as specified in domain-name, you must set domain-name-servers -// to a custom DNS server. -// -// domain-name - If you're using AmazonProvidedDNS in "us-east-1", specify -// "ec2.internal". If you're using AmazonProvidedDNS in another region, specify -// "region.compute.internal" (for example, "ap-northeast-1.compute.internal"). -// Otherwise, specify a domain name (for example, "MyCompany.com"). This value -// is used to complete unqualified DNS hostnames. Important: Some Linux operating -// systems accept multiple domain names separated by spaces. However, Windows -// and other Linux operating systems treat the value as a single domain, which -// results in unexpected behavior. If your DHCP options set is associated with -// a VPC that has instances with multiple operating systems, specify only one -// domain name. -// -// ntp-servers - The IP addresses of up to four Network Time Protocol (NTP) -// servers. -// -// netbios-name-servers - The IP addresses of up to four NetBIOS name servers. -// -// netbios-node-type - The NetBIOS node type (1, 2, 4, or 8). We recommend -// that you specify 2 (broadcast and multicast are not currently supported). -// For more information about these node types, see RFC 2132 (http://www.ietf.org/rfc/rfc2132.txt). -// -// Your VPC automatically starts out with a set of DHCP options that includes -// only a DNS server that we provide (AmazonProvidedDNS). If you create a set -// of options, and if your VPC has an Internet gateway, make sure to set the -// domain-name-servers option either to AmazonProvidedDNS or to a domain name -// server of your choice. For more information about DHCP options, see DHCP -// Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateDhcpOptions(input *CreateDhcpOptionsInput) (*CreateDhcpOptionsOutput, error) { - req, out := c.CreateDhcpOptionsRequest(input) - err := req.Send() - return out, err -} - -const opCreateFlowLogs = "CreateFlowLogs" - -// CreateFlowLogsRequest generates a "aws/request.Request" representing the -// client's request for the CreateFlowLogs operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateFlowLogs method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateFlowLogsRequest method. -// req, resp := client.CreateFlowLogsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateFlowLogsRequest(input *CreateFlowLogsInput) (req *request.Request, output *CreateFlowLogsOutput) { - op := &request.Operation{ - Name: opCreateFlowLogs, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateFlowLogsInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateFlowLogsOutput{} - req.Data = output - return -} - -// Creates one or more flow logs to capture IP traffic for a specific network -// interface, subnet, or VPC. Flow logs are delivered to a specified log group -// in Amazon CloudWatch Logs. If you specify a VPC or subnet in the request, -// a log stream is created in CloudWatch Logs for each network interface in -// the subnet or VPC. Log streams can include information about accepted and -// rejected traffic to a network interface. You can view the data in your log -// streams using Amazon CloudWatch Logs. -// -// In your request, you must also specify an IAM role that has permission to -// publish logs to CloudWatch Logs. -func (c *EC2) CreateFlowLogs(input *CreateFlowLogsInput) (*CreateFlowLogsOutput, error) { - req, out := c.CreateFlowLogsRequest(input) - err := req.Send() - return out, err -} - -const opCreateImage = "CreateImage" - -// CreateImageRequest generates a "aws/request.Request" representing the -// client's request for the CreateImage operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateImage method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateImageRequest method. -// req, resp := client.CreateImageRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateImageRequest(input *CreateImageInput) (req *request.Request, output *CreateImageOutput) { - op := &request.Operation{ - Name: opCreateImage, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateImageInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateImageOutput{} - req.Data = output - return -} - -// Creates an Amazon EBS-backed AMI from an Amazon EBS-backed instance that -// is either running or stopped. -// -// If you customized your instance with instance store volumes or EBS volumes -// in addition to the root device volume, the new AMI contains block device -// mapping information for those volumes. When you launch an instance from this -// new AMI, the instance automatically launches with those additional volumes. -// -// For more information, see Creating Amazon EBS-Backed Linux AMIs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateImage(input *CreateImageInput) (*CreateImageOutput, error) { - req, out := c.CreateImageRequest(input) - err := req.Send() - return out, err -} - -const opCreateInstanceExportTask = "CreateInstanceExportTask" - -// CreateInstanceExportTaskRequest generates a "aws/request.Request" representing the -// client's request for the CreateInstanceExportTask operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateInstanceExportTask method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateInstanceExportTaskRequest method. -// req, resp := client.CreateInstanceExportTaskRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateInstanceExportTaskRequest(input *CreateInstanceExportTaskInput) (req *request.Request, output *CreateInstanceExportTaskOutput) { - op := &request.Operation{ - Name: opCreateInstanceExportTask, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateInstanceExportTaskInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateInstanceExportTaskOutput{} - req.Data = output - return -} - -// Exports a running or stopped instance to an S3 bucket. -// -// For information about the supported operating systems, image formats, and -// known limitations for the types of instances you can export, see Exporting -// an Instance as a VM Using VM Import/Export (http://docs.aws.amazon.com/vm-import/latest/userguide/vmexport.html) -// in the VM Import/Export User Guide. -func (c *EC2) CreateInstanceExportTask(input *CreateInstanceExportTaskInput) (*CreateInstanceExportTaskOutput, error) { - req, out := c.CreateInstanceExportTaskRequest(input) - err := req.Send() - return out, err -} - -const opCreateInternetGateway = "CreateInternetGateway" - -// CreateInternetGatewayRequest generates a "aws/request.Request" representing the -// client's request for the CreateInternetGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateInternetGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateInternetGatewayRequest method. -// req, resp := client.CreateInternetGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateInternetGatewayRequest(input *CreateInternetGatewayInput) (req *request.Request, output *CreateInternetGatewayOutput) { - op := &request.Operation{ - Name: opCreateInternetGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateInternetGatewayInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateInternetGatewayOutput{} - req.Data = output - return -} - -// Creates an Internet gateway for use with a VPC. After creating the Internet -// gateway, you attach it to a VPC using AttachInternetGateway. -// -// For more information about your VPC and Internet gateway, see the Amazon -// Virtual Private Cloud User Guide (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/). -func (c *EC2) CreateInternetGateway(input *CreateInternetGatewayInput) (*CreateInternetGatewayOutput, error) { - req, out := c.CreateInternetGatewayRequest(input) - err := req.Send() - return out, err -} - -const opCreateKeyPair = "CreateKeyPair" - -// CreateKeyPairRequest generates a "aws/request.Request" representing the -// client's request for the CreateKeyPair operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateKeyPair method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateKeyPairRequest method. -// req, resp := client.CreateKeyPairRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateKeyPairRequest(input *CreateKeyPairInput) (req *request.Request, output *CreateKeyPairOutput) { - op := &request.Operation{ - Name: opCreateKeyPair, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateKeyPairInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateKeyPairOutput{} - req.Data = output - return -} - -// Creates a 2048-bit RSA key pair with the specified name. Amazon EC2 stores -// the public key and displays the private key for you to save to a file. The -// private key is returned as an unencrypted PEM encoded PKCS#8 private key. -// If a key with the specified name already exists, Amazon EC2 returns an error. -// -// You can have up to five thousand key pairs per region. -// -// The key pair returned to you is available only in the region in which you -// create it. To create a key pair that is available in all regions, use ImportKeyPair. -// -// For more information about key pairs, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateKeyPair(input *CreateKeyPairInput) (*CreateKeyPairOutput, error) { - req, out := c.CreateKeyPairRequest(input) - err := req.Send() - return out, err -} - -const opCreateNatGateway = "CreateNatGateway" - -// CreateNatGatewayRequest generates a "aws/request.Request" representing the -// client's request for the CreateNatGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateNatGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateNatGatewayRequest method. -// req, resp := client.CreateNatGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateNatGatewayRequest(input *CreateNatGatewayInput) (req *request.Request, output *CreateNatGatewayOutput) { - op := &request.Operation{ - Name: opCreateNatGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateNatGatewayInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateNatGatewayOutput{} - req.Data = output - return -} - -// Creates a NAT gateway in the specified subnet. A NAT gateway can be used -// to enable instances in a private subnet to connect to the Internet. This -// action creates a network interface in the specified subnet with a private -// IP address from the IP address range of the subnet. For more information, -// see NAT Gateways (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateNatGateway(input *CreateNatGatewayInput) (*CreateNatGatewayOutput, error) { - req, out := c.CreateNatGatewayRequest(input) - err := req.Send() - return out, err -} - -const opCreateNetworkAcl = "CreateNetworkAcl" - -// CreateNetworkAclRequest generates a "aws/request.Request" representing the -// client's request for the CreateNetworkAcl operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateNetworkAcl method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateNetworkAclRequest method. -// req, resp := client.CreateNetworkAclRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateNetworkAclRequest(input *CreateNetworkAclInput) (req *request.Request, output *CreateNetworkAclOutput) { - op := &request.Operation{ - Name: opCreateNetworkAcl, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateNetworkAclInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateNetworkAclOutput{} - req.Data = output - return -} - -// Creates a network ACL in a VPC. Network ACLs provide an optional layer of -// security (in addition to security groups) for the instances in your VPC. -// -// For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateNetworkAcl(input *CreateNetworkAclInput) (*CreateNetworkAclOutput, error) { - req, out := c.CreateNetworkAclRequest(input) - err := req.Send() - return out, err -} - -const opCreateNetworkAclEntry = "CreateNetworkAclEntry" - -// CreateNetworkAclEntryRequest generates a "aws/request.Request" representing the -// client's request for the CreateNetworkAclEntry operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateNetworkAclEntry method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateNetworkAclEntryRequest method. -// req, resp := client.CreateNetworkAclEntryRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateNetworkAclEntryRequest(input *CreateNetworkAclEntryInput) (req *request.Request, output *CreateNetworkAclEntryOutput) { - op := &request.Operation{ - Name: opCreateNetworkAclEntry, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateNetworkAclEntryInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &CreateNetworkAclEntryOutput{} - req.Data = output - return -} - -// Creates an entry (a rule) in a network ACL with the specified rule number. -// Each network ACL has a set of numbered ingress rules and a separate set of -// numbered egress rules. When determining whether a packet should be allowed -// in or out of a subnet associated with the ACL, we process the entries in -// the ACL according to the rule numbers, in ascending order. Each network ACL -// has a set of ingress rules and a separate set of egress rules. -// -// We recommend that you leave room between the rule numbers (for example, -// 100, 110, 120, ...), and not number them one right after the other (for example, -// 101, 102, 103, ...). This makes it easier to add a rule between existing -// ones without having to renumber the rules. -// -// After you add an entry, you can't modify it; you must either replace it, -// or create an entry and delete the old one. -// -// For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateNetworkAclEntry(input *CreateNetworkAclEntryInput) (*CreateNetworkAclEntryOutput, error) { - req, out := c.CreateNetworkAclEntryRequest(input) - err := req.Send() - return out, err -} - -const opCreateNetworkInterface = "CreateNetworkInterface" - -// CreateNetworkInterfaceRequest generates a "aws/request.Request" representing the -// client's request for the CreateNetworkInterface operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateNetworkInterface method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateNetworkInterfaceRequest method. -// req, resp := client.CreateNetworkInterfaceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateNetworkInterfaceRequest(input *CreateNetworkInterfaceInput) (req *request.Request, output *CreateNetworkInterfaceOutput) { - op := &request.Operation{ - Name: opCreateNetworkInterface, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateNetworkInterfaceInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateNetworkInterfaceOutput{} - req.Data = output - return -} - -// Creates a network interface in the specified subnet. -// -// For more information about network interfaces, see Elastic Network Interfaces -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html) in the -// Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateNetworkInterface(input *CreateNetworkInterfaceInput) (*CreateNetworkInterfaceOutput, error) { - req, out := c.CreateNetworkInterfaceRequest(input) - err := req.Send() - return out, err -} - -const opCreatePlacementGroup = "CreatePlacementGroup" - -// CreatePlacementGroupRequest generates a "aws/request.Request" representing the -// client's request for the CreatePlacementGroup operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreatePlacementGroup method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreatePlacementGroupRequest method. -// req, resp := client.CreatePlacementGroupRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreatePlacementGroupRequest(input *CreatePlacementGroupInput) (req *request.Request, output *CreatePlacementGroupOutput) { - op := &request.Operation{ - Name: opCreatePlacementGroup, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreatePlacementGroupInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &CreatePlacementGroupOutput{} - req.Data = output - return -} - -// Creates a placement group that you launch cluster instances into. You must -// give the group a name that's unique within the scope of your account. -// -// For more information about placement groups and cluster instances, see Cluster -// Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using_cluster_computing.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreatePlacementGroup(input *CreatePlacementGroupInput) (*CreatePlacementGroupOutput, error) { - req, out := c.CreatePlacementGroupRequest(input) - err := req.Send() - return out, err -} - -const opCreateReservedInstancesListing = "CreateReservedInstancesListing" - -// CreateReservedInstancesListingRequest generates a "aws/request.Request" representing the -// client's request for the CreateReservedInstancesListing operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateReservedInstancesListing method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateReservedInstancesListingRequest method. -// req, resp := client.CreateReservedInstancesListingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateReservedInstancesListingRequest(input *CreateReservedInstancesListingInput) (req *request.Request, output *CreateReservedInstancesListingOutput) { - op := &request.Operation{ - Name: opCreateReservedInstancesListing, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateReservedInstancesListingInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateReservedInstancesListingOutput{} - req.Data = output - return -} - -// Creates a listing for Amazon EC2 Standard Reserved Instances to be sold in -// the Reserved Instance Marketplace. You can submit one Standard Reserved Instance -// listing at a time. To get a list of your Standard Reserved Instances, you -// can use the DescribeReservedInstances operation. -// -// The Reserved Instance Marketplace matches sellers who want to resell Standard -// Reserved Instance capacity that they no longer need with buyers who want -// to purchase additional capacity. Reserved Instances bought and sold through -// the Reserved Instance Marketplace work like any other Reserved Instances. -// -// To sell your Standard Reserved Instances, you must first register as a seller -// in the Reserved Instance Marketplace. After completing the registration process, -// you can create a Reserved Instance Marketplace listing of some or all of -// your Standard Reserved Instances, and specify the upfront price to receive -// for them. Your Standard Reserved Instance listings then become available -// for purchase. To view the details of your Standard Reserved Instance listing, -// you can use the DescribeReservedInstancesListings operation. -// -// For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateReservedInstancesListing(input *CreateReservedInstancesListingInput) (*CreateReservedInstancesListingOutput, error) { - req, out := c.CreateReservedInstancesListingRequest(input) - err := req.Send() - return out, err -} - -const opCreateRoute = "CreateRoute" - -// CreateRouteRequest generates a "aws/request.Request" representing the -// client's request for the CreateRoute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateRoute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateRouteRequest method. -// req, resp := client.CreateRouteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateRouteRequest(input *CreateRouteInput) (req *request.Request, output *CreateRouteOutput) { - op := &request.Operation{ - Name: opCreateRoute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateRouteInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateRouteOutput{} - req.Data = output - return -} - -// Creates a route in a route table within a VPC. -// -// You must specify one of the following targets: Internet gateway or virtual -// private gateway, NAT instance, NAT gateway, VPC peering connection, or network -// interface. -// -// When determining how to route traffic, we use the route with the most specific -// match. For example, let's say the traffic is destined for 192.0.2.3, and -// the route table includes the following two routes: -// -// 192.0.2.0/24 (goes to some target A) -// -// 192.0.2.0/28 (goes to some target B) -// -// Both routes apply to the traffic destined for 192.0.2.3. However, the -// second route in the list covers a smaller number of IP addresses and is therefore -// more specific, so we use that route to determine where to target the traffic. -// -// For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateRoute(input *CreateRouteInput) (*CreateRouteOutput, error) { - req, out := c.CreateRouteRequest(input) - err := req.Send() - return out, err -} - -const opCreateRouteTable = "CreateRouteTable" - -// CreateRouteTableRequest generates a "aws/request.Request" representing the -// client's request for the CreateRouteTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateRouteTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateRouteTableRequest method. -// req, resp := client.CreateRouteTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateRouteTableRequest(input *CreateRouteTableInput) (req *request.Request, output *CreateRouteTableOutput) { - op := &request.Operation{ - Name: opCreateRouteTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateRouteTableInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateRouteTableOutput{} - req.Data = output - return -} - -// Creates a route table for the specified VPC. After you create a route table, -// you can add routes and associate the table with a subnet. -// -// For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateRouteTable(input *CreateRouteTableInput) (*CreateRouteTableOutput, error) { - req, out := c.CreateRouteTableRequest(input) - err := req.Send() - return out, err -} - -const opCreateSecurityGroup = "CreateSecurityGroup" - -// CreateSecurityGroupRequest generates a "aws/request.Request" representing the -// client's request for the CreateSecurityGroup operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateSecurityGroup method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateSecurityGroupRequest method. -// req, resp := client.CreateSecurityGroupRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateSecurityGroupRequest(input *CreateSecurityGroupInput) (req *request.Request, output *CreateSecurityGroupOutput) { - op := &request.Operation{ - Name: opCreateSecurityGroup, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateSecurityGroupInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateSecurityGroupOutput{} - req.Data = output - return -} - -// Creates a security group. -// -// A security group is for use with instances either in the EC2-Classic platform -// or in a specific VPC. For more information, see Amazon EC2 Security Groups -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) -// in the Amazon Elastic Compute Cloud User Guide and Security Groups for Your -// VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html) -// in the Amazon Virtual Private Cloud User Guide. -// -// EC2-Classic: You can have up to 500 security groups. -// -// EC2-VPC: You can create up to 500 security groups per VPC. -// -// When you create a security group, you specify a friendly name of your choice. -// You can have a security group for use in EC2-Classic with the same name as -// a security group for use in a VPC. However, you can't have two security groups -// for use in EC2-Classic with the same name or two security groups for use -// in a VPC with the same name. -// -// You have a default security group for use in EC2-Classic and a default security -// group for use in your VPC. If you don't specify a security group when you -// launch an instance, the instance is launched into the appropriate default -// security group. A default security group includes a default rule that grants -// instances unrestricted network access to each other. -// -// You can add or remove rules from your security groups using AuthorizeSecurityGroupIngress, -// AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress, and RevokeSecurityGroupEgress. -func (c *EC2) CreateSecurityGroup(input *CreateSecurityGroupInput) (*CreateSecurityGroupOutput, error) { - req, out := c.CreateSecurityGroupRequest(input) - err := req.Send() - return out, err -} - -const opCreateSnapshot = "CreateSnapshot" - -// CreateSnapshotRequest generates a "aws/request.Request" representing the -// client's request for the CreateSnapshot operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateSnapshot method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateSnapshotRequest method. -// req, resp := client.CreateSnapshotRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateSnapshotRequest(input *CreateSnapshotInput) (req *request.Request, output *Snapshot) { - op := &request.Operation{ - Name: opCreateSnapshot, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateSnapshotInput{} - } - - req = c.newRequest(op, input, output) - output = &Snapshot{} - req.Data = output - return -} - -// Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use -// snapshots for backups, to make copies of EBS volumes, and to save data before -// shutting down an instance. -// -// When a snapshot is created, any AWS Marketplace product codes that are associated -// with the source volume are propagated to the snapshot. -// -// You can take a snapshot of an attached volume that is in use. However, snapshots -// only capture data that has been written to your EBS volume at the time the -// snapshot command is issued; this may exclude any data that has been cached -// by any applications or the operating system. If you can pause any file systems -// on the volume long enough to take a snapshot, your snapshot should be complete. -// However, if you cannot pause all file writes to the volume, you should unmount -// the volume from within the instance, issue the snapshot command, and then -// remount the volume to ensure a consistent and complete snapshot. You may -// remount and use your volume while the snapshot status is pending. -// -// To create a snapshot for EBS volumes that serve as root devices, you should -// stop the instance before taking the snapshot. -// -// Snapshots that are taken from encrypted volumes are automatically encrypted. -// Volumes that are created from encrypted snapshots are also automatically -// encrypted. Your encrypted volumes and any associated snapshots always remain -// protected. -// -// For more information, see Amazon Elastic Block Store (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AmazonEBS.html) -// and Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateSnapshot(input *CreateSnapshotInput) (*Snapshot, error) { - req, out := c.CreateSnapshotRequest(input) - err := req.Send() - return out, err -} - -const opCreateSpotDatafeedSubscription = "CreateSpotDatafeedSubscription" - -// CreateSpotDatafeedSubscriptionRequest generates a "aws/request.Request" representing the -// client's request for the CreateSpotDatafeedSubscription operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateSpotDatafeedSubscription method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateSpotDatafeedSubscriptionRequest method. -// req, resp := client.CreateSpotDatafeedSubscriptionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateSpotDatafeedSubscriptionRequest(input *CreateSpotDatafeedSubscriptionInput) (req *request.Request, output *CreateSpotDatafeedSubscriptionOutput) { - op := &request.Operation{ - Name: opCreateSpotDatafeedSubscription, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateSpotDatafeedSubscriptionInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateSpotDatafeedSubscriptionOutput{} - req.Data = output - return -} - -// Creates a data feed for Spot instances, enabling you to view Spot instance -// usage logs. You can create one data feed per AWS account. For more information, -// see Spot Instance Data Feed (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-data-feeds.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateSpotDatafeedSubscription(input *CreateSpotDatafeedSubscriptionInput) (*CreateSpotDatafeedSubscriptionOutput, error) { - req, out := c.CreateSpotDatafeedSubscriptionRequest(input) - err := req.Send() - return out, err -} - -const opCreateSubnet = "CreateSubnet" - -// CreateSubnetRequest generates a "aws/request.Request" representing the -// client's request for the CreateSubnet operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateSubnet method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateSubnetRequest method. -// req, resp := client.CreateSubnetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateSubnetRequest(input *CreateSubnetInput) (req *request.Request, output *CreateSubnetOutput) { - op := &request.Operation{ - Name: opCreateSubnet, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateSubnetInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateSubnetOutput{} - req.Data = output - return -} - -// Creates a subnet in an existing VPC. -// -// When you create each subnet, you provide the VPC ID and the CIDR block you -// want for the subnet. After you create a subnet, you can't change its CIDR -// block. The subnet's CIDR block can be the same as the VPC's CIDR block (assuming -// you want only a single subnet in the VPC), or a subset of the VPC's CIDR -// block. If you create more than one subnet in a VPC, the subnets' CIDR blocks -// must not overlap. The smallest subnet (and VPC) you can create uses a /28 -// netmask (16 IP addresses), and the largest uses a /16 netmask (65,536 IP -// addresses). -// -// AWS reserves both the first four and the last IP address in each subnet's -// CIDR block. They're not available for use. -// -// If you add more than one subnet to a VPC, they're set up in a star topology -// with a logical router in the middle. -// -// If you launch an instance in a VPC using an Amazon EBS-backed AMI, the IP -// address doesn't change if you stop and restart the instance (unlike a similar -// instance launched outside a VPC, which gets a new IP address when restarted). -// It's therefore possible to have a subnet with no running instances (they're -// all stopped), but no remaining IP addresses available. -// -// For more information about subnets, see Your VPC and Subnets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateSubnet(input *CreateSubnetInput) (*CreateSubnetOutput, error) { - req, out := c.CreateSubnetRequest(input) - err := req.Send() - return out, err -} - -const opCreateTags = "CreateTags" - -// CreateTagsRequest generates a "aws/request.Request" representing the -// client's request for the CreateTags operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateTags method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateTagsRequest method. -// req, resp := client.CreateTagsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateTagsRequest(input *CreateTagsInput) (req *request.Request, output *CreateTagsOutput) { - op := &request.Operation{ - Name: opCreateTags, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateTagsInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &CreateTagsOutput{} - req.Data = output - return -} - -// Adds or overwrites one or more tags for the specified Amazon EC2 resource -// or resources. Each resource can have a maximum of 50 tags. Each tag consists -// of a key and optional value. Tag keys must be unique per resource. -// -// For more information about tags, see Tagging Your Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) -// in the Amazon Elastic Compute Cloud User Guide. For more information about -// creating IAM policies that control users' access to resources based on tags, -// see Supported Resource-Level Permissions for Amazon EC2 API Actions (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-supported-iam-actions-resources.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateTags(input *CreateTagsInput) (*CreateTagsOutput, error) { - req, out := c.CreateTagsRequest(input) - err := req.Send() - return out, err -} - -const opCreateVolume = "CreateVolume" - -// CreateVolumeRequest generates a "aws/request.Request" representing the -// client's request for the CreateVolume operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateVolume method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateVolumeRequest method. -// req, resp := client.CreateVolumeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateVolumeRequest(input *CreateVolumeInput) (req *request.Request, output *Volume) { - op := &request.Operation{ - Name: opCreateVolume, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateVolumeInput{} - } - - req = c.newRequest(op, input, output) - output = &Volume{} - req.Data = output - return -} - -// Creates an EBS volume that can be attached to an instance in the same Availability -// Zone. The volume is created in the regional endpoint that you send the HTTP -// request to. For more information see Regions and Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html). -// -// You can create a new empty volume or restore a volume from an EBS snapshot. -// Any AWS Marketplace product codes from the snapshot are propagated to the -// volume. -// -// You can create encrypted volumes with the Encrypted parameter. Encrypted -// volumes may only be attached to instances that support Amazon EBS encryption. -// Volumes that are created from encrypted snapshots are also automatically -// encrypted. For more information, see Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// For more information, see Creating or Restoring an Amazon EBS Volume (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-creating-volume.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) CreateVolume(input *CreateVolumeInput) (*Volume, error) { - req, out := c.CreateVolumeRequest(input) - err := req.Send() - return out, err -} - -const opCreateVpc = "CreateVpc" - -// CreateVpcRequest generates a "aws/request.Request" representing the -// client's request for the CreateVpc operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateVpc method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateVpcRequest method. -// req, resp := client.CreateVpcRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateVpcRequest(input *CreateVpcInput) (req *request.Request, output *CreateVpcOutput) { - op := &request.Operation{ - Name: opCreateVpc, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateVpcInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateVpcOutput{} - req.Data = output - return -} - -// Creates a VPC with the specified CIDR block. -// -// The smallest VPC you can create uses a /28 netmask (16 IP addresses), and -// the largest uses a /16 netmask (65,536 IP addresses). To help you decide -// how big to make your VPC, see Your VPC and Subnets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html) -// in the Amazon Virtual Private Cloud User Guide. -// -// By default, each instance you launch in the VPC has the default DHCP options, -// which includes only a default DNS server that we provide (AmazonProvidedDNS). -// For more information about DHCP options, see DHCP Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) -// in the Amazon Virtual Private Cloud User Guide. -// -// You can specify the instance tenancy value for the VPC when you create it. -// You can't change this value for the VPC after you create it. For more information, -// see Dedicated Instances (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/dedicated-instance.html.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateVpc(input *CreateVpcInput) (*CreateVpcOutput, error) { - req, out := c.CreateVpcRequest(input) - err := req.Send() - return out, err -} - -const opCreateVpcEndpoint = "CreateVpcEndpoint" - -// CreateVpcEndpointRequest generates a "aws/request.Request" representing the -// client's request for the CreateVpcEndpoint operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateVpcEndpoint method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateVpcEndpointRequest method. -// req, resp := client.CreateVpcEndpointRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateVpcEndpointRequest(input *CreateVpcEndpointInput) (req *request.Request, output *CreateVpcEndpointOutput) { - op := &request.Operation{ - Name: opCreateVpcEndpoint, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateVpcEndpointInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateVpcEndpointOutput{} - req.Data = output - return -} - -// Creates a VPC endpoint for a specified AWS service. An endpoint enables you -// to create a private connection between your VPC and another AWS service in -// your account. You can specify an endpoint policy to attach to the endpoint -// that will control access to the service from your VPC. You can also specify -// the VPC route tables that use the endpoint. -// -// Currently, only endpoints to Amazon S3 are supported. -func (c *EC2) CreateVpcEndpoint(input *CreateVpcEndpointInput) (*CreateVpcEndpointOutput, error) { - req, out := c.CreateVpcEndpointRequest(input) - err := req.Send() - return out, err -} - -const opCreateVpcPeeringConnection = "CreateVpcPeeringConnection" - -// CreateVpcPeeringConnectionRequest generates a "aws/request.Request" representing the -// client's request for the CreateVpcPeeringConnection operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateVpcPeeringConnection method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateVpcPeeringConnectionRequest method. -// req, resp := client.CreateVpcPeeringConnectionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateVpcPeeringConnectionRequest(input *CreateVpcPeeringConnectionInput) (req *request.Request, output *CreateVpcPeeringConnectionOutput) { - op := &request.Operation{ - Name: opCreateVpcPeeringConnection, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateVpcPeeringConnectionInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateVpcPeeringConnectionOutput{} - req.Data = output - return -} - -// Requests a VPC peering connection between two VPCs: a requester VPC that -// you own and a peer VPC with which to create the connection. The peer VPC -// can belong to another AWS account. The requester VPC and peer VPC cannot -// have overlapping CIDR blocks. -// -// The owner of the peer VPC must accept the peering request to activate the -// peering connection. The VPC peering connection request expires after 7 days, -// after which it cannot be accepted or rejected. -// -// A CreateVpcPeeringConnection request between VPCs with overlapping CIDR -// blocks results in the VPC peering connection having a status of failed. -func (c *EC2) CreateVpcPeeringConnection(input *CreateVpcPeeringConnectionInput) (*CreateVpcPeeringConnectionOutput, error) { - req, out := c.CreateVpcPeeringConnectionRequest(input) - err := req.Send() - return out, err -} - -const opCreateVpnConnection = "CreateVpnConnection" - -// CreateVpnConnectionRequest generates a "aws/request.Request" representing the -// client's request for the CreateVpnConnection operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateVpnConnection method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateVpnConnectionRequest method. -// req, resp := client.CreateVpnConnectionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateVpnConnectionRequest(input *CreateVpnConnectionInput) (req *request.Request, output *CreateVpnConnectionOutput) { - op := &request.Operation{ - Name: opCreateVpnConnection, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateVpnConnectionInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateVpnConnectionOutput{} - req.Data = output - return -} - -// Creates a VPN connection between an existing virtual private gateway and -// a VPN customer gateway. The only supported connection type is ipsec.1. -// -// The response includes information that you need to give to your network -// administrator to configure your customer gateway. -// -// We strongly recommend that you use HTTPS when calling this operation because -// the response contains sensitive cryptographic information for configuring -// your customer gateway. -// -// If you decide to shut down your VPN connection for any reason and later -// create a new VPN connection, you must reconfigure your customer gateway with -// the new information returned from this call. -// -// This is an idempotent operation. If you perform the operation more than -// once, Amazon EC2 doesn't return an error. -// -// For more information about VPN connections, see Adding a Hardware Virtual -// Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateVpnConnection(input *CreateVpnConnectionInput) (*CreateVpnConnectionOutput, error) { - req, out := c.CreateVpnConnectionRequest(input) - err := req.Send() - return out, err -} - -const opCreateVpnConnectionRoute = "CreateVpnConnectionRoute" - -// CreateVpnConnectionRouteRequest generates a "aws/request.Request" representing the -// client's request for the CreateVpnConnectionRoute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateVpnConnectionRoute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateVpnConnectionRouteRequest method. -// req, resp := client.CreateVpnConnectionRouteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateVpnConnectionRouteRequest(input *CreateVpnConnectionRouteInput) (req *request.Request, output *CreateVpnConnectionRouteOutput) { - op := &request.Operation{ - Name: opCreateVpnConnectionRoute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateVpnConnectionRouteInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &CreateVpnConnectionRouteOutput{} - req.Data = output - return -} - -// Creates a static route associated with a VPN connection between an existing -// virtual private gateway and a VPN customer gateway. The static route allows -// traffic to be routed from the virtual private gateway to the VPN customer -// gateway. -// -// For more information about VPN connections, see Adding a Hardware Virtual -// Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateVpnConnectionRoute(input *CreateVpnConnectionRouteInput) (*CreateVpnConnectionRouteOutput, error) { - req, out := c.CreateVpnConnectionRouteRequest(input) - err := req.Send() - return out, err -} - -const opCreateVpnGateway = "CreateVpnGateway" - -// CreateVpnGatewayRequest generates a "aws/request.Request" representing the -// client's request for the CreateVpnGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateVpnGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateVpnGatewayRequest method. -// req, resp := client.CreateVpnGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) CreateVpnGatewayRequest(input *CreateVpnGatewayInput) (req *request.Request, output *CreateVpnGatewayOutput) { - op := &request.Operation{ - Name: opCreateVpnGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateVpnGatewayInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateVpnGatewayOutput{} - req.Data = output - return -} - -// Creates a virtual private gateway. A virtual private gateway is the endpoint -// on the VPC side of your VPN connection. You can create a virtual private -// gateway before creating the VPC itself. -// -// For more information about virtual private gateways, see Adding a Hardware -// Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) CreateVpnGateway(input *CreateVpnGatewayInput) (*CreateVpnGatewayOutput, error) { - req, out := c.CreateVpnGatewayRequest(input) - err := req.Send() - return out, err -} - -const opDeleteCustomerGateway = "DeleteCustomerGateway" - -// DeleteCustomerGatewayRequest generates a "aws/request.Request" representing the -// client's request for the DeleteCustomerGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteCustomerGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteCustomerGatewayRequest method. -// req, resp := client.DeleteCustomerGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteCustomerGatewayRequest(input *DeleteCustomerGatewayInput) (req *request.Request, output *DeleteCustomerGatewayOutput) { - op := &request.Operation{ - Name: opDeleteCustomerGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteCustomerGatewayInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteCustomerGatewayOutput{} - req.Data = output - return -} - -// Deletes the specified customer gateway. You must delete the VPN connection -// before you can delete the customer gateway. -func (c *EC2) DeleteCustomerGateway(input *DeleteCustomerGatewayInput) (*DeleteCustomerGatewayOutput, error) { - req, out := c.DeleteCustomerGatewayRequest(input) - err := req.Send() - return out, err -} - -const opDeleteDhcpOptions = "DeleteDhcpOptions" - -// DeleteDhcpOptionsRequest generates a "aws/request.Request" representing the -// client's request for the DeleteDhcpOptions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteDhcpOptions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteDhcpOptionsRequest method. -// req, resp := client.DeleteDhcpOptionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteDhcpOptionsRequest(input *DeleteDhcpOptionsInput) (req *request.Request, output *DeleteDhcpOptionsOutput) { - op := &request.Operation{ - Name: opDeleteDhcpOptions, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteDhcpOptionsInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteDhcpOptionsOutput{} - req.Data = output - return -} - -// Deletes the specified set of DHCP options. You must disassociate the set -// of DHCP options before you can delete it. You can disassociate the set of -// DHCP options by associating either a new set of options or the default set -// of options with the VPC. -func (c *EC2) DeleteDhcpOptions(input *DeleteDhcpOptionsInput) (*DeleteDhcpOptionsOutput, error) { - req, out := c.DeleteDhcpOptionsRequest(input) - err := req.Send() - return out, err -} - -const opDeleteFlowLogs = "DeleteFlowLogs" - -// DeleteFlowLogsRequest generates a "aws/request.Request" representing the -// client's request for the DeleteFlowLogs operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteFlowLogs method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteFlowLogsRequest method. -// req, resp := client.DeleteFlowLogsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteFlowLogsRequest(input *DeleteFlowLogsInput) (req *request.Request, output *DeleteFlowLogsOutput) { - op := &request.Operation{ - Name: opDeleteFlowLogs, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteFlowLogsInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteFlowLogsOutput{} - req.Data = output - return -} - -// Deletes one or more flow logs. -func (c *EC2) DeleteFlowLogs(input *DeleteFlowLogsInput) (*DeleteFlowLogsOutput, error) { - req, out := c.DeleteFlowLogsRequest(input) - err := req.Send() - return out, err -} - -const opDeleteInternetGateway = "DeleteInternetGateway" - -// DeleteInternetGatewayRequest generates a "aws/request.Request" representing the -// client's request for the DeleteInternetGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteInternetGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteInternetGatewayRequest method. -// req, resp := client.DeleteInternetGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteInternetGatewayRequest(input *DeleteInternetGatewayInput) (req *request.Request, output *DeleteInternetGatewayOutput) { - op := &request.Operation{ - Name: opDeleteInternetGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteInternetGatewayInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteInternetGatewayOutput{} - req.Data = output - return -} - -// Deletes the specified Internet gateway. You must detach the Internet gateway -// from the VPC before you can delete it. -func (c *EC2) DeleteInternetGateway(input *DeleteInternetGatewayInput) (*DeleteInternetGatewayOutput, error) { - req, out := c.DeleteInternetGatewayRequest(input) - err := req.Send() - return out, err -} - -const opDeleteKeyPair = "DeleteKeyPair" - -// DeleteKeyPairRequest generates a "aws/request.Request" representing the -// client's request for the DeleteKeyPair operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteKeyPair method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteKeyPairRequest method. -// req, resp := client.DeleteKeyPairRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteKeyPairRequest(input *DeleteKeyPairInput) (req *request.Request, output *DeleteKeyPairOutput) { - op := &request.Operation{ - Name: opDeleteKeyPair, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteKeyPairInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteKeyPairOutput{} - req.Data = output - return -} - -// Deletes the specified key pair, by removing the public key from Amazon EC2. -func (c *EC2) DeleteKeyPair(input *DeleteKeyPairInput) (*DeleteKeyPairOutput, error) { - req, out := c.DeleteKeyPairRequest(input) - err := req.Send() - return out, err -} - -const opDeleteNatGateway = "DeleteNatGateway" - -// DeleteNatGatewayRequest generates a "aws/request.Request" representing the -// client's request for the DeleteNatGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteNatGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteNatGatewayRequest method. -// req, resp := client.DeleteNatGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteNatGatewayRequest(input *DeleteNatGatewayInput) (req *request.Request, output *DeleteNatGatewayOutput) { - op := &request.Operation{ - Name: opDeleteNatGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteNatGatewayInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteNatGatewayOutput{} - req.Data = output - return -} - -// Deletes the specified NAT gateway. Deleting a NAT gateway disassociates its -// Elastic IP address, but does not release the address from your account. Deleting -// a NAT gateway does not delete any NAT gateway routes in your route tables. -func (c *EC2) DeleteNatGateway(input *DeleteNatGatewayInput) (*DeleteNatGatewayOutput, error) { - req, out := c.DeleteNatGatewayRequest(input) - err := req.Send() - return out, err -} - -const opDeleteNetworkAcl = "DeleteNetworkAcl" - -// DeleteNetworkAclRequest generates a "aws/request.Request" representing the -// client's request for the DeleteNetworkAcl operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteNetworkAcl method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteNetworkAclRequest method. -// req, resp := client.DeleteNetworkAclRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteNetworkAclRequest(input *DeleteNetworkAclInput) (req *request.Request, output *DeleteNetworkAclOutput) { - op := &request.Operation{ - Name: opDeleteNetworkAcl, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteNetworkAclInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteNetworkAclOutput{} - req.Data = output - return -} - -// Deletes the specified network ACL. You can't delete the ACL if it's associated -// with any subnets. You can't delete the default network ACL. -func (c *EC2) DeleteNetworkAcl(input *DeleteNetworkAclInput) (*DeleteNetworkAclOutput, error) { - req, out := c.DeleteNetworkAclRequest(input) - err := req.Send() - return out, err -} - -const opDeleteNetworkAclEntry = "DeleteNetworkAclEntry" - -// DeleteNetworkAclEntryRequest generates a "aws/request.Request" representing the -// client's request for the DeleteNetworkAclEntry operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteNetworkAclEntry method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteNetworkAclEntryRequest method. -// req, resp := client.DeleteNetworkAclEntryRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteNetworkAclEntryRequest(input *DeleteNetworkAclEntryInput) (req *request.Request, output *DeleteNetworkAclEntryOutput) { - op := &request.Operation{ - Name: opDeleteNetworkAclEntry, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteNetworkAclEntryInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteNetworkAclEntryOutput{} - req.Data = output - return -} - -// Deletes the specified ingress or egress entry (rule) from the specified network -// ACL. -func (c *EC2) DeleteNetworkAclEntry(input *DeleteNetworkAclEntryInput) (*DeleteNetworkAclEntryOutput, error) { - req, out := c.DeleteNetworkAclEntryRequest(input) - err := req.Send() - return out, err -} - -const opDeleteNetworkInterface = "DeleteNetworkInterface" - -// DeleteNetworkInterfaceRequest generates a "aws/request.Request" representing the -// client's request for the DeleteNetworkInterface operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteNetworkInterface method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteNetworkInterfaceRequest method. -// req, resp := client.DeleteNetworkInterfaceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteNetworkInterfaceRequest(input *DeleteNetworkInterfaceInput) (req *request.Request, output *DeleteNetworkInterfaceOutput) { - op := &request.Operation{ - Name: opDeleteNetworkInterface, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteNetworkInterfaceInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteNetworkInterfaceOutput{} - req.Data = output - return -} - -// Deletes the specified network interface. You must detach the network interface -// before you can delete it. -func (c *EC2) DeleteNetworkInterface(input *DeleteNetworkInterfaceInput) (*DeleteNetworkInterfaceOutput, error) { - req, out := c.DeleteNetworkInterfaceRequest(input) - err := req.Send() - return out, err -} - -const opDeletePlacementGroup = "DeletePlacementGroup" - -// DeletePlacementGroupRequest generates a "aws/request.Request" representing the -// client's request for the DeletePlacementGroup operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeletePlacementGroup method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeletePlacementGroupRequest method. -// req, resp := client.DeletePlacementGroupRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeletePlacementGroupRequest(input *DeletePlacementGroupInput) (req *request.Request, output *DeletePlacementGroupOutput) { - op := &request.Operation{ - Name: opDeletePlacementGroup, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeletePlacementGroupInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeletePlacementGroupOutput{} - req.Data = output - return -} - -// Deletes the specified placement group. You must terminate all instances in -// the placement group before you can delete the placement group. For more information -// about placement groups and cluster instances, see Cluster Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using_cluster_computing.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DeletePlacementGroup(input *DeletePlacementGroupInput) (*DeletePlacementGroupOutput, error) { - req, out := c.DeletePlacementGroupRequest(input) - err := req.Send() - return out, err -} - -const opDeleteRoute = "DeleteRoute" - -// DeleteRouteRequest generates a "aws/request.Request" representing the -// client's request for the DeleteRoute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteRoute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteRouteRequest method. -// req, resp := client.DeleteRouteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteRouteRequest(input *DeleteRouteInput) (req *request.Request, output *DeleteRouteOutput) { - op := &request.Operation{ - Name: opDeleteRoute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteRouteInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteRouteOutput{} - req.Data = output - return -} - -// Deletes the specified route from the specified route table. -func (c *EC2) DeleteRoute(input *DeleteRouteInput) (*DeleteRouteOutput, error) { - req, out := c.DeleteRouteRequest(input) - err := req.Send() - return out, err -} - -const opDeleteRouteTable = "DeleteRouteTable" - -// DeleteRouteTableRequest generates a "aws/request.Request" representing the -// client's request for the DeleteRouteTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteRouteTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteRouteTableRequest method. -// req, resp := client.DeleteRouteTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteRouteTableRequest(input *DeleteRouteTableInput) (req *request.Request, output *DeleteRouteTableOutput) { - op := &request.Operation{ - Name: opDeleteRouteTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteRouteTableInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteRouteTableOutput{} - req.Data = output - return -} - -// Deletes the specified route table. You must disassociate the route table -// from any subnets before you can delete it. You can't delete the main route -// table. -func (c *EC2) DeleteRouteTable(input *DeleteRouteTableInput) (*DeleteRouteTableOutput, error) { - req, out := c.DeleteRouteTableRequest(input) - err := req.Send() - return out, err -} - -const opDeleteSecurityGroup = "DeleteSecurityGroup" - -// DeleteSecurityGroupRequest generates a "aws/request.Request" representing the -// client's request for the DeleteSecurityGroup operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteSecurityGroup method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteSecurityGroupRequest method. -// req, resp := client.DeleteSecurityGroupRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteSecurityGroupRequest(input *DeleteSecurityGroupInput) (req *request.Request, output *DeleteSecurityGroupOutput) { - op := &request.Operation{ - Name: opDeleteSecurityGroup, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteSecurityGroupInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteSecurityGroupOutput{} - req.Data = output - return -} - -// Deletes a security group. -// -// If you attempt to delete a security group that is associated with an instance, -// or is referenced by another security group, the operation fails with InvalidGroup.InUse -// in EC2-Classic or DependencyViolation in EC2-VPC. -func (c *EC2) DeleteSecurityGroup(input *DeleteSecurityGroupInput) (*DeleteSecurityGroupOutput, error) { - req, out := c.DeleteSecurityGroupRequest(input) - err := req.Send() - return out, err -} - -const opDeleteSnapshot = "DeleteSnapshot" - -// DeleteSnapshotRequest generates a "aws/request.Request" representing the -// client's request for the DeleteSnapshot operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteSnapshot method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteSnapshotRequest method. -// req, resp := client.DeleteSnapshotRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteSnapshotRequest(input *DeleteSnapshotInput) (req *request.Request, output *DeleteSnapshotOutput) { - op := &request.Operation{ - Name: opDeleteSnapshot, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteSnapshotInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteSnapshotOutput{} - req.Data = output - return -} - -// Deletes the specified snapshot. -// -// When you make periodic snapshots of a volume, the snapshots are incremental, -// and only the blocks on the device that have changed since your last snapshot -// are saved in the new snapshot. When you delete a snapshot, only the data -// not needed for any other snapshot is removed. So regardless of which prior -// snapshots have been deleted, all active snapshots will have access to all -// the information needed to restore the volume. -// -// You cannot delete a snapshot of the root device of an EBS volume used by -// a registered AMI. You must first de-register the AMI before you can delete -// the snapshot. -// -// For more information, see Deleting an Amazon EBS Snapshot (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-deleting-snapshot.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DeleteSnapshot(input *DeleteSnapshotInput) (*DeleteSnapshotOutput, error) { - req, out := c.DeleteSnapshotRequest(input) - err := req.Send() - return out, err -} - -const opDeleteSpotDatafeedSubscription = "DeleteSpotDatafeedSubscription" - -// DeleteSpotDatafeedSubscriptionRequest generates a "aws/request.Request" representing the -// client's request for the DeleteSpotDatafeedSubscription operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteSpotDatafeedSubscription method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteSpotDatafeedSubscriptionRequest method. -// req, resp := client.DeleteSpotDatafeedSubscriptionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteSpotDatafeedSubscriptionRequest(input *DeleteSpotDatafeedSubscriptionInput) (req *request.Request, output *DeleteSpotDatafeedSubscriptionOutput) { - op := &request.Operation{ - Name: opDeleteSpotDatafeedSubscription, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteSpotDatafeedSubscriptionInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteSpotDatafeedSubscriptionOutput{} - req.Data = output - return -} - -// Deletes the data feed for Spot instances. -func (c *EC2) DeleteSpotDatafeedSubscription(input *DeleteSpotDatafeedSubscriptionInput) (*DeleteSpotDatafeedSubscriptionOutput, error) { - req, out := c.DeleteSpotDatafeedSubscriptionRequest(input) - err := req.Send() - return out, err -} - -const opDeleteSubnet = "DeleteSubnet" - -// DeleteSubnetRequest generates a "aws/request.Request" representing the -// client's request for the DeleteSubnet operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteSubnet method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteSubnetRequest method. -// req, resp := client.DeleteSubnetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteSubnetRequest(input *DeleteSubnetInput) (req *request.Request, output *DeleteSubnetOutput) { - op := &request.Operation{ - Name: opDeleteSubnet, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteSubnetInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteSubnetOutput{} - req.Data = output - return -} - -// Deletes the specified subnet. You must terminate all running instances in -// the subnet before you can delete the subnet. -func (c *EC2) DeleteSubnet(input *DeleteSubnetInput) (*DeleteSubnetOutput, error) { - req, out := c.DeleteSubnetRequest(input) - err := req.Send() - return out, err -} - -const opDeleteTags = "DeleteTags" - -// DeleteTagsRequest generates a "aws/request.Request" representing the -// client's request for the DeleteTags operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteTags method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteTagsRequest method. -// req, resp := client.DeleteTagsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteTagsRequest(input *DeleteTagsInput) (req *request.Request, output *DeleteTagsOutput) { - op := &request.Operation{ - Name: opDeleteTags, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteTagsInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteTagsOutput{} - req.Data = output - return -} - -// Deletes the specified set of tags from the specified set of resources. This -// call is designed to follow a DescribeTags request. -// -// For more information about tags, see Tagging Your Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DeleteTags(input *DeleteTagsInput) (*DeleteTagsOutput, error) { - req, out := c.DeleteTagsRequest(input) - err := req.Send() - return out, err -} - -const opDeleteVolume = "DeleteVolume" - -// DeleteVolumeRequest generates a "aws/request.Request" representing the -// client's request for the DeleteVolume operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteVolume method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteVolumeRequest method. -// req, resp := client.DeleteVolumeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteVolumeRequest(input *DeleteVolumeInput) (req *request.Request, output *DeleteVolumeOutput) { - op := &request.Operation{ - Name: opDeleteVolume, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteVolumeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteVolumeOutput{} - req.Data = output - return -} - -// Deletes the specified EBS volume. The volume must be in the available state -// (not attached to an instance). -// -// The volume may remain in the deleting state for several minutes. -// -// For more information, see Deleting an Amazon EBS Volume (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-deleting-volume.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DeleteVolume(input *DeleteVolumeInput) (*DeleteVolumeOutput, error) { - req, out := c.DeleteVolumeRequest(input) - err := req.Send() - return out, err -} - -const opDeleteVpc = "DeleteVpc" - -// DeleteVpcRequest generates a "aws/request.Request" representing the -// client's request for the DeleteVpc operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteVpc method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteVpcRequest method. -// req, resp := client.DeleteVpcRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteVpcRequest(input *DeleteVpcInput) (req *request.Request, output *DeleteVpcOutput) { - op := &request.Operation{ - Name: opDeleteVpc, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteVpcInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteVpcOutput{} - req.Data = output - return -} - -// Deletes the specified VPC. You must detach or delete all gateways and resources -// that are associated with the VPC before you can delete it. For example, you -// must terminate all instances running in the VPC, delete all security groups -// associated with the VPC (except the default one), delete all route tables -// associated with the VPC (except the default one), and so on. -func (c *EC2) DeleteVpc(input *DeleteVpcInput) (*DeleteVpcOutput, error) { - req, out := c.DeleteVpcRequest(input) - err := req.Send() - return out, err -} - -const opDeleteVpcEndpoints = "DeleteVpcEndpoints" - -// DeleteVpcEndpointsRequest generates a "aws/request.Request" representing the -// client's request for the DeleteVpcEndpoints operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteVpcEndpoints method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteVpcEndpointsRequest method. -// req, resp := client.DeleteVpcEndpointsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteVpcEndpointsRequest(input *DeleteVpcEndpointsInput) (req *request.Request, output *DeleteVpcEndpointsOutput) { - op := &request.Operation{ - Name: opDeleteVpcEndpoints, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteVpcEndpointsInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteVpcEndpointsOutput{} - req.Data = output - return -} - -// Deletes one or more specified VPC endpoints. Deleting the endpoint also deletes -// the endpoint routes in the route tables that were associated with the endpoint. -func (c *EC2) DeleteVpcEndpoints(input *DeleteVpcEndpointsInput) (*DeleteVpcEndpointsOutput, error) { - req, out := c.DeleteVpcEndpointsRequest(input) - err := req.Send() - return out, err -} - -const opDeleteVpcPeeringConnection = "DeleteVpcPeeringConnection" - -// DeleteVpcPeeringConnectionRequest generates a "aws/request.Request" representing the -// client's request for the DeleteVpcPeeringConnection operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteVpcPeeringConnection method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteVpcPeeringConnectionRequest method. -// req, resp := client.DeleteVpcPeeringConnectionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteVpcPeeringConnectionRequest(input *DeleteVpcPeeringConnectionInput) (req *request.Request, output *DeleteVpcPeeringConnectionOutput) { - op := &request.Operation{ - Name: opDeleteVpcPeeringConnection, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteVpcPeeringConnectionInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteVpcPeeringConnectionOutput{} - req.Data = output - return -} - -// Deletes a VPC peering connection. Either the owner of the requester VPC or -// the owner of the peer VPC can delete the VPC peering connection if it's in -// the active state. The owner of the requester VPC can delete a VPC peering -// connection in the pending-acceptance state. -func (c *EC2) DeleteVpcPeeringConnection(input *DeleteVpcPeeringConnectionInput) (*DeleteVpcPeeringConnectionOutput, error) { - req, out := c.DeleteVpcPeeringConnectionRequest(input) - err := req.Send() - return out, err -} - -const opDeleteVpnConnection = "DeleteVpnConnection" - -// DeleteVpnConnectionRequest generates a "aws/request.Request" representing the -// client's request for the DeleteVpnConnection operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteVpnConnection method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteVpnConnectionRequest method. -// req, resp := client.DeleteVpnConnectionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteVpnConnectionRequest(input *DeleteVpnConnectionInput) (req *request.Request, output *DeleteVpnConnectionOutput) { - op := &request.Operation{ - Name: opDeleteVpnConnection, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteVpnConnectionInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteVpnConnectionOutput{} - req.Data = output - return -} - -// Deletes the specified VPN connection. -// -// If you're deleting the VPC and its associated components, we recommend that -// you detach the virtual private gateway from the VPC and delete the VPC before -// deleting the VPN connection. If you believe that the tunnel credentials for -// your VPN connection have been compromised, you can delete the VPN connection -// and create a new one that has new keys, without needing to delete the VPC -// or virtual private gateway. If you create a new VPN connection, you must -// reconfigure the customer gateway using the new configuration information -// returned with the new VPN connection ID. -func (c *EC2) DeleteVpnConnection(input *DeleteVpnConnectionInput) (*DeleteVpnConnectionOutput, error) { - req, out := c.DeleteVpnConnectionRequest(input) - err := req.Send() - return out, err -} - -const opDeleteVpnConnectionRoute = "DeleteVpnConnectionRoute" - -// DeleteVpnConnectionRouteRequest generates a "aws/request.Request" representing the -// client's request for the DeleteVpnConnectionRoute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteVpnConnectionRoute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteVpnConnectionRouteRequest method. -// req, resp := client.DeleteVpnConnectionRouteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteVpnConnectionRouteRequest(input *DeleteVpnConnectionRouteInput) (req *request.Request, output *DeleteVpnConnectionRouteOutput) { - op := &request.Operation{ - Name: opDeleteVpnConnectionRoute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteVpnConnectionRouteInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteVpnConnectionRouteOutput{} - req.Data = output - return -} - -// Deletes the specified static route associated with a VPN connection between -// an existing virtual private gateway and a VPN customer gateway. The static -// route allows traffic to be routed from the virtual private gateway to the -// VPN customer gateway. -func (c *EC2) DeleteVpnConnectionRoute(input *DeleteVpnConnectionRouteInput) (*DeleteVpnConnectionRouteOutput, error) { - req, out := c.DeleteVpnConnectionRouteRequest(input) - err := req.Send() - return out, err -} - -const opDeleteVpnGateway = "DeleteVpnGateway" - -// DeleteVpnGatewayRequest generates a "aws/request.Request" representing the -// client's request for the DeleteVpnGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteVpnGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteVpnGatewayRequest method. -// req, resp := client.DeleteVpnGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeleteVpnGatewayRequest(input *DeleteVpnGatewayInput) (req *request.Request, output *DeleteVpnGatewayOutput) { - op := &request.Operation{ - Name: opDeleteVpnGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteVpnGatewayInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteVpnGatewayOutput{} - req.Data = output - return -} - -// Deletes the specified virtual private gateway. We recommend that before you -// delete a virtual private gateway, you detach it from the VPC and delete the -// VPN connection. Note that you don't need to delete the virtual private gateway -// if you plan to delete and recreate the VPN connection between your VPC and -// your network. -func (c *EC2) DeleteVpnGateway(input *DeleteVpnGatewayInput) (*DeleteVpnGatewayOutput, error) { - req, out := c.DeleteVpnGatewayRequest(input) - err := req.Send() - return out, err -} - -const opDeregisterImage = "DeregisterImage" - -// DeregisterImageRequest generates a "aws/request.Request" representing the -// client's request for the DeregisterImage operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeregisterImage method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeregisterImageRequest method. -// req, resp := client.DeregisterImageRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DeregisterImageRequest(input *DeregisterImageInput) (req *request.Request, output *DeregisterImageOutput) { - op := &request.Operation{ - Name: opDeregisterImage, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeregisterImageInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeregisterImageOutput{} - req.Data = output - return -} - -// Deregisters the specified AMI. After you deregister an AMI, it can't be used -// to launch new instances. -// -// This command does not delete the AMI. -func (c *EC2) DeregisterImage(input *DeregisterImageInput) (*DeregisterImageOutput, error) { - req, out := c.DeregisterImageRequest(input) - err := req.Send() - return out, err -} - -const opDescribeAccountAttributes = "DescribeAccountAttributes" - -// DescribeAccountAttributesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeAccountAttributes operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeAccountAttributes method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeAccountAttributesRequest method. -// req, resp := client.DescribeAccountAttributesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeAccountAttributesRequest(input *DescribeAccountAttributesInput) (req *request.Request, output *DescribeAccountAttributesOutput) { - op := &request.Operation{ - Name: opDescribeAccountAttributes, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeAccountAttributesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeAccountAttributesOutput{} - req.Data = output - return -} - -// Describes attributes of your AWS account. The following are the supported -// account attributes: -// -// supported-platforms: Indicates whether your account can launch instances -// into EC2-Classic and EC2-VPC, or only into EC2-VPC. -// -// default-vpc: The ID of the default VPC for your account, or none. -// -// max-instances: The maximum number of On-Demand instances that you can -// run. -// -// vpc-max-security-groups-per-interface: The maximum number of security -// groups that you can assign to a network interface. -// -// max-elastic-ips: The maximum number of Elastic IP addresses that you -// can allocate for use with EC2-Classic. -// -// vpc-max-elastic-ips: The maximum number of Elastic IP addresses that -// you can allocate for use with EC2-VPC. -func (c *EC2) DescribeAccountAttributes(input *DescribeAccountAttributesInput) (*DescribeAccountAttributesOutput, error) { - req, out := c.DescribeAccountAttributesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeAddresses = "DescribeAddresses" - -// DescribeAddressesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeAddresses operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeAddresses method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeAddressesRequest method. -// req, resp := client.DescribeAddressesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeAddressesRequest(input *DescribeAddressesInput) (req *request.Request, output *DescribeAddressesOutput) { - op := &request.Operation{ - Name: opDescribeAddresses, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeAddressesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeAddressesOutput{} - req.Data = output - return -} - -// Describes one or more of your Elastic IP addresses. -// -// An Elastic IP address is for use in either the EC2-Classic platform or in -// a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeAddresses(input *DescribeAddressesInput) (*DescribeAddressesOutput, error) { - req, out := c.DescribeAddressesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeAvailabilityZones = "DescribeAvailabilityZones" - -// DescribeAvailabilityZonesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeAvailabilityZones operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeAvailabilityZones method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeAvailabilityZonesRequest method. -// req, resp := client.DescribeAvailabilityZonesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeAvailabilityZonesRequest(input *DescribeAvailabilityZonesInput) (req *request.Request, output *DescribeAvailabilityZonesOutput) { - op := &request.Operation{ - Name: opDescribeAvailabilityZones, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeAvailabilityZonesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeAvailabilityZonesOutput{} - req.Data = output - return -} - -// Describes one or more of the Availability Zones that are available to you. -// The results include zones only for the region you're currently using. If -// there is an event impacting an Availability Zone, you can use this request -// to view the state and any provided message for that Availability Zone. -// -// For more information, see Regions and Availability Zones (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeAvailabilityZones(input *DescribeAvailabilityZonesInput) (*DescribeAvailabilityZonesOutput, error) { - req, out := c.DescribeAvailabilityZonesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeBundleTasks = "DescribeBundleTasks" - -// DescribeBundleTasksRequest generates a "aws/request.Request" representing the -// client's request for the DescribeBundleTasks operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeBundleTasks method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeBundleTasksRequest method. -// req, resp := client.DescribeBundleTasksRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeBundleTasksRequest(input *DescribeBundleTasksInput) (req *request.Request, output *DescribeBundleTasksOutput) { - op := &request.Operation{ - Name: opDescribeBundleTasks, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeBundleTasksInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeBundleTasksOutput{} - req.Data = output - return -} - -// Describes one or more of your bundling tasks. -// -// Completed bundle tasks are listed for only a limited time. If your bundle -// task is no longer in the list, you can still register an AMI from it. Just -// use RegisterImage with the Amazon S3 bucket name and image manifest name -// you provided to the bundle task. -func (c *EC2) DescribeBundleTasks(input *DescribeBundleTasksInput) (*DescribeBundleTasksOutput, error) { - req, out := c.DescribeBundleTasksRequest(input) - err := req.Send() - return out, err -} - -const opDescribeClassicLinkInstances = "DescribeClassicLinkInstances" - -// DescribeClassicLinkInstancesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeClassicLinkInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeClassicLinkInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeClassicLinkInstancesRequest method. -// req, resp := client.DescribeClassicLinkInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeClassicLinkInstancesRequest(input *DescribeClassicLinkInstancesInput) (req *request.Request, output *DescribeClassicLinkInstancesOutput) { - op := &request.Operation{ - Name: opDescribeClassicLinkInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeClassicLinkInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeClassicLinkInstancesOutput{} - req.Data = output - return -} - -// Describes one or more of your linked EC2-Classic instances. This request -// only returns information about EC2-Classic instances linked to a VPC through -// ClassicLink; you cannot use this request to return information about other -// instances. -func (c *EC2) DescribeClassicLinkInstances(input *DescribeClassicLinkInstancesInput) (*DescribeClassicLinkInstancesOutput, error) { - req, out := c.DescribeClassicLinkInstancesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeConversionTasks = "DescribeConversionTasks" - -// DescribeConversionTasksRequest generates a "aws/request.Request" representing the -// client's request for the DescribeConversionTasks operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeConversionTasks method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeConversionTasksRequest method. -// req, resp := client.DescribeConversionTasksRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeConversionTasksRequest(input *DescribeConversionTasksInput) (req *request.Request, output *DescribeConversionTasksOutput) { - op := &request.Operation{ - Name: opDescribeConversionTasks, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeConversionTasksInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeConversionTasksOutput{} - req.Data = output - return -} - -// Describes one or more of your conversion tasks. For more information, see -// the VM Import/Export User Guide (http://docs.aws.amazon.com/vm-import/latest/userguide/). -// -// For information about the import manifest referenced by this API action, -// see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html). -func (c *EC2) DescribeConversionTasks(input *DescribeConversionTasksInput) (*DescribeConversionTasksOutput, error) { - req, out := c.DescribeConversionTasksRequest(input) - err := req.Send() - return out, err -} - -const opDescribeCustomerGateways = "DescribeCustomerGateways" - -// DescribeCustomerGatewaysRequest generates a "aws/request.Request" representing the -// client's request for the DescribeCustomerGateways operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeCustomerGateways method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeCustomerGatewaysRequest method. -// req, resp := client.DescribeCustomerGatewaysRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeCustomerGatewaysRequest(input *DescribeCustomerGatewaysInput) (req *request.Request, output *DescribeCustomerGatewaysOutput) { - op := &request.Operation{ - Name: opDescribeCustomerGateways, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeCustomerGatewaysInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeCustomerGatewaysOutput{} - req.Data = output - return -} - -// Describes one or more of your VPN customer gateways. -// -// For more information about VPN customer gateways, see Adding a Hardware -// Virtual Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeCustomerGateways(input *DescribeCustomerGatewaysInput) (*DescribeCustomerGatewaysOutput, error) { - req, out := c.DescribeCustomerGatewaysRequest(input) - err := req.Send() - return out, err -} - -const opDescribeDhcpOptions = "DescribeDhcpOptions" - -// DescribeDhcpOptionsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeDhcpOptions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeDhcpOptions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeDhcpOptionsRequest method. -// req, resp := client.DescribeDhcpOptionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeDhcpOptionsRequest(input *DescribeDhcpOptionsInput) (req *request.Request, output *DescribeDhcpOptionsOutput) { - op := &request.Operation{ - Name: opDescribeDhcpOptions, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeDhcpOptionsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeDhcpOptionsOutput{} - req.Data = output - return -} - -// Describes one or more of your DHCP options sets. -// -// For more information about DHCP options sets, see DHCP Options Sets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_DHCP_Options.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeDhcpOptions(input *DescribeDhcpOptionsInput) (*DescribeDhcpOptionsOutput, error) { - req, out := c.DescribeDhcpOptionsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeExportTasks = "DescribeExportTasks" - -// DescribeExportTasksRequest generates a "aws/request.Request" representing the -// client's request for the DescribeExportTasks operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeExportTasks method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeExportTasksRequest method. -// req, resp := client.DescribeExportTasksRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeExportTasksRequest(input *DescribeExportTasksInput) (req *request.Request, output *DescribeExportTasksOutput) { - op := &request.Operation{ - Name: opDescribeExportTasks, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeExportTasksInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeExportTasksOutput{} - req.Data = output - return -} - -// Describes one or more of your export tasks. -func (c *EC2) DescribeExportTasks(input *DescribeExportTasksInput) (*DescribeExportTasksOutput, error) { - req, out := c.DescribeExportTasksRequest(input) - err := req.Send() - return out, err -} - -const opDescribeFlowLogs = "DescribeFlowLogs" - -// DescribeFlowLogsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeFlowLogs operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeFlowLogs method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeFlowLogsRequest method. -// req, resp := client.DescribeFlowLogsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeFlowLogsRequest(input *DescribeFlowLogsInput) (req *request.Request, output *DescribeFlowLogsOutput) { - op := &request.Operation{ - Name: opDescribeFlowLogs, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeFlowLogsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeFlowLogsOutput{} - req.Data = output - return -} - -// Describes one or more flow logs. To view the information in your flow logs -// (the log streams for the network interfaces), you must use the CloudWatch -// Logs console or the CloudWatch Logs API. -func (c *EC2) DescribeFlowLogs(input *DescribeFlowLogsInput) (*DescribeFlowLogsOutput, error) { - req, out := c.DescribeFlowLogsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeHostReservationOfferings = "DescribeHostReservationOfferings" - -// DescribeHostReservationOfferingsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeHostReservationOfferings operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeHostReservationOfferings method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeHostReservationOfferingsRequest method. -// req, resp := client.DescribeHostReservationOfferingsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeHostReservationOfferingsRequest(input *DescribeHostReservationOfferingsInput) (req *request.Request, output *DescribeHostReservationOfferingsOutput) { - op := &request.Operation{ - Name: opDescribeHostReservationOfferings, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeHostReservationOfferingsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeHostReservationOfferingsOutput{} - req.Data = output - return -} - -// Describes the Dedicated Host Reservations that are available to purchase. -// -// The results describe all the Dedicated Host Reservation offerings, including -// offerings that may not match the instance family and region of your Dedicated -// Hosts. When purchasing an offering, ensure that the the instance family and -// region of the offering matches that of the Dedicated Host/s it will be associated -// with. For an overview of supported instance types, see Dedicated Hosts Overview -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/dedicated-hosts-overview.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeHostReservationOfferings(input *DescribeHostReservationOfferingsInput) (*DescribeHostReservationOfferingsOutput, error) { - req, out := c.DescribeHostReservationOfferingsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeHostReservations = "DescribeHostReservations" - -// DescribeHostReservationsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeHostReservations operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeHostReservations method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeHostReservationsRequest method. -// req, resp := client.DescribeHostReservationsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeHostReservationsRequest(input *DescribeHostReservationsInput) (req *request.Request, output *DescribeHostReservationsOutput) { - op := &request.Operation{ - Name: opDescribeHostReservations, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeHostReservationsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeHostReservationsOutput{} - req.Data = output - return -} - -// Describes Dedicated Host Reservations which are associated with Dedicated -// Hosts in your account. -func (c *EC2) DescribeHostReservations(input *DescribeHostReservationsInput) (*DescribeHostReservationsOutput, error) { - req, out := c.DescribeHostReservationsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeHosts = "DescribeHosts" - -// DescribeHostsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeHosts operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeHosts method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeHostsRequest method. -// req, resp := client.DescribeHostsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeHostsRequest(input *DescribeHostsInput) (req *request.Request, output *DescribeHostsOutput) { - op := &request.Operation{ - Name: opDescribeHosts, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeHostsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeHostsOutput{} - req.Data = output - return -} - -// Describes one or more of your Dedicated Hosts. -// -// The results describe only the Dedicated Hosts in the region you're currently -// using. All listed instances consume capacity on your Dedicated Host. Dedicated -// Hosts that have recently been released will be listed with the state released. -func (c *EC2) DescribeHosts(input *DescribeHostsInput) (*DescribeHostsOutput, error) { - req, out := c.DescribeHostsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeIdFormat = "DescribeIdFormat" - -// DescribeIdFormatRequest generates a "aws/request.Request" representing the -// client's request for the DescribeIdFormat operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeIdFormat method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeIdFormatRequest method. -// req, resp := client.DescribeIdFormatRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeIdFormatRequest(input *DescribeIdFormatInput) (req *request.Request, output *DescribeIdFormatOutput) { - op := &request.Operation{ - Name: opDescribeIdFormat, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeIdFormatInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeIdFormatOutput{} - req.Data = output - return -} - -// Describes the ID format settings for your resources on a per-region basis, -// for example, to view which resource types are enabled for longer IDs. This -// request only returns information about resource types whose ID formats can -// be modified; it does not return information about other resource types. -// -// The following resource types support longer IDs: instance | reservation -// | snapshot | volume. -// -// These settings apply to the IAM user who makes the request; they do not -// apply to the entire AWS account. By default, an IAM user defaults to the -// same settings as the root user, unless they explicitly override the settings -// by running the ModifyIdFormat command. Resources created with longer IDs -// are visible to all IAM users, regardless of these settings and provided that -// they have permission to use the relevant Describe command for the resource -// type. -func (c *EC2) DescribeIdFormat(input *DescribeIdFormatInput) (*DescribeIdFormatOutput, error) { - req, out := c.DescribeIdFormatRequest(input) - err := req.Send() - return out, err -} - -const opDescribeIdentityIdFormat = "DescribeIdentityIdFormat" - -// DescribeIdentityIdFormatRequest generates a "aws/request.Request" representing the -// client's request for the DescribeIdentityIdFormat operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeIdentityIdFormat method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeIdentityIdFormatRequest method. -// req, resp := client.DescribeIdentityIdFormatRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeIdentityIdFormatRequest(input *DescribeIdentityIdFormatInput) (req *request.Request, output *DescribeIdentityIdFormatOutput) { - op := &request.Operation{ - Name: opDescribeIdentityIdFormat, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeIdentityIdFormatInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeIdentityIdFormatOutput{} - req.Data = output - return -} - -// Describes the ID format settings for resources for the specified IAM user, -// IAM role, or root user. For example, you can view the resource types that -// are enabled for longer IDs. This request only returns information about resource -// types whose ID formats can be modified; it does not return information about -// other resource types. For more information, see Resource IDs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/resource-ids.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// The following resource types support longer IDs: instance | reservation -// | snapshot | volume. -// -// These settings apply to the principal specified in the request. They do -// not apply to the principal that makes the request. -func (c *EC2) DescribeIdentityIdFormat(input *DescribeIdentityIdFormatInput) (*DescribeIdentityIdFormatOutput, error) { - req, out := c.DescribeIdentityIdFormatRequest(input) - err := req.Send() - return out, err -} - -const opDescribeImageAttribute = "DescribeImageAttribute" - -// DescribeImageAttributeRequest generates a "aws/request.Request" representing the -// client's request for the DescribeImageAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeImageAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeImageAttributeRequest method. -// req, resp := client.DescribeImageAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeImageAttributeRequest(input *DescribeImageAttributeInput) (req *request.Request, output *DescribeImageAttributeOutput) { - op := &request.Operation{ - Name: opDescribeImageAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeImageAttributeInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeImageAttributeOutput{} - req.Data = output - return -} - -// Describes the specified attribute of the specified AMI. You can specify only -// one attribute at a time. -func (c *EC2) DescribeImageAttribute(input *DescribeImageAttributeInput) (*DescribeImageAttributeOutput, error) { - req, out := c.DescribeImageAttributeRequest(input) - err := req.Send() - return out, err -} - -const opDescribeImages = "DescribeImages" - -// DescribeImagesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeImages operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeImages method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeImagesRequest method. -// req, resp := client.DescribeImagesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeImagesRequest(input *DescribeImagesInput) (req *request.Request, output *DescribeImagesOutput) { - op := &request.Operation{ - Name: opDescribeImages, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeImagesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeImagesOutput{} - req.Data = output - return -} - -// Describes one or more of the images (AMIs, AKIs, and ARIs) available to you. -// Images available to you include public images, private images that you own, -// and private images owned by other AWS accounts but for which you have explicit -// launch permissions. -// -// Deregistered images are included in the returned results for an unspecified -// interval after deregistration. -func (c *EC2) DescribeImages(input *DescribeImagesInput) (*DescribeImagesOutput, error) { - req, out := c.DescribeImagesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeImportImageTasks = "DescribeImportImageTasks" - -// DescribeImportImageTasksRequest generates a "aws/request.Request" representing the -// client's request for the DescribeImportImageTasks operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeImportImageTasks method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeImportImageTasksRequest method. -// req, resp := client.DescribeImportImageTasksRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeImportImageTasksRequest(input *DescribeImportImageTasksInput) (req *request.Request, output *DescribeImportImageTasksOutput) { - op := &request.Operation{ - Name: opDescribeImportImageTasks, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeImportImageTasksInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeImportImageTasksOutput{} - req.Data = output - return -} - -// Displays details about an import virtual machine or import snapshot tasks -// that are already created. -func (c *EC2) DescribeImportImageTasks(input *DescribeImportImageTasksInput) (*DescribeImportImageTasksOutput, error) { - req, out := c.DescribeImportImageTasksRequest(input) - err := req.Send() - return out, err -} - -const opDescribeImportSnapshotTasks = "DescribeImportSnapshotTasks" - -// DescribeImportSnapshotTasksRequest generates a "aws/request.Request" representing the -// client's request for the DescribeImportSnapshotTasks operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeImportSnapshotTasks method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeImportSnapshotTasksRequest method. -// req, resp := client.DescribeImportSnapshotTasksRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeImportSnapshotTasksRequest(input *DescribeImportSnapshotTasksInput) (req *request.Request, output *DescribeImportSnapshotTasksOutput) { - op := &request.Operation{ - Name: opDescribeImportSnapshotTasks, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeImportSnapshotTasksInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeImportSnapshotTasksOutput{} - req.Data = output - return -} - -// Describes your import snapshot tasks. -func (c *EC2) DescribeImportSnapshotTasks(input *DescribeImportSnapshotTasksInput) (*DescribeImportSnapshotTasksOutput, error) { - req, out := c.DescribeImportSnapshotTasksRequest(input) - err := req.Send() - return out, err -} - -const opDescribeInstanceAttribute = "DescribeInstanceAttribute" - -// DescribeInstanceAttributeRequest generates a "aws/request.Request" representing the -// client's request for the DescribeInstanceAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeInstanceAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeInstanceAttributeRequest method. -// req, resp := client.DescribeInstanceAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeInstanceAttributeRequest(input *DescribeInstanceAttributeInput) (req *request.Request, output *DescribeInstanceAttributeOutput) { - op := &request.Operation{ - Name: opDescribeInstanceAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeInstanceAttributeInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeInstanceAttributeOutput{} - req.Data = output - return -} - -// Describes the specified attribute of the specified instance. You can specify -// only one attribute at a time. Valid attribute values are: instanceType | -// kernel | ramdisk | userData | disableApiTermination | instanceInitiatedShutdownBehavior -// | rootDeviceName | blockDeviceMapping | productCodes | sourceDestCheck | -// groupSet | ebsOptimized | sriovNetSupport -func (c *EC2) DescribeInstanceAttribute(input *DescribeInstanceAttributeInput) (*DescribeInstanceAttributeOutput, error) { - req, out := c.DescribeInstanceAttributeRequest(input) - err := req.Send() - return out, err -} - -const opDescribeInstanceStatus = "DescribeInstanceStatus" - -// DescribeInstanceStatusRequest generates a "aws/request.Request" representing the -// client's request for the DescribeInstanceStatus operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeInstanceStatus method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeInstanceStatusRequest method. -// req, resp := client.DescribeInstanceStatusRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeInstanceStatusRequest(input *DescribeInstanceStatusInput) (req *request.Request, output *DescribeInstanceStatusOutput) { - op := &request.Operation{ - Name: opDescribeInstanceStatus, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeInstanceStatusInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeInstanceStatusOutput{} - req.Data = output - return -} - -// Describes the status of one or more instances. By default, only running instances -// are described, unless specified otherwise. -// -// Instance status includes the following components: -// -// Status checks - Amazon EC2 performs status checks on running EC2 instances -// to identify hardware and software issues. For more information, see Status -// Checks for Your Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-system-instance-status-check.html) -// and Troubleshooting Instances with Failed Status Checks (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstances.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// Scheduled events - Amazon EC2 can schedule events (such as reboot, stop, -// or terminate) for your instances related to hardware issues, software updates, -// or system maintenance. For more information, see Scheduled Events for Your -// Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-instances-status-check_sched.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// Instance state - You can manage your instances from the moment you launch -// them through their termination. For more information, see Instance Lifecycle -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeInstanceStatus(input *DescribeInstanceStatusInput) (*DescribeInstanceStatusOutput, error) { - req, out := c.DescribeInstanceStatusRequest(input) - err := req.Send() - return out, err -} - -// DescribeInstanceStatusPages iterates over the pages of a DescribeInstanceStatus operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeInstanceStatus method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeInstanceStatus operation. -// pageNum := 0 -// err := client.DescribeInstanceStatusPages(params, -// func(page *DescribeInstanceStatusOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeInstanceStatusPages(input *DescribeInstanceStatusInput, fn func(p *DescribeInstanceStatusOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeInstanceStatusRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeInstanceStatusOutput), lastPage) - }) -} - -const opDescribeInstances = "DescribeInstances" - -// DescribeInstancesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeInstancesRequest method. -// req, resp := client.DescribeInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeInstancesRequest(input *DescribeInstancesInput) (req *request.Request, output *DescribeInstancesOutput) { - op := &request.Operation{ - Name: opDescribeInstances, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeInstancesOutput{} - req.Data = output - return -} - -// Describes one or more of your instances. -// -// If you specify one or more instance IDs, Amazon EC2 returns information -// for those instances. If you do not specify instance IDs, Amazon EC2 returns -// information for all relevant instances. If you specify an instance ID that -// is not valid, an error is returned. If you specify an instance that you do -// not own, it is not included in the returned results. -// -// Recently terminated instances might appear in the returned results. This -// interval is usually less than one hour. -// -// If you describe instances in the rare case where an Availability Zone is -// experiencing a service disruption and you specify instance IDs that are in -// the affected zone, or do not specify any instance IDs at all, the call fails. -// If you describe instances and specify only instance IDs that are in an unaffected -// zone, the call works normally. -func (c *EC2) DescribeInstances(input *DescribeInstancesInput) (*DescribeInstancesOutput, error) { - req, out := c.DescribeInstancesRequest(input) - err := req.Send() - return out, err -} - -// DescribeInstancesPages iterates over the pages of a DescribeInstances operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeInstances method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeInstances operation. -// pageNum := 0 -// err := client.DescribeInstancesPages(params, -// func(page *DescribeInstancesOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeInstancesPages(input *DescribeInstancesInput, fn func(p *DescribeInstancesOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeInstancesRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeInstancesOutput), lastPage) - }) -} - -const opDescribeInternetGateways = "DescribeInternetGateways" - -// DescribeInternetGatewaysRequest generates a "aws/request.Request" representing the -// client's request for the DescribeInternetGateways operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeInternetGateways method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeInternetGatewaysRequest method. -// req, resp := client.DescribeInternetGatewaysRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeInternetGatewaysRequest(input *DescribeInternetGatewaysInput) (req *request.Request, output *DescribeInternetGatewaysOutput) { - op := &request.Operation{ - Name: opDescribeInternetGateways, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeInternetGatewaysInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeInternetGatewaysOutput{} - req.Data = output - return -} - -// Describes one or more of your Internet gateways. -func (c *EC2) DescribeInternetGateways(input *DescribeInternetGatewaysInput) (*DescribeInternetGatewaysOutput, error) { - req, out := c.DescribeInternetGatewaysRequest(input) - err := req.Send() - return out, err -} - -const opDescribeKeyPairs = "DescribeKeyPairs" - -// DescribeKeyPairsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeKeyPairs operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeKeyPairs method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeKeyPairsRequest method. -// req, resp := client.DescribeKeyPairsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeKeyPairsRequest(input *DescribeKeyPairsInput) (req *request.Request, output *DescribeKeyPairsOutput) { - op := &request.Operation{ - Name: opDescribeKeyPairs, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeKeyPairsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeKeyPairsOutput{} - req.Data = output - return -} - -// Describes one or more of your key pairs. -// -// For more information about key pairs, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeKeyPairs(input *DescribeKeyPairsInput) (*DescribeKeyPairsOutput, error) { - req, out := c.DescribeKeyPairsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeMovingAddresses = "DescribeMovingAddresses" - -// DescribeMovingAddressesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeMovingAddresses operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeMovingAddresses method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeMovingAddressesRequest method. -// req, resp := client.DescribeMovingAddressesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeMovingAddressesRequest(input *DescribeMovingAddressesInput) (req *request.Request, output *DescribeMovingAddressesOutput) { - op := &request.Operation{ - Name: opDescribeMovingAddresses, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeMovingAddressesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeMovingAddressesOutput{} - req.Data = output - return -} - -// Describes your Elastic IP addresses that are being moved to the EC2-VPC platform, -// or that are being restored to the EC2-Classic platform. This request does -// not return information about any other Elastic IP addresses in your account. -func (c *EC2) DescribeMovingAddresses(input *DescribeMovingAddressesInput) (*DescribeMovingAddressesOutput, error) { - req, out := c.DescribeMovingAddressesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeNatGateways = "DescribeNatGateways" - -// DescribeNatGatewaysRequest generates a "aws/request.Request" representing the -// client's request for the DescribeNatGateways operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeNatGateways method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeNatGatewaysRequest method. -// req, resp := client.DescribeNatGatewaysRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeNatGatewaysRequest(input *DescribeNatGatewaysInput) (req *request.Request, output *DescribeNatGatewaysOutput) { - op := &request.Operation{ - Name: opDescribeNatGateways, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeNatGatewaysInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeNatGatewaysOutput{} - req.Data = output - return -} - -// Describes one or more of the your NAT gateways. -func (c *EC2) DescribeNatGateways(input *DescribeNatGatewaysInput) (*DescribeNatGatewaysOutput, error) { - req, out := c.DescribeNatGatewaysRequest(input) - err := req.Send() - return out, err -} - -const opDescribeNetworkAcls = "DescribeNetworkAcls" - -// DescribeNetworkAclsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeNetworkAcls operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeNetworkAcls method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeNetworkAclsRequest method. -// req, resp := client.DescribeNetworkAclsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeNetworkAclsRequest(input *DescribeNetworkAclsInput) (req *request.Request, output *DescribeNetworkAclsOutput) { - op := &request.Operation{ - Name: opDescribeNetworkAcls, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeNetworkAclsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeNetworkAclsOutput{} - req.Data = output - return -} - -// Describes one or more of your network ACLs. -// -// For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeNetworkAcls(input *DescribeNetworkAclsInput) (*DescribeNetworkAclsOutput, error) { - req, out := c.DescribeNetworkAclsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeNetworkInterfaceAttribute = "DescribeNetworkInterfaceAttribute" - -// DescribeNetworkInterfaceAttributeRequest generates a "aws/request.Request" representing the -// client's request for the DescribeNetworkInterfaceAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeNetworkInterfaceAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeNetworkInterfaceAttributeRequest method. -// req, resp := client.DescribeNetworkInterfaceAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeNetworkInterfaceAttributeRequest(input *DescribeNetworkInterfaceAttributeInput) (req *request.Request, output *DescribeNetworkInterfaceAttributeOutput) { - op := &request.Operation{ - Name: opDescribeNetworkInterfaceAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeNetworkInterfaceAttributeInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeNetworkInterfaceAttributeOutput{} - req.Data = output - return -} - -// Describes a network interface attribute. You can specify only one attribute -// at a time. -func (c *EC2) DescribeNetworkInterfaceAttribute(input *DescribeNetworkInterfaceAttributeInput) (*DescribeNetworkInterfaceAttributeOutput, error) { - req, out := c.DescribeNetworkInterfaceAttributeRequest(input) - err := req.Send() - return out, err -} - -const opDescribeNetworkInterfaces = "DescribeNetworkInterfaces" - -// DescribeNetworkInterfacesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeNetworkInterfaces operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeNetworkInterfaces method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeNetworkInterfacesRequest method. -// req, resp := client.DescribeNetworkInterfacesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeNetworkInterfacesRequest(input *DescribeNetworkInterfacesInput) (req *request.Request, output *DescribeNetworkInterfacesOutput) { - op := &request.Operation{ - Name: opDescribeNetworkInterfaces, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeNetworkInterfacesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeNetworkInterfacesOutput{} - req.Data = output - return -} - -// Describes one or more of your network interfaces. -func (c *EC2) DescribeNetworkInterfaces(input *DescribeNetworkInterfacesInput) (*DescribeNetworkInterfacesOutput, error) { - req, out := c.DescribeNetworkInterfacesRequest(input) - err := req.Send() - return out, err -} - -const opDescribePlacementGroups = "DescribePlacementGroups" - -// DescribePlacementGroupsRequest generates a "aws/request.Request" representing the -// client's request for the DescribePlacementGroups operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribePlacementGroups method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribePlacementGroupsRequest method. -// req, resp := client.DescribePlacementGroupsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribePlacementGroupsRequest(input *DescribePlacementGroupsInput) (req *request.Request, output *DescribePlacementGroupsOutput) { - op := &request.Operation{ - Name: opDescribePlacementGroups, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribePlacementGroupsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribePlacementGroupsOutput{} - req.Data = output - return -} - -// Describes one or more of your placement groups. For more information about -// placement groups and cluster instances, see Cluster Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using_cluster_computing.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribePlacementGroups(input *DescribePlacementGroupsInput) (*DescribePlacementGroupsOutput, error) { - req, out := c.DescribePlacementGroupsRequest(input) - err := req.Send() - return out, err -} - -const opDescribePrefixLists = "DescribePrefixLists" - -// DescribePrefixListsRequest generates a "aws/request.Request" representing the -// client's request for the DescribePrefixLists operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribePrefixLists method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribePrefixListsRequest method. -// req, resp := client.DescribePrefixListsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribePrefixListsRequest(input *DescribePrefixListsInput) (req *request.Request, output *DescribePrefixListsOutput) { - op := &request.Operation{ - Name: opDescribePrefixLists, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribePrefixListsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribePrefixListsOutput{} - req.Data = output - return -} - -// Describes available AWS services in a prefix list format, which includes -// the prefix list name and prefix list ID of the service and the IP address -// range for the service. A prefix list ID is required for creating an outbound -// security group rule that allows traffic from a VPC to access an AWS service -// through a VPC endpoint. -func (c *EC2) DescribePrefixLists(input *DescribePrefixListsInput) (*DescribePrefixListsOutput, error) { - req, out := c.DescribePrefixListsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeRegions = "DescribeRegions" - -// DescribeRegionsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeRegions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeRegions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeRegionsRequest method. -// req, resp := client.DescribeRegionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeRegionsRequest(input *DescribeRegionsInput) (req *request.Request, output *DescribeRegionsOutput) { - op := &request.Operation{ - Name: opDescribeRegions, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeRegionsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeRegionsOutput{} - req.Data = output - return -} - -// Describes one or more regions that are currently available to you. -// -// For a list of the regions supported by Amazon EC2, see Regions and Endpoints -// (http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region). -func (c *EC2) DescribeRegions(input *DescribeRegionsInput) (*DescribeRegionsOutput, error) { - req, out := c.DescribeRegionsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeReservedInstances = "DescribeReservedInstances" - -// DescribeReservedInstancesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeReservedInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeReservedInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeReservedInstancesRequest method. -// req, resp := client.DescribeReservedInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeReservedInstancesRequest(input *DescribeReservedInstancesInput) (req *request.Request, output *DescribeReservedInstancesOutput) { - op := &request.Operation{ - Name: opDescribeReservedInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeReservedInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeReservedInstancesOutput{} - req.Data = output - return -} - -// Describes one or more of the Reserved Instances that you purchased. -// -// For more information about Reserved Instances, see Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts-on-demand-reserved-instances.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeReservedInstances(input *DescribeReservedInstancesInput) (*DescribeReservedInstancesOutput, error) { - req, out := c.DescribeReservedInstancesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeReservedInstancesListings = "DescribeReservedInstancesListings" - -// DescribeReservedInstancesListingsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeReservedInstancesListings operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeReservedInstancesListings method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeReservedInstancesListingsRequest method. -// req, resp := client.DescribeReservedInstancesListingsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeReservedInstancesListingsRequest(input *DescribeReservedInstancesListingsInput) (req *request.Request, output *DescribeReservedInstancesListingsOutput) { - op := &request.Operation{ - Name: opDescribeReservedInstancesListings, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeReservedInstancesListingsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeReservedInstancesListingsOutput{} - req.Data = output - return -} - -// Describes your account's Reserved Instance listings in the Reserved Instance -// Marketplace. -// -// The Reserved Instance Marketplace matches sellers who want to resell Reserved -// Instance capacity that they no longer need with buyers who want to purchase -// additional capacity. Reserved Instances bought and sold through the Reserved -// Instance Marketplace work like any other Reserved Instances. -// -// As a seller, you choose to list some or all of your Reserved Instances, -// and you specify the upfront price to receive for them. Your Reserved Instances -// are then listed in the Reserved Instance Marketplace and are available for -// purchase. -// -// As a buyer, you specify the configuration of the Reserved Instance to purchase, -// and the Marketplace matches what you're searching for with what's available. -// The Marketplace first sells the lowest priced Reserved Instances to you, -// and continues to sell available Reserved Instance listings to you until your -// demand is met. You are charged based on the total price of all of the listings -// that you purchase. -// -// For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeReservedInstancesListings(input *DescribeReservedInstancesListingsInput) (*DescribeReservedInstancesListingsOutput, error) { - req, out := c.DescribeReservedInstancesListingsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeReservedInstancesModifications = "DescribeReservedInstancesModifications" - -// DescribeReservedInstancesModificationsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeReservedInstancesModifications operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeReservedInstancesModifications method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeReservedInstancesModificationsRequest method. -// req, resp := client.DescribeReservedInstancesModificationsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeReservedInstancesModificationsRequest(input *DescribeReservedInstancesModificationsInput) (req *request.Request, output *DescribeReservedInstancesModificationsOutput) { - op := &request.Operation{ - Name: opDescribeReservedInstancesModifications, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeReservedInstancesModificationsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeReservedInstancesModificationsOutput{} - req.Data = output - return -} - -// Describes the modifications made to your Reserved Instances. If no parameter -// is specified, information about all your Reserved Instances modification -// requests is returned. If a modification ID is specified, only information -// about the specific modification is returned. -// -// For more information, see Modifying Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-modifying.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeReservedInstancesModifications(input *DescribeReservedInstancesModificationsInput) (*DescribeReservedInstancesModificationsOutput, error) { - req, out := c.DescribeReservedInstancesModificationsRequest(input) - err := req.Send() - return out, err -} - -// DescribeReservedInstancesModificationsPages iterates over the pages of a DescribeReservedInstancesModifications operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeReservedInstancesModifications method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeReservedInstancesModifications operation. -// pageNum := 0 -// err := client.DescribeReservedInstancesModificationsPages(params, -// func(page *DescribeReservedInstancesModificationsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeReservedInstancesModificationsPages(input *DescribeReservedInstancesModificationsInput, fn func(p *DescribeReservedInstancesModificationsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeReservedInstancesModificationsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeReservedInstancesModificationsOutput), lastPage) - }) -} - -const opDescribeReservedInstancesOfferings = "DescribeReservedInstancesOfferings" - -// DescribeReservedInstancesOfferingsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeReservedInstancesOfferings operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeReservedInstancesOfferings method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeReservedInstancesOfferingsRequest method. -// req, resp := client.DescribeReservedInstancesOfferingsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeReservedInstancesOfferingsRequest(input *DescribeReservedInstancesOfferingsInput) (req *request.Request, output *DescribeReservedInstancesOfferingsOutput) { - op := &request.Operation{ - Name: opDescribeReservedInstancesOfferings, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeReservedInstancesOfferingsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeReservedInstancesOfferingsOutput{} - req.Data = output - return -} - -// Describes Reserved Instance offerings that are available for purchase. With -// Reserved Instances, you purchase the right to launch instances for a period -// of time. During that time period, you do not receive insufficient capacity -// errors, and you pay a lower usage rate than the rate charged for On-Demand -// instances for the actual time used. -// -// If you have listed your own Reserved Instances for sale in the Reserved -// Instance Marketplace, they will be excluded from these results. This is to -// ensure that you do not purchase your own Reserved Instances. -// -// For more information, see Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeReservedInstancesOfferings(input *DescribeReservedInstancesOfferingsInput) (*DescribeReservedInstancesOfferingsOutput, error) { - req, out := c.DescribeReservedInstancesOfferingsRequest(input) - err := req.Send() - return out, err -} - -// DescribeReservedInstancesOfferingsPages iterates over the pages of a DescribeReservedInstancesOfferings operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeReservedInstancesOfferings method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeReservedInstancesOfferings operation. -// pageNum := 0 -// err := client.DescribeReservedInstancesOfferingsPages(params, -// func(page *DescribeReservedInstancesOfferingsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeReservedInstancesOfferingsPages(input *DescribeReservedInstancesOfferingsInput, fn func(p *DescribeReservedInstancesOfferingsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeReservedInstancesOfferingsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeReservedInstancesOfferingsOutput), lastPage) - }) -} - -const opDescribeRouteTables = "DescribeRouteTables" - -// DescribeRouteTablesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeRouteTables operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeRouteTables method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeRouteTablesRequest method. -// req, resp := client.DescribeRouteTablesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeRouteTablesRequest(input *DescribeRouteTablesInput) (req *request.Request, output *DescribeRouteTablesOutput) { - op := &request.Operation{ - Name: opDescribeRouteTables, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeRouteTablesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeRouteTablesOutput{} - req.Data = output - return -} - -// Describes one or more of your route tables. -// -// Each subnet in your VPC must be associated with a route table. If a subnet -// is not explicitly associated with any route table, it is implicitly associated -// with the main route table. This command does not return the subnet ID for -// implicit associations. -// -// For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeRouteTables(input *DescribeRouteTablesInput) (*DescribeRouteTablesOutput, error) { - req, out := c.DescribeRouteTablesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeScheduledInstanceAvailability = "DescribeScheduledInstanceAvailability" - -// DescribeScheduledInstanceAvailabilityRequest generates a "aws/request.Request" representing the -// client's request for the DescribeScheduledInstanceAvailability operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeScheduledInstanceAvailability method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeScheduledInstanceAvailabilityRequest method. -// req, resp := client.DescribeScheduledInstanceAvailabilityRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeScheduledInstanceAvailabilityRequest(input *DescribeScheduledInstanceAvailabilityInput) (req *request.Request, output *DescribeScheduledInstanceAvailabilityOutput) { - op := &request.Operation{ - Name: opDescribeScheduledInstanceAvailability, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeScheduledInstanceAvailabilityInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeScheduledInstanceAvailabilityOutput{} - req.Data = output - return -} - -// Finds available schedules that meet the specified criteria. -// -// You can search for an available schedule no more than 3 months in advance. -// You must meet the minimum required duration of 1,200 hours per year. For -// example, the minimum daily schedule is 4 hours, the minimum weekly schedule -// is 24 hours, and the minimum monthly schedule is 100 hours. -// -// After you find a schedule that meets your needs, call PurchaseScheduledInstances -// to purchase Scheduled Instances with that schedule. -func (c *EC2) DescribeScheduledInstanceAvailability(input *DescribeScheduledInstanceAvailabilityInput) (*DescribeScheduledInstanceAvailabilityOutput, error) { - req, out := c.DescribeScheduledInstanceAvailabilityRequest(input) - err := req.Send() - return out, err -} - -const opDescribeScheduledInstances = "DescribeScheduledInstances" - -// DescribeScheduledInstancesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeScheduledInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeScheduledInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeScheduledInstancesRequest method. -// req, resp := client.DescribeScheduledInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeScheduledInstancesRequest(input *DescribeScheduledInstancesInput) (req *request.Request, output *DescribeScheduledInstancesOutput) { - op := &request.Operation{ - Name: opDescribeScheduledInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeScheduledInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeScheduledInstancesOutput{} - req.Data = output - return -} - -// Describes one or more of your Scheduled Instances. -func (c *EC2) DescribeScheduledInstances(input *DescribeScheduledInstancesInput) (*DescribeScheduledInstancesOutput, error) { - req, out := c.DescribeScheduledInstancesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSecurityGroupReferences = "DescribeSecurityGroupReferences" - -// DescribeSecurityGroupReferencesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSecurityGroupReferences operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSecurityGroupReferences method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSecurityGroupReferencesRequest method. -// req, resp := client.DescribeSecurityGroupReferencesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSecurityGroupReferencesRequest(input *DescribeSecurityGroupReferencesInput) (req *request.Request, output *DescribeSecurityGroupReferencesOutput) { - op := &request.Operation{ - Name: opDescribeSecurityGroupReferences, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSecurityGroupReferencesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSecurityGroupReferencesOutput{} - req.Data = output - return -} - -// [EC2-VPC only] Describes the VPCs on the other side of a VPC peering connection -// that are referencing the security groups you've specified in this request. -func (c *EC2) DescribeSecurityGroupReferences(input *DescribeSecurityGroupReferencesInput) (*DescribeSecurityGroupReferencesOutput, error) { - req, out := c.DescribeSecurityGroupReferencesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSecurityGroups = "DescribeSecurityGroups" - -// DescribeSecurityGroupsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSecurityGroups operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSecurityGroups method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSecurityGroupsRequest method. -// req, resp := client.DescribeSecurityGroupsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSecurityGroupsRequest(input *DescribeSecurityGroupsInput) (req *request.Request, output *DescribeSecurityGroupsOutput) { - op := &request.Operation{ - Name: opDescribeSecurityGroups, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSecurityGroupsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSecurityGroupsOutput{} - req.Data = output - return -} - -// Describes one or more of your security groups. -// -// A security group is for use with instances either in the EC2-Classic platform -// or in a specific VPC. For more information, see Amazon EC2 Security Groups -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) -// in the Amazon Elastic Compute Cloud User Guide and Security Groups for Your -// VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_SecurityGroups.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeSecurityGroups(input *DescribeSecurityGroupsInput) (*DescribeSecurityGroupsOutput, error) { - req, out := c.DescribeSecurityGroupsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSnapshotAttribute = "DescribeSnapshotAttribute" - -// DescribeSnapshotAttributeRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSnapshotAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSnapshotAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSnapshotAttributeRequest method. -// req, resp := client.DescribeSnapshotAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSnapshotAttributeRequest(input *DescribeSnapshotAttributeInput) (req *request.Request, output *DescribeSnapshotAttributeOutput) { - op := &request.Operation{ - Name: opDescribeSnapshotAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSnapshotAttributeInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSnapshotAttributeOutput{} - req.Data = output - return -} - -// Describes the specified attribute of the specified snapshot. You can specify -// only one attribute at a time. -// -// For more information about EBS snapshots, see Amazon EBS Snapshots (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSSnapshots.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeSnapshotAttribute(input *DescribeSnapshotAttributeInput) (*DescribeSnapshotAttributeOutput, error) { - req, out := c.DescribeSnapshotAttributeRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSnapshots = "DescribeSnapshots" - -// DescribeSnapshotsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSnapshots operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSnapshots method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSnapshotsRequest method. -// req, resp := client.DescribeSnapshotsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSnapshotsRequest(input *DescribeSnapshotsInput) (req *request.Request, output *DescribeSnapshotsOutput) { - op := &request.Operation{ - Name: opDescribeSnapshots, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeSnapshotsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSnapshotsOutput{} - req.Data = output - return -} - -// Describes one or more of the EBS snapshots available to you. Available snapshots -// include public snapshots available for any AWS account to launch, private -// snapshots that you own, and private snapshots owned by another AWS account -// but for which you've been given explicit create volume permissions. -// -// The create volume permissions fall into the following categories: -// -// public: The owner of the snapshot granted create volume permissions for -// the snapshot to the all group. All AWS accounts have create volume permissions -// for these snapshots. -// -// explicit: The owner of the snapshot granted create volume permissions -// to a specific AWS account. -// -// implicit: An AWS account has implicit create volume permissions for all -// snapshots it owns. -// -// The list of snapshots returned can be modified by specifying snapshot -// IDs, snapshot owners, or AWS accounts with create volume permissions. If -// no options are specified, Amazon EC2 returns all snapshots for which you -// have create volume permissions. -// -// If you specify one or more snapshot IDs, only snapshots that have the specified -// IDs are returned. If you specify an invalid snapshot ID, an error is returned. -// If you specify a snapshot ID for which you do not have access, it is not -// included in the returned results. -// -// If you specify one or more snapshot owners using the OwnerIds option, only -// snapshots from the specified owners and for which you have access are returned. -// The results can include the AWS account IDs of the specified owners, amazon -// for snapshots owned by Amazon, or self for snapshots that you own. -// -// If you specify a list of restorable users, only snapshots with create snapshot -// permissions for those users are returned. You can specify AWS account IDs -// (if you own the snapshots), self for snapshots for which you own or have -// explicit permissions, or all for public snapshots. -// -// If you are describing a long list of snapshots, you can paginate the output -// to make the list more manageable. The MaxResults parameter sets the maximum -// number of results returned in a single page. If the list of results exceeds -// your MaxResults value, then that number of results is returned along with -// a NextToken value that can be passed to a subsequent DescribeSnapshots request -// to retrieve the remaining results. -// -// For more information about EBS snapshots, see Amazon EBS Snapshots (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSSnapshots.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeSnapshots(input *DescribeSnapshotsInput) (*DescribeSnapshotsOutput, error) { - req, out := c.DescribeSnapshotsRequest(input) - err := req.Send() - return out, err -} - -// DescribeSnapshotsPages iterates over the pages of a DescribeSnapshots operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeSnapshots method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeSnapshots operation. -// pageNum := 0 -// err := client.DescribeSnapshotsPages(params, -// func(page *DescribeSnapshotsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeSnapshotsPages(input *DescribeSnapshotsInput, fn func(p *DescribeSnapshotsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeSnapshotsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeSnapshotsOutput), lastPage) - }) -} - -const opDescribeSpotDatafeedSubscription = "DescribeSpotDatafeedSubscription" - -// DescribeSpotDatafeedSubscriptionRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSpotDatafeedSubscription operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSpotDatafeedSubscription method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSpotDatafeedSubscriptionRequest method. -// req, resp := client.DescribeSpotDatafeedSubscriptionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSpotDatafeedSubscriptionRequest(input *DescribeSpotDatafeedSubscriptionInput) (req *request.Request, output *DescribeSpotDatafeedSubscriptionOutput) { - op := &request.Operation{ - Name: opDescribeSpotDatafeedSubscription, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSpotDatafeedSubscriptionInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSpotDatafeedSubscriptionOutput{} - req.Data = output - return -} - -// Describes the data feed for Spot instances. For more information, see Spot -// Instance Data Feed (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-data-feeds.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeSpotDatafeedSubscription(input *DescribeSpotDatafeedSubscriptionInput) (*DescribeSpotDatafeedSubscriptionOutput, error) { - req, out := c.DescribeSpotDatafeedSubscriptionRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSpotFleetInstances = "DescribeSpotFleetInstances" - -// DescribeSpotFleetInstancesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSpotFleetInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSpotFleetInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSpotFleetInstancesRequest method. -// req, resp := client.DescribeSpotFleetInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSpotFleetInstancesRequest(input *DescribeSpotFleetInstancesInput) (req *request.Request, output *DescribeSpotFleetInstancesOutput) { - op := &request.Operation{ - Name: opDescribeSpotFleetInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSpotFleetInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSpotFleetInstancesOutput{} - req.Data = output - return -} - -// Describes the running instances for the specified Spot fleet. -func (c *EC2) DescribeSpotFleetInstances(input *DescribeSpotFleetInstancesInput) (*DescribeSpotFleetInstancesOutput, error) { - req, out := c.DescribeSpotFleetInstancesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSpotFleetRequestHistory = "DescribeSpotFleetRequestHistory" - -// DescribeSpotFleetRequestHistoryRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSpotFleetRequestHistory operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSpotFleetRequestHistory method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSpotFleetRequestHistoryRequest method. -// req, resp := client.DescribeSpotFleetRequestHistoryRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSpotFleetRequestHistoryRequest(input *DescribeSpotFleetRequestHistoryInput) (req *request.Request, output *DescribeSpotFleetRequestHistoryOutput) { - op := &request.Operation{ - Name: opDescribeSpotFleetRequestHistory, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSpotFleetRequestHistoryInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSpotFleetRequestHistoryOutput{} - req.Data = output - return -} - -// Describes the events for the specified Spot fleet request during the specified -// time. -// -// Spot fleet events are delayed by up to 30 seconds before they can be described. -// This ensures that you can query by the last evaluated time and not miss a -// recorded event. -func (c *EC2) DescribeSpotFleetRequestHistory(input *DescribeSpotFleetRequestHistoryInput) (*DescribeSpotFleetRequestHistoryOutput, error) { - req, out := c.DescribeSpotFleetRequestHistoryRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSpotFleetRequests = "DescribeSpotFleetRequests" - -// DescribeSpotFleetRequestsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSpotFleetRequests operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSpotFleetRequests method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSpotFleetRequestsRequest method. -// req, resp := client.DescribeSpotFleetRequestsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSpotFleetRequestsRequest(input *DescribeSpotFleetRequestsInput) (req *request.Request, output *DescribeSpotFleetRequestsOutput) { - op := &request.Operation{ - Name: opDescribeSpotFleetRequests, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeSpotFleetRequestsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSpotFleetRequestsOutput{} - req.Data = output - return -} - -// Describes your Spot fleet requests. -// -// Spot fleet requests are deleted 48 hours after they are canceled and their -// instances are terminated. -func (c *EC2) DescribeSpotFleetRequests(input *DescribeSpotFleetRequestsInput) (*DescribeSpotFleetRequestsOutput, error) { - req, out := c.DescribeSpotFleetRequestsRequest(input) - err := req.Send() - return out, err -} - -// DescribeSpotFleetRequestsPages iterates over the pages of a DescribeSpotFleetRequests operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeSpotFleetRequests method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeSpotFleetRequests operation. -// pageNum := 0 -// err := client.DescribeSpotFleetRequestsPages(params, -// func(page *DescribeSpotFleetRequestsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeSpotFleetRequestsPages(input *DescribeSpotFleetRequestsInput, fn func(p *DescribeSpotFleetRequestsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeSpotFleetRequestsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeSpotFleetRequestsOutput), lastPage) - }) -} - -const opDescribeSpotInstanceRequests = "DescribeSpotInstanceRequests" - -// DescribeSpotInstanceRequestsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSpotInstanceRequests operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSpotInstanceRequests method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSpotInstanceRequestsRequest method. -// req, resp := client.DescribeSpotInstanceRequestsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSpotInstanceRequestsRequest(input *DescribeSpotInstanceRequestsInput) (req *request.Request, output *DescribeSpotInstanceRequestsOutput) { - op := &request.Operation{ - Name: opDescribeSpotInstanceRequests, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSpotInstanceRequestsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSpotInstanceRequestsOutput{} - req.Data = output - return -} - -// Describes the Spot instance requests that belong to your account. Spot instances -// are instances that Amazon EC2 launches when the bid price that you specify -// exceeds the current Spot price. Amazon EC2 periodically sets the Spot price -// based on available Spot instance capacity and current Spot instance requests. -// For more information, see Spot Instance Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// You can use DescribeSpotInstanceRequests to find a running Spot instance -// by examining the response. If the status of the Spot instance is fulfilled, -// the instance ID appears in the response and contains the identifier of the -// instance. Alternatively, you can use DescribeInstances with a filter to look -// for instances where the instance lifecycle is spot. -// -// Spot instance requests are deleted 4 hours after they are canceled and their -// instances are terminated. -func (c *EC2) DescribeSpotInstanceRequests(input *DescribeSpotInstanceRequestsInput) (*DescribeSpotInstanceRequestsOutput, error) { - req, out := c.DescribeSpotInstanceRequestsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSpotPriceHistory = "DescribeSpotPriceHistory" - -// DescribeSpotPriceHistoryRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSpotPriceHistory operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSpotPriceHistory method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSpotPriceHistoryRequest method. -// req, resp := client.DescribeSpotPriceHistoryRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSpotPriceHistoryRequest(input *DescribeSpotPriceHistoryInput) (req *request.Request, output *DescribeSpotPriceHistoryOutput) { - op := &request.Operation{ - Name: opDescribeSpotPriceHistory, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeSpotPriceHistoryInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSpotPriceHistoryOutput{} - req.Data = output - return -} - -// Describes the Spot price history. The prices returned are listed in chronological -// order, from the oldest to the most recent, for up to the past 90 days. For -// more information, see Spot Instance Pricing History (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-spot-instances-history.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// When you specify a start and end time, this operation returns the prices -// of the instance types within the time range that you specified and the time -// when the price changed. The price is valid within the time period that you -// specified; the response merely indicates the last time that the price changed. -func (c *EC2) DescribeSpotPriceHistory(input *DescribeSpotPriceHistoryInput) (*DescribeSpotPriceHistoryOutput, error) { - req, out := c.DescribeSpotPriceHistoryRequest(input) - err := req.Send() - return out, err -} - -// DescribeSpotPriceHistoryPages iterates over the pages of a DescribeSpotPriceHistory operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeSpotPriceHistory method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeSpotPriceHistory operation. -// pageNum := 0 -// err := client.DescribeSpotPriceHistoryPages(params, -// func(page *DescribeSpotPriceHistoryOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeSpotPriceHistoryPages(input *DescribeSpotPriceHistoryInput, fn func(p *DescribeSpotPriceHistoryOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeSpotPriceHistoryRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeSpotPriceHistoryOutput), lastPage) - }) -} - -const opDescribeStaleSecurityGroups = "DescribeStaleSecurityGroups" - -// DescribeStaleSecurityGroupsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeStaleSecurityGroups operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeStaleSecurityGroups method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeStaleSecurityGroupsRequest method. -// req, resp := client.DescribeStaleSecurityGroupsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeStaleSecurityGroupsRequest(input *DescribeStaleSecurityGroupsInput) (req *request.Request, output *DescribeStaleSecurityGroupsOutput) { - op := &request.Operation{ - Name: opDescribeStaleSecurityGroups, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeStaleSecurityGroupsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeStaleSecurityGroupsOutput{} - req.Data = output - return -} - -// [EC2-VPC only] Describes the stale security group rules for security groups -// in a specified VPC. Rules are stale when they reference a deleted security -// group in a peer VPC, or a security group in a peer VPC for which the VPC -// peering connection has been deleted. -func (c *EC2) DescribeStaleSecurityGroups(input *DescribeStaleSecurityGroupsInput) (*DescribeStaleSecurityGroupsOutput, error) { - req, out := c.DescribeStaleSecurityGroupsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeSubnets = "DescribeSubnets" - -// DescribeSubnetsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeSubnets operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeSubnets method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeSubnetsRequest method. -// req, resp := client.DescribeSubnetsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeSubnetsRequest(input *DescribeSubnetsInput) (req *request.Request, output *DescribeSubnetsOutput) { - op := &request.Operation{ - Name: opDescribeSubnets, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeSubnetsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeSubnetsOutput{} - req.Data = output - return -} - -// Describes one or more of your subnets. -// -// For more information about subnets, see Your VPC and Subnets (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeSubnets(input *DescribeSubnetsInput) (*DescribeSubnetsOutput, error) { - req, out := c.DescribeSubnetsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeTags = "DescribeTags" - -// DescribeTagsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeTags operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeTags method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeTagsRequest method. -// req, resp := client.DescribeTagsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeTagsRequest(input *DescribeTagsInput) (req *request.Request, output *DescribeTagsOutput) { - op := &request.Operation{ - Name: opDescribeTags, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeTagsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeTagsOutput{} - req.Data = output - return -} - -// Describes one or more of the tags for your EC2 resources. -// -// For more information about tags, see Tagging Your Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeTags(input *DescribeTagsInput) (*DescribeTagsOutput, error) { - req, out := c.DescribeTagsRequest(input) - err := req.Send() - return out, err -} - -// DescribeTagsPages iterates over the pages of a DescribeTags operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeTags method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeTags operation. -// pageNum := 0 -// err := client.DescribeTagsPages(params, -// func(page *DescribeTagsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeTagsPages(input *DescribeTagsInput, fn func(p *DescribeTagsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeTagsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeTagsOutput), lastPage) - }) -} - -const opDescribeVolumeAttribute = "DescribeVolumeAttribute" - -// DescribeVolumeAttributeRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVolumeAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVolumeAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVolumeAttributeRequest method. -// req, resp := client.DescribeVolumeAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVolumeAttributeRequest(input *DescribeVolumeAttributeInput) (req *request.Request, output *DescribeVolumeAttributeOutput) { - op := &request.Operation{ - Name: opDescribeVolumeAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVolumeAttributeInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVolumeAttributeOutput{} - req.Data = output - return -} - -// Describes the specified attribute of the specified volume. You can specify -// only one attribute at a time. -// -// For more information about EBS volumes, see Amazon EBS Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumes.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeVolumeAttribute(input *DescribeVolumeAttributeInput) (*DescribeVolumeAttributeOutput, error) { - req, out := c.DescribeVolumeAttributeRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVolumeStatus = "DescribeVolumeStatus" - -// DescribeVolumeStatusRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVolumeStatus operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVolumeStatus method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVolumeStatusRequest method. -// req, resp := client.DescribeVolumeStatusRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVolumeStatusRequest(input *DescribeVolumeStatusInput) (req *request.Request, output *DescribeVolumeStatusOutput) { - op := &request.Operation{ - Name: opDescribeVolumeStatus, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeVolumeStatusInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVolumeStatusOutput{} - req.Data = output - return -} - -// Describes the status of the specified volumes. Volume status provides the -// result of the checks performed on your volumes to determine events that can -// impair the performance of your volumes. The performance of a volume can be -// affected if an issue occurs on the volume's underlying host. If the volume's -// underlying host experiences a power outage or system issue, after the system -// is restored, there could be data inconsistencies on the volume. Volume events -// notify you if this occurs. Volume actions notify you if any action needs -// to be taken in response to the event. -// -// The DescribeVolumeStatus operation provides the following information about -// the specified volumes: -// -// Status: Reflects the current status of the volume. The possible values -// are ok, impaired , warning, or insufficient-data. If all checks pass, the -// overall status of the volume is ok. If the check fails, the overall status -// is impaired. If the status is insufficient-data, then the checks may still -// be taking place on your volume at the time. We recommend that you retry the -// request. For more information on volume status, see Monitoring the Status -// of Your Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/monitoring-volume-status.html). -// -// Events: Reflect the cause of a volume status and may require you to take -// action. For example, if your volume returns an impaired status, then the -// volume event might be potential-data-inconsistency. This means that your -// volume has been affected by an issue with the underlying host, has all I/O -// operations disabled, and may have inconsistent data. -// -// Actions: Reflect the actions you may have to take in response to an event. -// For example, if the status of the volume is impaired and the volume event -// shows potential-data-inconsistency, then the action shows enable-volume-io. -// This means that you may want to enable the I/O operations for the volume -// by calling the EnableVolumeIO action and then check the volume for data consistency. -// -// Volume status is based on the volume status checks, and does not reflect -// the volume state. Therefore, volume status does not indicate volumes in the -// error state (for example, when a volume is incapable of accepting I/O.) -func (c *EC2) DescribeVolumeStatus(input *DescribeVolumeStatusInput) (*DescribeVolumeStatusOutput, error) { - req, out := c.DescribeVolumeStatusRequest(input) - err := req.Send() - return out, err -} - -// DescribeVolumeStatusPages iterates over the pages of a DescribeVolumeStatus operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeVolumeStatus method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeVolumeStatus operation. -// pageNum := 0 -// err := client.DescribeVolumeStatusPages(params, -// func(page *DescribeVolumeStatusOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeVolumeStatusPages(input *DescribeVolumeStatusInput, fn func(p *DescribeVolumeStatusOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeVolumeStatusRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeVolumeStatusOutput), lastPage) - }) -} - -const opDescribeVolumes = "DescribeVolumes" - -// DescribeVolumesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVolumes operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVolumes method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVolumesRequest method. -// req, resp := client.DescribeVolumesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVolumesRequest(input *DescribeVolumesInput) (req *request.Request, output *DescribeVolumesOutput) { - op := &request.Operation{ - Name: opDescribeVolumes, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"NextToken"}, - OutputTokens: []string{"NextToken"}, - LimitToken: "MaxResults", - TruncationToken: "", - }, - } - - if input == nil { - input = &DescribeVolumesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVolumesOutput{} - req.Data = output - return -} - -// Describes the specified EBS volumes. -// -// If you are describing a long list of volumes, you can paginate the output -// to make the list more manageable. The MaxResults parameter sets the maximum -// number of results returned in a single page. If the list of results exceeds -// your MaxResults value, then that number of results is returned along with -// a NextToken value that can be passed to a subsequent DescribeVolumes request -// to retrieve the remaining results. -// -// For more information about EBS volumes, see Amazon EBS Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumes.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeVolumes(input *DescribeVolumesInput) (*DescribeVolumesOutput, error) { - req, out := c.DescribeVolumesRequest(input) - err := req.Send() - return out, err -} - -// DescribeVolumesPages iterates over the pages of a DescribeVolumes operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeVolumes method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeVolumes operation. -// pageNum := 0 -// err := client.DescribeVolumesPages(params, -// func(page *DescribeVolumesOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *EC2) DescribeVolumesPages(input *DescribeVolumesInput, fn func(p *DescribeVolumesOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeVolumesRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeVolumesOutput), lastPage) - }) -} - -const opDescribeVpcAttribute = "DescribeVpcAttribute" - -// DescribeVpcAttributeRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpcAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpcAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpcAttributeRequest method. -// req, resp := client.DescribeVpcAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpcAttributeRequest(input *DescribeVpcAttributeInput) (req *request.Request, output *DescribeVpcAttributeOutput) { - op := &request.Operation{ - Name: opDescribeVpcAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpcAttributeInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpcAttributeOutput{} - req.Data = output - return -} - -// Describes the specified attribute of the specified VPC. You can specify only -// one attribute at a time. -func (c *EC2) DescribeVpcAttribute(input *DescribeVpcAttributeInput) (*DescribeVpcAttributeOutput, error) { - req, out := c.DescribeVpcAttributeRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpcClassicLink = "DescribeVpcClassicLink" - -// DescribeVpcClassicLinkRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpcClassicLink operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpcClassicLink method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpcClassicLinkRequest method. -// req, resp := client.DescribeVpcClassicLinkRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpcClassicLinkRequest(input *DescribeVpcClassicLinkInput) (req *request.Request, output *DescribeVpcClassicLinkOutput) { - op := &request.Operation{ - Name: opDescribeVpcClassicLink, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpcClassicLinkInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpcClassicLinkOutput{} - req.Data = output - return -} - -// Describes the ClassicLink status of one or more VPCs. -func (c *EC2) DescribeVpcClassicLink(input *DescribeVpcClassicLinkInput) (*DescribeVpcClassicLinkOutput, error) { - req, out := c.DescribeVpcClassicLinkRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpcClassicLinkDnsSupport = "DescribeVpcClassicLinkDnsSupport" - -// DescribeVpcClassicLinkDnsSupportRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpcClassicLinkDnsSupport operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpcClassicLinkDnsSupport method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpcClassicLinkDnsSupportRequest method. -// req, resp := client.DescribeVpcClassicLinkDnsSupportRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpcClassicLinkDnsSupportRequest(input *DescribeVpcClassicLinkDnsSupportInput) (req *request.Request, output *DescribeVpcClassicLinkDnsSupportOutput) { - op := &request.Operation{ - Name: opDescribeVpcClassicLinkDnsSupport, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpcClassicLinkDnsSupportInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpcClassicLinkDnsSupportOutput{} - req.Data = output - return -} - -// Describes the ClassicLink DNS support status of one or more VPCs. If enabled, -// the DNS hostname of a linked EC2-Classic instance resolves to its private -// IP address when addressed from an instance in the VPC to which it's linked. -// Similarly, the DNS hostname of an instance in a VPC resolves to its private -// IP address when addressed from a linked EC2-Classic instance. For more information -// about ClassicLink, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DescribeVpcClassicLinkDnsSupport(input *DescribeVpcClassicLinkDnsSupportInput) (*DescribeVpcClassicLinkDnsSupportOutput, error) { - req, out := c.DescribeVpcClassicLinkDnsSupportRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpcEndpointServices = "DescribeVpcEndpointServices" - -// DescribeVpcEndpointServicesRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpcEndpointServices operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpcEndpointServices method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpcEndpointServicesRequest method. -// req, resp := client.DescribeVpcEndpointServicesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpcEndpointServicesRequest(input *DescribeVpcEndpointServicesInput) (req *request.Request, output *DescribeVpcEndpointServicesOutput) { - op := &request.Operation{ - Name: opDescribeVpcEndpointServices, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpcEndpointServicesInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpcEndpointServicesOutput{} - req.Data = output - return -} - -// Describes all supported AWS services that can be specified when creating -// a VPC endpoint. -func (c *EC2) DescribeVpcEndpointServices(input *DescribeVpcEndpointServicesInput) (*DescribeVpcEndpointServicesOutput, error) { - req, out := c.DescribeVpcEndpointServicesRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpcEndpoints = "DescribeVpcEndpoints" - -// DescribeVpcEndpointsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpcEndpoints operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpcEndpoints method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpcEndpointsRequest method. -// req, resp := client.DescribeVpcEndpointsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpcEndpointsRequest(input *DescribeVpcEndpointsInput) (req *request.Request, output *DescribeVpcEndpointsOutput) { - op := &request.Operation{ - Name: opDescribeVpcEndpoints, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpcEndpointsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpcEndpointsOutput{} - req.Data = output - return -} - -// Describes one or more of your VPC endpoints. -func (c *EC2) DescribeVpcEndpoints(input *DescribeVpcEndpointsInput) (*DescribeVpcEndpointsOutput, error) { - req, out := c.DescribeVpcEndpointsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpcPeeringConnections = "DescribeVpcPeeringConnections" - -// DescribeVpcPeeringConnectionsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpcPeeringConnections operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpcPeeringConnections method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpcPeeringConnectionsRequest method. -// req, resp := client.DescribeVpcPeeringConnectionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpcPeeringConnectionsRequest(input *DescribeVpcPeeringConnectionsInput) (req *request.Request, output *DescribeVpcPeeringConnectionsOutput) { - op := &request.Operation{ - Name: opDescribeVpcPeeringConnections, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpcPeeringConnectionsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpcPeeringConnectionsOutput{} - req.Data = output - return -} - -// Describes one or more of your VPC peering connections. -func (c *EC2) DescribeVpcPeeringConnections(input *DescribeVpcPeeringConnectionsInput) (*DescribeVpcPeeringConnectionsOutput, error) { - req, out := c.DescribeVpcPeeringConnectionsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpcs = "DescribeVpcs" - -// DescribeVpcsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpcs operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpcs method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpcsRequest method. -// req, resp := client.DescribeVpcsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpcsRequest(input *DescribeVpcsInput) (req *request.Request, output *DescribeVpcsOutput) { - op := &request.Operation{ - Name: opDescribeVpcs, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpcsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpcsOutput{} - req.Data = output - return -} - -// Describes one or more of your VPCs. -func (c *EC2) DescribeVpcs(input *DescribeVpcsInput) (*DescribeVpcsOutput, error) { - req, out := c.DescribeVpcsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpnConnections = "DescribeVpnConnections" - -// DescribeVpnConnectionsRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpnConnections operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpnConnections method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpnConnectionsRequest method. -// req, resp := client.DescribeVpnConnectionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpnConnectionsRequest(input *DescribeVpnConnectionsInput) (req *request.Request, output *DescribeVpnConnectionsOutput) { - op := &request.Operation{ - Name: opDescribeVpnConnections, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpnConnectionsInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpnConnectionsOutput{} - req.Data = output - return -} - -// Describes one or more of your VPN connections. -// -// For more information about VPN connections, see Adding a Hardware Virtual -// Private Gateway to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeVpnConnections(input *DescribeVpnConnectionsInput) (*DescribeVpnConnectionsOutput, error) { - req, out := c.DescribeVpnConnectionsRequest(input) - err := req.Send() - return out, err -} - -const opDescribeVpnGateways = "DescribeVpnGateways" - -// DescribeVpnGatewaysRequest generates a "aws/request.Request" representing the -// client's request for the DescribeVpnGateways operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeVpnGateways method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeVpnGatewaysRequest method. -// req, resp := client.DescribeVpnGatewaysRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DescribeVpnGatewaysRequest(input *DescribeVpnGatewaysInput) (req *request.Request, output *DescribeVpnGatewaysOutput) { - op := &request.Operation{ - Name: opDescribeVpnGateways, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DescribeVpnGatewaysInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeVpnGatewaysOutput{} - req.Data = output - return -} - -// Describes one or more of your virtual private gateways. -// -// For more information about virtual private gateways, see Adding an IPsec -// Hardware VPN to Your VPC (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_VPN.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DescribeVpnGateways(input *DescribeVpnGatewaysInput) (*DescribeVpnGatewaysOutput, error) { - req, out := c.DescribeVpnGatewaysRequest(input) - err := req.Send() - return out, err -} - -const opDetachClassicLinkVpc = "DetachClassicLinkVpc" - -// DetachClassicLinkVpcRequest generates a "aws/request.Request" representing the -// client's request for the DetachClassicLinkVpc operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DetachClassicLinkVpc method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DetachClassicLinkVpcRequest method. -// req, resp := client.DetachClassicLinkVpcRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DetachClassicLinkVpcRequest(input *DetachClassicLinkVpcInput) (req *request.Request, output *DetachClassicLinkVpcOutput) { - op := &request.Operation{ - Name: opDetachClassicLinkVpc, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DetachClassicLinkVpcInput{} - } - - req = c.newRequest(op, input, output) - output = &DetachClassicLinkVpcOutput{} - req.Data = output - return -} - -// Unlinks (detaches) a linked EC2-Classic instance from a VPC. After the instance -// has been unlinked, the VPC security groups are no longer associated with -// it. An instance is automatically unlinked from a VPC when it's stopped. -func (c *EC2) DetachClassicLinkVpc(input *DetachClassicLinkVpcInput) (*DetachClassicLinkVpcOutput, error) { - req, out := c.DetachClassicLinkVpcRequest(input) - err := req.Send() - return out, err -} - -const opDetachInternetGateway = "DetachInternetGateway" - -// DetachInternetGatewayRequest generates a "aws/request.Request" representing the -// client's request for the DetachInternetGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DetachInternetGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DetachInternetGatewayRequest method. -// req, resp := client.DetachInternetGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DetachInternetGatewayRequest(input *DetachInternetGatewayInput) (req *request.Request, output *DetachInternetGatewayOutput) { - op := &request.Operation{ - Name: opDetachInternetGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DetachInternetGatewayInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DetachInternetGatewayOutput{} - req.Data = output - return -} - -// Detaches an Internet gateway from a VPC, disabling connectivity between the -// Internet and the VPC. The VPC must not contain any running instances with -// Elastic IP addresses. -func (c *EC2) DetachInternetGateway(input *DetachInternetGatewayInput) (*DetachInternetGatewayOutput, error) { - req, out := c.DetachInternetGatewayRequest(input) - err := req.Send() - return out, err -} - -const opDetachNetworkInterface = "DetachNetworkInterface" - -// DetachNetworkInterfaceRequest generates a "aws/request.Request" representing the -// client's request for the DetachNetworkInterface operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DetachNetworkInterface method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DetachNetworkInterfaceRequest method. -// req, resp := client.DetachNetworkInterfaceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DetachNetworkInterfaceRequest(input *DetachNetworkInterfaceInput) (req *request.Request, output *DetachNetworkInterfaceOutput) { - op := &request.Operation{ - Name: opDetachNetworkInterface, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DetachNetworkInterfaceInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DetachNetworkInterfaceOutput{} - req.Data = output - return -} - -// Detaches a network interface from an instance. -func (c *EC2) DetachNetworkInterface(input *DetachNetworkInterfaceInput) (*DetachNetworkInterfaceOutput, error) { - req, out := c.DetachNetworkInterfaceRequest(input) - err := req.Send() - return out, err -} - -const opDetachVolume = "DetachVolume" - -// DetachVolumeRequest generates a "aws/request.Request" representing the -// client's request for the DetachVolume operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DetachVolume method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DetachVolumeRequest method. -// req, resp := client.DetachVolumeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DetachVolumeRequest(input *DetachVolumeInput) (req *request.Request, output *VolumeAttachment) { - op := &request.Operation{ - Name: opDetachVolume, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DetachVolumeInput{} - } - - req = c.newRequest(op, input, output) - output = &VolumeAttachment{} - req.Data = output - return -} - -// Detaches an EBS volume from an instance. Make sure to unmount any file systems -// on the device within your operating system before detaching the volume. Failure -// to do so can result in the volume becoming stuck in the busy state while -// detaching. If this happens, detachment can be delayed indefinitely until -// you unmount the volume, force detachment, reboot the instance, or all three. -// If an EBS volume is the root device of an instance, it can't be detached -// while the instance is running. To detach the root volume, stop the instance -// first. -// -// When a volume with an AWS Marketplace product code is detached from an instance, -// the product code is no longer associated with the instance. -// -// For more information, see Detaching an Amazon EBS Volume (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-detaching-volume.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DetachVolume(input *DetachVolumeInput) (*VolumeAttachment, error) { - req, out := c.DetachVolumeRequest(input) - err := req.Send() - return out, err -} - -const opDetachVpnGateway = "DetachVpnGateway" - -// DetachVpnGatewayRequest generates a "aws/request.Request" representing the -// client's request for the DetachVpnGateway operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DetachVpnGateway method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DetachVpnGatewayRequest method. -// req, resp := client.DetachVpnGatewayRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DetachVpnGatewayRequest(input *DetachVpnGatewayInput) (req *request.Request, output *DetachVpnGatewayOutput) { - op := &request.Operation{ - Name: opDetachVpnGateway, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DetachVpnGatewayInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DetachVpnGatewayOutput{} - req.Data = output - return -} - -// Detaches a virtual private gateway from a VPC. You do this if you're planning -// to turn off the VPC and not use it anymore. You can confirm a virtual private -// gateway has been completely detached from a VPC by describing the virtual -// private gateway (any attachments to the virtual private gateway are also -// described). -// -// You must wait for the attachment's state to switch to detached before you -// can delete the VPC or attach a different VPC to the virtual private gateway. -func (c *EC2) DetachVpnGateway(input *DetachVpnGatewayInput) (*DetachVpnGatewayOutput, error) { - req, out := c.DetachVpnGatewayRequest(input) - err := req.Send() - return out, err -} - -const opDisableVgwRoutePropagation = "DisableVgwRoutePropagation" - -// DisableVgwRoutePropagationRequest generates a "aws/request.Request" representing the -// client's request for the DisableVgwRoutePropagation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DisableVgwRoutePropagation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DisableVgwRoutePropagationRequest method. -// req, resp := client.DisableVgwRoutePropagationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DisableVgwRoutePropagationRequest(input *DisableVgwRoutePropagationInput) (req *request.Request, output *DisableVgwRoutePropagationOutput) { - op := &request.Operation{ - Name: opDisableVgwRoutePropagation, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DisableVgwRoutePropagationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DisableVgwRoutePropagationOutput{} - req.Data = output - return -} - -// Disables a virtual private gateway (VGW) from propagating routes to a specified -// route table of a VPC. -func (c *EC2) DisableVgwRoutePropagation(input *DisableVgwRoutePropagationInput) (*DisableVgwRoutePropagationOutput, error) { - req, out := c.DisableVgwRoutePropagationRequest(input) - err := req.Send() - return out, err -} - -const opDisableVpcClassicLink = "DisableVpcClassicLink" - -// DisableVpcClassicLinkRequest generates a "aws/request.Request" representing the -// client's request for the DisableVpcClassicLink operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DisableVpcClassicLink method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DisableVpcClassicLinkRequest method. -// req, resp := client.DisableVpcClassicLinkRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DisableVpcClassicLinkRequest(input *DisableVpcClassicLinkInput) (req *request.Request, output *DisableVpcClassicLinkOutput) { - op := &request.Operation{ - Name: opDisableVpcClassicLink, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DisableVpcClassicLinkInput{} - } - - req = c.newRequest(op, input, output) - output = &DisableVpcClassicLinkOutput{} - req.Data = output - return -} - -// Disables ClassicLink for a VPC. You cannot disable ClassicLink for a VPC -// that has EC2-Classic instances linked to it. -func (c *EC2) DisableVpcClassicLink(input *DisableVpcClassicLinkInput) (*DisableVpcClassicLinkOutput, error) { - req, out := c.DisableVpcClassicLinkRequest(input) - err := req.Send() - return out, err -} - -const opDisableVpcClassicLinkDnsSupport = "DisableVpcClassicLinkDnsSupport" - -// DisableVpcClassicLinkDnsSupportRequest generates a "aws/request.Request" representing the -// client's request for the DisableVpcClassicLinkDnsSupport operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DisableVpcClassicLinkDnsSupport method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DisableVpcClassicLinkDnsSupportRequest method. -// req, resp := client.DisableVpcClassicLinkDnsSupportRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DisableVpcClassicLinkDnsSupportRequest(input *DisableVpcClassicLinkDnsSupportInput) (req *request.Request, output *DisableVpcClassicLinkDnsSupportOutput) { - op := &request.Operation{ - Name: opDisableVpcClassicLinkDnsSupport, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DisableVpcClassicLinkDnsSupportInput{} - } - - req = c.newRequest(op, input, output) - output = &DisableVpcClassicLinkDnsSupportOutput{} - req.Data = output - return -} - -// Disables ClassicLink DNS support for a VPC. If disabled, DNS hostnames resolve -// to public IP addresses when addressed between a linked EC2-Classic instance -// and instances in the VPC to which it's linked. For more information about -// ClassicLink, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) DisableVpcClassicLinkDnsSupport(input *DisableVpcClassicLinkDnsSupportInput) (*DisableVpcClassicLinkDnsSupportOutput, error) { - req, out := c.DisableVpcClassicLinkDnsSupportRequest(input) - err := req.Send() - return out, err -} - -const opDisassociateAddress = "DisassociateAddress" - -// DisassociateAddressRequest generates a "aws/request.Request" representing the -// client's request for the DisassociateAddress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DisassociateAddress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DisassociateAddressRequest method. -// req, resp := client.DisassociateAddressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DisassociateAddressRequest(input *DisassociateAddressInput) (req *request.Request, output *DisassociateAddressOutput) { - op := &request.Operation{ - Name: opDisassociateAddress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DisassociateAddressInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DisassociateAddressOutput{} - req.Data = output - return -} - -// Disassociates an Elastic IP address from the instance or network interface -// it's associated with. -// -// An Elastic IP address is for use in either the EC2-Classic platform or in -// a VPC. For more information, see Elastic IP Addresses (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// This is an idempotent operation. If you perform the operation more than -// once, Amazon EC2 doesn't return an error. -func (c *EC2) DisassociateAddress(input *DisassociateAddressInput) (*DisassociateAddressOutput, error) { - req, out := c.DisassociateAddressRequest(input) - err := req.Send() - return out, err -} - -const opDisassociateRouteTable = "DisassociateRouteTable" - -// DisassociateRouteTableRequest generates a "aws/request.Request" representing the -// client's request for the DisassociateRouteTable operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DisassociateRouteTable method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DisassociateRouteTableRequest method. -// req, resp := client.DisassociateRouteTableRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) DisassociateRouteTableRequest(input *DisassociateRouteTableInput) (req *request.Request, output *DisassociateRouteTableOutput) { - op := &request.Operation{ - Name: opDisassociateRouteTable, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DisassociateRouteTableInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DisassociateRouteTableOutput{} - req.Data = output - return -} - -// Disassociates a subnet from a route table. -// -// After you perform this action, the subnet no longer uses the routes in the -// route table. Instead, it uses the routes in the VPC's main route table. For -// more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) DisassociateRouteTable(input *DisassociateRouteTableInput) (*DisassociateRouteTableOutput, error) { - req, out := c.DisassociateRouteTableRequest(input) - err := req.Send() - return out, err -} - -const opEnableVgwRoutePropagation = "EnableVgwRoutePropagation" - -// EnableVgwRoutePropagationRequest generates a "aws/request.Request" representing the -// client's request for the EnableVgwRoutePropagation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the EnableVgwRoutePropagation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the EnableVgwRoutePropagationRequest method. -// req, resp := client.EnableVgwRoutePropagationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) EnableVgwRoutePropagationRequest(input *EnableVgwRoutePropagationInput) (req *request.Request, output *EnableVgwRoutePropagationOutput) { - op := &request.Operation{ - Name: opEnableVgwRoutePropagation, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &EnableVgwRoutePropagationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &EnableVgwRoutePropagationOutput{} - req.Data = output - return -} - -// Enables a virtual private gateway (VGW) to propagate routes to the specified -// route table of a VPC. -func (c *EC2) EnableVgwRoutePropagation(input *EnableVgwRoutePropagationInput) (*EnableVgwRoutePropagationOutput, error) { - req, out := c.EnableVgwRoutePropagationRequest(input) - err := req.Send() - return out, err -} - -const opEnableVolumeIO = "EnableVolumeIO" - -// EnableVolumeIORequest generates a "aws/request.Request" representing the -// client's request for the EnableVolumeIO operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the EnableVolumeIO method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the EnableVolumeIORequest method. -// req, resp := client.EnableVolumeIORequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) EnableVolumeIORequest(input *EnableVolumeIOInput) (req *request.Request, output *EnableVolumeIOOutput) { - op := &request.Operation{ - Name: opEnableVolumeIO, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &EnableVolumeIOInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &EnableVolumeIOOutput{} - req.Data = output - return -} - -// Enables I/O operations for a volume that had I/O operations disabled because -// the data on the volume was potentially inconsistent. -func (c *EC2) EnableVolumeIO(input *EnableVolumeIOInput) (*EnableVolumeIOOutput, error) { - req, out := c.EnableVolumeIORequest(input) - err := req.Send() - return out, err -} - -const opEnableVpcClassicLink = "EnableVpcClassicLink" - -// EnableVpcClassicLinkRequest generates a "aws/request.Request" representing the -// client's request for the EnableVpcClassicLink operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the EnableVpcClassicLink method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the EnableVpcClassicLinkRequest method. -// req, resp := client.EnableVpcClassicLinkRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) EnableVpcClassicLinkRequest(input *EnableVpcClassicLinkInput) (req *request.Request, output *EnableVpcClassicLinkOutput) { - op := &request.Operation{ - Name: opEnableVpcClassicLink, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &EnableVpcClassicLinkInput{} - } - - req = c.newRequest(op, input, output) - output = &EnableVpcClassicLinkOutput{} - req.Data = output - return -} - -// Enables a VPC for ClassicLink. You can then link EC2-Classic instances to -// your ClassicLink-enabled VPC to allow communication over private IP addresses. -// You cannot enable your VPC for ClassicLink if any of your VPC's route tables -// have existing routes for address ranges within the 10.0.0.0/8 IP address -// range, excluding local routes for VPCs in the 10.0.0.0/16 and 10.1.0.0/16 -// IP address ranges. For more information, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) EnableVpcClassicLink(input *EnableVpcClassicLinkInput) (*EnableVpcClassicLinkOutput, error) { - req, out := c.EnableVpcClassicLinkRequest(input) - err := req.Send() - return out, err -} - -const opEnableVpcClassicLinkDnsSupport = "EnableVpcClassicLinkDnsSupport" - -// EnableVpcClassicLinkDnsSupportRequest generates a "aws/request.Request" representing the -// client's request for the EnableVpcClassicLinkDnsSupport operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the EnableVpcClassicLinkDnsSupport method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the EnableVpcClassicLinkDnsSupportRequest method. -// req, resp := client.EnableVpcClassicLinkDnsSupportRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) EnableVpcClassicLinkDnsSupportRequest(input *EnableVpcClassicLinkDnsSupportInput) (req *request.Request, output *EnableVpcClassicLinkDnsSupportOutput) { - op := &request.Operation{ - Name: opEnableVpcClassicLinkDnsSupport, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &EnableVpcClassicLinkDnsSupportInput{} - } - - req = c.newRequest(op, input, output) - output = &EnableVpcClassicLinkDnsSupportOutput{} - req.Data = output - return -} - -// Enables a VPC to support DNS hostname resolution for ClassicLink. If enabled, -// the DNS hostname of a linked EC2-Classic instance resolves to its private -// IP address when addressed from an instance in the VPC to which it's linked. -// Similarly, the DNS hostname of an instance in a VPC resolves to its private -// IP address when addressed from a linked EC2-Classic instance. For more information -// about ClassicLink, see ClassicLink (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-classiclink.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) EnableVpcClassicLinkDnsSupport(input *EnableVpcClassicLinkDnsSupportInput) (*EnableVpcClassicLinkDnsSupportOutput, error) { - req, out := c.EnableVpcClassicLinkDnsSupportRequest(input) - err := req.Send() - return out, err -} - -const opGetConsoleOutput = "GetConsoleOutput" - -// GetConsoleOutputRequest generates a "aws/request.Request" representing the -// client's request for the GetConsoleOutput operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetConsoleOutput method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetConsoleOutputRequest method. -// req, resp := client.GetConsoleOutputRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) GetConsoleOutputRequest(input *GetConsoleOutputInput) (req *request.Request, output *GetConsoleOutputOutput) { - op := &request.Operation{ - Name: opGetConsoleOutput, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetConsoleOutputInput{} - } - - req = c.newRequest(op, input, output) - output = &GetConsoleOutputOutput{} - req.Data = output - return -} - -// Gets the console output for the specified instance. -// -// Instances do not have a physical monitor through which you can view their -// console output. They also lack physical controls that allow you to power -// up, reboot, or shut them down. To allow these actions, we provide them through -// the Amazon EC2 API and command line interface. -// -// Instance console output is buffered and posted shortly after instance boot, -// reboot, and termination. Amazon EC2 preserves the most recent 64 KB output -// which is available for at least one hour after the most recent post. -// -// For Linux instances, the instance console output displays the exact console -// output that would normally be displayed on a physical monitor attached to -// a computer. This output is buffered because the instance produces it and -// then posts it to a store where the instance's owner can retrieve it. -// -// For Windows instances, the instance console output includes output from -// the EC2Config service. -func (c *EC2) GetConsoleOutput(input *GetConsoleOutputInput) (*GetConsoleOutputOutput, error) { - req, out := c.GetConsoleOutputRequest(input) - err := req.Send() - return out, err -} - -const opGetConsoleScreenshot = "GetConsoleScreenshot" - -// GetConsoleScreenshotRequest generates a "aws/request.Request" representing the -// client's request for the GetConsoleScreenshot operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetConsoleScreenshot method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetConsoleScreenshotRequest method. -// req, resp := client.GetConsoleScreenshotRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) GetConsoleScreenshotRequest(input *GetConsoleScreenshotInput) (req *request.Request, output *GetConsoleScreenshotOutput) { - op := &request.Operation{ - Name: opGetConsoleScreenshot, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetConsoleScreenshotInput{} - } - - req = c.newRequest(op, input, output) - output = &GetConsoleScreenshotOutput{} - req.Data = output - return -} - -// Retrieve a JPG-format screenshot of a running instance to help with troubleshooting. -// -// The returned content is Base64-encoded. -func (c *EC2) GetConsoleScreenshot(input *GetConsoleScreenshotInput) (*GetConsoleScreenshotOutput, error) { - req, out := c.GetConsoleScreenshotRequest(input) - err := req.Send() - return out, err -} - -const opGetHostReservationPurchasePreview = "GetHostReservationPurchasePreview" - -// GetHostReservationPurchasePreviewRequest generates a "aws/request.Request" representing the -// client's request for the GetHostReservationPurchasePreview operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetHostReservationPurchasePreview method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetHostReservationPurchasePreviewRequest method. -// req, resp := client.GetHostReservationPurchasePreviewRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) GetHostReservationPurchasePreviewRequest(input *GetHostReservationPurchasePreviewInput) (req *request.Request, output *GetHostReservationPurchasePreviewOutput) { - op := &request.Operation{ - Name: opGetHostReservationPurchasePreview, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetHostReservationPurchasePreviewInput{} - } - - req = c.newRequest(op, input, output) - output = &GetHostReservationPurchasePreviewOutput{} - req.Data = output - return -} - -// Preview a reservation purchase with configurations that match those of your -// Dedicated Host. You must have active Dedicated Hosts in your account before -// you purchase a reservation. -// -// This is a preview of the PurchaseHostReservation action and does not result -// in the offering being purchased. -func (c *EC2) GetHostReservationPurchasePreview(input *GetHostReservationPurchasePreviewInput) (*GetHostReservationPurchasePreviewOutput, error) { - req, out := c.GetHostReservationPurchasePreviewRequest(input) - err := req.Send() - return out, err -} - -const opGetPasswordData = "GetPasswordData" - -// GetPasswordDataRequest generates a "aws/request.Request" representing the -// client's request for the GetPasswordData operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetPasswordData method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetPasswordDataRequest method. -// req, resp := client.GetPasswordDataRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) GetPasswordDataRequest(input *GetPasswordDataInput) (req *request.Request, output *GetPasswordDataOutput) { - op := &request.Operation{ - Name: opGetPasswordData, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetPasswordDataInput{} - } - - req = c.newRequest(op, input, output) - output = &GetPasswordDataOutput{} - req.Data = output - return -} - -// Retrieves the encrypted administrator password for an instance running Windows. -// -// The Windows password is generated at boot if the EC2Config service plugin, -// Ec2SetPassword, is enabled. This usually only happens the first time an AMI -// is launched, and then Ec2SetPassword is automatically disabled. The password -// is not generated for rebundled AMIs unless Ec2SetPassword is enabled before -// bundling. -// -// The password is encrypted using the key pair that you specified when you -// launched the instance. You must provide the corresponding key pair file. -// -// Password generation and encryption takes a few moments. We recommend that -// you wait up to 15 minutes after launching an instance before trying to retrieve -// the generated password. -func (c *EC2) GetPasswordData(input *GetPasswordDataInput) (*GetPasswordDataOutput, error) { - req, out := c.GetPasswordDataRequest(input) - err := req.Send() - return out, err -} - -const opGetReservedInstancesExchangeQuote = "GetReservedInstancesExchangeQuote" - -// GetReservedInstancesExchangeQuoteRequest generates a "aws/request.Request" representing the -// client's request for the GetReservedInstancesExchangeQuote operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetReservedInstancesExchangeQuote method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetReservedInstancesExchangeQuoteRequest method. -// req, resp := client.GetReservedInstancesExchangeQuoteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) GetReservedInstancesExchangeQuoteRequest(input *GetReservedInstancesExchangeQuoteInput) (req *request.Request, output *GetReservedInstancesExchangeQuoteOutput) { - op := &request.Operation{ - Name: opGetReservedInstancesExchangeQuote, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetReservedInstancesExchangeQuoteInput{} - } - - req = c.newRequest(op, input, output) - output = &GetReservedInstancesExchangeQuoteOutput{} - req.Data = output - return -} - -// Returns details about the values and term of your specified Convertible Reserved -// Instances. When an offering ID is specified it returns information about -// whether the exchange is valid and can be performed. -func (c *EC2) GetReservedInstancesExchangeQuote(input *GetReservedInstancesExchangeQuoteInput) (*GetReservedInstancesExchangeQuoteOutput, error) { - req, out := c.GetReservedInstancesExchangeQuoteRequest(input) - err := req.Send() - return out, err -} - -const opImportImage = "ImportImage" - -// ImportImageRequest generates a "aws/request.Request" representing the -// client's request for the ImportImage operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ImportImage method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ImportImageRequest method. -// req, resp := client.ImportImageRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ImportImageRequest(input *ImportImageInput) (req *request.Request, output *ImportImageOutput) { - op := &request.Operation{ - Name: opImportImage, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ImportImageInput{} - } - - req = c.newRequest(op, input, output) - output = &ImportImageOutput{} - req.Data = output - return -} - -// Import single or multi-volume disk images or EBS snapshots into an Amazon -// Machine Image (AMI). For more information, see Importing a VM as an Image -// Using VM Import/Export (http://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.html) -// in the VM Import/Export User Guide. -func (c *EC2) ImportImage(input *ImportImageInput) (*ImportImageOutput, error) { - req, out := c.ImportImageRequest(input) - err := req.Send() - return out, err -} - -const opImportInstance = "ImportInstance" - -// ImportInstanceRequest generates a "aws/request.Request" representing the -// client's request for the ImportInstance operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ImportInstance method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ImportInstanceRequest method. -// req, resp := client.ImportInstanceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ImportInstanceRequest(input *ImportInstanceInput) (req *request.Request, output *ImportInstanceOutput) { - op := &request.Operation{ - Name: opImportInstance, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ImportInstanceInput{} - } - - req = c.newRequest(op, input, output) - output = &ImportInstanceOutput{} - req.Data = output - return -} - -// Creates an import instance task using metadata from the specified disk image. -// ImportInstance only supports single-volume VMs. To import multi-volume VMs, -// use ImportImage. For more information, see Importing a Virtual Machine Using -// the Amazon EC2 CLI (http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/ec2-cli-vmimport-export.html). -// -// For information about the import manifest referenced by this API action, -// see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html). -func (c *EC2) ImportInstance(input *ImportInstanceInput) (*ImportInstanceOutput, error) { - req, out := c.ImportInstanceRequest(input) - err := req.Send() - return out, err -} - -const opImportKeyPair = "ImportKeyPair" - -// ImportKeyPairRequest generates a "aws/request.Request" representing the -// client's request for the ImportKeyPair operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ImportKeyPair method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ImportKeyPairRequest method. -// req, resp := client.ImportKeyPairRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ImportKeyPairRequest(input *ImportKeyPairInput) (req *request.Request, output *ImportKeyPairOutput) { - op := &request.Operation{ - Name: opImportKeyPair, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ImportKeyPairInput{} - } - - req = c.newRequest(op, input, output) - output = &ImportKeyPairOutput{} - req.Data = output - return -} - -// Imports the public key from an RSA key pair that you created with a third-party -// tool. Compare this with CreateKeyPair, in which AWS creates the key pair -// and gives the keys to you (AWS keeps a copy of the public key). With ImportKeyPair, -// you create the key pair and give AWS just the public key. The private key -// is never transferred between you and AWS. -// -// For more information about key pairs, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) ImportKeyPair(input *ImportKeyPairInput) (*ImportKeyPairOutput, error) { - req, out := c.ImportKeyPairRequest(input) - err := req.Send() - return out, err -} - -const opImportSnapshot = "ImportSnapshot" - -// ImportSnapshotRequest generates a "aws/request.Request" representing the -// client's request for the ImportSnapshot operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ImportSnapshot method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ImportSnapshotRequest method. -// req, resp := client.ImportSnapshotRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ImportSnapshotRequest(input *ImportSnapshotInput) (req *request.Request, output *ImportSnapshotOutput) { - op := &request.Operation{ - Name: opImportSnapshot, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ImportSnapshotInput{} - } - - req = c.newRequest(op, input, output) - output = &ImportSnapshotOutput{} - req.Data = output - return -} - -// Imports a disk into an EBS snapshot. -func (c *EC2) ImportSnapshot(input *ImportSnapshotInput) (*ImportSnapshotOutput, error) { - req, out := c.ImportSnapshotRequest(input) - err := req.Send() - return out, err -} - -const opImportVolume = "ImportVolume" - -// ImportVolumeRequest generates a "aws/request.Request" representing the -// client's request for the ImportVolume operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ImportVolume method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ImportVolumeRequest method. -// req, resp := client.ImportVolumeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ImportVolumeRequest(input *ImportVolumeInput) (req *request.Request, output *ImportVolumeOutput) { - op := &request.Operation{ - Name: opImportVolume, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ImportVolumeInput{} - } - - req = c.newRequest(op, input, output) - output = &ImportVolumeOutput{} - req.Data = output - return -} - -// Creates an import volume task using metadata from the specified disk image.For -// more information, see Importing Disks to Amazon EBS (http://docs.aws.amazon.com/AWSEC2/latest/CommandLineReference/importing-your-volumes-into-amazon-ebs.html). -// -// For information about the import manifest referenced by this API action, -// see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html). -func (c *EC2) ImportVolume(input *ImportVolumeInput) (*ImportVolumeOutput, error) { - req, out := c.ImportVolumeRequest(input) - err := req.Send() - return out, err -} - -const opModifyHosts = "ModifyHosts" - -// ModifyHostsRequest generates a "aws/request.Request" representing the -// client's request for the ModifyHosts operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyHosts method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyHostsRequest method. -// req, resp := client.ModifyHostsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyHostsRequest(input *ModifyHostsInput) (req *request.Request, output *ModifyHostsOutput) { - op := &request.Operation{ - Name: opModifyHosts, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyHostsInput{} - } - - req = c.newRequest(op, input, output) - output = &ModifyHostsOutput{} - req.Data = output - return -} - -// Modify the auto-placement setting of a Dedicated Host. When auto-placement -// is enabled, AWS will place instances that you launch with a tenancy of host, -// but without targeting a specific host ID, onto any available Dedicated Host -// in your account which has auto-placement enabled. When auto-placement is -// disabled, you need to provide a host ID if you want the instance to launch -// onto a specific host. If no host ID is provided, the instance will be launched -// onto a suitable host which has auto-placement enabled. -func (c *EC2) ModifyHosts(input *ModifyHostsInput) (*ModifyHostsOutput, error) { - req, out := c.ModifyHostsRequest(input) - err := req.Send() - return out, err -} - -const opModifyIdFormat = "ModifyIdFormat" - -// ModifyIdFormatRequest generates a "aws/request.Request" representing the -// client's request for the ModifyIdFormat operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyIdFormat method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyIdFormatRequest method. -// req, resp := client.ModifyIdFormatRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyIdFormatRequest(input *ModifyIdFormatInput) (req *request.Request, output *ModifyIdFormatOutput) { - op := &request.Operation{ - Name: opModifyIdFormat, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyIdFormatInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifyIdFormatOutput{} - req.Data = output - return -} - -// Modifies the ID format for the specified resource on a per-region basis. -// You can specify that resources should receive longer IDs (17-character IDs) -// when they are created. The following resource types support longer IDs: instance -// | reservation | snapshot | volume. -// -// This setting applies to the IAM user who makes the request; it does not -// apply to the entire AWS account. By default, an IAM user defaults to the -// same settings as the root user. If you're using this action as the root user, -// then these settings apply to the entire account, unless an IAM user explicitly -// overrides these settings for themselves. For more information, see Resource -// IDs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/resource-ids.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// Resources created with longer IDs are visible to all IAM roles and users, -// regardless of these settings and provided that they have permission to use -// the relevant Describe command for the resource type. -func (c *EC2) ModifyIdFormat(input *ModifyIdFormatInput) (*ModifyIdFormatOutput, error) { - req, out := c.ModifyIdFormatRequest(input) - err := req.Send() - return out, err -} - -const opModifyIdentityIdFormat = "ModifyIdentityIdFormat" - -// ModifyIdentityIdFormatRequest generates a "aws/request.Request" representing the -// client's request for the ModifyIdentityIdFormat operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyIdentityIdFormat method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyIdentityIdFormatRequest method. -// req, resp := client.ModifyIdentityIdFormatRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyIdentityIdFormatRequest(input *ModifyIdentityIdFormatInput) (req *request.Request, output *ModifyIdentityIdFormatOutput) { - op := &request.Operation{ - Name: opModifyIdentityIdFormat, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyIdentityIdFormatInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifyIdentityIdFormatOutput{} - req.Data = output - return -} - -// Modifies the ID format of a resource for a specified IAM user, IAM role, -// or the root user for an account; or all IAM users, IAM roles, and the root -// user for an account. You can specify that resources should receive longer -// IDs (17-character IDs) when they are created. -// -// The following resource types support longer IDs: instance | reservation -// | snapshot | volume. For more information, see Resource IDs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/resource-ids.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// This setting applies to the principal specified in the request; it does -// not apply to the principal that makes the request. -// -// Resources created with longer IDs are visible to all IAM roles and users, -// regardless of these settings and provided that they have permission to use -// the relevant Describe command for the resource type. -func (c *EC2) ModifyIdentityIdFormat(input *ModifyIdentityIdFormatInput) (*ModifyIdentityIdFormatOutput, error) { - req, out := c.ModifyIdentityIdFormatRequest(input) - err := req.Send() - return out, err -} - -const opModifyImageAttribute = "ModifyImageAttribute" - -// ModifyImageAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ModifyImageAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyImageAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyImageAttributeRequest method. -// req, resp := client.ModifyImageAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyImageAttributeRequest(input *ModifyImageAttributeInput) (req *request.Request, output *ModifyImageAttributeOutput) { - op := &request.Operation{ - Name: opModifyImageAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyImageAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifyImageAttributeOutput{} - req.Data = output - return -} - -// Modifies the specified attribute of the specified AMI. You can specify only -// one attribute at a time. -// -// AWS Marketplace product codes cannot be modified. Images with an AWS Marketplace -// product code cannot be made public. -// -// The SriovNetSupport enhanced networking attribute cannot be changed using -// this command. Instead, enable SriovNetSupport on an instance and create an -// AMI from the instance. This will result in an image with SriovNetSupport -// enabled. -func (c *EC2) ModifyImageAttribute(input *ModifyImageAttributeInput) (*ModifyImageAttributeOutput, error) { - req, out := c.ModifyImageAttributeRequest(input) - err := req.Send() - return out, err -} - -const opModifyInstanceAttribute = "ModifyInstanceAttribute" - -// ModifyInstanceAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ModifyInstanceAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyInstanceAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyInstanceAttributeRequest method. -// req, resp := client.ModifyInstanceAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyInstanceAttributeRequest(input *ModifyInstanceAttributeInput) (req *request.Request, output *ModifyInstanceAttributeOutput) { - op := &request.Operation{ - Name: opModifyInstanceAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyInstanceAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifyInstanceAttributeOutput{} - req.Data = output - return -} - -// Modifies the specified attribute of the specified instance. You can specify -// only one attribute at a time. -// -// To modify some attributes, the instance must be stopped. For more information, -// see Modifying Attributes of a Stopped Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_ChangingAttributesWhileInstanceStopped.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) ModifyInstanceAttribute(input *ModifyInstanceAttributeInput) (*ModifyInstanceAttributeOutput, error) { - req, out := c.ModifyInstanceAttributeRequest(input) - err := req.Send() - return out, err -} - -const opModifyInstancePlacement = "ModifyInstancePlacement" - -// ModifyInstancePlacementRequest generates a "aws/request.Request" representing the -// client's request for the ModifyInstancePlacement operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyInstancePlacement method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyInstancePlacementRequest method. -// req, resp := client.ModifyInstancePlacementRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyInstancePlacementRequest(input *ModifyInstancePlacementInput) (req *request.Request, output *ModifyInstancePlacementOutput) { - op := &request.Operation{ - Name: opModifyInstancePlacement, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyInstancePlacementInput{} - } - - req = c.newRequest(op, input, output) - output = &ModifyInstancePlacementOutput{} - req.Data = output - return -} - -// Set the instance affinity value for a specific stopped instance and modify -// the instance tenancy setting. -// -// Instance affinity is disabled by default. When instance affinity is host -// and it is not associated with a specific Dedicated Host, the next time it -// is launched it will automatically be associated with the host it lands on. -// This relationship will persist if the instance is stopped/started, or rebooted. -// -// You can modify the host ID associated with a stopped instance. If a stopped -// instance has a new host ID association, the instance will target that host -// when restarted. -// -// You can modify the tenancy of a stopped instance with a tenancy of host -// or dedicated. -// -// Affinity, hostID, and tenancy are not required parameters, but at least -// one of them must be specified in the request. Affinity and tenancy can be -// modified in the same request, but tenancy can only be modified on instances -// that are stopped. -func (c *EC2) ModifyInstancePlacement(input *ModifyInstancePlacementInput) (*ModifyInstancePlacementOutput, error) { - req, out := c.ModifyInstancePlacementRequest(input) - err := req.Send() - return out, err -} - -const opModifyNetworkInterfaceAttribute = "ModifyNetworkInterfaceAttribute" - -// ModifyNetworkInterfaceAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ModifyNetworkInterfaceAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyNetworkInterfaceAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyNetworkInterfaceAttributeRequest method. -// req, resp := client.ModifyNetworkInterfaceAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyNetworkInterfaceAttributeRequest(input *ModifyNetworkInterfaceAttributeInput) (req *request.Request, output *ModifyNetworkInterfaceAttributeOutput) { - op := &request.Operation{ - Name: opModifyNetworkInterfaceAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyNetworkInterfaceAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifyNetworkInterfaceAttributeOutput{} - req.Data = output - return -} - -// Modifies the specified network interface attribute. You can specify only -// one attribute at a time. -func (c *EC2) ModifyNetworkInterfaceAttribute(input *ModifyNetworkInterfaceAttributeInput) (*ModifyNetworkInterfaceAttributeOutput, error) { - req, out := c.ModifyNetworkInterfaceAttributeRequest(input) - err := req.Send() - return out, err -} - -const opModifyReservedInstances = "ModifyReservedInstances" - -// ModifyReservedInstancesRequest generates a "aws/request.Request" representing the -// client's request for the ModifyReservedInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyReservedInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyReservedInstancesRequest method. -// req, resp := client.ModifyReservedInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyReservedInstancesRequest(input *ModifyReservedInstancesInput) (req *request.Request, output *ModifyReservedInstancesOutput) { - op := &request.Operation{ - Name: opModifyReservedInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyReservedInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &ModifyReservedInstancesOutput{} - req.Data = output - return -} - -// Modifies the Availability Zone, instance count, instance type, or network -// platform (EC2-Classic or EC2-VPC) of your Standard Reserved Instances. The -// Reserved Instances to be modified must be identical, except for Availability -// Zone, network platform, and instance type. -// -// For more information, see Modifying Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-modifying.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) ModifyReservedInstances(input *ModifyReservedInstancesInput) (*ModifyReservedInstancesOutput, error) { - req, out := c.ModifyReservedInstancesRequest(input) - err := req.Send() - return out, err -} - -const opModifySnapshotAttribute = "ModifySnapshotAttribute" - -// ModifySnapshotAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ModifySnapshotAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifySnapshotAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifySnapshotAttributeRequest method. -// req, resp := client.ModifySnapshotAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifySnapshotAttributeRequest(input *ModifySnapshotAttributeInput) (req *request.Request, output *ModifySnapshotAttributeOutput) { - op := &request.Operation{ - Name: opModifySnapshotAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifySnapshotAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifySnapshotAttributeOutput{} - req.Data = output - return -} - -// Adds or removes permission settings for the specified snapshot. You may add -// or remove specified AWS account IDs from a snapshot's list of create volume -// permissions, but you cannot do both in a single API call. If you need to -// both add and remove account IDs for a snapshot, you must use multiple API -// calls. -// -// Encrypted snapshots and snapshots with AWS Marketplace product codes cannot -// be made public. Snapshots encrypted with your default CMK cannot be shared -// with other accounts. -// -// For more information on modifying snapshot permissions, see Sharing Snapshots -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-modifying-snapshot-permissions.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) ModifySnapshotAttribute(input *ModifySnapshotAttributeInput) (*ModifySnapshotAttributeOutput, error) { - req, out := c.ModifySnapshotAttributeRequest(input) - err := req.Send() - return out, err -} - -const opModifySpotFleetRequest = "ModifySpotFleetRequest" - -// ModifySpotFleetRequestRequest generates a "aws/request.Request" representing the -// client's request for the ModifySpotFleetRequest operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifySpotFleetRequest method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifySpotFleetRequestRequest method. -// req, resp := client.ModifySpotFleetRequestRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifySpotFleetRequestRequest(input *ModifySpotFleetRequestInput) (req *request.Request, output *ModifySpotFleetRequestOutput) { - op := &request.Operation{ - Name: opModifySpotFleetRequest, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifySpotFleetRequestInput{} - } - - req = c.newRequest(op, input, output) - output = &ModifySpotFleetRequestOutput{} - req.Data = output - return -} - -// Modifies the specified Spot fleet request. -// -// While the Spot fleet request is being modified, it is in the modifying state. -// -// To scale up your Spot fleet, increase its target capacity. The Spot fleet -// launches the additional Spot instances according to the allocation strategy -// for the Spot fleet request. If the allocation strategy is lowestPrice, the -// Spot fleet launches instances using the Spot pool with the lowest price. -// If the allocation strategy is diversified, the Spot fleet distributes the -// instances across the Spot pools. -// -// To scale down your Spot fleet, decrease its target capacity. First, the -// Spot fleet cancels any open bids that exceed the new target capacity. You -// can request that the Spot fleet terminate Spot instances until the size of -// the fleet no longer exceeds the new target capacity. If the allocation strategy -// is lowestPrice, the Spot fleet terminates the instances with the highest -// price per unit. If the allocation strategy is diversified, the Spot fleet -// terminates instances across the Spot pools. Alternatively, you can request -// that the Spot fleet keep the fleet at its current size, but not replace any -// Spot instances that are interrupted or that you terminate manually. -func (c *EC2) ModifySpotFleetRequest(input *ModifySpotFleetRequestInput) (*ModifySpotFleetRequestOutput, error) { - req, out := c.ModifySpotFleetRequestRequest(input) - err := req.Send() - return out, err -} - -const opModifySubnetAttribute = "ModifySubnetAttribute" - -// ModifySubnetAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ModifySubnetAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifySubnetAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifySubnetAttributeRequest method. -// req, resp := client.ModifySubnetAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifySubnetAttributeRequest(input *ModifySubnetAttributeInput) (req *request.Request, output *ModifySubnetAttributeOutput) { - op := &request.Operation{ - Name: opModifySubnetAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifySubnetAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifySubnetAttributeOutput{} - req.Data = output - return -} - -// Modifies a subnet attribute. -func (c *EC2) ModifySubnetAttribute(input *ModifySubnetAttributeInput) (*ModifySubnetAttributeOutput, error) { - req, out := c.ModifySubnetAttributeRequest(input) - err := req.Send() - return out, err -} - -const opModifyVolumeAttribute = "ModifyVolumeAttribute" - -// ModifyVolumeAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ModifyVolumeAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyVolumeAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyVolumeAttributeRequest method. -// req, resp := client.ModifyVolumeAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyVolumeAttributeRequest(input *ModifyVolumeAttributeInput) (req *request.Request, output *ModifyVolumeAttributeOutput) { - op := &request.Operation{ - Name: opModifyVolumeAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyVolumeAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifyVolumeAttributeOutput{} - req.Data = output - return -} - -// Modifies a volume attribute. -// -// By default, all I/O operations for the volume are suspended when the data -// on the volume is determined to be potentially inconsistent, to prevent undetectable, -// latent data corruption. The I/O access to the volume can be resumed by first -// enabling I/O access and then checking the data consistency on your volume. -// -// You can change the default behavior to resume I/O operations. We recommend -// that you change this only for boot volumes or for volumes that are stateless -// or disposable. -func (c *EC2) ModifyVolumeAttribute(input *ModifyVolumeAttributeInput) (*ModifyVolumeAttributeOutput, error) { - req, out := c.ModifyVolumeAttributeRequest(input) - err := req.Send() - return out, err -} - -const opModifyVpcAttribute = "ModifyVpcAttribute" - -// ModifyVpcAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ModifyVpcAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyVpcAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyVpcAttributeRequest method. -// req, resp := client.ModifyVpcAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyVpcAttributeRequest(input *ModifyVpcAttributeInput) (req *request.Request, output *ModifyVpcAttributeOutput) { - op := &request.Operation{ - Name: opModifyVpcAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyVpcAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ModifyVpcAttributeOutput{} - req.Data = output - return -} - -// Modifies the specified attribute of the specified VPC. -func (c *EC2) ModifyVpcAttribute(input *ModifyVpcAttributeInput) (*ModifyVpcAttributeOutput, error) { - req, out := c.ModifyVpcAttributeRequest(input) - err := req.Send() - return out, err -} - -const opModifyVpcEndpoint = "ModifyVpcEndpoint" - -// ModifyVpcEndpointRequest generates a "aws/request.Request" representing the -// client's request for the ModifyVpcEndpoint operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyVpcEndpoint method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyVpcEndpointRequest method. -// req, resp := client.ModifyVpcEndpointRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyVpcEndpointRequest(input *ModifyVpcEndpointInput) (req *request.Request, output *ModifyVpcEndpointOutput) { - op := &request.Operation{ - Name: opModifyVpcEndpoint, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyVpcEndpointInput{} - } - - req = c.newRequest(op, input, output) - output = &ModifyVpcEndpointOutput{} - req.Data = output - return -} - -// Modifies attributes of a specified VPC endpoint. You can modify the policy -// associated with the endpoint, and you can add and remove route tables associated -// with the endpoint. -func (c *EC2) ModifyVpcEndpoint(input *ModifyVpcEndpointInput) (*ModifyVpcEndpointOutput, error) { - req, out := c.ModifyVpcEndpointRequest(input) - err := req.Send() - return out, err -} - -const opModifyVpcPeeringConnectionOptions = "ModifyVpcPeeringConnectionOptions" - -// ModifyVpcPeeringConnectionOptionsRequest generates a "aws/request.Request" representing the -// client's request for the ModifyVpcPeeringConnectionOptions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ModifyVpcPeeringConnectionOptions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ModifyVpcPeeringConnectionOptionsRequest method. -// req, resp := client.ModifyVpcPeeringConnectionOptionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ModifyVpcPeeringConnectionOptionsRequest(input *ModifyVpcPeeringConnectionOptionsInput) (req *request.Request, output *ModifyVpcPeeringConnectionOptionsOutput) { - op := &request.Operation{ - Name: opModifyVpcPeeringConnectionOptions, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ModifyVpcPeeringConnectionOptionsInput{} - } - - req = c.newRequest(op, input, output) - output = &ModifyVpcPeeringConnectionOptionsOutput{} - req.Data = output - return -} - -// Modifies the VPC peering connection options on one side of a VPC peering -// connection. You can do the following: -// -// Enable/disable communication over the peering connection between an EC2-Classic -// instance that's linked to your VPC (using ClassicLink) and instances in the -// peer VPC. -// -// Enable/disable communication over the peering connection between instances -// in your VPC and an EC2-Classic instance that's linked to the peer VPC. -// -// Enable/disable a local VPC to resolve public DNS hostnames to private -// IP addresses when queried from instances in the peer VPC. -// -// If the peered VPCs are in different accounts, each owner must initiate -// a separate request to modify the peering connection options, depending on -// whether their VPC was the requester or accepter for the VPC peering connection. -// If the peered VPCs are in the same account, you can modify the requester -// and accepter options in the same request. To confirm which VPC is the accepter -// and requester for a VPC peering connection, use the DescribeVpcPeeringConnections -// command. -func (c *EC2) ModifyVpcPeeringConnectionOptions(input *ModifyVpcPeeringConnectionOptionsInput) (*ModifyVpcPeeringConnectionOptionsOutput, error) { - req, out := c.ModifyVpcPeeringConnectionOptionsRequest(input) - err := req.Send() - return out, err -} - -const opMonitorInstances = "MonitorInstances" - -// MonitorInstancesRequest generates a "aws/request.Request" representing the -// client's request for the MonitorInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the MonitorInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the MonitorInstancesRequest method. -// req, resp := client.MonitorInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) MonitorInstancesRequest(input *MonitorInstancesInput) (req *request.Request, output *MonitorInstancesOutput) { - op := &request.Operation{ - Name: opMonitorInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &MonitorInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &MonitorInstancesOutput{} - req.Data = output - return -} - -// Enables monitoring for a running instance. For more information about monitoring -// instances, see Monitoring Your Instances and Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-cloudwatch.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) MonitorInstances(input *MonitorInstancesInput) (*MonitorInstancesOutput, error) { - req, out := c.MonitorInstancesRequest(input) - err := req.Send() - return out, err -} - -const opMoveAddressToVpc = "MoveAddressToVpc" - -// MoveAddressToVpcRequest generates a "aws/request.Request" representing the -// client's request for the MoveAddressToVpc operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the MoveAddressToVpc method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the MoveAddressToVpcRequest method. -// req, resp := client.MoveAddressToVpcRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) MoveAddressToVpcRequest(input *MoveAddressToVpcInput) (req *request.Request, output *MoveAddressToVpcOutput) { - op := &request.Operation{ - Name: opMoveAddressToVpc, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &MoveAddressToVpcInput{} - } - - req = c.newRequest(op, input, output) - output = &MoveAddressToVpcOutput{} - req.Data = output - return -} - -// Moves an Elastic IP address from the EC2-Classic platform to the EC2-VPC -// platform. The Elastic IP address must be allocated to your account for more -// than 24 hours, and it must not be associated with an instance. After the -// Elastic IP address is moved, it is no longer available for use in the EC2-Classic -// platform, unless you move it back using the RestoreAddressToClassic request. -// You cannot move an Elastic IP address that was originally allocated for use -// in the EC2-VPC platform to the EC2-Classic platform. -func (c *EC2) MoveAddressToVpc(input *MoveAddressToVpcInput) (*MoveAddressToVpcOutput, error) { - req, out := c.MoveAddressToVpcRequest(input) - err := req.Send() - return out, err -} - -const opPurchaseHostReservation = "PurchaseHostReservation" - -// PurchaseHostReservationRequest generates a "aws/request.Request" representing the -// client's request for the PurchaseHostReservation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PurchaseHostReservation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PurchaseHostReservationRequest method. -// req, resp := client.PurchaseHostReservationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) PurchaseHostReservationRequest(input *PurchaseHostReservationInput) (req *request.Request, output *PurchaseHostReservationOutput) { - op := &request.Operation{ - Name: opPurchaseHostReservation, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &PurchaseHostReservationInput{} - } - - req = c.newRequest(op, input, output) - output = &PurchaseHostReservationOutput{} - req.Data = output - return -} - -// Purchase a reservation with configurations that match those of your Dedicated -// Host. You must have active Dedicated Hosts in your account before you purchase -// a reservation. This action results in the specified reservation being purchased -// and charged to your account. -func (c *EC2) PurchaseHostReservation(input *PurchaseHostReservationInput) (*PurchaseHostReservationOutput, error) { - req, out := c.PurchaseHostReservationRequest(input) - err := req.Send() - return out, err -} - -const opPurchaseReservedInstancesOffering = "PurchaseReservedInstancesOffering" - -// PurchaseReservedInstancesOfferingRequest generates a "aws/request.Request" representing the -// client's request for the PurchaseReservedInstancesOffering operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PurchaseReservedInstancesOffering method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PurchaseReservedInstancesOfferingRequest method. -// req, resp := client.PurchaseReservedInstancesOfferingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) PurchaseReservedInstancesOfferingRequest(input *PurchaseReservedInstancesOfferingInput) (req *request.Request, output *PurchaseReservedInstancesOfferingOutput) { - op := &request.Operation{ - Name: opPurchaseReservedInstancesOffering, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &PurchaseReservedInstancesOfferingInput{} - } - - req = c.newRequest(op, input, output) - output = &PurchaseReservedInstancesOfferingOutput{} - req.Data = output - return -} - -// Purchases a Reserved Instance for use with your account. With Reserved Instances, -// you pay a lower hourly rate compared to On-Demand instance pricing. -// -// Use DescribeReservedInstancesOfferings to get a list of Reserved Instance -// offerings that match your specifications. After you've purchased a Reserved -// Instance, you can check for your new Reserved Instance with DescribeReservedInstances. -// -// For more information, see Reserved Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/concepts-on-demand-reserved-instances.html) -// and Reserved Instance Marketplace (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ri-market-general.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) PurchaseReservedInstancesOffering(input *PurchaseReservedInstancesOfferingInput) (*PurchaseReservedInstancesOfferingOutput, error) { - req, out := c.PurchaseReservedInstancesOfferingRequest(input) - err := req.Send() - return out, err -} - -const opPurchaseScheduledInstances = "PurchaseScheduledInstances" - -// PurchaseScheduledInstancesRequest generates a "aws/request.Request" representing the -// client's request for the PurchaseScheduledInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PurchaseScheduledInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PurchaseScheduledInstancesRequest method. -// req, resp := client.PurchaseScheduledInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) PurchaseScheduledInstancesRequest(input *PurchaseScheduledInstancesInput) (req *request.Request, output *PurchaseScheduledInstancesOutput) { - op := &request.Operation{ - Name: opPurchaseScheduledInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &PurchaseScheduledInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &PurchaseScheduledInstancesOutput{} - req.Data = output - return -} - -// Purchases one or more Scheduled Instances with the specified schedule. -// -// Scheduled Instances enable you to purchase Amazon EC2 compute capacity by -// the hour for a one-year term. Before you can purchase a Scheduled Instance, -// you must call DescribeScheduledInstanceAvailability to check for available -// schedules and obtain a purchase token. After you purchase a Scheduled Instance, -// you must call RunScheduledInstances during each scheduled time period. -// -// After you purchase a Scheduled Instance, you can't cancel, modify, or resell -// your purchase. -func (c *EC2) PurchaseScheduledInstances(input *PurchaseScheduledInstancesInput) (*PurchaseScheduledInstancesOutput, error) { - req, out := c.PurchaseScheduledInstancesRequest(input) - err := req.Send() - return out, err -} - -const opRebootInstances = "RebootInstances" - -// RebootInstancesRequest generates a "aws/request.Request" representing the -// client's request for the RebootInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RebootInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RebootInstancesRequest method. -// req, resp := client.RebootInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RebootInstancesRequest(input *RebootInstancesInput) (req *request.Request, output *RebootInstancesOutput) { - op := &request.Operation{ - Name: opRebootInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RebootInstancesInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &RebootInstancesOutput{} - req.Data = output - return -} - -// Requests a reboot of one or more instances. This operation is asynchronous; -// it only queues a request to reboot the specified instances. The operation -// succeeds if the instances are valid and belong to you. Requests to reboot -// terminated instances are ignored. -// -// If an instance does not cleanly shut down within four minutes, Amazon EC2 -// performs a hard reboot. -// -// For more information about troubleshooting, see Getting Console Output and -// Rebooting Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-console.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) RebootInstances(input *RebootInstancesInput) (*RebootInstancesOutput, error) { - req, out := c.RebootInstancesRequest(input) - err := req.Send() - return out, err -} - -const opRegisterImage = "RegisterImage" - -// RegisterImageRequest generates a "aws/request.Request" representing the -// client's request for the RegisterImage operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RegisterImage method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RegisterImageRequest method. -// req, resp := client.RegisterImageRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RegisterImageRequest(input *RegisterImageInput) (req *request.Request, output *RegisterImageOutput) { - op := &request.Operation{ - Name: opRegisterImage, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RegisterImageInput{} - } - - req = c.newRequest(op, input, output) - output = &RegisterImageOutput{} - req.Data = output - return -} - -// Registers an AMI. When you're creating an AMI, this is the final step you -// must complete before you can launch an instance from the AMI. For more information -// about creating AMIs, see Creating Your Own AMIs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// For Amazon EBS-backed instances, CreateImage creates and registers the -// AMI in a single request, so you don't have to register the AMI yourself. -// -// You can also use RegisterImage to create an Amazon EBS-backed Linux AMI -// from a snapshot of a root device volume. For more information, see Launching -// an Instance from a Snapshot (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_LaunchingInstanceFromSnapshot.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// Some Linux distributions, such as Red Hat Enterprise Linux (RHEL) and SUSE -// Linux Enterprise Server (SLES), use the EC2 billingProduct code associated -// with an AMI to verify subscription status for package updates. Creating an -// AMI from an EBS snapshot does not maintain this billing code, and subsequent -// instances launched from such an AMI will not be able to connect to package -// update infrastructure. -// -// Similarly, although you can create a Windows AMI from a snapshot, you can't -// successfully launch an instance from the AMI. -// -// To create Windows AMIs or to create AMIs for Linux operating systems that -// must retain AMI billing codes to work properly, see CreateImage. -// -// If needed, you can deregister an AMI at any time. Any modifications you -// make to an AMI backed by an instance store volume invalidates its registration. -// If you make changes to an image, deregister the previous image and register -// the new image. -// -// You can't register an image where a secondary (non-root) snapshot has AWS -// Marketplace product codes. -func (c *EC2) RegisterImage(input *RegisterImageInput) (*RegisterImageOutput, error) { - req, out := c.RegisterImageRequest(input) - err := req.Send() - return out, err -} - -const opRejectVpcPeeringConnection = "RejectVpcPeeringConnection" - -// RejectVpcPeeringConnectionRequest generates a "aws/request.Request" representing the -// client's request for the RejectVpcPeeringConnection operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RejectVpcPeeringConnection method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RejectVpcPeeringConnectionRequest method. -// req, resp := client.RejectVpcPeeringConnectionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RejectVpcPeeringConnectionRequest(input *RejectVpcPeeringConnectionInput) (req *request.Request, output *RejectVpcPeeringConnectionOutput) { - op := &request.Operation{ - Name: opRejectVpcPeeringConnection, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RejectVpcPeeringConnectionInput{} - } - - req = c.newRequest(op, input, output) - output = &RejectVpcPeeringConnectionOutput{} - req.Data = output - return -} - -// Rejects a VPC peering connection request. The VPC peering connection must -// be in the pending-acceptance state. Use the DescribeVpcPeeringConnections -// request to view your outstanding VPC peering connection requests. To delete -// an active VPC peering connection, or to delete a VPC peering connection request -// that you initiated, use DeleteVpcPeeringConnection. -func (c *EC2) RejectVpcPeeringConnection(input *RejectVpcPeeringConnectionInput) (*RejectVpcPeeringConnectionOutput, error) { - req, out := c.RejectVpcPeeringConnectionRequest(input) - err := req.Send() - return out, err -} - -const opReleaseAddress = "ReleaseAddress" - -// ReleaseAddressRequest generates a "aws/request.Request" representing the -// client's request for the ReleaseAddress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReleaseAddress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReleaseAddressRequest method. -// req, resp := client.ReleaseAddressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ReleaseAddressRequest(input *ReleaseAddressInput) (req *request.Request, output *ReleaseAddressOutput) { - op := &request.Operation{ - Name: opReleaseAddress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ReleaseAddressInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ReleaseAddressOutput{} - req.Data = output - return -} - -// Releases the specified Elastic IP address. -// -// After releasing an Elastic IP address, it is released to the IP address -// pool and might be unavailable to you. Be sure to update your DNS records -// and any servers or devices that communicate with the address. If you attempt -// to release an Elastic IP address that you already released, you'll get an -// AuthFailure error if the address is already allocated to another AWS account. -// -// [EC2-Classic, default VPC] Releasing an Elastic IP address automatically -// disassociates it from any instance that it's associated with. To disassociate -// an Elastic IP address without releasing it, use DisassociateAddress. -// -// [Nondefault VPC] You must use DisassociateAddress to disassociate the Elastic -// IP address before you try to release it. Otherwise, Amazon EC2 returns an -// error (InvalidIPAddress.InUse). -func (c *EC2) ReleaseAddress(input *ReleaseAddressInput) (*ReleaseAddressOutput, error) { - req, out := c.ReleaseAddressRequest(input) - err := req.Send() - return out, err -} - -const opReleaseHosts = "ReleaseHosts" - -// ReleaseHostsRequest generates a "aws/request.Request" representing the -// client's request for the ReleaseHosts operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReleaseHosts method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReleaseHostsRequest method. -// req, resp := client.ReleaseHostsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ReleaseHostsRequest(input *ReleaseHostsInput) (req *request.Request, output *ReleaseHostsOutput) { - op := &request.Operation{ - Name: opReleaseHosts, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ReleaseHostsInput{} - } - - req = c.newRequest(op, input, output) - output = &ReleaseHostsOutput{} - req.Data = output - return -} - -// When you no longer want to use an On-Demand Dedicated Host it can be released. -// On-Demand billing is stopped and the host goes into released state. The host -// ID of Dedicated Hosts that have been released can no longer be specified -// in another request, e.g., ModifyHosts. You must stop or terminate all instances -// on a host before it can be released. -// -// When Dedicated Hosts are released, it make take some time for them to stop -// counting toward your limit and you may receive capacity errors when trying -// to allocate new Dedicated hosts. Try waiting a few minutes, and then try -// again. -// -// Released hosts will still appear in a DescribeHosts response. -func (c *EC2) ReleaseHosts(input *ReleaseHostsInput) (*ReleaseHostsOutput, error) { - req, out := c.ReleaseHostsRequest(input) - err := req.Send() - return out, err -} - -const opReplaceNetworkAclAssociation = "ReplaceNetworkAclAssociation" - -// ReplaceNetworkAclAssociationRequest generates a "aws/request.Request" representing the -// client's request for the ReplaceNetworkAclAssociation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReplaceNetworkAclAssociation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReplaceNetworkAclAssociationRequest method. -// req, resp := client.ReplaceNetworkAclAssociationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ReplaceNetworkAclAssociationRequest(input *ReplaceNetworkAclAssociationInput) (req *request.Request, output *ReplaceNetworkAclAssociationOutput) { - op := &request.Operation{ - Name: opReplaceNetworkAclAssociation, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ReplaceNetworkAclAssociationInput{} - } - - req = c.newRequest(op, input, output) - output = &ReplaceNetworkAclAssociationOutput{} - req.Data = output - return -} - -// Changes which network ACL a subnet is associated with. By default when you -// create a subnet, it's automatically associated with the default network ACL. -// For more information about network ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) ReplaceNetworkAclAssociation(input *ReplaceNetworkAclAssociationInput) (*ReplaceNetworkAclAssociationOutput, error) { - req, out := c.ReplaceNetworkAclAssociationRequest(input) - err := req.Send() - return out, err -} - -const opReplaceNetworkAclEntry = "ReplaceNetworkAclEntry" - -// ReplaceNetworkAclEntryRequest generates a "aws/request.Request" representing the -// client's request for the ReplaceNetworkAclEntry operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReplaceNetworkAclEntry method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReplaceNetworkAclEntryRequest method. -// req, resp := client.ReplaceNetworkAclEntryRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ReplaceNetworkAclEntryRequest(input *ReplaceNetworkAclEntryInput) (req *request.Request, output *ReplaceNetworkAclEntryOutput) { - op := &request.Operation{ - Name: opReplaceNetworkAclEntry, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ReplaceNetworkAclEntryInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ReplaceNetworkAclEntryOutput{} - req.Data = output - return -} - -// Replaces an entry (rule) in a network ACL. For more information about network -// ACLs, see Network ACLs (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_ACLs.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) ReplaceNetworkAclEntry(input *ReplaceNetworkAclEntryInput) (*ReplaceNetworkAclEntryOutput, error) { - req, out := c.ReplaceNetworkAclEntryRequest(input) - err := req.Send() - return out, err -} - -const opReplaceRoute = "ReplaceRoute" - -// ReplaceRouteRequest generates a "aws/request.Request" representing the -// client's request for the ReplaceRoute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReplaceRoute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReplaceRouteRequest method. -// req, resp := client.ReplaceRouteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ReplaceRouteRequest(input *ReplaceRouteInput) (req *request.Request, output *ReplaceRouteOutput) { - op := &request.Operation{ - Name: opReplaceRoute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ReplaceRouteInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ReplaceRouteOutput{} - req.Data = output - return -} - -// Replaces an existing route within a route table in a VPC. You must provide -// only one of the following: Internet gateway or virtual private gateway, NAT -// instance, NAT gateway, VPC peering connection, or network interface. -// -// For more information about route tables, see Route Tables (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) ReplaceRoute(input *ReplaceRouteInput) (*ReplaceRouteOutput, error) { - req, out := c.ReplaceRouteRequest(input) - err := req.Send() - return out, err -} - -const opReplaceRouteTableAssociation = "ReplaceRouteTableAssociation" - -// ReplaceRouteTableAssociationRequest generates a "aws/request.Request" representing the -// client's request for the ReplaceRouteTableAssociation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReplaceRouteTableAssociation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReplaceRouteTableAssociationRequest method. -// req, resp := client.ReplaceRouteTableAssociationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ReplaceRouteTableAssociationRequest(input *ReplaceRouteTableAssociationInput) (req *request.Request, output *ReplaceRouteTableAssociationOutput) { - op := &request.Operation{ - Name: opReplaceRouteTableAssociation, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ReplaceRouteTableAssociationInput{} - } - - req = c.newRequest(op, input, output) - output = &ReplaceRouteTableAssociationOutput{} - req.Data = output - return -} - -// Changes the route table associated with a given subnet in a VPC. After the -// operation completes, the subnet uses the routes in the new route table it's -// associated with. For more information about route tables, see Route Tables -// (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Route_Tables.html) -// in the Amazon Virtual Private Cloud User Guide. -// -// You can also use ReplaceRouteTableAssociation to change which table is the -// main route table in the VPC. You just specify the main route table's association -// ID and the route table to be the new main route table. -func (c *EC2) ReplaceRouteTableAssociation(input *ReplaceRouteTableAssociationInput) (*ReplaceRouteTableAssociationOutput, error) { - req, out := c.ReplaceRouteTableAssociationRequest(input) - err := req.Send() - return out, err -} - -const opReportInstanceStatus = "ReportInstanceStatus" - -// ReportInstanceStatusRequest generates a "aws/request.Request" representing the -// client's request for the ReportInstanceStatus operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReportInstanceStatus method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReportInstanceStatusRequest method. -// req, resp := client.ReportInstanceStatusRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ReportInstanceStatusRequest(input *ReportInstanceStatusInput) (req *request.Request, output *ReportInstanceStatusOutput) { - op := &request.Operation{ - Name: opReportInstanceStatus, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ReportInstanceStatusInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ReportInstanceStatusOutput{} - req.Data = output - return -} - -// Submits feedback about the status of an instance. The instance must be in -// the running state. If your experience with the instance differs from the -// instance status returned by DescribeInstanceStatus, use ReportInstanceStatus -// to report your experience with the instance. Amazon EC2 collects this information -// to improve the accuracy of status checks. -// -// Use of this action does not change the value returned by DescribeInstanceStatus. -func (c *EC2) ReportInstanceStatus(input *ReportInstanceStatusInput) (*ReportInstanceStatusOutput, error) { - req, out := c.ReportInstanceStatusRequest(input) - err := req.Send() - return out, err -} - -const opRequestSpotFleet = "RequestSpotFleet" - -// RequestSpotFleetRequest generates a "aws/request.Request" representing the -// client's request for the RequestSpotFleet operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RequestSpotFleet method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RequestSpotFleetRequest method. -// req, resp := client.RequestSpotFleetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RequestSpotFleetRequest(input *RequestSpotFleetInput) (req *request.Request, output *RequestSpotFleetOutput) { - op := &request.Operation{ - Name: opRequestSpotFleet, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RequestSpotFleetInput{} - } - - req = c.newRequest(op, input, output) - output = &RequestSpotFleetOutput{} - req.Data = output - return -} - -// Creates a Spot fleet request. -// -// You can submit a single request that includes multiple launch specifications -// that vary by instance type, AMI, Availability Zone, or subnet. -// -// By default, the Spot fleet requests Spot instances in the Spot pool where -// the price per unit is the lowest. Each launch specification can include its -// own instance weighting that reflects the value of the instance type to your -// application workload. -// -// Alternatively, you can specify that the Spot fleet distribute the target -// capacity across the Spot pools included in its launch specifications. By -// ensuring that the Spot instances in your Spot fleet are in different Spot -// pools, you can improve the availability of your fleet. -// -// For more information, see Spot Fleet Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-requests.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) RequestSpotFleet(input *RequestSpotFleetInput) (*RequestSpotFleetOutput, error) { - req, out := c.RequestSpotFleetRequest(input) - err := req.Send() - return out, err -} - -const opRequestSpotInstances = "RequestSpotInstances" - -// RequestSpotInstancesRequest generates a "aws/request.Request" representing the -// client's request for the RequestSpotInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RequestSpotInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RequestSpotInstancesRequest method. -// req, resp := client.RequestSpotInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RequestSpotInstancesRequest(input *RequestSpotInstancesInput) (req *request.Request, output *RequestSpotInstancesOutput) { - op := &request.Operation{ - Name: opRequestSpotInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RequestSpotInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &RequestSpotInstancesOutput{} - req.Data = output - return -} - -// Creates a Spot instance request. Spot instances are instances that Amazon -// EC2 launches when the bid price that you specify exceeds the current Spot -// price. Amazon EC2 periodically sets the Spot price based on available Spot -// Instance capacity and current Spot instance requests. For more information, -// see Spot Instance Requests (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) RequestSpotInstances(input *RequestSpotInstancesInput) (*RequestSpotInstancesOutput, error) { - req, out := c.RequestSpotInstancesRequest(input) - err := req.Send() - return out, err -} - -const opResetImageAttribute = "ResetImageAttribute" - -// ResetImageAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ResetImageAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ResetImageAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ResetImageAttributeRequest method. -// req, resp := client.ResetImageAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ResetImageAttributeRequest(input *ResetImageAttributeInput) (req *request.Request, output *ResetImageAttributeOutput) { - op := &request.Operation{ - Name: opResetImageAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ResetImageAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ResetImageAttributeOutput{} - req.Data = output - return -} - -// Resets an attribute of an AMI to its default value. -// -// The productCodes attribute can't be reset. -func (c *EC2) ResetImageAttribute(input *ResetImageAttributeInput) (*ResetImageAttributeOutput, error) { - req, out := c.ResetImageAttributeRequest(input) - err := req.Send() - return out, err -} - -const opResetInstanceAttribute = "ResetInstanceAttribute" - -// ResetInstanceAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ResetInstanceAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ResetInstanceAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ResetInstanceAttributeRequest method. -// req, resp := client.ResetInstanceAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ResetInstanceAttributeRequest(input *ResetInstanceAttributeInput) (req *request.Request, output *ResetInstanceAttributeOutput) { - op := &request.Operation{ - Name: opResetInstanceAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ResetInstanceAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ResetInstanceAttributeOutput{} - req.Data = output - return -} - -// Resets an attribute of an instance to its default value. To reset the kernel -// or ramdisk, the instance must be in a stopped state. To reset the sourceDestCheck, -// the instance can be either running or stopped. -// -// The sourceDestCheck attribute controls whether source/destination checking -// is enabled. The default value is true, which means checking is enabled. This -// value must be false for a NAT instance to perform NAT. For more information, -// see NAT Instances (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html) -// in the Amazon Virtual Private Cloud User Guide. -func (c *EC2) ResetInstanceAttribute(input *ResetInstanceAttributeInput) (*ResetInstanceAttributeOutput, error) { - req, out := c.ResetInstanceAttributeRequest(input) - err := req.Send() - return out, err -} - -const opResetNetworkInterfaceAttribute = "ResetNetworkInterfaceAttribute" - -// ResetNetworkInterfaceAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ResetNetworkInterfaceAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ResetNetworkInterfaceAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ResetNetworkInterfaceAttributeRequest method. -// req, resp := client.ResetNetworkInterfaceAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ResetNetworkInterfaceAttributeRequest(input *ResetNetworkInterfaceAttributeInput) (req *request.Request, output *ResetNetworkInterfaceAttributeOutput) { - op := &request.Operation{ - Name: opResetNetworkInterfaceAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ResetNetworkInterfaceAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ResetNetworkInterfaceAttributeOutput{} - req.Data = output - return -} - -// Resets a network interface attribute. You can specify only one attribute -// at a time. -func (c *EC2) ResetNetworkInterfaceAttribute(input *ResetNetworkInterfaceAttributeInput) (*ResetNetworkInterfaceAttributeOutput, error) { - req, out := c.ResetNetworkInterfaceAttributeRequest(input) - err := req.Send() - return out, err -} - -const opResetSnapshotAttribute = "ResetSnapshotAttribute" - -// ResetSnapshotAttributeRequest generates a "aws/request.Request" representing the -// client's request for the ResetSnapshotAttribute operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ResetSnapshotAttribute method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ResetSnapshotAttributeRequest method. -// req, resp := client.ResetSnapshotAttributeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) ResetSnapshotAttributeRequest(input *ResetSnapshotAttributeInput) (req *request.Request, output *ResetSnapshotAttributeOutput) { - op := &request.Operation{ - Name: opResetSnapshotAttribute, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ResetSnapshotAttributeInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &ResetSnapshotAttributeOutput{} - req.Data = output - return -} - -// Resets permission settings for the specified snapshot. -// -// For more information on modifying snapshot permissions, see Sharing Snapshots -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-modifying-snapshot-permissions.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) ResetSnapshotAttribute(input *ResetSnapshotAttributeInput) (*ResetSnapshotAttributeOutput, error) { - req, out := c.ResetSnapshotAttributeRequest(input) - err := req.Send() - return out, err -} - -const opRestoreAddressToClassic = "RestoreAddressToClassic" - -// RestoreAddressToClassicRequest generates a "aws/request.Request" representing the -// client's request for the RestoreAddressToClassic operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RestoreAddressToClassic method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RestoreAddressToClassicRequest method. -// req, resp := client.RestoreAddressToClassicRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RestoreAddressToClassicRequest(input *RestoreAddressToClassicInput) (req *request.Request, output *RestoreAddressToClassicOutput) { - op := &request.Operation{ - Name: opRestoreAddressToClassic, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RestoreAddressToClassicInput{} - } - - req = c.newRequest(op, input, output) - output = &RestoreAddressToClassicOutput{} - req.Data = output - return -} - -// Restores an Elastic IP address that was previously moved to the EC2-VPC platform -// back to the EC2-Classic platform. You cannot move an Elastic IP address that -// was originally allocated for use in EC2-VPC. The Elastic IP address must -// not be associated with an instance or network interface. -func (c *EC2) RestoreAddressToClassic(input *RestoreAddressToClassicInput) (*RestoreAddressToClassicOutput, error) { - req, out := c.RestoreAddressToClassicRequest(input) - err := req.Send() - return out, err -} - -const opRevokeSecurityGroupEgress = "RevokeSecurityGroupEgress" - -// RevokeSecurityGroupEgressRequest generates a "aws/request.Request" representing the -// client's request for the RevokeSecurityGroupEgress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RevokeSecurityGroupEgress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RevokeSecurityGroupEgressRequest method. -// req, resp := client.RevokeSecurityGroupEgressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RevokeSecurityGroupEgressRequest(input *RevokeSecurityGroupEgressInput) (req *request.Request, output *RevokeSecurityGroupEgressOutput) { - op := &request.Operation{ - Name: opRevokeSecurityGroupEgress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RevokeSecurityGroupEgressInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &RevokeSecurityGroupEgressOutput{} - req.Data = output - return -} - -// [EC2-VPC only] Removes one or more egress rules from a security group for -// EC2-VPC. This action doesn't apply to security groups for use in EC2-Classic. -// The values that you specify in the revoke request (for example, ports) must -// match the existing rule's values for the rule to be revoked. -// -// Each rule consists of the protocol and the CIDR range or source security -// group. For the TCP and UDP protocols, you must also specify the destination -// port or range of ports. For the ICMP protocol, you must also specify the -// ICMP type and code. -// -// Rule changes are propagated to instances within the security group as quickly -// as possible. However, a small delay might occur. -func (c *EC2) RevokeSecurityGroupEgress(input *RevokeSecurityGroupEgressInput) (*RevokeSecurityGroupEgressOutput, error) { - req, out := c.RevokeSecurityGroupEgressRequest(input) - err := req.Send() - return out, err -} - -const opRevokeSecurityGroupIngress = "RevokeSecurityGroupIngress" - -// RevokeSecurityGroupIngressRequest generates a "aws/request.Request" representing the -// client's request for the RevokeSecurityGroupIngress operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RevokeSecurityGroupIngress method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RevokeSecurityGroupIngressRequest method. -// req, resp := client.RevokeSecurityGroupIngressRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RevokeSecurityGroupIngressRequest(input *RevokeSecurityGroupIngressInput) (req *request.Request, output *RevokeSecurityGroupIngressOutput) { - op := &request.Operation{ - Name: opRevokeSecurityGroupIngress, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RevokeSecurityGroupIngressInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &RevokeSecurityGroupIngressOutput{} - req.Data = output - return -} - -// Removes one or more ingress rules from a security group. The values that -// you specify in the revoke request (for example, ports) must match the existing -// rule's values for the rule to be removed. -// -// Each rule consists of the protocol and the CIDR range or source security -// group. For the TCP and UDP protocols, you must also specify the destination -// port or range of ports. For the ICMP protocol, you must also specify the -// ICMP type and code. -// -// Rule changes are propagated to instances within the security group as quickly -// as possible. However, a small delay might occur. -func (c *EC2) RevokeSecurityGroupIngress(input *RevokeSecurityGroupIngressInput) (*RevokeSecurityGroupIngressOutput, error) { - req, out := c.RevokeSecurityGroupIngressRequest(input) - err := req.Send() - return out, err -} - -const opRunInstances = "RunInstances" - -// RunInstancesRequest generates a "aws/request.Request" representing the -// client's request for the RunInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RunInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RunInstancesRequest method. -// req, resp := client.RunInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RunInstancesRequest(input *RunInstancesInput) (req *request.Request, output *Reservation) { - op := &request.Operation{ - Name: opRunInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RunInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &Reservation{} - req.Data = output - return -} - -// Launches the specified number of instances using an AMI for which you have -// permissions. -// -// When you launch an instance, it enters the pending state. After the instance -// is ready for you, it enters the running state. To check the state of your -// instance, call DescribeInstances. -// -// To ensure faster instance launches, break up large requests into smaller -// batches. For example, create five separate launch requests for 100 instances -// each instead of one launch request for 500 instances. -// -// To tag your instance, ensure that it is running as CreateTags requires a -// resource ID. For more information about tagging, see Tagging Your Amazon -// EC2 Resources (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_Tags.html). -// -// If you don't specify a security group when launching an instance, Amazon -// EC2 uses the default security group. For more information, see Security Groups -// (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-network-security.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// [EC2-VPC only accounts] If you don't specify a subnet in the request, we -// choose a default subnet from your default VPC for you. -// -// [EC2-Classic accounts] If you're launching into EC2-Classic and you don't -// specify an Availability Zone, we choose one for you. -// -// Linux instances have access to the public key of the key pair at boot. You -// can use this key to provide secure access to the instance. Amazon EC2 public -// images use this feature to provide secure access without passwords. For more -// information, see Key Pairs (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// You can provide optional user data when launching an instance. For more -// information, see Instance Metadata (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// If any of the AMIs have a product code attached for which the user has not -// subscribed, RunInstances fails. -// -// Some instance types can only be launched into a VPC. If you do not have -// a default VPC, or if you do not specify a subnet ID in the request, RunInstances -// fails. For more information, see Instance Types Available Only in a VPC (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-vpc.html#vpc-only-instance-types). -// -// For more information about troubleshooting, see What To Do If An Instance -// Immediately Terminates (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Using_InstanceStraightToTerminated.html), -// and Troubleshooting Connecting to Your Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesConnecting.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) RunInstances(input *RunInstancesInput) (*Reservation, error) { - req, out := c.RunInstancesRequest(input) - err := req.Send() - return out, err -} - -const opRunScheduledInstances = "RunScheduledInstances" - -// RunScheduledInstancesRequest generates a "aws/request.Request" representing the -// client's request for the RunScheduledInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RunScheduledInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RunScheduledInstancesRequest method. -// req, resp := client.RunScheduledInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) RunScheduledInstancesRequest(input *RunScheduledInstancesInput) (req *request.Request, output *RunScheduledInstancesOutput) { - op := &request.Operation{ - Name: opRunScheduledInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RunScheduledInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &RunScheduledInstancesOutput{} - req.Data = output - return -} - -// Launches the specified Scheduled Instances. -// -// Before you can launch a Scheduled Instance, you must purchase it and obtain -// an identifier using PurchaseScheduledInstances. -// -// You must launch a Scheduled Instance during its scheduled time period. You -// can't stop or reboot a Scheduled Instance, but you can terminate it as needed. -// If you terminate a Scheduled Instance before the current scheduled time period -// ends, you can launch it again after a few minutes. For more information, -// see Scheduled Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-scheduled-instances.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) RunScheduledInstances(input *RunScheduledInstancesInput) (*RunScheduledInstancesOutput, error) { - req, out := c.RunScheduledInstancesRequest(input) - err := req.Send() - return out, err -} - -const opStartInstances = "StartInstances" - -// StartInstancesRequest generates a "aws/request.Request" representing the -// client's request for the StartInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the StartInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the StartInstancesRequest method. -// req, resp := client.StartInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) StartInstancesRequest(input *StartInstancesInput) (req *request.Request, output *StartInstancesOutput) { - op := &request.Operation{ - Name: opStartInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &StartInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &StartInstancesOutput{} - req.Data = output - return -} - -// Starts an Amazon EBS-backed AMI that you've previously stopped. -// -// Instances that use Amazon EBS volumes as their root devices can be quickly -// stopped and started. When an instance is stopped, the compute resources are -// released and you are not billed for hourly instance usage. However, your -// root partition Amazon EBS volume remains, continues to persist your data, -// and you are charged for Amazon EBS volume usage. You can restart your instance -// at any time. Each time you transition an instance from stopped to started, -// Amazon EC2 charges a full instance hour, even if transitions happen multiple -// times within a single hour. -// -// Before stopping an instance, make sure it is in a state from which it can -// be restarted. Stopping an instance does not preserve data stored in RAM. -// -// Performing this operation on an instance that uses an instance store as -// its root device returns an error. -// -// For more information, see Stopping Instances (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) StartInstances(input *StartInstancesInput) (*StartInstancesOutput, error) { - req, out := c.StartInstancesRequest(input) - err := req.Send() - return out, err -} - -const opStopInstances = "StopInstances" - -// StopInstancesRequest generates a "aws/request.Request" representing the -// client's request for the StopInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the StopInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the StopInstancesRequest method. -// req, resp := client.StopInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) StopInstancesRequest(input *StopInstancesInput) (req *request.Request, output *StopInstancesOutput) { - op := &request.Operation{ - Name: opStopInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &StopInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &StopInstancesOutput{} - req.Data = output - return -} - -// Stops an Amazon EBS-backed instance. -// -// We don't charge hourly usage for a stopped instance, or data transfer fees; -// however, your root partition Amazon EBS volume remains, continues to persist -// your data, and you are charged for Amazon EBS volume usage. Each time you -// transition an instance from stopped to started, Amazon EC2 charges a full -// instance hour, even if transitions happen multiple times within a single -// hour. -// -// You can't start or stop Spot instances, and you can't stop instance store-backed -// instances. -// -// When you stop an instance, we shut it down. You can restart your instance -// at any time. Before stopping an instance, make sure it is in a state from -// which it can be restarted. Stopping an instance does not preserve data stored -// in RAM. -// -// Stopping an instance is different to rebooting or terminating it. For example, -// when you stop an instance, the root device and any other devices attached -// to the instance persist. When you terminate an instance, the root device -// and any other devices attached during the instance launch are automatically -// deleted. For more information about the differences between rebooting, stopping, -// and terminating instances, see Instance Lifecycle (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// When you stop an instance, we attempt to shut it down forcibly after a short -// while. If your instance appears stuck in the stopping state after a period -// of time, there may be an issue with the underlying host computer. For more -// information, see Troubleshooting Stopping Your Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesStopping.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) StopInstances(input *StopInstancesInput) (*StopInstancesOutput, error) { - req, out := c.StopInstancesRequest(input) - err := req.Send() - return out, err -} - -const opTerminateInstances = "TerminateInstances" - -// TerminateInstancesRequest generates a "aws/request.Request" representing the -// client's request for the TerminateInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the TerminateInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the TerminateInstancesRequest method. -// req, resp := client.TerminateInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) TerminateInstancesRequest(input *TerminateInstancesInput) (req *request.Request, output *TerminateInstancesOutput) { - op := &request.Operation{ - Name: opTerminateInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &TerminateInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &TerminateInstancesOutput{} - req.Data = output - return -} - -// Shuts down one or more instances. This operation is idempotent; if you terminate -// an instance more than once, each call succeeds. -// -// If you specify multiple instances and the request fails (for example, because -// of a single incorrect instance ID), none of the instances are terminated. -// -// Terminated instances remain visible after termination (for approximately -// one hour). -// -// By default, Amazon EC2 deletes all EBS volumes that were attached when the -// instance launched. Volumes attached after instance launch continue running. -// -// You can stop, start, and terminate EBS-backed instances. You can only terminate -// instance store-backed instances. What happens to an instance differs if you -// stop it or terminate it. For example, when you stop an instance, the root -// device and any other devices attached to the instance persist. When you terminate -// an instance, any attached EBS volumes with the DeleteOnTermination block -// device mapping parameter set to true are automatically deleted. For more -// information about the differences between stopping and terminating instances, -// see Instance Lifecycle (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-lifecycle.html) -// in the Amazon Elastic Compute Cloud User Guide. -// -// For more information about troubleshooting, see Troubleshooting Terminating -// Your Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/TroubleshootingInstancesShuttingDown.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) TerminateInstances(input *TerminateInstancesInput) (*TerminateInstancesOutput, error) { - req, out := c.TerminateInstancesRequest(input) - err := req.Send() - return out, err -} - -const opUnassignPrivateIpAddresses = "UnassignPrivateIpAddresses" - -// UnassignPrivateIpAddressesRequest generates a "aws/request.Request" representing the -// client's request for the UnassignPrivateIpAddresses operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UnassignPrivateIpAddresses method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UnassignPrivateIpAddressesRequest method. -// req, resp := client.UnassignPrivateIpAddressesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) UnassignPrivateIpAddressesRequest(input *UnassignPrivateIpAddressesInput) (req *request.Request, output *UnassignPrivateIpAddressesOutput) { - op := &request.Operation{ - Name: opUnassignPrivateIpAddresses, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &UnassignPrivateIpAddressesInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(ec2query.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &UnassignPrivateIpAddressesOutput{} - req.Data = output - return -} - -// Unassigns one or more secondary private IP addresses from a network interface. -func (c *EC2) UnassignPrivateIpAddresses(input *UnassignPrivateIpAddressesInput) (*UnassignPrivateIpAddressesOutput, error) { - req, out := c.UnassignPrivateIpAddressesRequest(input) - err := req.Send() - return out, err -} - -const opUnmonitorInstances = "UnmonitorInstances" - -// UnmonitorInstancesRequest generates a "aws/request.Request" representing the -// client's request for the UnmonitorInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UnmonitorInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UnmonitorInstancesRequest method. -// req, resp := client.UnmonitorInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *EC2) UnmonitorInstancesRequest(input *UnmonitorInstancesInput) (req *request.Request, output *UnmonitorInstancesOutput) { - op := &request.Operation{ - Name: opUnmonitorInstances, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &UnmonitorInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &UnmonitorInstancesOutput{} - req.Data = output - return -} - -// Disables monitoring for a running instance. For more information about monitoring -// instances, see Monitoring Your Instances and Volumes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-cloudwatch.html) -// in the Amazon Elastic Compute Cloud User Guide. -func (c *EC2) UnmonitorInstances(input *UnmonitorInstancesInput) (*UnmonitorInstancesOutput, error) { - req, out := c.UnmonitorInstancesRequest(input) - err := req.Send() - return out, err -} - -// Contains the parameters for accepting the quote. -type AcceptReservedInstancesExchangeQuoteInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The IDs of the Convertible Reserved Instances that you want to exchange for - // other Convertible Reserved Instances of the same or higher value. - // - // ReservedInstanceIds is a required field - ReservedInstanceIds []*string `locationName:"ReservedInstanceId" locationNameList:"ReservedInstanceId" type:"list" required:"true"` - - // The configurations of the Convertible Reserved Instance offerings you are - // purchasing in this exchange. - TargetConfigurations []*TargetConfigurationRequest `locationName:"TargetConfiguration" locationNameList:"TargetConfigurationRequest" type:"list"` -} - -// String returns the string representation -func (s AcceptReservedInstancesExchangeQuoteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AcceptReservedInstancesExchangeQuoteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AcceptReservedInstancesExchangeQuoteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AcceptReservedInstancesExchangeQuoteInput"} - if s.ReservedInstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("ReservedInstanceIds")) - } - if s.TargetConfigurations != nil { - for i, v := range s.TargetConfigurations { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TargetConfigurations", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The result of the exchange and whether it was successful. -type AcceptReservedInstancesExchangeQuoteOutput struct { - _ struct{} `type:"structure"` - - // The ID of the successful exchange. - ExchangeId *string `locationName:"exchangeId" type:"string"` -} - -// String returns the string representation -func (s AcceptReservedInstancesExchangeQuoteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AcceptReservedInstancesExchangeQuoteOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AcceptVpcPeeringConnection. -type AcceptVpcPeeringConnectionInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC peering connection. - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` -} - -// String returns the string representation -func (s AcceptVpcPeeringConnectionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AcceptVpcPeeringConnectionInput) GoString() string { - return s.String() -} - -// Contains the output of AcceptVpcPeeringConnection. -type AcceptVpcPeeringConnectionOutput struct { - _ struct{} `type:"structure"` - - // Information about the VPC peering connection. - VpcPeeringConnection *VpcPeeringConnection `locationName:"vpcPeeringConnection" type:"structure"` -} - -// String returns the string representation -func (s AcceptVpcPeeringConnectionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AcceptVpcPeeringConnectionOutput) GoString() string { - return s.String() -} - -// Describes an account attribute. -type AccountAttribute struct { - _ struct{} `type:"structure"` - - // The name of the account attribute. - AttributeName *string `locationName:"attributeName" type:"string"` - - // One or more values for the account attribute. - AttributeValues []*AccountAttributeValue `locationName:"attributeValueSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s AccountAttribute) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AccountAttribute) GoString() string { - return s.String() -} - -// Describes a value of an account attribute. -type AccountAttributeValue struct { - _ struct{} `type:"structure"` - - // The value of the attribute. - AttributeValue *string `locationName:"attributeValue" type:"string"` -} - -// String returns the string representation -func (s AccountAttributeValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AccountAttributeValue) GoString() string { - return s.String() -} - -// Describes a running instance in a Spot fleet. -type ActiveInstance struct { - _ struct{} `type:"structure"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The instance type. - InstanceType *string `locationName:"instanceType" type:"string"` - - // The ID of the Spot instance request. - SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"` -} - -// String returns the string representation -func (s ActiveInstance) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ActiveInstance) GoString() string { - return s.String() -} - -// Describes an Elastic IP address. -type Address struct { - _ struct{} `type:"structure"` - - // The ID representing the allocation of the address for use with EC2-VPC. - AllocationId *string `locationName:"allocationId" type:"string"` - - // The ID representing the association of the address with an instance in a - // VPC. - AssociationId *string `locationName:"associationId" type:"string"` - - // Indicates whether this Elastic IP address is for use with instances in EC2-Classic - // (standard) or instances in a VPC (vpc). - Domain *string `locationName:"domain" type:"string" enum:"DomainType"` - - // The ID of the instance that the address is associated with (if any). - InstanceId *string `locationName:"instanceId" type:"string"` - - // The ID of the network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // The ID of the AWS account that owns the network interface. - NetworkInterfaceOwnerId *string `locationName:"networkInterfaceOwnerId" type:"string"` - - // The private IP address associated with the Elastic IP address. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // The Elastic IP address. - PublicIp *string `locationName:"publicIp" type:"string"` -} - -// String returns the string representation -func (s Address) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Address) GoString() string { - return s.String() -} - -// Contains the parameters for AllocateAddress. -type AllocateAddressInput struct { - _ struct{} `type:"structure"` - - // Set to vpc to allocate the address for use with instances in a VPC. - // - // Default: The address is for use with instances in EC2-Classic. - Domain *string `type:"string" enum:"DomainType"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s AllocateAddressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AllocateAddressInput) GoString() string { - return s.String() -} - -// Contains the output of AllocateAddress. -type AllocateAddressOutput struct { - _ struct{} `type:"structure"` - - // [EC2-VPC] The ID that AWS assigns to represent the allocation of the Elastic - // IP address for use with instances in a VPC. - AllocationId *string `locationName:"allocationId" type:"string"` - - // Indicates whether this Elastic IP address is for use with instances in EC2-Classic - // (standard) or instances in a VPC (vpc). - Domain *string `locationName:"domain" type:"string" enum:"DomainType"` - - // The Elastic IP address. - PublicIp *string `locationName:"publicIp" type:"string"` -} - -// String returns the string representation -func (s AllocateAddressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AllocateAddressOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AllocateHosts. -type AllocateHostsInput struct { - _ struct{} `type:"structure"` - - // This is enabled by default. This property allows instances to be automatically - // placed onto available Dedicated Hosts, when you are launching instances without - // specifying a host ID. - // - // Default: Enabled - AutoPlacement *string `locationName:"autoPlacement" type:"string" enum:"AutoPlacement"` - - // The Availability Zone for the Dedicated Hosts. - // - // AvailabilityZone is a required field - AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"` - - // Unique, case-sensitive identifier you provide to ensure idempotency of the - // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html) - // in the Amazon Elastic Compute Cloud User Guide. - ClientToken *string `locationName:"clientToken" type:"string"` - - // Specify the instance type that you want your Dedicated Hosts to be configured - // for. When you specify the instance type, that is the only instance type that - // you can launch onto that host. - // - // InstanceType is a required field - InstanceType *string `locationName:"instanceType" type:"string" required:"true"` - - // The number of Dedicated Hosts you want to allocate to your account with these - // parameters. - // - // Quantity is a required field - Quantity *int64 `locationName:"quantity" type:"integer" required:"true"` -} - -// String returns the string representation -func (s AllocateHostsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AllocateHostsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AllocateHostsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AllocateHostsInput"} - if s.AvailabilityZone == nil { - invalidParams.Add(request.NewErrParamRequired("AvailabilityZone")) - } - if s.InstanceType == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceType")) - } - if s.Quantity == nil { - invalidParams.Add(request.NewErrParamRequired("Quantity")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of AllocateHosts. -type AllocateHostsOutput struct { - _ struct{} `type:"structure"` - - // The ID of the allocated Dedicated Host. This is used when you want to launch - // an instance onto a specific host. - HostIds []*string `locationName:"hostIdSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s AllocateHostsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AllocateHostsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AssignPrivateIpAddresses. -type AssignPrivateIpAddressesInput struct { - _ struct{} `type:"structure"` - - // Indicates whether to allow an IP address that is already assigned to another - // network interface or instance to be reassigned to the specified network interface. - AllowReassignment *bool `locationName:"allowReassignment" type:"boolean"` - - // The ID of the network interface. - // - // NetworkInterfaceId is a required field - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` - - // One or more IP addresses to be assigned as a secondary private IP address - // to the network interface. You can't specify this parameter when also specifying - // a number of secondary IP addresses. - // - // If you don't specify an IP address, Amazon EC2 automatically selects an - // IP address within the subnet range. - PrivateIpAddresses []*string `locationName:"privateIpAddress" locationNameList:"PrivateIpAddress" type:"list"` - - // The number of secondary IP addresses to assign to the network interface. - // You can't specify this parameter when also specifying private IP addresses. - SecondaryPrivateIpAddressCount *int64 `locationName:"secondaryPrivateIpAddressCount" type:"integer"` -} - -// String returns the string representation -func (s AssignPrivateIpAddressesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssignPrivateIpAddressesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AssignPrivateIpAddressesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AssignPrivateIpAddressesInput"} - if s.NetworkInterfaceId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkInterfaceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type AssignPrivateIpAddressesOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s AssignPrivateIpAddressesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssignPrivateIpAddressesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AssociateAddress. -type AssociateAddressInput struct { - _ struct{} `type:"structure"` - - // [EC2-VPC] The allocation ID. This is required for EC2-VPC. - AllocationId *string `type:"string"` - - // [EC2-VPC] For a VPC in an EC2-Classic account, specify true to allow an Elastic - // IP address that is already associated with an instance or network interface - // to be reassociated with the specified instance or network interface. Otherwise, - // the operation fails. In a VPC in an EC2-VPC-only account, reassociation is - // automatic, therefore you can specify false to ensure the operation fails - // if the Elastic IP address is already associated with another resource. - AllowReassociation *bool `locationName:"allowReassociation" type:"boolean"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. This is required for EC2-Classic. For EC2-VPC, you - // can specify either the instance ID or the network interface ID, but not both. - // The operation fails if you specify an instance ID unless exactly one network - // interface is attached. - InstanceId *string `type:"string"` - - // [EC2-VPC] The ID of the network interface. If the instance has more than - // one network interface, you must specify a network interface ID. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // [EC2-VPC] The primary or secondary private IP address to associate with the - // Elastic IP address. If no private IP address is specified, the Elastic IP - // address is associated with the primary private IP address. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // The Elastic IP address. This is required for EC2-Classic. - PublicIp *string `type:"string"` -} - -// String returns the string representation -func (s AssociateAddressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateAddressInput) GoString() string { - return s.String() -} - -// Contains the output of AssociateAddress. -type AssociateAddressOutput struct { - _ struct{} `type:"structure"` - - // [EC2-VPC] The ID that represents the association of the Elastic IP address - // with an instance. - AssociationId *string `locationName:"associationId" type:"string"` -} - -// String returns the string representation -func (s AssociateAddressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateAddressOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AssociateDhcpOptions. -type AssociateDhcpOptionsInput struct { - _ struct{} `type:"structure"` - - // The ID of the DHCP options set, or default to associate no DHCP options with - // the VPC. - // - // DhcpOptionsId is a required field - DhcpOptionsId *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s AssociateDhcpOptionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateDhcpOptionsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AssociateDhcpOptionsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AssociateDhcpOptionsInput"} - if s.DhcpOptionsId == nil { - invalidParams.Add(request.NewErrParamRequired("DhcpOptionsId")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type AssociateDhcpOptionsOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s AssociateDhcpOptionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateDhcpOptionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AssociateRouteTable. -type AssociateRouteTableInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the route table. - // - // RouteTableId is a required field - RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` - - // The ID of the subnet. - // - // SubnetId is a required field - SubnetId *string `locationName:"subnetId" type:"string" required:"true"` -} - -// String returns the string representation -func (s AssociateRouteTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateRouteTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AssociateRouteTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AssociateRouteTableInput"} - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - if s.SubnetId == nil { - invalidParams.Add(request.NewErrParamRequired("SubnetId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of AssociateRouteTable. -type AssociateRouteTableOutput struct { - _ struct{} `type:"structure"` - - // The route table association ID (needed to disassociate the route table). - AssociationId *string `locationName:"associationId" type:"string"` -} - -// String returns the string representation -func (s AssociateRouteTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateRouteTableOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AttachClassicLinkVpc. -type AttachClassicLinkVpcInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of one or more of the VPC's security groups. You cannot specify security - // groups from a different VPC. - // - // Groups is a required field - Groups []*string `locationName:"SecurityGroupId" locationNameList:"groupId" type:"list" required:"true"` - - // The ID of an EC2-Classic instance to link to the ClassicLink-enabled VPC. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - - // The ID of a ClassicLink-enabled VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s AttachClassicLinkVpcInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachClassicLinkVpcInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AttachClassicLinkVpcInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AttachClassicLinkVpcInput"} - if s.Groups == nil { - invalidParams.Add(request.NewErrParamRequired("Groups")) - } - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of AttachClassicLinkVpc. -type AttachClassicLinkVpcOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s AttachClassicLinkVpcOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachClassicLinkVpcOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AttachInternetGateway. -type AttachInternetGatewayInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the Internet gateway. - // - // InternetGatewayId is a required field - InternetGatewayId *string `locationName:"internetGatewayId" type:"string" required:"true"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s AttachInternetGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachInternetGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AttachInternetGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AttachInternetGatewayInput"} - if s.InternetGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("InternetGatewayId")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type AttachInternetGatewayOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s AttachInternetGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachInternetGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AttachNetworkInterface. -type AttachNetworkInterfaceInput struct { - _ struct{} `type:"structure"` - - // The index of the device for the network interface attachment. - // - // DeviceIndex is a required field - DeviceIndex *int64 `locationName:"deviceIndex" type:"integer" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - - // The ID of the network interface. - // - // NetworkInterfaceId is a required field - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` -} - -// String returns the string representation -func (s AttachNetworkInterfaceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachNetworkInterfaceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AttachNetworkInterfaceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AttachNetworkInterfaceInput"} - if s.DeviceIndex == nil { - invalidParams.Add(request.NewErrParamRequired("DeviceIndex")) - } - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - if s.NetworkInterfaceId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkInterfaceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of AttachNetworkInterface. -type AttachNetworkInterfaceOutput struct { - _ struct{} `type:"structure"` - - // The ID of the network interface attachment. - AttachmentId *string `locationName:"attachmentId" type:"string"` -} - -// String returns the string representation -func (s AttachNetworkInterfaceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachNetworkInterfaceOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AttachVolume. -type AttachVolumeInput struct { - _ struct{} `type:"structure"` - - // The device name to expose to the instance (for example, /dev/sdh or xvdh). - // - // Device is a required field - Device *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `type:"string" required:"true"` - - // The ID of the EBS volume. The volume and instance must be within the same - // Availability Zone. - // - // VolumeId is a required field - VolumeId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s AttachVolumeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachVolumeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AttachVolumeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AttachVolumeInput"} - if s.Device == nil { - invalidParams.Add(request.NewErrParamRequired("Device")) - } - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - if s.VolumeId == nil { - invalidParams.Add(request.NewErrParamRequired("VolumeId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the parameters for AttachVpnGateway. -type AttachVpnGatewayInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` - - // The ID of the virtual private gateway. - // - // VpnGatewayId is a required field - VpnGatewayId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s AttachVpnGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachVpnGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AttachVpnGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AttachVpnGatewayInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - if s.VpnGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("VpnGatewayId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of AttachVpnGateway. -type AttachVpnGatewayOutput struct { - _ struct{} `type:"structure"` - - // Information about the attachment. - VpcAttachment *VpcAttachment `locationName:"attachment" type:"structure"` -} - -// String returns the string representation -func (s AttachVpnGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttachVpnGatewayOutput) GoString() string { - return s.String() -} - -// Describes a value for a resource attribute that is a Boolean value. -type AttributeBooleanValue struct { - _ struct{} `type:"structure"` - - // The attribute value. The valid values are true or false. - Value *bool `locationName:"value" type:"boolean"` -} - -// String returns the string representation -func (s AttributeBooleanValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttributeBooleanValue) GoString() string { - return s.String() -} - -// Describes a value for a resource attribute that is a String. -type AttributeValue struct { - _ struct{} `type:"structure"` - - // The attribute value. Note that the value is case-sensitive. - Value *string `locationName:"value" type:"string"` -} - -// String returns the string representation -func (s AttributeValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AttributeValue) GoString() string { - return s.String() -} - -// Contains the parameters for AuthorizeSecurityGroupEgress. -type AuthorizeSecurityGroupEgressInput struct { - _ struct{} `type:"structure"` - - // The CIDR IP address range. We recommend that you specify the CIDR range in - // a set of IP permissions instead. - CidrIp *string `locationName:"cidrIp" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The start of port range for the TCP and UDP protocols, or an ICMP type number. - // We recommend that you specify the port range in a set of IP permissions instead. - FromPort *int64 `locationName:"fromPort" type:"integer"` - - // The ID of the security group. - // - // GroupId is a required field - GroupId *string `locationName:"groupId" type:"string" required:"true"` - - // A set of IP permissions. You can't specify a destination security group and - // a CIDR IP address range. - IpPermissions []*IpPermission `locationName:"ipPermissions" locationNameList:"item" type:"list"` - - // The IP protocol name or number. We recommend that you specify the protocol - // in a set of IP permissions instead. - IpProtocol *string `locationName:"ipProtocol" type:"string"` - - // The name of a destination security group. To authorize outbound access to - // a destination security group, we recommend that you use a set of IP permissions - // instead. - SourceSecurityGroupName *string `locationName:"sourceSecurityGroupName" type:"string"` - - // The AWS account number for a destination security group. To authorize outbound - // access to a destination security group, we recommend that you use a set of - // IP permissions instead. - SourceSecurityGroupOwnerId *string `locationName:"sourceSecurityGroupOwnerId" type:"string"` - - // The end of port range for the TCP and UDP protocols, or an ICMP type number. - // We recommend that you specify the port range in a set of IP permissions instead. - ToPort *int64 `locationName:"toPort" type:"integer"` -} - -// String returns the string representation -func (s AuthorizeSecurityGroupEgressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AuthorizeSecurityGroupEgressInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AuthorizeSecurityGroupEgressInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AuthorizeSecurityGroupEgressInput"} - if s.GroupId == nil { - invalidParams.Add(request.NewErrParamRequired("GroupId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type AuthorizeSecurityGroupEgressOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s AuthorizeSecurityGroupEgressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AuthorizeSecurityGroupEgressOutput) GoString() string { - return s.String() -} - -// Contains the parameters for AuthorizeSecurityGroupIngress. -type AuthorizeSecurityGroupIngressInput struct { - _ struct{} `type:"structure"` - - // The CIDR IP address range. You can't specify this parameter when specifying - // a source security group. - CidrIp *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The start of port range for the TCP and UDP protocols, or an ICMP type number. - // For the ICMP type number, use -1 to specify all ICMP types. - FromPort *int64 `type:"integer"` - - // The ID of the security group. Required for a nondefault VPC. - GroupId *string `type:"string"` - - // [EC2-Classic, default VPC] The name of the security group. - GroupName *string `type:"string"` - - // A set of IP permissions. Can be used to specify multiple rules in a single - // command. - IpPermissions []*IpPermission `locationNameList:"item" type:"list"` - - // The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml)). - // (VPC only) Use -1 to specify all traffic. If you specify -1, traffic on all - // ports is allowed, regardless of any ports you specify. - IpProtocol *string `type:"string"` - - // [EC2-Classic, default VPC] The name of the source security group. You can't - // specify this parameter in combination with the following parameters: the - // CIDR IP address range, the start of the port range, the IP protocol, and - // the end of the port range. Creates rules that grant full ICMP, UDP, and TCP - // access. To create a rule with a specific IP protocol and port range, use - // a set of IP permissions instead. For EC2-VPC, the source security group must - // be in the same VPC. - SourceSecurityGroupName *string `type:"string"` - - // [EC2-Classic] The AWS account number for the source security group, if the - // source security group is in a different account. You can't specify this parameter - // in combination with the following parameters: the CIDR IP address range, - // the IP protocol, the start of the port range, and the end of the port range. - // Creates rules that grant full ICMP, UDP, and TCP access. To create a rule - // with a specific IP protocol and port range, use a set of IP permissions instead. - SourceSecurityGroupOwnerId *string `type:"string"` - - // The end of port range for the TCP and UDP protocols, or an ICMP code number. - // For the ICMP code number, use -1 to specify all ICMP codes for the ICMP type. - ToPort *int64 `type:"integer"` -} - -// String returns the string representation -func (s AuthorizeSecurityGroupIngressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AuthorizeSecurityGroupIngressInput) GoString() string { - return s.String() -} - -type AuthorizeSecurityGroupIngressOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s AuthorizeSecurityGroupIngressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AuthorizeSecurityGroupIngressOutput) GoString() string { - return s.String() -} - -// Describes an Availability Zone. -type AvailabilityZone struct { - _ struct{} `type:"structure"` - - // Any messages about the Availability Zone. - Messages []*AvailabilityZoneMessage `locationName:"messageSet" locationNameList:"item" type:"list"` - - // The name of the region. - RegionName *string `locationName:"regionName" type:"string"` - - // The state of the Availability Zone. - State *string `locationName:"zoneState" type:"string" enum:"AvailabilityZoneState"` - - // The name of the Availability Zone. - ZoneName *string `locationName:"zoneName" type:"string"` -} - -// String returns the string representation -func (s AvailabilityZone) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AvailabilityZone) GoString() string { - return s.String() -} - -// Describes a message about an Availability Zone. -type AvailabilityZoneMessage struct { - _ struct{} `type:"structure"` - - // The message about the Availability Zone. - Message *string `locationName:"message" type:"string"` -} - -// String returns the string representation -func (s AvailabilityZoneMessage) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AvailabilityZoneMessage) GoString() string { - return s.String() -} - -// The capacity information for instances launched onto the Dedicated Host. -type AvailableCapacity struct { - _ struct{} `type:"structure"` - - // The total number of instances that the Dedicated Host supports. - AvailableInstanceCapacity []*InstanceCapacity `locationName:"availableInstanceCapacity" locationNameList:"item" type:"list"` - - // The number of vCPUs available on the Dedicated Host. - AvailableVCpus *int64 `locationName:"availableVCpus" type:"integer"` -} - -// String returns the string representation -func (s AvailableCapacity) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AvailableCapacity) GoString() string { - return s.String() -} - -type BlobAttributeValue struct { - _ struct{} `type:"structure"` - - // Value is automatically base64 encoded/decoded by the SDK. - Value []byte `locationName:"value" type:"blob"` -} - -// String returns the string representation -func (s BlobAttributeValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BlobAttributeValue) GoString() string { - return s.String() -} - -// Describes a block device mapping. -type BlockDeviceMapping struct { - _ struct{} `type:"structure"` - - // The device name exposed to the instance (for example, /dev/sdh or xvdh). - DeviceName *string `locationName:"deviceName" type:"string"` - - // Parameters used to automatically set up EBS volumes when the instance is - // launched. - Ebs *EbsBlockDevice `locationName:"ebs" type:"structure"` - - // Suppresses the specified device included in the block device mapping of the - // AMI. - NoDevice *string `locationName:"noDevice" type:"string"` - - // The virtual device name (ephemeralN). Instance store volumes are numbered - // starting from 0. An instance type with 2 available instance store volumes - // can specify mappings for ephemeral0 and ephemeral1.The number of available - // instance store volumes depends on the instance type. After you connect to - // the instance, you must mount the volume. - // - // Constraints: For M3 instances, you must specify instance store volumes in - // the block device mapping for the instance. When you launch an M3 instance, - // we ignore any instance store volumes specified in the block device mapping - // for the AMI. - VirtualName *string `locationName:"virtualName" type:"string"` -} - -// String returns the string representation -func (s BlockDeviceMapping) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BlockDeviceMapping) GoString() string { - return s.String() -} - -// Contains the parameters for BundleInstance. -type BundleInstanceInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance to bundle. - // - // Type: String - // - // Default: None - // - // Required: Yes - // - // InstanceId is a required field - InstanceId *string `type:"string" required:"true"` - - // The bucket in which to store the AMI. You can specify a bucket that you already - // own or a new bucket that Amazon EC2 creates on your behalf. If you specify - // a bucket that belongs to someone else, Amazon EC2 returns an error. - // - // Storage is a required field - Storage *Storage `type:"structure" required:"true"` -} - -// String returns the string representation -func (s BundleInstanceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BundleInstanceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *BundleInstanceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "BundleInstanceInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - if s.Storage == nil { - invalidParams.Add(request.NewErrParamRequired("Storage")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of BundleInstance. -type BundleInstanceOutput struct { - _ struct{} `type:"structure"` - - // Information about the bundle task. - BundleTask *BundleTask `locationName:"bundleInstanceTask" type:"structure"` -} - -// String returns the string representation -func (s BundleInstanceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BundleInstanceOutput) GoString() string { - return s.String() -} - -// Describes a bundle task. -type BundleTask struct { - _ struct{} `type:"structure"` - - // The ID of the bundle task. - BundleId *string `locationName:"bundleId" type:"string"` - - // If the task fails, a description of the error. - BundleTaskError *BundleTaskError `locationName:"error" type:"structure"` - - // The ID of the instance associated with this bundle task. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The level of task completion, as a percent (for example, 20%). - Progress *string `locationName:"progress" type:"string"` - - // The time this task started. - StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"` - - // The state of the task. - State *string `locationName:"state" type:"string" enum:"BundleTaskState"` - - // The Amazon S3 storage locations. - Storage *Storage `locationName:"storage" type:"structure"` - - // The time of the most recent update for the task. - UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s BundleTask) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BundleTask) GoString() string { - return s.String() -} - -// Describes an error for BundleInstance. -type BundleTaskError struct { - _ struct{} `type:"structure"` - - // The error code. - Code *string `locationName:"code" type:"string"` - - // The error message. - Message *string `locationName:"message" type:"string"` -} - -// String returns the string representation -func (s BundleTaskError) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BundleTaskError) GoString() string { - return s.String() -} - -// Contains the parameters for CancelBundleTask. -type CancelBundleTaskInput struct { - _ struct{} `type:"structure"` - - // The ID of the bundle task. - // - // BundleId is a required field - BundleId *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s CancelBundleTaskInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelBundleTaskInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CancelBundleTaskInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CancelBundleTaskInput"} - if s.BundleId == nil { - invalidParams.Add(request.NewErrParamRequired("BundleId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CancelBundleTask. -type CancelBundleTaskOutput struct { - _ struct{} `type:"structure"` - - // Information about the bundle task. - BundleTask *BundleTask `locationName:"bundleInstanceTask" type:"structure"` -} - -// String returns the string representation -func (s CancelBundleTaskOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelBundleTaskOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CancelConversionTask. -type CancelConversionTaskInput struct { - _ struct{} `type:"structure"` - - // The ID of the conversion task. - // - // ConversionTaskId is a required field - ConversionTaskId *string `locationName:"conversionTaskId" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The reason for canceling the conversion task. - ReasonMessage *string `locationName:"reasonMessage" type:"string"` -} - -// String returns the string representation -func (s CancelConversionTaskInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelConversionTaskInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CancelConversionTaskInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CancelConversionTaskInput"} - if s.ConversionTaskId == nil { - invalidParams.Add(request.NewErrParamRequired("ConversionTaskId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CancelConversionTaskOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CancelConversionTaskOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelConversionTaskOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CancelExportTask. -type CancelExportTaskInput struct { - _ struct{} `type:"structure"` - - // The ID of the export task. This is the ID returned by CreateInstanceExportTask. - // - // ExportTaskId is a required field - ExportTaskId *string `locationName:"exportTaskId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CancelExportTaskInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelExportTaskInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CancelExportTaskInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CancelExportTaskInput"} - if s.ExportTaskId == nil { - invalidParams.Add(request.NewErrParamRequired("ExportTaskId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CancelExportTaskOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CancelExportTaskOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelExportTaskOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CancelImportTask. -type CancelImportTaskInput struct { - _ struct{} `type:"structure"` - - // The reason for canceling the task. - CancelReason *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The ID of the import image or import snapshot task to be canceled. - ImportTaskId *string `type:"string"` -} - -// String returns the string representation -func (s CancelImportTaskInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelImportTaskInput) GoString() string { - return s.String() -} - -// Contains the output for CancelImportTask. -type CancelImportTaskOutput struct { - _ struct{} `type:"structure"` - - // The ID of the task being canceled. - ImportTaskId *string `locationName:"importTaskId" type:"string"` - - // The current state of the task being canceled. - PreviousState *string `locationName:"previousState" type:"string"` - - // The current state of the task being canceled. - State *string `locationName:"state" type:"string"` -} - -// String returns the string representation -func (s CancelImportTaskOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelImportTaskOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CancelReservedInstancesListing. -type CancelReservedInstancesListingInput struct { - _ struct{} `type:"structure"` - - // The ID of the Reserved Instance listing. - // - // ReservedInstancesListingId is a required field - ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CancelReservedInstancesListingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelReservedInstancesListingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CancelReservedInstancesListingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CancelReservedInstancesListingInput"} - if s.ReservedInstancesListingId == nil { - invalidParams.Add(request.NewErrParamRequired("ReservedInstancesListingId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CancelReservedInstancesListing. -type CancelReservedInstancesListingOutput struct { - _ struct{} `type:"structure"` - - // The Reserved Instance listing. - ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s CancelReservedInstancesListingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelReservedInstancesListingOutput) GoString() string { - return s.String() -} - -// Describes a Spot fleet error. -type CancelSpotFleetRequestsError struct { - _ struct{} `type:"structure"` - - // The error code. - // - // Code is a required field - Code *string `locationName:"code" type:"string" required:"true" enum:"CancelBatchErrorCode"` - - // The description for the error code. - // - // Message is a required field - Message *string `locationName:"message" type:"string" required:"true"` -} - -// String returns the string representation -func (s CancelSpotFleetRequestsError) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelSpotFleetRequestsError) GoString() string { - return s.String() -} - -// Describes a Spot fleet request that was not successfully canceled. -type CancelSpotFleetRequestsErrorItem struct { - _ struct{} `type:"structure"` - - // The error. - // - // Error is a required field - Error *CancelSpotFleetRequestsError `locationName:"error" type:"structure" required:"true"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CancelSpotFleetRequestsErrorItem) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelSpotFleetRequestsErrorItem) GoString() string { - return s.String() -} - -// Contains the parameters for CancelSpotFleetRequests. -type CancelSpotFleetRequestsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The IDs of the Spot fleet requests. - // - // SpotFleetRequestIds is a required field - SpotFleetRequestIds []*string `locationName:"spotFleetRequestId" locationNameList:"item" type:"list" required:"true"` - - // Indicates whether to terminate instances for a Spot fleet request if it is - // canceled successfully. - // - // TerminateInstances is a required field - TerminateInstances *bool `locationName:"terminateInstances" type:"boolean" required:"true"` -} - -// String returns the string representation -func (s CancelSpotFleetRequestsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelSpotFleetRequestsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CancelSpotFleetRequestsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CancelSpotFleetRequestsInput"} - if s.SpotFleetRequestIds == nil { - invalidParams.Add(request.NewErrParamRequired("SpotFleetRequestIds")) - } - if s.TerminateInstances == nil { - invalidParams.Add(request.NewErrParamRequired("TerminateInstances")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CancelSpotFleetRequests. -type CancelSpotFleetRequestsOutput struct { - _ struct{} `type:"structure"` - - // Information about the Spot fleet requests that are successfully canceled. - SuccessfulFleetRequests []*CancelSpotFleetRequestsSuccessItem `locationName:"successfulFleetRequestSet" locationNameList:"item" type:"list"` - - // Information about the Spot fleet requests that are not successfully canceled. - UnsuccessfulFleetRequests []*CancelSpotFleetRequestsErrorItem `locationName:"unsuccessfulFleetRequestSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s CancelSpotFleetRequestsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelSpotFleetRequestsOutput) GoString() string { - return s.String() -} - -// Describes a Spot fleet request that was successfully canceled. -type CancelSpotFleetRequestsSuccessItem struct { - _ struct{} `type:"structure"` - - // The current state of the Spot fleet request. - // - // CurrentSpotFleetRequestState is a required field - CurrentSpotFleetRequestState *string `locationName:"currentSpotFleetRequestState" type:"string" required:"true" enum:"BatchState"` - - // The previous state of the Spot fleet request. - // - // PreviousSpotFleetRequestState is a required field - PreviousSpotFleetRequestState *string `locationName:"previousSpotFleetRequestState" type:"string" required:"true" enum:"BatchState"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CancelSpotFleetRequestsSuccessItem) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelSpotFleetRequestsSuccessItem) GoString() string { - return s.String() -} - -// Contains the parameters for CancelSpotInstanceRequests. -type CancelSpotInstanceRequestsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more Spot instance request IDs. - // - // SpotInstanceRequestIds is a required field - SpotInstanceRequestIds []*string `locationName:"SpotInstanceRequestId" locationNameList:"SpotInstanceRequestId" type:"list" required:"true"` -} - -// String returns the string representation -func (s CancelSpotInstanceRequestsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelSpotInstanceRequestsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CancelSpotInstanceRequestsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CancelSpotInstanceRequestsInput"} - if s.SpotInstanceRequestIds == nil { - invalidParams.Add(request.NewErrParamRequired("SpotInstanceRequestIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CancelSpotInstanceRequests. -type CancelSpotInstanceRequestsOutput struct { - _ struct{} `type:"structure"` - - // One or more Spot instance requests. - CancelledSpotInstanceRequests []*CancelledSpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s CancelSpotInstanceRequestsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelSpotInstanceRequestsOutput) GoString() string { - return s.String() -} - -// Describes a request to cancel a Spot instance. -type CancelledSpotInstanceRequest struct { - _ struct{} `type:"structure"` - - // The ID of the Spot instance request. - SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"` - - // The state of the Spot instance request. - State *string `locationName:"state" type:"string" enum:"CancelSpotInstanceRequestState"` -} - -// String returns the string representation -func (s CancelledSpotInstanceRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelledSpotInstanceRequest) GoString() string { - return s.String() -} - -// Describes the ClassicLink DNS support status of a VPC. -type ClassicLinkDnsSupport struct { - _ struct{} `type:"structure"` - - // Indicates whether ClassicLink DNS support is enabled for the VPC. - ClassicLinkDnsSupported *bool `locationName:"classicLinkDnsSupported" type:"boolean"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s ClassicLinkDnsSupport) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ClassicLinkDnsSupport) GoString() string { - return s.String() -} - -// Describes a linked EC2-Classic instance. -type ClassicLinkInstance struct { - _ struct{} `type:"structure"` - - // A list of security groups. - Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // Any tags assigned to the instance. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s ClassicLinkInstance) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ClassicLinkInstance) GoString() string { - return s.String() -} - -// Describes the client-specific data. -type ClientData struct { - _ struct{} `type:"structure"` - - // A user-defined comment about the disk upload. - Comment *string `type:"string"` - - // The time that the disk upload ends. - UploadEnd *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // The size of the uploaded disk image, in GiB. - UploadSize *float64 `type:"double"` - - // The time that the disk upload starts. - UploadStart *time.Time `type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s ClientData) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ClientData) GoString() string { - return s.String() -} - -// Contains the parameters for ConfirmProductInstance. -type ConfirmProductInstanceInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `type:"string" required:"true"` - - // The product code. This must be a product code that you own. - // - // ProductCode is a required field - ProductCode *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ConfirmProductInstanceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ConfirmProductInstanceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ConfirmProductInstanceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ConfirmProductInstanceInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - if s.ProductCode == nil { - invalidParams.Add(request.NewErrParamRequired("ProductCode")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ConfirmProductInstance. -type ConfirmProductInstanceOutput struct { - _ struct{} `type:"structure"` - - // The AWS account ID of the instance owner. This is only present if the product - // code is attached to the instance. - OwnerId *string `locationName:"ownerId" type:"string"` - - // The return value of the request. Returns true if the specified product code - // is owned by the requester and associated with the specified instance. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s ConfirmProductInstanceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ConfirmProductInstanceOutput) GoString() string { - return s.String() -} - -// Describes a conversion task. -type ConversionTask struct { - _ struct{} `type:"structure"` - - // The ID of the conversion task. - // - // ConversionTaskId is a required field - ConversionTaskId *string `locationName:"conversionTaskId" type:"string" required:"true"` - - // The time when the task expires. If the upload isn't complete before the expiration - // time, we automatically cancel the task. - ExpirationTime *string `locationName:"expirationTime" type:"string"` - - // If the task is for importing an instance, this contains information about - // the import instance task. - ImportInstance *ImportInstanceTaskDetails `locationName:"importInstance" type:"structure"` - - // If the task is for importing a volume, this contains information about the - // import volume task. - ImportVolume *ImportVolumeTaskDetails `locationName:"importVolume" type:"structure"` - - // The state of the conversion task. - // - // State is a required field - State *string `locationName:"state" type:"string" required:"true" enum:"ConversionTaskState"` - - // The status message related to the conversion task. - StatusMessage *string `locationName:"statusMessage" type:"string"` - - // Any tags assigned to the task. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s ConversionTask) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ConversionTask) GoString() string { - return s.String() -} - -// Contains the parameters for CopyImage. -type CopyImageInput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure idempotency of the - // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html) - // in the Amazon Elastic Compute Cloud User Guide. - ClientToken *string `type:"string"` - - // A description for the new AMI in the destination region. - Description *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Specifies whether the destination snapshots of the copied image should be - // encrypted. The default CMK for EBS is used unless a non-default AWS Key Management - // Service (AWS KMS) CMK is specified with KmsKeyId. For more information, see - // Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) - // in the Amazon Elastic Compute Cloud User Guide. - Encrypted *bool `locationName:"encrypted" type:"boolean"` - - // The full ARN of the AWS Key Management Service (AWS KMS) CMK to use when - // encrypting the snapshots of an image during a copy operation. This parameter - // is only required if you want to use a non-default CMK; if this parameter - // is not specified, the default CMK for EBS is used. The ARN contains the arn:aws:kms - // namespace, followed by the region of the CMK, the AWS account ID of the CMK - // owner, the key namespace, and then the CMK ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef. - // The specified CMK must exist in the region that the snapshot is being copied - // to. If a KmsKeyId is specified, the Encrypted flag must also be set. - KmsKeyId *string `locationName:"kmsKeyId" type:"string"` - - // The name of the new AMI in the destination region. - // - // Name is a required field - Name *string `type:"string" required:"true"` - - // The ID of the AMI to copy. - // - // SourceImageId is a required field - SourceImageId *string `type:"string" required:"true"` - - // The name of the region that contains the AMI to copy. - // - // SourceRegion is a required field - SourceRegion *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CopyImageInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopyImageInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CopyImageInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CopyImageInput"} - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.SourceImageId == nil { - invalidParams.Add(request.NewErrParamRequired("SourceImageId")) - } - if s.SourceRegion == nil { - invalidParams.Add(request.NewErrParamRequired("SourceRegion")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CopyImage. -type CopyImageOutput struct { - _ struct{} `type:"structure"` - - // The ID of the new AMI. - ImageId *string `locationName:"imageId" type:"string"` -} - -// String returns the string representation -func (s CopyImageOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopyImageOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CopySnapshot. -type CopySnapshotInput struct { - _ struct{} `type:"structure"` - - // A description for the EBS snapshot. - Description *string `type:"string"` - - // The destination region to use in the PresignedUrl parameter of a snapshot - // copy operation. This parameter is only valid for specifying the destination - // region in a PresignedUrl parameter, where it is required. - // - // CopySnapshot sends the snapshot copy to the regional endpoint that you - // send the HTTP request to, such as ec2.us-east-1.amazonaws.com (in the AWS - // CLI, this is specified with the --region parameter or the default region - // in your AWS configuration file). - DestinationRegion *string `locationName:"destinationRegion" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Specifies whether the destination snapshot should be encrypted. You can encrypt - // a copy of an unencrypted snapshot using this flag, but you cannot use it - // to create an unencrypted copy from an encrypted snapshot. Your default CMK - // for EBS is used unless a non-default AWS Key Management Service (AWS KMS) - // CMK is specified with KmsKeyId. For more information, see Amazon EBS Encryption - // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) in - // the Amazon Elastic Compute Cloud User Guide. - Encrypted *bool `locationName:"encrypted" type:"boolean"` - - // The full ARN of the AWS Key Management Service (AWS KMS) CMK to use when - // creating the snapshot copy. This parameter is only required if you want to - // use a non-default CMK; if this parameter is not specified, the default CMK - // for EBS is used. The ARN contains the arn:aws:kms namespace, followed by - // the region of the CMK, the AWS account ID of the CMK owner, the key namespace, - // and then the CMK ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef. - // The specified CMK must exist in the region that the snapshot is being copied - // to. If a KmsKeyId is specified, the Encrypted flag must also be set. - KmsKeyId *string `locationName:"kmsKeyId" type:"string"` - - // The pre-signed URL that facilitates copying an encrypted snapshot. This parameter - // is only required when copying an encrypted snapshot with the Amazon EC2 Query - // API; it is available as an optional parameter in all other cases. The PresignedUrl - // should use the snapshot source endpoint, the CopySnapshot action, and include - // the SourceRegion, SourceSnapshotId, and DestinationRegion parameters. The - // PresignedUrl must be signed using AWS Signature Version 4. Because EBS snapshots - // are stored in Amazon S3, the signing algorithm for this parameter uses the - // same logic that is described in Authenticating Requests by Using Query Parameters - // (AWS Signature Version 4) (http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html) - // in the Amazon Simple Storage Service API Reference. An invalid or improperly - // signed PresignedUrl will cause the copy operation to fail asynchronously, - // and the snapshot will move to an error state. - PresignedUrl *string `locationName:"presignedUrl" type:"string"` - - // The ID of the region that contains the snapshot to be copied. - // - // SourceRegion is a required field - SourceRegion *string `type:"string" required:"true"` - - // The ID of the EBS snapshot to copy. - // - // SourceSnapshotId is a required field - SourceSnapshotId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CopySnapshotInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopySnapshotInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CopySnapshotInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CopySnapshotInput"} - if s.SourceRegion == nil { - invalidParams.Add(request.NewErrParamRequired("SourceRegion")) - } - if s.SourceSnapshotId == nil { - invalidParams.Add(request.NewErrParamRequired("SourceSnapshotId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CopySnapshot. -type CopySnapshotOutput struct { - _ struct{} `type:"structure"` - - // The ID of the new snapshot. - SnapshotId *string `locationName:"snapshotId" type:"string"` -} - -// String returns the string representation -func (s CopySnapshotOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopySnapshotOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateCustomerGateway. -type CreateCustomerGatewayInput struct { - _ struct{} `type:"structure"` - - // For devices that support BGP, the customer gateway's BGP ASN. - // - // Default: 65000 - // - // BgpAsn is a required field - BgpAsn *int64 `type:"integer" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The Internet-routable IP address for the customer gateway's outside interface. - // The address must be static. - // - // PublicIp is a required field - PublicIp *string `locationName:"IpAddress" type:"string" required:"true"` - - // The type of VPN connection that this customer gateway supports (ipsec.1). - // - // Type is a required field - Type *string `type:"string" required:"true" enum:"GatewayType"` -} - -// String returns the string representation -func (s CreateCustomerGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateCustomerGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateCustomerGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateCustomerGatewayInput"} - if s.BgpAsn == nil { - invalidParams.Add(request.NewErrParamRequired("BgpAsn")) - } - if s.PublicIp == nil { - invalidParams.Add(request.NewErrParamRequired("PublicIp")) - } - if s.Type == nil { - invalidParams.Add(request.NewErrParamRequired("Type")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateCustomerGateway. -type CreateCustomerGatewayOutput struct { - _ struct{} `type:"structure"` - - // Information about the customer gateway. - CustomerGateway *CustomerGateway `locationName:"customerGateway" type:"structure"` -} - -// String returns the string representation -func (s CreateCustomerGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateCustomerGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateDhcpOptions. -type CreateDhcpOptionsInput struct { - _ struct{} `type:"structure"` - - // A DHCP configuration option. - // - // DhcpConfigurations is a required field - DhcpConfigurations []*NewDhcpConfiguration `locationName:"dhcpConfiguration" locationNameList:"item" type:"list" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s CreateDhcpOptionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateDhcpOptionsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateDhcpOptionsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateDhcpOptionsInput"} - if s.DhcpConfigurations == nil { - invalidParams.Add(request.NewErrParamRequired("DhcpConfigurations")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateDhcpOptions. -type CreateDhcpOptionsOutput struct { - _ struct{} `type:"structure"` - - // A set of DHCP options. - DhcpOptions *DhcpOptions `locationName:"dhcpOptions" type:"structure"` -} - -// String returns the string representation -func (s CreateDhcpOptionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateDhcpOptionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateFlowLogs. -type CreateFlowLogsInput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure the idempotency of - // the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html). - ClientToken *string `type:"string"` - - // The ARN for the IAM role that's used to post flow logs to a CloudWatch Logs - // log group. - // - // DeliverLogsPermissionArn is a required field - DeliverLogsPermissionArn *string `type:"string" required:"true"` - - // The name of the CloudWatch log group. - // - // LogGroupName is a required field - LogGroupName *string `type:"string" required:"true"` - - // One or more subnet, network interface, or VPC IDs. - // - // Constraints: Maximum of 1000 resources - // - // ResourceIds is a required field - ResourceIds []*string `locationName:"ResourceId" locationNameList:"item" type:"list" required:"true"` - - // The type of resource on which to create the flow log. - // - // ResourceType is a required field - ResourceType *string `type:"string" required:"true" enum:"FlowLogsResourceType"` - - // The type of traffic to log. - // - // TrafficType is a required field - TrafficType *string `type:"string" required:"true" enum:"TrafficType"` -} - -// String returns the string representation -func (s CreateFlowLogsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateFlowLogsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateFlowLogsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateFlowLogsInput"} - if s.DeliverLogsPermissionArn == nil { - invalidParams.Add(request.NewErrParamRequired("DeliverLogsPermissionArn")) - } - if s.LogGroupName == nil { - invalidParams.Add(request.NewErrParamRequired("LogGroupName")) - } - if s.ResourceIds == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceIds")) - } - if s.ResourceType == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceType")) - } - if s.TrafficType == nil { - invalidParams.Add(request.NewErrParamRequired("TrafficType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateFlowLogs. -type CreateFlowLogsOutput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure the idempotency of - // the request. - ClientToken *string `locationName:"clientToken" type:"string"` - - // The IDs of the flow logs. - FlowLogIds []*string `locationName:"flowLogIdSet" locationNameList:"item" type:"list"` - - // Information about the flow logs that could not be created successfully. - Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s CreateFlowLogsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateFlowLogsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateImage. -type CreateImageInput struct { - _ struct{} `type:"structure"` - - // Information about one or more block device mappings. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"` - - // A description for the new image. - Description *string `locationName:"description" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - - // A name for the new image. - // - // Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets - // ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes ('), - // at-signs (@), or underscores(_) - // - // Name is a required field - Name *string `locationName:"name" type:"string" required:"true"` - - // By default, Amazon EC2 attempts to shut down and reboot the instance before - // creating the image. If the 'No Reboot' option is set, Amazon EC2 doesn't - // shut down the instance before creating the image. When this option is used, - // file system integrity on the created image can't be guaranteed. - NoReboot *bool `locationName:"noReboot" type:"boolean"` -} - -// String returns the string representation -func (s CreateImageInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateImageInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateImageInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateImageInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateImage. -type CreateImageOutput struct { - _ struct{} `type:"structure"` - - // The ID of the new AMI. - ImageId *string `locationName:"imageId" type:"string"` -} - -// String returns the string representation -func (s CreateImageOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateImageOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateInstanceExportTask. -type CreateInstanceExportTaskInput struct { - _ struct{} `type:"structure"` - - // A description for the conversion task or the resource being exported. The - // maximum length is 255 bytes. - Description *string `locationName:"description" type:"string"` - - // The format and location for an instance export task. - ExportToS3Task *ExportToS3TaskSpecification `locationName:"exportToS3" type:"structure"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - - // The target virtualization environment. - TargetEnvironment *string `locationName:"targetEnvironment" type:"string" enum:"ExportEnvironment"` -} - -// String returns the string representation -func (s CreateInstanceExportTaskInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateInstanceExportTaskInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateInstanceExportTaskInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateInstanceExportTaskInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output for CreateInstanceExportTask. -type CreateInstanceExportTaskOutput struct { - _ struct{} `type:"structure"` - - // Information about the instance export task. - ExportTask *ExportTask `locationName:"exportTask" type:"structure"` -} - -// String returns the string representation -func (s CreateInstanceExportTaskOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateInstanceExportTaskOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateInternetGateway. -type CreateInternetGatewayInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s CreateInternetGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateInternetGatewayInput) GoString() string { - return s.String() -} - -// Contains the output of CreateInternetGateway. -type CreateInternetGatewayOutput struct { - _ struct{} `type:"structure"` - - // Information about the Internet gateway. - InternetGateway *InternetGateway `locationName:"internetGateway" type:"structure"` -} - -// String returns the string representation -func (s CreateInternetGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateInternetGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateKeyPair. -type CreateKeyPairInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // A unique name for the key pair. - // - // Constraints: Up to 255 ASCII characters - // - // KeyName is a required field - KeyName *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateKeyPairInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateKeyPairInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateKeyPairInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateKeyPairInput"} - if s.KeyName == nil { - invalidParams.Add(request.NewErrParamRequired("KeyName")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a key pair. -type CreateKeyPairOutput struct { - _ struct{} `type:"structure"` - - // The SHA-1 digest of the DER encoded private key. - KeyFingerprint *string `locationName:"keyFingerprint" type:"string"` - - // An unencrypted PEM encoded RSA private key. - KeyMaterial *string `locationName:"keyMaterial" type:"string"` - - // The name of the key pair. - KeyName *string `locationName:"keyName" type:"string"` -} - -// String returns the string representation -func (s CreateKeyPairOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateKeyPairOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateNatGateway. -type CreateNatGatewayInput struct { - _ struct{} `type:"structure"` - - // The allocation ID of an Elastic IP address to associate with the NAT gateway. - // If the Elastic IP address is associated with another resource, you must first - // disassociate it. - // - // AllocationId is a required field - AllocationId *string `type:"string" required:"true"` - - // Unique, case-sensitive identifier you provide to ensure the idempotency of - // the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - // - // Constraint: Maximum 64 ASCII characters. - ClientToken *string `type:"string"` - - // The subnet in which to create the NAT gateway. - // - // SubnetId is a required field - SubnetId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateNatGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNatGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateNatGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateNatGatewayInput"} - if s.AllocationId == nil { - invalidParams.Add(request.NewErrParamRequired("AllocationId")) - } - if s.SubnetId == nil { - invalidParams.Add(request.NewErrParamRequired("SubnetId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateNatGateway. -type CreateNatGatewayOutput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier to ensure the idempotency of the request. - // Only returned if a client token was provided in the request. - ClientToken *string `locationName:"clientToken" type:"string"` - - // Information about the NAT gateway. - NatGateway *NatGateway `locationName:"natGateway" type:"structure"` -} - -// String returns the string representation -func (s CreateNatGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNatGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateNetworkAclEntry. -type CreateNetworkAclEntryInput struct { - _ struct{} `type:"structure"` - - // The network range to allow or deny, in CIDR notation (for example 172.16.0.0/24). - // - // CidrBlock is a required field - CidrBlock *string `locationName:"cidrBlock" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Indicates whether this is an egress rule (rule is applied to traffic leaving - // the subnet). - // - // Egress is a required field - Egress *bool `locationName:"egress" type:"boolean" required:"true"` - - // ICMP protocol: The ICMP type and code. Required if specifying ICMP for the - // protocol. - IcmpTypeCode *IcmpTypeCode `locationName:"Icmp" type:"structure"` - - // The ID of the network ACL. - // - // NetworkAclId is a required field - NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"` - - // TCP or UDP protocols: The range of ports the rule applies to. - PortRange *PortRange `locationName:"portRange" type:"structure"` - - // The protocol. A value of -1 means all protocols. - // - // Protocol is a required field - Protocol *string `locationName:"protocol" type:"string" required:"true"` - - // Indicates whether to allow or deny the traffic that matches the rule. - // - // RuleAction is a required field - RuleAction *string `locationName:"ruleAction" type:"string" required:"true" enum:"RuleAction"` - - // The rule number for the entry (for example, 100). ACL entries are processed - // in ascending order by rule number. - // - // Constraints: Positive integer from 1 to 32766. The range 32767 to 65535 - // is reserved for internal use. - // - // RuleNumber is a required field - RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"` -} - -// String returns the string representation -func (s CreateNetworkAclEntryInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNetworkAclEntryInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateNetworkAclEntryInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateNetworkAclEntryInput"} - if s.CidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("CidrBlock")) - } - if s.Egress == nil { - invalidParams.Add(request.NewErrParamRequired("Egress")) - } - if s.NetworkAclId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkAclId")) - } - if s.Protocol == nil { - invalidParams.Add(request.NewErrParamRequired("Protocol")) - } - if s.RuleAction == nil { - invalidParams.Add(request.NewErrParamRequired("RuleAction")) - } - if s.RuleNumber == nil { - invalidParams.Add(request.NewErrParamRequired("RuleNumber")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreateNetworkAclEntryOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CreateNetworkAclEntryOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNetworkAclEntryOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateNetworkAcl. -type CreateNetworkAclInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateNetworkAclInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNetworkAclInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateNetworkAclInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateNetworkAclInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateNetworkAcl. -type CreateNetworkAclOutput struct { - _ struct{} `type:"structure"` - - // Information about the network ACL. - NetworkAcl *NetworkAcl `locationName:"networkAcl" type:"structure"` -} - -// String returns the string representation -func (s CreateNetworkAclOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNetworkAclOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateNetworkInterface. -type CreateNetworkInterfaceInput struct { - _ struct{} `type:"structure"` - - // A description for the network interface. - Description *string `locationName:"description" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The IDs of one or more security groups. - Groups []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"` - - // The primary private IP address of the network interface. If you don't specify - // an IP address, Amazon EC2 selects one for you from the subnet range. If you - // specify an IP address, you cannot indicate any IP addresses specified in - // privateIpAddresses as primary (only one IP address can be designated as primary). - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // One or more private IP addresses. - PrivateIpAddresses []*PrivateIpAddressSpecification `locationName:"privateIpAddresses" locationNameList:"item" type:"list"` - - // The number of secondary private IP addresses to assign to a network interface. - // When you specify a number of secondary IP addresses, Amazon EC2 selects these - // IP addresses within the subnet range. You can't specify this option and specify - // more than one private IP address using privateIpAddresses. - // - // The number of IP addresses you can assign to a network interface varies - // by instance type. For more information, see Private IP Addresses Per ENI - // Per Instance Type (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI) - // in the Amazon Elastic Compute Cloud User Guide. - SecondaryPrivateIpAddressCount *int64 `locationName:"secondaryPrivateIpAddressCount" type:"integer"` - - // The ID of the subnet to associate with the network interface. - // - // SubnetId is a required field - SubnetId *string `locationName:"subnetId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateNetworkInterfaceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNetworkInterfaceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateNetworkInterfaceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateNetworkInterfaceInput"} - if s.SubnetId == nil { - invalidParams.Add(request.NewErrParamRequired("SubnetId")) - } - if s.PrivateIpAddresses != nil { - for i, v := range s.PrivateIpAddresses { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "PrivateIpAddresses", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateNetworkInterface. -type CreateNetworkInterfaceOutput struct { - _ struct{} `type:"structure"` - - // Information about the network interface. - NetworkInterface *NetworkInterface `locationName:"networkInterface" type:"structure"` -} - -// String returns the string representation -func (s CreateNetworkInterfaceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateNetworkInterfaceOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreatePlacementGroup. -type CreatePlacementGroupInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // A name for the placement group. - // - // Constraints: Up to 255 ASCII characters - // - // GroupName is a required field - GroupName *string `locationName:"groupName" type:"string" required:"true"` - - // The placement strategy. - // - // Strategy is a required field - Strategy *string `locationName:"strategy" type:"string" required:"true" enum:"PlacementStrategy"` -} - -// String returns the string representation -func (s CreatePlacementGroupInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreatePlacementGroupInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreatePlacementGroupInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreatePlacementGroupInput"} - if s.GroupName == nil { - invalidParams.Add(request.NewErrParamRequired("GroupName")) - } - if s.Strategy == nil { - invalidParams.Add(request.NewErrParamRequired("Strategy")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreatePlacementGroupOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CreatePlacementGroupOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreatePlacementGroupOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateReservedInstancesListing. -type CreateReservedInstancesListingInput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure idempotency of your - // listings. This helps avoid duplicate listings. For more information, see - // Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - // - // ClientToken is a required field - ClientToken *string `locationName:"clientToken" type:"string" required:"true"` - - // The number of instances that are a part of a Reserved Instance account to - // be listed in the Reserved Instance Marketplace. This number should be less - // than or equal to the instance count associated with the Reserved Instance - // ID specified in this call. - // - // InstanceCount is a required field - InstanceCount *int64 `locationName:"instanceCount" type:"integer" required:"true"` - - // A list specifying the price of the Standard Reserved Instance for each month - // remaining in the Reserved Instance term. - // - // PriceSchedules is a required field - PriceSchedules []*PriceScheduleSpecification `locationName:"priceSchedules" locationNameList:"item" type:"list" required:"true"` - - // The ID of the active Standard Reserved Instance. - // - // ReservedInstancesId is a required field - ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateReservedInstancesListingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateReservedInstancesListingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateReservedInstancesListingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateReservedInstancesListingInput"} - if s.ClientToken == nil { - invalidParams.Add(request.NewErrParamRequired("ClientToken")) - } - if s.InstanceCount == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceCount")) - } - if s.PriceSchedules == nil { - invalidParams.Add(request.NewErrParamRequired("PriceSchedules")) - } - if s.ReservedInstancesId == nil { - invalidParams.Add(request.NewErrParamRequired("ReservedInstancesId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateReservedInstancesListing. -type CreateReservedInstancesListingOutput struct { - _ struct{} `type:"structure"` - - // Information about the Standard Reserved Instance listing. - ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s CreateReservedInstancesListingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateReservedInstancesListingOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateRoute. -type CreateRouteInput struct { - _ struct{} `type:"structure"` - - // The CIDR address block used for the destination match. Routing decisions - // are based on the most specific match. - // - // DestinationCidrBlock is a required field - DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of an Internet gateway or virtual private gateway attached to your - // VPC. - GatewayId *string `locationName:"gatewayId" type:"string"` - - // The ID of a NAT instance in your VPC. The operation fails if you specify - // an instance ID unless exactly one network interface is attached. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The ID of a NAT gateway. - NatGatewayId *string `locationName:"natGatewayId" type:"string"` - - // The ID of a network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // The ID of the route table for the route. - // - // RouteTableId is a required field - RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` - - // The ID of a VPC peering connection. - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` -} - -// String returns the string representation -func (s CreateRouteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateRouteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateRouteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateRouteInput"} - if s.DestinationCidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("DestinationCidrBlock")) - } - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateRoute. -type CreateRouteOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s CreateRouteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateRouteOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateRouteTable. -type CreateRouteTableInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateRouteTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateRouteTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateRouteTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateRouteTableInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateRouteTable. -type CreateRouteTableOutput struct { - _ struct{} `type:"structure"` - - // Information about the route table. - RouteTable *RouteTable `locationName:"routeTable" type:"structure"` -} - -// String returns the string representation -func (s CreateRouteTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateRouteTableOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateSecurityGroup. -type CreateSecurityGroupInput struct { - _ struct{} `type:"structure"` - - // A description for the security group. This is informational only. - // - // Constraints: Up to 255 characters in length - // - // Constraints for EC2-Classic: ASCII characters - // - // Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$* - // - // Description is a required field - Description *string `locationName:"GroupDescription" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The name of the security group. - // - // Constraints: Up to 255 characters in length - // - // Constraints for EC2-Classic: ASCII characters - // - // Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$* - // - // GroupName is a required field - GroupName *string `type:"string" required:"true"` - - // [EC2-VPC] The ID of the VPC. Required for EC2-VPC. - VpcId *string `type:"string"` -} - -// String returns the string representation -func (s CreateSecurityGroupInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateSecurityGroupInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateSecurityGroupInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateSecurityGroupInput"} - if s.Description == nil { - invalidParams.Add(request.NewErrParamRequired("Description")) - } - if s.GroupName == nil { - invalidParams.Add(request.NewErrParamRequired("GroupName")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateSecurityGroup. -type CreateSecurityGroupOutput struct { - _ struct{} `type:"structure"` - - // The ID of the security group. - GroupId *string `locationName:"groupId" type:"string"` -} - -// String returns the string representation -func (s CreateSecurityGroupOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateSecurityGroupOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateSnapshot. -type CreateSnapshotInput struct { - _ struct{} `type:"structure"` - - // A description for the snapshot. - Description *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the EBS volume. - // - // VolumeId is a required field - VolumeId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateSnapshotInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateSnapshotInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateSnapshotInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateSnapshotInput"} - if s.VolumeId == nil { - invalidParams.Add(request.NewErrParamRequired("VolumeId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the parameters for CreateSpotDatafeedSubscription. -type CreateSpotDatafeedSubscriptionInput struct { - _ struct{} `type:"structure"` - - // The Amazon S3 bucket in which to store the Spot instance data feed. - // - // Bucket is a required field - Bucket *string `locationName:"bucket" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // A prefix for the data feed file names. - Prefix *string `locationName:"prefix" type:"string"` -} - -// String returns the string representation -func (s CreateSpotDatafeedSubscriptionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateSpotDatafeedSubscriptionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateSpotDatafeedSubscriptionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateSpotDatafeedSubscriptionInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateSpotDatafeedSubscription. -type CreateSpotDatafeedSubscriptionOutput struct { - _ struct{} `type:"structure"` - - // The Spot instance data feed subscription. - SpotDatafeedSubscription *SpotDatafeedSubscription `locationName:"spotDatafeedSubscription" type:"structure"` -} - -// String returns the string representation -func (s CreateSpotDatafeedSubscriptionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateSpotDatafeedSubscriptionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateSubnet. -type CreateSubnetInput struct { - _ struct{} `type:"structure"` - - // The Availability Zone for the subnet. - // - // Default: AWS selects one for you. If you create more than one subnet in - // your VPC, we may not necessarily select a different zone for each subnet. - AvailabilityZone *string `type:"string"` - - // The network range for the subnet, in CIDR notation. For example, 10.0.0.0/24. - // - // CidrBlock is a required field - CidrBlock *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateSubnetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateSubnetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateSubnetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateSubnetInput"} - if s.CidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("CidrBlock")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateSubnet. -type CreateSubnetOutput struct { - _ struct{} `type:"structure"` - - // Information about the subnet. - Subnet *Subnet `locationName:"subnet" type:"structure"` -} - -// String returns the string representation -func (s CreateSubnetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateSubnetOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateTags. -type CreateTagsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The IDs of one or more resources to tag. For example, ami-1a2b3c4d. - // - // Resources is a required field - Resources []*string `locationName:"ResourceId" type:"list" required:"true"` - - // One or more tags. The value parameter is required, but if you don't want - // the tag to have a value, specify the parameter with no value, and we set - // the value to an empty string. - // - // Tags is a required field - Tags []*Tag `locationName:"Tag" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s CreateTagsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTagsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateTagsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateTagsInput"} - if s.Resources == nil { - invalidParams.Add(request.NewErrParamRequired("Resources")) - } - if s.Tags == nil { - invalidParams.Add(request.NewErrParamRequired("Tags")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreateTagsOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CreateTagsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTagsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateVolume. -type CreateVolumeInput struct { - _ struct{} `type:"structure"` - - // The Availability Zone in which to create the volume. Use DescribeAvailabilityZones - // to list the Availability Zones that are currently available to you. - // - // AvailabilityZone is a required field - AvailabilityZone *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Specifies whether the volume should be encrypted. Encrypted Amazon EBS volumes - // may only be attached to instances that support Amazon EBS encryption. Volumes - // that are created from encrypted snapshots are automatically encrypted. There - // is no way to create an encrypted volume from an unencrypted snapshot or vice - // versa. If your AMI uses encrypted volumes, you can only launch it on supported - // instance types. For more information, see Amazon EBS Encryption (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html) - // in the Amazon Elastic Compute Cloud User Guide. - Encrypted *bool `locationName:"encrypted" type:"boolean"` - - // Only valid for Provisioned IOPS SSD volumes. The number of I/O operations - // per second (IOPS) to provision for the volume, with a maximum ratio of 30 - // IOPS/GiB. - // - // Constraint: Range is 100 to 20000 for Provisioned IOPS SSD volumes - Iops *int64 `type:"integer"` - - // The full ARN of the AWS Key Management Service (AWS KMS) customer master - // key (CMK) to use when creating the encrypted volume. This parameter is only - // required if you want to use a non-default CMK; if this parameter is not specified, - // the default CMK for EBS is used. The ARN contains the arn:aws:kms namespace, - // followed by the region of the CMK, the AWS account ID of the CMK owner, the - // key namespace, and then the CMK ID. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef. - // If a KmsKeyId is specified, the Encrypted flag must also be set. - KmsKeyId *string `type:"string"` - - // The size of the volume, in GiBs. - // - // Constraints: 1-16384 for gp2, 4-16384 for io1, 500-16384 for st1, 500-16384 - // for sc1, and 1-1024 for standard. If you specify a snapshot, the volume size - // must be equal to or larger than the snapshot size. - // - // Default: If you're creating the volume from a snapshot and don't specify - // a volume size, the default is the snapshot size. - Size *int64 `type:"integer"` - - // The snapshot from which to create the volume. - SnapshotId *string `type:"string"` - - // The volume type. This can be gp2 for General Purpose SSD, io1 for Provisioned - // IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard - // for Magnetic volumes. - // - // Default: standard - VolumeType *string `type:"string" enum:"VolumeType"` -} - -// String returns the string representation -func (s CreateVolumeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVolumeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateVolumeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateVolumeInput"} - if s.AvailabilityZone == nil { - invalidParams.Add(request.NewErrParamRequired("AvailabilityZone")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes the user or group to be added or removed from the permissions for -// a volume. -type CreateVolumePermission struct { - _ struct{} `type:"structure"` - - // The specific group that is to be added or removed from a volume's list of - // create volume permissions. - Group *string `locationName:"group" type:"string" enum:"PermissionGroup"` - - // The specific AWS account ID that is to be added or removed from a volume's - // list of create volume permissions. - UserId *string `locationName:"userId" type:"string"` -} - -// String returns the string representation -func (s CreateVolumePermission) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVolumePermission) GoString() string { - return s.String() -} - -// Describes modifications to the permissions for a volume. -type CreateVolumePermissionModifications struct { - _ struct{} `type:"structure"` - - // Adds a specific AWS account ID or group to a volume's list of create volume - // permissions. - Add []*CreateVolumePermission `locationNameList:"item" type:"list"` - - // Removes a specific AWS account ID or group from a volume's list of create - // volume permissions. - Remove []*CreateVolumePermission `locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s CreateVolumePermissionModifications) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVolumePermissionModifications) GoString() string { - return s.String() -} - -// Contains the parameters for CreateVpcEndpoint. -type CreateVpcEndpointInput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure the idempotency of - // the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - ClientToken *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // A policy to attach to the endpoint that controls access to the service. The - // policy must be in valid JSON format. If this parameter is not specified, - // we attach a default policy that allows full access to the service. - PolicyDocument *string `type:"string"` - - // One or more route table IDs. - RouteTableIds []*string `locationName:"RouteTableId" locationNameList:"item" type:"list"` - - // The AWS service name, in the form com.amazonaws.region.service . To get a - // list of available services, use the DescribeVpcEndpointServices request. - // - // ServiceName is a required field - ServiceName *string `type:"string" required:"true"` - - // The ID of the VPC in which the endpoint will be used. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateVpcEndpointInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpcEndpointInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateVpcEndpointInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateVpcEndpointInput"} - if s.ServiceName == nil { - invalidParams.Add(request.NewErrParamRequired("ServiceName")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateVpcEndpoint. -type CreateVpcEndpointOutput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure the idempotency of - // the request. - ClientToken *string `locationName:"clientToken" type:"string"` - - // Information about the endpoint. - VpcEndpoint *VpcEndpoint `locationName:"vpcEndpoint" type:"structure"` -} - -// String returns the string representation -func (s CreateVpcEndpointOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpcEndpointOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateVpc. -type CreateVpcInput struct { - _ struct{} `type:"structure"` - - // The network range for the VPC, in CIDR notation. For example, 10.0.0.0/16. - // - // CidrBlock is a required field - CidrBlock *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The tenancy options for instances launched into the VPC. For default, instances - // are launched with shared tenancy by default. You can launch instances with - // any tenancy into a shared tenancy VPC. For dedicated, instances are launched - // as dedicated tenancy instances by default. You can only launch instances - // with a tenancy of dedicated or host into a dedicated tenancy VPC. - // - // Important: The host value cannot be used with this parameter. Use the default - // or dedicated values only. - // - // Default: default - InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"` -} - -// String returns the string representation -func (s CreateVpcInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpcInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateVpcInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateVpcInput"} - if s.CidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("CidrBlock")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateVpc. -type CreateVpcOutput struct { - _ struct{} `type:"structure"` - - // Information about the VPC. - Vpc *Vpc `locationName:"vpc" type:"structure"` -} - -// String returns the string representation -func (s CreateVpcOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpcOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateVpcPeeringConnection. -type CreateVpcPeeringConnectionInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The AWS account ID of the owner of the peer VPC. - // - // Default: Your AWS account ID - PeerOwnerId *string `locationName:"peerOwnerId" type:"string"` - - // The ID of the VPC with which you are creating the VPC peering connection. - PeerVpcId *string `locationName:"peerVpcId" type:"string"` - - // The ID of the requester VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s CreateVpcPeeringConnectionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpcPeeringConnectionInput) GoString() string { - return s.String() -} - -// Contains the output of CreateVpcPeeringConnection. -type CreateVpcPeeringConnectionOutput struct { - _ struct{} `type:"structure"` - - // Information about the VPC peering connection. - VpcPeeringConnection *VpcPeeringConnection `locationName:"vpcPeeringConnection" type:"structure"` -} - -// String returns the string representation -func (s CreateVpcPeeringConnectionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpcPeeringConnectionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateVpnConnection. -type CreateVpnConnectionInput struct { - _ struct{} `type:"structure"` - - // The ID of the customer gateway. - // - // CustomerGatewayId is a required field - CustomerGatewayId *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Indicates whether the VPN connection requires static routes. If you are creating - // a VPN connection for a device that does not support BGP, you must specify - // true. - // - // Default: false - Options *VpnConnectionOptionsSpecification `locationName:"options" type:"structure"` - - // The type of VPN connection (ipsec.1). - // - // Type is a required field - Type *string `type:"string" required:"true"` - - // The ID of the virtual private gateway. - // - // VpnGatewayId is a required field - VpnGatewayId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateVpnConnectionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpnConnectionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateVpnConnectionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateVpnConnectionInput"} - if s.CustomerGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("CustomerGatewayId")) - } - if s.Type == nil { - invalidParams.Add(request.NewErrParamRequired("Type")) - } - if s.VpnGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("VpnGatewayId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateVpnConnection. -type CreateVpnConnectionOutput struct { - _ struct{} `type:"structure"` - - // Information about the VPN connection. - VpnConnection *VpnConnection `locationName:"vpnConnection" type:"structure"` -} - -// String returns the string representation -func (s CreateVpnConnectionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpnConnectionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateVpnConnectionRoute. -type CreateVpnConnectionRouteInput struct { - _ struct{} `type:"structure"` - - // The CIDR block associated with the local subnet of the customer network. - // - // DestinationCidrBlock is a required field - DestinationCidrBlock *string `type:"string" required:"true"` - - // The ID of the VPN connection. - // - // VpnConnectionId is a required field - VpnConnectionId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateVpnConnectionRouteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpnConnectionRouteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateVpnConnectionRouteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateVpnConnectionRouteInput"} - if s.DestinationCidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("DestinationCidrBlock")) - } - if s.VpnConnectionId == nil { - invalidParams.Add(request.NewErrParamRequired("VpnConnectionId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreateVpnConnectionRouteOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CreateVpnConnectionRouteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpnConnectionRouteOutput) GoString() string { - return s.String() -} - -// Contains the parameters for CreateVpnGateway. -type CreateVpnGatewayInput struct { - _ struct{} `type:"structure"` - - // The Availability Zone for the virtual private gateway. - AvailabilityZone *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The type of VPN connection this virtual private gateway supports. - // - // Type is a required field - Type *string `type:"string" required:"true" enum:"GatewayType"` -} - -// String returns the string representation -func (s CreateVpnGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpnGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateVpnGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateVpnGatewayInput"} - if s.Type == nil { - invalidParams.Add(request.NewErrParamRequired("Type")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of CreateVpnGateway. -type CreateVpnGatewayOutput struct { - _ struct{} `type:"structure"` - - // Information about the virtual private gateway. - VpnGateway *VpnGateway `locationName:"vpnGateway" type:"structure"` -} - -// String returns the string representation -func (s CreateVpnGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateVpnGatewayOutput) GoString() string { - return s.String() -} - -// Describes a customer gateway. -type CustomerGateway struct { - _ struct{} `type:"structure"` - - // The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number - // (ASN). - BgpAsn *string `locationName:"bgpAsn" type:"string"` - - // The ID of the customer gateway. - CustomerGatewayId *string `locationName:"customerGatewayId" type:"string"` - - // The Internet-routable IP address of the customer gateway's outside interface. - IpAddress *string `locationName:"ipAddress" type:"string"` - - // The current state of the customer gateway (pending | available | deleting - // | deleted). - State *string `locationName:"state" type:"string"` - - // Any tags assigned to the customer gateway. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The type of VPN connection the customer gateway supports (ipsec.1). - Type *string `locationName:"type" type:"string"` -} - -// String returns the string representation -func (s CustomerGateway) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CustomerGateway) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteCustomerGateway. -type DeleteCustomerGatewayInput struct { - _ struct{} `type:"structure"` - - // The ID of the customer gateway. - // - // CustomerGatewayId is a required field - CustomerGatewayId *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s DeleteCustomerGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteCustomerGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteCustomerGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteCustomerGatewayInput"} - if s.CustomerGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("CustomerGatewayId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteCustomerGatewayOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteCustomerGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteCustomerGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteDhcpOptions. -type DeleteDhcpOptionsInput struct { - _ struct{} `type:"structure"` - - // The ID of the DHCP options set. - // - // DhcpOptionsId is a required field - DhcpOptionsId *string `type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s DeleteDhcpOptionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteDhcpOptionsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteDhcpOptionsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteDhcpOptionsInput"} - if s.DhcpOptionsId == nil { - invalidParams.Add(request.NewErrParamRequired("DhcpOptionsId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteDhcpOptionsOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteDhcpOptionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteDhcpOptionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteFlowLogs. -type DeleteFlowLogsInput struct { - _ struct{} `type:"structure"` - - // One or more flow log IDs. - // - // FlowLogIds is a required field - FlowLogIds []*string `locationName:"FlowLogId" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s DeleteFlowLogsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteFlowLogsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteFlowLogsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteFlowLogsInput"} - if s.FlowLogIds == nil { - invalidParams.Add(request.NewErrParamRequired("FlowLogIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DeleteFlowLogs. -type DeleteFlowLogsOutput struct { - _ struct{} `type:"structure"` - - // Information about the flow logs that could not be deleted successfully. - Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DeleteFlowLogsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteFlowLogsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteInternetGateway. -type DeleteInternetGatewayInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the Internet gateway. - // - // InternetGatewayId is a required field - InternetGatewayId *string `locationName:"internetGatewayId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteInternetGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteInternetGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteInternetGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteInternetGatewayInput"} - if s.InternetGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("InternetGatewayId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteInternetGatewayOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteInternetGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteInternetGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteKeyPair. -type DeleteKeyPairInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The name of the key pair. - // - // KeyName is a required field - KeyName *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteKeyPairInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteKeyPairInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteKeyPairInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteKeyPairInput"} - if s.KeyName == nil { - invalidParams.Add(request.NewErrParamRequired("KeyName")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteKeyPairOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteKeyPairOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteKeyPairOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteNatGateway. -type DeleteNatGatewayInput struct { - _ struct{} `type:"structure"` - - // The ID of the NAT gateway. - // - // NatGatewayId is a required field - NatGatewayId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteNatGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNatGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteNatGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteNatGatewayInput"} - if s.NatGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("NatGatewayId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DeleteNatGateway. -type DeleteNatGatewayOutput struct { - _ struct{} `type:"structure"` - - // The ID of the NAT gateway. - NatGatewayId *string `locationName:"natGatewayId" type:"string"` -} - -// String returns the string representation -func (s DeleteNatGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNatGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteNetworkAclEntry. -type DeleteNetworkAclEntryInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Indicates whether the rule is an egress rule. - // - // Egress is a required field - Egress *bool `locationName:"egress" type:"boolean" required:"true"` - - // The ID of the network ACL. - // - // NetworkAclId is a required field - NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"` - - // The rule number of the entry to delete. - // - // RuleNumber is a required field - RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"` -} - -// String returns the string representation -func (s DeleteNetworkAclEntryInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNetworkAclEntryInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteNetworkAclEntryInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteNetworkAclEntryInput"} - if s.Egress == nil { - invalidParams.Add(request.NewErrParamRequired("Egress")) - } - if s.NetworkAclId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkAclId")) - } - if s.RuleNumber == nil { - invalidParams.Add(request.NewErrParamRequired("RuleNumber")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteNetworkAclEntryOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteNetworkAclEntryOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNetworkAclEntryOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteNetworkAcl. -type DeleteNetworkAclInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the network ACL. - // - // NetworkAclId is a required field - NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteNetworkAclInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNetworkAclInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteNetworkAclInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteNetworkAclInput"} - if s.NetworkAclId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkAclId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteNetworkAclOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteNetworkAclOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNetworkAclOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteNetworkInterface. -type DeleteNetworkInterfaceInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the network interface. - // - // NetworkInterfaceId is a required field - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteNetworkInterfaceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNetworkInterfaceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteNetworkInterfaceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteNetworkInterfaceInput"} - if s.NetworkInterfaceId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkInterfaceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteNetworkInterfaceOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteNetworkInterfaceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteNetworkInterfaceOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeletePlacementGroup. -type DeletePlacementGroupInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The name of the placement group. - // - // GroupName is a required field - GroupName *string `locationName:"groupName" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeletePlacementGroupInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeletePlacementGroupInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeletePlacementGroupInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeletePlacementGroupInput"} - if s.GroupName == nil { - invalidParams.Add(request.NewErrParamRequired("GroupName")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeletePlacementGroupOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeletePlacementGroupOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeletePlacementGroupOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteRoute. -type DeleteRouteInput struct { - _ struct{} `type:"structure"` - - // The CIDR range for the route. The value you specify must match the CIDR for - // the route exactly. - // - // DestinationCidrBlock is a required field - DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the route table. - // - // RouteTableId is a required field - RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteRouteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteRouteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteRouteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteRouteInput"} - if s.DestinationCidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("DestinationCidrBlock")) - } - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteRouteOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteRouteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteRouteOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteRouteTable. -type DeleteRouteTableInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the route table. - // - // RouteTableId is a required field - RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteRouteTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteRouteTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteRouteTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteRouteTableInput"} - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteRouteTableOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteRouteTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteRouteTableOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteSecurityGroup. -type DeleteSecurityGroupInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the security group. Required for a nondefault VPC. - GroupId *string `type:"string"` - - // [EC2-Classic, default VPC] The name of the security group. You can specify - // either the security group name or the security group ID. - GroupName *string `type:"string"` -} - -// String returns the string representation -func (s DeleteSecurityGroupInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSecurityGroupInput) GoString() string { - return s.String() -} - -type DeleteSecurityGroupOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteSecurityGroupOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSecurityGroupOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteSnapshot. -type DeleteSnapshotInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the EBS snapshot. - // - // SnapshotId is a required field - SnapshotId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteSnapshotInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSnapshotInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteSnapshotInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteSnapshotInput"} - if s.SnapshotId == nil { - invalidParams.Add(request.NewErrParamRequired("SnapshotId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteSnapshotOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteSnapshotOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSnapshotOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteSpotDatafeedSubscription. -type DeleteSpotDatafeedSubscriptionInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s DeleteSpotDatafeedSubscriptionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSpotDatafeedSubscriptionInput) GoString() string { - return s.String() -} - -type DeleteSpotDatafeedSubscriptionOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteSpotDatafeedSubscriptionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSpotDatafeedSubscriptionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteSubnet. -type DeleteSubnetInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the subnet. - // - // SubnetId is a required field - SubnetId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteSubnetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSubnetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteSubnetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteSubnetInput"} - if s.SubnetId == nil { - invalidParams.Add(request.NewErrParamRequired("SubnetId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteSubnetOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteSubnetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteSubnetOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteTags. -type DeleteTagsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the resource. For example, ami-1a2b3c4d. You can specify more than - // one resource ID. - // - // Resources is a required field - Resources []*string `locationName:"resourceId" type:"list" required:"true"` - - // One or more tags to delete. If you omit the value parameter, we delete the - // tag regardless of its value. If you specify this parameter with an empty - // string as the value, we delete the key only if its value is an empty string. - Tags []*Tag `locationName:"tag" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DeleteTagsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTagsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteTagsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteTagsInput"} - if s.Resources == nil { - invalidParams.Add(request.NewErrParamRequired("Resources")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteTagsOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteTagsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTagsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteVolume. -type DeleteVolumeInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the volume. - // - // VolumeId is a required field - VolumeId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteVolumeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVolumeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteVolumeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteVolumeInput"} - if s.VolumeId == nil { - invalidParams.Add(request.NewErrParamRequired("VolumeId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteVolumeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteVolumeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVolumeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteVpcEndpoints. -type DeleteVpcEndpointsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more endpoint IDs. - // - // VpcEndpointIds is a required field - VpcEndpointIds []*string `locationName:"VpcEndpointId" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s DeleteVpcEndpointsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpcEndpointsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteVpcEndpointsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteVpcEndpointsInput"} - if s.VpcEndpointIds == nil { - invalidParams.Add(request.NewErrParamRequired("VpcEndpointIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DeleteVpcEndpoints. -type DeleteVpcEndpointsOutput struct { - _ struct{} `type:"structure"` - - // Information about the endpoints that were not successfully deleted. - Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DeleteVpcEndpointsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpcEndpointsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteVpc. -type DeleteVpcInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteVpcInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpcInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteVpcInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteVpcInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteVpcOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteVpcOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpcOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteVpcPeeringConnection. -type DeleteVpcPeeringConnectionInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC peering connection. - // - // VpcPeeringConnectionId is a required field - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteVpcPeeringConnectionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpcPeeringConnectionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteVpcPeeringConnectionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteVpcPeeringConnectionInput"} - if s.VpcPeeringConnectionId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcPeeringConnectionId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DeleteVpcPeeringConnection. -type DeleteVpcPeeringConnectionOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s DeleteVpcPeeringConnectionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpcPeeringConnectionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteVpnConnection. -type DeleteVpnConnectionInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPN connection. - // - // VpnConnectionId is a required field - VpnConnectionId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteVpnConnectionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpnConnectionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteVpnConnectionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteVpnConnectionInput"} - if s.VpnConnectionId == nil { - invalidParams.Add(request.NewErrParamRequired("VpnConnectionId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteVpnConnectionOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteVpnConnectionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpnConnectionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteVpnConnectionRoute. -type DeleteVpnConnectionRouteInput struct { - _ struct{} `type:"structure"` - - // The CIDR block associated with the local subnet of the customer network. - // - // DestinationCidrBlock is a required field - DestinationCidrBlock *string `type:"string" required:"true"` - - // The ID of the VPN connection. - // - // VpnConnectionId is a required field - VpnConnectionId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteVpnConnectionRouteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpnConnectionRouteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteVpnConnectionRouteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteVpnConnectionRouteInput"} - if s.DestinationCidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("DestinationCidrBlock")) - } - if s.VpnConnectionId == nil { - invalidParams.Add(request.NewErrParamRequired("VpnConnectionId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteVpnConnectionRouteOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteVpnConnectionRouteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpnConnectionRouteOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeleteVpnGateway. -type DeleteVpnGatewayInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the virtual private gateway. - // - // VpnGatewayId is a required field - VpnGatewayId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteVpnGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpnGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteVpnGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteVpnGatewayInput"} - if s.VpnGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("VpnGatewayId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteVpnGatewayOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteVpnGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteVpnGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DeregisterImage. -type DeregisterImageInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the AMI. - // - // ImageId is a required field - ImageId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DeregisterImageInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeregisterImageInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeregisterImageInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeregisterImageInput"} - if s.ImageId == nil { - invalidParams.Add(request.NewErrParamRequired("ImageId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeregisterImageOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeregisterImageOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeregisterImageOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeAccountAttributes. -type DescribeAccountAttributesInput struct { - _ struct{} `type:"structure"` - - // One or more account attribute names. - AttributeNames []*string `locationName:"attributeName" locationNameList:"attributeName" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s DescribeAccountAttributesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeAccountAttributesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeAccountAttributes. -type DescribeAccountAttributesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more account attributes. - AccountAttributes []*AccountAttribute `locationName:"accountAttributeSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeAccountAttributesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeAccountAttributesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeAddresses. -type DescribeAddressesInput struct { - _ struct{} `type:"structure"` - - // [EC2-VPC] One or more allocation IDs. - // - // Default: Describes all your Elastic IP addresses. - AllocationIds []*string `locationName:"AllocationId" locationNameList:"AllocationId" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. Filter names and values are case-sensitive. - // - // allocation-id - [EC2-VPC] The allocation ID for the address. - // - // association-id - [EC2-VPC] The association ID for the address. - // - // domain - Indicates whether the address is for use in EC2-Classic (standard) - // or in a VPC (vpc). - // - // instance-id - The ID of the instance the address is associated with, - // if any. - // - // network-interface-id - [EC2-VPC] The ID of the network interface that - // the address is associated with, if any. - // - // network-interface-owner-id - The AWS account ID of the owner. - // - // private-ip-address - [EC2-VPC] The private IP address associated with - // the Elastic IP address. - // - // public-ip - The Elastic IP address. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // [EC2-Classic] One or more Elastic IP addresses. - // - // Default: Describes all your Elastic IP addresses. - PublicIps []*string `locationName:"PublicIp" locationNameList:"PublicIp" type:"list"` -} - -// String returns the string representation -func (s DescribeAddressesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeAddressesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeAddresses. -type DescribeAddressesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more Elastic IP addresses. - Addresses []*Address `locationName:"addressesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeAddressesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeAddressesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeAvailabilityZones. -type DescribeAvailabilityZonesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // message - Information about the Availability Zone. - // - // region-name - The name of the region for the Availability Zone (for example, - // us-east-1). - // - // state - The state of the Availability Zone (available | information | - // impaired | unavailable). - // - // zone-name - The name of the Availability Zone (for example, us-east-1a). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The names of one or more Availability Zones. - ZoneNames []*string `locationName:"ZoneName" locationNameList:"ZoneName" type:"list"` -} - -// String returns the string representation -func (s DescribeAvailabilityZonesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeAvailabilityZonesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeAvailabiltyZones. -type DescribeAvailabilityZonesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more Availability Zones. - AvailabilityZones []*AvailabilityZone `locationName:"availabilityZoneInfo" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeAvailabilityZonesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeAvailabilityZonesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeBundleTasks. -type DescribeBundleTasksInput struct { - _ struct{} `type:"structure"` - - // One or more bundle task IDs. - // - // Default: Describes all your bundle tasks. - BundleIds []*string `locationName:"BundleId" locationNameList:"BundleId" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // bundle-id - The ID of the bundle task. - // - // error-code - If the task failed, the error code returned. - // - // error-message - If the task failed, the error message returned. - // - // instance-id - The ID of the instance. - // - // progress - The level of task completion, as a percentage (for example, - // 20%). - // - // s3-bucket - The Amazon S3 bucket to store the AMI. - // - // s3-prefix - The beginning of the AMI name. - // - // start-time - The time the task started (for example, 2013-09-15T17:15:20.000Z). - // - // state - The state of the task (pending | waiting-for-shutdown | bundling - // | storing | cancelling | complete | failed). - // - // update-time - The time of the most recent update for the task. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` -} - -// String returns the string representation -func (s DescribeBundleTasksInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeBundleTasksInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeBundleTasks. -type DescribeBundleTasksOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more bundle tasks. - BundleTasks []*BundleTask `locationName:"bundleInstanceTasksSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeBundleTasksOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeBundleTasksOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeClassicLinkInstances. -type DescribeClassicLinkInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // group-id - The ID of a VPC security group that's associated with the - // instance. - // - // instance-id - The ID of the instance. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // vpc-id - The ID of the VPC that the instance is linked to. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more instance IDs. Must be instances linked to a VPC through ClassicLink. - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list"` - - // The maximum number of results to return for the request in a single page. - // The remaining results of the initial request can be seen by sending another - // request with the returned NextToken value. This value can be between 5 and - // 1000; if MaxResults is given a value larger than 1000, only 1000 results - // are returned. You cannot specify this parameter and the instance IDs parameter - // in the same request. - // - // Constraint: If the value is greater than 1000, we return only 1000 items. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token to retrieve the next page of results. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeClassicLinkInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeClassicLinkInstancesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeClassicLinkInstances. -type DescribeClassicLinkInstancesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more linked EC2-Classic instances. - Instances []*ClassicLinkInstance `locationName:"instancesSet" locationNameList:"item" type:"list"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeClassicLinkInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeClassicLinkInstancesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeConversionTasks. -type DescribeConversionTasksInput struct { - _ struct{} `type:"structure"` - - // One or more conversion task IDs. - ConversionTaskIds []*string `locationName:"conversionTaskId" locationNameList:"item" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s DescribeConversionTasksInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeConversionTasksInput) GoString() string { - return s.String() -} - -// Contains the output for DescribeConversionTasks. -type DescribeConversionTasksOutput struct { - _ struct{} `type:"structure"` - - // Information about the conversion tasks. - ConversionTasks []*ConversionTask `locationName:"conversionTasks" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeConversionTasksOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeConversionTasksOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeCustomerGateways. -type DescribeCustomerGatewaysInput struct { - _ struct{} `type:"structure"` - - // One or more customer gateway IDs. - // - // Default: Describes all your customer gateways. - CustomerGatewayIds []*string `locationName:"CustomerGatewayId" locationNameList:"CustomerGatewayId" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // bgp-asn - The customer gateway's Border Gateway Protocol (BGP) Autonomous - // System Number (ASN). - // - // customer-gateway-id - The ID of the customer gateway. - // - // ip-address - The IP address of the customer gateway's Internet-routable - // external interface. - // - // state - The state of the customer gateway (pending | available | deleting - // | deleted). - // - // type - The type of customer gateway. Currently, the only supported type - // is ipsec.1. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` -} - -// String returns the string representation -func (s DescribeCustomerGatewaysInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeCustomerGatewaysInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeCustomerGateways. -type DescribeCustomerGatewaysOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more customer gateways. - CustomerGateways []*CustomerGateway `locationName:"customerGatewaySet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeCustomerGatewaysOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeCustomerGatewaysOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeDhcpOptions. -type DescribeDhcpOptionsInput struct { - _ struct{} `type:"structure"` - - // The IDs of one or more DHCP options sets. - // - // Default: Describes all your DHCP options sets. - DhcpOptionsIds []*string `locationName:"DhcpOptionsId" locationNameList:"DhcpOptionsId" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // dhcp-options-id - The ID of a set of DHCP options. - // - // key - The key for one of the options (for example, domain-name). - // - // value - The value for one of the options. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` -} - -// String returns the string representation -func (s DescribeDhcpOptionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeDhcpOptionsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeDhcpOptions. -type DescribeDhcpOptionsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more DHCP options sets. - DhcpOptions []*DhcpOptions `locationName:"dhcpOptionsSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeDhcpOptionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeDhcpOptionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeExportTasks. -type DescribeExportTasksInput struct { - _ struct{} `type:"structure"` - - // One or more export task IDs. - ExportTaskIds []*string `locationName:"exportTaskId" locationNameList:"ExportTaskId" type:"list"` -} - -// String returns the string representation -func (s DescribeExportTasksInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeExportTasksInput) GoString() string { - return s.String() -} - -// Contains the output for DescribeExportTasks. -type DescribeExportTasksOutput struct { - _ struct{} `type:"structure"` - - // Information about the export tasks. - ExportTasks []*ExportTask `locationName:"exportTaskSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeExportTasksOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeExportTasksOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeFlowLogs. -type DescribeFlowLogsInput struct { - _ struct{} `type:"structure"` - - // One or more filters. - // - // deliver-log-status - The status of the logs delivery (SUCCESS | FAILED). - // - // flow-log-id - The ID of the flow log. - // - // log-group-name - The name of the log group. - // - // resource-id - The ID of the VPC, subnet, or network interface. - // - // traffic-type - The type of traffic (ACCEPT | REJECT | ALL) - Filter []*Filter `locationNameList:"Filter" type:"list"` - - // One or more flow log IDs. - FlowLogIds []*string `locationName:"FlowLogId" locationNameList:"item" type:"list"` - - // The maximum number of results to return for the request in a single page. - // The remaining results can be seen by sending another request with the returned - // NextToken value. This value can be between 5 and 1000; if MaxResults is given - // a value larger than 1000, only 1000 results are returned. You cannot specify - // this parameter and the flow log IDs parameter in the same request. - MaxResults *int64 `type:"integer"` - - // The token to retrieve the next page of results. - NextToken *string `type:"string"` -} - -// String returns the string representation -func (s DescribeFlowLogsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeFlowLogsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeFlowLogs. -type DescribeFlowLogsOutput struct { - _ struct{} `type:"structure"` - - // Information about the flow logs. - FlowLogs []*FlowLog `locationName:"flowLogSet" locationNameList:"item" type:"list"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeFlowLogsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeFlowLogsOutput) GoString() string { - return s.String() -} - -type DescribeHostReservationOfferingsInput struct { - _ struct{} `type:"structure"` - - // One or more filters. - // - // instance-family - The instance family of the offering (e.g., m4). - // - // payment-option - The payment option (No Upfront | Partial Upfront | All - // Upfront). - Filter []*Filter `locationNameList:"Filter" type:"list"` - - // This is the maximum duration of the reservation you'd like to purchase, specified - // in seconds. Reservations are available in one-year and three-year terms. - // The number of seconds specified must be the number of seconds in a year (365x24x60x60) - // times one of the supported durations (1 or 3). For example, specify 94608000 - // for three years. - MaxDuration *int64 `type:"integer"` - - // The maximum number of results to return for the request in a single page. - // The remaining results can be seen by sending another request with the returned - // nextToken value. This value can be between 5 and 500; if maxResults is given - // a larger value than 500, you will receive an error. - MaxResults *int64 `type:"integer"` - - // This is the minimum duration of the reservation you'd like to purchase, specified - // in seconds. Reservations are available in one-year and three-year terms. - // The number of seconds specified must be the number of seconds in a year (365x24x60x60) - // times one of the supported durations (1 or 3). For example, specify 31536000 - // for one year. - MinDuration *int64 `type:"integer"` - - // The token to use to retrieve the next page of results. - NextToken *string `type:"string"` - - // The ID of the reservation offering. - OfferingId *string `type:"string"` -} - -// String returns the string representation -func (s DescribeHostReservationOfferingsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeHostReservationOfferingsInput) GoString() string { - return s.String() -} - -type DescribeHostReservationOfferingsOutput struct { - _ struct{} `type:"structure"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the offerings. - OfferingSet []*HostOffering `locationName:"offeringSet" type:"list"` -} - -// String returns the string representation -func (s DescribeHostReservationOfferingsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeHostReservationOfferingsOutput) GoString() string { - return s.String() -} - -type DescribeHostReservationsInput struct { - _ struct{} `type:"structure"` - - // One or more filters. - // - // instance-family - The instance family (e.g., m4). - // - // payment-option - The payment option (No Upfront | Partial Upfront | All - // Upfront). - // - // state - The state of the reservation (payment-pending | payment-failed - // | active | retired). - Filter []*Filter `locationNameList:"Filter" type:"list"` - - // One or more host reservation IDs. - HostReservationIdSet []*string `locationNameList:"item" type:"list"` - - // The maximum number of results to return for the request in a single page. - // The remaining results can be seen by sending another request with the returned - // nextToken value. This value can be between 5 and 500; if maxResults is given - // a larger value than 500, you will receive an error. - MaxResults *int64 `type:"integer"` - - // The token to use to retrieve the next page of results. - NextToken *string `type:"string"` -} - -// String returns the string representation -func (s DescribeHostReservationsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeHostReservationsInput) GoString() string { - return s.String() -} - -type DescribeHostReservationsOutput struct { - _ struct{} `type:"structure"` - - // Details about the reservation's configuration. - HostReservationSet []*HostReservation `locationName:"hostReservationSet" type:"list"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeHostReservationsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeHostReservationsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeHosts. -type DescribeHostsInput struct { - _ struct{} `type:"structure"` - - // One or more filters. - // - // instance-type - The instance type size that the Dedicated Host is configured - // to support. - // - // auto-placement - Whether auto-placement is enabled or disabled (on | - // off). - // - // host-reservation-id - The ID of the reservation assigned to this host. - // - // client-token - The idempotency token you provided when you launched the - // instance - // - // state- The allocation state of the Dedicated Host (available | under-assessment - // | permanent-failure | released | released-permanent-failure). - // - // availability-zone - The Availability Zone of the host. - Filter []*Filter `locationName:"filter" locationNameList:"Filter" type:"list"` - - // The IDs of the Dedicated Hosts. The IDs are used for targeted instance launches. - HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list"` - - // The maximum number of results to return for the request in a single page. - // The remaining results can be seen by sending another request with the returned - // nextToken value. This value can be between 5 and 500; if maxResults is given - // a larger value than 500, you will receive an error. You cannot specify this - // parameter and the host IDs parameter in the same request. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token to retrieve the next page of results. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeHostsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeHostsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeHosts. -type DescribeHostsOutput struct { - _ struct{} `type:"structure"` - - // Information about the Dedicated Hosts. - Hosts []*Host `locationName:"hostSet" locationNameList:"item" type:"list"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeHostsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeHostsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeIdFormat. -type DescribeIdFormatInput struct { - _ struct{} `type:"structure"` - - // The type of resource: instance | reservation | snapshot | volume - Resource *string `type:"string"` -} - -// String returns the string representation -func (s DescribeIdFormatInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeIdFormatInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeIdFormat. -type DescribeIdFormatOutput struct { - _ struct{} `type:"structure"` - - // Information about the ID format for the resource. - Statuses []*IdFormat `locationName:"statusSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeIdFormatOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeIdFormatOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeIdentityIdFormat. -type DescribeIdentityIdFormatInput struct { - _ struct{} `type:"structure"` - - // The ARN of the principal, which can be an IAM role, IAM user, or the root - // user. - // - // PrincipalArn is a required field - PrincipalArn *string `locationName:"principalArn" type:"string" required:"true"` - - // The type of resource: instance | reservation | snapshot | volume - Resource *string `locationName:"resource" type:"string"` -} - -// String returns the string representation -func (s DescribeIdentityIdFormatInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeIdentityIdFormatInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeIdentityIdFormatInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeIdentityIdFormatInput"} - if s.PrincipalArn == nil { - invalidParams.Add(request.NewErrParamRequired("PrincipalArn")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeIdentityIdFormat. -type DescribeIdentityIdFormatOutput struct { - _ struct{} `type:"structure"` - - // Information about the ID format for the resources. - Statuses []*IdFormat `locationName:"statusSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeIdentityIdFormatOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeIdentityIdFormatOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeImageAttribute. -type DescribeImageAttributeInput struct { - _ struct{} `type:"structure"` - - // The AMI attribute. - // - // Note: Depending on your account privileges, the blockDeviceMapping attribute - // may return a Client.AuthFailure error. If this happens, use DescribeImages - // to get information about the block device mapping for the AMI. - // - // Attribute is a required field - Attribute *string `type:"string" required:"true" enum:"ImageAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the AMI. - // - // ImageId is a required field - ImageId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeImageAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImageAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeImageAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeImageAttributeInput"} - if s.Attribute == nil { - invalidParams.Add(request.NewErrParamRequired("Attribute")) - } - if s.ImageId == nil { - invalidParams.Add(request.NewErrParamRequired("ImageId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes an image attribute. -type DescribeImageAttributeOutput struct { - _ struct{} `type:"structure"` - - // One or more block device mapping entries. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // A description for the AMI. - Description *AttributeValue `locationName:"description" type:"structure"` - - // The ID of the AMI. - ImageId *string `locationName:"imageId" type:"string"` - - // The kernel ID. - KernelId *AttributeValue `locationName:"kernel" type:"structure"` - - // One or more launch permissions. - LaunchPermissions []*LaunchPermission `locationName:"launchPermission" locationNameList:"item" type:"list"` - - // One or more product codes. - ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"` - - // The RAM disk ID. - RamdiskId *AttributeValue `locationName:"ramdisk" type:"structure"` - - // Indicates whether enhanced networking with the Intel 82599 Virtual Function - // interface is enabled. - SriovNetSupport *AttributeValue `locationName:"sriovNetSupport" type:"structure"` -} - -// String returns the string representation -func (s DescribeImageAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImageAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeImages. -type DescribeImagesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Scopes the images by users with explicit launch permissions. Specify an AWS - // account ID, self (the sender of the request), or all (public AMIs). - ExecutableUsers []*string `locationName:"ExecutableBy" locationNameList:"ExecutableBy" type:"list"` - - // One or more filters. - // - // architecture - The image architecture (i386 | x86_64). - // - // block-device-mapping.delete-on-termination - A Boolean value that indicates - // whether the Amazon EBS volume is deleted on instance termination. - // - // block-device-mapping.device-name - The device name for the EBS volume - // (for example, /dev/sdh). - // - // block-device-mapping.snapshot-id - The ID of the snapshot used for the - // EBS volume. - // - // block-device-mapping.volume-size - The volume size of the EBS volume, - // in GiB. - // - // block-device-mapping.volume-type - The volume type of the EBS volume - // (gp2 | io1 | st1 | sc1 | standard). - // - // description - The description of the image (provided during image creation). - // - // hypervisor - The hypervisor type (ovm | xen). - // - // image-id - The ID of the image. - // - // image-type - The image type (machine | kernel | ramdisk). - // - // is-public - A Boolean that indicates whether the image is public. - // - // kernel-id - The kernel ID. - // - // manifest-location - The location of the image manifest. - // - // name - The name of the AMI (provided during image creation). - // - // owner-alias - String value from an Amazon-maintained list (amazon | aws-marketplace - // | microsoft) of snapshot owners. Not to be confused with the user-configured - // AWS account alias, which is set from the IAM console. - // - // owner-id - The AWS account ID of the image owner. - // - // platform - The platform. To only list Windows-based AMIs, use windows. - // - // product-code - The product code. - // - // product-code.type - The type of the product code (devpay | marketplace). - // - // ramdisk-id - The RAM disk ID. - // - // root-device-name - The name of the root device volume (for example, /dev/sda1). - // - // root-device-type - The type of the root device volume (ebs | instance-store). - // - // state - The state of the image (available | pending | failed). - // - // state-reason-code - The reason code for the state change. - // - // state-reason-message - The message for the state change. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // virtualization-type - The virtualization type (paravirtual | hvm). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more image IDs. - // - // Default: Describes all images available to you. - ImageIds []*string `locationName:"ImageId" locationNameList:"ImageId" type:"list"` - - // Filters the images by the owner. Specify an AWS account ID, self (owner is - // the sender of the request), or an AWS owner alias (valid values are amazon - // | aws-marketplace | microsoft). Omitting this option returns all images for - // which you have launch permissions, regardless of ownership. - Owners []*string `locationName:"Owner" locationNameList:"Owner" type:"list"` -} - -// String returns the string representation -func (s DescribeImagesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImagesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeImages. -type DescribeImagesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more images. - Images []*Image `locationName:"imagesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeImagesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImagesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeImportImageTasks. -type DescribeImportImageTasksInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // Filter tasks using the task-state filter and one of the following values: - // active, completed, deleting, deleted. - Filters []*Filter `locationNameList:"Filter" type:"list"` - - // A list of import image task IDs. - ImportTaskIds []*string `locationName:"ImportTaskId" locationNameList:"ImportTaskId" type:"list"` - - // The maximum number of results to return in a single call. To retrieve the - // remaining results, make another call with the returned NextToken value. - MaxResults *int64 `type:"integer"` - - // A token that indicates the next page of results. - NextToken *string `type:"string"` -} - -// String returns the string representation -func (s DescribeImportImageTasksInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImportImageTasksInput) GoString() string { - return s.String() -} - -// Contains the output for DescribeImportImageTasks. -type DescribeImportImageTasksOutput struct { - _ struct{} `type:"structure"` - - // A list of zero or more import image tasks that are currently active or were - // completed or canceled in the previous 7 days. - ImportImageTasks []*ImportImageTask `locationName:"importImageTaskSet" locationNameList:"item" type:"list"` - - // The token to use to get the next page of results. This value is null when - // there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeImportImageTasksOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImportImageTasksOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeImportSnapshotTasks. -type DescribeImportSnapshotTasksInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more filters. - Filters []*Filter `locationNameList:"Filter" type:"list"` - - // A list of import snapshot task IDs. - ImportTaskIds []*string `locationName:"ImportTaskId" locationNameList:"ImportTaskId" type:"list"` - - // The maximum number of results to return in a single call. To retrieve the - // remaining results, make another call with the returned NextToken value. - MaxResults *int64 `type:"integer"` - - // A token that indicates the next page of results. - NextToken *string `type:"string"` -} - -// String returns the string representation -func (s DescribeImportSnapshotTasksInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImportSnapshotTasksInput) GoString() string { - return s.String() -} - -// Contains the output for DescribeImportSnapshotTasks. -type DescribeImportSnapshotTasksOutput struct { - _ struct{} `type:"structure"` - - // A list of zero or more import snapshot tasks that are currently active or - // were completed or canceled in the previous 7 days. - ImportSnapshotTasks []*ImportSnapshotTask `locationName:"importSnapshotTaskSet" locationNameList:"item" type:"list"` - - // The token to use to get the next page of results. This value is null when - // there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeImportSnapshotTasksOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeImportSnapshotTasksOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeInstanceAttribute. -type DescribeInstanceAttributeInput struct { - _ struct{} `type:"structure"` - - // The instance attribute. - // - // Note: The enaSupport attribute is not supported at this time. - // - // Attribute is a required field - Attribute *string `locationName:"attribute" type:"string" required:"true" enum:"InstanceAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeInstanceAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInstanceAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeInstanceAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeInstanceAttributeInput"} - if s.Attribute == nil { - invalidParams.Add(request.NewErrParamRequired("Attribute")) - } - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes an instance attribute. -type DescribeInstanceAttributeOutput struct { - _ struct{} `type:"structure"` - - // The block device mapping of the instance. - BlockDeviceMappings []*InstanceBlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // If the value is true, you can't terminate the instance through the Amazon - // EC2 console, CLI, or API; otherwise, you can. - DisableApiTermination *AttributeBooleanValue `locationName:"disableApiTermination" type:"structure"` - - // Indicates whether the instance is optimized for EBS I/O. - EbsOptimized *AttributeBooleanValue `locationName:"ebsOptimized" type:"structure"` - - // Indicates whether enhanced networking with ENA is enabled. - EnaSupport *AttributeBooleanValue `locationName:"enaSupport" type:"structure"` - - // The security groups associated with the instance. - Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // Indicates whether an instance stops or terminates when you initiate shutdown - // from the instance (using the operating system command for system shutdown). - InstanceInitiatedShutdownBehavior *AttributeValue `locationName:"instanceInitiatedShutdownBehavior" type:"structure"` - - // The instance type. - InstanceType *AttributeValue `locationName:"instanceType" type:"structure"` - - // The kernel ID. - KernelId *AttributeValue `locationName:"kernel" type:"structure"` - - // A list of product codes. - ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"` - - // The RAM disk ID. - RamdiskId *AttributeValue `locationName:"ramdisk" type:"structure"` - - // The name of the root device (for example, /dev/sda1 or /dev/xvda). - RootDeviceName *AttributeValue `locationName:"rootDeviceName" type:"structure"` - - // Indicates whether source/destination checking is enabled. A value of true - // means checking is enabled, and false means checking is disabled. This value - // must be false for a NAT instance to perform NAT. - SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"` - - // Indicates whether enhanced networking with the Intel 82599 Virtual Function - // interface is enabled. - SriovNetSupport *AttributeValue `locationName:"sriovNetSupport" type:"structure"` - - // The user data. - UserData *AttributeValue `locationName:"userData" type:"structure"` -} - -// String returns the string representation -func (s DescribeInstanceAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInstanceAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeInstanceStatus. -type DescribeInstanceStatusInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // availability-zone - The Availability Zone of the instance. - // - // event.code - The code for the scheduled event (instance-reboot | system-reboot - // | system-maintenance | instance-retirement | instance-stop). - // - // event.description - A description of the event. - // - // event.not-after - The latest end time for the scheduled event (for example, - // 2014-09-15T17:15:20.000Z). - // - // event.not-before - The earliest start time for the scheduled event (for - // example, 2014-09-15T17:15:20.000Z). - // - // instance-state-code - The code for the instance state, as a 16-bit unsigned - // integer. The high byte is an opaque internal value and should be ignored. - // The low byte is set based on the state represented. The valid values are - // 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), - // and 80 (stopped). - // - // instance-state-name - The state of the instance (pending | running | - // shutting-down | terminated | stopping | stopped). - // - // instance-status.reachability - Filters on instance status where the name - // is reachability (passed | failed | initializing | insufficient-data). - // - // instance-status.status - The status of the instance (ok | impaired | - // initializing | insufficient-data | not-applicable). - // - // system-status.reachability - Filters on system status where the name - // is reachability (passed | failed | initializing | insufficient-data). - // - // system-status.status - The system status of the instance (ok | impaired - // | initializing | insufficient-data | not-applicable). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // When true, includes the health status for all instances. When false, includes - // the health status for running instances only. - // - // Default: false - IncludeAllInstances *bool `locationName:"includeAllInstances" type:"boolean"` - - // One or more instance IDs. - // - // Default: Describes all your instances. - // - // Constraints: Maximum 100 explicitly specified instance IDs. - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list"` - - // The maximum number of results to return in a single call. To retrieve the - // remaining results, make another call with the returned NextToken value. This - // value can be between 5 and 1000. You cannot specify this parameter and the - // instance IDs parameter in the same call. - MaxResults *int64 `type:"integer"` - - // The token to retrieve the next page of results. - NextToken *string `type:"string"` -} - -// String returns the string representation -func (s DescribeInstanceStatusInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInstanceStatusInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeInstanceStatus. -type DescribeInstanceStatusOutput struct { - _ struct{} `type:"structure"` - - // One or more instance status descriptions. - InstanceStatuses []*InstanceStatus `locationName:"instanceStatusSet" locationNameList:"item" type:"list"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeInstanceStatusOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInstanceStatusOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeInstances. -type DescribeInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // affinity - The affinity setting for an instance running on a Dedicated - // Host (default | host). - // - // architecture - The instance architecture (i386 | x86_64). - // - // availability-zone - The Availability Zone of the instance. - // - // block-device-mapping.attach-time - The attach time for an EBS volume - // mapped to the instance, for example, 2010-09-15T17:15:20.000Z. - // - // block-device-mapping.delete-on-termination - A Boolean that indicates - // whether the EBS volume is deleted on instance termination. - // - // block-device-mapping.device-name - The device name for the EBS volume - // (for example, /dev/sdh or xvdh). - // - // block-device-mapping.status - The status for the EBS volume (attaching - // | attached | detaching | detached). - // - // block-device-mapping.volume-id - The volume ID of the EBS volume. - // - // client-token - The idempotency token you provided when you launched the - // instance. - // - // dns-name - The public DNS name of the instance. - // - // group-id - The ID of the security group for the instance. EC2-Classic - // only. - // - // group-name - The name of the security group for the instance. EC2-Classic - // only. - // - // host-id - The ID of the Dedicated Host on which the instance is running, - // if applicable. - // - // hypervisor - The hypervisor type of the instance (ovm | xen). - // - // iam-instance-profile.arn - The instance profile associated with the instance. - // Specified as an ARN. - // - // image-id - The ID of the image used to launch the instance. - // - // instance-id - The ID of the instance. - // - // instance-lifecycle - Indicates whether this is a Spot Instance or a Scheduled - // Instance (spot | scheduled). - // - // instance-state-code - The state of the instance, as a 16-bit unsigned - // integer. The high byte is an opaque internal value and should be ignored. - // The low byte is set based on the state represented. The valid values are: - // 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), - // and 80 (stopped). - // - // instance-state-name - The state of the instance (pending | running | - // shutting-down | terminated | stopping | stopped). - // - // instance-type - The type of instance (for example, t2.micro). - // - // instance.group-id - The ID of the security group for the instance. - // - // instance.group-name - The name of the security group for the instance. - // - // ip-address - The public IP address of the instance. - // - // kernel-id - The kernel ID. - // - // key-name - The name of the key pair used when the instance was launched. - // - // launch-index - When launching multiple instances, this is the index for - // the instance in the launch group (for example, 0, 1, 2, and so on). - // - // launch-time - The time when the instance was launched. - // - // monitoring-state - Indicates whether monitoring is enabled for the instance - // (disabled | enabled). - // - // owner-id - The AWS account ID of the instance owner. - // - // placement-group-name - The name of the placement group for the instance. - // - // platform - The platform. Use windows if you have Windows instances; otherwise, - // leave blank. - // - // private-dns-name - The private DNS name of the instance. - // - // private-ip-address - The private IP address of the instance. - // - // product-code - The product code associated with the AMI used to launch - // the instance. - // - // product-code.type - The type of product code (devpay | marketplace). - // - // ramdisk-id - The RAM disk ID. - // - // reason - The reason for the current state of the instance (for example, - // shows "User Initiated [date]" when you stop or terminate the instance). Similar - // to the state-reason-code filter. - // - // requester-id - The ID of the entity that launched the instance on your - // behalf (for example, AWS Management Console, Auto Scaling, and so on). - // - // reservation-id - The ID of the instance's reservation. A reservation - // ID is created any time you launch an instance. A reservation ID has a one-to-one - // relationship with an instance launch request, but can be associated with - // more than one instance if you launch multiple instances using the same launch - // request. For example, if you launch one instance, you'll get one reservation - // ID. If you launch ten instances using the same launch request, you'll also - // get one reservation ID. - // - // root-device-name - The name of the root device for the instance (for - // example, /dev/sda1 or /dev/xvda). - // - // root-device-type - The type of root device that the instance uses (ebs - // | instance-store). - // - // source-dest-check - Indicates whether the instance performs source/destination - // checking. A value of true means that checking is enabled, and false means - // checking is disabled. The value must be false for the instance to perform - // network address translation (NAT) in your VPC. - // - // spot-instance-request-id - The ID of the Spot instance request. - // - // state-reason-code - The reason code for the state change. - // - // state-reason-message - A message that describes the state change. - // - // subnet-id - The ID of the subnet for the instance. - // - // tag:key=value - The key/value combination of a tag assigned to the resource, - // where tag:key is the tag's key. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // tenancy - The tenancy of an instance (dedicated | default | host). - // - // virtualization-type - The virtualization type of the instance (paravirtual - // | hvm). - // - // vpc-id - The ID of the VPC that the instance is running in. - // - // network-interface.description - The description of the network interface. - // - // network-interface.subnet-id - The ID of the subnet for the network interface. - // - // network-interface.vpc-id - The ID of the VPC for the network interface. - // - // network-interface.network-interface-id - The ID of the network interface. - // - // network-interface.owner-id - The ID of the owner of the network interface. - // - // network-interface.availability-zone - The Availability Zone for the network - // interface. - // - // network-interface.requester-id - The requester ID for the network interface. - // - // network-interface.requester-managed - Indicates whether the network interface - // is being managed by AWS. - // - // network-interface.status - The status of the network interface (available) - // | in-use). - // - // network-interface.mac-address - The MAC address of the network interface. - // - // network-interface.private-dns-name - The private DNS name of the network - // interface. - // - // network-interface.source-dest-check - Whether the network interface performs - // source/destination checking. A value of true means checking is enabled, and - // false means checking is disabled. The value must be false for the network - // interface to perform network address translation (NAT) in your VPC. - // - // network-interface.group-id - The ID of a security group associated with - // the network interface. - // - // network-interface.group-name - The name of a security group associated - // with the network interface. - // - // network-interface.attachment.attachment-id - The ID of the interface - // attachment. - // - // network-interface.attachment.instance-id - The ID of the instance to - // which the network interface is attached. - // - // network-interface.attachment.instance-owner-id - The owner ID of the - // instance to which the network interface is attached. - // - // network-interface.addresses.private-ip-address - The private IP address - // associated with the network interface. - // - // network-interface.attachment.device-index - The device index to which - // the network interface is attached. - // - // network-interface.attachment.status - The status of the attachment (attaching - // | attached | detaching | detached). - // - // network-interface.attachment.attach-time - The time that the network - // interface was attached to an instance. - // - // network-interface.attachment.delete-on-termination - Specifies whether - // the attachment is deleted when an instance is terminated. - // - // network-interface.addresses.primary - Specifies whether the IP address - // of the network interface is the primary private IP address. - // - // network-interface.addresses.association.public-ip - The ID of the association - // of an Elastic IP address with a network interface. - // - // network-interface.addresses.association.ip-owner-id - The owner ID of - // the private IP address associated with the network interface. - // - // association.public-ip - The address of the Elastic IP address bound to - // the network interface. - // - // association.ip-owner-id - The owner of the Elastic IP address associated - // with the network interface. - // - // association.allocation-id - The allocation ID returned when you allocated - // the Elastic IP address for your network interface. - // - // association.association-id - The association ID returned when the network - // interface was associated with an IP address. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more instance IDs. - // - // Default: Describes all your instances. - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list"` - - // The maximum number of results to return in a single call. To retrieve the - // remaining results, make another call with the returned NextToken value. This - // value can be between 5 and 1000. You cannot specify this parameter and the - // instance IDs parameter or tag filters in the same call. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token to request the next page of results. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInstancesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeInstances. -type DescribeInstancesOutput struct { - _ struct{} `type:"structure"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // Zero or more reservations. - Reservations []*Reservation `locationName:"reservationSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInstancesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeInternetGateways. -type DescribeInternetGatewaysInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // attachment.state - The current state of the attachment between the gateway - // and the VPC (available). Present only if a VPC is attached. - // - // attachment.vpc-id - The ID of an attached VPC. - // - // internet-gateway-id - The ID of the Internet gateway. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more Internet gateway IDs. - // - // Default: Describes all your Internet gateways. - InternetGatewayIds []*string `locationName:"internetGatewayId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeInternetGatewaysInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInternetGatewaysInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeInternetGateways. -type DescribeInternetGatewaysOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more Internet gateways. - InternetGateways []*InternetGateway `locationName:"internetGatewaySet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeInternetGatewaysOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeInternetGatewaysOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeKeyPairs. -type DescribeKeyPairsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // fingerprint - The fingerprint of the key pair. - // - // key-name - The name of the key pair. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more key pair names. - // - // Default: Describes all your key pairs. - KeyNames []*string `locationName:"KeyName" locationNameList:"KeyName" type:"list"` -} - -// String returns the string representation -func (s DescribeKeyPairsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeKeyPairsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeKeyPairs. -type DescribeKeyPairsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more key pairs. - KeyPairs []*KeyPairInfo `locationName:"keySet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeKeyPairsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeKeyPairsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeMovingAddresses. -type DescribeMovingAddressesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // moving-status - The status of the Elastic IP address (MovingToVpc | RestoringToClassic). - Filters []*Filter `locationName:"filter" locationNameList:"Filter" type:"list"` - - // The maximum number of results to return for the request in a single page. - // The remaining results of the initial request can be seen by sending another - // request with the returned NextToken value. This value can be between 5 and - // 1000; if MaxResults is given a value outside of this range, an error is returned. - // - // Default: If no value is provided, the default is 1000. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token to use to retrieve the next page of results. - NextToken *string `locationName:"nextToken" type:"string"` - - // One or more Elastic IP addresses. - PublicIps []*string `locationName:"publicIp" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeMovingAddressesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeMovingAddressesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeMovingAddresses. -type DescribeMovingAddressesOutput struct { - _ struct{} `type:"structure"` - - // The status for each Elastic IP address. - MovingAddressStatuses []*MovingAddressStatus `locationName:"movingAddressStatusSet" locationNameList:"item" type:"list"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeMovingAddressesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeMovingAddressesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeNatGateways. -type DescribeNatGatewaysInput struct { - _ struct{} `type:"structure"` - - // One or more filters. - // - // nat-gateway-id - The ID of the NAT gateway. - // - // state - The state of the NAT gateway (pending | failed | available | - // deleting | deleted). - // - // subnet-id - The ID of the subnet in which the NAT gateway resides. - // - // vpc-id - The ID of the VPC in which the NAT gateway resides. - Filter []*Filter `locationNameList:"Filter" type:"list"` - - // The maximum number of items to return for this request. The request returns - // a token that you can specify in a subsequent call to get the next set of - // results. - // - // Constraint: If the value specified is greater than 1000, we return only - // 1000 items. - MaxResults *int64 `type:"integer"` - - // One or more NAT gateway IDs. - NatGatewayIds []*string `locationName:"NatGatewayId" locationNameList:"item" type:"list"` - - // The token to retrieve the next page of results. - NextToken *string `type:"string"` -} - -// String returns the string representation -func (s DescribeNatGatewaysInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNatGatewaysInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeNatGateways. -type DescribeNatGatewaysOutput struct { - _ struct{} `type:"structure"` - - // Information about the NAT gateways. - NatGateways []*NatGateway `locationName:"natGatewaySet" locationNameList:"item" type:"list"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeNatGatewaysOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNatGatewaysOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeNetworkAcls. -type DescribeNetworkAclsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // association.association-id - The ID of an association ID for the ACL. - // - // association.network-acl-id - The ID of the network ACL involved in the - // association. - // - // association.subnet-id - The ID of the subnet involved in the association. - // - // default - Indicates whether the ACL is the default network ACL for the - // VPC. - // - // entry.cidr - The CIDR range specified in the entry. - // - // entry.egress - Indicates whether the entry applies to egress traffic. - // - // entry.icmp.code - The ICMP code specified in the entry, if any. - // - // entry.icmp.type - The ICMP type specified in the entry, if any. - // - // entry.port-range.from - The start of the port range specified in the - // entry. - // - // entry.port-range.to - The end of the port range specified in the entry. - // - // entry.protocol - The protocol specified in the entry (tcp | udp | icmp - // or a protocol number). - // - // entry.rule-action - Allows or denies the matching traffic (allow | deny). - // - // entry.rule-number - The number of an entry (in other words, rule) in - // the ACL's set of entries. - // - // network-acl-id - The ID of the network ACL. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // vpc-id - The ID of the VPC for the network ACL. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more network ACL IDs. - // - // Default: Describes all your network ACLs. - NetworkAclIds []*string `locationName:"NetworkAclId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeNetworkAclsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNetworkAclsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeNetworkAcls. -type DescribeNetworkAclsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more network ACLs. - NetworkAcls []*NetworkAcl `locationName:"networkAclSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeNetworkAclsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNetworkAclsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeNetworkInterfaceAttribute. -type DescribeNetworkInterfaceAttributeInput struct { - _ struct{} `type:"structure"` - - // The attribute of the network interface. - Attribute *string `locationName:"attribute" type:"string" enum:"NetworkInterfaceAttribute"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the network interface. - // - // NetworkInterfaceId is a required field - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeNetworkInterfaceAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNetworkInterfaceAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeNetworkInterfaceAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeNetworkInterfaceAttributeInput"} - if s.NetworkInterfaceId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkInterfaceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeNetworkInterfaceAttribute. -type DescribeNetworkInterfaceAttributeOutput struct { - _ struct{} `type:"structure"` - - // The attachment (if any) of the network interface. - Attachment *NetworkInterfaceAttachment `locationName:"attachment" type:"structure"` - - // The description of the network interface. - Description *AttributeValue `locationName:"description" type:"structure"` - - // The security groups associated with the network interface. - Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // The ID of the network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // Indicates whether source/destination checking is enabled. - SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"` -} - -// String returns the string representation -func (s DescribeNetworkInterfaceAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNetworkInterfaceAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeNetworkInterfaces. -type DescribeNetworkInterfacesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // addresses.private-ip-address - The private IP addresses associated with - // the network interface. - // - // addresses.primary - Whether the private IP address is the primary IP - // address associated with the network interface. - // - // addresses.association.public-ip - The association ID returned when the - // network interface was associated with the Elastic IP address. - // - // addresses.association.owner-id - The owner ID of the addresses associated - // with the network interface. - // - // association.association-id - The association ID returned when the network - // interface was associated with an IP address. - // - // association.allocation-id - The allocation ID returned when you allocated - // the Elastic IP address for your network interface. - // - // association.ip-owner-id - The owner of the Elastic IP address associated - // with the network interface. - // - // association.public-ip - The address of the Elastic IP address bound to - // the network interface. - // - // association.public-dns-name - The public DNS name for the network interface. - // - // attachment.attachment-id - The ID of the interface attachment. - // - // attachment.attach.time - The time that the network interface was attached - // to an instance. - // - // attachment.delete-on-termination - Indicates whether the attachment is - // deleted when an instance is terminated. - // - // attachment.device-index - The device index to which the network interface - // is attached. - // - // attachment.instance-id - The ID of the instance to which the network - // interface is attached. - // - // attachment.instance-owner-id - The owner ID of the instance to which - // the network interface is attached. - // - // attachment.nat-gateway-id - The ID of the NAT gateway to which the network - // interface is attached. - // - // attachment.status - The status of the attachment (attaching | attached - // | detaching | detached). - // - // availability-zone - The Availability Zone of the network interface. - // - // description - The description of the network interface. - // - // group-id - The ID of a security group associated with the network interface. - // - // group-name - The name of a security group associated with the network - // interface. - // - // mac-address - The MAC address of the network interface. - // - // network-interface-id - The ID of the network interface. - // - // owner-id - The AWS account ID of the network interface owner. - // - // private-ip-address - The private IP address or addresses of the network - // interface. - // - // private-dns-name - The private DNS name of the network interface. - // - // requester-id - The ID of the entity that launched the instance on your - // behalf (for example, AWS Management Console, Auto Scaling, and so on). - // - // requester-managed - Indicates whether the network interface is being - // managed by an AWS service (for example, AWS Management Console, Auto Scaling, - // and so on). - // - // source-desk-check - Indicates whether the network interface performs - // source/destination checking. A value of true means checking is enabled, and - // false means checking is disabled. The value must be false for the network - // interface to perform network address translation (NAT) in your VPC. - // - // status - The status of the network interface. If the network interface - // is not attached to an instance, the status is available; if a network interface - // is attached to an instance the status is in-use. - // - // subnet-id - The ID of the subnet for the network interface. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // vpc-id - The ID of the VPC for the network interface. - Filters []*Filter `locationName:"filter" locationNameList:"Filter" type:"list"` - - // One or more network interface IDs. - // - // Default: Describes all your network interfaces. - NetworkInterfaceIds []*string `locationName:"NetworkInterfaceId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeNetworkInterfacesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNetworkInterfacesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeNetworkInterfaces. -type DescribeNetworkInterfacesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more network interfaces. - NetworkInterfaces []*NetworkInterface `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeNetworkInterfacesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeNetworkInterfacesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribePlacementGroups. -type DescribePlacementGroupsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // group-name - The name of the placement group. - // - // state - The state of the placement group (pending | available | deleting - // | deleted). - // - // strategy - The strategy of the placement group (cluster). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more placement group names. - // - // Default: Describes all your placement groups, or only those otherwise specified. - GroupNames []*string `locationName:"groupName" type:"list"` -} - -// String returns the string representation -func (s DescribePlacementGroupsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribePlacementGroupsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribePlacementGroups. -type DescribePlacementGroupsOutput struct { - _ struct{} `type:"structure"` - - // One or more placement groups. - PlacementGroups []*PlacementGroup `locationName:"placementGroupSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribePlacementGroupsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribePlacementGroupsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribePrefixLists. -type DescribePrefixListsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more filters. - // - // prefix-list-id: The ID of a prefix list. - // - // prefix-list-name: The name of a prefix list. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The maximum number of items to return for this request. The request returns - // a token that you can specify in a subsequent call to get the next set of - // results. - // - // Constraint: If the value specified is greater than 1000, we return only - // 1000 items. - MaxResults *int64 `type:"integer"` - - // The token for the next set of items to return. (You received this token from - // a prior call.) - NextToken *string `type:"string"` - - // One or more prefix list IDs. - PrefixListIds []*string `locationName:"PrefixListId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribePrefixListsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribePrefixListsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribePrefixLists. -type DescribePrefixListsOutput struct { - _ struct{} `type:"structure"` - - // The token to use when requesting the next set of items. If there are no additional - // items to return, the string is empty. - NextToken *string `locationName:"nextToken" type:"string"` - - // All available prefix lists. - PrefixLists []*PrefixList `locationName:"prefixListSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribePrefixListsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribePrefixListsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeRegions. -type DescribeRegionsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // endpoint - The endpoint of the region (for example, ec2.us-east-1.amazonaws.com). - // - // region-name - The name of the region (for example, us-east-1). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The names of one or more regions. - RegionNames []*string `locationName:"RegionName" locationNameList:"RegionName" type:"list"` -} - -// String returns the string representation -func (s DescribeRegionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeRegionsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeRegions. -type DescribeRegionsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more regions. - Regions []*Region `locationName:"regionInfo" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeRegionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeRegionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeReservedInstances. -type DescribeReservedInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // availability-zone - The Availability Zone where the Reserved Instance - // can be used. - // - // duration - The duration of the Reserved Instance (one year or three years), - // in seconds (31536000 | 94608000). - // - // end - The time when the Reserved Instance expires (for example, 2015-08-07T11:54:42.000Z). - // - // fixed-price - The purchase price of the Reserved Instance (for example, - // 9800.0). - // - // instance-type - The instance type that is covered by the reservation. - // - // scope - The scope of the Reserved Instance (Region or Availability Zone). - // - // product-description - The Reserved Instance product platform description. - // Instances that include (Amazon VPC) in the product platform description will - // only be displayed to EC2-Classic account holders and are for use with Amazon - // VPC (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux | SUSE Linux (Amazon - // VPC) | Red Hat Enterprise Linux | Red Hat Enterprise Linux (Amazon VPC) | - // Windows | Windows (Amazon VPC) | Windows with SQL Server Standard | Windows - // with SQL Server Standard (Amazon VPC) | Windows with SQL Server Web | Windows - // with SQL Server Web (Amazon VPC) | Windows with SQL Server Enterprise | Windows - // with SQL Server Enterprise (Amazon VPC)). - // - // reserved-instances-id - The ID of the Reserved Instance. - // - // start - The time at which the Reserved Instance purchase request was - // placed (for example, 2014-08-07T11:54:42.000Z). - // - // state - The state of the Reserved Instance (payment-pending | active - // | payment-failed | retired). - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // usage-price - The usage price of the Reserved Instance, per hour (for - // example, 0.84). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // Describes whether the Reserved Instance is Standard or Convertible. - OfferingClass *string `type:"string" enum:"OfferingClassType"` - - // The Reserved Instance offering type. If you are using tools that predate - // the 2011-11-01 API version, you only have access to the Medium Utilization - // Reserved Instance offering type. - OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"` - - // One or more Reserved Instance IDs. - // - // Default: Describes all your Reserved Instances, or only those otherwise - // specified. - ReservedInstancesIds []*string `locationName:"ReservedInstancesId" locationNameList:"ReservedInstancesId" type:"list"` -} - -// String returns the string representation -func (s DescribeReservedInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesInput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeReservedInstancesListings. -type DescribeReservedInstancesListingsInput struct { - _ struct{} `type:"structure"` - - // One or more filters. - // - // reserved-instances-id - The ID of the Reserved Instances. - // - // reserved-instances-listing-id - The ID of the Reserved Instances listing. - // - // status - The status of the Reserved Instance listing (pending | active - // | cancelled | closed). - // - // status-message - The reason for the status. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more Reserved Instance IDs. - ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` - - // One or more Reserved Instance listing IDs. - ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string"` -} - -// String returns the string representation -func (s DescribeReservedInstancesListingsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesListingsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeReservedInstancesListings. -type DescribeReservedInstancesListingsOutput struct { - _ struct{} `type:"structure"` - - // Information about the Reserved Instance listing. - ReservedInstancesListings []*ReservedInstancesListing `locationName:"reservedInstancesListingsSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeReservedInstancesListingsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesListingsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeReservedInstancesModifications. -type DescribeReservedInstancesModificationsInput struct { - _ struct{} `type:"structure"` - - // One or more filters. - // - // client-token - The idempotency token for the modification request. - // - // create-date - The time when the modification request was created. - // - // effective-date - The time when the modification becomes effective. - // - // modification-result.reserved-instances-id - The ID for the Reserved Instances - // created as part of the modification request. This ID is only available when - // the status of the modification is fulfilled. - // - // modification-result.target-configuration.availability-zone - The Availability - // Zone for the new Reserved Instances. - // - // modification-result.target-configuration.instance-count - The number - // of new Reserved Instances. - // - // modification-result.target-configuration.instance-type - The instance - // type of the new Reserved Instances. - // - // modification-result.target-configuration.platform - The network platform - // of the new Reserved Instances (EC2-Classic | EC2-VPC). - // - // reserved-instances-id - The ID of the Reserved Instances modified. - // - // reserved-instances-modification-id - The ID of the modification request. - // - // status - The status of the Reserved Instances modification request (processing - // | fulfilled | failed). - // - // status-message - The reason for the status. - // - // update-date - The time when the modification request was last updated. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The token to retrieve the next page of results. - NextToken *string `locationName:"nextToken" type:"string"` - - // IDs for the submitted modification request. - ReservedInstancesModificationIds []*string `locationName:"ReservedInstancesModificationId" locationNameList:"ReservedInstancesModificationId" type:"list"` -} - -// String returns the string representation -func (s DescribeReservedInstancesModificationsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesModificationsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeReservedInstancesModifications. -type DescribeReservedInstancesModificationsOutput struct { - _ struct{} `type:"structure"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // The Reserved Instance modification information. - ReservedInstancesModifications []*ReservedInstancesModification `locationName:"reservedInstancesModificationsSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeReservedInstancesModificationsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesModificationsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeReservedInstancesOfferings. -type DescribeReservedInstancesOfferingsInput struct { - _ struct{} `type:"structure"` - - // The Availability Zone in which the Reserved Instance can be used. - AvailabilityZone *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // availability-zone - The Availability Zone where the Reserved Instance - // can be used. - // - // duration - The duration of the Reserved Instance (for example, one year - // or three years), in seconds (31536000 | 94608000). - // - // fixed-price - The purchase price of the Reserved Instance (for example, - // 9800.0). - // - // instance-type - The instance type that is covered by the reservation. - // - // marketplace - Set to true to show only Reserved Instance Marketplace - // offerings. When this filter is not used, which is the default behavior, all - // offerings from both AWS and the Reserved Instance Marketplace are listed. - // - // product-description - The Reserved Instance product platform description. - // Instances that include (Amazon VPC) in the product platform description will - // only be displayed to EC2-Classic account holders and are for use with Amazon - // VPC. (Linux/UNIX | Linux/UNIX (Amazon VPC) | SUSE Linux | SUSE Linux (Amazon - // VPC) | Red Hat Enterprise Linux | Red Hat Enterprise Linux (Amazon VPC) | - // Windows | Windows (Amazon VPC) | Windows with SQL Server Standard | Windows - // with SQL Server Standard (Amazon VPC) | Windows with SQL Server Web | Windows - // with SQL Server Web (Amazon VPC) | Windows with SQL Server Enterprise | Windows - // with SQL Server Enterprise (Amazon VPC)) - // - // reserved-instances-offering-id - The Reserved Instances offering ID. - // - // scope - The scope of the Reserved Instance (Availability Zone or Region). - // - // usage-price - The usage price of the Reserved Instance, per hour (for - // example, 0.84). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // Include Reserved Instance Marketplace offerings in the response. - IncludeMarketplace *bool `type:"boolean"` - - // The tenancy of the instances covered by the reservation. A Reserved Instance - // with a tenancy of dedicated is applied to instances that run in a VPC on - // single-tenant hardware (i.e., Dedicated Instances). - // - // Default: default - InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"` - - // The instance type that the reservation will cover (for example, m1.small). - // For more information, see Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html) - // in the Amazon Elastic Compute Cloud User Guide. - InstanceType *string `type:"string" enum:"InstanceType"` - - // The maximum duration (in seconds) to filter when searching for offerings. - // - // Default: 94608000 (3 years) - MaxDuration *int64 `type:"long"` - - // The maximum number of instances to filter when searching for offerings. - // - // Default: 20 - MaxInstanceCount *int64 `type:"integer"` - - // The maximum number of results to return for the request in a single page. - // The remaining results of the initial request can be seen by sending another - // request with the returned NextToken value. The maximum is 100. - // - // Default: 100 - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The minimum duration (in seconds) to filter when searching for offerings. - // - // Default: 2592000 (1 month) - MinDuration *int64 `type:"long"` - - // The token to retrieve the next page of results. - NextToken *string `locationName:"nextToken" type:"string"` - - // The offering class of the Reserved Instance. Can be standard or convertible. - OfferingClass *string `type:"string" enum:"OfferingClassType"` - - // The Reserved Instance offering type. If you are using tools that predate - // the 2011-11-01 API version, you only have access to the Medium Utilization - // Reserved Instance offering type. - OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"` - - // The Reserved Instance product platform description. Instances that include - // (Amazon VPC) in the description are for use with Amazon VPC. - ProductDescription *string `type:"string" enum:"RIProductDescription"` - - // One or more Reserved Instances offering IDs. - ReservedInstancesOfferingIds []*string `locationName:"ReservedInstancesOfferingId" type:"list"` -} - -// String returns the string representation -func (s DescribeReservedInstancesOfferingsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesOfferingsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeReservedInstancesOfferings. -type DescribeReservedInstancesOfferingsOutput struct { - _ struct{} `type:"structure"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // A list of Reserved Instances offerings. - ReservedInstancesOfferings []*ReservedInstancesOffering `locationName:"reservedInstancesOfferingsSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeReservedInstancesOfferingsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesOfferingsOutput) GoString() string { - return s.String() -} - -// Contains the output for DescribeReservedInstances. -type DescribeReservedInstancesOutput struct { - _ struct{} `type:"structure"` - - // A list of Reserved Instances. - ReservedInstances []*ReservedInstances `locationName:"reservedInstancesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeReservedInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeReservedInstancesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeRouteTables. -type DescribeRouteTablesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // association.route-table-association-id - The ID of an association ID - // for the route table. - // - // association.route-table-id - The ID of the route table involved in the - // association. - // - // association.subnet-id - The ID of the subnet involved in the association. - // - // association.main - Indicates whether the route table is the main route - // table for the VPC (true | false). - // - // route-table-id - The ID of the route table. - // - // route.destination-cidr-block - The CIDR range specified in a route in - // the table. - // - // route.destination-prefix-list-id - The ID (prefix) of the AWS service - // specified in a route in the table. - // - // route.gateway-id - The ID of a gateway specified in a route in the table. - // - // route.instance-id - The ID of an instance specified in a route in the - // table. - // - // route.nat-gateway-id - The ID of a NAT gateway. - // - // route.origin - Describes how the route was created. CreateRouteTable - // indicates that the route was automatically created when the route table was - // created; CreateRoute indicates that the route was manually added to the route - // table; EnableVgwRoutePropagation indicates that the route was propagated - // by route propagation. - // - // route.state - The state of a route in the route table (active | blackhole). - // The blackhole state indicates that the route's target isn't available (for - // example, the specified gateway isn't attached to the VPC, the specified NAT - // instance has been terminated, and so on). - // - // route.vpc-peering-connection-id - The ID of a VPC peering connection - // specified in a route in the table. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // vpc-id - The ID of the VPC for the route table. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more route table IDs. - // - // Default: Describes all your route tables. - RouteTableIds []*string `locationName:"RouteTableId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeRouteTablesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeRouteTablesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeRouteTables. -type DescribeRouteTablesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more route tables. - RouteTables []*RouteTable `locationName:"routeTableSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeRouteTablesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeRouteTablesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeScheduledInstanceAvailability. -type DescribeScheduledInstanceAvailabilityInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more filters. - // - // availability-zone - The Availability Zone (for example, us-west-2a). - // - // instance-type - The instance type (for example, c4.large). - // - // network-platform - The network platform (EC2-Classic or EC2-VPC). - // - // platform - The platform (Linux/UNIX or Windows). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The time period for the first schedule to start. - // - // FirstSlotStartTimeRange is a required field - FirstSlotStartTimeRange *SlotDateTimeRangeRequest `type:"structure" required:"true"` - - // The maximum number of results to return in a single call. This value can - // be between 5 and 300. The default value is 300. To retrieve the remaining - // results, make another call with the returned NextToken value. - MaxResults *int64 `type:"integer"` - - // The maximum available duration, in hours. This value must be greater than - // MinSlotDurationInHours and less than 1,720. - MaxSlotDurationInHours *int64 `type:"integer"` - - // The minimum available duration, in hours. The minimum required duration is - // 1,200 hours per year. For example, the minimum daily schedule is 4 hours, - // the minimum weekly schedule is 24 hours, and the minimum monthly schedule - // is 100 hours. - MinSlotDurationInHours *int64 `type:"integer"` - - // The token for the next set of results. - NextToken *string `type:"string"` - - // The schedule recurrence. - // - // Recurrence is a required field - Recurrence *ScheduledInstanceRecurrenceRequest `type:"structure" required:"true"` -} - -// String returns the string representation -func (s DescribeScheduledInstanceAvailabilityInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeScheduledInstanceAvailabilityInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeScheduledInstanceAvailabilityInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeScheduledInstanceAvailabilityInput"} - if s.FirstSlotStartTimeRange == nil { - invalidParams.Add(request.NewErrParamRequired("FirstSlotStartTimeRange")) - } - if s.Recurrence == nil { - invalidParams.Add(request.NewErrParamRequired("Recurrence")) - } - if s.FirstSlotStartTimeRange != nil { - if err := s.FirstSlotStartTimeRange.Validate(); err != nil { - invalidParams.AddNested("FirstSlotStartTimeRange", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeScheduledInstanceAvailability. -type DescribeScheduledInstanceAvailabilityOutput struct { - _ struct{} `type:"structure"` - - // The token required to retrieve the next set of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the available Scheduled Instances. - ScheduledInstanceAvailabilitySet []*ScheduledInstanceAvailability `locationName:"scheduledInstanceAvailabilitySet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeScheduledInstanceAvailabilityOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeScheduledInstanceAvailabilityOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeScheduledInstances. -type DescribeScheduledInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more filters. - // - // availability-zone - The Availability Zone (for example, us-west-2a). - // - // instance-type - The instance type (for example, c4.large). - // - // network-platform - The network platform (EC2-Classic or EC2-VPC). - // - // platform - The platform (Linux/UNIX or Windows). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The maximum number of results to return in a single call. This value can - // be between 5 and 300. The default value is 100. To retrieve the remaining - // results, make another call with the returned NextToken value. - MaxResults *int64 `type:"integer"` - - // The token for the next set of results. - NextToken *string `type:"string"` - - // One or more Scheduled Instance IDs. - ScheduledInstanceIds []*string `locationName:"ScheduledInstanceId" locationNameList:"ScheduledInstanceId" type:"list"` - - // The time period for the first schedule to start. - SlotStartTimeRange *SlotStartTimeRangeRequest `type:"structure"` -} - -// String returns the string representation -func (s DescribeScheduledInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeScheduledInstancesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeScheduledInstances. -type DescribeScheduledInstancesOutput struct { - _ struct{} `type:"structure"` - - // The token required to retrieve the next set of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the Scheduled Instances. - ScheduledInstanceSet []*ScheduledInstance `locationName:"scheduledInstanceSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeScheduledInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeScheduledInstancesOutput) GoString() string { - return s.String() -} - -type DescribeSecurityGroupReferencesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the operation, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more security group IDs in your account. - // - // GroupId is a required field - GroupId []*string `locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s DescribeSecurityGroupReferencesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSecurityGroupReferencesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeSecurityGroupReferencesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeSecurityGroupReferencesInput"} - if s.GroupId == nil { - invalidParams.Add(request.NewErrParamRequired("GroupId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DescribeSecurityGroupReferencesOutput struct { - _ struct{} `type:"structure"` - - // Information about the VPCs with the referencing security groups. - SecurityGroupReferenceSet []*SecurityGroupReference `locationName:"securityGroupReferenceSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeSecurityGroupReferencesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSecurityGroupReferencesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSecurityGroups. -type DescribeSecurityGroupsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. If using multiple filters for rules, the results include - // security groups for which any combination of rules - not necessarily a single - // rule - match all filters. - // - // description - The description of the security group. - // - // egress.ip-permission.prefix-list-id - The ID (prefix) of the AWS service - // to which the security group allows access. - // - // group-id - The ID of the security group. - // - // group-name - The name of the security group. - // - // ip-permission.cidr - A CIDR range that has been granted permission. - // - // ip-permission.from-port - The start of port range for the TCP and UDP - // protocols, or an ICMP type number. - // - // ip-permission.group-id - The ID of a security group that has been granted - // permission. - // - // ip-permission.group-name - The name of a security group that has been - // granted permission. - // - // ip-permission.protocol - The IP protocol for the permission (tcp | udp - // | icmp or a protocol number). - // - // ip-permission.to-port - The end of port range for the TCP and UDP protocols, - // or an ICMP code. - // - // ip-permission.user-id - The ID of an AWS account that has been granted - // permission. - // - // owner-id - The AWS account ID of the owner of the security group. - // - // tag-key - The key of a tag assigned to the security group. - // - // tag-value - The value of a tag assigned to the security group. - // - // vpc-id - The ID of the VPC specified when the security group was created. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more security group IDs. Required for security groups in a nondefault - // VPC. - // - // Default: Describes all your security groups. - GroupIds []*string `locationName:"GroupId" locationNameList:"groupId" type:"list"` - - // [EC2-Classic and default VPC only] One or more security group names. You - // can specify either the security group name or the security group ID. For - // security groups in a nondefault VPC, use the group-name filter to describe - // security groups by name. - // - // Default: Describes all your security groups. - GroupNames []*string `locationName:"GroupName" locationNameList:"GroupName" type:"list"` -} - -// String returns the string representation -func (s DescribeSecurityGroupsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSecurityGroupsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeSecurityGroups. -type DescribeSecurityGroupsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more security groups. - SecurityGroups []*SecurityGroup `locationName:"securityGroupInfo" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeSecurityGroupsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSecurityGroupsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSnapshotAttribute. -type DescribeSnapshotAttributeInput struct { - _ struct{} `type:"structure"` - - // The snapshot attribute you would like to view. - // - // Attribute is a required field - Attribute *string `type:"string" required:"true" enum:"SnapshotAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the EBS snapshot. - // - // SnapshotId is a required field - SnapshotId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeSnapshotAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSnapshotAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeSnapshotAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeSnapshotAttributeInput"} - if s.Attribute == nil { - invalidParams.Add(request.NewErrParamRequired("Attribute")) - } - if s.SnapshotId == nil { - invalidParams.Add(request.NewErrParamRequired("SnapshotId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeSnapshotAttribute. -type DescribeSnapshotAttributeOutput struct { - _ struct{} `type:"structure"` - - // A list of permissions for creating volumes from the snapshot. - CreateVolumePermissions []*CreateVolumePermission `locationName:"createVolumePermission" locationNameList:"item" type:"list"` - - // A list of product codes. - ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"` - - // The ID of the EBS snapshot. - SnapshotId *string `locationName:"snapshotId" type:"string"` -} - -// String returns the string representation -func (s DescribeSnapshotAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSnapshotAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSnapshots. -type DescribeSnapshotsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // description - A description of the snapshot. - // - // owner-alias - Value from an Amazon-maintained list (amazon | aws-marketplace - // | microsoft) of snapshot owners. Not to be confused with the user-configured - // AWS account alias, which is set from the IAM consolew. - // - // owner-id - The ID of the AWS account that owns the snapshot. - // - // progress - The progress of the snapshot, as a percentage (for example, - // 80%). - // - // snapshot-id - The snapshot ID. - // - // start-time - The time stamp when the snapshot was initiated. - // - // status - The status of the snapshot (pending | completed | error). - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // volume-id - The ID of the volume the snapshot is for. - // - // volume-size - The size of the volume, in GiB. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The maximum number of snapshot results returned by DescribeSnapshots in paginated - // output. When this parameter is used, DescribeSnapshots only returns MaxResults - // results in a single page along with a NextToken response element. The remaining - // results of the initial request can be seen by sending another DescribeSnapshots - // request with the returned NextToken value. This value can be between 5 and - // 1000; if MaxResults is given a value larger than 1000, only 1000 results - // are returned. If this parameter is not used, then DescribeSnapshots returns - // all results. You cannot specify this parameter and the snapshot IDs parameter - // in the same request. - MaxResults *int64 `type:"integer"` - - // The NextToken value returned from a previous paginated DescribeSnapshots - // request where MaxResults was used and the results exceeded the value of that - // parameter. Pagination continues from the end of the previous results that - // returned the NextToken value. This value is null when there are no more results - // to return. - NextToken *string `type:"string"` - - // Returns the snapshots owned by the specified owner. Multiple owners can be - // specified. - OwnerIds []*string `locationName:"Owner" locationNameList:"Owner" type:"list"` - - // One or more AWS accounts IDs that can create volumes from the snapshot. - RestorableByUserIds []*string `locationName:"RestorableBy" type:"list"` - - // One or more snapshot IDs. - // - // Default: Describes snapshots for which you have launch permissions. - SnapshotIds []*string `locationName:"SnapshotId" locationNameList:"SnapshotId" type:"list"` -} - -// String returns the string representation -func (s DescribeSnapshotsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSnapshotsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeSnapshots. -type DescribeSnapshotsOutput struct { - _ struct{} `type:"structure"` - - // The NextToken value to include in a future DescribeSnapshots request. When - // the results of a DescribeSnapshots request exceed MaxResults, this value - // can be used to retrieve the next page of results. This value is null when - // there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the snapshots. - Snapshots []*Snapshot `locationName:"snapshotSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeSnapshotsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSnapshotsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSpotDatafeedSubscription. -type DescribeSpotDatafeedSubscriptionInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s DescribeSpotDatafeedSubscriptionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotDatafeedSubscriptionInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeSpotDatafeedSubscription. -type DescribeSpotDatafeedSubscriptionOutput struct { - _ struct{} `type:"structure"` - - // The Spot instance data feed subscription. - SpotDatafeedSubscription *SpotDatafeedSubscription `locationName:"spotDatafeedSubscription" type:"structure"` -} - -// String returns the string representation -func (s DescribeSpotDatafeedSubscriptionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotDatafeedSubscriptionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSpotFleetInstances. -type DescribeSpotFleetInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The maximum number of results to return in a single call. Specify a value - // between 1 and 1000. The default value is 1000. To retrieve the remaining - // results, make another call with the returned NextToken value. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token for the next set of results. - NextToken *string `locationName:"nextToken" type:"string"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeSpotFleetInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotFleetInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeSpotFleetInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeSpotFleetInstancesInput"} - if s.SpotFleetRequestId == nil { - invalidParams.Add(request.NewErrParamRequired("SpotFleetRequestId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeSpotFleetInstances. -type DescribeSpotFleetInstancesOutput struct { - _ struct{} `type:"structure"` - - // The running instances. Note that this list is refreshed periodically and - // might be out of date. - // - // ActiveInstances is a required field - ActiveInstances []*ActiveInstance `locationName:"activeInstanceSet" locationNameList:"item" type:"list" required:"true"` - - // The token required to retrieve the next set of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeSpotFleetInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotFleetInstancesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSpotFleetRequestHistory. -type DescribeSpotFleetRequestHistoryInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The type of events to describe. By default, all events are described. - EventType *string `locationName:"eventType" type:"string" enum:"EventType"` - - // The maximum number of results to return in a single call. Specify a value - // between 1 and 1000. The default value is 1000. To retrieve the remaining - // results, make another call with the returned NextToken value. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token for the next set of results. - NextToken *string `locationName:"nextToken" type:"string"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - - // The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // - // StartTime is a required field - StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601" required:"true"` -} - -// String returns the string representation -func (s DescribeSpotFleetRequestHistoryInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotFleetRequestHistoryInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeSpotFleetRequestHistoryInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeSpotFleetRequestHistoryInput"} - if s.SpotFleetRequestId == nil { - invalidParams.Add(request.NewErrParamRequired("SpotFleetRequestId")) - } - if s.StartTime == nil { - invalidParams.Add(request.NewErrParamRequired("StartTime")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeSpotFleetRequestHistory. -type DescribeSpotFleetRequestHistoryOutput struct { - _ struct{} `type:"structure"` - - // Information about the events in the history of the Spot fleet request. - // - // HistoryRecords is a required field - HistoryRecords []*HistoryRecord `locationName:"historyRecordSet" locationNameList:"item" type:"list" required:"true"` - - // The last date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // All records up to this time were retrieved. - // - // If nextToken indicates that there are more results, this value is not present. - // - // LastEvaluatedTime is a required field - LastEvaluatedTime *time.Time `locationName:"lastEvaluatedTime" type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // The token required to retrieve the next set of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - - // The starting date and time for the events, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // - // StartTime is a required field - StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601" required:"true"` -} - -// String returns the string representation -func (s DescribeSpotFleetRequestHistoryOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotFleetRequestHistoryOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSpotFleetRequests. -type DescribeSpotFleetRequestsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The maximum number of results to return in a single call. Specify a value - // between 1 and 1000. The default value is 1000. To retrieve the remaining - // results, make another call with the returned NextToken value. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token for the next set of results. - NextToken *string `locationName:"nextToken" type:"string"` - - // The IDs of the Spot fleet requests. - SpotFleetRequestIds []*string `locationName:"spotFleetRequestId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeSpotFleetRequestsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotFleetRequestsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeSpotFleetRequests. -type DescribeSpotFleetRequestsOutput struct { - _ struct{} `type:"structure"` - - // The token required to retrieve the next set of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the configuration of your Spot fleet. - // - // SpotFleetRequestConfigs is a required field - SpotFleetRequestConfigs []*SpotFleetRequestConfig `locationName:"spotFleetRequestConfigSet" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s DescribeSpotFleetRequestsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotFleetRequestsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSpotInstanceRequests. -type DescribeSpotInstanceRequestsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // availability-zone-group - The Availability Zone group. - // - // create-time - The time stamp when the Spot instance request was created. - // - // fault-code - The fault code related to the request. - // - // fault-message - The fault message related to the request. - // - // instance-id - The ID of the instance that fulfilled the request. - // - // launch-group - The Spot instance launch group. - // - // launch.block-device-mapping.delete-on-termination - Indicates whether - // the Amazon EBS volume is deleted on instance termination. - // - // launch.block-device-mapping.device-name - The device name for the Amazon - // EBS volume (for example, /dev/sdh). - // - // launch.block-device-mapping.snapshot-id - The ID of the snapshot used - // for the Amazon EBS volume. - // - // launch.block-device-mapping.volume-size - The size of the Amazon EBS - // volume, in GiB. - // - // launch.block-device-mapping.volume-type - The type of the Amazon EBS - // volume: gp2 for General Purpose SSD, io1 for Provisioned IOPS SSD, st1 for - // Throughput Optimized HDD, sc1for Cold HDD, or standard for Magnetic. - // - // launch.group-id - The security group for the instance. - // - // launch.image-id - The ID of the AMI. - // - // launch.instance-type - The type of instance (for example, m3.medium). - // - // launch.kernel-id - The kernel ID. - // - // launch.key-name - The name of the key pair the instance launched with. - // - // launch.monitoring-enabled - Whether monitoring is enabled for the Spot - // instance. - // - // launch.ramdisk-id - The RAM disk ID. - // - // network-interface.network-interface-id - The ID of the network interface. - // - // network-interface.device-index - The index of the device for the network - // interface attachment on the instance. - // - // network-interface.subnet-id - The ID of the subnet for the instance. - // - // network-interface.description - A description of the network interface. - // - // network-interface.private-ip-address - The primary private IP address - // of the network interface. - // - // network-interface.delete-on-termination - Indicates whether the network - // interface is deleted when the instance is terminated. - // - // network-interface.group-id - The ID of the security group associated - // with the network interface. - // - // network-interface.group-name - The name of the security group associated - // with the network interface. - // - // network-interface.addresses.primary - Indicates whether the IP address - // is the primary private IP address. - // - // product-description - The product description associated with the instance - // (Linux/UNIX | Windows). - // - // spot-instance-request-id - The Spot instance request ID. - // - // spot-price - The maximum hourly price for any Spot instance launched - // to fulfill the request. - // - // state - The state of the Spot instance request (open | active | closed - // | cancelled | failed). Spot bid status information can help you track your - // Amazon EC2 Spot instance requests. For more information, see Spot Bid Status - // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html) - // in the Amazon Elastic Compute Cloud User Guide. - // - // status-code - The short code describing the most recent evaluation of - // your Spot instance request. - // - // status-message - The message explaining the status of the Spot instance - // request. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // type - The type of Spot instance request (one-time | persistent). - // - // launched-availability-zone - The Availability Zone in which the bid is - // launched. - // - // valid-from - The start date of the request. - // - // valid-until - The end date of the request. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more Spot instance request IDs. - SpotInstanceRequestIds []*string `locationName:"SpotInstanceRequestId" locationNameList:"SpotInstanceRequestId" type:"list"` -} - -// String returns the string representation -func (s DescribeSpotInstanceRequestsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotInstanceRequestsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeSpotInstanceRequests. -type DescribeSpotInstanceRequestsOutput struct { - _ struct{} `type:"structure"` - - // One or more Spot instance requests. - SpotInstanceRequests []*SpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeSpotInstanceRequestsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotInstanceRequestsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSpotPriceHistory. -type DescribeSpotPriceHistoryInput struct { - _ struct{} `type:"structure"` - - // Filters the results by the specified Availability Zone. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The date and time, up to the current date, from which to stop retrieving - // the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - EndTime *time.Time `locationName:"endTime" type:"timestamp" timestampFormat:"iso8601"` - - // One or more filters. - // - // availability-zone - The Availability Zone for which prices should be - // returned. - // - // instance-type - The type of instance (for example, m3.medium). - // - // product-description - The product description for the Spot price (Linux/UNIX - // | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | SUSE Linux (Amazon VPC) - // | Windows (Amazon VPC)). - // - // spot-price - The Spot price. The value must match exactly (or use wildcards; - // greater than or less than comparison is not supported). - // - // timestamp - The timestamp of the Spot price history, in UTC format (for - // example, YYYY-MM-DDTHH:MM:SSZ). You can use wildcards (* and ?). Greater - // than or less than comparison is not supported. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // Filters the results by the specified instance types. - InstanceTypes []*string `locationName:"InstanceType" type:"list"` - - // The maximum number of results to return in a single call. Specify a value - // between 1 and 1000. The default value is 1000. To retrieve the remaining - // results, make another call with the returned NextToken value. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token for the next set of results. - NextToken *string `locationName:"nextToken" type:"string"` - - // Filters the results by the specified basic product descriptions. - ProductDescriptions []*string `locationName:"ProductDescription" type:"list"` - - // The date and time, up to the past 90 days, from which to start retrieving - // the price history data, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s DescribeSpotPriceHistoryInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotPriceHistoryInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeSpotPriceHistory. -type DescribeSpotPriceHistoryOutput struct { - _ struct{} `type:"structure"` - - // The token required to retrieve the next set of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // The historical Spot prices. - SpotPriceHistory []*SpotPrice `locationName:"spotPriceHistorySet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeSpotPriceHistoryOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSpotPriceHistoryOutput) GoString() string { - return s.String() -} - -type DescribeStaleSecurityGroupsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the operation, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The maximum number of items to return for this request. The request returns - // a token that you can specify in a subsequent call to get the next set of - // results. - MaxResults *int64 `min:"5" type:"integer"` - - // The token for the next set of items to return. (You received this token from - // a prior call.) - NextToken *string `min:"1" type:"string"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeStaleSecurityGroupsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeStaleSecurityGroupsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeStaleSecurityGroupsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeStaleSecurityGroupsInput"} - if s.MaxResults != nil && *s.MaxResults < 5 { - invalidParams.Add(request.NewErrParamMinValue("MaxResults", 5)) - } - if s.NextToken != nil && len(*s.NextToken) < 1 { - invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DescribeStaleSecurityGroupsOutput struct { - _ struct{} `type:"structure"` - - // The token to use when requesting the next set of items. If there are no additional - // items to return, the string is empty. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the stale security groups. - StaleSecurityGroupSet []*StaleSecurityGroup `locationName:"staleSecurityGroupSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeStaleSecurityGroupsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeStaleSecurityGroupsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeSubnets. -type DescribeSubnetsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // availabilityZone - The Availability Zone for the subnet. You can also - // use availability-zone as the filter name. - // - // available-ip-address-count - The number of IP addresses in the subnet - // that are available. - // - // cidrBlock - The CIDR block of the subnet. The CIDR block you specify - // must exactly match the subnet's CIDR block for information to be returned - // for the subnet. You can also use cidr or cidr-block as the filter names. - // - // defaultForAz - Indicates whether this is the default subnet for the Availability - // Zone. You can also use default-for-az as the filter name. - // - // state - The state of the subnet (pending | available). - // - // subnet-id - The ID of the subnet. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // vpc-id - The ID of the VPC for the subnet. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more subnet IDs. - // - // Default: Describes all your subnets. - SubnetIds []*string `locationName:"SubnetId" locationNameList:"SubnetId" type:"list"` -} - -// String returns the string representation -func (s DescribeSubnetsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSubnetsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeSubnets. -type DescribeSubnetsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more subnets. - Subnets []*Subnet `locationName:"subnetSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeSubnetsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeSubnetsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeTags. -type DescribeTagsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // key - The tag key. - // - // resource-id - The resource ID. - // - // resource-type - The resource type (customer-gateway | dhcp-options | - // image | instance | internet-gateway | network-acl | network-interface | reserved-instances - // | route-table | security-group | snapshot | spot-instances-request | subnet - // | volume | vpc | vpn-connection | vpn-gateway). - // - // value - The tag value. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The maximum number of results to return in a single call. This value can - // be between 5 and 1000. To retrieve the remaining results, make another call - // with the returned NextToken value. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The token to retrieve the next page of results. - NextToken *string `locationName:"nextToken" type:"string"` -} - -// String returns the string representation -func (s DescribeTagsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeTagsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeTags. -type DescribeTagsOutput struct { - _ struct{} `type:"structure"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return.. - NextToken *string `locationName:"nextToken" type:"string"` - - // A list of tags. - Tags []*TagDescription `locationName:"tagSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeTagsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeTagsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVolumeAttribute. -type DescribeVolumeAttributeInput struct { - _ struct{} `type:"structure"` - - // The instance attribute. - Attribute *string `type:"string" enum:"VolumeAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the volume. - // - // VolumeId is a required field - VolumeId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeVolumeAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVolumeAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeVolumeAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeVolumeAttributeInput"} - if s.VolumeId == nil { - invalidParams.Add(request.NewErrParamRequired("VolumeId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeVolumeAttribute. -type DescribeVolumeAttributeOutput struct { - _ struct{} `type:"structure"` - - // The state of autoEnableIO attribute. - AutoEnableIO *AttributeBooleanValue `locationName:"autoEnableIO" type:"structure"` - - // A list of product codes. - ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"` - - // The ID of the volume. - VolumeId *string `locationName:"volumeId" type:"string"` -} - -// String returns the string representation -func (s DescribeVolumeAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVolumeAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVolumeStatus. -type DescribeVolumeStatusInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // action.code - The action code for the event (for example, enable-volume-io). - // - // action.description - A description of the action. - // - // action.event-id - The event ID associated with the action. - // - // availability-zone - The Availability Zone of the instance. - // - // event.description - A description of the event. - // - // event.event-id - The event ID. - // - // event.event-type - The event type (for io-enabled: passed | failed; for - // io-performance: io-performance:degraded | io-performance:severely-degraded - // | io-performance:stalled). - // - // event.not-after - The latest end time for the event. - // - // event.not-before - The earliest start time for the event. - // - // volume-status.details-name - The cause for volume-status.status (io-enabled - // | io-performance). - // - // volume-status.details-status - The status of volume-status.details-name - // (for io-enabled: passed | failed; for io-performance: normal | degraded | - // severely-degraded | stalled). - // - // volume-status.status - The status of the volume (ok | impaired | warning - // | insufficient-data). - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The maximum number of volume results returned by DescribeVolumeStatus in - // paginated output. When this parameter is used, the request only returns MaxResults - // results in a single page along with a NextToken response element. The remaining - // results of the initial request can be seen by sending another request with - // the returned NextToken value. This value can be between 5 and 1000; if MaxResults - // is given a value larger than 1000, only 1000 results are returned. If this - // parameter is not used, then DescribeVolumeStatus returns all results. You - // cannot specify this parameter and the volume IDs parameter in the same request. - MaxResults *int64 `type:"integer"` - - // The NextToken value to include in a future DescribeVolumeStatus request. - // When the results of the request exceed MaxResults, this value can be used - // to retrieve the next page of results. This value is null when there are no - // more results to return. - NextToken *string `type:"string"` - - // One or more volume IDs. - // - // Default: Describes all your volumes. - VolumeIds []*string `locationName:"VolumeId" locationNameList:"VolumeId" type:"list"` -} - -// String returns the string representation -func (s DescribeVolumeStatusInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVolumeStatusInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVolumeStatus. -type DescribeVolumeStatusOutput struct { - _ struct{} `type:"structure"` - - // The token to use to retrieve the next page of results. This value is null - // when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // A list of volumes. - VolumeStatuses []*VolumeStatusItem `locationName:"volumeStatusSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVolumeStatusOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVolumeStatusOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVolumes. -type DescribeVolumesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // attachment.attach-time - The time stamp when the attachment initiated. - // - // attachment.delete-on-termination - Whether the volume is deleted on instance - // termination. - // - // attachment.device - The device name that is exposed to the instance (for - // example, /dev/sda1). - // - // attachment.instance-id - The ID of the instance the volume is attached - // to. - // - // attachment.status - The attachment state (attaching | attached | detaching - // | detached). - // - // availability-zone - The Availability Zone in which the volume was created. - // - // create-time - The time stamp when the volume was created. - // - // encrypted - The encryption status of the volume. - // - // size - The size of the volume, in GiB. - // - // snapshot-id - The snapshot from which the volume was created. - // - // status - The status of the volume (creating | available | in-use | deleting - // | deleted | error). - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // volume-id - The volume ID. - // - // volume-type - The Amazon EBS volume type. This can be gp2 for General - // Purpose SSD, io1 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, - // sc1 for Cold HDD, or standard for Magnetic volumes. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The maximum number of volume results returned by DescribeVolumes in paginated - // output. When this parameter is used, DescribeVolumes only returns MaxResults - // results in a single page along with a NextToken response element. The remaining - // results of the initial request can be seen by sending another DescribeVolumes - // request with the returned NextToken value. This value can be between 5 and - // 1000; if MaxResults is given a value larger than 1000, only 1000 results - // are returned. If this parameter is not used, then DescribeVolumes returns - // all results. You cannot specify this parameter and the volume IDs parameter - // in the same request. - MaxResults *int64 `locationName:"maxResults" type:"integer"` - - // The NextToken value returned from a previous paginated DescribeVolumes request - // where MaxResults was used and the results exceeded the value of that parameter. - // Pagination continues from the end of the previous results that returned the - // NextToken value. This value is null when there are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // One or more volume IDs. - VolumeIds []*string `locationName:"VolumeId" locationNameList:"VolumeId" type:"list"` -} - -// String returns the string representation -func (s DescribeVolumesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVolumesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVolumes. -type DescribeVolumesOutput struct { - _ struct{} `type:"structure"` - - // The NextToken value to include in a future DescribeVolumes request. When - // the results of a DescribeVolumes request exceed MaxResults, this value can - // be used to retrieve the next page of results. This value is null when there - // are no more results to return. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the volumes. - Volumes []*Volume `locationName:"volumeSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVolumesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVolumesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpcAttribute. -type DescribeVpcAttributeInput struct { - _ struct{} `type:"structure"` - - // The VPC attribute. - // - // Attribute is a required field - Attribute *string `type:"string" required:"true" enum:"VpcAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeVpcAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeVpcAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeVpcAttributeInput"} - if s.Attribute == nil { - invalidParams.Add(request.NewErrParamRequired("Attribute")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeVpcAttribute. -type DescribeVpcAttributeOutput struct { - _ struct{} `type:"structure"` - - // Indicates whether the instances launched in the VPC get DNS hostnames. If - // this attribute is true, instances in the VPC get DNS hostnames; otherwise, - // they do not. - EnableDnsHostnames *AttributeBooleanValue `locationName:"enableDnsHostnames" type:"structure"` - - // Indicates whether DNS resolution is enabled for the VPC. If this attribute - // is true, the Amazon DNS server resolves DNS hostnames for your instances - // to their corresponding IP addresses; otherwise, it does not. - EnableDnsSupport *AttributeBooleanValue `locationName:"enableDnsSupport" type:"structure"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s DescribeVpcAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpcClassicLinkDnsSupport. -type DescribeVpcClassicLinkDnsSupportInput struct { - _ struct{} `type:"structure"` - - // The maximum number of items to return for this request. The request returns - // a token that you can specify in a subsequent call to get the next set of - // results. - MaxResults *int64 `locationName:"maxResults" min:"5" type:"integer"` - - // The token for the next set of items to return. (You received this token from - // a prior call.) - NextToken *string `locationName:"nextToken" min:"1" type:"string"` - - // One or more VPC IDs. - VpcIds []*string `locationNameList:"VpcId" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcClassicLinkDnsSupportInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcClassicLinkDnsSupportInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeVpcClassicLinkDnsSupportInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeVpcClassicLinkDnsSupportInput"} - if s.MaxResults != nil && *s.MaxResults < 5 { - invalidParams.Add(request.NewErrParamMinValue("MaxResults", 5)) - } - if s.NextToken != nil && len(*s.NextToken) < 1 { - invalidParams.Add(request.NewErrParamMinLen("NextToken", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DescribeVpcClassicLinkDnsSupport. -type DescribeVpcClassicLinkDnsSupportOutput struct { - _ struct{} `type:"structure"` - - // The token to use when requesting the next set of items. - NextToken *string `locationName:"nextToken" min:"1" type:"string"` - - // Information about the ClassicLink DNS support status of the VPCs. - Vpcs []*ClassicLinkDnsSupport `locationName:"vpcs" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcClassicLinkDnsSupportOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcClassicLinkDnsSupportOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpcClassicLink. -type DescribeVpcClassicLinkInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // is-classic-link-enabled - Whether the VPC is enabled for ClassicLink - // (true | false). - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more VPCs for which you want to describe the ClassicLink status. - VpcIds []*string `locationName:"VpcId" locationNameList:"VpcId" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcClassicLinkInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcClassicLinkInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVpcClassicLink. -type DescribeVpcClassicLinkOutput struct { - _ struct{} `type:"structure"` - - // The ClassicLink status of one or more VPCs. - Vpcs []*VpcClassicLink `locationName:"vpcSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcClassicLinkOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcClassicLinkOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpcEndpointServices. -type DescribeVpcEndpointServicesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The maximum number of items to return for this request. The request returns - // a token that you can specify in a subsequent call to get the next set of - // results. - // - // Constraint: If the value is greater than 1000, we return only 1000 items. - MaxResults *int64 `type:"integer"` - - // The token for the next set of items to return. (You received this token from - // a prior call.) - NextToken *string `type:"string"` -} - -// String returns the string representation -func (s DescribeVpcEndpointServicesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcEndpointServicesInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVpcEndpointServices. -type DescribeVpcEndpointServicesOutput struct { - _ struct{} `type:"structure"` - - // The token to use when requesting the next set of items. If there are no additional - // items to return, the string is empty. - NextToken *string `locationName:"nextToken" type:"string"` - - // A list of supported AWS services. - ServiceNames []*string `locationName:"serviceNameSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcEndpointServicesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcEndpointServicesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpcEndpoints. -type DescribeVpcEndpointsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more filters. - // - // service-name: The name of the AWS service. - // - // vpc-id: The ID of the VPC in which the endpoint resides. - // - // vpc-endpoint-id: The ID of the endpoint. - // - // vpc-endpoint-state: The state of the endpoint. (pending | available | - // deleting | deleted) - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // The maximum number of items to return for this request. The request returns - // a token that you can specify in a subsequent call to get the next set of - // results. - // - // Constraint: If the value is greater than 1000, we return only 1000 items. - MaxResults *int64 `type:"integer"` - - // The token for the next set of items to return. (You received this token from - // a prior call.) - NextToken *string `type:"string"` - - // One or more endpoint IDs. - VpcEndpointIds []*string `locationName:"VpcEndpointId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcEndpointsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcEndpointsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVpcEndpoints. -type DescribeVpcEndpointsOutput struct { - _ struct{} `type:"structure"` - - // The token to use when requesting the next set of items. If there are no additional - // items to return, the string is empty. - NextToken *string `locationName:"nextToken" type:"string"` - - // Information about the endpoints. - VpcEndpoints []*VpcEndpoint `locationName:"vpcEndpointSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcEndpointsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcEndpointsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpcPeeringConnections. -type DescribeVpcPeeringConnectionsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // accepter-vpc-info.cidr-block - The CIDR block of the peer VPC. - // - // accepter-vpc-info.owner-id - The AWS account ID of the owner of the peer - // VPC. - // - // accepter-vpc-info.vpc-id - The ID of the peer VPC. - // - // expiration-time - The expiration date and time for the VPC peering connection. - // - // requester-vpc-info.cidr-block - The CIDR block of the requester's VPC. - // - // requester-vpc-info.owner-id - The AWS account ID of the owner of the - // requester VPC. - // - // requester-vpc-info.vpc-id - The ID of the requester VPC. - // - // status-code - The status of the VPC peering connection (pending-acceptance - // | failed | expired | provisioning | active | deleted | rejected). - // - // status-message - A message that provides more information about the status - // of the VPC peering connection, if applicable. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // vpc-peering-connection-id - The ID of the VPC peering connection. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more VPC peering connection IDs. - // - // Default: Describes all your VPC peering connections. - VpcPeeringConnectionIds []*string `locationName:"VpcPeeringConnectionId" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcPeeringConnectionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcPeeringConnectionsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVpcPeeringConnections. -type DescribeVpcPeeringConnectionsOutput struct { - _ struct{} `type:"structure"` - - // Information about the VPC peering connections. - VpcPeeringConnections []*VpcPeeringConnection `locationName:"vpcPeeringConnectionSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcPeeringConnectionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcPeeringConnectionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpcs. -type DescribeVpcsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // cidr - The CIDR block of the VPC. The CIDR block you specify must exactly - // match the VPC's CIDR block for information to be returned for the VPC. Must - // contain the slash followed by one or two digits (for example, /28). - // - // dhcp-options-id - The ID of a set of DHCP options. - // - // isDefault - Indicates whether the VPC is the default VPC. - // - // state - The state of the VPC (pending | available). - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // vpc-id - The ID of the VPC. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more VPC IDs. - // - // Default: Describes all your VPCs. - VpcIds []*string `locationName:"VpcId" locationNameList:"VpcId" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVpcs. -type DescribeVpcsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more VPCs. - Vpcs []*Vpc `locationName:"vpcSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpcsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpcsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpnConnections. -type DescribeVpnConnectionsInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // customer-gateway-configuration - The configuration information for the - // customer gateway. - // - // customer-gateway-id - The ID of a customer gateway associated with the - // VPN connection. - // - // state - The state of the VPN connection (pending | available | deleting - // | deleted). - // - // option.static-routes-only - Indicates whether the connection has static - // routes only. Used for devices that do not support Border Gateway Protocol - // (BGP). - // - // route.destination-cidr-block - The destination CIDR block. This corresponds - // to the subnet used in a customer data center. - // - // bgp-asn - The BGP Autonomous System Number (ASN) associated with a BGP - // device. - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // type - The type of VPN connection. Currently the only supported type - // is ipsec.1. - // - // vpn-connection-id - The ID of the VPN connection. - // - // vpn-gateway-id - The ID of a virtual private gateway associated with - // the VPN connection. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more VPN connection IDs. - // - // Default: Describes your VPN connections. - VpnConnectionIds []*string `locationName:"VpnConnectionId" locationNameList:"VpnConnectionId" type:"list"` -} - -// String returns the string representation -func (s DescribeVpnConnectionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpnConnectionsInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVpnConnections. -type DescribeVpnConnectionsOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more VPN connections. - VpnConnections []*VpnConnection `locationName:"vpnConnectionSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpnConnectionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpnConnectionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DescribeVpnGateways. -type DescribeVpnGatewaysInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more filters. - // - // attachment.state - The current state of the attachment between the gateway - // and the VPC (attaching | attached | detaching | detached). - // - // attachment.vpc-id - The ID of an attached VPC. - // - // availability-zone - The Availability Zone for the virtual private gateway - // (if applicable). - // - // state - The state of the virtual private gateway (pending | available - // | deleting | deleted). - // - // tag:key=value - The key/value combination of a tag assigned to the resource. - // - // tag-key - The key of a tag assigned to the resource. This filter is independent - // of the tag-value filter. For example, if you use both the filter "tag-key=Purpose" - // and the filter "tag-value=X", you get any resources assigned both the tag - // key Purpose (regardless of what the tag's value is), and the tag value X - // (regardless of what the tag's key is). If you want to list only resources - // where Purpose is X, see the tag:key=value filter. - // - // tag-value - The value of a tag assigned to the resource. This filter - // is independent of the tag-key filter. - // - // type - The type of virtual private gateway. Currently the only supported - // type is ipsec.1. - // - // vpn-gateway-id - The ID of the virtual private gateway. - Filters []*Filter `locationName:"Filter" locationNameList:"Filter" type:"list"` - - // One or more virtual private gateway IDs. - // - // Default: Describes all your virtual private gateways. - VpnGatewayIds []*string `locationName:"VpnGatewayId" locationNameList:"VpnGatewayId" type:"list"` -} - -// String returns the string representation -func (s DescribeVpnGatewaysInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpnGatewaysInput) GoString() string { - return s.String() -} - -// Contains the output of DescribeVpnGateways. -type DescribeVpnGatewaysOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more virtual private gateways. - VpnGateways []*VpnGateway `locationName:"vpnGatewaySet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DescribeVpnGatewaysOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeVpnGatewaysOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DetachClassicLinkVpc. -type DetachClassicLinkVpcInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance to unlink from the VPC. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - - // The ID of the VPC to which the instance is linked. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DetachClassicLinkVpcInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachClassicLinkVpcInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DetachClassicLinkVpcInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DetachClassicLinkVpcInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DetachClassicLinkVpc. -type DetachClassicLinkVpcOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s DetachClassicLinkVpcOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachClassicLinkVpcOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DetachInternetGateway. -type DetachInternetGatewayInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the Internet gateway. - // - // InternetGatewayId is a required field - InternetGatewayId *string `locationName:"internetGatewayId" type:"string" required:"true"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DetachInternetGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachInternetGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DetachInternetGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DetachInternetGatewayInput"} - if s.InternetGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("InternetGatewayId")) - } - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DetachInternetGatewayOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DetachInternetGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachInternetGatewayOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DetachNetworkInterface. -type DetachNetworkInterfaceInput struct { - _ struct{} `type:"structure"` - - // The ID of the attachment. - // - // AttachmentId is a required field - AttachmentId *string `locationName:"attachmentId" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Specifies whether to force a detachment. - Force *bool `locationName:"force" type:"boolean"` -} - -// String returns the string representation -func (s DetachNetworkInterfaceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachNetworkInterfaceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DetachNetworkInterfaceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DetachNetworkInterfaceInput"} - if s.AttachmentId == nil { - invalidParams.Add(request.NewErrParamRequired("AttachmentId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DetachNetworkInterfaceOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DetachNetworkInterfaceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachNetworkInterfaceOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DetachVolume. -type DetachVolumeInput struct { - _ struct{} `type:"structure"` - - // The device name. - Device *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Forces detachment if the previous detachment attempt did not occur cleanly - // (for example, logging into an instance, unmounting the volume, and detaching - // normally). This option can lead to data loss or a corrupted file system. - // Use this option only as a last resort to detach a volume from a failed instance. - // The instance won't have an opportunity to flush file system caches or file - // system metadata. If you use this option, you must perform file system check - // and repair procedures. - Force *bool `type:"boolean"` - - // The ID of the instance. - InstanceId *string `type:"string"` - - // The ID of the volume. - // - // VolumeId is a required field - VolumeId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DetachVolumeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachVolumeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DetachVolumeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DetachVolumeInput"} - if s.VolumeId == nil { - invalidParams.Add(request.NewErrParamRequired("VolumeId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the parameters for DetachVpnGateway. -type DetachVpnGatewayInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `type:"string" required:"true"` - - // The ID of the virtual private gateway. - // - // VpnGatewayId is a required field - VpnGatewayId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DetachVpnGatewayInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachVpnGatewayInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DetachVpnGatewayInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DetachVpnGatewayInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - if s.VpnGatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("VpnGatewayId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DetachVpnGatewayOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DetachVpnGatewayOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetachVpnGatewayOutput) GoString() string { - return s.String() -} - -// Describes a DHCP configuration option. -type DhcpConfiguration struct { - _ struct{} `type:"structure"` - - // The name of a DHCP option. - Key *string `locationName:"key" type:"string"` - - // One or more values for the DHCP option. - Values []*AttributeValue `locationName:"valueSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DhcpConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DhcpConfiguration) GoString() string { - return s.String() -} - -// Describes a set of DHCP options. -type DhcpOptions struct { - _ struct{} `type:"structure"` - - // One or more DHCP options in the set. - DhcpConfigurations []*DhcpConfiguration `locationName:"dhcpConfigurationSet" locationNameList:"item" type:"list"` - - // The ID of the set of DHCP options. - DhcpOptionsId *string `locationName:"dhcpOptionsId" type:"string"` - - // Any tags assigned to the DHCP options set. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s DhcpOptions) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DhcpOptions) GoString() string { - return s.String() -} - -// Contains the parameters for DisableVgwRoutePropagation. -type DisableVgwRoutePropagationInput struct { - _ struct{} `type:"structure"` - - // The ID of the virtual private gateway. - // - // GatewayId is a required field - GatewayId *string `type:"string" required:"true"` - - // The ID of the route table. - // - // RouteTableId is a required field - RouteTableId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s DisableVgwRoutePropagationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisableVgwRoutePropagationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DisableVgwRoutePropagationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DisableVgwRoutePropagationInput"} - if s.GatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("GatewayId")) - } - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DisableVgwRoutePropagationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DisableVgwRoutePropagationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisableVgwRoutePropagationOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DisableVpcClassicLinkDnsSupport. -type DisableVpcClassicLinkDnsSupportInput struct { - _ struct{} `type:"structure"` - - // The ID of the VPC. - VpcId *string `type:"string"` -} - -// String returns the string representation -func (s DisableVpcClassicLinkDnsSupportInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisableVpcClassicLinkDnsSupportInput) GoString() string { - return s.String() -} - -// Contains the output of DisableVpcClassicLinkDnsSupport. -type DisableVpcClassicLinkDnsSupportOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s DisableVpcClassicLinkDnsSupportOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisableVpcClassicLinkDnsSupportOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DisableVpcClassicLink. -type DisableVpcClassicLinkInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DisableVpcClassicLinkInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisableVpcClassicLinkInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DisableVpcClassicLinkInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DisableVpcClassicLinkInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of DisableVpcClassicLink. -type DisableVpcClassicLinkOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s DisableVpcClassicLinkOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisableVpcClassicLinkOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DisassociateAddress. -type DisassociateAddressInput struct { - _ struct{} `type:"structure"` - - // [EC2-VPC] The association ID. Required for EC2-VPC. - AssociationId *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // [EC2-Classic] The Elastic IP address. Required for EC2-Classic. - PublicIp *string `type:"string"` -} - -// String returns the string representation -func (s DisassociateAddressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisassociateAddressInput) GoString() string { - return s.String() -} - -type DisassociateAddressOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DisassociateAddressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisassociateAddressOutput) GoString() string { - return s.String() -} - -// Contains the parameters for DisassociateRouteTable. -type DisassociateRouteTableInput struct { - _ struct{} `type:"structure"` - - // The association ID representing the current association between the route - // table and subnet. - // - // AssociationId is a required field - AssociationId *string `locationName:"associationId" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` -} - -// String returns the string representation -func (s DisassociateRouteTableInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisassociateRouteTableInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DisassociateRouteTableInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DisassociateRouteTableInput"} - if s.AssociationId == nil { - invalidParams.Add(request.NewErrParamRequired("AssociationId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DisassociateRouteTableOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DisassociateRouteTableOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisassociateRouteTableOutput) GoString() string { - return s.String() -} - -// Describes a disk image. -type DiskImage struct { - _ struct{} `type:"structure"` - - // A description of the disk image. - Description *string `type:"string"` - - // Information about the disk image. - Image *DiskImageDetail `type:"structure"` - - // Information about the volume. - Volume *VolumeDetail `type:"structure"` -} - -// String returns the string representation -func (s DiskImage) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DiskImage) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DiskImage) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DiskImage"} - if s.Image != nil { - if err := s.Image.Validate(); err != nil { - invalidParams.AddNested("Image", err.(request.ErrInvalidParams)) - } - } - if s.Volume != nil { - if err := s.Volume.Validate(); err != nil { - invalidParams.AddNested("Volume", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a disk image. -type DiskImageDescription struct { - _ struct{} `type:"structure"` - - // The checksum computed for the disk image. - Checksum *string `locationName:"checksum" type:"string"` - - // The disk image format. - // - // Format is a required field - Format *string `locationName:"format" type:"string" required:"true" enum:"DiskImageFormat"` - - // A presigned URL for the import manifest stored in Amazon S3. For information - // about creating a presigned URL for an Amazon S3 object, read the "Query String - // Request Authentication Alternative" section of the Authenticating REST Requests - // (http://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html) - // topic in the Amazon Simple Storage Service Developer Guide. - // - // For information about the import manifest referenced by this API action, - // see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html). - // - // ImportManifestUrl is a required field - ImportManifestUrl *string `locationName:"importManifestUrl" type:"string" required:"true"` - - // The size of the disk image, in GiB. - // - // Size is a required field - Size *int64 `locationName:"size" type:"long" required:"true"` -} - -// String returns the string representation -func (s DiskImageDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DiskImageDescription) GoString() string { - return s.String() -} - -// Describes a disk image. -type DiskImageDetail struct { - _ struct{} `type:"structure"` - - // The size of the disk image, in GiB. - // - // Bytes is a required field - Bytes *int64 `locationName:"bytes" type:"long" required:"true"` - - // The disk image format. - // - // Format is a required field - Format *string `locationName:"format" type:"string" required:"true" enum:"DiskImageFormat"` - - // A presigned URL for the import manifest stored in Amazon S3 and presented - // here as an Amazon S3 presigned URL. For information about creating a presigned - // URL for an Amazon S3 object, read the "Query String Request Authentication - // Alternative" section of the Authenticating REST Requests (http://docs.aws.amazon.com/AmazonS3/latest/dev/RESTAuthentication.html) - // topic in the Amazon Simple Storage Service Developer Guide. - // - // For information about the import manifest referenced by this API action, - // see VM Import Manifest (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/manifest.html). - // - // ImportManifestUrl is a required field - ImportManifestUrl *string `locationName:"importManifestUrl" type:"string" required:"true"` -} - -// String returns the string representation -func (s DiskImageDetail) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DiskImageDetail) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DiskImageDetail) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DiskImageDetail"} - if s.Bytes == nil { - invalidParams.Add(request.NewErrParamRequired("Bytes")) - } - if s.Format == nil { - invalidParams.Add(request.NewErrParamRequired("Format")) - } - if s.ImportManifestUrl == nil { - invalidParams.Add(request.NewErrParamRequired("ImportManifestUrl")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a disk image volume. -type DiskImageVolumeDescription struct { - _ struct{} `type:"structure"` - - // The volume identifier. - // - // Id is a required field - Id *string `locationName:"id" type:"string" required:"true"` - - // The size of the volume, in GiB. - Size *int64 `locationName:"size" type:"long"` -} - -// String returns the string representation -func (s DiskImageVolumeDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DiskImageVolumeDescription) GoString() string { - return s.String() -} - -// Describes a block device for an EBS volume. -type EbsBlockDevice struct { - _ struct{} `type:"structure"` - - // Indicates whether the EBS volume is deleted on instance termination. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - - // Indicates whether the EBS volume is encrypted. Encrypted Amazon EBS volumes - // may only be attached to instances that support Amazon EBS encryption. - Encrypted *bool `locationName:"encrypted" type:"boolean"` - - // The number of I/O operations per second (IOPS) that the volume supports. - // For io1, this represents the number of IOPS that are provisioned for the - // volume. For gp2, this represents the baseline performance of the volume and - // the rate at which the volume accumulates I/O credits for bursting. For more - // information about General Purpose SSD baseline performance, I/O credits, - // and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html) - // in the Amazon Elastic Compute Cloud User Guide. - // - // Constraint: Range is 100-20000 IOPS for io1 volumes and 100-10000 IOPS for - // gp2 volumes. - // - // Condition: This parameter is required for requests to create io1 volumes; - // it is not used in requests to create gp2, st1, sc1, or standard volumes. - Iops *int64 `locationName:"iops" type:"integer"` - - // The ID of the snapshot. - SnapshotId *string `locationName:"snapshotId" type:"string"` - - // The size of the volume, in GiB. - // - // Constraints: 1-16384 for General Purpose SSD (gp2), 4-16384 for Provisioned - // IOPS SSD (io1), 500-16384 for Throughput Optimized HDD (st1), 500-16384 for - // Cold HDD (sc1), and 1-1024 for Magnetic (standard) volumes. If you specify - // a snapshot, the volume size must be equal to or larger than the snapshot - // size. - // - // Default: If you're creating the volume from a snapshot and don't specify - // a volume size, the default is the snapshot size. - VolumeSize *int64 `locationName:"volumeSize" type:"integer"` - - // The volume type: gp2, io1, st1, sc1, or standard. - // - // Default: standard - VolumeType *string `locationName:"volumeType" type:"string" enum:"VolumeType"` -} - -// String returns the string representation -func (s EbsBlockDevice) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EbsBlockDevice) GoString() string { - return s.String() -} - -// Describes a parameter used to set up an EBS volume in a block device mapping. -type EbsInstanceBlockDevice struct { - _ struct{} `type:"structure"` - - // The time stamp when the attachment initiated. - AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"` - - // Indicates whether the volume is deleted on instance termination. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - - // The attachment state. - Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"` - - // The ID of the EBS volume. - VolumeId *string `locationName:"volumeId" type:"string"` -} - -// String returns the string representation -func (s EbsInstanceBlockDevice) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EbsInstanceBlockDevice) GoString() string { - return s.String() -} - -// Describes information used to set up an EBS volume specified in a block device -// mapping. -type EbsInstanceBlockDeviceSpecification struct { - _ struct{} `type:"structure"` - - // Indicates whether the volume is deleted on instance termination. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - - // The ID of the EBS volume. - VolumeId *string `locationName:"volumeId" type:"string"` -} - -// String returns the string representation -func (s EbsInstanceBlockDeviceSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EbsInstanceBlockDeviceSpecification) GoString() string { - return s.String() -} - -// Contains the parameters for EnableVgwRoutePropagation. -type EnableVgwRoutePropagationInput struct { - _ struct{} `type:"structure"` - - // The ID of the virtual private gateway. - // - // GatewayId is a required field - GatewayId *string `type:"string" required:"true"` - - // The ID of the route table. - // - // RouteTableId is a required field - RouteTableId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s EnableVgwRoutePropagationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVgwRoutePropagationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *EnableVgwRoutePropagationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "EnableVgwRoutePropagationInput"} - if s.GatewayId == nil { - invalidParams.Add(request.NewErrParamRequired("GatewayId")) - } - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type EnableVgwRoutePropagationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s EnableVgwRoutePropagationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVgwRoutePropagationOutput) GoString() string { - return s.String() -} - -// Contains the parameters for EnableVolumeIO. -type EnableVolumeIOInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the volume. - // - // VolumeId is a required field - VolumeId *string `locationName:"volumeId" type:"string" required:"true"` -} - -// String returns the string representation -func (s EnableVolumeIOInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVolumeIOInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *EnableVolumeIOInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "EnableVolumeIOInput"} - if s.VolumeId == nil { - invalidParams.Add(request.NewErrParamRequired("VolumeId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type EnableVolumeIOOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s EnableVolumeIOOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVolumeIOOutput) GoString() string { - return s.String() -} - -// Contains the parameters for EnableVpcClassicLinkDnsSupport. -type EnableVpcClassicLinkDnsSupportInput struct { - _ struct{} `type:"structure"` - - // The ID of the VPC. - VpcId *string `type:"string"` -} - -// String returns the string representation -func (s EnableVpcClassicLinkDnsSupportInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVpcClassicLinkDnsSupportInput) GoString() string { - return s.String() -} - -// Contains the output of EnableVpcClassicLinkDnsSupport. -type EnableVpcClassicLinkDnsSupportOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s EnableVpcClassicLinkDnsSupportOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVpcClassicLinkDnsSupportOutput) GoString() string { - return s.String() -} - -// Contains the parameters for EnableVpcClassicLink. -type EnableVpcClassicLinkInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s EnableVpcClassicLinkInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVpcClassicLinkInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *EnableVpcClassicLinkInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "EnableVpcClassicLinkInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of EnableVpcClassicLink. -type EnableVpcClassicLinkOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s EnableVpcClassicLinkOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableVpcClassicLinkOutput) GoString() string { - return s.String() -} - -// Describes a Spot fleet event. -type EventInformation struct { - _ struct{} `type:"structure"` - - // The description of the event. - EventDescription *string `locationName:"eventDescription" type:"string"` - - // The event. - // - // The following are the error events. - // - // iamFleetRoleInvalid - The Spot fleet did not have the required permissions - // either to launch or terminate an instance. - // - // launchSpecTemporarilyBlacklisted - The configuration is not valid and - // several attempts to launch instances have failed. For more information, see - // the description of the event. - // - // spotFleetRequestConfigurationInvalid - The configuration is not valid. - // For more information, see the description of the event. - // - // spotInstanceCountLimitExceeded - You've reached the limit on the number - // of Spot instances that you can launch. - // - // The following are the fleetRequestChange events. - // - // active - The Spot fleet has been validated and Amazon EC2 is attempting - // to maintain the target number of running Spot instances. - // - // cancelled - The Spot fleet is canceled and has no running Spot instances. - // The Spot fleet will be deleted two days after its instances were terminated. - // - // cancelled_running - The Spot fleet is canceled and will not launch additional - // Spot instances, but its existing Spot instances continue to run until they - // are interrupted or terminated. - // - // cancelled_terminating - The Spot fleet is canceled and its Spot instances - // are terminating. - // - // expired - The Spot fleet request has expired. A subsequent event indicates - // that the instances were terminated, if the request was created with TerminateInstancesWithExpiration - // set. - // - // modify_in_progress - A request to modify the Spot fleet request was accepted - // and is in progress. - // - // modify_successful - The Spot fleet request was modified. - // - // price_update - The bid price for a launch configuration was adjusted - // because it was too high. This change is permanent. - // - // submitted - The Spot fleet request is being evaluated and Amazon EC2 - // is preparing to launch the target number of Spot instances. - // - // The following are the instanceChange events. - // - // launched - A bid was fulfilled and a new instance was launched. - // - // terminated - An instance was terminated by the user. - EventSubType *string `locationName:"eventSubType" type:"string"` - - // The ID of the instance. This information is available only for instanceChange - // events. - InstanceId *string `locationName:"instanceId" type:"string"` -} - -// String returns the string representation -func (s EventInformation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EventInformation) GoString() string { - return s.String() -} - -// Describes an instance export task. -type ExportTask struct { - _ struct{} `type:"structure"` - - // A description of the resource being exported. - Description *string `locationName:"description" type:"string"` - - // The ID of the export task. - ExportTaskId *string `locationName:"exportTaskId" type:"string"` - - // Information about the export task. - ExportToS3Task *ExportToS3Task `locationName:"exportToS3" type:"structure"` - - // Information about the instance to export. - InstanceExportDetails *InstanceExportDetails `locationName:"instanceExport" type:"structure"` - - // The state of the export task. - State *string `locationName:"state" type:"string" enum:"ExportTaskState"` - - // The status message related to the export task. - StatusMessage *string `locationName:"statusMessage" type:"string"` -} - -// String returns the string representation -func (s ExportTask) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ExportTask) GoString() string { - return s.String() -} - -// Describes the format and location for an instance export task. -type ExportToS3Task struct { - _ struct{} `type:"structure"` - - // The container format used to combine disk images with metadata (such as OVF). - // If absent, only the disk image is exported. - ContainerFormat *string `locationName:"containerFormat" type:"string" enum:"ContainerFormat"` - - // The format for the exported image. - DiskImageFormat *string `locationName:"diskImageFormat" type:"string" enum:"DiskImageFormat"` - - // The S3 bucket for the destination image. The destination bucket must exist - // and grant WRITE and READ_ACP permissions to the AWS account vm-import-export@amazon.com. - S3Bucket *string `locationName:"s3Bucket" type:"string"` - - // The encryption key for your S3 bucket. - S3Key *string `locationName:"s3Key" type:"string"` -} - -// String returns the string representation -func (s ExportToS3Task) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ExportToS3Task) GoString() string { - return s.String() -} - -// Describes an instance export task. -type ExportToS3TaskSpecification struct { - _ struct{} `type:"structure"` - - // The container format used to combine disk images with metadata (such as OVF). - // If absent, only the disk image is exported. - ContainerFormat *string `locationName:"containerFormat" type:"string" enum:"ContainerFormat"` - - // The format for the exported image. - DiskImageFormat *string `locationName:"diskImageFormat" type:"string" enum:"DiskImageFormat"` - - // The S3 bucket for the destination image. The destination bucket must exist - // and grant WRITE and READ_ACP permissions to the AWS account vm-import-export@amazon.com. - S3Bucket *string `locationName:"s3Bucket" type:"string"` - - // The image is written to a single object in the S3 bucket at the S3 key s3prefix - // + exportTaskId + '.' + diskImageFormat. - S3Prefix *string `locationName:"s3Prefix" type:"string"` -} - -// String returns the string representation -func (s ExportToS3TaskSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ExportToS3TaskSpecification) GoString() string { - return s.String() -} - -// A filter name and value pair that is used to return a more specific list -// of results. Filters can be used to match a set of resources by various criteria, -// such as tags, attributes, or IDs. -type Filter struct { - _ struct{} `type:"structure"` - - // The name of the filter. Filter names are case-sensitive. - Name *string `type:"string"` - - // One or more filter values. Filter values are case-sensitive. - Values []*string `locationName:"Value" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s Filter) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Filter) GoString() string { - return s.String() -} - -// Describes a flow log. -type FlowLog struct { - _ struct{} `type:"structure"` - - // The date and time the flow log was created. - CreationTime *time.Time `locationName:"creationTime" type:"timestamp" timestampFormat:"iso8601"` - - // Information about the error that occurred. Rate limited indicates that CloudWatch - // logs throttling has been applied for one or more network interfaces, or that - // you've reached the limit on the number of CloudWatch Logs log groups that - // you can create. Access error indicates that the IAM role associated with - // the flow log does not have sufficient permissions to publish to CloudWatch - // Logs. Unknown error indicates an internal error. - DeliverLogsErrorMessage *string `locationName:"deliverLogsErrorMessage" type:"string"` - - // The ARN of the IAM role that posts logs to CloudWatch Logs. - DeliverLogsPermissionArn *string `locationName:"deliverLogsPermissionArn" type:"string"` - - // The status of the logs delivery (SUCCESS | FAILED). - DeliverLogsStatus *string `locationName:"deliverLogsStatus" type:"string"` - - // The flow log ID. - FlowLogId *string `locationName:"flowLogId" type:"string"` - - // The status of the flow log (ACTIVE). - FlowLogStatus *string `locationName:"flowLogStatus" type:"string"` - - // The name of the flow log group. - LogGroupName *string `locationName:"logGroupName" type:"string"` - - // The ID of the resource on which the flow log was created. - ResourceId *string `locationName:"resourceId" type:"string"` - - // The type of traffic captured for the flow log. - TrafficType *string `locationName:"trafficType" type:"string" enum:"TrafficType"` -} - -// String returns the string representation -func (s FlowLog) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s FlowLog) GoString() string { - return s.String() -} - -// Contains the parameters for GetConsoleOutput. -type GetConsoleOutputInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s GetConsoleOutputInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetConsoleOutputInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetConsoleOutputInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetConsoleOutputInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of GetConsoleOutput. -type GetConsoleOutputOutput struct { - _ struct{} `type:"structure"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The console output, Base64-encoded. If using a command line tool, the tool - // decodes the output for you. - Output *string `locationName:"output" type:"string"` - - // The time the output was last updated. - Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s GetConsoleOutputOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetConsoleOutputOutput) GoString() string { - return s.String() -} - -// Contains the parameters for the request. -type GetConsoleScreenshotInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `type:"string" required:"true"` - - // When set to true, acts as keystroke input and wakes up an instance that's - // in standby or "sleep" mode. - WakeUp *bool `type:"boolean"` -} - -// String returns the string representation -func (s GetConsoleScreenshotInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetConsoleScreenshotInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetConsoleScreenshotInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetConsoleScreenshotInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of the request. -type GetConsoleScreenshotOutput struct { - _ struct{} `type:"structure"` - - // The data that comprises the image. - ImageData *string `locationName:"imageData" type:"string"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` -} - -// String returns the string representation -func (s GetConsoleScreenshotOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetConsoleScreenshotOutput) GoString() string { - return s.String() -} - -type GetHostReservationPurchasePreviewInput struct { - _ struct{} `type:"structure"` - - // The ID/s of the Dedicated Host/s that the reservation will be associated - // with. - // - // HostIdSet is a required field - HostIdSet []*string `locationNameList:"item" type:"list" required:"true"` - - // The offering ID of the reservation. - // - // OfferingId is a required field - OfferingId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s GetHostReservationPurchasePreviewInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHostReservationPurchasePreviewInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetHostReservationPurchasePreviewInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetHostReservationPurchasePreviewInput"} - if s.HostIdSet == nil { - invalidParams.Add(request.NewErrParamRequired("HostIdSet")) - } - if s.OfferingId == nil { - invalidParams.Add(request.NewErrParamRequired("OfferingId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetHostReservationPurchasePreviewOutput struct { - _ struct{} `type:"structure"` - - // The currency in which the totalUpfrontPrice and totalHourlyPrice amounts - // are specified. At this time, the only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The purchase information of the Dedicated Host Reservation and the Dedicated - // Hosts associated with it. - Purchase []*Purchase `locationName:"purchase" type:"list"` - - // The potential total hourly price of the reservation per hour. - TotalHourlyPrice *string `locationName:"totalHourlyPrice" type:"string"` - - // The potential total upfront price. This is billed immediately. - TotalUpfrontPrice *string `locationName:"totalUpfrontPrice" type:"string"` -} - -// String returns the string representation -func (s GetHostReservationPurchasePreviewOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHostReservationPurchasePreviewOutput) GoString() string { - return s.String() -} - -// Contains the parameters for GetPasswordData. -type GetPasswordDataInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the Windows instance. - // - // InstanceId is a required field - InstanceId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s GetPasswordDataInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetPasswordDataInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetPasswordDataInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetPasswordDataInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of GetPasswordData. -type GetPasswordDataOutput struct { - _ struct{} `type:"structure"` - - // The ID of the Windows instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The password of the instance. - PasswordData *string `locationName:"passwordData" type:"string"` - - // The time the data was last updated. - Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s GetPasswordDataOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetPasswordDataOutput) GoString() string { - return s.String() -} - -// Contains the parameters for GetReservedInstanceExchangeQuote. -type GetReservedInstancesExchangeQuoteInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The ID/s of the Convertible Reserved Instances you want to exchange. - // - // ReservedInstanceIds is a required field - ReservedInstanceIds []*string `locationName:"ReservedInstanceId" locationNameList:"ReservedInstanceId" type:"list" required:"true"` - - // The configuration requirements of the Convertible Reserved Instances you - // want in exchange for your current Convertible Reserved Instances. - TargetConfigurations []*TargetConfigurationRequest `locationName:"TargetConfiguration" locationNameList:"TargetConfigurationRequest" type:"list"` -} - -// String returns the string representation -func (s GetReservedInstancesExchangeQuoteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetReservedInstancesExchangeQuoteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetReservedInstancesExchangeQuoteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetReservedInstancesExchangeQuoteInput"} - if s.ReservedInstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("ReservedInstanceIds")) - } - if s.TargetConfigurations != nil { - for i, v := range s.TargetConfigurations { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TargetConfigurations", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of GetReservedInstancesExchangeQuote. -type GetReservedInstancesExchangeQuoteOutput struct { - _ struct{} `type:"structure"` - - // The currency of the transaction. - CurrencyCode *string `locationName:"currencyCode" type:"string"` - - // If true, the exchange is valid. If false, the exchange cannot be performed. - IsValidExchange *bool `locationName:"isValidExchange" type:"boolean"` - - // The new end date of the reservation term. - OutputReservedInstancesWillExpireAt *time.Time `locationName:"outputReservedInstancesWillExpireAt" type:"timestamp" timestampFormat:"iso8601"` - - // The total true upfront charge for the exchange. - PaymentDue *string `locationName:"paymentDue" type:"string"` - - // The cost associated with the Reserved Instance. - ReservedInstanceValueRollup *ReservationValue `locationName:"reservedInstanceValueRollup" type:"structure"` - - // The configuration of your Convertible Reserved Instances. - ReservedInstanceValueSet []*ReservedInstanceReservationValue `locationName:"reservedInstanceValueSet" locationNameList:"item" type:"list"` - - // The cost associated with the Reserved Instance. - TargetConfigurationValueRollup *ReservationValue `locationName:"targetConfigurationValueRollup" type:"structure"` - - // The values of the target Convertible Reserved Instances. - TargetConfigurationValueSet []*TargetReservationValue `locationName:"targetConfigurationValueSet" locationNameList:"item" type:"list"` - - // Describes the reason why the exchange can not be completed. - ValidationFailureReason *string `locationName:"validationFailureReason" type:"string"` -} - -// String returns the string representation -func (s GetReservedInstancesExchangeQuoteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetReservedInstancesExchangeQuoteOutput) GoString() string { - return s.String() -} - -// Describes a security group. -type GroupIdentifier struct { - _ struct{} `type:"structure"` - - // The ID of the security group. - GroupId *string `locationName:"groupId" type:"string"` - - // The name of the security group. - GroupName *string `locationName:"groupName" type:"string"` -} - -// String returns the string representation -func (s GroupIdentifier) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GroupIdentifier) GoString() string { - return s.String() -} - -// Describes an event in the history of the Spot fleet request. -type HistoryRecord struct { - _ struct{} `type:"structure"` - - // Information about the event. - // - // EventInformation is a required field - EventInformation *EventInformation `locationName:"eventInformation" type:"structure" required:"true"` - - // The event type. - // - // error - Indicates an error with the Spot fleet request. - // - // fleetRequestChange - Indicates a change in the status or configuration - // of the Spot fleet request. - // - // instanceChange - Indicates that an instance was launched or terminated. - // - // EventType is a required field - EventType *string `locationName:"eventType" type:"string" required:"true" enum:"EventType"` - - // The date and time of the event, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // - // Timestamp is a required field - Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601" required:"true"` -} - -// String returns the string representation -func (s HistoryRecord) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HistoryRecord) GoString() string { - return s.String() -} - -// Describes the properties of the Dedicated Host. -type Host struct { - _ struct{} `type:"structure"` - - // Whether auto-placement is on or off. - AutoPlacement *string `locationName:"autoPlacement" type:"string" enum:"AutoPlacement"` - - // The Availability Zone of the Dedicated Host. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The number of new instances that can be launched onto the Dedicated Host. - AvailableCapacity *AvailableCapacity `locationName:"availableCapacity" type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure idempotency of the - // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html) - // in the Amazon Elastic Compute Cloud User Guide. - ClientToken *string `locationName:"clientToken" type:"string"` - - // The ID of the Dedicated Host. - HostId *string `locationName:"hostId" type:"string"` - - // The hardware specifications of the Dedicated Host. - HostProperties *HostProperties `locationName:"hostProperties" type:"structure"` - - // The reservation ID of the Dedicated Host. This returns a null response if - // the Dedicated Host doesn't have an associated reservation. - HostReservationId *string `locationName:"hostReservationId" type:"string"` - - // The IDs and instance type that are currently running on the Dedicated Host. - Instances []*HostInstance `locationName:"instances" locationNameList:"item" type:"list"` - - // The Dedicated Host's state. - State *string `locationName:"state" type:"string" enum:"AllocationState"` -} - -// String returns the string representation -func (s Host) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Host) GoString() string { - return s.String() -} - -// Describes an instance running on a Dedicated Host. -type HostInstance struct { - _ struct{} `type:"structure"` - - // the IDs of instances that are running on the Dedicated Host. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The instance type size (for example, m3.medium) of the running instance. - InstanceType *string `locationName:"instanceType" type:"string"` -} - -// String returns the string representation -func (s HostInstance) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HostInstance) GoString() string { - return s.String() -} - -// Details about the Dedicated Host Reservation offering. -type HostOffering struct { - _ struct{} `type:"structure"` - - // The currency of the offering. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The duration of the offering (in seconds). - Duration *int64 `locationName:"duration" type:"integer"` - - // The hourly price of the offering. - HourlyPrice *string `locationName:"hourlyPrice" type:"string"` - - // The instance family of the offering. - InstanceFamily *string `locationName:"instanceFamily" type:"string"` - - // The ID of the offering. - OfferingId *string `locationName:"offeringId" type:"string"` - - // The available payment option. - PaymentOption *string `locationName:"paymentOption" type:"string" enum:"PaymentOption"` - - // The upfront price of the offering. Does not apply to No Upfront offerings. - UpfrontPrice *string `locationName:"upfrontPrice" type:"string"` -} - -// String returns the string representation -func (s HostOffering) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HostOffering) GoString() string { - return s.String() -} - -// Describes properties of a Dedicated Host. -type HostProperties struct { - _ struct{} `type:"structure"` - - // The number of cores on the Dedicated Host. - Cores *int64 `locationName:"cores" type:"integer"` - - // The instance type size that the Dedicated Host supports (for example, m3.medium). - InstanceType *string `locationName:"instanceType" type:"string"` - - // The number of sockets on the Dedicated Host. - Sockets *int64 `locationName:"sockets" type:"integer"` - - // The number of vCPUs on the Dedicated Host. - TotalVCpus *int64 `locationName:"totalVCpus" type:"integer"` -} - -// String returns the string representation -func (s HostProperties) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HostProperties) GoString() string { - return s.String() -} - -// Details about the Dedicated Host Reservation and associated Dedicated Hosts. -type HostReservation struct { - _ struct{} `type:"structure"` - - // The number of Dedicated Hosts the reservation is associated with. - Count *int64 `locationName:"count" type:"integer"` - - // The currency in which the upfrontPrice and hourlyPrice amounts are specified. - // At this time, the only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The length of the reservation's term, specified in seconds. Can be 31536000 - // (1 year) | 94608000 (3 years). - Duration *int64 `locationName:"duration" type:"integer"` - - // The date and time that the reservation ends. - End *time.Time `locationName:"end" type:"timestamp" timestampFormat:"iso8601"` - - // The IDs of the Dedicated Hosts associated with the reservation. - HostIdSet []*string `locationName:"hostIdSet" locationNameList:"item" type:"list"` - - // The ID of the reservation that specifies the associated Dedicated Hosts. - HostReservationId *string `locationName:"hostReservationId" type:"string"` - - // The hourly price of the reservation. - HourlyPrice *string `locationName:"hourlyPrice" type:"string"` - - // The instance family of the Dedicated Host Reservation. The instance family - // on the Dedicated Host must be the same in order for it to benefit from the - // reservation. - InstanceFamily *string `locationName:"instanceFamily" type:"string"` - - // The ID of the reservation. This remains the same regardless of which Dedicated - // Hosts are associated with it. - OfferingId *string `locationName:"offeringId" type:"string"` - - // The payment option selected for this reservation. - PaymentOption *string `locationName:"paymentOption" type:"string" enum:"PaymentOption"` - - // The date and time that the reservation started. - Start *time.Time `locationName:"start" type:"timestamp" timestampFormat:"iso8601"` - - // The state of the reservation. - State *string `locationName:"state" type:"string" enum:"ReservationState"` - - // The upfront price of the reservation. - UpfrontPrice *string `locationName:"upfrontPrice" type:"string"` -} - -// String returns the string representation -func (s HostReservation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HostReservation) GoString() string { - return s.String() -} - -// Describes an IAM instance profile. -type IamInstanceProfile struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) of the instance profile. - Arn *string `locationName:"arn" type:"string"` - - // The ID of the instance profile. - Id *string `locationName:"id" type:"string"` -} - -// String returns the string representation -func (s IamInstanceProfile) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IamInstanceProfile) GoString() string { - return s.String() -} - -// Describes an IAM instance profile. -type IamInstanceProfileSpecification struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) of the instance profile. - Arn *string `locationName:"arn" type:"string"` - - // The name of the instance profile. - Name *string `locationName:"name" type:"string"` -} - -// String returns the string representation -func (s IamInstanceProfileSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IamInstanceProfileSpecification) GoString() string { - return s.String() -} - -// Describes the ICMP type and code. -type IcmpTypeCode struct { - _ struct{} `type:"structure"` - - // The ICMP type. A value of -1 means all types. - Code *int64 `locationName:"code" type:"integer"` - - // The ICMP code. A value of -1 means all codes for the specified ICMP type. - Type *int64 `locationName:"type" type:"integer"` -} - -// String returns the string representation -func (s IcmpTypeCode) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IcmpTypeCode) GoString() string { - return s.String() -} - -// Describes the ID format for a resource. -type IdFormat struct { - _ struct{} `type:"structure"` - - // The date in UTC at which you are permanently switched over to using longer - // IDs. If a deadline is not yet available for this resource type, this field - // is not returned. - Deadline *time.Time `locationName:"deadline" type:"timestamp" timestampFormat:"iso8601"` - - // The type of resource. - Resource *string `locationName:"resource" type:"string"` - - // Indicates whether longer IDs (17-character IDs) are enabled for the resource. - UseLongIds *bool `locationName:"useLongIds" type:"boolean"` -} - -// String returns the string representation -func (s IdFormat) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IdFormat) GoString() string { - return s.String() -} - -// Describes an image. -type Image struct { - _ struct{} `type:"structure"` - - // The architecture of the image. - Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"` - - // Any block device mapping entries. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // The date and time the image was created. - CreationDate *string `locationName:"creationDate" type:"string"` - - // The description of the AMI that was provided during image creation. - Description *string `locationName:"description" type:"string"` - - // Specifies whether enhanced networking with ENA is enabled. - EnaSupport *bool `locationName:"enaSupport" type:"boolean"` - - // The hypervisor type of the image. - Hypervisor *string `locationName:"hypervisor" type:"string" enum:"HypervisorType"` - - // The ID of the AMI. - ImageId *string `locationName:"imageId" type:"string"` - - // The location of the AMI. - ImageLocation *string `locationName:"imageLocation" type:"string"` - - // The AWS account alias (for example, amazon, self) or the AWS account ID of - // the AMI owner. - ImageOwnerAlias *string `locationName:"imageOwnerAlias" type:"string"` - - // The type of image. - ImageType *string `locationName:"imageType" type:"string" enum:"ImageTypeValues"` - - // The kernel associated with the image, if any. Only applicable for machine - // images. - KernelId *string `locationName:"kernelId" type:"string"` - - // The name of the AMI that was provided during image creation. - Name *string `locationName:"name" type:"string"` - - // The AWS account ID of the image owner. - OwnerId *string `locationName:"imageOwnerId" type:"string"` - - // The value is Windows for Windows AMIs; otherwise blank. - Platform *string `locationName:"platform" type:"string" enum:"PlatformValues"` - - // Any product codes associated with the AMI. - ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"` - - // Indicates whether the image has public launch permissions. The value is true - // if this image has public launch permissions or false if it has only implicit - // and explicit launch permissions. - Public *bool `locationName:"isPublic" type:"boolean"` - - // The RAM disk associated with the image, if any. Only applicable for machine - // images. - RamdiskId *string `locationName:"ramdiskId" type:"string"` - - // The device name of the root device (for example, /dev/sda1 or /dev/xvda). - RootDeviceName *string `locationName:"rootDeviceName" type:"string"` - - // The type of root device used by the AMI. The AMI can use an EBS volume or - // an instance store volume. - RootDeviceType *string `locationName:"rootDeviceType" type:"string" enum:"DeviceType"` - - // Specifies whether enhanced networking with the Intel 82599 Virtual Function - // interface is enabled. - SriovNetSupport *string `locationName:"sriovNetSupport" type:"string"` - - // The current state of the AMI. If the state is available, the image is successfully - // registered and can be used to launch an instance. - State *string `locationName:"imageState" type:"string" enum:"ImageState"` - - // The reason for the state change. - StateReason *StateReason `locationName:"stateReason" type:"structure"` - - // Any tags assigned to the image. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The type of virtualization of the AMI. - VirtualizationType *string `locationName:"virtualizationType" type:"string" enum:"VirtualizationType"` -} - -// String returns the string representation -func (s Image) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Image) GoString() string { - return s.String() -} - -// Describes the disk container object for an import image task. -type ImageDiskContainer struct { - _ struct{} `type:"structure"` - - // The description of the disk image. - Description *string `type:"string"` - - // The block device mapping for the disk. - DeviceName *string `type:"string"` - - // The format of the disk image being imported. - // - // Valid values: RAW | VHD | VMDK | OVA - Format *string `type:"string"` - - // The ID of the EBS snapshot to be used for importing the snapshot. - SnapshotId *string `type:"string"` - - // The URL to the Amazon S3-based disk image being imported. The URL can either - // be a https URL (https://..) or an Amazon S3 URL (s3://..) - Url *string `type:"string"` - - // The S3 bucket for the disk image. - UserBucket *UserBucket `type:"structure"` -} - -// String returns the string representation -func (s ImageDiskContainer) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImageDiskContainer) GoString() string { - return s.String() -} - -// Contains the parameters for ImportImage. -type ImportImageInput struct { - _ struct{} `type:"structure"` - - // The architecture of the virtual machine. - // - // Valid values: i386 | x86_64 - Architecture *string `type:"string"` - - // The client-specific data. - ClientData *ClientData `type:"structure"` - - // The token to enable idempotency for VM import requests. - ClientToken *string `type:"string"` - - // A description string for the import image task. - Description *string `type:"string"` - - // Information about the disk containers. - DiskContainers []*ImageDiskContainer `locationName:"DiskContainer" locationNameList:"item" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The target hypervisor platform. - // - // Valid values: xen - Hypervisor *string `type:"string"` - - // The license type to be used for the Amazon Machine Image (AMI) after importing. - // - // Note: You may only use BYOL if you have existing licenses with rights to - // use these licenses in a third party cloud like AWS. For more information, - // see Prerequisites (http://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.html#prerequisites-image) - // in the VM Import/Export User Guide. - // - // Valid values: AWS | BYOL - LicenseType *string `type:"string"` - - // The operating system of the virtual machine. - // - // Valid values: Windows | Linux - Platform *string `type:"string"` - - // The name of the role to use when not using the default role, 'vmimport'. - RoleName *string `type:"string"` -} - -// String returns the string representation -func (s ImportImageInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportImageInput) GoString() string { - return s.String() -} - -// Contains the output for ImportImage. -type ImportImageOutput struct { - _ struct{} `type:"structure"` - - // The architecture of the virtual machine. - Architecture *string `locationName:"architecture" type:"string"` - - // A description of the import task. - Description *string `locationName:"description" type:"string"` - - // The target hypervisor of the import task. - Hypervisor *string `locationName:"hypervisor" type:"string"` - - // The ID of the Amazon Machine Image (AMI) created by the import task. - ImageId *string `locationName:"imageId" type:"string"` - - // The task ID of the import image task. - ImportTaskId *string `locationName:"importTaskId" type:"string"` - - // The license type of the virtual machine. - LicenseType *string `locationName:"licenseType" type:"string"` - - // The operating system of the virtual machine. - Platform *string `locationName:"platform" type:"string"` - - // The progress of the task. - Progress *string `locationName:"progress" type:"string"` - - // Information about the snapshots. - SnapshotDetails []*SnapshotDetail `locationName:"snapshotDetailSet" locationNameList:"item" type:"list"` - - // A brief status of the task. - Status *string `locationName:"status" type:"string"` - - // A detailed status message of the import task. - StatusMessage *string `locationName:"statusMessage" type:"string"` -} - -// String returns the string representation -func (s ImportImageOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportImageOutput) GoString() string { - return s.String() -} - -// Describes an import image task. -type ImportImageTask struct { - _ struct{} `type:"structure"` - - // The architecture of the virtual machine. - // - // Valid values: i386 | x86_64 - Architecture *string `locationName:"architecture" type:"string"` - - // A description of the import task. - Description *string `locationName:"description" type:"string"` - - // The target hypervisor for the import task. - // - // Valid values: xen - Hypervisor *string `locationName:"hypervisor" type:"string"` - - // The ID of the Amazon Machine Image (AMI) of the imported virtual machine. - ImageId *string `locationName:"imageId" type:"string"` - - // The ID of the import image task. - ImportTaskId *string `locationName:"importTaskId" type:"string"` - - // The license type of the virtual machine. - LicenseType *string `locationName:"licenseType" type:"string"` - - // The description string for the import image task. - Platform *string `locationName:"platform" type:"string"` - - // The percentage of progress of the import image task. - Progress *string `locationName:"progress" type:"string"` - - // Information about the snapshots. - SnapshotDetails []*SnapshotDetail `locationName:"snapshotDetailSet" locationNameList:"item" type:"list"` - - // A brief status for the import image task. - Status *string `locationName:"status" type:"string"` - - // A descriptive status message for the import image task. - StatusMessage *string `locationName:"statusMessage" type:"string"` -} - -// String returns the string representation -func (s ImportImageTask) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportImageTask) GoString() string { - return s.String() -} - -// Contains the parameters for ImportInstance. -type ImportInstanceInput struct { - _ struct{} `type:"structure"` - - // A description for the instance being imported. - Description *string `locationName:"description" type:"string"` - - // The disk image. - DiskImages []*DiskImage `locationName:"diskImage" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The launch specification. - LaunchSpecification *ImportInstanceLaunchSpecification `locationName:"launchSpecification" type:"structure"` - - // The instance operating system. - // - // Platform is a required field - Platform *string `locationName:"platform" type:"string" required:"true" enum:"PlatformValues"` -} - -// String returns the string representation -func (s ImportInstanceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportInstanceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ImportInstanceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ImportInstanceInput"} - if s.Platform == nil { - invalidParams.Add(request.NewErrParamRequired("Platform")) - } - if s.DiskImages != nil { - for i, v := range s.DiskImages { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "DiskImages", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes the launch specification for VM import. -type ImportInstanceLaunchSpecification struct { - _ struct{} `type:"structure"` - - // Reserved. - AdditionalInfo *string `locationName:"additionalInfo" type:"string"` - - // The architecture of the instance. - Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"` - - // One or more security group IDs. - GroupIds []*string `locationName:"GroupId" locationNameList:"SecurityGroupId" type:"list"` - - // One or more security group names. - GroupNames []*string `locationName:"GroupName" locationNameList:"SecurityGroup" type:"list"` - - // Indicates whether an instance stops or terminates when you initiate shutdown - // from the instance (using the operating system command for system shutdown). - InstanceInitiatedShutdownBehavior *string `locationName:"instanceInitiatedShutdownBehavior" type:"string" enum:"ShutdownBehavior"` - - // The instance type. For more information about the instance types that you - // can import, see Instance Types (http://docs.aws.amazon.com/vm-import/latest/userguide/vmimport-image-import.html#vmimport-instance-types) - // in the VM Import/Export User Guide. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // Indicates whether monitoring is enabled. - Monitoring *bool `locationName:"monitoring" type:"boolean"` - - // The placement information for the instance. - Placement *Placement `locationName:"placement" type:"structure"` - - // [EC2-VPC] An available IP address from the IP address range of the subnet. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // [EC2-VPC] The ID of the subnet in which to launch the instance. - SubnetId *string `locationName:"subnetId" type:"string"` - - // The user data to make available to the instance. If you are using an AWS - // SDK or command line tool, Base64-encoding is performed for you, and you can - // load the text from a file. Otherwise, you must provide Base64-encoded text. - UserData *UserData `locationName:"userData" type:"structure"` -} - -// String returns the string representation -func (s ImportInstanceLaunchSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportInstanceLaunchSpecification) GoString() string { - return s.String() -} - -// Contains the output for ImportInstance. -type ImportInstanceOutput struct { - _ struct{} `type:"structure"` - - // Information about the conversion task. - ConversionTask *ConversionTask `locationName:"conversionTask" type:"structure"` -} - -// String returns the string representation -func (s ImportInstanceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportInstanceOutput) GoString() string { - return s.String() -} - -// Describes an import instance task. -type ImportInstanceTaskDetails struct { - _ struct{} `type:"structure"` - - // A description of the task. - Description *string `locationName:"description" type:"string"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The instance operating system. - Platform *string `locationName:"platform" type:"string" enum:"PlatformValues"` - - // One or more volumes. - // - // Volumes is a required field - Volumes []*ImportInstanceVolumeDetailItem `locationName:"volumes" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s ImportInstanceTaskDetails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportInstanceTaskDetails) GoString() string { - return s.String() -} - -// Describes an import volume task. -type ImportInstanceVolumeDetailItem struct { - _ struct{} `type:"structure"` - - // The Availability Zone where the resulting instance will reside. - // - // AvailabilityZone is a required field - AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"` - - // The number of bytes converted so far. - // - // BytesConverted is a required field - BytesConverted *int64 `locationName:"bytesConverted" type:"long" required:"true"` - - // A description of the task. - Description *string `locationName:"description" type:"string"` - - // The image. - // - // Image is a required field - Image *DiskImageDescription `locationName:"image" type:"structure" required:"true"` - - // The status of the import of this particular disk image. - // - // Status is a required field - Status *string `locationName:"status" type:"string" required:"true"` - - // The status information or errors related to the disk image. - StatusMessage *string `locationName:"statusMessage" type:"string"` - - // The volume. - // - // Volume is a required field - Volume *DiskImageVolumeDescription `locationName:"volume" type:"structure" required:"true"` -} - -// String returns the string representation -func (s ImportInstanceVolumeDetailItem) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportInstanceVolumeDetailItem) GoString() string { - return s.String() -} - -// Contains the parameters for ImportKeyPair. -type ImportKeyPairInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // A unique name for the key pair. - // - // KeyName is a required field - KeyName *string `locationName:"keyName" type:"string" required:"true"` - - // The public key. For API calls, the text must be base64-encoded. For command - // line tools, base64 encoding is performed for you. - // - // PublicKeyMaterial is automatically base64 encoded/decoded by the SDK. - // - // PublicKeyMaterial is a required field - PublicKeyMaterial []byte `locationName:"publicKeyMaterial" type:"blob" required:"true"` -} - -// String returns the string representation -func (s ImportKeyPairInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportKeyPairInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ImportKeyPairInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ImportKeyPairInput"} - if s.KeyName == nil { - invalidParams.Add(request.NewErrParamRequired("KeyName")) - } - if s.PublicKeyMaterial == nil { - invalidParams.Add(request.NewErrParamRequired("PublicKeyMaterial")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ImportKeyPair. -type ImportKeyPairOutput struct { - _ struct{} `type:"structure"` - - // The MD5 public key fingerprint as specified in section 4 of RFC 4716. - KeyFingerprint *string `locationName:"keyFingerprint" type:"string"` - - // The key pair name you provided. - KeyName *string `locationName:"keyName" type:"string"` -} - -// String returns the string representation -func (s ImportKeyPairOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportKeyPairOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ImportSnapshot. -type ImportSnapshotInput struct { - _ struct{} `type:"structure"` - - // The client-specific data. - ClientData *ClientData `type:"structure"` - - // Token to enable idempotency for VM import requests. - ClientToken *string `type:"string"` - - // The description string for the import snapshot task. - Description *string `type:"string"` - - // Information about the disk container. - DiskContainer *SnapshotDiskContainer `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The name of the role to use when not using the default role, 'vmimport'. - RoleName *string `type:"string"` -} - -// String returns the string representation -func (s ImportSnapshotInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportSnapshotInput) GoString() string { - return s.String() -} - -// Contains the output for ImportSnapshot. -type ImportSnapshotOutput struct { - _ struct{} `type:"structure"` - - // A description of the import snapshot task. - Description *string `locationName:"description" type:"string"` - - // The ID of the import snapshot task. - ImportTaskId *string `locationName:"importTaskId" type:"string"` - - // Information about the import snapshot task. - SnapshotTaskDetail *SnapshotTaskDetail `locationName:"snapshotTaskDetail" type:"structure"` -} - -// String returns the string representation -func (s ImportSnapshotOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportSnapshotOutput) GoString() string { - return s.String() -} - -// Describes an import snapshot task. -type ImportSnapshotTask struct { - _ struct{} `type:"structure"` - - // A description of the import snapshot task. - Description *string `locationName:"description" type:"string"` - - // The ID of the import snapshot task. - ImportTaskId *string `locationName:"importTaskId" type:"string"` - - // Describes an import snapshot task. - SnapshotTaskDetail *SnapshotTaskDetail `locationName:"snapshotTaskDetail" type:"structure"` -} - -// String returns the string representation -func (s ImportSnapshotTask) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportSnapshotTask) GoString() string { - return s.String() -} - -// Contains the parameters for ImportVolume. -type ImportVolumeInput struct { - _ struct{} `type:"structure"` - - // The Availability Zone for the resulting EBS volume. - // - // AvailabilityZone is a required field - AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"` - - // A description of the volume. - Description *string `locationName:"description" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The disk image. - // - // Image is a required field - Image *DiskImageDetail `locationName:"image" type:"structure" required:"true"` - - // The volume size. - // - // Volume is a required field - Volume *VolumeDetail `locationName:"volume" type:"structure" required:"true"` -} - -// String returns the string representation -func (s ImportVolumeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportVolumeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ImportVolumeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ImportVolumeInput"} - if s.AvailabilityZone == nil { - invalidParams.Add(request.NewErrParamRequired("AvailabilityZone")) - } - if s.Image == nil { - invalidParams.Add(request.NewErrParamRequired("Image")) - } - if s.Volume == nil { - invalidParams.Add(request.NewErrParamRequired("Volume")) - } - if s.Image != nil { - if err := s.Image.Validate(); err != nil { - invalidParams.AddNested("Image", err.(request.ErrInvalidParams)) - } - } - if s.Volume != nil { - if err := s.Volume.Validate(); err != nil { - invalidParams.AddNested("Volume", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output for ImportVolume. -type ImportVolumeOutput struct { - _ struct{} `type:"structure"` - - // Information about the conversion task. - ConversionTask *ConversionTask `locationName:"conversionTask" type:"structure"` -} - -// String returns the string representation -func (s ImportVolumeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportVolumeOutput) GoString() string { - return s.String() -} - -// Describes an import volume task. -type ImportVolumeTaskDetails struct { - _ struct{} `type:"structure"` - - // The Availability Zone where the resulting volume will reside. - // - // AvailabilityZone is a required field - AvailabilityZone *string `locationName:"availabilityZone" type:"string" required:"true"` - - // The number of bytes converted so far. - // - // BytesConverted is a required field - BytesConverted *int64 `locationName:"bytesConverted" type:"long" required:"true"` - - // The description you provided when starting the import volume task. - Description *string `locationName:"description" type:"string"` - - // The image. - // - // Image is a required field - Image *DiskImageDescription `locationName:"image" type:"structure" required:"true"` - - // The volume. - // - // Volume is a required field - Volume *DiskImageVolumeDescription `locationName:"volume" type:"structure" required:"true"` -} - -// String returns the string representation -func (s ImportVolumeTaskDetails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ImportVolumeTaskDetails) GoString() string { - return s.String() -} - -// Describes an instance. -type Instance struct { - _ struct{} `type:"structure"` - - // The AMI launch index, which can be used to find this instance in the launch - // group. - AmiLaunchIndex *int64 `locationName:"amiLaunchIndex" type:"integer"` - - // The architecture of the image. - Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"` - - // Any block device mapping entries for the instance. - BlockDeviceMappings []*InstanceBlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // The idempotency token you provided when you launched the instance, if applicable. - ClientToken *string `locationName:"clientToken" type:"string"` - - // Indicates whether the instance is optimized for EBS I/O. This optimization - // provides dedicated throughput to Amazon EBS and an optimized configuration - // stack to provide optimal I/O performance. This optimization isn't available - // with all instance types. Additional usage charges apply when using an EBS - // Optimized instance. - EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"` - - // Specifies whether enhanced networking with ENA is enabled. - EnaSupport *bool `locationName:"enaSupport" type:"boolean"` - - // The hypervisor type of the instance. - Hypervisor *string `locationName:"hypervisor" type:"string" enum:"HypervisorType"` - - // The IAM instance profile associated with the instance, if applicable. - IamInstanceProfile *IamInstanceProfile `locationName:"iamInstanceProfile" type:"structure"` - - // The ID of the AMI used to launch the instance. - ImageId *string `locationName:"imageId" type:"string"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // Indicates whether this is a Spot instance or a Scheduled Instance. - InstanceLifecycle *string `locationName:"instanceLifecycle" type:"string" enum:"InstanceLifecycleType"` - - // The instance type. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // The kernel associated with this instance, if applicable. - KernelId *string `locationName:"kernelId" type:"string"` - - // The name of the key pair, if this instance was launched with an associated - // key pair. - KeyName *string `locationName:"keyName" type:"string"` - - // The time the instance was launched. - LaunchTime *time.Time `locationName:"launchTime" type:"timestamp" timestampFormat:"iso8601"` - - // The monitoring information for the instance. - Monitoring *Monitoring `locationName:"monitoring" type:"structure"` - - // [EC2-VPC] One or more network interfaces for the instance. - NetworkInterfaces []*InstanceNetworkInterface `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"` - - // The location where the instance launched, if applicable. - Placement *Placement `locationName:"placement" type:"structure"` - - // The value is Windows for Windows instances; otherwise blank. - Platform *string `locationName:"platform" type:"string" enum:"PlatformValues"` - - // The private DNS name assigned to the instance. This DNS name can only be - // used inside the Amazon EC2 network. This name is not available until the - // instance enters the running state. For EC2-VPC, this name is only available - // if you've enabled DNS hostnames for your VPC. - PrivateDnsName *string `locationName:"privateDnsName" type:"string"` - - // The private IP address assigned to the instance. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // The product codes attached to this instance, if applicable. - ProductCodes []*ProductCode `locationName:"productCodes" locationNameList:"item" type:"list"` - - // The public DNS name assigned to the instance. This name is not available - // until the instance enters the running state. For EC2-VPC, this name is only - // available if you've enabled DNS hostnames for your VPC. - PublicDnsName *string `locationName:"dnsName" type:"string"` - - // The public IP address assigned to the instance, if applicable. - PublicIpAddress *string `locationName:"ipAddress" type:"string"` - - // The RAM disk associated with this instance, if applicable. - RamdiskId *string `locationName:"ramdiskId" type:"string"` - - // The root device name (for example, /dev/sda1 or /dev/xvda). - RootDeviceName *string `locationName:"rootDeviceName" type:"string"` - - // The root device type used by the AMI. The AMI can use an EBS volume or an - // instance store volume. - RootDeviceType *string `locationName:"rootDeviceType" type:"string" enum:"DeviceType"` - - // One or more security groups for the instance. - SecurityGroups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // Specifies whether to enable an instance launched in a VPC to perform NAT. - // This controls whether source/destination checking is enabled on the instance. - // A value of true means checking is enabled, and false means checking is disabled. - // The value must be false for the instance to perform NAT. For more information, - // see NAT Instances (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html) - // in the Amazon Virtual Private Cloud User Guide. - SourceDestCheck *bool `locationName:"sourceDestCheck" type:"boolean"` - - // If the request is a Spot instance request, the ID of the request. - SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"` - - // Specifies whether enhanced networking with the Intel 82599 Virtual Function - // interface is enabled. - SriovNetSupport *string `locationName:"sriovNetSupport" type:"string"` - - // The current state of the instance. - State *InstanceState `locationName:"instanceState" type:"structure"` - - // The reason for the most recent state transition. - StateReason *StateReason `locationName:"stateReason" type:"structure"` - - // The reason for the most recent state transition. This might be an empty string. - StateTransitionReason *string `locationName:"reason" type:"string"` - - // [EC2-VPC] The ID of the subnet in which the instance is running. - SubnetId *string `locationName:"subnetId" type:"string"` - - // Any tags assigned to the instance. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The virtualization type of the instance. - VirtualizationType *string `locationName:"virtualizationType" type:"string" enum:"VirtualizationType"` - - // [EC2-VPC] The ID of the VPC in which the instance is running. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s Instance) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Instance) GoString() string { - return s.String() -} - -// Describes a block device mapping. -type InstanceBlockDeviceMapping struct { - _ struct{} `type:"structure"` - - // The device name exposed to the instance (for example, /dev/sdh or xvdh). - DeviceName *string `locationName:"deviceName" type:"string"` - - // Parameters used to automatically set up EBS volumes when the instance is - // launched. - Ebs *EbsInstanceBlockDevice `locationName:"ebs" type:"structure"` -} - -// String returns the string representation -func (s InstanceBlockDeviceMapping) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceBlockDeviceMapping) GoString() string { - return s.String() -} - -// Describes a block device mapping entry. -type InstanceBlockDeviceMappingSpecification struct { - _ struct{} `type:"structure"` - - // The device name exposed to the instance (for example, /dev/sdh or xvdh). - DeviceName *string `locationName:"deviceName" type:"string"` - - // Parameters used to automatically set up EBS volumes when the instance is - // launched. - Ebs *EbsInstanceBlockDeviceSpecification `locationName:"ebs" type:"structure"` - - // suppress the specified device included in the block device mapping. - NoDevice *string `locationName:"noDevice" type:"string"` - - // The virtual device name. - VirtualName *string `locationName:"virtualName" type:"string"` -} - -// String returns the string representation -func (s InstanceBlockDeviceMappingSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceBlockDeviceMappingSpecification) GoString() string { - return s.String() -} - -// Information about the instance type that the Dedicated Host supports. -type InstanceCapacity struct { - _ struct{} `type:"structure"` - - // The number of instances that can still be launched onto the Dedicated Host. - AvailableCapacity *int64 `locationName:"availableCapacity" type:"integer"` - - // The instance type size supported by the Dedicated Host. - InstanceType *string `locationName:"instanceType" type:"string"` - - // The total number of instances that can be launched onto the Dedicated Host. - TotalCapacity *int64 `locationName:"totalCapacity" type:"integer"` -} - -// String returns the string representation -func (s InstanceCapacity) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceCapacity) GoString() string { - return s.String() -} - -// Describes a Reserved Instance listing state. -type InstanceCount struct { - _ struct{} `type:"structure"` - - // The number of listed Reserved Instances in the state specified by the state. - InstanceCount *int64 `locationName:"instanceCount" type:"integer"` - - // The states of the listed Reserved Instances. - State *string `locationName:"state" type:"string" enum:"ListingState"` -} - -// String returns the string representation -func (s InstanceCount) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceCount) GoString() string { - return s.String() -} - -// Describes an instance to export. -type InstanceExportDetails struct { - _ struct{} `type:"structure"` - - // The ID of the resource being exported. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The target virtualization environment. - TargetEnvironment *string `locationName:"targetEnvironment" type:"string" enum:"ExportEnvironment"` -} - -// String returns the string representation -func (s InstanceExportDetails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceExportDetails) GoString() string { - return s.String() -} - -// Describes the monitoring information of the instance. -type InstanceMonitoring struct { - _ struct{} `type:"structure"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The monitoring information. - Monitoring *Monitoring `locationName:"monitoring" type:"structure"` -} - -// String returns the string representation -func (s InstanceMonitoring) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceMonitoring) GoString() string { - return s.String() -} - -// Describes a network interface. -type InstanceNetworkInterface struct { - _ struct{} `type:"structure"` - - // The association information for an Elastic IP associated with the network - // interface. - Association *InstanceNetworkInterfaceAssociation `locationName:"association" type:"structure"` - - // The network interface attachment. - Attachment *InstanceNetworkInterfaceAttachment `locationName:"attachment" type:"structure"` - - // The description. - Description *string `locationName:"description" type:"string"` - - // One or more security groups. - Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // The MAC address. - MacAddress *string `locationName:"macAddress" type:"string"` - - // The ID of the network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // The ID of the AWS account that created the network interface. - OwnerId *string `locationName:"ownerId" type:"string"` - - // The private DNS name. - PrivateDnsName *string `locationName:"privateDnsName" type:"string"` - - // The IP address of the network interface within the subnet. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // The private IP addresses associated with the network interface. - PrivateIpAddresses []*InstancePrivateIpAddress `locationName:"privateIpAddressesSet" locationNameList:"item" type:"list"` - - // Indicates whether to validate network traffic to or from this network interface. - SourceDestCheck *bool `locationName:"sourceDestCheck" type:"boolean"` - - // The status of the network interface. - Status *string `locationName:"status" type:"string" enum:"NetworkInterfaceStatus"` - - // The ID of the subnet. - SubnetId *string `locationName:"subnetId" type:"string"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s InstanceNetworkInterface) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceNetworkInterface) GoString() string { - return s.String() -} - -// Describes association information for an Elastic IP address. -type InstanceNetworkInterfaceAssociation struct { - _ struct{} `type:"structure"` - - // The ID of the owner of the Elastic IP address. - IpOwnerId *string `locationName:"ipOwnerId" type:"string"` - - // The public DNS name. - PublicDnsName *string `locationName:"publicDnsName" type:"string"` - - // The public IP address or Elastic IP address bound to the network interface. - PublicIp *string `locationName:"publicIp" type:"string"` -} - -// String returns the string representation -func (s InstanceNetworkInterfaceAssociation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceNetworkInterfaceAssociation) GoString() string { - return s.String() -} - -// Describes a network interface attachment. -type InstanceNetworkInterfaceAttachment struct { - _ struct{} `type:"structure"` - - // The time stamp when the attachment initiated. - AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"` - - // The ID of the network interface attachment. - AttachmentId *string `locationName:"attachmentId" type:"string"` - - // Indicates whether the network interface is deleted when the instance is terminated. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - - // The index of the device on the instance for the network interface attachment. - DeviceIndex *int64 `locationName:"deviceIndex" type:"integer"` - - // The attachment state. - Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"` -} - -// String returns the string representation -func (s InstanceNetworkInterfaceAttachment) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceNetworkInterfaceAttachment) GoString() string { - return s.String() -} - -// Describes a network interface. -type InstanceNetworkInterfaceSpecification struct { - _ struct{} `type:"structure"` - - // Indicates whether to assign a public IP address to an instance you launch - // in a VPC. The public IP address can only be assigned to a network interface - // for eth0, and can only be assigned to a new network interface, not an existing - // one. You cannot specify more than one network interface in the request. If - // launching into a default subnet, the default value is true. - AssociatePublicIpAddress *bool `locationName:"associatePublicIpAddress" type:"boolean"` - - // If set to true, the interface is deleted when the instance is terminated. - // You can specify true only if creating a new network interface when launching - // an instance. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - - // The description of the network interface. Applies only if creating a network - // interface when launching an instance. - Description *string `locationName:"description" type:"string"` - - // The index of the device on the instance for the network interface attachment. - // If you are specifying a network interface in a RunInstances request, you - // must provide the device index. - DeviceIndex *int64 `locationName:"deviceIndex" type:"integer"` - - // The IDs of the security groups for the network interface. Applies only if - // creating a network interface when launching an instance. - Groups []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"` - - // The ID of the network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // The private IP address of the network interface. Applies only if creating - // a network interface when launching an instance. You cannot specify this option - // if you're launching more than one instance in a RunInstances request. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // One or more private IP addresses to assign to the network interface. Only - // one private IP address can be designated as primary. You cannot specify this - // option if you're launching more than one instance in a RunInstances request. - PrivateIpAddresses []*PrivateIpAddressSpecification `locationName:"privateIpAddressesSet" queryName:"PrivateIpAddresses" locationNameList:"item" type:"list"` - - // The number of secondary private IP addresses. You can't specify this option - // and specify more than one private IP address using the private IP addresses - // option. You cannot specify this option if you're launching more than one - // instance in a RunInstances request. - SecondaryPrivateIpAddressCount *int64 `locationName:"secondaryPrivateIpAddressCount" type:"integer"` - - // The ID of the subnet associated with the network string. Applies only if - // creating a network interface when launching an instance. - SubnetId *string `locationName:"subnetId" type:"string"` -} - -// String returns the string representation -func (s InstanceNetworkInterfaceSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceNetworkInterfaceSpecification) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *InstanceNetworkInterfaceSpecification) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "InstanceNetworkInterfaceSpecification"} - if s.PrivateIpAddresses != nil { - for i, v := range s.PrivateIpAddresses { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "PrivateIpAddresses", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a private IP address. -type InstancePrivateIpAddress struct { - _ struct{} `type:"structure"` - - // The association information for an Elastic IP address for the network interface. - Association *InstanceNetworkInterfaceAssociation `locationName:"association" type:"structure"` - - // Indicates whether this IP address is the primary private IP address of the - // network interface. - Primary *bool `locationName:"primary" type:"boolean"` - - // The private DNS name. - PrivateDnsName *string `locationName:"privateDnsName" type:"string"` - - // The private IP address of the network interface. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` -} - -// String returns the string representation -func (s InstancePrivateIpAddress) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstancePrivateIpAddress) GoString() string { - return s.String() -} - -// Describes the current state of the instance. -type InstanceState struct { - _ struct{} `type:"structure"` - - // The low byte represents the state. The high byte is an opaque internal value - // and should be ignored. - // - // 0 : pending - // - // 16 : running - // - // 32 : shutting-down - // - // 48 : terminated - // - // 64 : stopping - // - // 80 : stopped - Code *int64 `locationName:"code" type:"integer"` - - // The current state of the instance. - Name *string `locationName:"name" type:"string" enum:"InstanceStateName"` -} - -// String returns the string representation -func (s InstanceState) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceState) GoString() string { - return s.String() -} - -// Describes an instance state change. -type InstanceStateChange struct { - _ struct{} `type:"structure"` - - // The current state of the instance. - CurrentState *InstanceState `locationName:"currentState" type:"structure"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The previous state of the instance. - PreviousState *InstanceState `locationName:"previousState" type:"structure"` -} - -// String returns the string representation -func (s InstanceStateChange) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceStateChange) GoString() string { - return s.String() -} - -// Describes the status of an instance. -type InstanceStatus struct { - _ struct{} `type:"structure"` - - // The Availability Zone of the instance. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // Any scheduled events associated with the instance. - Events []*InstanceStatusEvent `locationName:"eventsSet" locationNameList:"item" type:"list"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The intended state of the instance. DescribeInstanceStatus requires that - // an instance be in the running state. - InstanceState *InstanceState `locationName:"instanceState" type:"structure"` - - // Reports impaired functionality that stems from issues internal to the instance, - // such as impaired reachability. - InstanceStatus *InstanceStatusSummary `locationName:"instanceStatus" type:"structure"` - - // Reports impaired functionality that stems from issues related to the systems - // that support an instance, such as hardware failures and network connectivity - // problems. - SystemStatus *InstanceStatusSummary `locationName:"systemStatus" type:"structure"` -} - -// String returns the string representation -func (s InstanceStatus) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceStatus) GoString() string { - return s.String() -} - -// Describes the instance status. -type InstanceStatusDetails struct { - _ struct{} `type:"structure"` - - // The time when a status check failed. For an instance that was launched and - // impaired, this is the time when the instance was launched. - ImpairedSince *time.Time `locationName:"impairedSince" type:"timestamp" timestampFormat:"iso8601"` - - // The type of instance status. - Name *string `locationName:"name" type:"string" enum:"StatusName"` - - // The status. - Status *string `locationName:"status" type:"string" enum:"StatusType"` -} - -// String returns the string representation -func (s InstanceStatusDetails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceStatusDetails) GoString() string { - return s.String() -} - -// Describes a scheduled event for an instance. -type InstanceStatusEvent struct { - _ struct{} `type:"structure"` - - // The event code. - Code *string `locationName:"code" type:"string" enum:"EventCode"` - - // A description of the event. - // - // After a scheduled event is completed, it can still be described for up to - // a week. If the event has been completed, this description starts with the - // following text: [Completed]. - Description *string `locationName:"description" type:"string"` - - // The latest scheduled end time for the event. - NotAfter *time.Time `locationName:"notAfter" type:"timestamp" timestampFormat:"iso8601"` - - // The earliest scheduled start time for the event. - NotBefore *time.Time `locationName:"notBefore" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s InstanceStatusEvent) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceStatusEvent) GoString() string { - return s.String() -} - -// Describes the status of an instance. -type InstanceStatusSummary struct { - _ struct{} `type:"structure"` - - // The system instance health or application instance health. - Details []*InstanceStatusDetails `locationName:"details" locationNameList:"item" type:"list"` - - // The status. - Status *string `locationName:"status" type:"string" enum:"SummaryStatus"` -} - -// String returns the string representation -func (s InstanceStatusSummary) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InstanceStatusSummary) GoString() string { - return s.String() -} - -// Describes an Internet gateway. -type InternetGateway struct { - _ struct{} `type:"structure"` - - // Any VPCs attached to the Internet gateway. - Attachments []*InternetGatewayAttachment `locationName:"attachmentSet" locationNameList:"item" type:"list"` - - // The ID of the Internet gateway. - InternetGatewayId *string `locationName:"internetGatewayId" type:"string"` - - // Any tags assigned to the Internet gateway. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s InternetGateway) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InternetGateway) GoString() string { - return s.String() -} - -// Describes the attachment of a VPC to an Internet gateway. -type InternetGatewayAttachment struct { - _ struct{} `type:"structure"` - - // The current state of the attachment. - State *string `locationName:"state" type:"string" enum:"AttachmentStatus"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s InternetGatewayAttachment) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s InternetGatewayAttachment) GoString() string { - return s.String() -} - -// Describes a security group rule. -type IpPermission struct { - _ struct{} `type:"structure"` - - // The start of port range for the TCP and UDP protocols, or an ICMP type number. - // A value of -1 indicates all ICMP types. - FromPort *int64 `locationName:"fromPort" type:"integer"` - - // The IP protocol name (for tcp, udp, and icmp) or number (see Protocol Numbers - // (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml)). - // - // [EC2-VPC only] When you authorize or revoke security group rules, you can - // use -1 to specify all. - IpProtocol *string `locationName:"ipProtocol" type:"string"` - - // One or more IP ranges. - IpRanges []*IpRange `locationName:"ipRanges" locationNameList:"item" type:"list"` - - // (Valid for AuthorizeSecurityGroupEgress, RevokeSecurityGroupEgress and DescribeSecurityGroups - // only) One or more prefix list IDs for an AWS service. In an AuthorizeSecurityGroupEgress - // request, this is the AWS service that you want to access through a VPC endpoint - // from instances associated with the security group. - PrefixListIds []*PrefixListId `locationName:"prefixListIds" locationNameList:"item" type:"list"` - - // The end of port range for the TCP and UDP protocols, or an ICMP code. A value - // of -1 indicates all ICMP codes for the specified ICMP type. - ToPort *int64 `locationName:"toPort" type:"integer"` - - // One or more security group and AWS account ID pairs. - UserIdGroupPairs []*UserIdGroupPair `locationName:"groups" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s IpPermission) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IpPermission) GoString() string { - return s.String() -} - -// Describes an IP range. -type IpRange struct { - _ struct{} `type:"structure"` - - // The CIDR range. You can either specify a CIDR range or a source security - // group, not both. - CidrIp *string `locationName:"cidrIp" type:"string"` -} - -// String returns the string representation -func (s IpRange) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IpRange) GoString() string { - return s.String() -} - -// Describes a key pair. -type KeyPairInfo struct { - _ struct{} `type:"structure"` - - // If you used CreateKeyPair to create the key pair, this is the SHA-1 digest - // of the DER encoded private key. If you used ImportKeyPair to provide AWS - // the public key, this is the MD5 public key fingerprint as specified in section - // 4 of RFC4716. - KeyFingerprint *string `locationName:"keyFingerprint" type:"string"` - - // The name of the key pair. - KeyName *string `locationName:"keyName" type:"string"` -} - -// String returns the string representation -func (s KeyPairInfo) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s KeyPairInfo) GoString() string { - return s.String() -} - -// Describes a launch permission. -type LaunchPermission struct { - _ struct{} `type:"structure"` - - // The name of the group. - Group *string `locationName:"group" type:"string" enum:"PermissionGroup"` - - // The AWS account ID. - UserId *string `locationName:"userId" type:"string"` -} - -// String returns the string representation -func (s LaunchPermission) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LaunchPermission) GoString() string { - return s.String() -} - -// Describes a launch permission modification. -type LaunchPermissionModifications struct { - _ struct{} `type:"structure"` - - // The AWS account ID to add to the list of launch permissions for the AMI. - Add []*LaunchPermission `locationNameList:"item" type:"list"` - - // The AWS account ID to remove from the list of launch permissions for the - // AMI. - Remove []*LaunchPermission `locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s LaunchPermissionModifications) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LaunchPermissionModifications) GoString() string { - return s.String() -} - -// Describes the launch specification for an instance. -type LaunchSpecification struct { - _ struct{} `type:"structure"` - - // Deprecated. - AddressingType *string `locationName:"addressingType" type:"string"` - - // One or more block device mapping entries. - // - // Although you can specify encrypted EBS volumes in this block device mapping - // for your Spot Instances, these volumes are not encrypted. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // Indicates whether the instance is optimized for EBS I/O. This optimization - // provides dedicated throughput to Amazon EBS and an optimized configuration - // stack to provide optimal EBS I/O performance. This optimization isn't available - // with all instance types. Additional usage charges apply when using an EBS - // Optimized instance. - // - // Default: false - EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"` - - // The IAM instance profile. - IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"` - - // The ID of the AMI. - ImageId *string `locationName:"imageId" type:"string"` - - // The instance type. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // The ID of the kernel. - KernelId *string `locationName:"kernelId" type:"string"` - - // The name of the key pair. - KeyName *string `locationName:"keyName" type:"string"` - - // Describes the monitoring for the instance. - Monitoring *RunInstancesMonitoringEnabled `locationName:"monitoring" type:"structure"` - - // One or more network interfaces. - NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"` - - // The placement information for the instance. - Placement *SpotPlacement `locationName:"placement" type:"structure"` - - // The ID of the RAM disk. - RamdiskId *string `locationName:"ramdiskId" type:"string"` - - // One or more security groups. When requesting instances in a VPC, you must - // specify the IDs of the security groups. When requesting instances in EC2-Classic, - // you can specify the names or the IDs of the security groups. - SecurityGroups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // The ID of the subnet in which to launch the instance. - SubnetId *string `locationName:"subnetId" type:"string"` - - // The user data to make available to the instances. If you are using an AWS - // SDK or command line tool, Base64-encoding is performed for you, and you can - // load the text from a file. Otherwise, you must provide Base64-encoded text. - UserData *string `locationName:"userData" type:"string"` -} - -// String returns the string representation -func (s LaunchSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LaunchSpecification) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyHosts. -type ModifyHostsInput struct { - _ struct{} `type:"structure"` - - // Specify whether to enable or disable auto-placement. - // - // AutoPlacement is a required field - AutoPlacement *string `locationName:"autoPlacement" type:"string" required:"true" enum:"AutoPlacement"` - - // The host IDs of the Dedicated Hosts you want to modify. - // - // HostIds is a required field - HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s ModifyHostsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyHostsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyHostsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyHostsInput"} - if s.AutoPlacement == nil { - invalidParams.Add(request.NewErrParamRequired("AutoPlacement")) - } - if s.HostIds == nil { - invalidParams.Add(request.NewErrParamRequired("HostIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ModifyHosts. -type ModifyHostsOutput struct { - _ struct{} `type:"structure"` - - // The IDs of the Dedicated Hosts that were successfully modified. - Successful []*string `locationName:"successful" locationNameList:"item" type:"list"` - - // The IDs of the Dedicated Hosts that could not be modified. Check whether - // the setting you requested can be used. - Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s ModifyHostsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyHostsOutput) GoString() string { - return s.String() -} - -// Contains the parameters of ModifyIdFormat. -type ModifyIdFormatInput struct { - _ struct{} `type:"structure"` - - // The type of resource: instance | reservation | snapshot | volume - // - // Resource is a required field - Resource *string `type:"string" required:"true"` - - // Indicate whether the resource should use longer IDs (17-character IDs). - // - // UseLongIds is a required field - UseLongIds *bool `type:"boolean" required:"true"` -} - -// String returns the string representation -func (s ModifyIdFormatInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyIdFormatInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyIdFormatInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyIdFormatInput"} - if s.Resource == nil { - invalidParams.Add(request.NewErrParamRequired("Resource")) - } - if s.UseLongIds == nil { - invalidParams.Add(request.NewErrParamRequired("UseLongIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyIdFormatOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifyIdFormatOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyIdFormatOutput) GoString() string { - return s.String() -} - -// Contains the parameters of ModifyIdentityIdFormat. -type ModifyIdentityIdFormatInput struct { - _ struct{} `type:"structure"` - - // The ARN of the principal, which can be an IAM user, IAM role, or the root - // user. Specify all to modify the ID format for all IAM users, IAM roles, and - // the root user of the account. - // - // PrincipalArn is a required field - PrincipalArn *string `locationName:"principalArn" type:"string" required:"true"` - - // The type of resource: instance | reservation | snapshot | volume - // - // Resource is a required field - Resource *string `locationName:"resource" type:"string" required:"true"` - - // Indicates whether the resource should use longer IDs (17-character IDs) - // - // UseLongIds is a required field - UseLongIds *bool `locationName:"useLongIds" type:"boolean" required:"true"` -} - -// String returns the string representation -func (s ModifyIdentityIdFormatInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyIdentityIdFormatInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyIdentityIdFormatInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyIdentityIdFormatInput"} - if s.PrincipalArn == nil { - invalidParams.Add(request.NewErrParamRequired("PrincipalArn")) - } - if s.Resource == nil { - invalidParams.Add(request.NewErrParamRequired("Resource")) - } - if s.UseLongIds == nil { - invalidParams.Add(request.NewErrParamRequired("UseLongIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyIdentityIdFormatOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifyIdentityIdFormatOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyIdentityIdFormatOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyImageAttribute. -type ModifyImageAttributeInput struct { - _ struct{} `type:"structure"` - - // The name of the attribute to modify. - Attribute *string `type:"string"` - - // A description for the AMI. - Description *AttributeValue `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the AMI. - // - // ImageId is a required field - ImageId *string `type:"string" required:"true"` - - // A launch permission modification. - LaunchPermission *LaunchPermissionModifications `type:"structure"` - - // The operation type. - OperationType *string `type:"string" enum:"OperationType"` - - // One or more product codes. After you add a product code to an AMI, it can't - // be removed. This is only valid when modifying the productCodes attribute. - ProductCodes []*string `locationName:"ProductCode" locationNameList:"ProductCode" type:"list"` - - // One or more user groups. This is only valid when modifying the launchPermission - // attribute. - UserGroups []*string `locationName:"UserGroup" locationNameList:"UserGroup" type:"list"` - - // One or more AWS account IDs. This is only valid when modifying the launchPermission - // attribute. - UserIds []*string `locationName:"UserId" locationNameList:"UserId" type:"list"` - - // The value of the attribute being modified. This is only valid when modifying - // the description attribute. - Value *string `type:"string"` -} - -// String returns the string representation -func (s ModifyImageAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyImageAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyImageAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyImageAttributeInput"} - if s.ImageId == nil { - invalidParams.Add(request.NewErrParamRequired("ImageId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyImageAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifyImageAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyImageAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyInstanceAttribute. -type ModifyInstanceAttributeInput struct { - _ struct{} `type:"structure"` - - // The name of the attribute. - Attribute *string `locationName:"attribute" type:"string" enum:"InstanceAttributeName"` - - // Modifies the DeleteOnTermination attribute for volumes that are currently - // attached. The volume must be owned by the caller. If no value is specified - // for DeleteOnTermination, the default is true and the volume is deleted when - // the instance is terminated. - // - // To add instance store volumes to an Amazon EBS-backed instance, you must - // add them when you launch the instance. For more information, see Updating - // the Block Device Mapping when Launching an Instance (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/block-device-mapping-concepts.html#Using_OverridingAMIBDM) - // in the Amazon Elastic Compute Cloud User Guide. - BlockDeviceMappings []*InstanceBlockDeviceMappingSpecification `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // If the value is true, you can't terminate the instance using the Amazon EC2 - // console, CLI, or API; otherwise, you can. You cannot use this paramater for - // Spot Instances. - DisableApiTermination *AttributeBooleanValue `locationName:"disableApiTermination" type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Specifies whether the instance is optimized for EBS I/O. This optimization - // provides dedicated throughput to Amazon EBS and an optimized configuration - // stack to provide optimal EBS I/O performance. This optimization isn't available - // with all instance types. Additional usage charges apply when using an EBS - // Optimized instance. - EbsOptimized *AttributeBooleanValue `locationName:"ebsOptimized" type:"structure"` - - // Set to true to enable enhanced networking with ENA for the instance. - // - // This option is supported only for HVM instances. Specifying this option - // with a PV instance can make it unreachable. - EnaSupport *AttributeBooleanValue `locationName:"enaSupport" type:"structure"` - - // [EC2-VPC] Changes the security groups of the instance. You must specify at - // least one security group, even if it's just the default security group for - // the VPC. You must specify the security group ID, not the security group name. - Groups []*string `locationName:"GroupId" locationNameList:"groupId" type:"list"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - - // Specifies whether an instance stops or terminates when you initiate shutdown - // from the instance (using the operating system command for system shutdown). - InstanceInitiatedShutdownBehavior *AttributeValue `locationName:"instanceInitiatedShutdownBehavior" type:"structure"` - - // Changes the instance type to the specified value. For more information, see - // Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html). - // If the instance type is not valid, the error returned is InvalidInstanceAttributeValue. - InstanceType *AttributeValue `locationName:"instanceType" type:"structure"` - - // Changes the instance's kernel to the specified value. We recommend that you - // use PV-GRUB instead of kernels and RAM disks. For more information, see PV-GRUB - // (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html). - Kernel *AttributeValue `locationName:"kernel" type:"structure"` - - // Changes the instance's RAM disk to the specified value. We recommend that - // you use PV-GRUB instead of kernels and RAM disks. For more information, see - // PV-GRUB (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedKernels.html). - Ramdisk *AttributeValue `locationName:"ramdisk" type:"structure"` - - // Specifies whether source/destination checking is enabled. A value of true - // means that checking is enabled, and false means checking is disabled. This - // value must be false for a NAT instance to perform NAT. - SourceDestCheck *AttributeBooleanValue `type:"structure"` - - // Set to simple to enable enhanced networking with the Intel 82599 Virtual - // Function interface for the instance. - // - // There is no way to disable enhanced networking with the Intel 82599 Virtual - // Function interface at this time. - // - // This option is supported only for HVM instances. Specifying this option - // with a PV instance can make it unreachable. - SriovNetSupport *AttributeValue `locationName:"sriovNetSupport" type:"structure"` - - // Changes the instance's user data to the specified value. If you are using - // an AWS SDK or command line tool, Base64-encoding is performed for you, and - // you can load the text from a file. Otherwise, you must provide Base64-encoded - // text. - UserData *BlobAttributeValue `locationName:"userData" type:"structure"` - - // A new value for the attribute. Use only with the kernel, ramdisk, userData, - // disableApiTermination, or instanceInitiatedShutdownBehavior attribute. - Value *string `locationName:"value" type:"string"` -} - -// String returns the string representation -func (s ModifyInstanceAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyInstanceAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyInstanceAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyInstanceAttributeInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyInstanceAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifyInstanceAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyInstanceAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyInstancePlacement. -type ModifyInstancePlacementInput struct { - _ struct{} `type:"structure"` - - // The new affinity setting for the instance. - Affinity *string `locationName:"affinity" type:"string" enum:"Affinity"` - - // The ID of the Dedicated Host that the instance will have affinity with. - HostId *string `locationName:"hostId" type:"string"` - - // The ID of the instance that you are modifying. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` - - // The tenancy of the instance that you are modifying. - Tenancy *string `locationName:"tenancy" type:"string" enum:"HostTenancy"` -} - -// String returns the string representation -func (s ModifyInstancePlacementInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyInstancePlacementInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyInstancePlacementInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyInstancePlacementInput"} - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ModifyInstancePlacement. -type ModifyInstancePlacementOutput struct { - _ struct{} `type:"structure"` - - // Is true if the request succeeds, and an error otherwise. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s ModifyInstancePlacementOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyInstancePlacementOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyNetworkInterfaceAttribute. -type ModifyNetworkInterfaceAttributeInput struct { - _ struct{} `type:"structure"` - - // Information about the interface attachment. If modifying the 'delete on termination' - // attribute, you must specify the ID of the interface attachment. - Attachment *NetworkInterfaceAttachmentChanges `locationName:"attachment" type:"structure"` - - // A description for the network interface. - Description *AttributeValue `locationName:"description" type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Changes the security groups for the network interface. The new set of groups - // you specify replaces the current set. You must specify at least one group, - // even if it's just the default security group in the VPC. You must specify - // the ID of the security group, not the name. - Groups []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"` - - // The ID of the network interface. - // - // NetworkInterfaceId is a required field - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` - - // Indicates whether source/destination checking is enabled. A value of true - // means checking is enabled, and false means checking is disabled. This value - // must be false for a NAT instance to perform NAT. For more information, see - // NAT Instances (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_NAT_Instance.html) - // in the Amazon Virtual Private Cloud User Guide. - SourceDestCheck *AttributeBooleanValue `locationName:"sourceDestCheck" type:"structure"` -} - -// String returns the string representation -func (s ModifyNetworkInterfaceAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyNetworkInterfaceAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyNetworkInterfaceAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyNetworkInterfaceAttributeInput"} - if s.NetworkInterfaceId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkInterfaceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyNetworkInterfaceAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifyNetworkInterfaceAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyNetworkInterfaceAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyReservedInstances. -type ModifyReservedInstancesInput struct { - _ struct{} `type:"structure"` - - // A unique, case-sensitive token you provide to ensure idempotency of your - // modification request. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - ClientToken *string `locationName:"clientToken" type:"string"` - - // The IDs of the Reserved Instances to modify. - // - // ReservedInstancesIds is a required field - ReservedInstancesIds []*string `locationName:"ReservedInstancesId" locationNameList:"ReservedInstancesId" type:"list" required:"true"` - - // The configuration settings for the Reserved Instances to modify. - // - // TargetConfigurations is a required field - TargetConfigurations []*ReservedInstancesConfiguration `locationName:"ReservedInstancesConfigurationSetItemType" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s ModifyReservedInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyReservedInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyReservedInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyReservedInstancesInput"} - if s.ReservedInstancesIds == nil { - invalidParams.Add(request.NewErrParamRequired("ReservedInstancesIds")) - } - if s.TargetConfigurations == nil { - invalidParams.Add(request.NewErrParamRequired("TargetConfigurations")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ModifyReservedInstances. -type ModifyReservedInstancesOutput struct { - _ struct{} `type:"structure"` - - // The ID for the modification. - ReservedInstancesModificationId *string `locationName:"reservedInstancesModificationId" type:"string"` -} - -// String returns the string representation -func (s ModifyReservedInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyReservedInstancesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifySnapshotAttribute. -type ModifySnapshotAttributeInput struct { - _ struct{} `type:"structure"` - - // The snapshot attribute to modify. - // - // Only volume creation permissions may be modified at the customer level. - Attribute *string `type:"string" enum:"SnapshotAttributeName"` - - // A JSON representation of the snapshot attribute modification. - CreateVolumePermission *CreateVolumePermissionModifications `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The group to modify for the snapshot. - GroupNames []*string `locationName:"UserGroup" locationNameList:"GroupName" type:"list"` - - // The type of operation to perform to the attribute. - OperationType *string `type:"string" enum:"OperationType"` - - // The ID of the snapshot. - // - // SnapshotId is a required field - SnapshotId *string `type:"string" required:"true"` - - // The account ID to modify for the snapshot. - UserIds []*string `locationName:"UserId" locationNameList:"UserId" type:"list"` -} - -// String returns the string representation -func (s ModifySnapshotAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifySnapshotAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifySnapshotAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifySnapshotAttributeInput"} - if s.SnapshotId == nil { - invalidParams.Add(request.NewErrParamRequired("SnapshotId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifySnapshotAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifySnapshotAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifySnapshotAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifySpotFleetRequest. -type ModifySpotFleetRequestInput struct { - _ struct{} `type:"structure"` - - // Indicates whether running Spot instances should be terminated if the target - // capacity of the Spot fleet request is decreased below the current size of - // the Spot fleet. - ExcessCapacityTerminationPolicy *string `locationName:"excessCapacityTerminationPolicy" type:"string" enum:"ExcessCapacityTerminationPolicy"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - - // The size of the fleet. - TargetCapacity *int64 `locationName:"targetCapacity" type:"integer"` -} - -// String returns the string representation -func (s ModifySpotFleetRequestInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifySpotFleetRequestInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifySpotFleetRequestInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifySpotFleetRequestInput"} - if s.SpotFleetRequestId == nil { - invalidParams.Add(request.NewErrParamRequired("SpotFleetRequestId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ModifySpotFleetRequest. -type ModifySpotFleetRequestOutput struct { - _ struct{} `type:"structure"` - - // Is true if the request succeeds, and an error otherwise. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s ModifySpotFleetRequestOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifySpotFleetRequestOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifySubnetAttribute. -type ModifySubnetAttributeInput struct { - _ struct{} `type:"structure"` - - // Specify true to indicate that instances launched into the specified subnet - // should be assigned public IP address. - MapPublicIpOnLaunch *AttributeBooleanValue `type:"structure"` - - // The ID of the subnet. - // - // SubnetId is a required field - SubnetId *string `locationName:"subnetId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ModifySubnetAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifySubnetAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifySubnetAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifySubnetAttributeInput"} - if s.SubnetId == nil { - invalidParams.Add(request.NewErrParamRequired("SubnetId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifySubnetAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifySubnetAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifySubnetAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyVolumeAttribute. -type ModifyVolumeAttributeInput struct { - _ struct{} `type:"structure"` - - // Indicates whether the volume should be auto-enabled for I/O operations. - AutoEnableIO *AttributeBooleanValue `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the volume. - // - // VolumeId is a required field - VolumeId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ModifyVolumeAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVolumeAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyVolumeAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyVolumeAttributeInput"} - if s.VolumeId == nil { - invalidParams.Add(request.NewErrParamRequired("VolumeId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyVolumeAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifyVolumeAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVolumeAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyVpcAttribute. -type ModifyVpcAttributeInput struct { - _ struct{} `type:"structure"` - - // Indicates whether the instances launched in the VPC get DNS hostnames. If - // enabled, instances in the VPC get DNS hostnames; otherwise, they do not. - // - // You cannot modify the DNS resolution and DNS hostnames attributes in the - // same request. Use separate requests for each attribute. You can only enable - // DNS hostnames if you've enabled DNS support. - EnableDnsHostnames *AttributeBooleanValue `type:"structure"` - - // Indicates whether the DNS resolution is supported for the VPC. If enabled, - // queries to the Amazon provided DNS server at the 169.254.169.253 IP address, - // or the reserved IP address at the base of the VPC network range "plus two" - // will succeed. If disabled, the Amazon provided DNS service in the VPC that - // resolves public DNS hostnames to IP addresses is not enabled. - // - // You cannot modify the DNS resolution and DNS hostnames attributes in the - // same request. Use separate requests for each attribute. - EnableDnsSupport *AttributeBooleanValue `type:"structure"` - - // The ID of the VPC. - // - // VpcId is a required field - VpcId *string `locationName:"vpcId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ModifyVpcAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVpcAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyVpcAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyVpcAttributeInput"} - if s.VpcId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyVpcAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ModifyVpcAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVpcAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ModifyVpcEndpoint. -type ModifyVpcEndpointInput struct { - _ struct{} `type:"structure"` - - // One or more route tables IDs to associate with the endpoint. - AddRouteTableIds []*string `locationName:"AddRouteTableId" locationNameList:"item" type:"list"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // A policy document to attach to the endpoint. The policy must be in valid - // JSON format. - PolicyDocument *string `type:"string"` - - // One or more route table IDs to disassociate from the endpoint. - RemoveRouteTableIds []*string `locationName:"RemoveRouteTableId" locationNameList:"item" type:"list"` - - // Specify true to reset the policy document to the default policy. The default - // policy allows access to the service. - ResetPolicy *bool `type:"boolean"` - - // The ID of the endpoint. - // - // VpcEndpointId is a required field - VpcEndpointId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ModifyVpcEndpointInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVpcEndpointInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyVpcEndpointInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyVpcEndpointInput"} - if s.VpcEndpointId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcEndpointId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ModifyVpcEndpoint. -type ModifyVpcEndpointOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s ModifyVpcEndpointOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVpcEndpointOutput) GoString() string { - return s.String() -} - -type ModifyVpcPeeringConnectionOptionsInput struct { - _ struct{} `type:"structure"` - - // The VPC peering connection options for the accepter VPC. - AccepterPeeringConnectionOptions *PeeringConnectionOptionsRequest `type:"structure"` - - // Checks whether you have the required permissions for the operation, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The VPC peering connection options for the requester VPC. - RequesterPeeringConnectionOptions *PeeringConnectionOptionsRequest `type:"structure"` - - // The ID of the VPC peering connection. - // - // VpcPeeringConnectionId is a required field - VpcPeeringConnectionId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ModifyVpcPeeringConnectionOptionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVpcPeeringConnectionOptionsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ModifyVpcPeeringConnectionOptionsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ModifyVpcPeeringConnectionOptionsInput"} - if s.VpcPeeringConnectionId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcPeeringConnectionId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ModifyVpcPeeringConnectionOptionsOutput struct { - _ struct{} `type:"structure"` - - // Information about the VPC peering connection options for the accepter VPC. - AccepterPeeringConnectionOptions *PeeringConnectionOptions `locationName:"accepterPeeringConnectionOptions" type:"structure"` - - // Information about the VPC peering connection options for the requester VPC. - RequesterPeeringConnectionOptions *PeeringConnectionOptions `locationName:"requesterPeeringConnectionOptions" type:"structure"` -} - -// String returns the string representation -func (s ModifyVpcPeeringConnectionOptionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ModifyVpcPeeringConnectionOptionsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for MonitorInstances. -type MonitorInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more instance IDs. - // - // InstanceIds is a required field - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` -} - -// String returns the string representation -func (s MonitorInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MonitorInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *MonitorInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "MonitorInstancesInput"} - if s.InstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of MonitorInstances. -type MonitorInstancesOutput struct { - _ struct{} `type:"structure"` - - // Monitoring information for one or more instances. - InstanceMonitorings []*InstanceMonitoring `locationName:"instancesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s MonitorInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MonitorInstancesOutput) GoString() string { - return s.String() -} - -// Describes the monitoring for the instance. -type Monitoring struct { - _ struct{} `type:"structure"` - - // Indicates whether monitoring is enabled for the instance. - State *string `locationName:"state" type:"string" enum:"MonitoringState"` -} - -// String returns the string representation -func (s Monitoring) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Monitoring) GoString() string { - return s.String() -} - -// Contains the parameters for MoveAddressToVpc. -type MoveAddressToVpcInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The Elastic IP address. - // - // PublicIp is a required field - PublicIp *string `locationName:"publicIp" type:"string" required:"true"` -} - -// String returns the string representation -func (s MoveAddressToVpcInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MoveAddressToVpcInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *MoveAddressToVpcInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "MoveAddressToVpcInput"} - if s.PublicIp == nil { - invalidParams.Add(request.NewErrParamRequired("PublicIp")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of MoveAddressToVpc. -type MoveAddressToVpcOutput struct { - _ struct{} `type:"structure"` - - // The allocation ID for the Elastic IP address. - AllocationId *string `locationName:"allocationId" type:"string"` - - // The status of the move of the IP address. - Status *string `locationName:"status" type:"string" enum:"Status"` -} - -// String returns the string representation -func (s MoveAddressToVpcOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MoveAddressToVpcOutput) GoString() string { - return s.String() -} - -// Describes the status of a moving Elastic IP address. -type MovingAddressStatus struct { - _ struct{} `type:"structure"` - - // The status of the Elastic IP address that's being moved to the EC2-VPC platform, - // or restored to the EC2-Classic platform. - MoveStatus *string `locationName:"moveStatus" type:"string" enum:"MoveStatus"` - - // The Elastic IP address. - PublicIp *string `locationName:"publicIp" type:"string"` -} - -// String returns the string representation -func (s MovingAddressStatus) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MovingAddressStatus) GoString() string { - return s.String() -} - -// Describes a NAT gateway. -type NatGateway struct { - _ struct{} `type:"structure"` - - // The date and time the NAT gateway was created. - CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601"` - - // The date and time the NAT gateway was deleted, if applicable. - DeleteTime *time.Time `locationName:"deleteTime" type:"timestamp" timestampFormat:"iso8601"` - - // If the NAT gateway could not be created, specifies the error code for the - // failure. (InsufficientFreeAddressesInSubnet | Gateway.NotAttached | InvalidAllocationID.NotFound - // | Resource.AlreadyAssociated | InternalError | InvalidSubnetID.NotFound) - FailureCode *string `locationName:"failureCode" type:"string"` - - // If the NAT gateway could not be created, specifies the error message for - // the failure, that corresponds to the error code. - // - // For InsufficientFreeAddressesInSubnet: "Subnet has insufficient free addresses - // to create this NAT gateway" - // - // For Gateway.NotAttached: "Network vpc-xxxxxxxx has no Internet gateway - // attached" - // - // For InvalidAllocationID.NotFound: "Elastic IP address eipalloc-xxxxxxxx - // could not be associated with this NAT gateway" - // - // For Resource.AlreadyAssociated: "Elastic IP address eipalloc-xxxxxxxx - // is already associated" - // - // For InternalError: "Network interface eni-xxxxxxxx, created and used internally - // by this NAT gateway is in an invalid state. Please try again." - // - // For InvalidSubnetID.NotFound: "The specified subnet subnet-xxxxxxxx does - // not exist or could not be found." - FailureMessage *string `locationName:"failureMessage" type:"string"` - - // Information about the IP addresses and network interface associated with - // the NAT gateway. - NatGatewayAddresses []*NatGatewayAddress `locationName:"natGatewayAddressSet" locationNameList:"item" type:"list"` - - // The ID of the NAT gateway. - NatGatewayId *string `locationName:"natGatewayId" type:"string"` - - // Reserved. If you need to sustain traffic greater than the documented limits - // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), - // contact us through the Support Center (https://console.aws.amazon.com/support/home?). - ProvisionedBandwidth *ProvisionedBandwidth `locationName:"provisionedBandwidth" type:"structure"` - - // The state of the NAT gateway. - // - // pending: The NAT gateway is being created and is not ready to process - // traffic. - // - // failed: The NAT gateway could not be created. Check the failureCode and - // failureMessage fields for the reason. - // - // available: The NAT gateway is able to process traffic. This status remains - // until you delete the NAT gateway, and does not indicate the health of the - // NAT gateway. - // - // deleting: The NAT gateway is in the process of being terminated and may - // still be processing traffic. - // - // deleted: The NAT gateway has been terminated and is no longer processing - // traffic. - State *string `locationName:"state" type:"string" enum:"NatGatewayState"` - - // The ID of the subnet in which the NAT gateway is located. - SubnetId *string `locationName:"subnetId" type:"string"` - - // The ID of the VPC in which the NAT gateway is located. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s NatGateway) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NatGateway) GoString() string { - return s.String() -} - -// Describes the IP addresses and network interface associated with a NAT gateway. -type NatGatewayAddress struct { - _ struct{} `type:"structure"` - - // The allocation ID of the Elastic IP address that's associated with the NAT - // gateway. - AllocationId *string `locationName:"allocationId" type:"string"` - - // The ID of the network interface associated with the NAT gateway. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // The private IP address associated with the Elastic IP address. - PrivateIp *string `locationName:"privateIp" type:"string"` - - // The Elastic IP address associated with the NAT gateway. - PublicIp *string `locationName:"publicIp" type:"string"` -} - -// String returns the string representation -func (s NatGatewayAddress) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NatGatewayAddress) GoString() string { - return s.String() -} - -// Describes a network ACL. -type NetworkAcl struct { - _ struct{} `type:"structure"` - - // Any associations between the network ACL and one or more subnets - Associations []*NetworkAclAssociation `locationName:"associationSet" locationNameList:"item" type:"list"` - - // One or more entries (rules) in the network ACL. - Entries []*NetworkAclEntry `locationName:"entrySet" locationNameList:"item" type:"list"` - - // Indicates whether this is the default network ACL for the VPC. - IsDefault *bool `locationName:"default" type:"boolean"` - - // The ID of the network ACL. - NetworkAclId *string `locationName:"networkAclId" type:"string"` - - // Any tags assigned to the network ACL. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC for the network ACL. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s NetworkAcl) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkAcl) GoString() string { - return s.String() -} - -// Describes an association between a network ACL and a subnet. -type NetworkAclAssociation struct { - _ struct{} `type:"structure"` - - // The ID of the association between a network ACL and a subnet. - NetworkAclAssociationId *string `locationName:"networkAclAssociationId" type:"string"` - - // The ID of the network ACL. - NetworkAclId *string `locationName:"networkAclId" type:"string"` - - // The ID of the subnet. - SubnetId *string `locationName:"subnetId" type:"string"` -} - -// String returns the string representation -func (s NetworkAclAssociation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkAclAssociation) GoString() string { - return s.String() -} - -// Describes an entry in a network ACL. -type NetworkAclEntry struct { - _ struct{} `type:"structure"` - - // The network range to allow or deny, in CIDR notation. - CidrBlock *string `locationName:"cidrBlock" type:"string"` - - // Indicates whether the rule is an egress rule (applied to traffic leaving - // the subnet). - Egress *bool `locationName:"egress" type:"boolean"` - - // ICMP protocol: The ICMP type and code. - IcmpTypeCode *IcmpTypeCode `locationName:"icmpTypeCode" type:"structure"` - - // TCP or UDP protocols: The range of ports the rule applies to. - PortRange *PortRange `locationName:"portRange" type:"structure"` - - // The protocol. A value of -1 means all protocols. - Protocol *string `locationName:"protocol" type:"string"` - - // Indicates whether to allow or deny the traffic that matches the rule. - RuleAction *string `locationName:"ruleAction" type:"string" enum:"RuleAction"` - - // The rule number for the entry. ACL entries are processed in ascending order - // by rule number. - RuleNumber *int64 `locationName:"ruleNumber" type:"integer"` -} - -// String returns the string representation -func (s NetworkAclEntry) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkAclEntry) GoString() string { - return s.String() -} - -// Describes a network interface. -type NetworkInterface struct { - _ struct{} `type:"structure"` - - // The association information for an Elastic IP associated with the network - // interface. - Association *NetworkInterfaceAssociation `locationName:"association" type:"structure"` - - // The network interface attachment. - Attachment *NetworkInterfaceAttachment `locationName:"attachment" type:"structure"` - - // The Availability Zone. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // A description. - Description *string `locationName:"description" type:"string"` - - // Any security groups for the network interface. - Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // The type of interface. - InterfaceType *string `locationName:"interfaceType" type:"string" enum:"NetworkInterfaceType"` - - // The MAC address. - MacAddress *string `locationName:"macAddress" type:"string"` - - // The ID of the network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // The AWS account ID of the owner of the network interface. - OwnerId *string `locationName:"ownerId" type:"string"` - - // The private DNS name. - PrivateDnsName *string `locationName:"privateDnsName" type:"string"` - - // The IP address of the network interface within the subnet. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // The private IP addresses associated with the network interface. - PrivateIpAddresses []*NetworkInterfacePrivateIpAddress `locationName:"privateIpAddressesSet" locationNameList:"item" type:"list"` - - // The ID of the entity that launched the instance on your behalf (for example, - // AWS Management Console or Auto Scaling). - RequesterId *string `locationName:"requesterId" type:"string"` - - // Indicates whether the network interface is being managed by AWS. - RequesterManaged *bool `locationName:"requesterManaged" type:"boolean"` - - // Indicates whether traffic to or from the instance is validated. - SourceDestCheck *bool `locationName:"sourceDestCheck" type:"boolean"` - - // The status of the network interface. - Status *string `locationName:"status" type:"string" enum:"NetworkInterfaceStatus"` - - // The ID of the subnet. - SubnetId *string `locationName:"subnetId" type:"string"` - - // Any tags assigned to the network interface. - TagSet []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s NetworkInterface) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkInterface) GoString() string { - return s.String() -} - -// Describes association information for an Elastic IP address. -type NetworkInterfaceAssociation struct { - _ struct{} `type:"structure"` - - // The allocation ID. - AllocationId *string `locationName:"allocationId" type:"string"` - - // The association ID. - AssociationId *string `locationName:"associationId" type:"string"` - - // The ID of the Elastic IP address owner. - IpOwnerId *string `locationName:"ipOwnerId" type:"string"` - - // The public DNS name. - PublicDnsName *string `locationName:"publicDnsName" type:"string"` - - // The address of the Elastic IP address bound to the network interface. - PublicIp *string `locationName:"publicIp" type:"string"` -} - -// String returns the string representation -func (s NetworkInterfaceAssociation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkInterfaceAssociation) GoString() string { - return s.String() -} - -// Describes a network interface attachment. -type NetworkInterfaceAttachment struct { - _ struct{} `type:"structure"` - - // The timestamp indicating when the attachment initiated. - AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"` - - // The ID of the network interface attachment. - AttachmentId *string `locationName:"attachmentId" type:"string"` - - // Indicates whether the network interface is deleted when the instance is terminated. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - - // The device index of the network interface attachment on the instance. - DeviceIndex *int64 `locationName:"deviceIndex" type:"integer"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The AWS account ID of the owner of the instance. - InstanceOwnerId *string `locationName:"instanceOwnerId" type:"string"` - - // The attachment state. - Status *string `locationName:"status" type:"string" enum:"AttachmentStatus"` -} - -// String returns the string representation -func (s NetworkInterfaceAttachment) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkInterfaceAttachment) GoString() string { - return s.String() -} - -// Describes an attachment change. -type NetworkInterfaceAttachmentChanges struct { - _ struct{} `type:"structure"` - - // The ID of the network interface attachment. - AttachmentId *string `locationName:"attachmentId" type:"string"` - - // Indicates whether the network interface is deleted when the instance is terminated. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` -} - -// String returns the string representation -func (s NetworkInterfaceAttachmentChanges) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkInterfaceAttachmentChanges) GoString() string { - return s.String() -} - -// Describes the private IP address of a network interface. -type NetworkInterfacePrivateIpAddress struct { - _ struct{} `type:"structure"` - - // The association information for an Elastic IP address associated with the - // network interface. - Association *NetworkInterfaceAssociation `locationName:"association" type:"structure"` - - // Indicates whether this IP address is the primary private IP address of the - // network interface. - Primary *bool `locationName:"primary" type:"boolean"` - - // The private DNS name. - PrivateDnsName *string `locationName:"privateDnsName" type:"string"` - - // The private IP address. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` -} - -// String returns the string representation -func (s NetworkInterfacePrivateIpAddress) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NetworkInterfacePrivateIpAddress) GoString() string { - return s.String() -} - -type NewDhcpConfiguration struct { - _ struct{} `type:"structure"` - - Key *string `locationName:"key" type:"string"` - - Values []*string `locationName:"Value" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s NewDhcpConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NewDhcpConfiguration) GoString() string { - return s.String() -} - -// Describes the VPC peering connection options. -type PeeringConnectionOptions struct { - _ struct{} `type:"structure"` - - // If true, enables a local VPC to resolve public DNS hostnames to private IP - // addresses when queried from instances in the peer VPC. - AllowDnsResolutionFromRemoteVpc *bool `locationName:"allowDnsResolutionFromRemoteVpc" type:"boolean"` - - // If true, enables outbound communication from an EC2-Classic instance that's - // linked to a local VPC via ClassicLink to instances in a peer VPC. - AllowEgressFromLocalClassicLinkToRemoteVpc *bool `locationName:"allowEgressFromLocalClassicLinkToRemoteVpc" type:"boolean"` - - // If true, enables outbound communication from instances in a local VPC to - // an EC2-Classic instance that's linked to a peer VPC via ClassicLink. - AllowEgressFromLocalVpcToRemoteClassicLink *bool `locationName:"allowEgressFromLocalVpcToRemoteClassicLink" type:"boolean"` -} - -// String returns the string representation -func (s PeeringConnectionOptions) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PeeringConnectionOptions) GoString() string { - return s.String() -} - -// The VPC peering connection options. -type PeeringConnectionOptionsRequest struct { - _ struct{} `type:"structure"` - - // If true, enables a local VPC to resolve public DNS hostnames to private IP - // addresses when queried from instances in the peer VPC. - AllowDnsResolutionFromRemoteVpc *bool `type:"boolean"` - - // If true, enables outbound communication from an EC2-Classic instance that's - // linked to a local VPC via ClassicLink to instances in a peer VPC. - AllowEgressFromLocalClassicLinkToRemoteVpc *bool `type:"boolean"` - - // If true, enables outbound communication from instances in a local VPC to - // an EC2-Classic instance that's linked to a peer VPC via ClassicLink. - AllowEgressFromLocalVpcToRemoteClassicLink *bool `type:"boolean"` -} - -// String returns the string representation -func (s PeeringConnectionOptionsRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PeeringConnectionOptionsRequest) GoString() string { - return s.String() -} - -// Describes the placement for the instance. -type Placement struct { - _ struct{} `type:"structure"` - - // The affinity setting for the instance on the Dedicated Host. This parameter - // is not supported for the ImportInstance command. - Affinity *string `locationName:"affinity" type:"string"` - - // The Availability Zone of the instance. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The name of the placement group the instance is in (for cluster compute instances). - GroupName *string `locationName:"groupName" type:"string"` - - // The ID of the Dedicted host on which the instance resides. This parameter - // is not support for the ImportInstance command. - HostId *string `locationName:"hostId" type:"string"` - - // The tenancy of the instance (if the instance is running in a VPC). An instance - // with a tenancy of dedicated runs on single-tenant hardware. The host tenancy - // is not supported for the ImportInstance command. - Tenancy *string `locationName:"tenancy" type:"string" enum:"Tenancy"` -} - -// String returns the string representation -func (s Placement) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Placement) GoString() string { - return s.String() -} - -// Describes a placement group. -type PlacementGroup struct { - _ struct{} `type:"structure"` - - // The name of the placement group. - GroupName *string `locationName:"groupName" type:"string"` - - // The state of the placement group. - State *string `locationName:"state" type:"string" enum:"PlacementGroupState"` - - // The placement strategy. - Strategy *string `locationName:"strategy" type:"string" enum:"PlacementStrategy"` -} - -// String returns the string representation -func (s PlacementGroup) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PlacementGroup) GoString() string { - return s.String() -} - -// Describes a range of ports. -type PortRange struct { - _ struct{} `type:"structure"` - - // The first port in the range. - From *int64 `locationName:"from" type:"integer"` - - // The last port in the range. - To *int64 `locationName:"to" type:"integer"` -} - -// String returns the string representation -func (s PortRange) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PortRange) GoString() string { - return s.String() -} - -// Describes prefixes for AWS services. -type PrefixList struct { - _ struct{} `type:"structure"` - - // The IP address range of the AWS service. - Cidrs []*string `locationName:"cidrSet" locationNameList:"item" type:"list"` - - // The ID of the prefix. - PrefixListId *string `locationName:"prefixListId" type:"string"` - - // The name of the prefix. - PrefixListName *string `locationName:"prefixListName" type:"string"` -} - -// String returns the string representation -func (s PrefixList) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PrefixList) GoString() string { - return s.String() -} - -// The ID of the prefix. -type PrefixListId struct { - _ struct{} `type:"structure"` - - // The ID of the prefix. - PrefixListId *string `locationName:"prefixListId" type:"string"` -} - -// String returns the string representation -func (s PrefixListId) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PrefixListId) GoString() string { - return s.String() -} - -// Describes the price for a Reserved Instance. -type PriceSchedule struct { - _ struct{} `type:"structure"` - - // The current price schedule, as determined by the term remaining for the Reserved - // Instance in the listing. - // - // A specific price schedule is always in effect, but only one price schedule - // can be active at any time. Take, for example, a Reserved Instance listing - // that has five months remaining in its term. When you specify price schedules - // for five months and two months, this means that schedule 1, covering the - // first three months of the remaining term, will be active during months 5, - // 4, and 3. Then schedule 2, covering the last two months of the term, will - // be active for months 2 and 1. - Active *bool `locationName:"active" type:"boolean"` - - // The currency for transacting the Reserved Instance resale. At this time, - // the only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The fixed price for the term. - Price *float64 `locationName:"price" type:"double"` - - // The number of months remaining in the reservation. For example, 2 is the - // second to the last month before the capacity reservation expires. - Term *int64 `locationName:"term" type:"long"` -} - -// String returns the string representation -func (s PriceSchedule) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PriceSchedule) GoString() string { - return s.String() -} - -// Describes the price for a Reserved Instance. -type PriceScheduleSpecification struct { - _ struct{} `type:"structure"` - - // The currency for transacting the Reserved Instance resale. At this time, - // the only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The fixed price for the term. - Price *float64 `locationName:"price" type:"double"` - - // The number of months remaining in the reservation. For example, 2 is the - // second to the last month before the capacity reservation expires. - Term *int64 `locationName:"term" type:"long"` -} - -// String returns the string representation -func (s PriceScheduleSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PriceScheduleSpecification) GoString() string { - return s.String() -} - -// Describes a Reserved Instance offering. -type PricingDetail struct { - _ struct{} `type:"structure"` - - // The number of reservations available for the price. - Count *int64 `locationName:"count" type:"integer"` - - // The price per instance. - Price *float64 `locationName:"price" type:"double"` -} - -// String returns the string representation -func (s PricingDetail) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PricingDetail) GoString() string { - return s.String() -} - -// Describes a secondary private IP address for a network interface. -type PrivateIpAddressSpecification struct { - _ struct{} `type:"structure"` - - // Indicates whether the private IP address is the primary private IP address. - // Only one IP address can be designated as primary. - Primary *bool `locationName:"primary" type:"boolean"` - - // The private IP addresses. - // - // PrivateIpAddress is a required field - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string" required:"true"` -} - -// String returns the string representation -func (s PrivateIpAddressSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PrivateIpAddressSpecification) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PrivateIpAddressSpecification) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PrivateIpAddressSpecification"} - if s.PrivateIpAddress == nil { - invalidParams.Add(request.NewErrParamRequired("PrivateIpAddress")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a product code. -type ProductCode struct { - _ struct{} `type:"structure"` - - // The product code. - ProductCodeId *string `locationName:"productCode" type:"string"` - - // The type of product code. - ProductCodeType *string `locationName:"type" type:"string" enum:"ProductCodeValues"` -} - -// String returns the string representation -func (s ProductCode) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ProductCode) GoString() string { - return s.String() -} - -// Describes a virtual private gateway propagating route. -type PropagatingVgw struct { - _ struct{} `type:"structure"` - - // The ID of the virtual private gateway (VGW). - GatewayId *string `locationName:"gatewayId" type:"string"` -} - -// String returns the string representation -func (s PropagatingVgw) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PropagatingVgw) GoString() string { - return s.String() -} - -// Reserved. If you need to sustain traffic greater than the documented limits -// (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), -// contact us through the Support Center (https://console.aws.amazon.com/support/home?). -type ProvisionedBandwidth struct { - _ struct{} `type:"structure"` - - // Reserved. If you need to sustain traffic greater than the documented limits - // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), - // contact us through the Support Center (https://console.aws.amazon.com/support/home?). - ProvisionTime *time.Time `locationName:"provisionTime" type:"timestamp" timestampFormat:"iso8601"` - - // Reserved. If you need to sustain traffic greater than the documented limits - // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), - // contact us through the Support Center (https://console.aws.amazon.com/support/home?). - Provisioned *string `locationName:"provisioned" type:"string"` - - // Reserved. If you need to sustain traffic greater than the documented limits - // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), - // contact us through the Support Center (https://console.aws.amazon.com/support/home?). - RequestTime *time.Time `locationName:"requestTime" type:"timestamp" timestampFormat:"iso8601"` - - // Reserved. If you need to sustain traffic greater than the documented limits - // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), - // contact us through the Support Center (https://console.aws.amazon.com/support/home?). - Requested *string `locationName:"requested" type:"string"` - - // Reserved. If you need to sustain traffic greater than the documented limits - // (http://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/vpc-nat-gateway.html), - // contact us through the Support Center (https://console.aws.amazon.com/support/home?). - Status *string `locationName:"status" type:"string"` -} - -// String returns the string representation -func (s ProvisionedBandwidth) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ProvisionedBandwidth) GoString() string { - return s.String() -} - -// Describes the result of the purchase. -type Purchase struct { - _ struct{} `type:"structure"` - - // The currency in which the UpfrontPrice and HourlyPrice amounts are specified. - // At this time, the only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The duration of the reservation's term in seconds. - Duration *int64 `locationName:"duration" type:"integer"` - - // The IDs of the Dedicated Hosts associated with the reservation. - HostIdSet []*string `locationName:"hostIdSet" locationNameList:"item" type:"list"` - - // The ID of the reservation. - HostReservationId *string `locationName:"hostReservationId" type:"string"` - - // The hourly price of the reservation per hour. - HourlyPrice *string `locationName:"hourlyPrice" type:"string"` - - // The instance family on the Dedicated Host that the reservation can be associated - // with. - InstanceFamily *string `locationName:"instanceFamily" type:"string"` - - // The payment option for the reservation. - PaymentOption *string `locationName:"paymentOption" type:"string" enum:"PaymentOption"` - - // The upfront price of the reservation. - UpfrontPrice *string `locationName:"upfrontPrice" type:"string"` -} - -// String returns the string representation -func (s Purchase) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Purchase) GoString() string { - return s.String() -} - -type PurchaseHostReservationInput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure idempotency of the - // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html) - // in the Amazon Elastic Compute Cloud User Guide. - ClientToken *string `type:"string"` - - // The currency in which the totalUpfrontPrice, LimitPrice, and totalHourlyPrice - // amounts are specified. At this time, the only supported currency is USD. - CurrencyCode *string `type:"string" enum:"CurrencyCodeValues"` - - // The ID/s of the Dedicated Host/s that the reservation will be associated - // with. - // - // HostIdSet is a required field - HostIdSet []*string `locationNameList:"item" type:"list" required:"true"` - - // The specified limit is checked against the total upfront cost of the reservation - // (calculated as the offering's upfront cost multiplied by the host count). - // If the total upfront cost is greater than the specified price limit, the - // request will fail. This is used to ensure that the purchase does not exceed - // the expected upfront cost of the purchase. At this time, the only supported - // currency is USD. For example, to indicate a limit price of USD 100, specify - // 100.00. - LimitPrice *string `type:"string"` - - // The ID of the offering. - // - // OfferingId is a required field - OfferingId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s PurchaseHostReservationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PurchaseHostReservationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PurchaseHostReservationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PurchaseHostReservationInput"} - if s.HostIdSet == nil { - invalidParams.Add(request.NewErrParamRequired("HostIdSet")) - } - if s.OfferingId == nil { - invalidParams.Add(request.NewErrParamRequired("OfferingId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PurchaseHostReservationOutput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier you provide to ensure idempotency of the - // request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html) - // in the Amazon Elastic Compute Cloud User Guide - ClientToken *string `locationName:"clientToken" type:"string"` - - // The currency in which the totalUpfrontPrice and totalHourlyPrice amounts - // are specified. At this time, the only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // Describes the details of the purchase. - Purchase []*Purchase `locationName:"purchase" type:"list"` - - // The total hourly price of the reservation calculated per hour. - TotalHourlyPrice *string `locationName:"totalHourlyPrice" type:"string"` - - // The total amount that will be charged to your account when you purchase the - // reservation. - TotalUpfrontPrice *string `locationName:"totalUpfrontPrice" type:"string"` -} - -// String returns the string representation -func (s PurchaseHostReservationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PurchaseHostReservationOutput) GoString() string { - return s.String() -} - -// Describes a request to purchase Scheduled Instances. -type PurchaseRequest struct { - _ struct{} `type:"structure"` - - // The number of instances. - // - // InstanceCount is a required field - InstanceCount *int64 `type:"integer" required:"true"` - - // The purchase token. - // - // PurchaseToken is a required field - PurchaseToken *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s PurchaseRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PurchaseRequest) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PurchaseRequest) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PurchaseRequest"} - if s.InstanceCount == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceCount")) - } - if s.PurchaseToken == nil { - invalidParams.Add(request.NewErrParamRequired("PurchaseToken")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the parameters for PurchaseReservedInstancesOffering. -type PurchaseReservedInstancesOfferingInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The number of Reserved Instances to purchase. - // - // InstanceCount is a required field - InstanceCount *int64 `type:"integer" required:"true"` - - // Specified for Reserved Instance Marketplace offerings to limit the total - // order and ensure that the Reserved Instances are not purchased at unexpected - // prices. - LimitPrice *ReservedInstanceLimitPrice `locationName:"limitPrice" type:"structure"` - - // The ID of the Reserved Instance offering to purchase. - // - // ReservedInstancesOfferingId is a required field - ReservedInstancesOfferingId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s PurchaseReservedInstancesOfferingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PurchaseReservedInstancesOfferingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PurchaseReservedInstancesOfferingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PurchaseReservedInstancesOfferingInput"} - if s.InstanceCount == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceCount")) - } - if s.ReservedInstancesOfferingId == nil { - invalidParams.Add(request.NewErrParamRequired("ReservedInstancesOfferingId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of PurchaseReservedInstancesOffering. -type PurchaseReservedInstancesOfferingOutput struct { - _ struct{} `type:"structure"` - - // The IDs of the purchased Reserved Instances. - ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` -} - -// String returns the string representation -func (s PurchaseReservedInstancesOfferingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PurchaseReservedInstancesOfferingOutput) GoString() string { - return s.String() -} - -// Contains the parameters for PurchaseScheduledInstances. -type PurchaseScheduledInstancesInput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier that ensures the idempotency of the request. - // For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - ClientToken *string `type:"string" idempotencyToken:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // One or more purchase requests. - // - // PurchaseRequests is a required field - PurchaseRequests []*PurchaseRequest `locationName:"PurchaseRequest" locationNameList:"PurchaseRequest" min:"1" type:"list" required:"true"` -} - -// String returns the string representation -func (s PurchaseScheduledInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PurchaseScheduledInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PurchaseScheduledInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PurchaseScheduledInstancesInput"} - if s.PurchaseRequests == nil { - invalidParams.Add(request.NewErrParamRequired("PurchaseRequests")) - } - if s.PurchaseRequests != nil && len(s.PurchaseRequests) < 1 { - invalidParams.Add(request.NewErrParamMinLen("PurchaseRequests", 1)) - } - if s.PurchaseRequests != nil { - for i, v := range s.PurchaseRequests { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "PurchaseRequests", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of PurchaseScheduledInstances. -type PurchaseScheduledInstancesOutput struct { - _ struct{} `type:"structure"` - - // Information about the Scheduled Instances. - ScheduledInstanceSet []*ScheduledInstance `locationName:"scheduledInstanceSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s PurchaseScheduledInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PurchaseScheduledInstancesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for RebootInstances. -type RebootInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more instance IDs. - // - // InstanceIds is a required field - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` -} - -// String returns the string representation -func (s RebootInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RebootInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RebootInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RebootInstancesInput"} - if s.InstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type RebootInstancesOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s RebootInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RebootInstancesOutput) GoString() string { - return s.String() -} - -// Describes a recurring charge. -type RecurringCharge struct { - _ struct{} `type:"structure"` - - // The amount of the recurring charge. - Amount *float64 `locationName:"amount" type:"double"` - - // The frequency of the recurring charge. - Frequency *string `locationName:"frequency" type:"string" enum:"RecurringChargeFrequency"` -} - -// String returns the string representation -func (s RecurringCharge) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RecurringCharge) GoString() string { - return s.String() -} - -// Describes a region. -type Region struct { - _ struct{} `type:"structure"` - - // The region service endpoint. - Endpoint *string `locationName:"regionEndpoint" type:"string"` - - // The name of the region. - RegionName *string `locationName:"regionName" type:"string"` -} - -// String returns the string representation -func (s Region) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Region) GoString() string { - return s.String() -} - -// Contains the parameters for RegisterImage. -type RegisterImageInput struct { - _ struct{} `type:"structure"` - - // The architecture of the AMI. - // - // Default: For Amazon EBS-backed AMIs, i386. For instance store-backed AMIs, - // the architecture specified in the manifest file. - Architecture *string `locationName:"architecture" type:"string" enum:"ArchitectureValues"` - - // One or more block device mapping entries. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"BlockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"` - - // A description for your AMI. - Description *string `locationName:"description" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Set to true to enable enhanced networking with ENA for the AMI and any instances - // that you launch from the AMI. - // - // This option is supported only for HVM AMIs. Specifying this option with - // a PV AMI can make instances launched from the AMI unreachable. - EnaSupport *bool `locationName:"enaSupport" type:"boolean"` - - // The full path to your AMI manifest in Amazon S3 storage. - ImageLocation *string `type:"string"` - - // The ID of the kernel. - KernelId *string `locationName:"kernelId" type:"string"` - - // A name for your AMI. - // - // Constraints: 3-128 alphanumeric characters, parentheses (()), square brackets - // ([]), spaces ( ), periods (.), slashes (/), dashes (-), single quotes ('), - // at-signs (@), or underscores(_) - // - // Name is a required field - Name *string `locationName:"name" type:"string" required:"true"` - - // The ID of the RAM disk. - RamdiskId *string `locationName:"ramdiskId" type:"string"` - - // The name of the root device (for example, /dev/sda1, or /dev/xvda). - RootDeviceName *string `locationName:"rootDeviceName" type:"string"` - - // Set to simple to enable enhanced networking with the Intel 82599 Virtual - // Function interface for the AMI and any instances that you launch from the - // AMI. - // - // There is no way to disable sriovNetSupport at this time. - // - // This option is supported only for HVM AMIs. Specifying this option with - // a PV AMI can make instances launched from the AMI unreachable. - SriovNetSupport *string `locationName:"sriovNetSupport" type:"string"` - - // The type of virtualization. - // - // Default: paravirtual - VirtualizationType *string `locationName:"virtualizationType" type:"string"` -} - -// String returns the string representation -func (s RegisterImageInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RegisterImageInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RegisterImageInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RegisterImageInput"} - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of RegisterImage. -type RegisterImageOutput struct { - _ struct{} `type:"structure"` - - // The ID of the newly registered AMI. - ImageId *string `locationName:"imageId" type:"string"` -} - -// String returns the string representation -func (s RegisterImageOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RegisterImageOutput) GoString() string { - return s.String() -} - -// Contains the parameters for RejectVpcPeeringConnection. -type RejectVpcPeeringConnectionInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the VPC peering connection. - // - // VpcPeeringConnectionId is a required field - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string" required:"true"` -} - -// String returns the string representation -func (s RejectVpcPeeringConnectionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RejectVpcPeeringConnectionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RejectVpcPeeringConnectionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RejectVpcPeeringConnectionInput"} - if s.VpcPeeringConnectionId == nil { - invalidParams.Add(request.NewErrParamRequired("VpcPeeringConnectionId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of RejectVpcPeeringConnection. -type RejectVpcPeeringConnectionOutput struct { - _ struct{} `type:"structure"` - - // Returns true if the request succeeds; otherwise, it returns an error. - Return *bool `locationName:"return" type:"boolean"` -} - -// String returns the string representation -func (s RejectVpcPeeringConnectionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RejectVpcPeeringConnectionOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ReleaseAddress. -type ReleaseAddressInput struct { - _ struct{} `type:"structure"` - - // [EC2-VPC] The allocation ID. Required for EC2-VPC. - AllocationId *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // [EC2-Classic] The Elastic IP address. Required for EC2-Classic. - PublicIp *string `type:"string"` -} - -// String returns the string representation -func (s ReleaseAddressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReleaseAddressInput) GoString() string { - return s.String() -} - -type ReleaseAddressOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ReleaseAddressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReleaseAddressOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ReleaseHosts. -type ReleaseHostsInput struct { - _ struct{} `type:"structure"` - - // The IDs of the Dedicated Hosts you want to release. - // - // HostIds is a required field - HostIds []*string `locationName:"hostId" locationNameList:"item" type:"list" required:"true"` -} - -// String returns the string representation -func (s ReleaseHostsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReleaseHostsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReleaseHostsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReleaseHostsInput"} - if s.HostIds == nil { - invalidParams.Add(request.NewErrParamRequired("HostIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ReleaseHosts. -type ReleaseHostsOutput struct { - _ struct{} `type:"structure"` - - // The IDs of the Dedicated Hosts that were successfully released. - Successful []*string `locationName:"successful" locationNameList:"item" type:"list"` - - // The IDs of the Dedicated Hosts that could not be released, including an error - // message. - Unsuccessful []*UnsuccessfulItem `locationName:"unsuccessful" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s ReleaseHostsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReleaseHostsOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ReplaceNetworkAclAssociation. -type ReplaceNetworkAclAssociationInput struct { - _ struct{} `type:"structure"` - - // The ID of the current association between the original network ACL and the - // subnet. - // - // AssociationId is a required field - AssociationId *string `locationName:"associationId" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the new network ACL to associate with the subnet. - // - // NetworkAclId is a required field - NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ReplaceNetworkAclAssociationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceNetworkAclAssociationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReplaceNetworkAclAssociationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReplaceNetworkAclAssociationInput"} - if s.AssociationId == nil { - invalidParams.Add(request.NewErrParamRequired("AssociationId")) - } - if s.NetworkAclId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkAclId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ReplaceNetworkAclAssociation. -type ReplaceNetworkAclAssociationOutput struct { - _ struct{} `type:"structure"` - - // The ID of the new association. - NewAssociationId *string `locationName:"newAssociationId" type:"string"` -} - -// String returns the string representation -func (s ReplaceNetworkAclAssociationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceNetworkAclAssociationOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ReplaceNetworkAclEntry. -type ReplaceNetworkAclEntryInput struct { - _ struct{} `type:"structure"` - - // The network range to allow or deny, in CIDR notation. - // - // CidrBlock is a required field - CidrBlock *string `locationName:"cidrBlock" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Indicates whether to replace the egress rule. - // - // Default: If no value is specified, we replace the ingress rule. - // - // Egress is a required field - Egress *bool `locationName:"egress" type:"boolean" required:"true"` - - // ICMP protocol: The ICMP type and code. Required if specifying 1 (ICMP) for - // the protocol. - IcmpTypeCode *IcmpTypeCode `locationName:"Icmp" type:"structure"` - - // The ID of the ACL. - // - // NetworkAclId is a required field - NetworkAclId *string `locationName:"networkAclId" type:"string" required:"true"` - - // TCP or UDP protocols: The range of ports the rule applies to. Required if - // specifying 6 (TCP) or 17 (UDP) for the protocol. - PortRange *PortRange `locationName:"portRange" type:"structure"` - - // The IP protocol. You can specify all or -1 to mean all protocols. - // - // Protocol is a required field - Protocol *string `locationName:"protocol" type:"string" required:"true"` - - // Indicates whether to allow or deny the traffic that matches the rule. - // - // RuleAction is a required field - RuleAction *string `locationName:"ruleAction" type:"string" required:"true" enum:"RuleAction"` - - // The rule number of the entry to replace. - // - // RuleNumber is a required field - RuleNumber *int64 `locationName:"ruleNumber" type:"integer" required:"true"` -} - -// String returns the string representation -func (s ReplaceNetworkAclEntryInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceNetworkAclEntryInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReplaceNetworkAclEntryInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReplaceNetworkAclEntryInput"} - if s.CidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("CidrBlock")) - } - if s.Egress == nil { - invalidParams.Add(request.NewErrParamRequired("Egress")) - } - if s.NetworkAclId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkAclId")) - } - if s.Protocol == nil { - invalidParams.Add(request.NewErrParamRequired("Protocol")) - } - if s.RuleAction == nil { - invalidParams.Add(request.NewErrParamRequired("RuleAction")) - } - if s.RuleNumber == nil { - invalidParams.Add(request.NewErrParamRequired("RuleNumber")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ReplaceNetworkAclEntryOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ReplaceNetworkAclEntryOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceNetworkAclEntryOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ReplaceRoute. -type ReplaceRouteInput struct { - _ struct{} `type:"structure"` - - // The CIDR address block used for the destination match. The value you provide - // must match the CIDR of an existing route in the table. - // - // DestinationCidrBlock is a required field - DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of an Internet gateway or virtual private gateway. - GatewayId *string `locationName:"gatewayId" type:"string"` - - // The ID of a NAT instance in your VPC. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The ID of a NAT gateway. - NatGatewayId *string `locationName:"natGatewayId" type:"string"` - - // The ID of a network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // The ID of the route table. - // - // RouteTableId is a required field - RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` - - // The ID of a VPC peering connection. - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` -} - -// String returns the string representation -func (s ReplaceRouteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceRouteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReplaceRouteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReplaceRouteInput"} - if s.DestinationCidrBlock == nil { - invalidParams.Add(request.NewErrParamRequired("DestinationCidrBlock")) - } - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ReplaceRouteOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ReplaceRouteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceRouteOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ReplaceRouteTableAssociation. -type ReplaceRouteTableAssociationInput struct { - _ struct{} `type:"structure"` - - // The association ID. - // - // AssociationId is a required field - AssociationId *string `locationName:"associationId" type:"string" required:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the new route table to associate with the subnet. - // - // RouteTableId is a required field - RouteTableId *string `locationName:"routeTableId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ReplaceRouteTableAssociationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceRouteTableAssociationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReplaceRouteTableAssociationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReplaceRouteTableAssociationInput"} - if s.AssociationId == nil { - invalidParams.Add(request.NewErrParamRequired("AssociationId")) - } - if s.RouteTableId == nil { - invalidParams.Add(request.NewErrParamRequired("RouteTableId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of ReplaceRouteTableAssociation. -type ReplaceRouteTableAssociationOutput struct { - _ struct{} `type:"structure"` - - // The ID of the new association. - NewAssociationId *string `locationName:"newAssociationId" type:"string"` -} - -// String returns the string representation -func (s ReplaceRouteTableAssociationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplaceRouteTableAssociationOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ReportInstanceStatus. -type ReportInstanceStatusInput struct { - _ struct{} `type:"structure"` - - // Descriptive text about the health state of your instance. - Description *string `locationName:"description" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The time at which the reported instance health state ended. - EndTime *time.Time `locationName:"endTime" type:"timestamp" timestampFormat:"iso8601"` - - // One or more instances. - // - // Instances is a required field - Instances []*string `locationName:"instanceId" locationNameList:"InstanceId" type:"list" required:"true"` - - // One or more reason codes that describes the health state of your instance. - // - // instance-stuck-in-state: My instance is stuck in a state. - // - // unresponsive: My instance is unresponsive. - // - // not-accepting-credentials: My instance is not accepting my credentials. - // - // password-not-available: A password is not available for my instance. - // - // performance-network: My instance is experiencing performance problems - // which I believe are network related. - // - // performance-instance-store: My instance is experiencing performance problems - // which I believe are related to the instance stores. - // - // performance-ebs-volume: My instance is experiencing performance problems - // which I believe are related to an EBS volume. - // - // performance-other: My instance is experiencing performance problems. - // - // other: [explain using the description parameter] - // - // ReasonCodes is a required field - ReasonCodes []*string `locationName:"reasonCode" locationNameList:"item" type:"list" required:"true"` - - // The time at which the reported instance health state began. - StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"` - - // The status of all instances listed. - // - // Status is a required field - Status *string `locationName:"status" type:"string" required:"true" enum:"ReportStatusType"` -} - -// String returns the string representation -func (s ReportInstanceStatusInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReportInstanceStatusInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReportInstanceStatusInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReportInstanceStatusInput"} - if s.Instances == nil { - invalidParams.Add(request.NewErrParamRequired("Instances")) - } - if s.ReasonCodes == nil { - invalidParams.Add(request.NewErrParamRequired("ReasonCodes")) - } - if s.Status == nil { - invalidParams.Add(request.NewErrParamRequired("Status")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ReportInstanceStatusOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ReportInstanceStatusOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReportInstanceStatusOutput) GoString() string { - return s.String() -} - -// Contains the parameters for RequestSpotFleet. -type RequestSpotFleetInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The configuration for the Spot fleet request. - // - // SpotFleetRequestConfig is a required field - SpotFleetRequestConfig *SpotFleetRequestConfigData `locationName:"spotFleetRequestConfig" type:"structure" required:"true"` -} - -// String returns the string representation -func (s RequestSpotFleetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RequestSpotFleetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RequestSpotFleetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RequestSpotFleetInput"} - if s.SpotFleetRequestConfig == nil { - invalidParams.Add(request.NewErrParamRequired("SpotFleetRequestConfig")) - } - if s.SpotFleetRequestConfig != nil { - if err := s.SpotFleetRequestConfig.Validate(); err != nil { - invalidParams.AddNested("SpotFleetRequestConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of RequestSpotFleet. -type RequestSpotFleetOutput struct { - _ struct{} `type:"structure"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` -} - -// String returns the string representation -func (s RequestSpotFleetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RequestSpotFleetOutput) GoString() string { - return s.String() -} - -// Contains the parameters for RequestSpotInstances. -type RequestSpotInstancesInput struct { - _ struct{} `type:"structure"` - - // The user-specified name for a logical grouping of bids. - // - // When you specify an Availability Zone group in a Spot Instance request, - // all Spot instances in the request are launched in the same Availability Zone. - // Instance proximity is maintained with this parameter, but the choice of Availability - // Zone is not. The group applies only to bids for Spot Instances of the same - // instance type. Any additional Spot instance requests that are specified with - // the same Availability Zone group name are launched in that same Availability - // Zone, as long as at least one instance from the group is still active. - // - // If there is no active instance running in the Availability Zone group that - // you specify for a new Spot instance request (all instances are terminated, - // the bid is expired, or the bid falls below current market), then Amazon EC2 - // launches the instance in any Availability Zone where the constraint can be - // met. Consequently, the subsequent set of Spot instances could be placed in - // a different zone from the original request, even if you specified the same - // Availability Zone group. - // - // Default: Instances are launched in any available Availability Zone. - AvailabilityZoneGroup *string `locationName:"availabilityZoneGroup" type:"string"` - - // The required duration for the Spot instances (also known as Spot blocks), - // in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, - // or 360). - // - // The duration period starts as soon as your Spot instance receives its instance - // ID. At the end of the duration period, Amazon EC2 marks the Spot instance - // for termination and provides a Spot instance termination notice, which gives - // the instance a two-minute warning before it terminates. - // - // Note that you can't specify an Availability Zone group or a launch group - // if you specify a duration. - BlockDurationMinutes *int64 `locationName:"blockDurationMinutes" type:"integer"` - - // Unique, case-sensitive identifier that you provide to ensure the idempotency - // of the request. For more information, see How to Ensure Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html) - // in the Amazon Elastic Compute Cloud User Guide. - ClientToken *string `locationName:"clientToken" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The maximum number of Spot instances to launch. - // - // Default: 1 - InstanceCount *int64 `locationName:"instanceCount" type:"integer"` - - // The instance launch group. Launch groups are Spot instances that launch together - // and terminate together. - // - // Default: Instances are launched and terminated individually - LaunchGroup *string `locationName:"launchGroup" type:"string"` - - // Describes the launch specification for an instance. - LaunchSpecification *RequestSpotLaunchSpecification `type:"structure"` - - // The maximum hourly price (bid) for any Spot instance launched to fulfill - // the request. - // - // SpotPrice is a required field - SpotPrice *string `locationName:"spotPrice" type:"string" required:"true"` - - // The Spot instance request type. - // - // Default: one-time - Type *string `locationName:"type" type:"string" enum:"SpotInstanceType"` - - // The start date of the request. If this is a one-time request, the request - // becomes active at this date and time and remains active until all instances - // launch, the request expires, or the request is canceled. If the request is - // persistent, the request becomes active at this date and time and remains - // active until it expires or is canceled. - // - // Default: The request is effective indefinitely. - ValidFrom *time.Time `locationName:"validFrom" type:"timestamp" timestampFormat:"iso8601"` - - // The end date of the request. If this is a one-time request, the request remains - // active until all instances launch, the request is canceled, or this date - // is reached. If the request is persistent, it remains active until it is canceled - // or this date and time is reached. - // - // Default: The request is effective indefinitely. - ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s RequestSpotInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RequestSpotInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RequestSpotInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RequestSpotInstancesInput"} - if s.SpotPrice == nil { - invalidParams.Add(request.NewErrParamRequired("SpotPrice")) - } - if s.LaunchSpecification != nil { - if err := s.LaunchSpecification.Validate(); err != nil { - invalidParams.AddNested("LaunchSpecification", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of RequestSpotInstances. -type RequestSpotInstancesOutput struct { - _ struct{} `type:"structure"` - - // One or more Spot instance requests. - SpotInstanceRequests []*SpotInstanceRequest `locationName:"spotInstanceRequestSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s RequestSpotInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RequestSpotInstancesOutput) GoString() string { - return s.String() -} - -// Describes the launch specification for an instance. -type RequestSpotLaunchSpecification struct { - _ struct{} `type:"structure"` - - // Deprecated. - AddressingType *string `locationName:"addressingType" type:"string"` - - // One or more block device mapping entries. - // - // Although you can specify encrypted EBS volumes in this block device mapping - // for your Spot Instances, these volumes are not encrypted. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // Indicates whether the instance is optimized for EBS I/O. This optimization - // provides dedicated throughput to Amazon EBS and an optimized configuration - // stack to provide optimal EBS I/O performance. This optimization isn't available - // with all instance types. Additional usage charges apply when using an EBS - // Optimized instance. - // - // Default: false - EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"` - - // The IAM instance profile. - IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"` - - // The ID of the AMI. - ImageId *string `locationName:"imageId" type:"string"` - - // The instance type. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // The ID of the kernel. - KernelId *string `locationName:"kernelId" type:"string"` - - // The name of the key pair. - KeyName *string `locationName:"keyName" type:"string"` - - // Describes the monitoring for the instance. - Monitoring *RunInstancesMonitoringEnabled `locationName:"monitoring" type:"structure"` - - // One or more network interfaces. - NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"NetworkInterface" locationNameList:"item" type:"list"` - - // The placement information for the instance. - Placement *SpotPlacement `locationName:"placement" type:"structure"` - - // The ID of the RAM disk. - RamdiskId *string `locationName:"ramdiskId" type:"string"` - - SecurityGroupIds []*string `locationName:"SecurityGroupId" locationNameList:"item" type:"list"` - - SecurityGroups []*string `locationName:"SecurityGroup" locationNameList:"item" type:"list"` - - // The ID of the subnet in which to launch the instance. - SubnetId *string `locationName:"subnetId" type:"string"` - - // The user data to make available to the instances. If you are using an AWS - // SDK or command line tool, Base64-encoding is performed for you, and you can - // load the text from a file. Otherwise, you must provide Base64-encoded text. - UserData *string `locationName:"userData" type:"string"` -} - -// String returns the string representation -func (s RequestSpotLaunchSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RequestSpotLaunchSpecification) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RequestSpotLaunchSpecification) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RequestSpotLaunchSpecification"} - if s.Monitoring != nil { - if err := s.Monitoring.Validate(); err != nil { - invalidParams.AddNested("Monitoring", err.(request.ErrInvalidParams)) - } - } - if s.NetworkInterfaces != nil { - for i, v := range s.NetworkInterfaces { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "NetworkInterfaces", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a reservation. -type Reservation struct { - _ struct{} `type:"structure"` - - // [EC2-Classic only] One or more security groups. - Groups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // One or more instances. - Instances []*Instance `locationName:"instancesSet" locationNameList:"item" type:"list"` - - // The ID of the AWS account that owns the reservation. - OwnerId *string `locationName:"ownerId" type:"string"` - - // The ID of the requester that launched the instances on your behalf (for example, - // AWS Management Console or Auto Scaling). - RequesterId *string `locationName:"requesterId" type:"string"` - - // The ID of the reservation. - ReservationId *string `locationName:"reservationId" type:"string"` -} - -// String returns the string representation -func (s Reservation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Reservation) GoString() string { - return s.String() -} - -// The cost associated with the Reserved Instance. -type ReservationValue struct { - _ struct{} `type:"structure"` - - // The hourly rate of the reservation. - HourlyPrice *string `locationName:"hourlyPrice" type:"string"` - - // The balance of the total value (the sum of remainingUpfrontValue + hourlyPrice - // * number of hours remaining). - RemainingTotalValue *string `locationName:"remainingTotalValue" type:"string"` - - // The remaining upfront cost of the reservation. - RemainingUpfrontValue *string `locationName:"remainingUpfrontValue" type:"string"` -} - -// String returns the string representation -func (s ReservationValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservationValue) GoString() string { - return s.String() -} - -// Describes the limit price of a Reserved Instance offering. -type ReservedInstanceLimitPrice struct { - _ struct{} `type:"structure"` - - // Used for Reserved Instance Marketplace offerings. Specifies the limit price - // on the total order (instanceCount * price). - Amount *float64 `locationName:"amount" type:"double"` - - // The currency in which the limitPrice amount is specified. At this time, the - // only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` -} - -// String returns the string representation -func (s ReservedInstanceLimitPrice) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstanceLimitPrice) GoString() string { - return s.String() -} - -// The total value of the Convertible Reserved Instance. -type ReservedInstanceReservationValue struct { - _ struct{} `type:"structure"` - - // The total value of the Convertible Reserved Instance that you are exchanging. - ReservationValue *ReservationValue `locationName:"reservationValue" type:"structure"` - - // The ID of the Convertible Reserved Instance that you are exchanging. - ReservedInstanceId *string `locationName:"reservedInstanceId" type:"string"` -} - -// String returns the string representation -func (s ReservedInstanceReservationValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstanceReservationValue) GoString() string { - return s.String() -} - -// Describes a Reserved Instance. -type ReservedInstances struct { - _ struct{} `type:"structure"` - - // The Availability Zone in which the Reserved Instance can be used. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The currency of the Reserved Instance. It's specified using ISO 4217 standard - // currency codes. At this time, the only supported currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The duration of the Reserved Instance, in seconds. - Duration *int64 `locationName:"duration" type:"long"` - - // The time when the Reserved Instance expires. - End *time.Time `locationName:"end" type:"timestamp" timestampFormat:"iso8601"` - - // The purchase price of the Reserved Instance. - FixedPrice *float64 `locationName:"fixedPrice" type:"float"` - - // The number of reservations purchased. - InstanceCount *int64 `locationName:"instanceCount" type:"integer"` - - // The tenancy of the instance. - InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"` - - // The instance type on which the Reserved Instance can be used. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // The offering class of the Reserved Instance. - OfferingClass *string `locationName:"offeringClass" type:"string" enum:"OfferingClassType"` - - // The Reserved Instance offering type. - OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"` - - // The Reserved Instance product platform description. - ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"` - - // The recurring charge tag assigned to the resource. - RecurringCharges []*RecurringCharge `locationName:"recurringCharges" locationNameList:"item" type:"list"` - - // The ID of the Reserved Instance. - ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` - - // The scope of the Reserved Instance. - Scope *string `locationName:"scope" type:"string" enum:"scope"` - - // The date and time the Reserved Instance started. - Start *time.Time `locationName:"start" type:"timestamp" timestampFormat:"iso8601"` - - // The state of the Reserved Instance purchase. - State *string `locationName:"state" type:"string" enum:"ReservedInstanceState"` - - // Any tags assigned to the resource. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The usage price of the Reserved Instance, per hour. - UsagePrice *float64 `locationName:"usagePrice" type:"float"` -} - -// String returns the string representation -func (s ReservedInstances) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstances) GoString() string { - return s.String() -} - -// Describes the configuration settings for the modified Reserved Instances. -type ReservedInstancesConfiguration struct { - _ struct{} `type:"structure"` - - // The Availability Zone for the modified Reserved Instances. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The number of modified Reserved Instances. - InstanceCount *int64 `locationName:"instanceCount" type:"integer"` - - // The instance type for the modified Reserved Instances. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // The network platform of the modified Reserved Instances, which is either - // EC2-Classic or EC2-VPC. - Platform *string `locationName:"platform" type:"string"` - - // Whether the Reserved Instance is standard or convertible. - Scope *string `locationName:"scope" type:"string" enum:"scope"` -} - -// String returns the string representation -func (s ReservedInstancesConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstancesConfiguration) GoString() string { - return s.String() -} - -// Describes the ID of a Reserved Instance. -type ReservedInstancesId struct { - _ struct{} `type:"structure"` - - // The ID of the Reserved Instance. - ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` -} - -// String returns the string representation -func (s ReservedInstancesId) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstancesId) GoString() string { - return s.String() -} - -// Describes a Reserved Instance listing. -type ReservedInstancesListing struct { - _ struct{} `type:"structure"` - - // A unique, case-sensitive key supplied by the client to ensure that the request - // is idempotent. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - ClientToken *string `locationName:"clientToken" type:"string"` - - // The time the listing was created. - CreateDate *time.Time `locationName:"createDate" type:"timestamp" timestampFormat:"iso8601"` - - // The number of instances in this state. - InstanceCounts []*InstanceCount `locationName:"instanceCounts" locationNameList:"item" type:"list"` - - // The price of the Reserved Instance listing. - PriceSchedules []*PriceSchedule `locationName:"priceSchedules" locationNameList:"item" type:"list"` - - // The ID of the Reserved Instance. - ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` - - // The ID of the Reserved Instance listing. - ReservedInstancesListingId *string `locationName:"reservedInstancesListingId" type:"string"` - - // The status of the Reserved Instance listing. - Status *string `locationName:"status" type:"string" enum:"ListingStatus"` - - // The reason for the current status of the Reserved Instance listing. The response - // can be blank. - StatusMessage *string `locationName:"statusMessage" type:"string"` - - // Any tags assigned to the resource. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The last modified timestamp of the listing. - UpdateDate *time.Time `locationName:"updateDate" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s ReservedInstancesListing) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstancesListing) GoString() string { - return s.String() -} - -// Describes a Reserved Instance modification. -type ReservedInstancesModification struct { - _ struct{} `type:"structure"` - - // A unique, case-sensitive key supplied by the client to ensure that the request - // is idempotent. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - ClientToken *string `locationName:"clientToken" type:"string"` - - // The time when the modification request was created. - CreateDate *time.Time `locationName:"createDate" type:"timestamp" timestampFormat:"iso8601"` - - // The time for the modification to become effective. - EffectiveDate *time.Time `locationName:"effectiveDate" type:"timestamp" timestampFormat:"iso8601"` - - // Contains target configurations along with their corresponding new Reserved - // Instance IDs. - ModificationResults []*ReservedInstancesModificationResult `locationName:"modificationResultSet" locationNameList:"item" type:"list"` - - // The IDs of one or more Reserved Instances. - ReservedInstancesIds []*ReservedInstancesId `locationName:"reservedInstancesSet" locationNameList:"item" type:"list"` - - // A unique ID for the Reserved Instance modification. - ReservedInstancesModificationId *string `locationName:"reservedInstancesModificationId" type:"string"` - - // The status of the Reserved Instances modification request. - Status *string `locationName:"status" type:"string"` - - // The reason for the status. - StatusMessage *string `locationName:"statusMessage" type:"string"` - - // The time when the modification request was last updated. - UpdateDate *time.Time `locationName:"updateDate" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s ReservedInstancesModification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstancesModification) GoString() string { - return s.String() -} - -// Describes the modification request/s. -type ReservedInstancesModificationResult struct { - _ struct{} `type:"structure"` - - // The ID for the Reserved Instances that were created as part of the modification - // request. This field is only available when the modification is fulfilled. - ReservedInstancesId *string `locationName:"reservedInstancesId" type:"string"` - - // The target Reserved Instances configurations supplied as part of the modification - // request. - TargetConfiguration *ReservedInstancesConfiguration `locationName:"targetConfiguration" type:"structure"` -} - -// String returns the string representation -func (s ReservedInstancesModificationResult) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstancesModificationResult) GoString() string { - return s.String() -} - -// Describes a Reserved Instance offering. -type ReservedInstancesOffering struct { - _ struct{} `type:"structure"` - - // The Availability Zone in which the Reserved Instance can be used. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The currency of the Reserved Instance offering you are purchasing. It's specified - // using ISO 4217 standard currency codes. At this time, the only supported - // currency is USD. - CurrencyCode *string `locationName:"currencyCode" type:"string" enum:"CurrencyCodeValues"` - - // The duration of the Reserved Instance, in seconds. - Duration *int64 `locationName:"duration" type:"long"` - - // The purchase price of the Reserved Instance. - FixedPrice *float64 `locationName:"fixedPrice" type:"float"` - - // The tenancy of the instance. - InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"` - - // The instance type on which the Reserved Instance can be used. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // Indicates whether the offering is available through the Reserved Instance - // Marketplace (resale) or AWS. If it's a Reserved Instance Marketplace offering, - // this is true. - Marketplace *bool `locationName:"marketplace" type:"boolean"` - - // If convertible it can be exchanged for Reserved Instances of the same or - // higher monetary value, with different configurations. If standard, it is - // not possible to perform an exchange. - OfferingClass *string `locationName:"offeringClass" type:"string" enum:"OfferingClassType"` - - // The Reserved Instance offering type. - OfferingType *string `locationName:"offeringType" type:"string" enum:"OfferingTypeValues"` - - // The pricing details of the Reserved Instance offering. - PricingDetails []*PricingDetail `locationName:"pricingDetailsSet" locationNameList:"item" type:"list"` - - // The Reserved Instance product platform description. - ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"` - - // The recurring charge tag assigned to the resource. - RecurringCharges []*RecurringCharge `locationName:"recurringCharges" locationNameList:"item" type:"list"` - - // The ID of the Reserved Instance offering. This is the offering ID used in - // GetReservedInstancesExchangeQuote to confirm that an exchange can be made. - ReservedInstancesOfferingId *string `locationName:"reservedInstancesOfferingId" type:"string"` - - // Whether the Reserved Instance is applied to instances in a region or an Availability - // Zone. - Scope *string `locationName:"scope" type:"string" enum:"scope"` - - // The usage price of the Reserved Instance, per hour. - UsagePrice *float64 `locationName:"usagePrice" type:"float"` -} - -// String returns the string representation -func (s ReservedInstancesOffering) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReservedInstancesOffering) GoString() string { - return s.String() -} - -// Contains the parameters for ResetImageAttribute. -type ResetImageAttributeInput struct { - _ struct{} `type:"structure"` - - // The attribute to reset (currently you can only reset the launch permission - // attribute). - // - // Attribute is a required field - Attribute *string `type:"string" required:"true" enum:"ResetImageAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the AMI. - // - // ImageId is a required field - ImageId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ResetImageAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetImageAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ResetImageAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ResetImageAttributeInput"} - if s.Attribute == nil { - invalidParams.Add(request.NewErrParamRequired("Attribute")) - } - if s.ImageId == nil { - invalidParams.Add(request.NewErrParamRequired("ImageId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ResetImageAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ResetImageAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetImageAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ResetInstanceAttribute. -type ResetInstanceAttributeInput struct { - _ struct{} `type:"structure"` - - // The attribute to reset. - // - // You can only reset the following attributes: kernel | ramdisk | sourceDestCheck. - // To change an instance attribute, use ModifyInstanceAttribute. - // - // Attribute is a required field - Attribute *string `locationName:"attribute" type:"string" required:"true" enum:"InstanceAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the instance. - // - // InstanceId is a required field - InstanceId *string `locationName:"instanceId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ResetInstanceAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetInstanceAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ResetInstanceAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ResetInstanceAttributeInput"} - if s.Attribute == nil { - invalidParams.Add(request.NewErrParamRequired("Attribute")) - } - if s.InstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ResetInstanceAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ResetInstanceAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetInstanceAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ResetNetworkInterfaceAttribute. -type ResetNetworkInterfaceAttributeInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the network interface. - // - // NetworkInterfaceId is a required field - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` - - // The source/destination checking attribute. Resets the value to true. - SourceDestCheck *string `locationName:"sourceDestCheck" type:"string"` -} - -// String returns the string representation -func (s ResetNetworkInterfaceAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetNetworkInterfaceAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ResetNetworkInterfaceAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ResetNetworkInterfaceAttributeInput"} - if s.NetworkInterfaceId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkInterfaceId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ResetNetworkInterfaceAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ResetNetworkInterfaceAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetNetworkInterfaceAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for ResetSnapshotAttribute. -type ResetSnapshotAttributeInput struct { - _ struct{} `type:"structure"` - - // The attribute to reset. Currently, only the attribute for permission to create - // volumes can be reset. - // - // Attribute is a required field - Attribute *string `type:"string" required:"true" enum:"SnapshotAttributeName"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The ID of the snapshot. - // - // SnapshotId is a required field - SnapshotId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ResetSnapshotAttributeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetSnapshotAttributeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ResetSnapshotAttributeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ResetSnapshotAttributeInput"} - if s.Attribute == nil { - invalidParams.Add(request.NewErrParamRequired("Attribute")) - } - if s.SnapshotId == nil { - invalidParams.Add(request.NewErrParamRequired("SnapshotId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ResetSnapshotAttributeOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ResetSnapshotAttributeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResetSnapshotAttributeOutput) GoString() string { - return s.String() -} - -// Contains the parameters for RestoreAddressToClassic. -type RestoreAddressToClassicInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The Elastic IP address. - // - // PublicIp is a required field - PublicIp *string `locationName:"publicIp" type:"string" required:"true"` -} - -// String returns the string representation -func (s RestoreAddressToClassicInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RestoreAddressToClassicInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RestoreAddressToClassicInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RestoreAddressToClassicInput"} - if s.PublicIp == nil { - invalidParams.Add(request.NewErrParamRequired("PublicIp")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of RestoreAddressToClassic. -type RestoreAddressToClassicOutput struct { - _ struct{} `type:"structure"` - - // The Elastic IP address. - PublicIp *string `locationName:"publicIp" type:"string"` - - // The move status for the IP address. - Status *string `locationName:"status" type:"string" enum:"Status"` -} - -// String returns the string representation -func (s RestoreAddressToClassicOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RestoreAddressToClassicOutput) GoString() string { - return s.String() -} - -// Contains the parameters for RevokeSecurityGroupEgress. -type RevokeSecurityGroupEgressInput struct { - _ struct{} `type:"structure"` - - // The CIDR IP address range. We recommend that you specify the CIDR range in - // a set of IP permissions instead. - CidrIp *string `locationName:"cidrIp" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The start of port range for the TCP and UDP protocols, or an ICMP type number. - // We recommend that you specify the port range in a set of IP permissions instead. - FromPort *int64 `locationName:"fromPort" type:"integer"` - - // The ID of the security group. - // - // GroupId is a required field - GroupId *string `locationName:"groupId" type:"string" required:"true"` - - // A set of IP permissions. You can't specify a destination security group and - // a CIDR IP address range. - IpPermissions []*IpPermission `locationName:"ipPermissions" locationNameList:"item" type:"list"` - - // The IP protocol name or number. We recommend that you specify the protocol - // in a set of IP permissions instead. - IpProtocol *string `locationName:"ipProtocol" type:"string"` - - // The name of a destination security group. To revoke outbound access to a - // destination security group, we recommend that you use a set of IP permissions - // instead. - SourceSecurityGroupName *string `locationName:"sourceSecurityGroupName" type:"string"` - - // The AWS account number for a destination security group. To revoke outbound - // access to a destination security group, we recommend that you use a set of - // IP permissions instead. - SourceSecurityGroupOwnerId *string `locationName:"sourceSecurityGroupOwnerId" type:"string"` - - // The end of port range for the TCP and UDP protocols, or an ICMP type number. - // We recommend that you specify the port range in a set of IP permissions instead. - ToPort *int64 `locationName:"toPort" type:"integer"` -} - -// String returns the string representation -func (s RevokeSecurityGroupEgressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RevokeSecurityGroupEgressInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RevokeSecurityGroupEgressInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RevokeSecurityGroupEgressInput"} - if s.GroupId == nil { - invalidParams.Add(request.NewErrParamRequired("GroupId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type RevokeSecurityGroupEgressOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s RevokeSecurityGroupEgressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RevokeSecurityGroupEgressOutput) GoString() string { - return s.String() -} - -// Contains the parameters for RevokeSecurityGroupIngress. -type RevokeSecurityGroupIngressInput struct { - _ struct{} `type:"structure"` - - // The CIDR IP address range. You can't specify this parameter when specifying - // a source security group. - CidrIp *string `type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // The start of port range for the TCP and UDP protocols, or an ICMP type number. - // For the ICMP type number, use -1 to specify all ICMP types. - FromPort *int64 `type:"integer"` - - // The ID of the security group. Required for a security group in a nondefault - // VPC. - GroupId *string `type:"string"` - - // [EC2-Classic, default VPC] The name of the security group. - GroupName *string `type:"string"` - - // A set of IP permissions. You can't specify a source security group and a - // CIDR IP address range. - IpPermissions []*IpPermission `locationNameList:"item" type:"list"` - - // The IP protocol name (tcp, udp, icmp) or number (see Protocol Numbers (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml)). - // Use -1 to specify all. - IpProtocol *string `type:"string"` - - // [EC2-Classic, default VPC] The name of the source security group. You can't - // specify this parameter in combination with the following parameters: the - // CIDR IP address range, the start of the port range, the IP protocol, and - // the end of the port range. For EC2-VPC, the source security group must be - // in the same VPC. To revoke a specific rule for an IP protocol and port range, - // use a set of IP permissions instead. - SourceSecurityGroupName *string `type:"string"` - - // [EC2-Classic] The AWS account ID of the source security group, if the source - // security group is in a different account. You can't specify this parameter - // in combination with the following parameters: the CIDR IP address range, - // the IP protocol, the start of the port range, and the end of the port range. - // To revoke a specific rule for an IP protocol and port range, use a set of - // IP permissions instead. - SourceSecurityGroupOwnerId *string `type:"string"` - - // The end of port range for the TCP and UDP protocols, or an ICMP code number. - // For the ICMP code number, use -1 to specify all ICMP codes for the ICMP type. - ToPort *int64 `type:"integer"` -} - -// String returns the string representation -func (s RevokeSecurityGroupIngressInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RevokeSecurityGroupIngressInput) GoString() string { - return s.String() -} - -type RevokeSecurityGroupIngressOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s RevokeSecurityGroupIngressOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RevokeSecurityGroupIngressOutput) GoString() string { - return s.String() -} - -// Describes a route in a route table. -type Route struct { - _ struct{} `type:"structure"` - - // The CIDR block used for the destination match. - DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string"` - - // The prefix of the AWS service. - DestinationPrefixListId *string `locationName:"destinationPrefixListId" type:"string"` - - // The ID of a gateway attached to your VPC. - GatewayId *string `locationName:"gatewayId" type:"string"` - - // The ID of a NAT instance in your VPC. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The AWS account ID of the owner of the instance. - InstanceOwnerId *string `locationName:"instanceOwnerId" type:"string"` - - // The ID of a NAT gateway. - NatGatewayId *string `locationName:"natGatewayId" type:"string"` - - // The ID of the network interface. - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - - // Describes how the route was created. - // - // CreateRouteTable - The route was automatically created when the route - // table was created. - // - // CreateRoute - The route was manually added to the route table. - // - // EnableVgwRoutePropagation - The route was propagated by route propagation. - Origin *string `locationName:"origin" type:"string" enum:"RouteOrigin"` - - // The state of the route. The blackhole state indicates that the route's target - // isn't available (for example, the specified gateway isn't attached to the - // VPC, or the specified NAT instance has been terminated). - State *string `locationName:"state" type:"string" enum:"RouteState"` - - // The ID of the VPC peering connection. - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` -} - -// String returns the string representation -func (s Route) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Route) GoString() string { - return s.String() -} - -// Describes a route table. -type RouteTable struct { - _ struct{} `type:"structure"` - - // The associations between the route table and one or more subnets. - Associations []*RouteTableAssociation `locationName:"associationSet" locationNameList:"item" type:"list"` - - // Any virtual private gateway (VGW) propagating routes. - PropagatingVgws []*PropagatingVgw `locationName:"propagatingVgwSet" locationNameList:"item" type:"list"` - - // The ID of the route table. - RouteTableId *string `locationName:"routeTableId" type:"string"` - - // The routes in the route table. - Routes []*Route `locationName:"routeSet" locationNameList:"item" type:"list"` - - // Any tags assigned to the route table. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s RouteTable) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RouteTable) GoString() string { - return s.String() -} - -// Describes an association between a route table and a subnet. -type RouteTableAssociation struct { - _ struct{} `type:"structure"` - - // Indicates whether this is the main route table. - Main *bool `locationName:"main" type:"boolean"` - - // The ID of the association between a route table and a subnet. - RouteTableAssociationId *string `locationName:"routeTableAssociationId" type:"string"` - - // The ID of the route table. - RouteTableId *string `locationName:"routeTableId" type:"string"` - - // The ID of the subnet. A subnet ID is not returned for an implicit association. - SubnetId *string `locationName:"subnetId" type:"string"` -} - -// String returns the string representation -func (s RouteTableAssociation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RouteTableAssociation) GoString() string { - return s.String() -} - -// Contains the parameters for RunInstances. -type RunInstancesInput struct { - _ struct{} `type:"structure"` - - // Reserved. - AdditionalInfo *string `locationName:"additionalInfo" type:"string"` - - // The block device mapping. - // - // Supplying both a snapshot ID and an encryption value as arguments for block-device - // mapping results in an error. This is because only blank volumes can be encrypted - // on start, and these are not created from a snapshot. If a snapshot is the - // basis for the volume, it contains data by definition and its encryption status - // cannot be changed using this action. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"BlockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"` - - // Unique, case-sensitive identifier you provide to ensure the idempotency of - // the request. For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - // - // Constraints: Maximum 64 ASCII characters - ClientToken *string `locationName:"clientToken" type:"string"` - - // If you set this parameter to true, you can't terminate the instance using - // the Amazon EC2 console, CLI, or API; otherwise, you can. If you set this - // parameter to true and then later want to be able to terminate the instance, - // you must first change the value of the disableApiTermination attribute to - // false using ModifyInstanceAttribute. Alternatively, if you set InstanceInitiatedShutdownBehavior - // to terminate, you can terminate the instance by running the shutdown command - // from the instance. - // - // Default: false - DisableApiTermination *bool `locationName:"disableApiTermination" type:"boolean"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Indicates whether the instance is optimized for EBS I/O. This optimization - // provides dedicated throughput to Amazon EBS and an optimized configuration - // stack to provide optimal EBS I/O performance. This optimization isn't available - // with all instance types. Additional usage charges apply when using an EBS-optimized - // instance. - // - // Default: false - EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"` - - // The IAM instance profile. - IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"` - - // The ID of the AMI, which you can get by calling DescribeImages. - // - // ImageId is a required field - ImageId *string `type:"string" required:"true"` - - // Indicates whether an instance stops or terminates when you initiate shutdown - // from the instance (using the operating system command for system shutdown). - // - // Default: stop - InstanceInitiatedShutdownBehavior *string `locationName:"instanceInitiatedShutdownBehavior" type:"string" enum:"ShutdownBehavior"` - - // The instance type. For more information, see Instance Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html) - // in the Amazon Elastic Compute Cloud User Guide. - // - // Default: m1.small - InstanceType *string `type:"string" enum:"InstanceType"` - - // The ID of the kernel. - // - // We recommend that you use PV-GRUB instead of kernels and RAM disks. For - // more information, see PV-GRUB (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html) - // in the Amazon Elastic Compute Cloud User Guide. - KernelId *string `type:"string"` - - // The name of the key pair. You can create a key pair using CreateKeyPair or - // ImportKeyPair. - // - // If you do not specify a key pair, you can't connect to the instance unless - // you choose an AMI that is configured to allow users another way to log in. - KeyName *string `type:"string"` - - // The maximum number of instances to launch. If you specify more instances - // than Amazon EC2 can launch in the target Availability Zone, Amazon EC2 launches - // the largest possible number of instances above MinCount. - // - // Constraints: Between 1 and the maximum number you're allowed for the specified - // instance type. For more information about the default limits, and how to - // request an increase, see How many instances can I run in Amazon EC2 (http://aws.amazon.com/ec2/faqs/#How_many_instances_can_I_run_in_Amazon_EC2) - // in the Amazon EC2 FAQ. - // - // MaxCount is a required field - MaxCount *int64 `type:"integer" required:"true"` - - // The minimum number of instances to launch. If you specify a minimum that - // is more instances than Amazon EC2 can launch in the target Availability Zone, - // Amazon EC2 launches no instances. - // - // Constraints: Between 1 and the maximum number you're allowed for the specified - // instance type. For more information about the default limits, and how to - // request an increase, see How many instances can I run in Amazon EC2 (http://aws.amazon.com/ec2/faqs/#How_many_instances_can_I_run_in_Amazon_EC2) - // in the Amazon EC2 General FAQ. - // - // MinCount is a required field - MinCount *int64 `type:"integer" required:"true"` - - // The monitoring for the instance. - Monitoring *RunInstancesMonitoringEnabled `type:"structure"` - - // One or more network interfaces. - NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"networkInterface" locationNameList:"item" type:"list"` - - // The placement for the instance. - Placement *Placement `type:"structure"` - - // [EC2-VPC] The primary IP address. You must specify a value from the IP address - // range of the subnet. - // - // Only one private IP address can be designated as primary. Therefore, you - // can't specify this parameter if PrivateIpAddresses.n.Primary is set to true - // and PrivateIpAddresses.n.PrivateIpAddress is set to an IP address. - // - // You cannot specify this option if you're launching more than one instance - // in the request. - // - // Default: We select an IP address from the IP address range of the subnet. - PrivateIpAddress *string `locationName:"privateIpAddress" type:"string"` - - // The ID of the RAM disk. - // - // We recommend that you use PV-GRUB instead of kernels and RAM disks. For - // more information, see PV-GRUB (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/UserProvidedkernels.html) - // in the Amazon Elastic Compute Cloud User Guide. - RamdiskId *string `type:"string"` - - // One or more security group IDs. You can create a security group using CreateSecurityGroup. - // - // Default: Amazon EC2 uses the default security group. - SecurityGroupIds []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"` - - // [EC2-Classic, default VPC] One or more security group names. For a nondefault - // VPC, you must use security group IDs instead. - // - // Default: Amazon EC2 uses the default security group. - SecurityGroups []*string `locationName:"SecurityGroup" locationNameList:"SecurityGroup" type:"list"` - - // [EC2-VPC] The ID of the subnet to launch the instance into. - SubnetId *string `type:"string"` - - // The user data to make available to the instance. For more information, see - // Running Commands on Your Linux Instance at Launch (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/user-data.html) - // (Linux) and Adding User Data (http://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/ec2-instance-metadata.html#instancedata-add-user-data) - // (Windows). If you are using an AWS SDK or command line tool, Base64-encoding - // is performed for you, and you can load the text from a file. Otherwise, you - // must provide Base64-encoded text. - UserData *string `type:"string"` -} - -// String returns the string representation -func (s RunInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RunInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RunInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RunInstancesInput"} - if s.ImageId == nil { - invalidParams.Add(request.NewErrParamRequired("ImageId")) - } - if s.MaxCount == nil { - invalidParams.Add(request.NewErrParamRequired("MaxCount")) - } - if s.MinCount == nil { - invalidParams.Add(request.NewErrParamRequired("MinCount")) - } - if s.Monitoring != nil { - if err := s.Monitoring.Validate(); err != nil { - invalidParams.AddNested("Monitoring", err.(request.ErrInvalidParams)) - } - } - if s.NetworkInterfaces != nil { - for i, v := range s.NetworkInterfaces { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "NetworkInterfaces", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes the monitoring for the instance. -type RunInstancesMonitoringEnabled struct { - _ struct{} `type:"structure"` - - // Indicates whether monitoring is enabled for the instance. - // - // Enabled is a required field - Enabled *bool `locationName:"enabled" type:"boolean" required:"true"` -} - -// String returns the string representation -func (s RunInstancesMonitoringEnabled) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RunInstancesMonitoringEnabled) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RunInstancesMonitoringEnabled) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RunInstancesMonitoringEnabled"} - if s.Enabled == nil { - invalidParams.Add(request.NewErrParamRequired("Enabled")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the parameters for RunScheduledInstances. -type RunScheduledInstancesInput struct { - _ struct{} `type:"structure"` - - // Unique, case-sensitive identifier that ensures the idempotency of the request. - // For more information, see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - ClientToken *string `type:"string" idempotencyToken:"true"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `type:"boolean"` - - // The number of instances. - // - // Default: 1 - InstanceCount *int64 `type:"integer"` - - // The launch specification. You must match the instance type, Availability - // Zone, network, and platform of the schedule that you purchased. - // - // LaunchSpecification is a required field - LaunchSpecification *ScheduledInstancesLaunchSpecification `type:"structure" required:"true"` - - // The Scheduled Instance ID. - // - // ScheduledInstanceId is a required field - ScheduledInstanceId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s RunScheduledInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RunScheduledInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RunScheduledInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RunScheduledInstancesInput"} - if s.LaunchSpecification == nil { - invalidParams.Add(request.NewErrParamRequired("LaunchSpecification")) - } - if s.ScheduledInstanceId == nil { - invalidParams.Add(request.NewErrParamRequired("ScheduledInstanceId")) - } - if s.LaunchSpecification != nil { - if err := s.LaunchSpecification.Validate(); err != nil { - invalidParams.AddNested("LaunchSpecification", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of RunScheduledInstances. -type RunScheduledInstancesOutput struct { - _ struct{} `type:"structure"` - - // The IDs of the newly launched instances. - InstanceIdSet []*string `locationName:"instanceIdSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s RunScheduledInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RunScheduledInstancesOutput) GoString() string { - return s.String() -} - -// Describes the storage parameters for S3 and S3 buckets for an instance store-backed -// AMI. -type S3Storage struct { - _ struct{} `type:"structure"` - - // The access key ID of the owner of the bucket. Before you specify a value - // for your access key ID, review and follow the guidance in Best Practices - // for Managing AWS Access Keys (http://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html). - AWSAccessKeyId *string `type:"string"` - - // The bucket in which to store the AMI. You can specify a bucket that you already - // own or a new bucket that Amazon EC2 creates on your behalf. If you specify - // a bucket that belongs to someone else, Amazon EC2 returns an error. - Bucket *string `locationName:"bucket" type:"string"` - - // The beginning of the file name of the AMI. - Prefix *string `locationName:"prefix" type:"string"` - - // An Amazon S3 upload policy that gives Amazon EC2 permission to upload items - // into Amazon S3 on your behalf. - // - // UploadPolicy is automatically base64 encoded/decoded by the SDK. - UploadPolicy []byte `locationName:"uploadPolicy" type:"blob"` - - // The signature of the JSON document. - UploadPolicySignature *string `locationName:"uploadPolicySignature" type:"string"` -} - -// String returns the string representation -func (s S3Storage) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s S3Storage) GoString() string { - return s.String() -} - -// Describes a Scheduled Instance. -type ScheduledInstance struct { - _ struct{} `type:"structure"` - - // The Availability Zone. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The date when the Scheduled Instance was purchased. - CreateDate *time.Time `locationName:"createDate" type:"timestamp" timestampFormat:"iso8601"` - - // The hourly price for a single instance. - HourlyPrice *string `locationName:"hourlyPrice" type:"string"` - - // The number of instances. - InstanceCount *int64 `locationName:"instanceCount" type:"integer"` - - // The instance type. - InstanceType *string `locationName:"instanceType" type:"string"` - - // The network platform (EC2-Classic or EC2-VPC). - NetworkPlatform *string `locationName:"networkPlatform" type:"string"` - - // The time for the next schedule to start. - NextSlotStartTime *time.Time `locationName:"nextSlotStartTime" type:"timestamp" timestampFormat:"iso8601"` - - // The platform (Linux/UNIX or Windows). - Platform *string `locationName:"platform" type:"string"` - - // The time that the previous schedule ended or will end. - PreviousSlotEndTime *time.Time `locationName:"previousSlotEndTime" type:"timestamp" timestampFormat:"iso8601"` - - // The schedule recurrence. - Recurrence *ScheduledInstanceRecurrence `locationName:"recurrence" type:"structure"` - - // The Scheduled Instance ID. - ScheduledInstanceId *string `locationName:"scheduledInstanceId" type:"string"` - - // The number of hours in the schedule. - SlotDurationInHours *int64 `locationName:"slotDurationInHours" type:"integer"` - - // The end date for the Scheduled Instance. - TermEndDate *time.Time `locationName:"termEndDate" type:"timestamp" timestampFormat:"iso8601"` - - // The start date for the Scheduled Instance. - TermStartDate *time.Time `locationName:"termStartDate" type:"timestamp" timestampFormat:"iso8601"` - - // The total number of hours for a single instance for the entire term. - TotalScheduledInstanceHours *int64 `locationName:"totalScheduledInstanceHours" type:"integer"` -} - -// String returns the string representation -func (s ScheduledInstance) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstance) GoString() string { - return s.String() -} - -// Describes a schedule that is available for your Scheduled Instances. -type ScheduledInstanceAvailability struct { - _ struct{} `type:"structure"` - - // The Availability Zone. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The number of available instances. - AvailableInstanceCount *int64 `locationName:"availableInstanceCount" type:"integer"` - - // The time period for the first schedule to start. - FirstSlotStartTime *time.Time `locationName:"firstSlotStartTime" type:"timestamp" timestampFormat:"iso8601"` - - // The hourly price for a single instance. - HourlyPrice *string `locationName:"hourlyPrice" type:"string"` - - // The instance type. You can specify one of the C3, C4, M4, or R3 instance - // types. - InstanceType *string `locationName:"instanceType" type:"string"` - - // The maximum term. The only possible value is 365 days. - MaxTermDurationInDays *int64 `locationName:"maxTermDurationInDays" type:"integer"` - - // The minimum term. The only possible value is 365 days. - MinTermDurationInDays *int64 `locationName:"minTermDurationInDays" type:"integer"` - - // The network platform (EC2-Classic or EC2-VPC). - NetworkPlatform *string `locationName:"networkPlatform" type:"string"` - - // The platform (Linux/UNIX or Windows). - Platform *string `locationName:"platform" type:"string"` - - // The purchase token. This token expires in two hours. - PurchaseToken *string `locationName:"purchaseToken" type:"string"` - - // The schedule recurrence. - Recurrence *ScheduledInstanceRecurrence `locationName:"recurrence" type:"structure"` - - // The number of hours in the schedule. - SlotDurationInHours *int64 `locationName:"slotDurationInHours" type:"integer"` - - // The total number of hours for a single instance for the entire term. - TotalScheduledInstanceHours *int64 `locationName:"totalScheduledInstanceHours" type:"integer"` -} - -// String returns the string representation -func (s ScheduledInstanceAvailability) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstanceAvailability) GoString() string { - return s.String() -} - -// Describes the recurring schedule for a Scheduled Instance. -type ScheduledInstanceRecurrence struct { - _ struct{} `type:"structure"` - - // The frequency (Daily, Weekly, or Monthly). - Frequency *string `locationName:"frequency" type:"string"` - - // The interval quantity. The interval unit depends on the value of frequency. - // For example, every 2 weeks or every 2 months. - Interval *int64 `locationName:"interval" type:"integer"` - - // The days. For a monthly schedule, this is one or more days of the month (1-31). - // For a weekly schedule, this is one or more days of the week (1-7, where 1 - // is Sunday). - OccurrenceDaySet []*int64 `locationName:"occurrenceDaySet" locationNameList:"item" type:"list"` - - // Indicates whether the occurrence is relative to the end of the specified - // week or month. - OccurrenceRelativeToEnd *bool `locationName:"occurrenceRelativeToEnd" type:"boolean"` - - // The unit for occurrenceDaySet (DayOfWeek or DayOfMonth). - OccurrenceUnit *string `locationName:"occurrenceUnit" type:"string"` -} - -// String returns the string representation -func (s ScheduledInstanceRecurrence) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstanceRecurrence) GoString() string { - return s.String() -} - -// Describes the recurring schedule for a Scheduled Instance. -type ScheduledInstanceRecurrenceRequest struct { - _ struct{} `type:"structure"` - - // The frequency (Daily, Weekly, or Monthly). - Frequency *string `type:"string"` - - // The interval quantity. The interval unit depends on the value of Frequency. - // For example, every 2 weeks or every 2 months. - Interval *int64 `type:"integer"` - - // The days. For a monthly schedule, this is one or more days of the month (1-31). - // For a weekly schedule, this is one or more days of the week (1-7, where 1 - // is Sunday). You can't specify this value with a daily schedule. If the occurrence - // is relative to the end of the month, you can specify only a single day. - OccurrenceDays []*int64 `locationName:"OccurrenceDay" locationNameList:"OccurenceDay" type:"list"` - - // Indicates whether the occurrence is relative to the end of the specified - // week or month. You can't specify this value with a daily schedule. - OccurrenceRelativeToEnd *bool `type:"boolean"` - - // The unit for OccurrenceDays (DayOfWeek or DayOfMonth). This value is required - // for a monthly schedule. You can't specify DayOfWeek with a weekly schedule. - // You can't specify this value with a daily schedule. - OccurrenceUnit *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstanceRecurrenceRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstanceRecurrenceRequest) GoString() string { - return s.String() -} - -// Describes a block device mapping for a Scheduled Instance. -type ScheduledInstancesBlockDeviceMapping struct { - _ struct{} `type:"structure"` - - // The device name exposed to the instance (for example, /dev/sdh or xvdh). - DeviceName *string `type:"string"` - - // Parameters used to set up EBS volumes automatically when the instance is - // launched. - Ebs *ScheduledInstancesEbs `type:"structure"` - - // Suppresses the specified device included in the block device mapping of the - // AMI. - NoDevice *string `type:"string"` - - // The virtual device name (ephemeralN). Instance store volumes are numbered - // starting from 0. An instance type with two available instance store volumes - // can specify mappings for ephemeral0 and ephemeral1.The number of available - // instance store volumes depends on the instance type. After you connect to - // the instance, you must mount the volume. - // - // Constraints: For M3 instances, you must specify instance store volumes in - // the block device mapping for the instance. When you launch an M3 instance, - // we ignore any instance store volumes specified in the block device mapping - // for the AMI. - VirtualName *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstancesBlockDeviceMapping) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesBlockDeviceMapping) GoString() string { - return s.String() -} - -// Describes an EBS volume for a Scheduled Instance. -type ScheduledInstancesEbs struct { - _ struct{} `type:"structure"` - - // Indicates whether the volume is deleted on instance termination. - DeleteOnTermination *bool `type:"boolean"` - - // Indicates whether the volume is encrypted. You can attached encrypted volumes - // only to instances that support them. - Encrypted *bool `type:"boolean"` - - // The number of I/O operations per second (IOPS) that the volume supports. - // For io1 volumes, this represents the number of IOPS that are provisioned - // for the volume. For gp2 volumes, this represents the baseline performance - // of the volume and the rate at which the volume accumulates I/O credits for - // bursting. For more information about gp2 baseline performance, I/O credits, - // and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html) - // in the Amazon Elastic Compute Cloud User Guide. - // - // Constraint: Range is 100-20000 IOPS for io1 volumes and 100-10000 IOPS for - // gp2 volumes. - // - // Condition: This parameter is required for requests to create io1volumes; - // it is not used in requests to create gp2, st1, sc1, or standard volumes. - Iops *int64 `type:"integer"` - - // The ID of the snapshot. - SnapshotId *string `type:"string"` - - // The size of the volume, in GiB. - // - // Default: If you're creating the volume from a snapshot and don't specify - // a volume size, the default is the snapshot size. - VolumeSize *int64 `type:"integer"` - - // The volume type. gp2 for General Purpose SSD, io1 for Provisioned IOPS SSD, - // Throughput Optimized HDD for st1, Cold HDD for sc1, or standard for Magnetic. - // - // Default: standard - VolumeType *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstancesEbs) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesEbs) GoString() string { - return s.String() -} - -// Describes an IAM instance profile for a Scheduled Instance. -type ScheduledInstancesIamInstanceProfile struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN). - Arn *string `type:"string"` - - // The name. - Name *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstancesIamInstanceProfile) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesIamInstanceProfile) GoString() string { - return s.String() -} - -// Describes the launch specification for a Scheduled Instance. -// -// If you are launching the Scheduled Instance in EC2-VPC, you must specify -// the ID of the subnet. You can specify the subnet using either SubnetId or -// NetworkInterface. -type ScheduledInstancesLaunchSpecification struct { - _ struct{} `type:"structure"` - - // One or more block device mapping entries. - BlockDeviceMappings []*ScheduledInstancesBlockDeviceMapping `locationName:"BlockDeviceMapping" locationNameList:"BlockDeviceMapping" type:"list"` - - // Indicates whether the instances are optimized for EBS I/O. This optimization - // provides dedicated throughput to Amazon EBS and an optimized configuration - // stack to provide optimal EBS I/O performance. This optimization isn't available - // with all instance types. Additional usage charges apply when using an EBS-optimized - // instance. - // - // Default: false - EbsOptimized *bool `type:"boolean"` - - // The IAM instance profile. - IamInstanceProfile *ScheduledInstancesIamInstanceProfile `type:"structure"` - - // The ID of the Amazon Machine Image (AMI). - // - // ImageId is a required field - ImageId *string `type:"string" required:"true"` - - // The instance type. - InstanceType *string `type:"string"` - - // The ID of the kernel. - KernelId *string `type:"string"` - - // The name of the key pair. - KeyName *string `type:"string"` - - // Enable or disable monitoring for the instances. - Monitoring *ScheduledInstancesMonitoring `type:"structure"` - - // One or more network interfaces. - NetworkInterfaces []*ScheduledInstancesNetworkInterface `locationName:"NetworkInterface" locationNameList:"NetworkInterface" type:"list"` - - // The placement information. - Placement *ScheduledInstancesPlacement `type:"structure"` - - // The ID of the RAM disk. - RamdiskId *string `type:"string"` - - // The IDs of one or more security groups. - SecurityGroupIds []*string `locationName:"SecurityGroupId" locationNameList:"SecurityGroupId" type:"list"` - - // The ID of the subnet in which to launch the instances. - SubnetId *string `type:"string"` - - // The base64-encoded MIME user data. - UserData *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstancesLaunchSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesLaunchSpecification) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ScheduledInstancesLaunchSpecification) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ScheduledInstancesLaunchSpecification"} - if s.ImageId == nil { - invalidParams.Add(request.NewErrParamRequired("ImageId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes whether monitoring is enabled for a Scheduled Instance. -type ScheduledInstancesMonitoring struct { - _ struct{} `type:"structure"` - - // Indicates whether monitoring is enabled. - Enabled *bool `type:"boolean"` -} - -// String returns the string representation -func (s ScheduledInstancesMonitoring) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesMonitoring) GoString() string { - return s.String() -} - -// Describes a network interface for a Scheduled Instance. -type ScheduledInstancesNetworkInterface struct { - _ struct{} `type:"structure"` - - // Indicates whether to assign a public IP address to instances launched in - // a VPC. The public IP address can only be assigned to a network interface - // for eth0, and can only be assigned to a new network interface, not an existing - // one. You cannot specify more than one network interface in the request. If - // launching into a default subnet, the default value is true. - AssociatePublicIpAddress *bool `type:"boolean"` - - // Indicates whether to delete the interface when the instance is terminated. - DeleteOnTermination *bool `type:"boolean"` - - // The description. - Description *string `type:"string"` - - // The index of the device for the network interface attachment. - DeviceIndex *int64 `type:"integer"` - - // The IDs of one or more security groups. - Groups []*string `locationName:"Group" locationNameList:"SecurityGroupId" type:"list"` - - // The ID of the network interface. - NetworkInterfaceId *string `type:"string"` - - // The IP address of the network interface within the subnet. - PrivateIpAddress *string `type:"string"` - - // The private IP addresses. - PrivateIpAddressConfigs []*ScheduledInstancesPrivateIpAddressConfig `locationName:"PrivateIpAddressConfig" locationNameList:"PrivateIpAddressConfigSet" type:"list"` - - // The number of secondary private IP addresses. - SecondaryPrivateIpAddressCount *int64 `type:"integer"` - - // The ID of the subnet. - SubnetId *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstancesNetworkInterface) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesNetworkInterface) GoString() string { - return s.String() -} - -// Describes the placement for a Scheduled Instance. -type ScheduledInstancesPlacement struct { - _ struct{} `type:"structure"` - - // The Availability Zone. - AvailabilityZone *string `type:"string"` - - // The name of the placement group. - GroupName *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstancesPlacement) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesPlacement) GoString() string { - return s.String() -} - -// Describes a private IP address for a Scheduled Instance. -type ScheduledInstancesPrivateIpAddressConfig struct { - _ struct{} `type:"structure"` - - // Indicates whether this is a primary IP address. Otherwise, this is a secondary - // IP address. - Primary *bool `type:"boolean"` - - // The IP address. - PrivateIpAddress *string `type:"string"` -} - -// String returns the string representation -func (s ScheduledInstancesPrivateIpAddressConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ScheduledInstancesPrivateIpAddressConfig) GoString() string { - return s.String() -} - -// Describes a security group -type SecurityGroup struct { - _ struct{} `type:"structure"` - - // A description of the security group. - Description *string `locationName:"groupDescription" type:"string"` - - // The ID of the security group. - GroupId *string `locationName:"groupId" type:"string"` - - // The name of the security group. - GroupName *string `locationName:"groupName" type:"string"` - - // One or more inbound rules associated with the security group. - IpPermissions []*IpPermission `locationName:"ipPermissions" locationNameList:"item" type:"list"` - - // [EC2-VPC] One or more outbound rules associated with the security group. - IpPermissionsEgress []*IpPermission `locationName:"ipPermissionsEgress" locationNameList:"item" type:"list"` - - // The AWS account ID of the owner of the security group. - OwnerId *string `locationName:"ownerId" type:"string"` - - // Any tags assigned to the security group. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // [EC2-VPC] The ID of the VPC for the security group. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s SecurityGroup) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SecurityGroup) GoString() string { - return s.String() -} - -// Describes a VPC with a security group that references your security group. -type SecurityGroupReference struct { - _ struct{} `type:"structure"` - - // The ID of your security group. - // - // GroupId is a required field - GroupId *string `locationName:"groupId" type:"string" required:"true"` - - // The ID of the VPC with the referencing security group. - // - // ReferencingVpcId is a required field - ReferencingVpcId *string `locationName:"referencingVpcId" type:"string" required:"true"` - - // The ID of the VPC peering connection. - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` -} - -// String returns the string representation -func (s SecurityGroupReference) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SecurityGroupReference) GoString() string { - return s.String() -} - -// Describes the time period for a Scheduled Instance to start its first schedule. -// The time period must span less than one day. -type SlotDateTimeRangeRequest struct { - _ struct{} `type:"structure"` - - // The earliest date and time, in UTC, for the Scheduled Instance to start. - // - // EarliestTime is a required field - EarliestTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // The latest date and time, in UTC, for the Scheduled Instance to start. This - // value must be later than or equal to the earliest date and at most three - // months in the future. - // - // LatestTime is a required field - LatestTime *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` -} - -// String returns the string representation -func (s SlotDateTimeRangeRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SlotDateTimeRangeRequest) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *SlotDateTimeRangeRequest) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "SlotDateTimeRangeRequest"} - if s.EarliestTime == nil { - invalidParams.Add(request.NewErrParamRequired("EarliestTime")) - } - if s.LatestTime == nil { - invalidParams.Add(request.NewErrParamRequired("LatestTime")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes the time period for a Scheduled Instance to start its first schedule. -type SlotStartTimeRangeRequest struct { - _ struct{} `type:"structure"` - - // The earliest date and time, in UTC, for the Scheduled Instance to start. - EarliestTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // The latest date and time, in UTC, for the Scheduled Instance to start. - LatestTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s SlotStartTimeRangeRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SlotStartTimeRangeRequest) GoString() string { - return s.String() -} - -// Describes a snapshot. -type Snapshot struct { - _ struct{} `type:"structure"` - - // The data encryption key identifier for the snapshot. This value is a unique - // identifier that corresponds to the data encryption key that was used to encrypt - // the original volume or snapshot copy. Because data encryption keys are inherited - // by volumes created from snapshots, and vice versa, if snapshots share the - // same data encryption key identifier, then they belong to the same volume/snapshot - // lineage. This parameter is only returned by the DescribeSnapshots API operation. - DataEncryptionKeyId *string `locationName:"dataEncryptionKeyId" type:"string"` - - // The description for the snapshot. - Description *string `locationName:"description" type:"string"` - - // Indicates whether the snapshot is encrypted. - Encrypted *bool `locationName:"encrypted" type:"boolean"` - - // The full ARN of the AWS Key Management Service (AWS KMS) customer master - // key (CMK) that was used to protect the volume encryption key for the parent - // volume. - KmsKeyId *string `locationName:"kmsKeyId" type:"string"` - - // Value from an Amazon-maintained list (amazon | aws-marketplace | microsoft) - // of snapshot owners. Not to be confused with the user-configured AWS account - // alias, which is set from the IAM console. - OwnerAlias *string `locationName:"ownerAlias" type:"string"` - - // The AWS account ID of the EBS snapshot owner. - OwnerId *string `locationName:"ownerId" type:"string"` - - // The progress of the snapshot, as a percentage. - Progress *string `locationName:"progress" type:"string"` - - // The ID of the snapshot. Each snapshot receives a unique identifier when it - // is created. - SnapshotId *string `locationName:"snapshotId" type:"string"` - - // The time stamp when the snapshot was initiated. - StartTime *time.Time `locationName:"startTime" type:"timestamp" timestampFormat:"iso8601"` - - // The snapshot state. - State *string `locationName:"status" type:"string" enum:"SnapshotState"` - - // Encrypted Amazon EBS snapshots are copied asynchronously. If a snapshot copy - // operation fails (for example, if the proper AWS Key Management Service (AWS - // KMS) permissions are not obtained) this field displays error state details - // to help you diagnose why the error occurred. This parameter is only returned - // by the DescribeSnapshots API operation. - StateMessage *string `locationName:"statusMessage" type:"string"` - - // Any tags assigned to the snapshot. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the volume that was used to create the snapshot. Snapshots created - // by the CopySnapshot action have an arbitrary volume ID that should not be - // used for any purpose. - VolumeId *string `locationName:"volumeId" type:"string"` - - // The size of the volume, in GiB. - VolumeSize *int64 `locationName:"volumeSize" type:"integer"` -} - -// String returns the string representation -func (s Snapshot) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Snapshot) GoString() string { - return s.String() -} - -// Describes the snapshot created from the imported disk. -type SnapshotDetail struct { - _ struct{} `type:"structure"` - - // A description for the snapshot. - Description *string `locationName:"description" type:"string"` - - // The block device mapping for the snapshot. - DeviceName *string `locationName:"deviceName" type:"string"` - - // The size of the disk in the snapshot, in GiB. - DiskImageSize *float64 `locationName:"diskImageSize" type:"double"` - - // The format of the disk image from which the snapshot is created. - Format *string `locationName:"format" type:"string"` - - // The percentage of progress for the task. - Progress *string `locationName:"progress" type:"string"` - - // The snapshot ID of the disk being imported. - SnapshotId *string `locationName:"snapshotId" type:"string"` - - // A brief status of the snapshot creation. - Status *string `locationName:"status" type:"string"` - - // A detailed status message for the snapshot creation. - StatusMessage *string `locationName:"statusMessage" type:"string"` - - // The URL used to access the disk image. - Url *string `locationName:"url" type:"string"` - - // The S3 bucket for the disk image. - UserBucket *UserBucketDetails `locationName:"userBucket" type:"structure"` -} - -// String returns the string representation -func (s SnapshotDetail) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SnapshotDetail) GoString() string { - return s.String() -} - -// The disk container object for the import snapshot request. -type SnapshotDiskContainer struct { - _ struct{} `type:"structure"` - - // The description of the disk image being imported. - Description *string `type:"string"` - - // The format of the disk image being imported. - // - // Valid values: RAW | VHD | VMDK | OVA - Format *string `type:"string"` - - // The URL to the Amazon S3-based disk image being imported. It can either be - // a https URL (https://..) or an Amazon S3 URL (s3://..). - Url *string `type:"string"` - - // The S3 bucket for the disk image. - UserBucket *UserBucket `type:"structure"` -} - -// String returns the string representation -func (s SnapshotDiskContainer) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SnapshotDiskContainer) GoString() string { - return s.String() -} - -// Details about the import snapshot task. -type SnapshotTaskDetail struct { - _ struct{} `type:"structure"` - - // The description of the snapshot. - Description *string `locationName:"description" type:"string"` - - // The size of the disk in the snapshot, in GiB. - DiskImageSize *float64 `locationName:"diskImageSize" type:"double"` - - // The format of the disk image from which the snapshot is created. - Format *string `locationName:"format" type:"string"` - - // The percentage of completion for the import snapshot task. - Progress *string `locationName:"progress" type:"string"` - - // The snapshot ID of the disk being imported. - SnapshotId *string `locationName:"snapshotId" type:"string"` - - // A brief status for the import snapshot task. - Status *string `locationName:"status" type:"string"` - - // A detailed status message for the import snapshot task. - StatusMessage *string `locationName:"statusMessage" type:"string"` - - // The URL of the disk image from which the snapshot is created. - Url *string `locationName:"url" type:"string"` - - // The S3 bucket for the disk image. - UserBucket *UserBucketDetails `locationName:"userBucket" type:"structure"` -} - -// String returns the string representation -func (s SnapshotTaskDetail) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SnapshotTaskDetail) GoString() string { - return s.String() -} - -// Describes the data feed for a Spot instance. -type SpotDatafeedSubscription struct { - _ struct{} `type:"structure"` - - // The Amazon S3 bucket where the Spot instance data feed is located. - Bucket *string `locationName:"bucket" type:"string"` - - // The fault codes for the Spot instance request, if any. - Fault *SpotInstanceStateFault `locationName:"fault" type:"structure"` - - // The AWS account ID of the account. - OwnerId *string `locationName:"ownerId" type:"string"` - - // The prefix that is prepended to data feed files. - Prefix *string `locationName:"prefix" type:"string"` - - // The state of the Spot instance data feed subscription. - State *string `locationName:"state" type:"string" enum:"DatafeedSubscriptionState"` -} - -// String returns the string representation -func (s SpotDatafeedSubscription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotDatafeedSubscription) GoString() string { - return s.String() -} - -// Describes the launch specification for one or more Spot instances. -type SpotFleetLaunchSpecification struct { - _ struct{} `type:"structure"` - - // Deprecated. - AddressingType *string `locationName:"addressingType" type:"string"` - - // One or more block device mapping entries. - BlockDeviceMappings []*BlockDeviceMapping `locationName:"blockDeviceMapping" locationNameList:"item" type:"list"` - - // Indicates whether the instances are optimized for EBS I/O. This optimization - // provides dedicated throughput to Amazon EBS and an optimized configuration - // stack to provide optimal EBS I/O performance. This optimization isn't available - // with all instance types. Additional usage charges apply when using an EBS - // Optimized instance. - // - // Default: false - EbsOptimized *bool `locationName:"ebsOptimized" type:"boolean"` - - // The IAM instance profile. - IamInstanceProfile *IamInstanceProfileSpecification `locationName:"iamInstanceProfile" type:"structure"` - - // The ID of the AMI. - ImageId *string `locationName:"imageId" type:"string"` - - // The instance type. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // The ID of the kernel. - KernelId *string `locationName:"kernelId" type:"string"` - - // The name of the key pair. - KeyName *string `locationName:"keyName" type:"string"` - - // Enable or disable monitoring for the instances. - Monitoring *SpotFleetMonitoring `locationName:"monitoring" type:"structure"` - - // One or more network interfaces. - NetworkInterfaces []*InstanceNetworkInterfaceSpecification `locationName:"networkInterfaceSet" locationNameList:"item" type:"list"` - - // The placement information. - Placement *SpotPlacement `locationName:"placement" type:"structure"` - - // The ID of the RAM disk. - RamdiskId *string `locationName:"ramdiskId" type:"string"` - - // One or more security groups. When requesting instances in a VPC, you must - // specify the IDs of the security groups. When requesting instances in EC2-Classic, - // you can specify the names or the IDs of the security groups. - SecurityGroups []*GroupIdentifier `locationName:"groupSet" locationNameList:"item" type:"list"` - - // The bid price per unit hour for the specified instance type. If this value - // is not specified, the default is the Spot bid price specified for the fleet. - // To determine the bid price per unit hour, divide the Spot bid price by the - // value of WeightedCapacity. - SpotPrice *string `locationName:"spotPrice" type:"string"` - - // The ID of the subnet in which to launch the instances. To specify multiple - // subnets, separate them using commas; for example, "subnet-a61dafcf, subnet-65ea5f08". - SubnetId *string `locationName:"subnetId" type:"string"` - - // The user data to make available to the instances. If you are using an AWS - // SDK or command line tool, Base64-encoding is performed for you, and you can - // load the text from a file. Otherwise, you must provide Base64-encoded text. - UserData *string `locationName:"userData" type:"string"` - - // The number of units provided by the specified instance type. These are the - // same units that you chose to set the target capacity in terms (instances - // or a performance characteristic such as vCPUs, memory, or I/O). - // - // If the target capacity divided by this value is not a whole number, we round - // the number of instances to the next whole number. If this value is not specified, - // the default is 1. - WeightedCapacity *float64 `locationName:"weightedCapacity" type:"double"` -} - -// String returns the string representation -func (s SpotFleetLaunchSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotFleetLaunchSpecification) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *SpotFleetLaunchSpecification) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "SpotFleetLaunchSpecification"} - if s.NetworkInterfaces != nil { - for i, v := range s.NetworkInterfaces { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "NetworkInterfaces", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes whether monitoring is enabled. -type SpotFleetMonitoring struct { - _ struct{} `type:"structure"` - - // Enables monitoring for the instance. - // - // Default: false - Enabled *bool `locationName:"enabled" type:"boolean"` -} - -// String returns the string representation -func (s SpotFleetMonitoring) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotFleetMonitoring) GoString() string { - return s.String() -} - -// Describes a Spot fleet request. -type SpotFleetRequestConfig struct { - _ struct{} `type:"structure"` - - // The progress of the Spot fleet request. If there is an error, the status - // is error. After all bids are placed, the status is pending_fulfillment. If - // the size of the fleet is equal to or greater than its target capacity, the - // status is fulfilled. If the size of the fleet is decreased, the status is - // pending_termination while Spot instances are terminating. - ActivityStatus *string `locationName:"activityStatus" type:"string" enum:"ActivityStatus"` - - // The creation date and time of the request. - // - // CreateTime is a required field - CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // Information about the configuration of the Spot fleet request. - // - // SpotFleetRequestConfig is a required field - SpotFleetRequestConfig *SpotFleetRequestConfigData `locationName:"spotFleetRequestConfig" type:"structure" required:"true"` - - // The ID of the Spot fleet request. - // - // SpotFleetRequestId is a required field - SpotFleetRequestId *string `locationName:"spotFleetRequestId" type:"string" required:"true"` - - // The state of the Spot fleet request. - // - // SpotFleetRequestState is a required field - SpotFleetRequestState *string `locationName:"spotFleetRequestState" type:"string" required:"true" enum:"BatchState"` -} - -// String returns the string representation -func (s SpotFleetRequestConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotFleetRequestConfig) GoString() string { - return s.String() -} - -// Describes the configuration of a Spot fleet request. -type SpotFleetRequestConfigData struct { - _ struct{} `type:"structure"` - - // Indicates how to allocate the target capacity across the Spot pools specified - // by the Spot fleet request. The default is lowestPrice. - AllocationStrategy *string `locationName:"allocationStrategy" type:"string" enum:"AllocationStrategy"` - - // A unique, case-sensitive identifier you provide to ensure idempotency of - // your listings. This helps avoid duplicate listings. For more information, - // see Ensuring Idempotency (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html). - ClientToken *string `locationName:"clientToken" type:"string"` - - // Indicates whether running Spot instances should be terminated if the target - // capacity of the Spot fleet request is decreased below the current size of - // the Spot fleet. - ExcessCapacityTerminationPolicy *string `locationName:"excessCapacityTerminationPolicy" type:"string" enum:"ExcessCapacityTerminationPolicy"` - - // The number of units fulfilled by this request compared to the set target - // capacity. - FulfilledCapacity *float64 `locationName:"fulfilledCapacity" type:"double"` - - // Grants the Spot fleet permission to terminate Spot instances on your behalf - // when you cancel its Spot fleet request using CancelSpotFleetRequests or when - // the Spot fleet request expires, if you set terminateInstancesWithExpiration. - // - // IamFleetRole is a required field - IamFleetRole *string `locationName:"iamFleetRole" type:"string" required:"true"` - - // Information about the launch specifications for the Spot fleet request. - // - // LaunchSpecifications is a required field - LaunchSpecifications []*SpotFleetLaunchSpecification `locationName:"launchSpecifications" locationNameList:"item" min:"1" type:"list" required:"true"` - - // The bid price per unit hour. - // - // SpotPrice is a required field - SpotPrice *string `locationName:"spotPrice" type:"string" required:"true"` - - // The number of units to request. You can choose to set the target capacity - // in terms of instances or a performance characteristic that is important to - // your application workload, such as vCPUs, memory, or I/O. - // - // TargetCapacity is a required field - TargetCapacity *int64 `locationName:"targetCapacity" type:"integer" required:"true"` - - // Indicates whether running Spot instances should be terminated when the Spot - // fleet request expires. - TerminateInstancesWithExpiration *bool `locationName:"terminateInstancesWithExpiration" type:"boolean"` - - // The type of request. Indicates whether the fleet will only request the target - // capacity or also attempt to maintain it. When you request a certain target - // capacity, the fleet will only place the required bids. It will not attempt - // to replenish Spot instances if capacity is diminished, nor will it submit - // bids in alternative Spot pools if capacity is not available. When you want - // to maintain a certain target capacity, fleet will place the required bids - // to meet this target capacity. It will also automatically replenish any interrupted - // instances. Default: maintain. - Type *string `locationName:"type" type:"string" enum:"FleetType"` - - // The start date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // The default is to start fulfilling the request immediately. - ValidFrom *time.Time `locationName:"validFrom" type:"timestamp" timestampFormat:"iso8601"` - - // The end date and time of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // At this point, no new Spot instance requests are placed or enabled to fulfill - // the request. - ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s SpotFleetRequestConfigData) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotFleetRequestConfigData) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *SpotFleetRequestConfigData) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "SpotFleetRequestConfigData"} - if s.IamFleetRole == nil { - invalidParams.Add(request.NewErrParamRequired("IamFleetRole")) - } - if s.LaunchSpecifications == nil { - invalidParams.Add(request.NewErrParamRequired("LaunchSpecifications")) - } - if s.LaunchSpecifications != nil && len(s.LaunchSpecifications) < 1 { - invalidParams.Add(request.NewErrParamMinLen("LaunchSpecifications", 1)) - } - if s.SpotPrice == nil { - invalidParams.Add(request.NewErrParamRequired("SpotPrice")) - } - if s.TargetCapacity == nil { - invalidParams.Add(request.NewErrParamRequired("TargetCapacity")) - } - if s.LaunchSpecifications != nil { - for i, v := range s.LaunchSpecifications { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "LaunchSpecifications", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a Spot instance request. -type SpotInstanceRequest struct { - _ struct{} `type:"structure"` - - // If you specified a duration and your Spot instance request was fulfilled, - // this is the fixed hourly price in effect for the Spot instance while it runs. - ActualBlockHourlyPrice *string `locationName:"actualBlockHourlyPrice" type:"string"` - - // The Availability Zone group. If you specify the same Availability Zone group - // for all Spot instance requests, all Spot instances are launched in the same - // Availability Zone. - AvailabilityZoneGroup *string `locationName:"availabilityZoneGroup" type:"string"` - - // The duration for the Spot instance, in minutes. - BlockDurationMinutes *int64 `locationName:"blockDurationMinutes" type:"integer"` - - // The date and time when the Spot instance request was created, in UTC format - // (for example, YYYY-MM-DDTHH:MM:SSZ). - CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601"` - - // The fault codes for the Spot instance request, if any. - Fault *SpotInstanceStateFault `locationName:"fault" type:"structure"` - - // The instance ID, if an instance has been launched to fulfill the Spot instance - // request. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The instance launch group. Launch groups are Spot instances that launch together - // and terminate together. - LaunchGroup *string `locationName:"launchGroup" type:"string"` - - // Additional information for launching instances. - LaunchSpecification *LaunchSpecification `locationName:"launchSpecification" type:"structure"` - - // The Availability Zone in which the bid is launched. - LaunchedAvailabilityZone *string `locationName:"launchedAvailabilityZone" type:"string"` - - // The product description associated with the Spot instance. - ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"` - - // The ID of the Spot instance request. - SpotInstanceRequestId *string `locationName:"spotInstanceRequestId" type:"string"` - - // The maximum hourly price (bid) for the Spot instance launched to fulfill - // the request. - SpotPrice *string `locationName:"spotPrice" type:"string"` - - // The state of the Spot instance request. Spot bid status information can help - // you track your Spot instance requests. For more information, see Spot Bid - // Status (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html) - // in the Amazon Elastic Compute Cloud User Guide. - State *string `locationName:"state" type:"string" enum:"SpotInstanceState"` - - // The status code and status message describing the Spot instance request. - Status *SpotInstanceStatus `locationName:"status" type:"structure"` - - // Any tags assigned to the resource. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The Spot instance request type. - Type *string `locationName:"type" type:"string" enum:"SpotInstanceType"` - - // The start date of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // The request becomes active at this date and time. - ValidFrom *time.Time `locationName:"validFrom" type:"timestamp" timestampFormat:"iso8601"` - - // The end date of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - // If this is a one-time request, it remains active until all instances launch, - // the request is canceled, or this date is reached. If the request is persistent, - // it remains active until it is canceled or this date is reached. - ValidUntil *time.Time `locationName:"validUntil" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s SpotInstanceRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotInstanceRequest) GoString() string { - return s.String() -} - -// Describes a Spot instance state change. -type SpotInstanceStateFault struct { - _ struct{} `type:"structure"` - - // The reason code for the Spot instance state change. - Code *string `locationName:"code" type:"string"` - - // The message for the Spot instance state change. - Message *string `locationName:"message" type:"string"` -} - -// String returns the string representation -func (s SpotInstanceStateFault) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotInstanceStateFault) GoString() string { - return s.String() -} - -// Describes the status of a Spot instance request. -type SpotInstanceStatus struct { - _ struct{} `type:"structure"` - - // The status code. For a list of status codes, see Spot Bid Status Codes (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html#spot-instance-bid-status-understand) - // in the Amazon Elastic Compute Cloud User Guide. - Code *string `locationName:"code" type:"string"` - - // The description for the status code. - Message *string `locationName:"message" type:"string"` - - // The date and time of the most recent status update, in UTC format (for example, - // YYYY-MM-DDTHH:MM:SSZ). - UpdateTime *time.Time `locationName:"updateTime" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s SpotInstanceStatus) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotInstanceStatus) GoString() string { - return s.String() -} - -// Describes Spot instance placement. -type SpotPlacement struct { - _ struct{} `type:"structure"` - - // The Availability Zone. - // - // [Spot fleet only] To specify multiple Availability Zones, separate them - // using commas; for example, "us-west-2a, us-west-2b". - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The name of the placement group (for cluster instances). - GroupName *string `locationName:"groupName" type:"string"` -} - -// String returns the string representation -func (s SpotPlacement) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotPlacement) GoString() string { - return s.String() -} - -// Describes the maximum hourly price (bid) for any Spot instance launched to -// fulfill the request. -type SpotPrice struct { - _ struct{} `type:"structure"` - - // The Availability Zone. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The instance type. - InstanceType *string `locationName:"instanceType" type:"string" enum:"InstanceType"` - - // A general description of the AMI. - ProductDescription *string `locationName:"productDescription" type:"string" enum:"RIProductDescription"` - - // The maximum price (bid) that you are willing to pay for a Spot instance. - SpotPrice *string `locationName:"spotPrice" type:"string"` - - // The date and time the request was created, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). - Timestamp *time.Time `locationName:"timestamp" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s SpotPrice) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SpotPrice) GoString() string { - return s.String() -} - -// Describes a stale rule in a security group. -type StaleIpPermission struct { - _ struct{} `type:"structure"` - - // The start of the port range for the TCP and UDP protocols, or an ICMP type - // number. A value of -1 indicates all ICMP types. - FromPort *int64 `locationName:"fromPort" type:"integer"` - - // The IP protocol name (for tcp, udp, and icmp) or number (see Protocol Numbers) - // (http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml). - IpProtocol *string `locationName:"ipProtocol" type:"string"` - - // One or more IP ranges. Not applicable for stale security group rules. - IpRanges []*string `locationName:"ipRanges" locationNameList:"item" type:"list"` - - // One or more prefix list IDs for an AWS service. Not applicable for stale - // security group rules. - PrefixListIds []*string `locationName:"prefixListIds" locationNameList:"item" type:"list"` - - // The end of the port range for the TCP and UDP protocols, or an ICMP type - // number. A value of -1 indicates all ICMP types. - ToPort *int64 `locationName:"toPort" type:"integer"` - - // One or more security group pairs. Returns the ID of the referenced security - // group and VPC, and the ID and status of the VPC peering connection. - UserIdGroupPairs []*UserIdGroupPair `locationName:"groups" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s StaleIpPermission) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StaleIpPermission) GoString() string { - return s.String() -} - -// Describes a stale security group (a security group that contains stale rules). -type StaleSecurityGroup struct { - _ struct{} `type:"structure"` - - // The description of the security group. - Description *string `locationName:"description" type:"string"` - - // The ID of the security group. - // - // GroupId is a required field - GroupId *string `locationName:"groupId" type:"string" required:"true"` - - // The name of the security group. - GroupName *string `locationName:"groupName" type:"string"` - - // Information about the stale inbound rules in the security group. - StaleIpPermissions []*StaleIpPermission `locationName:"staleIpPermissions" locationNameList:"item" type:"list"` - - // Information about the stale outbound rules in the security group. - StaleIpPermissionsEgress []*StaleIpPermission `locationName:"staleIpPermissionsEgress" locationNameList:"item" type:"list"` - - // The ID of the VPC for the security group. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s StaleSecurityGroup) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StaleSecurityGroup) GoString() string { - return s.String() -} - -// Contains the parameters for StartInstances. -type StartInstancesInput struct { - _ struct{} `type:"structure"` - - // Reserved. - AdditionalInfo *string `locationName:"additionalInfo" type:"string"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more instance IDs. - // - // InstanceIds is a required field - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` -} - -// String returns the string representation -func (s StartInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StartInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *StartInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "StartInstancesInput"} - if s.InstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of StartInstances. -type StartInstancesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more started instances. - StartingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s StartInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StartInstancesOutput) GoString() string { - return s.String() -} - -// Describes a state change. -type StateReason struct { - _ struct{} `type:"structure"` - - // The reason code for the state change. - Code *string `locationName:"code" type:"string"` - - // The message for the state change. - // - // Server.SpotInstanceTermination: A Spot instance was terminated due to - // an increase in the market price. - // - // Server.InternalError: An internal error occurred during instance launch, - // resulting in termination. - // - // Server.InsufficientInstanceCapacity: There was insufficient instance - // capacity to satisfy the launch request. - // - // Client.InternalError: A client error caused the instance to terminate - // on launch. - // - // Client.InstanceInitiatedShutdown: The instance was shut down using the - // shutdown -h command from the instance. - // - // Client.UserInitiatedShutdown: The instance was shut down using the Amazon - // EC2 API. - // - // Client.VolumeLimitExceeded: The limit on the number of EBS volumes or - // total storage was exceeded. Decrease usage or request an increase in your - // limits. - // - // Client.InvalidSnapshot.NotFound: The specified snapshot was not found. - Message *string `locationName:"message" type:"string"` -} - -// String returns the string representation -func (s StateReason) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StateReason) GoString() string { - return s.String() -} - -// Contains the parameters for StopInstances. -type StopInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // Forces the instances to stop. The instances do not have an opportunity to - // flush file system caches or file system metadata. If you use this option, - // you must perform file system check and repair procedures. This option is - // not recommended for Windows instances. - // - // Default: false - Force *bool `locationName:"force" type:"boolean"` - - // One or more instance IDs. - // - // InstanceIds is a required field - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` -} - -// String returns the string representation -func (s StopInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StopInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *StopInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "StopInstancesInput"} - if s.InstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of StopInstances. -type StopInstancesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more stopped instances. - StoppingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s StopInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StopInstancesOutput) GoString() string { - return s.String() -} - -// Describes the storage location for an instance store-backed AMI. -type Storage struct { - _ struct{} `type:"structure"` - - // An Amazon S3 storage location. - S3 *S3Storage `type:"structure"` -} - -// String returns the string representation -func (s Storage) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Storage) GoString() string { - return s.String() -} - -// Describes a subnet. -type Subnet struct { - _ struct{} `type:"structure"` - - // The Availability Zone of the subnet. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The number of unused IP addresses in the subnet. Note that the IP addresses - // for any stopped instances are considered unavailable. - AvailableIpAddressCount *int64 `locationName:"availableIpAddressCount" type:"integer"` - - // The CIDR block assigned to the subnet. - CidrBlock *string `locationName:"cidrBlock" type:"string"` - - // Indicates whether this is the default subnet for the Availability Zone. - DefaultForAz *bool `locationName:"defaultForAz" type:"boolean"` - - // Indicates whether instances launched in this subnet receive a public IP address. - MapPublicIpOnLaunch *bool `locationName:"mapPublicIpOnLaunch" type:"boolean"` - - // The current state of the subnet. - State *string `locationName:"state" type:"string" enum:"SubnetState"` - - // The ID of the subnet. - SubnetId *string `locationName:"subnetId" type:"string"` - - // Any tags assigned to the subnet. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC the subnet is in. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s Subnet) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Subnet) GoString() string { - return s.String() -} - -// Describes a tag. -type Tag struct { - _ struct{} `type:"structure"` - - // The key of the tag. - // - // Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode - // characters. May not begin with aws: - Key *string `locationName:"key" type:"string"` - - // The value of the tag. - // - // Constraints: Tag values are case-sensitive and accept a maximum of 255 Unicode - // characters. - Value *string `locationName:"value" type:"string"` -} - -// String returns the string representation -func (s Tag) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Tag) GoString() string { - return s.String() -} - -// Describes a tag. -type TagDescription struct { - _ struct{} `type:"structure"` - - // The tag key. - Key *string `locationName:"key" type:"string"` - - // The ID of the resource. For example, ami-1a2b3c4d. - ResourceId *string `locationName:"resourceId" type:"string"` - - // The resource type. - ResourceType *string `locationName:"resourceType" type:"string" enum:"ResourceType"` - - // The tag value. - Value *string `locationName:"value" type:"string"` -} - -// String returns the string representation -func (s TagDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TagDescription) GoString() string { - return s.String() -} - -// Information about the Convertible Reserved Instance offering. -type TargetConfiguration struct { - _ struct{} `type:"structure"` - - // The number of instances the Convertible Reserved Instance offering can be - // applied to. This parameter is reserved and cannot be specified in a request - InstanceCount *int64 `locationName:"instanceCount" type:"integer"` - - // The ID of the Convertible Reserved Instance offering. - OfferingId *string `locationName:"offeringId" type:"string"` -} - -// String returns the string representation -func (s TargetConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TargetConfiguration) GoString() string { - return s.String() -} - -// Details about the target configuration. -type TargetConfigurationRequest struct { - _ struct{} `type:"structure"` - - // The number of instances the Covertible Reserved Instance offering can be - // applied to. This parameter is reserved and cannot be specified in a request - InstanceCount *int64 `type:"integer"` - - // The Convertible Reserved Instance offering ID. If this isn't included in - // the request, the response lists your current Convertible Reserved Instance/s - // and their value/s. - // - // OfferingId is a required field - OfferingId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s TargetConfigurationRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TargetConfigurationRequest) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TargetConfigurationRequest) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TargetConfigurationRequest"} - if s.OfferingId == nil { - invalidParams.Add(request.NewErrParamRequired("OfferingId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The total value of the new Convertible Reserved Instances. -type TargetReservationValue struct { - _ struct{} `type:"structure"` - - // The total value of the Convertible Reserved Instances that make up the exchange. - // This is the sum of the list value, remaining upfront price, and additional - // upfront cost of the exchange. - ReservationValue *ReservationValue `locationName:"reservationValue" type:"structure"` - - // The configuration of the Convertible Reserved Instances that make up the - // exchange. - TargetConfiguration *TargetConfiguration `locationName:"targetConfiguration" type:"structure"` -} - -// String returns the string representation -func (s TargetReservationValue) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TargetReservationValue) GoString() string { - return s.String() -} - -// Contains the parameters for TerminateInstances. -type TerminateInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more instance IDs. - // - // Constraints: Up to 1000 instance IDs. We recommend breaking up this request - // into smaller batches. - // - // InstanceIds is a required field - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` -} - -// String returns the string representation -func (s TerminateInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TerminateInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TerminateInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TerminateInstancesInput"} - if s.InstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of TerminateInstances. -type TerminateInstancesOutput struct { - _ struct{} `type:"structure"` - - // Information about one or more terminated instances. - TerminatingInstances []*InstanceStateChange `locationName:"instancesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s TerminateInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TerminateInstancesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for UnassignPrivateIpAddresses. -type UnassignPrivateIpAddressesInput struct { - _ struct{} `type:"structure"` - - // The ID of the network interface. - // - // NetworkInterfaceId is a required field - NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string" required:"true"` - - // The secondary private IP addresses to unassign from the network interface. - // You can specify this option multiple times to unassign more than one IP address. - // - // PrivateIpAddresses is a required field - PrivateIpAddresses []*string `locationName:"privateIpAddress" locationNameList:"PrivateIpAddress" type:"list" required:"true"` -} - -// String returns the string representation -func (s UnassignPrivateIpAddressesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UnassignPrivateIpAddressesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UnassignPrivateIpAddressesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UnassignPrivateIpAddressesInput"} - if s.NetworkInterfaceId == nil { - invalidParams.Add(request.NewErrParamRequired("NetworkInterfaceId")) - } - if s.PrivateIpAddresses == nil { - invalidParams.Add(request.NewErrParamRequired("PrivateIpAddresses")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type UnassignPrivateIpAddressesOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s UnassignPrivateIpAddressesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UnassignPrivateIpAddressesOutput) GoString() string { - return s.String() -} - -// Contains the parameters for UnmonitorInstances. -type UnmonitorInstancesInput struct { - _ struct{} `type:"structure"` - - // Checks whether you have the required permissions for the action, without - // actually making the request, and provides an error response. If you have - // the required permissions, the error response is DryRunOperation. Otherwise, - // it is UnauthorizedOperation. - DryRun *bool `locationName:"dryRun" type:"boolean"` - - // One or more instance IDs. - // - // InstanceIds is a required field - InstanceIds []*string `locationName:"InstanceId" locationNameList:"InstanceId" type:"list" required:"true"` -} - -// String returns the string representation -func (s UnmonitorInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UnmonitorInstancesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UnmonitorInstancesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UnmonitorInstancesInput"} - if s.InstanceIds == nil { - invalidParams.Add(request.NewErrParamRequired("InstanceIds")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the output of UnmonitorInstances. -type UnmonitorInstancesOutput struct { - _ struct{} `type:"structure"` - - // Monitoring information for one or more instances. - InstanceMonitorings []*InstanceMonitoring `locationName:"instancesSet" locationNameList:"item" type:"list"` -} - -// String returns the string representation -func (s UnmonitorInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UnmonitorInstancesOutput) GoString() string { - return s.String() -} - -// Information about items that were not successfully processed in a batch call. -type UnsuccessfulItem struct { - _ struct{} `type:"structure"` - - // Information about the error. - // - // Error is a required field - Error *UnsuccessfulItemError `locationName:"error" type:"structure" required:"true"` - - // The ID of the resource. - ResourceId *string `locationName:"resourceId" type:"string"` -} - -// String returns the string representation -func (s UnsuccessfulItem) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UnsuccessfulItem) GoString() string { - return s.String() -} - -// Information about the error that occurred. For more information about errors, -// see Error Codes (http://docs.aws.amazon.com/AWSEC2/latest/APIReference/errors-overview.html). -type UnsuccessfulItemError struct { - _ struct{} `type:"structure"` - - // The error code. - // - // Code is a required field - Code *string `locationName:"code" type:"string" required:"true"` - - // The error message accompanying the error code. - // - // Message is a required field - Message *string `locationName:"message" type:"string" required:"true"` -} - -// String returns the string representation -func (s UnsuccessfulItemError) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UnsuccessfulItemError) GoString() string { - return s.String() -} - -// Describes the S3 bucket for the disk image. -type UserBucket struct { - _ struct{} `type:"structure"` - - // The name of the S3 bucket where the disk image is located. - S3Bucket *string `type:"string"` - - // The file name of the disk image. - S3Key *string `type:"string"` -} - -// String returns the string representation -func (s UserBucket) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UserBucket) GoString() string { - return s.String() -} - -// Describes the S3 bucket for the disk image. -type UserBucketDetails struct { - _ struct{} `type:"structure"` - - // The S3 bucket from which the disk image was created. - S3Bucket *string `locationName:"s3Bucket" type:"string"` - - // The file name of the disk image. - S3Key *string `locationName:"s3Key" type:"string"` -} - -// String returns the string representation -func (s UserBucketDetails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UserBucketDetails) GoString() string { - return s.String() -} - -// Describes the user data for an instance. -type UserData struct { - _ struct{} `type:"structure"` - - // The user data. If you are using an AWS SDK or command line tool, Base64-encoding - // is performed for you, and you can load the text from a file. Otherwise, you - // must provide Base64-encoded text. - Data *string `locationName:"data" type:"string"` -} - -// String returns the string representation -func (s UserData) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UserData) GoString() string { - return s.String() -} - -// Describes a security group and AWS account ID pair. -type UserIdGroupPair struct { - _ struct{} `type:"structure"` - - // The ID of the security group. - GroupId *string `locationName:"groupId" type:"string"` - - // The name of the security group. In a request, use this parameter for a security - // group in EC2-Classic or a default VPC only. For a security group in a nondefault - // VPC, use the security group ID. - GroupName *string `locationName:"groupName" type:"string"` - - // The status of a VPC peering connection, if applicable. - PeeringStatus *string `locationName:"peeringStatus" type:"string"` - - // The ID of an AWS account. For a referenced security group in another VPC, - // the account ID of the referenced security group is returned. - // - // [EC2-Classic] Required when adding or removing rules that reference a security - // group in another AWS account. - UserId *string `locationName:"userId" type:"string"` - - // The ID of the VPC for the referenced security group, if applicable. - VpcId *string `locationName:"vpcId" type:"string"` - - // The ID of the VPC peering connection, if applicable. - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` -} - -// String returns the string representation -func (s UserIdGroupPair) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UserIdGroupPair) GoString() string { - return s.String() -} - -// Describes telemetry for a VPN tunnel. -type VgwTelemetry struct { - _ struct{} `type:"structure"` - - // The number of accepted routes. - AcceptedRouteCount *int64 `locationName:"acceptedRouteCount" type:"integer"` - - // The date and time of the last change in status. - LastStatusChange *time.Time `locationName:"lastStatusChange" type:"timestamp" timestampFormat:"iso8601"` - - // The Internet-routable IP address of the virtual private gateway's outside - // interface. - OutsideIpAddress *string `locationName:"outsideIpAddress" type:"string"` - - // The status of the VPN tunnel. - Status *string `locationName:"status" type:"string" enum:"TelemetryStatus"` - - // If an error occurs, a description of the error. - StatusMessage *string `locationName:"statusMessage" type:"string"` -} - -// String returns the string representation -func (s VgwTelemetry) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VgwTelemetry) GoString() string { - return s.String() -} - -// Describes a volume. -type Volume struct { - _ struct{} `type:"structure"` - - // Information about the volume attachments. - Attachments []*VolumeAttachment `locationName:"attachmentSet" locationNameList:"item" type:"list"` - - // The Availability Zone for the volume. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The time stamp when volume creation was initiated. - CreateTime *time.Time `locationName:"createTime" type:"timestamp" timestampFormat:"iso8601"` - - // Indicates whether the volume will be encrypted. - Encrypted *bool `locationName:"encrypted" type:"boolean"` - - // The number of I/O operations per second (IOPS) that the volume supports. - // For Provisioned IOPS SSD volumes, this represents the number of IOPS that - // are provisioned for the volume. For General Purpose SSD volumes, this represents - // the baseline performance of the volume and the rate at which the volume accumulates - // I/O credits for bursting. For more information on General Purpose SSD baseline - // performance, I/O credits, and bursting, see Amazon EBS Volume Types (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumeTypes.html) - // in the Amazon Elastic Compute Cloud User Guide. - // - // Constraint: Range is 100-20000 IOPS for io1 volumes and 100-10000 IOPS for - // gp2 volumes. - // - // Condition: This parameter is required for requests to create io1 volumes; - // it is not used in requests to create gp2, st1, sc1, or standard volumes. - Iops *int64 `locationName:"iops" type:"integer"` - - // The full ARN of the AWS Key Management Service (AWS KMS) customer master - // key (CMK) that was used to protect the volume encryption key for the volume. - KmsKeyId *string `locationName:"kmsKeyId" type:"string"` - - // The size of the volume, in GiBs. - Size *int64 `locationName:"size" type:"integer"` - - // The snapshot from which the volume was created, if applicable. - SnapshotId *string `locationName:"snapshotId" type:"string"` - - // The volume state. - State *string `locationName:"status" type:"string" enum:"VolumeState"` - - // Any tags assigned to the volume. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the volume. - VolumeId *string `locationName:"volumeId" type:"string"` - - // The volume type. This can be gp2 for General Purpose SSD, io1 for Provisioned - // IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard - // for Magnetic volumes. - VolumeType *string `locationName:"volumeType" type:"string" enum:"VolumeType"` -} - -// String returns the string representation -func (s Volume) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Volume) GoString() string { - return s.String() -} - -// Describes volume attachment details. -type VolumeAttachment struct { - _ struct{} `type:"structure"` - - // The time stamp when the attachment initiated. - AttachTime *time.Time `locationName:"attachTime" type:"timestamp" timestampFormat:"iso8601"` - - // Indicates whether the EBS volume is deleted on instance termination. - DeleteOnTermination *bool `locationName:"deleteOnTermination" type:"boolean"` - - // The device name. - Device *string `locationName:"device" type:"string"` - - // The ID of the instance. - InstanceId *string `locationName:"instanceId" type:"string"` - - // The attachment state of the volume. - State *string `locationName:"status" type:"string" enum:"VolumeAttachmentState"` - - // The ID of the volume. - VolumeId *string `locationName:"volumeId" type:"string"` -} - -// String returns the string representation -func (s VolumeAttachment) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VolumeAttachment) GoString() string { - return s.String() -} - -// Describes an EBS volume. -type VolumeDetail struct { - _ struct{} `type:"structure"` - - // The size of the volume, in GiB. - // - // Size is a required field - Size *int64 `locationName:"size" type:"long" required:"true"` -} - -// String returns the string representation -func (s VolumeDetail) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VolumeDetail) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *VolumeDetail) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "VolumeDetail"} - if s.Size == nil { - invalidParams.Add(request.NewErrParamRequired("Size")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Describes a volume status operation code. -type VolumeStatusAction struct { - _ struct{} `type:"structure"` - - // The code identifying the operation, for example, enable-volume-io. - Code *string `locationName:"code" type:"string"` - - // A description of the operation. - Description *string `locationName:"description" type:"string"` - - // The ID of the event associated with this operation. - EventId *string `locationName:"eventId" type:"string"` - - // The event type associated with this operation. - EventType *string `locationName:"eventType" type:"string"` -} - -// String returns the string representation -func (s VolumeStatusAction) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VolumeStatusAction) GoString() string { - return s.String() -} - -// Describes a volume status. -type VolumeStatusDetails struct { - _ struct{} `type:"structure"` - - // The name of the volume status. - Name *string `locationName:"name" type:"string" enum:"VolumeStatusName"` - - // The intended status of the volume status. - Status *string `locationName:"status" type:"string"` -} - -// String returns the string representation -func (s VolumeStatusDetails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VolumeStatusDetails) GoString() string { - return s.String() -} - -// Describes a volume status event. -type VolumeStatusEvent struct { - _ struct{} `type:"structure"` - - // A description of the event. - Description *string `locationName:"description" type:"string"` - - // The ID of this event. - EventId *string `locationName:"eventId" type:"string"` - - // The type of this event. - EventType *string `locationName:"eventType" type:"string"` - - // The latest end time of the event. - NotAfter *time.Time `locationName:"notAfter" type:"timestamp" timestampFormat:"iso8601"` - - // The earliest start time of the event. - NotBefore *time.Time `locationName:"notBefore" type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s VolumeStatusEvent) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VolumeStatusEvent) GoString() string { - return s.String() -} - -// Describes the status of a volume. -type VolumeStatusInfo struct { - _ struct{} `type:"structure"` - - // The details of the volume status. - Details []*VolumeStatusDetails `locationName:"details" locationNameList:"item" type:"list"` - - // The status of the volume. - Status *string `locationName:"status" type:"string" enum:"VolumeStatusInfoStatus"` -} - -// String returns the string representation -func (s VolumeStatusInfo) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VolumeStatusInfo) GoString() string { - return s.String() -} - -// Describes the volume status. -type VolumeStatusItem struct { - _ struct{} `type:"structure"` - - // The details of the operation. - Actions []*VolumeStatusAction `locationName:"actionsSet" locationNameList:"item" type:"list"` - - // The Availability Zone of the volume. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // A list of events associated with the volume. - Events []*VolumeStatusEvent `locationName:"eventsSet" locationNameList:"item" type:"list"` - - // The volume ID. - VolumeId *string `locationName:"volumeId" type:"string"` - - // The volume status. - VolumeStatus *VolumeStatusInfo `locationName:"volumeStatus" type:"structure"` -} - -// String returns the string representation -func (s VolumeStatusItem) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VolumeStatusItem) GoString() string { - return s.String() -} - -// Describes a VPC. -type Vpc struct { - _ struct{} `type:"structure"` - - // The CIDR block for the VPC. - CidrBlock *string `locationName:"cidrBlock" type:"string"` - - // The ID of the set of DHCP options you've associated with the VPC (or default - // if the default options are associated with the VPC). - DhcpOptionsId *string `locationName:"dhcpOptionsId" type:"string"` - - // The allowed tenancy of instances launched into the VPC. - InstanceTenancy *string `locationName:"instanceTenancy" type:"string" enum:"Tenancy"` - - // Indicates whether the VPC is the default VPC. - IsDefault *bool `locationName:"isDefault" type:"boolean"` - - // The current state of the VPC. - State *string `locationName:"state" type:"string" enum:"VpcState"` - - // Any tags assigned to the VPC. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s Vpc) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Vpc) GoString() string { - return s.String() -} - -// Describes an attachment between a virtual private gateway and a VPC. -type VpcAttachment struct { - _ struct{} `type:"structure"` - - // The current state of the attachment. - State *string `locationName:"state" type:"string" enum:"AttachmentStatus"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s VpcAttachment) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpcAttachment) GoString() string { - return s.String() -} - -// Describes whether a VPC is enabled for ClassicLink. -type VpcClassicLink struct { - _ struct{} `type:"structure"` - - // Indicates whether the VPC is enabled for ClassicLink. - ClassicLinkEnabled *bool `locationName:"classicLinkEnabled" type:"boolean"` - - // Any tags assigned to the VPC. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s VpcClassicLink) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpcClassicLink) GoString() string { - return s.String() -} - -// Describes a VPC endpoint. -type VpcEndpoint struct { - _ struct{} `type:"structure"` - - // The date and time the VPC endpoint was created. - CreationTimestamp *time.Time `locationName:"creationTimestamp" type:"timestamp" timestampFormat:"iso8601"` - - // The policy document associated with the endpoint. - PolicyDocument *string `locationName:"policyDocument" type:"string"` - - // One or more route tables associated with the endpoint. - RouteTableIds []*string `locationName:"routeTableIdSet" locationNameList:"item" type:"list"` - - // The name of the AWS service to which the endpoint is associated. - ServiceName *string `locationName:"serviceName" type:"string"` - - // The state of the VPC endpoint. - State *string `locationName:"state" type:"string" enum:"State"` - - // The ID of the VPC endpoint. - VpcEndpointId *string `locationName:"vpcEndpointId" type:"string"` - - // The ID of the VPC to which the endpoint is associated. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s VpcEndpoint) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpcEndpoint) GoString() string { - return s.String() -} - -// Describes a VPC peering connection. -type VpcPeeringConnection struct { - _ struct{} `type:"structure"` - - // Information about the accepter VPC. CIDR block information is not returned - // when creating a VPC peering connection, or when describing a VPC peering - // connection that's in the initiating-request or pending-acceptance state. - AccepterVpcInfo *VpcPeeringConnectionVpcInfo `locationName:"accepterVpcInfo" type:"structure"` - - // The time that an unaccepted VPC peering connection will expire. - ExpirationTime *time.Time `locationName:"expirationTime" type:"timestamp" timestampFormat:"iso8601"` - - // Information about the requester VPC. - RequesterVpcInfo *VpcPeeringConnectionVpcInfo `locationName:"requesterVpcInfo" type:"structure"` - - // The status of the VPC peering connection. - Status *VpcPeeringConnectionStateReason `locationName:"status" type:"structure"` - - // Any tags assigned to the resource. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The ID of the VPC peering connection. - VpcPeeringConnectionId *string `locationName:"vpcPeeringConnectionId" type:"string"` -} - -// String returns the string representation -func (s VpcPeeringConnection) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpcPeeringConnection) GoString() string { - return s.String() -} - -// Describes the VPC peering connection options. -type VpcPeeringConnectionOptionsDescription struct { - _ struct{} `type:"structure"` - - // Indicates whether a local VPC can resolve public DNS hostnames to private - // IP addresses when queried from instances in a peer VPC. - AllowDnsResolutionFromRemoteVpc *bool `locationName:"allowDnsResolutionFromRemoteVpc" type:"boolean"` - - // Indicates whether a local ClassicLink connection can communicate with the - // peer VPC over the VPC peering connection. - AllowEgressFromLocalClassicLinkToRemoteVpc *bool `locationName:"allowEgressFromLocalClassicLinkToRemoteVpc" type:"boolean"` - - // Indicates whether a local VPC can communicate with a ClassicLink connection - // in the peer VPC over the VPC peering connection. - AllowEgressFromLocalVpcToRemoteClassicLink *bool `locationName:"allowEgressFromLocalVpcToRemoteClassicLink" type:"boolean"` -} - -// String returns the string representation -func (s VpcPeeringConnectionOptionsDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpcPeeringConnectionOptionsDescription) GoString() string { - return s.String() -} - -// Describes the status of a VPC peering connection. -type VpcPeeringConnectionStateReason struct { - _ struct{} `type:"structure"` - - // The status of the VPC peering connection. - Code *string `locationName:"code" type:"string" enum:"VpcPeeringConnectionStateReasonCode"` - - // A message that provides more information about the status, if applicable. - Message *string `locationName:"message" type:"string"` -} - -// String returns the string representation -func (s VpcPeeringConnectionStateReason) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpcPeeringConnectionStateReason) GoString() string { - return s.String() -} - -// Describes a VPC in a VPC peering connection. -type VpcPeeringConnectionVpcInfo struct { - _ struct{} `type:"structure"` - - // The CIDR block for the VPC. - CidrBlock *string `locationName:"cidrBlock" type:"string"` - - // The AWS account ID of the VPC owner. - OwnerId *string `locationName:"ownerId" type:"string"` - - // Information about the VPC peering connection options for the accepter or - // requester VPC. - PeeringOptions *VpcPeeringConnectionOptionsDescription `locationName:"peeringOptions" type:"structure"` - - // The ID of the VPC. - VpcId *string `locationName:"vpcId" type:"string"` -} - -// String returns the string representation -func (s VpcPeeringConnectionVpcInfo) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpcPeeringConnectionVpcInfo) GoString() string { - return s.String() -} - -// Describes a VPN connection. -type VpnConnection struct { - _ struct{} `type:"structure"` - - // The configuration information for the VPN connection's customer gateway (in - // the native XML format). This element is always present in the CreateVpnConnection - // response; however, it's present in the DescribeVpnConnections response only - // if the VPN connection is in the pending or available state. - CustomerGatewayConfiguration *string `locationName:"customerGatewayConfiguration" type:"string"` - - // The ID of the customer gateway at your end of the VPN connection. - CustomerGatewayId *string `locationName:"customerGatewayId" type:"string"` - - // The VPN connection options. - Options *VpnConnectionOptions `locationName:"options" type:"structure"` - - // The static routes associated with the VPN connection. - Routes []*VpnStaticRoute `locationName:"routes" locationNameList:"item" type:"list"` - - // The current state of the VPN connection. - State *string `locationName:"state" type:"string" enum:"VpnState"` - - // Any tags assigned to the VPN connection. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The type of VPN connection. - Type *string `locationName:"type" type:"string" enum:"GatewayType"` - - // Information about the VPN tunnel. - VgwTelemetry []*VgwTelemetry `locationName:"vgwTelemetry" locationNameList:"item" type:"list"` - - // The ID of the VPN connection. - VpnConnectionId *string `locationName:"vpnConnectionId" type:"string"` - - // The ID of the virtual private gateway at the AWS side of the VPN connection. - VpnGatewayId *string `locationName:"vpnGatewayId" type:"string"` -} - -// String returns the string representation -func (s VpnConnection) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpnConnection) GoString() string { - return s.String() -} - -// Describes VPN connection options. -type VpnConnectionOptions struct { - _ struct{} `type:"structure"` - - // Indicates whether the VPN connection uses static routes only. Static routes - // must be used for devices that don't support BGP. - StaticRoutesOnly *bool `locationName:"staticRoutesOnly" type:"boolean"` -} - -// String returns the string representation -func (s VpnConnectionOptions) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpnConnectionOptions) GoString() string { - return s.String() -} - -// Describes VPN connection options. -type VpnConnectionOptionsSpecification struct { - _ struct{} `type:"structure"` - - // Indicates whether the VPN connection uses static routes only. Static routes - // must be used for devices that don't support BGP. - StaticRoutesOnly *bool `locationName:"staticRoutesOnly" type:"boolean"` -} - -// String returns the string representation -func (s VpnConnectionOptionsSpecification) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpnConnectionOptionsSpecification) GoString() string { - return s.String() -} - -// Describes a virtual private gateway. -type VpnGateway struct { - _ struct{} `type:"structure"` - - // The Availability Zone where the virtual private gateway was created, if applicable. - // This field may be empty or not returned. - AvailabilityZone *string `locationName:"availabilityZone" type:"string"` - - // The current state of the virtual private gateway. - State *string `locationName:"state" type:"string" enum:"VpnState"` - - // Any tags assigned to the virtual private gateway. - Tags []*Tag `locationName:"tagSet" locationNameList:"item" type:"list"` - - // The type of VPN connection the virtual private gateway supports. - Type *string `locationName:"type" type:"string" enum:"GatewayType"` - - // Any VPCs attached to the virtual private gateway. - VpcAttachments []*VpcAttachment `locationName:"attachments" locationNameList:"item" type:"list"` - - // The ID of the virtual private gateway. - VpnGatewayId *string `locationName:"vpnGatewayId" type:"string"` -} - -// String returns the string representation -func (s VpnGateway) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpnGateway) GoString() string { - return s.String() -} - -// Describes a static route for a VPN connection. -type VpnStaticRoute struct { - _ struct{} `type:"structure"` - - // The CIDR block associated with the local subnet of the customer data center. - DestinationCidrBlock *string `locationName:"destinationCidrBlock" type:"string"` - - // Indicates how the routes were provided. - Source *string `locationName:"source" type:"string" enum:"VpnStaticRouteSource"` - - // The current state of the static route. - State *string `locationName:"state" type:"string" enum:"VpnState"` -} - -// String returns the string representation -func (s VpnStaticRoute) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VpnStaticRoute) GoString() string { - return s.String() -} - -const ( - // AccountAttributeNameSupportedPlatforms is a AccountAttributeName enum value - AccountAttributeNameSupportedPlatforms = "supported-platforms" - - // AccountAttributeNameDefaultVpc is a AccountAttributeName enum value - AccountAttributeNameDefaultVpc = "default-vpc" -) - -const ( - // ActivityStatusError is a ActivityStatus enum value - ActivityStatusError = "error" - - // ActivityStatusPendingFulfillment is a ActivityStatus enum value - ActivityStatusPendingFulfillment = "pending_fulfillment" - - // ActivityStatusPendingTermination is a ActivityStatus enum value - ActivityStatusPendingTermination = "pending_termination" - - // ActivityStatusFulfilled is a ActivityStatus enum value - ActivityStatusFulfilled = "fulfilled" -) - -const ( - // AffinityDefault is a Affinity enum value - AffinityDefault = "default" - - // AffinityHost is a Affinity enum value - AffinityHost = "host" -) - -const ( - // AllocationStateAvailable is a AllocationState enum value - AllocationStateAvailable = "available" - - // AllocationStateUnderAssessment is a AllocationState enum value - AllocationStateUnderAssessment = "under-assessment" - - // AllocationStatePermanentFailure is a AllocationState enum value - AllocationStatePermanentFailure = "permanent-failure" - - // AllocationStateReleased is a AllocationState enum value - AllocationStateReleased = "released" - - // AllocationStateReleasedPermanentFailure is a AllocationState enum value - AllocationStateReleasedPermanentFailure = "released-permanent-failure" -) - -const ( - // AllocationStrategyLowestPrice is a AllocationStrategy enum value - AllocationStrategyLowestPrice = "lowestPrice" - - // AllocationStrategyDiversified is a AllocationStrategy enum value - AllocationStrategyDiversified = "diversified" -) - -const ( - // ArchitectureValuesI386 is a ArchitectureValues enum value - ArchitectureValuesI386 = "i386" - - // ArchitectureValuesX8664 is a ArchitectureValues enum value - ArchitectureValuesX8664 = "x86_64" -) - -const ( - // AttachmentStatusAttaching is a AttachmentStatus enum value - AttachmentStatusAttaching = "attaching" - - // AttachmentStatusAttached is a AttachmentStatus enum value - AttachmentStatusAttached = "attached" - - // AttachmentStatusDetaching is a AttachmentStatus enum value - AttachmentStatusDetaching = "detaching" - - // AttachmentStatusDetached is a AttachmentStatus enum value - AttachmentStatusDetached = "detached" -) - -const ( - // AutoPlacementOn is a AutoPlacement enum value - AutoPlacementOn = "on" - - // AutoPlacementOff is a AutoPlacement enum value - AutoPlacementOff = "off" -) - -const ( - // AvailabilityZoneStateAvailable is a AvailabilityZoneState enum value - AvailabilityZoneStateAvailable = "available" - - // AvailabilityZoneStateInformation is a AvailabilityZoneState enum value - AvailabilityZoneStateInformation = "information" - - // AvailabilityZoneStateImpaired is a AvailabilityZoneState enum value - AvailabilityZoneStateImpaired = "impaired" - - // AvailabilityZoneStateUnavailable is a AvailabilityZoneState enum value - AvailabilityZoneStateUnavailable = "unavailable" -) - -const ( - // BatchStateSubmitted is a BatchState enum value - BatchStateSubmitted = "submitted" - - // BatchStateActive is a BatchState enum value - BatchStateActive = "active" - - // BatchStateCancelled is a BatchState enum value - BatchStateCancelled = "cancelled" - - // BatchStateFailed is a BatchState enum value - BatchStateFailed = "failed" - - // BatchStateCancelledRunning is a BatchState enum value - BatchStateCancelledRunning = "cancelled_running" - - // BatchStateCancelledTerminating is a BatchState enum value - BatchStateCancelledTerminating = "cancelled_terminating" - - // BatchStateModifying is a BatchState enum value - BatchStateModifying = "modifying" -) - -const ( - // BundleTaskStatePending is a BundleTaskState enum value - BundleTaskStatePending = "pending" - - // BundleTaskStateWaitingForShutdown is a BundleTaskState enum value - BundleTaskStateWaitingForShutdown = "waiting-for-shutdown" - - // BundleTaskStateBundling is a BundleTaskState enum value - BundleTaskStateBundling = "bundling" - - // BundleTaskStateStoring is a BundleTaskState enum value - BundleTaskStateStoring = "storing" - - // BundleTaskStateCancelling is a BundleTaskState enum value - BundleTaskStateCancelling = "cancelling" - - // BundleTaskStateComplete is a BundleTaskState enum value - BundleTaskStateComplete = "complete" - - // BundleTaskStateFailed is a BundleTaskState enum value - BundleTaskStateFailed = "failed" -) - -const ( - // CancelBatchErrorCodeFleetRequestIdDoesNotExist is a CancelBatchErrorCode enum value - CancelBatchErrorCodeFleetRequestIdDoesNotExist = "fleetRequestIdDoesNotExist" - - // CancelBatchErrorCodeFleetRequestIdMalformed is a CancelBatchErrorCode enum value - CancelBatchErrorCodeFleetRequestIdMalformed = "fleetRequestIdMalformed" - - // CancelBatchErrorCodeFleetRequestNotInCancellableState is a CancelBatchErrorCode enum value - CancelBatchErrorCodeFleetRequestNotInCancellableState = "fleetRequestNotInCancellableState" - - // CancelBatchErrorCodeUnexpectedError is a CancelBatchErrorCode enum value - CancelBatchErrorCodeUnexpectedError = "unexpectedError" -) - -const ( - // CancelSpotInstanceRequestStateActive is a CancelSpotInstanceRequestState enum value - CancelSpotInstanceRequestStateActive = "active" - - // CancelSpotInstanceRequestStateOpen is a CancelSpotInstanceRequestState enum value - CancelSpotInstanceRequestStateOpen = "open" - - // CancelSpotInstanceRequestStateClosed is a CancelSpotInstanceRequestState enum value - CancelSpotInstanceRequestStateClosed = "closed" - - // CancelSpotInstanceRequestStateCancelled is a CancelSpotInstanceRequestState enum value - CancelSpotInstanceRequestStateCancelled = "cancelled" - - // CancelSpotInstanceRequestStateCompleted is a CancelSpotInstanceRequestState enum value - CancelSpotInstanceRequestStateCompleted = "completed" -) - -const ( - // ContainerFormatOva is a ContainerFormat enum value - ContainerFormatOva = "ova" -) - -const ( - // ConversionTaskStateActive is a ConversionTaskState enum value - ConversionTaskStateActive = "active" - - // ConversionTaskStateCancelling is a ConversionTaskState enum value - ConversionTaskStateCancelling = "cancelling" - - // ConversionTaskStateCancelled is a ConversionTaskState enum value - ConversionTaskStateCancelled = "cancelled" - - // ConversionTaskStateCompleted is a ConversionTaskState enum value - ConversionTaskStateCompleted = "completed" -) - -const ( - // CurrencyCodeValuesUsd is a CurrencyCodeValues enum value - CurrencyCodeValuesUsd = "USD" -) - -const ( - // DatafeedSubscriptionStateActive is a DatafeedSubscriptionState enum value - DatafeedSubscriptionStateActive = "Active" - - // DatafeedSubscriptionStateInactive is a DatafeedSubscriptionState enum value - DatafeedSubscriptionStateInactive = "Inactive" -) - -const ( - // DeviceTypeEbs is a DeviceType enum value - DeviceTypeEbs = "ebs" - - // DeviceTypeInstanceStore is a DeviceType enum value - DeviceTypeInstanceStore = "instance-store" -) - -const ( - // DiskImageFormatVmdk is a DiskImageFormat enum value - DiskImageFormatVmdk = "VMDK" - - // DiskImageFormatRaw is a DiskImageFormat enum value - DiskImageFormatRaw = "RAW" - - // DiskImageFormatVhd is a DiskImageFormat enum value - DiskImageFormatVhd = "VHD" -) - -const ( - // DomainTypeVpc is a DomainType enum value - DomainTypeVpc = "vpc" - - // DomainTypeStandard is a DomainType enum value - DomainTypeStandard = "standard" -) - -const ( - // EventCodeInstanceReboot is a EventCode enum value - EventCodeInstanceReboot = "instance-reboot" - - // EventCodeSystemReboot is a EventCode enum value - EventCodeSystemReboot = "system-reboot" - - // EventCodeSystemMaintenance is a EventCode enum value - EventCodeSystemMaintenance = "system-maintenance" - - // EventCodeInstanceRetirement is a EventCode enum value - EventCodeInstanceRetirement = "instance-retirement" - - // EventCodeInstanceStop is a EventCode enum value - EventCodeInstanceStop = "instance-stop" -) - -const ( - // EventTypeInstanceChange is a EventType enum value - EventTypeInstanceChange = "instanceChange" - - // EventTypeFleetRequestChange is a EventType enum value - EventTypeFleetRequestChange = "fleetRequestChange" - - // EventTypeError is a EventType enum value - EventTypeError = "error" -) - -const ( - // ExcessCapacityTerminationPolicyNoTermination is a ExcessCapacityTerminationPolicy enum value - ExcessCapacityTerminationPolicyNoTermination = "noTermination" - - // ExcessCapacityTerminationPolicyDefault is a ExcessCapacityTerminationPolicy enum value - ExcessCapacityTerminationPolicyDefault = "default" -) - -const ( - // ExportEnvironmentCitrix is a ExportEnvironment enum value - ExportEnvironmentCitrix = "citrix" - - // ExportEnvironmentVmware is a ExportEnvironment enum value - ExportEnvironmentVmware = "vmware" - - // ExportEnvironmentMicrosoft is a ExportEnvironment enum value - ExportEnvironmentMicrosoft = "microsoft" -) - -const ( - // ExportTaskStateActive is a ExportTaskState enum value - ExportTaskStateActive = "active" - - // ExportTaskStateCancelling is a ExportTaskState enum value - ExportTaskStateCancelling = "cancelling" - - // ExportTaskStateCancelled is a ExportTaskState enum value - ExportTaskStateCancelled = "cancelled" - - // ExportTaskStateCompleted is a ExportTaskState enum value - ExportTaskStateCompleted = "completed" -) - -const ( - // FleetTypeRequest is a FleetType enum value - FleetTypeRequest = "request" - - // FleetTypeMaintain is a FleetType enum value - FleetTypeMaintain = "maintain" -) - -const ( - // FlowLogsResourceTypeVpc is a FlowLogsResourceType enum value - FlowLogsResourceTypeVpc = "VPC" - - // FlowLogsResourceTypeSubnet is a FlowLogsResourceType enum value - FlowLogsResourceTypeSubnet = "Subnet" - - // FlowLogsResourceTypeNetworkInterface is a FlowLogsResourceType enum value - FlowLogsResourceTypeNetworkInterface = "NetworkInterface" -) - -const ( - // GatewayTypeIpsec1 is a GatewayType enum value - GatewayTypeIpsec1 = "ipsec.1" -) - -const ( - // HostTenancyDedicated is a HostTenancy enum value - HostTenancyDedicated = "dedicated" - - // HostTenancyHost is a HostTenancy enum value - HostTenancyHost = "host" -) - -const ( - // HypervisorTypeOvm is a HypervisorType enum value - HypervisorTypeOvm = "ovm" - - // HypervisorTypeXen is a HypervisorType enum value - HypervisorTypeXen = "xen" -) - -const ( - // ImageAttributeNameDescription is a ImageAttributeName enum value - ImageAttributeNameDescription = "description" - - // ImageAttributeNameKernel is a ImageAttributeName enum value - ImageAttributeNameKernel = "kernel" - - // ImageAttributeNameRamdisk is a ImageAttributeName enum value - ImageAttributeNameRamdisk = "ramdisk" - - // ImageAttributeNameLaunchPermission is a ImageAttributeName enum value - ImageAttributeNameLaunchPermission = "launchPermission" - - // ImageAttributeNameProductCodes is a ImageAttributeName enum value - ImageAttributeNameProductCodes = "productCodes" - - // ImageAttributeNameBlockDeviceMapping is a ImageAttributeName enum value - ImageAttributeNameBlockDeviceMapping = "blockDeviceMapping" - - // ImageAttributeNameSriovNetSupport is a ImageAttributeName enum value - ImageAttributeNameSriovNetSupport = "sriovNetSupport" -) - -const ( - // ImageStatePending is a ImageState enum value - ImageStatePending = "pending" - - // ImageStateAvailable is a ImageState enum value - ImageStateAvailable = "available" - - // ImageStateInvalid is a ImageState enum value - ImageStateInvalid = "invalid" - - // ImageStateDeregistered is a ImageState enum value - ImageStateDeregistered = "deregistered" - - // ImageStateTransient is a ImageState enum value - ImageStateTransient = "transient" - - // ImageStateFailed is a ImageState enum value - ImageStateFailed = "failed" - - // ImageStateError is a ImageState enum value - ImageStateError = "error" -) - -const ( - // ImageTypeValuesMachine is a ImageTypeValues enum value - ImageTypeValuesMachine = "machine" - - // ImageTypeValuesKernel is a ImageTypeValues enum value - ImageTypeValuesKernel = "kernel" - - // ImageTypeValuesRamdisk is a ImageTypeValues enum value - ImageTypeValuesRamdisk = "ramdisk" -) - -const ( - // InstanceAttributeNameInstanceType is a InstanceAttributeName enum value - InstanceAttributeNameInstanceType = "instanceType" - - // InstanceAttributeNameKernel is a InstanceAttributeName enum value - InstanceAttributeNameKernel = "kernel" - - // InstanceAttributeNameRamdisk is a InstanceAttributeName enum value - InstanceAttributeNameRamdisk = "ramdisk" - - // InstanceAttributeNameUserData is a InstanceAttributeName enum value - InstanceAttributeNameUserData = "userData" - - // InstanceAttributeNameDisableApiTermination is a InstanceAttributeName enum value - InstanceAttributeNameDisableApiTermination = "disableApiTermination" - - // InstanceAttributeNameInstanceInitiatedShutdownBehavior is a InstanceAttributeName enum value - InstanceAttributeNameInstanceInitiatedShutdownBehavior = "instanceInitiatedShutdownBehavior" - - // InstanceAttributeNameRootDeviceName is a InstanceAttributeName enum value - InstanceAttributeNameRootDeviceName = "rootDeviceName" - - // InstanceAttributeNameBlockDeviceMapping is a InstanceAttributeName enum value - InstanceAttributeNameBlockDeviceMapping = "blockDeviceMapping" - - // InstanceAttributeNameProductCodes is a InstanceAttributeName enum value - InstanceAttributeNameProductCodes = "productCodes" - - // InstanceAttributeNameSourceDestCheck is a InstanceAttributeName enum value - InstanceAttributeNameSourceDestCheck = "sourceDestCheck" - - // InstanceAttributeNameGroupSet is a InstanceAttributeName enum value - InstanceAttributeNameGroupSet = "groupSet" - - // InstanceAttributeNameEbsOptimized is a InstanceAttributeName enum value - InstanceAttributeNameEbsOptimized = "ebsOptimized" - - // InstanceAttributeNameSriovNetSupport is a InstanceAttributeName enum value - InstanceAttributeNameSriovNetSupport = "sriovNetSupport" - - // InstanceAttributeNameEnaSupport is a InstanceAttributeName enum value - InstanceAttributeNameEnaSupport = "enaSupport" -) - -const ( - // InstanceLifecycleTypeSpot is a InstanceLifecycleType enum value - InstanceLifecycleTypeSpot = "spot" - - // InstanceLifecycleTypeScheduled is a InstanceLifecycleType enum value - InstanceLifecycleTypeScheduled = "scheduled" -) - -const ( - // InstanceStateNamePending is a InstanceStateName enum value - InstanceStateNamePending = "pending" - - // InstanceStateNameRunning is a InstanceStateName enum value - InstanceStateNameRunning = "running" - - // InstanceStateNameShuttingDown is a InstanceStateName enum value - InstanceStateNameShuttingDown = "shutting-down" - - // InstanceStateNameTerminated is a InstanceStateName enum value - InstanceStateNameTerminated = "terminated" - - // InstanceStateNameStopping is a InstanceStateName enum value - InstanceStateNameStopping = "stopping" - - // InstanceStateNameStopped is a InstanceStateName enum value - InstanceStateNameStopped = "stopped" -) - -const ( - // InstanceTypeT1Micro is a InstanceType enum value - InstanceTypeT1Micro = "t1.micro" - - // InstanceTypeT2Nano is a InstanceType enum value - InstanceTypeT2Nano = "t2.nano" - - // InstanceTypeT2Micro is a InstanceType enum value - InstanceTypeT2Micro = "t2.micro" - - // InstanceTypeT2Small is a InstanceType enum value - InstanceTypeT2Small = "t2.small" - - // InstanceTypeT2Medium is a InstanceType enum value - InstanceTypeT2Medium = "t2.medium" - - // InstanceTypeT2Large is a InstanceType enum value - InstanceTypeT2Large = "t2.large" - - // InstanceTypeM1Small is a InstanceType enum value - InstanceTypeM1Small = "m1.small" - - // InstanceTypeM1Medium is a InstanceType enum value - InstanceTypeM1Medium = "m1.medium" - - // InstanceTypeM1Large is a InstanceType enum value - InstanceTypeM1Large = "m1.large" - - // InstanceTypeM1Xlarge is a InstanceType enum value - InstanceTypeM1Xlarge = "m1.xlarge" - - // InstanceTypeM3Medium is a InstanceType enum value - InstanceTypeM3Medium = "m3.medium" - - // InstanceTypeM3Large is a InstanceType enum value - InstanceTypeM3Large = "m3.large" - - // InstanceTypeM3Xlarge is a InstanceType enum value - InstanceTypeM3Xlarge = "m3.xlarge" - - // InstanceTypeM32xlarge is a InstanceType enum value - InstanceTypeM32xlarge = "m3.2xlarge" - - // InstanceTypeM4Large is a InstanceType enum value - InstanceTypeM4Large = "m4.large" - - // InstanceTypeM4Xlarge is a InstanceType enum value - InstanceTypeM4Xlarge = "m4.xlarge" - - // InstanceTypeM42xlarge is a InstanceType enum value - InstanceTypeM42xlarge = "m4.2xlarge" - - // InstanceTypeM44xlarge is a InstanceType enum value - InstanceTypeM44xlarge = "m4.4xlarge" - - // InstanceTypeM410xlarge is a InstanceType enum value - InstanceTypeM410xlarge = "m4.10xlarge" - - // InstanceTypeM416xlarge is a InstanceType enum value - InstanceTypeM416xlarge = "m4.16xlarge" - - // InstanceTypeM2Xlarge is a InstanceType enum value - InstanceTypeM2Xlarge = "m2.xlarge" - - // InstanceTypeM22xlarge is a InstanceType enum value - InstanceTypeM22xlarge = "m2.2xlarge" - - // InstanceTypeM24xlarge is a InstanceType enum value - InstanceTypeM24xlarge = "m2.4xlarge" - - // InstanceTypeCr18xlarge is a InstanceType enum value - InstanceTypeCr18xlarge = "cr1.8xlarge" - - // InstanceTypeR3Large is a InstanceType enum value - InstanceTypeR3Large = "r3.large" - - // InstanceTypeR3Xlarge is a InstanceType enum value - InstanceTypeR3Xlarge = "r3.xlarge" - - // InstanceTypeR32xlarge is a InstanceType enum value - InstanceTypeR32xlarge = "r3.2xlarge" - - // InstanceTypeR34xlarge is a InstanceType enum value - InstanceTypeR34xlarge = "r3.4xlarge" - - // InstanceTypeR38xlarge is a InstanceType enum value - InstanceTypeR38xlarge = "r3.8xlarge" - - // InstanceTypeX116xlarge is a InstanceType enum value - InstanceTypeX116xlarge = "x1.16xlarge" - - // InstanceTypeX132xlarge is a InstanceType enum value - InstanceTypeX132xlarge = "x1.32xlarge" - - // InstanceTypeI2Xlarge is a InstanceType enum value - InstanceTypeI2Xlarge = "i2.xlarge" - - // InstanceTypeI22xlarge is a InstanceType enum value - InstanceTypeI22xlarge = "i2.2xlarge" - - // InstanceTypeI24xlarge is a InstanceType enum value - InstanceTypeI24xlarge = "i2.4xlarge" - - // InstanceTypeI28xlarge is a InstanceType enum value - InstanceTypeI28xlarge = "i2.8xlarge" - - // InstanceTypeHi14xlarge is a InstanceType enum value - InstanceTypeHi14xlarge = "hi1.4xlarge" - - // InstanceTypeHs18xlarge is a InstanceType enum value - InstanceTypeHs18xlarge = "hs1.8xlarge" - - // InstanceTypeC1Medium is a InstanceType enum value - InstanceTypeC1Medium = "c1.medium" - - // InstanceTypeC1Xlarge is a InstanceType enum value - InstanceTypeC1Xlarge = "c1.xlarge" - - // InstanceTypeC3Large is a InstanceType enum value - InstanceTypeC3Large = "c3.large" - - // InstanceTypeC3Xlarge is a InstanceType enum value - InstanceTypeC3Xlarge = "c3.xlarge" - - // InstanceTypeC32xlarge is a InstanceType enum value - InstanceTypeC32xlarge = "c3.2xlarge" - - // InstanceTypeC34xlarge is a InstanceType enum value - InstanceTypeC34xlarge = "c3.4xlarge" - - // InstanceTypeC38xlarge is a InstanceType enum value - InstanceTypeC38xlarge = "c3.8xlarge" - - // InstanceTypeC4Large is a InstanceType enum value - InstanceTypeC4Large = "c4.large" - - // InstanceTypeC4Xlarge is a InstanceType enum value - InstanceTypeC4Xlarge = "c4.xlarge" - - // InstanceTypeC42xlarge is a InstanceType enum value - InstanceTypeC42xlarge = "c4.2xlarge" - - // InstanceTypeC44xlarge is a InstanceType enum value - InstanceTypeC44xlarge = "c4.4xlarge" - - // InstanceTypeC48xlarge is a InstanceType enum value - InstanceTypeC48xlarge = "c4.8xlarge" - - // InstanceTypeCc14xlarge is a InstanceType enum value - InstanceTypeCc14xlarge = "cc1.4xlarge" - - // InstanceTypeCc28xlarge is a InstanceType enum value - InstanceTypeCc28xlarge = "cc2.8xlarge" - - // InstanceTypeG22xlarge is a InstanceType enum value - InstanceTypeG22xlarge = "g2.2xlarge" - - // InstanceTypeG28xlarge is a InstanceType enum value - InstanceTypeG28xlarge = "g2.8xlarge" - - // InstanceTypeCg14xlarge is a InstanceType enum value - InstanceTypeCg14xlarge = "cg1.4xlarge" - - // InstanceTypeP2Xlarge is a InstanceType enum value - InstanceTypeP2Xlarge = "p2.xlarge" - - // InstanceTypeP28xlarge is a InstanceType enum value - InstanceTypeP28xlarge = "p2.8xlarge" - - // InstanceTypeP216xlarge is a InstanceType enum value - InstanceTypeP216xlarge = "p2.16xlarge" - - // InstanceTypeD2Xlarge is a InstanceType enum value - InstanceTypeD2Xlarge = "d2.xlarge" - - // InstanceTypeD22xlarge is a InstanceType enum value - InstanceTypeD22xlarge = "d2.2xlarge" - - // InstanceTypeD24xlarge is a InstanceType enum value - InstanceTypeD24xlarge = "d2.4xlarge" - - // InstanceTypeD28xlarge is a InstanceType enum value - InstanceTypeD28xlarge = "d2.8xlarge" -) - -const ( - // ListingStateAvailable is a ListingState enum value - ListingStateAvailable = "available" - - // ListingStateSold is a ListingState enum value - ListingStateSold = "sold" - - // ListingStateCancelled is a ListingState enum value - ListingStateCancelled = "cancelled" - - // ListingStatePending is a ListingState enum value - ListingStatePending = "pending" -) - -const ( - // ListingStatusActive is a ListingStatus enum value - ListingStatusActive = "active" - - // ListingStatusPending is a ListingStatus enum value - ListingStatusPending = "pending" - - // ListingStatusCancelled is a ListingStatus enum value - ListingStatusCancelled = "cancelled" - - // ListingStatusClosed is a ListingStatus enum value - ListingStatusClosed = "closed" -) - -const ( - // MonitoringStateDisabled is a MonitoringState enum value - MonitoringStateDisabled = "disabled" - - // MonitoringStateDisabling is a MonitoringState enum value - MonitoringStateDisabling = "disabling" - - // MonitoringStateEnabled is a MonitoringState enum value - MonitoringStateEnabled = "enabled" - - // MonitoringStatePending is a MonitoringState enum value - MonitoringStatePending = "pending" -) - -const ( - // MoveStatusMovingToVpc is a MoveStatus enum value - MoveStatusMovingToVpc = "movingToVpc" - - // MoveStatusRestoringToClassic is a MoveStatus enum value - MoveStatusRestoringToClassic = "restoringToClassic" -) - -const ( - // NatGatewayStatePending is a NatGatewayState enum value - NatGatewayStatePending = "pending" - - // NatGatewayStateFailed is a NatGatewayState enum value - NatGatewayStateFailed = "failed" - - // NatGatewayStateAvailable is a NatGatewayState enum value - NatGatewayStateAvailable = "available" - - // NatGatewayStateDeleting is a NatGatewayState enum value - NatGatewayStateDeleting = "deleting" - - // NatGatewayStateDeleted is a NatGatewayState enum value - NatGatewayStateDeleted = "deleted" -) - -const ( - // NetworkInterfaceAttributeDescription is a NetworkInterfaceAttribute enum value - NetworkInterfaceAttributeDescription = "description" - - // NetworkInterfaceAttributeGroupSet is a NetworkInterfaceAttribute enum value - NetworkInterfaceAttributeGroupSet = "groupSet" - - // NetworkInterfaceAttributeSourceDestCheck is a NetworkInterfaceAttribute enum value - NetworkInterfaceAttributeSourceDestCheck = "sourceDestCheck" - - // NetworkInterfaceAttributeAttachment is a NetworkInterfaceAttribute enum value - NetworkInterfaceAttributeAttachment = "attachment" -) - -const ( - // NetworkInterfaceStatusAvailable is a NetworkInterfaceStatus enum value - NetworkInterfaceStatusAvailable = "available" - - // NetworkInterfaceStatusAttaching is a NetworkInterfaceStatus enum value - NetworkInterfaceStatusAttaching = "attaching" - - // NetworkInterfaceStatusInUse is a NetworkInterfaceStatus enum value - NetworkInterfaceStatusInUse = "in-use" - - // NetworkInterfaceStatusDetaching is a NetworkInterfaceStatus enum value - NetworkInterfaceStatusDetaching = "detaching" -) - -const ( - // NetworkInterfaceTypeInterface is a NetworkInterfaceType enum value - NetworkInterfaceTypeInterface = "interface" - - // NetworkInterfaceTypeNatGateway is a NetworkInterfaceType enum value - NetworkInterfaceTypeNatGateway = "natGateway" -) - -const ( - // OfferingClassTypeStandard is a OfferingClassType enum value - OfferingClassTypeStandard = "standard" - - // OfferingClassTypeConvertible is a OfferingClassType enum value - OfferingClassTypeConvertible = "convertible" -) - -const ( - // OfferingTypeValuesHeavyUtilization is a OfferingTypeValues enum value - OfferingTypeValuesHeavyUtilization = "Heavy Utilization" - - // OfferingTypeValuesMediumUtilization is a OfferingTypeValues enum value - OfferingTypeValuesMediumUtilization = "Medium Utilization" - - // OfferingTypeValuesLightUtilization is a OfferingTypeValues enum value - OfferingTypeValuesLightUtilization = "Light Utilization" - - // OfferingTypeValuesNoUpfront is a OfferingTypeValues enum value - OfferingTypeValuesNoUpfront = "No Upfront" - - // OfferingTypeValuesPartialUpfront is a OfferingTypeValues enum value - OfferingTypeValuesPartialUpfront = "Partial Upfront" - - // OfferingTypeValuesAllUpfront is a OfferingTypeValues enum value - OfferingTypeValuesAllUpfront = "All Upfront" -) - -const ( - // OperationTypeAdd is a OperationType enum value - OperationTypeAdd = "add" - - // OperationTypeRemove is a OperationType enum value - OperationTypeRemove = "remove" -) - -const ( - // PaymentOptionAllUpfront is a PaymentOption enum value - PaymentOptionAllUpfront = "AllUpfront" - - // PaymentOptionPartialUpfront is a PaymentOption enum value - PaymentOptionPartialUpfront = "PartialUpfront" - - // PaymentOptionNoUpfront is a PaymentOption enum value - PaymentOptionNoUpfront = "NoUpfront" -) - -const ( - // PermissionGroupAll is a PermissionGroup enum value - PermissionGroupAll = "all" -) - -const ( - // PlacementGroupStatePending is a PlacementGroupState enum value - PlacementGroupStatePending = "pending" - - // PlacementGroupStateAvailable is a PlacementGroupState enum value - PlacementGroupStateAvailable = "available" - - // PlacementGroupStateDeleting is a PlacementGroupState enum value - PlacementGroupStateDeleting = "deleting" - - // PlacementGroupStateDeleted is a PlacementGroupState enum value - PlacementGroupStateDeleted = "deleted" -) - -const ( - // PlacementStrategyCluster is a PlacementStrategy enum value - PlacementStrategyCluster = "cluster" -) - -const ( - // PlatformValuesWindows is a PlatformValues enum value - PlatformValuesWindows = "Windows" -) - -const ( - // ProductCodeValuesDevpay is a ProductCodeValues enum value - ProductCodeValuesDevpay = "devpay" - - // ProductCodeValuesMarketplace is a ProductCodeValues enum value - ProductCodeValuesMarketplace = "marketplace" -) - -const ( - // RIProductDescriptionLinuxUnix is a RIProductDescription enum value - RIProductDescriptionLinuxUnix = "Linux/UNIX" - - // RIProductDescriptionLinuxUnixamazonVpc is a RIProductDescription enum value - RIProductDescriptionLinuxUnixamazonVpc = "Linux/UNIX (Amazon VPC)" - - // RIProductDescriptionWindows is a RIProductDescription enum value - RIProductDescriptionWindows = "Windows" - - // RIProductDescriptionWindowsAmazonVpc is a RIProductDescription enum value - RIProductDescriptionWindowsAmazonVpc = "Windows (Amazon VPC)" -) - -const ( - // RecurringChargeFrequencyHourly is a RecurringChargeFrequency enum value - RecurringChargeFrequencyHourly = "Hourly" -) - -const ( - // ReportInstanceReasonCodesInstanceStuckInState is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesInstanceStuckInState = "instance-stuck-in-state" - - // ReportInstanceReasonCodesUnresponsive is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesUnresponsive = "unresponsive" - - // ReportInstanceReasonCodesNotAcceptingCredentials is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesNotAcceptingCredentials = "not-accepting-credentials" - - // ReportInstanceReasonCodesPasswordNotAvailable is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesPasswordNotAvailable = "password-not-available" - - // ReportInstanceReasonCodesPerformanceNetwork is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesPerformanceNetwork = "performance-network" - - // ReportInstanceReasonCodesPerformanceInstanceStore is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesPerformanceInstanceStore = "performance-instance-store" - - // ReportInstanceReasonCodesPerformanceEbsVolume is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesPerformanceEbsVolume = "performance-ebs-volume" - - // ReportInstanceReasonCodesPerformanceOther is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesPerformanceOther = "performance-other" - - // ReportInstanceReasonCodesOther is a ReportInstanceReasonCodes enum value - ReportInstanceReasonCodesOther = "other" -) - -const ( - // ReportStatusTypeOk is a ReportStatusType enum value - ReportStatusTypeOk = "ok" - - // ReportStatusTypeImpaired is a ReportStatusType enum value - ReportStatusTypeImpaired = "impaired" -) - -const ( - // ReservationStatePaymentPending is a ReservationState enum value - ReservationStatePaymentPending = "payment-pending" - - // ReservationStatePaymentFailed is a ReservationState enum value - ReservationStatePaymentFailed = "payment-failed" - - // ReservationStateActive is a ReservationState enum value - ReservationStateActive = "active" - - // ReservationStateRetired is a ReservationState enum value - ReservationStateRetired = "retired" -) - -const ( - // ReservedInstanceStatePaymentPending is a ReservedInstanceState enum value - ReservedInstanceStatePaymentPending = "payment-pending" - - // ReservedInstanceStateActive is a ReservedInstanceState enum value - ReservedInstanceStateActive = "active" - - // ReservedInstanceStatePaymentFailed is a ReservedInstanceState enum value - ReservedInstanceStatePaymentFailed = "payment-failed" - - // ReservedInstanceStateRetired is a ReservedInstanceState enum value - ReservedInstanceStateRetired = "retired" -) - -const ( - // ResetImageAttributeNameLaunchPermission is a ResetImageAttributeName enum value - ResetImageAttributeNameLaunchPermission = "launchPermission" -) - -const ( - // ResourceTypeCustomerGateway is a ResourceType enum value - ResourceTypeCustomerGateway = "customer-gateway" - - // ResourceTypeDhcpOptions is a ResourceType enum value - ResourceTypeDhcpOptions = "dhcp-options" - - // ResourceTypeImage is a ResourceType enum value - ResourceTypeImage = "image" - - // ResourceTypeInstance is a ResourceType enum value - ResourceTypeInstance = "instance" - - // ResourceTypeInternetGateway is a ResourceType enum value - ResourceTypeInternetGateway = "internet-gateway" - - // ResourceTypeNetworkAcl is a ResourceType enum value - ResourceTypeNetworkAcl = "network-acl" - - // ResourceTypeNetworkInterface is a ResourceType enum value - ResourceTypeNetworkInterface = "network-interface" - - // ResourceTypeReservedInstances is a ResourceType enum value - ResourceTypeReservedInstances = "reserved-instances" - - // ResourceTypeRouteTable is a ResourceType enum value - ResourceTypeRouteTable = "route-table" - - // ResourceTypeSnapshot is a ResourceType enum value - ResourceTypeSnapshot = "snapshot" - - // ResourceTypeSpotInstancesRequest is a ResourceType enum value - ResourceTypeSpotInstancesRequest = "spot-instances-request" - - // ResourceTypeSubnet is a ResourceType enum value - ResourceTypeSubnet = "subnet" - - // ResourceTypeSecurityGroup is a ResourceType enum value - ResourceTypeSecurityGroup = "security-group" - - // ResourceTypeVolume is a ResourceType enum value - ResourceTypeVolume = "volume" - - // ResourceTypeVpc is a ResourceType enum value - ResourceTypeVpc = "vpc" - - // ResourceTypeVpnConnection is a ResourceType enum value - ResourceTypeVpnConnection = "vpn-connection" - - // ResourceTypeVpnGateway is a ResourceType enum value - ResourceTypeVpnGateway = "vpn-gateway" -) - -const ( - // RouteOriginCreateRouteTable is a RouteOrigin enum value - RouteOriginCreateRouteTable = "CreateRouteTable" - - // RouteOriginCreateRoute is a RouteOrigin enum value - RouteOriginCreateRoute = "CreateRoute" - - // RouteOriginEnableVgwRoutePropagation is a RouteOrigin enum value - RouteOriginEnableVgwRoutePropagation = "EnableVgwRoutePropagation" -) - -const ( - // RouteStateActive is a RouteState enum value - RouteStateActive = "active" - - // RouteStateBlackhole is a RouteState enum value - RouteStateBlackhole = "blackhole" -) - -const ( - // RuleActionAllow is a RuleAction enum value - RuleActionAllow = "allow" - - // RuleActionDeny is a RuleAction enum value - RuleActionDeny = "deny" -) - -const ( - // ShutdownBehaviorStop is a ShutdownBehavior enum value - ShutdownBehaviorStop = "stop" - - // ShutdownBehaviorTerminate is a ShutdownBehavior enum value - ShutdownBehaviorTerminate = "terminate" -) - -const ( - // SnapshotAttributeNameProductCodes is a SnapshotAttributeName enum value - SnapshotAttributeNameProductCodes = "productCodes" - - // SnapshotAttributeNameCreateVolumePermission is a SnapshotAttributeName enum value - SnapshotAttributeNameCreateVolumePermission = "createVolumePermission" -) - -const ( - // SnapshotStatePending is a SnapshotState enum value - SnapshotStatePending = "pending" - - // SnapshotStateCompleted is a SnapshotState enum value - SnapshotStateCompleted = "completed" - - // SnapshotStateError is a SnapshotState enum value - SnapshotStateError = "error" -) - -const ( - // SpotInstanceStateOpen is a SpotInstanceState enum value - SpotInstanceStateOpen = "open" - - // SpotInstanceStateActive is a SpotInstanceState enum value - SpotInstanceStateActive = "active" - - // SpotInstanceStateClosed is a SpotInstanceState enum value - SpotInstanceStateClosed = "closed" - - // SpotInstanceStateCancelled is a SpotInstanceState enum value - SpotInstanceStateCancelled = "cancelled" - - // SpotInstanceStateFailed is a SpotInstanceState enum value - SpotInstanceStateFailed = "failed" -) - -const ( - // SpotInstanceTypeOneTime is a SpotInstanceType enum value - SpotInstanceTypeOneTime = "one-time" - - // SpotInstanceTypePersistent is a SpotInstanceType enum value - SpotInstanceTypePersistent = "persistent" -) - -const ( - // StatePending is a State enum value - StatePending = "Pending" - - // StateAvailable is a State enum value - StateAvailable = "Available" - - // StateDeleting is a State enum value - StateDeleting = "Deleting" - - // StateDeleted is a State enum value - StateDeleted = "Deleted" -) - -const ( - // StatusMoveInProgress is a Status enum value - StatusMoveInProgress = "MoveInProgress" - - // StatusInVpc is a Status enum value - StatusInVpc = "InVpc" - - // StatusInClassic is a Status enum value - StatusInClassic = "InClassic" -) - -const ( - // StatusNameReachability is a StatusName enum value - StatusNameReachability = "reachability" -) - -const ( - // StatusTypePassed is a StatusType enum value - StatusTypePassed = "passed" - - // StatusTypeFailed is a StatusType enum value - StatusTypeFailed = "failed" - - // StatusTypeInsufficientData is a StatusType enum value - StatusTypeInsufficientData = "insufficient-data" - - // StatusTypeInitializing is a StatusType enum value - StatusTypeInitializing = "initializing" -) - -const ( - // SubnetStatePending is a SubnetState enum value - SubnetStatePending = "pending" - - // SubnetStateAvailable is a SubnetState enum value - SubnetStateAvailable = "available" -) - -const ( - // SummaryStatusOk is a SummaryStatus enum value - SummaryStatusOk = "ok" - - // SummaryStatusImpaired is a SummaryStatus enum value - SummaryStatusImpaired = "impaired" - - // SummaryStatusInsufficientData is a SummaryStatus enum value - SummaryStatusInsufficientData = "insufficient-data" - - // SummaryStatusNotApplicable is a SummaryStatus enum value - SummaryStatusNotApplicable = "not-applicable" - - // SummaryStatusInitializing is a SummaryStatus enum value - SummaryStatusInitializing = "initializing" -) - -const ( - // TelemetryStatusUp is a TelemetryStatus enum value - TelemetryStatusUp = "UP" - - // TelemetryStatusDown is a TelemetryStatus enum value - TelemetryStatusDown = "DOWN" -) - -const ( - // TenancyDefault is a Tenancy enum value - TenancyDefault = "default" - - // TenancyDedicated is a Tenancy enum value - TenancyDedicated = "dedicated" - - // TenancyHost is a Tenancy enum value - TenancyHost = "host" -) - -const ( - // TrafficTypeAccept is a TrafficType enum value - TrafficTypeAccept = "ACCEPT" - - // TrafficTypeReject is a TrafficType enum value - TrafficTypeReject = "REJECT" - - // TrafficTypeAll is a TrafficType enum value - TrafficTypeAll = "ALL" -) - -const ( - // VirtualizationTypeHvm is a VirtualizationType enum value - VirtualizationTypeHvm = "hvm" - - // VirtualizationTypeParavirtual is a VirtualizationType enum value - VirtualizationTypeParavirtual = "paravirtual" -) - -const ( - // VolumeAttachmentStateAttaching is a VolumeAttachmentState enum value - VolumeAttachmentStateAttaching = "attaching" - - // VolumeAttachmentStateAttached is a VolumeAttachmentState enum value - VolumeAttachmentStateAttached = "attached" - - // VolumeAttachmentStateDetaching is a VolumeAttachmentState enum value - VolumeAttachmentStateDetaching = "detaching" - - // VolumeAttachmentStateDetached is a VolumeAttachmentState enum value - VolumeAttachmentStateDetached = "detached" -) - -const ( - // VolumeAttributeNameAutoEnableIo is a VolumeAttributeName enum value - VolumeAttributeNameAutoEnableIo = "autoEnableIO" - - // VolumeAttributeNameProductCodes is a VolumeAttributeName enum value - VolumeAttributeNameProductCodes = "productCodes" -) - -const ( - // VolumeStateCreating is a VolumeState enum value - VolumeStateCreating = "creating" - - // VolumeStateAvailable is a VolumeState enum value - VolumeStateAvailable = "available" - - // VolumeStateInUse is a VolumeState enum value - VolumeStateInUse = "in-use" - - // VolumeStateDeleting is a VolumeState enum value - VolumeStateDeleting = "deleting" - - // VolumeStateDeleted is a VolumeState enum value - VolumeStateDeleted = "deleted" - - // VolumeStateError is a VolumeState enum value - VolumeStateError = "error" -) - -const ( - // VolumeStatusInfoStatusOk is a VolumeStatusInfoStatus enum value - VolumeStatusInfoStatusOk = "ok" - - // VolumeStatusInfoStatusImpaired is a VolumeStatusInfoStatus enum value - VolumeStatusInfoStatusImpaired = "impaired" - - // VolumeStatusInfoStatusInsufficientData is a VolumeStatusInfoStatus enum value - VolumeStatusInfoStatusInsufficientData = "insufficient-data" -) - -const ( - // VolumeStatusNameIoEnabled is a VolumeStatusName enum value - VolumeStatusNameIoEnabled = "io-enabled" - - // VolumeStatusNameIoPerformance is a VolumeStatusName enum value - VolumeStatusNameIoPerformance = "io-performance" -) - -const ( - // VolumeTypeStandard is a VolumeType enum value - VolumeTypeStandard = "standard" - - // VolumeTypeIo1 is a VolumeType enum value - VolumeTypeIo1 = "io1" - - // VolumeTypeGp2 is a VolumeType enum value - VolumeTypeGp2 = "gp2" - - // VolumeTypeSc1 is a VolumeType enum value - VolumeTypeSc1 = "sc1" - - // VolumeTypeSt1 is a VolumeType enum value - VolumeTypeSt1 = "st1" -) - -const ( - // VpcAttributeNameEnableDnsSupport is a VpcAttributeName enum value - VpcAttributeNameEnableDnsSupport = "enableDnsSupport" - - // VpcAttributeNameEnableDnsHostnames is a VpcAttributeName enum value - VpcAttributeNameEnableDnsHostnames = "enableDnsHostnames" -) - -const ( - // VpcPeeringConnectionStateReasonCodeInitiatingRequest is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeInitiatingRequest = "initiating-request" - - // VpcPeeringConnectionStateReasonCodePendingAcceptance is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodePendingAcceptance = "pending-acceptance" - - // VpcPeeringConnectionStateReasonCodeActive is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeActive = "active" - - // VpcPeeringConnectionStateReasonCodeDeleted is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeDeleted = "deleted" - - // VpcPeeringConnectionStateReasonCodeRejected is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeRejected = "rejected" - - // VpcPeeringConnectionStateReasonCodeFailed is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeFailed = "failed" - - // VpcPeeringConnectionStateReasonCodeExpired is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeExpired = "expired" - - // VpcPeeringConnectionStateReasonCodeProvisioning is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeProvisioning = "provisioning" - - // VpcPeeringConnectionStateReasonCodeDeleting is a VpcPeeringConnectionStateReasonCode enum value - VpcPeeringConnectionStateReasonCodeDeleting = "deleting" -) - -const ( - // VpcStatePending is a VpcState enum value - VpcStatePending = "pending" - - // VpcStateAvailable is a VpcState enum value - VpcStateAvailable = "available" -) - -const ( - // VpnStatePending is a VpnState enum value - VpnStatePending = "pending" - - // VpnStateAvailable is a VpnState enum value - VpnStateAvailable = "available" - - // VpnStateDeleting is a VpnState enum value - VpnStateDeleting = "deleting" - - // VpnStateDeleted is a VpnState enum value - VpnStateDeleted = "deleted" -) - -const ( - // VpnStaticRouteSourceStatic is a VpnStaticRouteSource enum value - VpnStaticRouteSourceStatic = "Static" -) - -const ( - // ScopeAvailabilityZone is a scope enum value - ScopeAvailabilityZone = "Availability Zone" - - // ScopeRegion is a scope enum value - ScopeRegion = "Region" -) diff --git a/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations.go b/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations.go deleted file mode 100644 index 36181d99..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations.go +++ /dev/null @@ -1,59 +0,0 @@ -package ec2 - -import ( - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/endpoints" -) - -func init() { - initRequest = func(r *request.Request) { - if r.Operation.Name == opCopySnapshot { // fill the PresignedURL parameter - r.Handlers.Build.PushFront(fillPresignedURL) - } - } -} - -func fillPresignedURL(r *request.Request) { - if !r.ParamsFilled() { - return - } - - origParams := r.Params.(*CopySnapshotInput) - - // Stop if PresignedURL/DestinationRegion is set - if origParams.PresignedUrl != nil || origParams.DestinationRegion != nil { - return - } - - origParams.DestinationRegion = r.Config.Region - newParams := awsutil.CopyOf(r.Params).(*CopySnapshotInput) - - // Create a new request based on the existing request. We will use this to - // presign the CopySnapshot request against the source region. - cfg := r.Config.Copy(aws.NewConfig(). - WithEndpoint(""). - WithRegion(aws.StringValue(origParams.SourceRegion))) - - clientInfo := r.ClientInfo - clientInfo.Endpoint, clientInfo.SigningRegion = endpoints.EndpointForRegion( - clientInfo.ServiceName, - aws.StringValue(cfg.Region), - aws.BoolValue(cfg.DisableSSL), - aws.BoolValue(cfg.UseDualStack), - ) - - // Presign a CopySnapshot request with modified params - req := request.New(*cfg, clientInfo, r.Handlers, r.Retryer, r.Operation, newParams, r.Data) - url, err := req.Presign(5 * time.Minute) // 5 minutes should be enough. - if err != nil { // bubble error back up to original request - r.Error = err - return - } - - // We have our URL, set it on params - origParams.PresignedUrl = &url -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations_test.go b/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations_test.go deleted file mode 100644 index 195d9b55..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations_test.go +++ /dev/null @@ -1,35 +0,0 @@ -package ec2_test - -import ( - "io/ioutil" - "net/url" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/ec2" - "github.com/stretchr/testify/assert" -) - -func TestCopySnapshotPresignedURL(t *testing.T) { - svc := ec2.New(unit.Session, &aws.Config{Region: aws.String("us-west-2")}) - - assert.NotPanics(t, func() { - // Doesn't panic on nil input - req, _ := svc.CopySnapshotRequest(nil) - req.Sign() - }) - - req, _ := svc.CopySnapshotRequest(&ec2.CopySnapshotInput{ - SourceRegion: aws.String("us-west-1"), - SourceSnapshotId: aws.String("snap-id"), - }) - req.Sign() - - b, _ := ioutil.ReadAll(req.HTTPRequest.Body) - q, _ := url.ParseQuery(string(b)) - u, _ := url.QueryUnescape(q.Get("PresignedUrl")) - assert.Equal(t, "us-west-2", q.Get("DestinationRegion")) - assert.Equal(t, "us-west-1", q.Get("SourceRegion")) - assert.Regexp(t, `^https://ec2\.us-west-1\.amazonaws\.com/.+&DestinationRegion=us-west-2`, u) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/ec2/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/ec2/examples_test.go deleted file mode 100644 index f48a8451..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/ec2/examples_test.go +++ /dev/null @@ -1,7291 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package ec2_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/ec2" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleEC2_AcceptReservedInstancesExchangeQuote() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AcceptReservedInstancesExchangeQuoteInput{ - ReservedInstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - TargetConfigurations: []*ec2.TargetConfigurationRequest{ - { // Required - OfferingId: aws.String("String"), // Required - InstanceCount: aws.Int64(1), - }, - // More values... - }, - } - resp, err := svc.AcceptReservedInstancesExchangeQuote(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AcceptVpcPeeringConnection() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AcceptVpcPeeringConnectionInput{ - DryRun: aws.Bool(true), - VpcPeeringConnectionId: aws.String("String"), - } - resp, err := svc.AcceptVpcPeeringConnection(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AllocateAddress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AllocateAddressInput{ - Domain: aws.String("DomainType"), - DryRun: aws.Bool(true), - } - resp, err := svc.AllocateAddress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AllocateHosts() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AllocateHostsInput{ - AvailabilityZone: aws.String("String"), // Required - InstanceType: aws.String("String"), // Required - Quantity: aws.Int64(1), // Required - AutoPlacement: aws.String("AutoPlacement"), - ClientToken: aws.String("String"), - } - resp, err := svc.AllocateHosts(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AssignPrivateIpAddresses() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AssignPrivateIpAddressesInput{ - NetworkInterfaceId: aws.String("String"), // Required - AllowReassignment: aws.Bool(true), - PrivateIpAddresses: []*string{ - aws.String("String"), // Required - // More values... - }, - SecondaryPrivateIpAddressCount: aws.Int64(1), - } - resp, err := svc.AssignPrivateIpAddresses(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AssociateAddress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AssociateAddressInput{ - AllocationId: aws.String("String"), - AllowReassociation: aws.Bool(true), - DryRun: aws.Bool(true), - InstanceId: aws.String("String"), - NetworkInterfaceId: aws.String("String"), - PrivateIpAddress: aws.String("String"), - PublicIp: aws.String("String"), - } - resp, err := svc.AssociateAddress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AssociateDhcpOptions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AssociateDhcpOptionsInput{ - DhcpOptionsId: aws.String("String"), // Required - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.AssociateDhcpOptions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AssociateRouteTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AssociateRouteTableInput{ - RouteTableId: aws.String("String"), // Required - SubnetId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.AssociateRouteTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AttachClassicLinkVpc() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AttachClassicLinkVpcInput{ - Groups: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - InstanceId: aws.String("String"), // Required - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.AttachClassicLinkVpc(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AttachInternetGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AttachInternetGatewayInput{ - InternetGatewayId: aws.String("String"), // Required - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.AttachInternetGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AttachNetworkInterface() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AttachNetworkInterfaceInput{ - DeviceIndex: aws.Int64(1), // Required - InstanceId: aws.String("String"), // Required - NetworkInterfaceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.AttachNetworkInterface(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AttachVolume() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AttachVolumeInput{ - Device: aws.String("String"), // Required - InstanceId: aws.String("String"), // Required - VolumeId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.AttachVolume(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AttachVpnGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AttachVpnGatewayInput{ - VpcId: aws.String("String"), // Required - VpnGatewayId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.AttachVpnGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AuthorizeSecurityGroupEgress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AuthorizeSecurityGroupEgressInput{ - GroupId: aws.String("String"), // Required - CidrIp: aws.String("String"), - DryRun: aws.Bool(true), - FromPort: aws.Int64(1), - IpPermissions: []*ec2.IpPermission{ - { // Required - FromPort: aws.Int64(1), - IpProtocol: aws.String("String"), - IpRanges: []*ec2.IpRange{ - { // Required - CidrIp: aws.String("String"), - }, - // More values... - }, - PrefixListIds: []*ec2.PrefixListId{ - { // Required - PrefixListId: aws.String("String"), - }, - // More values... - }, - ToPort: aws.Int64(1), - UserIdGroupPairs: []*ec2.UserIdGroupPair{ - { // Required - GroupId: aws.String("String"), - GroupName: aws.String("String"), - PeeringStatus: aws.String("String"), - UserId: aws.String("String"), - VpcId: aws.String("String"), - VpcPeeringConnectionId: aws.String("String"), - }, - // More values... - }, - }, - // More values... - }, - IpProtocol: aws.String("String"), - SourceSecurityGroupName: aws.String("String"), - SourceSecurityGroupOwnerId: aws.String("String"), - ToPort: aws.Int64(1), - } - resp, err := svc.AuthorizeSecurityGroupEgress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_AuthorizeSecurityGroupIngress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.AuthorizeSecurityGroupIngressInput{ - CidrIp: aws.String("String"), - DryRun: aws.Bool(true), - FromPort: aws.Int64(1), - GroupId: aws.String("String"), - GroupName: aws.String("String"), - IpPermissions: []*ec2.IpPermission{ - { // Required - FromPort: aws.Int64(1), - IpProtocol: aws.String("String"), - IpRanges: []*ec2.IpRange{ - { // Required - CidrIp: aws.String("String"), - }, - // More values... - }, - PrefixListIds: []*ec2.PrefixListId{ - { // Required - PrefixListId: aws.String("String"), - }, - // More values... - }, - ToPort: aws.Int64(1), - UserIdGroupPairs: []*ec2.UserIdGroupPair{ - { // Required - GroupId: aws.String("String"), - GroupName: aws.String("String"), - PeeringStatus: aws.String("String"), - UserId: aws.String("String"), - VpcId: aws.String("String"), - VpcPeeringConnectionId: aws.String("String"), - }, - // More values... - }, - }, - // More values... - }, - IpProtocol: aws.String("String"), - SourceSecurityGroupName: aws.String("String"), - SourceSecurityGroupOwnerId: aws.String("String"), - ToPort: aws.Int64(1), - } - resp, err := svc.AuthorizeSecurityGroupIngress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_BundleInstance() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.BundleInstanceInput{ - InstanceId: aws.String("String"), // Required - Storage: &ec2.Storage{ // Required - S3: &ec2.S3Storage{ - AWSAccessKeyId: aws.String("String"), - Bucket: aws.String("String"), - Prefix: aws.String("String"), - UploadPolicy: []byte("PAYLOAD"), - UploadPolicySignature: aws.String("String"), - }, - }, - DryRun: aws.Bool(true), - } - resp, err := svc.BundleInstance(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CancelBundleTask() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CancelBundleTaskInput{ - BundleId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.CancelBundleTask(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CancelConversionTask() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CancelConversionTaskInput{ - ConversionTaskId: aws.String("String"), // Required - DryRun: aws.Bool(true), - ReasonMessage: aws.String("String"), - } - resp, err := svc.CancelConversionTask(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CancelExportTask() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CancelExportTaskInput{ - ExportTaskId: aws.String("String"), // Required - } - resp, err := svc.CancelExportTask(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CancelImportTask() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CancelImportTaskInput{ - CancelReason: aws.String("String"), - DryRun: aws.Bool(true), - ImportTaskId: aws.String("String"), - } - resp, err := svc.CancelImportTask(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CancelReservedInstancesListing() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CancelReservedInstancesListingInput{ - ReservedInstancesListingId: aws.String("String"), // Required - } - resp, err := svc.CancelReservedInstancesListing(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CancelSpotFleetRequests() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CancelSpotFleetRequestsInput{ - SpotFleetRequestIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - TerminateInstances: aws.Bool(true), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.CancelSpotFleetRequests(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CancelSpotInstanceRequests() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CancelSpotInstanceRequestsInput{ - SpotInstanceRequestIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.CancelSpotInstanceRequests(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ConfirmProductInstance() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ConfirmProductInstanceInput{ - InstanceId: aws.String("String"), // Required - ProductCode: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.ConfirmProductInstance(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CopyImage() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CopyImageInput{ - Name: aws.String("String"), // Required - SourceImageId: aws.String("String"), // Required - SourceRegion: aws.String("String"), // Required - ClientToken: aws.String("String"), - Description: aws.String("String"), - DryRun: aws.Bool(true), - Encrypted: aws.Bool(true), - KmsKeyId: aws.String("String"), - } - resp, err := svc.CopyImage(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CopySnapshot() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CopySnapshotInput{ - SourceRegion: aws.String("String"), // Required - SourceSnapshotId: aws.String("String"), // Required - Description: aws.String("String"), - DestinationRegion: aws.String("String"), - DryRun: aws.Bool(true), - Encrypted: aws.Bool(true), - KmsKeyId: aws.String("String"), - PresignedUrl: aws.String("String"), - } - resp, err := svc.CopySnapshot(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateCustomerGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateCustomerGatewayInput{ - BgpAsn: aws.Int64(1), // Required - PublicIp: aws.String("String"), // Required - Type: aws.String("GatewayType"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.CreateCustomerGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateDhcpOptions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateDhcpOptionsInput{ - DhcpConfigurations: []*ec2.NewDhcpConfiguration{ // Required - { // Required - Key: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.CreateDhcpOptions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateFlowLogs() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateFlowLogsInput{ - DeliverLogsPermissionArn: aws.String("String"), // Required - LogGroupName: aws.String("String"), // Required - ResourceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - ResourceType: aws.String("FlowLogsResourceType"), // Required - TrafficType: aws.String("TrafficType"), // Required - ClientToken: aws.String("String"), - } - resp, err := svc.CreateFlowLogs(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateImage() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateImageInput{ - InstanceId: aws.String("String"), // Required - Name: aws.String("String"), // Required - BlockDeviceMappings: []*ec2.BlockDeviceMapping{ - { // Required - DeviceName: aws.String("String"), - Ebs: &ec2.EbsBlockDevice{ - DeleteOnTermination: aws.Bool(true), - Encrypted: aws.Bool(true), - Iops: aws.Int64(1), - SnapshotId: aws.String("String"), - VolumeSize: aws.Int64(1), - VolumeType: aws.String("VolumeType"), - }, - NoDevice: aws.String("String"), - VirtualName: aws.String("String"), - }, - // More values... - }, - Description: aws.String("String"), - DryRun: aws.Bool(true), - NoReboot: aws.Bool(true), - } - resp, err := svc.CreateImage(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateInstanceExportTask() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateInstanceExportTaskInput{ - InstanceId: aws.String("String"), // Required - Description: aws.String("String"), - ExportToS3Task: &ec2.ExportToS3TaskSpecification{ - ContainerFormat: aws.String("ContainerFormat"), - DiskImageFormat: aws.String("DiskImageFormat"), - S3Bucket: aws.String("String"), - S3Prefix: aws.String("String"), - }, - TargetEnvironment: aws.String("ExportEnvironment"), - } - resp, err := svc.CreateInstanceExportTask(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateInternetGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateInternetGatewayInput{ - DryRun: aws.Bool(true), - } - resp, err := svc.CreateInternetGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateKeyPair() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateKeyPairInput{ - KeyName: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.CreateKeyPair(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateNatGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateNatGatewayInput{ - AllocationId: aws.String("String"), // Required - SubnetId: aws.String("String"), // Required - ClientToken: aws.String("String"), - } - resp, err := svc.CreateNatGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateNetworkAcl() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateNetworkAclInput{ - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.CreateNetworkAcl(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateNetworkAclEntry() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateNetworkAclEntryInput{ - CidrBlock: aws.String("String"), // Required - Egress: aws.Bool(true), // Required - NetworkAclId: aws.String("String"), // Required - Protocol: aws.String("String"), // Required - RuleAction: aws.String("RuleAction"), // Required - RuleNumber: aws.Int64(1), // Required - DryRun: aws.Bool(true), - IcmpTypeCode: &ec2.IcmpTypeCode{ - Code: aws.Int64(1), - Type: aws.Int64(1), - }, - PortRange: &ec2.PortRange{ - From: aws.Int64(1), - To: aws.Int64(1), - }, - } - resp, err := svc.CreateNetworkAclEntry(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateNetworkInterface() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateNetworkInterfaceInput{ - SubnetId: aws.String("String"), // Required - Description: aws.String("String"), - DryRun: aws.Bool(true), - Groups: []*string{ - aws.String("String"), // Required - // More values... - }, - PrivateIpAddress: aws.String("String"), - PrivateIpAddresses: []*ec2.PrivateIpAddressSpecification{ - { // Required - PrivateIpAddress: aws.String("String"), // Required - Primary: aws.Bool(true), - }, - // More values... - }, - SecondaryPrivateIpAddressCount: aws.Int64(1), - } - resp, err := svc.CreateNetworkInterface(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreatePlacementGroup() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreatePlacementGroupInput{ - GroupName: aws.String("String"), // Required - Strategy: aws.String("PlacementStrategy"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.CreatePlacementGroup(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateReservedInstancesListing() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateReservedInstancesListingInput{ - ClientToken: aws.String("String"), // Required - InstanceCount: aws.Int64(1), // Required - PriceSchedules: []*ec2.PriceScheduleSpecification{ // Required - { // Required - CurrencyCode: aws.String("CurrencyCodeValues"), - Price: aws.Float64(1.0), - Term: aws.Int64(1), - }, - // More values... - }, - ReservedInstancesId: aws.String("String"), // Required - } - resp, err := svc.CreateReservedInstancesListing(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateRoute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateRouteInput{ - DestinationCidrBlock: aws.String("String"), // Required - RouteTableId: aws.String("String"), // Required - DryRun: aws.Bool(true), - GatewayId: aws.String("String"), - InstanceId: aws.String("String"), - NatGatewayId: aws.String("String"), - NetworkInterfaceId: aws.String("String"), - VpcPeeringConnectionId: aws.String("String"), - } - resp, err := svc.CreateRoute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateRouteTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateRouteTableInput{ - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.CreateRouteTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateSecurityGroup() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateSecurityGroupInput{ - Description: aws.String("String"), // Required - GroupName: aws.String("String"), // Required - DryRun: aws.Bool(true), - VpcId: aws.String("String"), - } - resp, err := svc.CreateSecurityGroup(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateSnapshot() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateSnapshotInput{ - VolumeId: aws.String("String"), // Required - Description: aws.String("String"), - DryRun: aws.Bool(true), - } - resp, err := svc.CreateSnapshot(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateSpotDatafeedSubscription() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateSpotDatafeedSubscriptionInput{ - Bucket: aws.String("String"), // Required - DryRun: aws.Bool(true), - Prefix: aws.String("String"), - } - resp, err := svc.CreateSpotDatafeedSubscription(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateSubnet() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateSubnetInput{ - CidrBlock: aws.String("String"), // Required - VpcId: aws.String("String"), // Required - AvailabilityZone: aws.String("String"), - DryRun: aws.Bool(true), - } - resp, err := svc.CreateSubnet(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateTags() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateTagsInput{ - Resources: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - Tags: []*ec2.Tag{ // Required - { // Required - Key: aws.String("String"), - Value: aws.String("String"), - }, - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.CreateTags(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateVolume() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateVolumeInput{ - AvailabilityZone: aws.String("String"), // Required - DryRun: aws.Bool(true), - Encrypted: aws.Bool(true), - Iops: aws.Int64(1), - KmsKeyId: aws.String("String"), - Size: aws.Int64(1), - SnapshotId: aws.String("String"), - VolumeType: aws.String("VolumeType"), - } - resp, err := svc.CreateVolume(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateVpc() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateVpcInput{ - CidrBlock: aws.String("String"), // Required - DryRun: aws.Bool(true), - InstanceTenancy: aws.String("Tenancy"), - } - resp, err := svc.CreateVpc(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateVpcEndpoint() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateVpcEndpointInput{ - ServiceName: aws.String("String"), // Required - VpcId: aws.String("String"), // Required - ClientToken: aws.String("String"), - DryRun: aws.Bool(true), - PolicyDocument: aws.String("String"), - RouteTableIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.CreateVpcEndpoint(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateVpcPeeringConnection() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateVpcPeeringConnectionInput{ - DryRun: aws.Bool(true), - PeerOwnerId: aws.String("String"), - PeerVpcId: aws.String("String"), - VpcId: aws.String("String"), - } - resp, err := svc.CreateVpcPeeringConnection(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateVpnConnection() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateVpnConnectionInput{ - CustomerGatewayId: aws.String("String"), // Required - Type: aws.String("String"), // Required - VpnGatewayId: aws.String("String"), // Required - DryRun: aws.Bool(true), - Options: &ec2.VpnConnectionOptionsSpecification{ - StaticRoutesOnly: aws.Bool(true), - }, - } - resp, err := svc.CreateVpnConnection(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateVpnConnectionRoute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateVpnConnectionRouteInput{ - DestinationCidrBlock: aws.String("String"), // Required - VpnConnectionId: aws.String("String"), // Required - } - resp, err := svc.CreateVpnConnectionRoute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_CreateVpnGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.CreateVpnGatewayInput{ - Type: aws.String("GatewayType"), // Required - AvailabilityZone: aws.String("String"), - DryRun: aws.Bool(true), - } - resp, err := svc.CreateVpnGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteCustomerGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteCustomerGatewayInput{ - CustomerGatewayId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteCustomerGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteDhcpOptions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteDhcpOptionsInput{ - DhcpOptionsId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteDhcpOptions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteFlowLogs() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteFlowLogsInput{ - FlowLogIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DeleteFlowLogs(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteInternetGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteInternetGatewayInput{ - InternetGatewayId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteInternetGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteKeyPair() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteKeyPairInput{ - KeyName: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteKeyPair(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteNatGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteNatGatewayInput{ - NatGatewayId: aws.String("String"), // Required - } - resp, err := svc.DeleteNatGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteNetworkAcl() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteNetworkAclInput{ - NetworkAclId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteNetworkAcl(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteNetworkAclEntry() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteNetworkAclEntryInput{ - Egress: aws.Bool(true), // Required - NetworkAclId: aws.String("String"), // Required - RuleNumber: aws.Int64(1), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteNetworkAclEntry(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteNetworkInterface() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteNetworkInterfaceInput{ - NetworkInterfaceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteNetworkInterface(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeletePlacementGroup() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeletePlacementGroupInput{ - GroupName: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeletePlacementGroup(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteRoute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteRouteInput{ - DestinationCidrBlock: aws.String("String"), // Required - RouteTableId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteRoute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteRouteTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteRouteTableInput{ - RouteTableId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteRouteTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteSecurityGroup() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteSecurityGroupInput{ - DryRun: aws.Bool(true), - GroupId: aws.String("String"), - GroupName: aws.String("String"), - } - resp, err := svc.DeleteSecurityGroup(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteSnapshot() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteSnapshotInput{ - SnapshotId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteSnapshot(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteSpotDatafeedSubscription() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteSpotDatafeedSubscriptionInput{ - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteSpotDatafeedSubscription(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteSubnet() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteSubnetInput{ - SubnetId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteSubnet(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteTags() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteTagsInput{ - Resources: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - Tags: []*ec2.Tag{ - { // Required - Key: aws.String("String"), - Value: aws.String("String"), - }, - // More values... - }, - } - resp, err := svc.DeleteTags(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteVolume() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteVolumeInput{ - VolumeId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteVolume(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteVpc() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteVpcInput{ - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteVpc(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteVpcEndpoints() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteVpcEndpointsInput{ - VpcEndpointIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteVpcEndpoints(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteVpcPeeringConnection() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteVpcPeeringConnectionInput{ - VpcPeeringConnectionId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteVpcPeeringConnection(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteVpnConnection() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteVpnConnectionInput{ - VpnConnectionId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteVpnConnection(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteVpnConnectionRoute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteVpnConnectionRouteInput{ - DestinationCidrBlock: aws.String("String"), // Required - VpnConnectionId: aws.String("String"), // Required - } - resp, err := svc.DeleteVpnConnectionRoute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeleteVpnGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeleteVpnGatewayInput{ - VpnGatewayId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeleteVpnGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DeregisterImage() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DeregisterImageInput{ - ImageId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DeregisterImage(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeAccountAttributes() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeAccountAttributesInput{ - AttributeNames: []*string{ - aws.String("AccountAttributeName"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeAccountAttributes(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeAddresses() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeAddressesInput{ - AllocationIds: []*string{ - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - PublicIps: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeAddresses(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeAvailabilityZones() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeAvailabilityZonesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - ZoneNames: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeAvailabilityZones(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeBundleTasks() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeBundleTasksInput{ - BundleIds: []*string{ - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - } - resp, err := svc.DescribeBundleTasks(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeClassicLinkInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeClassicLinkInstancesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - InstanceIds: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeClassicLinkInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeConversionTasks() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeConversionTasksInput{ - ConversionTaskIds: []*string{ - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeConversionTasks(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeCustomerGateways() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeCustomerGatewaysInput{ - CustomerGatewayIds: []*string{ - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - } - resp, err := svc.DescribeCustomerGateways(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeDhcpOptions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeDhcpOptionsInput{ - DhcpOptionsIds: []*string{ - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - } - resp, err := svc.DescribeDhcpOptions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeExportTasks() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeExportTasksInput{ - ExportTaskIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeExportTasks(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeFlowLogs() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeFlowLogsInput{ - Filter: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - FlowLogIds: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeFlowLogs(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeHostReservationOfferings() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeHostReservationOfferingsInput{ - Filter: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxDuration: aws.Int64(1), - MaxResults: aws.Int64(1), - MinDuration: aws.Int64(1), - NextToken: aws.String("String"), - OfferingId: aws.String("String"), - } - resp, err := svc.DescribeHostReservationOfferings(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeHostReservations() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeHostReservationsInput{ - Filter: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - HostReservationIdSet: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeHostReservations(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeHosts() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeHostsInput{ - Filter: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - HostIds: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeHosts(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeIdFormat() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeIdFormatInput{ - Resource: aws.String("String"), - } - resp, err := svc.DescribeIdFormat(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeIdentityIdFormat() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeIdentityIdFormatInput{ - PrincipalArn: aws.String("String"), // Required - Resource: aws.String("String"), - } - resp, err := svc.DescribeIdentityIdFormat(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeImageAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeImageAttributeInput{ - Attribute: aws.String("ImageAttributeName"), // Required - ImageId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeImageAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeImages() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeImagesInput{ - DryRun: aws.Bool(true), - ExecutableUsers: []*string{ - aws.String("String"), // Required - // More values... - }, - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - ImageIds: []*string{ - aws.String("String"), // Required - // More values... - }, - Owners: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeImages(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeImportImageTasks() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeImportImageTasksInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - ImportTaskIds: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeImportImageTasks(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeImportSnapshotTasks() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeImportSnapshotTasksInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - ImportTaskIds: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeImportSnapshotTasks(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeInstanceAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeInstanceAttributeInput{ - Attribute: aws.String("InstanceAttributeName"), // Required - InstanceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeInstanceAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeInstanceStatus() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeInstanceStatusInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - IncludeAllInstances: aws.Bool(true), - InstanceIds: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeInstanceStatus(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeInstancesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - InstanceIds: []*string{ - aws.String("String"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeInternetGateways() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeInternetGatewaysInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - InternetGatewayIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeInternetGateways(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeKeyPairs() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeKeyPairsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - KeyNames: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeKeyPairs(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeMovingAddresses() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeMovingAddressesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - PublicIps: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeMovingAddresses(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeNatGateways() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeNatGatewaysInput{ - Filter: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NatGatewayIds: []*string{ - aws.String("String"), // Required - // More values... - }, - NextToken: aws.String("String"), - } - resp, err := svc.DescribeNatGateways(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeNetworkAcls() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeNetworkAclsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - NetworkAclIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeNetworkAcls(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeNetworkInterfaceAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeNetworkInterfaceAttributeInput{ - NetworkInterfaceId: aws.String("String"), // Required - Attribute: aws.String("NetworkInterfaceAttribute"), - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeNetworkInterfaceAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeNetworkInterfaces() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeNetworkInterfacesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - NetworkInterfaceIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeNetworkInterfaces(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribePlacementGroups() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribePlacementGroupsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - GroupNames: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribePlacementGroups(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribePrefixLists() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribePrefixListsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - PrefixListIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribePrefixLists(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeRegions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeRegionsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - RegionNames: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeRegions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeReservedInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeReservedInstancesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - OfferingClass: aws.String("OfferingClassType"), - OfferingType: aws.String("OfferingTypeValues"), - ReservedInstancesIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeReservedInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeReservedInstancesListings() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeReservedInstancesListingsInput{ - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - ReservedInstancesId: aws.String("String"), - ReservedInstancesListingId: aws.String("String"), - } - resp, err := svc.DescribeReservedInstancesListings(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeReservedInstancesModifications() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeReservedInstancesModificationsInput{ - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - NextToken: aws.String("String"), - ReservedInstancesModificationIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeReservedInstancesModifications(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeReservedInstancesOfferings() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeReservedInstancesOfferingsInput{ - AvailabilityZone: aws.String("String"), - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - IncludeMarketplace: aws.Bool(true), - InstanceTenancy: aws.String("Tenancy"), - InstanceType: aws.String("InstanceType"), - MaxDuration: aws.Int64(1), - MaxInstanceCount: aws.Int64(1), - MaxResults: aws.Int64(1), - MinDuration: aws.Int64(1), - NextToken: aws.String("String"), - OfferingClass: aws.String("OfferingClassType"), - OfferingType: aws.String("OfferingTypeValues"), - ProductDescription: aws.String("RIProductDescription"), - ReservedInstancesOfferingIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeReservedInstancesOfferings(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeRouteTables() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeRouteTablesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - RouteTableIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeRouteTables(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeScheduledInstanceAvailability() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeScheduledInstanceAvailabilityInput{ - FirstSlotStartTimeRange: &ec2.SlotDateTimeRangeRequest{ // Required - EarliestTime: aws.Time(time.Now()), // Required - LatestTime: aws.Time(time.Now()), // Required - }, - Recurrence: &ec2.ScheduledInstanceRecurrenceRequest{ // Required - Frequency: aws.String("String"), - Interval: aws.Int64(1), - OccurrenceDays: []*int64{ - aws.Int64(1), // Required - // More values... - }, - OccurrenceRelativeToEnd: aws.Bool(true), - OccurrenceUnit: aws.String("String"), - }, - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - MaxSlotDurationInHours: aws.Int64(1), - MinSlotDurationInHours: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeScheduledInstanceAvailability(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeScheduledInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeScheduledInstancesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - ScheduledInstanceIds: []*string{ - aws.String("String"), // Required - // More values... - }, - SlotStartTimeRange: &ec2.SlotStartTimeRangeRequest{ - EarliestTime: aws.Time(time.Now()), - LatestTime: aws.Time(time.Now()), - }, - } - resp, err := svc.DescribeScheduledInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSecurityGroupReferences() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSecurityGroupReferencesInput{ - GroupId: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeSecurityGroupReferences(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSecurityGroups() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSecurityGroupsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - GroupIds: []*string{ - aws.String("String"), // Required - // More values... - }, - GroupNames: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeSecurityGroups(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSnapshotAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSnapshotAttributeInput{ - Attribute: aws.String("SnapshotAttributeName"), // Required - SnapshotId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeSnapshotAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSnapshots() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSnapshotsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - OwnerIds: []*string{ - aws.String("String"), // Required - // More values... - }, - RestorableByUserIds: []*string{ - aws.String("String"), // Required - // More values... - }, - SnapshotIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeSnapshots(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSpotDatafeedSubscription() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSpotDatafeedSubscriptionInput{ - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeSpotDatafeedSubscription(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSpotFleetInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSpotFleetInstancesInput{ - SpotFleetRequestId: aws.String("String"), // Required - DryRun: aws.Bool(true), - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeSpotFleetInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSpotFleetRequestHistory() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSpotFleetRequestHistoryInput{ - SpotFleetRequestId: aws.String("String"), // Required - StartTime: aws.Time(time.Now()), // Required - DryRun: aws.Bool(true), - EventType: aws.String("EventType"), - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeSpotFleetRequestHistory(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSpotFleetRequests() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSpotFleetRequestsInput{ - DryRun: aws.Bool(true), - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - SpotFleetRequestIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeSpotFleetRequests(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSpotInstanceRequests() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSpotInstanceRequestsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - SpotInstanceRequestIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeSpotInstanceRequests(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSpotPriceHistory() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSpotPriceHistoryInput{ - AvailabilityZone: aws.String("String"), - DryRun: aws.Bool(true), - EndTime: aws.Time(time.Now()), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - InstanceTypes: []*string{ - aws.String("InstanceType"), // Required - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - ProductDescriptions: []*string{ - aws.String("String"), // Required - // More values... - }, - StartTime: aws.Time(time.Now()), - } - resp, err := svc.DescribeSpotPriceHistory(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeStaleSecurityGroups() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeStaleSecurityGroupsInput{ - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - MaxResults: aws.Int64(1), - NextToken: aws.String("NextToken"), - } - resp, err := svc.DescribeStaleSecurityGroups(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeSubnets() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeSubnetsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - SubnetIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeSubnets(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeTags() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeTagsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeTags(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVolumeAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVolumeAttributeInput{ - VolumeId: aws.String("String"), // Required - Attribute: aws.String("VolumeAttributeName"), - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeVolumeAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVolumeStatus() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVolumeStatusInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - VolumeIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVolumeStatus(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVolumes() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVolumesInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - VolumeIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVolumes(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpcAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpcAttributeInput{ - Attribute: aws.String("VpcAttributeName"), // Required - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DescribeVpcAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpcClassicLink() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpcClassicLinkInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - VpcIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVpcClassicLink(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpcClassicLinkDnsSupport() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpcClassicLinkDnsSupportInput{ - MaxResults: aws.Int64(1), - NextToken: aws.String("NextToken"), - VpcIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVpcClassicLinkDnsSupport(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpcEndpointServices() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpcEndpointServicesInput{ - DryRun: aws.Bool(true), - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - } - resp, err := svc.DescribeVpcEndpointServices(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpcEndpoints() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpcEndpointsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - MaxResults: aws.Int64(1), - NextToken: aws.String("String"), - VpcEndpointIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVpcEndpoints(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpcPeeringConnections() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpcPeeringConnectionsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - VpcPeeringConnectionIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVpcPeeringConnections(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpcs() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpcsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - VpcIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVpcs(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpnConnections() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpnConnectionsInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - VpnConnectionIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVpnConnections(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DescribeVpnGateways() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DescribeVpnGatewaysInput{ - DryRun: aws.Bool(true), - Filters: []*ec2.Filter{ - { // Required - Name: aws.String("String"), - Values: []*string{ - aws.String("String"), // Required - // More values... - }, - }, - // More values... - }, - VpnGatewayIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.DescribeVpnGateways(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DetachClassicLinkVpc() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DetachClassicLinkVpcInput{ - InstanceId: aws.String("String"), // Required - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DetachClassicLinkVpc(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DetachInternetGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DetachInternetGatewayInput{ - InternetGatewayId: aws.String("String"), // Required - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DetachInternetGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DetachNetworkInterface() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DetachNetworkInterfaceInput{ - AttachmentId: aws.String("String"), // Required - DryRun: aws.Bool(true), - Force: aws.Bool(true), - } - resp, err := svc.DetachNetworkInterface(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DetachVolume() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DetachVolumeInput{ - VolumeId: aws.String("String"), // Required - Device: aws.String("String"), - DryRun: aws.Bool(true), - Force: aws.Bool(true), - InstanceId: aws.String("String"), - } - resp, err := svc.DetachVolume(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DetachVpnGateway() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DetachVpnGatewayInput{ - VpcId: aws.String("String"), // Required - VpnGatewayId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DetachVpnGateway(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DisableVgwRoutePropagation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DisableVgwRoutePropagationInput{ - GatewayId: aws.String("String"), // Required - RouteTableId: aws.String("String"), // Required - } - resp, err := svc.DisableVgwRoutePropagation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DisableVpcClassicLink() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DisableVpcClassicLinkInput{ - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DisableVpcClassicLink(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DisableVpcClassicLinkDnsSupport() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DisableVpcClassicLinkDnsSupportInput{ - VpcId: aws.String("String"), - } - resp, err := svc.DisableVpcClassicLinkDnsSupport(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DisassociateAddress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DisassociateAddressInput{ - AssociationId: aws.String("String"), - DryRun: aws.Bool(true), - PublicIp: aws.String("String"), - } - resp, err := svc.DisassociateAddress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_DisassociateRouteTable() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.DisassociateRouteTableInput{ - AssociationId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.DisassociateRouteTable(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_EnableVgwRoutePropagation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.EnableVgwRoutePropagationInput{ - GatewayId: aws.String("String"), // Required - RouteTableId: aws.String("String"), // Required - } - resp, err := svc.EnableVgwRoutePropagation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_EnableVolumeIO() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.EnableVolumeIOInput{ - VolumeId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.EnableVolumeIO(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_EnableVpcClassicLink() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.EnableVpcClassicLinkInput{ - VpcId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.EnableVpcClassicLink(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_EnableVpcClassicLinkDnsSupport() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.EnableVpcClassicLinkDnsSupportInput{ - VpcId: aws.String("String"), - } - resp, err := svc.EnableVpcClassicLinkDnsSupport(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_GetConsoleOutput() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.GetConsoleOutputInput{ - InstanceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.GetConsoleOutput(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_GetConsoleScreenshot() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.GetConsoleScreenshotInput{ - InstanceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - WakeUp: aws.Bool(true), - } - resp, err := svc.GetConsoleScreenshot(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_GetHostReservationPurchasePreview() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.GetHostReservationPurchasePreviewInput{ - HostIdSet: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - OfferingId: aws.String("String"), // Required - } - resp, err := svc.GetHostReservationPurchasePreview(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_GetPasswordData() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.GetPasswordDataInput{ - InstanceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.GetPasswordData(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_GetReservedInstancesExchangeQuote() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.GetReservedInstancesExchangeQuoteInput{ - ReservedInstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - TargetConfigurations: []*ec2.TargetConfigurationRequest{ - { // Required - OfferingId: aws.String("String"), // Required - InstanceCount: aws.Int64(1), - }, - // More values... - }, - } - resp, err := svc.GetReservedInstancesExchangeQuote(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ImportImage() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ImportImageInput{ - Architecture: aws.String("String"), - ClientData: &ec2.ClientData{ - Comment: aws.String("String"), - UploadEnd: aws.Time(time.Now()), - UploadSize: aws.Float64(1.0), - UploadStart: aws.Time(time.Now()), - }, - ClientToken: aws.String("String"), - Description: aws.String("String"), - DiskContainers: []*ec2.ImageDiskContainer{ - { // Required - Description: aws.String("String"), - DeviceName: aws.String("String"), - Format: aws.String("String"), - SnapshotId: aws.String("String"), - Url: aws.String("String"), - UserBucket: &ec2.UserBucket{ - S3Bucket: aws.String("String"), - S3Key: aws.String("String"), - }, - }, - // More values... - }, - DryRun: aws.Bool(true), - Hypervisor: aws.String("String"), - LicenseType: aws.String("String"), - Platform: aws.String("String"), - RoleName: aws.String("String"), - } - resp, err := svc.ImportImage(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ImportInstance() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ImportInstanceInput{ - Platform: aws.String("PlatformValues"), // Required - Description: aws.String("String"), - DiskImages: []*ec2.DiskImage{ - { // Required - Description: aws.String("String"), - Image: &ec2.DiskImageDetail{ - Bytes: aws.Int64(1), // Required - Format: aws.String("DiskImageFormat"), // Required - ImportManifestUrl: aws.String("String"), // Required - }, - Volume: &ec2.VolumeDetail{ - Size: aws.Int64(1), // Required - }, - }, - // More values... - }, - DryRun: aws.Bool(true), - LaunchSpecification: &ec2.ImportInstanceLaunchSpecification{ - AdditionalInfo: aws.String("String"), - Architecture: aws.String("ArchitectureValues"), - GroupIds: []*string{ - aws.String("String"), // Required - // More values... - }, - GroupNames: []*string{ - aws.String("String"), // Required - // More values... - }, - InstanceInitiatedShutdownBehavior: aws.String("ShutdownBehavior"), - InstanceType: aws.String("InstanceType"), - Monitoring: aws.Bool(true), - Placement: &ec2.Placement{ - Affinity: aws.String("String"), - AvailabilityZone: aws.String("String"), - GroupName: aws.String("String"), - HostId: aws.String("String"), - Tenancy: aws.String("Tenancy"), - }, - PrivateIpAddress: aws.String("String"), - SubnetId: aws.String("String"), - UserData: &ec2.UserData{ - Data: aws.String("String"), - }, - }, - } - resp, err := svc.ImportInstance(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ImportKeyPair() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ImportKeyPairInput{ - KeyName: aws.String("String"), // Required - PublicKeyMaterial: []byte("PAYLOAD"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.ImportKeyPair(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ImportSnapshot() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ImportSnapshotInput{ - ClientData: &ec2.ClientData{ - Comment: aws.String("String"), - UploadEnd: aws.Time(time.Now()), - UploadSize: aws.Float64(1.0), - UploadStart: aws.Time(time.Now()), - }, - ClientToken: aws.String("String"), - Description: aws.String("String"), - DiskContainer: &ec2.SnapshotDiskContainer{ - Description: aws.String("String"), - Format: aws.String("String"), - Url: aws.String("String"), - UserBucket: &ec2.UserBucket{ - S3Bucket: aws.String("String"), - S3Key: aws.String("String"), - }, - }, - DryRun: aws.Bool(true), - RoleName: aws.String("String"), - } - resp, err := svc.ImportSnapshot(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ImportVolume() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ImportVolumeInput{ - AvailabilityZone: aws.String("String"), // Required - Image: &ec2.DiskImageDetail{ // Required - Bytes: aws.Int64(1), // Required - Format: aws.String("DiskImageFormat"), // Required - ImportManifestUrl: aws.String("String"), // Required - }, - Volume: &ec2.VolumeDetail{ // Required - Size: aws.Int64(1), // Required - }, - Description: aws.String("String"), - DryRun: aws.Bool(true), - } - resp, err := svc.ImportVolume(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyHosts() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyHostsInput{ - AutoPlacement: aws.String("AutoPlacement"), // Required - HostIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.ModifyHosts(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyIdFormat() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyIdFormatInput{ - Resource: aws.String("String"), // Required - UseLongIds: aws.Bool(true), // Required - } - resp, err := svc.ModifyIdFormat(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyIdentityIdFormat() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyIdentityIdFormatInput{ - PrincipalArn: aws.String("String"), // Required - Resource: aws.String("String"), // Required - UseLongIds: aws.Bool(true), // Required - } - resp, err := svc.ModifyIdentityIdFormat(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyImageAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyImageAttributeInput{ - ImageId: aws.String("String"), // Required - Attribute: aws.String("String"), - Description: &ec2.AttributeValue{ - Value: aws.String("String"), - }, - DryRun: aws.Bool(true), - LaunchPermission: &ec2.LaunchPermissionModifications{ - Add: []*ec2.LaunchPermission{ - { // Required - Group: aws.String("PermissionGroup"), - UserId: aws.String("String"), - }, - // More values... - }, - Remove: []*ec2.LaunchPermission{ - { // Required - Group: aws.String("PermissionGroup"), - UserId: aws.String("String"), - }, - // More values... - }, - }, - OperationType: aws.String("OperationType"), - ProductCodes: []*string{ - aws.String("String"), // Required - // More values... - }, - UserGroups: []*string{ - aws.String("String"), // Required - // More values... - }, - UserIds: []*string{ - aws.String("String"), // Required - // More values... - }, - Value: aws.String("String"), - } - resp, err := svc.ModifyImageAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyInstanceAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyInstanceAttributeInput{ - InstanceId: aws.String("String"), // Required - Attribute: aws.String("InstanceAttributeName"), - BlockDeviceMappings: []*ec2.InstanceBlockDeviceMappingSpecification{ - { // Required - DeviceName: aws.String("String"), - Ebs: &ec2.EbsInstanceBlockDeviceSpecification{ - DeleteOnTermination: aws.Bool(true), - VolumeId: aws.String("String"), - }, - NoDevice: aws.String("String"), - VirtualName: aws.String("String"), - }, - // More values... - }, - DisableApiTermination: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - DryRun: aws.Bool(true), - EbsOptimized: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - EnaSupport: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - Groups: []*string{ - aws.String("String"), // Required - // More values... - }, - InstanceInitiatedShutdownBehavior: &ec2.AttributeValue{ - Value: aws.String("String"), - }, - InstanceType: &ec2.AttributeValue{ - Value: aws.String("String"), - }, - Kernel: &ec2.AttributeValue{ - Value: aws.String("String"), - }, - Ramdisk: &ec2.AttributeValue{ - Value: aws.String("String"), - }, - SourceDestCheck: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - SriovNetSupport: &ec2.AttributeValue{ - Value: aws.String("String"), - }, - UserData: &ec2.BlobAttributeValue{ - Value: []byte("PAYLOAD"), - }, - Value: aws.String("String"), - } - resp, err := svc.ModifyInstanceAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyInstancePlacement() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyInstancePlacementInput{ - InstanceId: aws.String("String"), // Required - Affinity: aws.String("Affinity"), - HostId: aws.String("String"), - Tenancy: aws.String("HostTenancy"), - } - resp, err := svc.ModifyInstancePlacement(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyNetworkInterfaceAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyNetworkInterfaceAttributeInput{ - NetworkInterfaceId: aws.String("String"), // Required - Attachment: &ec2.NetworkInterfaceAttachmentChanges{ - AttachmentId: aws.String("String"), - DeleteOnTermination: aws.Bool(true), - }, - Description: &ec2.AttributeValue{ - Value: aws.String("String"), - }, - DryRun: aws.Bool(true), - Groups: []*string{ - aws.String("String"), // Required - // More values... - }, - SourceDestCheck: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - } - resp, err := svc.ModifyNetworkInterfaceAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyReservedInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyReservedInstancesInput{ - ReservedInstancesIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - TargetConfigurations: []*ec2.ReservedInstancesConfiguration{ // Required - { // Required - AvailabilityZone: aws.String("String"), - InstanceCount: aws.Int64(1), - InstanceType: aws.String("InstanceType"), - Platform: aws.String("String"), - Scope: aws.String("scope"), - }, - // More values... - }, - ClientToken: aws.String("String"), - } - resp, err := svc.ModifyReservedInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifySnapshotAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifySnapshotAttributeInput{ - SnapshotId: aws.String("String"), // Required - Attribute: aws.String("SnapshotAttributeName"), - CreateVolumePermission: &ec2.CreateVolumePermissionModifications{ - Add: []*ec2.CreateVolumePermission{ - { // Required - Group: aws.String("PermissionGroup"), - UserId: aws.String("String"), - }, - // More values... - }, - Remove: []*ec2.CreateVolumePermission{ - { // Required - Group: aws.String("PermissionGroup"), - UserId: aws.String("String"), - }, - // More values... - }, - }, - DryRun: aws.Bool(true), - GroupNames: []*string{ - aws.String("String"), // Required - // More values... - }, - OperationType: aws.String("OperationType"), - UserIds: []*string{ - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.ModifySnapshotAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifySpotFleetRequest() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifySpotFleetRequestInput{ - SpotFleetRequestId: aws.String("String"), // Required - ExcessCapacityTerminationPolicy: aws.String("ExcessCapacityTerminationPolicy"), - TargetCapacity: aws.Int64(1), - } - resp, err := svc.ModifySpotFleetRequest(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifySubnetAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifySubnetAttributeInput{ - SubnetId: aws.String("String"), // Required - MapPublicIpOnLaunch: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - } - resp, err := svc.ModifySubnetAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyVolumeAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyVolumeAttributeInput{ - VolumeId: aws.String("String"), // Required - AutoEnableIO: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - DryRun: aws.Bool(true), - } - resp, err := svc.ModifyVolumeAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyVpcAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyVpcAttributeInput{ - VpcId: aws.String("String"), // Required - EnableDnsHostnames: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - EnableDnsSupport: &ec2.AttributeBooleanValue{ - Value: aws.Bool(true), - }, - } - resp, err := svc.ModifyVpcAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyVpcEndpoint() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyVpcEndpointInput{ - VpcEndpointId: aws.String("String"), // Required - AddRouteTableIds: []*string{ - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - PolicyDocument: aws.String("String"), - RemoveRouteTableIds: []*string{ - aws.String("String"), // Required - // More values... - }, - ResetPolicy: aws.Bool(true), - } - resp, err := svc.ModifyVpcEndpoint(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ModifyVpcPeeringConnectionOptions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ModifyVpcPeeringConnectionOptionsInput{ - VpcPeeringConnectionId: aws.String("String"), // Required - AccepterPeeringConnectionOptions: &ec2.PeeringConnectionOptionsRequest{ - AllowDnsResolutionFromRemoteVpc: aws.Bool(true), - AllowEgressFromLocalClassicLinkToRemoteVpc: aws.Bool(true), - AllowEgressFromLocalVpcToRemoteClassicLink: aws.Bool(true), - }, - DryRun: aws.Bool(true), - RequesterPeeringConnectionOptions: &ec2.PeeringConnectionOptionsRequest{ - AllowDnsResolutionFromRemoteVpc: aws.Bool(true), - AllowEgressFromLocalClassicLinkToRemoteVpc: aws.Bool(true), - AllowEgressFromLocalVpcToRemoteClassicLink: aws.Bool(true), - }, - } - resp, err := svc.ModifyVpcPeeringConnectionOptions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_MonitorInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.MonitorInstancesInput{ - InstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.MonitorInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_MoveAddressToVpc() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.MoveAddressToVpcInput{ - PublicIp: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.MoveAddressToVpc(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_PurchaseHostReservation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.PurchaseHostReservationInput{ - HostIdSet: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - OfferingId: aws.String("String"), // Required - ClientToken: aws.String("String"), - CurrencyCode: aws.String("CurrencyCodeValues"), - LimitPrice: aws.String("String"), - } - resp, err := svc.PurchaseHostReservation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_PurchaseReservedInstancesOffering() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.PurchaseReservedInstancesOfferingInput{ - InstanceCount: aws.Int64(1), // Required - ReservedInstancesOfferingId: aws.String("String"), // Required - DryRun: aws.Bool(true), - LimitPrice: &ec2.ReservedInstanceLimitPrice{ - Amount: aws.Float64(1.0), - CurrencyCode: aws.String("CurrencyCodeValues"), - }, - } - resp, err := svc.PurchaseReservedInstancesOffering(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_PurchaseScheduledInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.PurchaseScheduledInstancesInput{ - PurchaseRequests: []*ec2.PurchaseRequest{ // Required - { // Required - InstanceCount: aws.Int64(1), // Required - PurchaseToken: aws.String("String"), // Required - }, - // More values... - }, - ClientToken: aws.String("String"), - DryRun: aws.Bool(true), - } - resp, err := svc.PurchaseScheduledInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RebootInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RebootInstancesInput{ - InstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.RebootInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RegisterImage() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RegisterImageInput{ - Name: aws.String("String"), // Required - Architecture: aws.String("ArchitectureValues"), - BlockDeviceMappings: []*ec2.BlockDeviceMapping{ - { // Required - DeviceName: aws.String("String"), - Ebs: &ec2.EbsBlockDevice{ - DeleteOnTermination: aws.Bool(true), - Encrypted: aws.Bool(true), - Iops: aws.Int64(1), - SnapshotId: aws.String("String"), - VolumeSize: aws.Int64(1), - VolumeType: aws.String("VolumeType"), - }, - NoDevice: aws.String("String"), - VirtualName: aws.String("String"), - }, - // More values... - }, - Description: aws.String("String"), - DryRun: aws.Bool(true), - EnaSupport: aws.Bool(true), - ImageLocation: aws.String("String"), - KernelId: aws.String("String"), - RamdiskId: aws.String("String"), - RootDeviceName: aws.String("String"), - SriovNetSupport: aws.String("String"), - VirtualizationType: aws.String("String"), - } - resp, err := svc.RegisterImage(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RejectVpcPeeringConnection() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RejectVpcPeeringConnectionInput{ - VpcPeeringConnectionId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.RejectVpcPeeringConnection(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ReleaseAddress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ReleaseAddressInput{ - AllocationId: aws.String("String"), - DryRun: aws.Bool(true), - PublicIp: aws.String("String"), - } - resp, err := svc.ReleaseAddress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ReleaseHosts() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ReleaseHostsInput{ - HostIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.ReleaseHosts(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ReplaceNetworkAclAssociation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ReplaceNetworkAclAssociationInput{ - AssociationId: aws.String("String"), // Required - NetworkAclId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.ReplaceNetworkAclAssociation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ReplaceNetworkAclEntry() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ReplaceNetworkAclEntryInput{ - CidrBlock: aws.String("String"), // Required - Egress: aws.Bool(true), // Required - NetworkAclId: aws.String("String"), // Required - Protocol: aws.String("String"), // Required - RuleAction: aws.String("RuleAction"), // Required - RuleNumber: aws.Int64(1), // Required - DryRun: aws.Bool(true), - IcmpTypeCode: &ec2.IcmpTypeCode{ - Code: aws.Int64(1), - Type: aws.Int64(1), - }, - PortRange: &ec2.PortRange{ - From: aws.Int64(1), - To: aws.Int64(1), - }, - } - resp, err := svc.ReplaceNetworkAclEntry(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ReplaceRoute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ReplaceRouteInput{ - DestinationCidrBlock: aws.String("String"), // Required - RouteTableId: aws.String("String"), // Required - DryRun: aws.Bool(true), - GatewayId: aws.String("String"), - InstanceId: aws.String("String"), - NatGatewayId: aws.String("String"), - NetworkInterfaceId: aws.String("String"), - VpcPeeringConnectionId: aws.String("String"), - } - resp, err := svc.ReplaceRoute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ReplaceRouteTableAssociation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ReplaceRouteTableAssociationInput{ - AssociationId: aws.String("String"), // Required - RouteTableId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.ReplaceRouteTableAssociation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ReportInstanceStatus() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ReportInstanceStatusInput{ - Instances: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - ReasonCodes: []*string{ // Required - aws.String("ReportInstanceReasonCodes"), // Required - // More values... - }, - Status: aws.String("ReportStatusType"), // Required - Description: aws.String("String"), - DryRun: aws.Bool(true), - EndTime: aws.Time(time.Now()), - StartTime: aws.Time(time.Now()), - } - resp, err := svc.ReportInstanceStatus(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RequestSpotFleet() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RequestSpotFleetInput{ - SpotFleetRequestConfig: &ec2.SpotFleetRequestConfigData{ // Required - IamFleetRole: aws.String("String"), // Required - LaunchSpecifications: []*ec2.SpotFleetLaunchSpecification{ // Required - { // Required - AddressingType: aws.String("String"), - BlockDeviceMappings: []*ec2.BlockDeviceMapping{ - { // Required - DeviceName: aws.String("String"), - Ebs: &ec2.EbsBlockDevice{ - DeleteOnTermination: aws.Bool(true), - Encrypted: aws.Bool(true), - Iops: aws.Int64(1), - SnapshotId: aws.String("String"), - VolumeSize: aws.Int64(1), - VolumeType: aws.String("VolumeType"), - }, - NoDevice: aws.String("String"), - VirtualName: aws.String("String"), - }, - // More values... - }, - EbsOptimized: aws.Bool(true), - IamInstanceProfile: &ec2.IamInstanceProfileSpecification{ - Arn: aws.String("String"), - Name: aws.String("String"), - }, - ImageId: aws.String("String"), - InstanceType: aws.String("InstanceType"), - KernelId: aws.String("String"), - KeyName: aws.String("String"), - Monitoring: &ec2.SpotFleetMonitoring{ - Enabled: aws.Bool(true), - }, - NetworkInterfaces: []*ec2.InstanceNetworkInterfaceSpecification{ - { // Required - AssociatePublicIpAddress: aws.Bool(true), - DeleteOnTermination: aws.Bool(true), - Description: aws.String("String"), - DeviceIndex: aws.Int64(1), - Groups: []*string{ - aws.String("String"), // Required - // More values... - }, - NetworkInterfaceId: aws.String("String"), - PrivateIpAddress: aws.String("String"), - PrivateIpAddresses: []*ec2.PrivateIpAddressSpecification{ - { // Required - PrivateIpAddress: aws.String("String"), // Required - Primary: aws.Bool(true), - }, - // More values... - }, - SecondaryPrivateIpAddressCount: aws.Int64(1), - SubnetId: aws.String("String"), - }, - // More values... - }, - Placement: &ec2.SpotPlacement{ - AvailabilityZone: aws.String("String"), - GroupName: aws.String("String"), - }, - RamdiskId: aws.String("String"), - SecurityGroups: []*ec2.GroupIdentifier{ - { // Required - GroupId: aws.String("String"), - GroupName: aws.String("String"), - }, - // More values... - }, - SpotPrice: aws.String("String"), - SubnetId: aws.String("String"), - UserData: aws.String("String"), - WeightedCapacity: aws.Float64(1.0), - }, - // More values... - }, - SpotPrice: aws.String("String"), // Required - TargetCapacity: aws.Int64(1), // Required - AllocationStrategy: aws.String("AllocationStrategy"), - ClientToken: aws.String("String"), - ExcessCapacityTerminationPolicy: aws.String("ExcessCapacityTerminationPolicy"), - FulfilledCapacity: aws.Float64(1.0), - TerminateInstancesWithExpiration: aws.Bool(true), - Type: aws.String("FleetType"), - ValidFrom: aws.Time(time.Now()), - ValidUntil: aws.Time(time.Now()), - }, - DryRun: aws.Bool(true), - } - resp, err := svc.RequestSpotFleet(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RequestSpotInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RequestSpotInstancesInput{ - SpotPrice: aws.String("String"), // Required - AvailabilityZoneGroup: aws.String("String"), - BlockDurationMinutes: aws.Int64(1), - ClientToken: aws.String("String"), - DryRun: aws.Bool(true), - InstanceCount: aws.Int64(1), - LaunchGroup: aws.String("String"), - LaunchSpecification: &ec2.RequestSpotLaunchSpecification{ - AddressingType: aws.String("String"), - BlockDeviceMappings: []*ec2.BlockDeviceMapping{ - { // Required - DeviceName: aws.String("String"), - Ebs: &ec2.EbsBlockDevice{ - DeleteOnTermination: aws.Bool(true), - Encrypted: aws.Bool(true), - Iops: aws.Int64(1), - SnapshotId: aws.String("String"), - VolumeSize: aws.Int64(1), - VolumeType: aws.String("VolumeType"), - }, - NoDevice: aws.String("String"), - VirtualName: aws.String("String"), - }, - // More values... - }, - EbsOptimized: aws.Bool(true), - IamInstanceProfile: &ec2.IamInstanceProfileSpecification{ - Arn: aws.String("String"), - Name: aws.String("String"), - }, - ImageId: aws.String("String"), - InstanceType: aws.String("InstanceType"), - KernelId: aws.String("String"), - KeyName: aws.String("String"), - Monitoring: &ec2.RunInstancesMonitoringEnabled{ - Enabled: aws.Bool(true), // Required - }, - NetworkInterfaces: []*ec2.InstanceNetworkInterfaceSpecification{ - { // Required - AssociatePublicIpAddress: aws.Bool(true), - DeleteOnTermination: aws.Bool(true), - Description: aws.String("String"), - DeviceIndex: aws.Int64(1), - Groups: []*string{ - aws.String("String"), // Required - // More values... - }, - NetworkInterfaceId: aws.String("String"), - PrivateIpAddress: aws.String("String"), - PrivateIpAddresses: []*ec2.PrivateIpAddressSpecification{ - { // Required - PrivateIpAddress: aws.String("String"), // Required - Primary: aws.Bool(true), - }, - // More values... - }, - SecondaryPrivateIpAddressCount: aws.Int64(1), - SubnetId: aws.String("String"), - }, - // More values... - }, - Placement: &ec2.SpotPlacement{ - AvailabilityZone: aws.String("String"), - GroupName: aws.String("String"), - }, - RamdiskId: aws.String("String"), - SecurityGroupIds: []*string{ - aws.String("String"), // Required - // More values... - }, - SecurityGroups: []*string{ - aws.String("String"), // Required - // More values... - }, - SubnetId: aws.String("String"), - UserData: aws.String("String"), - }, - Type: aws.String("SpotInstanceType"), - ValidFrom: aws.Time(time.Now()), - ValidUntil: aws.Time(time.Now()), - } - resp, err := svc.RequestSpotInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ResetImageAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ResetImageAttributeInput{ - Attribute: aws.String("ResetImageAttributeName"), // Required - ImageId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.ResetImageAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ResetInstanceAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ResetInstanceAttributeInput{ - Attribute: aws.String("InstanceAttributeName"), // Required - InstanceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.ResetInstanceAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ResetNetworkInterfaceAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ResetNetworkInterfaceAttributeInput{ - NetworkInterfaceId: aws.String("String"), // Required - DryRun: aws.Bool(true), - SourceDestCheck: aws.String("String"), - } - resp, err := svc.ResetNetworkInterfaceAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_ResetSnapshotAttribute() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.ResetSnapshotAttributeInput{ - Attribute: aws.String("SnapshotAttributeName"), // Required - SnapshotId: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.ResetSnapshotAttribute(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RestoreAddressToClassic() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RestoreAddressToClassicInput{ - PublicIp: aws.String("String"), // Required - DryRun: aws.Bool(true), - } - resp, err := svc.RestoreAddressToClassic(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RevokeSecurityGroupEgress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RevokeSecurityGroupEgressInput{ - GroupId: aws.String("String"), // Required - CidrIp: aws.String("String"), - DryRun: aws.Bool(true), - FromPort: aws.Int64(1), - IpPermissions: []*ec2.IpPermission{ - { // Required - FromPort: aws.Int64(1), - IpProtocol: aws.String("String"), - IpRanges: []*ec2.IpRange{ - { // Required - CidrIp: aws.String("String"), - }, - // More values... - }, - PrefixListIds: []*ec2.PrefixListId{ - { // Required - PrefixListId: aws.String("String"), - }, - // More values... - }, - ToPort: aws.Int64(1), - UserIdGroupPairs: []*ec2.UserIdGroupPair{ - { // Required - GroupId: aws.String("String"), - GroupName: aws.String("String"), - PeeringStatus: aws.String("String"), - UserId: aws.String("String"), - VpcId: aws.String("String"), - VpcPeeringConnectionId: aws.String("String"), - }, - // More values... - }, - }, - // More values... - }, - IpProtocol: aws.String("String"), - SourceSecurityGroupName: aws.String("String"), - SourceSecurityGroupOwnerId: aws.String("String"), - ToPort: aws.Int64(1), - } - resp, err := svc.RevokeSecurityGroupEgress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RevokeSecurityGroupIngress() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RevokeSecurityGroupIngressInput{ - CidrIp: aws.String("String"), - DryRun: aws.Bool(true), - FromPort: aws.Int64(1), - GroupId: aws.String("String"), - GroupName: aws.String("String"), - IpPermissions: []*ec2.IpPermission{ - { // Required - FromPort: aws.Int64(1), - IpProtocol: aws.String("String"), - IpRanges: []*ec2.IpRange{ - { // Required - CidrIp: aws.String("String"), - }, - // More values... - }, - PrefixListIds: []*ec2.PrefixListId{ - { // Required - PrefixListId: aws.String("String"), - }, - // More values... - }, - ToPort: aws.Int64(1), - UserIdGroupPairs: []*ec2.UserIdGroupPair{ - { // Required - GroupId: aws.String("String"), - GroupName: aws.String("String"), - PeeringStatus: aws.String("String"), - UserId: aws.String("String"), - VpcId: aws.String("String"), - VpcPeeringConnectionId: aws.String("String"), - }, - // More values... - }, - }, - // More values... - }, - IpProtocol: aws.String("String"), - SourceSecurityGroupName: aws.String("String"), - SourceSecurityGroupOwnerId: aws.String("String"), - ToPort: aws.Int64(1), - } - resp, err := svc.RevokeSecurityGroupIngress(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RunInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RunInstancesInput{ - ImageId: aws.String("String"), // Required - MaxCount: aws.Int64(1), // Required - MinCount: aws.Int64(1), // Required - AdditionalInfo: aws.String("String"), - BlockDeviceMappings: []*ec2.BlockDeviceMapping{ - { // Required - DeviceName: aws.String("String"), - Ebs: &ec2.EbsBlockDevice{ - DeleteOnTermination: aws.Bool(true), - Encrypted: aws.Bool(true), - Iops: aws.Int64(1), - SnapshotId: aws.String("String"), - VolumeSize: aws.Int64(1), - VolumeType: aws.String("VolumeType"), - }, - NoDevice: aws.String("String"), - VirtualName: aws.String("String"), - }, - // More values... - }, - ClientToken: aws.String("String"), - DisableApiTermination: aws.Bool(true), - DryRun: aws.Bool(true), - EbsOptimized: aws.Bool(true), - IamInstanceProfile: &ec2.IamInstanceProfileSpecification{ - Arn: aws.String("String"), - Name: aws.String("String"), - }, - InstanceInitiatedShutdownBehavior: aws.String("ShutdownBehavior"), - InstanceType: aws.String("InstanceType"), - KernelId: aws.String("String"), - KeyName: aws.String("String"), - Monitoring: &ec2.RunInstancesMonitoringEnabled{ - Enabled: aws.Bool(true), // Required - }, - NetworkInterfaces: []*ec2.InstanceNetworkInterfaceSpecification{ - { // Required - AssociatePublicIpAddress: aws.Bool(true), - DeleteOnTermination: aws.Bool(true), - Description: aws.String("String"), - DeviceIndex: aws.Int64(1), - Groups: []*string{ - aws.String("String"), // Required - // More values... - }, - NetworkInterfaceId: aws.String("String"), - PrivateIpAddress: aws.String("String"), - PrivateIpAddresses: []*ec2.PrivateIpAddressSpecification{ - { // Required - PrivateIpAddress: aws.String("String"), // Required - Primary: aws.Bool(true), - }, - // More values... - }, - SecondaryPrivateIpAddressCount: aws.Int64(1), - SubnetId: aws.String("String"), - }, - // More values... - }, - Placement: &ec2.Placement{ - Affinity: aws.String("String"), - AvailabilityZone: aws.String("String"), - GroupName: aws.String("String"), - HostId: aws.String("String"), - Tenancy: aws.String("Tenancy"), - }, - PrivateIpAddress: aws.String("String"), - RamdiskId: aws.String("String"), - SecurityGroupIds: []*string{ - aws.String("String"), // Required - // More values... - }, - SecurityGroups: []*string{ - aws.String("String"), // Required - // More values... - }, - SubnetId: aws.String("String"), - UserData: aws.String("String"), - } - resp, err := svc.RunInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_RunScheduledInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.RunScheduledInstancesInput{ - LaunchSpecification: &ec2.ScheduledInstancesLaunchSpecification{ // Required - ImageId: aws.String("String"), // Required - BlockDeviceMappings: []*ec2.ScheduledInstancesBlockDeviceMapping{ - { // Required - DeviceName: aws.String("String"), - Ebs: &ec2.ScheduledInstancesEbs{ - DeleteOnTermination: aws.Bool(true), - Encrypted: aws.Bool(true), - Iops: aws.Int64(1), - SnapshotId: aws.String("String"), - VolumeSize: aws.Int64(1), - VolumeType: aws.String("String"), - }, - NoDevice: aws.String("String"), - VirtualName: aws.String("String"), - }, - // More values... - }, - EbsOptimized: aws.Bool(true), - IamInstanceProfile: &ec2.ScheduledInstancesIamInstanceProfile{ - Arn: aws.String("String"), - Name: aws.String("String"), - }, - InstanceType: aws.String("String"), - KernelId: aws.String("String"), - KeyName: aws.String("String"), - Monitoring: &ec2.ScheduledInstancesMonitoring{ - Enabled: aws.Bool(true), - }, - NetworkInterfaces: []*ec2.ScheduledInstancesNetworkInterface{ - { // Required - AssociatePublicIpAddress: aws.Bool(true), - DeleteOnTermination: aws.Bool(true), - Description: aws.String("String"), - DeviceIndex: aws.Int64(1), - Groups: []*string{ - aws.String("String"), // Required - // More values... - }, - NetworkInterfaceId: aws.String("String"), - PrivateIpAddress: aws.String("String"), - PrivateIpAddressConfigs: []*ec2.ScheduledInstancesPrivateIpAddressConfig{ - { // Required - Primary: aws.Bool(true), - PrivateIpAddress: aws.String("String"), - }, - // More values... - }, - SecondaryPrivateIpAddressCount: aws.Int64(1), - SubnetId: aws.String("String"), - }, - // More values... - }, - Placement: &ec2.ScheduledInstancesPlacement{ - AvailabilityZone: aws.String("String"), - GroupName: aws.String("String"), - }, - RamdiskId: aws.String("String"), - SecurityGroupIds: []*string{ - aws.String("String"), // Required - // More values... - }, - SubnetId: aws.String("String"), - UserData: aws.String("String"), - }, - ScheduledInstanceId: aws.String("String"), // Required - ClientToken: aws.String("String"), - DryRun: aws.Bool(true), - InstanceCount: aws.Int64(1), - } - resp, err := svc.RunScheduledInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_StartInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.StartInstancesInput{ - InstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - AdditionalInfo: aws.String("String"), - DryRun: aws.Bool(true), - } - resp, err := svc.StartInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_StopInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.StopInstancesInput{ - InstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - Force: aws.Bool(true), - } - resp, err := svc.StopInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_TerminateInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.TerminateInstancesInput{ - InstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.TerminateInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_UnassignPrivateIpAddresses() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.UnassignPrivateIpAddressesInput{ - NetworkInterfaceId: aws.String("String"), // Required - PrivateIpAddresses: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.UnassignPrivateIpAddresses(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleEC2_UnmonitorInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := ec2.New(sess) - - params := &ec2.UnmonitorInstancesInput{ - InstanceIds: []*string{ // Required - aws.String("String"), // Required - // More values... - }, - DryRun: aws.Bool(true), - } - resp, err := svc.UnmonitorInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/ec2/service.go b/vendor/github.com/aws/aws-sdk-go/service/ec2/service.go deleted file mode 100644 index b30c5e0d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/ec2/service.go +++ /dev/null @@ -1,89 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package ec2 - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/ec2query" -) - -// Amazon Elastic Compute Cloud (Amazon EC2) provides resizable computing capacity -// in the Amazon Web Services (AWS) cloud. Using Amazon EC2 eliminates your -// need to invest in hardware up front, so you can develop and deploy applications -// faster. -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type EC2 struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "ec2" - -// New creates a new instance of the EC2 client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a EC2 client from just a session. -// svc := ec2.New(mySession) -// -// // Create a EC2 client with additional configuration -// svc := ec2.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *EC2 { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *EC2 { - svc := &EC2{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2016-09-15", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(ec2query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(ec2query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(ec2query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(ec2query.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a EC2 operation and runs any -// custom request initialization. -func (c *EC2) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/ec2/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/ec2/waiters.go deleted file mode 100644 index 94fab6d8..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/ec2/waiters.go +++ /dev/null @@ -1,1027 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package ec2 - -import ( - "github.com/aws/aws-sdk-go/private/waiter" -) - -// WaitUntilBundleTaskComplete uses the Amazon EC2 API operation -// DescribeBundleTasks to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilBundleTaskComplete(input *DescribeBundleTasksInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeBundleTasks", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "BundleTasks[].State", - Expected: "complete", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "BundleTasks[].State", - Expected: "failed", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilConversionTaskCancelled uses the Amazon EC2 API operation -// DescribeConversionTasks to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilConversionTaskCancelled(input *DescribeConversionTasksInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeConversionTasks", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "ConversionTasks[].State", - Expected: "cancelled", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilConversionTaskCompleted uses the Amazon EC2 API operation -// DescribeConversionTasks to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilConversionTaskCompleted(input *DescribeConversionTasksInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeConversionTasks", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "ConversionTasks[].State", - Expected: "completed", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "ConversionTasks[].State", - Expected: "cancelled", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "ConversionTasks[].State", - Expected: "cancelling", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilConversionTaskDeleted uses the Amazon EC2 API operation -// DescribeConversionTasks to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilConversionTaskDeleted(input *DescribeConversionTasksInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeConversionTasks", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "ConversionTasks[].State", - Expected: "deleted", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilCustomerGatewayAvailable uses the Amazon EC2 API operation -// DescribeCustomerGateways to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilCustomerGatewayAvailable(input *DescribeCustomerGatewaysInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeCustomerGateways", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "CustomerGateways[].State", - Expected: "available", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "CustomerGateways[].State", - Expected: "deleted", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "CustomerGateways[].State", - Expected: "deleting", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilExportTaskCancelled uses the Amazon EC2 API operation -// DescribeExportTasks to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilExportTaskCancelled(input *DescribeExportTasksInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeExportTasks", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "ExportTasks[].State", - Expected: "cancelled", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilExportTaskCompleted uses the Amazon EC2 API operation -// DescribeExportTasks to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilExportTaskCompleted(input *DescribeExportTasksInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeExportTasks", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "ExportTasks[].State", - Expected: "completed", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilImageAvailable uses the Amazon EC2 API operation -// DescribeImages to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilImageAvailable(input *DescribeImagesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeImages", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Images[].State", - Expected: "available", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Images[].State", - Expected: "failed", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilImageExists uses the Amazon EC2 API operation -// DescribeImages to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilImageExists(input *DescribeImagesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeImages", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "length(Images[]) > `0`", - Expected: true, - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "InvalidAMIID.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilInstanceExists uses the Amazon EC2 API operation -// DescribeInstances to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilInstanceExists(input *DescribeInstancesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeInstances", - Delay: 5, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "length(Reservations[]) > `0`", - Expected: true, - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "InvalidInstanceID.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilInstanceRunning uses the Amazon EC2 API operation -// DescribeInstances to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilInstanceRunning(input *DescribeInstancesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeInstances", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Reservations[].Instances[].State.Name", - Expected: "running", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Reservations[].Instances[].State.Name", - Expected: "shutting-down", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Reservations[].Instances[].State.Name", - Expected: "terminated", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Reservations[].Instances[].State.Name", - Expected: "stopping", - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "InvalidInstanceID.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilInstanceStatusOk uses the Amazon EC2 API operation -// DescribeInstanceStatus to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilInstanceStatusOk(input *DescribeInstanceStatusInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeInstanceStatus", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "InstanceStatuses[].InstanceStatus.Status", - Expected: "ok", - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "InvalidInstanceID.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilInstanceStopped uses the Amazon EC2 API operation -// DescribeInstances to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilInstanceStopped(input *DescribeInstancesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeInstances", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Reservations[].Instances[].State.Name", - Expected: "stopped", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Reservations[].Instances[].State.Name", - Expected: "pending", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Reservations[].Instances[].State.Name", - Expected: "terminated", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilInstanceTerminated uses the Amazon EC2 API operation -// DescribeInstances to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilInstanceTerminated(input *DescribeInstancesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeInstances", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Reservations[].Instances[].State.Name", - Expected: "terminated", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Reservations[].Instances[].State.Name", - Expected: "pending", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Reservations[].Instances[].State.Name", - Expected: "stopping", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilKeyPairExists uses the Amazon EC2 API operation -// DescribeKeyPairs to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilKeyPairExists(input *DescribeKeyPairsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeKeyPairs", - Delay: 5, - MaxAttempts: 6, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "length(KeyPairs[].KeyName) > `0`", - Expected: true, - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "InvalidKeyPair.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilNatGatewayAvailable uses the Amazon EC2 API operation -// DescribeNatGateways to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilNatGatewayAvailable(input *DescribeNatGatewaysInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeNatGateways", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "NatGateways[].State", - Expected: "available", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "NatGateways[].State", - Expected: "failed", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "NatGateways[].State", - Expected: "deleting", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "NatGateways[].State", - Expected: "deleted", - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "NatGatewayNotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilNetworkInterfaceAvailable uses the Amazon EC2 API operation -// DescribeNetworkInterfaces to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilNetworkInterfaceAvailable(input *DescribeNetworkInterfacesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeNetworkInterfaces", - Delay: 20, - MaxAttempts: 10, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "NetworkInterfaces[].Status", - Expected: "available", - }, - { - State: "failure", - Matcher: "error", - Argument: "", - Expected: "InvalidNetworkInterfaceID.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilPasswordDataAvailable uses the Amazon EC2 API operation -// GetPasswordData to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilPasswordDataAvailable(input *GetPasswordDataInput) error { - waiterCfg := waiter.Config{ - Operation: "GetPasswordData", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "length(PasswordData) > `0`", - Expected: true, - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilSnapshotCompleted uses the Amazon EC2 API operation -// DescribeSnapshots to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilSnapshotCompleted(input *DescribeSnapshotsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeSnapshots", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Snapshots[].State", - Expected: "completed", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilSpotInstanceRequestFulfilled uses the Amazon EC2 API operation -// DescribeSpotInstanceRequests to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilSpotInstanceRequestFulfilled(input *DescribeSpotInstanceRequestsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeSpotInstanceRequests", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "SpotInstanceRequests[].Status.Code", - Expected: "fulfilled", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "SpotInstanceRequests[].Status.Code", - Expected: "schedule-expired", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "SpotInstanceRequests[].Status.Code", - Expected: "canceled-before-fulfillment", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "SpotInstanceRequests[].Status.Code", - Expected: "bad-parameters", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "SpotInstanceRequests[].Status.Code", - Expected: "system-error", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilSubnetAvailable uses the Amazon EC2 API operation -// DescribeSubnets to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilSubnetAvailable(input *DescribeSubnetsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeSubnets", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Subnets[].State", - Expected: "available", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilSystemStatusOk uses the Amazon EC2 API operation -// DescribeInstanceStatus to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilSystemStatusOk(input *DescribeInstanceStatusInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeInstanceStatus", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "InstanceStatuses[].SystemStatus.Status", - Expected: "ok", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVolumeAvailable uses the Amazon EC2 API operation -// DescribeVolumes to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVolumeAvailable(input *DescribeVolumesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVolumes", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Volumes[].State", - Expected: "available", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Volumes[].State", - Expected: "deleted", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVolumeDeleted uses the Amazon EC2 API operation -// DescribeVolumes to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVolumeDeleted(input *DescribeVolumesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVolumes", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Volumes[].State", - Expected: "deleted", - }, - { - State: "success", - Matcher: "error", - Argument: "", - Expected: "InvalidVolume.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVolumeInUse uses the Amazon EC2 API operation -// DescribeVolumes to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVolumeInUse(input *DescribeVolumesInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVolumes", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Volumes[].State", - Expected: "in-use", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "Volumes[].State", - Expected: "deleted", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVpcAvailable uses the Amazon EC2 API operation -// DescribeVpcs to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVpcAvailable(input *DescribeVpcsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVpcs", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "Vpcs[].State", - Expected: "available", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVpcExists uses the Amazon EC2 API operation -// DescribeVpcs to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVpcExists(input *DescribeVpcsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVpcs", - Delay: 1, - MaxAttempts: 5, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 200, - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "InvalidVpcID.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVpcPeeringConnectionExists uses the Amazon EC2 API operation -// DescribeVpcPeeringConnections to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVpcPeeringConnectionExists(input *DescribeVpcPeeringConnectionsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVpcPeeringConnections", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 200, - }, - { - State: "retry", - Matcher: "error", - Argument: "", - Expected: "InvalidVpcPeeringConnectionID.NotFound", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVpnConnectionAvailable uses the Amazon EC2 API operation -// DescribeVpnConnections to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVpnConnectionAvailable(input *DescribeVpnConnectionsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVpnConnections", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "VpnConnections[].State", - Expected: "available", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "VpnConnections[].State", - Expected: "deleting", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "VpnConnections[].State", - Expected: "deleted", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilVpnConnectionDeleted uses the Amazon EC2 API operation -// DescribeVpnConnections to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *EC2) WaitUntilVpnConnectionDeleted(input *DescribeVpnConnectionsInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeVpnConnections", - Delay: 15, - MaxAttempts: 40, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "pathAll", - Argument: "VpnConnections[].State", - Expected: "deleted", - }, - { - State: "failure", - Matcher: "pathAny", - Argument: "VpnConnections[].State", - Expected: "pending", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/api.go b/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/api.go deleted file mode 100644 index 11e1f75d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/api.go +++ /dev/null @@ -1,4989 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package elastictranscoder provides a client for Amazon Elastic Transcoder. -package elastictranscoder - -import ( - "fmt" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -const opCancelJob = "CancelJob" - -// CancelJobRequest generates a "aws/request.Request" representing the -// client's request for the CancelJob operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CancelJob method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CancelJobRequest method. -// req, resp := client.CancelJobRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) CancelJobRequest(input *CancelJobInput) (req *request.Request, output *CancelJobOutput) { - op := &request.Operation{ - Name: opCancelJob, - HTTPMethod: "DELETE", - HTTPPath: "/2012-09-25/jobs/{Id}", - } - - if input == nil { - input = &CancelJobInput{} - } - - req = c.newRequest(op, input, output) - output = &CancelJobOutput{} - req.Data = output - return -} - -// The CancelJob operation cancels an unfinished job. -// -// You can only cancel a job that has a status of Submitted. To prevent a pipeline -// from starting to process a job while you're getting the job identifier, use -// UpdatePipelineStatus to temporarily pause the pipeline. -func (c *ElasticTranscoder) CancelJob(input *CancelJobInput) (*CancelJobOutput, error) { - req, out := c.CancelJobRequest(input) - err := req.Send() - return out, err -} - -const opCreateJob = "CreateJob" - -// CreateJobRequest generates a "aws/request.Request" representing the -// client's request for the CreateJob operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateJob method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateJobRequest method. -// req, resp := client.CreateJobRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) CreateJobRequest(input *CreateJobInput) (req *request.Request, output *CreateJobResponse) { - op := &request.Operation{ - Name: opCreateJob, - HTTPMethod: "POST", - HTTPPath: "/2012-09-25/jobs", - } - - if input == nil { - input = &CreateJobInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateJobResponse{} - req.Data = output - return -} - -// When you create a job, Elastic Transcoder returns JSON data that includes -// the values that you specified plus information about the job that is created. -// -// If you have specified more than one output for your jobs (for example, one -// output for the Kindle Fire and another output for the Apple iPhone 4s), you -// currently must use the Elastic Transcoder API to list the jobs (as opposed -// to the AWS Console). -func (c *ElasticTranscoder) CreateJob(input *CreateJobInput) (*CreateJobResponse, error) { - req, out := c.CreateJobRequest(input) - err := req.Send() - return out, err -} - -const opCreatePipeline = "CreatePipeline" - -// CreatePipelineRequest generates a "aws/request.Request" representing the -// client's request for the CreatePipeline operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreatePipeline method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreatePipelineRequest method. -// req, resp := client.CreatePipelineRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) CreatePipelineRequest(input *CreatePipelineInput) (req *request.Request, output *CreatePipelineOutput) { - op := &request.Operation{ - Name: opCreatePipeline, - HTTPMethod: "POST", - HTTPPath: "/2012-09-25/pipelines", - } - - if input == nil { - input = &CreatePipelineInput{} - } - - req = c.newRequest(op, input, output) - output = &CreatePipelineOutput{} - req.Data = output - return -} - -// The CreatePipeline operation creates a pipeline with settings that you specify. -func (c *ElasticTranscoder) CreatePipeline(input *CreatePipelineInput) (*CreatePipelineOutput, error) { - req, out := c.CreatePipelineRequest(input) - err := req.Send() - return out, err -} - -const opCreatePreset = "CreatePreset" - -// CreatePresetRequest generates a "aws/request.Request" representing the -// client's request for the CreatePreset operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreatePreset method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreatePresetRequest method. -// req, resp := client.CreatePresetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) CreatePresetRequest(input *CreatePresetInput) (req *request.Request, output *CreatePresetOutput) { - op := &request.Operation{ - Name: opCreatePreset, - HTTPMethod: "POST", - HTTPPath: "/2012-09-25/presets", - } - - if input == nil { - input = &CreatePresetInput{} - } - - req = c.newRequest(op, input, output) - output = &CreatePresetOutput{} - req.Data = output - return -} - -// The CreatePreset operation creates a preset with settings that you specify. -// -// Elastic Transcoder checks the CreatePreset settings to ensure that they -// meet Elastic Transcoder requirements and to determine whether they comply -// with H.264 standards. If your settings are not valid for Elastic Transcoder, -// Elastic Transcoder returns an HTTP 400 response (ValidationException) and -// does not create the preset. If the settings are valid for Elastic Transcoder -// but aren't strictly compliant with the H.264 standard, Elastic Transcoder -// creates the preset and returns a warning message in the response. This helps -// you determine whether your settings comply with the H.264 standard while -// giving you greater flexibility with respect to the video that Elastic Transcoder -// produces. Elastic Transcoder uses the H.264 video-compression format. For -// more information, see the International Telecommunication Union publication -// Recommendation ITU-T H.264: Advanced video coding for generic audiovisual -// services. -func (c *ElasticTranscoder) CreatePreset(input *CreatePresetInput) (*CreatePresetOutput, error) { - req, out := c.CreatePresetRequest(input) - err := req.Send() - return out, err -} - -const opDeletePipeline = "DeletePipeline" - -// DeletePipelineRequest generates a "aws/request.Request" representing the -// client's request for the DeletePipeline operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeletePipeline method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeletePipelineRequest method. -// req, resp := client.DeletePipelineRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) DeletePipelineRequest(input *DeletePipelineInput) (req *request.Request, output *DeletePipelineOutput) { - op := &request.Operation{ - Name: opDeletePipeline, - HTTPMethod: "DELETE", - HTTPPath: "/2012-09-25/pipelines/{Id}", - } - - if input == nil { - input = &DeletePipelineInput{} - } - - req = c.newRequest(op, input, output) - output = &DeletePipelineOutput{} - req.Data = output - return -} - -// The DeletePipeline operation removes a pipeline. -// -// You can only delete a pipeline that has never been used or that is not -// currently in use (doesn't contain any active jobs). If the pipeline is currently -// in use, DeletePipeline returns an error. -func (c *ElasticTranscoder) DeletePipeline(input *DeletePipelineInput) (*DeletePipelineOutput, error) { - req, out := c.DeletePipelineRequest(input) - err := req.Send() - return out, err -} - -const opDeletePreset = "DeletePreset" - -// DeletePresetRequest generates a "aws/request.Request" representing the -// client's request for the DeletePreset operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeletePreset method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeletePresetRequest method. -// req, resp := client.DeletePresetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) DeletePresetRequest(input *DeletePresetInput) (req *request.Request, output *DeletePresetOutput) { - op := &request.Operation{ - Name: opDeletePreset, - HTTPMethod: "DELETE", - HTTPPath: "/2012-09-25/presets/{Id}", - } - - if input == nil { - input = &DeletePresetInput{} - } - - req = c.newRequest(op, input, output) - output = &DeletePresetOutput{} - req.Data = output - return -} - -// The DeletePreset operation removes a preset that you've added in an AWS region. -// -// You can't delete the default presets that are included with Elastic Transcoder. -func (c *ElasticTranscoder) DeletePreset(input *DeletePresetInput) (*DeletePresetOutput, error) { - req, out := c.DeletePresetRequest(input) - err := req.Send() - return out, err -} - -const opListJobsByPipeline = "ListJobsByPipeline" - -// ListJobsByPipelineRequest generates a "aws/request.Request" representing the -// client's request for the ListJobsByPipeline operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListJobsByPipeline method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListJobsByPipelineRequest method. -// req, resp := client.ListJobsByPipelineRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) ListJobsByPipelineRequest(input *ListJobsByPipelineInput) (req *request.Request, output *ListJobsByPipelineOutput) { - op := &request.Operation{ - Name: opListJobsByPipeline, - HTTPMethod: "GET", - HTTPPath: "/2012-09-25/jobsByPipeline/{PipelineId}", - Paginator: &request.Paginator{ - InputTokens: []string{"PageToken"}, - OutputTokens: []string{"NextPageToken"}, - LimitToken: "", - TruncationToken: "", - }, - } - - if input == nil { - input = &ListJobsByPipelineInput{} - } - - req = c.newRequest(op, input, output) - output = &ListJobsByPipelineOutput{} - req.Data = output - return -} - -// The ListJobsByPipeline operation gets a list of the jobs currently in a pipeline. -// -// Elastic Transcoder returns all of the jobs currently in the specified pipeline. -// The response body contains one element for each job that satisfies the search -// criteria. -func (c *ElasticTranscoder) ListJobsByPipeline(input *ListJobsByPipelineInput) (*ListJobsByPipelineOutput, error) { - req, out := c.ListJobsByPipelineRequest(input) - err := req.Send() - return out, err -} - -// ListJobsByPipelinePages iterates over the pages of a ListJobsByPipeline operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListJobsByPipeline method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListJobsByPipeline operation. -// pageNum := 0 -// err := client.ListJobsByPipelinePages(params, -// func(page *ListJobsByPipelineOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *ElasticTranscoder) ListJobsByPipelinePages(input *ListJobsByPipelineInput, fn func(p *ListJobsByPipelineOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListJobsByPipelineRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListJobsByPipelineOutput), lastPage) - }) -} - -const opListJobsByStatus = "ListJobsByStatus" - -// ListJobsByStatusRequest generates a "aws/request.Request" representing the -// client's request for the ListJobsByStatus operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListJobsByStatus method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListJobsByStatusRequest method. -// req, resp := client.ListJobsByStatusRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) ListJobsByStatusRequest(input *ListJobsByStatusInput) (req *request.Request, output *ListJobsByStatusOutput) { - op := &request.Operation{ - Name: opListJobsByStatus, - HTTPMethod: "GET", - HTTPPath: "/2012-09-25/jobsByStatus/{Status}", - Paginator: &request.Paginator{ - InputTokens: []string{"PageToken"}, - OutputTokens: []string{"NextPageToken"}, - LimitToken: "", - TruncationToken: "", - }, - } - - if input == nil { - input = &ListJobsByStatusInput{} - } - - req = c.newRequest(op, input, output) - output = &ListJobsByStatusOutput{} - req.Data = output - return -} - -// The ListJobsByStatus operation gets a list of jobs that have a specified -// status. The response body contains one element for each job that satisfies -// the search criteria. -func (c *ElasticTranscoder) ListJobsByStatus(input *ListJobsByStatusInput) (*ListJobsByStatusOutput, error) { - req, out := c.ListJobsByStatusRequest(input) - err := req.Send() - return out, err -} - -// ListJobsByStatusPages iterates over the pages of a ListJobsByStatus operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListJobsByStatus method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListJobsByStatus operation. -// pageNum := 0 -// err := client.ListJobsByStatusPages(params, -// func(page *ListJobsByStatusOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *ElasticTranscoder) ListJobsByStatusPages(input *ListJobsByStatusInput, fn func(p *ListJobsByStatusOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListJobsByStatusRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListJobsByStatusOutput), lastPage) - }) -} - -const opListPipelines = "ListPipelines" - -// ListPipelinesRequest generates a "aws/request.Request" representing the -// client's request for the ListPipelines operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListPipelines method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListPipelinesRequest method. -// req, resp := client.ListPipelinesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) ListPipelinesRequest(input *ListPipelinesInput) (req *request.Request, output *ListPipelinesOutput) { - op := &request.Operation{ - Name: opListPipelines, - HTTPMethod: "GET", - HTTPPath: "/2012-09-25/pipelines", - Paginator: &request.Paginator{ - InputTokens: []string{"PageToken"}, - OutputTokens: []string{"NextPageToken"}, - LimitToken: "", - TruncationToken: "", - }, - } - - if input == nil { - input = &ListPipelinesInput{} - } - - req = c.newRequest(op, input, output) - output = &ListPipelinesOutput{} - req.Data = output - return -} - -// The ListPipelines operation gets a list of the pipelines associated with -// the current AWS account. -func (c *ElasticTranscoder) ListPipelines(input *ListPipelinesInput) (*ListPipelinesOutput, error) { - req, out := c.ListPipelinesRequest(input) - err := req.Send() - return out, err -} - -// ListPipelinesPages iterates over the pages of a ListPipelines operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListPipelines method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListPipelines operation. -// pageNum := 0 -// err := client.ListPipelinesPages(params, -// func(page *ListPipelinesOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *ElasticTranscoder) ListPipelinesPages(input *ListPipelinesInput, fn func(p *ListPipelinesOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListPipelinesRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListPipelinesOutput), lastPage) - }) -} - -const opListPresets = "ListPresets" - -// ListPresetsRequest generates a "aws/request.Request" representing the -// client's request for the ListPresets operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListPresets method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListPresetsRequest method. -// req, resp := client.ListPresetsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) ListPresetsRequest(input *ListPresetsInput) (req *request.Request, output *ListPresetsOutput) { - op := &request.Operation{ - Name: opListPresets, - HTTPMethod: "GET", - HTTPPath: "/2012-09-25/presets", - Paginator: &request.Paginator{ - InputTokens: []string{"PageToken"}, - OutputTokens: []string{"NextPageToken"}, - LimitToken: "", - TruncationToken: "", - }, - } - - if input == nil { - input = &ListPresetsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListPresetsOutput{} - req.Data = output - return -} - -// The ListPresets operation gets a list of the default presets included with -// Elastic Transcoder and the presets that you've added in an AWS region. -func (c *ElasticTranscoder) ListPresets(input *ListPresetsInput) (*ListPresetsOutput, error) { - req, out := c.ListPresetsRequest(input) - err := req.Send() - return out, err -} - -// ListPresetsPages iterates over the pages of a ListPresets operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListPresets method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListPresets operation. -// pageNum := 0 -// err := client.ListPresetsPages(params, -// func(page *ListPresetsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *ElasticTranscoder) ListPresetsPages(input *ListPresetsInput, fn func(p *ListPresetsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListPresetsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListPresetsOutput), lastPage) - }) -} - -const opReadJob = "ReadJob" - -// ReadJobRequest generates a "aws/request.Request" representing the -// client's request for the ReadJob operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReadJob method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReadJobRequest method. -// req, resp := client.ReadJobRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) ReadJobRequest(input *ReadJobInput) (req *request.Request, output *ReadJobOutput) { - op := &request.Operation{ - Name: opReadJob, - HTTPMethod: "GET", - HTTPPath: "/2012-09-25/jobs/{Id}", - } - - if input == nil { - input = &ReadJobInput{} - } - - req = c.newRequest(op, input, output) - output = &ReadJobOutput{} - req.Data = output - return -} - -// The ReadJob operation returns detailed information about a job. -func (c *ElasticTranscoder) ReadJob(input *ReadJobInput) (*ReadJobOutput, error) { - req, out := c.ReadJobRequest(input) - err := req.Send() - return out, err -} - -const opReadPipeline = "ReadPipeline" - -// ReadPipelineRequest generates a "aws/request.Request" representing the -// client's request for the ReadPipeline operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReadPipeline method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReadPipelineRequest method. -// req, resp := client.ReadPipelineRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) ReadPipelineRequest(input *ReadPipelineInput) (req *request.Request, output *ReadPipelineOutput) { - op := &request.Operation{ - Name: opReadPipeline, - HTTPMethod: "GET", - HTTPPath: "/2012-09-25/pipelines/{Id}", - } - - if input == nil { - input = &ReadPipelineInput{} - } - - req = c.newRequest(op, input, output) - output = &ReadPipelineOutput{} - req.Data = output - return -} - -// The ReadPipeline operation gets detailed information about a pipeline. -func (c *ElasticTranscoder) ReadPipeline(input *ReadPipelineInput) (*ReadPipelineOutput, error) { - req, out := c.ReadPipelineRequest(input) - err := req.Send() - return out, err -} - -const opReadPreset = "ReadPreset" - -// ReadPresetRequest generates a "aws/request.Request" representing the -// client's request for the ReadPreset operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ReadPreset method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ReadPresetRequest method. -// req, resp := client.ReadPresetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) ReadPresetRequest(input *ReadPresetInput) (req *request.Request, output *ReadPresetOutput) { - op := &request.Operation{ - Name: opReadPreset, - HTTPMethod: "GET", - HTTPPath: "/2012-09-25/presets/{Id}", - } - - if input == nil { - input = &ReadPresetInput{} - } - - req = c.newRequest(op, input, output) - output = &ReadPresetOutput{} - req.Data = output - return -} - -// The ReadPreset operation gets detailed information about a preset. -func (c *ElasticTranscoder) ReadPreset(input *ReadPresetInput) (*ReadPresetOutput, error) { - req, out := c.ReadPresetRequest(input) - err := req.Send() - return out, err -} - -const opTestRole = "TestRole" - -// TestRoleRequest generates a "aws/request.Request" representing the -// client's request for the TestRole operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the TestRole method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the TestRoleRequest method. -// req, resp := client.TestRoleRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) TestRoleRequest(input *TestRoleInput) (req *request.Request, output *TestRoleOutput) { - op := &request.Operation{ - Name: opTestRole, - HTTPMethod: "POST", - HTTPPath: "/2012-09-25/roleTests", - } - - if input == nil { - input = &TestRoleInput{} - } - - req = c.newRequest(op, input, output) - output = &TestRoleOutput{} - req.Data = output - return -} - -// The TestRole operation tests the IAM role used to create the pipeline. -// -// The TestRole action lets you determine whether the IAM role you are using -// has sufficient permissions to let Elastic Transcoder perform tasks associated -// with the transcoding process. The action attempts to assume the specified -// IAM role, checks read access to the input and output buckets, and tries to -// send a test notification to Amazon SNS topics that you specify. -func (c *ElasticTranscoder) TestRole(input *TestRoleInput) (*TestRoleOutput, error) { - req, out := c.TestRoleRequest(input) - err := req.Send() - return out, err -} - -const opUpdatePipeline = "UpdatePipeline" - -// UpdatePipelineRequest generates a "aws/request.Request" representing the -// client's request for the UpdatePipeline operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdatePipeline method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdatePipelineRequest method. -// req, resp := client.UpdatePipelineRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) UpdatePipelineRequest(input *UpdatePipelineInput) (req *request.Request, output *UpdatePipelineOutput) { - op := &request.Operation{ - Name: opUpdatePipeline, - HTTPMethod: "PUT", - HTTPPath: "/2012-09-25/pipelines/{Id}", - } - - if input == nil { - input = &UpdatePipelineInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdatePipelineOutput{} - req.Data = output - return -} - -// Use the UpdatePipeline operation to update settings for a pipeline. When -// you change pipeline settings, your changes take effect immediately. Jobs -// that you have already submitted and that Elastic Transcoder has not started -// to process are affected in addition to jobs that you submit after you change -// settings. -func (c *ElasticTranscoder) UpdatePipeline(input *UpdatePipelineInput) (*UpdatePipelineOutput, error) { - req, out := c.UpdatePipelineRequest(input) - err := req.Send() - return out, err -} - -const opUpdatePipelineNotifications = "UpdatePipelineNotifications" - -// UpdatePipelineNotificationsRequest generates a "aws/request.Request" representing the -// client's request for the UpdatePipelineNotifications operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdatePipelineNotifications method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdatePipelineNotificationsRequest method. -// req, resp := client.UpdatePipelineNotificationsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) UpdatePipelineNotificationsRequest(input *UpdatePipelineNotificationsInput) (req *request.Request, output *UpdatePipelineNotificationsOutput) { - op := &request.Operation{ - Name: opUpdatePipelineNotifications, - HTTPMethod: "POST", - HTTPPath: "/2012-09-25/pipelines/{Id}/notifications", - } - - if input == nil { - input = &UpdatePipelineNotificationsInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdatePipelineNotificationsOutput{} - req.Data = output - return -} - -// With the UpdatePipelineNotifications operation, you can update Amazon Simple -// Notification Service (Amazon SNS) notifications for a pipeline. -// -// When you update notifications for a pipeline, Elastic Transcoder returns -// the values that you specified in the request. -func (c *ElasticTranscoder) UpdatePipelineNotifications(input *UpdatePipelineNotificationsInput) (*UpdatePipelineNotificationsOutput, error) { - req, out := c.UpdatePipelineNotificationsRequest(input) - err := req.Send() - return out, err -} - -const opUpdatePipelineStatus = "UpdatePipelineStatus" - -// UpdatePipelineStatusRequest generates a "aws/request.Request" representing the -// client's request for the UpdatePipelineStatus operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdatePipelineStatus method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdatePipelineStatusRequest method. -// req, resp := client.UpdatePipelineStatusRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *ElasticTranscoder) UpdatePipelineStatusRequest(input *UpdatePipelineStatusInput) (req *request.Request, output *UpdatePipelineStatusOutput) { - op := &request.Operation{ - Name: opUpdatePipelineStatus, - HTTPMethod: "POST", - HTTPPath: "/2012-09-25/pipelines/{Id}/status", - } - - if input == nil { - input = &UpdatePipelineStatusInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdatePipelineStatusOutput{} - req.Data = output - return -} - -// The UpdatePipelineStatus operation pauses or reactivates a pipeline, so that -// the pipeline stops or restarts the processing of jobs. -// -// Changing the pipeline status is useful if you want to cancel one or more -// jobs. You can't cancel jobs after Elastic Transcoder has started processing -// them; if you pause the pipeline to which you submitted the jobs, you have -// more time to get the job IDs for the jobs that you want to cancel, and to -// send a CancelJob request. -func (c *ElasticTranscoder) UpdatePipelineStatus(input *UpdatePipelineStatusInput) (*UpdatePipelineStatusOutput, error) { - req, out := c.UpdatePipelineStatusRequest(input) - err := req.Send() - return out, err -} - -// The file to be used as album art. There can be multiple artworks associated -// with an audio file, to a maximum of 20. -// -// To remove artwork or leave the artwork empty, you can either set Artwork -// to null, or set the Merge Policy to "Replace" and use an empty Artwork array. -// -// To pass through existing artwork unchanged, set the Merge Policy to "Prepend", -// "Append", or "Fallback", and use an empty Artwork array. -type Artwork struct { - _ struct{} `type:"structure"` - - // The format of album art, if any. Valid formats are .jpg and .png. - AlbumArtFormat *string `type:"string"` - - // The encryption settings, if any, that you want Elastic Transcoder to apply - // to your artwork. - Encryption *Encryption `type:"structure"` - - // The name of the file to be used as album art. To determine which Amazon S3 - // bucket contains the specified file, Elastic Transcoder checks the pipeline - // specified by PipelineId; the InputBucket object in that pipeline identifies - // the bucket. - // - // If the file name includes a prefix, for example, cooking/pie.jpg, include - // the prefix in the key. If the file isn't in the specified bucket, Elastic - // Transcoder returns an error. - InputKey *string `min:"1" type:"string"` - - // The maximum height of the output album art in pixels. If you specify auto, - // Elastic Transcoder uses 600 as the default value. If you specify a numeric - // value, enter an even integer between 32 and 3072, inclusive. - MaxHeight *string `type:"string"` - - // The maximum width of the output album art in pixels. If you specify auto, - // Elastic Transcoder uses 600 as the default value. If you specify a numeric - // value, enter an even integer between 32 and 4096, inclusive. - MaxWidth *string `type:"string"` - - // When you set PaddingPolicy to Pad, Elastic Transcoder may add white bars - // to the top and bottom and/or left and right sides of the output album art - // to make the total size of the output art match the values that you specified - // for MaxWidth and MaxHeight. - PaddingPolicy *string `type:"string"` - - // Specify one of the following values to control scaling of the output album - // art: - // - // Fit: Elastic Transcoder scales the output art so it matches the value - // that you specified in either MaxWidth or MaxHeight without exceeding the - // other value. Fill: Elastic Transcoder scales the output art so it matches - // the value that you specified in either MaxWidth or MaxHeight and matches - // or exceeds the other value. Elastic Transcoder centers the output art and - // then crops it in the dimension (if any) that exceeds the maximum value. - // Stretch: Elastic Transcoder stretches the output art to match the values - // that you specified for MaxWidth and MaxHeight. If the relative proportions - // of the input art and the output art are different, the output art will be - // distorted. Keep: Elastic Transcoder does not scale the output art. If either - // dimension of the input art exceeds the values that you specified for MaxWidth - // and MaxHeight, Elastic Transcoder crops the output art. ShrinkToFit: Elastic - // Transcoder scales the output art down so that its dimensions match the values - // that you specified for at least one of MaxWidth and MaxHeight without exceeding - // either value. If you specify this option, Elastic Transcoder does not scale - // the art up. ShrinkToFill Elastic Transcoder scales the output art down so - // that its dimensions match the values that you specified for at least one - // of MaxWidth and MaxHeight without dropping below either value. If you specify - // this option, Elastic Transcoder does not scale the art up. - SizingPolicy *string `type:"string"` -} - -// String returns the string representation -func (s Artwork) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Artwork) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Artwork) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Artwork"} - if s.InputKey != nil && len(*s.InputKey) < 1 { - invalidParams.Add(request.NewErrParamMinLen("InputKey", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Options associated with your audio codec. -type AudioCodecOptions struct { - _ struct{} `type:"structure"` - - // You can only choose an audio bit depth when you specify flac or pcm for the - // value of Audio:Codec. - // - // The bit depth of a sample is how many bits of information are included in - // the audio samples. The higher the bit depth, the better the audio, but the - // larger the file. - // - // Valid values are 16 and 24. - // - // The most common bit depth is 24. - BitDepth *string `type:"string"` - - // You can only choose an audio bit order when you specify pcm for the value - // of Audio:Codec. - // - // The order the bits of a PCM sample are stored in. - // - // The supported value is LittleEndian. - BitOrder *string `type:"string"` - - // You can only choose an audio profile when you specify AAC for the value of - // Audio:Codec. - // - // Specify the AAC profile for the output file. Elastic Transcoder supports - // the following profiles: - // - // auto: If you specify auto, Elastic Transcoder will select the profile based - // on the bit rate selected for the output file. AAC-LC: The most common AAC - // profile. Use for bit rates larger than 64 kbps. HE-AAC: Not supported on - // some older players and devices. Use for bit rates between 40 and 80 kbps. - // HE-AACv2: Not supported on some players and devices. Use for bit rates less - // than 48 kbps. All outputs in a Smooth playlist must have the same value - // for Profile. - // - // If you created any presets before AAC profiles were added, Elastic Transcoder - // automatically updated your presets to use AAC-LC. You can change the value - // as required. - Profile *string `type:"string"` - - // You can only choose whether an audio sample is signed when you specify pcm - // for the value of Audio:Codec. - // - // Whether audio samples are represented with negative and positive numbers - // (signed) or only positive numbers (unsigned). - // - // The supported value is Signed. - Signed *string `type:"string"` -} - -// String returns the string representation -func (s AudioCodecOptions) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AudioCodecOptions) GoString() string { - return s.String() -} - -// Parameters required for transcoding audio. -type AudioParameters struct { - _ struct{} `type:"structure"` - - // The method of organizing audio channels and tracks. Use Audio:Channels to - // specify the number of channels in your output, and Audio:AudioPackingMode - // to specify the number of tracks and their relation to the channels. If you - // do not specify an Audio:AudioPackingMode, Elastic Transcoder uses SingleTrack. - // - // The following values are valid: - // - // SingleTrack, OneChannelPerTrack, and OneChannelPerTrackWithMosTo8Tracks - // - // When you specify SingleTrack, Elastic Transcoder creates a single track - // for your output. The track can have up to eight channels. Use SingleTrack - // for all non-mxf containers. - // - // The outputs of SingleTrack for a specific channel value and inputs are as - // follows: - // - // 0 channels with any input: Audio omitted from the output 1, 2, or auto - // channels with no audio input: Audio omitted from the output 1 channel with - // any input with audio: One track with one channel, downmixed if necessary - // 2 channels with one track with one channel: One track with two identical - // channels 2 or auto channels with two tracks with one channel each: One track - // with two channels 2 or auto channels with one track with two channels: One - // track with two channels 2 channels with one track with multiple channels: - // One track with two channels auto channels with one track with one channel: - // One track with one channel auto channels with one track with multiple channels: - // One track with multiple channels When you specify OneChannelPerTrack, Elastic - // Transcoder creates a new track for every channel in your output. Your output - // can have up to eight single-channel tracks. - // - // The outputs of OneChannelPerTrack for a specific channel value and inputs - // are as follows: - // - // 0 channels with any input: Audio omitted from the output 1, 2, or auto - // channels with no audio input: Audio omitted from the output 1 channel with - // any input with audio: One track with one channel, downmixed if necessary - // 2 channels with one track with one channel: Two tracks with one identical - // channel each 2 or auto channels with two tracks with one channel each: Two - // tracks with one channel each 2 or auto channels with one track with two - // channels: Two tracks with one channel each 2 channels with one track with - // multiple channels: Two tracks with one channel each auto channels with one - // track with one channel: One track with one channel auto channels with one - // track with multiple channels: Up to eight tracks with one channel each When - // you specify OneChannelPerTrackWithMosTo8Tracks, Elastic Transcoder creates - // eight single-channel tracks for your output. All tracks that do not contain - // audio data from an input channel are MOS, or Mit Out Sound, tracks. - // - // The outputs of OneChannelPerTrackWithMosTo8Tracks for a specific channel - // value and inputs are as follows: - // - // 0 channels with any input: Audio omitted from the output 1, 2, or auto - // channels with no audio input: Audio omitted from the output 1 channel with - // any input with audio: One track with one channel, downmixed if necessary, - // plus six MOS tracks 2 channels with one track with one channel: Two tracks - // with one identical channel each, plus six MOS tracks 2 or auto channels - // with two tracks with one channel each: Two tracks with one channel each, - // plus six MOS tracks 2 or auto channels with one track with two channels: - // Two tracks with one channel each, plus six MOS tracks 2 channels with one - // track with multiple channels: Two tracks with one channel each, plus six - // MOS tracks auto channels with one track with one channel: One track with - // one channel, plus seven MOS tracks auto channels with one track with multiple - // channels: Up to eight tracks with one channel each, plus MOS tracks until - // there are eight tracks in all - AudioPackingMode *string `type:"string"` - - // The bit rate of the audio stream in the output file, in kilobits/second. - // Enter an integer between 64 and 320, inclusive. - BitRate *string `type:"string"` - - // The number of audio channels in the output file. The following values are - // valid: - // - // auto, 0, 1, 2 - // - // One channel carries the information played by a single speaker. For example, - // a stereo track with two channels sends one channel to the left speaker, and - // the other channel to the right speaker. The output channels are organized - // into tracks. If you want Elastic Transcoder to automatically detect the number - // of audio channels in the input file and use that value for the output file, - // select auto. - // - // The output of a specific channel value and inputs are as follows: - // - // auto channel specified, with any input: Pass through up to eight input - // channels. 0 channels specified, with any input: Audio omitted from the output. - // 1 channel specified, with at least one input channel: Mono sound. 2 channels - // specified, with any input: Two identical mono channels or stereo. For more - // information about tracks, see Audio:AudioPackingMode. For more information - // about how Elastic Transcoder organizes channels and tracks, see Audio:AudioPackingMode. - Channels *string `type:"string"` - - // The audio codec for the output file. Valid values include aac, flac, mp2, - // mp3, pcm, and vorbis. - Codec *string `type:"string"` - - // If you specified AAC for Audio:Codec, this is the AAC compression profile - // to use. Valid values include: - // - // auto, AAC-LC, HE-AAC, HE-AACv2 - // - // If you specify auto, Elastic Transcoder chooses a profile based on the bit - // rate of the output file. - CodecOptions *AudioCodecOptions `type:"structure"` - - // The sample rate of the audio stream in the output file, in Hertz. Valid values - // include: - // - // auto, 22050, 32000, 44100, 48000, 96000 - // - // If you specify auto, Elastic Transcoder automatically detects the sample - // rate. - SampleRate *string `type:"string"` -} - -// String returns the string representation -func (s AudioParameters) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AudioParameters) GoString() string { - return s.String() -} - -// The CancelJobRequest structure. -type CancelJobInput struct { - _ struct{} `type:"structure"` - - // The identifier of the job that you want to cancel. - // - // To get a list of the jobs (including their jobId) that have a status of - // Submitted, use the ListJobsByStatus API action. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s CancelJobInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelJobInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CancelJobInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CancelJobInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The response body contains a JSON object. If the job is successfully canceled, -// the value of Success is true. -type CancelJobOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CancelJobOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CancelJobOutput) GoString() string { - return s.String() -} - -// The file format of the output captions. If you leave this value blank, Elastic -// Transcoder returns an error. -type CaptionFormat struct { - _ struct{} `type:"structure"` - - // The encryption settings, if any, that you want Elastic Transcoder to apply - // to your caption formats. - Encryption *Encryption `type:"structure"` - - // The format you specify determines whether Elastic Transcoder generates an - // embedded or sidecar caption for this output. - // - // Valid Embedded Caption Formats: - // - // for FLAC: None - // - // For MP3: None - // - // For MP4: mov-text - // - // For MPEG-TS: None - // - // For ogg: None - // - // For webm: None - // - // Valid Sidecar Caption Formats: Elastic Transcoder supports dfxp (first - // div element only), scc, srt, and webvtt. If you want ttml or smpte-tt compatible - // captions, specify dfxp as your output format. - // - // For FMP4: dfxp - // - // Non-FMP4 outputs: All sidecar types - // - // fmp4 captions have an extension of .ismt - Format *string `type:"string"` - - // The prefix for caption filenames, in the form description-{language}, where: - // - // description is a description of the video. {language} is a literal value - // that Elastic Transcoder replaces with the two- or three-letter code for the - // language of the caption in the output file names. If you don't include {language} - // in the file name pattern, Elastic Transcoder automatically appends "{language}" - // to the value that you specify for the description. In addition, Elastic Transcoder - // automatically appends the count to the end of the segment files. - // - // For example, suppose you're transcoding into srt format. When you enter - // "Sydney-{language}-sunrise", and the language of the captions is English - // (en), the name of the first caption file will be Sydney-en-sunrise00000.srt. - Pattern *string `type:"string"` -} - -// String returns the string representation -func (s CaptionFormat) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CaptionFormat) GoString() string { - return s.String() -} - -// A source file for the input sidecar captions used during the transcoding -// process. -type CaptionSource struct { - _ struct{} `type:"structure"` - - // The encryption settings, if any, that you want Elastic Transcoder to apply - // to your caption sources. - Encryption *Encryption `type:"structure"` - - // The name of the sidecar caption file that you want Elastic Transcoder to - // include in the output file. - Key *string `min:"1" type:"string"` - - // The label of the caption shown in the player when choosing a language. We - // recommend that you put the caption language name here, in the language of - // the captions. - Label *string `min:"1" type:"string"` - - // A string that specifies the language of the caption. Specify this as one - // of: - // - // 2-character ISO 639-1 code - // - // 3-character ISO 639-2 code - // - // For more information on ISO language codes and language names, see the - // List of ISO 639-1 codes. - Language *string `min:"1" type:"string"` - - // For clip generation or captions that do not start at the same time as the - // associated video file, the TimeOffset tells Elastic Transcoder how much of - // the video to encode before including captions. - // - // Specify the TimeOffset in the form [+-]SS.sss or [+-]HH:mm:SS.ss. - TimeOffset *string `type:"string"` -} - -// String returns the string representation -func (s CaptionSource) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CaptionSource) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CaptionSource) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CaptionSource"} - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.Label != nil && len(*s.Label) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Label", 1)) - } - if s.Language != nil && len(*s.Language) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Language", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The captions to be created, if any. -type Captions struct { - _ struct{} `type:"structure"` - - // The array of file formats for the output captions. If you leave this value - // blank, Elastic Transcoder returns an error. - CaptionFormats []*CaptionFormat `type:"list"` - - // Source files for the input sidecar captions used during the transcoding process. - // To omit all sidecar captions, leave CaptionSources blank. - CaptionSources []*CaptionSource `type:"list"` - - // A policy that determines how Elastic Transcoder handles the existence of - // multiple captions. - // - // MergeOverride: Elastic Transcoder transcodes both embedded and sidecar - // captions into outputs. If captions for a language are embedded in the input - // file and also appear in a sidecar file, Elastic Transcoder uses the sidecar - // captions and ignores the embedded captions for that language. - // - // MergeRetain: Elastic Transcoder transcodes both embedded and sidecar captions - // into outputs. If captions for a language are embedded in the input file and - // also appear in a sidecar file, Elastic Transcoder uses the embedded captions - // and ignores the sidecar captions for that language. If CaptionSources is - // empty, Elastic Transcoder omits all sidecar captions from the output files. - // - // Override: Elastic Transcoder transcodes only the sidecar captions that you - // specify in CaptionSources. - // - // MergePolicy cannot be null. - MergePolicy *string `type:"string"` -} - -// String returns the string representation -func (s Captions) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Captions) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Captions) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Captions"} - if s.CaptionSources != nil { - for i, v := range s.CaptionSources { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "CaptionSources", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Settings for one clip in a composition. All jobs in a playlist must have -// the same clip settings. -type Clip struct { - _ struct{} `type:"structure"` - - // Settings that determine when a clip begins and how long it lasts. - TimeSpan *TimeSpan `type:"structure"` -} - -// String returns the string representation -func (s Clip) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Clip) GoString() string { - return s.String() -} - -// The CreateJobRequest structure. -type CreateJobInput struct { - _ struct{} `type:"structure"` - - // A section of the request body that provides information about the file that - // is being transcoded. - // - // Input is a required field - Input *JobInput `type:"structure" required:"true"` - - // The CreateJobOutput structure. - Output *CreateJobOutput `type:"structure"` - - // The value, if any, that you want Elastic Transcoder to prepend to the names - // of all files that this job creates, including output files, thumbnails, and - // playlists. - OutputKeyPrefix *string `min:"1" type:"string"` - - // A section of the request body that provides information about the transcoded - // (target) files. We recommend that you use the Outputs syntax instead of the - // Output syntax. - Outputs []*CreateJobOutput `type:"list"` - - // The Id of the pipeline that you want Elastic Transcoder to use for transcoding. - // The pipeline determines several settings, including the Amazon S3 bucket - // from which Elastic Transcoder gets the files to transcode and the bucket - // into which Elastic Transcoder puts the transcoded files. - // - // PipelineId is a required field - PipelineId *string `type:"string" required:"true"` - - // If you specify a preset in PresetId for which the value of Container is fmp4 - // (Fragmented MP4) or ts (MPEG-TS), Playlists contains information about the - // master playlists that you want Elastic Transcoder to create. - // - // The maximum number of master playlists in a job is 30. - Playlists []*CreateJobPlaylist `type:"list"` - - // User-defined metadata that you want to associate with an Elastic Transcoder - // job. You specify metadata in key/value pairs, and you can add up to 10 key/value - // pairs per job. Elastic Transcoder does not guarantee that key/value pairs - // will be returned in the same order in which you specify them. - UserMetadata map[string]*string `type:"map"` -} - -// String returns the string representation -func (s CreateJobInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateJobInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateJobInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateJobInput"} - if s.Input == nil { - invalidParams.Add(request.NewErrParamRequired("Input")) - } - if s.OutputKeyPrefix != nil && len(*s.OutputKeyPrefix) < 1 { - invalidParams.Add(request.NewErrParamMinLen("OutputKeyPrefix", 1)) - } - if s.PipelineId == nil { - invalidParams.Add(request.NewErrParamRequired("PipelineId")) - } - if s.Input != nil { - if err := s.Input.Validate(); err != nil { - invalidParams.AddNested("Input", err.(request.ErrInvalidParams)) - } - } - if s.Output != nil { - if err := s.Output.Validate(); err != nil { - invalidParams.AddNested("Output", err.(request.ErrInvalidParams)) - } - } - if s.Outputs != nil { - for i, v := range s.Outputs { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Outputs", i), err.(request.ErrInvalidParams)) - } - } - } - if s.Playlists != nil { - for i, v := range s.Playlists { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Playlists", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The CreateJobOutput structure. -type CreateJobOutput struct { - _ struct{} `type:"structure"` - - // Information about the album art that you want Elastic Transcoder to add to - // the file during transcoding. You can specify up to twenty album artworks - // for each output. Settings for each artwork must be defined in the job for - // the current output. - AlbumArt *JobAlbumArt `type:"structure"` - - // You can configure Elastic Transcoder to transcode captions, or subtitles, - // from one format to another. All captions must be in UTF-8. Elastic Transcoder - // supports two types of captions: - // - // Embedded: Embedded captions are included in the same file as the audio - // and video. Elastic Transcoder supports only one embedded caption per language, - // to a maximum of 300 embedded captions per file. - // - // Valid input values include: CEA-608 (EIA-608, first non-empty channel only), - // CEA-708 (EIA-708, first non-empty channel only), and mov-text - // - // Valid outputs include: mov-text - // - // Elastic Transcoder supports a maximum of one embedded format per output. - // - // Sidecar: Sidecar captions are kept in a separate metadata file from the - // audio and video data. Sidecar captions require a player that is capable of - // understanding the relationship between the video file and the sidecar file. - // Elastic Transcoder supports only one sidecar caption per language, to a maximum - // of 20 sidecar captions per file. - // - // Valid input values include: dfxp (first div element only), ebu-tt, scc, - // smpt, srt, ttml (first div element only), and webvtt - // - // Valid outputs include: dfxp (first div element only), scc, srt, and webvtt. - // - // If you want ttml or smpte-tt compatible captions, specify dfxp as your - // output format. - // - // Elastic Transcoder does not support OCR (Optical Character Recognition), - // does not accept pictures as a valid input for captions, and is not available - // for audio-only transcoding. Elastic Transcoder does not preserve text formatting - // (for example, italics) during the transcoding process. - // - // To remove captions or leave the captions empty, set Captions to null. To - // pass through existing captions unchanged, set the MergePolicy to MergeRetain, - // and pass in a null CaptionSources array. - // - // For more information on embedded files, see the Subtitles Wikipedia page. - // - // For more information on sidecar files, see the Extensible Metadata Platform - // and Sidecar file Wikipedia pages. - Captions *Captions `type:"structure"` - - // You can create an output file that contains an excerpt from the input file. - // This excerpt, called a clip, can come from the beginning, middle, or end - // of the file. The Composition object contains settings for the clips that - // make up an output file. For the current release, you can only specify settings - // for a single clip per output file. The Composition object cannot be null. - Composition []*Clip `type:"list"` - - // You can specify encryption settings for any output files that you want to - // use for a transcoding job. This includes the output file and any watermarks, - // thumbnails, album art, or captions that you want to use. You must specify - // encryption settings for each file individually. - Encryption *Encryption `type:"structure"` - - // The name to assign to the transcoded file. Elastic Transcoder saves the file - // in the Amazon S3 bucket specified by the OutputBucket object in the pipeline - // that is specified by the pipeline ID. If a file with the specified name already - // exists in the output bucket, the job fails. - Key *string `min:"1" type:"string"` - - // The Id of the preset to use for this job. The preset determines the audio, - // video, and thumbnail settings that Elastic Transcoder uses for transcoding. - PresetId *string `type:"string"` - - // The number of degrees clockwise by which you want Elastic Transcoder to rotate - // the output relative to the input. Enter one of the following values: auto, - // 0, 90, 180, 270. The value auto generally works only if the file that you're - // transcoding contains rotation metadata. - Rotate *string `type:"string"` - - // (Outputs in Fragmented MP4 or MPEG-TS format only.If you specify a preset - // in PresetId for which the value of Container is fmp4 (Fragmented MP4) or - // ts (MPEG-TS), SegmentDuration is the target maximum duration of each segment - // in seconds. For HLSv3 format playlists, each media segment is stored in a - // separate .ts file. For HLSv4 and Smooth playlists, all media segments for - // an output are stored in a single file. Each segment is approximately the - // length of the SegmentDuration, though individual segments might be shorter - // or longer. - // - // The range of valid values is 1 to 60 seconds. If the duration of the video - // is not evenly divisible by SegmentDuration, the duration of the last segment - // is the remainder of total length/SegmentDuration. - // - // Elastic Transcoder creates an output-specific playlist for each output HLS - // output that you specify in OutputKeys. To add an output to the master playlist - // for this job, include it in the OutputKeys of the associated playlist. - SegmentDuration *string `type:"string"` - - // The encryption settings, if any, that you want Elastic Transcoder to apply - // to your thumbnail. - ThumbnailEncryption *Encryption `type:"structure"` - - // Whether you want Elastic Transcoder to create thumbnails for your videos - // and, if so, how you want Elastic Transcoder to name the files. - // - // If you don't want Elastic Transcoder to create thumbnails, specify "". - // - // If you do want Elastic Transcoder to create thumbnails, specify the information - // that you want to include in the file name for each thumbnail. You can specify - // the following values in any sequence: - // - // {count} (Required): If you want to create thumbnails, you must include - // {count} in the ThumbnailPattern object. Wherever you specify {count}, Elastic - // Transcoder adds a five-digit sequence number (beginning with 00001) to thumbnail - // file names. The number indicates where a given thumbnail appears in the sequence - // of thumbnails for a transcoded file. - // - // If you specify a literal value and/or {resolution} but you omit {count}, - // Elastic Transcoder returns a validation error and does not create the job. - // Literal values (Optional): You can specify literal values anywhere in - // the ThumbnailPattern object. For example, you can include them as a file - // name prefix or as a delimiter between {resolution} and {count}. - // - // {resolution} (Optional): If you want Elastic Transcoder to include the - // resolution in the file name, include {resolution} in the ThumbnailPattern - // object. - // - // When creating thumbnails, Elastic Transcoder automatically saves the files - // in the format (.jpg or .png) that appears in the preset that you specified - // in the PresetID value of CreateJobOutput. Elastic Transcoder also appends - // the applicable file name extension. - ThumbnailPattern *string `type:"string"` - - // Information about the watermarks that you want Elastic Transcoder to add - // to the video during transcoding. You can specify up to four watermarks for - // each output. Settings for each watermark must be defined in the preset for - // the current output. - Watermarks []*JobWatermark `type:"list"` -} - -// String returns the string representation -func (s CreateJobOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateJobOutput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateJobOutput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateJobOutput"} - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.AlbumArt != nil { - if err := s.AlbumArt.Validate(); err != nil { - invalidParams.AddNested("AlbumArt", err.(request.ErrInvalidParams)) - } - } - if s.Captions != nil { - if err := s.Captions.Validate(); err != nil { - invalidParams.AddNested("Captions", err.(request.ErrInvalidParams)) - } - } - if s.Watermarks != nil { - for i, v := range s.Watermarks { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Watermarks", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Information about the master playlist. -type CreateJobPlaylist struct { - _ struct{} `type:"structure"` - - // The format of the output playlist. Valid formats include HLSv3, HLSv4, and - // Smooth. - Format *string `type:"string"` - - // The HLS content protection settings, if any, that you want Elastic Transcoder - // to apply to the output files associated with this playlist. - HlsContentProtection *HlsContentProtection `type:"structure"` - - // The name that you want Elastic Transcoder to assign to the master playlist, - // for example, nyc-vacation.m3u8. If the name includes a / character, the section - // of the name before the last / must be identical for all Name objects. If - // you create more than one master playlist, the values of all Name objects - // must be unique. - // - // Note: Elastic Transcoder automatically appends the relevant file extension - // to the file name (.m3u8 for HLSv3 and HLSv4 playlists, and .ism and .ismc - // for Smooth playlists). If you include a file extension in Name, the file - // name will have two extensions. - Name *string `min:"1" type:"string"` - - // For each output in this job that you want to include in a master playlist, - // the value of the Outputs:Key object. - // - // If your output is not HLS or does not have a segment duration set, the - // name of the output file is a concatenation of OutputKeyPrefix and Outputs:Key: - // - // OutputKeyPrefixOutputs:Key - // - // If your output is HLSv3 and has a segment duration set, or is not included - // in a playlist, Elastic Transcoder creates an output playlist file with a - // file extension of .m3u8, and a series of .ts files that include a five-digit - // sequential counter beginning with 00000: - // - // OutputKeyPrefixOutputs:Key.m3u8 - // - // OutputKeyPrefixOutputs:Key00000.ts - // - // If your output is HLSv4, has a segment duration set, and is included in - // an HLSv4 playlist, Elastic Transcoder creates an output playlist file with - // a file extension of _v4.m3u8. If the output is video, Elastic Transcoder - // also creates an output file with an extension of _iframe.m3u8: - // - // OutputKeyPrefixOutputs:Key_v4.m3u8 - // - // OutputKeyPrefixOutputs:Key_iframe.m3u8 - // - // OutputKeyPrefixOutputs:Key.ts - // - // Elastic Transcoder automatically appends the relevant file extension to - // the file name. If you include a file extension in Output Key, the file name - // will have two extensions. - // - // If you include more than one output in a playlist, any segment duration - // settings, clip settings, or caption settings must be the same for all outputs - // in the playlist. For Smooth playlists, the Audio:Profile, Video:Profile, - // and Video:FrameRate to Video:KeyframesMaxDist ratio must be the same for - // all outputs. - OutputKeys []*string `type:"list"` - - // The DRM settings, if any, that you want Elastic Transcoder to apply to the - // output files associated with this playlist. - PlayReadyDrm *PlayReadyDrm `type:"structure"` -} - -// String returns the string representation -func (s CreateJobPlaylist) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateJobPlaylist) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateJobPlaylist) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateJobPlaylist"} - if s.Name != nil && len(*s.Name) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Name", 1)) - } - if s.PlayReadyDrm != nil { - if err := s.PlayReadyDrm.Validate(); err != nil { - invalidParams.AddNested("PlayReadyDrm", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The CreateJobResponse structure. -type CreateJobResponse struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the job that - // is created. - Job *Job `type:"structure"` -} - -// String returns the string representation -func (s CreateJobResponse) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateJobResponse) GoString() string { - return s.String() -} - -// The CreatePipelineRequest structure. -type CreatePipelineInput struct { - _ struct{} `type:"structure"` - - // The AWS Key Management Service (AWS KMS) key that you want to use with this - // pipeline. - // - // If you use either S3 or S3-AWS-KMS as your Encryption:Mode, you don't need - // to provide a key with your job because a default key, known as an AWS-KMS - // key, is created for you automatically. You need to provide an AWS-KMS key - // only if you want to use a non-default AWS-KMS key, or if you are using an - // Encryption:Mode of AES-PKCS7, AES-CTR, or AES-GCM. - AwsKmsKeyArn *string `type:"string"` - - // The optional ContentConfig object specifies information about the Amazon - // S3 bucket in which you want Elastic Transcoder to save transcoded files and - // playlists: which bucket to use, which users you want to have access to the - // files, the type of access you want users to have, and the storage class that - // you want to assign to the files. - // - // If you specify values for ContentConfig, you must also specify values for - // ThumbnailConfig. - // - // If you specify values for ContentConfig and ThumbnailConfig, omit the OutputBucket - // object. - // - // Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save - // transcoded files and playlists. Permissions (Optional): The Permissions object - // specifies which users you want to have access to transcoded files and the - // type of access you want them to have. You can grant permissions to a maximum - // of 30 users and/or predefined Amazon S3 groups. Grantee Type: Specify the - // type of value that appears in the Grantee object: Canonical: The value in - // the Grantee object is either the canonical user ID for an AWS account or - // an origin access identity for an Amazon CloudFront distribution. For more - // information about canonical user IDs, see Access Control List (ACL) Overview - // in the Amazon Simple Storage Service Developer Guide. For more information - // about using CloudFront origin access identities to require that users use - // CloudFront URLs instead of Amazon S3 URLs, see Using an Origin Access Identity - // to Restrict Access to Your Amazon S3 Content. A canonical user ID is not - // the same as an AWS account number. Email: The value in the Grantee object - // is the registered email address of an AWS account. Group: The value in the - // Grantee object is one of the following predefined Amazon S3 groups: AllUsers, - // AuthenticatedUsers, or LogDelivery. Grantee: The AWS user or group that - // you want to have access to transcoded files and playlists. To identify the - // user or group, you can specify the canonical user ID for an AWS account, - // an origin access identity for a CloudFront distribution, the registered email - // address of an AWS account, or a predefined Amazon S3 group Access: The - // permission that you want to give to the AWS user that you specified in Grantee. - // Permissions are granted on the files that Elastic Transcoder adds to the - // bucket, including playlists and video files. Valid values include: READ: - // The grantee can read the objects and metadata for objects that Elastic Transcoder - // adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object ACL - // for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP: - // The grantee can write the ACL for the objects that Elastic Transcoder adds - // to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, READ_ACP, and - // WRITE_ACP permissions for the objects that Elastic Transcoder adds to the - // Amazon S3 bucket. StorageClass: The Amazon S3 storage class, Standard - // or ReducedRedundancy, that you want Elastic Transcoder to assign to the video - // files and playlists that it stores in your Amazon S3 bucket. - ContentConfig *PipelineOutputConfig `type:"structure"` - - // The Amazon S3 bucket in which you saved the media files that you want to - // transcode. - // - // InputBucket is a required field - InputBucket *string `type:"string" required:"true"` - - // The name of the pipeline. We recommend that the name be unique within the - // AWS account, but uniqueness is not enforced. - // - // Constraints: Maximum 40 characters. - // - // Name is a required field - Name *string `min:"1" type:"string" required:"true"` - - // The Amazon Simple Notification Service (Amazon SNS) topic that you want to - // notify to report job status. - // - // To receive notifications, you must also subscribe to the new topic in the - // Amazon SNS console. Progressing: The topic ARN for the Amazon Simple Notification - // Service (Amazon SNS) topic that you want to notify when Elastic Transcoder - // has started to process a job in this pipeline. This is the ARN that Amazon - // SNS returned when you created the topic. For more information, see Create - // a Topic in the Amazon Simple Notification Service Developer Guide. Completed: - // The topic ARN for the Amazon SNS topic that you want to notify when Elastic - // Transcoder has finished processing a job in this pipeline. This is the ARN - // that Amazon SNS returned when you created the topic. Warning: The topic ARN - // for the Amazon SNS topic that you want to notify when Elastic Transcoder - // encounters a warning condition while processing a job in this pipeline. This - // is the ARN that Amazon SNS returned when you created the topic. Error: The - // topic ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder - // encounters an error condition while processing a job in this pipeline. This - // is the ARN that Amazon SNS returned when you created the topic. - Notifications *Notifications `type:"structure"` - - // The Amazon S3 bucket in which you want Elastic Transcoder to save the transcoded - // files. (Use this, or use ContentConfig:Bucket plus ThumbnailConfig:Bucket.) - // - // Specify this value when all of the following are true: You want to save - // transcoded files, thumbnails (if any), and playlists (if any) together in - // one bucket. You do not want to specify the users or groups who have access - // to the transcoded files, thumbnails, and playlists. You do not want to specify - // the permissions that Elastic Transcoder grants to the files. When Elastic - // Transcoder saves files in OutputBucket, it grants full control over the files - // only to the AWS account that owns the role that is specified by Role. You - // want to associate the transcoded files and thumbnails with the Amazon S3 - // Standard storage class. - // - // If you want to save transcoded files and playlists in one bucket and thumbnails - // in another bucket, specify which users can access the transcoded files or - // the permissions the users have, or change the Amazon S3 storage class, omit - // OutputBucket and specify values for ContentConfig and ThumbnailConfig instead. - OutputBucket *string `type:"string"` - - // The IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder - // to use to create the pipeline. - // - // Role is a required field - Role *string `type:"string" required:"true"` - - // The ThumbnailConfig object specifies several values, including the Amazon - // S3 bucket in which you want Elastic Transcoder to save thumbnail files, which - // users you want to have access to the files, the type of access you want users - // to have, and the storage class that you want to assign to the files. - // - // If you specify values for ContentConfig, you must also specify values for - // ThumbnailConfig even if you don't want to create thumbnails. - // - // If you specify values for ContentConfig and ThumbnailConfig, omit the OutputBucket - // object. - // - // Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save - // thumbnail files. Permissions (Optional): The Permissions object specifies - // which users and/or predefined Amazon S3 groups you want to have access to - // thumbnail files, and the type of access you want them to have. You can grant - // permissions to a maximum of 30 users and/or predefined Amazon S3 groups. - // GranteeType: Specify the type of value that appears in the Grantee object: - // Canonical: The value in the Grantee object is either the canonical user - // ID for an AWS account or an origin access identity for an Amazon CloudFront - // distribution. A canonical user ID is not the same as an AWS account number. - // Email: The value in the Grantee object is the registered email address of - // an AWS account. Group: The value in the Grantee object is one of the following - // predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery. - // Grantee: The AWS user or group that you want to have access to thumbnail - // files. To identify the user or group, you can specify the canonical user - // ID for an AWS account, an origin access identity for a CloudFront distribution, - // the registered email address of an AWS account, or a predefined Amazon S3 - // group. Access: The permission that you want to give to the AWS user that - // you specified in Grantee. Permissions are granted on the thumbnail files - // that Elastic Transcoder adds to the bucket. Valid values include: READ: - // The grantee can read the thumbnails and metadata for objects that Elastic - // Transcoder adds to the Amazon S3 bucket. READ_ACP: The grantee can read the - // object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. - // WRITE_ACP: The grantee can write the ACL for the thumbnails that Elastic - // Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, - // READ_ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder - // adds to the Amazon S3 bucket. StorageClass: The Amazon S3 storage class, - // Standard or ReducedRedundancy, that you want Elastic Transcoder to assign - // to the thumbnails that it stores in your Amazon S3 bucket. - ThumbnailConfig *PipelineOutputConfig `type:"structure"` -} - -// String returns the string representation -func (s CreatePipelineInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreatePipelineInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreatePipelineInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreatePipelineInput"} - if s.InputBucket == nil { - invalidParams.Add(request.NewErrParamRequired("InputBucket")) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.Name != nil && len(*s.Name) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Name", 1)) - } - if s.Role == nil { - invalidParams.Add(request.NewErrParamRequired("Role")) - } - if s.ContentConfig != nil { - if err := s.ContentConfig.Validate(); err != nil { - invalidParams.AddNested("ContentConfig", err.(request.ErrInvalidParams)) - } - } - if s.ThumbnailConfig != nil { - if err := s.ThumbnailConfig.Validate(); err != nil { - invalidParams.AddNested("ThumbnailConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// When you create a pipeline, Elastic Transcoder returns the values that you -// specified in the request. -type CreatePipelineOutput struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the pipeline - // that is created. - Pipeline *Pipeline `type:"structure"` - - // Elastic Transcoder returns a warning if the resources used by your pipeline - // are not in the same region as the pipeline. - // - // Using resources in the same region, such as your Amazon S3 buckets, Amazon - // SNS notification topics, and AWS KMS key, reduces processing time and prevents - // cross-regional charges. - Warnings []*Warning `type:"list"` -} - -// String returns the string representation -func (s CreatePipelineOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreatePipelineOutput) GoString() string { - return s.String() -} - -// The CreatePresetRequest structure. -type CreatePresetInput struct { - _ struct{} `type:"structure"` - - // A section of the request body that specifies the audio parameters. - Audio *AudioParameters `type:"structure"` - - // The container type for the output file. Valid values include flac, flv, fmp4, - // gif, mp3, mp4, mpg, mxf, oga, ogg, ts, and webm. - // - // Container is a required field - Container *string `type:"string" required:"true"` - - // A description of the preset. - Description *string `type:"string"` - - // The name of the preset. We recommend that the name be unique within the AWS - // account, but uniqueness is not enforced. - // - // Name is a required field - Name *string `min:"1" type:"string" required:"true"` - - // A section of the request body that specifies the thumbnail parameters, if - // any. - Thumbnails *Thumbnails `type:"structure"` - - // A section of the request body that specifies the video parameters. - Video *VideoParameters `type:"structure"` -} - -// String returns the string representation -func (s CreatePresetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreatePresetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreatePresetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreatePresetInput"} - if s.Container == nil { - invalidParams.Add(request.NewErrParamRequired("Container")) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.Name != nil && len(*s.Name) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Name", 1)) - } - if s.Video != nil { - if err := s.Video.Validate(); err != nil { - invalidParams.AddNested("Video", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The CreatePresetResponse structure. -type CreatePresetOutput struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the preset - // that is created. - Preset *Preset `type:"structure"` - - // If the preset settings don't comply with the standards for the video codec - // but Elastic Transcoder created the preset, this message explains the reason - // the preset settings don't meet the standard. Elastic Transcoder created the - // preset because the settings might produce acceptable output. - Warning *string `type:"string"` -} - -// String returns the string representation -func (s CreatePresetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreatePresetOutput) GoString() string { - return s.String() -} - -// The DeletePipelineRequest structure. -type DeletePipelineInput struct { - _ struct{} `type:"structure"` - - // The identifier of the pipeline that you want to delete. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeletePipelineInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeletePipelineInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeletePipelineInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeletePipelineInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The DeletePipelineResponse structure. -type DeletePipelineOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeletePipelineOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeletePipelineOutput) GoString() string { - return s.String() -} - -// The DeletePresetRequest structure. -type DeletePresetInput struct { - _ struct{} `type:"structure"` - - // The identifier of the preset for which you want to get detailed information. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeletePresetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeletePresetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeletePresetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeletePresetInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The DeletePresetResponse structure. -type DeletePresetOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeletePresetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeletePresetOutput) GoString() string { - return s.String() -} - -// The detected properties of the input file. Elastic Transcoder identifies -// these values from the input file. -type DetectedProperties struct { - _ struct{} `type:"structure"` - - // The detected duration of the input file, in milliseconds. - DurationMillis *int64 `type:"long"` - - // The detected file size of the input file, in bytes. - FileSize *int64 `type:"long"` - - // The detected frame rate of the input file, in frames per second. - FrameRate *string `type:"string"` - - // The detected height of the input file, in pixels. - Height *int64 `type:"integer"` - - // The detected width of the input file, in pixels. - Width *int64 `type:"integer"` -} - -// String returns the string representation -func (s DetectedProperties) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DetectedProperties) GoString() string { - return s.String() -} - -// The encryption settings, if any, that are used for decrypting your input -// files or encrypting your output files. If your input file is encrypted, you -// must specify the mode that Elastic Transcoder will use to decrypt your file, -// otherwise you must specify the mode you want Elastic Transcoder to use to -// encrypt your output files. -type Encryption struct { - _ struct{} `type:"structure"` - - // The series of random bits created by a random bit generator, unique for every - // encryption operation, that you used to encrypt your input files or that you - // want Elastic Transcoder to use to encrypt your output files. The initialization - // vector must be base64-encoded, and it must be exactly 16 bytes long before - // being base64-encoded. - InitializationVector *string `type:"string"` - - // The data encryption key that you want Elastic Transcoder to use to encrypt - // your output file, or that was used to encrypt your input file. The key must - // be base64-encoded and it must be one of the following bit lengths before - // being base64-encoded: - // - // 128, 192, or 256. - // - // The key must also be encrypted by using the Amazon Key Management Service. - Key *string `type:"string"` - - // The MD5 digest of the key that you used to encrypt your input file, or that - // you want Elastic Transcoder to use to encrypt your output file. Elastic Transcoder - // uses the key digest as a checksum to make sure your key was not corrupted - // in transit. The key MD5 must be base64-encoded, and it must be exactly 16 - // bytes long before being base64-encoded. - KeyMd5 *string `type:"string"` - - // The specific server-side encryption mode that you want Elastic Transcoder - // to use when decrypting your input files or encrypting your output files. - // Elastic Transcoder supports the following options: - // - // S3: Amazon S3 creates and manages the keys used for encrypting your files. - // - // S3-AWS-KMS: Amazon S3 calls the Amazon Key Management Service, which creates - // and manages the keys that are used for encrypting your files. If you specify - // S3-AWS-KMS and you don't want to use the default key, you must add the AWS-KMS - // key that you want to use to your pipeline. - // - // AES-CBC-PKCS7: A padded cipher-block mode of operation originally used for - // HLS files. - // - // AES-CTR: AES Counter Mode. - // - // AES-GCM: AES Galois Counter Mode, a mode of operation that is an authenticated - // encryption format, meaning that a file, key, or initialization vector that - // has been tampered with will fail the decryption process. - // - // For all three AES options, you must provide the following settings, which - // must be base64-encoded: - // - // Key - // - // Key MD5 - // - // Initialization Vector - // - // For the AES modes, your private encryption keys and your unencrypted data - // are never stored by AWS; therefore, it is important that you safely manage - // your encryption keys. If you lose them, you won't be able to unencrypt your - // data. - Mode *string `type:"string"` -} - -// String returns the string representation -func (s Encryption) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Encryption) GoString() string { - return s.String() -} - -// The HLS content protection settings, if any, that you want Elastic Transcoder -// to apply to your output files. -type HlsContentProtection struct { - _ struct{} `type:"structure"` - - // If Elastic Transcoder is generating your key for you, you must leave this - // field blank. - // - // The series of random bits created by a random bit generator, unique for - // every encryption operation, that you want Elastic Transcoder to use to encrypt - // your output files. The initialization vector must be base64-encoded, and - // it must be exactly 16 bytes before being base64-encoded. - InitializationVector *string `type:"string"` - - // If you want Elastic Transcoder to generate a key for you, leave this field - // blank. - // - // If you choose to supply your own key, you must encrypt the key by using - // AWS KMS. The key must be base64-encoded, and it must be one of the following - // bit lengths before being base64-encoded: - // - // 128, 192, or 256. - Key *string `type:"string"` - - // If Elastic Transcoder is generating your key for you, you must leave this - // field blank. - // - // The MD5 digest of the key that you want Elastic Transcoder to use to encrypt - // your output file, and that you want Elastic Transcoder to use as a checksum - // to make sure your key was not corrupted in transit. The key MD5 must be base64-encoded, - // and it must be exactly 16 bytes before being base64- encoded. - KeyMd5 *string `type:"string"` - - // Specify whether you want Elastic Transcoder to write your HLS license key - // to an Amazon S3 bucket. If you choose WithVariantPlaylists, LicenseAcquisitionUrl - // must be left blank and Elastic Transcoder writes your data key into the same - // bucket as the associated playlist. - KeyStoragePolicy *string `type:"string"` - - // The location of the license key required to decrypt your HLS playlist. The - // URL must be an absolute path, and is referenced in the URI attribute of the - // EXT-X-KEY metadata tag in the playlist file. - LicenseAcquisitionUrl *string `type:"string"` - - // The content protection method for your output. The only valid value is: aes-128. - // - // This value will be written into the method attribute of the EXT-X-KEY metadata - // tag in the output playlist. - Method *string `type:"string"` -} - -// String returns the string representation -func (s HlsContentProtection) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HlsContentProtection) GoString() string { - return s.String() -} - -// A section of the response body that provides information about the job that -// is created. -type Job struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) for the job. - Arn *string `type:"string"` - - // The identifier that Elastic Transcoder assigned to the job. You use this - // value to get settings for the job or to delete the job. - Id *string `type:"string"` - - // A section of the request or response body that provides information about - // the file that is being transcoded. - Input *JobInput `type:"structure"` - - // If you specified one output for a job, information about that output. If - // you specified multiple outputs for a job, the Output object lists information - // about the first output. This duplicates the information that is listed for - // the first output in the Outputs object. - // - // Outputs recommended instead. A section of the request or response body that - // provides information about the transcoded (target) file. - Output *JobOutput `type:"structure"` - - // The value, if any, that you want Elastic Transcoder to prepend to the names - // of all files that this job creates, including output files, thumbnails, and - // playlists. We recommend that you add a / or some other delimiter to the end - // of the OutputKeyPrefix. - OutputKeyPrefix *string `min:"1" type:"string"` - - // Information about the output files. We recommend that you use the Outputs - // syntax for all jobs, even when you want Elastic Transcoder to transcode a - // file into only one format. Do not use both the Outputs and Output syntaxes - // in the same request. You can create a maximum of 30 outputs per job. - // - // If you specify more than one output for a job, Elastic Transcoder creates - // the files for each output in the order in which you specify them in the job. - Outputs []*JobOutput `type:"list"` - - // The Id of the pipeline that you want Elastic Transcoder to use for transcoding. - // The pipeline determines several settings, including the Amazon S3 bucket - // from which Elastic Transcoder gets the files to transcode and the bucket - // into which Elastic Transcoder puts the transcoded files. - PipelineId *string `type:"string"` - - // Outputs in Fragmented MP4 or MPEG-TS format only.If you specify a preset - // in PresetId for which the value of Container is fmp4 (Fragmented MP4) or - // ts (MPEG-TS), Playlists contains information about the master playlists that - // you want Elastic Transcoder to create. - // - // The maximum number of master playlists in a job is 30. - Playlists []*Playlist `type:"list"` - - // The status of the job: Submitted, Progressing, Complete, Canceled, or Error. - Status *string `type:"string"` - - // Details about the timing of a job. - Timing *Timing `type:"structure"` - - // User-defined metadata that you want to associate with an Elastic Transcoder - // job. You specify metadata in key/value pairs, and you can add up to 10 key/value - // pairs per job. Elastic Transcoder does not guarantee that key/value pairs - // will be returned in the same order in which you specify them. - // - // Metadata keys and values must use characters from the following list: - // - // 0-9 - // - // A-Z and a-z - // - // Space - // - // The following symbols: _.:/=+-%@ - UserMetadata map[string]*string `type:"map"` -} - -// String returns the string representation -func (s Job) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Job) GoString() string { - return s.String() -} - -// The .jpg or .png file associated with an audio file. -type JobAlbumArt struct { - _ struct{} `type:"structure"` - - // The file to be used as album art. There can be multiple artworks associated - // with an audio file, to a maximum of 20. Valid formats are .jpg and .png - Artwork []*Artwork `type:"list"` - - // A policy that determines how Elastic Transcoder will handle the existence - // of multiple album artwork files. - // - // Replace: The specified album art will replace any existing album art. - // Prepend: The specified album art will be placed in front of any existing - // album art. Append: The specified album art will be placed after any existing - // album art. Fallback: If the original input file contains artwork, Elastic - // Transcoder will use that artwork for the output. If the original input does - // not contain artwork, Elastic Transcoder will use the specified album art - // file. - MergePolicy *string `type:"string"` -} - -// String returns the string representation -func (s JobAlbumArt) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s JobAlbumArt) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *JobAlbumArt) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "JobAlbumArt"} - if s.Artwork != nil { - for i, v := range s.Artwork { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Artwork", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Information about the file that you're transcoding. -type JobInput struct { - _ struct{} `type:"structure"` - - // The aspect ratio of the input file. If you want Elastic Transcoder to automatically - // detect the aspect ratio of the input file, specify auto. If you want to specify - // the aspect ratio for the output file, enter one of the following values: - // - // 1:1, 4:3, 3:2, 16:9 - // - // If you specify a value other than auto, Elastic Transcoder disables automatic - // detection of the aspect ratio. - AspectRatio *string `type:"string"` - - // The container type for the input file. If you want Elastic Transcoder to - // automatically detect the container type of the input file, specify auto. - // If you want to specify the container type for the input file, enter one of - // the following values: - // - // 3gp, aac, asf, avi, divx, flv, m4a, mkv, mov, mp3, mp4, mpeg, mpeg-ps, - // mpeg-ts, mxf, ogg, vob, wav, webm - Container *string `type:"string"` - - // The detected properties of the input file. - DetectedProperties *DetectedProperties `type:"structure"` - - // The encryption settings, if any, that are used for decrypting your input - // files. If your input file is encrypted, you must specify the mode that Elastic - // Transcoder will use to decrypt your file. - Encryption *Encryption `type:"structure"` - - // The frame rate of the input file. If you want Elastic Transcoder to automatically - // detect the frame rate of the input file, specify auto. If you want to specify - // the frame rate for the input file, enter one of the following values: - // - // 10, 15, 23.97, 24, 25, 29.97, 30, 60 - // - // If you specify a value other than auto, Elastic Transcoder disables automatic - // detection of the frame rate. - FrameRate *string `type:"string"` - - // Whether the input file is interlaced. If you want Elastic Transcoder to automatically - // detect whether the input file is interlaced, specify auto. If you want to - // specify whether the input file is interlaced, enter one of the following - // values: - // - // true, false - // - // If you specify a value other than auto, Elastic Transcoder disables automatic - // detection of interlacing. - Interlaced *string `type:"string"` - - // The name of the file to transcode. Elsewhere in the body of the JSON block - // is the the ID of the pipeline to use for processing the job. The InputBucket - // object in that pipeline tells Elastic Transcoder which Amazon S3 bucket to - // get the file from. - // - // If the file name includes a prefix, such as cooking/lasagna.mpg, include - // the prefix in the key. If the file isn't in the specified bucket, Elastic - // Transcoder returns an error. - Key *string `min:"1" type:"string"` - - // This value must be auto, which causes Elastic Transcoder to automatically - // detect the resolution of the input file. - Resolution *string `type:"string"` -} - -// String returns the string representation -func (s JobInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s JobInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *JobInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "JobInput"} - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Outputs recommended instead.If you specified one output for a job, information -// about that output. If you specified multiple outputs for a job, the Output -// object lists information about the first output. This duplicates the information -// that is listed for the first output in the Outputs object. -type JobOutput struct { - _ struct{} `type:"structure"` - - // The album art to be associated with the output file, if any. - AlbumArt *JobAlbumArt `type:"structure"` - - // If Elastic Transcoder used a preset with a ColorSpaceConversionMode to transcode - // the output file, the AppliedColorSpaceConversion parameter shows the conversion - // used. If no ColorSpaceConversionMode was defined in the preset, this parameter - // will not be included in the job response. - AppliedColorSpaceConversion *string `type:"string"` - - // You can configure Elastic Transcoder to transcode captions, or subtitles, - // from one format to another. All captions must be in UTF-8. Elastic Transcoder - // supports two types of captions: - // - // Embedded: Embedded captions are included in the same file as the audio - // and video. Elastic Transcoder supports only one embedded caption per language, - // to a maximum of 300 embedded captions per file. - // - // Valid input values include: CEA-608 (EIA-608, first non-empty channel only), - // CEA-708 (EIA-708, first non-empty channel only), and mov-text - // - // Valid outputs include: mov-text - // - // Elastic Transcoder supports a maximum of one embedded format per output. - // - // Sidecar: Sidecar captions are kept in a separate metadata file from the - // audio and video data. Sidecar captions require a player that is capable of - // understanding the relationship between the video file and the sidecar file. - // Elastic Transcoder supports only one sidecar caption per language, to a maximum - // of 20 sidecar captions per file. - // - // Valid input values include: dfxp (first div element only), ebu-tt, scc, - // smpt, srt, ttml (first div element only), and webvtt - // - // Valid outputs include: dfxp (first div element only), scc, srt, and webvtt. - // - // If you want ttml or smpte-tt compatible captions, specify dfxp as your - // output format. - // - // Elastic Transcoder does not support OCR (Optical Character Recognition), - // does not accept pictures as a valid input for captions, and is not available - // for audio-only transcoding. Elastic Transcoder does not preserve text formatting - // (for example, italics) during the transcoding process. - // - // To remove captions or leave the captions empty, set Captions to null. To - // pass through existing captions unchanged, set the MergePolicy to MergeRetain, - // and pass in a null CaptionSources array. - // - // For more information on embedded files, see the Subtitles Wikipedia page. - // - // For more information on sidecar files, see the Extensible Metadata Platform - // and Sidecar file Wikipedia pages. - Captions *Captions `type:"structure"` - - // You can create an output file that contains an excerpt from the input file. - // This excerpt, called a clip, can come from the beginning, middle, or end - // of the file. The Composition object contains settings for the clips that - // make up an output file. For the current release, you can only specify settings - // for a single clip per output file. The Composition object cannot be null. - Composition []*Clip `type:"list"` - - // Duration of the output file, in seconds. - Duration *int64 `type:"long"` - - // Duration of the output file, in milliseconds. - DurationMillis *int64 `type:"long"` - - // The encryption settings, if any, that you want Elastic Transcoder to apply - // to your output files. If you choose to use encryption, you must specify a - // mode to use. If you choose not to use encryption, Elastic Transcoder will - // write an unencrypted file to your Amazon S3 bucket. - Encryption *Encryption `type:"structure"` - - // File size of the output file, in bytes. - FileSize *int64 `type:"long"` - - // Frame rate of the output file, in frames per second. - FrameRate *string `type:"string"` - - // Height of the output file, in pixels. - Height *int64 `type:"integer"` - - // A sequential counter, starting with 1, that identifies an output among the - // outputs from the current job. In the Output syntax, this value is always - // 1. - Id *string `type:"string"` - - // The name to assign to the transcoded file. Elastic Transcoder saves the file - // in the Amazon S3 bucket specified by the OutputBucket object in the pipeline - // that is specified by the pipeline ID. - Key *string `min:"1" type:"string"` - - // The value of the Id object for the preset that you want to use for this job. - // The preset determines the audio, video, and thumbnail settings that Elastic - // Transcoder uses for transcoding. To use a preset that you created, specify - // the preset ID that Elastic Transcoder returned in the response when you created - // the preset. You can also use the Elastic Transcoder system presets, which - // you can get with ListPresets. - PresetId *string `type:"string"` - - // The number of degrees clockwise by which you want Elastic Transcoder to rotate - // the output relative to the input. Enter one of the following values: - // - // auto, 0, 90, 180, 270 - // - // The value auto generally works only if the file that you're transcoding - // contains rotation metadata. - Rotate *string `type:"string"` - - // (Outputs in Fragmented MP4 or MPEG-TS format only.If you specify a preset - // in PresetId for which the value of Container is fmp4 (Fragmented MP4) or - // ts (MPEG-TS), SegmentDuration is the target maximum duration of each segment - // in seconds. For HLSv3 format playlists, each media segment is stored in a - // separate .ts file. For HLSv4 and Smooth playlists, all media segments for - // an output are stored in a single file. Each segment is approximately the - // length of the SegmentDuration, though individual segments might be shorter - // or longer. - // - // The range of valid values is 1 to 60 seconds. If the duration of the video - // is not evenly divisible by SegmentDuration, the duration of the last segment - // is the remainder of total length/SegmentDuration. - // - // Elastic Transcoder creates an output-specific playlist for each output HLS - // output that you specify in OutputKeys. To add an output to the master playlist - // for this job, include it in the OutputKeys of the associated playlist. - SegmentDuration *string `type:"string"` - - // The status of one output in a job. If you specified only one output for the - // job, Outputs:Status is always the same as Job:Status. If you specified more - // than one output: Job:Status and Outputs:Status for all of the outputs is - // Submitted until Elastic Transcoder starts to process the first output. When - // Elastic Transcoder starts to process the first output, Outputs:Status for - // that output and Job:Status both change to Progressing. For each output, the - // value of Outputs:Status remains Submitted until Elastic Transcoder starts - // to process the output. Job:Status remains Progressing until all of the outputs - // reach a terminal status, either Complete or Error. When all of the outputs - // reach a terminal status, Job:Status changes to Complete only if Outputs:Status - // for all of the outputs is Complete. If Outputs:Status for one or more outputs - // is Error, the terminal status for Job:Status is also Error. The value of - // Status is one of the following: Submitted, Progressing, Complete, Canceled, - // or Error. - Status *string `type:"string"` - - // Information that further explains Status. - StatusDetail *string `type:"string"` - - // The encryption settings, if any, that you want Elastic Transcoder to apply - // to your thumbnail. - ThumbnailEncryption *Encryption `type:"structure"` - - // Whether you want Elastic Transcoder to create thumbnails for your videos - // and, if so, how you want Elastic Transcoder to name the files. - // - // If you don't want Elastic Transcoder to create thumbnails, specify "". - // - // If you do want Elastic Transcoder to create thumbnails, specify the information - // that you want to include in the file name for each thumbnail. You can specify - // the following values in any sequence: - // - // {count} (Required): If you want to create thumbnails, you must include - // {count} in the ThumbnailPattern object. Wherever you specify {count}, Elastic - // Transcoder adds a five-digit sequence number (beginning with 00001) to thumbnail - // file names. The number indicates where a given thumbnail appears in the sequence - // of thumbnails for a transcoded file. - // - // If you specify a literal value and/or {resolution} but you omit {count}, - // Elastic Transcoder returns a validation error and does not create the job. - // Literal values (Optional): You can specify literal values anywhere in - // the ThumbnailPattern object. For example, you can include them as a file - // name prefix or as a delimiter between {resolution} and {count}. - // - // {resolution} (Optional): If you want Elastic Transcoder to include the - // resolution in the file name, include {resolution} in the ThumbnailPattern - // object. - // - // When creating thumbnails, Elastic Transcoder automatically saves the files - // in the format (.jpg or .png) that appears in the preset that you specified - // in the PresetID value of CreateJobOutput. Elastic Transcoder also appends - // the applicable file name extension. - ThumbnailPattern *string `type:"string"` - - // Information about the watermarks that you want Elastic Transcoder to add - // to the video during transcoding. You can specify up to four watermarks for - // each output. Settings for each watermark must be defined in the preset that - // you specify in Preset for the current output. - // - // Watermarks are added to the output video in the sequence in which you list - // them in the job output—the first watermark in the list is added to the output - // video first, the second watermark in the list is added next, and so on. As - // a result, if the settings in a preset cause Elastic Transcoder to place all - // watermarks in the same location, the second watermark that you add will cover - // the first one, the third one will cover the second, and the fourth one will - // cover the third. - Watermarks []*JobWatermark `type:"list"` - - // Specifies the width of the output file in pixels. - Width *int64 `type:"integer"` -} - -// String returns the string representation -func (s JobOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s JobOutput) GoString() string { - return s.String() -} - -// Watermarks can be in .png or .jpg format. If you want to display a watermark -// that is not rectangular, use the .png format, which supports transparency. -type JobWatermark struct { - _ struct{} `type:"structure"` - - // The encryption settings, if any, that you want Elastic Transcoder to apply - // to your watermarks. - Encryption *Encryption `type:"structure"` - - // The name of the .png or .jpg file that you want to use for the watermark. - // To determine which Amazon S3 bucket contains the specified file, Elastic - // Transcoder checks the pipeline specified by Pipeline; the Input Bucket object - // in that pipeline identifies the bucket. - // - // If the file name includes a prefix, for example, logos/128x64.png, include - // the prefix in the key. If the file isn't in the specified bucket, Elastic - // Transcoder returns an error. - InputKey *string `min:"1" type:"string"` - - // The ID of the watermark settings that Elastic Transcoder uses to add watermarks - // to the video during transcoding. The settings are in the preset specified - // by Preset for the current output. In that preset, the value of Watermarks - // Id tells Elastic Transcoder which settings to use. - PresetWatermarkId *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s JobWatermark) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s JobWatermark) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *JobWatermark) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "JobWatermark"} - if s.InputKey != nil && len(*s.InputKey) < 1 { - invalidParams.Add(request.NewErrParamMinLen("InputKey", 1)) - } - if s.PresetWatermarkId != nil && len(*s.PresetWatermarkId) < 1 { - invalidParams.Add(request.NewErrParamMinLen("PresetWatermarkId", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The ListJobsByPipelineRequest structure. -type ListJobsByPipelineInput struct { - _ struct{} `type:"structure"` - - // To list jobs in chronological order by the date and time that they were submitted, - // enter true. To list jobs in reverse chronological order, enter false. - Ascending *string `location:"querystring" locationName:"Ascending" type:"string"` - - // When Elastic Transcoder returns more than one page of results, use pageToken - // in subsequent GET requests to get each successive page of results. - PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` - - // The ID of the pipeline for which you want to get job information. - // - // PipelineId is a required field - PipelineId *string `location:"uri" locationName:"PipelineId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ListJobsByPipelineInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListJobsByPipelineInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListJobsByPipelineInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListJobsByPipelineInput"} - if s.PipelineId == nil { - invalidParams.Add(request.NewErrParamRequired("PipelineId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The ListJobsByPipelineResponse structure. -type ListJobsByPipelineOutput struct { - _ struct{} `type:"structure"` - - // An array of Job objects that are in the specified pipeline. - Jobs []*Job `type:"list"` - - // A value that you use to access the second and subsequent pages of results, - // if any. When the jobs in the specified pipeline fit on one page or when you've - // reached the last page of results, the value of NextPageToken is null. - NextPageToken *string `type:"string"` -} - -// String returns the string representation -func (s ListJobsByPipelineOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListJobsByPipelineOutput) GoString() string { - return s.String() -} - -// The ListJobsByStatusRequest structure. -type ListJobsByStatusInput struct { - _ struct{} `type:"structure"` - - // To list jobs in chronological order by the date and time that they were submitted, - // enter true. To list jobs in reverse chronological order, enter false. - Ascending *string `location:"querystring" locationName:"Ascending" type:"string"` - - // When Elastic Transcoder returns more than one page of results, use pageToken - // in subsequent GET requests to get each successive page of results. - PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` - - // To get information about all of the jobs associated with the current AWS - // account that have a given status, specify the following status: Submitted, - // Progressing, Complete, Canceled, or Error. - // - // Status is a required field - Status *string `location:"uri" locationName:"Status" type:"string" required:"true"` -} - -// String returns the string representation -func (s ListJobsByStatusInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListJobsByStatusInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListJobsByStatusInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListJobsByStatusInput"} - if s.Status == nil { - invalidParams.Add(request.NewErrParamRequired("Status")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The ListJobsByStatusResponse structure. -type ListJobsByStatusOutput struct { - _ struct{} `type:"structure"` - - // An array of Job objects that have the specified status. - Jobs []*Job `type:"list"` - - // A value that you use to access the second and subsequent pages of results, - // if any. When the jobs in the specified pipeline fit on one page or when you've - // reached the last page of results, the value of NextPageToken is null. - NextPageToken *string `type:"string"` -} - -// String returns the string representation -func (s ListJobsByStatusOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListJobsByStatusOutput) GoString() string { - return s.String() -} - -// The ListPipelineRequest structure. -type ListPipelinesInput struct { - _ struct{} `type:"structure"` - - // To list pipelines in chronological order by the date and time that they were - // created, enter true. To list pipelines in reverse chronological order, enter - // false. - Ascending *string `location:"querystring" locationName:"Ascending" type:"string"` - - // When Elastic Transcoder returns more than one page of results, use pageToken - // in subsequent GET requests to get each successive page of results. - PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` -} - -// String returns the string representation -func (s ListPipelinesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListPipelinesInput) GoString() string { - return s.String() -} - -// A list of the pipelines associated with the current AWS account. -type ListPipelinesOutput struct { - _ struct{} `type:"structure"` - - // A value that you use to access the second and subsequent pages of results, - // if any. When the pipelines fit on one page or when you've reached the last - // page of results, the value of NextPageToken is null. - NextPageToken *string `type:"string"` - - // An array of Pipeline objects. - Pipelines []*Pipeline `type:"list"` -} - -// String returns the string representation -func (s ListPipelinesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListPipelinesOutput) GoString() string { - return s.String() -} - -// The ListPresetsRequest structure. -type ListPresetsInput struct { - _ struct{} `type:"structure"` - - // To list presets in chronological order by the date and time that they were - // created, enter true. To list presets in reverse chronological order, enter - // false. - Ascending *string `location:"querystring" locationName:"Ascending" type:"string"` - - // When Elastic Transcoder returns more than one page of results, use pageToken - // in subsequent GET requests to get each successive page of results. - PageToken *string `location:"querystring" locationName:"PageToken" type:"string"` -} - -// String returns the string representation -func (s ListPresetsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListPresetsInput) GoString() string { - return s.String() -} - -// The ListPresetsResponse structure. -type ListPresetsOutput struct { - _ struct{} `type:"structure"` - - // A value that you use to access the second and subsequent pages of results, - // if any. When the presets fit on one page or when you've reached the last - // page of results, the value of NextPageToken is null. - NextPageToken *string `type:"string"` - - // An array of Preset objects. - Presets []*Preset `type:"list"` -} - -// String returns the string representation -func (s ListPresetsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListPresetsOutput) GoString() string { - return s.String() -} - -// The Amazon Simple Notification Service (Amazon SNS) topic or topics to notify -// in order to report job status. -// -// To receive notifications, you must also subscribe to the new topic in the -// Amazon SNS console. -type Notifications struct { - _ struct{} `type:"structure"` - - // The Amazon SNS topic that you want to notify when Elastic Transcoder has - // finished processing the job. - Completed *string `type:"string"` - - // The Amazon SNS topic that you want to notify when Elastic Transcoder encounters - // an error condition. - Error *string `type:"string"` - - // The Amazon Simple Notification Service (Amazon SNS) topic that you want to - // notify when Elastic Transcoder has started to process the job. - Progressing *string `type:"string"` - - // The Amazon SNS topic that you want to notify when Elastic Transcoder encounters - // a warning condition. - Warning *string `type:"string"` -} - -// String returns the string representation -func (s Notifications) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Notifications) GoString() string { - return s.String() -} - -// The Permission structure. -type Permission struct { - _ struct{} `type:"structure"` - - // The permission that you want to give to the AWS user that is listed in Grantee. - // Valid values include: READ: The grantee can read the thumbnails and metadata - // for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. READ_ACP: - // The grantee can read the object ACL for thumbnails that Elastic Transcoder - // adds to the Amazon S3 bucket. WRITE_ACP: The grantee can write the ACL for - // the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: - // The grantee has READ, READ_ACP, and WRITE_ACP permissions for the thumbnails - // that Elastic Transcoder adds to the Amazon S3 bucket. - Access []*string `type:"list"` - - // The AWS user or group that you want to have access to transcoded files and - // playlists. To identify the user or group, you can specify the canonical user - // ID for an AWS account, an origin access identity for a CloudFront distribution, - // the registered email address of an AWS account, or a predefined Amazon S3 - // group. - Grantee *string `min:"1" type:"string"` - - // The type of value that appears in the Grantee object: Canonical: Either - // the canonical user ID for an AWS account or an origin access identity for - // an Amazon CloudFront distribution. A canonical user ID is not the same as - // an AWS account number. Email: The registered email address of an AWS account. - // Group: One of the following predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, - // or LogDelivery. - GranteeType *string `type:"string"` -} - -// String returns the string representation -func (s Permission) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Permission) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Permission) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Permission"} - if s.Grantee != nil && len(*s.Grantee) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Grantee", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The pipeline (queue) that is used to manage jobs. -type Pipeline struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) for the pipeline. - Arn *string `type:"string"` - - // The AWS Key Management Service (AWS KMS) key that you want to use with this - // pipeline. - // - // If you use either S3 or S3-AWS-KMS as your Encryption:Mode, you don't need - // to provide a key with your job because a default key, known as an AWS-KMS - // key, is created for you automatically. You need to provide an AWS-KMS key - // only if you want to use a non-default AWS-KMS key, or if you are using an - // Encryption:Mode of AES-PKCS7, AES-CTR, or AES-GCM. - AwsKmsKeyArn *string `type:"string"` - - // Information about the Amazon S3 bucket in which you want Elastic Transcoder - // to save transcoded files and playlists. Either you specify both ContentConfig - // and ThumbnailConfig, or you specify OutputBucket. - // - // Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save - // transcoded files and playlists. Permissions: A list of the users and/or predefined - // Amazon S3 groups you want to have access to transcoded files and playlists, - // and the type of access that you want them to have. GranteeType: The type - // of value that appears in the Grantee object: Canonical: Either the canonical - // user ID for an AWS account or an origin access identity for an Amazon CloudFront - // distribution. Email: The registered email address of an AWS account. Group: - // One of the following predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, - // or LogDelivery. Grantee: The AWS user or group that you want to have access - // to transcoded files and playlists. Access: The permission that you want to - // give to the AWS user that is listed in Grantee. Valid values include: READ: - // The grantee can read the objects and metadata for objects that Elastic Transcoder - // adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object ACL - // for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP: - // The grantee can write the ACL for the objects that Elastic Transcoder adds - // to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, READ_ACP, and - // WRITE_ACP permissions for the objects that Elastic Transcoder adds to the - // Amazon S3 bucket. StorageClass: The Amazon S3 storage class, Standard - // or ReducedRedundancy, that you want Elastic Transcoder to assign to the video - // files and playlists that it stores in your Amazon S3 bucket. - ContentConfig *PipelineOutputConfig `type:"structure"` - - // The identifier for the pipeline. You use this value to identify the pipeline - // in which you want to perform a variety of operations, such as creating a - // job or a preset. - Id *string `type:"string"` - - // The Amazon S3 bucket from which Elastic Transcoder gets media files for transcoding - // and the graphics files, if any, that you want to use for watermarks. - InputBucket *string `type:"string"` - - // The name of the pipeline. We recommend that the name be unique within the - // AWS account, but uniqueness is not enforced. - // - // Constraints: Maximum 40 characters - Name *string `min:"1" type:"string"` - - // The Amazon Simple Notification Service (Amazon SNS) topic that you want to - // notify to report job status. - // - // To receive notifications, you must also subscribe to the new topic in the - // Amazon SNS console. Progressing (optional): The Amazon Simple Notification - // Service (Amazon SNS) topic that you want to notify when Elastic Transcoder - // has started to process the job. Completed (optional): The Amazon SNS topic - // that you want to notify when Elastic Transcoder has finished processing the - // job. Warning (optional): The Amazon SNS topic that you want to notify when - // Elastic Transcoder encounters a warning condition. Error (optional): The - // Amazon SNS topic that you want to notify when Elastic Transcoder encounters - // an error condition. - Notifications *Notifications `type:"structure"` - - // The Amazon S3 bucket in which you want Elastic Transcoder to save transcoded - // files, thumbnails, and playlists. Either you specify this value, or you specify - // both ContentConfig and ThumbnailConfig. - OutputBucket *string `type:"string"` - - // The IAM Amazon Resource Name (ARN) for the role that Elastic Transcoder uses - // to transcode jobs for this pipeline. - Role *string `type:"string"` - - // The current status of the pipeline: - // - // Active: The pipeline is processing jobs. Paused: The pipeline is not currently - // processing jobs. - Status *string `type:"string"` - - // Information about the Amazon S3 bucket in which you want Elastic Transcoder - // to save thumbnail files. Either you specify both ContentConfig and ThumbnailConfig, - // or you specify OutputBucket. - // - // Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save - // thumbnail files. Permissions: A list of the users and/or predefined Amazon - // S3 groups you want to have access to thumbnail files, and the type of access - // that you want them to have. GranteeType: The type of value that appears - // in the Grantee object: Canonical: Either the canonical user ID for an AWS - // account or an origin access identity for an Amazon CloudFront distribution. - // A canonical user ID is not the same as an AWS account number. Email: The - // registered email address of an AWS account. Group: One of the following predefined - // Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery. Grantee: - // The AWS user or group that you want to have access to thumbnail files. Access: - // The permission that you want to give to the AWS user that is listed in Grantee. - // Valid values include: READ: The grantee can read the thumbnails and metadata - // for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. READ_ACP: - // The grantee can read the object ACL for thumbnails that Elastic Transcoder - // adds to the Amazon S3 bucket. WRITE_ACP: The grantee can write the ACL for - // the thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: - // The grantee has READ, READ_ACP, and WRITE_ACP permissions for the thumbnails - // that Elastic Transcoder adds to the Amazon S3 bucket. StorageClass: The - // Amazon S3 storage class, Standard or ReducedRedundancy, that you want Elastic - // Transcoder to assign to the thumbnails that it stores in your Amazon S3 bucket. - ThumbnailConfig *PipelineOutputConfig `type:"structure"` -} - -// String returns the string representation -func (s Pipeline) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Pipeline) GoString() string { - return s.String() -} - -// The PipelineOutputConfig structure. -type PipelineOutputConfig struct { - _ struct{} `type:"structure"` - - // The Amazon S3 bucket in which you want Elastic Transcoder to save the transcoded - // files. Specify this value when all of the following are true: You want to - // save transcoded files, thumbnails (if any), and playlists (if any) together - // in one bucket. You do not want to specify the users or groups who have access - // to the transcoded files, thumbnails, and playlists. You do not want to specify - // the permissions that Elastic Transcoder grants to the files. You want to - // associate the transcoded files and thumbnails with the Amazon S3 Standard - // storage class. If you want to save transcoded files and playlists in one - // bucket and thumbnails in another bucket, specify which users can access the - // transcoded files or the permissions the users have, or change the Amazon - // S3 storage class, omit OutputBucket and specify values for ContentConfig - // and ThumbnailConfig instead. - Bucket *string `type:"string"` - - // Optional. The Permissions object specifies which users and/or predefined - // Amazon S3 groups you want to have access to transcoded files and playlists, - // and the type of access you want them to have. You can grant permissions to - // a maximum of 30 users and/or predefined Amazon S3 groups. - // - // If you include Permissions, Elastic Transcoder grants only the permissions - // that you specify. It does not grant full permissions to the owner of the - // role specified by Role. If you want that user to have full control, you must - // explicitly grant full control to the user. - // - // If you omit Permissions, Elastic Transcoder grants full control over the - // transcoded files and playlists to the owner of the role specified by Role, - // and grants no other permissions to any other user or group. - Permissions []*Permission `type:"list"` - - // The Amazon S3 storage class, Standard or ReducedRedundancy, that you want - // Elastic Transcoder to assign to the video files and playlists that it stores - // in your Amazon S3 bucket. - StorageClass *string `type:"string"` -} - -// String returns the string representation -func (s PipelineOutputConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PipelineOutputConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PipelineOutputConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PipelineOutputConfig"} - if s.Permissions != nil { - for i, v := range s.Permissions { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Permissions", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The PlayReady DRM settings, if any, that you want Elastic Transcoder to apply -// to the output files associated with this playlist. -// -// PlayReady DRM encrypts your media files using AES-CTR encryption. -// -// If you use DRM for an HLSv3 playlist, your outputs must have a master playlist. -type PlayReadyDrm struct { - _ struct{} `type:"structure"` - - // The type of DRM, if any, that you want Elastic Transcoder to apply to the - // output files associated with this playlist. - Format *string `type:"string"` - - // The series of random bits created by a random bit generator, unique for every - // encryption operation, that you want Elastic Transcoder to use to encrypt - // your files. The initialization vector must be base64-encoded, and it must - // be exactly 8 bytes long before being base64-encoded. If no initialization - // vector is provided, Elastic Transcoder generates one for you. - InitializationVector *string `type:"string"` - - // The DRM key for your file, provided by your DRM license provider. The key - // must be base64-encoded, and it must be one of the following bit lengths before - // being base64-encoded: - // - // 128, 192, or 256. - // - // The key must also be encrypted by using AWS KMS. - Key *string `type:"string"` - - // The ID for your DRM key, so that your DRM license provider knows which key - // to provide. - // - // The key ID must be provided in big endian, and Elastic Transcoder will convert - // it to little endian before inserting it into the PlayReady DRM headers. If - // you are unsure whether your license server provides your key ID in big or - // little endian, check with your DRM provider. - KeyId *string `type:"string"` - - // The MD5 digest of the key used for DRM on your file, and that you want Elastic - // Transcoder to use as a checksum to make sure your key was not corrupted in - // transit. The key MD5 must be base64-encoded, and it must be exactly 16 bytes - // before being base64-encoded. - KeyMd5 *string `type:"string"` - - // The location of the license key required to play DRM content. The URL must - // be an absolute path, and is referenced by the PlayReady header. The PlayReady - // header is referenced in the protection header of the client manifest for - // Smooth Streaming outputs, and in the EXT-X-DXDRM and EXT-XDXDRMINFO metadata - // tags for HLS playlist outputs. An example URL looks like this: https://www.example.com/exampleKey/ - LicenseAcquisitionUrl *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s PlayReadyDrm) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PlayReadyDrm) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PlayReadyDrm) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PlayReadyDrm"} - if s.LicenseAcquisitionUrl != nil && len(*s.LicenseAcquisitionUrl) < 1 { - invalidParams.Add(request.NewErrParamMinLen("LicenseAcquisitionUrl", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Use Only for Fragmented MP4 or MPEG-TS Outputs. If you specify a preset for -// which the value of Container is fmp4 (Fragmented MP4) or ts (MPEG-TS), Playlists -// contains information about the master playlists that you want Elastic Transcoder -// to create. We recommend that you create only one master playlist per output -// format. The maximum number of master playlists in a job is 30. -type Playlist struct { - _ struct{} `type:"structure"` - - // The format of the output playlist. Valid formats include HLSv3, HLSv4, and - // Smooth. - Format *string `type:"string"` - - // The HLS content protection settings, if any, that you want Elastic Transcoder - // to apply to the output files associated with this playlist. - HlsContentProtection *HlsContentProtection `type:"structure"` - - // The name that you want Elastic Transcoder to assign to the master playlist, - // for example, nyc-vacation.m3u8. If the name includes a / character, the section - // of the name before the last / must be identical for all Name objects. If - // you create more than one master playlist, the values of all Name objects - // must be unique. - // - // Note: Elastic Transcoder automatically appends the relevant file extension - // to the file name (.m3u8 for HLSv3 and HLSv4 playlists, and .ism and .ismc - // for Smooth playlists). If you include a file extension in Name, the file - // name will have two extensions. - Name *string `min:"1" type:"string"` - - // For each output in this job that you want to include in a master playlist, - // the value of the Outputs:Key object. - // - // If your output is not HLS or does not have a segment duration set, the - // name of the output file is a concatenation of OutputKeyPrefix and Outputs:Key: - // - // OutputKeyPrefixOutputs:Key - // - // If your output is HLSv3 and has a segment duration set, or is not included - // in a playlist, Elastic Transcoder creates an output playlist file with a - // file extension of .m3u8, and a series of .ts files that include a five-digit - // sequential counter beginning with 00000: - // - // OutputKeyPrefixOutputs:Key.m3u8 - // - // OutputKeyPrefixOutputs:Key00000.ts - // - // If your output is HLSv4, has a segment duration set, and is included in - // an HLSv4 playlist, Elastic Transcoder creates an output playlist file with - // a file extension of _v4.m3u8. If the output is video, Elastic Transcoder - // also creates an output file with an extension of _iframe.m3u8: - // - // OutputKeyPrefixOutputs:Key_v4.m3u8 - // - // OutputKeyPrefixOutputs:Key_iframe.m3u8 - // - // OutputKeyPrefixOutputs:Key.ts - // - // Elastic Transcoder automatically appends the relevant file extension to - // the file name. If you include a file extension in Output Key, the file name - // will have two extensions. - // - // If you include more than one output in a playlist, any segment duration - // settings, clip settings, or caption settings must be the same for all outputs - // in the playlist. For Smooth playlists, the Audio:Profile, Video:Profile, - // and Video:FrameRate to Video:KeyframesMaxDist ratio must be the same for - // all outputs. - OutputKeys []*string `type:"list"` - - // The DRM settings, if any, that you want Elastic Transcoder to apply to the - // output files associated with this playlist. - PlayReadyDrm *PlayReadyDrm `type:"structure"` - - // The status of the job with which the playlist is associated. - Status *string `type:"string"` - - // Information that further explains the status. - StatusDetail *string `type:"string"` -} - -// String returns the string representation -func (s Playlist) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Playlist) GoString() string { - return s.String() -} - -// Presets are templates that contain most of the settings for transcoding media -// files from one format to another. Elastic Transcoder includes some default -// presets for common formats, for example, several iPod and iPhone versions. -// You can also create your own presets for formats that aren't included among -// the default presets. You specify which preset you want to use when you create -// a job. -type Preset struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) for the preset. - Arn *string `type:"string"` - - // A section of the response body that provides information about the audio - // preset values. - Audio *AudioParameters `type:"structure"` - - // The container type for the output file. Valid values include flac, flv, fmp4, - // gif, mp3, mp4, mpg, mxf, oga, ogg, ts, and webm. - Container *string `type:"string"` - - // A description of the preset. - Description *string `type:"string"` - - // Identifier for the new preset. You use this value to get settings for the - // preset or to delete it. - Id *string `type:"string"` - - // The name of the preset. - Name *string `min:"1" type:"string"` - - // A section of the response body that provides information about the thumbnail - // preset values, if any. - Thumbnails *Thumbnails `type:"structure"` - - // Whether the preset is a default preset provided by Elastic Transcoder (System) - // or a preset that you have defined (Custom). - Type *string `type:"string"` - - // A section of the response body that provides information about the video - // preset values. - Video *VideoParameters `type:"structure"` -} - -// String returns the string representation -func (s Preset) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Preset) GoString() string { - return s.String() -} - -// Settings for the size, location, and opacity of graphics that you want Elastic -// Transcoder to overlay over videos that are transcoded using this preset. -// You can specify settings for up to four watermarks. Watermarks appear in -// the specified size and location, and with the specified opacity for the duration -// of the transcoded video. -// -// Watermarks can be in .png or .jpg format. If you want to display a watermark -// that is not rectangular, use the .png format, which supports transparency. -// -// When you create a job that uses this preset, you specify the .png or .jpg -// graphics that you want Elastic Transcoder to include in the transcoded videos. -// You can specify fewer graphics in the job than you specify watermark settings -// in the preset, which allows you to use the same preset for up to four watermarks -// that have different dimensions. -type PresetWatermark struct { - _ struct{} `type:"structure"` - - // The horizontal position of the watermark unless you specify a non-zero value - // for HorizontalOffset: Left: The left edge of the watermark is aligned with - // the left border of the video. Right: The right edge of the watermark is aligned - // with the right border of the video. Center: The watermark is centered between - // the left and right borders. - HorizontalAlign *string `type:"string"` - - // The amount by which you want the horizontal position of the watermark to - // be offset from the position specified by HorizontalAlign: number of pixels - // (px): The minimum value is 0 pixels, and the maximum value is the value of - // MaxWidth. integer percentage (%): The range of valid values is 0 to 100. - // For example, if you specify Left for HorizontalAlign and 5px for HorizontalOffset, - // the left side of the watermark appears 5 pixels from the left border of the - // output video. - // - // HorizontalOffset is only valid when the value of HorizontalAlign is Left - // or Right. If you specify an offset that causes the watermark to extend beyond - // the left or right border and Elastic Transcoder has not added black bars, - // the watermark is cropped. If Elastic Transcoder has added black bars, the - // watermark extends into the black bars. If the watermark extends beyond the - // black bars, it is cropped. - // - // Use the value of Target to specify whether you want to include the black - // bars that are added by Elastic Transcoder, if any, in the offset calculation. - HorizontalOffset *string `type:"string"` - - // A unique identifier for the settings for one watermark. The value of Id can - // be up to 40 characters long. - Id *string `min:"1" type:"string"` - - // The maximum height of the watermark in one of the following formats: number - // of pixels (px): The minimum value is 16 pixels, and the maximum value is - // the value of MaxHeight. integer percentage (%): The range of valid values - // is 0 to 100. Use the value of Target to specify whether you want Elastic - // Transcoder to include the black bars that are added by Elastic Transcoder, - // if any, in the calculation. If you specify the value in pixels, it must - // be less than or equal to the value of MaxHeight. - MaxHeight *string `type:"string"` - - // The maximum width of the watermark in one of the following formats: number - // of pixels (px): The minimum value is 16 pixels, and the maximum value is - // the value of MaxWidth. integer percentage (%): The range of valid values - // is 0 to 100. Use the value of Target to specify whether you want Elastic - // Transcoder to include the black bars that are added by Elastic Transcoder, - // if any, in the calculation. If you specify the value in pixels, it must be - // less than or equal to the value of MaxWidth. - MaxWidth *string `type:"string"` - - // A percentage that indicates how much you want a watermark to obscure the - // video in the location where it appears. Valid values are 0 (the watermark - // is invisible) to 100 (the watermark completely obscures the video in the - // specified location). The datatype of Opacity is float. - // - // Elastic Transcoder supports transparent .png graphics. If you use a transparent - // .png, the transparent portion of the video appears as if you had specified - // a value of 0 for Opacity. The .jpg file format doesn't support transparency. - Opacity *string `type:"string"` - - // A value that controls scaling of the watermark: Fit: Elastic Transcoder - // scales the watermark so it matches the value that you specified in either - // MaxWidth or MaxHeight without exceeding the other value. Stretch: Elastic - // Transcoder stretches the watermark to match the values that you specified - // for MaxWidth and MaxHeight. If the relative proportions of the watermark - // and the values of MaxWidth and MaxHeight are different, the watermark will - // be distorted. ShrinkToFit: Elastic Transcoder scales the watermark down so - // that its dimensions match the values that you specified for at least one - // of MaxWidth and MaxHeight without exceeding either value. If you specify - // this option, Elastic Transcoder does not scale the watermark up. - SizingPolicy *string `type:"string"` - - // A value that determines how Elastic Transcoder interprets values that you - // specified for HorizontalOffset, VerticalOffset, MaxWidth, and MaxHeight: - // Content: HorizontalOffset and VerticalOffset values are calculated based - // on the borders of the video excluding black bars added by Elastic Transcoder, - // if any. In addition, MaxWidth and MaxHeight, if specified as a percentage, - // are calculated based on the borders of the video excluding black bars added - // by Elastic Transcoder, if any. Frame: HorizontalOffset and VerticalOffset - // values are calculated based on the borders of the video including black bars - // added by Elastic Transcoder, if any. In addition, MaxWidth and MaxHeight, - // if specified as a percentage, are calculated based on the borders of the - // video including black bars added by Elastic Transcoder, if any. - Target *string `type:"string"` - - // The vertical position of the watermark unless you specify a non-zero value - // for VerticalOffset: Top: The top edge of the watermark is aligned with the - // top border of the video. Bottom: The bottom edge of the watermark is aligned - // with the bottom border of the video. Center: The watermark is centered between - // the top and bottom borders. - VerticalAlign *string `type:"string"` - - // VerticalOffset The amount by which you want the vertical position of the - // watermark to be offset from the position specified by VerticalAlign: number - // of pixels (px): The minimum value is 0 pixels, and the maximum value is the - // value of MaxHeight. integer percentage (%): The range of valid values is - // 0 to 100. For example, if you specify Top for VerticalAlign and 5px for - // VerticalOffset, the top of the watermark appears 5 pixels from the top border - // of the output video. - // - // VerticalOffset is only valid when the value of VerticalAlign is Top or Bottom. - // - // If you specify an offset that causes the watermark to extend beyond the - // top or bottom border and Elastic Transcoder has not added black bars, the - // watermark is cropped. If Elastic Transcoder has added black bars, the watermark - // extends into the black bars. If the watermark extends beyond the black bars, - // it is cropped. - // - // Use the value of Target to specify whether you want Elastic Transcoder to - // include the black bars that are added by Elastic Transcoder, if any, in the - // offset calculation. - VerticalOffset *string `type:"string"` -} - -// String returns the string representation -func (s PresetWatermark) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PresetWatermark) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PresetWatermark) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PresetWatermark"} - if s.Id != nil && len(*s.Id) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Id", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The ReadJobRequest structure. -type ReadJobInput struct { - _ struct{} `type:"structure"` - - // The identifier of the job for which you want to get detailed information. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s ReadJobInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReadJobInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReadJobInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReadJobInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The ReadJobResponse structure. -type ReadJobOutput struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the job. - Job *Job `type:"structure"` -} - -// String returns the string representation -func (s ReadJobOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReadJobOutput) GoString() string { - return s.String() -} - -// The ReadPipelineRequest structure. -type ReadPipelineInput struct { - _ struct{} `type:"structure"` - - // The identifier of the pipeline to read. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s ReadPipelineInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReadPipelineInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReadPipelineInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReadPipelineInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The ReadPipelineResponse structure. -type ReadPipelineOutput struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the pipeline. - Pipeline *Pipeline `type:"structure"` - - // Elastic Transcoder returns a warning if the resources used by your pipeline - // are not in the same region as the pipeline. - // - // Using resources in the same region, such as your Amazon S3 buckets, Amazon - // SNS notification topics, and AWS KMS key, reduces processing time and prevents - // cross-regional charges. - Warnings []*Warning `type:"list"` -} - -// String returns the string representation -func (s ReadPipelineOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReadPipelineOutput) GoString() string { - return s.String() -} - -// The ReadPresetRequest structure. -type ReadPresetInput struct { - _ struct{} `type:"structure"` - - // The identifier of the preset for which you want to get detailed information. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s ReadPresetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReadPresetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReadPresetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReadPresetInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The ReadPresetResponse structure. -type ReadPresetOutput struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the preset. - Preset *Preset `type:"structure"` -} - -// String returns the string representation -func (s ReadPresetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReadPresetOutput) GoString() string { - return s.String() -} - -// The TestRoleRequest structure. -type TestRoleInput struct { - _ struct{} `type:"structure"` - - // The Amazon S3 bucket that contains media files to be transcoded. The action - // attempts to read from this bucket. - // - // InputBucket is a required field - InputBucket *string `type:"string" required:"true"` - - // The Amazon S3 bucket that Elastic Transcoder will write transcoded media - // files to. The action attempts to read from this bucket. - // - // OutputBucket is a required field - OutputBucket *string `type:"string" required:"true"` - - // The IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder - // to test. - // - // Role is a required field - Role *string `type:"string" required:"true"` - - // The ARNs of one or more Amazon Simple Notification Service (Amazon SNS) topics - // that you want the action to send a test notification to. - // - // Topics is a required field - Topics []*string `type:"list" required:"true"` -} - -// String returns the string representation -func (s TestRoleInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TestRoleInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TestRoleInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TestRoleInput"} - if s.InputBucket == nil { - invalidParams.Add(request.NewErrParamRequired("InputBucket")) - } - if s.OutputBucket == nil { - invalidParams.Add(request.NewErrParamRequired("OutputBucket")) - } - if s.Role == nil { - invalidParams.Add(request.NewErrParamRequired("Role")) - } - if s.Topics == nil { - invalidParams.Add(request.NewErrParamRequired("Topics")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The TestRoleResponse structure. -type TestRoleOutput struct { - _ struct{} `type:"structure"` - - // If the Success element contains false, this value is an array of one or more - // error messages that were generated during the test process. - Messages []*string `type:"list"` - - // If the operation is successful, this value is true; otherwise, the value - // is false. - Success *string `type:"string"` -} - -// String returns the string representation -func (s TestRoleOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TestRoleOutput) GoString() string { - return s.String() -} - -// Thumbnails for videos. -type Thumbnails struct { - _ struct{} `type:"structure"` - - // To better control resolution and aspect ratio of thumbnails, we recommend - // that you use the values MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy - // instead of Resolution and AspectRatio. The two groups of settings are mutually - // exclusive. Do not use them together. - // - // The aspect ratio of thumbnails. Valid values include: - // - // auto, 1:1, 4:3, 3:2, 16:9 - // - // If you specify auto, Elastic Transcoder tries to preserve the aspect ratio - // of the video in the output file. - AspectRatio *string `type:"string"` - - // The format of thumbnails, if any. Valid values are jpg and png. - // - // You specify whether you want Elastic Transcoder to create thumbnails when - // you create a job. - Format *string `type:"string"` - - // The approximate number of seconds between thumbnails. Specify an integer - // value. - Interval *string `type:"string"` - - // The maximum height of thumbnails in pixels. If you specify auto, Elastic - // Transcoder uses 1080 (Full HD) as the default value. If you specify a numeric - // value, enter an even integer between 32 and 3072. - MaxHeight *string `type:"string"` - - // The maximum width of thumbnails in pixels. If you specify auto, Elastic Transcoder - // uses 1920 (Full HD) as the default value. If you specify a numeric value, - // enter an even integer between 32 and 4096. - MaxWidth *string `type:"string"` - - // When you set PaddingPolicy to Pad, Elastic Transcoder may add black bars - // to the top and bottom and/or left and right sides of thumbnails to make the - // total size of the thumbnails match the values that you specified for thumbnail - // MaxWidth and MaxHeight settings. - PaddingPolicy *string `type:"string"` - - // To better control resolution and aspect ratio of thumbnails, we recommend - // that you use the values MaxWidth, MaxHeight, SizingPolicy, and PaddingPolicy - // instead of Resolution and AspectRatio. The two groups of settings are mutually - // exclusive. Do not use them together. - // - // The width and height of thumbnail files in pixels. Specify a value in the - // format width x height where both values are even integers. The values cannot - // exceed the width and height that you specified in the Video:Resolution object. - Resolution *string `type:"string"` - - // Specify one of the following values to control scaling of thumbnails: - // - // Fit: Elastic Transcoder scales thumbnails so they match the value that - // you specified in thumbnail MaxWidth or MaxHeight settings without exceeding - // the other value. Fill: Elastic Transcoder scales thumbnails so they match - // the value that you specified in thumbnail MaxWidth or MaxHeight settings - // and matches or exceeds the other value. Elastic Transcoder centers the image - // in thumbnails and then crops in the dimension (if any) that exceeds the maximum - // value. Stretch: Elastic Transcoder stretches thumbnails to match the values - // that you specified for thumbnail MaxWidth and MaxHeight settings. If the - // relative proportions of the input video and thumbnails are different, the - // thumbnails will be distorted. Keep: Elastic Transcoder does not scale thumbnails. - // If either dimension of the input video exceeds the values that you specified - // for thumbnail MaxWidth and MaxHeight settings, Elastic Transcoder crops the - // thumbnails. ShrinkToFit: Elastic Transcoder scales thumbnails down so that - // their dimensions match the values that you specified for at least one of - // thumbnail MaxWidth and MaxHeight without exceeding either value. If you specify - // this option, Elastic Transcoder does not scale thumbnails up. ShrinkToFill: - // Elastic Transcoder scales thumbnails down so that their dimensions match - // the values that you specified for at least one of MaxWidth and MaxHeight - // without dropping below either value. If you specify this option, Elastic - // Transcoder does not scale thumbnails up. - SizingPolicy *string `type:"string"` -} - -// String returns the string representation -func (s Thumbnails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Thumbnails) GoString() string { - return s.String() -} - -// Settings that determine when a clip begins and how long it lasts. -type TimeSpan struct { - _ struct{} `type:"structure"` - - // The duration of the clip. The format can be either HH:mm:ss.SSS (maximum - // value: 23:59:59.999; SSS is thousandths of a second) or sssss.SSS (maximum - // value: 86399.999). If you don't specify a value, Elastic Transcoder creates - // an output file from StartTime to the end of the file. - // - // If you specify a value longer than the duration of the input file, Elastic - // Transcoder transcodes the file and returns a warning message. - Duration *string `type:"string"` - - // The place in the input file where you want a clip to start. The format can - // be either HH:mm:ss.SSS (maximum value: 23:59:59.999; SSS is thousandths of - // a second) or sssss.SSS (maximum value: 86399.999). If you don't specify a - // value, Elastic Transcoder starts at the beginning of the input file. - StartTime *string `type:"string"` -} - -// String returns the string representation -func (s TimeSpan) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TimeSpan) GoString() string { - return s.String() -} - -// Details about the timing of a job. -type Timing struct { - _ struct{} `type:"structure"` - - // The time the job finished transcoding, in epoch milliseconds. - FinishTimeMillis *int64 `type:"long"` - - // The time the job began transcoding, in epoch milliseconds. - StartTimeMillis *int64 `type:"long"` - - // The time the job was submitted to Elastic Transcoder, in epoch milliseconds. - SubmitTimeMillis *int64 `type:"long"` -} - -// String returns the string representation -func (s Timing) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Timing) GoString() string { - return s.String() -} - -// The UpdatePipelineRequest structure. -type UpdatePipelineInput struct { - _ struct{} `type:"structure"` - - // The AWS Key Management Service (AWS KMS) key that you want to use with this - // pipeline. - // - // If you use either S3 or S3-AWS-KMS as your Encryption:Mode, you don't need - // to provide a key with your job because a default key, known as an AWS-KMS - // key, is created for you automatically. You need to provide an AWS-KMS key - // only if you want to use a non-default AWS-KMS key, or if you are using an - // Encryption:Mode of AES-PKCS7, AES-CTR, or AES-GCM. - AwsKmsKeyArn *string `type:"string"` - - // The optional ContentConfig object specifies information about the Amazon - // S3 bucket in which you want Elastic Transcoder to save transcoded files and - // playlists: which bucket to use, which users you want to have access to the - // files, the type of access you want users to have, and the storage class that - // you want to assign to the files. - // - // If you specify values for ContentConfig, you must also specify values for - // ThumbnailConfig. - // - // If you specify values for ContentConfig and ThumbnailConfig, omit the OutputBucket - // object. - // - // Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save - // transcoded files and playlists. Permissions (Optional): The Permissions object - // specifies which users you want to have access to transcoded files and the - // type of access you want them to have. You can grant permissions to a maximum - // of 30 users and/or predefined Amazon S3 groups. Grantee Type: Specify the - // type of value that appears in the Grantee object: Canonical: The value in - // the Grantee object is either the canonical user ID for an AWS account or - // an origin access identity for an Amazon CloudFront distribution. For more - // information about canonical user IDs, see Access Control List (ACL) Overview - // in the Amazon Simple Storage Service Developer Guide. For more information - // about using CloudFront origin access identities to require that users use - // CloudFront URLs instead of Amazon S3 URLs, see Using an Origin Access Identity - // to Restrict Access to Your Amazon S3 Content. A canonical user ID is not - // the same as an AWS account number. Email: The value in the Grantee object - // is the registered email address of an AWS account. Group: The value in the - // Grantee object is one of the following predefined Amazon S3 groups: AllUsers, - // AuthenticatedUsers, or LogDelivery. Grantee: The AWS user or group that - // you want to have access to transcoded files and playlists. To identify the - // user or group, you can specify the canonical user ID for an AWS account, - // an origin access identity for a CloudFront distribution, the registered email - // address of an AWS account, or a predefined Amazon S3 group Access: The - // permission that you want to give to the AWS user that you specified in Grantee. - // Permissions are granted on the files that Elastic Transcoder adds to the - // bucket, including playlists and video files. Valid values include: READ: - // The grantee can read the objects and metadata for objects that Elastic Transcoder - // adds to the Amazon S3 bucket. READ_ACP: The grantee can read the object ACL - // for objects that Elastic Transcoder adds to the Amazon S3 bucket. WRITE_ACP: - // The grantee can write the ACL for the objects that Elastic Transcoder adds - // to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, READ_ACP, and - // WRITE_ACP permissions for the objects that Elastic Transcoder adds to the - // Amazon S3 bucket. StorageClass: The Amazon S3 storage class, Standard - // or ReducedRedundancy, that you want Elastic Transcoder to assign to the video - // files and playlists that it stores in your Amazon S3 bucket. - ContentConfig *PipelineOutputConfig `type:"structure"` - - // The ID of the pipeline that you want to update. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The Amazon S3 bucket in which you saved the media files that you want to - // transcode and the graphics that you want to use as watermarks. - InputBucket *string `type:"string"` - - // The name of the pipeline. We recommend that the name be unique within the - // AWS account, but uniqueness is not enforced. - // - // Constraints: Maximum 40 characters - Name *string `min:"1" type:"string"` - - // The Amazon Simple Notification Service (Amazon SNS) topic or topics to notify - // in order to report job status. - // - // To receive notifications, you must also subscribe to the new topic in the - // Amazon SNS console. - Notifications *Notifications `type:"structure"` - - // The IAM Amazon Resource Name (ARN) for the role that you want Elastic Transcoder - // to use to transcode jobs for this pipeline. - Role *string `type:"string"` - - // The ThumbnailConfig object specifies several values, including the Amazon - // S3 bucket in which you want Elastic Transcoder to save thumbnail files, which - // users you want to have access to the files, the type of access you want users - // to have, and the storage class that you want to assign to the files. - // - // If you specify values for ContentConfig, you must also specify values for - // ThumbnailConfig even if you don't want to create thumbnails. - // - // If you specify values for ContentConfig and ThumbnailConfig, omit the OutputBucket - // object. - // - // Bucket: The Amazon S3 bucket in which you want Elastic Transcoder to save - // thumbnail files. Permissions (Optional): The Permissions object specifies - // which users and/or predefined Amazon S3 groups you want to have access to - // thumbnail files, and the type of access you want them to have. You can grant - // permissions to a maximum of 30 users and/or predefined Amazon S3 groups. - // GranteeType: Specify the type of value that appears in the Grantee object: - // Canonical: The value in the Grantee object is either the canonical user - // ID for an AWS account or an origin access identity for an Amazon CloudFront - // distribution. A canonical user ID is not the same as an AWS account number. - // Email: The value in the Grantee object is the registered email address of - // an AWS account. Group: The value in the Grantee object is one of the following - // predefined Amazon S3 groups: AllUsers, AuthenticatedUsers, or LogDelivery. - // Grantee: The AWS user or group that you want to have access to thumbnail - // files. To identify the user or group, you can specify the canonical user - // ID for an AWS account, an origin access identity for a CloudFront distribution, - // the registered email address of an AWS account, or a predefined Amazon S3 - // group. Access: The permission that you want to give to the AWS user that - // you specified in Grantee. Permissions are granted on the thumbnail files - // that Elastic Transcoder adds to the bucket. Valid values include: READ: - // The grantee can read the thumbnails and metadata for objects that Elastic - // Transcoder adds to the Amazon S3 bucket. READ_ACP: The grantee can read the - // object ACL for thumbnails that Elastic Transcoder adds to the Amazon S3 bucket. - // WRITE_ACP: The grantee can write the ACL for the thumbnails that Elastic - // Transcoder adds to the Amazon S3 bucket. FULL_CONTROL: The grantee has READ, - // READ_ACP, and WRITE_ACP permissions for the thumbnails that Elastic Transcoder - // adds to the Amazon S3 bucket. StorageClass: The Amazon S3 storage class, - // Standard or ReducedRedundancy, that you want Elastic Transcoder to assign - // to the thumbnails that it stores in your Amazon S3 bucket. - ThumbnailConfig *PipelineOutputConfig `type:"structure"` -} - -// String returns the string representation -func (s UpdatePipelineInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdatePipelineInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdatePipelineInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdatePipelineInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.Name != nil && len(*s.Name) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Name", 1)) - } - if s.ContentConfig != nil { - if err := s.ContentConfig.Validate(); err != nil { - invalidParams.AddNested("ContentConfig", err.(request.ErrInvalidParams)) - } - } - if s.ThumbnailConfig != nil { - if err := s.ThumbnailConfig.Validate(); err != nil { - invalidParams.AddNested("ThumbnailConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The UpdatePipelineNotificationsRequest structure. -type UpdatePipelineNotificationsInput struct { - _ struct{} `type:"structure"` - - // The identifier of the pipeline for which you want to change notification - // settings. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The topic ARN for the Amazon Simple Notification Service (Amazon SNS) topic - // that you want to notify to report job status. - // - // To receive notifications, you must also subscribe to the new topic in the - // Amazon SNS console. Progressing: The topic ARN for the Amazon Simple Notification - // Service (Amazon SNS) topic that you want to notify when Elastic Transcoder - // has started to process jobs that are added to this pipeline. This is the - // ARN that Amazon SNS returned when you created the topic. Completed: The topic - // ARN for the Amazon SNS topic that you want to notify when Elastic Transcoder - // has finished processing a job. This is the ARN that Amazon SNS returned when - // you created the topic. Warning: The topic ARN for the Amazon SNS topic that - // you want to notify when Elastic Transcoder encounters a warning condition. - // This is the ARN that Amazon SNS returned when you created the topic. Error: - // The topic ARN for the Amazon SNS topic that you want to notify when Elastic - // Transcoder encounters an error condition. This is the ARN that Amazon SNS - // returned when you created the topic. - // - // Notifications is a required field - Notifications *Notifications `type:"structure" required:"true"` -} - -// String returns the string representation -func (s UpdatePipelineNotificationsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdatePipelineNotificationsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdatePipelineNotificationsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdatePipelineNotificationsInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.Notifications == nil { - invalidParams.Add(request.NewErrParamRequired("Notifications")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The UpdatePipelineNotificationsResponse structure. -type UpdatePipelineNotificationsOutput struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the pipeline. - Pipeline *Pipeline `type:"structure"` -} - -// String returns the string representation -func (s UpdatePipelineNotificationsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdatePipelineNotificationsOutput) GoString() string { - return s.String() -} - -// When you update a pipeline, Elastic Transcoder returns the values that you -// specified in the request. -type UpdatePipelineOutput struct { - _ struct{} `type:"structure"` - - // The pipeline (queue) that is used to manage jobs. - Pipeline *Pipeline `type:"structure"` - - // Elastic Transcoder returns a warning if the resources used by your pipeline - // are not in the same region as the pipeline. - // - // Using resources in the same region, such as your Amazon S3 buckets, Amazon - // SNS notification topics, and AWS KMS key, reduces processing time and prevents - // cross-regional charges. - Warnings []*Warning `type:"list"` -} - -// String returns the string representation -func (s UpdatePipelineOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdatePipelineOutput) GoString() string { - return s.String() -} - -// The UpdatePipelineStatusRequest structure. -type UpdatePipelineStatusInput struct { - _ struct{} `type:"structure"` - - // The identifier of the pipeline to update. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The desired status of the pipeline: - // - // Active: The pipeline is processing jobs. Paused: The pipeline is not - // currently processing jobs. - // - // Status is a required field - Status *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s UpdatePipelineStatusInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdatePipelineStatusInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdatePipelineStatusInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdatePipelineStatusInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.Status == nil { - invalidParams.Add(request.NewErrParamRequired("Status")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// When you update status for a pipeline, Elastic Transcoder returns the values -// that you specified in the request. -type UpdatePipelineStatusOutput struct { - _ struct{} `type:"structure"` - - // A section of the response body that provides information about the pipeline. - Pipeline *Pipeline `type:"structure"` -} - -// String returns the string representation -func (s UpdatePipelineStatusOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdatePipelineStatusOutput) GoString() string { - return s.String() -} - -// The VideoParameters structure. -type VideoParameters struct { - _ struct{} `type:"structure"` - - // To better control resolution and aspect ratio of output videos, we recommend - // that you use the values MaxWidth, MaxHeight, SizingPolicy, PaddingPolicy, - // and DisplayAspectRatio instead of Resolution and AspectRatio. The two groups - // of settings are mutually exclusive. Do not use them together. - // - // The display aspect ratio of the video in the output file. Valid values - // include: - // - // auto, 1:1, 4:3, 3:2, 16:9 - // - // If you specify auto, Elastic Transcoder tries to preserve the aspect ratio - // of the input file. - // - // If you specify an aspect ratio for the output file that differs from aspect - // ratio of the input file, Elastic Transcoder adds pillarboxing (black bars - // on the sides) or letterboxing (black bars on the top and bottom) to maintain - // the aspect ratio of the active region of the video. - AspectRatio *string `type:"string"` - - // The bit rate of the video stream in the output file, in kilobits/second. - // Valid values depend on the values of Level and Profile. If you specify auto, - // Elastic Transcoder uses the detected bit rate of the input source. If you - // specify a value other than auto, we recommend that you specify a value less - // than or equal to the maximum H.264-compliant value listed for your level - // and profile: - // - // Level - Maximum video bit rate in kilobits/second (baseline and main Profile) - // : maximum video bit rate in kilobits/second (high Profile) - // - // 1 - 64 : 80 1b - 128 : 160 1.1 - 192 : 240 1.2 - 384 : 480 1.3 - 768 : - // 960 2 - 2000 : 2500 3 - 10000 : 12500 3.1 - 14000 : 17500 3.2 - 20000 : 25000 - // 4 - 20000 : 25000 4.1 - 50000 : 62500 - BitRate *string `type:"string"` - - // The video codec for the output file. Valid values include gif, H.264, mpeg2, - // and vp8. You can only specify vp8 when the container type is webm, gif when - // the container type is gif, and mpeg2 when the container type is mpg. - Codec *string `type:"string"` - - // Profile (H.264/VP8 Only) - // - // The H.264 profile that you want to use for the output file. Elastic Transcoder - // supports the following profiles: - // - // baseline: The profile most commonly used for videoconferencing and for - // mobile applications. main: The profile used for standard-definition digital - // TV broadcasts. high: The profile used for high-definition digital TV broadcasts - // and for Blu-ray discs. Level (H.264 Only) - // - // The H.264 level that you want to use for the output file. Elastic Transcoder - // supports the following levels: - // - // 1, 1b, 1.1, 1.2, 1.3, 2, 2.1, 2.2, 3, 3.1, 3.2, 4, 4.1 - // - // MaxReferenceFrames (H.264 Only) - // - // Applicable only when the value of Video:Codec is H.264. The maximum number - // of previously decoded frames to use as a reference for decoding future frames. - // Valid values are integers 0 through 16, but we recommend that you not use - // a value greater than the following: - // - // Min(Floor(Maximum decoded picture buffer in macroblocks * 256 / (Width - // in pixels * Height in pixels)), 16) - // - // where Width in pixels and Height in pixels represent either MaxWidth and - // MaxHeight, or Resolution. Maximum decoded picture buffer in macroblocks depends - // on the value of the Level object. See the list below. (A macroblock is a - // block of pixels measuring 16x16.) - // - // 1 - 396 1b - 396 1.1 - 900 1.2 - 2376 1.3 - 2376 2 - 2376 2.1 - 4752 2.2 - // - 8100 3 - 8100 3.1 - 18000 3.2 - 20480 4 - 32768 4.1 - 32768 MaxBitRate - // (Optional, H.264/MPEG2/VP8 only) - // - // The maximum number of bits per second in a video buffer; the size of the - // buffer is specified by BufferSize. Specify a value between 16 and 62,500. - // You can reduce the bandwidth required to stream a video by reducing the maximum - // bit rate, but this also reduces the quality of the video. - // - // BufferSize (Optional, H.264/MPEG2/VP8 only) - // - // The maximum number of bits in any x seconds of the output video. This window - // is commonly 10 seconds, the standard segment duration when you're using FMP4 - // or MPEG-TS for the container type of the output video. Specify an integer - // greater than 0. If you specify MaxBitRate and omit BufferSize, Elastic Transcoder - // sets BufferSize to 10 times the value of MaxBitRate. - // - // InterlacedMode (Optional, H.264/MPEG2 Only) - // - // The interlace mode for the output video. - // - // Interlaced video is used to double the perceived frame rate for a video - // by interlacing two fields (one field on every other line, the other field - // on the other lines) so that the human eye registers multiple pictures per - // frame. Interlacing reduces the bandwidth required for transmitting a video, - // but can result in blurred images and flickering. - // - // Valid values include Progressive (no interlacing, top to bottom), TopFirst - // (top field first), BottomFirst (bottom field first), and Auto. - // - // If InterlaceMode is not specified, Elastic Transcoder uses Progressive for - // the output. If Auto is specified, Elastic Transcoder interlaces the output. - // - // ColorSpaceConversionMode (Optional, H.264/MPEG2 Only) - // - // The color space conversion Elastic Transcoder applies to the output video. - // Color spaces are the algorithms used by the computer to store information - // about how to render color. Bt.601 is the standard for standard definition - // video, while Bt.709 is the standard for high definition video. - // - // Valid values include None, Bt709toBt601, Bt601toBt709, and Auto. - // - // If you chose Auto for ColorSpaceConversionMode and your output is interlaced, - // your frame rate is one of 23.97, 24, 25, 29.97, 50, or 60, your SegmentDuration - // is null, and you are using one of the resolution changes from the list below, - // Elastic Transcoder applies the following color space conversions: - // - // Standard to HD, 720x480 to 1920x1080 - Elastic Transcoder applies Bt601ToBt709 - // Standard to HD, 720x576 to 1920x1080 - Elastic Transcoder applies Bt601ToBt709 - // HD to Standard, 1920x1080 to 720x480 - Elastic Transcoder applies Bt709ToBt601 - // HD to Standard, 1920x1080 to 720x576 - Elastic Transcoder applies Bt709ToBt601 - // Elastic Transcoder may change the behavior of the ColorspaceConversionMode - // Auto mode in the future. All outputs in a playlist must use the same ColorSpaceConversionMode. - // If you do not specify a ColorSpaceConversionMode, Elastic Transcoder does - // not change the color space of a file. If you are unsure what ColorSpaceConversionMode - // was applied to your output file, you can check the AppliedColorSpaceConversion - // parameter included in your job response. If your job does not have an AppliedColorSpaceConversion - // in its response, no ColorSpaceConversionMode was applied. - // - // ChromaSubsampling - // - // The sampling pattern for the chroma (color) channels of the output video. - // Valid values include yuv420p and yuv422p. - // - // yuv420p samples the chroma information of every other horizontal and every - // other vertical line, yuv422p samples the color information of every horizontal - // line and every other vertical line. - // - // LoopCount (Gif Only) - // - // The number of times you want the output gif to loop. Valid values include - // Infinite and integers between 0 and 100, inclusive. - CodecOptions map[string]*string `type:"map"` - - // The value that Elastic Transcoder adds to the metadata in the output file. - DisplayAspectRatio *string `type:"string"` - - // Applicable only when the value of Video:Codec is one of H.264, MPEG2, or - // VP8. - // - // Whether to use a fixed value for FixedGOP. Valid values are true and false: - // - // true: Elastic Transcoder uses the value of KeyframesMaxDist for the distance - // between key frames (the number of frames in a group of pictures, or GOP). - // false: The distance between key frames can vary. FixedGOP must be set to - // true for fmp4 containers. - FixedGOP *string `type:"string"` - - // The frames per second for the video stream in the output file. Valid values - // include: - // - // auto, 10, 15, 23.97, 24, 25, 29.97, 30, 60 - // - // If you specify auto, Elastic Transcoder uses the detected frame rate of - // the input source. If you specify a frame rate, we recommend that you perform - // the following calculation: - // - // Frame rate = maximum recommended decoding speed in luma samples/second - // / (width in pixels * height in pixels) - // - // where: - // - // width in pixels and height in pixels represent the Resolution of the output - // video. maximum recommended decoding speed in Luma samples/second is less - // than or equal to the maximum value listed in the following table, based on - // the value that you specified for Level. The maximum recommended decoding - // speed in Luma samples/second for each level is described in the following - // list (Level - Decoding speed): - // - // 1 - 380160 1b - 380160 1.1 - 76800 1.2 - 1536000 1.3 - 3041280 2 - 3041280 - // 2.1 - 5068800 2.2 - 5184000 3 - 10368000 3.1 - 27648000 3.2 - 55296000 4 - // - 62914560 4.1 - 62914560 - FrameRate *string `type:"string"` - - // Applicable only when the value of Video:Codec is one of H.264, MPEG2, or - // VP8. - // - // The maximum number of frames between key frames. Key frames are fully encoded - // frames; the frames between key frames are encoded based, in part, on the - // content of the key frames. The value is an integer formatted as a string; - // valid values are between 1 (every frame is a key frame) and 100000, inclusive. - // A higher value results in higher compression but may also discernibly decrease - // video quality. - // - // For Smooth outputs, the FrameRate must have a constant ratio to the KeyframesMaxDist. - // This allows Smooth playlists to switch between different quality levels while - // the file is being played. - // - // For example, an input file can have a FrameRate of 30 with a KeyframesMaxDist - // of 90. The output file then needs to have a ratio of 1:3. Valid outputs would - // have FrameRate of 30, 25, and 10, and KeyframesMaxDist of 90, 75, and 30, - // respectively. - // - // Alternately, this can be achieved by setting FrameRate to auto and having - // the same values for MaxFrameRate and KeyframesMaxDist. - KeyframesMaxDist *string `type:"string"` - - // If you specify auto for FrameRate, Elastic Transcoder uses the frame rate - // of the input video for the frame rate of the output video. Specify the maximum - // frame rate that you want Elastic Transcoder to use when the frame rate of - // the input video is greater than the desired maximum frame rate of the output - // video. Valid values include: 10, 15, 23.97, 24, 25, 29.97, 30, 60. - MaxFrameRate *string `type:"string"` - - // The maximum height of the output video in pixels. If you specify auto, Elastic - // Transcoder uses 1080 (Full HD) as the default value. If you specify a numeric - // value, enter an even integer between 96 and 3072. - MaxHeight *string `type:"string"` - - // The maximum width of the output video in pixels. If you specify auto, Elastic - // Transcoder uses 1920 (Full HD) as the default value. If you specify a numeric - // value, enter an even integer between 128 and 4096. - MaxWidth *string `type:"string"` - - // When you set PaddingPolicy to Pad, Elastic Transcoder may add black bars - // to the top and bottom and/or left and right sides of the output video to - // make the total size of the output video match the values that you specified - // for MaxWidth and MaxHeight. - PaddingPolicy *string `type:"string"` - - // To better control resolution and aspect ratio of output videos, we recommend - // that you use the values MaxWidth, MaxHeight, SizingPolicy, PaddingPolicy, - // and DisplayAspectRatio instead of Resolution and AspectRatio. The two groups - // of settings are mutually exclusive. Do not use them together. - // - // The width and height of the video in the output file, in pixels. Valid - // values are auto and width x height: - // - // auto: Elastic Transcoder attempts to preserve the width and height of the - // input file, subject to the following rules. width x height: The width and - // height of the output video in pixels. Note the following about specifying - // the width and height: - // - // The width must be an even integer between 128 and 4096, inclusive. The - // height must be an even integer between 96 and 3072, inclusive. If you specify - // a resolution that is less than the resolution of the input file, Elastic - // Transcoder rescales the output file to the lower resolution. If you specify - // a resolution that is greater than the resolution of the input file, Elastic - // Transcoder rescales the output to the higher resolution. We recommend that - // you specify a resolution for which the product of width and height is less - // than or equal to the applicable value in the following list (List - Max width - // x height value): 1 - 25344 1b - 25344 1.1 - 101376 1.2 - 101376 1.3 - 101376 - // 2 - 101376 2.1 - 202752 2.2 - 404720 3 - 404720 3.1 - 921600 3.2 - 1310720 - // 4 - 2097152 4.1 - 2097152 - Resolution *string `type:"string"` - - // Specify one of the following values to control scaling of the output video: - // - // Fit: Elastic Transcoder scales the output video so it matches the value - // that you specified in either MaxWidth or MaxHeight without exceeding the - // other value. Fill: Elastic Transcoder scales the output video so it matches - // the value that you specified in either MaxWidth or MaxHeight and matches - // or exceeds the other value. Elastic Transcoder centers the output video and - // then crops it in the dimension (if any) that exceeds the maximum value. Stretch: - // Elastic Transcoder stretches the output video to match the values that you - // specified for MaxWidth and MaxHeight. If the relative proportions of the - // input video and the output video are different, the output video will be - // distorted. Keep: Elastic Transcoder does not scale the output video. If either - // dimension of the input video exceeds the values that you specified for MaxWidth - // and MaxHeight, Elastic Transcoder crops the output video. ShrinkToFit: Elastic - // Transcoder scales the output video down so that its dimensions match the - // values that you specified for at least one of MaxWidth and MaxHeight without - // exceeding either value. If you specify this option, Elastic Transcoder does - // not scale the video up. ShrinkToFill: Elastic Transcoder scales the output - // video down so that its dimensions match the values that you specified for - // at least one of MaxWidth and MaxHeight without dropping below either value. - // If you specify this option, Elastic Transcoder does not scale the video up. - SizingPolicy *string `type:"string"` - - // Settings for the size, location, and opacity of graphics that you want Elastic - // Transcoder to overlay over videos that are transcoded using this preset. - // You can specify settings for up to four watermarks. Watermarks appear in - // the specified size and location, and with the specified opacity for the duration - // of the transcoded video. - // - // Watermarks can be in .png or .jpg format. If you want to display a watermark - // that is not rectangular, use the .png format, which supports transparency. - // - // When you create a job that uses this preset, you specify the .png or .jpg - // graphics that you want Elastic Transcoder to include in the transcoded videos. - // You can specify fewer graphics in the job than you specify watermark settings - // in the preset, which allows you to use the same preset for up to four watermarks - // that have different dimensions. - Watermarks []*PresetWatermark `type:"list"` -} - -// String returns the string representation -func (s VideoParameters) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VideoParameters) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *VideoParameters) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "VideoParameters"} - if s.Watermarks != nil { - for i, v := range s.Watermarks { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Watermarks", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Elastic Transcoder returns a warning if the resources used by your pipeline -// are not in the same region as the pipeline. -// -// Using resources in the same region, such as your Amazon S3 buckets, Amazon -// SNS notification topics, and AWS KMS key, reduces processing time and prevents -// cross-regional charges. -type Warning struct { - _ struct{} `type:"structure"` - - // The code of the cross-regional warning. - Code *string `type:"string"` - - // The message explaining what resources are in a different region from the - // pipeline. - // - // Note: AWS KMS keys must be in the same region as the pipeline. - Message *string `type:"string"` -} - -// String returns the string representation -func (s Warning) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Warning) GoString() string { - return s.String() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/examples_test.go deleted file mode 100644 index 2b076930..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/examples_test.go +++ /dev/null @@ -1,839 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package elastictranscoder_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/elastictranscoder" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleElasticTranscoder_CancelJob() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.CancelJobInput{ - Id: aws.String("Id"), // Required - } - resp, err := svc.CancelJob(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_CreateJob() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.CreateJobInput{ - Input: &elastictranscoder.JobInput{ // Required - AspectRatio: aws.String("AspectRatio"), - Container: aws.String("JobContainer"), - DetectedProperties: &elastictranscoder.DetectedProperties{ - DurationMillis: aws.Int64(1), - FileSize: aws.Int64(1), - FrameRate: aws.String("FloatString"), - Height: aws.Int64(1), - Width: aws.Int64(1), - }, - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - FrameRate: aws.String("FrameRate"), - Interlaced: aws.String("Interlaced"), - Key: aws.String("LongKey"), - Resolution: aws.String("Resolution"), - }, - PipelineId: aws.String("Id"), // Required - Output: &elastictranscoder.CreateJobOutput{ - AlbumArt: &elastictranscoder.JobAlbumArt{ - Artwork: []*elastictranscoder.Artwork{ - { // Required - AlbumArtFormat: aws.String("JpgOrPng"), - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - MaxHeight: aws.String("DigitsOrAuto"), - MaxWidth: aws.String("DigitsOrAuto"), - PaddingPolicy: aws.String("PaddingPolicy"), - SizingPolicy: aws.String("SizingPolicy"), - }, - // More values... - }, - MergePolicy: aws.String("MergePolicy"), - }, - Captions: &elastictranscoder.Captions{ - CaptionFormats: []*elastictranscoder.CaptionFormat{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Format: aws.String("CaptionFormatFormat"), - Pattern: aws.String("CaptionFormatPattern"), - }, - // More values... - }, - CaptionSources: []*elastictranscoder.CaptionSource{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("LongKey"), - Label: aws.String("Name"), - Language: aws.String("Key"), - TimeOffset: aws.String("TimeOffset"), - }, - // More values... - }, - MergePolicy: aws.String("CaptionMergePolicy"), - }, - Composition: []*elastictranscoder.Clip{ - { // Required - TimeSpan: &elastictranscoder.TimeSpan{ - Duration: aws.String("Time"), - StartTime: aws.String("Time"), - }, - }, - // More values... - }, - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("Key"), - PresetId: aws.String("Id"), - Rotate: aws.String("Rotate"), - SegmentDuration: aws.String("FloatString"), - ThumbnailEncryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - ThumbnailPattern: aws.String("ThumbnailPattern"), - Watermarks: []*elastictranscoder.JobWatermark{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - PresetWatermarkId: aws.String("PresetWatermarkId"), - }, - // More values... - }, - }, - OutputKeyPrefix: aws.String("Key"), - Outputs: []*elastictranscoder.CreateJobOutput{ - { // Required - AlbumArt: &elastictranscoder.JobAlbumArt{ - Artwork: []*elastictranscoder.Artwork{ - { // Required - AlbumArtFormat: aws.String("JpgOrPng"), - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - MaxHeight: aws.String("DigitsOrAuto"), - MaxWidth: aws.String("DigitsOrAuto"), - PaddingPolicy: aws.String("PaddingPolicy"), - SizingPolicy: aws.String("SizingPolicy"), - }, - // More values... - }, - MergePolicy: aws.String("MergePolicy"), - }, - Captions: &elastictranscoder.Captions{ - CaptionFormats: []*elastictranscoder.CaptionFormat{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Format: aws.String("CaptionFormatFormat"), - Pattern: aws.String("CaptionFormatPattern"), - }, - // More values... - }, - CaptionSources: []*elastictranscoder.CaptionSource{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("LongKey"), - Label: aws.String("Name"), - Language: aws.String("Key"), - TimeOffset: aws.String("TimeOffset"), - }, - // More values... - }, - MergePolicy: aws.String("CaptionMergePolicy"), - }, - Composition: []*elastictranscoder.Clip{ - { // Required - TimeSpan: &elastictranscoder.TimeSpan{ - Duration: aws.String("Time"), - StartTime: aws.String("Time"), - }, - }, - // More values... - }, - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - Key: aws.String("Key"), - PresetId: aws.String("Id"), - Rotate: aws.String("Rotate"), - SegmentDuration: aws.String("FloatString"), - ThumbnailEncryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - ThumbnailPattern: aws.String("ThumbnailPattern"), - Watermarks: []*elastictranscoder.JobWatermark{ - { // Required - Encryption: &elastictranscoder.Encryption{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - Mode: aws.String("EncryptionMode"), - }, - InputKey: aws.String("WatermarkKey"), - PresetWatermarkId: aws.String("PresetWatermarkId"), - }, - // More values... - }, - }, - // More values... - }, - Playlists: []*elastictranscoder.CreateJobPlaylist{ - { // Required - Format: aws.String("PlaylistFormat"), - HlsContentProtection: &elastictranscoder.HlsContentProtection{ - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("Base64EncodedString"), - KeyMd5: aws.String("Base64EncodedString"), - KeyStoragePolicy: aws.String("KeyStoragePolicy"), - LicenseAcquisitionUrl: aws.String("ZeroTo512String"), - Method: aws.String("HlsContentProtectionMethod"), - }, - Name: aws.String("Filename"), - OutputKeys: []*string{ - aws.String("Key"), // Required - // More values... - }, - PlayReadyDrm: &elastictranscoder.PlayReadyDrm{ - Format: aws.String("PlayReadyDrmFormatString"), - InitializationVector: aws.String("ZeroTo255String"), - Key: aws.String("NonEmptyBase64EncodedString"), - KeyId: aws.String("KeyIdGuid"), - KeyMd5: aws.String("NonEmptyBase64EncodedString"), - LicenseAcquisitionUrl: aws.String("OneTo512String"), - }, - }, - // More values... - }, - UserMetadata: map[string]*string{ - "Key": aws.String("String"), // Required - // More values... - }, - } - resp, err := svc.CreateJob(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_CreatePipeline() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.CreatePipelineInput{ - InputBucket: aws.String("BucketName"), // Required - Name: aws.String("Name"), // Required - Role: aws.String("Role"), // Required - AwsKmsKeyArn: aws.String("KeyArn"), - ContentConfig: &elastictranscoder.PipelineOutputConfig{ - Bucket: aws.String("BucketName"), - Permissions: []*elastictranscoder.Permission{ - { // Required - Access: []*string{ - aws.String("AccessControl"), // Required - // More values... - }, - Grantee: aws.String("Grantee"), - GranteeType: aws.String("GranteeType"), - }, - // More values... - }, - StorageClass: aws.String("StorageClass"), - }, - Notifications: &elastictranscoder.Notifications{ - Completed: aws.String("SnsTopic"), - Error: aws.String("SnsTopic"), - Progressing: aws.String("SnsTopic"), - Warning: aws.String("SnsTopic"), - }, - OutputBucket: aws.String("BucketName"), - ThumbnailConfig: &elastictranscoder.PipelineOutputConfig{ - Bucket: aws.String("BucketName"), - Permissions: []*elastictranscoder.Permission{ - { // Required - Access: []*string{ - aws.String("AccessControl"), // Required - // More values... - }, - Grantee: aws.String("Grantee"), - GranteeType: aws.String("GranteeType"), - }, - // More values... - }, - StorageClass: aws.String("StorageClass"), - }, - } - resp, err := svc.CreatePipeline(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_CreatePreset() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.CreatePresetInput{ - Container: aws.String("PresetContainer"), // Required - Name: aws.String("Name"), // Required - Audio: &elastictranscoder.AudioParameters{ - AudioPackingMode: aws.String("AudioPackingMode"), - BitRate: aws.String("AudioBitRate"), - Channels: aws.String("AudioChannels"), - Codec: aws.String("AudioCodec"), - CodecOptions: &elastictranscoder.AudioCodecOptions{ - BitDepth: aws.String("AudioBitDepth"), - BitOrder: aws.String("AudioBitOrder"), - Profile: aws.String("AudioCodecProfile"), - Signed: aws.String("AudioSigned"), - }, - SampleRate: aws.String("AudioSampleRate"), - }, - Description: aws.String("Description"), - Thumbnails: &elastictranscoder.Thumbnails{ - AspectRatio: aws.String("AspectRatio"), - Format: aws.String("JpgOrPng"), - Interval: aws.String("Digits"), - MaxHeight: aws.String("DigitsOrAuto"), - MaxWidth: aws.String("DigitsOrAuto"), - PaddingPolicy: aws.String("PaddingPolicy"), - Resolution: aws.String("ThumbnailResolution"), - SizingPolicy: aws.String("SizingPolicy"), - }, - Video: &elastictranscoder.VideoParameters{ - AspectRatio: aws.String("AspectRatio"), - BitRate: aws.String("VideoBitRate"), - Codec: aws.String("VideoCodec"), - CodecOptions: map[string]*string{ - "Key": aws.String("CodecOption"), // Required - // More values... - }, - DisplayAspectRatio: aws.String("AspectRatio"), - FixedGOP: aws.String("FixedGOP"), - FrameRate: aws.String("FrameRate"), - KeyframesMaxDist: aws.String("KeyframesMaxDist"), - MaxFrameRate: aws.String("MaxFrameRate"), - MaxHeight: aws.String("DigitsOrAuto"), - MaxWidth: aws.String("DigitsOrAuto"), - PaddingPolicy: aws.String("PaddingPolicy"), - Resolution: aws.String("Resolution"), - SizingPolicy: aws.String("SizingPolicy"), - Watermarks: []*elastictranscoder.PresetWatermark{ - { // Required - HorizontalAlign: aws.String("HorizontalAlign"), - HorizontalOffset: aws.String("PixelsOrPercent"), - Id: aws.String("PresetWatermarkId"), - MaxHeight: aws.String("PixelsOrPercent"), - MaxWidth: aws.String("PixelsOrPercent"), - Opacity: aws.String("Opacity"), - SizingPolicy: aws.String("WatermarkSizingPolicy"), - Target: aws.String("Target"), - VerticalAlign: aws.String("VerticalAlign"), - VerticalOffset: aws.String("PixelsOrPercent"), - }, - // More values... - }, - }, - } - resp, err := svc.CreatePreset(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_DeletePipeline() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.DeletePipelineInput{ - Id: aws.String("Id"), // Required - } - resp, err := svc.DeletePipeline(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_DeletePreset() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.DeletePresetInput{ - Id: aws.String("Id"), // Required - } - resp, err := svc.DeletePreset(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_ListJobsByPipeline() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.ListJobsByPipelineInput{ - PipelineId: aws.String("Id"), // Required - Ascending: aws.String("Ascending"), - PageToken: aws.String("Id"), - } - resp, err := svc.ListJobsByPipeline(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_ListJobsByStatus() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.ListJobsByStatusInput{ - Status: aws.String("JobStatus"), // Required - Ascending: aws.String("Ascending"), - PageToken: aws.String("Id"), - } - resp, err := svc.ListJobsByStatus(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_ListPipelines() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.ListPipelinesInput{ - Ascending: aws.String("Ascending"), - PageToken: aws.String("Id"), - } - resp, err := svc.ListPipelines(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_ListPresets() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.ListPresetsInput{ - Ascending: aws.String("Ascending"), - PageToken: aws.String("Id"), - } - resp, err := svc.ListPresets(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_ReadJob() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.ReadJobInput{ - Id: aws.String("Id"), // Required - } - resp, err := svc.ReadJob(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_ReadPipeline() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.ReadPipelineInput{ - Id: aws.String("Id"), // Required - } - resp, err := svc.ReadPipeline(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_ReadPreset() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.ReadPresetInput{ - Id: aws.String("Id"), // Required - } - resp, err := svc.ReadPreset(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_TestRole() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.TestRoleInput{ - InputBucket: aws.String("BucketName"), // Required - OutputBucket: aws.String("BucketName"), // Required - Role: aws.String("Role"), // Required - Topics: []*string{ // Required - aws.String("SnsTopic"), // Required - // More values... - }, - } - resp, err := svc.TestRole(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_UpdatePipeline() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.UpdatePipelineInput{ - Id: aws.String("Id"), // Required - AwsKmsKeyArn: aws.String("KeyArn"), - ContentConfig: &elastictranscoder.PipelineOutputConfig{ - Bucket: aws.String("BucketName"), - Permissions: []*elastictranscoder.Permission{ - { // Required - Access: []*string{ - aws.String("AccessControl"), // Required - // More values... - }, - Grantee: aws.String("Grantee"), - GranteeType: aws.String("GranteeType"), - }, - // More values... - }, - StorageClass: aws.String("StorageClass"), - }, - InputBucket: aws.String("BucketName"), - Name: aws.String("Name"), - Notifications: &elastictranscoder.Notifications{ - Completed: aws.String("SnsTopic"), - Error: aws.String("SnsTopic"), - Progressing: aws.String("SnsTopic"), - Warning: aws.String("SnsTopic"), - }, - Role: aws.String("Role"), - ThumbnailConfig: &elastictranscoder.PipelineOutputConfig{ - Bucket: aws.String("BucketName"), - Permissions: []*elastictranscoder.Permission{ - { // Required - Access: []*string{ - aws.String("AccessControl"), // Required - // More values... - }, - Grantee: aws.String("Grantee"), - GranteeType: aws.String("GranteeType"), - }, - // More values... - }, - StorageClass: aws.String("StorageClass"), - }, - } - resp, err := svc.UpdatePipeline(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_UpdatePipelineNotifications() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.UpdatePipelineNotificationsInput{ - Id: aws.String("Id"), // Required - Notifications: &elastictranscoder.Notifications{ // Required - Completed: aws.String("SnsTopic"), - Error: aws.String("SnsTopic"), - Progressing: aws.String("SnsTopic"), - Warning: aws.String("SnsTopic"), - }, - } - resp, err := svc.UpdatePipelineNotifications(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleElasticTranscoder_UpdatePipelineStatus() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := elastictranscoder.New(sess) - - params := &elastictranscoder.UpdatePipelineStatusInput{ - Id: aws.String("Id"), // Required - Status: aws.String("PipelineStatus"), // Required - } - resp, err := svc.UpdatePipelineStatus(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/service.go b/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/service.go deleted file mode 100644 index c23818a2..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/service.go +++ /dev/null @@ -1,86 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package elastictranscoder - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/restjson" -) - -// The AWS Elastic Transcoder Service. -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type ElasticTranscoder struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "elastictranscoder" - -// New creates a new instance of the ElasticTranscoder client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a ElasticTranscoder client from just a session. -// svc := elastictranscoder.New(mySession) -// -// // Create a ElasticTranscoder client with additional configuration -// svc := elastictranscoder.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *ElasticTranscoder { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *ElasticTranscoder { - svc := &ElasticTranscoder{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2012-09-25", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restjson.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restjson.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restjson.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restjson.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a ElasticTranscoder operation and runs any -// custom request initialization. -func (c *ElasticTranscoder) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/waiters.go deleted file mode 100644 index 76746204..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/waiters.go +++ /dev/null @@ -1,46 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package elastictranscoder - -import ( - "github.com/aws/aws-sdk-go/private/waiter" -) - -// WaitUntilJobComplete uses the Amazon Elastic Transcoder API operation -// ReadJob to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *ElasticTranscoder) WaitUntilJobComplete(input *ReadJobInput) error { - waiterCfg := waiter.Config{ - Operation: "ReadJob", - Delay: 30, - MaxAttempts: 120, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "Job.Status", - Expected: "Complete", - }, - { - State: "failure", - Matcher: "path", - Argument: "Job.Status", - Expected: "Canceled", - }, - { - State: "failure", - Matcher: "path", - Argument: "Job.Status", - Expected: "Error", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/kinesis/api.go b/vendor/github.com/aws/aws-sdk-go/service/kinesis/api.go deleted file mode 100644 index fbf14aa3..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/kinesis/api.go +++ /dev/null @@ -1,2907 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package kinesis provides a client for Amazon Kinesis. -package kinesis - -import ( - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" -) - -const opAddTagsToStream = "AddTagsToStream" - -// AddTagsToStreamRequest generates a "aws/request.Request" representing the -// client's request for the AddTagsToStream operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AddTagsToStream method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AddTagsToStreamRequest method. -// req, resp := client.AddTagsToStreamRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) AddTagsToStreamRequest(input *AddTagsToStreamInput) (req *request.Request, output *AddTagsToStreamOutput) { - op := &request.Operation{ - Name: opAddTagsToStream, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AddTagsToStreamInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &AddTagsToStreamOutput{} - req.Data = output - return -} - -// Adds or updates tags for the specified Amazon Kinesis stream. Each stream -// can have up to 10 tags. -// -// If tags have already been assigned to the stream, AddTagsToStream overwrites -// any existing tags that correspond to the specified tag keys. -func (c *Kinesis) AddTagsToStream(input *AddTagsToStreamInput) (*AddTagsToStreamOutput, error) { - req, out := c.AddTagsToStreamRequest(input) - err := req.Send() - return out, err -} - -const opCreateStream = "CreateStream" - -// CreateStreamRequest generates a "aws/request.Request" representing the -// client's request for the CreateStream operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateStream method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateStreamRequest method. -// req, resp := client.CreateStreamRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) CreateStreamRequest(input *CreateStreamInput) (req *request.Request, output *CreateStreamOutput) { - op := &request.Operation{ - Name: opCreateStream, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &CreateStreamInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &CreateStreamOutput{} - req.Data = output - return -} - -// Creates an Amazon Kinesis stream. A stream captures and transports data records -// that are continuously emitted from different data sources or producers. Scale-out -// within a stream is explicitly supported by means of shards, which are uniquely -// identified groups of data records in a stream. -// -// You specify and control the number of shards that a stream is composed of. -// Each shard can support reads up to 5 transactions per second, up to a maximum -// data read total of 2 MB per second. Each shard can support writes up to 1,000 -// records per second, up to a maximum data write total of 1 MB per second. -// You can add shards to a stream if the amount of data input increases and -// you can remove shards if the amount of data input decreases. -// -// The stream name identifies the stream. The name is scoped to the AWS account -// used by the application. It is also scoped by region. That is, two streams -// in two different accounts can have the same name, and two streams in the -// same account, but in two different regions, can have the same name. -// -// CreateStream is an asynchronous operation. Upon receiving a CreateStream -// request, Amazon Kinesis immediately returns and sets the stream status to -// CREATING. After the stream is created, Amazon Kinesis sets the stream status -// to ACTIVE. You should perform read and write operations only on an ACTIVE -// stream. -// -// You receive a LimitExceededException when making a CreateStream request -// if you try to do one of the following: -// -// Have more than five streams in the CREATING state at any point in time. -// Create more shards than are authorized for your account. For the default -// shard limit for an AWS account, see Streams Limits (http://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html) -// in the Amazon Kinesis Streams Developer Guide. If you need to increase this -// limit, contact AWS Support (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html). -// -// You can use DescribeStream to check the stream status, which is returned -// in StreamStatus. -// -// CreateStream has a limit of 5 transactions per second per account. -func (c *Kinesis) CreateStream(input *CreateStreamInput) (*CreateStreamOutput, error) { - req, out := c.CreateStreamRequest(input) - err := req.Send() - return out, err -} - -const opDecreaseStreamRetentionPeriod = "DecreaseStreamRetentionPeriod" - -// DecreaseStreamRetentionPeriodRequest generates a "aws/request.Request" representing the -// client's request for the DecreaseStreamRetentionPeriod operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DecreaseStreamRetentionPeriod method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DecreaseStreamRetentionPeriodRequest method. -// req, resp := client.DecreaseStreamRetentionPeriodRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) DecreaseStreamRetentionPeriodRequest(input *DecreaseStreamRetentionPeriodInput) (req *request.Request, output *DecreaseStreamRetentionPeriodOutput) { - op := &request.Operation{ - Name: opDecreaseStreamRetentionPeriod, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DecreaseStreamRetentionPeriodInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DecreaseStreamRetentionPeriodOutput{} - req.Data = output - return -} - -// Decreases the Amazon Kinesis stream's retention period, which is the length -// of time data records are accessible after they are added to the stream. The -// minimum value of a stream's retention period is 24 hours. -// -// This operation may result in lost data. For example, if the stream's retention -// period is 48 hours and is decreased to 24 hours, any data already in the -// stream that is older than 24 hours is inaccessible. -func (c *Kinesis) DecreaseStreamRetentionPeriod(input *DecreaseStreamRetentionPeriodInput) (*DecreaseStreamRetentionPeriodOutput, error) { - req, out := c.DecreaseStreamRetentionPeriodRequest(input) - err := req.Send() - return out, err -} - -const opDeleteStream = "DeleteStream" - -// DeleteStreamRequest generates a "aws/request.Request" representing the -// client's request for the DeleteStream operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteStream method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteStreamRequest method. -// req, resp := client.DeleteStreamRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) DeleteStreamRequest(input *DeleteStreamInput) (req *request.Request, output *DeleteStreamOutput) { - op := &request.Operation{ - Name: opDeleteStream, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DeleteStreamInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteStreamOutput{} - req.Data = output - return -} - -// Deletes an Amazon Kinesis stream and all its shards and data. You must shut -// down any applications that are operating on the stream before you delete -// the stream. If an application attempts to operate on a deleted stream, it -// will receive the exception ResourceNotFoundException. -// -// If the stream is in the ACTIVE state, you can delete it. After a DeleteStream -// request, the specified stream is in the DELETING state until Amazon Kinesis -// completes the deletion. -// -// Note: Amazon Kinesis might continue to accept data read and write operations, -// such as PutRecord, PutRecords, and GetRecords, on a stream in the DELETING -// state until the stream deletion is complete. -// -// When you delete a stream, any shards in that stream are also deleted, and -// any tags are dissociated from the stream. -// -// You can use the DescribeStream operation to check the state of the stream, -// which is returned in StreamStatus. -// -// DeleteStream has a limit of 5 transactions per second per account. -func (c *Kinesis) DeleteStream(input *DeleteStreamInput) (*DeleteStreamOutput, error) { - req, out := c.DeleteStreamRequest(input) - err := req.Send() - return out, err -} - -const opDescribeStream = "DescribeStream" - -// DescribeStreamRequest generates a "aws/request.Request" representing the -// client's request for the DescribeStream operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DescribeStream method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DescribeStreamRequest method. -// req, resp := client.DescribeStreamRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) DescribeStreamRequest(input *DescribeStreamInput) (req *request.Request, output *DescribeStreamOutput) { - op := &request.Operation{ - Name: opDescribeStream, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"ExclusiveStartShardId"}, - OutputTokens: []string{"StreamDescription.Shards[-1].ShardId"}, - LimitToken: "Limit", - TruncationToken: "StreamDescription.HasMoreShards", - }, - } - - if input == nil { - input = &DescribeStreamInput{} - } - - req = c.newRequest(op, input, output) - output = &DescribeStreamOutput{} - req.Data = output - return -} - -// Describes the specified Amazon Kinesis stream. -// -// The information about the stream includes its current status, its Amazon -// Resource Name (ARN), and an array of shard objects. For each shard object, -// there is information about the hash key and sequence number ranges that the -// shard spans, and the IDs of any earlier shards that played in a role in creating -// the shard. A sequence number is the identifier associated with every record -// ingested in the stream. The sequence number is assigned when a record is -// put into the stream. -// -// You can limit the number of returned shards using the Limit parameter. The -// number of shards in a stream may be too large to return from a single call -// to DescribeStream. You can detect this by using the HasMoreShards flag in -// the returned output. HasMoreShards is set to true when there is more data -// available. -// -// DescribeStream is a paginated operation. If there are more shards available, -// you can request them using the shard ID of the last shard returned. Specify -// this ID in the ExclusiveStartShardId parameter in a subsequent request to -// DescribeStream. -// -// There are no guarantees about the chronological order shards returned in -// DescribeStream results. If you want to process shards in chronological order, -// use ParentShardId to track lineage to the oldest shard. -// -// DescribeStream has a limit of 10 transactions per second per account. -func (c *Kinesis) DescribeStream(input *DescribeStreamInput) (*DescribeStreamOutput, error) { - req, out := c.DescribeStreamRequest(input) - err := req.Send() - return out, err -} - -// DescribeStreamPages iterates over the pages of a DescribeStream operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See DescribeStream method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a DescribeStream operation. -// pageNum := 0 -// err := client.DescribeStreamPages(params, -// func(page *DescribeStreamOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *Kinesis) DescribeStreamPages(input *DescribeStreamInput, fn func(p *DescribeStreamOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.DescribeStreamRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*DescribeStreamOutput), lastPage) - }) -} - -const opDisableEnhancedMonitoring = "DisableEnhancedMonitoring" - -// DisableEnhancedMonitoringRequest generates a "aws/request.Request" representing the -// client's request for the DisableEnhancedMonitoring operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DisableEnhancedMonitoring method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DisableEnhancedMonitoringRequest method. -// req, resp := client.DisableEnhancedMonitoringRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) DisableEnhancedMonitoringRequest(input *DisableEnhancedMonitoringInput) (req *request.Request, output *EnhancedMonitoringOutput) { - op := &request.Operation{ - Name: opDisableEnhancedMonitoring, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DisableEnhancedMonitoringInput{} - } - - req = c.newRequest(op, input, output) - output = &EnhancedMonitoringOutput{} - req.Data = output - return -} - -// Disables enhanced monitoring. -func (c *Kinesis) DisableEnhancedMonitoring(input *DisableEnhancedMonitoringInput) (*EnhancedMonitoringOutput, error) { - req, out := c.DisableEnhancedMonitoringRequest(input) - err := req.Send() - return out, err -} - -const opEnableEnhancedMonitoring = "EnableEnhancedMonitoring" - -// EnableEnhancedMonitoringRequest generates a "aws/request.Request" representing the -// client's request for the EnableEnhancedMonitoring operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the EnableEnhancedMonitoring method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the EnableEnhancedMonitoringRequest method. -// req, resp := client.EnableEnhancedMonitoringRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) EnableEnhancedMonitoringRequest(input *EnableEnhancedMonitoringInput) (req *request.Request, output *EnhancedMonitoringOutput) { - op := &request.Operation{ - Name: opEnableEnhancedMonitoring, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &EnableEnhancedMonitoringInput{} - } - - req = c.newRequest(op, input, output) - output = &EnhancedMonitoringOutput{} - req.Data = output - return -} - -// Enables enhanced Amazon Kinesis stream monitoring for shard-level metrics. -func (c *Kinesis) EnableEnhancedMonitoring(input *EnableEnhancedMonitoringInput) (*EnhancedMonitoringOutput, error) { - req, out := c.EnableEnhancedMonitoringRequest(input) - err := req.Send() - return out, err -} - -const opGetRecords = "GetRecords" - -// GetRecordsRequest generates a "aws/request.Request" representing the -// client's request for the GetRecords operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetRecords method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetRecordsRequest method. -// req, resp := client.GetRecordsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) GetRecordsRequest(input *GetRecordsInput) (req *request.Request, output *GetRecordsOutput) { - op := &request.Operation{ - Name: opGetRecords, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetRecordsInput{} - } - - req = c.newRequest(op, input, output) - output = &GetRecordsOutput{} - req.Data = output - return -} - -// Gets data records from an Amazon Kinesis stream's shard. -// -// Specify a shard iterator using the ShardIterator parameter. The shard iterator -// specifies the position in the shard from which you want to start reading -// data records sequentially. If there are no records available in the portion -// of the shard that the iterator points to, GetRecords returns an empty list. -// Note that it might take multiple calls to get to a portion of the shard that -// contains records. -// -// You can scale by provisioning multiple shards per stream while considering -// service limits (for more information, see Streams Limits (http://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html) -// in the Amazon Kinesis Streams Developer Guide). Your application should have -// one thread per shard, each reading continuously from its stream. To read -// from a stream continually, call GetRecords in a loop. Use GetShardIterator -// to get the shard iterator to specify in the first GetRecords call. GetRecords -// returns a new shard iterator in NextShardIterator. Specify the shard iterator -// returned in NextShardIterator in subsequent calls to GetRecords. Note that -// if the shard has been closed, the shard iterator can't return more data and -// GetRecords returns null in NextShardIterator. You can terminate the loop -// when the shard is closed, or when the shard iterator reaches the record with -// the sequence number or other attribute that marks it as the last record to -// process. -// -// Each data record can be up to 1 MB in size, and each shard can read up to -// 2 MB per second. You can ensure that your calls don't exceed the maximum -// supported size or throughput by using the Limit parameter to specify the -// maximum number of records that GetRecords can return. Consider your average -// record size when determining this limit. -// -// The size of the data returned by GetRecords varies depending on the utilization -// of the shard. The maximum size of data that GetRecords can return is 10 MB. -// If a call returns this amount of data, subsequent calls made within the next -// 5 seconds throw ProvisionedThroughputExceededException. If there is insufficient -// provisioned throughput on the shard, subsequent calls made within the next -// 1 second throw ProvisionedThroughputExceededException. Note that GetRecords -// won't return any data when it throws an exception. For this reason, we recommend -// that you wait one second between calls to GetRecords; however, it's possible -// that the application will get exceptions for longer than 1 second. -// -// To detect whether the application is falling behind in processing, you can -// use the MillisBehindLatest response attribute. You can also monitor the stream -// using CloudWatch metrics and other mechanisms (see Monitoring (http://docs.aws.amazon.com/kinesis/latest/dev/monitoring.html) -// in the Amazon Kinesis Streams Developer Guide). -// -// Each Amazon Kinesis record includes a value, ApproximateArrivalTimestamp, -// that is set when a stream successfully receives and stores a record. This -// is commonly referred to as a server-side timestamp, whereas a client-side -// timestamp is set when a data producer creates or sends the record to a stream -// (a data producer is any data source putting data records into a stream, for -// example with PutRecords). The timestamp has millisecond precision. There -// are no guarantees about the timestamp accuracy, or that the timestamp is -// always increasing. For example, records in a shard or across a stream might -// have timestamps that are out of order. -func (c *Kinesis) GetRecords(input *GetRecordsInput) (*GetRecordsOutput, error) { - req, out := c.GetRecordsRequest(input) - err := req.Send() - return out, err -} - -const opGetShardIterator = "GetShardIterator" - -// GetShardIteratorRequest generates a "aws/request.Request" representing the -// client's request for the GetShardIterator operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetShardIterator method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetShardIteratorRequest method. -// req, resp := client.GetShardIteratorRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) GetShardIteratorRequest(input *GetShardIteratorInput) (req *request.Request, output *GetShardIteratorOutput) { - op := &request.Operation{ - Name: opGetShardIterator, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetShardIteratorInput{} - } - - req = c.newRequest(op, input, output) - output = &GetShardIteratorOutput{} - req.Data = output - return -} - -// Gets an Amazon Kinesis shard iterator. A shard iterator expires five minutes -// after it is returned to the requester. -// -// A shard iterator specifies the shard position from which to start reading -// data records sequentially. The position is specified using the sequence number -// of a data record in a shard. A sequence number is the identifier associated -// with every record ingested in the stream, and is assigned when a record is -// put into the stream. Each stream has one or more shards. -// -// You must specify the shard iterator type. For example, you can set the ShardIteratorType -// parameter to read exactly from the position denoted by a specific sequence -// number by using the AT_SEQUENCE_NUMBER shard iterator type, or right after -// the sequence number by using the AFTER_SEQUENCE_NUMBER shard iterator type, -// using sequence numbers returned by earlier calls to PutRecord, PutRecords, -// GetRecords, or DescribeStream. In the request, you can specify the shard -// iterator type AT_TIMESTAMP to read records from an arbitrary point in time, -// TRIM_HORIZON to cause ShardIterator to point to the last untrimmed record -// in the shard in the system (the oldest data record in the shard), or LATEST -// so that you always read the most recent data in the shard. -// -// When you read repeatedly from a stream, use a GetShardIterator request to -// get the first shard iterator for use in your first GetRecords request and -// for subsequent reads use the shard iterator returned by the GetRecords request -// in NextShardIterator. A new shard iterator is returned by every GetRecords -// request in NextShardIterator, which you use in the ShardIterator parameter -// of the next GetRecords request. -// -// If a GetShardIterator request is made too often, you receive a ProvisionedThroughputExceededException. -// For more information about throughput limits, see GetRecords, and Streams -// Limits (http://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html) -// in the Amazon Kinesis Streams Developer Guide. -// -// If the shard is closed, GetShardIterator returns a valid iterator for the -// last sequence number of the shard. Note that a shard can be closed as a result -// of using SplitShard or MergeShards. -// -// GetShardIterator has a limit of 5 transactions per second per account per -// open shard. -func (c *Kinesis) GetShardIterator(input *GetShardIteratorInput) (*GetShardIteratorOutput, error) { - req, out := c.GetShardIteratorRequest(input) - err := req.Send() - return out, err -} - -const opIncreaseStreamRetentionPeriod = "IncreaseStreamRetentionPeriod" - -// IncreaseStreamRetentionPeriodRequest generates a "aws/request.Request" representing the -// client's request for the IncreaseStreamRetentionPeriod operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the IncreaseStreamRetentionPeriod method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the IncreaseStreamRetentionPeriodRequest method. -// req, resp := client.IncreaseStreamRetentionPeriodRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) IncreaseStreamRetentionPeriodRequest(input *IncreaseStreamRetentionPeriodInput) (req *request.Request, output *IncreaseStreamRetentionPeriodOutput) { - op := &request.Operation{ - Name: opIncreaseStreamRetentionPeriod, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &IncreaseStreamRetentionPeriodInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &IncreaseStreamRetentionPeriodOutput{} - req.Data = output - return -} - -// Increases the Amazon Kinesis stream's retention period, which is the length -// of time data records are accessible after they are added to the stream. The -// maximum value of a stream's retention period is 168 hours (7 days). -// -// Upon choosing a longer stream retention period, this operation will increase -// the time period records are accessible that have not yet expired. However, -// it will not make previous data that has expired (older than the stream's -// previous retention period) accessible after the operation has been called. -// For example, if a stream's retention period is set to 24 hours and is increased -// to 168 hours, any data that is older than 24 hours will remain inaccessible -// to consumer applications. -func (c *Kinesis) IncreaseStreamRetentionPeriod(input *IncreaseStreamRetentionPeriodInput) (*IncreaseStreamRetentionPeriodOutput, error) { - req, out := c.IncreaseStreamRetentionPeriodRequest(input) - err := req.Send() - return out, err -} - -const opListStreams = "ListStreams" - -// ListStreamsRequest generates a "aws/request.Request" representing the -// client's request for the ListStreams operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListStreams method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListStreamsRequest method. -// req, resp := client.ListStreamsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) ListStreamsRequest(input *ListStreamsInput) (req *request.Request, output *ListStreamsOutput) { - op := &request.Operation{ - Name: opListStreams, - HTTPMethod: "POST", - HTTPPath: "/", - Paginator: &request.Paginator{ - InputTokens: []string{"ExclusiveStartStreamName"}, - OutputTokens: []string{"StreamNames[-1]"}, - LimitToken: "Limit", - TruncationToken: "HasMoreStreams", - }, - } - - if input == nil { - input = &ListStreamsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListStreamsOutput{} - req.Data = output - return -} - -// Lists your Amazon Kinesis streams. -// -// The number of streams may be too large to return from a single call to ListStreams. -// You can limit the number of returned streams using the Limit parameter. If -// you do not specify a value for the Limit parameter, Amazon Kinesis uses the -// default limit, which is currently 10. -// -// You can detect if there are more streams available to list by using the -// HasMoreStreams flag from the returned output. If there are more streams available, -// you can request more streams by using the name of the last stream returned -// by the ListStreams request in the ExclusiveStartStreamName parameter in a -// subsequent request to ListStreams. The group of stream names returned by -// the subsequent request is then added to the list. You can continue this process -// until all the stream names have been collected in the list. -// -// ListStreams has a limit of 5 transactions per second per account. -func (c *Kinesis) ListStreams(input *ListStreamsInput) (*ListStreamsOutput, error) { - req, out := c.ListStreamsRequest(input) - err := req.Send() - return out, err -} - -// ListStreamsPages iterates over the pages of a ListStreams operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListStreams method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListStreams operation. -// pageNum := 0 -// err := client.ListStreamsPages(params, -// func(page *ListStreamsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *Kinesis) ListStreamsPages(input *ListStreamsInput, fn func(p *ListStreamsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListStreamsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListStreamsOutput), lastPage) - }) -} - -const opListTagsForStream = "ListTagsForStream" - -// ListTagsForStreamRequest generates a "aws/request.Request" representing the -// client's request for the ListTagsForStream operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTagsForStream method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTagsForStreamRequest method. -// req, resp := client.ListTagsForStreamRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) ListTagsForStreamRequest(input *ListTagsForStreamInput) (req *request.Request, output *ListTagsForStreamOutput) { - op := &request.Operation{ - Name: opListTagsForStream, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &ListTagsForStreamInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTagsForStreamOutput{} - req.Data = output - return -} - -// Lists the tags for the specified Amazon Kinesis stream. -func (c *Kinesis) ListTagsForStream(input *ListTagsForStreamInput) (*ListTagsForStreamOutput, error) { - req, out := c.ListTagsForStreamRequest(input) - err := req.Send() - return out, err -} - -const opMergeShards = "MergeShards" - -// MergeShardsRequest generates a "aws/request.Request" representing the -// client's request for the MergeShards operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the MergeShards method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the MergeShardsRequest method. -// req, resp := client.MergeShardsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) MergeShardsRequest(input *MergeShardsInput) (req *request.Request, output *MergeShardsOutput) { - op := &request.Operation{ - Name: opMergeShards, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &MergeShardsInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &MergeShardsOutput{} - req.Data = output - return -} - -// Merges two adjacent shards in an Amazon Kinesis stream and combines them -// into a single shard to reduce the stream's capacity to ingest and transport -// data. Two shards are considered adjacent if the union of the hash key ranges -// for the two shards form a contiguous set with no gaps. For example, if you -// have two shards, one with a hash key range of 276...381 and the other with -// a hash key range of 382...454, then you could merge these two shards into -// a single shard that would have a hash key range of 276...454. After the merge, -// the single child shard receives data for all hash key values covered by the -// two parent shards. -// -// MergeShards is called when there is a need to reduce the overall capacity -// of a stream because of excess capacity that is not being used. You must specify -// the shard to be merged and the adjacent shard for a stream. For more information -// about merging shards, see Merge Two Shards (http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-resharding-merge.html) -// in the Amazon Kinesis Streams Developer Guide. -// -// If the stream is in the ACTIVE state, you can call MergeShards. If a stream -// is in the CREATING, UPDATING, or DELETING state, MergeShards returns a ResourceInUseException. -// If the specified stream does not exist, MergeShards returns a ResourceNotFoundException. -// -// You can use DescribeStream to check the state of the stream, which is returned -// in StreamStatus. -// -// MergeShards is an asynchronous operation. Upon receiving a MergeShards request, -// Amazon Kinesis immediately returns a response and sets the StreamStatus to -// UPDATING. After the operation is completed, Amazon Kinesis sets the StreamStatus -// to ACTIVE. Read and write operations continue to work while the stream is -// in the UPDATING state. -// -// You use DescribeStream to determine the shard IDs that are specified in -// the MergeShards request. -// -// If you try to operate on too many streams in parallel using CreateStream, -// DeleteStream, MergeShards or SplitShard, you will receive a LimitExceededException. -// -// MergeShards has limit of 5 transactions per second per account. -func (c *Kinesis) MergeShards(input *MergeShardsInput) (*MergeShardsOutput, error) { - req, out := c.MergeShardsRequest(input) - err := req.Send() - return out, err -} - -const opPutRecord = "PutRecord" - -// PutRecordRequest generates a "aws/request.Request" representing the -// client's request for the PutRecord operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutRecord method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutRecordRequest method. -// req, resp := client.PutRecordRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) PutRecordRequest(input *PutRecordInput) (req *request.Request, output *PutRecordOutput) { - op := &request.Operation{ - Name: opPutRecord, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &PutRecordInput{} - } - - req = c.newRequest(op, input, output) - output = &PutRecordOutput{} - req.Data = output - return -} - -// Writes a single data record into an Amazon Kinesis stream. Call PutRecord -// to send data into the stream for real-time ingestion and subsequent processing, -// one record at a time. Each shard can support writes up to 1,000 records per -// second, up to a maximum data write total of 1 MB per second. -// -// You must specify the name of the stream that captures, stores, and transports -// the data; a partition key; and the data blob itself. -// -// The data blob can be any type of data; for example, a segment from a log -// file, geographic/location data, website clickstream data, and so on. -// -// The partition key is used by Amazon Kinesis to distribute data across shards. -// Amazon Kinesis segregates the data records that belong to a stream into multiple -// shards, using the partition key associated with each data record to determine -// which shard a given data record belongs to. -// -// Partition keys are Unicode strings, with a maximum length limit of 256 characters -// for each key. An MD5 hash function is used to map partition keys to 128-bit -// integer values and to map associated data records to shards using the hash -// key ranges of the shards. You can override hashing the partition key to determine -// the shard by explicitly specifying a hash value using the ExplicitHashKey -// parameter. For more information, see Adding Data to a Stream (http://docs.aws.amazon.com/kinesis/latest/dev/developing-producers-with-sdk.html#kinesis-using-sdk-java-add-data-to-stream) -// in the Amazon Kinesis Streams Developer Guide. -// -// PutRecord returns the shard ID of where the data record was placed and the -// sequence number that was assigned to the data record. -// -// Sequence numbers increase over time and are specific to a shard within a -// stream, not across all shards within a stream. To guarantee strictly increasing -// ordering, write serially to a shard and use the SequenceNumberForOrdering -// parameter. For more information, see Adding Data to a Stream (http://docs.aws.amazon.com/kinesis/latest/dev/developing-producers-with-sdk.html#kinesis-using-sdk-java-add-data-to-stream) -// in the Amazon Kinesis Streams Developer Guide. -// -// If a PutRecord request cannot be processed because of insufficient provisioned -// throughput on the shard involved in the request, PutRecord throws ProvisionedThroughputExceededException. -// -// Data records are accessible for only 24 hours from the time that they are -// added to a stream. -func (c *Kinesis) PutRecord(input *PutRecordInput) (*PutRecordOutput, error) { - req, out := c.PutRecordRequest(input) - err := req.Send() - return out, err -} - -const opPutRecords = "PutRecords" - -// PutRecordsRequest generates a "aws/request.Request" representing the -// client's request for the PutRecords operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutRecords method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutRecordsRequest method. -// req, resp := client.PutRecordsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) PutRecordsRequest(input *PutRecordsInput) (req *request.Request, output *PutRecordsOutput) { - op := &request.Operation{ - Name: opPutRecords, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &PutRecordsInput{} - } - - req = c.newRequest(op, input, output) - output = &PutRecordsOutput{} - req.Data = output - return -} - -// Writes multiple data records into an Amazon Kinesis stream in a single call -// (also referred to as a PutRecords request). Use this operation to send data -// into the stream for data ingestion and processing. -// -// Each PutRecords request can support up to 500 records. Each record in the -// request can be as large as 1 MB, up to a limit of 5 MB for the entire request, -// including partition keys. Each shard can support writes up to 1,000 records -// per second, up to a maximum data write total of 1 MB per second. -// -// You must specify the name of the stream that captures, stores, and transports -// the data; and an array of request Records, with each record in the array -// requiring a partition key and data blob. The record size limit applies to -// the total size of the partition key and data blob. -// -// The data blob can be any type of data; for example, a segment from a log -// file, geographic/location data, website clickstream data, and so on. -// -// The partition key is used by Amazon Kinesis as input to a hash function -// that maps the partition key and associated data to a specific shard. An MD5 -// hash function is used to map partition keys to 128-bit integer values and -// to map associated data records to shards. As a result of this hashing mechanism, -// all data records with the same partition key map to the same shard within -// the stream. For more information, see Adding Data to a Stream (http://docs.aws.amazon.com/kinesis/latest/dev/developing-producers-with-sdk.html#kinesis-using-sdk-java-add-data-to-stream) -// in the Amazon Kinesis Streams Developer Guide. -// -// Each record in the Records array may include an optional parameter, ExplicitHashKey, -// which overrides the partition key to shard mapping. This parameter allows -// a data producer to determine explicitly the shard where the record is stored. -// For more information, see Adding Multiple Records with PutRecords (http://docs.aws.amazon.com/kinesis/latest/dev/developing-producers-with-sdk.html#kinesis-using-sdk-java-putrecords) -// in the Amazon Kinesis Streams Developer Guide. -// -// The PutRecords response includes an array of response Records. Each record -// in the response array directly correlates with a record in the request array -// using natural ordering, from the top to the bottom of the request and response. -// The response Records array always includes the same number of records as -// the request array. -// -// The response Records array includes both successfully and unsuccessfully -// processed records. Amazon Kinesis attempts to process all records in each -// PutRecords request. A single record failure does not stop the processing -// of subsequent records. -// -// A successfully-processed record includes ShardId and SequenceNumber values. -// The ShardId parameter identifies the shard in the stream where the record -// is stored. The SequenceNumber parameter is an identifier assigned to the -// put record, unique to all records in the stream. -// -// An unsuccessfully-processed record includes ErrorCode and ErrorMessage values. -// ErrorCode reflects the type of error and can be one of the following values: -// ProvisionedThroughputExceededException or InternalFailure. ErrorMessage provides -// more detailed information about the ProvisionedThroughputExceededException -// exception including the account ID, stream name, and shard ID of the record -// that was throttled. For more information about partially successful responses, -// see Adding Multiple Records with PutRecords (http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-add-data-to-stream.html#kinesis-using-sdk-java-putrecords) -// in the Amazon Kinesis Streams Developer Guide. -// -// By default, data records are accessible for only 24 hours from the time -// that they are added to an Amazon Kinesis stream. This retention period can -// be modified using the DecreaseStreamRetentionPeriod and IncreaseStreamRetentionPeriod -// operations. -func (c *Kinesis) PutRecords(input *PutRecordsInput) (*PutRecordsOutput, error) { - req, out := c.PutRecordsRequest(input) - err := req.Send() - return out, err -} - -const opRemoveTagsFromStream = "RemoveTagsFromStream" - -// RemoveTagsFromStreamRequest generates a "aws/request.Request" representing the -// client's request for the RemoveTagsFromStream operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RemoveTagsFromStream method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RemoveTagsFromStreamRequest method. -// req, resp := client.RemoveTagsFromStreamRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) RemoveTagsFromStreamRequest(input *RemoveTagsFromStreamInput) (req *request.Request, output *RemoveTagsFromStreamOutput) { - op := &request.Operation{ - Name: opRemoveTagsFromStream, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &RemoveTagsFromStreamInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &RemoveTagsFromStreamOutput{} - req.Data = output - return -} - -// Removes tags from the specified Amazon Kinesis stream. Removed tags are deleted -// and cannot be recovered after this operation successfully completes. -// -// If you specify a tag that does not exist, it is ignored. -func (c *Kinesis) RemoveTagsFromStream(input *RemoveTagsFromStreamInput) (*RemoveTagsFromStreamOutput, error) { - req, out := c.RemoveTagsFromStreamRequest(input) - err := req.Send() - return out, err -} - -const opSplitShard = "SplitShard" - -// SplitShardRequest generates a "aws/request.Request" representing the -// client's request for the SplitShard operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the SplitShard method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the SplitShardRequest method. -// req, resp := client.SplitShardRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Kinesis) SplitShardRequest(input *SplitShardInput) (req *request.Request, output *SplitShardOutput) { - op := &request.Operation{ - Name: opSplitShard, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &SplitShardInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &SplitShardOutput{} - req.Data = output - return -} - -// Splits a shard into two new shards in the Amazon Kinesis stream to increase -// the stream's capacity to ingest and transport data. SplitShard is called -// when there is a need to increase the overall capacity of a stream because -// of an expected increase in the volume of data records being ingested. -// -// You can also use SplitShard when a shard appears to be approaching its maximum -// utilization; for example, the producers sending data into the specific shard -// are suddenly sending more than previously anticipated. You can also call -// SplitShard to increase stream capacity, so that more Amazon Kinesis applications -// can simultaneously read data from the stream for real-time processing. -// -// You must specify the shard to be split and the new hash key, which is the -// position in the shard where the shard gets split in two. In many cases, the -// new hash key might simply be the average of the beginning and ending hash -// key, but it can be any hash key value in the range being mapped into the -// shard. For more information about splitting shards, see Split a Shard (http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-using-sdk-java-resharding-split.html) -// in the Amazon Kinesis Streams Developer Guide. -// -// You can use DescribeStream to determine the shard ID and hash key values -// for the ShardToSplit and NewStartingHashKey parameters that are specified -// in the SplitShard request. -// -// SplitShard is an asynchronous operation. Upon receiving a SplitShard request, -// Amazon Kinesis immediately returns a response and sets the stream status -// to UPDATING. After the operation is completed, Amazon Kinesis sets the stream -// status to ACTIVE. Read and write operations continue to work while the stream -// is in the UPDATING state. -// -// You can use DescribeStream to check the status of the stream, which is returned -// in StreamStatus. If the stream is in the ACTIVE state, you can call SplitShard. -// If a stream is in CREATING or UPDATING or DELETING states, DescribeStream -// returns a ResourceInUseException. -// -// If the specified stream does not exist, DescribeStream returns a ResourceNotFoundException. -// If you try to create more shards than are authorized for your account, you -// receive a LimitExceededException. -// -// For the default shard limit for an AWS account, see Streams Limits (http://docs.aws.amazon.com/kinesis/latest/dev/service-sizes-and-limits.html) -// in the Amazon Kinesis Streams Developer Guide. If you need to increase this -// limit, contact AWS Support (http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html). -// -// If you try to operate on too many streams simultaneously using CreateStream, -// DeleteStream, MergeShards, and/or SplitShard, you receive a LimitExceededException. -// -// SplitShard has limit of 5 transactions per second per account. -func (c *Kinesis) SplitShard(input *SplitShardInput) (*SplitShardOutput, error) { - req, out := c.SplitShardRequest(input) - err := req.Send() - return out, err -} - -// Represents the input for AddTagsToStream. -type AddTagsToStreamInput struct { - _ struct{} `type:"structure"` - - // The name of the stream. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` - - // The set of key-value pairs to use to create the tags. - // - // Tags is a required field - Tags map[string]*string `min:"1" type:"map" required:"true"` -} - -// String returns the string representation -func (s AddTagsToStreamInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AddTagsToStreamInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AddTagsToStreamInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AddTagsToStreamInput"} - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - if s.Tags == nil { - invalidParams.Add(request.NewErrParamRequired("Tags")) - } - if s.Tags != nil && len(s.Tags) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Tags", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type AddTagsToStreamOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s AddTagsToStreamOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AddTagsToStreamOutput) GoString() string { - return s.String() -} - -// Represents the input for CreateStream. -type CreateStreamInput struct { - _ struct{} `type:"structure"` - - // The number of shards that the stream will use. The throughput of the stream - // is a function of the number of shards; more shards are required for greater - // provisioned throughput. - // - // DefaultShardLimit; - // - // ShardCount is a required field - ShardCount *int64 `min:"1" type:"integer" required:"true"` - - // A name to identify the stream. The stream name is scoped to the AWS account - // used by the application that creates the stream. It is also scoped by region. - // That is, two streams in two different AWS accounts can have the same name, - // and two streams in the same AWS account but in two different regions can - // have the same name. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateStreamInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateStreamInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateStreamInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateStreamInput"} - if s.ShardCount == nil { - invalidParams.Add(request.NewErrParamRequired("ShardCount")) - } - if s.ShardCount != nil && *s.ShardCount < 1 { - invalidParams.Add(request.NewErrParamMinValue("ShardCount", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreateStreamOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s CreateStreamOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateStreamOutput) GoString() string { - return s.String() -} - -// Represents the input for DecreaseStreamRetentionPeriod. -type DecreaseStreamRetentionPeriodInput struct { - _ struct{} `type:"structure"` - - // The new retention period of the stream, in hours. Must be less than the current - // retention period. - // - // RetentionPeriodHours is a required field - RetentionPeriodHours *int64 `min:"24" type:"integer" required:"true"` - - // The name of the stream to modify. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s DecreaseStreamRetentionPeriodInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DecreaseStreamRetentionPeriodInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DecreaseStreamRetentionPeriodInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DecreaseStreamRetentionPeriodInput"} - if s.RetentionPeriodHours == nil { - invalidParams.Add(request.NewErrParamRequired("RetentionPeriodHours")) - } - if s.RetentionPeriodHours != nil && *s.RetentionPeriodHours < 24 { - invalidParams.Add(request.NewErrParamMinValue("RetentionPeriodHours", 24)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DecreaseStreamRetentionPeriodOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DecreaseStreamRetentionPeriodOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DecreaseStreamRetentionPeriodOutput) GoString() string { - return s.String() -} - -// Represents the input for DeleteStream. -type DeleteStreamInput struct { - _ struct{} `type:"structure"` - - // The name of the stream to delete. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteStreamInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteStreamInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteStreamInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteStreamInput"} - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteStreamOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteStreamOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteStreamOutput) GoString() string { - return s.String() -} - -// Represents the input for DescribeStream. -type DescribeStreamInput struct { - _ struct{} `type:"structure"` - - // The shard ID of the shard to start with. - ExclusiveStartShardId *string `min:"1" type:"string"` - - // The maximum number of shards to return. - Limit *int64 `min:"1" type:"integer"` - - // The name of the stream to describe. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s DescribeStreamInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeStreamInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DescribeStreamInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DescribeStreamInput"} - if s.ExclusiveStartShardId != nil && len(*s.ExclusiveStartShardId) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ExclusiveStartShardId", 1)) - } - if s.Limit != nil && *s.Limit < 1 { - invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output for DescribeStream. -type DescribeStreamOutput struct { - _ struct{} `type:"structure"` - - // The current status of the stream, the stream ARN, an array of shard objects - // that comprise the stream, and states whether there are more shards available. - // - // StreamDescription is a required field - StreamDescription *StreamDescription `type:"structure" required:"true"` -} - -// String returns the string representation -func (s DescribeStreamOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DescribeStreamOutput) GoString() string { - return s.String() -} - -// Represents the input for DisableEnhancedMonitoring. -type DisableEnhancedMonitoringInput struct { - _ struct{} `type:"structure"` - - // List of shard-level metrics to disable. - // - // The following are the valid shard-level metrics. The value "ALL" disables - // every metric. - // - // IncomingBytes IncomingRecords OutgoingBytes OutgoingRecords WriteProvisionedThroughputExceeded - // ReadProvisionedThroughputExceeded IteratorAgeMilliseconds ALL For - // more information, see Monitoring the Amazon Kinesis Streams Service with - // Amazon CloudWatch (http://docs.aws.amazon.com/kinesis/latest/dev/monitoring-with-cloudwatch.html) - // in the Amazon Kinesis Streams Developer Guide. - // - // ShardLevelMetrics is a required field - ShardLevelMetrics []*string `min:"1" type:"list" required:"true"` - - // The name of the Amazon Kinesis stream for which to disable enhanced monitoring. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s DisableEnhancedMonitoringInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisableEnhancedMonitoringInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DisableEnhancedMonitoringInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DisableEnhancedMonitoringInput"} - if s.ShardLevelMetrics == nil { - invalidParams.Add(request.NewErrParamRequired("ShardLevelMetrics")) - } - if s.ShardLevelMetrics != nil && len(s.ShardLevelMetrics) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ShardLevelMetrics", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the input for EnableEnhancedMonitoring. -type EnableEnhancedMonitoringInput struct { - _ struct{} `type:"structure"` - - // List of shard-level metrics to enable. - // - // The following are the valid shard-level metrics. The value "ALL" enables - // every metric. - // - // IncomingBytes IncomingRecords OutgoingBytes OutgoingRecords WriteProvisionedThroughputExceeded - // ReadProvisionedThroughputExceeded IteratorAgeMilliseconds ALL For - // more information, see Monitoring the Amazon Kinesis Streams Service with - // Amazon CloudWatch (http://docs.aws.amazon.com/kinesis/latest/dev/monitoring-with-cloudwatch.html) - // in the Amazon Kinesis Streams Developer Guide. - // - // ShardLevelMetrics is a required field - ShardLevelMetrics []*string `min:"1" type:"list" required:"true"` - - // The name of the stream for which to enable enhanced monitoring. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s EnableEnhancedMonitoringInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnableEnhancedMonitoringInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *EnableEnhancedMonitoringInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "EnableEnhancedMonitoringInput"} - if s.ShardLevelMetrics == nil { - invalidParams.Add(request.NewErrParamRequired("ShardLevelMetrics")) - } - if s.ShardLevelMetrics != nil && len(s.ShardLevelMetrics) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ShardLevelMetrics", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents enhanced metrics types. -type EnhancedMetrics struct { - _ struct{} `type:"structure"` - - // List of shard-level metrics. - // - // The following are the valid shard-level metrics. The value "ALL" enhances - // every metric. - // - // IncomingBytes IncomingRecords OutgoingBytes OutgoingRecords WriteProvisionedThroughputExceeded - // ReadProvisionedThroughputExceeded IteratorAgeMilliseconds ALL For - // more information, see Monitoring the Amazon Kinesis Streams Service with - // Amazon CloudWatch (http://docs.aws.amazon.com/kinesis/latest/dev/monitoring-with-cloudwatch.html) - // in the Amazon Kinesis Streams Developer Guide. - ShardLevelMetrics []*string `min:"1" type:"list"` -} - -// String returns the string representation -func (s EnhancedMetrics) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnhancedMetrics) GoString() string { - return s.String() -} - -// Represents the output for EnableEnhancedMonitoring and DisableEnhancedMonitoring. -type EnhancedMonitoringOutput struct { - _ struct{} `type:"structure"` - - // Represents the current state of the metrics that are in the enhanced state - // before the operation. - CurrentShardLevelMetrics []*string `min:"1" type:"list"` - - // Represents the list of all the metrics that would be in the enhanced state - // after the operation. - DesiredShardLevelMetrics []*string `min:"1" type:"list"` - - // The name of the Amazon Kinesis stream. - StreamName *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s EnhancedMonitoringOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s EnhancedMonitoringOutput) GoString() string { - return s.String() -} - -// Represents the input for GetRecords. -type GetRecordsInput struct { - _ struct{} `type:"structure"` - - // The maximum number of records to return. Specify a value of up to 10,000. - // If you specify a value that is greater than 10,000, GetRecords throws InvalidArgumentException. - Limit *int64 `min:"1" type:"integer"` - - // The position in the shard from which you want to start sequentially reading - // data records. A shard iterator specifies this position using the sequence - // number of a data record in the shard. - // - // ShardIterator is a required field - ShardIterator *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetRecordsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetRecordsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetRecordsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetRecordsInput"} - if s.Limit != nil && *s.Limit < 1 { - invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) - } - if s.ShardIterator == nil { - invalidParams.Add(request.NewErrParamRequired("ShardIterator")) - } - if s.ShardIterator != nil && len(*s.ShardIterator) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ShardIterator", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output for GetRecords. -type GetRecordsOutput struct { - _ struct{} `type:"structure"` - - // The number of milliseconds the GetRecords response is from the tip of the - // stream, indicating how far behind current time the consumer is. A value of - // zero indicates record processing is caught up, and there are no new records - // to process at this moment. - MillisBehindLatest *int64 `type:"long"` - - // The next position in the shard from which to start sequentially reading data - // records. If set to null, the shard has been closed and the requested iterator - // will not return any more data. - NextShardIterator *string `min:"1" type:"string"` - - // The data records retrieved from the shard. - // - // Records is a required field - Records []*Record `type:"list" required:"true"` -} - -// String returns the string representation -func (s GetRecordsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetRecordsOutput) GoString() string { - return s.String() -} - -// Represents the input for GetShardIterator. -type GetShardIteratorInput struct { - _ struct{} `type:"structure"` - - // The shard ID of the Amazon Kinesis shard to get the iterator for. - // - // ShardId is a required field - ShardId *string `min:"1" type:"string" required:"true"` - - // Determines how the shard iterator is used to start reading data records from - // the shard. - // - // The following are the valid Amazon Kinesis shard iterator types: - // - // AT_SEQUENCE_NUMBER - Start reading from the position denoted by a specific - // sequence number, provided in the value StartingSequenceNumber. AFTER_SEQUENCE_NUMBER - // - Start reading right after the position denoted by a specific sequence number, - // provided in the value StartingSequenceNumber. AT_TIMESTAMP - Start reading - // from the position denoted by a specific timestamp, provided in the value - // Timestamp. TRIM_HORIZON - Start reading at the last untrimmed record in the - // shard in the system, which is the oldest data record in the shard. LATEST - // - Start reading just after the most recent record in the shard, so that you - // always read the most recent data in the shard. - // - // ShardIteratorType is a required field - ShardIteratorType *string `type:"string" required:"true" enum:"ShardIteratorType"` - - // The sequence number of the data record in the shard from which to start reading. - // Used with shard iterator type AT_SEQUENCE_NUMBER and AFTER_SEQUENCE_NUMBER. - StartingSequenceNumber *string `type:"string"` - - // The name of the Amazon Kinesis stream. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` - - // The timestamp of the data record from which to start reading. Used with shard - // iterator type AT_TIMESTAMP. A timestamp is the Unix epoch date with precision - // in milliseconds. For example, 2016-04-04T19:58:46.480-00:00 or 1459799926.480. - // If a record with this exact timestamp does not exist, the iterator returned - // is for the next (later) record. If the timestamp is older than the current - // trim horizon, the iterator returned is for the oldest untrimmed data record - // (TRIM_HORIZON). - Timestamp *time.Time `type:"timestamp" timestampFormat:"unix"` -} - -// String returns the string representation -func (s GetShardIteratorInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetShardIteratorInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetShardIteratorInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetShardIteratorInput"} - if s.ShardId == nil { - invalidParams.Add(request.NewErrParamRequired("ShardId")) - } - if s.ShardId != nil && len(*s.ShardId) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ShardId", 1)) - } - if s.ShardIteratorType == nil { - invalidParams.Add(request.NewErrParamRequired("ShardIteratorType")) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output for GetShardIterator. -type GetShardIteratorOutput struct { - _ struct{} `type:"structure"` - - // The position in the shard from which to start reading data records sequentially. - // A shard iterator specifies this position using the sequence number of a data - // record in a shard. - ShardIterator *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s GetShardIteratorOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetShardIteratorOutput) GoString() string { - return s.String() -} - -// The range of possible hash key values for the shard, which is a set of ordered -// contiguous positive integers. -type HashKeyRange struct { - _ struct{} `type:"structure"` - - // The ending hash key of the hash key range. - // - // EndingHashKey is a required field - EndingHashKey *string `type:"string" required:"true"` - - // The starting hash key of the hash key range. - // - // StartingHashKey is a required field - StartingHashKey *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s HashKeyRange) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HashKeyRange) GoString() string { - return s.String() -} - -// Represents the input for IncreaseStreamRetentionPeriod. -type IncreaseStreamRetentionPeriodInput struct { - _ struct{} `type:"structure"` - - // The new retention period of the stream, in hours. Must be more than the current - // retention period. - // - // RetentionPeriodHours is a required field - RetentionPeriodHours *int64 `min:"24" type:"integer" required:"true"` - - // The name of the stream to modify. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s IncreaseStreamRetentionPeriodInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IncreaseStreamRetentionPeriodInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *IncreaseStreamRetentionPeriodInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "IncreaseStreamRetentionPeriodInput"} - if s.RetentionPeriodHours == nil { - invalidParams.Add(request.NewErrParamRequired("RetentionPeriodHours")) - } - if s.RetentionPeriodHours != nil && *s.RetentionPeriodHours < 24 { - invalidParams.Add(request.NewErrParamMinValue("RetentionPeriodHours", 24)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type IncreaseStreamRetentionPeriodOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s IncreaseStreamRetentionPeriodOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IncreaseStreamRetentionPeriodOutput) GoString() string { - return s.String() -} - -// Represents the input for ListStreams. -type ListStreamsInput struct { - _ struct{} `type:"structure"` - - // The name of the stream to start the list with. - ExclusiveStartStreamName *string `min:"1" type:"string"` - - // The maximum number of streams to list. - Limit *int64 `min:"1" type:"integer"` -} - -// String returns the string representation -func (s ListStreamsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListStreamsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListStreamsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListStreamsInput"} - if s.ExclusiveStartStreamName != nil && len(*s.ExclusiveStartStreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ExclusiveStartStreamName", 1)) - } - if s.Limit != nil && *s.Limit < 1 { - invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output for ListStreams. -type ListStreamsOutput struct { - _ struct{} `type:"structure"` - - // If set to true, there are more streams available to list. - // - // HasMoreStreams is a required field - HasMoreStreams *bool `type:"boolean" required:"true"` - - // The names of the streams that are associated with the AWS account making - // the ListStreams request. - // - // StreamNames is a required field - StreamNames []*string `type:"list" required:"true"` -} - -// String returns the string representation -func (s ListStreamsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListStreamsOutput) GoString() string { - return s.String() -} - -// Represents the input for ListTagsForStream. -type ListTagsForStreamInput struct { - _ struct{} `type:"structure"` - - // The key to use as the starting point for the list of tags. If this parameter - // is set, ListTagsForStream gets all tags that occur after ExclusiveStartTagKey. - ExclusiveStartTagKey *string `min:"1" type:"string"` - - // The number of tags to return. If this number is less than the total number - // of tags associated with the stream, HasMoreTags is set to true. To list additional - // tags, set ExclusiveStartTagKey to the last key in the response. - Limit *int64 `min:"1" type:"integer"` - - // The name of the stream. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s ListTagsForStreamInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForStreamInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTagsForStreamInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTagsForStreamInput"} - if s.ExclusiveStartTagKey != nil && len(*s.ExclusiveStartTagKey) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ExclusiveStartTagKey", 1)) - } - if s.Limit != nil && *s.Limit < 1 { - invalidParams.Add(request.NewErrParamMinValue("Limit", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output for ListTagsForStream. -type ListTagsForStreamOutput struct { - _ struct{} `type:"structure"` - - // If set to true, more tags are available. To request additional tags, set - // ExclusiveStartTagKey to the key of the last tag returned. - // - // HasMoreTags is a required field - HasMoreTags *bool `type:"boolean" required:"true"` - - // A list of tags associated with StreamName, starting with the first tag after - // ExclusiveStartTagKey and up to the specified Limit. - // - // Tags is a required field - Tags []*Tag `type:"list" required:"true"` -} - -// String returns the string representation -func (s ListTagsForStreamOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForStreamOutput) GoString() string { - return s.String() -} - -// Represents the input for MergeShards. -type MergeShardsInput struct { - _ struct{} `type:"structure"` - - // The shard ID of the adjacent shard for the merge. - // - // AdjacentShardToMerge is a required field - AdjacentShardToMerge *string `min:"1" type:"string" required:"true"` - - // The shard ID of the shard to combine with the adjacent shard for the merge. - // - // ShardToMerge is a required field - ShardToMerge *string `min:"1" type:"string" required:"true"` - - // The name of the stream for the merge. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s MergeShardsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MergeShardsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *MergeShardsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "MergeShardsInput"} - if s.AdjacentShardToMerge == nil { - invalidParams.Add(request.NewErrParamRequired("AdjacentShardToMerge")) - } - if s.AdjacentShardToMerge != nil && len(*s.AdjacentShardToMerge) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AdjacentShardToMerge", 1)) - } - if s.ShardToMerge == nil { - invalidParams.Add(request.NewErrParamRequired("ShardToMerge")) - } - if s.ShardToMerge != nil && len(*s.ShardToMerge) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ShardToMerge", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type MergeShardsOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s MergeShardsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MergeShardsOutput) GoString() string { - return s.String() -} - -// Represents the input for PutRecord. -type PutRecordInput struct { - _ struct{} `type:"structure"` - - // The data blob to put into the record, which is base64-encoded when the blob - // is serialized. When the data blob (the payload before base64-encoding) is - // added to the partition key size, the total size must not exceed the maximum - // record size (1 MB). - // - // Data is automatically base64 encoded/decoded by the SDK. - // - // Data is a required field - Data []byte `type:"blob" required:"true"` - - // The hash value used to explicitly determine the shard the data record is - // assigned to by overriding the partition key hash. - ExplicitHashKey *string `type:"string"` - - // Determines which shard in the stream the data record is assigned to. Partition - // keys are Unicode strings with a maximum length limit of 256 characters for - // each key. Amazon Kinesis uses the partition key as input to a hash function - // that maps the partition key and associated data to a specific shard. Specifically, - // an MD5 hash function is used to map partition keys to 128-bit integer values - // and to map associated data records to shards. As a result of this hashing - // mechanism, all data records with the same partition key map to the same shard - // within the stream. - // - // PartitionKey is a required field - PartitionKey *string `min:"1" type:"string" required:"true"` - - // Guarantees strictly increasing sequence numbers, for puts from the same client - // and to the same partition key. Usage: set the SequenceNumberForOrdering of - // record n to the sequence number of record n-1 (as returned in the result - // when putting record n-1). If this parameter is not set, records will be coarsely - // ordered based on arrival time. - SequenceNumberForOrdering *string `type:"string"` - - // The name of the stream to put the data record into. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s PutRecordInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutRecordInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutRecordInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutRecordInput"} - if s.Data == nil { - invalidParams.Add(request.NewErrParamRequired("Data")) - } - if s.PartitionKey == nil { - invalidParams.Add(request.NewErrParamRequired("PartitionKey")) - } - if s.PartitionKey != nil && len(*s.PartitionKey) < 1 { - invalidParams.Add(request.NewErrParamMinLen("PartitionKey", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the output for PutRecord. -type PutRecordOutput struct { - _ struct{} `type:"structure"` - - // The sequence number identifier that was assigned to the put data record. - // The sequence number for the record is unique across all records in the stream. - // A sequence number is the identifier associated with every record put into - // the stream. - // - // SequenceNumber is a required field - SequenceNumber *string `type:"string" required:"true"` - - // The shard ID of the shard where the data record was placed. - // - // ShardId is a required field - ShardId *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s PutRecordOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutRecordOutput) GoString() string { - return s.String() -} - -// A PutRecords request. -type PutRecordsInput struct { - _ struct{} `type:"structure"` - - // The records associated with the request. - // - // Records is a required field - Records []*PutRecordsRequestEntry `min:"1" type:"list" required:"true"` - - // The stream name associated with the request. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s PutRecordsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutRecordsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutRecordsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutRecordsInput"} - if s.Records == nil { - invalidParams.Add(request.NewErrParamRequired("Records")) - } - if s.Records != nil && len(s.Records) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Records", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - if s.Records != nil { - for i, v := range s.Records { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Records", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// PutRecords results. -type PutRecordsOutput struct { - _ struct{} `type:"structure"` - - // The number of unsuccessfully processed records in a PutRecords request. - FailedRecordCount *int64 `min:"1" type:"integer"` - - // An array of successfully and unsuccessfully processed record results, correlated - // with the request by natural ordering. A record that is successfully added - // to a stream includes SequenceNumber and ShardId in the result. A record that - // fails to be added to a stream includes ErrorCode and ErrorMessage in the - // result. - // - // Records is a required field - Records []*PutRecordsResultEntry `min:"1" type:"list" required:"true"` -} - -// String returns the string representation -func (s PutRecordsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutRecordsOutput) GoString() string { - return s.String() -} - -// Represents the output for PutRecords. -type PutRecordsRequestEntry struct { - _ struct{} `type:"structure"` - - // The data blob to put into the record, which is base64-encoded when the blob - // is serialized. When the data blob (the payload before base64-encoding) is - // added to the partition key size, the total size must not exceed the maximum - // record size (1 MB). - // - // Data is automatically base64 encoded/decoded by the SDK. - // - // Data is a required field - Data []byte `type:"blob" required:"true"` - - // The hash value used to determine explicitly the shard that the data record - // is assigned to by overriding the partition key hash. - ExplicitHashKey *string `type:"string"` - - // Determines which shard in the stream the data record is assigned to. Partition - // keys are Unicode strings with a maximum length limit of 256 characters for - // each key. Amazon Kinesis uses the partition key as input to a hash function - // that maps the partition key and associated data to a specific shard. Specifically, - // an MD5 hash function is used to map partition keys to 128-bit integer values - // and to map associated data records to shards. As a result of this hashing - // mechanism, all data records with the same partition key map to the same shard - // within the stream. - // - // PartitionKey is a required field - PartitionKey *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s PutRecordsRequestEntry) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutRecordsRequestEntry) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutRecordsRequestEntry) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutRecordsRequestEntry"} - if s.Data == nil { - invalidParams.Add(request.NewErrParamRequired("Data")) - } - if s.PartitionKey == nil { - invalidParams.Add(request.NewErrParamRequired("PartitionKey")) - } - if s.PartitionKey != nil && len(*s.PartitionKey) < 1 { - invalidParams.Add(request.NewErrParamMinLen("PartitionKey", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Represents the result of an individual record from a PutRecords request. -// A record that is successfully added to a stream includes SequenceNumber and -// ShardId in the result. A record that fails to be added to the stream includes -// ErrorCode and ErrorMessage in the result. -type PutRecordsResultEntry struct { - _ struct{} `type:"structure"` - - // The error code for an individual record result. ErrorCodes can be either - // ProvisionedThroughputExceededException or InternalFailure. - ErrorCode *string `type:"string"` - - // The error message for an individual record result. An ErrorCode value of - // ProvisionedThroughputExceededException has an error message that includes - // the account ID, stream name, and shard ID. An ErrorCode value of InternalFailure - // has the error message "Internal Service Failure". - ErrorMessage *string `type:"string"` - - // The sequence number for an individual record result. - SequenceNumber *string `type:"string"` - - // The shard ID for an individual record result. - ShardId *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s PutRecordsResultEntry) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutRecordsResultEntry) GoString() string { - return s.String() -} - -// The unit of data of the Amazon Kinesis stream, which is composed of a sequence -// number, a partition key, and a data blob. -type Record struct { - _ struct{} `type:"structure"` - - // The approximate time that the record was inserted into the stream. - ApproximateArrivalTimestamp *time.Time `type:"timestamp" timestampFormat:"unix"` - - // The data blob. The data in the blob is both opaque and immutable to the Amazon - // Kinesis service, which does not inspect, interpret, or change the data in - // the blob in any way. When the data blob (the payload before base64-encoding) - // is added to the partition key size, the total size must not exceed the maximum - // record size (1 MB). - // - // Data is automatically base64 encoded/decoded by the SDK. - // - // Data is a required field - Data []byte `type:"blob" required:"true"` - - // Identifies which shard in the stream the data record is assigned to. - // - // PartitionKey is a required field - PartitionKey *string `min:"1" type:"string" required:"true"` - - // The unique identifier of the record in the stream. - // - // SequenceNumber is a required field - SequenceNumber *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s Record) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Record) GoString() string { - return s.String() -} - -// Represents the input for RemoveTagsFromStream. -type RemoveTagsFromStreamInput struct { - _ struct{} `type:"structure"` - - // The name of the stream. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` - - // A list of tag keys. Each corresponding tag is removed from the stream. - // - // TagKeys is a required field - TagKeys []*string `min:"1" type:"list" required:"true"` -} - -// String returns the string representation -func (s RemoveTagsFromStreamInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RemoveTagsFromStreamInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RemoveTagsFromStreamInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RemoveTagsFromStreamInput"} - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - if s.TagKeys == nil { - invalidParams.Add(request.NewErrParamRequired("TagKeys")) - } - if s.TagKeys != nil && len(s.TagKeys) < 1 { - invalidParams.Add(request.NewErrParamMinLen("TagKeys", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type RemoveTagsFromStreamOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s RemoveTagsFromStreamOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RemoveTagsFromStreamOutput) GoString() string { - return s.String() -} - -// The range of possible sequence numbers for the shard. -type SequenceNumberRange struct { - _ struct{} `type:"structure"` - - // The ending sequence number for the range. Shards that are in the OPEN state - // have an ending sequence number of null. - EndingSequenceNumber *string `type:"string"` - - // The starting sequence number for the range. - // - // StartingSequenceNumber is a required field - StartingSequenceNumber *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s SequenceNumberRange) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SequenceNumberRange) GoString() string { - return s.String() -} - -// A uniquely identified group of data records in an Amazon Kinesis stream. -type Shard struct { - _ struct{} `type:"structure"` - - // The shard ID of the shard adjacent to the shard's parent. - AdjacentParentShardId *string `min:"1" type:"string"` - - // The range of possible hash key values for the shard, which is a set of ordered - // contiguous positive integers. - // - // HashKeyRange is a required field - HashKeyRange *HashKeyRange `type:"structure" required:"true"` - - // The shard ID of the shard's parent. - ParentShardId *string `min:"1" type:"string"` - - // The range of possible sequence numbers for the shard. - // - // SequenceNumberRange is a required field - SequenceNumberRange *SequenceNumberRange `type:"structure" required:"true"` - - // The unique identifier of the shard within the stream. - // - // ShardId is a required field - ShardId *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s Shard) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Shard) GoString() string { - return s.String() -} - -// Represents the input for SplitShard. -type SplitShardInput struct { - _ struct{} `type:"structure"` - - // A hash key value for the starting hash key of one of the child shards created - // by the split. The hash key range for a given shard constitutes a set of ordered - // contiguous positive integers. The value for NewStartingHashKey must be in - // the range of hash keys being mapped into the shard. The NewStartingHashKey - // hash key value and all higher hash key values in hash key range are distributed - // to one of the child shards. All the lower hash key values in the range are - // distributed to the other child shard. - // - // NewStartingHashKey is a required field - NewStartingHashKey *string `type:"string" required:"true"` - - // The shard ID of the shard to split. - // - // ShardToSplit is a required field - ShardToSplit *string `min:"1" type:"string" required:"true"` - - // The name of the stream for the shard split. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s SplitShardInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SplitShardInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *SplitShardInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "SplitShardInput"} - if s.NewStartingHashKey == nil { - invalidParams.Add(request.NewErrParamRequired("NewStartingHashKey")) - } - if s.ShardToSplit == nil { - invalidParams.Add(request.NewErrParamRequired("ShardToSplit")) - } - if s.ShardToSplit != nil && len(*s.ShardToSplit) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ShardToSplit", 1)) - } - if s.StreamName == nil { - invalidParams.Add(request.NewErrParamRequired("StreamName")) - } - if s.StreamName != nil && len(*s.StreamName) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StreamName", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type SplitShardOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s SplitShardOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s SplitShardOutput) GoString() string { - return s.String() -} - -// Represents the output for DescribeStream. -type StreamDescription struct { - _ struct{} `type:"structure"` - - // Represents the current enhanced monitoring settings of the stream. - // - // EnhancedMonitoring is a required field - EnhancedMonitoring []*EnhancedMetrics `type:"list" required:"true"` - - // If set to true, more shards in the stream are available to describe. - // - // HasMoreShards is a required field - HasMoreShards *bool `type:"boolean" required:"true"` - - // The current retention period, in hours. - // - // RetentionPeriodHours is a required field - RetentionPeriodHours *int64 `min:"24" type:"integer" required:"true"` - - // The shards that comprise the stream. - // - // Shards is a required field - Shards []*Shard `type:"list" required:"true"` - - // The Amazon Resource Name (ARN) for the stream being described. - // - // StreamARN is a required field - StreamARN *string `type:"string" required:"true"` - - // The name of the stream being described. - // - // StreamName is a required field - StreamName *string `min:"1" type:"string" required:"true"` - - // The current status of the stream being described. The stream status is one - // of the following states: - // - // CREATING - The stream is being created. Amazon Kinesis immediately returns - // and sets StreamStatus to CREATING. DELETING - The stream is being deleted. - // The specified stream is in the DELETING state until Amazon Kinesis completes - // the deletion. ACTIVE - The stream exists and is ready for read and write - // operations or deletion. You should perform read and write operations only - // on an ACTIVE stream. UPDATING - Shards in the stream are being merged or - // split. Read and write operations continue to work while the stream is in - // the UPDATING state. - // - // StreamStatus is a required field - StreamStatus *string `type:"string" required:"true" enum:"StreamStatus"` -} - -// String returns the string representation -func (s StreamDescription) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StreamDescription) GoString() string { - return s.String() -} - -// Metadata assigned to the stream, consisting of a key-value pair. -type Tag struct { - _ struct{} `type:"structure"` - - // A unique identifier for the tag. Maximum length: 128 characters. Valid characters: - // Unicode letters, digits, white space, _ . / = + - % @ - // - // Key is a required field - Key *string `min:"1" type:"string" required:"true"` - - // An optional string, typically used to describe or define the tag. Maximum - // length: 256 characters. Valid characters: Unicode letters, digits, white - // space, _ . / = + - % @ - Value *string `type:"string"` -} - -// String returns the string representation -func (s Tag) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Tag) GoString() string { - return s.String() -} - -const ( - // MetricsNameIncomingBytes is a MetricsName enum value - MetricsNameIncomingBytes = "IncomingBytes" - - // MetricsNameIncomingRecords is a MetricsName enum value - MetricsNameIncomingRecords = "IncomingRecords" - - // MetricsNameOutgoingBytes is a MetricsName enum value - MetricsNameOutgoingBytes = "OutgoingBytes" - - // MetricsNameOutgoingRecords is a MetricsName enum value - MetricsNameOutgoingRecords = "OutgoingRecords" - - // MetricsNameWriteProvisionedThroughputExceeded is a MetricsName enum value - MetricsNameWriteProvisionedThroughputExceeded = "WriteProvisionedThroughputExceeded" - - // MetricsNameReadProvisionedThroughputExceeded is a MetricsName enum value - MetricsNameReadProvisionedThroughputExceeded = "ReadProvisionedThroughputExceeded" - - // MetricsNameIteratorAgeMilliseconds is a MetricsName enum value - MetricsNameIteratorAgeMilliseconds = "IteratorAgeMilliseconds" - - // MetricsNameAll is a MetricsName enum value - MetricsNameAll = "ALL" -) - -const ( - // ShardIteratorTypeAtSequenceNumber is a ShardIteratorType enum value - ShardIteratorTypeAtSequenceNumber = "AT_SEQUENCE_NUMBER" - - // ShardIteratorTypeAfterSequenceNumber is a ShardIteratorType enum value - ShardIteratorTypeAfterSequenceNumber = "AFTER_SEQUENCE_NUMBER" - - // ShardIteratorTypeTrimHorizon is a ShardIteratorType enum value - ShardIteratorTypeTrimHorizon = "TRIM_HORIZON" - - // ShardIteratorTypeLatest is a ShardIteratorType enum value - ShardIteratorTypeLatest = "LATEST" - - // ShardIteratorTypeAtTimestamp is a ShardIteratorType enum value - ShardIteratorTypeAtTimestamp = "AT_TIMESTAMP" -) - -const ( - // StreamStatusCreating is a StreamStatus enum value - StreamStatusCreating = "CREATING" - - // StreamStatusDeleting is a StreamStatus enum value - StreamStatusDeleting = "DELETING" - - // StreamStatusActive is a StreamStatus enum value - StreamStatusActive = "ACTIVE" - - // StreamStatusUpdating is a StreamStatus enum value - StreamStatusUpdating = "UPDATING" -) diff --git a/vendor/github.com/aws/aws-sdk-go/service/kinesis/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/kinesis/examples_test.go deleted file mode 100644 index 50923928..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/kinesis/examples_test.go +++ /dev/null @@ -1,486 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package kinesis_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/kinesis" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleKinesis_AddTagsToStream() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.AddTagsToStreamInput{ - StreamName: aws.String("StreamName"), // Required - Tags: map[string]*string{ // Required - "Key": aws.String("TagValue"), // Required - // More values... - }, - } - resp, err := svc.AddTagsToStream(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_CreateStream() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.CreateStreamInput{ - ShardCount: aws.Int64(1), // Required - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.CreateStream(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_DecreaseStreamRetentionPeriod() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.DecreaseStreamRetentionPeriodInput{ - RetentionPeriodHours: aws.Int64(1), // Required - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.DecreaseStreamRetentionPeriod(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_DeleteStream() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.DeleteStreamInput{ - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.DeleteStream(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_DescribeStream() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.DescribeStreamInput{ - StreamName: aws.String("StreamName"), // Required - ExclusiveStartShardId: aws.String("ShardId"), - Limit: aws.Int64(1), - } - resp, err := svc.DescribeStream(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_DisableEnhancedMonitoring() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.DisableEnhancedMonitoringInput{ - ShardLevelMetrics: []*string{ // Required - aws.String("MetricsName"), // Required - // More values... - }, - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.DisableEnhancedMonitoring(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_EnableEnhancedMonitoring() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.EnableEnhancedMonitoringInput{ - ShardLevelMetrics: []*string{ // Required - aws.String("MetricsName"), // Required - // More values... - }, - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.EnableEnhancedMonitoring(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_GetRecords() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.GetRecordsInput{ - ShardIterator: aws.String("ShardIterator"), // Required - Limit: aws.Int64(1), - } - resp, err := svc.GetRecords(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_GetShardIterator() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.GetShardIteratorInput{ - ShardId: aws.String("ShardId"), // Required - ShardIteratorType: aws.String("ShardIteratorType"), // Required - StreamName: aws.String("StreamName"), // Required - StartingSequenceNumber: aws.String("SequenceNumber"), - Timestamp: aws.Time(time.Now()), - } - resp, err := svc.GetShardIterator(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_IncreaseStreamRetentionPeriod() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.IncreaseStreamRetentionPeriodInput{ - RetentionPeriodHours: aws.Int64(1), // Required - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.IncreaseStreamRetentionPeriod(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_ListStreams() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.ListStreamsInput{ - ExclusiveStartStreamName: aws.String("StreamName"), - Limit: aws.Int64(1), - } - resp, err := svc.ListStreams(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_ListTagsForStream() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.ListTagsForStreamInput{ - StreamName: aws.String("StreamName"), // Required - ExclusiveStartTagKey: aws.String("TagKey"), - Limit: aws.Int64(1), - } - resp, err := svc.ListTagsForStream(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_MergeShards() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.MergeShardsInput{ - AdjacentShardToMerge: aws.String("ShardId"), // Required - ShardToMerge: aws.String("ShardId"), // Required - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.MergeShards(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_PutRecord() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.PutRecordInput{ - Data: []byte("PAYLOAD"), // Required - PartitionKey: aws.String("PartitionKey"), // Required - StreamName: aws.String("StreamName"), // Required - ExplicitHashKey: aws.String("HashKey"), - SequenceNumberForOrdering: aws.String("SequenceNumber"), - } - resp, err := svc.PutRecord(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_PutRecords() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.PutRecordsInput{ - Records: []*kinesis.PutRecordsRequestEntry{ // Required - { // Required - Data: []byte("PAYLOAD"), // Required - PartitionKey: aws.String("PartitionKey"), // Required - ExplicitHashKey: aws.String("HashKey"), - }, - // More values... - }, - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.PutRecords(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_RemoveTagsFromStream() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.RemoveTagsFromStreamInput{ - StreamName: aws.String("StreamName"), // Required - TagKeys: []*string{ // Required - aws.String("TagKey"), // Required - // More values... - }, - } - resp, err := svc.RemoveTagsFromStream(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleKinesis_SplitShard() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := kinesis.New(sess) - - params := &kinesis.SplitShardInput{ - NewStartingHashKey: aws.String("HashKey"), // Required - ShardToSplit: aws.String("ShardId"), // Required - StreamName: aws.String("StreamName"), // Required - } - resp, err := svc.SplitShard(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/kinesis/service.go b/vendor/github.com/aws/aws-sdk-go/service/kinesis/service.go deleted file mode 100644 index e2fe21e7..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/kinesis/service.go +++ /dev/null @@ -1,89 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package kinesis - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/jsonrpc" -) - -// Amazon Kinesis Streams is a managed service that scales elastically for real -// time processing of streaming big data. -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type Kinesis struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "kinesis" - -// New creates a new instance of the Kinesis client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a Kinesis client from just a session. -// svc := kinesis.New(mySession) -// -// // Create a Kinesis client with additional configuration -// svc := kinesis.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *Kinesis { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *Kinesis { - svc := &Kinesis{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2013-12-02", - JSONVersion: "1.1", - TargetPrefix: "Kinesis_20131202", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(jsonrpc.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(jsonrpc.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(jsonrpc.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(jsonrpc.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a Kinesis operation and runs any -// custom request initialization. -func (c *Kinesis) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/kinesis/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/kinesis/waiters.go deleted file mode 100644 index c1f56d6c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/kinesis/waiters.go +++ /dev/null @@ -1,34 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package kinesis - -import ( - "github.com/aws/aws-sdk-go/private/waiter" -) - -// WaitUntilStreamExists uses the Kinesis API operation -// DescribeStream to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *Kinesis) WaitUntilStreamExists(input *DescribeStreamInput) error { - waiterCfg := waiter.Config{ - Operation: "DescribeStream", - Delay: 10, - MaxAttempts: 18, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "StreamDescription.StreamStatus", - Expected: "ACTIVE", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/api.go b/vendor/github.com/aws/aws-sdk-go/service/route53/api.go deleted file mode 100644 index 4cc44a5f..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/api.go +++ /dev/null @@ -1,9196 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package route53 provides a client for Amazon Route 53. -package route53 - -import ( - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -const opAssociateVPCWithHostedZone = "AssociateVPCWithHostedZone" - -// AssociateVPCWithHostedZoneRequest generates a "aws/request.Request" representing the -// client's request for the AssociateVPCWithHostedZone operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssociateVPCWithHostedZone method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssociateVPCWithHostedZoneRequest method. -// req, resp := client.AssociateVPCWithHostedZoneRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) AssociateVPCWithHostedZoneRequest(input *AssociateVPCWithHostedZoneInput) (req *request.Request, output *AssociateVPCWithHostedZoneOutput) { - op := &request.Operation{ - Name: opAssociateVPCWithHostedZone, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/hostedzone/{Id}/associatevpc", - } - - if input == nil { - input = &AssociateVPCWithHostedZoneInput{} - } - - req = c.newRequest(op, input, output) - output = &AssociateVPCWithHostedZoneOutput{} - req.Data = output - return -} - -// Associates an Amazon VPC with a private hosted zone. -// -// The VPC and the hosted zone must already exist, and you must have created -// a private hosted zone. You cannot convert a public hosted zone into a private -// hosted zone. -// -// Send a POST request to the /Amazon Route 53 API version/hostedzone/hosted -// zone ID/associatevpc resource. The request body must include an XML document -// with a AssociateVPCWithHostedZoneRequest element. The response returns the -// AssociateVPCWithHostedZoneResponse element. -// -// If you used different accounts to create the hosted zone and to create -// the Amazon VPCs that you want to associate with the hosted zone, we need -// to update account permissions for you. For more information, see Associating -// Amazon VPCs and Private Hosted Zones That You Create with Different AWS Accounts -// (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zone-private-associate-vpcs-different-accounts.html) -// in the Amazon Route 53 Developer Guide. -func (c *Route53) AssociateVPCWithHostedZone(input *AssociateVPCWithHostedZoneInput) (*AssociateVPCWithHostedZoneOutput, error) { - req, out := c.AssociateVPCWithHostedZoneRequest(input) - err := req.Send() - return out, err -} - -const opChangeResourceRecordSets = "ChangeResourceRecordSets" - -// ChangeResourceRecordSetsRequest generates a "aws/request.Request" representing the -// client's request for the ChangeResourceRecordSets operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ChangeResourceRecordSets method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ChangeResourceRecordSetsRequest method. -// req, resp := client.ChangeResourceRecordSetsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ChangeResourceRecordSetsRequest(input *ChangeResourceRecordSetsInput) (req *request.Request, output *ChangeResourceRecordSetsOutput) { - op := &request.Operation{ - Name: opChangeResourceRecordSets, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/hostedzone/{Id}/rrset/", - } - - if input == nil { - input = &ChangeResourceRecordSetsInput{} - } - - req = c.newRequest(op, input, output) - output = &ChangeResourceRecordSetsOutput{} - req.Data = output - return -} - -// Create, change, update, or delete authoritative DNS information on all Amazon -// Route 53 servers. Send a POST request to: -// -// /2013-04-01/hostedzone/Amazon Route 53 hosted Zone ID/rrset resource. -// -// The request body must include a document with a ChangeResourceRecordSetsRequest -// element. The request body contains a list of change items, known as a change -// batch. Change batches are considered transactional changes. When using the -// Amazon Route 53 API to change resource record sets, Amazon Route 53 either -// makes all or none of the changes in a change batch request. This ensures -// that Amazon Route 53 never partially implements the intended changes to the -// resource record sets in a hosted zone. -// -// For example, a change batch request that deletes the CNAMErecord for www.example.com -// and creates an alias resource record set for www.example.com. Amazon Route -// 53 deletes the first resource record set and creates the second resource -// record set in a single operation. If either the DELETE or the CREATE action -// fails, then both changes (plus any other changes in the batch) fail, and -// the original CNAME record continues to exist. -// -// Due to the nature of transactional changes, you cannot delete the same -// resource record set more than once in a single change batch. If you attempt -// to delete the same change batch more than once, Amazon Route 53 returns an -// InvalidChangeBatch error. -// -// To create resource record sets for complex routing configurations, use -// either the traffic flow visual editor in the Amazon Route 53 console or the -// API actions for traffic policies and traffic policy instances. Save the configuration -// as a traffic policy, then associate the traffic policy with one or more domain -// names (such as example.com) or subdomain names (such as www.example.com), -// in the same hosted zone or in multiple hosted zones. You can roll back the -// updates if the new configuration isn't performing as expected. For more information, -// see Using Traffic Flow to Route DNS Traffic (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/traffic-flow.html) -// in the Amazon Route 53 API Reference or Actions on Traffic Policies and Traffic -// Policy Instances (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/actions-on-polices) -// in this guide. -// -// Use ChangeResourceRecordsSetsRequest to perform the following actions: -// -// CREATE:Creates a resource record set that has the specified values. -// -// DELETE: Deletes an existing resource record set that has the specified -// values for Name, Type, Set Identifier (for code latency, weighted, geolocation, -// and failover resource record sets), and TTL (except alias resource record -// sets, for which the TTL is determined by the AWS resource you're routing -// queries to). -// -// UPSERT: If a resource record set does not already exist, AWS creates -// it. If a resource set does exist, Amazon Route 53 updates it with the values -// in the request. Amazon Route 53 can update an existing resource record set -// only when all of the following values match: Name, Type, and Set Identifier -// (for weighted, latency, geolocation, and failover resource record sets). -// -// In response to a ChangeResourceRecordSets request, the DNS data is changed -// on all Amazon Route 53 DNS servers. Initially, the status of a change is -// PENDING, meaning the change has not yet propagated to all the authoritative -// Amazon Route 53 DNS servers. When the change is propagated to all hosts, -// the change returns a status of INSYNC. -// -// After sending a change request, confirm your change has propagated to all -// Amazon Route 53 DNS servers. Changes generally propagate to all Amazon Route -// 53 name servers in a few minutes. In rare circumstances, propagation can -// take up to 30 minutes. For more information, see GetChange. -// -// Note the following limitations on a ChangeResourceRecordSets request: -// -// A request cannot contain more than 100 Change elements. -// -// A request cannot contain more than 1000 ResourceRecord elements. -// -// The sum of the number of characters (including spaces) in all Value elements -// in a request cannot exceed 32,000 characters. -// -// If the value of the Action element in a ChangeResourceRecordSets request -// is UPSERT and the resource record set already exists, Amazon Route 53 automatically -// performs a DELETE request and a CREATE request. When Amazon Route 53 calculates -// the number of characters in the Value elements of a change batch request, -// it adds the number of characters in the Value element of the resource record -// set being deleted and the number of characters in the Value element of the -// resource record set being created. -// -// The same resource cannot be deleted more than once in a single batch. -// -// If the value of the Action element in a ChangeResourceRecordSets request -// is UPSERT and the resource record set already exists, Amazon Route 53 automatically -// performs a DELETE request and a CREATE request. When Amazon Route 53 calculates -// the number of characters in the Value elements of a change batch request, -// it adds the number of characters in the Value element of the resource record -// set being deleted and the number of characters in the Value element of the -// resource record set being created. -// -// For more information on transactional changes, see ChangeResourceRecordSets. -func (c *Route53) ChangeResourceRecordSets(input *ChangeResourceRecordSetsInput) (*ChangeResourceRecordSetsOutput, error) { - req, out := c.ChangeResourceRecordSetsRequest(input) - err := req.Send() - return out, err -} - -const opChangeTagsForResource = "ChangeTagsForResource" - -// ChangeTagsForResourceRequest generates a "aws/request.Request" representing the -// client's request for the ChangeTagsForResource operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ChangeTagsForResource method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ChangeTagsForResourceRequest method. -// req, resp := client.ChangeTagsForResourceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ChangeTagsForResourceRequest(input *ChangeTagsForResourceInput) (req *request.Request, output *ChangeTagsForResourceOutput) { - op := &request.Operation{ - Name: opChangeTagsForResource, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/tags/{ResourceType}/{ResourceId}", - } - - if input == nil { - input = &ChangeTagsForResourceInput{} - } - - req = c.newRequest(op, input, output) - output = &ChangeTagsForResourceOutput{} - req.Data = output - return -} - -func (c *Route53) ChangeTagsForResource(input *ChangeTagsForResourceInput) (*ChangeTagsForResourceOutput, error) { - req, out := c.ChangeTagsForResourceRequest(input) - err := req.Send() - return out, err -} - -const opCreateHealthCheck = "CreateHealthCheck" - -// CreateHealthCheckRequest generates a "aws/request.Request" representing the -// client's request for the CreateHealthCheck operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateHealthCheck method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateHealthCheckRequest method. -// req, resp := client.CreateHealthCheckRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) CreateHealthCheckRequest(input *CreateHealthCheckInput) (req *request.Request, output *CreateHealthCheckOutput) { - op := &request.Operation{ - Name: opCreateHealthCheck, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/healthcheck", - } - - if input == nil { - input = &CreateHealthCheckInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateHealthCheckOutput{} - req.Data = output - return -} - -// Creates a new health check. -// -// To create a new health check, send a POST request to the /2013-04-01/healthcheck -// resource. The request body must include an XML document with a CreateHealthCheckRequest -// element. The response returns the CreateHealthCheckResponse element, containing -// the health check ID specified when adding health check to a resource record -// set. For information about adding health checks to resource record sets, -// see ResourceRecordSet$HealthCheckId in ChangeResourceRecordSets. -// -// If you are registering Amazon EC2 instances with an Elastic Load Balancing -// (ELB) load balancer, do not create Amazon Route 53 health checks for the -// Amazon EC2 instances. When you register an Amazon EC2 instance with a load -// balancer, you configure settings for an ELB health check, which performs -// a similar function to an Amazon Route 53 health check. -// -// You can associate health checks with failover resource record sets in a -// private hosted zone. Note the following: -// -// Amazon Route 53 health checkers are outside the VPC. To check the health -// of an endpoint within a VPC by IP address, you must assign a public IP address -// to the instance in the VPC. -// -// You can configure a health checker to check the health of an external -// resource that the instance relies on, such as a database server. -// -// You can create a CloudWatch metric, associate an alarm with the metric, -// and then create a health check that is based on the state of the alarm. For -// example, you might create a CloudWatch metric that checks the status of the -// Amazon EC2 StatusCheckFailed metric, add an alarm to the metric, and then -// create a health check that is based on the state of the alarm. For information -// about creating CloudWatch metrics and alarms by using the CloudWatch console, -// see the Amazon CloudWatch Developer Guide (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/WhatIsCloudWatch.html). -func (c *Route53) CreateHealthCheck(input *CreateHealthCheckInput) (*CreateHealthCheckOutput, error) { - req, out := c.CreateHealthCheckRequest(input) - err := req.Send() - return out, err -} - -const opCreateHostedZone = "CreateHostedZone" - -// CreateHostedZoneRequest generates a "aws/request.Request" representing the -// client's request for the CreateHostedZone operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateHostedZone method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateHostedZoneRequest method. -// req, resp := client.CreateHostedZoneRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) CreateHostedZoneRequest(input *CreateHostedZoneInput) (req *request.Request, output *CreateHostedZoneOutput) { - op := &request.Operation{ - Name: opCreateHostedZone, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/hostedzone", - } - - if input == nil { - input = &CreateHostedZoneInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateHostedZoneOutput{} - req.Data = output - return -} - -// Creates a new public hosted zone, used to specify how the Domain Name System -// (DNS) routes traffic on the Internet for a domain, such as example.com, and -// its subdomains. -// -// Public hosted zones cannot be converted to a private hosted zone or vice -// versa. Instead, create a new hosted zone with the same name and create new -// resource record sets. -// -// Send a POST request to the /Amazon Route 53 API version/hostedzone resource. -// The request body must include an XML document with a CreateHostedZoneRequest -// element. The response returns the CreateHostedZoneResponse element containing -// metadata about the hosted zone. -// -// Fore more information about charges for hosted zones, see AmazonAmazon Route -// 53 Pricing (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/pricing/). -// -// Note the following: -// -// You cannot create a hosted zone for a top-level domain (TLD). -// -// Amazon Route 53 automatically creates a default SOA record and four NS -// records for the zone. For more information about SOA and NS records, see -// NS and SOA Records that Amazon Route 53 Creates for a Hosted Zone (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/SOA-NSrecords.html) -// in the Amazon Route 53 Developer Guide. -// -// If your domain is registered with a registrar other than Amazon Route -// 53, you must update the name servers with your registrar to make Amazon Route -// 53 your DNS service. For more information, see Configuring Amazon Route 53 -// as your DNS Service (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/creating-migrating.html) -// in the Amazon Route 53 Developer's Guide. -// -// After creating a zone, its initial status is PENDING. This means that -// it is not yet available on all DNS servers. The status of the zone changes -// to INSYNC when the NS and SOA records are available on all Amazon Route 53 -// DNS servers. -// -// When trying to create a hosted zone using a reusable delegation set, specify -// an optional DelegationSetId, and Amazon Route 53 would assign those 4 NS -// records for the zone, instead of alloting a new one. -func (c *Route53) CreateHostedZone(input *CreateHostedZoneInput) (*CreateHostedZoneOutput, error) { - req, out := c.CreateHostedZoneRequest(input) - err := req.Send() - return out, err -} - -const opCreateReusableDelegationSet = "CreateReusableDelegationSet" - -// CreateReusableDelegationSetRequest generates a "aws/request.Request" representing the -// client's request for the CreateReusableDelegationSet operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateReusableDelegationSet method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateReusableDelegationSetRequest method. -// req, resp := client.CreateReusableDelegationSetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) CreateReusableDelegationSetRequest(input *CreateReusableDelegationSetInput) (req *request.Request, output *CreateReusableDelegationSetOutput) { - op := &request.Operation{ - Name: opCreateReusableDelegationSet, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/delegationset", - } - - if input == nil { - input = &CreateReusableDelegationSetInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateReusableDelegationSetOutput{} - req.Data = output - return -} - -// Creates a delegation set (a group of four anem servers) that can be reused -// by multiple hosted zones. If a hosted zoned ID is specified, CreateReusableDelegationSet -// marks the delegation set associated with that zone as reusable -// -// Send a POST request to the /Amazon Route 53 API version/delegationset resource. -// The request body must include an XML document with a CreateReusableDelegationSetRequest -// element. -// -// A reusable delegation set cannot be associated with a private hosted zone/ -// -// For more information, including a procedure on how to create and configure -// a reusable delegation set (also known as white label name servers), see Configuring -// White Label Name Servers (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/white-label-name-servers.html). -func (c *Route53) CreateReusableDelegationSet(input *CreateReusableDelegationSetInput) (*CreateReusableDelegationSetOutput, error) { - req, out := c.CreateReusableDelegationSetRequest(input) - err := req.Send() - return out, err -} - -const opCreateTrafficPolicy = "CreateTrafficPolicy" - -// CreateTrafficPolicyRequest generates a "aws/request.Request" representing the -// client's request for the CreateTrafficPolicy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateTrafficPolicy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateTrafficPolicyRequest method. -// req, resp := client.CreateTrafficPolicyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) CreateTrafficPolicyRequest(input *CreateTrafficPolicyInput) (req *request.Request, output *CreateTrafficPolicyOutput) { - op := &request.Operation{ - Name: opCreateTrafficPolicy, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/trafficpolicy", - } - - if input == nil { - input = &CreateTrafficPolicyInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateTrafficPolicyOutput{} - req.Data = output - return -} - -// Creates a traffic policy, which you use to create multiple DNS resource record -// sets for one domain name (such as example.com) or one subdomain name (such -// as www.example.com). -// -// Send a POST request to the /Amazon Route 53 API version/trafficpolicy resource. -// The request body must include a document with a CreateTrafficPolicyRequest -// element. The response includes the CreateTrafficPolicyResponse element, which -// contains information about the new traffic policy. -func (c *Route53) CreateTrafficPolicy(input *CreateTrafficPolicyInput) (*CreateTrafficPolicyOutput, error) { - req, out := c.CreateTrafficPolicyRequest(input) - err := req.Send() - return out, err -} - -const opCreateTrafficPolicyInstance = "CreateTrafficPolicyInstance" - -// CreateTrafficPolicyInstanceRequest generates a "aws/request.Request" representing the -// client's request for the CreateTrafficPolicyInstance operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateTrafficPolicyInstance method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateTrafficPolicyInstanceRequest method. -// req, resp := client.CreateTrafficPolicyInstanceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) CreateTrafficPolicyInstanceRequest(input *CreateTrafficPolicyInstanceInput) (req *request.Request, output *CreateTrafficPolicyInstanceOutput) { - op := &request.Operation{ - Name: opCreateTrafficPolicyInstance, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/trafficpolicyinstance", - } - - if input == nil { - input = &CreateTrafficPolicyInstanceInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateTrafficPolicyInstanceOutput{} - req.Data = output - return -} - -// Creates resource record sets in a specified hosted zone based on the settings -// in a specified traffic policy version. In addition, CreateTrafficPolicyInstance -// associates the resource record sets with a specified domain name (such as -// example.com) or subdomain name (such as www.example.com). Amazon Route 53 -// responds to DNS queries for the domain or subdomain name by using the resource -// record sets that CreateTrafficPolicyInstance created. -// -// Send a POST request to the /Amazon Route 53 API version/trafficpolicyinstance -// resource. The request body must include a document with a CreateTrafficPolicyRequest -// element. The response returns the CreateTrafficPolicyInstanceResponse element, -// which contains information about the traffic policy instance. -func (c *Route53) CreateTrafficPolicyInstance(input *CreateTrafficPolicyInstanceInput) (*CreateTrafficPolicyInstanceOutput, error) { - req, out := c.CreateTrafficPolicyInstanceRequest(input) - err := req.Send() - return out, err -} - -const opCreateTrafficPolicyVersion = "CreateTrafficPolicyVersion" - -// CreateTrafficPolicyVersionRequest generates a "aws/request.Request" representing the -// client's request for the CreateTrafficPolicyVersion operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateTrafficPolicyVersion method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateTrafficPolicyVersionRequest method. -// req, resp := client.CreateTrafficPolicyVersionRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) CreateTrafficPolicyVersionRequest(input *CreateTrafficPolicyVersionInput) (req *request.Request, output *CreateTrafficPolicyVersionOutput) { - op := &request.Operation{ - Name: opCreateTrafficPolicyVersion, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/trafficpolicy/{Id}", - } - - if input == nil { - input = &CreateTrafficPolicyVersionInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateTrafficPolicyVersionOutput{} - req.Data = output - return -} - -// Creates a new version of an existing traffic policy. When you create a new -// version of a traffic policy, you specify the ID of the traffic policy that -// you want to update and a JSON-formatted document that describes the new version. -// You use traffic policies to create multiple DNS resource record sets for -// one domain name (such as example.com) or one subdomain name (such as www.example.com). -// You can create a maximum of 1000 versions of a traffic policy. If you reach -// the limit and need to create another version, you'll need to start a new -// traffic policy. -// -// Send a POST request to the /Amazon Route 53 version/trafficpolicy/ resource. -// The request body includes a document with a CreateTrafficPolicyVersionRequest -// element. The response returns the CreateTrafficPolicyVersionResponse element, -// which contains information about the new version of the traffic policy. -func (c *Route53) CreateTrafficPolicyVersion(input *CreateTrafficPolicyVersionInput) (*CreateTrafficPolicyVersionOutput, error) { - req, out := c.CreateTrafficPolicyVersionRequest(input) - err := req.Send() - return out, err -} - -const opDeleteHealthCheck = "DeleteHealthCheck" - -// DeleteHealthCheckRequest generates a "aws/request.Request" representing the -// client's request for the DeleteHealthCheck operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteHealthCheck method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteHealthCheckRequest method. -// req, resp := client.DeleteHealthCheckRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) DeleteHealthCheckRequest(input *DeleteHealthCheckInput) (req *request.Request, output *DeleteHealthCheckOutput) { - op := &request.Operation{ - Name: opDeleteHealthCheck, - HTTPMethod: "DELETE", - HTTPPath: "/2013-04-01/healthcheck/{HealthCheckId}", - } - - if input == nil { - input = &DeleteHealthCheckInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteHealthCheckOutput{} - req.Data = output - return -} - -// Deletes a health check. Send a DELETE request to the /2013-04-01/healthcheck/health -// check ID resource. -// -// Amazon Route 53 does not prevent you from deleting a health check even -// if the health check is associated with one or more resource record sets. -// If you delete a health check and you don't update the associated resource -// record sets, the future status of the health check cannot be predicted and -// may change. This will affect the routing of DNS queries for your DNS failover -// configuration. For more information, see Replacing and Deleting Health Checks -// (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html#health-checks-deleting.html) -// in the Amazon Route 53 Developer Guide. -func (c *Route53) DeleteHealthCheck(input *DeleteHealthCheckInput) (*DeleteHealthCheckOutput, error) { - req, out := c.DeleteHealthCheckRequest(input) - err := req.Send() - return out, err -} - -const opDeleteHostedZone = "DeleteHostedZone" - -// DeleteHostedZoneRequest generates a "aws/request.Request" representing the -// client's request for the DeleteHostedZone operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteHostedZone method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteHostedZoneRequest method. -// req, resp := client.DeleteHostedZoneRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) DeleteHostedZoneRequest(input *DeleteHostedZoneInput) (req *request.Request, output *DeleteHostedZoneOutput) { - op := &request.Operation{ - Name: opDeleteHostedZone, - HTTPMethod: "DELETE", - HTTPPath: "/2013-04-01/hostedzone/{Id}", - } - - if input == nil { - input = &DeleteHostedZoneInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteHostedZoneOutput{} - req.Data = output - return -} - -// Deletes a hosted zone. Send a DELETE request to the /Amazon Route 53 API -// version/hostedzone/hosted zone ID resource. -// -// Delete a hosted zone only if there are no resource record sets other than -// the default SOA record and NS resource record sets. If the hosted zone contains -// other resource record sets, delete them before deleting the hosted zone. -// If you try to delete a hosted zone that contains other resource record sets, -// Amazon Route 53 denies your request with a HostedZoneNotEmpty error. For -// information about deleting records from your hosted zone, see ChangeResourceRecordSets. -func (c *Route53) DeleteHostedZone(input *DeleteHostedZoneInput) (*DeleteHostedZoneOutput, error) { - req, out := c.DeleteHostedZoneRequest(input) - err := req.Send() - return out, err -} - -const opDeleteReusableDelegationSet = "DeleteReusableDelegationSet" - -// DeleteReusableDelegationSetRequest generates a "aws/request.Request" representing the -// client's request for the DeleteReusableDelegationSet operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteReusableDelegationSet method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteReusableDelegationSetRequest method. -// req, resp := client.DeleteReusableDelegationSetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) DeleteReusableDelegationSetRequest(input *DeleteReusableDelegationSetInput) (req *request.Request, output *DeleteReusableDelegationSetOutput) { - op := &request.Operation{ - Name: opDeleteReusableDelegationSet, - HTTPMethod: "DELETE", - HTTPPath: "/2013-04-01/delegationset/{Id}", - } - - if input == nil { - input = &DeleteReusableDelegationSetInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteReusableDelegationSetOutput{} - req.Data = output - return -} - -// Deletes a reusable delegation set. Send a DELETE request to the /2013-04-01/delegationset/delegation -// set ID resource. -// -// You can delete a reusable delegation set only if there are no associated -// hosted zones. -// -// To verify that the reusable delegation set is not associated with any hosted -// zones, run the GetReusableDelegationSet action and specify the ID of the -// reusable delegation set that you want to delete. -func (c *Route53) DeleteReusableDelegationSet(input *DeleteReusableDelegationSetInput) (*DeleteReusableDelegationSetOutput, error) { - req, out := c.DeleteReusableDelegationSetRequest(input) - err := req.Send() - return out, err -} - -const opDeleteTrafficPolicy = "DeleteTrafficPolicy" - -// DeleteTrafficPolicyRequest generates a "aws/request.Request" representing the -// client's request for the DeleteTrafficPolicy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteTrafficPolicy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteTrafficPolicyRequest method. -// req, resp := client.DeleteTrafficPolicyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) DeleteTrafficPolicyRequest(input *DeleteTrafficPolicyInput) (req *request.Request, output *DeleteTrafficPolicyOutput) { - op := &request.Operation{ - Name: opDeleteTrafficPolicy, - HTTPMethod: "DELETE", - HTTPPath: "/2013-04-01/trafficpolicy/{Id}/{Version}", - } - - if input == nil { - input = &DeleteTrafficPolicyInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteTrafficPolicyOutput{} - req.Data = output - return -} - -// Deletes a traffic policy. -// -// Send a DELETE request to the /Amazon Route 53 API version/trafficpolicy -// resource. -func (c *Route53) DeleteTrafficPolicy(input *DeleteTrafficPolicyInput) (*DeleteTrafficPolicyOutput, error) { - req, out := c.DeleteTrafficPolicyRequest(input) - err := req.Send() - return out, err -} - -const opDeleteTrafficPolicyInstance = "DeleteTrafficPolicyInstance" - -// DeleteTrafficPolicyInstanceRequest generates a "aws/request.Request" representing the -// client's request for the DeleteTrafficPolicyInstance operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteTrafficPolicyInstance method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteTrafficPolicyInstanceRequest method. -// req, resp := client.DeleteTrafficPolicyInstanceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) DeleteTrafficPolicyInstanceRequest(input *DeleteTrafficPolicyInstanceInput) (req *request.Request, output *DeleteTrafficPolicyInstanceOutput) { - op := &request.Operation{ - Name: opDeleteTrafficPolicyInstance, - HTTPMethod: "DELETE", - HTTPPath: "/2013-04-01/trafficpolicyinstance/{Id}", - } - - if input == nil { - input = &DeleteTrafficPolicyInstanceInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteTrafficPolicyInstanceOutput{} - req.Data = output - return -} - -// Deletes a traffic policy instance and all of the resource record sets that -// Amazon Route 53 created when you created the instance. -// -// Send a DELETE request to the /Amazon Route 53 API version/trafficpolicy/traffic -// policy instance ID resource. -// -// In the Amazon Route 53 console, traffic policy instances are known as policy -// records. -func (c *Route53) DeleteTrafficPolicyInstance(input *DeleteTrafficPolicyInstanceInput) (*DeleteTrafficPolicyInstanceOutput, error) { - req, out := c.DeleteTrafficPolicyInstanceRequest(input) - err := req.Send() - return out, err -} - -const opDisassociateVPCFromHostedZone = "DisassociateVPCFromHostedZone" - -// DisassociateVPCFromHostedZoneRequest generates a "aws/request.Request" representing the -// client's request for the DisassociateVPCFromHostedZone operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DisassociateVPCFromHostedZone method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DisassociateVPCFromHostedZoneRequest method. -// req, resp := client.DisassociateVPCFromHostedZoneRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) DisassociateVPCFromHostedZoneRequest(input *DisassociateVPCFromHostedZoneInput) (req *request.Request, output *DisassociateVPCFromHostedZoneOutput) { - op := &request.Operation{ - Name: opDisassociateVPCFromHostedZone, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/hostedzone/{Id}/disassociatevpc", - } - - if input == nil { - input = &DisassociateVPCFromHostedZoneInput{} - } - - req = c.newRequest(op, input, output) - output = &DisassociateVPCFromHostedZoneOutput{} - req.Data = output - return -} - -// Disassociates a VPC from a Amazon Route 53 private hosted zone. -// -// Send a POST request to the /Amazon Route 53 API version/hostedzone/hosted -// zone ID/disassociatevpc resource. The request body must include an XML document -// with a DisassociateVPCFromHostedZoneRequest element. The response returns -// the DisassociateVPCFromHostedZoneResponse element. -// -// You can only disassociate a VPC from a private hosted zone when two or -// more VPCs are associated with that hosted zone. You cannot convert a private -// hosted zone into a public hosted zone. -func (c *Route53) DisassociateVPCFromHostedZone(input *DisassociateVPCFromHostedZoneInput) (*DisassociateVPCFromHostedZoneOutput, error) { - req, out := c.DisassociateVPCFromHostedZoneRequest(input) - err := req.Send() - return out, err -} - -const opGetChange = "GetChange" - -// GetChangeRequest generates a "aws/request.Request" representing the -// client's request for the GetChange operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetChange method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetChangeRequest method. -// req, resp := client.GetChangeRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetChangeRequest(input *GetChangeInput) (req *request.Request, output *GetChangeOutput) { - op := &request.Operation{ - Name: opGetChange, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/change/{Id}", - } - - if input == nil { - input = &GetChangeInput{} - } - - req = c.newRequest(op, input, output) - output = &GetChangeOutput{} - req.Data = output - return -} - -// Returns the current status of a change batch request. The status is one of -// the following values: -// -// PENDING indicates that the changes in this request have not replicated -// to all Amazon Route 53 DNS servers. This is the initial status of all change -// batch requests. -// -// INSYNC indicates that the changes have replicated to all Amazon Route -// 53 DNS servers. -func (c *Route53) GetChange(input *GetChangeInput) (*GetChangeOutput, error) { - req, out := c.GetChangeRequest(input) - err := req.Send() - return out, err -} - -const opGetChangeDetails = "GetChangeDetails" - -// GetChangeDetailsRequest generates a "aws/request.Request" representing the -// client's request for the GetChangeDetails operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetChangeDetails method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetChangeDetailsRequest method. -// req, resp := client.GetChangeDetailsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetChangeDetailsRequest(input *GetChangeDetailsInput) (req *request.Request, output *GetChangeDetailsOutput) { - if c.Client.Config.Logger != nil { - c.Client.Config.Logger.Log("This operation, GetChangeDetails, has been deprecated") - } - op := &request.Operation{ - Name: opGetChangeDetails, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/changedetails/{Id}", - } - - if input == nil { - input = &GetChangeDetailsInput{} - } - - req = c.newRequest(op, input, output) - output = &GetChangeDetailsOutput{} - req.Data = output - return -} - -// Returns the status and changes of a change batch request. -func (c *Route53) GetChangeDetails(input *GetChangeDetailsInput) (*GetChangeDetailsOutput, error) { - req, out := c.GetChangeDetailsRequest(input) - err := req.Send() - return out, err -} - -const opGetCheckerIpRanges = "GetCheckerIpRanges" - -// GetCheckerIpRangesRequest generates a "aws/request.Request" representing the -// client's request for the GetCheckerIpRanges operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetCheckerIpRanges method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetCheckerIpRangesRequest method. -// req, resp := client.GetCheckerIpRangesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetCheckerIpRangesRequest(input *GetCheckerIpRangesInput) (req *request.Request, output *GetCheckerIpRangesOutput) { - op := &request.Operation{ - Name: opGetCheckerIpRanges, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/checkeripranges", - } - - if input == nil { - input = &GetCheckerIpRangesInput{} - } - - req = c.newRequest(op, input, output) - output = &GetCheckerIpRangesOutput{} - req.Data = output - return -} - -// Retrieves a list of the IP ranges used by Amazon Route 53 health checkers -// to check the health of your resources. Send a GET request to the /Amazon -// Route 53 API version/checkeripranges resource. Use these IP addresses to -// configure router and firewall rules to allow health checkers to check the -// health of your resources. -func (c *Route53) GetCheckerIpRanges(input *GetCheckerIpRangesInput) (*GetCheckerIpRangesOutput, error) { - req, out := c.GetCheckerIpRangesRequest(input) - err := req.Send() - return out, err -} - -const opGetGeoLocation = "GetGeoLocation" - -// GetGeoLocationRequest generates a "aws/request.Request" representing the -// client's request for the GetGeoLocation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetGeoLocation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetGeoLocationRequest method. -// req, resp := client.GetGeoLocationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetGeoLocationRequest(input *GetGeoLocationInput) (req *request.Request, output *GetGeoLocationOutput) { - op := &request.Operation{ - Name: opGetGeoLocation, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/geolocation", - } - - if input == nil { - input = &GetGeoLocationInput{} - } - - req = c.newRequest(op, input, output) - output = &GetGeoLocationOutput{} - req.Data = output - return -} - -// Retrieves a single geo location. Send a GET request to the /2013-04-01/geolocation -// resource with one of these options: continentcode | countrycode | countrycode -// and subdivisioncode. -func (c *Route53) GetGeoLocation(input *GetGeoLocationInput) (*GetGeoLocationOutput, error) { - req, out := c.GetGeoLocationRequest(input) - err := req.Send() - return out, err -} - -const opGetHealthCheck = "GetHealthCheck" - -// GetHealthCheckRequest generates a "aws/request.Request" representing the -// client's request for the GetHealthCheck operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetHealthCheck method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetHealthCheckRequest method. -// req, resp := client.GetHealthCheckRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetHealthCheckRequest(input *GetHealthCheckInput) (req *request.Request, output *GetHealthCheckOutput) { - op := &request.Operation{ - Name: opGetHealthCheck, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/healthcheck/{HealthCheckId}", - } - - if input == nil { - input = &GetHealthCheckInput{} - } - - req = c.newRequest(op, input, output) - output = &GetHealthCheckOutput{} - req.Data = output - return -} - -// Gets information about a specified health check. Send a GET request to the -// /2013-04-01/healthcheck/health check ID resource. For more information about -// using the console to perform this operation, see Amazon Route 53 Health Checks -// and DNS Failover (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) -// in the Amazon Route 53 Developer Guide. -func (c *Route53) GetHealthCheck(input *GetHealthCheckInput) (*GetHealthCheckOutput, error) { - req, out := c.GetHealthCheckRequest(input) - err := req.Send() - return out, err -} - -const opGetHealthCheckCount = "GetHealthCheckCount" - -// GetHealthCheckCountRequest generates a "aws/request.Request" representing the -// client's request for the GetHealthCheckCount operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetHealthCheckCount method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetHealthCheckCountRequest method. -// req, resp := client.GetHealthCheckCountRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetHealthCheckCountRequest(input *GetHealthCheckCountInput) (req *request.Request, output *GetHealthCheckCountOutput) { - op := &request.Operation{ - Name: opGetHealthCheckCount, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/healthcheckcount", - } - - if input == nil { - input = &GetHealthCheckCountInput{} - } - - req = c.newRequest(op, input, output) - output = &GetHealthCheckCountOutput{} - req.Data = output - return -} - -// To retrieve a count of all your health checks, send a GET request to the -// /2013-04-01/healthcheckcount resource. -func (c *Route53) GetHealthCheckCount(input *GetHealthCheckCountInput) (*GetHealthCheckCountOutput, error) { - req, out := c.GetHealthCheckCountRequest(input) - err := req.Send() - return out, err -} - -const opGetHealthCheckLastFailureReason = "GetHealthCheckLastFailureReason" - -// GetHealthCheckLastFailureReasonRequest generates a "aws/request.Request" representing the -// client's request for the GetHealthCheckLastFailureReason operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetHealthCheckLastFailureReason method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetHealthCheckLastFailureReasonRequest method. -// req, resp := client.GetHealthCheckLastFailureReasonRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetHealthCheckLastFailureReasonRequest(input *GetHealthCheckLastFailureReasonInput) (req *request.Request, output *GetHealthCheckLastFailureReasonOutput) { - op := &request.Operation{ - Name: opGetHealthCheckLastFailureReason, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason", - } - - if input == nil { - input = &GetHealthCheckLastFailureReasonInput{} - } - - req = c.newRequest(op, input, output) - output = &GetHealthCheckLastFailureReasonOutput{} - req.Data = output - return -} - -// If you want to learn why a health check is currently failing or why it failed -// most recently (if at all), you can get the failure reason for the most recent -// failure. Send a GET request to the /Amazon Route 53 API version/healthcheck/health -// check ID/lastfailurereason resource. -func (c *Route53) GetHealthCheckLastFailureReason(input *GetHealthCheckLastFailureReasonInput) (*GetHealthCheckLastFailureReasonOutput, error) { - req, out := c.GetHealthCheckLastFailureReasonRequest(input) - err := req.Send() - return out, err -} - -const opGetHealthCheckStatus = "GetHealthCheckStatus" - -// GetHealthCheckStatusRequest generates a "aws/request.Request" representing the -// client's request for the GetHealthCheckStatus operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetHealthCheckStatus method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetHealthCheckStatusRequest method. -// req, resp := client.GetHealthCheckStatusRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetHealthCheckStatusRequest(input *GetHealthCheckStatusInput) (req *request.Request, output *GetHealthCheckStatusOutput) { - op := &request.Operation{ - Name: opGetHealthCheckStatus, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/healthcheck/{HealthCheckId}/status", - } - - if input == nil { - input = &GetHealthCheckStatusInput{} - } - - req = c.newRequest(op, input, output) - output = &GetHealthCheckStatusOutput{} - req.Data = output - return -} - -// Gets status of a specified health check. Send a GET request to the /2013-04-01/healthcheck/health -// check ID/status resource. You can use this call to get a health check's current -// status. -func (c *Route53) GetHealthCheckStatus(input *GetHealthCheckStatusInput) (*GetHealthCheckStatusOutput, error) { - req, out := c.GetHealthCheckStatusRequest(input) - err := req.Send() - return out, err -} - -const opGetHostedZone = "GetHostedZone" - -// GetHostedZoneRequest generates a "aws/request.Request" representing the -// client's request for the GetHostedZone operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetHostedZone method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetHostedZoneRequest method. -// req, resp := client.GetHostedZoneRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetHostedZoneRequest(input *GetHostedZoneInput) (req *request.Request, output *GetHostedZoneOutput) { - op := &request.Operation{ - Name: opGetHostedZone, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/hostedzone/{Id}", - } - - if input == nil { - input = &GetHostedZoneInput{} - } - - req = c.newRequest(op, input, output) - output = &GetHostedZoneOutput{} - req.Data = output - return -} - -// Retrieves the delegation set for a hosted zone, including the four name servers -// assigned to the hosted zone. Send a GET request to the /Amazon Route 53 API -// version/hostedzone/hosted zone ID resource. -func (c *Route53) GetHostedZone(input *GetHostedZoneInput) (*GetHostedZoneOutput, error) { - req, out := c.GetHostedZoneRequest(input) - err := req.Send() - return out, err -} - -const opGetHostedZoneCount = "GetHostedZoneCount" - -// GetHostedZoneCountRequest generates a "aws/request.Request" representing the -// client's request for the GetHostedZoneCount operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetHostedZoneCount method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetHostedZoneCountRequest method. -// req, resp := client.GetHostedZoneCountRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetHostedZoneCountRequest(input *GetHostedZoneCountInput) (req *request.Request, output *GetHostedZoneCountOutput) { - op := &request.Operation{ - Name: opGetHostedZoneCount, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/hostedzonecount", - } - - if input == nil { - input = &GetHostedZoneCountInput{} - } - - req = c.newRequest(op, input, output) - output = &GetHostedZoneCountOutput{} - req.Data = output - return -} - -// Retrieves a count of all your hosted zones. Send a GET request to the /2013-04-01/hostedzonecount -// resource. -func (c *Route53) GetHostedZoneCount(input *GetHostedZoneCountInput) (*GetHostedZoneCountOutput, error) { - req, out := c.GetHostedZoneCountRequest(input) - err := req.Send() - return out, err -} - -const opGetReusableDelegationSet = "GetReusableDelegationSet" - -// GetReusableDelegationSetRequest generates a "aws/request.Request" representing the -// client's request for the GetReusableDelegationSet operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetReusableDelegationSet method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetReusableDelegationSetRequest method. -// req, resp := client.GetReusableDelegationSetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetReusableDelegationSetRequest(input *GetReusableDelegationSetInput) (req *request.Request, output *GetReusableDelegationSetOutput) { - op := &request.Operation{ - Name: opGetReusableDelegationSet, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/delegationset/{Id}", - } - - if input == nil { - input = &GetReusableDelegationSetInput{} - } - - req = c.newRequest(op, input, output) - output = &GetReusableDelegationSetOutput{} - req.Data = output - return -} - -// Retrieves the reusable delegation set. Send a GET request to the /2013-04-01/delegationset/delegation -// set ID resource. -func (c *Route53) GetReusableDelegationSet(input *GetReusableDelegationSetInput) (*GetReusableDelegationSetOutput, error) { - req, out := c.GetReusableDelegationSetRequest(input) - err := req.Send() - return out, err -} - -const opGetTrafficPolicy = "GetTrafficPolicy" - -// GetTrafficPolicyRequest generates a "aws/request.Request" representing the -// client's request for the GetTrafficPolicy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetTrafficPolicy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetTrafficPolicyRequest method. -// req, resp := client.GetTrafficPolicyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetTrafficPolicyRequest(input *GetTrafficPolicyInput) (req *request.Request, output *GetTrafficPolicyOutput) { - op := &request.Operation{ - Name: opGetTrafficPolicy, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicy/{Id}/{Version}", - } - - if input == nil { - input = &GetTrafficPolicyInput{} - } - - req = c.newRequest(op, input, output) - output = &GetTrafficPolicyOutput{} - req.Data = output - return -} - -// Gets information about a specific traffic policy version. -// -// Send a GET request to the /Amazon Route 53 API version/trafficpolicy resource. -func (c *Route53) GetTrafficPolicy(input *GetTrafficPolicyInput) (*GetTrafficPolicyOutput, error) { - req, out := c.GetTrafficPolicyRequest(input) - err := req.Send() - return out, err -} - -const opGetTrafficPolicyInstance = "GetTrafficPolicyInstance" - -// GetTrafficPolicyInstanceRequest generates a "aws/request.Request" representing the -// client's request for the GetTrafficPolicyInstance operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetTrafficPolicyInstance method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetTrafficPolicyInstanceRequest method. -// req, resp := client.GetTrafficPolicyInstanceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetTrafficPolicyInstanceRequest(input *GetTrafficPolicyInstanceInput) (req *request.Request, output *GetTrafficPolicyInstanceOutput) { - op := &request.Operation{ - Name: opGetTrafficPolicyInstance, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicyinstance/{Id}", - } - - if input == nil { - input = &GetTrafficPolicyInstanceInput{} - } - - req = c.newRequest(op, input, output) - output = &GetTrafficPolicyInstanceOutput{} - req.Data = output - return -} - -// Gets information about a specified traffic policy instance. -// -// Send a GET request to the /Amazon Route 53 API version/trafficpolicyinstance -// resource. -// -// After you submit a CreateTrafficPolicyInstance or an UpdateTrafficPolicyInstance -// request, there's a brief delay while Amazon Route 53 creates the resource -// record sets that are specified in the traffic policy definition. For more -// information, see the State response element. -// -// In the Amazon Route 53 console, traffic policy instances are known as -// policy records. -func (c *Route53) GetTrafficPolicyInstance(input *GetTrafficPolicyInstanceInput) (*GetTrafficPolicyInstanceOutput, error) { - req, out := c.GetTrafficPolicyInstanceRequest(input) - err := req.Send() - return out, err -} - -const opGetTrafficPolicyInstanceCount = "GetTrafficPolicyInstanceCount" - -// GetTrafficPolicyInstanceCountRequest generates a "aws/request.Request" representing the -// client's request for the GetTrafficPolicyInstanceCount operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetTrafficPolicyInstanceCount method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetTrafficPolicyInstanceCountRequest method. -// req, resp := client.GetTrafficPolicyInstanceCountRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) GetTrafficPolicyInstanceCountRequest(input *GetTrafficPolicyInstanceCountInput) (req *request.Request, output *GetTrafficPolicyInstanceCountOutput) { - op := &request.Operation{ - Name: opGetTrafficPolicyInstanceCount, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicyinstancecount", - } - - if input == nil { - input = &GetTrafficPolicyInstanceCountInput{} - } - - req = c.newRequest(op, input, output) - output = &GetTrafficPolicyInstanceCountOutput{} - req.Data = output - return -} - -// Gets the number of traffic policy instances that are associated with the -// current AWS account. -// -// To get the number of traffic policy instances, send a GET request to the -// /2013-04-01/trafficpolicyinstancecount resource. -func (c *Route53) GetTrafficPolicyInstanceCount(input *GetTrafficPolicyInstanceCountInput) (*GetTrafficPolicyInstanceCountOutput, error) { - req, out := c.GetTrafficPolicyInstanceCountRequest(input) - err := req.Send() - return out, err -} - -const opListChangeBatchesByHostedZone = "ListChangeBatchesByHostedZone" - -// ListChangeBatchesByHostedZoneRequest generates a "aws/request.Request" representing the -// client's request for the ListChangeBatchesByHostedZone operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListChangeBatchesByHostedZone method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListChangeBatchesByHostedZoneRequest method. -// req, resp := client.ListChangeBatchesByHostedZoneRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListChangeBatchesByHostedZoneRequest(input *ListChangeBatchesByHostedZoneInput) (req *request.Request, output *ListChangeBatchesByHostedZoneOutput) { - if c.Client.Config.Logger != nil { - c.Client.Config.Logger.Log("This operation, ListChangeBatchesByHostedZone, has been deprecated") - } - op := &request.Operation{ - Name: opListChangeBatchesByHostedZone, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/hostedzone/{Id}/changes", - } - - if input == nil { - input = &ListChangeBatchesByHostedZoneInput{} - } - - req = c.newRequest(op, input, output) - output = &ListChangeBatchesByHostedZoneOutput{} - req.Data = output - return -} - -// Gets the list of ChangeBatches in a given time period for a given hosted -// zone. -func (c *Route53) ListChangeBatchesByHostedZone(input *ListChangeBatchesByHostedZoneInput) (*ListChangeBatchesByHostedZoneOutput, error) { - req, out := c.ListChangeBatchesByHostedZoneRequest(input) - err := req.Send() - return out, err -} - -const opListChangeBatchesByRRSet = "ListChangeBatchesByRRSet" - -// ListChangeBatchesByRRSetRequest generates a "aws/request.Request" representing the -// client's request for the ListChangeBatchesByRRSet operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListChangeBatchesByRRSet method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListChangeBatchesByRRSetRequest method. -// req, resp := client.ListChangeBatchesByRRSetRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListChangeBatchesByRRSetRequest(input *ListChangeBatchesByRRSetInput) (req *request.Request, output *ListChangeBatchesByRRSetOutput) { - if c.Client.Config.Logger != nil { - c.Client.Config.Logger.Log("This operation, ListChangeBatchesByRRSet, has been deprecated") - } - op := &request.Operation{ - Name: opListChangeBatchesByRRSet, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/hostedzone/{Id}/rrsChanges", - } - - if input == nil { - input = &ListChangeBatchesByRRSetInput{} - } - - req = c.newRequest(op, input, output) - output = &ListChangeBatchesByRRSetOutput{} - req.Data = output - return -} - -// Gets the list of ChangeBatches in a given time period for a given hosted -// zone and RRSet. -func (c *Route53) ListChangeBatchesByRRSet(input *ListChangeBatchesByRRSetInput) (*ListChangeBatchesByRRSetOutput, error) { - req, out := c.ListChangeBatchesByRRSetRequest(input) - err := req.Send() - return out, err -} - -const opListGeoLocations = "ListGeoLocations" - -// ListGeoLocationsRequest generates a "aws/request.Request" representing the -// client's request for the ListGeoLocations operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListGeoLocations method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListGeoLocationsRequest method. -// req, resp := client.ListGeoLocationsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListGeoLocationsRequest(input *ListGeoLocationsInput) (req *request.Request, output *ListGeoLocationsOutput) { - op := &request.Operation{ - Name: opListGeoLocations, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/geolocations", - } - - if input == nil { - input = &ListGeoLocationsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListGeoLocationsOutput{} - req.Data = output - return -} - -// Retrieves a list of supported geo locations. Send a GET request to the /2013-04-01/geolocations -// resource. The response to this request includes a GeoLocationDetailsList -// element for each location that Amazon Route 53 supports. -// -// Countries are listed first, and continents are listed last. If Amazon Route -// 53 supports subdivisions for a country (for example, states or provinces), -// the subdivisions for that country are listed in alphabetical order immediately -// after the corresponding country. -func (c *Route53) ListGeoLocations(input *ListGeoLocationsInput) (*ListGeoLocationsOutput, error) { - req, out := c.ListGeoLocationsRequest(input) - err := req.Send() - return out, err -} - -const opListHealthChecks = "ListHealthChecks" - -// ListHealthChecksRequest generates a "aws/request.Request" representing the -// client's request for the ListHealthChecks operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListHealthChecks method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListHealthChecksRequest method. -// req, resp := client.ListHealthChecksRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListHealthChecksRequest(input *ListHealthChecksInput) (req *request.Request, output *ListHealthChecksOutput) { - op := &request.Operation{ - Name: opListHealthChecks, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/healthcheck", - Paginator: &request.Paginator{ - InputTokens: []string{"Marker"}, - OutputTokens: []string{"NextMarker"}, - LimitToken: "MaxItems", - TruncationToken: "IsTruncated", - }, - } - - if input == nil { - input = &ListHealthChecksInput{} - } - - req = c.newRequest(op, input, output) - output = &ListHealthChecksOutput{} - req.Data = output - return -} - -// Retrieve a list of your health checks. Send a GET request to the /2013-04-01/healthcheck -// resource. The response to this request includes a HealthChecks element with -// zero or more HealthCheck child elements. By default, the list of health checks -// is displayed on a single page. You can control the length of the page that -// is displayed by using the MaxItems parameter. You can use the Marker parameter -// to control the health check that the list begins with. -// -// For information about listing health checks using the Amazon Route 53 console, -// see Amazon Route 53 Health Checks and DNS Failover (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html). -func (c *Route53) ListHealthChecks(input *ListHealthChecksInput) (*ListHealthChecksOutput, error) { - req, out := c.ListHealthChecksRequest(input) - err := req.Send() - return out, err -} - -// ListHealthChecksPages iterates over the pages of a ListHealthChecks operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListHealthChecks method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListHealthChecks operation. -// pageNum := 0 -// err := client.ListHealthChecksPages(params, -// func(page *ListHealthChecksOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *Route53) ListHealthChecksPages(input *ListHealthChecksInput, fn func(p *ListHealthChecksOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListHealthChecksRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListHealthChecksOutput), lastPage) - }) -} - -const opListHostedZones = "ListHostedZones" - -// ListHostedZonesRequest generates a "aws/request.Request" representing the -// client's request for the ListHostedZones operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListHostedZones method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListHostedZonesRequest method. -// req, resp := client.ListHostedZonesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListHostedZonesRequest(input *ListHostedZonesInput) (req *request.Request, output *ListHostedZonesOutput) { - op := &request.Operation{ - Name: opListHostedZones, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/hostedzone", - Paginator: &request.Paginator{ - InputTokens: []string{"Marker"}, - OutputTokens: []string{"NextMarker"}, - LimitToken: "MaxItems", - TruncationToken: "IsTruncated", - }, - } - - if input == nil { - input = &ListHostedZonesInput{} - } - - req = c.newRequest(op, input, output) - output = &ListHostedZonesOutput{} - req.Data = output - return -} - -// To retrieve a list of your public and private hosted zones, send a GET request -// to the /2013-04-01/hostedzone resource. The response to this request includes -// a HostedZones child element for each hosted zone created by the current AWS -// account. -// -// Amazon Route 53 returns a maximum of 100 items in each response. If you -// have a lot of hosted zones, you can use the maxitems parameter to list them -// in groups of up to 100. The response includes four values that help navigate -// from one group of maxitems hosted zones to the next: -// -// MaxItemsis the value specified for the maxitems parameter in the request -// that produced the current response. -// -// If the value of IsTruncated in the response is true, there are more hosted -// zones associated with the current AWS account. -// -// NextMarkeris the hosted zone ID of the next hosted zone that is associated -// with the current AWS account. If you want to list more hosted zones, make -// another call to ListHostedZones, and specify the value of the NextMarker -// element in the marker parameter. -// -// If IsTruncated is false, the NextMarker element is omitted from the response. -// -// If you're making the second or subsequent call to ListHostedZones, the -// Marker element matches the value that you specified in the marker parameter -// in the previous request. -func (c *Route53) ListHostedZones(input *ListHostedZonesInput) (*ListHostedZonesOutput, error) { - req, out := c.ListHostedZonesRequest(input) - err := req.Send() - return out, err -} - -// ListHostedZonesPages iterates over the pages of a ListHostedZones operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListHostedZones method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListHostedZones operation. -// pageNum := 0 -// err := client.ListHostedZonesPages(params, -// func(page *ListHostedZonesOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *Route53) ListHostedZonesPages(input *ListHostedZonesInput, fn func(p *ListHostedZonesOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListHostedZonesRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListHostedZonesOutput), lastPage) - }) -} - -const opListHostedZonesByName = "ListHostedZonesByName" - -// ListHostedZonesByNameRequest generates a "aws/request.Request" representing the -// client's request for the ListHostedZonesByName operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListHostedZonesByName method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListHostedZonesByNameRequest method. -// req, resp := client.ListHostedZonesByNameRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListHostedZonesByNameRequest(input *ListHostedZonesByNameInput) (req *request.Request, output *ListHostedZonesByNameOutput) { - op := &request.Operation{ - Name: opListHostedZonesByName, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/hostedzonesbyname", - } - - if input == nil { - input = &ListHostedZonesByNameInput{} - } - - req = c.newRequest(op, input, output) - output = &ListHostedZonesByNameOutput{} - req.Data = output - return -} - -// Retrieves a list of your hosted zones in lexicographic order. Send a GET -// request to the /2013-04-01/hostedzonesbyname resource. The response includes -// a HostedZones child element for each hosted zone created by the current AWS -// account. -// -// ListHostedZonesByName sorts hosted zones by name with the labels reversed. -// For example: -// -// com.example.www. -// -// Note the trailing dot, which can change the sort order in some circumstances. -// -// If the domain name includes escape characters or Punycode, ListHostedZonesByName -// alphabetizes the domain name using the escaped or Punycoded value, which -// is the format that Amazon Route 53 saves in its database. For example, to -// create a hosted zone for example.com, specify ex\344mple.com for the domain -// name. ListHostedZonesByName alphabetizes it as: -// -// com.ex\344mple. -// -// The labels are reversed and alphabetized using the escaped value. For -// more information about valid domain name formats, including internationalized -// domain names, see DNS Domain Name Format (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html) -// in the Amazon Route 53 Developer Guide. -// -// Amazon Route 53 returns up to 100 items in each response. If you have a -// lot of hosted zones, use the MaxItems parameter to list them in groups of -// up to 100. The response includes values that help navigate from one group -// of MaxItems hosted zones to the next: -// -// The DNSName and HostedZoneId elements in the response contain the values, -// if any, specified for the dnsname and hostedzoneid parameters in the request -// that produced the current response. -// -// The MaxItems element in the response contains the value, if any, that -// you specified for the maxitems parameter in the request that produced the -// current response. -// -// If the value of IsTruncated in the response is true, there are more hosted -// zones associated with the current AWS account. -// -// If IsTruncated is false, this response includes the last hosted zone that -// is associated with the current account. The NextDNSName element and NextHostedZoneId -// elements are omitted from the response. -// -// The NextDNSName and NextHostedZoneId elements in the response contain -// the domain name and the hosted zone ID of the next hosted zone that is associated -// with the current AWS account. If you want to list more hosted zones, make -// another call to ListHostedZonesByName, and specify the value of NextDNSName -// and NextHostedZoneId in the dnsname and hostedzoneid parameters, respectively. -func (c *Route53) ListHostedZonesByName(input *ListHostedZonesByNameInput) (*ListHostedZonesByNameOutput, error) { - req, out := c.ListHostedZonesByNameRequest(input) - err := req.Send() - return out, err -} - -const opListResourceRecordSets = "ListResourceRecordSets" - -// ListResourceRecordSetsRequest generates a "aws/request.Request" representing the -// client's request for the ListResourceRecordSets operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListResourceRecordSets method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListResourceRecordSetsRequest method. -// req, resp := client.ListResourceRecordSetsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListResourceRecordSetsRequest(input *ListResourceRecordSetsInput) (req *request.Request, output *ListResourceRecordSetsOutput) { - op := &request.Operation{ - Name: opListResourceRecordSets, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/hostedzone/{Id}/rrset", - Paginator: &request.Paginator{ - InputTokens: []string{"StartRecordName", "StartRecordType", "StartRecordIdentifier"}, - OutputTokens: []string{"NextRecordName", "NextRecordType", "NextRecordIdentifier"}, - LimitToken: "MaxItems", - TruncationToken: "IsTruncated", - }, - } - - if input == nil { - input = &ListResourceRecordSetsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListResourceRecordSetsOutput{} - req.Data = output - return -} - -func (c *Route53) ListResourceRecordSets(input *ListResourceRecordSetsInput) (*ListResourceRecordSetsOutput, error) { - req, out := c.ListResourceRecordSetsRequest(input) - err := req.Send() - return out, err -} - -// ListResourceRecordSetsPages iterates over the pages of a ListResourceRecordSets operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListResourceRecordSets method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListResourceRecordSets operation. -// pageNum := 0 -// err := client.ListResourceRecordSetsPages(params, -// func(page *ListResourceRecordSetsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *Route53) ListResourceRecordSetsPages(input *ListResourceRecordSetsInput, fn func(p *ListResourceRecordSetsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListResourceRecordSetsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListResourceRecordSetsOutput), lastPage) - }) -} - -const opListReusableDelegationSets = "ListReusableDelegationSets" - -// ListReusableDelegationSetsRequest generates a "aws/request.Request" representing the -// client's request for the ListReusableDelegationSets operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListReusableDelegationSets method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListReusableDelegationSetsRequest method. -// req, resp := client.ListReusableDelegationSetsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListReusableDelegationSetsRequest(input *ListReusableDelegationSetsInput) (req *request.Request, output *ListReusableDelegationSetsOutput) { - op := &request.Operation{ - Name: opListReusableDelegationSets, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/delegationset", - } - - if input == nil { - input = &ListReusableDelegationSetsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListReusableDelegationSetsOutput{} - req.Data = output - return -} - -// To retrieve a list of your reusable delegation sets, send a GET request to -// the /2013-04-01/delegationset resource. The response to this request includes -// a DelegationSets element with zero, one, or multiple DelegationSet child -// elements. By default, the list of delegation sets is displayed on a single -// page. You can control the length of the page that is displayed by using the -// MaxItems parameter. You can use the Marker parameter to control the delegation -// set that the list begins with. -// -// Amazon Route 53 returns a maximum of 100 items. If you set MaxItems to -// a value greater than 100, Amazon Route 53 returns only the first 100. -func (c *Route53) ListReusableDelegationSets(input *ListReusableDelegationSetsInput) (*ListReusableDelegationSetsOutput, error) { - req, out := c.ListReusableDelegationSetsRequest(input) - err := req.Send() - return out, err -} - -const opListTagsForResource = "ListTagsForResource" - -// ListTagsForResourceRequest generates a "aws/request.Request" representing the -// client's request for the ListTagsForResource operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTagsForResource method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTagsForResourceRequest method. -// req, resp := client.ListTagsForResourceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput) { - op := &request.Operation{ - Name: opListTagsForResource, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/tags/{ResourceType}/{ResourceId}", - } - - if input == nil { - input = &ListTagsForResourceInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTagsForResourceOutput{} - req.Data = output - return -} - -func (c *Route53) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error) { - req, out := c.ListTagsForResourceRequest(input) - err := req.Send() - return out, err -} - -const opListTagsForResources = "ListTagsForResources" - -// ListTagsForResourcesRequest generates a "aws/request.Request" representing the -// client's request for the ListTagsForResources operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTagsForResources method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTagsForResourcesRequest method. -// req, resp := client.ListTagsForResourcesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListTagsForResourcesRequest(input *ListTagsForResourcesInput) (req *request.Request, output *ListTagsForResourcesOutput) { - op := &request.Operation{ - Name: opListTagsForResources, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/tags/{ResourceType}", - } - - if input == nil { - input = &ListTagsForResourcesInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTagsForResourcesOutput{} - req.Data = output - return -} - -func (c *Route53) ListTagsForResources(input *ListTagsForResourcesInput) (*ListTagsForResourcesOutput, error) { - req, out := c.ListTagsForResourcesRequest(input) - err := req.Send() - return out, err -} - -const opListTrafficPolicies = "ListTrafficPolicies" - -// ListTrafficPoliciesRequest generates a "aws/request.Request" representing the -// client's request for the ListTrafficPolicies operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTrafficPolicies method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTrafficPoliciesRequest method. -// req, resp := client.ListTrafficPoliciesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListTrafficPoliciesRequest(input *ListTrafficPoliciesInput) (req *request.Request, output *ListTrafficPoliciesOutput) { - op := &request.Operation{ - Name: opListTrafficPolicies, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicies", - } - - if input == nil { - input = &ListTrafficPoliciesInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTrafficPoliciesOutput{} - req.Data = output - return -} - -// Gets information about the latest version for every traffic policy that is -// associated with the current AWS account. Send a GET request to the /Amazon -// Route 53 API version/trafficpolicy resource. -// -// Amazon Route 53 returns a maximum of 100 items in each response. If you -// have a lot of traffic policies, you can use the maxitems parameter to list -// them in groups of up to 100. -// -// The response includes three values that help you navigate from one group -// of maxitems traffic policies to the next: -// -// IsTruncated -// -// If the value of IsTruncated in the response is true, there are more traffic -// policies associated with the current AWS account. -// -// If IsTruncated is false, this response includes the last traffic policy -// that is associated with the current account. -// -// TrafficPolicyIdMarker -// -// If IsTruncated is true, TrafficPolicyIdMarker is the ID of the first traffic -// policy in the next group of MaxItems traffic policies. If you want to list -// more traffic policies, make another call to ListTrafficPolicies, and specify -// the value of the TrafficPolicyIdMarker element from the response in the TrafficPolicyIdMarker -// request parameter. -// -// If IsTruncated is false, the TrafficPolicyIdMarker element is omitted from -// the response. -// -// MaxItems -// -// The value that you specified for the MaxItems parameter in the request that -// produced the current response. -func (c *Route53) ListTrafficPolicies(input *ListTrafficPoliciesInput) (*ListTrafficPoliciesOutput, error) { - req, out := c.ListTrafficPoliciesRequest(input) - err := req.Send() - return out, err -} - -const opListTrafficPolicyInstances = "ListTrafficPolicyInstances" - -// ListTrafficPolicyInstancesRequest generates a "aws/request.Request" representing the -// client's request for the ListTrafficPolicyInstances operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTrafficPolicyInstances method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTrafficPolicyInstancesRequest method. -// req, resp := client.ListTrafficPolicyInstancesRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListTrafficPolicyInstancesRequest(input *ListTrafficPolicyInstancesInput) (req *request.Request, output *ListTrafficPolicyInstancesOutput) { - op := &request.Operation{ - Name: opListTrafficPolicyInstances, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicyinstances", - } - - if input == nil { - input = &ListTrafficPolicyInstancesInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTrafficPolicyInstancesOutput{} - req.Data = output - return -} - -// Gets information about the traffic policy instances that you created by using -// the current AWS account. -// -// After you submit an UpdateTrafficPolicyInstance request, there's a brief -// delay while Amazon Route 53 creates the resource record sets that are specified -// in the traffic policy definition. For more information, see the State response -// element. -// -// Send a GET request to the /Amazon Route 53 API version/trafficpolicyinstance -// resource. -// -// Amazon Route 53 returns a maximum of 100 items in each response. If you -// have a lot of traffic policy instances, you can use the MaxItems parameter -// to list them in groups of up to 100. -// -// The response includes five values that help you navigate from one group -// of MaxItems traffic policy instances to the next: -// -// IsTruncated -// -// If the value of IsTruncated in the response is true, there are more traffic -// policy instances associated with the current AWS account. -// -// If IsTruncated is false, this response includes the last traffic policy -// instance that is associated with the current account. -// -// MaxItems -// -// The value that you specified for the MaxItems parameter in the request that -// produced the current response. -// -// HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, and TrafficPolicyInstanceTypeMarker -// -// If IsTruncated is true, these three values in the response represent the -// first traffic policy instance in the next group of MaxItems traffic policy -// instances. To list more traffic policy instances, make another call to ListTrafficPolicyInstances, -// and specify these values in the corresponding request parameters. -// -// If IsTruncated is false, all three elements are omitted from the response. -func (c *Route53) ListTrafficPolicyInstances(input *ListTrafficPolicyInstancesInput) (*ListTrafficPolicyInstancesOutput, error) { - req, out := c.ListTrafficPolicyInstancesRequest(input) - err := req.Send() - return out, err -} - -const opListTrafficPolicyInstancesByHostedZone = "ListTrafficPolicyInstancesByHostedZone" - -// ListTrafficPolicyInstancesByHostedZoneRequest generates a "aws/request.Request" representing the -// client's request for the ListTrafficPolicyInstancesByHostedZone operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTrafficPolicyInstancesByHostedZone method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTrafficPolicyInstancesByHostedZoneRequest method. -// req, resp := client.ListTrafficPolicyInstancesByHostedZoneRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListTrafficPolicyInstancesByHostedZoneRequest(input *ListTrafficPolicyInstancesByHostedZoneInput) (req *request.Request, output *ListTrafficPolicyInstancesByHostedZoneOutput) { - op := &request.Operation{ - Name: opListTrafficPolicyInstancesByHostedZone, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicyinstances/hostedzone", - } - - if input == nil { - input = &ListTrafficPolicyInstancesByHostedZoneInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTrafficPolicyInstancesByHostedZoneOutput{} - req.Data = output - return -} - -// Gets information about the traffic policy instances that you created in a -// specified hosted zone. -// -// After you submit an UpdateTrafficPolicyInstance request, there's a brief -// delay while Amazon Route 53 creates the resource record sets that are specified -// in the traffic policy definition. For more information, see the State response -// element. -// -// Send a GET request to the /Amazon Route 53 API version/trafficpolicyinstance -// resource and include the ID of the hosted zone. -// -// Amazon Route 53 returns a maximum of 100 items in each response. If you -// have a lot of traffic policy instances, you can use the MaxItems parameter -// to list them in groups of up to 100. -// -// The response includes four values that help you navigate from one group -// of MaxItems traffic policy instances to the next: -// -// IsTruncated -// -// If the value of IsTruncated in the response is true, there are more traffic -// policy instances associated with the current AWS account. -// -// If IsTruncated is false, this response includes the last traffic policy -// instance that is associated with the current account. -// -// MaxItems -// -// The value that you specified for the MaxItems parameter in the request that -// produced the current response. -// -// TrafficPolicyInstanceNameMarker and TrafficPolicyInstanceTypeMarker -// -// If IsTruncated is true, these two values in the response represent the first -// traffic policy instance in the next group of MaxItems traffic policy instances. -// To list more traffic policy instances, make another call to ListTrafficPolicyInstancesByHostedZone, -// and specify these values in the corresponding request parameters. -// -// If IsTruncated is false, all three elements are omitted from the response. -func (c *Route53) ListTrafficPolicyInstancesByHostedZone(input *ListTrafficPolicyInstancesByHostedZoneInput) (*ListTrafficPolicyInstancesByHostedZoneOutput, error) { - req, out := c.ListTrafficPolicyInstancesByHostedZoneRequest(input) - err := req.Send() - return out, err -} - -const opListTrafficPolicyInstancesByPolicy = "ListTrafficPolicyInstancesByPolicy" - -// ListTrafficPolicyInstancesByPolicyRequest generates a "aws/request.Request" representing the -// client's request for the ListTrafficPolicyInstancesByPolicy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTrafficPolicyInstancesByPolicy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTrafficPolicyInstancesByPolicyRequest method. -// req, resp := client.ListTrafficPolicyInstancesByPolicyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListTrafficPolicyInstancesByPolicyRequest(input *ListTrafficPolicyInstancesByPolicyInput) (req *request.Request, output *ListTrafficPolicyInstancesByPolicyOutput) { - op := &request.Operation{ - Name: opListTrafficPolicyInstancesByPolicy, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicyinstances/trafficpolicy", - } - - if input == nil { - input = &ListTrafficPolicyInstancesByPolicyInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTrafficPolicyInstancesByPolicyOutput{} - req.Data = output - return -} - -// Gets information about the traffic policy instances that you created by using -// a specify traffic policy version. -// -// After you submit a CreateTrafficPolicyInstance or an UpdateTrafficPolicyInstance -// request, there's a brief delay while Amazon Route 53 creates the resource -// record sets that are specified in the traffic policy definition. For more -// information, see the State response element. -// -// Send a GET request to the /Route 53 API version/trafficpolicyinstance resource -// and include the ID and version of the traffic policy. -// -// Amazon Route 53 returns a maximum of 100 items in each response. If you -// have a lot of traffic policy instances, you can use the MaxItems parameter -// to list them in groups of up to 100. -// -// The response includes five values that help you navigate from one group -// of MaxItems traffic policy instances to the next: -// -// IsTruncated -// -// If the value of IsTruncated in the response is true, there are more traffic -// policy instances associated with the specified traffic policy. -// -// If IsTruncated is false, this response includes the last traffic policy -// instance that is associated with the specified traffic policy. -// -// MaxItems -// -// The value that you specified for the MaxItems parameter in the request that -// produced the current response. -// -// HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, and TrafficPolicyInstanceTypeMarker -// -// If IsTruncated is true, these values in the response represent the first -// traffic policy instance in the next group of MaxItems traffic policy instances. -// To list more traffic policy instances, make another call to ListTrafficPolicyInstancesByPolicy, -// and specify these values in the corresponding request parameters. -// -// If IsTruncated is false, all three elements are omitted from the response. -func (c *Route53) ListTrafficPolicyInstancesByPolicy(input *ListTrafficPolicyInstancesByPolicyInput) (*ListTrafficPolicyInstancesByPolicyOutput, error) { - req, out := c.ListTrafficPolicyInstancesByPolicyRequest(input) - err := req.Send() - return out, err -} - -const opListTrafficPolicyVersions = "ListTrafficPolicyVersions" - -// ListTrafficPolicyVersionsRequest generates a "aws/request.Request" representing the -// client's request for the ListTrafficPolicyVersions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListTrafficPolicyVersions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListTrafficPolicyVersionsRequest method. -// req, resp := client.ListTrafficPolicyVersionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) ListTrafficPolicyVersionsRequest(input *ListTrafficPolicyVersionsInput) (req *request.Request, output *ListTrafficPolicyVersionsOutput) { - op := &request.Operation{ - Name: opListTrafficPolicyVersions, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/trafficpolicies/{Id}/versions", - } - - if input == nil { - input = &ListTrafficPolicyVersionsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListTrafficPolicyVersionsOutput{} - req.Data = output - return -} - -// Gets information about all of the versions for a specified traffic policy. -// -// Send a GET request to the /Amazon Route 53 API version/trafficpolicy resource -// and specify the ID of the traffic policy for which you want to list versions. -// -// Amazon Route 53 returns a maximum of 100 items in each response. If you -// have a lot of traffic policies, you can use the maxitems parameter to list -// them in groups of up to 100. -// -// The response includes three values that help you navigate from one group -// of maxitemsmaxitems traffic policies to the next: -// -// IsTruncated -// -// If the value of IsTruncated in the response is true, there are more traffic -// policy versions associated with the specified traffic policy. -// -// If IsTruncated is false, this response includes the last traffic policy -// version that is associated with the specified traffic policy. -// -// TrafficPolicyVersionMarker -// -// The ID of the next traffic policy version that is associated with the current -// AWS account. If you want to list more traffic policies, make another call -// to ListTrafficPolicyVersions, and specify the value of the TrafficPolicyVersionMarker -// element in the TrafficPolicyVersionMarker request parameter. -// -// If IsTruncated is false, Amazon Route 53 omits the TrafficPolicyVersionMarker -// element from the response. -// -// MaxItems -// -// The value that you specified for the MaxItems parameter in the request that -// produced the current response. -func (c *Route53) ListTrafficPolicyVersions(input *ListTrafficPolicyVersionsInput) (*ListTrafficPolicyVersionsOutput, error) { - req, out := c.ListTrafficPolicyVersionsRequest(input) - err := req.Send() - return out, err -} - -const opTestDNSAnswer = "TestDNSAnswer" - -// TestDNSAnswerRequest generates a "aws/request.Request" representing the -// client's request for the TestDNSAnswer operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the TestDNSAnswer method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the TestDNSAnswerRequest method. -// req, resp := client.TestDNSAnswerRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) TestDNSAnswerRequest(input *TestDNSAnswerInput) (req *request.Request, output *TestDNSAnswerOutput) { - op := &request.Operation{ - Name: opTestDNSAnswer, - HTTPMethod: "GET", - HTTPPath: "/2013-04-01/testdnsanswer", - } - - if input == nil { - input = &TestDNSAnswerInput{} - } - - req = c.newRequest(op, input, output) - output = &TestDNSAnswerOutput{} - req.Data = output - return -} - -func (c *Route53) TestDNSAnswer(input *TestDNSAnswerInput) (*TestDNSAnswerOutput, error) { - req, out := c.TestDNSAnswerRequest(input) - err := req.Send() - return out, err -} - -const opUpdateHealthCheck = "UpdateHealthCheck" - -// UpdateHealthCheckRequest generates a "aws/request.Request" representing the -// client's request for the UpdateHealthCheck operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateHealthCheck method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateHealthCheckRequest method. -// req, resp := client.UpdateHealthCheckRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) UpdateHealthCheckRequest(input *UpdateHealthCheckInput) (req *request.Request, output *UpdateHealthCheckOutput) { - op := &request.Operation{ - Name: opUpdateHealthCheck, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/healthcheck/{HealthCheckId}", - } - - if input == nil { - input = &UpdateHealthCheckInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateHealthCheckOutput{} - req.Data = output - return -} - -// Updates an existing health check. -// -// Send a POST request to the /Amazon Route 53 API version/healthcheck/health -// check ID resource. The request body must include an XML document with an -// UpdateHealthCheckRequest element. For more information about updating health -// checks, see Creating, Updating, and Deleting Health Checks (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-creating-deleting.html) -// in the Amazon Route 53 Developer Guide. -func (c *Route53) UpdateHealthCheck(input *UpdateHealthCheckInput) (*UpdateHealthCheckOutput, error) { - req, out := c.UpdateHealthCheckRequest(input) - err := req.Send() - return out, err -} - -const opUpdateHostedZoneComment = "UpdateHostedZoneComment" - -// UpdateHostedZoneCommentRequest generates a "aws/request.Request" representing the -// client's request for the UpdateHostedZoneComment operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateHostedZoneComment method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateHostedZoneCommentRequest method. -// req, resp := client.UpdateHostedZoneCommentRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) UpdateHostedZoneCommentRequest(input *UpdateHostedZoneCommentInput) (req *request.Request, output *UpdateHostedZoneCommentOutput) { - op := &request.Operation{ - Name: opUpdateHostedZoneComment, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/hostedzone/{Id}", - } - - if input == nil { - input = &UpdateHostedZoneCommentInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateHostedZoneCommentOutput{} - req.Data = output - return -} - -// Updates the hosted zone comment. Send a POST request to the /2013-04-01/hostedzone/hosted -// zone ID resource. -func (c *Route53) UpdateHostedZoneComment(input *UpdateHostedZoneCommentInput) (*UpdateHostedZoneCommentOutput, error) { - req, out := c.UpdateHostedZoneCommentRequest(input) - err := req.Send() - return out, err -} - -const opUpdateTrafficPolicyComment = "UpdateTrafficPolicyComment" - -// UpdateTrafficPolicyCommentRequest generates a "aws/request.Request" representing the -// client's request for the UpdateTrafficPolicyComment operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateTrafficPolicyComment method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateTrafficPolicyCommentRequest method. -// req, resp := client.UpdateTrafficPolicyCommentRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) UpdateTrafficPolicyCommentRequest(input *UpdateTrafficPolicyCommentInput) (req *request.Request, output *UpdateTrafficPolicyCommentOutput) { - op := &request.Operation{ - Name: opUpdateTrafficPolicyComment, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/trafficpolicy/{Id}/{Version}", - } - - if input == nil { - input = &UpdateTrafficPolicyCommentInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateTrafficPolicyCommentOutput{} - req.Data = output - return -} - -// Updates the comment for a specified traffic policy version. -// -// Send a POST request to the /Amazon Route 53 API version/trafficpolicy/ resource. -// -// The request body must include a document with an UpdateTrafficPolicyCommentRequest -// element. -func (c *Route53) UpdateTrafficPolicyComment(input *UpdateTrafficPolicyCommentInput) (*UpdateTrafficPolicyCommentOutput, error) { - req, out := c.UpdateTrafficPolicyCommentRequest(input) - err := req.Send() - return out, err -} - -const opUpdateTrafficPolicyInstance = "UpdateTrafficPolicyInstance" - -// UpdateTrafficPolicyInstanceRequest generates a "aws/request.Request" representing the -// client's request for the UpdateTrafficPolicyInstance operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UpdateTrafficPolicyInstance method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UpdateTrafficPolicyInstanceRequest method. -// req, resp := client.UpdateTrafficPolicyInstanceRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *Route53) UpdateTrafficPolicyInstanceRequest(input *UpdateTrafficPolicyInstanceInput) (req *request.Request, output *UpdateTrafficPolicyInstanceOutput) { - op := &request.Operation{ - Name: opUpdateTrafficPolicyInstance, - HTTPMethod: "POST", - HTTPPath: "/2013-04-01/trafficpolicyinstance/{Id}", - } - - if input == nil { - input = &UpdateTrafficPolicyInstanceInput{} - } - - req = c.newRequest(op, input, output) - output = &UpdateTrafficPolicyInstanceOutput{} - req.Data = output - return -} - -// Updates the resource record sets in a specified hosted zone that were created -// based on the settings in a specified traffic policy version. -// -// Send a POST request to the /Amazon Route 53 API version/trafficpolicyinstance/traffic -// policy ID resource. The request body must include a document with an UpdateTrafficPolicyInstanceRequest -// element. -// -// When you update a traffic policy instance, Amazon Route 53 continues to -// respond to DNS queries for the root resource record set name (such as example.com) -// while it replaces one group of resource record sets with another. Amazon -// Route 53 performs the following operations: -// -// Amazon Route 53 creates a new group of resource record sets based on the -// specified traffic policy. This is true regardless of how substantial the -// differences are between the existing resource record sets and the new resource -// record sets. -// -// When all of the new resource record sets have been created, Amazon Route -// 53 starts to respond to DNS queries for the root resource record set name -// (such as example.com) by using the new resource record sets. -// -// Amazon Route 53 deletes the old group of resource record sets that are -// associated with the root resource record set name. -func (c *Route53) UpdateTrafficPolicyInstance(input *UpdateTrafficPolicyInstanceInput) (*UpdateTrafficPolicyInstanceOutput, error) { - req, out := c.UpdateTrafficPolicyInstanceRequest(input) - err := req.Send() - return out, err -} - -// A complex type that identifies the CloudWatch alarm that you want Amazon -// Route 53 health checkers to use to determine whether this health check is -// healthy. -type AlarmIdentifier struct { - _ struct{} `type:"structure"` - - // The name of the CloudWatch alarm that you want Amazon Route 53 health checkers - // to use to determine whether this health check is healthy. - // - // Name is a required field - Name *string `min:"1" type:"string" required:"true"` - - // A complex type that identifies the CloudWatch alarm that you want Amazon - // Route 53 health checkers to use to determine whether this health check is - // healthy. - // - // For the current list of CloudWatch regions, see Amazon CloudWatch (http://docs.aws.amazon.com/general/latest/gr/rande.html#cw_region) - // in AWS Regions and Endpoints in the Amazon Web Services General Reference. - // - // Region is a required field - Region *string `min:"1" type:"string" required:"true" enum:"CloudWatchRegion"` -} - -// String returns the string representation -func (s AlarmIdentifier) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AlarmIdentifier) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AlarmIdentifier) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AlarmIdentifier"} - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.Name != nil && len(*s.Name) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Name", 1)) - } - if s.Region == nil { - invalidParams.Add(request.NewErrParamRequired("Region")) - } - if s.Region != nil && len(*s.Region) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Region", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Alias resource record sets only: Information about the CloudFront distribution, -// Elastic Beanstalk environment, ELB load balancer, Amazon S3 bucket, or Amazon -// Route 53 resource record set to which you are redirecting queries. The Elastic -// Beanstalk environment must have a regionalized subdomain. -// -// When creating resource record sets for a private hosted zone, note the following: -// -// Resource record sets cannot be created for CloudFront distributions in -// a private hosted zone. -// -// Creating geolocation alias resource record sets or latency alias resource -// record sets in a private hosted zone is unsupported. -// -// For information about creating failover resource record sets in a private -// hosted zone, see Configuring Failover in a Private Hosted Zone (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html). -type AliasTarget struct { - _ struct{} `type:"structure"` - - // Alias resource record sets only: The value that you specify depends on where - // you want to route queries: - // - // A CloudFront distribution: Specify the domain name that CloudFront assigned - // when you created your distribution. - // - // Your CloudFront distribution must include an alternate domain name that - // matches the name of the resource record set. For example, if the name of - // the resource record set is acme.example.com, your CloudFront distribution - // must include acme.example.com as one of the alternate domain names. For more - // information, see Using Alternate Domain Names (CNAMEs) (http://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html) - // in the Amazon CloudFront Developer Guide. - // - // Elastic Beanstalk environment: Specify the CNAME attribute for the environment. - // (The environment must have a regionalized domain name.) You can use the following - // methods to get the value of the CNAME attribute: - // - // AWS Managment Console: For information about how to get the value by - // using the console, see Using Custom Domains with Elastic Beanstalk (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/customdomains.html) - // in the AWS Elastic Beanstalk Developer Guide. - // - // Elastic Load Balancing API: Use the DescribeEnvironments action to get - // the value of the CNAME attribute. For more information, see DescribeEnvironments - // (http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/API_DescribeEnvironments.html) - // in the AWS Elastic Beanstalk API Reference. - // - // AWS CLI: Use the describe-environments command to get the value of the - // CNAME attribute. For more information, see describe-environments (http://docs.aws.amazon.com/cli/latest/reference/elasticbeanstalk/describe-environments.html) - // in the AWS Command Line Interface Reference. - // - // An ELB load balancer: Specify the DNS name associated with the load - // balancer. Get the DNS name by using the AWS Management Console, the ELB API, - // or the AWS CLI. Use the same method to get values for HostedZoneId and DNSName. - // If you get one value from the console and the other value from the API or - // the CLI, creating the resource record set will fail. - // - // AWS Management Console: Go to the Amazon EC2 page, click Load Balancers - // in the navigation pane, choose the load balancer, choose the Description - // tab, and get the value of the DNS Name field that begins with dualstack. - // Use the same process to get the Hosted Zone ID. See HostedZone$Id. - // - // Elastic Load Balancing API: Use DescribeLoadBalancers (http://docs.aws.amazon.com/ElasticLoadBalancing/latest/APIReference/API_DescribeLoadBalancers.html) - // to get the value of CanonicalHostedZoneName. Use the same process to get - // the CanonicalHostedZoneNameId. See HostedZone$Id. - // - // AWS CLI: Use describe-load-balancers (http://docs.aws.amazon.com/ElasticLoadBalancing/latest/APIReference/API_DescribeLoadBalancers.html) - // to get the value of CanonicalHostedZoneName. Use the same process to get - // the CanonicalHostedZoneNameId. See HostedZoneId. - // - // An Amazon S3 bucket that is configured as a static website: Specify - // the domain name of the Amazon S3 website endpoint in which you created the - // bucket; for example, s3-website-us-east-1.amazonaws.com. For more information - // about valid values, see the table Amazon Simple Storage Service (S3) Website - // Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region) - // in the Amazon Web Services General Reference. For more information about - // using Amazon S3 buckets for websites, see Hosting a Static Website on Amazon - // S3 (http://docs.aws.amazon.com/AmazonS3/latest/dev/WebsiteHosting.html) in - // the Amazon Simple Storage Service Developer Guide. - // - // Another Amazon Route 53 resource record set: Specify the value of the - // Name element for a resource record set in the current hosted zone. - // - // DNSName is a required field - DNSName *string `type:"string" required:"true"` - - // Applies only to alias, weighted alias, latency alias, and failover alias - // record sets: If you set the value of EvaluateTargetHealth to true for the - // resource record set or sets in an alias, weighted alias, latency alias, or - // failover alias resource record set, and if you specify a value for HealthCheck$Id - // for every resource record set that is referenced by these alias resource - // record sets, the alias resource record sets inherit the health of the referenced - // resource record sets. - // - // In this configuration, when Amazon Route 53 receives a DNS query for an - // alias resource record set: - // - // Amazon Route 53 looks at the resource record sets that are referenced - // by the alias resource record sets to determine which health checks they're - // using. - // - // Amazon Route 53 checks the current status of each health check. (Amazon - // Route 53 periodically checks the health of the endpoint that is specified - // in a health check; it doesn't perform the health check when the DNS query - // arrives.) - // - // Based on the status of the health checks, Amazon Route 53 determines which - // resource record sets are healthy. Unhealthy resource record sets are immediately - // removed from consideration. In addition, if all of the resource record sets - // that are referenced by an alias resource record set are unhealthy, that alias - // resource record set also is immediately removed from consideration. - // - // Based on the configuration of the alias resource record sets (weighted - // alias or latency alias, for example) and the configuration of the resource - // record sets that they reference, Amazon Route 53 chooses a resource record - // set from the healthy resource record sets, and responds to the query. - // - // Note the following: - // - // You cannot set EvaluateTargetHealth to true when the alias target is a - // CloudFront distribution. - // - // If the AWS resource that you specify in AliasTarget is a resource record - // set or a group of resource record sets (for example, a group of weighted - // resource record sets), but it is not another alias resource record set, we - // recommend that you associate a health check with all of the resource record - // sets in the alias target.For more information, see What Happens When You - // Omit Health Checks? (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html#dns-failover-complex-configs-hc-omitting) - // in the Amazon Route 53 Developer Guide. - // - // If you specify an Elastic Beanstalk environment in HostedZoneId and DNSName, - // and if the environment contains an ELB load balancer, Elastic Load Balancing - // routes queries only to the healthy Amazon EC2 instances that are registered - // with the load balancer. (An environment automatically contains an ELB load - // balancer if it includes more than one Amazon EC2 instance.) If you set EvaluateTargetHealth - // to true and either no Amazon EC2 instances are healthy or the load balancer - // itself is unhealthy, Amazon Route 53 routes queries to other available resources - // that are healthy, if any. - // - // If the environment contains a single Amazon EC2 instance, there are no special - // requirements. - // - // If you specify an ELB load balancer in AliasTarget , Elastic Load Balancing - // routes queries only to the healthy Amazon EC2 instances that are registered - // with the load balancer. If no Amazon EC2 instances are healthy or if the - // load balancer itself is unhealthy, and if EvaluateTargetHealth is true for - // the corresponding alias resource record set, Amazon Route 53 routes queries - // to other resources. When you create a load balancer, you configure settings - // for Elastic Load Balancing health checks; they're not Amazon Route 53 health - // checks, but they perform a similar function. Do not create Amazon Route 53 - // health checks for the Amazon EC2 instances that you register with an ELB - // load balancer. - // - // For more information, see How Health Checks Work in More Complex Amazon - // Route 53 Configurations (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-complex-configs.html) - // in the Amazon Route 53 Developers Guide. - // - // We recommend that you set EvaluateTargetHealth to true only when you have - // enough idle capacity to handle the failure of one or more endpoints. - // - // For more information and examples, see Amazon Route 53 Health Checks and - // DNS Failover (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) - // in the Amazon Route 53 Developer Guide. - // - // EvaluateTargetHealth is a required field - EvaluateTargetHealth *bool `type:"boolean" required:"true"` - - // Alias resource records sets only: The value used depends on where the queries - // are routed: - // - // A CloudFront distribution Specify Z2FDTNDATAQYW2. - // - // Alias resource record sets for CloudFront cannot be created in a private - // zone. - // - // Elastic Beanstalk environment Specify the hosted zone ID for the region - // in which you created the environment. The environment must have a regionalized - // subdomain. For a list of regions and the corresponding hosted zone IDs, see - // AWS Elastic Beanstalk (http://docs.aws.amazon.com/general/latest/gr/rande.html#elasticbeanstalk_region) - // in the Regions and Endpoints chapter of the AWSk General Reference. - // - // ELB load balancer Specify the value of the hosted zone ID for the load - // balancer. Use the following methods to get the hosted zone ID: - // - // AWS Management Console: Go to the Amazon EC2; page, click Load Balancers - // in the navigation pane, select the load balancer, and get the value of the - // Hosted Zone ID field on the Description tab. Use the same process to get - // the DNS Name. See HostedZone$Name. - // - // Elastic Load Balancing API: Use DescribeLoadBalancers to get the value - // of CanonicalHostedZoneNameID. Use the same process to get the CanonicalHostedZoneName. - // See HostedZone$Name. - // - // AWS CLI: Use describe-load-balancers (http://docs.aws.amazon.com/cli/latest/reference/elb/describe-load-balancers.html) - // to get the value of CanonicalHostedZoneNameID. Use the same process to get - // the CanonicalHostedZoneName. See HostedZone$Name. - // - // An Amazon S3 bucket configured as a static website Specify the hosted - // zone ID for the Amazon S3 website endpoint in which you created the bucket. - // For more information about valid values, see the table Amazon S3 (S3) Website - // Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region) - // in the Amazon Web Services General Reference. - // - // Another Amazon Route 53 resource record set in your hosted zone Specify - // the hosted zone ID of your hosted zone. (An alias resource record set cannot - // reference a resource record set in a different hosted zone.) - // - // HostedZoneId is a required field - HostedZoneId *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s AliasTarget) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AliasTarget) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AliasTarget) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AliasTarget"} - if s.DNSName == nil { - invalidParams.Add(request.NewErrParamRequired("DNSName")) - } - if s.EvaluateTargetHealth == nil { - invalidParams.Add(request.NewErrParamRequired("EvaluateTargetHealth")) - } - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the VPC and the hosted zone -// that you want to associate. -type AssociateVPCWithHostedZoneInput struct { - _ struct{} `locationName:"AssociateVPCWithHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // Optional: A comment about the association request. - Comment *string `type:"string"` - - // The ID of the hosted zone you want to associate your VPC with. - // - // Note that you cannot associate a VPC with a hosted zone that doesn't have - // an existing VPC association. - // - // HostedZoneId is a required field - HostedZoneId *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // A complex type containing information about the Amazon VPC that you're associating - // with the specified hosted zone. - // - // VPC is a required field - VPC *VPC `type:"structure" required:"true"` -} - -// String returns the string representation -func (s AssociateVPCWithHostedZoneInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateVPCWithHostedZoneInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AssociateVPCWithHostedZoneInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AssociateVPCWithHostedZoneInput"} - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.VPC == nil { - invalidParams.Add(request.NewErrParamRequired("VPC")) - } - if s.VPC != nil { - if err := s.VPC.Validate(); err != nil { - invalidParams.AddNested("VPC", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the hosted zone. -type AssociateVPCWithHostedZoneOutput struct { - _ struct{} `type:"structure"` - - // A complex type that describes the changes made to your hosted zone. - // - // ChangeInfo is a required field - ChangeInfo *ChangeInfo `type:"structure" required:"true"` -} - -// String returns the string representation -func (s AssociateVPCWithHostedZoneOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssociateVPCWithHostedZoneOutput) GoString() string { - return s.String() -} - -// The information for each resource record set that you want to change. -type Change struct { - _ struct{} `type:"structure"` - - // The action to perform: - // - // CREATE: Creates a resource record set that has the specified values. - // - // DELETE: Deletes a existing resource record set that has the specified - // values for Name, Type, SetIdentifier (for latency, weighted, geolocation, - // and failover resource record sets), and TTL (except alias resource record - // sets, for which the TTL is determined by the AWS resource that you're routing - // DNS queries to). - // - // To delete the resource record set that is associated with a traffic policy - // instance, use DeleteTrafficPolicyInstance . Amazon Route 53will delete the - // resource record set automatically. If you delete the resource record set - // by using ChangeResourceRecordSets, Amazon Route 53 doesn't automatically - // delete the traffic policy instance, and you'll continue to be charged for - // it even though it's no longer in use. - // - // UPSERT: If a resource record set does not already exist, Amazon Route - // 53 creates it. If a resource record set does exist, Amazon Route 53 updates - // it with the values in the request. Amazon Route 53 can update an existing - // resource record set only when all of the following values match: Name, Type, - // and SetIdentifier (for weighted, latency, geolocation, and failover resource - // record sets). - // - // Action is a required field - Action *string `type:"string" required:"true" enum:"ChangeAction"` - - // Information about the resource record set to create or delete. - // - // ResourceRecordSet is a required field - ResourceRecordSet *ResourceRecordSet `type:"structure" required:"true"` -} - -// String returns the string representation -func (s Change) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Change) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Change) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Change"} - if s.Action == nil { - invalidParams.Add(request.NewErrParamRequired("Action")) - } - if s.ResourceRecordSet == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceRecordSet")) - } - if s.ResourceRecordSet != nil { - if err := s.ResourceRecordSet.Validate(); err != nil { - invalidParams.AddNested("ResourceRecordSet", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The information for a change request. -type ChangeBatch struct { - _ struct{} `type:"structure"` - - // Information about the changes to make to the record sets. - // - // Changes is a required field - Changes []*Change `locationNameList:"Change" min:"1" type:"list" required:"true"` - - // Optional: Any comments you want to include about a change batch request. - Comment *string `type:"string"` -} - -// String returns the string representation -func (s ChangeBatch) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ChangeBatch) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ChangeBatch) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ChangeBatch"} - if s.Changes == nil { - invalidParams.Add(request.NewErrParamRequired("Changes")) - } - if s.Changes != nil && len(s.Changes) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Changes", 1)) - } - if s.Changes != nil { - for i, v := range s.Changes { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Changes", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that lists the changes and information for a ChangeBatch. -type ChangeBatchRecord struct { - _ struct{} `deprecated:"true" type:"structure"` - - // A list of changes made in the ChangeBatch. - Changes []*Change `locationNameList:"Change" min:"1" type:"list"` - - // A complex type that describes change information about changes made to your - // hosted zone. - // - // This element contains an ID that you use when performing a GetChange action - // to get detailed information about the change. - Comment *string `type:"string"` - - // The ID of the request. Use this ID to track when the change has completed - // across all Amazon Route 53 DNS servers. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The current state of the request. PENDING indicates that this request has - // not yet been applied to all Amazon Route 53 DNS servers. - // - // Valid Values: PENDING | INSYNC - // - // Status is a required field - Status *string `type:"string" required:"true" enum:"ChangeStatus"` - - // The date and time the change was submitted, in the format YYYY-MM-DDThh:mm:ssZ, - // as specified in the ISO 8601 standard (for example, 2009-11-19T19:37:58Z). - // The Z after the time indicates that the time is listed in Coordinated Universal - // Time (UTC). - SubmittedAt *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // The AWS account ID attached to the changes. - Submitter *string `type:"string"` -} - -// String returns the string representation -func (s ChangeBatchRecord) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ChangeBatchRecord) GoString() string { - return s.String() -} - -// A complex type that describes change information about changes made to your -// hosted zone. -type ChangeInfo struct { - _ struct{} `type:"structure"` - - // A complex type that describes change information about changes made to your - // hosted zone. - // - // This element contains an ID that you use when performing a GetChange action - // to get detailed information about the change. - Comment *string `type:"string"` - - // The ID of the request. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The current state of the request. PENDING indicates that this request has - // not yet been applied to all Amazon Route 53 DNS servers. - // - // Status is a required field - Status *string `type:"string" required:"true" enum:"ChangeStatus"` - - // The date and time the change request was submitted, in Coordinated Universal - // Time (UTC) format: YYYY-MM-DDThh:mm:ssZ. For more information, see the Wikipedia - // entry ISO 8601 (https://en.wikipedia.org/wiki/ISO_8601). - // - // SubmittedAt is a required field - SubmittedAt *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` -} - -// String returns the string representation -func (s ChangeInfo) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ChangeInfo) GoString() string { - return s.String() -} - -// A complex type that contains change information for the resource record set. -type ChangeResourceRecordSetsInput struct { - _ struct{} `locationName:"ChangeResourceRecordSetsRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // A complex type that contains an optional comment and the Changes element. - // - // ChangeBatch is a required field - ChangeBatch *ChangeBatch `type:"structure" required:"true"` - - // The ID of the hosted zone that contains the resource record sets that you - // want to change. - // - // HostedZoneId is a required field - HostedZoneId *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s ChangeResourceRecordSetsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ChangeResourceRecordSetsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ChangeResourceRecordSetsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ChangeResourceRecordSetsInput"} - if s.ChangeBatch == nil { - invalidParams.Add(request.NewErrParamRequired("ChangeBatch")) - } - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.ChangeBatch != nil { - if err := s.ChangeBatch.Validate(); err != nil { - invalidParams.AddNested("ChangeBatch", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing the response for the request. -type ChangeResourceRecordSetsOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about changes made to your hosted - // zone. - // - // This element contains an ID that you use when performing a GetChange action - // to get detailed information about the change. - // - // ChangeInfo is a required field - ChangeInfo *ChangeInfo `type:"structure" required:"true"` -} - -// String returns the string representation -func (s ChangeResourceRecordSetsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ChangeResourceRecordSetsOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the tags that you want to -// add, edit, or delete. -type ChangeTagsForResourceInput struct { - _ struct{} `locationName:"ChangeTagsForResourceRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // A complex type that contains a list of the tags that you want to add to the - // specified health check or hosted zone and/or the tags for which you want - // to edit the Value element. - // - // You can add a maximum of 10 tags to a health check or a hosted zone. - AddTags []*Tag `locationNameList:"Tag" min:"1" type:"list"` - - // A complex type that contains a list of the tags that you want to delete from - // the specified health check or hosted zone. You can specify up to 10 keys. - RemoveTagKeys []*string `locationNameList:"Key" min:"1" type:"list"` - - // The ID of the resource for which you want to add, change, or delete tags. - // - // ResourceId is a required field - ResourceId *string `location:"uri" locationName:"ResourceId" type:"string" required:"true"` - - // The type of the resource. - // - // The resource type for health checks is healthcheck. - // - // The resource type for hosted zones is hostedzone. - // - // ResourceType is a required field - ResourceType *string `location:"uri" locationName:"ResourceType" type:"string" required:"true" enum:"TagResourceType"` -} - -// String returns the string representation -func (s ChangeTagsForResourceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ChangeTagsForResourceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ChangeTagsForResourceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ChangeTagsForResourceInput"} - if s.AddTags != nil && len(s.AddTags) < 1 { - invalidParams.Add(request.NewErrParamMinLen("AddTags", 1)) - } - if s.RemoveTagKeys != nil && len(s.RemoveTagKeys) < 1 { - invalidParams.Add(request.NewErrParamMinLen("RemoveTagKeys", 1)) - } - if s.ResourceId == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceId")) - } - if s.ResourceType == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Empty response for the request. -type ChangeTagsForResourceOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ChangeTagsForResourceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ChangeTagsForResourceOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the CloudWatch alarm that -// Amazon Route 53 is monitoring for this health check. -type CloudWatchAlarmConfiguration struct { - _ struct{} `type:"structure"` - - // For the metric that the CloudWatch alarm is associated with, the arithmetic - // operation that is used for the comparison. - // - // ComparisonOperator is a required field - ComparisonOperator *string `type:"string" required:"true" enum:"ComparisonOperator"` - - // For the metric that the CloudWatch alarm is associated with, a complex type - // that contains information about the dimensions for the metric.For information, - // see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference ( http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html) - // in the Amazon CloudWatch Developer Guide. - Dimensions []*Dimension `locationNameList:"Dimension" type:"list"` - - // For the metric that the CloudWatch alarm is associated with, the number of - // periods that the metric is compared to the threshold. - // - // EvaluationPeriods is a required field - EvaluationPeriods *int64 `min:"1" type:"integer" required:"true"` - - // The name of the CloudWatch metric that the alarm is associated with. - // - // MetricName is a required field - MetricName *string `min:"1" type:"string" required:"true"` - - // The namespace of the metric that the alarm is associated with. For more information, - // see Amazon CloudWatch Namespaces, Dimensions, and Metrics Reference (http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/CW_Support_For_AWS.html) - // in the Amazon CloudWatch Developer Guide. - // - // Namespace is a required field - Namespace *string `min:"1" type:"string" required:"true"` - - // For the metric that the CloudWatch alarm is associated with, the duration - // of one evaluation period in seconds. - // - // Period is a required field - Period *int64 `min:"60" type:"integer" required:"true"` - - // For the metric that the CloudWatch alarm is associated with, the statistic - // that is applied to the metric. - // - // Statistic is a required field - Statistic *string `type:"string" required:"true" enum:"Statistic"` - - // For the metric that the CloudWatch alarm is associated with, the value the - // metric is compared with. - // - // Threshold is a required field - Threshold *float64 `type:"double" required:"true"` -} - -// String returns the string representation -func (s CloudWatchAlarmConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CloudWatchAlarmConfiguration) GoString() string { - return s.String() -} - -// A complex type that contains the health check request information. -type CreateHealthCheckInput struct { - _ struct{} `locationName:"CreateHealthCheckRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // A unique string that identifies the request and that allows failed CreateHealthCheck - // requests to be retried without the risk of executing the operation twice. - // You must use a unique CallerReference string every time you create a health - // check. - // - // CallerReference is a required field - CallerReference *string `min:"1" type:"string" required:"true"` - - // A complex type that contains the response to a CreateHealthCheck request. - // - // HealthCheckConfig is a required field - HealthCheckConfig *HealthCheckConfig `type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateHealthCheckInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateHealthCheckInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateHealthCheckInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateHealthCheckInput"} - if s.CallerReference == nil { - invalidParams.Add(request.NewErrParamRequired("CallerReference")) - } - if s.CallerReference != nil && len(*s.CallerReference) < 1 { - invalidParams.Add(request.NewErrParamMinLen("CallerReference", 1)) - } - if s.HealthCheckConfig == nil { - invalidParams.Add(request.NewErrParamRequired("HealthCheckConfig")) - } - if s.HealthCheckConfig != nil { - if err := s.HealthCheckConfig.Validate(); err != nil { - invalidParams.AddNested("HealthCheckConfig", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing the response information for the new health check. -type CreateHealthCheckOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains identifying information about the health check. - // - // HealthCheck is a required field - HealthCheck *HealthCheck `type:"structure" required:"true"` - - // The unique URL representing the new health check. - // - // Location is a required field - Location *string `location:"header" locationName:"Location" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateHealthCheckOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateHealthCheckOutput) GoString() string { - return s.String() -} - -// A complex type containing the hosted zone request information. -type CreateHostedZoneInput struct { - _ struct{} `locationName:"CreateHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // A unique string that identifies the request and that allows failed CreateHostedZone - // requests to be retried without the risk of executing the operation twice. - // You must use a unique CallerReference string every time you create a hosted - // zone. CallerReference can be any unique string, for example, a date/time - // stamp. - // - // CallerReference is a required field - CallerReference *string `min:"1" type:"string" required:"true"` - - // If you want to associate a reusable delegation set with this hosted zone, - // the ID that Amazon Route 53 assigned to the reusable delegation set when - // you created it. For more information about reusable delegation sets, see - // CreateReusableDelegationSet. - // - // Type String - // - // Default None - // - // Parent CreatedHostedZoneRequest - DelegationSetId *string `type:"string"` - - // (Optional) A complex type that contains an optional comment about your hosted - // zone. If you don't want to specify a comment, omit both the HostedZoneConfig - // and Comment elements. - HostedZoneConfig *HostedZoneConfig `type:"structure"` - - // The name of the domain. For resource record types that include a domain name, - // specify a fully qualified domain name, for example, www.example.com. The - // trailing dot is optional; Amazon Route 53 assumes that the domain name is - // fully qualified. This means that Amazon Route 53 treats www.example.com (without - // a trailing dot) and www.example.com. (with a trailing dot) as identical. - // - // If you're creating a public hosted zone, this is the name you have registered - // with your DNS registrar. If your domain name is registered with a registrar - // other than Amazon Route 53, change the name servers for your domain to the - // set of NameServers that CreateHostedZone returns in the DelegationSet element. - // - // Name is a required field - Name *string `type:"string" required:"true"` - - // The VPC that you want your hosted zone to be associated with. By providing - // this parameter, your newly created hosted cannot be resolved anywhere other - // than the given VPC. - VPC *VPC `type:"structure"` -} - -// String returns the string representation -func (s CreateHostedZoneInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateHostedZoneInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateHostedZoneInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateHostedZoneInput"} - if s.CallerReference == nil { - invalidParams.Add(request.NewErrParamRequired("CallerReference")) - } - if s.CallerReference != nil && len(*s.CallerReference) < 1 { - invalidParams.Add(request.NewErrParamMinLen("CallerReference", 1)) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.VPC != nil { - if err := s.VPC.Validate(); err != nil { - invalidParams.AddNested("VPC", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing the response information for the hosted zone. -type CreateHostedZoneOutput struct { - _ struct{} `type:"structure"` - - // A complex type that describes the changes made to your hosted zone. - // - // ChangeInfo is a required field - ChangeInfo *ChangeInfo `type:"structure" required:"true"` - - // A complex type that describes the name servers for this hosted zone. - // - // DelegationSet is a required field - DelegationSet *DelegationSet `type:"structure" required:"true"` - - // A complex type that contains general information about the hosted zone. - // - // HostedZone is a required field - HostedZone *HostedZone `type:"structure" required:"true"` - - // The unique URL representing the new hosted zone. - // - // Location is a required field - Location *string `location:"header" locationName:"Location" type:"string" required:"true"` - - VPC *VPC `type:"structure"` -} - -// String returns the string representation -func (s CreateHostedZoneOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateHostedZoneOutput) GoString() string { - return s.String() -} - -type CreateReusableDelegationSetInput struct { - _ struct{} `locationName:"CreateReusableDelegationSetRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // A unique string that identifies the request, and that allows you to retry - // failed CreateReusableDelegationSet requests without the risk of executing - // the operation twice. You must use a unique CallerReference string every time - // you submit a CreateReusableDelegationSet request. CallerReference can be - // any unique string, for example a date/time stamp. - // - // CallerReference is a required field - CallerReference *string `min:"1" type:"string" required:"true"` - - // If you want to mark the delegation set for an existing hosted zone as reusable, - // the ID for that hosted zone. - HostedZoneId *string `type:"string"` -} - -// String returns the string representation -func (s CreateReusableDelegationSetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateReusableDelegationSetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateReusableDelegationSetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateReusableDelegationSetInput"} - if s.CallerReference == nil { - invalidParams.Add(request.NewErrParamRequired("CallerReference")) - } - if s.CallerReference != nil && len(*s.CallerReference) < 1 { - invalidParams.Add(request.NewErrParamMinLen("CallerReference", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreateReusableDelegationSetOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains name server information. - // - // DelegationSet is a required field - DelegationSet *DelegationSet `type:"structure" required:"true"` - - // The unique URL representing the new reusbale delegation set. - // - // Location is a required field - Location *string `location:"header" locationName:"Location" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateReusableDelegationSetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateReusableDelegationSetOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the traffic policy that you -// want to create. -type CreateTrafficPolicyInput struct { - _ struct{} `locationName:"CreateTrafficPolicyRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // (Optional) Any comments that you want to include about the traffic policy. - Comment *string `type:"string"` - - // The definition of this traffic policy in JSON format. For more information, - // see Traffic Policy Document Format (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/api-policies-traffic-policy-document-format.html) - // in the Amazon Route 53 API Reference. - // - // Document is a required field - Document *string `type:"string" required:"true"` - - // The name of the traffic policy. - // - // Name is a required field - Name *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateTrafficPolicyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTrafficPolicyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateTrafficPolicyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateTrafficPolicyInput"} - if s.Document == nil { - invalidParams.Add(request.NewErrParamRequired("Document")) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the resource record sets that -// you want to create based on a specified traffic policy. -type CreateTrafficPolicyInstanceInput struct { - _ struct{} `locationName:"CreateTrafficPolicyInstanceRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // The ID of the hosted zone in which you want Amazon Route 53 to create resource - // record sets by using the configuration in a traffic policy. - // - // HostedZoneId is a required field - HostedZoneId *string `type:"string" required:"true"` - - // The domain name (such as example.com) or subdomain name (such as www.example.com) - // for which Amazon Route 53 responds to DNS queries by using the resource record - // sets that Amazon Route 53 creates for this traffic policy instance. - // - // Name is a required field - Name *string `type:"string" required:"true"` - - // (Optional) The TTL that you want Amazon Route 53 to assign to all of the - // resource record sets that it creates in the specified hosted zone. - // - // TTL is a required field - TTL *int64 `type:"long" required:"true"` - - // The ID of the traffic policy that you want to use to create resource record - // sets in the specified hosted zone. - // - // TrafficPolicyId is a required field - TrafficPolicyId *string `type:"string" required:"true"` - - // The version of the traffic policy that you want to use to create resource - // record sets in the specified hosted zone. - // - // TrafficPolicyVersion is a required field - TrafficPolicyVersion *int64 `min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s CreateTrafficPolicyInstanceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTrafficPolicyInstanceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateTrafficPolicyInstanceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateTrafficPolicyInstanceInput"} - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.TTL == nil { - invalidParams.Add(request.NewErrParamRequired("TTL")) - } - if s.TrafficPolicyId == nil { - invalidParams.Add(request.NewErrParamRequired("TrafficPolicyId")) - } - if s.TrafficPolicyVersion == nil { - invalidParams.Add(request.NewErrParamRequired("TrafficPolicyVersion")) - } - if s.TrafficPolicyVersion != nil && *s.TrafficPolicyVersion < 1 { - invalidParams.Add(request.NewErrParamMinValue("TrafficPolicyVersion", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the CreateTrafficPolicyInstance -// request. -type CreateTrafficPolicyInstanceOutput struct { - _ struct{} `type:"structure"` - - // A unique URL that represents a new traffic policy instance. - // - // Location is a required field - Location *string `location:"header" locationName:"Location" type:"string" required:"true"` - - // A complex type that contains settings for the new traffic policy instance. - // - // TrafficPolicyInstance is a required field - TrafficPolicyInstance *TrafficPolicyInstance `type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateTrafficPolicyInstanceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTrafficPolicyInstanceOutput) GoString() string { - return s.String() -} - -// A complex type that contains the response information for the CreateTrafficPolicy -// request. -type CreateTrafficPolicyOutput struct { - _ struct{} `type:"structure"` - - // Location is a required field - Location *string `location:"header" locationName:"Location" type:"string" required:"true"` - - // A complex type that contains settings for the new traffic policy. - // - // TrafficPolicy is a required field - TrafficPolicy *TrafficPolicy `type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateTrafficPolicyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTrafficPolicyOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the traffic policy for which -// you want to create a new version. -type CreateTrafficPolicyVersionInput struct { - _ struct{} `locationName:"CreateTrafficPolicyVersionRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // The comment that you specified in the CreateTrafficPolicyVersion request, - // if any. - Comment *string `type:"string"` - - // The definition of this version of the traffic policy, in JSON format. You - // specified the JSON in the CreateTrafficPolicyVersion request. For more information - // about the JSON format, see CreateTrafficPolicy. - // - // Document is a required field - Document *string `type:"string" required:"true"` - - // The ID of the traffic policy for which you want to create a new version. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s CreateTrafficPolicyVersionInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTrafficPolicyVersionInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateTrafficPolicyVersionInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateTrafficPolicyVersionInput"} - if s.Document == nil { - invalidParams.Add(request.NewErrParamRequired("Document")) - } - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the CreateTrafficPolicyVersion -// request. -type CreateTrafficPolicyVersionOutput struct { - _ struct{} `type:"structure"` - - // Location is a required field - Location *string `location:"header" locationName:"Location" type:"string" required:"true"` - - // A complex type that contains settings for the new version of the traffic - // policy. - // - // TrafficPolicy is a required field - TrafficPolicy *TrafficPolicy `type:"structure" required:"true"` -} - -// String returns the string representation -func (s CreateTrafficPolicyVersionOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateTrafficPolicyVersionOutput) GoString() string { - return s.String() -} - -// A complex type that describes the name servers for this hosted zone. -type DelegationSet struct { - _ struct{} `type:"structure"` - - CallerReference *string `min:"1" type:"string"` - - Id *string `type:"string"` - - // A complex type that contains a list of the authoritative name servers for - // the hosted zone. - // - // NameServers is a required field - NameServers []*string `locationNameList:"NameServer" min:"1" type:"list" required:"true"` -} - -// String returns the string representation -func (s DelegationSet) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DelegationSet) GoString() string { - return s.String() -} - -// This action deletes a health check. Send a DELETE request to the /2013-04-01/DeleteHealthCheckRequest -// resource. -type DeleteHealthCheckInput struct { - _ struct{} `type:"structure"` - - // HealthCheckId is a required field - HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteHealthCheckInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteHealthCheckInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteHealthCheckInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteHealthCheckInput"} - if s.HealthCheckId == nil { - invalidParams.Add(request.NewErrParamRequired("HealthCheckId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// An empty element. -type DeleteHealthCheckOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteHealthCheckOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteHealthCheckOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the hosted zone that you want -// to delete. -type DeleteHostedZoneInput struct { - _ struct{} `type:"structure"` - - // The ID of the hosted zone you want to delete. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteHostedZoneInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteHostedZoneInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteHostedZoneInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteHostedZoneInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing the response information for the request. -type DeleteHostedZoneOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains the ID, the status, and the date and time of - // your delete request. - // - // ChangeInfo is a required field - ChangeInfo *ChangeInfo `type:"structure" required:"true"` -} - -// String returns the string representation -func (s DeleteHostedZoneOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteHostedZoneOutput) GoString() string { - return s.String() -} - -// A complex type containing the information for the delete request. -type DeleteReusableDelegationSetInput struct { - _ struct{} `type:"structure"` - - // The ID of the reusable delegation set you want to delete. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteReusableDelegationSetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteReusableDelegationSetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteReusableDelegationSetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteReusableDelegationSetInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// An empty element. -type DeleteReusableDelegationSetOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteReusableDelegationSetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteReusableDelegationSetOutput) GoString() string { - return s.String() -} - -// A request to delete a specified traffic policy version. -type DeleteTrafficPolicyInput struct { - _ struct{} `type:"structure"` - - // The ID of the traffic policy that you want to delete. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The version number of the traffic policy that you want to delete. - // - // Version is a required field - Version *int64 `location:"uri" locationName:"Version" min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s DeleteTrafficPolicyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTrafficPolicyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteTrafficPolicyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteTrafficPolicyInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.Version == nil { - invalidParams.Add(request.NewErrParamRequired("Version")) - } - if s.Version != nil && *s.Version < 1 { - invalidParams.Add(request.NewErrParamMinValue("Version", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the traffic policy instance -// that you want to delete. -type DeleteTrafficPolicyInstanceInput struct { - _ struct{} `type:"structure"` - - // The ID of the traffic policy instance that you want to delete. - // - // When you delete a traffic policy instance, Amazon Route 53 also deletes - // all of the resource record sets that were created when you created the traffic - // policy instance. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteTrafficPolicyInstanceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTrafficPolicyInstanceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteTrafficPolicyInstanceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteTrafficPolicyInstanceInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// An empty element. -type DeleteTrafficPolicyInstanceOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteTrafficPolicyInstanceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTrafficPolicyInstanceOutput) GoString() string { - return s.String() -} - -// An empty element. -type DeleteTrafficPolicyOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteTrafficPolicyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteTrafficPolicyOutput) GoString() string { - return s.String() -} - -// For the metric that the CloudWatch alarm is associated with, a complex type -// that contains information about one dimension. -type Dimension struct { - _ struct{} `type:"structure"` - - // For the metric that the CloudWatch alarm is associated with, the name of - // one dimension. - // - // Name is a required field - Name *string `min:"1" type:"string" required:"true"` - - // For the metric that the CloudWatch alarm is associated with, the value of - // one dimension. - // - // Value is a required field - Value *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s Dimension) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Dimension) GoString() string { - return s.String() -} - -// A complex type that contains information about the VPC and the hosted zone -// that you want to disassociate. -type DisassociateVPCFromHostedZoneInput struct { - _ struct{} `locationName:"DisassociateVPCFromHostedZoneRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // Optional: A comment about the disassociation request. - Comment *string `type:"string"` - - // The ID of the VPC that you want to disassociate from an Amazon Route 53 hosted - // zone. - // - // HostedZoneId is a required field - HostedZoneId *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // A complex type containing information about the Amazon VPC that you're disassociating - // from the specified hosted zone. - // - // VPC is a required field - VPC *VPC `type:"structure" required:"true"` -} - -// String returns the string representation -func (s DisassociateVPCFromHostedZoneInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisassociateVPCFromHostedZoneInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DisassociateVPCFromHostedZoneInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DisassociateVPCFromHostedZoneInput"} - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.VPC == nil { - invalidParams.Add(request.NewErrParamRequired("VPC")) - } - if s.VPC != nil { - if err := s.VPC.Validate(); err != nil { - invalidParams.AddNested("VPC", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the disassociate -// request. -type DisassociateVPCFromHostedZoneOutput struct { - _ struct{} `type:"structure"` - - // A complex type that describes the changes made to your hosted zone. - // - // ChangeInfo is a required field - ChangeInfo *ChangeInfo `type:"structure" required:"true"` -} - -// String returns the string representation -func (s DisassociateVPCFromHostedZoneOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DisassociateVPCFromHostedZoneOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about a geo location. -type GeoLocation struct { - _ struct{} `type:"structure"` - - // The two-letter code for the continent. - // - // Valid values: AF | AN | AS | EU | OC | NA | SA - // - // Constraint: Specifying ContinentCode with either CountryCode or SubdivisionCode - // returns an InvalidInput error. - ContinentCode *string `min:"2" type:"string"` - - // The two-letter code for the country. - CountryCode *string `min:"1" type:"string"` - - // The code for the subdivision, for example, a state in the United States or - // a province in Canada. - SubdivisionCode *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s GeoLocation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GeoLocation) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GeoLocation) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GeoLocation"} - if s.ContinentCode != nil && len(*s.ContinentCode) < 2 { - invalidParams.Add(request.NewErrParamMinLen("ContinentCode", 2)) - } - if s.CountryCode != nil && len(*s.CountryCode) < 1 { - invalidParams.Add(request.NewErrParamMinLen("CountryCode", 1)) - } - if s.SubdivisionCode != nil && len(*s.SubdivisionCode) < 1 { - invalidParams.Add(request.NewErrParamMinLen("SubdivisionCode", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the codes and full continent, country, and subdivision -// names for the specified geolocation code. -type GeoLocationDetails struct { - _ struct{} `type:"structure"` - - // The two-letter code for the continent. - ContinentCode *string `min:"2" type:"string"` - - // The full name of the continent. - ContinentName *string `min:"1" type:"string"` - - // The two-letter code for the country. - CountryCode *string `min:"1" type:"string"` - - // The name of the country. - CountryName *string `min:"1" type:"string"` - - // The code for the subdivision, for example, a state in the United States or - // a province in Canada. - SubdivisionCode *string `min:"1" type:"string"` - - // The full name of the subdivision, for example, a state in the United States - // or a province in Canada. - SubdivisionName *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s GeoLocationDetails) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GeoLocationDetails) GoString() string { - return s.String() -} - -// The input for a GetChangeDetails request. -type GetChangeDetailsInput struct { - _ struct{} `deprecated:"true" type:"structure"` - - // The ID of the change batch. This is the value that you specified in the change - // ID parameter when you submitted the request. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetChangeDetailsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetChangeDetailsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetChangeDetailsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetChangeDetailsInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the ChangeBatchRecord element. -type GetChangeDetailsOutput struct { - _ struct{} `deprecated:"true" type:"structure"` - - // A complex type that contains information about the specified change batch, - // including the change batch ID, the status of the change, and the contained - // changes. - // - // ChangeBatchRecord is a required field - ChangeBatchRecord *ChangeBatchRecord `deprecated:"true" type:"structure" required:"true"` -} - -// String returns the string representation -func (s GetChangeDetailsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetChangeDetailsOutput) GoString() string { - return s.String() -} - -// The input for a GetChange request. -type GetChangeInput struct { - _ struct{} `type:"structure"` - - // The ID of the change batch request. The value that you specify here is the - // value that ChangeResourceRecordSets returned in the Id element when you submitted - // the request. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetChangeInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetChangeInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetChangeInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetChangeInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the ChangeInfo element. -type GetChangeOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about the specified change batch. - // - // ChangeInfo is a required field - ChangeInfo *ChangeInfo `type:"structure" required:"true"` -} - -// String returns the string representation -func (s GetChangeOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetChangeOutput) GoString() string { - return s.String() -} - -// Empty request. -type GetCheckerIpRangesInput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s GetCheckerIpRangesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCheckerIpRangesInput) GoString() string { - return s.String() -} - -// A complex type that contains the CheckerIpRanges element. -type GetCheckerIpRangesOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains sorted list of IP ranges in CIDR format for - // Amazon Route 53 health checkers. - // - // CheckerIpRanges is a required field - CheckerIpRanges []*string `type:"list" required:"true"` -} - -// String returns the string representation -func (s GetCheckerIpRangesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCheckerIpRangesOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the request to get a geo location. -type GetGeoLocationInput struct { - _ struct{} `type:"structure"` - - // Amazon Route 53 supports the following contintent codes: - // - // AF: Africa - // - // AN: Antarctica - // - // AS: Asia - // - // EU: Europe - // - // OC: Oceania - // - // NA: North America - // - // SA: South America - ContinentCode *string `location:"querystring" locationName:"continentcode" min:"2" type:"string"` - - // Amazon Route 53 uses the two-letter country codes that are specified in ISO - // standard 3166-1 alpha-2 (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). - CountryCode *string `location:"querystring" locationName:"countrycode" min:"1" type:"string"` - - // Amazon Route 53 uses the one- to three-letter subdivision codes that are - // specified in ISO standard 3166-1 alpha-2 (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). - // Amazon Route 53 doesn't support subdivision codes for all countries. If you - // specify SubdivisionCode, you must also specify CountryCode. - SubdivisionCode *string `location:"querystring" locationName:"subdivisioncode" min:"1" type:"string"` -} - -// String returns the string representation -func (s GetGeoLocationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetGeoLocationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetGeoLocationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetGeoLocationInput"} - if s.ContinentCode != nil && len(*s.ContinentCode) < 2 { - invalidParams.Add(request.NewErrParamMinLen("ContinentCode", 2)) - } - if s.CountryCode != nil && len(*s.CountryCode) < 1 { - invalidParams.Add(request.NewErrParamMinLen("CountryCode", 1)) - } - if s.SubdivisionCode != nil && len(*s.SubdivisionCode) < 1 { - invalidParams.Add(request.NewErrParamMinLen("SubdivisionCode", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the specified geolocation -// code. -type GetGeoLocationOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains the codes and full continent, country, and subdivision - // names for the specified geolocation code. - // - // GeoLocationDetails is a required field - GeoLocationDetails *GeoLocationDetails `type:"structure" required:"true"` -} - -// String returns the string representation -func (s GetGeoLocationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetGeoLocationOutput) GoString() string { - return s.String() -} - -// To retrieve a count of all your health checks, send a GET request to the -// /2013-04-01/healthcheckcount resource. -type GetHealthCheckCountInput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s GetHealthCheckCountInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckCountInput) GoString() string { - return s.String() -} - -// A complex type that contains the response to a healthcheckcount request. -type GetHealthCheckCountOutput struct { - _ struct{} `type:"structure"` - - // The number of health checks associated with the current AWS account. - // - // HealthCheckCount is a required field - HealthCheckCount *int64 `type:"long" required:"true"` -} - -// String returns the string representation -func (s GetHealthCheckCountOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckCountOutput) GoString() string { - return s.String() -} - -// This action gets information about a specified health check. -// -// Send a GET request to the /Amazon Route 53 API version/gethealthcheckrequest -// resource. -// -// For information about getting information about a health check using the -// Amazon Route 53 console, see Amazon Route 53 Health Checks and DNS Failover -// (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) -// in the Amazon Route 53 Developer Guide. -type GetHealthCheckInput struct { - _ struct{} `type:"structure"` - - // The identifier that Amazon Route 53 assigned to the health check when you - // created it. When you add or update a resource record set, you use this value - // to specify which health check to use. The value can be up to 64 characters - // long. - // - // HealthCheckId is a required field - HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetHealthCheckInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetHealthCheckInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetHealthCheckInput"} - if s.HealthCheckId == nil { - invalidParams.Add(request.NewErrParamRequired("HealthCheckId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// This action gets the reason that a specified health check failed most recently. -// -// To get the reason for the last failure of a health check, send a GET request -// to the /2013-04-01/healthcheck/health check ID/lastfailurereason resource. -// -// For information about viewing the last failure reason for a health check -// using the Amazon Route 53 console, see Viewing Health Check Status and the -// Reason for Health Check Failures (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/health-checks-monitor-view-status.html) -// in the Amazon Route 53 Developer Guide. -type GetHealthCheckLastFailureReasonInput struct { - _ struct{} `type:"structure"` - - // The ID for the health check for which you want the last failure reason. When - // you created the health check, CreateHealthCheck returned the ID in the response, - // in the HealthCheckId element. - // - // HealthCheckId is a required field - HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetHealthCheckLastFailureReasonInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckLastFailureReasonInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetHealthCheckLastFailureReasonInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetHealthCheckLastFailureReasonInput"} - if s.HealthCheckId == nil { - invalidParams.Add(request.NewErrParamRequired("HealthCheckId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response to a GetHealthCheckLastFailureReason -// request. -type GetHealthCheckLastFailureReasonOutput struct { - _ struct{} `type:"structure"` - - // A list that contains one Observation element for each Amazon Route 53 health - // checker that is reporting a last failure reason. - // - // HealthCheckObservations is a required field - HealthCheckObservations []*HealthCheckObservation `locationNameList:"HealthCheckObservation" type:"list" required:"true"` -} - -// String returns the string representation -func (s GetHealthCheckLastFailureReasonOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckLastFailureReasonOutput) GoString() string { - return s.String() -} - -// A complex type that contains the response to a GetHealthCheck request. -type GetHealthCheckOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about one health check that is associated - // with the current AWS account. - // - // HealthCheck is a required field - HealthCheck *HealthCheck `type:"structure" required:"true"` -} - -// String returns the string representation -func (s GetHealthCheckOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the request to get health -// check status for a health check. -type GetHealthCheckStatusInput struct { - _ struct{} `type:"structure"` - - // If you want Amazon Route 53 to return this resource record set in response - // to a DNS query only when a health check is passing, include the HealthCheckId - // element and specify the ID of the applicable health check. - // - // Amazon Route 53 determines whether a resource record set is healthy by periodically - // sending a request to the endpoint that is specified in the health check. - // If that endpoint returns an HTTP status code of 2xx or 3xx, the endpoint - // is healthy. If the endpoint returns an HTTP status code of 400 or greater, - // or if the endpoint doesn't respond for a certain amount of time, Amazon Route - // 53 considers the endpoint unhealthy and also considers the resource record - // set unhealthy. - // - // The HealthCheckId element is only useful when Amazon Route 53 is choosing - // between two or more resource record sets to respond to a DNS query, and you - // want Amazon Route 53 to base the choice in part on the status of a health - // check. Configuring health checks only makes sense in the following configurations: - // - // You're checking the health of the resource record sets in a weighted, - // latency, geolocation, or failover resource record set, and you specify health - // check IDs for all of the resource record sets. If the health check for one - // resource record set specifies an endpoint that is not healthy, Amazon Route - // 53 stops responding to queries using the value for that resource record set. - // - // You set EvaluateTargetHealth to true for the resource record sets in an - // alias, weighted alias, latency alias, geolocation alias, or failover alias - // resource record set, and you specify health check IDs for all of the resource - // record sets that are referenced by the alias resource record sets. For more - // information about this configuration, see EvaluateTargetHealth. - // - // Amazon Route 53 doesn't check the health of the endpoint specified in the - // resource record set, for example, the endpoint specified by the IP address - // in the Value element. When you add a HealthCheckId element to a resource - // record set, Amazon Route 53 checks the health of the endpoint that you specified - // in the health check. - // - // For geolocation resource record sets, if an endpoint is unhealthy, Amazon - // Route 53 looks for a resource record set for the larger, associated geographic - // region. For example, suppose you have resource record sets for a state in - // the United States, for the United States, for North America, and for all - // locations. If the endpoint for the state resource record set is unhealthy, - // Amazon Route 53 checks the resource record sets for the United States, for - // North America, and for all locations (a resource record set for which the - // value of CountryCode is *), in that order, until it finds a resource record - // set for which the endpoint is healthy. - // - // If your health checks specify the endpoint only by domain name, we recommend - // that you create a separate health check for each endpoint. For example, create - // a health check for each HTTP server that is serving content for www.example.com. - // For the value of FullyQualifiedDomainName, specify the domain name of the - // server (such as us-east-1-www.example.com), not the name of the resource - // record sets (example.com). - // - // In this configuration, if you create a health check for which the value - // of FullyQualifiedDomainName matches the name of the resource record sets - // and then associate the health check with those resource record sets, health - // check results will be unpredictable. - // - // HealthCheckId is a required field - HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetHealthCheckStatusInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckStatusInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetHealthCheckStatusInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetHealthCheckStatusInput"} - if s.HealthCheckId == nil { - invalidParams.Add(request.NewErrParamRequired("HealthCheckId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response to a GetHealthCheck request. -type GetHealthCheckStatusOutput struct { - _ struct{} `type:"structure"` - - // A list that contains one HealthCheckObservation element for each Amazon Route - // 53 health checker that is reporting a status about the health check endpoint. - // - // HealthCheckObservations is a required field - HealthCheckObservations []*HealthCheckObservation `locationNameList:"HealthCheckObservation" type:"list" required:"true"` -} - -// String returns the string representation -func (s GetHealthCheckStatusOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHealthCheckStatusOutput) GoString() string { - return s.String() -} - -// To retrieve a count of all your hosted zones, send a GET request to the /2013-04-01/hostedzonecount -// resource. -type GetHostedZoneCountInput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s GetHostedZoneCountInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHostedZoneCountInput) GoString() string { - return s.String() -} - -// A complex type that contains the response to a hostedzonecount request. -type GetHostedZoneCountOutput struct { - _ struct{} `type:"structure"` - - // The total number of public and private hosted zones associated with the current - // AWS account. - // - // HostedZoneCount is a required field - HostedZoneCount *int64 `type:"long" required:"true"` -} - -// String returns the string representation -func (s GetHostedZoneCountOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHostedZoneCountOutput) GoString() string { - return s.String() -} - -// The input for a GetHostedZone request. -type GetHostedZoneInput struct { - _ struct{} `type:"structure"` - - // The ID of the hosted zone for which you want to get a list of the name servers - // in the delegation set. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetHostedZoneInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHostedZoneInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetHostedZoneInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetHostedZoneInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing the response information for the hosted zone. -type GetHostedZoneOutput struct { - _ struct{} `type:"structure"` - - // A complex type that describes the name servers for this hosted zone. - DelegationSet *DelegationSet `type:"structure"` - - // A complex type that contains general information about the hosted zone. - // - // HostedZone is a required field - HostedZone *HostedZone `type:"structure" required:"true"` - - // A complex type that contains information about VPCs associated with the specified - // hosted zone. - VPCs []*VPC `locationNameList:"VPC" min:"1" type:"list"` -} - -// String returns the string representation -func (s GetHostedZoneOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetHostedZoneOutput) GoString() string { - return s.String() -} - -// The input for a GetReusableDelegationSet request. -type GetReusableDelegationSetInput struct { - _ struct{} `type:"structure"` - - // The ID of the reusable delegation set for which you want to get a list of - // the name server. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetReusableDelegationSetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetReusableDelegationSetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetReusableDelegationSetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetReusableDelegationSetInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response to the GetReusableDelegationSet -// request. -type GetReusableDelegationSetOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about the reusable delegation set. - // - // DelegationSet is a required field - DelegationSet *DelegationSet `type:"structure" required:"true"` -} - -// String returns the string representation -func (s GetReusableDelegationSetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetReusableDelegationSetOutput) GoString() string { - return s.String() -} - -// Gets information about a specific traffic policy version. To get the information, -// send a GET request to the /2013-04-01/trafficpolicy resource, and specify -// the ID and the version of the traffic policy. -type GetTrafficPolicyInput struct { - _ struct{} `type:"structure"` - - // The ID of the traffic policy that you want to get information about. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The version number of the traffic policy that you want to get information - // about. - // - // Version is a required field - Version *int64 `location:"uri" locationName:"Version" min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s GetTrafficPolicyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetTrafficPolicyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetTrafficPolicyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetTrafficPolicyInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.Version == nil { - invalidParams.Add(request.NewErrParamRequired("Version")) - } - if s.Version != nil && *s.Version < 1 { - invalidParams.Add(request.NewErrParamMinValue("Version", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// To retrieve a count of all your traffic policy instances, send a GET request -// to the /2013-04-01/trafficpolicyinstancecount resource. -type GetTrafficPolicyInstanceCountInput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s GetTrafficPolicyInstanceCountInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetTrafficPolicyInstanceCountInput) GoString() string { - return s.String() -} - -// A complex type that contains information about the resource record sets that -// Amazon Route 53 created based on a specified traffic policy. -type GetTrafficPolicyInstanceCountOutput struct { - _ struct{} `type:"structure"` - - // The number of traffic policy instances that are associated with the current - // AWS account. - // - // TrafficPolicyInstanceCount is a required field - TrafficPolicyInstanceCount *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s GetTrafficPolicyInstanceCountOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetTrafficPolicyInstanceCountOutput) GoString() string { - return s.String() -} - -// Gets information about a specified traffic policy instance. -// -// To get information about a traffic policy instance, send a GET request to -// the /Amazon Route 53 API version/trafficpolicyinstance/Id resource. -type GetTrafficPolicyInstanceInput struct { - _ struct{} `type:"structure"` - - // The ID of the traffic policy instance that you want to get information about. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetTrafficPolicyInstanceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetTrafficPolicyInstanceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetTrafficPolicyInstanceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetTrafficPolicyInstanceInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the resource record sets that -// Amazon Route 53 created based on a specified traffic policy. -type GetTrafficPolicyInstanceOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains settings for the traffic policy instance. - // - // TrafficPolicyInstance is a required field - TrafficPolicyInstance *TrafficPolicyInstance `type:"structure" required:"true"` -} - -// String returns the string representation -func (s GetTrafficPolicyInstanceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetTrafficPolicyInstanceOutput) GoString() string { - return s.String() -} - -// A complex type that contains the response information for the request. -type GetTrafficPolicyOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains settings for the specified traffic policy. - // - // TrafficPolicy is a required field - TrafficPolicy *TrafficPolicy `type:"structure" required:"true"` -} - -// String returns the string representation -func (s GetTrafficPolicyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetTrafficPolicyOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about one health check that is associated -// with the current AWS account. -type HealthCheck struct { - _ struct{} `type:"structure"` - - // A unique string that you specified when you created the health check. - // - // CallerReference is a required field - CallerReference *string `min:"1" type:"string" required:"true"` - - // A complex type that contains information about the CloudWatch alarm that - // Amazon Route 53 is monitoring for this health check. - CloudWatchAlarmConfiguration *CloudWatchAlarmConfiguration `type:"structure"` - - // A complex type that contains detailed information about one health check. - // - // HealthCheckConfig is a required field - HealthCheckConfig *HealthCheckConfig `type:"structure" required:"true"` - - // The version of the health check. You can optionally pass this value in a - // call to UpdateHealthCheck to prevent overwriting another change to the health - // check. - // - // HealthCheckVersion is a required field - HealthCheckVersion *int64 `min:"1" type:"long" required:"true"` - - // The identifier that Amazon Route 53assigned to the health check when you - // created it. When you add or update a resource record set, you use this value - // to specify which health check to use. The value can be up to 64 characters - // long. - // - // Id is a required field - Id *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s HealthCheck) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HealthCheck) GoString() string { - return s.String() -} - -// A complex type that contains information about the health check. -type HealthCheckConfig struct { - _ struct{} `type:"structure"` - - // A complex type that identifies the CloudWatch alarm that you want Amazon - // Route 53 health checkers to use to determine whether this health check is - // healthy. - AlarmIdentifier *AlarmIdentifier `type:"structure"` - - // (CALCULATED Health Checks Only) A complex type that contains one ChildHealthCheck - // element for each health check that you want to associate with a CALCULATED - // health check. - ChildHealthChecks []*string `locationNameList:"ChildHealthCheck" type:"list"` - - // Specify whether you want Amazon Route 53 to send the value of FullyQualifiedDomainName - // to the endpoint in the client_hello message during TLS negotiation. This - // allows the endpoint to respond to HTTPS health check requests with the applicable - // SSL/TLS certificate. - // - // Some endpoints require that HTTPS requests include the host name in the - // client_hello message. If you don't enable SNI, the status of the health check - // will be SSL alert handshake_failure. A health check can also have that status - // for other reasons. If SNI is enabled and you're still getting the error, - // check the SSL/TLS configuration on your endpoint and confirm that your certificate - // is valid. - // - // The SSL/TLS certificate on your endpoint includes a domain name in the Common - // Name field and possibly several more in the Subject Alternative Names field. - // One of the domain names in the certificate should match the value that you - // specify for FullyQualifiedDomainName. If the endpoint responds to the client_hello - // message with a certificate that does not include the domain name that you - // specified in FullyQualifiedDomainName, a health checker will retry the handshake. - // In the second attempt, the health checker will omit FullyQualifiedDomainName - // from the client_hello message. - EnableSNI *bool `type:"boolean"` - - // The number of consecutive health checks that an endpoint must pass or fail - // for Amazon Route 53 to change the current status of the endpoint from unhealthy - // to healthy or vice versa. For more information, see How Amazon Route 53 Determines - // Whether an Endpoint Is Healthy (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) - // in the Amazon Route 53 Developer Guide. - FailureThreshold *int64 `min:"1" type:"integer"` - - // Amazon Route 53 behavior depends on whether you specify a value for IPAddress. - // - // If you specify IPAddress: - // - // The value that you want Amazon Route 53 to pass in the Host header in all - // health checks except TCP health checks. This is typically the fully qualified - // DNS name of the website that you are attempting to health check. When Amazon - // Route 53 checks the health of an endpoint, here is how it constructs the - // Host header: - // - // If you specify a value of 80 for Port and HTTP or HTTP_STR_MATCH for Type, - // Amazon Route 53 passes the value of FullyQualifiedDomainName to the endpoint - // in the Host header. - // - // If you specify a value of 443 for Port and HTTPS or HTTPS_STR_MATCH for - // Type, Amazon Route 53 passes the value of FullyQualifiedDomainName to the - // endpoint in the Host header. - // - // If you specify another value for Port and any value except TCP for Type, - // Amazon Route 53 passes FullyQualifiedDomainName:Port to the endpoint in the - // Host header. - // - // If you don't specify a value for FullyQualifiedDomainName, Amazon Route - // 53 substitutes the value of IPAddress in the Host header in each of the preceding - // cases. - // - // If you don't specify IPAddress: - // - // If you don't specify a value for IPAddress, Amazon Route 53 sends a DNS - // request to the domain that you specify in FullyQualifiedDomainName at the - // interval you specify in RequestInterval. Using an IP address that DNS returns, - // Amazon Route 53 then checks the health of the endpoint. - // - // If you want to check the health of weighted, latency, or failover resource - // record sets and you choose to specify the endpoint only by FullyQualifiedDomainName, - // we recommend that you create a separate health check for each endpoint. For - // example, create a health check for each HTTP server that is serving content - // for www.example.com. For the value of FullyQualifiedDomainName, specify the - // domain name of the server (such as us-east-1-www.example.com), not the name - // of the resource record sets (www.example.com). - // - // In this configuration, if you create a health check for which the value - // of FullyQualifiedDomainName matches the name of the resource record sets - // and you then associate the health check with those resource record sets, - // health check results will be unpredictable. - // - // In addition, if the value that you specify for Type is HTTP, HTTPS, HTTP_STR_MATCH, - // or HTTPS_STR_MATCH, Amazon Route 53 passes the value of FullyQualifiedDomainName - // in the Host header, as it does when you specify a value for IPAddress. If - // the value of Type is TCP, Amazon Route 53 doesn't pass a Host header. - FullyQualifiedDomainName *string `type:"string"` - - // The number of child health checks that are associated with a CALCULATED health - // that Amazon Route 53 must consider healthy for the CALCULATED health check - // to be considered healthy. To specify the child health checks that you want - // to associate with a CALCULATED health check, use the HealthCheckConfig$ChildHealthChecks - // and HealthCheckConfig$ChildHealthChecks elements. - // - // Note the following: - // - // If you specify a number greater than the number of child health checks, - // Amazon Route 53 always considers this health check to be unhealthy. - // - // If you specify 0, Amazon Route 53 always considers this health check to - // be healthy. - HealthThreshold *int64 `type:"integer"` - - // The IPv4 IP address of the endpoint on which you want Amazon Route 53 to - // perform health checks. If you don't specify a value for IPAddress, Amazon - // Route 53 sends a DNS request to resolve the domain name that you specify - // in FullyQualifiedDomainName at the interval that you specify in RequestInterval. - // Using an IP address that DNS returns, Amazon Route 53 then checks the health - // of the endpoint. - // - // If the endpoint is an Amazon EC2 instance, we recommend that you create - // an Elastic IP address, associate it with your Amazon EC2 instance, and specify - // the Elastic IP address for IPAddress. This ensures that the IP address of - // your instance will never change. - // - // For more information, see HealthCheckConfig$FullyQualifiedDomainName. - // - // Contraints: Amazon Route 53 cannot check the health of endpoints for which - // the IP address is in local, private, non-routable, or multicast ranges. For - // more information about IP addresses for which you cannot create health checks, - // see RFC 5735, Special Use IPv4 Addresses (https://tools.ietf.org/html/rfc5735) - // and RFC 6598, IANA-Reserved IPv4 Prefix for Shared Address Space (https://tools.ietf.org/html/rfc6598). - // - // When the value of Type is CALCULATED or CLOUDWATCH_METRIC, omit IPAddress. - IPAddress *string `type:"string"` - - // When CloudWatch has insufficient data about the metric to determine the alarm - // state, the status that you want Amazon Route 53 to assign to the health check: - // - // Healthy: Amazon Route 53 considers the health check to be healthy. - // - // Unhealthy: Amazon Route 53 considers the health check to be unhealthy. - // - // LastKnownStatus: Amazon Route 53uses the status of the health check from - // the last time CloudWatch had sufficient data to determine the alarm state. - // For new health checks that have no last known status, the default status - // for the health check is healthy. - InsufficientDataHealthStatus *string `type:"string" enum:"InsufficientDataHealthStatus"` - - // Specify whether you want Amazon Route 53 to invert the status of a health - // check, for example, to consider a health check unhealthy when it otherwise - // would be considered healthy. - Inverted *bool `type:"boolean"` - - // Specify whether you want Amazon Route 53 to measure the latency between health - // checkers in multiple AWS regions and your endpoint, and to display CloudWatch - // latency graphs on the Health Checks page in the Amazon Route 53 console. - // - // You can't change the value of MeasureLatency after you create a health - // check. - MeasureLatency *bool `type:"boolean"` - - // The port on the endpoint on which you want Amazon Route 53 to perform health - // checks. Specify a value for Port only when you specify a value for IPAddress. - Port *int64 `min:"1" type:"integer"` - - // A complex type that contains one Region element for each region from which - // you want Amazon Route 53 health checkers to check the specified endpoint. - Regions []*string `locationNameList:"Region" min:"1" type:"list"` - - // The number of seconds between the time that Amazon Route 53 gets a response - // from your endpoint and the time that it sends the next health-check request. - // Each Amazon Route 53 health checker makes requests at this interval. - // - // You can't change the value of RequestInterval after you create a health - // check. - RequestInterval *int64 `min:"10" type:"integer"` - - // The path, if any, that you want Amazon Route 53 to request when performing - // health checks. The path can be any value for which your endpoint will return - // an HTTP status code of 2xx or 3xx when the endpoint is healthy, for example, - // the file /docs/route53-health-check.html. - ResourcePath *string `type:"string"` - - // If the value of Type is HTTP_STR_MATCH or HTTP_STR_MATCH, the string that - // you want Amazon Route 53 to search for in the response body from the specified - // resource. If the string appears in the response body, Amazon Route 53 considers - // the resource healthy. - // - // Amazon Route 53 considers case when searching for SearchString in the response - // body. - SearchString *string `type:"string"` - - // The type of health check that you want to create, which indicates how Amazon - // Route 53 determines whether an endpoint is healthy. - // - // You can't change the value of Type after you create a health check. - // - // You can create the following types of health checks: - // - // HTTP: Amazon Route 53 tries to establish a TCP connection. If successful, - // Amazon Route 53 submits an HTTP request and waits for an HTTP status code - // of 200 or greater and less than 400. - // - // HTTPS: Amazon Route 53 tries to establish a TCP connection. If successful, - // Amazon Route 53 submits an HTTPS request and waits for an HTTP status code - // of 200 or greater and less than 400. - // - // If you specify HTTPS for the value of Type, the endpoint must support TLS - // v1.0 or later. - // - // HTTP_STR_MATCH: Amazon Route 53 tries to establish a TCP connection. - // If successful, Amazon Route 53 submits an HTTP request and searches the first - // 5,120 bytes of the response body for the string that you specify in SearchString. - // - // HTTPS_STR_MATCH: Amazon Route 53 tries to establish a TCP connection. - // If successful, Amazon Route 53 submits an HTTPS request and searches the - // first 5,120 bytes of the response body for the string that you specify in - // SearchString. - // - // TCP: Amazon Route 53 tries to establish a TCP connection. - // - // CLOUDWATCH_METRIC: The health check is associated with a CloudWatch alarm. - // If the state of the alarm is OK, the health check is considered healthy. - // If the state is ALARM, the health check is considered unhealthy. If CloudWatch - // doesn't have sufficient data to determine whether the state is OK or ALARM, - // the health check status depends on the setting for InsufficientDataHealthStatus: - // Healthy, Unhealthy, or LastKnownStatus. - // - // CALCULATED: For health checks that monitor the status of other health - // checks, Amazon Route 53 adds up the number of health checks that Amazon Route - // 53 health checkers consider to be healthy and compares that number with the - // value of HealthThreshold. - // - // For more information about how Amazon Route 53 determines whether an endpoint - // is healthy, see the introduction to this topic. - // - // Type is a required field - Type *string `type:"string" required:"true" enum:"HealthCheckType"` -} - -// String returns the string representation -func (s HealthCheckConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HealthCheckConfig) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *HealthCheckConfig) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "HealthCheckConfig"} - if s.FailureThreshold != nil && *s.FailureThreshold < 1 { - invalidParams.Add(request.NewErrParamMinValue("FailureThreshold", 1)) - } - if s.Port != nil && *s.Port < 1 { - invalidParams.Add(request.NewErrParamMinValue("Port", 1)) - } - if s.Regions != nil && len(s.Regions) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Regions", 1)) - } - if s.RequestInterval != nil && *s.RequestInterval < 10 { - invalidParams.Add(request.NewErrParamMinValue("RequestInterval", 10)) - } - if s.Type == nil { - invalidParams.Add(request.NewErrParamRequired("Type")) - } - if s.AlarmIdentifier != nil { - if err := s.AlarmIdentifier.Validate(); err != nil { - invalidParams.AddNested("AlarmIdentifier", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the last failure reason as reported by one Amazon -// Route 53 health checker. -type HealthCheckObservation struct { - _ struct{} `type:"structure"` - - // The IP address of the Amazon Route 53 health checker that provided the failure - // reason in StatusReport. - IPAddress *string `type:"string"` - - // The region of the Amazon Route 53 health checker that provided the status - // in StatusReport. - Region *string `min:"1" type:"string" enum:"HealthCheckRegion"` - - // A complex type that contains the last failure reason as reported by one Amazon - // Route 53 health checker and the time of the failed health check. - StatusReport *StatusReport `type:"structure"` -} - -// String returns the string representation -func (s HealthCheckObservation) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HealthCheckObservation) GoString() string { - return s.String() -} - -// A complex type that contains general information about the hosted zone. -type HostedZone struct { - _ struct{} `type:"structure"` - - // The value that you specified for CallerReference when you created the hosted - // zone. - // - // CallerReference is a required field - CallerReference *string `min:"1" type:"string" required:"true"` - - // A complex type that includes the Comment and PrivateZone elements. If you - // omitted the HostedZoneConfig and Comment elements from the request, the Config - // and Comment elements don't appear in the response. - Config *HostedZoneConfig `type:"structure"` - - // The ID that Amazon Route 53 assigned to the hosted zone when you created - // it. - // - // Id is a required field - Id *string `type:"string" required:"true"` - - // The name of the domain. For public hosted zones, this is the name that you - // have registered with your DNS registrar. - // - // For information about how to specify characters other than a-z, 0-9, and - // - (hyphen) and how to specify internationalized domain names, see CreateHostedZone. - // - // Name is a required field - Name *string `type:"string" required:"true"` - - // The number of resource record sets in the hosted zone. - ResourceRecordSetCount *int64 `type:"long"` -} - -// String returns the string representation -func (s HostedZone) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HostedZone) GoString() string { - return s.String() -} - -// A complex type that contains an optional comment about your hosted zone. -// If you don't want to specify a comment, omit both the HostedZoneConfig and -// Comment elements. -type HostedZoneConfig struct { - _ struct{} `type:"structure"` - - // Any comments that you want to include about the hosted zone. - Comment *string `type:"string"` - - // A value that indicates whether this is a private hosted zone. - PrivateZone *bool `type:"boolean"` -} - -// String returns the string representation -func (s HostedZoneConfig) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HostedZoneConfig) GoString() string { - return s.String() -} - -// The input for a ListChangeBatchesByHostedZone request. -type ListChangeBatchesByHostedZoneInput struct { - _ struct{} `deprecated:"true" type:"structure"` - - // The end of the time period you want to see changes for. - // - // EndDate is a required field - EndDate *string `location:"querystring" locationName:"endDate" deprecated:"true" type:"string" required:"true"` - - // The ID of the hosted zone that you want to see changes for. - // - // HostedZoneId is a required field - HostedZoneId *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The page marker. - Marker *string `location:"querystring" locationName:"marker" type:"string"` - - // The maximum number of items on a page. - MaxItems *string `location:"querystring" locationName:"maxItems" type:"string"` - - // The start of the time period you want to see changes for. - // - // StartDate is a required field - StartDate *string `location:"querystring" locationName:"startDate" deprecated:"true" type:"string" required:"true"` -} - -// String returns the string representation -func (s ListChangeBatchesByHostedZoneInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListChangeBatchesByHostedZoneInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListChangeBatchesByHostedZoneInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListChangeBatchesByHostedZoneInput"} - if s.EndDate == nil { - invalidParams.Add(request.NewErrParamRequired("EndDate")) - } - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.StartDate == nil { - invalidParams.Add(request.NewErrParamRequired("StartDate")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing the response information for the request. -type ListChangeBatchesByHostedZoneOutput struct { - _ struct{} `deprecated:"true" type:"structure"` - - // The change batches within the given hosted zone and time period. - // - // ChangeBatchRecords is a required field - ChangeBatchRecords []*ChangeBatchRecord `locationNameList:"ChangeBatchRecord" min:"1" deprecated:"true" type:"list" required:"true"` - - // A flag that indicates if there are more change batches to list. - IsTruncated *bool `type:"boolean"` - - // For the second and subsequent calls to ListHostedZones, Marker is the value - // that you specified for the marker parameter in the request that produced - // the current response. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value that you specified for the maxitems parameter in the call to ListHostedZones - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // The next page marker. - NextMarker *string `type:"string"` -} - -// String returns the string representation -func (s ListChangeBatchesByHostedZoneOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListChangeBatchesByHostedZoneOutput) GoString() string { - return s.String() -} - -// The input for a ListChangeBatchesByRRSet request. -type ListChangeBatchesByRRSetInput struct { - _ struct{} `deprecated:"true" type:"structure"` - - // The end of the time period you want to see changes for. - // - // EndDate is a required field - EndDate *string `location:"querystring" locationName:"endDate" deprecated:"true" type:"string" required:"true"` - - // The ID of the hosted zone that you want to see changes for. - // - // HostedZoneId is a required field - HostedZoneId *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The page marker. - Marker *string `location:"querystring" locationName:"marker" type:"string"` - - // The maximum number of items on a page. - MaxItems *string `location:"querystring" locationName:"maxItems" type:"string"` - - // The name of the RRSet that you want to see changes for. - // - // Name is a required field - Name *string `location:"querystring" locationName:"rrSet_name" type:"string" required:"true"` - - // The identifier of the RRSet that you want to see changes for. - SetIdentifier *string `location:"querystring" locationName:"identifier" min:"1" type:"string"` - - // The start of the time period you want to see changes for. - // - // StartDate is a required field - StartDate *string `location:"querystring" locationName:"startDate" deprecated:"true" type:"string" required:"true"` - - // The type of the RRSet that you want to see changes for. - // - // Type is a required field - Type *string `location:"querystring" locationName:"type" type:"string" required:"true" enum:"RRType"` -} - -// String returns the string representation -func (s ListChangeBatchesByRRSetInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListChangeBatchesByRRSetInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListChangeBatchesByRRSetInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListChangeBatchesByRRSetInput"} - if s.EndDate == nil { - invalidParams.Add(request.NewErrParamRequired("EndDate")) - } - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.SetIdentifier != nil && len(*s.SetIdentifier) < 1 { - invalidParams.Add(request.NewErrParamMinLen("SetIdentifier", 1)) - } - if s.StartDate == nil { - invalidParams.Add(request.NewErrParamRequired("StartDate")) - } - if s.Type == nil { - invalidParams.Add(request.NewErrParamRequired("Type")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// The input for a ListChangeBatchesByRRSet request. -type ListChangeBatchesByRRSetOutput struct { - _ struct{} `deprecated:"true" type:"structure"` - - // The change batches within the given hosted zone and time period. - // - // ChangeBatchRecords is a required field - ChangeBatchRecords []*ChangeBatchRecord `locationNameList:"ChangeBatchRecord" min:"1" deprecated:"true" type:"list" required:"true"` - - // A flag that indicates if there are more change batches to list. - IsTruncated *bool `type:"boolean"` - - // The page marker. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The maximum number of items on a page. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // The next page marker. - NextMarker *string `type:"string"` -} - -// String returns the string representation -func (s ListChangeBatchesByRRSetOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListChangeBatchesByRRSetOutput) GoString() string { - return s.String() -} - -// To get a list of geographic locations that Amazon Route 53 supports for geolocation, -// send a GET request to the /Amazon Route 53 API version/geolocations resource. -// The response to this request includes a GeoLocationDetails element for each -// location that Amazon Route 53 supports. -// -// Countries are listed first, and continents are listed last. If Amazon Route -// 53 supports subdivisions for a country (for example, states or provinces), -// the subdivisions for that country are listed in alphabetical order immediately -// after the corresponding country. -type ListGeoLocationsInput struct { - _ struct{} `type:"structure"` - - // (Optional) The maximum number of geolocations to be included in the response - // body for this request. If more than MaxItems geolocations remain to be listed, - // then the value of the IsTruncated element in the response is true. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - - // The code for the continent with which you want to start listing locations - // that Amazon Route 53 supports for geolocation. If Amazon Route 53 has already - // returned a page or more of results, if IsTruncated is true, and if NextContinentCode - // from the previous response has a value, enter that value in StartContinentCode - // to return the next page of results. - // - // Include StartContinentCode only if you want to list continents. Don't include - // StartContinentCode when you're listing countries or countries with their - // subdivisions. - StartContinentCode *string `location:"querystring" locationName:"startcontinentcode" min:"2" type:"string"` - - // The code for the country with which you want to start listing locations that - // Amazon Route 53 supports for geolocation. If Amazon Route 53 has already - // returned a page or more of results, if IsTruncated is true, and if NextCountryCode - // from the previous response has a value, enter that value in StartCountryCode - // to return the next page of results. - // - // Amazon Route 53 uses the two-letter country codes that are specified in - // ISO standard 3166-1 alpha-2 (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). - StartCountryCode *string `location:"querystring" locationName:"startcountrycode" min:"1" type:"string"` - - // The code for the subdivision (for example, state or province) with which - // you want to start listing locations that Amazon Route 53 supports for geolocation. - // If Amazon Route 53 has already returned a page or more of results, if IsTruncated - // is true, and if NextSubdivisionCode from the previous response has a value, - // enter that value in StartSubdivisionCode to return the next page of results. - // - // To list subdivisions of a country, you must include both StartCountryCode - // and StartSubdivisionCode. - StartSubdivisionCode *string `location:"querystring" locationName:"startsubdivisioncode" min:"1" type:"string"` -} - -// String returns the string representation -func (s ListGeoLocationsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListGeoLocationsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListGeoLocationsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListGeoLocationsInput"} - if s.StartContinentCode != nil && len(*s.StartContinentCode) < 2 { - invalidParams.Add(request.NewErrParamMinLen("StartContinentCode", 2)) - } - if s.StartCountryCode != nil && len(*s.StartCountryCode) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StartCountryCode", 1)) - } - if s.StartSubdivisionCode != nil && len(*s.StartSubdivisionCode) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StartSubdivisionCode", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing the response information for the request. -type ListGeoLocationsOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains one GeoLocationDetails element for each location - // that Amazon Route 53 supports for geolocation. - // - // GeoLocationDetailsList is a required field - GeoLocationDetailsList []*GeoLocationDetails `locationNameList:"GeoLocationDetails" type:"list" required:"true"` - - // A value that indicates whether more locations remain to be listed after the - // last location in this response. If so, the value of IsTruncated is true. - // To get more values, submit another request and include the values of NextContinentCode, - // NextCountryCode, and NextSubdivisionCode in the StartContinentCode, StartCountryCode, - // and StartSubdivisionCode, as applicable. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The value that you specified for MaxItems in the request. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, you can make a follow-up request to display more - // locations. Enter the value of NextContinentCode in the StartContinentCode - // parameter in another GET ListGeoLocations request. - NextContinentCode *string `min:"2" type:"string"` - - // If IsTruncated is true, you can make a follow-up request to display more - // locations. Enter the value of NextCountryCode in the StartCountryCode parameter - // in another GET ListGeoLocations request. - NextCountryCode *string `min:"1" type:"string"` - - // If IsTruncated is true, you can make a follow-up request to display more - // locations. Enter the value of NextSubdivisionCode in the StartSubdivisionCode - // parameter in another GET ListGeoLocations request. - NextSubdivisionCode *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s ListGeoLocationsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListGeoLocationsOutput) GoString() string { - return s.String() -} - -// To retrieve a list of your health checks, send a GET request to the /2013-04-01/healthcheck -// resource. The response to this request includes a HealthChecks element with -// zero or more HealthCheck child elements. By default, the list of health checks -// is displayed on a single page. You can control the length of the page that -// is displayed by using the MaxItems parameter. You can use the Marker parameter -// to control the health check that the list begins with. -// -// Amazon Route 53 returns a maximum of 100 items. If you set MaxItems to -// a value greater than 100, Amazon Route 53 returns only the first 100. -type ListHealthChecksInput struct { - _ struct{} `type:"structure"` - - // If the response to a ListHealthChecks is more than one page, marker is the - // health check ID for the first health check on the next page of results. For - // more information, see ListHealthChecksResponse$MaxItems. - Marker *string `location:"querystring" locationName:"marker" type:"string"` - - // The maximum number of HealthCheck elements you want ListHealthChecks to return - // on each page of the response body. If the AWS account includes more HealthCheck - // elements than the value of maxitems, the response is broken into pages. Each - // page contains the number of HealthCheck elements specified by maxitems. - // - // For example, suppose you specify 10 for maxitems and the current AWS account - // has 51 health checks. In the response, ListHealthChecks sets ListHealthChecksResponse$IsTruncated - // to true and includes the ListHealthChecksResponse$NextMarker element. To - // access the second and subsequent pages, you resend the GET ListHealthChecks - // request, add the ListHealthChecksResponse$Marker parameter to the request, - // and specify the value of the ListHealthChecksResponse$NextMarker element - // from the previous response. On the last (sixth) page of the response, which - // contains only one HealthCheck element: - // - // The value of ListHealthChecksResponse$IsTruncated is false. - // - // ListHealthChecksResponse$NextMarker is omitted. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` -} - -// String returns the string representation -func (s ListHealthChecksInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListHealthChecksInput) GoString() string { - return s.String() -} - -// A complex type that contains the response to a ListHealthChecks request. -type ListHealthChecksOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains one HealthCheck element for each health check - // that is associated with the current AWS account. - // - // HealthChecks is a required field - HealthChecks []*HealthCheck `locationNameList:"HealthCheck" type:"list" required:"true"` - - // A flag that indicates whether there are more health checks to be listed. - // If the response was truncated, you can get the next group of maxitems health - // checks by calling ListHealthChecks again and specifying the value of the - // NextMarker element in the marker parameter. - // - // Valid Values: true | false - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // For the second and subsequent calls to ListHealthChecks, Marker is the value - // that you specified for the marker parameter in the previous request. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value that you specified for the maxitems parameter in the call to ListHealthChecks - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, the value of NextMarker identifies the first health - // check in the next group of maxitems health checks. Call ListHealthChecks - // again and specify the value of NextMarker in the marker parameter. - NextMarker *string `type:"string"` -} - -// String returns the string representation -func (s ListHealthChecksOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListHealthChecksOutput) GoString() string { - return s.String() -} - -// To retrieve a list of your public and private hosted zones in ASCII order -// by domain name, send a GET request to the /Amazon Route 53 API version/hostedzonesbyname -// resource. The response to this request includes a HostedZone child element -// for each hosted zone that was created by the current AWS account. ListHostedZonesByName -// sorts hosted zones by name with the labels reversed, for example: -// -// com.example.www. -// -// Note the trailing dot, which can change the sort order in some circumstances. -// -// If the domain name includes escape characters or Punycode, ListHostedZonesByName -// alphabetizes the domain name using the escaped or Punycoded value, which -// is the format that Amazon Route 53 saves in its database. For example, to -// create a hosted zone for exämple.com, you specify ex\344mple.com for the -// domain name. ListHostedZonesByName alphabetizes it as: com.ex\344mple. The -// labels are reversed, and it's alphabetized using the escaped value. For more -// information about valid domain name formats, including internationalized -// domain names, see DNS Domain Name Format (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html) -// in the Amazon Route 53 Developer Guide. -// -// Amazon Route 53 returns up to 100 items in each response. If you have a -// lot of hosted zones, you can use the MaxItems parameter to list them in groups -// of up to 100. The response includes values that help you navigate from one -// group of MaxItems hosted zones to the next: -// -// The DNSName and HostedZoneId elements in the response contain the values, -// if any, that you specified for the dnsname and hostedzoneid parameters in -// the request that produced the current response. -// -// The MaxItems element in the response contains the value, if any, that -// you specified for the maxitems parameter in the request that produced the -// current response. -// -// If the value of IsTruncated in the response is true, there are more hosted -// zones associated with the current Amazon Route 53 account. -// -// If IsTruncated is false, this response includes the last hosted zone that -// is associated with the current account. The NextDNSName element and NextHostedZoneId -// elements are omitted from the response. -// -// The NextDNSName and NextHostedZoneId elements in the response contain -// the domain name and the hosted zone ID of the next hosted zone that is associated -// with the current AWS account. If you want to list more hosted zones, make -// another call to ListHostedZonesByName, and specify the value of NextDNSName -// and NextHostedZoneId in the dnsname and hostedzoneid parameters, respectively. -type ListHostedZonesByNameInput struct { - _ struct{} `type:"structure"` - - // (Optional) For your first request to ListHostedZonesByName, include the dnsname - // parameter only if you want to specify the name of the first hosted zone in - // the response. If you don't include the dnsname parameter, Amazon Route 53 - // returns all of the hosted zones that were created by the current AWS account, - // in ASCII order. For subsequent requests, include both dnsname and hostedzoneid - // parameters. For dnsname, specify the value of NextDNSName from the previous - // response. - DNSName *string `location:"querystring" locationName:"dnsname" type:"string"` - - // (Optional) For your first request to ListHostedZonesByName, do not include - // the hostedzoneid parameter. - // - // If you have more hosted zones than the value of maxitems, ListHostedZonesByName - // returns only the first maxitems hosted zones. To get the next group of maxitems - // hosted zones, submit another request to ListHostedZonesByName and include - // both dnsname and hostedzoneid parameters. For the value of hostedzoneid, - // specify the value of the NextHostedZoneId element from the previous response. - HostedZoneId *string `location:"querystring" locationName:"hostedzoneid" type:"string"` - - // The maximum number of hosted zones to be included in the response body for - // this request. If you have more than maxitems hosted zones, then the value - // of the IsTruncated element in the response is true, and the values of NextDNSName - // and NextHostedZoneId specify the first hosted zone in the next group of maxitems - // hosted zones. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` -} - -// String returns the string representation -func (s ListHostedZonesByNameInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListHostedZonesByNameInput) GoString() string { - return s.String() -} - -// A complex type that contains the response information for the request. -type ListHostedZonesByNameOutput struct { - _ struct{} `type:"structure"` - - // For the second and subsequent calls to ListHostedZonesByName, DNSName is - // the value that you specified for the dnsname parameter in the request that - // produced the current response. - DNSName *string `type:"string"` - - // The ID that Amazon Route 53 assigned to the hosted zone when you created - // it. - HostedZoneId *string `type:"string"` - - // A complex type that contains general information about the hosted zone. - // - // HostedZones is a required field - HostedZones []*HostedZone `locationNameList:"HostedZone" type:"list" required:"true"` - - // A flag that indicates whether there are more hosted zones to be listed. If - // the response was truncated, you can get the next group of maxitems hosted - // zones by calling ListHostedZonesByName again and specifying the values of - // NextDNSName and NextHostedZoneId elements in the dnsname and hostedzoneid - // parameters. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The value that you specified for the maxitems parameter in the call to ListHostedZonesByName - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, the value of NextDNSName is the name of the first - // hosted zone in the next group of maxitems hosted zones. Call ListHostedZonesByName - // again and specify the value of NextDNSName and NextHostedZoneId in the dnsname - // and hostedzoneid parameters, respectively. - // - // This element is present only if IsTruncated is true. - NextDNSName *string `type:"string"` - - // If IsTruncated is true, the value of NextHostedZoneId identifies the first - // hosted zone in the next group of maxitems hosted zones. Call ListHostedZonesByName - // again and specify the value of NextDNSName and NextHostedZoneId in the dnsname - // and hostedzoneid parameters, respectively. - // - // This element is present only if IsTruncated is true. - NextHostedZoneId *string `type:"string"` -} - -// String returns the string representation -func (s ListHostedZonesByNameOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListHostedZonesByNameOutput) GoString() string { - return s.String() -} - -// To retrieve a list of your public and private hosted zones, send a GET request -// to the /2013-04-01/hostedzone resource. The response to this request includes -// a HostedZone child element for each hosted zone that was created by the current -// AWS account. -// -// Amazon Route 53 returns a maximum of 100 items in each response. If you -// have a lot of hosted zones, you can use the maxitems parameter to list them -// in groups of up to 100. The response includes four values that help you navigate -// from one group of maxitems hosted zones to the next: -// -// MaxItems is the value that you specified for the maxitems parameter in -// the request that produced the current response. -// -// If the value of IsTruncated in the response is true, there are more hosted -// zones associated with the current AWS account. -// -// If IsTruncated is false, this response includes the last hosted zone that -// is associated with the current account. -// -// NextMarker is the hosted zone ID of the next hosted zone that is associated -// with the current AWS account. If you want to list more hosted zones, make -// another call to ListHostedZones, and specify the value of the NextMarker -// element in the marker parameter. -// -// If IsTruncated is false, the NextMarker element is omitted from the response. -// -// If you're making the second or subsequent call to ListHostedZones, the -// Marker element matches the value that you specified in the marker parameter -// in the previous request. -type ListHostedZonesInput struct { - _ struct{} `type:"structure"` - - DelegationSetId *string `location:"querystring" locationName:"delegationsetid" type:"string"` - - // (Optional) If you have more hosted zones than the value of maxitems, ListHostedZones - // returns only the first maxitems hosted zones. To get the next group of maxitems - // hosted zones, submit another request to ListHostedZones. For the value of - // marker, specify the value of the NextMarker element that was returned in - // the previous response. - // - // Hosted zones are listed in the order in which they were created. - Marker *string `location:"querystring" locationName:"marker" type:"string"` - - // (Optional) The maximum number of hosted zones to be included in the response - // body for this request. If you have more than maxitems hosted zones, the value - // of the IsTruncated element in the response is true, and the value of the - // NextMarker element is the hosted zone ID of the first hosted zone in the - // next group of maxitems hosted zones. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` -} - -// String returns the string representation -func (s ListHostedZonesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListHostedZonesInput) GoString() string { - return s.String() -} - -type ListHostedZonesOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains general information about the hosted zone. - // - // HostedZones is a required field - HostedZones []*HostedZone `locationNameList:"HostedZone" type:"list" required:"true"` - - // A flag indicating whether there are more hosted zones to be listed. If the - // response was truncated, you can get the next group of maxitems hosted zones - // by calling ListHostedZones again and specifying the value of the NextMarker - // element in the marker parameter. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // For the second and subsequent calls to ListHostedZones, Marker is the value - // that you specified for the marker parameter in the request that produced - // the current response. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value that you specified for the maxitems parameter in the call to ListHostedZones - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, the value of NextMarker identifies the first hosted - // zone in the next group of maxitems hosted zones. Call ListHostedZones again - // and specify the value of NextMarker in the marker parameter. - // - // This element is present only if IsTruncated is true. - NextMarker *string `type:"string"` -} - -// String returns the string representation -func (s ListHostedZonesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListHostedZonesOutput) GoString() string { - return s.String() -} - -// The input for a ListResourceRecordSets request. -type ListResourceRecordSetsInput struct { - _ struct{} `type:"structure"` - - // The ID of the hosted zone that contains the resource record sets that you - // want to get. - // - // HostedZoneId is a required field - HostedZoneId *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // (Optional) The maximum number of resource records sets to include in the - // response body for this request. If the response includes more than maxitems - // resource record sets, the value of the IsTruncated element in the response - // is true, and the values of the NextRecordName and NextRecordType elements - // in the response identify the first resource record set in the next group - // of maxitems resource record sets. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - - // Weighted resource record sets only: If results were truncated for a given - // DNS name and type, specify the value of NextRecordIdentifier from the previous - // response to get the next resource record set that has the current DNS name - // and type. - StartRecordIdentifier *string `location:"querystring" locationName:"identifier" min:"1" type:"string"` - - // The first name in the lexicographic ordering of domain names that you want - // the ListResourceRecordSets request to list. - StartRecordName *string `location:"querystring" locationName:"name" type:"string"` - - // The type of resource record set to begin the record listing from. - // - // Valid values for basic resource record sets: A | AAAA | CNAME | MX | NAPTR - // | NS | PTR | SOA | SPF | SRV | TXT - // - // Values for weighted, latency, geo, and failover resource record sets: A - // | AAAA | CNAME | MX | NAPTR | PTR | SPF | SRV | TXT - // - // Values for alias resource record sets: - // - // CloudFront distribution: A - // - // Elastic Beanstalk environment that has a regionalized subdomain: A - // - // ELB load balancer: A | AAAA - // - // Amazon S3 bucket: A - // - // Constraint: Specifying type without specifying name returns an InvalidInput - // error. - StartRecordType *string `location:"querystring" locationName:"type" type:"string" enum:"RRType"` -} - -// String returns the string representation -func (s ListResourceRecordSetsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListResourceRecordSetsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListResourceRecordSetsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListResourceRecordSetsInput"} - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.StartRecordIdentifier != nil && len(*s.StartRecordIdentifier) < 1 { - invalidParams.Add(request.NewErrParamMinLen("StartRecordIdentifier", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains list information for the resource record set. -type ListResourceRecordSetsOutput struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether more resource record sets remain to be listed. - // If your results were truncated, you can make a follow-up pagination request - // by using the NextRecordName element. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The maximum number of records you requested. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // Weighted, latency, geolocation, and failover resource record sets only: If - // results were truncated for a given DNS name and type, the value of SetIdentifier - // for the next resource record set that has the current DNS name and type. - NextRecordIdentifier *string `min:"1" type:"string"` - - // If the results were truncated, the name of the next record in the list. - // - // This element is present only if IsTruncated is true. - NextRecordName *string `type:"string"` - - // If the results were truncated, the type of the next record in the list. - // - // This element is present only if IsTruncated is true. - NextRecordType *string `type:"string" enum:"RRType"` - - // Information about multiple resource record sets. - // - // ResourceRecordSets is a required field - ResourceRecordSets []*ResourceRecordSet `locationNameList:"ResourceRecordSet" type:"list" required:"true"` -} - -// String returns the string representation -func (s ListResourceRecordSetsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListResourceRecordSetsOutput) GoString() string { - return s.String() -} - -// To retrieve a list of your reusable delegation sets, send a GET request to -// the /2013-04-01/delegationset resource. The response to this request includes -// a DelegationSets element with zero or more DelegationSet child elements. -// By default, the list of reusable delegation sets is displayed on a single -// page. You can control the length of the page that is displayed by using the -// MaxItems parameter. You can use the Marker parameter to control the delegation -// set that the list begins with. -// -// Amazon Route 53 returns a maximum of 100 items. If you set MaxItems to -// a value greater than 100, Amazon Route 53 returns only the first 100. -type ListReusableDelegationSetsInput struct { - _ struct{} `type:"structure"` - - // If you're making the second or subsequent call to ListReusableDelegationSets, - // the Marker element matches the value that you specified in the marker parameter - // in the previous request. - Marker *string `location:"querystring" locationName:"marker" type:"string"` - - // The value that you specified for the maxitems parameter in the request that - // produced the current response. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` -} - -// String returns the string representation -func (s ListReusableDelegationSetsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListReusableDelegationSetsInput) GoString() string { - return s.String() -} - -// A complex type that contains information about the reusable delegation sets -// that are associated with the current AWS account. -type ListReusableDelegationSetsOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains one DelegationSet element for each reusable - // delegation set that was created by the current AWS account. - // - // DelegationSets is a required field - DelegationSets []*DelegationSet `locationNameList:"DelegationSet" type:"list" required:"true"` - - // A flag that indicates whether there are more reusable delegation sets to - // be listed. If the response is truncated, you can get the next group of maxitems - // reusable delegation sets by calling ListReusableDelegationSets again and - // specifying the value of the NextMarker element in the marker parameter. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // For the second and subsequent calls to ListReusableDelegationSets, Marker - // is the value that you specified for the marker parameter in the request that - // produced the current response. - // - // Marker is a required field - Marker *string `type:"string" required:"true"` - - // The value that you specified for the maxitems parameter in the call to ListReusableDelegationSets - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, the value of NextMarker identifies the first reusable - // delegation set in the next group of maxitems reusable delegation sets. Call - // ListReusableDelegationSets again and specify the value of NextMarker in the - // marker parameter. - NextMarker *string `type:"string"` -} - -// String returns the string representation -func (s ListReusableDelegationSetsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListReusableDelegationSetsOutput) GoString() string { - return s.String() -} - -// A complex type containing information about a request for a list of the tags -// that are associated with an individual resource. -type ListTagsForResourceInput struct { - _ struct{} `type:"structure"` - - // The ID of the resource for which you want to retrieve tags. - // - // ResourceId is a required field - ResourceId *string `location:"uri" locationName:"ResourceId" type:"string" required:"true"` - - // The type of the resource. - // - // The resource type for health checks is healthcheck. - // - // The resource type for hosted zones is hostedzone. - // - // ResourceType is a required field - ResourceType *string `location:"uri" locationName:"ResourceType" type:"string" required:"true" enum:"TagResourceType"` -} - -// String returns the string representation -func (s ListTagsForResourceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForResourceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTagsForResourceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTagsForResourceInput"} - if s.ResourceId == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceId")) - } - if s.ResourceType == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the health checks or hosted -// zones for which you want to list tags. -type ListTagsForResourceOutput struct { - _ struct{} `type:"structure"` - - // A ResourceTagSet containing tags associated with the specified resource. - // - // ResourceTagSet is a required field - ResourceTagSet *ResourceTagSet `type:"structure" required:"true"` -} - -// String returns the string representation -func (s ListTagsForResourceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForResourceOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the health checks or hosted -// zones for which you want to list tags. -type ListTagsForResourcesInput struct { - _ struct{} `locationName:"ListTagsForResourcesRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // A complex type that contains the ResourceId element for each resource for - // which you want to get a list of tags. - // - // ResourceIds is a required field - ResourceIds []*string `locationNameList:"ResourceId" min:"1" type:"list" required:"true"` - - // The type of the resources. - // - // The resource type for health checks is healthcheck. - // - // The resource type for hosted zones is hostedzone. - // - // ResourceType is a required field - ResourceType *string `location:"uri" locationName:"ResourceType" type:"string" required:"true" enum:"TagResourceType"` -} - -// String returns the string representation -func (s ListTagsForResourcesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForResourcesInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTagsForResourcesInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTagsForResourcesInput"} - if s.ResourceIds == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceIds")) - } - if s.ResourceIds != nil && len(s.ResourceIds) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ResourceIds", 1)) - } - if s.ResourceType == nil { - invalidParams.Add(request.NewErrParamRequired("ResourceType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing tags for the specified resources. -type ListTagsForResourcesOutput struct { - _ struct{} `type:"structure"` - - // A list of ResourceTagSets containing tags associated with the specified resources. - // - // ResourceTagSets is a required field - ResourceTagSets []*ResourceTagSet `locationNameList:"ResourceTagSet" type:"list" required:"true"` -} - -// String returns the string representation -func (s ListTagsForResourcesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTagsForResourcesOutput) GoString() string { - return s.String() -} - -// A complex type that contains the information about the request to list the -// traffic policies that are associated with the current AWS account. -type ListTrafficPoliciesInput struct { - _ struct{} `type:"structure"` - - // (Optional) The maximum number of traffic policies to be included in the response - // body for this request. If you have more than MaxItems traffic policies, the - // value of the IsTruncated element in the response is true, and the value of - // the TrafficPolicyIdMarker element is the ID of the first traffic policy in - // the next group of MaxItems traffic policies. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - - // (Conditional) For your first request to ListTrafficPolicies, do not include - // the TrafficPolicyIdMarker parameter. - // - // If you have more traffic policies than the value of MaxItems, ListTrafficPolicies - // returns only the first MaxItems traffic policies. To get the next group of - // MaxItems policies, submit another request to ListTrafficPolicies. For the - // value of TrafficPolicyIdMarker, specify the value of the TrafficPolicyIdMarker - // element that was returned in the previous response. - // - // Policies are listed in the order in which they were created. - TrafficPolicyIdMarker *string `location:"querystring" locationName:"trafficpolicyid" type:"string"` -} - -// String returns the string representation -func (s ListTrafficPoliciesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPoliciesInput) GoString() string { - return s.String() -} - -// A complex type that contains the response information for the request. -type ListTrafficPoliciesOutput struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether there are more traffic policies to be listed. - // If the response was truncated, you can get the next group of MaxItems traffic - // policies by calling ListTrafficPolicies again and specifying the value of - // the TrafficPolicyIdMarker element in the TrafficPolicyIdMarker request parameter. - // - // Valid Values: true | false - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The value that you specified for the MaxItems parameter in the call to ListTrafficPolicies - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If the value of IsTruncated is true, TrafficPolicyIdMarker is the ID of the - // first traffic policy in the next group of MaxItems traffic policies. - // - // TrafficPolicyIdMarker is a required field - TrafficPolicyIdMarker *string `type:"string" required:"true"` - - // A list that contains one TrafficPolicySummary element for each traffic policy - // that was created by the current AWS account. - // - // TrafficPolicySummaries is a required field - TrafficPolicySummaries []*TrafficPolicySummary `locationNameList:"TrafficPolicySummary" type:"list" required:"true"` -} - -// String returns the string representation -func (s ListTrafficPoliciesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPoliciesOutput) GoString() string { - return s.String() -} - -// A request for the traffic policy instances that you created in a specified -// hosted zone. -type ListTrafficPolicyInstancesByHostedZoneInput struct { - _ struct{} `type:"structure"` - - // The ID of the hosted zone for which you want to list traffic policy instances. - // - // HostedZoneId is a required field - HostedZoneId *string `location:"querystring" locationName:"id" type:"string" required:"true"` - - // The maximum number of traffic policy instances to be included in the response - // body for this request. If you have more than MaxItems traffic policy instances, - // the value of the IsTruncated element in the response is true, and the values - // of HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, and TrafficPolicyInstanceTypeMarker - // represent the first traffic policy instance in the next group of MaxItems - // traffic policy instances. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - - // For the first request to ListTrafficPolicyInstancesByHostedZone, omit this - // value. - // - // If the value of IsTruncated in the previous response was true, TrafficPolicyInstanceNameMarker - // is the name of the first traffic policy instance in the next group of MaxItems - // traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get for this hosted zone. - // - // If the value of IsTruncated in the previous response was false, omit this - // value. - TrafficPolicyInstanceNameMarker *string `location:"querystring" locationName:"trafficpolicyinstancename" type:"string"` - - // For the first request to ListTrafficPolicyInstancesByHostedZone, omit this - // value. - // - // If the value of IsTruncated in the previous response was true, TrafficPolicyInstanceTypeMarker - // is the DNS type of the first traffic policy instance in the next group of - // MaxItems traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get for this hosted zone. - TrafficPolicyInstanceTypeMarker *string `location:"querystring" locationName:"trafficpolicyinstancetype" type:"string" enum:"RRType"` -} - -// String returns the string representation -func (s ListTrafficPolicyInstancesByHostedZoneInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyInstancesByHostedZoneInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTrafficPolicyInstancesByHostedZoneInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTrafficPolicyInstancesByHostedZoneInput"} - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the request. -type ListTrafficPolicyInstancesByHostedZoneOutput struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether there are more traffic policy instances to - // be listed. If the response was truncated, you can get the next group of MaxItems - // traffic policy instances by calling ListTrafficPolicyInstancesByHostedZone - // again and specifying the values of the HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, - // and TrafficPolicyInstanceTypeMarker elements in the corresponding request - // parameters. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The value that you specified for the MaxItems parameter in the call to ListTrafficPolicyInstancesByHostedZone - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, TrafficPolicyInstanceNameMarker is the name of the - // first traffic policy instance in the next group of MaxItems traffic policy - // instances. - TrafficPolicyInstanceNameMarker *string `type:"string"` - - // If IsTruncated is true, TrafficPolicyInstanceTypeMarker is the DNS type of - // the resource record sets that are associated with the first traffic policy - // instance in the next group of MaxItems traffic policy instances. - TrafficPolicyInstanceTypeMarker *string `type:"string" enum:"RRType"` - - // A list that contains one TrafficPolicyInstance element for each traffic policy - // instance that matches the elements in the request. - // - // TrafficPolicyInstances is a required field - TrafficPolicyInstances []*TrafficPolicyInstance `locationNameList:"TrafficPolicyInstance" type:"list" required:"true"` -} - -// String returns the string representation -func (s ListTrafficPolicyInstancesByHostedZoneOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyInstancesByHostedZoneOutput) GoString() string { - return s.String() -} - -// A complex type that contains the information about the request to list your -// traffic policy instances. -type ListTrafficPolicyInstancesByPolicyInput struct { - _ struct{} `type:"structure"` - - // For the first request to ListTrafficPolicyInstancesByPolicy, omit this value. - // - // If the value of IsTruncated in the previous response was true, HostedZoneIdMarker - // is the ID of the hosted zone for the first traffic policy instance in the - // next group of MaxItems traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get for this hosted zone. - // - // If the value of IsTruncated in the previous response was false, omit this - // value. - HostedZoneIdMarker *string `location:"querystring" locationName:"hostedzoneid" type:"string"` - - // The maximum number of traffic policy instances to be included in the response - // body for this request. If you have more than MaxItems traffic policy instances, - // the value of the IsTruncated element in the response is true, and the values - // of HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, and TrafficPolicyInstanceTypeMarker - // represent the first traffic policy instance in the next group of MaxItems - // traffic policy instances. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - - // The ID of the traffic policy for which you want to list traffic policy instances. - // - // TrafficPolicyId is a required field - TrafficPolicyId *string `location:"querystring" locationName:"id" type:"string" required:"true"` - - // For the first request to ListTrafficPolicyInstancesByPolicy, omit this value. - // - // If the value of IsTruncated in the previous response was true, TrafficPolicyInstanceNameMarker - // is the name of the first traffic policy instance in the next group of MaxItems - // traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get for this hosted zone. - // - // If the value of IsTruncated in the previous response was false, omit this - // value. - TrafficPolicyInstanceNameMarker *string `location:"querystring" locationName:"trafficpolicyinstancename" type:"string"` - - // For the first request to ListTrafficPolicyInstancesByPolicy, omit this value. - // - // If the value of IsTruncated in the previous response was true, TrafficPolicyInstanceTypeMarker - // is the DNS type of the first traffic policy instance in the next group of - // MaxItems traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get for this hosted zone. - TrafficPolicyInstanceTypeMarker *string `location:"querystring" locationName:"trafficpolicyinstancetype" type:"string" enum:"RRType"` - - // The version of the traffic policy for which you want to list traffic policy - // instances. The version must be associated with the traffic policy that is - // specified by TrafficPolicyId. - // - // TrafficPolicyVersion is a required field - TrafficPolicyVersion *int64 `location:"querystring" locationName:"version" min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s ListTrafficPolicyInstancesByPolicyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyInstancesByPolicyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTrafficPolicyInstancesByPolicyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTrafficPolicyInstancesByPolicyInput"} - if s.TrafficPolicyId == nil { - invalidParams.Add(request.NewErrParamRequired("TrafficPolicyId")) - } - if s.TrafficPolicyVersion == nil { - invalidParams.Add(request.NewErrParamRequired("TrafficPolicyVersion")) - } - if s.TrafficPolicyVersion != nil && *s.TrafficPolicyVersion < 1 { - invalidParams.Add(request.NewErrParamMinValue("TrafficPolicyVersion", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the request. -type ListTrafficPolicyInstancesByPolicyOutput struct { - _ struct{} `type:"structure"` - - // If IsTruncated is true, HostedZoneIdMarker is the ID of the hosted zone of - // the first traffic policy instance in the next group of MaxItems traffic policy - // instances. - HostedZoneIdMarker *string `type:"string"` - - // A flag that indicates whether there are more traffic policy instances to - // be listed. If the response was truncated, you can get the next group of MaxItems - // traffic policy instances by calling ListTrafficPolicyInstancesByPolicy again - // and specifying the values of the HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, - // and TrafficPolicyInstanceTypeMarker elements in the corresponding request - // parameters. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The value that you specified for the MaxItems parameter in the call to ListTrafficPolicyInstancesByPolicy - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, TrafficPolicyInstanceNameMarker is the name of the - // first traffic policy instance in the next group of MaxItems traffic policy - // instances. - TrafficPolicyInstanceNameMarker *string `type:"string"` - - // If IsTruncated is true, TrafficPolicyInstanceTypeMarker is the DNS type of - // the resource record sets that are associated with the first traffic policy - // instance in the next group of MaxItems traffic policy instances. - TrafficPolicyInstanceTypeMarker *string `type:"string" enum:"RRType"` - - // A list that contains one TrafficPolicyInstance element for each traffic policy - // instance that matches the elements in the request. - // - // TrafficPolicyInstances is a required field - TrafficPolicyInstances []*TrafficPolicyInstance `locationNameList:"TrafficPolicyInstance" type:"list" required:"true"` -} - -// String returns the string representation -func (s ListTrafficPolicyInstancesByPolicyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyInstancesByPolicyOutput) GoString() string { - return s.String() -} - -// A complex type that contains the information about the request to list your -// traffic policy instances. -type ListTrafficPolicyInstancesInput struct { - _ struct{} `type:"structure"` - - // For the first request to ListTrafficPolicyInstances, omit this value. - // - // If the value of IsTruncated in the previous response was true, you have - // more traffic policy instances. To get the next group of MaxItems traffic - // policy instances, submit another ListTrafficPolicyInstances request. For - // the value of HostedZoneIdMarker, specify the value of HostedZoneIdMarker - // from the previous response, which is the hosted zone ID of the first traffic - // policy instance in the next group of MaxItems traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get. - HostedZoneIdMarker *string `location:"querystring" locationName:"hostedzoneid" type:"string"` - - // The maximum number of traffic policy instances to be included in the response - // body for this request. If you have more than MaxItems traffic policy instances, - // the value of the IsTruncated element in the response is true, and the values - // of HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, and TrafficPolicyInstanceTypeMarker - // represent the first traffic policy instance in the next group of MaxItems - // traffic policy instances. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - - // For the first request to ListTrafficPolicyInstances, omit this value. - // - // If the value of IsTruncated in the previous response was true, TrafficPolicyInstanceNameMarker - // is the name of the first traffic policy instance in the next group of MaxItems - // traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get. - TrafficPolicyInstanceNameMarker *string `location:"querystring" locationName:"trafficpolicyinstancename" type:"string"` - - // For the first request to ListTrafficPolicyInstances, omit this value. - // - // If the value of IsTruncated in the previous response was true, TrafficPolicyInstanceTypeMarker - // is the DNS type of the first traffic policy instance in the next group of - // MaxItems traffic policy instances. - // - // If the value of IsTruncated in the previous response was false, there are - // no more traffic policy instances to get. - TrafficPolicyInstanceTypeMarker *string `location:"querystring" locationName:"trafficpolicyinstancetype" type:"string" enum:"RRType"` -} - -// String returns the string representation -func (s ListTrafficPolicyInstancesInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyInstancesInput) GoString() string { - return s.String() -} - -// A complex type that contains the response information for the request. -type ListTrafficPolicyInstancesOutput struct { - _ struct{} `type:"structure"` - - // If IsTruncated is true, HostedZoneIdMarker is the ID of the hosted zone of - // the first traffic policy instance in the next group of MaxItems traffic policy - // instances. - HostedZoneIdMarker *string `type:"string"` - - // A flag that indicates whether there are more traffic policy instances to - // be listed. If the response was truncated, you can get the next group of MaxItems - // traffic policy instances by calling ListTrafficPolicyInstances again and - // specifying the values of the HostedZoneIdMarker, TrafficPolicyInstanceNameMarker, - // and TrafficPolicyInstanceTypeMarker elements in the corresponding request - // parameters. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The value that you specified for the MaxItems parameter in the call to ListTrafficPolicyInstances - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // If IsTruncated is true, TrafficPolicyInstanceNameMarker is the name of the - // first traffic policy instance in the next group of MaxItems traffic policy - // instances. - TrafficPolicyInstanceNameMarker *string `type:"string"` - - // If IsTruncated is true, TrafficPolicyInstanceTypeMarker is the DNS type of - // the resource record sets that are associated with the first traffic policy - // instance in the next group of MaxItems traffic policy instances. - TrafficPolicyInstanceTypeMarker *string `type:"string" enum:"RRType"` - - // A list that contains one TrafficPolicyInstance element for each traffic policy - // instance that matches the elements in the request. - // - // TrafficPolicyInstances is a required field - TrafficPolicyInstances []*TrafficPolicyInstance `locationNameList:"TrafficPolicyInstance" type:"list" required:"true"` -} - -// String returns the string representation -func (s ListTrafficPolicyInstancesOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyInstancesOutput) GoString() string { - return s.String() -} - -// A complex type that contains the information about the request to list your -// traffic policies. -type ListTrafficPolicyVersionsInput struct { - _ struct{} `type:"structure"` - - // Specify the value of Id of the traffic policy for which you want to list - // all versions. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The maximum number of traffic policy versions that you want Amazon Route - // 53 to include in the response body for this request. If the specified traffic - // policy has more than MaxItems versions, the value of the IsTruncated element - // in the response is true, and the value of the TrafficPolicyVersionMarker - // element is the ID of the first version in the next group of MaxItems traffic - // policy versions. - MaxItems *string `location:"querystring" locationName:"maxitems" type:"string"` - - // For your first request to ListTrafficPolicyVersions, do not include the TrafficPolicyVersionMarker - // parameter. - // - // If you have more traffic policy versions than the value of MaxItems, ListTrafficPolicyVersions - // returns only the first group of MaxItems versions. To get the next group - // of MaxItems traffic policy versions, submit another request to ListTrafficPolicyVersions. - // For the value of TrafficPolicyVersionMarker, specify the value of the TrafficPolicyVersionMarker - // element that was returned in the previous response. - // - // Traffic policy versions are listed in sequential order. - TrafficPolicyVersionMarker *string `location:"querystring" locationName:"trafficpolicyversion" type:"string"` -} - -// String returns the string representation -func (s ListTrafficPolicyVersionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyVersionsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListTrafficPolicyVersionsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListTrafficPolicyVersionsInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the request. -type ListTrafficPolicyVersionsOutput struct { - _ struct{} `type:"structure"` - - // A flag that indicates whether there are more traffic policies to be listed. - // If the response was truncated, you can get the next group of maxitems traffic - // policies by calling ListTrafficPolicyVersions again and specifying the value - // of the NextMarker element in the marker parameter. - // - // IsTruncated is a required field - IsTruncated *bool `type:"boolean" required:"true"` - - // The value that you specified for the maxitems parameter in the call to ListTrafficPolicyVersions - // that produced the current response. - // - // MaxItems is a required field - MaxItems *string `type:"string" required:"true"` - - // A list that contains one TrafficPolicy element for each traffic policy version - // that is associated with the specified traffic policy. - // - // TrafficPolicies is a required field - TrafficPolicies []*TrafficPolicy `locationNameList:"TrafficPolicy" type:"list" required:"true"` - - // If IsTruncated is true, the value of TrafficPolicyVersionMarker identifies - // the first traffic policy in the next group of MaxItems traffic policies. - // Call ListTrafficPolicyVersions again and specify the value of TrafficPolicyVersionMarker - // in the TrafficPolicyVersionMarker request parameter. - // - // This element is present only if IsTruncated is true. - // - // TrafficPolicyVersionMarker is a required field - TrafficPolicyVersionMarker *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ListTrafficPolicyVersionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListTrafficPolicyVersionsOutput) GoString() string { - return s.String() -} - -// Information specific to the resource record. -// -// If you are creating an alias resource record set, omit ResourceRecord. -type ResourceRecord struct { - _ struct{} `type:"structure"` - - // The current or new DNS record value, not to exceed 4,000 characters. In the - // case of a DELETE action, if the current value does not match the actual value, - // an error is returned. For descriptions about how to format Value for different - // record types, see Supported DNS Resource Record Types (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DeveloperGuide/ResourceRecordTypes.html) - // in the Amazon Route 53 Developer Guide. - // - // You can specify more than one value for all record types except CNAME and - // SOA. - // - // If you are creating an alias resource record set, omit Value. - // - // Value is a required field - Value *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s ResourceRecord) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResourceRecord) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ResourceRecord) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ResourceRecord"} - if s.Value == nil { - invalidParams.Add(request.NewErrParamRequired("Value")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Information about the resource record set to create or delete. -type ResourceRecordSet struct { - _ struct{} `type:"structure"` - - // Alias resource record sets only: Information about the CloudFront distribution, - // Elastic Beanstalk environment, ELB load balancer, Amazon S3 bucket, or Amazon - // Route 53 resource record set to which you are redirecting queries. The Elastic - // Beanstalk environment must have a regionalized subdomain. - // - // If you're creating resource records sets for a private hosted zone, note - // the following: - // - // You can't create alias resource record sets for CloudFront distributions - // in a private hosted zone. - // - // Creating geolocation alias resource record sets or latency alias resource - // record sets in a private hosted zone is unsupported. - // - // For information about creating failover resource record sets in a private - // hosted zone, see Configuring Failover in a Private Hosted Zone (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) - // in the Amazon Route 53 Developer Guide. - AliasTarget *AliasTarget `type:"structure"` - - // Failover resource record sets only: To configure failover, you add the Failover - // element to two resource record sets. For one resource record set, you specify - // PRIMARY as the value for Failover; for the other resource record set, you - // specify SECONDARY. In addition, you include the HealthCheckId element and - // specify the health check that you want Amazon Route 53 to perform for each - // resource record set. - // - // Except where noted, the following failover behaviors assume that you have - // included the HealthCheckId element in both resource record sets: - // - // When the primary resource record set is healthy, Amazon Route 53 responds - // to DNS queries with the applicable value from the primary resource record - // set regardless of the health of the secondary resource record set. - // - // When the primary resource record set is unhealthy and the secondary resource - // record set is healthy, Amazon Route 53 responds to DNS queries with the applicable - // value from the secondary resource record set. - // - // When the secondary resource record set is unhealthy, Amazon Route 53 responds - // to DNS queries with the applicable value from the primary resource record - // set regardless of the health of the primary resource record set. - // - // If you omit the HealthCheckId element for the secondary resource record - // set, and if the primary resource record set is unhealthy, Amazon Route 53 - // always responds to DNS queries with the applicable value from the secondary - // resource record set. This is true regardless of the health of the associated - // endpoint. - // - // You cannot create non-failover resource record sets that have the same - // values for the Name and Type elements as failover resource record sets. - // - // For failover alias resource record sets, you must also include the EvaluateTargetHealth - // element and set the value to true. - // - // For more information about configuring failover for Amazon Route 53, see - // the following topics in the Amazon Route 53 Developer Guide: - // - // Amazon Route 53 Health Checks and DNS Failover (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) - // - // Configuring Failover in a Private Hosted Zone (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) - // - // Valid values: PRIMARY | SECONDARY - Failover *string `type:"string" enum:"ResourceRecordSetFailover"` - - // Geo location resource record sets only: A complex type that lets you control - // how Amazon Route 53 responds to DNS queries based on the geographic origin - // of the query. For example, if you want all queries from Africa to be routed - // to a web server with an IP address of 192.0.2.111, create a resource record - // set with a Type of A and a ContinentCode of AF. - // - // Creating geolocation and geolocation alias resource record sets in private - // hosted zones is not supported. - // - // If you create separate resource record sets for overlapping geographic - // regions (for example, one resource record set for a continent and one for - // a country on the same continent), priority goes to the smallest geographic - // region. This allows you to route most queries for a continent to one resource - // and to route queries for a country on that continent to a different resource. - // - // You cannot create two geolocation resource record sets that specify the - // same geographic location. - // - // The value * in the CountryCode element matches all geographic locations - // that aren't specified in other geolocation resource record sets that have - // the same values for the Name and Type elements. - // - // Geolocation works by mapping IP addresses to locations. However, some IP - // addresses aren't mapped to geographic locations, so even if you create geolocation - // resource record sets that cover all seven continents, Amazon Route 53 will - // receive some DNS queries from locations that it can't identify. We recommend - // that you create a resource record set for which the value of CountryCode - // is *, which handles both queries that come from locations for which you haven't - // created geolocation resource record sets and queries from IP addresses that - // aren't mapped to a location. If you don't create a * resource record set, - // Amazon Route 53 returns a "no answer" response for queries from those locations. - // - // You cannot create non-geolocation resource record sets that have the same - // values for the Name and Type elements as geolocation resource record sets. - GeoLocation *GeoLocation `type:"structure"` - - // If you want Amazon Route 53 to return this resource record set in response - // to a DNS query only when a health check is passing, include the HealthCheckId - // element and specify the ID of the applicable health check. - // - // Amazon Route 53 determines whether a resource record set is healthy based - // on one of the following: - // - // By periodically sending a request to the endpoint that is specified in - // the health check - // - // By aggregating the status of a specified group of health checks (calculated - // health checks) - // - // By determining the current state of a CloudWatch alarm (CloudWatch metric - // health checks) - // - // For information about how Amazon Route 53 determines whether a health - // check is healthy, see CreateHealthCheck. - // - // The HealthCheckId element is only useful when Amazon Route 53 is choosing - // between two or more resource record sets to respond to a DNS query, and you - // want Amazon Route 53 to base the choice in part on the status of a health - // check. Configuring health checks only makes sense in the following configurations: - // - // You're checking the health of the resource record sets in a weighted, - // latency, geolocation, or failover resource record set, and you specify health - // check IDs for all of the resource record sets. If the health check for one - // resource record set specifies an endpoint that is not healthy, Amazon Route - // 53 stops responding to queries using the value for that resource record set. - // - // You set EvaluateTargetHealth to true for the resource record sets in an - // alias, weighted alias, latency alias, geolocation alias, or failover alias - // resource record set, and you specify health check IDs for all of the resource - // record sets that are referenced by the alias resource record sets. - // - // Amazon Route 53 doesn't check the health of the endpoint specified in - // the resource record set, for example, the endpoint specified by the IP address - // in the Value element. When you add a HealthCheckId element to a resource - // record set, Amazon Route 53 checks the health of the endpoint that you specified - // in the health check. - // - // For geolocation resource record sets, if an endpoint is unhealthy, Amazon - // Route 53 looks for a resource record set for the larger, associated geographic - // region. For example, suppose you have resource record sets for a state in - // the United States, for the United States, for North America, and for all - // locations. If the endpoint for the state resource record set is unhealthy, - // Amazon Route 53 checks the resource record sets for the United States, for - // North America, and for all locations (a resource record set for which the - // value of CountryCode is *), in that order, until it finds a resource record - // set for which the endpoint is healthy. - // - // If your health checks specify the endpoint only by domain name, we recommend - // that you create a separate health check for each endpoint. For example, create - // a health check for each HTTP server that is serving content for www.example.com. - // For the value of FullyQualifiedDomainName, specify the domain name of the - // server (such as us-east-1-www.example.com), not the name of the resource - // record sets (example.com). - // - // n this configuration, if you create a health check for which the value - // of FullyQualifiedDomainName matches the name of the resource record sets - // and then associate the health check with those resource record sets, health - // check results will be unpredictable. - // - // For more informaiton, see the following topics in the Amazon Route 53 Developer - // Guide: - // - // Amazon Route 53 Health Checks and DNS Failover (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover.html) - // - // Configuring Failover in a Private Hosted Zone (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-private-hosted-zones.html) - HealthCheckId *string `type:"string"` - - // The name of the domain you want to perform the action on. - // - // Enter a fully qualified domain name, for example, www.example.com. You can - // optionally include a trailing dot. If you omit the trailing dot, Amazon Route - // 53 still assumes that the domain name that you specify is fully qualified. - // This means that Amazon Route 53 treats www.example.com (without a trailing - // dot) and www.example.com. (with a trailing dot) as identical. - // - // For information about how to specify characters other than a-z, 0-9, and - // - (hyphen) and how to specify internationalized domain names, see DNS Domain - // Name Format (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/DomainNameFormat.html) - // in the Amazon Route 53 Developer Guide. - // - // You can use the asterisk (*) wildcard to replace the leftmost label in a - // domain name. For example, *.example.com. Note the following: - // - // The * must replace the entire label. For example, you can't specify *prod.example.com - // or prod*.example.com. - // - // The * can't replace any of the middle labels, for example, marketing.*.example.com. - // - // If you include * in any position other than the leftmost label in a domain - // name, DNS treats it as an * character (ASCII 42), not as a wildcard. - // - // You can't use the * wildcard for resource records sets that have a type - // of NS. - // - // You can use the * wildcard as the leftmost label in a domain name, for - // example, *.example.com. You cannot use an * for one of the middle labels, - // for example, marketing.*.example.com. In addition, the * must replace the - // entire label; for example, you can't specify prod*.example.com. - // - // Name is a required field - Name *string `type:"string" required:"true"` - - // Latency-based resource record sets only: The Amazon EC2 region where the - // resource that is specified in this resource record set resides. The resource - // typically is an AWS resource, such as an Amazon EC2 instance or an ELB load - // balancer, and is referred to by an IP address or a DNS domain name, depending - // on the record type. - // - // Creating latency and latency alias resource record sets in private hosted - // zones is not supported. - // - // When Amazon Route 53 receives a DNS query for a domain name and type for - // which you have created latency resource record sets, Amazon Route 53 selects - // the latency resource record set that has the lowest latency between the end - // user and the associated Amazon EC2 region. Amazon Route 53 then returns the - // value that is associated with the selected resource record set. - // - // Note the following: - // - // You can only specify one ResourceRecord per latency resource record set. - // - // You can only create one latency resource record set for each Amazon EC2 - // region. - // - // You are not required to create latency resource record sets for all Amazon - // EC2 regions. Amazon Route 53 will choose the region with the best latency - // from among the regions for which you create latency resource record sets. - // - // You cannot create non-latency resource record sets that have the same - // values for the Name and Type elements as latency resource record sets. - Region *string `min:"1" type:"string" enum:"ResourceRecordSetRegion"` - - // Information about the resource records to act upon. - // - // If you are creating an alias resource record set, omit ResourceRecords. - ResourceRecords []*ResourceRecord `locationNameList:"ResourceRecord" min:"1" type:"list"` - - // Weighted, Latency, Geo, and Failover resource record sets only: An identifier - // that differentiates among multiple resource record sets that have the same - // combination of DNS name and type. The value of SetIdentifier must be unique - // for each resource record set that has the same combination of DNS name and - // type. Omit SetIdentifier for any other types of record sets. - SetIdentifier *string `min:"1" type:"string"` - - // The resource record cache time to live (TTL), in seconds. Note the following: - // - // If you're creating an alias resource record set, omit TTL. Amazon Route - // 53 uses the value of TTL for the alias target. - // - // If you're associating this resource record set with a health check (if - // you're adding a HealthCheckId element), we recommend that you specify a TTL - // of 60 seconds or less so clients respond quickly to changes in health status. - // - // All of the resource record sets in a group of weighted, latency, geolocation, - // or failover resource record sets must have the same value for TTL. - // - // If a group of weighted resource record sets includes one or more weighted - // alias resource record sets for which the alias target is an ELB load balancer, - // we recommend that you specify a TTL of 60 seconds for all of the non-alias - // weighted resource record sets that have the same name and type. Values other - // than 60 seconds (the TTL for load balancers) will change the effect of the - // values that you specify for Weight. - TTL *int64 `type:"long"` - - TrafficPolicyInstanceId *string `type:"string"` - - // The DNS record type. For information about different record types and how - // data is encoded for them, see Supported DNS Resource Record Types (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/ResourceRecordTypes.html) - // in the Amazon Route 53 Developer Guide. - // - // Valid values for basic resource record sets: A | AAAA | CNAME | MX | NAPTR - // | NS | PTR | SOA | SPF | SRV | TXT - // - // Values for weighted, latency, geolocation, and failover resource record - // sets: A | AAAA | CNAME | MX | NAPTR | PTR | SPF | SRV | TXT. When creating - // a group of weighted, latency, geolocation, or failover resource record sets, - // specify the same value for all of the resource record sets in the group. - // - // SPF records were formerly used to verify the identity of the sender of - // email messages. However, we no longer recommend that you create resource - // record sets for which the value of Type is SPF. RFC 7208, Sender Policy Framework - // (SPF) for Authorizing Use of Domains in Email, Version 1, has been updated - // to say, "...[I]ts existence and mechanism defined in [RFC4408] have led to - // some interoperability issues. Accordingly, its use is no longer appropriate - // for SPF version 1; implementations are not to use it." In RFC 7208, see section - // 14.1, The SPF DNS Record Type (http://tools.ietf.org/html/rfc7208#section-14.1). - // - // Values for alias resource record sets: - // - // CloudFront distributions: A - // - // Elastic Beanstalk environment that has a regionalized subdomain: A - // - // ELB load balancers: A | AAAA - // - // Amazon S3 buckets: A - // - // Another resource record set in this hosted zone: Specify the type of - // the resource record set for which you're creating the alias. Specify any - // value except NS or SOA. - // - // Type is a required field - Type *string `type:"string" required:"true" enum:"RRType"` - - // Weighted resource record sets only: Among resource record sets that have - // the same combination of DNS name and type, a value that determines the proportion - // of DNS queries that Amazon Route 53 responds to using the current resource - // record set. Amazon Route 53 calculates the sum of the weights for the resource - // record sets that have the same combination of DNS name and type. Amazon Route - // 53 then responds to queries based on the ratio of a resource's weight to - // the total. Note the following: - // - // You must specify a value for the Weight element for every weighted resource - // record set. - // - // You can only specify one ResourceRecord per weighted resource record set. - // - // You cannot create latency, failover, or geolocation resource record sets - // that have the same values for the Name and Type elements as weighted resource - // record sets. - // - // You can create a maximum of 100 weighted resource record sets that have - // the same values for the Name and Type elements. - // - // For weighted (but not weighted alias) resource record sets, if you set - // Weight to 0 for a resource record set, Amazon Route 53 never responds to - // queries with the applicable value for that resource record set. However, - // if you set Weight to 0 for all resource record sets that have the same combination - // of DNS name and type, traffic is routed to all resources with equal probability. - // - // The effect of setting Weight to 0 is different when you associate health - // checks with weighted resource record sets. For more information, see Options - // for Configuring Amazon Route 53 Active-Active and Active-Passive Failover - // (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-configuring-options.html) - // in the Amazon Route 53 Developer Guide. - Weight *int64 `type:"long"` -} - -// String returns the string representation -func (s ResourceRecordSet) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResourceRecordSet) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ResourceRecordSet) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ResourceRecordSet"} - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.Region != nil && len(*s.Region) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Region", 1)) - } - if s.ResourceRecords != nil && len(s.ResourceRecords) < 1 { - invalidParams.Add(request.NewErrParamMinLen("ResourceRecords", 1)) - } - if s.SetIdentifier != nil && len(*s.SetIdentifier) < 1 { - invalidParams.Add(request.NewErrParamMinLen("SetIdentifier", 1)) - } - if s.Type == nil { - invalidParams.Add(request.NewErrParamRequired("Type")) - } - if s.AliasTarget != nil { - if err := s.AliasTarget.Validate(); err != nil { - invalidParams.AddNested("AliasTarget", err.(request.ErrInvalidParams)) - } - } - if s.GeoLocation != nil { - if err := s.GeoLocation.Validate(); err != nil { - invalidParams.AddNested("GeoLocation", err.(request.ErrInvalidParams)) - } - } - if s.ResourceRecords != nil { - for i, v := range s.ResourceRecords { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "ResourceRecords", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type containing a resource and its associated tags. -type ResourceTagSet struct { - _ struct{} `type:"structure"` - - // The ID for the specified resource. - ResourceId *string `type:"string"` - - // The type of the resource. - // - // The resource type for health checks is healthcheck. - // - // The resource type for hosted zones is hostedzone. - ResourceType *string `type:"string" enum:"TagResourceType"` - - // The tags associated with the specified resource. - Tags []*Tag `locationNameList:"Tag" min:"1" type:"list"` -} - -// String returns the string representation -func (s ResourceTagSet) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ResourceTagSet) GoString() string { - return s.String() -} - -// A complex type that contains the status that one Amazon Route 53 health checker -// reports and the time of the health check. -type StatusReport struct { - _ struct{} `type:"structure"` - - // The time at which the health checker performed the health check in ISO 8601 - // format (https://en.wikipedia.org/wiki/ISO_8601) and Coordinated Universal - // Time (UTC). For example, the value 2014-10-27T17:48:16.751Z represents October - // 27, 2014 at 17:48:16.751 UTC. - CheckedTime *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // A description of the status of the health check endpoint as reported by one - // of the Amazon Route 53 health checkers. - Status *string `type:"string"` -} - -// String returns the string representation -func (s StatusReport) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s StatusReport) GoString() string { - return s.String() -} - -// A complex type that contains information about a tag that you want to add -// or edit for the specified health check or hosted zone. -type Tag struct { - _ struct{} `type:"structure"` - - // The value of Key depends on the operation that you want to perform: - // - // Add a tag to a health check or hosted zone: Key is the name that you - // want to give the new tag. - // - // Edit a tag: Key is the name of the tag whose Value element you want to - // remove. - // - // Delete a key: Key is the name of the tag you want to remove. - // - // Give a name to a health check: Edit the default Name tag. In the Amazon - // Route 53 console, the list of your health checks includes a Name column that - // lets you see the name that you've given to each health check. - Key *string `type:"string"` - - // The value of Value depends on the operation that you want to perform: - // - // Add a tag to a health check or hosted zone: Value is the value that you - // want to give the new tag. - // - // Edit a tag: Value is the new value that you want to assign the tag. - Value *string `type:"string"` -} - -// String returns the string representation -func (s Tag) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Tag) GoString() string { - return s.String() -} - -// Gets the value that Amazon Route 53 returns in response to a DNS request -// for a specified record name and type. You can optionally specify the IP address -// of a DNS resolver, an EDNS0 client subnet IP address, and a subnet mask. -// -// Parameters -// -// hostedzoneid The ID of the hosted zone that you want Amazon Route 53 to -// simulate a query for. -// -// recordname The name of the resource record set that you want Amazon Route -// 53 to simulate a query for. -// -// recordtype The type of the resource record set. -// -// resolverip (optional) If you want to simulate a request from a specific -// DNS resolver, specify the IP address for that resolver. If you omit this -// value, TestDNSAnswer uses the IP address of a DNS resolver in the AWS US -// East region. -// -// edns0clientsubnetip (optional) If the resolver that you specified for -// resolverip supports EDNS0, specify the IP address of a client in the applicable -// location. -// -// edns0clientsubnetmask (optional) If you specify an IP address for edns0clientsubnetip, -// you can optionally specify the number of bits of the IP address that you -// want the checking tool to include in the DNS query. For example, if you specify -// 192.0.2.44 for edns0clientsubnetip and 24 for edns0clientsubnetmask, the -// checking tool will simulate a request from 192.0.2.0/24. The default value -// is 24 bits. -type TestDNSAnswerInput struct { - _ struct{} `type:"structure"` - - EDNS0ClientSubnetIP *string `location:"querystring" locationName:"edns0clientsubnetip" type:"string"` - - EDNS0ClientSubnetMask *string `location:"querystring" locationName:"edns0clientsubnetmask" type:"string"` - - // HostedZoneId is a required field - HostedZoneId *string `location:"querystring" locationName:"hostedzoneid" type:"string" required:"true"` - - // RecordName is a required field - RecordName *string `location:"querystring" locationName:"recordname" type:"string" required:"true"` - - // RecordType is a required field - RecordType *string `location:"querystring" locationName:"recordtype" type:"string" required:"true" enum:"RRType"` - - ResolverIP *string `location:"querystring" locationName:"resolverip" type:"string"` -} - -// String returns the string representation -func (s TestDNSAnswerInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TestDNSAnswerInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TestDNSAnswerInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TestDNSAnswerInput"} - if s.HostedZoneId == nil { - invalidParams.Add(request.NewErrParamRequired("HostedZoneId")) - } - if s.RecordName == nil { - invalidParams.Add(request.NewErrParamRequired("RecordName")) - } - if s.RecordType == nil { - invalidParams.Add(request.NewErrParamRequired("RecordType")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response to a TestDNSAnswer request. -type TestDNSAnswerOutput struct { - _ struct{} `type:"structure"` - - // The Amazon Route 53 name server used to respond to the request. - // - // Nameserver is a required field - Nameserver *string `type:"string" required:"true"` - - // The protocol that Amazon Route 53 used to respond to the request, either - // UDP or TCP. - // - // Protocol is a required field - Protocol *string `type:"string" required:"true"` - - // A list that contains values that Amazon Route 53 returned for this resource - // record set. - // - // RecordData is a required field - RecordData []*string `locationNameList:"RecordDataEntry" type:"list" required:"true"` - - // The name of the resource record set that you submitted a request for. - // - // RecordName is a required field - RecordName *string `type:"string" required:"true"` - - // The type of the resource record set that you submitted a request for. - // - // RecordType is a required field - RecordType *string `type:"string" required:"true" enum:"RRType"` - - // A code that indicates whether the request is valid or not. The most common - // response code is NOERROR, meaning that the request is valid. If the response - // is not valid, Amazon Route 53 returns a response code that describes the - // error. For a list of possible response codes, see DNS RCODES (http://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-6) - // on the IANA website. - // - // ResponseCode is a required field - ResponseCode *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s TestDNSAnswerOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TestDNSAnswerOutput) GoString() string { - return s.String() -} - -type TrafficPolicy struct { - _ struct{} `type:"structure"` - - Comment *string `type:"string"` - - // Document is a required field - Document *string `type:"string" required:"true"` - - // Id is a required field - Id *string `type:"string" required:"true"` - - // Name is a required field - Name *string `type:"string" required:"true"` - - // Type is a required field - Type *string `type:"string" required:"true" enum:"RRType"` - - // Version is a required field - Version *int64 `min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s TrafficPolicy) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TrafficPolicy) GoString() string { - return s.String() -} - -type TrafficPolicyInstance struct { - _ struct{} `type:"structure"` - - // HostedZoneId is a required field - HostedZoneId *string `type:"string" required:"true"` - - // Id is a required field - Id *string `type:"string" required:"true"` - - // Message is a required field - Message *string `type:"string" required:"true"` - - // Name is a required field - Name *string `type:"string" required:"true"` - - // State is a required field - State *string `type:"string" required:"true"` - - // TTL is a required field - TTL *int64 `type:"long" required:"true"` - - // TrafficPolicyId is a required field - TrafficPolicyId *string `type:"string" required:"true"` - - // TrafficPolicyType is a required field - TrafficPolicyType *string `type:"string" required:"true" enum:"RRType"` - - // TrafficPolicyVersion is a required field - TrafficPolicyVersion *int64 `min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s TrafficPolicyInstance) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TrafficPolicyInstance) GoString() string { - return s.String() -} - -type TrafficPolicySummary struct { - _ struct{} `type:"structure"` - - // Id is a required field - Id *string `type:"string" required:"true"` - - // LatestVersion is a required field - LatestVersion *int64 `min:"1" type:"integer" required:"true"` - - // Name is a required field - Name *string `type:"string" required:"true"` - - // TrafficPolicyCount is a required field - TrafficPolicyCount *int64 `min:"1" type:"integer" required:"true"` - - // Type is a required field - Type *string `type:"string" required:"true" enum:"RRType"` -} - -// String returns the string representation -func (s TrafficPolicySummary) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TrafficPolicySummary) GoString() string { - return s.String() -} - -// A complex type that contains the health check request information. -type UpdateHealthCheckInput struct { - _ struct{} `locationName:"UpdateHealthCheckRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // A complex type that identifies the CloudWatch alarm that you want Amazon - // Route 53 health checkers to use to determine whether this health check is - // healthy. - AlarmIdentifier *AlarmIdentifier `type:"structure"` - - // A complex type that contains one ChildHealthCheck element for each health - // check that you want to associate with a CALCULATED health check. - ChildHealthChecks []*string `locationNameList:"ChildHealthCheck" type:"list"` - - // Specify whether you want Amazon Route 53 to send the value of FullyQualifiedDomainName - // to the endpoint in the client_hello message during TLS negotiation. This - // allows the endpoint to respond to HTTPS health check requests with the applicable - // SSL/TLS certificate. - // - // Some endpoints require that HTTPS requests include the host name in the - // client_hello message. If you don't enable SNI, the status of the health check - // will be SSL alert handshake_failure. A health check can also have that status - // for other reasons. If SNI is enabled and you're still getting the error, - // check the SSL/TLS configuration on your endpoint and confirm that your certificate - // is valid. - // - // The SSL/TLS certificate on your endpoint includes a domain name in the Common - // Name field and possibly several more in the Subject Alternative Names field. - // One of the domain names in the certificate should match the value that you - // specify for FullyQualifiedDomainName. If the endpoint responds to the client_hello - // message with a certificate that does not include the domain name that you - // specified in FullyQualifiedDomainName, a health checker will retry the handshake. - // In the second attempt, the health checker will omit FullyQualifiedDomainName - // from the client_hello message. - EnableSNI *bool `type:"boolean"` - - // The number of consecutive health checks that an endpoint must pass or fail - // for Amazon Route 53 to change the current status of the endpoint from unhealthy - // to healthy or vice versa. For more information, see How Amazon Route 53 Determines - // Whether an Endpoint Is Healthy (http://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) - // in the Amazon Route 53 Developer Guide. - FailureThreshold *int64 `min:"1" type:"integer"` - - // Amazon Route 53 behavior depends on whether you specify a value for IPAddress. - // - // If a health check already has a value for IPAddress, you can change the - // value. However, you can't update an existing health check to add or remove - // the value of IPAddress. - // - // If you specify IPAddress: - // - // The value that you want Amazon Route 53 to pass in the Host header in all - // health checks except TCP health checks. This is typically the fully qualified - // DNS name of the endpoint on which you want Amazon Route 53 to perform health - // checks. When Amazon Route 53 checks the health of an endpoint, here is how - // it constructs the Host header: - // - // If you specify a value of 80 for Port and HTTP or HTTP_STR_MATCH for Type, - // Amazon Route 53 passes the value of FullyQualifiedDomainName to the endpoint - // in the Host header. - // - // If you specify a value of 443 for Port and HTTPS or HTTPS_STR_MATCH for - // Type, Amazon Route 53 passes the value of FullyQualifiedDomainName to the - // endpoint in the Host header. - // - // If you specify another value for Port and any value except TCP for Type, - // Amazon Route 53 passes FullyQualifiedDomainName:Port to the endpoint in - // the Host header. - // - // If you don't specify a value for FullyQualifiedDomainName, Amazon Route - // 53 substitutes the value of IPAddress in the Host header in each of the above - // cases. - // - // If you don't specify IPAddress: - // - // If you don't specify a value for IPAddress, Amazon Route 53 sends a DNS - // request to the domain that you specify in FullyQualifiedDomainName at the - // interval you specify in RequestInterval. Using an IP address that DNS returns, - // Amazon Route 53 then checks the health of the endpoint. - // - // If you want to check the health of weighted, latency, or failover resource - // record sets and you choose to specify the endpoint only by FullyQualifiedDomainName, - // we recommend that you create a separate health check for each endpoint. For - // example, create a health check for each HTTP server that is serving content - // for www.example.com. For the value of FullyQualifiedDomainName, specify the - // domain name of the server (such as us-east-1-www.example.com), not the name - // of the resource record sets (www.example.com). - // - // In this configuration, if the value of FullyQualifiedDomainName matches - // the name of the resource record sets and you then associate the health check - // with those resource record sets, health check results will be unpredictable. - // - // In addition, if the value of Type is HTTP, HTTPS, HTTP_STR_MATCH, or HTTPS_STR_MATCH, - // Amazon Route 53 passes the value of FullyQualifiedDomainName in the Host - // header, as it does when you specify a value for IPAddress. If the value of - // Type is TCP, Amazon Route 53 doesn't pass a Host header. - FullyQualifiedDomainName *string `type:"string"` - - // The ID for the health check for which you want detailed information. When - // you created the health check, CreateHealthCheck returned the ID in the response, - // in the HealthCheckId element. - // - // HealthCheckId is a required field - HealthCheckId *string `location:"uri" locationName:"HealthCheckId" type:"string" required:"true"` - - // A sequential counter that Amazon Route 53 sets to 1 when you create a health - // check and increments by 1 each time you update settings for the health check. - // - // We recommend that you use GetHealthCheck or ListHealthChecks to get the - // current value of HealthCheckVersion for the health check that you want to - // update, and that you include that value in your UpdateHealthCheck request. - // This prevents Amazon Route 53 from overwriting an intervening update: - // - // f the value in the UpdateHealthCheck request matches the value of HealthCheckVersion - // in the health check, Amazon Route 53 updates the health check with the new - // settings. - // - // If the value of HealthCheckVersion in the health check is greater, the - // health check was changed after you got the version number. Amazon Route 53 - // does not update the health check, and it returns a HealthCheckVersionMismatch - // error. - HealthCheckVersion *int64 `min:"1" type:"long"` - - // The number of child health checks that are associated with a CALCULATED health - // that Amazon Route 53 must consider healthy for the CALCULATED health check - // to be considered healthy. To specify the child health checks that you want - // to associate with a CALCULATED health check, use the ChildHealthChecks and - // ChildHealthCheck elements. - // - // Note the following: - // - // If you specify a number greater than the number of child health checks, - // Amazon Route 53 always considers this health check to be unhealthy. - // - // If you specify 0, Amazon Route 53 always considers this health check to - // be healthy. - HealthThreshold *int64 `type:"integer"` - - // The IPv4 IP address of the endpoint on which you want Amazon Route 53 to - // perform health checks. If you don't specify a value for IPAddress, Amazon - // Route 53 sends a DNS request to resolve the domain name that you specify - // in FullyQualifiedDomainName at the interval you specify in RequestInterval. - // Using an IP address that DNS returns, Amazon Route 53 then checks the health - // of the endpoint. - // - // f the endpoint is an Amazon EC2 instance, we recommend that you create an - // Elastic IP address, associate it with your Amazon EC2 instance, and specify - // the Elastic IP address for IPAddress. This ensures that the IP address of - // your instance never changes. For more information, see Elastic IP Addresses - // (EIP) (http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html) - // in the Amazon EC2 User Guide for Linux Instances. - // - // If a health check already has a value for IPAddress, you can change the - // value. However, you can't update an existing health check to add or remove - // the value of IPAddress. - // - // For more information, see UpdateHealthCheckRequest$FullyQualifiedDomainName. - IPAddress *string `type:"string"` - - InsufficientDataHealthStatus *string `type:"string" enum:"InsufficientDataHealthStatus"` - - // Specify whether you want Amazon Route 53 to invert the status of a health - // check, for example, to consider a health check unhealthy when it otherwise - // would be considered healthy. - Inverted *bool `type:"boolean"` - - // The port on the endpoint on which you want Amazon Route 53 to perform health - // checks. - Port *int64 `min:"1" type:"integer"` - - // A complex type that contains one Region element for each region from which - // you want Amazon Route 53 health checkers to check the specified endpoint. - Regions []*string `locationNameList:"Region" min:"1" type:"list"` - - // The path that you want Amazon Route 53 to request when performing health - // checks. The path can be any value for which your endpoint will return an - // HTTP status code of 2xx or 3xx when the endpoint is healthy, for example - // the file /docs/route53-health-check.html. - // - // Specify this value only if you want to change it. - ResourcePath *string `type:"string"` - - // If the value of Type is HTTP_STR_MATCH or HTTP_STR_MATCH, the string that - // you want Amazon Route 53 to search for in the response body from the specified - // resource. If the string appears in the response body, Amazon Route 53 considers - // the resource healthy. (You can't change the value of Type when you update - // a health check.) - SearchString *string `type:"string"` -} - -// String returns the string representation -func (s UpdateHealthCheckInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateHealthCheckInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateHealthCheckInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateHealthCheckInput"} - if s.FailureThreshold != nil && *s.FailureThreshold < 1 { - invalidParams.Add(request.NewErrParamMinValue("FailureThreshold", 1)) - } - if s.HealthCheckId == nil { - invalidParams.Add(request.NewErrParamRequired("HealthCheckId")) - } - if s.HealthCheckVersion != nil && *s.HealthCheckVersion < 1 { - invalidParams.Add(request.NewErrParamMinValue("HealthCheckVersion", 1)) - } - if s.Port != nil && *s.Port < 1 { - invalidParams.Add(request.NewErrParamMinValue("Port", 1)) - } - if s.Regions != nil && len(s.Regions) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Regions", 1)) - } - if s.AlarmIdentifier != nil { - if err := s.AlarmIdentifier.Validate(); err != nil { - invalidParams.AddNested("AlarmIdentifier", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type UpdateHealthCheckOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains information about one health check that is associated - // with the current AWS account. - // - // HealthCheck is a required field - HealthCheck *HealthCheck `type:"structure" required:"true"` -} - -// String returns the string representation -func (s UpdateHealthCheckOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateHealthCheckOutput) GoString() string { - return s.String() -} - -// A complex type that contains the hosted zone request information. -type UpdateHostedZoneCommentInput struct { - _ struct{} `locationName:"UpdateHostedZoneCommentRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // The new comment for the hosted zone. If you don't specify a value for Comment, - // Amazon Route 53 deletes the existing value of the Comment element, if any. - Comment *string `type:"string"` - - // The ID for the hosted zone for which you want to update the comment. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` -} - -// String returns the string representation -func (s UpdateHostedZoneCommentInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateHostedZoneCommentInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateHostedZoneCommentInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateHostedZoneCommentInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response to the UpdateHostedZoneCommentRequest. -type UpdateHostedZoneCommentOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains general information about the hosted zone. - // - // HostedZone is a required field - HostedZone *HostedZone `type:"structure" required:"true"` -} - -// String returns the string representation -func (s UpdateHostedZoneCommentOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateHostedZoneCommentOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the traffic policy for which -// you want to update the comment. -type UpdateTrafficPolicyCommentInput struct { - _ struct{} `locationName:"UpdateTrafficPolicyCommentRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // The new comment for the specified traffic policy and version. - // - // Comment is a required field - Comment *string `type:"string" required:"true"` - - // The value of Id for the traffic policy for which you want to update the comment. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The value of Version for the traffic policy for which you want to update - // the comment. - // - // Version is a required field - Version *int64 `location:"uri" locationName:"Version" min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s UpdateTrafficPolicyCommentInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateTrafficPolicyCommentInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateTrafficPolicyCommentInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateTrafficPolicyCommentInput"} - if s.Comment == nil { - invalidParams.Add(request.NewErrParamRequired("Comment")) - } - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.Version == nil { - invalidParams.Add(request.NewErrParamRequired("Version")) - } - if s.Version != nil && *s.Version < 1 { - invalidParams.Add(request.NewErrParamMinValue("Version", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains the response information for the traffic policy. -type UpdateTrafficPolicyCommentOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains settings for the specified traffic policy. - // - // TrafficPolicy is a required field - TrafficPolicy *TrafficPolicy `type:"structure" required:"true"` -} - -// String returns the string representation -func (s UpdateTrafficPolicyCommentOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateTrafficPolicyCommentOutput) GoString() string { - return s.String() -} - -// A complex type that contains information about the resource record sets that -// you want to update based on a specified traffic policy instance. -type UpdateTrafficPolicyInstanceInput struct { - _ struct{} `locationName:"UpdateTrafficPolicyInstanceRequest" type:"structure" xmlURI:"https://route53.amazonaws.com/doc/2013-04-01/"` - - // The ID of the traffic policy instance that you want to update. - // - // Id is a required field - Id *string `location:"uri" locationName:"Id" type:"string" required:"true"` - - // The TTL that you want Amazon Route 53 to assign to all of the updated resource - // record sets. - // - // TTL is a required field - TTL *int64 `type:"long" required:"true"` - - // The ID of the traffic policy that you want Amazon Route 53 to use to update - // resource record sets for the specified traffic policy instance. - // - // TrafficPolicyId is a required field - TrafficPolicyId *string `type:"string" required:"true"` - - // The version of the traffic policy that you want Amazon Route 53 to use to - // update resource record sets for the specified traffic policy instance. - // - // TrafficPolicyVersion is a required field - TrafficPolicyVersion *int64 `min:"1" type:"integer" required:"true"` -} - -// String returns the string representation -func (s UpdateTrafficPolicyInstanceInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateTrafficPolicyInstanceInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UpdateTrafficPolicyInstanceInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UpdateTrafficPolicyInstanceInput"} - if s.Id == nil { - invalidParams.Add(request.NewErrParamRequired("Id")) - } - if s.TTL == nil { - invalidParams.Add(request.NewErrParamRequired("TTL")) - } - if s.TrafficPolicyId == nil { - invalidParams.Add(request.NewErrParamRequired("TrafficPolicyId")) - } - if s.TrafficPolicyVersion == nil { - invalidParams.Add(request.NewErrParamRequired("TrafficPolicyVersion")) - } - if s.TrafficPolicyVersion != nil && *s.TrafficPolicyVersion < 1 { - invalidParams.Add(request.NewErrParamMinValue("TrafficPolicyVersion", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A complex type that contains information about the resource record sets that -// Amazon Route 53 created based on a specified traffic policy. -type UpdateTrafficPolicyInstanceOutput struct { - _ struct{} `type:"structure"` - - // A complex type that contains settings for the updated traffic policy instance. - // - // TrafficPolicyInstance is a required field - TrafficPolicyInstance *TrafficPolicyInstance `type:"structure" required:"true"` -} - -// String returns the string representation -func (s UpdateTrafficPolicyInstanceOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UpdateTrafficPolicyInstanceOutput) GoString() string { - return s.String() -} - -type VPC struct { - _ struct{} `type:"structure"` - - // A VPC ID - VPCId *string `type:"string"` - - VPCRegion *string `min:"1" type:"string" enum:"VPCRegion"` -} - -// String returns the string representation -func (s VPC) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VPC) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *VPC) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "VPC"} - if s.VPCRegion != nil && len(*s.VPCRegion) < 1 { - invalidParams.Add(request.NewErrParamMinLen("VPCRegion", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -const ( - // ChangeActionCreate is a ChangeAction enum value - ChangeActionCreate = "CREATE" - - // ChangeActionDelete is a ChangeAction enum value - ChangeActionDelete = "DELETE" - - // ChangeActionUpsert is a ChangeAction enum value - ChangeActionUpsert = "UPSERT" -) - -const ( - // ChangeStatusPending is a ChangeStatus enum value - ChangeStatusPending = "PENDING" - - // ChangeStatusInsync is a ChangeStatus enum value - ChangeStatusInsync = "INSYNC" -) - -const ( - // CloudWatchRegionUsEast1 is a CloudWatchRegion enum value - CloudWatchRegionUsEast1 = "us-east-1" - - // CloudWatchRegionUsWest1 is a CloudWatchRegion enum value - CloudWatchRegionUsWest1 = "us-west-1" - - // CloudWatchRegionUsWest2 is a CloudWatchRegion enum value - CloudWatchRegionUsWest2 = "us-west-2" - - // CloudWatchRegionEuCentral1 is a CloudWatchRegion enum value - CloudWatchRegionEuCentral1 = "eu-central-1" - - // CloudWatchRegionEuWest1 is a CloudWatchRegion enum value - CloudWatchRegionEuWest1 = "eu-west-1" - - // CloudWatchRegionApSouth1 is a CloudWatchRegion enum value - CloudWatchRegionApSouth1 = "ap-south-1" - - // CloudWatchRegionApSoutheast1 is a CloudWatchRegion enum value - CloudWatchRegionApSoutheast1 = "ap-southeast-1" - - // CloudWatchRegionApSoutheast2 is a CloudWatchRegion enum value - CloudWatchRegionApSoutheast2 = "ap-southeast-2" - - // CloudWatchRegionApNortheast1 is a CloudWatchRegion enum value - CloudWatchRegionApNortheast1 = "ap-northeast-1" - - // CloudWatchRegionApNortheast2 is a CloudWatchRegion enum value - CloudWatchRegionApNortheast2 = "ap-northeast-2" - - // CloudWatchRegionSaEast1 is a CloudWatchRegion enum value - CloudWatchRegionSaEast1 = "sa-east-1" -) - -const ( - // ComparisonOperatorGreaterThanOrEqualToThreshold is a ComparisonOperator enum value - ComparisonOperatorGreaterThanOrEqualToThreshold = "GreaterThanOrEqualToThreshold" - - // ComparisonOperatorGreaterThanThreshold is a ComparisonOperator enum value - ComparisonOperatorGreaterThanThreshold = "GreaterThanThreshold" - - // ComparisonOperatorLessThanThreshold is a ComparisonOperator enum value - ComparisonOperatorLessThanThreshold = "LessThanThreshold" - - // ComparisonOperatorLessThanOrEqualToThreshold is a ComparisonOperator enum value - ComparisonOperatorLessThanOrEqualToThreshold = "LessThanOrEqualToThreshold" -) - -// An Amazon EC2 region that you want Amazon Route 53 to use to perform health -// checks. -const ( - // HealthCheckRegionUsEast1 is a HealthCheckRegion enum value - HealthCheckRegionUsEast1 = "us-east-1" - - // HealthCheckRegionUsWest1 is a HealthCheckRegion enum value - HealthCheckRegionUsWest1 = "us-west-1" - - // HealthCheckRegionUsWest2 is a HealthCheckRegion enum value - HealthCheckRegionUsWest2 = "us-west-2" - - // HealthCheckRegionEuWest1 is a HealthCheckRegion enum value - HealthCheckRegionEuWest1 = "eu-west-1" - - // HealthCheckRegionApSoutheast1 is a HealthCheckRegion enum value - HealthCheckRegionApSoutheast1 = "ap-southeast-1" - - // HealthCheckRegionApSoutheast2 is a HealthCheckRegion enum value - HealthCheckRegionApSoutheast2 = "ap-southeast-2" - - // HealthCheckRegionApNortheast1 is a HealthCheckRegion enum value - HealthCheckRegionApNortheast1 = "ap-northeast-1" - - // HealthCheckRegionSaEast1 is a HealthCheckRegion enum value - HealthCheckRegionSaEast1 = "sa-east-1" -) - -const ( - // HealthCheckTypeHttp is a HealthCheckType enum value - HealthCheckTypeHttp = "HTTP" - - // HealthCheckTypeHttps is a HealthCheckType enum value - HealthCheckTypeHttps = "HTTPS" - - // HealthCheckTypeHttpStrMatch is a HealthCheckType enum value - HealthCheckTypeHttpStrMatch = "HTTP_STR_MATCH" - - // HealthCheckTypeHttpsStrMatch is a HealthCheckType enum value - HealthCheckTypeHttpsStrMatch = "HTTPS_STR_MATCH" - - // HealthCheckTypeTcp is a HealthCheckType enum value - HealthCheckTypeTcp = "TCP" - - // HealthCheckTypeCalculated is a HealthCheckType enum value - HealthCheckTypeCalculated = "CALCULATED" - - // HealthCheckTypeCloudwatchMetric is a HealthCheckType enum value - HealthCheckTypeCloudwatchMetric = "CLOUDWATCH_METRIC" -) - -const ( - // InsufficientDataHealthStatusHealthy is a InsufficientDataHealthStatus enum value - InsufficientDataHealthStatusHealthy = "Healthy" - - // InsufficientDataHealthStatusUnhealthy is a InsufficientDataHealthStatus enum value - InsufficientDataHealthStatusUnhealthy = "Unhealthy" - - // InsufficientDataHealthStatusLastKnownStatus is a InsufficientDataHealthStatus enum value - InsufficientDataHealthStatusLastKnownStatus = "LastKnownStatus" -) - -const ( - // RRTypeSoa is a RRType enum value - RRTypeSoa = "SOA" - - // RRTypeA is a RRType enum value - RRTypeA = "A" - - // RRTypeTxt is a RRType enum value - RRTypeTxt = "TXT" - - // RRTypeNs is a RRType enum value - RRTypeNs = "NS" - - // RRTypeCname is a RRType enum value - RRTypeCname = "CNAME" - - // RRTypeMx is a RRType enum value - RRTypeMx = "MX" - - // RRTypeNaptr is a RRType enum value - RRTypeNaptr = "NAPTR" - - // RRTypePtr is a RRType enum value - RRTypePtr = "PTR" - - // RRTypeSrv is a RRType enum value - RRTypeSrv = "SRV" - - // RRTypeSpf is a RRType enum value - RRTypeSpf = "SPF" - - // RRTypeAaaa is a RRType enum value - RRTypeAaaa = "AAAA" -) - -const ( - // ResourceRecordSetFailoverPrimary is a ResourceRecordSetFailover enum value - ResourceRecordSetFailoverPrimary = "PRIMARY" - - // ResourceRecordSetFailoverSecondary is a ResourceRecordSetFailover enum value - ResourceRecordSetFailoverSecondary = "SECONDARY" -) - -const ( - // ResourceRecordSetRegionUsEast1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionUsEast1 = "us-east-1" - - // ResourceRecordSetRegionUsWest1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionUsWest1 = "us-west-1" - - // ResourceRecordSetRegionUsWest2 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionUsWest2 = "us-west-2" - - // ResourceRecordSetRegionEuWest1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionEuWest1 = "eu-west-1" - - // ResourceRecordSetRegionEuCentral1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionEuCentral1 = "eu-central-1" - - // ResourceRecordSetRegionApSoutheast1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionApSoutheast1 = "ap-southeast-1" - - // ResourceRecordSetRegionApSoutheast2 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionApSoutheast2 = "ap-southeast-2" - - // ResourceRecordSetRegionApNortheast1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionApNortheast1 = "ap-northeast-1" - - // ResourceRecordSetRegionApNortheast2 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionApNortheast2 = "ap-northeast-2" - - // ResourceRecordSetRegionSaEast1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionSaEast1 = "sa-east-1" - - // ResourceRecordSetRegionCnNorth1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionCnNorth1 = "cn-north-1" - - // ResourceRecordSetRegionApSouth1 is a ResourceRecordSetRegion enum value - ResourceRecordSetRegionApSouth1 = "ap-south-1" -) - -const ( - // StatisticAverage is a Statistic enum value - StatisticAverage = "Average" - - // StatisticSum is a Statistic enum value - StatisticSum = "Sum" - - // StatisticSampleCount is a Statistic enum value - StatisticSampleCount = "SampleCount" - - // StatisticMaximum is a Statistic enum value - StatisticMaximum = "Maximum" - - // StatisticMinimum is a Statistic enum value - StatisticMinimum = "Minimum" -) - -const ( - // TagResourceTypeHealthcheck is a TagResourceType enum value - TagResourceTypeHealthcheck = "healthcheck" - - // TagResourceTypeHostedzone is a TagResourceType enum value - TagResourceTypeHostedzone = "hostedzone" -) - -const ( - // VPCRegionUsEast1 is a VPCRegion enum value - VPCRegionUsEast1 = "us-east-1" - - // VPCRegionUsWest1 is a VPCRegion enum value - VPCRegionUsWest1 = "us-west-1" - - // VPCRegionUsWest2 is a VPCRegion enum value - VPCRegionUsWest2 = "us-west-2" - - // VPCRegionEuWest1 is a VPCRegion enum value - VPCRegionEuWest1 = "eu-west-1" - - // VPCRegionEuCentral1 is a VPCRegion enum value - VPCRegionEuCentral1 = "eu-central-1" - - // VPCRegionApSoutheast1 is a VPCRegion enum value - VPCRegionApSoutheast1 = "ap-southeast-1" - - // VPCRegionApSoutheast2 is a VPCRegion enum value - VPCRegionApSoutheast2 = "ap-southeast-2" - - // VPCRegionApSouth1 is a VPCRegion enum value - VPCRegionApSouth1 = "ap-south-1" - - // VPCRegionApNortheast1 is a VPCRegion enum value - VPCRegionApNortheast1 = "ap-northeast-1" - - // VPCRegionApNortheast2 is a VPCRegion enum value - VPCRegionApNortheast2 = "ap-northeast-2" - - // VPCRegionSaEast1 is a VPCRegion enum value - VPCRegionSaEast1 = "sa-east-1" - - // VPCRegionCnNorth1 is a VPCRegion enum value - VPCRegionCnNorth1 = "cn-north-1" -) diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/customizations.go b/vendor/github.com/aws/aws-sdk-go/service/route53/customizations.go deleted file mode 100644 index 91af196e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/customizations.go +++ /dev/null @@ -1,30 +0,0 @@ -package route53 - -import ( - "regexp" - - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -func init() { - initClient = func(c *client.Client) { - c.Handlers.Build.PushBack(sanitizeURL) - } - - initRequest = func(r *request.Request) { - switch r.Operation.Name { - case opChangeResourceRecordSets: - r.Handlers.UnmarshalError.Remove(restxml.UnmarshalErrorHandler) - r.Handlers.UnmarshalError.PushBack(unmarshalChangeResourceRecordSetsError) - } - } -} - -var reSanitizeURL = regexp.MustCompile(`\/%2F\w+%2F`) - -func sanitizeURL(r *request.Request) { - r.HTTPRequest.URL.Opaque = - reSanitizeURL.ReplaceAllString(r.HTTPRequest.URL.Opaque, "/") -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/customizations_test.go b/vendor/github.com/aws/aws-sdk-go/service/route53/customizations_test.go deleted file mode 100644 index 518790a2..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/customizations_test.go +++ /dev/null @@ -1,22 +0,0 @@ -package route53_test - -import ( - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/awstesting" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/route53" -) - -func TestBuildCorrectURI(t *testing.T) { - svc := route53.New(unit.Session) - svc.Handlers.Validate.Clear() - req, _ := svc.GetHostedZoneRequest(&route53.GetHostedZoneInput{ - Id: aws.String("/hostedzone/ABCDEFG"), - }) - - req.Build() - - awstesting.Match(t, `\/hostedzone\/ABCDEFG$`, req.HTTPRequest.URL.String()) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/route53/examples_test.go deleted file mode 100644 index a297b024..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/examples_test.go +++ /dev/null @@ -1,1418 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package route53_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/route53" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleRoute53_AssociateVPCWithHostedZone() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.AssociateVPCWithHostedZoneInput{ - HostedZoneId: aws.String("ResourceId"), // Required - VPC: &route53.VPC{ // Required - VPCId: aws.String("VPCId"), - VPCRegion: aws.String("VPCRegion"), - }, - Comment: aws.String("AssociateVPCComment"), - } - resp, err := svc.AssociateVPCWithHostedZone(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ChangeResourceRecordSets() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ChangeResourceRecordSetsInput{ - ChangeBatch: &route53.ChangeBatch{ // Required - Changes: []*route53.Change{ // Required - { // Required - Action: aws.String("ChangeAction"), // Required - ResourceRecordSet: &route53.ResourceRecordSet{ // Required - Name: aws.String("DNSName"), // Required - Type: aws.String("RRType"), // Required - AliasTarget: &route53.AliasTarget{ - DNSName: aws.String("DNSName"), // Required - EvaluateTargetHealth: aws.Bool(true), // Required - HostedZoneId: aws.String("ResourceId"), // Required - }, - Failover: aws.String("ResourceRecordSetFailover"), - GeoLocation: &route53.GeoLocation{ - ContinentCode: aws.String("GeoLocationContinentCode"), - CountryCode: aws.String("GeoLocationCountryCode"), - SubdivisionCode: aws.String("GeoLocationSubdivisionCode"), - }, - HealthCheckId: aws.String("HealthCheckId"), - Region: aws.String("ResourceRecordSetRegion"), - ResourceRecords: []*route53.ResourceRecord{ - { // Required - Value: aws.String("RData"), // Required - }, - // More values... - }, - SetIdentifier: aws.String("ResourceRecordSetIdentifier"), - TTL: aws.Int64(1), - TrafficPolicyInstanceId: aws.String("TrafficPolicyInstanceId"), - Weight: aws.Int64(1), - }, - }, - // More values... - }, - Comment: aws.String("ResourceDescription"), - }, - HostedZoneId: aws.String("ResourceId"), // Required - } - resp, err := svc.ChangeResourceRecordSets(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ChangeTagsForResource() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ChangeTagsForResourceInput{ - ResourceId: aws.String("TagResourceId"), // Required - ResourceType: aws.String("TagResourceType"), // Required - AddTags: []*route53.Tag{ - { // Required - Key: aws.String("TagKey"), - Value: aws.String("TagValue"), - }, - // More values... - }, - RemoveTagKeys: []*string{ - aws.String("TagKey"), // Required - // More values... - }, - } - resp, err := svc.ChangeTagsForResource(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_CreateHealthCheck() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.CreateHealthCheckInput{ - CallerReference: aws.String("HealthCheckNonce"), // Required - HealthCheckConfig: &route53.HealthCheckConfig{ // Required - Type: aws.String("HealthCheckType"), // Required - AlarmIdentifier: &route53.AlarmIdentifier{ - Name: aws.String("AlarmName"), // Required - Region: aws.String("CloudWatchRegion"), // Required - }, - ChildHealthChecks: []*string{ - aws.String("HealthCheckId"), // Required - // More values... - }, - EnableSNI: aws.Bool(true), - FailureThreshold: aws.Int64(1), - FullyQualifiedDomainName: aws.String("FullyQualifiedDomainName"), - HealthThreshold: aws.Int64(1), - IPAddress: aws.String("IPAddress"), - InsufficientDataHealthStatus: aws.String("InsufficientDataHealthStatus"), - Inverted: aws.Bool(true), - MeasureLatency: aws.Bool(true), - Port: aws.Int64(1), - Regions: []*string{ - aws.String("HealthCheckRegion"), // Required - // More values... - }, - RequestInterval: aws.Int64(1), - ResourcePath: aws.String("ResourcePath"), - SearchString: aws.String("SearchString"), - }, - } - resp, err := svc.CreateHealthCheck(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_CreateHostedZone() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.CreateHostedZoneInput{ - CallerReference: aws.String("Nonce"), // Required - Name: aws.String("DNSName"), // Required - DelegationSetId: aws.String("ResourceId"), - HostedZoneConfig: &route53.HostedZoneConfig{ - Comment: aws.String("ResourceDescription"), - PrivateZone: aws.Bool(true), - }, - VPC: &route53.VPC{ - VPCId: aws.String("VPCId"), - VPCRegion: aws.String("VPCRegion"), - }, - } - resp, err := svc.CreateHostedZone(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_CreateReusableDelegationSet() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.CreateReusableDelegationSetInput{ - CallerReference: aws.String("Nonce"), // Required - HostedZoneId: aws.String("ResourceId"), - } - resp, err := svc.CreateReusableDelegationSet(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_CreateTrafficPolicy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.CreateTrafficPolicyInput{ - Document: aws.String("TrafficPolicyDocument"), // Required - Name: aws.String("TrafficPolicyName"), // Required - Comment: aws.String("TrafficPolicyComment"), - } - resp, err := svc.CreateTrafficPolicy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_CreateTrafficPolicyInstance() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.CreateTrafficPolicyInstanceInput{ - HostedZoneId: aws.String("ResourceId"), // Required - Name: aws.String("DNSName"), // Required - TTL: aws.Int64(1), // Required - TrafficPolicyId: aws.String("TrafficPolicyId"), // Required - TrafficPolicyVersion: aws.Int64(1), // Required - } - resp, err := svc.CreateTrafficPolicyInstance(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_CreateTrafficPolicyVersion() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.CreateTrafficPolicyVersionInput{ - Document: aws.String("TrafficPolicyDocument"), // Required - Id: aws.String("TrafficPolicyId"), // Required - Comment: aws.String("TrafficPolicyComment"), - } - resp, err := svc.CreateTrafficPolicyVersion(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_DeleteHealthCheck() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.DeleteHealthCheckInput{ - HealthCheckId: aws.String("HealthCheckId"), // Required - } - resp, err := svc.DeleteHealthCheck(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_DeleteHostedZone() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.DeleteHostedZoneInput{ - Id: aws.String("ResourceId"), // Required - } - resp, err := svc.DeleteHostedZone(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_DeleteReusableDelegationSet() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.DeleteReusableDelegationSetInput{ - Id: aws.String("ResourceId"), // Required - } - resp, err := svc.DeleteReusableDelegationSet(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_DeleteTrafficPolicy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.DeleteTrafficPolicyInput{ - Id: aws.String("TrafficPolicyId"), // Required - Version: aws.Int64(1), // Required - } - resp, err := svc.DeleteTrafficPolicy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_DeleteTrafficPolicyInstance() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.DeleteTrafficPolicyInstanceInput{ - Id: aws.String("TrafficPolicyInstanceId"), // Required - } - resp, err := svc.DeleteTrafficPolicyInstance(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_DisassociateVPCFromHostedZone() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.DisassociateVPCFromHostedZoneInput{ - HostedZoneId: aws.String("ResourceId"), // Required - VPC: &route53.VPC{ // Required - VPCId: aws.String("VPCId"), - VPCRegion: aws.String("VPCRegion"), - }, - Comment: aws.String("DisassociateVPCComment"), - } - resp, err := svc.DisassociateVPCFromHostedZone(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetChange() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetChangeInput{ - Id: aws.String("ResourceId"), // Required - } - resp, err := svc.GetChange(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetChangeDetails() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetChangeDetailsInput{ - Id: aws.String("ResourceId"), // Required - } - resp, err := svc.GetChangeDetails(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetCheckerIpRanges() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - var params *route53.GetCheckerIpRangesInput - resp, err := svc.GetCheckerIpRanges(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetGeoLocation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetGeoLocationInput{ - ContinentCode: aws.String("GeoLocationContinentCode"), - CountryCode: aws.String("GeoLocationCountryCode"), - SubdivisionCode: aws.String("GeoLocationSubdivisionCode"), - } - resp, err := svc.GetGeoLocation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetHealthCheck() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetHealthCheckInput{ - HealthCheckId: aws.String("HealthCheckId"), // Required - } - resp, err := svc.GetHealthCheck(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetHealthCheckCount() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - var params *route53.GetHealthCheckCountInput - resp, err := svc.GetHealthCheckCount(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetHealthCheckLastFailureReason() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetHealthCheckLastFailureReasonInput{ - HealthCheckId: aws.String("HealthCheckId"), // Required - } - resp, err := svc.GetHealthCheckLastFailureReason(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetHealthCheckStatus() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetHealthCheckStatusInput{ - HealthCheckId: aws.String("HealthCheckId"), // Required - } - resp, err := svc.GetHealthCheckStatus(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetHostedZone() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetHostedZoneInput{ - Id: aws.String("ResourceId"), // Required - } - resp, err := svc.GetHostedZone(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetHostedZoneCount() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - var params *route53.GetHostedZoneCountInput - resp, err := svc.GetHostedZoneCount(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetReusableDelegationSet() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetReusableDelegationSetInput{ - Id: aws.String("ResourceId"), // Required - } - resp, err := svc.GetReusableDelegationSet(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetTrafficPolicy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetTrafficPolicyInput{ - Id: aws.String("TrafficPolicyId"), // Required - Version: aws.Int64(1), // Required - } - resp, err := svc.GetTrafficPolicy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetTrafficPolicyInstance() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.GetTrafficPolicyInstanceInput{ - Id: aws.String("TrafficPolicyInstanceId"), // Required - } - resp, err := svc.GetTrafficPolicyInstance(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_GetTrafficPolicyInstanceCount() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - var params *route53.GetTrafficPolicyInstanceCountInput - resp, err := svc.GetTrafficPolicyInstanceCount(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListChangeBatchesByHostedZone() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListChangeBatchesByHostedZoneInput{ - EndDate: aws.String("Date"), // Required - HostedZoneId: aws.String("ResourceId"), // Required - StartDate: aws.String("Date"), // Required - Marker: aws.String("PageMarker"), - MaxItems: aws.String("PageMaxItems"), - } - resp, err := svc.ListChangeBatchesByHostedZone(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListChangeBatchesByRRSet() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListChangeBatchesByRRSetInput{ - EndDate: aws.String("Date"), // Required - HostedZoneId: aws.String("ResourceId"), // Required - Name: aws.String("DNSName"), // Required - StartDate: aws.String("Date"), // Required - Type: aws.String("RRType"), // Required - Marker: aws.String("PageMarker"), - MaxItems: aws.String("PageMaxItems"), - SetIdentifier: aws.String("ResourceRecordSetIdentifier"), - } - resp, err := svc.ListChangeBatchesByRRSet(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListGeoLocations() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListGeoLocationsInput{ - MaxItems: aws.String("PageMaxItems"), - StartContinentCode: aws.String("GeoLocationContinentCode"), - StartCountryCode: aws.String("GeoLocationCountryCode"), - StartSubdivisionCode: aws.String("GeoLocationSubdivisionCode"), - } - resp, err := svc.ListGeoLocations(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListHealthChecks() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListHealthChecksInput{ - Marker: aws.String("PageMarker"), - MaxItems: aws.String("PageMaxItems"), - } - resp, err := svc.ListHealthChecks(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListHostedZones() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListHostedZonesInput{ - DelegationSetId: aws.String("ResourceId"), - Marker: aws.String("PageMarker"), - MaxItems: aws.String("PageMaxItems"), - } - resp, err := svc.ListHostedZones(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListHostedZonesByName() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListHostedZonesByNameInput{ - DNSName: aws.String("DNSName"), - HostedZoneId: aws.String("ResourceId"), - MaxItems: aws.String("PageMaxItems"), - } - resp, err := svc.ListHostedZonesByName(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListResourceRecordSets() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListResourceRecordSetsInput{ - HostedZoneId: aws.String("ResourceId"), // Required - MaxItems: aws.String("PageMaxItems"), - StartRecordIdentifier: aws.String("ResourceRecordSetIdentifier"), - StartRecordName: aws.String("DNSName"), - StartRecordType: aws.String("RRType"), - } - resp, err := svc.ListResourceRecordSets(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListReusableDelegationSets() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListReusableDelegationSetsInput{ - Marker: aws.String("PageMarker"), - MaxItems: aws.String("PageMaxItems"), - } - resp, err := svc.ListReusableDelegationSets(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListTagsForResource() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListTagsForResourceInput{ - ResourceId: aws.String("TagResourceId"), // Required - ResourceType: aws.String("TagResourceType"), // Required - } - resp, err := svc.ListTagsForResource(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListTagsForResources() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListTagsForResourcesInput{ - ResourceIds: []*string{ // Required - aws.String("TagResourceId"), // Required - // More values... - }, - ResourceType: aws.String("TagResourceType"), // Required - } - resp, err := svc.ListTagsForResources(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListTrafficPolicies() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListTrafficPoliciesInput{ - MaxItems: aws.String("PageMaxItems"), - TrafficPolicyIdMarker: aws.String("TrafficPolicyId"), - } - resp, err := svc.ListTrafficPolicies(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListTrafficPolicyInstances() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListTrafficPolicyInstancesInput{ - HostedZoneIdMarker: aws.String("ResourceId"), - MaxItems: aws.String("PageMaxItems"), - TrafficPolicyInstanceNameMarker: aws.String("DNSName"), - TrafficPolicyInstanceTypeMarker: aws.String("RRType"), - } - resp, err := svc.ListTrafficPolicyInstances(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListTrafficPolicyInstancesByHostedZone() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListTrafficPolicyInstancesByHostedZoneInput{ - HostedZoneId: aws.String("ResourceId"), // Required - MaxItems: aws.String("PageMaxItems"), - TrafficPolicyInstanceNameMarker: aws.String("DNSName"), - TrafficPolicyInstanceTypeMarker: aws.String("RRType"), - } - resp, err := svc.ListTrafficPolicyInstancesByHostedZone(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListTrafficPolicyInstancesByPolicy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListTrafficPolicyInstancesByPolicyInput{ - TrafficPolicyId: aws.String("TrafficPolicyId"), // Required - TrafficPolicyVersion: aws.Int64(1), // Required - HostedZoneIdMarker: aws.String("ResourceId"), - MaxItems: aws.String("PageMaxItems"), - TrafficPolicyInstanceNameMarker: aws.String("DNSName"), - TrafficPolicyInstanceTypeMarker: aws.String("RRType"), - } - resp, err := svc.ListTrafficPolicyInstancesByPolicy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_ListTrafficPolicyVersions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.ListTrafficPolicyVersionsInput{ - Id: aws.String("TrafficPolicyId"), // Required - MaxItems: aws.String("PageMaxItems"), - TrafficPolicyVersionMarker: aws.String("TrafficPolicyVersionMarker"), - } - resp, err := svc.ListTrafficPolicyVersions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_TestDNSAnswer() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.TestDNSAnswerInput{ - HostedZoneId: aws.String("ResourceId"), // Required - RecordName: aws.String("DNSName"), // Required - RecordType: aws.String("RRType"), // Required - EDNS0ClientSubnetIP: aws.String("IPAddress"), - EDNS0ClientSubnetMask: aws.String("SubnetMask"), - ResolverIP: aws.String("IPAddress"), - } - resp, err := svc.TestDNSAnswer(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_UpdateHealthCheck() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.UpdateHealthCheckInput{ - HealthCheckId: aws.String("HealthCheckId"), // Required - AlarmIdentifier: &route53.AlarmIdentifier{ - Name: aws.String("AlarmName"), // Required - Region: aws.String("CloudWatchRegion"), // Required - }, - ChildHealthChecks: []*string{ - aws.String("HealthCheckId"), // Required - // More values... - }, - EnableSNI: aws.Bool(true), - FailureThreshold: aws.Int64(1), - FullyQualifiedDomainName: aws.String("FullyQualifiedDomainName"), - HealthCheckVersion: aws.Int64(1), - HealthThreshold: aws.Int64(1), - IPAddress: aws.String("IPAddress"), - InsufficientDataHealthStatus: aws.String("InsufficientDataHealthStatus"), - Inverted: aws.Bool(true), - Port: aws.Int64(1), - Regions: []*string{ - aws.String("HealthCheckRegion"), // Required - // More values... - }, - ResourcePath: aws.String("ResourcePath"), - SearchString: aws.String("SearchString"), - } - resp, err := svc.UpdateHealthCheck(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_UpdateHostedZoneComment() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.UpdateHostedZoneCommentInput{ - Id: aws.String("ResourceId"), // Required - Comment: aws.String("ResourceDescription"), - } - resp, err := svc.UpdateHostedZoneComment(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_UpdateTrafficPolicyComment() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.UpdateTrafficPolicyCommentInput{ - Comment: aws.String("TrafficPolicyComment"), // Required - Id: aws.String("TrafficPolicyId"), // Required - Version: aws.Int64(1), // Required - } - resp, err := svc.UpdateTrafficPolicyComment(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleRoute53_UpdateTrafficPolicyInstance() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := route53.New(sess) - - params := &route53.UpdateTrafficPolicyInstanceInput{ - Id: aws.String("TrafficPolicyInstanceId"), // Required - TTL: aws.Int64(1), // Required - TrafficPolicyId: aws.String("TrafficPolicyId"), // Required - TrafficPolicyVersion: aws.Int64(1), // Required - } - resp, err := svc.UpdateTrafficPolicyInstance(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/service.go b/vendor/github.com/aws/aws-sdk-go/service/route53/service.go deleted file mode 100644 index 269c4db3..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/service.go +++ /dev/null @@ -1,86 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package route53 - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -// Route53 is a client for Route 53. -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type Route53 struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "route53" - -// New creates a new instance of the Route53 client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a Route53 client from just a session. -// svc := route53.New(mySession) -// -// // Create a Route53 client with additional configuration -// svc := route53.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *Route53 { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *Route53 { - svc := &Route53{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2013-04-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a Route53 operation and runs any -// custom request initialization. -func (c *Route53) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error.go b/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error.go deleted file mode 100644 index 266e9a8b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error.go +++ /dev/null @@ -1,77 +0,0 @@ -package route53 - -import ( - "bytes" - "encoding/xml" - "io/ioutil" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -type baseXMLErrorResponse struct { - XMLName xml.Name -} - -type standardXMLErrorResponse struct { - XMLName xml.Name `xml:"ErrorResponse"` - Code string `xml:"Error>Code"` - Message string `xml:"Error>Message"` - RequestID string `xml:"RequestId"` -} - -type invalidChangeBatchXMLErrorResponse struct { - XMLName xml.Name `xml:"InvalidChangeBatch"` - Messages []string `xml:"Messages>Message"` -} - -func unmarshalChangeResourceRecordSetsError(r *request.Request) { - defer r.HTTPResponse.Body.Close() - - responseBody, err := ioutil.ReadAll(r.HTTPResponse.Body) - - if err != nil { - r.Error = awserr.New("SerializationError", "failed to read Route53 XML error response", err) - return - } - - baseError := &baseXMLErrorResponse{} - - if err := xml.Unmarshal(responseBody, baseError); err != nil { - r.Error = awserr.New("SerializationError", "failed to decode Route53 XML error response", err) - return - } - - switch baseError.XMLName.Local { - case "InvalidChangeBatch": - unmarshalInvalidChangeBatchError(r, responseBody) - default: - r.HTTPResponse.Body = ioutil.NopCloser(bytes.NewReader(responseBody)) - restxml.UnmarshalError(r) - } -} - -func unmarshalInvalidChangeBatchError(r *request.Request, requestBody []byte) { - resp := &invalidChangeBatchXMLErrorResponse{} - err := xml.Unmarshal(requestBody, resp) - - if err != nil { - r.Error = awserr.New("SerializationError", "failed to decode query XML error response", err) - return - } - - const errorCode = "InvalidChangeBatch" - errors := []error{} - - for _, msg := range resp.Messages { - errors = append(errors, awserr.New(errorCode, msg, nil)) - } - - r.Error = awserr.NewRequestFailure( - awserr.NewBatchError(errorCode, "ChangeBatch errors occurred", errors), - r.HTTPResponse.StatusCode, - r.RequestID, - ) - -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_leak_test.go b/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_leak_test.go deleted file mode 100644 index 2d6d86d8..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_leak_test.go +++ /dev/null @@ -1,37 +0,0 @@ -package route53 - -import ( - "net/http" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" -) - -func TestUnmarhsalErrorLeak(t *testing.T) { - req := &request.Request{ - Operation: &request.Operation{ - Name: opChangeResourceRecordSets, - }, - HTTPRequest: &http.Request{ - Header: make(http.Header), - Body: &awstesting.ReadCloser{Size: 2048}, - }, - } - req.HTTPResponse = &http.Response{ - Body: &awstesting.ReadCloser{Size: 2048}, - Header: http.Header{ - "X-Amzn-Requestid": []string{"1"}, - }, - StatusCode: http.StatusOK, - } - - reader := req.HTTPResponse.Body.(*awstesting.ReadCloser) - unmarshalChangeResourceRecordSetsError(req) - - assert.NotNil(t, req.Error) - assert.Equal(t, reader.Closed, true) - assert.Equal(t, reader.Size, 0) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_test.go b/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_test.go deleted file mode 100644 index 7d5aa90c..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_test.go +++ /dev/null @@ -1,111 +0,0 @@ -package route53_test - -import ( - "bytes" - "io/ioutil" - "net/http" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/route53" -) - -func makeClientWithResponse(response string) *route53.Route53 { - r := route53.New(unit.Session) - r.Handlers.Send.Clear() - r.Handlers.Send.PushBack(func(r *request.Request) { - body := ioutil.NopCloser(bytes.NewReader([]byte(response))) - r.HTTPResponse = &http.Response{ - ContentLength: int64(len(response)), - StatusCode: 400, - Status: "Bad Request", - Body: body, - } - }) - - return r -} - -func TestUnmarshalStandardError(t *testing.T) { - const errorResponse = ` - - - InvalidDomainName - The domain name is invalid - - 12345 - -` - - r := makeClientWithResponse(errorResponse) - - _, err := r.CreateHostedZone(&route53.CreateHostedZoneInput{ - CallerReference: aws.String("test"), - Name: aws.String("test_zone"), - }) - - assert.Error(t, err) - assert.Equal(t, "InvalidDomainName", err.(awserr.Error).Code()) - assert.Equal(t, "The domain name is invalid", err.(awserr.Error).Message()) -} - -func TestUnmarshalInvalidChangeBatch(t *testing.T) { - const errorMessage = ` -Tried to create resource record set duplicate.example.com. type A, -but it already exists -` - const errorResponse = ` - - - ` + errorMessage + ` - - -` - - r := makeClientWithResponse(errorResponse) - - req := &route53.ChangeResourceRecordSetsInput{ - HostedZoneId: aws.String("zoneId"), - ChangeBatch: &route53.ChangeBatch{ - Changes: []*route53.Change{ - { - Action: aws.String("CREATE"), - ResourceRecordSet: &route53.ResourceRecordSet{ - Name: aws.String("domain"), - Type: aws.String("CNAME"), - TTL: aws.Int64(120), - ResourceRecords: []*route53.ResourceRecord{ - { - Value: aws.String("cname"), - }, - }, - }, - }, - }, - }, - } - - _, err := r.ChangeResourceRecordSets(req) - assert.Error(t, err) - - if reqErr, ok := err.(awserr.RequestFailure); ok { - assert.Error(t, reqErr) - assert.Equal(t, 400, reqErr.StatusCode()) - } else { - assert.Fail(t, "returned error is not a RequestFailure") - } - - if batchErr, ok := err.(awserr.BatchedErrors); ok { - errs := batchErr.OrigErrs() - assert.Len(t, errs, 1) - assert.Equal(t, "InvalidChangeBatch", errs[0].(awserr.Error).Code()) - assert.Equal(t, errorMessage, errs[0].(awserr.Error).Message()) - } else { - assert.Fail(t, "returned error is not a BatchedErrors") - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/route53/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/route53/waiters.go deleted file mode 100644 index 85a70ab5..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/route53/waiters.go +++ /dev/null @@ -1,34 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package route53 - -import ( - "github.com/aws/aws-sdk-go/private/waiter" -) - -// WaitUntilResourceRecordSetsChanged uses the Route 53 API operation -// GetChange to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *Route53) WaitUntilResourceRecordSetsChanged(input *GetChangeInput) error { - waiterCfg := waiter.Config{ - Operation: "GetChange", - Delay: 30, - MaxAttempts: 60, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "path", - Argument: "ChangeInfo.Status", - Expected: "INSYNC", - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/api.go b/vendor/github.com/aws/aws-sdk-go/service/s3/api.go deleted file mode 100644 index c71b6ebe..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/api.go +++ /dev/null @@ -1,9778 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package s3 provides a client for Amazon Simple Storage Service. -package s3 - -import ( - "fmt" - "io" - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/private/protocol" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -const opAbortMultipartUpload = "AbortMultipartUpload" - -// AbortMultipartUploadRequest generates a "aws/request.Request" representing the -// client's request for the AbortMultipartUpload operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AbortMultipartUpload method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AbortMultipartUploadRequest method. -// req, resp := client.AbortMultipartUploadRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) AbortMultipartUploadRequest(input *AbortMultipartUploadInput) (req *request.Request, output *AbortMultipartUploadOutput) { - op := &request.Operation{ - Name: opAbortMultipartUpload, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &AbortMultipartUploadInput{} - } - - req = c.newRequest(op, input, output) - output = &AbortMultipartUploadOutput{} - req.Data = output - return -} - -// Aborts a multipart upload. -// -// To verify that all parts have been removed, so you don't get charged for -// the part storage, you should call the List Parts operation and ensure the -// parts list is empty. -func (c *S3) AbortMultipartUpload(input *AbortMultipartUploadInput) (*AbortMultipartUploadOutput, error) { - req, out := c.AbortMultipartUploadRequest(input) - err := req.Send() - return out, err -} - -const opCompleteMultipartUpload = "CompleteMultipartUpload" - -// CompleteMultipartUploadRequest generates a "aws/request.Request" representing the -// client's request for the CompleteMultipartUpload operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CompleteMultipartUpload method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CompleteMultipartUploadRequest method. -// req, resp := client.CompleteMultipartUploadRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) CompleteMultipartUploadRequest(input *CompleteMultipartUploadInput) (req *request.Request, output *CompleteMultipartUploadOutput) { - op := &request.Operation{ - Name: opCompleteMultipartUpload, - HTTPMethod: "POST", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &CompleteMultipartUploadInput{} - } - - req = c.newRequest(op, input, output) - output = &CompleteMultipartUploadOutput{} - req.Data = output - return -} - -// Completes a multipart upload by assembling previously uploaded parts. -func (c *S3) CompleteMultipartUpload(input *CompleteMultipartUploadInput) (*CompleteMultipartUploadOutput, error) { - req, out := c.CompleteMultipartUploadRequest(input) - err := req.Send() - return out, err -} - -const opCopyObject = "CopyObject" - -// CopyObjectRequest generates a "aws/request.Request" representing the -// client's request for the CopyObject operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CopyObject method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CopyObjectRequest method. -// req, resp := client.CopyObjectRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) CopyObjectRequest(input *CopyObjectInput) (req *request.Request, output *CopyObjectOutput) { - op := &request.Operation{ - Name: opCopyObject, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &CopyObjectInput{} - } - - req = c.newRequest(op, input, output) - output = &CopyObjectOutput{} - req.Data = output - return -} - -// Creates a copy of an object that is already stored in Amazon S3. -func (c *S3) CopyObject(input *CopyObjectInput) (*CopyObjectOutput, error) { - req, out := c.CopyObjectRequest(input) - err := req.Send() - return out, err -} - -const opCreateBucket = "CreateBucket" - -// CreateBucketRequest generates a "aws/request.Request" representing the -// client's request for the CreateBucket operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateBucket method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateBucketRequest method. -// req, resp := client.CreateBucketRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) CreateBucketRequest(input *CreateBucketInput) (req *request.Request, output *CreateBucketOutput) { - op := &request.Operation{ - Name: opCreateBucket, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}", - } - - if input == nil { - input = &CreateBucketInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateBucketOutput{} - req.Data = output - return -} - -// Creates a new bucket. -func (c *S3) CreateBucket(input *CreateBucketInput) (*CreateBucketOutput, error) { - req, out := c.CreateBucketRequest(input) - err := req.Send() - return out, err -} - -const opCreateMultipartUpload = "CreateMultipartUpload" - -// CreateMultipartUploadRequest generates a "aws/request.Request" representing the -// client's request for the CreateMultipartUpload operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the CreateMultipartUpload method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the CreateMultipartUploadRequest method. -// req, resp := client.CreateMultipartUploadRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) CreateMultipartUploadRequest(input *CreateMultipartUploadInput) (req *request.Request, output *CreateMultipartUploadOutput) { - op := &request.Operation{ - Name: opCreateMultipartUpload, - HTTPMethod: "POST", - HTTPPath: "/{Bucket}/{Key+}?uploads", - } - - if input == nil { - input = &CreateMultipartUploadInput{} - } - - req = c.newRequest(op, input, output) - output = &CreateMultipartUploadOutput{} - req.Data = output - return -} - -// Initiates a multipart upload and returns an upload ID. -// -// Note: After you initiate multipart upload and upload one or more parts, you -// must either complete or abort multipart upload in order to stop getting charged -// for storage of the uploaded parts. Only after you either complete or abort -// multipart upload, Amazon S3 frees up the parts storage and stops charging -// you for the parts storage. -func (c *S3) CreateMultipartUpload(input *CreateMultipartUploadInput) (*CreateMultipartUploadOutput, error) { - req, out := c.CreateMultipartUploadRequest(input) - err := req.Send() - return out, err -} - -const opDeleteBucket = "DeleteBucket" - -// DeleteBucketRequest generates a "aws/request.Request" representing the -// client's request for the DeleteBucket operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteBucket method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteBucketRequest method. -// req, resp := client.DeleteBucketRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteBucketRequest(input *DeleteBucketInput) (req *request.Request, output *DeleteBucketOutput) { - op := &request.Operation{ - Name: opDeleteBucket, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}", - } - - if input == nil { - input = &DeleteBucketInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteBucketOutput{} - req.Data = output - return -} - -// Deletes the bucket. All objects (including all object versions and Delete -// Markers) in the bucket must be deleted before the bucket itself can be deleted. -func (c *S3) DeleteBucket(input *DeleteBucketInput) (*DeleteBucketOutput, error) { - req, out := c.DeleteBucketRequest(input) - err := req.Send() - return out, err -} - -const opDeleteBucketCors = "DeleteBucketCors" - -// DeleteBucketCorsRequest generates a "aws/request.Request" representing the -// client's request for the DeleteBucketCors operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteBucketCors method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteBucketCorsRequest method. -// req, resp := client.DeleteBucketCorsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteBucketCorsRequest(input *DeleteBucketCorsInput) (req *request.Request, output *DeleteBucketCorsOutput) { - op := &request.Operation{ - Name: opDeleteBucketCors, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}?cors", - } - - if input == nil { - input = &DeleteBucketCorsInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteBucketCorsOutput{} - req.Data = output - return -} - -// Deletes the cors configuration information set for the bucket. -func (c *S3) DeleteBucketCors(input *DeleteBucketCorsInput) (*DeleteBucketCorsOutput, error) { - req, out := c.DeleteBucketCorsRequest(input) - err := req.Send() - return out, err -} - -const opDeleteBucketLifecycle = "DeleteBucketLifecycle" - -// DeleteBucketLifecycleRequest generates a "aws/request.Request" representing the -// client's request for the DeleteBucketLifecycle operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteBucketLifecycle method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteBucketLifecycleRequest method. -// req, resp := client.DeleteBucketLifecycleRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteBucketLifecycleRequest(input *DeleteBucketLifecycleInput) (req *request.Request, output *DeleteBucketLifecycleOutput) { - op := &request.Operation{ - Name: opDeleteBucketLifecycle, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}?lifecycle", - } - - if input == nil { - input = &DeleteBucketLifecycleInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteBucketLifecycleOutput{} - req.Data = output - return -} - -// Deletes the lifecycle configuration from the bucket. -func (c *S3) DeleteBucketLifecycle(input *DeleteBucketLifecycleInput) (*DeleteBucketLifecycleOutput, error) { - req, out := c.DeleteBucketLifecycleRequest(input) - err := req.Send() - return out, err -} - -const opDeleteBucketPolicy = "DeleteBucketPolicy" - -// DeleteBucketPolicyRequest generates a "aws/request.Request" representing the -// client's request for the DeleteBucketPolicy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteBucketPolicy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteBucketPolicyRequest method. -// req, resp := client.DeleteBucketPolicyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteBucketPolicyRequest(input *DeleteBucketPolicyInput) (req *request.Request, output *DeleteBucketPolicyOutput) { - op := &request.Operation{ - Name: opDeleteBucketPolicy, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}?policy", - } - - if input == nil { - input = &DeleteBucketPolicyInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteBucketPolicyOutput{} - req.Data = output - return -} - -// Deletes the policy from the bucket. -func (c *S3) DeleteBucketPolicy(input *DeleteBucketPolicyInput) (*DeleteBucketPolicyOutput, error) { - req, out := c.DeleteBucketPolicyRequest(input) - err := req.Send() - return out, err -} - -const opDeleteBucketReplication = "DeleteBucketReplication" - -// DeleteBucketReplicationRequest generates a "aws/request.Request" representing the -// client's request for the DeleteBucketReplication operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteBucketReplication method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteBucketReplicationRequest method. -// req, resp := client.DeleteBucketReplicationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteBucketReplicationRequest(input *DeleteBucketReplicationInput) (req *request.Request, output *DeleteBucketReplicationOutput) { - op := &request.Operation{ - Name: opDeleteBucketReplication, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}?replication", - } - - if input == nil { - input = &DeleteBucketReplicationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteBucketReplicationOutput{} - req.Data = output - return -} - -// Deletes the replication configuration from the bucket. -func (c *S3) DeleteBucketReplication(input *DeleteBucketReplicationInput) (*DeleteBucketReplicationOutput, error) { - req, out := c.DeleteBucketReplicationRequest(input) - err := req.Send() - return out, err -} - -const opDeleteBucketTagging = "DeleteBucketTagging" - -// DeleteBucketTaggingRequest generates a "aws/request.Request" representing the -// client's request for the DeleteBucketTagging operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteBucketTagging method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteBucketTaggingRequest method. -// req, resp := client.DeleteBucketTaggingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteBucketTaggingRequest(input *DeleteBucketTaggingInput) (req *request.Request, output *DeleteBucketTaggingOutput) { - op := &request.Operation{ - Name: opDeleteBucketTagging, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}?tagging", - } - - if input == nil { - input = &DeleteBucketTaggingInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteBucketTaggingOutput{} - req.Data = output - return -} - -// Deletes the tags from the bucket. -func (c *S3) DeleteBucketTagging(input *DeleteBucketTaggingInput) (*DeleteBucketTaggingOutput, error) { - req, out := c.DeleteBucketTaggingRequest(input) - err := req.Send() - return out, err -} - -const opDeleteBucketWebsite = "DeleteBucketWebsite" - -// DeleteBucketWebsiteRequest generates a "aws/request.Request" representing the -// client's request for the DeleteBucketWebsite operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteBucketWebsite method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteBucketWebsiteRequest method. -// req, resp := client.DeleteBucketWebsiteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteBucketWebsiteRequest(input *DeleteBucketWebsiteInput) (req *request.Request, output *DeleteBucketWebsiteOutput) { - op := &request.Operation{ - Name: opDeleteBucketWebsite, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}?website", - } - - if input == nil { - input = &DeleteBucketWebsiteInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &DeleteBucketWebsiteOutput{} - req.Data = output - return -} - -// This operation removes the website configuration from the bucket. -func (c *S3) DeleteBucketWebsite(input *DeleteBucketWebsiteInput) (*DeleteBucketWebsiteOutput, error) { - req, out := c.DeleteBucketWebsiteRequest(input) - err := req.Send() - return out, err -} - -const opDeleteObject = "DeleteObject" - -// DeleteObjectRequest generates a "aws/request.Request" representing the -// client's request for the DeleteObject operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteObject method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteObjectRequest method. -// req, resp := client.DeleteObjectRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteObjectRequest(input *DeleteObjectInput) (req *request.Request, output *DeleteObjectOutput) { - op := &request.Operation{ - Name: opDeleteObject, - HTTPMethod: "DELETE", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &DeleteObjectInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteObjectOutput{} - req.Data = output - return -} - -// Removes the null version (if there is one) of an object and inserts a delete -// marker, which becomes the latest version of the object. If there isn't a -// null version, Amazon S3 does not remove any objects. -func (c *S3) DeleteObject(input *DeleteObjectInput) (*DeleteObjectOutput, error) { - req, out := c.DeleteObjectRequest(input) - err := req.Send() - return out, err -} - -const opDeleteObjects = "DeleteObjects" - -// DeleteObjectsRequest generates a "aws/request.Request" representing the -// client's request for the DeleteObjects operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DeleteObjects method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DeleteObjectsRequest method. -// req, resp := client.DeleteObjectsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) DeleteObjectsRequest(input *DeleteObjectsInput) (req *request.Request, output *DeleteObjectsOutput) { - op := &request.Operation{ - Name: opDeleteObjects, - HTTPMethod: "POST", - HTTPPath: "/{Bucket}?delete", - } - - if input == nil { - input = &DeleteObjectsInput{} - } - - req = c.newRequest(op, input, output) - output = &DeleteObjectsOutput{} - req.Data = output - return -} - -// This operation enables you to delete multiple objects from a bucket using -// a single HTTP request. You may specify up to 1000 keys. -func (c *S3) DeleteObjects(input *DeleteObjectsInput) (*DeleteObjectsOutput, error) { - req, out := c.DeleteObjectsRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketAccelerateConfiguration = "GetBucketAccelerateConfiguration" - -// GetBucketAccelerateConfigurationRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketAccelerateConfiguration operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketAccelerateConfiguration method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketAccelerateConfigurationRequest method. -// req, resp := client.GetBucketAccelerateConfigurationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketAccelerateConfigurationRequest(input *GetBucketAccelerateConfigurationInput) (req *request.Request, output *GetBucketAccelerateConfigurationOutput) { - op := &request.Operation{ - Name: opGetBucketAccelerateConfiguration, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?accelerate", - } - - if input == nil { - input = &GetBucketAccelerateConfigurationInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketAccelerateConfigurationOutput{} - req.Data = output - return -} - -// Returns the accelerate configuration of a bucket. -func (c *S3) GetBucketAccelerateConfiguration(input *GetBucketAccelerateConfigurationInput) (*GetBucketAccelerateConfigurationOutput, error) { - req, out := c.GetBucketAccelerateConfigurationRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketAcl = "GetBucketAcl" - -// GetBucketAclRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketAcl operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketAcl method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketAclRequest method. -// req, resp := client.GetBucketAclRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketAclRequest(input *GetBucketAclInput) (req *request.Request, output *GetBucketAclOutput) { - op := &request.Operation{ - Name: opGetBucketAcl, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?acl", - } - - if input == nil { - input = &GetBucketAclInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketAclOutput{} - req.Data = output - return -} - -// Gets the access control policy for the bucket. -func (c *S3) GetBucketAcl(input *GetBucketAclInput) (*GetBucketAclOutput, error) { - req, out := c.GetBucketAclRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketCors = "GetBucketCors" - -// GetBucketCorsRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketCors operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketCors method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketCorsRequest method. -// req, resp := client.GetBucketCorsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketCorsRequest(input *GetBucketCorsInput) (req *request.Request, output *GetBucketCorsOutput) { - op := &request.Operation{ - Name: opGetBucketCors, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?cors", - } - - if input == nil { - input = &GetBucketCorsInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketCorsOutput{} - req.Data = output - return -} - -// Returns the cors configuration for the bucket. -func (c *S3) GetBucketCors(input *GetBucketCorsInput) (*GetBucketCorsOutput, error) { - req, out := c.GetBucketCorsRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketLifecycle = "GetBucketLifecycle" - -// GetBucketLifecycleRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketLifecycle operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketLifecycle method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketLifecycleRequest method. -// req, resp := client.GetBucketLifecycleRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketLifecycleRequest(input *GetBucketLifecycleInput) (req *request.Request, output *GetBucketLifecycleOutput) { - if c.Client.Config.Logger != nil { - c.Client.Config.Logger.Log("This operation, GetBucketLifecycle, has been deprecated") - } - op := &request.Operation{ - Name: opGetBucketLifecycle, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?lifecycle", - } - - if input == nil { - input = &GetBucketLifecycleInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketLifecycleOutput{} - req.Data = output - return -} - -// Deprecated, see the GetBucketLifecycleConfiguration operation. -func (c *S3) GetBucketLifecycle(input *GetBucketLifecycleInput) (*GetBucketLifecycleOutput, error) { - req, out := c.GetBucketLifecycleRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketLifecycleConfiguration = "GetBucketLifecycleConfiguration" - -// GetBucketLifecycleConfigurationRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketLifecycleConfiguration operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketLifecycleConfiguration method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketLifecycleConfigurationRequest method. -// req, resp := client.GetBucketLifecycleConfigurationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketLifecycleConfigurationRequest(input *GetBucketLifecycleConfigurationInput) (req *request.Request, output *GetBucketLifecycleConfigurationOutput) { - op := &request.Operation{ - Name: opGetBucketLifecycleConfiguration, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?lifecycle", - } - - if input == nil { - input = &GetBucketLifecycleConfigurationInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketLifecycleConfigurationOutput{} - req.Data = output - return -} - -// Returns the lifecycle configuration information set on the bucket. -func (c *S3) GetBucketLifecycleConfiguration(input *GetBucketLifecycleConfigurationInput) (*GetBucketLifecycleConfigurationOutput, error) { - req, out := c.GetBucketLifecycleConfigurationRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketLocation = "GetBucketLocation" - -// GetBucketLocationRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketLocation operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketLocation method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketLocationRequest method. -// req, resp := client.GetBucketLocationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketLocationRequest(input *GetBucketLocationInput) (req *request.Request, output *GetBucketLocationOutput) { - op := &request.Operation{ - Name: opGetBucketLocation, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?location", - } - - if input == nil { - input = &GetBucketLocationInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketLocationOutput{} - req.Data = output - return -} - -// Returns the region the bucket resides in. -func (c *S3) GetBucketLocation(input *GetBucketLocationInput) (*GetBucketLocationOutput, error) { - req, out := c.GetBucketLocationRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketLogging = "GetBucketLogging" - -// GetBucketLoggingRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketLogging operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketLogging method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketLoggingRequest method. -// req, resp := client.GetBucketLoggingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketLoggingRequest(input *GetBucketLoggingInput) (req *request.Request, output *GetBucketLoggingOutput) { - op := &request.Operation{ - Name: opGetBucketLogging, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?logging", - } - - if input == nil { - input = &GetBucketLoggingInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketLoggingOutput{} - req.Data = output - return -} - -// Returns the logging status of a bucket and the permissions users have to -// view and modify that status. To use GET, you must be the bucket owner. -func (c *S3) GetBucketLogging(input *GetBucketLoggingInput) (*GetBucketLoggingOutput, error) { - req, out := c.GetBucketLoggingRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketNotification = "GetBucketNotification" - -// GetBucketNotificationRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketNotification operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketNotification method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketNotificationRequest method. -// req, resp := client.GetBucketNotificationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketNotificationRequest(input *GetBucketNotificationConfigurationRequest) (req *request.Request, output *NotificationConfigurationDeprecated) { - if c.Client.Config.Logger != nil { - c.Client.Config.Logger.Log("This operation, GetBucketNotification, has been deprecated") - } - op := &request.Operation{ - Name: opGetBucketNotification, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?notification", - } - - if input == nil { - input = &GetBucketNotificationConfigurationRequest{} - } - - req = c.newRequest(op, input, output) - output = &NotificationConfigurationDeprecated{} - req.Data = output - return -} - -// Deprecated, see the GetBucketNotificationConfiguration operation. -func (c *S3) GetBucketNotification(input *GetBucketNotificationConfigurationRequest) (*NotificationConfigurationDeprecated, error) { - req, out := c.GetBucketNotificationRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketNotificationConfiguration = "GetBucketNotificationConfiguration" - -// GetBucketNotificationConfigurationRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketNotificationConfiguration operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketNotificationConfiguration method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketNotificationConfigurationRequest method. -// req, resp := client.GetBucketNotificationConfigurationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketNotificationConfigurationRequest(input *GetBucketNotificationConfigurationRequest) (req *request.Request, output *NotificationConfiguration) { - op := &request.Operation{ - Name: opGetBucketNotificationConfiguration, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?notification", - } - - if input == nil { - input = &GetBucketNotificationConfigurationRequest{} - } - - req = c.newRequest(op, input, output) - output = &NotificationConfiguration{} - req.Data = output - return -} - -// Returns the notification configuration of a bucket. -func (c *S3) GetBucketNotificationConfiguration(input *GetBucketNotificationConfigurationRequest) (*NotificationConfiguration, error) { - req, out := c.GetBucketNotificationConfigurationRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketPolicy = "GetBucketPolicy" - -// GetBucketPolicyRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketPolicy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketPolicy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketPolicyRequest method. -// req, resp := client.GetBucketPolicyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketPolicyRequest(input *GetBucketPolicyInput) (req *request.Request, output *GetBucketPolicyOutput) { - op := &request.Operation{ - Name: opGetBucketPolicy, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?policy", - } - - if input == nil { - input = &GetBucketPolicyInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketPolicyOutput{} - req.Data = output - return -} - -// Returns the policy of a specified bucket. -func (c *S3) GetBucketPolicy(input *GetBucketPolicyInput) (*GetBucketPolicyOutput, error) { - req, out := c.GetBucketPolicyRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketReplication = "GetBucketReplication" - -// GetBucketReplicationRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketReplication operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketReplication method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketReplicationRequest method. -// req, resp := client.GetBucketReplicationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketReplicationRequest(input *GetBucketReplicationInput) (req *request.Request, output *GetBucketReplicationOutput) { - op := &request.Operation{ - Name: opGetBucketReplication, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?replication", - } - - if input == nil { - input = &GetBucketReplicationInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketReplicationOutput{} - req.Data = output - return -} - -// Returns the replication configuration of a bucket. -func (c *S3) GetBucketReplication(input *GetBucketReplicationInput) (*GetBucketReplicationOutput, error) { - req, out := c.GetBucketReplicationRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketRequestPayment = "GetBucketRequestPayment" - -// GetBucketRequestPaymentRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketRequestPayment operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketRequestPayment method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketRequestPaymentRequest method. -// req, resp := client.GetBucketRequestPaymentRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketRequestPaymentRequest(input *GetBucketRequestPaymentInput) (req *request.Request, output *GetBucketRequestPaymentOutput) { - op := &request.Operation{ - Name: opGetBucketRequestPayment, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?requestPayment", - } - - if input == nil { - input = &GetBucketRequestPaymentInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketRequestPaymentOutput{} - req.Data = output - return -} - -// Returns the request payment configuration of a bucket. -func (c *S3) GetBucketRequestPayment(input *GetBucketRequestPaymentInput) (*GetBucketRequestPaymentOutput, error) { - req, out := c.GetBucketRequestPaymentRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketTagging = "GetBucketTagging" - -// GetBucketTaggingRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketTagging operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketTagging method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketTaggingRequest method. -// req, resp := client.GetBucketTaggingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketTaggingRequest(input *GetBucketTaggingInput) (req *request.Request, output *GetBucketTaggingOutput) { - op := &request.Operation{ - Name: opGetBucketTagging, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?tagging", - } - - if input == nil { - input = &GetBucketTaggingInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketTaggingOutput{} - req.Data = output - return -} - -// Returns the tag set associated with the bucket. -func (c *S3) GetBucketTagging(input *GetBucketTaggingInput) (*GetBucketTaggingOutput, error) { - req, out := c.GetBucketTaggingRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketVersioning = "GetBucketVersioning" - -// GetBucketVersioningRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketVersioning operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketVersioning method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketVersioningRequest method. -// req, resp := client.GetBucketVersioningRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketVersioningRequest(input *GetBucketVersioningInput) (req *request.Request, output *GetBucketVersioningOutput) { - op := &request.Operation{ - Name: opGetBucketVersioning, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?versioning", - } - - if input == nil { - input = &GetBucketVersioningInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketVersioningOutput{} - req.Data = output - return -} - -// Returns the versioning state of a bucket. -func (c *S3) GetBucketVersioning(input *GetBucketVersioningInput) (*GetBucketVersioningOutput, error) { - req, out := c.GetBucketVersioningRequest(input) - err := req.Send() - return out, err -} - -const opGetBucketWebsite = "GetBucketWebsite" - -// GetBucketWebsiteRequest generates a "aws/request.Request" representing the -// client's request for the GetBucketWebsite operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetBucketWebsite method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetBucketWebsiteRequest method. -// req, resp := client.GetBucketWebsiteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetBucketWebsiteRequest(input *GetBucketWebsiteInput) (req *request.Request, output *GetBucketWebsiteOutput) { - op := &request.Operation{ - Name: opGetBucketWebsite, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?website", - } - - if input == nil { - input = &GetBucketWebsiteInput{} - } - - req = c.newRequest(op, input, output) - output = &GetBucketWebsiteOutput{} - req.Data = output - return -} - -// Returns the website configuration for a bucket. -func (c *S3) GetBucketWebsite(input *GetBucketWebsiteInput) (*GetBucketWebsiteOutput, error) { - req, out := c.GetBucketWebsiteRequest(input) - err := req.Send() - return out, err -} - -const opGetObject = "GetObject" - -// GetObjectRequest generates a "aws/request.Request" representing the -// client's request for the GetObject operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetObject method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetObjectRequest method. -// req, resp := client.GetObjectRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetObjectRequest(input *GetObjectInput) (req *request.Request, output *GetObjectOutput) { - op := &request.Operation{ - Name: opGetObject, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &GetObjectInput{} - } - - req = c.newRequest(op, input, output) - output = &GetObjectOutput{} - req.Data = output - return -} - -// Retrieves objects from Amazon S3. -func (c *S3) GetObject(input *GetObjectInput) (*GetObjectOutput, error) { - req, out := c.GetObjectRequest(input) - err := req.Send() - return out, err -} - -const opGetObjectAcl = "GetObjectAcl" - -// GetObjectAclRequest generates a "aws/request.Request" representing the -// client's request for the GetObjectAcl operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetObjectAcl method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetObjectAclRequest method. -// req, resp := client.GetObjectAclRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetObjectAclRequest(input *GetObjectAclInput) (req *request.Request, output *GetObjectAclOutput) { - op := &request.Operation{ - Name: opGetObjectAcl, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}/{Key+}?acl", - } - - if input == nil { - input = &GetObjectAclInput{} - } - - req = c.newRequest(op, input, output) - output = &GetObjectAclOutput{} - req.Data = output - return -} - -// Returns the access control list (ACL) of an object. -func (c *S3) GetObjectAcl(input *GetObjectAclInput) (*GetObjectAclOutput, error) { - req, out := c.GetObjectAclRequest(input) - err := req.Send() - return out, err -} - -const opGetObjectTorrent = "GetObjectTorrent" - -// GetObjectTorrentRequest generates a "aws/request.Request" representing the -// client's request for the GetObjectTorrent operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetObjectTorrent method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetObjectTorrentRequest method. -// req, resp := client.GetObjectTorrentRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) GetObjectTorrentRequest(input *GetObjectTorrentInput) (req *request.Request, output *GetObjectTorrentOutput) { - op := &request.Operation{ - Name: opGetObjectTorrent, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}/{Key+}?torrent", - } - - if input == nil { - input = &GetObjectTorrentInput{} - } - - req = c.newRequest(op, input, output) - output = &GetObjectTorrentOutput{} - req.Data = output - return -} - -// Return torrent files from a bucket. -func (c *S3) GetObjectTorrent(input *GetObjectTorrentInput) (*GetObjectTorrentOutput, error) { - req, out := c.GetObjectTorrentRequest(input) - err := req.Send() - return out, err -} - -const opHeadBucket = "HeadBucket" - -// HeadBucketRequest generates a "aws/request.Request" representing the -// client's request for the HeadBucket operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the HeadBucket method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the HeadBucketRequest method. -// req, resp := client.HeadBucketRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) HeadBucketRequest(input *HeadBucketInput) (req *request.Request, output *HeadBucketOutput) { - op := &request.Operation{ - Name: opHeadBucket, - HTTPMethod: "HEAD", - HTTPPath: "/{Bucket}", - } - - if input == nil { - input = &HeadBucketInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &HeadBucketOutput{} - req.Data = output - return -} - -// This operation is useful to determine if a bucket exists and you have permission -// to access it. -func (c *S3) HeadBucket(input *HeadBucketInput) (*HeadBucketOutput, error) { - req, out := c.HeadBucketRequest(input) - err := req.Send() - return out, err -} - -const opHeadObject = "HeadObject" - -// HeadObjectRequest generates a "aws/request.Request" representing the -// client's request for the HeadObject operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the HeadObject method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the HeadObjectRequest method. -// req, resp := client.HeadObjectRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) HeadObjectRequest(input *HeadObjectInput) (req *request.Request, output *HeadObjectOutput) { - op := &request.Operation{ - Name: opHeadObject, - HTTPMethod: "HEAD", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &HeadObjectInput{} - } - - req = c.newRequest(op, input, output) - output = &HeadObjectOutput{} - req.Data = output - return -} - -// The HEAD operation retrieves metadata from an object without returning the -// object itself. This operation is useful if you're only interested in an object's -// metadata. To use HEAD, you must have READ access to the object. -func (c *S3) HeadObject(input *HeadObjectInput) (*HeadObjectOutput, error) { - req, out := c.HeadObjectRequest(input) - err := req.Send() - return out, err -} - -const opListBuckets = "ListBuckets" - -// ListBucketsRequest generates a "aws/request.Request" representing the -// client's request for the ListBuckets operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListBuckets method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListBucketsRequest method. -// req, resp := client.ListBucketsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) ListBucketsRequest(input *ListBucketsInput) (req *request.Request, output *ListBucketsOutput) { - op := &request.Operation{ - Name: opListBuckets, - HTTPMethod: "GET", - HTTPPath: "/", - } - - if input == nil { - input = &ListBucketsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListBucketsOutput{} - req.Data = output - return -} - -// Returns a list of all buckets owned by the authenticated sender of the request. -func (c *S3) ListBuckets(input *ListBucketsInput) (*ListBucketsOutput, error) { - req, out := c.ListBucketsRequest(input) - err := req.Send() - return out, err -} - -const opListMultipartUploads = "ListMultipartUploads" - -// ListMultipartUploadsRequest generates a "aws/request.Request" representing the -// client's request for the ListMultipartUploads operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListMultipartUploads method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListMultipartUploadsRequest method. -// req, resp := client.ListMultipartUploadsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) ListMultipartUploadsRequest(input *ListMultipartUploadsInput) (req *request.Request, output *ListMultipartUploadsOutput) { - op := &request.Operation{ - Name: opListMultipartUploads, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?uploads", - Paginator: &request.Paginator{ - InputTokens: []string{"KeyMarker", "UploadIdMarker"}, - OutputTokens: []string{"NextKeyMarker", "NextUploadIdMarker"}, - LimitToken: "MaxUploads", - TruncationToken: "IsTruncated", - }, - } - - if input == nil { - input = &ListMultipartUploadsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListMultipartUploadsOutput{} - req.Data = output - return -} - -// This operation lists in-progress multipart uploads. -func (c *S3) ListMultipartUploads(input *ListMultipartUploadsInput) (*ListMultipartUploadsOutput, error) { - req, out := c.ListMultipartUploadsRequest(input) - err := req.Send() - return out, err -} - -// ListMultipartUploadsPages iterates over the pages of a ListMultipartUploads operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListMultipartUploads method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListMultipartUploads operation. -// pageNum := 0 -// err := client.ListMultipartUploadsPages(params, -// func(page *ListMultipartUploadsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *S3) ListMultipartUploadsPages(input *ListMultipartUploadsInput, fn func(p *ListMultipartUploadsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListMultipartUploadsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListMultipartUploadsOutput), lastPage) - }) -} - -const opListObjectVersions = "ListObjectVersions" - -// ListObjectVersionsRequest generates a "aws/request.Request" representing the -// client's request for the ListObjectVersions operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListObjectVersions method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListObjectVersionsRequest method. -// req, resp := client.ListObjectVersionsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) ListObjectVersionsRequest(input *ListObjectVersionsInput) (req *request.Request, output *ListObjectVersionsOutput) { - op := &request.Operation{ - Name: opListObjectVersions, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?versions", - Paginator: &request.Paginator{ - InputTokens: []string{"KeyMarker", "VersionIdMarker"}, - OutputTokens: []string{"NextKeyMarker", "NextVersionIdMarker"}, - LimitToken: "MaxKeys", - TruncationToken: "IsTruncated", - }, - } - - if input == nil { - input = &ListObjectVersionsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListObjectVersionsOutput{} - req.Data = output - return -} - -// Returns metadata about all of the versions of objects in a bucket. -func (c *S3) ListObjectVersions(input *ListObjectVersionsInput) (*ListObjectVersionsOutput, error) { - req, out := c.ListObjectVersionsRequest(input) - err := req.Send() - return out, err -} - -// ListObjectVersionsPages iterates over the pages of a ListObjectVersions operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListObjectVersions method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListObjectVersions operation. -// pageNum := 0 -// err := client.ListObjectVersionsPages(params, -// func(page *ListObjectVersionsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *S3) ListObjectVersionsPages(input *ListObjectVersionsInput, fn func(p *ListObjectVersionsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListObjectVersionsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListObjectVersionsOutput), lastPage) - }) -} - -const opListObjects = "ListObjects" - -// ListObjectsRequest generates a "aws/request.Request" representing the -// client's request for the ListObjects operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListObjects method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListObjectsRequest method. -// req, resp := client.ListObjectsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) ListObjectsRequest(input *ListObjectsInput) (req *request.Request, output *ListObjectsOutput) { - op := &request.Operation{ - Name: opListObjects, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}", - Paginator: &request.Paginator{ - InputTokens: []string{"Marker"}, - OutputTokens: []string{"NextMarker || Contents[-1].Key"}, - LimitToken: "MaxKeys", - TruncationToken: "IsTruncated", - }, - } - - if input == nil { - input = &ListObjectsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListObjectsOutput{} - req.Data = output - return -} - -// Returns some or all (up to 1000) of the objects in a bucket. You can use -// the request parameters as selection criteria to return a subset of the objects -// in a bucket. -func (c *S3) ListObjects(input *ListObjectsInput) (*ListObjectsOutput, error) { - req, out := c.ListObjectsRequest(input) - err := req.Send() - return out, err -} - -// ListObjectsPages iterates over the pages of a ListObjects operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListObjects method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListObjects operation. -// pageNum := 0 -// err := client.ListObjectsPages(params, -// func(page *ListObjectsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *S3) ListObjectsPages(input *ListObjectsInput, fn func(p *ListObjectsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListObjectsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListObjectsOutput), lastPage) - }) -} - -const opListObjectsV2 = "ListObjectsV2" - -// ListObjectsV2Request generates a "aws/request.Request" representing the -// client's request for the ListObjectsV2 operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListObjectsV2 method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListObjectsV2Request method. -// req, resp := client.ListObjectsV2Request(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) ListObjectsV2Request(input *ListObjectsV2Input) (req *request.Request, output *ListObjectsV2Output) { - op := &request.Operation{ - Name: opListObjectsV2, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}?list-type=2", - Paginator: &request.Paginator{ - InputTokens: []string{"ContinuationToken"}, - OutputTokens: []string{"NextContinuationToken"}, - LimitToken: "MaxKeys", - TruncationToken: "", - }, - } - - if input == nil { - input = &ListObjectsV2Input{} - } - - req = c.newRequest(op, input, output) - output = &ListObjectsV2Output{} - req.Data = output - return -} - -// Returns some or all (up to 1000) of the objects in a bucket. You can use -// the request parameters as selection criteria to return a subset of the objects -// in a bucket. Note: ListObjectsV2 is the revised List Objects API and we recommend -// you use this revised API for new application development. -func (c *S3) ListObjectsV2(input *ListObjectsV2Input) (*ListObjectsV2Output, error) { - req, out := c.ListObjectsV2Request(input) - err := req.Send() - return out, err -} - -// ListObjectsV2Pages iterates over the pages of a ListObjectsV2 operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListObjectsV2 method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListObjectsV2 operation. -// pageNum := 0 -// err := client.ListObjectsV2Pages(params, -// func(page *ListObjectsV2Output, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *S3) ListObjectsV2Pages(input *ListObjectsV2Input, fn func(p *ListObjectsV2Output, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListObjectsV2Request(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListObjectsV2Output), lastPage) - }) -} - -const opListParts = "ListParts" - -// ListPartsRequest generates a "aws/request.Request" representing the -// client's request for the ListParts operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the ListParts method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the ListPartsRequest method. -// req, resp := client.ListPartsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) ListPartsRequest(input *ListPartsInput) (req *request.Request, output *ListPartsOutput) { - op := &request.Operation{ - Name: opListParts, - HTTPMethod: "GET", - HTTPPath: "/{Bucket}/{Key+}", - Paginator: &request.Paginator{ - InputTokens: []string{"PartNumberMarker"}, - OutputTokens: []string{"NextPartNumberMarker"}, - LimitToken: "MaxParts", - TruncationToken: "IsTruncated", - }, - } - - if input == nil { - input = &ListPartsInput{} - } - - req = c.newRequest(op, input, output) - output = &ListPartsOutput{} - req.Data = output - return -} - -// Lists the parts that have been uploaded for a specific multipart upload. -func (c *S3) ListParts(input *ListPartsInput) (*ListPartsOutput, error) { - req, out := c.ListPartsRequest(input) - err := req.Send() - return out, err -} - -// ListPartsPages iterates over the pages of a ListParts operation, -// calling the "fn" function with the response data for each page. To stop -// iterating, return false from the fn function. -// -// See ListParts method for more information on how to use this operation. -// -// Note: This operation can generate multiple requests to a service. -// -// // Example iterating over at most 3 pages of a ListParts operation. -// pageNum := 0 -// err := client.ListPartsPages(params, -// func(page *ListPartsOutput, lastPage bool) bool { -// pageNum++ -// fmt.Println(page) -// return pageNum <= 3 -// }) -// -func (c *S3) ListPartsPages(input *ListPartsInput, fn func(p *ListPartsOutput, lastPage bool) (shouldContinue bool)) error { - page, _ := c.ListPartsRequest(input) - page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator")) - return page.EachPage(func(p interface{}, lastPage bool) bool { - return fn(p.(*ListPartsOutput), lastPage) - }) -} - -const opPutBucketAccelerateConfiguration = "PutBucketAccelerateConfiguration" - -// PutBucketAccelerateConfigurationRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketAccelerateConfiguration operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketAccelerateConfiguration method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketAccelerateConfigurationRequest method. -// req, resp := client.PutBucketAccelerateConfigurationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketAccelerateConfigurationRequest(input *PutBucketAccelerateConfigurationInput) (req *request.Request, output *PutBucketAccelerateConfigurationOutput) { - op := &request.Operation{ - Name: opPutBucketAccelerateConfiguration, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?accelerate", - } - - if input == nil { - input = &PutBucketAccelerateConfigurationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketAccelerateConfigurationOutput{} - req.Data = output - return -} - -// Sets the accelerate configuration of an existing bucket. -func (c *S3) PutBucketAccelerateConfiguration(input *PutBucketAccelerateConfigurationInput) (*PutBucketAccelerateConfigurationOutput, error) { - req, out := c.PutBucketAccelerateConfigurationRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketAcl = "PutBucketAcl" - -// PutBucketAclRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketAcl operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketAcl method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketAclRequest method. -// req, resp := client.PutBucketAclRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketAclRequest(input *PutBucketAclInput) (req *request.Request, output *PutBucketAclOutput) { - op := &request.Operation{ - Name: opPutBucketAcl, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?acl", - } - - if input == nil { - input = &PutBucketAclInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketAclOutput{} - req.Data = output - return -} - -// Sets the permissions on a bucket using access control lists (ACL). -func (c *S3) PutBucketAcl(input *PutBucketAclInput) (*PutBucketAclOutput, error) { - req, out := c.PutBucketAclRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketCors = "PutBucketCors" - -// PutBucketCorsRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketCors operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketCors method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketCorsRequest method. -// req, resp := client.PutBucketCorsRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketCorsRequest(input *PutBucketCorsInput) (req *request.Request, output *PutBucketCorsOutput) { - op := &request.Operation{ - Name: opPutBucketCors, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?cors", - } - - if input == nil { - input = &PutBucketCorsInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketCorsOutput{} - req.Data = output - return -} - -// Sets the cors configuration for a bucket. -func (c *S3) PutBucketCors(input *PutBucketCorsInput) (*PutBucketCorsOutput, error) { - req, out := c.PutBucketCorsRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketLifecycle = "PutBucketLifecycle" - -// PutBucketLifecycleRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketLifecycle operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketLifecycle method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketLifecycleRequest method. -// req, resp := client.PutBucketLifecycleRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketLifecycleRequest(input *PutBucketLifecycleInput) (req *request.Request, output *PutBucketLifecycleOutput) { - if c.Client.Config.Logger != nil { - c.Client.Config.Logger.Log("This operation, PutBucketLifecycle, has been deprecated") - } - op := &request.Operation{ - Name: opPutBucketLifecycle, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?lifecycle", - } - - if input == nil { - input = &PutBucketLifecycleInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketLifecycleOutput{} - req.Data = output - return -} - -// Deprecated, see the PutBucketLifecycleConfiguration operation. -func (c *S3) PutBucketLifecycle(input *PutBucketLifecycleInput) (*PutBucketLifecycleOutput, error) { - req, out := c.PutBucketLifecycleRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketLifecycleConfiguration = "PutBucketLifecycleConfiguration" - -// PutBucketLifecycleConfigurationRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketLifecycleConfiguration operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketLifecycleConfiguration method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketLifecycleConfigurationRequest method. -// req, resp := client.PutBucketLifecycleConfigurationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketLifecycleConfigurationRequest(input *PutBucketLifecycleConfigurationInput) (req *request.Request, output *PutBucketLifecycleConfigurationOutput) { - op := &request.Operation{ - Name: opPutBucketLifecycleConfiguration, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?lifecycle", - } - - if input == nil { - input = &PutBucketLifecycleConfigurationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketLifecycleConfigurationOutput{} - req.Data = output - return -} - -// Sets lifecycle configuration for your bucket. If a lifecycle configuration -// exists, it replaces it. -func (c *S3) PutBucketLifecycleConfiguration(input *PutBucketLifecycleConfigurationInput) (*PutBucketLifecycleConfigurationOutput, error) { - req, out := c.PutBucketLifecycleConfigurationRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketLogging = "PutBucketLogging" - -// PutBucketLoggingRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketLogging operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketLogging method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketLoggingRequest method. -// req, resp := client.PutBucketLoggingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketLoggingRequest(input *PutBucketLoggingInput) (req *request.Request, output *PutBucketLoggingOutput) { - op := &request.Operation{ - Name: opPutBucketLogging, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?logging", - } - - if input == nil { - input = &PutBucketLoggingInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketLoggingOutput{} - req.Data = output - return -} - -// Set the logging parameters for a bucket and to specify permissions for who -// can view and modify the logging parameters. To set the logging status of -// a bucket, you must be the bucket owner. -func (c *S3) PutBucketLogging(input *PutBucketLoggingInput) (*PutBucketLoggingOutput, error) { - req, out := c.PutBucketLoggingRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketNotification = "PutBucketNotification" - -// PutBucketNotificationRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketNotification operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketNotification method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketNotificationRequest method. -// req, resp := client.PutBucketNotificationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketNotificationRequest(input *PutBucketNotificationInput) (req *request.Request, output *PutBucketNotificationOutput) { - if c.Client.Config.Logger != nil { - c.Client.Config.Logger.Log("This operation, PutBucketNotification, has been deprecated") - } - op := &request.Operation{ - Name: opPutBucketNotification, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?notification", - } - - if input == nil { - input = &PutBucketNotificationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketNotificationOutput{} - req.Data = output - return -} - -// Deprecated, see the PutBucketNotificationConfiguraiton operation. -func (c *S3) PutBucketNotification(input *PutBucketNotificationInput) (*PutBucketNotificationOutput, error) { - req, out := c.PutBucketNotificationRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketNotificationConfiguration = "PutBucketNotificationConfiguration" - -// PutBucketNotificationConfigurationRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketNotificationConfiguration operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketNotificationConfiguration method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketNotificationConfigurationRequest method. -// req, resp := client.PutBucketNotificationConfigurationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketNotificationConfigurationRequest(input *PutBucketNotificationConfigurationInput) (req *request.Request, output *PutBucketNotificationConfigurationOutput) { - op := &request.Operation{ - Name: opPutBucketNotificationConfiguration, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?notification", - } - - if input == nil { - input = &PutBucketNotificationConfigurationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketNotificationConfigurationOutput{} - req.Data = output - return -} - -// Enables notifications of specified events for a bucket. -func (c *S3) PutBucketNotificationConfiguration(input *PutBucketNotificationConfigurationInput) (*PutBucketNotificationConfigurationOutput, error) { - req, out := c.PutBucketNotificationConfigurationRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketPolicy = "PutBucketPolicy" - -// PutBucketPolicyRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketPolicy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketPolicy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketPolicyRequest method. -// req, resp := client.PutBucketPolicyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketPolicyRequest(input *PutBucketPolicyInput) (req *request.Request, output *PutBucketPolicyOutput) { - op := &request.Operation{ - Name: opPutBucketPolicy, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?policy", - } - - if input == nil { - input = &PutBucketPolicyInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketPolicyOutput{} - req.Data = output - return -} - -// Replaces a policy on a bucket. If the bucket already has a policy, the one -// in this request completely replaces it. -func (c *S3) PutBucketPolicy(input *PutBucketPolicyInput) (*PutBucketPolicyOutput, error) { - req, out := c.PutBucketPolicyRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketReplication = "PutBucketReplication" - -// PutBucketReplicationRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketReplication operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketReplication method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketReplicationRequest method. -// req, resp := client.PutBucketReplicationRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketReplicationRequest(input *PutBucketReplicationInput) (req *request.Request, output *PutBucketReplicationOutput) { - op := &request.Operation{ - Name: opPutBucketReplication, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?replication", - } - - if input == nil { - input = &PutBucketReplicationInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketReplicationOutput{} - req.Data = output - return -} - -// Creates a new replication configuration (or replaces an existing one, if -// present). -func (c *S3) PutBucketReplication(input *PutBucketReplicationInput) (*PutBucketReplicationOutput, error) { - req, out := c.PutBucketReplicationRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketRequestPayment = "PutBucketRequestPayment" - -// PutBucketRequestPaymentRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketRequestPayment operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketRequestPayment method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketRequestPaymentRequest method. -// req, resp := client.PutBucketRequestPaymentRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketRequestPaymentRequest(input *PutBucketRequestPaymentInput) (req *request.Request, output *PutBucketRequestPaymentOutput) { - op := &request.Operation{ - Name: opPutBucketRequestPayment, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?requestPayment", - } - - if input == nil { - input = &PutBucketRequestPaymentInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketRequestPaymentOutput{} - req.Data = output - return -} - -// Sets the request payment configuration for a bucket. By default, the bucket -// owner pays for downloads from the bucket. This configuration parameter enables -// the bucket owner (only) to specify that the person requesting the download -// will be charged for the download. Documentation on requester pays buckets -// can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html -func (c *S3) PutBucketRequestPayment(input *PutBucketRequestPaymentInput) (*PutBucketRequestPaymentOutput, error) { - req, out := c.PutBucketRequestPaymentRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketTagging = "PutBucketTagging" - -// PutBucketTaggingRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketTagging operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketTagging method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketTaggingRequest method. -// req, resp := client.PutBucketTaggingRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketTaggingRequest(input *PutBucketTaggingInput) (req *request.Request, output *PutBucketTaggingOutput) { - op := &request.Operation{ - Name: opPutBucketTagging, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?tagging", - } - - if input == nil { - input = &PutBucketTaggingInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketTaggingOutput{} - req.Data = output - return -} - -// Sets the tags for a bucket. -func (c *S3) PutBucketTagging(input *PutBucketTaggingInput) (*PutBucketTaggingOutput, error) { - req, out := c.PutBucketTaggingRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketVersioning = "PutBucketVersioning" - -// PutBucketVersioningRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketVersioning operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketVersioning method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketVersioningRequest method. -// req, resp := client.PutBucketVersioningRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketVersioningRequest(input *PutBucketVersioningInput) (req *request.Request, output *PutBucketVersioningOutput) { - op := &request.Operation{ - Name: opPutBucketVersioning, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?versioning", - } - - if input == nil { - input = &PutBucketVersioningInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketVersioningOutput{} - req.Data = output - return -} - -// Sets the versioning state of an existing bucket. To set the versioning state, -// you must be the bucket owner. -func (c *S3) PutBucketVersioning(input *PutBucketVersioningInput) (*PutBucketVersioningOutput, error) { - req, out := c.PutBucketVersioningRequest(input) - err := req.Send() - return out, err -} - -const opPutBucketWebsite = "PutBucketWebsite" - -// PutBucketWebsiteRequest generates a "aws/request.Request" representing the -// client's request for the PutBucketWebsite operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutBucketWebsite method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutBucketWebsiteRequest method. -// req, resp := client.PutBucketWebsiteRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutBucketWebsiteRequest(input *PutBucketWebsiteInput) (req *request.Request, output *PutBucketWebsiteOutput) { - op := &request.Operation{ - Name: opPutBucketWebsite, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}?website", - } - - if input == nil { - input = &PutBucketWebsiteInput{} - } - - req = c.newRequest(op, input, output) - req.Handlers.Unmarshal.Remove(restxml.UnmarshalHandler) - req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler) - output = &PutBucketWebsiteOutput{} - req.Data = output - return -} - -// Set the website configuration for a bucket. -func (c *S3) PutBucketWebsite(input *PutBucketWebsiteInput) (*PutBucketWebsiteOutput, error) { - req, out := c.PutBucketWebsiteRequest(input) - err := req.Send() - return out, err -} - -const opPutObject = "PutObject" - -// PutObjectRequest generates a "aws/request.Request" representing the -// client's request for the PutObject operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutObject method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutObjectRequest method. -// req, resp := client.PutObjectRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutObjectRequest(input *PutObjectInput) (req *request.Request, output *PutObjectOutput) { - op := &request.Operation{ - Name: opPutObject, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &PutObjectInput{} - } - - req = c.newRequest(op, input, output) - output = &PutObjectOutput{} - req.Data = output - return -} - -// Adds an object to a bucket. -func (c *S3) PutObject(input *PutObjectInput) (*PutObjectOutput, error) { - req, out := c.PutObjectRequest(input) - err := req.Send() - return out, err -} - -const opPutObjectAcl = "PutObjectAcl" - -// PutObjectAclRequest generates a "aws/request.Request" representing the -// client's request for the PutObjectAcl operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the PutObjectAcl method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the PutObjectAclRequest method. -// req, resp := client.PutObjectAclRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) PutObjectAclRequest(input *PutObjectAclInput) (req *request.Request, output *PutObjectAclOutput) { - op := &request.Operation{ - Name: opPutObjectAcl, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}/{Key+}?acl", - } - - if input == nil { - input = &PutObjectAclInput{} - } - - req = c.newRequest(op, input, output) - output = &PutObjectAclOutput{} - req.Data = output - return -} - -// uses the acl subresource to set the access control list (ACL) permissions -// for an object that already exists in a bucket -func (c *S3) PutObjectAcl(input *PutObjectAclInput) (*PutObjectAclOutput, error) { - req, out := c.PutObjectAclRequest(input) - err := req.Send() - return out, err -} - -const opRestoreObject = "RestoreObject" - -// RestoreObjectRequest generates a "aws/request.Request" representing the -// client's request for the RestoreObject operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the RestoreObject method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the RestoreObjectRequest method. -// req, resp := client.RestoreObjectRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) RestoreObjectRequest(input *RestoreObjectInput) (req *request.Request, output *RestoreObjectOutput) { - op := &request.Operation{ - Name: opRestoreObject, - HTTPMethod: "POST", - HTTPPath: "/{Bucket}/{Key+}?restore", - } - - if input == nil { - input = &RestoreObjectInput{} - } - - req = c.newRequest(op, input, output) - output = &RestoreObjectOutput{} - req.Data = output - return -} - -// Restores an archived copy of an object back into Amazon S3 -func (c *S3) RestoreObject(input *RestoreObjectInput) (*RestoreObjectOutput, error) { - req, out := c.RestoreObjectRequest(input) - err := req.Send() - return out, err -} - -const opUploadPart = "UploadPart" - -// UploadPartRequest generates a "aws/request.Request" representing the -// client's request for the UploadPart operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UploadPart method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UploadPartRequest method. -// req, resp := client.UploadPartRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) UploadPartRequest(input *UploadPartInput) (req *request.Request, output *UploadPartOutput) { - op := &request.Operation{ - Name: opUploadPart, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &UploadPartInput{} - } - - req = c.newRequest(op, input, output) - output = &UploadPartOutput{} - req.Data = output - return -} - -// Uploads a part in a multipart upload. -// -// Note: After you initiate multipart upload and upload one or more parts, you -// must either complete or abort multipart upload in order to stop getting charged -// for storage of the uploaded parts. Only after you either complete or abort -// multipart upload, Amazon S3 frees up the parts storage and stops charging -// you for the parts storage. -func (c *S3) UploadPart(input *UploadPartInput) (*UploadPartOutput, error) { - req, out := c.UploadPartRequest(input) - err := req.Send() - return out, err -} - -const opUploadPartCopy = "UploadPartCopy" - -// UploadPartCopyRequest generates a "aws/request.Request" representing the -// client's request for the UploadPartCopy operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the UploadPartCopy method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the UploadPartCopyRequest method. -// req, resp := client.UploadPartCopyRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *S3) UploadPartCopyRequest(input *UploadPartCopyInput) (req *request.Request, output *UploadPartCopyOutput) { - op := &request.Operation{ - Name: opUploadPartCopy, - HTTPMethod: "PUT", - HTTPPath: "/{Bucket}/{Key+}", - } - - if input == nil { - input = &UploadPartCopyInput{} - } - - req = c.newRequest(op, input, output) - output = &UploadPartCopyOutput{} - req.Data = output - return -} - -// Uploads a part by copying data from an existing object as data source. -func (c *S3) UploadPartCopy(input *UploadPartCopyInput) (*UploadPartCopyOutput, error) { - req, out := c.UploadPartCopyRequest(input) - err := req.Send() - return out, err -} - -// Specifies the days since the initiation of an Incomplete Multipart Upload -// that Lifecycle will wait before permanently removing all parts of the upload. -type AbortIncompleteMultipartUpload struct { - _ struct{} `type:"structure"` - - // Indicates the number of days that must pass since initiation for Lifecycle - // to abort an Incomplete Multipart Upload. - DaysAfterInitiation *int64 `type:"integer"` -} - -// String returns the string representation -func (s AbortIncompleteMultipartUpload) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AbortIncompleteMultipartUpload) GoString() string { - return s.String() -} - -type AbortMultipartUploadInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // UploadId is a required field - UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` -} - -// String returns the string representation -func (s AbortMultipartUploadInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AbortMultipartUploadInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AbortMultipartUploadInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AbortMultipartUploadInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.UploadId == nil { - invalidParams.Add(request.NewErrParamRequired("UploadId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type AbortMultipartUploadOutput struct { - _ struct{} `type:"structure"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` -} - -// String returns the string representation -func (s AbortMultipartUploadOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AbortMultipartUploadOutput) GoString() string { - return s.String() -} - -type AccelerateConfiguration struct { - _ struct{} `type:"structure"` - - // The accelerate configuration of the bucket. - Status *string `type:"string" enum:"BucketAccelerateStatus"` -} - -// String returns the string representation -func (s AccelerateConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AccelerateConfiguration) GoString() string { - return s.String() -} - -type AccessControlPolicy struct { - _ struct{} `type:"structure"` - - // A list of grants. - Grants []*Grant `locationName:"AccessControlList" locationNameList:"Grant" type:"list"` - - Owner *Owner `type:"structure"` -} - -// String returns the string representation -func (s AccessControlPolicy) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AccessControlPolicy) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AccessControlPolicy) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AccessControlPolicy"} - if s.Grants != nil { - for i, v := range s.Grants { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Grants", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type Bucket struct { - _ struct{} `type:"structure"` - - // Date the bucket was created. - CreationDate *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // The name of the bucket. - Name *string `type:"string"` -} - -// String returns the string representation -func (s Bucket) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Bucket) GoString() string { - return s.String() -} - -type BucketLifecycleConfiguration struct { - _ struct{} `type:"structure"` - - // Rules is a required field - Rules []*LifecycleRule `locationName:"Rule" type:"list" flattened:"true" required:"true"` -} - -// String returns the string representation -func (s BucketLifecycleConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BucketLifecycleConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *BucketLifecycleConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "BucketLifecycleConfiguration"} - if s.Rules == nil { - invalidParams.Add(request.NewErrParamRequired("Rules")) - } - if s.Rules != nil { - for i, v := range s.Rules { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Rules", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type BucketLoggingStatus struct { - _ struct{} `type:"structure"` - - LoggingEnabled *LoggingEnabled `type:"structure"` -} - -// String returns the string representation -func (s BucketLoggingStatus) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s BucketLoggingStatus) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *BucketLoggingStatus) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "BucketLoggingStatus"} - if s.LoggingEnabled != nil { - if err := s.LoggingEnabled.Validate(); err != nil { - invalidParams.AddNested("LoggingEnabled", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CORSConfiguration struct { - _ struct{} `type:"structure"` - - // CORSRules is a required field - CORSRules []*CORSRule `locationName:"CORSRule" type:"list" flattened:"true" required:"true"` -} - -// String returns the string representation -func (s CORSConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CORSConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CORSConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CORSConfiguration"} - if s.CORSRules == nil { - invalidParams.Add(request.NewErrParamRequired("CORSRules")) - } - if s.CORSRules != nil { - for i, v := range s.CORSRules { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "CORSRules", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CORSRule struct { - _ struct{} `type:"structure"` - - // Specifies which headers are allowed in a pre-flight OPTIONS request. - AllowedHeaders []*string `locationName:"AllowedHeader" type:"list" flattened:"true"` - - // Identifies HTTP methods that the domain/origin specified in the rule is allowed - // to execute. - // - // AllowedMethods is a required field - AllowedMethods []*string `locationName:"AllowedMethod" type:"list" flattened:"true" required:"true"` - - // One or more origins you want customers to be able to access the bucket from. - // - // AllowedOrigins is a required field - AllowedOrigins []*string `locationName:"AllowedOrigin" type:"list" flattened:"true" required:"true"` - - // One or more headers in the response that you want customers to be able to - // access from their applications (for example, from a JavaScript XMLHttpRequest - // object). - ExposeHeaders []*string `locationName:"ExposeHeader" type:"list" flattened:"true"` - - // The time in seconds that your browser is to cache the preflight response - // for the specified resource. - MaxAgeSeconds *int64 `type:"integer"` -} - -// String returns the string representation -func (s CORSRule) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CORSRule) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CORSRule) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CORSRule"} - if s.AllowedMethods == nil { - invalidParams.Add(request.NewErrParamRequired("AllowedMethods")) - } - if s.AllowedOrigins == nil { - invalidParams.Add(request.NewErrParamRequired("AllowedOrigins")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CloudFunctionConfiguration struct { - _ struct{} `type:"structure"` - - CloudFunction *string `type:"string"` - - // Bucket event for which to send notifications. - Event *string `deprecated:"true" type:"string" enum:"Event"` - - Events []*string `locationName:"Event" type:"list" flattened:"true"` - - // Optional unique identifier for configurations in a notification configuration. - // If you don't provide one, Amazon S3 will assign an ID. - Id *string `type:"string"` - - InvocationRole *string `type:"string"` -} - -// String returns the string representation -func (s CloudFunctionConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CloudFunctionConfiguration) GoString() string { - return s.String() -} - -type CommonPrefix struct { - _ struct{} `type:"structure"` - - Prefix *string `type:"string"` -} - -// String returns the string representation -func (s CommonPrefix) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CommonPrefix) GoString() string { - return s.String() -} - -type CompleteMultipartUploadInput struct { - _ struct{} `type:"structure" payload:"MultipartUpload"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - MultipartUpload *CompletedMultipartUpload `locationName:"CompleteMultipartUpload" type:"structure"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // UploadId is a required field - UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` -} - -// String returns the string representation -func (s CompleteMultipartUploadInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CompleteMultipartUploadInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CompleteMultipartUploadInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CompleteMultipartUploadInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.UploadId == nil { - invalidParams.Add(request.NewErrParamRequired("UploadId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CompleteMultipartUploadOutput struct { - _ struct{} `type:"structure"` - - Bucket *string `type:"string"` - - // Entity tag of the object. - ETag *string `type:"string"` - - // If the object expiration is configured, this will contain the expiration - // date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded. - Expiration *string `location:"header" locationName:"x-amz-expiration" type:"string"` - - Key *string `min:"1" type:"string"` - - Location *string `type:"string"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - // Version of the object. - VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` -} - -// String returns the string representation -func (s CompleteMultipartUploadOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CompleteMultipartUploadOutput) GoString() string { - return s.String() -} - -type CompletedMultipartUpload struct { - _ struct{} `type:"structure"` - - Parts []*CompletedPart `locationName:"Part" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s CompletedMultipartUpload) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CompletedMultipartUpload) GoString() string { - return s.String() -} - -type CompletedPart struct { - _ struct{} `type:"structure"` - - // Entity tag returned when the part was uploaded. - ETag *string `type:"string"` - - // Part number that identifies the part. This is a positive integer between - // 1 and 10,000. - PartNumber *int64 `type:"integer"` -} - -// String returns the string representation -func (s CompletedPart) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CompletedPart) GoString() string { - return s.String() -} - -type Condition struct { - _ struct{} `type:"structure"` - - // The HTTP error code when the redirect is applied. In the event of an error, - // if the error code equals this value, then the specified redirect is applied. - // Required when parent element Condition is specified and sibling KeyPrefixEquals - // is not specified. If both are specified, then both must be true for the redirect - // to be applied. - HttpErrorCodeReturnedEquals *string `type:"string"` - - // The object key name prefix when the redirect is applied. For example, to - // redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. - // To redirect request for all pages with the prefix docs/, the key prefix will - // be /docs, which identifies all objects in the docs/ folder. Required when - // the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals - // is not specified. If both conditions are specified, both must be true for - // the redirect to be applied. - KeyPrefixEquals *string `type:"string"` -} - -// String returns the string representation -func (s Condition) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Condition) GoString() string { - return s.String() -} - -type CopyObjectInput struct { - _ struct{} `type:"structure"` - - // The canned ACL to apply to the object. - ACL *string `location:"header" locationName:"x-amz-acl" type:"string" enum:"ObjectCannedACL"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Specifies caching behavior along the request/reply chain. - CacheControl *string `location:"header" locationName:"Cache-Control" type:"string"` - - // Specifies presentational information for the object. - ContentDisposition *string `location:"header" locationName:"Content-Disposition" type:"string"` - - // Specifies what content encodings have been applied to the object and thus - // what decoding mechanisms must be applied to obtain the media-type referenced - // by the Content-Type header field. - ContentEncoding *string `location:"header" locationName:"Content-Encoding" type:"string"` - - // The language the content is in. - ContentLanguage *string `location:"header" locationName:"Content-Language" type:"string"` - - // A standard MIME type describing the format of the object data. - ContentType *string `location:"header" locationName:"Content-Type" type:"string"` - - // The name of the source bucket and key name of the source object, separated - // by a slash (/). Must be URL-encoded. - // - // CopySource is a required field - CopySource *string `location:"header" locationName:"x-amz-copy-source" type:"string" required:"true"` - - // Copies the object if its entity tag (ETag) matches the specified tag. - CopySourceIfMatch *string `location:"header" locationName:"x-amz-copy-source-if-match" type:"string"` - - // Copies the object if it has been modified since the specified time. - CopySourceIfModifiedSince *time.Time `location:"header" locationName:"x-amz-copy-source-if-modified-since" type:"timestamp" timestampFormat:"rfc822"` - - // Copies the object if its entity tag (ETag) is different than the specified - // ETag. - CopySourceIfNoneMatch *string `location:"header" locationName:"x-amz-copy-source-if-none-match" type:"string"` - - // Copies the object if it hasn't been modified since the specified time. - CopySourceIfUnmodifiedSince *time.Time `location:"header" locationName:"x-amz-copy-source-if-unmodified-since" type:"timestamp" timestampFormat:"rfc822"` - - // Specifies the algorithm to use when decrypting the source object (e.g., AES256). - CopySourceSSECustomerAlgorithm *string `location:"header" locationName:"x-amz-copy-source-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use to decrypt - // the source object. The encryption key provided in this header must be one - // that was used when the source object was created. - CopySourceSSECustomerKey *string `location:"header" locationName:"x-amz-copy-source-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - CopySourceSSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-copy-source-server-side-encryption-customer-key-MD5" type:"string"` - - // The date and time at which the object is no longer cacheable. - Expires *time.Time `location:"header" locationName:"Expires" type:"timestamp" timestampFormat:"rfc822"` - - // Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object. - GrantFullControl *string `location:"header" locationName:"x-amz-grant-full-control" type:"string"` - - // Allows grantee to read the object data and its metadata. - GrantRead *string `location:"header" locationName:"x-amz-grant-read" type:"string"` - - // Allows grantee to read the object ACL. - GrantReadACP *string `location:"header" locationName:"x-amz-grant-read-acp" type:"string"` - - // Allows grantee to write the ACL for the applicable object. - GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // A map of metadata to store with the object in S3. - Metadata map[string]*string `location:"headers" locationName:"x-amz-meta-" type:"map"` - - // Specifies whether the metadata is copied from the source object or replaced - // with metadata provided in the request. - MetadataDirective *string `location:"header" locationName:"x-amz-metadata-directive" type:"string" enum:"MetadataDirective"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Specifies the algorithm to use to when encrypting the object (e.g., AES256). - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use in encrypting - // data. This value is used to store the object and then it is discarded; Amazon - // does not store the encryption key. The key must be appropriate for use with - // the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm - // header. - SSECustomerKey *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // Specifies the AWS KMS key ID to use for object encryption. All GET and PUT - // requests for an object protected by AWS KMS will fail if not made via SSL - // or using SigV4. Documentation on configuring any of the officially supported - // AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - // The type of storage to use for the object. Defaults to 'STANDARD'. - StorageClass *string `location:"header" locationName:"x-amz-storage-class" type:"string" enum:"StorageClass"` - - // If the bucket is configured as a website, redirects requests for this object - // to another object in the same bucket or to an external URL. Amazon S3 stores - // the value of this header in the object metadata. - WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` -} - -// String returns the string representation -func (s CopyObjectInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopyObjectInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CopyObjectInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CopyObjectInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.CopySource == nil { - invalidParams.Add(request.NewErrParamRequired("CopySource")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CopyObjectOutput struct { - _ struct{} `type:"structure" payload:"CopyObjectResult"` - - CopyObjectResult *CopyObjectResult `type:"structure"` - - CopySourceVersionId *string `location:"header" locationName:"x-amz-copy-source-version-id" type:"string"` - - // If the object expiration is configured, the response includes this header. - Expiration *string `location:"header" locationName:"x-amz-expiration" type:"string"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header confirming the encryption algorithm - // used. - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header to provide round trip message integrity - // verification of the customer-provided encryption key. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - // Version ID of the newly created copy. - VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` -} - -// String returns the string representation -func (s CopyObjectOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopyObjectOutput) GoString() string { - return s.String() -} - -type CopyObjectResult struct { - _ struct{} `type:"structure"` - - ETag *string `type:"string"` - - LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s CopyObjectResult) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopyObjectResult) GoString() string { - return s.String() -} - -type CopyPartResult struct { - _ struct{} `type:"structure"` - - // Entity tag of the object. - ETag *string `type:"string"` - - // Date and time at which the object was uploaded. - LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` -} - -// String returns the string representation -func (s CopyPartResult) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CopyPartResult) GoString() string { - return s.String() -} - -type CreateBucketConfiguration struct { - _ struct{} `type:"structure"` - - // Specifies the region where the bucket will be created. If you don't specify - // a region, the bucket will be created in US Standard. - LocationConstraint *string `type:"string" enum:"BucketLocationConstraint"` -} - -// String returns the string representation -func (s CreateBucketConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateBucketConfiguration) GoString() string { - return s.String() -} - -type CreateBucketInput struct { - _ struct{} `type:"structure" payload:"CreateBucketConfiguration"` - - // The canned ACL to apply to the bucket. - ACL *string `location:"header" locationName:"x-amz-acl" type:"string" enum:"BucketCannedACL"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - CreateBucketConfiguration *CreateBucketConfiguration `locationName:"CreateBucketConfiguration" type:"structure"` - - // Allows grantee the read, write, read ACP, and write ACP permissions on the - // bucket. - GrantFullControl *string `location:"header" locationName:"x-amz-grant-full-control" type:"string"` - - // Allows grantee to list the objects in the bucket. - GrantRead *string `location:"header" locationName:"x-amz-grant-read" type:"string"` - - // Allows grantee to read the bucket ACL. - GrantReadACP *string `location:"header" locationName:"x-amz-grant-read-acp" type:"string"` - - // Allows grantee to create, overwrite, and delete any object in the bucket. - GrantWrite *string `location:"header" locationName:"x-amz-grant-write" type:"string"` - - // Allows grantee to write the ACL for the applicable bucket. - GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` -} - -// String returns the string representation -func (s CreateBucketInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateBucketInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateBucketInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateBucketInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreateBucketOutput struct { - _ struct{} `type:"structure"` - - Location *string `location:"header" locationName:"Location" type:"string"` -} - -// String returns the string representation -func (s CreateBucketOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateBucketOutput) GoString() string { - return s.String() -} - -type CreateMultipartUploadInput struct { - _ struct{} `type:"structure"` - - // The canned ACL to apply to the object. - ACL *string `location:"header" locationName:"x-amz-acl" type:"string" enum:"ObjectCannedACL"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Specifies caching behavior along the request/reply chain. - CacheControl *string `location:"header" locationName:"Cache-Control" type:"string"` - - // Specifies presentational information for the object. - ContentDisposition *string `location:"header" locationName:"Content-Disposition" type:"string"` - - // Specifies what content encodings have been applied to the object and thus - // what decoding mechanisms must be applied to obtain the media-type referenced - // by the Content-Type header field. - ContentEncoding *string `location:"header" locationName:"Content-Encoding" type:"string"` - - // The language the content is in. - ContentLanguage *string `location:"header" locationName:"Content-Language" type:"string"` - - // A standard MIME type describing the format of the object data. - ContentType *string `location:"header" locationName:"Content-Type" type:"string"` - - // The date and time at which the object is no longer cacheable. - Expires *time.Time `location:"header" locationName:"Expires" type:"timestamp" timestampFormat:"rfc822"` - - // Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object. - GrantFullControl *string `location:"header" locationName:"x-amz-grant-full-control" type:"string"` - - // Allows grantee to read the object data and its metadata. - GrantRead *string `location:"header" locationName:"x-amz-grant-read" type:"string"` - - // Allows grantee to read the object ACL. - GrantReadACP *string `location:"header" locationName:"x-amz-grant-read-acp" type:"string"` - - // Allows grantee to write the ACL for the applicable object. - GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // A map of metadata to store with the object in S3. - Metadata map[string]*string `location:"headers" locationName:"x-amz-meta-" type:"map"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Specifies the algorithm to use to when encrypting the object (e.g., AES256). - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use in encrypting - // data. This value is used to store the object and then it is discarded; Amazon - // does not store the encryption key. The key must be appropriate for use with - // the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm - // header. - SSECustomerKey *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // Specifies the AWS KMS key ID to use for object encryption. All GET and PUT - // requests for an object protected by AWS KMS will fail if not made via SSL - // or using SigV4. Documentation on configuring any of the officially supported - // AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - // The type of storage to use for the object. Defaults to 'STANDARD'. - StorageClass *string `location:"header" locationName:"x-amz-storage-class" type:"string" enum:"StorageClass"` - - // If the bucket is configured as a website, redirects requests for this object - // to another object in the same bucket or to an external URL. Amazon S3 stores - // the value of this header in the object metadata. - WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` -} - -// String returns the string representation -func (s CreateMultipartUploadInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateMultipartUploadInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *CreateMultipartUploadInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "CreateMultipartUploadInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type CreateMultipartUploadOutput struct { - _ struct{} `type:"structure"` - - // Date when multipart upload will become eligible for abort operation by lifecycle. - AbortDate *time.Time `location:"header" locationName:"x-amz-abort-date" type:"timestamp" timestampFormat:"rfc822"` - - // Id of the lifecycle rule that makes a multipart upload eligible for abort - // operation. - AbortRuleId *string `location:"header" locationName:"x-amz-abort-rule-id" type:"string"` - - // Name of the bucket to which the multipart upload was initiated. - Bucket *string `locationName:"Bucket" type:"string"` - - // Object key for which the multipart upload was initiated. - Key *string `min:"1" type:"string"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header confirming the encryption algorithm - // used. - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header to provide round trip message integrity - // verification of the customer-provided encryption key. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - // ID for the initiated multipart upload. - UploadId *string `type:"string"` -} - -// String returns the string representation -func (s CreateMultipartUploadOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s CreateMultipartUploadOutput) GoString() string { - return s.String() -} - -type Delete struct { - _ struct{} `type:"structure"` - - // Objects is a required field - Objects []*ObjectIdentifier `locationName:"Object" type:"list" flattened:"true" required:"true"` - - // Element to enable quiet mode for the request. When you add this element, - // you must set its value to true. - Quiet *bool `type:"boolean"` -} - -// String returns the string representation -func (s Delete) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Delete) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Delete) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Delete"} - if s.Objects == nil { - invalidParams.Add(request.NewErrParamRequired("Objects")) - } - if s.Objects != nil { - for i, v := range s.Objects { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Objects", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketCorsInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteBucketCorsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketCorsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteBucketCorsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteBucketCorsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketCorsOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteBucketCorsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketCorsOutput) GoString() string { - return s.String() -} - -type DeleteBucketInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteBucketInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteBucketInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteBucketInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketLifecycleInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteBucketLifecycleInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketLifecycleInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteBucketLifecycleInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteBucketLifecycleInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketLifecycleOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteBucketLifecycleOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketLifecycleOutput) GoString() string { - return s.String() -} - -type DeleteBucketOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteBucketOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketOutput) GoString() string { - return s.String() -} - -type DeleteBucketPolicyInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteBucketPolicyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketPolicyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteBucketPolicyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteBucketPolicyInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketPolicyOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteBucketPolicyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketPolicyOutput) GoString() string { - return s.String() -} - -type DeleteBucketReplicationInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteBucketReplicationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketReplicationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteBucketReplicationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteBucketReplicationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketReplicationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteBucketReplicationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketReplicationOutput) GoString() string { - return s.String() -} - -type DeleteBucketTaggingInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteBucketTaggingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketTaggingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteBucketTaggingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteBucketTaggingInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketTaggingOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteBucketTaggingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketTaggingOutput) GoString() string { - return s.String() -} - -type DeleteBucketWebsiteInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s DeleteBucketWebsiteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketWebsiteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteBucketWebsiteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteBucketWebsiteInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteBucketWebsiteOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s DeleteBucketWebsiteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteBucketWebsiteOutput) GoString() string { - return s.String() -} - -type DeleteMarkerEntry struct { - _ struct{} `type:"structure"` - - // Specifies whether the object is (true) or is not (false) the latest version - // of an object. - IsLatest *bool `type:"boolean"` - - // The object key. - Key *string `min:"1" type:"string"` - - // Date and time the object was last modified. - LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - Owner *Owner `type:"structure"` - - // Version ID of an object. - VersionId *string `type:"string"` -} - -// String returns the string representation -func (s DeleteMarkerEntry) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteMarkerEntry) GoString() string { - return s.String() -} - -type DeleteObjectInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // The concatenation of the authentication device's serial number, a space, - // and the value that is displayed on your authentication device. - MFA *string `location:"header" locationName:"x-amz-mfa" type:"string"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // VersionId used to reference a specific version of the object. - VersionId *string `location:"querystring" locationName:"versionId" type:"string"` -} - -// String returns the string representation -func (s DeleteObjectInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteObjectInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteObjectInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteObjectInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteObjectOutput struct { - _ struct{} `type:"structure"` - - // Specifies whether the versioned object that was permanently deleted was (true) - // or was not (false) a delete marker. - DeleteMarker *bool `location:"header" locationName:"x-amz-delete-marker" type:"boolean"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // Returns the version ID of the delete marker created as a result of the DELETE - // operation. - VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` -} - -// String returns the string representation -func (s DeleteObjectOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteObjectOutput) GoString() string { - return s.String() -} - -type DeleteObjectsInput struct { - _ struct{} `type:"structure" payload:"Delete"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Delete is a required field - Delete *Delete `locationName:"Delete" type:"structure" required:"true"` - - // The concatenation of the authentication device's serial number, a space, - // and the value that is displayed on your authentication device. - MFA *string `location:"header" locationName:"x-amz-mfa" type:"string"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` -} - -// String returns the string representation -func (s DeleteObjectsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteObjectsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DeleteObjectsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DeleteObjectsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Delete == nil { - invalidParams.Add(request.NewErrParamRequired("Delete")) - } - if s.Delete != nil { - if err := s.Delete.Validate(); err != nil { - invalidParams.AddNested("Delete", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type DeleteObjectsOutput struct { - _ struct{} `type:"structure"` - - Deleted []*DeletedObject `type:"list" flattened:"true"` - - Errors []*Error `locationName:"Error" type:"list" flattened:"true"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` -} - -// String returns the string representation -func (s DeleteObjectsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeleteObjectsOutput) GoString() string { - return s.String() -} - -type DeletedObject struct { - _ struct{} `type:"structure"` - - DeleteMarker *bool `type:"boolean"` - - DeleteMarkerVersionId *string `type:"string"` - - Key *string `min:"1" type:"string"` - - VersionId *string `type:"string"` -} - -// String returns the string representation -func (s DeletedObject) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DeletedObject) GoString() string { - return s.String() -} - -type Destination struct { - _ struct{} `type:"structure"` - - // Amazon resource name (ARN) of the bucket where you want Amazon S3 to store - // replicas of the object identified by the rule. - // - // Bucket is a required field - Bucket *string `type:"string" required:"true"` - - // The class of storage used to store the object. - StorageClass *string `type:"string" enum:"StorageClass"` -} - -// String returns the string representation -func (s Destination) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Destination) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Destination) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Destination"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type Error struct { - _ struct{} `type:"structure"` - - Code *string `type:"string"` - - Key *string `min:"1" type:"string"` - - Message *string `type:"string"` - - VersionId *string `type:"string"` -} - -// String returns the string representation -func (s Error) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Error) GoString() string { - return s.String() -} - -type ErrorDocument struct { - _ struct{} `type:"structure"` - - // The object key name to use when a 4XX class error occurs. - // - // Key is a required field - Key *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s ErrorDocument) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ErrorDocument) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ErrorDocument) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ErrorDocument"} - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Container for key value pair that defines the criteria for the filter rule. -type FilterRule struct { - _ struct{} `type:"structure"` - - // Object key name prefix or suffix identifying one or more objects to which - // the filtering rule applies. Maximum prefix length can be up to 1,024 characters. - // Overlapping prefixes and suffixes are not supported. For more information, - // go to Configuring Event Notifications (http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) - // in the Amazon Simple Storage Service Developer Guide. - Name *string `type:"string" enum:"FilterRuleName"` - - Value *string `type:"string"` -} - -// String returns the string representation -func (s FilterRule) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s FilterRule) GoString() string { - return s.String() -} - -type GetBucketAccelerateConfigurationInput struct { - _ struct{} `type:"structure"` - - // Name of the bucket for which the accelerate configuration is retrieved. - // - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketAccelerateConfigurationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketAccelerateConfigurationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketAccelerateConfigurationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketAccelerateConfigurationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketAccelerateConfigurationOutput struct { - _ struct{} `type:"structure"` - - // The accelerate configuration of the bucket. - Status *string `type:"string" enum:"BucketAccelerateStatus"` -} - -// String returns the string representation -func (s GetBucketAccelerateConfigurationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketAccelerateConfigurationOutput) GoString() string { - return s.String() -} - -type GetBucketAclInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketAclInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketAclInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketAclInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketAclInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketAclOutput struct { - _ struct{} `type:"structure"` - - // A list of grants. - Grants []*Grant `locationName:"AccessControlList" locationNameList:"Grant" type:"list"` - - Owner *Owner `type:"structure"` -} - -// String returns the string representation -func (s GetBucketAclOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketAclOutput) GoString() string { - return s.String() -} - -type GetBucketCorsInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketCorsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketCorsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketCorsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketCorsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketCorsOutput struct { - _ struct{} `type:"structure"` - - CORSRules []*CORSRule `locationName:"CORSRule" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s GetBucketCorsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketCorsOutput) GoString() string { - return s.String() -} - -type GetBucketLifecycleConfigurationInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketLifecycleConfigurationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLifecycleConfigurationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketLifecycleConfigurationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketLifecycleConfigurationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketLifecycleConfigurationOutput struct { - _ struct{} `type:"structure"` - - Rules []*LifecycleRule `locationName:"Rule" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s GetBucketLifecycleConfigurationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLifecycleConfigurationOutput) GoString() string { - return s.String() -} - -type GetBucketLifecycleInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketLifecycleInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLifecycleInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketLifecycleInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketLifecycleInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketLifecycleOutput struct { - _ struct{} `type:"structure"` - - Rules []*Rule `locationName:"Rule" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s GetBucketLifecycleOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLifecycleOutput) GoString() string { - return s.String() -} - -type GetBucketLocationInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketLocationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLocationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketLocationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketLocationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketLocationOutput struct { - _ struct{} `type:"structure"` - - LocationConstraint *string `type:"string" enum:"BucketLocationConstraint"` -} - -// String returns the string representation -func (s GetBucketLocationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLocationOutput) GoString() string { - return s.String() -} - -type GetBucketLoggingInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketLoggingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLoggingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketLoggingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketLoggingInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketLoggingOutput struct { - _ struct{} `type:"structure"` - - LoggingEnabled *LoggingEnabled `type:"structure"` -} - -// String returns the string representation -func (s GetBucketLoggingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketLoggingOutput) GoString() string { - return s.String() -} - -type GetBucketNotificationConfigurationRequest struct { - _ struct{} `type:"structure"` - - // Name of the bucket to get the notification configuration for. - // - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketNotificationConfigurationRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketNotificationConfigurationRequest) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketNotificationConfigurationRequest) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketNotificationConfigurationRequest"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketPolicyInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketPolicyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketPolicyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketPolicyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketPolicyInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketPolicyOutput struct { - _ struct{} `type:"structure" payload:"Policy"` - - // The bucket policy as a JSON document. - Policy *string `type:"string"` -} - -// String returns the string representation -func (s GetBucketPolicyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketPolicyOutput) GoString() string { - return s.String() -} - -type GetBucketReplicationInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketReplicationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketReplicationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketReplicationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketReplicationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketReplicationOutput struct { - _ struct{} `type:"structure" payload:"ReplicationConfiguration"` - - // Container for replication rules. You can add as many as 1,000 rules. Total - // replication configuration size can be up to 2 MB. - ReplicationConfiguration *ReplicationConfiguration `type:"structure"` -} - -// String returns the string representation -func (s GetBucketReplicationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketReplicationOutput) GoString() string { - return s.String() -} - -type GetBucketRequestPaymentInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketRequestPaymentInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketRequestPaymentInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketRequestPaymentInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketRequestPaymentInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketRequestPaymentOutput struct { - _ struct{} `type:"structure"` - - // Specifies who pays for the download and request fees. - Payer *string `type:"string" enum:"Payer"` -} - -// String returns the string representation -func (s GetBucketRequestPaymentOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketRequestPaymentOutput) GoString() string { - return s.String() -} - -type GetBucketTaggingInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketTaggingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketTaggingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketTaggingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketTaggingInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketTaggingOutput struct { - _ struct{} `type:"structure"` - - // TagSet is a required field - TagSet []*Tag `locationNameList:"Tag" type:"list" required:"true"` -} - -// String returns the string representation -func (s GetBucketTaggingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketTaggingOutput) GoString() string { - return s.String() -} - -type GetBucketVersioningInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketVersioningInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketVersioningInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketVersioningInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketVersioningInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketVersioningOutput struct { - _ struct{} `type:"structure"` - - // Specifies whether MFA delete is enabled in the bucket versioning configuration. - // This element is only returned if the bucket has been configured with MFA - // delete. If the bucket has never been so configured, this element is not returned. - MFADelete *string `locationName:"MfaDelete" type:"string" enum:"MFADeleteStatus"` - - // The versioning state of the bucket. - Status *string `type:"string" enum:"BucketVersioningStatus"` -} - -// String returns the string representation -func (s GetBucketVersioningOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketVersioningOutput) GoString() string { - return s.String() -} - -type GetBucketWebsiteInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s GetBucketWebsiteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketWebsiteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetBucketWebsiteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetBucketWebsiteInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetBucketWebsiteOutput struct { - _ struct{} `type:"structure"` - - ErrorDocument *ErrorDocument `type:"structure"` - - IndexDocument *IndexDocument `type:"structure"` - - RedirectAllRequestsTo *RedirectAllRequestsTo `type:"structure"` - - RoutingRules []*RoutingRule `locationNameList:"RoutingRule" type:"list"` -} - -// String returns the string representation -func (s GetBucketWebsiteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetBucketWebsiteOutput) GoString() string { - return s.String() -} - -type GetObjectAclInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // VersionId used to reference a specific version of the object. - VersionId *string `location:"querystring" locationName:"versionId" type:"string"` -} - -// String returns the string representation -func (s GetObjectAclInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetObjectAclInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetObjectAclInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetObjectAclInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetObjectAclOutput struct { - _ struct{} `type:"structure"` - - // A list of grants. - Grants []*Grant `locationName:"AccessControlList" locationNameList:"Grant" type:"list"` - - Owner *Owner `type:"structure"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` -} - -// String returns the string representation -func (s GetObjectAclOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetObjectAclOutput) GoString() string { - return s.String() -} - -type GetObjectInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Return the object only if its entity tag (ETag) is the same as the one specified, - // otherwise return a 412 (precondition failed). - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - - // Return the object only if it has been modified since the specified time, - // otherwise return a 304 (not modified). - IfModifiedSince *time.Time `location:"header" locationName:"If-Modified-Since" type:"timestamp" timestampFormat:"rfc822"` - - // Return the object only if its entity tag (ETag) is different from the one - // specified, otherwise return a 304 (not modified). - IfNoneMatch *string `location:"header" locationName:"If-None-Match" type:"string"` - - // Return the object only if it has not been modified since the specified time, - // otherwise return a 412 (precondition failed). - IfUnmodifiedSince *time.Time `location:"header" locationName:"If-Unmodified-Since" type:"timestamp" timestampFormat:"rfc822"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Part number of the object being read. This is a positive integer between - // 1 and 10,000. Effectively performs a 'ranged' GET request for the part specified. - // Useful for downloading just a part of an object. - PartNumber *int64 `location:"querystring" locationName:"partNumber" type:"integer"` - - // Downloads the specified range bytes of an object. For more information about - // the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35. - Range *string `location:"header" locationName:"Range" type:"string"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Sets the Cache-Control header of the response. - ResponseCacheControl *string `location:"querystring" locationName:"response-cache-control" type:"string"` - - // Sets the Content-Disposition header of the response - ResponseContentDisposition *string `location:"querystring" locationName:"response-content-disposition" type:"string"` - - // Sets the Content-Encoding header of the response. - ResponseContentEncoding *string `location:"querystring" locationName:"response-content-encoding" type:"string"` - - // Sets the Content-Language header of the response. - ResponseContentLanguage *string `location:"querystring" locationName:"response-content-language" type:"string"` - - // Sets the Content-Type header of the response. - ResponseContentType *string `location:"querystring" locationName:"response-content-type" type:"string"` - - // Sets the Expires header of the response. - ResponseExpires *time.Time `location:"querystring" locationName:"response-expires" type:"timestamp" timestampFormat:"iso8601"` - - // Specifies the algorithm to use to when encrypting the object (e.g., AES256). - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use in encrypting - // data. This value is used to store the object and then it is discarded; Amazon - // does not store the encryption key. The key must be appropriate for use with - // the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm - // header. - SSECustomerKey *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // VersionId used to reference a specific version of the object. - VersionId *string `location:"querystring" locationName:"versionId" type:"string"` -} - -// String returns the string representation -func (s GetObjectInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetObjectInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetObjectInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetObjectInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetObjectOutput struct { - _ struct{} `type:"structure" payload:"Body"` - - AcceptRanges *string `location:"header" locationName:"accept-ranges" type:"string"` - - // Object data. - Body io.ReadCloser `type:"blob"` - - // Specifies caching behavior along the request/reply chain. - CacheControl *string `location:"header" locationName:"Cache-Control" type:"string"` - - // Specifies presentational information for the object. - ContentDisposition *string `location:"header" locationName:"Content-Disposition" type:"string"` - - // Specifies what content encodings have been applied to the object and thus - // what decoding mechanisms must be applied to obtain the media-type referenced - // by the Content-Type header field. - ContentEncoding *string `location:"header" locationName:"Content-Encoding" type:"string"` - - // The language the content is in. - ContentLanguage *string `location:"header" locationName:"Content-Language" type:"string"` - - // Size of the body in bytes. - ContentLength *int64 `location:"header" locationName:"Content-Length" type:"long"` - - // The portion of the object returned in the response. - ContentRange *string `location:"header" locationName:"Content-Range" type:"string"` - - // A standard MIME type describing the format of the object data. - ContentType *string `location:"header" locationName:"Content-Type" type:"string"` - - // Specifies whether the object retrieved was (true) or was not (false) a Delete - // Marker. If false, this response header does not appear in the response. - DeleteMarker *bool `location:"header" locationName:"x-amz-delete-marker" type:"boolean"` - - // An ETag is an opaque identifier assigned by a web server to a specific version - // of a resource found at a URL - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // If the object expiration is configured (see PUT Bucket lifecycle), the response - // includes this header. It includes the expiry-date and rule-id key value pairs - // providing object expiration information. The value of the rule-id is URL - // encoded. - Expiration *string `location:"header" locationName:"x-amz-expiration" type:"string"` - - // The date and time at which the object is no longer cacheable. - Expires *string `location:"header" locationName:"Expires" type:"string"` - - // Last modified date of the object - LastModified *time.Time `location:"header" locationName:"Last-Modified" type:"timestamp" timestampFormat:"rfc822"` - - // A map of metadata to store with the object in S3. - Metadata map[string]*string `location:"headers" locationName:"x-amz-meta-" type:"map"` - - // This is set to the number of metadata entries not returned in x-amz-meta - // headers. This can happen if you create metadata using an API like SOAP that - // supports more flexible metadata than the REST API. For example, using SOAP, - // you can create metadata whose values are not legal HTTP headers. - MissingMeta *int64 `location:"header" locationName:"x-amz-missing-meta" type:"integer"` - - // The count of parts this object has. - PartsCount *int64 `location:"header" locationName:"x-amz-mp-parts-count" type:"integer"` - - ReplicationStatus *string `location:"header" locationName:"x-amz-replication-status" type:"string" enum:"ReplicationStatus"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // Provides information about object restoration operation and expiration time - // of the restored object copy. - Restore *string `location:"header" locationName:"x-amz-restore" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header confirming the encryption algorithm - // used. - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header to provide round trip message integrity - // verification of the customer-provided encryption key. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - StorageClass *string `location:"header" locationName:"x-amz-storage-class" type:"string" enum:"StorageClass"` - - // Version of the object. - VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` - - // If the bucket is configured as a website, redirects requests for this object - // to another object in the same bucket or to an external URL. Amazon S3 stores - // the value of this header in the object metadata. - WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` -} - -// String returns the string representation -func (s GetObjectOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetObjectOutput) GoString() string { - return s.String() -} - -type GetObjectTorrentInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` -} - -// String returns the string representation -func (s GetObjectTorrentInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetObjectTorrentInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetObjectTorrentInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetObjectTorrentInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type GetObjectTorrentOutput struct { - _ struct{} `type:"structure" payload:"Body"` - - Body io.ReadCloser `type:"blob"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` -} - -// String returns the string representation -func (s GetObjectTorrentOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetObjectTorrentOutput) GoString() string { - return s.String() -} - -type Grant struct { - _ struct{} `type:"structure"` - - Grantee *Grantee `type:"structure"` - - // Specifies the permission given to the grantee. - Permission *string `type:"string" enum:"Permission"` -} - -// String returns the string representation -func (s Grant) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Grant) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Grant) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Grant"} - if s.Grantee != nil { - if err := s.Grantee.Validate(); err != nil { - invalidParams.AddNested("Grantee", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type Grantee struct { - _ struct{} `type:"structure" xmlPrefix:"xsi" xmlURI:"http://www.w3.org/2001/XMLSchema-instance"` - - // Screen name of the grantee. - DisplayName *string `type:"string"` - - // Email address of the grantee. - EmailAddress *string `type:"string"` - - // The canonical user ID of the grantee. - ID *string `type:"string"` - - // Type of grantee - // - // Type is a required field - Type *string `locationName:"xsi:type" type:"string" xmlAttribute:"true" required:"true" enum:"Type"` - - // URI of the grantee group. - URI *string `type:"string"` -} - -// String returns the string representation -func (s Grantee) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Grantee) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Grantee) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Grantee"} - if s.Type == nil { - invalidParams.Add(request.NewErrParamRequired("Type")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type HeadBucketInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s HeadBucketInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HeadBucketInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *HeadBucketInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "HeadBucketInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type HeadBucketOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s HeadBucketOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HeadBucketOutput) GoString() string { - return s.String() -} - -type HeadObjectInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Return the object only if its entity tag (ETag) is the same as the one specified, - // otherwise return a 412 (precondition failed). - IfMatch *string `location:"header" locationName:"If-Match" type:"string"` - - // Return the object only if it has been modified since the specified time, - // otherwise return a 304 (not modified). - IfModifiedSince *time.Time `location:"header" locationName:"If-Modified-Since" type:"timestamp" timestampFormat:"rfc822"` - - // Return the object only if its entity tag (ETag) is different from the one - // specified, otherwise return a 304 (not modified). - IfNoneMatch *string `location:"header" locationName:"If-None-Match" type:"string"` - - // Return the object only if it has not been modified since the specified time, - // otherwise return a 412 (precondition failed). - IfUnmodifiedSince *time.Time `location:"header" locationName:"If-Unmodified-Since" type:"timestamp" timestampFormat:"rfc822"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Part number of the object being read. This is a positive integer between - // 1 and 10,000. Effectively performs a 'ranged' HEAD request for the part specified. - // Useful querying about the size of the part and the number of parts in this - // object. - PartNumber *int64 `location:"querystring" locationName:"partNumber" type:"integer"` - - // Downloads the specified range bytes of an object. For more information about - // the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35. - Range *string `location:"header" locationName:"Range" type:"string"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Specifies the algorithm to use to when encrypting the object (e.g., AES256). - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use in encrypting - // data. This value is used to store the object and then it is discarded; Amazon - // does not store the encryption key. The key must be appropriate for use with - // the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm - // header. - SSECustomerKey *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // VersionId used to reference a specific version of the object. - VersionId *string `location:"querystring" locationName:"versionId" type:"string"` -} - -// String returns the string representation -func (s HeadObjectInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HeadObjectInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *HeadObjectInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "HeadObjectInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type HeadObjectOutput struct { - _ struct{} `type:"structure"` - - AcceptRanges *string `location:"header" locationName:"accept-ranges" type:"string"` - - // Specifies caching behavior along the request/reply chain. - CacheControl *string `location:"header" locationName:"Cache-Control" type:"string"` - - // Specifies presentational information for the object. - ContentDisposition *string `location:"header" locationName:"Content-Disposition" type:"string"` - - // Specifies what content encodings have been applied to the object and thus - // what decoding mechanisms must be applied to obtain the media-type referenced - // by the Content-Type header field. - ContentEncoding *string `location:"header" locationName:"Content-Encoding" type:"string"` - - // The language the content is in. - ContentLanguage *string `location:"header" locationName:"Content-Language" type:"string"` - - // Size of the body in bytes. - ContentLength *int64 `location:"header" locationName:"Content-Length" type:"long"` - - // A standard MIME type describing the format of the object data. - ContentType *string `location:"header" locationName:"Content-Type" type:"string"` - - // Specifies whether the object retrieved was (true) or was not (false) a Delete - // Marker. If false, this response header does not appear in the response. - DeleteMarker *bool `location:"header" locationName:"x-amz-delete-marker" type:"boolean"` - - // An ETag is an opaque identifier assigned by a web server to a specific version - // of a resource found at a URL - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // If the object expiration is configured (see PUT Bucket lifecycle), the response - // includes this header. It includes the expiry-date and rule-id key value pairs - // providing object expiration information. The value of the rule-id is URL - // encoded. - Expiration *string `location:"header" locationName:"x-amz-expiration" type:"string"` - - // The date and time at which the object is no longer cacheable. - Expires *string `location:"header" locationName:"Expires" type:"string"` - - // Last modified date of the object - LastModified *time.Time `location:"header" locationName:"Last-Modified" type:"timestamp" timestampFormat:"rfc822"` - - // A map of metadata to store with the object in S3. - Metadata map[string]*string `location:"headers" locationName:"x-amz-meta-" type:"map"` - - // This is set to the number of metadata entries not returned in x-amz-meta - // headers. This can happen if you create metadata using an API like SOAP that - // supports more flexible metadata than the REST API. For example, using SOAP, - // you can create metadata whose values are not legal HTTP headers. - MissingMeta *int64 `location:"header" locationName:"x-amz-missing-meta" type:"integer"` - - // The count of parts this object has. - PartsCount *int64 `location:"header" locationName:"x-amz-mp-parts-count" type:"integer"` - - ReplicationStatus *string `location:"header" locationName:"x-amz-replication-status" type:"string" enum:"ReplicationStatus"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // Provides information about object restoration operation and expiration time - // of the restored object copy. - Restore *string `location:"header" locationName:"x-amz-restore" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header confirming the encryption algorithm - // used. - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header to provide round trip message integrity - // verification of the customer-provided encryption key. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - StorageClass *string `location:"header" locationName:"x-amz-storage-class" type:"string" enum:"StorageClass"` - - // Version of the object. - VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` - - // If the bucket is configured as a website, redirects requests for this object - // to another object in the same bucket or to an external URL. Amazon S3 stores - // the value of this header in the object metadata. - WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` -} - -// String returns the string representation -func (s HeadObjectOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s HeadObjectOutput) GoString() string { - return s.String() -} - -type IndexDocument struct { - _ struct{} `type:"structure"` - - // A suffix that is appended to a request that is for a directory on the website - // endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ - // the data that is returned will be for the object with the key name images/index.html) - // The suffix must not be empty and must not include a slash character. - // - // Suffix is a required field - Suffix *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s IndexDocument) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s IndexDocument) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *IndexDocument) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "IndexDocument"} - if s.Suffix == nil { - invalidParams.Add(request.NewErrParamRequired("Suffix")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type Initiator struct { - _ struct{} `type:"structure"` - - // Name of the Principal. - DisplayName *string `type:"string"` - - // If the principal is an AWS account, it provides the Canonical User ID. If - // the principal is an IAM User, it provides a user ARN value. - ID *string `type:"string"` -} - -// String returns the string representation -func (s Initiator) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Initiator) GoString() string { - return s.String() -} - -// Container for object key name prefix and suffix filtering rules. -type KeyFilter struct { - _ struct{} `type:"structure"` - - // A list of containers for key value pair that defines the criteria for the - // filter rule. - FilterRules []*FilterRule `locationName:"FilterRule" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s KeyFilter) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s KeyFilter) GoString() string { - return s.String() -} - -// Container for specifying the AWS Lambda notification configuration. -type LambdaFunctionConfiguration struct { - _ struct{} `type:"structure"` - - // Events is a required field - Events []*string `locationName:"Event" type:"list" flattened:"true" required:"true"` - - // Container for object key name filtering rules. For information about key - // name filtering, go to Configuring Event Notifications (http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) - // in the Amazon Simple Storage Service Developer Guide. - Filter *NotificationConfigurationFilter `type:"structure"` - - // Optional unique identifier for configurations in a notification configuration. - // If you don't provide one, Amazon S3 will assign an ID. - Id *string `type:"string"` - - // Lambda cloud function ARN that Amazon S3 can invoke when it detects events - // of the specified type. - // - // LambdaFunctionArn is a required field - LambdaFunctionArn *string `locationName:"CloudFunction" type:"string" required:"true"` -} - -// String returns the string representation -func (s LambdaFunctionConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LambdaFunctionConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *LambdaFunctionConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "LambdaFunctionConfiguration"} - if s.Events == nil { - invalidParams.Add(request.NewErrParamRequired("Events")) - } - if s.LambdaFunctionArn == nil { - invalidParams.Add(request.NewErrParamRequired("LambdaFunctionArn")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type LifecycleConfiguration struct { - _ struct{} `type:"structure"` - - // Rules is a required field - Rules []*Rule `locationName:"Rule" type:"list" flattened:"true" required:"true"` -} - -// String returns the string representation -func (s LifecycleConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LifecycleConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *LifecycleConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "LifecycleConfiguration"} - if s.Rules == nil { - invalidParams.Add(request.NewErrParamRequired("Rules")) - } - if s.Rules != nil { - for i, v := range s.Rules { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Rules", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type LifecycleExpiration struct { - _ struct{} `type:"structure"` - - // Indicates at what date the object is to be moved or deleted. Should be in - // GMT ISO 8601 Format. - Date *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // Indicates the lifetime, in days, of the objects that are subject to the rule. - // The value must be a non-zero positive integer. - Days *int64 `type:"integer"` - - // Indicates whether Amazon S3 will remove a delete marker with no noncurrent - // versions. If set to true, the delete marker will be expired; if set to false - // the policy takes no action. This cannot be specified with Days or Date in - // a Lifecycle Expiration Policy. - ExpiredObjectDeleteMarker *bool `type:"boolean"` -} - -// String returns the string representation -func (s LifecycleExpiration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LifecycleExpiration) GoString() string { - return s.String() -} - -type LifecycleRule struct { - _ struct{} `type:"structure"` - - // Specifies the days since the initiation of an Incomplete Multipart Upload - // that Lifecycle will wait before permanently removing all parts of the upload. - AbortIncompleteMultipartUpload *AbortIncompleteMultipartUpload `type:"structure"` - - Expiration *LifecycleExpiration `type:"structure"` - - // Unique identifier for the rule. The value cannot be longer than 255 characters. - ID *string `type:"string"` - - // Specifies when noncurrent object versions expire. Upon expiration, Amazon - // S3 permanently deletes the noncurrent object versions. You set this lifecycle - // configuration action on a bucket that has versioning enabled (or suspended) - // to request that Amazon S3 delete noncurrent object versions at a specific - // period in the object's lifetime. - NoncurrentVersionExpiration *NoncurrentVersionExpiration `type:"structure"` - - NoncurrentVersionTransitions []*NoncurrentVersionTransition `locationName:"NoncurrentVersionTransition" type:"list" flattened:"true"` - - // Prefix identifying one or more objects to which the rule applies. - // - // Prefix is a required field - Prefix *string `type:"string" required:"true"` - - // If 'Enabled', the rule is currently being applied. If 'Disabled', the rule - // is not currently being applied. - // - // Status is a required field - Status *string `type:"string" required:"true" enum:"ExpirationStatus"` - - Transitions []*Transition `locationName:"Transition" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s LifecycleRule) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LifecycleRule) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *LifecycleRule) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "LifecycleRule"} - if s.Prefix == nil { - invalidParams.Add(request.NewErrParamRequired("Prefix")) - } - if s.Status == nil { - invalidParams.Add(request.NewErrParamRequired("Status")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ListBucketsInput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s ListBucketsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListBucketsInput) GoString() string { - return s.String() -} - -type ListBucketsOutput struct { - _ struct{} `type:"structure"` - - Buckets []*Bucket `locationNameList:"Bucket" type:"list"` - - Owner *Owner `type:"structure"` -} - -// String returns the string representation -func (s ListBucketsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListBucketsOutput) GoString() string { - return s.String() -} - -type ListMultipartUploadsInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Character you use to group keys. - Delimiter *string `location:"querystring" locationName:"delimiter" type:"string"` - - // Requests Amazon S3 to encode the object keys in the response and specifies - // the encoding method to use. An object key may contain any Unicode character; - // however, XML 1.0 parser cannot parse some characters, such as characters - // with an ASCII value from 0 to 10. For characters that are not supported in - // XML 1.0, you can add this parameter to request that Amazon S3 encode the - // keys in the response. - EncodingType *string `location:"querystring" locationName:"encoding-type" type:"string" enum:"EncodingType"` - - // Together with upload-id-marker, this parameter specifies the multipart upload - // after which listing should begin. - KeyMarker *string `location:"querystring" locationName:"key-marker" type:"string"` - - // Sets the maximum number of multipart uploads, from 1 to 1,000, to return - // in the response body. 1,000 is the maximum number of uploads that can be - // returned in a response. - MaxUploads *int64 `location:"querystring" locationName:"max-uploads" type:"integer"` - - // Lists in-progress uploads only for those keys that begin with the specified - // prefix. - Prefix *string `location:"querystring" locationName:"prefix" type:"string"` - - // Together with key-marker, specifies the multipart upload after which listing - // should begin. If key-marker is not specified, the upload-id-marker parameter - // is ignored. - UploadIdMarker *string `location:"querystring" locationName:"upload-id-marker" type:"string"` -} - -// String returns the string representation -func (s ListMultipartUploadsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListMultipartUploadsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListMultipartUploadsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListMultipartUploadsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ListMultipartUploadsOutput struct { - _ struct{} `type:"structure"` - - // Name of the bucket to which the multipart upload was initiated. - Bucket *string `type:"string"` - - CommonPrefixes []*CommonPrefix `type:"list" flattened:"true"` - - Delimiter *string `type:"string"` - - // Encoding type used by Amazon S3 to encode object keys in the response. - EncodingType *string `type:"string" enum:"EncodingType"` - - // Indicates whether the returned list of multipart uploads is truncated. A - // value of true indicates that the list was truncated. The list can be truncated - // if the number of multipart uploads exceeds the limit allowed or specified - // by max uploads. - IsTruncated *bool `type:"boolean"` - - // The key at or after which the listing began. - KeyMarker *string `type:"string"` - - // Maximum number of multipart uploads that could have been included in the - // response. - MaxUploads *int64 `type:"integer"` - - // When a list is truncated, this element specifies the value that should be - // used for the key-marker request parameter in a subsequent request. - NextKeyMarker *string `type:"string"` - - // When a list is truncated, this element specifies the value that should be - // used for the upload-id-marker request parameter in a subsequent request. - NextUploadIdMarker *string `type:"string"` - - // When a prefix is provided in the request, this field contains the specified - // prefix. The result contains only keys starting with the specified prefix. - Prefix *string `type:"string"` - - // Upload ID after which listing began. - UploadIdMarker *string `type:"string"` - - Uploads []*MultipartUpload `locationName:"Upload" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s ListMultipartUploadsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListMultipartUploadsOutput) GoString() string { - return s.String() -} - -type ListObjectVersionsInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // A delimiter is a character you use to group keys. - Delimiter *string `location:"querystring" locationName:"delimiter" type:"string"` - - // Requests Amazon S3 to encode the object keys in the response and specifies - // the encoding method to use. An object key may contain any Unicode character; - // however, XML 1.0 parser cannot parse some characters, such as characters - // with an ASCII value from 0 to 10. For characters that are not supported in - // XML 1.0, you can add this parameter to request that Amazon S3 encode the - // keys in the response. - EncodingType *string `location:"querystring" locationName:"encoding-type" type:"string" enum:"EncodingType"` - - // Specifies the key to start with when listing objects in a bucket. - KeyMarker *string `location:"querystring" locationName:"key-marker" type:"string"` - - // Sets the maximum number of keys returned in the response. The response might - // contain fewer keys but will never contain more. - MaxKeys *int64 `location:"querystring" locationName:"max-keys" type:"integer"` - - // Limits the response to keys that begin with the specified prefix. - Prefix *string `location:"querystring" locationName:"prefix" type:"string"` - - // Specifies the object version you want to start listing from. - VersionIdMarker *string `location:"querystring" locationName:"version-id-marker" type:"string"` -} - -// String returns the string representation -func (s ListObjectVersionsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListObjectVersionsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListObjectVersionsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListObjectVersionsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ListObjectVersionsOutput struct { - _ struct{} `type:"structure"` - - CommonPrefixes []*CommonPrefix `type:"list" flattened:"true"` - - DeleteMarkers []*DeleteMarkerEntry `locationName:"DeleteMarker" type:"list" flattened:"true"` - - Delimiter *string `type:"string"` - - // Encoding type used by Amazon S3 to encode object keys in the response. - EncodingType *string `type:"string" enum:"EncodingType"` - - // A flag that indicates whether or not Amazon S3 returned all of the results - // that satisfied the search criteria. If your results were truncated, you can - // make a follow-up paginated request using the NextKeyMarker and NextVersionIdMarker - // response parameters as a starting place in another request to return the - // rest of the results. - IsTruncated *bool `type:"boolean"` - - // Marks the last Key returned in a truncated response. - KeyMarker *string `type:"string"` - - MaxKeys *int64 `type:"integer"` - - Name *string `type:"string"` - - // Use this value for the key marker request parameter in a subsequent request. - NextKeyMarker *string `type:"string"` - - // Use this value for the next version id marker parameter in a subsequent request. - NextVersionIdMarker *string `type:"string"` - - Prefix *string `type:"string"` - - VersionIdMarker *string `type:"string"` - - Versions []*ObjectVersion `locationName:"Version" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s ListObjectVersionsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListObjectVersionsOutput) GoString() string { - return s.String() -} - -type ListObjectsInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // A delimiter is a character you use to group keys. - Delimiter *string `location:"querystring" locationName:"delimiter" type:"string"` - - // Requests Amazon S3 to encode the object keys in the response and specifies - // the encoding method to use. An object key may contain any Unicode character; - // however, XML 1.0 parser cannot parse some characters, such as characters - // with an ASCII value from 0 to 10. For characters that are not supported in - // XML 1.0, you can add this parameter to request that Amazon S3 encode the - // keys in the response. - EncodingType *string `location:"querystring" locationName:"encoding-type" type:"string" enum:"EncodingType"` - - // Specifies the key to start with when listing objects in a bucket. - Marker *string `location:"querystring" locationName:"marker" type:"string"` - - // Sets the maximum number of keys returned in the response. The response might - // contain fewer keys but will never contain more. - MaxKeys *int64 `location:"querystring" locationName:"max-keys" type:"integer"` - - // Limits the response to keys that begin with the specified prefix. - Prefix *string `location:"querystring" locationName:"prefix" type:"string"` - - // Confirms that the requester knows that she or he will be charged for the - // list objects request. Bucket owners need not specify this parameter in their - // requests. - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` -} - -// String returns the string representation -func (s ListObjectsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListObjectsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListObjectsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListObjectsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ListObjectsOutput struct { - _ struct{} `type:"structure"` - - CommonPrefixes []*CommonPrefix `type:"list" flattened:"true"` - - Contents []*Object `type:"list" flattened:"true"` - - Delimiter *string `type:"string"` - - // Encoding type used by Amazon S3 to encode object keys in the response. - EncodingType *string `type:"string" enum:"EncodingType"` - - // A flag that indicates whether or not Amazon S3 returned all of the results - // that satisfied the search criteria. - IsTruncated *bool `type:"boolean"` - - Marker *string `type:"string"` - - MaxKeys *int64 `type:"integer"` - - Name *string `type:"string"` - - // When response is truncated (the IsTruncated element value in the response - // is true), you can use the key name in this field as marker in the subsequent - // request to get next set of objects. Amazon S3 lists objects in alphabetical - // order Note: This element is returned only if you have delimiter request parameter - // specified. If response does not include the NextMaker and it is truncated, - // you can use the value of the last Key in the response as the marker in the - // subsequent request to get the next set of object keys. - NextMarker *string `type:"string"` - - Prefix *string `type:"string"` -} - -// String returns the string representation -func (s ListObjectsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListObjectsOutput) GoString() string { - return s.String() -} - -type ListObjectsV2Input struct { - _ struct{} `type:"structure"` - - // Name of the bucket to list. - // - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // ContinuationToken indicates Amazon S3 that the list is being continued on - // this bucket with a token. ContinuationToken is obfuscated and is not a real - // key - ContinuationToken *string `location:"querystring" locationName:"continuation-token" type:"string"` - - // A delimiter is a character you use to group keys. - Delimiter *string `location:"querystring" locationName:"delimiter" type:"string"` - - // Encoding type used by Amazon S3 to encode object keys in the response. - EncodingType *string `location:"querystring" locationName:"encoding-type" type:"string" enum:"EncodingType"` - - // The owner field is not present in listV2 by default, if you want to return - // owner field with each key in the result then set the fetch owner field to - // true - FetchOwner *bool `location:"querystring" locationName:"fetch-owner" type:"boolean"` - - // Sets the maximum number of keys returned in the response. The response might - // contain fewer keys but will never contain more. - MaxKeys *int64 `location:"querystring" locationName:"max-keys" type:"integer"` - - // Limits the response to keys that begin with the specified prefix. - Prefix *string `location:"querystring" locationName:"prefix" type:"string"` - - // Confirms that the requester knows that she or he will be charged for the - // list objects request in V2 style. Bucket owners need not specify this parameter - // in their requests. - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts - // listing after this specified key. StartAfter can be any key in the bucket - StartAfter *string `location:"querystring" locationName:"start-after" type:"string"` -} - -// String returns the string representation -func (s ListObjectsV2Input) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListObjectsV2Input) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListObjectsV2Input) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListObjectsV2Input"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ListObjectsV2Output struct { - _ struct{} `type:"structure"` - - // CommonPrefixes contains all (if there are any) keys between Prefix and the - // next occurrence of the string specified by delimiter - CommonPrefixes []*CommonPrefix `type:"list" flattened:"true"` - - // Metadata about each object returned. - Contents []*Object `type:"list" flattened:"true"` - - // ContinuationToken indicates Amazon S3 that the list is being continued on - // this bucket with a token. ContinuationToken is obfuscated and is not a real - // key - ContinuationToken *string `type:"string"` - - // A delimiter is a character you use to group keys. - Delimiter *string `type:"string"` - - // Encoding type used by Amazon S3 to encode object keys in the response. - EncodingType *string `type:"string" enum:"EncodingType"` - - // A flag that indicates whether or not Amazon S3 returned all of the results - // that satisfied the search criteria. - IsTruncated *bool `type:"boolean"` - - // KeyCount is the number of keys returned with this request. KeyCount will - // always be less than equals to MaxKeys field. Say you ask for 50 keys, your - // result will include less than equals 50 keys - KeyCount *int64 `type:"integer"` - - // Sets the maximum number of keys returned in the response. The response might - // contain fewer keys but will never contain more. - MaxKeys *int64 `type:"integer"` - - // Name of the bucket to list. - Name *string `type:"string"` - - // NextContinuationToken is sent when isTruncated is true which means there - // are more keys in the bucket that can be listed. The next list requests to - // Amazon S3 can be continued with this NextContinuationToken. NextContinuationToken - // is obfuscated and is not a real key - NextContinuationToken *string `type:"string"` - - // Limits the response to keys that begin with the specified prefix. - Prefix *string `type:"string"` - - // StartAfter is where you want Amazon S3 to start listing from. Amazon S3 starts - // listing after this specified key. StartAfter can be any key in the bucket - StartAfter *string `type:"string"` -} - -// String returns the string representation -func (s ListObjectsV2Output) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListObjectsV2Output) GoString() string { - return s.String() -} - -type ListPartsInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Sets the maximum number of parts to return. - MaxParts *int64 `location:"querystring" locationName:"max-parts" type:"integer"` - - // Specifies the part after which listing should begin. Only parts with higher - // part numbers will be listed. - PartNumberMarker *int64 `location:"querystring" locationName:"part-number-marker" type:"integer"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Upload ID identifying the multipart upload whose parts are being listed. - // - // UploadId is a required field - UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` -} - -// String returns the string representation -func (s ListPartsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListPartsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ListPartsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ListPartsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.UploadId == nil { - invalidParams.Add(request.NewErrParamRequired("UploadId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ListPartsOutput struct { - _ struct{} `type:"structure"` - - // Date when multipart upload will become eligible for abort operation by lifecycle. - AbortDate *time.Time `location:"header" locationName:"x-amz-abort-date" type:"timestamp" timestampFormat:"rfc822"` - - // Id of the lifecycle rule that makes a multipart upload eligible for abort - // operation. - AbortRuleId *string `location:"header" locationName:"x-amz-abort-rule-id" type:"string"` - - // Name of the bucket to which the multipart upload was initiated. - Bucket *string `type:"string"` - - // Identifies who initiated the multipart upload. - Initiator *Initiator `type:"structure"` - - // Indicates whether the returned list of parts is truncated. - IsTruncated *bool `type:"boolean"` - - // Object key for which the multipart upload was initiated. - Key *string `min:"1" type:"string"` - - // Maximum number of parts that were allowed in the response. - MaxParts *int64 `type:"integer"` - - // When a list is truncated, this element specifies the last part in the list, - // as well as the value to use for the part-number-marker request parameter - // in a subsequent request. - NextPartNumberMarker *int64 `type:"integer"` - - Owner *Owner `type:"structure"` - - // Part number after which listing begins. - PartNumberMarker *int64 `type:"integer"` - - Parts []*Part `locationName:"Part" type:"list" flattened:"true"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // The class of storage used to store the object. - StorageClass *string `type:"string" enum:"StorageClass"` - - // Upload ID identifying the multipart upload whose parts are being listed. - UploadId *string `type:"string"` -} - -// String returns the string representation -func (s ListPartsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ListPartsOutput) GoString() string { - return s.String() -} - -type LoggingEnabled struct { - _ struct{} `type:"structure"` - - // Specifies the bucket where you want Amazon S3 to store server access logs. - // You can have your logs delivered to any bucket that you own, including the - // same bucket that is being logged. You can also configure multiple buckets - // to deliver their logs to the same target bucket. In this case you should - // choose a different TargetPrefix for each source bucket so that the delivered - // log files can be distinguished by key. - TargetBucket *string `type:"string"` - - TargetGrants []*TargetGrant `locationNameList:"Grant" type:"list"` - - // This element lets you specify a prefix for the keys that the log files will - // be stored under. - TargetPrefix *string `type:"string"` -} - -// String returns the string representation -func (s LoggingEnabled) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s LoggingEnabled) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *LoggingEnabled) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "LoggingEnabled"} - if s.TargetGrants != nil { - for i, v := range s.TargetGrants { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TargetGrants", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type MultipartUpload struct { - _ struct{} `type:"structure"` - - // Date and time at which the multipart upload was initiated. - Initiated *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // Identifies who initiated the multipart upload. - Initiator *Initiator `type:"structure"` - - // Key of the object for which the multipart upload was initiated. - Key *string `min:"1" type:"string"` - - Owner *Owner `type:"structure"` - - // The class of storage used to store the object. - StorageClass *string `type:"string" enum:"StorageClass"` - - // Upload ID that identifies the multipart upload. - UploadId *string `type:"string"` -} - -// String returns the string representation -func (s MultipartUpload) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s MultipartUpload) GoString() string { - return s.String() -} - -// Specifies when noncurrent object versions expire. Upon expiration, Amazon -// S3 permanently deletes the noncurrent object versions. You set this lifecycle -// configuration action on a bucket that has versioning enabled (or suspended) -// to request that Amazon S3 delete noncurrent object versions at a specific -// period in the object's lifetime. -type NoncurrentVersionExpiration struct { - _ struct{} `type:"structure"` - - // Specifies the number of days an object is noncurrent before Amazon S3 can - // perform the associated action. For information about the noncurrent days - // calculations, see How Amazon S3 Calculates When an Object Became Noncurrent - // (http://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html) in - // the Amazon Simple Storage Service Developer Guide. - NoncurrentDays *int64 `type:"integer"` -} - -// String returns the string representation -func (s NoncurrentVersionExpiration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NoncurrentVersionExpiration) GoString() string { - return s.String() -} - -// Container for the transition rule that describes when noncurrent objects -// transition to the STANDARD_IA or GLACIER storage class. If your bucket is -// versioning-enabled (or versioning is suspended), you can set this action -// to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA -// or GLACIER storage class at a specific period in the object's lifetime. -type NoncurrentVersionTransition struct { - _ struct{} `type:"structure"` - - // Specifies the number of days an object is noncurrent before Amazon S3 can - // perform the associated action. For information about the noncurrent days - // calculations, see How Amazon S3 Calculates When an Object Became Noncurrent - // (http://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html) in - // the Amazon Simple Storage Service Developer Guide. - NoncurrentDays *int64 `type:"integer"` - - // The class of storage used to store the object. - StorageClass *string `type:"string" enum:"TransitionStorageClass"` -} - -// String returns the string representation -func (s NoncurrentVersionTransition) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NoncurrentVersionTransition) GoString() string { - return s.String() -} - -// Container for specifying the notification configuration of the bucket. If -// this element is empty, notifications are turned off on the bucket. -type NotificationConfiguration struct { - _ struct{} `type:"structure"` - - LambdaFunctionConfigurations []*LambdaFunctionConfiguration `locationName:"CloudFunctionConfiguration" type:"list" flattened:"true"` - - QueueConfigurations []*QueueConfiguration `locationName:"QueueConfiguration" type:"list" flattened:"true"` - - TopicConfigurations []*TopicConfiguration `locationName:"TopicConfiguration" type:"list" flattened:"true"` -} - -// String returns the string representation -func (s NotificationConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NotificationConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *NotificationConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "NotificationConfiguration"} - if s.LambdaFunctionConfigurations != nil { - for i, v := range s.LambdaFunctionConfigurations { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "LambdaFunctionConfigurations", i), err.(request.ErrInvalidParams)) - } - } - } - if s.QueueConfigurations != nil { - for i, v := range s.QueueConfigurations { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "QueueConfigurations", i), err.(request.ErrInvalidParams)) - } - } - } - if s.TopicConfigurations != nil { - for i, v := range s.TopicConfigurations { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TopicConfigurations", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type NotificationConfigurationDeprecated struct { - _ struct{} `type:"structure"` - - CloudFunctionConfiguration *CloudFunctionConfiguration `type:"structure"` - - QueueConfiguration *QueueConfigurationDeprecated `type:"structure"` - - TopicConfiguration *TopicConfigurationDeprecated `type:"structure"` -} - -// String returns the string representation -func (s NotificationConfigurationDeprecated) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NotificationConfigurationDeprecated) GoString() string { - return s.String() -} - -// Container for object key name filtering rules. For information about key -// name filtering, go to Configuring Event Notifications (http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) -// in the Amazon Simple Storage Service Developer Guide. -type NotificationConfigurationFilter struct { - _ struct{} `type:"structure"` - - // Container for object key name prefix and suffix filtering rules. - Key *KeyFilter `locationName:"S3Key" type:"structure"` -} - -// String returns the string representation -func (s NotificationConfigurationFilter) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s NotificationConfigurationFilter) GoString() string { - return s.String() -} - -type Object struct { - _ struct{} `type:"structure"` - - ETag *string `type:"string"` - - Key *string `min:"1" type:"string"` - - LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - Owner *Owner `type:"structure"` - - Size *int64 `type:"integer"` - - // The class of storage used to store the object. - StorageClass *string `type:"string" enum:"ObjectStorageClass"` -} - -// String returns the string representation -func (s Object) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Object) GoString() string { - return s.String() -} - -type ObjectIdentifier struct { - _ struct{} `type:"structure"` - - // Key name of the object to delete. - // - // Key is a required field - Key *string `min:"1" type:"string" required:"true"` - - // VersionId for the specific version of the object to delete. - VersionId *string `type:"string"` -} - -// String returns the string representation -func (s ObjectIdentifier) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ObjectIdentifier) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ObjectIdentifier) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ObjectIdentifier"} - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ObjectVersion struct { - _ struct{} `type:"structure"` - - ETag *string `type:"string"` - - // Specifies whether the object is (true) or is not (false) the latest version - // of an object. - IsLatest *bool `type:"boolean"` - - // The object key. - Key *string `min:"1" type:"string"` - - // Date and time the object was last modified. - LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - Owner *Owner `type:"structure"` - - // Size in bytes of the object. - Size *int64 `type:"integer"` - - // The class of storage used to store the object. - StorageClass *string `type:"string" enum:"ObjectVersionStorageClass"` - - // Version ID of an object. - VersionId *string `type:"string"` -} - -// String returns the string representation -func (s ObjectVersion) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ObjectVersion) GoString() string { - return s.String() -} - -type Owner struct { - _ struct{} `type:"structure"` - - DisplayName *string `type:"string"` - - ID *string `type:"string"` -} - -// String returns the string representation -func (s Owner) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Owner) GoString() string { - return s.String() -} - -type Part struct { - _ struct{} `type:"structure"` - - // Entity tag returned when the part was uploaded. - ETag *string `type:"string"` - - // Date and time at which the part was uploaded. - LastModified *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // Part number identifying the part. This is a positive integer between 1 and - // 10,000. - PartNumber *int64 `type:"integer"` - - // Size of the uploaded part data. - Size *int64 `type:"integer"` -} - -// String returns the string representation -func (s Part) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Part) GoString() string { - return s.String() -} - -type PutBucketAccelerateConfigurationInput struct { - _ struct{} `type:"structure" payload:"AccelerateConfiguration"` - - // Specifies the Accelerate Configuration you want to set for the bucket. - // - // AccelerateConfiguration is a required field - AccelerateConfiguration *AccelerateConfiguration `locationName:"AccelerateConfiguration" type:"structure" required:"true"` - - // Name of the bucket for which the accelerate configuration is set. - // - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` -} - -// String returns the string representation -func (s PutBucketAccelerateConfigurationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketAccelerateConfigurationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketAccelerateConfigurationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketAccelerateConfigurationInput"} - if s.AccelerateConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("AccelerateConfiguration")) - } - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketAccelerateConfigurationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketAccelerateConfigurationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketAccelerateConfigurationOutput) GoString() string { - return s.String() -} - -type PutBucketAclInput struct { - _ struct{} `type:"structure" payload:"AccessControlPolicy"` - - // The canned ACL to apply to the bucket. - ACL *string `location:"header" locationName:"x-amz-acl" type:"string" enum:"BucketCannedACL"` - - AccessControlPolicy *AccessControlPolicy `locationName:"AccessControlPolicy" type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Allows grantee the read, write, read ACP, and write ACP permissions on the - // bucket. - GrantFullControl *string `location:"header" locationName:"x-amz-grant-full-control" type:"string"` - - // Allows grantee to list the objects in the bucket. - GrantRead *string `location:"header" locationName:"x-amz-grant-read" type:"string"` - - // Allows grantee to read the bucket ACL. - GrantReadACP *string `location:"header" locationName:"x-amz-grant-read-acp" type:"string"` - - // Allows grantee to create, overwrite, and delete any object in the bucket. - GrantWrite *string `location:"header" locationName:"x-amz-grant-write" type:"string"` - - // Allows grantee to write the ACL for the applicable bucket. - GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` -} - -// String returns the string representation -func (s PutBucketAclInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketAclInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketAclInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketAclInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.AccessControlPolicy != nil { - if err := s.AccessControlPolicy.Validate(); err != nil { - invalidParams.AddNested("AccessControlPolicy", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketAclOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketAclOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketAclOutput) GoString() string { - return s.String() -} - -type PutBucketCorsInput struct { - _ struct{} `type:"structure" payload:"CORSConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // CORSConfiguration is a required field - CORSConfiguration *CORSConfiguration `locationName:"CORSConfiguration" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketCorsInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketCorsInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketCorsInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketCorsInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.CORSConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("CORSConfiguration")) - } - if s.CORSConfiguration != nil { - if err := s.CORSConfiguration.Validate(); err != nil { - invalidParams.AddNested("CORSConfiguration", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketCorsOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketCorsOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketCorsOutput) GoString() string { - return s.String() -} - -type PutBucketLifecycleConfigurationInput struct { - _ struct{} `type:"structure" payload:"LifecycleConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - LifecycleConfiguration *BucketLifecycleConfiguration `locationName:"LifecycleConfiguration" type:"structure"` -} - -// String returns the string representation -func (s PutBucketLifecycleConfigurationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketLifecycleConfigurationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketLifecycleConfigurationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketLifecycleConfigurationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.LifecycleConfiguration != nil { - if err := s.LifecycleConfiguration.Validate(); err != nil { - invalidParams.AddNested("LifecycleConfiguration", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketLifecycleConfigurationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketLifecycleConfigurationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketLifecycleConfigurationOutput) GoString() string { - return s.String() -} - -type PutBucketLifecycleInput struct { - _ struct{} `type:"structure" payload:"LifecycleConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - LifecycleConfiguration *LifecycleConfiguration `locationName:"LifecycleConfiguration" type:"structure"` -} - -// String returns the string representation -func (s PutBucketLifecycleInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketLifecycleInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketLifecycleInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketLifecycleInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.LifecycleConfiguration != nil { - if err := s.LifecycleConfiguration.Validate(); err != nil { - invalidParams.AddNested("LifecycleConfiguration", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketLifecycleOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketLifecycleOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketLifecycleOutput) GoString() string { - return s.String() -} - -type PutBucketLoggingInput struct { - _ struct{} `type:"structure" payload:"BucketLoggingStatus"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // BucketLoggingStatus is a required field - BucketLoggingStatus *BucketLoggingStatus `locationName:"BucketLoggingStatus" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketLoggingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketLoggingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketLoggingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketLoggingInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.BucketLoggingStatus == nil { - invalidParams.Add(request.NewErrParamRequired("BucketLoggingStatus")) - } - if s.BucketLoggingStatus != nil { - if err := s.BucketLoggingStatus.Validate(); err != nil { - invalidParams.AddNested("BucketLoggingStatus", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketLoggingOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketLoggingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketLoggingOutput) GoString() string { - return s.String() -} - -type PutBucketNotificationConfigurationInput struct { - _ struct{} `type:"structure" payload:"NotificationConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Container for specifying the notification configuration of the bucket. If - // this element is empty, notifications are turned off on the bucket. - // - // NotificationConfiguration is a required field - NotificationConfiguration *NotificationConfiguration `locationName:"NotificationConfiguration" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketNotificationConfigurationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketNotificationConfigurationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketNotificationConfigurationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketNotificationConfigurationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.NotificationConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("NotificationConfiguration")) - } - if s.NotificationConfiguration != nil { - if err := s.NotificationConfiguration.Validate(); err != nil { - invalidParams.AddNested("NotificationConfiguration", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketNotificationConfigurationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketNotificationConfigurationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketNotificationConfigurationOutput) GoString() string { - return s.String() -} - -type PutBucketNotificationInput struct { - _ struct{} `type:"structure" payload:"NotificationConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // NotificationConfiguration is a required field - NotificationConfiguration *NotificationConfigurationDeprecated `locationName:"NotificationConfiguration" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketNotificationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketNotificationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketNotificationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketNotificationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.NotificationConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("NotificationConfiguration")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketNotificationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketNotificationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketNotificationOutput) GoString() string { - return s.String() -} - -type PutBucketPolicyInput struct { - _ struct{} `type:"structure" payload:"Policy"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // The bucket policy as a JSON document. - // - // Policy is a required field - Policy *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s PutBucketPolicyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketPolicyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketPolicyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketPolicyInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Policy == nil { - invalidParams.Add(request.NewErrParamRequired("Policy")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketPolicyOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketPolicyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketPolicyOutput) GoString() string { - return s.String() -} - -type PutBucketReplicationInput struct { - _ struct{} `type:"structure" payload:"ReplicationConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Container for replication rules. You can add as many as 1,000 rules. Total - // replication configuration size can be up to 2 MB. - // - // ReplicationConfiguration is a required field - ReplicationConfiguration *ReplicationConfiguration `locationName:"ReplicationConfiguration" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketReplicationInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketReplicationInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketReplicationInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketReplicationInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.ReplicationConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("ReplicationConfiguration")) - } - if s.ReplicationConfiguration != nil { - if err := s.ReplicationConfiguration.Validate(); err != nil { - invalidParams.AddNested("ReplicationConfiguration", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketReplicationOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketReplicationOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketReplicationOutput) GoString() string { - return s.String() -} - -type PutBucketRequestPaymentInput struct { - _ struct{} `type:"structure" payload:"RequestPaymentConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // RequestPaymentConfiguration is a required field - RequestPaymentConfiguration *RequestPaymentConfiguration `locationName:"RequestPaymentConfiguration" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketRequestPaymentInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketRequestPaymentInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketRequestPaymentInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketRequestPaymentInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.RequestPaymentConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("RequestPaymentConfiguration")) - } - if s.RequestPaymentConfiguration != nil { - if err := s.RequestPaymentConfiguration.Validate(); err != nil { - invalidParams.AddNested("RequestPaymentConfiguration", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketRequestPaymentOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketRequestPaymentOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketRequestPaymentOutput) GoString() string { - return s.String() -} - -type PutBucketTaggingInput struct { - _ struct{} `type:"structure" payload:"Tagging"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Tagging is a required field - Tagging *Tagging `locationName:"Tagging" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketTaggingInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketTaggingInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketTaggingInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketTaggingInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Tagging == nil { - invalidParams.Add(request.NewErrParamRequired("Tagging")) - } - if s.Tagging != nil { - if err := s.Tagging.Validate(); err != nil { - invalidParams.AddNested("Tagging", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketTaggingOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketTaggingOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketTaggingOutput) GoString() string { - return s.String() -} - -type PutBucketVersioningInput struct { - _ struct{} `type:"structure" payload:"VersioningConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // The concatenation of the authentication device's serial number, a space, - // and the value that is displayed on your authentication device. - MFA *string `location:"header" locationName:"x-amz-mfa" type:"string"` - - // VersioningConfiguration is a required field - VersioningConfiguration *VersioningConfiguration `locationName:"VersioningConfiguration" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketVersioningInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketVersioningInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketVersioningInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketVersioningInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.VersioningConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("VersioningConfiguration")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketVersioningOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketVersioningOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketVersioningOutput) GoString() string { - return s.String() -} - -type PutBucketWebsiteInput struct { - _ struct{} `type:"structure" payload:"WebsiteConfiguration"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // WebsiteConfiguration is a required field - WebsiteConfiguration *WebsiteConfiguration `locationName:"WebsiteConfiguration" type:"structure" required:"true"` -} - -// String returns the string representation -func (s PutBucketWebsiteInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketWebsiteInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutBucketWebsiteInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutBucketWebsiteInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.WebsiteConfiguration == nil { - invalidParams.Add(request.NewErrParamRequired("WebsiteConfiguration")) - } - if s.WebsiteConfiguration != nil { - if err := s.WebsiteConfiguration.Validate(); err != nil { - invalidParams.AddNested("WebsiteConfiguration", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutBucketWebsiteOutput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s PutBucketWebsiteOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutBucketWebsiteOutput) GoString() string { - return s.String() -} - -type PutObjectAclInput struct { - _ struct{} `type:"structure" payload:"AccessControlPolicy"` - - // The canned ACL to apply to the object. - ACL *string `location:"header" locationName:"x-amz-acl" type:"string" enum:"ObjectCannedACL"` - - AccessControlPolicy *AccessControlPolicy `locationName:"AccessControlPolicy" type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Allows grantee the read, write, read ACP, and write ACP permissions on the - // bucket. - GrantFullControl *string `location:"header" locationName:"x-amz-grant-full-control" type:"string"` - - // Allows grantee to list the objects in the bucket. - GrantRead *string `location:"header" locationName:"x-amz-grant-read" type:"string"` - - // Allows grantee to read the bucket ACL. - GrantReadACP *string `location:"header" locationName:"x-amz-grant-read-acp" type:"string"` - - // Allows grantee to create, overwrite, and delete any object in the bucket. - GrantWrite *string `location:"header" locationName:"x-amz-grant-write" type:"string"` - - // Allows grantee to write the ACL for the applicable bucket. - GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // VersionId used to reference a specific version of the object. - VersionId *string `location:"querystring" locationName:"versionId" type:"string"` -} - -// String returns the string representation -func (s PutObjectAclInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutObjectAclInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutObjectAclInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutObjectAclInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.AccessControlPolicy != nil { - if err := s.AccessControlPolicy.Validate(); err != nil { - invalidParams.AddNested("AccessControlPolicy", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutObjectAclOutput struct { - _ struct{} `type:"structure"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` -} - -// String returns the string representation -func (s PutObjectAclOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutObjectAclOutput) GoString() string { - return s.String() -} - -type PutObjectInput struct { - _ struct{} `type:"structure" payload:"Body"` - - // The canned ACL to apply to the object. - ACL *string `location:"header" locationName:"x-amz-acl" type:"string" enum:"ObjectCannedACL"` - - // Object data. - Body io.ReadSeeker `type:"blob"` - - // Name of the bucket to which the PUT operation was initiated. - // - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Specifies caching behavior along the request/reply chain. - CacheControl *string `location:"header" locationName:"Cache-Control" type:"string"` - - // Specifies presentational information for the object. - ContentDisposition *string `location:"header" locationName:"Content-Disposition" type:"string"` - - // Specifies what content encodings have been applied to the object and thus - // what decoding mechanisms must be applied to obtain the media-type referenced - // by the Content-Type header field. - ContentEncoding *string `location:"header" locationName:"Content-Encoding" type:"string"` - - // The language the content is in. - ContentLanguage *string `location:"header" locationName:"Content-Language" type:"string"` - - // Size of the body in bytes. This parameter is useful when the size of the - // body cannot be determined automatically. - ContentLength *int64 `location:"header" locationName:"Content-Length" type:"long"` - - // A standard MIME type describing the format of the object data. - ContentType *string `location:"header" locationName:"Content-Type" type:"string"` - - // The date and time at which the object is no longer cacheable. - Expires *time.Time `location:"header" locationName:"Expires" type:"timestamp" timestampFormat:"rfc822"` - - // Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object. - GrantFullControl *string `location:"header" locationName:"x-amz-grant-full-control" type:"string"` - - // Allows grantee to read the object data and its metadata. - GrantRead *string `location:"header" locationName:"x-amz-grant-read" type:"string"` - - // Allows grantee to read the object ACL. - GrantReadACP *string `location:"header" locationName:"x-amz-grant-read-acp" type:"string"` - - // Allows grantee to write the ACL for the applicable object. - GrantWriteACP *string `location:"header" locationName:"x-amz-grant-write-acp" type:"string"` - - // Object key for which the PUT operation was initiated. - // - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // A map of metadata to store with the object in S3. - Metadata map[string]*string `location:"headers" locationName:"x-amz-meta-" type:"map"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Specifies the algorithm to use to when encrypting the object (e.g., AES256). - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use in encrypting - // data. This value is used to store the object and then it is discarded; Amazon - // does not store the encryption key. The key must be appropriate for use with - // the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm - // header. - SSECustomerKey *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // Specifies the AWS KMS key ID to use for object encryption. All GET and PUT - // requests for an object protected by AWS KMS will fail if not made via SSL - // or using SigV4. Documentation on configuring any of the officially supported - // AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - // The type of storage to use for the object. Defaults to 'STANDARD'. - StorageClass *string `location:"header" locationName:"x-amz-storage-class" type:"string" enum:"StorageClass"` - - // If the bucket is configured as a website, redirects requests for this object - // to another object in the same bucket or to an external URL. Amazon S3 stores - // the value of this header in the object metadata. - WebsiteRedirectLocation *string `location:"header" locationName:"x-amz-website-redirect-location" type:"string"` -} - -// String returns the string representation -func (s PutObjectInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutObjectInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *PutObjectInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "PutObjectInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type PutObjectOutput struct { - _ struct{} `type:"structure"` - - // Entity tag for the uploaded object. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // If the object expiration is configured, this will contain the expiration - // date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded. - Expiration *string `location:"header" locationName:"x-amz-expiration" type:"string"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header confirming the encryption algorithm - // used. - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header to provide round trip message integrity - // verification of the customer-provided encryption key. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` - - // Version of the object. - VersionId *string `location:"header" locationName:"x-amz-version-id" type:"string"` -} - -// String returns the string representation -func (s PutObjectOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s PutObjectOutput) GoString() string { - return s.String() -} - -// Container for specifying an configuration when you want Amazon S3 to publish -// events to an Amazon Simple Queue Service (Amazon SQS) queue. -type QueueConfiguration struct { - _ struct{} `type:"structure"` - - // Events is a required field - Events []*string `locationName:"Event" type:"list" flattened:"true" required:"true"` - - // Container for object key name filtering rules. For information about key - // name filtering, go to Configuring Event Notifications (http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) - // in the Amazon Simple Storage Service Developer Guide. - Filter *NotificationConfigurationFilter `type:"structure"` - - // Optional unique identifier for configurations in a notification configuration. - // If you don't provide one, Amazon S3 will assign an ID. - Id *string `type:"string"` - - // Amazon SQS queue ARN to which Amazon S3 will publish a message when it detects - // events of specified type. - // - // QueueArn is a required field - QueueArn *string `locationName:"Queue" type:"string" required:"true"` -} - -// String returns the string representation -func (s QueueConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s QueueConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *QueueConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "QueueConfiguration"} - if s.Events == nil { - invalidParams.Add(request.NewErrParamRequired("Events")) - } - if s.QueueArn == nil { - invalidParams.Add(request.NewErrParamRequired("QueueArn")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type QueueConfigurationDeprecated struct { - _ struct{} `type:"structure"` - - // Bucket event for which to send notifications. - Event *string `deprecated:"true" type:"string" enum:"Event"` - - Events []*string `locationName:"Event" type:"list" flattened:"true"` - - // Optional unique identifier for configurations in a notification configuration. - // If you don't provide one, Amazon S3 will assign an ID. - Id *string `type:"string"` - - Queue *string `type:"string"` -} - -// String returns the string representation -func (s QueueConfigurationDeprecated) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s QueueConfigurationDeprecated) GoString() string { - return s.String() -} - -type Redirect struct { - _ struct{} `type:"structure"` - - // The host name to use in the redirect request. - HostName *string `type:"string"` - - // The HTTP redirect code to use on the response. Not required if one of the - // siblings is present. - HttpRedirectCode *string `type:"string"` - - // Protocol to use (http, https) when redirecting requests. The default is the - // protocol that is used in the original request. - Protocol *string `type:"string" enum:"Protocol"` - - // The object key prefix to use in the redirect request. For example, to redirect - // requests for all pages with prefix docs/ (objects in the docs/ folder) to - // documents/, you can set a condition block with KeyPrefixEquals set to docs/ - // and in the Redirect set ReplaceKeyPrefixWith to /documents. Not required - // if one of the siblings is present. Can be present only if ReplaceKeyWith - // is not provided. - ReplaceKeyPrefixWith *string `type:"string"` - - // The specific object key to use in the redirect request. For example, redirect - // request to error.html. Not required if one of the sibling is present. Can - // be present only if ReplaceKeyPrefixWith is not provided. - ReplaceKeyWith *string `type:"string"` -} - -// String returns the string representation -func (s Redirect) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Redirect) GoString() string { - return s.String() -} - -type RedirectAllRequestsTo struct { - _ struct{} `type:"structure"` - - // Name of the host where requests will be redirected. - // - // HostName is a required field - HostName *string `type:"string" required:"true"` - - // Protocol to use (http, https) when redirecting requests. The default is the - // protocol that is used in the original request. - Protocol *string `type:"string" enum:"Protocol"` -} - -// String returns the string representation -func (s RedirectAllRequestsTo) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RedirectAllRequestsTo) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RedirectAllRequestsTo) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RedirectAllRequestsTo"} - if s.HostName == nil { - invalidParams.Add(request.NewErrParamRequired("HostName")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Container for replication rules. You can add as many as 1,000 rules. Total -// replication configuration size can be up to 2 MB. -type ReplicationConfiguration struct { - _ struct{} `type:"structure"` - - // Amazon Resource Name (ARN) of an IAM role for Amazon S3 to assume when replicating - // the objects. - // - // Role is a required field - Role *string `type:"string" required:"true"` - - // Container for information about a particular replication rule. Replication - // configuration must have at least one rule and can contain up to 1,000 rules. - // - // Rules is a required field - Rules []*ReplicationRule `locationName:"Rule" type:"list" flattened:"true" required:"true"` -} - -// String returns the string representation -func (s ReplicationConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplicationConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReplicationConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReplicationConfiguration"} - if s.Role == nil { - invalidParams.Add(request.NewErrParamRequired("Role")) - } - if s.Rules == nil { - invalidParams.Add(request.NewErrParamRequired("Rules")) - } - if s.Rules != nil { - for i, v := range s.Rules { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "Rules", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type ReplicationRule struct { - _ struct{} `type:"structure"` - - // Destination is a required field - Destination *Destination `type:"structure" required:"true"` - - // Unique identifier for the rule. The value cannot be longer than 255 characters. - ID *string `type:"string"` - - // Object keyname prefix identifying one or more objects to which the rule applies. - // Maximum prefix length can be up to 1,024 characters. Overlapping prefixes - // are not supported. - // - // Prefix is a required field - Prefix *string `type:"string" required:"true"` - - // The rule is ignored if status is not Enabled. - // - // Status is a required field - Status *string `type:"string" required:"true" enum:"ReplicationRuleStatus"` -} - -// String returns the string representation -func (s ReplicationRule) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s ReplicationRule) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *ReplicationRule) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "ReplicationRule"} - if s.Destination == nil { - invalidParams.Add(request.NewErrParamRequired("Destination")) - } - if s.Prefix == nil { - invalidParams.Add(request.NewErrParamRequired("Prefix")) - } - if s.Status == nil { - invalidParams.Add(request.NewErrParamRequired("Status")) - } - if s.Destination != nil { - if err := s.Destination.Validate(); err != nil { - invalidParams.AddNested("Destination", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type RequestPaymentConfiguration struct { - _ struct{} `type:"structure"` - - // Specifies who pays for the download and request fees. - // - // Payer is a required field - Payer *string `type:"string" required:"true" enum:"Payer"` -} - -// String returns the string representation -func (s RequestPaymentConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RequestPaymentConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RequestPaymentConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RequestPaymentConfiguration"} - if s.Payer == nil { - invalidParams.Add(request.NewErrParamRequired("Payer")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type RestoreObjectInput struct { - _ struct{} `type:"structure" payload:"RestoreRequest"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - RestoreRequest *RestoreRequest `locationName:"RestoreRequest" type:"structure"` - - VersionId *string `location:"querystring" locationName:"versionId" type:"string"` -} - -// String returns the string representation -func (s RestoreObjectInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RestoreObjectInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RestoreObjectInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RestoreObjectInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.RestoreRequest != nil { - if err := s.RestoreRequest.Validate(); err != nil { - invalidParams.AddNested("RestoreRequest", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type RestoreObjectOutput struct { - _ struct{} `type:"structure"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` -} - -// String returns the string representation -func (s RestoreObjectOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RestoreObjectOutput) GoString() string { - return s.String() -} - -type RestoreRequest struct { - _ struct{} `type:"structure"` - - // Lifetime of the active copy in days - // - // Days is a required field - Days *int64 `type:"integer" required:"true"` -} - -// String returns the string representation -func (s RestoreRequest) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RestoreRequest) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RestoreRequest) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RestoreRequest"} - if s.Days == nil { - invalidParams.Add(request.NewErrParamRequired("Days")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type RoutingRule struct { - _ struct{} `type:"structure"` - - // A container for describing a condition that must be met for the specified - // redirect to apply. For example, 1. If request is for pages in the /docs folder, - // redirect to the /documents folder. 2. If request results in HTTP error 4xx, - // redirect request to another host where you might process the error. - Condition *Condition `type:"structure"` - - // Container for redirect information. You can redirect requests to another - // host, to another page, or with another protocol. In the event of an error, - // you can can specify a different error code to return. - // - // Redirect is a required field - Redirect *Redirect `type:"structure" required:"true"` -} - -// String returns the string representation -func (s RoutingRule) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s RoutingRule) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *RoutingRule) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "RoutingRule"} - if s.Redirect == nil { - invalidParams.Add(request.NewErrParamRequired("Redirect")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type Rule struct { - _ struct{} `type:"structure"` - - // Specifies the days since the initiation of an Incomplete Multipart Upload - // that Lifecycle will wait before permanently removing all parts of the upload. - AbortIncompleteMultipartUpload *AbortIncompleteMultipartUpload `type:"structure"` - - Expiration *LifecycleExpiration `type:"structure"` - - // Unique identifier for the rule. The value cannot be longer than 255 characters. - ID *string `type:"string"` - - // Specifies when noncurrent object versions expire. Upon expiration, Amazon - // S3 permanently deletes the noncurrent object versions. You set this lifecycle - // configuration action on a bucket that has versioning enabled (or suspended) - // to request that Amazon S3 delete noncurrent object versions at a specific - // period in the object's lifetime. - NoncurrentVersionExpiration *NoncurrentVersionExpiration `type:"structure"` - - // Container for the transition rule that describes when noncurrent objects - // transition to the STANDARD_IA or GLACIER storage class. If your bucket is - // versioning-enabled (or versioning is suspended), you can set this action - // to request that Amazon S3 transition noncurrent object versions to the STANDARD_IA - // or GLACIER storage class at a specific period in the object's lifetime. - NoncurrentVersionTransition *NoncurrentVersionTransition `type:"structure"` - - // Prefix identifying one or more objects to which the rule applies. - // - // Prefix is a required field - Prefix *string `type:"string" required:"true"` - - // If 'Enabled', the rule is currently being applied. If 'Disabled', the rule - // is not currently being applied. - // - // Status is a required field - Status *string `type:"string" required:"true" enum:"ExpirationStatus"` - - Transition *Transition `type:"structure"` -} - -// String returns the string representation -func (s Rule) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Rule) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Rule) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Rule"} - if s.Prefix == nil { - invalidParams.Add(request.NewErrParamRequired("Prefix")) - } - if s.Status == nil { - invalidParams.Add(request.NewErrParamRequired("Status")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type Tag struct { - _ struct{} `type:"structure"` - - // Name of the tag. - // - // Key is a required field - Key *string `min:"1" type:"string" required:"true"` - - // Value of the tag. - // - // Value is a required field - Value *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s Tag) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Tag) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Tag) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Tag"} - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.Value == nil { - invalidParams.Add(request.NewErrParamRequired("Value")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type Tagging struct { - _ struct{} `type:"structure"` - - // TagSet is a required field - TagSet []*Tag `locationNameList:"Tag" type:"list" required:"true"` -} - -// String returns the string representation -func (s Tagging) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Tagging) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *Tagging) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "Tagging"} - if s.TagSet == nil { - invalidParams.Add(request.NewErrParamRequired("TagSet")) - } - if s.TagSet != nil { - for i, v := range s.TagSet { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "TagSet", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type TargetGrant struct { - _ struct{} `type:"structure"` - - Grantee *Grantee `type:"structure"` - - // Logging permissions assigned to the Grantee for the bucket. - Permission *string `type:"string" enum:"BucketLogsPermission"` -} - -// String returns the string representation -func (s TargetGrant) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TargetGrant) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TargetGrant) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TargetGrant"} - if s.Grantee != nil { - if err := s.Grantee.Validate(); err != nil { - invalidParams.AddNested("Grantee", err.(request.ErrInvalidParams)) - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Container for specifying the configuration when you want Amazon S3 to publish -// events to an Amazon Simple Notification Service (Amazon SNS) topic. -type TopicConfiguration struct { - _ struct{} `type:"structure"` - - // Events is a required field - Events []*string `locationName:"Event" type:"list" flattened:"true" required:"true"` - - // Container for object key name filtering rules. For information about key - // name filtering, go to Configuring Event Notifications (http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html) - // in the Amazon Simple Storage Service Developer Guide. - Filter *NotificationConfigurationFilter `type:"structure"` - - // Optional unique identifier for configurations in a notification configuration. - // If you don't provide one, Amazon S3 will assign an ID. - Id *string `type:"string"` - - // Amazon SNS topic ARN to which Amazon S3 will publish a message when it detects - // events of specified type. - // - // TopicArn is a required field - TopicArn *string `locationName:"Topic" type:"string" required:"true"` -} - -// String returns the string representation -func (s TopicConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TopicConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *TopicConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "TopicConfiguration"} - if s.Events == nil { - invalidParams.Add(request.NewErrParamRequired("Events")) - } - if s.TopicArn == nil { - invalidParams.Add(request.NewErrParamRequired("TopicArn")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type TopicConfigurationDeprecated struct { - _ struct{} `type:"structure"` - - // Bucket event for which to send notifications. - Event *string `deprecated:"true" type:"string" enum:"Event"` - - Events []*string `locationName:"Event" type:"list" flattened:"true"` - - // Optional unique identifier for configurations in a notification configuration. - // If you don't provide one, Amazon S3 will assign an ID. - Id *string `type:"string"` - - // Amazon SNS topic to which Amazon S3 will publish a message to report the - // specified events for the bucket. - Topic *string `type:"string"` -} - -// String returns the string representation -func (s TopicConfigurationDeprecated) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s TopicConfigurationDeprecated) GoString() string { - return s.String() -} - -type Transition struct { - _ struct{} `type:"structure"` - - // Indicates at what date the object is to be moved or deleted. Should be in - // GMT ISO 8601 Format. - Date *time.Time `type:"timestamp" timestampFormat:"iso8601"` - - // Indicates the lifetime, in days, of the objects that are subject to the rule. - // The value must be a non-zero positive integer. - Days *int64 `type:"integer"` - - // The class of storage used to store the object. - StorageClass *string `type:"string" enum:"TransitionStorageClass"` -} - -// String returns the string representation -func (s Transition) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Transition) GoString() string { - return s.String() -} - -type UploadPartCopyInput struct { - _ struct{} `type:"structure"` - - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // The name of the source bucket and key name of the source object, separated - // by a slash (/). Must be URL-encoded. - // - // CopySource is a required field - CopySource *string `location:"header" locationName:"x-amz-copy-source" type:"string" required:"true"` - - // Copies the object if its entity tag (ETag) matches the specified tag. - CopySourceIfMatch *string `location:"header" locationName:"x-amz-copy-source-if-match" type:"string"` - - // Copies the object if it has been modified since the specified time. - CopySourceIfModifiedSince *time.Time `location:"header" locationName:"x-amz-copy-source-if-modified-since" type:"timestamp" timestampFormat:"rfc822"` - - // Copies the object if its entity tag (ETag) is different than the specified - // ETag. - CopySourceIfNoneMatch *string `location:"header" locationName:"x-amz-copy-source-if-none-match" type:"string"` - - // Copies the object if it hasn't been modified since the specified time. - CopySourceIfUnmodifiedSince *time.Time `location:"header" locationName:"x-amz-copy-source-if-unmodified-since" type:"timestamp" timestampFormat:"rfc822"` - - // The range of bytes to copy from the source object. The range value must use - // the form bytes=first-last, where the first and last are the zero-based byte - // offsets to copy. For example, bytes=0-9 indicates that you want to copy the - // first ten bytes of the source. You can copy a range only if the source object - // is greater than 5 GB. - CopySourceRange *string `location:"header" locationName:"x-amz-copy-source-range" type:"string"` - - // Specifies the algorithm to use when decrypting the source object (e.g., AES256). - CopySourceSSECustomerAlgorithm *string `location:"header" locationName:"x-amz-copy-source-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use to decrypt - // the source object. The encryption key provided in this header must be one - // that was used when the source object was created. - CopySourceSSECustomerKey *string `location:"header" locationName:"x-amz-copy-source-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - CopySourceSSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-copy-source-server-side-encryption-customer-key-MD5" type:"string"` - - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Part number of part being copied. This is a positive integer between 1 and - // 10,000. - // - // PartNumber is a required field - PartNumber *int64 `location:"querystring" locationName:"partNumber" type:"integer" required:"true"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Specifies the algorithm to use to when encrypting the object (e.g., AES256). - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use in encrypting - // data. This value is used to store the object and then it is discarded; Amazon - // does not store the encryption key. The key must be appropriate for use with - // the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm - // header. This must be the same encryption key specified in the initiate multipart - // upload request. - SSECustomerKey *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // Upload ID identifying the multipart upload whose part is being copied. - // - // UploadId is a required field - UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` -} - -// String returns the string representation -func (s UploadPartCopyInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UploadPartCopyInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UploadPartCopyInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UploadPartCopyInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.CopySource == nil { - invalidParams.Add(request.NewErrParamRequired("CopySource")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.PartNumber == nil { - invalidParams.Add(request.NewErrParamRequired("PartNumber")) - } - if s.UploadId == nil { - invalidParams.Add(request.NewErrParamRequired("UploadId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type UploadPartCopyOutput struct { - _ struct{} `type:"structure" payload:"CopyPartResult"` - - CopyPartResult *CopyPartResult `type:"structure"` - - // The version of the source object that was copied, if you have enabled versioning - // on the source bucket. - CopySourceVersionId *string `location:"header" locationName:"x-amz-copy-source-version-id" type:"string"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header confirming the encryption algorithm - // used. - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header to provide round trip message integrity - // verification of the customer-provided encryption key. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` -} - -// String returns the string representation -func (s UploadPartCopyOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UploadPartCopyOutput) GoString() string { - return s.String() -} - -type UploadPartInput struct { - _ struct{} `type:"structure" payload:"Body"` - - // Object data. - Body io.ReadSeeker `type:"blob"` - - // Name of the bucket to which the multipart upload was initiated. - // - // Bucket is a required field - Bucket *string `location:"uri" locationName:"Bucket" type:"string" required:"true"` - - // Size of the body in bytes. This parameter is useful when the size of the - // body cannot be determined automatically. - ContentLength *int64 `location:"header" locationName:"Content-Length" type:"long"` - - // Object key for which the multipart upload was initiated. - // - // Key is a required field - Key *string `location:"uri" locationName:"Key" min:"1" type:"string" required:"true"` - - // Part number of part being uploaded. This is a positive integer between 1 - // and 10,000. - // - // PartNumber is a required field - PartNumber *int64 `location:"querystring" locationName:"partNumber" type:"integer" required:"true"` - - // Confirms that the requester knows that she or he will be charged for the - // request. Bucket owners need not specify this parameter in their requests. - // Documentation on downloading objects from requester pays buckets can be found - // at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html - RequestPayer *string `location:"header" locationName:"x-amz-request-payer" type:"string" enum:"RequestPayer"` - - // Specifies the algorithm to use to when encrypting the object (e.g., AES256). - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // Specifies the customer-provided encryption key for Amazon S3 to use in encrypting - // data. This value is used to store the object and then it is discarded; Amazon - // does not store the encryption key. The key must be appropriate for use with - // the algorithm specified in the x-amz-server-side​-encryption​-customer-algorithm - // header. This must be the same encryption key specified in the initiate multipart - // upload request. - SSECustomerKey *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key" type:"string"` - - // Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. - // Amazon S3 uses this header for a message integrity check to ensure the encryption - // key was transmitted without error. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // Upload ID identifying the multipart upload whose part is being uploaded. - // - // UploadId is a required field - UploadId *string `location:"querystring" locationName:"uploadId" type:"string" required:"true"` -} - -// String returns the string representation -func (s UploadPartInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UploadPartInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *UploadPartInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "UploadPartInput"} - if s.Bucket == nil { - invalidParams.Add(request.NewErrParamRequired("Bucket")) - } - if s.Key == nil { - invalidParams.Add(request.NewErrParamRequired("Key")) - } - if s.Key != nil && len(*s.Key) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Key", 1)) - } - if s.PartNumber == nil { - invalidParams.Add(request.NewErrParamRequired("PartNumber")) - } - if s.UploadId == nil { - invalidParams.Add(request.NewErrParamRequired("UploadId")) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -type UploadPartOutput struct { - _ struct{} `type:"structure"` - - // Entity tag for the uploaded object. - ETag *string `location:"header" locationName:"ETag" type:"string"` - - // If present, indicates that the requester was successfully charged for the - // request. - RequestCharged *string `location:"header" locationName:"x-amz-request-charged" type:"string" enum:"RequestCharged"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header confirming the encryption algorithm - // used. - SSECustomerAlgorithm *string `location:"header" locationName:"x-amz-server-side-encryption-customer-algorithm" type:"string"` - - // If server-side encryption with a customer-provided encryption key was requested, - // the response will include this header to provide round trip message integrity - // verification of the customer-provided encryption key. - SSECustomerKeyMD5 *string `location:"header" locationName:"x-amz-server-side-encryption-customer-key-MD5" type:"string"` - - // If present, specifies the ID of the AWS Key Management Service (KMS) master - // encryption key that was used for the object. - SSEKMSKeyId *string `location:"header" locationName:"x-amz-server-side-encryption-aws-kms-key-id" type:"string"` - - // The Server-side encryption algorithm used when storing this object in S3 - // (e.g., AES256, aws:kms). - ServerSideEncryption *string `location:"header" locationName:"x-amz-server-side-encryption" type:"string" enum:"ServerSideEncryption"` -} - -// String returns the string representation -func (s UploadPartOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s UploadPartOutput) GoString() string { - return s.String() -} - -type VersioningConfiguration struct { - _ struct{} `type:"structure"` - - // Specifies whether MFA delete is enabled in the bucket versioning configuration. - // This element is only returned if the bucket has been configured with MFA - // delete. If the bucket has never been so configured, this element is not returned. - MFADelete *string `locationName:"MfaDelete" type:"string" enum:"MFADelete"` - - // The versioning state of the bucket. - Status *string `type:"string" enum:"BucketVersioningStatus"` -} - -// String returns the string representation -func (s VersioningConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s VersioningConfiguration) GoString() string { - return s.String() -} - -type WebsiteConfiguration struct { - _ struct{} `type:"structure"` - - ErrorDocument *ErrorDocument `type:"structure"` - - IndexDocument *IndexDocument `type:"structure"` - - RedirectAllRequestsTo *RedirectAllRequestsTo `type:"structure"` - - RoutingRules []*RoutingRule `locationNameList:"RoutingRule" type:"list"` -} - -// String returns the string representation -func (s WebsiteConfiguration) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s WebsiteConfiguration) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *WebsiteConfiguration) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "WebsiteConfiguration"} - if s.ErrorDocument != nil { - if err := s.ErrorDocument.Validate(); err != nil { - invalidParams.AddNested("ErrorDocument", err.(request.ErrInvalidParams)) - } - } - if s.IndexDocument != nil { - if err := s.IndexDocument.Validate(); err != nil { - invalidParams.AddNested("IndexDocument", err.(request.ErrInvalidParams)) - } - } - if s.RedirectAllRequestsTo != nil { - if err := s.RedirectAllRequestsTo.Validate(); err != nil { - invalidParams.AddNested("RedirectAllRequestsTo", err.(request.ErrInvalidParams)) - } - } - if s.RoutingRules != nil { - for i, v := range s.RoutingRules { - if v == nil { - continue - } - if err := v.Validate(); err != nil { - invalidParams.AddNested(fmt.Sprintf("%s[%v]", "RoutingRules", i), err.(request.ErrInvalidParams)) - } - } - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -const ( - // BucketAccelerateStatusEnabled is a BucketAccelerateStatus enum value - BucketAccelerateStatusEnabled = "Enabled" - - // BucketAccelerateStatusSuspended is a BucketAccelerateStatus enum value - BucketAccelerateStatusSuspended = "Suspended" -) - -const ( - // BucketCannedACLPrivate is a BucketCannedACL enum value - BucketCannedACLPrivate = "private" - - // BucketCannedACLPublicRead is a BucketCannedACL enum value - BucketCannedACLPublicRead = "public-read" - - // BucketCannedACLPublicReadWrite is a BucketCannedACL enum value - BucketCannedACLPublicReadWrite = "public-read-write" - - // BucketCannedACLAuthenticatedRead is a BucketCannedACL enum value - BucketCannedACLAuthenticatedRead = "authenticated-read" -) - -const ( - // BucketLocationConstraintEu is a BucketLocationConstraint enum value - BucketLocationConstraintEu = "EU" - - // BucketLocationConstraintEuWest1 is a BucketLocationConstraint enum value - BucketLocationConstraintEuWest1 = "eu-west-1" - - // BucketLocationConstraintUsWest1 is a BucketLocationConstraint enum value - BucketLocationConstraintUsWest1 = "us-west-1" - - // BucketLocationConstraintUsWest2 is a BucketLocationConstraint enum value - BucketLocationConstraintUsWest2 = "us-west-2" - - // BucketLocationConstraintApSouth1 is a BucketLocationConstraint enum value - BucketLocationConstraintApSouth1 = "ap-south-1" - - // BucketLocationConstraintApSoutheast1 is a BucketLocationConstraint enum value - BucketLocationConstraintApSoutheast1 = "ap-southeast-1" - - // BucketLocationConstraintApSoutheast2 is a BucketLocationConstraint enum value - BucketLocationConstraintApSoutheast2 = "ap-southeast-2" - - // BucketLocationConstraintApNortheast1 is a BucketLocationConstraint enum value - BucketLocationConstraintApNortheast1 = "ap-northeast-1" - - // BucketLocationConstraintSaEast1 is a BucketLocationConstraint enum value - BucketLocationConstraintSaEast1 = "sa-east-1" - - // BucketLocationConstraintCnNorth1 is a BucketLocationConstraint enum value - BucketLocationConstraintCnNorth1 = "cn-north-1" - - // BucketLocationConstraintEuCentral1 is a BucketLocationConstraint enum value - BucketLocationConstraintEuCentral1 = "eu-central-1" -) - -const ( - // BucketLogsPermissionFullControl is a BucketLogsPermission enum value - BucketLogsPermissionFullControl = "FULL_CONTROL" - - // BucketLogsPermissionRead is a BucketLogsPermission enum value - BucketLogsPermissionRead = "READ" - - // BucketLogsPermissionWrite is a BucketLogsPermission enum value - BucketLogsPermissionWrite = "WRITE" -) - -const ( - // BucketVersioningStatusEnabled is a BucketVersioningStatus enum value - BucketVersioningStatusEnabled = "Enabled" - - // BucketVersioningStatusSuspended is a BucketVersioningStatus enum value - BucketVersioningStatusSuspended = "Suspended" -) - -// Requests Amazon S3 to encode the object keys in the response and specifies -// the encoding method to use. An object key may contain any Unicode character; -// however, XML 1.0 parser cannot parse some characters, such as characters -// with an ASCII value from 0 to 10. For characters that are not supported in -// XML 1.0, you can add this parameter to request that Amazon S3 encode the -// keys in the response. -const ( - // EncodingTypeUrl is a EncodingType enum value - EncodingTypeUrl = "url" -) - -// Bucket event for which to send notifications. -const ( - // EventS3ReducedRedundancyLostObject is a Event enum value - EventS3ReducedRedundancyLostObject = "s3:ReducedRedundancyLostObject" - - // EventS3ObjectCreated is a Event enum value - EventS3ObjectCreated = "s3:ObjectCreated:*" - - // EventS3ObjectCreatedPut is a Event enum value - EventS3ObjectCreatedPut = "s3:ObjectCreated:Put" - - // EventS3ObjectCreatedPost is a Event enum value - EventS3ObjectCreatedPost = "s3:ObjectCreated:Post" - - // EventS3ObjectCreatedCopy is a Event enum value - EventS3ObjectCreatedCopy = "s3:ObjectCreated:Copy" - - // EventS3ObjectCreatedCompleteMultipartUpload is a Event enum value - EventS3ObjectCreatedCompleteMultipartUpload = "s3:ObjectCreated:CompleteMultipartUpload" - - // EventS3ObjectRemoved is a Event enum value - EventS3ObjectRemoved = "s3:ObjectRemoved:*" - - // EventS3ObjectRemovedDelete is a Event enum value - EventS3ObjectRemovedDelete = "s3:ObjectRemoved:Delete" - - // EventS3ObjectRemovedDeleteMarkerCreated is a Event enum value - EventS3ObjectRemovedDeleteMarkerCreated = "s3:ObjectRemoved:DeleteMarkerCreated" -) - -const ( - // ExpirationStatusEnabled is a ExpirationStatus enum value - ExpirationStatusEnabled = "Enabled" - - // ExpirationStatusDisabled is a ExpirationStatus enum value - ExpirationStatusDisabled = "Disabled" -) - -const ( - // FilterRuleNamePrefix is a FilterRuleName enum value - FilterRuleNamePrefix = "prefix" - - // FilterRuleNameSuffix is a FilterRuleName enum value - FilterRuleNameSuffix = "suffix" -) - -const ( - // MFADeleteEnabled is a MFADelete enum value - MFADeleteEnabled = "Enabled" - - // MFADeleteDisabled is a MFADelete enum value - MFADeleteDisabled = "Disabled" -) - -const ( - // MFADeleteStatusEnabled is a MFADeleteStatus enum value - MFADeleteStatusEnabled = "Enabled" - - // MFADeleteStatusDisabled is a MFADeleteStatus enum value - MFADeleteStatusDisabled = "Disabled" -) - -const ( - // MetadataDirectiveCopy is a MetadataDirective enum value - MetadataDirectiveCopy = "COPY" - - // MetadataDirectiveReplace is a MetadataDirective enum value - MetadataDirectiveReplace = "REPLACE" -) - -const ( - // ObjectCannedACLPrivate is a ObjectCannedACL enum value - ObjectCannedACLPrivate = "private" - - // ObjectCannedACLPublicRead is a ObjectCannedACL enum value - ObjectCannedACLPublicRead = "public-read" - - // ObjectCannedACLPublicReadWrite is a ObjectCannedACL enum value - ObjectCannedACLPublicReadWrite = "public-read-write" - - // ObjectCannedACLAuthenticatedRead is a ObjectCannedACL enum value - ObjectCannedACLAuthenticatedRead = "authenticated-read" - - // ObjectCannedACLAwsExecRead is a ObjectCannedACL enum value - ObjectCannedACLAwsExecRead = "aws-exec-read" - - // ObjectCannedACLBucketOwnerRead is a ObjectCannedACL enum value - ObjectCannedACLBucketOwnerRead = "bucket-owner-read" - - // ObjectCannedACLBucketOwnerFullControl is a ObjectCannedACL enum value - ObjectCannedACLBucketOwnerFullControl = "bucket-owner-full-control" -) - -const ( - // ObjectStorageClassStandard is a ObjectStorageClass enum value - ObjectStorageClassStandard = "STANDARD" - - // ObjectStorageClassReducedRedundancy is a ObjectStorageClass enum value - ObjectStorageClassReducedRedundancy = "REDUCED_REDUNDANCY" - - // ObjectStorageClassGlacier is a ObjectStorageClass enum value - ObjectStorageClassGlacier = "GLACIER" -) - -const ( - // ObjectVersionStorageClassStandard is a ObjectVersionStorageClass enum value - ObjectVersionStorageClassStandard = "STANDARD" -) - -const ( - // PayerRequester is a Payer enum value - PayerRequester = "Requester" - - // PayerBucketOwner is a Payer enum value - PayerBucketOwner = "BucketOwner" -) - -const ( - // PermissionFullControl is a Permission enum value - PermissionFullControl = "FULL_CONTROL" - - // PermissionWrite is a Permission enum value - PermissionWrite = "WRITE" - - // PermissionWriteAcp is a Permission enum value - PermissionWriteAcp = "WRITE_ACP" - - // PermissionRead is a Permission enum value - PermissionRead = "READ" - - // PermissionReadAcp is a Permission enum value - PermissionReadAcp = "READ_ACP" -) - -const ( - // ProtocolHttp is a Protocol enum value - ProtocolHttp = "http" - - // ProtocolHttps is a Protocol enum value - ProtocolHttps = "https" -) - -const ( - // ReplicationRuleStatusEnabled is a ReplicationRuleStatus enum value - ReplicationRuleStatusEnabled = "Enabled" - - // ReplicationRuleStatusDisabled is a ReplicationRuleStatus enum value - ReplicationRuleStatusDisabled = "Disabled" -) - -const ( - // ReplicationStatusComplete is a ReplicationStatus enum value - ReplicationStatusComplete = "COMPLETE" - - // ReplicationStatusPending is a ReplicationStatus enum value - ReplicationStatusPending = "PENDING" - - // ReplicationStatusFailed is a ReplicationStatus enum value - ReplicationStatusFailed = "FAILED" - - // ReplicationStatusReplica is a ReplicationStatus enum value - ReplicationStatusReplica = "REPLICA" -) - -// If present, indicates that the requester was successfully charged for the -// request. -const ( - // RequestChargedRequester is a RequestCharged enum value - RequestChargedRequester = "requester" -) - -// Confirms that the requester knows that she or he will be charged for the -// request. Bucket owners need not specify this parameter in their requests. -// Documentation on downloading objects from requester pays buckets can be found -// at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html -const ( - // RequestPayerRequester is a RequestPayer enum value - RequestPayerRequester = "requester" -) - -const ( - // ServerSideEncryptionAes256 is a ServerSideEncryption enum value - ServerSideEncryptionAes256 = "AES256" - - // ServerSideEncryptionAwsKms is a ServerSideEncryption enum value - ServerSideEncryptionAwsKms = "aws:kms" -) - -const ( - // StorageClassStandard is a StorageClass enum value - StorageClassStandard = "STANDARD" - - // StorageClassReducedRedundancy is a StorageClass enum value - StorageClassReducedRedundancy = "REDUCED_REDUNDANCY" - - // StorageClassStandardIa is a StorageClass enum value - StorageClassStandardIa = "STANDARD_IA" -) - -const ( - // TransitionStorageClassGlacier is a TransitionStorageClass enum value - TransitionStorageClassGlacier = "GLACIER" - - // TransitionStorageClassStandardIa is a TransitionStorageClass enum value - TransitionStorageClassStandardIa = "STANDARD_IA" -) - -const ( - // TypeCanonicalUser is a Type enum value - TypeCanonicalUser = "CanonicalUser" - - // TypeAmazonCustomerByEmail is a Type enum value - TypeAmazonCustomerByEmail = "AmazonCustomerByEmail" - - // TypeGroup is a Type enum value - TypeGroup = "Group" -) diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location.go b/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location.go deleted file mode 100644 index c3a2702d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location.go +++ /dev/null @@ -1,43 +0,0 @@ -package s3 - -import ( - "io/ioutil" - "regexp" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -var reBucketLocation = regexp.MustCompile(`>([^<>]+)<\/Location`) - -func buildGetBucketLocation(r *request.Request) { - if r.DataFilled() { - out := r.Data.(*GetBucketLocationOutput) - b, err := ioutil.ReadAll(r.HTTPResponse.Body) - if err != nil { - r.Error = awserr.New("SerializationError", "failed reading response body", err) - return - } - - match := reBucketLocation.FindSubmatch(b) - if len(match) > 1 { - loc := string(match[1]) - out.LocationConstraint = &loc - } - } -} - -func populateLocationConstraint(r *request.Request) { - if r.ParamsFilled() && aws.StringValue(r.Config.Region) != "us-east-1" { - in := r.Params.(*CreateBucketInput) - if in.CreateBucketConfiguration == nil { - r.Params = awsutil.CopyOf(r.Params) - in = r.Params.(*CreateBucketInput) - in.CreateBucketConfiguration = &CreateBucketConfiguration{ - LocationConstraint: r.Config.Region, - } - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location_test.go deleted file mode 100644 index 8ef61b0e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location_test.go +++ /dev/null @@ -1,78 +0,0 @@ -package s3_test - -import ( - "bytes" - "io/ioutil" - "net/http" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" - "github.com/stretchr/testify/assert" -) - -var s3LocationTests = []struct { - body string - loc string -}{ - {``, ``}, - {`EU`, `EU`}, -} - -func TestGetBucketLocation(t *testing.T) { - for _, test := range s3LocationTests { - s := s3.New(unit.Session) - s.Handlers.Send.Clear() - s.Handlers.Send.PushBack(func(r *request.Request) { - reader := ioutil.NopCloser(bytes.NewReader([]byte(test.body))) - r.HTTPResponse = &http.Response{StatusCode: 200, Body: reader} - }) - - resp, err := s.GetBucketLocation(&s3.GetBucketLocationInput{Bucket: aws.String("bucket")}) - assert.NoError(t, err) - if test.loc == "" { - assert.Nil(t, resp.LocationConstraint) - } else { - assert.Equal(t, test.loc, *resp.LocationConstraint) - } - } -} - -func TestPopulateLocationConstraint(t *testing.T) { - s := s3.New(unit.Session) - in := &s3.CreateBucketInput{ - Bucket: aws.String("bucket"), - } - req, _ := s.CreateBucketRequest(in) - err := req.Build() - assert.NoError(t, err) - v, _ := awsutil.ValuesAtPath(req.Params, "CreateBucketConfiguration.LocationConstraint") - assert.Equal(t, "mock-region", *(v[0].(*string))) - assert.Nil(t, in.CreateBucketConfiguration) // don't modify original params -} - -func TestNoPopulateLocationConstraintIfProvided(t *testing.T) { - s := s3.New(unit.Session) - req, _ := s.CreateBucketRequest(&s3.CreateBucketInput{ - Bucket: aws.String("bucket"), - CreateBucketConfiguration: &s3.CreateBucketConfiguration{}, - }) - err := req.Build() - assert.NoError(t, err) - v, _ := awsutil.ValuesAtPath(req.Params, "CreateBucketConfiguration.LocationConstraint") - assert.Equal(t, 0, len(v)) -} - -func TestNoPopulateLocationConstraintIfClassic(t *testing.T) { - s := s3.New(unit.Session, &aws.Config{Region: aws.String("us-east-1")}) - req, _ := s.CreateBucketRequest(&s3.CreateBucketInput{ - Bucket: aws.String("bucket"), - }) - err := req.Build() - assert.NoError(t, err) - v, _ := awsutil.ValuesAtPath(req.Params, "CreateBucketConfiguration.LocationConstraint") - assert.Equal(t, 0, len(v)) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/content_md5.go b/vendor/github.com/aws/aws-sdk-go/service/s3/content_md5.go deleted file mode 100644 index 9fc5df94..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/content_md5.go +++ /dev/null @@ -1,36 +0,0 @@ -package s3 - -import ( - "crypto/md5" - "encoding/base64" - "io" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" -) - -// contentMD5 computes and sets the HTTP Content-MD5 header for requests that -// require it. -func contentMD5(r *request.Request) { - h := md5.New() - - // hash the body. seek back to the first position after reading to reset - // the body for transmission. copy errors may be assumed to be from the - // body. - _, err := io.Copy(h, r.Body) - if err != nil { - r.Error = awserr.New("ContentMD5", "failed to read body", err) - return - } - _, err = r.Body.Seek(0, 0) - if err != nil { - r.Error = awserr.New("ContentMD5", "failed to seek body", err) - return - } - - // encode the md5 checksum in base64 and set the request header. - sum := h.Sum(nil) - sum64 := make([]byte, base64.StdEncoding.EncodedLen(len(sum))) - base64.StdEncoding.Encode(sum64, sum) - r.HTTPRequest.Header.Set("Content-MD5", string(sum64)) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go b/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go deleted file mode 100644 index 84633472..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go +++ /dev/null @@ -1,46 +0,0 @@ -package s3 - -import ( - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/request" -) - -func init() { - initClient = defaultInitClientFn - initRequest = defaultInitRequestFn -} - -func defaultInitClientFn(c *client.Client) { - // Support building custom endpoints based on config - c.Handlers.Build.PushFront(updateEndpointForS3Config) - - // Require SSL when using SSE keys - c.Handlers.Validate.PushBack(validateSSERequiresSSL) - c.Handlers.Build.PushBack(computeSSEKeys) - - // S3 uses custom error unmarshaling logic - c.Handlers.UnmarshalError.Clear() - c.Handlers.UnmarshalError.PushBack(unmarshalError) -} - -func defaultInitRequestFn(r *request.Request) { - // Add reuest handlers for specific platforms. - // e.g. 100-continue support for PUT requests using Go 1.6 - platformRequestHandlers(r) - - switch r.Operation.Name { - case opPutBucketCors, opPutBucketLifecycle, opPutBucketPolicy, - opPutBucketTagging, opDeleteObjects, opPutBucketLifecycleConfiguration, - opPutBucketReplication: - // These S3 operations require Content-MD5 to be set - r.Handlers.Build.PushBack(contentMD5) - case opGetBucketLocation: - // GetBucketLocation has custom parsing logic - r.Handlers.Unmarshal.PushFront(buildGetBucketLocation) - case opCreateBucket: - // Auto-populate LocationConstraint with current region - r.Handlers.Validate.PushFront(populateLocationConstraint) - case opCopyObject, opUploadPartCopy, opCompleteMultipartUpload: - r.Handlers.Unmarshal.PushFront(copyMultipartStatusOKUnmarhsalError) - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/customizations_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/customizations_test.go deleted file mode 100644 index 20a62d7a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/customizations_test.go +++ /dev/null @@ -1,105 +0,0 @@ -package s3_test - -import ( - "crypto/md5" - "encoding/base64" - "io/ioutil" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" - "github.com/stretchr/testify/assert" -) - -func assertMD5(t *testing.T, req *request.Request) { - err := req.Build() - assert.NoError(t, err) - - b, _ := ioutil.ReadAll(req.HTTPRequest.Body) - out := md5.Sum(b) - assert.NotEmpty(t, b) - assert.Equal(t, base64.StdEncoding.EncodeToString(out[:]), req.HTTPRequest.Header.Get("Content-MD5")) -} - -func TestMD5InPutBucketCors(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.PutBucketCorsRequest(&s3.PutBucketCorsInput{ - Bucket: aws.String("bucketname"), - CORSConfiguration: &s3.CORSConfiguration{ - CORSRules: []*s3.CORSRule{ - { - AllowedMethods: []*string{aws.String("GET")}, - AllowedOrigins: []*string{aws.String("*")}, - }, - }, - }, - }) - assertMD5(t, req) -} - -func TestMD5InPutBucketLifecycle(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.PutBucketLifecycleRequest(&s3.PutBucketLifecycleInput{ - Bucket: aws.String("bucketname"), - LifecycleConfiguration: &s3.LifecycleConfiguration{ - Rules: []*s3.Rule{ - { - ID: aws.String("ID"), - Prefix: aws.String("Prefix"), - Status: aws.String("Enabled"), - }, - }, - }, - }) - assertMD5(t, req) -} - -func TestMD5InPutBucketPolicy(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.PutBucketPolicyRequest(&s3.PutBucketPolicyInput{ - Bucket: aws.String("bucketname"), - Policy: aws.String("{}"), - }) - assertMD5(t, req) -} - -func TestMD5InPutBucketTagging(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.PutBucketTaggingRequest(&s3.PutBucketTaggingInput{ - Bucket: aws.String("bucketname"), - Tagging: &s3.Tagging{ - TagSet: []*s3.Tag{ - {Key: aws.String("KEY"), Value: aws.String("VALUE")}, - }, - }, - }) - assertMD5(t, req) -} - -func TestMD5InDeleteObjects(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.DeleteObjectsRequest(&s3.DeleteObjectsInput{ - Bucket: aws.String("bucketname"), - Delete: &s3.Delete{ - Objects: []*s3.ObjectIdentifier{ - {Key: aws.String("key")}, - }, - }, - }) - assertMD5(t, req) -} - -func TestMD5InPutBucketLifecycleConfiguration(t *testing.T) { - svc := s3.New(unit.Session) - req, _ := svc.PutBucketLifecycleConfigurationRequest(&s3.PutBucketLifecycleConfigurationInput{ - Bucket: aws.String("bucketname"), - LifecycleConfiguration: &s3.BucketLifecycleConfiguration{ - Rules: []*s3.LifecycleRule{ - {Prefix: aws.String("prefix"), Status: aws.String(s3.ExpirationStatusEnabled)}, - }, - }, - }) - assertMD5(t, req) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/examples_test.go deleted file mode 100644 index dcbac373..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/examples_test.go +++ /dev/null @@ -1,2033 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package s3_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/s3" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleS3_AbortMultipartUpload() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.AbortMultipartUploadInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - UploadId: aws.String("MultipartUploadId"), // Required - RequestPayer: aws.String("RequestPayer"), - } - resp, err := svc.AbortMultipartUpload(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_CompleteMultipartUpload() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.CompleteMultipartUploadInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - UploadId: aws.String("MultipartUploadId"), // Required - MultipartUpload: &s3.CompletedMultipartUpload{ - Parts: []*s3.CompletedPart{ - { // Required - ETag: aws.String("ETag"), - PartNumber: aws.Int64(1), - }, - // More values... - }, - }, - RequestPayer: aws.String("RequestPayer"), - } - resp, err := svc.CompleteMultipartUpload(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_CopyObject() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.CopyObjectInput{ - Bucket: aws.String("BucketName"), // Required - CopySource: aws.String("CopySource"), // Required - Key: aws.String("ObjectKey"), // Required - ACL: aws.String("ObjectCannedACL"), - CacheControl: aws.String("CacheControl"), - ContentDisposition: aws.String("ContentDisposition"), - ContentEncoding: aws.String("ContentEncoding"), - ContentLanguage: aws.String("ContentLanguage"), - ContentType: aws.String("ContentType"), - CopySourceIfMatch: aws.String("CopySourceIfMatch"), - CopySourceIfModifiedSince: aws.Time(time.Now()), - CopySourceIfNoneMatch: aws.String("CopySourceIfNoneMatch"), - CopySourceIfUnmodifiedSince: aws.Time(time.Now()), - CopySourceSSECustomerAlgorithm: aws.String("CopySourceSSECustomerAlgorithm"), - CopySourceSSECustomerKey: aws.String("CopySourceSSECustomerKey"), - CopySourceSSECustomerKeyMD5: aws.String("CopySourceSSECustomerKeyMD5"), - Expires: aws.Time(time.Now()), - GrantFullControl: aws.String("GrantFullControl"), - GrantRead: aws.String("GrantRead"), - GrantReadACP: aws.String("GrantReadACP"), - GrantWriteACP: aws.String("GrantWriteACP"), - Metadata: map[string]*string{ - "Key": aws.String("MetadataValue"), // Required - // More values... - }, - MetadataDirective: aws.String("MetadataDirective"), - RequestPayer: aws.String("RequestPayer"), - SSECustomerAlgorithm: aws.String("SSECustomerAlgorithm"), - SSECustomerKey: aws.String("SSECustomerKey"), - SSECustomerKeyMD5: aws.String("SSECustomerKeyMD5"), - SSEKMSKeyId: aws.String("SSEKMSKeyId"), - ServerSideEncryption: aws.String("ServerSideEncryption"), - StorageClass: aws.String("StorageClass"), - WebsiteRedirectLocation: aws.String("WebsiteRedirectLocation"), - } - resp, err := svc.CopyObject(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_CreateBucket() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.CreateBucketInput{ - Bucket: aws.String("BucketName"), // Required - ACL: aws.String("BucketCannedACL"), - CreateBucketConfiguration: &s3.CreateBucketConfiguration{ - LocationConstraint: aws.String("BucketLocationConstraint"), - }, - GrantFullControl: aws.String("GrantFullControl"), - GrantRead: aws.String("GrantRead"), - GrantReadACP: aws.String("GrantReadACP"), - GrantWrite: aws.String("GrantWrite"), - GrantWriteACP: aws.String("GrantWriteACP"), - } - resp, err := svc.CreateBucket(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_CreateMultipartUpload() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.CreateMultipartUploadInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - ACL: aws.String("ObjectCannedACL"), - CacheControl: aws.String("CacheControl"), - ContentDisposition: aws.String("ContentDisposition"), - ContentEncoding: aws.String("ContentEncoding"), - ContentLanguage: aws.String("ContentLanguage"), - ContentType: aws.String("ContentType"), - Expires: aws.Time(time.Now()), - GrantFullControl: aws.String("GrantFullControl"), - GrantRead: aws.String("GrantRead"), - GrantReadACP: aws.String("GrantReadACP"), - GrantWriteACP: aws.String("GrantWriteACP"), - Metadata: map[string]*string{ - "Key": aws.String("MetadataValue"), // Required - // More values... - }, - RequestPayer: aws.String("RequestPayer"), - SSECustomerAlgorithm: aws.String("SSECustomerAlgorithm"), - SSECustomerKey: aws.String("SSECustomerKey"), - SSECustomerKeyMD5: aws.String("SSECustomerKeyMD5"), - SSEKMSKeyId: aws.String("SSEKMSKeyId"), - ServerSideEncryption: aws.String("ServerSideEncryption"), - StorageClass: aws.String("StorageClass"), - WebsiteRedirectLocation: aws.String("WebsiteRedirectLocation"), - } - resp, err := svc.CreateMultipartUpload(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteBucket() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteBucketInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.DeleteBucket(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteBucketCors() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteBucketCorsInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.DeleteBucketCors(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteBucketLifecycle() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteBucketLifecycleInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.DeleteBucketLifecycle(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteBucketPolicy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteBucketPolicyInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.DeleteBucketPolicy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteBucketReplication() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteBucketReplicationInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.DeleteBucketReplication(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteBucketTagging() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteBucketTaggingInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.DeleteBucketTagging(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteBucketWebsite() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteBucketWebsiteInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.DeleteBucketWebsite(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteObject() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteObjectInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - MFA: aws.String("MFA"), - RequestPayer: aws.String("RequestPayer"), - VersionId: aws.String("ObjectVersionId"), - } - resp, err := svc.DeleteObject(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_DeleteObjects() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.DeleteObjectsInput{ - Bucket: aws.String("BucketName"), // Required - Delete: &s3.Delete{ // Required - Objects: []*s3.ObjectIdentifier{ // Required - { // Required - Key: aws.String("ObjectKey"), // Required - VersionId: aws.String("ObjectVersionId"), - }, - // More values... - }, - Quiet: aws.Bool(true), - }, - MFA: aws.String("MFA"), - RequestPayer: aws.String("RequestPayer"), - } - resp, err := svc.DeleteObjects(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketAccelerateConfiguration() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketAccelerateConfigurationInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketAccelerateConfiguration(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketAcl() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketAclInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketAcl(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketCors() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketCorsInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketCors(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketLifecycle() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketLifecycleInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketLifecycle(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketLifecycleConfiguration() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketLifecycleConfigurationInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketLifecycleConfiguration(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketLocation() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketLocationInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketLocation(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketLogging() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketLoggingInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketLogging(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketNotification() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketNotificationConfigurationRequest{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketNotification(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketNotificationConfiguration() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketNotificationConfigurationRequest{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketNotificationConfiguration(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketPolicy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketPolicyInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketPolicy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketReplication() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketReplicationInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketReplication(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketRequestPayment() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketRequestPaymentInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketRequestPayment(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketTagging() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketTaggingInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketTagging(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketVersioning() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketVersioningInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketVersioning(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetBucketWebsite() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetBucketWebsiteInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.GetBucketWebsite(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetObject() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetObjectInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - IfMatch: aws.String("IfMatch"), - IfModifiedSince: aws.Time(time.Now()), - IfNoneMatch: aws.String("IfNoneMatch"), - IfUnmodifiedSince: aws.Time(time.Now()), - PartNumber: aws.Int64(1), - Range: aws.String("Range"), - RequestPayer: aws.String("RequestPayer"), - ResponseCacheControl: aws.String("ResponseCacheControl"), - ResponseContentDisposition: aws.String("ResponseContentDisposition"), - ResponseContentEncoding: aws.String("ResponseContentEncoding"), - ResponseContentLanguage: aws.String("ResponseContentLanguage"), - ResponseContentType: aws.String("ResponseContentType"), - ResponseExpires: aws.Time(time.Now()), - SSECustomerAlgorithm: aws.String("SSECustomerAlgorithm"), - SSECustomerKey: aws.String("SSECustomerKey"), - SSECustomerKeyMD5: aws.String("SSECustomerKeyMD5"), - VersionId: aws.String("ObjectVersionId"), - } - resp, err := svc.GetObject(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetObjectAcl() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetObjectAclInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - RequestPayer: aws.String("RequestPayer"), - VersionId: aws.String("ObjectVersionId"), - } - resp, err := svc.GetObjectAcl(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_GetObjectTorrent() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.GetObjectTorrentInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - RequestPayer: aws.String("RequestPayer"), - } - resp, err := svc.GetObjectTorrent(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_HeadBucket() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.HeadBucketInput{ - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.HeadBucket(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_HeadObject() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.HeadObjectInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - IfMatch: aws.String("IfMatch"), - IfModifiedSince: aws.Time(time.Now()), - IfNoneMatch: aws.String("IfNoneMatch"), - IfUnmodifiedSince: aws.Time(time.Now()), - PartNumber: aws.Int64(1), - Range: aws.String("Range"), - RequestPayer: aws.String("RequestPayer"), - SSECustomerAlgorithm: aws.String("SSECustomerAlgorithm"), - SSECustomerKey: aws.String("SSECustomerKey"), - SSECustomerKeyMD5: aws.String("SSECustomerKeyMD5"), - VersionId: aws.String("ObjectVersionId"), - } - resp, err := svc.HeadObject(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_ListBuckets() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - var params *s3.ListBucketsInput - resp, err := svc.ListBuckets(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_ListMultipartUploads() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.ListMultipartUploadsInput{ - Bucket: aws.String("BucketName"), // Required - Delimiter: aws.String("Delimiter"), - EncodingType: aws.String("EncodingType"), - KeyMarker: aws.String("KeyMarker"), - MaxUploads: aws.Int64(1), - Prefix: aws.String("Prefix"), - UploadIdMarker: aws.String("UploadIdMarker"), - } - resp, err := svc.ListMultipartUploads(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_ListObjectVersions() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.ListObjectVersionsInput{ - Bucket: aws.String("BucketName"), // Required - Delimiter: aws.String("Delimiter"), - EncodingType: aws.String("EncodingType"), - KeyMarker: aws.String("KeyMarker"), - MaxKeys: aws.Int64(1), - Prefix: aws.String("Prefix"), - VersionIdMarker: aws.String("VersionIdMarker"), - } - resp, err := svc.ListObjectVersions(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_ListObjects() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.ListObjectsInput{ - Bucket: aws.String("BucketName"), // Required - Delimiter: aws.String("Delimiter"), - EncodingType: aws.String("EncodingType"), - Marker: aws.String("Marker"), - MaxKeys: aws.Int64(1), - Prefix: aws.String("Prefix"), - RequestPayer: aws.String("RequestPayer"), - } - resp, err := svc.ListObjects(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_ListObjectsV2() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.ListObjectsV2Input{ - Bucket: aws.String("BucketName"), // Required - ContinuationToken: aws.String("Token"), - Delimiter: aws.String("Delimiter"), - EncodingType: aws.String("EncodingType"), - FetchOwner: aws.Bool(true), - MaxKeys: aws.Int64(1), - Prefix: aws.String("Prefix"), - RequestPayer: aws.String("RequestPayer"), - StartAfter: aws.String("StartAfter"), - } - resp, err := svc.ListObjectsV2(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_ListParts() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.ListPartsInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - UploadId: aws.String("MultipartUploadId"), // Required - MaxParts: aws.Int64(1), - PartNumberMarker: aws.Int64(1), - RequestPayer: aws.String("RequestPayer"), - } - resp, err := svc.ListParts(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketAccelerateConfiguration() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketAccelerateConfigurationInput{ - AccelerateConfiguration: &s3.AccelerateConfiguration{ // Required - Status: aws.String("BucketAccelerateStatus"), - }, - Bucket: aws.String("BucketName"), // Required - } - resp, err := svc.PutBucketAccelerateConfiguration(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketAcl() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketAclInput{ - Bucket: aws.String("BucketName"), // Required - ACL: aws.String("BucketCannedACL"), - AccessControlPolicy: &s3.AccessControlPolicy{ - Grants: []*s3.Grant{ - { // Required - Grantee: &s3.Grantee{ - Type: aws.String("Type"), // Required - DisplayName: aws.String("DisplayName"), - EmailAddress: aws.String("EmailAddress"), - ID: aws.String("ID"), - URI: aws.String("URI"), - }, - Permission: aws.String("Permission"), - }, - // More values... - }, - Owner: &s3.Owner{ - DisplayName: aws.String("DisplayName"), - ID: aws.String("ID"), - }, - }, - GrantFullControl: aws.String("GrantFullControl"), - GrantRead: aws.String("GrantRead"), - GrantReadACP: aws.String("GrantReadACP"), - GrantWrite: aws.String("GrantWrite"), - GrantWriteACP: aws.String("GrantWriteACP"), - } - resp, err := svc.PutBucketAcl(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketCors() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketCorsInput{ - Bucket: aws.String("BucketName"), // Required - CORSConfiguration: &s3.CORSConfiguration{ // Required - CORSRules: []*s3.CORSRule{ // Required - { // Required - AllowedMethods: []*string{ // Required - aws.String("AllowedMethod"), // Required - // More values... - }, - AllowedOrigins: []*string{ // Required - aws.String("AllowedOrigin"), // Required - // More values... - }, - AllowedHeaders: []*string{ - aws.String("AllowedHeader"), // Required - // More values... - }, - ExposeHeaders: []*string{ - aws.String("ExposeHeader"), // Required - // More values... - }, - MaxAgeSeconds: aws.Int64(1), - }, - // More values... - }, - }, - } - resp, err := svc.PutBucketCors(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketLifecycle() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketLifecycleInput{ - Bucket: aws.String("BucketName"), // Required - LifecycleConfiguration: &s3.LifecycleConfiguration{ - Rules: []*s3.Rule{ // Required - { // Required - Prefix: aws.String("Prefix"), // Required - Status: aws.String("ExpirationStatus"), // Required - AbortIncompleteMultipartUpload: &s3.AbortIncompleteMultipartUpload{ - DaysAfterInitiation: aws.Int64(1), - }, - Expiration: &s3.LifecycleExpiration{ - Date: aws.Time(time.Now()), - Days: aws.Int64(1), - ExpiredObjectDeleteMarker: aws.Bool(true), - }, - ID: aws.String("ID"), - NoncurrentVersionExpiration: &s3.NoncurrentVersionExpiration{ - NoncurrentDays: aws.Int64(1), - }, - NoncurrentVersionTransition: &s3.NoncurrentVersionTransition{ - NoncurrentDays: aws.Int64(1), - StorageClass: aws.String("TransitionStorageClass"), - }, - Transition: &s3.Transition{ - Date: aws.Time(time.Now()), - Days: aws.Int64(1), - StorageClass: aws.String("TransitionStorageClass"), - }, - }, - // More values... - }, - }, - } - resp, err := svc.PutBucketLifecycle(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketLifecycleConfiguration() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketLifecycleConfigurationInput{ - Bucket: aws.String("BucketName"), // Required - LifecycleConfiguration: &s3.BucketLifecycleConfiguration{ - Rules: []*s3.LifecycleRule{ // Required - { // Required - Prefix: aws.String("Prefix"), // Required - Status: aws.String("ExpirationStatus"), // Required - AbortIncompleteMultipartUpload: &s3.AbortIncompleteMultipartUpload{ - DaysAfterInitiation: aws.Int64(1), - }, - Expiration: &s3.LifecycleExpiration{ - Date: aws.Time(time.Now()), - Days: aws.Int64(1), - ExpiredObjectDeleteMarker: aws.Bool(true), - }, - ID: aws.String("ID"), - NoncurrentVersionExpiration: &s3.NoncurrentVersionExpiration{ - NoncurrentDays: aws.Int64(1), - }, - NoncurrentVersionTransitions: []*s3.NoncurrentVersionTransition{ - { // Required - NoncurrentDays: aws.Int64(1), - StorageClass: aws.String("TransitionStorageClass"), - }, - // More values... - }, - Transitions: []*s3.Transition{ - { // Required - Date: aws.Time(time.Now()), - Days: aws.Int64(1), - StorageClass: aws.String("TransitionStorageClass"), - }, - // More values... - }, - }, - // More values... - }, - }, - } - resp, err := svc.PutBucketLifecycleConfiguration(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketLogging() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketLoggingInput{ - Bucket: aws.String("BucketName"), // Required - BucketLoggingStatus: &s3.BucketLoggingStatus{ // Required - LoggingEnabled: &s3.LoggingEnabled{ - TargetBucket: aws.String("TargetBucket"), - TargetGrants: []*s3.TargetGrant{ - { // Required - Grantee: &s3.Grantee{ - Type: aws.String("Type"), // Required - DisplayName: aws.String("DisplayName"), - EmailAddress: aws.String("EmailAddress"), - ID: aws.String("ID"), - URI: aws.String("URI"), - }, - Permission: aws.String("BucketLogsPermission"), - }, - // More values... - }, - TargetPrefix: aws.String("TargetPrefix"), - }, - }, - } - resp, err := svc.PutBucketLogging(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketNotification() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketNotificationInput{ - Bucket: aws.String("BucketName"), // Required - NotificationConfiguration: &s3.NotificationConfigurationDeprecated{ // Required - CloudFunctionConfiguration: &s3.CloudFunctionConfiguration{ - CloudFunction: aws.String("CloudFunction"), - Event: aws.String("Event"), - Events: []*string{ - aws.String("Event"), // Required - // More values... - }, - Id: aws.String("NotificationId"), - InvocationRole: aws.String("CloudFunctionInvocationRole"), - }, - QueueConfiguration: &s3.QueueConfigurationDeprecated{ - Event: aws.String("Event"), - Events: []*string{ - aws.String("Event"), // Required - // More values... - }, - Id: aws.String("NotificationId"), - Queue: aws.String("QueueArn"), - }, - TopicConfiguration: &s3.TopicConfigurationDeprecated{ - Event: aws.String("Event"), - Events: []*string{ - aws.String("Event"), // Required - // More values... - }, - Id: aws.String("NotificationId"), - Topic: aws.String("TopicArn"), - }, - }, - } - resp, err := svc.PutBucketNotification(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketNotificationConfiguration() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketNotificationConfigurationInput{ - Bucket: aws.String("BucketName"), // Required - NotificationConfiguration: &s3.NotificationConfiguration{ // Required - LambdaFunctionConfigurations: []*s3.LambdaFunctionConfiguration{ - { // Required - Events: []*string{ // Required - aws.String("Event"), // Required - // More values... - }, - LambdaFunctionArn: aws.String("LambdaFunctionArn"), // Required - Filter: &s3.NotificationConfigurationFilter{ - Key: &s3.KeyFilter{ - FilterRules: []*s3.FilterRule{ - { // Required - Name: aws.String("FilterRuleName"), - Value: aws.String("FilterRuleValue"), - }, - // More values... - }, - }, - }, - Id: aws.String("NotificationId"), - }, - // More values... - }, - QueueConfigurations: []*s3.QueueConfiguration{ - { // Required - Events: []*string{ // Required - aws.String("Event"), // Required - // More values... - }, - QueueArn: aws.String("QueueArn"), // Required - Filter: &s3.NotificationConfigurationFilter{ - Key: &s3.KeyFilter{ - FilterRules: []*s3.FilterRule{ - { // Required - Name: aws.String("FilterRuleName"), - Value: aws.String("FilterRuleValue"), - }, - // More values... - }, - }, - }, - Id: aws.String("NotificationId"), - }, - // More values... - }, - TopicConfigurations: []*s3.TopicConfiguration{ - { // Required - Events: []*string{ // Required - aws.String("Event"), // Required - // More values... - }, - TopicArn: aws.String("TopicArn"), // Required - Filter: &s3.NotificationConfigurationFilter{ - Key: &s3.KeyFilter{ - FilterRules: []*s3.FilterRule{ - { // Required - Name: aws.String("FilterRuleName"), - Value: aws.String("FilterRuleValue"), - }, - // More values... - }, - }, - }, - Id: aws.String("NotificationId"), - }, - // More values... - }, - }, - } - resp, err := svc.PutBucketNotificationConfiguration(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketPolicy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketPolicyInput{ - Bucket: aws.String("BucketName"), // Required - Policy: aws.String("Policy"), // Required - } - resp, err := svc.PutBucketPolicy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketReplication() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketReplicationInput{ - Bucket: aws.String("BucketName"), // Required - ReplicationConfiguration: &s3.ReplicationConfiguration{ // Required - Role: aws.String("Role"), // Required - Rules: []*s3.ReplicationRule{ // Required - { // Required - Destination: &s3.Destination{ // Required - Bucket: aws.String("BucketName"), // Required - StorageClass: aws.String("StorageClass"), - }, - Prefix: aws.String("Prefix"), // Required - Status: aws.String("ReplicationRuleStatus"), // Required - ID: aws.String("ID"), - }, - // More values... - }, - }, - } - resp, err := svc.PutBucketReplication(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketRequestPayment() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketRequestPaymentInput{ - Bucket: aws.String("BucketName"), // Required - RequestPaymentConfiguration: &s3.RequestPaymentConfiguration{ // Required - Payer: aws.String("Payer"), // Required - }, - } - resp, err := svc.PutBucketRequestPayment(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketTagging() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketTaggingInput{ - Bucket: aws.String("BucketName"), // Required - Tagging: &s3.Tagging{ // Required - TagSet: []*s3.Tag{ // Required - { // Required - Key: aws.String("ObjectKey"), // Required - Value: aws.String("Value"), // Required - }, - // More values... - }, - }, - } - resp, err := svc.PutBucketTagging(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketVersioning() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketVersioningInput{ - Bucket: aws.String("BucketName"), // Required - VersioningConfiguration: &s3.VersioningConfiguration{ // Required - MFADelete: aws.String("MFADelete"), - Status: aws.String("BucketVersioningStatus"), - }, - MFA: aws.String("MFA"), - } - resp, err := svc.PutBucketVersioning(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutBucketWebsite() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutBucketWebsiteInput{ - Bucket: aws.String("BucketName"), // Required - WebsiteConfiguration: &s3.WebsiteConfiguration{ // Required - ErrorDocument: &s3.ErrorDocument{ - Key: aws.String("ObjectKey"), // Required - }, - IndexDocument: &s3.IndexDocument{ - Suffix: aws.String("Suffix"), // Required - }, - RedirectAllRequestsTo: &s3.RedirectAllRequestsTo{ - HostName: aws.String("HostName"), // Required - Protocol: aws.String("Protocol"), - }, - RoutingRules: []*s3.RoutingRule{ - { // Required - Redirect: &s3.Redirect{ // Required - HostName: aws.String("HostName"), - HttpRedirectCode: aws.String("HttpRedirectCode"), - Protocol: aws.String("Protocol"), - ReplaceKeyPrefixWith: aws.String("ReplaceKeyPrefixWith"), - ReplaceKeyWith: aws.String("ReplaceKeyWith"), - }, - Condition: &s3.Condition{ - HttpErrorCodeReturnedEquals: aws.String("HttpErrorCodeReturnedEquals"), - KeyPrefixEquals: aws.String("KeyPrefixEquals"), - }, - }, - // More values... - }, - }, - } - resp, err := svc.PutBucketWebsite(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutObject() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutObjectInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - ACL: aws.String("ObjectCannedACL"), - Body: bytes.NewReader([]byte("PAYLOAD")), - CacheControl: aws.String("CacheControl"), - ContentDisposition: aws.String("ContentDisposition"), - ContentEncoding: aws.String("ContentEncoding"), - ContentLanguage: aws.String("ContentLanguage"), - ContentLength: aws.Int64(1), - ContentType: aws.String("ContentType"), - Expires: aws.Time(time.Now()), - GrantFullControl: aws.String("GrantFullControl"), - GrantRead: aws.String("GrantRead"), - GrantReadACP: aws.String("GrantReadACP"), - GrantWriteACP: aws.String("GrantWriteACP"), - Metadata: map[string]*string{ - "Key": aws.String("MetadataValue"), // Required - // More values... - }, - RequestPayer: aws.String("RequestPayer"), - SSECustomerAlgorithm: aws.String("SSECustomerAlgorithm"), - SSECustomerKey: aws.String("SSECustomerKey"), - SSECustomerKeyMD5: aws.String("SSECustomerKeyMD5"), - SSEKMSKeyId: aws.String("SSEKMSKeyId"), - ServerSideEncryption: aws.String("ServerSideEncryption"), - StorageClass: aws.String("StorageClass"), - WebsiteRedirectLocation: aws.String("WebsiteRedirectLocation"), - } - resp, err := svc.PutObject(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_PutObjectAcl() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.PutObjectAclInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - ACL: aws.String("ObjectCannedACL"), - AccessControlPolicy: &s3.AccessControlPolicy{ - Grants: []*s3.Grant{ - { // Required - Grantee: &s3.Grantee{ - Type: aws.String("Type"), // Required - DisplayName: aws.String("DisplayName"), - EmailAddress: aws.String("EmailAddress"), - ID: aws.String("ID"), - URI: aws.String("URI"), - }, - Permission: aws.String("Permission"), - }, - // More values... - }, - Owner: &s3.Owner{ - DisplayName: aws.String("DisplayName"), - ID: aws.String("ID"), - }, - }, - GrantFullControl: aws.String("GrantFullControl"), - GrantRead: aws.String("GrantRead"), - GrantReadACP: aws.String("GrantReadACP"), - GrantWrite: aws.String("GrantWrite"), - GrantWriteACP: aws.String("GrantWriteACP"), - RequestPayer: aws.String("RequestPayer"), - VersionId: aws.String("ObjectVersionId"), - } - resp, err := svc.PutObjectAcl(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_RestoreObject() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.RestoreObjectInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - RequestPayer: aws.String("RequestPayer"), - RestoreRequest: &s3.RestoreRequest{ - Days: aws.Int64(1), // Required - }, - VersionId: aws.String("ObjectVersionId"), - } - resp, err := svc.RestoreObject(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_UploadPart() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.UploadPartInput{ - Bucket: aws.String("BucketName"), // Required - Key: aws.String("ObjectKey"), // Required - PartNumber: aws.Int64(1), // Required - UploadId: aws.String("MultipartUploadId"), // Required - Body: bytes.NewReader([]byte("PAYLOAD")), - ContentLength: aws.Int64(1), - RequestPayer: aws.String("RequestPayer"), - SSECustomerAlgorithm: aws.String("SSECustomerAlgorithm"), - SSECustomerKey: aws.String("SSECustomerKey"), - SSECustomerKeyMD5: aws.String("SSECustomerKeyMD5"), - } - resp, err := svc.UploadPart(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleS3_UploadPartCopy() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := s3.New(sess) - - params := &s3.UploadPartCopyInput{ - Bucket: aws.String("BucketName"), // Required - CopySource: aws.String("CopySource"), // Required - Key: aws.String("ObjectKey"), // Required - PartNumber: aws.Int64(1), // Required - UploadId: aws.String("MultipartUploadId"), // Required - CopySourceIfMatch: aws.String("CopySourceIfMatch"), - CopySourceIfModifiedSince: aws.Time(time.Now()), - CopySourceIfNoneMatch: aws.String("CopySourceIfNoneMatch"), - CopySourceIfUnmodifiedSince: aws.Time(time.Now()), - CopySourceRange: aws.String("CopySourceRange"), - CopySourceSSECustomerAlgorithm: aws.String("CopySourceSSECustomerAlgorithm"), - CopySourceSSECustomerKey: aws.String("CopySourceSSECustomerKey"), - CopySourceSSECustomerKeyMD5: aws.String("CopySourceSSECustomerKeyMD5"), - RequestPayer: aws.String("RequestPayer"), - SSECustomerAlgorithm: aws.String("SSECustomerAlgorithm"), - SSECustomerKey: aws.String("SSECustomerKey"), - SSECustomerKeyMD5: aws.String("SSECustomerKeyMD5"), - } - resp, err := svc.UploadPartCopy(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket.go b/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket.go deleted file mode 100644 index ccbf5cc1..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket.go +++ /dev/null @@ -1,173 +0,0 @@ -package s3 - -import ( - "fmt" - "net/url" - "regexp" - "strings" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -// an operationBlacklist is a list of operation names that should a -// request handler should not be executed with. -type operationBlacklist []string - -// Continue will return true of the Request's operation name is not -// in the blacklist. False otherwise. -func (b operationBlacklist) Continue(r *request.Request) bool { - for i := 0; i < len(b); i++ { - if b[i] == r.Operation.Name { - return false - } - } - return true -} - -var accelerateOpBlacklist = operationBlacklist{ - opListBuckets, opCreateBucket, opDeleteBucket, -} - -// Request handler to automatically add the bucket name to the endpoint domain -// if possible. This style of bucket is valid for all bucket names which are -// DNS compatible and do not contain "." -func updateEndpointForS3Config(r *request.Request) { - forceHostStyle := aws.BoolValue(r.Config.S3ForcePathStyle) - accelerate := aws.BoolValue(r.Config.S3UseAccelerate) - useDualStack := aws.BoolValue(r.Config.UseDualStack) - - if useDualStack && accelerate { - r.Error = awserr.New("InvalidParameterException", - fmt.Sprintf("configuration aws.Config.UseDualStack is not compatible with aws.Config.Accelerate"), - nil) - return - } - - if accelerate && accelerateOpBlacklist.Continue(r) { - if forceHostStyle { - if r.Config.Logger != nil { - r.Config.Logger.Log("ERROR: aws.Config.S3UseAccelerate is not compatible with aws.Config.S3ForcePathStyle, ignoring S3ForcePathStyle.") - } - } - updateEndpointForAccelerate(r) - } else if !forceHostStyle && r.Operation.Name != opGetBucketLocation { - updateEndpointForHostStyle(r) - } -} - -func updateEndpointForHostStyle(r *request.Request) { - bucket, ok := bucketNameFromReqParams(r.Params) - if !ok { - // Ignore operation requests if the bucketname was not provided - // if this is an input validation error the validation handler - // will report it. - return - } - - if !hostCompatibleBucketName(r.HTTPRequest.URL, bucket) { - // bucket name must be valid to put into the host - return - } - - moveBucketToHost(r.HTTPRequest.URL, bucket) -} - -func updateEndpointForAccelerate(r *request.Request) { - bucket, ok := bucketNameFromReqParams(r.Params) - if !ok { - // Ignore operation requests if the bucketname was not provided - // if this is an input validation error the validation handler - // will report it. - return - } - - if !hostCompatibleBucketName(r.HTTPRequest.URL, bucket) { - r.Error = awserr.New("InvalidParameterException", - fmt.Sprintf("bucket name %s is not compatibile with S3 Accelerate", bucket), - nil) - return - } - - // Change endpoint from s3(-[a-z0-1-])?.amazonaws.com to s3-accelerate.amazonaws.com - r.HTTPRequest.URL.Host = replaceHostRegion(r.HTTPRequest.URL.Host, "accelerate") - moveBucketToHost(r.HTTPRequest.URL, bucket) -} - -// Attempts to retrieve the bucket name from the request input parameters. -// If no bucket is found, or the field is empty "", false will be returned. -func bucketNameFromReqParams(params interface{}) (string, bool) { - b, _ := awsutil.ValuesAtPath(params, "Bucket") - if len(b) == 0 { - return "", false - } - - if bucket, ok := b[0].(*string); ok { - if bucketStr := aws.StringValue(bucket); bucketStr != "" { - return bucketStr, true - } - } - - return "", false -} - -// hostCompatibleBucketName returns true if the request should -// put the bucket in the host. This is false if S3ForcePathStyle is -// explicitly set or if the bucket is not DNS compatible. -func hostCompatibleBucketName(u *url.URL, bucket string) bool { - // Bucket might be DNS compatible but dots in the hostname will fail - // certificate validation, so do not use host-style. - if u.Scheme == "https" && strings.Contains(bucket, ".") { - return false - } - - // if the bucket is DNS compatible - return dnsCompatibleBucketName(bucket) -} - -var reDomain = regexp.MustCompile(`^[a-z0-9][a-z0-9\.\-]{1,61}[a-z0-9]$`) -var reIPAddress = regexp.MustCompile(`^(\d+\.){3}\d+$`) - -// dnsCompatibleBucketName returns true if the bucket name is DNS compatible. -// Buckets created outside of the classic region MUST be DNS compatible. -func dnsCompatibleBucketName(bucket string) bool { - return reDomain.MatchString(bucket) && - !reIPAddress.MatchString(bucket) && - !strings.Contains(bucket, "..") -} - -// moveBucketToHost moves the bucket name from the URI path to URL host. -func moveBucketToHost(u *url.URL, bucket string) { - u.Host = bucket + "." + u.Host - u.Path = strings.Replace(u.Path, "/{Bucket}", "", -1) - if u.Path == "" { - u.Path = "/" - } -} - -const s3HostPrefix = "s3" - -// replaceHostRegion replaces the S3 region string in the host with the -// value provided. If v is empty the host prefix returned will be s3. -func replaceHostRegion(host, v string) string { - if !strings.HasPrefix(host, s3HostPrefix) { - return host - } - - suffix := host[len(s3HostPrefix):] - for i := len(s3HostPrefix); i < len(host); i++ { - if host[i] == '.' { - // Trim until '.' leave the it in place. - suffix = host[i:] - break - } - } - - if len(v) == 0 { - return fmt.Sprintf("s3%s", suffix) - } - - return fmt.Sprintf("s3-%s%s", v, suffix) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket_test.go deleted file mode 100644 index faf0a9ed..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket_test.go +++ /dev/null @@ -1,103 +0,0 @@ -package s3_test - -import ( - "net/url" - "testing" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" -) - -type s3BucketTest struct { - bucket string - url string - errCode string -} - -var ( - sslTests = []s3BucketTest{ - {"abc", "https://abc.s3-mock-region.amazonaws.com/", ""}, - {"a$b$c", "https://s3-mock-region.amazonaws.com/a%24b%24c", ""}, - {"a.b.c", "https://s3-mock-region.amazonaws.com/a.b.c", ""}, - {"a..bc", "https://s3-mock-region.amazonaws.com/a..bc", ""}, - } - - nosslTests = []s3BucketTest{ - {"a.b.c", "http://a.b.c.s3-mock-region.amazonaws.com/", ""}, - {"a..bc", "http://s3-mock-region.amazonaws.com/a..bc", ""}, - } - - forcepathTests = []s3BucketTest{ - {"abc", "https://s3-mock-region.amazonaws.com/abc", ""}, - {"a$b$c", "https://s3-mock-region.amazonaws.com/a%24b%24c", ""}, - {"a.b.c", "https://s3-mock-region.amazonaws.com/a.b.c", ""}, - {"a..bc", "https://s3-mock-region.amazonaws.com/a..bc", ""}, - } - - accelerateTests = []s3BucketTest{ - {"abc", "https://abc.s3-accelerate.amazonaws.com/", ""}, - {"a.b.c", "https://s3-mock-region.amazonaws.com/%7BBucket%7D", "InvalidParameterException"}, - {"a$b$c", "https://s3-mock-region.amazonaws.com/%7BBucket%7D", "InvalidParameterException"}, - } - - accelerateNoSSLTests = []s3BucketTest{ - {"abc", "http://abc.s3-accelerate.amazonaws.com/", ""}, - {"a.b.c", "http://a.b.c.s3-accelerate.amazonaws.com/", ""}, - {"a$b$c", "http://s3-mock-region.amazonaws.com/%7BBucket%7D", "InvalidParameterException"}, - } -) - -func runTests(t *testing.T, svc *s3.S3, tests []s3BucketTest) { - for i, test := range tests { - req, _ := svc.ListObjectsRequest(&s3.ListObjectsInput{Bucket: &test.bucket}) - req.Build() - assert.Equal(t, test.url, req.HTTPRequest.URL.String(), "test case %d", i) - if test.errCode != "" { - require.Error(t, req.Error, "test case %d", i) - assert.Contains(t, req.Error.(awserr.Error).Code(), test.errCode, "test case %d", i) - } - } -} - -func TestAccelerateBucketBuild(t *testing.T) { - s := s3.New(unit.Session, &aws.Config{S3UseAccelerate: aws.Bool(true)}) - runTests(t, s, accelerateTests) -} - -func TestAccelerateNoSSLBucketBuild(t *testing.T) { - s := s3.New(unit.Session, &aws.Config{S3UseAccelerate: aws.Bool(true), DisableSSL: aws.Bool(true)}) - runTests(t, s, accelerateNoSSLTests) -} - -func TestHostStyleBucketBuild(t *testing.T) { - s := s3.New(unit.Session) - runTests(t, s, sslTests) -} - -func TestHostStyleBucketBuildNoSSL(t *testing.T) { - s := s3.New(unit.Session, &aws.Config{DisableSSL: aws.Bool(true)}) - runTests(t, s, nosslTests) -} - -func TestPathStyleBucketBuild(t *testing.T) { - s := s3.New(unit.Session, &aws.Config{S3ForcePathStyle: aws.Bool(true)}) - runTests(t, s, forcepathTests) -} - -func TestHostStyleBucketGetBucketLocation(t *testing.T) { - s := s3.New(unit.Session) - req, _ := s.GetBucketLocationRequest(&s3.GetBucketLocationInput{ - Bucket: aws.String("bucket"), - }) - - req.Build() - require.NoError(t, req.Error) - u, _ := url.Parse(req.HTTPRequest.URL.String()) - assert.NotContains(t, u.Host, "bucket") - assert.Contains(t, u.Path, "bucket") -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go b/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go deleted file mode 100644 index 8e6f3307..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go +++ /dev/null @@ -1,8 +0,0 @@ -// +build !go1.6 - -package s3 - -import "github.com/aws/aws-sdk-go/aws/request" - -func platformRequestHandlers(r *request.Request) { -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6.go b/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6.go deleted file mode 100644 index 14d05f7b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6.go +++ /dev/null @@ -1,28 +0,0 @@ -// +build go1.6 - -package s3 - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/request" -) - -func platformRequestHandlers(r *request.Request) { - if r.Operation.HTTPMethod == "PUT" { - // 100-Continue should only be used on put requests. - r.Handlers.Sign.PushBack(add100Continue) - } -} - -func add100Continue(r *request.Request) { - if aws.BoolValue(r.Config.S3Disable100Continue) { - return - } - if r.HTTPRequest.ContentLength < 1024*1024*2 { - // Ignore requests smaller than 2MB. This helps prevent delaying - // requests unnecessarily. - return - } - - r.HTTPRequest.Header.Set("Expect", "100-Continue") -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6_test.go deleted file mode 100644 index b119ce8b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6_test.go +++ /dev/null @@ -1,68 +0,0 @@ -// +build go1.6 - -package s3_test - -import ( - "bytes" - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" - "github.com/stretchr/testify/assert" -) - -func TestAdd100Continue_Added(t *testing.T) { - svc := s3.New(unit.Session) - r, _ := svc.PutObjectRequest(&s3.PutObjectInput{ - Bucket: aws.String("bucket"), - Key: aws.String("dest"), - Body: bytes.NewReader(make([]byte, 1024*1024*5)), - }) - - err := r.Sign() - - assert.NoError(t, err) - assert.Equal(t, "100-Continue", r.HTTPRequest.Header.Get("Expect")) -} - -func TestAdd100Continue_SkipDisabled(t *testing.T) { - svc := s3.New(unit.Session, aws.NewConfig().WithS3Disable100Continue(true)) - r, _ := svc.PutObjectRequest(&s3.PutObjectInput{ - Bucket: aws.String("bucket"), - Key: aws.String("dest"), - Body: bytes.NewReader(make([]byte, 1024*1024*5)), - }) - - err := r.Sign() - - assert.NoError(t, err) - assert.Empty(t, r.HTTPRequest.Header.Get("Expect")) -} - -func TestAdd100Continue_SkipNonPUT(t *testing.T) { - svc := s3.New(unit.Session) - r, _ := svc.GetObjectRequest(&s3.GetObjectInput{ - Bucket: aws.String("bucket"), - Key: aws.String("dest"), - }) - - err := r.Sign() - - assert.NoError(t, err) - assert.Empty(t, r.HTTPRequest.Header.Get("Expect")) -} - -func TestAdd100Continue_SkipTooSmall(t *testing.T) { - svc := s3.New(unit.Session) - r, _ := svc.PutObjectRequest(&s3.PutObjectInput{ - Bucket: aws.String("bucket"), - Key: aws.String("dest"), - Body: bytes.NewReader(make([]byte, 1024*1024*1)), - }) - - err := r.Sign() - - assert.NoError(t, err) - assert.Empty(t, r.HTTPRequest.Header.Get("Expect")) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/service.go b/vendor/github.com/aws/aws-sdk-go/service/s3/service.go deleted file mode 100644 index 5833952a..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/service.go +++ /dev/null @@ -1,86 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package s3 - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/restxml" -) - -// S3 is a client for Amazon S3. -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type S3 struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "s3" - -// New creates a new instance of the S3 client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a S3 client from just a session. -// svc := s3.New(mySession) -// -// // Create a S3 client with additional configuration -// svc := s3.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *S3 { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *S3 { - svc := &S3{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2006-03-01", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(restxml.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(restxml.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(restxml.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(restxml.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a S3 operation and runs any -// custom request initialization. -func (c *S3) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/sse.go b/vendor/github.com/aws/aws-sdk-go/service/s3/sse.go deleted file mode 100644 index 268ea2fb..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/sse.go +++ /dev/null @@ -1,44 +0,0 @@ -package s3 - -import ( - "crypto/md5" - "encoding/base64" - - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -var errSSERequiresSSL = awserr.New("ConfigError", "cannot send SSE keys over HTTP.", nil) - -func validateSSERequiresSSL(r *request.Request) { - if r.HTTPRequest.URL.Scheme != "https" { - p, _ := awsutil.ValuesAtPath(r.Params, "SSECustomerKey||CopySourceSSECustomerKey") - if len(p) > 0 { - r.Error = errSSERequiresSSL - } - } -} - -func computeSSEKeys(r *request.Request) { - headers := []string{ - "x-amz-server-side-encryption-customer-key", - "x-amz-copy-source-server-side-encryption-customer-key", - } - - for _, h := range headers { - md5h := h + "-md5" - if key := r.HTTPRequest.Header.Get(h); key != "" { - // Base64-encode the value - b64v := base64.StdEncoding.EncodeToString([]byte(key)) - r.HTTPRequest.Header.Set(h, b64v) - - // Add MD5 if it wasn't computed - if r.HTTPRequest.Header.Get(md5h) == "" { - sum := md5.Sum([]byte(key)) - b64sum := base64.StdEncoding.EncodeToString(sum[:]) - r.HTTPRequest.Header.Set(md5h, b64sum) - } - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/sse_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/sse_test.go deleted file mode 100644 index 5f1ca64b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/sse_test.go +++ /dev/null @@ -1,79 +0,0 @@ -package s3_test - -import ( - "testing" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" - "github.com/stretchr/testify/assert" -) - -func TestSSECustomerKeyOverHTTPError(t *testing.T) { - s := s3.New(unit.Session, &aws.Config{DisableSSL: aws.Bool(true)}) - req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{ - Bucket: aws.String("bucket"), - CopySource: aws.String("bucket/source"), - Key: aws.String("dest"), - SSECustomerKey: aws.String("key"), - }) - err := req.Build() - - assert.Error(t, err) - assert.Equal(t, "ConfigError", err.(awserr.Error).Code()) - assert.Contains(t, err.(awserr.Error).Message(), "cannot send SSE keys over HTTP") -} - -func TestCopySourceSSECustomerKeyOverHTTPError(t *testing.T) { - s := s3.New(unit.Session, &aws.Config{DisableSSL: aws.Bool(true)}) - req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{ - Bucket: aws.String("bucket"), - CopySource: aws.String("bucket/source"), - Key: aws.String("dest"), - CopySourceSSECustomerKey: aws.String("key"), - }) - err := req.Build() - - assert.Error(t, err) - assert.Equal(t, "ConfigError", err.(awserr.Error).Code()) - assert.Contains(t, err.(awserr.Error).Message(), "cannot send SSE keys over HTTP") -} - -func TestComputeSSEKeys(t *testing.T) { - s := s3.New(unit.Session) - req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{ - Bucket: aws.String("bucket"), - CopySource: aws.String("bucket/source"), - Key: aws.String("dest"), - SSECustomerKey: aws.String("key"), - CopySourceSSECustomerKey: aws.String("key"), - }) - err := req.Build() - - assert.NoError(t, err) - assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key")) - assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key")) - assert.Equal(t, "PG4LipwVIkqCKLmpjKFTHQ==", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key-md5")) - assert.Equal(t, "PG4LipwVIkqCKLmpjKFTHQ==", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key-md5")) -} - -func TestComputeSSEKeysShortcircuit(t *testing.T) { - s := s3.New(unit.Session) - req, _ := s.CopyObjectRequest(&s3.CopyObjectInput{ - Bucket: aws.String("bucket"), - CopySource: aws.String("bucket/source"), - Key: aws.String("dest"), - SSECustomerKey: aws.String("key"), - CopySourceSSECustomerKey: aws.String("key"), - SSECustomerKeyMD5: aws.String("MD5"), - CopySourceSSECustomerKeyMD5: aws.String("MD5"), - }) - err := req.Build() - - assert.NoError(t, err) - assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key")) - assert.Equal(t, "a2V5", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key")) - assert.Equal(t, "MD5", req.HTTPRequest.Header.Get("x-amz-server-side-encryption-customer-key-md5")) - assert.Equal(t, "MD5", req.HTTPRequest.Header.Get("x-amz-copy-source-server-side-encryption-customer-key-md5")) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error.go b/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error.go deleted file mode 100644 index ce65fcda..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error.go +++ /dev/null @@ -1,36 +0,0 @@ -package s3 - -import ( - "bytes" - "io/ioutil" - "net/http" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" -) - -func copyMultipartStatusOKUnmarhsalError(r *request.Request) { - b, err := ioutil.ReadAll(r.HTTPResponse.Body) - if err != nil { - r.Error = awserr.New("SerializationError", "unable to read response body", err) - return - } - body := bytes.NewReader(b) - r.HTTPResponse.Body = aws.ReadSeekCloser(body) - defer r.HTTPResponse.Body.(aws.ReaderSeekerCloser).Seek(0, 0) - - if body.Len() == 0 { - // If there is no body don't attempt to parse the body. - return - } - - unmarshalError(r) - if err, ok := r.Error.(awserr.Error); ok && err != nil { - if err.Code() == "SerializationError" { - r.Error = nil - return - } - r.HTTPResponse.StatusCode = http.StatusServiceUnavailable - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error_test.go deleted file mode 100644 index f508cd15..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error_test.go +++ /dev/null @@ -1,130 +0,0 @@ -package s3_test - -import ( - "fmt" - "net/http" - "net/http/httptest" - "testing" - "time" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" -) - -const errMsg = `ErrorCodemessage bodyrequestIDhostID=` - -var lastModifiedTime = time.Date(2009, 11, 23, 0, 0, 0, 0, time.UTC) - -func TestCopyObjectNoError(t *testing.T) { - const successMsg = ` - -2009-11-23T0:00:00Z"1da64c7f13d1e8dbeaea40b905fd586c"` - - res, err := newCopyTestSvc(successMsg).CopyObject(&s3.CopyObjectInput{ - Bucket: aws.String("bucketname"), - CopySource: aws.String("bucketname/exists.txt"), - Key: aws.String("destination.txt"), - }) - - require.NoError(t, err) - - assert.Equal(t, fmt.Sprintf(`%q`, "1da64c7f13d1e8dbeaea40b905fd586c"), *res.CopyObjectResult.ETag) - assert.Equal(t, lastModifiedTime, *res.CopyObjectResult.LastModified) -} - -func TestCopyObjectError(t *testing.T) { - _, err := newCopyTestSvc(errMsg).CopyObject(&s3.CopyObjectInput{ - Bucket: aws.String("bucketname"), - CopySource: aws.String("bucketname/doesnotexist.txt"), - Key: aws.String("destination.txt"), - }) - - require.Error(t, err) - e := err.(awserr.Error) - - assert.Equal(t, "ErrorCode", e.Code()) - assert.Equal(t, "message body", e.Message()) -} - -func TestUploadPartCopySuccess(t *testing.T) { - const successMsg = ` - -2009-11-23T0:00:00Z"1da64c7f13d1e8dbeaea40b905fd586c"` - - res, err := newCopyTestSvc(successMsg).UploadPartCopy(&s3.UploadPartCopyInput{ - Bucket: aws.String("bucketname"), - CopySource: aws.String("bucketname/doesnotexist.txt"), - Key: aws.String("destination.txt"), - PartNumber: aws.Int64(0), - UploadId: aws.String("uploadID"), - }) - - require.NoError(t, err) - - assert.Equal(t, fmt.Sprintf(`%q`, "1da64c7f13d1e8dbeaea40b905fd586c"), *res.CopyPartResult.ETag) - assert.Equal(t, lastModifiedTime, *res.CopyPartResult.LastModified) -} - -func TestUploadPartCopyError(t *testing.T) { - _, err := newCopyTestSvc(errMsg).UploadPartCopy(&s3.UploadPartCopyInput{ - Bucket: aws.String("bucketname"), - CopySource: aws.String("bucketname/doesnotexist.txt"), - Key: aws.String("destination.txt"), - PartNumber: aws.Int64(0), - UploadId: aws.String("uploadID"), - }) - - require.Error(t, err) - e := err.(awserr.Error) - - assert.Equal(t, "ErrorCode", e.Code()) - assert.Equal(t, "message body", e.Message()) -} - -func TestCompleteMultipartUploadSuccess(t *testing.T) { - const successMsg = ` - -locationNamebucketNamekeyName"etagVal"` - res, err := newCopyTestSvc(successMsg).CompleteMultipartUpload(&s3.CompleteMultipartUploadInput{ - Bucket: aws.String("bucketname"), - Key: aws.String("key"), - UploadId: aws.String("uploadID"), - }) - - require.NoError(t, err) - - assert.Equal(t, `"etagVal"`, *res.ETag) - assert.Equal(t, "bucketName", *res.Bucket) - assert.Equal(t, "keyName", *res.Key) - assert.Equal(t, "locationName", *res.Location) -} - -func TestCompleteMultipartUploadError(t *testing.T) { - _, err := newCopyTestSvc(errMsg).CompleteMultipartUpload(&s3.CompleteMultipartUploadInput{ - Bucket: aws.String("bucketname"), - Key: aws.String("key"), - UploadId: aws.String("uploadID"), - }) - - require.Error(t, err) - e := err.(awserr.Error) - - assert.Equal(t, "ErrorCode", e.Code()) - assert.Equal(t, "message body", e.Message()) -} - -func newCopyTestSvc(errMsg string) *s3.S3 { - server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { - http.Error(w, errMsg, http.StatusOK) - })) - return s3.New(unit.Session, aws.NewConfig(). - WithEndpoint(server.URL). - WithDisableSSL(true). - WithMaxRetries(0). - WithS3ForcePathStyle(true)) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error.go b/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error.go deleted file mode 100644 index ed91c587..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error.go +++ /dev/null @@ -1,65 +0,0 @@ -package s3 - -import ( - "encoding/xml" - "fmt" - "io" - "io/ioutil" - "net/http" - "strings" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" -) - -type xmlErrorResponse struct { - XMLName xml.Name `xml:"Error"` - Code string `xml:"Code"` - Message string `xml:"Message"` -} - -func unmarshalError(r *request.Request) { - defer r.HTTPResponse.Body.Close() - defer io.Copy(ioutil.Discard, r.HTTPResponse.Body) - - // Bucket exists in a different region, and request needs - // to be made to the correct region. - if r.HTTPResponse.StatusCode == http.StatusMovedPermanently { - r.Error = awserr.NewRequestFailure( - awserr.New("BucketRegionError", - fmt.Sprintf("incorrect region, the bucket is not in '%s' region", - aws.StringValue(r.Config.Region)), - nil), - r.HTTPResponse.StatusCode, - r.RequestID, - ) - return - } - - var errCode, errMsg string - - // Attempt to parse error from body if it is known - resp := &xmlErrorResponse{} - err := xml.NewDecoder(r.HTTPResponse.Body).Decode(resp) - if err != nil && err != io.EOF { - errCode = "SerializationError" - errMsg = "failed to decode S3 XML error response" - } else { - errCode = resp.Code - errMsg = resp.Message - } - - // Fallback to status code converted to message if still no error code - if len(errCode) == 0 { - statusText := http.StatusText(r.HTTPResponse.StatusCode) - errCode = strings.Replace(statusText, " ", "", -1) - errMsg = statusText - } - - r.Error = awserr.NewRequestFailure( - awserr.New(errCode, errMsg, nil), - r.HTTPResponse.StatusCode, - r.RequestID, - ) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_leak_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_leak_test.go deleted file mode 100644 index 236d154d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_leak_test.go +++ /dev/null @@ -1,34 +0,0 @@ -package s3 - -import ( - "net/http" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting" -) - -func TestUnmarhsalErrorLeak(t *testing.T) { - req := &request.Request{ - HTTPRequest: &http.Request{ - Header: make(http.Header), - Body: &awstesting.ReadCloser{Size: 2048}, - }, - } - req.HTTPResponse = &http.Response{ - Body: &awstesting.ReadCloser{Size: 2048}, - Header: http.Header{ - "X-Amzn-Requestid": []string{"1"}, - }, - StatusCode: http.StatusOK, - } - - reader := req.HTTPResponse.Body.(*awstesting.ReadCloser) - unmarshalError(req) - - assert.NotNil(t, req.Error) - assert.Equal(t, reader.Closed, true) - assert.Equal(t, reader.Size, 0) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_test.go b/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_test.go deleted file mode 100644 index 7ee89d1e..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_test.go +++ /dev/null @@ -1,196 +0,0 @@ -package s3_test - -import ( - "bytes" - "fmt" - "io/ioutil" - "net/http" - "strings" - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/awserr" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/s3" -) - -type testErrorCase struct { - RespFn func() *http.Response - ReqID string - Code, Msg string - WithoutStatusMsg bool -} - -var testUnmarshalCases = []testErrorCase{ - { - RespFn: func() *http.Response { - return &http.Response{ - StatusCode: 301, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(bytes.NewReader(nil)), - ContentLength: -1, - } - }, - ReqID: "abc123", - Code: "BucketRegionError", Msg: "incorrect region, the bucket is not in 'mock-region' region", - }, - { - RespFn: func() *http.Response { - return &http.Response{ - StatusCode: 403, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(bytes.NewReader(nil)), - ContentLength: 0, - } - }, - ReqID: "abc123", - Code: "Forbidden", Msg: "Forbidden", - }, - { - RespFn: func() *http.Response { - return &http.Response{ - StatusCode: 400, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(bytes.NewReader(nil)), - ContentLength: 0, - } - }, - ReqID: "abc123", - Code: "BadRequest", Msg: "Bad Request", - }, - { - RespFn: func() *http.Response { - return &http.Response{ - StatusCode: 404, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(bytes.NewReader(nil)), - ContentLength: 0, - } - }, - ReqID: "abc123", - Code: "NotFound", Msg: "Not Found", - }, - { - RespFn: func() *http.Response { - body := `SomeExceptionException message` - return &http.Response{ - StatusCode: 500, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(strings.NewReader(body)), - ContentLength: int64(len(body)), - } - }, - ReqID: "abc123", - Code: "SomeException", Msg: "Exception message", - }, - { - RespFn: func() *http.Response { - return &http.Response{ - StatusCode: 404, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(bytes.NewReader(nil)), - ContentLength: -1, - } - }, - ReqID: "abc123", - Code: "NotFound", Msg: "Not Found", WithoutStatusMsg: true, - }, - { - RespFn: func() *http.Response { - return &http.Response{ - StatusCode: 404, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(bytes.NewReader(nil)), - ContentLength: -1, - } - }, - ReqID: "abc123", - Code: "NotFound", Msg: "Not Found", - }, -} - -func TestUnmarshalError(t *testing.T) { - for _, c := range testUnmarshalCases { - s := s3.New(unit.Session) - s.Handlers.Send.Clear() - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = c.RespFn() - if !c.WithoutStatusMsg { - r.HTTPResponse.Status = fmt.Sprintf("%d%s", - r.HTTPResponse.StatusCode, - http.StatusText(r.HTTPResponse.StatusCode)) - } - }) - _, err := s.PutBucketAcl(&s3.PutBucketAclInput{ - Bucket: aws.String("bucket"), ACL: aws.String("public-read"), - }) - - assert.Error(t, err) - assert.Equal(t, c.Code, err.(awserr.Error).Code()) - assert.Equal(t, c.Msg, err.(awserr.Error).Message()) - assert.Equal(t, c.ReqID, err.(awserr.RequestFailure).RequestID()) - } -} - -const completeMultiResp = ` -163 - - -https://bucket.s3-us-west-2.amazonaws.com/keybucketkey"a7d414b9133d6483d9a1c4e04e856e3b-2" -0 -` - -func Test200NoErrorUnmarshalError(t *testing.T) { - s := s3.New(unit.Session) - s.Handlers.Send.Clear() - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &http.Response{ - StatusCode: 200, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(strings.NewReader(completeMultiResp)), - ContentLength: -1, - } - r.HTTPResponse.Status = http.StatusText(r.HTTPResponse.StatusCode) - }) - _, err := s.CompleteMultipartUpload(&s3.CompleteMultipartUploadInput{ - Bucket: aws.String("bucket"), Key: aws.String("key"), - UploadId: aws.String("id"), - MultipartUpload: &s3.CompletedMultipartUpload{Parts: []*s3.CompletedPart{ - {ETag: aws.String("etag"), PartNumber: aws.Int64(1)}, - }}, - }) - - assert.NoError(t, err) -} - -const completeMultiErrResp = `SomeExceptionException message` - -func Test200WithErrorUnmarshalError(t *testing.T) { - s := s3.New(unit.Session) - s.Handlers.Send.Clear() - s.Handlers.Send.PushBack(func(r *request.Request) { - r.HTTPResponse = &http.Response{ - StatusCode: 200, - Header: http.Header{"X-Amz-Request-Id": []string{"abc123"}}, - Body: ioutil.NopCloser(strings.NewReader(completeMultiErrResp)), - ContentLength: -1, - } - r.HTTPResponse.Status = http.StatusText(r.HTTPResponse.StatusCode) - }) - _, err := s.CompleteMultipartUpload(&s3.CompleteMultipartUploadInput{ - Bucket: aws.String("bucket"), Key: aws.String("key"), - UploadId: aws.String("id"), - MultipartUpload: &s3.CompletedMultipartUpload{Parts: []*s3.CompletedPart{ - {ETag: aws.String("etag"), PartNumber: aws.Int64(1)}, - }}, - }) - - assert.Error(t, err) - - assert.Equal(t, "SomeException", err.(awserr.Error).Code()) - assert.Equal(t, "Exception message", err.(awserr.Error).Message()) - assert.Equal(t, "abc123", err.(awserr.RequestFailure).RequestID()) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go b/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go deleted file mode 100644 index 5e16be4b..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go +++ /dev/null @@ -1,139 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package s3 - -import ( - "github.com/aws/aws-sdk-go/private/waiter" -) - -// WaitUntilBucketExists uses the Amazon S3 API operation -// HeadBucket to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *S3) WaitUntilBucketExists(input *HeadBucketInput) error { - waiterCfg := waiter.Config{ - Operation: "HeadBucket", - Delay: 5, - MaxAttempts: 20, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 200, - }, - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 301, - }, - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 403, - }, - { - State: "retry", - Matcher: "status", - Argument: "", - Expected: 404, - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilBucketNotExists uses the Amazon S3 API operation -// HeadBucket to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *S3) WaitUntilBucketNotExists(input *HeadBucketInput) error { - waiterCfg := waiter.Config{ - Operation: "HeadBucket", - Delay: 5, - MaxAttempts: 20, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 404, - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilObjectExists uses the Amazon S3 API operation -// HeadObject to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *S3) WaitUntilObjectExists(input *HeadObjectInput) error { - waiterCfg := waiter.Config{ - Operation: "HeadObject", - Delay: 5, - MaxAttempts: 20, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 200, - }, - { - State: "retry", - Matcher: "status", - Argument: "", - Expected: 404, - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} - -// WaitUntilObjectNotExists uses the Amazon S3 API operation -// HeadObject to wait for a condition to be met before returning. -// If the condition is not meet within the max attempt window an error will -// be returned. -func (c *S3) WaitUntilObjectNotExists(input *HeadObjectInput) error { - waiterCfg := waiter.Config{ - Operation: "HeadObject", - Delay: 5, - MaxAttempts: 20, - Acceptors: []waiter.WaitAcceptor{ - { - State: "success", - Matcher: "status", - Argument: "", - Expected: 404, - }, - }, - } - - w := waiter.Waiter{ - Client: c, - Input: input, - Config: waiterCfg, - } - return w.Wait() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/sts/api.go b/vendor/github.com/aws/aws-sdk-go/service/sts/api.go deleted file mode 100644 index d183fab8..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/sts/api.go +++ /dev/null @@ -1,1689 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -// Package sts provides a client for AWS Security Token Service. -package sts - -import ( - "time" - - "github.com/aws/aws-sdk-go/aws/awsutil" - "github.com/aws/aws-sdk-go/aws/request" -) - -const opAssumeRole = "AssumeRole" - -// AssumeRoleRequest generates a "aws/request.Request" representing the -// client's request for the AssumeRole operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssumeRole method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssumeRoleRequest method. -// req, resp := client.AssumeRoleRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *STS) AssumeRoleRequest(input *AssumeRoleInput) (req *request.Request, output *AssumeRoleOutput) { - op := &request.Operation{ - Name: opAssumeRole, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AssumeRoleInput{} - } - - req = c.newRequest(op, input, output) - output = &AssumeRoleOutput{} - req.Data = output - return -} - -// Returns a set of temporary security credentials (consisting of an access -// key ID, a secret access key, and a security token) that you can use to access -// AWS resources that you might not normally have access to. Typically, you -// use AssumeRole for cross-account access or federation. For a comparison of -// AssumeRole with the other APIs that produce temporary credentials, see Requesting -// Temporary Security Credentials (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) -// and Comparing the AWS STS APIs (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison) -// in the IAM User Guide. -// -// Important: You cannot call AssumeRole by using AWS root account credentials; -// access is denied. You must use credentials for an IAM user or an IAM role -// to call AssumeRole. -// -// For cross-account access, imagine that you own multiple accounts and need -// to access resources in each account. You could create long-term credentials -// in each account to access those resources. However, managing all those credentials -// and remembering which one can access which account can be time consuming. -// Instead, you can create one set of long-term credentials in one account and -// then use temporary security credentials to access all the other accounts -// by assuming roles in those accounts. For more information about roles, see -// IAM Roles (Delegation and Federation) (http://docs.aws.amazon.com/IAM/latest/UserGuide/roles-toplevel.html) -// in the IAM User Guide. -// -// For federation, you can, for example, grant single sign-on access to the -// AWS Management Console. If you already have an identity and authentication -// system in your corporate network, you don't have to recreate user identities -// in AWS in order to grant those user identities access to AWS. Instead, after -// a user has been authenticated, you call AssumeRole (and specify the role -// with the appropriate permissions) to get temporary security credentials for -// that user. With those temporary security credentials, you construct a sign-in -// URL that users can use to access the console. For more information, see Common -// Scenarios for Temporary Credentials (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html#sts-introduction) -// in the IAM User Guide. -// -// The temporary security credentials are valid for the duration that you specified -// when calling AssumeRole, which can be from 900 seconds (15 minutes) to a -// maximum of 3600 seconds (1 hour). The default is 1 hour. -// -// The temporary security credentials created by AssumeRole can be used to -// make API calls to any AWS service with the following exception: you cannot -// call the STS service's GetFederationToken or GetSessionToken APIs. -// -// Optionally, you can pass an IAM access policy to this operation. If you -// choose not to pass a policy, the temporary security credentials that are -// returned by the operation have the permissions that are defined in the access -// policy of the role that is being assumed. If you pass a policy to this operation, -// the temporary security credentials that are returned by the operation have -// the permissions that are allowed by both the access policy of the role that -// is being assumed, and the policy that you pass. This gives you a way to -// further restrict the permissions for the resulting temporary security credentials. -// You cannot use the passed policy to grant permissions that are in excess -// of those allowed by the access policy of the role that is being assumed. -// For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, -// and AssumeRoleWithWebIdentity (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_assumerole.html) -// in the IAM User Guide. -// -// To assume a role, your AWS account must be trusted by the role. The trust -// relationship is defined in the role's trust policy when the role is created. -// That trust policy states which accounts are allowed to delegate access to -// this account's role. -// -// The user who wants to access the role must also have permissions delegated -// from the role's administrator. If the user is in a different account than -// the role, then the user's administrator must attach a policy that allows -// the user to call AssumeRole on the ARN of the role in the other account. -// If the user is in the same account as the role, then you can either attach -// a policy to the user (identical to the previous different account user), -// or you can add the user as a principal directly in the role's trust policy -// -// Using MFA with AssumeRole -// -// You can optionally include multi-factor authentication (MFA) information -// when you call AssumeRole. This is useful for cross-account scenarios in which -// you want to make sure that the user who is assuming the role has been authenticated -// using an AWS MFA device. In that scenario, the trust policy of the role being -// assumed includes a condition that tests for MFA authentication; if the caller -// does not include valid MFA information, the request to assume the role is -// denied. The condition in a trust policy that tests for MFA authentication -// might look like the following example. -// -// "Condition": {"Bool": {"aws:MultiFactorAuthPresent": true}} -// -// For more information, see Configuring MFA-Protected API Access (http://docs.aws.amazon.com/IAM/latest/UserGuide/MFAProtectedAPI.html) -// in the IAM User Guide guide. -// -// To use MFA with AssumeRole, you pass values for the SerialNumber and TokenCode -// parameters. The SerialNumber value identifies the user's hardware or virtual -// MFA device. The TokenCode is the time-based one-time password (TOTP) that -// the MFA devices produces. -func (c *STS) AssumeRole(input *AssumeRoleInput) (*AssumeRoleOutput, error) { - req, out := c.AssumeRoleRequest(input) - err := req.Send() - return out, err -} - -const opAssumeRoleWithSAML = "AssumeRoleWithSAML" - -// AssumeRoleWithSAMLRequest generates a "aws/request.Request" representing the -// client's request for the AssumeRoleWithSAML operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssumeRoleWithSAML method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssumeRoleWithSAMLRequest method. -// req, resp := client.AssumeRoleWithSAMLRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *STS) AssumeRoleWithSAMLRequest(input *AssumeRoleWithSAMLInput) (req *request.Request, output *AssumeRoleWithSAMLOutput) { - op := &request.Operation{ - Name: opAssumeRoleWithSAML, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AssumeRoleWithSAMLInput{} - } - - req = c.newRequest(op, input, output) - output = &AssumeRoleWithSAMLOutput{} - req.Data = output - return -} - -// Returns a set of temporary security credentials for users who have been authenticated -// via a SAML authentication response. This operation provides a mechanism for -// tying an enterprise identity store or directory to role-based AWS access -// without user-specific credentials or configuration. For a comparison of AssumeRoleWithSAML -// with the other APIs that produce temporary credentials, see Requesting Temporary -// Security Credentials (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) -// and Comparing the AWS STS APIs (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison) -// in the IAM User Guide. -// -// The temporary security credentials returned by this operation consist of -// an access key ID, a secret access key, and a security token. Applications -// can use these temporary security credentials to sign calls to AWS services. -// -// The temporary security credentials are valid for the duration that you specified -// when calling AssumeRole, or until the time specified in the SAML authentication -// response's SessionNotOnOrAfter value, whichever is shorter. The duration -// can be from 900 seconds (15 minutes) to a maximum of 3600 seconds (1 hour). -// The default is 1 hour. -// -// The temporary security credentials created by AssumeRoleWithSAML can be -// used to make API calls to any AWS service with the following exception: you -// cannot call the STS service's GetFederationToken or GetSessionToken APIs. -// -// Optionally, you can pass an IAM access policy to this operation. If you -// choose not to pass a policy, the temporary security credentials that are -// returned by the operation have the permissions that are defined in the access -// policy of the role that is being assumed. If you pass a policy to this operation, -// the temporary security credentials that are returned by the operation have -// the permissions that are allowed by the intersection of both the access policy -// of the role that is being assumed, and the policy that you pass. This means -// that both policies must grant the permission for the action to be allowed. -// This gives you a way to further restrict the permissions for the resulting -// temporary security credentials. You cannot use the passed policy to grant -// permissions that are in excess of those allowed by the access policy of the -// role that is being assumed. For more information, see Permissions for AssumeRole, -// AssumeRoleWithSAML, and AssumeRoleWithWebIdentity (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_assumerole.html) -// in the IAM User Guide. -// -// Before your application can call AssumeRoleWithSAML, you must configure -// your SAML identity provider (IdP) to issue the claims required by AWS. Additionally, -// you must use AWS Identity and Access Management (IAM) to create a SAML provider -// entity in your AWS account that represents your identity provider, and create -// an IAM role that specifies this SAML provider in its trust policy. -// -// Calling AssumeRoleWithSAML does not require the use of AWS security credentials. -// The identity of the caller is validated by using keys in the metadata document -// that is uploaded for the SAML provider entity for your identity provider. -// -// Calling AssumeRoleWithSAML can result in an entry in your AWS CloudTrail -// logs. The entry includes the value in the NameID element of the SAML assertion. -// We recommend that you use a NameIDType that is not associated with any personally -// identifiable information (PII). For example, you could instead use the Persistent -// Identifier (urn:oasis:names:tc:SAML:2.0:nameid-format:persistent). -// -// For more information, see the following resources: -// -// About SAML 2.0-based Federation (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_saml.html) -// in the IAM User Guide. -// -// Creating SAML Identity Providers (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml.html) -// in the IAM User Guide. -// -// Configuring a Relying Party and Claims (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_saml_relying-party.html) -// in the IAM User Guide. -// -// Creating a Role for SAML 2.0 Federation (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-idp_saml.html) -// in the IAM User Guide. -func (c *STS) AssumeRoleWithSAML(input *AssumeRoleWithSAMLInput) (*AssumeRoleWithSAMLOutput, error) { - req, out := c.AssumeRoleWithSAMLRequest(input) - err := req.Send() - return out, err -} - -const opAssumeRoleWithWebIdentity = "AssumeRoleWithWebIdentity" - -// AssumeRoleWithWebIdentityRequest generates a "aws/request.Request" representing the -// client's request for the AssumeRoleWithWebIdentity operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the AssumeRoleWithWebIdentity method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the AssumeRoleWithWebIdentityRequest method. -// req, resp := client.AssumeRoleWithWebIdentityRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *STS) AssumeRoleWithWebIdentityRequest(input *AssumeRoleWithWebIdentityInput) (req *request.Request, output *AssumeRoleWithWebIdentityOutput) { - op := &request.Operation{ - Name: opAssumeRoleWithWebIdentity, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &AssumeRoleWithWebIdentityInput{} - } - - req = c.newRequest(op, input, output) - output = &AssumeRoleWithWebIdentityOutput{} - req.Data = output - return -} - -// Returns a set of temporary security credentials for users who have been authenticated -// in a mobile or web application with a web identity provider, such as Amazon -// Cognito, Login with Amazon, Facebook, Google, or any OpenID Connect-compatible -// identity provider. -// -// For mobile applications, we recommend that you use Amazon Cognito. You -// can use Amazon Cognito with the AWS SDK for iOS (http://aws.amazon.com/sdkforios/) -// and the AWS SDK for Android (http://aws.amazon.com/sdkforandroid/) to uniquely -// identify a user and supply the user with a consistent identity throughout -// the lifetime of an application. -// -// To learn more about Amazon Cognito, see Amazon Cognito Overview (http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-auth.html#d0e840) -// in the AWS SDK for Android Developer Guide guide and Amazon Cognito Overview -// (http://docs.aws.amazon.com/mobile/sdkforios/developerguide/cognito-auth.html#d0e664) -// in the AWS SDK for iOS Developer Guide. -// -// Calling AssumeRoleWithWebIdentity does not require the use of AWS security -// credentials. Therefore, you can distribute an application (for example, on -// mobile devices) that requests temporary security credentials without including -// long-term AWS credentials in the application, and without deploying server-based -// proxy services that use long-term AWS credentials. Instead, the identity -// of the caller is validated by using a token from the web identity provider. -// For a comparison of AssumeRoleWithWebIdentity with the other APIs that produce -// temporary credentials, see Requesting Temporary Security Credentials (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) -// and Comparing the AWS STS APIs (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison) -// in the IAM User Guide. -// -// The temporary security credentials returned by this API consist of an access -// key ID, a secret access key, and a security token. Applications can use these -// temporary security credentials to sign calls to AWS service APIs. -// -// The credentials are valid for the duration that you specified when calling -// AssumeRoleWithWebIdentity, which can be from 900 seconds (15 minutes) to -// a maximum of 3600 seconds (1 hour). The default is 1 hour. -// -// The temporary security credentials created by AssumeRoleWithWebIdentity -// can be used to make API calls to any AWS service with the following exception: -// you cannot call the STS service's GetFederationToken or GetSessionToken APIs. -// -// Optionally, you can pass an IAM access policy to this operation. If you -// choose not to pass a policy, the temporary security credentials that are -// returned by the operation have the permissions that are defined in the access -// policy of the role that is being assumed. If you pass a policy to this operation, -// the temporary security credentials that are returned by the operation have -// the permissions that are allowed by both the access policy of the role that -// is being assumed, and the policy that you pass. This gives you a way to -// further restrict the permissions for the resulting temporary security credentials. -// You cannot use the passed policy to grant permissions that are in excess -// of those allowed by the access policy of the role that is being assumed. -// For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, -// and AssumeRoleWithWebIdentity (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_assumerole.html) -// in the IAM User Guide. -// -// Before your application can call AssumeRoleWithWebIdentity, you must have -// an identity token from a supported identity provider and create a role that -// the application can assume. The role that your application assumes must trust -// the identity provider that is associated with the identity token. In other -// words, the identity provider must be specified in the role's trust policy. -// -// Calling AssumeRoleWithWebIdentity can result in an entry in your AWS CloudTrail -// logs. The entry includes the Subject (http://openid.net/specs/openid-connect-core-1_0.html#Claims) -// of the provided Web Identity Token. We recommend that you avoid using any -// personally identifiable information (PII) in this field. For example, you -// could instead use a GUID or a pairwise identifier, as suggested in the OIDC -// specification (http://openid.net/specs/openid-connect-core-1_0.html#SubjectIDTypes). -// -// For more information about how to use web identity federation and the AssumeRoleWithWebIdentity -// API, see the following resources: -// -// Using Web Identity Federation APIs for Mobile Apps (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_oidc_manual) -// and Federation Through a Web-based Identity Provider (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity). -// -// Web Identity Federation Playground (https://web-identity-federation-playground.s3.amazonaws.com/index.html). -// This interactive website lets you walk through the process of authenticating -// via Login with Amazon, Facebook, or Google, getting temporary security credentials, -// and then using those credentials to make a request to AWS. -// -// AWS SDK for iOS (http://aws.amazon.com/sdkforios/) and AWS SDK for Android -// (http://aws.amazon.com/sdkforandroid/). These toolkits contain sample apps -// that show how to invoke the identity providers, and then how to use the information -// from these providers to get and use temporary security credentials. -// -// Web Identity Federation with Mobile Applications (http://aws.amazon.com/articles/4617974389850313). -// This article discusses web identity federation and shows an example of how -// to use web identity federation to get access to content in Amazon S3. -func (c *STS) AssumeRoleWithWebIdentity(input *AssumeRoleWithWebIdentityInput) (*AssumeRoleWithWebIdentityOutput, error) { - req, out := c.AssumeRoleWithWebIdentityRequest(input) - err := req.Send() - return out, err -} - -const opDecodeAuthorizationMessage = "DecodeAuthorizationMessage" - -// DecodeAuthorizationMessageRequest generates a "aws/request.Request" representing the -// client's request for the DecodeAuthorizationMessage operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the DecodeAuthorizationMessage method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the DecodeAuthorizationMessageRequest method. -// req, resp := client.DecodeAuthorizationMessageRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *STS) DecodeAuthorizationMessageRequest(input *DecodeAuthorizationMessageInput) (req *request.Request, output *DecodeAuthorizationMessageOutput) { - op := &request.Operation{ - Name: opDecodeAuthorizationMessage, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &DecodeAuthorizationMessageInput{} - } - - req = c.newRequest(op, input, output) - output = &DecodeAuthorizationMessageOutput{} - req.Data = output - return -} - -// Decodes additional information about the authorization status of a request -// from an encoded message returned in response to an AWS request. -// -// For example, if a user is not authorized to perform an action that he or -// she has requested, the request returns a Client.UnauthorizedOperation response -// (an HTTP 403 response). Some AWS actions additionally return an encoded message -// that can provide details about this authorization failure. -// -// Only certain AWS actions return an encoded authorization message. The documentation -// for an individual action indicates whether that action returns an encoded -// message in addition to returning an HTTP code. -// -// The message is encoded because the details of the authorization status -// can constitute privileged information that the user who requested the action -// should not see. To decode an authorization status message, a user must be -// granted permissions via an IAM policy to request the DecodeAuthorizationMessage -// (sts:DecodeAuthorizationMessage) action. -// -// The decoded message includes the following type of information: -// -// Whether the request was denied due to an explicit deny or due to the absence -// of an explicit allow. For more information, see Determining Whether a Request -// is Allowed or Denied (http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_evaluation-logic.html#policy-eval-denyallow) -// in the IAM User Guide. -// -// The principal who made the request. -// -// The requested action. -// -// The requested resource. -// -// The values of condition keys in the context of the user's request. -func (c *STS) DecodeAuthorizationMessage(input *DecodeAuthorizationMessageInput) (*DecodeAuthorizationMessageOutput, error) { - req, out := c.DecodeAuthorizationMessageRequest(input) - err := req.Send() - return out, err -} - -const opGetCallerIdentity = "GetCallerIdentity" - -// GetCallerIdentityRequest generates a "aws/request.Request" representing the -// client's request for the GetCallerIdentity operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetCallerIdentity method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetCallerIdentityRequest method. -// req, resp := client.GetCallerIdentityRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *STS) GetCallerIdentityRequest(input *GetCallerIdentityInput) (req *request.Request, output *GetCallerIdentityOutput) { - op := &request.Operation{ - Name: opGetCallerIdentity, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetCallerIdentityInput{} - } - - req = c.newRequest(op, input, output) - output = &GetCallerIdentityOutput{} - req.Data = output - return -} - -// Returns details about the IAM identity whose credentials are used to call -// the API. -func (c *STS) GetCallerIdentity(input *GetCallerIdentityInput) (*GetCallerIdentityOutput, error) { - req, out := c.GetCallerIdentityRequest(input) - err := req.Send() - return out, err -} - -const opGetFederationToken = "GetFederationToken" - -// GetFederationTokenRequest generates a "aws/request.Request" representing the -// client's request for the GetFederationToken operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetFederationToken method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetFederationTokenRequest method. -// req, resp := client.GetFederationTokenRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *STS) GetFederationTokenRequest(input *GetFederationTokenInput) (req *request.Request, output *GetFederationTokenOutput) { - op := &request.Operation{ - Name: opGetFederationToken, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetFederationTokenInput{} - } - - req = c.newRequest(op, input, output) - output = &GetFederationTokenOutput{} - req.Data = output - return -} - -// Returns a set of temporary security credentials (consisting of an access -// key ID, a secret access key, and a security token) for a federated user. -// A typical use is in a proxy application that gets temporary security credentials -// on behalf of distributed applications inside a corporate network. Because -// you must call the GetFederationToken action using the long-term security -// credentials of an IAM user, this call is appropriate in contexts where those -// credentials can be safely stored, usually in a server-based application. -// For a comparison of GetFederationToken with the other APIs that produce temporary -// credentials, see Requesting Temporary Security Credentials (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) -// and Comparing the AWS STS APIs (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison) -// in the IAM User Guide. -// -// If you are creating a mobile-based or browser-based app that can authenticate -// users using a web identity provider like Login with Amazon, Facebook, Google, -// or an OpenID Connect-compatible identity provider, we recommend that you -// use Amazon Cognito (http://aws.amazon.com/cognito/) or AssumeRoleWithWebIdentity. -// For more information, see Federation Through a Web-based Identity Provider -// (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_assumerolewithwebidentity). -// -// The GetFederationToken action must be called by using the long-term AWS -// security credentials of an IAM user. You can also call GetFederationToken -// using the security credentials of an AWS root account, but we do not recommended -// it. Instead, we recommend that you create an IAM user for the purpose of -// the proxy application and then attach a policy to the IAM user that limits -// federated users to only the actions and resources that they need access to. -// For more information, see IAM Best Practices (http://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html) -// in the IAM User Guide. -// -// The temporary security credentials that are obtained by using the long-term -// credentials of an IAM user are valid for the specified duration, from 900 -// seconds (15 minutes) up to a maximium of 129600 seconds (36 hours). The default -// is 43200 seconds (12 hours). Temporary credentials that are obtained by using -// AWS root account credentials have a maximum duration of 3600 seconds (1 hour). -// -// The temporary security credentials created by GetFederationToken can be -// used to make API calls to any AWS service with the following exceptions: -// -// You cannot use these credentials to call any IAM APIs. -// -// You cannot call any STS APIs. -// -// Permissions -// -// The permissions for the temporary security credentials returned by GetFederationToken -// are determined by a combination of the following: -// -// The policy or policies that are attached to the IAM user whose credentials -// are used to call GetFederationToken. -// -// The policy that is passed as a parameter in the call. -// -// The passed policy is attached to the temporary security credentials that -// result from the GetFederationToken API call--that is, to the federated user. -// When the federated user makes an AWS request, AWS evaluates the policy attached -// to the federated user in combination with the policy or policies attached -// to the IAM user whose credentials were used to call GetFederationToken. AWS -// allows the federated user's request only when both the federated user and -// the IAM user are explicitly allowed to perform the requested action. The -// passed policy cannot grant more permissions than those that are defined in -// the IAM user policy. -// -// A typical use case is that the permissions of the IAM user whose credentials -// are used to call GetFederationToken are designed to allow access to all the -// actions and resources that any federated user will need. Then, for individual -// users, you pass a policy to the operation that scopes down the permissions -// to a level that's appropriate to that individual user, using a policy that -// allows only a subset of permissions that are granted to the IAM user. -// -// If you do not pass a policy, the resulting temporary security credentials -// have no effective permissions. The only exception is when the temporary security -// credentials are used to access a resource that has a resource-based policy -// that specifically allows the federated user to access the resource. -// -// For more information about how permissions work, see Permissions for GetFederationToken -// (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_getfederationtoken.html). -// For information about using GetFederationToken to create temporary security -// credentials, see GetFederationToken—Federation Through a Custom Identity -// Broker (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getfederationtoken). -func (c *STS) GetFederationToken(input *GetFederationTokenInput) (*GetFederationTokenOutput, error) { - req, out := c.GetFederationTokenRequest(input) - err := req.Send() - return out, err -} - -const opGetSessionToken = "GetSessionToken" - -// GetSessionTokenRequest generates a "aws/request.Request" representing the -// client's request for the GetSessionToken operation. The "output" return -// value can be used to capture response data after the request's "Send" method -// is called. -// -// Creating a request object using this method should be used when you want to inject -// custom logic into the request's lifecycle using a custom handler, or if you want to -// access properties on the request object before or after sending the request. If -// you just want the service response, call the GetSessionToken method directly -// instead. -// -// Note: You must call the "Send" method on the returned request object in order -// to execute the request. -// -// // Example sending a request using the GetSessionTokenRequest method. -// req, resp := client.GetSessionTokenRequest(params) -// -// err := req.Send() -// if err == nil { // resp is now filled -// fmt.Println(resp) -// } -// -func (c *STS) GetSessionTokenRequest(input *GetSessionTokenInput) (req *request.Request, output *GetSessionTokenOutput) { - op := &request.Operation{ - Name: opGetSessionToken, - HTTPMethod: "POST", - HTTPPath: "/", - } - - if input == nil { - input = &GetSessionTokenInput{} - } - - req = c.newRequest(op, input, output) - output = &GetSessionTokenOutput{} - req.Data = output - return -} - -// Returns a set of temporary credentials for an AWS account or IAM user. The -// credentials consist of an access key ID, a secret access key, and a security -// token. Typically, you use GetSessionToken if you want to use MFA to protect -// programmatic calls to specific AWS APIs like Amazon EC2 StopInstances. MFA-enabled -// IAM users would need to call GetSessionToken and submit an MFA code that -// is associated with their MFA device. Using the temporary security credentials -// that are returned from the call, IAM users can then make programmatic calls -// to APIs that require MFA authentication. If you do not supply a correct MFA -// code, then the API returns an access denied error. For a comparison of GetSessionToken -// with the other APIs that produce temporary credentials, see Requesting Temporary -// Security Credentials (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html) -// and Comparing the AWS STS APIs (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#stsapi_comparison) -// in the IAM User Guide. -// -// The GetSessionToken action must be called by using the long-term AWS security -// credentials of the AWS account or an IAM user. Credentials that are created -// by IAM users are valid for the duration that you specify, from 900 seconds -// (15 minutes) up to a maximum of 129600 seconds (36 hours), with a default -// of 43200 seconds (12 hours); credentials that are created by using account -// credentials can range from 900 seconds (15 minutes) up to a maximum of 3600 -// seconds (1 hour), with a default of 1 hour. -// -// The temporary security credentials created by GetSessionToken can be used -// to make API calls to any AWS service with the following exceptions: -// -// You cannot call any IAM APIs unless MFA authentication information is -// included in the request. -// -// You cannot call any STS API except AssumeRole. -// -// We recommend that you do not call GetSessionToken with root account credentials. -// Instead, follow our best practices (http://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#create-iam-users) -// by creating one or more IAM users, giving them the necessary permissions, -// and using IAM users for everyday interaction with AWS. -// -// The permissions associated with the temporary security credentials returned -// by GetSessionToken are based on the permissions associated with account or -// IAM user whose credentials are used to call the action. If GetSessionToken -// is called using root account credentials, the temporary credentials have -// root account permissions. Similarly, if GetSessionToken is called using the -// credentials of an IAM user, the temporary credentials have the same permissions -// as the IAM user. -// -// For more information about using GetSessionToken to create temporary credentials, -// go to Temporary Credentials for Users in Untrusted Environments (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_request.html#api_getsessiontoken) -// in the IAM User Guide. -func (c *STS) GetSessionToken(input *GetSessionTokenInput) (*GetSessionTokenOutput, error) { - req, out := c.GetSessionTokenRequest(input) - err := req.Send() - return out, err -} - -type AssumeRoleInput struct { - _ struct{} `type:"structure"` - - // The duration, in seconds, of the role session. The value can range from 900 - // seconds (15 minutes) to 3600 seconds (1 hour). By default, the value is set - // to 3600 seconds. - // - // This is separate from the duration of a console session that you might - // request using the returned credentials. The request to the federation endpoint - // for a console sign-in token takes a SessionDuration parameter that specifies - // the maximum length of the console session, separately from the DurationSeconds - // parameter on this API. For more information, see Creating a URL that Enables - // Federated Users to Access the AWS Management Console (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html) - // in the IAM User Guide. - DurationSeconds *int64 `min:"900" type:"integer"` - - // A unique identifier that is used by third parties when assuming roles in - // their customers' accounts. For each role that the third party can assume, - // they should instruct their customers to ensure the role's trust policy checks - // for the external ID that the third party generated. Each time the third party - // assumes the role, they should pass the customer's external ID. The external - // ID is useful in order to help third parties bind a role to the customer who - // created it. For more information about the external ID, see How to Use an - // External ID When Granting Access to Your AWS Resources to a Third Party (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_create_for-user_externalid.html) - // in the IAM User Guide. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters consisting of upper- and lower-case alphanumeric characters - // with no spaces. You can also include underscores or any of the following - // characters: =,.@:\/- - ExternalId *string `min:"2" type:"string"` - - // An IAM policy in JSON format. - // - // This parameter is optional. If you pass a policy, the temporary security - // credentials that are returned by the operation have the permissions that - // are allowed by both (the intersection of) the access policy of the role that - // is being assumed, and the policy that you pass. This gives you a way to further - // restrict the permissions for the resulting temporary security credentials. - // You cannot use the passed policy to grant permissions that are in excess - // of those allowed by the access policy of the role that is being assumed. - // For more information, see Permissions for AssumeRole, AssumeRoleWithSAML, - // and AssumeRoleWithWebIdentity (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_assumerole.html) - // in the IAM User Guide. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters up to 2048 characters in length. The characters can be any - // ASCII character from the space character to the end of the valid character - // list (\u0020-\u00FF). It can also include the tab (\u0009), linefeed (\u000A), - // and carriage return (\u000D) characters. - // - // The policy plain text must be 2048 bytes or shorter. However, an internal - // conversion compresses it into a packed binary format with a separate limit. - // The PackedPolicySize response element indicates by percentage how close to - // the upper size limit the policy is, with 100% equaling the maximum allowed - // size. - Policy *string `min:"1" type:"string"` - - // The Amazon Resource Name (ARN) of the role to assume. - // - // RoleArn is a required field - RoleArn *string `min:"20" type:"string" required:"true"` - - // An identifier for the assumed role session. - // - // Use the role session name to uniquely identify a session when the same role - // is assumed by different principals or for different reasons. In cross-account - // scenarios, the role session name is visible to, and can be logged by the - // account that owns the role. The role session name is also used in the ARN - // of the assumed role principal. This means that subsequent cross-account API - // requests using the temporary security credentials will expose the role session - // name to the external account in their CloudTrail logs. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters consisting of upper- and lower-case alphanumeric characters - // with no spaces. You can also include underscores or any of the following - // characters: =,.@- - // - // RoleSessionName is a required field - RoleSessionName *string `min:"2" type:"string" required:"true"` - - // The identification number of the MFA device that is associated with the user - // who is making the AssumeRole call. Specify this value if the trust policy - // of the role being assumed includes a condition that requires MFA authentication. - // The value is either the serial number for a hardware device (such as GAHT12345678) - // or an Amazon Resource Name (ARN) for a virtual device (such as arn:aws:iam::123456789012:mfa/user). - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters consisting of upper- and lower-case alphanumeric characters - // with no spaces. You can also include underscores or any of the following - // characters: =,.@- - SerialNumber *string `min:"9" type:"string"` - - // The value provided by the MFA device, if the trust policy of the role being - // assumed requires MFA (that is, if the policy includes a condition that tests - // for MFA). If the role being assumed requires MFA and if the TokenCode value - // is missing or expired, the AssumeRole call returns an "access denied" error. - // - // The format for this parameter, as described by its regex pattern, is a sequence - // of six numeric digits. - TokenCode *string `min:"6" type:"string"` -} - -// String returns the string representation -func (s AssumeRoleInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssumeRoleInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AssumeRoleInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AssumeRoleInput"} - if s.DurationSeconds != nil && *s.DurationSeconds < 900 { - invalidParams.Add(request.NewErrParamMinValue("DurationSeconds", 900)) - } - if s.ExternalId != nil && len(*s.ExternalId) < 2 { - invalidParams.Add(request.NewErrParamMinLen("ExternalId", 2)) - } - if s.Policy != nil && len(*s.Policy) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Policy", 1)) - } - if s.RoleArn == nil { - invalidParams.Add(request.NewErrParamRequired("RoleArn")) - } - if s.RoleArn != nil && len(*s.RoleArn) < 20 { - invalidParams.Add(request.NewErrParamMinLen("RoleArn", 20)) - } - if s.RoleSessionName == nil { - invalidParams.Add(request.NewErrParamRequired("RoleSessionName")) - } - if s.RoleSessionName != nil && len(*s.RoleSessionName) < 2 { - invalidParams.Add(request.NewErrParamMinLen("RoleSessionName", 2)) - } - if s.SerialNumber != nil && len(*s.SerialNumber) < 9 { - invalidParams.Add(request.NewErrParamMinLen("SerialNumber", 9)) - } - if s.TokenCode != nil && len(*s.TokenCode) < 6 { - invalidParams.Add(request.NewErrParamMinLen("TokenCode", 6)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the response to a successful AssumeRole request, including temporary -// AWS credentials that can be used to make AWS requests. -type AssumeRoleOutput struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) and the assumed role ID, which are identifiers - // that you can use to refer to the resulting temporary security credentials. - // For example, you can reference these credentials as a principal in a resource-based - // policy by using the ARN or assumed role ID. The ARN and ID include the RoleSessionName - // that you specified when you called AssumeRole. - AssumedRoleUser *AssumedRoleUser `type:"structure"` - - // The temporary security credentials, which include an access key ID, a secret - // access key, and a security (or session) token. - // - // Note: The size of the security token that STS APIs return is not fixed. - // We strongly recommend that you make no assumptions about the maximum size. - // As of this writing, the typical size is less than 4096 bytes, but that can - // vary. Also, future updates to AWS might require larger sizes. - Credentials *Credentials `type:"structure"` - - // A percentage value that indicates the size of the policy in packed form. - // The service rejects any policy with a packed size greater than 100 percent, - // which means the policy exceeded the allowed space. - PackedPolicySize *int64 `type:"integer"` -} - -// String returns the string representation -func (s AssumeRoleOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssumeRoleOutput) GoString() string { - return s.String() -} - -type AssumeRoleWithSAMLInput struct { - _ struct{} `type:"structure"` - - // The duration, in seconds, of the role session. The value can range from 900 - // seconds (15 minutes) to 3600 seconds (1 hour). By default, the value is set - // to 3600 seconds. An expiration can also be specified in the SAML authentication - // response's SessionNotOnOrAfter value. The actual expiration time is whichever - // value is shorter. - // - // This is separate from the duration of a console session that you might - // request using the returned credentials. The request to the federation endpoint - // for a console sign-in token takes a SessionDuration parameter that specifies - // the maximum length of the console session, separately from the DurationSeconds - // parameter on this API. For more information, see Enabling SAML 2.0 Federated - // Users to Access the AWS Management Console (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-saml.html) - // in the IAM User Guide. - DurationSeconds *int64 `min:"900" type:"integer"` - - // An IAM policy in JSON format. - // - // The policy parameter is optional. If you pass a policy, the temporary security - // credentials that are returned by the operation have the permissions that - // are allowed by both the access policy of the role that is being assumed, - // and the policy that you pass. This gives you a way to further restrict - // the permissions for the resulting temporary security credentials. You cannot - // use the passed policy to grant permissions that are in excess of those allowed - // by the access policy of the role that is being assumed. For more information, - // Permissions for AssumeRole, AssumeRoleWithSAML, and AssumeRoleWithWebIdentity - // (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_assumerole.html) - // in the IAM User Guide. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters up to 2048 characters in length. The characters can be any - // ASCII character from the space character to the end of the valid character - // list (\u0020-\u00FF). It can also include the tab (\u0009), linefeed (\u000A), - // and carriage return (\u000D) characters. - // - // The policy plain text must be 2048 bytes or shorter. However, an internal - // conversion compresses it into a packed binary format with a separate limit. - // The PackedPolicySize response element indicates by percentage how close to - // the upper size limit the policy is, with 100% equaling the maximum allowed - // size. - Policy *string `min:"1" type:"string"` - - // The Amazon Resource Name (ARN) of the SAML provider in IAM that describes - // the IdP. - // - // PrincipalArn is a required field - PrincipalArn *string `min:"20" type:"string" required:"true"` - - // The Amazon Resource Name (ARN) of the role that the caller is assuming. - // - // RoleArn is a required field - RoleArn *string `min:"20" type:"string" required:"true"` - - // The base-64 encoded SAML authentication response provided by the IdP. - // - // For more information, see Configuring a Relying Party and Adding Claims - // (http://docs.aws.amazon.com/IAM/latest/UserGuide/create-role-saml-IdP-tasks.html) - // in the Using IAM guide. - // - // SAMLAssertion is a required field - SAMLAssertion *string `min:"4" type:"string" required:"true"` -} - -// String returns the string representation -func (s AssumeRoleWithSAMLInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssumeRoleWithSAMLInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AssumeRoleWithSAMLInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AssumeRoleWithSAMLInput"} - if s.DurationSeconds != nil && *s.DurationSeconds < 900 { - invalidParams.Add(request.NewErrParamMinValue("DurationSeconds", 900)) - } - if s.Policy != nil && len(*s.Policy) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Policy", 1)) - } - if s.PrincipalArn == nil { - invalidParams.Add(request.NewErrParamRequired("PrincipalArn")) - } - if s.PrincipalArn != nil && len(*s.PrincipalArn) < 20 { - invalidParams.Add(request.NewErrParamMinLen("PrincipalArn", 20)) - } - if s.RoleArn == nil { - invalidParams.Add(request.NewErrParamRequired("RoleArn")) - } - if s.RoleArn != nil && len(*s.RoleArn) < 20 { - invalidParams.Add(request.NewErrParamMinLen("RoleArn", 20)) - } - if s.SAMLAssertion == nil { - invalidParams.Add(request.NewErrParamRequired("SAMLAssertion")) - } - if s.SAMLAssertion != nil && len(*s.SAMLAssertion) < 4 { - invalidParams.Add(request.NewErrParamMinLen("SAMLAssertion", 4)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the response to a successful AssumeRoleWithSAML request, including -// temporary AWS credentials that can be used to make AWS requests. -type AssumeRoleWithSAMLOutput struct { - _ struct{} `type:"structure"` - - // The identifiers for the temporary security credentials that the operation - // returns. - AssumedRoleUser *AssumedRoleUser `type:"structure"` - - // The value of the Recipient attribute of the SubjectConfirmationData element - // of the SAML assertion. - Audience *string `type:"string"` - - // The temporary security credentials, which include an access key ID, a secret - // access key, and a security (or session) token. - // - // Note: The size of the security token that STS APIs return is not fixed. - // We strongly recommend that you make no assumptions about the maximum size. - // As of this writing, the typical size is less than 4096 bytes, but that can - // vary. Also, future updates to AWS might require larger sizes. - Credentials *Credentials `type:"structure"` - - // The value of the Issuer element of the SAML assertion. - Issuer *string `type:"string"` - - // A hash value based on the concatenation of the Issuer response value, the - // AWS account ID, and the friendly name (the last part of the ARN) of the SAML - // provider in IAM. The combination of NameQualifier and Subject can be used - // to uniquely identify a federated user. - // - // The following pseudocode shows how the hash value is calculated: - // - // BASE64 ( SHA1 ( "https://example.com/saml" + "123456789012" + "/MySAMLIdP" - // ) ) - NameQualifier *string `type:"string"` - - // A percentage value that indicates the size of the policy in packed form. - // The service rejects any policy with a packed size greater than 100 percent, - // which means the policy exceeded the allowed space. - PackedPolicySize *int64 `type:"integer"` - - // The value of the NameID element in the Subject element of the SAML assertion. - Subject *string `type:"string"` - - // The format of the name ID, as defined by the Format attribute in the NameID - // element of the SAML assertion. Typical examples of the format are transient - // or persistent. - // - // If the format includes the prefix urn:oasis:names:tc:SAML:2.0:nameid-format, - // that prefix is removed. For example, urn:oasis:names:tc:SAML:2.0:nameid-format:transient - // is returned as transient. If the format includes any other prefix, the format - // is returned with no modifications. - SubjectType *string `type:"string"` -} - -// String returns the string representation -func (s AssumeRoleWithSAMLOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssumeRoleWithSAMLOutput) GoString() string { - return s.String() -} - -type AssumeRoleWithWebIdentityInput struct { - _ struct{} `type:"structure"` - - // The duration, in seconds, of the role session. The value can range from 900 - // seconds (15 minutes) to 3600 seconds (1 hour). By default, the value is set - // to 3600 seconds. - // - // This is separate from the duration of a console session that you might - // request using the returned credentials. The request to the federation endpoint - // for a console sign-in token takes a SessionDuration parameter that specifies - // the maximum length of the console session, separately from the DurationSeconds - // parameter on this API. For more information, see Creating a URL that Enables - // Federated Users to Access the AWS Management Console (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_enable-console-custom-url.html) - // in the IAM User Guide. - DurationSeconds *int64 `min:"900" type:"integer"` - - // An IAM policy in JSON format. - // - // The policy parameter is optional. If you pass a policy, the temporary security - // credentials that are returned by the operation have the permissions that - // are allowed by both the access policy of the role that is being assumed, - // and the policy that you pass. This gives you a way to further restrict - // the permissions for the resulting temporary security credentials. You cannot - // use the passed policy to grant permissions that are in excess of those allowed - // by the access policy of the role that is being assumed. For more information, - // see Permissions for AssumeRoleWithWebIdentity (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_assumerole.html) - // in the IAM User Guide. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters up to 2048 characters in length. The characters can be any - // ASCII character from the space character to the end of the valid character - // list (\u0020-\u00FF). It can also include the tab (\u0009), linefeed (\u000A), - // and carriage return (\u000D) characters. - // - // The policy plain text must be 2048 bytes or shorter. However, an internal - // conversion compresses it into a packed binary format with a separate limit. - // The PackedPolicySize response element indicates by percentage how close to - // the upper size limit the policy is, with 100% equaling the maximum allowed - // size. - Policy *string `min:"1" type:"string"` - - // The fully qualified host component of the domain name of the identity provider. - // - // Specify this value only for OAuth 2.0 access tokens. Currently www.amazon.com - // and graph.facebook.com are the only supported identity providers for OAuth - // 2.0 access tokens. Do not include URL schemes and port numbers. - // - // Do not specify this value for OpenID Connect ID tokens. - ProviderId *string `min:"4" type:"string"` - - // The Amazon Resource Name (ARN) of the role that the caller is assuming. - // - // RoleArn is a required field - RoleArn *string `min:"20" type:"string" required:"true"` - - // An identifier for the assumed role session. Typically, you pass the name - // or identifier that is associated with the user who is using your application. - // That way, the temporary security credentials that your application will use - // are associated with that user. This session name is included as part of the - // ARN and assumed role ID in the AssumedRoleUser response element. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters consisting of upper- and lower-case alphanumeric characters - // with no spaces. You can also include underscores or any of the following - // characters: =,.@- - // - // RoleSessionName is a required field - RoleSessionName *string `min:"2" type:"string" required:"true"` - - // The OAuth 2.0 access token or OpenID Connect ID token that is provided by - // the identity provider. Your application must get this token by authenticating - // the user who is using your application with a web identity provider before - // the application makes an AssumeRoleWithWebIdentity call. - // - // WebIdentityToken is a required field - WebIdentityToken *string `min:"4" type:"string" required:"true"` -} - -// String returns the string representation -func (s AssumeRoleWithWebIdentityInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssumeRoleWithWebIdentityInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *AssumeRoleWithWebIdentityInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "AssumeRoleWithWebIdentityInput"} - if s.DurationSeconds != nil && *s.DurationSeconds < 900 { - invalidParams.Add(request.NewErrParamMinValue("DurationSeconds", 900)) - } - if s.Policy != nil && len(*s.Policy) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Policy", 1)) - } - if s.ProviderId != nil && len(*s.ProviderId) < 4 { - invalidParams.Add(request.NewErrParamMinLen("ProviderId", 4)) - } - if s.RoleArn == nil { - invalidParams.Add(request.NewErrParamRequired("RoleArn")) - } - if s.RoleArn != nil && len(*s.RoleArn) < 20 { - invalidParams.Add(request.NewErrParamMinLen("RoleArn", 20)) - } - if s.RoleSessionName == nil { - invalidParams.Add(request.NewErrParamRequired("RoleSessionName")) - } - if s.RoleSessionName != nil && len(*s.RoleSessionName) < 2 { - invalidParams.Add(request.NewErrParamMinLen("RoleSessionName", 2)) - } - if s.WebIdentityToken == nil { - invalidParams.Add(request.NewErrParamRequired("WebIdentityToken")) - } - if s.WebIdentityToken != nil && len(*s.WebIdentityToken) < 4 { - invalidParams.Add(request.NewErrParamMinLen("WebIdentityToken", 4)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the response to a successful AssumeRoleWithWebIdentity request, -// including temporary AWS credentials that can be used to make AWS requests. -type AssumeRoleWithWebIdentityOutput struct { - _ struct{} `type:"structure"` - - // The Amazon Resource Name (ARN) and the assumed role ID, which are identifiers - // that you can use to refer to the resulting temporary security credentials. - // For example, you can reference these credentials as a principal in a resource-based - // policy by using the ARN or assumed role ID. The ARN and ID include the RoleSessionName - // that you specified when you called AssumeRole. - AssumedRoleUser *AssumedRoleUser `type:"structure"` - - // The intended audience (also known as client ID) of the web identity token. - // This is traditionally the client identifier issued to the application that - // requested the web identity token. - Audience *string `type:"string"` - - // The temporary security credentials, which include an access key ID, a secret - // access key, and a security token. - // - // Note: The size of the security token that STS APIs return is not fixed. - // We strongly recommend that you make no assumptions about the maximum size. - // As of this writing, the typical size is less than 4096 bytes, but that can - // vary. Also, future updates to AWS might require larger sizes. - Credentials *Credentials `type:"structure"` - - // A percentage value that indicates the size of the policy in packed form. - // The service rejects any policy with a packed size greater than 100 percent, - // which means the policy exceeded the allowed space. - PackedPolicySize *int64 `type:"integer"` - - // The issuing authority of the web identity token presented. For OpenID Connect - // ID Tokens this contains the value of the iss field. For OAuth 2.0 access - // tokens, this contains the value of the ProviderId parameter that was passed - // in the AssumeRoleWithWebIdentity request. - Provider *string `type:"string"` - - // The unique user identifier that is returned by the identity provider. This - // identifier is associated with the WebIdentityToken that was submitted with - // the AssumeRoleWithWebIdentity call. The identifier is typically unique to - // the user and the application that acquired the WebIdentityToken (pairwise - // identifier). For OpenID Connect ID tokens, this field contains the value - // returned by the identity provider as the token's sub (Subject) claim. - SubjectFromWebIdentityToken *string `min:"6" type:"string"` -} - -// String returns the string representation -func (s AssumeRoleWithWebIdentityOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssumeRoleWithWebIdentityOutput) GoString() string { - return s.String() -} - -// The identifiers for the temporary security credentials that the operation -// returns. -type AssumedRoleUser struct { - _ struct{} `type:"structure"` - - // The ARN of the temporary security credentials that are returned from the - // AssumeRole action. For more information about ARNs and how to use them in - // policies, see IAM Identifiers (http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html) - // in Using IAM. - // - // Arn is a required field - Arn *string `min:"20" type:"string" required:"true"` - - // A unique identifier that contains the role ID and the role session name of - // the role that is being assumed. The role ID is generated by AWS when the - // role is created. - // - // AssumedRoleId is a required field - AssumedRoleId *string `min:"2" type:"string" required:"true"` -} - -// String returns the string representation -func (s AssumedRoleUser) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s AssumedRoleUser) GoString() string { - return s.String() -} - -// AWS credentials for API authentication. -type Credentials struct { - _ struct{} `type:"structure"` - - // The access key ID that identifies the temporary security credentials. - // - // AccessKeyId is a required field - AccessKeyId *string `min:"16" type:"string" required:"true"` - - // The date on which the current credentials expire. - // - // Expiration is a required field - Expiration *time.Time `type:"timestamp" timestampFormat:"iso8601" required:"true"` - - // The secret access key that can be used to sign requests. - // - // SecretAccessKey is a required field - SecretAccessKey *string `type:"string" required:"true"` - - // The token that users must pass to the service API to use the temporary credentials. - // - // SessionToken is a required field - SessionToken *string `type:"string" required:"true"` -} - -// String returns the string representation -func (s Credentials) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s Credentials) GoString() string { - return s.String() -} - -type DecodeAuthorizationMessageInput struct { - _ struct{} `type:"structure"` - - // The encoded message that was returned with the response. - // - // EncodedMessage is a required field - EncodedMessage *string `min:"1" type:"string" required:"true"` -} - -// String returns the string representation -func (s DecodeAuthorizationMessageInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DecodeAuthorizationMessageInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *DecodeAuthorizationMessageInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "DecodeAuthorizationMessageInput"} - if s.EncodedMessage == nil { - invalidParams.Add(request.NewErrParamRequired("EncodedMessage")) - } - if s.EncodedMessage != nil && len(*s.EncodedMessage) < 1 { - invalidParams.Add(request.NewErrParamMinLen("EncodedMessage", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// A document that contains additional information about the authorization status -// of a request from an encoded message that is returned in response to an AWS -// request. -type DecodeAuthorizationMessageOutput struct { - _ struct{} `type:"structure"` - - // An XML document that contains the decoded message. - DecodedMessage *string `type:"string"` -} - -// String returns the string representation -func (s DecodeAuthorizationMessageOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s DecodeAuthorizationMessageOutput) GoString() string { - return s.String() -} - -// Identifiers for the federated user that is associated with the credentials. -type FederatedUser struct { - _ struct{} `type:"structure"` - - // The ARN that specifies the federated user that is associated with the credentials. - // For more information about ARNs and how to use them in policies, see IAM - // Identifiers (http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.html) - // in Using IAM. - // - // Arn is a required field - Arn *string `min:"20" type:"string" required:"true"` - - // The string that identifies the federated user associated with the credentials, - // similar to the unique ID of an IAM user. - // - // FederatedUserId is a required field - FederatedUserId *string `min:"2" type:"string" required:"true"` -} - -// String returns the string representation -func (s FederatedUser) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s FederatedUser) GoString() string { - return s.String() -} - -type GetCallerIdentityInput struct { - _ struct{} `type:"structure"` -} - -// String returns the string representation -func (s GetCallerIdentityInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCallerIdentityInput) GoString() string { - return s.String() -} - -// Contains the response to a successful GetCallerIdentity request, including -// information about the entity making the request. -type GetCallerIdentityOutput struct { - _ struct{} `type:"structure"` - - // The AWS account ID number of the account that owns or contains the calling - // entity. - Account *string `type:"string"` - - // The AWS ARN associated with the calling entity. - Arn *string `min:"20" type:"string"` - - // The unique identifier of the calling entity. The exact value depends on the - // type of entity making the call. The values returned are those listed in the - // aws:userid column in the Principal table (http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_variables.html#principaltable) - // found on the Policy Variables reference page in the IAM User Guide. - UserId *string `type:"string"` -} - -// String returns the string representation -func (s GetCallerIdentityOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetCallerIdentityOutput) GoString() string { - return s.String() -} - -type GetFederationTokenInput struct { - _ struct{} `type:"structure"` - - // The duration, in seconds, that the session should last. Acceptable durations - // for federation sessions range from 900 seconds (15 minutes) to 129600 seconds - // (36 hours), with 43200 seconds (12 hours) as the default. Sessions obtained - // using AWS account (root) credentials are restricted to a maximum of 3600 - // seconds (one hour). If the specified duration is longer than one hour, the - // session obtained by using AWS account (root) credentials defaults to one - // hour. - DurationSeconds *int64 `min:"900" type:"integer"` - - // The name of the federated user. The name is used as an identifier for the - // temporary security credentials (such as Bob). For example, you can reference - // the federated user name in a resource-based policy, such as in an Amazon - // S3 bucket policy. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters consisting of upper- and lower-case alphanumeric characters - // with no spaces. You can also include underscores or any of the following - // characters: =,.@- - // - // Name is a required field - Name *string `min:"2" type:"string" required:"true"` - - // An IAM policy in JSON format that is passed with the GetFederationToken call - // and evaluated along with the policy or policies that are attached to the - // IAM user whose credentials are used to call GetFederationToken. The passed - // policy is used to scope down the permissions that are available to the IAM - // user, by allowing only a subset of the permissions that are granted to the - // IAM user. The passed policy cannot grant more permissions than those granted - // to the IAM user. The final permissions for the federated user are the most - // restrictive set based on the intersection of the passed policy and the IAM - // user policy. - // - // If you do not pass a policy, the resulting temporary security credentials - // have no effective permissions. The only exception is when the temporary security - // credentials are used to access a resource that has a resource-based policy - // that specifically allows the federated user to access the resource. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters up to 2048 characters in length. The characters can be any - // ASCII character from the space character to the end of the valid character - // list (\u0020-\u00FF). It can also include the tab (\u0009), linefeed (\u000A), - // and carriage return (\u000D) characters. - // - // The policy plain text must be 2048 bytes or shorter. However, an internal - // conversion compresses it into a packed binary format with a separate limit. - // The PackedPolicySize response element indicates by percentage how close to - // the upper size limit the policy is, with 100% equaling the maximum allowed - // size. - // - // For more information about how permissions work, see Permissions for GetFederationToken - // (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_getfederationtoken.html). - Policy *string `min:"1" type:"string"` -} - -// String returns the string representation -func (s GetFederationTokenInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetFederationTokenInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetFederationTokenInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetFederationTokenInput"} - if s.DurationSeconds != nil && *s.DurationSeconds < 900 { - invalidParams.Add(request.NewErrParamMinValue("DurationSeconds", 900)) - } - if s.Name == nil { - invalidParams.Add(request.NewErrParamRequired("Name")) - } - if s.Name != nil && len(*s.Name) < 2 { - invalidParams.Add(request.NewErrParamMinLen("Name", 2)) - } - if s.Policy != nil && len(*s.Policy) < 1 { - invalidParams.Add(request.NewErrParamMinLen("Policy", 1)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the response to a successful GetFederationToken request, including -// temporary AWS credentials that can be used to make AWS requests. -type GetFederationTokenOutput struct { - _ struct{} `type:"structure"` - - // The temporary security credentials, which include an access key ID, a secret - // access key, and a security (or session) token. - // - // Note: The size of the security token that STS APIs return is not fixed. - // We strongly recommend that you make no assumptions about the maximum size. - // As of this writing, the typical size is less than 4096 bytes, but that can - // vary. Also, future updates to AWS might require larger sizes. - Credentials *Credentials `type:"structure"` - - // Identifiers for the federated user associated with the credentials (such - // as arn:aws:sts::123456789012:federated-user/Bob or 123456789012:Bob). You - // can use the federated user's ARN in your resource-based policies, such as - // an Amazon S3 bucket policy. - FederatedUser *FederatedUser `type:"structure"` - - // A percentage value indicating the size of the policy in packed form. The - // service rejects policies for which the packed size is greater than 100 percent - // of the allowed value. - PackedPolicySize *int64 `type:"integer"` -} - -// String returns the string representation -func (s GetFederationTokenOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetFederationTokenOutput) GoString() string { - return s.String() -} - -type GetSessionTokenInput struct { - _ struct{} `type:"structure"` - - // The duration, in seconds, that the credentials should remain valid. Acceptable - // durations for IAM user sessions range from 900 seconds (15 minutes) to 129600 - // seconds (36 hours), with 43200 seconds (12 hours) as the default. Sessions - // for AWS account owners are restricted to a maximum of 3600 seconds (one hour). - // If the duration is longer than one hour, the session for AWS account owners - // defaults to one hour. - DurationSeconds *int64 `min:"900" type:"integer"` - - // The identification number of the MFA device that is associated with the IAM - // user who is making the GetSessionToken call. Specify this value if the IAM - // user has a policy that requires MFA authentication. The value is either the - // serial number for a hardware device (such as GAHT12345678) or an Amazon Resource - // Name (ARN) for a virtual device (such as arn:aws:iam::123456789012:mfa/user). - // You can find the device for an IAM user by going to the AWS Management Console - // and viewing the user's security credentials. - // - // The format for this parameter, as described by its regex pattern, is a string - // of characters consisting of upper- and lower-case alphanumeric characters - // with no spaces. You can also include underscores or any of the following - // characters: =,.@- - SerialNumber *string `min:"9" type:"string"` - - // The value provided by the MFA device, if MFA is required. If any policy requires - // the IAM user to submit an MFA code, specify this value. If MFA authentication - // is required, and the user does not provide a code when requesting a set of - // temporary security credentials, the user will receive an "access denied" - // response when requesting resources that require MFA authentication. - // - // The format for this parameter, as described by its regex pattern, is a sequence - // of six numeric digits. - TokenCode *string `min:"6" type:"string"` -} - -// String returns the string representation -func (s GetSessionTokenInput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetSessionTokenInput) GoString() string { - return s.String() -} - -// Validate inspects the fields of the type to determine if they are valid. -func (s *GetSessionTokenInput) Validate() error { - invalidParams := request.ErrInvalidParams{Context: "GetSessionTokenInput"} - if s.DurationSeconds != nil && *s.DurationSeconds < 900 { - invalidParams.Add(request.NewErrParamMinValue("DurationSeconds", 900)) - } - if s.SerialNumber != nil && len(*s.SerialNumber) < 9 { - invalidParams.Add(request.NewErrParamMinLen("SerialNumber", 9)) - } - if s.TokenCode != nil && len(*s.TokenCode) < 6 { - invalidParams.Add(request.NewErrParamMinLen("TokenCode", 6)) - } - - if invalidParams.Len() > 0 { - return invalidParams - } - return nil -} - -// Contains the response to a successful GetSessionToken request, including -// temporary AWS credentials that can be used to make AWS requests. -type GetSessionTokenOutput struct { - _ struct{} `type:"structure"` - - // The temporary security credentials, which include an access key ID, a secret - // access key, and a security (or session) token. - // - // Note: The size of the security token that STS APIs return is not fixed. - // We strongly recommend that you make no assumptions about the maximum size. - // As of this writing, the typical size is less than 4096 bytes, but that can - // vary. Also, future updates to AWS might require larger sizes. - Credentials *Credentials `type:"structure"` -} - -// String returns the string representation -func (s GetSessionTokenOutput) String() string { - return awsutil.Prettify(s) -} - -// GoString returns the string representation -func (s GetSessionTokenOutput) GoString() string { - return s.String() -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/sts/customizations.go b/vendor/github.com/aws/aws-sdk-go/service/sts/customizations.go deleted file mode 100644 index 4010cc7f..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/sts/customizations.go +++ /dev/null @@ -1,12 +0,0 @@ -package sts - -import "github.com/aws/aws-sdk-go/aws/request" - -func init() { - initRequest = func(r *request.Request) { - switch r.Operation.Name { - case opAssumeRoleWithSAML, opAssumeRoleWithWebIdentity: - r.Handlers.Sign.Clear() // these operations are unsigned - } - } -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/sts/customizations_test.go b/vendor/github.com/aws/aws-sdk-go/service/sts/customizations_test.go deleted file mode 100644 index 6f870d35..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/sts/customizations_test.go +++ /dev/null @@ -1,39 +0,0 @@ -package sts_test - -import ( - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/awstesting/unit" - "github.com/aws/aws-sdk-go/service/sts" -) - -var svc = sts.New(unit.Session, &aws.Config{ - Region: aws.String("mock-region"), -}) - -func TestUnsignedRequest_AssumeRoleWithSAML(t *testing.T) { - req, _ := svc.AssumeRoleWithSAMLRequest(&sts.AssumeRoleWithSAMLInput{ - PrincipalArn: aws.String("ARN01234567890123456789"), - RoleArn: aws.String("ARN01234567890123456789"), - SAMLAssertion: aws.String("ASSERT"), - }) - - err := req.Sign() - assert.NoError(t, err) - assert.Equal(t, "", req.HTTPRequest.Header.Get("Authorization")) -} - -func TestUnsignedRequest_AssumeRoleWithWebIdentity(t *testing.T) { - req, _ := svc.AssumeRoleWithWebIdentityRequest(&sts.AssumeRoleWithWebIdentityInput{ - RoleArn: aws.String("ARN01234567890123456789"), - RoleSessionName: aws.String("SESSION"), - WebIdentityToken: aws.String("TOKEN"), - }) - - err := req.Sign() - assert.NoError(t, err) - assert.Equal(t, "", req.HTTPRequest.Header.Get("Authorization")) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/sts/examples_test.go b/vendor/github.com/aws/aws-sdk-go/service/sts/examples_test.go deleted file mode 100644 index 2724ed4d..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/sts/examples_test.go +++ /dev/null @@ -1,208 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package sts_test - -import ( - "bytes" - "fmt" - "time" - - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/session" - "github.com/aws/aws-sdk-go/service/sts" -) - -var _ time.Duration -var _ bytes.Buffer - -func ExampleSTS_AssumeRole() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := sts.New(sess) - - params := &sts.AssumeRoleInput{ - RoleArn: aws.String("arnType"), // Required - RoleSessionName: aws.String("roleSessionNameType"), // Required - DurationSeconds: aws.Int64(1), - ExternalId: aws.String("externalIdType"), - Policy: aws.String("sessionPolicyDocumentType"), - SerialNumber: aws.String("serialNumberType"), - TokenCode: aws.String("tokenCodeType"), - } - resp, err := svc.AssumeRole(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleSTS_AssumeRoleWithSAML() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := sts.New(sess) - - params := &sts.AssumeRoleWithSAMLInput{ - PrincipalArn: aws.String("arnType"), // Required - RoleArn: aws.String("arnType"), // Required - SAMLAssertion: aws.String("SAMLAssertionType"), // Required - DurationSeconds: aws.Int64(1), - Policy: aws.String("sessionPolicyDocumentType"), - } - resp, err := svc.AssumeRoleWithSAML(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleSTS_AssumeRoleWithWebIdentity() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := sts.New(sess) - - params := &sts.AssumeRoleWithWebIdentityInput{ - RoleArn: aws.String("arnType"), // Required - RoleSessionName: aws.String("roleSessionNameType"), // Required - WebIdentityToken: aws.String("clientTokenType"), // Required - DurationSeconds: aws.Int64(1), - Policy: aws.String("sessionPolicyDocumentType"), - ProviderId: aws.String("urlType"), - } - resp, err := svc.AssumeRoleWithWebIdentity(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleSTS_DecodeAuthorizationMessage() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := sts.New(sess) - - params := &sts.DecodeAuthorizationMessageInput{ - EncodedMessage: aws.String("encodedMessageType"), // Required - } - resp, err := svc.DecodeAuthorizationMessage(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleSTS_GetCallerIdentity() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := sts.New(sess) - - var params *sts.GetCallerIdentityInput - resp, err := svc.GetCallerIdentity(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleSTS_GetFederationToken() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := sts.New(sess) - - params := &sts.GetFederationTokenInput{ - Name: aws.String("userNameType"), // Required - DurationSeconds: aws.Int64(1), - Policy: aws.String("sessionPolicyDocumentType"), - } - resp, err := svc.GetFederationToken(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} - -func ExampleSTS_GetSessionToken() { - sess, err := session.NewSession() - if err != nil { - fmt.Println("failed to create session,", err) - return - } - - svc := sts.New(sess) - - params := &sts.GetSessionTokenInput{ - DurationSeconds: aws.Int64(1), - SerialNumber: aws.String("serialNumberType"), - TokenCode: aws.String("tokenCodeType"), - } - resp, err := svc.GetSessionToken(params) - - if err != nil { - // Print the error, cast err to awserr.Error to get the Code and - // Message from an error. - fmt.Println(err.Error()) - return - } - - // Pretty-print the response data. - fmt.Println(resp) -} diff --git a/vendor/github.com/aws/aws-sdk-go/service/sts/service.go b/vendor/github.com/aws/aws-sdk-go/service/sts/service.go deleted file mode 100644 index c938e6ca..00000000 --- a/vendor/github.com/aws/aws-sdk-go/service/sts/service.go +++ /dev/null @@ -1,130 +0,0 @@ -// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT. - -package sts - -import ( - "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-go/aws/client" - "github.com/aws/aws-sdk-go/aws/client/metadata" - "github.com/aws/aws-sdk-go/aws/request" - "github.com/aws/aws-sdk-go/aws/signer/v4" - "github.com/aws/aws-sdk-go/private/protocol/query" -) - -// The AWS Security Token Service (STS) is a web service that enables you to -// request temporary, limited-privilege credentials for AWS Identity and Access -// Management (IAM) users or for users that you authenticate (federated users). -// This guide provides descriptions of the STS API. For more detailed information -// about using this service, go to Temporary Security Credentials (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html). -// -// As an alternative to using the API, you can use one of the AWS SDKs, which -// consist of libraries and sample code for various programming languages and -// platforms (Java, Ruby, .NET, iOS, Android, etc.). The SDKs provide a convenient -// way to create programmatic access to STS. For example, the SDKs take care -// of cryptographically signing requests, managing errors, and retrying requests -// automatically. For information about the AWS SDKs, including how to download -// and install them, see the Tools for Amazon Web Services page (http://aws.amazon.com/tools/). -// -// For information about setting up signatures and authorization through the -// API, go to Signing AWS API Requests (http://docs.aws.amazon.com/general/latest/gr/signing_aws_api_requests.html) -// in the AWS General Reference. For general information about the Query API, -// go to Making Query Requests (http://docs.aws.amazon.com/IAM/latest/UserGuide/IAM_UsingQueryAPI.html) -// in Using IAM. For information about using security tokens with other AWS -// products, go to AWS Services That Work with IAM (http://docs.aws.amazon.com/IAM/latest/UserGuide/reference_aws-services-that-work-with-iam.html) -// in the IAM User Guide. -// -// If you're new to AWS and need additional technical information about a specific -// AWS product, you can find the product's technical documentation at http://aws.amazon.com/documentation/ -// (http://aws.amazon.com/documentation/). -// -// Endpoints -// -// The AWS Security Token Service (STS) has a default endpoint of https://sts.amazonaws.com -// that maps to the US East (N. Virginia) region. Additional regions are available -// and are activated by default. For more information, see Activating and Deactivating -// AWS STS in an AWS Region (http://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html) -// in the IAM User Guide. -// -// For information about STS endpoints, see Regions and Endpoints (http://docs.aws.amazon.com/general/latest/gr/rande.html#sts_region) -// in the AWS General Reference. -// -// Recording API requests -// -// STS supports AWS CloudTrail, which is a service that records AWS calls for -// your AWS account and delivers log files to an Amazon S3 bucket. By using -// information collected by CloudTrail, you can determine what requests were -// successfully made to STS, who made the request, when it was made, and so -// on. To learn more about CloudTrail, including how to turn it on and find -// your log files, see the AWS CloudTrail User Guide (http://docs.aws.amazon.com/awscloudtrail/latest/userguide/what_is_cloud_trail_top_level.html). -//The service client's operations are safe to be used concurrently. -// It is not safe to mutate any of the client's properties though. -type STS struct { - *client.Client -} - -// Used for custom client initialization logic -var initClient func(*client.Client) - -// Used for custom request initialization logic -var initRequest func(*request.Request) - -// A ServiceName is the name of the service the client will make API calls to. -const ServiceName = "sts" - -// New creates a new instance of the STS client with a session. -// If additional configuration is needed for the client instance use the optional -// aws.Config parameter to add your extra config. -// -// Example: -// // Create a STS client from just a session. -// svc := sts.New(mySession) -// -// // Create a STS client with additional configuration -// svc := sts.New(mySession, aws.NewConfig().WithRegion("us-west-2")) -func New(p client.ConfigProvider, cfgs ...*aws.Config) *STS { - c := p.ClientConfig(ServiceName, cfgs...) - return newClient(*c.Config, c.Handlers, c.Endpoint, c.SigningRegion) -} - -// newClient creates, initializes and returns a new service client instance. -func newClient(cfg aws.Config, handlers request.Handlers, endpoint, signingRegion string) *STS { - svc := &STS{ - Client: client.New( - cfg, - metadata.ClientInfo{ - ServiceName: ServiceName, - SigningRegion: signingRegion, - Endpoint: endpoint, - APIVersion: "2011-06-15", - }, - handlers, - ), - } - - // Handlers - svc.Handlers.Sign.PushBackNamed(v4.SignRequestHandler) - svc.Handlers.Build.PushBackNamed(query.BuildHandler) - svc.Handlers.Unmarshal.PushBackNamed(query.UnmarshalHandler) - svc.Handlers.UnmarshalMeta.PushBackNamed(query.UnmarshalMetaHandler) - svc.Handlers.UnmarshalError.PushBackNamed(query.UnmarshalErrorHandler) - - // Run custom client initialization if present - if initClient != nil { - initClient(svc.Client) - } - - return svc -} - -// newRequest creates a new request for a STS operation and runs any -// custom request initialization. -func (c *STS) newRequest(op *request.Operation, params, data interface{}) *request.Request { - req := c.NewRequest(op, params, data) - - // Run custom request initialization if present - if initRequest != nil { - initRequest(req) - } - - return req -} diff --git a/vendor/github.com/bgentry/go-netrc/LICENSE b/vendor/github.com/bgentry/go-netrc/LICENSE deleted file mode 100644 index aade9a58..00000000 --- a/vendor/github.com/bgentry/go-netrc/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -Original version Copyright © 2010 Fazlul Shahriar . Newer -portions Copyright © 2014 Blake Gentry . - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/vendor/github.com/bgentry/go-netrc/netrc/netrc.go b/vendor/github.com/bgentry/go-netrc/netrc/netrc.go deleted file mode 100644 index ea49987c..00000000 --- a/vendor/github.com/bgentry/go-netrc/netrc/netrc.go +++ /dev/null @@ -1,510 +0,0 @@ -package netrc - -import ( - "bufio" - "bytes" - "fmt" - "io" - "io/ioutil" - "os" - "strings" - "sync" - "unicode" - "unicode/utf8" -) - -type tkType int - -const ( - tkMachine tkType = iota - tkDefault - tkLogin - tkPassword - tkAccount - tkMacdef - tkComment - tkWhitespace -) - -var keywords = map[string]tkType{ - "machine": tkMachine, - "default": tkDefault, - "login": tkLogin, - "password": tkPassword, - "account": tkAccount, - "macdef": tkMacdef, - "#": tkComment, -} - -type Netrc struct { - tokens []*token - machines []*Machine - macros Macros - updateLock sync.Mutex -} - -// FindMachine returns the Machine in n named by name. If a machine named by -// name exists, it is returned. If no Machine with name name is found and there -// is a ``default'' machine, the ``default'' machine is returned. Otherwise, nil -// is returned. -func (n *Netrc) FindMachine(name string) (m *Machine) { - // TODO(bgentry): not safe for concurrency - var def *Machine - for _, m = range n.machines { - if m.Name == name { - return m - } - if m.IsDefault() { - def = m - } - } - if def == nil { - return nil - } - return def -} - -// MarshalText implements the encoding.TextMarshaler interface to encode a -// Netrc into text format. -func (n *Netrc) MarshalText() (text []byte, err error) { - // TODO(bgentry): not safe for concurrency - for i := range n.tokens { - switch n.tokens[i].kind { - case tkComment, tkDefault, tkWhitespace: // always append these types - text = append(text, n.tokens[i].rawkind...) - default: - if n.tokens[i].value != "" { // skip empty-value tokens - text = append(text, n.tokens[i].rawkind...) - } - } - if n.tokens[i].kind == tkMacdef { - text = append(text, ' ') - text = append(text, n.tokens[i].macroName...) - } - text = append(text, n.tokens[i].rawvalue...) - } - return -} - -func (n *Netrc) NewMachine(name, login, password, account string) *Machine { - n.updateLock.Lock() - defer n.updateLock.Unlock() - - prefix := "\n" - if len(n.tokens) == 0 { - prefix = "" - } - m := &Machine{ - Name: name, - Login: login, - Password: password, - Account: account, - - nametoken: &token{ - kind: tkMachine, - rawkind: []byte(prefix + "machine"), - value: name, - rawvalue: []byte(" " + name), - }, - logintoken: &token{ - kind: tkLogin, - rawkind: []byte("\n\tlogin"), - value: login, - rawvalue: []byte(" " + login), - }, - passtoken: &token{ - kind: tkPassword, - rawkind: []byte("\n\tpassword"), - value: password, - rawvalue: []byte(" " + password), - }, - accounttoken: &token{ - kind: tkAccount, - rawkind: []byte("\n\taccount"), - value: account, - rawvalue: []byte(" " + account), - }, - } - n.insertMachineTokensBeforeDefault(m) - for i := range n.machines { - if n.machines[i].IsDefault() { - n.machines = append(append(n.machines[:i], m), n.machines[i:]...) - return m - } - } - n.machines = append(n.machines, m) - return m -} - -func (n *Netrc) insertMachineTokensBeforeDefault(m *Machine) { - newtokens := []*token{m.nametoken} - if m.logintoken.value != "" { - newtokens = append(newtokens, m.logintoken) - } - if m.passtoken.value != "" { - newtokens = append(newtokens, m.passtoken) - } - if m.accounttoken.value != "" { - newtokens = append(newtokens, m.accounttoken) - } - for i := range n.tokens { - if n.tokens[i].kind == tkDefault { - // found the default, now insert tokens before it - n.tokens = append(n.tokens[:i], append(newtokens, n.tokens[i:]...)...) - return - } - } - // didn't find a default, just add the newtokens to the end - n.tokens = append(n.tokens, newtokens...) - return -} - -func (n *Netrc) RemoveMachine(name string) { - n.updateLock.Lock() - defer n.updateLock.Unlock() - - for i := range n.machines { - if n.machines[i] != nil && n.machines[i].Name == name { - m := n.machines[i] - for _, t := range []*token{ - m.nametoken, m.logintoken, m.passtoken, m.accounttoken, - } { - n.removeToken(t) - } - n.machines = append(n.machines[:i], n.machines[i+1:]...) - return - } - } -} - -func (n *Netrc) removeToken(t *token) { - if t != nil { - for i := range n.tokens { - if n.tokens[i] == t { - n.tokens = append(n.tokens[:i], n.tokens[i+1:]...) - return - } - } - } -} - -// Machine contains information about a remote machine. -type Machine struct { - Name string - Login string - Password string - Account string - - nametoken *token - logintoken *token - passtoken *token - accounttoken *token -} - -// IsDefault returns true if the machine is a "default" token, denoted by an -// empty name. -func (m *Machine) IsDefault() bool { - return m.Name == "" -} - -// UpdatePassword sets the password for the Machine m. -func (m *Machine) UpdatePassword(newpass string) { - m.Password = newpass - updateTokenValue(m.passtoken, newpass) -} - -// UpdateLogin sets the login for the Machine m. -func (m *Machine) UpdateLogin(newlogin string) { - m.Login = newlogin - updateTokenValue(m.logintoken, newlogin) -} - -// UpdateAccount sets the login for the Machine m. -func (m *Machine) UpdateAccount(newaccount string) { - m.Account = newaccount - updateTokenValue(m.accounttoken, newaccount) -} - -func updateTokenValue(t *token, value string) { - oldvalue := t.value - t.value = value - newraw := make([]byte, len(t.rawvalue)) - copy(newraw, t.rawvalue) - t.rawvalue = append( - bytes.TrimSuffix(newraw, []byte(oldvalue)), - []byte(value)..., - ) -} - -// Macros contains all the macro definitions in a netrc file. -type Macros map[string]string - -type token struct { - kind tkType - macroName string - value string - rawkind []byte - rawvalue []byte -} - -// Error represents a netrc file parse error. -type Error struct { - LineNum int // Line number - Msg string // Error message -} - -// Error returns a string representation of error e. -func (e *Error) Error() string { - return fmt.Sprintf("line %d: %s", e.LineNum, e.Msg) -} - -func (e *Error) BadDefaultOrder() bool { - return e.Msg == errBadDefaultOrder -} - -const errBadDefaultOrder = "default token must appear after all machine tokens" - -// scanLinesKeepPrefix is a split function for a Scanner that returns each line -// of text. The returned token may include newlines if they are before the -// first non-space character. The returned line may be empty. The end-of-line -// marker is one optional carriage return followed by one mandatory newline. In -// regular expression notation, it is `\r?\n`. The last non-empty line of -// input will be returned even if it has no newline. -func scanLinesKeepPrefix(data []byte, atEOF bool) (advance int, token []byte, err error) { - if atEOF && len(data) == 0 { - return 0, nil, nil - } - // Skip leading spaces. - start := 0 - for width := 0; start < len(data); start += width { - var r rune - r, width = utf8.DecodeRune(data[start:]) - if !unicode.IsSpace(r) { - break - } - } - if i := bytes.IndexByte(data[start:], '\n'); i >= 0 { - // We have a full newline-terminated line. - return start + i, data[0 : start+i], nil - } - // If we're at EOF, we have a final, non-terminated line. Return it. - if atEOF { - return len(data), data, nil - } - // Request more data. - return 0, nil, nil -} - -// scanWordsKeepPrefix is a split function for a Scanner that returns each -// space-separated word of text, with prefixing spaces included. It will never -// return an empty string. The definition of space is set by unicode.IsSpace. -// -// Adapted from bufio.ScanWords(). -func scanTokensKeepPrefix(data []byte, atEOF bool) (advance int, token []byte, err error) { - // Skip leading spaces. - start := 0 - for width := 0; start < len(data); start += width { - var r rune - r, width = utf8.DecodeRune(data[start:]) - if !unicode.IsSpace(r) { - break - } - } - if atEOF && len(data) == 0 || start == len(data) { - return len(data), data, nil - } - if len(data) > start && data[start] == '#' { - return scanLinesKeepPrefix(data, atEOF) - } - // Scan until space, marking end of word. - for width, i := 0, start; i < len(data); i += width { - var r rune - r, width = utf8.DecodeRune(data[i:]) - if unicode.IsSpace(r) { - return i, data[:i], nil - } - } - // If we're at EOF, we have a final, non-empty, non-terminated word. Return it. - if atEOF && len(data) > start { - return len(data), data, nil - } - // Request more data. - return 0, nil, nil -} - -func newToken(rawb []byte) (*token, error) { - _, tkind, err := bufio.ScanWords(rawb, true) - if err != nil { - return nil, err - } - var ok bool - t := token{rawkind: rawb} - t.kind, ok = keywords[string(tkind)] - if !ok { - trimmed := strings.TrimSpace(string(tkind)) - if trimmed == "" { - t.kind = tkWhitespace // whitespace-only, should happen only at EOF - return &t, nil - } - if strings.HasPrefix(trimmed, "#") { - t.kind = tkComment // this is a comment - return &t, nil - } - return &t, fmt.Errorf("keyword expected; got " + string(tkind)) - } - return &t, nil -} - -func scanValue(scanner *bufio.Scanner, pos int) ([]byte, string, int, error) { - if scanner.Scan() { - raw := scanner.Bytes() - pos += bytes.Count(raw, []byte{'\n'}) - return raw, strings.TrimSpace(string(raw)), pos, nil - } - if err := scanner.Err(); err != nil { - return nil, "", pos, &Error{pos, err.Error()} - } - return nil, "", pos, nil -} - -func parse(r io.Reader, pos int) (*Netrc, error) { - b, err := ioutil.ReadAll(r) - if err != nil { - return nil, err - } - - nrc := Netrc{machines: make([]*Machine, 0, 20), macros: make(Macros, 10)} - - defaultSeen := false - var currentMacro *token - var m *Machine - var t *token - scanner := bufio.NewScanner(bytes.NewReader(b)) - scanner.Split(scanTokensKeepPrefix) - - for scanner.Scan() { - rawb := scanner.Bytes() - if len(rawb) == 0 { - break - } - pos += bytes.Count(rawb, []byte{'\n'}) - t, err = newToken(rawb) - if err != nil { - if currentMacro == nil { - return nil, &Error{pos, err.Error()} - } - currentMacro.rawvalue = append(currentMacro.rawvalue, rawb...) - continue - } - - if currentMacro != nil && bytes.Contains(rawb, []byte{'\n', '\n'}) { - // if macro rawvalue + rawb would contain \n\n, then macro def is over - currentMacro.value = strings.TrimLeft(string(currentMacro.rawvalue), "\r\n") - nrc.macros[currentMacro.macroName] = currentMacro.value - currentMacro = nil - } - - switch t.kind { - case tkMacdef: - if _, t.macroName, pos, err = scanValue(scanner, pos); err != nil { - return nil, &Error{pos, err.Error()} - } - currentMacro = t - case tkDefault: - if defaultSeen { - return nil, &Error{pos, "multiple default token"} - } - if m != nil { - nrc.machines, m = append(nrc.machines, m), nil - } - m = new(Machine) - m.Name = "" - defaultSeen = true - case tkMachine: - if defaultSeen { - return nil, &Error{pos, errBadDefaultOrder} - } - if m != nil { - nrc.machines, m = append(nrc.machines, m), nil - } - m = new(Machine) - if t.rawvalue, m.Name, pos, err = scanValue(scanner, pos); err != nil { - return nil, &Error{pos, err.Error()} - } - t.value = m.Name - m.nametoken = t - case tkLogin: - if m == nil || m.Login != "" { - return nil, &Error{pos, "unexpected token login "} - } - if t.rawvalue, m.Login, pos, err = scanValue(scanner, pos); err != nil { - return nil, &Error{pos, err.Error()} - } - t.value = m.Login - m.logintoken = t - case tkPassword: - if m == nil || m.Password != "" { - return nil, &Error{pos, "unexpected token password"} - } - if t.rawvalue, m.Password, pos, err = scanValue(scanner, pos); err != nil { - return nil, &Error{pos, err.Error()} - } - t.value = m.Password - m.passtoken = t - case tkAccount: - if m == nil || m.Account != "" { - return nil, &Error{pos, "unexpected token account"} - } - if t.rawvalue, m.Account, pos, err = scanValue(scanner, pos); err != nil { - return nil, &Error{pos, err.Error()} - } - t.value = m.Account - m.accounttoken = t - } - - nrc.tokens = append(nrc.tokens, t) - } - - if err := scanner.Err(); err != nil { - return nil, err - } - - if m != nil { - nrc.machines, m = append(nrc.machines, m), nil - } - return &nrc, nil -} - -// ParseFile opens the file at filename and then passes its io.Reader to -// Parse(). -func ParseFile(filename string) (*Netrc, error) { - fd, err := os.Open(filename) - if err != nil { - return nil, err - } - defer fd.Close() - return Parse(fd) -} - -// Parse parses from the the Reader r as a netrc file and returns the set of -// machine information and macros defined in it. The ``default'' machine, -// which is intended to be used when no machine name matches, is identified -// by an empty machine name. There can be only one ``default'' machine. -// -// If there is a parsing error, an Error is returned. -func Parse(r io.Reader) (*Netrc, error) { - return parse(r, 1) -} - -// FindMachine parses the netrc file identified by filename and returns the -// Machine named by name. If a problem occurs parsing the file at filename, an -// error is returned. If a machine named by name exists, it is returned. If no -// Machine with name name is found and there is a ``default'' machine, the -// ``default'' machine is returned. Otherwise, nil is returned. -func FindMachine(filename, name string) (m *Machine, err error) { - n, err := ParseFile(filename) - if err != nil { - return nil, err - } - return n.FindMachine(name), nil -} diff --git a/vendor/github.com/bgentry/go-netrc/netrc/netrc_test.go b/vendor/github.com/bgentry/go-netrc/netrc/netrc_test.go deleted file mode 100644 index 70ceacf6..00000000 --- a/vendor/github.com/bgentry/go-netrc/netrc/netrc_test.go +++ /dev/null @@ -1,559 +0,0 @@ -// Copyright © 2010 Fazlul Shahriar and -// Copyright © 2014 Blake Gentry . -// See LICENSE file for license details. - -package netrc - -import ( - "bytes" - "fmt" - "io" - "io/ioutil" - "os" - "strings" - "testing" -) - -var expectedMachines = []*Machine{ - &Machine{Name: "mail.google.com", Login: "joe@gmail.com", Password: "somethingSecret", Account: "justagmail"}, - &Machine{Name: "ray", Login: "demo", Password: "mypassword", Account: ""}, - &Machine{Name: "weirdlogin", Login: "uname", Password: "pass#pass", Account: ""}, - &Machine{Name: "", Login: "anonymous", Password: "joe@example.com", Account: ""}, -} -var expectedMacros = Macros{ - "allput": "put src/*", - "allput2": " put src/*\nput src2/*", -} - -func eqMachine(a *Machine, b *Machine) bool { - return a.Name == b.Name && - a.Login == b.Login && - a.Password == b.Password && - a.Account == b.Account -} - -func testExpected(n *Netrc, t *testing.T) { - if len(expectedMachines) != len(n.machines) { - t.Errorf("expected %d machines, got %d", len(expectedMachines), len(n.machines)) - } else { - for i, e := range expectedMachines { - if !eqMachine(e, n.machines[i]) { - t.Errorf("bad machine; expected %v, got %v\n", e, n.machines[i]) - } - } - } - - if len(expectedMacros) != len(n.macros) { - t.Errorf("expected %d macros, got %d", len(expectedMacros), len(n.macros)) - } else { - for k, v := range expectedMacros { - if v != n.macros[k] { - t.Errorf("bad macro for %s; expected %q, got %q\n", k, v, n.macros[k]) - } - } - } -} - -var newTokenTests = []struct { - rawkind string - tkind tkType -}{ - {"machine", tkMachine}, - {"\n\n\tmachine", tkMachine}, - {"\n machine", tkMachine}, - {"default", tkDefault}, - {"login", tkLogin}, - {"password", tkPassword}, - {"account", tkAccount}, - {"macdef", tkMacdef}, - {"\n # comment stuff ", tkComment}, - {"\n # I am another comment", tkComment}, - {"\n\t\n ", tkWhitespace}, -} - -var newTokenInvalidTests = []string{ - " junk", - "sdfdsf", - "account#unspaced comment", -} - -func TestNewToken(t *testing.T) { - for _, tktest := range newTokenTests { - tok, err := newToken([]byte(tktest.rawkind)) - if err != nil { - t.Fatal(err) - } - if tok.kind != tktest.tkind { - t.Errorf("expected tok.kind %d, got %d", tktest.tkind, tok.kind) - } - if string(tok.rawkind) != tktest.rawkind { - t.Errorf("expected tok.rawkind %q, got %q", tktest.rawkind, string(tok.rawkind)) - } - } - - for _, tktest := range newTokenInvalidTests { - _, err := newToken([]byte(tktest)) - if err == nil { - t.Errorf("expected error with %q, got none", tktest) - } - } -} - -func TestParse(t *testing.T) { - r := netrcReader("examples/good.netrc", t) - n, err := Parse(r) - if err != nil { - t.Fatal(err) - } - testExpected(n, t) -} - -func TestParseFile(t *testing.T) { - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - testExpected(n, t) - - _, err = ParseFile("examples/bad_default_order.netrc") - if err == nil { - t.Error("expected an error parsing bad_default_order.netrc, got none") - } else if !err.(*Error).BadDefaultOrder() { - t.Error("expected BadDefaultOrder() to be true, got false") - } - - _, err = ParseFile("examples/this_file_doesnt_exist.netrc") - if err == nil { - t.Error("expected an error loading this_file_doesnt_exist.netrc, got none") - } else if _, ok := err.(*os.PathError); !ok { - t.Errorf("expected *os.Error, got %v", err) - } -} - -func TestFindMachine(t *testing.T) { - m, err := FindMachine("examples/good.netrc", "ray") - if err != nil { - t.Fatal(err) - } - if !eqMachine(m, expectedMachines[1]) { - t.Errorf("bad machine; expected %v, got %v\n", expectedMachines[1], m) - } - if m.IsDefault() { - t.Errorf("expected m.IsDefault() to be false") - } - - m, err = FindMachine("examples/good.netrc", "non.existent") - if err != nil { - t.Fatal(err) - } - if !eqMachine(m, expectedMachines[3]) { - t.Errorf("bad machine; expected %v, got %v\n", expectedMachines[3], m) - } - if !m.IsDefault() { - t.Errorf("expected m.IsDefault() to be true") - } -} - -func TestNetrcFindMachine(t *testing.T) { - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - - m := n.FindMachine("ray") - if !eqMachine(m, expectedMachines[1]) { - t.Errorf("bad machine; expected %v, got %v\n", expectedMachines[1], m) - } - if m.IsDefault() { - t.Errorf("expected def to be false") - } - - n = &Netrc{} - m = n.FindMachine("nonexistent") - if m != nil { - t.Errorf("expected nil, got %v", m) - } -} - -func TestMarshalText(t *testing.T) { - // load up expected netrc Marshal output - expected, err := ioutil.ReadAll(netrcReader("examples/good.netrc", t)) - if err != nil { - t.Fatal(err) - } - - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - - result, err := n.MarshalText() - if err != nil { - t.Fatal(err) - } - if string(result) != string(expected) { - t.Errorf("expected:\n%q\ngot:\n%q", string(expected), string(result)) - } - - // make sure tokens w/ no value are not serialized - m := n.FindMachine("mail.google.com") - m.UpdatePassword("") - result, err = n.MarshalText() - if err != nil { - t.Fatal(err) - } - if strings.Contains(string(result), "\tpassword \n") { - fmt.Println(string(result)) - t.Errorf("expected zero-value password token to not be serialzed") - } -} - -var newMachineTests = []struct { - name string - login string - password string - account string -}{ - {"heroku.com", "dodging-samurai-42@heroku.com", "octocatdodgeballchampions", "2011+2013"}, - {"bgentry.io", "special@test.com", "noacct", ""}, - {"github.io", "2@test.com", "", "acctwithnopass"}, - {"someotherapi.com", "", "passonly", ""}, -} - -func TestNewMachine(t *testing.T) { - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - testNewMachine(t, n) - n = &Netrc{} - testNewMachine(t, n) - - // make sure that tokens without a value are not serialized at all - for _, test := range newMachineTests { - n = &Netrc{} - _ = n.NewMachine(test.name, test.login, test.password, test.account) - - bodyb, _ := n.MarshalText() - body := string(bodyb) - - // ensure desired values are present when they should be - if !strings.Contains(body, "machine") { - t.Errorf("NewMachine() %s missing keyword 'machine'", test.name) - } - if !strings.Contains(body, test.name) { - t.Errorf("NewMachine() %s missing value %q", test.name, test.name) - } - if test.login != "" && !strings.Contains(body, "login "+test.login) { - t.Errorf("NewMachine() %s missing value %q", test.name, "login "+test.login) - } - if test.password != "" && !strings.Contains(body, "password "+test.password) { - t.Errorf("NewMachine() %s missing value %q", test.name, "password "+test.password) - } - if test.account != "" && !strings.Contains(body, "account "+test.account) { - t.Errorf("NewMachine() %s missing value %q", test.name, "account "+test.account) - } - - // ensure undesired values are not present when they shouldn't be - if test.login == "" && strings.Contains(body, "login") { - t.Errorf("NewMachine() %s contains unexpected value %q", test.name, "login") - } - if test.password == "" && strings.Contains(body, "password") { - t.Errorf("NewMachine() %s contains unexpected value %q", test.name, "password") - } - if test.account == "" && strings.Contains(body, "account") { - t.Errorf("NewMachine() %s contains unexpected value %q", test.name, "account") - } - } -} - -func testNewMachine(t *testing.T, n *Netrc) { - for _, test := range newMachineTests { - mcount := len(n.machines) - // sanity check - bodyb, _ := n.MarshalText() - body := string(bodyb) - for _, value := range []string{test.name, test.login, test.password, test.account} { - if value != "" && strings.Contains(body, value) { - t.Errorf("MarshalText() before NewMachine() contained unexpected %q", value) - } - } - - // test prefix for machine token - prefix := "\n" - if len(n.tokens) == 0 { - prefix = "" - } - - m := n.NewMachine(test.name, test.login, test.password, test.account) - if m == nil { - t.Fatalf("NewMachine() returned nil") - } - - if len(n.machines) != mcount+1 { - t.Errorf("n.machines count expected %d, got %d", mcount+1, len(n.machines)) - } - // check values - if m.Name != test.name { - t.Errorf("m.Name expected %q, got %q", test.name, m.Name) - } - if m.Login != test.login { - t.Errorf("m.Login expected %q, got %q", test.login, m.Login) - } - if m.Password != test.password { - t.Errorf("m.Password expected %q, got %q", test.password, m.Password) - } - if m.Account != test.account { - t.Errorf("m.Account expected %q, got %q", test.account, m.Account) - } - // check tokens - checkToken(t, "nametoken", m.nametoken, tkMachine, prefix+"machine", test.name) - checkToken(t, "logintoken", m.logintoken, tkLogin, "\n\tlogin", test.login) - checkToken(t, "passtoken", m.passtoken, tkPassword, "\n\tpassword", test.password) - checkToken(t, "accounttoken", m.accounttoken, tkAccount, "\n\taccount", test.account) - // check marshal output - bodyb, _ = n.MarshalText() - body = string(bodyb) - for _, value := range []string{test.name, test.login, test.password, test.account} { - if !strings.Contains(body, value) { - t.Errorf("MarshalText() after NewMachine() did not include %q as expected", value) - } - } - } -} - -func checkToken(t *testing.T, name string, tok *token, kind tkType, rawkind, value string) { - if tok == nil { - t.Errorf("%s not defined", name) - return - } - if tok.kind != kind { - t.Errorf("%s expected kind %d, got %d", name, kind, tok.kind) - } - if string(tok.rawkind) != rawkind { - t.Errorf("%s expected rawkind %q, got %q", name, rawkind, string(tok.rawkind)) - } - if tok.value != value { - t.Errorf("%s expected value %q, got %q", name, value, tok.value) - } - if tok.value != value { - t.Errorf("%s expected value %q, got %q", name, value, tok.value) - } -} - -func TestNewMachineGoesBeforeDefault(t *testing.T) { - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - m := n.NewMachine("mymachine", "mylogin", "mypassword", "myaccount") - if m2 := n.machines[len(n.machines)-2]; m2 != m { - t.Errorf("expected machine %v, got %v", m, m2) - } -} - -func TestRemoveMachine(t *testing.T) { - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - - tests := []string{"mail.google.com", "weirdlogin"} - - for _, name := range tests { - mcount := len(n.machines) - // sanity check - m := n.FindMachine(name) - if m == nil { - t.Fatalf("machine %q not found", name) - } - if m.IsDefault() { - t.Fatalf("expected machine %q, got default instead", name) - } - n.RemoveMachine(name) - - if len(n.machines) != mcount-1 { - t.Errorf("n.machines count expected %d, got %d", mcount-1, len(n.machines)) - } - - // make sure Machine is no longer returned by FindMachine() - if m2 := n.FindMachine(name); m2 != nil && !m2.IsDefault() { - t.Errorf("Machine %q not removed from Machines list", name) - } - - // make sure tokens are not present in tokens list - for _, token := range []*token{m.nametoken, m.logintoken, m.passtoken, m.accounttoken} { - if token != nil { - for _, tok2 := range n.tokens { - if tok2 == token { - t.Errorf("token not removed from tokens list: %v", token) - break - } - } - } - } - - bodyb, _ := n.MarshalText() - body := string(bodyb) - for _, value := range []string{m.Name, m.Login, m.Password, m.Account} { - if value != "" && strings.Contains(body, value) { - t.Errorf("MarshalText() after RemoveMachine() contained unexpected %q", value) - } - } - } -} - -func TestUpdateLogin(t *testing.T) { - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - - tests := []struct { - exists bool - name string - oldlogin string - newlogin string - }{ - {true, "mail.google.com", "joe@gmail.com", "joe2@gmail.com"}, - {false, "heroku.com", "", "dodging-samurai-42@heroku.com"}, - } - - bodyb, _ := n.MarshalText() - body := string(bodyb) - for _, test := range tests { - if strings.Contains(body, test.newlogin) { - t.Errorf("MarshalText() before UpdateLogin() contained unexpected %q", test.newlogin) - } - } - - for _, test := range tests { - m := n.FindMachine(test.name) - if m.IsDefault() == test.exists { - t.Errorf("expected machine %s to not exist, but it did", test.name) - } else { - if !test.exists { - m = n.NewMachine(test.name, test.newlogin, "", "") - } - if m == nil { - t.Errorf("machine %s was nil", test.name) - continue - } - m.UpdateLogin(test.newlogin) - m := n.FindMachine(test.name) - if m.Login != test.newlogin { - t.Errorf("expected new login %q, got %q", test.newlogin, m.Login) - } - if m.logintoken.value != test.newlogin { - t.Errorf("expected m.logintoken %q, got %q", test.newlogin, m.logintoken.value) - } - } - } - - bodyb, _ = n.MarshalText() - body = string(bodyb) - for _, test := range tests { - if test.exists && strings.Contains(body, test.oldlogin) { - t.Errorf("MarshalText() after UpdateLogin() contained unexpected %q", test.oldlogin) - } - if !strings.Contains(body, test.newlogin) { - t.Errorf("MarshalText after UpdatePassword did not contain %q as expected", test.newlogin) - } - } -} - -func TestUpdatePassword(t *testing.T) { - n, err := ParseFile("examples/good.netrc") - if err != nil { - t.Fatal(err) - } - - tests := []struct { - exists bool - name string - oldpassword string - newpassword string - }{ - {true, "ray", "mypassword", "supernewpass"}, - {false, "heroku.com", "", "octocatdodgeballchampions"}, - } - - bodyb, _ := n.MarshalText() - body := string(bodyb) - for _, test := range tests { - if test.exists && !strings.Contains(body, test.oldpassword) { - t.Errorf("MarshalText() before UpdatePassword() did not include %q as expected", test.oldpassword) - } - if strings.Contains(body, test.newpassword) { - t.Errorf("MarshalText() before UpdatePassword() contained unexpected %q", test.newpassword) - } - } - - for _, test := range tests { - m := n.FindMachine(test.name) - if m.IsDefault() == test.exists { - t.Errorf("expected machine %s to not exist, but it did", test.name) - } else { - if !test.exists { - m = n.NewMachine(test.name, "", test.newpassword, "") - } - if m == nil { - t.Errorf("machine %s was nil", test.name) - continue - } - m.UpdatePassword(test.newpassword) - m = n.FindMachine(test.name) - if m.Password != test.newpassword { - t.Errorf("expected new password %q, got %q", test.newpassword, m.Password) - } - if m.passtoken.value != test.newpassword { - t.Errorf("expected m.passtoken %q, got %q", test.newpassword, m.passtoken.value) - } - } - } - - bodyb, _ = n.MarshalText() - body = string(bodyb) - for _, test := range tests { - if test.exists && strings.Contains(body, test.oldpassword) { - t.Errorf("MarshalText() after UpdatePassword() contained unexpected %q", test.oldpassword) - } - if !strings.Contains(body, test.newpassword) { - t.Errorf("MarshalText() after UpdatePassword() did not contain %q as expected", test.newpassword) - } - } -} - -func TestNewFile(t *testing.T) { - var n Netrc - - result, err := n.MarshalText() - if err != nil { - t.Fatal(err) - } - if string(result) != "" { - t.Errorf("expected empty result=\"\", got %q", string(result)) - } - - n.NewMachine("netrctest.heroku.com", "auser", "apassword", "") - - result, err = n.MarshalText() - if err != nil { - t.Fatal(err) - } - expected := `machine netrctest.heroku.com - login auser - password apassword` - - if string(result) != expected { - t.Errorf("expected result:\n%q\ngot:\n%q", expected, string(result)) - } -} - -func netrcReader(filename string, t *testing.T) io.Reader { - b, err := ioutil.ReadFile(filename) - if err != nil { - t.Fatal(err) - } - return bytes.NewReader(b) -} diff --git a/vendor/github.com/clbanning/mxj/LICENSE b/vendor/github.com/clbanning/mxj/LICENSE deleted file mode 100644 index f27bccdf..00000000 --- a/vendor/github.com/clbanning/mxj/LICENSE +++ /dev/null @@ -1,55 +0,0 @@ -Copyright (c) 2012-2016 Charles Banning . All rights reserved. - -The MIT License (MIT) - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - -=============================================================================== - -Go Language Copyright & License - - -Copyright 2009 The Go Authors. All rights reserved. -Use of this source code is governed by a BSD-style -license that can be found in the LICENSE file. - -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 Google Inc. 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. diff --git a/vendor/github.com/clbanning/mxj/anyxml.go b/vendor/github.com/clbanning/mxj/anyxml.go deleted file mode 100644 index f8701268..00000000 --- a/vendor/github.com/clbanning/mxj/anyxml.go +++ /dev/null @@ -1,177 +0,0 @@ -package mxj - -import ( - "encoding/xml" - "reflect" -) - -const ( - DefaultElementTag = "element" -) - -// Encode arbitrary value as XML. -// -// Note: unmarshaling the resultant -// XML may not return the original value, since tag labels may have been injected -// to create the XML representation of the value. -/* - Encode an arbitrary JSON object. - package main - - import ( - "encoding/json" - "fmt" - "github.com/clbanning/mxj" - ) - - func main() { - jsondata := []byte(`[ - { "somekey":"somevalue" }, - "string", - 3.14159265, - true - ]`) - var i interface{} - err := json.Unmarshal(jsondata, &i) - if err != nil { - // do something - } - x, err := mxj.AnyXmlIndent(i, "", " ", "mydoc") - if err != nil { - // do something else - } - fmt.Println(string(x)) - } - - output: - - somevalue - string - 3.14159265 - true - -*/ -// Alternative values for DefaultRootTag and DefaultElementTag can be set as: -// AnyXml( v, myRootTag, myElementTag). -func AnyXml(v interface{}, tags ...string) ([]byte, error) { - if reflect.TypeOf(v).Kind() == reflect.Struct { - return xml.Marshal(v) - } - - var err error - s := new(string) - p := new(pretty) - - var rt, et string - if len(tags) == 1 || len(tags) == 2 { - rt = tags[0] - } else { - rt = DefaultRootTag - } - if len(tags) == 2 { - et = tags[1] - } else { - et = DefaultElementTag - } - - var ss string - var b []byte - switch v.(type) { - case []interface{}: - ss = "<" + rt + ">" - for _, vv := range v.([]interface{}) { - switch vv.(type) { - case map[string]interface{}: - m := vv.(map[string]interface{}) - if len(m) == 1 { - for tag, val := range m { - err = mapToXmlIndent(false, s, tag, val, p) - } - } else { - err = mapToXmlIndent(false, s, et, vv, p) - } - default: - err = mapToXmlIndent(false, s, et, vv, p) - } - if err != nil { - break - } - } - ss += *s + "" - b = []byte(ss) - case map[string]interface{}: - m := Map(v.(map[string]interface{})) - b, err = m.Xml(rt) - default: - err = mapToXmlIndent(false, s, rt, v, p) - b = []byte(*s) - } - - return b, err -} - -// Encode an arbitrary value as a pretty XML string. -// Alternative values for DefaultRootTag and DefaultElementTag can be set as: -// AnyXmlIndent( v, "", " ", myRootTag, myElementTag). -func AnyXmlIndent(v interface{}, prefix, indent string, tags ...string) ([]byte, error) { - if reflect.TypeOf(v).Kind() == reflect.Struct { - return xml.MarshalIndent(v, prefix, indent) - } - - var err error - s := new(string) - p := new(pretty) - p.indent = indent - p.padding = prefix - - var rt, et string - if len(tags) == 1 || len(tags) == 2 { - rt = tags[0] - } else { - rt = DefaultRootTag - } - if len(tags) == 2 { - et = tags[1] - } else { - et = DefaultElementTag - } - - var ss string - var b []byte - switch v.(type) { - case []interface{}: - ss = "<" + rt + ">\n" - p.Indent() - for _, vv := range v.([]interface{}) { - switch vv.(type) { - case map[string]interface{}: - m := vv.(map[string]interface{}) - if len(m) == 1 { - for tag, val := range m { - err = mapToXmlIndent(true, s, tag, val, p) - } - } else { - p.start = 1 // we 1 tag in - err = mapToXmlIndent(true, s, et, vv, p) - *s += "\n" - } - default: - p.start = 0 // in case trailing p.start = 1 - err = mapToXmlIndent(true, s, et, vv, p) - } - if err != nil { - break - } - } - ss += *s + "" - b = []byte(ss) - case map[string]interface{}: - m := Map(v.(map[string]interface{})) - b, err = m.XmlIndent(prefix, indent, rt) - default: - err = mapToXmlIndent(true, s, rt, v, p) - b = []byte(*s) - } - - return b, err -} diff --git a/vendor/github.com/clbanning/mxj/anyxml_test.go b/vendor/github.com/clbanning/mxj/anyxml_test.go deleted file mode 100644 index df722828..00000000 --- a/vendor/github.com/clbanning/mxj/anyxml_test.go +++ /dev/null @@ -1,110 +0,0 @@ -package mxj - -import ( - "encoding/json" - "fmt" - "testing" -) - -func TestAnyXmlHeader(t *testing.T) { - fmt.Println("\n---------------- anyxml_test.go ...\n") -} - -var anydata = []byte(`[ - { - "somekey": "somevalue" - }, - { - "somekey": "somevalue" - }, - { - "somekey": "somevalue", - "someotherkey": "someothervalue" - }, - "string", - 3.14159265, - true -]`) - -type MyStruct struct { - Somekey string `xml:"somekey"` - B float32 `xml:"floatval"` -} - -func TestAnyXml(t *testing.T) { - var i interface{} - err := json.Unmarshal(anydata, &i) - if err != nil { - t.Fatal(err) - } - x, err := AnyXml(i) - if err != nil { - t.Fatal(err) - } - fmt.Println("[]->x:", string(x)) - - a := []interface{}{"try", "this", 3.14159265, true} - x, err = AnyXml(a) - if err != nil { - t.Fatal(err) - } - fmt.Println("a->x:", string(x)) - - x, err = AnyXml(a, "myRootTag", "myElementTag") - if err != nil { - t.Fatal(err) - } - fmt.Println("a->x:", string(x)) - - x, err = AnyXml(3.14159625) - if err != nil { - t.Fatal(err) - } - fmt.Println("f->x:", string(x)) - - s := MyStruct{"somevalue", 3.14159625} - x, err = AnyXml(s) - if err != nil { - t.Fatal(err) - } - fmt.Println("s->x:", string(x)) -} - -func TestAnyXmlIndent(t *testing.T) { - var i interface{} - err := json.Unmarshal(anydata, &i) - if err != nil { - t.Fatal(err) - } - x, err := AnyXmlIndent(i, "", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("[]->x:\n", string(x)) - - a := []interface{}{"try", "this", 3.14159265, true} - x, err = AnyXmlIndent(a, "", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("a->x:\n", string(x)) - - x, err = AnyXmlIndent(3.14159625, "", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("f->x:\n", string(x)) - - x, err = AnyXmlIndent(3.14159625, "", " ", "myRootTag", "myElementTag") - if err != nil { - t.Fatal(err) - } - fmt.Println("f->x:\n", string(x)) - - s := MyStruct{"somevalue", 3.14159625} - x, err = AnyXmlIndent(s, "", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("s->x:\n", string(x)) -} diff --git a/vendor/github.com/clbanning/mxj/atomFeedString.xml b/vendor/github.com/clbanning/mxj/atomFeedString.xml deleted file mode 100644 index 474575a4..00000000 --- a/vendor/github.com/clbanning/mxj/atomFeedString.xml +++ /dev/null @@ -1,54 +0,0 @@ - -Code Review - My issueshttp://codereview.appspot.com/rietveld<>rietveld: an attempt at pubsubhubbub -2009-10-04T01:35:58+00:00email-address-removedurn:md5:134d9179c41f806be79b3a5f7877d19a - An attempt at adding pubsubhubbub support to Rietveld. -http://code.google.com/p/pubsubhubbub -http://code.google.com/p/rietveld/issues/detail?id=155 - -The server side of the protocol is trivial: - 1. add a &lt;link rel=&quot;hub&quot; href=&quot;hub-server&quot;&gt; tag to all - feeds that will be pubsubhubbubbed. - 2. every time one of those feeds changes, tell the hub - with a simple POST request. - -I have tested this by adding debug prints to a local hub -server and checking that the server got the right publish -requests. - -I can&#39;t quite get the server to work, but I think the bug -is not in my code. I think that the server expects to be -able to grab the feed and see the feed&#39;s actual URL in -the link rel=&quot;self&quot;, but the default value for that drops -the :port from the URL, and I cannot for the life of me -figure out how to get the Atom generator deep inside -django not to do that, or even where it is doing that, -or even what code is running to generate the Atom feed. -(I thought I knew but I added some assert False statements -and it kept running!) - -Ignoring that particular problem, I would appreciate -feedback on the right way to get the two values at -the top of feeds.py marked NOTE(rsc). - - -rietveld: correct tab handling -2009-10-03T23:02:17+00:00email-address-removedurn:md5:0a2a4f19bb815101f0ba2904aed7c35a - This fixes the buggy tab rendering that can be seen at -http://codereview.appspot.com/116075/diff/1/2 - -The fundamental problem was that the tab code was -not being told what column the text began in, so it -didn&#39;t know where to put the tab stops. Another problem -was that some of the code assumed that string byte -offsets were the same as column offsets, which is only -true if there are no tabs. - -In the process of fixing this, I cleaned up the arguments -to Fold and ExpandTabs and renamed them Break and -_ExpandTabs so that I could be sure that I found all the -call sites. I also wanted to verify that ExpandTabs was -not being used from outside intra_region_diff.py. - - - ` - diff --git a/vendor/github.com/clbanning/mxj/attrprefix_test.go b/vendor/github.com/clbanning/mxj/attrprefix_test.go deleted file mode 100644 index f2d0c1e6..00000000 --- a/vendor/github.com/clbanning/mxj/attrprefix_test.go +++ /dev/null @@ -1,147 +0,0 @@ -// attrprefix_test.go - change attrPrefix var - -package mxj - -import ( - "fmt" - "testing" -) - -var data = []byte(` - - a test - a test - -`) - -func TestPrefixDefault(t *testing.T) { - fmt.Println("----------------- TestPrefixDefault ...") - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - vals, err := m.ValuesForKey("-attr1") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 -attr1 vals", len(vals)) - } - vals, err = m.ValuesForKey("-attr2") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 -attr2 vals", len(vals)) - } -} - -func TestPrefixNoHyphen(t *testing.T) { - fmt.Println("----------------- TestPrefixNoHyphen ...") - PrependAttrWithHyphen(false) - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - vals, err := m.ValuesForKey("attr1") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 attr1 vals", len(vals)) - } - vals, err = m.ValuesForKey("attr2") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 attr2 vals", len(vals)) - } -} - -func TestPrefixUnderscore(t *testing.T) { - fmt.Println("----------------- TestPrefixUnderscore ...") - SetAttrPrefix("_") - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - vals, err := m.ValuesForKey("_attr1") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 _attr1 vals", len(vals)) - } - vals, err = m.ValuesForKey("_attr2") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 _attr2 vals", len(vals)) - } -} - -func TestPrefixAt(t *testing.T) { - fmt.Println("----------------- TestPrefixAt ...") - SetAttrPrefix("@") - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - vals, err := m.ValuesForKey("@attr1") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 @attr1 vals", len(vals)) - } - vals, err = m.ValuesForKey("@attr2") - if err != nil { - t.Fatal(err) - } - if len(vals) != 2 { - t.Fatal("didn't get 2 @attr2 vals", len(vals)) - } -} - -func TestMarshalPrefixDefault(t *testing.T) { - fmt.Println("----------------- TestMarshalPrefixDefault ...") - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - x, err := m.XmlIndent("", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println(string(x)) -} - -func TestMarshalPrefixNoHyphen(t *testing.T) { - fmt.Println("----------------- TestMarshalPrefixNoHyphen ...") - PrependAttrWithHyphen(false) - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - x, err := m.XmlIndent("", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println(string(x)) -} - -func TestMarshalPrefixUnderscore(t *testing.T) { - fmt.Println("----------------- TestMarshalPrefixUnderscore ...") - SetAttrPrefix("_") - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - x, err := m.XmlIndent("", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println(string(x)) -} diff --git a/vendor/github.com/clbanning/mxj/badxml_test.go b/vendor/github.com/clbanning/mxj/badxml_test.go deleted file mode 100644 index 8cce4756..00000000 --- a/vendor/github.com/clbanning/mxj/badxml_test.go +++ /dev/null @@ -1,68 +0,0 @@ -// trying to recreate a panic - -package mxj - -import ( - "bytes" - "fmt" - "testing" -) - -var baddata = []byte(` - something strange - - - - - http://www.something.com - Some description goes here. - - -`) - -func TestBadXml(t *testing.T) { - fmt.Println("\n---------------- badxml_test.go\n") - fmt.Println("TestBadXml ...") - m, err := NewMapXml(baddata) - if err != nil { - t.Fatalf("err: didn't find xml.StartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.Xml() - fmt.Println("m:", string(j)) -} - -func TestBadXmlSeq(t *testing.T) { - fmt.Println("TestBadXmlSeq ...") - m, err := NewMapXmlSeq(baddata) - if err != nil { - t.Fatalf("err: didn't find xmlStartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.XmlSeq() - fmt.Println("m:", string(j)) -} - -func TestBadXmlReader(t *testing.T) { - fmt.Println("TestBadXmlReader ...") - r := bytes.NewReader(baddata) - m, err := NewMapXmlReader(r) - if err != nil { - t.Fatalf("err: didn't find xml.StartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.Xml() - fmt.Println("m:", string(j)) -} - -func TestBadXmlSeqReader(t *testing.T) { - fmt.Println("TestBadXmlSeqReader ...") - r := bytes.NewReader(baddata) - m, err := NewMapXmlSeqReader(r) - if err != nil { - t.Fatalf("err: didn't find xmlStartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.XmlSeq() - fmt.Println("m:", string(j)) -} diff --git a/vendor/github.com/clbanning/mxj/bom_test.go b/vendor/github.com/clbanning/mxj/bom_test.go deleted file mode 100644 index a7ab2f5d..00000000 --- a/vendor/github.com/clbanning/mxj/bom_test.go +++ /dev/null @@ -1,88 +0,0 @@ -// bomxml.go - test handling Byte-Order-Mark headers - -package mxj - -import ( - "bytes" - "fmt" - "io" - "testing" -) - -// Check for Byte-Order-Mark header. -var boms = [][]byte{ - {'\xef', '\xbb', '\xbf'}, - {'\xfe', '\xff'}, - {'\xff', '\xfe'}, - {'\x00', '\x00', '\xfe', '\xff'}, - {'\xff', '\xfe', '\x00', '\x00'}, -} - -func TestBom(t *testing.T) { - fmt.Println("\n--------------- bom_test.go \n") - fmt.Println("TestBom ...") - - // use just UTF-8 BOM ... no alternative CharSetReader - if _, err := NewMapXml(boms[0]); err != io.EOF { - t.Fatalf("NewMapXml err; %v\n", err) - } - - if _, err := NewMapXmlSeq(boms[0]); err != io.EOF { - t.Fatalf("NewMapXmlSeq err: %v\n", err) - } -} - -var bomdata = append(boms[0], []byte(` - - - - http://www.something.com - Some description goes here. - -`)...) - -func TestBomData(t *testing.T) { - fmt.Println("TestBomData ...") - m, err := NewMapXml(bomdata) - if err != nil { - t.Fatalf("err: didn't find xml.StartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.Xml() - fmt.Println("m:", string(j)) -} - -func TestBomDataSeq(t *testing.T) { - fmt.Println("TestBomDataSeq ...") - m, err := NewMapXmlSeq(bomdata) - if err != nil { - t.Fatalf("err: didn't find xml.StartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.XmlSeq() - fmt.Println("m:", string(j)) -} - -func TestBomDataReader(t *testing.T) { - fmt.Println("TestBomDataReader ...") - r := bytes.NewReader(bomdata) - m, err := NewMapXmlReader(r) - if err != nil { - t.Fatalf("err: didn't find xml.StartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.Xml() - fmt.Println("m:", string(j)) -} - -func TestBomDataSeqReader(t *testing.T) { - fmt.Println("TestBomDataSeqReader ...") - r := bytes.NewReader(bomdata) - m, err := NewMapXmlSeqReader(r) - if err != nil { - t.Fatalf("err: didn't find xml.StartElement") - } - fmt.Printf("m: %v\n", m) - j, _ := m.XmlSeq() - fmt.Println("m:", string(j)) -} diff --git a/vendor/github.com/clbanning/mxj/bulk_test.go b/vendor/github.com/clbanning/mxj/bulk_test.go deleted file mode 100644 index bb64f9c0..00000000 --- a/vendor/github.com/clbanning/mxj/bulk_test.go +++ /dev/null @@ -1,107 +0,0 @@ -// bulk_test.go - uses Handler and Writer functions to process some streams as a demo. - -package mxj - -import ( - "bytes" - "fmt" - "testing" -) - -func TestBulkHeader(t *testing.T) { - fmt.Println("\n---------------- bulk_test.go ...\n") -} - -var jsonWriter = new(bytes.Buffer) -var xmlWriter = new(bytes.Buffer) - -var jsonErrLog = new(bytes.Buffer) -var xmlErrLog = new(bytes.Buffer) - -func TestXmlReader(t *testing.T) { - // create Reader for xmldata - xmlReader := bytes.NewReader(xmldata) - - // read XML from Readerand pass Map value with the raw XML to handler - err := HandleXmlReader(xmlReader, bxmaphandler, bxerrhandler) - if err != nil { - t.Fatal("err:", err.Error()) - } - - // get the JSON - j := make([]byte, jsonWriter.Len()) - _, _ = jsonWriter.Read(j) - - // get the errors - e := make([]byte, xmlErrLog.Len()) - _, _ = xmlErrLog.Read(e) - - // print the input - fmt.Println("XmlReader, xmldata:\n", string(xmldata)) - // print the result - fmt.Println("XmlReader, result :\n", string(j)) - // print the errors - fmt.Println("XmlReader, errors :\n", string(e)) -} - -func bxmaphandler(m Map) bool { - j, err := m.JsonIndent("", " ", true) - if err != nil { - return false - } - - _, _ = jsonWriter.Write(j) - // put in a NL to pretty up printing the Writer - _, _ = jsonWriter.Write([]byte("\n")) - return true -} - -func bxerrhandler(err error) bool { - // write errors to file - _, _ = xmlErrLog.Write([]byte(err.Error())) - _, _ = xmlErrLog.Write([]byte("\n")) // pretty up - return true -} - -func TestJsonReader(t *testing.T) { - jsonReader := bytes.NewReader(jsondata) - - // read all the JSON - err := HandleJsonReader(jsonReader, bjmaphandler, bjerrhandler) - if err != nil { - t.Fatal("err:", err.Error()) - } - - // get the XML - x := make([]byte, xmlWriter.Len()) - _, _ = xmlWriter.Read(x) - - // get the errors - e := make([]byte, jsonErrLog.Len()) - _, _ = jsonErrLog.Read(e) - - // print the input - fmt.Println("JsonReader, jsondata:\n", string(jsondata)) - // print the result - fmt.Println("JsonReader, result :\n", string(x)) - // print the errors - fmt.Println("JsonReader, errors :\n", string(e)) -} - -func bjmaphandler(m Map) bool { - x, err := m.XmlIndent(" ", " ") - if err != nil { - return false - } - _, _ = xmlWriter.Write(x) - // put in a NL to pretty up printing the Writer - _, _ = xmlWriter.Write([]byte("\n")) - return true -} - -func bjerrhandler(err error) bool { - // write errors to file - _, _ = jsonErrLog.Write([]byte(err.Error())) - _, _ = jsonErrLog.Write([]byte("\n")) // pretty up - return true -} diff --git a/vendor/github.com/clbanning/mxj/bulkraw_test.go b/vendor/github.com/clbanning/mxj/bulkraw_test.go deleted file mode 100644 index 61c61fd5..00000000 --- a/vendor/github.com/clbanning/mxj/bulkraw_test.go +++ /dev/null @@ -1,113 +0,0 @@ -// bulk_test.go - uses Handler and Writer functions to process some streams as a demo. - -package mxj - -import ( - "bytes" - "fmt" - "testing" -) - -func TestBulkRawHeader(t *testing.T) { - fmt.Println("\n---------------- bulkraw_test.go ...\n") -} - -// use data from bulk_test.go - -var jsonWriterRaw = new(bytes.Buffer) -var xmlWriterRaw = new(bytes.Buffer) - -var jsonErrLogRaw = new(bytes.Buffer) -var xmlErrLogRaw = new(bytes.Buffer) - -func TestXmlReaderRaw(t *testing.T) { - // create Reader for xmldata - xmlReader := bytes.NewReader(xmldata) - - // read XML from Reader and pass Map value with the raw XML to handler - err := HandleXmlReaderRaw(xmlReader, bxmaphandlerRaw, bxerrhandlerRaw) - if err != nil { - t.Fatal("err:", err.Error()) - } - - // get the JSON - j := make([]byte, jsonWriterRaw.Len()) - _, _ = jsonWriterRaw.Read(j) - - // get the errors - e := make([]byte, xmlErrLogRaw.Len()) - _, _ = xmlErrLogRaw.Read(e) - - // print the input - fmt.Println("XmlReaderRaw, xmldata:\n", string(xmldata)) - // print the result - fmt.Println("XmlReaderRaw, result :\n", string(j)) - // print the errors - fmt.Println("XmlReaderRaw, errors :\n", string(e)) -} - -func bxmaphandlerRaw(m Map, raw []byte) bool { - j, err := m.JsonIndent("", " ", true) - if err != nil { - return false - } - - _, _ = jsonWriterRaw.Write(j) - // put in a NL to pretty up printing the Writer - _, _ = jsonWriterRaw.Write([]byte("\n")) - return true -} - -func bxerrhandlerRaw(err error, raw []byte) bool { - // write errors to file - _, _ = xmlErrLogRaw.Write([]byte(err.Error())) - _, _ = xmlErrLogRaw.Write([]byte("\n")) // pretty up - _, _ = xmlErrLogRaw.Write(raw) - _, _ = xmlErrLogRaw.Write([]byte("\n")) // pretty up - return true -} - -func TestJsonReaderRaw(t *testing.T) { - jsonReader := bytes.NewReader(jsondata) - - // read all the JSON - err := HandleJsonReaderRaw(jsonReader, bjmaphandlerRaw, bjerrhandlerRaw) - if err != nil { - t.Fatal("err:", err.Error()) - } - - // get the XML - x := make([]byte, xmlWriterRaw.Len()) - _, _ = xmlWriterRaw.Read(x) - - // get the errors - e := make([]byte, jsonErrLogRaw.Len()) - _, _ = jsonErrLogRaw.Read(e) - - // print the input - fmt.Println("JsonReaderRaw, jsondata:\n", string(jsondata)) - // print the result - fmt.Println("JsonReaderRaw, result :\n", string(x)) - // print the errors - fmt.Println("JsonReaderRaw, errors :\n", string(e)) -} - -func bjmaphandlerRaw(m Map, raw []byte) bool { - x, err := m.XmlIndent(" ", " ") - if err != nil { - return false - } - _, _ = xmlWriterRaw.Write(x) - // put in a NL to pretty up printing the Writer - _, _ = xmlWriterRaw.Write([]byte("\n")) - return true -} - -func bjerrhandlerRaw(err error, raw []byte) bool { - // write errors to file - _, _ = jsonErrLogRaw.Write([]byte(err.Error())) - _, _ = jsonErrLogRaw.Write([]byte("\n")) // pretty up, Error() from json.Unmarshal !NL - _, _ = jsonErrLogRaw.Write(raw) - _, _ = jsonErrLogRaw.Write([]byte("\n")) // pretty up - return true -} diff --git a/vendor/github.com/clbanning/mxj/data_test.go b/vendor/github.com/clbanning/mxj/data_test.go deleted file mode 100644 index 357513f6..00000000 --- a/vendor/github.com/clbanning/mxj/data_test.go +++ /dev/null @@ -1,38 +0,0 @@ -package mxj - -var xmldata = []byte(` - - William H. Gaddis - The Recognitions - One of the seminal American novels of the 20th century. - - - William H. Gaddis - JR - Won the National Book Award. - - - Austin Tappan Wright - Islandia - An example of earlier 20th century American utopian fiction. - - - John Hawkes - The Beetle Leg - A lyrical novel about the construction of Ft. Peck Dam in Montana. - - - - T.E. - Porter - - King's Day - A magical novella. -`) - -var jsondata = []byte(` - {"book":{"author":"William H. Gaddis","review":"One of the great seminal American novels of the 20th century.","title":"The Recognitions"}} -{"book":{"author":"Austin Tappan Wright","review":"An example of earlier 20th century American utopian fiction.","title":"Islandia"}} -{"book":{"author":"John Hawkes","review":"A lyrical novel about the construction of Ft. Peck Dam in Montana.","title":"The Beetle Leg"}} -{"book":{"author":{"first_name":"T.E.","last_name":"Porter"},"review":"A magical novella.","title":"King's Day"}} -{ "here":"we", "put":"in", "an":error }`) diff --git a/vendor/github.com/clbanning/mxj/doc.go b/vendor/github.com/clbanning/mxj/doc.go deleted file mode 100644 index c8b5e662..00000000 --- a/vendor/github.com/clbanning/mxj/doc.go +++ /dev/null @@ -1,118 +0,0 @@ -// mxj - A collection of map[string]interface{} and associated XML and JSON utilities. -// Copyright 2012-2015 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -/* -Marshal/Unmarshal XML to/from JSON and map[string]interface{} values, and extract/modify values from maps by key or key-path, including wildcards. - -mxj supplants the legacy x2j and j2x packages. If you want the old syntax, use mxj/x2j or mxj/j2x packages. - -Note: this library was designed for processing ad hoc anonymous messages. Bulk processing large data sets may be much more efficiently performed using the encoding/xml or encoding/json packages from Go's standard library directly. - -Note: - 2016.06.25: Support overriding default XML attribute prefix, "-", in Map keys - SetAttrPrefix(). - 2016.05.26: Support customization of xml.Decoder by exposing CustomDecoder variable. - 2016.03.19: Escape invalid chars when encoding XML attribute and element values - XMLEscapeChars(). - 2016.03.02: By default decoding XML with float64 and bool value casting will not cast "NaN", "Inf", and "-Inf". - To cast them to float64, first set flag with CastNanInf(true). - 2016.02.22: New m.Root(), m.Elements(), m.Attributes methods let you examine XML document structure. - 2016.02.16: Add CoerceKeysToLower() option to handle tags with mixed capitalization. - 2016.02.12: Seek for first xml.StartElement token; only return error if io.EOF is reached first (handles BOM). - 2015-12-02: NewMapXmlSeq() with mv.XmlSeq() & co. will try to preserve structure of XML doc when re-encoding. - 2014-08-02: AnyXml() and AnyXmlIndent() will try to marshal arbitrary values to XML. - -SUMMARY - - type Map map[string]interface{} - - Create a Map value, 'm', from any map[string]interface{} value, 'v': - m := Map(v) - - Unmarshal / marshal XML as a Map value, 'm': - m, err := NewMapXml(xmlValue) // unmarshal - xmlValue, err := m.Xml() // marshal - - Unmarshal XML from an io.Reader as a Map value, 'm': - m, err := NewMapReader(xmlReader) // repeated calls, as with an os.File Reader, will process stream - m, raw, err := NewMapReaderRaw(xmlReader) // 'raw' is the raw XML that was decoded - - Marshal Map value, 'm', to an XML Writer (io.Writer): - err := m.XmlWriter(xmlWriter) - raw, err := m.XmlWriterRaw(xmlWriter) // 'raw' is the raw XML that was written on xmlWriter - - Also, for prettified output: - xmlValue, err := m.XmlIndent(prefix, indent, ...) - err := m.XmlIndentWriter(xmlWriter, prefix, indent, ...) - raw, err := m.XmlIndentWriterRaw(xmlWriter, prefix, indent, ...) - - Bulk process XML with error handling (note: handlers must return a boolean value): - err := HandleXmlReader(xmlReader, mapHandler(Map), errHandler(error)) - err := HandleXmlReaderRaw(xmlReader, mapHandler(Map, []byte), errHandler(error, []byte)) - - Converting XML to JSON: see Examples for NewMapXml and HandleXmlReader. - - There are comparable functions and methods for JSON processing. - - Arbitrary structure values can be decoded to / encoded from Map values: - m, err := NewMapStruct(structVal) - err := m.Struct(structPointer) - - To work with XML tag values, JSON or Map key values or structure field values, decode the XML, JSON - or structure to a Map value, 'm', or cast a map[string]interface{} value to a Map value, 'm', then: - paths := m.PathsForKey(key) - path := m.PathForKeyShortest(key) - values, err := m.ValuesForKey(key, subkeys) - values, err := m.ValuesForPath(path, subkeys) // 'path' can be dot-notation with wildcards and indexed arrays. - count, err := m.UpdateValuesForPath(newVal, path, subkeys) - - Get everything at once, irrespective of path depth: - leafnodes := m.LeafNodes() - leafvalues := m.LeafValues() - - A new Map with whatever keys are desired can be created from the current Map and then encoded in XML - or JSON. (Note: keys can use dot-notation. 'oldKey' can also use wildcards and indexed arrays.) - newMap, err := m.NewMap("oldKey_1:newKey_1", "oldKey_2:newKey_2", ..., "oldKey_N:newKey_N") - newXml, err := newMap.Xml() // for example - newJson, err := newMap.Json() // ditto - -XML PARSING CONVENTIONS - - Using NewXml() - - - Attributes are parsed to `map[string]interface{}` values by prefixing a hyphen, `-`, - to the attribute label. (Unless overridden by `PrependAttrWithHyphen(false)`.) - - If the element is a simple element and has attributes, the element value - is given the key `#text` for its `map[string]interface{}` representation. (See - the 'atomFeedString.xml' test data, below.) - - XML comments, directives, and process instructions are ignored. - - If CoerceKeysToLower() has been called, then the resultant keys will be lower case. - - Using NewXmlSeq() - - - Attributes are parsed to `map["#attr"]map[]map[string]interface{}`values - where the `` value has "#text" and "#seq" keys - the "#text" key holds the - value for ``. - - All elements, except for the root, have a "#seq" key. - - Comments, directives, and process instructions are unmarshalled into the Map using the - keys "#comment", "#directive", and "#procinst", respectively. (See documentation for more - specifics.) - - Both - - - By default, "Nan", "Inf", and "-Inf" values are not cast to float64. If you want them - to be cast, set a flag to cast them using CastNanInf(true). - -XML ENCODING CONVENTIONS - - - 'nil' Map values, which may represent 'null' JSON values, are encoded as "". - NOTE: the operation is not symmetric as "" elements are decoded as 'tag:""' Map values, - which, then, encode in JSON as '"tag":""' values.. - - ALSO: there is no guarantee that the encoded XML doc will be the same as the decoded one. (Go - randomizes the walk through map[string]interface{} values.) If you plan to re-encode the - Map value to XML and want the same sequencing of elements look at NewMapXmlSeq() and - m.XmlSeq() - these try to preserve the element sequencing but with added complexity when - working with the Map representation. - -*/ -package mxj diff --git a/vendor/github.com/clbanning/mxj/escapechars.go b/vendor/github.com/clbanning/mxj/escapechars.go deleted file mode 100644 index 9d05c914..00000000 --- a/vendor/github.com/clbanning/mxj/escapechars.go +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright 2016 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -package mxj - -import ( - "bytes" -) - -var xmlEscapeChars bool - -// XMLEscapeChars(true) forces escaping invalid characters in attribute and element values. -// NOTE: this is brute force with NO interrogation of '&' being escaped already; if it is -// then '&' will be re-escaped as '&amp;'. -// -/* - The values are: - " " - ' ' - < < - > > - & & -*/ -func XMLEscapeChars(b bool) { - xmlEscapeChars = b -} - -// Scan for '&' first, since 's' may contain "&" that is parsed to "&amp;" -// - or "<" that is parsed to "&lt;". -var escapechars = [][2][]byte{ - {[]byte(`&`), []byte(`&`)}, - {[]byte(`<`), []byte(`<`)}, - {[]byte(`>`), []byte(`>`)}, - {[]byte(`"`), []byte(`"`)}, - {[]byte(`'`), []byte(`'`)}, -} - -func escapeChars(s string) string { - if len(s) == 0 { - return s - } - - b := []byte(s) - for _, v := range escapechars { - n := bytes.Count(b, v[0]) - if n == 0 { - continue - } - b = bytes.Replace(b, v[0], v[1], n) - } - return string(b) -} diff --git a/vendor/github.com/clbanning/mxj/escapechars_test.go b/vendor/github.com/clbanning/mxj/escapechars_test.go deleted file mode 100644 index 874f4cd1..00000000 --- a/vendor/github.com/clbanning/mxj/escapechars_test.go +++ /dev/null @@ -1,91 +0,0 @@ -package mxj - -import ( - "fmt" - "testing" -) - -var s = `"'<>&` - -func TestEscapeChars(t *testing.T) { - fmt.Println("\n================== TestEscapeChars") - - ss := escapeChars(s) - - if ss != `"'<>&` { - t.Fatal(s, ":", ss) - } - - fmt.Println(" s:", s) - fmt.Println("ss:", ss) -} - -func TestXMLEscapeChars(t *testing.T) { - fmt.Println("================== TestXMLEscapeChars") - - XMLEscapeChars(true) - defer XMLEscapeChars(false) - - m := map[string]interface{}{"mychars": s} - - x, err := AnyXmlIndent(s, "", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("s:", string(x)) - - x, err = AnyXmlIndent(m, "", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("m:", string(x)) -} - -func TestXMLSeqEscapeChars(t *testing.T) { - fmt.Println("================== TestXMLSeqEscapeChars") - data := []byte(` - - >0-2y - `) - fmt.Println("data:", string(data)) - - m, err := NewMapXmlSeq(data) - if err != nil { - t.Fatal(err) - } - fmt.Printf("m: %v\n", m) - - XMLEscapeChars(true) - defer XMLEscapeChars(false) - - x, err := m.XmlSeqIndent("", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("m:", string(x)) -} - -func TestXMLSeqEscapeChars2(t *testing.T) { - fmt.Println("================== TestXMLSeqEscapeChars2") - data := []byte(` - - >0-2y - <10-15 - `) - fmt.Println("data:", string(data)) - - m, err := NewMapXmlSeq(data) - if err != nil { - t.Fatal(err) - } - fmt.Printf("m: %v\n", m) - - XMLEscapeChars(true) - defer XMLEscapeChars(false) - - x, err := m.XmlSeqIndent("", " ") - if err != nil { - t.Fatal(err) - } - fmt.Println("m:", string(x)) -} diff --git a/vendor/github.com/clbanning/mxj/example_test.go b/vendor/github.com/clbanning/mxj/example_test.go deleted file mode 100644 index c69f835f..00000000 --- a/vendor/github.com/clbanning/mxj/example_test.go +++ /dev/null @@ -1,347 +0,0 @@ -// +test OMIT - -// note - "// Output:" is a key for "go test" to match function ouput with the lines that follow. -// It is also use by "godoc" to build the Output block of the function / method documentation. -// To skip processing Example* functions, use: go test -run "Test*" -// or make sure example function output matches // Output: documentation EXACTLY. - -package mxj_test - -import ( - "bytes" - "fmt" - "io" - - "github.com/clbanning/mxj" -) - -func ExampleHandleXmlReader() { - /* - Bulk processing XML to JSON seems to be a common requirement. - See: bulk_test.go for working example. - Run "go test" in package directory then scroll back to find output. - - The logic is as follows. - - // need somewhere to write the JSON. - var jsonWriter io.Writer - - // probably want to log any errors in reading the XML stream - var xmlErrLogger io.Writer - - // func to handle Map value from XML Reader - func maphandler(m mxj.Map) bool { - // marshal Map as JSON - jsonVal, err := m.Json() - if err != nil { - // log error - return false // stops further processing of XML Reader - } - - // write JSON somewhere - _, err = jsonWriter.Write(jsonVal) - if err != nil { - // log error - return false // stops further processing of XML Reader - } - - // continue - get next XML from Reader - return true - } - - // func to handle error from unmarshaling XML Reader - func errhandler(errVal error) bool { - // log error somewhere - _, err := xmlErrLogger.Write([]byte(errVal.Error())) - if err != nil { - // log error - return false // stops further processing of XML Reader - } - - // continue processing - return true - } - - // func that starts bulk processing of the XML - ... - // set up io.Reader for XML data - perhaps an os.File - ... - err := mxj.HandleXmlReader(xmlReader, maphandler, errhandler) - if err != nil { - // handle error - } - ... - */ -} - -func ExampleHandleXmlReaderRaw() { - /* - See: bulkraw_test.go for working example. - Run "go test" in package directory then scroll back to find output. - - Basic logic for bulk XML to JSON processing is in HandleXmlReader example; - the only major difference is in handler function signatures so they are passed - the raw XML. (Read documentation on NewXmlReader regarding performance.) - */ -} - -func ExampleHandleJsonReader() { - /* - See: bulk_test.go for working example. - Run "go test" in package directory then scroll back to find output. - - Basic logic for bulk JSON to XML processing is similar to that for - bulk XML to JSON processing as outlined in the HandleXmlReader example. - The test case is also a good example. - */ -} - -func ExampleHandleJsonReaderRaw() { - /* - See: bulkraw_test.go for working example. - Run "go test" in package directory then scroll back to find output. - - Basic logic for bulk JSON to XML processing is similar to that for - bulk XML to JSON processing as outlined in the HandleXmlReader example. - The test case is also a good example. - */ -} - -/* -func ExampleNewMapXmlReaderRaw() { - // in an http.Handler - - mapVal, raw, err := mxj.NewMapXmlReader(req.Body) - if err != nil { - // handle error - } - logger.Print(string(*raw)) - // do something with mapVal - -} -*/ - -func ExampleNewMapStruct() { - type str struct { - IntVal int `json:"int"` - StrVal string `json:"str"` - FloatVal float64 `json:"float"` - BoolVal bool `json:"bool"` - private string - } - strVal := str{IntVal: 4, StrVal: "now's the time", FloatVal: 3.14159, BoolVal: true, private: "Skies are blue"} - - mapVal, merr := mxj.NewMapStruct(strVal) - if merr != nil { - // handle error - } - - fmt.Printf("strVal: %#v\n", strVal) - fmt.Printf("mapVal: %#v\n", mapVal) - // Note: example output is conformed to pass "go test". "mxj_test" is example_test.go package name. - - // Output: - // strVal: mxj_test.str{IntVal:4, StrVal:"now's the time", FloatVal:3.14159, BoolVal:true, private:"Skies are blue"} - // mapVal: mxj.Map{"int":4, "str":"now's the time", "float":3.14159, "bool":true} -} - -func ExampleMap_Struct() { - type str struct { - IntVal int `json:"int"` - StrVal string `json:"str"` - FloatVal float64 `json:"float"` - BoolVal bool `json:"bool"` - private string - } - - mapVal := mxj.Map{"int": 4, "str": "now's the time", "float": 3.14159, "bool": true, "private": "Somewhere over the rainbow"} - - var strVal str - mverr := mapVal.Struct(&strVal) - if mverr != nil { - // handle error - } - - fmt.Printf("mapVal: %#v\n", mapVal) - fmt.Printf("strVal: %#v\n", strVal) - // Note: example output is conformed to pass "go test". "mxj_test" is example_test.go package name. - - // Output: - // mapVal: mxj.Map{"int":4, "str":"now's the time", "float":3.14159, "bool":true, "private":"Somewhere over the rainbow"} - // strVal: mxj_test.str{IntVal:4, StrVal:"now's the time", FloatVal:3.14159, BoolVal:true, private:""} -} - -func ExampleMap_ValuesForKeyPath() { - // a snippet from examples/gonuts1.go - // How to compensate for irregular tag labels in data. - // Need to extract from an XML stream the values for "netid" and "idnet". - // Solution: use a wildcard path "data.*" to anonymize the "netid" and "idnet" tags. - - var msg1 = []byte(` - - - - no - default:text - default:word - - -`) - - var msg2 = []byte(` - - - - yes - default:text - default:word - - -`) - - // let's create a message stream - buf := new(bytes.Buffer) - // load a couple of messages into it - _, _ = buf.Write(msg1) - _, _ = buf.Write(msg2) - - n := 0 - for { - n++ - // Read the stream as Map values - quit on io.EOF. - // Get the raw XML as well as the Map value. - m, merr := mxj.NewMapXmlReader(buf) - if merr != nil && merr != io.EOF { - // handle error - for demo we just print it and continue - fmt.Printf("msg: %d - merr: %s\n", n, merr.Error()) - continue - } else if merr == io.EOF { - break - } - - // get the values for "netid" or "idnet" key using path == "data.*" - values, _ := m.ValuesForPath("data.*") - fmt.Println("\nmsg:", n, "> path == data.* - got array of values, len:", len(values)) - for i, val := range values { - fmt.Println("ValuesForPath result array member -", i, ":", val) - fmt.Println(" k:v pairs for array member:", i) - for key, val := range val.(map[string]interface{}) { - // You'd probably want to process the value, as appropriate. - // Here we just print it out. - fmt.Println("\t\t", key, ":", val) - } - } - } - // Output: - // msg: 1 > path == data.* - got array of values, len: 1 - // ValuesForPath result array member - 0 : map[disable:no text1:default:text word1:default:word] - // k:v pairs for array member: 0 - // disable : no - // text1 : default:text - // word1 : default:word - // - // msg: 2 > path == data.* - got array of values, len: 1 - // ValuesForPath result array member - 0 : map[disable:yes text1:default:text word1:default:word] - // k:v pairs for array member: 0 - // disable : yes - // text1 : default:text - // word1 : default:word -} - -func ExampleMap_UpdateValuesForPath() { - /* - - var biblioDoc = []byte(` - - - William Gaddis - - - The Recognitions - 1955 - A novel that changed the face of American literature. - - - JR - 1975 - Winner of National Book Award for Fiction. - - - - `) - - ... - m, merr := mxj.NewMapXml(biblioDoc) - if merr != nil { - // handle error - } - - // change 'review' for a book - count, err := m.UpdateValuesForPath("review:National Book Award winner." "*.*.*.*", "title:JR") - if err != nil { - // handle error - } - ... - - // change 'date' value from string type to float64 type - // Note: the following is equivalent to m, merr := NewMapXml(biblioDoc, mxj.Cast). - path := m.PathForKeyShortest("date") - v, err := m.ValuesForPath(path) - if err != nil { - // handle error - } - var total int - for _, vv := range v { - oldVal := "date:" + vv.(string) - newVal := "date:" + vv.(string) + ":num" - n, err := m.UpdateValuesForPath(newVal, path, oldVal) - if err != nil { - // handle error - } - total += n - } - ... - */ -} - -func ExampleMap_Copy() { - // Hand-crafted Map values that include structures do NOT Copy() as expected, - // since to simulate a deep copy the original Map value is JSON encoded then decoded. - - type str struct { - IntVal int `json:"int"` - StrVal string `json:"str"` - FloatVal float64 `json:"float"` - BoolVal bool `json:"bool"` - private string - } - s := str{IntVal: 4, StrVal: "now's the time", FloatVal: 3.14159, BoolVal: true, private: "Skies are blue"} - m := make(map[string]interface{}, 0) - m["struct"] = interface{}(s) - m["struct_ptr"] = interface{}(&s) - m["misc"] = interface{}(`Now is the time`) - - mv := mxj.Map(m) - cp, _ := mv.Copy() - - fmt.Printf("mv:%s\n", mv.StringIndent(2)) - fmt.Printf("cp:%s\n", cp.StringIndent(2)) - - // Output: - // mv: - // struct :[unknown] mxj_test.str{IntVal:4, StrVal:"now's the time", FloatVal:3.14159, BoolVal:true, private:"Skies are blue"} - // struct_ptr :[unknown] &mxj_test.str{IntVal:4, StrVal:"now's the time", FloatVal:3.14159, BoolVal:true, private:"Skies are blue"} - // misc :[string] Now is the time - // cp: - // misc :[string] Now is the time - // struct : - // int :[float64] 4.00e+00 - // str :[string] now's the time - // float :[float64] 3.14e+00 - // bool :[bool] true - // struct_ptr : - // int :[float64] 4.00e+00 - // str :[string] now's the time - // float :[float64] 3.14e+00 - // bool :[bool] true -} diff --git a/vendor/github.com/clbanning/mxj/exists.go b/vendor/github.com/clbanning/mxj/exists.go deleted file mode 100644 index 25cff3c5..00000000 --- a/vendor/github.com/clbanning/mxj/exists.go +++ /dev/null @@ -1,7 +0,0 @@ -package mxj - -// Checks whether the path exists -func (mv Map) Exists(path string) bool { - v, err := mv.ValuesForPath(path) - return err == nil && len(v) > 0 -} diff --git a/vendor/github.com/clbanning/mxj/exists_test.go b/vendor/github.com/clbanning/mxj/exists_test.go deleted file mode 100644 index f5ae7c4d..00000000 --- a/vendor/github.com/clbanning/mxj/exists_test.go +++ /dev/null @@ -1,20 +0,0 @@ -package mxj - -import "testing" - -func TestExists(t *testing.T) { - m := map[string]interface{}{ - "Div": map[string]interface{}{ - "Colour": "blue", - }, - } - mv := Map(m) - - if !mv.Exists("Div.Colour") { - t.Fatal("Haven't found an existing element") - } - - if mv.Exists("Div.Color") { - t.Fatal("Have found a non existing element") - } -} diff --git a/vendor/github.com/clbanning/mxj/files.go b/vendor/github.com/clbanning/mxj/files.go deleted file mode 100644 index 58971187..00000000 --- a/vendor/github.com/clbanning/mxj/files.go +++ /dev/null @@ -1,299 +0,0 @@ -package mxj - -import ( - "fmt" - "io" - "os" -) - -type Maps []Map - -func NewMaps() Maps { - return make(Maps, 0) -} - -type MapRaw struct { - M Map - R []byte -} - -// NewMapsFromXmlFile - creates an array from a file of JSON values. -func NewMapsFromJsonFile(name string) (Maps, error) { - fi, err := os.Stat(name) - if err != nil { - return nil, err - } - if !fi.Mode().IsRegular() { - return nil, fmt.Errorf("file %s is not a regular file", name) - } - - fh, err := os.Open(name) - if err != nil { - return nil, err - } - defer fh.Close() - - am := make([]Map, 0) - for { - m, raw, err := NewMapJsonReaderRaw(fh) - if err != nil && err != io.EOF { - return am, fmt.Errorf("error: %s - reading: %s", err.Error(), string(raw)) - } - if len(m) > 0 { - am = append(am, m) - } - if err == io.EOF { - break - } - } - return am, nil -} - -// ReadMapsFromJsonFileRaw - creates an array of MapRaw from a file of JSON values. -func NewMapsFromJsonFileRaw(name string) ([]MapRaw, error) { - fi, err := os.Stat(name) - if err != nil { - return nil, err - } - if !fi.Mode().IsRegular() { - return nil, fmt.Errorf("file %s is not a regular file", name) - } - - fh, err := os.Open(name) - if err != nil { - return nil, err - } - defer fh.Close() - - am := make([]MapRaw, 0) - for { - mr := new(MapRaw) - mr.M, mr.R, err = NewMapJsonReaderRaw(fh) - if err != nil && err != io.EOF { - return am, fmt.Errorf("error: %s - reading: %s", err.Error(), string(mr.R)) - } - if len(mr.M) > 0 { - am = append(am, *mr) - } - if err == io.EOF { - break - } - } - return am, nil -} - -// NewMapsFromXmlFile - creates an array from a file of XML values. -func NewMapsFromXmlFile(name string) (Maps, error) { - x := XmlWriterBufSize - XmlWriterBufSize = 0 - defer func() { - XmlWriterBufSize = x - }() - - fi, err := os.Stat(name) - if err != nil { - return nil, err - } - if !fi.Mode().IsRegular() { - return nil, fmt.Errorf("file %s is not a regular file", name) - } - - fh, err := os.Open(name) - if err != nil { - return nil, err - } - defer fh.Close() - - am := make([]Map, 0) - for { - m, raw, err := NewMapXmlReaderRaw(fh) - if err != nil && err != io.EOF { - return am, fmt.Errorf("error: %s - reading: %s", err.Error(), string(raw)) - } - if len(m) > 0 { - am = append(am, m) - } - if err == io.EOF { - break - } - } - return am, nil -} - -// NewMapsFromXmlFileRaw - creates an array of MapRaw from a file of XML values. -// NOTE: the slice with the raw XML is clean with no extra capacity - unlike NewMapXmlReaderRaw(). -// It is slow at parsing a file from disk and is intended for relatively small utility files. -func NewMapsFromXmlFileRaw(name string) ([]MapRaw, error) { - x := XmlWriterBufSize - XmlWriterBufSize = 0 - defer func() { - XmlWriterBufSize = x - }() - - fi, err := os.Stat(name) - if err != nil { - return nil, err - } - if !fi.Mode().IsRegular() { - return nil, fmt.Errorf("file %s is not a regular file", name) - } - - fh, err := os.Open(name) - if err != nil { - return nil, err - } - defer fh.Close() - - am := make([]MapRaw, 0) - for { - mr := new(MapRaw) - mr.M, mr.R, err = NewMapXmlReaderRaw(fh) - if err != nil && err != io.EOF { - return am, fmt.Errorf("error: %s - reading: %s", err.Error(), string(mr.R)) - } - if len(mr.M) > 0 { - am = append(am, *mr) - } - if err == io.EOF { - break - } - } - return am, nil -} - -// ------------------------ Maps writing ------------------------- -// These are handy-dandy methods for dumping configuration data, etc. - -// JsonString - analogous to mv.Json() -func (mvs Maps) JsonString(safeEncoding ...bool) (string, error) { - var s string - for _, v := range mvs { - j, err := v.Json() - if err != nil { - return s, err - } - s += string(j) - } - return s, nil -} - -// JsonStringIndent - analogous to mv.JsonIndent() -func (mvs Maps) JsonStringIndent(prefix, indent string, safeEncoding ...bool) (string, error) { - var s string - var haveFirst bool - for _, v := range mvs { - j, err := v.JsonIndent(prefix, indent) - if err != nil { - return s, err - } - if haveFirst { - s += "\n" - } else { - haveFirst = true - } - s += string(j) - } - return s, nil -} - -// XmlString - analogous to mv.Xml() -func (mvs Maps) XmlString() (string, error) { - var s string - for _, v := range mvs { - x, err := v.Xml() - if err != nil { - return s, err - } - s += string(x) - } - return s, nil -} - -// XmlStringIndent - analogous to mv.XmlIndent() -func (mvs Maps) XmlStringIndent(prefix, indent string) (string, error) { - var s string - for _, v := range mvs { - x, err := v.XmlIndent(prefix, indent) - if err != nil { - return s, err - } - s += string(x) - } - return s, nil -} - -// JsonFile - write Maps to named file as JSON -// Note: the file will be created, if necessary; if it exists it will be truncated. -// If you need to append to a file, open it and use JsonWriter method. -func (mvs Maps) JsonFile(file string, safeEncoding ...bool) error { - var encoding bool - if len(safeEncoding) == 1 { - encoding = safeEncoding[0] - } - s, err := mvs.JsonString(encoding) - if err != nil { - return err - } - fh, err := os.Create(file) - if err != nil { - return err - } - defer fh.Close() - fh.WriteString(s) - return nil -} - -// JsonFileIndent - write Maps to named file as pretty JSON -// Note: the file will be created, if necessary; if it exists it will be truncated. -// If you need to append to a file, open it and use JsonIndentWriter method. -func (mvs Maps) JsonFileIndent(file, prefix, indent string, safeEncoding ...bool) error { - var encoding bool - if len(safeEncoding) == 1 { - encoding = safeEncoding[0] - } - s, err := mvs.JsonStringIndent(prefix, indent, encoding) - if err != nil { - return err - } - fh, err := os.Create(file) - if err != nil { - return err - } - defer fh.Close() - fh.WriteString(s) - return nil -} - -// XmlFile - write Maps to named file as XML -// Note: the file will be created, if necessary; if it exists it will be truncated. -// If you need to append to a file, open it and use XmlWriter method. -func (mvs Maps) XmlFile(file string) error { - s, err := mvs.XmlString() - if err != nil { - return err - } - fh, err := os.Create(file) - if err != nil { - return err - } - defer fh.Close() - fh.WriteString(s) - return nil -} - -// XmlFileIndent - write Maps to named file as pretty XML -// Note: the file will be created,if necessary; if it exists it will be truncated. -// If you need to append to a file, open it and use XmlIndentWriter method. -func (mvs Maps) XmlFileIndent(file, prefix, indent string) error { - s, err := mvs.XmlStringIndent(prefix, indent) - if err != nil { - return err - } - fh, err := os.Create(file) - if err != nil { - return err - } - defer fh.Close() - fh.WriteString(s) - return nil -} diff --git a/vendor/github.com/clbanning/mxj/files_test.badjson b/vendor/github.com/clbanning/mxj/files_test.badjson deleted file mode 100644 index d1872004..00000000 --- a/vendor/github.com/clbanning/mxj/files_test.badjson +++ /dev/null @@ -1,2 +0,0 @@ -{ "this":"is", "a":"test", "file":"for", "files_test.go":"case" } -{ "with":"some", "bad":JSON, "in":"it" } diff --git a/vendor/github.com/clbanning/mxj/files_test.badxml b/vendor/github.com/clbanning/mxj/files_test.badxml deleted file mode 100644 index 4736ef97..00000000 --- a/vendor/github.com/clbanning/mxj/files_test.badxml +++ /dev/null @@ -1,9 +0,0 @@ - - test - for files.go - - - some - doc - test case - diff --git a/vendor/github.com/clbanning/mxj/files_test.go b/vendor/github.com/clbanning/mxj/files_test.go deleted file mode 100644 index 52778aef..00000000 --- a/vendor/github.com/clbanning/mxj/files_test.go +++ /dev/null @@ -1,168 +0,0 @@ -package mxj - -import ( - "fmt" - "testing" -) - -func TestFilesHeader(t *testing.T) { - fmt.Println("\n---------------- files_test.go ...\n") -} - -func TestNewJsonFile(t *testing.T) { - fmt.Println("NewMapsFromJsonFile()") - am, err := NewMapsFromJsonFile("files_test.json") - if err != nil { - t.Fatal(err.Error()) - } - for _, v := range am { - fmt.Printf("%v\n", v) - } - - am, err = NewMapsFromJsonFile("nil") - if err == nil { - t.Fatal("no error returned for read of nil file") - } - fmt.Println("caught error: ", err.Error()) - - am, err = NewMapsFromJsonFile("files_test.badjson") - if err == nil { - t.Fatal("no error returned for read of badjson file") - } - fmt.Println("caught error: ", err.Error()) -} - -func TestNewJsonFileRaw(t *testing.T) { - fmt.Println("NewMapsFromJsonFileRaw()") - mr, err := NewMapsFromJsonFileRaw("files_test.json") - if err != nil { - t.Fatal(err.Error()) - } - for _, v := range mr { - fmt.Printf("%v\n", v) - } - - mr, err = NewMapsFromJsonFileRaw("nil") - if err == nil { - t.Fatal("no error returned for read of nil file") - } - fmt.Println("caught error: ", err.Error()) - - mr, err = NewMapsFromJsonFileRaw("files_test.badjson") - if err == nil { - t.Fatal("no error returned for read of badjson file") - } - fmt.Println("caught error: ", err.Error()) -} - -func TestNewXmFile(t *testing.T) { - fmt.Println("NewMapsFromXmlFile()") - am, err := NewMapsFromXmlFile("files_test.xml") - if err != nil { - t.Fatal(err.Error()) - } - for _, v := range am { - fmt.Printf("%v\n", v) - } - - am, err = NewMapsFromXmlFile("nil") - if err == nil { - t.Fatal("no error returned for read of nil file") - } - fmt.Println("caught error: ", err.Error()) - - am, err = NewMapsFromXmlFile("files_test.badxml") - if err == nil { - t.Fatal("no error returned for read of badjson file") - } - fmt.Println("caught error: ", err.Error()) -} - -func TestNewXmFileRaw(t *testing.T) { - fmt.Println("NewMapsFromXmlFileRaw()") - mr, err := NewMapsFromXmlFileRaw("files_test.xml") - if err != nil { - t.Fatal(err.Error()) - } - for _, v := range mr { - fmt.Printf("%v\n", v) - } - - mr, err = NewMapsFromXmlFileRaw("nil") - if err == nil { - t.Fatal("no error returned for read of nil file") - } - fmt.Println("caught error: ", err.Error()) - - mr, err = NewMapsFromXmlFileRaw("files_test.badxml") - if err == nil { - t.Fatal("no error returned for read of badjson file") - } - fmt.Println("caught error: ", err.Error()) -} - -func TestMaps(t *testing.T) { - fmt.Println("TestMaps()") - mvs := NewMaps() - for i := 0; i < 2; i++ { - m, _ := NewMapJson([]byte(`{ "this":"is", "a":"test" }`)) - mvs = append(mvs, m) - } - fmt.Println("mvs:", mvs) - - s, _ := mvs.JsonString() - fmt.Println("JsonString():", s) - - s, _ = mvs.JsonStringIndent("", " ") - fmt.Println("JsonStringIndent():", s) - - s, _ = mvs.XmlString() - fmt.Println("XmlString():", s) - - s, _ = mvs.XmlStringIndent("", " ") - fmt.Println("XmlStringIndent():", s) -} - -func TestJsonFile(t *testing.T) { - am, err := NewMapsFromJsonFile("files_test.json") - if err != nil { - t.Fatal(err.Error()) - } - for _, v := range am { - fmt.Printf("%v\n", v) - } - - err = am.JsonFile("files_test_dup.json") - if err != nil { - t.Fatal(err.Error()) - } - fmt.Println("files_test_dup.json written") - - err = am.JsonFileIndent("files_test_indent.json", "", " ") - if err != nil { - t.Fatal(err.Error()) - } - fmt.Println("files_test_indent.json written") -} - -func TestXmlFile(t *testing.T) { - am, err := NewMapsFromXmlFile("files_test.xml") - if err != nil { - t.Fatal(err.Error()) - } - for _, v := range am { - fmt.Printf("%v\n", v) - } - - err = am.XmlFile("files_test_dup.xml") - if err != nil { - t.Fatal(err.Error()) - } - fmt.Println("files_test_dup.xml written") - - err = am.XmlFileIndent("files_test_indent.xml", "", " ") - if err != nil { - t.Fatal(err.Error()) - } - fmt.Println("files_test_indent.xml written") -} diff --git a/vendor/github.com/clbanning/mxj/files_test.json b/vendor/github.com/clbanning/mxj/files_test.json deleted file mode 100644 index e9a3ddf4..00000000 --- a/vendor/github.com/clbanning/mxj/files_test.json +++ /dev/null @@ -1,2 +0,0 @@ -{ "this":"is", "a":"test", "file":"for", "files_test.go":"case" } -{ "with":"just", "two":2, "JSON":"values", "true":true } diff --git a/vendor/github.com/clbanning/mxj/files_test.xml b/vendor/github.com/clbanning/mxj/files_test.xml deleted file mode 100644 index 65cf021f..00000000 --- a/vendor/github.com/clbanning/mxj/files_test.xml +++ /dev/null @@ -1,9 +0,0 @@ - - test - for files.go - - - some - doc - test case - diff --git a/vendor/github.com/clbanning/mxj/files_test_dup.json b/vendor/github.com/clbanning/mxj/files_test_dup.json deleted file mode 100644 index 2becb6a4..00000000 --- a/vendor/github.com/clbanning/mxj/files_test_dup.json +++ /dev/null @@ -1 +0,0 @@ -{"a":"test","file":"for","files_test.go":"case","this":"is"}{"JSON":"values","true":true,"two":2,"with":"just"} \ No newline at end of file diff --git a/vendor/github.com/clbanning/mxj/files_test_dup.xml b/vendor/github.com/clbanning/mxj/files_test_dup.xml deleted file mode 100644 index f68d22e2..00000000 --- a/vendor/github.com/clbanning/mxj/files_test_dup.xml +++ /dev/null @@ -1 +0,0 @@ -for files.gotestdoctest casesome \ No newline at end of file diff --git a/vendor/github.com/clbanning/mxj/files_test_indent.json b/vendor/github.com/clbanning/mxj/files_test_indent.json deleted file mode 100644 index 6fde1563..00000000 --- a/vendor/github.com/clbanning/mxj/files_test_indent.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "a": "test", - "file": "for", - "files_test.go": "case", - "this": "is" -} -{ - "JSON": "values", - "true": true, - "two": 2, - "with": "just" -} \ No newline at end of file diff --git a/vendor/github.com/clbanning/mxj/files_test_indent.xml b/vendor/github.com/clbanning/mxj/files_test_indent.xml deleted file mode 100644 index 8c91a1dc..00000000 --- a/vendor/github.com/clbanning/mxj/files_test_indent.xml +++ /dev/null @@ -1,8 +0,0 @@ - - for files.go - test - - doc - test case - some - \ No newline at end of file diff --git a/vendor/github.com/clbanning/mxj/j2x_test.go b/vendor/github.com/clbanning/mxj/j2x_test.go deleted file mode 100644 index b88a64d5..00000000 --- a/vendor/github.com/clbanning/mxj/j2x_test.go +++ /dev/null @@ -1,29 +0,0 @@ -package mxj - -import ( - "fmt" - "testing" -) - -var jjdata = []byte(`{ "key1":"string", "key2":34, "key3":true, "key4":"unsafe: <>&", "key5":null }`) - -func TestJ2XHeader(t *testing.T) { - fmt.Println("\n---------------- j2x_test .go ...\n") -} - -func TestJ2X(t *testing.T) { - - m, err := NewMapJson(jjdata) - if err != nil { - t.Fatal("NewMapJson, err:", err) - } - - x, err := m.Xml() - if err != nil { - t.Fatal("m.Xml(), err:", err) - } - - fmt.Println("j2x, jdata:", string(jjdata)) - fmt.Println("j2x, m :", m) - fmt.Println("j2x, xml :", string(x)) -} diff --git a/vendor/github.com/clbanning/mxj/json.go b/vendor/github.com/clbanning/mxj/json.go deleted file mode 100644 index 1caaf212..00000000 --- a/vendor/github.com/clbanning/mxj/json.go +++ /dev/null @@ -1,323 +0,0 @@ -// Copyright 2012-2014 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -package mxj - -import ( - "bytes" - "encoding/json" - "fmt" - "io" - "time" -) - -// ------------------------------ write JSON ----------------------- - -// Just a wrapper on json.Marshal. -// If option safeEncoding is'true' then safe encoding of '<', '>' and '&' -// is preserved. (see encoding/json#Marshal, encoding/json#Encode) -func (mv Map) Json(safeEncoding ...bool) ([]byte, error) { - var s bool - if len(safeEncoding) == 1 { - s = safeEncoding[0] - } - - b, err := json.Marshal(mv) - - if !s { - b = bytes.Replace(b, []byte("\\u003c"), []byte("<"), -1) - b = bytes.Replace(b, []byte("\\u003e"), []byte(">"), -1) - b = bytes.Replace(b, []byte("\\u0026"), []byte("&"), -1) - } - return b, err -} - -// Just a wrapper on json.MarshalIndent. -// If option safeEncoding is'true' then safe encoding of '<' , '>' and '&' -// is preserved. (see encoding/json#Marshal, encoding/json#Encode) -func (mv Map) JsonIndent(prefix, indent string, safeEncoding ...bool) ([]byte, error) { - var s bool - if len(safeEncoding) == 1 { - s = safeEncoding[0] - } - - b, err := json.MarshalIndent(mv, prefix, indent) - if !s { - b = bytes.Replace(b, []byte("\\u003c"), []byte("<"), -1) - b = bytes.Replace(b, []byte("\\u003e"), []byte(">"), -1) - b = bytes.Replace(b, []byte("\\u0026"), []byte("&"), -1) - } - return b, err -} - -// The following implementation is provided for symmetry with NewMapJsonReader[Raw] -// The names will also provide a key for the number of return arguments. - -// Writes the Map as JSON on the Writer. -// If 'safeEncoding' is 'true', then "safe" encoding of '<', '>' and '&' is preserved. -func (mv Map) JsonWriter(jsonWriter io.Writer, safeEncoding ...bool) error { - b, err := mv.Json(safeEncoding...) - if err != nil { - return err - } - - _, err = jsonWriter.Write(b) - return err -} - -// Writes the Map as JSON on the Writer. []byte is the raw JSON that was written. -// If 'safeEncoding' is 'true', then "safe" encoding of '<', '>' and '&' is preserved. -func (mv Map) JsonWriterRaw(jsonWriter io.Writer, safeEncoding ...bool) ([]byte, error) { - b, err := mv.Json(safeEncoding...) - if err != nil { - return b, err - } - - _, err = jsonWriter.Write(b) - return b, err -} - -// Writes the Map as pretty JSON on the Writer. -// If 'safeEncoding' is 'true', then "safe" encoding of '<', '>' and '&' is preserved. -func (mv Map) JsonIndentWriter(jsonWriter io.Writer, prefix, indent string, safeEncoding ...bool) error { - b, err := mv.JsonIndent(prefix, indent, safeEncoding...) - if err != nil { - return err - } - - _, err = jsonWriter.Write(b) - return err -} - -// Writes the Map as pretty JSON on the Writer. []byte is the raw JSON that was written. -// If 'safeEncoding' is 'true', then "safe" encoding of '<', '>' and '&' is preserved. -func (mv Map) JsonIndentWriterRaw(jsonWriter io.Writer, prefix, indent string, safeEncoding ...bool) ([]byte, error) { - b, err := mv.JsonIndent(prefix, indent, safeEncoding...) - if err != nil { - return b, err - } - - _, err = jsonWriter.Write(b) - return b, err -} - -// --------------------------- read JSON ----------------------------- - -// Decode numericvalues as json.Number type Map values - see encoding/json#Number. -// NOTE: this is for decoding JSON into a Map with NewMapJson(), NewMapJsonReader(), -// etc.; it does not affect NewMapXml(), etc. The XML encoders mv.Xml() and mv.XmlIndent() -// do recognize json.Number types; a JSON object can be decoded to a Map with json.Number -// value types and the resulting Map can be correctly encoded into a XML object. -var JsonUseNumber bool - -// Just a wrapper on json.Unmarshal -// Converting JSON to XML is a simple as: -// ... -// mapVal, merr := mxj.NewMapJson(jsonVal) -// if merr != nil { -// // handle error -// } -// xmlVal, xerr := mapVal.Xml() -// if xerr != nil { -// // handle error -// } -// NOTE: as a special case, passing a list, e.g., [{"some-null-value":"", "a-non-null-value":"bar"}], -// will be interpreted as having the root key 'object' prepended - {"object":[ ... ]} - to unmarshal to a Map. -// See mxj/j2x/j2x_test.go. -func NewMapJson(jsonVal []byte) (Map, error) { - // empty or nil begets empty - if len(jsonVal) == 0 { - m := make(map[string]interface{}, 0) - return m, nil - } - // handle a goofy case ... - if jsonVal[0] == '[' { - jsonVal = []byte(`{"object":` + string(jsonVal) + `}`) - } - m := make(map[string]interface{}) - // err := json.Unmarshal(jsonVal, &m) - buf := bytes.NewReader(jsonVal) - dec := json.NewDecoder(buf) - if JsonUseNumber { - dec.UseNumber() - } - err := dec.Decode(&m) - return m, err -} - -// Retrieve a Map value from an io.Reader. -// NOTE: The raw JSON off the reader is buffered to []byte using a ByteReader. If the io.Reader is an -// os.File, there may be significant performance impact. If the io.Reader is wrapping a []byte -// value in-memory, however, such as http.Request.Body you CAN use it to efficiently unmarshal -// a JSON object. -func NewMapJsonReader(jsonReader io.Reader) (Map, error) { - jb, err := getJson(jsonReader) - if err != nil || len(*jb) == 0 { - return nil, err - } - - // Unmarshal the 'presumed' JSON string - return NewMapJson(*jb) -} - -// Retrieve a Map value and raw JSON - []byte - from an io.Reader. -// NOTE: The raw JSON off the reader is buffered to []byte using a ByteReader. If the io.Reader is an -// os.File, there may be significant performance impact. If the io.Reader is wrapping a []byte -// value in-memory, however, such as http.Request.Body you CAN use it to efficiently unmarshal -// a JSON object and retrieve the raw JSON in a single call. -func NewMapJsonReaderRaw(jsonReader io.Reader) (Map, []byte, error) { - jb, err := getJson(jsonReader) - if err != nil || len(*jb) == 0 { - return nil, *jb, err - } - - // Unmarshal the 'presumed' JSON string - m, merr := NewMapJson(*jb) - return m, *jb, merr -} - -// Pull the next JSON string off the stream: just read from first '{' to its closing '}'. -// Returning a pointer to the slice saves 16 bytes - maybe unnecessary, but internal to package. -func getJson(rdr io.Reader) (*[]byte, error) { - bval := make([]byte, 1) - jb := make([]byte, 0) - var inQuote, inJson bool - var parenCnt int - var previous byte - - // scan the input for a matched set of {...} - // json.Unmarshal will handle syntax checking. - for { - _, err := rdr.Read(bval) - if err != nil { - if err == io.EOF && inJson && parenCnt > 0 { - return &jb, fmt.Errorf("no closing } for JSON string: %s", string(jb)) - } - return &jb, err - } - switch bval[0] { - case '{': - if !inQuote { - parenCnt++ - inJson = true - } - case '}': - if !inQuote { - parenCnt-- - } - if parenCnt < 0 { - return nil, fmt.Errorf("closing } without opening {: %s", string(jb)) - } - case '"': - if inQuote { - if previous == '\\' { - break - } - inQuote = false - } else { - inQuote = true - } - case '\n', '\r', '\t', ' ': - if !inQuote { - continue - } - } - if inJson { - jb = append(jb, bval[0]) - if parenCnt == 0 { - break - } - } - previous = bval[0] - } - - return &jb, nil -} - -// ------------------------------- JSON Reader handler via Map values ----------------------- - -// Default poll delay to keep Handler from spinning on an open stream -// like sitting on os.Stdin waiting for imput. -var jhandlerPollInterval = time.Duration(1e6) - -// While unnecessary, we make HandleJsonReader() have the same signature as HandleXmlReader(). -// This avoids treating one or other as a special case and discussing the underlying stdlib logic. - -// Bulk process JSON using handlers that process a Map value. -// 'rdr' is an io.Reader for the JSON (stream). -// 'mapHandler' is the Map processing handler. Return of 'false' stops io.Reader processing. -// 'errHandler' is the error processor. Return of 'false' stops io.Reader processing and returns the error. -// Note: mapHandler() and errHandler() calls are blocking, so reading and processing of messages is serialized. -// This means that you can stop reading the file on error or after processing a particular message. -// To have reading and handling run concurrently, pass argument to a go routine in handler and return 'true'. -func HandleJsonReader(jsonReader io.Reader, mapHandler func(Map) bool, errHandler func(error) bool) error { - var n int - for { - m, merr := NewMapJsonReader(jsonReader) - n++ - - // handle error condition with errhandler - if merr != nil && merr != io.EOF { - merr = fmt.Errorf("[jsonReader: %d] %s", n, merr.Error()) - if ok := errHandler(merr); !ok { - // caused reader termination - return merr - } - continue - } - - // pass to maphandler - if len(m) != 0 { - if ok := mapHandler(m); !ok { - break - } - } else if merr != io.EOF { - <-time.After(jhandlerPollInterval) - } - - if merr == io.EOF { - break - } - } - return nil -} - -// Bulk process JSON using handlers that process a Map value and the raw JSON. -// 'rdr' is an io.Reader for the JSON (stream). -// 'mapHandler' is the Map and raw JSON - []byte - processor. Return of 'false' stops io.Reader processing. -// 'errHandler' is the error and raw JSON processor. Return of 'false' stops io.Reader processing and returns the error. -// Note: mapHandler() and errHandler() calls are blocking, so reading and processing of messages is serialized. -// This means that you can stop reading the file on error or after processing a particular message. -// To have reading and handling run concurrently, pass argument(s) to a go routine in handler and return 'true'. -func HandleJsonReaderRaw(jsonReader io.Reader, mapHandler func(Map, []byte) bool, errHandler func(error, []byte) bool) error { - var n int - for { - m, raw, merr := NewMapJsonReaderRaw(jsonReader) - n++ - - // handle error condition with errhandler - if merr != nil && merr != io.EOF { - merr = fmt.Errorf("[jsonReader: %d] %s", n, merr.Error()) - if ok := errHandler(merr, raw); !ok { - // caused reader termination - return merr - } - continue - } - - // pass to maphandler - if len(m) != 0 { - if ok := mapHandler(m, raw); !ok { - break - } - } else if merr != io.EOF { - <-time.After(jhandlerPollInterval) - } - - if merr == io.EOF { - break - } - } - return nil -} diff --git a/vendor/github.com/clbanning/mxj/json_test.go b/vendor/github.com/clbanning/mxj/json_test.go deleted file mode 100644 index 7c97d2f7..00000000 --- a/vendor/github.com/clbanning/mxj/json_test.go +++ /dev/null @@ -1,137 +0,0 @@ -package mxj - -import ( - "bytes" - "fmt" - "io" - "testing" -) - -var jdata = []byte(`{ "key1":"string", "key2":34, "key3":true, "key4":"unsafe: <>&", "key5":null }`) -var jdata2 = []byte(`{ "key1":"string", "key2":34, "key3":true, "key4":"unsafe: <>&" }, - { "key":"value in new JSON string" }`) - -func TestJsonHeader(t *testing.T) { - fmt.Println("\n---------------- json_test.go ...\n") -} - -func TestNewMapJson(t *testing.T) { - - m, merr := NewMapJson(jdata) - if merr != nil { - t.Fatal("NewMapJson, merr:", merr.Error()) - } - - fmt.Println("NewMapJson, jdata:", string(jdata)) - fmt.Printf("NewMapJson, m : %#v\n", m) -} - -func TestNewMapJsonNumber(t *testing.T) { - - JsonUseNumber = true - - m, merr := NewMapJson(jdata) - if merr != nil { - t.Fatal("NewMapJson, merr:", merr.Error()) - } - - fmt.Println("NewMapJson, jdata:", string(jdata)) - fmt.Printf("NewMapJson, m : %#v\n", m) - - JsonUseNumber = false -} - -func TestNewMapJsonError(t *testing.T) { - - m, merr := NewMapJson(jdata[:len(jdata)-2]) - if merr == nil { - t.Fatal("NewMapJsonError, m:", m) - } - - fmt.Println("NewMapJsonError, jdata :", string(jdata[:len(jdata)-2])) - fmt.Println("NewMapJsonError, merror:", merr.Error()) - - newData := []byte(`{ "this":"is", "in":error }`) - m, merr = NewMapJson(newData) - if merr == nil { - t.Fatal("NewMapJsonError, m:", m) - } - - fmt.Println("NewMapJsonError, newData :", string(newData)) - fmt.Println("NewMapJsonError, merror :", merr.Error()) -} - -func TestNewMapJsonReader(t *testing.T) { - - rdr := bytes.NewBuffer(jdata2) - - for { - m, jb, merr := NewMapJsonReaderRaw(rdr) - if merr != nil && merr != io.EOF { - t.Fatal("NewMapJsonReader, merr:", merr.Error()) - } - if merr == io.EOF { - break - } - - fmt.Println("NewMapJsonReader, jb:", string(jb)) - fmt.Printf("NewMapJsonReader, m : %#v\n", m) - } -} - -func TestNewMapJsonReaderNumber(t *testing.T) { - - JsonUseNumber = true - - rdr := bytes.NewBuffer(jdata2) - - for { - m, jb, merr := NewMapJsonReaderRaw(rdr) - if merr != nil && merr != io.EOF { - t.Fatal("NewMapJsonReader, merr:", merr.Error()) - } - if merr == io.EOF { - break - } - - fmt.Println("NewMapJsonReader, jb:", string(jb)) - fmt.Printf("NewMapJsonReader, m : %#v\n", m) - } - - JsonUseNumber = false -} - -func TestJson(t *testing.T) { - - m, _ := NewMapJson(jdata) - - j, jerr := m.Json() - if jerr != nil { - t.Fatal("Json, jerr:", jerr.Error()) - } - - fmt.Println("Json, jdata:", string(jdata)) - fmt.Println("Json, j :", string(j)) - - j, _ = m.Json(true) - fmt.Println("Json, j safe:", string(j)) -} - -func TestJsonWriter(t *testing.T) { - mv := Map(map[string]interface{}{"this": "is a", "float": 3.14159, "and": "a", "bool": true}) - - w := new(bytes.Buffer) - raw, err := mv.JsonWriterRaw(w) - if err != nil { - t.Fatal("err:", err.Error()) - } - - b := make([]byte, w.Len()) - _, err = w.Read(b) - if err != nil { - t.Fatal("err:", err.Error()) - } - - fmt.Println("JsonWriter, raw:", string(raw)) - fmt.Println("JsonWriter, b :", string(b)) -} diff --git a/vendor/github.com/clbanning/mxj/keystolower_test.go b/vendor/github.com/clbanning/mxj/keystolower_test.go deleted file mode 100644 index 2884c3ad..00000000 --- a/vendor/github.com/clbanning/mxj/keystolower_test.go +++ /dev/null @@ -1,59 +0,0 @@ -// keystolower_test.go - -package mxj - -import ( - "fmt" - "testing" -) - -var tolowerdata1 = []byte(` - - value - -`) - -var tolowerdata2 = []byte(` - - value - -`) - -func TestToLower(t *testing.T) { - fmt.Println("\n-------------- keystolower_test.go") - fmt.Println("\nTestToLower ...") - - CoerceKeysToLower() - - m1, err := NewMapXml(tolowerdata1) - if err != nil { - t.Fatal(err) - } - m2, err := NewMapXml(tolowerdata2) - if err != nil { - t.Fatal(err) - } - - v1, err := m1.ValuesForPath("doc.element") - if err != nil { - t.Fatal(err) - } - v2, err := m2.ValuesForPath("doc.element") - if err != nil { - t.Fatal(err) - } - - if len(v1) != len(v2) { - t.Fatal(err, len(v1), len(v2)) - } - - m := v1[0].(map[string]interface{}) - mm := v2[0].(map[string]interface{}) - for k, v := range m { - if vv, ok := mm[k]; !ok { - t.Fatal("key:", k, "not in mm") - } else if v.(string) != vv.(string) { - t.Fatal(v.(string), "not in v2:", vv.(string)) - } - } -} diff --git a/vendor/github.com/clbanning/mxj/keyvalues.go b/vendor/github.com/clbanning/mxj/keyvalues.go deleted file mode 100644 index 7feb766b..00000000 --- a/vendor/github.com/clbanning/mxj/keyvalues.go +++ /dev/null @@ -1,658 +0,0 @@ -// Copyright 2012-2014 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -// keyvalues.go: Extract values from an arbitrary XML doc. Tag path can include wildcard characters. - -package mxj - -import ( - "errors" - "fmt" - "strconv" - "strings" -) - -// ----------------------------- get everything FOR a single key ------------------------- - -const ( - minArraySize = 32 -) - -var defaultArraySize int = minArraySize - -// Adjust the buffers for expected number of values to return from ValuesForKey() and ValuesForPath(). -// This can have the effect of significantly reducing memory allocation-copy functions for large data sets. -// Returns the initial buffer size. -func SetArraySize(size int) int { - if size > minArraySize { - defaultArraySize = size - } else { - defaultArraySize = minArraySize - } - return defaultArraySize -} - -// Return all values in Map, 'mv', associated with a 'key'. If len(returned_values) == 0, then no match. -// On error, the returned array is 'nil'. NOTE: 'key' can be wildcard, "*". -// 'subkeys' (optional) are "key:val[:type]" strings representing attributes or elements in a list. -// - By default 'val' is of type string. "key:val:bool" and "key:val:float" to coerce them. -// - For attributes prefix the label with a hyphen, '-', e.g., "-seq:3". -// - If the 'key' refers to a list, then "key:value" could select a list member of the list. -// - The subkey can be wildcarded - "key:*" - to require that it's there with some value. -// - If a subkey is preceeded with the '!' character, the key:value[:type] entry is treated as an -// exclusion critera - e.g., "!author:William T. Gaddis". -func (mv Map) ValuesForKey(key string, subkeys ...string) ([]interface{}, error) { - m := map[string]interface{}(mv) - var subKeyMap map[string]interface{} - if len(subkeys) > 0 { - var err error - subKeyMap, err = getSubKeyMap(subkeys...) - if err != nil { - return nil, err - } - } - - ret := make([]interface{}, 0, defaultArraySize) - var cnt int - hasKey(m, key, &ret, &cnt, subKeyMap) - return ret[:cnt], nil - // ret := make([]interface{}, 0) - // hasKey(m, key, &ret, subKeyMap) - // return ret, nil -} - -// hasKey - if the map 'key' exists append it to array -// if it doesn't do nothing except scan array and map values -func hasKey(iv interface{}, key string, ret *[]interface{}, cnt *int, subkeys map[string]interface{}) { - // func hasKey(iv interface{}, key string, ret *[]interface{}, subkeys map[string]interface{}) { - switch iv.(type) { - case map[string]interface{}: - vv := iv.(map[string]interface{}) - // see if the current value is of interest - if v, ok := vv[key]; ok { - switch v.(type) { - case map[string]interface{}: - if hasSubKeys(v, subkeys) { - *ret = append(*ret, v) - *cnt++ - } - case []interface{}: - for _, av := range v.([]interface{}) { - if hasSubKeys(av, subkeys) { - *ret = append(*ret, av) - *cnt++ - } - } - default: - if len(subkeys) == 0 { - *ret = append(*ret, v) - *cnt++ - } - } - } - - // wildcard case - if key == "*" { - for _, v := range vv { - switch v.(type) { - case map[string]interface{}: - if hasSubKeys(v, subkeys) { - *ret = append(*ret, v) - *cnt++ - } - case []interface{}: - for _, av := range v.([]interface{}) { - if hasSubKeys(av, subkeys) { - *ret = append(*ret, av) - *cnt++ - } - } - default: - if len(subkeys) == 0 { - *ret = append(*ret, v) - *cnt++ - } - } - } - } - - // scan the rest - for _, v := range vv { - hasKey(v, key, ret, cnt, subkeys) - // hasKey(v, key, ret, subkeys) - } - case []interface{}: - for _, v := range iv.([]interface{}) { - hasKey(v, key, ret, cnt, subkeys) - // hasKey(v, key, ret, subkeys) - } - } -} - -// ----------------------- get everything for a node in the Map --------------------------- - -// Allow indexed arrays in "path" specification. (Request from Abhijit Kadam - abhijitk100@gmail.com.) -// 2014.04.28 - implementation note. -// Implemented as a wrapper of (old)ValuesForPath() because we need look-ahead logic to handle expansion -// of wildcards and unindexed arrays. Embedding such logic into valuesForKeyPath() would have made the -// code much more complicated; this wrapper is straightforward, easy to debug, and doesn't add significant overhead. - -// Retrieve all values for a path from the Map. If len(returned_values) == 0, then no match. -// On error, the returned array is 'nil'. -// 'path' is a dot-separated path of key values. -// - If a node in the path is '*', then everything beyond is walked. -// - 'path' can contain indexed array references, such as, "*.data[1]" and "msgs[2].data[0].field" - -// even "*[2].*[0].field". -// 'subkeys' (optional) are "key:val[:type]" strings representing attributes or elements in a list. -// - By default 'val' is of type string. "key:val:bool" and "key:val:float" to coerce them. -// - For attributes prefix the label with a hyphen, '-', e.g., "-seq:3". -// - If the 'path' refers to a list, then "tag:value" would return member of the list. -// - The subkey can be wildcarded - "key:*" - to require that it's there with some value. -// - If a subkey is preceeded with the '!' character, the key:value[:type] entry is treated as an -// exclusion critera - e.g., "!author:William T. Gaddis". -func (mv Map) ValuesForPath(path string, subkeys ...string) ([]interface{}, error) { - // If there are no array indexes in path, use legacy ValuesForPath() logic. - if strings.Index(path, "[") < 0 { - return mv.oldValuesForPath(path, subkeys...) - } - - var subKeyMap map[string]interface{} - if len(subkeys) > 0 { - var err error - subKeyMap, err = getSubKeyMap(subkeys...) - if err != nil { - return nil, err - } - } - - keys, kerr := parsePath(path) - if kerr != nil { - return nil, kerr - } - - vals, verr := valuesForArray(keys, mv) - if verr != nil { - return nil, verr // Vals may be nil, but return empty array. - } - - // Need to handle subkeys ... only return members of vals that satisfy conditions. - retvals := make([]interface{}, 0) - for _, v := range vals { - if hasSubKeys(v, subKeyMap) { - retvals = append(retvals, v) - } - } - return retvals, nil -} - -func valuesForArray(keys []*key, m Map) ([]interface{}, error) { - var tmppath string - var haveFirst bool - var vals []interface{} - var verr error - - lastkey := len(keys) - 1 - for i := 0; i <= lastkey; i++ { - if !haveFirst { - tmppath = keys[i].name - haveFirst = true - } else { - tmppath += "." + keys[i].name - } - - // Look-ahead: explode wildcards and unindexed arrays. - // Need to handle un-indexed list recursively: - // e.g., path is "stuff.data[0]" rather than "stuff[0].data[0]". - // Need to treat it as "stuff[0].data[0]", "stuff[1].data[0]", ... - if !keys[i].isArray && i < lastkey && keys[i+1].isArray { - // Can't pass subkeys because we may not be at literal end of path. - vv, vverr := m.oldValuesForPath(tmppath) - if vverr != nil { - return nil, vverr - } - for _, v := range vv { - // See if we can walk the value. - am, ok := v.(map[string]interface{}) - if !ok { - continue - } - // Work the backend. - nvals, nvalserr := valuesForArray(keys[i+1:], Map(am)) - if nvalserr != nil { - return nil, nvalserr - } - vals = append(vals, nvals...) - } - break // have recursed the whole path - return - } - - if keys[i].isArray || i == lastkey { - // Don't pass subkeys because may not be at literal end of path. - vals, verr = m.oldValuesForPath(tmppath) - } else { - continue - } - if verr != nil { - return nil, verr - } - - if i == lastkey && !keys[i].isArray { - break - } - - // Now we're looking at an array - supposedly. - // Is index in range of vals? - if len(vals) <= keys[i].position { - vals = nil - break - } - - // Return the array member of interest, if at end of path. - if i == lastkey { - vals = vals[keys[i].position:(keys[i].position + 1)] - break - } - - // Extract the array member of interest. - am := vals[keys[i].position:(keys[i].position + 1)] - - // must be a map[string]interface{} value so we can keep walking the path - amm, ok := am[0].(map[string]interface{}) - if !ok { - vals = nil - break - } - - m = Map(amm) - haveFirst = false - } - - return vals, nil -} - -type key struct { - name string - isArray bool - position int -} - -func parsePath(s string) ([]*key, error) { - keys := strings.Split(s, ".") - - ret := make([]*key, 0) - - for i := 0; i < len(keys); i++ { - if keys[i] == "" { - continue - } - - newkey := new(key) - if strings.Index(keys[i], "[") < 0 { - newkey.name = keys[i] - ret = append(ret, newkey) - continue - } - - p := strings.Split(keys[i], "[") - newkey.name = p[0] - p = strings.Split(p[1], "]") - if p[0] == "" { // no right bracket - return nil, fmt.Errorf("no right bracket on key index: %s", keys[i]) - } - // convert p[0] to a int value - pos, nerr := strconv.ParseInt(p[0], 10, 32) - if nerr != nil { - return nil, fmt.Errorf("cannot convert index to int value: %s", p[0]) - } - newkey.position = int(pos) - newkey.isArray = true - ret = append(ret, newkey) - } - - return ret, nil -} - -// legacy ValuesForPath() - now wrapped to handle special case of indexed arrays in 'path'. -func (mv Map) oldValuesForPath(path string, subkeys ...string) ([]interface{}, error) { - m := map[string]interface{}(mv) - var subKeyMap map[string]interface{} - if len(subkeys) > 0 { - var err error - subKeyMap, err = getSubKeyMap(subkeys...) - if err != nil { - return nil, err - } - } - - keys := strings.Split(path, ".") - if keys[len(keys)-1] == "" { - keys = keys[:len(keys)-1] - } - // ivals := make([]interface{}, 0) - // valuesForKeyPath(&ivals, m, keys, subKeyMap) - // return ivals, nil - ivals := make([]interface{}, 0, defaultArraySize) - var cnt int - valuesForKeyPath(&ivals, &cnt, m, keys, subKeyMap) - return ivals[:cnt], nil -} - -func valuesForKeyPath(ret *[]interface{}, cnt *int, m interface{}, keys []string, subkeys map[string]interface{}) { - lenKeys := len(keys) - - // load 'm' values into 'ret' - // expand any lists - if lenKeys == 0 { - switch m.(type) { - case map[string]interface{}: - if subkeys != nil { - if ok := hasSubKeys(m, subkeys); !ok { - return - } - } - *ret = append(*ret, m) - *cnt++ - case []interface{}: - for i, v := range m.([]interface{}) { - if subkeys != nil { - if ok := hasSubKeys(v, subkeys); !ok { - continue // only load list members with subkeys - } - } - *ret = append(*ret, (m.([]interface{}))[i]) - *cnt++ - } - default: - if subkeys != nil { - return // must be map[string]interface{} if there are subkeys - } - *ret = append(*ret, m) - *cnt++ - } - return - } - - // key of interest - key := keys[0] - switch key { - case "*": // wildcard - scan all values - switch m.(type) { - case map[string]interface{}: - for _, v := range m.(map[string]interface{}) { - // valuesForKeyPath(ret, v, keys[1:], subkeys) - valuesForKeyPath(ret, cnt, v, keys[1:], subkeys) - } - case []interface{}: - for _, v := range m.([]interface{}) { - switch v.(type) { - // flatten out a list of maps - keys are processed - case map[string]interface{}: - for _, vv := range v.(map[string]interface{}) { - // valuesForKeyPath(ret, vv, keys[1:], subkeys) - valuesForKeyPath(ret, cnt, vv, keys[1:], subkeys) - } - default: - // valuesForKeyPath(ret, v, keys[1:], subkeys) - valuesForKeyPath(ret, cnt, v, keys[1:], subkeys) - } - } - } - default: // key - must be map[string]interface{} - switch m.(type) { - case map[string]interface{}: - if v, ok := m.(map[string]interface{})[key]; ok { - // valuesForKeyPath(ret, v, keys[1:], subkeys) - valuesForKeyPath(ret, cnt, v, keys[1:], subkeys) - } - case []interface{}: // may be buried in list - for _, v := range m.([]interface{}) { - switch v.(type) { - case map[string]interface{}: - if vv, ok := v.(map[string]interface{})[key]; ok { - // valuesForKeyPath(ret, vv, keys[1:], subkeys) - valuesForKeyPath(ret, cnt, vv, keys[1:], subkeys) - } - } - } - } - } -} - -// hasSubKeys() - interface{} equality works for string, float64, bool -// 'v' must be a map[string]interface{} value to have subkeys -// 'a' can have k:v pairs with v.(string) == "*", which is treated like a wildcard. -func hasSubKeys(v interface{}, subkeys map[string]interface{}) bool { - if len(subkeys) == 0 { - return true - } - - switch v.(type) { - case map[string]interface{}: - // do all subKey name:value pairs match? - mv := v.(map[string]interface{}) - for skey, sval := range subkeys { - isNotKey := false - if skey[:1] == "!" { // a NOT-key - skey = skey[1:] - isNotKey = true - } - vv, ok := mv[skey] - if !ok { // key doesn't exist - if isNotKey { // key not there, but that's what we want - if kv, ok := sval.(string); ok && kv == "*" { - continue - } - } - return false - } - // wildcard check - if kv, ok := sval.(string); ok && kv == "*" { - if isNotKey { // key is there, and we don't want it - return false - } - continue - } - switch sval.(type) { - case string: - if s, ok := vv.(string); ok && s == sval.(string) { - if isNotKey { - return false - } - continue - } - case bool: - if b, ok := vv.(bool); ok && b == sval.(bool) { - if isNotKey { - return false - } - continue - } - case float64: - if f, ok := vv.(float64); ok && f == sval.(float64) { - if isNotKey { - return false - } - continue - } - } - // key there but didn't match subkey value - if isNotKey { // that's what we want - continue - } - return false - } - // all subkeys matched - return true - } - - // not a map[string]interface{} value, can't have subkeys - return false -} - -// Generate map of key:value entries as map[string]string. -// 'kv' arguments are "name:value" pairs: attribute keys are designated with prepended hyphen, '-'. -// If len(kv) == 0, the return is (nil, nil). -func getSubKeyMap(kv ...string) (map[string]interface{}, error) { - if len(kv) == 0 { - return nil, nil - } - m := make(map[string]interface{}, 0) - for _, v := range kv { - vv := strings.Split(v, ":") - switch len(vv) { - case 2: - m[vv[0]] = interface{}(vv[1]) - case 3: - switch vv[3] { - case "string", "char", "text": - m[vv[0]] = interface{}(vv[1]) - case "bool", "boolean": - // ParseBool treats "1"==true & "0"==false - b, err := strconv.ParseBool(vv[1]) - if err != nil { - return nil, fmt.Errorf("can't convert subkey value to bool: %s", vv[1]) - } - m[vv[0]] = interface{}(b) - case "float", "float64", "num", "number", "numeric": - f, err := strconv.ParseFloat(vv[1], 64) - if err != nil { - return nil, fmt.Errorf("can't convert subkey value to float: %s", vv[1]) - } - m[vv[0]] = interface{}(f) - default: - return nil, fmt.Errorf("unknown subkey conversion spec: %s", v) - } - default: - return nil, fmt.Errorf("unknown subkey spec: %s", v) - } - } - return m, nil -} - -// ------------------------------- END of valuesFor ... ---------------------------- - -// ----------------------- locate where a key value is in the tree ------------------- - -//----------------------------- find all paths to a key -------------------------------- - -// Get all paths through Map, 'mv', (in dot-notation) that terminate with the specified key. -// Results can be used with ValuesForPath. -func (mv Map) PathsForKey(key string) []string { - m := map[string]interface{}(mv) - breadbasket := make(map[string]bool, 0) - breadcrumbs := "" - - hasKeyPath(breadcrumbs, m, key, breadbasket) - if len(breadbasket) == 0 { - return nil - } - - // unpack map keys to return - res := make([]string, len(breadbasket)) - var i int - for k := range breadbasket { - res[i] = k - i++ - } - - return res -} - -// Extract the shortest path from all possible paths - from PathsForKey() - in Map, 'mv'.. -// Paths are strings using dot-notation. -func (mv Map) PathForKeyShortest(key string) string { - paths := mv.PathsForKey(key) - - lp := len(paths) - if lp == 0 { - return "" - } - if lp == 1 { - return paths[0] - } - - shortest := paths[0] - shortestLen := len(strings.Split(shortest, ".")) - - for i := 1; i < len(paths); i++ { - vlen := len(strings.Split(paths[i], ".")) - if vlen < shortestLen { - shortest = paths[i] - shortestLen = vlen - } - } - - return shortest -} - -// hasKeyPath - if the map 'key' exists append it to KeyPath.path and increment KeyPath.depth -// This is really just a breadcrumber that saves all trails that hit the prescribed 'key'. -func hasKeyPath(crumbs string, iv interface{}, key string, basket map[string]bool) { - switch iv.(type) { - case map[string]interface{}: - vv := iv.(map[string]interface{}) - if _, ok := vv[key]; ok { - if crumbs == "" { - crumbs = key - } else { - crumbs += "." + key - } - // *basket = append(*basket, crumb) - basket[crumbs] = true - } - // walk on down the path, key could occur again at deeper node - for k, v := range vv { - // create a new breadcrumb, intialized with the one we have - var nbc string - if crumbs == "" { - nbc = k - } else { - nbc = crumbs + "." + k - } - hasKeyPath(nbc, v, key, basket) - } - case []interface{}: - // crumb-trail doesn't change, pass it on - for _, v := range iv.([]interface{}) { - hasKeyPath(crumbs, v, key, basket) - } - } -} - -// Returns the first found value for the path. -func (mv Map) ValueForPath(path string) (interface{}, error) { - vals, err := mv.ValuesForPath(path) - if err != nil { - return nil, err - } - if len(vals) == 0 { - return nil, errors.New("ValueForPath: path not found") - } - return vals[0], nil -} - -// Returns the first found value for the path as a string. -func (mv Map) ValueForPathString(path string) (string, error) { - vals, err := mv.ValuesForPath(path) - if err != nil { - return "", err - } - if len(vals) == 0 { - return "", errors.New("ValueForPath: path not found") - } - val := vals[0] - switch str := val.(type) { - case string: - return str, nil - default: - return "", fmt.Errorf("ValueForPath: unsupported type: %T", str) - } -} - -// Returns the first found value for the path as a string. -// If the path is not found then it returns an empty string. -func (mv Map) ValueOrEmptyForPathString(path string) string { - str, _ := mv.ValueForPathString(path) - return str -} diff --git a/vendor/github.com/clbanning/mxj/keyvalues_test.go b/vendor/github.com/clbanning/mxj/keyvalues_test.go deleted file mode 100644 index 0626df21..00000000 --- a/vendor/github.com/clbanning/mxj/keyvalues_test.go +++ /dev/null @@ -1,446 +0,0 @@ -// keyvalues_test.go - test keyvalues.go methods - -package mxj - -import ( - // "bytes" - "fmt" - // "io" - "testing" -) - -func TestKVHeader(t *testing.T) { - fmt.Println("\n---------------- keyvalues_test.go ...\n") -} - -var doc1 = []byte(` - - - - William T. Gaddis - The Recognitions - One of the great seminal American novels of the 20th century. - - - Austin Tappan Wright - Islandia - An example of earlier 20th century American utopian fiction. - - - John Hawkes - The Beetle Leg - A lyrical novel about the construction of Ft. Peck Dam in Montana. - - - - T.E. - Porter - - King's Day - A magical novella. - - - -`) - -var doc2 = []byte(` - - - - William T. Gaddis - The Recognitions - One of the great seminal American novels of the 20th century. - - - Something else. - -`) - -// the basic demo/test case - a small bibliography with mixed element types -func TestPathsForKey(t *testing.T) { - fmt.Println("PathsForKey, doc1 ...") - m, merr := NewMapXml(doc1) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println("PathsForKey, doc1#author") - ss := m.PathsForKey("author") - fmt.Println("... ss:", ss) - - fmt.Println("PathsForKey, doc1#books") - ss = m.PathsForKey("books") - fmt.Println("... ss:", ss) - - fmt.Println("PathsForKey, doc2 ...") - m, merr = NewMapXml(doc2) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println("PathForKey, doc2#book") - ss = m.PathsForKey("book") - fmt.Println("... ss:", ss) - - fmt.Println("PathForKeyShortest, doc2#book") - s := m.PathForKeyShortest("book") - fmt.Println("... s :", s) -} - -func TestValuesForKey(t *testing.T) { - fmt.Println("ValuesForKey ...") - m, merr := NewMapXml(doc1) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println("ValuesForKey, doc1#author") - ss, sserr := m.ValuesForKey("author") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForKey, doc1#book") - ss, sserr = m.ValuesForKey("book") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForKey, doc1#book,-seq:3") - ss, sserr = m.ValuesForKey("book", "-seq:3") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForKey, doc1#book, author:William T. Gaddis") - ss, sserr = m.ValuesForKey("book", "author:William T. Gaddis") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForKey, doc1#author, -seq:1") - ss, sserr = m.ValuesForKey("author", "-seq:1") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { // should be len(ss) == 0 - fmt.Println("... ss.v:", v) - } -} - -func TestValuesForPath(t *testing.T) { - fmt.Println("ValuesForPath ...") - m, merr := NewMapXml(doc1) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println("ValuesForPath, doc.books.book.author") - ss, sserr := m.ValuesForPath("doc.books.book.author") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForPath, doc.books.book") - ss, sserr = m.ValuesForPath("doc.books.book") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForPath, doc.books.book -seq=3") - ss, sserr = m.ValuesForPath("doc.books.book", "-seq:3") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForPath, doc.books.* -seq=3") - ss, sserr = m.ValuesForPath("doc.books.*", "-seq:3") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForPath, doc.*.* -seq=3") - ss, sserr = m.ValuesForPath("doc.*.*", "-seq:3") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } -} - -func TestValuesForNotKey(t *testing.T) { - fmt.Println("ValuesForNotKey ...") - m, merr := NewMapXml(doc1) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println("ValuesForPath, doc.books.book !author:William T. Gaddis") - ss, sserr := m.ValuesForPath("doc.books.book", "!author:William T. Gaddis") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForPath, doc.books.book !author:*") - ss, sserr = m.ValuesForPath("doc.books.book", "!author:*") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { // expect len(ss) == 0 - fmt.Println("... ss.v:", v) - } - - fmt.Println("ValuesForPath, doc.books.book !unknown:*") - ss, sserr = m.ValuesForPath("doc.books.book", "!unknown:*") - if sserr != nil { - t.Fatal("sserr:", sserr.Error()) - } - for _, v := range ss { - fmt.Println("... ss.v:", v) - } -} - -func TestIAHeader(t *testing.T) { - fmt.Println("\n---------------- indexedarray_test.go ...\n") -} - -var ak_data = []byte(`{ "section1":{"data" : [{"F1" : "F1 data","F2" : "F2 data"},{"F1" : "demo 123","F2" : "abc xyz"}]}}`) -var j_data = []byte(`{ "stuff":[ { "data":[ { "F":1 }, { "F":2 }, { "F":3 } ] }, { "data":[ 4, 5, 6 ] } ] }`) -var x_data = []byte(` - - - - 1 - - - 2 - - - 3 - - - - - 4 - - - 5 - - - 6 - - -`) - -func TestValuesForIndexedArray(t *testing.T) { - j_main(t) - x_main(t) - ak_main(t) -} - -func ak_main(t *testing.T) { - fmt.Println("\nak_data:", string(ak_data)) - m, merr := NewMapJson(ak_data) - if merr != nil { - t.Fatal("merr:", merr.Error()) - return - } - fmt.Println("m:", m) - - v, verr := m.ValuesForPath("section1.data[0].F1") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("section1.data[0].F1:", v) -} - -func j_main(t *testing.T) { - fmt.Println("j_data:", string(j_data)) - m, merr := NewMapJson(j_data) - if merr != nil { - t.Fatal("merr:", merr.Error()) - return - } - fmt.Println("m:", m) - - v, verr := m.ValuesForPath("stuff[0]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff[0]:", v) - - v, verr = m.ValuesForPath("stuff.data") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff.data:", v) - - v, verr = m.ValuesForPath("stuff[0].data") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff[0].data:", v) - - v, verr = m.ValuesForPath("stuff.data[0]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff.data[0]:", v) - - v, verr = m.ValuesForPath("stuff.*[2]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff.*[2]:", v) - - v, verr = m.ValuesForPath("stuff.data.F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff.data.F:", v) - - v, verr = m.ValuesForPath("*.*.F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("*.*.F:", v) - - v, verr = m.ValuesForPath("stuff.data[0].F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff.data[0].F:", v) - - v, verr = m.ValuesForPath("stuff.data[1].F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff.data[1].F:", v) - - v, verr = m.ValuesForPath("stuff[0].data[2]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff[0].data[2]:", v) - - v, verr = m.ValuesForPath("stuff[1].data[1]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff[1].data[1]:", v) - - v, verr = m.ValuesForPath("stuff[1].data[1].F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff[1].data[1].F", v) - - v, verr = m.ValuesForPath("stuff[1].data.F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("stuff[1].data.F:", v) -} - -func x_main(t *testing.T) { - fmt.Println("\nx_data:", string(x_data)) - m, merr := NewMapXml(x_data) - if merr != nil { - t.Fatal("merr:", merr.Error()) - return - } - fmt.Println("m:", m) - - v, verr := m.ValuesForPath("doc.stuff[0]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("doc.stuff[0]:", v) - - v, verr = m.ValuesForPath("doc.stuff.data[0]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("doc.stuff.data[0]:", v) - - v, verr = m.ValuesForPath("doc.stuff.data[0]", "-seq:2.1") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("doc.stuff.data[0] -seq:2.1:", v) - - v, verr = m.ValuesForPath("doc.stuff.data[0].F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("doc.stuff.data[0].F:", v) - - v, verr = m.ValuesForPath("doc.stuff[0].data[2]") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("doc.stuff[0].data[2]:", v) - - v, verr = m.ValuesForPath("doc.stuff[1].data[1].F") - if verr != nil { - t.Fatal("verr:", verr.Error()) - } - fmt.Println("doc.stuff[1].data[1].F:", v) -} - -func TestValueForPath(t *testing.T) { - m := map[string]interface{}{ - "Div": map[string]interface{}{ - "Colour": "blue", - }, - } - mv := Map(m) - - v, err := mv.ValueForPath("Div.Colour") - if err != nil { - t.Fatal(err) - } - if str, ok := v.(string); !ok || str != "blue" { - t.Fatal("wrong value") - } -} - -func TestValueForPathString(t *testing.T) { - m := map[string]interface{}{ - "Div": map[string]interface{}{ - "Colour": "blue", - }, - } - mv := Map(m) - - str, err := mv.ValueForPathString("Div.Colour") - if err != nil { - t.Fatal(err) - } - if str != "blue" { - t.Fatal("wrong value") - } -} diff --git a/vendor/github.com/clbanning/mxj/leafnode.go b/vendor/github.com/clbanning/mxj/leafnode.go deleted file mode 100644 index 3e8b18da..00000000 --- a/vendor/github.com/clbanning/mxj/leafnode.go +++ /dev/null @@ -1,87 +0,0 @@ -package mxj - -// leafnode.go - return leaf nodes with paths and values for the Map -// inspired by: https://groups.google.com/forum/#!topic/golang-nuts/3JhuVKRuBbw - -import ( - "strconv" - "strings" -) - -const ( - NoAttributes = true // suppress LeafNode values that are attributes -) - -// LeafNode - a terminal path value in a Map. -// For XML Map values it represents an attribute or simple element value - of type -// string unless Map was created using Cast flag. For JSON Map values it represents -// a string, numeric, boolean, or null value. -type LeafNode struct { - Path string // a dot-notation representation of the path with array subscripting - Value interface{} // the value at the path termination -} - -// LeafNodes - returns an array of all LeafNode values for the Map. -// The option no_attr argument suppresses attribute values (keys with prepended hyphen, '-') -// as well as the "#text" key for the associated simple element value. -// NOTE: if PrependAttrWithHypen(false), then #test is stripping "#text" key -// will result in attributes having .attr-name as terminal node in 'path' while -// the path for the element value, itself, will be the base path w/o "#text". -func (mv Map) LeafNodes(no_attr ...bool) []LeafNode { - var a bool - if len(no_attr) == 1 { - a = no_attr[0] - } - - l := make([]LeafNode, 0) - getLeafNodes("", "", map[string]interface{}(mv), &l, a) - return l -} - -func getLeafNodes(path, node string, mv interface{}, l *[]LeafNode, noattr bool) { - // if stripping attributes, then also strip "#text" key - if !noattr || node != "#text" { - if path != "" && node[:1] != "[" { - path += "." - } - path += node - } - switch mv.(type) { - case map[string]interface{}: - for k, v := range mv.(map[string]interface{}) { - // if noattr && k[:1] == "-" { - if noattr && len(attrPrefix) > 0 && strings.Index(k, attrPrefix) == 0 { - continue - } - getLeafNodes(path, k, v, l, noattr) - } - case []interface{}: - for i, v := range mv.([]interface{}) { - getLeafNodes(path, "["+strconv.Itoa(i)+"]", v, l, noattr) - } - default: - // can't walk any further, so create leaf - n := LeafNode{path, mv} - *l = append(*l, n) - } -} - -// LeafPaths - all paths that terminate in LeafNode values. -func (mv Map) LeafPaths(no_attr ...bool) []string { - ln := mv.LeafNodes() - ss := make([]string, len(ln)) - for i := 0; i < len(ln); i++ { - ss[i] = ln[i].Path - } - return ss -} - -// LeafValues - all terminal values in the Map. -func (mv Map) LeafValues(no_attr ...bool) []interface{} { - ln := mv.LeafNodes() - vv := make([]interface{}, len(ln)) - for i := 0; i < len(ln); i++ { - vv[i] = ln[i].Value - } - return vv -} diff --git a/vendor/github.com/clbanning/mxj/leafnode_test.go b/vendor/github.com/clbanning/mxj/leafnode_test.go deleted file mode 100644 index beba2ca7..00000000 --- a/vendor/github.com/clbanning/mxj/leafnode_test.go +++ /dev/null @@ -1,117 +0,0 @@ -package mxj - -import ( - "fmt" - "testing" -) - -func TestLNHeader(t *testing.T) { - fmt.Println("\n---------------- leafnode_test.go ...") -} - -func TestLeafNodes(t *testing.T) { - json1 := []byte(`{ - "friends": [ - { - "skills": [ - 44, 12 - ] - } - ] - }`) - - json2 := []byte(`{ - "friends": - { - "skills": [ - 44, 12 - ] - } - - }`) - - m, _ := NewMapJson(json1) - ln := m.LeafNodes() - fmt.Println("\njson1-LeafNodes:") - for _, v := range ln { - fmt.Printf("%#v\n", v) - } - p := m.LeafPaths() - fmt.Println("\njson1-LeafPaths:") - for _, v := range p { - fmt.Printf("%#v\n", v) - } - - m, _ = NewMapJson(json2) - ln = m.LeafNodes() - fmt.Println("\njson2-LeafNodes:") - for _, v := range ln { - fmt.Printf("%#v\n", v) - } - v := m.LeafValues() - fmt.Println("\njson1-LeafValues:") - for _, v := range v { - fmt.Printf("%#v\n", v) - } - - json3 := []byte(`{ "a":"list", "of":["data", "of", 3, "types", true]}`) - m, _ = NewMapJson(json3) - ln = m.LeafNodes() - fmt.Println("\njson3-LeafNodes:") - for _, v := range ln { - fmt.Printf("%#v\n", v) - } - v = m.LeafValues() - fmt.Println("\njson3-LeafValues:") - for _, v := range v { - fmt.Printf("%#v\n", v) - } - p = m.LeafPaths() - fmt.Println("\njson3-LeafPaths:") - for _, v := range p { - fmt.Printf("%#v\n", v) - } - - xmldata2 := []byte(` - - Item 2 is blue - - - - - `) - m, err := NewMapXml(xmldata2) - if err != nil { - t.Fatal(err.Error()) - } - fmt.Println("\nxml2data2-LeafValues:") - ln = m.LeafNodes() - for _, v := range ln { - fmt.Printf("%#v\n", v) - } - fmt.Println("\nxml2data2-LeafValues(NoAttributes):") - ln = m.LeafNodes(NoAttributes) - for _, v := range ln { - fmt.Printf("%#v\n", v) - } - - // no-hyphen - PrependAttrWithHyphen(false) - m, err = NewMapXml(xmldata2) - if err != nil { - t.Fatal(err.Error()) - } - fmt.Println("\nno-hyphen-xml2data2-LeafValues:") - ln = m.LeafNodes() - for _, v := range ln { - fmt.Printf("%#v\n", v) - } - fmt.Println("\nno-hyphen-xml2data2-LeafValues(NoAttributes):") - ln = m.LeafNodes(NoAttributes) - for _, v := range ln { - fmt.Printf("%#v\n", v) - } - - // restore default - PrependAttrWithHyphen(true) -} diff --git a/vendor/github.com/clbanning/mxj/misc.go b/vendor/github.com/clbanning/mxj/misc.go deleted file mode 100644 index 5b4fab21..00000000 --- a/vendor/github.com/clbanning/mxj/misc.go +++ /dev/null @@ -1,86 +0,0 @@ -// Copyright 2016 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -// misc.go - mimic functions (+others) called out in: -// https://groups.google.com/forum/#!topic/golang-nuts/jm_aGsJNbdQ -// Primarily these methods let you retrive XML structure information. - -package mxj - -import ( - "fmt" - "sort" - "strings" -) - -// Return the root element of the Map. If there is not a single key in Map, -// then an error is returned. -func (mv Map) Root() (string, error) { - mm := map[string]interface{}(mv) - if len(mm) != 1 { - return "", fmt.Errorf("Map does not have singleton root. Len: %d.", len(mm)) - } - for k, _ := range mm { - return k, nil - } - return "", nil -} - -// If the path is an element with sub-elements, return a list of the sub-element -// keys. (The list is alphabeticly sorted.) NOTE: Map keys that are prefixed with -// '-', a hyphen, are considered attributes; see m.Attributes(path). -func (mv Map) Elements(path string) ([]string, error) { - e, err := mv.ValueForPath(path) - if err != nil { - return nil, err - } - switch e.(type) { - case map[string]interface{}: - ee := e.(map[string]interface{}) - elems := make([]string, len(ee)) - var i int - for k, _ := range ee { - if len(attrPrefix) > 0 && strings.Index(k, attrPrefix) == 0 { - continue // skip attributes - } - elems[i] = k - i++ - } - elems = elems[:i] - // alphabetic sort keeps things tidy - sort.Strings(elems) - return elems, nil - } - return nil, fmt.Errorf("no elements for path: %s", path) -} - -// If the path is an element with attributes, return a list of the attribute -// keys. (The list is alphabeticly sorted.) NOTE: Map keys that are not prefixed with -// '-', a hyphen, are not treated as attributes; see m.Elements(path). Also, if the -// attribute prefix is "" - SetAttrPrefix("") or PrependAttrWithHyphen(false) - then -// there are no identifiable attributes. -func (mv Map) Attributes(path string) ([]string, error) { - a, err := mv.ValueForPath(path) - if err != nil { - return nil, err - } - switch a.(type) { - case map[string]interface{}: - aa := a.(map[string]interface{}) - attrs := make([]string, len(aa)) - var i int - for k, _ := range aa { - if len(attrPrefix) == 0 || strings.Index(k, attrPrefix) != 0 { - continue // skip non-attributes - } - attrs[i] = k[len(attrPrefix):] - i++ - } - attrs = attrs[:i] - // alphabetic sort keeps things tidy - sort.Strings(attrs) - return attrs, nil - } - return nil, fmt.Errorf("no attributes for path: %s", path) -} diff --git a/vendor/github.com/clbanning/mxj/misc_test.go b/vendor/github.com/clbanning/mxj/misc_test.go deleted file mode 100644 index b6b9bb6a..00000000 --- a/vendor/github.com/clbanning/mxj/misc_test.go +++ /dev/null @@ -1,199 +0,0 @@ -// misc_test.go - -package mxj - -import ( - "fmt" - "testing" -) - -var miscdata = []byte(` - - - sub_value_1 - sub_value_2 - - element_2 - -`) - -func TestMisc(t *testing.T) { - PrependAttrWithHyphen(true) // be safe - fmt.Println("\n------------------ misc_test.go ...") -} - -func TestRoot(t *testing.T) { - m, err := NewMapXml(miscdata) - if err != nil { - t.Fatal(err) - } - r, err := m.Root() - if err != nil { - t.Fatal(err) - } - if r != "doc" { - t.Fatal("Root not doc:", r) - } -} - -func TestElements(t *testing.T) { - m, err := NewMapXml(miscdata) - if err != nil { - t.Fatal(err) - } - e, err := m.Elements("doc") - if err != nil { - t.Fatal(err) - } - elist := []string{"elem1", "elem2"} - for i, ee := range e { - if ee != elist[i] { - t.Fatal("error in list, elem#:", i, "-", ee, ":", elist[i]) - } - } - - e, err = m.Elements("doc.elem1") - if err != nil { - t.Fatal(err) - } - elist = []string{"sub1", "sub2"} - for i, ee := range e { - if ee != elist[i] { - t.Fatal("error in list, elem#:", i, "-", ee, ":", elist[i]) - } - } -} - -func TestAttributes(t *testing.T) { - m, err := NewMapXml(miscdata) - if err != nil { - t.Fatal(err) - } - a, err := m.Attributes("doc.elem2") - if err != nil { - t.Fatal(err) - } - alist := []string{"name", "seq"} - for i, aa := range a { - if aa != alist[i] { - t.Fatal("error in list, elem#:", i, "-", aa, ":", alist[i]) - } - } - - a, err = m.Attributes("doc.elem1.sub2") - if err != nil { - t.Fatal(err) - } - alist = []string{"name", "seq"} - for i, aa := range a { - if aa != alist[i] { - t.Fatal("error in list, elem#:", i, "-", aa, ":", alist[i]) - } - } -} - -func TestElementsAttrPrefix(t *testing.T) { - SetAttrPrefix("__") - m, err := NewMapXml(miscdata) - if err != nil { - t.Fatal(err) - } - e, err := m.Elements("doc") - if err != nil { - t.Fatal(err) - } - elist := []string{"elem1", "elem2"} - for i, ee := range e { - if ee != elist[i] { - t.Fatal("error in list, elem#:", i, "-", ee, ":", elist[i]) - } - } - - e, err = m.Elements("doc.elem1") - if err != nil { - t.Fatal(err) - } - elist = []string{"sub1", "sub2"} - for i, ee := range e { - if ee != elist[i] { - t.Fatal("error in list, elem#:", i, "-", ee, ":", elist[i]) - } - } -} - -func TestAttributesAttrPrefix(t *testing.T) { - SetAttrPrefix("__") - m, err := NewMapXml(miscdata) - if err != nil { - t.Fatal(err) - } - a, err := m.Attributes("doc.elem2") - if err != nil { - t.Fatal(err) - } - alist := []string{"name", "seq"} - for i, aa := range a { - if aa != alist[i] { - t.Fatal("error in list, elem#:", i, "-", aa, ":", alist[i]) - } - } - - a, err = m.Attributes("doc.elem1.sub2") - if err != nil { - t.Fatal(err) - } - alist = []string{"name", "seq"} - for i, aa := range a { - if aa != alist[i] { - t.Fatal("error in list, elem#:", i, "-", aa, ":", alist[i]) - } - } -} - -func TestElementsNoAttrPrefix(t *testing.T) { - PrependAttrWithHyphen(false) - m, err := NewMapXml(miscdata) - if err != nil { - t.Fatal(err) - } - e, err := m.Elements("doc") - if err != nil { - t.Fatal(err) - } - if len(e) != 2 { - t.Fatal("didn't get 2 elements:", e) - } - - e, err = m.Elements("doc.elem1") - if err != nil { - t.Fatal(err) - } - if len(e) != 4 { - t.Fatal("didn't get 4 elements:", e) - } - PrependAttrWithHyphen(true) -} - -func TestAttributesNoAttrPrefix(t *testing.T) { - PrependAttrWithHyphen(false) - m, err := NewMapXml(miscdata) - if err != nil { - t.Fatal(err) - } - a, err := m.Attributes("doc.elem2") - if err != nil { - t.Fatal(err) - } - if len(a) > 0 { - t.Fatal("found attributes where there are none:", a) - } - - a, err = m.Attributes("doc.elem1.sub2") - if err != nil { - t.Fatal(err) - } - if len(a) > 0 { - t.Fatal("found attributes where there are none:", a) - } - PrependAttrWithHyphen(true) -} diff --git a/vendor/github.com/clbanning/mxj/mxj.go b/vendor/github.com/clbanning/mxj/mxj.go deleted file mode 100644 index ca20b68e..00000000 --- a/vendor/github.com/clbanning/mxj/mxj.go +++ /dev/null @@ -1,131 +0,0 @@ -// mxj - A collection of map[string]interface{} and associated XML and JSON utilities. -// Copyright 2012-2014 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -package mxj - -import ( - "fmt" - "sort" -) - -const ( - Cast = true // for clarity - e.g., mxj.NewMapXml(doc, mxj.Cast) - SafeEncoding = true // ditto - e.g., mv.Json(mxj.SafeEncoding) -) - -type Map map[string]interface{} - -// Allocate a Map. -func New() Map { - m := make(map[string]interface{}, 0) - return m -} - -// Cast a Map to map[string]interface{} -func (mv Map) Old() map[string]interface{} { - return mv -} - -// Return a copy of mv as a newly allocated Map. If the Map only contains string, -// numeric, map[string]interface{}, and []interface{} values, then it can be thought -// of as a "deep copy." Copying a structure (or structure reference) value is subject -// to the noted restrictions. -// NOTE: If 'mv' includes structure values with, possibly, JSON encoding tags -// then only public fields of the structure are in the new Map - and with -// keys that conform to any encoding tag instructions. The structure itself will -// be represented as a map[string]interface{} value. -func (mv Map) Copy() (Map, error) { - // this is the poor-man's deep copy - // not efficient, but it works - j, jerr := mv.Json() - // must handle, we don't know how mv got built - if jerr != nil { - return nil, jerr - } - return NewMapJson(j) -} - -// --------------- StringIndent ... from x2j.WriteMap ------------- - -// Pretty print a Map. -func (mv Map) StringIndent(offset ...int) string { - return writeMap(map[string]interface{}(mv), true, true, offset...) -} - -// Pretty print a Map without the value type information - just key:value entries. -func (mv Map) StringIndentNoTypeInfo(offset ...int) string { - return writeMap(map[string]interface{}(mv), false, true, offset...) -} - -// writeMap - dumps the map[string]interface{} for examination. -// 'typeInfo' causes value type to be printed. -// 'offset' is initial indentation count; typically: Write(m). -func writeMap(m interface{}, typeInfo, root bool, offset ...int) string { - var indent int - if len(offset) == 1 { - indent = offset[0] - } - - var s string - switch m.(type) { - case []interface{}: - if typeInfo { - s += "[[]interface{}]" - } - for _, v := range m.([]interface{}) { - s += "\n" - for i := 0; i < indent; i++ { - s += " " - } - s += writeMap(v, typeInfo, false, indent+1) - } - case map[string]interface{}: - list := make([][2]string, len(m.(map[string]interface{}))) - var n int - for k, v := range m.(map[string]interface{}) { - list[n][0] = k - list[n][1] = writeMap(v, typeInfo, false, indent+1) - n++ - } - sort.Sort(mapList(list)) - for _, v := range list { - if root { - root = false - } else { - s += "\n" - } - for i := 0; i < indent; i++ { - s += " " - } - s += v[0] + " : " + v[1] - } - default: - if typeInfo { - s += fmt.Sprintf("[%T] %+v", m, m) - } else { - s += fmt.Sprintf("%+v", m) - } - } - return s -} - -// ======================== utility =============== - -type mapList [][2]string - -func (ml mapList) Len() int { - return len(ml) -} - -func (ml mapList) Swap(i, j int) { - ml[i], ml[j] = ml[j], ml[i] -} - -func (ml mapList) Less(i, j int) bool { - if ml[i][0] > ml[j][0] { - return false - } - return true -} diff --git a/vendor/github.com/clbanning/mxj/mxj_test.go b/vendor/github.com/clbanning/mxj/mxj_test.go deleted file mode 100644 index b18a41aa..00000000 --- a/vendor/github.com/clbanning/mxj/mxj_test.go +++ /dev/null @@ -1,46 +0,0 @@ -package mxj - -import ( - "fmt" - "testing" -) - -func TestMxjHeader(t *testing.T) { - fmt.Println("\n---------------- mxj_test.go ...\n") -} - -func TestMap(t *testing.T) { - m := New() - - m["key"] = interface{}("value") - v := map[string]interface{}{"bool": true, "float": 3.14159, "string": "Now is the time"} - vv := []interface{}{3.1415962535, false, "for all good men"} - v["listkey"] = interface{}(vv) - m["newkey"] = interface{}(v) - - fmt.Println("TestMap, m:") - fmt.Printf("%#v\n", m) - fmt.Println("TestMap, StringIndent -") - fmt.Println(m.StringIndent()) - fmt.Println("TestMap, StringIndent NoTypeInfo -") - fmt.Println(m.StringIndentNoTypeInfo()) - - o := interface{}(m.Old()) - switch o.(type) { - case map[string]interface{}: - // do nothing - default: - t.Fatal("invalid type for m.Old()") - } - - m, _ = NewMapXml([]byte(`HelloWorld`)) - fmt.Println("TestMap, m_fromXML:") - fmt.Printf("%#v\n", m) - fmt.Println("TestMap, StringIndent -") - fmt.Println(m.StringIndent()) - fmt.Println("TestMap, StringIndent NoTypeInfo -") - fmt.Println(m.StringIndentNoTypeInfo()) - - mm, _ := m.Copy() - fmt.Println("TestMap, m.Copy() -\n", mm) -} diff --git a/vendor/github.com/clbanning/mxj/nan_test.go b/vendor/github.com/clbanning/mxj/nan_test.go deleted file mode 100644 index f30007c8..00000000 --- a/vendor/github.com/clbanning/mxj/nan_test.go +++ /dev/null @@ -1,80 +0,0 @@ -// nan_test.go - -package mxj - -import ( - "fmt" - "testing" -) - -func TestNan(t *testing.T) { - fmt.Println("\n------------ TestNan\n") - data := []byte("NAN") - - m, err := NewMapXml(data, true) - if err != nil { - t.Fatal("err:", err) - } - v, err := m.ValueForPath("foo.bar") - if err != nil { - t.Fatal("err:", err) - } - if _, ok := v.(string); !ok { - t.Fatal("v not string") - } - fmt.Println("foo.bar:", v) -} - -func TestInf(t *testing.T) { - data := []byte("INF") - - m, err := NewMapXml(data, true) - if err != nil { - t.Fatal("err:", err) - } - v, err := m.ValueForPath("foo.bar") - if err != nil { - t.Fatal("err:", err) - } - if _, ok := v.(string); !ok { - t.Fatal("v not string") - } - fmt.Println("foo.bar:", v) -} - -func TestMinusInf(t *testing.T) { - data := []byte("-INF") - - m, err := NewMapXml(data, true) - if err != nil { - t.Fatal("err:", err) - } - v, err := m.ValueForPath("foo.bar") - if err != nil { - t.Fatal("err:", err) - } - if _, ok := v.(string); !ok { - t.Fatal("v not string") - } - fmt.Println("foo.bar:", v) -} - -func TestCastNanInf(t *testing.T) { - data := []byte("NAN") - - CastNanInf(true) - - m, err := NewMapXml(data, true) - if err != nil { - t.Fatal("err:", err) - } - v, err := m.ValueForPath("foo.bar") - if err != nil { - t.Fatal("err:", err) - } - if _, ok := v.(float64); !ok { - fmt.Printf("%#v\n", v) - t.Fatal("v not float64") - } - fmt.Println("foo.bar:", v) -} diff --git a/vendor/github.com/clbanning/mxj/newmap.go b/vendor/github.com/clbanning/mxj/newmap.go deleted file mode 100644 index fc1320c0..00000000 --- a/vendor/github.com/clbanning/mxj/newmap.go +++ /dev/null @@ -1,183 +0,0 @@ -// mxj - A collection of map[string]interface{} and associated XML and JSON utilities. -// Copyright 2012-2014 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -// remap.go - build a new Map from the current Map based on keyOld:keyNew mapppings -// keys can use dot-notation, keyOld can use wildcard, '*' -// -// Computational strategy - -// Using the key path - []string - traverse a new map[string]interface{} and -// insert the oldVal as the newVal when we arrive at the end of the path. -// If the type at the end is nil, then that is newVal -// If the type at the end is a singleton (string, float64, bool) an array is created. -// If the type at the end is an array, newVal is just appended. -// If the type at the end is a map, it is inserted if possible or the map value -// is converted into an array if necessary. - -package mxj - -import ( - "errors" - "strings" -) - -// (Map)NewMap - create a new Map from data in the current Map. -// 'keypairs' are key mappings "oldKey:newKey" and specify that the current value of 'oldKey' -// should be the value for 'newKey' in the returned Map. -// - 'oldKey' supports dot-notation as described for (Map)ValuesForPath() -// - 'newKey' supports dot-notation but with no wildcards, '*', or indexed arrays -// - "oldKey" is shorthand for for the keypair value "oldKey:oldKey" -// - "oldKey:" and ":newKey" are invalid keypair values -// - if 'oldKey' does not exist in the current Map, it is not written to the new Map. -// "null" is not supported unless it is the current Map. -// - see newmap_test.go for several syntax examples -// -// NOTE: mv.NewMap() == mxj.New(). -func (mv Map) NewMap(keypairs ...string) (Map, error) { - n := make(map[string]interface{}, 0) - if len(keypairs) == 0 { - return n, nil - } - - // loop through the pairs - var oldKey, newKey string - var path []string - for _, v := range keypairs { - if len(v) == 0 { - continue // just skip over empty keypair arguments - } - - // initialize oldKey, newKey and check - vv := strings.Split(v, ":") - if len(vv) > 2 { - return n, errors.New("oldKey:newKey keypair value not valid - " + v) - } - if len(vv) == 1 { - oldKey, newKey = vv[0], vv[0] - } else { - oldKey, newKey = vv[0], vv[1] - } - strings.TrimSpace(oldKey) - strings.TrimSpace(newKey) - if i := strings.Index(newKey, "*"); i > -1 { - return n, errors.New("newKey value cannot contain wildcard character - " + v) - } - if i := strings.Index(newKey, "["); i > -1 { - return n, errors.New("newKey value cannot contain indexed arrays - " + v) - } - if oldKey == "" || newKey == "" { - return n, errors.New("oldKey or newKey is not specified - " + v) - } - - // get oldKey value - oldVal, err := mv.ValuesForPath(oldKey) - if err != nil { - return n, err - } - if len(oldVal) == 0 { - continue // oldKey has no value, may not exist in mv - } - - // break down path - path = strings.Split(newKey, ".") - if path[len(path)-1] == "" { // ignore a trailing dot in newKey spec - path = path[:len(path)-1] - } - - addNewVal(&n, path, oldVal) - } - - return n, nil -} - -// navigate 'n' to end of path and add val -func addNewVal(n *map[string]interface{}, path []string, val []interface{}) { - // newVal - either singleton or array - var newVal interface{} - if len(val) == 1 { - newVal = val[0] // is type interface{} - } else { - newVal = interface{}(val) - } - - // walk to the position of interest, create it if necessary - m := (*n) // initialize map walker - var k string // key for m - lp := len(path) - 1 // when to stop looking - for i := 0; i < len(path); i++ { - k = path[i] - if i == lp { - break - } - var nm map[string]interface{} // holds position of next-map - switch m[k].(type) { - case nil: // need a map for next node in path, so go there - nm = make(map[string]interface{}, 0) - m[k] = interface{}(nm) - m = m[k].(map[string]interface{}) - case map[string]interface{}: - // OK - got somewhere to walk to, go there - m = m[k].(map[string]interface{}) - case []interface{}: - // add a map and nm points to new map unless there's already - // a map in the array, then nm points there - // The placement of the next value in the array is dependent - // on the sequence of members - could land on a map or a nil - // value first. TODO: how to test this. - a := make([]interface{}, 0) - var foundmap bool - for _, vv := range m[k].([]interface{}) { - switch vv.(type) { - case nil: // doesn't appear that this occurs, need a test case - if foundmap { // use the first one in array - a = append(a, vv) - continue - } - nm = make(map[string]interface{}, 0) - a = append(a, interface{}(nm)) - foundmap = true - case map[string]interface{}: - if foundmap { // use the first one in array - a = append(a, vv) - continue - } - nm = vv.(map[string]interface{}) - a = append(a, vv) - foundmap = true - default: - a = append(a, vv) - } - } - // no map found in array - if !foundmap { - nm = make(map[string]interface{}, 0) - a = append(a, interface{}(nm)) - } - m[k] = interface{}(a) // must insert in map - m = nm - default: // it's a string, float, bool, etc. - aa := make([]interface{}, 0) - nm = make(map[string]interface{}, 0) - aa = append(aa, m[k], nm) - m[k] = interface{}(aa) - m = nm - } - } - - // value is nil, array or a singleton of some kind - // initially m.(type) == map[string]interface{} - v := m[k] - switch v.(type) { - case nil: // initialized - m[k] = newVal - case []interface{}: - a := m[k].([]interface{}) - a = append(a, newVal) - m[k] = interface{}(a) - default: // v exists:string, float64, bool, map[string]interface, etc. - a := make([]interface{}, 0) - a = append(a, v, newVal) - m[k] = interface{}(a) - } -} diff --git a/vendor/github.com/clbanning/mxj/newmap_test.go b/vendor/github.com/clbanning/mxj/newmap_test.go deleted file mode 100644 index 7e3fdfea..00000000 --- a/vendor/github.com/clbanning/mxj/newmap_test.go +++ /dev/null @@ -1,114 +0,0 @@ -package mxj - -import ( - "bytes" - "fmt" - "io" - "testing" -) - -func TestNewMapHeader(t *testing.T) { - fmt.Println("\n---------------- newmap_test.go ...\n") -} - -func TestNewMap(t *testing.T) { - j := []byte(`{ "A":"this", "B":"is", "C":"a", "D":"test" }`) - fmt.Println("j:", string(j)) - - m, _ := NewMapJson(j) - fmt.Printf("m: %#v\n", m) - - fmt.Println("\n", `eval - m.NewMap("A:AA", "B:BB", "C:cc", "D:help")`) - n, err := m.NewMap("A:AA", "B:BB", "C:cc", "D:help") - if err != nil { - fmt.Println("err:", err.Error()) - } - j, _ = n.Json() - fmt.Println("n.Json():", string(j)) - x, _ := n.Xml() - fmt.Println("n.Xml():\n", string(x)) - x, _ = n.XmlIndent("", " ") - fmt.Println("n.XmlIndent():\n", string(x)) - - fmt.Println("\n", `eval - m.NewMap("A:AA.A", "B:AA.B", "C:AA.B.cc", "D:hello.help")`) - n, err = m.NewMap("A:AA.A", "B:AA.B", "C:AA.B.cc", "D:hello.help") - if err != nil { - fmt.Println("err:", err.Error()) - } - j, _ = n.Json() - fmt.Println("n.Json():", string(j)) - x, _ = n.Xml() - fmt.Println("n.Xml():\n", string(x)) - x, _ = n.XmlIndent("", " ") - fmt.Println("n.XmlIndent():\n", string(x)) - - var keypairs = []string{"A:xml.AA", "B:xml.AA.hello.again", "C:xml.AA", "D:xml.AA.hello.help"} - fmt.Println("\n", `eval - m.NewMap keypairs:`, keypairs) - n, err = m.NewMap(keypairs...) - if err != nil { - fmt.Println("err:", err.Error()) - } - j, _ = n.Json() - fmt.Println("n.Json():", string(j)) - x, _ = n.Xml() - fmt.Println("n.Xml():\n", string(x)) - x, _ = n.XmlIndent("", " ") - fmt.Println("n.XmlIndent():\n", string(x)) -} - -// Need to normalize from an XML stream the values for "netid" and "idnet". -// Solution: make everything "netid" -// Demo how to re-label a key using mv.NewMap() - -var msg1 = []byte(` - - - - no - default:text - default:word - - -`) - -var msg2 = []byte(` - - - - yes - default:text - default:word - - -`) - -func TestNetId(t *testing.T) { - // let's create a message stream - buf := new(bytes.Buffer) - // load a couple of messages into it - _, _ = buf.Write(msg1) - _, _ = buf.Write(msg2) - - n := 0 - for { - n++ - // read the stream as Map values - quit on io.EOF - m, raw, merr := NewMapXmlReaderRaw(buf) - if merr != nil && merr != io.EOF { - // handle error - for demo we just print it and continue - fmt.Printf("msg: %d - merr: %s\n", n, merr.Error()) - continue - } else if merr == io.EOF { - break - } - - // the first keypair retains values if data correct - // the second keypair relabels "idnet" to "netid" - n, _ := m.NewMap("data.netid", "data.idnet:data.netid") - x, _ := n.XmlIndent("", " ") - - fmt.Println("original value:", string(raw)) - fmt.Println("new value:") - fmt.Println(string(x)) - } -} diff --git a/vendor/github.com/clbanning/mxj/readme.md b/vendor/github.com/clbanning/mxj/readme.md deleted file mode 100644 index 3cd1a631..00000000 --- a/vendor/github.com/clbanning/mxj/readme.md +++ /dev/null @@ -1,162 +0,0 @@ -

mxj - to/from maps, XML and JSON

-Decode/encode XML to/from map[string]interface{} (or JSON) values, and extract/modify values from maps by key or key-path, including wildcards. - -mxj supplants the legacy x2j and j2x packages. If you want the old syntax, use mxj/x2j and mxj/j2x packages. - -

Refactor Decoder - 2015.11.15

-For over a year I've wanted to refactor the XML-to-map[string]interface{} decoder to make it more performant. I recently took the time to do that, since we were using github.com/clbanning/mxj in a production system that could be deployed on a Raspberry Pi. Now the decoder is comparable to the stdlib JSON-to-map[string]interface{} decoder in terms of its additional processing overhead relative to decoding to a structure value. As shown by: - - BenchmarkNewMapXml-4 100000 18043 ns/op - BenchmarkNewStructXml-4 100000 14892 ns/op - BenchmarkNewMapJson-4 300000 4633 ns/op - BenchmarkNewStructJson-4 300000 3427 ns/op - BenchmarkNewMapXmlBooks-4 20000 82850 ns/op - BenchmarkNewStructXmlBooks-4 20000 67822 ns/op - BenchmarkNewMapJsonBooks-4 100000 17222 ns/op - BenchmarkNewStructJsonBooks-4 100000 15309 ns/op - -

Notices

- 2016.06.25: Support overriding default XML attribute prefix, "-", in Map keys - SetAttrPrefix(). - 2016.05.26: Support customization of xml.Decoder by exposing CustomDecoder variable. - 2016.03.19: Escape invalid chars when encoding XML attribute and element values - XMLEscapeChars(). - 2016.03.02: By default decoding XML with float64 and bool value casting will not cast "NaN", "Inf", and "-Inf". - To cast them to float64, first set flag with CastNanInf(true). - 2016.02.22: New m.Root(), m.Elements(), m.Attributes methods let you examine XML document structure. - 2016.02.16: Add CoerceKeysToLower() option to handle tags with mixed capitalization. - 2016.02.12: Seek for first xml.StartElement token; only return error if io.EOF is reached first (handles BOM). - 2015.12.02: XML decoding/encoding that preserves original structure of document. See NewMapXmlSeq() - and mv.XmlSeq() / mv.XmlSeqIndent(). - 2015-05-20: New: mv.StringIndentNoTypeInfo(). - Also, alphabetically sort map[string]interface{} values by key to prettify output for mv.Xml(), - mv.XmlIndent(), mv.StringIndent(), mv.StringIndentNoTypeInfo(). - 2014-11-09: IncludeTagSeqNum() adds "_seq" key with XML doc positional information. - (NOTE: PreserveXmlList() is similar and will be here soon.) - 2014-09-18: inspired by NYTimes fork, added PrependAttrWithHyphen() to allow stripping hyphen from attribute tag. - 2014-08-02: AnyXml() and AnyXmlIndent() will try to marshal arbitrary values to XML. - 2014-04-28: ValuesForPath() and NewMap() now accept path with indexed array references. - -

Basic Unmarshal XML to map[string]interface{}

-
type Map map[string]interface{}
- -Create a `Map` value, 'm', from any `map[string]interface{}` value, 'v': -
m := Map(v)
- -Unmarshal / marshal XML as a `Map` value, 'm': -
m, err := NewMapXml(xmlValue) // unmarshal
-xmlValue, err := m.Xml()      // marshal
- -Unmarshal XML from an `io.Reader` as a `Map` value, 'm': -
m, err := NewMapReader(xmlReader)         // repeated calls, as with an os.File Reader, will process stream
-m, raw, err := NewMapReaderRaw(xmlReader) // 'raw' is the raw XML that was decoded
- -Marshal `Map` value, 'm', to an XML Writer (`io.Writer`): -
err := m.XmlWriter(xmlWriter)
-raw, err := m.XmlWriterRaw(xmlWriter) // 'raw' is the raw XML that was written on xmlWriter
- -Also, for prettified output: -
xmlValue, err := m.XmlIndent(prefix, indent, ...)
-err := m.XmlIndentWriter(xmlWriter, prefix, indent, ...)
-raw, err := m.XmlIndentWriterRaw(xmlWriter, prefix, indent, ...)
- -Bulk process XML with error handling (note: handlers must return a boolean value): -
err := HandleXmlReader(xmlReader, mapHandler(Map), errHandler(error))
-err := HandleXmlReaderRaw(xmlReader, mapHandler(Map, []byte), errHandler(error, []byte))
- -Converting XML to JSON: see Examples for `NewMapXml` and `HandleXmlReader`. - -There are comparable functions and methods for JSON processing. - -Arbitrary structure values can be decoded to / encoded from `Map` values: -
m, err := NewMapStruct(structVal)
-err := m.Struct(structPointer)
- -

Extract / modify Map values

-To work with XML tag values, JSON or Map key values or structure field values, decode the XML, JSON -or structure to a `Map` value, 'm', or cast a `map[string]interface{}` value to a `Map` value, 'm', then: -
paths := m.PathsForKey(key)
-path := m.PathForKeyShortest(key)
-values, err := m.ValuesForKey(key, subkeys)
-values, err := m.ValuesForPath(path, subkeys)
-count, err := m.UpdateValuesForPath(newVal, path, subkeys)
- -Get everything at once, irrespective of path depth: -
leafnodes := m.LeafNodes()
-leafvalues := m.LeafValues()
- -A new `Map` with whatever keys are desired can be created from the current `Map` and then encoded in XML -or JSON. (Note: keys can use dot-notation.) -
newMap, err := m.NewMap("oldKey_1:newKey_1", "oldKey_2:newKey_2", ..., "oldKey_N:newKey_N")
-newXml, err := newMap.Xml()   // for example
-newJson, err := newMap.Json() // ditto
- -

Usage

- -The package is fairly well self-documented with examples. (http://godoc.org/github.com/clbanning/mxj) - -Also, the subdirectory "examples" contains a wide range of examples, several taken from golang-nuts discussions. - -

XML parsing conventions

- -Using NewXml() - - - Attributes are parsed to `map[string]interface{}` values by prefixing a hyphen, `-`, - to the attribute label. (Unless overridden by `PrependAttrWithHyphen(false)`.) - - If the element is a simple element and has attributes, the element value - is given the key `#text` for its `map[string]interface{}` representation. (See - the 'atomFeedString.xml' test data, below.) - - XML comments, directives, and process instructions are ignored. - - If CoerceKeysToLower() has been called, then the resultant keys will be lower case. - -Using NewXmlSeq() - - - Attributes are parsed to `map["#attr"]map[]map[string]interface{}`values - where the `` value has "#text" and "#seq" keys - the "#text" key holds the - value for ``. - - All elements, except for the root, have a "#seq" key. - - Comments, directives, and process instructions are unmarshalled into the Map using the - keys "#comment", "#directive", and "#procinst", respectively. (See documentation for more - specifics.) - -Both - - - By default, "Nan", "Inf", and "-Inf" values are not cast to float64. If you want them - to be cast, set a flag to cast them using CastNanInf(true). - -

XML encoding conventions

- - - 'nil' `Map` values, which may represent 'null' JSON values, are encoded as ``. - NOTE: the operation is not symmetric as `` elements are decoded as `tag:""` `Map` values, - which, then, encode in JSON as `"tag":""` values. - - ALSO: there is no guarantee that the encoded XML doc will be the same as the decoded one. (Go - randomizes the walk through map[string]interface{} values.) If you plan to re-encode the - Map value to XML and want the same sequencing of elements look at NewMapXmlSeq() and - m.XmlSeq() - these try to preserve the element sequencing but with added complexity when - working with the Map representation. - -

Running "go test"

- -Because there are no guarantees on the sequence map elements are retrieved, the tests have been -written for visual verification in most cases. One advantage is that you can easily use the -output from running "go test" as examples of calling the various functions and methods. - -

Motivation

- -I make extensive use of JSON for messaging and typically unmarshal the messages into -`map[string]interface{}` values. This is easily done using `json.Unmarshal` from the -standard Go libraries. Unfortunately, many legacy solutions use structured -XML messages; in those environments the applications would have to be refactored to -interoperate with my components. - -The better solution is to just provide an alternative HTTP handler that receives -XML messages and parses it into a `map[string]interface{}` value and then reuse -all the JSON-based code. The Go `xml.Unmarshal()` function does not provide the same -option of unmarshaling XML messages into `map[string]interface{}` values. So I wrote -a couple of small functions to fill this gap and released them as the x2j package. - -Over the next year and a half additional features were added, and the companion j2x -package was released to address XML encoding of arbitrary JSON and `map[string]interface{}` -values. As part of a refactoring of our production system and looking at how we had been -using the x2j and j2x packages we found that we rarely performed direct XML-to-JSON or -JSON-to_XML conversion and that working with the XML or JSON as `map[string]interface{}` -values was the primary value. Thus, everything was refactored into the mxj package. - diff --git a/vendor/github.com/clbanning/mxj/remove.go b/vendor/github.com/clbanning/mxj/remove.go deleted file mode 100644 index 8362ab17..00000000 --- a/vendor/github.com/clbanning/mxj/remove.go +++ /dev/null @@ -1,37 +0,0 @@ -package mxj - -import "strings" - -// Removes the path. -func (mv Map) Remove(path string) error { - m := map[string]interface{}(mv) - return remove(m, path) -} - -func remove(m interface{}, path string) error { - val, err := prevValueByPath(m, path) - if err != nil { - return err - } - - lastKey := lastKey(path) - delete(val, lastKey) - - return nil -} - -// returns the last key of the path. -// lastKey("a.b.c") would had returned "c" -func lastKey(path string) string { - keys := strings.Split(path, ".") - key := keys[len(keys)-1] - return key -} - -// returns the path without the last key -// parentPath("a.b.c") whould had returned "a.b" -func parentPath(path string) string { - keys := strings.Split(path, ".") - parentPath := strings.Join(keys[0:len(keys)-1], ".") - return parentPath -} diff --git a/vendor/github.com/clbanning/mxj/remove_test.go b/vendor/github.com/clbanning/mxj/remove_test.go deleted file mode 100644 index 642d07ce..00000000 --- a/vendor/github.com/clbanning/mxj/remove_test.go +++ /dev/null @@ -1,21 +0,0 @@ -package mxj - -import ( - "testing" -) - -func TestRemove(t *testing.T) { - m := map[string]interface{}{ - "Div": map[string]interface{}{ - "Colour": "blue", - }, - } - mv := Map(m) - err := mv.Remove("Div.Colour") - if err != nil { - t.Fatal(err) - } - if mv.Exists("Div.Colour") { - t.Fatal("removed key still remain") - } -} diff --git a/vendor/github.com/clbanning/mxj/rename.go b/vendor/github.com/clbanning/mxj/rename.go deleted file mode 100644 index 511d7b17..00000000 --- a/vendor/github.com/clbanning/mxj/rename.go +++ /dev/null @@ -1,54 +0,0 @@ -package mxj - -import ( - "errors" - "strings" -) - -// RenameKey renames a key in a Map. -// It works only for nested maps. It doesn't work for cases when it buried in a list. -func (mv Map) RenameKey(path string, newName string) error { - if !mv.Exists(path) { - return errors.New("RenameKey: the path not found: " + path) - } - if mv.Exists(parentPath(path) + "." + newName) { - return errors.New("RenameKey: the key already exists: " + newName) - } - - m := map[string]interface{}(mv) - return renameKey(m, path, newName) -} - -func renameKey(m interface{}, path string, newName string) error { - val, err := prevValueByPath(m, path) - if err != nil { - return err - } - - oldName := lastKey(path) - val[newName] = val[oldName] - delete(val, oldName) - - return nil -} - -// returns a value which contains a last key in the path -// For example: prevValueByPath("a.b.c", {a{b{c: 3}}}) returns {c: 3} -func prevValueByPath(m interface{}, path string) (map[string]interface{}, error) { - keys := strings.Split(path, ".") - - switch mValue := m.(type) { - case map[string]interface{}: - for key, value := range mValue { - if key == keys[0] { - if len(keys) == 1 { - return mValue, nil - } else { - // keep looking for the full path to the key - return prevValueByPath(value, strings.Join(keys[1:], ".")) - } - } - } - } - return nil, errors.New("prevValueByPath: didn't find the path – " + path) -} diff --git a/vendor/github.com/clbanning/mxj/rename_test.go b/vendor/github.com/clbanning/mxj/rename_test.go deleted file mode 100644 index d712c200..00000000 --- a/vendor/github.com/clbanning/mxj/rename_test.go +++ /dev/null @@ -1,40 +0,0 @@ -package mxj - -import ( - "testing" -) - -func TestRenameKey(t *testing.T) { - m := map[string]interface{}{ - "Div": map[string]interface{}{ - "Colour": "blue", - "Width": "100%", - }, - } - mv := Map(m) - err := mv.RenameKey("Div.Colour", "Color") - if err != nil { - t.Fatal(err) - } - values, err := mv.ValuesForPath("Div.Color") - if len(values) != 1 { - t.Fatal("didn't add the new key") - } - if values[0] != "blue" { - t.Fatal("value is changed") - } - values, err = mv.ValuesForPath("Div.Colour") - if len(values) > 0 { - t.Fatal("didn't removed the old key") - } - - err = mv.RenameKey("not.existing.path", "newname") - if err == nil { - t.Fatal("should raise an error on a non existing path") - } - - err = mv.RenameKey("Div.Color", "Width") - if err == nil { - t.Fatal("should raise an error if the newName already exists") - } -} diff --git a/vendor/github.com/clbanning/mxj/seqnum_test.go b/vendor/github.com/clbanning/mxj/seqnum_test.go deleted file mode 100644 index 7b48a7ca..00000000 --- a/vendor/github.com/clbanning/mxj/seqnum_test.go +++ /dev/null @@ -1,52 +0,0 @@ -// seqnum.go - -package mxj - -import ( - "fmt" - "testing" -) - -var seqdata1 = []byte(` - - - - - `) - -var seqdata2 = []byte(` - - - - 1 - hello - true - - - `) - -func TestSeqNumHeader(t *testing.T) { - fmt.Println("\n---------------- seqnum_test.go ...\n") -} - -func TestSeqNum(t *testing.T) { - IncludeTagSeqNum(true) - - m, err := NewMapXml(seqdata1, Cast) - if err != nil { - t.Fatal(err) - } - fmt.Printf("m1: %#v\n", m) - j, _ := m.JsonIndent("", " ") - fmt.Println(string(j)) - - m, err = NewMapXml(seqdata2, Cast) - if err != nil { - t.Fatal(err) - } - fmt.Printf("m2: %#v\n", m) - j, _ = m.JsonIndent("", " ") - fmt.Println(string(j)) - - IncludeTagSeqNum(false) -} diff --git a/vendor/github.com/clbanning/mxj/set.go b/vendor/github.com/clbanning/mxj/set.go deleted file mode 100644 index a297fc38..00000000 --- a/vendor/github.com/clbanning/mxj/set.go +++ /dev/null @@ -1,26 +0,0 @@ -package mxj - -import ( - "strings" -) - -// Sets the value for the path -func (mv Map) SetValueForPath(value interface{}, path string) error { - pathAry := strings.Split(path, ".") - parentPathAry := pathAry[0 : len(pathAry)-1] - parentPath := strings.Join(parentPathAry, ".") - - val, err := mv.ValueForPath(parentPath) - if err != nil { - return err - } - if val == nil { - return nil // we just ignore the request if there's no val - } - - key := pathAry[len(pathAry)-1] - cVal := val.(map[string]interface{}) - cVal[key] = value - - return nil -} diff --git a/vendor/github.com/clbanning/mxj/set_test.go b/vendor/github.com/clbanning/mxj/set_test.go deleted file mode 100644 index 6d4d16ee..00000000 --- a/vendor/github.com/clbanning/mxj/set_test.go +++ /dev/null @@ -1,43 +0,0 @@ -package mxj - -import ( - "testing" -) - -func TestSetValueForPath(t *testing.T) { - m := map[string]interface{}{ - "Div": map[string]interface{}{ - "Colour": "blue", - "Font": map[string]interface{}{ - "Family": "sans", - }, - }, - } - mv := Map(m) - - // testing setting a new key - err := mv.SetValueForPath("big", "Div.Font.Size") - if err != nil { - t.Fatal(err) - } - val, err := mv.ValueForPathString("Div.Font.Size") - if err != nil { - t.Fatal(err) - } - if val != "big" { - t.Fatal("key's value hasn't changed") - } - - // testing setting a new value to en existing key - err = mv.SetValueForPath("red", "Div.Colour") - if err != nil { - t.Fatal(err) - } - val, err = mv.ValueForPathString("Div.Colour") - if err != nil { - t.Fatal(err) - } - if val != "red" { - t.Fatal("existig key's value hasn't changed") - } -} diff --git a/vendor/github.com/clbanning/mxj/songtext.xml b/vendor/github.com/clbanning/mxj/songtext.xml deleted file mode 100644 index 8c0f2bec..00000000 --- a/vendor/github.com/clbanning/mxj/songtext.xml +++ /dev/null @@ -1,29 +0,0 @@ - - help me! - - - - Henry was a renegade - Didn't like to play it safe - One component at a time - There's got to be a better way - Oh, people came from miles around - Searching for a steady job - Welcome to the Motor Town - Booming like an atom bomb - - - Oh, Henry was the end of the story - Then everything went wrong - And we'll return it to its former glory - But it just takes so long - - - - It's going to take a long time - It's going to take it, but we'll make it one day - It's going to take a long time - It's going to take it, but we'll make it one day - - - diff --git a/vendor/github.com/clbanning/mxj/strict.go b/vendor/github.com/clbanning/mxj/strict.go deleted file mode 100644 index a9ad75ec..00000000 --- a/vendor/github.com/clbanning/mxj/strict.go +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright 2016 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -// strict.go actually addresses setting xml.Decoder attribute -// values. This'll let you parse non-standard XML. - -package mxj - -import ( - "encoding/xml" -) - -// CustomDecoder can be used to specify xml.Decoder attribute -// values, e.g., Strict:false, to be used. By default CustomDecoder -// is nil. If CustomeDecoder != nil, then mxj.XmlCharsetReader variable is -// ignored and must be set as part of the CustomDecoder value, if needed. -// Usage: -// mxj.CustomDecoder = &xml.Decoder{Strict:false} -var CustomDecoder *xml.Decoder - -// useCustomDecoder copy over public attributes from customDecoder -func useCustomDecoder(d *xml.Decoder) { - d.Strict = CustomDecoder.Strict - d.AutoClose = CustomDecoder.AutoClose - d.Entity = CustomDecoder.Entity - d.CharsetReader = CustomDecoder.CharsetReader - d.DefaultSpace = CustomDecoder.DefaultSpace -} diff --git a/vendor/github.com/clbanning/mxj/strict_test.go b/vendor/github.com/clbanning/mxj/strict_test.go deleted file mode 100644 index 4910280b..00000000 --- a/vendor/github.com/clbanning/mxj/strict_test.go +++ /dev/null @@ -1,47 +0,0 @@ -package mxj - -import ( - "encoding/xml" - "fmt" - "testing" -) - -func TestStrictModeXml(t *testing.T) { - fmt.Println("----------------- TestStrictModeXml ...") - data := []byte(` Bill & Hallett Duc & 123xx E `) - - CustomDecoder = &xml.Decoder{Strict: false} - m, err := NewMapXml(data) - if err != nil { - t.Fatal(err) - } - fmt.Println("m:", m) -} - -func TestStrictModeXmlSeq(t *testing.T) { - fmt.Println("----------------- TestStrictModeXmlSeq ...") - data := []byte(` Bill & Hallett Duc & 123xx E `) - - CustomDecoder = &xml.Decoder{Strict: false} - m, err := NewMapXmlSeq(data) - if err != nil { - t.Fatal(err) - } - fmt.Println("m:", m) -} - -func TestStrictModeFail(t *testing.T) { - fmt.Println("----------------- TestStrictFail ...") - data := []byte(` Bill & Hallett Duc & 123xx E `) - - CustomDecoder = nil - _, err := NewMapXml(data) - if err == nil { - t.Fatal("error not caught: NewMapXml") - } - _, err = NewMapXmlSeq(data) - if err == nil { - t.Fatal("error not caught: NewMapXmlSeq") - } - fmt.Println("OK") -} diff --git a/vendor/github.com/clbanning/mxj/struct.go b/vendor/github.com/clbanning/mxj/struct.go deleted file mode 100644 index 68b0e6e7..00000000 --- a/vendor/github.com/clbanning/mxj/struct.go +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright 2012-2014 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -package mxj - -import ( - "encoding/json" - "errors" - "reflect" - - "github.com/fatih/structs" -) - -// Create a new Map value from a structure. Error returned if argument is not a structure -// or if there is a json.Marshal or json.Unmarshal error. -// Only public structure fields are decoded in the Map value. Also, json.Marshal structure encoding rules -// are followed for decoding the structure fields. -func NewMapStruct(structVal interface{}) (Map, error) { - if !structs.IsStruct(structVal) { - return nil, errors.New("NewMapStruct() error: argument is not type Struct") - } - return structs.Map(structVal), nil -} - -// Marshal a map[string]interface{} into a structure referenced by 'structPtr'. Error returned -// if argument is not a pointer or if json.Unmarshal returns an error. -// json.Unmarshal structure encoding rules are followed to encode public structure fields. -func (mv Map) Struct(structPtr interface{}) error { - // should check that we're getting a pointer. - if reflect.ValueOf(structPtr).Kind() != reflect.Ptr { - return errors.New("mv.Struct() error: argument is not type Ptr") - } - - m := map[string]interface{}(mv) - j, err := json.Marshal(m) - if err != nil { - return err - } - - return json.Unmarshal(j, structPtr) -} diff --git a/vendor/github.com/clbanning/mxj/struct_test.go b/vendor/github.com/clbanning/mxj/struct_test.go deleted file mode 100644 index 799de778..00000000 --- a/vendor/github.com/clbanning/mxj/struct_test.go +++ /dev/null @@ -1,84 +0,0 @@ -package mxj - -import ( - "fmt" - "testing" -) - -func TestStructHeader(t *testing.T) { - fmt.Println("\n---------------- struct_test.go ...\n") -} - -func TestNewMapStruct(t *testing.T) { - type str struct { - IntVal int `json:"int"` - StrVal string `json:"str"` - FloatVal float64 `json:"float"` - BoolVal bool `json:"bool"` - private string - } - s := str{IntVal: 4, StrVal: "now's the time", FloatVal: 3.14159, BoolVal: true, private: "It's my party"} - - m, merr := NewMapStruct(s) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - - fmt.Printf("NewMapStruct, s: %#v\n", s) - fmt.Printf("NewMapStruct, m: %#v\n", m) - - m, merr = NewMapStruct(s) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - - fmt.Printf("NewMapStruct, s: %#v\n", s) - fmt.Printf("NewMapStruct, m: %#v\n", m) -} - -func TestNewMapStructError(t *testing.T) { - var s string - _, merr := NewMapStruct(s) - if merr == nil { - t.Fatal("NewMapStructError, merr is nil") - } - - fmt.Println("NewMapStructError, merr:", merr.Error()) -} - -func TestStruct(t *testing.T) { - type str struct { - IntVal int `json:"int"` - StrVal string `json:"str"` - FloatVal float64 `json:"float"` - BoolVal bool `json:"bool"` - private string - } - var s str - m := Map{"int": 4, "str": "now's the time", "float": 3.14159, "bool": true, "private": "Somewhere over the rainbow"} - - mverr := m.Struct(&s) - if mverr != nil { - t.Fatal("mverr:", mverr.Error()) - } - - fmt.Printf("Struct, m: %#v\n", m) - fmt.Printf("Struct, s: %#v\n", s) -} - -func TestStructError(t *testing.T) { - type str struct { - IntVal int `json:"int"` - StrVal string `json:"str"` - FloatVal float64 `json:"float"` - BoolVal bool `json:"bool"` - } - var s str - mv := Map{"int": 4, "str": "now's the time", "float": 3.14159, "bool": true} - - mverr := mv.Struct(s) - if mverr == nil { - t.Fatal("StructError, no error returned") - } - fmt.Println("StructError, mverr:", mverr.Error()) -} diff --git a/vendor/github.com/clbanning/mxj/updatevalues.go b/vendor/github.com/clbanning/mxj/updatevalues.go deleted file mode 100644 index fed54bc4..00000000 --- a/vendor/github.com/clbanning/mxj/updatevalues.go +++ /dev/null @@ -1,249 +0,0 @@ -// Copyright 2012-2014 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -// updatevalues.go - modify a value based on path and possibly sub-keys - -package mxj - -import ( - "fmt" - "strconv" - "strings" -) - -// Update value based on path and possible sub-key values. -// A count of the number of values changed and any error are returned. -// If the count == 0, then no path (and subkeys) matched. -// 'newVal' can be a Map or map[string]interface{} value with a single 'key' that is the key to be modified -// or a string value "key:value[:type]" where type is "bool" or "num" to cast the value. -// 'path' is dot-notation list of keys to traverse; last key in path can be newVal key -// NOTE: 'path' spec does not currently support indexed array references. -// 'subkeys' are "key:value[:type]" entries that must match for path node -// The subkey can be wildcarded - "key:*" - to require that it's there with some value. -// If a subkey is preceeded with the '!' character, the key:value[:type] entry is treated as an -// exclusion critera - e.g., "!author:William T. Gaddis". -func (mv Map) UpdateValuesForPath(newVal interface{}, path string, subkeys ...string) (int, error) { - m := map[string]interface{}(mv) - - // extract the subkeys - var subKeyMap map[string]interface{} - if len(subkeys) > 0 { - var err error - subKeyMap, err = getSubKeyMap(subkeys...) - if err != nil { - return 0, err - } - } - - // extract key and value from newVal - var key string - var val interface{} - switch newVal.(type) { - case map[string]interface{}, Map: - switch newVal.(type) { // "fallthrough is not permitted in type switch" (Spec) - case Map: - newVal = newVal.(Map).Old() - } - if len(newVal.(map[string]interface{})) != 1 { - return 0, fmt.Errorf("newVal map can only have len == 1 - %+v", newVal) - } - for key, val = range newVal.(map[string]interface{}) { - } - case string: // split it as a key:value pair - ss := strings.Split(newVal.(string), ":") - n := len(ss) - if n < 2 || n > 3 { - return 0, fmt.Errorf("unknown newVal spec - %+v", newVal) - } - key = ss[0] - if n == 2 { - val = interface{}(ss[1]) - } else if n == 3 { - switch ss[2] { - case "bool", "boolean": - nv, err := strconv.ParseBool(ss[1]) - if err != nil { - return 0, fmt.Errorf("can't convert newVal to bool - %+v", newVal) - } - val = interface{}(nv) - case "num", "numeric", "float", "int": - nv, err := strconv.ParseFloat(ss[1], 64) - if err != nil { - return 0, fmt.Errorf("can't convert newVal to float64 - %+v", newVal) - } - val = interface{}(nv) - default: - return 0, fmt.Errorf("unknown type for newVal value - %+v", newVal) - } - } - default: - return 0, fmt.Errorf("invalid newVal type - %+v", newVal) - } - - // parse path - keys := strings.Split(path, ".") - - var count int - updateValuesForKeyPath(key, val, m, keys, subKeyMap, &count) - - return count, nil -} - -// navigate the path -func updateValuesForKeyPath(key string, value interface{}, m interface{}, keys []string, subkeys map[string]interface{}, cnt *int) { - // ----- at end node: looking at possible node to get 'key' ---- - if len(keys) == 1 { - updateValue(key, value, m, keys[0], subkeys, cnt) - return - } - - // ----- here we are navigating the path thru the penultimate node -------- - // key of interest is keys[0] - the next in the path - switch keys[0] { - case "*": // wildcard - scan all values - switch m.(type) { - case map[string]interface{}: - for _, v := range m.(map[string]interface{}) { - updateValuesForKeyPath(key, value, v, keys[1:], subkeys, cnt) - } - case []interface{}: - for _, v := range m.([]interface{}) { - switch v.(type) { - // flatten out a list of maps - keys are processed - case map[string]interface{}: - for _, vv := range v.(map[string]interface{}) { - updateValuesForKeyPath(key, value, vv, keys[1:], subkeys, cnt) - } - default: - updateValuesForKeyPath(key, value, v, keys[1:], subkeys, cnt) - } - } - } - default: // key - must be map[string]interface{} - switch m.(type) { - case map[string]interface{}: - if v, ok := m.(map[string]interface{})[keys[0]]; ok { - updateValuesForKeyPath(key, value, v, keys[1:], subkeys, cnt) - } - case []interface{}: // may be buried in list - for _, v := range m.([]interface{}) { - switch v.(type) { - case map[string]interface{}: - if vv, ok := v.(map[string]interface{})[keys[0]]; ok { - updateValuesForKeyPath(key, value, vv, keys[1:], subkeys, cnt) - } - } - } - } - } -} - -// change value if key and subkeys are present -func updateValue(key string, value interface{}, m interface{}, keys0 string, subkeys map[string]interface{}, cnt *int) { - // there are two possible options for the value of 'keys0': map[string]interface, []interface{} - // and 'key' is a key in the map or is a key in a map in a list. - switch m.(type) { - case map[string]interface{}: // gotta have the last key - if keys0 == "*" { - for k := range m.(map[string]interface{}) { - updateValue(key, value, m, k, subkeys, cnt) - } - return - } - endVal, _ := m.(map[string]interface{})[keys0] - - // if newV key is the end of path, replace the value for path-end - // may be []interface{} - means replace just an entry w/ subkeys - // otherwise replace the keys0 value if subkeys are there - // NOTE: this will replace the subkeys, also - if key == keys0 { - switch endVal.(type) { - case map[string]interface{}: - if ok := hasSubKeys(m, subkeys); ok { - (m.(map[string]interface{}))[keys0] = value - (*cnt)++ - } - case []interface{}: - // without subkeys can't select list member to modify - // so key:value spec is it ... - if len(subkeys) == 0 { - (m.(map[string]interface{}))[keys0] = value - (*cnt)++ - break - } - nv := make([]interface{}, 0) - var valmodified bool - for _, v := range endVal.([]interface{}) { - // check entry subkeys - if ok := hasSubKeys(v, subkeys); ok { - // replace v with value - nv = append(nv, value) - valmodified = true - (*cnt)++ - continue - } - nv = append(nv, v) - } - if valmodified { - (m.(map[string]interface{}))[keys0] = interface{}(nv) - } - default: // anything else is a strict replacement - if len(subkeys) == 0 { - (m.(map[string]interface{}))[keys0] = value - (*cnt)++ - } - } - return - } - - // so value is for an element of endVal - // if endVal is a map then 'key' must be there w/ subkeys - // if endVal is a list then 'key' must be in a list member w/ subkeys - switch endVal.(type) { - case map[string]interface{}: - if ok := hasSubKeys(endVal, subkeys); !ok { - return - } - if _, ok := (endVal.(map[string]interface{}))[key]; ok { - (endVal.(map[string]interface{}))[key] = value - (*cnt)++ - } - case []interface{}: // keys0 points to a list, check subkeys - for _, v := range endVal.([]interface{}) { - // got to be a map so we can replace value for 'key' - vv, vok := v.(map[string]interface{}) - if !vok { - continue - } - if _, ok := vv[key]; !ok { - continue - } - if !hasSubKeys(vv, subkeys) { - continue - } - vv[key] = value - (*cnt)++ - } - } - case []interface{}: // key may be in a list member - // don't need to handle keys0 == "*"; we're looking at everything, anyway. - for _, v := range m.([]interface{}) { - // only map values - we're looking for 'key' - mm, ok := v.(map[string]interface{}) - if !ok { - continue - } - if _, ok := mm[key]; !ok { - continue - } - if !hasSubKeys(mm, subkeys) { - continue - } - mm[key] = value - (*cnt)++ - } - } - - // return -} diff --git a/vendor/github.com/clbanning/mxj/updatevalues_test.go b/vendor/github.com/clbanning/mxj/updatevalues_test.go deleted file mode 100644 index dca2da91..00000000 --- a/vendor/github.com/clbanning/mxj/updatevalues_test.go +++ /dev/null @@ -1,187 +0,0 @@ -// modifyvalues_test.go - test keyvalues.go methods - -package mxj - -import ( - "fmt" - "testing" -) - -func TestUVHeader(t *testing.T) { - fmt.Println("\n---------------- updatevalues_test.go ...\n") -} - -func TestUpdateValuesForPath_Author(t *testing.T) { - m, merr := NewMapXml(doc1) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println("m:", m) - - ss, _ := m.ValuesForPath("doc.books.book.author") - for _, v := range ss { - fmt.Println("v:", v) - } - fmt.Println("m.UpdateValuesForPath(\"author:NoName\", \"doc.books.book.author\")") - n, err := m.UpdateValuesForPath("author:NoName", "doc.books.book.author") - if err != nil { - t.Fatal("err:", err.Error()) - } - fmt.Println(n, "updates") - ss, _ = m.ValuesForPath("doc.books.book.author") - for _, v := range ss { - fmt.Println("v:", v) - } - - fmt.Println("m.UpdateValuesForPath(\"author:William Gadddis\", \"doc.books.book.author\", \"title:The Recognitions\")") - n, err = m.UpdateValuesForPath("author:William Gadddis", "doc.books.book.author", "title:The Recognitions") - o, _ := m.UpdateValuesForPath("author:Austin Tappen Wright", "doc.books.book", "title:Islandia") - p, _ := m.UpdateValuesForPath("author:John Hawkes", "doc.books.book", "title:The Beetle Leg") - q, _ := m.UpdateValuesForPath("author:T. E. Porter", "doc.books.book", "title:King's Day") - if err != nil { - t.Fatal("err:", err.Error()) - } - fmt.Println(n+o+p+q, "updates") - ss, _ = m.ValuesForPath("doc.books.book.author") - for _, v := range ss { - fmt.Println("v:", v) - } - - fmt.Println("m.UpdateValuesForPath(\"author:William T. Gaddis\", \"doc.books.book.*\", \"title:The Recognitions\")") - n, _ = m.UpdateValuesForPath("author:William T. Gaddis", "doc.books.book.*", "title:The Recognitions") - fmt.Println(n, "updates") - ss, _ = m.ValuesForPath("doc.books.book.author") - for _, v := range ss { - fmt.Println("v:", v) - } - - fmt.Println("m.UpdateValuesForPath(\"title:The Cannibal\", \"doc.books.book.title\", \"author:John Hawkes\")") - n, _ = m.UpdateValuesForPath("title:The Cannibal", "doc.books.book.title", "author:John Hawkes") - o, _ = m.UpdateValuesForPath("review:A novel on his experiences in WWII.", "doc.books.book.review", "title:The Cannibal") - fmt.Println(n+o, "updates") - ss, _ = m.ValuesForPath("doc.books.book") - for _, v := range ss { - fmt.Println("v:", v) - } - - fmt.Println("m.UpdateValuesForPath(\"books:\", \"doc.books\")") - n, _ = m.UpdateValuesForPath("books:", "doc.books") - fmt.Println(n, "updates") - fmt.Println("m:", m) - - fmt.Println("m.UpdateValuesForPath(mm, \"*\")") - mm, _ := NewMapXml(doc1) - n, err = m.UpdateValuesForPath(mm, "*") - if err != nil { - t.Fatal("err:", err.Error()) - } - fmt.Println(n, "updates") - fmt.Println("m:", m) - - // ---------------------- newDoc - var newDoc = []byte(`simple element`) - m, merr = NewMapXml(newDoc) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println("\nnewDoc:", string(newDoc)) - fmt.Println("m:", m) - fmt.Println("m.UpdateValuesForPath(\"#text:maybe not so simple element\", \"tag\")") - n, _ = m.UpdateValuesForPath("#text:maybe not so simple element", "tag") - fmt.Println("n:", n, "m:", m) - fmt.Println("m.UpdateValuesForPath(\"#text:simple element again\", \"*\")") - n, _ = m.UpdateValuesForPath("#text:simple element again", "*") - fmt.Println("n:", n, "m:", m) - - /* - fmt.Println("UpdateValuesForPath, doc.books.book, title:The Recognitions : NoBook") - n, err = m.UpdateValuesForPath("NoBook", "doc.books.book", "title:The Recognitions") - if err != nil { - t.Fatal("err:", err.Error()) - } - fmt.Println(n, "updates") - ss, _ = m.ValuesForPath("doc.books.book") - for _, v := range ss { - fmt.Println("v:", v) - } - - fmt.Println("UpdateValuesForPath, doc.books.book.title -seq=3: The Blood Oranges") - n, err = m.UpdateValuesForPath("The Blood Oranges", "doc.books.book.title", "-seq:3") - if err != nil { - t.Fatal("err:", err.Error()) - } - fmt.Println(n, "updates") - ss, _ = m.ValuesForPath("doc.books.book.title") - for _, v := range ss { - fmt.Println("v:", v) - } - */ -} - -var authorDoc = []byte(` - - - William Gaddis - - - The Recognitions - 1955 - A novel that changed the face of American literature. - - - JR - 1975 - Winner of National Book Award for Fiction. - - - - - John Hawkes - - - The Cannibal - 1949 - A novel on his experiences in WWII. - - - The Beetle Leg - 1951 - A lyrical novel about the construction of Ft. Peck Dam in Montana. - - - The Blood Oranges - 1970 - Where everyone wants to vacation. - - - -`) - -func TestAuthorDoc(t *testing.T) { - m, merr := NewMapXml(authorDoc) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - fmt.Println(m.StringIndent()) - - fmt.Println("m.UpdateValuesForPath(\"review:National Book Award winner.\", \"*.*.*.*\", \"title:JR\")") - n, _ := m.UpdateValuesForPath("review:National Book Award winner.", "*.*.*.*", "title:JR") - fmt.Println(n, "updates") - ss, _ := m.ValuesForPath("biblio.author", "name:William Gaddis") - for _, v := range ss { - fmt.Println("v:", v) - } - - fmt.Println("m.UpdateValuesForPath(newVal, path, oldVal)") - path := m.PathForKeyShortest("date") - v, _ := m.ValuesForPath(path) - var counter int - for _, vv := range v { - oldVal := "date:" + vv.(string) - newVal := "date:" + vv.(string) + ":num" - n, _ = m.UpdateValuesForPath(newVal, path, oldVal) - counter += n - } - fmt.Println(counter, "updates") - fmt.Println(m.StringIndent()) -} diff --git a/vendor/github.com/clbanning/mxj/xml.go b/vendor/github.com/clbanning/mxj/xml.go deleted file mode 100644 index 50519eab..00000000 --- a/vendor/github.com/clbanning/mxj/xml.go +++ /dev/null @@ -1,1005 +0,0 @@ -// Copyright 2012-2016 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -// xml.go - basically the core of X2j for map[string]interface{} values. -// NewMapXml, NewMapXmlReader, mv.Xml, mv.XmlWriter -// see x2j and j2x for wrappers to provide end-to-end transformation of XML and JSON messages. - -package mxj - -import ( - "bytes" - "encoding/json" - "encoding/xml" - "errors" - "fmt" - "io" - "sort" - "strconv" - "strings" - "time" -) - -// ------------------- NewMapXml & NewMapXmlReader ... ------------------------- - -// If XmlCharsetReader != nil, it will be used to decode the XML, if required. -// Note: if CustomDeocder != nil, then XmlCharsetReader is ignored; -// set the CustomDecoder attribute instead. -// import ( -// charset "code.google.com/p/go-charset/charset" -// github.com/clbanning/mxj -// ) -// ... -// mxj.XmlCharsetReader = charset.NewReader -// m, merr := mxj.NewMapXml(xmlValue) -var XmlCharsetReader func(charset string, input io.Reader) (io.Reader, error) - -// NewMapXml - convert a XML doc into a Map -// (This is analogous to unmarshalling a JSON string to map[string]interface{} using json.Unmarshal().) -// If the optional argument 'cast' is 'true', then values will be converted to boolean or float64 if possible. -// -// Converting XML to JSON is a simple as: -// ... -// mapVal, merr := mxj.NewMapXml(xmlVal) -// if merr != nil { -// // handle error -// } -// jsonVal, jerr := mapVal.Json() -// if jerr != nil { -// // handle error -// } -// -// NOTES: -// 1. The 'xmlVal' will be parsed looking for an xml.StartElement, so BOM and other -// extraneous xml.CharData will be ignored unless io.EOF is reached first. -// 2. If CoerceKeysToLower() has been called, then all key values will be lower case. -func NewMapXml(xmlVal []byte, cast ...bool) (Map, error) { - var r bool - if len(cast) == 1 { - r = cast[0] - } - return xmlToMap(xmlVal, r) -} - -// Get next XML doc from an io.Reader as a Map value. Returns Map value. -// NOTES: -// 1. The 'xmlReader' will be parsed looking for an xml.StartElement, so BOM and other -// extraneous xml.CharData will be ignored unless io.EOF is reached first. -// 2. If CoerceKeysToLower() has been called, then all key values will be lower case. -func NewMapXmlReader(xmlReader io.Reader, cast ...bool) (Map, error) { - var r bool - if len(cast) == 1 { - r = cast[0] - } - - // We need to put an *os.File reader in a ByteReader or the xml.NewDecoder - // will wrap it in a bufio.Reader and seek on the file beyond where the - // xml.Decoder parses! - if _, ok := xmlReader.(io.ByteReader); !ok { - xmlReader = myByteReader(xmlReader) // see code at EOF - } - - // build the map - return xmlReaderToMap(xmlReader, r) -} - -// XmlWriterBufSize - set the size of io.Writer for the TeeReader used by NewMapXmlReaderRaw() -// and HandleXmlReaderRaw(). This reduces repeated memory allocations and copy() calls in most cases. -// NOTE: the 'xmlVal' will be parsed looking for an xml.StartElement, so BOM and other -// extraneous xml.CharData will be ignored unless io.EOF is reached first. -var XmlWriterBufSize int = 512 - -// Get next XML doc from an io.Reader as a Map value. Returns Map value and slice with the raw XML. -// NOTES: -// 1. Due to the implementation of xml.Decoder, the raw XML off the reader is buffered to []byte -// using a ByteReader. If the io.Reader is an os.File, there may be significant performance impact. -// See the examples - getmetrics1.go through getmetrics4.go - for comparative use cases on a large -// data set. If the io.Reader is wrapping a []byte value in-memory, however, such as http.Request.Body -// you CAN use it to efficiently unmarshal a XML doc and retrieve the raw XML in a single call. -// 2. The 'raw' return value may be larger than the XML text value. -// 3. The 'xmlReader' will be parsed looking for an xml.StartElement, so BOM and other -// extraneous xml.CharData will be ignored unless io.EOF is reached first. -// 4. If CoerceKeysToLower() has been called, then all key values will be lower case. -func NewMapXmlReaderRaw(xmlReader io.Reader, cast ...bool) (Map, []byte, error) { - var r bool - if len(cast) == 1 { - r = cast[0] - } - // create TeeReader so we can retrieve raw XML - buf := make([]byte, XmlWriterBufSize) - wb := bytes.NewBuffer(buf) - trdr := myTeeReader(xmlReader, wb) // see code at EOF - - // build the node tree - m, err := xmlReaderToMap(trdr, r) - - // retrieve the raw XML that was decoded - b := make([]byte, wb.Len()) - _, _ = wb.Read(b) - - if err != nil { - return nil, b, err - } - - return m, b, nil -} - -// xmlReaderToMap() - parse a XML io.Reader to a map[string]interface{} value -func xmlReaderToMap(rdr io.Reader, r bool) (map[string]interface{}, error) { - // parse the Reader - p := xml.NewDecoder(rdr) - if CustomDecoder != nil { - useCustomDecoder(p) - } else { - p.CharsetReader = XmlCharsetReader - } - return xmlToMapParser("", nil, p, r) -} - -// xmlToMap - convert a XML doc into map[string]interface{} value -func xmlToMap(doc []byte, r bool) (map[string]interface{}, error) { - b := bytes.NewReader(doc) - p := xml.NewDecoder(b) - if CustomDecoder != nil { - useCustomDecoder(p) - } else { - p.CharsetReader = XmlCharsetReader - } - return xmlToMapParser("", nil, p, r) -} - -// ===================================== where the work happens ============================= - -// PrependAttrWithHyphen. Prepend attribute tags with a hyphen. -// Default is 'true'. (Not applicable to NewMapXmlSeq(), mv.XmlSeq(), etc.) -// Note: -// If 'false', unmarshaling and marshaling is not symmetric. Attributes will be -// marshal'd as attr and may be part of a list. -func PrependAttrWithHyphen(v bool) { - if v { - attrPrefix = "-" - lenAttrPrefix = len(attrPrefix) - return - } - attrPrefix = "" - lenAttrPrefix = len(attrPrefix) -} - -// Include sequence id with inner tags. - per Sean Murphy, murphysean84@gmail.com. -var includeTagSeqNum bool - -// IncludeTagSeqNum - include a "_seq":N key:value pair with each inner tag, denoting -// its position when parsed. This is of limited usefulness, since list values cannot -// be tagged with "_seq" without changing their depth in the Map. -// So THIS SHOULD BE USED WITH CAUTION - see the test cases. Here's a sample of what -// you get. -/* - - - - - hello - - - parses as: - - { - Obj:{ - "-c":"la", - "-h":"da", - "-x":"dee", - "intObj":[ - { - "-id"="3", - "_seq":"0" // if mxj.Cast is passed, then: "_seq":0 - }, - { - "-id"="2", - "_seq":"2" - }], - "intObj1":{ - "-id":"1", - "_seq":"1" - }, - "StrObj":{ - "#text":"hello", // simple element value gets "#text" tag - "_seq":"3" - } - } - } -*/ -func IncludeTagSeqNum(b bool) { - includeTagSeqNum = b -} - -// all keys will be "lower case" -var lowerCase bool - -// Coerce all tag values to keys in lower case. This is useful if you've got sources with variable -// tag capitalization, and you want to use m.ValuesForKeys(), etc., with the key or path spec -// in lower case. -// CoerceKeysToLower() will toggle the coercion flag true|false - on|off -// CoerceKeysToLower(true|false) will set the coercion flag on|off -// -// NOTE: only recognized by NewMapXml, NewMapXmlReader, and NewMapXmlReaderRaw functions as well as -// the associated HandleXmlReader and HandleXmlReaderRaw. -func CoerceKeysToLower(b ...bool) { - if len(b) == 1 { - lowerCase = b[0] - return - } - if !lowerCase { - lowerCase = true - } else { - lowerCase = false - } -} - -// 25jun16: Allow user to specify the "prefix" character for XML attribute key labels. -// We do this by replacing '`' constant with attrPrefix var, replacing useHyphen with attrPrefix = "", -// and adding a SetAttrPrefix(s string) function. - -var attrPrefix string = `-` // the default -var lenAttrPrefix int = 1 // the default - -// SetAttrPrefix changes the default, "-", to the specified value, s. -// SetAttrPrefix("") is the same as PrependAttrWithHyphen(false). -// (Not applicable for NewMapXmlSeq(), mv.XmlSeq(), etc.) -func SetAttrPrefix(s string) { - attrPrefix = s - lenAttrPrefix = len(attrPrefix) -} - -// xmlToMapParser (2015.11.12) - load a 'clean' XML doc into a map[string]interface{} directly. -// A refactoring of xmlToTreeParser(), markDuplicate() and treeToMap() - here, all-in-one. -// We've removed the intermediate *node tree with the allocation and subsequent rescanning. -func xmlToMapParser(skey string, a []xml.Attr, p *xml.Decoder, r bool) (map[string]interface{}, error) { - if lowerCase { - skey = strings.ToLower(skey) - } - - // NOTE: all attributes and sub-elements parsed into 'na', 'na' is returned as value for 'skey' in 'n'. - // Unless 'skey' is a simple element w/o attributes, in which case the xml.CharData value is the value. - var n, na map[string]interface{} - var seq int // for includeTagSeqNum - - // Allocate maps and load attributes, if any. - // NOTE: on entry from NewMapXml(), etc., skey=="", and we fall through - // to get StartElement then recurse with skey==xml.StartElement.Name.Local - // where we begin allocating map[string]interface{} values 'n' and 'na'. - if skey != "" { - n = make(map[string]interface{}) // old n - na = make(map[string]interface{}) // old n.nodes - if len(a) > 0 { - for _, v := range a { - var key string - key = attrPrefix + v.Name.Local - if lowerCase { - key = strings.ToLower(key) - } - na[key] = cast(v.Value, r) - } - } - } - for { - t, err := p.Token() - if err != nil { - if err != io.EOF { - return nil, errors.New("xml.Decoder.Token() - " + err.Error()) - } - return nil, err - } - switch t.(type) { - case xml.StartElement: - tt := t.(xml.StartElement) - - // First call to xmlToMapParser() doesn't pass xml.StartElement - the map key. - // So when the loop is first entered, the first token is the root tag along - // with any attributes, which we process here. - // - // Subsequent calls to xmlToMapParser() will pass in tag+attributes for - // processing before getting the next token which is the element value, - // which is done above. - if skey == "" { - return xmlToMapParser(tt.Name.Local, tt.Attr, p, r) - } - - // If not initializing the map, parse the element. - // len(nn) == 1, necessarily - it is just an 'n'. - nn, err := xmlToMapParser(tt.Name.Local, tt.Attr, p, r) - if err != nil { - return nil, err - } - - // The nn map[string]interface{} value is a na[nn_key] value. - // We need to see if nn_key already exists - means we're parsing a list. - // This may require converting na[nn_key] value into []interface{} type. - // First, extract the key:val for the map - it's a singleton. - // Note: if CoerceKeysToLower() called, then key will be lower case. - var key string - var val interface{} - for key, val = range nn { - break - } - - // IncludeTagSeqNum requests that the element be augmented with a "_seq" sub-element. - // In theory, we don't need this if len(na) == 1. But, we don't know what might - // come next - we're only parsing forward. So if you ask for 'includeTagSeqNum' you - // get it on every element. (Personally, I never liked this, but I added it on request - // and did get a $50 Amazon gift card in return - now we support it for backwards compatibility!) - if includeTagSeqNum { - switch val.(type) { - case []interface{}: - // noop - There's no clean way to handle this w/o changing message structure. - case map[string]interface{}: - val.(map[string]interface{})["_seq"] = seq // will overwrite an "_seq" XML tag - seq++ - case interface{}: // a non-nil simple element: string, float64, bool - v := map[string]interface{}{"#text": val} - v["_seq"] = seq - seq++ - val = v - } - } - - // 'na' holding sub-elements of n. - // See if 'key' already exists. - // If 'key' exists, then this is a list, if not just add key:val to na. - if v, ok := na[key]; ok { - var a []interface{} - switch v.(type) { - case []interface{}: - a = v.([]interface{}) - default: // anything else - note: v.(type) != nil - a = []interface{}{v} - } - a = append(a, val) - na[key] = a - } else { - na[key] = val // save it as a singleton - } - case xml.EndElement: - // len(n) > 0 if this is a simple element w/o xml.Attrs - see xml.CharData case. - if len(n) == 0 { - // If len(na)==0 we have an empty element == ""; - // it has no xml.Attr nor xml.CharData. - // Note: in original node-tree parser, val defaulted to ""; - // so we always had the default if len(node.nodes) == 0. - if len(na) > 0 { - n[skey] = na - } else { - n[skey] = "" // empty element - } - } - return n, nil - case xml.CharData: - // clean up possible noise - tt := strings.Trim(string(t.(xml.CharData)), "\t\r\b\n ") - if len(tt) > 0 { - if len(na) > 0 { - na["#text"] = cast(tt, r) - } else if skey != "" { - n[skey] = cast(tt, r) - } else { - // per Adrian (http://www.adrianlungu.com/) catch stray text - // in decoder stream - - // https://github.com/clbanning/mxj/pull/14#issuecomment-182816374 - // NOTE: CharSetReader must be set to non-UTF-8 CharSet or you'll get - // a p.Token() decoding error when the BOM is UTF-16 or UTF-32. - continue - } - } - default: - // noop - } - } -} - -var castNanInf bool - -// Cast "Nan", "Inf", "-Inf" XML values to 'float64'. -// By default, these values will be decoded as 'string'. -func CastNanInf(b bool) { - castNanInf = b -} - -// cast - try to cast string values to bool or float64 -func cast(s string, r bool) interface{} { - if r { - // handle nan and inf - if !castNanInf { - switch strings.ToLower(s) { - case "nan", "inf", "-inf": - return interface{}(s) - } - } - - // handle numeric strings ahead of boolean - if f, err := strconv.ParseFloat(s, 64); err == nil { - return interface{}(f) - } - // ParseBool treats "1"==true & "0"==false - // but be more strick - only allow TRUE, True, true, FALSE, False, false - if s != "t" && s != "T" && s != "f" && s != "F" { - if b, err := strconv.ParseBool(s); err == nil { - return interface{}(b) - } - } - } - return interface{}(s) -} - -// ------------------ END: NewMapXml & NewMapXmlReader ------------------------- - -// ------------------ mv.Xml & mv.XmlWriter - from j2x ------------------------ - -const ( - DefaultRootTag = "doc" -) - -var useGoXmlEmptyElemSyntax bool - -// XmlGoEmptyElemSyntax() - rather than . -// Go's encoding/xml package marshals empty XML elements as . By default this package -// encodes empty elements as . If you're marshaling Map values that include structures -// (which are passed to xml.Marshal for encoding), this will let you conform to the standard package. -func XmlGoEmptyElemSyntax() { - useGoXmlEmptyElemSyntax = true -} - -// XmlDefaultEmptyElemSyntax() - rather than . -// Return XML encoding for empty elements to the default package setting. -// Reverses effect of XmlGoEmptyElemSyntax(). -func XmlDefaultEmptyElemSyntax() { - useGoXmlEmptyElemSyntax = false -} - -// Encode a Map as XML. The companion of NewMapXml(). -// The following rules apply. -// - The key label "#text" is treated as the value for a simple element with attributes. -// - Map keys that begin with a hyphen, '-', are interpreted as attributes. -// It is an error if the attribute doesn't have a []byte, string, number, or boolean value. -// - Map value type encoding: -// > string, bool, float64, int, int32, int64, float32: per "%v" formating -// > []bool, []uint8: by casting to string -// > structures, etc.: handed to xml.Marshal() - if there is an error, the element -// value is "UNKNOWN" -// - Elements with only attribute values or are null are terminated using "/>". -// - If len(mv) == 1 and no rootTag is provided, then the map key is used as the root tag, possible. -// Thus, `{ "key":"value" }` encodes as "value". -// - To encode empty elements in a syntax consistent with encoding/xml call UseGoXmlEmptyElementSyntax(). -// The attributes tag=value pairs are alphabetized by "tag". Also, when encoding map[string]interface{} values - -// complex elements, etc. - the key:value pairs are alphabetized by key so the resulting tags will appear sorted. -func (mv Map) Xml(rootTag ...string) ([]byte, error) { - m := map[string]interface{}(mv) - var err error - s := new(string) - p := new(pretty) // just a stub - - if len(m) == 1 && len(rootTag) == 0 { - for key, value := range m { - // if it an array, see if all values are map[string]interface{} - // we force a new root tag if we'll end up with no key:value in the list - // so: key:[string_val, bool:true] --> string_valtrue - switch value.(type) { - case []interface{}: - for _, v := range value.([]interface{}) { - switch v.(type) { - case map[string]interface{}: // noop - default: // anything else - err = mapToXmlIndent(false, s, DefaultRootTag, m, p) - goto done - } - } - } - err = mapToXmlIndent(false, s, key, value, p) - } - } else if len(rootTag) == 1 { - err = mapToXmlIndent(false, s, rootTag[0], m, p) - } else { - err = mapToXmlIndent(false, s, DefaultRootTag, m, p) - } -done: - return []byte(*s), err -} - -// The following implementation is provided only for symmetry with NewMapXmlReader[Raw] -// The names will also provide a key for the number of return arguments. - -// Writes the Map as XML on the Writer. -// See Xml() for encoding rules. -func (mv Map) XmlWriter(xmlWriter io.Writer, rootTag ...string) error { - x, err := mv.Xml(rootTag...) - if err != nil { - return err - } - - _, err = xmlWriter.Write(x) - return err -} - -// Writes the Map as XML on the Writer. []byte is the raw XML that was written. -// See Xml() for encoding rules. -func (mv Map) XmlWriterRaw(xmlWriter io.Writer, rootTag ...string) ([]byte, error) { - x, err := mv.Xml(rootTag...) - if err != nil { - return x, err - } - - _, err = xmlWriter.Write(x) - return x, err -} - -// Writes the Map as pretty XML on the Writer. -// See Xml() for encoding rules. -func (mv Map) XmlIndentWriter(xmlWriter io.Writer, prefix, indent string, rootTag ...string) error { - x, err := mv.XmlIndent(prefix, indent, rootTag...) - if err != nil { - return err - } - - _, err = xmlWriter.Write(x) - return err -} - -// Writes the Map as pretty XML on the Writer. []byte is the raw XML that was written. -// See Xml() for encoding rules. -func (mv Map) XmlIndentWriterRaw(xmlWriter io.Writer, prefix, indent string, rootTag ...string) ([]byte, error) { - x, err := mv.XmlIndent(prefix, indent, rootTag...) - if err != nil { - return x, err - } - - _, err = xmlWriter.Write(x) - return x, err -} - -// -------------------- END: mv.Xml & mv.XmlWriter ------------------------------- - -// -------------- Handle XML stream by processing Map value -------------------- - -// Default poll delay to keep Handler from spinning on an open stream -// like sitting on os.Stdin waiting for imput. -var xhandlerPollInterval = time.Millisecond - -// Bulk process XML using handlers that process a Map value. -// 'rdr' is an io.Reader for XML (stream) -// 'mapHandler' is the Map processor. Return of 'false' stops io.Reader processing. -// 'errHandler' is the error processor. Return of 'false' stops io.Reader processing and returns the error. -// Note: mapHandler() and errHandler() calls are blocking, so reading and processing of messages is serialized. -// This means that you can stop reading the file on error or after processing a particular message. -// To have reading and handling run concurrently, pass argument to a go routine in handler and return 'true'. -func HandleXmlReader(xmlReader io.Reader, mapHandler func(Map) bool, errHandler func(error) bool) error { - var n int - for { - m, merr := NewMapXmlReader(xmlReader) - n++ - - // handle error condition with errhandler - if merr != nil && merr != io.EOF { - merr = fmt.Errorf("[xmlReader: %d] %s", n, merr.Error()) - if ok := errHandler(merr); !ok { - // caused reader termination - return merr - } - continue - } - - // pass to maphandler - if len(m) != 0 { - if ok := mapHandler(m); !ok { - break - } - } else if merr != io.EOF { - time.Sleep(xhandlerPollInterval) - } - - if merr == io.EOF { - break - } - } - return nil -} - -// Bulk process XML using handlers that process a Map value and the raw XML. -// 'rdr' is an io.Reader for XML (stream) -// 'mapHandler' is the Map and raw XML - []byte - processor. Return of 'false' stops io.Reader processing. -// 'errHandler' is the error and raw XML processor. Return of 'false' stops io.Reader processing and returns the error. -// Note: mapHandler() and errHandler() calls are blocking, so reading and processing of messages is serialized. -// This means that you can stop reading the file on error or after processing a particular message. -// To have reading and handling run concurrently, pass argument(s) to a go routine in handler and return 'true'. -// See NewMapXmlReaderRaw for comment on performance associated with retrieving raw XML from a Reader. -func HandleXmlReaderRaw(xmlReader io.Reader, mapHandler func(Map, []byte) bool, errHandler func(error, []byte) bool) error { - var n int - for { - m, raw, merr := NewMapXmlReaderRaw(xmlReader) - n++ - - // handle error condition with errhandler - if merr != nil && merr != io.EOF { - merr = fmt.Errorf("[xmlReader: %d] %s", n, merr.Error()) - if ok := errHandler(merr, raw); !ok { - // caused reader termination - return merr - } - continue - } - - // pass to maphandler - if len(m) != 0 { - if ok := mapHandler(m, raw); !ok { - break - } - } else if merr != io.EOF { - time.Sleep(xhandlerPollInterval) - } - - if merr == io.EOF { - break - } - } - return nil -} - -// ----------------- END: Handle XML stream by processing Map value -------------- - -// -------- a hack of io.TeeReader ... need one that's an io.ByteReader for xml.NewDecoder() ---------- - -// This is a clone of io.TeeReader with the additional method t.ReadByte(). -// Thus, this TeeReader is also an io.ByteReader. -// This is necessary because xml.NewDecoder uses a ByteReader not a Reader. It appears to have been written -// with bufio.Reader or bytes.Reader in mind ... not a generic io.Reader, which doesn't have to have ReadByte().. -// If NewDecoder is passed a Reader that does not satisfy ByteReader() it wraps the Reader with -// bufio.NewReader and uses ReadByte rather than Read that runs the TeeReader pipe logic. - -type teeReader struct { - r io.Reader - w io.Writer - b []byte -} - -func myTeeReader(r io.Reader, w io.Writer) io.Reader { - b := make([]byte, 1) - return &teeReader{r, w, b} -} - -// need for io.Reader - but we don't use it ... -func (t *teeReader) Read(p []byte) (int, error) { - return 0, nil -} - -func (t *teeReader) ReadByte() (byte, error) { - n, err := t.r.Read(t.b) - if n > 0 { - if _, err := t.w.Write(t.b[:1]); err != nil { - return t.b[0], err - } - } - return t.b[0], err -} - -// For use with NewMapXmlReader & NewMapXmlSeqReader. -type byteReader struct { - r io.Reader - b []byte -} - -func myByteReader(r io.Reader) io.Reader { - b := make([]byte, 1) - return &byteReader{r, b} -} - -// need for io.Reader - but we don't use it ... -func (b *byteReader) Read(p []byte) (int, error) { - return 0, nil -} - -func (b *byteReader) ReadByte() (byte, error) { - _, err := b.r.Read(b.b) - if len(b.b) > 0 { - return b.b[0], nil - } - var c byte - return c, err -} - -// ----------------------- END: io.TeeReader hack ----------------------------------- - -// ---------------------- XmlIndent - from j2x package ---------------------------- - -// Encode a map[string]interface{} as a pretty XML string. -// See Xml for encoding rules. -func (mv Map) XmlIndent(prefix, indent string, rootTag ...string) ([]byte, error) { - m := map[string]interface{}(mv) - - var err error - s := new(string) - p := new(pretty) - p.indent = indent - p.padding = prefix - - if len(m) == 1 && len(rootTag) == 0 { - // this can extract the key for the single map element - // use it if it isn't a key for a list - for key, value := range m { - if _, ok := value.([]interface{}); ok { - err = mapToXmlIndent(true, s, DefaultRootTag, m, p) - } else { - err = mapToXmlIndent(true, s, key, value, p) - } - } - } else if len(rootTag) == 1 { - err = mapToXmlIndent(true, s, rootTag[0], m, p) - } else { - err = mapToXmlIndent(true, s, DefaultRootTag, m, p) - } - return []byte(*s), err -} - -type pretty struct { - indent string - cnt int - padding string - mapDepth int - start int -} - -func (p *pretty) Indent() { - p.padding += p.indent - p.cnt++ -} - -func (p *pretty) Outdent() { - if p.cnt > 0 { - p.padding = p.padding[:len(p.padding)-len(p.indent)] - p.cnt-- - } -} - -// where the work actually happens -// returns an error if an attribute is not atomic -func mapToXmlIndent(doIndent bool, s *string, key string, value interface{}, pp *pretty) error { - var endTag bool - var isSimple bool - var elen int - p := &pretty{pp.indent, pp.cnt, pp.padding, pp.mapDepth, pp.start} - - switch value.(type) { - // special handling of []interface{} values when len(value) == 0 - case map[string]interface{}, []byte, string, float64, bool, int, int32, int64, float32, json.Number: - if doIndent { - *s += p.padding - } - *s += `<` + key - } - switch value.(type) { - case map[string]interface{}: - vv := value.(map[string]interface{}) - lenvv := len(vv) - // scan out attributes - attribute keys have prepended attrPrefix - attrlist := make([][2]string, len(vv)) - var n int - var ss string - for k, v := range vv { - if k[:lenAttrPrefix] == attrPrefix { - switch v.(type) { - case string: - if xmlEscapeChars { - ss = escapeChars(v.(string)) - } else { - ss = v.(string) - } - attrlist[n][0] = k[lenAttrPrefix:] - attrlist[n][1] = ss - case float64, bool, int, int32, int64, float32, json.Number: - attrlist[n][0] = k[lenAttrPrefix:] - attrlist[n][1] = fmt.Sprintf("%v", v) - case []byte: - if xmlEscapeChars { - ss = escapeChars(string(v.([]byte))) - } else { - ss = string(v.([]byte)) - } - attrlist[n][0] = k[lenAttrPrefix:] - attrlist[n][1] = ss - default: - return fmt.Errorf("invalid attribute value for: %s:<%T>", k, v) - } - n++ - } - } - if n > 0 { - attrlist = attrlist[:n] - sort.Sort(attrList(attrlist)) - for _, v := range attrlist { - *s += ` ` + v[0] + `="` + v[1] + `"` - } - } - // only attributes? - if n == lenvv { - break - } - - // simple element? Note: '#text" is an invalid XML tag. - if v, ok := vv["#text"]; ok && n+1 == lenvv { - *s += ">" + fmt.Sprintf("%v", v) - endTag = true - elen = 1 - isSimple = true - break - } - // close tag with possible attributes - *s += ">" - if doIndent { - *s += "\n" - } - // something more complex - p.mapDepth++ - // extract the map k:v pairs and sort on key - elemlist := make([][2]interface{}, len(vv)) - n = 0 - for k, v := range vv { - if k[:lenAttrPrefix] == attrPrefix { - continue - } - elemlist[n][0] = k - elemlist[n][1] = v - n++ - } - elemlist = elemlist[:n] - sort.Sort(elemList(elemlist)) - var i int - for _, v := range elemlist { - switch v[1].(type) { - case []interface{}: - default: - if i == 0 && doIndent { - p.Indent() - } - } - i++ - mapToXmlIndent(doIndent, s, v[0].(string), v[1], p) - switch v[1].(type) { - case []interface{}: // handled in []interface{} case - default: - if doIndent { - p.Outdent() - } - } - i-- - } - p.mapDepth-- - endTag = true - elen = 1 // we do have some content ... - case []interface{}: - // special case - found during implementing Issue #23 - if len(value.([]interface{})) == 0 { - if doIndent { - *s += p.padding + p.indent - } - *s += "<" + key - elen = 0 - endTag = true - break - } - for _, v := range value.([]interface{}) { - if doIndent { - p.Indent() - } - mapToXmlIndent(doIndent, s, key, v, p) - if doIndent { - p.Outdent() - } - } - return nil - case nil: - // terminate the tag - *s += "<" + key - break - default: // handle anything - even goofy stuff - elen = 0 - switch value.(type) { - case string: - v := value.(string) - if xmlEscapeChars { - v = escapeChars(v) - } - elen = len(v) - if elen > 0 { - *s += ">" + v - } - case float64, bool, int, int32, int64, float32, json.Number: - v := fmt.Sprintf("%v", value) - elen = len(v) // always > 0 - *s += ">" + v - case []byte: // NOTE: byte is just an alias for uint8 - // similar to how xml.Marshal handles []byte structure members - v := string(value.([]byte)) - if xmlEscapeChars { - v = escapeChars(v) - } - elen = len(v) - if elen > 0 { - *s += ">" + v - } - default: - var v []byte - var err error - if doIndent { - v, err = xml.MarshalIndent(value, p.padding, p.indent) - } else { - v, err = xml.Marshal(value) - } - if err != nil { - *s += ">UNKNOWN" - } else { - elen = len(v) - if elen > 0 { - *s += string(v) - } - } - } - isSimple = true - endTag = true - } - if endTag { - if doIndent { - if !isSimple { - *s += p.padding - } - } - if elen > 0 || useGoXmlEmptyElemSyntax { - if elen == 0 { - *s += ">" - } - *s += `" - } else { - *s += `/>` - } - } - if doIndent { - if p.cnt > p.start { - *s += "\n" - } - p.Outdent() - } - - return nil -} - -// ============================ sort interface implementation ================= - -type attrList [][2]string - -func (a attrList) Len() int { - return len(a) -} - -func (a attrList) Swap(i, j int) { - a[i], a[j] = a[j], a[i] -} - -func (a attrList) Less(i, j int) bool { - if a[i][0] > a[j][0] { - return false - } - return true -} - -type elemList [][2]interface{} - -func (e elemList) Len() int { - return len(e) -} - -func (e elemList) Swap(i, j int) { - e[i], e[j] = e[j], e[i] -} - -func (e elemList) Less(i, j int) bool { - if e[i][0].(string) > e[j][0].(string) { - return false - } - return true -} diff --git a/vendor/github.com/clbanning/mxj/xml2_test.go b/vendor/github.com/clbanning/mxj/xml2_test.go deleted file mode 100644 index 0e9ff56e..00000000 --- a/vendor/github.com/clbanning/mxj/xml2_test.go +++ /dev/null @@ -1,322 +0,0 @@ -package mxj - -import ( - "encoding/json" - "encoding/xml" - "fmt" - "io" - "os" - "testing" -) - -func TestXml2Header(t *testing.T) { - fmt.Println("\n---------------- xml2_test.go ...\n") -} - -func TestNewMapXml4(t *testing.T) { - x := []byte(` - - - William T. Gaddis - The Recognitions - One of the great seminal American novels of the 20th century. - - - Austin Tappan Wright - Islandia - An example of earlier 20th century American utopian fiction. - - - John Hawkes - The Beetle Leg - A lyrical novel about the construction of Ft. Peck Dam in Montana. - - - - T.E. - Porter - - King's Day - A magical novella. - - -`) - - m, err := NewMapXml(x) - if err != nil && err != io.EOF { - t.Fatal("err:", err.Error()) - } - fmt.Println("NewMapXml4, x:\n", string(x)) - fmt.Println("NewMapXml4, m:\n", m) - fmt.Println("NewMapXml4, s:\n", m.StringIndent()) - b, err := m.XmlIndent("", " ") - if err != nil { - t.Fatal("err:", err) - } - fmt.Println("NewMapXml4, b:\n", string(b)) -} - -func TestNewMapXml5(t *testing.T) { - fh, err := os.Open("songtext.xml") - if err != nil { - t.Fatal("err:", err.Error()) - } - defer fh.Close() - - m, raw, err := NewMapXmlReaderRaw(fh) - if err != nil && err != io.EOF { - t.Fatal("err:", err.Error()) - } - fmt.Println("NewMapXml5, raw:\n", string(raw)) - fmt.Println("NewMapXml5, m:\n", m) - fmt.Println("NewMapXml5, s:\n", m.StringIndent()) - b, err := m.Xml() - if err != nil { - t.Fatal("err:", err) - } - fmt.Println("NewMapXml5, b:\n", string(b)) - b, err = m.XmlIndent("", " ") - if err != nil { - t.Fatal("err:", err) - } - fmt.Println("NewMapXml5, b:\n", string(b)) -} - -func TestNewMapXml6(t *testing.T) { - fh, err := os.Open("atomFeedString.xml") - if err != nil { - t.Fatal("err:", err.Error()) - } - defer fh.Close() - - m, raw, err := NewMapXmlReaderRaw(fh) - if err != nil && err != io.EOF { - t.Fatal("err:", err.Error()) - } - fmt.Println("NewMapXml6, raw:\n", string(raw)) - fmt.Println("NewMapXml6, m:\n", m) - fmt.Println("NewMapXml6, s:\n", m.StringIndent()) - b, err := m.Xml() - if err != nil { - t.Fatal("err:", err) - } - fmt.Println("NewMapXml6, b:\n", string(b)) - b, err = m.XmlIndent("", " ") - if err != nil { - t.Fatal("err:", err) - } - fmt.Println("NewMapXml6, b:\n", string(b)) -} - -// ===================================== benchmarks ============================ - -var smallxml = []byte(` - - - this - is - the - end - - -`) - -var smalljson = []byte(`{"doc":{"words":{"word1":"this","word2":"is","word3":"the","word4":"end"}}}`) - -type words struct { - Word1 string `xml:"word1"` - Word2 string `xml:"word2"` - Word3 string `xml:"word3"` - Word4 string `xml:"word4"` -} - -type xmldoc struct { - Words words `xml:"words"` -} - -type jsondoc struct { - Doc xmldoc -} - -func BenchmarkNewMapXml(b *testing.B) { - // var m Map - var err error - for i := 0; i < b.N; i++ { - if _, err = NewMapXml(smallxml); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("m Map:", m) -} - -func BenchmarkNewStructXml(b *testing.B) { - var s *xmldoc - var err error - for i := 0; i < b.N; i++ { - s = new(xmldoc) - if err = xml.Unmarshal(smallxml, s); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("s xmldoc:", *s) -} - -func BenchmarkNewMapJson(b *testing.B) { - var m map[string]interface{} - var err error - for i := 0; i < b.N; i++ { - m = make(map[string]interface{}) - if err = json.Unmarshal(smalljson, &m); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("m map:", m) -} - -func BenchmarkNewStructJson(b *testing.B) { - var s *jsondoc - var err error - for i := 0; i < b.N; i++ { - s = new(jsondoc) - if err = json.Unmarshal(smalljson, s); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("s jsondoc:", *s) -} - -// ================== something with a little more content ... =================== - -var xmlbooks = []byte(` - - - - William T. Gaddis - The Recognitions - One of the great seminal American novels of the 20th century. - - - Austin Tappan Wright - Islandia - An example of earlier 20th century American utopian fiction. - - - John Hawkes - The Beetle Leg - A lyrical novel set during the construction of Ft. Peck Dam in Montana. - - - - T.E. - Porter - - King's Day - A magical novella. - - - -`) - -var jsonbooks = []byte(` -{"doc": - {"books": - {"book":[ - { "author":"William T. Gaddis", - "title":"The Recognitions", - "review":"One of the great seminal American novels of the 20th century." - }, - { "author":"Austin Tappan Wright", - "title":"Islandia", - "review":"An example of earlier 20th century American utopian fiction." - }, - { "author":"John Hawkes", - "title":"The Beetle Leg", - "review":"A lyrical novel set during the construction of Ft. Peck Dam in Montana." - }, - { "author":{"first_name":"T.E.", "last_name":"Porter"}, - "title":"King's Day", - "review":"A magical novella." - }] - } - } -} -`) - -type book struct { - Author string `xml:"author"` - Title string `xml:"title"` - Review string `xml:"review"` -} - -type books struct { - Book []book `xml:"book"` -} - -type doc struct { - Books books `xml:"books"` -} - -type jsonbook struct { - Author json.RawMessage - Title string - Review string -} - -type jsonbooks2 struct { - Book []jsonbook -} - -type jsondoc1 struct { - Books jsonbooks2 -} - -type jsondoc2 struct { - Doc jsondoc1 -} - -func BenchmarkNewMapXmlBooks(b *testing.B) { - // var m Map - var err error - for i := 0; i < b.N; i++ { - if _, err = NewMapXml(xmlbooks); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("m Map:", m) -} - -func BenchmarkNewStructXmlBooks(b *testing.B) { - var s *doc - var err error - for i := 0; i < b.N; i++ { - s = new(doc) - if err = xml.Unmarshal(xmlbooks, s); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("s doc:", *s) -} - -func BenchmarkNewMapJsonBooks(b *testing.B) { - var m map[string]interface{} - var err error - for i := 0; i < b.N; i++ { - m = make(map[string]interface{}) - if err = json.Unmarshal(jsonbooks, &m); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("m map:", m) -} - -func BenchmarkNewStructJsonBooks(b *testing.B) { - var s *jsondoc2 - var err error - for i := 0; i < b.N; i++ { - s = new(jsondoc2) - if err = json.Unmarshal(jsonbooks, s); err != nil { - b.Fatal("err:", err) - } - } - // fmt.Println("s jsondoc2:", *s) -} diff --git a/vendor/github.com/clbanning/mxj/xml_test.go b/vendor/github.com/clbanning/mxj/xml_test.go deleted file mode 100644 index f41ce7e6..00000000 --- a/vendor/github.com/clbanning/mxj/xml_test.go +++ /dev/null @@ -1,208 +0,0 @@ -package mxj - -import ( - "bytes" - "fmt" - "io" - "testing" -) - -func TestXmlHeader(t *testing.T) { - fmt.Println("\n---------------- xml_test.go ...\n") -} - -func TestNewMapXml(t *testing.T) { - x := []byte(`something more12`) - - mv, merr := NewMapXml(x) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - - fmt.Println("NewMapXml, x :", string(x)) - fmt.Println("NewMapXml, mv:", mv) -} - -func TestAttrHyphenFalse(t *testing.T) { - PrependAttrWithHyphen(false) - x := []byte(`something more12`) - - mv, merr := NewMapXml(x) - if merr != nil { - t.Fatal("merr:", merr.Error()) - } - - fmt.Println("AttrHyphenFalse, x :", string(x)) - fmt.Println("AttrHyphenFalse, mv:", mv) - PrependAttrWithHyphen(true) -} - -func TestNewMapXmlError(t *testing.T) { - x := []byte(`something more12`) - - m, merr := NewMapJson(x) - if merr == nil { - t.Fatal("NewMapXmlError, m:", m) - } - - fmt.Println("NewMapXmlError, x :", string(x)) - fmt.Println("NewMapXmlError, merr:", merr.Error()) - - x = []byte(`something more12`) - m, merr = NewMapJson(x) - if merr == nil { - t.Fatal("NewMapXmlError, m:", m) - } - - fmt.Println("NewMapXmlError, x :", string(x)) - fmt.Println("NewMapXmlError, merr:", merr.Error()) -} - -func TestNewMapXmlReader(t *testing.T) { - fmt.Println("\n==================== TestNewMapXmlReader ...") - x := []byte(`is a testsomething more12`) - - r := bytes.NewReader(x) - - for { - m, raw, err := NewMapXmlReaderRaw(r) - if err != nil && err != io.EOF { - t.Fatal("err:", err.Error()) - } - if err == io.EOF && len(m) == 0 { - break - } - fmt.Println("NewMapXmlReader, raw:", string(raw)) - fmt.Println("NewMapXmlReader, m :", m) - } -} - -// --------------------- Xml() and XmlWriter() test cases ------------------- - -func TestXml_1(t *testing.T) { - mv := Map{"tag1": "some data", "tag2": "more data", "boolean": true, "float": 3.14159625, "null": nil} - - x, err := mv.Xml() - if err != nil { - t.Fatal("err:", err.Error()) - } - - fmt.Println("Xml_1, mv:", mv) - fmt.Println("Xml_1, x :", string(x)) -} - -func TestXml_2(t *testing.T) { - a := []interface{}{"string", true, 36.4} - mv := Map{"array": a} - - x, err := mv.Xml() - if err != nil { - t.Fatal("err:", err.Error()) - } - - fmt.Println("Xml_2, mv:", mv) - fmt.Println("Xml_2, x :", string(x)) -} - -func TestXml_3(t *testing.T) { - a := []interface{}{"string", true, 36.4} - mv := Map{"array": []interface{}{a, "string2"}} - - x, err := mv.Xml() - if err != nil { - t.Fatal("err:", err.Error()) - } - - fmt.Println("Xml_3, mv:", mv) - fmt.Println("Xml_3, x :", string(x)) -} - -func TestXml_4(t *testing.T) { - a := []interface{}{"string", true, 36.4} - mv := Map{"array": map[string]interface{}{"innerkey": []interface{}{a, "string2"}}} - - x, err := mv.Xml() - if err != nil { - t.Fatal("err:", err.Error()) - } - - fmt.Println("Xml_4, mv:", mv) - fmt.Println("Xml_4, x :", string(x)) -} - -func TestXml_5(t *testing.T) { - a := []interface{}{"string", true, 36.4} - mv := Map{"array": []interface{}{map[string]interface{}{"innerkey": []interface{}{a, "string2"}}, map[string]interface{}{"some": "more"}}} - - x, err := mv.Xml() - if err != nil { - t.Fatal("err:", err.Error()) - } - - fmt.Println("Xml_5, mv:", mv) - fmt.Println("Xml_5, x :", string(x)) -} - -func TestXmlWriter(t *testing.T) { - mv := Map{"tag1": "some data", "tag2": "more data", "boolean": true, "float": 3.14159625} - w := new(bytes.Buffer) - - raw, err := mv.XmlWriterRaw(w, "myRootTag") - if err != nil { - t.Fatal("err:", err.Error()) - } - - b := make([]byte, w.Len()) - _, err = w.Read(b) - if err != nil { - t.Fatal("err:", err.Error()) - } - - fmt.Println("XmlWriter, raw:", string(raw)) - fmt.Println("XmlWriter, b :", string(b)) -} - -// -------------------------- XML Handler test cases ------------------------- - -/* tested in bulk_test.go ... -var xhdata = []byte(`is a testsomething more12`) - -func TestHandleXmlReader(t *testing.T) { - fmt.Println("HandleXmlReader:", string(xhdata)) - - rdr := bytes.NewReader(xhdata) - err := HandleXmlReader(rdr, xmhandler, xehandler) - if err != nil { - t.Fatal("err:", err.Error()) - } -} - -var xt *testing.T - -func xmhandler(m Map, raw []byte) bool { - x, xerr := m.Xml() - if xerr != nil { - xt.Fatal("... xmhandler:", xerr.Error()) - return false - } - - fmt.Println("... xmhandler, raw:", string(raw)) - fmt.Println("... xmhandler, x :", string(x)) - return true -} - -func xehandler(err error, raw []byte) bool { - if err == nil { - // shouldn't be here - xt.Fatal("... xehandler: ") - return false - } - if err == io.EOF { - return true - } - - fmt.Println("... xehandler raw:", string(raw)) - fmt.Println("... xehandler err:", err.Error()) - return true -} -*/ diff --git a/vendor/github.com/clbanning/mxj/xmlseq.go b/vendor/github.com/clbanning/mxj/xmlseq.go deleted file mode 100644 index 92882dba..00000000 --- a/vendor/github.com/clbanning/mxj/xmlseq.go +++ /dev/null @@ -1,769 +0,0 @@ -// Copyright 2012-2016 Charles Banning. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file - -// xmlseq.go - version of xml.go with sequence # injection on Decoding and sorting on Encoding. -// Also, handles comments, directives and process instructions. - -package mxj - -import ( - "bytes" - "encoding/xml" - "errors" - "fmt" - "io" - "sort" - "strings" -) - -var NoRoot = errors.New("no root key") -var NO_ROOT = NoRoot // maintain backwards compatibility - -// ------------------- NewMapXmlSeq & NewMapXmlSeqReader ... ------------------------- - -// This is only useful if you want to re-encode the Map as XML using mv.XmlSeq(), etc., to preserve the original structure. -// -// NewMapXmlSeq - convert a XML doc into a Map with elements id'd with decoding sequence int - #seq. -// If the optional argument 'cast' is 'true', then values will be converted to boolean or float64 if possible. -// NOTE: "#seq" key/value pairs are removed on encoding with mv.XmlSeq() / mv.XmlSeqIndent(). -// • attributes are a map - map["#attr"]map["attr_key"]map[string]interface{}{"#text":, "#seq":} -// • all simple elements are decoded as map["#text"]interface{} with a "#seq" k:v pair, as well. -// • lists always decode as map["list_tag"][]map[string]interface{} where the array elements are maps that -// include a "#seq" k:v pair based on sequence they are decoded. Thus, XML like: -// -// value 1 -// value 2 -// value 3 -// -// is decoded as: -// doc : -// ltag :[[]interface{}] -// [item: 0] -// #seq :[int] 0 -// #text :[string] value 1 -// [item: 1] -// #seq :[int] 2 -// #text :[string] value 3 -// newtag : -// #seq :[int] 1 -// #text :[string] value 2 -// It will encode in proper sequence even though the Map representation merges all "ltag" elements in an array. -// • comments - "" - are decoded as map["#comment"]map["#text"]"cmnt_text" with a "#seq" k:v pair. -// • directives - "" - are decoded as map["#directive"]map[#text"]"directive_text" with a "#seq" k:v pair. -// • process instructions - "" - are decoded as map["#procinst"]interface{} where the #procinst value -// is of map[string]interface{} type with the following keys: #target, #inst, and #seq. -// • comments, directives, and procinsts that are NOT part of a document with a root key will be returned as -// map[string]interface{} and the error value 'NoRoot'. -// • note: " 0 { - // xml.Attr is decoded into: map["#attr"]map[]interface{} - // where interface{} is map[string]interface{}{"#text":, "#seq":} - aa := make(map[string]interface{}, len(a)) - for i, v := range a { - aa[v.Name.Local] = map[string]interface{}{"#text": cast(v.Value, r), "#seq": i} - } - na["#attr"] = aa - } - } - for { - t, err := p.Token() - if err != nil { - if err != io.EOF { - return nil, errors.New("xml.Decoder.Token() - " + err.Error()) - } - return nil, err - } - switch t.(type) { - case xml.StartElement: - tt := t.(xml.StartElement) - - // First call to xmlSeqToMapParser() doesn't pass xml.StartElement - the map key. - // So when the loop is first entered, the first token is the root tag along - // with any attributes, which we process here. - // - // Subsequent calls to xmlSeqToMapParser() will pass in tag+attributes for - // processing before getting the next token which is the element value, - // which is done above. - if skey == "" { - return xmlSeqToMapParser(tt.Name.Local, tt.Attr, p, r) - } - - // If not initializing the map, parse the element. - // len(nn) == 1, necessarily - it is just an 'n'. - nn, err := xmlSeqToMapParser(tt.Name.Local, tt.Attr, p, r) - if err != nil { - return nil, err - } - - // The nn map[string]interface{} value is a na[nn_key] value. - // We need to see if nn_key already exists - means we're parsing a list. - // This may require converting na[nn_key] value into []interface{} type. - // First, extract the key:val for the map - it's a singleton. - var key string - var val interface{} - for key, val = range nn { - break - } - - // add "#seq" k:v pair - - // Sequence number included even in list elements - this should allow us - // to properly resequence even something goofy like: - // item 1 - // item 2 - // item 3 - // where all the "list" subelements are decoded into an array. - switch val.(type) { - case map[string]interface{}: - val.(map[string]interface{})["#seq"] = seq - seq++ - case interface{}: // a non-nil simple element: string, float64, bool - v := map[string]interface{}{"#text": val, "#seq": seq} - seq++ - val = v - } - - // 'na' holding sub-elements of n. - // See if 'key' already exists. - // If 'key' exists, then this is a list, if not just add key:val to na. - if v, ok := na[key]; ok { - var a []interface{} - switch v.(type) { - case []interface{}: - a = v.([]interface{}) - default: // anything else - note: v.(type) != nil - a = []interface{}{v} - } - a = append(a, val) - na[key] = a - } else { - na[key] = val // save it as a singleton - } - case xml.EndElement: - // len(n) > 0 if this is a simple element w/o xml.Attrs - see xml.CharData case. - if len(n) == 0 { - // If len(na)==0 we have an empty element == ""; - // it has no xml.Attr nor xml.CharData. - // Empty element content will be map["etag"]map["#text"]"" - // after #seq injection - map["etag"]map["#seq"]seq - after return. - if len(na) > 0 { - n[skey] = na - } else { - n[skey] = "" // empty element - } - } - return n, nil - case xml.CharData: - // clean up possible noise - tt := strings.Trim(string(t.(xml.CharData)), "\t\r\b\n ") - if skey == "" { - // per Adrian (http://www.adrianlungu.com/) catch stray text - // in decoder stream - - // https://github.com/clbanning/mxj/pull/14#issuecomment-182816374 - // NOTE: CharSetReader must be set to non-UTF-8 CharSet or you'll get - // a p.Token() decoding error when the BOM is UTF-16 or UTF-32. - continue - } - if len(tt) > 0 { - // every simple element is a #text and has #seq associated with it - na["#text"] = cast(tt, r) - na["#seq"] = seq - seq++ - } - case xml.Comment: - if n == nil { // no root 'key' - n = map[string]interface{}{"#comment": string(t.(xml.Comment))} - return n, NoRoot - } - cm := make(map[string]interface{}, 2) - cm["#text"] = string(t.(xml.Comment)) - cm["#seq"] = seq - seq++ - na["#comment"] = cm - case xml.Directive: - if n == nil { // no root 'key' - n = map[string]interface{}{"#directive": string(t.(xml.Directive))} - return n, NoRoot - } - dm := make(map[string]interface{}, 2) - dm["#text"] = string(t.(xml.Directive)) - dm["#seq"] = seq - seq++ - na["#directive"] = dm - case xml.ProcInst: - if n == nil { - na = map[string]interface{}{"#target": t.(xml.ProcInst).Target, "#inst": string(t.(xml.ProcInst).Inst)} - n = map[string]interface{}{"#procinst": na} - return n, NoRoot - } - pm := make(map[string]interface{}, 3) - pm["#target"] = t.(xml.ProcInst).Target - pm["#inst"] = string(t.(xml.ProcInst).Inst) - pm["#seq"] = seq - seq++ - na["#procinst"] = pm - default: - // noop - shouldn't ever get here, now, since we handle all token types - } - } -} - -// ------------------ END: NewMapXml & NewMapXmlReader ------------------------- - -// --------------------- mv.XmlSeq & mv.XmlSeqWriter ------------------------- - -// This should ONLY be used on Map values that were decoded using NewMapXmlSeq() & co. -// -// Encode a Map as XML with elements sorted on #seq. The companion of NewMapXmlSeq(). -// The following rules apply. -// - The key label "#text" is treated as the value for a simple element with attributes. -// - The "#seq" key is used to seqence the subelements or attributes but is ignored for writing. -// - The "#attr" map key identifies the map of attribute map[string]interface{} values with "#text" key. -// - The "#comment" map key identifies a comment in the value "#text" map entry - . -// - The "#directive" map key identifies a directive in the value "#text" map entry - . -// - The "#procinst" map key identifies a process instruction in the value "#target" and "#inst" -// map entries - . -// - Value type encoding: -// > string, bool, float64, int, int32, int64, float32: per "%v" formating -// > []bool, []uint8: by casting to string -// > structures, etc.: handed to xml.Marshal() - if there is an error, the element -// value is "UNKNOWN" -// - Elements with only attribute values or are null are terminated using "/>" unless XmlGoEmptyElemSystax() called. -// - If len(mv) == 1 and no rootTag is provided, then the map key is used as the root tag, possible. -// Thus, `{ "key":"value" }` encodes as "value". -func (mv Map) XmlSeq(rootTag ...string) ([]byte, error) { - m := map[string]interface{}(mv) - var err error - s := new(string) - p := new(pretty) // just a stub - - if len(m) == 1 && len(rootTag) == 0 { - for key, value := range m { - // if it an array, see if all values are map[string]interface{} - // we force a new root tag if we'll end up with no key:value in the list - // so: key:[string_val, bool:true] --> string_valtrue - switch value.(type) { - case []interface{}: - for _, v := range value.([]interface{}) { - switch v.(type) { - case map[string]interface{}: // noop - default: // anything else - err = mapToXmlSeqIndent(false, s, DefaultRootTag, m, p) - goto done - } - } - } - err = mapToXmlSeqIndent(false, s, key, value, p) - } - } else if len(rootTag) == 1 { - err = mapToXmlSeqIndent(false, s, rootTag[0], m, p) - } else { - err = mapToXmlSeqIndent(false, s, DefaultRootTag, m, p) - } -done: - return []byte(*s), err -} - -// The following implementation is provided only for symmetry with NewMapXmlReader[Raw] -// The names will also provide a key for the number of return arguments. - -// This should ONLY be used on Map values that were decoded using NewMapXmlSeq() & co. -// -// Writes the Map as XML on the Writer. -// See XmlSeq() for encoding rules. -func (mv Map) XmlSeqWriter(xmlWriter io.Writer, rootTag ...string) error { - x, err := mv.XmlSeq(rootTag...) - if err != nil { - return err - } - - _, err = xmlWriter.Write(x) - return err -} - -// This should ONLY be used on Map values that were decoded using NewMapXmlSeq() & co. -// -// Writes the Map as XML on the Writer. []byte is the raw XML that was written. -// See XmlSeq() for encoding rules. -func (mv Map) XmlSeqWriterRaw(xmlWriter io.Writer, rootTag ...string) ([]byte, error) { - x, err := mv.XmlSeq(rootTag...) - if err != nil { - return x, err - } - - _, err = xmlWriter.Write(x) - return x, err -} - -// This should ONLY be used on Map values that were decoded using NewMapXmlSeq() & co. -// -// Writes the Map as pretty XML on the Writer. -// See Xml() for encoding rules. -func (mv Map) XmlSeqIndentWriter(xmlWriter io.Writer, prefix, indent string, rootTag ...string) error { - x, err := mv.XmlSeqIndent(prefix, indent, rootTag...) - if err != nil { - return err - } - - _, err = xmlWriter.Write(x) - return err -} - -// This should ONLY be used on Map values that were decoded using NewMapXmlSeq() & co. -// -// Writes the Map as pretty XML on the Writer. []byte is the raw XML that was written. -// See XmlSeq() for encoding rules. -func (mv Map) XmlSeqIndentWriterRaw(xmlWriter io.Writer, prefix, indent string, rootTag ...string) ([]byte, error) { - x, err := mv.XmlSeqIndent(prefix, indent, rootTag...) - if err != nil { - return x, err - } - - _, err = xmlWriter.Write(x) - return x, err -} - -// -------------------- END: mv.Xml & mv.XmlWriter ------------------------------- - -// ---------------------- XmlSeqIndent ---------------------------- - -// This should ONLY be used on Map values that were decoded using NewMapXmlSeq() & co. -// -// Encode a map[string]interface{} as a pretty XML string. -// See mv.XmlSeq() for encoding rules. -func (mv Map) XmlSeqIndent(prefix, indent string, rootTag ...string) ([]byte, error) { - m := map[string]interface{}(mv) - - var err error - s := new(string) - p := new(pretty) - p.indent = indent - p.padding = prefix - - if len(m) == 1 && len(rootTag) == 0 { - // this can extract the key for the single map element - // use it if it isn't a key for a list - for key, value := range m { - if _, ok := value.([]interface{}); ok { - err = mapToXmlSeqIndent(true, s, DefaultRootTag, m, p) - } else { - err = mapToXmlSeqIndent(true, s, key, value, p) - } - } - } else if len(rootTag) == 1 { - err = mapToXmlSeqIndent(true, s, rootTag[0], m, p) - } else { - err = mapToXmlSeqIndent(true, s, DefaultRootTag, m, p) - } - return []byte(*s), err -} - -// where the work actually happens -// returns an error if an attribute is not atomic -func mapToXmlSeqIndent(doIndent bool, s *string, key string, value interface{}, pp *pretty) error { - var endTag bool - var isSimple bool - var noEndTag bool - var elen int - var ss string - p := &pretty{pp.indent, pp.cnt, pp.padding, pp.mapDepth, pp.start} - - switch value.(type) { - case map[string]interface{}, []byte, string, float64, bool, int, int32, int64, float32: - if doIndent { - *s += p.padding - } - if key != "#comment" && key != "#directive" && key != "#procinst" { - *s += `<` + key - } - } - switch value.(type) { - case map[string]interface{}: - val := value.(map[string]interface{}) - - if key == "#comment" { - *s += `` - noEndTag = true - break - } - - if key == "#directive" { - *s += `` - noEndTag = true - break - } - - if key == "#procinst" { - *s += `` - noEndTag = true - break - } - - haveAttrs := false - // process attributes first - if v, ok := val["#attr"].(map[string]interface{}); ok { - // First, unroll the map[string]interface{} into a []keyval array. - // Then sequence it. - kv := make([]keyval, len(v)) - n := 0 - for ak, av := range v { - kv[n] = keyval{ak, av} - n++ - } - sort.Sort(elemListSeq(kv)) - // Now encode the attributes in original decoding sequence, using keyval array. - for _, a := range kv { - vv := a.v.(map[string]interface{}) - switch vv["#text"].(type) { - case string: - if xmlEscapeChars { - ss = escapeChars(vv["#text"].(string)) - } else { - ss = vv["#text"].(string) - } - *s += ` ` + a.k + `="` + ss + `"` - case float64, bool, int, int32, int64, float32: - *s += ` ` + a.k + `="` + fmt.Sprintf("%v", vv["#text"]) + `"` - case []byte: - if xmlEscapeChars { - ss = escapeChars(string(vv["#text"].([]byte))) - } else { - ss = string(vv["#text"].([]byte)) - } - *s += ` ` + a.k + `="` + ss + `"` - default: - return fmt.Errorf("invalid attribute value for: %s", a.k) - } - } - haveAttrs = true - } - - // simple element? - // every map value has, at least, "#seq" and, perhaps, "#text" and/or "#attr" - _, seqOK := val["#seq"] // have key - if v, ok := val["#text"]; ok && ((len(val) == 3 && haveAttrs) || (len(val) == 2 && !haveAttrs)) && seqOK { - if stmp, ok := v.(string); ok && stmp != "" { - if xmlEscapeChars { - stmp = escapeChars(stmp) - } - *s += ">" + stmp - endTag = true - elen = 1 - } - isSimple = true - break - } else if !ok && ((len(val) == 2 && haveAttrs) || (len(val) == 1 && !haveAttrs)) && seqOK { - // here no #text but have #seq or #seq+#attr - endTag = false - break - } - - // we now need to sequence everything except attributes - // 'kv' will hold everything that needs to be written - kv := make([]keyval, 0) - for k, v := range val { - if k == "#attr" { // already processed - continue - } - if k == "#seq" { // ignore - just for sorting - continue - } - switch v.(type) { - case []interface{}: - // unwind the array as separate entries - for _, vv := range v.([]interface{}) { - kv = append(kv, keyval{k, vv}) - } - default: - kv = append(kv, keyval{k, v}) - } - } - - // close tag with possible attributes - *s += ">" - if doIndent { - *s += "\n" - } - // something more complex - p.mapDepth++ - // PrintElemListSeq(elemListSeq(kv)) - sort.Sort(elemListSeq(kv)) - // PrintElemListSeq(elemListSeq(kv)) - i := 0 - for _, v := range kv { - switch v.v.(type) { - case []interface{}: - default: - if i == 0 && doIndent { - p.Indent() - } - } - i++ - mapToXmlSeqIndent(doIndent, s, v.k, v.v, p) - switch v.v.(type) { - case []interface{}: // handled in []interface{} case - default: - if doIndent { - p.Outdent() - } - } - i-- - } - p.mapDepth-- - endTag = true - elen = 1 // we do have some content other than attrs - case []interface{}: - for _, v := range value.([]interface{}) { - if doIndent { - p.Indent() - } - mapToXmlSeqIndent(doIndent, s, key, v, p) - if doIndent { - p.Outdent() - } - } - return nil - case nil: - // terminate the tag - *s += "<" + key - break - default: // handle anything - even goofy stuff - elen = 0 - switch value.(type) { - case string: - if xmlEscapeChars { - ss = escapeChars(value.(string)) - } else { - ss = value.(string) - } - elen = len(ss) - if elen > 0 { - *s += ">" + ss - } - case float64, bool, int, int32, int64, float32: - v := fmt.Sprintf("%v", value) - elen = len(v) - if elen > 0 { - *s += ">" + v - } - case []byte: // NOTE: byte is just an alias for uint8 - // similar to how xml.Marshal handles []byte structure members - if xmlEscapeChars { - ss = escapeChars(string(value.([]byte))) - } else { - ss = string(value.([]byte)) - } - elen = len(ss) - if elen > 0 { - *s += ">" + ss - } - default: - var v []byte - var err error - if doIndent { - v, err = xml.MarshalIndent(value, p.padding, p.indent) - } else { - v, err = xml.Marshal(value) - } - if err != nil { - *s += ">UNKNOWN" - } else { - elen = len(v) - if elen > 0 { - *s += string(v) - } - } - } - isSimple = true - endTag = true - } - if endTag && !noEndTag { - if doIndent { - if !isSimple { - *s += p.padding - } - } - switch value.(type) { - case map[string]interface{}, []byte, string, float64, bool, int, int32, int64, float32: - if elen > 0 || useGoXmlEmptyElemSyntax { - if elen == 0 { - *s += ">" - } - *s += `" - } else { - *s += `/>` - } - } - } else if !noEndTag { - if useGoXmlEmptyElemSyntax { - *s += ">" - } else { - *s += "/>" - } - } - if doIndent { - if p.cnt > p.start { - *s += "\n" - } - p.Outdent() - } - - return nil -} - -// the element sort implementation - -type keyval struct { - k string - v interface{} -} -type elemListSeq []keyval - -func (e elemListSeq) Len() int { - return len(e) -} - -func (e elemListSeq) Swap(i, j int) { - e[i], e[j] = e[j], e[i] -} - -func (e elemListSeq) Less(i, j int) bool { - var iseq, jseq int - var ok bool - if iseq, ok = e[i].v.(map[string]interface{})["#seq"].(int); !ok { - iseq = 9999999 - } - - if jseq, ok = e[j].v.(map[string]interface{})["#seq"].(int); !ok { - jseq = 9999999 - } - - if iseq > jseq { - return false - } - return true -} - -func PrintElemListSeq(e elemListSeq) { - for n, v := range e { - fmt.Printf("%d: %v\n", n, v) - } -} diff --git a/vendor/github.com/clbanning/mxj/xmlseq_test.go b/vendor/github.com/clbanning/mxj/xmlseq_test.go deleted file mode 100644 index 03ea82cd..00000000 --- a/vendor/github.com/clbanning/mxj/xmlseq_test.go +++ /dev/null @@ -1,66 +0,0 @@ -package mxj - -import ( - "fmt" - "io" - "testing" -) - -func TestXmlSeqHeader(t *testing.T) { - fmt.Println("\n---------------- xmlseq_test.go ...\n") -} - -func TestNewMapXmlSeq(t *testing.T) { - x := []byte(` - - - William T. Gaddis - Gaddis is one of the most influential but little know authors in America. - The Recognitions - - One of the great seminal American novels of the 20th century. - Without it Thomas Pynchon probably wouldn't have written Gravity's Rainbow. - - - Austin Tappan Wright - Islandia - An example of earlier 20th century American utopian fiction. - - - John Hawkes - The Beetle Leg - - A lyrical novel about the construction of Ft. Peck Dam in Montana. - - - - - T.E. - Porter - - King's Day - A magical novella. - - -`) - - m, err := NewMapXmlSeq(x) - if err != nil && err != io.EOF { - t.Fatal("err:", err.Error()) - } - fmt.Println("NewMapXmlSeq, x:\n", string(x)) - // fmt.Println("NewMapXmlSeq, m:\n", m) - fmt.Println("NewMapXmlSeq, s:\n", m.StringIndent()) - - b, err := m.XmlIndent("", " ") - if err != nil { - t.Fatal("err:", err) - } - fmt.Println("NewMapXmlSeq, mv.XmlIndent():\n", string(b)) - - b, err = m.XmlSeqIndent("", " ") - if err != nil { - t.Fatal("err:", err) - } - fmt.Println("NewMapXmlSeq, mv.XmlSeqIndent():\n", string(b)) -} diff --git a/vendor/github.com/davecgh/go-spew/LICENSE b/vendor/github.com/davecgh/go-spew/LICENSE deleted file mode 100644 index 2a7cfd2b..00000000 --- a/vendor/github.com/davecgh/go-spew/LICENSE +++ /dev/null @@ -1,13 +0,0 @@ -Copyright (c) 2012-2013 Dave Collins - -Permission to use, copy, modify, and distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/vendor/github.com/davecgh/go-spew/spew/bypass.go b/vendor/github.com/davecgh/go-spew/spew/bypass.go deleted file mode 100644 index 565bf589..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/bypass.go +++ /dev/null @@ -1,151 +0,0 @@ -// Copyright (c) 2015 Dave Collins -// -// Permission to use, copy, modify, and distribute this software for any -// purpose with or without fee is hereby granted, provided that the above -// copyright notice and this permission notice appear in all copies. -// -// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -// NOTE: Due to the following build constraints, this file will only be compiled -// when the code is not running on Google App Engine and "-tags disableunsafe" -// is not added to the go build command line. -// +build !appengine,!disableunsafe - -package spew - -import ( - "reflect" - "unsafe" -) - -const ( - // UnsafeDisabled is a build-time constant which specifies whether or - // not access to the unsafe package is available. - UnsafeDisabled = false - - // ptrSize is the size of a pointer on the current arch. - ptrSize = unsafe.Sizeof((*byte)(nil)) -) - -var ( - // offsetPtr, offsetScalar, and offsetFlag are the offsets for the - // internal reflect.Value fields. These values are valid before golang - // commit ecccf07e7f9d which changed the format. The are also valid - // after commit 82f48826c6c7 which changed the format again to mirror - // the original format. Code in the init function updates these offsets - // as necessary. - offsetPtr = uintptr(ptrSize) - offsetScalar = uintptr(0) - offsetFlag = uintptr(ptrSize * 2) - - // flagKindWidth and flagKindShift indicate various bits that the - // reflect package uses internally to track kind information. - // - // flagRO indicates whether or not the value field of a reflect.Value is - // read-only. - // - // flagIndir indicates whether the value field of a reflect.Value is - // the actual data or a pointer to the data. - // - // These values are valid before golang commit 90a7c3c86944 which - // changed their positions. Code in the init function updates these - // flags as necessary. - flagKindWidth = uintptr(5) - flagKindShift = uintptr(flagKindWidth - 1) - flagRO = uintptr(1 << 0) - flagIndir = uintptr(1 << 1) -) - -func init() { - // Older versions of reflect.Value stored small integers directly in the - // ptr field (which is named val in the older versions). Versions - // between commits ecccf07e7f9d and 82f48826c6c7 added a new field named - // scalar for this purpose which unfortunately came before the flag - // field, so the offset of the flag field is different for those - // versions. - // - // This code constructs a new reflect.Value from a known small integer - // and checks if the size of the reflect.Value struct indicates it has - // the scalar field. When it does, the offsets are updated accordingly. - vv := reflect.ValueOf(0xf00) - if unsafe.Sizeof(vv) == (ptrSize * 4) { - offsetScalar = ptrSize * 2 - offsetFlag = ptrSize * 3 - } - - // Commit 90a7c3c86944 changed the flag positions such that the low - // order bits are the kind. This code extracts the kind from the flags - // field and ensures it's the correct type. When it's not, the flag - // order has been changed to the newer format, so the flags are updated - // accordingly. - upf := unsafe.Pointer(uintptr(unsafe.Pointer(&vv)) + offsetFlag) - upfv := *(*uintptr)(upf) - flagKindMask := uintptr((1<>flagKindShift != uintptr(reflect.Int) { - flagKindShift = 0 - flagRO = 1 << 5 - flagIndir = 1 << 6 - - // Commit adf9b30e5594 modified the flags to separate the - // flagRO flag into two bits which specifies whether or not the - // field is embedded. This causes flagIndir to move over a bit - // and means that flagRO is the combination of either of the - // original flagRO bit and the new bit. - // - // This code detects the change by extracting what used to be - // the indirect bit to ensure it's set. When it's not, the flag - // order has been changed to the newer format, so the flags are - // updated accordingly. - if upfv&flagIndir == 0 { - flagRO = 3 << 5 - flagIndir = 1 << 7 - } - } -} - -// unsafeReflectValue converts the passed reflect.Value into a one that bypasses -// the typical safety restrictions preventing access to unaddressable and -// unexported data. It works by digging the raw pointer to the underlying -// value out of the protected value and generating a new unprotected (unsafe) -// reflect.Value to it. -// -// This allows us to check for implementations of the Stringer and error -// interfaces to be used for pretty printing ordinarily unaddressable and -// inaccessible values such as unexported struct fields. -func unsafeReflectValue(v reflect.Value) (rv reflect.Value) { - indirects := 1 - vt := v.Type() - upv := unsafe.Pointer(uintptr(unsafe.Pointer(&v)) + offsetPtr) - rvf := *(*uintptr)(unsafe.Pointer(uintptr(unsafe.Pointer(&v)) + offsetFlag)) - if rvf&flagIndir != 0 { - vt = reflect.PtrTo(v.Type()) - indirects++ - } else if offsetScalar != 0 { - // The value is in the scalar field when it's not one of the - // reference types. - switch vt.Kind() { - case reflect.Uintptr: - case reflect.Chan: - case reflect.Func: - case reflect.Map: - case reflect.Ptr: - case reflect.UnsafePointer: - default: - upv = unsafe.Pointer(uintptr(unsafe.Pointer(&v)) + - offsetScalar) - } - } - - pv := reflect.NewAt(vt, upv) - rv = pv - for i := 0; i < indirects; i++ { - rv = rv.Elem() - } - return rv -} diff --git a/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go b/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go deleted file mode 100644 index 457e4123..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/bypasssafe.go +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright (c) 2015 Dave Collins -// -// Permission to use, copy, modify, and distribute this software for any -// purpose with or without fee is hereby granted, provided that the above -// copyright notice and this permission notice appear in all copies. -// -// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -// NOTE: Due to the following build constraints, this file will only be compiled -// when either the code is running on Google App Engine or "-tags disableunsafe" -// is added to the go build command line. -// +build appengine disableunsafe - -package spew - -import "reflect" - -const ( - // UnsafeDisabled is a build-time constant which specifies whether or - // not access to the unsafe package is available. - UnsafeDisabled = true -) - -// unsafeReflectValue typically converts the passed reflect.Value into a one -// that bypasses the typical safety restrictions preventing access to -// unaddressable and unexported data. However, doing this relies on access to -// the unsafe package. This is a stub version which simply returns the passed -// reflect.Value when the unsafe package is not available. -func unsafeReflectValue(v reflect.Value) reflect.Value { - return v -} diff --git a/vendor/github.com/davecgh/go-spew/spew/common.go b/vendor/github.com/davecgh/go-spew/spew/common.go deleted file mode 100644 index 14f02dc1..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/common.go +++ /dev/null @@ -1,341 +0,0 @@ -/* - * Copyright (c) 2013 Dave Collins - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -package spew - -import ( - "bytes" - "fmt" - "io" - "reflect" - "sort" - "strconv" -) - -// Some constants in the form of bytes to avoid string overhead. This mirrors -// the technique used in the fmt package. -var ( - panicBytes = []byte("(PANIC=") - plusBytes = []byte("+") - iBytes = []byte("i") - trueBytes = []byte("true") - falseBytes = []byte("false") - interfaceBytes = []byte("(interface {})") - commaNewlineBytes = []byte(",\n") - newlineBytes = []byte("\n") - openBraceBytes = []byte("{") - openBraceNewlineBytes = []byte("{\n") - closeBraceBytes = []byte("}") - asteriskBytes = []byte("*") - colonBytes = []byte(":") - colonSpaceBytes = []byte(": ") - openParenBytes = []byte("(") - closeParenBytes = []byte(")") - spaceBytes = []byte(" ") - pointerChainBytes = []byte("->") - nilAngleBytes = []byte("") - maxNewlineBytes = []byte("\n") - maxShortBytes = []byte("") - circularBytes = []byte("") - circularShortBytes = []byte("") - invalidAngleBytes = []byte("") - openBracketBytes = []byte("[") - closeBracketBytes = []byte("]") - percentBytes = []byte("%") - precisionBytes = []byte(".") - openAngleBytes = []byte("<") - closeAngleBytes = []byte(">") - openMapBytes = []byte("map[") - closeMapBytes = []byte("]") - lenEqualsBytes = []byte("len=") - capEqualsBytes = []byte("cap=") -) - -// hexDigits is used to map a decimal value to a hex digit. -var hexDigits = "0123456789abcdef" - -// catchPanic handles any panics that might occur during the handleMethods -// calls. -func catchPanic(w io.Writer, v reflect.Value) { - if err := recover(); err != nil { - w.Write(panicBytes) - fmt.Fprintf(w, "%v", err) - w.Write(closeParenBytes) - } -} - -// handleMethods attempts to call the Error and String methods on the underlying -// type the passed reflect.Value represents and outputes the result to Writer w. -// -// It handles panics in any called methods by catching and displaying the error -// as the formatted value. -func handleMethods(cs *ConfigState, w io.Writer, v reflect.Value) (handled bool) { - // We need an interface to check if the type implements the error or - // Stringer interface. However, the reflect package won't give us an - // interface on certain things like unexported struct fields in order - // to enforce visibility rules. We use unsafe, when it's available, - // to bypass these restrictions since this package does not mutate the - // values. - if !v.CanInterface() { - if UnsafeDisabled { - return false - } - - v = unsafeReflectValue(v) - } - - // Choose whether or not to do error and Stringer interface lookups against - // the base type or a pointer to the base type depending on settings. - // Technically calling one of these methods with a pointer receiver can - // mutate the value, however, types which choose to satisify an error or - // Stringer interface with a pointer receiver should not be mutating their - // state inside these interface methods. - if !cs.DisablePointerMethods && !UnsafeDisabled && !v.CanAddr() { - v = unsafeReflectValue(v) - } - if v.CanAddr() { - v = v.Addr() - } - - // Is it an error or Stringer? - switch iface := v.Interface().(type) { - case error: - defer catchPanic(w, v) - if cs.ContinueOnMethod { - w.Write(openParenBytes) - w.Write([]byte(iface.Error())) - w.Write(closeParenBytes) - w.Write(spaceBytes) - return false - } - - w.Write([]byte(iface.Error())) - return true - - case fmt.Stringer: - defer catchPanic(w, v) - if cs.ContinueOnMethod { - w.Write(openParenBytes) - w.Write([]byte(iface.String())) - w.Write(closeParenBytes) - w.Write(spaceBytes) - return false - } - w.Write([]byte(iface.String())) - return true - } - return false -} - -// printBool outputs a boolean value as true or false to Writer w. -func printBool(w io.Writer, val bool) { - if val { - w.Write(trueBytes) - } else { - w.Write(falseBytes) - } -} - -// printInt outputs a signed integer value to Writer w. -func printInt(w io.Writer, val int64, base int) { - w.Write([]byte(strconv.FormatInt(val, base))) -} - -// printUint outputs an unsigned integer value to Writer w. -func printUint(w io.Writer, val uint64, base int) { - w.Write([]byte(strconv.FormatUint(val, base))) -} - -// printFloat outputs a floating point value using the specified precision, -// which is expected to be 32 or 64bit, to Writer w. -func printFloat(w io.Writer, val float64, precision int) { - w.Write([]byte(strconv.FormatFloat(val, 'g', -1, precision))) -} - -// printComplex outputs a complex value using the specified float precision -// for the real and imaginary parts to Writer w. -func printComplex(w io.Writer, c complex128, floatPrecision int) { - r := real(c) - w.Write(openParenBytes) - w.Write([]byte(strconv.FormatFloat(r, 'g', -1, floatPrecision))) - i := imag(c) - if i >= 0 { - w.Write(plusBytes) - } - w.Write([]byte(strconv.FormatFloat(i, 'g', -1, floatPrecision))) - w.Write(iBytes) - w.Write(closeParenBytes) -} - -// printHexPtr outputs a uintptr formatted as hexidecimal with a leading '0x' -// prefix to Writer w. -func printHexPtr(w io.Writer, p uintptr) { - // Null pointer. - num := uint64(p) - if num == 0 { - w.Write(nilAngleBytes) - return - } - - // Max uint64 is 16 bytes in hex + 2 bytes for '0x' prefix - buf := make([]byte, 18) - - // It's simpler to construct the hex string right to left. - base := uint64(16) - i := len(buf) - 1 - for num >= base { - buf[i] = hexDigits[num%base] - num /= base - i-- - } - buf[i] = hexDigits[num] - - // Add '0x' prefix. - i-- - buf[i] = 'x' - i-- - buf[i] = '0' - - // Strip unused leading bytes. - buf = buf[i:] - w.Write(buf) -} - -// valuesSorter implements sort.Interface to allow a slice of reflect.Value -// elements to be sorted. -type valuesSorter struct { - values []reflect.Value - strings []string // either nil or same len and values - cs *ConfigState -} - -// newValuesSorter initializes a valuesSorter instance, which holds a set of -// surrogate keys on which the data should be sorted. It uses flags in -// ConfigState to decide if and how to populate those surrogate keys. -func newValuesSorter(values []reflect.Value, cs *ConfigState) sort.Interface { - vs := &valuesSorter{values: values, cs: cs} - if canSortSimply(vs.values[0].Kind()) { - return vs - } - if !cs.DisableMethods { - vs.strings = make([]string, len(values)) - for i := range vs.values { - b := bytes.Buffer{} - if !handleMethods(cs, &b, vs.values[i]) { - vs.strings = nil - break - } - vs.strings[i] = b.String() - } - } - if vs.strings == nil && cs.SpewKeys { - vs.strings = make([]string, len(values)) - for i := range vs.values { - vs.strings[i] = Sprintf("%#v", vs.values[i].Interface()) - } - } - return vs -} - -// canSortSimply tests whether a reflect.Kind is a primitive that can be sorted -// directly, or whether it should be considered for sorting by surrogate keys -// (if the ConfigState allows it). -func canSortSimply(kind reflect.Kind) bool { - // This switch parallels valueSortLess, except for the default case. - switch kind { - case reflect.Bool: - return true - case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Int: - return true - case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uint: - return true - case reflect.Float32, reflect.Float64: - return true - case reflect.String: - return true - case reflect.Uintptr: - return true - case reflect.Array: - return true - } - return false -} - -// Len returns the number of values in the slice. It is part of the -// sort.Interface implementation. -func (s *valuesSorter) Len() int { - return len(s.values) -} - -// Swap swaps the values at the passed indices. It is part of the -// sort.Interface implementation. -func (s *valuesSorter) Swap(i, j int) { - s.values[i], s.values[j] = s.values[j], s.values[i] - if s.strings != nil { - s.strings[i], s.strings[j] = s.strings[j], s.strings[i] - } -} - -// valueSortLess returns whether the first value should sort before the second -// value. It is used by valueSorter.Less as part of the sort.Interface -// implementation. -func valueSortLess(a, b reflect.Value) bool { - switch a.Kind() { - case reflect.Bool: - return !a.Bool() && b.Bool() - case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Int: - return a.Int() < b.Int() - case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uint: - return a.Uint() < b.Uint() - case reflect.Float32, reflect.Float64: - return a.Float() < b.Float() - case reflect.String: - return a.String() < b.String() - case reflect.Uintptr: - return a.Uint() < b.Uint() - case reflect.Array: - // Compare the contents of both arrays. - l := a.Len() - for i := 0; i < l; i++ { - av := a.Index(i) - bv := b.Index(i) - if av.Interface() == bv.Interface() { - continue - } - return valueSortLess(av, bv) - } - } - return a.String() < b.String() -} - -// Less returns whether the value at index i should sort before the -// value at index j. It is part of the sort.Interface implementation. -func (s *valuesSorter) Less(i, j int) bool { - if s.strings == nil { - return valueSortLess(s.values[i], s.values[j]) - } - return s.strings[i] < s.strings[j] -} - -// sortValues is a sort function that handles both native types and any type that -// can be converted to error or Stringer. Other inputs are sorted according to -// their Value.String() value to ensure display stability. -func sortValues(values []reflect.Value, cs *ConfigState) { - if len(values) == 0 { - return - } - sort.Sort(newValuesSorter(values, cs)) -} diff --git a/vendor/github.com/davecgh/go-spew/spew/config.go b/vendor/github.com/davecgh/go-spew/spew/config.go deleted file mode 100644 index ee1ab07b..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/config.go +++ /dev/null @@ -1,297 +0,0 @@ -/* - * Copyright (c) 2013 Dave Collins - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -package spew - -import ( - "bytes" - "fmt" - "io" - "os" -) - -// ConfigState houses the configuration options used by spew to format and -// display values. There is a global instance, Config, that is used to control -// all top-level Formatter and Dump functionality. Each ConfigState instance -// provides methods equivalent to the top-level functions. -// -// The zero value for ConfigState provides no indentation. You would typically -// want to set it to a space or a tab. -// -// Alternatively, you can use NewDefaultConfig to get a ConfigState instance -// with default settings. See the documentation of NewDefaultConfig for default -// values. -type ConfigState struct { - // Indent specifies the string to use for each indentation level. The - // global config instance that all top-level functions use set this to a - // single space by default. If you would like more indentation, you might - // set this to a tab with "\t" or perhaps two spaces with " ". - Indent string - - // MaxDepth controls the maximum number of levels to descend into nested - // data structures. The default, 0, means there is no limit. - // - // NOTE: Circular data structures are properly detected, so it is not - // necessary to set this value unless you specifically want to limit deeply - // nested data structures. - MaxDepth int - - // DisableMethods specifies whether or not error and Stringer interfaces are - // invoked for types that implement them. - DisableMethods bool - - // DisablePointerMethods specifies whether or not to check for and invoke - // error and Stringer interfaces on types which only accept a pointer - // receiver when the current type is not a pointer. - // - // NOTE: This might be an unsafe action since calling one of these methods - // with a pointer receiver could technically mutate the value, however, - // in practice, types which choose to satisify an error or Stringer - // interface with a pointer receiver should not be mutating their state - // inside these interface methods. As a result, this option relies on - // access to the unsafe package, so it will not have any effect when - // running in environments without access to the unsafe package such as - // Google App Engine or with the "disableunsafe" build tag specified. - DisablePointerMethods bool - - // ContinueOnMethod specifies whether or not recursion should continue once - // a custom error or Stringer interface is invoked. The default, false, - // means it will print the results of invoking the custom error or Stringer - // interface and return immediately instead of continuing to recurse into - // the internals of the data type. - // - // NOTE: This flag does not have any effect if method invocation is disabled - // via the DisableMethods or DisablePointerMethods options. - ContinueOnMethod bool - - // SortKeys specifies map keys should be sorted before being printed. Use - // this to have a more deterministic, diffable output. Note that only - // native types (bool, int, uint, floats, uintptr and string) and types - // that support the error or Stringer interfaces (if methods are - // enabled) are supported, with other types sorted according to the - // reflect.Value.String() output which guarantees display stability. - SortKeys bool - - // SpewKeys specifies that, as a last resort attempt, map keys should - // be spewed to strings and sorted by those strings. This is only - // considered if SortKeys is true. - SpewKeys bool -} - -// Config is the active configuration of the top-level functions. -// The configuration can be changed by modifying the contents of spew.Config. -var Config = ConfigState{Indent: " "} - -// Errorf is a wrapper for fmt.Errorf that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the formatted string as a value that satisfies error. See NewFormatter -// for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Errorf(format, c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Errorf(format string, a ...interface{}) (err error) { - return fmt.Errorf(format, c.convertArgs(a)...) -} - -// Fprint is a wrapper for fmt.Fprint that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Fprint(w, c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Fprint(w io.Writer, a ...interface{}) (n int, err error) { - return fmt.Fprint(w, c.convertArgs(a)...) -} - -// Fprintf is a wrapper for fmt.Fprintf that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Fprintf(w, format, c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Fprintf(w io.Writer, format string, a ...interface{}) (n int, err error) { - return fmt.Fprintf(w, format, c.convertArgs(a)...) -} - -// Fprintln is a wrapper for fmt.Fprintln that treats each argument as if it -// passed with a Formatter interface returned by c.NewFormatter. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Fprintln(w, c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Fprintln(w io.Writer, a ...interface{}) (n int, err error) { - return fmt.Fprintln(w, c.convertArgs(a)...) -} - -// Print is a wrapper for fmt.Print that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Print(c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Print(a ...interface{}) (n int, err error) { - return fmt.Print(c.convertArgs(a)...) -} - -// Printf is a wrapper for fmt.Printf that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Printf(format, c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Printf(format string, a ...interface{}) (n int, err error) { - return fmt.Printf(format, c.convertArgs(a)...) -} - -// Println is a wrapper for fmt.Println that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Println(c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Println(a ...interface{}) (n int, err error) { - return fmt.Println(c.convertArgs(a)...) -} - -// Sprint is a wrapper for fmt.Sprint that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the resulting string. See NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Sprint(c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Sprint(a ...interface{}) string { - return fmt.Sprint(c.convertArgs(a)...) -} - -// Sprintf is a wrapper for fmt.Sprintf that treats each argument as if it were -// passed with a Formatter interface returned by c.NewFormatter. It returns -// the resulting string. See NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Sprintf(format, c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Sprintf(format string, a ...interface{}) string { - return fmt.Sprintf(format, c.convertArgs(a)...) -} - -// Sprintln is a wrapper for fmt.Sprintln that treats each argument as if it -// were passed with a Formatter interface returned by c.NewFormatter. It -// returns the resulting string. See NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Sprintln(c.NewFormatter(a), c.NewFormatter(b)) -func (c *ConfigState) Sprintln(a ...interface{}) string { - return fmt.Sprintln(c.convertArgs(a)...) -} - -/* -NewFormatter returns a custom formatter that satisfies the fmt.Formatter -interface. As a result, it integrates cleanly with standard fmt package -printing functions. The formatter is useful for inline printing of smaller data -types similar to the standard %v format specifier. - -The custom formatter only responds to the %v (most compact), %+v (adds pointer -addresses), %#v (adds types), and %#+v (adds types and pointer addresses) verb -combinations. Any other verbs such as %x and %q will be sent to the the -standard fmt package for formatting. In addition, the custom formatter ignores -the width and precision arguments (however they will still work on the format -specifiers not handled by the custom formatter). - -Typically this function shouldn't be called directly. It is much easier to make -use of the custom formatter by calling one of the convenience functions such as -c.Printf, c.Println, or c.Printf. -*/ -func (c *ConfigState) NewFormatter(v interface{}) fmt.Formatter { - return newFormatter(c, v) -} - -// Fdump formats and displays the passed arguments to io.Writer w. It formats -// exactly the same as Dump. -func (c *ConfigState) Fdump(w io.Writer, a ...interface{}) { - fdump(c, w, a...) -} - -/* -Dump displays the passed parameters to standard out with newlines, customizable -indentation, and additional debug information such as complete types and all -pointer addresses used to indirect to the final value. It provides the -following features over the built-in printing facilities provided by the fmt -package: - - * Pointers are dereferenced and followed - * Circular data structures are detected and handled properly - * Custom Stringer/error interfaces are optionally invoked, including - on unexported types - * Custom types which only implement the Stringer/error interfaces via - a pointer receiver are optionally invoked when passing non-pointer - variables - * Byte arrays and slices are dumped like the hexdump -C command which - includes offsets, byte values in hex, and ASCII output - -The configuration options are controlled by modifying the public members -of c. See ConfigState for options documentation. - -See Fdump if you would prefer dumping to an arbitrary io.Writer or Sdump to -get the formatted result as a string. -*/ -func (c *ConfigState) Dump(a ...interface{}) { - fdump(c, os.Stdout, a...) -} - -// Sdump returns a string with the passed arguments formatted exactly the same -// as Dump. -func (c *ConfigState) Sdump(a ...interface{}) string { - var buf bytes.Buffer - fdump(c, &buf, a...) - return buf.String() -} - -// convertArgs accepts a slice of arguments and returns a slice of the same -// length with each argument converted to a spew Formatter interface using -// the ConfigState associated with s. -func (c *ConfigState) convertArgs(args []interface{}) (formatters []interface{}) { - formatters = make([]interface{}, len(args)) - for index, arg := range args { - formatters[index] = newFormatter(c, arg) - } - return formatters -} - -// NewDefaultConfig returns a ConfigState with the following default settings. -// -// Indent: " " -// MaxDepth: 0 -// DisableMethods: false -// DisablePointerMethods: false -// ContinueOnMethod: false -// SortKeys: false -func NewDefaultConfig() *ConfigState { - return &ConfigState{Indent: " "} -} diff --git a/vendor/github.com/davecgh/go-spew/spew/doc.go b/vendor/github.com/davecgh/go-spew/spew/doc.go deleted file mode 100644 index 5be0c406..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/doc.go +++ /dev/null @@ -1,202 +0,0 @@ -/* - * Copyright (c) 2013 Dave Collins - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -/* -Package spew implements a deep pretty printer for Go data structures to aid in -debugging. - -A quick overview of the additional features spew provides over the built-in -printing facilities for Go data types are as follows: - - * Pointers are dereferenced and followed - * Circular data structures are detected and handled properly - * Custom Stringer/error interfaces are optionally invoked, including - on unexported types - * Custom types which only implement the Stringer/error interfaces via - a pointer receiver are optionally invoked when passing non-pointer - variables - * Byte arrays and slices are dumped like the hexdump -C command which - includes offsets, byte values in hex, and ASCII output (only when using - Dump style) - -There are two different approaches spew allows for dumping Go data structures: - - * Dump style which prints with newlines, customizable indentation, - and additional debug information such as types and all pointer addresses - used to indirect to the final value - * A custom Formatter interface that integrates cleanly with the standard fmt - package and replaces %v, %+v, %#v, and %#+v to provide inline printing - similar to the default %v while providing the additional functionality - outlined above and passing unsupported format verbs such as %x and %q - along to fmt - -Quick Start - -This section demonstrates how to quickly get started with spew. See the -sections below for further details on formatting and configuration options. - -To dump a variable with full newlines, indentation, type, and pointer -information use Dump, Fdump, or Sdump: - spew.Dump(myVar1, myVar2, ...) - spew.Fdump(someWriter, myVar1, myVar2, ...) - str := spew.Sdump(myVar1, myVar2, ...) - -Alternatively, if you would prefer to use format strings with a compacted inline -printing style, use the convenience wrappers Printf, Fprintf, etc with -%v (most compact), %+v (adds pointer addresses), %#v (adds types), or -%#+v (adds types and pointer addresses): - spew.Printf("myVar1: %v -- myVar2: %+v", myVar1, myVar2) - spew.Printf("myVar3: %#v -- myVar4: %#+v", myVar3, myVar4) - spew.Fprintf(someWriter, "myVar1: %v -- myVar2: %+v", myVar1, myVar2) - spew.Fprintf(someWriter, "myVar3: %#v -- myVar4: %#+v", myVar3, myVar4) - -Configuration Options - -Configuration of spew is handled by fields in the ConfigState type. For -convenience, all of the top-level functions use a global state available -via the spew.Config global. - -It is also possible to create a ConfigState instance that provides methods -equivalent to the top-level functions. This allows concurrent configuration -options. See the ConfigState documentation for more details. - -The following configuration options are available: - * Indent - String to use for each indentation level for Dump functions. - It is a single space by default. A popular alternative is "\t". - - * MaxDepth - Maximum number of levels to descend into nested data structures. - There is no limit by default. - - * DisableMethods - Disables invocation of error and Stringer interface methods. - Method invocation is enabled by default. - - * DisablePointerMethods - Disables invocation of error and Stringer interface methods on types - which only accept pointer receivers from non-pointer variables. - Pointer method invocation is enabled by default. - - * ContinueOnMethod - Enables recursion into types after invoking error and Stringer interface - methods. Recursion after method invocation is disabled by default. - - * SortKeys - Specifies map keys should be sorted before being printed. Use - this to have a more deterministic, diffable output. Note that - only native types (bool, int, uint, floats, uintptr and string) - and types which implement error or Stringer interfaces are - supported with other types sorted according to the - reflect.Value.String() output which guarantees display - stability. Natural map order is used by default. - - * SpewKeys - Specifies that, as a last resort attempt, map keys should be - spewed to strings and sorted by those strings. This is only - considered if SortKeys is true. - -Dump Usage - -Simply call spew.Dump with a list of variables you want to dump: - - spew.Dump(myVar1, myVar2, ...) - -You may also call spew.Fdump if you would prefer to output to an arbitrary -io.Writer. For example, to dump to standard error: - - spew.Fdump(os.Stderr, myVar1, myVar2, ...) - -A third option is to call spew.Sdump to get the formatted output as a string: - - str := spew.Sdump(myVar1, myVar2, ...) - -Sample Dump Output - -See the Dump example for details on the setup of the types and variables being -shown here. - - (main.Foo) { - unexportedField: (*main.Bar)(0xf84002e210)({ - flag: (main.Flag) flagTwo, - data: (uintptr) - }), - ExportedField: (map[interface {}]interface {}) (len=1) { - (string) (len=3) "one": (bool) true - } - } - -Byte (and uint8) arrays and slices are displayed uniquely like the hexdump -C -command as shown. - ([]uint8) (len=32 cap=32) { - 00000000 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 |............... | - 00000010 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 |!"#$%&'()*+,-./0| - 00000020 31 32 |12| - } - -Custom Formatter - -Spew provides a custom formatter that implements the fmt.Formatter interface -so that it integrates cleanly with standard fmt package printing functions. The -formatter is useful for inline printing of smaller data types similar to the -standard %v format specifier. - -The custom formatter only responds to the %v (most compact), %+v (adds pointer -addresses), %#v (adds types), or %#+v (adds types and pointer addresses) verb -combinations. Any other verbs such as %x and %q will be sent to the the -standard fmt package for formatting. In addition, the custom formatter ignores -the width and precision arguments (however they will still work on the format -specifiers not handled by the custom formatter). - -Custom Formatter Usage - -The simplest way to make use of the spew custom formatter is to call one of the -convenience functions such as spew.Printf, spew.Println, or spew.Printf. The -functions have syntax you are most likely already familiar with: - - spew.Printf("myVar1: %v -- myVar2: %+v", myVar1, myVar2) - spew.Printf("myVar3: %#v -- myVar4: %#+v", myVar3, myVar4) - spew.Println(myVar, myVar2) - spew.Fprintf(os.Stderr, "myVar1: %v -- myVar2: %+v", myVar1, myVar2) - spew.Fprintf(os.Stderr, "myVar3: %#v -- myVar4: %#+v", myVar3, myVar4) - -See the Index for the full list convenience functions. - -Sample Formatter Output - -Double pointer to a uint8: - %v: <**>5 - %+v: <**>(0xf8400420d0->0xf8400420c8)5 - %#v: (**uint8)5 - %#+v: (**uint8)(0xf8400420d0->0xf8400420c8)5 - -Pointer to circular struct with a uint8 field and a pointer to itself: - %v: <*>{1 <*>} - %+v: <*>(0xf84003e260){ui8:1 c:<*>(0xf84003e260)} - %#v: (*main.circular){ui8:(uint8)1 c:(*main.circular)} - %#+v: (*main.circular)(0xf84003e260){ui8:(uint8)1 c:(*main.circular)(0xf84003e260)} - -See the Printf example for details on the setup of variables being shown -here. - -Errors - -Since it is possible for custom Stringer/error interfaces to panic, spew -detects them and handles them internally by printing the panic information -inline with the output. Since spew is intended to provide deep pretty printing -capabilities on structures, it intentionally does not return any errors. -*/ -package spew diff --git a/vendor/github.com/davecgh/go-spew/spew/dump.go b/vendor/github.com/davecgh/go-spew/spew/dump.go deleted file mode 100644 index a0ff95e2..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/dump.go +++ /dev/null @@ -1,509 +0,0 @@ -/* - * Copyright (c) 2013 Dave Collins - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -package spew - -import ( - "bytes" - "encoding/hex" - "fmt" - "io" - "os" - "reflect" - "regexp" - "strconv" - "strings" -) - -var ( - // uint8Type is a reflect.Type representing a uint8. It is used to - // convert cgo types to uint8 slices for hexdumping. - uint8Type = reflect.TypeOf(uint8(0)) - - // cCharRE is a regular expression that matches a cgo char. - // It is used to detect character arrays to hexdump them. - cCharRE = regexp.MustCompile("^.*\\._Ctype_char$") - - // cUnsignedCharRE is a regular expression that matches a cgo unsigned - // char. It is used to detect unsigned character arrays to hexdump - // them. - cUnsignedCharRE = regexp.MustCompile("^.*\\._Ctype_unsignedchar$") - - // cUint8tCharRE is a regular expression that matches a cgo uint8_t. - // It is used to detect uint8_t arrays to hexdump them. - cUint8tCharRE = regexp.MustCompile("^.*\\._Ctype_uint8_t$") -) - -// dumpState contains information about the state of a dump operation. -type dumpState struct { - w io.Writer - depth int - pointers map[uintptr]int - ignoreNextType bool - ignoreNextIndent bool - cs *ConfigState -} - -// indent performs indentation according to the depth level and cs.Indent -// option. -func (d *dumpState) indent() { - if d.ignoreNextIndent { - d.ignoreNextIndent = false - return - } - d.w.Write(bytes.Repeat([]byte(d.cs.Indent), d.depth)) -} - -// unpackValue returns values inside of non-nil interfaces when possible. -// This is useful for data types like structs, arrays, slices, and maps which -// can contain varying types packed inside an interface. -func (d *dumpState) unpackValue(v reflect.Value) reflect.Value { - if v.Kind() == reflect.Interface && !v.IsNil() { - v = v.Elem() - } - return v -} - -// dumpPtr handles formatting of pointers by indirecting them as necessary. -func (d *dumpState) dumpPtr(v reflect.Value) { - // Remove pointers at or below the current depth from map used to detect - // circular refs. - for k, depth := range d.pointers { - if depth >= d.depth { - delete(d.pointers, k) - } - } - - // Keep list of all dereferenced pointers to show later. - pointerChain := make([]uintptr, 0) - - // Figure out how many levels of indirection there are by dereferencing - // pointers and unpacking interfaces down the chain while detecting circular - // references. - nilFound := false - cycleFound := false - indirects := 0 - ve := v - for ve.Kind() == reflect.Ptr { - if ve.IsNil() { - nilFound = true - break - } - indirects++ - addr := ve.Pointer() - pointerChain = append(pointerChain, addr) - if pd, ok := d.pointers[addr]; ok && pd < d.depth { - cycleFound = true - indirects-- - break - } - d.pointers[addr] = d.depth - - ve = ve.Elem() - if ve.Kind() == reflect.Interface { - if ve.IsNil() { - nilFound = true - break - } - ve = ve.Elem() - } - } - - // Display type information. - d.w.Write(openParenBytes) - d.w.Write(bytes.Repeat(asteriskBytes, indirects)) - d.w.Write([]byte(ve.Type().String())) - d.w.Write(closeParenBytes) - - // Display pointer information. - if len(pointerChain) > 0 { - d.w.Write(openParenBytes) - for i, addr := range pointerChain { - if i > 0 { - d.w.Write(pointerChainBytes) - } - printHexPtr(d.w, addr) - } - d.w.Write(closeParenBytes) - } - - // Display dereferenced value. - d.w.Write(openParenBytes) - switch { - case nilFound == true: - d.w.Write(nilAngleBytes) - - case cycleFound == true: - d.w.Write(circularBytes) - - default: - d.ignoreNextType = true - d.dump(ve) - } - d.w.Write(closeParenBytes) -} - -// dumpSlice handles formatting of arrays and slices. Byte (uint8 under -// reflection) arrays and slices are dumped in hexdump -C fashion. -func (d *dumpState) dumpSlice(v reflect.Value) { - // Determine whether this type should be hex dumped or not. Also, - // for types which should be hexdumped, try to use the underlying data - // first, then fall back to trying to convert them to a uint8 slice. - var buf []uint8 - doConvert := false - doHexDump := false - numEntries := v.Len() - if numEntries > 0 { - vt := v.Index(0).Type() - vts := vt.String() - switch { - // C types that need to be converted. - case cCharRE.MatchString(vts): - fallthrough - case cUnsignedCharRE.MatchString(vts): - fallthrough - case cUint8tCharRE.MatchString(vts): - doConvert = true - - // Try to use existing uint8 slices and fall back to converting - // and copying if that fails. - case vt.Kind() == reflect.Uint8: - // We need an addressable interface to convert the type - // to a byte slice. However, the reflect package won't - // give us an interface on certain things like - // unexported struct fields in order to enforce - // visibility rules. We use unsafe, when available, to - // bypass these restrictions since this package does not - // mutate the values. - vs := v - if !vs.CanInterface() || !vs.CanAddr() { - vs = unsafeReflectValue(vs) - } - if !UnsafeDisabled { - vs = vs.Slice(0, numEntries) - - // Use the existing uint8 slice if it can be - // type asserted. - iface := vs.Interface() - if slice, ok := iface.([]uint8); ok { - buf = slice - doHexDump = true - break - } - } - - // The underlying data needs to be converted if it can't - // be type asserted to a uint8 slice. - doConvert = true - } - - // Copy and convert the underlying type if needed. - if doConvert && vt.ConvertibleTo(uint8Type) { - // Convert and copy each element into a uint8 byte - // slice. - buf = make([]uint8, numEntries) - for i := 0; i < numEntries; i++ { - vv := v.Index(i) - buf[i] = uint8(vv.Convert(uint8Type).Uint()) - } - doHexDump = true - } - } - - // Hexdump the entire slice as needed. - if doHexDump { - indent := strings.Repeat(d.cs.Indent, d.depth) - str := indent + hex.Dump(buf) - str = strings.Replace(str, "\n", "\n"+indent, -1) - str = strings.TrimRight(str, d.cs.Indent) - d.w.Write([]byte(str)) - return - } - - // Recursively call dump for each item. - for i := 0; i < numEntries; i++ { - d.dump(d.unpackValue(v.Index(i))) - if i < (numEntries - 1) { - d.w.Write(commaNewlineBytes) - } else { - d.w.Write(newlineBytes) - } - } -} - -// dump is the main workhorse for dumping a value. It uses the passed reflect -// value to figure out what kind of object we are dealing with and formats it -// appropriately. It is a recursive function, however circular data structures -// are detected and handled properly. -func (d *dumpState) dump(v reflect.Value) { - // Handle invalid reflect values immediately. - kind := v.Kind() - if kind == reflect.Invalid { - d.w.Write(invalidAngleBytes) - return - } - - // Handle pointers specially. - if kind == reflect.Ptr { - d.indent() - d.dumpPtr(v) - return - } - - // Print type information unless already handled elsewhere. - if !d.ignoreNextType { - d.indent() - d.w.Write(openParenBytes) - d.w.Write([]byte(v.Type().String())) - d.w.Write(closeParenBytes) - d.w.Write(spaceBytes) - } - d.ignoreNextType = false - - // Display length and capacity if the built-in len and cap functions - // work with the value's kind and the len/cap itself is non-zero. - valueLen, valueCap := 0, 0 - switch v.Kind() { - case reflect.Array, reflect.Slice, reflect.Chan: - valueLen, valueCap = v.Len(), v.Cap() - case reflect.Map, reflect.String: - valueLen = v.Len() - } - if valueLen != 0 || valueCap != 0 { - d.w.Write(openParenBytes) - if valueLen != 0 { - d.w.Write(lenEqualsBytes) - printInt(d.w, int64(valueLen), 10) - } - if valueCap != 0 { - if valueLen != 0 { - d.w.Write(spaceBytes) - } - d.w.Write(capEqualsBytes) - printInt(d.w, int64(valueCap), 10) - } - d.w.Write(closeParenBytes) - d.w.Write(spaceBytes) - } - - // Call Stringer/error interfaces if they exist and the handle methods flag - // is enabled - if !d.cs.DisableMethods { - if (kind != reflect.Invalid) && (kind != reflect.Interface) { - if handled := handleMethods(d.cs, d.w, v); handled { - return - } - } - } - - switch kind { - case reflect.Invalid: - // Do nothing. We should never get here since invalid has already - // been handled above. - - case reflect.Bool: - printBool(d.w, v.Bool()) - - case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Int: - printInt(d.w, v.Int(), 10) - - case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uint: - printUint(d.w, v.Uint(), 10) - - case reflect.Float32: - printFloat(d.w, v.Float(), 32) - - case reflect.Float64: - printFloat(d.w, v.Float(), 64) - - case reflect.Complex64: - printComplex(d.w, v.Complex(), 32) - - case reflect.Complex128: - printComplex(d.w, v.Complex(), 64) - - case reflect.Slice: - if v.IsNil() { - d.w.Write(nilAngleBytes) - break - } - fallthrough - - case reflect.Array: - d.w.Write(openBraceNewlineBytes) - d.depth++ - if (d.cs.MaxDepth != 0) && (d.depth > d.cs.MaxDepth) { - d.indent() - d.w.Write(maxNewlineBytes) - } else { - d.dumpSlice(v) - } - d.depth-- - d.indent() - d.w.Write(closeBraceBytes) - - case reflect.String: - d.w.Write([]byte(strconv.Quote(v.String()))) - - case reflect.Interface: - // The only time we should get here is for nil interfaces due to - // unpackValue calls. - if v.IsNil() { - d.w.Write(nilAngleBytes) - } - - case reflect.Ptr: - // Do nothing. We should never get here since pointers have already - // been handled above. - - case reflect.Map: - // nil maps should be indicated as different than empty maps - if v.IsNil() { - d.w.Write(nilAngleBytes) - break - } - - d.w.Write(openBraceNewlineBytes) - d.depth++ - if (d.cs.MaxDepth != 0) && (d.depth > d.cs.MaxDepth) { - d.indent() - d.w.Write(maxNewlineBytes) - } else { - numEntries := v.Len() - keys := v.MapKeys() - if d.cs.SortKeys { - sortValues(keys, d.cs) - } - for i, key := range keys { - d.dump(d.unpackValue(key)) - d.w.Write(colonSpaceBytes) - d.ignoreNextIndent = true - d.dump(d.unpackValue(v.MapIndex(key))) - if i < (numEntries - 1) { - d.w.Write(commaNewlineBytes) - } else { - d.w.Write(newlineBytes) - } - } - } - d.depth-- - d.indent() - d.w.Write(closeBraceBytes) - - case reflect.Struct: - d.w.Write(openBraceNewlineBytes) - d.depth++ - if (d.cs.MaxDepth != 0) && (d.depth > d.cs.MaxDepth) { - d.indent() - d.w.Write(maxNewlineBytes) - } else { - vt := v.Type() - numFields := v.NumField() - for i := 0; i < numFields; i++ { - d.indent() - vtf := vt.Field(i) - d.w.Write([]byte(vtf.Name)) - d.w.Write(colonSpaceBytes) - d.ignoreNextIndent = true - d.dump(d.unpackValue(v.Field(i))) - if i < (numFields - 1) { - d.w.Write(commaNewlineBytes) - } else { - d.w.Write(newlineBytes) - } - } - } - d.depth-- - d.indent() - d.w.Write(closeBraceBytes) - - case reflect.Uintptr: - printHexPtr(d.w, uintptr(v.Uint())) - - case reflect.UnsafePointer, reflect.Chan, reflect.Func: - printHexPtr(d.w, v.Pointer()) - - // There were not any other types at the time this code was written, but - // fall back to letting the default fmt package handle it in case any new - // types are added. - default: - if v.CanInterface() { - fmt.Fprintf(d.w, "%v", v.Interface()) - } else { - fmt.Fprintf(d.w, "%v", v.String()) - } - } -} - -// fdump is a helper function to consolidate the logic from the various public -// methods which take varying writers and config states. -func fdump(cs *ConfigState, w io.Writer, a ...interface{}) { - for _, arg := range a { - if arg == nil { - w.Write(interfaceBytes) - w.Write(spaceBytes) - w.Write(nilAngleBytes) - w.Write(newlineBytes) - continue - } - - d := dumpState{w: w, cs: cs} - d.pointers = make(map[uintptr]int) - d.dump(reflect.ValueOf(arg)) - d.w.Write(newlineBytes) - } -} - -// Fdump formats and displays the passed arguments to io.Writer w. It formats -// exactly the same as Dump. -func Fdump(w io.Writer, a ...interface{}) { - fdump(&Config, w, a...) -} - -// Sdump returns a string with the passed arguments formatted exactly the same -// as Dump. -func Sdump(a ...interface{}) string { - var buf bytes.Buffer - fdump(&Config, &buf, a...) - return buf.String() -} - -/* -Dump displays the passed parameters to standard out with newlines, customizable -indentation, and additional debug information such as complete types and all -pointer addresses used to indirect to the final value. It provides the -following features over the built-in printing facilities provided by the fmt -package: - - * Pointers are dereferenced and followed - * Circular data structures are detected and handled properly - * Custom Stringer/error interfaces are optionally invoked, including - on unexported types - * Custom types which only implement the Stringer/error interfaces via - a pointer receiver are optionally invoked when passing non-pointer - variables - * Byte arrays and slices are dumped like the hexdump -C command which - includes offsets, byte values in hex, and ASCII output - -The configuration options are controlled by an exported package global, -spew.Config. See ConfigState for options documentation. - -See Fdump if you would prefer dumping to an arbitrary io.Writer or Sdump to -get the formatted result as a string. -*/ -func Dump(a ...interface{}) { - fdump(&Config, os.Stdout, a...) -} diff --git a/vendor/github.com/davecgh/go-spew/spew/format.go b/vendor/github.com/davecgh/go-spew/spew/format.go deleted file mode 100644 index ecf3b80e..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/format.go +++ /dev/null @@ -1,419 +0,0 @@ -/* - * Copyright (c) 2013 Dave Collins - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -package spew - -import ( - "bytes" - "fmt" - "reflect" - "strconv" - "strings" -) - -// supportedFlags is a list of all the character flags supported by fmt package. -const supportedFlags = "0-+# " - -// formatState implements the fmt.Formatter interface and contains information -// about the state of a formatting operation. The NewFormatter function can -// be used to get a new Formatter which can be used directly as arguments -// in standard fmt package printing calls. -type formatState struct { - value interface{} - fs fmt.State - depth int - pointers map[uintptr]int - ignoreNextType bool - cs *ConfigState -} - -// buildDefaultFormat recreates the original format string without precision -// and width information to pass in to fmt.Sprintf in the case of an -// unrecognized type. Unless new types are added to the language, this -// function won't ever be called. -func (f *formatState) buildDefaultFormat() (format string) { - buf := bytes.NewBuffer(percentBytes) - - for _, flag := range supportedFlags { - if f.fs.Flag(int(flag)) { - buf.WriteRune(flag) - } - } - - buf.WriteRune('v') - - format = buf.String() - return format -} - -// constructOrigFormat recreates the original format string including precision -// and width information to pass along to the standard fmt package. This allows -// automatic deferral of all format strings this package doesn't support. -func (f *formatState) constructOrigFormat(verb rune) (format string) { - buf := bytes.NewBuffer(percentBytes) - - for _, flag := range supportedFlags { - if f.fs.Flag(int(flag)) { - buf.WriteRune(flag) - } - } - - if width, ok := f.fs.Width(); ok { - buf.WriteString(strconv.Itoa(width)) - } - - if precision, ok := f.fs.Precision(); ok { - buf.Write(precisionBytes) - buf.WriteString(strconv.Itoa(precision)) - } - - buf.WriteRune(verb) - - format = buf.String() - return format -} - -// unpackValue returns values inside of non-nil interfaces when possible and -// ensures that types for values which have been unpacked from an interface -// are displayed when the show types flag is also set. -// This is useful for data types like structs, arrays, slices, and maps which -// can contain varying types packed inside an interface. -func (f *formatState) unpackValue(v reflect.Value) reflect.Value { - if v.Kind() == reflect.Interface { - f.ignoreNextType = false - if !v.IsNil() { - v = v.Elem() - } - } - return v -} - -// formatPtr handles formatting of pointers by indirecting them as necessary. -func (f *formatState) formatPtr(v reflect.Value) { - // Display nil if top level pointer is nil. - showTypes := f.fs.Flag('#') - if v.IsNil() && (!showTypes || f.ignoreNextType) { - f.fs.Write(nilAngleBytes) - return - } - - // Remove pointers at or below the current depth from map used to detect - // circular refs. - for k, depth := range f.pointers { - if depth >= f.depth { - delete(f.pointers, k) - } - } - - // Keep list of all dereferenced pointers to possibly show later. - pointerChain := make([]uintptr, 0) - - // Figure out how many levels of indirection there are by derferencing - // pointers and unpacking interfaces down the chain while detecting circular - // references. - nilFound := false - cycleFound := false - indirects := 0 - ve := v - for ve.Kind() == reflect.Ptr { - if ve.IsNil() { - nilFound = true - break - } - indirects++ - addr := ve.Pointer() - pointerChain = append(pointerChain, addr) - if pd, ok := f.pointers[addr]; ok && pd < f.depth { - cycleFound = true - indirects-- - break - } - f.pointers[addr] = f.depth - - ve = ve.Elem() - if ve.Kind() == reflect.Interface { - if ve.IsNil() { - nilFound = true - break - } - ve = ve.Elem() - } - } - - // Display type or indirection level depending on flags. - if showTypes && !f.ignoreNextType { - f.fs.Write(openParenBytes) - f.fs.Write(bytes.Repeat(asteriskBytes, indirects)) - f.fs.Write([]byte(ve.Type().String())) - f.fs.Write(closeParenBytes) - } else { - if nilFound || cycleFound { - indirects += strings.Count(ve.Type().String(), "*") - } - f.fs.Write(openAngleBytes) - f.fs.Write([]byte(strings.Repeat("*", indirects))) - f.fs.Write(closeAngleBytes) - } - - // Display pointer information depending on flags. - if f.fs.Flag('+') && (len(pointerChain) > 0) { - f.fs.Write(openParenBytes) - for i, addr := range pointerChain { - if i > 0 { - f.fs.Write(pointerChainBytes) - } - printHexPtr(f.fs, addr) - } - f.fs.Write(closeParenBytes) - } - - // Display dereferenced value. - switch { - case nilFound == true: - f.fs.Write(nilAngleBytes) - - case cycleFound == true: - f.fs.Write(circularShortBytes) - - default: - f.ignoreNextType = true - f.format(ve) - } -} - -// format is the main workhorse for providing the Formatter interface. It -// uses the passed reflect value to figure out what kind of object we are -// dealing with and formats it appropriately. It is a recursive function, -// however circular data structures are detected and handled properly. -func (f *formatState) format(v reflect.Value) { - // Handle invalid reflect values immediately. - kind := v.Kind() - if kind == reflect.Invalid { - f.fs.Write(invalidAngleBytes) - return - } - - // Handle pointers specially. - if kind == reflect.Ptr { - f.formatPtr(v) - return - } - - // Print type information unless already handled elsewhere. - if !f.ignoreNextType && f.fs.Flag('#') { - f.fs.Write(openParenBytes) - f.fs.Write([]byte(v.Type().String())) - f.fs.Write(closeParenBytes) - } - f.ignoreNextType = false - - // Call Stringer/error interfaces if they exist and the handle methods - // flag is enabled. - if !f.cs.DisableMethods { - if (kind != reflect.Invalid) && (kind != reflect.Interface) { - if handled := handleMethods(f.cs, f.fs, v); handled { - return - } - } - } - - switch kind { - case reflect.Invalid: - // Do nothing. We should never get here since invalid has already - // been handled above. - - case reflect.Bool: - printBool(f.fs, v.Bool()) - - case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Int: - printInt(f.fs, v.Int(), 10) - - case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uint: - printUint(f.fs, v.Uint(), 10) - - case reflect.Float32: - printFloat(f.fs, v.Float(), 32) - - case reflect.Float64: - printFloat(f.fs, v.Float(), 64) - - case reflect.Complex64: - printComplex(f.fs, v.Complex(), 32) - - case reflect.Complex128: - printComplex(f.fs, v.Complex(), 64) - - case reflect.Slice: - if v.IsNil() { - f.fs.Write(nilAngleBytes) - break - } - fallthrough - - case reflect.Array: - f.fs.Write(openBracketBytes) - f.depth++ - if (f.cs.MaxDepth != 0) && (f.depth > f.cs.MaxDepth) { - f.fs.Write(maxShortBytes) - } else { - numEntries := v.Len() - for i := 0; i < numEntries; i++ { - if i > 0 { - f.fs.Write(spaceBytes) - } - f.ignoreNextType = true - f.format(f.unpackValue(v.Index(i))) - } - } - f.depth-- - f.fs.Write(closeBracketBytes) - - case reflect.String: - f.fs.Write([]byte(v.String())) - - case reflect.Interface: - // The only time we should get here is for nil interfaces due to - // unpackValue calls. - if v.IsNil() { - f.fs.Write(nilAngleBytes) - } - - case reflect.Ptr: - // Do nothing. We should never get here since pointers have already - // been handled above. - - case reflect.Map: - // nil maps should be indicated as different than empty maps - if v.IsNil() { - f.fs.Write(nilAngleBytes) - break - } - - f.fs.Write(openMapBytes) - f.depth++ - if (f.cs.MaxDepth != 0) && (f.depth > f.cs.MaxDepth) { - f.fs.Write(maxShortBytes) - } else { - keys := v.MapKeys() - if f.cs.SortKeys { - sortValues(keys, f.cs) - } - for i, key := range keys { - if i > 0 { - f.fs.Write(spaceBytes) - } - f.ignoreNextType = true - f.format(f.unpackValue(key)) - f.fs.Write(colonBytes) - f.ignoreNextType = true - f.format(f.unpackValue(v.MapIndex(key))) - } - } - f.depth-- - f.fs.Write(closeMapBytes) - - case reflect.Struct: - numFields := v.NumField() - f.fs.Write(openBraceBytes) - f.depth++ - if (f.cs.MaxDepth != 0) && (f.depth > f.cs.MaxDepth) { - f.fs.Write(maxShortBytes) - } else { - vt := v.Type() - for i := 0; i < numFields; i++ { - if i > 0 { - f.fs.Write(spaceBytes) - } - vtf := vt.Field(i) - if f.fs.Flag('+') || f.fs.Flag('#') { - f.fs.Write([]byte(vtf.Name)) - f.fs.Write(colonBytes) - } - f.format(f.unpackValue(v.Field(i))) - } - } - f.depth-- - f.fs.Write(closeBraceBytes) - - case reflect.Uintptr: - printHexPtr(f.fs, uintptr(v.Uint())) - - case reflect.UnsafePointer, reflect.Chan, reflect.Func: - printHexPtr(f.fs, v.Pointer()) - - // There were not any other types at the time this code was written, but - // fall back to letting the default fmt package handle it if any get added. - default: - format := f.buildDefaultFormat() - if v.CanInterface() { - fmt.Fprintf(f.fs, format, v.Interface()) - } else { - fmt.Fprintf(f.fs, format, v.String()) - } - } -} - -// Format satisfies the fmt.Formatter interface. See NewFormatter for usage -// details. -func (f *formatState) Format(fs fmt.State, verb rune) { - f.fs = fs - - // Use standard formatting for verbs that are not v. - if verb != 'v' { - format := f.constructOrigFormat(verb) - fmt.Fprintf(fs, format, f.value) - return - } - - if f.value == nil { - if fs.Flag('#') { - fs.Write(interfaceBytes) - } - fs.Write(nilAngleBytes) - return - } - - f.format(reflect.ValueOf(f.value)) -} - -// newFormatter is a helper function to consolidate the logic from the various -// public methods which take varying config states. -func newFormatter(cs *ConfigState, v interface{}) fmt.Formatter { - fs := &formatState{value: v, cs: cs} - fs.pointers = make(map[uintptr]int) - return fs -} - -/* -NewFormatter returns a custom formatter that satisfies the fmt.Formatter -interface. As a result, it integrates cleanly with standard fmt package -printing functions. The formatter is useful for inline printing of smaller data -types similar to the standard %v format specifier. - -The custom formatter only responds to the %v (most compact), %+v (adds pointer -addresses), %#v (adds types), or %#+v (adds types and pointer addresses) verb -combinations. Any other verbs such as %x and %q will be sent to the the -standard fmt package for formatting. In addition, the custom formatter ignores -the width and precision arguments (however they will still work on the format -specifiers not handled by the custom formatter). - -Typically this function shouldn't be called directly. It is much easier to make -use of the custom formatter by calling one of the convenience functions such as -Printf, Println, or Fprintf. -*/ -func NewFormatter(v interface{}) fmt.Formatter { - return newFormatter(&Config, v) -} diff --git a/vendor/github.com/davecgh/go-spew/spew/spew.go b/vendor/github.com/davecgh/go-spew/spew/spew.go deleted file mode 100644 index d8233f54..00000000 --- a/vendor/github.com/davecgh/go-spew/spew/spew.go +++ /dev/null @@ -1,148 +0,0 @@ -/* - * Copyright (c) 2013 Dave Collins - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -package spew - -import ( - "fmt" - "io" -) - -// Errorf is a wrapper for fmt.Errorf that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the formatted string as a value that satisfies error. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Errorf(format, spew.NewFormatter(a), spew.NewFormatter(b)) -func Errorf(format string, a ...interface{}) (err error) { - return fmt.Errorf(format, convertArgs(a)...) -} - -// Fprint is a wrapper for fmt.Fprint that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Fprint(w, spew.NewFormatter(a), spew.NewFormatter(b)) -func Fprint(w io.Writer, a ...interface{}) (n int, err error) { - return fmt.Fprint(w, convertArgs(a)...) -} - -// Fprintf is a wrapper for fmt.Fprintf that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Fprintf(w, format, spew.NewFormatter(a), spew.NewFormatter(b)) -func Fprintf(w io.Writer, format string, a ...interface{}) (n int, err error) { - return fmt.Fprintf(w, format, convertArgs(a)...) -} - -// Fprintln is a wrapper for fmt.Fprintln that treats each argument as if it -// passed with a default Formatter interface returned by NewFormatter. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Fprintln(w, spew.NewFormatter(a), spew.NewFormatter(b)) -func Fprintln(w io.Writer, a ...interface{}) (n int, err error) { - return fmt.Fprintln(w, convertArgs(a)...) -} - -// Print is a wrapper for fmt.Print that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Print(spew.NewFormatter(a), spew.NewFormatter(b)) -func Print(a ...interface{}) (n int, err error) { - return fmt.Print(convertArgs(a)...) -} - -// Printf is a wrapper for fmt.Printf that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Printf(format, spew.NewFormatter(a), spew.NewFormatter(b)) -func Printf(format string, a ...interface{}) (n int, err error) { - return fmt.Printf(format, convertArgs(a)...) -} - -// Println is a wrapper for fmt.Println that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the number of bytes written and any write error encountered. See -// NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Println(spew.NewFormatter(a), spew.NewFormatter(b)) -func Println(a ...interface{}) (n int, err error) { - return fmt.Println(convertArgs(a)...) -} - -// Sprint is a wrapper for fmt.Sprint that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the resulting string. See NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Sprint(spew.NewFormatter(a), spew.NewFormatter(b)) -func Sprint(a ...interface{}) string { - return fmt.Sprint(convertArgs(a)...) -} - -// Sprintf is a wrapper for fmt.Sprintf that treats each argument as if it were -// passed with a default Formatter interface returned by NewFormatter. It -// returns the resulting string. See NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Sprintf(format, spew.NewFormatter(a), spew.NewFormatter(b)) -func Sprintf(format string, a ...interface{}) string { - return fmt.Sprintf(format, convertArgs(a)...) -} - -// Sprintln is a wrapper for fmt.Sprintln that treats each argument as if it -// were passed with a default Formatter interface returned by NewFormatter. It -// returns the resulting string. See NewFormatter for formatting details. -// -// This function is shorthand for the following syntax: -// -// fmt.Sprintln(spew.NewFormatter(a), spew.NewFormatter(b)) -func Sprintln(a ...interface{}) string { - return fmt.Sprintln(convertArgs(a)...) -} - -// convertArgs accepts a slice of arguments and returns a slice of the same -// length with each argument converted to a default spew Formatter interface. -func convertArgs(args []interface{}) (formatters []interface{}) { - formatters = make([]interface{}, len(args)) - for index, arg := range args { - formatters[index] = NewFormatter(arg) - } - return formatters -} diff --git a/vendor/github.com/dustin/gojson/LICENSE b/vendor/github.com/dustin/gojson/LICENSE deleted file mode 100644 index 74487567..00000000 --- a/vendor/github.com/dustin/gojson/LICENSE +++ /dev/null @@ -1,27 +0,0 @@ -Copyright (c) 2012 The Go Authors. 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 Google Inc. 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. diff --git a/vendor/github.com/dustin/gojson/bench_test.go b/vendor/github.com/dustin/gojson/bench_test.go deleted file mode 100644 index 29dbc26d..00000000 --- a/vendor/github.com/dustin/gojson/bench_test.go +++ /dev/null @@ -1,189 +0,0 @@ -// Copyright 2011 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Large data benchmark. -// The JSON data is a summary of agl's changes in the -// go, webkit, and chromium open source projects. -// We benchmark converting between the JSON form -// and in-memory data structures. - -package json - -import ( - "bytes" - "compress/gzip" - "io/ioutil" - "os" - "testing" -) - -type codeResponse struct { - Tree *codeNode `json:"tree"` - Username string `json:"username"` -} - -type codeNode struct { - Name string `json:"name"` - Kids []*codeNode `json:"kids"` - CLWeight float64 `json:"cl_weight"` - Touches int `json:"touches"` - MinT int64 `json:"min_t"` - MaxT int64 `json:"max_t"` - MeanT int64 `json:"mean_t"` -} - -var codeJSON []byte -var codeStruct codeResponse - -func codeInit() { - f, err := os.Open("testdata/code.json.gz") - if err != nil { - panic(err) - } - defer f.Close() - gz, err := gzip.NewReader(f) - if err != nil { - panic(err) - } - data, err := ioutil.ReadAll(gz) - if err != nil { - panic(err) - } - - codeJSON = data - - if err := Unmarshal(codeJSON, &codeStruct); err != nil { - panic("unmarshal code.json: " + err.Error()) - } - - if data, err = Marshal(&codeStruct); err != nil { - panic("marshal code.json: " + err.Error()) - } - - if !bytes.Equal(data, codeJSON) { - println("different lengths", len(data), len(codeJSON)) - for i := 0; i < len(data) && i < len(codeJSON); i++ { - if data[i] != codeJSON[i] { - println("re-marshal: changed at byte", i) - println("orig: ", string(codeJSON[i-10:i+10])) - println("new: ", string(data[i-10:i+10])) - break - } - } - panic("re-marshal code.json: different result") - } -} - -func BenchmarkCodeEncoder(b *testing.B) { - if codeJSON == nil { - b.StopTimer() - codeInit() - b.StartTimer() - } - enc := NewEncoder(ioutil.Discard) - for i := 0; i < b.N; i++ { - if err := enc.Encode(&codeStruct); err != nil { - b.Fatal("Encode:", err) - } - } - b.SetBytes(int64(len(codeJSON))) -} - -func BenchmarkCodeMarshal(b *testing.B) { - if codeJSON == nil { - b.StopTimer() - codeInit() - b.StartTimer() - } - for i := 0; i < b.N; i++ { - if _, err := Marshal(&codeStruct); err != nil { - b.Fatal("Marshal:", err) - } - } - b.SetBytes(int64(len(codeJSON))) -} - -func BenchmarkCodeDecoder(b *testing.B) { - if codeJSON == nil { - b.StopTimer() - codeInit() - b.StartTimer() - } - var buf bytes.Buffer - dec := NewDecoder(&buf) - var r codeResponse - for i := 0; i < b.N; i++ { - buf.Write(codeJSON) - // hide EOF - buf.WriteByte('\n') - buf.WriteByte('\n') - buf.WriteByte('\n') - if err := dec.Decode(&r); err != nil { - b.Fatal("Decode:", err) - } - } - b.SetBytes(int64(len(codeJSON))) -} - -func BenchmarkCodeUnmarshal(b *testing.B) { - if codeJSON == nil { - b.StopTimer() - codeInit() - b.StartTimer() - } - for i := 0; i < b.N; i++ { - var r codeResponse - if err := Unmarshal(codeJSON, &r); err != nil { - b.Fatal("Unmmarshal:", err) - } - } - b.SetBytes(int64(len(codeJSON))) -} - -func BenchmarkCodeUnmarshalReuse(b *testing.B) { - if codeJSON == nil { - b.StopTimer() - codeInit() - b.StartTimer() - } - var r codeResponse - for i := 0; i < b.N; i++ { - if err := Unmarshal(codeJSON, &r); err != nil { - b.Fatal("Unmmarshal:", err) - } - } -} - -func BenchmarkUnmarshalString(b *testing.B) { - data := []byte(`"hello, world"`) - var s string - - for i := 0; i < b.N; i++ { - if err := Unmarshal(data, &s); err != nil { - b.Fatal("Unmarshal:", err) - } - } -} - -func BenchmarkUnmarshalFloat64(b *testing.B) { - var f float64 - data := []byte(`3.14`) - - for i := 0; i < b.N; i++ { - if err := Unmarshal(data, &f); err != nil { - b.Fatal("Unmarshal:", err) - } - } -} - -func BenchmarkUnmarshalInt64(b *testing.B) { - var x int64 - data := []byte(`3`) - - for i := 0; i < b.N; i++ { - if err := Unmarshal(data, &x); err != nil { - b.Fatal("Unmarshal:", err) - } - } -} diff --git a/vendor/github.com/dustin/gojson/decode.go b/vendor/github.com/dustin/gojson/decode.go deleted file mode 100644 index cf467d57..00000000 --- a/vendor/github.com/dustin/gojson/decode.go +++ /dev/null @@ -1,1089 +0,0 @@ -// Copyright 2010 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Represents JSON data structure using native Go types: booleans, floats, -// strings, arrays, and maps. - -package json - -import ( - "bytes" - "encoding" - "encoding/base64" - "errors" - "fmt" - "reflect" - "runtime" - "strconv" - "unicode" - "unicode/utf16" - "unicode/utf8" -) - -// Unmarshal parses the JSON-encoded data and stores the result -// in the value pointed to by v. -// -// Unmarshal uses the inverse of the encodings that -// Marshal uses, allocating maps, slices, and pointers as necessary, -// with the following additional rules: -// -// To unmarshal JSON into a pointer, Unmarshal first handles the case of -// the JSON being the JSON literal null. In that case, Unmarshal sets -// the pointer to nil. Otherwise, Unmarshal unmarshals the JSON into -// the value pointed at by the pointer. If the pointer is nil, Unmarshal -// allocates a new value for it to point to. -// -// To unmarshal JSON into a struct, Unmarshal matches incoming object -// keys to the keys used by Marshal (either the struct field name or its tag), -// preferring an exact match but also accepting a case-insensitive match. -// -// To unmarshal JSON into an interface value, -// Unmarshal stores one of these in the interface value: -// -// bool, for JSON booleans -// float64, for JSON numbers -// string, for JSON strings -// []interface{}, for JSON arrays -// map[string]interface{}, for JSON objects -// nil for JSON null -// -// If a JSON value is not appropriate for a given target type, -// or if a JSON number overflows the target type, Unmarshal -// skips that field and completes the unmarshalling as best it can. -// If no more serious errors are encountered, Unmarshal returns -// an UnmarshalTypeError describing the earliest such error. -// -// The JSON null value unmarshals into an interface, map, pointer, or slice -// by setting that Go value to nil. Because null is often used in JSON to mean -// ``not present,'' unmarshaling a JSON null into any other Go type has no effect -// on the value and produces no error. -// -// When unmarshaling quoted strings, invalid UTF-8 or -// invalid UTF-16 surrogate pairs are not treated as an error. -// Instead, they are replaced by the Unicode replacement -// character U+FFFD. -// -func Unmarshal(data []byte, v interface{}) error { - // Check for well-formedness. - // Avoids filling out half a data structure - // before discovering a JSON syntax error. - var d decodeState - err := checkValid(data, &d.scan) - if err != nil { - return err - } - - d.init(data) - return d.unmarshal(v) -} - -// Unmarshaler is the interface implemented by objects -// that can unmarshal a JSON description of themselves. -// The input can be assumed to be a valid encoding of -// a JSON value. UnmarshalJSON must copy the JSON data -// if it wishes to retain the data after returning. -type Unmarshaler interface { - UnmarshalJSON([]byte) error -} - -// An UnmarshalTypeError describes a JSON value that was -// not appropriate for a value of a specific Go type. -type UnmarshalTypeError struct { - Value string // description of JSON value - "bool", "array", "number -5" - Type reflect.Type // type of Go value it could not be assigned to -} - -func (e *UnmarshalTypeError) Error() string { - return "json: cannot unmarshal " + e.Value + " into Go value of type " + e.Type.String() -} - -// An UnmarshalFieldError describes a JSON object key that -// led to an unexported (and therefore unwritable) struct field. -// (No longer used; kept for compatibility.) -type UnmarshalFieldError struct { - Key string - Type reflect.Type - Field reflect.StructField -} - -func (e *UnmarshalFieldError) Error() string { - return "json: cannot unmarshal object key " + strconv.Quote(e.Key) + " into unexported field " + e.Field.Name + " of type " + e.Type.String() -} - -// An InvalidUnmarshalError describes an invalid argument passed to Unmarshal. -// (The argument to Unmarshal must be a non-nil pointer.) -type InvalidUnmarshalError struct { - Type reflect.Type -} - -func (e *InvalidUnmarshalError) Error() string { - if e.Type == nil { - return "json: Unmarshal(nil)" - } - - if e.Type.Kind() != reflect.Ptr { - return "json: Unmarshal(non-pointer " + e.Type.String() + ")" - } - return "json: Unmarshal(nil " + e.Type.String() + ")" -} - -func (d *decodeState) unmarshal(v interface{}) (err error) { - defer func() { - if r := recover(); r != nil { - if _, ok := r.(runtime.Error); ok { - panic(r) - } - err = r.(error) - } - }() - - rv := reflect.ValueOf(v) - if rv.Kind() != reflect.Ptr || rv.IsNil() { - return &InvalidUnmarshalError{reflect.TypeOf(v)} - } - - d.scan.Reset() - // We decode rv not rv.Elem because the Unmarshaler interface - // test must be applied at the top level of the value. - d.value(rv) - return d.savedError -} - -// A Number represents a JSON number literal. -type Number string - -// String returns the literal text of the number. -func (n Number) String() string { return string(n) } - -// Float64 returns the number as a float64. -func (n Number) Float64() (float64, error) { - return strconv.ParseFloat(string(n), 64) -} - -// Int64 returns the number as an int64. -func (n Number) Int64() (int64, error) { - return strconv.ParseInt(string(n), 10, 64) -} - -// decodeState represents the state while decoding a JSON value. -type decodeState struct { - data []byte - off int // read offset in data - scan Scanner - nextscan Scanner // for calls to NextValue - savedError error - useNumber bool -} - -// errPhase is used for errors that should not happen unless -// there is a bug in the JSON decoder or something is editing -// the data slice while the decoder executes. -var errPhase = errors.New("JSON decoder out of sync - data changing underfoot?") - -func (d *decodeState) init(data []byte) *decodeState { - d.data = data - d.off = 0 - d.savedError = nil - return d -} - -// error aborts the decoding by panicking with err. -func (d *decodeState) error(err error) { - panic(err) -} - -// saveError saves the first err it is called with, -// for reporting at the end of the unmarshal. -func (d *decodeState) saveError(err error) { - if d.savedError == nil { - d.savedError = err - } -} - -// next cuts off and returns the next full JSON value in d.data[d.off:]. -// The next value is known to be an object or array, not a literal. -func (d *decodeState) next() []byte { - c := d.data[d.off] - item, rest, err := NextValue(d.data[d.off:], &d.nextscan) - if err != nil { - d.error(err) - } - d.off = len(d.data) - len(rest) - - // Our scanner has seen the opening brace/bracket - // and thinks we're still in the middle of the object. - // invent a closing brace/bracket to get it out. - if c == '{' { - d.scan.Step(&d.scan, '}') - } else { - d.scan.Step(&d.scan, ']') - } - - return item -} - -// scanWhile processes bytes in d.data[d.off:] until it -// receives a scan code not equal to op. -// It updates d.off and returns the new scan code. -func (d *decodeState) scanWhile(op int) int { - var newOp int - for { - if d.off >= len(d.data) { - newOp = d.scan.EOF() - d.off = len(d.data) + 1 // mark processed EOF with len+1 - } else { - c := int(d.data[d.off]) - d.off++ - newOp = d.scan.Step(&d.scan, c) - } - if newOp != op { - break - } - } - return newOp -} - -// value decodes a JSON value from d.data[d.off:] into the value. -// it updates d.off to point past the decoded value. -func (d *decodeState) value(v reflect.Value) { - if !v.IsValid() { - _, rest, err := NextValue(d.data[d.off:], &d.nextscan) - if err != nil { - d.error(err) - } - d.off = len(d.data) - len(rest) - - // d.scan thinks we're still at the beginning of the item. - // Feed in an empty string - the shortest, simplest value - - // so that it knows we got to the end of the value. - if d.scan.redo { - // rewind. - d.scan.redo = false - d.scan.Step = stateBeginValue - } - d.scan.Step(&d.scan, '"') - d.scan.Step(&d.scan, '"') - - n := len(d.scan.parseState) - if n > 0 && d.scan.parseState[n-1] == parseObjectKey { - // d.scan thinks we just read an object key; finish the object - d.scan.Step(&d.scan, ':') - d.scan.Step(&d.scan, '"') - d.scan.Step(&d.scan, '"') - d.scan.Step(&d.scan, '}') - } - - return - } - - switch op := d.scanWhile(ScanSkipSpace); op { - default: - d.error(errPhase) - - case ScanBeginArray: - d.array(v) - - case ScanBeginObject: - d.object(v) - - case ScanBeginLiteral: - d.literal(v) - } -} - -type unquotedValue struct{} - -// valueQuoted is like value but decodes a -// quoted string literal or literal null into an interface value. -// If it finds anything other than a quoted string literal or null, -// valueQuoted returns unquotedValue{}. -func (d *decodeState) valueQuoted() interface{} { - switch op := d.scanWhile(ScanSkipSpace); op { - default: - d.error(errPhase) - - case ScanBeginArray: - d.array(reflect.Value{}) - - case ScanBeginObject: - d.object(reflect.Value{}) - - case ScanBeginLiteral: - switch v := d.literalInterface().(type) { - case nil, string: - return v - } - } - return unquotedValue{} -} - -// indirect walks down v allocating pointers as needed, -// until it gets to a non-pointer. -// if it encounters an Unmarshaler, indirect stops and returns that. -// if decodingNull is true, indirect stops at the last pointer so it can be set to nil. -func (d *decodeState) indirect(v reflect.Value, decodingNull bool) (Unmarshaler, encoding.TextUnmarshaler, reflect.Value) { - // If v is a named type and is addressable, - // start with its address, so that if the type has pointer methods, - // we find them. - if v.Kind() != reflect.Ptr && v.Type().Name() != "" && v.CanAddr() { - v = v.Addr() - } - for { - // Load value from interface, but only if the result will be - // usefully addressable. - if v.Kind() == reflect.Interface && !v.IsNil() { - e := v.Elem() - if e.Kind() == reflect.Ptr && !e.IsNil() && (!decodingNull || e.Elem().Kind() == reflect.Ptr) { - v = e - continue - } - } - - if v.Kind() != reflect.Ptr { - break - } - - if v.Elem().Kind() != reflect.Ptr && decodingNull && v.CanSet() { - break - } - if v.IsNil() { - v.Set(reflect.New(v.Type().Elem())) - } - if v.Type().NumMethod() > 0 { - if u, ok := v.Interface().(Unmarshaler); ok { - return u, nil, reflect.Value{} - } - if u, ok := v.Interface().(encoding.TextUnmarshaler); ok { - return nil, u, reflect.Value{} - } - } - v = v.Elem() - } - return nil, nil, v -} - -// array consumes an array from d.data[d.off-1:], decoding into the value v. -// the first byte of the array ('[') has been read already. -func (d *decodeState) array(v reflect.Value) { - // Check for unmarshaler. - u, ut, pv := d.indirect(v, false) - if u != nil { - d.off-- - err := u.UnmarshalJSON(d.next()) - if err != nil { - d.error(err) - } - return - } - if ut != nil { - d.saveError(&UnmarshalTypeError{"array", v.Type()}) - d.off-- - d.next() - return - } - - v = pv - - // Check type of target. - switch v.Kind() { - case reflect.Interface: - if v.NumMethod() == 0 { - // Decoding into nil interface? Switch to non-reflect code. - v.Set(reflect.ValueOf(d.arrayInterface())) - return - } - // Otherwise it's invalid. - fallthrough - default: - d.saveError(&UnmarshalTypeError{"array", v.Type()}) - d.off-- - d.next() - return - case reflect.Array: - case reflect.Slice: - break - } - - i := 0 - for { - // Look ahead for ] - can only happen on first iteration. - op := d.scanWhile(ScanSkipSpace) - if op == ScanEndArray { - break - } - - // Back up so d.value can have the byte we just read. - d.off-- - d.scan.undo(op) - - // Get element of array, growing if necessary. - if v.Kind() == reflect.Slice { - // Grow slice if necessary - if i >= v.Cap() { - newcap := v.Cap() + v.Cap()/2 - if newcap < 4 { - newcap = 4 - } - newv := reflect.MakeSlice(v.Type(), v.Len(), newcap) - reflect.Copy(newv, v) - v.Set(newv) - } - if i >= v.Len() { - v.SetLen(i + 1) - } - } - - if i < v.Len() { - // Decode into element. - d.value(v.Index(i)) - } else { - // Ran out of fixed array: skip. - d.value(reflect.Value{}) - } - i++ - - // Next token must be , or ]. - op = d.scanWhile(ScanSkipSpace) - if op == ScanEndArray { - break - } - if op != ScanArrayValue { - d.error(errPhase) - } - } - - if i < v.Len() { - if v.Kind() == reflect.Array { - // Array. Zero the rest. - z := reflect.Zero(v.Type().Elem()) - for ; i < v.Len(); i++ { - v.Index(i).Set(z) - } - } else { - v.SetLen(i) - } - } - if i == 0 && v.Kind() == reflect.Slice { - v.Set(reflect.MakeSlice(v.Type(), 0, 0)) - } -} - -var nullLiteral = []byte("null") - -// object consumes an object from d.data[d.off-1:], decoding into the value v. -// the first byte ('{') of the object has been read already. -func (d *decodeState) object(v reflect.Value) { - // Check for unmarshaler. - u, ut, pv := d.indirect(v, false) - if u != nil { - d.off-- - err := u.UnmarshalJSON(d.next()) - if err != nil { - d.error(err) - } - return - } - if ut != nil { - d.saveError(&UnmarshalTypeError{"object", v.Type()}) - d.off-- - d.next() // skip over { } in input - return - } - v = pv - - // Decoding into nil interface? Switch to non-reflect code. - if v.Kind() == reflect.Interface && v.NumMethod() == 0 { - v.Set(reflect.ValueOf(d.objectInterface())) - return - } - - // Check type of target: struct or map[string]T - switch v.Kind() { - case reflect.Map: - // map must have string kind - t := v.Type() - if t.Key().Kind() != reflect.String { - d.saveError(&UnmarshalTypeError{"object", v.Type()}) - d.off-- - d.next() // skip over { } in input - return - } - if v.IsNil() { - v.Set(reflect.MakeMap(t)) - } - case reflect.Struct: - - default: - d.saveError(&UnmarshalTypeError{"object", v.Type()}) - d.off-- - d.next() // skip over { } in input - return - } - - var mapElem reflect.Value - - for { - // Read opening " of string key or closing }. - op := d.scanWhile(ScanSkipSpace) - if op == ScanEndObject { - // closing } - can only happen on first iteration. - break - } - if op != ScanBeginLiteral { - d.error(errPhase) - } - - // Read key. - start := d.off - 1 - op = d.scanWhile(ScanContinue) - item := d.data[start : d.off-1] - key, ok := UnquoteBytes(item) - if !ok { - d.error(errPhase) - } - - // Figure out field corresponding to key. - var subv reflect.Value - destring := false // whether the value is wrapped in a string to be decoded first - - if v.Kind() == reflect.Map { - elemType := v.Type().Elem() - if !mapElem.IsValid() { - mapElem = reflect.New(elemType).Elem() - } else { - mapElem.Set(reflect.Zero(elemType)) - } - subv = mapElem - } else { - var f *field - fields := cachedTypeFields(v.Type()) - for i := range fields { - ff := &fields[i] - if bytes.Equal(ff.nameBytes, key) { - f = ff - break - } - if f == nil && ff.equalFold(ff.nameBytes, key) { - f = ff - } - } - if f != nil { - subv = v - destring = f.quoted - for _, i := range f.index { - if subv.Kind() == reflect.Ptr { - if subv.IsNil() { - subv.Set(reflect.New(subv.Type().Elem())) - } - subv = subv.Elem() - } - subv = subv.Field(i) - } - } - } - - // Read : before value. - if op == ScanSkipSpace { - op = d.scanWhile(ScanSkipSpace) - } - if op != ScanObjectKey { - d.error(errPhase) - } - - // Read value. - if destring { - switch qv := d.valueQuoted().(type) { - case nil: - d.literalStore(nullLiteral, subv, false) - case string: - d.literalStore([]byte(qv), subv, true) - default: - d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal unquoted value into %v", item, v.Type())) - } - } else { - d.value(subv) - } - - // Write value back to map; - // if using struct, subv points into struct already. - if v.Kind() == reflect.Map { - kv := reflect.ValueOf(key).Convert(v.Type().Key()) - v.SetMapIndex(kv, subv) - } - - // Next token must be , or }. - op = d.scanWhile(ScanSkipSpace) - if op == ScanEndObject { - break - } - if op != ScanObjectValue { - d.error(errPhase) - } - } -} - -// literal consumes a literal from d.data[d.off-1:], decoding into the value v. -// The first byte of the literal has been read already -// (that's how the caller knows it's a literal). -func (d *decodeState) literal(v reflect.Value) { - // All bytes inside literal return scanContinue op code. - start := d.off - 1 - op := d.scanWhile(ScanContinue) - - // Scan read one byte too far; back up. - d.off-- - d.scan.undo(op) - - d.literalStore(d.data[start:d.off], v, false) -} - -// convertNumber converts the number literal s to a float64 or a Number -// depending on the setting of d.useNumber. -func (d *decodeState) convertNumber(s string) (interface{}, error) { - if d.useNumber { - return Number(s), nil - } - f, err := strconv.ParseFloat(s, 64) - if err != nil { - return nil, &UnmarshalTypeError{"number " + s, reflect.TypeOf(0.0)} - } - return f, nil -} - -var numberType = reflect.TypeOf(Number("")) - -// literalStore decodes a literal stored in item into v. -// -// fromQuoted indicates whether this literal came from unwrapping a -// string from the ",string" struct tag option. this is used only to -// produce more helpful error messages. -func (d *decodeState) literalStore(item []byte, v reflect.Value, fromQuoted bool) { - // Check for unmarshaler. - if len(item) == 0 { - //Empty string given - d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())) - return - } - wantptr := item[0] == 'n' // null - u, ut, pv := d.indirect(v, wantptr) - if u != nil { - err := u.UnmarshalJSON(item) - if err != nil { - d.error(err) - } - return - } - if ut != nil { - if item[0] != '"' { - if fromQuoted { - d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())) - } else { - d.saveError(&UnmarshalTypeError{"string", v.Type()}) - } - } - s, ok := UnquoteBytes(item) - if !ok { - if fromQuoted { - d.error(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())) - } else { - d.error(errPhase) - } - } - err := ut.UnmarshalText(s) - if err != nil { - d.error(err) - } - return - } - - v = pv - - switch c := item[0]; c { - case 'n': // null - switch v.Kind() { - case reflect.Interface, reflect.Ptr, reflect.Map, reflect.Slice: - v.Set(reflect.Zero(v.Type())) - // otherwise, ignore null for primitives/string - } - case 't', 'f': // true, false - value := c == 't' - switch v.Kind() { - default: - if fromQuoted { - d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())) - } else { - d.saveError(&UnmarshalTypeError{"bool", v.Type()}) - } - case reflect.Bool: - v.SetBool(value) - case reflect.Interface: - if v.NumMethod() == 0 { - v.Set(reflect.ValueOf(value)) - } else { - d.saveError(&UnmarshalTypeError{"bool", v.Type()}) - } - } - - case '"': // string - s, ok := UnquoteBytes(item) - if !ok { - if fromQuoted { - d.error(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())) - } else { - d.error(errPhase) - } - } - switch v.Kind() { - default: - d.saveError(&UnmarshalTypeError{"string", v.Type()}) - case reflect.Slice: - if v.Type() != byteSliceType { - d.saveError(&UnmarshalTypeError{"string", v.Type()}) - break - } - b := make([]byte, base64.StdEncoding.DecodedLen(len(s))) - n, err := base64.StdEncoding.Decode(b, s) - if err != nil { - d.saveError(err) - break - } - v.Set(reflect.ValueOf(b[0:n])) - case reflect.String: - v.SetString(string(s)) - case reflect.Interface: - if v.NumMethod() == 0 { - v.Set(reflect.ValueOf(string(s))) - } else { - d.saveError(&UnmarshalTypeError{"string", v.Type()}) - } - } - - default: // number - if c != '-' && (c < '0' || c > '9') { - if fromQuoted { - d.error(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())) - } else { - d.error(errPhase) - } - } - s := string(item) - switch v.Kind() { - default: - if v.Kind() == reflect.String && v.Type() == numberType { - v.SetString(s) - break - } - if fromQuoted { - d.error(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())) - } else { - d.error(&UnmarshalTypeError{"number", v.Type()}) - } - case reflect.Interface: - n, err := d.convertNumber(s) - if err != nil { - d.saveError(err) - break - } - if v.NumMethod() != 0 { - d.saveError(&UnmarshalTypeError{"number", v.Type()}) - break - } - v.Set(reflect.ValueOf(n)) - - case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: - n, err := strconv.ParseInt(s, 10, 64) - if err != nil || v.OverflowInt(n) { - d.saveError(&UnmarshalTypeError{"number " + s, v.Type()}) - break - } - v.SetInt(n) - - case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr: - n, err := strconv.ParseUint(s, 10, 64) - if err != nil || v.OverflowUint(n) { - d.saveError(&UnmarshalTypeError{"number " + s, v.Type()}) - break - } - v.SetUint(n) - - case reflect.Float32, reflect.Float64: - n, err := strconv.ParseFloat(s, v.Type().Bits()) - if err != nil || v.OverflowFloat(n) { - d.saveError(&UnmarshalTypeError{"number " + s, v.Type()}) - break - } - v.SetFloat(n) - } - } -} - -// The xxxInterface routines build up a value to be stored -// in an empty interface. They are not strictly necessary, -// but they avoid the weight of reflection in this common case. - -// valueInterface is like value but returns interface{} -func (d *decodeState) valueInterface() interface{} { - switch d.scanWhile(ScanSkipSpace) { - default: - d.error(errPhase) - panic("unreachable") - case ScanBeginArray: - return d.arrayInterface() - case ScanBeginObject: - return d.objectInterface() - case ScanBeginLiteral: - return d.literalInterface() - } -} - -// arrayInterface is like array but returns []interface{}. -func (d *decodeState) arrayInterface() []interface{} { - var v = make([]interface{}, 0) - for { - // Look ahead for ] - can only happen on first iteration. - op := d.scanWhile(ScanSkipSpace) - if op == ScanEndArray { - break - } - - // Back up so d.value can have the byte we just read. - d.off-- - d.scan.undo(op) - - v = append(v, d.valueInterface()) - - // Next token must be , or ]. - op = d.scanWhile(ScanSkipSpace) - if op == ScanEndArray { - break - } - if op != ScanArrayValue { - d.error(errPhase) - } - } - return v -} - -// objectInterface is like object but returns map[string]interface{}. -func (d *decodeState) objectInterface() map[string]interface{} { - m := make(map[string]interface{}) - for { - // Read opening " of string key or closing }. - op := d.scanWhile(ScanSkipSpace) - if op == ScanEndObject { - // closing } - can only happen on first iteration. - break - } - if op != ScanBeginLiteral { - d.error(errPhase) - } - - // Read string key. - start := d.off - 1 - op = d.scanWhile(ScanContinue) - item := d.data[start : d.off-1] - key, ok := unquote(item) - if !ok { - d.error(errPhase) - } - - // Read : before value. - if op == ScanSkipSpace { - op = d.scanWhile(ScanSkipSpace) - } - if op != ScanObjectKey { - d.error(errPhase) - } - - // Read value. - m[key] = d.valueInterface() - - // Next token must be , or }. - op = d.scanWhile(ScanSkipSpace) - if op == ScanEndObject { - break - } - if op != ScanObjectValue { - d.error(errPhase) - } - } - return m -} - -// literalInterface is like literal but returns an interface value. -func (d *decodeState) literalInterface() interface{} { - // All bytes inside literal return scanContinue op code. - start := d.off - 1 - op := d.scanWhile(ScanContinue) - - // Scan read one byte too far; back up. - d.off-- - d.scan.undo(op) - item := d.data[start:d.off] - - switch c := item[0]; c { - case 'n': // null - return nil - - case 't', 'f': // true, false - return c == 't' - - case '"': // string - s, ok := unquote(item) - if !ok { - d.error(errPhase) - } - return s - - default: // number - if c != '-' && (c < '0' || c > '9') { - d.error(errPhase) - } - n, err := d.convertNumber(string(item)) - if err != nil { - d.saveError(err) - } - return n - } -} - -// getu4 decodes \uXXXX from the beginning of s, returning the hex value, -// or it returns -1. -func getu4(s []byte) rune { - if len(s) < 6 || s[0] != '\\' || s[1] != 'u' { - return -1 - } - r, err := strconv.ParseUint(string(s[2:6]), 16, 64) - if err != nil { - return -1 - } - return rune(r) -} - -// unquote converts a quoted JSON string literal s into an actual string t. -// The rules are different than for Go, so cannot use strconv.Unquote. -func unquote(s []byte) (t string, ok bool) { - s, ok = UnquoteBytes(s) - t = string(s) - return -} - -func UnquoteBytes(s []byte) (t []byte, ok bool) { - if len(s) < 2 || s[0] != '"' || s[len(s)-1] != '"' { - s = bytes.TrimSpace(s) - - if len(s) < 2 || s[0] != '"' || s[len(s)-1] != '"' { - return - } - } - - s = s[1 : len(s)-1] - - // Check for unusual characters. If there are none, - // then no unquoting is needed, so return a slice of the - // original bytes. - r := 0 - for r < len(s) { - c := s[r] - if c == '\\' || c == '"' || c < ' ' { - break - } - if c < utf8.RuneSelf { - r++ - continue - } - rr, size := utf8.DecodeRune(s[r:]) - if rr == utf8.RuneError && size == 1 { - break - } - r += size - } - if r == len(s) { - return s, true - } - - b := make([]byte, len(s)+2*utf8.UTFMax) - w := copy(b, s[0:r]) - for r < len(s) { - // Out of room? Can only happen if s is full of - // malformed UTF-8 and we're replacing each - // byte with RuneError. - if w >= len(b)-2*utf8.UTFMax { - nb := make([]byte, (len(b)+utf8.UTFMax)*2) - copy(nb, b[0:w]) - b = nb - } - switch c := s[r]; { - case c == '\\': - r++ - if r >= len(s) { - return - } - switch s[r] { - default: - return - case '"', '\\', '/', '\'': - b[w] = s[r] - r++ - w++ - case 'b': - b[w] = '\b' - r++ - w++ - case 'f': - b[w] = '\f' - r++ - w++ - case 'n': - b[w] = '\n' - r++ - w++ - case 'r': - b[w] = '\r' - r++ - w++ - case 't': - b[w] = '\t' - r++ - w++ - case 'u': - r-- - rr := getu4(s[r:]) - if rr < 0 { - return - } - r += 6 - if utf16.IsSurrogate(rr) { - rr1 := getu4(s[r:]) - if dec := utf16.DecodeRune(rr, rr1); dec != unicode.ReplacementChar { - // A valid pair; consume. - r += 6 - w += utf8.EncodeRune(b[w:], dec) - break - } - // Invalid surrogate; fall back to replacement rune. - rr = unicode.ReplacementChar - } - w += utf8.EncodeRune(b[w:], rr) - } - - // Quote, control characters are invalid. - case c == '"', c < ' ': - return - - // ASCII - case c < utf8.RuneSelf: - b[w] = c - r++ - w++ - - // Coerce to well-formed UTF-8. - default: - rr, size := utf8.DecodeRune(s[r:]) - r += size - w += utf8.EncodeRune(b[w:], rr) - } - } - return b[0:w], true -} diff --git a/vendor/github.com/dustin/gojson/decode_test.go b/vendor/github.com/dustin/gojson/decode_test.go deleted file mode 100644 index 10e9c97b..00000000 --- a/vendor/github.com/dustin/gojson/decode_test.go +++ /dev/null @@ -1,1391 +0,0 @@ -// Copyright 2010 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package json - -import ( - "bytes" - "encoding" - "fmt" - "image" - "reflect" - "strings" - "testing" - "time" -) - -type T struct { - X string - Y int - Z int `json:"-"` -} - -type U struct { - Alphabet string `json:"alpha"` -} - -type V struct { - F1 interface{} - F2 int32 - F3 Number -} - -// ifaceNumAsFloat64/ifaceNumAsNumber are used to test unmarshaling with and -// without UseNumber -var ifaceNumAsFloat64 = map[string]interface{}{ - "k1": float64(1), - "k2": "s", - "k3": []interface{}{float64(1), float64(2.0), float64(3e-3)}, - "k4": map[string]interface{}{"kk1": "s", "kk2": float64(2)}, -} - -var ifaceNumAsNumber = map[string]interface{}{ - "k1": Number("1"), - "k2": "s", - "k3": []interface{}{Number("1"), Number("2.0"), Number("3e-3")}, - "k4": map[string]interface{}{"kk1": "s", "kk2": Number("2")}, -} - -type tx struct { - x int -} - -// A type that can unmarshal itself. - -type unmarshaler struct { - T bool -} - -func (u *unmarshaler) UnmarshalJSON(b []byte) error { - *u = unmarshaler{true} // All we need to see that UnmarshalJSON is called. - return nil -} - -type ustruct struct { - M unmarshaler -} - -type unmarshalerText struct { - T bool -} - -// needed for re-marshaling tests -func (u *unmarshalerText) MarshalText() ([]byte, error) { - return []byte(""), nil -} - -func (u *unmarshalerText) UnmarshalText(b []byte) error { - *u = unmarshalerText{true} // All we need to see that UnmarshalText is called. - return nil -} - -var _ encoding.TextUnmarshaler = (*unmarshalerText)(nil) - -type ustructText struct { - M unmarshalerText -} - -var ( - um0, um1 unmarshaler // target2 of unmarshaling - ump = &um1 - umtrue = unmarshaler{true} - umslice = []unmarshaler{{true}} - umslicep = new([]unmarshaler) - umstruct = ustruct{unmarshaler{true}} - - um0T, um1T unmarshalerText // target2 of unmarshaling - umpT = &um1T - umtrueT = unmarshalerText{true} - umsliceT = []unmarshalerText{{true}} - umslicepT = new([]unmarshalerText) - umstructT = ustructText{unmarshalerText{true}} -) - -// Test data structures for anonymous fields. - -type Point struct { - Z int -} - -type Top struct { - Level0 int - Embed0 - *Embed0a - *Embed0b `json:"e,omitempty"` // treated as named - Embed0c `json:"-"` // ignored - Loop - Embed0p // has Point with X, Y, used - Embed0q // has Point with Z, used -} - -type Embed0 struct { - Level1a int // overridden by Embed0a's Level1a with json tag - Level1b int // used because Embed0a's Level1b is renamed - Level1c int // used because Embed0a's Level1c is ignored - Level1d int // annihilated by Embed0a's Level1d - Level1e int `json:"x"` // annihilated by Embed0a.Level1e -} - -type Embed0a struct { - Level1a int `json:"Level1a,omitempty"` - Level1b int `json:"LEVEL1B,omitempty"` - Level1c int `json:"-"` - Level1d int // annihilated by Embed0's Level1d - Level1f int `json:"x"` // annihilated by Embed0's Level1e -} - -type Embed0b Embed0 - -type Embed0c Embed0 - -type Embed0p struct { - image.Point -} - -type Embed0q struct { - Point -} - -type Loop struct { - Loop1 int `json:",omitempty"` - Loop2 int `json:",omitempty"` - *Loop -} - -// From reflect test: -// The X in S6 and S7 annihilate, but they also block the X in S8.S9. -type S5 struct { - S6 - S7 - S8 -} - -type S6 struct { - X int -} - -type S7 S6 - -type S8 struct { - S9 -} - -type S9 struct { - X int - Y int -} - -// From reflect test: -// The X in S11.S6 and S12.S6 annihilate, but they also block the X in S13.S8.S9. -type S10 struct { - S11 - S12 - S13 -} - -type S11 struct { - S6 -} - -type S12 struct { - S6 -} - -type S13 struct { - S8 -} - -type unmarshalTest struct { - in string - ptr interface{} - out interface{} - err error - useNumber bool -} - -type Ambig struct { - // Given "hello", the first match should win. - First int `json:"HELLO"` - Second int `json:"Hello"` -} - -type XYZ struct { - X interface{} - Y interface{} - Z interface{} -} - -var unmarshalTests = []unmarshalTest{ - // basic types - {in: `true`, ptr: new(bool), out: true}, - {in: `1`, ptr: new(int), out: 1}, - {in: `1.2`, ptr: new(float64), out: 1.2}, - {in: `-5`, ptr: new(int16), out: int16(-5)}, - {in: `2`, ptr: new(Number), out: Number("2"), useNumber: true}, - {in: `2`, ptr: new(Number), out: Number("2")}, - {in: `2`, ptr: new(interface{}), out: float64(2.0)}, - {in: `2`, ptr: new(interface{}), out: Number("2"), useNumber: true}, - {in: `"a\u1234"`, ptr: new(string), out: "a\u1234"}, - {in: `"http:\/\/"`, ptr: new(string), out: "http://"}, - {in: `"g-clef: \uD834\uDD1E"`, ptr: new(string), out: "g-clef: \U0001D11E"}, - {in: `"invalid: \uD834x\uDD1E"`, ptr: new(string), out: "invalid: \uFFFDx\uFFFD"}, - {in: "null", ptr: new(interface{}), out: nil}, - {in: `{"X": [1,2,3], "Y": 4}`, ptr: new(T), out: T{Y: 4}, err: &UnmarshalTypeError{"array", reflect.TypeOf("")}}, - {in: `{"x": 1}`, ptr: new(tx), out: tx{}}, - {in: `{"F1":1,"F2":2,"F3":3}`, ptr: new(V), out: V{F1: float64(1), F2: int32(2), F3: Number("3")}}, - {in: `{"F1":1,"F2":2,"F3":3}`, ptr: new(V), out: V{F1: Number("1"), F2: int32(2), F3: Number("3")}, useNumber: true}, - {in: `{"k1":1,"k2":"s","k3":[1,2.0,3e-3],"k4":{"kk1":"s","kk2":2}}`, ptr: new(interface{}), out: ifaceNumAsFloat64}, - {in: `{"k1":1,"k2":"s","k3":[1,2.0,3e-3],"k4":{"kk1":"s","kk2":2}}`, ptr: new(interface{}), out: ifaceNumAsNumber, useNumber: true}, - - // raw values with whitespace - {in: "\n true ", ptr: new(bool), out: true}, - {in: "\t 1 ", ptr: new(int), out: 1}, - {in: "\r 1.2 ", ptr: new(float64), out: 1.2}, - {in: "\t -5 \n", ptr: new(int16), out: int16(-5)}, - {in: "\t \"a\\u1234\" \n", ptr: new(string), out: "a\u1234"}, - - // Z has a "-" tag. - {in: `{"Y": 1, "Z": 2}`, ptr: new(T), out: T{Y: 1}}, - - {in: `{"alpha": "abc", "alphabet": "xyz"}`, ptr: new(U), out: U{Alphabet: "abc"}}, - {in: `{"alpha": "abc"}`, ptr: new(U), out: U{Alphabet: "abc"}}, - {in: `{"alphabet": "xyz"}`, ptr: new(U), out: U{}}, - - // syntax errors - {in: `{"X": "foo", "Y"}`, err: &SyntaxError{"invalid character '}' after object key", 17}}, - {in: `[1, 2, 3+]`, err: &SyntaxError{"invalid character '+' after array element", 9}}, - {in: `{"X":12x}`, err: &SyntaxError{"invalid character 'x' after object key:value pair", 8}, useNumber: true}, - - // raw value errors - {in: "\x01 42", err: &SyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, - {in: " 42 \x01", err: &SyntaxError{"invalid character '\\x01' after top-level value", 5}}, - {in: "\x01 true", err: &SyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, - {in: " false \x01", err: &SyntaxError{"invalid character '\\x01' after top-level value", 8}}, - {in: "\x01 1.2", err: &SyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, - {in: " 3.4 \x01", err: &SyntaxError{"invalid character '\\x01' after top-level value", 6}}, - {in: "\x01 \"string\"", err: &SyntaxError{"invalid character '\\x01' looking for beginning of value", 1}}, - {in: " \"string\" \x01", err: &SyntaxError{"invalid character '\\x01' after top-level value", 11}}, - - // array tests - {in: `[1, 2, 3]`, ptr: new([3]int), out: [3]int{1, 2, 3}}, - {in: `[1, 2, 3]`, ptr: new([1]int), out: [1]int{1}}, - {in: `[1, 2, 3]`, ptr: new([5]int), out: [5]int{1, 2, 3, 0, 0}}, - - // empty array to interface test - {in: `[]`, ptr: new([]interface{}), out: []interface{}{}}, - {in: `null`, ptr: new([]interface{}), out: []interface{}(nil)}, - {in: `{"T":[]}`, ptr: new(map[string]interface{}), out: map[string]interface{}{"T": []interface{}{}}}, - {in: `{"T":null}`, ptr: new(map[string]interface{}), out: map[string]interface{}{"T": interface{}(nil)}}, - - // composite tests - {in: allValueIndent, ptr: new(All), out: allValue}, - {in: allValueCompact, ptr: new(All), out: allValue}, - {in: allValueIndent, ptr: new(*All), out: &allValue}, - {in: allValueCompact, ptr: new(*All), out: &allValue}, - {in: pallValueIndent, ptr: new(All), out: pallValue}, - {in: pallValueCompact, ptr: new(All), out: pallValue}, - {in: pallValueIndent, ptr: new(*All), out: &pallValue}, - {in: pallValueCompact, ptr: new(*All), out: &pallValue}, - - // unmarshal interface test - {in: `{"T":false}`, ptr: &um0, out: umtrue}, // use "false" so test will fail if custom unmarshaler is not called - {in: `{"T":false}`, ptr: &ump, out: &umtrue}, - {in: `[{"T":false}]`, ptr: &umslice, out: umslice}, - {in: `[{"T":false}]`, ptr: &umslicep, out: &umslice}, - {in: `{"M":{"T":false}}`, ptr: &umstruct, out: umstruct}, - - // UnmarshalText interface test - {in: `"X"`, ptr: &um0T, out: umtrueT}, // use "false" so test will fail if custom unmarshaler is not called - {in: `"X"`, ptr: &umpT, out: &umtrueT}, - {in: `["X"]`, ptr: &umsliceT, out: umsliceT}, - {in: `["X"]`, ptr: &umslicepT, out: &umsliceT}, - {in: `{"M":"X"}`, ptr: &umstructT, out: umstructT}, - - { - in: `{ - "Level0": 1, - "Level1b": 2, - "Level1c": 3, - "x": 4, - "Level1a": 5, - "LEVEL1B": 6, - "e": { - "Level1a": 8, - "Level1b": 9, - "Level1c": 10, - "Level1d": 11, - "x": 12 - }, - "Loop1": 13, - "Loop2": 14, - "X": 15, - "Y": 16, - "Z": 17 - }`, - ptr: new(Top), - out: Top{ - Level0: 1, - Embed0: Embed0{ - Level1b: 2, - Level1c: 3, - }, - Embed0a: &Embed0a{ - Level1a: 5, - Level1b: 6, - }, - Embed0b: &Embed0b{ - Level1a: 8, - Level1b: 9, - Level1c: 10, - Level1d: 11, - Level1e: 12, - }, - Loop: Loop{ - Loop1: 13, - Loop2: 14, - }, - Embed0p: Embed0p{ - Point: image.Point{X: 15, Y: 16}, - }, - Embed0q: Embed0q{ - Point: Point{Z: 17}, - }, - }, - }, - { - in: `{"hello": 1}`, - ptr: new(Ambig), - out: Ambig{First: 1}, - }, - - { - in: `{"X": 1,"Y":2}`, - ptr: new(S5), - out: S5{S8: S8{S9: S9{Y: 2}}}, - }, - { - in: `{"X": 1,"Y":2}`, - ptr: new(S10), - out: S10{S13: S13{S8: S8{S9: S9{Y: 2}}}}, - }, - - // invalid UTF-8 is coerced to valid UTF-8. - { - in: "\"hello\xffworld\"", - ptr: new(string), - out: "hello\ufffdworld", - }, - { - in: "\"hello\xc2\xc2world\"", - ptr: new(string), - out: "hello\ufffd\ufffdworld", - }, - { - in: "\"hello\xc2\xffworld\"", - ptr: new(string), - out: "hello\ufffd\ufffdworld", - }, - { - in: "\"hello\\ud800world\"", - ptr: new(string), - out: "hello\ufffdworld", - }, - { - in: "\"hello\\ud800\\ud800world\"", - ptr: new(string), - out: "hello\ufffd\ufffdworld", - }, - { - in: "\"hello\\ud800\\ud800world\"", - ptr: new(string), - out: "hello\ufffd\ufffdworld", - }, - { - in: "\"hello\xed\xa0\x80\xed\xb0\x80world\"", - ptr: new(string), - out: "hello\ufffd\ufffd\ufffd\ufffd\ufffd\ufffdworld", - }, - - // issue 8305 - { - in: `{"2009-11-10T23:00:00Z": "hello world"}`, - ptr: &map[time.Time]string{}, - err: &UnmarshalTypeError{"object", reflect.TypeOf(map[time.Time]string{})}, - }, -} - -func TestMarshal(t *testing.T) { - b, err := Marshal(allValue) - if err != nil { - t.Fatalf("Marshal allValue: %v", err) - } - if string(b) != allValueCompact { - t.Errorf("Marshal allValueCompact") - diff(t, b, []byte(allValueCompact)) - return - } - - b, err = Marshal(pallValue) - if err != nil { - t.Fatalf("Marshal pallValue: %v", err) - } - if string(b) != pallValueCompact { - t.Errorf("Marshal pallValueCompact") - diff(t, b, []byte(pallValueCompact)) - return - } -} - -var badUTF8 = []struct { - in, out string -}{ - {"hello\xffworld", `"hello\ufffdworld"`}, - {"", `""`}, - {"\xff", `"\ufffd"`}, - {"\xff\xff", `"\ufffd\ufffd"`}, - {"a\xffb", `"a\ufffdb"`}, - {"\xe6\x97\xa5\xe6\x9c\xac\xff\xaa\x9e", `"日本\ufffd\ufffd\ufffd"`}, -} - -func TestMarshalBadUTF8(t *testing.T) { - for _, tt := range badUTF8 { - b, err := Marshal(tt.in) - if string(b) != tt.out || err != nil { - t.Errorf("Marshal(%q) = %#q, %v, want %#q, nil", tt.in, b, err, tt.out) - } - } -} - -func TestMarshalNumberZeroVal(t *testing.T) { - var n Number - out, err := Marshal(n) - if err != nil { - t.Fatal(err) - } - outStr := string(out) - if outStr != "0" { - t.Fatalf("Invalid zero val for Number: %q", outStr) - } -} - -func TestMarshalEmbeds(t *testing.T) { - top := &Top{ - Level0: 1, - Embed0: Embed0{ - Level1b: 2, - Level1c: 3, - }, - Embed0a: &Embed0a{ - Level1a: 5, - Level1b: 6, - }, - Embed0b: &Embed0b{ - Level1a: 8, - Level1b: 9, - Level1c: 10, - Level1d: 11, - Level1e: 12, - }, - Loop: Loop{ - Loop1: 13, - Loop2: 14, - }, - Embed0p: Embed0p{ - Point: image.Point{X: 15, Y: 16}, - }, - Embed0q: Embed0q{ - Point: Point{Z: 17}, - }, - } - b, err := Marshal(top) - if err != nil { - t.Fatal(err) - } - want := "{\"Level0\":1,\"Level1b\":2,\"Level1c\":3,\"Level1a\":5,\"LEVEL1B\":6,\"e\":{\"Level1a\":8,\"Level1b\":9,\"Level1c\":10,\"Level1d\":11,\"x\":12},\"Loop1\":13,\"Loop2\":14,\"X\":15,\"Y\":16,\"Z\":17}" - if string(b) != want { - t.Errorf("Wrong marshal result.\n got: %q\nwant: %q", b, want) - } -} - -func TestUnmarshal(t *testing.T) { - for i, tt := range unmarshalTests { - var scan Scanner - in := []byte(tt.in) - if err := checkValid(in, &scan); err != nil { - if !reflect.DeepEqual(err, tt.err) { - t.Errorf("#%d: checkValid: %#v", i, err) - continue - } - } - if tt.ptr == nil { - continue - } - - // v = new(right-type) - v := reflect.New(reflect.TypeOf(tt.ptr).Elem()) - dec := NewDecoder(bytes.NewReader(in)) - if tt.useNumber { - dec.UseNumber() - } - if err := dec.Decode(v.Interface()); !reflect.DeepEqual(err, tt.err) { - t.Errorf("#%d: %v, want %v", i, err, tt.err) - continue - } else if err != nil { - continue - } - if !reflect.DeepEqual(v.Elem().Interface(), tt.out) { - t.Errorf("#%d: mismatch\nhave: %#+v\nwant: %#+v", i, v.Elem().Interface(), tt.out) - data, _ := Marshal(v.Elem().Interface()) - println(string(data)) - data, _ = Marshal(tt.out) - println(string(data)) - continue - } - - // Check round trip. - if tt.err == nil { - enc, err := Marshal(v.Interface()) - if err != nil { - t.Errorf("#%d: error re-marshaling: %v", i, err) - continue - } - vv := reflect.New(reflect.TypeOf(tt.ptr).Elem()) - dec = NewDecoder(bytes.NewReader(enc)) - if tt.useNumber { - dec.UseNumber() - } - if err := dec.Decode(vv.Interface()); err != nil { - t.Errorf("#%d: error re-unmarshaling %#q: %v", i, enc, err) - continue - } - if !reflect.DeepEqual(v.Elem().Interface(), vv.Elem().Interface()) { - t.Errorf("#%d: mismatch\nhave: %#+v\nwant: %#+v", i, v.Elem().Interface(), vv.Elem().Interface()) - t.Errorf(" In: %q", strings.Map(noSpace, string(in))) - t.Errorf("Marshal: %q", strings.Map(noSpace, string(enc))) - continue - } - } - } -} - -func TestUnmarshalMarshal(t *testing.T) { - initBig() - var v interface{} - if err := Unmarshal(jsonBig, &v); err != nil { - t.Fatalf("Unmarshal: %v", err) - } - b, err := Marshal(v) - if err != nil { - t.Fatalf("Marshal: %v", err) - } - if !bytes.Equal(jsonBig, b) { - t.Errorf("Marshal jsonBig") - diff(t, b, jsonBig) - return - } -} - -var numberTests = []struct { - in string - i int64 - intErr string - f float64 - floatErr string -}{ - {in: "-1.23e1", intErr: "strconv.ParseInt: parsing \"-1.23e1\": invalid syntax", f: -1.23e1}, - {in: "-12", i: -12, f: -12.0}, - {in: "1e1000", intErr: "strconv.ParseInt: parsing \"1e1000\": invalid syntax", floatErr: "strconv.ParseFloat: parsing \"1e1000\": value out of range"}, -} - -// Independent of Decode, basic coverage of the accessors in Number -func TestNumberAccessors(t *testing.T) { - for _, tt := range numberTests { - n := Number(tt.in) - if s := n.String(); s != tt.in { - t.Errorf("Number(%q).String() is %q", tt.in, s) - } - if i, err := n.Int64(); err == nil && tt.intErr == "" && i != tt.i { - t.Errorf("Number(%q).Int64() is %d", tt.in, i) - } else if (err == nil && tt.intErr != "") || (err != nil && err.Error() != tt.intErr) { - t.Errorf("Number(%q).Int64() wanted error %q but got: %v", tt.in, tt.intErr, err) - } - if f, err := n.Float64(); err == nil && tt.floatErr == "" && f != tt.f { - t.Errorf("Number(%q).Float64() is %g", tt.in, f) - } else if (err == nil && tt.floatErr != "") || (err != nil && err.Error() != tt.floatErr) { - t.Errorf("Number(%q).Float64() wanted error %q but got: %v", tt.in, tt.floatErr, err) - } - } -} - -func TestLargeByteSlice(t *testing.T) { - s0 := make([]byte, 2000) - for i := range s0 { - s0[i] = byte(i) - } - b, err := Marshal(s0) - if err != nil { - t.Fatalf("Marshal: %v", err) - } - var s1 []byte - if err := Unmarshal(b, &s1); err != nil { - t.Fatalf("Unmarshal: %v", err) - } - if !bytes.Equal(s0, s1) { - t.Errorf("Marshal large byte slice") - diff(t, s0, s1) - } -} - -type Xint struct { - X int -} - -func TestUnmarshalInterface(t *testing.T) { - var xint Xint - var i interface{} = &xint - if err := Unmarshal([]byte(`{"X":1}`), &i); err != nil { - t.Fatalf("Unmarshal: %v", err) - } - if xint.X != 1 { - t.Fatalf("Did not write to xint") - } -} - -func TestUnmarshalPtrPtr(t *testing.T) { - var xint Xint - pxint := &xint - if err := Unmarshal([]byte(`{"X":1}`), &pxint); err != nil { - t.Fatalf("Unmarshal: %v", err) - } - if xint.X != 1 { - t.Fatalf("Did not write to xint") - } -} - -func TestEscape(t *testing.T) { - const input = `"foobar"` + " [\u2028 \u2029]" - const expected = `"\"foobar\"\u003chtml\u003e [\u2028 \u2029]"` - b, err := Marshal(input) - if err != nil { - t.Fatalf("Marshal error: %v", err) - } - if s := string(b); s != expected { - t.Errorf("Encoding of [%s]:\n got [%s]\nwant [%s]", input, s, expected) - } -} - -// WrongString is a struct that's misusing the ,string modifier. -type WrongString struct { - Message string `json:"result,string"` -} - -type wrongStringTest struct { - in, err string -} - -var wrongStringTests = []wrongStringTest{ - {`{"result":"x"}`, `json: invalid use of ,string struct tag, trying to unmarshal "x" into string`}, - {`{"result":"foo"}`, `json: invalid use of ,string struct tag, trying to unmarshal "foo" into string`}, - {`{"result":"123"}`, `json: invalid use of ,string struct tag, trying to unmarshal "123" into string`}, -} - -// If people misuse the ,string modifier, the error message should be -// helpful, telling the user that they're doing it wrong. -func TestErrorMessageFromMisusedString(t *testing.T) { - for n, tt := range wrongStringTests { - r := strings.NewReader(tt.in) - var s WrongString - err := NewDecoder(r).Decode(&s) - got := fmt.Sprintf("%v", err) - if got != tt.err { - t.Errorf("%d. got err = %q, want %q", n, got, tt.err) - } - } -} - -func noSpace(c rune) rune { - if isSpace(c) { - return -1 - } - return c -} - -type All struct { - Bool bool - Int int - Int8 int8 - Int16 int16 - Int32 int32 - Int64 int64 - Uint uint - Uint8 uint8 - Uint16 uint16 - Uint32 uint32 - Uint64 uint64 - Uintptr uintptr - Float32 float32 - Float64 float64 - - Foo string `json:"bar"` - Foo2 string `json:"bar2,dummyopt"` - - IntStr int64 `json:",string"` - - PBool *bool - PInt *int - PInt8 *int8 - PInt16 *int16 - PInt32 *int32 - PInt64 *int64 - PUint *uint - PUint8 *uint8 - PUint16 *uint16 - PUint32 *uint32 - PUint64 *uint64 - PUintptr *uintptr - PFloat32 *float32 - PFloat64 *float64 - - String string - PString *string - - Map map[string]Small - MapP map[string]*Small - PMap *map[string]Small - PMapP *map[string]*Small - - EmptyMap map[string]Small - NilMap map[string]Small - - Slice []Small - SliceP []*Small - PSlice *[]Small - PSliceP *[]*Small - - EmptySlice []Small - NilSlice []Small - - StringSlice []string - ByteSlice []byte - - Small Small - PSmall *Small - PPSmall **Small - - Interface interface{} - PInterface *interface{} - - unexported int -} - -type Small struct { - Tag string -} - -var allValue = All{ - Bool: true, - Int: 2, - Int8: 3, - Int16: 4, - Int32: 5, - Int64: 6, - Uint: 7, - Uint8: 8, - Uint16: 9, - Uint32: 10, - Uint64: 11, - Uintptr: 12, - Float32: 14.1, - Float64: 15.1, - Foo: "foo", - Foo2: "foo2", - IntStr: 42, - String: "16", - Map: map[string]Small{ - "17": {Tag: "tag17"}, - "18": {Tag: "tag18"}, - }, - MapP: map[string]*Small{ - "19": {Tag: "tag19"}, - "20": nil, - }, - EmptyMap: map[string]Small{}, - Slice: []Small{{Tag: "tag20"}, {Tag: "tag21"}}, - SliceP: []*Small{{Tag: "tag22"}, nil, {Tag: "tag23"}}, - EmptySlice: []Small{}, - StringSlice: []string{"str24", "str25", "str26"}, - ByteSlice: []byte{27, 28, 29}, - Small: Small{Tag: "tag30"}, - PSmall: &Small{Tag: "tag31"}, - Interface: 5.2, -} - -var pallValue = All{ - PBool: &allValue.Bool, - PInt: &allValue.Int, - PInt8: &allValue.Int8, - PInt16: &allValue.Int16, - PInt32: &allValue.Int32, - PInt64: &allValue.Int64, - PUint: &allValue.Uint, - PUint8: &allValue.Uint8, - PUint16: &allValue.Uint16, - PUint32: &allValue.Uint32, - PUint64: &allValue.Uint64, - PUintptr: &allValue.Uintptr, - PFloat32: &allValue.Float32, - PFloat64: &allValue.Float64, - PString: &allValue.String, - PMap: &allValue.Map, - PMapP: &allValue.MapP, - PSlice: &allValue.Slice, - PSliceP: &allValue.SliceP, - PPSmall: &allValue.PSmall, - PInterface: &allValue.Interface, -} - -var allValueIndent = `{ - "Bool": true, - "Int": 2, - "Int8": 3, - "Int16": 4, - "Int32": 5, - "Int64": 6, - "Uint": 7, - "Uint8": 8, - "Uint16": 9, - "Uint32": 10, - "Uint64": 11, - "Uintptr": 12, - "Float32": 14.1, - "Float64": 15.1, - "bar": "foo", - "bar2": "foo2", - "IntStr": "42", - "PBool": null, - "PInt": null, - "PInt8": null, - "PInt16": null, - "PInt32": null, - "PInt64": null, - "PUint": null, - "PUint8": null, - "PUint16": null, - "PUint32": null, - "PUint64": null, - "PUintptr": null, - "PFloat32": null, - "PFloat64": null, - "String": "16", - "PString": null, - "Map": { - "17": { - "Tag": "tag17" - }, - "18": { - "Tag": "tag18" - } - }, - "MapP": { - "19": { - "Tag": "tag19" - }, - "20": null - }, - "PMap": null, - "PMapP": null, - "EmptyMap": {}, - "NilMap": null, - "Slice": [ - { - "Tag": "tag20" - }, - { - "Tag": "tag21" - } - ], - "SliceP": [ - { - "Tag": "tag22" - }, - null, - { - "Tag": "tag23" - } - ], - "PSlice": null, - "PSliceP": null, - "EmptySlice": [], - "NilSlice": null, - "StringSlice": [ - "str24", - "str25", - "str26" - ], - "ByteSlice": "Gxwd", - "Small": { - "Tag": "tag30" - }, - "PSmall": { - "Tag": "tag31" - }, - "PPSmall": null, - "Interface": 5.2, - "PInterface": null -}` - -var allValueCompact = strings.Map(noSpace, allValueIndent) - -var pallValueIndent = `{ - "Bool": false, - "Int": 0, - "Int8": 0, - "Int16": 0, - "Int32": 0, - "Int64": 0, - "Uint": 0, - "Uint8": 0, - "Uint16": 0, - "Uint32": 0, - "Uint64": 0, - "Uintptr": 0, - "Float32": 0, - "Float64": 0, - "bar": "", - "bar2": "", - "IntStr": "0", - "PBool": true, - "PInt": 2, - "PInt8": 3, - "PInt16": 4, - "PInt32": 5, - "PInt64": 6, - "PUint": 7, - "PUint8": 8, - "PUint16": 9, - "PUint32": 10, - "PUint64": 11, - "PUintptr": 12, - "PFloat32": 14.1, - "PFloat64": 15.1, - "String": "", - "PString": "16", - "Map": null, - "MapP": null, - "PMap": { - "17": { - "Tag": "tag17" - }, - "18": { - "Tag": "tag18" - } - }, - "PMapP": { - "19": { - "Tag": "tag19" - }, - "20": null - }, - "EmptyMap": null, - "NilMap": null, - "Slice": null, - "SliceP": null, - "PSlice": [ - { - "Tag": "tag20" - }, - { - "Tag": "tag21" - } - ], - "PSliceP": [ - { - "Tag": "tag22" - }, - null, - { - "Tag": "tag23" - } - ], - "EmptySlice": null, - "NilSlice": null, - "StringSlice": null, - "ByteSlice": null, - "Small": { - "Tag": "" - }, - "PSmall": null, - "PPSmall": { - "Tag": "tag31" - }, - "Interface": null, - "PInterface": 5.2 -}` - -var pallValueCompact = strings.Map(noSpace, pallValueIndent) - -func TestRefUnmarshal(t *testing.T) { - type S struct { - // Ref is defined in encode_test.go. - R0 Ref - R1 *Ref - R2 RefText - R3 *RefText - } - want := S{ - R0: 12, - R1: new(Ref), - R2: 13, - R3: new(RefText), - } - *want.R1 = 12 - *want.R3 = 13 - - var got S - if err := Unmarshal([]byte(`{"R0":"ref","R1":"ref","R2":"ref","R3":"ref"}`), &got); err != nil { - t.Fatalf("Unmarshal: %v", err) - } - if !reflect.DeepEqual(got, want) { - t.Errorf("got %+v, want %+v", got, want) - } -} - -// Test that the empty string doesn't panic decoding when ,string is specified -// Issue 3450 -func TestEmptyString(t *testing.T) { - type T2 struct { - Number1 int `json:",string"` - Number2 int `json:",string"` - } - data := `{"Number1":"1", "Number2":""}` - dec := NewDecoder(strings.NewReader(data)) - var t2 T2 - err := dec.Decode(&t2) - if err == nil { - t.Fatal("Decode: did not return error") - } - if t2.Number1 != 1 { - t.Fatal("Decode: did not set Number1") - } -} - -// Test that a null for ,string is not replaced with the previous quoted string (issue 7046). -// It should also not be an error (issue 2540, issue 8587). -func TestNullString(t *testing.T) { - type T struct { - A int `json:",string"` - B int `json:",string"` - C *int `json:",string"` - } - data := []byte(`{"A": "1", "B": null, "C": null}`) - var s T - s.B = 1 - s.C = new(int) - *s.C = 2 - err := Unmarshal(data, &s) - if err != nil { - t.Fatalf("Unmarshal: %v") - } - if s.B != 1 || s.C != nil { - t.Fatalf("after Unmarshal, s.B=%d, s.C=%p, want 1, nil", s.B, s.C) - } -} - -func intp(x int) *int { - p := new(int) - *p = x - return p -} - -func intpp(x *int) **int { - pp := new(*int) - *pp = x - return pp -} - -var interfaceSetTests = []struct { - pre interface{} - json string - post interface{} -}{ - {"foo", `"bar"`, "bar"}, - {"foo", `2`, 2.0}, - {"foo", `true`, true}, - {"foo", `null`, nil}, - - {nil, `null`, nil}, - {new(int), `null`, nil}, - {(*int)(nil), `null`, nil}, - {new(*int), `null`, new(*int)}, - {(**int)(nil), `null`, nil}, - {intp(1), `null`, nil}, - {intpp(nil), `null`, intpp(nil)}, - {intpp(intp(1)), `null`, intpp(nil)}, -} - -func TestInterfaceSet(t *testing.T) { - for _, tt := range interfaceSetTests { - b := struct{ X interface{} }{tt.pre} - blob := `{"X":` + tt.json + `}` - if err := Unmarshal([]byte(blob), &b); err != nil { - t.Errorf("Unmarshal %#q: %v", blob, err) - continue - } - if !reflect.DeepEqual(b.X, tt.post) { - t.Errorf("Unmarshal %#q into %#v: X=%#v, want %#v", blob, tt.pre, b.X, tt.post) - } - } -} - -// JSON null values should be ignored for primitives and string values instead of resulting in an error. -// Issue 2540 -func TestUnmarshalNulls(t *testing.T) { - jsonData := []byte(`{ - "Bool" : null, - "Int" : null, - "Int8" : null, - "Int16" : null, - "Int32" : null, - "Int64" : null, - "Uint" : null, - "Uint8" : null, - "Uint16" : null, - "Uint32" : null, - "Uint64" : null, - "Float32" : null, - "Float64" : null, - "String" : null}`) - - nulls := All{ - Bool: true, - Int: 2, - Int8: 3, - Int16: 4, - Int32: 5, - Int64: 6, - Uint: 7, - Uint8: 8, - Uint16: 9, - Uint32: 10, - Uint64: 11, - Float32: 12.1, - Float64: 13.1, - String: "14"} - - err := Unmarshal(jsonData, &nulls) - if err != nil { - t.Errorf("Unmarshal of null values failed: %v", err) - } - if !nulls.Bool || nulls.Int != 2 || nulls.Int8 != 3 || nulls.Int16 != 4 || nulls.Int32 != 5 || nulls.Int64 != 6 || - nulls.Uint != 7 || nulls.Uint8 != 8 || nulls.Uint16 != 9 || nulls.Uint32 != 10 || nulls.Uint64 != 11 || - nulls.Float32 != 12.1 || nulls.Float64 != 13.1 || nulls.String != "14" { - - t.Errorf("Unmarshal of null values affected primitives") - } -} - -func TestStringKind(t *testing.T) { - type stringKind string - - var m1, m2 map[stringKind]int - m1 = map[stringKind]int{ - "foo": 42, - } - - data, err := Marshal(m1) - if err != nil { - t.Errorf("Unexpected error marshalling: %v", err) - } - - err = Unmarshal(data, &m2) - if err != nil { - t.Errorf("Unexpected error unmarshalling: %v", err) - } - - if !reflect.DeepEqual(m1, m2) { - t.Error("Items should be equal after encoding and then decoding") - } - -} - -var decodeTypeErrorTests = []struct { - dest interface{} - src string -}{ - {new(string), `{"user": "name"}`}, // issue 4628. - {new(error), `{}`}, // issue 4222 - {new(error), `[]`}, - {new(error), `""`}, - {new(error), `123`}, - {new(error), `true`}, -} - -func TestUnmarshalTypeError(t *testing.T) { - for _, item := range decodeTypeErrorTests { - err := Unmarshal([]byte(item.src), item.dest) - if _, ok := err.(*UnmarshalTypeError); !ok { - t.Errorf("expected type error for Unmarshal(%q, type %T): got %T", - item.src, item.dest, err) - } - } -} - -var unmarshalSyntaxTests = []string{ - "tru", - "fals", - "nul", - "123e", - `"hello`, - `[1,2,3`, - `{"key":1`, - `{"key":1,`, -} - -func TestUnmarshalSyntax(t *testing.T) { - var x interface{} - for _, src := range unmarshalSyntaxTests { - err := Unmarshal([]byte(src), &x) - if _, ok := err.(*SyntaxError); !ok { - t.Errorf("expected syntax error for Unmarshal(%q): got %T", src, err) - } - } -} - -// Test handling of unexported fields that should be ignored. -// Issue 4660 -type unexportedFields struct { - Name string - m map[string]interface{} `json:"-"` - m2 map[string]interface{} `json:"abcd"` -} - -func TestUnmarshalUnexported(t *testing.T) { - input := `{"Name": "Bob", "m": {"x": 123}, "m2": {"y": 456}, "abcd": {"z": 789}}` - want := &unexportedFields{Name: "Bob"} - - out := &unexportedFields{} - err := Unmarshal([]byte(input), out) - if err != nil { - t.Errorf("got error %v, expected nil", err) - } - if !reflect.DeepEqual(out, want) { - t.Errorf("got %q, want %q", out, want) - } -} - -// Time3339 is a time.Time which encodes to and from JSON -// as an RFC 3339 time in UTC. -type Time3339 time.Time - -func (t *Time3339) UnmarshalJSON(b []byte) error { - if len(b) < 2 || b[0] != '"' || b[len(b)-1] != '"' { - return fmt.Errorf("types: failed to unmarshal non-string value %q as an RFC 3339 time", b) - } - tm, err := time.Parse(time.RFC3339, string(b[1:len(b)-1])) - if err != nil { - return err - } - *t = Time3339(tm) - return nil -} - -func TestUnmarshalJSONLiteralError(t *testing.T) { - var t3 Time3339 - err := Unmarshal([]byte(`"0000-00-00T00:00:00Z"`), &t3) - if err == nil { - t.Fatalf("expected error; got time %v", time.Time(t3)) - } - if !strings.Contains(err.Error(), "range") { - t.Errorf("got err = %v; want out of range error", err) - } -} - -// Test that extra object elements in an array do not result in a -// "data changing underfoot" error. -// Issue 3717 -func TestSkipArrayObjects(t *testing.T) { - json := `[{}]` - var dest [0]interface{} - - err := Unmarshal([]byte(json), &dest) - if err != nil { - t.Errorf("got error %q, want nil", err) - } -} - -// Test semantics of pre-filled struct fields and pre-filled map fields. -// Issue 4900. -func TestPrefilled(t *testing.T) { - ptrToMap := func(m map[string]interface{}) *map[string]interface{} { return &m } - - // Values here change, cannot reuse table across runs. - var prefillTests = []struct { - in string - ptr interface{} - out interface{} - }{ - { - in: `{"X": 1, "Y": 2}`, - ptr: &XYZ{X: float32(3), Y: int16(4), Z: 1.5}, - out: &XYZ{X: float64(1), Y: float64(2), Z: 1.5}, - }, - { - in: `{"X": 1, "Y": 2}`, - ptr: ptrToMap(map[string]interface{}{"X": float32(3), "Y": int16(4), "Z": 1.5}), - out: ptrToMap(map[string]interface{}{"X": float64(1), "Y": float64(2), "Z": 1.5}), - }, - } - - for _, tt := range prefillTests { - ptrstr := fmt.Sprintf("%v", tt.ptr) - err := Unmarshal([]byte(tt.in), tt.ptr) // tt.ptr edited here - if err != nil { - t.Errorf("Unmarshal: %v", err) - } - if !reflect.DeepEqual(tt.ptr, tt.out) { - t.Errorf("Unmarshal(%#q, %s): have %v, want %v", tt.in, ptrstr, tt.ptr, tt.out) - } - } -} - -var invalidUnmarshalTests = []struct { - v interface{} - want string -}{ - {nil, "json: Unmarshal(nil)"}, - {struct{}{}, "json: Unmarshal(non-pointer struct {})"}, - {(*int)(nil), "json: Unmarshal(nil *int)"}, -} - -func TestInvalidUnmarshal(t *testing.T) { - buf := []byte(`{"a":"1"}`) - for _, tt := range invalidUnmarshalTests { - err := Unmarshal(buf, tt.v) - if err == nil { - t.Errorf("Unmarshal expecting error, got nil") - continue - } - if got := err.Error(); got != tt.want { - t.Errorf("Unmarshal = %q; want %q", got, tt.want) - } - } -} - -func TestValidator(t *testing.T) { - for _, tt := range unmarshalTests { - // Don't care about the valid json with type errors - expectederr := tt.err - if _, ok := expectederr.(*UnmarshalTypeError); ok { - expectederr = nil - } - if _, ok := expectederr.(*UnmarshalFieldError); ok { - expectederr = nil - } - err := Validate([]byte(tt.in)) - if (expectederr == nil) != (err == nil) { - t.Errorf("Incorrectly validated %v - %v/%v", - tt.in, expectederr, err) - } - } -} diff --git a/vendor/github.com/dustin/gojson/encode.go b/vendor/github.com/dustin/gojson/encode.go deleted file mode 100644 index fca2a098..00000000 --- a/vendor/github.com/dustin/gojson/encode.go +++ /dev/null @@ -1,1183 +0,0 @@ -// Copyright 2010 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Package json implements encoding and decoding of JSON objects as defined in -// RFC 4627. The mapping between JSON objects and Go values is described -// in the documentation for the Marshal and Unmarshal functions. -// -// See "JSON and Go" for an introduction to this package: -// http://golang.org/doc/articles/json_and_go.html -package json - -import ( - "bytes" - "encoding" - "encoding/base64" - "math" - "reflect" - "runtime" - "sort" - "strconv" - "strings" - "sync" - "unicode" - "unicode/utf8" -) - -// Marshal returns the JSON encoding of v. -// -// Marshal traverses the value v recursively. -// If an encountered value implements the Marshaler interface -// and is not a nil pointer, Marshal calls its MarshalJSON method -// to produce JSON. The nil pointer exception is not strictly necessary -// but mimics a similar, necessary exception in the behavior of -// UnmarshalJSON. -// -// Otherwise, Marshal uses the following type-dependent default encodings: -// -// Boolean values encode as JSON booleans. -// -// Floating point, integer, and Number values encode as JSON numbers. -// -// String values encode as JSON strings coerced to valid UTF-8, -// replacing invalid bytes with the Unicode replacement rune. -// The angle brackets "<" and ">" are escaped to "\u003c" and "\u003e" -// to keep some browsers from misinterpreting JSON output as HTML. -// Ampersand "&" is also escaped to "\u0026" for the same reason. -// -// Array and slice values encode as JSON arrays, except that -// []byte encodes as a base64-encoded string, and a nil slice -// encodes as the null JSON object. -// -// Struct values encode as JSON objects. Each exported struct field -// becomes a member of the object unless -// - the field's tag is "-", or -// - the field is empty and its tag specifies the "omitempty" option. -// The empty values are false, 0, any -// nil pointer or interface value, and any array, slice, map, or string of -// length zero. The object's default key string is the struct field name -// but can be specified in the struct field's tag value. The "json" key in -// the struct field's tag value is the key name, followed by an optional comma -// and options. Examples: -// -// // Field is ignored by this package. -// Field int `json:"-"` -// -// // Field appears in JSON as key "myName". -// Field int `json:"myName"` -// -// // Field appears in JSON as key "myName" and -// // the field is omitted from the object if its value is empty, -// // as defined above. -// Field int `json:"myName,omitempty"` -// -// // Field appears in JSON as key "Field" (the default), but -// // the field is skipped if empty. -// // Note the leading comma. -// Field int `json:",omitempty"` -// -// The "string" option signals that a field is stored as JSON inside a -// JSON-encoded string. It applies only to fields of string, floating point, -// or integer types. This extra level of encoding is sometimes used when -// communicating with JavaScript programs: -// -// Int64String int64 `json:",string"` -// -// The key name will be used if it's a non-empty string consisting of -// only Unicode letters, digits, dollar signs, percent signs, hyphens, -// underscores and slashes. -// -// Anonymous struct fields are usually marshaled as if their inner exported fields -// were fields in the outer struct, subject to the usual Go visibility rules amended -// as described in the next paragraph. -// An anonymous struct field with a name given in its JSON tag is treated as -// having that name, rather than being anonymous. -// An anonymous struct field of interface type is treated the same as having -// that type as its name, rather than being anonymous. -// -// The Go visibility rules for struct fields are amended for JSON when -// deciding which field to marshal or unmarshal. If there are -// multiple fields at the same level, and that level is the least -// nested (and would therefore be the nesting level selected by the -// usual Go rules), the following extra rules apply: -// -// 1) Of those fields, if any are JSON-tagged, only tagged fields are considered, -// even if there are multiple untagged fields that would otherwise conflict. -// 2) If there is exactly one field (tagged or not according to the first rule), that is selected. -// 3) Otherwise there are multiple fields, and all are ignored; no error occurs. -// -// Handling of anonymous struct fields is new in Go 1.1. -// Prior to Go 1.1, anonymous struct fields were ignored. To force ignoring of -// an anonymous struct field in both current and earlier versions, give the field -// a JSON tag of "-". -// -// Map values encode as JSON objects. -// The map's key type must be string; the object keys are used directly -// as map keys. -// -// Pointer values encode as the value pointed to. -// A nil pointer encodes as the null JSON object. -// -// Interface values encode as the value contained in the interface. -// A nil interface value encodes as the null JSON object. -// -// Channel, complex, and function values cannot be encoded in JSON. -// Attempting to encode such a value causes Marshal to return -// an UnsupportedTypeError. -// -// JSON cannot represent cyclic data structures and Marshal does not -// handle them. Passing cyclic structures to Marshal will result in -// an infinite recursion. -// -func Marshal(v interface{}) ([]byte, error) { - e := &encodeState{} - err := e.marshal(v) - if err != nil { - return nil, err - } - return e.Bytes(), nil -} - -// MarshalIndent is like Marshal but applies Indent to format the output. -func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error) { - b, err := Marshal(v) - if err != nil { - return nil, err - } - var buf bytes.Buffer - err = Indent(&buf, b, prefix, indent) - if err != nil { - return nil, err - } - return buf.Bytes(), nil -} - -// HTMLEscape appends to dst the JSON-encoded src with <, >, &, U+2028 and U+2029 -// characters inside string literals changed to \u003c, \u003e, \u0026, \u2028, \u2029 -// so that the JSON will be safe to embed inside HTML